Repository: lazyprogrammer/machine_learning_examples Branch: master Commit: 9c35878543c9 Files: 556 Total size: 27.1 MB Directory structure: gitextract_oeszk7b8/ ├── .gitignore ├── README.md ├── ab_testing/ │ ├── advertisement_clicks.csv │ ├── bayesian_bandit.py │ ├── bayesian_normal.py │ ├── bayesian_starter.py │ ├── cdfs_and_percentiles.py │ ├── chisquare.py │ ├── ci_comparison.py │ ├── client.py │ ├── comparing_epsilons.py │ ├── convergence.py │ ├── demo.py │ ├── epsilon_greedy.py │ ├── epsilon_greedy_starter.py │ ├── ex_chisq.py │ ├── ex_ttest.py │ ├── extra_reading.txt │ ├── optimistic.py │ ├── optimistic_starter.py │ ├── server_solution.py │ ├── server_starter.py │ ├── ttest.py │ ├── ucb1.py │ └── ucb1_starter.py ├── airline/ │ ├── ann.py │ ├── international-airline-passengers.csv │ ├── lr.py │ └── rnn.py ├── ann_class/ │ ├── backprop.py │ ├── extra_reading.txt │ ├── forwardprop.py │ ├── regression.py │ ├── sklearn_ann.py │ ├── tf_example.py │ └── xor_donut.py ├── ann_class2/ │ ├── __init__.py │ ├── adam.py │ ├── batch_norm_tf.py │ ├── batch_norm_theano.py │ ├── cntk_example.py │ ├── dropout_tensorflow.py │ ├── dropout_theano.py │ ├── extra_reading.txt │ ├── grid_search.py │ ├── keras_example.py │ ├── keras_functional.py │ ├── mlp.py │ ├── momentum.py │ ├── mxnet_example.py │ ├── pytorch_batchnorm.py │ ├── pytorch_dropout.py │ ├── pytorch_example.py │ ├── pytorch_example2.py │ ├── random_search.py │ ├── rmsprop.py │ ├── rmsprop_test.py │ ├── sgd.py │ ├── tensorflow1.py │ ├── tensorflow2.py │ ├── tf_with_save.py │ ├── theano1.py │ ├── theano2.py │ ├── theano_ann.py │ └── util.py ├── ann_logistic_extra/ │ ├── __init__.py │ ├── ann_predict.py │ ├── ann_train.py │ ├── ecommerce_data.csv │ ├── logistic_predict.py │ ├── logistic_softmax_train.py │ ├── logistic_train.py │ └── process.py ├── bayesian_ml/ │ ├── 1/ │ │ ├── Q.csv │ │ ├── README │ │ ├── Xtest.csv │ │ ├── Xtrain.csv │ │ ├── nb.py │ │ ├── ytest.csv │ │ └── ytrain.csv │ ├── 2/ │ │ ├── Q.csv │ │ ├── README │ │ ├── Xtest.csv │ │ ├── Xtrain.csv │ │ ├── em.py │ │ ├── probit.py │ │ ├── ytest.csv │ │ └── ytrain.csv │ ├── 3/ │ │ ├── X_set1.csv │ │ ├── X_set2.csv │ │ ├── X_set3.csv │ │ ├── run.py │ │ ├── y_set1.csv │ │ ├── y_set2.csv │ │ ├── y_set3.csv │ │ ├── z_set1.csv │ │ ├── z_set2.csv │ │ └── z_set3.csv │ └── 4/ │ ├── data.txt │ ├── emgmm.py │ ├── npbgmm.py │ └── vigmm.py ├── best_fit_line.py ├── calculus/ │ ├── WHERE ARE THE NOTEBOOKS.txt │ └── extra_reading.txt ├── chatgpt_trading/ │ ├── WHERE ARE THE NOTEBOOKS.txt │ └── extra_reading.txt ├── cnn_class/ │ ├── WHERE ARE THE NOTEBOOKS.txt │ ├── benchmark.py │ ├── blur.py │ ├── cifar.py │ ├── cnn_tf.py │ ├── cnn_tf_plot_filters.py │ ├── cnn_theano.py │ ├── cnn_theano_plot_filters.py │ ├── custom_blur.py │ ├── echo.py │ ├── edge.py │ ├── edge_benchmark.py │ ├── exercises.txt │ ├── extra_reading.txt │ └── keras_example.py ├── cnn_class2/ │ ├── WHERE ARE THE NOTEBOOKS.txt │ ├── class_activation_maps.py │ ├── extra_reading.txt │ ├── fashion.py │ ├── fashion2.py │ ├── make_limited_datasets.py │ ├── siamese.py │ ├── ssd.py │ ├── style_transfer1.py │ ├── style_transfer2.py │ ├── style_transfer3.py │ ├── test_softmax.py │ ├── tf_resnet.py │ ├── tf_resnet_convblock.py │ ├── tf_resnet_convblock_starter.py │ ├── tf_resnet_first_layers.py │ ├── tf_resnet_first_layers_starter.py │ ├── tf_resnet_identity_block.py │ ├── tf_resnet_identity_block_starter.py │ ├── use_pretrained_weights_resnet.py │ ├── use_pretrained_weights_vgg.py │ └── util.py ├── data_csv/ │ ├── X.txt │ ├── X_orig.txt │ ├── legend.txt │ ├── readme.txt │ └── y.txt ├── financial_engineering/ │ └── go_here_instead.txt ├── hmm_class/ │ ├── __init__.py │ ├── coin_data.txt │ ├── edgar_allan_poe.txt │ ├── extra_reading.txt │ ├── frost.py │ ├── generate_c.py │ ├── generate_ht.py │ ├── hmm_classifier.py │ ├── hmmc.py │ ├── hmmc_concat.py │ ├── hmmc_scaled_concat.py │ ├── hmmc_scaled_concat_diag.py │ ├── hmmc_tf.py │ ├── hmmc_theano.py │ ├── hmmc_theano2.py │ ├── hmmd.py │ ├── hmmd_scaled.py │ ├── hmmd_tf.py │ ├── hmmd_theano.py │ ├── hmmd_theano2.py │ ├── robert_frost.txt │ ├── scan1.py │ ├── scan2.py │ ├── scan3.py │ ├── site_data.csv │ ├── sites.py │ ├── tf_scan1.py │ ├── tf_scan2.py │ └── tf_scan3.py ├── keras_examples/ │ ├── ann.py │ ├── basic_mlp.py │ ├── batchnorm.py │ ├── cnn.py │ ├── cnn_cifar.py │ ├── cnn_dropout_batchnorm.py │ ├── dropout.py │ ├── sentiment_analysis.py │ ├── sine.py │ ├── sine2.py │ ├── translation.py │ └── util.py ├── kerascv/ │ ├── extra_reading.txt │ ├── imagenet_label_names.json │ ├── makelist.py │ └── pascal2coco.py ├── linear_algebra/ │ ├── WHERE ARE THE NOTEBOOKS.txt │ └── extra_reading.txt ├── linear_regression_class/ │ ├── data_1d.csv │ ├── data_2d.csv │ ├── data_poly.csv │ ├── gd.py │ ├── generate_1d.py │ ├── generate_2d.py │ ├── generate_poly.py │ ├── gradient_descent.py │ ├── l1_regularization.py │ ├── l2_regularization.py │ ├── lr_1d.py │ ├── lr_2d.py │ ├── lr_poly.py │ ├── mlr02.xls │ ├── moore.csv │ ├── moore.py │ ├── overfitting.py │ └── systolic.py ├── logistic_regression_class/ │ ├── bad_xor.py │ ├── l1_regularization.py │ ├── logistic1.py │ ├── logistic2.py │ ├── logistic3.py │ ├── logistic4.py │ ├── logistic_donut.py │ ├── logistic_visualize.py │ └── logistic_xor.py ├── matrix_calculus/ │ └── extra_reading.txt ├── mnist_csv/ │ ├── Q.txt │ ├── Xtest.txt │ ├── Xtrain.txt │ ├── label_test.txt │ └── label_train.txt ├── naive_bayes/ │ ├── WHERE ARE THE NOTEBOOKS.txt │ └── extra_reading.txt ├── nlp_class/ │ ├── all_book_titles.txt │ ├── article_spinner.py │ ├── cipher_placeholder.py │ ├── electronics/ │ │ ├── negative.review │ │ ├── positive.review │ │ └── unlabeled.review │ ├── extra_reading.txt │ ├── lsa.py │ ├── nb.py │ ├── sentiment.py │ ├── spam2.py │ ├── spambase.data │ └── stopwords.txt ├── nlp_class2/ │ ├── bow_classifier.py │ ├── extra_reading.txt │ ├── glove.py │ ├── glove_svd.py │ ├── glove_tf.py │ ├── glove_theano.py │ ├── logistic.py │ ├── markov.py │ ├── ner.txt │ ├── ner_baseline.py │ ├── ner_rnn.py │ ├── ner_tf.py │ ├── neural_network.py │ ├── neural_network2.py │ ├── pmi.py │ ├── pos_baseline.py │ ├── pos_hmm.py │ ├── pos_ner_keras.py │ ├── pos_rnn.py │ ├── pos_tf.py │ ├── pretrained_glove.py │ ├── pretrained_w2v.py │ ├── recursive_tensorflow.py │ ├── recursive_theano.py │ ├── rntn_tensorflow.py │ ├── rntn_tensorflow_rnn.py │ ├── rntn_theano.py │ ├── tfidf_tsne.py │ ├── util.py │ ├── visualize_countries.py │ ├── w2v_model.npz │ ├── w2v_word2idx.json │ ├── word2vec.py │ ├── word2vec_tf.py │ └── word2vec_theano.py ├── nlp_class3/ │ ├── attention.py │ ├── bilstm_mnist.py │ ├── bilstm_test.py │ ├── cnn_toxic.py │ ├── convert_twitter.py │ ├── extra_reading.txt │ ├── lstm_toxic.py │ ├── memory_network.py │ ├── poetry.py │ ├── simple_rnn_test.py │ └── wseq2seq.py ├── nlp_v2/ │ ├── WHERE ARE THE NOTEBOOKS.txt │ └── extra_reading.txt ├── numpy_class/ │ ├── classification_example.py │ ├── dot_for.py │ ├── exercises/ │ │ ├── ex1.py │ │ ├── ex2.py │ │ ├── ex3.py │ │ ├── ex4.py │ │ ├── ex5.py │ │ ├── ex6.py │ │ ├── ex7.py │ │ ├── ex8.py │ │ └── ex9.py │ ├── manual_data_loading.py │ ├── python3/ │ │ ├── dot_for.py │ │ └── manual_data_loading.py │ ├── regression_example.py │ ├── table1.csv │ └── table2.csv ├── openai/ │ ├── extra_reading.txt │ └── replies.json ├── probability/ │ ├── WHERE ARE THE NOTEBOOKS.txt │ └── extra_reading.txt ├── prophet/ │ └── extra_reading.txt ├── pytorch/ │ ├── .gitignore │ ├── WHERE ARE THE NOTEBOOKS.txt │ ├── aapl_msi_sbux.csv │ ├── ann_regression.py │ ├── exercises.txt │ ├── extra_reading.txt │ ├── plot_rl_rewards.py │ └── rl_trader.py ├── recommenders/ │ ├── autorec.py │ ├── extra_reading.txt │ ├── itembased.py │ ├── mf.py │ ├── mf2.py │ ├── mf_keras.py │ ├── mf_keras_deep.py │ ├── mf_keras_res.py │ ├── preprocess.py │ ├── preprocess2dict.py │ ├── preprocess2sparse.py │ ├── preprocess_shrink.py │ ├── rbm_tf_k.py │ ├── rbm_tf_k_faster.py │ ├── spark.py │ ├── spark2.py │ ├── tfidf.py │ └── userbased.py ├── rl/ │ ├── approx_control.py │ ├── approx_prediction.py │ ├── bayesian_bandit.py │ ├── bayesian_normal.py │ ├── bayesian_starter.py │ ├── cartpole.py │ ├── cartpole_gym0.19.py │ ├── comparing_epsilons.py │ ├── comparing_explore_exploit_methods.py │ ├── epsilon_greedy.py │ ├── epsilon_greedy_starter.py │ ├── extra_reading.txt │ ├── grid_world.py │ ├── iterative_policy_evaluation_deterministic.py │ ├── iterative_policy_evaluation_probabilistic.py │ ├── linear_rl_trader.py │ ├── monte_carlo.py │ ├── monte_carlo_es.py │ ├── monte_carlo_no_es.py │ ├── optimistic.py │ ├── optimistic_initial_values.py │ ├── optimistic_starter.py │ ├── plot_rl_rewards.py │ ├── policy_iteration_deterministic.py │ ├── policy_iteration_probabilistic.py │ ├── q_learning.py │ ├── sarsa.py │ ├── td0_prediction.py │ ├── tic_tac_toe.py │ ├── ucb1.py │ ├── ucb1_starter.py │ └── value_iteration.py ├── rl2/ │ ├── a3c/ │ │ ├── main.py │ │ ├── nets.py │ │ ├── thread_example.py │ │ └── worker.py │ ├── atari/ │ │ ├── dqn_tf.py │ │ └── dqn_theano.py │ ├── cartpole/ │ │ ├── dqn_tf.py │ │ ├── dqn_theano.py │ │ ├── pg_tf.py │ │ ├── pg_theano.py │ │ ├── q_learning.py │ │ ├── q_learning_bins.py │ │ ├── random_search.py │ │ ├── save_a_video.py │ │ ├── td_lambda.py │ │ ├── tf_warmup.py │ │ └── theano_warmup.py │ ├── extra_reading.txt │ ├── gym_tutorial.py │ └── mountaincar/ │ ├── n_step.py │ ├── pg_tf.py │ ├── pg_tf_random.py │ ├── pg_theano.py │ ├── pg_theano_random.py │ ├── q_learning.py │ └── td_lambda.py ├── rl2v2/ │ └── extra_reading.txt ├── rl3/ │ ├── a2c/ │ │ ├── a2c.py │ │ ├── atari_wrappers.py │ │ ├── main.py │ │ ├── neural_network.py │ │ ├── play.py │ │ └── subproc_vec_env.py │ ├── ddpg.py │ ├── es_flappy.py │ ├── es_mnist.py │ ├── es_mujoco.py │ ├── es_simple.py │ ├── extra_reading.txt │ ├── flappy2envs.py │ ├── gym_review.py │ ├── plot_ddpg_result.py │ ├── plot_es_flappy_results.py │ ├── plot_es_mujoco_results.py │ └── sample_test.py ├── rl3v2/ │ ├── extra_reading.txt │ ├── visualize_es.py │ └── visualize_hill_climbing.py ├── rnn_class/ │ ├── WHERE ARE THE NOTEBOOKS.txt │ ├── __init__.py │ ├── batch_gru.py │ ├── batch_parity.py │ ├── batch_units.py │ ├── batch_wiki.py │ ├── brown.py │ ├── exercises.txt │ ├── extra_reading.txt │ ├── gru.py │ ├── gru_nonorm_part1_wikipedia_word2idx.json │ ├── gru_nonorm_part1_word_embeddings.npy │ ├── lstm.py │ ├── mlp_parity.py │ ├── poetry_classifier.py │ ├── rrnn_language.py │ ├── srn_language.py │ ├── srn_language_tf.py │ ├── srn_parity.py │ ├── srn_parity_tf.py │ ├── tf_parity.py │ ├── util.py │ ├── visualize_embeddings.py │ └── wiki.py ├── stats/ │ └── extra_reading.txt ├── supervised_class/ │ ├── app.py │ ├── app_caller.py │ ├── app_trainer.py │ ├── bayes.py │ ├── dt.py │ ├── dt_without_recursion.py │ ├── knn.py │ ├── knn_donut.py │ ├── knn_fail.py │ ├── knn_vectorized.py │ ├── knn_xor.py │ ├── multinomialnb.py │ ├── nb.py │ ├── perceptron.py │ ├── regression.py │ └── util.py ├── supervised_class2/ │ ├── adaboost.py │ ├── bagging_classification.py │ ├── bagging_regression.py │ ├── bias_variance_demo.py │ ├── bootstrap.py │ ├── extra_reading.txt │ ├── knn_dt_demo.py │ ├── rf_classification.py │ ├── rf_regression.py │ ├── rf_vs_bag.py │ ├── rf_vs_bag2.py │ └── util.py ├── svm_class/ │ ├── crossval.py │ ├── extra_reading.txt │ ├── fake_neural_net.py │ ├── kernel_svm_gradient_primal.py │ ├── linear_svm_gradient.py │ ├── rbfnetwork.py │ ├── real_neural_net.py │ ├── regression.py │ ├── svm_gradient.py │ ├── svm_medical.py │ ├── svm_mnist.py │ ├── svm_smo.py │ ├── svm_spam.py │ └── util.py ├── tensorflow/ │ └── input_data.py ├── tf2.0/ │ ├── .gitignore │ ├── WHERE ARE THE NOTEBOOKS.txt │ ├── aapl_msi_sbux.csv │ ├── auto-mpg.data │ ├── daily-minimum-temperatures-in-me.csv │ ├── exercises.txt │ ├── extra_reading.txt │ ├── fake_util.py │ ├── keras_trader.py │ ├── mlp_trader.py │ ├── moore.csv │ ├── plot_rl_rewards.py │ ├── rl_trader.py │ ├── sbux.csv │ └── xor3d.py ├── timeseries/ │ ├── WHERE ARE THE NOTEBOOKS.txt │ └── extra_reading.txt ├── transformers/ │ ├── WHERE ARE THE NOTEBOOKS.txt │ └── extra_reading.txt ├── unsupervised_class/ │ ├── __init__.py │ ├── books.py │ ├── choose_k.py │ ├── evolution.py │ ├── gmm.py │ ├── gmm_mnist.py │ ├── hcluster.py │ ├── kmeans.py │ ├── kmeans_fail.py │ ├── kmeans_mnist.py │ ├── kmeans_visualize.py │ ├── neural_kmeans.py │ └── tweets.py ├── unsupervised_class2/ │ ├── __init__.py │ ├── autoencoder.py │ ├── autoencoder_tf.py │ ├── compare_pca_svd.py │ ├── extra_reading.txt │ ├── gaussian_nb.py │ ├── pca.py │ ├── pca_impl.py │ ├── rbm.py │ ├── rbm_tf.py │ ├── sk_mlp.py │ ├── tsne_books.py │ ├── tsne_donut.py │ ├── tsne_mnist.py │ ├── tsne_visualization.py │ ├── tsne_xor.py │ ├── umap_transformer.py │ ├── unsupervised.py │ ├── util.py │ ├── vanishing.py │ ├── visualize_features.py │ └── xwing.py └── unsupervised_class3/ ├── autoencoder_tf.py ├── autoencoder_theano.py ├── bayes_classifier_gaussian.py ├── bayes_classifier_gmm.py ├── dcgan_tf.py ├── dcgan_theano.py ├── extra_reading.txt ├── parameterize_guassian.py ├── test_stochastic_tensor.py ├── util.py ├── vae_tf.py ├── vae_theano.py └── visualize_latent_space.py ================================================ FILE CONTENTS ================================================ ================================================ FILE: .gitignore ================================================ *.DS_Store *.pyc large_files large_files/* nlp_class2/chunking/* ================================================ FILE: README.md ================================================ machine_learning_examples ========================= A collection of machine learning examples and tutorials. Find associated tutorials at https://lazyprogrammer.me Find associated courses at https://deeplearningcourses.com Please note that not all code from all courses will be found in this repository. Some newer code examples (e.g. most of Tensorflow 2.0) were done in Google Colab. Therefore, you should check the instructions given in the lectures for the course you are taking. How to I find the code for a particular course? =============================================== The code for each course is separated by folder. You can determine which folder corresponds with which course by watching the "Where to get the code" lecture inside the course (usually Lecture 2 or 3). Remember: one folder = one course. Why you should not fork this repo ================================= I've noticed that many people have out-of-date forks. Thus, I recommend not forking this repository if you take one of my courses. I am constantly updating my courses, and your fork will soon become out-of-date. You should clone the repository instead to make it easy to get updates (i.e. just "git pull" randomly and frequently). Where is the code for your latest courses? ========================================== Beginning with Tensorflow 2, I started to use Google Colab. For those courses, unless otherwise noted, the code will be on Google Colab. Links to the notebooks are provided in the course. See the lecture "Where to get the code" for further details. VIP Course Links =================== **Advanced AI: Deep Reinforcement Learning in PyTorch (v2)** https://deeplearningcourses.com/c/deep-reinforcement-learning-in-pytorch **Data Science: Transformers for Natural Language Processing** https://deeplearningcourses.com/c/data-science-transformers-nlp **Machine Learning: Natural Language Processing in Python (V2)** https://deeplearningcourses.com/c/natural-language-processing-in-python **Time Series Analysis, Forecasting, and Machine Learning** https://deeplearningcourses.com/c/time-series-analysis **Financial Engineering and Artificial Intelligence in Python** https://deeplearningcourses.com/c/ai-finance **PyTorch: Deep Learning and Artificial Intelligence** https://deeplearningcourses.com/c/pytorch-deep-learning **Tensorflow 2.0: Deep Learning and Artificial Intelligence** (VIP Version) https://deeplearningcourses.com/c/deep-learning-tensorflow-2 **Math 0-1: Linear Algebra for Data Science & Machine Learning** https://deeplearningcourses.com/c/linear-algebra-data-science **Math 0-1: Probability for Data Science & Machine Learning** https://deeplearningcourses.com/c/probability-data-science-machine-learning Deep Learning Courses Exclusives ================================ Data Science: Bayesian Linear Regression in Python https://deeplearningcourses.com/c/bayesian-linear-regression-in-python Data Science: Bayesian Classification in Python https://deeplearningcourses.com/c/bayesian-classification-in-python Classical Statistical Inference and A/B Testing in Python https://deeplearningcourses.com/c/statistical-inference-in-python Linear Programming for Linear Regression in Python https://deeplearningcourses.com/c/linear-programming-python MATLAB for Students, Engineers, and Professionals in STEM https://deeplearningcourses.com/c/matlab Other Course Links ================== Generative AI: ChatGPT & OpenAI LLMs in Python https://deeplearningcourses.com/c/genai-openai-chatgpt Math 0-1: Matrix Calculus for Data Science & Machine Learning https://deeplearningcourses.com/c/matrix-calculus-machine-learning Machine Learning: Modern Computer Vision & Generative AI https://deeplearningcourses.com/c/computer-vision-kerascv DeepFakes & Voice Cloning: Machine Learning The Easy Way https://deeplearningcourses.com/c/deepfakes-voice-cloning Financial Analysis: Build a ChatGPT Pairs Trading Bot https://deeplearningcourses.com/c/chatgpt-pairs-trading Math 0-1: Calculus for Data Science & Machine Learning https://deeplearningcourses.com/c/calculus-data-science Data Science & Machine Learning: Naive Bayes in Python https://deeplearningcourses.com/c/data-science-machine-learning-naive-bayes-in-python Cutting-Edge AI: Deep Reinforcement Learning in Python https://deeplearningcourses.com/c/cutting-edge-artificial-intelligence Recommender Systems and Deep Learning in Python https://deeplearningcourses.com/c/recommender-systems Machine Learning and AI: Support Vector Machines in Python https://deeplearningcourses.com/c/support-vector-machines-in-python Deep Learning: Advanced Computer Vision https://deeplearningcourses.com/c/advanced-computer-vision Deep Learning: Advanced NLP and RNNs https://deeplearningcourses.com/c/deep-learning-advanced-nlp Deep Learning: GANs and Variational Autoencoders https://deeplearningcourses.com/c/deep-learning-gans-and-variational-autoencoders Advanced AI: Deep Reinforcement Learning in Python https://deeplearningcourses.com/c/deep-reinforcement-learning-in-python Artificial Intelligence: Reinforcement Learning in Python https://deeplearningcourses.com/c/artificial-intelligence-reinforcement-learning-in-python Natural Language Processing with Deep Learning in Python https://deeplearningcourses.com/c/natural-language-processing-with-deep-learning-in-python Deep Learning: Recurrent Neural Networks in Python https://deeplearningcourses.com/c/deep-learning-recurrent-neural-networks-in-python Unsupervised Machine Learning: Hidden Markov Models in Python https://deeplearningcourses.com/c/unsupervised-machine-learning-hidden-markov-models-in-python Deep Learning Prerequisites: The Numpy Stack in Python https://deeplearningcourses.com/c/deep-learning-prerequisites-the-numpy-stack-in-python Deep Learning Prerequisites: Linear Regression in Python https://deeplearningcourses.com/c/data-science-linear-regression-in-python Deep Learning Prerequisites: Logistic Regression in Python https://deeplearningcourses.com/c/data-science-logistic-regression-in-python Data Science: Deep Learning and Neural Networks in Python https://deeplearningcourses.com/c/data-science-deep-learning-in-python Cluster Analysis and Unsupervised Machine Learning in Python https://deeplearningcourses.com/c/cluster-analysis-unsupervised-machine-learning-python Data Science: Supervised Machine Learning in Python https://deeplearningcourses.com/c/data-science-supervised-machine-learning-in-python Bayesian Machine Learning in Python: A/B Testing https://deeplearningcourses.com/c/bayesian-machine-learning-in-python-ab-testing Data Science: Natural Language Processing in Python https://deeplearningcourses.com/c/data-science-natural-language-processing-in-python Modern Deep Learning in Python https://deeplearningcourses.com/c/data-science-deep-learning-in-theano-tensorflow Ensemble Machine Learning in Python: Random Forest and AdaBoost https://deeplearningcourses.com/c/machine-learning-in-python-random-forest-adaboost Deep Learning: Convolutional Neural Networks in Python https://deeplearningcourses.com/c/deep-learning-convolutional-neural-networks-theano-tensorflow Unsupervised Deep Learning in Python https://deeplearningcourses.com/c/unsupervised-deep-learning-in-python ================================================ FILE: ab_testing/advertisement_clicks.csv ================================================ advertisement_id,action B,1 B,1 A,0 B,0 A,1 A,0 B,0 A,1 B,0 A,0 B,1 A,0 B,1 B,0 B,1 B,1 B,0 A,0 B,0 B,0 B,0 A,0 A,1 A,1 B,0 B,0 A,0 B,0 A,0 B,1 A,0 B,0 B,0 A,0 A,0 B,0 B,0 A,1 B,0 B,1 B,1 B,0 B,0 A,0 A,1 A,0 A,1 B,1 A,1 A,0 B,1 B,1 B,1 A,0 A,1 A,0 B,0 B,0 A,0 A,0 A,1 A,1 B,0 A,0 A,0 B,0 B,0 A,0 A,0 A,1 B,0 A,1 A,1 B,0 B,1 A,0 B,1 B,1 A,1 A,1 B,1 B,0 A,0 B,0 B,0 B,0 A,0 B,0 B,0 A,1 A,1 B,0 B,0 A,0 A,0 B,1 B,1 A,0 A,0 A,1 A,0 B,0 A,1 A,0 A,0 B,1 A,0 A,0 B,1 B,0 A,1 A,0 B,0 B,0 B,0 B,0 B,0 B,1 B,0 A,1 B,1 A,0 A,1 B,1 A,0 B,0 B,0 B,0 B,0 A,0 A,1 A,1 B,1 B,0 B,1 A,0 B,0 A,0 A,0 B,0 A,0 B,0 A,0 A,0 A,0 A,1 A,1 B,0 B,1 A,1 B,0 B,0 A,0 A,1 B,1 A,0 B,0 B,0 B,0 A,0 A,0 B,1 A,0 B,1 B,1 B,0 A,1 A,1 B,1 B,0 B,0 A,1 B,0 A,0 B,0 B,1 A,0 B,1 A,0 A,1 A,0 A,0 A,0 B,0 A,0 B,1 B,1 A,0 B,0 A,1 A,0 A,0 B,0 B,1 B,1 A,0 A,0 B,0 A,0 B,1 B,0 B,0 B,0 B,0 A,0 A,0 A,0 A,0 B,1 A,0 A,1 B,0 B,0 A,0 B,0 A,0 B,1 B,0 B,1 A,1 A,1 A,0 A,0 A,0 A,0 A,0 A,1 A,0 B,1 B,0 A,0 A,1 A,0 B,1 A,0 B,0 A,0 B,1 A,0 A,1 B,0 A,0 B,1 B,1 A,1 B,1 B,0 B,0 A,0 A,0 A,0 A,0 B,1 A,0 A,0 B,0 A,1 A,0 B,0 B,0 A,1 B,1 B,0 B,1 B,1 A,0 B,1 B,0 B,1 B,1 B,1 B,0 A,1 A,0 B,0 A,0 A,0 A,0 A,1 A,0 B,0 A,1 B,0 A,0 A,0 B,0 A,0 B,1 A,1 A,0 A,0 B,1 A,1 A,0 A,1 B,0 B,0 A,0 B,0 B,1 A,1 A,1 B,1 B,0 A,1 B,1 A,1 B,0 B,0 A,1 A,0 B,0 B,1 B,1 B,0 A,0 A,0 B,0 B,0 A,0 A,0 A,0 B,0 A,0 B,1 B,0 B,0 A,1 B,1 B,0 B,1 A,0 A,1 B,0 A,0 A,0 B,0 B,0 B,0 A,1 B,0 B,0 B,0 A,0 B,0 A,0 A,1 A,0 B,0 B,1 B,0 A,0 B,0 A,1 A,1 B,0 B,0 B,0 B,0 B,0 A,0 B,1 B,0 B,0 A,0 B,0 A,1 A,0 A,1 A,0 B,0 A,1 B,0 B,0 A,0 A,1 B,0 B,1 A,0 A,0 A,0 B,1 A,1 A,1 B,1 A,1 B,0 A,1 A,0 A,0 B,1 A,0 B,1 A,0 B,0 B,0 B,1 B,0 A,0 A,0 B,1 A,0 A,0 B,0 A,0 A,0 A,0 B,0 B,1 B,0 A,0 B,1 B,0 B,1 A,0 B,1 B,1 B,0 A,0 B,0 B,1 B,0 B,0 A,0 A,0 B,1 B,1 B,0 B,0 A,0 A,1 B,1 A,1 A,1 B,0 B,0 A,0 A,1 A,0 B,0 B,1 A,0 A,0 A,1 B,0 A,0 B,0 B,0 A,0 A,0 B,0 A,0 A,0 A,1 A,0 B,1 B,0 B,0 B,1 B,0 A,0 B,0 A,0 B,0 A,0 B,0 A,1 B,0 A,0 B,1 B,1 A,0 B,0 B,0 A,0 B,0 B,1 A,1 A,0 B,0 B,0 A,0 A,0 B,0 A,1 B,0 B,1 B,0 A,1 B,1 A,1 B,0 B,1 B,1 A,0 B,0 A,0 B,0 B,1 A,1 A,0 A,0 B,0 B,0 A,0 A,0 B,0 A,0 B,0 A,0 A,0 B,0 A,0 A,0 B,1 A,0 A,0 A,0 B,0 A,1 B,0 A,1 A,0 A,1 B,0 A,1 A,0 A,0 A,1 A,1 B,1 A,1 B,1 B,0 B,1 A,1 B,0 A,0 A,1 B,0 A,1 A,0 A,1 A,0 A,0 B,0 A,0 B,0 A,1 A,0 B,0 A,1 B,0 B,0 B,1 B,1 B,1 A,1 B,0 A,0 A,1 B,1 B,1 A,0 B,1 A,0 A,1 B,0 A,1 B,0 A,0 A,0 B,1 A,0 B,0 B,0 A,0 A,0 A,0 A,1 A,0 B,1 B,1 B,1 B,0 A,0 A,0 B,0 A,0 B,1 A,0 A,0 B,0 A,0 A,0 A,1 A,0 A,1 A,0 B,0 A,0 B,0 B,0 A,0 B,0 A,0 B,0 B,0 B,0 B,1 B,0 B,1 A,0 A,0 A,0 A,1 A,0 B,1 A,1 A,1 A,0 B,0 B,0 B,0 A,0 B,1 B,1 A,0 A,0 B,0 A,1 A,1 B,0 B,0 B,0 A,0 B,1 A,0 A,0 A,1 B,1 A,0 B,1 B,0 B,0 B,0 A,0 A,0 B,0 A,0 A,0 B,1 A,1 A,0 B,1 B,1 A,0 A,1 A,0 A,0 B,1 A,0 A,0 B,0 B,0 A,1 A,0 B,0 B,0 A,1 A,0 B,0 B,1 B,1 A,0 A,0 B,0 A,0 A,1 A,0 B,0 B,0 A,0 A,0 B,0 B,1 B,0 A,0 A,1 A,0 A,0 A,0 B,0 A,0 B,1 B,0 B,1 B,0 A,0 B,0 A,1 B,1 A,1 B,0 A,0 A,1 A,0 B,0 B,0 B,0 A,0 A,1 A,0 A,0 A,1 B,0 A,0 A,0 A,0 B,0 B,0 B,1 B,1 B,1 A,0 A,1 B,1 A,0 B,0 B,0 B,1 A,0 A,1 B,0 B,1 B,0 A,1 A,0 A,0 A,1 B,1 B,0 A,0 A,0 B,0 B,1 A,0 A,0 B,1 B,0 B,1 B,0 B,0 B,0 A,1 B,0 B,1 B,0 B,1 A,0 A,1 B,0 A,0 A,0 B,0 A,0 A,0 A,1 B,0 A,0 B,1 A,1 A,0 B,0 A,0 A,0 A,1 B,1 A,0 A,0 A,0 A,0 A,1 B,1 A,0 A,0 B,0 A,0 A,0 B,0 B,0 A,0 B,0 A,1 A,0 A,0 A,1 B,0 B,1 A,0 A,0 B,1 A,1 B,1 A,0 B,0 A,0 A,0 A,0 A,0 A,0 B,0 B,1 B,0 A,0 A,1 A,0 A,0 B,0 A,0 A,0 B,1 B,0 B,0 B,0 B,0 B,0 B,0 A,1 A,1 B,0 A,0 B,1 A,1 B,0 A,0 B,0 B,0 A,1 A,0 B,0 B,1 A,1 A,0 A,0 B,0 A,1 A,0 A,0 A,0 B,0 B,1 B,1 B,1 B,1 A,1 A,0 A,1 A,1 B,0 B,0 B,0 B,0 A,1 A,0 B,0 A,1 B,0 A,0 B,0 B,0 B,0 A,1 B,0 A,0 B,0 A,0 A,1 B,0 A,1 B,0 B,0 B,0 B,0 A,0 A,1 A,1 B,0 B,0 B,0 B,0 B,0 A,0 B,1 B,0 A,0 B,0 A,0 A,0 A,0 A,0 A,1 B,1 B,1 A,1 A,0 A,0 A,0 B,1 B,1 A,0 B,1 B,0 A,0 A,1 A,0 A,1 B,1 A,0 A,1 B,0 B,1 B,0 B,0 A,0 A,0 B,1 A,0 A,0 A,0 A,1 A,1 A,0 A,1 A,0 B,0 A,1 B,0 A,0 A,1 B,1 A,0 A,0 A,0 B,1 B,0 B,0 A,0 B,0 A,0 B,1 A,0 A,0 B,0 A,0 B,0 A,0 B,1 A,0 A,0 A,0 B,0 A,1 B,0 A,0 B,0 A,0 B,1 A,0 A,1 A,0 B,1 B,0 B,1 B,0 B,0 B,0 B,1 A,0 A,0 B,0 A,1 A,0 B,1 B,0 B,0 A,0 B,0 A,0 B,0 B,0 B,0 A,0 B,1 B,0 B,0 B,1 A,0 B,0 B,0 A,0 A,0 A,0 B,1 A,0 B,1 B,0 B,1 A,0 B,0 B,1 B,1 B,0 B,0 A,0 B,0 B,0 B,0 B,0 A,0 A,0 B,1 A,0 B,0 B,1 A,1 A,0 A,0 A,0 A,1 B,0 A,0 A,1 A,1 B,0 A,0 A,1 A,0 A,1 B,0 A,1 B,1 A,0 A,0 A,1 B,1 A,0 A,0 A,0 B,0 A,0 B,0 A,0 A,0 B,1 A,1 B,0 A,0 B,0 B,1 A,0 B,1 A,1 B,1 B,1 A,0 B,0 B,0 B,0 A,1 B,1 A,0 B,0 A,1 B,1 A,0 B,0 B,1 A,0 B,0 A,1 B,0 B,0 B,0 B,0 A,0 A,0 A,0 B,0 A,1 B,0 B,1 B,0 A,0 B,0 B,0 B,0 B,0 B,1 B,0 A,0 A,0 A,0 B,1 B,0 B,1 B,0 A,1 A,1 A,1 B,0 B,0 B,0 B,0 A,0 A,0 B,0 B,1 A,1 A,0 B,0 B,1 A,1 B,1 A,0 B,1 B,0 A,0 A,0 A,1 A,1 A,0 A,0 B,1 A,1 B,0 B,1 A,0 A,1 A,0 A,0 A,0 A,0 B,0 B,0 B,0 B,0 A,0 A,0 A,1 B,0 B,1 A,0 A,0 B,1 B,1 B,1 A,0 A,0 A,0 A,0 A,0 B,0 B,0 A,1 B,0 B,0 A,0 A,0 B,0 A,1 A,0 A,0 A,1 A,0 B,0 B,0 A,0 B,1 A,0 A,0 A,0 A,0 B,0 B,0 A,1 B,1 B,1 A,0 A,0 A,0 B,0 A,0 A,1 A,1 B,0 A,0 A,1 A,0 A,0 A,0 A,0 A,1 A,0 A,0 A,0 A,0 A,0 B,0 A,0 B,0 A,0 B,1 A,0 B,0 A,0 B,1 B,1 B,0 B,0 B,1 A,1 A,0 B,0 B,1 A,0 A,1 B,0 A,0 B,1 A,1 B,0 B,0 B,0 A,0 A,0 A,1 B,0 B,1 B,0 A,0 A,1 B,0 A,1 A,0 A,1 B,0 B,0 A,0 B,0 A,0 B,1 A,0 A,0 A,0 A,1 A,0 B,1 B,1 B,0 A,1 B,1 A,0 A,0 B,0 A,0 A,0 A,0 A,0 A,0 A,1 B,0 A,1 A,0 B,0 B,1 B,0 B,0 A,1 B,0 A,0 B,0 B,0 A,1 B,1 B,1 A,0 A,1 A,0 A,0 B,0 A,1 B,1 A,0 A,1 A,0 A,0 A,1 A,0 B,0 A,1 A,1 A,1 A,0 A,0 A,0 A,0 A,0 B,1 B,0 B,1 B,0 B,0 B,1 B,1 A,0 B,1 B,1 B,0 A,0 B,0 A,0 B,1 B,1 A,0 B,0 A,0 B,0 A,1 B,1 B,0 B,1 B,0 B,0 B,1 A,0 A,0 B,1 B,1 B,1 A,1 B,1 B,0 B,1 A,0 A,0 B,0 B,0 B,0 A,0 A,1 A,0 B,0 A,0 B,1 B,0 B,1 B,1 A,0 B,0 B,0 A,1 A,0 B,0 B,0 A,1 B,1 A,0 A,1 B,1 B,1 A,0 A,0 B,1 B,1 A,1 B,0 B,1 B,0 A,0 A,0 B,0 B,1 B,1 B,0 B,0 A,0 A,0 B,0 A,1 B,0 A,1 A,0 B,1 A,1 A,0 A,0 A,0 B,1 B,1 A,0 B,1 A,1 A,0 B,0 A,1 A,0 A,1 A,1 A,1 B,0 B,0 B,1 B,0 B,0 B,0 B,0 B,1 B,0 A,1 A,0 B,1 A,1 B,0 B,0 B,0 A,0 B,0 A,0 B,1 A,0 B,0 A,0 A,1 B,1 B,1 B,0 B,0 A,0 B,1 A,0 A,1 A,1 B,0 B,0 B,0 B,1 A,1 B,0 B,0 A,0 B,0 A,0 A,1 B,1 B,1 A,0 B,0 B,0 B,1 A,0 A,0 B,0 A,0 B,0 A,0 B,0 A,1 A,0 A,0 B,1 A,0 B,1 B,1 A,0 B,0 B,0 B,0 B,0 B,0 B,1 B,0 A,0 A,0 A,0 A,0 A,0 A,1 A,0 A,0 B,0 B,0 A,0 A,0 A,0 B,1 B,1 A,0 B,0 B,1 A,1 B,0 A,0 B,0 A,0 B,0 B,0 B,0 A,0 B,0 A,0 B,0 A,0 A,0 A,1 A,1 B,0 A,0 B,0 A,1 A,0 B,1 B,0 B,0 A,0 B,0 A,0 A,0 A,0 A,0 B,0 A,0 A,0 A,1 A,0 A,0 A,0 B,0 A,0 B,0 B,1 A,0 A,0 B,0 A,0 A,1 B,1 A,1 B,0 B,0 B,0 B,1 B,0 B,1 B,1 B,1 B,0 A,0 A,1 A,0 B,0 A,0 B,0 B,1 A,1 B,0 A,1 B,1 A,0 A,1 A,1 A,0 B,0 A,0 A,0 A,0 A,1 A,0 B,1 B,1 B,0 B,0 B,1 B,0 B,0 B,0 A,0 A,0 B,0 A,0 B,0 A,0 B,0 B,1 A,0 B,0 B,0 B,0 B,1 B,0 B,1 B,1 B,1 B,1 A,1 B,1 A,0 B,0 B,1 B,0 B,1 A,0 A,1 A,0 B,0 A,0 A,0 B,0 B,1 A,0 B,0 B,1 A,0 A,0 A,0 B,0 A,0 B,0 A,0 B,0 A,0 A,0 A,0 A,0 B,0 B,1 A,0 B,0 B,0 A,0 B,1 B,0 B,1 A,0 B,1 B,1 B,1 B,1 B,0 B,0 B,0 B,0 B,1 B,0 B,0 B,0 A,0 A,0 A,0 A,0 B,1 B,0 A,0 B,0 A,0 B,1 A,0 A,1 B,1 B,0 A,1 B,0 B,0 B,0 A,0 A,1 B,0 B,0 B,1 A,0 A,0 B,1 B,1 A,0 A,0 A,0 A,1 A,0 B,0 B,0 A,1 B,1 A,1 B,0 A,0 B,0 A,0 A,1 B,0 A,0 B,0 B,1 B,0 A,1 A,1 B,1 A,0 B,1 B,0 A,0 B,0 A,0 A,1 A,1 A,0 B,0 A,0 A,0 B,0 A,1 A,0 A,0 B,1 B,0 B,0 B,0 B,0 B,1 A,1 B,0 A,0 B,0 A,1 B,0 B,0 B,1 B,1 B,1 B,0 A,0 B,0 B,0 A,0 B,0 B,1 B,0 B,0 A,0 B,0 A,0 B,1 B,0 A,1 A,0 B,1 B,0 B,1 A,0 A,1 B,0 B,1 B,0 B,0 A,0 B,1 A,0 B,1 A,0 B,0 B,0 B,0 B,0 B,1 A,0 B,1 B,0 B,1 B,0 B,0 A,0 B,1 A,0 A,0 B,1 B,1 A,0 B,0 B,0 B,0 B,1 A,1 B,0 B,0 B,1 A,1 B,0 A,0 A,1 B,1 B,0 B,0 B,0 A,1 A,0 A,0 A,1 B,1 A,0 A,0 A,1 B,0 A,0 A,0 B,1 B,0 A,0 B,1 A,0 B,0 B,0 A,0 B,1 B,1 A,0 B,1 B,1 A,1 A,0 A,0 B,0 B,0 B,0 B,1 B,1 B,0 A,0 B,0 A,0 A,0 A,0 A,0 A,1 B,1 A,1 A,0 B,1 A,0 B,1 A,0 A,0 B,0 B,1 A,0 A,1 B,0 A,0 A,1 B,0 A,0 B,0 B,1 B,0 B,0 A,0 B,0 A,0 A,1 B,1 A,1 B,0 B,0 B,0 A,1 B,0 A,1 B,1 B,1 B,1 A,0 A,1 A,0 B,1 B,0 B,1 A,0 B,0 A,1 A,1 A,1 A,0 A,0 A,0 A,1 B,1 B,1 A,0 B,0 B,0 A,1 A,1 A,0 B,0 A,0 A,1 B,0 A,1 B,0 A,0 B,0 A,0 A,0 B,0 B,0 A,0 A,0 B,0 A,1 A,0 B,1 B,0 A,0 A,1 B,1 B,1 B,1 A,0 A,0 B,0 A,1 A,0 B,0 A,0 A,0 B,0 B,1 B,0 A,0 B,1 A,1 B,1 B,0 A,1 B,0 A,0 A,0 B,0 A,0 B,0 A,0 A,0 B,0 A,0 B,0 B,0 B,1 B,0 A,1 A,0 A,0 B,1 B,0 B,0 A,0 B,1 B,1 B,1 B,1 A,1 A,0 A,1 A,0 A,0 A,0 A,0 B,0 B,0 A,0 A,0 A,0 B,1 B,0 B,1 A,0 A,1 B,0 A,0 B,0 B,1 A,0 A,1 A,1 A,0 A,0 A,0 A,1 A,0 A,0 A,0 A,1 A,0 ================================================ FILE: ab_testing/bayesian_bandit.py ================================================ # From the course: Bayesin Machine Learning in Python: A/B Testing # https://deeplearningcourses.com/c/bayesian-machine-learning-in-python-ab-testing # https://www.udemy.com/bayesian-machine-learning-in-python-ab-testing from __future__ import print_function, division from builtins import range # Note: you may need to update your version of future # sudo pip install -U future import matplotlib.pyplot as plt import numpy as np from scipy.stats import beta # np.random.seed(2) NUM_TRIALS = 2000 BANDIT_PROBABILITIES = [0.2, 0.5, 0.75] class Bandit: def __init__(self, p): self.p = p self.a = 1 self.b = 1 self.N = 0 # for information only def pull(self): return np.random.random() < self.p def sample(self): return np.random.beta(self.a, self.b) def update(self, x): self.a += x self.b += 1 - x self.N += 1 def plot(bandits, trial): x = np.linspace(0, 1, 200) for b in bandits: y = beta.pdf(x, b.a, b.b) plt.plot(x, y, label=f"real p: {b.p:.4f}, win rate = {b.a - 1}/{b.N}") plt.title(f"Bandit distributions after {trial} trials") plt.legend() plt.show() def experiment(): bandits = [Bandit(p) for p in BANDIT_PROBABILITIES] sample_points = [5,10,20,50,100,200,500,1000,1500,1999] rewards = np.zeros(NUM_TRIALS) for i in range(NUM_TRIALS): # Thompson sampling j = np.argmax([b.sample() for b in bandits]) # plot the posteriors if i in sample_points: plot(bandits, i) # pull the arm for the bandit with the largest sample x = bandits[j].pull() # update rewards rewards[i] = x # update the distribution for the bandit whose arm we just pulled bandits[j].update(x) # print total reward print("total reward earned:", rewards.sum()) print("overall win rate:", rewards.sum() / NUM_TRIALS) print("num times selected each bandit:", [b.N for b in bandits]) if __name__ == "__main__": experiment() ================================================ FILE: ab_testing/bayesian_normal.py ================================================ # https://deeplearningcourses.com/c/artificial-intelligence-reinforcement-learning-in-python # https://www.udemy.com/artificial-intelligence-reinforcement-learning-in-python from __future__ import print_function, division from builtins import range # Note: you may need to update your version of future # sudo pip install -U future import numpy as np import matplotlib.pyplot as plt from scipy.stats import norm np.random.seed(1) NUM_TRIALS = 2000 BANDIT_MEANS = [1, 2, 3] class Bandit: def __init__(self, true_mean): self.true_mean = true_mean # parameters for mu - prior is N(0,1) self.m = 0 self.lambda_ = 1 self.tau = 1 self.N = 0 def pull(self): return np.random.randn() / np.sqrt(self.tau) + self.true_mean def sample(self): return np.random.randn() / np.sqrt(self.lambda_) + self.m def update(self, x): self.m = (self.tau * x + self.lambda_ * self.m) / (self.tau + self.lambda_) self.lambda_ += self.tau self.N += 1 def plot(bandits, trial): x = np.linspace(-3, 6, 200) for b in bandits: y = norm.pdf(x, b.m, np.sqrt(1. / b.lambda_)) plt.plot(x, y, label=f"real mean: {b.true_mean:.4f}, num plays: {b.N}") plt.title(f"Bandit distributions after {trial} trials") plt.legend() plt.show() def run_experiment(): bandits = [Bandit(m) for m in BANDIT_MEANS] sample_points = [5,10,20,50,100,200,500,1000,1500,1999] rewards = np.empty(NUM_TRIALS) for i in range(NUM_TRIALS): # Thompson sampling j = np.argmax([b.sample() for b in bandits]) # plot the posteriors if i in sample_points: plot(bandits, i) # pull the arm for the bandit with the largest sample x = bandits[j].pull() # update the distribution for the bandit whose arm we just pulled bandits[j].update(x) # update rewards rewards[i] = x cumulative_average = np.cumsum(rewards) / (np.arange(NUM_TRIALS) + 1) # plot moving average ctr plt.plot(cumulative_average) for m in BANDIT_MEANS: plt.plot(np.ones(NUM_TRIALS)*m) plt.show() return cumulative_average if __name__ == '__main__': run_experiment() ================================================ FILE: ab_testing/bayesian_starter.py ================================================ # From the course: Bayesin Machine Learning in Python: A/B Testing # https://deeplearningcourses.com/c/bayesian-machine-learning-in-python-ab-testing # https://www.udemy.com/bayesian-machine-learning-in-python-ab-testing from __future__ import print_function, division from builtins import range # Note: you may need to update your version of future # sudo pip install -U future import matplotlib.pyplot as plt import numpy as np from scipy.stats import beta # np.random.seed(2) NUM_TRIALS = 2000 BANDIT_PROBABILITIES = [0.2, 0.5, 0.75] class Bandit: def __init__(self, p): self.p = p self.a = # TODO self.b = # TODO self.N = 0 # for information only def pull(self): return np.random.random() < self.p def sample(self): return # TODO - draw a sample from Beta(a, b) def update(self, x): self.a = # TODO self.b = # TODO self.N += 1 def plot(bandits, trial): x = np.linspace(0, 1, 200) for b in bandits: y = beta.pdf(x, b.a, b.b) plt.plot(x, y, label=f"real p: {b.p:.4f}, win rate = {b.a - 1}/{b.N}") plt.title(f"Bandit distributions after {trial} trials") plt.legend() plt.show() def experiment(): bandits = [Bandit(p) for p in BANDIT_PROBABILITIES] sample_points = [5,10,20,50,100,200,500,1000,1500,1999] rewards = np.zeros(NUM_TRIALS) for i in range(NUM_TRIALS): # Thompson sampling j = # TODO # plot the posteriors if i in sample_points: plot(bandits, i) # pull the arm for the bandit with the largest sample x = bandits[j].pull() # update rewards rewards[i] = x # update the distribution for the bandit whose arm we just pulled bandits[j].update(x) # print total reward print("total reward earned:", rewards.sum()) print("overall win rate:", rewards.sum() / NUM_TRIALS) print("num times selected each bandit:", [b.N for b in bandits]) if __name__ == "__main__": experiment() ================================================ FILE: ab_testing/cdfs_and_percentiles.py ================================================ import numpy as np import matplotlib.pyplot as plt from scipy.stats import norm mu = 170 sd = 7 # generate samples from our distribution x = norm.rvs(loc=mu, scale=sd, size=100) # maximum likelihood mean x.mean() # maximum likelihood variance x.var() # maximum likelihood std x.std() # unbiased variance x.var(ddof=1) # unbiased std x.std(ddof=1) # at what height are you in the 95th percentile? norm.ppf(0.95, loc=mu, scale=sd) # you are 160 cm tall, what percentile are you in? norm.cdf(160, loc=mu, scale=sd) # you are 180 cm tall, what is the probability that someone is taller than you? 1 - norm.cdf(180, loc=mu, scale=sd) ================================================ FILE: ab_testing/chisquare.py ================================================ # From the course: Bayesin Machine Learning in Python: A/B Testing # https://deeplearningcourses.com/c/bayesian-machine-learning-in-python-ab-testing # https://www.udemy.com/bayesian-machine-learning-in-python-ab-testing from __future__ import print_function, division from builtins import range # Note: you may need to update your version of future # sudo pip install -U future import numpy as np import matplotlib.pyplot as plt from scipy.stats import chi2, chi2_contingency # contingency table # click no click #------------------------------ # ad A | a b # ad B | c d # # chi^2 = (ad - bc)^2 (a + b + c + d) / [ (a + b)(c + d)(a + c)(b + d)] # degrees of freedom = (#cols - 1) x (#rows - 1) = (2 - 1)(2 - 1) = 1 # short example # T = np.array([[36, 14], [30, 25]]) # c2 = np.linalg.det(T)**2 * T.sum() / ( T[0].sum()*T[1].sum()*T[:,0].sum()*T[:,1].sum() ) # p_value = 1 - chi2.cdf(x=c2, df=1) # equivalent: # (36-31.429)**2/31.429+(14-18.571)**2/18.571 + (30-34.571)**2/34.571 + (25-20.429)**2/20.429 class DataGenerator: def __init__(self, p1, p2): self.p1 = p1 self.p2 = p2 def next(self): click1 = 1 if (np.random.random() < self.p1) else 0 click2 = 1 if (np.random.random() < self.p2) else 0 return click1, click2 def get_p_value(T): # same as scipy.stats.chi2_contingency(T, correction=False) det = T[0,0]*T[1,1] - T[0,1]*T[1,0] c2 = float(det) / T[0].sum() * det / T[1].sum() * T.sum() / T[:,0].sum() / T[:,1].sum() p = 1 - chi2.cdf(x=c2, df=1) return p def run_experiment(p1, p2, N): data = DataGenerator(p1, p2) p_values = np.empty(N) T = np.zeros((2, 2)).astype(np.float32) for i in range(N): c1, c2 = data.next() T[0,c1] += 1 T[1,c2] += 1 # ignore the first 10 values if i < 10: p_values[i] = None else: p_values[i] = get_p_value(T) plt.plot(p_values) plt.plot(np.ones(N)*0.05) plt.show() run_experiment(0.1, 0.11, 20000) ================================================ FILE: ab_testing/ci_comparison.py ================================================ # From the course: Bayesin Machine Learning in Python: A/B Testing # https://deeplearningcourses.com/c/bayesian-machine-learning-in-python-ab-testing # https://www.udemy.com/bayesian-machine-learning-in-python-ab-testing from __future__ import print_function, division from builtins import range # Note: you may need to update your version of future # sudo pip install -U future import matplotlib.pyplot as plt import numpy as np from scipy.stats import beta, norm T = 501 # number of coin tosses true_ctr = 0.5 a, b = 1, 1 # beta priors plot_indices = (10, 20, 30, 50, 100, 200, 500) data = np.empty(T) for i in range(T): x = 1 if np.random.random() < true_ctr else 0 data[i] = x # update a and b a += x b += 1 - x if i in plot_indices: # maximum likelihood estimate of ctr p = data[:i].mean() n = i + 1 # number of samples collected so far std = np.sqrt(p*(1-p)/n) # gaussian x = np.linspace(0, 1, 200) g = norm.pdf(x, loc=p, scale=std) plt.plot(x, g, label='Gaussian Approximation') # beta posterior = beta.pdf(x, a=a, b=b) plt.plot(x, posterior, label='Beta Posterior') plt.legend() plt.title("N = %s" % n) plt.show() ================================================ FILE: ab_testing/client.py ================================================ # From the course: Bayesin Machine Learning in Python: A/B Testing # https://deeplearningcourses.com/c/bayesian-machine-learning-in-python-ab-testing # https://www.udemy.com/bayesian-machine-learning-in-python-ab-testing from __future__ import print_function, division from builtins import range # Note: you may need to update your version of future # sudo pip install -U future import requests import numpy as np import pandas as pd from scipy import stats # get data df = pd.read_csv('advertisement_clicks.csv') a = df[df['advertisement_id'] == 'A'] b = df[df['advertisement_id'] == 'B'] a = a['action'].values b = b['action'].values print("a.mean:", a.mean()) print("b.mean:", b.mean()) i = 0 j = 0 count = 0 while i < len(a) and j < len(b): # quit when there's no data left for either ad r = requests.get('http://localhost:8888/get_ad') # print(r.content) r = r.json() if r['advertisement_id'] == 'A': action = a[i] i += 1 else: action = b[j] j += 1 if action == 1: # only click the ad if our dataset determines that we should requests.post( 'http://localhost:8888/click_ad', data={'advertisement_id': r['advertisement_id']} ) # log some stats count += 1 if count % 50 == 0: print("Seen %s ads, A: %s, B: %s" % (count, i, j)) ================================================ FILE: ab_testing/comparing_epsilons.py ================================================ # https://deeplearningcourses.com/c/artificial-intelligence-reinforcement-learning-in-python # https://www.udemy.com/artificial-intelligence-reinforcement-learning-in-python from __future__ import print_function, division from builtins import range # Note: you may need to update your version of future # sudo pip install -U future import numpy as np import matplotlib.pyplot as plt class BanditArm: def __init__(self, m): self.m = m self.m_estimate = 0 self.N = 0 def pull(self): return np.random.randn() + self.m def update(self, x): self.N += 1 self.m_estimate = (1 - 1.0/self.N)*self.m_estimate + 1.0/self.N*x def run_experiment(m1, m2, m3, eps, N): bandits = [BanditArm(m1), BanditArm(m2), BanditArm(m3)] # count number of suboptimal choices means = np.array([m1, m2, m3]) true_best = np.argmax(means) count_suboptimal = 0 data = np.empty(N) for i in range(N): # epsilon greedy p = np.random.random() if p < eps: j = np.random.choice(len(bandits)) else: j = np.argmax([b.m_estimate for b in bandits]) x = bandits[j].pull() bandits[j].update(x) if j != true_best: count_suboptimal += 1 # for the plot data[i] = x cumulative_average = np.cumsum(data) / (np.arange(N) + 1) # plot moving average ctr plt.plot(cumulative_average) plt.plot(np.ones(N)*m1) plt.plot(np.ones(N)*m2) plt.plot(np.ones(N)*m3) plt.xscale('log') plt.show() for b in bandits: print(b.m_estimate) print("percent suboptimal for epsilon = %s:" % eps, float(count_suboptimal) / N) return cumulative_average if __name__ == '__main__': m1, m2, m3 = 1.5, 2.5, 3.5 c_1 = run_experiment(m1, m2, m3, 0.1, 100000) c_05 = run_experiment(m1, m2, m3, 0.05, 100000) c_01 = run_experiment(m1, m2, m3, 0.01, 100000) # log scale plot plt.plot(c_1, label='eps = 0.1') plt.plot(c_05, label='eps = 0.05') plt.plot(c_01, label='eps = 0.01') plt.legend() plt.xscale('log') plt.show() # linear plot plt.plot(c_1, label='eps = 0.1') plt.plot(c_05, label='eps = 0.05') plt.plot(c_01, label='eps = 0.01') plt.legend() plt.show() ================================================ FILE: ab_testing/convergence.py ================================================ # From the course: Bayesin Machine Learning in Python: A/B Testing # https://deeplearningcourses.com/c/bayesian-machine-learning-in-python-ab-testing # https://www.udemy.com/bayesian-machine-learning-in-python-ab-testing from __future__ import print_function, division from builtins import range # Note: you may need to update your version of future # sudo pip install -U future import matplotlib.pyplot as plt import numpy as np from bayesian_bandit import Bandit def run_experiment(p1, p2, p3, N): bandits = [Bandit(p1), Bandit(p2), Bandit(p3)] data = np.empty(N) for i in range(N): # thompson sampling j = np.argmax([b.sample() for b in bandits]) x = bandits[j].pull() bandits[j].update(x) # for the plot data[i] = x cumulative_average_ctr = np.cumsum(data) / (np.arange(N) + 1) # plot moving average ctr plt.plot(cumulative_average_ctr) plt.plot(np.ones(N)*p1) plt.plot(np.ones(N)*p2) plt.plot(np.ones(N)*p3) plt.ylim((0,1)) plt.xscale('log') plt.show() run_experiment(0.2, 0.25, 0.3, 100000) ================================================ FILE: ab_testing/demo.py ================================================ # From the course: Bayesin Machine Learning in Python: A/B Testing # https://deeplearningcourses.com/c/bayesian-machine-learning-in-python-ab-testing # https://www.udemy.com/bayesian-machine-learning-in-python-ab-testing from __future__ import print_function, division from builtins import range # Note: you may need to update your version of future # sudo pip install -U future import numpy as np import matplotlib.pyplot as plt from scipy.stats import beta def plot(a, b, trial, ctr): x = np.linspace(0, 1, 200) y = beta.pdf(x, a, b) mean = float(a) / (a + b) plt.plot(x, y) plt.title("Distributions after %s trials, true rate = %.1f, mean = %.2f" % (trial, ctr, mean)) plt.show() true_ctr = 0.3 a, b = 1, 1 # beta parameters show = [0, 5, 10, 25, 50, 100, 200, 300, 500, 700, 1000, 1500] for t in range(1501): coin_toss_result = (np.random.random() < true_ctr) if coin_toss_result: a += 1 else: b += 1 if t in show: plot(a, b, t+1, true_ctr) ================================================ FILE: ab_testing/epsilon_greedy.py ================================================ # From the course: Bayesin Machine Learning in Python: A/B Testing # https://deeplearningcourses.com/c/bayesian-machine-learning-in-python-ab-testing # https://www.udemy.com/bayesian-machine-learning-in-python-ab-testing from __future__ import print_function, division from builtins import range # Note: you may need to update your version of future # sudo pip install -U future import matplotlib.pyplot as plt import numpy as np NUM_TRIALS = 10000 EPS = 0.1 BANDIT_PROBABILITIES = [0.2, 0.5, 0.75] class BanditArm: def __init__(self, p): # p: the win rate self.p = p self.p_estimate = 0. self.N = 0. # num samples collected so far def pull(self): # draw a 1 with probability p return np.random.random() < self.p def update(self, x): self.N += 1. self.p_estimate = ((self.N - 1)*self.p_estimate + x) / self.N def choose_random_argmax(a): idx = np.argwhere(np.amax(a) == a).flatten() return np.random.choice(idx) def experiment(): bandits = [BanditArm(p) for p in BANDIT_PROBABILITIES] rewards = np.zeros(NUM_TRIALS) num_times_explored = 0 num_times_exploited = 0 num_optimal = 0 optimal_j = np.argmax([b.p for b in bandits]) print("optimal j:", optimal_j) for i in range(NUM_TRIALS): # use epsilon-greedy to select the next bandit if np.random.random() < EPS: num_times_explored += 1 j = np.random.randint(len(bandits)) else: num_times_exploited += 1 j = choose_random_argmax([b.p_estimate for b in bandits]) if j == optimal_j: num_optimal += 1 # pull the arm for the bandit with the largest sample x = bandits[j].pull() # update rewards log rewards[i] = x # update the distribution for the bandit whose arm we just pulled bandits[j].update(x) # print mean estimates for each bandit for b in bandits: print("mean estimate:", b.p_estimate) # print total reward print("total reward earned:", rewards.sum()) print("overall win rate:", rewards.sum() / NUM_TRIALS) print("num_times_explored:", num_times_explored) print("num_times_exploited:", num_times_exploited) print("num times selected optimal bandit:", num_optimal) # plot the results cumulative_rewards = np.cumsum(rewards) win_rates = cumulative_rewards / (np.arange(NUM_TRIALS) + 1) plt.plot(win_rates) plt.plot(np.ones(NUM_TRIALS)*np.max(BANDIT_PROBABILITIES)) plt.show() if __name__ == "__main__": experiment() ================================================ FILE: ab_testing/epsilon_greedy_starter.py ================================================ # From the course: Bayesin Machine Learning in Python: A/B Testing # https://deeplearningcourses.com/c/bayesian-machine-learning-in-python-ab-testing # https://www.udemy.com/bayesian-machine-learning-in-python-ab-testing from __future__ import print_function, division from builtins import range # Note: you may need to update your version of future # sudo pip install -U future import matplotlib.pyplot as plt import numpy as np NUM_TRIALS = 10000 EPS = 0.1 BANDIT_PROBABILITIES = [0.2, 0.5, 0.75] class BanditArm: def __init__(self, p): # p: the win rate self.p = p self.p_estimate = # TODO self.N = # TODO def pull(self): # draw a 1 with probability p return np.random.random() < self.p def update(self, x): self.N = # TODO self.p_estimate = # TODO def experiment(): bandits = [BanditArm(p) for p in BANDIT_PROBABILITIES] rewards = np.zeros(NUM_TRIALS) num_times_explored = 0 num_times_exploited = 0 num_optimal = 0 optimal_j = np.argmax([b.p for b in bandits]) print("optimal j:", optimal_j) for i in range(NUM_TRIALS): # use epsilon-greedy to select the next bandit if np.random.random() < EPS: num_times_explored += 1 j = # TODO else: num_times_exploited += 1 j = # TODO if j == optimal_j: num_optimal += 1 # pull the arm for the bandit with the largest sample x = bandits[j].pull() # update rewards log rewards[i] = x # update the distribution for the bandit whose arm we just pulled bandits[j].update(x) # print mean estimates for each bandit for b in bandits: print("mean estimate:", b.p_estimate) # print total reward print("total reward earned:", rewards.sum()) print("overall win rate:", rewards.sum() / NUM_TRIALS) print("num_times_explored:", num_times_explored) print("num_times_exploited:", num_times_exploited) print("num times selected optimal bandit:", num_optimal) # plot the results cumulative_rewards = np.cumsum(rewards) win_rates = cumulative_rewards / (np.arange(NUM_TRIALS) + 1) plt.plot(win_rates) plt.plot(np.ones(NUM_TRIALS)*np.max(BANDIT_PROBABILITIES)) plt.show() if __name__ == "__main__": experiment() ================================================ FILE: ab_testing/ex_chisq.py ================================================ # From the course: Bayesin Machine Learning in Python: A/B Testing # https://deeplearningcourses.com/c/bayesian-machine-learning-in-python-ab-testing # https://www.udemy.com/bayesian-machine-learning-in-python-ab-testing from __future__ import print_function, division from builtins import range # Note: you may need to update your version of future # sudo pip install -U future import numpy as np import pandas as pd from scipy.stats import chi2, chi2_contingency # contingency table # click no click #------------------------------ # ad A | a b # ad B | c d def get_p_value(T): # same as scipy.stats.chi2_contingency(T, correction=False) det = T[0,0]*T[1,1] - T[0,1]*T[1,0] c2 = float(det) / T[0].sum() * det / T[1].sum() * T.sum() / T[:,0].sum() / T[:,1].sum() p = 1 - chi2.cdf(x=c2, df=1) return p # get data df = pd.read_csv('advertisement_clicks.csv') a = df[df['advertisement_id'] == 'A'] b = df[df['advertisement_id'] == 'B'] a = a['action'] b = b['action'] A_clk = a.sum() A_noclk = a.size - a.sum() B_clk = b.sum() B_noclk = b.size - b.sum() T = np.array([[A_clk, A_noclk], [B_clk, B_noclk]]) print(get_p_value(T)) ================================================ FILE: ab_testing/ex_ttest.py ================================================ # From the course: Bayesin Machine Learning in Python: A/B Testing # https://deeplearningcourses.com/c/bayesian-machine-learning-in-python-ab-testing # https://www.udemy.com/bayesian-machine-learning-in-python-ab-testing from __future__ import print_function, division from builtins import range # Note: you may need to update your version of future # sudo pip install -U future import numpy as np import pandas as pd from scipy import stats # get data df = pd.read_csv('advertisement_clicks.csv') a = df[df['advertisement_id'] == 'A'] b = df[df['advertisement_id'] == 'B'] a = a['action'] b = b['action'] print("a.mean:", a.mean()) print("b.mean:", b.mean()) # built-in t-test: t, p = stats.ttest_ind(a, b) print("t:\t", t, "p:\t", p) # welch's t-test: t, p = stats.ttest_ind(a, b, equal_var=False) print("Welch's t-test:") print("t:\t", t, "p:\t", p) # welch's t-test manual: N1 = len(a) s1_sq = a.var() N2 = len(b) s2_sq = b.var() t = (a.mean() - b.mean()) / np.sqrt(s1_sq / N1 + s2_sq / N2) nu1 = N1 - 1 nu2 = N2 - 1 df = (s1_sq / N1 + s2_sq / N2)**2 / ( (s1_sq*s1_sq) / (N1*N1 * nu1) + (s2_sq*s2_sq) / (N2*N2 * nu2) ) p = (1 - stats.t.cdf(np.abs(t), df=df))*2 print("Manual Welch t-test") print("t:\t", t, "p:\t", p) ================================================ FILE: ab_testing/extra_reading.txt ================================================ The Unbiased Estimate of the Covariance Matrix https://lazyprogrammer.me/covariance-matrix-divide-by-n-or-n-1/ Algorithms for the multi-armed bandit problem https://www.cs.mcgill.ca/~vkules/bandits.pdf UCB REVISITED: IMPROVED REGRET BOUNDS FOR THE STOCHASTIC MULTI-ARMED BANDIT PROBLEM http://personal.unileoben.ac.at/rortner/Pubs/UCBRev.pdf Finite-time Analysis of the Multiarmed Bandit Problem https://link.springer.com/article/10.1023/A:1013689704352 A Tutorial on Thompson Sampling https://web.stanford.edu/~bvr/pubs/TS_Tutorial.pdf An Empirical Evaluation of Thompson Sampling https://papers.nips.cc/paper/4321-an-empirical-evaluation-of-thompson-sampling.pdf Analysis of Thompson Sampling for the Multi-armed Bandit Problem http://proceedings.mlr.press/v23/agrawal12/agrawal12.pdf ================================================ FILE: ab_testing/optimistic.py ================================================ # From the course: Bayesin Machine Learning in Python: A/B Testing # https://deeplearningcourses.com/c/bayesian-machine-learning-in-python-ab-testing # https://www.udemy.com/bayesian-machine-learning-in-python-ab-testing from __future__ import print_function, division from builtins import range # Note: you may need to update your version of future # sudo pip install -U future import matplotlib.pyplot as plt import numpy as np NUM_TRIALS = 10000 EPS = 0.1 BANDIT_PROBABILITIES = [0.2, 0.5, 0.75] class Bandit: def __init__(self, p): # p: the win rate self.p = p self.p_estimate = 5. self.N = 1. # num samples collected so far def pull(self): # draw a 1 with probability p return np.random.random() < self.p def update(self, x): self.N += 1. self.p_estimate = ((self.N - 1)*self.p_estimate + x) / self.N def experiment(): bandits = [Bandit(p) for p in BANDIT_PROBABILITIES] rewards = np.zeros(NUM_TRIALS) for i in range(NUM_TRIALS): # use optimistic initial values to select the next bandit j = np.argmax([b.p_estimate for b in bandits]) # pull the arm for the bandit with the largest sample x = bandits[j].pull() # update rewards log rewards[i] = x # update the distribution for the bandit whose arm we just pulled bandits[j].update(x) # print mean estimates for each bandit for b in bandits: print("mean estimate:", b.p_estimate) # print total reward print("total reward earned:", rewards.sum()) print("overall win rate:", rewards.sum() / NUM_TRIALS) print("num times selected each bandit:", [b.N for b in bandits]) # plot the results cumulative_rewards = np.cumsum(rewards) win_rates = cumulative_rewards / (np.arange(NUM_TRIALS) + 1) plt.ylim([0, 1]) plt.plot(win_rates) plt.plot(np.ones(NUM_TRIALS)*np.max(BANDIT_PROBABILITIES)) plt.show() if __name__ == "__main__": experiment() ================================================ FILE: ab_testing/optimistic_starter.py ================================================ # From the course: Bayesin Machine Learning in Python: A/B Testing # https://deeplearningcourses.com/c/bayesian-machine-learning-in-python-ab-testing # https://www.udemy.com/bayesian-machine-learning-in-python-ab-testing from __future__ import print_function, division from builtins import range # Note: you may need to update your version of future # sudo pip install -U future import matplotlib.pyplot as plt import numpy as np NUM_TRIALS = 10000 EPS = 0.1 BANDIT_PROBABILITIES = [0.2, 0.5, 0.75] class Bandit: def __init__(self, p): # p: the win rate self.p = p self.p_estimate = # TODO self.N = # TODO def pull(self): # draw a 1 with probability p return np.random.random() < self.p def update(self, x): # TODO self.p_estimate = # TODO def experiment(): bandits = [Bandit(p) for p in BANDIT_PROBABILITIES] rewards = np.zeros(NUM_TRIALS) for i in range(NUM_TRIALS): # use optimistic initial values to select the next bandit j = # TODO # pull the arm for the bandit with the largest sample x = bandits[j].pull() # update rewards log rewards[i] = x # update the distribution for the bandit whose arm we just pulled bandits[j].update(x) # print mean estimates for each bandit for b in bandits: print("mean estimate:", b.p_estimate) # print total reward print("total reward earned:", rewards.sum()) print("overall win rate:", rewards.sum() / NUM_TRIALS) print("num times selected each bandit:", [b.N for b in bandits]) # plot the results cumulative_rewards = np.cumsum(rewards) win_rates = cumulative_rewards / (np.arange(NUM_TRIALS) + 1) plt.ylim([0, 1]) plt.plot(win_rates) plt.plot(np.ones(NUM_TRIALS)*np.max(BANDIT_PROBABILITIES)) plt.show() if __name__ == "__main__": experiment() ================================================ FILE: ab_testing/server_solution.py ================================================ # From the course: Bayesin Machine Learning in Python: A/B Testing # https://deeplearningcourses.com/c/bayesian-machine-learning-in-python-ab-testing # https://www.udemy.com/bayesian-machine-learning-in-python-ab-testing from __future__ import print_function, division from builtins import range # Note: you may need to update your version of future # sudo pip install -U future import numpy as np from flask import Flask, jsonify, request from scipy.stats import beta # create an app app = Flask(__name__) # define bandit # there's no "pull arm" here # since that's technically now the user/client class Bandit: def __init__(self, name): self.clks = 0 self.views = 0 self.name = name def sample(self): # Beta(1, 1) is the prior a = 1 + self.clks b = 1 + self.views - self.clks return np.random.beta(a, b) def add_click(self): self.clks += 1 def add_view(self): self.views += 1 # print some helpful stats if self.views % 50 == 0: print("%s: clks=%s, views=%s" % (self.name, self.clks, self.views)) # initialize bandits banditA = Bandit('A') banditB = Bandit('B') @app.route('/get_ad') def get_ad(): if banditA.sample() > banditB.sample(): ad = 'A' banditA.add_view() else: ad = 'B' banditB.add_view() return jsonify({'advertisement_id': ad}) @app.route('/click_ad', methods=['POST']) def click_ad(): result = 'OK' if request.form['advertisement_id'] == 'A': banditA.add_click() elif request.form['advertisement_id'] == 'B': banditB.add_click() else: result = 'Invalid Input.' # nothing to return really return jsonify({'result': result}) if __name__ == '__main__': app.run(host='127.0.0.1', port='8888') ================================================ FILE: ab_testing/server_starter.py ================================================ # From the course: Bayesin Machine Learning in Python: A/B Testing # https://deeplearningcourses.com/c/bayesian-machine-learning-in-python-ab-testing # https://www.udemy.com/bayesian-machine-learning-in-python-ab-testing from __future__ import print_function, division from builtins import range # Note: you may need to update your version of future # sudo pip install -U future import numpy as np from flask import Flask, jsonify, request from scipy.stats import beta # create an app app = Flask(__name__) # define bandits # there's no "pull arm" here # since that's technically now the user/client class Bandit: def __init__(self, name): self.name = name def sample(self): # TODO return 1 # TODO - what else does the Bandit need to do? # initialize bandits banditA = Bandit('A') banditB = Bandit('B') @app.route('/get_ad') def get_ad(): # TODO return jsonify({'advertisement_id': 'A'}) @app.route('/click_ad', methods=['POST']) def click_ad(): result = 'OK' if request.form['advertisement_id'] == 'A': # TODO pass elif request.form['advertisement_id'] == 'B': # TODO pass else: result = 'Invalid Input.' # nothing to return really return jsonify({'result': result}) if __name__ == '__main__': app.run(host='127.0.0.1', port='8888') ================================================ FILE: ab_testing/ttest.py ================================================ # From the course: Bayesin Machine Learning in Python: A/B Testing # https://deeplearningcourses.com/c/bayesian-machine-learning-in-python-ab-testing # https://www.udemy.com/bayesian-machine-learning-in-python-ab-testing from __future__ import print_function, division from builtins import range # Note: you may need to update your version of future # sudo pip install -U future import numpy as np from scipy import stats # generate data N = 10 a = np.random.randn(N) + 2 # mean 2, variance 1 b = np.random.randn(N) # mean 0, variance 1 # roll your own t-test: var_a = a.var(ddof=1) # unbiased estimator, divide by N-1 instead of N var_b = b.var(ddof=1) s = np.sqrt( (var_a + var_b) / 2 ) # balanced standard deviation t = (a.mean() - b.mean()) / (s * np.sqrt(2.0/N)) # t-statistic df = 2*N - 2 # degrees of freedom p = 1 - stats.t.cdf(np.abs(t), df=df) # one-sided test p-value print("t:\t", t, "p:\t", 2*p) # two-sided test p-value # built-in t-test: t2, p2 = stats.ttest_ind(a, b) print("t2:\t", t2, "p2:\t", p2) ================================================ FILE: ab_testing/ucb1.py ================================================ # https://deeplearningcourses.com/c/artificial-intelligence-reinforcement-learning-in-python # https://www.udemy.com/artificial-intelligence-reinforcement-learning-in-python # https://books.google.ca/books?id=_ATpBwAAQBAJ&lpg=PA201&ots=rinZM8jQ6s&dq=hoeffding%20bound%20gives%20probability%20%22greater%20than%201%22&pg=PA201#v=onepage&q&f=false from __future__ import print_function, division from builtins import range # Note: you may need to update your version of future # sudo pip install -U future import numpy as np import matplotlib.pyplot as plt NUM_TRIALS = 100000 EPS = 0.1 BANDIT_PROBABILITIES = [0.2, 0.5, 0.75] class Bandit: def __init__(self, p): # p: the win rate self.p = p self.p_estimate = 0. self.N = 0. # num samples collected so far def pull(self): # draw a 1 with probability p return np.random.random() < self.p def update(self, x): self.N += 1. self.p_estimate = ((self.N - 1)*self.p_estimate + x) / self.N def ucb(mean, n, nj): return mean + np.sqrt(2*np.log(n) / nj) def run_experiment(): bandits = [Bandit(p) for p in BANDIT_PROBABILITIES] rewards = np.empty(NUM_TRIALS) total_plays = 0 # initialization: play each bandit once for j in range(len(bandits)): x = bandits[j].pull() total_plays += 1 bandits[j].update(x) for i in range(NUM_TRIALS): j = np.argmax([ucb(b.p_estimate, total_plays, b.N) for b in bandits]) x = bandits[j].pull() total_plays += 1 bandits[j].update(x) # for the plot rewards[i] = x cumulative_average = np.cumsum(rewards) / (np.arange(NUM_TRIALS) + 1) # plot moving average ctr plt.plot(cumulative_average) plt.plot(np.ones(NUM_TRIALS)*np.max(BANDIT_PROBABILITIES)) plt.xscale('log') plt.show() # plot moving average ctr linear plt.plot(cumulative_average) plt.plot(np.ones(NUM_TRIALS)*np.max(BANDIT_PROBABILITIES)) plt.show() for b in bandits: print(b.p_estimate) print("total reward earned:", rewards.sum()) print("overall win rate:", rewards.sum() / NUM_TRIALS) print("num times selected each bandit:", [b.N for b in bandits]) return cumulative_average if __name__ == '__main__': run_experiment() ================================================ FILE: ab_testing/ucb1_starter.py ================================================ # https://deeplearningcourses.com/c/artificial-intelligence-reinforcement-learning-in-python # https://www.udemy.com/artificial-intelligence-reinforcement-learning-in-python # https://books.google.ca/books?id=_ATpBwAAQBAJ&lpg=PA201&ots=rinZM8jQ6s&dq=hoeffding%20bound%20gives%20probability%20%22greater%20than%201%22&pg=PA201#v=onepage&q&f=false from __future__ import print_function, division from builtins import range # Note: you may need to update your version of future # sudo pip install -U future import numpy as np import matplotlib.pyplot as plt NUM_TRIALS = 100000 EPS = 0.1 BANDIT_PROBABILITIES = [0.2, 0.5, 0.75] class Bandit: def __init__(self, p): # p: the win rate self.p = p self.p_estimate = 0. self.N = 0. # num samples collected so far def pull(self): # draw a 1 with probability p return np.random.random() < self.p def update(self, x): self.N += 1. self.p_estimate = ((self.N - 1)*self.p_estimate + x) / self.N def ucb(mean, n, nj): return # TODO def run_experiment(): bandits = [Bandit(p) for p in BANDIT_PROBABILITIES] rewards = np.empty(NUM_TRIALS) total_plays = 0 # initialization: play each bandit once for j in range(len(bandits)): x = bandits[j].pull() total_plays += 1 bandits[j].update(x) for i in range(NUM_TRIALS): j = # TODO x = bandits[j].pull() total_plays += 1 bandits[j].update(x) # for the plot rewards[i] = x cumulative_average = np.cumsum(rewards) / (np.arange(NUM_TRIALS) + 1) # plot moving average ctr plt.plot(cumulative_average) plt.plot(np.ones(NUM_TRIALS)*np.max(BANDIT_PROBABILITIES)) plt.xscale('log') plt.show() # plot moving average ctr linear plt.plot(cumulative_average) plt.plot(np.ones(NUM_TRIALS)*np.max(BANDIT_PROBABILITIES)) plt.show() for b in bandits: print(b.p_estimate) print("total reward earned:", rewards.sum()) print("overall win rate:", rewards.sum() / NUM_TRIALS) print("num times selected each bandit:", [b.N for b in bandits]) return cumulative_average if __name__ == '__main__': run_experiment() ================================================ FILE: airline/ann.py ================================================ # The corresponding tutorial for this code was released EXCLUSIVELY as a bonus # If you want to learn about future bonuses, please sign up for my newsletter at: # https://lazyprogrammer.me import numpy as np import pandas as pd import matplotlib.pyplot as plt import theano import theano.tensor as T from sklearn.utils import shuffle def init_weight(M1, M2): return np.random.randn(M1, M2) / np.sqrt(M1 + M2) def myr2(T, Y): Ym = T.mean() sse = (T - Y).dot(T - Y) sst = (T - Ym).dot(T - Ym) return 1 - sse / sst class HiddenLayer(object): def __init__(self, M1, M2, f, an_id): self.id = an_id self.M1 = M1 self.M2 = M2 self.f = f W = init_weight(M1, M2) b = np.zeros(M2) self.W = theano.shared(W, 'W_%s' % self.id) self.b = theano.shared(b, 'b_%s' % self.id) self.params = [self.W, self.b] def forward(self, X): return self.f(X.dot(self.W) + self.b) class ANN(object): def __init__(self, hidden_layer_sizes): self.hidden_layer_sizes = hidden_layer_sizes def fit(self, X, Y, activation=T.tanh, learning_rate=1e-3, mu=0.5, reg=0, epochs=5000, batch_sz=None, print_period=100, show_fig=True): X = X.astype(np.float32) Y = Y.astype(np.float32) # initialize hidden layers N, D = X.shape self.hidden_layers = [] M1 = D count = 0 for M2 in self.hidden_layer_sizes: h = HiddenLayer(M1, M2, activation, count) self.hidden_layers.append(h) M1 = M2 count += 1 W = np.random.randn(M1) / np.sqrt(M1) b = 0.0 self.W = theano.shared(W, 'W_last') self.b = theano.shared(b, 'b_last') if batch_sz is None: batch_sz = N # collect params for later use self.params = [self.W, self.b] for h in self.hidden_layers: self.params += h.params # for momentum dparams = [theano.shared(np.zeros(p.get_value().shape)) for p in self.params] # set up theano functions and variables thX = T.matrix('X') thY = T.vector('Y') Yhat = self.forward(thX) rcost = reg*T.mean([(p*p).sum() for p in self.params]) cost = T.mean((thY - Yhat).dot(thY - Yhat)) + rcost prediction = self.forward(thX) grads = T.grad(cost, self.params) # momentum only updates = [ (p, p + mu*dp - learning_rate*g) for p, dp, g in zip(self.params, dparams, grads) ] + [ (dp, mu*dp - learning_rate*g) for dp, g in zip(dparams, grads) ] train_op = theano.function( inputs=[thX, thY], outputs=[cost, prediction], updates=updates, ) self.predict_op = theano.function( inputs=[thX], outputs=prediction, ) n_batches = N / batch_sz # print "N:", N, "batch_sz:", batch_sz # print "n_batches:", n_batches costs = [] for i in xrange(epochs): X, Y = shuffle(X, Y) for j in xrange(n_batches): Xbatch = X[j*batch_sz:(j*batch_sz+batch_sz)] Ybatch = Y[j*batch_sz:(j*batch_sz+batch_sz)] c, p = train_op(Xbatch, Ybatch) costs.append(c) if (j+1) % print_period == 0: print "i:", i, "j:", j, "nb:", n_batches, "cost:", c if show_fig: plt.plot(costs) plt.show() def forward(self, X): Z = X for h in self.hidden_layers: Z = h.forward(Z) return Z.dot(self.W) + self.b def score(self, X, Y): Yhat = self.predict_op(X) return myr2(Y, Yhat) def predict(self, X): return self.predict_op(X) # we need to skip the 3 footer rows # skipfooter does not work with the default engine, 'c' # so we need to explicitly set it to 'python' df = pd.read_csv('international-airline-passengers.csv', engine='python', skipfooter=3) # rename the columns because they are ridiculous df.columns = ['month', 'num_passengers'] # plot the data so we know what it looks like # plt.plot(df.num_passengers) # plt.show() # let's try with only the time series itself series = df.num_passengers.as_matrix() # series = (series - series.mean()) / series.std() # normalize the values so they have mean 0 and variance 1 series = series.astype(np.float32) series = series - series.min() series = series / series.max() # let's see if we can use D past values to predict the next value N = len(series) for D in (2,3,4,5,6,7): n = N - D X = np.zeros((n, D)) for d in xrange(D): X[:,d] = series[d:d+n] Y = series[D:D+n] print "series length:", n Xtrain = X[:n/2] Ytrain = Y[:n/2] Xtest = X[n/2:] Ytest = Y[n/2:] model = ANN([200]) model.fit(Xtrain, Ytrain, activation=T.tanh) print "train score:", model.score(Xtrain, Ytrain) print "test score:", model.score(Xtest, Ytest) # plot the prediction with true values plt.plot(series) train_series = np.empty(n) train_series[:n/2] = model.predict(Xtrain) train_series[n/2:] = np.nan # prepend d nan's since the train series is only of size N - D plt.plot(np.concatenate([np.full(d, np.nan), train_series])) test_series = np.empty(n) test_series[:n/2] = np.nan test_series[n/2:] = model.predict(Xtest) plt.plot(np.concatenate([np.full(d, np.nan), test_series])) plt.show() ================================================ FILE: airline/international-airline-passengers.csv ================================================ "Month","International airline passengers: monthly totals in thousands. Jan 49 ? Dec 60" "1949-01",112 "1949-02",118 "1949-03",132 "1949-04",129 "1949-05",121 "1949-06",135 "1949-07",148 "1949-08",148 "1949-09",136 "1949-10",119 "1949-11",104 "1949-12",118 "1950-01",115 "1950-02",126 "1950-03",141 "1950-04",135 "1950-05",125 "1950-06",149 "1950-07",170 "1950-08",170 "1950-09",158 "1950-10",133 "1950-11",114 "1950-12",140 "1951-01",145 "1951-02",150 "1951-03",178 "1951-04",163 "1951-05",172 "1951-06",178 "1951-07",199 "1951-08",199 "1951-09",184 "1951-10",162 "1951-11",146 "1951-12",166 "1952-01",171 "1952-02",180 "1952-03",193 "1952-04",181 "1952-05",183 "1952-06",218 "1952-07",230 "1952-08",242 "1952-09",209 "1952-10",191 "1952-11",172 "1952-12",194 "1953-01",196 "1953-02",196 "1953-03",236 "1953-04",235 "1953-05",229 "1953-06",243 "1953-07",264 "1953-08",272 "1953-09",237 "1953-10",211 "1953-11",180 "1953-12",201 "1954-01",204 "1954-02",188 "1954-03",235 "1954-04",227 "1954-05",234 "1954-06",264 "1954-07",302 "1954-08",293 "1954-09",259 "1954-10",229 "1954-11",203 "1954-12",229 "1955-01",242 "1955-02",233 "1955-03",267 "1955-04",269 "1955-05",270 "1955-06",315 "1955-07",364 "1955-08",347 "1955-09",312 "1955-10",274 "1955-11",237 "1955-12",278 "1956-01",284 "1956-02",277 "1956-03",317 "1956-04",313 "1956-05",318 "1956-06",374 "1956-07",413 "1956-08",405 "1956-09",355 "1956-10",306 "1956-11",271 "1956-12",306 "1957-01",315 "1957-02",301 "1957-03",356 "1957-04",348 "1957-05",355 "1957-06",422 "1957-07",465 "1957-08",467 "1957-09",404 "1957-10",347 "1957-11",305 "1957-12",336 "1958-01",340 "1958-02",318 "1958-03",362 "1958-04",348 "1958-05",363 "1958-06",435 "1958-07",491 "1958-08",505 "1958-09",404 "1958-10",359 "1958-11",310 "1958-12",337 "1959-01",360 "1959-02",342 "1959-03",406 "1959-04",396 "1959-05",420 "1959-06",472 "1959-07",548 "1959-08",559 "1959-09",463 "1959-10",407 "1959-11",362 "1959-12",405 "1960-01",417 "1960-02",391 "1960-03",419 "1960-04",461 "1960-05",472 "1960-06",535 "1960-07",622 "1960-08",606 "1960-09",508 "1960-10",461 "1960-11",390 "1960-12",432 International airline passengers: monthly totals in thousands. Jan 49 ? Dec 60 ================================================ FILE: airline/lr.py ================================================ # The corresponding tutorial for this code was released EXCLUSIVELY as a bonus # If you want to learn about future bonuses, please sign up for my newsletter at: # https://lazyprogrammer.me import numpy as np import pandas as pd import matplotlib.pyplot as plt from sklearn.linear_model import LinearRegression # we need to skip the 3 footer rows # skipfooter does not work with the default engine, 'c' # so we need to explicitly set it to 'python' df = pd.read_csv('international-airline-passengers.csv', engine='python', skipfooter=3) # rename the columns because they are ridiculous df.columns = ['month', 'num_passengers'] # plot the data so we know what it looks like plt.plot(df.num_passengers) plt.show() # let's try with only the time series itself series = df.num_passengers.as_matrix() # let's see if we can use D past values to predict the next value N = len(series) for D in (2,3,4,5,6,7): n = N - D X = np.zeros((n, D)) for d in xrange(D): X[:,d] = series[d:d+n] Y = series[D:D+n] print "series length:", n Xtrain = X[:n/2] Ytrain = Y[:n/2] Xtest = X[n/2:] Ytest = Y[n/2:] model = LinearRegression() model.fit(Xtrain, Ytrain) print "train score:", model.score(Xtrain, Ytrain) print "test score:", model.score(Xtest, Ytest) # plot the prediction with true values plt.plot(series) train_series = np.empty(n) train_series[:n/2] = model.predict(Xtrain) train_series[n/2:] = np.nan # prepend d nan's since the train series is only of size N - D plt.plot(np.concatenate([np.full(d, np.nan), train_series])) test_series = np.empty(n) test_series[:n/2] = np.nan test_series[n/2:] = model.predict(Xtest) plt.plot(np.concatenate([np.full(d, np.nan), test_series])) plt.show() ================================================ FILE: airline/rnn.py ================================================ # The corresponding tutorial for this code was released EXCLUSIVELY as a bonus # If you want to learn about future bonuses, please sign up for my newsletter at: # https://lazyprogrammer.me import numpy as np import pandas as pd import matplotlib.pyplot as plt import theano import theano.tensor as T from sklearn.utils import shuffle from datetime import datetime import os import sys sys.path.append(os.path.abspath('..')) from rnn_class.lstm import LSTM from rnn_class.gru import GRU def init_weight(M1, M2): return np.random.randn(M1, M2) / np.sqrt(M1 + M2) def myr2(T, Y): Ym = T.mean() sse = (T - Y).dot(T - Y) sst = (T - Ym).dot(T - Ym) return 1 - sse / sst class RNN(object): def __init__(self, hidden_layer_sizes): self.hidden_layer_sizes = hidden_layer_sizes def fit(self, X, Y, activation=T.tanh, learning_rate=1e-1, mu=0.5, reg=0, epochs=2000, show_fig=False): N, t, D = X.shape self.hidden_layers = [] Mi = D for Mo in self.hidden_layer_sizes: ru = GRU(Mi, Mo, activation) self.hidden_layers.append(ru) Mi = Mo Wo = np.random.randn(Mi) / np.sqrt(Mi) bo = 0.0 self.Wo = theano.shared(Wo) self.bo = theano.shared(bo) self.params = [self.Wo, self.bo] for ru in self.hidden_layers: self.params += ru.params lr = T.scalar('lr') thX = T.matrix('X') thY = T.scalar('Y') Yhat = self.forward(thX)[-1] # let's return py_x too so we can draw a sample instead self.predict_op = theano.function( inputs=[thX], outputs=Yhat, allow_input_downcast=True, ) cost = T.mean((thY - Yhat)*(thY - Yhat)) grads = T.grad(cost, self.params) dparams = [theano.shared(p.get_value()*0) for p in self.params] updates = [ (p, p + mu*dp - lr*g) for p, dp, g in zip(self.params, dparams, grads) ] + [ (dp, mu*dp - lr*g) for dp, g in zip(dparams, grads) ] self.train_op = theano.function( inputs=[lr, thX, thY], outputs=cost, updates=updates ) costs = [] for i in xrange(epochs): t0 = datetime.now() X, Y = shuffle(X, Y) n_correct = 0 n_total = 0 cost = 0 for j in xrange(N): c = self.train_op(learning_rate, X[j], Y[j]) cost += c if i % 10 == 0: print "i:", i, "cost:", cost, "time for epoch:", (datetime.now() - t0) if (i+1) % 500 == 0: learning_rate /= 10 costs.append(cost) if show_fig: plt.plot(costs) plt.show() def forward(self, X): Z = X for h in self.hidden_layers: Z = h.output(Z) return Z.dot(self.Wo) + self.bo def score(self, X, Y): Yhat = self.predict(X) return myr2(Y, Yhat) def predict(self, X): N = len(X) Yhat = np.empty(N) for i in xrange(N): Yhat[i] = self.predict_op(X[i]) return Yhat # we need to skip the 3 footer rows # skipfooter does not work with the default engine, 'c' # so we need to explicitly set it to 'python' df = pd.read_csv('international-airline-passengers.csv', engine='python', skipfooter=3) # rename the columns because they are ridiculous df.columns = ['month', 'num_passengers'] # plot the data so we know what it looks like # plt.plot(df.num_passengers) # plt.show() # let's try with only the time series itself series = df.num_passengers.as_matrix() # series = (series - series.mean()) / series.std() # normalize the values so they have mean 0 and variance 1 series = series.astype(np.float32) series = series - series.min() series = series / series.max() # let's see if we can use D past values to predict the next value N = len(series) for D in (2,3,4,5): n = N - D X = np.zeros((n, D)) for d in xrange(D): X[:,d] = series[d:d+n] Y = series[D:D+n] print "series length:", n Xtrain = X[:n/2] Ytrain = Y[:n/2] Xtest = X[n/2:] Ytest = Y[n/2:] Ntrain = len(Xtrain) Xtrain = Xtrain.reshape(Ntrain, D, 1) Ntest = len(Xtest) Xtest = Xtest.reshape(Ntest, D, 1) model = RNN([50]) model.fit(Xtrain, Ytrain, activation=T.tanh) print "train score:", model.score(Xtrain, Ytrain) print "test score:", model.score(Xtest, Ytest) # plot the prediction with true values plt.plot(series) train_series = np.empty(n) train_series[:n/2] = model.predict(Xtrain) train_series[n/2:] = np.nan # prepend d nan's since the train series is only of size N - D plt.plot(np.concatenate([np.full(d, np.nan), train_series])) test_series = np.empty(n) test_series[:n/2] = np.nan test_series[n/2:] = model.predict(Xtest) plt.plot(np.concatenate([np.full(d, np.nan), test_series])) plt.show() ================================================ FILE: ann_class/backprop.py ================================================ # backpropagation example for deep learning in python class. # with sigmoid activation # # the notes for this class can be found at: # https://deeplearningcourses.com/c/data-science-deep-learning-in-python # https://www.udemy.com/data-science-deep-learning-in-python from __future__ import print_function, division from builtins import range # Note: you may need to update your version of future # sudo pip install -U future import numpy as np import matplotlib.pyplot as plt np.random.seed(1) def forward(X, W1, b1, W2, b2): Z = 1 / (1 + np.exp(-X.dot(W1) - b1)) A = Z.dot(W2) + b2 expA = np.exp(A) Y = expA / expA.sum(axis=1, keepdims=True) return Y, Z # determine the classification rate # num correct / num total def classification_rate(Y, P): n_correct = 0 n_total = 0 for i in range(len(Y)): n_total += 1 if Y[i] == P[i]: n_correct += 1 return float(n_correct) / n_total def derivative_w2(Z, T, Y): N, K = T.shape M = Z.shape[1] # H is (N, M) # # slow # ret1 = np.zeros((M, K)) # for n in xrange(N): # for m in xrange(M): # for k in xrange(K): # ret1[m,k] += (T[n,k] - Y[n,k])*Z[n,m] # # a bit faster - let's not loop over m # ret2 = np.zeros((M, K)) # for n in xrange(N): # for k in xrange(K): # ret2[:,k] += (T[n,k]* - Y[n,k])*Z[n,:] # assert(np.abs(ret1 - ret2).sum() < 0.00001) # # even faster - let's not loop over k either # ret3 = np.zeros((M, K)) # for n in xrange(N): # slow way first # ret3 += np.outer( Z[n], T[n] - Y[n] ) # assert(np.abs(ret1 - ret3).sum() < 0.00001) # fastest - let's not loop over anything ret4 = Z.T.dot(T - Y) # assert(np.abs(ret1 - ret4).sum() < 0.00001) return ret4 def derivative_w1(X, Z, T, Y, W2): N, D = X.shape M, K = W2.shape # slow way first # ret1 = np.zeros((X.shape[1], M)) # for n in xrange(N): # for k in xrange(K): # for m in xrange(M): # for d in xrange(D): # ret1[d,m] += (T[n,k] - Y[n,k])*W2[m,k]*Z[n,m]*(1 - Z[n,m])*X[n,d] # fastest dZ = (T - Y).dot(W2.T) * Z * (1 - Z) ret2 = X.T.dot(dZ) # assert(np.abs(ret1 - ret2).sum() < 0.00001) return ret2 def derivative_b2(T, Y): return (T - Y).sum(axis=0) def derivative_b1(T, Y, W2, Z): return ((T - Y).dot(W2.T) * Z * (1 - Z)).sum(axis=0) def cost(T, Y): tot = T * np.log(Y) return tot.sum() def main(): # create the data Nclass = 500 D = 2 # dimensionality of input M = 3 # hidden layer size K = 3 # number of classes X1 = np.random.randn(Nclass, D) + np.array([0, -2]) X2 = np.random.randn(Nclass, D) + np.array([2, 2]) X3 = np.random.randn(Nclass, D) + np.array([-2, 2]) X = np.vstack([X1, X2, X3]) Y = np.array([0]*Nclass + [1]*Nclass + [2]*Nclass) N = len(Y) # turn Y into an indicator matrix for training T = np.zeros((N, K)) for i in range(N): T[i, Y[i]] = 1 # let's see what it looks like plt.scatter(X[:,0], X[:,1], c=Y, s=100, alpha=0.5) plt.show() # randomly initialize weights W1 = np.random.randn(D, M) b1 = np.random.randn(M) W2 = np.random.randn(M, K) b2 = np.random.randn(K) learning_rate = 1e-3 costs = [] for epoch in range(1000): output, hidden = forward(X, W1, b1, W2, b2) if epoch % 100 == 0: c = cost(T, output) P = np.argmax(output, axis=1) r = classification_rate(Y, P) print("cost:", c, "classification_rate:", r) costs.append(c) # this is gradient ASCENT, not DESCENT # be comfortable with both! # oldW2 = W2.copy() gW2 = derivative_w2(hidden, T, output) gb2 = derivative_b2(T, output) gW1 = derivative_w1(X, hidden, T, output, W2) gb1 = derivative_b1(T, output, W2, hidden) W2 += learning_rate * gW2 b2 += learning_rate * gb2 W1 += learning_rate * gW1 b1 += learning_rate * gb1 plt.plot(costs) plt.show() if __name__ == '__main__': main() ================================================ FILE: ann_class/extra_reading.txt ================================================ The Chain Rule of Calculus http://tutorial.math.lamar.edu/Classes/CalcI/ChainRule.aspx Yes you should understand backprop by Andrej Karpathy https://medium.com/@karpathy/yes-you-should-understand-backprop-e2f06eab496b The Matrix Cookbook https://www.math.uwaterloo.ca/~hwolkowi/matrixcookbook.pdf Rumelhart, D. E., Hinton, G. E., and Williams, R. J. (1986) Learning representations by back-propagating errors. https://www.iro.umontreal.ca/~vincentp/ift3395/lectures/backprop_old.pdf ================================================ FILE: ann_class/forwardprop.py ================================================ # forward propagation example for deep learning in python class. # # the notes for this class can be found at: # https://deeplearningcourses.com/c/data-science-deep-learning-in-python # https://www.udemy.com/data-science-deep-learning-in-python from __future__ import print_function, division from builtins import range # Note: you may need to update your version of future # sudo pip install -U future import numpy as np import matplotlib.pyplot as plt Nclass = 500 X1 = np.random.randn(Nclass, 2) + np.array([0, -2]) X2 = np.random.randn(Nclass, 2) + np.array([2, 2]) X3 = np.random.randn(Nclass, 2) + np.array([-2, 2]) X = np.vstack([X1, X2, X3]) Y = np.array([0]*Nclass + [1]*Nclass + [2]*Nclass) # let's see what it looks like plt.scatter(X[:,0], X[:,1], c=Y, s=100, alpha=0.5) plt.show() # randomly initialize weights D = 2 # dimensionality of input M = 3 # hidden layer size K = 3 # number of classes W1 = np.random.randn(D, M) b1 = np.random.randn(M) W2 = np.random.randn(M, K) b2 = np.random.randn(K) def sigmoid(a): return 1 / (1 + np.exp(-a)) def forward(X, W1, b1, W2, b2): Z = sigmoid(X.dot(W1) + b1) # sigmoid # Z = np.tanh(X.dot(W1) + b1) # tanh # Z = np.maximum(X.dot(W1) + b1, 0) # relu A = Z.dot(W2) + b2 expA = np.exp(A) Y = expA / expA.sum(axis=1, keepdims=True) return Y # determine the classification rate # num correct / num total def classification_rate(Y, P): n_correct = 0 n_total = 0 for i in range(len(Y)): n_total += 1 if Y[i] == P[i]: n_correct += 1 return float(n_correct) / n_total P_Y_given_X = forward(X, W1, b1, W2, b2) P = np.argmax(P_Y_given_X, axis=1) # verify we chose the correct axis assert(len(P) == len(Y)) print("Classification rate for randomly chosen weights:", classification_rate(Y, P)) ================================================ FILE: ann_class/regression.py ================================================ from __future__ import print_function, division from builtins import range # Note: you may need to update your version of future # sudo pip install -U future import numpy as np import matplotlib.pyplot as plt from mpl_toolkits.mplot3d import Axes3D # NOTE: some people using the default Python # installation on Mac have had trouble with Axes3D # Switching to Python 3 (brew install python3) or # using Linux are both viable work-arounds # generate and plot the data N = 500 X = np.random.random((N, 2))*4 - 2 # in between (-2, +2) Y = X[:,0]*X[:,1] # makes a saddle shape # note: in this script "Y" will be the target, # "Yhat" will be prediction fig = plt.figure() ax = fig.add_subplot(111, projection='3d') ax.scatter(X[:,0], X[:,1], Y) plt.show() # make a neural network and train it D = 2 M = 100 # number of hidden units # layer 1 W = np.random.randn(D, M) / np.sqrt(D) b = np.zeros(M) # layer 2 V = np.random.randn(M) / np.sqrt(M) c = 0 # how to get the output # consider the params global def forward(X): Z = X.dot(W) + b Z = Z * (Z > 0) # relu # Z = np.tanh(Z) Yhat = Z.dot(V) + c return Z, Yhat # how to train the params def derivative_V(Z, Y, Yhat): return (Y - Yhat).dot(Z) def derivative_c(Y, Yhat): return (Y - Yhat).sum() def derivative_W(X, Z, Y, Yhat, V): # dZ = np.outer(Y - Yhat, V) * (1 - Z * Z) # this is for tanh activation dZ = np.outer(Y - Yhat, V) * (Z > 0) # relu return X.T.dot(dZ) def derivative_b(Z, Y, Yhat, V): # dZ = np.outer(Y - Yhat, V) * (1 - Z * Z) # this is for tanh activation dZ = np.outer(Y - Yhat, V) * (Z > 0) # this is for relu activation return dZ.sum(axis=0) def update(X, Z, Y, Yhat, W, b, V, c, learning_rate=1e-4): gV = derivative_V(Z, Y, Yhat) gc = derivative_c(Y, Yhat) gW = derivative_W(X, Z, Y, Yhat, V) gb = derivative_b(Z, Y, Yhat, V) V += learning_rate*gV c += learning_rate*gc W += learning_rate*gW b += learning_rate*gb return W, b, V, c # so we can plot the costs later def get_cost(Y, Yhat): return ((Y - Yhat)**2).mean() # run a training loop # plot the costs # and plot the final result costs = [] for i in range(200): Z, Yhat = forward(X) W, b, V, c = update(X, Z, Y, Yhat, W, b, V, c) cost = get_cost(Y, Yhat) costs.append(cost) if i % 25 == 0: print(cost) # plot the costs plt.plot(costs) plt.show() # plot the prediction with the data fig = plt.figure() ax = fig.add_subplot(111, projection='3d') ax.scatter(X[:,0], X[:,1], Y) # surface plot line = np.linspace(-2, 2, 20) xx, yy = np.meshgrid(line, line) Xgrid = np.vstack((xx.flatten(), yy.flatten())).T _, Yhat = forward(Xgrid) ax.plot_trisurf(Xgrid[:,0], Xgrid[:,1], Yhat, linewidth=0.2, antialiased=True) plt.show() # plot magnitude of residuals Ygrid = Xgrid[:,0]*Xgrid[:,1] R = np.abs(Ygrid - Yhat) plt.scatter(Xgrid[:,0], Xgrid[:,1], c=R) plt.show() fig = plt.figure() ax = fig.add_subplot(111, projection='3d') ax.plot_trisurf(Xgrid[:,0], Xgrid[:,1], R, linewidth=0.2, antialiased=True) plt.show() ================================================ FILE: ann_class/sklearn_ann.py ================================================ # Train a neural network in just 3 lines of code! # # the notes for this class can be found at: # https://deeplearningcourses.com/c/data-science-deep-learning-in-python # https://www.udemy.com/data-science-deep-learning-in-python from __future__ import print_function, division from builtins import range # Note: you may need to update your version of future # sudo pip install -U future import sys sys.path.append('../ann_logistic_extra') from process import get_data from sklearn.neural_network import MLPClassifier from sklearn.utils import shuffle # get the data Xtrain, Ytrain, Xtest, Ytest = get_data() # create the neural network model = MLPClassifier(hidden_layer_sizes=(20, 20), max_iter=2000) # train the neural network model.fit(Xtrain, Ytrain) # print the train and test accuracy train_accuracy = model.score(Xtrain, Ytrain) test_accuracy = model.score(Xtest, Ytest) print("train accuracy:", train_accuracy, "test accuracy:", test_accuracy) ================================================ FILE: ann_class/tf_example.py ================================================ # neural network in TensorFlow very simple example. # # the notes for this class can be found at: # https://deeplearningcourses.com/c/data-science-deep-learning-in-python # https://www.udemy.com/data-science-deep-learning-in-python from __future__ import print_function, division from builtins import range # Note: you may need to update your version of future # sudo pip install -U future import tensorflow as tf import numpy as np import matplotlib.pyplot as plt # create random training data again Nclass = 500 D = 2 # dimensionality of input M = 3 # hidden layer size K = 3 # number of classes X1 = np.random.randn(Nclass, D) + np.array([0, -2]) X2 = np.random.randn(Nclass, D) + np.array([2, 2]) X3 = np.random.randn(Nclass, D) + np.array([-2, 2]) X = np.vstack([X1, X2, X3]).astype(np.float32) Y = np.array([0]*Nclass + [1]*Nclass + [2]*Nclass) # let's see what it looks like plt.scatter(X[:,0], X[:,1], c=Y, s=100, alpha=0.5) plt.show() N = len(Y) # turn Y into an indicator matrix for training T = np.zeros((N, K)) for i in range(N): T[i, Y[i]] = 1 # tensor flow variables are not the same as regular Python variables def init_weights(shape): return tf.Variable(tf.random_normal(shape, stddev=0.01)) def forward(X, W1, b1, W2, b2): Z = tf.nn.sigmoid(tf.matmul(X, W1) + b1) return tf.matmul(Z, W2) + b2 tfX = tf.placeholder(tf.float32, [None, D]) tfY = tf.placeholder(tf.float32, [None, K]) W1 = init_weights([D, M]) # create symbolic variables b1 = init_weights([M]) W2 = init_weights([M, K]) b2 = init_weights([K]) logits = forward(tfX, W1, b1, W2, b2) cost = tf.reduce_mean( tf.nn.softmax_cross_entropy_with_logits_v2( labels=tfY, logits=logits ) ) # compute costs # WARNING: This op expects unscaled logits, # since it performs a softmax on logits # internally for efficiency. # Do not call this op with the output of softmax, # as it will produce incorrect results. train_op = tf.train.GradientDescentOptimizer(0.05).minimize(cost) # construct an optimizer # input parameter is the learning rate predict_op = tf.argmax(logits, 1) # input parameter is the axis on which to choose the max # just stuff that has to be done sess = tf.Session() init = tf.global_variables_initializer() sess.run(init) for i in range(1000): sess.run(train_op, feed_dict={tfX: X, tfY: T}) pred = sess.run(predict_op, feed_dict={tfX: X, tfY: T}) if i % 100 == 0: print("Accuracy:", np.mean(Y == pred)) ================================================ FILE: ann_class/xor_donut.py ================================================ # revisiting the XOR and donut problems to show how features # can be learned automatically using neural networks. # # the notes for this class can be found at: # https://deeplearningcourses.com/c/data-science-deep-learning-in-python # https://www.udemy.com/data-science-deep-learning-in-python from __future__ import print_function, division from builtins import range # Note: you may need to update your version of future # sudo pip install -U future import numpy as np import matplotlib.pyplot as plt # for binary classification! no softmax here def forward(X, W1, b1, W2, b2): # sigmoid # Z = 1 / (1 + np.exp( -(X.dot(W1) + b1) )) # tanh # Z = np.tanh(X.dot(W1) + b1) # relu Z = X.dot(W1) + b1 Z = Z * (Z > 0) activation = Z.dot(W2) + b2 Y = 1 / (1 + np.exp(-activation)) return Y, Z def predict(X, W1, b1, W2, b2): Y, _ = forward(X, W1, b1, W2, b2) return np.round(Y) def derivative_w2(Z, T, Y): # Z is (N, M) return (T - Y).dot(Z) def derivative_b2(T, Y): return (T - Y).sum() def derivative_w1(X, Z, T, Y, W2): # dZ = np.outer(T-Y, W2) * Z * (1 - Z) # this is for sigmoid activation # dZ = np.outer(T-Y, W2) * (1 - Z * Z) # this is for tanh activation dZ = np.outer(T-Y, W2) * (Z > 0) # this is for relu activation return X.T.dot(dZ) def derivative_b1(Z, T, Y, W2): # dZ = np.outer(T-Y, W2) * Z * (1 - Z) # this is for sigmoid activation # dZ = np.outer(T-Y, W2) * (1 - Z * Z) # this is for tanh activation dZ = np.outer(T-Y, W2) * (Z > 0) # this is for relu activation return dZ.sum(axis=0) def get_log_likelihood(T, Y): return np.sum(T*np.log(Y) + (1-T)*np.log(1-Y)) def test_xor(): X = np.array([[0, 0], [0, 1], [1, 0], [1, 1]]) Y = np.array([0, 1, 1, 0]) W1 = np.random.randn(2, 5) b1 = np.zeros(5) W2 = np.random.randn(5) b2 = 0 LL = [] # keep track of log-likelihoods learning_rate = 1e-2 regularization = 0. last_error_rate = None for i in range(30000): pY, Z = forward(X, W1, b1, W2, b2) ll = get_log_likelihood(Y, pY) prediction = predict(X, W1, b1, W2, b2) er = np.mean(prediction != Y) LL.append(ll) # get gradients gW2 = derivative_w2(Z, Y, pY) gb2 = derivative_b2(Y, pY) gW1 = derivative_w1(X, Z, Y, pY, W2) gb1 = derivative_b1(Z, Y, pY, W2) W2 += learning_rate * (gW2 - regularization * W2) b2 += learning_rate * (gb2 - regularization * b2) W1 += learning_rate * (gW1 - regularization * W1) b1 += learning_rate * (gb1 - regularization * b1) if i % 1000 == 0: print(ll) print("final classification rate:", np.mean(prediction == Y)) plt.plot(LL) plt.show() def test_donut(): # donut example N = 1000 R_inner = 5 R_outer = 10 # distance from origin is radius + random normal # angle theta is uniformly distributed between (0, 2pi) R1 = np.random.randn(N//2) + R_inner theta = 2*np.pi*np.random.random(N//2) X_inner = np.concatenate([[R1 * np.cos(theta)], [R1 * np.sin(theta)]]).T R2 = np.random.randn(N//2) + R_outer theta = 2*np.pi*np.random.random(N//2) X_outer = np.concatenate([[R2 * np.cos(theta)], [R2 * np.sin(theta)]]).T X = np.concatenate([ X_inner, X_outer ]) Y = np.array([0]*(N//2) + [1]*(N//2)) n_hidden = 8 W1 = np.random.randn(2, n_hidden) b1 = np.random.randn(n_hidden) W2 = np.random.randn(n_hidden) b2 = np.random.randn(1) LL = [] # keep track of log-likelihoods learning_rate = 0.00005 regularization = 0.2 last_error_rate = None for i in range(3000): pY, Z = forward(X, W1, b1, W2, b2) ll = get_log_likelihood(Y, pY) prediction = predict(X, W1, b1, W2, b2) er = np.abs(prediction - Y).mean() LL.append(ll) # get gradients gW2 = derivative_w2(Z, Y, pY) gb2 = derivative_b2(Y, pY) gW1 = derivative_w1(X, Z, Y, pY, W2) gb1 = derivative_b1(Z, Y, pY, W2) W2 += learning_rate * (gW2 - regularization * W2) b2 += learning_rate * (gb2 - regularization * b2) W1 += learning_rate * (gW1 - regularization * W1) b1 += learning_rate * (gb1 - regularization * b1) if i % 300 == 0: print("i:", i, "ll:", ll, "classification rate:", 1 - er) plt.plot(LL) plt.show() if __name__ == '__main__': test_xor() # test_donut() ================================================ FILE: ann_class2/__init__.py ================================================ ================================================ FILE: ann_class2/adam.py ================================================ # Compare RMSprop with momentum vs. Adam # For the class Data Science: Practical Deep Learning Concepts in Theano and TensorFlow # https://deeplearningcourses.com/c/data-science-deep-learning-in-theano-tensorflow # https://www.udemy.com/data-science-deep-learning-in-theano-tensorflow from __future__ import print_function, division from builtins import range # Note: you may need to update your version of future # sudo pip install -U future import numpy as np from sklearn.utils import shuffle import matplotlib.pyplot as plt from util import get_normalized_data, error_rate, cost, y2indicator from mlp import forward, derivative_w2, derivative_w1, derivative_b2, derivative_b1 def main(): max_iter = 10 print_period = 10 Xtrain, Xtest, Ytrain, Ytest = get_normalized_data() reg = 0.01 Ytrain_ind = y2indicator(Ytrain) Ytest_ind = y2indicator(Ytest) N, D = Xtrain.shape batch_sz = 500 n_batches = N // batch_sz M = 300 K = 10 W1_0 = np.random.randn(D, M) / np.sqrt(D) b1_0 = np.zeros(M) W2_0 = np.random.randn(M, K) / np.sqrt(M) b2_0 = np.zeros(K) W1 = W1_0.copy() b1 = b1_0.copy() W2 = W2_0.copy() b2 = b2_0.copy() # 1st moment mW1 = 0 mb1 = 0 mW2 = 0 mb2 = 0 # 2nd moment vW1 = 0 vb1 = 0 vW2 = 0 vb2 = 0 # hyperparams lr0 = 0.001 beta1 = 0.9 beta2 = 0.999 eps = 1e-8 # 1. Adam loss_adam = [] err_adam = [] t = 1 for i in range(max_iter): for j in range(n_batches): Xbatch = Xtrain[j*batch_sz:(j*batch_sz + batch_sz),] Ybatch = Ytrain_ind[j*batch_sz:(j*batch_sz + batch_sz),] pYbatch, Z = forward(Xbatch, W1, b1, W2, b2) # updates # gradients gW2 = derivative_w2(Z, Ybatch, pYbatch) + reg*W2 gb2 = derivative_b2(Ybatch, pYbatch) + reg*b2 gW1 = derivative_w1(Xbatch, Z, Ybatch, pYbatch, W2) + reg*W1 gb1 = derivative_b1(Z, Ybatch, pYbatch, W2) + reg*b1 # new m mW1 = beta1 * mW1 + (1 - beta1) * gW1 mb1 = beta1 * mb1 + (1 - beta1) * gb1 mW2 = beta1 * mW2 + (1 - beta1) * gW2 mb2 = beta1 * mb2 + (1 - beta1) * gb2 # new v vW1 = beta2 * vW1 + (1 - beta2) * gW1 * gW1 vb1 = beta2 * vb1 + (1 - beta2) * gb1 * gb1 vW2 = beta2 * vW2 + (1 - beta2) * gW2 * gW2 vb2 = beta2 * vb2 + (1 - beta2) * gb2 * gb2 # bias correction correction1 = 1 - beta1 ** t hat_mW1 = mW1 / correction1 hat_mb1 = mb1 / correction1 hat_mW2 = mW2 / correction1 hat_mb2 = mb2 / correction1 correction2 = 1 - beta2 ** t hat_vW1 = vW1 / correction2 hat_vb1 = vb1 / correction2 hat_vW2 = vW2 / correction2 hat_vb2 = vb2 / correction2 # update t t += 1 # apply updates to the params W1 = W1 - lr0 * hat_mW1 / (np.sqrt(hat_vW1) + eps) b1 = b1 - lr0 * hat_mb1 / (np.sqrt(hat_vb1) + eps) W2 = W2 - lr0 * hat_mW2 / (np.sqrt(hat_vW2) + eps) b2 = b2 - lr0 * hat_mb2 / (np.sqrt(hat_vb2) + eps) if j % print_period == 0: pY, _ = forward(Xtest, W1, b1, W2, b2) l = cost(pY, Ytest_ind) loss_adam.append(l) print("Cost at iteration i=%d, j=%d: %.6f" % (i, j, l)) err = error_rate(pY, Ytest) err_adam.append(err) print("Error rate:", err) pY, _ = forward(Xtest, W1, b1, W2, b2) print("Final error rate:", error_rate(pY, Ytest)) # 2. RMSprop with momentum W1 = W1_0.copy() b1 = b1_0.copy() W2 = W2_0.copy() b2 = b2_0.copy() loss_rms = [] err_rms = [] # comparable hyperparameters for fair comparison lr0 = 0.001 mu = 0.9 decay_rate = 0.999 eps = 1e-8 # rmsprop cache cache_W2 = 1 cache_b2 = 1 cache_W1 = 1 cache_b1 = 1 # momentum dW1 = 0 db1 = 0 dW2 = 0 db2 = 0 for i in range(max_iter): for j in range(n_batches): Xbatch = Xtrain[j*batch_sz:(j*batch_sz + batch_sz),] Ybatch = Ytrain_ind[j*batch_sz:(j*batch_sz + batch_sz),] pYbatch, Z = forward(Xbatch, W1, b1, W2, b2) # derivatives gW2 = derivative_w2(Z, Ybatch, pYbatch) + reg*W2 gb2 = derivative_b2(Ybatch, pYbatch) + reg*b2 gW1 = derivative_w1(Xbatch, Z, Ybatch, pYbatch, W2) + reg*W1 gb1 = derivative_b1(Z, Ybatch, pYbatch, W2) + reg*b1 # caches cache_W2 = decay_rate*cache_W2 + (1 - decay_rate)*gW2*gW2 cache_b2 = decay_rate*cache_b2 + (1 - decay_rate)*gb2*gb2 cache_W1 = decay_rate*cache_W1 + (1 - decay_rate)*gW1*gW1 cache_b1 = decay_rate*cache_b1 + (1 - decay_rate)*gb1*gb1 # momentum dW2 = mu * dW2 + (1 - mu) * lr0 * gW2 / (np.sqrt(cache_W2) + eps) db2 = mu * db2 + (1 - mu) * lr0 * gb2 / (np.sqrt(cache_b2) + eps) dW1 = mu * dW1 + (1 - mu) * lr0 * gW1 / (np.sqrt(cache_W1) + eps) db1 = mu * db1 + (1 - mu) * lr0 * gb1 / (np.sqrt(cache_b1) + eps) # updates W2 -= dW2 b2 -= db2 W1 -= dW1 b1 -= db1 if j % print_period == 0: pY, _ = forward(Xtest, W1, b1, W2, b2) l = cost(pY, Ytest_ind) loss_rms.append(l) print("Cost at iteration i=%d, j=%d: %.6f" % (i, j, l)) err = error_rate(pY, Ytest) err_rms.append(err) print("Error rate:", err) pY, _ = forward(Xtest, W1, b1, W2, b2) print("Final error rate:", error_rate(pY, Ytest)) plt.plot(loss_adam, label='adam') plt.plot(loss_rms, label='rmsprop') plt.legend() plt.show() if __name__ == '__main__': main() ================================================ FILE: ann_class2/batch_norm_tf.py ================================================ from __future__ import print_function, division from builtins import range # Note: you may need to update your version of future # sudo pip install -U future import numpy as np import pandas as pd import matplotlib.pyplot as plt import tensorflow as tf from sklearn.utils import shuffle from sklearn.model_selection import train_test_split from util import get_normalized_data def init_weight(M1, M2): return np.random.randn(M1, M2) * np.sqrt(2.0 / M1) class HiddenLayerBatchNorm(object): def __init__(self, M1, M2, f): self.M1 = M1 self.M2 = M2 self.f = f W = init_weight(M1, M2).astype(np.float32) gamma = np.ones(M2).astype(np.float32) beta = np.zeros(M2).astype(np.float32) self.W = tf.Variable(W) self.gamma = tf.Variable(gamma) self.beta = tf.Variable(beta) # for test time self.running_mean = tf.Variable(np.zeros(M2).astype(np.float32), trainable=False) self.running_var = tf.Variable(np.zeros(M2).astype(np.float32), trainable=False) def forward(self, X, is_training, decay=0.9): activation = tf.matmul(X, self.W) if is_training: batch_mean, batch_var = tf.nn.moments(activation, [0]) update_running_mean = tf.assign( self.running_mean, self.running_mean * decay + batch_mean * (1 - decay) ) update_running_var = tf.assign( self.running_var, self.running_var * decay + batch_var * (1 - decay) ) with tf.control_dependencies([update_running_mean, update_running_var]): out = tf.nn.batch_normalization( activation, batch_mean, batch_var, self.beta, self.gamma, 1e-4 ) else: out = tf.nn.batch_normalization( activation, self.running_mean, self.running_var, self.beta, self.gamma, 1e-4 ) return self.f(out) class HiddenLayer(object): def __init__(self, M1, M2, f): self.M1 = M1 self.M2 = M2 self.f = f W = np.random.randn(M1, M2) * np.sqrt(2.0 / M1) b = np.zeros(M2) self.W = tf.Variable(W.astype(np.float32)) self.b = tf.Variable(b.astype(np.float32)) def forward(self, X): return self.f(tf.matmul(X, self.W) + self.b) class ANN(object): def __init__(self, hidden_layer_sizes): self.hidden_layer_sizes = hidden_layer_sizes def set_session(self, session): self.session = session def fit(self, X, Y, Xtest, Ytest, activation=tf.nn.relu, learning_rate=1e-2, epochs=15, batch_sz=100, print_period=100, show_fig=True): X = X.astype(np.float32) Y = Y.astype(np.int32) # initialize hidden layers N, D = X.shape self.layers = [] M1 = D for M2 in self.hidden_layer_sizes: h = HiddenLayerBatchNorm(M1, M2, activation) self.layers.append(h) M1 = M2 # final layer K = len(set(Y)) h = HiddenLayer(M1, K, lambda x: x) self.layers.append(h) if batch_sz is None: batch_sz = N # note! we will need to build the output differently # for train and test (prediction) # set up theano functions and variables tfX = tf.placeholder(tf.float32, shape=(None, D), name='X') tfY = tf.placeholder(tf.int32, shape=(None,), name='Y') # for later use self.tfX = tfX # for training logits = self.forward(tfX, is_training=True) cost = tf.reduce_mean( tf.nn.sparse_softmax_cross_entropy_with_logits( logits=logits, labels=tfY ) ) # train_op = tf.train.AdamOptimizer(learning_rate).minimize(cost) # train_op = tf.train.RMSPropOptimizer(learning_rate, decay=0.99, momentum=0.9).minimize(cost) train_op = tf.train.MomentumOptimizer(learning_rate, momentum=0.9, use_nesterov=True).minimize(cost) # train_op = tf.train.GradientDescentOptimizer(learning_rate).minimize(cost) # for testing test_logits = self.forward(tfX, is_training=False) self.predict_op = tf.argmax(test_logits, 1) # accuracy = tf.reduce_mean(1.0*(tfY == tf.argmax(logits, 1))) # init the variables self.session.run(tf.global_variables_initializer()) n_batches = N // batch_sz costs = [] for i in range(epochs): if n_batches > 1: X, Y = shuffle(X, Y) for j in range(n_batches): Xbatch = X[j*batch_sz:(j*batch_sz+batch_sz)] Ybatch = Y[j*batch_sz:(j*batch_sz+batch_sz)] c, _, lgts = self.session.run([cost, train_op, logits], feed_dict={tfX: Xbatch, tfY: Ybatch}) costs.append(c) if (j+1) % print_period == 0: acc = np.mean(Ybatch == np.argmax(lgts, axis=1)) print("epoch:", i, "batch:", j, "n_batches:", n_batches, "cost:", c, "acc: %.2f" % acc) # print('dbg:', self.session.run(self.layers[0].running_mean).sum()) print("Train acc:", self.score(X, Y), "Test acc:", self.score(Xtest, Ytest)) if show_fig: plt.plot(costs) plt.show() def forward(self, X, is_training): out = X for h in self.layers[:-1]: out = h.forward(out, is_training) out = self.layers[-1].forward(out) return out def score(self, X, Y): P = self.predict(X) return np.mean(Y == P) def predict(self, X): return self.session.run(self.predict_op, feed_dict={self.tfX: X}) def main(): # step 1: get the data and define all the usual variables Xtrain, Xtest, Ytrain, Ytest = get_normalized_data() ann = ANN([500, 300]) session = tf.InteractiveSession() ann.set_session(session) ann.fit(Xtrain, Ytrain, Xtest, Ytest, show_fig=True) print("Train accuracy:", ann.score(Xtrain, Ytrain)) print("Test accuracy:", ann.score(Xtest, Ytest)) if __name__ == '__main__': main() ================================================ FILE: ann_class2/batch_norm_theano.py ================================================ from __future__ import print_function, division from builtins import range # Note: you may need to update your version of future # sudo pip install -U future import numpy as np import pandas as pd import matplotlib.pyplot as plt import theano import theano.tensor as T from theano.tensor.nnet.bn import batch_normalization_train, batch_normalization_test from sklearn.utils import shuffle from sklearn.model_selection import train_test_split from util import get_normalized_data def init_weight(M1, M2): return np.random.randn(M1, M2) * np.sqrt(2.0 / M1) class HiddenLayerBatchNorm(object): def __init__(self, M1, M2, f): self.M1 = M1 self.M2 = M2 self.f = f W = init_weight(M1, M2) gamma = np.ones(M2) beta = np.zeros(M2) self.W = theano.shared(W) self.gamma = theano.shared(gamma) self.beta = theano.shared(beta) self.params = [self.W, self.gamma, self.beta] # for test time # self.running_mean = T.zeros(M2) # self.running_var = T.zeros(M2) self.running_mean = theano.shared(np.zeros(M2)) self.running_var = theano.shared(np.zeros(M2)) def forward(self, X, is_training): activation = X.dot(self.W) if is_training: # returns: # batch-normalized output # batch mean # batch variance # running mean (for later use as population mean estimate) # running var (for later use as population var estimate) out, batch_mean, batch_invstd, new_running_mean, new_running_var = batch_normalization_train( activation, self.gamma, self.beta, running_mean=self.running_mean, running_var=self.running_var, ) self.running_update = [ (self.running_mean, new_running_mean), (self.running_var, new_running_var), ] # if you don't trust the built-in bn function # batch_var = 1 / (batch_invstd * batch_invstd) # self.running_update = [ # (self.running_mean, 0.9*self.running_mean + 0.1*batch_mean), # (self.running_var, 0.9*self.running_var + 0.1*batch_var), # ] else: out = batch_normalization_test( activation, self.gamma, self.beta, self.running_mean, self.running_var ) return self.f(out) class HiddenLayer(object): def __init__(self, M1, M2, f): self.M1 = M1 self.M2 = M2 self.f = f W = init_weight(M1, M2) b = np.zeros(M2) self.W = theano.shared(W) self.b = theano.shared(b) self.params = [self.W, self.b] def forward(self, X): return self.f(X.dot(self.W) + self.b) def momentum_updates(cost, params, lr, mu): grads = T.grad(cost, params) updates = [] for p, g in zip(params, grads): dp = theano.shared(p.get_value() * 0) new_dp = mu*dp - lr*g new_p = p + new_dp updates.append((dp, new_dp)) updates.append((p, new_p)) return updates class ANN(object): def __init__(self, hidden_layer_sizes): self.hidden_layer_sizes = hidden_layer_sizes def fit(self, X, Y, Xtest, Ytest, activation=T.nnet.relu, learning_rate=1e-2, mu=0.9, epochs=15, batch_sz=100, print_period=100, show_fig=True): X = X.astype(np.float32) Y = Y.astype(np.int32) # initialize hidden layers N, D = X.shape self.layers = [] M1 = D for M2 in self.hidden_layer_sizes: h = HiddenLayerBatchNorm(M1, M2, activation) self.layers.append(h) M1 = M2 # final layer K = len(set(Y)) h = HiddenLayer(M1, K, T.nnet.softmax) self.layers.append(h) if batch_sz is None: batch_sz = N # collect params for later use self.params = [] for h in self.layers: self.params += h.params # note! we will need to build the output differently # for train and test (prediction) # set up theano functions and variables thX = T.matrix('X') thY = T.ivector('Y') # for training p_y_given_x = self.forward(thX, is_training=True) cost = -T.mean(T.log(p_y_given_x[T.arange(thY.shape[0]), thY])) prediction = T.argmax(p_y_given_x, axis=1) grads = T.grad(cost, self.params) # momentum only updates = momentum_updates(cost, self.params, learning_rate, mu) for layer in self.layers[:-1]: updates += layer.running_update train_op = theano.function( inputs=[thX, thY], outputs=[cost, prediction], updates=updates, ) # for testing test_p_y_given_x = self.forward(thX, is_training=False) test_prediction = T.argmax(test_p_y_given_x, axis=1) self.predict = theano.function( inputs=[thX], outputs=test_prediction, ) n_batches = N // batch_sz costs = [] for i in range(epochs): if n_batches > 1: X, Y = shuffle(X, Y) for j in range(n_batches): Xbatch = X[j*batch_sz:(j*batch_sz+batch_sz)] Ybatch = Y[j*batch_sz:(j*batch_sz+batch_sz)] c, p = train_op(Xbatch, Ybatch) costs.append(c) if (j+1) % print_period == 0: accuracy = np.mean(p == Ybatch) print("epoch:", i, "batch:", j, "n_batches:", n_batches, "cost:", c, "accuracy:", accuracy) print("Train acc:", self.score(X, Y), "Test acc:", self.score(Xtest, Ytest)) if show_fig: plt.plot(costs) plt.show() def forward(self, X, is_training): out = X for h in self.layers[:-1]: out = h.forward(out, is_training) out = self.layers[-1].forward(out) return out def score(self, X, Y): P = self.predict(X) return np.mean(Y == P) def main(): # step 1: get the data and define all the usual variables Xtrain, Xtest, Ytrain, Ytest = get_normalized_data() ann = ANN([500, 300]) ann.fit(Xtrain, Ytrain, Xtest, Ytest, show_fig=True) print("Train accuracy:", ann.score(Xtrain, Ytrain)) print("Test accuracy:", ann.score(Xtest, Ytest)) if __name__ == '__main__': main() ================================================ FILE: ann_class2/cntk_example.py ================================================ # https://deeplearningcourses.com/c/data-science-deep-learning-in-theano-tensorflow # https://www.udemy.com/data-science-deep-learning-in-theano-tensorflow from __future__ import print_function, division from builtins import range # Note: you may need to update your version of future # sudo pip install -U future # simple installation with pip: # # just one line: pip install <....>.whl # # Linux # https://docs.microsoft.com/en-us/cognitive-toolkit/setup-linux-python # # Windows # https://docs.microsoft.com/en-us/cognitive-toolkit/setup-windows-python # # (No Mac) # Note: useful to understand keras_example.py first import numpy as np import matplotlib.pyplot as plt from util import get_normalized_data, y2indicator import cntk as C from cntk.train import Trainer from cntk.learners import adam from cntk.ops import relu from cntk.layers import Dense, Sequential from cntk.losses import cross_entropy_with_softmax from cntk.metrics import classification_error from cntk.train.training_session import * # get the data, same as Theano + Tensorflow examples Xtrain, Xtest, Ytrain, Ytest = get_normalized_data() # get shapes N, D = Xtrain.shape K = len(set(Ytrain)) # we want one-hot encoded labels Ytrain = y2indicator(Ytrain) Ytest = y2indicator(Ytest) # split the data X = X.astype(np.float32) Y = Y.astype(np.float32) Xtest = Xtest.astype(np.float32) Ytest = Ytest.astype(np.float32) # the model will be a sequence of layers model = Sequential( [ Dense(500, activation=relu), Dense(300, activation=relu), Dense(K, activation=None), ] ) # define the inputs and labels inputs = C.input_variable(D, np.float32, name='inputs') labels = C.input_variable(K, np.float32, name='labels') # get the output logits = model(inputs) # define loss / metrics # like Tensorflow the softmax is done # internally (if needed), so all we need are the logits ce = cross_entropy_with_softmax(logits, labels) pe = classification_error(logits, labels) # training config batch_size = 32 epochs = 15 n_batches = len(Xtrain) // batch_size # do the training # specify the training algorithm trainer = Trainer(logits, (ce, pe), adam(logits.parameters, lr=1e-2, momentum=0.9)) # helper function def get_output(node, X, Y): ret = node.forward(dict(inputs=X, labels=Y)) return list(ret[1].values())[0].mean() costs = [] errors = [] test_costs = [] test_errors = [] for i in range(epochs): cost = 0 err = 0 for j in range(n_batches): Xbatch = Xtrain[j*batch_size:(j+1)*batch_size] Ybatch = Ytrain[j*batch_size:(j+1)*batch_size] ret = trainer.train_minibatch( dict(inputs=Xbatch, labels=Ybatch), outputs=(ce, pe) ) cost += ret[1][ce].mean() err += ret[1][pe].mean() costs.append(cost / n_batches) errors.append(err / n_batches) # test set calculations test_cost = get_output(ce, Xtest, Ytest) test_err = get_output(pe, Xtest, Ytest) test_costs.append(test_cost) test_errors.append(test_err) print("epoch i:", i, "cost:", test_cost, "err:", test_err) plt.plot(costs, label='train cost') plt.plot(test_costs, label='test cost') plt.legend() plt.title("cost") plt.show() plt.plot(errors, label='train error') plt.plot(test_errors, label='test error') plt.legend() plt.title("error") plt.show() ================================================ FILE: ann_class2/dropout_tensorflow.py ================================================ from __future__ import print_function, division from builtins import range # Note: you may need to update your version of future # sudo pip install -U future # For the class Data Science: Practical Deep Learning Concepts in Theano and TensorFlow # https://deeplearningcourses.com/c/data-science-deep-learning-in-theano-tensorflow # https://www.udemy.com/data-science-deep-learning-in-theano-tensorflow import numpy as np import tensorflow as tf import matplotlib.pyplot as plt from util import get_normalized_data from sklearn.utils import shuffle class HiddenLayer(object): def __init__(self, M1, M2): self.M1 = M1 self.M2 = M2 W = np.random.randn(M1, M2) * np.sqrt(2.0 / M1) b = np.zeros(M2) self.W = tf.Variable(W.astype(np.float32)) self.b = tf.Variable(b.astype(np.float32)) self.params = [self.W, self.b] def forward(self, X): return tf.nn.relu(tf.matmul(X, self.W) + self.b) class ANN(object): def __init__(self, hidden_layer_sizes, p_keep): self.hidden_layer_sizes = hidden_layer_sizes self.dropout_rates = p_keep def fit(self, X, Y, Xvalid, Yvalid, lr=1e-4, mu=0.9, decay=0.9, epochs=15, batch_sz=100, print_every=50): X = X.astype(np.float32) Y = Y.astype(np.int64) Xvalid = Xvalid.astype(np.float32) Yvalid = Yvalid.astype(np.int64) # initialize hidden layers N, D = X.shape K = len(set(Y)) self.hidden_layers = [] M1 = D for M2 in self.hidden_layer_sizes: h = HiddenLayer(M1, M2) self.hidden_layers.append(h) M1 = M2 W = np.random.randn(M1, K) * np.sqrt(2.0 / M1) b = np.zeros(K) self.W = tf.Variable(W.astype(np.float32)) self.b = tf.Variable(b.astype(np.float32)) # collect params for later use self.params = [self.W, self.b] for h in self.hidden_layers: self.params += h.params # set up theano functions and variables inputs = tf.placeholder(tf.float32, shape=(None, D), name='inputs') labels = tf.placeholder(tf.int64, shape=(None,), name='labels') logits = self.forward(inputs) cost = tf.reduce_mean( tf.nn.sparse_softmax_cross_entropy_with_logits( logits=logits, labels=labels ) ) train_op = tf.train.RMSPropOptimizer(lr, decay=decay, momentum=mu).minimize(cost) # train_op = tf.train.MomentumOptimizer(lr, momentum=mu).minimize(cost) # train_op = tf.train.AdamOptimizer(lr).minimize(cost) prediction = self.predict(inputs) # validation cost will be calculated separately since nothing will be dropped test_logits = self.forward_test(inputs) test_cost = tf.reduce_mean( tf.nn.sparse_softmax_cross_entropy_with_logits( logits=test_logits, labels=labels ) ) n_batches = N // batch_sz costs = [] init = tf.global_variables_initializer() with tf.Session() as session: session.run(init) for i in range(epochs): print("epoch:", i, "n_batches:", n_batches) X, Y = shuffle(X, Y) for j in range(n_batches): Xbatch = X[j*batch_sz:(j*batch_sz+batch_sz)] Ybatch = Y[j*batch_sz:(j*batch_sz+batch_sz)] session.run(train_op, feed_dict={inputs: Xbatch, labels: Ybatch}) if j % print_every == 0: c = session.run(test_cost, feed_dict={inputs: Xvalid, labels: Yvalid}) p = session.run(prediction, feed_dict={inputs: Xvalid}) costs.append(c) e = error_rate(Yvalid, p) print("i:", i, "j:", j, "nb:", n_batches, "cost:", c, "error rate:", e) plt.plot(costs) plt.show() def forward(self, X): # tf.nn.dropout scales inputs by 1/p_keep # therefore, during test time, we don't have to scale anything Z = X Z = tf.nn.dropout(Z, self.dropout_rates[0]) for h, p in zip(self.hidden_layers, self.dropout_rates[1:]): Z = h.forward(Z) Z = tf.nn.dropout(Z, p) return tf.matmul(Z, self.W) + self.b def forward_test(self, X): Z = X for h in self.hidden_layers: Z = h.forward(Z) return tf.matmul(Z, self.W) + self.b def predict(self, X): pY = self.forward_test(X) return tf.argmax(pY, 1) def error_rate(p, t): return np.mean(p != t) def relu(a): return a * (a > 0) def main(): # step 1: get the data and define all the usual variables Xtrain, Xtest, Ytrain, Ytest = get_normalized_data() ann = ANN([500, 300], [0.8, 0.5, 0.5]) ann.fit(Xtrain, Ytrain, Xtest, Ytest) if __name__ == '__main__': main() ================================================ FILE: ann_class2/dropout_theano.py ================================================ # A 1-hidden-layer neural network in Theano. # This code is not optimized for speed. # It's just to get something working, using the principles we know. # For the class Data Science: Practical Deep Learning Concepts in Theano and TensorFlow # https://deeplearningcourses.com/c/data-science-deep-learning-in-theano-tensorflow # https://www.udemy.com/data-science-deep-learning-in-theano-tensorflow from __future__ import print_function, division from builtins import range # Note: you may need to update your version of future # sudo pip install -U future import numpy as np import theano import theano.tensor as T import matplotlib.pyplot as plt from theano.tensor.shared_randomstreams import RandomStreams from util import get_normalized_data from sklearn.utils import shuffle def momentum_updates(cost, params, lr, mu): grads = T.grad(cost, params) updates = [] for p, g in zip(params, grads): dp = theano.shared(p.get_value() * 0) new_dp = mu*dp - lr*g new_p = p + new_dp updates.append((dp, new_dp)) updates.append((p, new_p)) return updates class HiddenLayer(object): def __init__(self, M1, M2, an_id): self.id = an_id self.M1 = M1 self.M2 = M2 W = np.random.randn(M1, M2) * np.sqrt(2.0 / M1) b = np.zeros(M2) self.W = theano.shared(W, 'W_%s' % self.id) self.b = theano.shared(b, 'b_%s' % self.id) self.params = [self.W, self.b] def forward(self, X): return T.nnet.relu(X.dot(self.W) + self.b) class ANN(object): def __init__(self, hidden_layer_sizes, p_keep): self.hidden_layer_sizes = hidden_layer_sizes self.dropout_rates = p_keep def fit(self, X, Y, Xvalid, Yvalid, learning_rate=1e-2, mu=0.9, decay=0.9, epochs=10, batch_sz=100, show_fig=False): X = X.astype(np.float32) Y = Y.astype(np.int32) Xvalid = Xvalid.astype(np.float32) Yvalid = Yvalid.astype(np.int32) self.rng = RandomStreams() # initialize hidden layers N, D = X.shape K = len(set(Y)) self.hidden_layers = [] M1 = D count = 0 for M2 in self.hidden_layer_sizes: h = HiddenLayer(M1, M2, count) self.hidden_layers.append(h) M1 = M2 count += 1 W = np.random.randn(M1, K) * np.sqrt(2.0 / M1) b = np.zeros(K) self.W = theano.shared(W, 'W_logreg') self.b = theano.shared(b, 'b_logreg') # collect params for later use self.params = [self.W, self.b] for h in self.hidden_layers: self.params += h.params # set up theano functions and variables thX = T.matrix('X') thY = T.ivector('Y') pY_train = self.forward_train(thX) # this cost is for training cost = -T.mean(T.log(pY_train[T.arange(thY.shape[0]), thY])) updates = momentum_updates(cost, self.params, learning_rate, mu) train_op = theano.function( inputs=[thX, thY], updates=updates ) # for evaluation and prediction pY_predict = self.forward_predict(thX) cost_predict = -T.mean(T.log(pY_predict[T.arange(thY.shape[0]), thY])) prediction = self.predict(thX) cost_predict_op = theano.function(inputs=[thX, thY], outputs=[cost_predict, prediction]) n_batches = N // batch_sz costs = [] for i in range(epochs): X, Y = shuffle(X, Y) for j in range(n_batches): Xbatch = X[j*batch_sz:(j*batch_sz+batch_sz)] Ybatch = Y[j*batch_sz:(j*batch_sz+batch_sz)] train_op(Xbatch, Ybatch) if j % 50 == 0: c, p = cost_predict_op(Xvalid, Yvalid) costs.append(c) e = error_rate(Yvalid, p) print("i:", i, "j:", j, "nb:", n_batches, "cost:", c, "error rate:", e) if show_fig: plt.plot(costs) plt.show() def forward_train(self, X): Z = X for h, p in zip(self.hidden_layers, self.dropout_rates[:-1]): mask = self.rng.binomial(n=1, p=p, size=Z.shape) Z = mask * Z Z = h.forward(Z) mask = self.rng.binomial(n=1, p=self.dropout_rates[-1], size=Z.shape) Z = mask * Z return T.nnet.softmax(Z.dot(self.W) + self.b) def forward_predict(self, X): Z = X for h, p in zip(self.hidden_layers, self.dropout_rates[:-1]): Z = h.forward(p * Z) return T.nnet.softmax((self.dropout_rates[-1] * Z).dot(self.W) + self.b) def predict(self, X): pY = self.forward_predict(X) return T.argmax(pY, axis=1) def error_rate(p, t): return np.mean(p != t) def relu(a): return a * (a > 0) def main(): # step 1: get the data and define all the usual variables Xtrain, Xtest, Ytrain, Ytest = get_normalized_data() ann = ANN([500, 300], [0.8, 0.5, 0.5]) ann.fit(Xtrain, Ytrain, Xtest, Ytest, show_fig=True) if __name__ == '__main__': main() ================================================ FILE: ann_class2/extra_reading.txt ================================================ The Marginal Value of Adaptive Gradient Methods in Machine Learning https://arxiv.org/abs/1705.08292 Asynchronous Stochastic Gradient Descent with Delay Compensation for Distributed Deep Learning https://arxiv.org/abs/1609.08326 Asynchronous Stochastic Gradient Descent with Variance Reduction for Non-Convex Optimization https://arxiv.org/abs/1604.03584 Adam: A Method for Stochastic Optimization https://arxiv.org/abs/1412.6980 Large Scale Distributed Deep Networks https://static.googleusercontent.com/media/research.google.com/en//archive/large_deep_networks_nips2012.pdf Batch Normalization: Accelerating Deep Network Training by Reducing Internal Covariate Shift Sergey Ioffe, Christian Szegedy https://arxiv.org/abs/1502.03167 Xavier (Glorot) Normal Initializer http://jmlr.org/proceedings/papers/v9/glorot10a/glorot10a.pdf He Normal Initializer http://arxiv.org/abs/1502.01852 For understanding Nesterov Momentum: Advances in optimizing Recurrent Networks by Yoshua Bengio, Section 3.5 http://arxiv.org/pdf/1212.0901v2.pdf Dropout: A Simple Way to Prevent Neural Networks from Overfitting https://www.cs.toronto.edu/~hinton/absps/JMLRdropout.pdf The Loss Surfaces of Multilayer Networks https://arxiv.org/pdf/1412.0233.pdf ================================================ FILE: ann_class2/grid_search.py ================================================ # For the class Data Science: Practical Deep Learning Concepts in Theano and TensorFlow # https://deeplearningcourses.com/c/data-science-deep-learning-in-theano-tensorflow # https://www.udemy.com/data-science-deep-learning-in-theano-tensorflow from __future__ import print_function, division from builtins import range # Note: you may need to update your version of future # sudo pip install -U future import theano.tensor as T from theano_ann import ANN from util import get_spiral, get_clouds from sklearn.utils import shuffle import matplotlib.pyplot as plt import numpy as np def grid_search(): # get the data and split into train/test X, Y = get_spiral() # X, Y = get_clouds() X, Y = shuffle(X, Y) Ntrain = int(0.7*len(X)) Xtrain, Ytrain = X[:Ntrain], Y[:Ntrain] Xtest, Ytest = X[Ntrain:], Y[Ntrain:] # hyperparameters to try hidden_layer_sizes = [ [300], [100,100], [50,50,50], ] learning_rates = [1e-4, 1e-3, 1e-2] l2_penalties = [0., 0.1, 1.0] # loop through all possible hyperparameter settings best_validation_rate = 0 best_hls = None best_lr = None best_l2 = None for hls in hidden_layer_sizes: for lr in learning_rates: for l2 in l2_penalties: model = ANN(hls) model.fit(Xtrain, Ytrain, learning_rate=lr, reg=l2, mu=0.99, epochs=3000, show_fig=False) validation_accuracy = model.score(Xtest, Ytest) train_accuracy = model.score(Xtrain, Ytrain) print( "validation_accuracy: %.3f, train_accuracy: %.3f, settings: %s, %s, %s" % (validation_accuracy, train_accuracy, hls, lr, l2) ) if validation_accuracy > best_validation_rate: best_validation_rate = validation_accuracy best_hls = hls best_lr = lr best_l2 = l2 print("Best validation_accuracy:", best_validation_rate) print("Best settings:") print("hidden_layer_sizes:", best_hls) print("learning_rate:", best_lr) print("l2:", best_l2) # def one(): # X, Y = get_spiral() # X, Y = shuffle(X, Y) # Ntrain = int(0.7*len(X)) # Xtrain, Ytrain = X[:Ntrain], Y[:Ntrain] # # plt.scatter(Xtrain[:,0], Xtrain[:,1], c=Ytrain) # # plt.show() # Xtest, Ytest = X[Ntrain:], Y[Ntrain:] # model = ANN([100,100]) # model.fit(Xtrain, Ytrain, activation=T.nnet.relu, learning_rate=1e-3, mu=0.99, reg=0., epochs=3000, show_fig=True) # validation_accuracy = model.score(Xtest, Ytest) # print("validation_accuracy:", validation_accuracy) # print("train accuracy:", model.score(Xtrain, Ytrain)) if __name__ == '__main__': grid_search() # one() ================================================ FILE: ann_class2/keras_example.py ================================================ # https://deeplearningcourses.com/c/data-science-deep-learning-in-theano-tensorflow # https://www.udemy.com/data-science-deep-learning-in-theano-tensorflow from __future__ import print_function, division from builtins import range # Note: you may need to update your version of future # sudo pip install -U future from keras.models import Sequential from keras.layers import Dense, Activation from util import get_normalized_data, y2indicator import matplotlib.pyplot as plt # NOTE: do NOT name your file keras.py because it will conflict # with importing keras # installation is easy! just the usual "sudo pip(3) install keras" # get the data, same as Theano + Tensorflow examples # no need to split now, the fit() function will do it Xtrain, Xtest, Ytrain, Ytest = get_normalized_data() # get shapes N, D = Xtrain.shape K = len(set(Ytrain)) # by default Keras wants one-hot encoded labels # there's another cost function we can use # where we can just pass in the integer labels directly # just like Tensorflow / Theano Ytrain = y2indicator(Ytrain) Ytest = y2indicator(Ytest) # the model will be a sequence of layers model = Sequential() # ANN with layers [784] -> [500] -> [300] -> [10] model.add(Dense(units=500, input_dim=D)) model.add(Activation('relu')) model.add(Dense(units=300)) # don't need to specify input_dim model.add(Activation('relu')) model.add(Dense(units=K)) model.add(Activation('softmax')) # list of losses: https://keras.io/losses/ # list of optimizers: https://keras.io/optimizers/ # list of metrics: https://keras.io/metrics/ model.compile( loss='categorical_crossentropy', optimizer='adam', metrics=['accuracy'] ) # note: multiple ways to choose a backend # either theano, tensorflow, or cntk # https://keras.io/backend/ # gives us back a r = model.fit(Xtrain, Ytrain, validation_data=(Xtest, Ytest), epochs=15, batch_size=32) print("Returned:", r) # print the available keys # should see: dict_keys(['val_loss', 'acc', 'loss', 'val_acc']) print(r.history.keys()) # plot some data plt.plot(r.history['loss'], label='loss') plt.plot(r.history['val_loss'], label='val_loss') plt.legend() plt.show() # accuracies plt.plot(r.history['accuracy'], label='acc') plt.plot(r.history['val_accuracy'], label='val_acc') plt.legend() plt.show() ================================================ FILE: ann_class2/keras_functional.py ================================================ # https://deeplearningcourses.com/c/data-science-deep-learning-in-theano-tensorflow # https://www.udemy.com/data-science-deep-learning-in-theano-tensorflow from __future__ import print_function, division from builtins import range # Note: you may need to update your version of future # sudo pip install -U future from keras.models import Model from keras.layers import Dense, Input from util import get_normalized_data, y2indicator import matplotlib.pyplot as plt # NOTE: do NOT name your file keras.py because it will conflict # with importing keras # installation is easy! just the usual "sudo pip(3) install keras" # get the data, same as Theano + Tensorflow examples # no need to split now, the fit() function will do it Xtrain, Xtest, Ytrain, Ytest = get_normalized_data() # get shapes N, D = Xtrain.shape K = len(set(Ytrain)) # by default Keras wants one-hot encoded labels # there's another cost function we can use # where we can just pass in the integer labels directly # just like Tensorflow / Theano Ytrain = y2indicator(Ytrain) Ytest = y2indicator(Ytest) # ANN with layers [784] -> [500] -> [300] -> [10] i = Input(shape=(D,)) x = Dense(500, activation='relu')(i) x = Dense(300, activation='relu')(x) x = Dense(K, activation='softmax')(x) model = Model(inputs=i, outputs=x) # list of losses: https://keras.io/losses/ # list of optimizers: https://keras.io/optimizers/ # list of metrics: https://keras.io/metrics/ model.compile( loss='categorical_crossentropy', optimizer='adam', metrics=['accuracy'] ) # note: multiple ways to choose a backend # either theano, tensorflow, or cntk # https://keras.io/backend/ # gives us back a r = model.fit(Xtrain, Ytrain, validation_data=(Xtest, Ytest), epochs=15, batch_size=32) print("Returned:", r) # print the available keys # should see: dict_keys(['val_loss', 'acc', 'loss', 'val_acc']) print(r.history.keys()) # plot some data plt.plot(r.history['loss'], label='loss') plt.plot(r.history['val_loss'], label='val_loss') plt.legend() plt.show() # accuracies plt.plot(r.history['accuracy'], label='acc') plt.plot(r.history['val_accuracy'], label='val_acc') plt.legend() plt.show() ================================================ FILE: ann_class2/mlp.py ================================================ # Simple multi-layer preceptron / neural network in Python and Numpy # For the class Data Science: Practical Deep Learning Concepts in Theano and TensorFlow # https://deeplearningcourses.com/c/data-science-deep-learning-in-theano-tensorflow # https://www.udemy.com/data-science-deep-learning-in-theano-tensorflow from __future__ import print_function, division from builtins import range # Note: you may need to update your version of future # sudo pip install -U future import numpy as np def forward(X, W1, b1, W2, b2): # sigmoid # Z = 1 / (1 + np.exp(-( X.dot(W1) + b1 ))) # relu Z = X.dot(W1) + b1 Z[Z < 0] = 0 A = Z.dot(W2) + b2 expA = np.exp(A) Y = expA / expA.sum(axis=1, keepdims=True) return Y, Z def derivative_w2(Z, T, Y): return Z.T.dot(Y - T) def derivative_b2(T, Y): return (Y - T).sum(axis=0) def derivative_w1(X, Z, T, Y, W2): # return X.T.dot( ( ( Y-T ).dot(W2.T) * ( Z*(1 - Z) ) ) ) # for sigmoid return X.T.dot( ( ( Y-T ).dot(W2.T) * (Z > 0) ) ) # for relu def derivative_b1(Z, T, Y, W2): # return (( Y-T ).dot(W2.T) * ( Z*(1 - Z) )).sum(axis=0) # for sigmoid return (( Y-T ).dot(W2.T) * (Z > 0)).sum(axis=0) # for relu ================================================ FILE: ann_class2/momentum.py ================================================ # Compare momentum with regular gradient descent # For the class Data Science: Practical Deep Learning Concepts in Theano and TensorFlow # https://deeplearningcourses.com/c/data-science-deep-learning-in-theano-tensorflow # https://www.udemy.com/data-science-deep-learning-in-theano-tensorflow # NOTE: MUST restrict initial values of W by dividing by # # NOTE: sigmoid vs. rectifier for hiddens # We get 15% error rate with sigmoid, 3% error rate with ReLU from __future__ import print_function, division from builtins import range # Note: you may need to update your version of future # sudo pip install -U future import numpy as np from sklearn.utils import shuffle import matplotlib.pyplot as plt from util import get_normalized_data, error_rate, cost, y2indicator from mlp import forward, derivative_w2, derivative_w1, derivative_b2, derivative_b1 def main(): # compare 3 scenarios: # 1. batch SGD # 2. batch SGD with momentum # 3. batch SGD with Nesterov momentum max_iter = 20 # make it 30 for sigmoid print_period = 50 Xtrain, Xtest, Ytrain, Ytest = get_normalized_data() lr = 0.00004 reg = 0.01 Ytrain_ind = y2indicator(Ytrain) Ytest_ind = y2indicator(Ytest) N, D = Xtrain.shape batch_sz = 500 n_batches = N // batch_sz M = 300 K = 10 W1 = np.random.randn(D, M) / np.sqrt(D) b1 = np.zeros(M) W2 = np.random.randn(M, K) / np.sqrt(M) b2 = np.zeros(K) # save initial weights W1_0 = W1.copy() b1_0 = b1.copy() W2_0 = W2.copy() b2_0 = b2.copy() # 1. batch losses_batch = [] errors_batch = [] for i in range(max_iter): Xtrain, Ytrain, Ytrain_ind = shuffle(Xtrain, Ytrain, Ytrain_ind) for j in range(n_batches): Xbatch = Xtrain[j*batch_sz:(j*batch_sz + batch_sz),] Ybatch = Ytrain_ind[j*batch_sz:(j*batch_sz + batch_sz),] pYbatch, Z = forward(Xbatch, W1, b1, W2, b2) # print "first batch cost:", cost(pYbatch, Ybatch) # gradients gW2 = derivative_w2(Z, Ybatch, pYbatch) + reg*W2 gb2 = derivative_b2(Ybatch, pYbatch) + reg*b2 gW1 = derivative_w1(Xbatch, Z, Ybatch, pYbatch, W2) + reg*W1 gb1 = derivative_b1(Z, Ybatch, pYbatch, W2) + reg*b1 # updates W2 -= lr*gW2 b2 -= lr*gb2 W1 -= lr*gW1 b1 -= lr*gb1 if j % print_period == 0: pY, _ = forward(Xtest, W1, b1, W2, b2) l = cost(pY, Ytest_ind) losses_batch.append(l) print("Cost at iteration i=%d, j=%d: %.6f" % (i, j, l)) e = error_rate(pY, Ytest) errors_batch.append(e) print("Error rate:", e) pY, _ = forward(Xtest, W1, b1, W2, b2) print("Final error rate:", error_rate(pY, Ytest)) # 2. batch with momentum W1 = W1_0.copy() b1 = b1_0.copy() W2 = W2_0.copy() b2 = b2_0.copy() losses_momentum = [] errors_momentum = [] mu = 0.9 dW2 = 0 db2 = 0 dW1 = 0 db1 = 0 for i in range(max_iter): Xtrain, Ytrain, Ytrain_ind = shuffle(Xtrain, Ytrain, Ytrain_ind) for j in range(n_batches): Xbatch = Xtrain[j*batch_sz:(j*batch_sz + batch_sz),] Ybatch = Ytrain_ind[j*batch_sz:(j*batch_sz + batch_sz),] pYbatch, Z = forward(Xbatch, W1, b1, W2, b2) # gradients gW2 = derivative_w2(Z, Ybatch, pYbatch) + reg*W2 gb2 = derivative_b2(Ybatch, pYbatch) + reg*b2 gW1 = derivative_w1(Xbatch, Z, Ybatch, pYbatch, W2) + reg*W1 gb1 = derivative_b1(Z, Ybatch, pYbatch, W2) + reg*b1 # update velocities dW2 = mu*dW2 - lr*gW2 db2 = mu*db2 - lr*gb2 dW1 = mu*dW1 - lr*gW1 db1 = mu*db1 - lr*gb1 # updates W2 += dW2 b2 += db2 W1 += dW1 b1 += db1 if j % print_period == 0: pY, _ = forward(Xtest, W1, b1, W2, b2) l = cost(pY, Ytest_ind) losses_momentum.append(l) print("Cost at iteration i=%d, j=%d: %.6f" % (i, j, l)) e = error_rate(pY, Ytest) errors_momentum.append(e) print("Error rate:", e) pY, _ = forward(Xtest, W1, b1, W2, b2) print("Final error rate:", error_rate(pY, Ytest)) # 3. batch with Nesterov momentum W1 = W1_0.copy() b1 = b1_0.copy() W2 = W2_0.copy() b2 = b2_0.copy() losses_nesterov = [] errors_nesterov = [] mu = 0.9 vW2 = 0 vb2 = 0 vW1 = 0 vb1 = 0 for i in range(max_iter): Xtrain, Ytrain, Ytrain_ind = shuffle(Xtrain, Ytrain, Ytrain_ind) for j in range(n_batches): Xbatch = Xtrain[j*batch_sz:(j*batch_sz + batch_sz),] Ybatch = Ytrain_ind[j*batch_sz:(j*batch_sz + batch_sz),] pYbatch, Z = forward(Xbatch, W1, b1, W2, b2) # updates gW2 = derivative_w2(Z, Ybatch, pYbatch) + reg*W2 gb2 = derivative_b2(Ybatch, pYbatch) + reg*b2 gW1 = derivative_w1(Xbatch, Z, Ybatch, pYbatch, W2) + reg*W1 gb1 = derivative_b1(Z, Ybatch, pYbatch, W2) + reg*b1 # v update vW2 = mu*vW2 - lr*gW2 vb2 = mu*vb2 - lr*gb2 vW1 = mu*vW1 - lr*gW1 vb1 = mu*vb1 - lr*gb1 # param update W2 += mu*vW2 - lr*gW2 b2 += mu*vb2 - lr*gb2 W1 += mu*vW1 - lr*gW1 b1 += mu*vb1 - lr*gb1 if j % print_period == 0: pY, _ = forward(Xtest, W1, b1, W2, b2) l = cost(pY, Ytest_ind) losses_nesterov.append(l) print("Cost at iteration i=%d, j=%d: %.6f" % (i, j, l)) e = error_rate(pY, Ytest) errors_nesterov.append(e) print("Error rate:", e) pY, _ = forward(Xtest, W1, b1, W2, b2) print("Final error rate:", error_rate(pY, Ytest)) plt.plot(losses_batch, label="batch") plt.plot(losses_momentum, label="momentum") plt.plot(losses_nesterov, label="nesterov") plt.legend() plt.show() if __name__ == '__main__': main() ================================================ FILE: ann_class2/mxnet_example.py ================================================ # https://deeplearningcourses.com/c/data-science-deep-learning-in-theano-tensorflow # https://www.udemy.com/data-science-deep-learning-in-theano-tensorflow from __future__ import print_function, division from builtins import range # Note: you may need to update your version of future # sudo pip install -U future # installation is just one line: # https://mxnet.incubator.apache.org/get_started/install.html # # Mac: # pip install mxnet # # Linux (GPU): # pip install mxnet-cu80 # # Windows (a little more involved): # https://mxnet.incubator.apache.org/get_started/windows_setup.html import mxnet as mx import numpy as np import matplotlib.pyplot as plt from util import get_normalized_data, y2indicator # get the data, same as Theano + Tensorflow examples # no need to split now, the fit() function will do it Xtrain, Xtest, Ytrain, Ytest = get_normalized_data() # get shapes N, D = Xtrain.shape K = len(set(Ytrain)) # training config batch_size = 32 epochs = 15 # convert the data into a format appropriate for input into mxnet train_iterator = mx.io.NDArrayIter( Xtrain, Ytrain, batch_size, shuffle=True ) test_iterator = mx.io.NDArrayIter(Xtest, Ytest, batch_size) # define a placeholder to represent the inputs data = mx.sym.var('data') # define the model architecture a1 = mx.sym.FullyConnected(data=data, num_hidden=500) z1 = mx.sym.Activation(data=a1, act_type="relu") a2 = mx.sym.FullyConnected(data=z1, num_hidden = 300) z2 = mx.sym.Activation(data=a2, act_type="relu") a3 = mx.sym.FullyConnected(data=z2, num_hidden=K) y = mx.sym.SoftmaxOutput(data=a3, name='softmax') # train it # required in order for progress to be printed import logging logging.getLogger().setLevel(logging.DEBUG) # use mx.gpu() if you have gpu model = mx.mod.Module(symbol=y, context=mx.cpu()) model.fit( train_iterator, # train data eval_data=test_iterator, # validation data optimizer=mx.optimizer.Adam(), eval_metric='acc', # report accuracy during training batch_end_callback = mx.callback.Speedometer(batch_size, 100), # output progress for each 100 data batches num_epoch=epochs, ) # no return value # list of optimizers: https://mxnet.incubator.apache.org/api/python/optimization.html # test it # predict accuracy of mlp acc = mx.metric.Accuracy() model.score(test_iterator, acc) print(acc) print(acc.get()) # currently, there is no good way to plot the training loss / accuracy history # https://github.com/apache/incubator-mxnet/issues/2873 # # some have suggested parsing the logs # https://github.com/apache/incubator-mxnet/blob/master/example/kaggle-ndsb1/training_curves.py ================================================ FILE: ann_class2/pytorch_batchnorm.py ================================================ # https://deeplearningcourses.com/c/data-science-deep-learning-in-theano-tensorflow # https://www.udemy.com/data-science-deep-learning-in-theano-tensorflow from __future__ import print_function, division from builtins import range # Note: you may need to update your version of future # sudo pip install -U future # Note: is helpful to look at keras_example.py first import numpy as np import matplotlib.pyplot as plt from util import get_normalized_data import torch from torch.autograd import Variable from torch import optim # get the data, same as Theano + Tensorflow examples # no need to split now, the fit() function will do it Xtrain, Xtest, Ytrain, Ytest = get_normalized_data() # get shapes _, D = Xtrain.shape K = len(set(Ytrain)) # Note: no need to convert Y to indicator matrix # the model will be a sequence of layers model = torch.nn.Sequential() # ANN with layers [784] -> [500] -> [300] -> [10] model.add_module("dense1", torch.nn.Linear(D, 500)) model.add_module("bn1", torch.nn.BatchNorm1d(500)) model.add_module("relu1", torch.nn.ReLU()) model.add_module("dense2", torch.nn.Linear(500, 300)) model.add_module("bn2", torch.nn.BatchNorm1d(300)) model.add_module("relu2", torch.nn.ReLU()) model.add_module("dense3", torch.nn.Linear(300, K)) # Note: no final softmax! # just like Tensorflow, it's included in cross-entropy function # define a loss function # other loss functions can be found here: # http://pytorch.org/docs/master/nn.html#loss-functions loss = torch.nn.CrossEntropyLoss(size_average=True) # Note: this returns a function! # e.g. use it like: loss(logits, labels) # define an optimizer # other optimizers can be found here: # http://pytorch.org/docs/master/optim.html optimizer = optim.Adam(model.parameters(), lr=1e-4) # define the training procedure # i.e. one step of gradient descent # there are lots of steps # so we encapsulate it in a function # Note: inputs and labels are torch tensors def train(model, loss, optimizer, inputs, labels): # set the model to training mode # because batch norm has 2 different modes! model.train() inputs = Variable(inputs, requires_grad=False) labels = Variable(labels, requires_grad=False) # Reset gradient optimizer.zero_grad() # Forward logits = model.forward(inputs) output = loss.forward(logits, labels) # Backward output.backward() # Update parameters optimizer.step() # what's the difference between backward() and step()? return output.item() # similar to train() but not doing the backprop step def get_cost(model, loss, inputs, labels): # set the model to testing mode # because batch norm has 2 different modes! model.eval() inputs = Variable(inputs, requires_grad=False) labels = Variable(labels, requires_grad=False) # Forward logits = model.forward(inputs) output = loss.forward(logits, labels) return output.item() # define the prediction procedure # also encapsulate these steps # Note: inputs is a torch tensor def predict(model, inputs): # set the model to testing mode # because batch norm has 2 different modes! model.eval() inputs = Variable(inputs, requires_grad=False) logits = model.forward(inputs) return logits.data.numpy().argmax(axis=1) # return the accuracy # labels is a torch tensor # to get back the internal numpy data # use the instance method .numpy() def score(model, inputs, labels): predictions = predict(model, inputs) return np.mean(labels.numpy() == predictions) ### prepare for training loop ### # convert the data arrays into torch tensors Xtrain = torch.from_numpy(Xtrain).float() Ytrain = torch.from_numpy(Ytrain).long() Xtest = torch.from_numpy(Xtest).float() Ytest = torch.from_numpy(Ytest).long() # training parameters epochs = 15 batch_size = 32 n_batches = Xtrain.size()[0] // batch_size # things to keep track of train_costs = [] test_costs = [] train_accuracies = [] test_accuracies = [] # main training loop for i in range(epochs): cost = 0 test_cost = 0 for j in range(n_batches): Xbatch = Xtrain[j*batch_size:(j+1)*batch_size] Ybatch = Ytrain[j*batch_size:(j+1)*batch_size] cost += train(model, loss, optimizer, Xbatch, Ybatch) # we could have also calculated the train cost here # but I wanted to show you that we could also return it # from the train function itself train_acc = score(model, Xtrain, Ytrain) test_acc = score(model, Xtest, Ytest) test_cost = get_cost(model, loss, Xtest, Ytest) print("Epoch: %d, cost: %f, acc: %.2f" % (i, test_cost, test_acc)) # for plotting train_costs.append(cost / n_batches) train_accuracies.append(train_acc) test_costs.append(test_cost) test_accuracies.append(test_acc) # plot the results plt.plot(train_costs, label='Train cost') plt.plot(test_costs, label='Test cost') plt.title('Cost') plt.legend() plt.show() plt.plot(train_accuracies, label='Train accuracy') plt.plot(test_accuracies, label='Test accuracy') plt.title('Accuracy') plt.legend() plt.show() ================================================ FILE: ann_class2/pytorch_dropout.py ================================================ # https://deeplearningcourses.com/c/data-science-deep-learning-in-theano-tensorflow # https://www.udemy.com/data-science-deep-learning-in-theano-tensorflow from __future__ import print_function, division from builtins import range # Note: you may need to update your version of future # sudo pip install -U future # Note: is helpful to look at keras_example.py first import numpy as np import matplotlib.pyplot as plt from util import get_normalized_data import torch from torch.autograd import Variable from torch import optim # get the data, same as Theano + Tensorflow examples # no need to split now, the fit() function will do it Xtrain, Xtest, Ytrain, Ytest = get_normalized_data() # get shapes _, D = Xtrain.shape K = len(set(Ytrain)) # Note: no need to convert Y to indicator matrix # the model will be a sequence of layers model = torch.nn.Sequential() # ANN with layers [784] -> [500] -> [300] -> [10] # NOTE: the "p" is p_drop, not p_keep model.add_module("dropout1", torch.nn.Dropout(p=0.2)) model.add_module("dense1", torch.nn.Linear(D, 500)) model.add_module("relu1", torch.nn.ReLU()) model.add_module("dropout2", torch.nn.Dropout(p=0.5)) model.add_module("dense2", torch.nn.Linear(500, 300)) model.add_module("relu2", torch.nn.ReLU()) model.add_module("dropout3", torch.nn.Dropout(p=0.5)) model.add_module("dense3", torch.nn.Linear(300, K)) # Note: no final softmax! # just like Tensorflow, it's included in cross-entropy function # define a loss function # other loss functions can be found here: # http://pytorch.org/docs/master/nn.html#loss-functions loss = torch.nn.CrossEntropyLoss(size_average=True) # Note: this returns a function! # e.g. use it like: loss(logits, labels) # define an optimizer # other optimizers can be found here: # http://pytorch.org/docs/master/optim.html optimizer = optim.Adam(model.parameters(), lr=1e-4) # define the training procedure # i.e. one step of gradient descent # there are lots of steps # so we encapsulate it in a function # Note: inputs and labels are torch tensors def train(model, loss, optimizer, inputs, labels): # set the model to training mode # because dropout has 2 different modes! model.train() inputs = Variable(inputs, requires_grad=False) labels = Variable(labels, requires_grad=False) # Reset gradient optimizer.zero_grad() # Forward logits = model.forward(inputs) output = loss.forward(logits, labels) # Backward output.backward() # Update parameters optimizer.step() # what's the difference between backward() and step()? return output.item() # similar to train() but not doing the backprop step def get_cost(model, loss, inputs, labels): # set the model to testing mode # because dropout has 2 different modes! model.eval() inputs = Variable(inputs, requires_grad=False) labels = Variable(labels, requires_grad=False) # Forward logits = model.forward(inputs) output = loss.forward(logits, labels) return output.item() # define the prediction procedure # also encapsulate these steps # Note: inputs is a torch tensor def predict(model, inputs): # set the model to testing mode # because dropout has 2 different modes! model.eval() inputs = Variable(inputs, requires_grad=False) logits = model.forward(inputs) return logits.data.numpy().argmax(axis=1) # return the accuracy # labels is a torch tensor # to get back the internal numpy data # use the instance method .numpy() def score(model, inputs, labels): predictions = predict(model, inputs) return np.mean(labels.numpy() == predictions) ### prepare for training loop ### # convert the data arrays into torch tensors Xtrain = torch.from_numpy(Xtrain).float() Ytrain = torch.from_numpy(Ytrain).long() Xtest = torch.from_numpy(Xtest).float() Ytest = torch.from_numpy(Ytest).long() # training parameters epochs = 15 batch_size = 32 n_batches = Xtrain.size()[0] // batch_size # things to keep track of train_costs = [] test_costs = [] train_accuracies = [] test_accuracies = [] # main training loop for i in range(epochs): cost = 0 test_cost = 0 for j in range(n_batches): Xbatch = Xtrain[j*batch_size:(j+1)*batch_size] Ybatch = Ytrain[j*batch_size:(j+1)*batch_size] cost += train(model, loss, optimizer, Xbatch, Ybatch) # we could have also calculated the train cost here # but I wanted to show you that we could also return it # from the train function itself train_acc = score(model, Xtrain, Ytrain) test_acc = score(model, Xtest, Ytest) test_cost = get_cost(model, loss, Xtest, Ytest) print("Epoch: %d, cost: %f, acc: %.2f" % (i, test_cost, test_acc)) # for plotting train_costs.append(cost / n_batches) train_accuracies.append(train_acc) test_costs.append(test_cost) test_accuracies.append(test_acc) # plot the results plt.plot(train_costs, label='Train cost') plt.plot(test_costs, label='Test cost') plt.title('Cost') plt.legend() plt.show() plt.plot(train_accuracies, label='Train accuracy') plt.plot(test_accuracies, label='Test accuracy') plt.title('Accuracy') plt.legend() plt.show() ================================================ FILE: ann_class2/pytorch_example.py ================================================ # https://deeplearningcourses.com/c/data-science-deep-learning-in-theano-tensorflow # https://www.udemy.com/data-science-deep-learning-in-theano-tensorflow from __future__ import print_function, division from builtins import range # Note: you may need to update your version of future # sudo pip install -U future # Note: is helpful to look at keras_example.py first import numpy as np import matplotlib.pyplot as plt from util import get_normalized_data import torch from torch.autograd import Variable from torch import optim # get the data, same as Theano + Tensorflow examples # no need to split now, the fit() function will do it Xtrain, Xtest, Ytrain, Ytest = get_normalized_data() # get shapes _, D = Xtrain.shape K = len(set(Ytrain)) # Note: no need to convert Y to indicator matrix # the model will be a sequence of layers model = torch.nn.Sequential() # ANN with layers [784] -> [500] -> [300] -> [10] model.add_module("dense1", torch.nn.Linear(D, 500)) model.add_module("relu1", torch.nn.ReLU()) model.add_module("dense2", torch.nn.Linear(500, 300)) model.add_module("relu2", torch.nn.ReLU()) model.add_module("dense3", torch.nn.Linear(300, K)) # Note: no final softmax! # just like Tensorflow, it's included in cross-entropy function # define a loss function # other loss functions can be found here: # http://pytorch.org/docs/master/nn.html#loss-functions loss = torch.nn.CrossEntropyLoss(size_average=True) # define an optimizer # other optimizers can be found here: # http://pytorch.org/docs/master/optim.html optimizer = optim.Adam(model.parameters()) # define the training procedure # i.e. one step of gradient descent # there are lots of steps # so we encapsulate it in a function # Note: inputs and labels are torch tensors def train(model, loss, optimizer, inputs, labels): # https://discuss.pytorch.org/t/why-is-it-recommended-to-wrap-your-data-with-variable-each-step-of-the-iterations-rather-than-before-training-starts/12683 inputs = Variable(inputs, requires_grad=False) labels = Variable(labels, requires_grad=False) # Reset gradient # https://discuss.pytorch.org/t/why-do-we-need-to-set-the-gradients-manually-to-zero-in-pytorch/4903/7 optimizer.zero_grad() # Forward logits = model.forward(inputs) output = loss.forward(logits, labels) # Backward output.backward() # Update parameters optimizer.step() # what's the difference between backward() and step()? # https://discuss.pytorch.org/t/what-does-the-backward-function-do/9944 return output.item() # define the prediction procedure # also encapsulate these steps # Note: inputs is a torch tensor def predict(model, inputs): inputs = Variable(inputs, requires_grad=False) logits = model.forward(inputs) return logits.data.numpy().argmax(axis=1) ### prepare for training loop ### # convert the data arrays into torch tensors Xtrain = torch.from_numpy(Xtrain).float() Ytrain = torch.from_numpy(Ytrain).long() Xtest = torch.from_numpy(Xtest).float() epochs = 15 batch_size = 32 n_batches = Xtrain.size()[0] // batch_size costs = [] test_accuracies = [] for i in range(epochs): cost = 0. for j in range(n_batches): Xbatch = Xtrain[j*batch_size:(j+1)*batch_size] Ybatch = Ytrain[j*batch_size:(j+1)*batch_size] cost += train(model, loss, optimizer, Xbatch, Ybatch) Ypred = predict(model, Xtest) acc = np.mean(Ytest == Ypred) print("Epoch: %d, cost: %f, acc: %.2f" % (i, cost / n_batches, acc)) # for plotting costs.append(cost / n_batches) test_accuracies.append(acc) # EXERCISE: plot test cost + training accuracy too # plot the results plt.plot(costs) plt.title('Training cost') plt.show() plt.plot(test_accuracies) plt.title('Test accuracies') plt.show() ================================================ FILE: ann_class2/pytorch_example2.py ================================================ # https://deeplearningcourses.com/c/data-science-deep-learning-in-theano-tensorflow # https://www.udemy.com/data-science-deep-learning-in-theano-tensorflow from __future__ import print_function, division from builtins import range # Note: you may need to update your version of future # sudo pip install -U future # Note: is helpful to look at keras_example.py first import numpy as np import matplotlib.pyplot as plt from util import get_normalized_data import torch from torch.autograd import Variable from torch import optim # get the data, same as Theano + Tensorflow examples # no need to split now, the fit() function will do it Xtrain, Xtest, Ytrain, Ytest = get_normalized_data() # get shapes _, D = Xtrain.shape K = len(set(Ytrain)) # Note: no need to convert Y to indicator matrix # the model will be a sequence of layers model = torch.nn.Sequential() # ANN with layers [784] -> [500] -> [300] -> [10] model.add_module("dense1", torch.nn.Linear(D, 500)) model.add_module("relu1", torch.nn.ReLU()) model.add_module("dense2", torch.nn.Linear(500, 300)) model.add_module("relu2", torch.nn.ReLU()) model.add_module("dense3", torch.nn.Linear(300, K)) # Note: no final softmax! # just like Tensorflow, it's included in cross-entropy function # define a loss function # other loss functions can be found here: # http://pytorch.org/docs/master/nn.html#loss-functions loss = torch.nn.CrossEntropyLoss(size_average=True) # Note: this returns a function! # e.g. use it like: loss(logits, labels) # define an optimizer # other optimizers can be found here: # http://pytorch.org/docs/master/optim.html optimizer = optim.Adam(model.parameters(), lr=1e-4) # define the training procedure # i.e. one step of gradient descent # there are lots of steps # so we encapsulate it in a function # Note: inputs and labels are torch tensors def train(model, loss, optimizer, inputs, labels): inputs = Variable(inputs, requires_grad=False) labels = Variable(labels, requires_grad=False) # Reset gradient optimizer.zero_grad() # Forward logits = model.forward(inputs) output = loss.forward(logits, labels) # Backward output.backward() # Update parameters optimizer.step() # what's the difference between backward() and step()? return output.item() # similar to train() but not doing the backprop step def get_cost(model, loss, inputs, labels): inputs = Variable(inputs, requires_grad=False) labels = Variable(labels, requires_grad=False) # Forward logits = model.forward(inputs) output = loss.forward(logits, labels) return output.item() # define the prediction procedure # also encapsulate these steps # Note: inputs is a torch tensor def predict(model, inputs): inputs = Variable(inputs, requires_grad=False) logits = model.forward(inputs) return logits.data.numpy().argmax(axis=1) # return the accuracy # labels is a torch tensor # to get back the internal numpy data # use the instance method .numpy() def score(model, inputs, labels): predictions = predict(model, inputs) return np.mean(labels.numpy() == predictions) ### prepare for training loop ### # convert the data arrays into torch tensors Xtrain = torch.from_numpy(Xtrain).float() Ytrain = torch.from_numpy(Ytrain).long() Xtest = torch.from_numpy(Xtest).float() Ytest = torch.from_numpy(Ytest).long() # training parameters epochs = 15 batch_size = 32 n_batches = Xtrain.size()[0] // batch_size # things to keep track of train_costs = [] test_costs = [] train_accuracies = [] test_accuracies = [] # main training loop for i in range(epochs): cost = 0 test_cost = 0 for j in range(n_batches): Xbatch = Xtrain[j*batch_size:(j+1)*batch_size] Ybatch = Ytrain[j*batch_size:(j+1)*batch_size] cost += train(model, loss, optimizer, Xbatch, Ybatch) # we could have also calculated the train cost here # but I wanted to show you that we could also return it # from the train function itself train_acc = score(model, Xtrain, Ytrain) test_acc = score(model, Xtest, Ytest) test_cost = get_cost(model, loss, Xtest, Ytest) print("Epoch: %d, cost: %f, acc: %.2f" % (i, test_cost, test_acc)) # for plotting train_costs.append(cost / n_batches) train_accuracies.append(train_acc) test_costs.append(test_cost) test_accuracies.append(test_acc) # plot the results plt.plot(train_costs, label='Train cost') plt.plot(test_costs, label='Test cost') plt.title('Cost') plt.legend() plt.show() plt.plot(train_accuracies, label='Train accuracy') plt.plot(test_accuracies, label='Test accuracy') plt.title('Accuracy') plt.legend() plt.show() ================================================ FILE: ann_class2/random_search.py ================================================ # For the class Data Science: Practical Deep Learning Concepts in Theano and TensorFlow # https://deeplearningcourses.com/c/data-science-deep-learning-in-theano-tensorflow # https://www.udemy.com/data-science-deep-learning-in-theano-tensorflow from __future__ import print_function, division from builtins import range # Note: you may need to update your version of future # sudo pip install -U future # import theano.tensor as T from theano_ann import ANN from util import get_spiral, get_clouds from sklearn.utils import shuffle import matplotlib.pyplot as plt import numpy as np def random_search(): # get the data and split into train/test X, Y = get_spiral() # X, Y = get_clouds() X, Y = shuffle(X, Y) Ntrain = int(0.7*len(X)) Xtrain, Ytrain = X[:Ntrain], Y[:Ntrain] Xtest, Ytest = X[Ntrain:], Y[Ntrain:] # starting hyperparameters M = 20 nHidden = 2 log_lr = -4 log_l2 = -2 # since we always want it to be positive max_tries = 30 # loop through all possible hyperparameter settings best_validation_rate = 0 best_hls = None best_lr = None best_l2 = None for _ in range(max_tries): model = ANN([M]*nHidden) model.fit( Xtrain, Ytrain, learning_rate=10**log_lr, reg=10**log_l2, mu=0.99, epochs=3000, show_fig=False ) validation_accuracy = model.score(Xtest, Ytest) train_accuracy = model.score(Xtrain, Ytrain) print( "validation_accuracy: %.3f, train_accuracy: %.3f, settings: %s, %s, %s" % (validation_accuracy, train_accuracy, [M]*nHidden, log_lr, log_l2) ) if validation_accuracy > best_validation_rate: best_validation_rate = validation_accuracy best_M = M best_nHidden = nHidden best_lr = log_lr best_l2 = log_l2 # select new hyperparams nHidden = best_nHidden + np.random.randint(-1, 2) # -1, 0, or 1 nHidden = max(1, nHidden) M = best_M + np.random.randint(-1, 2)*10 M = max(10, M) log_lr = best_lr + np.random.randint(-1, 2) log_l2 = best_l2 + np.random.randint(-1, 2) print("Best validation_accuracy:", best_validation_rate) print("Best settings:") print("best_M:", best_M) print("best_nHidden:", best_nHidden) print("learning_rate:", best_lr) print("l2:", best_l2) if __name__ == '__main__': random_search() ================================================ FILE: ann_class2/rmsprop.py ================================================ # Compare RMSprop vs. constant learning rate # For the class Data Science: Practical Deep Learning Concepts in Theano and TensorFlow # https://deeplearningcourses.com/c/data-science-deep-learning-in-theano-tensorflow # https://www.udemy.com/data-science-deep-learning-in-theano-tensorflow from __future__ import print_function, division from builtins import range # Note: you may need to update your version of future # sudo pip install -U future import numpy as np from sklearn.utils import shuffle import matplotlib.pyplot as plt from util import get_normalized_data, error_rate, cost, y2indicator from mlp import forward, derivative_w2, derivative_w1, derivative_b2, derivative_b1 def main(): max_iter = 20 # make it 30 for sigmoid print_period = 10 Xtrain, Xtest, Ytrain, Ytest = get_normalized_data() lr = 0.00004 reg = 0.01 Ytrain_ind = y2indicator(Ytrain) Ytest_ind = y2indicator(Ytest) N, D = Xtrain.shape batch_sz = 500 n_batches = N // batch_sz M = 300 K = 10 W1 = np.random.randn(D, M) / np.sqrt(D) b1 = np.zeros(M) W2 = np.random.randn(M, K) / np.sqrt(M) b2 = np.zeros(K) # 1. const # cost = -16 LL_batch = [] CR_batch = [] for i in range(max_iter): for j in range(n_batches): Xbatch = Xtrain[j*batch_sz:(j*batch_sz + batch_sz),] Ybatch = Ytrain_ind[j*batch_sz:(j*batch_sz + batch_sz),] pYbatch, Z = forward(Xbatch, W1, b1, W2, b2) # print "first batch cost:", cost(pYbatch, Ybatch) # gradients gW2 = derivative_w2(Z, Ybatch, pYbatch) + reg*W2 gb2 = derivative_b2(Ybatch, pYbatch) + reg*b2 gW1 = derivative_w1(Xbatch, Z, Ybatch, pYbatch, W2) + reg*W1 gb1 = derivative_b1(Z, Ybatch, pYbatch, W2) + reg*b1 # updates W2 -= lr*gW2 b2 -= lr*gb2 W1 -= lr*gW1 b1 -= lr*gb1 if j % print_period == 0: # calculate just for LL pY, _ = forward(Xtest, W1, b1, W2, b2) # print "pY:", pY ll = cost(pY, Ytest_ind) LL_batch.append(ll) print("Cost at iteration i=%d, j=%d: %.6f" % (i, j, ll)) err = error_rate(pY, Ytest) CR_batch.append(err) print("Error rate:", err) pY, _ = forward(Xtest, W1, b1, W2, b2) print("Final error rate:", error_rate(pY, Ytest)) # 2. RMSprop W1 = np.random.randn(D, M) / np.sqrt(D) b1 = np.zeros(M) W2 = np.random.randn(M, K) / np.sqrt(M) b2 = np.zeros(K) LL_rms = [] CR_rms = [] lr0 = 0.001 # if you set this too high you'll get NaN! cache_W2 = 1 cache_b2 = 1 cache_W1 = 1 cache_b1 = 1 decay_rate = 0.999 eps = 1e-10 for i in range(max_iter): for j in range(n_batches): Xbatch = Xtrain[j*batch_sz:(j*batch_sz + batch_sz),] Ybatch = Ytrain_ind[j*batch_sz:(j*batch_sz + batch_sz),] pYbatch, Z = forward(Xbatch, W1, b1, W2, b2) # print "first batch cost:", cost(pYbatch, Ybatch) # gradients gW2 = derivative_w2(Z, Ybatch, pYbatch) + reg*W2 gb2 = derivative_b2(Ybatch, pYbatch) + reg*b2 gW1 = derivative_w1(Xbatch, Z, Ybatch, pYbatch, W2) + reg*W1 gb1 = derivative_b1(Z, Ybatch, pYbatch, W2) + reg*b1 # caches cache_W2 = decay_rate*cache_W2 + (1 - decay_rate)*gW2*gW2 cache_b2 = decay_rate*cache_b2 + (1 - decay_rate)*gb2*gb2 cache_W1 = decay_rate*cache_W1 + (1 - decay_rate)*gW1*gW1 cache_b1 = decay_rate*cache_b1 + (1 - decay_rate)*gb1*gb1 # updates W2 -= lr0 * gW2 / (np.sqrt(cache_W2) + eps) b2 -= lr0 * gb2 / (np.sqrt(cache_b2) + eps) W1 -= lr0 * gW1 / (np.sqrt(cache_W1) + eps) b1 -= lr0 * gb1 / (np.sqrt(cache_b1) + eps) if j % print_period == 0: # calculate just for LL pY, _ = forward(Xtest, W1, b1, W2, b2) # print "pY:", pY ll = cost(pY, Ytest_ind) LL_rms.append(ll) print("Cost at iteration i=%d, j=%d: %.6f" % (i, j, ll)) err = error_rate(pY, Ytest) CR_rms.append(err) print("Error rate:", err) pY, _ = forward(Xtest, W1, b1, W2, b2) print("Final error rate:", error_rate(pY, Ytest)) plt.plot(LL_batch, label='const') plt.plot(LL_rms, label='rms') plt.legend() plt.show() if __name__ == '__main__': main() ================================================ FILE: ann_class2/rmsprop_test.py ================================================ # https://deeplearningcourses.com/c/data-science-deep-learning-in-theano-tensorflow # https://www.udemy.com/data-science-deep-learning-in-theano-tensorflow from __future__ import print_function, division from builtins import range # Note: you may need to update your version of future # sudo pip install -U future from keras.models import Sequential from keras.layers import Dense, Activation from util import get_normalized_data, y2indicator import matplotlib.pyplot as plt import numpy as np import tensorflow as tf import theano import theano.tensor as T # RMSprop experiment # to compare TF / Keras / Theano N = 10 D = 2 X = np.random.randn(N, D).astype(np.float32) w = np.array([0.5, -0.5], dtype=np.float32) Y = X.dot(w) + 1 Y = Y.reshape(-1, 1) # keras # the model will be a sequence of layers model = Sequential() model.add(Dense(units=1, input_dim=D)) # copy the weights for later weights = model.layers[0].get_weights() w0 = weights[0].copy() b0 = weights[1].copy() model.compile( loss='mean_squared_error', optimizer='rmsprop', ) r = model.fit(X, Y, epochs=15, batch_size=10) # print the available keys print(r.history.keys()) # tf inputs = tf.placeholder(tf.float32, shape=(None, 2)) targets = tf.placeholder(tf.float32, shape=(None, 1)) tfw = tf.Variable(w0) tfb = tf.Variable(b0) pred = tf.matmul(inputs, tfw) + tfb loss = tf.reduce_mean(tf.square(targets - pred)) train_op = tf.train.RMSPropOptimizer(1e-3, epsilon=1e-8).minimize(loss) tflosses = [] init = tf.global_variables_initializer() with tf.Session() as sess: sess.run(init) for e in range(15): _, l = sess.run([train_op, loss], feed_dict={inputs: X, targets: Y}) tflosses.append(l) # theano def rmsprop(cost, params, lr=1e-3, decay=0.9, eps=1e-8): # return updates lr = np.float32(lr) decay = np.float32(decay) eps = np.float32(eps) updates = [] grads = T.grad(cost, params) # tf-like # caches = [theano.shared(np.ones_like(p.get_value(), dtype=np.float32)) for p in params] # keras-like caches = [theano.shared(np.zeros_like(p.get_value(), dtype=np.float32)) for p in params] new_caches = [] for c, g in zip(caches, grads): new_c = decay*c + (np.float32(1) - decay)*g*g updates.append((c, new_c)) new_caches.append(new_c) for p, new_c, g in zip(params, new_caches, grads): new_p = p - lr*g / T.sqrt(new_c + eps) updates.append((p, new_p)) return updates thX = T.matrix('X') thY = T.matrix('Y') thw = theano.shared(w0) thb = theano.shared(b0) thP = thX.dot(thw) + thb cost = T.mean((thY - thP)**2) params = [thw, thb] updates = rmsprop(cost, params) train_op = theano.function( inputs=[thX, thY], outputs=cost, updates=updates, ) thlosses = [] for e in range(15): c = train_op(X, Y) thlosses.append(c) # plot results plt.plot(r.history['loss'], label='keras loss') plt.plot(tflosses, label='tf loss') plt.plot(thlosses, label='theano loss') plt.legend() plt.show() ================================================ FILE: ann_class2/sgd.py ================================================ # In this file we compare the progression of the cost function vs. iteration # for 3 cases: # 1) full gradient descent # 2) mini-batch gradient descent # 3) stochastic gradient descent # # For the class Data Science: Practical Deep Learning Concepts in Theano and TensorFlow # https://deeplearningcourses.com/c/data-science-deep-learning-in-theano-tensorflow # https://www.udemy.com/data-science-deep-learning-in-theano-tensorflow from __future__ import print_function, division from builtins import range # Note: you may need to update your version of future # sudo pip install -U future import numpy as np import pandas as pd import matplotlib.pyplot as plt from sklearn.utils import shuffle from datetime import datetime from util import get_normalized_data, forward, error_rate, cost, gradW, gradb, y2indicator def main(): Xtrain, Xtest, Ytrain, Ytest = get_normalized_data() print("Performing logistic regression...") N, D = Xtrain.shape Ytrain_ind = y2indicator(Ytrain) Ytest_ind = y2indicator(Ytest) # 1. full W = np.random.randn(D, 10) / np.sqrt(D) W0 = W.copy() # save for later b = np.zeros(10) test_losses_full = [] lr = 0.9 reg = 0. t0 = datetime.now() last_dt = 0 intervals = [] for i in range(50): p_y = forward(Xtrain, W, b) gW = gradW(Ytrain_ind, p_y, Xtrain) / N gb = gradb(Ytrain_ind, p_y) / N W += lr*(gW - reg*W) b += lr*(gb - reg*b) p_y_test = forward(Xtest, W, b) test_loss = cost(p_y_test, Ytest_ind) dt = (datetime.now() - t0).total_seconds() # save these dt2 = dt - last_dt last_dt = dt intervals.append(dt2) test_losses_full.append([dt, test_loss]) if (i + 1) % 10 == 0: print("Cost at iteration %d: %.6f" % (i + 1, test_loss)) p_y = forward(Xtest, W, b) print("Final error rate:", error_rate(p_y, Ytest)) print("Elapsted time for full GD:", datetime.now() - t0) # save the max time so we don't surpass it in subsequent iterations max_dt = dt avg_interval_dt = np.mean(intervals) # 2. stochastic W = W0.copy() b = np.zeros(10) test_losses_sgd = [] lr = 0.001 reg = 0. t0 = datetime.now() last_dt_calculated_loss = 0 done = False for i in range(50): # takes very long since we're computing cost for 41k samples tmpX, tmpY = shuffle(Xtrain, Ytrain_ind) for n in range(N): x = tmpX[n,:].reshape(1,D) y = tmpY[n,:].reshape(1,10) p_y = forward(x, W, b) gW = gradW(y, p_y, x) gb = gradb(y, p_y) W += lr*(gW - reg*W) b += lr*(gb - reg*b) dt = (datetime.now() - t0).total_seconds() dt2 = dt - last_dt_calculated_loss if dt2 > avg_interval_dt: last_dt_calculated_loss = dt p_y_test = forward(Xtest, W, b) test_loss = cost(p_y_test, Ytest_ind) test_losses_sgd.append([dt, test_loss]) # time to quit if dt > max_dt: done = True break if done: break if (i + 1) % 1 == 0: print("Cost at iteration %d: %.6f" % (i + 1, test_loss)) p_y = forward(Xtest, W, b) print("Final error rate:", error_rate(p_y, Ytest)) print("Elapsted time for SGD:", datetime.now() - t0) # 3. mini-batch W = W0.copy() b = np.zeros(10) test_losses_batch = [] batch_sz = 500 lr = 0.08 reg = 0. n_batches = int(np.ceil(N / batch_sz)) t0 = datetime.now() last_dt_calculated_loss = 0 done = False for i in range(50): tmpX, tmpY = shuffle(Xtrain, Ytrain_ind) for j in range(n_batches): x = tmpX[j*batch_sz:(j + 1)*batch_sz,:] y = tmpY[j*batch_sz:(j + 1)*batch_sz,:] p_y = forward(x, W, b) current_batch_sz = len(x) gW = gradW(y, p_y, x) / current_batch_sz gb = gradb(y, p_y) / current_batch_sz W += lr*(gW - reg*W) b += lr*(gb - reg*b) dt = (datetime.now() - t0).total_seconds() dt2 = dt - last_dt_calculated_loss if dt2 > avg_interval_dt: last_dt_calculated_loss = dt p_y_test = forward(Xtest, W, b) test_loss = cost(p_y_test, Ytest_ind) test_losses_batch.append([dt, test_loss]) # time to quit if dt > max_dt: done = True break if done: break if (i + 1) % 10 == 0: print("Cost at iteration %d: %.6f" % (i + 1, test_loss)) p_y = forward(Xtest, W, b) print("Final error rate:", error_rate(p_y, Ytest)) print("Elapsted time for mini-batch GD:", datetime.now() - t0) # convert to numpy arrays test_losses_full = np.array(test_losses_full) test_losses_sgd = np.array(test_losses_sgd) test_losses_batch = np.array(test_losses_batch) plt.plot(test_losses_full[:,0], test_losses_full[:,1], label="full") plt.plot(test_losses_sgd[:,0], test_losses_sgd[:,1], label="sgd") plt.plot(test_losses_batch[:,0], test_losses_batch[:,1], label="mini-batch") plt.legend() plt.show() if __name__ == '__main__': main() ================================================ FILE: ann_class2/tensorflow1.py ================================================ # This tutorial is analogous to theano1.py # It introduces basic variables and functions # and shows how you can optimize a function. # I compare this to theano1.py multiple times. # So you might want to check that out first. # For the class Data Science: Practical Deep Learning Concepts in Theano and TensorFlow # https://deeplearningcourses.com/c/data-science-deep-learning-in-theano-tensorflow # https://www.udemy.com/data-science-deep-learning-in-theano-tensorflow from __future__ import print_function, division from builtins import range # Note: you may need to update your version of future # sudo pip install -U future import numpy as np import tensorflow as tf # you have to specify the type A = tf.placeholder(tf.float32, shape=(5, 5), name='A') # but shape and name are optional v = tf.placeholder(tf.float32) # I think this name is more appropriate than 'dot' w = tf.matmul(A, v) # similar to Theano, you need to "feed" the variables values. # In TensorFlow you do the "actual work" in a "session". with tf.Session() as session: # the values are fed in via the appropriately named argument "feed_dict" # v needs to be of shape=(5, 1) not just shape=(5,) # it's more like "real" matrix multiplication output = session.run(w, feed_dict={A: np.random.randn(5, 5), v: np.random.randn(5, 1)}) # what's this output that is returned by the session? let's print it print(output, type(output)) # luckily, the output type is just a numpy array. back to safety! # TensorFlow variables are like Theano shared variables. # But Theano variables are like TensorFlow placeholders. # Are you confused yet? # A tf variable can be initialized with a numpy array or a tf array # or more correctly, anything that can be turned into a tf tensor shape = (2, 2) x = tf.Variable(tf.random_normal(shape)) # x = tf.Variable(np.random.randn(2, 2)) t = tf.Variable(0) # a scalar # you need to "initialize" the variables first init = tf.global_variables_initializer() with tf.Session() as session: out = session.run(init) # and then "run" the init operation print(out) # it's just None # eval() in tf is like get_value() in Theano print(x.eval()) # the initial value of x print(t.eval()) # let's now try to find the minimum of a simple cost function like we did in Theano u = tf.Variable(20.0) cost = u*u + u + 1.0 # One difference between Theano and TensorFlow is that you don't write the updates # yourself in TensorFlow. You choose an optimizer that implements the algorithm you want. # 0.3 is the learning rate. Documentation lists the params. train_op = tf.train.GradientDescentOptimizer(0.3).minimize(cost) # let's run a session again init = tf.global_variables_initializer() with tf.Session() as session: session.run(init) # Strangely, while the weight update is automated, the loop itself is not. # So we'll just call train_op until convergence. # This is useful for us anyway since we want to track the cost function. for i in range(12): session.run(train_op) print("i = %d, cost = %.3f, u = %.3f" % (i, cost.eval(), u.eval())) ================================================ FILE: ann_class2/tensorflow2.py ================================================ # 2-hidden layer NN in TensorFlow # This code is not optimized for speed. # It's just to get something working, using the principles we know. # For the class Data Science: Practical Deep Learning Concepts in Theano and TensorFlow # https://deeplearningcourses.com/c/data-science-deep-learning-in-theano-tensorflow # https://www.udemy.com/data-science-deep-learning-in-theano-tensorflow from __future__ import print_function, division from builtins import range # Note: you may need to update your version of future # sudo pip install -U future import numpy as np import tensorflow as tf import matplotlib.pyplot as plt from util import get_normalized_data, y2indicator def error_rate(p, t): return np.mean(p != t) # copy this first part from theano2.py def main(): # step 1: get the data and define all the usual variables Xtrain, Xtest, Ytrain, Ytest = get_normalized_data() max_iter = 15 print_period = 50 lr = 0.00004 reg = 0.01 Ytrain_ind = y2indicator(Ytrain) Ytest_ind = y2indicator(Ytest) N, D = Xtrain.shape batch_sz = 500 n_batches = N // batch_sz # add an extra layer just for fun M1 = 300 M2 = 100 K = 10 W1_init = np.random.randn(D, M1) / np.sqrt(D) b1_init = np.zeros(M1) W2_init = np.random.randn(M1, M2) / np.sqrt(M1) b2_init = np.zeros(M2) W3_init = np.random.randn(M2, K) / np.sqrt(M2) b3_init = np.zeros(K) # define variables and expressions X = tf.placeholder(tf.float32, shape=(None, D), name='X') T = tf.placeholder(tf.float32, shape=(None, K), name='T') W1 = tf.Variable(W1_init.astype(np.float32)) b1 = tf.Variable(b1_init.astype(np.float32)) W2 = tf.Variable(W2_init.astype(np.float32)) b2 = tf.Variable(b2_init.astype(np.float32)) W3 = tf.Variable(W3_init.astype(np.float32)) b3 = tf.Variable(b3_init.astype(np.float32)) # define the model Z1 = tf.nn.relu( tf.matmul(X, W1) + b1 ) Z2 = tf.nn.relu( tf.matmul(Z1, W2) + b2 ) Yish = tf.matmul(Z2, W3) + b3 # remember, the cost function does the softmaxing! weird, right? # softmax_cross_entropy_with_logits take in the "logits" # if you wanted to know the actual output of the neural net, # you could pass "Yish" into tf.nn.softmax(logits) cost = tf.reduce_sum(tf.nn.softmax_cross_entropy_with_logits_v2(logits=Yish, labels=T)) # we choose the optimizer but don't implement the algorithm ourselves # let's go with RMSprop, since we just learned about it. # it includes momentum! train_op = tf.train.RMSPropOptimizer(lr, decay=0.99, momentum=0.9).minimize(cost) # we'll use this to calculate the error rate predict_op = tf.argmax(Yish, 1) costs = [] init = tf.global_variables_initializer() with tf.Session() as session: session.run(init) for i in range(max_iter): for j in range(n_batches): Xbatch = Xtrain[j*batch_sz:(j*batch_sz + batch_sz),] Ybatch = Ytrain_ind[j*batch_sz:(j*batch_sz + batch_sz),] session.run(train_op, feed_dict={X: Xbatch, T: Ybatch}) if j % print_period == 0: test_cost = session.run(cost, feed_dict={X: Xtest, T: Ytest_ind}) prediction = session.run(predict_op, feed_dict={X: Xtest}) err = error_rate(prediction, Ytest) print("Cost / err at iteration i=%d, j=%d: %.3f / %.3f" % (i, j, test_cost, err)) costs.append(test_cost) plt.plot(costs) plt.show() # increase max_iter and notice how the test cost starts to increase. # are we overfitting by adding that extra layer? # how would you add regularization to this model? if __name__ == '__main__': main() ================================================ FILE: ann_class2/tf_with_save.py ================================================ # https://deeplearningcourses.com/c/data-science-deep-learning-in-theano-tensorflow # https://www.udemy.com/data-science-deep-learning-in-theano-tensorflow from __future__ import print_function, division from builtins import range # Note: you may need to update your version of future # sudo pip install -U future import os import json import numpy as np import tensorflow as tf import matplotlib.pyplot as plt from util import get_normalized_data, y2indicator def error_rate(p, t): return np.mean(p != t) class TFLogistic: def __init__(self, savefile, D=None, K=None): self.savefile = savefile if D and K: # we can define some parts in the model to be able to make predictions self.build(D, K) def build(self, D, K): W0 = np.random.randn(D, K) * np.sqrt(2.0 / D) b0 = np.zeros(K) # define variables and expressions self.inputs = tf.placeholder(tf.float32, shape=(None, D), name='inputs') self.targets = tf.placeholder(tf.int64, shape=(None,), name='targets') self.W = tf.Variable(W0.astype(np.float32), name='W') self.b = tf.Variable(b0.astype(np.float32), name='b') # variables must exist when calling this # try putting this line in the constructor and see what happens self.saver = tf.train.Saver({'W': self.W, 'b': self.b}) logits = tf.matmul(self.inputs, self.W) + self.b cost = tf.reduce_mean( tf.nn.sparse_softmax_cross_entropy_with_logits( logits=logits, labels=self.targets ) ) self.predict_op = tf.argmax(logits, 1) return cost def fit(self, X, Y, Xtest, Ytest): N, D = X.shape K = len(set(Y)) # hyperparams max_iter = 30 lr = 1e-3 mu = 0.9 regularization = 1e-1 batch_sz = 100 n_batches = N // batch_sz cost = self.build(D, K) l2_penalty = regularization*tf.reduce_mean(self.W**2) / 2 cost += l2_penalty train_op = tf.train.MomentumOptimizer(lr, momentum=mu).minimize(cost) costs = [] init = tf.global_variables_initializer() with tf.Session() as session: session.run(init) for i in range(max_iter): for j in range(n_batches): Xbatch = X[j*batch_sz:(j*batch_sz + batch_sz),] Ybatch = Y[j*batch_sz:(j*batch_sz + batch_sz),] session.run(train_op, feed_dict={self.inputs: Xbatch, self.targets: Ybatch}) if j % 200 == 0: test_cost = session.run(cost, feed_dict={self.inputs: Xtest, self.targets: Ytest}) Ptest = session.run(self.predict_op, feed_dict={self.inputs: Xtest}) err = error_rate(Ptest, Ytest) print("Cost / err at iteration i=%d, j=%d: %.3f / %.3f" % (i, j, test_cost, err)) costs.append(test_cost) # save the model self.saver.save(session, self.savefile) # save dimensions for later self.D = D self.K = K plt.plot(costs) plt.show() def predict(self, X): with tf.Session() as session: # restore the model self.saver.restore(session, self.savefile) P = session.run(self.predict_op, feed_dict={self.inputs: X}) return P def score(self, X, Y): return 1 - error_rate(self.predict(X), Y) def save(self, filename): j = { 'D': self.D, 'K': self.K, 'model': self.savefile } with open(filename, 'w') as f: json.dump(j, f) @staticmethod def load(filename): with open(filename) as f: j = json.load(f) return TFLogistic(j['model'], j['D'], j['K']) def main(): Xtrain, Xtest, Ytrain, Ytest = get_normalized_data() model = TFLogistic("./tf.model") model.fit(Xtrain, Ytrain, Xtest, Ytest) # test out restoring the model via the predict function print("final train accuracy:", model.score(Xtrain, Ytrain)) print("final test accuracy:", model.score(Xtest, Ytest)) # save the model model.save("my_trained_model.json") # load and score again model = TFLogistic.load("my_trained_model.json") print("final train accuracy (after reload):", model.score(Xtrain, Ytrain)) print("final test accuracy (after reload):", model.score(Xtest, Ytest)) if __name__ == '__main__': main() ================================================ FILE: ann_class2/theano1.py ================================================ # Theano basics. # For the class Data Science: Practical Deep Learning Concepts in Theano and TensorFlow # https://deeplearningcourses.com/c/data-science-deep-learning-in-theano-tensorflow # https://www.udemy.com/data-science-deep-learning-in-theano-tensorflow from __future__ import print_function, division from builtins import range # Note: you may need to update your version of future # sudo pip install -U future import theano.tensor as T # just some different types of variables c = T.scalar('c') v = T.vector('v') A = T.matrix('A') # we can define a matrix multiplication w = A.dot(v) # how do these variables actually take on values? import theano matrix_times_vector = theano.function(inputs=[A, v], outputs=w) # let's import numpy so we can create real arrays import numpy as np A_val = np.array([[1,2], [3,4]]) v_val = np.array([5,6]) w_val = matrix_times_vector(A_val, v_val) print(w_val) # let's create a shared variable to we can do gradient descent # this adds another layer of complexity to the theano function x = theano.shared(20.0, 'x') # the first argument is its initial value, the second is its name # a cost function that has a minimum value cost = x*x + x + 1 # in theano, you don't have to compute gradients yourself! x_update = x - 0.3*T.grad(cost, x) # x is not an "input", it's a thing you update # in later examples, data and labels would go into the inputs # and model params would go in the updates # updates takes in a list of tuples, each tuple has 2 things in it: # 1) the shared variable to update, 2) the update expression train = theano.function(inputs=[], outputs=cost, updates=[(x, x_update)]) # write your own loop to call the training function. # it has no arguments! for i in range(25): cost_val = train() print(cost_val) # print the optimal value of x print(x.get_value()) ================================================ FILE: ann_class2/theano2.py ================================================ # A 1-hidden-layer neural network in Theano. # This code is not optimized for speed. # It's just to get something working, using the principles we know. # For the class Data Science: Practical Deep Learning Concepts in Theano and TensorFlow # https://deeplearningcourses.com/c/data-science-deep-learning-in-theano-tensorflow # https://www.udemy.com/data-science-deep-learning-in-theano-tensorflow from __future__ import print_function, division from builtins import range # Note: you may need to update your version of future # sudo pip install -U future import numpy as np import theano import theano.tensor as T import matplotlib.pyplot as plt from util import get_normalized_data, y2indicator def error_rate(p, t): return np.mean(p != t) def relu(a): return a * (a > 0) def main(): # step 1: get the data and define all the usual variables Xtrain, Xtest, Ytrain, Ytest = get_normalized_data() max_iter = 20 print_period = 10 lr = 0.0004 reg = 0.01 Xtrain = Xtrain.astype(np.float32) Ytrain = Ytrain.astype(np.float32) Xtest = Xtest.astype(np.float32) Ytest = Ytest.astype(np.float32) Ytrain_ind = y2indicator(Ytrain).astype(np.float32) Ytest_ind = y2indicator(Ytest).astype(np.float32) N, D = Xtrain.shape batch_sz = 500 n_batches = N // batch_sz M = 300 K = 10 W1_init = np.random.randn(D, M) / np.sqrt(D) b1_init = np.zeros(M) W2_init = np.random.randn(M, K) / np.sqrt(M) b2_init = np.zeros(K) # step 2: define theano variables and expressions thX = T.matrix('X') thT = T.matrix('T') W1 = theano.shared(W1_init, 'W1') b1 = theano.shared(b1_init, 'b1') W2 = theano.shared(W2_init, 'W2') b2 = theano.shared(b2_init, 'b2') # we can use the built-in theano functions to do relu and softmax thZ = relu( thX.dot(W1) + b1 ) # relu is new in version 0.7.1 but just in case you don't have it thY = T.nnet.softmax( thZ.dot(W2) + b2 ) # define the cost function and prediction cost = -(thT * T.log(thY)).sum() + reg*((W1*W1).sum() + (b1*b1).sum() + (W2*W2).sum() + (b2*b2).sum()) prediction = T.argmax(thY, axis=1) # step 3: training expressions and functions # we can just include regularization as part of the cost because it is also automatically differentiated! update_W1 = W1 - lr*T.grad(cost, W1) update_b1 = b1 - lr*T.grad(cost, b1) update_W2 = W2 - lr*T.grad(cost, W2) update_b2 = b2 - lr*T.grad(cost, b2) train = theano.function( inputs=[thX, thT], updates=[(W1, update_W1), (b1, update_b1), (W2, update_W2), (b2, update_b2)], ) # create another function for this because we want it over the whole dataset get_prediction = theano.function( inputs=[thX, thT], outputs=[cost, prediction], ) costs = [] for i in range(max_iter): for j in range(n_batches): Xbatch = Xtrain[j*batch_sz:(j*batch_sz + batch_sz),] Ybatch = Ytrain_ind[j*batch_sz:(j*batch_sz + batch_sz),] train(Xbatch, Ybatch) if j % print_period == 0: cost_val, prediction_val = get_prediction(Xtest, Ytest_ind) err = error_rate(prediction_val, Ytest) print("Cost / err at iteration i=%d, j=%d: %.3f / %.3f" % (i, j, cost_val, err)) costs.append(cost_val) plt.plot(costs) plt.show() # how would you incorporate momentum into the gradient descent procedure? if __name__ == '__main__': main() ================================================ FILE: ann_class2/theano_ann.py ================================================ # For the class Data Science: Practical Deep Learning Concepts in Theano and TensorFlow # https://deeplearningcourses.com/c/data-science-deep-learning-in-theano-tensorflow # https://www.udemy.com/data-science-deep-learning-in-theano-tensorflow from __future__ import print_function, division from builtins import range # Note: you may need to update your version of future # sudo pip install -U future import numpy as np import pandas as pd import matplotlib.pyplot as plt import theano import theano.tensor as T from sklearn.utils import shuffle def init_weight(M1, M2): return np.random.randn(M1, M2) * np.sqrt(2.0 / M1) class HiddenLayer(object): def __init__(self, M1, M2, f): self.M1 = M1 self.M2 = M2 self.f = f W = init_weight(M1, M2) b = np.zeros(M2) self.W = theano.shared(W) self.b = theano.shared(b) self.params = [self.W, self.b] def forward(self, X): if self.f == T.nnet.relu: return self.f(X.dot(self.W) + self.b, alpha=0.1) return self.f(X.dot(self.W) + self.b) class ANN(object): def __init__(self, hidden_layer_sizes): self.hidden_layer_sizes = hidden_layer_sizes def fit(self, X, Y, activation=T.nnet.relu, learning_rate=1e-3, mu=0.0, reg=0, epochs=100, batch_sz=None, print_period=100, show_fig=True): X = X.astype(np.float32) Y = Y.astype(np.int32) # initialize hidden layers N, D = X.shape self.layers = [] M1 = D for M2 in self.hidden_layer_sizes: h = HiddenLayer(M1, M2, activation) self.layers.append(h) M1 = M2 # final layer K = len(set(Y)) # print("K:", K) h = HiddenLayer(M1, K, T.nnet.softmax) self.layers.append(h) if batch_sz is None: batch_sz = N # collect params for later use self.params = [] for h in self.layers: self.params += h.params # for momentum dparams = [theano.shared(np.zeros_like(p.get_value())) for p in self.params] # set up theano functions and variables thX = T.matrix('X') thY = T.ivector('Y') p_y_given_x = self.forward(thX) rcost = reg*T.mean([(p*p).sum() for p in self.params]) cost = -T.mean(T.log(p_y_given_x[T.arange(thY.shape[0]), thY])) #+ rcost prediction = T.argmax(p_y_given_x, axis=1) grads = T.grad(cost, self.params) # momentum only updates = [ (p, p + mu*dp - learning_rate*g) for p, dp, g in zip(self.params, dparams, grads) ] + [ (dp, mu*dp - learning_rate*g) for dp, g in zip(dparams, grads) ] train_op = theano.function( inputs=[thX, thY], outputs=[cost, prediction], updates=updates, ) self.predict_op = theano.function( inputs=[thX], outputs=prediction, ) n_batches = N // batch_sz costs = [] for i in range(epochs): if n_batches > 1: X, Y = shuffle(X, Y) for j in range(n_batches): Xbatch = X[j*batch_sz:(j*batch_sz+batch_sz)] Ybatch = Y[j*batch_sz:(j*batch_sz+batch_sz)] c, p = train_op(Xbatch, Ybatch) costs.append(c) if (j+1) % print_period == 0: print("i:", i, "j:", j, "nb:", n_batches, "cost:", c) if show_fig: plt.plot(costs) plt.show() def forward(self, X): out = X for h in self.layers: out = h.forward(out) return out def score(self, X, Y): P = self.predict_op(X) return np.mean(Y == P) def predict(self, X): return self.predict_op(X) ================================================ FILE: ann_class2/util.py ================================================ from __future__ import print_function, division from builtins import range # Note: you may need to update your version of future # sudo pip install -U future # Some utility functions we need for the class. # For the class Data Science: Practical Deep Learning Concepts in Theano and TensorFlow # https://deeplearningcourses.com/c/data-science-deep-learning-in-theano-tensorflow # https://www.udemy.com/data-science-deep-learning-in-theano-tensorflow # Note: run this from the current folder it is in. import os import numpy as np import pandas as pd import matplotlib.pyplot as plt from sklearn.decomposition import PCA from sklearn.linear_model import LogisticRegression def get_clouds(): Nclass = 500 D = 2 X1 = np.random.randn(Nclass, D) + np.array([0, -2]) X2 = np.random.randn(Nclass, D) + np.array([2, 2]) X3 = np.random.randn(Nclass, D) + np.array([-2, 2]) X = np.vstack([X1, X2, X3]) Y = np.array([0]*Nclass + [1]*Nclass + [2]*Nclass) return X, Y def get_spiral(): # Idea: radius -> low...high # (don't start at 0, otherwise points will be "mushed" at origin) # angle = low...high proportional to radius # [0, 2pi/6, 4pi/6, ..., 10pi/6] --> [pi/2, pi/3 + pi/2, ..., ] # x = rcos(theta), y = rsin(theta) as usual radius = np.linspace(1, 10, 100) thetas = np.empty((6, 100)) for i in range(6): start_angle = np.pi*i / 3.0 end_angle = start_angle + np.pi / 2 points = np.linspace(start_angle, end_angle, 100) thetas[i] = points # convert into cartesian coordinates x1 = np.empty((6, 100)) x2 = np.empty((6, 100)) for i in range(6): x1[i] = radius * np.cos(thetas[i]) x2[i] = radius * np.sin(thetas[i]) # inputs X = np.empty((600, 2)) X[:,0] = x1.flatten() X[:,1] = x2.flatten() # add noise X += np.random.randn(600, 2)*0.5 # targets Y = np.array([0]*100 + [1]*100 + [0]*100 + [1]*100 + [0]*100 + [1]*100) return X, Y def get_transformed_data(): print("Reading in and transforming data...") if not os.path.exists('../large_files/train.csv'): print('Looking for ../large_files/train.csv') print('You have not downloaded the data and/or not placed the files in the correct location.') print('Please get the data from: https://www.kaggle.com/c/digit-recognizer') print('Place train.csv in the folder large_files adjacent to the class folder') exit() df = pd.read_csv('../large_files/train.csv') data = df.values.astype(np.float32) np.random.shuffle(data) X = data[:, 1:] Y = data[:, 0].astype(np.int32) Xtrain = X[:-1000] Ytrain = Y[:-1000] Xtest = X[-1000:] Ytest = Y[-1000:] # center the data mu = Xtrain.mean(axis=0) Xtrain = Xtrain - mu Xtest = Xtest - mu # transform the data pca = PCA() Ztrain = pca.fit_transform(Xtrain) Ztest = pca.transform(Xtest) plot_cumulative_variance(pca) # take first 300 cols of Z Ztrain = Ztrain[:, :300] Ztest = Ztest[:, :300] # normalize Z mu = Ztrain.mean(axis=0) std = Ztrain.std(axis=0) Ztrain = (Ztrain - mu) / std Ztest = (Ztest - mu) / std return Ztrain, Ztest, Ytrain, Ytest def get_normalized_data(): print("Reading in and transforming data...") if not os.path.exists('../large_files/train.csv'): print('Looking for ../large_files/train.csv') print('You have not downloaded the data and/or not placed the files in the correct location.') print('Please get the data from: https://www.kaggle.com/c/digit-recognizer') print('Place train.csv in the folder large_files adjacent to the class folder') exit() df = pd.read_csv('../large_files/train.csv') data = df.values.astype(np.float32) np.random.shuffle(data) X = data[:, 1:] Y = data[:, 0] Xtrain = X[:-1000] Ytrain = Y[:-1000] Xtest = X[-1000:] Ytest = Y[-1000:] # normalize the data mu = Xtrain.mean(axis=0) std = Xtrain.std(axis=0) np.place(std, std == 0, 1) Xtrain = (Xtrain - mu) / std Xtest = (Xtest - mu) / std return Xtrain, Xtest, Ytrain, Ytest def plot_cumulative_variance(pca): P = [] for p in pca.explained_variance_ratio_: if len(P) == 0: P.append(p) else: P.append(p + P[-1]) plt.plot(P) plt.show() return P def forward(X, W, b): # softmax a = X.dot(W) + b expa = np.exp(a) y = expa / expa.sum(axis=1, keepdims=True) return y def predict(p_y): return np.argmax(p_y, axis=1) def error_rate(p_y, t): prediction = predict(p_y) return np.mean(prediction != t) def cost(p_y, t): tot = t * np.log(p_y) return -tot.sum() def gradW(t, y, X): return X.T.dot(t - y) def gradb(t, y): return (t - y).sum(axis=0) def y2indicator(y): N = len(y) y = y.astype(np.int32) ind = np.zeros((N, 10)) for i in range(N): ind[i, y[i]] = 1 return ind def benchmark_full(): Xtrain, Xtest, Ytrain, Ytest = get_normalized_data() print("Performing logistic regression...") # lr = LogisticRegression(solver='lbfgs') # convert Ytrain and Ytest to (N x K) matrices of indicator variables N, D = Xtrain.shape Ytrain_ind = y2indicator(Ytrain) Ytest_ind = y2indicator(Ytest) W = np.random.randn(D, 10) / np.sqrt(D) b = np.zeros(10) LL = [] LLtest = [] CRtest = [] # reg = 1 # learning rate 0.0001 is too high, 0.00005 is also too high # 0.00003 / 2000 iterations => 0.363 error, -7630 cost # 0.00004 / 1000 iterations => 0.295 error, -7902 cost # 0.00004 / 2000 iterations => 0.321 error, -7528 cost # reg = 0.1, still around 0.31 error # reg = 0.01, still around 0.31 error lr = 0.00004 reg = 0.01 for i in range(500): p_y = forward(Xtrain, W, b) # print "p_y:", p_y ll = cost(p_y, Ytrain_ind) LL.append(ll) p_y_test = forward(Xtest, W, b) lltest = cost(p_y_test, Ytest_ind) LLtest.append(lltest) err = error_rate(p_y_test, Ytest) CRtest.append(err) W += lr*(gradW(Ytrain_ind, p_y, Xtrain) - reg*W) b += lr*(gradb(Ytrain_ind, p_y) - reg*b) if i % 10 == 0: print("Cost at iteration %d: %.6f" % (i, ll)) print("Error rate:", err) p_y = forward(Xtest, W, b) print("Final error rate:", error_rate(p_y, Ytest)) iters = range(len(LL)) plt.plot(iters, LL, iters, LLtest) plt.show() plt.plot(CRtest) plt.show() def benchmark_pca(): Xtrain, Xtest, Ytrain, Ytest = get_transformed_data() print("Performing logistic regression...") N, D = Xtrain.shape Ytrain_ind = np.zeros((N, 10)) for i in range(N): Ytrain_ind[i, Ytrain[i]] = 1 Ntest = len(Ytest) Ytest_ind = np.zeros((Ntest, 10)) for i in range(Ntest): Ytest_ind[i, Ytest[i]] = 1 W = np.random.randn(D, 10) / np.sqrt(D) b = np.zeros(10) LL = [] LLtest = [] CRtest = [] # D = 300 -> error = 0.07 lr = 0.0001 reg = 0.01 for i in range(200): p_y = forward(Xtrain, W, b) # print "p_y:", p_y ll = cost(p_y, Ytrain_ind) LL.append(ll) p_y_test = forward(Xtest, W, b) lltest = cost(p_y_test, Ytest_ind) LLtest.append(lltest) err = error_rate(p_y_test, Ytest) CRtest.append(err) W += lr*(gradW(Ytrain_ind, p_y, Xtrain) - reg*W) b += lr*(gradb(Ytrain_ind, p_y) - reg*b) if i % 10 == 0: print("Cost at iteration %d: %.6f" % (i, ll)) print("Error rate:", err) p_y = forward(Xtest, W, b) print("Final error rate:", error_rate(p_y, Ytest)) iters = range(len(LL)) plt.plot(iters, LL, iters, LLtest) plt.show() plt.plot(CRtest) plt.show() if __name__ == '__main__': # benchmark_pca() benchmark_full() ================================================ FILE: ann_logistic_extra/__init__.py ================================================ ================================================ FILE: ann_logistic_extra/ann_predict.py ================================================ from __future__ import print_function, division from builtins import range # Note: you may need to update your version of future # sudo pip install -U future import numpy as np from process import get_data X, Y, _, _ = get_data() # randomly initialize weights M = 5 D = X.shape[1] K = len(set(Y)) W1 = np.random.randn(D, M) b1 = np.zeros(M) W2 = np.random.randn(M, K) b2 = np.zeros(K) # make predictions def softmax(a): expA = np.exp(a) return expA / expA.sum(axis=1, keepdims=True) def forward(X, W1, b1, W2, b2): Z = np.tanh(X.dot(W1) + b1) return softmax(Z.dot(W2) + b2) P_Y_given_X = forward(X, W1, b1, W2, b2) print("P_Y_given_X.shape:", P_Y_given_X.shape) predictions = np.argmax(P_Y_given_X, axis=1) # calculate the accuracy def classification_rate(Y, P): return np.mean(Y == P) print("Score:", classification_rate(Y, predictions)) ================================================ FILE: ann_logistic_extra/ann_train.py ================================================ from __future__ import print_function, division from builtins import range # Note: you may need to update your version of future # sudo pip install -U future import numpy as np import matplotlib.pyplot as plt from sklearn.utils import shuffle from process import get_data def y2indicator(y, K): N = len(y) ind = np.zeros((N, K)) for i in range(N): ind[i, y[i]] = 1 return ind Xtrain, Ytrain, Xtest, Ytest = get_data() D = Xtrain.shape[1] K = len(set(Ytrain) | set(Ytest)) M = 5 # num hidden units # convert to indicator Ytrain_ind = y2indicator(Ytrain, K) Ytest_ind = y2indicator(Ytest, K) # randomly initialize weights W1 = np.random.randn(D, M) b1 = np.zeros(M) W2 = np.random.randn(M, K) b2 = np.zeros(K) # make predictions def softmax(a): expA = np.exp(a) return expA / expA.sum(axis=1, keepdims=True) def forward(X, W1, b1, W2, b2): Z = np.tanh(X.dot(W1) + b1) return softmax(Z.dot(W2) + b2), Z def predict(P_Y_given_X): return np.argmax(P_Y_given_X, axis=1) # calculate the accuracy def classification_rate(Y, P): return np.mean(Y == P) def cross_entropy(Y, pY): return -np.sum(Y * np.log(pY)) / len(Y) # train loop train_costs = [] test_costs = [] learning_rate = 0.001 for i in range(10000): pYtrain, Ztrain = forward(Xtrain, W1, b1, W2, b2) pYtest, Ztest = forward(Xtest, W1, b1, W2, b2) ctrain = cross_entropy(Ytrain_ind, pYtrain) ctest = cross_entropy(Ytest_ind, pYtest) train_costs.append(ctrain) test_costs.append(ctest) # gradient descent gW2 = Ztrain.T.dot(pYtrain - Ytrain_ind) gb2 = (pYtrain - Ytrain_ind).sum(axis=0) dZ = (pYtrain - Ytrain_ind).dot(W2.T) * (1 - Ztrain * Ztrain) gW1 = Xtrain.T.dot(dZ) gb1 = dZ.sum(axis=0) W2 -= learning_rate * gW2 b2 -= learning_rate * gb2 W1 -= learning_rate * gW1 b1 -= learning_rate * gb1 if i % 1000 == 0: print(i, ctrain, ctest) print("Final train classification_rate:", classification_rate(Ytrain, predict(pYtrain))) print("Final test classification_rate:", classification_rate(Ytest, predict(pYtest))) plt.plot(train_costs, label='train cost') plt.plot(test_costs, label='test cost') plt.legend() plt.show() ================================================ FILE: ann_logistic_extra/ecommerce_data.csv ================================================ is_mobile,n_products_viewed,visit_duration,is_returning_visitor,time_of_day,user_action 1,0,0.657509946224,0,3,0 1,1,0.568571234214,0,2,1 1,0,0.0422459971599,1,1,0 1,1,1.65979338126,1,1,2 0,1,2.01474484927,1,1,2 1,1,0.512447387146,1,1,2 0,0,1.44032709834,1,1,0 1,0,0.0352602330941,0,3,0 0,1,1.49076409356,0,0,1 0,0,0.0058375210477,1,3,0 0,4,2.04604049045,1,0,3 0,0,0.955889466031,0,3,0 1,0,0.159377604285,0,0,0 1,2,0.769272092601,0,3,1 0,0,0.226271266328,1,3,0 1,3,0.988228602505,1,2,3 1,2,0.160582972988,0,0,1 1,3,0.115029585491,1,2,1 0,1,0.4837140437,1,1,1 0,0,0.182400583975,0,3,0 1,2,0.271692558182,1,1,2 0,0,0.296118171936,0,0,0 1,0,0.99624012353,0,3,0 0,2,1.94535711946,1,0,3 0,0,0.0293628762454,0,2,0 0,1,0.087355104829,1,3,1 0,0,1.90816589216,1,1,0 0,2,0.119630359477,0,3,0 1,3,0.100013380568,0,1,2 1,3,0.707463234814,0,0,2 1,0,0.0446573477607,1,3,0 0,1,0.888626139675,1,0,1 0,1,2.08264406906,1,1,2 1,3,2.09047184438,0,3,2 0,1,1.11606573149,1,2,1 1,0,0.013973844446,0,3,0 0,0,0.254083736218,0,2,0 1,1,0.879175145041,1,2,1 0,1,1.20889141451,0,1,1 0,0,0.0620071008748,1,2,0 1,2,1.66427128352,0,1,2 1,1,1.09204237354,0,2,1 0,0,0.188662055571,0,0,0 0,2,0.258902814124,0,0,1 1,4,0.216297522697,1,0,3 0,0,0.0681184763718,1,0,0 0,1,1.21636593109,0,2,1 1,0,0.0775308304018,1,1,0 0,0,2.76065732312,0,1,0 1,1,0.413759695175,0,2,1 1,4,1.16767023553,0,2,2 1,4,1.21181899648,1,1,3 0,2,0.918526053415,0,3,1 1,1,1.55500429158,1,2,2 1,1,0.449372854929,0,0,1 1,4,0.543215224286,0,3,1 0,0,2.22325722983,1,3,0 0,0,1.0456731678,0,1,0 1,1,0.289637013008,1,2,1 0,1,0.836483998225,1,1,1 1,0,0.199600972515,0,0,0 0,0,0.714921958117,1,3,0 0,1,1.23716869212,1,3,1 1,0,0.857807174533,0,3,0 0,0,1.90354096589,0,0,0 0,2,0.688584482204,0,3,1 1,2,1.28104825438,0,2,1 0,1,0.367871681892,0,1,1 1,3,0.122865448682,1,2,1 0,1,1.62025550749,0,3,1 0,0,3.04328580739,0,0,0 1,0,0.233978716918,1,3,0 1,0,1.21333358495,0,0,0 1,0,1.54909595092,1,1,0 0,0,0.660328691982,0,0,0 0,0,0.920480079821,0,1,0 0,2,0.384992423454,1,1,1 1,1,0.701483902744,1,0,2 0,1,0.0919779418567,0,1,0 1,4,0.0950432085927,0,0,2 0,0,1.81667018596,1,1,0 1,0,1.58289076853,0,0,0 0,2,0.00692645674968,0,2,0 1,0,0.126660432171,0,1,0 0,0,1.38848011794,0,3,0 1,0,0.96860838195,0,2,0 0,0,0.740300656052,1,2,0 0,0,3.02250012207,0,0,0 0,4,2.94701256878,0,2,2 1,3,2.08142421825,1,2,3 1,0,0.294638039391,0,0,0 1,1,1.52482907816,1,1,2 0,1,0.745520923833,1,3,1 1,1,0.0552049328741,1,2,1 0,3,3.4910721132,1,2,3 0,2,1.03754088488,1,0,1 0,0,0.593552494575,1,0,0 1,3,5.56256122988,1,3,3 0,0,0.305464552643,0,0,0 1,1,0.775653288351,0,1,2 0,0,0.355264771319,1,2,0 0,1,1.12545504852,1,0,2 1,0,0.13756545562,0,0,0 1,1,0.564504937291,0,2,1 0,0,0.0303770783195,0,3,0 0,2,0.367136333412,0,2,1 0,0,3.80630788303,1,2,0 0,0,0.984629287831,0,0,0 0,1,0.545506377879,0,0,1 1,0,0.173013921101,0,2,0 1,1,3.56036404296,0,2,2 1,1,3.97131276405,0,1,3 1,2,0.237900767969,0,3,1 1,0,0.0313873240747,1,1,0 0,0,1.62152920064,1,3,0 0,2,0.945719697266,0,1,1 1,0,0.286006439837,0,3,0 1,0,1.01703842683,0,2,0 0,1,0.854159829071,0,3,1 1,0,0.321202578271,0,2,0 0,1,3.60278265346,1,3,2 1,0,0.439169346476,1,1,0 0,1,1.62312018066,1,2,1 0,0,0.474687038688,0,1,0 0,1,0.5005287108,1,3,1 0,1,1.0235944692,1,3,1 1,3,0.614914363991,1,2,2 0,0,0.2365286761,0,0,0 1,0,1.37168264125,1,0,0 0,0,1.08857401212,0,2,0 0,0,0.270274738162,0,0,0 0,0,0.717776906237,0,3,0 0,1,0.570007359874,0,2,1 0,0,0.308415011671,0,3,0 1,1,1.46203372288,0,3,1 0,0,1.29023832011,0,2,0 1,0,4.91703440276,1,2,0 1,2,1.50940459225,0,0,2 1,2,2.79995757003,0,3,2 1,0,1.23896878694,0,0,0 1,0,1.21092839763,1,3,0 1,1,1.61710908079,0,3,2 1,0,1.17473693062,1,1,0 1,0,1.67300277704,0,2,0 1,0,0.355293742088,1,1,0 0,1,0.541635678604,0,2,1 0,4,1.5830821363,0,0,2 0,1,0.142353855167,1,3,1 1,1,2.03540315936,1,3,2 1,0,2.26624509821,1,3,0 0,1,1.25019747024,1,1,2 0,3,0.979504266243,0,0,2 0,0,0.4744891271,1,1,0 1,3,1.60704148701,0,1,2 1,1,3.08845262329,0,0,2 1,0,1.4561201391,0,1,0 0,0,2.01342284487,1,3,0 0,0,1.68965159189,1,1,0 1,3,1.55659885331,1,2,3 1,2,0.166900218201,0,0,1 1,1,0.647094603648,0,2,1 0,2,1.14638590659,0,0,1 0,0,1.35515010098,1,1,0 1,0,1.94028844636,1,1,0 1,1,0.316971331006,1,3,1 0,1,0.434068101782,1,2,1 1,0,1.75636173652,1,2,0 1,2,1.95142170482,0,3,2 1,0,1.17672983292,1,2,0 1,0,1.74082879538,1,0,0 1,0,1.34887231502,1,0,0 0,0,1.49764838804,1,3,0 0,0,1.423052843,1,0,0 1,1,1.45066255561,0,1,2 0,0,0.685293292778,0,0,0 1,1,0.336223831616,0,2,1 0,0,0.791034696798,0,2,0 1,2,0.125113775874,1,2,1 1,0,1.23484346477,0,2,0 1,0,0.144369254931,0,1,0 0,0,2.13625221301,1,1,0 0,1,4.41870694091,1,3,2 1,0,0.350968062911,1,1,0 1,1,0.0431416470909,1,3,1 0,0,0.29535176973,1,2,0 0,3,0.980860941087,1,0,2 1,1,1.01286018837,0,2,1 0,1,0.280134102885,1,1,1 0,0,0.0322687594265,0,2,0 1,1,0.0902711113009,1,3,1 1,4,0.862862184209,0,2,2 0,0,1.39730186638,0,3,0 1,0,0.571083030568,0,1,0 0,0,2.21751007436,1,0,0 0,0,0.166312187634,1,3,0 1,2,2.16536195097,1,0,3 0,0,1.52539986647,1,3,0 1,1,0.476141233582,0,0,1 0,0,4.89260446874,0,3,0 0,0,0.576293374133,0,0,0 1,0,1.1362024288,1,1,0 1,0,1.11289449296,1,1,0 0,4,0.419781449405,1,3,1 0,0,2.10785843781,1,3,0 0,2,2.19804498905,1,2,3 0,0,0.320847762378,1,0,0 1,1,1.28629153332,1,2,2 0,0,0.72857737804,1,3,0 0,1,0.244115420787,0,3,0 1,2,0.0767417906588,0,2,1 1,0,2.34725495531,1,3,0 1,1,0.406977481522,0,3,1 1,0,0.437261579152,1,1,0 1,0,1.90533349138,0,3,0 1,0,0.296946862914,1,3,0 0,0,1.13037410175,0,2,0 0,1,0.424030342433,0,2,1 1,1,0.454991825853,0,3,1 0,1,3.42865292428,1,1,3 1,4,0.355568853994,1,1,3 0,1,0.821505249408,0,2,1 1,0,2.39077179842,1,3,0 0,1,0.194109651158,1,3,1 1,1,0.737048564039,1,2,1 0,3,1.51638190815,0,3,1 0,0,0.0079004364605,1,1,0 0,1,1.64206336068,0,3,1 0,0,3.61373161743,1,1,0 1,1,1.2524572105,0,3,1 0,3,0.792265249156,0,3,1 0,1,0.132624177917,1,1,1 1,0,0.0466892137906,1,3,0 0,0,0.616283269974,0,1,0 0,0,0.135275128732,0,2,0 0,0,0.212737068914,1,1,0 1,0,3.07690459524,0,0,0 0,4,0.303757021834,0,3,1 1,0,1.34128083216,1,3,0 1,1,0.878760585875,1,2,1 1,2,0.0857524572648,1,1,1 1,2,1.55946530274,0,1,2 0,0,3.51638750884,1,2,0 0,0,0.343045529948,1,1,0 0,1,1.56114918849,0,3,1 1,1,0.513276068607,1,1,2 0,0,0.0806800613758,1,3,0 0,1,1.60076977485,1,1,2 0,0,0.325550881542,1,3,0 1,0,1.28790746167,1,1,0 0,1,0.359318058504,1,0,1 1,2,3.64193502503,0,2,3 0,1,0.0938918393023,1,3,1 0,1,3.21142163495,1,3,2 1,0,0.546716834474,0,1,0 1,2,0.420539317023,1,1,2 0,2,0.0502077313756,0,2,0 0,2,0.166546123409,0,3,0 1,0,2.16342691913,0,1,0 0,2,1.278830653,0,3,1 0,1,0.161985660146,0,2,0 1,0,3.68932013064,1,1,0 0,0,0.8151928957,0,1,0 0,0,0.177968167826,1,0,0 1,0,2.65361611768,1,2,0 0,0,1.44492872036,0,2,0 0,4,0.652474088249,0,1,1 1,2,2.69092326987,0,2,3 1,0,2.08261046428,1,3,0 1,0,0.664122266488,0,2,0 0,1,0.131438266739,1,0,1 1,0,2.53485613375,0,1,0 1,1,0.747112128205,1,1,2 0,3,0.272298204891,1,1,2 0,1,0.693454725489,1,0,1 1,0,1.41825725008,1,2,0 0,2,1.20804943031,1,0,2 0,1,0.237617900854,0,3,0 0,0,0.775481730878,1,0,0 1,3,0.998497195568,1,1,3 1,1,1.72100649037,1,2,2 0,1,0.636346742152,1,3,1 1,0,2.79475652867,0,3,0 1,2,0.704413399048,1,0,3 0,0,0.634515835453,0,3,0 0,0,0.480732940494,0,3,0 0,1,1.45795997603,0,0,1 0,0,0.32577097455,1,2,0 1,1,0.954700399918,1,1,2 0,0,1.89661093528,1,1,0 1,1,1.24422738491,0,3,1 1,0,1.15348902026,1,1,0 0,1,0.600319445805,1,2,1 0,0,3.36935245025,0,2,0 1,1,0.894593210349,1,3,1 0,0,1.71863394494,0,2,0 1,0,0.597064730231,0,3,0 0,2,0.11239563287,1,1,1 1,0,0.329476718763,0,1,0 1,1,1.08593208788,0,3,1 1,2,0.465701532568,1,3,1 0,0,0.507857596656,0,0,0 1,2,2.37017669306,0,3,2 0,1,0.810287131815,1,3,1 0,1,0.866788835285,0,3,1 0,0,1.4774030197,0,2,0 0,0,2.62972675138,1,3,0 0,2,0.992563270638,1,3,1 0,0,1.25993960206,1,3,0 1,1,0.825887139486,1,1,2 0,0,1.71987279308,1,0,0 1,0,1.21442926286,1,2,0 1,2,0.796915978441,0,0,2 1,0,1.1789889156,0,2,0 0,1,0.480078680805,0,2,1 0,4,0.395824732021,1,3,1 1,1,0.294334112176,0,3,1 0,2,0.0299893386864,1,2,1 1,3,0.569088061127,1,3,2 0,1,0.907018062851,1,2,1 0,1,0.194346204071,1,1,1 0,2,0.848556761834,0,3,1 0,1,1.52440869603,0,2,1 1,0,0.246295230634,0,3,0 0,0,0.0532598067321,0,2,0 0,2,0.143165647321,0,3,0 0,0,1.12950790855,1,3,0 1,2,0.815519878816,0,0,2 0,1,0.998036777796,1,0,1 0,1,1.50512798281,0,0,1 1,0,0.43019702994,0,2,0 1,1,0.844466291667,0,3,1 1,1,1.03094262848,1,3,1 0,0,0.0396600132278,1,0,0 1,0,0.509124855819,1,1,0 0,0,1.55821389574,1,1,0 0,0,1.75113278707,0,0,0 1,1,0.375557825054,0,3,1 0,0,0.307790395495,0,1,0 1,0,0.0681202828575,0,1,0 1,1,0.180490954781,1,0,1 1,0,0.353211713417,1,3,0 1,1,1.81814026599,0,1,2 1,0,0.486381430468,1,1,0 0,0,0.775628666073,1,0,0 0,0,1.87727962088,0,0,0 0,3,0.71289995135,0,1,1 1,0,1.04174139508,1,3,0 0,1,0.695809113112,1,0,1 1,0,1.30553840625,0,2,0 1,0,1.64529324252,1,2,0 0,1,0.0577061950223,1,3,1 0,2,0.432929130585,1,2,1 1,1,0.0307420385365,1,1,1 0,0,0.000140894028503,1,0,0 0,0,1.29019670901,0,0,0 1,0,0.478856695875,1,1,0 0,2,0.267279668002,0,3,0 0,1,0.720205713532,1,0,1 0,2,0.151926275676,0,0,1 1,1,0.754797088993,0,3,1 0,0,1.6977976473,1,2,0 1,0,0.880732510824,1,1,0 0,0,0.100295906092,1,2,0 1,1,1.12871414301,0,2,1 1,0,0.466433847721,1,0,0 0,2,1.45840590283,0,0,1 1,1,0.574536399014,1,0,2 1,1,0.0363539657266,0,2,1 1,0,1.45798239856,0,2,0 0,0,2.41349559614,0,0,0 1,0,2.24624176918,1,3,0 1,1,1.62416806952,1,3,2 1,1,1.75841337054,1,0,3 1,1,1.11120647415,1,0,2 1,0,0.384956477252,0,3,0 0,1,1.85208612752,0,0,2 0,0,1.07560237212,0,3,0 1,1,1.13780863151,1,0,2 0,0,0.228410508739,1,1,0 1,0,1.67853255164,1,1,0 1,0,0.568834697594,0,3,0 0,1,0.143695251692,1,0,1 1,1,0.416983602926,1,0,2 1,1,3.35846720091,0,0,3 0,2,0.603154345794,1,1,1 0,1,0.0991121729204,1,3,1 0,1,0.064120799508,1,1,1 1,1,2.37841026858,1,3,2 0,2,1.42057143437,1,0,3 0,0,0.42501614142,1,2,0 0,2,0.291731113027,1,3,1 1,0,1.39169971349,0,1,0 1,0,0.961658821562,1,3,0 1,0,1.55104725507,0,3,0 0,0,0.0897708429817,0,0,0 0,1,0.635675547735,0,2,1 1,0,2.33317242892,0,1,0 0,2,0.479018133494,1,3,1 0,3,0.109784488486,0,1,1 0,0,0.944955236918,0,2,0 0,1,0.0186903955146,1,1,1 0,0,0.0823583455011,0,3,0 1,1,0.226595592639,0,1,1 0,0,0.799146401885,1,0,0 1,1,0.81835882892,1,0,2 0,0,0.0102188591031,1,0,0 1,2,0.572542270256,0,0,1 1,0,2.72095750071,0,1,0 1,1,1.43158525667,1,2,2 0,2,1.77744224176,0,1,2 0,2,1.42224646957,0,0,1 0,0,0.300325088985,1,0,0 1,3,0.0592175306251,1,1,2 1,0,0.531014562666,1,3,0 1,1,0.520780732417,1,2,1 0,0,6.0890992205,0,1,0 1,0,3.49031110233,1,3,0 1,0,0.498943290723,1,2,0 0,0,0.478743878819,0,1,0 1,2,0.452816733667,1,1,2 0,3,0.585976863464,1,2,1 1,0,1.20038435087,0,2,0 0,2,0.0159426097733,0,2,0 1,0,0.247840973663,1,1,0 1,3,0.428858751825,0,3,1 1,1,2.0756811603,0,2,2 0,0,2.26644796539,0,0,0 1,1,0.792113434729,1,2,1 0,0,0.686511841524,1,2,0 1,0,0.940503736094,0,2,0 0,0,1.81538911996,0,1,0 0,0,0.4005531836,1,1,0 1,1,2.15728045398,0,2,2 1,1,1.07197516754,1,1,2 1,0,0.573197678168,0,2,0 1,1,2.63393122458,1,3,2 1,3,1.0785573655,0,3,2 1,1,4.33414966159,1,2,3 0,1,0.851933439135,1,3,1 1,0,0.0951877553681,1,3,0 0,0,0.945079961353,1,1,0 0,1,2.21938725332,1,1,2 0,0,0.34666012056,1,0,0 0,0,1.72470220508,0,2,0 1,1,3.51532495925,0,0,3 0,1,0.111979313191,0,1,0 0,0,3.34305583306,1,2,0 0,3,2.06864464256,0,2,2 1,0,0.645389838369,0,1,0 0,0,0.896843351884,0,1,0 1,1,1.25847887104,0,2,1 1,0,0.798846428796,0,0,0 0,1,1.40839033395,1,0,2 1,1,0.728013669061,1,2,1 1,1,0.918283228749,1,2,1 1,0,1.11396214613,1,2,0 0,2,1.2790591962,0,2,1 0,0,0.710249386033,1,1,0 1,0,1.36960026213,0,2,0 1,0,1.90631181831,1,1,0 1,2,0.146373676554,1,3,1 0,0,1.81629583586,1,1,0 0,0,0.648361033259,1,2,0 1,0,0.637109032661,0,3,0 1,0,0.132668759151,1,0,0 1,1,0.376003430594,0,0,1 0,4,0.465946261528,0,0,1 1,1,0.492689503814,1,2,1 0,0,0.312450840371,1,2,0 1,1,0.58934752632,0,1,1 0,0,0.0323706351211,0,0,0 1,0,0.625509179527,0,0,0 1,1,1.82902144639,1,2,2 1,0,1.83542148429,0,2,0 1,1,1.99963461849,0,3,2 0,0,0.779601029101,0,0,0 1,2,1.27272651285,1,0,3 0,0,1.38794340762,1,0,0 0,1,0.143232045019,0,2,0 0,0,0.0838860962655,1,3,0 0,0,1.48049320196,0,2,0 0,0,1.02623720392,1,0,0 1,2,0.88046055888,0,1,2 0,1,1.81508992068,0,0,2 1,2,0.35107705876,1,3,1 0,3,0.0433660248527,0,0,1 0,3,0.0216372727663,1,0,1 1,0,0.182412525423,0,3,0 0,1,1.03558337157,1,0,1 0,1,0.453308332357,1,2,1 1,3,0.978724784351,1,1,3 1,0,0.233266909681,1,3,0 0,0,0.666864551186,1,2,0 0,0,2.03739324393,0,2,0 1,1,1.60117794699,1,1,2 1,3,0.731593700135,0,0,2 0,0,6.36877488837,1,3,0 0,0,0.172853398207,1,3,0 1,0,0.20996439824,0,3,0 0,0,2.61688195401,1,3,0 ================================================ FILE: ann_logistic_extra/logistic_predict.py ================================================ from __future__ import print_function, division from builtins import range # Note: you may need to update your version of future # sudo pip install -U future import numpy as np from process import get_binary_data X, Y, _, _ = get_binary_data() # randomly initialize weights D = X.shape[1] W = np.random.randn(D) b = 0 # bias term # make predictions def sigmoid(a): return 1 / (1 + np.exp(-a)) def forward(X, W, b): return sigmoid(X.dot(W) + b) P_Y_given_X = forward(X, W, b) predictions = np.round(P_Y_given_X) # calculate the accuracy def classification_rate(Y, P): return np.mean(Y == P) print("Score:", classification_rate(Y, predictions)) ================================================ FILE: ann_logistic_extra/logistic_softmax_train.py ================================================ from __future__ import print_function, division from builtins import range # Note: you may need to update your version of future # sudo pip install -U future import numpy as np import matplotlib.pyplot as plt from sklearn.utils import shuffle from process import get_data def y2indicator(y, K): N = len(y) ind = np.zeros((N, K)) for i in range(N): ind[i, y[i]] = 1 return ind Xtrain, Ytrain, Xtest, Ytest = get_data() D = Xtrain.shape[1] K = len(set(Ytrain) | set(Ytest)) # convert to indicator Ytrain_ind = y2indicator(Ytrain, K) Ytest_ind = y2indicator(Ytest, K) # randomly initialize weights W = np.random.randn(D, K) b = np.zeros(K) # make predictions def softmax(a): expA = np.exp(a) return expA / expA.sum(axis=1, keepdims=True) def forward(X, W, b): return softmax(X.dot(W) + b) def predict(P_Y_given_X): return np.argmax(P_Y_given_X, axis=1) # calculate the accuracy def classification_rate(Y, P): return np.mean(Y == P) def cross_entropy(Y, pY): return -np.sum(Y * np.log(pY)) / len(Y) # train loop train_costs = [] test_costs = [] learning_rate = 0.001 for i in range(10000): pYtrain = forward(Xtrain, W, b) pYtest = forward(Xtest, W, b) ctrain = cross_entropy(Ytrain_ind, pYtrain) ctest = cross_entropy(Ytest_ind, pYtest) train_costs.append(ctrain) test_costs.append(ctest) # gradient descent W -= learning_rate*Xtrain.T.dot(pYtrain - Ytrain_ind) b -= learning_rate*(pYtrain - Ytrain_ind).sum(axis=0) if i % 1000 == 0: print(i, ctrain, ctest) print("Final train classification_rate:", classification_rate(Ytrain, predict(pYtrain))) print("Final test classification_rate:", classification_rate(Ytest, predict(pYtest))) plt.plot(train_costs, label='train cost') plt.plot(test_costs, label='test cost') plt.legend() plt.show() ================================================ FILE: ann_logistic_extra/logistic_train.py ================================================ from __future__ import print_function, division from builtins import range # Note: you may need to update your version of future # sudo pip install -U future import numpy as np import matplotlib.pyplot as plt from sklearn.utils import shuffle from process import get_binary_data # get the data Xtrain, Ytrain, Xtest, Ytest = get_binary_data() # randomly initialize weights D = Xtrain.shape[1] W = np.random.randn(D) b = 0 # bias term # make predictions def sigmoid(a): return 1 / (1 + np.exp(-a)) def forward(X, W, b): return sigmoid(X.dot(W) + b) # calculate the accuracy def classification_rate(Y, P): return np.mean(Y == P) # cross entropy def cross_entropy(T, pY): return -np.mean(T*np.log(pY) + (1 - T)*np.log(1 - pY)) # train loop train_costs = [] test_costs = [] learning_rate = 0.001 for i in range(10000): pYtrain = forward(Xtrain, W, b) pYtest = forward(Xtest, W, b) ctrain = cross_entropy(Ytrain, pYtrain) ctest = cross_entropy(Ytest, pYtest) train_costs.append(ctrain) test_costs.append(ctest) # gradient descent W -= learning_rate*Xtrain.T.dot(pYtrain - Ytrain) b -= learning_rate*(pYtrain - Ytrain).sum() if i % 1000 == 0: print(i, ctrain, ctest) print("Final train classification_rate:", classification_rate(Ytrain, np.round(pYtrain))) print("Final test classification_rate:", classification_rate(Ytest, np.round(pYtest))) plt.plot(train_costs, label='train cost') plt.plot(test_costs, label='test cost') plt.legend() plt.show() ================================================ FILE: ann_logistic_extra/process.py ================================================ from __future__ import print_function, division from builtins import range # Note: you may need to update your version of future # sudo pip install -U future import numpy as np import pandas as pd import os # so scripts from other folders can import this file dir_path = os.path.abspath(os.path.dirname(os.path.realpath(__file__))) # normalize numerical columns # one-hot categorical columns def get_data(): df = pd.read_csv(dir_path + '/ecommerce_data.csv') # just in case you're curious what's in it # df.head() # easier to work with numpy array data = df.to_numpy() # shuffle it np.random.shuffle(data) # split features and labels X = data[:,:-1] Y = data[:,-1].astype(np.int32) # one-hot encode the categorical data # create a new matrix X2 with the correct number of columns N, D = X.shape X2 = np.zeros((N, D+3)) X2[:,0:(D-1)] = X[:,0:(D-1)] # non-categorical # one-hot for n in range(N): t = int(X[n,D-1]) X2[n,t+D-1] = 1 # method 2 # Z = np.zeros((N, 4)) # Z[np.arange(N), X[:,D-1].astype(np.int32)] = 1 # # assign: X2[:,-4:] = Z # assert(np.abs(X2[:,-4:] - Z).sum() < 1e-10) # assign X2 back to X, since we don't need original anymore X = X2 # split train and test Xtrain = X[:-100] Ytrain = Y[:-100] Xtest = X[-100:] Ytest = Y[-100:] # normalize columns 1 and 2 for i in (1, 2): m = Xtrain[:,i].mean() s = Xtrain[:,i].std() Xtrain[:,i] = (Xtrain[:,i] - m) / s Xtest[:,i] = (Xtest[:,i] - m) / s return Xtrain, Ytrain, Xtest, Ytest def get_binary_data(): # return only the data from the first 2 classes Xtrain, Ytrain, Xtest, Ytest = get_data() X2train = Xtrain[Ytrain <= 1] Y2train = Ytrain[Ytrain <= 1] X2test = Xtest[Ytest <= 1] Y2test = Ytest[Ytest <= 1] return X2train, Y2train, X2test, Y2test ================================================ FILE: bayesian_ml/1/Q.csv ================================================ -7.4867e-19,5.6315e-19,1.973e-19,-6.7717e-19,2.373e-18,-1.4162e-19,-5.6552e-19,-1.2146e-19,7.3088e-19,5.5656e-19,1.2218e-18,1.0673e-18,3.0638e-18,1.7933e-18,-1.5816e-19 -6.011e-18,4.4018e-18,4.4044e-18,-6.3448e-18,1.94e-17,-1.7822e-18,-4.086e-18,1.1235e-18,5.5901e-18,4.6042e-18,8.9926e-18,8.3237e-18,2.6068e-17,1.5782e-17,-1.501e-18 -5.5492e-18,3.9852e-18,5.3138e-18,-5.9229e-18,1.9185e-17,-1.1093e-18,-3.3366e-18,-8.1893e-19,3.7768e-18,2.4595e-18,8.6731e-18,8.3354e-18,2.3839e-17,1.4832e-17,-6.7029e-20 -6.583e-18,3.9562e-18,4.6542e-18,-8.8559e-18,2.2705e-17,-2.3685e-18,-4.0349e-18,-2.6403e-18,6.2138e-18,5.6977e-18,1.0569e-17,9.7509e-18,2.853e-17,1.7109e-17,-1.7819e-18 -4.8539e-18,5.8247e-18,4.1718e-18,-6.5081e-18,1.8419e-17,-5.2626e-19,-4.8044e-18,-6.2812e-19,6.141e-18,3.5582e-18,8.9691e-18,9.1986e-18,2.4707e-17,1.563e-17,-1.5153e-18 -3.5854e-18,2.3606e-18,4.5114e-18,-4.9643e-18,1.3842e-17,-6.5907e-19,-2.8941e-18,-4.7605e-19,6.2247e-18,3.8328e-18,7.1909e-18,7.6724e-18,1.9494e-17,1.1422e-17,-1.2724e-18 -1.4039e-18,8.9214e-19,1.291e-18,-1.5682e-18,5.3071e-18,8.1127e-23,-1.161e-18,-4.9599e-19,1.7598e-18,1.2958e-18,2.5956e-18,2.3683e-18,7.2358e-18,4.2655e-18,-3.6548e-19 -8.5218e-18,8.5522e-18,4.3194e-18,-8.4601e-18,2.6117e-17,-6.0864e-19,-6.3716e-18,-2.0189e-18,8.9574e-18,7.1407e-18,1.2315e-17,8.913e-18,3.3396e-17,1.9457e-17,-1.142e-18 -9.7639e-18,8.021e-18,8.6407e-18,-9.2142e-18,3.1929e-17,-1.7551e-18,-5.5628e-18,-1.6311e-18,7.3616e-18,7.4003e-18,1.5293e-17,1.5608e-17,3.8518e-17,2.7512e-17,-2.8847e-18 -1.2744e-18,1.2661e-18,1.2556e-18,-1.4812e-18,4.9142e-18,-1.6944e-19,-7.32e-19,-3.3056e-19,1.5951e-18,1.0363e-18,2.4082e-18,2.0966e-18,6.1122e-18,4.1287e-18,-1.5852e-19 -6.0466e-18,5.6187e-18,8.087e-18,-7.2409e-18,2.62e-17,-2.5222e-18,-6.13e-18,-2.9832e-18,1.31e-17,7.866e-18,1.5546e-17,1.0797e-17,3.5016e-17,2.1604e-17,-1.9611e-18 -1.17e-17,6.4707e-18,5.5805e-18,-1.0522e-17,2.6971e-17,-1.7895e-19,-5.9102e-18,-6.0565e-19,9.2093e-18,4.9204e-18,1.4625e-17,1.4817e-17,3.5127e-17,2.5327e-17,-2.1979e-18 -6.9103e-19,4.3463e-19,5.4274e-19,-8.8561e-19,2.5707e-18,-1.9468e-19,-4.6275e-19,-1.576e-19,6.161e-19,4.676e-19,1.0759e-18,8.5213e-19,3.1821e-18,1.769e-18,-2.4132e-20 -4.0365e-18,3.2797e-18,2.5166e-18,-5.2998e-18,1.4414e-17,6.5557e-19,-4.0213e-18,-8.4823e-19,4.3092e-18,3.7896e-18,7.7954e-18,7.4451e-18,2.0082e-17,1.2891e-17,-1.3899e-18 -8.2524e-18,4.5777e-18,7.0009e-18,-9.3984e-18,2.5118e-17,-1.8716e-18,-4.3765e-18,-1.0959e-18,7.6141e-18,6.2938e-18,1.2644e-17,8.0634e-18,3.3784e-17,1.9519e-17,-9.6456e-19 -5.8104e-18,6.2973e-18,7.8161e-18,-8.5119e-18,2.5462e-17,-3.1688e-20,-5.6616e-18,-1.7517e-18,6.2827e-18,6.1381e-18,1.2008e-17,8.9887e-18,3.2988e-17,1.9922e-17,-2.5239e-18 -8.8931e-18,8.3657e-18,6.6394e-18,-8.7401e-18,2.6354e-17,-7.5187e-19,-5.6616e-18,-2.2361e-18,7.7238e-18,8.2954e-18,1.3295e-17,1.3675e-17,3.1326e-17,2.3226e-17,-2.6304e-18 -6.3602e-18,4.8369e-18,2.4537e-18,-2.2582e-18,1.6375e-17,1.2161e-19,-4.0497e-18,-2.5718e-18,8.129e-18,4.004e-18,7.6075e-18,6.2324e-18,2.49e-17,1.4367e-17,-5.7086e-19 -5.4728e-18,3.7045e-18,6.4009e-18,-6.9563e-18,1.9124e-17,-7.9748e-19,-3.7507e-18,-1.13e-18,5.5516e-18,3.3933e-18,8.2959e-18,8.7071e-18,2.4927e-17,1.4197e-17,-4.0817e-19 -3.1113e-18,2.6183e-18,3.2548e-18,-4.1522e-18,1.2249e-17,-5.3486e-19,-2.1024e-18,1.3337e-19,2.7854e-18,3.6371e-18,6.0933e-18,5.9073e-18,1.4433e-17,9.33e-18,-1.3596e-18 -5.5648e-18,2.4347e-18,4.7689e-18,-3.9755e-18,1.9524e-17,-2.0925e-18,-3.6363e-18,-4.0473e-19,6.2775e-18,3.9464e-18,8.6585e-18,8.1866e-18,2.4051e-17,1.4696e-17,-5.3165e-19 -1.6568e-19,1.6894e-19,2.3257e-19,-2.9092e-19,6.6811e-19,-9.2e-21,-1.19e-19,-1.0538e-20,1.5553e-19,2.2983e-19,3.4635e-19,3.013e-19,8.5785e-19,5.5171e-19,-2.9391e-20 -8.0709e-18,5.3261e-18,7.4744e-18,-6.7263e-18,2.0751e-17,2.1036e-19,-5.4563e-18,-3.6482e-19,1.0639e-17,6.109e-18,1.1437e-17,9.0511e-18,3.1213e-17,1.9498e-17,-1.9533e-18 -9.7557e-18,8.1887e-18,6.4029e-18,-7.5209e-18,2.6108e-17,-1.9721e-18,-6.5026e-18,-3.232e-18,1.1508e-17,6.8542e-18,1.3334e-17,1.0599e-17,3.6994e-17,2.1498e-17,-1.2942e-18 -9.4016e-18,9.503e-18,5.0208e-18,-8.5922e-18,2.5033e-17,-1.6837e-18,-5.8412e-18,2.7844e-19,1.2177e-17,5.7217e-18,1.4385e-17,9.9386e-18,3.4004e-17,2.155e-17,-1.8267e-18 -3.0226e-19,1.9717e-19,1.955e-19,-2.7872e-19,1.0685e-18,-3.0572e-20,-2.3457e-19,-1.031e-19,4.1522e-19,2.4631e-19,5.5285e-19,4.3941e-19,1.5418e-18,9.076e-19,-2.3226e-21 -7.9695e-18,6.0614e-18,1.0013e-17,-9.945e-18,3.0856e-17,-8.3311e-19,-5.6679e-18,-2.8781e-18,1.0762e-17,7.2886e-18,1.519e-17,1.4133e-17,3.8734e-17,2.3253e-17,-2.1544e-18 -7.5238e-19,6.6841e-19,7.9005e-19,-1.2413e-18,3.2491e-18,-9.0119e-20,-7.8506e-19,5.7969e-20,8.9031e-19,9.3871e-19,1.488e-18,1.1394e-18,3.8504e-18,2.5809e-18,-2.853e-19 -7.3665e-18,6.5073e-18,7.3888e-18,-8.8375e-18,2.7931e-17,-2.3988e-18,-6.2852e-18,-7.1268e-19,1.1131e-17,6.6605e-18,1.2079e-17,1.3042e-17,3.6386e-17,2.1699e-17,-7.6382e-19 -5.1186e-18,5.4054e-18,3.1762e-18,-3.3917e-18,1.6205e-17,8.8137e-19,-3.808e-18,-2.611e-18,7.856e-18,4.3272e-18,7.7098e-18,7.2169e-18,2.3605e-17,1.4044e-17,-9.7976e-19 -1.7855e-19,1.5614e-19,9.3929e-20,-1.5899e-19,5.5801e-19,-8.6565e-21,-7.2631e-20,-1.4526e-20,2.1996e-19,1.004e-19,2.7594e-19,2.2051e-19,7.342e-19,4.0715e-19,-2.1427e-20 -9.1687e-19,5.9531e-19,1.0908e-18,-1.671e-18,4.4768e-18,-3.7063e-19,-4.5806e-19,-7.6409e-20,6.859e-19,1.0078e-18,2.1513e-18,1.9582e-18,5.5499e-18,3.3266e-18,-1.4692e-19 -6.4241e-18,4.6888e-18,3.7933e-18,-5.0429e-18,1.8474e-17,-9.317e-20,-4.4275e-18,-1.1298e-18,5.9189e-18,4.8484e-18,9.2033e-18,8.4812e-18,2.5681e-17,1.7036e-17,-1.5144e-18 -7.6229e-18,5.6977e-18,5.3822e-18,-6.9519e-18,2.2989e-17,-1.5386e-18,-4.0534e-18,-7.4967e-19,1.0114e-17,7.9531e-18,1.1145e-17,8.6446e-18,3.2806e-17,2.021e-17,-1.2672e-18 -3.4401e-19,2.8835e-19,2.6754e-19,-3.4559e-19,1.2342e-18,-9.3413e-20,-2.8662e-19,-2.5366e-20,3.3675e-19,2.3142e-19,6.0428e-19,6.1936e-19,1.5875e-18,9.2196e-19,-1.3078e-19 -1.8568e-18,1.947e-18,7.4171e-19,-1.3479e-18,5.0503e-18,-1.2942e-19,-1.1902e-18,-2.9588e-19,2.2434e-18,1.7638e-18,2.7028e-18,2.4343e-18,7.1509e-18,4.4264e-18,-2.6336e-19 -2.628e-18,1.5108e-18,1.9317e-18,-3.2226e-18,8.1468e-18,-4.4557e-19,-1.819e-18,-4.941e-19,2.1306e-18,1.9153e-18,3.1653e-18,3.7328e-18,9.5465e-18,6.0664e-18,-6.0891e-19 -7.1712e-18,5.177e-18,5.4347e-18,-8.5082e-18,2.2077e-17,-1.1687e-18,-4.3743e-18,-1.4563e-20,9.265e-18,7.2652e-18,1.1607e-17,9.5899e-18,2.9107e-17,2.0585e-17,-1.8832e-18 -8.4372e-18,6.2943e-18,9.1348e-18,-9.626e-18,2.7854e-17,-3.9201e-19,-5.2248e-18,-2.3334e-18,6.7699e-18,5.3806e-18,1.1857e-17,1.1552e-17,3.2906e-17,1.9219e-17,-2.0727e-18 -5.6143e-18,4.9264e-18,4.0871e-18,-4.7651e-18,1.8423e-17,-3.6894e-19,-4.6373e-18,-9.9158e-19,8.0117e-18,4.6903e-18,9.5468e-18,7.3021e-18,2.6782e-17,1.5236e-17,-7.0794e-19 -8.9782e-18,4.9943e-18,6.8061e-18,-1.0214e-17,2.7158e-17,-1.0415e-18,-5.6317e-18,-8.8953e-19,8.0052e-18,6.3716e-18,1.4146e-17,1.4546e-17,3.3497e-17,2.5973e-17,-1.2204e-18 2.6742e-06,-3.9108e-06,-8.3876e-06,1.041e-05,4.11e-06,1.1774e-05,-2.2292e-06,7.0048e-06,-1.0741e-05,7.4552e-06,1.7807e-05,1.5329e-06,1.2606e-05,1.596e-05,5.9898e-06 1.6649e-05,-2.4348e-05,-5.2219e-05,6.4811e-05,2.5588e-05,7.33e-05,-1.3878e-05,4.3611e-05,-6.6873e-05,4.6415e-05,0.00011086,9.5438e-06,7.848e-05,9.9362e-05,3.7291e-05 -1.8994e-18,2.0585e-18,1.9547e-18,-2.2397e-18,9.1769e-18,-7.1572e-19,-1.6663e-18,-9.6119e-19,3.4165e-18,2.069e-18,4.2013e-18,4.1718e-18,1.0752e-17,7.3523e-18,-4.7849e-19 -6.7659e-18,6.0993e-18,4.8304e-18,-6.3006e-18,2.2213e-17,4.4344e-19,-4.3298e-18,-8.2245e-19,7.8443e-18,7.0471e-18,1.0383e-17,7.9354e-18,3.1485e-17,1.7833e-17,-1.9253e-18 -4.7512e-18,5.6858e-18,3.9184e-18,-5.427e-18,1.9438e-17,-1.653e-18,-3.4258e-18,-1.7144e-18,3.8818e-18,5.0842e-18,8.1706e-18,7.8706e-18,2.5202e-17,1.4741e-17,-1.2817e-18 -3.3212e-18,1.1474e-18,1.9358e-18,-3.0037e-18,9.6331e-18,-8.4001e-19,-2.1879e-18,-4.0259e-19,3.4389e-18,2.1535e-18,4.245e-18,4.2825e-18,1.228e-17,7.5649e-18,-6.4102e-19 -2.9699e-18,1.56e-18,2.827e-18,-2.8602e-18,9.3821e-18,4.7582e-19,-2.1342e-18,-7.8143e-21,2.715e-18,2.039e-18,4.1308e-18,3.9274e-18,1.1371e-17,7.477e-18,-3.7638e-19 -6.2843e-18,6.2969e-18,4.78e-18,-7.6064e-18,2.2227e-17,-3.0409e-19,-4.5653e-18,-1.429e-18,9.034e-18,6.748e-18,1.1373e-17,9.1603e-18,2.9611e-17,1.7497e-17,-1.3087e-18 -7.9674e-18,7.5603e-18,7.8196e-18,-9.6804e-18,2.7418e-17,-1.3495e-18,-6.8006e-18,-2.0382e-18,1.2934e-17,8.2375e-18,1.3833e-17,1.1695e-17,3.4047e-17,1.9915e-17,-6.0819e-19 -6.3578e-19,4.8709e-19,7.6807e-19,-7.3746e-19,2.5702e-18,-3.6972e-19,-4.5962e-19,9.4102e-20,8.9146e-19,6.7732e-19,1.1939e-18,8.9589e-19,3.3392e-18,2.1373e-18,-1.408e-19 -3.1544e-18,3.123e-18,2.6608e-18,-4.7286e-18,1.3265e-17,-6.8872e-20,-3.0776e-18,-2.6737e-19,3.9299e-18,2.9514e-18,6.1965e-18,5.3772e-18,1.5413e-17,9.9149e-18,-1.0193e-18 -8.6787e-18,6.4853e-18,7.7946e-18,-8.2065e-18,2.5559e-17,-1.4277e-18,-3.8277e-18,-3.1358e-19,8.8797e-18,8.1033e-18,1.3607e-17,1.2367e-17,3.1997e-17,2.1245e-17,-1.2535e-18 -7.6224e-18,1.0242e-17,7.6707e-18,-6.8145e-18,2.8599e-17,-1.6883e-18,-6.0616e-18,-3.9097e-18,9.7391e-18,6.3037e-18,1.2661e-17,1.4045e-17,3.9981e-17,2.6453e-17,-2.3571e-18 -7.2868e-18,6.5039e-18,6.3996e-18,-7.9398e-18,3.2759e-17,6.1023e-19,-7.2255e-18,-3.9272e-18,1.2008e-17,6.9312e-18,1.5032e-17,1.51e-17,4.0119e-17,2.6737e-17,-3.3262e-18 -4.0425e-18,4.3115e-18,2.6734e-18,-4.8384e-18,1.386e-17,-8.7521e-19,-2.456e-18,-1.3359e-18,5.4004e-18,2.9597e-18,6.6391e-18,5.92e-18,1.8596e-17,1.1114e-17,-4.4445e-19 -4.4216e-18,3.2291e-18,1.5271e-18,-3.5975e-18,1.3635e-17,-8.3325e-20,-2.7205e-18,-1.4131e-18,5.6898e-18,4.0095e-18,7.4963e-18,6.8818e-18,1.8148e-17,1.1686e-17,-5.023e-19 -3.1465e-18,2.7346e-18,3.4786e-18,-4.1496e-18,1.1374e-17,-1.5511e-19,-2.605e-18,-6.8765e-19,3.8746e-18,3.1941e-18,6.2502e-18,3.5983e-18,1.5197e-17,8.0763e-18,-4.539e-19 -4.6141e-18,1.4846e-18,4.9131e-18,-5.2146e-18,1.5235e-17,-3.2172e-19,-2.1165e-18,-1.37e-18,4.2322e-18,3.5789e-18,7.5732e-18,6.7182e-18,1.8684e-17,1.1998e-17,-1.0667e-18 -8.8585e-18,6.8642e-18,5.9722e-18,-9.5771e-18,2.5803e-17,-1.5152e-19,-6.0697e-18,-9.3551e-19,9.1064e-18,7.7482e-18,1.2058e-17,1.1341e-17,3.2675e-17,1.9182e-17,-1.5826e-18 -7.1299e-18,8.292e-18,5.1338e-18,-8.2061e-18,2.4985e-17,-1.567e-19,-4.3796e-18,-1.7807e-18,6.1613e-18,7.4217e-18,1.2353e-17,1.0756e-17,3.3648e-17,1.9956e-17,-1.2352e-18 -1.0828e-17,8.0402e-18,8.0811e-18,-1.3406e-17,3.4545e-17,-9.7561e-20,-6.1218e-18,-3.643e-18,1.0333e-17,7.1302e-18,1.5749e-17,1.3164e-17,4.3321e-17,2.6609e-17,-8.1487e-19 6.4694e-06,-9.4603e-06,-1.0078e-05,7.7447e-06,-5.5471e-06,1.4203e-05,1.3504e-05,3.1463e-06,-7.1776e-06,-8.8839e-06,-9.1686e-06,-3.1624e-06,6.9852e-06,-3.5731e-06,2.2555e-05 2.8609e-05,-4.1835e-05,-4.4569e-05,3.4249e-05,-2.4531e-05,6.2809e-05,5.9716e-05,1.3914e-05,-3.1741e-05,-3.9287e-05,-4.0545e-05,-1.3985e-05,3.089e-05,-1.5801e-05,9.9745e-05 4.888e-06,-7.1478e-06,-7.6148e-06,5.8516e-06,-4.1912e-06,1.0731e-05,1.0203e-05,2.3772e-06,-5.4231e-06,-6.7123e-06,-6.9273e-06,-2.3893e-06,5.2777e-06,-2.6997e-06,1.7042e-05 -1.6092e-18,1.2223e-18,1.5229e-18,-1.3892e-18,5.4861e-18,1.6348e-19,-8.7242e-19,-3.5358e-19,1.9845e-18,1.0677e-18,2.4753e-18,1.7891e-18,7.5554e-18,3.8181e-18,-4.503e-19 -3.3041e-18,2.1427e-18,2.4793e-18,-2.4913e-18,1.0987e-17,1.0585e-19,-1.8949e-18,1.9877e-19,3.7746e-18,2.4294e-18,5.0455e-18,3.9981e-18,1.4454e-17,8.4402e-18,-7.775e-19 -7.0684e-18,4.3143e-18,8.6404e-18,-9.1849e-18,2.7604e-17,-2.5187e-18,-7.829e-18,-2.2718e-18,1.3329e-17,8.2034e-18,1.3999e-17,1.1174e-17,3.3428e-17,2.0334e-17,-3.2371e-18 -2.1551e-06,-8.378e-06,-4.5739e-05,1.9506e-05,4.3006e-06,5.3625e-05,-5.0767e-06,2.3797e-05,-2.3369e-05,1.1366e-07,8.4292e-05,-3.8914e-05,-3.005e-05,4.6631e-05,1.2869e-05 1.9713e-05,-5.2561e-05,-0.0001356,0.00011115,4.566e-05,0.00019023,-1.7383e-05,7.7408e-05,-0.00014171,2.0583e-05,0.00031239,-2.9313e-05,9.2688e-05,0.00017932,8.866e-05 5.9989e-05,-0.00010983,-0.00015249,0.00019054,9.635e-05,0.00029193,3.9397e-07,5.9761e-05,-0.00031059,2.7356e-06,0.00049016,0.00012992,0.00044133,0.00020208,0.00020924 5.6053e-05,-8.3478e-05,-6.7279e-05,8.9638e-05,6.7749e-05,0.00012999,9.6288e-05,-3.3406e-05,-0.00020448,-0.00010109,0.00019692,5.4193e-05,0.00031791,6.6772e-05,0.00022575 3.6807e-05,-7.8617e-05,-0.00010387,0.00012643,9.3715e-05,5.1959e-05,0.00017023,6.9351e-05,-6.1543e-05,-0.00021954,6.095e-05,-0.00021287,4.0036e-05,7.3258e-05,0.00019928 6.8734e-06,-5.3957e-05,-9.4628e-05,0.00012633,5.4401e-05,0.00010279,7.664e-05,0.00010068,6.5391e-06,-0.0001141,5.4569e-05,-0.0002037,1.5638e-05,4.1766e-05,9.9944e-05 -8.5956e-07,-3.0861e-06,-6.9614e-06,1.1706e-05,3.7293e-06,1.1453e-05,3.0828e-07,1.5003e-05,5.6551e-06,-7.5721e-06,5.3779e-06,-1.5065e-05,-4.8293e-06,5.1222e-06,1.9137e-06 3.5295e-05,-4.0209e-05,-2.9711e-05,0.00014926,-1.6098e-05,-2.3494e-05,4.1101e-05,-6.6314e-05,-5.1053e-05,-0.00018861,3.6144e-05,-9.1797e-05,1.1123e-06,5.6759e-05,8.7077e-05 3.7641e-05,-3.8615e-05,-2.5589e-05,0.00011406,-1.4862e-05,-6.0409e-06,3.7926e-05,-6.6041e-05,-5.2377e-05,-0.00016497,1.522e-05,-7.9934e-05,1.9817e-05,2.9949e-05,7.9821e-05 2.0833e-05,-1.7388e-05,-3.7037e-05,4.4289e-05,-2.7201e-05,4.6729e-05,4.8587e-05,-1.8031e-05,-4.0012e-05,-0.00013744,-2.3535e-05,-2.9109e-06,3.6024e-05,-3.9255e-05,-6.0973e-05 2.1625e-05,-1.8027e-05,-3.9359e-05,4.6513e-05,-2.8922e-05,4.9671e-05,5.1499e-05,-1.8224e-05,-4.1951e-05,-0.00014513,-2.4885e-05,-2.1174e-06,3.7741e-05,-4.1805e-05,-6.6433e-05 -6.2415e-18,4.5474e-18,5.0909e-18,-7.5057e-18,2.298e-17,-4.0389e-19,-4.6354e-18,-1.2713e-18,8.3293e-18,4.0202e-18,1.0501e-17,7.6003e-18,2.8137e-17,1.831e-17,-1.9473e-18 -3.4319e-18,2.077e-18,2.8904e-18,-2.463e-18,9.9222e-18,-7.7195e-19,-2.083e-18,-9.8393e-19,3.1913e-18,2.4886e-18,4.9975e-18,4.3545e-18,1.2986e-17,7.8974e-18,-4.0729e-19 -2.9183e-18,2.4051e-18,2.8226e-18,-2.3766e-18,9.9352e-18,-1.0158e-19,-2.156e-18,4.3101e-19,3.2521e-18,2.2285e-18,4.2611e-18,4.1291e-18,1.209e-17,7.5939e-18,-5.6952e-19 -3.7494e-18,2.4643e-18,4.3757e-18,-5.0826e-18,1.4431e-17,-1.0053e-18,-2.7093e-18,-1.4038e-18,6.0738e-18,3.5464e-18,6.3066e-18,6.6156e-18,1.828e-17,1.118e-17,-6.1964e-19 -5.3215e-18,3.5663e-18,3.5087e-18,-4.2389e-18,1.7043e-17,-4.1235e-19,-2.3153e-18,-1.6167e-18,5.9134e-18,3.2008e-18,8.9973e-18,7.6483e-18,2.4141e-17,1.4903e-17,-1.2704e-18 -8.7151e-19,7.6823e-19,1.211e-18,-1.187e-18,4.1537e-18,6.6014e-20,-8.8294e-19,-6.4227e-19,9.6003e-19,8.7648e-19,1.7563e-18,1.8387e-18,4.903e-18,3.202e-18,-1.429e-19 -1.5918e-18,1.3528e-18,2.6789e-19,-1.4177e-18,4.356e-18,8.7318e-20,-6.8501e-19,-1.6034e-19,2.2792e-18,9.75e-19,1.9844e-18,1.5875e-18,5.9237e-18,3.2288e-18,6.6258e-20 -2.3099e-18,1.2181e-18,1.8501e-18,-2.3671e-18,7.5468e-18,-3.5792e-19,-1.5001e-18,-3.3773e-19,2.5236e-18,1.8185e-18,3.7081e-18,3.7768e-18,9.5708e-18,6.5458e-18,-4.149e-19 -1.2498e-18,8.243e-19,8.2959e-19,-1.1563e-18,3.653e-18,-1.0448e-19,-4.8433e-19,-1.4448e-19,1.3926e-18,1.0461e-18,1.6666e-18,1.8868e-18,4.3182e-18,2.7665e-18,-2.5084e-19 -8.1551e-19,8.3201e-19,8.3968e-19,-1.0152e-18,3.4141e-18,-2.3319e-19,-6.5658e-19,8.6422e-21,1.0061e-18,8.9211e-19,1.3886e-18,1.1027e-18,4.1348e-18,2.3607e-18,-1.9545e-19 -1.8176e-18,2.2603e-18,1.2185e-18,-2.1019e-18,6.428e-18,-3.1747e-19,-1.5121e-18,-2.5807e-19,1.648e-18,1.8698e-18,2.7467e-18,2.5902e-18,7.9883e-18,5.11e-18,-6.0254e-19 3.6894e-05,-5.3099e-05,-5.807e-05,3.9376e-05,-3.5624e-05,8.5327e-05,7.5306e-05,2.3531e-05,-5.1719e-05,-4.4491e-05,-6.4021e-05,-2.2862e-05,5.0988e-05,-2.1447e-05,0.00011642 6.3653e-05,-8.6375e-05,-0.00010548,3.6932e-05,-8.7901e-05,0.00017682,0.00012001,7.8439e-05,-0.00016028,-3.819e-05,-0.00018647,-6.7156e-05,0.00016199,-4.2224e-05,0.00011888 5.2341e-05,-5.9961e-05,-8.1962e-05,5.4645e-06,-6.8719e-05,0.00010304,9.4559e-05,5.1249e-05,-0.00014234,-2.2382e-05,-0.00015889,-5.01e-05,0.00013684,-2.1249e-05,8.6391e-05 0.00011963,-6.358e-05,-9.2838e-05,5.3614e-05,-0.00011075,1.5646e-05,0.00016273,-5.1569e-05,-0.00018009,-2.0207e-05,-5.5806e-05,-6.5297e-05,0.00023916,4.8959e-05,0.00032171 0.00030281,-0.00016815,-0.00012329,0.00019493,-0.00022158,0.00018734,0.00019801,-0.0001992,-0.00052077,0.00015213,9.1006e-05,-0.00036796,0.00066034,0.00025523,0.00092973 0.00029452,-0.00020923,-0.00012844,0.00031789,-0.00020667,0.00035123,-7.8173e-05,-0.0001872,-0.00062707,0.00021755,0.00049991,-0.0005273,0.00054541,0.00033615,0.00086209 0.00022643,-0.00016856,-0.00020185,0.00032198,1.1193e-05,0.00044852,-0.00019369,2.1843e-05,-0.00056453,0.00025422,0.00087188,-0.00030941,0.00050832,0.00036622,0.00032497 0.0001807,-0.00017614,-0.00029351,0.00043024,0.00016365,0.00046536,4.2203e-06,9.4897e-05,-0.00069159,0.00022598,0.0009191,-0.0001182,0.00040247,0.0003287,0.00027211 0.00015643,-0.00018372,-0.00061893,0.00075562,0.00051469,0.00079526,-0.00017425,0.00039428,-0.00073848,-3.3423e-05,0.0015909,-0.00014926,0.00043693,0.00055696,0.00044277 0.00019338,-0.00015797,-0.00073611,0.00094681,0.00065199,0.0005495,9.5064e-05,0.0004938,-0.00062624,-0.00042104,0.00087914,-0.00089808,-3.4636e-05,0.00076066,0.00049885 0.00025636,-9.2508e-05,-0.00084423,0.0010709,0.00064502,0.00016521,0.00083431,0.00066654,-0.00051644,-0.00021899,0.00029204,-0.0012965,0.00035466,0.001093,0.00096927 0.00017942,-5.3088e-05,-0.00073935,0.0012022,0.00054855,-6.5127e-05,0.00096535,0.00028323,-0.00081561,-0.00023706,6.5678e-05,-0.0012941,0.0014011,0.0013944,0.0011095 0.00015237,-0.0002487,-0.00078349,0.0013391,0.00030434,-0.00086917,0.0011535,-0.00010794,-0.0010221,-3.411e-05,-0.00010508,-0.00095555,0.0020501,0.001542,0.00057684 0.00035116,-0.00083136,-0.00095569,0.0017418,-0.00012964,-0.0011893,0.0017113,-0.00085749,-0.0016361,-0.0012531,-0.00019795,-0.00073927,0.0022203,0.0012508,0.0002592 0.00033875,-0.0014209,-0.00093172,0.0019006,-0.00040237,-0.0016016,0.0017627,-0.0015243,-0.0025059,-0.0021761,-0.00025795,-5.0244e-05,0.0023328,-0.00072507,-0.00075474 0.00018802,-0.0014682,-0.000938,0.0017223,-0.00073612,-0.0012727,0.0011657,-0.001488,-0.0026128,-0.0020278,-0.00065082,0.00036123,0.0022512,-0.002331,-0.0014574 8.0594e-05,-0.0010329,-0.00034881,0.0010434,-0.00054378,-0.00044655,0.0002624,-0.00068336,-0.0016815,-0.0010891,-0.00027177,-6.0275e-05,0.00093655,-0.0022756,-0.00095685 6.976e-05,-0.00064312,-0.00014451,0.00067582,-0.00025888,0.00014533,-6.138e-05,-0.00018741,-0.00092754,-0.00027239,-4.791e-05,-0.00029366,0.0003732,-0.0013596,-0.00045546 3.9186e-05,-0.00020955,-1.6895e-05,0.00021749,-0.00010479,7.886e-05,-5.5629e-05,1.9895e-06,-0.00023149,-1.0188e-05,-6.1895e-05,-0.00013117,-2.633e-05,-0.00041684,-2.7739e-05 1.0238e-06,-2.2948e-05,-1.2864e-05,-7.589e-07,-2.8592e-05,-5.9665e-06,-3.5396e-05,-1.7895e-05,3.7857e-06,3.1747e-05,-6.8773e-05,1.7838e-05,-3.0502e-05,-5.4271e-05,3.191e-05 -1.0212e-17,8.0372e-18,7.0542e-18,-8.6655e-18,2.5997e-17,-1.705e-18,-8.0952e-18,-1.2917e-18,1.0839e-17,7.7418e-18,1.2707e-17,1.1727e-17,3.8551e-17,2.4686e-17,-1.4662e-18 -7.1217e-18,7.1888e-18,5.7462e-18,-1.2148e-17,3.4625e-17,-2.3485e-18,-8.0868e-18,-4.344e-18,8.7101e-18,5.7201e-18,1.509e-17,1.4382e-17,3.7797e-17,2.7449e-17,-2.6346e-18 -5.6664e-19,2.771e-19,5.5923e-19,-5.4101e-19,1.7642e-18,-7.9974e-20,-3.9429e-19,-1.4078e-19,7.6521e-19,3.558e-19,7.8111e-19,7.973e-19,2.3689e-18,1.423e-18,-1.0065e-19 -3.4383e-18,3.0131e-18,2.6805e-18,-4.566e-18,1.1926e-17,-5.1553e-19,-2.7797e-18,2.814e-19,3.0325e-18,4.3499e-18,6.0276e-18,4.4463e-18,1.4374e-17,1.0141e-17,-1.4071e-18 -1.0454e-17,9.2939e-18,7.3226e-18,-1.1618e-17,3.3969e-17,-4.9554e-19,-6.0597e-18,-2.0361e-18,5.8258e-18,7.5437e-18,1.4414e-17,1.428e-17,3.8826e-17,2.8613e-17,-3.2294e-18 1.3212e-05,8.189e-06,-2.4199e-05,-4.3373e-05,-1.7874e-05,-3.9195e-05,1.9802e-05,3.1183e-05,-2.167e-05,1.4399e-05,6.0696e-05,-1.2256e-06,9.6824e-06,-2.1973e-05,8.7636e-05 0.00012814,-0.00015919,-9.0966e-05,-6.8676e-05,-7.0446e-05,-0.00010178,0.00025792,0.00024233,-0.00011777,-5.0365e-05,3.6554e-05,0.00022996,3.0802e-06,0.00010748,4.0631e-05 0.00029363,-0.00034803,-0.00030648,-7.4845e-05,-0.00022267,-0.00020745,0.00065176,0.00044329,0.00015077,-0.00017204,9.0844e-05,0.00073671,0.00011047,0.00030006,0.00015506 0.00047304,-0.00042199,-0.00050335,-0.00011745,-0.00030902,-0.00026247,0.0008902,0.00057202,0.00011336,-0.00014579,0.00015828,0.00041242,-5.8771e-05,0.0004662,0.0011392 0.00094081,-0.00082823,-0.00091456,-0.00017665,-0.00067324,-6.9481e-05,0.0014723,0.00095643,-0.00021654,-0.0005265,0.0003687,7.3011e-05,-8.4263e-05,0.00050523,0.0021704 0.0018069,-0.0012855,-0.0014291,-0.00023041,-0.0010626,-0.00031402,0.0020297,0.0007327,-0.00058312,-0.00042151,0.00066308,-0.00048703,-0.00018596,0.00080354,0.0040565 0.0023267,-0.0012368,-0.0014829,0.00022838,-0.0014978,4.3823e-05,0.0012964,0.00027406,-0.0019783,0.00038856,0.00064882,-0.0020255,0.00050708,0.0018826,0.0054172 0.0029102,-0.0013941,-0.0011719,0.0010556,-0.0017966,0.00057604,0.00061714,-0.00021833,-0.0047417,0.001376,0.0026289,-0.0029033,0.00027718,0.0032092,0.0065525 0.0031399,-0.0016551,-0.0011877,0.0031681,-0.00091266,0.0019416,-0.00087348,-0.00094547,-0.0076459,0.0020901,0.0084024,-0.002448,0.0011506,0.0048819,0.0060307 0.002542,-0.0010967,-0.0014286,0.0040846,-0.0002088,0.0032571,-0.0023264,-0.00037564,-0.0077769,0.001273,0.011252,-0.0019056,0.0006953,0.0053397,0.0016599 0.0012525,-0.00020203,-0.002193,0.0039816,0.0012946,0.0042211,-0.0022228,0.0018267,-0.0056182,0.00042045,0.0099565,-0.0014392,-0.0012094,0.0047389,-0.0021042 0.00058314,0.00014931,-0.0025237,0.0042258,0.0033633,0.0039226,-0.0012328,0.0043699,-0.0050245,0.00024256,0.0071981,-0.0033088,-0.0016761,0.0040962,-0.002933 0.00090841,0.00090773,-0.0032826,0.0047194,0.0056767,0.00098267,0.0010657,0.006544,-0.004284,0.0011171,0.0015823,-0.0076158,0.00069325,0.0050488,-0.0011293 0.0016976,0.0015356,-0.0042313,0.0065903,0.006707,-0.0036705,0.0042252,0.006913,-0.0039536,0.0029614,-0.0027335,-0.011038,0.0060173,0.0097427,0.0016299 0.0028395,0.00099609,-0.0048016,0.0083053,0.0049278,-0.0087044,0.0086532,0.0033028,-0.0042583,0.00090556,-0.0028291,-0.010997,0.013391,0.015442,0.0046634 0.0035014,-0.0015298,-0.004197,0.010623,0.00052548,-0.014201,0.011814,-0.0024143,-0.006399,-0.0036611,-0.00026236,-0.006036,0.018345,0.018152,0.0038921 0.0028956,-0.0062951,-0.0033294,0.012537,-0.0042442,-0.018843,0.013569,-0.0079254,-0.011853,-0.0069842,0.00096559,0.00030035,0.017637,0.011072,-0.0038601 0.0016099,-0.010626,-0.0033665,0.013909,-0.0078467,-0.017664,0.010361,-0.0099111,-0.015351,-0.0095641,0.0025926,0.0036168,0.012536,-0.0043873,-0.011699 0.00099757,-0.011911,-0.0030234,0.011377,-0.0081506,-0.010372,0.0020341,-0.0055457,-0.014288,-0.0083471,0.00076316,0.002128,0.0034912,-0.016177,-0.013812 0.0005073,-0.010808,-0.0021928,0.0079114,-0.0055738,-0.0037989,-0.0038762,-0.00071522,-0.01164,-0.00246,-0.0006759,0.0014978,-0.00085348,-0.018141,-0.010757 0.00015269,-0.00724,-0.0014216,0.0046457,-0.0025574,-0.00028517,-0.0051218,0.00083541,-0.0071092,0.0016384,-0.0018481,0.0011737,-0.0010517,-0.012381,-0.0037425 1.1814e-05,-0.0028795,-0.00098993,0.0018935,-0.00078138,0.00040972,-0.0028336,0.00030021,-0.0022309,0.0011868,-0.0013534,0.0006566,-0.0013447,-0.0049584,1.1481e-05 -5.8762e-06,-0.00035203,-0.00030256,0.00027005,-0.00022159,7.4099e-05,-0.00050163,-1.3423e-05,-0.00022164,0.00014773,-0.0004509,0.00027381,-0.00028684,-0.00076848,0.00039842 -5.6106e-06,-4.7888e-05,-7.4874e-05,8.3362e-05,-2.3449e-05,6.8767e-06,-0.00010524,1.3239e-05,-7.6206e-06,1.2963e-05,-2.452e-05,0.00013074,3.3078e-05,-0.00020859,0.00015319 -5.1909e-18,4.4245e-18,2.9202e-18,-4.9172e-18,1.7182e-17,-1.6463e-19,-2.623e-18,-1.0836e-18,6.2741e-18,3.8502e-18,8.3385e-18,7.9826e-18,2.3115e-17,1.3895e-17,-7.6378e-19 -4.3868e-19,3.2123e-19,3.215e-19,-5.126e-19,1.7174e-18,-6.7792e-20,-3.8453e-19,-4.0779e-20,7.3028e-19,4.7399e-19,8.2337e-19,5.9351e-19,2.2305e-18,1.5068e-18,-2.0499e-19 -9.1881e-18,8.6769e-18,6.5059e-18,-8.703e-18,3.0942e-17,-1.4103e-18,-8.29e-18,-3.5441e-18,1.1209e-17,5.9157e-18,1.337e-17,1.4558e-17,3.9216e-17,2.5175e-17,-3.9961e-18 1.6383e-07,-1.9987e-07,-2.2463e-07,-6.5039e-08,-2.5043e-08,-1.6417e-07,3.9656e-07,-7.746e-08,3.9077e-07,-2.1091e-07,2.6667e-07,5.1325e-07,-1.5558e-07,1.638e-07,6.7903e-07 6.1885e-05,-5.301e-05,-6.9714e-05,-4.0522e-05,-1.5813e-06,-7.107e-05,0.00012087,7.2578e-05,1.5799e-05,-5.4429e-06,9.2197e-05,0.00011916,-1.0235e-06,2.4303e-05,0.00016996 0.00069922,-0.00058908,-0.00058099,-0.00054646,-7.2511e-05,-0.00077521,0.0012501,0.001057,8.5717e-05,1.5455e-06,0.0005566,0.0011901,-0.0001285,0.00035837,0.0011981 0.0018535,-0.0012986,-0.0017126,-0.0016761,-0.00093353,-0.0018024,0.0028454,0.0026131,0.00080619,-0.00082229,0.0016435,0.0022924,0.00027637,0.001277,0.003228 0.0039207,-0.0026014,-0.0036637,-0.0030625,-0.0024675,-0.0029839,0.0061407,0.0049529,0.0019321,-0.0018472,0.0020546,0.0036475,0.00016472,0.0023845,0.0062311 0.0063577,-0.0032865,-0.0052708,-0.0039546,-0.0041983,-0.0041313,0.0082489,0.0056352,0.0022743,-0.0024059,0.0016875,0.0004125,-0.00052434,0.0034906,0.010119 0.010117,-0.0037047,-0.0059398,-0.004906,-0.0068152,-0.0066937,0.0087287,0.003873,-0.00093719,-0.0037389,0.0020462,-0.007624,-0.003686,0.0053214,0.016667 0.013886,-0.002836,-0.0049439,-0.0042607,-0.013016,-0.007544,0.004728,0.00031826,-0.010909,-0.0029132,0.0043783,-0.017346,-0.005595,0.010088,0.025571 0.015562,-0.0010815,-0.0021688,-0.00048932,-0.016166,-0.0045618,-0.001685,-0.0047931,-0.025834,0.0017702,0.013032,-0.019541,-0.0055191,0.018217,0.027079 0.014397,-0.0012986,0.0011774,0.0061671,-0.012959,0.0043214,-0.0069389,-0.0071379,-0.0398,0.0081472,0.031918,-0.0096615,-0.0093141,0.027889,0.016368 0.010304,-0.001128,0.0016982,0.0084716,-0.0050122,0.013685,-0.010823,-0.0039972,-0.042207,0.010613,0.047302,0.00085793,-0.016779,0.033223,-0.0052683 0.0045882,0.00094387,-0.00098244,0.008341,0.006321,0.019456,-0.011044,0.0028487,-0.034586,0.0092104,0.046659,0.00023236,-0.023043,0.03728,-0.02434 0.0015697,0.0028085,-0.0040862,0.0092732,0.017077,0.019561,-0.0073843,0.009994,-0.026721,0.0060155,0.030365,-0.0058535,-0.021298,0.037985,-0.026868 0.0018559,0.0058835,-0.0070563,0.010644,0.024402,0.011363,-0.00024899,0.016731,-0.020841,0.0055799,0.0058967,-0.018898,-0.0090489,0.046411,-0.015835 0.0049682,0.0093629,-0.010549,0.015199,0.025126,-0.0090512,0.014678,0.017955,-0.016526,0.0059128,-0.016669,-0.031605,0.014149,0.063995,-0.001641 0.009007,0.0067394,-0.010984,0.019451,0.016244,-0.035685,0.032,0.0067211,-0.017178,-0.0070137,-0.021884,-0.031745,0.042468,0.083171,0.0090241 0.0096988,-0.0031039,-0.0083513,0.024339,-0.0060108,-0.059015,0.041354,-0.011561,-0.020747,-0.024152,-0.0087469,-0.012955,0.057276,0.084452,0.007612 0.0062473,-0.018683,-0.0016712,0.027017,-0.025333,-0.064226,0.033592,-0.023994,-0.031271,-0.034248,0.010409,0.0095576,0.044949,0.041637,-0.017658 0.0029744,-0.032209,0.0014306,0.028236,-0.034528,-0.048764,0.010726,-0.020788,-0.037012,-0.032736,0.019163,0.016803,0.015812,-0.017011,-0.041412 0.00070528,-0.037984,0.0010835,0.021707,-0.031155,-0.023585,-0.012331,-0.007056,-0.035488,-0.012962,0.011774,0.0087046,-0.0076854,-0.051594,-0.045741 3.6374e-05,-0.034795,-0.00048088,0.014255,-0.021701,-0.0028696,-0.025228,0.005845,-0.028948,0.0074979,-0.0024199,-0.00076472,-0.012498,-0.051621,-0.028346 -0.00045417,-0.024629,-0.0012612,0.0076922,-0.011412,0.0046768,-0.024461,0.0092424,-0.018236,0.015181,-0.0095241,-0.0037288,-0.0094725,-0.033094,-0.008586 -0.00030277,-0.010277,-0.0019676,0.0029277,-0.0044045,0.0033128,-0.012334,0.0041391,-0.0068631,0.0088371,-0.0070476,-0.00097666,-0.0040077,-0.012532,0.0020789 -0.00022428,-0.0018354,-0.0010074,0.00058237,-0.00073535,0.00058861,-0.0029711,0.00058161,-0.0010407,0.0019968,-0.0019955,-0.00016946,-0.0011072,-0.0019569,0.0023247 -2.257e-05,-0.00019518,-7.858e-05,0.00010287,-5.8744e-05,0.00013355,-0.00026752,-5.599e-05,-0.00015494,0.00025924,-0.00012445,-0.00020631,-0.00011715,-4.3946e-05,0.0003739 -1.6156e-18,2.0676e-18,1.2488e-18,-2.3215e-18,6.0967e-18,-2.0775e-19,-1.5929e-18,-4.6425e-20,1.4344e-18,1.8138e-18,3.0274e-18,2.161e-18,7.4292e-18,5.0265e-18,-2.056e-19 -3.0517e-18,1.2551e-18,2.9227e-18,-3.261e-18,9.7636e-18,-6.0752e-19,-1.6842e-18,-3.6679e-20,3.3066e-18,2.3835e-18,4.1546e-18,3.9624e-18,1.2274e-17,7.6043e-18,-7.064e-19 -1.3481e-18,1.1752e-18,9.8054e-19,-1.2044e-18,4.7144e-18,-5.4981e-20,-9.3997e-19,-3.3129e-19,1.1323e-18,9.5204e-19,2.056e-18,2.192e-18,5.861e-18,4.084e-18,-5.6876e-20 2.1298e-06,-2.5983e-06,-2.9202e-06,-8.455e-07,-3.2556e-07,-2.1342e-06,5.1553e-06,-1.007e-06,5.08e-06,-2.7419e-06,3.4667e-06,6.6723e-06,-2.0225e-06,2.1294e-06,8.8274e-06 0.00020524,-0.00023838,-0.00021635,-0.00016461,-3.7971e-05,-0.00026531,0.00043533,0.00034873,0.00015252,-8.9997e-05,0.00030614,0.00073786,3.5983e-05,0.00013131,0.00032835 0.0016146,-0.0012352,-0.001433,-0.0016081,-0.00043017,-0.0018673,0.0027394,0.0028667,0.00068635,-0.00035468,0.0016166,0.0031202,0.00014839,0.00076117,0.0019957 0.0040815,-0.0025168,-0.0039274,-0.0043655,-0.0018807,-0.004093,0.0060679,0.0066155,0.0024417,-0.0022137,0.0035486,0.0055378,0.00088257,0.0021986,0.0041484 0.0083594,-0.0043994,-0.0078578,-0.0076825,-0.0048416,-0.0072227,0.012363,0.010922,0.0050002,-0.0054158,0.0039909,0.0065516,3.1018e-05,0.0049449,0.0082482 0.01555,-0.0056936,-0.011536,-0.01195,-0.0098825,-0.012365,0.017737,0.013391,0.0047776,-0.0092001,0.0024837,-0.0027042,-0.0054345,0.0084505,0.017799 0.024436,-0.0043649,-0.012739,-0.016276,-0.017915,-0.017946,0.019586,0.010052,-0.0037553,-0.010863,-0.00049187,-0.023012,-0.019346,0.012278,0.033265 0.035987,-0.00026855,-0.0089061,-0.018846,-0.030588,-0.018444,0.013631,-0.00097972,-0.031414,-0.0068195,0.0048151,-0.043919,-0.034191,0.024741,0.051292 0.042604,0.0057332,-0.00088488,-0.014754,-0.035536,-0.0063098,0.0025261,-0.020499,-0.068435,0.010426,0.029351,-0.041268,-0.050341,0.041218,0.05069 0.0401,0.013467,0.011305,-0.0077136,-0.021279,0.023019,-0.010975,-0.035644,-0.096259,0.035148,0.071038,-0.0098587,-0.076138,0.05295,0.010419 0.030224,0.025634,0.019429,-0.0057716,0.012438,0.059512,-0.019427,-0.044332,-0.094552,0.054658,0.10018,0.025923,-0.10423,0.060604,-0.050525 0.013326,0.040024,0.023518,-0.0071851,0.05564,0.089046,-0.017227,-0.049452,-0.059681,0.055258,0.0906,0.049526,-0.11561,0.073422,-0.095478 -0.0039206,0.048231,0.027974,-0.0098739,0.093386,0.10051,-0.00099784,-0.049804,-0.018099,0.03362,0.045569,0.054217,-0.093286,0.10052,-0.099895 -0.017951,0.045993,0.02927,-0.014192,0.11422,0.086448,0.021265,-0.041449,0.018119,0.0086946,-0.010079,0.036841,-0.044601,0.14453,-0.068866 -0.024745,0.032338,0.024895,-0.012651,0.11183,0.040162,0.047856,-0.032654,0.040261,-0.0237,-0.057678,0.010789,0.021538,0.19868,-0.027702 -0.022492,0.0076212,0.017304,-0.0089155,0.07809,-0.028373,0.070538,-0.039176,0.038237,-0.061171,-0.073696,-0.0088182,0.083362,0.23668,0.011908 -0.014617,-0.024837,0.013432,0.0018327,0.024432,-0.083723,0.068477,-0.054044,0.015653,-0.091121,-0.053608,0.0022103,0.10459,0.20886,0.014353 -0.0072817,-0.05469,0.015424,0.015132,-0.026793,-0.091875,0.033417,-0.052181,-0.020877,-0.094715,-0.010605,0.025355,0.068188,0.097955,-0.017892 -0.0033001,-0.0699,0.014509,0.023168,-0.047219,-0.059397,-0.011984,-0.026401,-0.045145,-0.061439,0.0054762,0.027829,0.010948,-0.021257,-0.050374 -0.00060402,-0.069283,0.011132,0.018601,-0.044469,-0.018866,-0.043034,0.0046676,-0.051867,-0.011622,-0.0017563,0.0099188,-0.02378,-0.075496,-0.050129 1.5411e-05,-0.055057,0.0049763,0.011261,-0.030872,0.0078968,-0.049818,0.020386,-0.04192,0.022411,-0.015603,-0.0072338,-0.025403,-0.066547,-0.027611 0.00027058,-0.036035,0.0012197,0.006469,-0.016288,0.014471,-0.03768,0.0204,-0.026963,0.030008,-0.019301,-0.010982,-0.011653,-0.035934,-0.0065984 -0.00046974,-0.015743,-0.00069193,0.002741,-0.0055951,0.0082353,-0.018603,0.0099853,-0.010403,0.017672,-0.010771,-0.0063446,-0.002072,-0.011901,0.0038254 -0.00039057,-0.0032221,-0.00081217,0.00070271,-0.00037371,0.001782,-0.0046408,0.0017479,-0.0017678,0.0040269,-0.0033858,-0.0016127,-0.00067233,-0.0018724,0.0039131 -9.2299e-05,-0.00031852,-0.00019256,-1.0229e-05,-4.5855e-05,7.9057e-05,-0.0007665,0.00016755,-0.00022181,0.0004356,-0.00035431,1.1382e-05,-0.00030922,-0.00018884,0.0011639 -6.8258e-18,7.194e-18,4.4619e-18,-8.654e-18,3.0217e-17,2.7332e-18,-6.9663e-18,-2.6273e-18,1.1453e-17,5.7129e-18,1.3432e-17,1.3327e-17,4.1851e-17,2.7002e-17,-3.2418e-18 -2.6878e-18,2.2046e-18,1.5519e-18,-2.5377e-18,9.2181e-18,-1.6968e-19,-1.472e-18,3.3454e-19,2.2011e-18,2.0022e-18,4.1412e-18,4.185e-18,1.2651e-17,8.0337e-18,-3.5427e-20 -9.5344e-18,5.4918e-18,6.744e-18,-9.5764e-18,3.1914e-17,-3.7511e-19,-5.1062e-18,-1.6989e-18,9.6046e-18,6.688e-18,1.317e-17,1.5361e-17,3.8088e-17,2.652e-17,-2.7487e-18 2.0151e-05,-2.4584e-05,-2.7629e-05,-7.9998e-06,-3.0803e-06,-2.0193e-05,4.8777e-05,-9.5276e-06,4.8065e-05,-2.5943e-05,3.28e-05,6.313e-05,-1.9136e-05,2.0148e-05,8.3521e-05 0.00044897,-0.00040015,-0.00038482,-0.00050572,-6.8264e-05,-0.0006167,0.00076641,0.00083244,0.00032925,-0.0002399,0.00058239,0.0013129,6.3277e-05,0.00030803,0.00049899 0.0024253,-0.0016166,-0.0021846,-0.0023992,-0.00066866,-0.0026111,0.0036082,0.0044383,0.0015795,-0.00084337,0.0022049,0.0040745,0.00029627,0.0012862,0.0017479 0.0067517,-0.0040975,-0.0063862,-0.0070154,-0.0027848,-0.0062327,0.0098451,0.011065,0.0047743,-0.0045868,0.0058884,0.0095398,0.00059828,0.0039917,0.0041705 0.014403,-0.0066432,-0.01215,-0.013953,-0.0063089,-0.010935,0.019285,0.019232,0.0073881,-0.0097326,0.0072034,0.0093704,-0.0048697,0.0079555,0.0080728 0.028784,-0.0072863,-0.018676,-0.024838,-0.01415,-0.019056,0.031334,0.024243,0.006768,-0.017144,0.0015607,-0.0072833,-0.023159,0.01379,0.019321 0.049546,-0.0028208,-0.020113,-0.039152,-0.027176,-0.02526,0.038654,0.015481,-0.012479,-0.019504,-0.0064807,-0.041486,-0.057707,0.021799,0.040202 0.069163,0.010388,-0.0090813,-0.046159,-0.0412,-0.019261,0.02835,-0.01913,-0.060006,-0.0017847,-0.0016602,-0.069501,-0.090899,0.03541,0.059339 0.073829,0.028407,0.017059,-0.041419,-0.041413,0.017236,0.0051811,-0.065525,-0.11104,0.041625,0.034155,-0.040332,-0.11139,0.046429,0.039136 0.054981,0.047317,0.050842,-0.03185,-0.002855,0.075486,-0.017051,-0.092951,-0.12263,0.086697,0.09242,0.045148,-0.12108,0.038336,-0.038637 0.019903,0.058123,0.069045,-0.032178,0.06826,0.12312,-0.029808,-0.086555,-0.068945,0.095467,0.11898,0.11113,-0.11225,0.018548,-0.11367 -0.014497,0.061804,0.067586,-0.043233,0.13784,0.1415,-0.020881,-0.055969,0.020159,0.063716,0.076915,0.11173,-0.093837,-0.0024932,-0.1168 -0.036061,0.063706,0.058985,-0.056578,0.18052,0.13101,-0.000199,-0.028635,0.087085,0.021433,5.6604e-05,0.07169,-0.065818,-0.0053818,-0.05925 -0.043286,0.067607,0.050212,-0.062612,0.19151,0.1022,0.026072,-0.011044,0.11414,-0.0012579,-0.071057,0.026922,-0.030071,0.025716,0.0054066 -0.042468,0.063935,0.044642,-0.053702,0.17589,0.048913,0.064846,-0.016257,0.11343,-0.024884,-0.11391,0.0013591,0.029308,0.10728,0.04583 -0.037283,0.034359,0.042349,-0.04038,0.12615,-0.031596,0.10174,-0.052955,0.096374,-0.079868,-0.10748,0.0012132,0.098126,0.20658,0.063175 -0.030243,-0.026065,0.04087,-0.024399,0.051369,-0.097602,0.098499,-0.086526,0.060615,-0.14489,-0.059783,0.031441,0.11516,0.21374,0.038456 -0.021189,-0.082428,0.041161,-0.0077964,-0.01848,-0.096325,0.031063,-0.075545,0.0092119,-0.15382,-0.015822,0.050643,0.055537,0.094146,-0.013637 -0.0094449,-0.10577,0.035451,0.0023603,-0.046769,-0.040089,-0.042105,-0.022693,-0.036096,-0.086538,-0.019762,0.029905,-0.0078182,-0.032926,-0.041837 -0.002154,-0.095282,0.021953,0.0043408,-0.042314,0.0078996,-0.07402,0.026258,-0.052711,-0.0031191,-0.033237,-0.00094078,-0.029887,-0.071886,-0.032371 0.0015655,-0.066169,0.011403,0.0033162,-0.028183,0.02653,-0.064206,0.04009,-0.044485,0.039695,-0.034717,-0.017926,-0.017824,-0.049849,-0.013179 0.00082839,-0.037978,0.0041936,0.0028614,-0.012837,0.022482,-0.039746,0.029221,-0.027153,0.038648,-0.025016,-0.017942,-0.0053091,-0.021735,0.0010784 -0.00047606,-0.01482,0.00051914,0.0014968,-0.0028554,0.0098072,-0.016495,0.013344,-0.009484,0.019715,-0.010345,-0.0092327,0.0023104,-0.0049543,0.005535 -0.00038352,-0.0033151,-0.00042129,0.00068923,0.00038281,0.0020555,-0.0045975,0.002634,-0.0019431,0.0047147,-0.0031066,-0.0017069,0.0002457,-0.0011356,0.004614 -8.3804e-05,-0.00031014,-0.00014403,4.0547e-06,9.6951e-05,0.00014984,-0.00074241,0.00020466,-0.00013973,0.00053884,-0.00048161,6.5082e-05,2.4432e-05,-0.00020841,0.0011187 -1.0675e-17,9.5396e-18,8.2463e-18,-1.1287e-17,3.1427e-17,-8.1663e-20,-7.5827e-18,-2.1681e-18,9.2419e-18,6.5129e-18,1.4203e-17,1.3271e-17,4.271e-17,2.4718e-17,-4.7664e-18 -4.2684e-18,2.7469e-18,2.9151e-18,-5.1638e-18,1.2538e-17,-4.6102e-19,-4.1108e-18,-1.1501e-18,6.3697e-18,3.4525e-18,6.331e-18,6.0253e-18,1.8364e-17,1.1257e-17,-9.1134e-19 -6.0269e-19,7.0227e-19,4.0996e-19,-8.322e-19,2.5901e-18,-1.3337e-19,-4.3336e-19,-1.9355e-19,9.025e-19,6.3054e-19,1.28e-18,1.1261e-18,3.2738e-18,2.0814e-18,-1.4866e-19 4.476e-05,-1.913e-05,-3.8325e-05,-9.9013e-05,-5.4223e-05,-4.3967e-05,-2.8448e-05,7.5715e-05,5.4161e-05,-0.00016723,0.00010415,5.5288e-05,9.0056e-05,4.0793e-05,-2.6181e-05 0.00064955,-0.00045543,-0.00064216,-0.0007775,-0.00024451,-0.00092146,0.00090462,0.0011536,0.00076425,-0.00065822,0.00098536,0.0015502,0.00026377,0.00045475,0.00038601 0.0035146,-0.0022061,-0.0032239,-0.0038813,-0.0010875,-0.0034366,0.0051728,0.0062967,0.0030662,-0.0021393,0.0039289,0.0063542,0.00051466,0.0026227,0.0017638 0.0097648,-0.0053099,-0.0086797,-0.010456,-0.0024255,-0.0074513,0.014422,0.015563,0.0064409,-0.0068698,0.0086772,0.013245,-0.00289,0.0057704,0.0039023 0.023038,-0.0087358,-0.017597,-0.023654,-0.0055541,-0.011887,0.030359,0.028174,0.01031,-0.014598,0.010663,0.014236,-0.018836,0.012039,0.0055873 0.047543,-0.0074161,-0.025973,-0.045897,-0.014398,-0.019395,0.050521,0.033594,0.0069358,-0.024319,-0.00091267,-0.0087168,-0.056051,0.018055,0.012956 0.079295,0.0069841,-0.020209,-0.071101,-0.030615,-0.020493,0.055814,0.0070747,-0.02378,-0.019837,-0.025019,-0.057963,-0.10894,0.020759,0.030432 0.096696,0.030234,0.016882,-0.074792,-0.046194,0.003586,0.034331,-0.060827,-0.081145,0.019115,-0.033029,-0.06885,-0.12723,0.026209,0.048381 0.074854,0.051768,0.07541,-0.055687,-0.026351,0.058875,-0.0044071,-0.12548,-0.11712,0.084841,0.01876,0.021202,-0.083498,0.020582,0.012289 0.017436,0.050137,0.11112,-0.033901,0.047618,0.10468,-0.031631,-0.11513,-0.07839,0.1139,0.094533,0.13183,-0.021216,-0.0073302,-0.068064 -0.038939,0.031212,0.1027,-0.030958,0.1338,0.11128,-0.03747,-0.042836,0.024522,0.070925,0.10376,0.14091,0.0042329,-0.047382,-0.096858 -0.0626,0.016477,0.071819,-0.050199,0.18956,0.084241,-0.029785,0.031961,0.10064,0.004572,0.031226,0.070147,-0.010504,-0.082682,-0.038066 -0.055214,0.024011,0.048135,-0.069845,0.19959,0.054461,-0.014499,0.070767,0.11702,-0.022096,-0.048103,-0.0030264,-0.023514,-0.10264,0.049038 -0.036463,0.053932,0.035031,-0.074409,0.1913,0.032403,0.012513,0.074581,0.091818,0.00097892,-0.09223,-0.043415,-0.027783,-0.096072,0.089432 -0.021263,0.08497,0.030162,-0.060229,0.17464,-0.0043689,0.058708,0.04556,0.059843,0.025908,-0.11285,-0.045404,0.0022763,-0.028572,0.090915 -0.016224,0.073883,0.036035,-0.038743,0.12582,-0.074253,0.1175,-0.03481,0.052019,-0.03498,-0.083323,0.0020275,0.05857,0.089726,0.078327 -0.017198,-0.0024003,0.051739,-0.025006,0.051914,-0.12221,0.11605,-0.10898,0.049478,-0.15155,-0.0078823,0.070605,0.063407,0.11252,0.032925 -0.014821,-0.090714,0.063741,-0.021861,-0.01537,-0.088658,0.026816,-0.08593,0.023016,-0.18048,0.019503,0.07968,0.0022207,0.018962,-0.014129 -0.0065267,-0.12632,0.056878,-0.019054,-0.040562,-0.0078163,-0.065152,-0.0065418,-0.022215,-0.087114,-0.02743,0.030393,-0.040652,-0.057568,-0.022938 0.0011163,-0.10728,0.034595,-0.013227,-0.030424,0.042302,-0.086757,0.048536,-0.044776,0.013475,-0.058448,-0.014278,-0.023831,-0.047944,-0.011758 0.0034068,-0.066298,0.016525,-0.0062881,-0.017139,0.04227,-0.060968,0.052334,-0.039648,0.048094,-0.049568,-0.026049,-0.0026897,-0.016292,-0.001346 0.0016655,-0.030413,0.0057444,-0.0013714,-0.0057523,0.023134,-0.029814,0.030881,-0.022,0.034805,-0.02456,-0.018456,0.0042822,-0.0009195,0.0057051 -0.00048396,-0.010378,0.0012661,-0.0004264,0.00038696,0.0075291,-0.011405,0.011275,-0.0074211,0.015274,-0.0084561,-0.0075512,0.0034503,0.0016544,0.0065612 -0.0002625,-0.0019779,-3.0104e-05,0.00021142,0.00063103,0.0013697,-0.0028466,0.0018383,-0.0013961,0.0033417,-0.0018929,-0.00077937,0.00061906,0.00022637,0.0033044 -4.9985e-05,-0.00021357,-6.212e-05,1.7602e-05,0.00018629,0.00011985,-0.00045109,0.00026501,-8.0652e-05,0.00037959,-0.00032564,-0.0001559,-2.7399e-05,9.3432e-05,0.00074998 -1.2837e-18,8.5554e-19,6.9508e-19,-1.3746e-18,3.2296e-18,-7.4076e-20,-8.7993e-19,-2.1795e-19,1.3147e-18,8.3492e-19,1.5833e-18,1.5306e-18,4.395e-18,2.9084e-18,-2.375e-19 -7.212e-18,5.0473e-18,6.6465e-18,-9.7024e-18,2.8178e-17,-5.7415e-19,-6.8618e-18,-1.868e-18,1.0029e-17,5.3985e-18,1.3003e-17,1.2903e-17,3.5479e-17,2.6042e-17,-2.2906e-18 1.2658e-05,9.4925e-06,-4.1646e-05,4.6209e-06,1.6935e-05,-4.1423e-05,4.098e-05,-1.6817e-05,8.1261e-05,1.5626e-06,5.0198e-06,1.2681e-05,1.2751e-05,4.0939e-05,-2.4362e-05 6.9225e-05,-3.8493e-05,-7.5817e-05,-0.00015572,-8.5054e-05,-7.0703e-05,-3.0667e-05,0.00013326,0.00013386,-0.00021743,0.00017581,0.00010791,0.00015661,8.4459e-05,-2.2638e-05 0.00070395,-0.00048436,-0.0007721,-0.00099803,-0.00030714,-0.00078875,0.00098115,0.0014646,0.00077512,-0.00071906,0.0012538,0.0019093,0.00031612,0.00050821,0.00038221 0.0043416,-0.0026242,-0.0038017,-0.0051551,-0.00059385,-0.0034207,0.0063091,0.0079722,0.0034604,-0.0028153,0.0050326,0.008364,-0.00083429,0.0030549,0.0012489 0.014257,-0.0071686,-0.011407,-0.015454,-0.0010623,-0.0055874,0.021212,0.021492,0.007794,-0.0088886,0.011239,0.019937,-0.011263,0.0072303,0.0002688 0.035689,-0.010566,-0.023084,-0.038379,-0.002969,-0.0078855,0.046003,0.037269,0.013194,-0.020821,0.011888,0.022891,-0.041571,0.01359,-0.0039941 0.070784,-0.0049854,-0.026662,-0.07285,-0.012194,-0.011784,0.068842,0.033156,0.0055741,-0.030553,-0.014489,-0.010523,-0.094868,0.01323,-0.0041714 0.10304,0.017849,0.0045118,-0.097518,-0.03056,-0.0014917,0.063002,-0.024005,-0.03225,-0.010609,-0.066158,-0.061255,-0.12797,0.0066707,0.018341 0.095949,0.043645,0.075666,-0.081677,-0.036999,0.031298,0.020782,-0.11667,-0.085549,0.056448,-0.069754,-0.031992,-0.065311,-0.0041248,0.045625 0.029573,0.044986,0.13102,-0.036844,0.0089377,0.066905,-0.031453,-0.14084,-0.088526,0.11173,0.026476,0.087262,0.060472,-0.012075,0.016054 -0.050262,0.01048,0.12452,-0.0020205,0.094789,0.065643,-0.052405,-0.051615,-0.016272,0.08152,0.10786,0.14009,0.1091,-0.031913,-0.04503 -0.088864,-0.024745,0.073273,-0.0036184,0.15739,0.024976,-0.052881,0.064262,0.063767,-0.00043013,0.079849,0.069455,0.063217,-0.063794,-0.036874 -0.075131,-0.030763,0.028359,-0.021458,0.16934,-0.016382,-0.037795,0.12373,0.081304,-0.050647,-0.0058777,-0.026419,-0.00036925,-0.088031,0.036097 -0.041713,-0.005026,0.0096722,-0.039788,0.14485,-0.027192,-0.016842,0.12577,0.044631,-0.034828,-0.052533,-0.07523,-0.029282,-0.10709,0.089157 -0.013471,0.045028,0.0025473,-0.043196,0.12934,-0.026213,0.0068048,0.11275,-0.0095038,0.030686,-0.066982,-0.084109,-0.038263,-0.11359,0.085767 0.0014368,0.09936,-0.004391,-0.032494,0.12375,-0.054913,0.058413,0.072027,-0.046116,0.080963,-0.07855,-0.062895,-0.01169,-0.067088,0.06149 0.0036889,0.10056,0.0069813,-0.016835,0.090351,-0.12532,0.11872,-0.039439,-0.031746,0.010512,-0.031509,0.013961,0.019506,0.006478,0.029908 -0.0011295,0.011883,0.045229,-0.017564,0.029809,-0.14387,0.10293,-0.13147,0.013717,-0.14239,0.057827,0.098956,-0.010532,-0.0095972,-0.00070109 -0.0002577,-0.094879,0.076457,-0.031965,-0.017396,-0.063898,0.0038794,-0.087463,0.024687,-0.17524,0.056567,0.092765,-0.06731,-0.071741,-0.0074753 0.0032011,-0.1331,0.070794,-0.037559,-0.028486,0.035655,-0.076252,0.014787,-0.0084271,-0.066534,-0.026591,0.025934,-0.058761,-0.062566,0.00281 0.006247,-0.10339,0.042135,-0.026217,-0.014633,0.067969,-0.077274,0.064545,-0.034044,0.029494,-0.067977,-0.020253,-0.011961,-0.011724,0.0072179 0.0055526,-0.055593,0.018807,-0.013292,-0.0043988,0.046399,-0.044465,0.051834,-0.031362,0.045191,-0.051015,-0.023558,0.0093239,0.016074,0.0055858 0.0020347,-0.020311,0.0056496,-0.0045482,0.00091224,0.017866,-0.016274,0.024321,-0.015341,0.024167,-0.020889,-0.013054,0.0079456,0.012618,0.0062157 2.7205e-06,-0.005155,0.0012396,-0.00080643,0.0015395,0.004138,-0.0048587,0.006591,-0.0041912,0.0080543,-0.0053519,-0.0041006,0.002641,0.0034639,0.0036032 -6.9186e-05,-0.00096017,-3.2608e-06,7.7483e-06,0.00037754,0.00077374,-0.001253,0.0010423,-0.00075753,0.0017906,-0.0012303,-0.00063086,0.00070956,0.00057299,0.0014744 -1.8339e-05,-8.8461e-05,-1.9881e-05,2.4381e-05,0.00011158,5.3297e-05,-0.00017942,0.00014108,-5.9785e-05,0.00013881,-0.00014432,-0.00013263,-2.6373e-05,6.5813e-05,0.00034381 -2.64e-18,1.9112e-18,8.1567e-19,-2.2185e-18,8.0639e-18,-3.4177e-19,-1.5821e-18,-7.4683e-19,2.7354e-18,2.203e-18,3.8685e-18,4.4356e-18,1.0829e-17,7.5811e-18,4.7416e-19 -1.601e-18,1.3576e-18,1.2365e-18,-1.777e-18,5.516e-18,-4.8145e-21,-7.9812e-19,-2.5749e-19,1.834e-18,1.8638e-18,3.0373e-18,1.7693e-18,7.4464e-18,3.9594e-18,-3.9017e-19 2.03e-05,1.5224e-05,-6.6791e-05,7.4108e-06,2.7159e-05,-6.6433e-05,6.5722e-05,-2.697e-05,0.00013032,2.506e-06,8.0507e-06,2.0337e-05,2.045e-05,6.5657e-05,-3.9071e-05 8.8262e-05,-4.0378e-05,-0.0001195,-0.00015336,-0.00011899,-0.00015128,4.2538e-05,0.00015974,0.00021044,-0.00022892,0.00020609,0.0001201,0.00015848,8.5032e-05,-8.5773e-05 0.00094428,-0.00066018,-0.001004,-0.0014199,-0.00029234,-0.00086486,0.0014606,0.001998,0.00076588,-0.00096027,0.0016749,0.0024987,-2.7238e-05,0.00067974,0.00048017 0.0063258,-0.0037075,-0.0055416,-0.0080854,0.00045267,-0.0023991,0.01016,0.011382,0.0042605,-0.003378,0.0072523,0.013706,-0.003509,0.0038059,0.00060521 0.02159,-0.0096634,-0.015025,-0.024382,0.0017722,-0.001127,0.031498,0.028637,0.010173,-0.012036,0.013577,0.031128,-0.022878,0.009668,-0.0067663 0.050941,-0.013323,-0.024211,-0.055428,-0.0011346,0.00049435,0.061539,0.043576,0.015758,-0.02855,0.0031714,0.030953,-0.064386,0.011772,-0.024129 0.092137,-0.003487,-0.0087941,-0.094745,-0.011674,0.0029956,0.07768,0.02026,0.0047804,-0.031497,-0.052041,-0.01328,-0.11172,-0.0035694,-0.02855 0.10959,0.02251,0.053676,-0.10752,-0.028631,0.014869,0.050799,-0.0681,-0.035217,0.016313,-0.1144,-0.052764,-0.07599,-0.02634,0.025521 0.06062,0.03775,0.12723,-0.062366,-0.021165,0.031835,-0.016354,-0.14055,-0.076153,0.090953,-0.064412,0.0039017,0.072078,-0.031062,0.079641 -0.034432,0.012843,0.13626,0.0059655,0.042729,0.027109,-0.065068,-0.086733,-0.060608,0.098375,0.071033,0.09044,0.17327,-0.014893,0.042445 -0.097054,-0.031511,0.073923,0.037936,0.11374,-0.010404,-0.0703,0.047108,-0.00016815,0.019416,0.12245,0.072863,0.11131,-0.015346,-0.026347 -0.091374,-0.051065,0.0081408,0.027824,0.13294,-0.049965,-0.050375,0.13393,0.030989,-0.055238,0.05272,-0.024944,-0.0035197,-0.038002,-0.012102 -0.051019,-0.034388,-0.01527,0.0046768,0.10399,-0.053849,-0.022686,0.12639,0.010336,-0.060453,-0.017046,-0.072759,-0.051405,-0.050543,0.034195 -0.018238,0.0011778,-0.015274,-0.012815,0.072982,-0.031529,-0.0019729,0.092816,-0.028095,-0.015276,-0.03094,-0.068986,-0.043575,-0.056784,0.045414 -0.003947,0.054386,-0.019135,-0.02295,0.075078,-0.025722,0.017925,0.085465,-0.07826,0.055465,-0.043257,-0.069607,-0.02659,-0.067616,0.029687 -0.0024553,0.11085,-0.028214,-0.016015,0.083739,-0.078233,0.067661,0.048802,-0.11157,0.097806,-0.061885,-0.047046,0.0081086,-0.048623,0.004389 -0.0031401,0.10382,-0.012211,-0.0068492,0.055187,-0.15796,0.10673,-0.071157,-0.075379,0.0044784,0.0027667,0.033372,0.0025063,-0.043031,-0.026446 0.0010733,0.001651,0.044054,-0.01985,0.0096348,-0.13905,0.057613,-0.14625,0.0065244,-0.1465,0.090452,0.10307,-0.067516,-0.099008,-0.01825 0.01113,-0.10504,0.088005,-0.051433,-0.013023,-0.017277,-0.034839,-0.071286,0.040298,-0.15299,0.063694,0.075382,-0.10543,-0.11058,0.019644 0.013689,-0.13002,0.077475,-0.054615,-0.0094081,0.076725,-0.076418,0.039176,0.0061868,-0.038235,-0.033307,0.0089852,-0.053857,-0.031455,0.033239 0.011621,-0.088837,0.042177,-0.035643,0.0022149,0.079282,-0.055158,0.071344,-0.023854,0.036101,-0.069936,-0.018146,0.0048577,0.032494,0.019135 0.0069114,-0.040285,0.017199,-0.01683,0.0053715,0.041303,-0.021954,0.043257,-0.021418,0.034841,-0.044061,-0.015393,0.015749,0.039751,0.0048781 0.0019353,-0.011939,0.00442,-0.0049637,0.0035584,0.011383,-0.00573,0.015963,-0.0089115,0.014014,-0.015534,-0.0060837,0.0075084,0.01557,0.0027732 0.00013379,-0.0024536,0.00079475,-0.0011006,0.0013128,0.001955,-0.0019662,0.0031873,-0.0026811,0.0039758,-0.0038331,-0.0018642,0.0017413,0.0035343,0.0021281 -2.4645e-05,-0.00053653,-3.7485e-05,-0.00021402,0.00028897,0.00022801,-0.00065228,0.00047687,-0.00060667,0.0010008,-0.0010448,-0.00014271,0.00024664,0.00069705,0.00083717 3.4208e-06,-4.8942e-07,-1.2004e-06,-8.2545e-07,1.5436e-05,-3.5669e-06,-2.2639e-05,1.4551e-05,-4.012e-06,2.6018e-05,-6.0597e-06,-2.1508e-05,-7.9563e-06,-9.427e-06,2.7569e-05 -8.5735e-18,6.7064e-18,5.4146e-18,-8.5572e-18,2.4422e-17,-2.7353e-18,-5.5318e-18,-9.7873e-19,8.6008e-18,6.9003e-18,1.2432e-17,9.1473e-18,3.1586e-17,1.944e-17,-8.887e-19 -2.6691e-18,1.3969e-18,3.2225e-18,-3.1222e-18,9.417e-18,-1.3882e-18,-8.0026e-19,-3.7647e-19,2.8737e-18,2.1808e-18,4.4128e-18,3.7986e-18,1.0948e-17,6.453e-18,2.8512e-21 2.1551e-05,1.4604e-05,-6.8891e-05,5.243e-06,2.4212e-05,-6.9637e-05,6.6684e-05,-2.5717e-05,0.0001352,-1.917e-06,1.4658e-05,2.3096e-05,2.6457e-05,7.0555e-05,-3.6869e-05 0.00011123,-5.6613e-05,-0.00025303,-0.00016303,-0.00016159,-0.00021797,0.00011273,0.00020322,0.00037976,-0.00033283,0.00031207,0.00020297,0.00029066,0.00015389,9.9781e-06 0.0015043,-0.00099679,-0.0014387,-0.0022618,7.782e-05,-0.00069075,0.0024797,0.0029957,0.00095843,-0.0012461,0.0024387,0.0041937,-0.00012292,0.0011441,0.00076848 0.0090088,-0.0052481,-0.0071531,-0.011156,0.0018679,5.8021e-05,0.01511,0.015233,0.0043042,-0.0042197,0.0085465,0.020667,-0.0062833,0.0047019,-0.0012413 0.030251,-0.012778,-0.017386,-0.033381,0.0041166,0.0047903,0.041193,0.035649,0.01161,-0.016983,0.011667,0.041648,-0.03232,0.010579,-0.019351 0.066659,-0.018184,-0.017406,-0.070615,-0.00019811,0.010275,0.071722,0.044335,0.016199,-0.03394,-0.017303,0.038445,-0.074992,0.002457,-0.051009 0.10599,-0.0083074,0.023078,-0.10897,-0.012107,0.012575,0.075416,-0.00043297,0.0059416,-0.02048,-0.097276,-0.01287,-0.081186,-0.031014,-0.041331 0.096559,0.014753,0.10025,-0.096653,-0.025843,0.012189,0.020105,-0.097274,-0.035355,0.047199,-0.12947,-0.04705,0.028465,-0.06206,0.063338 0.012035,0.018529,0.14031,-0.021478,-0.0024165,-0.00055638,-0.058929,-0.1182,-0.067962,0.10273,-0.01121,0.002695,0.1705,-0.031152,0.12705 -0.08067,-0.011812,0.088686,0.049154,0.062988,-0.028542,-0.087649,-0.0051066,-0.063719,0.052546,0.12925,0.047569,0.15128,0.013433,0.046373 -0.10362,-0.042391,0.0052903,0.055875,0.10183,-0.057067,-0.063395,0.11284,-0.034946,-0.040921,0.11993,-0.0055224,0.0011434,0.014244,-0.038924 -0.064941,-0.037424,-0.033209,0.028977,0.087289,-0.055361,-0.025415,0.12517,-0.02686,-0.073345,0.026995,-0.063373,-0.083852,-0.013467,-0.025584 -0.025394,-0.010491,-0.026733,0.0020525,0.052537,-0.026083,-9.9424e-05,0.074083,-0.038101,-0.045769,-0.01463,-0.060826,-0.06238,-0.027259,0.0073966 -0.011228,0.021255,-0.017794,-0.019151,0.042187,-0.0040075,0.010181,0.052987,-0.062186,-0.0051172,-0.016997,-0.045416,-0.022841,-0.040968,0.0147 -0.015632,0.070995,-0.025073,-0.031943,0.058436,-0.018099,0.033857,0.063695,-0.11356,0.05323,-0.041518,-0.044763,0.002102,-0.056583,-0.00069783 -0.02708,0.11623,-0.034753,-0.023231,0.063762,-0.099735,0.078082,0.016467,-0.13849,0.071799,-0.059197,-0.010804,0.027427,-0.059339,-0.034323 -0.022773,0.085438,-0.0054289,-0.014931,0.031802,-0.16593,0.074762,-0.10059,-0.067011,-0.032809,0.018518,0.050098,-0.019024,-0.099231,-0.049846 0.00012104,-0.025173,0.059996,-0.037136,0.0026571,-0.10133,-0.002279,-0.1326,0.037372,-0.14816,0.090303,0.0693,-0.095438,-0.13426,0.0075255 0.024079,-0.11522,0.097977,-0.070483,0.00047404,0.034662,-0.063007,-0.03662,0.063833,-0.11701,0.046213,0.031462,-0.096726,-0.075958,0.061409 0.026264,-0.11882,0.077269,-0.066776,0.011923,0.10063,-0.056622,0.064119,0.013758,-0.011964,-0.040809,-0.0051036,-0.026853,0.027687,0.053639 0.018164,-0.070161,0.036556,-0.040094,0.014624,0.074523,-0.024009,0.070777,-0.021056,0.034663,-0.060678,-0.0093616,0.018491,0.066514,0.016292 0.0087424,-0.027641,0.01248,-0.017014,0.0090504,0.031996,-0.0027996,0.034184,-0.017849,0.024301,-0.033349,-0.0020098,0.01819,0.04492,-0.0006672 0.0020592,-0.0072889,0.0028272,-0.0047419,0.0029787,0.0072155,0.00020511,0.0096396,-0.006403,0.0087009,-0.011199,0.00015176,0.0054668,0.014774,-0.00034371 0.00015939,-0.0011946,0.00039028,-0.00093968,0.00066895,0.00035259,-0.00046836,0.0011427,-0.0017298,0.0018708,-0.0025189,1.7906e-05,0.00055527,0.0018946,0.00055765 1.3082e-05,-0.00021389,-4.3123e-05,-0.00011095,0.00010845,8.7921e-05,-0.00011003,0.00013767,-0.00048519,0.00025759,-0.00042972,-9.759e-05,-6.1179e-05,0.00025276,0.00036436 3.0063e-05,-8.8537e-06,3.4511e-06,2.1203e-05,2.4008e-05,1.6893e-05,-5.7296e-05,7.0697e-06,-4.0986e-05,0.00010218,4.8927e-05,-2.9571e-05,6.0843e-05,-1.233e-05,5.2645e-05 -1.1263e-19,9.9942e-20,5.2139e-20,-1.1753e-19,3.673e-19,-1.3631e-20,-9.6097e-20,1.6194e-21,1.505e-19,9.6977e-20,1.938e-19,1.3763e-19,5.278e-19,2.7369e-19,-2.7844e-20 -8.2013e-18,6.6217e-18,5.9618e-18,-7.0268e-18,2.2355e-17,-1.4924e-18,-4.1691e-18,-7.0737e-19,7.3236e-18,6.101e-18,1.1963e-17,7.9515e-18,3.1532e-17,1.8535e-17,-1.9743e-18 3.4019e-05,1.0174e-05,-9.2101e-05,-1.3419e-05,2.1259e-08,-0.00010259,7.9756e-05,-1.6505e-05,0.00018737,-4.0869e-05,7.3665e-05,4.8919e-05,8.1019e-05,0.00011844,-2.0103e-05 0.00011227,-6.2722e-05,-0.00028045,-0.00020147,-5.5151e-05,-0.00016723,0.00013802,0.00016984,0.00038947,-0.00030021,0.00031965,0.00036401,0.00023108,0.00010188,0.00015279 0.0022331,-0.0015025,-0.001969,-0.0031112,0.0010067,0.00010758,0.0039462,0.003817,0.0010515,-0.0016291,0.0031248,0.0066384,-0.00052232,0.001715,0.0010101 0.012008,-0.0068717,-0.0078556,-0.014259,0.0035734,0.0028684,0.018893,0.018974,0.0044202,-0.0056785,0.0079892,0.027027,-0.0082644,0.006621,-0.0060175 0.037839,-0.017301,-0.016052,-0.039906,0.0039382,0.011323,0.046842,0.041802,0.011394,-0.020821,0.0038522,0.050932,-0.033148,0.010027,-0.037573 0.079372,-0.028679,-0.0026148,-0.0795,-0.0027786,0.01768,0.075016,0.043735,0.01356,-0.033819,-0.044262,0.045314,-0.060181,-0.012244,-0.079687 0.10969,-0.025125,0.055771,-0.10584,-0.015767,0.0093824,0.062093,-0.014655,0.0053427,-0.0027062,-0.12475,-0.011762,-0.0096128,-0.064297,-0.038321 0.075104,-0.0038606,0.12371,-0.069265,-0.020716,-0.018091,-0.017423,-0.09216,-0.031136,0.069655,-0.10169,-0.053601,0.11792,-0.082803,0.10487 -0.023341,0.0067552,0.11629,0.013382,0.0073302,-0.050225,-0.088801,-0.064055,-0.075594,0.087568,0.060229,-0.025524,0.16206,-0.010682,0.15832 -0.097538,-0.0080005,0.030702,0.050507,0.054913,-0.061254,-0.085266,0.057684,-0.10075,-0.0018762,0.15981,-0.0092192,0.0391,0.051233,0.035138 -0.090748,-0.01845,-0.034035,0.025423,0.068475,-0.046805,-0.036644,0.11681,-0.096056,-0.084793,0.099811,-0.044516,-0.089769,0.032362,-0.053094 -0.047626,-0.0040258,-0.037105,-0.015679,0.046643,-0.014525,-0.0017712,0.080093,-0.088565,-0.086988,0.016969,-0.060362,-0.082771,-0.013951,-0.029154 -0.026156,0.018261,-0.020818,-0.045294,0.028285,0.011709,0.0092395,0.039123,-0.088215,-0.059023,-0.0031963,-0.042776,-0.021534,-0.039406,-0.00050194 -0.028086,0.046497,-0.013965,-0.068609,0.032658,0.014029,0.015691,0.040141,-0.10819,-0.02876,-0.0093331,-0.027116,0.015358,-0.062806,0.0040227 -0.043125,0.086773,-0.021389,-0.076456,0.050514,-0.028651,0.040584,0.047705,-0.14169,0.023704,-0.044959,-0.0043999,0.036187,-0.076385,-0.017653 -0.055823,0.10326,-0.020359,-0.049362,0.043751,-0.11871,0.063069,-0.013705,-0.12532,0.030862,-0.053084,0.038394,0.026333,-0.087722,-0.053351 -0.034279,0.050271,0.02048,-0.029535,0.01683,-0.13953,0.020013,-0.10119,-0.023218,-0.058688,0.019571,0.043745,-0.042193,-0.12059,-0.03679 0.010517,-0.051504,0.082933,-0.054899,0.0072119,-0.046425,-0.046514,-0.095007,0.070551,-0.1306,0.077182,0.0143,-0.091598,-0.10581,0.040092 0.043141,-0.11426,0.10124,-0.082771,0.016417,0.068207,-0.061713,0.0084939,0.065586,-0.077867,0.030535,-0.0091769,-0.059031,-0.0074803,0.087747 0.040309,-0.098181,0.064865,-0.068294,0.023223,0.095345,-0.024072,0.0814,0.0017795,0.011944,-0.034091,-0.0028361,0.0018479,0.081746,0.050434 0.023453,-0.05077,0.025345,-0.036932,0.015866,0.054497,0.0042641,0.063551,-0.024755,0.031988,-0.044288,0.010354,0.027324,0.077243,0.0049703 0.0096966,-0.019545,0.0062754,-0.014456,0.0067363,0.017718,0.0092241,0.025813,-0.017632,0.018196,-0.023706,0.011535,0.015468,0.038392,-0.0056317 0.0025839,-0.0056797,0.0010609,-0.0041431,0.0012883,0.0026597,0.0043071,0.0061948,-0.0068495,0.0062583,-0.0087452,0.0054024,0.003951,0.011195,-0.0045014 0.00039406,-0.0012518,-0.00024693,-0.00043897,-0.00031262,-0.0010954,0.00096893,0.00041812,-0.0023902,0.0017022,-0.0025362,0.0015216,0.0014136,0.0010414,-0.0015588 6.1719e-05,-0.00010589,-0.0001282,7.3497e-06,8.5904e-05,-0.00016331,0.00011362,-0.00010017,-0.00069489,0.00059998,-0.00033523,0.00011116,0.0004497,2.5044e-05,-1.5778e-05 5.0858e-06,1.6927e-05,-4.7013e-05,1.5126e-05,1.1394e-05,-9.6794e-06,-4.0738e-05,1.0339e-05,-8.2928e-05,9.2548e-05,-2.5469e-05,7.6737e-05,0.00014199,-3.7662e-06,2.2415e-05 -4.3242e-18,2.9853e-18,3.4183e-18,-2.7638e-18,9.794e-18,-1.1609e-18,-1.4975e-18,-1.2896e-18,3.4626e-18,2.4866e-18,5.1559e-18,4.7525e-18,1.333e-17,7.9721e-18,-5.2682e-19 -1.6988e-18,1.4601e-18,1.2825e-18,-1.3696e-18,4.9395e-18,-4.3235e-19,-8.4069e-19,-6.5928e-19,2.3036e-18,9.0776e-19,2.3455e-18,2.1547e-18,7.6259e-18,4.0704e-18,-4.2598e-19 2.9899e-05,-7.8941e-06,-5.9181e-05,-4.0156e-05,-4.9917e-05,-8.0576e-05,3.6748e-05,1.6988e-05,0.00013062,-8.5391e-05,0.00013079,5.9282e-05,0.00012252,0.00011333,3.2135e-05 0.00011278,-4.4255e-05,-0.00013978,-0.00014257,8.3539e-05,-0.00010349,0.0001919,0.00010153,0.00028371,-1.895e-05,0.0002467,0.00035285,8.9716e-05,3.8981e-05,5.183e-05 0.0024725,-0.0017195,-0.002177,-0.0031249,0.0011242,0.00058871,0.0043255,0.0038904,0.0013256,-0.0017025,0.0029979,0.0076283,-0.00026172,0.0018051,0.00050389 0.014254,-0.0086951,-0.0075184,-0.015653,0.0030567,0.0055693,0.020387,0.021924,0.004011,-0.0074104,0.0057186,0.031423,-0.0064636,0.0082803,-0.012507 0.043739,-0.02519,-0.010276,-0.041864,0.0028785,0.016753,0.048433,0.045871,0.0055005,-0.020147,-0.0083054,0.058285,-0.022327,0.0069642,-0.058703 0.086588,-0.046357,0.013024,-0.07627,-0.0042245,0.018232,0.070937,0.046852,0.0047686,-0.025822,-0.063712,0.053489,-0.014005,-0.030942,-0.10453 0.10807,-0.051219,0.074151,-0.084017,-0.015076,-0.0090182,0.043941,-0.0060408,0.0055785,0.013077,-0.11937,-0.0038746,0.06449,-0.093306,-0.041198 0.061975,-0.025331,0.11867,-0.036725,-0.016015,-0.063565,-0.039334,-0.059258,-0.01357,0.07454,-0.05786,-0.060197,0.14141,-0.083608,0.12815 -0.030732,0.0065555,0.085291,0.012426,-0.0039139,-0.099486,-0.095123,-0.013055,-0.068185,0.063403,0.097008,-0.054872,0.082842,0.019582,0.1705 -0.087835,0.01802,0.0081304,-0.0085449,0.011491,-0.07816,-0.076033,0.083064,-0.12765,-0.036654,0.15669,-0.0439,-0.050533,0.083901,0.048116 -0.078419,0.021281,-0.023335,-0.070462,0.0071921,-0.029053,-0.031209,0.099646,-0.14958,-0.10489,0.092003,-0.04512,-0.081484,0.045004,-0.023779 -0.053282,0.032447,-0.013096,-0.115,-0.0053215,0.0051771,-0.01084,0.062492,-0.14258,-0.10546,0.033546,-0.03292,-0.011273,-0.015536,-0.0062176 -0.045985,0.046784,0.002858,-0.13975,-0.0077666,0.0091644,-0.0076296,0.047774,-0.12742,-0.086587,0.018903,-0.011122,0.046133,-0.050425,0.0070814 -0.052077,0.063144,0.0084881,-0.1519,0.0056701,-0.013702,-0.0025644,0.054394,-0.1177,-0.04868,-0.0035151,0.024368,0.064606,-0.067921,-0.0015187 -0.065546,0.075756,0.004078,-0.12751,0.02606,-0.070829,0.016736,0.04107,-0.10761,0.01314,-0.047202,0.065548,0.04587,-0.063208,-0.032866 -0.066335,0.066558,0.010947,-0.062893,0.020363,-0.11799,0.018194,-0.018257,-0.064833,0.022737,-0.051814,0.065137,-0.0063196,-0.071886,-0.056059 -0.024952,0.016614,0.051947,-0.034764,0.0092055,-0.092259,-0.026462,-0.071909,0.021271,-0.052271,0.013685,0.0063952,-0.05299,-0.088095,-0.015647 0.033493,-0.062808,0.10046,-0.06631,0.013367,-0.008841,-0.063817,-0.045499,0.078432,-0.096022,0.062519,-0.034551,-0.05922,-0.038269,0.063447 0.064632,-0.10128,0.093233,-0.084861,0.020965,0.060707,-0.035087,0.047614,0.037672,-0.034365,0.027592,-0.018537,-0.01749,0.065399,0.085954 0.050531,-0.079865,0.043155,-0.060734,0.019193,0.060493,0.01035,0.088308,-0.028357,0.030762,-0.01747,0.020756,0.024022,0.10715,0.029324 0.025629,-0.040708,0.012534,-0.029764,0.0072445,0.022883,0.023118,0.057044,-0.038981,0.034174,-0.027674,0.035555,0.030142,0.069913,-0.0093987 0.010887,-0.017167,0.0026192,-0.011694,0.0011992,0.00082154,0.016475,0.024053,-0.025338,0.017022,-0.016681,0.023966,0.016424,0.028677,-0.015087 0.003415,-0.0063225,0.00054947,-0.002857,1.5038e-06,-0.0036706,0.0073126,0.0073319,-0.011416,0.0075546,-0.0076438,0.010342,0.0078535,0.0072004,-0.010101 0.0010154,-0.0017804,-0.00038754,0.00011919,-0.00016703,-0.0029221,0.0021755,0.0021067,-0.0045791,0.0025607,-0.0029778,0.0030235,0.0041522,0.0011893,-0.0032272 0.00010739,-0.00014533,-0.00024902,9.7322e-05,0.00013131,-0.00027794,0.00036146,-7.1705e-06,-0.0010616,0.00085882,-0.00077993,0.00047541,0.0010114,0.00012702,0.00016681 -1.2732e-05,-2.5987e-05,-7.5182e-05,-2.3039e-05,0.00011836,-5.2043e-05,1.2873e-05,-2.9963e-05,-0.00016465,0.00021933,-7.634e-05,0.00022701,0.00011752,0.00010221,0.00014652 -3.0448e-18,2.4525e-18,1.5846e-18,-2.5976e-18,9.7981e-18,1.4135e-19,-2.323e-18,-2.5919e-19,3.8032e-18,1.7193e-18,4.7057e-18,3.6264e-18,1.3204e-17,7.7307e-18,-6.5897e-19 -6.1614e-18,5.7689e-18,4.8501e-18,-6.1259e-18,2.19e-17,-2.0942e-19,-5.1818e-18,-8.8899e-19,8.132e-18,5.345e-18,1.1014e-17,9.0874e-18,2.8338e-17,1.6604e-17,-1.6929e-18 1.3119e-05,-4.6606e-06,-2.4421e-05,-1.9636e-05,-2.5453e-05,-3.4674e-05,1.3754e-05,9.6929e-06,5.4893e-05,-4.0985e-05,6.2086e-05,2.717e-05,5.7408e-05,5.0385e-05,1.7641e-05 8.326e-05,-3.9024e-05,-9.6309e-05,-0.0001022,4.5855e-05,-8.4274e-05,0.0001416,6.8488e-05,0.00021424,-1.2595e-05,0.00020701,0.00025524,6.9579e-05,3.7099e-05,4.2275e-05 0.0026999,-0.0019058,-0.0022626,-0.0030213,0.00071297,0.00084773,0.0039027,0.0039722,0.0015492,-0.0017741,0.0031385,0.0076696,0.00061388,0.0021956,-0.00053104 0.015452,-0.011192,-0.0054459,-0.014343,0.0020376,0.0068106,0.019217,0.02337,0.00072155,-0.0076639,0.0028731,0.031374,0.0015052,0.008082,-0.018621 0.044433,-0.034899,-0.0031108,-0.03563,0.00060917,0.017894,0.042778,0.050009,-0.0059307,-0.015239,-0.01607,0.059107,0.005743,0.0003677,-0.074443 0.085072,-0.067611,0.02212,-0.055371,-0.0040703,0.011412,0.058314,0.05953,-0.012343,-0.015374,-0.061386,0.061715,0.045691,-0.046843,-0.12809 0.10359,-0.07922,0.070084,-0.04315,-0.0076095,-0.033524,0.035144,0.022904,0.0033268,0.015405,-0.094065,0.0091862,0.10915,-0.10796,-0.070137 0.066448,-0.050825,0.098742,-0.0039309,-0.01101,-0.1043,-0.030643,-0.014529,0.017954,0.067137,-0.034119,-0.049771,0.11203,-0.084708,0.086115 -0.0044624,-0.0023638,0.074473,0.00055802,-0.02639,-0.1432,-0.081773,0.020334,-0.0042222,0.071624,0.074351,-0.054978,0.010725,0.027826,0.14345 -0.051221,0.029234,0.034151,-0.067833,-0.049053,-0.12239,-0.079047,0.087175,-0.053544,0.012341,0.10896,-0.031038,-0.065891,0.092717,0.065816 -0.057686,0.03723,0.025374,-0.14803,-0.067095,-0.082983,-0.059293,0.10226,-0.078683,-0.032976,0.073369,-0.00096023,-0.028008,0.063116,0.0056737 -0.05143,0.040034,0.037918,-0.18426,-0.072325,-0.068203,-0.050633,0.092805,-0.066367,-0.037252,0.040991,0.03005,0.041345,0.021484,-0.0059697 -0.047045,0.041923,0.047747,-0.18741,-0.059827,-0.077647,-0.047825,0.088407,-0.036016,-0.015574,0.021669,0.062383,0.064771,0.0032361,-0.018907 -0.047219,0.036513,0.046506,-0.16353,-0.030359,-0.10032,-0.040414,0.075151,-0.0074551,0.028663,-0.012949,0.10046,0.039819,0.0042897,-0.039815 -0.055779,0.027918,0.031456,-0.1018,-0.00073081,-0.1183,-0.012973,0.039292,-0.013369,0.069349,-0.051752,0.10701,-0.017639,0.0045489,-0.061123 -0.050455,0.023403,0.032868,-0.034937,0.0043377,-0.099132,-0.0083666,-0.01042,-0.01019,0.042888,-0.046198,0.045254,-0.05342,-0.024688,-0.049464 -0.0019567,-0.0039192,0.070677,-0.023799,0.0054309,-0.057599,-0.047756,-0.037842,0.036067,-0.032499,0.014658,-0.035996,-0.045614,-0.032274,-0.0013171 0.062506,-0.062871,0.10071,-0.058156,0.015458,-0.010971,-0.052924,0.0051069,0.053343,-0.049443,0.059181,-0.061938,-0.016474,0.034003,0.058691 0.08376,-0.090801,0.066271,-0.064924,0.017539,0.019161,0.0039051,0.078292,-0.010497,0.009884,0.037521,0.00029233,0.020932,0.11013,0.046107 0.056979,-0.07015,0.019436,-0.041914,0.0097704,0.0073353,0.041486,0.089099,-0.064593,0.044501,0.0016047,0.055459,0.039076,0.1013,-0.0071558 0.026912,-0.038986,0.0031057,-0.017943,0.0015398,-0.0118,0.038018,0.054648,-0.060449,0.036995,-0.013338,0.055042,0.03489,0.053876,-0.031728 0.011811,-0.019409,0.00034627,-0.0046725,5.6929e-05,-0.015343,0.023687,0.026349,-0.038407,0.02168,-0.011277,0.033274,0.0223,0.021003,-0.0275 0.004779,-0.0086821,0.00021287,0.0012151,0.0018728,-0.01151,0.010719,0.011414,-0.02007,0.010067,-0.0063764,0.01401,0.014314,0.0061384,-0.017705 0.0015894,-0.0025079,-0.00040445,0.0017665,0.0014725,-0.0049621,0.0029575,0.0033702,-0.0071933,0.0041008,-0.0017196,0.0038279,0.0070755,0.0012856,-0.005441 0.00013659,-0.00024107,-0.00019168,0.00058357,0.00042671,-0.00088282,0.00045431,0.00041804,-0.0015984,0.0015148,-0.00061366,0.00075651,0.0016341,0.00037833,-0.00019641 2.2681e-05,-1.6525e-05,-3.0092e-05,2.1628e-05,5.5088e-06,-5.8708e-05,1.2339e-05,-4.7156e-05,-1.1805e-05,0.00010006,-4.0011e-05,4.6065e-05,0.00013496,3.0159e-05,0.00013002 -8.5143e-18,6.7152e-18,5.6701e-18,-8.7752e-18,2.7755e-17,-1.7454e-18,-5.4868e-18,9.4514e-19,5.843e-18,8.3775e-18,1.19e-17,1.0277e-17,3.2354e-17,1.9604e-17,-1.1489e-18 -1.1091e-17,5.3302e-18,7.9626e-18,-9.2249e-18,3.2569e-17,2.7083e-19,-6.1619e-18,-1.3831e-18,7.028e-18,3.9694e-18,1.2942e-17,1.4611e-17,3.8662e-17,2.6017e-17,-2.1338e-18 6.5055e-07,-2.311e-07,-1.2109e-06,-9.7369e-07,-1.2621e-06,-1.7194e-06,6.8201e-07,4.8064e-07,2.722e-06,-2.0323e-06,3.0786e-06,1.3473e-06,2.8467e-06,2.4984e-06,8.7474e-07 6.5156e-05,-3.4848e-05,-6.4537e-05,-4.1152e-05,1.1211e-05,-4.8963e-05,3.9105e-05,4.3391e-05,0.00016553,-0.00010919,0.00015752,9.1823e-05,0.00013478,5.9176e-05,4.4688e-05 0.0027234,-0.002125,-0.0018935,-0.0025967,7.8735e-05,0.00093455,0.0027906,0.0041873,0.0010981,-0.0021246,0.0029656,0.0066174,0.0017352,0.0021694,-0.001662 0.014013,-0.012492,-0.0033732,-0.01011,0.0013032,0.0056764,0.0146,0.021273,-0.0029174,-0.0065338,0.0017667,0.026739,0.010132,0.0052678,-0.020776 0.039169,-0.042214,0.0002945,-0.019571,0.00072526,0.013727,0.032226,0.051477,-0.020523,-0.00906,-0.013704,0.053772,0.036664,-0.0074773,-0.077784 0.073809,-0.082141,0.019687,-0.01786,0.0044393,0.0026021,0.047718,0.069952,-0.035877,-0.012235,-0.038471,0.063157,0.088336,-0.049507,-0.13751 0.095376,-0.10169,0.048482,0.007998,0.013468,-0.040806,0.040208,0.051692,-0.013668,0.0033069,-0.059954,0.023959,0.12112,-0.10223,-0.11544 0.080439,-0.082962,0.071791,0.043848,0.013318,-0.10824,0.0051334,0.020202,0.036719,0.051509,-0.032982,-0.023055,0.081882,-0.093003,-0.0094959 0.041254,-0.039201,0.074047,0.039561,-0.0065787,-0.15701,-0.036755,0.031431,0.074087,0.09982,0.015781,-0.029868,-0.01733,-0.010055,0.049443 0.0097152,-0.0081801,0.06764,-0.014651,-0.040292,-0.16728,-0.05647,0.070223,0.085767,0.11661,0.030487,-0.0016728,-0.070393,0.055403,0.017555 -0.0037422,0.0010347,0.069202,-0.066518,-0.063365,-0.16131,-0.058189,0.093534,0.089587,0.11881,0.020127,0.032648,-0.05588,0.067614,-0.028601 -0.0044477,-0.0011131,0.072884,-0.079972,-0.06182,-0.15898,-0.055229,0.094526,0.099059,0.12252,0.0085128,0.063953,-0.034991,0.063568,-0.053703 -0.001235,-0.010811,0.068697,-0.063857,-0.040367,-0.15913,-0.050618,0.081167,0.10391,0.13009,-0.0069222,0.088512,-0.048397,0.068192,-0.064643 -0.0080044,-0.025534,0.04596,-0.032927,-0.0057298,-0.14924,-0.036484,0.048434,0.069859,0.13268,-0.031314,0.10297,-0.085525,0.071535,-0.060407 -0.0337,-0.025765,0.024258,-0.0049195,0.012909,-0.11359,-0.0020934,0.0092629,0.0053323,0.1088,-0.04739,0.069606,-0.10615,0.046862,-0.048023 -0.032976,-0.0051215,0.043898,0.015336,0.0054356,-0.069291,-0.0061461,-0.014848,-0.0089529,0.041465,-0.035013,-0.0089569,-0.077075,0.0083036,-0.027083 0.027957,-0.011714,0.085585,0.0042393,0.011287,-0.042367,-0.047561,-0.01158,0.024306,-0.018235,0.020273,-0.082766,-0.029611,0.012054,-0.0017923 0.094364,-0.057738,0.084805,-0.028781,0.029487,-0.026755,-0.030197,0.035458,0.0099295,-0.013409,0.069564,-0.074796,0.01544,0.071503,0.019892 0.095424,-0.079913,0.03198,-0.03276,0.026884,-0.016015,0.039799,0.082573,-0.057637,0.032393,0.060846,0.019512,0.037917,0.10383,0.0059804 0.058209,-0.061872,-0.00060054,-0.015174,0.015,-0.024056,0.065161,0.07825,-0.086041,0.044928,0.024692,0.069473,0.041449,0.075029,-0.023951 0.026557,-0.037203,-0.0033782,-0.0029239,0.0071744,-0.027827,0.048327,0.04777,-0.070633,0.034478,-0.00038621,0.059239,0.036213,0.034439,-0.036328 0.012051,-0.02001,-0.0010094,0.003127,0.0054106,-0.022551,0.02843,0.023445,-0.045727,0.020403,-0.0068237,0.032891,0.026477,0.012982,-0.03027 0.0049243,-0.0091919,0.00012892,0.0047197,0.0050248,-0.013749,0.012851,0.010093,-0.02455,0.011058,-0.005214,0.013357,0.016638,0.0022633,-0.018894 0.0014761,-0.0028974,-0.00048451,0.0027329,0.0027149,-0.005809,0.0037828,0.0030832,-0.0087001,0.0049621,-0.0014677,0.0039014,0.0072999,-0.0010412,-0.0061645 0.00011918,-0.0004576,-0.00038761,0.0010212,0.0010049,-0.0014336,0.00074516,0.00074921,-0.0019865,0.0016588,-0.00051043,0.0010254,0.0015143,-0.00019195,-0.00086764 4.2265e-05,2.2244e-06,-1.1902e-05,6.3809e-05,0.00015662,-0.00015211,0.0001036,3.9079e-06,-0.00020101,0.00023152,-0.00016027,5.2112e-05,0.0002555,7.2423e-05,0.00040383 7.865e-06,4.8156e-06,-2.6347e-07,1.356e-05,-1.3759e-06,-1.975e-05,2.7648e-07,-7.1019e-06,-6.325e-06,8.3073e-06,-3.361e-05,-2.5426e-05,6.1853e-06,3.431e-05,2.2466e-05 -7.0288e-18,3.6412e-18,4.8275e-18,-6.2919e-18,2.074e-17,-1.8146e-18,-3.9794e-18,-1.8125e-19,6.0355e-18,3.4211e-18,9.9654e-18,7.8948e-18,2.5342e-17,1.6442e-17,-2.1805e-18 -5.3362e-18,3.8657e-18,2.9469e-18,-5.4135e-18,1.5583e-17,-1.9171e-20,-3.4373e-18,-1.3773e-18,7.091e-18,2.5613e-18,6.961e-18,7.2994e-18,2.0169e-17,1.2092e-17,-1.1441e-19 2.0952e-05,-2.9848e-05,-3.3898e-05,5.8754e-06,5.1641e-05,-2.3232e-05,3.9487e-05,6.1155e-05,-6.1328e-06,-6.8646e-05,5.1006e-05,1.6299e-05,7.334e-05,1.793e-05,9.1406e-05 0.0017568,-0.0016239,-0.00093594,-0.0011605,0.00014367,0.00083694,0.0015473,0.0028287,0.00016584,-0.0013061,0.0015316,0.0038131,0.0014993,0.0013923,-0.0014437 0.0097478,-0.010942,-0.0013692,-0.0040198,0.00085059,0.0040596,0.008301,0.015657,-0.0067195,-0.0049873,0.0015039,0.016983,0.014329,0.0018972,-0.016569 0.028902,-0.039668,0.00080976,-0.0012652,0.0057243,0.0067824,0.020681,0.043473,-0.029563,-0.0080663,-0.0021337,0.040464,0.05059,-0.010665,-0.063308 0.054651,-0.076836,0.008908,0.015392,0.01783,0.001271,0.037015,0.06485,-0.054488,-0.017111,-0.0095471,0.049681,0.095408,-0.039311,-0.11599 0.07598,-0.10225,0.022601,0.050871,0.040361,-0.021229,0.047931,0.055981,-0.048392,-0.019189,-0.017368,0.032232,0.11348,-0.076147,-0.12871 0.082599,-0.10173,0.037584,0.094841,0.062797,-0.062383,0.045536,0.029096,-0.0058776,0.0095132,-0.01734,0.0010838,0.071156,-0.087349,-0.084726 0.073803,-0.077852,0.049868,0.11775,0.06915,-0.10244,0.030323,0.014163,0.049788,0.068088,-0.012324,-0.010364,-0.01256,-0.054605,-0.037536 0.061548,-0.057427,0.056016,0.1126,0.059731,-0.12221,0.014394,0.018396,0.092113,0.11937,-0.011194,-0.0021637,-0.076706,-0.01109,-0.028715 0.05435,-0.048832,0.057701,0.1034,0.050586,-0.12745,0.0062516,0.025706,0.10728,0.14636,-0.013678,0.012477,-0.10882,0.020261,-0.036256 0.050956,-0.052084,0.05165,0.10556,0.053046,-0.12475,0.0017798,0.021204,0.095986,0.14959,-0.014926,0.027664,-0.12814,0.03805,-0.032167 0.041488,-0.065985,0.030687,0.10642,0.066295,-0.11944,-0.0067292,0.001811,0.050905,0.13386,-0.02586,0.045681,-0.14792,0.052682,-0.011946 0.0034492,-0.079614,0.0018137,0.08267,0.069909,-0.10331,0.0037836,-0.031864,-0.020379,0.11108,-0.039113,0.03909,-0.15237,0.061046,6.6139e-05 -0.044384,-0.056949,0.013966,0.057457,0.03612,-0.063505,0.038862,-0.034549,-0.062573,0.073702,-0.039886,-0.014197,-0.12124,0.038249,0.00088405 -0.024826,-0.0091049,0.07123,0.052534,0.0070406,-0.031209,0.011469,-0.016362,-0.035978,0.011384,-0.027754,-0.080281,-0.063579,0.015566,-0.0096711 0.060726,0.0014486,0.10263,0.03211,0.028341,-0.021815,-0.040277,0.0067887,-0.00063855,-0.032996,0.026074,-0.13206,-0.0046994,0.030738,-0.01843 0.11986,-0.037299,0.056039,-0.0078433,0.055325,-0.020105,-0.010683,0.035962,-0.02613,-0.014572,0.087511,-0.084152,0.027188,0.063536,-0.0065531 0.09729,-0.060914,0.00038718,-0.018605,0.045212,-0.017122,0.060059,0.059953,-0.071675,0.023452,0.086739,0.025004,0.03282,0.062799,0.0094384 0.053709,-0.049511,-0.013674,-0.0066796,0.02697,-0.017099,0.073603,0.056176,-0.078713,0.030253,0.043424,0.066058,0.030394,0.039623,-0.0039992 0.023619,-0.029425,-0.0067974,0.0027089,0.014701,-0.018446,0.047811,0.03453,-0.060064,0.022493,0.0099751,0.050144,0.028096,0.016768,-0.017247 0.010629,-0.015486,-0.0030024,0.0057482,0.0089322,-0.014106,0.025513,0.016418,-0.037223,0.012066,-0.0015812,0.025485,0.019898,0.0046612,-0.01705 0.0040904,-0.006761,-0.00086407,0.0055766,0.0055589,-0.0082586,0.010586,0.0064857,-0.018273,0.0061236,-0.0027774,0.0082123,0.012643,-0.0017301,-0.009855 0.001128,-0.0026232,-0.00054295,0.0028091,0.0022123,-0.0036302,0.0034321,0.0013073,-0.0074268,0.003523,-0.0010976,0.0029914,0.006069,-0.0024756,-0.0041908 0.00013934,-0.0004584,-0.00026933,0.00049261,0.00035992,-0.00097589,0.0007671,-0.000132,-0.0016458,0.0012975,-0.00044466,0.00061924,0.0013862,-0.00057865,-0.00029524 3.1394e-05,-3.1969e-05,-6.5721e-05,6.5805e-05,4.9644e-05,-3.3348e-05,4.6042e-06,-5.8542e-05,-0.00014728,0.00024756,4.3852e-05,-6.966e-05,0.00015997,0.00010808,0.00024967 2.4456e-06,7.5056e-07,2.7239e-07,6.0963e-06,2.2017e-07,-7.2623e-06,-2.7516e-06,-1.8305e-06,-1.9807e-06,6.5505e-06,-1.0736e-05,-1.4541e-05,-1.0611e-06,1.952e-05,7.86e-06 -6.5526e-18,5.6853e-18,6.915e-18,-1.1078e-17,2.7978e-17,-1.1305e-18,-5.9756e-18,-2.0937e-18,1.1027e-17,6.5204e-18,1.2883e-17,1.2712e-17,3.7371e-17,2.2679e-17,-1.3632e-18 -1.1222e-18,9.1013e-19,6.5354e-19,-1.1402e-18,4.2257e-18,-2.8361e-19,-4.8836e-19,-1.5098e-19,1.0305e-18,1.2661e-18,2.0671e-18,1.929e-18,5.1559e-18,3.8542e-18,-1.2924e-19 2.6408e-05,-6.3326e-05,-3.4418e-05,4.9088e-05,0.00012152,-1.4215e-05,6.1355e-05,0.0001558,2.1517e-05,-0.00019835,3.4919e-05,1.7061e-05,0.00016529,0.0001163,0.00018199 0.00070644,-0.0009642,-0.00042633,-0.00028871,0.00044545,0.00043772,0.00068827,0.0013667,-0.00045828,-0.00076882,0.00081249,0.0017201,0.0012352,0.0004078,-0.00036131 0.0054485,-0.0073181,-0.00088426,0.00031345,0.0019264,0.0023661,0.0039952,0.009176,-0.0069858,-0.0045948,0.0027634,0.0080143,0.012956,0.00077993,-0.0084897 0.017188,-0.027144,-0.00044393,0.008806,0.0083715,0.0030947,0.010977,0.027597,-0.029051,-0.0096182,0.0073924,0.021674,0.04102,-0.005974,-0.033114 0.03311,-0.052241,0.00079429,0.028113,0.023624,0.0060983,0.02411,0.041885,-0.056353,-0.023752,0.011987,0.029454,0.070308,-0.019393,-0.063058 0.048116,-0.072206,0.0036859,0.059275,0.049254,0.0049557,0.040414,0.038046,-0.071867,-0.042703,0.015497,0.023301,0.081677,-0.034986,-0.077012 0.0599,-0.079379,0.0068641,0.094829,0.083561,1.0169e-05,0.054791,0.017168,-0.069598,-0.047271,0.014069,0.0064571,0.060201,-0.047638,-0.058683 0.066956,-0.073948,0.010901,0.12556,0.11092,-0.0070068,0.059146,-0.010439,-0.053199,-0.02593,0.008029,-0.0090294,0.016413,-0.050129,-0.025036 0.067943,-0.065576,0.014644,0.14444,0.12379,-0.010172,0.056254,-0.029319,-0.035696,0.0055196,0.0033469,-0.018977,-0.034511,-0.043434,0.0087433 0.065286,-0.06163,0.011076,0.15052,0.12518,-0.013321,0.04697,-0.040296,-0.034791,0.023987,-0.001689,-0.018787,-0.072603,-0.029355,0.03841 0.055028,-0.067022,-0.0037602,0.14316,0.12485,-0.019413,0.026359,-0.051697,-0.058093,0.025661,-0.016208,-0.00024603,-0.096232,-0.014192,0.072917 0.021563,-0.090344,-0.031512,0.10992,0.12164,-0.032172,0.0014981,-0.077297,-0.10041,0.024058,-0.040153,0.013726,-0.11086,0.0087391,0.078903 -0.043695,-0.10408,-0.02908,0.060314,0.087186,-0.031254,0.034608,-0.089696,-0.12636,0.037125,-0.039145,-0.032141,-0.10321,0.019741,0.034831 -0.07786,-0.056625,0.045472,0.054976,0.021788,-0.005722,0.078679,-0.041855,-0.1017,0.022992,-0.033987,-0.08624,-0.077476,0.0082981,0.016484 -0.014421,0.019635,0.12316,0.070784,-0.0018693,0.0085746,0.020641,0.0053498,-0.048083,-0.035576,-0.028609,-0.12574,-0.033924,0.015103,-0.01382 0.090566,0.036509,0.10962,0.03326,0.040932,-0.001582,-0.055215,0.01539,-0.014273,-0.070913,0.025425,-0.13992,0.016753,0.034528,-0.035563 0.12929,-0.0080244,0.024167,-0.025094,0.070909,-0.0079838,-0.013102,0.014265,-0.026667,-0.034657,0.10428,-0.074897,0.026362,0.039422,-0.002528 0.091399,-0.039494,-0.022274,-0.035946,0.051297,-0.0015911,0.061639,0.033527,-0.048079,0.0070406,0.10111,0.026672,0.020835,0.029013,0.040062 0.046403,-0.034367,-0.020977,-0.016806,0.027709,-0.00012647,0.066107,0.037157,-0.049822,0.013052,0.048984,0.061562,0.015412,0.018644,0.027785 0.019526,-0.019386,-0.0097741,-0.0034197,0.013883,-0.0027513,0.038795,0.023529,-0.036653,0.0088426,0.011637,0.043227,0.014104,0.007232,0.0039091 0.0079904,-0.0092832,-0.0039103,0.0017439,0.0072201,-0.0030617,0.01778,0.010175,-0.021835,0.0037724,-0.00053188,0.018963,0.010965,-0.00031226,-0.0042171 0.0027999,-0.0036805,-0.0012779,0.0025863,0.0042808,-0.0020495,0.0066837,0.0026282,-0.010591,0.0023489,-0.0012235,0.0055545,0.0071885,-0.0023288,-0.0024133 0.00073007,-0.001149,-0.00035493,0.0012945,0.0015935,-0.0010548,0.0015982,-1.5005e-05,-0.0041071,0.00083809,-0.00023136,0.0010411,0.0032812,-0.001062,-0.0005503 0.00014627,-0.00022998,-7.8119e-05,0.00015801,-6.5872e-05,-0.00021921,0.00014931,-0.00018235,-0.00056109,0.00029704,-6.6057e-05,0.00016042,0.00035189,-0.00020481,0.00039657 -1.2239e-05,-3.8577e-05,-1.3078e-05,6.116e-06,2.6509e-05,3.3658e-05,-6.3654e-05,1.8177e-05,-1.9555e-05,0.00012487,0.00012377,-8.8583e-05,-4.6314e-05,0.00011178,5.9257e-05 -1.255e-06,-1.746e-06,5.0585e-07,2.9707e-07,1.0678e-06,1.6835e-06,-3.7586e-06,1.6278e-06,9.9098e-07,3.868e-06,4.9902e-06,-4.6289e-06,-4.8937e-06,6.113e-06,-2.4401e-06 -1.1735e-05,-2.3755e-07,-1.1541e-05,-1.304e-05,1.1025e-05,-3.2028e-06,5.5625e-06,-3.6676e-06,-5.5725e-06,-2.4978e-05,-7.1698e-06,-1.5233e-05,-8.9163e-06,-8.9962e-08,-9.9287e-06 -3.3834e-18,2.9972e-18,2.7107e-18,-4.7471e-18,1.1927e-17,3.0744e-20,-3.028e-18,-7.8421e-19,4.9689e-18,4.0638e-18,5.7481e-18,4.699e-18,1.7054e-17,9.9896e-18,-7.1225e-19 8.0517e-06,-5.8239e-05,-3.5321e-05,4.0621e-05,0.00011734,-4.2155e-05,1.4746e-05,0.00010453,4.1974e-05,-0.00019456,2.8342e-05,-4.7517e-05,0.00010484,0.00012975,0.00011647 0.00033396,-0.00051631,-0.00029209,-2.9882e-05,0.00072436,0.00010039,0.00030107,0.0007935,-0.00053567,-0.00076136,0.00073445,0.00085059,0.0013189,0.00040638,0.00035895 0.0024073,-0.0037651,-0.00083548,0.00092917,0.0024515,0.0010873,0.0016249,0.004418,-0.0048896,-0.0037789,0.0033053,0.0037272,0.0075101,0.0010942,-0.0010504 0.008217,-0.013313,-0.0015411,0.0068909,0.0072178,0.0024348,0.0051675,0.012994,-0.019257,-0.0097589,0.0091951,0.0081971,0.022888,-0.00022707,-0.0081241 0.015499,-0.024811,-0.0029118,0.016876,0.016748,0.0059591,0.012037,0.019425,-0.037886,-0.020885,0.01538,0.013682,0.036343,-0.0018803,-0.015006 0.022938,-0.034522,-0.0034094,0.032506,0.032836,0.011842,0.022374,0.017419,-0.057189,-0.038157,0.020507,0.014395,0.044847,-0.0027232,-0.017074 0.029443,-0.039068,-0.0034053,0.0489,0.053365,0.021826,0.031287,0.0046228,-0.069609,-0.053883,0.020968,0.0088694,0.042351,-0.0045072,-0.004617 0.034857,-0.039121,-0.0051164,0.063351,0.073285,0.031649,0.037304,-0.014103,-0.079033,-0.060453,0.017857,-0.0012231,0.03412,-0.0093689,0.019449 0.037171,-0.038141,-0.0082983,0.07163,0.085706,0.03634,0.036075,-0.031061,-0.08525,-0.057223,0.011832,-0.0071821,0.018186,-0.017054,0.047513 0.032972,-0.043007,-0.018261,0.071313,0.092288,0.031327,0.019039,-0.043073,-0.09712,-0.050145,-0.0026158,0.0064825,-0.0056246,-0.022883,0.082698 0.012727,-0.06398,-0.04002,0.052326,0.096064,0.012735,-0.018834,-0.061455,-0.11948,-0.041238,-0.037809,0.033685,-0.028837,-0.014888,0.10687 -0.038492,-0.1015,-0.053968,0.0081954,0.087821,-0.010271,-0.026559,-0.092873,-0.13485,-0.012463,-0.061146,0.0081927,-0.042002,0.0080699,0.053862 -0.099163,-0.10294,-0.0008339,-0.010579,0.040279,-0.0022923,0.060447,-0.07926,-0.11128,0.024457,-0.028084,-0.076544,-0.040179,0.0050813,-0.01433 -0.092264,-0.027592,0.11019,0.038142,-0.020741,0.025869,0.10467,-0.0017292,-0.075164,0.0012327,-0.019968,-0.10164,-0.044089,0.0027502,0.0011349 0.007249,0.060834,0.15995,0.073653,-0.012746,0.02428,0.0029259,0.041823,-0.040587,-0.07266,-0.037106,-0.099579,-0.014437,0.028563,-0.02086 0.10859,0.068345,0.089918,0.018849,0.04939,-0.0053884,-0.086895,0.015123,-0.01323,-0.088553,0.015444,-0.10651,0.022957,0.041598,-0.057344 0.12497,0.012626,-0.0047,-0.053275,0.074974,-0.012024,-0.02331,-0.0039499,-0.005553,-0.031586,0.10817,-0.061328,0.022612,0.025288,0.0022513 0.08181,-0.024555,-0.035429,-0.058437,0.048417,0.0012301,0.056214,0.019054,-0.017308,0.0064751,0.10304,0.031407,0.007972,0.015562,0.062018 0.039517,-0.024564,-0.025161,-0.031535,0.021628,0.0056032,0.058633,0.030733,-0.022735,0.0090197,0.046719,0.065413,0.0018921,0.010267,0.044778 0.016298,-0.013641,-0.012104,-0.011783,0.0090556,0.0031495,0.033076,0.020366,-0.018025,0.0046357,0.009907,0.044365,0.0043104,0.0043796,0.013417 0.0061034,-0.0062664,-0.004643,-0.0029378,0.0037216,0.00087216,0.01383,0.0084782,-0.011197,0.0011891,-0.00095097,0.018819,0.0048701,-0.00089924,0.00026276 0.0020577,-0.0022331,-0.0015981,-9.2825e-05,0.0017435,0.00077753,0.0047637,0.0025082,-0.0051543,0.00038746,-0.0014012,0.0053928,0.0034464,-0.00074741,-0.00044063 0.00039769,-0.00043405,-0.00037938,0.00029822,0.00064305,0.00024975,0.00080211,-1.072e-05,-0.0015566,2.741e-05,-0.00040294,0.00064434,0.0013809,-0.0004039,0.00012274 8.9651e-05,-9.1065e-05,5.6884e-05,1.0262e-06,0.00019238,5.0374e-05,5.9048e-05,-0.00010246,-0.00019978,7.477e-05,-0.00021447,-4.3735e-05,9.6737e-05,-0.00013837,0.00012821 -4.08e-06,-7.6797e-06,7.1224e-08,-5.2845e-06,9.2749e-06,2.1634e-06,-3.4126e-05,1.328e-05,3.2431e-06,3.9134e-05,3.3232e-05,-4.9874e-05,-3.0982e-05,4.8569e-05,-8.0533e-06 -4.5635e-07,-6.3493e-07,1.8395e-07,1.0803e-07,3.883e-07,6.1218e-07,-1.3668e-06,5.9193e-07,3.6036e-07,1.4065e-06,1.8146e-06,-1.6832e-06,-1.7795e-06,2.2229e-06,-8.8733e-07 -3.6187e-18,2.2296e-18,3.3765e-18,-4.3076e-18,1.122e-17,-1.5771e-19,-2.3972e-18,-3.5268e-19,2.0474e-18,2.3936e-18,4.8878e-18,5.0012e-18,1.34e-17,8.3806e-18,-4.6142e-19 -4.8114e-18,4.722e-18,4.1838e-18,-6.2124e-18,2.0138e-17,-1.3888e-18,-3.7305e-18,-8.6358e-19,5.8887e-18,3.8263e-18,6.9537e-18,8.6459e-18,2.3698e-17,1.4178e-17,-7.9646e-19 3.0144e-05,-2.777e-05,-1.9506e-05,5.7642e-05,0.00012232,-5.7572e-05,3.4547e-06,4.9899e-05,-9.0583e-06,-0.00019181,6.677e-05,-0.00011777,5.3581e-05,4.3062e-05,2.5164e-05 0.0002512,-0.00035563,-0.00024263,-0.00014475,0.00047832,0.00018248,0.000147,0.00064014,-0.0005365,-0.000556,0.00051041,0.00056795,0.0010619,0.000254,0.00041958 0.0009756,-0.001746,-0.00051948,0.00046844,0.0014501,0.00059619,0.00066707,0.0019609,-0.0027865,-0.0018261,0.0023451,0.0020079,0.0036394,0.00066379,0.00089899 0.0031803,-0.005363,-0.0009069,0.0023731,0.0039388,0.0016603,0.0024309,0.0043985,-0.0096915,-0.0060138,0.0063107,0.0038528,0.010516,0.001881,0.00082248 0.0059797,-0.0092841,-0.0019371,0.0050358,0.0078682,0.0030335,0.0040778,0.0063547,-0.017812,-0.011274,0.010389,0.00632,0.015439,0.0041889,0.0015586 0.0079816,-0.011741,-0.0032458,0.0088236,0.013609,0.0066751,0.0073935,0.0053745,-0.026281,-0.019269,0.013183,0.0080213,0.018406,0.0074594,0.0040603 0.0097343,-0.01343,-0.0038098,0.012522,0.02103,0.012157,0.0094443,0.00099486,-0.035139,-0.027739,0.012366,0.0067024,0.019808,0.00953,0.010175 0.010825,-0.015083,-0.0055658,0.015428,0.028278,0.016958,0.0069027,-0.0042545,-0.043428,-0.033926,0.0081067,0.0075011,0.019225,0.0069472,0.020392 0.0089925,-0.020451,-0.0125,0.016132,0.036304,0.018289,-0.005256,-0.0084077,-0.054051,-0.037268,-0.0046642,0.022226,0.012476,-0.00029654,0.042382 -0.0025991,-0.037547,-0.029366,0.0056218,0.045823,0.0077626,-0.036232,-0.019944,-0.073412,-0.034332,-0.036191,0.054676,-0.0042451,-0.0031971,0.075826 -0.035142,-0.074819,-0.049387,-0.022918,0.056355,-0.013633,-0.069551,-0.051848,-0.091717,-0.018204,-0.074346,0.059567,-0.019619,0.010387,0.058949 -0.088796,-0.10853,-0.032763,-0.054677,0.044399,-0.021264,-0.022845,-0.086424,-0.084663,0.018504,-0.05679,-0.027976,-0.013564,0.018293,-0.036603 -0.12198,-0.083304,0.05931,-0.02968,-0.008103,0.0098918,0.099846,-0.042597,-0.052327,0.039465,0.0034292,-0.10896,-0.015658,0.00092665,-0.059134 -0.076669,0.012529,0.16122,0.050802,-0.051176,0.036122,0.11101,0.048643,-0.043232,-0.014496,-0.011848,-0.068356,-0.033992,0.0079256,0.0044193 0.033571,0.091753,0.15683,0.07956,-0.01319,0.014469,-0.03397,0.064853,-0.039399,-0.090672,-0.057719,-0.036888,-0.016194,0.043391,-0.03196 0.11401,0.082211,0.056642,0.0073704,0.054254,-0.023014,-0.11105,0.0044373,-0.012882,-0.080455,0.0042349,-0.081609,0.021621,0.045371,-0.085998 0.11646,0.019406,-0.025718,-0.065475,0.072311,-0.022354,-0.02469,-0.016268,0.0074494,-0.014984,0.10405,-0.0653,0.021315,0.016062,-0.00068119 0.075153,-0.017637,-0.041657,-0.066615,0.043375,-0.0038616,0.054908,0.013456,0.00091481,0.015635,0.10188,0.028304,0.00023716,0.006776,0.072833 0.036974,-0.020446,-0.027333,-0.037405,0.016222,0.0045987,0.056533,0.028233,-0.0085224,0.013319,0.047465,0.065717,-0.0051142,0.004538,0.053428 0.015349,-0.011988,-0.013126,-0.015182,0.0050716,0.0037587,0.031463,0.020571,-0.0094711,0.0066502,0.011177,0.045476,0.00055186,0.0016744,0.017759 0.005436,-0.0055016,-0.0052806,-0.0050011,0.0010536,0.0019474,0.012913,0.0092134,-0.0061223,0.0029012,-0.00069727,0.020663,0.0027526,-0.0010149,0.0016895 0.0017586,-0.0020589,-0.001858,-0.0013141,0.0002137,0.0015538,0.0041328,0.0031202,-0.0029841,0.001316,-0.001292,0.0068638,0.0025036,-0.00052009,-0.00067904 0.00035151,-0.00042937,-0.00039766,-0.00014729,7.5198e-05,0.00047595,0.00073033,0.00038417,-0.00090438,0.00017972,-0.00059566,0.0010286,0.001144,-0.00041064,-0.00016028 6.1217e-05,-7.9556e-05,6.055e-05,-3.5802e-05,0.00016641,9.2352e-05,3.3511e-05,7.0324e-06,-0.0001026,9.7057e-05,-0.00032036,7.3213e-05,7.2356e-05,-0.00010589,8.8982e-05 2.001e-06,2.5022e-06,-5.788e-07,-4.2972e-06,1.0074e-06,-4.6642e-06,-2.5525e-06,2.4663e-06,-4.048e-07,3.2019e-06,-8.9252e-07,-8.6691e-06,1.5667e-06,3.2485e-06,2.2078e-06 -8.9859e-18,5.1487e-18,8.3915e-18,-1.1082e-17,3.408e-17,-2.503e-18,-6.1907e-18,-3.6995e-18,8.8273e-18,7.7567e-18,1.5578e-17,1.4643e-17,4.129e-17,2.8001e-17,-4.033e-18 -1.0203e-17,7.1481e-18,3.0883e-18,-1.3116e-17,3.0444e-17,-2.4748e-18,-7.5357e-18,-2.4106e-18,9.8262e-18,6.7706e-18,1.4412e-17,1.3724e-17,3.9103e-17,2.4503e-17,-2.0596e-18 -8.9964e-18,6.9316e-18,4.6307e-18,-6.9974e-18,2.7151e-17,-8.8863e-19,-6.5639e-18,-3.6326e-19,1.0552e-17,8.5728e-18,1.4175e-17,9.8537e-18,3.5543e-17,2.2888e-17,-1.6292e-18 2.0175e-05,-1.3927e-05,7.4879e-06,2.1556e-05,7.3949e-05,-2.8505e-05,2.9784e-06,4.3683e-05,3.0206e-05,-0.00011557,3.3352e-05,-5.7609e-05,7.3229e-05,3.8021e-05,2.4975e-05 0.00013558,-0.00013972,-0.00010232,-9.7382e-05,0.00026101,4.4933e-05,4.2617e-05,0.00029193,-0.00026528,-0.00033031,0.00026525,0.00018586,0.00058777,7.7288e-05,0.00030301 0.00039173,-0.00065101,-0.00022872,-9.3018e-05,0.00068745,0.00054633,0.0002965,0.0010298,-0.0015877,-0.00041052,0.00084745,0.0010152,0.0015576,0.00067981,0.00057876 0.0010357,-0.0018278,-0.00018862,-0.00040201,0.0015474,0.00095509,0.00047948,0.0018612,-0.0044806,-0.0021501,0.0025807,0.0028064,0.0038504,0.0023822,0.00096397 0.0020344,-0.0030852,-0.0005471,3.3262e-05,0.0034754,0.001467,0.0010599,0.0028558,-0.0080601,-0.0047651,0.0041798,0.0039137,0.0057483,0.0050153,0.0021334 0.0024055,-0.0036199,-0.0014968,6.7453e-05,0.0046603,0.0021471,0.0016949,0.0027088,-0.01045,-0.0068843,0.0044743,0.0054357,0.0059223,0.0070009,0.0040687 0.0021374,-0.0052772,-0.0031165,-0.00038896,0.0069847,0.0031148,-0.00047702,0.0025433,-0.014489,-0.009879,0.0022014,0.009281,0.0042637,0.0075078,0.0097549 7.6211e-05,-0.0096833,-0.0079276,-0.0010466,0.011259,0.0024362,-0.010245,0.0032294,-0.021813,-0.012687,-0.006294,0.021788,0.00013343,0.0048292,0.024581 -0.0071462,-0.022979,-0.019432,-0.007761,0.019837,-0.0034865,-0.035875,-8.5516e-06,-0.036788,-0.015128,-0.030395,0.050454,-0.010773,0.0032858,0.054443 -0.027847,-0.052618,-0.037405,-0.027785,0.033936,-0.016723,-0.074433,-0.020854,-0.057091,-0.010578,-0.071317,0.074267,-0.024231,0.012721,0.065904 -0.068353,-0.093453,-0.041644,-0.059227,0.041913,-0.028818,-0.075695,-0.06402,-0.062212,0.012369,-0.084424,0.025223,-0.020294,0.029566,-0.0089267 -0.11135,-0.1059,0.011129,-0.069937,0.014693,-0.014369,0.024282,-0.074774,-0.036068,0.045917,-0.022612,-0.090212,-0.001905,0.022359,-0.10136 -0.11299,-0.051397,0.11399,-0.013676,-0.040231,0.025,0.14027,0.00058074,-0.018061,0.038743,0.034811,-0.11094,-0.014273,-0.0032809,-0.053806 -0.046419,0.047595,0.17742,0.073906,-0.061611,0.033912,0.09795,0.083428,-0.039166,-0.038228,-0.016861,-0.0064822,-0.040897,0.012293,0.032779 0.053699,0.10659,0.13065,0.080216,-0.007172,-0.0026404,-0.068624,0.064163,-0.051705,-0.097647,-0.076681,0.012088,-0.023044,0.053574,-0.045427 0.1124,0.083122,0.028201,-0.0011082,0.058354,-0.035438,-0.11781,-0.0091282,-0.014708,-0.065439,-6.3384e-05,-0.08077,0.021976,0.043918,-0.10647 0.10865,0.022091,-0.036828,-0.066964,0.069755,-0.030899,-0.022116,-0.023711,0.012769,-0.0027853,0.10063,-0.074571,0.020126,0.0079937,-0.0055193 0.071772,-0.01275,-0.044688,-0.067971,0.04072,-0.0093344,0.053925,0.0090207,0.0079476,0.021624,0.10194,0.018462,-0.0038397,-0.00067417,0.0769 0.036953,-0.017706,-0.029409,-0.039558,0.015341,0.001594,0.057295,0.025811,-0.001045,0.016937,0.049246,0.059604,-0.0093557,-1.4572e-05,0.060082 0.016281,-0.011593,-0.014518,-0.017372,0.0040933,0.0027615,0.033447,0.021209,-0.0051392,0.0082163,0.012932,0.046185,-0.0031292,0.0002674,0.021806 0.0063677,-0.0057446,-0.006722,-0.0063426,0.00011444,0.0018298,0.01505,0.011028,-0.0041201,0.0035012,0.00053576,0.023177,0.001076,-0.00053554,0.0042279 0.0022021,-0.0024819,-0.0024624,-0.0019319,-0.00079352,0.0016107,0.0052309,0.0042272,-0.0024682,0.0018526,-0.0016296,0.0083031,0.0019285,-0.00023407,-0.00065494 0.00055308,-0.00057644,-0.00074631,-0.00050192,-0.00032171,0.0006414,0.0011927,0.0010259,-0.00095548,0.00050299,-0.00092296,0.0017739,0.0013001,-0.00061496,-0.00023526 9.5409e-05,-7.1478e-06,-4.5273e-05,-9.3601e-05,7.6185e-05,0.00011045,9.4967e-05,0.00010652,-0.0001662,0.00014732,-0.00043785,0.00012917,0.00015981,-0.00031245,0.00010341 -1.4736e-18,8.4327e-19,8.7008e-19,-1.0756e-18,5.1497e-18,-3.6052e-20,-1.4469e-18,-5.7706e-19,1.9424e-18,1.36e-18,2.8703e-18,2.1392e-18,7.3456e-18,4.0444e-18,-4.475e-19 -3.532e-18,2.7224e-18,2.5169e-18,-3.4057e-18,1.2161e-17,7.2449e-20,-3.3925e-18,-2.6704e-19,5.7361e-18,4.4543e-18,6.4082e-18,5.4852e-18,1.8734e-17,9.5045e-18,-8.0766e-19 -1.7359e-19,1.5305e-19,1.9706e-19,-1.6557e-19,6.8636e-19,-1.6273e-20,-8.7437e-20,-4.5247e-20,2.0687e-19,1.4774e-19,3.4463e-19,3.08e-19,9.0525e-19,5.3072e-19,-1.985e-20 -3.5399e-18,3.1715e-18,2.7065e-18,-3.8543e-18,1.299e-17,1.2773e-20,-3.979e-18,-7.015e-19,5.5095e-18,3.7159e-18,6.7755e-18,5.8717e-18,1.8339e-17,1.2489e-17,-1.1677e-18 1.984e-06,9.8424e-07,3.0592e-06,2.4744e-06,1.3703e-07,4.0777e-06,-3.5377e-06,7.5638e-06,1.9562e-05,-1.8285e-06,-4.6631e-06,7.9107e-06,1.4853e-05,2.5611e-06,1.4872e-05 1.2574e-05,-2.989e-05,-2.2172e-05,-1.3829e-05,7.2005e-05,3.9651e-05,-3.2045e-06,1.469e-05,-5.6481e-05,-9.2625e-05,3.2191e-05,1.1457e-05,4.6799e-05,9.2052e-05,9.1916e-05 -8.1051e-06,-0.00025109,1.1672e-05,-0.00037025,0.00042158,0.0004367,1.2163e-05,0.0004106,-0.00097272,-0.00027624,0.00014392,0.00042679,0.00047738,0.0015046,0.00024354 0.00026398,-0.00071608,2.2209e-05,-0.00099673,0.00088364,0.0010272,-0.00047311,0.0011794,-0.0029746,-0.0011225,0.00094363,0.0015366,0.0012669,0.0039628,0.0010768 0.0005882,-0.0013392,-8.6549e-05,-0.0015515,0.0015529,0.0015789,-0.0005147,0.0020708,-0.004525,-0.001865,0.001243,0.0028085,0.0014726,0.0062064,0.0015251 0.00041644,-0.0026796,-0.0013977,-0.0021695,0.0026009,0.0016251,-0.0024597,0.0034977,-0.0073577,-0.0028485,0.00015722,0.0063894,-0.00030701,0.0080072,0.0057735 -0.0010743,-0.0060908,-0.0051981,-0.0038082,0.0056322,0.00095608,-0.0099743,0.0055398,-0.012334,-0.0047574,-0.0060908,0.01699,-0.0049366,0.0091925,0.01748 -0.006392,-0.01575,-0.014061,-0.009431,0.012512,-0.0027699,-0.030548,0.0049716,-0.023861,-0.0084597,-0.024092,0.041005,-0.013529,0.0094444,0.044609 -0.020639,-0.037188,-0.028299,-0.025638,0.024065,-0.010967,-0.066238,-0.0062259,-0.040301,-0.008711,-0.058785,0.067285,-0.026549,0.018156,0.06864 -0.049911,-0.072688,-0.039173,-0.052909,0.037555,-0.023035,-0.090439,-0.040545,-0.051769,0.0022296,-0.088758,0.054009,-0.029763,0.034168,0.031824 -0.089379,-0.10254,-0.016862,-0.077426,0.031787,-0.023725,-0.043179,-0.076362,-0.036458,0.030463,-0.058748,-0.042188,-0.0069646,0.040898,-0.078394 -0.11291,-0.087992,0.058471,-0.061758,-0.0082375,0.0040584,0.083219,-0.052164,-0.0050865,0.05233,0.027508,-0.13424,0.0073651,0.013019,-0.12295 -0.089387,-0.015654,0.14586,0.012549,-0.056182,0.034951,0.15987,0.03846,-0.01169,0.018974,0.053669,-0.072894,-0.022219,-0.010483,-0.012778 -0.017949,0.070909,0.16753,0.087193,-0.059077,0.02482,0.065624,0.094944,-0.052525,-0.058308,-0.035788,0.057965,-0.05479,0.021856,0.055624 0.064075,0.10981,0.10022,0.074466,0.0026568,-0.01612,-0.091663,0.049115,-0.05872,-0.094789,-0.09014,0.033818,-0.024044,0.06012,-0.064759 0.10688,0.08089,0.0094978,-0.006496,0.06029,-0.042789,-0.11559,-0.020267,-0.014985,-0.051679,-0.0030554,-0.086114,0.022255,0.037826,-0.11981 0.10122,0.025323,-0.041252,-0.06396,0.066457,-0.035455,-0.021251,-0.028665,0.013121,0.0038681,0.096306,-0.085681,0.018443,0.00047159,-0.010284 0.070135,-0.0080227,-0.046252,-0.067528,0.039189,-0.015137,0.050618,0.0049693,0.012105,0.024007,0.10174,0.0047053,-0.0047061,-0.00888,0.075505 0.038748,-0.016128,-0.030734,-0.04095,0.017067,-0.0019576,0.057766,0.022307,0.0030843,0.018116,0.0539,0.0525,-0.011284,-0.0037762,0.064091 0.017891,-0.011248,-0.016221,-0.018977,0.005168,0.00099643,0.035766,0.01998,-0.0025689,0.0091745,0.017105,0.044655,-0.0059226,-0.0015937,0.02742 0.0077084,-0.0061105,-0.0080055,-0.0077139,0.00039772,0.0013392,0.01745,0.011679,-0.0035832,0.0043464,0.0024213,0.025092,-0.00040098,-0.0017139,0.007852 0.0028756,-0.0026552,-0.0030427,-0.0027465,-0.00080508,0.0013167,0.0064601,0.0051015,-0.0022656,0.0025154,-0.0010906,0.0096681,0.00079049,-0.00073852,0.00026538 0.00077974,-0.00073382,-0.0010282,-0.00089474,-0.0004304,0.00072971,0.0017218,0.0011443,-0.0011995,0.00092473,-0.00084536,0.0026216,0.001249,-0.00080009,-0.00029621 7.2751e-05,6.6588e-06,-2.35e-05,-0.00016971,-4.0146e-05,-4.9631e-05,8.4099e-05,7.4764e-05,-9.3031e-05,0.00014223,-0.00033311,0.00017986,4.3421e-05,-0.00021598,0.00015359 -7.2399e-19,6.4132e-19,1.1324e-18,-7.5456e-19,2.7441e-18,-1.5097e-19,-4.9333e-19,6.8349e-20,7.0378e-19,7.7646e-19,1.5085e-18,1.0966e-18,3.6653e-18,2.1916e-18,-1.878e-19 -6.6343e-18,4.6894e-18,4.0643e-18,-5.1793e-18,1.9677e-17,-7.2783e-19,-2.9626e-18,-7.9693e-19,5.5636e-18,4.4862e-18,8.7339e-18,8.4516e-18,2.5437e-17,1.5088e-17,-8.6591e-19 -6.5314e-18,6.2172e-18,3.5694e-18,-4.6926e-18,2.0985e-17,-1.255e-18,-5.074e-18,-4.6945e-19,6.2509e-18,4.6871e-18,1.103e-17,7.9497e-18,2.7754e-17,1.6668e-17,-2.1231e-18 -1.036e-18,9.1058e-19,1.0095e-18,-1.4512e-18,4.6447e-18,-9.5777e-20,-9.5489e-19,-2.1424e-19,1.3927e-18,9.472e-19,1.9679e-18,1.6899e-18,5.3954e-18,3.215e-18,-1.1801e-19 -8.996e-18,7.4341e-18,7.8959e-18,-8.8479e-18,2.6614e-17,-8.8832e-19,-5.7495e-18,-3.7641e-18,1.0672e-17,7.5171e-18,1.4818e-17,1.3951e-17,3.4555e-17,2.3236e-17,-4.4149e-19 -5.8485e-05,-9.5894e-05,3.8954e-05,-0.00015925,0.00014831,0.00021082,-0.0001507,9.428e-05,-0.00020645,-0.00015359,-3.7526e-05,9.6127e-05,-7.964e-05,0.00069853,1.2733e-05 -0.00014328,-0.00028784,0.00018977,-0.00055694,0.00050796,0.00055195,-0.00035406,0.00016909,-0.00097209,-0.00042079,-7.0361e-05,0.00043759,-0.00015743,0.0024044,0.00014602 -0.0001131,-0.0005345,0.00011831,-0.00088116,0.00062957,0.00076938,-0.00088943,0.00060186,-0.0018473,-0.00075441,-1.3689e-06,0.00094383,-0.00012461,0.0040288,0.00083991 -0.00022849,-0.0013213,-0.00057968,-0.0014764,0.00077895,0.0010693,-0.0025089,0.0015769,-0.0032939,-0.0014984,-0.00031482,0.0030951,-0.00043154,0.0056337,0.0030958 -0.0012748,-0.0039069,-0.0029735,-0.0026949,0.0027371,0.00097739,-0.0079764,0.0033994,-0.0066905,-0.0027704,-0.0041518,0.010522,-0.0041317,0.0083492,0.011758 -0.0053917,-0.011051,-0.0096145,-0.0077379,0.0086084,-0.00020767,-0.023376,0.005147,-0.014504,-0.0071847,-0.018337,0.028487,-0.011856,0.012232,0.034469 -0.015336,-0.026545,-0.019862,-0.020865,0.019135,-0.0043787,-0.053202,1.1403e-05,-0.027891,-0.010714,-0.045949,0.054343,-0.023376,0.02254,0.062413 -0.036263,-0.053512,-0.031754,-0.045482,0.033035,-0.013036,-0.084787,-0.022834,-0.042072,-0.007442,-0.079549,0.062848,-0.030764,0.03874,0.056499 -0.068363,-0.084723,-0.027696,-0.073888,0.039507,-0.018282,-0.076672,-0.060757,-0.037302,0.0090768,-0.079156,0.0043128,-0.018369,0.053997,-0.026739 -0.097714,-0.094324,0.017199,-0.083152,0.018655,-0.0076645,0.010858,-0.075117,-0.011653,0.037452,-0.011446,-0.10097,0.0081241,0.041275,-0.12486 -0.1004,-0.057408,0.095031,-0.04469,-0.024518,0.021021,0.12841,-0.022647,0.0086945,0.041922,0.068355,-0.13127,0.0040387,0.0013851,-0.10081 -0.063745,0.015279,0.15378,0.033791,-0.061488,0.0365,0.15183,0.063543,-0.020894,-0.0026355,0.051232,-0.010994,-0.037792,-0.010998,0.037029 0.0014394,0.084195,0.14504,0.090536,-0.051406,0.015594,0.032953,0.088963,-0.065235,-0.067289,-0.055209,0.10088,-0.061502,0.031279,0.061007 0.065358,0.10744,0.077756,0.066542,0.0076551,-0.021694,-0.10155,0.033286,-0.061337,-0.084377,-0.09288,0.036378,-0.025294,0.059801,-0.078013 0.099092,0.079153,0.0009937,-0.0078558,0.05842,-0.044021,-0.1109,-0.02647,-0.016167,-0.040275,-0.0050679,-0.088205,0.016996,0.031146,-0.12694 0.093848,0.030434,-0.041594,-0.059529,0.062288,-0.0372,-0.024115,-0.032819,0.013113,0.0073777,0.085613,-0.095184,0.01499,-0.0057969,-0.01824 0.068226,-0.0025803,-0.046381,-0.064942,0.038204,-0.019563,0.044953,-0.0018217,0.016285,0.025954,0.097503,-0.011268,-0.0067138,-0.014691,0.069881 0.040565,-0.012994,-0.032365,-0.043548,0.018064,-0.0067409,0.055973,0.018242,0.0085407,0.020444,0.057294,0.042854,-0.013525,-0.0077314,0.066902 0.020142,-0.010593,-0.018438,-0.021955,0.0068498,-6.1358e-05,0.038325,0.018475,0.00070777,0.010113,0.022072,0.042588,-0.0092841,-0.0033358,0.034143 0.0087228,-0.0061011,-0.0088861,-0.0089532,0.0016024,0.0012453,0.019355,0.01129,-0.0025026,0.0045911,0.0046782,0.025461,-0.0025205,-0.0022379,0.010592 0.0035608,-0.0028719,-0.003874,-0.003514,-0.00048933,0.0016403,0.0079969,0.0052334,-0.0018086,0.0026496,0.00016632,0.011528,-0.00075094,-0.0011206,0.001662 0.00093094,-0.00074601,-0.0011906,-0.0010279,-0.00042781,0.00092036,0.0021703,0.0011632,-0.00080136,0.00071696,-0.00049191,0.003229,0.00057927,-0.00068468,-0.00024683 0.0001539,-8.6158e-05,-2.845e-05,-0.00012753,-0.00015374,0.00022628,0.00020628,5.9067e-05,-0.00018525,0.0002876,-0.00019738,0.0004743,2.6486e-05,-0.00012156,6.3036e-05 4.3655e-06,-3.5386e-06,1.4315e-05,1.5288e-05,-1.9923e-05,1.1017e-05,-1.8506e-06,-9.2946e-06,3.8339e-06,1.6735e-05,5.1588e-06,2.1983e-05,-2.6771e-05,-1.5723e-05,1.0961e-05 -3.4388e-18,2.3113e-18,3.812e-18,-2.2495e-18,1.3542e-17,-5.0049e-19,-3.5138e-18,-1.4863e-18,6.4098e-18,2.6925e-18,6.8808e-18,7.2569e-18,1.7772e-17,1.1785e-17,-1.9726e-19 -9.9461e-18,1.0255e-17,6.5322e-18,-9.6735e-18,3.1537e-17,-1.3125e-18,-7.5717e-18,-3.8205e-18,1.032e-17,6.4131e-18,1.3574e-17,1.2267e-17,4.1495e-17,2.643e-17,-2.2237e-18 -9.3346e-18,3.9138e-18,9.5697e-18,-1.0818e-17,2.9925e-17,-1.4748e-18,-6.1232e-18,-3.0709e-18,1.1673e-17,7.4975e-18,1.3673e-17,1.2604e-17,3.9396e-17,2.3546e-17,-2.2283e-18 8.7433e-06,-9.4964e-06,-8.867e-06,7.1696e-07,-2.5654e-06,1.2244e-05,6.1068e-06,-3.978e-06,7.3382e-07,-2.2066e-05,3.8392e-06,-8.4394e-06,5.0216e-06,-1.9385e-05,5.6269e-06 -6.4508e-05,-9.9332e-05,4.1574e-05,-0.00017082,0.00015942,0.00020154,-0.00016763,0.00013294,-0.0002328,-0.00017128,-3.3385e-05,0.00011063,-8.3814e-05,0.00074798,-7.5239e-06 -0.00014467,-0.00027155,0.00010845,-0.00045981,0.00045169,0.00048001,-0.00042293,0.00016989,-0.00076075,-0.00046578,-0.00012089,0.00036446,-0.00030438,0.0019281,0.0003074 -0.0003546,-0.0006836,-0.00019069,-0.00086617,0.00080377,0.00073976,-0.0013206,0.00065302,-0.0014948,-0.00079895,-0.00074688,0.001402,-0.00034997,0.0034089,0.0018727 -0.0010789,-0.0022138,-0.0016664,-0.0015088,0.0015252,0.0011476,-0.0049294,0.0016003,-0.0028536,-0.0019554,-0.0029984,0.0051228,-0.0018174,0.005566,0.007735 -0.003792,-0.0069415,-0.0058882,-0.0048564,0.005427,0.0010629,-0.01559,0.0030341,-0.0071084,-0.0055457,-0.012288,0.017056,-0.0063017,0.0095748,0.025213 -0.01067,-0.017281,-0.013342,-0.014143,0.013819,0.00014189,-0.036869,0.0022873,-0.014221,-0.011688,-0.032909,0.03645,-0.015355,0.019809,0.050361 -0.024806,-0.035946,-0.022169,-0.033259,0.025953,-0.0023776,-0.06739,-0.010896,-0.023933,-0.014034,-0.06215,0.052863,-0.025507,0.035586,0.063317 -0.049736,-0.061255,-0.026171,-0.061647,0.038402,-0.0083013,-0.081432,-0.040599,-0.026391,-0.0084385,-0.080917,0.031793,-0.024467,0.054416,0.022769 -0.077537,-0.080439,-0.006078,-0.084315,0.035692,-0.0071343,-0.041767,-0.068963,-0.010109,0.013361,-0.049715,-0.047657,-0.0031468,0.057683,-0.074716 -0.093749,-0.070557,0.047965,-0.076348,0.0060929,0.0087406,0.057678,-0.060068,0.014739,0.035323,0.035345,-0.12557,0.010755,0.028752,-0.13074 -0.082999,-0.026134,0.10962,-0.026713,-0.032439,0.032135,0.1428,0.00383,0.016685,0.02826,0.085569,-0.092559,-0.0082537,-0.01266,-0.052484 -0.044144,0.037984,0.14176,0.043524,-0.058297,0.035157,0.12661,0.0706,-0.022542,-0.0185,0.035429,0.045881,-0.051528,-0.011214,0.076796 0.010049,0.0875,0.12012,0.081397,-0.042544,0.010415,0.0078926,0.075819,-0.06356,-0.066036,-0.064558,0.11974,-0.063931,0.027184,0.05587 0.0593,0.10326,0.061845,0.055839,0.010736,-0.02073,-0.10232,0.018577,-0.053206,-0.070967,-0.090418,0.038694,-0.029547,0.047787,-0.080856 0.086852,0.077893,-0.0021182,-0.0072578,0.052771,-0.039967,-0.10434,-0.031781,-0.012065,-0.031461,-0.013516,-0.081424,0.0059616,0.019348,-0.12577 0.084766,0.035619,-0.038561,-0.05409,0.057836,-0.034442,-0.028745,-0.035952,0.015063,0.0091585,0.068388,-0.097243,0.0052236,-0.013784,-0.030136 0.063964,0.0037728,-0.043077,-0.061253,0.037874,-0.018761,0.034171,-0.0091932,0.018932,0.026106,0.085989,-0.026304,-0.01222,-0.019658,0.05689 0.040296,-0.0092777,-0.03188,-0.044627,0.018923,-0.0076854,0.050936,0.012444,0.011951,0.020598,0.055748,0.031844,-0.016862,-0.012367,0.063522 0.020073,-0.0089735,-0.018429,-0.023443,0.0078659,2.7379e-05,0.037116,0.015667,0.003077,0.010292,0.024315,0.038918,-0.012536,-0.0049724,0.035412 0.008981,-0.0053983,-0.0091129,-0.0096268,0.0027371,0.0020613,0.019376,0.0099637,-0.00094358,0.0048047,0.0063767,0.024463,-0.0052796,-0.0029991,0.011795 0.0036822,-0.0025803,-0.0040366,-0.0035614,0.00056018,0.0012696,0.0085199,0.0046208,-0.00091155,0.0019908,0.00094983,0.011543,-0.0023295,-0.0022389,0.0022758 0.00088304,-0.00060653,-0.0010257,-0.00117,-0.00025908,0.00058454,0.0020143,0.0011681,-0.00083148,0.00052111,3.9773e-05,0.0032584,-1.0552e-05,-0.0010869,3.2001e-05 9.7548e-05,-1.3088e-05,-1.0067e-05,-8.7299e-05,-0.00012988,0.00013647,0.00010337,6.4409e-05,8.8808e-06,6.7539e-05,-7.7177e-05,0.00032248,-0.00012905,-3.5316e-05,3.9333e-05 4.3655e-06,-3.5386e-06,1.4315e-05,1.5288e-05,-1.9923e-05,1.1017e-05,-1.8506e-06,-9.2946e-06,3.8339e-06,1.6735e-05,5.1588e-06,2.1983e-05,-2.6771e-05,-1.5723e-05,1.0961e-05 -3.9295e-18,3.2676e-18,1.5916e-18,-3.7914e-18,1.1132e-17,-7.9389e-21,-2.6612e-18,-1.2798e-18,4.1264e-18,3.0814e-18,5.7712e-18,5.3803e-18,1.4357e-17,9.5963e-18,-9.9452e-19 -7.4537e-19,4.7386e-19,6.0661e-19,-9.0131e-19,2.1015e-18,-1.7264e-19,-2.4226e-19,-1.8928e-19,5.5901e-19,5.4091e-19,8.437e-19,9.2777e-19,2.3149e-18,1.5919e-18,-2.0772e-19 -4.8476e-18,4.266e-18,1.8637e-18,-3.7091e-18,1.2245e-17,7.817e-19,-3.3985e-18,-1.2264e-18,7.0016e-18,3.7987e-18,7.2147e-18,5.2235e-18,1.9192e-17,9.7052e-18,-1.556e-18 -4.3121e-18,3.1683e-18,4.5482e-18,-3.9507e-18,1.3972e-17,-6.7691e-19,-3.0876e-18,-1.1404e-18,5.9158e-18,2.6421e-18,7.2047e-18,7.0418e-18,1.9038e-17,1.2124e-17,-6.5555e-19 -2.6941e-05,-4.0457e-05,1.9166e-05,-5.6392e-05,6.6924e-05,5.0329e-05,-6.4099e-05,7.1241e-05,-7.0333e-05,-6.0441e-05,-2.0082e-05,3.8926e-05,-1.5303e-05,0.00026882,-1.3974e-05 -0.00015925,-0.00022357,-0.00011901,-0.00027534,0.00026395,0.00027083,-0.00046791,0.00031498,-0.00042271,-0.00049756,-0.00029932,0.00033732,-0.00024073,0.00097107,0.00061962 -0.00063071,-0.00097828,-0.00065088,-0.00094096,0.00088169,0.00089969,-0.0022819,0.00075288,-0.00093735,-0.0014079,-0.0016209,0.0020711,-0.00041418,0.0031461,0.0038537 -0.0019731,-0.0031452,-0.0027564,-0.0021921,0.0025972,0.0015666,-0.0073188,0.0013619,-0.0021401,-0.0034204,-0.0060124,0.0072576,-0.0018026,0.0058232,0.012884 -0.0058421,-0.0084305,-0.0071615,-0.0074672,0.00767,0.0021752,-0.019564,0.0010651,-0.005056,-0.0081612,-0.01867,0.018952,-0.0060657,0.011881,0.032452 -0.014367,-0.019974,-0.01295,-0.019815,0.017264,0.0025996,-0.041849,-0.0034197,-0.0078231,-0.012784,-0.041685,0.032938,-0.013025,0.025014,0.053448 -0.029993,-0.036036,-0.018206,-0.041471,0.028633,0.0022337,-0.061861,-0.020038,-0.0077966,-0.016199,-0.064858,0.032654,-0.018351,0.043188,0.04857 -0.053021,-0.052735,-0.013235,-0.068483,0.036791,0.0039032,-0.056891,-0.047274,0.0042179,-0.01131,-0.064709,-0.0088193,-0.010388,0.054914,-0.0056783 -0.072577,-0.057487,0.014823,-0.081859,0.030187,0.010654,-0.0049157,-0.059303,0.026299,0.0075341,-0.019238,-0.080429,0.0077919,0.045623,-0.077739 -0.078178,-0.037991,0.062318,-0.065299,0.0043276,0.026293,0.077726,-0.038426,0.043855,0.022036,0.04973,-0.10862,0.0091018,0.0059397,-0.084934 -0.062957,0.0021026,0.10215,-0.019515,-0.023677,0.039617,0.12395,0.018526,0.033827,0.010781,0.070913,-0.038414,-0.017335,-0.030132,0.006601 -0.031741,0.048176,0.11411,0.031874,-0.038929,0.036018,0.087729,0.061098,-0.0014774,-0.024355,0.016282,0.080499,-0.052357,-0.02324,0.094959 0.0084118,0.081988,0.089468,0.054281,-0.024751,0.015917,-0.0099509,0.053522,-0.035379,-0.052767,-0.064223,0.12437,-0.059345,0.0045969,0.049232 0.043957,0.09077,0.04463,0.033333,0.01519,-0.0051479,-0.089795,0.0038925,-0.027162,-0.051049,-0.082977,0.04974,-0.031164,0.015477,-0.069078 0.064141,0.070493,-0.0015455,-0.012702,0.046107,-0.02062,-0.0903,-0.034795,0.0017059,-0.01923,-0.023082,-0.051093,-0.0059826,-0.0067768,-0.11085 0.063611,0.036649,-0.028279,-0.048158,0.049911,-0.019221,-0.031306,-0.035844,0.018846,0.013787,0.041874,-0.073468,-0.0083461,-0.030439,-0.042028 0.048745,0.0094502,-0.031969,-0.052467,0.035511,-0.010131,0.020833,-0.014513,0.019728,0.025371,0.060239,-0.023451,-0.019709,-0.031252,0.031434 0.030638,-0.0028443,-0.024014,-0.037922,0.02071,-0.0019282,0.036497,0.0041323,0.012648,0.020397,0.042546,0.020293,-0.020394,-0.019222,0.04492 0.015057,-0.0052086,-0.013716,-0.019332,0.0091782,0.0022612,0.027602,0.0096973,0.0041239,0.010312,0.019568,0.029337,-0.013768,-0.0077072,0.026383 0.0066663,-0.003611,-0.006502,-0.007856,0.0040973,0.0026428,0.014852,0.0065731,-0.00057423,0.0043526,0.0059659,0.018902,-0.0064445,-0.0032745,0.008675 0.0026807,-0.0016781,-0.0027051,-0.002879,0.0015328,0.0016092,0.0064727,0.0028847,-0.00086701,0.0018104,0.0011013,0.0090262,-0.0027287,-0.0021671,0.0022018 0.0004448,-0.0002698,-0.00050023,-0.00055424,9.5424e-05,0.00050326,0.0011491,0.000445,-0.0002412,0.00029344,-2.6528e-05,0.001875,-0.00024629,-0.00068834,-3.1037e-05 2.7173e-05,2.0932e-05,3.776e-05,-9.7009e-05,-6.7301e-05,1.2153e-05,-1.7173e-05,5.9032e-05,3.2512e-05,-3.2822e-05,-6.2162e-05,5.5087e-05,-0.00023833,4.0855e-05,4.6639e-05 -4.016e-18,3.7139e-18,3.2826e-18,-4.6421e-18,1.2885e-17,-4.5834e-19,-2.4449e-18,-3.0954e-19,4.6608e-18,3.8485e-18,6.4881e-18,5.9645e-18,1.7009e-17,9.9696e-18,-7.8331e-19 -1.5781e-18,1.2143e-18,5.5615e-19,-1.299e-18,4.4466e-18,-3.3088e-19,-1.0339e-18,-3.0316e-19,2.005e-18,9.1923e-19,2.2584e-18,2.1545e-18,6.1467e-18,3.5545e-18,-5.8261e-20 -6.7331e-18,5.1667e-18,2.893e-18,-6.0678e-18,1.9165e-17,-8.5549e-19,-3.0136e-18,2.8284e-19,3.2773e-18,2.9584e-18,8.7183e-18,8.6726e-18,2.3612e-17,1.4459e-17,2.4179e-19 -2.5982e-19,2.2386e-19,2.663e-19,-3.1833e-19,9.6147e-19,-1.8011e-20,-1.5823e-19,-5.128e-20,2.6699e-19,1.9401e-19,4.8507e-19,4.4442e-19,1.2307e-18,8.7642e-19,-7.4313e-20 2.199e-06,-1.0472e-06,9.6208e-06,8.9027e-06,2.5619e-06,1.7579e-05,5.5566e-06,-1.3451e-05,-4.3488e-06,-1.7669e-05,-1.0451e-05,9.4714e-06,-5.9887e-07,-6.2928e-06,1.3805e-05 -4.2969e-18,3.1798e-18,2.9758e-18,-4.1942e-18,1.2895e-17,-5.5936e-19,-2.7277e-18,5.8815e-20,3.5643e-18,3.9589e-18,6.0617e-18,5.6998e-18,1.7155e-17,9.735e-18,-9.5777e-19 -0.00010079,-0.00013506,-0.00020083,-0.00012027,0.00010442,0.00012056,-0.00035056,0.00020652,-0.00010767,-0.00029037,-0.00035604,0.0003281,-0.00012125,0.00015444,0.00084294 -0.000549,-0.00079221,-0.00090842,-0.00066909,0.00067378,0.00083231,-0.0018311,0.00036067,-0.00015746,-0.0013472,-0.0021536,0.0017467,1.0821e-05,0.0011679,0.0043849 -0.0017936,-0.0024489,-0.0023782,-0.0022801,0.0023672,0.0017533,-0.0058044,0.00057017,-0.000581,-0.0030858,-0.0064683,0.005042,-0.00028043,0.0034245,0.011918 -0.0048538,-0.0063237,-0.0050405,-0.0068013,0.0066235,0.0023019,-0.013864,-0.00043051,-0.00090001,-0.006416,-0.017127,0.011778,-0.0023792,0.0088276,0.025168 -0.012127,-0.014112,-0.0085938,-0.017545,0.014012,0.0027214,-0.027622,-0.0059902,0.0011793,-0.011151,-0.03508,0.017991,-0.0039958,0.019052,0.037293 -0.023855,-0.022965,-0.0098698,-0.034708,0.021342,0.0042366,-0.034924,-0.019742,0.0086224,-0.014456,-0.047833,0.008794,-0.0024152,0.030377,0.02818 -0.039156,-0.029104,-0.0019185,-0.052434,0.027091,0.010444,-0.020208,-0.035868,0.026059,-0.014623,-0.039058,-0.029093,0.0082163,0.034766,-0.0087702 -0.048788,-0.024612,0.019901,-0.05742,0.023944,0.018575,0.02144,-0.036034,0.048307,-0.0064616,-0.0076647,-0.069489,0.017531,0.015795,-0.035222 -0.049084,-0.007335,0.048885,-0.04382,0.012557,0.029533,0.066611,-0.013648,0.060379,0.0012486,0.027345,-0.062516,0.012127,-0.019225,-0.015022 -0.037868,0.016734,0.067666,-0.013634,-0.0010147,0.037291,0.079761,0.01986,0.051237,-0.0039605,0.030985,0.0026496,-0.010781,-0.04666,0.047377 -0.019301,0.039999,0.066731,0.012206,-0.0062411,0.033623,0.043992,0.038361,0.025966,-0.017999,-0.0043836,0.073702,-0.031481,-0.044137,0.081214 0.0018102,0.055857,0.048004,0.020738,0.0027015,0.02146,-0.013359,0.027046,0.0046486,-0.025878,-0.048066,0.093072,-0.033388,-0.030952,0.036522 0.020773,0.058545,0.023941,0.0098714,0.022617,0.010328,-0.056241,-0.0033019,0.0060605,-0.020495,-0.057702,0.050395,-0.017198,-0.028333,-0.041639 0.031529,0.045358,0.00029413,-0.014175,0.037375,0.003919,-0.054442,-0.023592,0.014571,-0.0015735,-0.022899,-0.011026,-0.0082249,-0.04104,-0.071165 0.031248,0.025498,-0.013234,-0.02964,0.037542,0.00072081,-0.022088,-0.023929,0.017311,0.017265,0.017156,-0.030682,-0.013563,-0.04531,-0.034632 0.023698,0.0093475,-0.015337,-0.029958,0.028095,0.0022443,0.0073806,-0.010701,0.013745,0.021415,0.029165,-0.0084124,-0.01813,-0.035795,0.0057999 0.014343,0.0011434,-0.011035,-0.020794,0.017117,0.0041645,0.016519,0.0005988,0.0081541,0.015134,0.020584,0.012184,-0.015773,-0.021726,0.017732 0.0069124,-0.0012088,-0.0063177,-0.010456,0.0082728,0.0037438,0.012613,0.0032566,0.0029275,0.007279,0.010506,0.014688,-0.0097011,-0.0094678,0.012127 0.0027931,-0.00095418,-0.0027189,-0.0042249,0.0031276,0.0019661,0.0064658,0.0022677,0.00010807,0.0026961,0.0031756,0.0079649,-0.004266,-0.0033714,0.0045409 0.0010608,-0.00055435,-0.00085607,-0.0013614,0.0012286,0.00097188,0.0025499,0.00079173,-0.00050745,0.00082786,0.00048584,0.0034398,-0.0014504,-0.0012638,0.0014938 0.00020405,-0.00014044,-0.00012319,-0.00014834,0.00020197,0.00030756,0.00050092,-6.6322e-06,-0.00025147,6.7242e-05,-1.7699e-05,0.00046788,-0.00028987,-0.00025976,0.00012542 1.3372e-05,3.3648e-05,4.0861e-05,-4.8252e-06,-6.777e-06,1.3692e-06,-9.2513e-06,-1.0966e-05,-1.754e-06,-1.712e-05,-4.4532e-05,3.3684e-05,-0.00015123,3.3067e-05,3.284e-05 -1.2513e-18,7.8315e-19,7.8035e-19,-8.145e-19,3.6961e-18,-1.6204e-19,-4.1468e-19,-4.496e-19,1.5256e-18,6.3388e-19,1.7807e-18,1.6229e-18,4.7419e-18,2.8765e-18,-2.003e-19 -2.7217e-18,2.4793e-18,1.4197e-18,-2.3169e-18,8.8738e-18,-7.8863e-19,-1.5427e-18,-9.1127e-19,2.2999e-18,2.0101e-18,3.8057e-18,3.5919e-18,1.127e-17,6.4546e-18,-3.7567e-19 -1.4917e-18,1.1169e-18,1.209e-18,-1.5189e-18,4.876e-18,-4.6337e-19,-9.9906e-19,-4.1063e-19,2.0934e-18,1.2157e-18,2.516e-18,1.7153e-18,7.4353e-18,3.709e-18,-3.9409e-19 -8.9794e-18,7.2143e-18,5.6274e-18,-9.0055e-18,2.8513e-17,-6.7062e-19,-4.6562e-18,-8.6158e-19,1.1588e-17,8.5418e-18,1.3029e-17,1.1431e-17,3.2389e-17,2.2972e-17,-1.0473e-18 -7.1485e-18,3.3918e-18,4.4439e-18,-6.6609e-18,1.9683e-17,-4.4646e-19,-3.8152e-18,-1.4051e-18,4.8388e-18,5.7898e-18,9.3483e-18,8.6693e-18,2.4543e-17,1.7546e-17,-2.7329e-18 -3.648e-06,-2.5282e-06,-1.1417e-05,-3.0845e-06,2.8581e-06,5.7071e-06,-9.051e-06,9.4753e-06,6.3928e-06,-1.731e-05,-1.408e-05,1.1484e-05,-8.4639e-06,1.9742e-06,2.7681e-05 -0.00010227,-9.5275e-05,-0.00023664,-9.167e-05,7.1478e-05,9.9229e-05,-0.00030645,0.00015054,4.1469e-06,-0.00039585,-0.00028524,0.00031007,-9.9368e-05,-0.00010509,0.00087003 -0.000222,-0.00027955,-0.00044241,-0.00026843,0.00023459,0.00028691,-0.00066337,0.00021509,0.00014216,-0.00067013,-0.00082934,0.00073394,0.00015675,-0.00022952,0.0018642 -0.00058168,-0.00077404,-0.00082475,-0.0007839,0.00064033,0.00028413,-0.0016572,0.00039917,0.00021232,-0.0012281,-0.0022784,0.0011162,0.00024682,-0.00019338,0.0039884 -0.0012115,-0.0015148,-0.0012456,-0.0017454,0.0013588,-6.2457e-05,-0.0032027,0.00042666,0.00029212,-0.0017397,-0.0041663,0.0016862,-0.00019176,0.00032618,0.0066862 -0.0028513,-0.0030822,-0.0018105,-0.0044657,0.0026166,-0.00022862,-0.0053097,-0.0003249,0.0021016,-0.002269,-0.0081879,0.00091042,0.00060446,0.00061378,0.0095632 -0.0054241,-0.0045263,-0.0019345,-0.008644,0.003411,0.00038241,-0.005094,-0.0018303,0.0062893,-0.0034878,-0.010869,-0.0046409,0.0035455,-0.0011929,0.0086997 -0.0086938,-0.004898,0.00021502,-0.012843,0.0035512,0.0022635,-9.0637e-05,-0.0038384,0.011993,-0.0039345,-0.0081467,-0.015894,0.0083772,-0.0078343,0.0043804 -0.011775,-0.0028038,0.0061903,-0.014865,0.0026811,0.0052535,0.010577,-0.0025626,0.019944,-0.0035666,0.00030465,-0.025115,0.011062,-0.022244,0.0058374 -0.011895,0.0017884,0.013027,-0.011428,0.0010155,0.0072042,0.019135,0.0057189,0.024358,-0.0035902,0.0059213,-0.019104,0.0091108,-0.036353,0.019955 -0.0088858,0.0076483,0.016222,-0.004642,-0.00035076,0.0084278,0.01859,0.013928,0.02179,-0.0044371,0.0027452,0.0015121,0.0044439,-0.042926,0.037527 -0.0044623,0.012107,0.014567,0.0011921,0.00069264,0.0068857,0.0080767,0.016991,0.015017,-0.0065713,-0.0073812,0.019086,0.00046179,-0.039889,0.038044 0.00081198,0.013889,0.0088165,0.0026246,0.004302,0.0036879,-0.006885,0.011577,0.0095872,-0.0061327,-0.017122,0.022262,0.00040551,-0.032768,0.013395 0.0046609,0.014413,0.0041509,-4.433e-05,0.0079781,0.0027358,-0.0157,0.0039729,0.010559,-0.0044726,-0.019583,0.013566,0.0044083,-0.033289,-0.0076319 0.0067403,0.011853,-0.00094585,-0.0057642,0.0098764,0.0017078,-0.015785,-0.00082708,0.010473,-6.5833e-05,-0.0090469,-0.0020177,0.0058743,-0.031422,-0.016101 0.0066519,0.0072044,-0.0041795,-0.0091304,0.0089927,0.00078486,-0.0074949,-0.0011834,0.0083483,0.0051043,0.0025324,-0.0071402,0.0015666,-0.025219,-0.0086197 0.0056236,0.0028332,-0.0048834,-0.0088525,0.0076719,0.00056646,0.0014715,0.00085891,0.006073,0.0068472,0.0069128,-0.00099608,-0.002476,-0.019491,0.00066936 0.0039132,0.00043526,-0.0035894,-0.0066518,0.0059031,0.0011672,0.0046443,0.0024153,0.0039341,0.005245,0.0060166,0.0049257,-0.0017128,-0.01315,0.0059007 0.0016437,-0.00011517,-0.001796,-0.0029732,0.0022762,0.00097651,0.0028808,0.0015896,0.0015578,0.0020519,0.0029496,0.0038546,-0.00056504,-0.00535,0.0041954 0.00041219,-0.00010842,-0.00038464,-0.00081213,0.00057471,0.00023278,0.00079489,0.00056025,0.00029155,0.00049624,0.00061075,0.0013742,-8.8809e-05,-0.0014475,0.0012718 7.9149e-05,-2.5634e-05,-2.2128e-05,-0.0002548,8.7142e-05,8.0726e-05,0.00017031,6.3288e-05,0.0001044,0.00020962,0.00013625,0.00013625,-9.7967e-05,-0.0004231,0.00037197 7.0145e-06,-3.4583e-06,2.1637e-06,-1.8028e-05,-1.7113e-06,5.7134e-06,2.3255e-05,1.2368e-05,-2.677e-06,7.738e-06,2.0042e-06,1.6557e-05,-8.8915e-06,-2.3156e-05,3.0561e-06 -7.9702e-18,7.8171e-18,5.4509e-18,-9.2591e-18,2.5686e-17,-8.6231e-19,-6.7834e-18,-1.5894e-18,9.1237e-18,5.9336e-18,1.3275e-17,1.1263e-17,3.4739e-17,2.2616e-17,-2.0519e-18 -9.1249e-18,8.5799e-18,6.171e-18,-1.0619e-17,2.6404e-17,-7.9654e-19,-5.379e-18,-9.7775e-19,4.1576e-18,7.6104e-18,1.2284e-17,1.0285e-17,3.3577e-17,1.9424e-17,-1.766e-18 -4.8522e-18,2.8013e-18,4.2871e-18,-4.5582e-18,1.4995e-17,6.6027e-20,-2.7101e-18,-1.6668e-18,5.0375e-18,3.545e-18,7.0797e-18,6.9411e-18,1.9496e-17,1.2991e-17,-1.3443e-18 -6.8585e-18,4.4628e-18,1.0327e-17,-8.5455e-18,2.7143e-17,-1.8007e-18,-7.4696e-18,-1.1295e-18,1.0468e-17,5.6414e-18,1.2565e-17,1.2537e-17,3.6054e-17,2.2361e-17,-1.8541e-18 -8.4702e-18,5.9321e-18,7.2048e-18,-9.9953e-18,3.0992e-17,5.3531e-19,-4.7575e-18,-9.8686e-19,1.0505e-17,7.1051e-18,1.2485e-17,1.4747e-17,3.8284e-17,2.4689e-17,-1.1145e-18 -2.3521e-19,1.6648e-19,1.9839e-19,-3.5341e-19,8.1403e-19,-1.2761e-20,-1.5886e-19,-5.5747e-20,2.566e-19,2.6764e-19,4.3114e-19,3.2346e-19,9.9876e-19,6.5286e-19,-4.2664e-20 -5.5685e-18,7.0597e-18,4.4148e-18,-6.7863e-18,2.4657e-17,-1.224e-18,-5.8503e-18,-1.246e-18,7.8692e-18,6.3238e-18,1.1872e-17,8.0914e-18,3.163e-17,1.9333e-17,-1.47e-18 -5.5485e-18,3.4686e-18,2.5588e-18,-4.4786e-18,1.5385e-17,-4.6693e-20,-3.0593e-18,-8.2001e-19,5.7333e-18,3.9865e-18,7.0301e-18,6.4728e-18,1.9814e-17,1.1787e-17,-1.1913e-18 -6.0446e-18,5.4978e-18,3.7151e-18,-6.578e-18,1.86e-17,2.5527e-19,-3.685e-18,-1.3904e-18,7.1219e-18,4.1015e-18,8.385e-18,7.8945e-18,2.6086e-17,1.5427e-17,-1.0637e-18 1.7558e-06,-5.473e-06,-7.7584e-06,1.0202e-05,3.6771e-07,-4.1952e-08,-2.2646e-06,1.1307e-05,8.3283e-06,5.8044e-06,-4.5859e-06,-1.329e-05,6.8732e-06,-3.2826e-06,1.0041e-05 9.9782e-06,-3.1102e-05,-4.409e-05,5.7976e-05,2.0897e-06,-2.3841e-07,-1.287e-05,6.4259e-05,4.7329e-05,3.2986e-05,-2.6061e-05,-7.5527e-05,3.906e-05,-1.8655e-05,5.706e-05 5.9094e-06,-2.9668e-05,-4.2827e-05,4.9497e-05,1.9104e-06,-4.0132e-06,-1.4015e-05,5.8001e-05,4.7019e-05,2.9339e-05,-2.5022e-05,-7.0216e-05,3.592e-05,-2.5129e-05,5.4955e-05 -4.9123e-05,-3.6012e-05,-4.4427e-05,-4.0232e-05,1.8939e-05,-7.574e-05,-4.209e-05,6.8796e-07,6.8304e-05,8.1707e-06,-5.1626e-05,-5.3922e-05,-4.4392e-06,-0.00015868,8.1288e-05 -0.00011665,-4.9814e-05,-9.7963e-05,-8.6564e-05,-3.8387e-05,-0.00011114,-2.8027e-05,-1.3315e-05,0.0001635,-3.6901e-05,-1.5857e-05,-0.0002678,6.0779e-05,-0.00040732,0.0001597 -0.00010753,-5.2404e-05,8.4834e-06,-0.00011324,-9.1562e-05,7.2322e-05,4.3192e-05,2.2807e-05,0.00020766,-2.5711e-05,4.8348e-05,-0.0004112,0.00015469,-0.00043859,0.00031232 -0.00012699,-2.9163e-05,0.00010284,-5.828e-05,-3.7666e-05,4.0591e-05,0.00012887,0.00030505,0.00013449,-3.3603e-05,3.0185e-05,-0.00055927,0.00013408,-0.00078662,0.00064205 -7.9653e-05,0.00014042,0.00020581,-5.212e-05,-0.00010755,-4.215e-05,-2.7696e-05,0.00054146,4.3422e-05,-0.00029837,2.1333e-05,-0.00010364,1.2323e-05,-0.0010792,0.00099845 -0.00010332,0.00025029,0.0001503,1.0185e-05,-0.00011858,-2.8729e-05,-3.6815e-05,0.00069394,0.00023861,-7.8483e-05,-0.00013288,-8.1734e-05,0.00043926,-0.0016867,0.0013 3.1113e-05,0.00021198,8.8685e-05,-2.3685e-05,3.7238e-05,-0.00011411,-0.00029697,0.00040007,0.00011803,-0.00017292,-0.00029102,-4.0648e-05,0.00046595,-0.0011052,0.00035029 9.8935e-05,0.00017121,6.3645e-05,-7.8558e-05,0.00017428,-0.00026321,-0.00040379,0.00043469,0.00022883,-0.00018688,-0.00026344,7.6597e-05,0.0005853,-0.0010928,-0.00012586 0.0001003,7.7363e-05,-4.4523e-05,-0.0002141,0.00013217,-0.00020093,-0.00026494,0.0002164,0.00024936,5.6636e-05,3.7897e-05,2.8567e-05,0.00043999,-0.00067444,-0.00012791 0.00011067,0.00010472,-0.00019867,-0.00025975,0.00014781,-0.00023355,-0.00024144,0.00024076,0.00023904,0.00025323,0.00031511,-8.3454e-05,0.00032121,-0.00075664,0.0001861 0.00016434,5.2984e-05,-0.00014123,-0.00035764,0.00019302,-0.00018894,-4.2477e-05,0.00032808,0.00016022,0.00010135,0.00038461,-8.5255e-06,0.00019109,-0.00084698,-5.117e-05 0.0001533,-2.5614e-05,-0.00021212,-0.00028137,0.00017782,6.1944e-05,0.00028183,0.00025963,0.00022119,6.273e-05,0.00026047,0.00047286,0.00011224,-0.00075678,0.00031987 5.8973e-05,-7.8102e-06,-0.00011597,-0.00014815,6.2479e-05,6.9614e-05,0.00016885,0.000107,6.4561e-05,1.0248e-06,0.00014121,0.00027755,6.3216e-05,-0.00031414,0.00025603 2.0599e-05,-9.3492e-06,-5.9032e-05,-2.0303e-05,1.8197e-05,6.9861e-05,6.8667e-05,3.2682e-05,2.6315e-05,-1.4557e-05,5.0224e-05,8.1297e-05,-1.2244e-06,-5.0326e-05,0.00014253 -4.9105e-18,3.5796e-18,2.1421e-18,-3.995e-18,1.3178e-17,-3.0618e-19,-3.5121e-18,-9.5113e-19,4.444e-18,3.9248e-18,5.844e-18,4.7113e-18,1.717e-17,9.8824e-18,-5.513e-19 -2.6452e-19,2.5503e-19,1.6538e-19,-2.2287e-19,7.8614e-19,-1.1368e-21,-1.8564e-19,-4.2237e-20,2.4702e-19,2.395e-19,3.9663e-19,2.9824e-19,1.0212e-18,6.0554e-19,-6.4166e-20 -1.9474e-18,1.4069e-18,1.0622e-18,-1.539e-18,5.291e-18,-1.2984e-19,-1.198e-18,-3.11e-19,1.3536e-18,1.6155e-18,2.3607e-18,2.8383e-18,6.3186e-18,4.0955e-18,-6.0926e-19 -3.4173e-18,4.6477e-18,4.5719e-18,-5.4046e-18,1.7839e-17,-1.4963e-18,-3.0443e-18,-1.7041e-18,4.2817e-18,3.6529e-18,6.9903e-18,7.0989e-18,2.0907e-17,1.4601e-17,-5.1371e-19 -8.9807e-18,7.395e-18,6.5898e-18,-8.9913e-18,2.3895e-17,1.1806e-18,-5.4747e-18,-1.8107e-19,1.1714e-17,8.4051e-18,1.3189e-17,9.8731e-18,3.3631e-17,1.9141e-17,-9.4678e-19 ================================================ FILE: bayesian_ml/1/README ================================================ This data set contains the following: Xtrain: 11791 training examples of 4's and 9's, each 15 dimensions in length ytrain: the corresponding labels of the training examples (0 = 4 digit, 1 = 9 digit) Xtest: 1991 testing examples of 4's and 9's, each 15 dimensions in length used for prediction ytest: the corresponding ground truth labels used for evaluating performance (0 = 4 digit, 1 = 9 digit) Q: A matrix of eigenvectors that is used to map the 15-dimensional feature vectors back into image space. For a 15-dimensional feature vector x, this can be done as follows in pseudocode 1. Map x2 = Q*x 2. Reshape x2 into a 28x28 matrix and show it as an image Because the data has had the mean subtracted off, this image will not look exacly like a handwritten digit, but the contours of the 4 or 9 should be clear. ================================================ FILE: bayesian_ml/1/Xtest.csv ================================================ 3.7638,-0.92236,-0.53047,1.233,-0.71848,1.525,-1.3769,-1.551,-0.17975,-1.1499,-0.11756,-1.5398,0.34207,-0.60512,0.065985 -0.40127,0.26977,-0.20437,-1.0767,-3.4491,0.96986,0.62241,0.15118,-1.3787,-1.6964,-0.19497,-1.3029,-1.4716,-1.3327,0.47252 0.54033,1.5158,0.0057301,1.2152,-2.1241,-1.1308,-0.91144,-0.32863,0.60841,-0.64354,-0.00087909,0.45768,1.3614,0.71921,0.20154 1.7504,1.5461,-1.9151,1.3689,-1.044,0.36394,-0.20749,-0.97425,0.13825,0.94529,-0.76716,-1.0765,0.94106,-0.32831,-0.29621 2.0957,-0.3642,1.0851,1.2778,-0.67157,-0.49899,-2.7037,-0.54487,0.84837,-0.086419,1.4492,0.3441,0.46331,0.51728,-0.51133 1.2966,-1.6362,-2.1231,2.2668,0.021024,2.4636,0.064225,0.16694,-2.6767,1.1264,1.011,0.54725,2.7373,-0.096381,0.96821 0.34242,1.4374,1.1921,0.60321,-2.1172,-2.108,1.3842,-0.99591,-0.44959,-0.24658,-1.6997,0.24477,-0.73409,-0.32675,1.1555 2.241,1.0479,3.7299,-1.3708,-0.57897,-2.135,-1.0227,0.19116,-1.6525,-1.1759,0.86843,0.45257,-0.22053,-0.058321,-0.29706 4.373,-1.6854,-1.1732,0.25269,-0.11805,-0.8278,0.49605,-1.0704,1.3663,-0.83527,0.16838,-1.3209,-0.18926,0.4433,0.72966 4.9061,-1.5189,0.69141,-0.40059,-1.6001,-0.33886,-2.0876,0.63703,0.071592,0.42244,-0.32596,-1.2406,-0.11299,0.32148,0.14613 -1.1768,2.7211,-1.9466,0.58319,-0.91973,0.20794,-0.69717,1.9253,0.14132,-0.92793,-0.511,0.13961,0.12623,0.61935,-0.8245 2.8328,-1.342,-0.60797,2.4566,-1.0702,0.081054,0.34898,-0.19849,0.16284,-2.2237,-1.2937,0.43102,-1.0052,-1.0385,-1.8365 3.3843,0.10076,1.9631,-1.3811,-1.4517,-2.9031,-0.49936,0.63798,-1.4444,-2.2475,-0.39671,-0.010771,-0.11308,-0.31941,-0.4091 0.91302,-1.1661,2.6844,1.0152,1.7795,-2.2122,1.3515,0.085464,-2.9011,0.45318,-1.0435,0.71729,1.4514,-0.015185,-1.3481 4.2955,-1.6204,-0.58862,-0.16197,-1.1359,-1.3578,0.23008,-0.68053,1.5515,-1.1303,0.20523,-0.54476,0.53337,0.091987,-0.51841 -0.43154,-0.5402,0.21269,2.9266,-0.50234,0.42145,0.90034,-1.2784,-0.54621,0.15436,1.5119,0.56681,0.31507,-0.43955,0.4408 -2.3812,-0.056082,-0.89467,2.1133,-0.061934,0.45003,0.6943,-0.29364,0.67109,1.4262,1.0858,-0.25398,-0.91268,-0.17939,-0.37981 -0.95273,1.8538,-0.51732,1.07,-2.034,0.048668,-1.1583,0.23106,-0.102,-0.45604,0.8759,1.6835,-0.73838,0.10093,-0.78889 3.7697,-2.694,-1.1779,-0.58756,-0.95878,-0.65286,-1.261,1.6118,1.2474,0.34145,0.43167,-0.49113,-0.74164,-0.23089,-0.49057 -1.1123,-2.4263,-1.0913,1.6137,0.5331,2.2532,-0.91974,0.04655,-0.28936,1.8647,0.79794,-1.0007,-0.29407,1.5734,-0.080667 -0.97907,-3.5842,0.83276,1.1758,0.33957,1.7708,-0.89337,-1.9453,-0.29453,1.6292,-0.23561,-0.52882,-0.69093,-0.96737,-0.33392 -0.92034,1.0165,-1.5838,2.6534,0.30206,0.51838,0.20312,2.3375,0.34387,0.53061,-0.75727,-0.65845,-0.66545,-0.14811,0.42866 -0.4128,1.6385,0.10098,0.73246,-1.3821,-1.4382,0.0056794,-1.0218,-1.9022,0.79076,0.6974,0.12319,-1.4008,0.1837,0.50581 4.3155,-0.86847,0.13385,-0.38718,-1.0473,-2.2516,0.013736,0.90739,1.069,-2.0064,-0.559,0.57882,-1.2897,0.6017,-1.755 0.14999,0.42963,-0.58948,3.25,0.50981,0.20315,-0.34092,0.13586,-1.1356,-1.5288,0.88303,0.75972,-0.63656,0.79188,-0.64232 0.13371,2.9465,0.38271,0.30973,-1.6684,-0.57221,-0.4777,0.18647,-1.1962,-0.73395,-0.40575,-0.35481,1.027,0.72181,1.044 0.39796,2.3227,-0.91017,0.75586,-0.79276,-1.022,-1.5964,-0.76549,0.44418,0.80759,0.68862,-0.092809,1.0605,1.3595,-0.31052 -0.31917,1.6648,0.64912,1.7022,-1.5824,-0.2252,-1.661,-0.33282,-0.11859,-0.95826,1.3468,1.529,-1.0806,0.64468,-0.35981 3.5727,-0.30127,-0.58371,-0.099989,-2.5259,1.1521,-1.2565,1.3432,1.2963,-1.6346,-1.3604,-0.39803,-0.67149,0.12627,-0.80097 -1.0041,0.6032,-1.6764,2.4257,-1.107,0.63235,0.15688,0.80541,1.2245,-0.22032,0.78663,0.32348,-1.4664,-0.080609,-0.43975 1.6308,0.20822,1.9008,1.0694,-1.6549,-2.084,1.1008,-0.40759,0.12833,-0.11555,-1.3258,0.55165,0.96202,0.17506,-0.0023905 -0.40222,-0.43273,-1.8198,0.91728,0.21727,-0.10447,0.86552,1.318,0.025507,0.046009,-0.1571,-1.0809,-0.51187,0.098009,-0.10941 3.9565,-1.2563,2.506,1.9081,-0.60668,-1.0695,0.34605,-1.2199,-1.4162,-2.0128,-1.0664,-0.054556,-0.417,-0.98366,-0.30727 0.81574,3.0566,2.289,-0.50296,1.639,-2.3539,-0.86279,0.13462,-1.6316,0.46145,0.5696,-0.76657,-0.1792,1.1106,0.17598 2.7468,-0.041577,1.5932,1.7917,-0.037159,0.0097491,-2.843,-1.403,-0.13851,0.25666,1.2053,-0.25774,-0.84266,-0.079885,0.050416 1.5408,-2.2518,-2.1077,-2.5579,-2.0117,-0.043408,0.92866,2.8049,-0.36265,-1.369,0.97054,2.6708,1.1902,-0.29285,0.21365 1.9787,2.2517,-1.4535,-2.4867,0.068123,-1.7132,-0.035312,-0.10147,0.010606,-0.39286,0.68479,-1.6169,1.578,-0.05316,1.2401 -1.0301,-0.37195,-3.661,0.9618,1.3711,0.3213,-0.24447,1.6466,-0.39916,0.69686,-0.99213,-0.7632,-0.7145,0.32256,0.50338 -2.4193,1.572,0.35908,-1.4502,-1.1063,-0.0028337,1.4753,0.14714,-1.9692,1.6347,-0.55687,-1.1012,-0.12835,1.0784,0.96491 -1.1137,-0.90372,1.7438,0.085859,-2.3113,-2.1816,0.807,-1.7858,-1.0542,0.050647,-0.44683,-0.55498,-1.7587,-0.18655,0.30135 -2.1967,-2.0592,-1.6914,0.35186,0.54814,1.8469,-1.0361,0.80551,0.84533,1.0164,0.25508,-0.93665,-1.656,1.3473,-0.88658 2.7053,-2.2029,-2.4455,-1.6052,-1.9665,0.58056,0.86087,2.7574,1.2817,1.4748,0.80605,1.6223,0.10048,1.1145,1.4053 -1.5346,3.1249,-0.4748,0.88492,0.0234,-0.63569,-0.92912,2.1023,-0.056685,0.10577,-0.28825,0.51454,-0.044401,0.81438,-0.362 2.0875,-0.26424,0.378,0.19741,-0.9255,-0.68818,-2.7935,-0.2866,0.76996,-0.75514,1.8216,0.37945,1.5647,0.25816,-0.55408 3.0603,-0.87985,-0.86525,-0.77944,-1.7417,-0.33689,-1.3959,-0.24315,0.94422,0.42438,1.0795,-0.82541,1.0619,0.078842,0.86652 2.8919,-1.5595,-0.59407,2.2368,-0.10432,-0.69982,1.2093,-0.92448,0.095945,-3.1662,-0.86215,-0.0051159,0.64919,-0.38798,-1.5991 3.7854,-0.44607,-1.7454,-3.1411,0.3424,-1.7297,2.8718,1.9969,1.0067,0.37295,0.16245,1.0341,-0.28486,0.12756,0.6074 -0.44981,-2.1734,-2.0654,0.91182,-0.58209,1.854,-0.81142,0.25185,1.083,0.90555,-1.238,-0.38249,0.82766,-0.73798,-0.14168 2.4032,1.1523,-0.079068,1.3982,-0.18156,-1.7786,0.17533,-0.56812,-0.40898,0.35255,-1.8008,-0.95312,0.35507,1.1984,0.78389 -1.4607,-1.1005,-0.68788,1.6004,0.76708,-1.4474,0.80188,-1.8577,-0.26251,0.66604,1.0168,0.41301,0.36997,-0.16078,-0.90854 0.81954,1.3353,-2.2173,0.58146,-0.48759,-0.13079,-1.383,0.97311,-1.1434,1.4961,1.9932,-0.61506,-0.038171,1.2265,-0.65666 -2.0452,-3.0451,-1.1892,-0.95887,1.3935,-2.9836,-0.080132,0.79598,-1.3505,-1.2132,-1.2478,-0.13659,-0.75352,-0.40583,-0.1965 4.4884,-3.0626,-1.1004,-2.9842,-0.76224,-1.9503,2.4615,1.93,0.23667,-0.12883,0.87591,2.5484,-0.098641,0.074974,1.2203 0.63381,1.978,0.6194,0.25913,-2.5354,-0.3736,0.02305,0.35139,-0.60295,1.5774,-0.9892,0.12374,-0.060908,0.53163,1.1194 -2.358,1.8266,-1.2238,0.70428,-1.0954,0.255,0.64953,0.29402,-1.8366,0.61871,0.81548,1.257,-1.286,0.18837,-1.2388 -2.2613,-0.61961,-3.5804,-0.23972,-0.24774,0.23334,-0.89487,-0.95756,-0.67418,-0.6264,-0.33634,1.9032,-0.72671,-0.71193,-0.78463 -1.8846,2.6068,-0.12463,0.59326,-1.5609,-1.1768,1.0718,0.40365,-1.3633,0.9183,-0.97397,0.79023,0.39526,0.84893,0.75749 -0.55534,0.8539,-0.54733,2.6591,1.046,0.42409,-0.644,-0.10672,-0.43075,-2.1469,1.0066,0.16846,-1.2704,0.54731,-0.077969 4.0474,-0.4676,-0.77568,1.3887,0.8846,-1.815,1.0046,-1.822,-0.56842,-0.90365,-0.089729,-1.4371,1.165,0.40632,0.73696 4.5168,-1.592,-0.62623,0.16543,-1.0957,1.5522,-1.1707,1.3664,-0.2239,1.174,-1.2326,-0.32009,0.90044,0.58932,-1.0276 3.9218,-0.38356,0.9695,1.2891,-0.59278,-1.6457,0.1423,-1.8046,0.049312,-1.9831,-1.4045,-0.78403,-0.53162,-0.40722,-0.29982 3.0769,0.52986,0.16044,-1.0867,-1.3272,-1.451,-1.1608,-0.33139,-0.51325,-2.1848,0.81618,-1.7039,-0.057088,0.1491,0.40838 -1.1562,-1.6269,-0.30911,2.3549,-1.2109,1.6556,0.012148,-0.76975,0.27307,-0.30364,1.5571,-0.62827,-0.83108,-0.93158,-0.12309 5.2308,-3.5151,-0.60352,-0.59996,-0.36846,-1.1652,0.29643,1.7861,0.73144,-1.3648,0.34666,0.69157,-0.84562,-0.020109,-1.6488 -2.108,2.2727,0.61176,-0.74275,-0.70468,1.4316,1.5487,0.48497,-2.1253,0.94976,-0.28239,0.35185,0.26971,0.18572,1.1757 -0.35934,0.97506,0.65817,2.4938,1.1914,-1.5882,0.88811,1.5892,1.0424,-0.29683,-1.2559,0.032407,0.3631,-0.30626,0.44347 0.54464,2.7811,-1.992,-0.35361,-1.8189,-0.37498,-0.4641,-0.64747,-0.1323,-0.60307,-0.63055,-0.90568,0.84154,0.81357,0.1086 0.14617,-0.6869,0.18721,1.6617,0.64625,0.43758,-0.19493,2.4525,0.97561,-1.2853,-0.025493,-0.87577,-1.7902,0.80324,0.068641 1.2524,-0.68466,1.2283,3.3157,-0.17111,-0.11085,-0.84733,-1.5101,-1.3879,-1.8233,1.1386,0.48944,-0.021459,0.49209,0.78038 0.20586,0.16506,-0.31511,3.5071,-0.45864,-0.43469,0.3321,-0.37442,-0.24537,-0.87045,1.2402,0.86369,0.14008,0.20747,-0.068582 1.1577,1.9164,-1.53,0.84862,0.45301,-0.41597,-0.46588,0.45156,-0.63333,2.064,-0.63312,-1.5777,-0.31247,1.3432,0.53745 -2.2822,-2.0643,-2.3015,-0.15817,-0.95628,-1.0987,-2.8685,0.077507,-0.83794,-0.60885,-0.028351,1.5561,-0.99211,-1.0076,1.2382 1.2049,0.29418,0.50598,1.5095,-0.38319,-2.053,-1.7238,-0.20215,0.26209,-0.39916,1.4091,0.48051,0.78386,1.2746,-0.61396 2.5865,0.52106,0.92594,-1.3622,-2.6689,1.4491,-1.0107,2.4534,-0.076083,-0.63016,-1.1825,0.38557,-0.49278,0.67755,-1.0037 -2.6447,1.6587,1.3069,-0.018988,0.83454,-0.14742,0.44842,1.4082,-0.87815,2.3075,0.00025322,0.32687,-0.4531,0.34292,0.27814 1.892,2.519,0.041843,-0.92365,-2.0563,-0.95511,0.40588,-0.447,-1.3861,-1.9108,-1.0661,-1.5248,0.13987,0.62908,-0.45487 0.59066,1.8528,-0.64092,2.1798,2.7102,-1.7747,-1.0101,1.7168,0.8331,-0.19192,-0.2558,-1.4812,-0.59796,0.11496,-1.0738 4.8991,-2.3024,-1.3074,-3.5703,-1.4354,-0.71609,-0.55404,3.241,-0.23504,0.13868,0.7099,0.049474,-0.51817,0.13951,-0.43583 4.3969,-0.74904,-0.42801,-0.58328,-0.53535,-2.1894,0.53714,0.11517,1.8126,-1.8343,-0.58371,-0.24888,0.18243,0.78879,-1.704 5.093,-2.5583,1.1529,-1.0643,0.76018,-2.8453,0.78253,-0.48239,-2.0042,-1.0478,0.71103,-0.033028,0.3963,0.89118,1.0166 0.13901,3.7996,-0.71364,-0.41747,1.3994,0.68817,-1.4873,0.018002,-0.96753,-0.03059,-0.4219,-1.1434,1.4715,-0.93822,-0.70939 1.0729,1.3453,-1.0138,1.4238,2.5018,-1.7004,-0.62863,0.85582,1.5549,0.12785,0.14197,-1.2517,0.77403,0.36473,-1.0873 -1.0758,-0.37314,1.4116,2.7594,0.69036,-1.1032,-0.13392,0.93752,-0.47929,-1.8487,1.3163,0.84524,-2.0211,-0.2401,-0.3972 -0.51766,1.1565,1.1249,1.4802,-2.1051,0.011754,-1.2928,-0.23307,-0.042572,-0.94596,1.5556,1.3646,-1.0552,0.87095,-0.022778 -2.3854,-0.47411,-1.2852,0.55547,-0.55047,-0.18431,1.0688,0.17483,1.6698,-0.40612,0.42643,-0.75202,-1.9862,-0.60571,-0.91787 5.0686,-3.4622,0.10251,-0.37834,0.0046589,0.0077192,0.87198,-0.72091,-1.4501,0.97298,1.2528,0.12482,-0.87765,0.1645,2.1769 -0.39909,0.12568,0.63188,2.2616,-2.0307,-0.51538,0.0042571,-1.6634,-0.80505,0.28171,0.65415,0.3928,-1.497,-0.24881,1.1911 1.3074,-2.581,3.5189,2.0681,-1.0513,0.43577,-1.0002,1.0773,-0.62884,-0.13683,0.68888,0.33276,0.67056,-1.0429,-0.21868 -0.65349,2.767,-1.5089,0.65169,-1.0386,0.27865,-1.5009,0.71896,0.017218,0.19018,0.17464,0.31125,0.63729,0.88056,-0.98257 2.9107,-0.68917,-0.42391,-1.5337,-1.1052,-1.7997,0.3075,0.22454,-0.76839,1.3945,2.0213,0.064421,-0.55878,0.095725,2.2974 2.9224,-0.24015,-0.63593,-2.1086,-1.1753,-1.3925,-0.65175,-0.058448,0.17213,0.031605,2.5188,-0.31658,-0.37395,0.6155,2.0061 2.2121,0.91684,-1.6019,0.64075,0.089529,-0.93286,-0.4086,-1.7936,0.010434,-0.20095,1.3996,-0.7607,1.488,-0.28927,1.0524 2.8242,-0.062157,1.1624,-0.25677,-2.1165,0.75767,-2.0442,0.80856,-1.5631,-1.8984,-0.60289,-0.71212,1.256,-1.0853,-0.31133 3.2134,-3.1837,-1.1387,1.4482,-0.047211,0.97368,-0.48826,0.066824,-1.1246,1.5103,2.1085,0.029017,0.60747,0.078662,1.7328 -0.58593,-0.83495,-2.4279,-0.98559,-1.8458,2.1744,-2.0369,-1.049,-0.86366,0.1808,-0.80463,0.75165,-0.36078,-0.19133,1.4749 -0.36745,-2.0946,-1.9019,1.0401,0.47753,-0.52114,-1.8,2.1849,0.034595,0.32864,-0.15003,-0.408,-1.9418,-0.42212,1.8086 3.5866,1.0669,-0.74997,-1.7844,-0.84102,-1.2331,-0.18847,0.34375,0.20248,1.1654,-0.79824,-0.66294,1.5322,-0.20011,-1.2923 4.3924,-2.038,-0.76983,-1.4156,-1.4109,-1.2363,-0.03385,-0.14125,1.4109,0.029801,0.97895,-0.33059,-0.0050138,-0.51397,0.82748 1.6987,3.4697,-1.1806,-2.3486,0.73049,-1.3062,-0.99849,0.83683,-0.96256,1.2374,0.31027,-2.2718,-0.51512,-0.24669,0.72559 2.5414,-0.66077,-2.2279,-3.1588,-1.5191,-1.37,1.103,0.78566,1.287,-1.6011,1.9508,1.1696,0.91077,0.41082,1.1321 -0.31382,3.4846,-1.1692,0.43137,-1.4833,0.11114,0.70194,0.52989,-1.7744,-1.5938,-1.7834,-0.76263,0.043576,0.3941,0.44427 -1.6305,-1.3289,0.15653,0.98824,-2.72,-1.3666,0.69188,-0.060305,0.57332,-0.35313,1.0108,0.036754,0.6601,-0.99155,-0.65411 1.4352,-0.39481,2.2968,0.43345,-2.7893,0.89023,-2.0152,1.4227,0.24438,0.1402,-0.16198,0.30339,0.93505,-0.3778,0.90091 2.7007,-3.0975,-0.93663,0.6223,-0.88702,-0.12373,1.3569,0.79662,0.54899,0.39242,-0.82324,0.3964,-0.062094,1.2059,0.92237 0.8686,2.5954,-1.7123,-0.031724,-1.9628,-0.035233,-1.3437,-0.11834,0.061603,0.95446,-0.63256,-0.92703,0.70417,0.2021,0.040411 -2.5745,0.44598,-0.0045067,0.70295,-1.6945,-2.0768,1.4969,-0.29334,0.13863,0.60291,0.60996,-0.024599,1.4291,0.46899,0.18915 -0.29247,2.4707,-2.6247,-0.54302,-0.63616,1.1441,-1.2876,1.0494,-0.25975,0.4156,0.69941,-0.55246,0.54138,0.18247,-0.48857 -0.21392,2.1856,-0.35231,0.59784,-1.1288,-0.56355,-1.5786,0.45199,-0.8421,-0.55632,1.8069,0.079201,-0.67835,0.80263,-1.4355 1.1713,0.13254,-0.74142,-0.79751,-2.8733,2.7458,0.69554,1.8095,-0.50337,-0.17448,-0.15249,-0.87964,0.30098,0.48629,-0.068459 3.1307,0.39381,-0.14896,-0.51334,-0.49189,-2.606,-0.7893,-1.393,0.61164,-1.0206,0.78784,-1.5144,-1.0387,1.4835,1.1715 1.3145,-0.93234,2.3876,-2.3608,-3.4886,1.274,0.64235,1.8545,-1.1843,-1.4884,-0.32605,-1.3199,-1.8484,0.27254,0.50539 -3.3216,0.7039,-1.7361,-0.41909,-1.1047,-0.0072896,1.6696,-0.81481,-1.0578,-0.34945,0.63833,0.011268,1.0975,0.2652,-0.79946 3.3255,1.6539,-0.31278,1.4274,1.3005,-0.53178,0.84106,-1.053,-2.6133,0.14168,-1.332,-2.1347,0.41023,0.43846,1.1751 -2.002,-1.6757,-2.1103,-0.55972,-1.0478,-0.14504,-2.0509,-1.7726,-1.0932,0.081417,0.6923,1.7731,-1.7202,0.32667,-0.42551 1.5398,2.0758,-0.092248,-0.99028,-2.564,-0.44927,-1.604,-0.44732,-0.16311,-2.3264,-0.4462,-0.62495,0.11068,-0.019787,0.30846 4.8089,-0.66029,-0.53823,-1.7976,-2.1431,1.1708,-0.96476,2.0066,-0.25893,0.75786,-0.84829,0.21345,-0.25207,1.2895,-1.0062 -1.5119,-1.9699,0.51605,1.7842,-0.83967,0.32105,-0.35381,-0.10021,0.60356,0.4024,1.8597,0.093077,-0.8065,-0.98977,-0.70425 3.2949,-1.7448,2.5077,2.1293,0.80413,2.183,-1.738,-0.30674,-1.8126,-1.0368,0.95942,0.26161,0.60875,-0.26771,-0.23935 5.2305,-2.93,-0.20991,-2.8422,-0.79136,-2.1833,1.0339,2.2017,-0.65275,-1.8794,0.031992,1.5383,1.0206,0.41828,-1.4359 -0.92285,3.1692,-0.58179,0.65056,-2.2284,0.62008,-0.18988,0.19638,-1.8065,-0.40338,-0.19571,0.37776,0.36684,0.2328,0.60304 0.023656,1.3002,-1.8475,2.6673,0.92022,0.11388,0.24996,-0.076576,-1.6473,-0.28251,0.08444,-0.52164,0.411,0.88384,0.51789 1.2737,1.9261,-1.4955,0.41223,-2.0517,-0.46739,-0.030888,-0.29857,1.0677,-0.39923,-1.8999,-0.31622,0.90497,0.21963,-0.56979 -0.25177,-1.0914,2.2762,1.6618,-1.9698,0.15669,0.086771,-0.78032,0.41618,0.75376,0.87616,0.56109,-0.69001,-0.62542,1.0283 -0.96035,-2.9828,-0.4005,0.64573,3.6449,0.012034,0.20276,1.4855,-1.8395,-1.0191,0.42483,-1.6423,-0.28015,0.78825,0.69515 -1.4802,0.58041,-0.44817,0.11019,-1.243,-0.4366,0.4647,1.036,0.87204,1.3913,0.12991,0.84176,1.4342,0.37591,0.65925 2.3679,1.5586,-0.75586,-0.1408,-1.8328,-1.599,-0.55108,-0.47021,1.6036,-1.1638,-1.312,-0.81094,0.24708,0.62855,-0.9137 0.80075,-0.13565,0.41908,2.6016,1.2989,-0.12758,-2.2429,-0.091636,-0.53566,-2.0779,2.0651,0.50839,-1.7481,0.45577,-0.48592 3.0854,-2.6752,-2.2062,-0.45474,-0.15556,-0.94657,2.0022,-0.36902,1.5596,-0.80387,0.88556,1.4312,-0.41798,0.4246,1.4986 1.9959,-0.8861,-3.3833,-2.2909,-1.7464,1.3362,1.7185,1.2744,-0.014098,-1.7902,1.36,1.5944,0.52859,-0.60041,1.1277 -1.6956,-0.12445,-1.0643,1.1117,1.1254,-0.082738,1.2732,0.70574,-0.49943,2.7839,0.55626,-0.68648,-0.36758,1.0277,-0.30672 4.1356,-1.9856,1.3498,1.8122,-1.0365,-0.028732,2.0385,-0.39599,-1.4479,-2.2751,-1.0989,0.4963,-1.2307,-0.41766,-0.68491 -1.2263,-2.3009,-2.4609,0.75443,1.6015,-1.1852,-1.0575,0.13092,-0.34096,-0.99373,-1.0469,0.63575,-2.2697,-0.086732,0.68994 2.0668,-0.64914,-1.2265,1.9798,0.70395,0.30676,-1.0212,-1.3626,0.15791,0.44364,2.8508,-0.72585,0.44961,-0.65725,0.53331 -1.3339,-1.2553,-0.17667,-0.76003,-2.5226,-0.61013,0.057649,-2.0484,-0.44477,0.49388,0.43307,-0.88337,-0.21976,-0.62022,-0.0009416 -1.7467,-2.1709,-0.43176,-1.6232,-2.449,0.012838,-0.44127,-0.89527,-0.79609,-0.68436,0.098297,-1.2342,0.18867,-1.3255,-0.41323 -0.74939,-3.368,-0.49524,1.6151,1.2062,-0.025627,0.19623,1.8545,-1.2446,-0.236,-1.2777,-2.4264,-0.61765,1.1233,0.73545 1.8728,-0.05575,1.0449,1.2575,-2.6988,-0.022049,-0.024473,-0.92143,0.64092,-0.66542,-0.28449,0.27714,-1.005,-0.25166,0.61554 3.0325,0.33277,0.21037,0.04025,-1.421,-2.2916,-0.69105,-0.66744,1.4411,-1.1028,-1.0091,-0.16313,0.14062,0.25094,-0.87084 -1.7111,1.2937,-2.3116,1.88,0.3973,1.4291,0.66844,1.7699,0.50178,0.32731,-0.92757,-0.37734,-1.0313,-0.040048,0.40894 3.8988,0.28309,-1.7419,0.45003,1.7242,-0.062818,1.6811,0.30653,-2.5866,0.32651,-1.8888,-2.1423,0.9319,-1.1582,0.30293 4.0799,-0.28226,-1.664,-0.97574,2.2532,-2.0214,2.3932,0.83245,-0.06801,0.03926,-0.25815,-0.50293,-0.71301,-1.3824,0.8041 -0.10245,1.8577,0.12339,-0.0079416,-1.8842,0.73309,-2.3104,0.235,-0.5653,-0.20122,1.4178,0.48394,-0.33362,0.67408,-0.54107 -2.0474,1.7977,1.303,0.061462,-0.95098,0.80264,0.813,0.34662,-0.79132,-0.046486,1.2814,0.71456,0.44049,-0.18619,0.29721 -1.0621,0.588,-2.2721,2.1772,-1.4928,1.2171,0.18882,-0.52294,-0.34886,-0.51342,0.52875,0.80912,-0.18892,0.20356,0.50525 -0.83521,2.0591,-1.2533,0.80282,-1.6671,-0.66112,-1.0932,1.4275,0.60807,-0.44918,0.089552,0.71694,0.2891,1.3725,-0.41931 0.23237,-2.8691,-0.83855,0.86318,-0.0035715,2.5877,-0.38696,-0.69018,-0.089893,0.99366,-1.1456,-0.45952,1.3291,-0.85728,0.19566 1.0563,0.69474,-0.9698,1.9303,-0.15396,0.55009,1.7886,-0.30244,-1.1033,-0.34005,-2.7736,-0.50786,1.0475,0.094979,0.42621 0.86963,2.2934,0.37938,1.2921,-1.0286,-0.68179,-2.2309,-0.50276,-0.5488,1.1828,1.5225,-0.086158,-0.71419,0.83523,-0.70755 2.2776,1.2334,-0.74753,0.12219,-2.0788,-1.6223,-0.33878,-1.0117,1.3635,-0.40534,-0.87837,-1.1978,-0.72231,0.16878,0.019752 0.7155,1.4314,-0.11892,-0.12271,-2.8972,-0.38643,0.39659,-0.02352,-0.1127,-2.4962,-0.99112,0.49588,-0.24635,0.25997,-0.059225 2.8996,-0.33659,-1.6172,1.135,0.8787,-1.0187,2.4316,-1.3276,-1.1281,-0.045993,-0.27182,-1.0657,1.1659,-0.044719,2.4348 1.5995,1.312,0.37007,1.8282,-1.8061,-1.6056,-0.6432,-1.2047,0.30997,-0.42555,-0.58189,-0.30903,0.27421,0.79674,0.64787 0.070137,2.8838,1.9765,-1.1995,-0.91298,-1.9479,0.19604,0.14083,-2.4417,-2.0668,0.24782,-0.96832,-0.73205,0.88625,0.51321 3.7277,0.66202,-1.8675,-1.8108,-1.0923,-1.7042,0.66051,-0.58509,1.6906,-1.2869,0.01351,-0.87037,0.89126,0.14458,-0.66902 1.531,1.1942,-2.2956,1.0187,-0.13762,0.7068,-0.11693,-1.812,0.060213,-0.3953,1.1071,-1.4762,1.1734,0.44587,1.38 4.8682,-2.0389,-0.83437,0.32668,-0.22431,-0.81111,1.3657,-1.1572,-0.20451,-2.5301,-0.27405,-0.85723,-0.65682,-0.21925,-0.74743 2.7387,1.3211,-1.264,-3.3517,0.71625,-2.5725,1.4033,0.88497,0.32314,0.73966,0.71986,-0.16991,-0.66413,-0.56416,2.3507 1.038,3.1886,0.59629,0.87329,0.011184,-1.5384,0.36853,-0.99917,-1.6176,0.092599,-0.97931,-0.76066,0.54158,0.46315,0.45119 4.8529,-3.2282,-1.0399,-3.1385,-1.3223,-0.603,0.26762,2.9802,0.47665,0.71549,0.6578,0.62961,-0.43919,0.63848,0.082753 5.4904,-2.4106,-1.0235,-0.64987,0.65661,1.2445,2.3346,-1.5953,-1.0571,-1.0769,1.4456,0.43267,-0.0096808,0.67203,0.17256 4.5429,-2.5718,-1.852,0.3966,-0.28199,1.7566,0.22665,1.2424,0.32881,-0.49559,0.33337,-1.7639,-0.8387,0.36219,0.57543 0.12169,2.7861,-2.573,-0.40373,-1.5021,-0.053284,-0.72801,0.79976,-0.58426,0.27649,-0.74579,-0.89514,0.27327,-0.12452,-0.46261 -0.92991,-1.4131,-3.1066,1.8394,0.66252,1.9342,-0.88344,0.28148,0.82117,0.11952,-0.46611,-0.39995,0.082328,0.20377,0.7605 -0.22213,2.8193,-0.66706,-0.45758,1.5027,-1.0533,-2.1693,1.7567,0.55525,0.34504,0.51089,-0.87599,0.65045,-0.38918,-1.0459 1.8357,1.1127,1.4113,0.88644,-0.56181,-1.0291,1.4167,0.69032,-1.9654,2.5547,-1.6386,0.60504,0.43172,-0.34646,-1.0878 -1.0626,-0.016393,-3.8381,0.71931,0.71044,0.63178,-0.043319,1.2432,0.073381,0.66488,-0.99967,-0.64279,-0.47365,0.62378,0.35288 4.8541,-3.571,-2.0286,-0.41033,-0.24319,2.7902,0.67841,1.2942,-0.75918,-1.0558,-0.68951,-0.99341,0.18642,-0.33753,0.18363 2.1839,-0.16143,0.82687,-0.90507,-2.4008,-0.086508,-0.20146,2.2014,-0.18449,-3.5121,0.010397,0.080216,0.38774,1.1089,-0.53838 1.5899,-2.1569,1.3119,0.13757,-2.9534,0.58627,0.56657,1.9309,0.73288,0.18103,-1.6512,-0.97102,-2.33,-0.27204,-0.88685 1.9847,1.2196,-1.4443,0.92213,-0.4995,-0.83609,-0.88005,-2.5489,-0.17046,-0.05694,0.011284,-0.69465,-0.064906,-0.60241,0.4602 4.9671,-3.9905,-1.4317,-0.81978,-1.3866,0.97882,1.4044,1.9928,-0.98713,2.3946,-0.76116,1.4718,0.36221,0.053138,0.32082 1.6487,1.5316,-0.028068,0.24301,-1.6324,-1.7355,-1.1236,-1.0109,0.7646,-0.58368,-0.29242,-0.89451,-0.54652,1.6443,0.55892 -2.0231,0.92765,0.65861,0.28155,-1.8892,-0.66094,0.35768,-0.23222,-0.6712,-0.049644,2.0069,0.11484,-0.51981,-0.35184,-0.47061 -0.070407,-0.1301,-0.81548,0.9986,0.52084,0.13332,0.033277,2.4422,0.68639,-0.67921,-0.048047,-0.60904,-1.1684,0.75242,-0.15781 0.12816,1.0104,-0.4869,2.3925,-1.1521,-0.059769,0.78747,-0.48549,0.3936,0.9883,-1.2257,-0.073438,0.1213,-0.062031,1.3918 -1.019,-1.781,0.2072,2.5315,0.37497,1.8015,-0.12425,1.6477,0.90827,-0.076973,1.1003,-1.3045,-1.7103,-0.00015945,-0.081941 2.0009,0.70227,-1.7053,1.6395,0.81231,-0.0070305,0.58746,-2.4144,-0.40215,-0.41716,0.067615,-1.6569,1.7216,0.16445,1.202 -0.51353,2.6394,-0.030227,0.13457,0.068417,-0.018136,-2.0388,2.0284,-0.10962,0.73102,0.11658,0.16503,0.99716,0.37049,-0.41539 -0.071208,-2.2781,2.0816,2.5912,0.89425,0.17424,-0.066011,2.0111,0.55303,-1.613,1.1516,0.090383,-0.96433,-0.73612,-0.49173 -2.4716,-1.0573,-2.1864,0.087303,-2.047,-0.72888,-0.73999,-0.95745,0.025817,-0.077955,0.85385,0.12184,0.25628,-0.051979,-0.60322 1.8236,2.0166,0.28449,0.11379,-0.54566,-2.2099,-0.55929,0.62846,0.36186,0.76507,-2.0898,-0.52854,0.38382,0.12018,-0.37334 -1.4664,0.34295,-0.85498,1.7089,1.2964,-0.0013322,0.63996,1.2402,-1.5813,2.1539,0.9985,0.12471,-0.80427,0.14346,0.30768 2.5511,1.4772,-1.6579,-0.20708,-0.21425,-0.95336,0.13846,-0.72329,0.4162,1.7594,0.066686,-1.7652,-0.0071364,0.30911,1.2777 -3.2971,-0.64377,-2.7201,-0.46808,0.16914,0.061751,0.29456,-1.9473,-1.0041,-0.4819,-0.021998,0.97945,0.2795,-0.5352,-1.5353 -0.93375,-1.6946,-0.60821,0.0038216,-1.9086,1.6468,-0.8949,2.678,-0.039063,-0.19966,0.45374,-1.4455,1.2549,-0.45674,-0.071349 1.7616,-0.47846,2.1206,1.784,-1.7058,0.66488,-1.3155,0.16357,-0.85321,-0.5793,0.66592,-0.76145,-1.4618,1.2795,1.8424 3.6477,-0.34522,-1.5564,-0.0084016,-1.2892,0.18405,0.037116,-1.3333,1.1567,0.86559,1.2045,-1.0013,0.009764,-0.665,0.93983 1.2334,2.3993,-0.96675,0.99509,-1.2489,-1.598,-0.46063,-1.2052,0.17209,1.0154,-1.105,-0.65143,0.69883,0.85145,-0.14728 3.3702,-0.47617,0.21839,-2.5807,-1.8947,-1.7932,-1.1434,1.2164,0.57622,-2.5556,0.64668,-0.30148,-0.23618,0.57188,-0.47855 -2.3106,-1.2138,-0.22025,0.47273,-2.6086,-0.32706,-0.26454,0.47678,0.89717,0.33365,1.2628,-0.17948,-0.173,-1.0399,-0.479 -0.85254,2.5839,-2.0394,1.0856,-2.1805,1.5875,-0.48691,0.48515,-1.545,-0.507,0.047364,0.30882,0.56534,-0.12896,0.088515 1.695,0.3966,-0.23763,-1.402,-2.5155,-0.2607,-2.2052,1.1006,0.52192,-2.4105,-0.22558,-0.3965,-0.22731,-0.56089,-0.74393 5.6178,-2.0274,0.056597,-1.7006,-0.88401,-0.24764,-0.5918,3.2035,-1.8284,0.82673,-1.1035,0.57967,0.55584,0.37796,-1.1962 4.4091,-1.5742,0.31645,1.4422,-0.93522,2.7882,-0.21474,1.8775,-1.1891,0.51536,-1.3304,0.47479,0.16108,0.64753,-1.2935 -0.42653,1.9148,-1.1755,1.9061,-0.50126,0.090908,-0.53081,0.99636,0.24474,0.58637,-0.26489,0.20473,0.9057,0.75489,-0.53683 1.401,1.3206,-2.6151,0.76945,1.4636,-0.21256,0.25448,0.92621,0.95417,-0.17826,0.031501,-1.404,0.29234,0.20519,-0.71748 1.1794,1.0403,-1.3261,2.0284,2.1398,-0.31588,-0.50568,0.64232,0.55874,0.96515,0.24916,-0.69422,1.3523,-0.03879,-1.2126 2.2141,0.36633,-2.1469,0.93606,-0.54878,0.36099,0.67103,-1.9393,-0.42774,-1.952,-0.90005,-1.7029,1.3565,-0.15809,0.049392 -1.5928,-0.13321,-1.5268,0.13059,-0.66302,-0.7417,0.36526,-1.1618,0.042587,2.4388,-0.067425,0.26046,1.4337,0.75752,-0.35675 3.7136,-0.27006,-0.9502,-0.14922,-1.5162,-1.305,-0.34587,-1.1352,1.7009,-0.79119,-0.10895,-1.0848,-0.010316,0.16924,-0.31986 -0.50224,0.79614,1.0001,2.1245,-1.2489,0.24019,-1.6013,-0.30558,0.83043,-0.73421,1.0057,1.202,-0.65384,0.13844,0.17381 -0.35071,-1.5075,-1.8161,0.39488,-1.6197,1.3514,-1.6359,-1.0238,1.0995,1.5944,-1.0515,0.61265,-0.0286,-0.72949,0.31532 0.74804,1.7935,-2.1274,0.32623,-2.4136,0.07957,0.022902,0.079134,0.88383,-1.3141,-1.3137,0.042599,0.81809,0.26074,-0.5654 -0.85113,1.6952,1.0763,0.54761,-2.6952,-0.96928,0.074151,-0.84243,-0.66809,-0.45645,0.0019347,1.1601,0.78093,0.22314,0.56074 -2.3808,-0.51232,-1.4839,-0.3927,1.4143,-1.4755,2.1209,1.7218,-0.19706,0.69138,-0.80312,-1.3135,-0.56921,0.12072,-0.26944 0.32205,1.7791,1.2368,1.272,-1.5588,-2.9218,-0.54301,-0.38412,-0.55641,-0.76087,-0.44996,0.75068,1.1725,0.46873,-0.47439 -0.56825,1.2789,-1.4228,2.2982,0.16018,-0.57009,0.83039,1.9708,0.48798,0.40364,-1.5568,-0.29756,0.39881,-0.22302,0.21773 1.7073,0.79799,-2.1461,-1.2149,-2.3485,-0.80771,-0.30153,0.13337,1.5212,-0.57094,0.77871,-0.33385,-0.33482,-0.28271,0.51222 -0.83927,1.9124,-0.23109,2.8257,0.014033,-1.6559,0.80686,0.14402,-0.70141,0.49493,-1.2554,0.14811,-0.11486,0.93175,1.1463 1.9659,-1.2061,-2.4667,0.63991,-0.97759,2.1461,0.0019704,-0.16533,-0.50814,0.081647,1.5891,-0.69271,0.92736,0.45959,2.4358 1.3085,0.22428,-0.4465,2.0574,3.0277,-1.1326,-0.62388,0.68249,0.85603,-1.7814,0.85479,-0.25521,1.1071,0.19978,-0.89011 4.1179,0.57867,1.0161,-1.2282,-1.6427,-2.1485,-0.28779,-0.12043,-0.24525,-1.4671,-0.37952,-0.41067,0.74952,0.29723,-0.95074 1.7083,0.51254,-1.0542,0.48827,-1.4006,0.56439,-1.9133,-0.83468,1.4108,-0.030542,1.2213,0.27263,1.0821,-0.31433,-0.25864 1.8209,0.77595,-0.3271,-0.91997,-2.6071,-0.34027,-0.49531,1.4829,-0.1099,-3.4078,-0.27408,0.32109,0.03315,-0.73484,-0.87968 0.48354,-0.35213,1.5977,0.54215,-3.2501,0.25397,0.1712,-0.93659,0.50275,-0.15337,0.791,-0.63663,-0.055391,-0.07676,0.87941 -0.34704,0.37892,-0.85014,2.1055,-1.2292,0.018619,0.99553,0.3533,0.23392,1.9132,-0.282,0.9574,1.1712,0.56659,0.080851 0.29343,1.8195,-2.2138,1.3576,3.143,-0.48126,-0.72033,1.5819,-0.81553,-0.30782,-0.30009,-2.1776,-1.5349,-0.29133,-0.62143 3.3539,-2.7688,-1.5384,1.0121,-0.19004,2.7102,0.35284,0.28279,-1.9204,2.1478,0.54905,0.64251,1.1834,-0.13237,1.2049 2.0149,2.5593,-1.1358,-1.6244,-1.0949,-1.3964,0.29954,0.40898,0.043444,-0.75437,-2.0114,-1.4402,0.96462,0.21367,-0.7564 -0.56848,2.2961,0.97495,0.81355,-2.1194,-1.5756,0.72488,-0.81508,-0.64829,0.1044,-1.1887,0.51606,0.62518,0.98001,0.93713 1.108,1.224,-1.3194,1.4093,-2.3633,-0.5154,-1.264,-0.90694,0.94451,-0.92451,-0.39771,-0.20536,-0.49017,0.29926,-0.054362 -1.824,-0.8121,-3.0084,-0.72281,0.63408,1.5958,-1.6988,1.317,0.71617,-0.53788,-0.74217,1.004,-1.1361,0.43028,0.64379 -0.44311,1.7574,0.055199,0.00036804,-2.9497,-0.79665,-0.056253,-0.61572,-0.28811,-0.5891,-0.7366,0.75219,0.94615,-0.18011,1.1198 -3.2595,0.84833,-0.53207,-0.99908,0.27298,0.25232,0.43782,3.3287,-0.28224,0.20426,0.10122,-0.42988,-0.51694,-0.38565,1.3731 0.62012,-2.677,-0.0047715,-0.65953,-2.2916,0.40076,1.2921,0.94096,0.564,0.034854,-1.5675,-0.41592,-1.294,-1.6255,-1.7465 4.4025,-2.0454,-2.1103,-2.6877,-1.6857,0.065841,1.0158,2.4049,0.86613,1.2545,0.46214,0.6653,-0.13771,0.24341,0.11829 -2.1507,2.2974,-0.90539,0.55934,-0.52461,-0.33638,1.3958,2.8392,-0.66196,-0.48314,-1.1912,-0.98514,-0.56426,-0.087276,0.088346 -2.4592,1.8856,1.052,0.48616,-1.4004,-0.98025,0.9358,-0.35664,-0.64969,0.91884,0.79149,1.4002,0.16623,0.52498,0.33087 1.3135,1.7101,-0.91398,1.946,0.14667,-0.056048,0.4965,-0.26603,-1.5875,1.4635,-1.8056,-1.318,0.25203,0.86666,1.0744 -2.3102,-0.87286,-0.2938,1.2398,0.49037,-1.9451,1.9431,0.074862,0.24912,0.50783,1.6215,-0.3361,-0.7906,1.1818,-1.3436 4.3541,-2.1167,0.47317,0.53668,-0.53519,-0.28247,-2.2168,0.2521,-0.37512,0.15261,0.69979,-0.56702,1.1174,-0.12263,-0.15046 -2.1727,-0.44714,4.0072,-0.87995,0.80553,-0.54041,-0.58267,1.5953,-0.51975,0.13147,0.08811,0.10718,-0.88157,-1.5041,-0.043307 4.0571,-4.686,-1.7657,0.47006,-0.79431,1.3282,1.6529,2.5954,-1.0713,0.46931,-1.5741,1.4871,-0.17098,0.229,-0.8984 1.6102,0.43576,-1.4824,0.57127,2.6312,-2.1171,-0.77473,1.4106,1.7003,-0.81927,1.0515,-1.4359,0.23283,-0.28283,-0.37393 2.2883,-1.2066,3.3293,0.28279,-2.2884,0.27741,-1.3976,0.36211,-0.79846,-0.45339,-0.067528,0.87194,0.61283,-0.56268,-0.62607 0.97254,2.0672,-0.044767,-0.09476,-2.4002,-1.0879,0.84574,0.64965,0.93589,-1.1806,-1.3694,-0.22171,-0.42533,0.62294,0.16008 -0.014936,0.28427,2.089,-0.98323,-3.4695,-0.22226,0.27551,-0.40434,-1.3128,-1.2622,-0.28652,-0.49423,-0.38991,-1.0948,0.82953 3.0479,-2.1528,-1.9186,1.6584,0.78173,1.881,0.47366,0.43582,-2.3387,2.2717,2.1683,0.56804,2.1581,0.89183,0.974 -2.1539,0.13133,-2.9222,0.15706,0.96578,-0.42738,0.72603,1.7814,-0.66096,1.3694,-0.34617,-1.112,-0.47866,0.99561,-0.36749 1.9007,0.36442,-1.8695,-2.284,-0.41112,-1.785,1.6114,1.0057,1.0543,0.76528,0.65484,1.0616,-0.45219,0.48059,2.0133 -3.0792,0.17216,-1.0889,-0.66019,-0.070735,-1.3295,0.98772,-0.63096,-1.1299,1.7259,0.25293,-0.12944,1.6185,1.2929,-0.10123 -0.90085,-1.6134,0.72591,1.5046,0.43916,0.38478,1.2174,-2.724,-1.231,0.12786,1.5546,0.15778,0.61775,-1.269,-0.23818 0.021591,1.9802,-1.1295,1.5124,-2.0876,-0.16746,0.17756,-0.23864,0.46322,0.81598,-1.4105,-0.12704,0.81479,0.81283,0.5787 -0.99504,3.266,0.22697,-0.10535,-2.4015,0.26463,0.7836,-0.32237,-2.0613,-0.74239,-0.27977,0.33781,0.54898,0.24377,1.186 -0.96457,-0.10491,1.2724,-0.81965,-2.9037,-1.7255,2.0404,-1.4498,0.13131,-0.00037414,-0.74357,-0.58086,-0.25699,-0.66279,0.22624 3.2867,-2.0398,0.19724,0.52643,-0.16414,-0.97678,-2.0913,-0.02155,-0.11954,0.7247,2.5743,0.085249,0.68792,0.66326,-0.15692 3.5971,-0.90035,-1.9503,-2.8651,-1.1874,-0.6312,0.92312,1.4348,0.69029,-2.0559,1.6558,-0.020549,0.3683,-0.11963,0.051366 4.53,-3.5423,-1.8249,-0.12458,-0.34084,0.14516,2.1931,-0.38799,0.54082,-1.6866,0.75249,0.020368,-0.39946,-0.62833,1.5239 1.3665,-0.96186,-1.3812,0.26121,-0.29603,0.46318,-1.1392,0.91945,0.46898,1.828,3.9081,0.81605,-0.43958,1.3286,1.202 0.36099,1.9029,1.0588,2.111,-0.17014,-0.90837,-0.22803,0.72084,-0.46195,1.5092,-0.026531,1.0994,0.12751,1.8803,-0.0047883 -1.8835,-0.29973,-0.40759,-0.76685,-2.8023,-1.2641,1.274,-1.6666,-0.20503,-0.0022149,-0.45996,-0.041749,0.61223,-0.52368,-0.19724 -2.8599,0.44675,-0.13381,-0.093066,-2.0452,-1.3415,0.49893,0.057651,0.080413,-0.044428,1.6457,-0.052441,0.85555,0.19294,0.017073 5.2964,-3.6623,-1.0492,0.13931,0.72341,2.936,0.91294,0.52012,-2.9181,1.1194,-0.1992,-0.60931,1.3371,0.29043,0.38104 3.1723,-0.1093,0.074555,2.0815,-1.1301,-0.0055904,-0.83289,-2.0581,0.050956,-1.1914,-1.0022,-0.57054,0.051638,-0.68185,-0.33516 -0.067428,-1.7522,1.538,1.7931,-2.2137,0.93073,-0.30307,0.31059,0.7244,0.74582,0.63276,-0.23132,0.38441,-1.2376,-0.13081 2.4911,-2.1065,-1.8363,-2.3742,-1.9671,-0.21199,-0.54751,1.9733,1.0574,-0.61069,1.6383,1.3008,0.70844,-0.13144,0.27798 4.1684,-1.9971,3.0966,0.56793,-1.533,-0.21235,-1.4519,0.48211,-1.3472,-0.048896,-0.14129,-0.09182,-0.87717,0.28009,-0.21573 0.91603,-0.35381,3.0171,-1.8348,-2.3718,0.9575,-0.6807,1.8404,-2.9091,-1.2159,-0.9433,-1.263,-0.2261,-1.2865,-0.13478 0.71931,1.4886,0.32966,0.69474,-2.1407,-1.4851,0.79726,0.33013,0.29504,0.24042,-1.8363,0.58776,1.1135,0.7351,-0.30279 4.6003,-2.3579,1.0986,-1.5298,1.7712,-0.18047,-0.87302,0.59321,0.73267,-0.24293,1.3854,1.8757,0.9206,-0.75614,-1.7303 -1.0241,0.30853,0.57915,1.0722,-2.8261,-0.45487,0.62797,-0.72413,0.063543,-0.47387,0.64743,0.54542,0.73477,-0.28478,0.63388 3.1558,-1.4508,-1.3017,-1.9093,0.5393,-2.5459,2.112,1.3621,0.92079,-0.16707,0.65899,0.99066,-0.10385,1.1218,0.90796 -0.1574,2.7392,0.88232,-0.55099,-0.79271,-0.36154,1.5544,0.33074,-2.9593,-0.98932,-0.86793,-0.91292,-0.69213,0.092959,0.74818 2.0189,0.45161,-1.2488,-0.32797,1.5889,-0.0032755,0.55846,0.77264,1.3745,2.8648,0.42608,0.72963,1.4143,-0.74027,-0.2494 1.8788,-0.74293,1.6068,2.861,-1.8238,0.077778,0.025656,-1.3866,-0.29785,-1.1584,-1.0431,0.37816,-0.042044,-0.93945,0.43674 1.4366,2.2999,0.73757,0.060977,-2.1414,-1.6905,-1.5617,-1.0175,-0.083019,-0.39062,-0.28992,0.27706,0.38552,0.020523,0.12497 1.0628,0.088634,-2.5316,1.5197,4.1506,-0.28825,0.90836,1.1299,-0.82775,-0.95588,1.4542,-1.8133,0.61798,-0.26894,1.061 4.2194,-2.0198,-1.7928,-0.15889,1.6273,-1.367,3.5917,0.97789,0.42253,0.2217,0.051926,1.0542,-0.083441,0.53809,0.48132 3.4095,-0.46261,1.3694,-1.3339,-1.0622,1.3012,-2.9447,1.8895,-0.97029,1.2139,0.14613,0.99255,2.0116,0.27437,-0.99509 -2.7701,1.0669,-0.44097,1.3223,0.0076687,0.17051,0.93084,1.3962,0.85747,1.625,1.0979,-0.1821,-1.3226,-0.27269,-0.61356 -2.846,-0.89494,-0.6043,-1.6566,-1.1199,0.19989,-0.4987,-1.6635,-1.8863,0.44471,1.2163,-0.037342,-1.3514,-0.079368,-0.76698 5.2047,0.052799,-0.79733,-1.8704,2.2217,-2.1758,2.3942,0.56979,0.2606,1.2087,-0.26682,-0.75111,-0.82619,0.38524,1.1026 5.1484,-2.8902,-2.3228,-0.43244,0.13206,0.33471,2.1013,0.54089,0.82819,-1.34,0.56733,0.023006,-0.39943,1.0562,-0.2022 4.198,-0.6976,-1.5939,-1.0473,-1.3969,-0.99217,-0.47897,0.049513,1.8812,-1.2542,0.14979,-0.36219,-0.79792,-0.67104,-1.9501 3.2487,1.2855,-0.97426,-0.64391,-0.48966,-2.4703,0.15415,-0.29748,1.8843,-0.62523,-1.0956,-0.95364,0.85836,0.45822,-1.1806 -0.22397,-0.5287,-0.00017145,1.6707,-1.7879,2.2373,-0.36936,0.92099,1.2623,1.8284,0.76072,-0.69788,0.64467,0.54314,0.35885 0.47448,2.32,-1.3583,1.5223,-0.072291,-0.47928,-1.2077,-0.18449,-0.92684,0.22288,1.0443,-0.035209,0.15944,-0.49003,-0.46027 -0.31131,0.68728,-0.46547,2.5191,-0.52212,0.37421,-1.263,0.38404,0.75076,-0.95752,1.4205,0.69836,-1.911,0.33894,-0.57746 -1.46,1.0648,-0.35623,0.6246,-3.1887,0.14714,0.57813,-0.62701,0.12347,-0.11497,0.90516,0.72059,0.18232,0.074817,0.57455 3.4629,-1.0876,-0.70543,-2.1266,-1.982,-1.1823,-1.0616,-0.12293,0.67619,-0.76429,1.3264,-0.75846,0.90879,0.31965,0.85043 -1.9394,-0.90028,1.378,-0.46291,-2.7502,-0.78131,0.19136,-1.2229,0.063553,0.45562,1.1651,0.022842,0.75589,-0.62924,-0.47572 4.7332,-1.3633,-1.6436,-1.2519,0.41055,-1.9672,0.93703,0.34174,1.5599,-1.5927,0.64917,0.80356,-0.40483,0.054423,-1.1559 0.95364,1.175,-0.82274,0.056292,-2.562,0.52361,-2.0709,-0.069752,0.75114,-0.84237,0.49583,0.28507,-0.05665,0.42298,0.46475 -1.1223,2.0294,-0.3727,2.1615,0.63953,-0.38716,0.53787,0.32086,-2.7312,0.49581,-0.79596,0.45241,-0.53666,1.7556,0.4696 -2.1913,-0.47899,-2.8345,-0.30026,-1.4515,-0.057733,-0.28717,-2.027,-1.4004,0.4969,0.098046,0.76829,-0.59748,0.39024,-0.94642 3.2661,1.678,0.39115,-0.22093,-0.18282,-1.8797,0.94798,0.44672,-0.51056,1.3706,-2.325,-1.1942,0.63468,1.2347,-0.30259 0.35382,2.777,-0.65197,0.91186,-1.8023,-0.60229,-0.86338,-0.28659,-1.5652,0.66026,-0.030311,-0.48143,-1.4874,0.54537,-0.31254 2.0341,-0.21671,-0.039048,0.32992,0.045275,0.37085,-2.8936,1.642,0.71719,1.7879,1.6298,0.12759,0.91004,1.5584,-0.39628 0.32633,1.2918,1.2008,0.92518,-1.2629,0.6446,-2.8406,0.15427,0.23039,0.093809,1.664,0.62749,-0.7272,0.83048,-0.40014 -0.42629,1.0281,0.6322,0.72023,-1.7854,0.037126,-1.8529,0.67868,-0.028964,-2.4479,1.4073,0.97607,0.99637,0.041232,0.40315 -0.10033,2.0024,-2.1296,0.19796,-1.098,0.26405,-1.8253,1.441,-0.74274,0.40671,1.0961,-0.33581,0.057056,0.96119,-1.52 0.68869,1.543,-1.3895,0.76546,0.97113,-1.426,-0.98694,2.5272,0.75171,-0.3786,-0.78365,-1.2321,0.59088,0.48152,-1.0536 -2.1339,1.5965,0.77562,0.21291,-0.072623,-0.90496,1.506,2.1706,-0.43163,-0.57637,0.304,0.45476,-0.36838,0.69872,-0.14428 -1.1569,2.2548,-0.59717,1.6224,-0.6452,0.48838,1.1877,0.62767,-0.18283,1.6654,-1.2817,0.69611,0.97051,-0.29416,0.91401 0.11387,-0.29586,-1.6533,2.2435,-0.40305,-0.72003,-0.69645,-1.132,-0.36621,-2.9291,0.38988,-0.40036,0.69696,1.0066,0.47177 0.32559,1.9905,-0.14861,0.071556,-2.6535,-0.0082448,0.81104,-0.029638,-0.37473,-2.5072,-0.9372,-0.31901,0.35556,0.18322,0.70746 0.67788,1.7214,-0.39183,1.2581,-1.6549,-0.56921,-0.53723,-0.90534,-0.1214,-0.47621,0.083523,-0.35953,-0.19733,1.686,0.79708 0.087529,-3.3224,0.056411,0.64358,0.41851,2.3358,-1.5747,-2.0232,-0.72636,2.2692,-0.60359,-0.51252,-0.26936,0.048756,0.62965 -0.48481,-0.049732,1.3608,0.50276,-3.0031,-1.59,0.23909,-0.29974,0.61018,-0.48599,0.092763,0.38324,0.49352,-0.77482,0.64366 -0.73557,-3.2071,1.7763,1.2552,0.35417,-0.5385,-0.57404,2.4259,0.23375,0.41508,0.07715,-0.66682,-0.30794,-2.129,0.15736 -0.23811,0.97023,-0.73661,3.2783,0.23807,-1.0168,0.6216,0.67636,-0.66196,-0.78714,0.012294,0.11289,0.17398,1.0877,-0.25364 1.4993,0.79909,-2.5725,0.2032,0.66158,-1.5021,1.3013,-0.50387,2.0398,0.037456,0.10484,0.22238,0.21546,0.66742,-0.33816 0.2803,0.53563,0.2365,2.9677,0.8159,-2.4203,0.30847,1.3807,-0.13817,-2.2193,-0.93719,-0.683,-0.74138,-0.26085,-0.10586 3.9468,0.22364,0.38271,-1.8675,-2.1904,-0.32963,-2.0153,0.60545,-0.080021,-0.68693,0.035988,-1.2165,-1.2158,0.67719,0.13026 0.73067,0.88055,-0.18705,2.0456,0.07977,1.1386,-0.49756,0.80619,-1.2469,1.7923,-0.53399,0.41326,-0.53569,0.83502,0.7029 -1.1593,-1.095,-1.0556,1.3654,1.9349,-0.28843,0.96567,-2.0736,-1.2996,1.2385,0.64951,0.67295,1.2941,0.11179,-0.7403 2.1827,0.96147,-2.0848,-2.6602,-0.9739,-1.9824,0.87699,1.3031,-0.75867,0.4814,1.7681,-0.029979,0.22819,-0.49962,1.6966 0.69515,3.011,2.1438,-0.84881,-0.77749,-1.9665,0.15071,0.46925,-1.9799,-0.61577,-0.78053,-1.4371,0.87668,0.070731,0.028695 4.9069,-3.6521,-2.3908,0.017944,-0.40971,2.0347,1.0727,0.75734,-0.56727,-0.5541,0.14679,-0.91595,-0.14979,-0.71893,0.17781 -0.88374,2.7112,0.58843,0.23803,-2.5817,0.36894,0.51253,-0.77314,-2.0109,-1.0509,-0.060104,0.37948,-0.28097,-0.41659,1.0787 2.1805,-1.5923,-1.1983,0.23068,2.6198,-2.6299,0.43454,1.569,1.2574,-1.2007,2.4534,0.12808,1.3861,0.247,0.21365 -1.5286,1.3255,-1.7541,1.6159,0.26982,0.20804,0.33177,1.8922,-0.023985,0.77952,-1.038,0.037723,-1.1767,0.55963,-0.20014 1.4256,0.33039,-1.2958,1.6506,1.8735,-0.60721,0.27221,-0.35953,1.8167,-0.74152,0.29176,-0.41098,1.8608,0.40933,-0.60119 -0.20933,1.9466,-1.2355,2.0882,0.10066,-1.323,-0.72517,0.41685,0.7197,0.88691,0.17198,0.25297,0.14159,1.1375,-0.89225 4.795,-1.3,-1.0725,-2.5769,0.0037086,-2.8462,1.0715,0.81791,1.1492,-1.3458,1.1577,0.52988,-0.077679,-0.048989,-0.54278 -2.0847,-1.8835,-0.79719,1.6911,1.9949,-1.2304,1.1853,-1.0752,-1.4212,-0.50724,0.60301,-0.20896,0.34271,0.31846,-0.6958 4.5501,-3.23,-1.2504,1.3617,0.086549,0.80033,0.20647,0.86808,-0.19434,-2.6389,0.27876,-0.042854,-0.65233,0.079078,-1.5997 0.76453,2.4231,-1.088,-0.79415,-0.28157,0.10503,-1.5841,-0.79495,-0.079837,0.5017,1.4971,-0.26015,1.4746,-0.019354,-0.29442 -1.0223,0.58444,0.13935,1.5459,-1.9,-2.1856,-0.33936,1.47,0.518,-1.7512,0.42228,0.37372,-0.35152,-0.18644,-0.13357 4.0478,-2.3734,-2.4742,-1.4334,-1.8017,0.94808,1.1844,2.6849,0.84479,1.9931,-0.31772,0.52382,-0.54894,1.2819,0.23267 2.796,1.7783,1.1577,-0.56046,-0.86272,-2.5404,-1.2926,-1.6754,-0.28993,-0.24244,0.73185,-0.63292,-0.052724,1.5546,0.47598 -1.1746,0.98872,0.48229,0.64718,-1.6831,1.0176,-1.429,1.4813,-0.13252,-2.0952,1.5258,0.66449,0.039501,-0.80627,0.4034 -1.3147,-3.4964,0.77825,1.8488,0.86291,1.9347,-0.70139,-0.19689,-1.0606,1.341,1.6487,-1.387,-0.63454,0.18588,-0.10534 -1.5397,-1.4989,0.14529,1.6781,-0.92599,2.4854,-0.46506,0.29693,0.74275,0.63727,1.8203,-0.89784,-0.92329,-0.04454,0.034827 3.0982,-2.7404,-2.4944,0.98083,-0.096471,1.0538,2.9928,0.94693,0.54885,-0.90213,-1.0101,1.2614,0.019288,0.98729,-0.53291 0.99634,0.48286,2.3458,-0.79312,-2.8481,-1.227,0.20356,0.10772,-1.3405,-2.565,-0.43861,0.20187,0.52722,-0.30789,-0.072685 -1.6523,1.7524,-0.93438,0.16684,-2.7074,0.42072,1.9987,-0.71972,-1.3861,-1.0114,-0.29446,-0.30812,0.5026,-0.2229,0.95481 -0.09538,-1.6866,-1.6494,0.030988,-0.9245,-2.6632,1.2121,-1.5022,-0.75528,1.0313,-1.9394,0.52153,0.9439,-0.12798,-0.81013 1.4039,-0.54342,-2.0339,0.59426,1.1295,1.8246,-1.2327,0.070937,-1.2226,-0.13729,3.397,-1.2494,-0.98897,0.99004,0.72114 -0.40041,1.7496,-0.8204,1.2946,-0.75204,-0.25974,0.90879,0.50199,-0.33238,1.391,-1.9341,-0.78115,-0.52182,0.96177,1.5102 -2.6889,-1.1879,-0.3479,-2.1698,0.062139,1.1271,-2.5612,-0.26186,-2.037,0.84917,0.80113,0.60836,-0.58471,0.45327,0.054541 1.7147,-0.20534,1.5274,-0.17434,-2.9963,-1.3035,0.68704,0.027585,-0.19643,-0.34224,-1.509,-0.3277,-1.3326,-0.18526,-0.07732 1.8963,0.90562,0.2734,2.1024,0.91786,-0.30932,0.85048,-0.80126,-3.8614,0.98157,-0.84362,-0.52964,0.96051,-0.37956,0.90416 -1.4151,1.1245,1.2655,0.78667,-2.4441,-0.43361,-0.69084,-0.012908,-0.058234,-0.82996,1.5404,1.4239,0.30198,-0.54394,0.20617 0.38964,-1.0335,2.2127,3.0227,-1.0665,0.68349,-0.18135,-0.519,-0.1209,-0.64945,1.1666,0.83914,-0.059523,-1.2538,0.20681 4.1624,-1.2735,-0.78521,-3.1144,-1.6215,0.91371,-0.22398,0.53015,-0.45636,1.0988,1.646,0.71769,-0.3843,1.2128,0.30105 5.7513,-1.954,1.0394,-0.40578,-0.63527,-1.4626,-0.34654,-0.24408,0.081709,-1.1788,-0.47755,-0.61922,-0.79184,-0.079244,-0.22748 -0.14001,-1.3921,1.0985,1.2338,-2.388,0.37299,-0.068172,0.24901,0.57898,-0.034252,1.504,0.10257,0.86304,-0.8665,-0.22429 -1.7679,-0.52484,-1.7335,-0.0017398,-1.5805,-1.8199,0.31435,-1.9783,-0.058106,1.0414,-0.28418,0.2767,0.45931,0.31543,-0.27077 3.1658,0.16231,0.45186,0.91941,0.16432,-1.3964,0.31772,-2.153,-1.737,-2.8554,-0.86347,-1.0751,1.073,-0.32461,0.39953 2.9552,0.010129,-1.91,0.31459,-0.32516,-1.2076,1.0647,-1.4713,2.0701,-0.74761,-0.47272,-0.58699,0.16661,-0.076422,-0.13702 -0.14093,3.5011,-0.6592,-0.31283,-2.0586,-0.44394,0.24227,0.30181,-1.4194,-0.50785,-2.1872,-0.27018,0.31122,0.56594,0.40603 5.1822,-1.4023,-1.1407,-0.99424,0.050709,-2.2457,1.6887,-0.21098,1.2812,-0.56496,0.35171,-0.14376,0.64996,0.62852,-0.58366 1.7981,2.7273,-1.9477,-1.3802,-1.0003,-1.7925,-0.65422,0.58295,-0.73386,1.1034,0.10739,-2.1159,-0.48132,-0.18739,0.66638 0.26059,1.0533,0.38009,1.8168,-2.0618,-0.87871,0.65056,-1.187,0.72986,0.30705,-1.0192,0.59239,-0.13442,-0.013892,0.92463 -0.2078,-0.64076,2.7762,-1.5156,-2.9951,-0.30174,0.42809,-0.67797,-0.97396,-0.49742,0.24651,-0.095817,-1.0064,-0.83735,-0.25487 4.035,-0.33258,-1.306,1.1571,0.025447,-0.53079,0.52681,-1.635,0.58076,-2.3489,-0.78506,-1.383,0.25744,0.048298,-0.50672 3.0957,1.8254,-0.71186,0.31715,0.036782,-0.29006,-0.06515,-0.95506,0.23033,1.5065,-1.3765,-0.79078,0.033628,0.15191,-1.0062 1.2398,-0.95955,-2.0805,0.95585,3.2149,-0.16746,0.5152,1.3228,0.80737,-0.93962,2.4203,-1.213,-0.311,-0.2539,1.8663 1.4374,1.7027,0.84644,1.7997,1.7942,-2.1199,-1.1362,-0.81803,-1.6756,-0.58126,1.4869,-0.61582,-0.83359,0.31588,0.21511 -2.0019,0.83141,-0.25429,1.2487,-0.1636,-1.6242,1.6944,2.1745,-0.64784,0.84263,-0.27502,-0.99094,0.76374,1.0059,-0.47152 2.5842,-0.38989,0.43647,1.0491,-2.454,0.15957,-1.568,-0.17726,0.97484,-0.40262,-0.85473,0.31896,-0.1698,-0.52417,-0.14404 -0.14352,-3.8575,-0.94431,0.81133,1.559,0.084931,-2.0754,1.8927,0.44487,0.78725,-1.6582,0.55937,-0.34948,-0.90498,0.84605 4.4777,-2.5793,-1.3669,0.0562,0.010351,-1.081,2.6219,-0.53825,0.7397,-0.11105,0.34607,0.59057,0.20976,0.068433,1.4113 -0.56066,1.1285,0.3813,1.779,-2.1985,-1.2735,1.1718,-1.0844,0.31543,0.7482,-0.53105,-0.053464,0.35451,0.72493,0.93846 4.239,1.2561,-1.827,-2.3608,0.18238,-1.6214,1.5125,0.60131,0.65561,-0.1801,-0.39071,-0.71564,0.68308,0.66141,-1.1402 -1.4555,-0.61853,-0.49292,2.3678,0.82762,0.46362,0.79918,2.1189,1.1191,0.39695,0.27733,-2.2207,-1.4773,0.87067,0.26991 -2.4979,0.71208,-0.052289,1.1352,1.7086,-0.51435,1.1119,2.443,0.18272,1.8052,0.25376,-0.39155,-1.0635,0.77627,0.16384 4.4075,-0.6652,-0.57927,1.1174,-0.506,-1.4828,1.0865,-0.73535,-0.092256,-1.9425,-1.2205,-0.26307,0.029981,0.060834,-1.7957 -2.1264,-0.80675,-2.8185,0.039206,1.2535,-2.0305,-0.81288,0.20443,0.41237,-0.44203,-0.93407,1.0973,-1.155,1.0366,0.89634 3.4742,1.9815,-1.3134,0.13878,0.63794,-0.72699,0.41728,-0.87452,0.51922,0.16316,-1.6768,-2.2871,-0.30888,-0.74416,0.0031402 -3.7291,0.43665,-1.1599,-0.88207,-0.022533,-0.11293,1.1972,-0.32909,-1.0633,-0.055659,0.98109,0.070235,-0.03718,0.66699,-1.289 0.44244,1.7071,1.2435,-1.2007,-2.0151,-1.6798,1.703,1.7937,-2.2005,0.18745,-1.2345,-0.25573,-0.26881,0.23488,1.038 -0.94676,4.3127,-0.1882,-0.316,0.59243,-0.51393,-0.81084,0.80049,-2.246,-0.72446,-0.2687,-0.40951,0.26883,0.7283,-0.75149 1.4123,-4.2797,1.8275,0.45746,-0.85672,1.7456,0.71664,-0.4981,-1.12,1.4532,-1.4564,-1.6171,-0.30425,-0.67939,-0.48993 -0.77444,-0.096536,2.7716,0.70311,-1.8465,-0.88271,-0.69378,0.19875,-0.48791,0.16836,1.7752,1.3623,-0.576,0.20838,0.10885 2.5676,0.8142,-1.1028,-2.3295,-1.6782,-1.8008,-1.1321,-0.10676,0.69434,-2.256,1.0922,-0.7812,0.46371,-0.26229,-0.054114 -0.12364,3.4585,-1.4886,-0.53673,-0.46735,0.97164,-1.592,1.004,-1.4463,0.26269,-0.29132,-1.2086,0.4567,0.14554,-0.062283 -0.20603,1.6305,-0.23507,1.8533,-1.8506,-1.2328,0.97993,-0.88643,-0.19819,1.0652,-0.9086,0.55837,-0.34588,0.7762,1.0753 2.651,-0.045394,-2.4467,1.1334,0.214,0.041048,1.2205,-1.7882,0.52615,-0.52554,-0.00033333,-1.6062,1.0083,0.052474,1.5252 4.2552,-2.2696,-1.4248,-0.76479,-0.32815,-2.2274,1.7139,-0.56531,1.5122,-0.7589,0.8855,-0.12565,-1.0197,0.27507,1.1451 3.6697,-3.8294,-1.0339,-2.2765,-1.2092,-1.8861,2.0386,2.6777,0.19334,-0.71625,0.63214,3.0165,-0.04068,0.13864,-0.4468 -0.34614,0.66567,0.88005,2.9876,1.2227,-0.60367,-0.42894,0.10009,-1.0699,-1.6506,1.7091,0.65785,-1.8887,0.66509,-0.11954 0.6128,1.7375,-0.62367,1.8205,0.0095749,-0.81139,0.69144,-1.9742,-1.6693,-0.79757,-2.2448,-0.62926,0.8202,0.54355,1.4577 1.201,0.48427,-1.7632,2.2127,1.6001,-1.2027,-0.2341,0.66239,0.28434,-1.7778,-0.29478,-1.6806,0.92844,-0.74528,-0.58623 0.6228,-0.54762,2.1403,-0.1203,2.0826,-1.2397,0.42512,0.42851,-3.1924,2.4316,0.49256,0.5212,0.076075,0.12765,-1.0453 3.9284,-1.553,0.02246,0.14541,-0.66377,0.34463,-0.93197,-1.1185,-0.38677,-1.1121,-0.23201,-2.4129,-1.2036,0.051195,1.2723 2.0011,-4.2083,0.43587,-0.21804,0.0030905,-0.84245,0.024459,2.4354,-1.9394,-0.093836,1.865,2.7305,1.2031,0.71972,-0.90708 1.1797,0.50805,-1.3202,1.9081,3.6355,0.40324,0.19417,1.3796,-1.0071,0.33933,-0.55924,-1.2494,1.9447,-0.78886,-0.63444 1.5866,-1.3736,-0.28199,1.4572,-2.0627,3.3637,1.2622,0.66376,-0.066514,0.40215,-1.0316,-1.352,-0.011191,-0.25243,-0.027209 -3.1646,-1.2822,-0.45312,-0.42099,-1.6995,-0.89195,-0.096581,-0.065617,0.00045123,-0.69608,1.5166,-0.32516,0.31162,-1.4944,-0.87784 -1.2873,1.9994,-0.9036,1.4703,-2.1882,-0.27051,0.76664,0.15428,-0.38126,0.22762,0.15042,1.1316,-0.35949,0.62063,0.033949 1.6744,-0.16247,-0.88441,1.0931,-0.49674,0.98139,-2.0592,-1.4191,-0.37829,-0.77523,2.5345,-1.4485,-0.15387,0.46475,0.82758 -0.74875,1.2773,-1.2833,2.2897,-1.6205,1.483,-0.82795,0.45935,0.60881,0.39943,0.91682,0.36192,-0.18708,0.47885,-0.038054 4.0664,-2.8024,-2.6772,-1.1688,-1.1766,0.17957,1.532,1.5277,1.9589,-0.27346,0.89592,1.343,-0.22553,0.044519,-0.19132 2.9118,0.7417,-0.72928,0.35358,-1.5974,-1.7037,0.29469,-0.22748,1.7994,-1.9026,-1.2968,0.14542,-1.1474,0.65568,-1.5013 0.50973,-0.27853,1.6761,1.5594,-2.1182,0.41289,-2.1884,1.0032,0.43316,-0.36458,0.61167,0.7917,0.29758,-0.62705,0.3828 2.9903,1.193,0.65942,-1.3704,-1.2081,-2.2289,1.1819,1.4865,0.091797,-1.8084,-2.1897,0.53807,-0.064712,0.86388,-1.4557 1.1608,-0.93365,-0.0024026,2.8714,-0.58711,1.8617,-1.5612,0.33648,-0.4802,-0.50697,0.94225,0.66656,0.022482,0.052512,0.68091 4.1701,0.50369,1.6689,-2.1841,-1.3821,-2.2206,-0.71068,-0.0043912,-0.54914,-1.0513,-0.43633,0.86249,-0.21605,1.1593,-0.57469 0.84365,1.8186,-1.6921,2.3875,-0.13682,0.30316,-0.99533,-0.65044,0.0043661,0.48462,-0.10665,-0.56494,0.59146,0.39643,-0.0188 -1.595,-0.1018,-0.71241,1.5721,-0.21877,-0.17391,0.70873,2.1127,1.1998,-0.20034,0.17773,-1.2752,-1.6074,-0.030782,0.24966 0.39551,1.6522,0.086388,0.1801,-2.3674,-1.0495,0.33796,-0.010542,0.20102,-1.0326,-1.3716,0.065157,1.4871,0.31411,0.37708 3.3363,-0.55481,-0.26184,1.0788,0.46136,-1.3866,-0.11275,-2.3207,0.96312,-0.31594,0.66102,-0.81564,1.469,-0.47623,0.044934 2.7333,-1.3519,-2.3458,0.94572,-0.6302,3.1352,-0.42866,-0.39252,-1.8206,0.82299,0.3021,-0.14545,1.9876,-0.13853,0.30549 -0.69872,-0.7505,1.5999,2.3994,-1.7666,-0.74311,0.3814,-0.87368,0.15652,-0.17337,1.2079,0.32193,-1.3015,0.21436,1.0855 -2.5804,-0.1045,-1.8843,-0.34755,-1.2364,1.7638,0.28039,-1.2517,-0.023286,-0.90931,1.4511,0.14179,0.25996,-0.85685,-0.95807 2.5556,1.5627,-0.55599,1.2612,0.47846,-0.63353,-0.68223,-1.0207,-0.5046,0.47804,-0.30709,-1.9984,-0.013284,1.4867,0.94269 -2.5136,2.2311,-1.0104,0.95893,-0.22012,0.075895,0.57551,2.8634,-0.032334,0.49232,-0.1957,-0.66794,-1.0784,-0.17087,0.3613 -1.4288,1.0999,-0.36736,1.4392,-1.929,-0.33678,0.028736,-0.56435,-0.67542,-0.62536,0.96259,1.3592,-1.3806,0.3393,-0.23018 4.6372,-2.7741,-1.0572,0.13463,-0.85725,2.9419,-0.10778,0.14493,-2.4718,-2.0877,-0.89892,-0.89217,0.21943,0.047156,-0.088496 0.66724,2.1181,-0.28099,-0.33619,-1.5733,0.089137,-1.9951,-1.2928,-0.63216,-1.746,0.92982,0.64924,1.6655,-0.041692,-0.068154 5.2515,-2.0865,1.3453,0.90881,-0.47343,1.5621,-0.16742,-0.69779,-2.3248,-2.1661,-0.65077,-0.0081065,-0.038476,0.28164,-0.35194 1.7229,-1.6387,-1.4181,1.5761,2.8064,0.61802,-0.77096,2.6235,-0.38815,0.90576,2.958,0.08799,-0.46812,1.8041,-0.0032764 2.5707,-0.2051,-1.5743,-1.3194,-2.0473,-0.29354,-0.1332,-0.38663,0.29335,0.98908,1.6623,-0.59109,-0.32561,0.73179,1.968 1.6443,0.85236,-0.58155,1.5736,0.023253,0.32022,-2.7607,-0.10354,1.0679,0.32513,2.5299,-0.26173,-0.016279,0.65733,-0.81792 5.4337,-2.5274,-0.94924,-0.8478,0.0026324,-1.4148,1.954,-0.63065,0.86279,-0.20832,0.59446,-0.2473,-0.25255,0.55237,1.3026 3.0659,-0.98215,-2.7925,-2.5129,-1.2252,-1.3352,2.0495,1.2072,1.5599,-1.396,1.9771,1.7649,0.87882,1.3052,0.51327 3.6544,-4.3009,-1.6783,-1.7543,-1.7995,-0.23661,1.4686,3.9429,0.198,0.75298,-0.14903,2.9471,0.25769,0.20859,-0.90628 3.3886,0.23625,1.5079,0.47676,-1.2503,-1.5217,-1.802,-1.4978,-0.015094,-0.50033,0.64091,-0.22485,0.004688,0.59805,0.14848 3.8301,-3.5384,-2.765,0.18299,-0.58276,0.60382,1.0395,2.0683,1.2363,0.18058,1.2788,1.4486,-0.31102,0.32288,-0.4729 -0.73798,-0.27757,0.3374,3.313,-0.1984,-0.11387,0.54245,-0.38647,-0.50298,-1.9097,1.6193,0.3283,-0.24928,-0.17062,0.66839 -1.2229,2.3833,0.21656,1.8934,-0.65634,-0.97975,0.56005,0.64479,-0.58214,1.4652,-0.68818,0.72671,-0.53919,1.0704,0.83479 1.1222,-0.46187,-1.6865,1.4714,0.91642,0.84058,0.089142,3.136,0.28645,-0.17966,-0.13385,-0.98649,-0.33296,1.9034,0.20241 4.2527,-0.44913,2.2705,-1.1146,-1.7732,-1.0924,-1.1888,0.16151,-0.3756,-1.1846,-0.23186,1.3021,-0.15382,-0.26488,-1.9161 1.5423,-4.4088,0.80181,-0.030592,1.6354,0.96505,-0.6654,-0.31366,-1.0993,1.8677,-1.1909,1.3464,0.16521,-1.0942,-0.61435 4.4759,-1.9671,-0.8444,-2.0295,-1.1271,-1.2639,0.56288,0.37976,1.4163,0.5997,1.0805,0.54767,0.40717,-0.29139,0.85443 0.4014,-0.046622,-0.51947,2.6411,0.8799,1.28,-1.2718,2.4824,0.52164,-1.1804,0.81614,-0.99321,-1.2499,0.81657,-0.18456 -0.46847,-0.1007,1.1314,1.4104,-1.6633,-0.75097,0.80358,0.11263,0.38454,1.2234,-0.47526,1.2755,0.97128,-0.72907,0.4469 3.3163,-2.1762,-1.4646,-2.9949,-1.6592,-1.1769,2.087,1.5187,0.85136,-0.84527,0.19731,2.4045,0.75164,-0.29365,0.16139 -3.2859,-0.73647,-0.72725,-0.84926,1.0555,1.0359,0.029981,1.4937,-0.35415,2.0464,0.87564,-0.43453,-1.0536,0.65406,-1.1155 -1.8038,0.68653,2.0751,0.53001,-1.5644,-1.9484,0.80119,-0.0080196,0.24089,-0.24619,1.2866,0.75068,0.86673,0.61526,0.31681 -1.5397,1.0441,-0.88331,1.0839,-2.541,1.1723,0.35953,-0.0907,-0.30776,-0.19247,1.1006,0.66072,-0.93178,-0.16395,-0.079528 5.0591,-0.9993,-0.31665,-1.3502,-0.33864,-2.1888,0.69617,-0.80801,1.4135,-0.81093,0.33608,-0.63991,0.79641,0.39978,-0.20533 2.5456,-0.6008,2.1713,2.8961,-0.060275,-1.0207,-0.72657,-2.0294,-1.391,-1.5995,0.14985,0.20844,0.12624,0.0097984,0.65395 2.883,-0.99205,-1.6848,0.88209,-0.59791,0.56784,-0.076183,-1.8838,0.30494,-0.23212,1.5086,-0.85355,0.065559,-0.63016,1.6223 -0.11962,-2.0569,0.91048,1.698,0.15075,3.6782,-0.22065,0.18629,-0.86466,1.0382,0.79874,-1.365,1.5228,0.10791,0.21276 -0.25461,1.1353,0.73377,-0.44835,-3.688,-0.9522,0.27097,-0.35482,-0.17685,-0.99029,-0.40511,0.39157,-0.36797,-0.51884,1.1917 3.4882,-0.94419,-1.1762,-0.31292,-1.2287,-0.88175,-0.7439,-0.64339,1.6394,-0.086662,0.27179,-0.98,-1.0255,0.58903,0.87381 -1.2518,3.0215,-0.18265,1.2511,0.36934,-1.0478,-1.1713,2.5307,-0.050817,0.41955,-0.86807,-0.10909,0.1031,0.20809,-0.34864 0.72089,1.2364,-2.5203,1.9807,0.59503,-0.37817,-0.40588,-0.23527,0.31187,0.98362,1.0276,-0.43655,0.27653,0.96198,-0.30553 3.0011,1.4777,-1.6504,-2.9137,-0.4105,-2.3789,0.52674,0.65692,0.88756,0.015776,0.061134,-1.0919,-0.19733,-0.30747,-0.042425 -0.053079,2.3171,-1.7918,-0.36629,1.101,-2.3542,-1.1551,2.08,0.67251,-0.18824,-0.37024,-1.9606,0.86119,0.43146,-0.27909 4.932,-2.9527,-0.62417,-2.4664,-0.98679,-0.29369,0.88895,1.9027,-1.2618,1.9202,0.58367,0.33342,-1.4507,0.95252,1.4487 4.2093,-0.93488,-0.58079,0.045893,-1.426,-1.6689,-0.18006,0.42031,1.3859,-2.3008,-0.017915,0.17331,-1.5029,0.52037,-1.7544 0.3954,1.571,1.1981,0.70371,-3.148,-1.4929,-0.29528,-0.53989,0.15397,-0.60796,-0.38888,0.42966,-0.088021,0.37673,1.0119 -1.5008,1.595,-1.5603,1.901,-0.14584,0.79221,1.3532,0.91361,-0.99124,0.21141,-0.52139,0.094029,-1.6555,-0.57214,0.042806 -0.34094,1.5792,2.6766,-0.51651,-1.8961,0.070122,-1.7333,0.26114,-1.6929,-0.91938,1.265,0.57374,-0.45725,-0.077977,0.18899 1.8139,-0.66729,-1.9162,1.0377,-2.0299,0.44325,-0.06272,0.35897,0.82972,2.246,0.35907,0.10804,0.63342,0.80654,1.6298 2.7075,-2.8138,-2.1996,1.2033,-0.76569,1.8198,1.5151,0.33309,-0.6366,-0.75244,-0.6766,-0.19596,0.41704,-0.20582,1.1062 2.2937,-0.69952,-3.2158,0.68029,0.50169,0.11357,2.1953,-1.0853,1.0326,-1.6141,0.24141,-0.16626,0.60645,-0.15332,0.38451 -1.2405,1.9044,-1.8567,0.21589,-1.447,1.1344,1.7585,0.67972,-0.84671,-0.29158,-1.7195,-0.21321,-0.11837,-0.46959,0.93276 0.87099,3.3025,-1.1547,-0.60647,-1.2558,-1.1479,-0.63281,0.20503,0.19385,0.049265,-1.9553,-1.1176,0.83608,0.70727,-0.30127 -1.1524,0.019382,-0.015974,3.0622,-1.1219,0.069457,0.78325,-0.90474,-0.24129,-0.72572,1.6375,0.58046,-0.99485,0.30192,0.49225 0.87855,1.8366,-0.76277,0.53595,1.0479,-1.0056,-1.161,0.75415,-0.62906,0.95874,1.0821,-0.29634,0.28793,0.97103,-0.53483 0.94364,-0.02925,1.0546,-0.065988,-3.3133,-0.52133,1.271,-0.039392,1.1058,-0.87897,-1.0416,-0.0067662,-1.1668,-1.3835,0.35072 1.5219,0.96353,-0.055929,1.2675,1.274,-1.5429,-1.9508,0.45134,1.1773,-0.53687,1.8966,0.20874,0.27601,0.60178,-1.4981 -2.1153,1.8473,1.5677,0.38688,0.067221,0.026378,-0.79408,2.7267,-1.1572,1.408,0.51597,0.39748,-0.46674,-0.29795,0.40451 -2.2542,-2.4609,-0.11506,1.623,-0.034315,1.0182,-0.61646,-1.4723,0.15931,1.0453,1.4935,-0.21755,-1.3475,-0.79264,-0.78857 2.3761,0.52375,1.447,1.4234,-1.5452,0.08827,-2.2815,-1.216,-0.3395,-0.014752,0.24376,-0.29522,-1.2022,0.26795,0.68111 3.7829,-0.89489,-2.1319,0.371,0.72768,-0.15046,2.357,-1.689,0.18919,-1.6665,0.043318,-1.6417,0.71461,0.065954,1.6962 -1.1451,3.0574,-0.43987,0.17605,-2.2354,-0.65517,0.69395,0.24196,-1.6698,-1.4055,-0.52012,0.14241,0.4742,0.64223,0.56104 -1.6964,-0.97981,-1.4216,0.49681,0.46876,-0.3399,0.64771,1.9104,0.63158,0.85775,-0.70193,-2.6686,-0.72863,2.3619,0.10489 3.4384,-1.4913,-1.6527,-0.74165,-0.98045,-1.2175,-0.58752,0.50963,2.144,-1.464,1.1675,0.46061,0.18853,-0.80708,-1.7963 0.92844,0.29586,-1.6033,-0.4163,0.76453,-1.4974,-0.71855,2.558,0.73763,1.0041,1.2481,-0.1553,2.0519,-0.79844,-0.46693 -1.8182,-3.9235,-0.2379,1.1499,-0.19188,-2.4341,-0.13106,-1.3311,-0.83871,0.028896,-0.15811,-0.39114,-0.48062,-0.87781,-0.70705 3.0374,-0.13896,-0.24278,-2.1419,-1.352,0.31357,-1.7854,-0.036631,0.2481,1.373,2.3498,0.043678,1.2928,0.015025,0.81917 -1.6067,-0.27117,-1.409,0.64088,-1.4024,1.0138,0.30536,1.2579,1.4714,-0.15554,0.89366,-0.66692,-1.1684,-0.62094,-0.72746 -1.9135,2.0205,-1.1719,0.18831,-1.7933,-0.26271,1.3873,0.55071,-0.32108,1.3499,-0.82469,0.66912,1.1628,0.62288,1.4546 3.6633,-1.3178,1.3832,2.3657,-0.58438,1.3632,-1.8026,-0.66625,-1.0036,-0.34664,-0.13087,-0.28889,0.25734,-0.1454,-0.045797 -3.6648,-1.7357,-0.50457,-0.87733,0.062323,-2.0371,-1.0839,-0.61205,-0.16913,-0.12598,0.52546,0.2348,-0.41798,-0.79048,-0.41198 -0.42437,1.3423,1.7682,1.9315,-1.4008,0.17624,-1.0734,-0.42527,-0.46176,-0.8825,1.826,1.171,-1.5832,0.75864,-0.13162 0.53041,-0.30719,1.1515,2.1325,-0.10334,1.2573,-2.0123,2.2264,0.88937,0.26621,1.4663,-0.1404,-0.51877,1.2432,-0.37534 4.3024,-2.3291,2.36,0.36611,2.0555,0.7428,-1.578,1.7443,-3.1351,1.4528,1.3896,-0.24394,-0.36596,1.2181,0.04066 -3.8165,0.77721,-2.0455,-0.82948,-0.15998,0.29895,0.7794,-0.14647,-0.63307,0.2987,0.82674,-0.50592,0.94257,0.42408,-1.0311 0.84411,0.53438,-0.78315,1.3211,2.0402,1.3093,0.34383,-1.2799,-0.58676,-1.2937,0.87273,0.33821,2.6184,-0.0067581,0.019007 1.3884,0.8316,-0.05966,-0.20863,-1.2297,-0.2496,-2.7613,-0.54701,0.63468,-1.0825,1.8889,0.25254,1.3478,0.083233,-0.80167 -0.58283,0.67373,0.075949,3.1097,-1.2544,-0.55611,-0.18663,-0.90348,-0.13356,-0.53718,0.92958,1.0853,-0.92841,0.4444,0.35334 1.2974,2.4167,0.79294,1.9856,-0.6287,-1.1456,-0.76296,-1.1197,-0.61742,1.2559,-0.47929,-0.032232,-0.70825,0.4038,-0.041087 -1.0114,-1.3977,-0.42704,0.71815,-1.9945,-0.013011,0.26923,-2.4979,-0.11348,0.97742,0.0045134,-0.99204,-0.78424,-1.0384,0.22768 1.6974,1.0099,-2.0814,-0.17771,-1.2591,-0.95896,-0.10682,-0.41899,0.53161,0.86328,1.0468,-0.94709,1.2706,-0.52076,0.93375 2.938,-0.93655,-0.50872,0.90476,-0.59959,0.0056136,-2.245,-0.89834,0.508,0.56099,2.0907,-1.2284,-0.32554,0.49604,0.93655 -0.93698,0.28682,3.0049,-0.77588,-2.0399,1.2018,-1.0596,0.62044,-0.80353,-0.63429,1.4716,0.46511,0.35188,-1.3663,0.64736 1.2458,0.097412,-1.5327,0.54781,-0.34902,1.1862,-1.5145,-0.15036,1.5272,1.4014,2.7557,0.15069,0.56688,0.55933,0.39044 -1.7917,0.22483,0.14117,1.4113,0.31694,0.18312,-0.034204,3.0669,-0.82474,1.0051,1.3404,-0.19663,-1.5982,0.68184,-0.55399 -0.23651,2.4693,-0.14617,0.47102,1.3345,-2.0719,-0.8866,2.2092,0.55145,-1.1795,-0.17319,-0.8827,-0.63863,0.55905,-1.0036 -1.7028,0.43089,-1.3632,1.9376,2.122,1.6109,0.65374,2.1215,-1.3982,-0.056198,0.59713,-0.62348,-0.86434,-0.029349,0.72249 5.6257,-4.302,-2.2247,-0.37813,0.024259,0.78733,1.7874,2.823,-0.05787,1.0484,-0.086554,0.3446,-0.5537,0.79471,-0.33559 -1.2642,1.9999,0.076911,-0.22768,-2.1682,-1.1039,1.1079,-0.23048,-0.70035,0.3975,-1.5602,-0.11057,0.50139,0.76865,0.91289 0.093246,1.7323,0.76153,1.631,2.2332,-1.7404,-1.3496,1.3492,0.41936,0.11356,-0.36047,-0.72617,0.097527,0.33667,-0.52588 1.1306,1.4448,-2.149,0.49899,2.6007,-2.4244,-0.27815,1.9633,0.46754,0.30228,0.24558,-2.4497,-0.029076,0.13361,-0.25872 -1.7935,0.022382,1.0488,1.3369,-1.9655,-2.0033,0.78035,0.1146,-0.46508,-0.43316,0.95181,0.96173,0.85058,-0.52159,-0.24498 -0.88057,-2.7009,-0.4203,1.5352,0.51834,1.576,-0.8475,-0.33146,0.8259,2.2135,0.14823,-0.29812,0.47378,-0.36712,-0.70019 1.965,0.57399,-2.6794,0.4258,-0.1015,-0.8367,1.3353,0.032617,1.6558,-0.9321,0.0046611,0.33561,0.97894,-0.026424,-0.95241 -0.72599,2.0989,0.53129,-0.88779,-1.3879,0.68391,-0.24418,1.7406,-2.0121,0.84929,-1.0329,-0.31332,-0.26063,0.012738,1.6728 3.2527,1.6908,-1.7441,-4.1642,-0.23679,-1.8722,1.4561,0.40359,-1.0817,-0.21312,1.2899,-0.75565,0.50094,0.25643,1.8794 -1.0317,-2.9183,3.5064,-0.40245,0.91001,-0.61246,-0.25801,0.90141,-0.24343,1.0621,0.25158,-0.69919,-0.73635,-1.4586,0.30115 1.5836,3.2653,-0.91702,-2.0425,-0.67458,-2.0802,-0.7754,-0.12921,-0.21491,-1.4508,-0.21351,-1.4729,0.65849,0.70019,0.052871 0.069704,2.7491,-1.9397,0.43078,-1.6375,0.46928,-1.5119,0.092853,-0.00026075,0.70058,-0.14169,-0.17027,0.85353,0.52608,-0.34047 1.6393,0.3466,-1.6944,1.6149,3.032,0.34003,0.4353,-0.095939,0.23435,-1.1529,0.23501,-1.0376,2.134,-0.49254,-0.49999 2.0935,-0.87814,1.8143,-0.032563,-2.9301,0.17165,-0.016916,1.2504,-0.85472,-2.2179,-1.1894,-0.096147,-0.024299,-1.7794,-0.77516 -1.4081,0.58252,0.31719,3.0213,2.2008,-2.2864,0.53545,0.45048,-1.4628,-0.84276,-0.59779,0.68095,0.18146,0.28919,0.62625 1.2083,1.6307,2.7808,-1.2353,-1.0478,-2.4019,0.82399,-0.20254,-1.7151,-1.7094,-1.1664,-0.71381,0.45365,0.50035,-0.092374 0.78758,1.8121,0.53186,-0.019653,-3.0083,-1.459,0.43972,-0.64894,-0.24777,-0.82905,-1.7889,0.2427,-0.64691,-0.0011173,-0.052635 -0.51525,0.47136,-2.6735,2.3369,-1.3767,1.5971,-0.43306,-0.1362,0.29022,-1.2238,0.30356,0.48045,-0.21507,-0.10448,-0.10648 -1.8929,-1.7779,-0.012505,-0.20614,-2.3718,0.17401,-0.32468,1.6551,0.23173,-1.3617,1.0142,-1.2279,-0.33543,-1.3031,-0.31177 2.1937,-1.515,-0.086142,1.6292,0.96273,1.1019,-0.29246,-0.79331,0.34175,-1.7918,0.83157,0.92943,1.9277,-0.52638,-0.49427 1.9405,1.5889,-0.29572,-0.65949,-1.9913,0.2934,-1.541,-1.2416,0.36188,-2.0251,-0.3181,0.070765,1.3588,-0.21246,-0.67007 0.042909,0.045526,-1.2532,2.5652,0.13683,1.6167,0.14361,1.9544,0.50248,-1.3827,0.40743,-1.1419,-0.7552,-0.17272,0.17809 -0.54239,1.0915,0.43416,1.2245,-0.46755,0.70647,0.65114,0.70467,-0.53819,1.8989,-1.5259,-0.85608,-0.24022,0.3122,1.7158 1.557,-2.5367,3.3802,1.3401,-2.4392,0.49452,0.23644,0.10421,0.033682,0.21739,-0.325,-0.069931,0.11842,-1.1244,-0.53465 -1.9909,-1.6002,-0.83395,0.16255,0.64167,-2.9071,0.084897,-0.73022,-0.93937,1.2726,0.21626,1.0293,1.3876,1.4031,-0.74446 -3.2511,-0.84178,-1.4133,-0.63724,-1.6629,-0.64869,0.61107,-0.65247,-0.41515,-1.3329,1.4674,-0.25141,0.33719,0.13316,-0.55797 -2.5299,-2.5765,-0.21771,-1.2862,-0.85953,-1.7672,-1.3312,-1.2385,-0.61242,-0.4611,0.52029,0.74929,0.96214,-0.68918,-0.53917 -1.374,-3.2872,1.3382,1.6842,-0.19527,0.094172,-0.2454,0.98163,0.95127,0.3992,1.6599,-1.3121,-1.0402,-0.89151,-0.65775 -3.018,-1.7989,-1.9531,-1.1087,-0.58692,-1.4827,-1.5554,-0.16353,-0.3534,-1.1494,0.55252,0.22608,-0.44958,-0.37686,-0.073992 -0.85089,-3.7489,-1.9454,1.5016,0.47644,-1.5696,-0.89638,0.30732,-1.4329,-0.94101,0.0087818,-0.30067,-1.4832,-0.96301,-0.36761 -2.3497,-0.17919,-3.0729,-0.23675,-0.2277,-2.4005,-0.59735,0.33354,-0.15738,0.37466,-0.40845,0.47674,0.21168,1.4156,0.081127 -1.5986,-0.034565,-3.6081,-0.75459,-0.243,-1.0471,-0.28444,-0.13984,-0.74345,-0.61695,-1.508,0.70238,-0.69489,-0.1925,0.31784 -2.4766,-2.2506,-0.4721,-0.54444,-0.76389,-1.9029,-1.7006,-1.2959,-0.07004,0.25175,1.0091,0.63913,-0.44217,-0.40824,-0.71433 -0.53902,-3.432,2.0929,-1.1115,-2.0921,-0.29718,-0.28716,1.7444,-0.80077,1.2369,-0.37772,-1.0643,0.45329,-0.91998,-1.1247 -3.58,-2.1238,-1.4649,-1.7232,-0.55281,0.035974,-1.5577,0.28189,-0.7863,-1.4501,0.64039,-0.6241,-0.5728,-0.83047,-0.23739 -1.3164,-1.8962,-0.86048,1.0777,-1.3972,-1.5345,-0.65027,-2.1448,0.61313,0.58017,0.2124,-0.20782,0.2132,-0.71155,-0.080801 -2.4669,-1.796,-0.57648,0.49182,-0.74051,-1.6223,-0.94691,-1.4457,0.66973,0.70132,0.97718,0.36138,-0.22763,-0.59206,-0.58554 -0.2095,-3.5667,0.83305,0.53097,0.35285,-0.82245,-0.98398,-2.5245,-0.82737,1.1896,-0.14009,-0.073112,-0.07688,-1.5004,-0.51476 0.45457,-3.5065,0.30336,0.63907,0.25423,0.0271,-1.0606,-2.6413,-0.87921,1.1641,-0.34658,0.34042,-0.20816,-1.3934,-0.29389 -1.1605,-2.9703,-2.1414,2.084,-0.51888,-0.49787,-0.72461,-1.6663,-0.95903,-0.73945,-0.1412,-0.045688,-0.21325,-1.6342,-0.10999 2.3097,1.5408,-0.35446,-0.74012,-1.7032,-1.7268,-0.58145,0.27601,1.1743,-2.1033,-0.58022,-0.28676,-0.031772,1.2435,-0.43321 -1.6297,0.30005,1.5947,0.66613,-0.35991,-2.1678,1.2639,1.366,0.96201,-1.5528,-0.45467,-0.50871,-0.3132,-0.18826,0.6887 1.722,1.7777,0.4762,0.18091,-2.0528,-0.7981,-1.3043,-1.0221,-0.060304,-1.704,-0.092258,-0.59303,-0.49801,1.2389,0.65226 1.1407,3.2604,0.727,0.5687,-1.5237,-1.2882,-0.69683,-0.38639,-0.34168,0.68607,-1.7859,-0.24788,0.36786,0.65496,0.46131 0.16086,1.9917,0.60729,2.2795,-1.3958,-1.2491,0.20621,-1.1308,-0.44609,0.28061,-0.50385,0.072042,-0.091008,1.313,1.2906 5.2992,-2.4336,-1.7288,-0.38046,-1.0309,1.7573,0.17081,0.75738,-0.76055,0.067239,-0.68169,-1.1439,-0.54684,0.19228,-0.51235 2.8013,-1.2642,-0.10362,1.5473,0.39006,0.90965,-1.5748,-1.4646,-0.83425,-0.90174,2.3471,-0.71335,1.1598,0.44017,0.77564 0.89126,2.9615,-0.24076,0.15881,-2.1471,-0.77138,-0.33985,-0.65355,-0.62641,0.28404,-1.5269,-0.59627,-0.19817,0.39398,0.55474 4.8584,-1.5044,-0.76919,-0.77614,-0.041999,0.65577,1.0049,-1.7128,-0.5556,-3.0009,0.18685,-1.3375,0.96586,0.20955,0.33693 4.3208,-0.73484,-0.19206,0.49481,0.28146,-1.5001,0.74236,-2.4022,0.4655,-1.2139,-0.49317,-1.8043,-0.19906,0.62206,0.52944 0.30787,2.7035,-0.011386,0.17217,-2.4301,0.33305,0.37976,-0.31345,-1.0703,-0.74146,-0.60046,0.3873,-0.14427,0.5339,0.76498 3.2326,-2.1399,1.5578,1.2851,-2.1568,2.4792,0.92951,0.66324,-0.85498,-0.17179,-0.86393,-0.2203,-1.259,-0.43819,-0.10672 -0.98436,-2.0887,0.68228,-0.21717,-0.54217,1.1452,-0.97002,1.3901,1.2932,1.1644,-0.70193,-0.78133,0.64211,-1.1084,-0.26632 -0.2725,1.9787,1.9212,0.084559,-1.8774,-1.297,1.3858,-0.74833,-1.1834,1.3931,-0.67515,0.23056,-0.39225,1.1771,0.96711 1.2813,-2.2821,0.80166,1.7004,-1.1987,-1.2146,2.7303,-1.0518,-0.28863,-1.7308,-1.5177,-0.23128,-1.1401,-1.2241,-0.94414 3.2398,-3.0707,1.2963,1.1752,-1.6384,0.83602,2.082,0.2159,-0.77585,-1.7526,-1.0928,-0.75272,-1.7673,-0.86113,-0.60631 -0.48619,-3.2076,1.5387,1.3855,-1.0842,0.22105,0.14514,-2.1267,-0.049929,0.29091,0.21743,-1.508,0.097922,-1.7219,0.052468 1.0138,-2.4445,1.4828,1.3033,-0.92988,-0.72921,1.1274,-2.6197,-1.0993,-0.446,-0.35831,-0.95741,0.020865,-1.4595,0.12317 -1.9888,1.1401,-0.51418,2.2646,-0.51083,-1.107,1.3359,0.4411,-0.41268,0.53543,0.13558,-0.62459,0.019358,0.99204,0.68112 -0.055376,-1.6816,-0.8966,1.8453,-1.3445,0.073802,2.2331,-2.0192,-0.93391,-1.6136,-1.1622,-0.095131,1.1005,-1.8595,-0.26285 -0.49444,1.552,0.22456,2.8685,0.0045374,-1.1607,0.19987,-1.1206,-0.85275,-0.052081,-0.39471,0.043323,0.65682,0.90889,0.9313 -0.15967,0.78614,0.083656,1.91,0.24839,0.25318,1.9137,-0.48989,-1.8017,1.7655,-1.205,-0.76768,1.4979,0.075086,1.4877 0.63087,-2.391,2.183,2.4308,-0.43477,1.9339,-0.14244,-0.57054,-1.0542,-1.4557,0.94108,-0.25534,1.0423,-1.7717,0.77849 -0.73434,-1.4894,0.93397,2.3187,-1.2993,-1.4001,1.295,-0.71631,0.62256,-0.19938,1.0549,-0.73552,0.45082,-0.062624,0.19096 1.7527,-1.1142,1.4856,1.3651,-2.1008,-0.085957,1.3761,-2.0158,-0.38458,-0.98558,-0.33499,-0.84181,-0.91282,-0.74891,0.90182 -1.1114,-1.2819,-0.90357,1.759,-0.39155,-0.99597,1.586,-2.678,-1.2189,-0.23519,-0.90557,-0.68533,1.8984,-0.64191,-0.22942 0.93438,-2.0746,-0.12748,-0.034103,0.83358,-0.98844,1.9694,-2.8413,-4.1941,0.18033,-0.91593,1.1299,1.4442,-0.59781,-0.99625 0.035528,-1.9434,-0.61862,0.49299,0.22691,-1.4609,0.53314,-2.8889,-1.4632,1.8468,-0.58601,1.1509,0.46998,-0.05719,-0.9841 -0.08298,-2.1899,-0.76537,1.6798,0.32013,-1.0276,1.8339,-2.2915,-1.7224,1.2352,0.080959,0.24029,1.7395,0.35671,-1.1087 -1.103,-1.4053,-1.6496,1.7439,1.3517,-2.5829,1.7228,-0.40387,-1.4136,1.3231,-0.17747,-0.69163,1.4095,0.93136,-0.51468 -1.7995,-1.5219,0.55211,1.8645,-0.40967,-0.45806,0.40483,-1.2734,1.1643,0.13192,1.6911,0.074655,-0.77901,-0.35776,-0.97274 -1.0238,-1.1238,-2.0711,1.6087,1.888,-2.6327,0.21238,-0.21285,-1.5729,0.99164,-0.16294,1.179,0.90992,0.92727,0.33055 -0.99029,-2.5474,0.81887,1.6347,0.24225,-0.39896,0.53301,-1.5512,0.26294,0.81342,1.7201,0.061145,-0.10221,-0.88787,-0.94222 1.2055,-2.0864,-0.20758,-1.3492,-0.35761,-2.5056,2.251,-2.2652,-1.8452,1.7851,-1.4963,-0.1061,-0.81348,1.0217,-0.76327 0.79533,-1.5889,2.1792,0.99456,0.41767,-2.7622,2.5788,-1.0207,-2.1446,0.82799,0.082891,0.31671,1.0581,0.032362,0.074453 0.95066,-3.3153,1.1075,0.57214,-0.058779,-2.068,1.0724,-2.6087,-1.8403,1.026,0.017548,0.36343,0.43437,-0.77202,-0.88782 0.74995,-2.1652,-0.69624,-0.93134,-0.79471,-2.846,-0.40958,-2.046,-1.9129,1.3968,-1.6263,2.0776,0.20993,-0.21528,0.40014 2.6305,2.2053,-0.48187,0.53036,0.49117,-1.722,-0.7559,-0.18217,0.11733,1.8828,-0.96868,-1.4557,0.69442,0.48541,-0.18901 3.2571,2.1098,-0.33668,-0.43608,-0.10828,-2.0718,-0.12802,0.45994,1.2711,0.063441,-1.7821,-1.2957,0.36908,0.96387,-0.65377 -0.83108,1.2551,-0.51095,2.5078,2.2181,0.65186,0.072532,2.862,-0.9534,0.82384,-0.27549,0.1698,-1.3264,0.93881,-0.1938 -0.698,0.53028,0.69485,2.8187,3.5969,-0.50501,1.7519,1.337,-1.8294,0.20622,-0.37474,0.015238,0.66417,-0.29248,0.40388 0.74043,1.2418,-0.44465,2.5205,4.1536,-1.2788,-0.28592,0.67005,-0.56317,-1.0395,0.26179,-1.4678,0.41042,0.60782,-0.078545 0.097361,0.16717,1.1693,3.1296,3.45,-0.54707,1.7129,0.62983,-1.2359,-1.2231,-0.26328,0.39233,1.4185,0.02482,0.002927 -1.1493,-1.0544,-0.51719,-0.37633,1.8548,-0.71651,-0.085729,1.7094,-0.74447,3.2417,-0.55062,0.094027,1.2741,-0.82278,-0.52997 -1.8589,0.013707,-0.22729,2.3163,2.4179,0.49179,1.5974,2.6435,-1.1374,1.4921,0.50369,-0.79622,-0.73949,-0.28437,0.045022 -0.79659,1.6992,-0.14784,0.78899,0.16775,-0.078551,-0.93903,2.7126,-0.75148,1.1029,-0.52726,-0.13093,-0.40342,0.99722,-0.27591 -1.0324,1.6182,-0.17676,0.93301,-0.54579,-0.0077359,-0.18828,2.5783,-0.63036,1.0822,-0.53582,-0.08472,-0.2723,0.97259,0.44924 -1.5434,1.6756,-0.53628,-0.095142,-0.92683,1.4175,-0.18402,1.1675,-1.3249,0.13363,-0.5578,-0.27506,-0.19385,-0.59739,0.99534 -1.4239,0.96947,-1.502,0.90062,-0.65545,0.21169,0.36233,2.7505,-0.39514,1.0074,-0.19047,-0.23014,-0.66104,0.93121,-0.010251 -2.0596,0.28539,-1.1958,-0.61027,-0.36827,-0.91771,0.92255,1.4497,-0.92873,1.803,-0.38741,-1.1734,1.1005,0.86338,0.56063 0.30721,0.22689,-2.2168,0.65654,-2.2842,0.62462,0.80482,0.79082,0.57734,-0.97809,-0.13843,0.85478,-0.3023,-0.17632,-0.6905 -1.8822,-0.34186,-2.1637,0.28278,0.39109,0.22886,0.74536,2.7679,-0.3184,1.031,0.64644,-1.0149,-1.0089,0.31852,-0.82276 -1.0397,0.44574,-1.2383,0.48031,-1.1566,0.45149,0.27824,1.7697,-0.14705,1.6807,-0.10192,-0.14575,0.58891,0.046583,0.79285 0.2871,1.7424,-2.4324,2.2384,0.39255,-0.065408,-0.2494,1.3744,-0.09755,0.52657,-0.64913,-1.1366,-0.34854,1.0197,-0.50775 -1.1146,1.6291,-0.6236,0.80351,-0.053063,0.5872,-1.079,2.8281,-1.2457,0.023738,0.26197,0.19101,-0.23949,0.72607,-0.68204 0.85802,1.751,0.28809,1.0514,0.68341,-0.95911,-0.18175,1.7349,-0.87565,1.9599,-1.5684,-1.1085,0.98259,0.09204,-0.065101 -1.7092,1.4599,-2.1342,0.15427,-1.2961,0.97008,0.010993,2.2263,-0.16559,0.34145,-0.37425,-0.13698,-0.46721,0.61033,0.12073 4.47,-1.8129,-0.96773,-1.0728,-1.923,-0.11908,-0.93856,2.2539,1.0325,-0.94078,-0.25753,0.12194,0.013911,0.96433,-1.6047 0.71848,-0.84407,2.0864,-0.083952,-3.2113,0.99798,-0.42386,1.4108,-1.4522,-0.67549,0.067746,0.19309,0.99651,-0.80345,0.14066 -0.94666,-2.5907,2.1439,-0.6158,-2.3956,0.73964,-0.98707,0.25996,-0.31998,2.1745,0.59381,-1.1315,0.10579,0.031442,-0.18189 -1.0763,1.8858,1.3825,1.0354,-1.879,-1.881,0.32066,-0.17148,0.077958,-0.25263,0.18492,0.87089,0.84664,1.081,0.75343 4.9181,-2.724,-1.788,-1.3277,-1.2899,0.056467,0.19351,2.1298,0.95422,0.40388,-0.17634,0.081741,0.44248,0.42411,-1.5801 1.1219,-4.0484,0.67826,1.1197,0.0055784,1.6676,-1.5998,-1.675,-1.422,1.5425,-0.91338,-0.90919,0.0058936,-0.78419,0.048166 2.5502,-3.7141,0.74753,1.7336,-1.5388,0.17342,1.4325,0.6139,-0.039626,-1.1768,-1.0149,0.025852,-0.76017,-1.28,-1.3825 1.8622,-1.9728,2.2636,2.1042,-1.7909,-0.14119,-0.95894,0.94053,-0.56615,0.30097,0.35797,0.10872,0.25943,-0.099174,0.3369 2.5057,-1.6368,2.5185,1.4962,-2.134,0.84528,-0.50501,1.4067,-0.7073,1.1065,-0.50039,-0.47658,0.39627,0.26336,0.12845 5.2196,-2.8122,-1.4308,0.86981,-0.42788,0.82544,-0.23719,2.4122,-0.21396,0.41003,-1.0395,-0.9278,0.22479,0.5811,-2.072 -0.1862,-1.184,2.0845,1.7717,0.71713,-2.4809,0.74154,2.1231,0.10697,-1.2753,0.57211,1.4434,1.0544,0.57474,0.14638 -0.18027,-0.4249,1.4207,0.96056,-0.67018,-0.79553,0.87136,1.9653,1.2223,-2.0084,-0.11036,0.3337,0.85457,-0.50014,0.82717 -0.61803,1.5647,0.062375,3.1,3.3588,-0.072544,0.81978,1.96,-1.5862,-0.065796,-0.14695,-0.15493,-0.24463,-0.44917,0.20072 2.0006,-0.72425,0.96778,0.085304,3.3839,-0.51599,0.49796,-0.43352,-1.459,-2.9419,0.84565,-0.51699,2.0928,0.40334,0.40329 2.0432,1.2771,-0.23325,1.8442,0.36444,-1.1085,-0.058026,-0.41071,-0.38744,1.6568,-0.79654,-0.34368,1.9504,0.70365,-0.4222 -1.0357,0.87689,-0.0896,2.5988,1.5938,0.47528,1.4067,2.3496,-0.40137,1.5526,-0.29024,0.24083,0.21247,-0.4091,-0.04849 0.74511,1.947,1.348,2.3823,1.4894,0.23796,-0.026544,0.7687,-1.0478,1.9815,-0.53355,0.81923,0.8523,0.3772,-0.85822 4.1568,-1.7034,-1.6106,-0.8806,-1.4298,-0.54354,1.0713,-0.38814,1.2919,-0.79012,0.73096,-0.48719,0.62957,0.53621,0.65922 0.3399,2.8646,0.72496,-1.4505,1.4076,0.39195,-2.0947,1.7694,-2.0456,0.94557,0.34387,-0.22945,0.97052,-0.18902,-0.9679 1.3088,2.9107,-2.1964,-2.4142,-0.24038,-1.1785,-0.20763,0.4413,-0.3053,0.51431,0.44165,-1.6639,0.73549,0.3049,1.0911 2.4644,1.5445,-1.4355,-1.3695,-0.38965,-2.5995,-0.19643,0.47331,1.3372,0.33225,-0.38527,-1.3456,-0.13903,0.19771,-0.57405 2.0205,1.7419,-2.0072,-1.2057,0.28036,-1.6564,0.42059,0.84714,0.90328,1.8295,-0.71952,-1.2934,-0.49627,-0.017534,0.75144 -0.056041,3.0273,-1.2842,-0.85114,-1.1522,0.39114,-1.8408,0.94627,-0.88994,-0.080695,-0.52584,-1.1716,0.17559,0.053955,-0.24823 1.5616,1.2586,-2.687,-2.3574,-0.85627,-1.6279,0.85514,1.5088,0.69309,0.68006,0.68107,0.066253,0.49466,-0.1608,0.70618 1.2851,2.3829,-2.478,-1.7902,-0.46777,-1.2534,-0.33582,0.66666,0.61347,1.1066,0.23929,-1.2187,-0.22162,0.1864,0.52194 1.5324,1.0955,-1.5234,-0.13251,0.34783,-1.9899,0.040211,-0.71184,0.59638,1.5574,1.2558,-0.83441,-0.25379,1.0859,1.8439 -0.52192,3.0457,-2.2904,-0.53997,-1.245,0.59776,-0.55673,0.87899,-1.306,-0.86163,-1.2324,-0.97719,0.32383,-0.45136,0.019079 -0.37212,3.1695,-2.2737,-0.49054,-1.1327,0.54334,-1.2687,0.91115,-1.1431,0.18231,-0.44554,-0.71774,0.72121,0.35585,-0.45433 2.4858,0.12005,-2.2551,-1.5675,-0.24842,-2.2008,1.6834,1.0228,1.5086,1.1188,0.57312,0.69994,-0.38972,0.22076,0.85116 0.9199,2.5705,-2.7998,-2.0599,-0.77974,0.21477,-0.63392,1.0679,0.24382,0.2416,-0.070578,-1.4949,0.37206,-0.51751,0.30585 3.5931,0.13122,0.98225,-2.0078,-1.0026,-3.0702,1.1359,1.3103,-0.53683,-2.0912,-0.85146,0.012423,0.81895,0.98636,-1.4369 5.7805,-1.3987,0.26549,-2.266,-0.046308,-2.8824,0.99392,0.7417,0.24327,-1.4562,0.10723,0.66377,0.72165,0.69941,-1.1738 3.753,-0.83343,1.7146,-2.1061,-1.561,-2.15,0.27542,1.4416,-0.43039,-2.1095,-0.58827,0.58148,0.66915,0.49298,-1.1433 4.4266,-0.14068,1.1048,-0.86924,-0.3118,-3.2396,2.2934,1.3021,-0.76156,-1.3191,-1.0051,0.62754,-0.37623,1.2941,-1.6913 4.6102,-1.2361,1.9412,1.3704,-0.31396,-2.3559,0.72897,-0.81073,-1.1928,-1.0372,-0.55589,0.18742,0.65758,0.77668,-0.52635 3.5648,-0.46648,2.9977,0.99385,-1.2624,-2.4526,0.056671,-0.7298,-1.7779,-0.49747,0.10011,0.47285,-0.25227,0.75251,-0.51911 -0.0044317,-0.68914,2.3219,-0.030624,0.17199,-2.5123,2.5805,0.030177,-2.3195,1.78,-1.3237,0.016022,1.5509,1.001,-0.14956 2.478,-2.1277,2.394,2.5893,-0.0409,-2.021,1.6699,-0.59265,-1.8644,-1.3313,-0.46196,0.52404,1.4976,-0.022546,-0.6667 1.5202,1.8175,2.2555,0.31607,-0.041625,-2.1286,1.2815,0.94228,-1.3545,1.2579,-2.4454,-0.79142,0.67515,0.61656,-0.27028 3.1368,-2.9788,3.8598,1.0855,-1.5716,0.15525,0.85723,0.47763,-2.1747,0.54535,-0.32438,0.33807,-0.62582,-0.18756,-0.75432 0.56174,-0.63393,1.9443,0.52812,-0.090153,-2.073,3.2857,0.078661,-1.3385,1.5294,-2.3881,-0.27769,0.9007,0.58149,0.17075 3.6257,-1.015,1.4328,-0.079315,-1.5011,-2.3523,1.8232,1.334,-0.1656,-1.9525,-1.1644,1.093,-0.70708,0.90579,-2.1442 0.050292,-1.6758,2.5077,-0.62412,-3.1365,-0.95853,0.76753,-0.95084,-0.52125,0.13279,-0.55675,-0.025108,-1.4937,-1.0956,0.0422 3.8321,-1.7103,1.6817,0.20659,-2.4795,-0.23758,-0.73804,0.90056,0.24795,-0.81843,-1.5173,-0.5557,-1.8788,-0.40825,-1.119 0.20916,-1.8305,2.9998,-0.96395,-2.5863,1.5261,-0.5181,-0.3749,-0.54934,0.65316,0.25691,-0.67517,-1.0228,-0.79997,-0.72696 1.9813,-0.72041,2.7993,2.0337,-1.7945,-0.023469,-0.4714,-1.0146,-0.027515,-0.25102,0.58539,0.43915,-0.19561,-0.20127,0.5666 0.35101,1.6058,1.1614,1.8659,-1.4004,-1.1506,1.6433,-0.76102,0.07467,0.87611,-2.0674,0.048414,0.77085,0.2655,0.61279 0.79078,-0.97452,2.1148,1.5012,-2.2444,-1.1905,1.7391,-1.2917,0.23738,-0.58482,-1.1361,-0.092018,-0.2809,-1.1285,-0.24243 -1.485,-3.5347,0.37758,0.83135,-0.36268,0.23518,-1.3753,-1.0684,0.31137,1.4517,-0.092051,-0.63913,-0.11545,-1.6504,-0.44629 2.145,-1.9506,2.3018,2.32,-1.5624,1.6978,-1.1262,-0.29958,-1.0446,0.23119,-0.5955,-0.8119,-0.040062,-0.81492,1.0005 0.84361,-0.4213,2.787,0.61028,-2.9816,0.54645,-0.098481,-0.69096,0.30823,0.15498,-0.065598,0.40557,-1.3475,-0.96113,0.48924 0.34004,-3.1934,0.77307,2.0625,-0.77871,2.8805,-0.081176,0.96571,-1.1425,0.643,0.36187,-1.7124,2.092,-0.48111,0.51303 -0.24219,-2.7042,-0.015616,1.8109,-1.8363,-0.21645,0.79187,-1.2222,0.43799,0.17451,-0.29331,-0.26713,0.62925,-2.0931,-0.89132 -0.31403,-0.98592,1.9601,1.5597,-2.6976,-0.11725,0.29938,-1.5007,0.019894,0.2186,0.2947,-0.25818,-0.68393,-1.1678,0.87822 2.2886,-1.713,2.9634,1.6484,-1.5073,2.0528,-0.74138,0.76884,0.021887,0.97893,-0.20919,0.042788,-0.20753,-0.61689,0.10888 1.4715,0.10863,1.3428,0.9776,-0.96734,-2.4433,2.7925,-0.18565,-0.61723,0.86252,-2.3126,-0.47546,-0.038755,0.91811,0.32851 3.7676,-0.92514,-0.12407,-0.51275,-2.2481,-0.70644,-1.1256,1.1144,0.97007,-0.62925,-0.83053,-0.080426,-1.0969,0.93304,-0.17124 4.5706,-2.0265,1.2607,0.49721,-1.7702,-0.78462,-0.53062,1.0511,-0.37993,-0.86446,-1.3261,0.030656,-1.6812,0.65011,-0.62535 0.091164,0.20339,0.69285,2.5985,-0.87677,-1.5434,1.6098,-1.3677,-0.087512,0.39182,-0.15239,-0.70205,0.43095,0.68345,1.4691 2.7508,-0.91778,-0.011711,1.2138,-2.0575,-1.1393,-0.50546,0.13449,1.3213,-0.76205,-0.97973,-0.030795,-0.53429,0.1695,-0.41649 -0.16706,0.97846,1.0072,2.2328,-0.55888,-1.1239,1.2147,0.54905,-0.89631,1.883,0.22304,0.7948,-0.10853,2.1027,0.54793 1.0493,-0.15604,-0.51072,0.5547,-1.2316,-1.9098,3.1499,0.83579,-0.28576,1.7222,-1.5778,-0.60596,-0.0084245,0.75464,0.11649 1.9858,1.0804,0.41102,-0.47317,-1.444,-2.3613,0.67773,2.0439,0.29566,-1.3003,-1.2276,1.2663,0.21838,1.3389,-1.2369 -1.8783,0.35729,-0.77644,0.10528,-0.54662,-0.59803,1.1291,0.92797,-0.59137,2.6107,-0.084225,-0.43412,0.66224,1.5892,0.58033 -0.95237,-0.10438,-2.3974,0.65124,-0.1414,-0.7605,0.35009,-0.81906,-0.58666,2.3837,-1.1524,-0.54902,0.31601,1.5206,0.60254 -1.7496,0.645,0.19308,-1.0113,-1.7925,-1.7714,1.7213,-0.5965,-0.25574,1.3825,-0.60122,-1.3304,0.41311,0.93661,0.8843 -1.6318,-1.5996,-0.75178,1.5874,-0.81236,-2.2109,1.5556,0.79073,-0.28452,-0.59755,1.0096,-0.37245,-0.84411,-0.13222,-1.2182 -2.2002,-2.9304,-0.82775,0.91439,-0.14929,-2.0479,0.42458,0.14871,0.17923,-0.70581,0.88707,-1.0711,-1.2533,-0.73793,-1.4976 -2.6725,-3.071,1.2771,-0.74488,0.84188,-1.2618,-1.4187,1.5986,-2.0218,-0.91654,-0.083046,-0.16396,-1.1848,-0.73136,-0.67122 -1.4145,-2.1936,-1.9573,1.3869,0.003902,-1.7872,0.76678,-0.47212,-1.2564,-1.0616,0.081954,-1.1636,-1.2546,-0.91619,-0.97464 0.59188,-3.3109,1.2962,2.2421,-0.69507,1.669,0.10169,0.39562,-1.3052,-0.1047,1.4354,-0.93552,1.4568,-1.2877,0.051461 -1.6765,-3.3429,-0.97703,1.1815,0.05853,-1.6195,0.26827,0.14407,-0.66482,-0.68475,0.49191,-1.561,-1.4906,-1.3859,-0.78512 -1.4606,-2.5618,-1.4121,0.5922,-0.70782,-2.6591,-1.577,-0.57965,-0.50269,0.37754,0.22215,0.95083,-0.10195,-0.68069,-0.56205 1.5883,-2.8827,0.30586,0.16209,-1.7404,-0.75522,2.0237,0.26452,1.202,-0.77258,-1.1824,0.11301,-0.0039233,0.68012,-1.685 -0.35842,-0.028066,0.55828,0.40539,-3.273,-0.70142,-0.17629,-0.24083,0.89555,-0.40737,0.17091,-0.16042,-0.21199,0.34921,1.0022 3.316,-1.553,-0.001801,0.40307,-2.2712,0.022453,-0.69242,2.255,-0.10163,0.84132,-0.67916,-0.0033767,-0.84187,0.97326,-0.59399 2.1057,-3.9188,0.83264,0.80692,-1.0431,2.2084,0.62965,-0.6839,-1.524,0.81652,-1.3929,-1.1783,-0.076117,-1.3424,0.042713 0.042233,-3.1538,-0.56869,1.6817,0.3159,3.4044,-1.0199,-0.27011,-1.6753,0.48416,0.099842,-0.67264,1.5662,-0.18106,0.28277 -0.73152,-1.7831,-0.4,1.8454,-0.43912,0.84097,0.44958,0.8051,1.297,1.0231,0.47656,-1.1829,-0.84507,0.44616,-0.69095 2.0138,-0.35421,-0.27494,1.3084,-1.4606,-0.83357,0.49529,1.5171,1.289,-1.3159,-0.88515,0.81797,0.17473,1.7311,-0.91048 0.37261,-1.193,-0.11526,0.38284,-2.6223,-0.71627,0.78192,-0.16751,1.1926,0.019271,-0.30523,0.2507,0.55167,-0.030821,-0.85745 -1.0341,-3.8159,-0.56511,1.9862,0.020553,0.64109,-1.1998,-1.4551,-1.2194,0.77135,0.9454,-0.12402,-0.53513,-1.1948,-0.58445 -0.032959,-1.8516,0.26798,1.5431,-2.0316,-1.5845,1.2743,-1.482,0.34847,0.62935,-0.53248,0.094116,0.505,-1.3588,-0.80102 -2.1912,-0.31724,-1.3591,0.080671,-1.0859,-2.5921,0.89204,-0.4751,0.18067,1.0876,0.11348,0.12002,1.3896,-0.0020214,-0.60685 -1.0256,0.33399,-1.8959,2.9452,-1.0997,-0.56492,1.391,-0.17579,-0.022916,-0.97292,0.19611,-0.2902,-0.37036,0.60857,0.11637 -1.3446,-1.0762,0.041605,1.9,-1.6409,-1.1975,1.3847,-1.6819,0.35895,0.60435,0.54421,-0.29008,0.6665,-0.61888,-0.75689 -0.33533,-3.5134,-1.3045,1.5456,-1.0285,0.54031,-1.0706,-0.87507,-0.036964,0.81206,-0.96562,-0.033162,0.4356,-1.7369,-0.69854 -0.41204,-2.6767,-2.1334,1.7329,-0.78532,-0.27245,-1.5208,-0.72784,0.32534,0.36968,-0.40753,0.90603,0.045376,-1.2672,0.0079726 -0.32158,-2.2123,-2.9361,2.111,-0.78679,0.10675,-1.2321,-0.59252,-0.53637,-0.46373,-0.28105,0.23184,-0.76721,-1.0634,0.71085 -1.477,-1.196,-0.93969,2.5013,-1.3567,-0.48334,1.0449,0.29869,0.15719,-1.5157,1.2217,-1.1234,-1.4863,-0.69785,-0.54735 -2.0758,-0.56573,-0.68899,1.4183,-1.672,-1.486,0.72182,-0.23241,0.73186,0.40469,1.6266,-0.066281,-0.063895,0.27794,-0.50138 -2.0045,-2.9924,-0.51479,-0.29627,-0.60645,0.33623,-1.8179,0.87345,0.40629,0.113,0.40834,-0.61838,0.5647,-1.2594,-1.1789 -0.079524,-1.0843,-2.7193,1.986,-0.18519,-0.37231,0.53591,-0.97411,-1.6017,-0.14259,-0.92639,1.4084,2.0398,-0.85506,0.13232 1.0056,-1.3781,3.2856,1.0427,0.43017,-1.7098,-0.53651,1.0301,-1.1522,-0.59007,2.0118,0.4527,-0.10726,0.98927,-0.62004 -0.61288,-3.1765,2.5769,0.38,0.71875,1.0247,-0.72395,2.1489,-0.27106,2.4204,0.48812,-1.0835,0.91571,1.1948,-1.0807 0.66826,-4.2057,1.2409,1.536,1.1981,1.4263,-0.42633,0.89091,-1.1075,1.4949,-0.19225,-1.0898,0.96141,-0.22419,0.39701 0.96368,-4.352,0.24624,0.19643,0.010265,-1.4009,-0.57049,-1.1476,-1.3095,1.0883,-1.4435,1.5641,0.22935,-1.0818,-0.30399 0.13241,-4.9224,0.83168,0.13745,2.8337,0.70121,-2.0642,0.64544,-1.6896,1.8759,-0.90609,0.90121,-0.10243,0.24456,0.47708 0.67398,-3.6244,2.2231,0.28318,-0.12114,-1.1476,0.99485,-1.6557,-2.2842,1.2987,0.17688,0.98111,-0.3402,-0.97037,-1.7113 1.2444,-1.5954,1.8847,1.7935,1.8204,0.62748,-0.22949,4.0089,-0.5267,0.99458,0.30072,-0.46535,0.62334,1.6409,-0.48971 -0.10397,-3.8591,-0.4068,-0.15145,2.1702,-0.83976,-1.9607,2.175,-0.65508,1.2967,-1.1743,1.0346,0.18922,-0.3453,1.2245 -1.1913,-4.8238,0.48643,0.50344,2.7966,0.026646,-1.1615,2.0315,-0.62978,0.38987,-1.2033,-1.1786,-0.27785,0.178,0.26286 0.98302,-2.8967,0.69123,0.431,1.2822,0.78741,-1.9052,0.24554,-0.27752,2.0343,-0.34571,1.9635,0.24253,-0.71434,0.79409 -0.75945,-3.5761,-0.66298,0.60375,1.759,-0.24045,-2.1732,1.915,0.0014747,1.6734,-1.6214,-0.46215,-0.15284,0.14598,2.0038 1.7044,1.2948,0.24523,1.3718,0.21005,-0.85488,2.3679,1.5468,-1.1841,1.3703,-3.3774,-0.82711,-0.38681,0.46405,0.232 0.63667,1.9823,0.28384,1.911,0.012841,-1.9314,0.67248,0.67058,-0.52435,1.3635,-1.7592,-0.74156,0.34831,1.2902,0.68588 2.1474,1.8402,0.66113,1.002,-0.44885,-1.9921,0.16844,-0.93419,-0.43283,-0.22729,-0.70393,-0.83224,-0.76742,1.7078,1.3907 -0.92844,0.53063,-0.18451,-0.59539,-0.58479,-0.50526,1.4369,1.2362,-0.38024,2.8506,-1.362,-1.1517,-0.35078,0.52767,1.2315 -1.7894,1.4586,0.52474,-0.60486,-1.6705,-1.2577,1.5753,0.66728,-1.2069,1.231,-0.62281,-0.26085,1.0221,1.0103,1.3843 1.5923,1.2767,1.8124,-0.72785,-2.3255,-2.2589,0.097775,-0.18672,-1.0106,-1.2171,-0.8929,0.1548,0.034312,1.4644,0.83126 2.2183,0.53024,1.1737,1.3095,-1.062,-2.0542,1.7145,0.0038309,0.8582,-0.58035,-1.8351,-0.18179,-0.2453,0.97453,0.19156 -2.4937,0.29194,-2.0099,-0.04343,0.12378,-0.39357,0.44556,0.79359,-0.23765,2.2296,0.047492,-0.5599,-0.074467,1.181,-0.5245 0.40959,1.2602,0.16059,1.7192,1.095,0.18037,-0.12535,-0.29088,-1.9641,-1.5442,1.5472,-0.22944,-0.44673,1.5551,0.47005 1.2269,1.5834,1.1038,0.27738,-1.423,-2.1106,1.0573,1.4285,0.14923,0.30915,-2.2333,-0.085343,0.15899,0.92225,0.014197 2.3835,1.1983,0.3314,0.61296,-0.34347,-1.5773,1.7202,2.2743,-0.19286,1.0003,-2.7297,-0.2178,-0.84076,0.57909,-0.54914 1.0906,2.2441,-0.18635,2.0482,0.98839,-1.2982,-0.23672,0.539,-1.1459,1.7138,-0.78179,-0.92881,-0.24339,1.4193,0.25865 -0.91183,1.6684,-0.7561,1.0332,-1.6089,-0.019501,0.93151,1.3772,0.11308,1.8287,-1.0259,-0.32686,-0.095725,0.84293,0.99893 -2.5957,-0.41127,1.6288,0.66235,-1.7042,-0.85493,0.3057,0.21548,0.60349,-0.90279,2.2561,0.15594,-0.75033,-0.025135,-0.36785 -1.8453,-1.5841,2.5956,-0.83731,-2.2814,-0.29844,-0.46724,0.94923,-0.27082,-0.0078195,1.5714,-0.13329,0.43923,-1.2402,-0.12787 -3.2952,-1.9435,-1.1776,-0.89964,-0.84313,-1.6144,-1.4956,-0.74042,-0.48258,-0.47636,1.0855,0.3558,-0.30871,-0.56528,-0.70092 -1.4491,-0.87027,2.2693,-0.62873,-3.1327,-0.88478,0.076742,-0.321,-0.17814,-0.31865,0.87979,-0.23106,0.62096,-0.93005,0.19577 -3.3628,0.27362,-0.45935,0.45142,-0.99931,-1.898,1.3612,0.65815,-0.15868,-0.86548,1.0998,0.25991,-0.79435,0.25185,-0.5827 -3.2617,-0.1759,-2.8092,-1.5048,0.028561,-0.84275,-0.38965,-0.28179,-1.0241,-0.63348,0.091391,0.30242,0.70317,0.76723,-0.080389 -1.3211,-3.0421,-1.943,0.48094,-0.20425,-1.6625,-2.5201,0.52201,-0.1131,0.17844,-0.090822,0.98436,-1.8634,-0.36947,0.31989 -3.7499,-0.11754,-2.705,-1.3405,0.52591,-1.4546,-0.24209,-0.37976,-0.96174,-0.32703,0.23609,0.86637,0.2157,0.55131,-0.99049 -2.7204,-1.0096,-2.3378,-0.024433,-0.46341,-2.4203,0.52801,-0.23827,0.26041,-0.23895,-0.0086224,-0.40982,-1.113,0.58058,-1.1399 -2.1331,-1.8535,0.42042,0.95443,-1.4794,-0.46344,-0.43386,0.7409,1.5558,-0.22834,1.743,-0.6412,-1.3529,-0.077746,-0.74651 -2.7696,-0.83145,-2.211,-0.1259,-0.56525,-2.2013,1.1118,-0.26572,0.16724,-0.095067,-0.31975,-0.79982,-0.9604,0.64355,-1.1268 -2.0245,-1.9824,-2.3361,0.77791,-0.40579,-2.2663,-1.5397,-0.48209,0.11779,0.29126,0.1473,1.5427,-0.8884,-0.6399,-0.67309 -3.3496,-1.9064,-0.58134,-1.6415,-0.86832,-0.17571,-1.6192,1.0494,-0.097189,-0.68009,0.5374,-1.3426,-0.40418,-1.196,-0.4685 -1.4196,-0.9653,-0.59265,-2.1976,-2.0559,-1.3125,1.1193,-1.4165,-1.4673,-0.20468,-0.34986,-0.09638,0.99727,-0.79921,-0.52273 -1.2167,-3.2369,2.2602,-2.1424,-1.4635,-0.71893,-0.43569,-0.15726,-2.3605,1.1366,0.59758,0.31612,-0.31896,-1.1185,-1.0875 -1.7834,-3.7982,0.37473,-0.70389,-0.23965,-2.343,-1.4151,-0.44127,-0.75354,0.7577,0.64607,0.30649,0.029046,-0.58126,-0.7932 -2.5913,0.36833,-0.89371,-0.4339,-0.7797,-1.6027,0.84225,0.44178,-0.39914,1.7306,0.53556,-0.31705,1.0987,0.9073,0.1201 -1.5878,0.6182,1.2407,-0.46244,-2.9197,-0.71385,0.44637,0.22756,-0.84963,-1.0246,1.0025,0.6149,1.1894,-0.39426,1.0619 -1.2559,-2.2289,1.7245,-2.1368,-2.2064,-0.21796,-0.10036,-0.20432,-1.9885,0.41249,0.99759,0.061652,0.99058,-1.0051,-0.9585 -1.4192,-2.2739,1.7541,-1.9799,-2.1762,0.37648,-0.54671,-0.024401,-1.7477,1.1951,0.94212,0.046666,0.39679,-0.83088,-0.77176 -2.543,-0.69882,0.54576,-1.2568,-1.7956,-0.77921,0.70839,-0.20141,-0.54817,-0.26612,1.4338,-0.20682,1.5648,-0.42294,-0.20666 -3.5647,-0.56998,-1.3347,-1.0923,-0.74174,-1.2412,0.41814,-0.20236,-0.12636,-0.21267,1.0231,0.13163,0.071806,0.39965,-0.90171 -1.8502,-0.24238,2.4664,-0.58695,-2.2108,0.19463,0.064412,0.025285,-1.4774,-1.231,1.4474,0.57955,0.74732,-0.94119,0.23337 -2.6667,-2.9836,0.0702,-1.5364,-0.38349,-1.5715,-1.421,0.63861,-0.4532,-0.36949,0.19825,-0.23856,-0.27527,-1.0614,-0.25258 -1.9095,-3.1209,-0.23414,-2.4536,1.1939,-1.4248,-2.5227,-0.11376,-1.2634,-0.21402,-0.75484,2.4458,0.020744,-0.71063,0.65337 -2.4364,-2.0483,-1.0363,-1.5037,0.22696,-2.0262,-1.7676,-0.402,-1.1183,0.28072,0.37344,1.5659,0.27577,-0.19674,-0.13883 -2.6492,0.67875,-1.3924,0.18786,-1.7493,-0.87555,1.4557,0.46418,0.088712,-0.4701,0.79087,0.15721,-0.15087,0.50754,-0.535 -1.9549,-0.96816,-2.3397,-0.0087062,-0.2726,-1.2243,-0.73638,-0.18334,0.80282,0.55944,0.058597,0.66161,-0.20037,0.75539,-0.79262 -0.8359,-3.077,-2.0027,0.79438,0.35005,-0.43819,-2.075,0.56807,1.0013,0.2973,-0.89284,0.41016,-1.5437,-0.25556,0.26868 -2.7303,-2.8512,-1.5136,-0.44117,0.12307,-1.2571,-1.8805,0.069688,0.16402,-0.6198,0.37877,-0.21386,-2.2703,-0.35505,-0.59237 -1.4632,-4.5588,-0.44682,-0.41382,0.82218,-0.66896,-2.5941,1.7091,0.089106,0.74087,-0.88779,-0.16926,-0.68467,-0.99009,-0.090974 -1.4551,-2.6208,-1.2545,-1.1699,-1.5191,0.53033,-1.5798,-0.82105,-1.7097,-0.28259,0.38009,0.76206,0.45711,-0.94613,-0.72529 -0.89578,-3.8803,0.92016,-1.902,-0.70624,0.56167,-2.016,-0.21635,-2.1475,0.69484,0.25738,0.84434,0.37344,-0.98075,-0.88335 -1.8705,0.56025,1.7881,-0.0085058,-0.57695,-1.5943,1.3187,-0.56225,-1.1696,1.4913,1.9697,0.26236,0.32422,0.21985,-0.32874 -0.26741,2.1631,1.1456,1.2435,0.17411,-1.4553,0.73347,1.188,-2.0023,0.030632,1.1235,0.81797,0.25352,1.5913,-0.1271 0.15658,3.2955,1.3748,0.17308,-1.0652,-1.3318,-0.38059,1.3384,-1.7317,0.89352,-0.65675,-0.35485,0.089359,-0.22815,1.0703 -1.6263,-0.58401,1.3864,0.39926,-0.47647,-0.36276,0.044733,1.6802,0.41665,-0.95177,2.584,0.31636,-1.2436,0.32334,-0.66343 -2.2905,-1.6755,2.2057,-0.043878,0.86423,-2.4457,1.361,-0.49517,-1.562,0.63418,2.0689,0.36966,-0.32236,1.3926,-0.5917 -2.0825,0.52938,2.2863,1.2417,1.0671,-1.7731,1.0895,0.42847,-1.5947,-0.15981,2.0792,0.12808,-1.1349,0.42828,-0.70613 -2.3601,-2.4918,0.84075,-0.77495,1.5789,-0.16691,0.056093,1.9826,-0.081245,-0.93057,0.31028,-1.7152,-2.0661,-0.59885,-0.90421 -0.25955,1.8214,2.3986,0.41634,-2.2354,-2.2486,1.2718,-0.58508,-0.8623,-0.10023,-0.84114,0.13892,0.1091,0.25499,0.84556 -3.2761,-0.60419,0.32168,-0.20376,1.0409,-2.2919,1.0129,-0.64871,-1.0318,0.88164,1.4752,0.1111,-0.31259,0.78479,-1.2905 -2.5892,0.096603,1.8907,-1.4439,-1.5014,-1.4318,1.2212,-1.627,-1.854,-0.12614,1.0917,-0.35845,0.87277,0.67963,0.098106 -2.2922,-3.0061,1.9879,-0.019748,1.0023,-1.4456,-0.5763,0.051547,-1.3634,-0.50967,2.0436,-0.025791,-0.68193,-1.008,-2.0474 -3.4741,-2.2389,1.4067,-1.3876,0.71076,-1.2965,-0.33502,0.46661,-0.63582,-0.35272,1.6933,0.070584,-1.3501,0.466,-1.1952 -2.6382,-1.7902,-1.6699,-0.68977,1.9355,-2.1188,-1.0266,0.35168,-0.6533,-0.70421,-0.61039,-0.056856,-1.8567,-0.54325,-0.64373 -1.039,-0.81021,-2.6191,0.33493,-1.9282,-0.56504,-1.9735,-0.87178,-0.26134,0.43874,-0.39397,2.0526,-0.42202,-0.6999,1.2145 -1.0231,-2.7173,-2.4683,1.8593,0.13041,0.90189,-2.2699,-0.1066,-0.10726,0.55072,-0.45498,0.61021,-0.74488,-0.41254,1.7094 -0.53052,-2.2634,-2.6611,1.9453,-0.37273,0.50719,-1.7177,0.18524,-1.072,-0.52064,-0.0045818,0.83469,0.1184,-1.4534,1.2844 -1.2581,-3.2563,-1.5059,1.5297,0.61615,0.031971,-2.2641,-1.2836,-0.19973,0.73184,-0.39076,1.3892,-0.37879,-1.6264,0.44937 -2.7486,-0.88527,-2.7267,-0.60343,-0.78273,-0.42715,-1.9451,-0.77465,-0.60098,-0.24948,0.2077,2.018,-0.11415,-0.58168,-0.10756 -2.4885,-1.8057,-1.0304,-0.57028,-1.4656,1.3163,-2.061,-0.75801,0.14742,1.3306,0.61744,-0.028059,-0.33227,0.070235,-0.53488 -0.73477,-2.4928,0.10827,0.545,-0.98985,1.6864,-1.4915,-0.27574,0.34794,2.539,0.12588,-0.84094,0.80281,0.69559,-0.37041 -0.98352,-0.29881,-3.1897,0.44101,-0.59244,0.76383,-0.98195,1.5836,1.1644,-0.33551,-0.4864,0.38664,-0.86675,-0.13363,0.85489 -0.97074,-3.1248,-1.131,1.6977,0.5537,1.8717,-1.7285,-0.72467,-0.26974,1.341,-0.12915,-0.33099,0.16083,-0.1666,0.67863 -1.6026,-1.8127,-3.7451,0.69711,0.28749,-0.45797,-1.5162,0.39096,-0.97389,-0.78034,-1.3436,0.64985,-2.0415,-1.323,0.93246 -0.83139,-3.5434,-1.3761,1.5927,-0.30841,1.2079,-1.2468,-0.17073,0.19864,1.1267,-0.72036,-1.3861,0.47539,-0.21332,0.32352 -1.7267,-2.4018,0.18741,1.6091,-0.3203,2.5085,-0.55908,0.57777,-0.77816,-0.85627,1.8342,-1.1986,-1.0578,-0.77195,0.017432 -0.87264,-1.3378,-2.2358,-0.35386,-1.6222,-2.453,-0.66997,-1.1449,-0.31616,0.12416,-0.97719,1.436,1.2418,-0.028769,0.11443 0.055536,-2.8207,-0.14102,0.2573,-2.6695,0.11461,-0.60999,0.41334,1.1256,0.75078,-0.88871,-0.68643,0.2409,-1.4178,-0.79992 -1.1063,-3.1309,-2.1114,1.4561,-0.90705,0.40446,-0.78764,0.3723,-0.22018,-0.50752,-0.17023,-0.7131,-1.5962,-0.97764,-0.57472 -1.466,-3.6508,-1.2699,0.35857,-0.69115,-2.1864,-1.0704,0.11034,-0.86354,-0.35376,0.60331,0.56848,-0.82733,-0.43951,-0.92147 -2.3203,-0.74428,-2.7313,-0.32244,-0.89402,-2.535,0.48017,-0.14551,-0.70228,0.1654,-0.21286,0.075865,0.016801,1.1967,-0.93692 -0.57261,-0.62907,-3.2705,1.2223,-1.1874,-1.8947,-0.2382,0.27332,-0.27944,-0.57946,-0.31643,1.9673,-0.097921,-0.68772,-0.3564 -0.72435,-2.2216,1.3049,1.96,-2.2314,-0.44084,-0.27598,0.68021,0.47438,0.21012,1.1635,-0.29414,0.10625,-0.86657,-0.28919 3.0803,-0.23133,0.32655,1.7943,-0.64361,-1.2958,-0.80544,-2.2008,0.33614,-1.6082,-0.6319,-1.6471,-0.032742,0.28678,0.69687 4.3784,-2.3286,-1.2945,0.72758,-0.57538,-0.03243,0.17394,-0.66959,1.0714,-1.6042,-0.042207,-1.3839,-0.44048,-0.54842,-0.1981 3.9997,-1.3618,-0.40123,1.3137,-0.46295,0.04356,-0.51696,-1.6165,-0.0084686,-2.154,-0.48062,-1.5885,-0.0059394,-0.13281,0.73558 3.6158,-1.4155,-0.19967,1.749,-0.24984,1.5668,-1.8378,-1.6591,-1.5329,-1.2625,0.67583,-0.35111,1.0833,-0.45207,0.39225 2.5919,1.7609,-0.61118,2.0015,0.047011,-1.275,-0.15944,-1.8746,-0.42336,0.45647,-1.0898,-2.001,0.10715,0.1658,0.59008 0.71055,0.65671,0.74318,1.927,-1.8848,-1.3991,-0.34126,-1.4301,0.14658,-0.55932,-0.33453,0.064039,-0.9805,0.28541,1.0335 5.2922,-2.118,-1.0053,-0.19406,-0.049014,-1.1029,0.49901,-0.07302,0.51581,-2.1137,-0.13327,-0.023396,-0.92152,-0.29095,-1.6659 2.559,0.87183,0.73671,1.3297,-1.6835,-1.2561,-0.49568,-1.6424,0.32208,-0.63006,-1.178,-0.12681,-0.091476,0.13896,-0.16149 2.6956,1.213,-0.39231,0.99834,-1.4676,-1.7045,0.090898,-0.47994,1.7663,-0.97613,-1.724,-0.72367,-0.66299,0.56953,-0.53947 0.22174,2.0703,-0.28834,2.1403,-1.7367,-0.54353,-0.25574,-0.89768,0.23811,-0.12473,-0.76016,0.045297,0.1589,1.1385,0.70542 1.5725,0.017702,0.3713,2.5375,-1.4045,0.048809,-0.76569,-1.6139,-0.77825,-2.3762,0.078536,-0.65074,0.0028641,-0.21604,1.1483 -2.518,-1.6857,-0.5065,-2.3294,0.15462,-2.3602,-0.91647,-1.3301,-1.984,0.093927,-0.69513,0.98984,0.89832,1.0417,1.1294 0.31868,-2.5638,4.3847,-1.8609,-1.6121,-0.050919,0.38408,-0.068683,-1.4582,1.0764,0.66221,0.19515,-0.8289,0.25237,-0.9021 1.418,-5.0757,0.93767,-1.071,-0.42956,-0.099916,-1.2981,-1.2328,-1.8463,2.1369,-2.0018,1.3198,-1.0071,-0.6162,-0.27162 -2.1486,-2.1233,1.1203,-0.3746,0.79,-2.7094,0.79573,-1.0173,-1.0878,1.5463,0.67643,0.23007,0.81212,1.4717,-0.63082 -2.1117,-3.073,0.90055,-1.4976,1.2168,-2.5045,-1.0706,-1.1218,-1.1968,0.78283,-0.18227,1.2701,0.24033,0.87153,0.33269 -0.25223,-4.1264,3.4738,0.22073,-0.32668,-1.4271,0.9593,0.22042,-1.1825,0.58093,0.63403,-0.18406,0.55749,-0.60938,-1.3425 0.87857,-3.2956,-0.32329,-1.4534,-0.82064,-3.4334,2.0371,-1.0142,-1.653,0.41733,-2.1326,0.54228,-0.52896,-0.11543,-1.2247 -1.3096,-0.91263,2.4939,-0.12481,-2.0098,-2.1119,1.1151,-0.53119,-0.67359,0.21754,1.0583,0.41357,0.9973,0.11816,-0.12061 -2.5339,-0.18764,1.0376,-0.59917,-0.97729,-1.6466,1.4557,-0.23277,-0.87263,1.5202,0.89908,0.11499,0.72545,1.144,0.37797 0.48117,-2.1758,0.0033147,0.53309,-0.29458,-2.4377,2.8473,-1.3383,-1.1765,1.7816,-1.5952,-0.074412,1.7952,0.4523,-1.2063 -0.67596,-4.3617,0.30751,-1.0214,-1.3334,-2.6079,-0.60486,-0.37543,-1.7516,0.21885,-0.58926,0.9516,0.57917,-0.84945,-0.85202 -1.1621,-3.2655,-1.313,1.4737,0.76259,-3.3924,0.80133,-0.85856,-2.2274,-0.51505,0.16029,0.034853,0.25242,0.055014,-0.83433 1.8563,-4.0949,0.060738,1.5774,-0.85587,0.12095,-0.050008,-0.90492,-0.63381,-0.21994,-1.0851,-0.38037,0.14627,-2.195,-0.62697 1.2036,-5.0104,2.3822,0.016109,-0.31815,-2.2966,1.3463,-0.16167,-2.5601,-0.17672,-0.88231,0.42321,0.41245,-0.37928,-0.93433 -0.18293,-0.66601,2.5336,0.61487,0.38261,-3.1768,1.992,-0.32879,-2.3266,0.83252,-0.20333,0.36103,1.0807,0.52738,-0.29455 -0.40231,-1.2833,1.0729,1.3798,0.087476,-2.5743,2.7929,-1.4414,-1.2098,1.3951,-0.73366,-0.55217,1.3503,0.10549,0.22058 -2.191,-1.7784,-0.65377,-0.49628,0.33176,-2.867,-0.42203,-1.1492,-0.93166,1.6075,0.13425,1.1482,1.0589,0.68377,-0.33349 -0.48899,-1.5003,-0.52433,0.084088,-1.4413,-2.545,1.9805,-1.8702,0.019574,1.2446,-1.5187,-0.3052,0.84944,-0.29158,-0.95339 1.4217,-4.4509,1.3766,1.808,-0.82802,-0.26315,0.9565,-0.6485,-1.4327,-0.6786,-0.67676,-0.55507,0.27693,-1.9744,-0.82052 -3.6159,0.55,0.65866,-0.31258,-0.26911,-2.1202,1.2284,0.55626,-1.4888,-0.33977,0.6862,0.18987,0.4246,1.0883,0.080801 -2.7789,-3.4641,-0.10872,0.29814,1.2775,-2.6647,-0.34544,-0.016025,-0.48635,-0.35871,0.82628,-0.13447,-1.4823,-0.75249,-1.0968 2.0635,-4.3339,0.39056,0.9591,0.21122,-0.20798,-0.17351,-0.025833,-2.8473,-2.3948,0.42,-0.10096,1.339,-1.4852,0.16887 -2.3049,-1.7646,-0.55564,0.53804,1.3791,-3.2044,1.5698,0.10114,-1.7218,0.88309,0.35849,-0.57043,0.69612,1.0287,-0.12159 -1.4908,0.13248,0.79008,-0.20142,-1.8041,-2.1307,2.0133,-0.072742,-0.26248,1.0752,-0.50218,-0.31308,1.5201,0.42368,0.48281 -2.327,-3.244,0.95056,-0.83366,0.26217,-2.8673,-1.1089,-1.1889,-0.98447,0.10848,0.39507,0.49834,0.15138,-0.66679,-0.75988 -1.5718,-0.26447,2.0408,0.66572,0.16046,-3.0065,1.9432,0.13385,-1.8267,1.0293,0.68976,-0.035444,0.62308,1.3356,0.46058 -0.24295,-3.2062,1.973,0.41797,-0.98791,-2.2741,0.87372,-1.7465,-0.93519,0.86595,0.27974,0.28778,0.70453,-0.63202,-0.91577 -0.77571,0.93484,2.5397,1.0444,4.1795,-1.5436,1.5712,2.0694,-2.6454,0.53362,0.67108,-0.063467,0.083609,0.2504,-0.45428 -1.9863,0.89825,0.22751,2.3863,2.6884,-1.7386,2.2227,2.0991,-1.419,-0.65204,-1.2224,-1.4075,-0.63456,0.103,0.27362 -0.13285,0.94331,1.2988,1.6369,4.771,-1.1479,0.81228,2.1511,-3.3342,0.74518,0.1487,-0.41951,0.49082,0.26696,-0.11473 -1.3501,0.75688,0.43334,1.1309,2.7409,-2.4338,1.7507,2.5484,-1.5318,-0.71362,-0.81031,-1.2647,-0.77361,0.75449,0.23883 -1.9914,1.2702,0.038321,1.5215,3.1665,-0.15068,1.0244,3.0061,-2.0975,0.28706,-0.35686,-0.79565,-1.6886,0.67725,-0.56181 0.054561,-0.18565,1.774,1.0234,3.7423,-2.4821,0.82267,2.7089,-1.8591,-1.3004,-0.1921,-0.67742,-0.028273,0.54373,0.0052303 -1.0466,-3.0655,-1.2584,1.2256,-0.3332,-2.084,-0.84285,-0.846,-0.45558,0.43876,0.56786,-0.028121,-0.20163,-0.96079,-0.92429 -1.9486,-2.8191,1.4003,-0.99123,-0.97556,0.17122,-1.5402,0.3297,0.21117,1.0682,1.1522,-0.70296,0.33409,-1.028,-1.1617 -1.6918,-3.7482,-0.78055,0.012737,0.51246,-0.20892,-3.247,1.7158,0.46618,1.0018,-0.96367,-0.65076,-1.0643,0.045199,1.3613 -1.6487,-2.7192,0.14612,1.0272,0.23707,-0.61446,-0.75224,-1.4145,0.42909,1.1463,1.6255,-0.061276,-0.75353,-0.9446,-1.1518 -0.20567,-3.2091,-0.085295,-2.4961e-05,-1.3736,-0.75071,-1.6374,-1.4376,0.024193,1.6952,-0.13686,0.86403,0.16851,-0.93965,-0.002924 -0.63781,-3.4552,-1.0966,-0.28689,1.519,-0.018068,-2.3229,3.0121,-0.10954,0.91912,-0.99147,0.42966,-0.46805,0.96521,1.5803 1.4348,-3.8293,0.28738,0.83263,-0.9484,1.3479,-0.12865,-1.4187,-0.7218,1.2608,-1.1414,-0.93188,0.06632,-1.7753,-0.75353 -0.051677,-3.3751,-0.48304,2.62,0.33219,1.0711,-0.28447,1.9632,-0.31692,0.39766,0.32542,-2.1927,0.21809,-0.45355,0.47251 0.36929,-3.5478,0.7294,1.4264,1.4297,3.4087,0.75377,1.7849,-1.0788,1.1159,0.38071,-1.3216,1.2369,-0.139,-1.0277 1.5947,-1.81,0.99341,2.1436,0.58483,1.8077,-0.19291,0.16556,-0.95073,-1.6083,0.11523,0.82279,1.0782,-2.2488,-0.21957 -1.2213,-3.2923,-1.0503,0.57631,-0.047643,-1.9464,-1.5795,0.018853,-0.23969,0.95551,0.15532,0.75199,-0.052277,-1.1292,-0.55957 -0.7969,-3.3185,0.9881,0.26376,-0.6288,-0.11011,-1.0993,-1.0274,0.446,1.5768,0.58165,-0.094258,0.11618,-1.3595,-1.6349 1.7798,-4.0507,-0.36112,0.44786,-0.76227,2.1411,0.25559,-0.069277,-0.26138,1.3754,-1.4953,-1.6433,0.43074,-0.30729,-0.87729 0.34223,-3.0678,0.79577,-1.4162,-1.8437,1.1314,-1.0183,0.57359,0.27025,2.2481,-1.6015,-0.61278,0.30176,0.25615,-0.67664 -1.4012,-1.7117,-1.8101,-1.9249,0.66847,0.064885,-0.86524,2.4176,-1.9088,-0.72436,-1.6781,-1.1812,1.0637,0.85475,1.2433 -0.4504,-3.9877,0.45334,-0.21141,-0.89596,1.0616,-1.4032,1.0313,0.4633,1.8933,-1.2192,-0.45991,0.95356,-0.15525,-1.2292 -1.6713,-2.8299,-0.25747,0.28427,-0.81502,0.23678,-0.99912,2.1691,1.1685,0.54138,0.16663,-1.8005,-1.2981,-0.94023,-0.99837 -0.47284,-3.2877,-2.108,1.3292,2.2079,0.44227,-1.6641,1.2884,-1.1904,-0.75707,-1.2679,-0.38573,-1.8201,-0.93142,1.2247 -0.91215,-3.5209,-1.1048,-0.065952,-0.32591,-0.27284,-2.5199,0.34309,0.086461,0.75763,-0.88781,1.9289,0.49672,-1.7907,-0.086359 -2.1926,-3.48,-0.66342,-0.90231,0.007932,-0.62068,-2.5222,0.85977,0.42382,0.15104,-0.708,0.50098,-0.89047,-1.2506,0.01332 -0.78736,-2.5568,-1.3799,-1.3664,-1.893,0.4679,-2.3866,-0.41373,-0.64292,0.69785,-1.6637,1.0587,0.39548,-1.239,0.75524 -1.5512,-3.4013,-1.8225,0.62517,1.0427,0.53594,-2.0697,0.74971,0.47056,-0.26458,-0.95302,-1.0127,-2.5193,-0.30418,0.59329 -1.5131,-3.392,0.59839,0.062949,0.50197,0.10779,-1.045,1.6664,1.1928,1.2524,-1.0858,-1.39,-0.47447,-1.0954,-0.30154 -1.1262,-3.8649,-1.9469,1.3063,1.5466,0.10135,-2.0843,1.1952,-1.6575,-1.3878,-0.3346,-0.48668,-1.0644,-1.8787,0.92966 -0.033199,-0.28103,2.3035,2.2626,-0.654,-1.5458,-0.65712,0.63095,1.3154,-1.1248,1.0361,0.50218,0.32738,0.58274,0.36758 1.9878,-0.18997,1.676,-0.30253,-2.8617,-1.5987,1.0117,-0.21991,0.35432,-1.2225,-0.88131,-0.02258,-0.96074,0.23476,-0.83187 3.4585,-1.2888,2.8151,0.56425,-2.3552,0.078556,-0.16706,0.21539,-0.42962,-0.26644,-0.49567,-0.18536,-1.5591,0.45126,0.34697 -0.62247,0.26393,-0.020203,-0.00072108,-2.3267,-1.3848,1.7647,-0.96971,-0.0042555,1.1124,-1.2969,0.38472,0.79007,-0.13664,-0.0068808 -1.5108,-1.3695,1.6355,-1.2224,-2.0529,-0.9729,0.34252,-2.3708,-0.27059,0.79815,0.13373,0.66527,-0.099153,-0.81043,-0.63087 0.95523,-1.4585,1.5289,-1.1915,-2.0476,-1.4251,0.86874,-1.8065,-0.79403,0.2753,-0.27951,-0.0324,-0.25797,0.23942,-1.3111 -0.3987,-2.8474,0.91455,1.3251,-1.588,0.89068,-0.26171,-0.39425,0.77458,0.93106,0.6207,-1.1351,0.33059,-1.0945,0.13638 2.4491,0.045451,1.9417,-0.4581,-2.5575,-0.8694,-1.5773,-0.36649,0.3614,-0.74034,-0.023512,0.30984,0.4445,-0.010365,-0.073494 2.3294,0.39532,2.9061,-1.2785,-2.5611,1.4261,-1.3877,0.97677,0.10602,-0.61159,-0.52311,0.97304,-1.295,-0.18205,-0.55512 -0.80391,0.039046,-2.747,-2.4369,-1.1091,-0.18543,1.9223,0.056228,-1.1221,0.96891,-1.7711,-0.44437,0.50784,0.47477,0.25335 4.1508,-2.3674,0.40119,1.213,-1.4815,1.6906,-0.1854,1.7052,-0.25737,0.050413,-1.5863,-0.29157,-1.037,0.11393,-1.1183 1.3432,-0.04667,1.0325,1.937,1.3717,-0.11753,2.5043,-1.4828,-2.8434,0.67413,-0.93114,-0.26122,1.9933,0.044119,-0.66361 1.8554,2.355,1.1484,1.8695,0.66272,-1.4026,1.1702,-0.58579,-2.02,0.70182,-1.5258,-0.82925,0.21259,0.63187,0.93724 -0.92504,1.5557,2.0591,-0.70548,-0.42608,-2.03,2.1244,0.62468,-2.5791,1.6522,-0.77646,-0.40719,0.31759,1.8,0.86936 1.1654,1.7636,2.3122,0.52347,2.3388,-2.8413,0.46842,0.40627,-1.5311,0.71776,0.12446,-0.43859,0.72302,1.2928,0.0034394 3.0993,2.089,1.3281,-1.0599,-0.083169,-3.4758,-0.34714,-0.51123,-0.54677,-0.3934,-0.52168,-0.99788,0.86973,1.046,0.12575 3.6954,0.66276,0.010133,-2.8493,-0.27555,-3.4341,0.41253,0.091417,-0.57837,-0.89913,0.74064,-0.91239,0.88995,1.3,0.51219 2.5289,1.1635,2.554,0.85453,1.1662,-2.6845,1.331,-0.12638,-0.42009,-0.48457,-1.3606,-0.40095,0.47469,0.74974,0.022969 -0.42641,4.2651,1.01,-1.0967,0.59527,0.27447,0.24791,0.68121,-2.4804,0.013586,-2.1158,-1.2904,-0.70435,-0.21622,0.065641 2.031,2.0327,0.42752,-1.1506,3.0168,-1.982,-0.85517,0.88123,-2.5751,1.4152,1.5695,-1.8245,-1.619,-0.76201,1.2411 5.6633,-1.721,0.096139,-1.8584,1.4688,-2.8452,2.0328,0.41138,-0.58262,-0.23451,0.43351,-0.020066,-0.36164,0.43757,1.2508 3.8528,1.6552,0.0042392,-1.0331,-0.68793,-2.4379,1.1363,-0.25496,-0.14195,-0.8291,-1.4926,-0.27471,-0.24346,0.99786,-1.0883 3.8888,0.6416,-0.046688,1.4774,0.88292,-1.3417,0.36151,-1.7827,-0.78883,-0.49279,-0.024888,-1.1158,1.5194,0.1717,0.0065281 -0.90922,2.1878,0.28143,1.041,-1.0826,-1.4393,-0.24075,1.5582,-0.40911,-1.4053,0.21892,0.035658,1.027,0.83594,-0.094055 2.0012,2.1862,0.20072,-0.06215,0.044542,-1.574,-1.315,-0.93313,0.3475,0.40785,0.50718,-0.26001,1.6733,0.84052,-0.70165 1.538,0.48489,-0.14135,2.3236,-0.79842,-0.69841,-1.2239,-1.0469,0.8485,-1.0899,0.32394,-0.29404,1.3373,0.56077,-0.028157 0.56137,2.3845,0.66838,0.14099,-0.89589,-0.80953,-0.90534,-0.025238,-0.39498,-0.69907,0.033161,0.60205,2.1276,0.7276,-0.20737 1.356,0.83863,1.0849,-0.52115,-2.7668,0.64854,-0.62104,-0.39413,-0.87806,-2.52,-0.17904,0.57904,0.79633,-0.058823,0.64903 1.3328,1.9213,-0.029557,-0.58165,-0.57593,-0.53686,-1.7226,-0.88432,0.22101,-1.6104,0.75649,0.31843,2.206,0.37768,-0.66327 0.16309,1.6598,-0.87939,2.5423,-0.68666,-0.15607,0.5557,0.022793,0.054661,0.70047,-1.8406,-0.37216,1.3032,0.063125,0.43827 0.49208,1.7894,0.4653,1.6242,-0.83751,-1.2357,-0.24641,-0.048738,-0.29696,-0.04134,0.3641,0.56457,1.4134,0.99211,-0.089703 3.251,-0.055232,0.093997,0.10301,-1.4627,-0.10198,-0.80481,-1.3982,0.95526,-0.9409,0.1985,-0.12691,0.60197,0.58362,-0.44237 2.2425,-0.28205,0.54098,0.62985,-1.8034,-0.48479,-1.2249,-0.43391,0.92641,-1.5436,0.2022,0.056506,1.7731,0.97536,0.55251 0.87452,-0.094675,2.6282,0.70677,-1.9377,-1.9249,1.3185,-0.49217,-0.83909,0.69245,0.04688,1.444,0.43379,0.11292,-0.36614 0.17272,-0.29906,2.5153,2.16,-0.94823,-1.7276,0.95912,-1.1397,-1.3433,0.6353,1.154,1.1122,-0.4029,-0.1444,0.32167 -0.28637,-0.37752,2.9654,1.8829,-0.57371,-1.856,1.2322,-0.52751,-0.52709,0.41022,0.62824,1.643,0.51382,-0.061308,-0.66179 1.5634,1.0493,1.8513,-0.78036,-2.8182,-2.3417,1.3055,0.29158,-0.89317,-1.4185,-0.85637,-0.182,-1.111,1.2175,0.25724 -1.0267,-2.347,3.457,-0.99073,-1.4127,-0.98455,0.12192,-0.050141,-1.4703,0.79203,1.3571,0.85486,0.068132,-0.70878,-1.1339 2.7515,-1.536,2.242,1.9133,-2.1771,0.24286,-0.44247,0.23619,0.19563,-0.83772,-0.93743,0.26895,-0.1171,-0.90034,-0.23975 1.8313,1.906,1.7575,-1.5197,-2.3562,-1.1664,0.35925,-0.06111,-2.5356,-2.3661,-0.069571,-0.1309,-0.38488,1.1171,0.22428 0.52915,0.39328,3.177,-0.42144,-2.0539,-1.2046,1.2266,-0.42493,-0.85698,-0.1678,0.39646,1.2836,-0.47122,-0.28728,-0.089738 1.9826,-0.73249,1.2989,1.8554,-2.6493,-0.068728,0.79184,-0.63699,0.43589,-0.47229,-0.8994,0.07577,-1.1364,-0.93772,-0.049524 -0.91088,-0.94312,0.48977,-0.24703,-1.7316,-2.1425,1.8246,-2.28,-0.58421,1.4437,-0.57467,-0.65863,0.21616,-0.17079,-0.29881 0.37832,-1.2496,3.5004,-0.82242,-2.4589,-1.4367,0.17703,-0.96675,-0.99677,-0.26423,-0.057719,0.18593,-0.54595,-0.2486,-0.85552 1.3044,-1.4318,3.2346,1.5453,-1.285,-1.5241,0.42599,-0.95305,-1.1643,0.43814,0.59003,0.94986,-0.17526,-0.213,-0.56751 0.45822,-0.19497,0.57702,1.1285,-1.5051,-1.8802,2.6292,-0.9272,-0.42961,1.4945,-1.1476,0.27206,0.69339,-0.053856,-0.35082 1.3818,-4.333,1.396,1.2672,-0.77039,2.3199,0.82135,-0.76589,-1.5918,0.87585,-0.21437,-1.3324,0.80664,-1.1585,-0.70458 0.457,-2.9247,-1.1462,0.94143,-1.4528,-0.61309,0.96146,-2.022,0.17314,-0.10089,-1.4509,-0.14392,-0.23007,-1.5946,-1.488 1.88,-4.3051,-0.38709,-0.80142,-1.1672,1.3877,-0.80341,-0.65876,-0.70445,1.8478,-2.2844,0.27397,-1.6231,-0.023715,-0.61884 0.11159,1.6323,2.0966,1.3284,-1.7245,-1.595,-0.63858,-0.78499,-0.097234,-0.65358,0.4182,0.87851,-0.32479,1.0818,1.0942 1.2658,-0.40579,1.4579,2.2039,-1.3947,-1.3273,1.7567,-2.1347,-0.98771,-0.68981,-0.56831,-0.75242,-0.25936,-0.13109,1.3043 -0.072466,-0.054014,0.75267,1.7127,-0.024869,-1.7173,2.9131,-1.4249,-1.4617,1.6705,-1.1279,-0.62068,1.1409,0.17942,0.68225 -0.43475,-2.5898,2.0024,1.9992,-1.2258,-1.4093,0.72552,-1.2497,0.54219,-0.12251,0.79111,-0.34909,0.73459,-0.91903,-0.46219 -0.52084,-2.0977,2.3016,1.6813,-1.7272,-0.86107,-0.1217,-0.60755,0.23655,0.46862,1.59,-0.30442,-0.48036,-0.77948,-0.053051 -1.0229,-3.8459,0.55952,1.4218,0.13232,0.69877,-1.7281,-1.6115,-0.32655,0.57407,0.48094,-0.74796,-0.20843,-1.0394,-0.0021732 -0.2778,-2.344,0.83073,0.032511,-2.3712,-0.37643,-0.40211,-2.5709,0.030938,1.2744,-0.36793,-1.3156,-1.0881,-1.0233,-0.04989 -2.1191,-2.8017,-0.25528,-0.060554,-0.70069,-0.69528,-1.7903,-0.87803,0.8491,0.67911,0.59955,-0.11775,-0.41264,-0.68729,-0.79777 -1.2304,-4.1862,0.79033,1.0533,-0.35542,0.11714,-0.94702,1.5649,0.0038949,0.91076,1.5207,-1.5839,-0.65474,-0.30453,-1.1417 -0.20986,-2.177,1.598,0.29824,-0.17773,1.4734,-0.36748,2.6216,1.1213,2.0497,1.0091,-1.0093,1.1336,0.78679,-0.96696 -1.9017,-3.1441,-0.75176,-0.050683,-0.32235,-0.87508,-2.2751,0.37802,0.43433,0.58218,0.00047035,-0.1854,-0.25809,-1.1176,-0.4246 -0.95115,-3.275,1.069,-0.46856,-1.0634,0.75776,-1.436,0.42543,0.54337,1.8645,0.12657,-0.82154,0.97392,-0.27852,-0.59358 -1.8017,-3.2249,0.67887,-0.25152,0.77149,0.55763,-1.1271,1.7035,0.96532,1.2181,0.50883,-1.6448,-0.36253,1.0887,-0.39284 -0.098662,-3.1802,1.5818,0.25325,-0.26303,1.2934,-1.0959,1.1325,0.48228,2.1043,0.89755,-1.2923,0.92771,0.21867,-0.7864 -1.0391,-2.4935,0.46429,-0.2863,-0.99699,1.48,-1.7314,1.1071,0.8766,1.5778,0.030175,-0.70246,1.0176,-0.058929,-0.1474 -1.1862,-3.3189,0.91085,-0.22479,-1.1573,0.66381,-1.3507,1.7681,0.44132,1.8965,0.57542,-1.2042,0.65608,0.30129,-0.84637 -1.6925,-3.3917,-1.5698,1.6237,-0.47552,-0.26739,-1.5263,-0.11012,0.38281,0.27323,0.28032,-0.76354,-1.0361,-0.83855,-0.68882 -1.4449,-4.1269,0.071414,1.0615,2.4431,1.7254,-0.19859,1.2674,-1.1643,-0.69577,-0.092384,-2.3393,0.34103,-0.33624,0.49516 0.47732,-3.0498,-1.6077,2.1243,0.42663,0.48528,-1.3653,0.50372,0.0056823,0.69885,-0.63844,0.52605,0.66524,-0.95798,0.98493 -0.21024,-2.785,0.85807,-2.1636,-2.5291,0.0079605,-0.45796,-1.125,-0.090255,1.4425,-0.85121,-0.26481,-0.7087,-1.02,-0.42949 -1.084,-0.97049,1.0511,-0.56709,-0.51104,-1.8507,1.2668,-1.9388,-0.85596,2.4748,-0.26308,0.14168,0.62342,0.84471,0.13803 1.0532,-3.6332,-1.4467,0.46245,-0.90845,-0.18792,1.2673,-0.91447,-0.59355,0.26505,-1.8865,-0.17077,-1.2435,-1.8251,-1.8558 2.8672,0.85526,1.1765,0.022916,-0.50001,-2.8087,2.5684,0.76529,-0.70242,-0.14055,-3.115,-0.10766,-0.015518,1.2151,-1.1473 2.8683,0.98882,1.6425,0.45288,0.57608,-2.7855,2.6211,0.61674,-2.1934,0.65292,-2.8355,-0.95214,0.097424,0.92493,-0.1347 1.824,1.3981,2.1466,1.3783,1.9339,-1.6395,1.357,-0.015636,-2.1412,1.2616,-2.0679,-0.51326,0.79875,0.84018,0.026327 2.7333,1.2706,0.99991,1.5814,1.1227,-2.4917,1.4961,-1.0752,-2.3894,0.13268,-1.4203,-0.95128,0.34334,0.89171,0.77578 3.5179,0.72163,0.48827,1.291,1.4927,-1.637,3.0529,0.45283,-2.2922,-0.4741,-2.8964,-0.78154,0.21749,0.48232,-0.59388 0.9972,0.12713,2.668,0.95647,0.73533,-1.9283,2.5905,-0.1399,-2.4877,1.5069,-1.5535,0.076985,0.30468,1.0047,0.94465 -0.87769,0.39457,0.77813,0.73589,1.8884,-0.86521,2.3341,-0.63241,-3.3445,1.6954,0.01222,-0.86642,0.83053,0.89557,1.2507 1.6862,0.81396,0.56158,0.87292,0.21079,-1.1596,3.2509,2.2082,-0.63186,0.57222,-3.5899,0.067869,0.13423,0.59515,-1.3404 0.89794,0.35702,1.8246,-0.12696,1.2859,-2.3697,3.2887,0.17904,-3.3373,1.193,-1.7634,-1.0973,-0.43496,1.4204,1.4451 0.68318,-0.37408,1.6337,1.5288,-0.87237,-1.968,2.6127,-2.0828,-1.5753,0.78878,-0.8593,-0.34499,-0.38599,0.18424,1.0319 -1.793,-2.1178,-2.6548,-0.89918,-0.21942,-1.8466,-1.8903,0.80553,-0.85732,-1.1439,-0.70262,1.2997,-1.0409,-0.77599,0.46148 -0.37896,-3.3345,-1.4909,-0.2115,0.91788,-0.67428,-2.0768,2.6405,-0.6858,0.09365,-0.8867,0.73108,-1.0512,-0.78224,0.8557 -0.65464,-3.2355,-1.5682,-0.66557,1.1885,-0.33402,-2.1578,2.8898,-0.56932,0.074744,-1.479,0.51331,-0.65675,0.33172,1.624 -3.769,-1.1569,-2.1846,-0.87188,0.070141,-1.2087,-0.70944,-0.69769,-0.75921,-1.2913,0.50622,0.17594,-0.33343,-0.59755,-0.77016 -2.9705,-0.74181,-2.7704,-0.88258,0.69737,-1.5108,-1.8469,0.10086,-0.21268,-1.3149,-0.20018,1.8343,-0.99129,-0.32141,0.58986 -1.7882,-4.0134,0.83424,-1.2066,1.053,0.37851,-2.9467,0.86481,-0.8207,0.89907,0.31401,-0.0035362,-1.1865,-0.080291,-0.48156 -1.2944,-3.6141,-1.0884,-0.64635,-0.65568,-0.54926,-3.1163,0.793,-0.99721,0.045045,-0.57977,0.72661,0.23391,-0.92023,0.89755 -0.48029,-2.2038,-2.2262,-0.6837,0.64533,-1.551,-1.7279,1.993,-1.6291,-0.33268,-1.2611,0.73394,-1.2382,-1.4907,1.1372 2.8357,-1.7845,-2.3337,-2.462,-2.3052,-0.10014,0.23203,1.7782,1.7022,-0.20737,0.92767,0.86196,0.23748,-0.16286,0.39087 4.5977,-2.4013,-1.2368,0.43034,-0.54613,-0.67549,-0.13896,-0.41672,1.2208,-0.56944,0.06562,-1.3826,-0.82729,-0.44521,-0.30208 2.7707,0.55763,-0.63488,1.1201,-1.5971,-1.6213,-0.29935,-0.5366,1.5044,-0.49152,-1.2593,-0.98323,-0.32441,0.76415,-0.32393 0.30434,2.8976,-0.46665,-0.15302,-2.13,-1.5031,-0.9665,-0.42007,-0.20312,-0.83738,-0.81175,-0.16684,1.0658,1.0555,0.089385 0.16904,1.8909,0.82267,1.1431,-2.5513,-1.8631,-0.15521,-0.54048,-0.062702,0.26063,-0.89144,0.4009,-0.18847,1.0184,0.92801 2.9912,0.29862,-0.33777,-0.32944,-2.1644,-1.6813,-1.0821,-1.0459,1.4451,-1.1168,-0.42137,-0.81071,-1.0174,0.040951,-0.60057 2.3855,-0.11974,0.079202,1.1982,-2.1956,-1.5885,-0.20217,-0.23188,1.473,-1.5226,-1.6522,0.34664,-1.2392,-0.61369,-1.3667 0.94219,2.4483,-1.5238,1.0452,-1.4329,-0.69984,-0.76224,-0.20431,0.94266,0.78117,-1.6,-0.88599,0.63976,0.64049,-0.12119 2.0022,1.0248,-1.2652,-0.23109,-2.3454,-1.0532,-0.745,0.32888,1.6595,-2.1005,-0.49781,0.15856,0.053578,0.73477,-1.1049 3.4903,-1.4075,-1.7822,-0.46613,-0.26264,-2.2763,1.3204,0.090332,2.4141,-1.2013,1.2648,0.73484,0.18477,0.85224,-0.47357 4.2447,-1.1882,-0.45766,-1.2762,-0.50111,-2.1718,0.011642,-0.05856,1.5178,-1.649,0.64218,-0.75126,-0.85319,0.60486,0.22299 2.2939,1.5312,0.064033,0.20966,-1.2029,-2.4339,-0.53183,-1.7882,0.67624,-0.73263,-0.82067,-1.1819,-0.46585,0.74012,0.14654 3.9279,-2.4083,0.49548,1.1998,-1.0956,1.179,-0.57383,0.81203,0.10556,-2.4853,-1.4101,-0.51423,-0.71189,-0.58307,-0.40566 2.9143,-0.63293,1.465,0.044217,-2.3742,-1.3334,-0.73305,0.046632,0.079992,-2.431,-0.67899,-0.64148,-1.6262,0.53538,0.40309 4.8187,-2.0355,-0.75939,0.11311,-0.7772,-1.0715,-0.037798,-0.23928,1.5018,-1.5939,0.060853,-1.0784,-0.9315,-0.25354,-0.81939 4.0162,-3.1002,-2.124,0.12226,-0.38865,1.7218,0.75201,-0.46223,0.071433,-2.0513,0.31095,-0.57397,0.32905,-1.2256,0.3029 0.75818,0.65279,0.82834,2.0461,-1.7721,-0.2904,-1.4831,-1.8088,-0.1493,-0.6708,0.34125,0.2243,-0.63814,-0.07684,0.44554 2.7311,-1.6695,0.94608,1.7317,-1.7538,0.51702,-0.38622,0.64328,0.3671,-1.4948,-1.8671,-0.38084,-2.4726,-0.91914,0.1695 3.2197,-0.56653,-0.64567,-1.2755,0.50803,-2.3769,0.97101,0.97399,1.9512,-0.99783,0.54096,0.32074,0.26525,0.86662,-0.3655 2.6954,-0.3053,0.85518,-2.0555,-2.7134,0.15927,-0.8586,2.4491,-0.62981,-2.692,-0.47041,-0.24937,-1.0018,0.17864,-0.40605 -0.08248,-2.5142,1.5324,-0.70624,-3.2137,0.19893,1.1516,1.8233,0.88906,-0.3576,-0.93489,-0.018561,-2.0199,-0.70327,-0.8308 0.60146,-2.8749,1.5777,-2.395,-2.689,-0.99898,1.5275,1.0783,-1.5853,0.42463,-0.7297,-0.52731,-0.59462,-0.60519,-0.60304 2.609,-1.7688,3.1069,1.1364,-1.2466,1.1886,-0.3433,1.3541,-1.5186,2.1336,-0.59519,-0.50637,-0.31829,0.83106,-0.059951 -2.1445,-4.2351,1.618,-0.61054,0.2584,0.20238,-1.9729,-0.19623,-0.2068,1.7507,0.14795,-0.32704,-0.70247,-0.53241,-0.83334 -1.476,-0.8903,-1.537,-1.9136,-0.73199,-2.2959,-0.85316,-1.9638,-0.65268,0.047582,-1.5032,1.058,0.057238,-0.36471,1.1363 -1.3565,-1.8131,-0.088846,-1.0676,-1.3089,-1.9797,-0.412,-2.5594,-0.56875,1.2955,-0.84772,0.75702,-0.11794,-0.9382,-0.030077 0.42361,-3.0493,2.8494,0.32512,-1.7836,-1.182,1.3082,-0.28773,-0.91846,0.44225,-0.04271,-0.53914,0.11559,-0.16197,0.17058 -0.42145,0.058747,2.7658,0.8481,-2.5457,-1.388,-1.0492,-0.056928,-0.70445,-0.65093,0.31455,0.95583,-0.042126,-0.91936,-0.04182 5.1837,-1.7174,1.3572,1.4961,-0.41125,1.7927,-0.91779,1.1649,-2.0224,1.6273,-1.4465,-0.29526,0.41808,1.0973,-0.7211 -0.9637,-1.8007,2.2682,-1.6395,-1.9126,2.0716,-0.34467,0.79345,-2.1015,1.4033,0.96292,-1.0078,0.72687,0.52127,-0.0099817 -0.8666,-2.606,-0.99905,0.95164,-1.736,0.97468,-1.2833,1.7555,0.24001,0.97699,0.32002,-0.97828,0.041464,0.32989,-0.30869 2.6287,-1.5125,0.67847,-1.5401,-2.6207,0.7105,0.66924,3.9227,-1.4631,-0.20608,-0.93839,-0.51836,0.59104,-0.033868,-1.8341 1.039,-0.73061,0.85286,-0.24105,-2.8242,-0.41373,0.66571,1.1053,1.3997,-0.71086,-0.82072,-0.5629,-0.45486,-0.043524,-0.51483 0.15723,-1.8865,0.31075,-0.74854,-2.731,1.6535,-0.32899,-0.48252,-0.40861,-0.72725,-0.49549,-1.28,1.2128,-1.4413,-0.87634 -1.7037,-0.72971,-2.4298,-0.031804,-1.3601,-1.8628,-1.0269,-1.489,-1.1559,-0.63857,-0.52683,1.4444,0.84757,0.25935,1.3247 -2.0036,-1.3977,-2.9099,-0.42443,-0.68992,0.51064,-1.3697,0.64325,-0.77839,-1.2202,-0.8769,-1.1873,-0.82295,-1.6636,0.9733 -0.86,-1.8429,-1.4731,-0.76203,-1.321,-1.8897,-0.90097,-1.7505,-0.95913,0.20676,-1.0012,2.0954,0.18264,-0.33312,0.54331 -1.3752,-2.0317,1.686,0.63848,-1.8397,-0.36498,-0.66723,1.2267,0.14928,0.029663,1.5918,-0.88875,0.013159,-0.25212,-0.52859 -2.3483,-2.0875,-2.2844,0.52214,0.58332,-2.487,-0.88803,-0.055369,-0.39764,-0.68021,-0.31706,0.66847,-1.4302,-0.60818,-0.92894 -2.083,-3.2165,-1.6611,0.00693,1.0013,-2.3149,-0.98184,0.50104,-0.92976,-0.51778,0.36782,1.1921,-1.443,-0.32749,-1.1739 -1.5975,-2.354,-2.6127,0.46554,0.4819,-1.1911,-1.4679,0.48182,-0.26189,-0.64184,-0.9667,0.52275,-2.1293,-1.0083,-0.13851 -1.8973,-0.34873,-3.3112,-0.43426,0.69854,-1.9982,-0.16597,0.4099,-0.34674,-0.029635,-1.5084,0.24501,-1.0163,0.46605,0.040428 -1.7018,-1.8858,-2.7253,1.1512,0.21908,-0.3617,0.019499,-0.60895,-1.0894,-1.5534,-0.38765,-0.75451,-1.3827,-1.2323,-0.48755 -1.0409,-2.4881,-1.7402,0.30001,1.3167,-0.2234,0.32917,-0.27535,-0.75758,-1.4494,-1.1496,-0.99381,-0.88393,0.33545,0.57049 -1.6968,-1.6002,-2.4144,0.83058,0.22464,-0.56487,0.36099,-0.59606,0.43441,-0.9925,-0.68004,-0.7054,-1.5426,-0.55042,-0.56056 -1.6874,-2.5378,-2.0908,0.50946,-0.3175,-0.61694,-1.0664,0.40345,0.49728,-0.41005,-0.52754,-0.86542,-1.9302,-0.96857,-0.80972 -1.155,-2.4698,-1.2951,1.122,0.23429,0.40787,0.26584,0.45623,0.1277,-1.1501,-0.1641,-1.8885,-1.8056,-1.0883,-0.2013 -1.6467,-2.7251,-2.9985,1.6321,0.097672,-1.0796,-0.84483,-0.31435,-0.66595,-1.2565,-0.4356,-0.15398,-1.9983,-1.1412,-0.06978 -2.1246,-0.85613,-3.2315,0.25487,0.94239,-1.7422,0.68904,-0.8051,-0.38158,-0.58013,-1.8568,-0.0048157,-1.0656,0.35002,-0.031613 -0.14377,-3.4349,0.55148,0.95896,-1.1787,-0.89731,-0.46526,-1.9288,-0.39655,1.4715,0.16525,0.0023819,0.1525,-1.4199,-0.82265 -0.075783,-1.9234,-0.2791,2.2682,-1.3877,1.1351,0.85696,-2.1216,-0.70551,-0.83603,0.17966,-0.99384,0.83871,-1.6442,0.54431 -2.0171,-2.5332,-0.55745,0.063398,-0.76979,-2.1577,-1.4592,-0.6224,0.16781,0.52577,1.0923,0.6395,-0.3709,0.10491,-0.68029 -1.4806,-2.7099,-0.1919,2.248,1.143,1.7554,-0.34467,0.90574,-0.17179,-1.0989,0.77211,-1.7215,-1.9157,-0.86628,0.13452 0.72876,-3.5733,1.1374,2.2268,-0.15713,2.584,0.0034851,0.077563,-1.3978,-0.066131,0.62301,-1.1572,1.404,-1.4461,0.4529 2.5291,-3.4059,-0.62632,1.2835,-1.0419,2.2757,0.86134,-0.50559,-1.2388,-0.5528,-1.076,-0.74824,-0.30547,-1.7311,-0.4117 -0.26737,-2.1538,0.68921,2.9656,-0.41379,0.18453,0.64316,-1.6647,-0.90298,-0.23227,1.3254,0.22893,0.58013,-1.5487,-0.0089869 0.64547,-3.252,0.3252,1.7256,0.076982,1.7045,-0.88302,-1.1011,-2.2051,-1.0516,1.3116,0.053996,1.3995,-2.0398,0.61865 -0.98177,-2.6526,-2.794,1.454,-0.76317,-0.0091298,-0.75947,-0.97087,-0.99671,-1.6284,-0.52161,-0.012691,-1.1154,-1.2304,-0.26943 -0.3868,-1.933,-2.7732,1.2728,-0.36321,-2.9163,-0.33659,0.73338,-1.3043,-0.71727,-0.33052,1.7227,-0.54468,-0.84866,-0.27878 -3.248,-1.4865,-2.6266,-0.89441,-0.2689,-1.6977,-1.0245,0.30314,-0.067965,-0.63702,-0.54903,-0.13383,-1.5804,-0.67649,-0.36725 -0.044072,-3.3069,-1.4486,0.83338,-0.15776,0.36313,-1.4406,-0.095111,0.30577,0.76519,-0.84414,1.7308,0.4945,-1.1344,-0.30698 -0.89223,-3.9355,-0.93113,1.4721,0.77437,1.3481,-1.7783,0.23008,0.64552,0.37712,-0.73786,-0.45102,-0.27788,-1.2736,-0.041609 0.54444,-1.9673,0.53781,1.9248,0.060506,-0.46211,1.3701,-0.65578,-2.1024,-3.1343,0.44334,-0.084764,2.2852,-0.63978,0.15782 -0.012358,-0.74601,1.8526,1.933,-0.86511,-0.58376,2.0181,-1.9687,-0.085079,0.68463,0.33853,0.13322,0.079072,-1.0804,-0.027926 -0.064755,-0.12414,1.3364,1.8823,-1.7674,-1.1298,1.5263,-1.5191,0.7055,0.5522,-0.29179,0.32958,0.9061,-0.64523,-0.15645 -0.91816,-2.26,-1.4946,2.5266,-1.0975,-0.36316,0.74027,-1.4002,-0.21184,-1.1075,0.43028,-0.89262,0.18943,-1.3319,-0.35984 -2.0355,-1.892,-2.3538,1.5108,1.2152,-2.4156,-0.35448,-0.88967,-1.0718,0.068455,-0.41671,0.54977,-0.18341,0.030209,0.15594 -1.5433,-0.83923,2.4521,0.61869,-2.3488,-0.31388,-0.96877,0.79633,0.18019,0.019924,1.9177,0.38595,-0.85799,-0.31845,0.033834 -3.3135,-1.7541,0.73691,-1.4014,-0.2976,-1.5693,-0.63117,-1.6651,-1.2816,0.64247,1.632,0.46527,-0.67022,0.34096,-0.7963 0.25527,1.6449,-1.5531,-0.58462,0.58572,-0.032772,-0.69759,0.86124,0.0076556,2.6099,1.6354,0.82098,0.54343,-1.0868,0.92091 -2.4819,-2.4435,1.1588,-3.1097,0.67342,0.27117,-0.8774,-0.24989,-0.093073,0.23278,-1.6617,-0.7482,0.82887,0.42322,0.98056 -1.3045,0.32975,2.2495,1.5829,0.12187,0.11746,-0.28054,0.77497,2.2137,-0.24199,0.59732,0.61054,-0.6934,-0.70587,1.3966 2.9415,0.72373,1.6121,1.5723,-0.083271,2.077,-0.52483,-1.3511,0.32156,-0.89809,-1.1703,0.14704,-1.3935,-0.23543,0.31007 -4.2349,-0.8794,-0.26988,-2.057,1.4953,-0.42373,0.053822,-0.3014,-0.51067,-1.5706,-0.21381,-1.5418,0.2588,-0.75662,0.64839 2.1304,0.2571,2.3465,0.22798,0.70905,-0.14975,-0.87297,1.2761,2.2538,-0.55157,-0.91903,1.1057,0.82013,-0.25439,0.55044 -0.11243,2.0423,-1.34,1.9818,-1.066,1.6243,-0.59105,-0.56438,-0.337,0.2086,-0.71863,0.1951,-0.60553,1.5718,0.32165 -2.9605,-1.1705,-1.9111,-1.2093,3.2575,0.34751,-0.88247,-1.5509,-0.28977,-1.9163,-1.4489,2.1754,-1.236,0.39669,0.80606 -3.7021,-0.068624,-2.6621,-1.6225,0.8849,-0.57245,0.29827,-0.073277,0.11021,-1.518,-0.60709,0.16658,-0.50814,0.17167,0.13115 -1.9531,-1.4035,-3.0179,0.047861,-0.64968,0.45427,-1.5312,0.13454,1.1309,-0.33735,-1.0789,0.8943,-1.1201,0.59976,0.2586 4.0644,1.248,0.53445,-0.88905,2.4986,-0.19456,-0.23471,-1.6606,0.57997,1.2218,-0.54223,-0.088765,-1.2868,-0.43004,-0.96908 3.4423,0.4575,-2.5125,-1.7738,-0.35482,0.83245,1.7079,0.33509,1.1963,2.3496,0.38669,0.80995,-1.0943,0.35861,0.22097 2.3413,0.93779,0.68691,0.65901,0.29952,0.6212,-1.4764,-1.2269,2.1779,0.099851,-1.3067,0.13562,-0.22753,-0.6295,-0.52057 0.29164,4.1006,0.49331,-0.61908,0.18371,1.3658,-1.5642,-0.54616,-1.8066,-0.70708,-0.11771,-0.3302,0.39979,-0.56077,-0.67597 0.60507,2.5556,0.78738,1.361,1.3257,-0.48729,-1.2425,-1.4065,0.71545,0.72852,-0.81149,0.58541,-0.3362,-0.97516,-0.23657 -1.5762,0.24937,0.33368,2.5562,-0.19618,0.90698,1.0732,-0.45919,1.6089,-0.4564,0.48679,0.56142,-0.18077,0.034503,0.91936 0.83955,2.3044,-1.4613,1.3274,1.5404,0.25499,-0.62544,-0.70529,0.39174,1.9555,0.25511,-0.24037,0.57732,-0.19464,-0.38059 2.6359,1.8013,1.2163,0.22191,-0.12229,0.1829,-1.7239,-1.1247,1.4135,0.39261,-0.65144,-0.14783,-0.19981,1.813,-0.50161 2.4477,0.72702,-0.86082,-0.29481,0.20253,-0.11326,2.2075,-0.21896,1.2593,-0.00070545,-0.7631,0.67772,-2.3922,0.94093,0.079939 0.3627,-0.07439,1.5241,2.3577,0.92055,1.4052,-0.35942,-0.14608,0.66534,-0.35418,0.051211,0.60783,0.43789,-0.083597,0.3799 1.7927,2.8494,-1.5789,-1.0161,-1.0276,0.39275,-0.60569,0.81791,-0.55593,-0.21607,0.077628,-0.88067,-1.1089,0.4914,-0.14841 -1.8421,2.7511,2.114,-1.004,0.43836,0.82502,0.24872,-0.42587,-1.0519,-0.74991,-0.38044,0.68771,0.10452,0.18292,0.084417 0.87627,2.0835,-0.97843,-3.6443,2.2069,-1.1737,-0.35209,1.5565,-0.70548,1.4494,1.757,-0.22375,0.7947,-1.7684,1.3313 3.5668,1.2211,-1.6513,-3.8777,0.77659,-0.90809,0.51397,1.2963,0.30311,1.6931,1.5106,0.02004,-0.51584,-1.5199,0.75156 -0.0080462,3.7279,2.3434,-0.43761,1.3794,-0.96378,-1.3242,-0.31352,-0.44409,0.31832,0.55461,0.30016,-0.95789,-0.07774,-0.36926 2.2681,1.3234,-0.1123,0.75037,0.29462,1.9637,-0.39559,-0.99051,0.82078,-0.5952,-1.1617,-0.70905,-0.34881,0.18956,0.15161 2.6079,0.82955,-0.18976,-1.4885,-0.25561,-0.64861,0.12948,-1.4386,0.54856,0.56903,0.78611,-0.28564,-1.3935,2.3718,0.67123 1.1706,2.9322,2.1224,0.2006,1.2236,-1.1367,-1.4776,0.50665,-0.30528,0.64778,-1.0147,0.51191,0.61081,-2.218,-0.89359 -0.23717,3.5604,-1.7304,-0.59968,-0.21897,1.4332,-1.2222,0.79212,-1.8919,0.76598,0.27015,-0.65018,-0.075697,-0.057292,-0.66809 0.50508,0.41112,2.8615,0.52498,0.027182,0.63481,1.5484,-1.388,1.2877,-0.13167,-1.7121,1.2933,-1.8941,0.0057145,-0.035983 4.2009,1.1252,-1.3102,-1.744,2.5179,-0.25158,1.2356,-1.2048,0.39629,0.50192,0.3845,0.79337,-2.4992,-0.12347,-0.84717 -1.6865,-1.3929,2.3206,0.98874,0.99505,0.56036,0.27453,0.55378,1.9234,0.15767,0.75538,-0.34063,-0.22637,0.26507,0.33951 2.9558,0.40388,-0.90127,-0.097835,1.7488,1.6847,0.21773,-2.579,0.7034,0.92449,1.6192,-0.46296,0.26388,-0.21098,1.5261 1.8637,2.5292,0.39734,0.70714,2.8819,0.75741,-1.0721,-2.2725,-0.79123,0.71872,0.077219,-1.435,-0.013935,-0.82952,0.27255 2.1325,-0.28854,2.98,0.92633,1.1757,1.6435,1.8308,-0.54682,0.64705,-0.22879,-1.2419,0.64974,-1.8641,0.14466,-0.21155 -2.6861,1.5954,-2.1215,0.19819,0.55535,2.1359,1.7703,0.45231,-0.42415,1.0301,-0.43261,0.52655,-0.75026,-0.68917,-0.70921 0.57457,3.2631,0.03768,-1.5857,1.1031,-1.1599,-1.7847,0.17709,0.028849,-0.57869,0.31093,-0.86185,1.1425,-1.6286,-0.3713 3.2824,1.8974,-0.22743,-0.42776,1.4541,-1.0984,0.17364,-2.1244,0.17446,1.6324,0.13017,-1.7045,-1.3876,0.19858,0.2002 -0.0543,2.4314,2.5048,-0.095894,-0.38411,-0.96727,0.52345,-1.0813,-0.27306,0.54476,-1.0261,0.623,-0.00056579,0.57784,-0.18657 -1.9445,3.0868,1.3048,-0.65325,-1.3221,0.41992,0.66337,0.39314,-2.6403,0.3087,-0.13701,0.14758,-0.8487,-1.4079,0.62087 -0.89813,-0.7463,0.43083,1.4423,-0.79401,2.2566,1.2817,-0.18642,1.8425,-0.91706,-0.34624,0.22423,0.91177,-1.0225,-0.11959 0.95501,2.9432,-0.48174,0.49036,0.73147,0.71754,-0.60132,0.21818,0.28952,1.693,-2.2694,-0.18209,0.89219,-0.95253,-1.258 -2.4587,2.1532,0.73433,0.37947,-0.20077,-0.52692,1.2489,0.26491,-0.37732,1.3282,-0.19391,0.83973,-0.38845,-0.58048,1.0963 0.69479,4.0397,0.91453,-0.9592,-1.0634,0.0081115,-0.2431,-0.56873,-0.70954,-0.39943,-1.1901,0.65513,-1.0356,0.38626,-0.24848 -3.1239,1.4498,-1.2033,-0.96071,-0.35316,0.91139,1.0557,-1.3167,-0.76971,0.9829,1.206,-0.21779,0.3526,-0.11823,-0.77184 -0.36646,2.6035,0.056753,1.9274,1.1162,0.098712,-0.16915,-0.17503,0.98355,0.17094,-0.076531,1.678,-0.54286,0.034275,0.13386 -3.9672,0.38125,0.94174,-1.1181,0.67985,0.11965,0.42335,-0.33938,-0.59217,-2.4454,0.58317,0.58448,-0.17433,1.4263,-1.0977 3.3262,-0.14314,0.0097896,-0.011133,1.5072,1.232,-0.77011,-1.5232,1.6264,0.13659,-0.14137,-1.0693,-0.066921,-0.59652,0.62235 -1.3967,2.0307,0.15678,0.74319,-0.96928,1.602,0.49387,-0.10867,1.3214,-0.50513,0.5213,0.40536,0.75949,-0.87614,0.76429 1.5082,2.0418,-2.039,-2.1008,-0.89371,0.075986,0.41022,-0.56212,-0.23996,0.11936,0.58546,-0.52638,-0.19068,0.95211,1.211 1.6177,3.5547,0.34988,-1.0235,0.057759,-0.04828,-2.1819,-0.89376,-0.11448,0.46098,0.47865,-0.22736,-0.28904,-0.22087,-0.46663 1.0145,0.88712,0.72605,0.081105,0.86289,-1.737,-1.3296,1.9337,1.2736,-0.81707,-0.42954,0.46716,1.4896,-0.38395,0.75062 -1.4614,1.065,-0.52324,-1.0887,-0.73879,0.74504,1.1299,-1.4115,0.44481,1.4361,0.096949,-0.12301,-0.98928,-0.85266,0.38184 2.2532,2.7606,-0.47109,0.56129,0.34838,0.0025859,-1.251,-1.2838,0.21283,1.6436,-0.89575,-0.50722,-0.36694,-0.46813,-0.91316 5.3819,-0.41039,-0.40118,-1.5076,2.6678,0.90117,1.1004,-0.89837,0.25595,-0.86495,0.5237,0.98306,-1.568,0.32689,-1.7234 -1.3088,3.6075,-1.2758,0.33026,0.58692,0.54356,-1.2798,1.778,-0.073122,-0.034911,-0.43521,0.89067,0.03754,0.11298,-1.5805 0.017182,2.5543,-0.82643,1.8658,1.0662,-0.53276,-0.79975,-0.071689,0.15577,1.0406,-0.016833,0.12968,0.54846,1.1042,-1.3001 -1.8785,2.6669,1.4909,-0.18556,-0.34027,-0.01583,1.6238,-0.4,-0.70497,1.1218,-0.60306,1.4239,0.40221,-0.5626,0.3922 -1.9488,0.16904,-0.42958,0.20788,-0.24328,0.063539,0.68648,-1.6833,1.7974,1.6646,0.14627,0.028411,0.29805,-0.80761,-0.3724 1.4979,0.56435,-0.44628,1.8784,-0.35374,2.1914,-0.24798,-1.5316,0.017325,-0.84735,-1.7275,0.6081,-0.3028,-0.019185,-0.43457 -1.4576,4.0314,2.494,-0.50128,1.0235,-0.69114,-0.24624,0.79191,-1.4174,-0.22544,-0.51341,0.40329,0.18095,-0.24426,0.14473 -3.3763,0.93001,0.92155,-0.69039,-0.014198,1.3308,1.6751,-0.79171,-0.33665,-0.34416,1.0381,0.36812,-0.81808,-0.92937,-0.76778 -1.6456,3.6895,1.025,-1.1706,-0.28283,1.099,1.2843,-0.27001,-1.9654,0.53147,-1.0822,0.87818,-0.71474,-0.54295,0.13043 4.1279,2.3722,-0.24251,-1.0194,1.2451,-0.67236,-0.32278,-1.4045,0.97914,1.4945,-0.054254,-1.0158,-1.7625,-0.41191,-0.75713 0.55438,3.5249,-0.80666,-1.5394,0.6004,0.89457,-1.8142,0.25984,-0.94204,-0.35607,1.03,0.48859,1.1731,-0.86021,0.081867 0.13206,1.1049,-0.41304,2.2378,-0.51744,1.21,1.6128,-1.8377,-1.1702,-0.024701,-1.1405,1.1132,-0.086456,-0.30856,0.20693 2.4987,1.8878,-0.93901,0.87845,-0.32664,1.1513,-1.2443,-1.5305,0.86262,1.2909,-0.42749,-1.3634,-0.82547,0.98926,-0.12968 4.4005,0.088575,-0.42123,-2.4643,1.3072,-0.26383,0.42652,-0.41936,2.3692,0.25977,0.75657,0.62159,-1.3637,-0.74425,-1.1649 -3.054,0.81566,0.73408,1.0181,1.7578,-0.8062,1.9472,-0.3184,0.39517,1.4025,0.18946,0.22403,-0.56343,-0.82701,0.58668 1.2127,3.006,-0.35593,-1.3548,0.71342,-0.63962,-1.1725,-0.61155,0.91584,1.4756,-0.47213,0.035891,1.1588,-1.6342,-0.78764 4.0632,-1.5419,-2.0176,-0.60985,2.1929,3.5585,2.2169,0.36437,-0.95872,1.608,0.34207,0.9042,-0.9543,0.55215,0.085747 -1.424,-3.8111,1.4984,-1.8486,1.4812,-0.65083,-1.6295,1.1118,-0.10371,0.67317,-2.4614,-0.31277,1.4377,1.3151,0.91396 3.767,1.4591,0.12228,0.67709,2.4872,0.83269,-0.92303,-1.7461,-0.96665,1.5205,-0.2704,-1.41,-0.48498,-0.9346,-0.40023 4.0046,1.4411,0.5963,-1.7459,1.2011,-0.39159,-0.77213,0.64585,1.6995,0.32091,-0.24864,0.74328,-1.106,-0.063509,-0.96535 1.8425,3.7306,-0.8556,-1.3307,-0.32692,1.2183,-1.4881,-0.11694,-0.92765,-0.71713,-0.60612,-1.336,-0.18229,-0.94515,-0.37305 2.2663,2.983,-1.205,-2.4236,-0.18957,-0.47593,-0.83206,-1.3702,0.41884,1.1506,0.7459,-0.83432,-0.32699,0.35264,-0.071831 -0.56172,0.4559,1.5196,-0.19397,-1.6279,0.90919,1.3417,-1.6159,1.5407,1.3197,0.20715,-0.2421,-1.0245,-0.32015,-0.15558 -2.4719,1.6494,0.20395,-1.0305,-0.69489,2.0468,1.0995,-1.2351,-0.19005,-0.10226,0.81551,-0.53149,-0.2363,0.30425,-1.3047 1.1188,3.2138,-0.03004,0.20734,0.013726,-0.11393,-1.1165,-0.63781,0.87823,1.0044,-1.6677,0.35304,0.1044,-0.99045,-0.96134 -0.18992,3.069,0.76491,1.1882,0.098388,0.019395,-1.2846,-0.35493,0.87351,0.18778,0.50149,1.7063,-0.34396,0.96271,-0.36653 -0.54024,-2.1033,1.4646,-1.3075,0.7741,1.094,-0.035166,-2.3327,0.88718,2.4308,-1.5888,0.11849,-1.3395,0.2593,0.6497 -1.9578,2.3005,1.5316,-0.72526,0.23149,-0.12288,1.6124,1.1488,-0.69765,-0.94385,-0.49341,-0.94651,1.5137,-2.0014,1.3957 2.1527,2.9914,0.56083,0.11621,-0.28803,-0.10764,-2.1241,-0.98272,0.38581,0.8245,0.15542,-0.61434,-0.93345,0.69628,-0.088349 -3.7203,-1.0107,-1.5557,-1.3641,0.82145,-0.81306,0.27567,-0.80375,0.59878,-1.1514,-0.87965,-0.23371,-1.4627,0.846,-0.99447 -0.96842,-0.39873,-1.2466,0.30036,-1.6347,1.3415,1.7569,-2.1371,0.87763,0.27831,0.0042571,0.088137,-0.72486,-1.2739,-1.1834 2.9681,0.84512,-0.14536,0.68026,0.86245,1.8227,-0.43726,-1.3297,0.99758,-1.371,-1.2335,-0.53046,-1.4881,-0.71628,-0.73743 2.1547,0.73157,1.6676,0.14142,1.1598,-1.6727,-1.8168,1.3759,1.1907,-0.60863,-0.70651,0.024857,0.27142,-1.0784,0.49599 3.7182,-0.059781,-1.4624,-0.40681,0.56154,1.7909,0.89745,-1.6715,0.97109,1.2917,0.98268,-0.76626,-0.98504,0.32623,1.5284 2.9228,0.93034,-0.13912,0.033372,-0.19442,1.2718,-1.2288,-1.2736,1.6335,0.024374,-0.43005,-0.25838,-0.82617,1.5717,-0.5853 -0.5739,3.7032,-0.63467,-0.61916,0.88221,-0.2129,-2.5203,1.2567,-0.47408,0.10713,0.48755,0.13648,0.64046,-0.85174,-1.4263 -0.6421,2.9054,0.30957,0.56572,-1.517,0.87778,0.7556,-0.61341,0.10676,-0.129,-0.94058,1.0543,-1.328,-0.14483,0.85669 -3.5592,-0.13192,0.68244,-1.4998,-0.31381,1.6888,1.2791,-1.7244,-0.23956,-0.70838,0.64986,-0.09162,-0.42469,-0.30258,-0.32324 1.2204,2.8198,1.251,0.31721,-1.0971,-0.47364,0.85388,-0.20113,-0.39182,0.087397,-0.93889,-1.0293,-2.202,0.70876,0.48892 2.1528,2.1108,-0.59192,1.1872,-0.3787,0.72458,0.083514,-0.8528,-0.29085,0.038078,-1.0716,-0.62547,-1.4134,-0.13939,0.26869 -3.1191,0.37872,-1.6583,-1.8285,0.94077,-0.2853,0.49633,0.15046,0.45236,-1.6993,-1.2752,-1.0362,-0.35006,-0.52789,-0.20595 -1.2972,3.1837,0.75396,1.2013,0.23963,-0.12808,-0.21675,0.088807,0.54195,0.5505,-0.5687,2.0449,-0.13647,0.31607,-0.26958 -0.82397,3.3747,1.0051,0.86131,0.67339,-1.0895,-1.1947,1.8371,0.45423,-0.11085,-0.090646,0.55149,0.063789,-0.77235,-0.10794 -2.1626,4.0855,-0.22982,0.035006,2.1072,0.92255,-0.55775,2.0849,-1.7137,-0.43173,-0.64538,0.11358,-0.70984,-0.40798,-1.4824 2.4007,-0.57642,-0.62623,0.6375,2.5835,1.3755,-0.7048,-1.0802,0.87714,-0.57449,0.095017,0.286,1.9759,-0.71872,0.26175 -3.2151,1.1467,-0.22605,-0.81206,-0.19373,0.69535,0.90199,-0.97953,0.91925,1.6016,0.63238,0.12252,0.58505,0.34844,-0.77793 -3.3708,-0.76946,-0.52526,-1.5326,0.9694,-1.5933,-0.97275,-0.91416,0.67683,-1.0379,-0.40804,0.28166,0.81651,0.34296,0.89636 1.6029,3.0172,-1.7427,-0.7824,-0.77585,0.83381,-1.443,-0.70179,0.069937,0.93964,0.52859,-1.066,-0.63369,0.38021,-0.93688 3.4737,0.80666,-0.6145,-0.95362,-0.048312,0.87846,-0.92595,-0.84035,1.7266,1.334,0.22402,-1.2147,-1.3079,0.89758,0.078896 -0.23694,0.98354,2.043,-0.93346,-1.3661,0.49362,0.14189,1.1,1.2626,-0.047425,-0.64225,0.16554,0.28505,-2.2523,1.2977 0.64656,1.6261,-0.46354,1.1796,1.4154,0.5881,-0.80255,-2.7473,-0.10995,0.31211,1.092,-0.57531,0.15433,0.24238,0.091966 1.4985,2.5702,-0.81064,-1.0169,0.32283,0.71115,-2.1018,-1.0748,0.53051,1.3284,1.8266,-0.35821,-0.51071,0.92101,-0.58558 -0.0022253,-0.86284,3.0759,0.11594,0.30883,-0.35605,1.084,1.537,1.5134,-0.081475,-0.80231,0.037105,0.4857,-1.1645,0.61763 2.1088,1.4061,-0.90583,-3.0188,-0.16636,-0.52756,1.6496,-0.1265,-1.3719,1.277,-0.40152,1.0777,0.22284,1.2213,1.2699 3.5858,-0.52996,0.51435,0.0072274,3.3317,-0.049024,0.063032,-2.2063,0.82945,0.5621,1.8818,-0.089189,0.51704,-0.3292,1.1471 0.16842,2.0914,1.4791,-1.0957,-0.569,1.1585,-0.45387,0.86159,-0.48945,-2.2415,0.040412,0.21282,0.80302,-1.8179,1.8375 0.70634,3.7746,0.4276,-0.21943,-0.1765,0.31905,-1.7798,-0.6114,0.19976,-0.097635,-0.22943,0.3984,0.23309,-0.2701,-0.41607 -2.1873,-1.3473,2.7843,0.39892,0.29695,0.69015,0.45437,-1.188,1.5839,0.7599,0.71216,-0.20089,-0.43749,1.1605,0.20151 0.49659,2.1611,-1.3398,1.0475,-2.3304,1.9049,-0.75488,-0.076449,-0.59866,-1.7644,-0.34967,-0.81078,-0.38689,0.21881,0.20492 -4.5443,0.65259,-1.6054,-0.72204,1.8419,0.27694,2.4232,0.011887,-0.39707,-0.66911,-0.90725,-1.1386,-0.0086848,-0.10326,-0.97531 -0.83042,2.6575,1.522,-1.6132,-1.2483,0.29219,0.79308,-0.94488,-1.5801,0.20026,0.28202,-0.70857,-0.76811,1.4327,-0.27102 -2.3868,1.6224,-1.0543,1.9644,0.81169,0.73185,0.58739,0.909,-1.6734,0.37064,-0.24589,0.88163,-1.6767,0.060866,-0.57284 1.0087,-0.045594,-1.187,-1.523,1.0113,2.1198,0.72391,0.46698,-0.8324,-1.0446,0.88217,0.24375,-0.39454,1.0876,1.7871 0.61096,3.4058,-0.4871,-0.70781,-1.2984,0.015783,-1.2205,0.10239,-0.63493,0.80009,-1.509,0.036445,-0.30198,-1.1346,-0.671 1.4372,1.2834,1.1229,0.18738,-0.67701,1.7429,-0.21484,0.21957,1.4818,0.63447,-0.32096,1.3101,0.6923,2.1523,0.45129 1.7614,1.4976,1.9173,1.0146,-0.00212,-0.32612,1.2605,-2.0937,0.24083,0.16924,-1.0645,0.90208,-0.95821,0.54858,-0.5171 2.0889,2.4457,0.38085,-0.55402,1.2543,-0.95117,-1.35,-2.2574,1.2754,0.93035,0.79419,0.1805,0.37497,0.062622,-0.68924 4.007,-0.93234,-3.2407,-0.42877,1.6446,1.43,2.6356,-0.3085,-0.067249,-0.70997,1.6404,0.30816,-1.3932,-0.14313,0.22424 1.9375,1.6392,1.2132,1.8267,0.24017,0.23506,-0.76203,-1.7485,0.65891,-0.19668,-0.64959,0.67173,-0.31479,0.19361,0.25513 1.2446,2.7179,-0.052521,-0.25803,-1.6039,0.39915,-0.83451,-0.12859,0.081022,-0.022505,-0.81337,0.13,-0.33294,0.95896,0.64664 -1.0684,-0.12323,0.47722,0.034791,-0.89299,0.83174,1.0439,-1.0123,2.361,1.6889,-0.055476,-0.1683,-0.34865,-0.48609,0.50827 2.4485,1.6455,-2.1531,-0.0028679,-0.14676,0.023801,-0.089533,-0.54281,0.94332,0.7829,-0.615,-0.042838,-0.13067,-1.1516,-2.0609 -0.49775,3.1693,-0.21599,-0.18318,-1.8569,0.78938,0.70011,-0.26253,-0.68773,1.0361,-1.42,0.71151,-0.33562,0.11669,0.3695 0.90431,1.1332,-1.3475,1.1758,2.0495,0.78606,-0.86718,-1.8174,0.14978,-0.84307,1.0061,-0.56421,1.5561,0.096328,0.16454 -0.041764,3.8791,-0.37766,-0.20647,0.82874,0.53257,-1.1592,-0.75496,0.1964,0.84405,-0.36056,0.56747,-0.014105,0.11142,-0.80459 -3.8742,0.039589,-0.43129,-0.6252,0.97378,-1.3224,0.7287,-0.047969,1.0622,0.71528,0.2818,-1.0713,0.28443,-0.60976,-0.26921 -0.57765,1.7892,-1.8676,0.44869,1.824,0.41158,-1.4183,0.92639,0.27742,-0.63969,1.1118,-2.0036,0.75531,-0.72307,0.056297 2.5158,1.9692,0.92029,-1.2871,1.82,-0.51203,-1.9687,-1.0944,1.1268,1.1282,1.2273,-0.25716,-0.29548,1.424,0.17205 3.3373,0.59403,-0.3251,-0.26814,0.9279,0.61922,-0.35316,-0.84199,1.5044,-0.752,-0.50591,0.68235,-1.256,-1.3456,-2.3242 -0.85992,-0.60169,3.0155,-1.3713,-0.48483,1.0294,0.060444,0.93688,1.479,-0.11052,0.11416,-1.0709,0.65814,0.67761,1.0587 1.8083,4.0282,0.94982,-1.7972,2.0888,-1.2914,-1.5728,-0.48939,-0.61403,1.1258,1.2549,-0.35633,0.17859,-0.088548,-0.35898 1.4326,1.2311,-1.2079,1.7185,0.92475,0.22735,-0.86937,-2.9885,-0.93071,0.45158,1.2024,-0.18714,0.17365,-0.23552,-0.071503 2.3642,3.0253,-0.25547,-1.199,0.41671,-0.39605,-1.5786,-0.60386,-0.2842,1.5076,0.80968,-1.74,-1.507,0.16812,0.13565 -3.5934,1.6162,-1.5077,-0.50676,0.076385,0.70371,2.4529,1.1299,0.3451,-0.58223,-0.46181,-0.23132,-0.17449,-0.26921,-0.57113 2.5437,3.1608,-1.1867,-2.184,0.30703,0.61288,-0.90571,-0.88945,0.10777,0.16753,0.16196,-1.3047,0.60597,-1.6303,-0.49987 -0.98239,2.1399,1.9283,0.30818,-0.33926,-0.14353,0.053033,0.5966,1.2656,-0.31224,-0.10791,0.86367,0.91707,-1.4723,1.3201 -2.0962,0.7026,-0.38183,0.85541,-0.52779,-0.45368,0.99042,1.1124,2.2385,-0.43917,0.59918,-0.73629,-0.16768,-0.47348,0.50713 2.6675,1.4628,-2.1719,-1.4056,0.13668,0.62373,0.26129,0.11776,1.5398,1.3662,0.026117,0.016376,-0.015661,-0.98194,-1.3315 1.5372,2.2949,-1.1113,0.59323,-0.99844,0.11098,0.079819,-0.90342,0.72251,-0.17573,-1.6922,0.66415,-0.82801,-0.13423,-1.6247 2.5118,2.362,-2.3607,-3.5562,0.76511,0.9633,0.22732,0.32502,-0.41448,0.14461,1.2363,-0.59264,-0.47085,-1.6284,0.18273 2.5883,-0.96269,-0.98749,-0.51388,2.7231,1.8708,1.0916,-2.4377,0.15141,-0.10076,0.61729,1.1272,0.3068,-0.57297,0.61321 -1.6055,0.82909,3.1742,-1.5693,0.35658,1.9122,0.32488,0.35685,-0.030829,-0.16039,0.63569,-0.64054,-0.17735,1.5518,0.24408 0.57961,2.3845,-0.19081,0.50803,2.3836,-1.1334,-2.1147,1.0892,0.6185,1.7256,0.082149,-0.6475,1.0243,-1.6808,-0.5356 -1.8828,-1.1299,0.99052,-0.9724,-1.0598,0.40357,0.76068,-2.3187,1.6198,0.81722,-0.2172,0.26113,0.25474,-0.039812,-0.68393 3.7173,0.21544,-2.8996,-2.7749,0.78044,-0.43193,2.1066,1.98,0.36632,1.1177,2.1044,1.4341,-0.62221,-1.3061,-0.31907 -2.4124,1.6456,0.69101,-1.1655,1.6812,0.821,-0.10262,-0.85291,-2.3776,-1.6074,0.64382,0.09452,-0.27471,1.6908,-1.3468 -2.1368,3.4594,1.1991,0.032797,1.2363,1.8756,1.0224,0.5479,-2.5107,1.0489,-1.2092,0.028178,-1.2381,-0.34353,-0.12991 -0.24706,2.3442,-1.0882,0.54752,-0.19064,2.7035,0.14915,0.063528,-0.19268,-0.41042,1.2508,-0.13272,0.083048,-0.093012,-0.72827 0.85606,0.59998,2.9545,0.99343,-0.36354,0.77365,0.30228,-0.68005,0.88014,0.74681,-0.25647,0.53567,-1.6059,-1.4974,0.4567 1.8068,2.0848,-1.2189,1.8889,-0.0034494,1.0517,-0.67265,-1.4258,-0.47084,0.48032,-1.5178,-0.059734,0.078757,-0.84626,-1.0049 -2.7666,0.98372,-0.63054,-0.60049,-0.66878,1.0176,1.7744,-2.249,-0.40317,0.58555,0.32293,0.12556,0.98291,0.29805,-0.17593 2.2067,2.8605,-0.092549,-1.8901,0.43924,0.42921,-1.1361,-0.6822,0.27682,-0.84596,-0.089503,-0.83144,1.3256,-1.7316,-0.85386 1.9077,-2.3783,0.17863,-0.70025,3.0687,1.4867,1.8379,-0.71767,-0.81514,-0.057949,-1.1693,2.8806,0.38993,-0.3922,0.42715 0.085747,3.9577,1.3408,-0.86328,1.2,0.77096,-1.4728,0.21307,-1.4852,-1.5216,-0.15048,-0.18712,0.032583,-1.5592,0.059346 3.7293,0.061835,-2.6594,0.63031,0.5078,1.0483,0.52886,0.38705,0.44797,-0.034299,0.1411,-0.96714,-0.5405,0.40312,-0.68749 3.536,1.2781,-1.7279,-0.014994,2.458,0.21095,0.70004,-1.2618,-0.052517,0.45385,-0.47833,-2.0467,-1.4545,-1.7966,0.27062 -2.5489,0.8942,-0.34122,0.79491,-0.051089,-0.05738,1.3145,0.27618,1.6429,0.98397,0.71388,-0.046872,0.40082,-1.0733,0.046795 -1.9311,2.6932,-1.1343,0.20663,-0.42388,2.2368,1.6229,0.16291,-0.8172,0.54407,-0.57448,0.13021,0.20338,-1.0836,0.85159 2.6869,0.11679,-0.27266,0.97245,-0.68298,2.0351,0.38023,0.11553,0.78447,0.72343,-1.2126,0.8649,-0.055073,1.6758,-0.18308 1.62,1.0837,0.084368,1.6199,0.51521,0.36441,-1.1287,-2.5915,0.71293,-0.6259,-0.76301,0.82037,-0.0096008,0.18464,-0.76407 0.12869,3.5754,0.58883,0.49408,-0.60696,-0.23601,-1.0218,-0.7049,0.040351,0.72684,-0.41011,1.166,-0.47806,0.055136,-0.52411 -3.6889,-1.0706,-2.6279,-1.201,1.2786,0.0050967,0.11744,-0.68175,0.086624,-1.5774,-0.98725,0.086718,-0.22905,-1.1121,-0.5064 -2.0679,0.036478,0.61925,-2.4045,-0.027362,1.5793,-0.047058,-0.7132,0.033282,1.5544,-0.4887,-1.0575,0.71288,-0.047459,0.13194 0.72732,1.3213,-3.7817,-0.032375,-1.4846,1.9631,0.18028,0.79603,0.15443,-0.27994,0.44674,-0.78148,0.15775,-0.30461,0.82218 1.6524,4.0847,1.092,-1.7116,0.32508,0.52014,-1.0257,-0.65269,-0.80815,-0.84354,-0.44091,-0.18292,0.60304,-0.21055,-0.6267 0.22676,2.5244,0.58379,-1.6621,1.0566,0.67727,-1.248,-1.5086,0.029809,-1.4868,0.2584,0.49598,1.4343,0.41549,0.03503 0.54087,1.3545,1.9483,2.3378,0.75223,0.80195,-0.16943,-1.3226,0.29198,-0.24609,-0.32139,0.55854,-0.034167,-1.2403,1.3899 -2.2369,0.41968,1.6598,0.045494,0.17864,-0.56187,1.1726,-0.81752,1.502,1.7094,0.2131,-0.0033966,-0.042066,-1.4847,0.68918 0.82105,-0.64592,-1.687,0.48225,3.8147,-0.40746,-0.77601,-0.299,0.63198,-0.9145,1.9112,-0.019704,0.7605,0.064969,1.2773 3.9667,1.429,1.9039,-0.36556,1.1178,0.27037,-0.92509,-0.56674,1.0237,0.62023,-0.82455,0.86985,-0.45455,0.14499,-0.80271 -0.83065,2.9928,0.60475,1.3179,-0.12964,0.31332,0.089588,0.39519,0.01839,1.4178,-0.44873,1.365,0.8553,-0.053054,0.068852 4.1893,-1.7906,-1.2045,-1.4342,1.8617,1.182,2.549,0.64285,1.5393,0.74164,1.1058,2.2022,-1.2353,-0.50937,0.45886 3.2183,-2.8034,-0.97015,-0.86557,2.7755,1.5765,2.8189,1.8858,0.53009,1.1938,-0.55947,2.8781,-0.31688,1.21,0.028258 2.4689,2.1973,-0.46066,0.9693,1.1117,1.0299,-0.83323,-1.9606,-0.16535,1.1557,-0.93333,-0.69367,-0.16682,-1.1204,-0.98423 3.0375,1.465,0.21767,-1.6482,-0.47839,0.75283,-1.5378,-1.0188,1.435,-0.34973,-0.077792,0.35511,-0.10255,1.7172,-0.50579 -1.4059,4.1146,1.1989,-0.21012,2.092,-1.1226,-1.1918,2.0058,-0.67976,-0.88119,0.39839,0.31763,-0.53953,-0.022758,-0.58713 -1.8834,3.6134,-0.41178,0.38313,-0.2166,0.82968,-0.34323,1.2483,-0.63323,-0.082551,-0.34313,1.7768,0.17431,-0.40091,-0.71646 2.9788,0.51919,2.4993,0.57532,4.0504,-0.3324,-0.37673,-1.1238,-1.573,-0.039599,0.0041333,-0.69557,-0.50861,-0.8742,0.78005 0.013835,3.4787,-0.34302,-0.84377,1.4891,-0.95593,-2.5534,1.2904,0.61916,0.41428,0.30732,-0.25838,1.2109,-0.66969,-0.25814 2.3681,2.1525,0.45248,-0.10574,1.7653,-0.50284,-0.74296,-0.64358,0.44265,0.15769,-1.3611,0.58604,0.80633,-2.0392,-1.8856 -2.4827,2.963,0.66987,-0.24717,-0.69558,1.3044,1.426,-0.72197,-2.0493,0.015531,0.66418,0.79965,-0.31993,-0.66805,0.28188 -2.8409,2.1719,0.59374,0.44195,-0.035372,1.77,1.0663,0.66081,-0.18633,-1.0541,0.60129,1.2993,-0.58291,0.84369,-0.78685 -0.6134,1.1643,-0.66704,1.4164,-2.2352,2.0921,-0.68483,0.63612,-0.37591,0.36823,0.90986,0.33275,-0.95243,1.1994,-0.2124 -2.2969,3.1984,-0.37731,0.6521,-0.35916,0.61813,0.3259,1.5507,-0.042028,0.67911,-0.53906,1.6626,0.38019,-0.17561,0.19783 -1.5696,1.9847,1.8837,0.48154,-0.97842,0.64792,0.20579,-0.27771,1.1801,0.047559,0.55183,0.9291,0.81271,0.53599,0.39561 -2.8301,1.689,-1.3811,0.35787,-0.34225,2.1918,1.5765,-0.3842,-1.5116,0.38253,-0.03121,-0.30443,0.37435,0.97751,-0.62447 -0.46391,3.2674,0.72268,1.6063,-0.028387,0.15977,-0.82691,-0.34316,-0.011205,1.354,-0.14177,1.6131,-1.0796,0.57104,-0.52943 2.42,0.94569,-0.87496,1.3952,0.74458,1.5896,-1.3352,-2.1773,0.093857,-0.027681,0.24948,-0.6953,0.015294,-0.13298,0.15805 -3.9013,-0.60573,-0.80064,-2.0327,1.4135,0.8452,-0.13307,-1.2422,0.40113,-0.039265,0.59359,0.79308,-0.19899,0.94452,-0.68513 -0.049469,2.0934,-0.37732,1.9338,2.4795,-0.46566,-1.66,-0.050731,1.4916,0.56892,0.28747,0.077853,-0.61913,0.48645,-0.67753 3.0145,-0.41182,-1.7339,-1.2662,0.64621,2.5251,0.65036,-0.63971,-0.31867,0.85123,-0.073469,1.9571,0.24967,0.50622,-1.1868 -0.33387,2.6713,0.38751,2.0538,1.6849,-0.25301,-1.0189,-0.59193,0.98383,0.5391,-0.2293,1.2441,-0.79823,0.30908,-0.33445 -2.5715,1.6573,0.17428,0.058239,-0.066739,-0.55468,0.28739,2.4564,1.2959,-0.76146,0.60531,-0.18655,0.063185,-0.81494,1.3602 -0.10215,2.1871,-2.0519,2.1833,0.88759,0.18827,-0.45565,-0.39767,0.18726,0.6705,-0.2338,0.26573,0.44562,0.32171,-0.81197 -2.3218,0.33706,-0.087585,-2.2327,0.71839,1.0425,-0.55229,0.18068,-0.52642,0.63108,-0.68836,-0.76884,1.3786,0.4557,0.74132 4.2081,-0.14932,-1.3123,-1.1145,0.72017,-0.65657,1.0213,0.032174,0.41162,2.5629,1.0004,-0.61507,-1.5188,-0.46727,1.704 2.7674,2.1403,0.52608,-1.3723,1.5037,-0.97004,-2.1011,-0.025426,0.82115,1.6752,0.74451,-1.0645,-0.39687,-1,0.14362 -1.4661,3.7296,-1.7337,-0.34306,1.3403,0.71903,-1.76,1.9402,-0.9316,-0.8195,-0.080161,-0.61443,1.0001,-1.2489,-1.0644 -0.80225,-1.8812,-0.46507,-1.235,-0.73596,1.7037,-1.0014,-0.64343,-2.3217,-0.34823,0.39748,0.76764,-0.30566,3.3458,0.45643 -0.8123,2.3866,2.9537,1.3992,1.637,-0.99695,-0.23614,-0.43412,0.564,0.07007,0.013629,0.7048,-0.7009,0.20597,0.0024427 2.2122,0.41041,2.2198,-2.3422,2.3333,-1.9546,-1.0032,2.3575,-0.219,-1.4364,0.0011724,0.8311,0.37406,-0.76293,-0.13764 3.6217,0.57292,-1.4742,-0.74562,1.4271,0.63304,0.57207,-1.4163,0.27755,1.3238,0.84473,-1.5894,-1.8112,-0.70817,1.4543 -1.5948,-0.1539,-3.8864,-0.20492,0.50642,-0.063745,-0.36633,-0.049436,-0.025656,-1.5617,-2.1387,1.6664,-0.27661,-0.71075,1.3204 -1.4809,3.2524,0.78484,0.23384,0.060411,-0.60909,-1.2552,2.0308,0.1017,0.11766,0.12623,0.95091,0.4225,-1.2989,0.65883 -1.5463,-0.11255,1.869,1.4764,-0.54297,1.2203,-0.23513,-0.25857,1.4869,0.30407,0.37685,1.1851,-0.71182,0.92329,1.012 1.8031,1.7294,0.36039,1.4386,2.3233,-0.64413,-2.2466,-1.1883,0.027196,1.4948,1.0505,-0.63725,-0.36158,-1.0673,-0.50651 1.91,0.35656,-1.4374,0.96937,0.92814,1.3539,-0.57718,-1.4707,1.8543,-0.89659,-0.0056688,-0.46954,1.6445,-0.92377,-0.31296 -1.6199,-0.1966,0.98402,2.7515,1.5053,-1.1781,1.2612,0.80313,0.28623,-2.4548,-0.052198,-0.023582,-1.1174,-0.31883,1.5134 -2.6873,0.86369,0.79858,1.3296,1.4808,-1.5704,1.9993,0.52455,0.47367,0.73494,0.12478,0.052007,0.31789,-1.1978,0.73885 -3.7522,-0.10232,-1.775,-1.3422,0.37805,-0.30328,0.40259,0.64665,0.96135,-0.86501,-0.1506,-1.3134,-0.46123,0.33898,-0.6791 2.552,2.9678,-0.3409,-1.2028,0.47358,-1.1084,-1.2782,0.021376,0.25043,1.5335,-0.89508,-1.2338,-1.1779,-1.161,-0.89595 3.0616,1.1451,-1.7443,-3.7062,0.45686,0.88271,0.66302,0.4056,0.65474,0.734,1.4695,0.91126,0.096591,-1.5442,-0.39003 4.9908,-2.0897,-1.6492,-1.1824,1.0031,1.9252,2.5583,-0.58461,0.56852,0.036332,0.59589,0.69,-1.0243,0.80506,1.0749 0.11198,2.2107,2.103,0.22388,-0.35499,0.60711,-0.47577,0.68333,0.85582,0.48198,-1.3159,0.82339,-0.79753,-1.8656,0.66556 2.0469,1.3599,0.67672,-2.8479,0.72645,-0.0071108,0.95824,-0.91929,0.40111,0.72846,1.3272,1.6443,1.0101,-0.79667,0.31676 4.2423,-2.7457,-0.45869,-0.44623,1.5506,4.0834,2.6048,0.85768,-3.4845,0.70002,-0.69801,0.53014,-0.0032605,1.3138,-0.63076 0.066628,2.8802,0.2383,2.409,1.1222,0.62419,-0.51589,-0.19174,-0.38598,1.0321,-1.0112,1.0574,0.47327,0.010578,-0.73563 2.1783,2.2414,-2.6215,-2.0874,-0.28383,1.225,-0.41919,0.22491,-0.25299,0.062016,0.6945,-1.4612,0.093389,-1.4696,-0.3426 -0.41539,3.1855,-1.375,-0.37053,-0.53048,1.807,-1.5484,0.7038,-1.5075,0.55891,0.091641,-0.3843,-0.10941,-0.20556,-0.63263 2.296,2.4146,-0.38623,0.80835,0.79982,0.25456,-0.80169,-1.5149,0.59196,1.2734,-1.1225,0.10783,0.25589,-1.276,-1.6368 4.2097,-0.28915,-1.5514,-0.68063,1.2303,1.3052,1.4765,-2.3042,-0.52906,0.013539,0.74545,-1.609,-0.47328,-0.30957,1.6379 3.0096,1.6521,-2.5911,-2.1372,-0.74176,-0.38742,-0.14029,0.12738,1.2856,0.16808,1.521,-0.68264,-1.1502,-0.63748,-0.43207 -0.22396,2.0468,0.01136,0.48278,-1.6607,0.85318,0.86025,-0.27441,0.75408,0.90514,-0.71765,0.40486,-1.2624,-0.93292,0.93159 -2.8334,-0.17462,-2.284,-0.66732,0.29606,-1.1051,-0.28534,0.16465,1.269,0.062872,-0.12436,-0.49722,-0.29784,0.030946,-0.37302 4.4698,-0.90362,-0.40462,-1.6241,1.3251,2.2212,2.0633,-1.2627,-0.8706,-0.49825,1.0267,-0.14613,-0.021263,0.25728,1.6144 -1.6108,2.5231,-1.4374,1.4455,0.017651,2.5674,-0.12883,1.4712,-0.98358,0.16767,-0.46862,0.41583,-0.76361,-0.25064,-0.90186 -1.6788,0.40817,-3.977,0.028953,0.38109,-0.62765,0.019392,-0.30859,0.42065,-0.82542,-1.762,1.5376,-0.51922,0.66029,0.79974 -3.2173,0.70704,-1.858,-0.57671,0.61223,0.75419,0.66805,-0.011742,-1.3081,1.9424,0.33045,-0.45077,-0.75874,0.38235,-1.8282 3.4955,-0.69496,0.61557,0.2019,1.708,2.9191,-0.81943,-1.6851,-0.068612,-1.6562,-1.0747,0.3156,0.22811,0.10204,-1.3302 -0.33433,2.2014,-0.61942,0.91434,-2.213,0.75118,0.3296,-0.53185,0.8232,-0.38437,0.085336,0.52544,0.084648,0.48203,0.80725 -2.6822,2.745,0.046211,0.34792,-0.32003,1.796,1.379,0.21822,-1.3293,0.14949,0.44281,0.1857,0.22109,-1.6286,0.66127 -0.12703,3.0801,2.0463,0.46163,0.43026,-0.30802,-1.1867,0.28832,1.1028,0.40026,-0.57319,1.0594,-0.14151,-0.69009,0.55913 -0.75024,1.8019,1.6067,0.12266,-0.92745,-0.45135,1.2367,-1.8181,0.26841,1.3174,-0.30024,1.2905,-1.2728,-0.036531,-0.24646 -1.5089,2.7926,-0.93797,0.25255,-1.5186,1.6935,0.97799,-0.06166,-1.1498,-0.47098,0.091139,0.55731,-0.24277,-1.2756,0.41231 -3.16,0.44461,-0.94466,0.30904,-0.76148,-0.34963,1.3006,0.78682,1.4796,-0.66201,0.60144,0.28974,-0.43053,-0.085653,-0.18913 0.2505,-0.1499,3.2213,0.37048,1.1096,-1.0389,-0.2855,2.0025,1.2205,-1.6891,-0.08935,0.8778,1.5747,-0.63334,0.65562 2.779,3.5716,1.5748,-3.6435,2.1631,-0.85587,-0.4959,0.94436,-1.7163,-0.71462,0.79846,-0.79791,-1.1303,-0.89583,0.025045 0.38425,3.4882,0.85445,-0.75246,-0.17567,0.35091,-1.8988,0.44261,-0.5255,-0.074539,1.1405,1.2331,0.5161,0.10856,-0.16117 1.7769,1.4146,0.12244,0.81115,1.2718,0.36241,-1.2492,-2.0659,1.8379,-0.10302,-0.052177,-0.55584,0.0010033,-0.63521,0.30316 -2.1238,-0.41051,3.7499,-0.61373,0.58617,-1.5239,0.23389,0.81626,0.042228,0.16704,-0.61554,-0.73968,0.2077,-0.8434,-0.0034361 4.1869,-0.29679,0.86997,0.84873,1.4979,2.0138,0.62698,-1.8669,-1.0697,-1.8898,-0.56775,0.49028,-0.96832,1.3001,-1.2194 -0.064109,1.3191,-0.62841,2.09,2.7819,-1.1061,-1.5275,0.086723,0.26741,-1.7939,-0.15843,-0.64797,-0.41564,0.39479,0.27186 0.90025,0.48164,2.2681,1.1533,-0.78311,1.0021,0.68298,-1.0104,1.1176,-0.30574,-1.5208,1.5214,-0.49977,-0.68869,-0.036426 -1.1139,2.1888,0.56251,-0.30731,-1.2083,1.8357,0.8439,-0.12737,0.36936,0.74905,0.21996,-0.41477,0.73965,-0.32712,0.60318 -2.7082,-0.79771,2.875,-1.0461,1.6527,-2.3009,1.3301,1.4693,-0.61559,-0.16756,-0.154,-1.3273,-0.34244,-1.6345,0.55228 -0.00082902,1.2949,1.9617,1.8313,-0.3712,0.90693,0.80247,-1.6208,0.12764,1.4918,-0.48978,0.56367,-1.5705,1.0666,0.42473 -3.1068,-0.18139,-1.5209,-0.63228,0.69712,0.32397,0.030878,0.15356,0.19617,-2.4809,-0.1395,-1.4719,0.43579,0.5094,0.92686 1.781,1.574,1.4065,2.1533,1.4558,0.54105,0.48193,-1.9452,0.14844,-0.82237,-1.7597,1.2107,-0.18093,-0.53099,-0.82546 4.0975,0.076569,0.16762,-1.3556,1.5086,1.8136,2.7654,1.5685,-1.0335,0.31833,-1.0493,1.6451,-0.45984,-0.28003,-0.64665 -1.8672,2.002,1.3031,-0.2362,-0.76424,2.4715,0.49771,-0.56456,-0.59976,-1.1633,0.45294,1.2457,-0.47276,0.46989,0.43717 -3.5096,0.52136,1.7636,-1.8258,0.078903,0.84461,0.32211,-0.70304,-0.27251,-1.1718,0.83413,-0.79318,0.92826,0.28638,-0.33857 3.2079,-1.933,-1.0668,-0.36602,1.9806,2.473,1.6325,-0.39288,1.2016,-0.13164,0.77446,1.6256,0.13665,-0.50943,0.6666 -0.85008,-0.49708,1.307,-1.166,0.29209,1.0893,0.45115,-1.0722,0.49964,-1.921,-0.8168,-0.22458,1.5631,0.49953,-0.040439 0.35171,3.0213,-0.74584,-0.042754,1.7262,0.058629,-1.1405,0.070621,0.89257,2.1874,-0.49069,-0.39224,0.89798,-0.62071,-0.5008 0.017593,4.6593,-0.16282,-1.3119,2.0286,0.85859,-1.719,0.42668,-2.1436,-0.038414,0.59774,-1.1289,-0.01907,-0.56525,-0.92049 0.19109,3.1174,-0.25229,1.2517,-0.54598,0.22464,-1.2193,-0.40828,-0.13331,0.86821,-0.47373,0.74008,-0.87336,-0.37158,-0.19661 -0.43434,2.7182,-0.65369,0.63641,-0.2071,1.1808,-1.3375,1.0075,1.053,-0.052092,-0.18003,0.66585,1.0707,-0.82743,0.43755 1.9266,1.1032,-0.79101,1.1791,0.8351,1.28,-1.1926,-2.6794,0.084775,-0.61953,0.48213,-0.1308,0.32441,0.00064594,0.038928 -3.1128,2.0402,0.75289,0.68288,0.0061933,0.32858,1.6202,0.42277,-0.62688,-0.19431,0.88977,0.95162,-1.4744,-0.090415,-0.96007 -0.003763,1.315,-0.73207,1.4209,-0.57221,2.2664,0.38838,-1.1807,0.23417,-0.72433,-0.91316,0.67716,0.81168,-0.13724,-0.15136 -4.3663,-0.23521,-1.435,-1.3204,1.8119,-0.031696,1.444,-0.69898,-0.24407,-1.5618,-0.66974,-1.2164,-0.44503,-0.54307,-0.55042 0.88272,1.1784,-1.5172,-0.97898,2.286,0.918,0.63192,-0.16952,-1.0348,0.91897,2.3795,-1.0717,-1.4074,-0.21863,1.4917 -1.6495,2.4382,0.3978,0.73747,-1.6032,0.78325,0.5055,-0.6903,0.085394,0.28641,0.39884,1.7409,-0.063272,0.99507,0.28018 -2.8389,-0.33489,-3.4681,-0.37365,0.74795,-1.0258,-0.086995,-0.59559,0.51964,-0.51961,-1.5684,0.8717,-0.99035,1.2219,0.027794 -3.2966,0.1786,1.3072,0.49597,0.028069,0.96292,0.88302,-1.0203,0.2391,0.43976,1.7345,0.54324,-1.6028,0.81192,-0.77738 2.824,3.0225,0.84398,-0.2397,0.55259,-0.49421,-1.2058,-1.6472,-0.24669,0.94058,-0.46667,-0.5489,-1.6553,0.14936,-0.49623 0.40023,2.9991,0.35242,-0.28101,-0.75145,0.39908,-1.7036,-0.56178,0.86626,-0.42733,-0.16239,0.95114,0.76939,-0.54084,-0.022184 0.46999,2.0698,-1.0041,1.6701,1.9491,-0.68219,-1.2563,-0.52742,-0.34727,-0.59168,0.87051,0.3531,0.65743,0.34623,-0.88655 1.1154,0.65591,4.0159,-2.6401,0.24657,0.47648,1.3894,1.1034,0.48786,-1.9531,-0.41469,0.88947,1.2094,0.46035,-0.80174 -3.9795,-1.4458,0.12468,-0.78401,0.62906,-0.56767,-0.022753,0.20225,0.71032,0.41749,0.45041,-0.73258,-1.4815,-0.99172,-0.49428 2.4853,0.6763,0.83744,0.90613,1.6501,1.8114,0.076178,-1.6357,-0.10377,-1.2159,-1.1541,1.2794,0.036695,-0.64738,0.22829 1.7935,3.5642,-1.1834,-2.1619,0.32879,-0.40876,-0.52263,-0.66848,-0.73442,2.3652,0.32537,-0.9592,-0.39932,-0.55391,0.34 -2.3196,2.2164,0.017256,1.0014,0.22466,0.54149,0.13425,1.9775,-0.08658,-0.49939,-0.15228,0.70092,-1.5838,1.1505,-1.1595 2.0347,1.2187,0.05964,2.0015,1.5518,0.77588,-0.84132,-2.1314,0.52233,-0.64033,-0.58596,0.65248,-0.28708,-0.13463,-0.10186 -2.7,0.53332,1.1994,0.42498,0.35044,-1.6112,1.7262,0.96479,1.6595,-0.82974,0.52755,-0.49998,-0.50825,0.24307,0.17946 -2.3601,-1.2827,3.4728,-2.4536,0.43063,0.5185,-0.027636,1.2861,0.028361,-0.61105,-0.52668,-1.4607,1.2955,0.61142,0.30383 3.5491,0.3187,0.71213,0.11762,2.2855,0.46096,-0.45687,-0.16552,1.1562,-0.51112,-1.3336,0.88553,-0.37142,-1.3786,-1.5976 3.0508,0.22497,0.25903,-1.2705,3.1337,-1.0087,0.49181,-1.6034,0.27056,0.4791,1.6648,1.204,1.7185,-0.46752,-0.12872 -3.1295,3.0913,0.27019,-0.19313,0.34096,0.37574,0.48192,2.2023,-1.1464,0.80801,-0.16299,0.83633,-0.31973,-1.0958,0.51737 -2.4642,2.375,-0.73633,0.028073,-1.0374,1.0858,0.60901,0.88651,0.00045362,1.2443,0.26274,1.4633,0.39615,-0.7247,0.32789 -0.49227,2.0266,0.3668,1.5527,0.35665,-0.13792,-1.6024,0.029552,0.9196,0.82709,0.6886,1.353,-0.067377,-0.13564,-0.64685 3.5081,-1.1406,-1.2907,-3.1137,0.8925,0.021523,1.6189,2.3759,1.5536,1.052,0.8149,1.9386,0.49011,-1.0386,0.40173 2.2362,3.6594,-1.1963,-1.728,0.35871,1.1782,-1.249,-0.40153,-0.90904,-0.82758,-0.025885,-1.319,-0.090347,-1.2493,-0.67541 1.8694,0.81336,-1.0958,-1.5257,1.576,1.8367,0.66186,0.84248,0.34978,0.4049,1.0383,1.5568,0.8704,-0.73419,0.48882 0.69096,2.1157,2.1303,-1.1778,-0.48349,0.5644,-0.92946,0.82339,0.72676,-1.6023,-1.7769,0.94826,1.0502,-0.7681,0.090286 -1.3367,1.3038,0.56854,1.7565,0.077676,0.25181,1.3769,-0.51679,0.73918,-0.45189,0.99722,0.70947,0.41914,-0.13008,0.044267 -0.57739,2.0138,-0.92392,2.5364,1.4092,-0.54077,-0.072365,0.33616,0.53832,-1.5287,-0.54015,0.59833,-0.19409,0.65599,-0.58653 0.53498,2.6862,0.57712,1.9718,2.1081,0.73298,-1.1478,-0.69986,-0.90112,1.4148,-1.2101,-0.12911,0.2997,-0.4052,-0.60197 2.7363,0.54983,1.0205,0.99456,-0.19652,1.0457,-1.115,-1.5447,1.1572,-0.25063,-0.32318,0.81361,-0.65213,1.1925,0.43633 -2.0524,1.1266,-1.3921,1.7283,0.26625,0.82472,0.95108,-0.31325,0.14154,-0.84603,0.11858,0.73038,0.069008,-0.45936,0.45993 2.1896,3.5238,0.79851,-1.0589,0.33467,-0.10587,-1.487,-0.89796,0.58711,1.0127,-0.91632,0.15928,-0.31362,-0.18474,-1.4749 -0.82847,0.36682,0.1329,2.0937,0.77208,1.2092,0.76196,-1.2923,-0.46436,0.23816,-0.89423,1.9514,0.53069,-0.35386,-0.012521 -3.4266,0.78245,-2.3593,-0.17319,0.41028,1.6656,1.4783,1.5555,0.011266,-0.13883,-0.70999,-0.15424,-0.17501,0.25936,-0.59323 1.5891,3.1986,1.1317,-0.080669,-0.22343,0.14688,-1.0234,-0.35694,-0.035408,0.4354,-0.82908,0.44451,0.39264,-0.17332,0.1968 -0.034793,2.8166,1.9392,-0.45802,-1.9071,1.0112,0.1099,-0.69984,-0.083103,-0.1371,-0.19061,0.79327,-1.4436,0.26612,0.66908 0.70504,1.5182,2.0189,1.9637,2.2581,0.055069,-0.14244,-1.7464,-0.1625,-0.074559,-1.12,0.70586,-0.51409,-1.5135,0.65867 0.16273,3.8881,0.79869,0.081112,0.16726,-0.042349,-1.3357,0.021413,0.32724,0.74505,-0.49465,1.0526,-0.35547,-0.34518,-0.28713 3.0853,1.6004,0.54625,-2.0408,0.38992,0.99719,-0.57571,0.092121,-0.11988,-2.6586,-0.34598,0.95966,0.42001,-0.80101,-1.6358 -1.8035,0.6637,-3.2507,0.6141,-0.95696,1.9411,0.80671,-0.78656,0.81192,-0.10271,-0.58973,-0.72822,0.17622,-0.1845,-0.75238 3.3461,1.795,0.22221,-2.3371,-0.3902,0.62716,-0.93942,-0.15978,1.1913,-0.91694,-0.33697,0.72609,-0.58071,1.251,-1.104 1.8968,-0.56358,-0.91728,0.22561,3.1567,-0.95099,0.37585,-0.01498,1.4257,0.553,1.0468,0.27691,1.7856,-1.58,1.372 1.4804,3.3468,0.5854,-0.55432,-0.86629,-0.56568,0.012367,0.17608,-0.20555,-0.57836,-1.8521,0.16196,-0.44223,-1.3069,-0.54937 0.15571,1.2055,-0.61372,2.0877,-0.03351,1.2746,-1.7463,0.58807,1.0368,-0.08591,0.96657,0.62403,-0.87598,1.6677,-0.82449 0.50097,3.7073,1.8334,-1.4933,0.65953,0.65297,-1.3762,-0.1904,-0.41765,-1.4959,-0.091569,0.74691,0.97594,-0.12625,0.51512 2.2129,2.187,0.9103,0.050878,1.9968,-0.88745,-1.6098,-1.2881,-0.15767,0.92089,0.038005,0.49542,-0.030266,-0.44668,-0.75622 1.0895,2.1693,-0.30335,-0.64067,2.402,-1.3017,-1.729,-0.058627,1.3378,1.6045,1.856,-0.067388,0.83628,-1.0425,-0.06907 4.6747,1.1239,0.11132,-1.3288,3.2547,-0.46961,0.30688,-0.86564,-0.49422,1.2607,0.057751,0.36296,-0.43371,-1.5301,-1.1698 0.05546,2.9077,-1.5806,-0.97047,-0.56154,0.63822,-0.97592,-0.53179,-1.192,0.071384,0.86146,-0.19151,0.81484,0.90015,-0.37421 3.0165,2.8194,-0.36935,-0.50022,0.22489,-0.54647,-0.91989,-1.0637,0.39822,1.606,-1.0917,-0.27783,-1.162,-0.63664,-1.5453 -0.16249,3.5201,1.1589,0.38708,-0.16675,-0.14041,-1.3088,0.53412,0.047633,0.98784,-1.0469,0.85371,1.1555,-1.2561,0.083444 4.2045,-1.16,-0.72126,-0.39682,1.4816,2.2165,1.6592,-2.0555,-0.31861,0.27937,0.90565,-0.42515,-0.33273,0.74156,1.5222 3.2106,0.63652,0.30417,1.1722,0.089673,0.2476,-1.136,-2.5967,0.7269,-0.44144,-0.7449,-0.65288,-1.0561,0.24279,-1.0064 -2.8935,2.4386,-0.6281,0.9064,0.64044,2.0125,1.7037,1.3208,-0.62584,0.25595,-1.1042,0.69846,-0.72121,-0.62408,-0.40418 3.7988,-1.2805,-2.609,-0.63577,1.4604,2.0252,1.278,1.0455,0.89233,0.60411,1.1282,0.17571,-1.7007,-0.82499,-0.030713 -0.20552,3.8206,0.84014,0.35184,0.78044,-0.28294,-1.3439,0.66782,-0.065453,1.3965,-1.3892,0.15907,0.87326,-0.94158,-0.28422 -1.8248,1.081,2.3643,0.99211,-0.13276,-0.29417,-0.2313,1.4291,1.1977,0.37059,-0.44286,0.57443,0.91948,0.6628,0.46733 2.9766,-1.2907,-2.6819,0.014721,1.2519,2.3704,3.1744,0.088497,-0.89941,-0.95635,1.1233,1.7595,-0.27911,1.291,0.18573 3.8562,0.042445,-1.1717,-0.083152,1.0097,1.9817,-0.67383,-2.1946,-0.60775,-0.37116,0.068932,-0.85218,0.36719,0.13284,-0.066236 -0.25636,1.6964,3.1483,-1.3321,-0.81845,0.97727,0.17427,1.3524,-0.22462,0.96732,-0.60182,-0.63275,-1.4412,-0.95106,1.2914 -0.52765,-0.25273,2.7674,0.81984,-0.34634,-0.086674,-0.030887,1.0138,2.0347,0.046131,-1.0436,0.19311,0.5551,0.0060822,1.0551 4.5847,-1.1969,-1.8869,-0.97483,2.1656,2.0381,2.6069,-0.89241,0.33257,-0.57115,1.4976,0.52666,-1.6433,0.25041,-0.079856 2.255,-0.8627,-2.0062,0.33256,0.52879,2.3341,-0.26745,-1.5371,0.13832,0.13103,1.5061,0.46022,1.253,-0.24228,0.73555 -3.6436,-0.68276,-0.67795,-1.9138,0.24359,0.35384,-0.70062,-2.2154,-0.29127,0.11043,0.47231,1.1457,0.19329,0.87686,-0.85908 3.9768,1.3256,-0.60023,0.67202,0.63859,0.52185,-0.37545,-1.9054,0.80669,-0.89651,-0.69063,-0.83128,-1.4195,0.17666,-1.7355 -2.8001,-2.503,1.6881,-3.1485,2.4452,-1.5504,-1.022,-1.0911,-0.64996,0.43163,-1.8893,0.453,-0.1026,-0.039437,0.93538 1.1741,1.514,1.3739,1.6551,1.4715,-0.85453,-1.8049,-0.47324,1.4918,0.48238,-0.39042,0.34303,-0.17862,-0.62204,0.50265 4.8319,-0.083784,-2.0489,-0.46952,2.5173,1.8995,1.4571,-0.76651,-0.64015,-0.74003,0.89643,-0.15474,-1.3537,-0.097695,-0.97566 2.5793,2.715,0.80581,-1.0627,0.26987,0.12694,-1.9092,-1.2012,0.97017,0.44208,0.14212,-0.055587,-0.49246,1.0021,-0.5835 2.9784,0.84218,-0.97654,-0.84664,0.58864,0.72128,-0.4532,-1.1229,2.5379,-0.36638,0.22471,-0.12237,0.50713,-0.42045,-1.0729 1.4347,2.1056,-0.038649,-1.4333,-0.25689,0.87278,-0.73008,-0.59895,0.72722,-2.3791,-0.76209,0.80512,1.0565,-0.91519,-0.91431 -0.38813,2.5496,-1.6876,1.0206,-0.31851,2.2317,-1.0652,0.90712,-1.2848,-0.10564,-0.27403,-0.49233,-0.75057,0.13155,-0.85588 -3.3423,-0.42414,-1.0775,-0.29574,1.138,-0.26649,0.83645,-0.83992,1.8557,-0.14775,0.33484,0.5222,-1.0527,0.49461,-0.82928 2.9214,-0.4324,2.0975,0.024291,2.7554,-1.1083,-1.0112,0.60485,0.45062,-0.90885,-1.8608,0.81654,0.60905,-1.6274,-0.70117 -0.60275,2.2193,2.0195,2.1153,2.2544,-0.5927,-0.27343,-0.43478,-0.78058,0.62825,-0.27639,1.4019,-0.72188,-0.44137,0.35203 -1.9574,0.29133,0.89906,2.0713,0.7042,-0.092278,0.859,0.46365,0.92391,0.13533,0.41943,0.34906,-0.96339,-0.78038,1.7853 0.086815,4.2575,1.0234,-0.63668,0.26612,-0.25993,-1.9856,0.094947,-0.92368,0.44565,-0.036558,0.38456,-0.11177,-0.82922,-0.64059 -2.4581,0.32992,0.79695,0.79022,-0.23379,-0.0080494,1.3536,-1.2711,1.8809,1.1529,0.80854,0.77194,0.11715,0.34893,0.25815 0.24165,-0.59996,3.4063,-2.1032,0.19009,0.033519,1.1873,1.6669,0.79554,0.77604,-0.95205,-0.13344,-0.74062,-2.1834,-0.10211 0.70687,2.144,-1.0447,0.69417,0.33376,0.85087,-1.9146,-0.76202,0.99515,0.73778,0.44671,-0.45073,0.21755,-0.16313,-0.13282 0.78998,1.5596,-2.8921,-0.68937,0.30494,1.3924,0.9674,0.026923,-0.54913,-0.27905,0.87933,-0.79548,0.011979,0.528,1.4118 -0.98554,0.12916,0.81167,-1.7177,-1.8451,1.8976,1.439,0.63583,0.80866,0.54218,-0.46544,-0.67764,-2.5083,-0.67055,0.43117 0.31782,-0.84057,0.019278,2.6117,0.46265,0.16878,-0.72989,1.6172,0.60713,-2.4694,-0.38078,-0.2278,0.036007,-0.33208,0.76249 -1.547,1.5139,1.9871,0.017135,-0.32478,1.3131,0.99533,-0.35467,0.87973,1.2183,0.34991,0.436,-0.45601,1.0547,0.73802 -1.6215,0.11197,0.53582,2.3536,0.51422,0.52654,1.4579,-1.4871,0.043215,0.83189,0.32106,0.54334,0.11326,-0.2936,0.44475 0.45009,3.9593,-0.15388,-0.15546,-0.38174,0.32883,-1.6914,-0.43057,-0.51998,1.3648,-0.74527,0.21545,0.80968,-0.44321,-0.81581 3.1989,2.2927,-1.6098,-2.5953,0.8735,0.50743,-0.14272,-0.11271,-0.11596,-1.0724,0.56784,-1.5559,-0.084817,-1.7449,-0.52223 0.36508,1.8316,3.932,-0.67344,0.063768,-0.59405,-0.8278,0.012778,-0.083392,-0.6175,0.22199,1.2766,-0.090627,-0.3016,0.19815 -2.1984,2.7496,-0.31149,-0.2303,0.46718,1.0127,0.46873,-0.045563,-0.67334,-1.9875,0.19319,1.215,0.14534,0.92989,-1.0401 -0.78319,-1.1331,1.621,0.76916,1.7043,1.519,-0.91377,1.1111,-0.92492,-2.4991,-0.4511,0.29067,1.265,0.93281,1.0595 1.2106,-0.023441,0.52121,1.5873,2.2032,0.55691,-1.8057,-0.89516,0.6245,-1.568,0.71868,0.67687,1.0409,1.0827,-0.67966 3.1343,1.3192,-0.5705,-0.047139,0.80535,0.73077,-0.65339,-1.5575,1.4692,0.27255,-0.2805,-0.10725,-0.23186,-0.41307,-1.9555 -4.3842,0.18805,-1.5743,-1.7686,1.1858,0.17006,0.55931,-0.75476,0.21937,-0.86607,0.20379,0.015111,0.15259,0.46982,-1.3724 4.0162,0.41978,0.99587,-1.4472,3.07,-0.95163,-0.26402,0.27188,1.0529,0.66327,-0.067896,0.045666,-0.2924,-2.0345,-1.3296 2.9816,-0.043822,-1.3691,-0.31627,1.6542,2.0267,1.8905,-1.9441,0.030795,-0.35457,0.39521,-0.72595,-0.26837,-1.2477,1.2662 -1.3088,3.6171,1.7896,-0.011329,0.46944,0.26479,-0.58683,0.3767,-1.4453,-1.5147,0.36384,0.18855,0.49762,-0.28771,0.17356 3.9299,-0.90589,-2.4576,-0.6151,1.213,2.8892,1.704,-0.14938,-0.47938,-1.4702,0.70885,0.3714,0.095356,1.6964,-1.2467 4.8113,-1.2354,-1.1842,-1.6473,-0.63305,0.064436,0.59217,-0.20833,0.38496,2.4424,1.4775,0.36459,-1.1603,0.10539,1.0755 -3.0373,1.2413,0.84155,0.26719,-0.19553,1.2694,1.6648,-0.42722,0.24642,-1.0821,1.242,0.40835,-0.84824,0.92466,-1.3261 2.5356,-0.81674,-0.25942,0.13569,2.6451,1.8851,1.359,-2.9194,-0.088992,0.43147,1.0586,0.30269,0.17717,-0.30975,1.6676 -0.58206,0.50132,2.7681,0.51336,0.4898,-1.1097,-0.32099,2.0828,1.539,-1.076,-0.059703,0.67662,0.93223,-1.0805,1.3877 3.7039,-0.59632,-0.60854,0.65184,0.12268,0.92498,-0.66269,-1.1468,-0.080184,-1.1744,-0.59433,-0.36036,-1.6634,-1.7589,-1.9891 2.1682,2.9907,-1.5043,-3.2457,1.0299,-1.0199,-0.8638,0.40398,-0.69287,1.083,1.6746,-0.97895,0.027211,-1.4665,0.55283 -1.1156,3.5403,1.0128,-0.002857,-0.66473,0.98948,1.0029,0.22506,-0.83687,1.4095,-1.4511,0.85382,0.33739,-0.59238,0.53844 2.518,0.12454,-2.1181,0.46094,0.82091,1.8548,2.7414,-1.6249,-0.63969,-0.21739,-0.29771,1.2546,-0.95688,-0.03784,-0.82965 2.182,3.2063,-0.98054,-1.1202,-0.079308,-0.20376,-0.91064,0.023548,-0.2904,1.01,-0.73974,-1.9278,-2.1058,-0.33025,-0.62361 -2.6967,-2.4299,2.8045,0.40409,0.5673,-1.3267,0.20093,0.60842,-0.17968,0.22341,0.34001,-0.24302,-0.67712,-2.0301,-0.045878 -0.60213,-0.50457,3.4701,1.1268,0.74105,0.30183,1.6555,-1.5018,1.3652,-0.12651,-0.25415,0.52157,0.11476,-0.21176,-0.064209 -2.4985,0.37984,-1.141,0.088957,-0.95842,0.56943,0.53199,0.1991,1.961,-0.49737,0.7075,-0.62041,0.29387,0.26903,-0.41543 4.0502,-0.39843,-2.0001,-0.23501,1.0444,2.9589,1.4847,-0.82487,-0.45624,-1.2389,-0.13137,-0.056499,-0.24891,0.94217,-1.0692 2.1966,1.5772,-0.45684,1.2699,-0.052714,1.4378,-1.0403,-2.1306,0.45896,-0.53557,-0.30514,-0.96307,-0.67965,0.15019,0.38917 3.585,-2.4834,-2.4637,-0.60652,0.62756,3.2076,2.9035,-0.013205,-1.2289,-0.71009,-0.12274,0.69927,-0.51214,1.802,0.55752 4.2349,-1.808,-0.43891,-1.1785,2.1243,2.637,2.818,-1.5888,-0.89357,-0.68309,0.87983,1.2058,-0.94612,-0.049688,0.80727 2.8105,-0.33954,-0.80906,-0.37667,1.3161,1.4858,0.90899,-2.4781,-0.18248,0.87806,1.5606,0.071074,0.36632,-0.7241,1.9229 -1.5284,0.67707,2.5155,-0.81717,-0.24343,-0.14099,1.4769,-0.77987,1.9474,0.79183,-0.34207,0.85811,-0.43584,-1.2351,0.68474 -3.8544,0.33819,-1.64,-1.2788,0.48481,0.60973,0.2226,-1.2474,0.19127,-0.511,0.3699,0.36347,0.87403,0.69819,-1.247 1.2839,1.2783,1.654,1.4946,-0.82786,0.84889,-0.60806,-1.3439,0.54956,-0.52489,-0.65446,0.19513,-1.6273,1.5248,0.85382 -1.4285,2.838,-0.16429,-0.72916,-0.11464,-0.29687,-0.45366,-0.67284,-1.861,-1.5943,0.21827,0.67183,-0.27059,1.8049,-1.6352 0.61071,-0.58387,1.4831,0.58342,-0.27071,2.0967,1.7094,-0.6618,1.7672,0.23056,-0.96857,0.029476,-0.68658,-0.96542,0.71513 0.50268,3.6919,0.64171,0.81994,-0.75477,-0.12186,-0.054192,-0.64253,-1.265,1.362,-1.4607,-0.025638,-1.7544,0.99759,0.032698 4.2963,-2.5199,-1.5029,-1.7662,1.292,1.0317,2.3143,2.0183,1.081,1.037,0.85792,2.755,-1.8645,-0.90192,0.16268 -1.5926,1.2904,-1.7684,2.0815,-0.086065,1.2017,0.87715,-0.20754,0.19984,0.69138,0.18147,0.78738,0.15054,-0.82897,0.82055 -3.7627,1.6976,0.87865,0.20273,0.45846,-0.27966,1.4077,0.43709,-0.90465,1.809,1.0845,0.60621,-1.2515,-0.22431,-0.73389 3.5171,0.85348,-0.0060948,0.33054,1.8415,1.3745,-0.36454,-1.9123,0.20901,-0.5508,-0.37248,0.60053,0.14648,-0.38607,-1.858 -3.7333,1.6483,-1.255,-0.952,0.75652,1.5025,1.5725,0.31606,-1.7867,1.6972,0.44584,0.31908,-0.44192,-0.45682,-1.0225 -1.8835,2.372,0.73081,0.69862,-1.4269,-0.36986,-0.11279,0.060251,-0.97712,1.5303,1.011,1.6659,-0.7713,-0.32069,-0.20048 2.3021,2.9482,-1.893,-2.791,0.23586,-0.03331,-0.15023,0.21506,0.39784,0.93805,0.2694,-0.86836,-0.17338,-0.99784,-0.44756 2.62,1.5568,0.32995,-2.1873,1.5439,-0.89027,-0.91897,-0.73172,2.3295,0.17036,0.015541,0.1914,1.1752,-1.2775,-0.59875 3.3088,0.3021,-2.2437,-2.0652,-0.67974,-0.98091,1.0663,0.76786,1.5527,1.2121,1.4001,-0.17245,-1.3253,0.75929,1.3545 -1.3437,3.1545,1.2998,1.5852,0.47232,-0.45889,-0.19217,0.30064,-0.63151,1.3712,0.12027,1.4764,-1.3882,0.14331,-0.33987 -0.31711,1.1943,1.861,-0.22583,-0.21559,-0.75872,-0.23943,-1.3234,0.76437,0.10705,0.0095993,0.48369,1.0346,0.73724,-0.23165 -3.5117,-0.094564,-1.657,-0.70326,0.18709,-0.85816,0.33795,-0.22484,1.2949,0.041108,0.22366,-0.072265,0.010943,-0.086927,-0.59461 -0.84626,3.373,-0.31082,0.44569,-0.10562,0.60134,-1.0793,1.1731,-0.60548,1.4132,-1.3207,0.49328,-0.27797,-0.44566,-0.025566 0.99182,1.4584,2.1196,-0.086671,0.71344,-0.47045,-1.7138,0.77834,2.01,-0.71566,0.5402,1.425,0.91858,0.21632,0.82352 -1.2449,2.9125,-0.37544,0.51659,0.048654,0.44633,-1.141,0.74127,0.53386,-0.0035867,-0.090552,1.2091,0.12866,-0.38241,0.059782 -0.75367,-0.72617,-0.18737,-1.4212,2.9802,1.61,0.40257,-0.97905,-2.8018,-1.6121,0.21053,0.63336,-1.2316,1.513,0.7957 3.6788,1.7248,0.63849,-2.7218,0.88389,-1.438,-0.91062,-1.4936,0.57409,0.94839,1.5709,-0.0048091,-1.1718,-0.47757,0.29252 2.5467,-0.45668,-0.037984,-0.79223,3.093,-3.2994,-0.571,2.4431,-1.277,-1.18,0.64975,0.31923,1.2904,-0.83275,0.12724 3.253,2.1997,-0.23381,-2.9485,0.46805,-0.10479,-0.67004,-0.89427,0.58202,-0.30537,0.5181,-0.21151,-0.1998,-1.3769,-1.1913 -1.9512,3.545,2.7235,-1.0115,0.61336,0.041814,0.16326,0.21138,-1.5424,-0.061334,0.16759,0.71752,-1.0892,-0.32785,0.34037 4.1877,-2.0895,-1.5802,0.1608,0.8159,2.9185,2.5061,0.18203,-1.0418,0.51554,-0.04024,0.071291,-1.108,1.4538,0.64764 5.2939,-0.33187,-0.14141,-1.706,2.4502,0.11808,0.45908,0.1827,1.3623,0.5511,0.28497,0.13033,-1.1996,-0.73193,-1.0757 -1.2607,2.399,-0.084148,2.0149,0.20314,1.0366,0.93648,-0.87192,-0.7705,1.1105,-0.14647,1.5058,-0.944,0.12288,0.76007 -1.92,0.85822,0.69228,2.5704,1.631,-0.29762,1.7781,-0.47235,-0.13464,-0.78833,0.035208,1.492,0.38143,0.066337,0.88599 -1.9651,3.291,1.4904,1.0115,0.55738,-0.30674,0.2073,1.1257,-0.98757,1.3177,0.33453,1.1055,-1.1475,-0.29524,-0.10143 4.2638,-2.1184,0.69975,-0.53133,3.0967,-1.0353,0.38839,2.4197,-0.38718,0.070694,0.060073,0.58161,0.977,-0.32902,-0.51281 3.9228,-0.047629,0.77368,0.73306,3.0148,1.0947,-0.26851,-1.0872,0.2544,0.44456,-0.47239,-0.33365,-0.46847,0.68208,0.056279 -0.34038,-1.14,-0.37078,0.56642,0.27579,1.5367,0.04194,2.8301,0.38534,-0.6313,-0.023953,-1.6542,2.4982,0.62415,-0.051503 -2.9967,2.0704,2.1084,-0.12911,0.19413,-0.88529,0.84662,0.33896,-0.41443,0.59964,0.69672,1.1073,-0.20393,-0.43986,0.15162 1.1337,1.0634,1.6713,1.1178,0.25422,0.82362,-1.2031,-0.083536,2.1536,0.03293,-0.85863,0.79413,-0.0074155,-0.3647,0.9545 3.2968,1.3201,-0.727,-1.019,1.5914,0.42205,-0.38468,-1.1173,1.6168,2.2097,0.65454,0.50904,0.32853,-0.080591,-0.54605 -2.0235,2.3229,0.84675,1.5476,-0.025576,1.0993,0.22472,0.73633,0.74285,1.0827,0.2663,1.3069,-0.53605,0.54522,0.16951 -1.4467,0.081224,2.5808,-1.16,-0.2042,0.6113,0.49196,1.5074,1.8451,0.081067,-0.19681,-0.37869,1.6208,-0.66331,1.4367 2.896,0.68586,-1.6433,-0.043908,2.0937,1.6121,0.59361,-1.9627,-0.33614,1.0145,0.16499,-0.035494,1.2864,-0.2016,-0.024207 0.80973,2.2834,3.2074,0.48533,1.151,-0.42786,0.14322,-0.9559,-0.27693,0.90936,-0.89011,0.44283,-1.9094,-0.047229,0.82995 0.3202,3.1985,-1.7167,1.0322,-0.089176,1.8138,-0.75231,-0.14513,0.14613,-0.36651,-1.3292,-0.4643,0.50961,-0.62277,-0.37615 2.849,0.35637,-1.9555,-0.85004,-0.29592,0.95744,0.33371,-0.78066,1.8426,0.020343,0.55416,0.25921,-0.6322,-1.409,-0.79428 0.51727,1.5389,-0.70893,1.2531,2.9102,-1.9543,-1.2991,-0.019261,1.5254,0.2614,0.75444,-0.51844,0.37741,-0.93169,-0.17702 2.3258,1.2763,-0.53915,-2.7792,0.83807,-0.82903,-0.26004,0.30044,0.0035472,2.3099,1.5863,0.1925,0.38178,-2.002,1.3214 2.8833,0.18448,0.81905,0.6208,1.0975,1.1056,-1.6591,-1.4095,1.821,0.2289,-0.41889,0.021723,-0.0066891,0.59464,-0.53833 3.3697,-0.18886,1.1165,0.70647,2.1112,2.7684,-0.90114,-0.88583,-0.13327,-0.92608,-1.0414,0.73359,0.99248,0.74516,-0.28378 -1.0377,2.8822,-1.2643,0.95062,0.66266,0.30096,-1.6322,2.5675,0.86636,-0.71427,-0.63364,-0.50277,-0.40715,0.41873,-0.88622 0.95996,1.6749,-0.47884,-0.82457,0.93489,-1.5674,-2.4549,0.96548,0.69164,1.2611,1.1711,-0.8515,0.88082,-1.1577,0.19812 -3.2268,2.6446,-0.60024,0.053673,-0.040517,0.18184,1.115,1.5433,-0.515,0.18501,-0.06115,1.0862,0.086425,0.063114,0.30988 2.308,-0.44465,0.91311,1.4043,0.9407,3.3743,-0.14784,-0.62521,-0.58949,-1.3969,-2.2007,0.6332,0.87348,0.80398,-0.22908 -0.55497,2.9621,-0.47467,0.58151,-0.03227,2.0354,-0.51342,0.54654,-1.5233,-0.34397,1.5412,-0.64175,0.61639,-0.037601,-0.81555 3.9407,-0.34993,-0.97623,-0.35745,1.2814,1.6213,1.1911,-2.2018,-0.58426,0.53728,1.0006,-1.3254,-0.76797,-0.60137,1.6439 3.8363,-0.25944,-0.68805,0.39117,1.3975,0.58879,-0.23469,-2.3772,-0.23997,1.0494,1.6074,-0.63418,-0.36259,0.35892,1.057 2.619,1.1916,-1.5078,-3.2952,1.4946,1.367,0.54822,2.1911,-1.4736,0.43307,-0.34253,1.6762,1.175,-2.1454,-0.91535 4.0328,-1.0132,-2.4484,-0.85116,0.41682,1.4265,1.6291,0.16646,1.4973,1.0697,1.1543,0.93507,-1.2504,1.6631,-0.81366 -3.6246,-0.082055,-0.94039,0.4968,1.1502,-0.29949,1.8199,-0.39894,1.0731,-0.49675,0.55655,-0.40833,-1.3961,0.07954,-0.64658 0.66877,-0.82451,0.34933,2.317,2.2116,2.1549,-0.4477,0.36159,-0.30197,-1.6032,-0.37687,0.019811,1.8972,0.98641,1.4806 -0.36431,2.5654,1.9578,0.13806,0.51683,0.11768,-1.1156,1.2632,0.34048,-0.27025,0.25256,0.70008,0.87202,-1.2674,0.36582 -3.1709,0.48602,-1.2485,0.064486,-0.27815,0.55418,1.4907,-1.1961,0.88542,0.73545,0.87244,0.48681,-0.16763,0.22561,-1.3521 -2.6456,1.5598,-2.0321,-0.20979,-0.7342,1.491,1.0205,0.056287,0.42056,0.76253,0.42341,-0.42814,1.1714,-0.77786,-0.44375 2.0559,2.2577,0.65941,-0.62848,2.2505,-1.3512,-2.0909,0.015635,0.97514,1.497,1.0048,0.24981,0.71263,-0.6628,-0.02704 1.3207,1.3435,2.7379,-0.47276,2.0754,-0.48168,0.083605,-1.1847,0.23414,-0.84266,-0.70733,0.98012,1.077,-0.505,-0.26266 -3.9419,2.5417,0.39186,0.005363,1.1279,1.169,1.7078,1.3612,-1.3914,-0.12395,0.41902,-0.32636,-0.17919,-1.8612,0.12099 1.1537,2.8194,0.026644,-1.148,2.4027,-0.63548,-2.3519,1.5426,-0.60098,0.019495,2.1473,-0.1949,0.82087,-0.80703,-0.45401 1.0647,-0.22998,-2.9657,0.73266,-0.5682,1.2185,0.79891,0.72137,0.684,0.87005,-0.71325,0.80131,0.21246,-1.1593,-0.49547 -3.6772,0.97769,-0.66089,-1.5255,1.5322,1.0366,1.1959,-0.58994,0.47787,-0.84263,-0.021551,-0.5839,-0.25129,-0.41142,-1.5275 2.3778,0.69042,-0.36767,-0.01437,1.9743,0.26825,-0.6166,-0.78151,2.1854,1.0054,-0.2213,-0.16666,2.3534,0.099093,-0.77172 -1.9439,0.25917,-3.6799,-0.10338,-0.83717,0.035847,-0.73116,-0.31886,0.20789,-0.59339,-0.30146,1.1164,0.015898,-0.35055,0.26917 3.1319,2.0706,-1.7117,-0.97517,0.99727,0.5793,-0.36826,-0.46126,-0.55153,2.2028,0.73486,-2.0424,-0.91478,0.086292,0.68976 0.63242,3.0737,-0.72031,0.51848,-0.69372,0.32026,-2.0548,-0.85381,-0.44779,0.48478,0.89993,0.49362,-0.67823,0.62634,-1.6876 -2.6946,-0.00039311,-0.92973,-1.7128,-0.040068,0.44918,0.48683,-2.0421,0.515,-0.12292,-0.51923,-0.43236,1.1962,-1.1352,0.18784 3.9372,-0.55972,-1.4063,-0.70623,0.89314,2.8602,0.38801,-1.4725,-0.87197,-0.084191,0.18106,-1.22,1.0279,0.72167,0.20289 -3.119,-0.20793,-0.17903,-1.3973,-0.22064,1.7211,0.10208,-1.5085,0.57366,0.5765,1.0164,0.028111,-0.21466,0.88736,-1.1693 2.9936,3.1767,1.76,-0.88654,1.9024,-0.37314,-0.69909,-0.7986,-0.096016,0.27348,-0.98011,0.40739,0.32353,-0.7717,-1.4526 -1.3105,2.5597,0.30586,1.7528,-0.66275,0.69102,-0.088589,0.016925,0.46096,1.014,0.10441,1.5117,-0.55563,0.7286,-0.12299 1.3989,3.0087,2.1687,0.16844,1.7551,-1.4597,-0.93995,0.2077,-1.7824,0.92637,0.18957,-0.21049,0.27616,0.12038,-0.70274 -3.0891,0.88833,-1.4235,0.82029,0.32938,-0.22393,1.6585,0.97846,0.7887,1.1775,0.46603,0.16936,-0.44991,-0.19969,-0.3029 0.44914,2.9257,1.1785,0.2477,1.6122,-1.5571,-1.7588,-0.12808,0.96852,0.8446,-0.73738,0.55157,0.16833,-1.1916,-0.18586 0.27725,0.84813,0.39234,0.62529,2.1237,0.25622,-2.1018,-0.31265,0.29504,-1.2416,0.25624,-0.21733,0.33594,-0.6561,0.42864 -2.4153,-0.41283,-2.2955,-0.58208,0.77716,1.5983,-0.47539,-1.5118,-0.55612,-1.0914,-0.43598,0.974,-0.83259,0.47093,-0.2702 1.0291,4.0074,-0.75393,-0.67337,1.785,1.2035,-1.5496,-0.020478,-1.9295,0.18283,0.37324,-1.6552,-0.065579,-0.86377,-0.55166 1.403,2.0465,2.1756,-2.4036,0.2366,0.31683,-0.54415,1.4488,-0.67539,-1.5829,-2.218,0.20649,-0.11749,-0.536,-0.73539 -2.328,2.9589,1.2859,-0.73635,0.16642,0.2146,0.37308,-0.60019,-0.72507,-0.14888,-0.078575,0.52471,0.71644,1.3532,-0.56045 -1.2556,2.5939,-2.3151,1.1788,-0.31123,2.5786,0.045218,1.2346,-0.57926,-0.028016,-0.71717,0.40411,-0.47114,-0.40999,-0.99592 0.81361,3.727,0.7428,-1.7127,1.6114,-1.0824,-2.5265,0.10071,-0.51331,0.37963,0.9737,-0.60596,0.21214,-1.0688,-0.50442 3.5573,1.5135,0.074189,-3.2749,2.3422,-1.4185,-0.43664,2.408,-1.789,1.7324,1.411,0.40346,-0.78776,-0.54313,-0.090806 2.7514,-1.9436,-2.3725,-0.60669,-0.27048,0.33579,2.3481,0.87685,0.65803,-0.54674,1.1036,3.4183,-1.0722,-0.28651,-0.75052 0.21777,-1.4465,2.8827,-0.41777,0.89404,1.0818,2.8203,-0.79353,-0.46904,-1.1125,-1.5824,1.501,-1.3618,-1.2414,-1.2052 2.0594,2.4638,1.5157,0.88137,1.1281,-0.22268,-1.7295,-1.9304,0.5806,0.83231,0.34558,0.057496,-1.334,0.70475,-0.29595 2.4447,1.4289,3.8452,-2.0466,0.57556,0.19776,1.3784,0.75212,0.36766,-0.77096,-0.52744,1.1494,-0.7053,0.16031,-0.94936 1.6372,3.3644,-0.23041,-1.665,1.4733,-0.71055,-2.2152,-0.06325,-1.3223,1.8939,1.4564,-0.70391,-0.8734,0.11552,-0.22778 -1.9188,2.8391,-1.3444,0.57612,-0.26781,0.91228,-0.33876,1.7345,0.21599,0.37502,-0.78596,0.83917,0.77703,0.14626,-0.070841 3.9338,-0.093673,-1.4137,0.26082,1.094,2.2602,0.076996,-2.1901,-0.4133,-1.1571,0.22983,-0.93399,-0.4494,0.91163,-1.065 -2.3195,-2.2775,-0.73464,-0.38671,1.5273,-0.31669,-1.854,0.98785,1.3608,0.72021,-1.3837,-0.2305,0.32956,1.7957,1.202 0.4413,-1.2597,0.92936,1.5218,-0.010397,3.3095,0.59968,0.48472,0.45303,-1.3221,-0.92504,0.075226,1.6079,0.35199,0.93254 2.8948,-0.19222,-0.78435,0.82411,3.0781,1.2555,-0.58706,-0.67897,0.058651,2.1754,1.1746,-0.56375,0.71557,-0.81616,0.30159 4.1378,-2.2264,1.679,-0.34358,3.294,0.69074,-0.93163,1.0648,0.89775,-0.58867,-0.75951,0.67482,1.5731,1.0384,-1.2579 0.80127,2.7622,2.8363,0.29517,-0.64773,0.36065,-0.75113,-1.0635,0.42665,0.11173,0.084531,1.0091,-1.0051,0.65935,0.15202 3.1067,0.90779,-1.0632,0.21836,0.1965,0.92881,-0.84582,-0.67553,0.98643,0.74997,-0.68222,-0.21867,-0.75448,-0.50425,-0.29819 1.5164,1.8063,-0.47624,1.2833,-0.93503,0.93842,-1.5248,-1.3712,0.39835,-0.51889,0.092651,-0.53274,-0.15063,1.8358,0.24968 -2.2922,1.22,1.7245,-0.93866,0.18564,-0.1857,1.3951,0.37361,0.49681,0.98366,-0.44739,0.45629,0.73696,-2.0536,0.91568 -1.4838,3.1975,0.51337,-0.0032866,-1.4191,1.1008,0.38569,0.13156,-0.76424,-0.021994,0.32022,1.0322,0.16691,-1.3339,0.71599 3.167,0.32745,-0.13904,-3.3065,1.4779,-1.2159,-0.20733,0.91744,0.10163,1.728,2.163,0.45586,-0.54921,-1.434,1.2721 2.6092,1.8694,0.67873,-2.9883,1.8758,-1.97,-2.1743,1.2101,-1.2465,0.28043,2.0203,-0.84623,-0.66921,-1.1278,0.37629 0.54559,2.7146,1.9028,0.45334,0.56886,-0.24659,-1.3144,-0.067399,1.2836,0.00058754,0.59692,1.5467,0.34703,0.76698,0.24618 0.13879,3.2197,-2.448,-0.86736,-0.70931,1.9345,-0.65143,0.1421,-1.4452,0.65015,-0.073967,-0.76536,0.081376,-0.35787,-0.32828 -0.0036358,-1.4092,2.108,0.69162,-0.81346,1.1163,1.6576,-1.3924,0.8632,1.2487,-0.77657,-0.29628,-0.67118,0.96186,-0.24886 3.543,-0.91163,-0.38262,-1.9932,2.2267,-1.1525,-0.0046715,2.2341,-0.42632,-0.56581,-0.018478,0.77317,1.8911,-1.6588,-0.9886 4.1094,-1.7467,-0.71538,-0.73911,1.5465,1.5911,1.8914,-0.62024,-1.0867,0.16292,1.0756,-0.9373,-1.8212,-1.4144,1.6265 0.30716,3.8067,-1.4021,-0.67642,-0.97761,1.4104,-0.98633,-0.097095,-1.6206,-0.36692,-0.9508,-0.58467,-0.26744,-0.54261,-0.82239 1.0158,1.0938,0.96329,0.51873,-1.0711,1.4853,0.27009,0.47963,1.7742,0.80924,-0.84141,0.39264,-0.45943,-1.2077,0.19817 2.18,1.7845,0.094137,-1.2901,0.68704,1.3334,0.26184,0.1418,1.0612,0.37538,0.021794,0.61003,0.9155,0.17902,0.73011 1.6368,4.207,0.047961,-1.5175,-0.33571,0.32822,-0.51664,-0.55916,-1.2271,-0.20772,-1.1336,-1.1389,-0.76767,-0.20847,-0.74202 2.8309,2.3886,0.010077,-2.157,0.19568,-0.3045,-1.5269,0.085863,1.2955,-0.36968,-0.10848,-0.38458,-1.2358,-0.56147,-0.7055 -1.2827,-1.6638,2.4191,-0.65121,0.62585,-0.50321,1.3486,0.95605,1.6104,-0.15042,-0.15721,-0.45702,1.565,-0.91083,-0.0085446 0.15002,2.5977,-1.4069,-1.5015,0.98689,-0.91287,-1.9938,1.6149,-0.69536,0.32899,1.7942,-1.9317,1.7441,-1.6071,0.66898 -1.6068,1.7486,1.5776,0.96354,0.42374,-1.3228,-0.063628,1.8871,1.8416,-1.0981,0.41695,0.58525,-0.04772,-0.72084,1.21 -3.134,-0.10228,-2.4071,-0.73343,-0.36734,-0.99611,0.42001,0.59571,-0.19213,-0.80452,0.048743,0.99158,-0.3026,-0.81006,-0.67706 1.1995,2.6602,-0.046781,-1.5935,-0.1054,-0.35586,-1.608,0.65881,0.25771,-0.63401,-0.50585,0.044902,1.3983,-1.781,-0.0039243 -1.1389,-1.8863,0.82224,0.46692,0.29275,0.6719,0.80023,-1.05,2.6102,0.13207,-0.59578,-0.63172,0.70646,-0.75127,-0.19223 0.41959,-0.35566,2.9257,-0.4276,-0.56287,1.8386,1.0563,0.5076,0.8163,-0.46323,-0.57488,0.9486,0.8841,-0.02726,-0.77022 1.3528,1.2215,-0.27394,2.0124,1.1759,1.6551,-0.38935,-2.0513,0.35197,-0.96463,-0.87752,1.0087,0.75574,0.055562,-1.0085 0.93363,0.16472,-2.3573,1.7077,0.91432,0.43573,-1.4733,-0.65878,-0.052831,0.6723,2.5885,0.18491,-0.40342,0.36768,-0.28513 0.19746,2.2794,3.4394,-1.5174,-0.81493,0.81755,-0.023787,-0.33655,-0.086694,-1.5752,-0.17405,0.32748,-0.96322,0.77265,0.81459 -0.68332,2.6974,0.088831,0.72156,0.5058,-1.2094,-1.7311,0.95802,0.092398,1.1337,-0.20459,0.68478,0.6324,-1.4953,-0.6525 -1.9713,2.7189,1.3093,0.064147,-0.20444,0.021625,-0.27078,1.5078,0.5224,0.63184,0.5202,0.74046,0.39993,-0.96143,1.004 2.0151,2.4919,0.63007,0.065724,0.45624,-0.44027,-1.9691,-1.5989,0.0092981,1.5702,0.603,-0.58789,-0.76729,0.050103,-0.39752 -0.25135,2.6266,0.36481,-0.93991,-1.0659,1.3483,-0.21838,0.56067,-0.40156,-0.74611,0.44598,-0.010631,-0.35697,-0.97353,1.0068 2.2589,-1.0181,0.18667,-0.89147,0.81581,3.3531,1.3002,-0.84513,-0.43094,-0.61505,-0.095709,1.0315,2.0351,0.77718,-0.063906 -1.2372,3.4564,2.0679,-0.73664,0.68733,-0.050408,-1.1546,0.21051,-0.7358,-1.5905,0.31443,0.79404,0.50396,0.1854,0.0034225 -1.3196,1.4859,1.1631,0.36431,-1.4188,0.7908,0.3581,-0.17912,1.8825,0.031059,-0.04726,1.0978,0.27046,-0.3014,1.1488 -0.55452,1.5342,1.577,0.58229,-0.086417,-1.7737,-0.79733,2.2659,0.19448,0.1533,-0.59706,0.098766,0.56847,-2.0963,0.77801 -1.0963,1.9557,-1.751,2.1516,1.0839,0.38288,-0.50969,-0.01375,-0.12591,-0.99476,-0.48764,0.58869,-0.35248,0.20438,-0.2478 0.10088,3.0772,1.221,0.2402,2.0013,-1.6377,-2.041,1.4699,-0.16014,0.0013933,0.092956,0.29816,0.5007,-1.6941,-0.055718 0.96071,2.6892,0.34608,0.37176,0.86553,-0.38931,-2.3505,-0.98383,1.1273,0.57236,1.017,0.75567,0.094787,0.78294,-1.0107 -0.75396,1.5408,2.3258,1.1032,-0.54709,0.083694,0.14167,-0.65082,1.7861,-0.018982,-0.49947,1.8249,-0.099861,0.29559,0.30768 -2.7892,-1.1482,-1.9792,-1.0991,-0.31793,-0.30239,-1.067,0.057697,-0.20446,-1.1121,-0.73497,-0.977,0.54336,-0.74685,0.95806 1.3391,-0.083921,-0.1928,2.4319,0.69273,2.0679,-0.8581,-1.3003,0.26745,-1.5552,-0.58045,0.35273,1.2617,0.67394,0.059722 3.9657,-1.2941,-1.7122,-1.1809,1.8982,3.1923,2.1766,0.31978,-0.26938,-0.93586,0.2454,0.14655,0.19165,0.043579,-0.13939 0.016338,0.1074,3.2881,-0.39498,-0.30536,0.48118,1.1064,-1.2834,1.6412,0.68384,0.12598,0.11787,-0.3484,1.1304,-0.15142 0.73337,1.9958,1.9394,-0.51118,-1.7163,1.4003,0.59357,-0.78813,0.5274,-1.5491,-0.4333,0.53442,-0.48343,0.034777,0.72973 -0.43125,2.7159,2.2889,0.28798,-0.86549,0.91369,0.31414,-1.0081,-0.065697,-0.091479,0.016407,0.81022,-1.4714,0.7566,1.0045 0.33524,0.20031,2.5002,1.0687,-2.1676,0.72667,-0.38576,-0.56319,0.43523,0.25088,0.4803,0.0040205,-1.2819,1.7479,0.74187 -0.95778,-1.7383,3.9897,0.22528,0.58323,0.2637,0.54615,0.96688,1.5738,0.033748,-0.44,0.077828,0.95737,-0.14749,0.20825 -1.7829,-2.2581,1.0725,1.2975,0.1969,-0.60472,0.84282,1.0525,1.6176,0.33729,-0.18381,-2.138,0.19323,-0.70876,0.35305 0.94536,0.10452,2.5115,0.025996,-1.6365,-0.1478,1.4335,-1.3895,0.57477,0.1177,-0.67973,-0.74624,-1.3399,0.4514,-0.60415 1.8888,-1.0657,3.0655,2.2958,1.0409,2.5509,0.024699,0.35881,0.090914,0.37759,-1.0353,0.45273,0.67932,1.3247,0.38544 -0.024897,-0.48908,2.9022,2.1873,0.76586,0.53919,1.0518,-0.16641,1.6781,-0.75152,-1.2686,0.54663,0.36671,-0.64332,0.48292 -1.8781,-0.67557,2.8965,-1.1049,-0.57404,-0.35227,1.162,-0.9067,0.60129,0.024315,0.42213,0.25848,1.1012,-0.73729,-0.94084 -0.85599,0.04417,4.0743,-0.6323,0.24786,-0.12177,1.0388,-0.39555,1.7393,0.13494,-0.15695,0.53955,0.49401,0.22379,0.25315 -0.66778,0.93734,1.1601,-1.7512,-0.83065,1.8267,1.0778,-0.80587,0.60309,-1.2419,0.37134,-1.0458,0.88256,-0.94996,0.61731 -2.7819,-0.30325,1.2205,-1.9504,-0.19192,1.0992,-0.022526,-1.0133,0.89975,-0.8825,1.0109,-0.65194,0.82995,-0.084019,0.24852 -1.2007,-1.3085,1.9192,0.21208,-0.068185,0.7868,0.30794,-0.26108,2.2373,1.2611,-0.55782,-1.7169,0.83332,0.27192,0.60159 -0.18994,-3.4991,3.0002,0.94122,1.9404,0.80371,1.3128,-0.21122,0.74625,-0.91815,-0.91883,-1.0141,0.82416,-0.82835,-0.27269 -1.603,-0.31496,3.7646,-1.4846,-0.17486,-0.48878,0.5561,0.55016,1.5432,-0.65556,-0.1238,-0.54171,0.91514,-1.2448,0.74398 -0.27785,-0.081953,2.449,-1.1822,-0.94028,1.2099,0.76279,-0.88059,1.9777,0.59061,-0.18879,-0.33046,0.48222,0.64131,-0.16103 -2.7655,-2.3793,0.49966,0.68057,1.3356,-2.101,0.52007,0.33317,0.86783,-0.58433,-0.16073,-1.993,-0.93165,0.041313,0.18279 -1.7725,-3.1375,2.0725,0.010163,0.58108,-0.94306,-0.022384,-0.02719,1.8072,0.18379,-0.80857,-1.4498,0.36455,-0.60633,0.20792 -2.7964,-0.10654,0.50402,-0.40192,-0.52062,-0.58954,1.1249,-0.92318,1.757,0.53445,0.028863,-0.42457,1.1346,-0.8791,0.10334 -1.256,-2.261,1.3135,0.93033,-0.31739,-0.38978,0.084827,1.3873,1.6773,0.46767,0.06347,-2.1127,0.059847,-0.58137,0.62567 -3.2518,0.89317,0.57995,-1.3419,-0.20983,0.20474,0.91412,-0.61368,0.34473,-0.81701,0.60915,-1.1165,1.5164,-1.0386,0.55868 -3.838,-0.48849,-0.7453,-1.4573,0.0060989,-0.60296,-0.16244,-1.0212,0.13136,-0.47071,0.12476,-0.55239,1.1376,-0.39834,-0.063161 -2.6057,-0.78443,0.18724,-1.0174,-0.75736,1.0529,-0.75766,0.071617,1.3043,-1.4197,0.67207,-1.1637,1.4532,0.56641,0.29005 -2.4551,1.9274,-0.44357,-0.85337,-0.63922,1.7202,1.1129,-0.79474,-0.39435,0.25849,0.65541,-0.59712,1.4464,0.56697,-0.72449 1.9014,2.4847,0.076505,-0.17486,-0.96098,0.72801,0.056819,0.19617,0.25824,-0.54544,-0.50963,0.7894,-0.22704,0.68822,0.15048 -2.5802,-0.24328,1.0239,-0.60938,-1.208,1.8057,0.23447,-0.96705,1.0498,-0.22231,1.3689,-0.089717,0.25768,1.2227,-0.5979 0.38935,2.0567,1.8986,-0.58236,-0.3925,0.32148,0.51782,-0.20071,0.91604,-0.44645,0.059427,1.3038,1.7649,0.25469,0.64117 -1.3419,0.73932,2.6118,0.29754,-0.83783,0.43036,0.29352,-0.58808,2.1903,-0.25199,1.0518,0.71819,0.38888,1.0631,0.58187 -1.8099,0.97033,0.79657,-1.5425,-1.1958,1.0707,1.0127,-1.3989,0.40983,-0.58655,0.44487,-0.70783,0.0043929,0.30529,-0.48191 -3.4041,-1.3748,-0.94265,-0.83534,-0.35117,-0.1185,-0.90955,-1.0354,1.2852,-0.52104,0.10246,0.16418,0.40578,0.76369,-0.23836 -3.3435,-0.36543,-2.0131,-0.77425,-0.066653,0.43235,-0.62717,-1.2847,-0.39204,-1.1335,-0.14079,0.79508,0.96285,0.51422,-0.27367 -1.4048,-1.8338,-1.1254,-2.3543,-0.62103,2.2814,-1.6148,-1.6461,-1.7214,-0.64317,-1.3868,-0.14992,-1.3888,2.0973,0.76492 -3.0801,-1.5233,-1.7853,-1.3485,0.63254,1.8549,-1.168,-1.71,-0.30864,-1.1627,-0.7535,1.09,-0.61843,1.0837,-0.6176 0.66394,4.0107,2.0915,-1.4591,0.21224,0.36501,-0.10545,0.57966,-1.1084,-1.099,-0.98486,-0.031574,-0.091641,-1.7688,0.46243 2.3855,3.4451,1.2738,-2.1905,-0.10637,0.62256,-1.581,-0.44633,-0.32531,-0.64826,0.26905,0.35561,-0.86153,0.65016,0.20557 -2.1689,2.1443,2.4892,-0.96537,0.59894,1.446,1.6448,-0.48271,-0.63159,-1.7825,0.33084,-0.89763,0.080938,-1.313,0.91152 -3.0359,0.71449,0.67829,-1.4776,1.3715,1.5869,0.79481,-2.3186,-1.5036,-0.57013,0.69258,-1.2342,-0.50466,0.23807,-0.64906 -0.27533,1.6867,3.6358,-2.1117,-0.2271,1.0619,0.18537,0.66113,0.39586,-0.18392,0.46765,-0.61128,0.0045174,-1.2649,0.83133 1.0155,1.8461,3.378,-2.9071,0.13913,1.386,0.39926,0.31961,-0.22839,-1.0465,1.0082,0.76021,0.089172,0.89072,0.35469 2.7216,2.6648,1.8501,-1.6116,0.18336,-0.08483,-0.45387,0.49215,0.92466,-0.32401,-0.86958,0.98347,-0.60067,-1.3059,-0.37965 1.9476,0.59931,3.8864,-0.74356,0.2951,0.81218,0.046842,0.76695,1.9489,-0.062293,-0.42499,0.63866,-0.020438,-0.19657,0.62631 1.8792,-0.58299,3.5415,-0.0041939,0.84344,0.74694,-0.096353,1.4195,2.2171,-0.42148,-0.98339,1.0229,0.76519,-0.33813,0.58061 -2.636,3.2831,1.8482,-0.61611,-0.23337,1.1783,1.1213,-0.093098,-1.1218,0.26375,0.72697,0.65212,-0.097297,-0.32899,0.10757 4.7179,0.40002,1.9983,-1.6339,0.62285,0.85739,-0.02964,0.47447,0.99264,-0.0083243,-0.61401,1.3815,-2.0486,1.7801,-0.38173 1.8737,2.3305,2.7247,-0.41191,0.404,-0.46778,0.083869,-0.0018586,1.5107,-0.39429,-1.5538,1.2967,-0.62021,-1.2138,-0.27006 0.84732,3.2144,2.6731,-0.91459,-0.25834,0.44743,-1.0756,-0.56864,0.41231,-0.67126,0.29611,1.2842,-0.10816,0.58981,0.40792 -2.364,0.51475,1.6661,-1.1547,-0.98615,1.5808,0.83521,-0.34975,0.95009,-0.77088,0.015309,-0.65679,1.1642,0.13407,0.48241 -2.4578,0.96873,1.0793,-0.046455,-0.50649,0.1656,1.1421,0.0038623,2.2261,0.18238,0.43561,-0.054563,0.62934,-0.75522,0.97205 -1.1947,-0.54462,1.6736,1.0551,-0.37274,-0.16444,0.83718,1.2026,2.3993,-1.0255,-0.42487,-0.26435,-0.0018467,-1.0074,1.2004 -2.8683,-0.66689,0.35414,-0.10162,0.58263,0.15139,0.56725,-0.52806,2.3372,0.45607,0.58452,-0.66657,-0.31202,-0.33459,0.3193 -2.8955,1.5381,1.7715,-0.56509,-0.1759,-1.0065,1.1435,0.82711,1.0091,-0.53118,0.35411,-0.3997,0.86991,-1.3773,1.273 1.0342,1.2851,2.3568,1.0291,1.1688,-0.17939,-1.2317,0.45344,1.8422,-0.19494,-0.63993,0.6236,-0.40772,-0.64985,1.1326 -0.97199,-1.7779,3.2557,0.2436,0.71817,-0.12394,1.0425,0.61465,2.2237,-0.43301,-0.57656,-0.2753,0.7884,-0.39956,-0.3879 -0.061406,-0.83008,2.1247,-2.7127,-0.47717,1.513,1.5951,-0.19196,1.3828,-0.89842,-0.29715,-0.28862,0.17693,-0.28669,-1.4707 1.9378,2.8969,0.19781,-0.38864,-0.54221,-0.61974,-1.3091,0.53098,0.11424,0.27365,-1.238,-0.78649,-2.0069,-0.84101,-0.59317 0.4073,1.8422,0.48784,2.07,2.2052,0.57648,-1.3831,-1.4505,0.25346,-1.3139,0.44854,-0.11553,0.27259,0.46408,0.035591 0.90792,2.3608,1.047,1.976,2.1825,0.72163,-0.75063,-2.1311,-0.98239,-0.29421,-0.70695,0.0079364,0.16908,-0.53464,0.14194 -1.0052,0.5454,1.8796,2.2418,2.3519,0.22718,0.88357,-0.62946,-1.3094,-1.7589,-0.71448,1.4011,0.79743,-0.45487,0.58543 0.57183,3.702,2.1798,0.21096,-0.055575,-0.30381,0.016586,-0.71941,-0.30801,1.5063,-1.4604,0.91653,-1.1537,0.014087,-0.046207 0.88106,1.5567,3.735,0.48898,0.4309,0.29316,0.58536,-1.333,1.352,-0.28543,-1.053,1.1473,-1.2305,0.16412,0.3416 1.8671,1.9439,2.7213,1.548,2.2685,0.13816,-0.90956,-1.4894,0.38551,-0.057859,-0.21073,0.35281,-0.3723,0.39015,0.1586 2.7003,2.8225,2.0015,0.12604,1.9833,-0.37045,-0.66766,-1.3787,0.2716,0.88847,-0.94579,-0.12573,-0.86916,-0.94809,-1.0033 0.052985,3.3283,2.415,-0.77286,-0.80039,0.8849,-0.47087,-0.81021,-0.60999,-1.1233,0.322,1.1819,-0.82235,0.96678,0.39875 -1.3419,3.8259,1.1478,-0.56734,-0.45063,0.71523,-0.26068,0.12603,-1.6282,-0.22226,-0.39587,0.97441,-0.66181,-1.0876,0.57236 -0.79344,3.5585,0.98764,-0.16799,-0.45623,0.94281,-0.92145,-0.3246,-0.33682,-0.99403,-0.19293,1.1695,0.10934,-0.28736,0.0060461 -2.1631,3.5044,-0.38291,0.35886,-0.20229,0.51757,-0.59991,2.0359,-0.38793,-0.031962,-0.45572,1.3084,0.26605,-0.456,-0.37823 0.43493,4.0026,0.37953,-0.13446,0.355,0.0051444,-1.8653,-0.11552,-0.57921,1.3268,-0.11889,0.0068014,-0.38833,0.37961,-0.98281 1.2195,3.2658,-1.3178,-0.34645,-0.93322,1.9554,-1.6363,-0.13002,-1.8084,-1.2316,0.4812,-0.69894,-0.2518,0.04642,-0.44049 -3.0736,2.7973,0.55742,-1.1921,0.047339,1.7344,1.8308,-0.21539,-1.7281,0.35345,0.46209,-0.68266,-0.014952,-0.44325,-0.0012658 -2.0355,1.0155,1.7481,0.94102,0.42497,-0.2898,0.55157,0.93075,1.4238,-0.40421,0.6159,0.4163,-0.77158,-0.80187,1.4569 0.81198,2.7598,2.6534,-0.22042,1.0325,-0.92955,-0.69329,0.52799,-0.54047,0.46864,-0.68785,0.74278,-0.63553,-0.75528,0.87799 2.2123,2.715,-1.3373,-2.7695,-0.36542,0.78388,-1.8301,-0.75182,-0.63352,0.11141,1.9492,-1.0552,-0.26596,0.12978,0.058729 2.8798,2.6177,-0.20672,-0.49226,1.0738,-0.51045,-0.48423,-1.5746,1.101,1.4787,-0.99857,-0.37795,-0.35384,0.0058031,-1.5522 0.73515,3.6583,-0.18593,-0.45447,-0.18192,0.71775,-2.1718,0.6573,-0.72621,0.66173,-0.38225,-0.65721,-1.0708,0.30808,-0.4943 0.93549,2.2245,1.108,0.95353,0.61295,0.25405,-1.2771,-1.5366,0.67018,0.26283,-1.0281,0.37984,-1.0701,-0.78455,0.37099 0.39085,1.8531,0.35915,1.9262,0.87099,1.5851,-1.1511,-0.31799,0.14161,-0.38532,0.78689,0.61883,-0.31834,1.9946,-0.22677 -1.8533,0.73262,0.25906,-0.25667,-0.30987,0.84179,1.2291,-2.1136,1.2572,1.9906,0.26632,-0.10489,-0.079392,0.62028,-0.34812 -0.13269,-1.1973,2.3978,-0.035041,0.14448,0.97719,1.0129,-0.9406,2.2061,0.91492,-0.66744,-0.70654,0.80356,1.2072,-1.1193 2.692,1.3752,0.38305,0.49361,3.5609,1.5151,0.63882,-0.642,-1.9483,-1.1299,-0.87686,0.52527,2.2737,0.13754,-0.38743 -0.32104,-0.90305,1.924,-1.8393,2.2968,0.82494,1.4116,-2.4578,-1.9872,1.1042,-0.97888,-1.1321,-0.73701,-1.0466,0.17625 -1.8479,1.668,1.1408,-1.3196,-0.297,1.4982,0.52735,-0.20277,0.58585,-0.71821,1.2278,-0.46012,0.97518,-0.88927,0.50253 3.448,0.3855,0.6006,1.4465,2.798,1.3005,-0.12689,-1.4196,-0.36068,0.16544,0.59688,1.1011,0.9843,0.34427,0.079431 -0.90858,0.1115,1.4046,-0.31964,-0.60137,1.9925,0.29367,0.21362,1.9167,0.68488,0.81017,-0.45786,1.9034,1.8533,0.21394 0.69382,2.0597,3.4268,-1.9904,-0.56315,1.026,0.49983,0.14979,0.50612,-0.34114,0.48832,0.32893,-0.48699,0.63834,0.25121 4.4838,0.83349,-0.2256,0.64558,1.7962,1.37,1.0413,-0.63379,-1.1048,-0.071008,-0.96909,0.21036,-1.7366,0.16634,-0.89209 -3.4215,-0.29176,1.1154,-2.4177,1.0535,1.4104,-0.45104,-0.9758,-0.055804,-1.0105,0.69093,-0.49805,0.45292,0.80428,-0.11321 -0.1906,0.95615,4.1847,-1.3072,0.033874,0.17011,0.5476,0.53481,1.394,-0.42005,-0.25584,0.42523,0.395,-1.4861,0.89596 0.91621,3.1443,0.53199,-0.18872,-0.5019,-0.74293,0.12092,-0.56542,0.84699,-0.032514,-2.4952,0.84362,-0.093395,-0.60508,-0.76785 1.1402,0.47377,1.9649,0.52696,-0.78202,1.5283,1.6173,-0.054883,1.8476,-0.26992,-1.1139,1.214,-1.0758,-1.3502,-0.31943 -1.1058,0.92457,1.77,2.0145,-0.48468,0.60702,-0.59873,0.17483,1.0855,0.63307,-0.98085,1.1876,0.023879,0.75619,0.53741 0.56764,1.1949,1.6725,1.5572,0.19615,0.31476,-1.0073,0.39199,2.2629,-0.49721,-0.23615,1.2906,0.93301,0.74997,0.15837 -0.43492,-0.70841,2.1349,2.7764,0.65755,1.4708,0.15915,0.44795,1.1636,-0.098848,-0.074841,-0.15301,0.46974,0.68753,1.5552 2.7167,2.2754,0.88589,-0.054915,0.76074,-0.70206,-0.47451,-0.99954,1.336,0.17092,-2.0378,0.43875,-0.999,-1.3566,-1.5554 3.3424,0.0050775,-0.49043,-0.39868,2.476,1.5226,0.43958,-2.4052,-0.031346,-1.6184,-0.88982,-0.74848,0.3051,-1.4311,-0.80856 0.59962,1.635,1.2613,1.1396,-0.33163,0.08623,-1.5282,-0.39211,2.1025,-0.52881,-0.76403,1.2591,0.98642,-0.10876,0.17233 0.26801,2.3045,2.0089,2.3534,1.4052,-0.36329,0.061688,-1.9495,-0.66481,0.63441,-0.71371,1.3557,-0.92245,0.10043,0.23601 2.3532,1.7154,-0.85458,-4.4854,1.1796,-0.73366,0.6554,0.82054,0.18876,0.29472,1.4129,0.35461,-0.65104,-2.0619,1.215 0.16437,3.3846,-1.7516,-2.0794,1.4345,0.95157,-1.1313,0.44976,-1.3349,0.57747,1.5335,-1.1809,0.94919,-1.6604,0.53567 0.65042,3.0142,-2.316,-1.4697,1.7762,1.7641,-0.30994,0.15243,-1.0119,0.63233,1.1592,-1.2059,0.31985,-1.5869,0.69024 2.4011,1.5563,-0.16404,-1.6928,1.7366,-1.1139,-0.52271,0.12006,0.53955,2.4341,0.56351,-0.29015,0.035566,-2.1678,-0.14991 0.15679,4.256,-0.47566,-1.7637,0.63632,0.12169,-1.8283,0.30391,-1.5795,0.65966,-0.24726,-0.64514,-0.0033485,-1.127,-0.62753 2.8243,1.81,-0.013889,-4.3415,2.1511,-1.4014,0.44574,1.0004,0.02819,0.065361,0.91197,-0.27689,-0.87503,-2.1684,0.236 2.134,-1.4117,0.13321,0.30461,3.8955,0.11754,1.0904,-0.075544,-0.67351,1.3313,1.0558,-0.25776,-0.21074,-1.1722,2.7057 0.55599,2.4891,-0.88099,-1.1729,0.89519,-1.5417,-1.9585,-0.03233,0.39985,0.65923,1.0689,-0.8984,0.59157,-1.4632,0.18515 1.5961,1.9455,-0.99087,-0.69679,0.84184,-0.35606,-0.8186,-0.41876,0.70513,2.8223,-0.058695,-0.46392,-0.1955,-1.4226,-0.0016258 0.37684,2.7145,-1.8637,-2.4592,0.068605,0.74049,-0.78536,0.17257,-0.7315,1.2384,1.6996,0.043124,1.2253,-1.5534,1.0545 -0.51916,3.6571,-1.2929,-1.124,0.80286,0.42809,-1.9843,0.54686,-0.65473,0.3797,0.64963,-0.65989,1.5358,-1.3909,-0.44495 0.84243,2.9952,-2.2189,-3.1128,0.52194,0.79623,0.11011,0.16699,-1.1479,0.95678,1.3789,-0.33219,0.30805,-1.7496,1.3778 1.004,3.0383,-0.31049,-2.4828,1.1734,-1.1236,-1.5053,0.13223,-0.054276,1.3311,0.95418,-0.88816,0.04406,-1.5329,0.26615 -1.2582,-1.5854,1.9996,-2.6004,0.78079,1.8993,-1.6418,0.6314,-2.069,-0.76321,0.6256,0.51102,-0.30705,4.1407,-0.48695 -0.0035743,-1.589,2.9273,-3.2961,1.5053,1.1079,-1.0601,0.93107,-2.1658,-0.084775,-0.060847,0.37883,-0.44823,4.2251,0.37783 -0.026336,-1.5435,3.016,-2.615,1.3964,0.66465,-0.81469,0.83684,-2.8226,0.57057,0.10492,0.51646,-0.52232,4.6718,0.31181 -0.017992,-2.3684,3.2015,-2.2316,1.7877,0.71568,-0.70266,0.25228,-1.4653,1.0306,-0.12624,-0.30211,-0.41652,4.0864,0.31648 2.4389,-1.8187,3.2136,-3.1908,1.1439,0.3511,0.84749,0.26092,-1.0971,0.77504,-0.54769,0.46547,-1.7174,3.8504,0.1127 0.56421,-1.1792,3.4924,-2.6214,0.89515,0.54321,-0.58425,-0.16585,-0.82192,0.91355,0.12333,0.41248,-0.45858,3.9739,0.30452 0.015504,-2.6475,2.7594,-1.1098,1.9002,1.0577,-0.87655,0.08181,-1.8856,1.2368,-0.15591,0.074995,-0.45219,4.5076,0.58897 -2.3445,-2.4489,0.73079,-2.12,2.3312,1.6482,-1.172,2.0753,-1.8863,-1.3074,-0.62679,0.48131,0.061858,3.2414,-0.3372 -2.4678,-2.7149,1.1273,-1.4633,1.3965,0.94306,-2.0669,0.87813,-0.46739,-0.75011,0.1612,0.55874,-0.5837,3.3563,0.14666 0.2459,-2.3483,2.6306,-1.4678,1.6456,0.39099,-0.84709,0.53462,-1.921,1.9404,-0.61288,0.56084,0.21343,3.9137,-0.21672 0.5914,-4.1061,2.466,-0.51019,1.9263,1.114,-1.5418,-0.2904,-1.6697,1.3774,-0.87705,0.25971,-0.28917,2.9085,1.0154 -2.1569,1.8876,1.9246,-1.4582,-0.89827,1.0964,1.0472,-0.69851,0.11505,-0.1078,0.60714,-0.22481,0.39136,-1.1973,0.86368 2.4187,1.1148,2.8219,0.60893,0.76457,0.83924,-0.30715,0.21076,1.8665,0.17127,-1.5092,0.75584,-0.29478,-0.20563,0.33645 -0.49244,-0.45758,1.826,-2.8116,0.068627,0.99391,0.45657,-0.60708,1.0678,1.6576,-0.97541,-1.2053,0.16137,0.26928,-0.2433 -3.4794,1.3303,1.5189,-1.1799,-0.12564,-0.51273,1.6453,-0.33794,0.081276,0.045299,0.37159,-0.10946,1.0635,-1.2383,0.75532 -1.9745,1.287,2.3208,-1.0867,-0.9578,0.37089,1.1691,-0.29019,1.2694,0.18264,-0.1461,0.639,0.12577,-1.4714,1.1971 4.329,0.59336,1.7767,-2.6125,-0.16637,1.1684,-0.85078,1.2895,0.31989,-0.68202,-0.83987,1.3517,-0.88789,2.2801,-1.7638 -0.88458,1.9239,2.9343,-1.1116,-0.44849,1.6716,-0.75073,0.48806,0.26693,-1.1816,0.50238,0.69864,0.62175,0.81474,1.2028 -0.60021,0.16615,3.4492,-0.34028,0.31762,0.083669,1.9484,-0.75364,1.864,0.70125,-1.017,0.093196,-0.54294,-1.5627,0.24131 -0.13974,0.85423,3.6003,-1.4697,-0.53594,1.1522,1.2939,-0.31956,1.3961,0.60775,-0.71284,0.077489,-0.76913,0.37852,0.24337 -1.697,-1.1732,2.2147,-1.0329,-0.30552,0.49074,1.1382,-2.2669,2.0293,0.99697,-0.52609,-0.28392,-0.62445,0.46379,-0.18663 -1.749,-0.78204,2.9118,-2.0727,-1.0308,1.9141,0.19662,-0.9768,0.55102,0.65502,0.44599,-0.69613,-0.25052,1.9078,0.096443 0.57094,-1.176,3.3404,-1.2835,-0.29781,1.3149,1.8079,0.47135,2.1354,0.72044,-1.0405,-0.3553,-1.3023,0.14494,0.01861 -1.5294,0.91258,3.3793,0.083426,0.34718,-0.32514,1.2928,-0.70073,1.2101,0.71784,0.1767,0.75868,0.15272,-0.42988,0.1207 -2.1488,3.5575,0.89782,0.46767,0.14922,0.84161,-0.58637,2.2752,-0.79675,0.2246,0.60185,0.92721,-0.54123,0.095202,-0.94884 -2.3071,2.4936,-0.40122,1.4035,0.49786,-0.16007,0.35664,2.7337,0.77178,0.35361,-0.42674,0.59237,-1.5685,-0.46293,0.0059683 0.99201,2.0467,3.2693,0.30278,1.3368,-0.3156,-1.3563,0.018402,1.3438,-0.40557,0.28955,1.5647,0.21729,-0.22918,0.15526 -2.3989,2.735,1.4315,0.41611,-0.35014,0.59113,0.55846,0.51624,0.10959,0.78409,0.92954,1.3563,0.10668,-0.66241,0.335 2.8209,1.2363,0.16591,0.36503,1.8568,-0.43117,-1.0713,-2.1671,1.0938,1.4614,1.4395,0.3227,0.12426,0.57196,-0.44164 -1.8906,1.4357,1.2096,1.9291,0.60931,-0.77515,0.54722,1.1083,2.0649,-0.59855,0.23686,0.65813,-0.59253,0.41457,0.63677 1.3281,0.52823,-1.3094,0.17282,2.902,-0.26048,-0.58974,0.16008,1.3592,-0.031723,1.1854,0.67735,1.6494,-1.3561,0.7135 -2.0136,3.4134,0.14178,0.58136,0.80586,0.064289,-0.55581,2.8426,0.35814,-0.46342,-0.25145,0.91902,-0.24315,0.35424,-0.25717 0.30068,2.1943,1.7411,1.5243,0.68448,0.5487,0.50896,-0.01556,1.5024,-0.21083,-1.021,1.3545,1.1221,-0.40729,-0.44908 -1.0546,0.1376,3.2642,-1.7206,-1.3093,0.92446,1.3444,-1.003,1.2465,-0.52977,-0.23299,0.42738,0.20283,-0.16804,-0.14945 0.029327,-0.51671,3.5078,1.8759,0.62231,0.058489,0.74099,-0.45262,1.5736,-1.0846,-0.16964,0.43629,0.29643,0.10469,0.87703 0.84684,-0.50773,3.8432,0.56069,0.36013,1.5136,0.52132,0.62876,1.4655,0.85635,-0.50003,-0.26202,-0.34626,-0.15538,1.5977 -1.0865,-1.7915,2.9249,1.8349,1.4369,0.29277,1.0911,-0.21228,1.8902,-1.0328,0.4687,-0.66623,0.28674,0.32782,0.62639 -3.6582,-1.0252,0.96091,-1.2911,1.0813,-1.3648,0.44983,-1.1397,1.5651,-0.084523,0.13211,-0.39595,-0.079025,1.2381,-0.28985 1.7672,-1.6966,1.0421,0.44888,0.97949,3.1932,-1.6605,1.1408,-1.5319,-1.1572,-1.1698,0.45452,3.0771,1.4147,-0.24505 0.3166,-2.1238,2.6878,1.3879,1.1813,1.7725,1.6666,-2.1092,-0.092981,-0.14778,-0.023563,-0.42743,0.61548,1.0401,-0.78891 -0.98126,1.3407,3.0673,-0.70976,-0.68083,0.47738,-0.20366,0.59889,1.7246,-1.3427,0.088383,0.70473,0.51753,-0.24649,1.6978 0.13317,-2.4921,2.8235,1.9331,1.7093,1.6073,0.94587,1.9838,0.46601,-0.90889,-1.2551,-0.47908,1.3532,0.22319,0.4519 -2.1685,-1.7991,2.039,0.28952,1.1217,-1.1656,0.92833,-0.56614,2.097,-0.41609,-0.17026,-0.66641,0.50883,-0.083948,-0.60451 0.098183,0.7279,3.8184,-1.3487,-1.2079,0.68082,0.51212,-0.74829,0.93956,-0.78902,0.18307,0.64135,0.34243,0.37958,0.36328 0.71064,0.58669,-2.6952,-0.13041,0.51122,-1.0158,-0.52536,1.1317,0.49716,-0.98884,0.58995,-0.62995,0.5381,-0.52123,0.33599 -2.3645,-0.017909,0.87587,-1.5487,-1.1595,0.99548,0.02285,-0.28118,0.12222,-0.73254,1.0632,-0.97271,0.9402,1.3105,-0.13353 -1.8405,0.89061,-3.436,-0.32467,-0.89325,0.68028,-0.45185,-0.46248,-0.36722,0.6466,-0.64372,0.35711,0.72055,0.2851,-0.19493 -1.4935,0.77573,-1.8472,0.88136,-0.97593,1.8485,0.78931,0.29431,1.8982,-0.56468,-0.21591,-0.86177,1.1629,-0.4032,0.54178 -0.54563,0.36881,-1.4103,1.0856,-0.31135,0.83295,-0.51358,1.2955,1.8257,-0.78868,1.0065,0.21951,0.051225,0.26306,0.55274 -1.1119,1.0466,-0.94174,1.9386,-0.64702,0.067737,0.3863,1.8749,1.604,-1.394,-0.26477,-0.54334,-0.55766,0.85867,0.89183 -2.1093,0.8208,-0.53349,-0.16622,-1.0617,1.071,0.086251,-0.48859,1.0651,0.55382,0.48949,-0.5682,1.5697,0.88454,-0.29964 -2.5906,-0.78979,-2.0367,-0.18806,0.065528,-0.63271,0.56756,-0.010532,0.93951,0.21307,-0.99156,-0.74262,1.4513,-0.049363,-0.71957 -2.086,1.2121,-2.124,0.94717,-1.4185,2.8503,1.1335,0.21232,0.30993,0.21034,0.66783,-0.46263,0.68399,0.24144,-0.75185 -3.3606,-0.61555,-2.971,-0.91594,-0.29296,-0.9044,-0.66155,0.39175,-0.053605,-0.22392,-0.67601,-0.4063,0.62692,0.41324,-0.079532 -1.1254,-2.4609,-1.3043,-1.3001,0.035963,0.097889,-1.9237,0.43959,0.74737,0.4734,-2.5604,0.95195,0.86645,-0.61164,1.2699 -1.2396,-2.9637,-0.11403,-2.1505,0.17963,1.3183,-0.52637,-0.32927,1.2372,0.58752,-2.4691,0.68614,0.66807,-0.49421,-1.2006 -2.3031,-2.2914,-0.58558,-1.4858,-0.037118,0.28644,-1.5627,-0.68338,1.5571,0.27571,-1.7102,0.25752,0.81399,0.25757,0.63989 -2.4912,-2.2776,-0.19699,-2.2241,-0.095169,-0.021832,-1.346,0.3274,0.079376,-0.30041,-1.6351,-1.0801,1.1927,-0.81536,0.81039 -2.5345,-1.9433,-0.54314,-0.4544,0.42159,-0.76564,-0.42933,-0.87585,2.1305,0.45771,-0.56783,0.13993,0.42848,-0.57986,0.13505 -2.4723,-1.6597,0.30718,-0.30065,0.31004,-0.46799,0.32953,0.089439,1.882,-0.20864,-0.10825,-1.0322,0.99588,-1.1836,-0.19266 -1.6551,-2.3662,-0.6,-1.9088,0.21779,0.40861,-1.8088,0.93041,-0.38626,-0.15612,-2.3405,-0.2111,1.4296,0.19789,1.9376 -0.86408,-4.0335,2.9418,0.69753,2.5542,1.7486,0.68788,-0.16843,-0.22933,0.16707,-1.3902,-1.3783,1.2461,0.48757,-0.047007 -1.1697,-4.7774,1.4636,-0.090953,3.0402,-0.21536,-0.82487,0.25551,-0.0023538,1.0382,-2.4142,-0.76751,1.1324,1.1334,0.33433 2.8947,-2.7579,2.4481,0.79468,3.6933,2.205,0.060675,1.1728,-2.0949,-1.002,-1.158,0.065154,1.691,0.67022,0.55455 -2.6408,-3.6158,0.11923,-0.80528,1.7544,-0.77964,-2.6256,1.0002,0.25619,0.49489,-1.6046,-0.32877,-0.65378,1.3674,1.7126 -1.351,-4.0714,3.1259,0.42322,2.5642,-0.63865,0.61432,1.5289,-0.27034,-0.76086,-0.98018,-1.7805,0.5781,-0.060055,-0.12954 -3.8191,-1.8852,1.941,-1.6536,0.91314,-0.19635,-0.3747,-0.064371,0.83308,0.058323,0.53779,-0.44528,-0.25741,1.193,-0.0088346 -0.34066,-4.5089,2.4603,-0.10234,2.2604,0.71293,-0.50478,0.13586,-0.31173,1.6383,-1.9959,-0.50938,0.95549,1.4487,-0.68336 -4.2871,-1.0511,-2.0981,-1.3963,1.7492,-1.8029,-0.044337,-0.25571,0.31505,-0.60757,-0.932,0.17823,-1.1864,0.7581,-0.59848 -2.8393,-2.6282,-1.4686,-0.48249,1.3691,-1.7228,-2.1004,0.88904,0.15317,-0.60641,-1.4105,0.28133,-1.66,0.62865,1.825 -0.71992,3.9495,0.52103,-0.52557,-0.40797,-0.15216,-0.41793,0.17065,-1.9478,-1.1292,-0.72291,0.505,-0.87998,-0.86724,-0.17351 -0.68263,2.3009,0.48372,-0.059287,-2.0699,0.7217,0.13745,0.10208,-0.84454,-0.64778,0.21369,0.40562,-1.9725,-0.0767,0.80552 -0.61869,3.8204,-0.74078,0.95159,-0.84771,1.4643,-0.233,-0.044212,-2.5628,-0.54874,-0.4615,0.13411,-0.50954,-0.074692,-0.52524 2.58,2.4017,-0.51192,-1.4392,-0.81414,0.34244,-2.3001,-0.90152,0.37573,0.01455,0.9489,-1.408,-1.2082,0.87768,-0.20547 0.29186,3.2343,0.80982,-1.1545,-0.42696,0.63207,-2.5389,-0.69676,-0.1407,-0.82282,0.5686,0.81736,-0.053281,0.60651,-0.59872 -1.9205,3.5679,1.0279,-0.19139,0.78887,0.6989,-1.0648,1.548,-0.84104,-1.6169,0.3551,0.65443,0.46022,-1.0322,0.68017 -1.4809,3.7988,0.31956,0.26292,0.87015,1.9665,0.057591,1.0981,-2.1804,0.11612,-1.2545,0.099392,-0.73337,-1.264,0.073096 -2.8314,2.5314,1.5598,-0.71819,0.26869,0.82441,0.68311,1.3169,-0.84156,-1.4196,0.65312,0.46763,0.20345,-1.8256,1.1145 -3.0651,1.9211,-0.96135,0.21085,-0.56197,2.8456,1.6075,0.29786,-1.2049,0.55892,0.78379,0.58765,-0.38797,-0.21808,-0.99077 -0.65464,3.7991,-0.75762,-0.03844,-0.0031736,-0.0402,-1.943,1.0859,-1.2564,0.080553,-0.10679,0.34518,0.10077,-0.5644,-1.4262 -2.5174,2.7908,-0.51398,0.53193,0.098845,2.2227,-0.2185,1.9399,-1.6394,0.11248,-0.40631,0.98935,-0.0076017,-0.87385,-0.17871 -0.25452,2.2651,1.7764,1.3196,0.50039,-0.20889,-1.1411,0.026397,0.87757,1.0213,-0.64919,0.87448,-0.90832,-0.66977,0.97025 -2.8334,2.222,-0.92819,0.69254,0.05329,2.0752,1.7309,0.7542,-0.81846,0.0069939,0.41535,0.45141,-0.92698,-1.8098,-0.56614 -0.41242,3.3412,2.0175,0.6474,-0.31087,0.36441,-0.70809,-0.4865,0.10351,0.49268,-0.20689,1.2596,-0.41065,1.4885,-0.063537 -3.3858,0.5025,-0.20559,-1.0736,0.049839,-0.3687,0.87668,1.3076,1.5679,-0.79752,0.71977,-1.1884,-0.87497,-0.61658,-0.42281 -2.2416,-1.3183,2.0557,-0.88359,0.29328,0.58165,-0.028304,-0.58922,1.6648,1.3942,0.4018,-0.71865,-0.2571,0.72067,0.36412 -3.4639,-0.75574,-1.1994,0.07047,1.742,-1.3613,0.73362,-1.092,1.3686,0.32759,-0.01162,0.32391,-0.60584,0.22096,-0.54356 -4.2223,1.391,0.062175,-1.4528,0.67742,0.42866,1.5535,-0.2124,-0.91096,-0.2044,1.4664,-0.023182,-0.56351,-0.97494,-1.002 -2.175,0.6925,2.9267,1.0311,2.0948,-0.68443,0.89588,0.49084,0.30172,0.46361,0.91505,0.23507,-1.5165,-0.89572,0.54639 -3.9263,0.79279,0.29256,-2.3281,1.9763,-0.83737,0.51425,-1.2854,-1.1174,2.0882,0.10353,0.10596,-0.29732,-0.20764,-0.42077 -2.9854,0.24064,0.0020738,0.72661,0.46218,0.84139,1.373,-0.36098,1.8212,0.77796,1.1689,0.10435,-1.3404,0.027796,-0.51219 -2.7935,-1.2107,1.4758,1.3531,1.1742,0.20274,0.9662,-0.51783,2.0757,-0.36606,1.1228,-0.15437,-1.1434,0.88901,0.35809 0.71219,2.2707,1.7542,0.76583,0.53145,0.44061,-1.8872,-0.34609,0.98698,0.75474,0.53022,1.2207,-1.1817,0.67065,0.37588 -2.7629,1.0238,1.5781,-0.27564,-0.91029,0.98346,1.156,-0.96179,0.58761,-0.053553,1.5997,0.98037,-1.0282,0.85952,-0.43797 -2.6825,0.15229,-1.8109,0.97991,1.3085,-0.80881,1.901,0.52142,1.234,0.24239,-0.26863,-1.0297,-1.6039,-0.91768,0.041265 -4.127,0.93194,-2.6176,-1.6547,1.1263,-0.32801,1.4927,0.65581,-0.33066,-0.79622,-0.39768,-1.1502,0.037216,-0.91991,-0.74318 -3.3937,-0.12026,-2.1462,-0.42681,0.97918,-2.0046,0.79666,0.16588,0.8292,0.97725,-0.52818,-0.65649,-0.11655,-0.48579,-0.28204 -2.4219,-0.69195,1.5227,1.0907,0.64568,-0.58174,0.56374,1.6649,1.7161,-0.35131,0.85867,-0.95729,-1.6311,-0.76946,1.466 -3.4343,-1.1229,-1.7254,-1.06,1.451,-2.961,-0.27276,0.16573,0.19248,-0.061136,-0.69916,-0.16891,-0.91794,-0.49257,0.31691 -1.5815,0.010364,1.6102,0.64962,0.30646,-1.2034,0.81058,2.9368,1.0539,-0.65393,0.3797,-1.3668,-1.1663,-0.32866,1.4897 -3.6038,-0.71909,-0.04061,-0.32445,0.41291,-2.2572,1.3512,0.12431,1.5574,-0.32447,0.3258,-0.44196,-0.64064,-0.1849,0.21959 -4.3779,0.61902,-1.612,-1.3035,0.47642,-0.38273,1.9528,0.23176,-0.16869,-1.3546,0.19287,-0.7873,0.25141,0.009163,-0.49661 -3.7609,-0.014043,-2.1393,-1.2813,-0.20243,-1.1128,1.3598,0.25378,0.41614,-0.97806,-0.049742,-1.0569,-0.65762,-0.43862,-0.6083 -3.7078,0.095222,0.93841,-1.8687,0.80456,0.2343,1.4783,-2.0739,-1.0083,-0.72725,-0.3097,-0.74636,0.99089,-0.48387,-0.11029 -3.733,0.36573,-0.77789,-1.313,0.79939,-0.1236,0.48729,-0.75992,0.97111,0.3277,0.40875,-0.28666,0.92392,-0.30551,-0.17284 -2.4174,-1.4603,1.5753,1.2228,1.9584,-1.6161,1.9283,0.4017,0.45485,-0.36585,-0.15575,-1.122,-0.51532,-1.9388,0.79961 -3.0023,-3.2081,0.95298,-0.91242,1.2027,-2.1696,-0.31989,-0.15212,1.0859,-0.16497,-1.0839,-0.95818,-0.14523,-0.58667,0.15344 -1.4453,-2.3933,3.3985,0.15757,1.4819,0.033088,1.3899,0.036145,1.8206,-0.36478,-0.76093,-0.33208,0.26407,-0.74142,-0.64623 -3.8112,-1.1023,-1.1413,-1.2345,0.32067,-1.7512,-0.024054,-0.52011,1.4123,-0.79,0.29408,-0.22043,0.041891,0.36828,-0.034545 3.3864,-0.028024,-0.30769,0.29811,0.93995,1.5082,-0.44087,-0.2635,1.6296,-1.2399,-0.36381,0.73587,-1.7406,-0.055553,-1.4057 -1.1071,0.38462,1.8351,-1.6195,-1.3086,1.1979,1.4836,-1.159,1.6324,-0.57161,-0.17084,-0.43804,0.33758,-1.5165,0.081881 -0.94776,-1.5884,2.34,0.27458,0.95204,0.87218,1.2849,-1.7897,1.7409,-0.45696,-0.40409,-0.70723,0.71324,-1.2236,-0.090261 -1.9056,-0.048863,0.015643,1.2813,0.16991,-0.46514,1.2971,-0.13866,2.3527,-0.22293,0.37065,-0.55746,0.44421,-1.0123,0.32985 -0.70974,-2.7949,1.7135,0.20139,0.98401,1.968,0.59367,-1.4036,1.7058,0.36422,-1.1848,-1.4088,0.67167,0.84429,0.051754 -0.38161,-1.7129,2.8252,-0.12489,0.93415,1.5676,1.28,0.18399,2.1163,1.1302,-0.84338,-1.1572,0.14326,-0.27949,0.073488 -1.8068,-3.0207,0.19295,0.19119,1.888,0.36102,-1.0884,-1.3641,1.4526,0.37455,-1.4342,0.019801,-0.076394,-0.15948,1.2541 0.36246,0.55745,1.9315,-1.1656,-0.63358,1.3676,0.85796,0.5222,2.4121,0.025517,-0.3575,-0.17256,-0.055787,-0.63672,0.084393 -0.59781,-2.3114,3.0552,-2.4844,0.49553,1.4058,-0.36959,-0.61141,1.176,0.85065,-1.7319,-0.71021,0.24605,2.0259,-0.57198 -1.4161,-0.89033,1.9084,-2.8221,0.56186,-0.30903,1.1322,-2.011,0.50841,-0.26452,-2.065,0.2059,-0.46535,-0.098729,-1.4324 -1.8836,4.0841,0.87981,-0.46235,-0.1467,1.5682,1.2538,-0.15606,-2.4958,0.53326,-1.1087,0.81001,-0.36347,0.20557,0.20086 -1.8897,4.126,1.5173,-0.28092,0.28657,0.47749,-0.35096,1.5315,-1.2973,0.97978,-0.22612,0.88676,0.21225,-0.39509,0.34001 -3.0243,3.516,0.99938,-0.034966,0.76051,1.0276,0.91311,0.90371,-1.0945,-1.2956,0.47631,0.96171,0.21802,-0.084023,-0.10307 0.85843,3.0477,3.2081,-0.657,0.38711,-0.30912,0.29873,-0.33298,0.63313,0.25884,-1.1823,1.4213,-0.37829,-0.43349,-0.34123 0.3355,3.5563,2.0911,0.55995,0.59309,-0.2991,-1.0999,0.030929,0.052443,1.2318,-0.1993,1.1437,-0.77469,-0.16884,0.22672 -1.4973,2.4157,2.8688,-0.10695,0.70611,-0.92403,0.31491,0.77028,1.1086,0.3866,0.17396,0.40223,0.21545,-0.40695,0.9783 0.58101,2.395,3.6308,-1.1706,-0.372,0.45611,-0.53439,-0.56255,0.31904,-1.176,0.16299,1.161,-0.15295,1.3889,0.30318 -4.5438,-0.25936,-0.66029,-1.7177,1.5922,0.85179,0.30744,-1.5278,-0.81123,-0.84921,-0.38642,-0.047043,0.42503,0.67695,-1.0288 -1.907,1.0451,3.5257,-0.39539,0.30517,-0.98917,0.80492,0.35026,1.0979,0.35076,-0.021242,0.15519,-0.18225,-1.4627,1.0428 -4.5652,0.080892,-0.44464,-2.1536,1.9294,-0.46015,0.63635,-1.5679,-1.3148,-0.54309,-0.58412,-0.37071,0.57422,0.22269,-0.10249 -3.8189,1.7678,1.227,-0.78414,0.65808,-0.036022,1.3066,1.2489,0.34647,-1.1208,1.0392,0.013428,-0.96043,-0.31083,-0.3889 -2.36,3.5739,1.9509,-0.76559,0.12235,0.85943,1.5086,-0.33752,-2.0065,0.21786,0.010889,0.13478,-0.57607,-0.33939,0.46972 -4.0226,1.8453,0.12398,-1.0477,0.48046,0.85177,1.7013,-0.26576,-1.4811,1.3066,0.47859,0.38247,0.24138,-0.26997,-0.21276 -3.7434,-0.043362,-1.9029,-1.0787,0.42339,1.2635,-0.78185,-0.73629,-0.88632,-0.38873,0.38639,-0.26672,0.49084,0.56765,-0.66829 -3.9861,-1.2366,-2.1034,-1.0632,0.15113,1.4106,-0.63696,-0.036797,-0.0041934,0.0070635,-0.48574,-0.035773,0.7088,0.8996,-1.0431 0.67084,0.78387,0.88478,-2.0871,-1.9265,2.7208,1.2168,0.97462,-0.39379,-1.3495,0.38564,-1.4624,-1.2435,0.047543,0.14083 -3.5616,-0.58371,-0.085992,-1.7109,-0.0044599,0.51765,-0.69936,-1.0317,0.27799,-0.32969,0.29485,-0.78031,1.2909,0.55093,0.049579 -2.0054,-1.1132,-1.6371,-0.81772,0.48547,2.7669,-1.4561,-1.0251,-1.1679,-0.59006,-0.31742,0.76146,0.32358,1.381,0.6276 -3.1374,-1.3083,-1.1528,-1.4778,-0.16312,0.61742,-1.8625,-1.0441,-0.66093,-0.45703,0.074436,0.62234,0.42565,0.62247,0.3258 -3.2308,-0.47629,-2.2013,-1.1106,0.38194,1.0425,-1.1274,-1.3673,-0.25633,-0.91952,-0.45104,0.36613,0.96096,0.26583,0.27974 -3.9575,0.037038,-2.9807,-1.0608,1.7571,0.52945,1.0782,-0.96014,0.01568,-0.96025,-0.95608,0.03072,0.29078,0.45451,-1.2524 -3.5805,2.0729,-0.054817,-0.45242,-0.12266,1.5185,1.2507,0.6698,-0.28469,0.67523,1.1971,-0.25782,0.40261,-0.45677,-0.27934 -3.1936,0.78739,-1.7013,-0.72881,-0.21118,1.3814,0.98159,-2.079,-1.217,0.5173,0.67387,-0.22722,0.3964,0.033141,-1.2662 -0.64587,-0.31077,2.7523,-1.1639,0.8097,1.0569,0.8659,-0.10261,1.8637,1.7546,-1.2427,-1.6503,-0.66588,0.30785,0.25908 -4.1929,0.066823,-2.0259,-1.6984,1.8431,-0.24534,0.27009,-0.81669,-0.6073,-1.3988,-0.48833,-0.25975,0.033766,0.10989,-0.23894 -3.7633,-1.387,-1.8159,-1.7142,0.929,-0.13838,-1.0806,-1.2362,-0.21206,-2.1687,-0.53489,0.80532,0.24162,0.15746,0.30467 -3.4242,-0.51672,0.43775,-0.26806,2.0628,-0.73012,0.62668,-0.54661,1.146,0.56968,0.21529,-0.65457,-0.70747,0.60506,-0.39472 -4.0504,-0.59712,-1.608,-1.7624,0.30271,-0.69244,0.23,-0.19876,0.46081,-2.043,-0.13886,-0.9442,-0.028473,0.47303,-0.56579 -1.9876,-1.6273,2.8231,-0.68943,0.67303,-1.0939,0.046089,1.4052,2.1281,-0.82488,0.47571,-1.4516,0.90366,0.71187,0.20629 -2.7762,-2.15,0.62424,0.13141,1.0808,-2.3073,0.31806,-0.29858,0.73942,-0.78574,-0.37556,-0.69556,0.0085728,-0.21984,-0.41935 -1.8683,-3.0157,-0.21072,1.3772,1.6623,-1.3263,0.63224,-0.49576,0.52677,-1.4073,-0.49227,-1.3684,0.21235,-0.09154,0.0075112 -3.9985,0.85508,-3.1693,-1.5287,1.6405,0.40322,0.094687,0.21086,-0.79405,0.34113,-0.8342,0.15277,0.41711,0.59485,-0.92471 -1.3544,-0.85598,1.454,1.8208,0.9341,-0.44334,1.3839,0.21873,1.9816,-1.2726,0.79681,-0.49763,0.12349,0.18912,0.39989 -3.2094,0.8431,-0.10916,-0.51635,0.042254,-0.17155,0.87798,1.4178,1.6376,-0.50794,0.54776,-1.267,-0.33573,-0.48545,0.1837 0.57543,2.6567,0.56918,1.9139,1.3023,-0.35907,-1.2158,-0.6443,1.3101,0.40471,-0.92167,0.63771,0.33246,-0.048945,-0.0068748 2.6557,1.127,0.25407,0.76797,1.2847,-0.14631,-1.2334,-2.7146,1.638,-0.29886,0.44096,0.2577,0.52772,0.3777,-0.43103 -1.6789,2.2299,0.3962,1.3047,-0.99179,1.119,0.61943,-0.063112,0.56636,0.97143,0.20677,1.361,-0.25535,1.4202,0.4801 -0.0095025,3.8153,0.66246,-0.047483,-0.71619,0.4862,-0.36272,-0.22952,-0.96465,1.6534,-1.4237,0.4597,0.28413,-0.22569,-0.27343 -0.25151,2.2803,0.60795,1.4827,-0.99613,0.24675,-0.8459,-1.046,0.44176,0.82686,0.077362,1.1356,-0.28405,1.5295,-0.60171 -2.0016,2.0439,0.36935,0.65924,-0.45565,-0.22786,0.96776,-0.48859,-0.10568,1.9892,-0.019908,1.4649,0.24519,0.3607,-0.23043 -0.72933,0.17672,1.5048,2.7637,0.56647,1.4182,-0.22839,-0.43876,0.99585,-0.93561,-0.10986,0.93638,-0.38479,0.34628,1.187 -1.2884,1.5717,0.73926,2.1123,-0.10726,0.36755,-0.68378,-0.5828,0.77176,-0.81791,0.33563,1.775,-0.96816,1.1965,-0.32808 -2.987,1.105,0.19048,0.3954,-0.63428,0.75901,1.0385,0.40882,1.2004,0.10779,1.1008,1.307,-0.4283,0.66137,-0.50589 -2.1633,2.0918,-0.019055,1.9146,-0.19906,0.95116,0.64647,0.60064,-0.037131,1.6618,0.49833,1.3844,-1.1652,0.13563,-0.089686 -0.45255,2.4919,0.89869,0.38655,-1.3404,2.0396,-0.73008,-0.55301,0.37821,-1.4184,0.2115,1.2578,0.64815,0.72988,0.51998 -1.9449,1.5033,1.3583,0.52937,-0.76039,1.0503,0.97655,-0.74767,1.0254,1.9604,0.44054,0.65282,-0.54189,-0.56051,0.5231 -3.6066,0.55356,-2.901,-1.1488,3.2475,-0.019243,0.44676,-0.50175,-1.5446,0.02672,-0.98459,1.5134,-0.27815,-0.11995,-0.15941 -3.7289,-1.0451,2.6884,-2.3528,1.2916,-0.52325,0.062291,-1.5387,-0.072674,-0.073452,-0.061248,0.041221,-0.24389,0.56627,0.12884 -3.9751,-1.6262,-1.1578,-1.9038,2.6085,0.57706,-0.82125,-1.6677,-0.92816,-1.8311,-1.3194,1.2981,-1.0456,0.36563,-0.16053 -3.7688,-0.93165,2.6536,-2.1313,0.94932,-0.024549,0.28552,-1.0846,0.42204,-0.29803,0.57217,0.06413,-0.35249,0.9287,-0.10122 -1.0668,1.5687,3.5759,-2.4636,0.18401,0.54044,1.0619,0.51009,-0.25799,-0.56867,-0.0047671,-0.99029,-0.9926,-1.3392,0.76258 -1.7922,0.18013,2.7588,1.0353,1.7439,-0.27902,1.3785,-1.377,0.77515,1.1644,0.8068,-0.57996,-0.33639,0.37623,0.30434 -4.1148,-0.87176,1.4675,-2.7529,1.7049,-0.16482,0.11778,-1.9981,-0.8211,-0.58833,-0.18288,-0.046741,0.075661,0.30545,0.33864 -3.0588,-1.2124,3.315,-2.8053,0.83373,0.70228,-0.29074,-1.1947,-0.42082,-0.9149,-0.0061209,-0.26723,-0.13787,1.6305,0.055047 -3.2979,-0.60434,0.90651,-3.1927,1.739,0.81114,0.12724,-2.7352,-1.9725,-0.18023,-0.53875,0.21435,-1.31,0.99488,0.1268 0.20249,0.90787,4.0113,-0.83616,-0.29372,-0.088557,1.1432,-0.10296,1.4203,0.47987,-0.88769,0.27537,-1.2191,-0.96959,0.9911 -2.0626,-0.73518,3.0529,0.58999,1.7096,-0.6056,1.6448,-1.361,0.86987,0.78248,0.34001,-0.23407,-0.26277,-0.058589,0.64234 -4.1685,1.0437,-1.0217,-1.8669,1.7239,0.61051,1.1123,-1.8391,-1.6602,0.94562,-0.03544,0.44937,0.097672,0.5528,-1.1129 -0.9698,-2.3728,4.6225,-0.14554,2.5794,-1.214,0.3062,1.4256,-0.31211,-0.62472,-0.046319,-0.62397,0.040096,0.54384,-0.059417 -4.613,-0.92302,0.8454,-2.1934,2.3829,-1.3726,-0.41825,-0.58971,-0.60882,-0.25088,-0.40469,-0.34383,-0.28657,0.97232,0.35953 0.87179,0.35594,4.1994,0.44152,1.9239,0.72614,1.3266,-0.70427,0.33241,0.9317,-0.62432,-0.37753,-0.84417,-0.052875,0.25886 -1.4391,-1.8937,4.1735,-1.3819,2.5099,-0.84504,0.91691,-0.62504,0.17873,0.73523,-0.64227,-0.3943,-0.34701,0.23917,-0.14706 -1.9135,-3.9752,2.2372,0.41266,2.9912,0.4136,-0.41204,-0.61684,0.18562,0.11119,-1.0812,-1.0537,0.35853,1.475,0.69315 -0.18857,-2.6199,5.1426,-0.91655,2.3276,-0.22864,0.97129,0.43052,-0.036344,0.16481,-0.87231,-0.12006,0.27143,0.41292,-0.74892 -4.2203,-0.24247,2.3603,-1.8636,2.091,-0.959,0.4697,0.38669,0.12103,-0.10985,0.61194,-0.64293,-0.98176,0.26185,-0.097829 -1.3135,-2.0417,4.1046,-0.60764,3.2925,-0.97126,1.3996,-0.65954,-0.42945,0.32128,-0.45982,-0.31459,-0.15302,0.020999,-0.16057 -2.4293,0.77532,3.6435,-2.7842,0.83334,-0.4555,0.92631,-0.96366,-0.30954,-0.45013,-0.15819,-0.56202,0.27607,0.51907,0.033703 -4.3076,0.37861,0.62229,-1.3689,0.57814,0.6147,1.2965,0.19029,0.24815,-1.6703,0.91336,-0.61778,0.095371,-0.97419,-0.18152 -3.1179,3.1279,0.11947,0.20787,0.54569,1.3914,1.232,1.265,-1.4358,-0.16799,-0.1578,0.7624,0.030583,-1.6665,0.37384 -1.9363,2.722,2.8661,-1.2035,-0.34381,0.45576,0.69581,-0.24305,-0.76502,-0.26753,0.030157,0.60431,-0.58316,-1.2167,1.0556 -3.1944,3.062,1.5995,-0.16997,0.885,0.51916,1.0199,0.0067091,-1.6338,-1.0552,-0.12752,1.2216,0.00082254,0.34768,-0.36813 -3.1867,0.067381,0.99963,-2.4162,1.0703,1.6245,0.47874,-1.6359,-2.193,0.57729,0.18104,-0.44268,-1.6097,-0.06223,-0.10469 -0.4763,2.0783,3.8879,-1.1073,0.52443,-0.60064,0.3451,-0.16377,0.91797,-0.73482,-0.071408,0.95823,0.0069955,0.2868,0.82673 -4.0989,1.0814,1.1343,-1.4531,1.1782,0.60402,1.5814,0.31667,-0.045806,-2.0411,0.8144,-0.83553,0.096251,-1.2019,-0.34205 -1.7785,1.1186,3.5335,-3.1665,0.40851,0.32577,1.2777,0.22376,-0.79355,-0.90643,-0.11517,-1.3663,-0.3229,-1.5684,0.55537 -0.27857,1.3736,4.115,-2.5689,-0.25342,0.21003,0.81636,0.57663,-0.22808,-0.0071867,-0.17295,-0.31014,-0.89501,-1.4375,0.21403 -3.3629,2.7516,1.5239,-0.91145,0.72952,1.2924,1.3734,0.11948,-2.0619,0.33161,0.74582,-0.041806,-0.91492,-0.77004,-0.18832 -4.2286,0.5726,0.25685,-1.4304,2.0755,1.535,1.3946,-0.8294,-0.94102,-0.34851,0.11693,-0.67465,-0.85223,-0.81622,-0.81042 -0.85552,1.0097,4.4347,-2.0827,0.35592,-0.32315,1.1091,0.21073,0.42371,0.17949,-0.65243,-0.11063,-1.2355,-1.1012,0.64106 -4.6143,1.6011,0.58985,-1.1261,1.8403,0.44909,1.8619,0.66917,-0.85437,-1.5639,0.22907,-0.83042,-0.69506,-0.50071,-0.95768 -4.2204,1.4525,-0.2021,-1.3103,0.74983,0.21098,1.0363,0.044642,-0.83952,1.5591,1.1056,-0.053084,-0.062284,-0.88709,-0.72488 -1.4155,2.5243,3.0035,0.00086566,1.5181,-1.2283,-0.70798,1.5135,0.24065,-0.85905,0.47664,0.67811,-0.52214,0.25099,0.22703 -3.7744,2.5054,2.0025,-0.7026,1.6544,-0.58536,0.82774,1.3552,-1.1504,-0.23082,0.22527,-0.08149,-0.78528,-0.23449,-0.063992 -2.7171,1.6072,2.9644,0.18254,1.773,-1.2449,0.83903,0.9132,-0.22836,0.54357,0.40153,0.37336,-0.8137,-0.66336,-0.066804 -4.308,1.8947,1.1815,-0.75862,1.6617,-0.85059,1.4795,0.9575,-0.60076,0.54648,0.38087,-0.049384,-0.492,0.034606,0.016692 1.4078,-0.76717,2.8179,0.90229,0.58288,0.9214,0.54747,1.6317,1.5709,-0.14533,-1.9587,0.19493,0.095585,-0.7625,0.36279 -0.20013,-0.87457,3.1699,-0.34757,-0.17027,1.1476,1.3298,-0.77073,1.7823,0.89539,-0.44865,-0.11613,-0.6077,-0.14023,1.335 -3.5066,0.70195,-0.44803,-0.97678,-0.29798,1.4143,1.6486,-1.4356,0.1446,-1.2002,0.8436,0.55866,0.43855,0.038053,-1.1231 -1.7896,1.0921,2.618,-0.81246,-0.5253,-0.34907,-0.27763,0.69322,1.2725,-1.7311,0.54139,0.27924,0.84645,-0.75074,1.1696 -1.6711,-1.7231,0.3811,-1.5652,0.45794,0.77539,-1.6452,-0.99968,-0.0054491,0.49584,-1.2397,0.4065,0.60889,2.1855,1.3818 0.092186,-4.9343,0.13732,0.15812,2.6288,1.6838,-0.43064,0.3548,-0.44093,-0.17244,-2.9735,-0.064322,1.6255,0.91786,0.52165 -0.93572,-2.5775,0.59509,-1.0128,1.0858,-0.048584,-2.0296,-1.0247,0.82866,0.86512,-2.5511,1.0182,-0.08997,-0.1504,1.9457 -2.5654,-0.51252,1.6799,-1.4394,-0.056922,0.32901,-0.33532,-0.29601,1.6794,0.097609,0.38855,-1.3049,1.5404,0.75742,-0.18968 1.1907,0.25082,0.98272,2.5239,2.5905,0.0035585,-1.1122,0.17957,1.1722,-1.6104,0.32383,0.58861,0.79297,0.41618,0.45617 3.0266,-1.0659,0.94824,0.52104,2.8364,1.9066,-0.58452,-0.0069821,0.14498,-1.6437,-0.59693,1.1266,1.9414,0.63438,0.13606 -1.6318,-3.0508,0.72831,-0.67037,0.97689,0.025742,-1.4146,0.52211,0.98724,1.542,-1.9631,-1.0813,0.78516,1.2299,1.463 -0.95783,-2.6678,0.83626,-0.60522,0.62331,1.5944,-0.78188,-1.0718,1.6114,1.1666,-1.402,-0.35489,0.44873,1.6533,0.42269 -1.859,-2.4842,1.8257,-0.44784,0.64012,0.5109,-0.79048,0.31493,1.9393,1.1199,-0.76089,-1.1562,1.0703,1.4676,-0.033234 0.58474,0.83603,2.4223,-2.3164,-0.52729,1.4197,1.2779,0.77707,0.5076,0.28634,-0.12901,0.046952,1.4516,2.5618,-0.47277 0.13272,-0.10065,1.9444,-1.0495,-0.65738,1.8164,1.5797,-0.314,0.88005,2.3897,-0.75975,-1.1935,0.026327,2.442,-0.3711 -1.1211,-2.2624,1.7722,-2.0071,-0.1167,0.40688,0.38905,0.48153,1.1312,1.1091,-1.7319,-1.1658,0.90165,0.75025,-0.22645 0.60407,-0.81956,2.4296,2.5789,1.5349,0.59152,0.36811,2.1407,0.89254,-0.11095,-0.40857,0.25655,0.94666,1.2564,0.74758 -2.1974,-1.6138,-0.27258,0.9669,0.35846,0.80197,-0.31052,-0.78342,1.6269,1.0755,0.36839,-0.88193,0.23304,2.2286,-0.31864 -1.6203,-1.3331,1.3188,2.0605,1.2691,1.487,0.71688,0.28829,1.3737,0.038821,0.86588,-1.0996,-0.10011,1.6834,0.14504 0.097397,-2.3041,0.64751,0.7121,1.1872,1.3816,2.0322,-0.11796,0.93131,0.96592,-1.5214,-0.96561,1.7277,0.86007,-1.3669 1.378,1.403,1.8923,-3.9132,0.43089,1.6755,0.94803,3.0985,-1.3212,-0.41014,0.10855,-0.14649,-0.54724,-0.33636,-0.21617 -2.2312,-0.77891,1.8313,-1.3351,-0.22032,0.34103,0.32901,1.3002,1.7577,0.30884,-0.093963,-1.3981,1.983,0.79023,0.26882 -3.8029,-0.41669,-0.107,-2.1095,0.39362,-0.65282,0.5107,-0.77197,-0.81445,-0.9649,-0.45727,-1.4019,0.97622,-1.3588,0.31652 0.37275,0.75682,4.0144,-2.1541,0.29904,0.49822,0.10869,1.4788,1.0993,-1.6342,-0.24785,0.8399,1.5692,0.47337,0.39316 -1.0596,-2.3172,3.7493,-1.7931,0.51206,-1.0171,0.30133,2.5578,0.48904,-0.057033,-0.40782,-1.4481,0.82668,-0.073635,0.11525 2.8302,0.45341,3.3625,-2.1883,1.1847,1.016,2.0844,1.9541,1.0216,0.0074322,-0.78284,0.86682,-0.61274,1.8387,-1.8669 2.4007,0.074096,3.2712,-0.91531,-0.26685,0.79636,0.682,1.4485,1.2553,0.28437,-1.1948,0.81469,-0.43419,1.4049,-0.68965 1.3846,1.5972,3.3672,-2.2783,1.3509,-0.45936,0.29301,2.559,-0.25064,-1.236,-0.58669,0.90697,1.4926,-1.1886,0.59411 -2.3999,-0.40982,0.94312,-2.0601,-0.63129,1.3953,-0.0057447,-0.10204,0.237,-1.1668,-0.47505,-1.6783,1.3506,-0.69153,0.74781 2.9914,-1.4099,1.4953,1.5747,1.9214,0.98341,0.9294,2.3848,-0.36853,-0.74681,-1.4219,0.74435,1.3457,0.6125,-0.59423 1.0543,0.039329,2.6128,-1.909,-0.55465,0.48182,0.25917,3.0546,0.63656,-1.1685,-0.78096,0.5742,1.3651,-0.12345,0.51436 0.91256,-0.012237,3.1886,-1.0768,-1.1857,1.6997,0.77527,0.35955,1.7887,-0.25517,-0.70932,0.62492,-0.53114,1.5033,0.098595 1.9431,0.51045,1.731,-3.8132,-0.52545,0.43897,1.1271,0.51901,0.36391,-0.62045,-0.4836,-0.35301,-1.5174,0.6413,-0.14067 4.5866,1.5704,0.45113,-1.4237,2.672,-0.99375,0.77734,0.20572,0.18932,0.56725,-0.76775,0.92408,-1.6242,-1.522,-0.77544 0.38333,0.2256,3.149,-2.4487,0.21967,-0.090469,1.564,-1.3051,0.77968,0.27773,-1.0444,-0.88393,-2.4639,0.93586,-0.73657 1.2235,3.9764,2.4608,-0.70751,0.87817,-0.83244,-1.0798,-0.89862,-0.28642,0.39318,-0.20451,0.31892,-1.0259,0.67755,-0.099238 -1.5651,3.1415,2.2466,0.25695,0.69221,1.4504,-0.47351,1.1179,-0.013014,0.063027,0.48513,0.43945,0.075704,0.97581,0.44404 -1.2004,3.591,1.2095,0.14477,1.0257,2.1429,-0.8105,1.2009,-0.097848,-1.4044,0.36268,0.7152,0.69675,1.3143,-0.10959 -1.4575,4.2476,1.4611,-0.33166,0.8457,0.35324,-1.3424,1.3757,-1.1187,0.080106,0.20461,0.65144,-0.16721,-0.37278,-0.38724 2.3808,3.2206,-0.074638,-1.4098,-0.76544,0.98155,-1.986,0.05845,-0.92037,0.036457,0.39291,-1.2386,-0.70758,0.46371,-0.46 1.8515,1.3508,1.2765,1.7008,3.3992,-0.32724,-1.5968,-1.6056,0.81769,-0.29331,0.94648,-0.038686,-0.097429,0.42441,-0.099908 1.7284,2.9548,0.74913,-0.14391,2.9643,-1.496,-2.0385,-0.17022,-0.35741,1.9151,0.7933,-0.99754,-0.69133,-1.0485,-0.52353 3.1275,-0.14,2.2621,-0.23577,1.8733,-0.49176,-1.4664,0.37973,1.8621,-0.92108,-0.84964,1.3141,0.79351,-0.66783,-0.85233 0.70152,2.2763,2.2577,1.5275,0.52741,0.28603,-0.34152,-1.246,0.97026,0.17659,0.11689,1.2322,-0.36473,0.94817,0.72002 -0.44756,1.7633,0.66715,2.8905,2.0419,-0.34335,-0.54703,-0.26152,0.82987,-1.1416,-0.017133,0.83025,-0.69178,0.83013,0.11056 1.86,1.5718,0.78887,1.693,1.8504,1.0933,-0.65523,-1.6045,-0.15514,-0.70812,-0.61703,0.41798,1.1411,0.11617,-0.098477 2.1886,0.65895,2.0083,-0.32243,-0.048386,0.41896,-1.9341,0.33434,1.6502,-0.46067,-0.74969,1.3338,0.92744,0.88963,-0.69167 0.77259,2.729,1.0056,1.5195,-0.59473,1.2149,-0.34331,-0.61193,0.69423,0.84215,-1.2369,0.66528,0.10066,0.064669,-0.012365 -0.68241,2.4559,0.75921,0.59837,-0.60057,1.0231,-1.0966,0.66436,1.3455,-1.0101,0.33947,0.92541,1.2143,0.64165,0.73927 1.3385,-0.068865,2.7659,1.4601,0.11813,1.7758,0.50218,-0.85867,1.5886,-0.73091,-1.0249,1.0166,-0.25368,-0.041324,0.57178 1.1034,2.0306,1.6175,0.4315,-1.2939,0.82933,0.69157,-0.61574,1.0267,0.053816,-1.0802,1.2465,-0.97484,-0.34037,-0.59169 1.3287,-0.28022,2.7263,0.91116,-0.4085,2.0171,1.6138,-0.50591,1.2015,-0.18953,-1.3784,-0.009775,-1.7586,0.76253,-0.13808 -1.7942,2.654,2.9324,-1.3003,0.061323,-0.029364,0.11925,1.1705,-0.2063,-0.35229,0.49939,0.43849,-0.13502,-1.6057,1.5754 -3.1352,2.5943,1.6408,-1.0264,-0.18949,1.1009,1.0915,0.21535,-0.54387,1.0935,0.87204,-0.11882,0.12171,-0.11763,-0.22218 -3.806,1.1013,0.95201,-1.1561,0.19579,-0.89816,1.3573,0.96623,0.49755,-0.88603,0.75563,-1.2706,0.6636,-1.0703,0.9134 -1.9518,-0.30692,2.8796,-0.047058,-0.23644,-1.3207,0.88013,0.85822,2.1444,-0.1807,0.10466,-0.32801,0.22469,-1.0459,1.3208 -1.6638,1.5814,3.1864,-1.6958,-0.64399,1.609,0.22245,0.47359,0.1961,0.52946,0.74326,-0.19225,0.061427,-0.086826,0.70533 -3.4474,1.7966,0.21531,-0.93517,-0.30262,0.94568,1.6129,-1.0508,-0.60864,0.57983,1.0861,0.98629,0.25479,-0.068028,-0.13539 0.73269,1.0558,4.2684,-1.401,1.1452,-0.43275,-1.1562,1.388,0.87767,-1.5005,-0.60791,0.93829,0.6586,0.33924,0.4099 -1.0446,2.0826,4.269,-1.7125,0.35642,0.18399,0.45699,-0.1224,0.070833,-0.47158,0.50977,0.63398,-0.20327,0.38751,0.54423 -4.5288,-0.54161,0.49686,-2.2465,1.5682,-1.121,0.029614,-1.2824,0.11594,-0.10297,0.15298,0.36628,0.028127,0.56118,-0.47984 -1.6742,0.63219,3.2732,0.089676,0.046227,0.2104,0.70075,-1.308,1.0091,1.1438,0.61991,0.45587,-0.78838,1.1413,0.048337 -1.0505,1.5747,3.4727,-1.599,-1.0715,1.582,0.56224,-0.76917,-0.088549,-1.0763,0.071972,0.4353,-0.92905,1.0862,0.56429 -1.2841,3.8985,2.7343,-0.98557,0.12193,0.40756,-0.14165,0.039881,-1.1418,-0.33577,0.49907,0.98201,-0.36517,-0.24089,0.53519 -0.46551,2.727,2.9811,-0.48896,-0.67854,0.68793,0.23733,-0.021459,0.38461,0.93595,-0.088662,0.6579,-0.57905,-0.042463,0.6447 -0.75521,1.4827,2.6983,-0.078013,0.65284,0.14883,-0.81436,2.0333,1.6991,-0.77163,0.83976,0.40009,0.84428,1.4713,1.1466 -2.6526,0.6422,2.0328,-0.81725,-0.31143,1.4662,0.24685,0.77022,1.3326,-0.60949,1.4823,-0.391,0.80717,1.7625,-0.057163 -3.8825,0.30188,1.3871,-1.6373,0.4164,0.53505,0.62721,-0.70577,0.38588,-0.56871,0.64186,-1.0113,1.1908,0.72972,0.090175 -1.9323,3.5252,2.189,-0.18443,0.44755,1.0778,0.56569,-0.28209,-1.3274,-1.4253,0.79667,0.55993,0.21014,0.15647,0.24668 -1.4065,-0.18983,3.5404,-2.0744,-0.50949,1.473,0.11766,1.2673,0.84788,-0.60789,-0.14669,-0.92648,1.4309,-0.17455,1.2027 -2.1495,2.1855,1.4943,1.029,0.74826,-0.70375,-0.096983,1.7508,0.95558,-0.8172,0.30804,0.75426,-1.4079,-0.3339,0.49638 -0.43328,1.591,2.696,1.2535,0.36192,-0.3604,-0.37648,-0.060994,0.44711,0.12602,0.41772,1.4566,0.13953,-0.46801,-0.42178 -0.96812,-1.1175,3.9925,-1.5759,-0.21742,0.80648,0.30686,0.273,1.6548,0.61721,-0.25109,-0.45991,0.99851,0.88524,0.073479 -2.9188,-2.3174,1.0918,-1.8771,0.84428,1.0755,-1.1676,-0.70715,1.1405,0.79343,0.12348,-0.056908,0.31357,2.4217,0.072926 -2.0953,-0.33465,2.8171,-0.8507,-0.03582,0.09371,0.15633,1.3775,1.7906,-0.58911,0.70557,-0.67708,0.88261,-0.8621,1.3568 -3.4353,-0.1528,1.4742,-1.0186,-0.046582,0.51741,0.46236,0.94485,1.4416,-0.4205,0.72069,-0.6533,0.75814,0.57083,0.91878 -3.6983,-2.0568,0.077639,-0.38208,1.0497,-0.48742,-0.17776,0.55473,1.5804,-0.25685,0.20159,-1.461,-1.0701,1.3092,-0.20498 -0.19152,-1.9053,1.9113,-1.2425,0.24225,0.73066,1.3586,-0.7845,2.4116,0.045743,-1.2665,-0.29522,0.52916,-0.34369,-1.2824 0.47808,-2.1459,2.3537,-1.2553,-0.62473,1.9946,0.70588,0.13522,1.8719,0.74001,-1.6437,-1.5669,1.1882,1.3588,-0.77473 -0.22773,-1.7727,2.0908,-1.7968,-0.72604,1.9894,0.10602,-0.40324,1.3688,1.4313,-1.3939,-1.1406,0.063388,2.0354,-0.89573 -0.64491,-0.45404,3.348,-0.64335,0.85002,-0.23538,1.1684,0.4904,1.8258,0.45457,-0.19716,-0.61098,0.87022,-1.9928,-0.0080455 -1.2384,-1.6834,2.6208,-1.9755,-0.21641,1.5192,-0.05848,0.083861,1.7158,0.89924,-0.84027,-1.1086,1.4647,0.42667,0.18823 -2.9088,-1.4052,1.2611,-1.2978,0.059109,0.59915,-0.41276,-0.082888,1.7102,0.57335,0.41936,-0.56628,0.59722,1.5893,-0.068954 -3.0919,-1.3771,2.0784,-1.9291,0.1376,0.10154,-0.50949,0.95047,1.1087,-0.22611,0.11229,-1.6312,0.69849,0.51544,0.64618 -3.4903,-1.043,-0.24553,-2.5609,0.85308,0.29339,-1.53,-1.6866,-0.51543,-0.55495,-0.72713,1.0186,0.37657,0.74242,0.5185 -2.5505,-1.4417,1.7421,-2.4508,0.24671,0.23394,-0.58422,-1.1857,1.3938,-0.16765,-0.13989,-0.15323,0.97117,1.2728,0.34748 -1.6985,-1.8463,2.0254,-0.56568,0.22917,0.23085,-0.0090764,0.57658,2.7189,0.20377,0.091603,-1.183,0.88987,0.6247,0.55716 -1.9498,-2.4954,-0.50252,-1.2214,0.64061,-0.18477,-1.9691,0.27454,1.2365,0.83433,-1.6417,-0.30226,0.73124,0.77335,1.8237 0.68282,-1.737,2.5196,-1.4581,0.36344,-0.016054,0.4872,3.8272,0.55904,-0.58949,-0.24396,0.37692,2.5655,-0.18117,-0.036638 -0.038099,-3.3253,1.8755,0.7394,1.4565,0.11017,0.99901,2.4496,0.54674,0.042416,-0.77556,-1.5143,2.0012,0.45711,-0.71544 -1.9874,-0.99545,2.0173,-1.9402,-0.24072,0.86688,-0.43646,1.5452,0.46198,-0.97891,-0.26419,-2.0597,1.8033,0.30509,0.77126 -3.3452,0.58307,-0.58775,-0.78395,0.81852,0.72566,1.113,-1.1754,-0.20066,-0.82589,0.22134,-1.5612,1.3178,-0.86418,0.090041 -1.7699,-0.36654,1.793,-1.8028,-0.4686,1.751,-1.1524,-0.8983,0.32857,-0.27718,0.11212,-0.37895,0.592,1.9921,-0.32299 1.0249,3.9789,1.949,-1.8077,1.1048,0.13638,-1.6585,0.1495,-1.4627,0.83238,-0.062339,-0.59459,-0.50907,-0.07207,-0.44767 5.0963,-1.2622,0.28889,-2.0599,2.4326,0.50767,1.4149,-0.19244,0.64802,2.3096,1.0877,1.4599,-0.45606,0.82958,0.2781 0.095342,4.1445,0.45868,-1.3085,1.2982,0.46426,-1.6249,-0.47569,-1.506,-0.57842,0.79402,-0.50855,0.43336,0.65232,-1.1832 2.4676,1.7502,1.4095,0.81748,3.383,0.059531,-1.9369,0.27338,-0.60132,1.458,0.6062,-1.2374,-0.6925,-0.34571,0.21731 2.7219,1.935,0.98272,-1.1897,3.3151,-1.0599,-1.4012,-0.24624,0.16461,2.164,1.2482,-0.78203,-0.37044,-0.96413,0.20379 -1.6755,2.4115,2.1348,1.0858,0.9464,-0.59813,0.16361,0.64498,0.38862,1.5749,-0.05398,1.5017,-0.70902,-0.89976,0.48459 -0.25244,2.337,2.2949,1.0677,1.4588,-0.56601,-1.4653,0.23217,1.4138,-0.15022,0.53584,1.4868,-0.72434,0.95237,0.13456 -3.6451,1.3412,0.28343,0.50687,0.40137,0.30138,1.1607,1.9025,0.88818,-0.22644,0.23644,0.50061,-0.74783,0.76924,-0.21952 -2.9594,0.68554,1.1697,1.6651,1.0536,-0.38573,1.0717,1.1903,1.4861,0.71915,0.15754,0.13936,-0.54331,0.66467,0.74028 -1.0381,2.3717,1.9685,1.2195,1.6426,-0.55558,-1.3094,1.681,0.75403,-0.33992,0.15129,0.14351,-0.61019,1.5407,-0.043916 -3.914,-2.4224,-0.015639,-1.7987,0.86507,-0.81398,-1.1979,-0.29166,0.9601,-1.3224,-0.51563,-0.3452,-0.28052,1.3454,0.77119 -1.6435,-1.9617,-0.27636,-1.3818,0.32277,0.43837,-2.6294,-1.2061,0.12678,0.89569,-1.7174,1.9284,0.2714,1.0372,1.9729 -0.46706,-2.9352,0.85042,-2.0665,-0.17044,0.87414,-1.7935,-1.2236,0.17021,1.5254,-2.9282,0.58477,-0.3225,1.5924,0.90055 -2.8719,-3.4551,-0.11884,-1.3486,0.24129,-1.3176,-2.242,0.51463,0.33397,0.18574,-1.4526,-0.63977,-0.54159,0.44322,1.4591 -2.914,-1.5429,-0.91317,-1.8597,1.4239,0.27095,-2.384,-1.0286,-1.0691,-0.91859,-1.1455,1.8221,0.29377,0.16017,2.2115 -3.6712,-2.2732,0.511,-2.3909,1.0543,-1.3624,-1.6639,-0.15378,0.25671,-0.96212,-1.1741,-0.089093,0.19989,0.72191,1.1235 -0.47725,-4.1922,0.53411,-0.16832,2.5996,-0.43914,-0.56973,-0.79293,-0.098125,0.043459,-2.6479,0.45802,0.61915,-0.54268,1.3793 -2.5744,-3.1233,0.92051,-1.8748,0.76701,-0.11058,-1.2378,0.21453,1.2866,-0.092291,-1.9386,-0.4663,1.2012,1.0901,0.70873 -1.6756,-4.1537,-1.1043,0.96907,1.8881,-0.61569,-1.7248,-0.031682,0.47818,-0.9196,-1.4476,-0.37633,-1.0487,0.49677,2.2189 -2.6795,-2.6917,-0.33563,-1.4538,0.59532,0.3313,-2.8598,-0.97824,0.51925,0.1547,-0.83058,2.0889,-0.36941,1.6872,0.99903 -1.6936,-2.6941,-0.51295,-0.16548,1.7972,-1.8992,-1.6448,-0.77295,0.76806,0.083503,-2.281,1.6862,0.23817,-0.34574,2.0907 -0.66539,3.8148,0.38265,-0.23329,-0.61434,0.7206,-1.1297,0.76329,-0.21567,0.82537,-1.2389,1.0255,0.56517,-0.3791,0.20412 -2.5665,1.7639,0.5173,-0.31877,-1.2503,1.8429,1.2117,-0.26461,0.32247,-0.4377,0.49064,0.33023,0.73143,-0.40953,0.54759 -1.7462,3.3187,1.1571,0.35514,-0.23685,0.86708,-0.46155,1.1454,0.2556,0.83643,0.29607,1.4791,0.11621,0.14657,0.016681 -3.0266,1.6715,-0.34369,-0.09462,0.082974,0.95225,1.4791,-0.43105,0.36001,2.1325,0.6869,1.1675,-0.034471,0.36478,-0.64613 -2.8953,2.0527,0.24383,-0.49007,-0.47111,0.82104,1.1274,0.56769,0.6748,0.0062143,0.64658,-0.068838,1.0695,-1.2645,1.1079 -0.67785,3.7984,-0.80322,-0.28663,0.029905,1.4215,-1.7171,0.454,-0.86634,-0.68494,0.36567,0.66898,0.81088,-0.66436,-0.81908 -3.2659,1.9375,-0.64629,0.1747,-0.13839,-0.37278,1.4193,1.9485,0.74168,-0.54948,0.098078,0.74802,-0.16414,-0.52055,0.43852 -2.402,1.2087,0.65924,0.44379,-0.66513,0.82533,0.71652,0.17426,1.822,1.2298,0.71103,0.098961,0.52758,-0.86721,0.55583 2.6181,0.19543,0.96482,-0.38128,1.4841,-0.49936,-1.6439,0.48652,2.1836,-0.087842,-1.2946,-0.1792,1.0776,-0.53549,-1.0106 -2.5693,2.3079,0.77709,-0.048081,-0.81719,1.2824,1.1532,0.40973,0.051657,-0.75061,0.18094,0.59473,0.929,-0.92051,1.142 1.3276,3.519,0.42843,-0.81226,-0.93098,0.84547,-0.97498,-1.2203,-0.53067,-1.3688,-0.90901,0.010707,-0.034095,0.89456,-0.76028 5.2037,0.8203,0.75095,-1.6696,1.8338,0.27344,0.28665,0.43571,0.8792,0.40852,-0.06863,0.87147,-1.6962,0.44112,-2.0909 4.2806,-0.86401,0.66103,-0.030482,2.6655,1.1169,-0.4366,-0.39876,1.2345,-0.17102,-0.46702,0.17838,0.71868,-0.41595,-0.75115 2.2682,1.4109,-1.1413,-2.3106,-0.16149,0.34024,-0.80738,0.038018,0.97434,1.5864,0.66066,-0.062691,0.31477,-1.5445,-0.42123 0.83135,2.6294,1.6897,-1.1414,0.56866,1.1621,-2.602,1.7349,-0.61692,0.45353,0.83066,0.40571,0.31831,0.5316,0.28151 2.068,0.62368,0.8126,0.41971,1.439,-0.057777,-1.8431,-0.79473,1.9124,-0.47128,-0.38471,0.42466,1.17,-1.0763,-1.0149 -2.8961,2.1174,1.3492,-0.27799,-0.002911,-0.34932,1.386,0.57368,0.19774,-0.94338,0.78223,-0.24472,1.2584,-0.29291,0.71466 -0.86501,1.8269,1.8864,0.82353,0.16481,-0.96009,-1.3262,1.3451,1.9519,-0.76493,0.00082201,1.0462,-0.017008,-0.27395,1.2726 2.8718,1.4545,0.28106,0.57411,1.8414,-0.15682,-0.89278,-2.1422,1.0469,0.89119,0.060694,-0.097027,0.36345,-0.71868,-1.2242 -3.3559,1.8717,0.61015,-0.33285,-0.039845,1.8987,1.1504,0.45523,-0.65273,-1.0452,1.118,-0.019043,0.42415,-0.044583,-0.56812 -2.996,2.3415,0.21198,-0.49739,0.1029,1.2252,1.2277,-0.71635,-1.5889,0.27889,-0.14811,1.5142,-0.094881,0.47981,0.012817 -4.0224,1.0896,0.12891,-0.93667,0.20576,0.69049,1.318,-0.90628,-0.44208,1.062,0.64491,0.58975,0.75091,0.69736,-0.35565 -3.5007,-1.5184,-0.43853,-1.0788,1.3891,-0.36047,-1.1897,-0.47265,1.1726,0.93503,0.032153,-0.34411,-0.74978,0.52841,0.33534 -3.8263,-1.2909,-2.2384,-1.5012,1.4405,0.084568,0.33689,-0.84492,0.18049,-1.4755,-2.0432,-0.12424,-0.79779,-0.044543,-0.19503 -3.4842,-0.75133,-2.4599,-1.3851,1.8223,-0.12463,-0.77209,-0.79595,-0.052669,-2.021,-0.73191,1.4756,-0.41105,-0.87432,0.31742 -2.5776,-1.8627,-0.49405,0.15865,1.4126,-1.8616,-0.65197,-1.1343,0.64698,0.68366,-0.25366,-0.57564,-0.4526,-0.62828,0.91966 -3.7444,-0.52045,-1.8675,-0.85838,0.79147,-0.76965,0.81113,0.20343,1.4115,-0.34014,-0.26873,-0.76802,-1.0675,0.5845,-0.74756 -3.341,-0.59836,-2.5112,-0.75202,2.6484,0.46357,-0.4529,-1.8496,-0.29648,-0.98578,-1.0745,1.8068,-0.78044,-0.064975,-0.17629 -4.1132,-0.89571,-2.1279,-1.7267,2.11,-0.2518,-0.27054,-0.62181,-0.076465,-1.861,-0.95164,0.14518,-0.40117,0.22883,0.074812 -2.1453,-0.54776,3.3375,-0.90011,0.39892,-0.65717,0.70097,-0.030767,1.2258,0.0633,-0.53717,0.10714,0.39898,0.1398,0.41594 -3.4938,0.023661,0.34402,-1.018,0.18906,2.2711,1.1881,-1.6172,-0.25957,-0.62471,0.94443,0.12468,-0.41241,-0.13294,-0.8534 -1.9773,0.29283,0.63014,1.7274,0.42017,-1.7682,0.27971,1.9008,0.73642,0.16976,0.17426,-1.1449,-1.2836,-0.36241,0.77719 -2.2843,-0.96421,-0.59103,-1.5172,0.0369,2.4449,-0.84172,-2.3391,-1.2469,-1.2648,-0.25407,0.29454,-0.35108,1.114,-0.065672 -3.1695,-0.073577,-0.96429,-0.13774,0.029562,0.44748,1.4495,-0.78462,0.56261,0.037327,-0.87851,-0.83766,1.3325,0.077843,-0.57623 -1.8185,-1.279,1.4715,-0.21822,0.95738,1.2472,1.0611,-1.6135,2.0707,-0.53438,-0.49977,-0.63268,0.72397,0.11466,-0.29703 -0.54063,-0.98249,-0.045974,-0.28466,0.87524,1.9532,0.6349,1.5228,1.713,-1.4045,-0.42569,-1.1943,1.6409,0.46734,0.45101 -3.9943,-1.3596,-1.0361,-1.5998,1.3461,-1.2571,-1.1807,-0.22728,0.44012,-0.62364,-0.53078,0.64638,-0.48915,0.445,0.15739 -0.97813,-0.32188,2.0756,-0.28429,0.075163,1.1563,0.99851,-0.6322,2.3207,-0.51852,0.12927,0.011175,1.2891,-0.78352,-0.61121 -2.3642,-1.5148,0.11577,-0.71296,0.37178,0.52326,-0.054643,-0.84834,1.8208,-0.31172,-1.1214,-0.2537,0.55918,0.021896,-0.11854 -2.1972,1.1697,-1.5239,0.096025,-1.0328,1.0201,1.9022,-0.20747,0.2413,-1.3117,-0.068932,-0.79054,-0.87267,-0.3315,0.033074 1.2546,1.2404,1.7042,1.1108,0.44044,1.7399,-0.89325,-0.99282,1.5456,-0.89038,-0.31705,0.82603,0.82422,-1.2735,0.59575 -2.8336,-1.8183,-1.8305,-0.83764,0.66451,-1.2547,-1.8173,-0.40679,1.194,-0.26874,-0.7881,0.98027,-0.35434,0.082918,1.0902 -1.9573,-3.0434,-0.70766,-0.57171,1.3643,-1.2486,-2.337,-0.56025,1.1614,0.30622,-1.7364,0.90619,-0.3903,0.21026,2.2565 -2.8545,-2.1217,-1.7472,-1.3617,0.68561,-0.0047559,-2.8023,0.017246,-0.31074,-0.43439,-1.0429,1.7894,-0.42421,-0.17825,1.8244 -1.7266,-4.3304,-0.81513,0.65403,1.3776,-0.5783,-1.8522,-0.43584,0.55876,0.10138,-1.869,-0.068701,-0.24769,-0.60039,1.2311 -1.4301,-4.1681,-1.4803,0.77045,1.6741,-0.40617,-1.5306,-0.055662,-0.46662,-0.80555,-1.77,0.049751,-0.33201,-0.96257,1.3536 -2.7362,-2.3935,-1.7561,-0.37403,-0.08823,-0.2278,-1.2316,0.51883,1.3788,-0.26421,-0.95026,-1.0154,-1.1106,0.68786,0.37534 -1.3913,-1.5908,-0.92157,-0.16464,0.84641,-0.14388,-1.9907,-1.7154,1.2922,0.44337,-1.0356,2.8953,-0.28978,0.3361,1.4347 -3.9142,-0.62806,-1.7662,-1.439,0.59107,-1.6017,0.24288,-0.37348,0.88683,-0.89681,-0.31823,-0.20309,-0.55469,0.03136,-0.63547 -3.2392,-1.1238,-0.26972,-0.93427,-0.30837,0.25175,-0.73072,-1.1564,1.3279,0.19097,0.099354,0.43451,0.42219,0.59775,-0.52166 -0.62083,0.73135,0.11727,1.9502,-0.37091,-1.716,-0.24272,2.0269,0.3626,-1.1781,0.26244,-0.50288,-1.7162,-0.64117,1.1202 -2.6309,0.87854,0.91886,-0.56711,0.056141,0.11841,0.19493,1.6324,1.7999,-1.0299,1.1299,-0.62806,0.52832,-0.34734,1.0966 -2.5938,0.16258,-0.63094,1.9203,1.5028,-1.1471,2.2087,1.0272,0.38655,-0.72723,-0.018204,-0.44712,-0.61792,-0.39501,0.82549 -2.7106,0.085592,-2.1126,-0.66042,-1.2387,-0.35817,0.47919,0.61198,1.1756,-1.0808,0.1625,-0.94281,-0.087617,-0.23679,-0.12374 -2.9478,-0.3404,-2.7512,-0.53628,-1.2905,0.34879,0.18903,0.99915,0.24221,-0.52982,-0.49457,-1.4575,-0.0015083,0.26942,-0.53117 -0.84654,-1.4454,-0.82308,1.9943,0.20211,0.62007,0.97051,1.4948,0.59485,-1.1922,-0.088994,-2.1221,-0.50059,0.59759,0.88198 -0.37925,-0.51026,-1.0147,1.2004,-0.64554,0.46209,1.0659,1.7502,1.6382,-1.0619,0.045449,-1.426,-0.73421,0.59165,0.61378 -2.5882,-0.4908,0.98389,-1.7383,-1.1343,0.044137,-0.28117,-2.3615,-0.51197,0.47151,0.63758,-0.0756,0.43625,0.4516,-0.65317 0.66076,-1.3992,2.5994,2.1511,0.37986,2.8806,0.24347,0.0059402,0.48218,-0.77682,-0.67118,-0.33663,0.97903,-0.18865,0.79989 -0.62747,-2.991,-0.3355,-1.1084,0.062889,0.77169,-1.1226,1.5887,0.53799,-0.088301,-1.8932,-0.15247,2.0151,-0.28583,0.19522 1.48,0.10466,2.2897,1.9531,1.9268,2.5669,-0.56326,-0.57487,-0.099415,-1.5401,-0.66864,0.9539,0.39909,-0.98877,1.1112 -2.2639,-1.307,1.7457,-0.46938,-0.29056,-1.3054,1.592,0.77643,0.5706,-0.88607,-0.55484,0.0031984,1.53,-2.3151,-0.58703 -1.6388,-3.2881,1.282,-0.39675,-0.014153,0.28994,-0.28392,0.1752,1.9978,0.9253,-1.3457,-1.4084,1.3361,-0.13068,-0.42214 -0.010707,-2.1069,3.173,0.74762,0.26396,-0.27128,0.57428,2.1955,1.6837,-1.1714,-0.21883,-0.30333,1.4453,0.016141,0.13631 ================================================ FILE: bayesian_ml/1/Xtrain.csv ================================================ 2.5666,-1.3258,-2.3719,-0.81289,-1.7141,0.7571,-1.3487,1.482,1.7461,-0.623,1.1981,-0.059047,0.71099,-0.091248,-0.80487 -1.4274,-3.2869,-1.7332,0.44458,-0.75227,-0.5145,-2.0378,0.84484,0.050713,-0.57453,-0.079848,-0.7359,-1.4958,-0.74878,-0.64043 3.9474,-1.4721,-1.0213,-1.7703,-0.25065,-2.9527,1.7425,0.74606,0.9182,-1.2281,1.0997,1.2411,0.59785,-0.0074702,0.094585 -1.4837,2.2081,-0.77793,0.50082,-2.4392,0.28392,1.1439,0.11527,-0.21909,0.023451,-0.15907,0.39537,0.59824,0.46849,0.88638 -2.1028,0.0073963,-3.9499,-0.90592,0.029504,-0.46591,-0.4158,1.562,-0.99494,0.11942,-1.2049,0.25491,0.14717,1.0847,0.36351 3.2991,2.085,1.0111,-1.9042,-0.35306,-3.4281,0.38001,0.18513,-0.35228,-1.5426,-0.84675,-0.88732,0.35325,0.90059,-0.002708 3.9044,-3.9422,-2.3386,0.81279,-1.009,1.4146,2.2834,1.6637,-1.0557,-0.053001,-1.1022,1.2403,-0.76104,0.95952,-0.77029 -1.4291,-0.48612,-3.2349,0.47944,-0.51728,-2.1262,-0.9337,0.77219,-0.30303,-0.36705,-0.40535,1.1524,-0.57521,0.56164,0.58526 2.0031,-1.4954,0.039513,2.421,0.77332,3.1976,-2.4499,1.0509,-2.5108,-0.37349,0.7136,-0.12783,1.4083,0.81521,-0.22435 -0.60036,-4.414,0.007589,0.70466,-0.1621,0.72591,-2.0855,0.66641,0.57493,1.3395,-0.54965,-0.46973,0.44359,-0.69514,-0.55196 1.7179,0.75064,-1.2877,0.85772,-1.3213,-1.1897,-1.3042,-1.2744,1.6145,-0.152,0.95318,-0.6178,0.74517,0.75639,0.14568 -1.6281,-2.4479,0.53035,-0.36875,-1.9385,-0.64237,-1.4168,0.54838,1.0992,-0.024745,0.84802,-0.82807,0.46048,-0.84405,-0.46906 -0.6593,-3.1599,-2.4268,1.351,0.13825,0.65404,-1.5812,0.72326,-1.5678,-1.0984,-0.78323,-1.3452,-1.1478,-1.1481,0.59698 -1.498,-3.3503,-0.99731,0.12317,0.68932,-1.7405,-2.0327,0.53733,-0.12443,0.41428,-0.31385,0.8485,-0.77796,-0.93799,0.093398 -1.4576,-2.7439,-1.258,2.0276,0.35579,-2.0092,0.61147,-0.40868,-0.94461,-0.7793,1.1164,-1.2663,-0.75425,0.064724,-0.63076 -0.84781,-0.21116,-0.30142,0.7907,-2.2064,0.19446,0.6592,-1.3174,-0.71913,0.93376,1.7115,-0.38937,-0.55148,0.19458,0.384 -1.224,-0.94238,-0.93723,1.6249,2.1838,-0.19948,2.2262,2.4887,-1.1045,1.5258,-0.67267,-1.2636,0.96224,-0.70839,-0.1442 -1.028,-1.5131,-2.1218,1.0892,0.33856,-2.9643,-0.99365,0.78363,-0.90871,0.49655,-0.24755,1.0852,-0.11857,-0.27876,0.88418 5.2585,-2.1407,-0.57161,-2.3591,-0.032307,-2.7486,1.3856,0.4939,0.29239,-1.1645,0.64149,0.22433,0.049199,0.41939,-0.057223 -2.1558,-1.5152,-0.68488,2.1007,-0.4805,-1.5174,0.81283,-1.166,-0.21387,0.13778,1.5727,0.39648,-0.62022,-0.51807,-1.0092 3.7349,-0.023733,1.521,0.35133,-0.79602,-1.9382,-1.6576,-1.7613,0.077399,-0.53543,0.15959,-0.51381,-0.49478,1.1553,0.54943 0.20717,-0.27514,0.71168,2.9795,-1.184,-1.1084,0.016145,0.1743,0.61814,-1.9038,0.97128,-0.084224,-0.25053,1.1475,0.43711 5.4473,-2.9775,-1.5332,-3.0821,-0.51306,-1.1809,2.2399,1.7428,-0.53312,0.34662,0.61248,1.6737,-0.18305,-0.91071,0.40647 1.184,-1.0546,1.4237,1.8429,-2.1997,-0.90696,1.0869,-0.85029,1.0056,-1.253,-0.89226,-0.71715,-0.26344,-0.18645,0.59489 -0.97227,-2.8043,0.47904,2.4952,-1.4571,-0.4924,-0.090191,0.50802,0.21962,-0.43352,1.264,-1.3102,-1.2058,-0.63794,-0.37302 -1.5136,-0.8645,-0.56241,2.5611,-1.1732,-1.7037,1.619,-0.33994,0.11018,-0.72254,1.0977,-0.54795,-0.79552,0.47613,-0.50755 0.9024,-0.85601,2.0661,-1.6653,-3.3576,1.922,0.92693,0.78273,-1.2559,-1.9008,-0.67077,-0.69521,-0.75881,-1.4099,-0.2555 0.18415,-1.9337,1.2181,2.1187,-2.1319,-0.35025,-0.1803,0.74236,0.42307,-1.0069,1.4134,-0.60593,-0.1402,0.23088,0.4159 -1.0765,-1.1542,-0.25369,2.7056,-1.8071,-0.95458,0.83963,-0.0033773,0.31273,-1.2728,1.208,-0.56309,-0.91292,-0.31662,-0.082002 -0.89224,1.183,-1.1264,2.426,0.91623,-0.043234,1.1426,1.7944,-0.58845,0.022043,0.094761,-0.31365,-1.8063,-0.042443,-0.46596 4.0583,-4.6325,-1.4341,-1.0587,-0.77341,-0.44916,2.1508,2.4637,0.32093,0.042096,-0.45045,2.8896,-0.4892,0.12917,-0.31792 -0.60275,-2.8662,0.3641,2.1928,-1.7319,0.13843,-0.37686,0.70954,0.49747,-0.27106,1.2875,-1.4579,-0.32867,-0.7328,-0.52658 2.4739,-0.45377,-0.35826,0.42376,-2.0159,0.64115,-1.9769,1.1494,-0.10567,0.707,0.40033,0.013749,1.0302,0.92312,0.63729 -0.48161,-2.9103,1.3007,2.254,-1.5728,-1.007,-0.12836,0.056697,0.26868,-0.29631,0.4027,-0.41905,0.16922,-1.244,-0.643 -1.6641,1.2497,0.41337,1.494,-2.0766,-1.3704,1.1414,-0.18155,-0.047323,0.95213,0.8817,0.66573,0.25333,0.92113,0.35961 0.32017,-0.53175,0.79099,2.3588,-2.1058,0.73878,0.060322,-0.87883,-0.029431,-0.012165,0.83372,0.38396,-0.19583,-0.65751,1.0288 -1.6968,1.2452,-1.3904,1.0975,-1.2042,0.26294,1.4819,1.784,-0.95436,-0.48598,-0.096861,-0.37737,0.38744,0.38708,0.36822 -1.0927,2.3295,-0.60209,0.50907,-2.0749,0.73825,-0.87317,-0.43482,-1.8318,0.4797,0.5682,0.73762,-0.25799,0.22791,-0.42733 -1.6931,-1.489,-2.084,1.4482,-0.86301,-2.6656,0.64257,-1.6774,-0.12551,0.56494,-0.48227,0.025421,-0.054858,0.32138,-0.59092 -1.2546,-0.52436,1.4641,1.4288,-2.3678,-1.2614,-0.28959,0.16469,0.35425,-0.33444,1.4309,0.56673,0.23215,-0.78027,0.07571 -0.051082,1.3105,-0.28171,0.042365,-2.7676,-0.89768,1.4622,0.27567,-0.017071,0.99035,-1.1688,-0.35072,-0.10222,0.79056,1.0775 -1.178,-2.2286,-0.63327,1.3714,-1.8697,-1.7996,0.60809,-1.2463,0.41965,0.24084,0.23568,-0.25144,0.45274,-1.0851,-0.84551 -1.9335,-1.5841,-2.279,0.95083,-1.4135,-2.1251,-0.14653,-0.87195,-0.040601,-0.14595,0.3721,-0.16178,-0.78291,0.07095,-1.1005 4.9072,-2.7373,-1.467,0.17534,-0.023292,1.2853,0.93602,-0.36855,-1.0098,-2.1563,-0.15353,-1.4884,-0.46082,-0.55703,-0.21821 -0.09049,-0.98698,1.408,1.4985,-2.3507,0.017958,-1.2745,1.9331,0.91643,-0.91427,1.0373,0.28992,0.68893,-0.43749,0.24988 -2.1153,0.97063,-2.212,-0.17078,-1.7802,1.2847,0.82146,0.032876,-0.79868,0.94457,0.73366,0.32157,0.82864,-0.22728,-0.35317 -1.7956,-1.9445,-0.42975,1.6172,-1.7036,-0.15429,-0.30391,0.68999,1.0712,-0.62799,1.3967,-1.2523,-1.0843,-0.83791,-0.50288 -0.13602,1.4693,-2.0637,1.8906,3.4686,-0.56487,0.18381,1.0167,-1.1047,-1.6469,-0.68725,-2.1896,0.16982,0.2881,-0.19383 1.9148,1.4018,1.3463,0.83892,0.18835,-2.7673,-1.4594,-0.90896,-0.39609,-0.30978,1.1105,-0.31123,0.38621,1.587,0.13939 -0.14067,0.54037,-0.13392,2.5173,-1.418,0.21568,0.74163,-1.358,-1.3675,0.7635,0.64238,0.11171,-0.28955,0.073564,0.99689 1.3237,-3.5597,1.3334,1.0871,-2.0141,1.3798,0.33039,-0.78677,-0.17521,1.1133,-1.047,-1.5283,-0.47551,-1.0973,-0.4167 -0.28035,-4.0092,-1.3861,1.8605,0.22043,1.7557,-1.3295,0.49124,-1.0604,0.085447,-0.56655,-1.583,1.1,-0.66394,0.61297 0.21368,-3.1158,-2.1461,2.2073,0.14427,0.59403,-1.3313,0.88124,-0.35175,0.27026,-0.53998,0.21976,0.22598,-1.1714,0.77108 -1.0166,-3.2667,-0.12276,0.56852,-0.27486,-0.56306,-0.98931,-1.0421,0.88377,1.1798,-0.34299,-0.001694,0.082409,-1.4975,-1.0426 1.5921,-0.17801,2.5668,1.6306,-1.8327,-0.097746,0.50572,-1.7207,0.18317,-0.14224,0.28249,0.15549,-1.1168,0.046315,0.58805 -1.1347,-3.6185,-1.839,1.7239,0.50775,-0.4158,-1.7734,-0.89965,-1.9145,-0.57742,0.03882,0.53525,-0.06948,-1.1813,0.31682 0.59604,3.3246,-1.8223,0.56996,-1.4795,0.69701,-0.043895,0.080974,-1.7393,-0.89464,-1.2018,-1.7577,-0.19857,-0.51169,0.39255 -0.90382,-2.4222,-0.59724,-0.28519,-1.093,0.51815,-1.7633,0.84509,0.91928,1.1377,-0.12593,-0.11628,0.97653,-0.59707,0.12359 -1.6771,0.42956,-1.0201,0.62022,-0.62309,-0.70351,1.1355,2.307,0.71181,1.2742,-0.41403,-0.12488,0.99092,0.098038,0.46437 -0.34234,-1.9643,-2.9346,1.9943,-0.37028,0.29518,-0.87861,0.80119,-1.0285,-0.73775,-0.089918,0.24317,-0.58777,-1.0115,0.67746 2.6051,-0.92159,-1.7228,-1.4855,0.053796,-2.4074,2.2838,1.3516,1.249,0.59761,0.50959,1.9912,0.11186,0.34758,0.61898 3.9177,-0.71261,1.2954,0.89062,1.2439,-1.0428,-1.1529,-2.2508,-0.43248,-0.13609,2.4281,-0.14408,-0.085173,-0.00013507,0.15235 -0.19914,-1.7868,-2.597,1.8229,-0.92322,0.3244,-1.5956,0.51236,0.87835,0.66833,-0.46095,0.67827,0.060283,-1.0663,1.0283 -0.79997,-3.7043,-0.47361,-0.058896,0.069918,0.056053,-2.4334,0.94605,0.62744,1.5999,-0.8482,0.79269,0.34854,-0.81134,-0.095845 -1.042,-0.89878,-2.8623,0.78586,-0.6769,-1.3624,-1.4054,1.3562,0.17608,-0.29823,-0.1895,0.84968,-1.8356,-1.128,0.83237 -0.30296,-3.4163,-1.9106,0.94467,-0.2134,-0.21524,-1.3562,2.1971,0.20623,0.9556,-0.56142,-0.23374,-0.23355,0.35989,-0.064807 0.58431,-0.90758,3.0188,-1.7167,-2.2041,2.7443,-0.70193,1.6148,-2.3475,0.64635,0.91465,-0.77638,0.4369,0.81035,-0.42788 -1.0039,-1.963,0.0052222,1.854,-0.40203,2.104,-0.0057943,1.5925,0.25679,-1.3444,1.2131,-1.7099,-1.4331,-0.94759,-0.49163 2.0678,1.0329,-3.1063,0.0018347,-0.71899,0.39154,0.29086,0.54552,1.8309,0.39993,-0.50748,-0.81857,0.53893,-0.42252,-1.0312 2.9569,1.1015,0.68876,-1.1064,-1.7379,-1.2214,-1.647,-1.0548,-0.61067,-1.8948,0.15579,-0.25334,1.3945,-0.90473,-0.54444 -0.83512,-2.1424,1.7888,-1.9024,-0.99522,3.2111,-0.75813,0.90826,-1.856,1.4747,0.50064,-0.99187,0.2428,1.2663,-1.1486 -1.8955,-1.5394,-0.56399,1.5167,-0.91211,2.0052,-0.66655,0.20579,-0.4557,-0.81203,1.7774,-0.95281,-0.65805,-0.90704,-0.13525 2.8958,1.0442,-2.2368,-1.8104,-0.52553,-2.0707,0.91278,0.52087,1.6822,-0.23851,0.5729,-0.35434,0.97513,-0.50094,-0.48639 0.37764,-4.4509,1.9258,0.59892,0.59262,1.8476,-1.027,0.79466,-0.86695,1.304,1.0031,-1.2106,0.78984,-0.18432,-0.97984 1.7551,2.2723,-1.1555,-0.45928,-1.7852,1.6395,-1.9195,-0.28268,-1.3354,-1.5406,-0.047214,-1.7376,0.080521,-0.22039,0.15479 0.79812,-1.2466,2.5228,-0.84433,-1.0154,2.9556,-0.030581,1.4243,-2.1482,2.019,1.22,-0.83603,0.29986,2.0591,-0.48053 2.0736,-1.5276,-0.85809,0.56074,0.074172,1.67,-1.7412,2.9442,0.78236,0.42935,0.77909,-0.48634,2.7315,0.4966,-0.62726 -2.2028,0.35948,-1.41,0.98498,-0.45345,0.65548,0.81435,1.8657,-0.072147,1.0547,0.41646,-0.37188,-1.6435,0.24652,-1.0062 -2.0718,-2.377,0.56849,-1.9131,1.1032,2.6226,-1.4933,0.66763,-0.51674,0.60793,-0.77021,-1.0296,0.76607,1.4713,-0.064303 -1.9391,0.76693,-2.432,0.70182,-1.7182,0.80853,0.3978,-0.0065292,0.55167,0.83636,1.1616,0.71894,-0.32775,-0.030678,-0.99064 -1.1555,-3.1263,1.2936,-1.677,-1.5877,-0.36256,-0.69357,-1.6448,-1.5034,1.1424,0.56746,0.57622,-0.075231,-0.37535,-1.2924 4.268,-2.0637,-1.2992,0.69422,-0.05619,-0.48563,0.16383,-0.037106,1.7334,-1.9584,0.64738,-0.58832,-0.62884,0.021444,-0.85042 2.3088,-1.9394,-4.5064,0.88051,-1.1777,3.0331,1.9604,1.8307,-1.4493,-0.23008,-0.2567,0.8073,0.69233,0.43409,0.28527 -0.47667,0.33495,0.17873,3.4077,-0.7183,-1.941,0.70386,0.42582,-0.045546,-0.72397,0.31829,0.16042,0.48918,0.55951,-0.26113 1.1634,0.22035,-1.7548,-1.189,0.47192,-0.49526,-0.53698,0.54518,-0.95889,-0.30556,4.3203,0.62033,1.2166,-0.70549,0.58195 1.017,-4.1124,1.9707,0.83513,-1.1396,1.5317,0.23781,-0.0062123,-0.89105,1.9502,-0.27653,-1.2386,0.58663,-0.52226,-0.39481 3.6189,-0.80455,-2.1323,-0.25292,0.47618,-1.2713,1.724,0.85992,2.0224,-0.55966,0.80628,0.45483,0.075673,1.0243,-0.91599 -1.0127,-0.79832,-1.5547,2.0107,0.69687,1.258,0.28349,-0.43246,-0.66437,-0.79528,1.4024,-0.14473,0.71993,-0.87564,0.030091 1.2796,-2.0509,2.4667,0.35449,-1.0757,2.6298,-0.016651,0.87147,-1.2007,2.0048,0.43319,-0.53993,-0.08404,0.97992,0.52057 0.015205,-2.4994,2.3813,-0.92325,-1.4613,2.2417,-0.64733,0.68646,-1.0356,2.2587,0.4853,-1.1326,-0.51822,1.0492,-0.55721 2.4685,-0.7813,2.1585,-0.019012,-2.5738,-0.5556,-2.2114,1.436,-0.14625,-1.069,-0.30143,0.41968,0.96779,0.17469,0.062845 4.1134,-2.9836,-1.3034,-0.31639,-1.3204,0.98078,0.59894,0.97041,-0.35239,2.254,0.22904,0.88263,0.91085,0.19175,1.1138 -2.2722,-0.78738,-0.1465,-0.69321,1.3104,-1.3789,0.89883,0.074397,-2.0967,2.7994,0.49581,-0.61653,-0.26925,1.5611,-0.15886 -1.2811,-2.8579,1.8636,-1.0523,1.011,0.94026,-1.939,0.093637,-1.1754,3.0418,-0.25739,-0.29216,-0.87119,1.2824,0.16342 0.56011,-2.0628,0.79698,1.7762,-1.6322,0.54891,-1.6937,2.7822,0.49362,0.75453,0.79124,-0.66334,0.88918,0.30447,0.000462 3.1448,1.0228,-1.8107,1.3116,0.94585,-0.41006,1.776,-0.4073,-1.5978,-0.43464,-2.5203,-1.8706,0.27936,0.32687,-0.29558 4.552,-1.299,0.61769,0.2723,-1.0302,-1.0449,-1.1519,-0.96044,0.66683,-1.1796,-0.54502,-0.41151,0.079975,-0.40818,-1.02 3.9149,-1.7565,-0.46084,-1.931,-1.0887,-1.6526,0.62801,-0.10258,0.68093,-0.12997,1.3237,1.0796,2.2905,0.53481,0.66925 -1.2543,-3.1467,-1.386,-0.13677,-1.1347,0.4282,-2.0989,1.2678,-0.029714,0.97426,-0.17348,-0.65155,0.62558,0.40772,0.11699 -2.2209,-2.1647,-1.3686,1.3778,-0.70191,-1.1488,-0.25341,-0.50711,0.71094,-0.017519,1.2555,-0.40106,-0.95275,-0.73372,-1.4403 -0.19627,-2.5326,1.3727,1.4291,-0.27632,1.1727,-1.2282,3.0829,0.67906,1.2825,0.86777,-1.01,0.92469,0.028555,-0.30541 -1.7142,-3.2043,0.72358,-0.39462,-1.4094,0.17758,-1.7084,1.7347,0.29003,0.70333,0.38815,-1.2182,0.80998,-0.47673,-0.84349 2.9546,-1.0211,0.8726,1.8031,-0.55403,0.35314,0.62894,-2.5016,-2.0173,-1.5764,-0.10353,-0.30256,0.011701,-1.1227,0.94631 2.7244,-2.1765,0.07514,-2.3565,-0.28579,-0.38315,-0.44495,1.43,0.52443,1.5272,2.4787,2.3271,1.1968,-0.68475,0.26315 -0.61798,0.78995,2.0458,-1.2103,-0.16018,2.4836,-0.79556,2.561,-1.4188,0.21217,1.8871,-0.37585,1.5873,1.0207,-0.27166 -0.050501,3.1561,-2.7968,-0.21125,-0.98091,0.90884,-0.59407,0.60008,-0.69468,-0.74247,-0.93326,-1.1196,1.2288,0.25505,-0.53101 0.9268,2.1877,-0.11814,2.3061,-0.64665,-1.2509,-0.38468,-1.2896,-0.33227,-0.74824,-0.88642,-0.34101,0.10452,1.4478,0.76054 0.43979,-1.5508,2.1605,-0.20705,-3.2917,-0.35835,0.90512,0.17239,0.38376,0.35329,-1.5106,0.046618,-1.4364,-2.014,0.1588 0.8698,-4.1633,0.37834,0.13004,3.5956,-0.87512,0.054241,2.7233,-2.274,-0.38879,1.4081,1.4363,0.58708,-0.060667,0.86885 -1.5901,-2.0265,-2.3551,1.4023,-0.45938,0.22853,-0.72196,0.44308,1.1338,-0.019531,0.21101,-0.98532,-1.9776,-0.60097,-0.37815 2.5,-0.903,-1.3952,1.7706,0.88267,0.8521,-0.075011,-1.497,-1.5007,-0.32372,3.5597,-0.30213,1.0742,-0.04583,1.2335 -1.3384,-3.2318,-1.6517,1.8196,0.42395,0.78874,-0.69208,0.68113,0.28134,-0.29684,0.33419,-1.8985,-1.2771,-0.83062,-0.073991 -1.5642,0.6342,-4.2356,-0.35536,-0.42885,0.30025,-0.32574,0.4888,-0.057569,0.094359,-1.9279,0.56601,-0.19651,0.14433,0.74665 0.17585,2.3651,-0.6429,1.8376,0.20685,-1.3338,-1.0212,1.9096,0.34156,0.58823,-1.1934,-0.60526,0.6333,0.096543,-1.2759 -0.34735,1.5843,-1.369,1.8843,-1.4486,-0.41379,-0.2522,0.73114,0.26946,-0.75376,-0.14186,0.33102,-0.03265,0.72752,-0.58101 -0.63308,-3.2961,-1.3843,1.6127,1.3038,-0.86911,-1.9691,0.5043,-0.065324,-0.17346,0.38447,1.4343,-1.1589,-1.0484,0.52382 -0.16931,3.0661,-0.88953,0.67687,-0.9082,-0.62183,-1.7161,1.0816,-0.27843,0.277,0.47727,0.16964,0.22303,0.90483,-0.74586 -1.5462,-2.2285,-2.4925,1.0772,0.0010264,-0.40798,-1.1852,0.4911,1.0398,0.10304,-0.67617,-0.071091,-1.6884,-0.63454,-0.34542 -0.91163,1.0006,-0.5208,0.37776,-1.0213,1.0618,-0.088308,2.7802,1.5458,-0.17277,-0.036158,-0.59752,-1.3356,0.96918,0.12467 1.482,-1.487,-2.0888,-0.76676,-1.8271,-0.17051,0.86463,2.1302,0.8514,-0.32404,-0.23781,1.8589,1.3791,0.086851,-0.77747 -0.73431,-3.0917,-2.0921,1.6943,0.639,0.33594,-1.6145,0.58507,0.57057,0.37105,-0.48961,-0.13432,-0.88002,-0.6472,0.42008 0.76391,1.376,-2.0391,0.81676,-2.2883,-0.12781,0.46419,1.0197,0.11927,0.31859,-0.79079,-0.095236,-0.25351,0.33552,-0.14898 -1.5601,-2.6856,-2.1592,1.3194,-0.61623,-0.010198,-1.9155,0.33322,0.64071,0.85273,-0.16717,0.2457,-1.0967,-0.31189,-0.18952 2.1873,0.78127,-2.0445,0.10727,-0.6181,-1.2477,0.38218,-1.6531,1.0084,0.45753,0.91364,-1.1976,-0.4494,0.66348,1.8932 4.8926,-2.7286,2.326,-0.08894,-0.69812,0.58774,-1.1423,1.6882,-1.9348,1.34,-0.28677,0.24012,0.58498,0.63331,-0.41709 -0.95137,-1.5883,0.45244,2.5161,0.68068,-2.3601,2.7001,1.3792,-1.0021,-1.2889,0.52742,-0.78137,-0.22866,-0.091482,-0.46083 2.1319,-3.3292,2.9684,1.1232,-1.8325,-1.0985,1.0648,-0.33812,-1.1632,-0.26638,-0.55124,-0.23727,-0.37329,-1.0212,-0.32787 2.0949,-1.8623,-2.3678,-0.84235,-2.1579,-0.055757,1.3597,2.196,1.2591,-0.22375,-0.17341,2.1426,1.1136,0.57608,-1.0247 2.738,1.6617,-1.287,0.82578,0.41376,-1.2973,-0.14018,-0.20267,0.80713,1.6096,-1.0647,-1.9625,0.54269,-0.1999,-0.041191 -0.52649,-2.3951,3.0864,0.33369,0.18849,-2.7446,1.6429,-0.98603,-2.1945,-0.11808,0.47657,-0.12795,1.0103,0.47973,-0.20947 2.4478,1.7026,-0.66879,-2.1557,-0.77776,-1.0137,-0.74774,-1.3083,0.10385,-0.20359,0.75612,-1.059,1.4702,0.27354,0.78082 0.99413,-4.6072,3.5988,-0.61979,0.35972,0.96658,-0.29325,1.5287,-2.7099,2.4471,0.32117,-0.17162,-0.08254,0.24539,-1.292 2.2087,-0.39613,-0.65388,2.4233,1.7092,-0.1027,0.47547,-1.3423,-1.5944,0.36724,1.8426,-0.22845,1.3836,0.25764,0.85164 -2.8729,-0.87481,-0.92001,-0.97578,2.0812,-2.4091,0.35801,0.14569,-1.9697,1.6841,-0.18478,-0.3961,0.35542,1.7225,0.51931 0.82654,1.2993,-1.7173,2.6835,0.75091,0.22999,-0.80297,-0.39236,-1.1593,0.5834,1.3311,-0.65816,-0.011326,0.19285,-0.072442 2.366,-2.2233,-0.50905,0.021228,-1.2526,1.3985,-1.1621,-1.4057,-0.73492,-2.3115,0.36357,-0.36938,2.1951,-1.4718,0.2287 2.1884,0.2458,3.5744,-1.943,-0.70992,-2.8376,1.9798,0.47809,-1.629,-1.1959,-1.3701,-0.56663,-0.90485,0.84555,-0.35395 4.1425,-1.0728,1.1273,0.36348,-2.1751,-0.0013193,-0.31094,1.2118,0.18348,-0.65526,-0.66941,-0.20747,-2.2926,1.3067,-0.43502 0.19413,0.95165,2.942,-1.495,-0.68173,-2.364,2.3422,0.98274,-2.4341,0.5966,-0.98484,-0.48214,0.18031,1.2102,0.64608 0.18976,-2.2853,4.0603,-1.4244,2.1402,-2.4065,1.3525,0.34608,-3.84,-0.4555,0.074191,-0.14579,-0.28701,0.62813,-0.51193 1.6047,-0.96552,3.9614,-1.8519,-0.098606,-2.5517,1.0609,0.40018,-3.3628,-1.0535,-0.42459,-0.4732,-0.20641,0.35528,-1.0105 -1.7483,-0.8693,4.112,-1.9237,-0.61551,-1.2673,-0.060875,0.19054,-2.4074,-0.78645,0.28667,-0.37088,-0.26325,0.45919,0.020823 -1.5222,-1.3027,-0.24873,2.2092,-0.71596,-0.49525,0.59004,-0.32931,1.2743,0.027553,1.7231,0.10522,-1.0214,-0.50816,-1.1103 2.9243,0.6274,-1.6911,0.17963,-0.98939,-0.72461,-0.47379,-1.6154,0.82411,0.71824,1.2645,-1.1079,-0.060284,0.84678,1.2828 0.047652,-2.7001,2.6148,-0.50972,-1.0862,-2.3807,1.6783,-0.43882,-2.0821,0.52377,0.7517,-0.13241,0.61271,0.19706,-0.40451 -1.09,-1.6488,2.0671,0.40548,0.24107,-3.2599,2.4206,-0.48087,-2.3012,0.4664,0.11177,-0.26564,0.70791,0.87668,0.16056 -0.38922,-1.8289,3.1346,0.60494,-2.2133,-1.8843,0.47075,0.58247,-0.33082,-0.49214,0.80938,0.36349,0.41763,0.38007,0.051963 2.6423,-2.0903,-2.7658,1.0927,1.2185,0.18777,3.2852,0.43135,0.37972,-0.98649,0.20778,1.7452,0.19727,1.2549,0.37539 3.825,0.37618,-0.21923,-1.1939,-1.9784,0.60532,-1.8231,0.95579,0.71189,0.44522,-1.2732,-0.82898,-0.07061,0.61672,-0.97147 -0.43494,-2.0196,-2.5562,1.8487,0.53284,-2.2415,-0.58741,1.3277,-1.2205,-0.077253,0.2135,1.8042,-0.14607,-0.74632,-0.27239 0.36769,-4.3093,-0.10209,0.090706,-1.7013,0.38776,-0.56564,0.11456,0.59606,0.98111,-1.6315,-0.4718,-0.033779,-0.71856,-1.1622 2.4413,-2.9669,-3.3929,1.0643,-1.2244,1.9725,1.4107,2.0561,0.58517,0.17232,0.24667,1.7241,-0.18879,0.3007,-0.14765 2.7991,2.3133,-0.080451,0.81658,0.60807,-1.7276,0.051801,-0.61391,0.47311,0.71155,-2.4074,-1.6155,-0.26658,-0.29005,-0.362 4.2067,-2.8569,-1.1875,0.31857,-1.0244,-0.1169,2.062,1.6687,-1.527,2.1412,-1.1146,0.0045832,-0.098438,1.0515,0.68316 3.2889,-2.9837,-2.3965,0.59798,-0.61743,0.55271,2.3885,0.73871,1.3599,-1.0525,0.3953,1.5609,0.13541,0.38978,0.075691 0.68859,-1.0468,-2.4185,1.8958,0.21705,-2.2479,0.98372,0.94935,-1.3339,0.62751,-0.42159,1.2438,1.721,0.16167,0.01713 -0.56644,0.39986,-3.1513,0.87388,-0.51386,-1.5785,0.0017829,1.1072,-0.06538,0.74614,-0.56803,0.56811,0.3395,1.4246,1.0907 -1.4613,-0.1158,-2.7089,-0.40962,0.077014,-1.7935,-0.60892,1.7036,-0.72815,-0.77499,0.085295,1.5247,0.1233,0.64139,1.0975 -1.8004,-2.5636,-0.79253,-1.3224,-2.187,-0.082674,-2.3683,-0.18984,-0.17207,1.2054,-0.46575,-0.30085,0.42729,-0.44825,0.42163 0.84069,2.7631,-1.0071,-0.29467,-2.2805,-0.77476,-1.6503,0.03724,-0.69511,1.0242,-0.50059,-1.1389,0.4777,0.22312,-0.019764 2.1483,0.62327,0.42912,-0.80516,-0.36124,-1.72,-2.1196,-0.82194,0.14076,-0.1963,3.0033,0.35585,1.147,0.62248,-0.23869 1.2316,-1.8331,-1.2566,1.4229,-0.31857,-2.2604,0.44864,0.43493,-1.2253,1.0005,-0.33517,1.5283,1.4893,-0.65917,-0.088454 0.20443,-2.2968,-1.2868,1.6572,0.41024,-2.4033,-0.40508,0.054035,-1.7354,0.72873,-0.32598,1.748,0.89209,-0.40852,0.50031 0.44118,-1.8469,-1.8666,1.6781,-0.59633,-2.0496,-0.026593,1.0484,-0.85409,0.15015,0.19927,1.0895,0.65752,-0.97828,-0.53334 -0.54293,-0.62769,-3.1088,1.0837,0.61094,-1.3572,-0.28112,1.2003,-0.44638,1.0169,-1.1532,0.43725,0.20037,1.4884,1.3217 3.8509,-0.25737,0.21072,-0.7805,-1.3209,-1.47,-1.8267,-1.1034,0.92495,0.2852,1.2777,-1.2314,-0.42101,0.34013,0.90588 -0.68999,1.7396,-2.1006,1.5197,0.80338,1.6352,0.18259,2.2761,-0.33577,-0.4751,-1.2887,-0.80372,-1.1321,0.065709,0.22629 0.27655,-3.4915,-2.0286,1.3385,-0.72817,-0.76046,-1.1779,0.3542,-0.38543,0.90147,-0.75326,0.98402,-0.10907,-0.78509,-0.32051 1.6533,1.2354,-0.17039,0.97479,1.0001,-0.39112,-1.0253,-1.4698,-1.5392,-0.36464,1.9067,-1.6118,0.67162,0.10776,0.89836 1.5445,2.342,-2.4744,-1.1048,-1.0528,-0.12723,-0.30333,0.17665,0.80579,0.1542,-0.99063,-1.5471,1.1499,-0.56377,-0.36506 1.6653,0.84546,-0.10425,-0.20387,1.68,-1.3588,-0.59687,0.79803,1.7078,0.73212,-0.21016,-0.30878,2.256,0.2734,-0.84643 3.3746,1.5432,-0.47876,-2.1726,0.62883,0.31839,-0.55131,-1.1602,1.5691,-0.17592,0.88256,0.48576,0.37741,0.36954,-0.9316 1.4038,-0.056191,0.18166,2.1279,-1.094,-0.43846,2.4932,-1.791,-1.579,0.13808,-0.95219,-0.045749,0.25769,-0.39142,0.45099 2.037,2.6788,0.89951,-1.578,-1.232,-2.4013,-0.66066,-0.6391,-0.75441,-0.44302,-0.9338,-1.0768,-0.1631,-0.1296,-0.17512 2.228,0.54584,-0.11582,-0.67619,-2.3568,-0.40996,-2.0404,-0.47723,0.70828,-0.98102,0.00024605,-0.047335,0.92003,0.30087,0.2942 2.154,-0.68896,-0.31087,2.1076,-1.0508,0.041355,2.7213,-1.4035,-2.2143,-1.5091,-1.0717,0.22166,-0.35722,-0.51495,-0.7574 5.6809,-2.1194,-0.56622,-0.97651,-0.58713,-1.7264,0.86316,-0.11279,0.74249,-1.2323,0.2266,0.0056224,-0.76592,0.48051,-0.96265 1.4257,-1.1445,1.5572,2.0536,-1.7386,1.1752,0.6935,-1.2527,-0.22169,0.21414,0.42924,0.006309,-0.48074,-0.7364,0.84409 -0.098685,0.36192,-0.80754,2.4867,-1.1163,-0.64961,2.2642,-1.5877,-0.3097,0.56578,-1.4638,0.011777,0.79515,-0.68159,0.63438 -0.97955,-0.79092,-1.8386,2.2424,-0.96755,-0.92632,1.7224,-1.505,0.29075,0.70886,-0.33193,-0.63416,0.80629,-0.10706,-0.25723 3.2719,-1.5334,-2.3222,-2.2484,-1.6787,-0.91942,1.4329,1.1637,1.786,-1.1809,1.5194,1.3288,0.58119,1.1332,0.14295 2.7204,-2.1946,0.55908,1.4932,-1.82,2.136,1.5808,0.091629,-1.0903,-2.1496,-0.96916,-0.70055,-0.8725,-1.4094,0.053999 3.201,0.74397,0.18583,1.1373,0.30385,-2.0404,-0.1537,-1.4605,-0.19908,0.77974,-0.70842,-1.2316,0.75433,1.1267,0.35706 -0.39555,-0.88091,0.52759,1.2538,-2.6735,0.21218,0.82991,-1.5808,0.51486,0.27449,0.46049,-0.85045,-1.0341,-0.4664,1.1635 -1.3134,1.0161,-2.3628,0.86286,-0.9408,0.22531,1.1369,2.2018,0.04158,1.2344,-0.60386,-0.71178,-0.87579,0.67896,0.22811 -0.77533,0.65239,0.0015903,-0.053886,-2.6326,-1.3989,1.9063,-0.91543,0.09699,0.61163,-0.84998,-0.059363,0.083211,0.31696,0.81744 0.87186,0.88015,1.2821,1.5855,-1.6315,-0.94744,-1.9159,-0.25788,0.56112,-0.88272,1.1401,1.1286,0.20427,0.68064,0.02669 0.51184,2.5571,-1.9224,-0.50409,-0.15528,0.6821,-1.1571,1.1432,0.426,0.56855,-0.72037,-1.1529,-0.39687,-0.066225,-0.80024 -0.10817,0.61946,-0.056781,2.7204,-1.2627,-1.178,-0.46684,0.57276,0.68721,-0.21697,0.8782,1.3408,0.12768,0.52122,-0.33379 -1.8044,-1.5009,-1.5468,1.1716,-1.3499,-0.83159,-0.015684,-0.64235,1.225,0.46837,1.0041,-0.31504,-0.13306,-0.23823,-0.92379 4.1102,-1.2296,-0.33837,-1.2476,-1.417,0.067172,-0.87912,-0.59503,0.038116,0.29811,1.3156,-1.5034,-1.127,1.1349,1.5265 -1.5063,-0.651,-1.4175,-0.044361,-1.7673,-0.86582,-0.48841,-2.5954,-0.4703,1.3185,0.16297,0.45754,-0.12028,0.28675,-0.37124 -2.1964,-1.8464,-1.6954,1.8486,-0.93298,-0.36728,0.35083,-1.7141,-0.22337,-0.12246,0.92333,-0.34241,0.14031,-1.1397,-0.46941 0.34755,1.4597,0.32675,2.2177,0.15775,-1.2072,-0.40888,1.5898,-2.4661,2.2052,0.47723,0.18689,-0.59827,0.94101,0.20971 -0.62336,1.6797,-1.1156,1.2333,1.689,-0.037711,-1.0675,3.0593,-0.89617,0.17771,0.37457,-0.75759,-1.8093,0.45,-1.2837 1.5789,-2.5241,-2.5357,1.3975,1.2315,0.39546,1.6023,1.3426,-1.8747,-2.3506,0.75909,-0.41075,0.98498,-0.10309,1.3203 -1.7221,-1.4124,-2.4825,1.5678,1.5564,-0.5449,0.7711,-0.50914,-0.96932,-0.56636,0.078098,-0.30977,0.70451,-0.11486,-0.41374 0.25773,-2.2789,-0.5215,1.547,-1.3594,1.5984,1.0475,-1.79,-1.1103,-0.35926,-0.27759,-0.92352,0.94713,-2.2534,-0.21787 2.2938,0.64523,-2.6314,-2.9126,-0.86708,-1.1344,0.81592,0.23857,0.57048,-2.1098,1.9722,0.46889,1.3908,0.61335,0.71482 1.9873,2.2094,-1.3515,0.13729,0.78501,-1.7114,0.29485,0.63098,-0.30234,1.1255,-1.1005,-2.0262,-0.44544,0.78811,0.4386 4.3051,-3.065,2.7913,1.6257,-0.75893,-0.074413,0.25583,0.33828,-2.5873,-0.34883,-0.68605,0.31353,-0.35526,-0.82142,-0.075535 -1.4903,0.67185,-0.56275,1.5112,0.72104,0.43575,1.8918,-0.6614,0.056619,2.3173,0.23082,-0.78737,0.088826,-0.1479,0.38164 1.083,-1.4816,1.9128,-0.35827,-0.82868,-2.579,1.7334,1.6651,-0.87869,-1.9173,-1.2234,0.50456,-0.45319,0.87711,-1.3982 0.88063,-0.8389,2.6748,0.87916,-2.4711,-1.324,-1.1675,0.30693,-0.12017,-0.37937,0.13161,0.68248,0.4268,-0.66532,0.10116 2.0117,-1.2987,1.791,0.95552,-1.9486,-1.988,2.5225,-0.57821,-0.22021,-0.24575,-1.3669,0.090415,-0.47412,0.18266,-0.16352 2.2692,0.95406,-0.1144,1.1556,-1.7961,-1.83,-0.76366,-1.2806,1.196,-0.84535,-1.3701,-0.16927,-0.26151,0.077783,-0.32673 -1.8024,2.5373,-0.83976,0.52905,-1.4733,0.73651,1.0339,0.36133,-1.8004,0.82422,-0.79342,0.57879,0.77292,0.66739,1.2117 2.5593,1.2488,0.049897,-2.4861,-0.87375,-1.8966,-0.85146,-1.5266,-0.44033,-1.0416,1.649,-0.29478,1.9502,0.070624,0.39897 1.2649,0.9203,-0.95664,2.354,-0.86192,-0.1196,-1.4338,-1.8696,-0.62224,-0.37835,0.43169,-0.35114,-0.33683,-0.19462,0.56454 -1.235,-1.0487,2.0255,-0.36212,-2.8807,-1.3688,0.10187,0.10239,-1.2452,-0.92504,0.44318,0.045185,0.96978,-1.7085,-0.46583 -1.1271,1.6218,1.7953,1.5045,-0.60623,-1.6278,-0.55892,0.67597,-0.036889,-1.0803,1.3515,1.2158,-1.0734,1.2298,-0.44855 3.1741,-0.73193,0.32623,0.47306,-2.2111,0.89493,-0.42131,1.4569,0.68946,-1.5678,-2.0044,0.49816,-0.953,-1.0691,-1.3058 4.1055,-1.3617,2.27,0.022046,-0.81594,-2.6903,-0.69897,-0.27526,-1.9837,-1.187,0.72043,0.13619,0.46283,0.075122,-0.70076 -2.0223,0.21341,-1.5825,1.1364,0.4377,0.76061,1.2266,0.47186,-1.7666,1.9928,1.0514,-0.75046,-0.22646,0.43989,-0.69212 -2.2218,-1.568,2.4738,-0.87233,-1.7093,-1.0937,0.21181,-0.92005,-0.49411,0.47711,1.721,-0.092743,-0.40988,-0.022038,0.1576 2.2724,0.95453,1.402,0.16612,0.029185,-2.3687,0.99307,0.80925,-0.87594,0.94812,-2.4707,-1.3989,0.39325,0.87109,0.03725 2.5976,-1.5347,-2.2729,-1.2663,-2.3942,0.19744,0.87393,1.8605,1.4898,0.36694,0.18204,1.2182,0.33692,-0.037075,0.18127 2.7209,0.2966,-0.26535,-0.13618,1.266,-0.48327,2.3339,-1.1419,-2.8006,-1.3989,-1.6521,-1.0815,1.8886,0.33474,0.8276 4.3409,-2.3755,-0.5353,-1.7346,0.068724,-1.806,2.3246,0.36333,0.75166,-0.19341,0.54439,1.1428,0.94146,1.0043,1.9875 -1.5207,-1.9032,1.899,2.2723,0.1879,-0.98652,0.62854,0.045818,0.63101,-0.54309,2.2172,-0.3244,-1.3076,0.11279,-0.6688 -0.88847,2.4855,-1.7047,1.6829,-0.54796,0.23199,-0.85589,1.3308,0.37972,0.36055,-0.43445,0.55291,-0.68558,0.90242,-1.0994 2.3301,0.99678,0.65168,2.4617,-0.81286,-0.10052,-0.19434,-2.2164,-0.13139,-1.031,-1.266,0.52451,-0.48828,-0.36518,-0.28061 1.9915,0.022799,1.8232,2.3677,0.2659,-2.6975,1.4187,-0.74717,-1.2539,-0.4805,-1.2054,-0.5937,1.3765,0.39645,-0.33395 -0.76301,-3.0776,3.6907,0.40447,-0.4892,-0.40959,-0.66572,2.7233,-1.5104,0.29846,1.0339,0.27205,0.14535,-0.94962,-1.3134 0.81337,3.0521,-2.1406,-1.7264,-0.44263,-0.34732,-1.3042,0.52641,-1.4363,0.067107,1.1648,-1.9798,0.62826,-0.34075,0.39624 -1.8862,-1.6722,1.9925,0.41985,-1.905,-0.25259,-0.67383,0.85688,0.39881,-0.43717,2.4397,-0.23851,-0.96097,0.14003,-0.70971 1.599,-1.215,2.5472,2.5618,-1.3967,-0.99625,0.66126,-1.2743,-1.2604,-1.179,-0.6511,0.020346,0.11996,-1.4478,-0.2762 1.0615,-1.0105,2.7313,1.1919,-0.87684,0.70766,-2.2248,2.5538,-0.28954,0.034132,2.1126,0.79727,-0.39436,0.40213,-0.20211 1.5099,-3.5678,2.0514,0.81032,-1.4527,1.5952,0.18615,0.52805,-0.42697,2.2852,-0.3443,-1.1631,0.81511,-0.47405,-0.40031 -0.62877,0.92039,1.5186,0.55298,-2.7643,0.012217,-1.2725,-0.12275,-0.27427,-1.4218,1.3327,1.1185,0.069258,0.18295,0.90141 2.9664,-1.8723,0.18221,1.8272,0.066828,3.1798,-2.0857,-0.019606,-2.1792,-0.20178,0.34727,0.11381,1.7463,-0.20754,-0.38821 -2.1952,-3.8268,0.25851,1.4673,1.2029,-0.70354,-0.12716,-0.24893,0.08705,-0.39046,0.52027,-1.2163,-0.76784,-2.2898,-1.1031 2.5562,1.339,-1.9514,-0.233,-1.5785,-1.0037,-0.17568,-1.4309,1.2192,0.15053,0.012104,-1.4401,0.05631,0.36235,0.3838 1.2149,0.56156,1.8371,0.62193,-2.9138,-1.6996,0.064966,-1.0386,-0.34082,-0.61097,-0.67592,0.20779,-0.62524,0.21447,0.71927 -1.744,0.35869,1.5779,0.65719,-0.59186,-0.57911,-0.58919,2.1533,0.11816,-1.2743,1.9099,0.38267,-1.3077,-0.40899,0.28481 3.1681,0.67492,0.66618,0.71157,-0.59868,-1.0674,-0.90511,-1.5255,1.0775,-0.54781,-0.048346,-0.13866,1.7535,0.7568,-0.48193 3.5339,-1.3544,-0.74406,-1.0575,-0.79283,-1.7275,1.1636,-0.42024,1.1117,-0.32286,1.1238,-0.73009,-0.99897,0.21498,2.1995 -1.9356,1.252,-0.075077,-0.67011,-1.1145,-0.13819,1.2665,0.86506,-1.4704,2.1266,0.091331,-0.43785,0.96194,1.3267,1.0285 -1.0665,-0.26696,-1.1842,-0.40513,1.6578,-0.22047,0.57721,-0.40673,0.07386,3.0768,-1.7171,-0.051849,1.4697,0.87588,-0.36477 -1.8671,-0.1408,0.23143,1.7344,-0.6743,-1.1247,1.4985,-0.86942,-0.27095,1.0369,1.6556,0.13106,-0.14122,0.1727,-0.00527 -0.5485,0.71107,-2.9802,1.6874,-0.41061,1.8122,-0.73232,0.92534,0.14792,-0.63894,-0.6133,-0.78136,-0.63998,0.21005,-0.26799 -0.84589,1.6613,0.49897,1.9945,-1.3482,-1.0542,1.3481,-0.48168,-0.14846,0.6882,-0.36056,1.3388,0.51619,0.19263,0.82184 -1.661,-1.1238,-0.089229,3.2318,-0.65815,-0.57892,1.2783,-0.075316,-0.14352,-1.2589,1.6507,0.29315,-0.84851,-0.81437,-0.33372 -0.074062,0.18608,1.2099,3.0326,-0.32144,-1.5402,-0.89062,-0.3451,-0.84748,-0.08446,1.0569,1.2285,-0.79842,-0.29309,-0.80214 3.4242,-2.4986,-2.4855,0.3808,-0.89001,3.1967,1.642,0.61504,-2.2853,0.75151,-0.71149,0.28915,1.5591,0.39745,1.4034 3.0371,2.2902,0.95802,-0.29279,-1.1156,-1.969,0.34055,-0.81268,0.86205,-1.2802,-2.2416,-0.39037,-0.5207,0.59199,-0.52453 -0.43002,2.2302,-0.24572,1.2038,-1.7491,0.020559,1.2804,-0.29003,-1.297,-0.083999,-0.50052,-0.78721,-0.95796,0.99054,1.3014 4.1885,-0.93811,2.1806,-2.564,-1.4612,-2.0659,-0.18989,1.958,-2.012,-1.7551,-0.58603,-0.41823,-0.50813,-0.044812,-0.93018 3.9663,-1.1969,-1.5747,-1.4351,-0.83274,-2.3978,1.3368,0.11204,1.6395,-0.4427,1.2113,-0.14833,0.74562,0.70771,0.72436 -2.1153,2.6371,1.2955,0.0004443,-1.2093,-1.1484,1.54,0.15002,-1.6412,-0.25849,-0.16677,-0.03511,-0.6763,0.95762,0.46845 -3.5531,0.45101,0.041509,-0.30507,-1.0521,-0.24068,0.71318,0.19636,-0.79177,-0.8977,2.3762,0.14878,-0.51744,-0.065789,-1.0075 1.2658,-0.64211,1.484,2.5841,-0.59925,-0.48622,-2.7281,0.55239,0.1866,-0.81631,1.4201,0.51979,-0.71103,-0.047505,-0.50552 0.63159,-2.0296,1.7373,-1.331,-2.878,0.99714,0.33487,0.38305,-0.54089,1.2289,-1.7458,-1.736,-1.0687,-0.2656,-0.70939 -2.5278,1.5763,0.018833,0.42097,-0.7628,-0.50545,1.0917,0.55482,-1.535,1.4075,0.67795,0.8313,-0.267,1.4545,-0.46971 0.56325,-0.50412,2.0648,1.8793,-2.2128,-1.2125,1.118,-1.4201,0.34598,-0.10836,-0.5341,0.29174,0.035038,-0.65662,0.6394 -1.1597,0.46736,1.4616,2.0066,-0.9938,0.27793,-0.8602,0.71741,0.73988,0.51063,2.246,0.67395,-1.2224,-0.22717,0.38353 -1.4189,2.5511,0.37442,0.57126,-0.92434,-1.456,1.0675,1.1776,-0.94025,0.6331,-1.3815,-0.87421,1.0943,0.065349,0.70222 1.0185,1.9044,-0.20492,0.19294,2.3566,-2.311,-0.91914,1.3197,0.93064,-0.14174,0.19306,-1.9026,1.7774,0.072177,-0.31014 -2.4756,-3.1739,0.70915,-0.66987,-0.40005,0.36872,-1.8754,1.7139,0.55262,0.93688,0.59757,-1.6573,-0.60803,-0.32626,-0.85507 2.0462,-0.62124,-2.4865,-0.18204,-1.5259,-0.91824,1.4518,0.011276,0.60395,1.2478,-0.55852,1.3766,-0.68546,-0.66468,1.3249 -1.9502,-2.7059,1.7099,-2.1543,-1.1481,0.98904,-2.2271,-0.59555,-1.383,1.1121,0.1369,-0.75557,0.2872,-0.43972,-0.34446 2.6815,0.38187,-2.6325,1.0245,0.34568,-0.20884,1.128,-0.88481,0.71753,-1.1131,-0.41969,-1.8547,0.48255,0.017484,-0.19006 -2.0902,0.17472,-1.6799,-0.20315,-1.9714,-0.70587,1.0929,-1.9121,-0.40995,0.71169,0.27715,-0.37816,0.4766,0.89235,-0.61835 0.98212,-0.17762,-3.0515,0.3768,2.3483,-0.68324,1.6289,0.4865,-0.50925,-2.2814,1.102,-1.0886,0.28759,0.45719,2.0458 -2.4153,-2.5743,0.4436,-1.6524,-0.093523,0.65465,-1.6983,2.3868,-0.39786,-0.42765,-0.19337,-2.0445,0.3243,-0.64032,-0.38196 0.91081,-0.30513,3.169,0.76684,-2.3768,0.42745,-1.2318,-0.037001,-0.28676,1.1599,0.06914,0.11279,-1.052,-0.35256,0.30367 3.6347,0.0092632,-1.2104,-3.4275,-0.72966,-1.9532,0.50921,1.394,-1.0607,-2.5402,1.5471,0.092018,0.98877,0.018202,-0.56873 2.1029,-0.55299,-2.9407,0.40955,-1.574,0.71713,1.0242,-0.41467,1.8255,0.16198,0.21679,-0.089094,0.48891,0.15426,1.257 -2.4666,-2.8842,-1.5219,0.50911,0.27979,-2.052,-1.7223,-0.59532,0.25388,0.09348,0.17437,1.0298,-1.0357,-0.95203,-0.70715 -3.4593,-2.2545,-0.86162,-1.4287,0.63885,-0.65061,-1.6055,0.39079,-0.98568,-0.29668,-0.18143,0.010294,-0.3086,-1.7244,-0.90661 -3.8708,-2.0083,-0.4368,-1.8273,0.15662,0.32854,-1.7674,0.96624,-0.13506,-0.58469,-0.1416,-1.2879,-0.79901,-0.63625,-0.029672 -3.2342,-2.0765,-2.7443,-1.4756,0.23326,0.15983,-2.635,0.95544,-0.85499,-1.1509,-0.96123,0.40285,-1.796,-0.88147,0.93258 -3.2866,-2.6613,0.34789,-1.551,-0.59596,-0.32552,-1.7992,0.80593,0.26378,0.24315,0.61781,-1.0158,-0.71167,-0.72437,-0.6324 2.5711,0.40023,0.97021,0.81919,-2.1185,0.00067918,-1.5857,-1.3518,0.63574,-0.85312,-0.26045,-0.47382,-0.65774,0.73013,0.90744 1.4482,2.0295,0.065046,0.17237,-2.2549,-1.1997,-0.26192,0.037783,0.6878,-0.38761,-1.8483,-0.096471,0.26115,0.52188,0.46537 2.5112,0.91198,1.1592,-0.1788,2.8741,-1.3537,-0.12855,1.5805,-0.49554,2.0963,0.5714,0.46049,1.2976,-0.42359,-1.5683 -3.0917,-2.9539,0.12577,-0.48672,-0.2068,-1.7889,-0.80739,-0.14203,-0.8798,-0.46018,1.0724,-0.018091,-0.020894,-1.6486,-1.5602 -0.99825,-2.8907,-0.040082,-0.67262,2.5613,-0.041312,-2.4587,1.683,-0.67874,1.2598,-1.4044,0.92414,0.0030584,-0.45094,1.6041 -3.1251,-2.3813,-0.016101,-0.84061,-0.94313,0.10762,-1.9457,0.34795,0.81987,0.49548,1.0138,-0.62805,-0.85948,-0.25798,-0.87091 0.98188,0.7936,1.6797,2.1889,1.1086,-0.7461,0.12305,0.90041,0.10482,1.4009,-0.71193,0.54626,0.50668,-1.0342,-0.17557 1.583,1.192,-1.9257,-0.76091,-0.60422,-2.0097,0.39317,0.57666,0.40768,1.4758,1.1655,-0.48319,-0.086866,-0.020999,1.7024 -2.1308,2.0541,1.1302,-0.408,-0.88293,-1.9217,1.773,0.26124,-1.8348,-0.6337,-1.4874,-0.22896,-0.97542,0.52843,0.6368 -3.0809,1.9647,-1.0331,-0.33484,-0.70604,0.68459,2.1471,0.31773,-1.5664,1.147,-0.018411,0.15336,-0.022399,0.29705,0.13456 2.042,-0.51554,-1.9822,-1.1346,-1.3066,-1.6522,0.57389,0.38163,1.8106,-1.291,1.7039,0.62613,1.2747,1.0794,0.32176 -0.57458,-0.014633,3.5836,0.39518,-1.7402,-1.0186,-0.22868,-0.46755,-0.69117,0.47298,0.7171,0.73044,-0.61331,-1.1003,-0.71643 0.85205,-0.70335,0.5679,2.5948,-0.74426,-1.6866,2.8624,-0.7064,-0.45516,-0.28886,-0.93132,0.062508,1.2532,-0.19346,-0.18021 -2.7157,-1.0497,-0.26958,0.44167,2.3783,-1.2338,0.66824,-0.91944,-1.3436,1.1246,1.2318,-0.12914,-1.0331,1.019,-0.55838 0.17629,-1.606,0.21832,2.0264,-0.083282,-1.6517,2.393,-2.0043,-0.979,0.59177,-0.51057,-0.15318,1.8396,-0.52151,-0.71964 1.6143,1.0421,-1.8558,1.4674,-0.10902,-1.3195,-0.30611,-0.64046,0.92337,0.54987,0.15755,-0.6722,0.22934,1.3342,0.12882 4.1768,-2.0042,0.10551,1.4287,-1.1935,3.3864,0.56845,1.8119,-1.6137,-1.3794,-1.9735,-0.77795,-1.1012,0.18435,-0.41416 -1.7987,-0.71309,-0.50413,0.37201,0.46053,-2.4517,0.45543,-1.0629,-0.96042,2.0258,0.4503,0.44571,1.1609,0.73324,-0.49383 1.4506,-2.1273,2.6029,2.3307,0.35341,-0.16991,-1.203,1.8745,-0.14851,-0.51647,1.8674,1.067,0.33372,0.51914,-0.73658 -0.48727,-0.18144,1.6668,0.87711,-1.3314,-2.0124,2.4006,-1.5172,-1.2069,1.8847,0.30589,-0.063215,0.37244,0.96284,0.21144 -1.2836,-0.79507,0.085202,2.6296,0.13137,-1.0148,1.519,0.55633,0.89103,-0.31148,1.0551,0.18849,-0.11458,0.24061,-0.43975 -1.4821,-1.6212,-1.5676,1.66,1.0986,-0.85383,1.6743,-0.35568,-1.3762,-2.1454,1.0574,-0.76799,-0.62713,-0.37211,-0.54333 -1.3718,0.10817,-0.94603,1.9585,-1.1555,-0.50553,0.70996,0.47384,-0.083399,-0.23161,1.2927,0.43836,0.1696,0.10371,-0.54875 4.6549,-5.2025,-1.0577,-0.036743,-0.9148,0.68281,1.5092,1.5656,-1.2679,0.88558,-1.3441,1.1882,-0.51761,-0.34934,0.45593 4.6129,-3.9052,-1.6121,-0.37736,-0.50924,0.29412,1.0348,1.7623,0.84436,1.0556,0.29019,-0.11851,-0.95713,0.23499,0.96078 0.039511,2.1458,0.76714,0.73202,-0.85727,-1.3035,-2.1183,-0.21437,0.68221,-0.91801,1.2002,1.0169,1.0632,1.0595,-0.58565 1.8408,1.5177,0.58071,1.0444,-1.8372,-1.7931,-1.2511,-1.8074,-0.25474,0.32632,-0.20481,-0.5697,-0.52457,1.0222,0.29877 1.108,0.95006,-1.9859,0.82498,1.1051,-1.5129,-0.57386,1.4349,0.97878,0.035293,0.65483,-1.778,0.67907,0.30485,-0.60194 5.1415,-3.1566,-2.3606,-0.19871,-0.19644,0.52223,1.862,2.7489,-0.19893,1.6747,0.08286,-0.33401,-0.37973,1.1107,0.44978 1.1133,-3.7186,0.81748,1.2665,-1.2671,1.2721,0.05769,0.34551,-0.055475,2.0387,-1.5647,-1.7207,0.58846,-0.33972,0.00085362 -0.016712,1.3088,-1.0939,2.2304,-0.59262,1.0339,-2.0563,1.1154,0.20906,0.0062066,1.2614,0.036969,-1.0371,1.4247,-1.0584 1.2752,-2.7394,2.1873,1.3896,1.6051,3.9289,-0.44338,0.20074,-1.987,0.35738,0.25112,-0.54256,1.1029,-0.6478,0.92388 2.3055,2.1472,-0.43994,-1.1654,-0.10038,-2.4227,-0.76785,-0.67186,0.12995,0.16455,0.11037,-1.4939,1.01,-0.32949,0.49164 1.2101,-1.2354,2.775,-0.2179,-3.0851,0.86368,-0.73492,0.84719,-0.21661,1.5468,0.032487,-0.68296,-0.61748,0.51755,0.80068 5.3504,-2.0853,0.70784,0.75869,-1.0853,1.2635,0.21503,2.4573,-0.85563,0.46557,-1.8908,-0.81112,-1.7207,1.2892,-0.77312 0.46586,-0.95414,2.27,-1.0013,-3.315,0.30066,-0.15858,0.86631,-0.4529,-1.4724,-0.71782,-0.66295,-0.83588,-0.89502,0.48787 3.1275,-0.71183,0.68347,0.98609,-1.6106,-1.4861,-0.53147,-0.96013,-0.047353,-1.1785,-1.1476,-1.4158,-2.0484,-0.60782,-0.19579 -0.064957,2.0599,0.24743,0.92533,-1.6949,-0.3443,-1.4881,-0.84681,-0.16829,-0.63589,0.50875,1.1657,0.81427,-0.0038469,-0.39052 -1.4122,-0.021907,1.7583,-1.2677,-2.0386,-0.047405,0.67263,-0.47889,-3.3625,-1.7962,-0.52364,-1.7921,-1.4786,-0.82598,0.78986 0.96316,-4.1383,2.4481,0.76982,0.053498,2.745,-0.050833,-0.04373,-3.214,1.2107,0.050525,-1.3854,0.46712,-0.21172,0.38034 2.4084,1.8283,-1.8645,-2.105,-1.5425,-0.61098,-0.77549,-0.19682,-0.12119,-2.1862,0.57468,-1.6872,-0.035502,-0.26515,-0.16078 -0.23585,-0.87232,-1.2752,0.72262,-0.52413,0.72701,-0.6554,1.7306,1.3854,-0.78482,0.38141,0.69329,-1.2767,-0.0090305,-0.66397 3.2744,-3.6023,2.1837,-0.54943,-1.9767,0.058092,1.2792,1.5639,-1.6253,0.8517,-0.91891,-0.88726,-2.3331,0.20026,-0.051128 -2.1486,-2.1246,0.45165,0.18882,0.60298,0.88241,-1.7252,0.70499,0.35956,1.3402,1.5065,-1.1734,-1.1952,1.4405,-0.48959 -0.30125,2.2064,-0.6563,1.0763,-2.6199,-0.41095,-0.056057,-0.38944,-0.63089,-0.28244,-0.48897,0.045004,-0.55677,0.68104,0.67963 -0.42569,1.7206,-1.8887,-0.12016,-2.5745,1.1145,1.0295,0.77038,-0.067838,0.44656,-1.0427,-0.056153,-0.22627,0.032654,0.94952 2.6774,0.26466,-1.862,0.40993,-1.2772,-0.13235,-0.60723,-2.1597,0.44588,-0.066921,0.42454,-2.0115,-1.0558,-0.47783,1.3284 -0.90382,-2.1612,-0.019577,-1.1191,-1.377,-2.0137,-0.18927,-2.3775,-0.91184,1.3744,-0.37947,1.0154,0.97065,0.21598,-0.70539 5.3154,-3.2426,-0.35035,-0.24195,0.32993,-1.7266,0.66701,-0.17833,0.38719,-1.1305,0.36237,-0.18765,0.10286,0.16521,-0.00042487 -1.4707,-4.0311,-0.33551,0.23269,-0.30735,-0.86367,-1.5027,0.32809,0.34765,1.0166,0.32207,0.44898,-0.2748,-0.98457,-1.0624 -0.8977,-3.7407,0.78836,-1.7129,-1.5837,0.63673,-1.8441,-0.50778,-0.65996,2.0452,-0.55354,0.37917,0.62228,-0.38978,-0.93209 0.017557,1.1762,-0.65979,3.0622,1.2171,-0.15613,0.33045,-0.38461,-2.1465,-0.29483,0.94958,0.077413,0.077206,1.3113,0.57199 -1.5951,-3.4837,-1.2606,0.52795,-0.27714,-1.077,-1.5095,0.2548,0.78107,0.17746,0.36817,0.34072,-0.68379,-0.59869,-1.0034 0.91291,1.5587,-1.6675,1.7304,0.92436,-1.4337,-0.57203,-1.208,-0.63093,0.23537,1.5517,-1.1825,-0.33208,1.3531,-0.016948 -1.2496,-4.1524,-0.12931,1.0326,0.63901,1.2052,-1.2828,1.1935,0.28825,1.8009,0.4463,-1.1951,-0.18115,0.28103,-0.84954 -1.3333,2.1067,-0.05388,-0.053295,-2.6766,0.047765,-0.57454,0.35481,-0.94602,-0.039201,1.3304,0.68929,-0.0089414,-0.11404,0.40425 -1.0369,-2.9902,-0.56549,-0.96104,-0.49562,-0.43622,-2.6398,-0.90852,-0.39637,0.90555,-0.22205,2.4047,0.39597,-1.0369,-0.36818 0.97048,2.3179,-2.6865,-0.36015,-1.3108,-0.30307,-0.40597,0.29603,-0.26082,1.0349,-0.23621,-1.57,-0.2538,-0.048564,0.58373 0.70902,1.3866,-2.8752,-1.9116,-1.4561,0.34062,0.12988,1.4291,-1.1763,0.70114,1.2148,0.050725,0.52434,-0.049215,1.396 -0.3015,-2.8288,-0.22823,-2.5135,-1.3904,1.594,-2.111,-0.57584,-1.1915,1.7349,-1.3507,1.2793,-0.13795,-0.28468,-0.042367 -3.0974,-2.2126,-1.6374,-1.3498,-0.25611,-1.2713,-1.3536,-0.112,-0.71592,-0.88872,0.62038,0.54567,-0.059249,-0.72586,-0.57136 -0.26764,1.2871,-1.9961,1.8377,0.39361,0.79267,-0.68775,0.46695,-0.2111,-0.96241,-0.48698,-1.056,-1.2656,-0.43919,-0.93463 0.18664,2.3268,-0.05361,0.51053,-1.7876,-1.3722,-0.65396,-0.080886,-0.35214,-0.11978,-1.0061,0.18811,1.8701,0.58705,-0.035414 -1.971,1.3556,-0.56085,1.7062,-1.4973,-0.59885,0.87209,0.34324,0.014144,1.0311,0.0023297,1.5628,0.49139,0.25893,0.42606 -1.8601,-3.6611,-1.3627,-0.43652,-0.11548,-2.0942,-1.7266,1.0501,-0.18243,-0.22781,-0.39121,0.13216,-1.266,-0.77027,-0.37633 1.6963,1.8708,-2.5813,-1.6661,-0.56987,-1.387,0.54282,0.74698,1.0468,1.5363,0.40707,-0.56907,-0.084102,0.17735,1.3328 0.24339,0.20875,1.6247,2.6646,0.72367,-0.91806,-1.6337,0.11293,0.86234,-1.2584,1.0973,1.0863,-1.0919,0.3821,-0.20207 -1.9573,-2.8805,-0.37906,0.14376,-1.244,-1.1827,-0.83435,-0.056024,0.85875,0.0061011,0.77451,-0.33847,0.033271,-1.2774,-0.97337 2.4754,1.2958,2.1374,-2.5068,-2.0567,-1.581,0.01238,0.81807,-1.6258,-2.1436,-0.51998,-1.2362,-1.0737,0.013498,0.41063 -0.63941,-3.4099,1.765,-0.12231,-0.82855,1.0458,-0.95851,1.0936,0.72877,2.42,0.14917,-1.0313,0.88041,0.27359,-0.91128 -0.20934,-3.216,-0.91225,-0.22899,-0.81843,0.4289,-2.088,0.79525,0.3751,1.5649,-0.93936,1.1528,1.0339,-0.73759,0.19087 3.4251,0.021935,-1.2949,-0.40968,-0.69552,-2.8384,1.1085,0.24955,1.2474,-1.0319,0.24101,-0.35508,-0.34547,1.0929,-1.0455 -1.5833,-3.4924,-1.0535,0.58968,0.61698,-0.35403,-1.7084,0.19772,0.88935,0.43218,-0.1311,0.60402,-0.71051,-0.77854,-0.73888 -1.8203,-0.41791,-1.2772,0.18614,-0.9098,-0.27163,-0.17816,-1.7829,-0.091556,1.7387,0.86629,1.0171,-0.031192,0.58093,-0.49128 -1.762,-0.57339,-0.097876,1.2987,-2.428,-0.68285,0.4816,-0.84728,1.0272,0.046045,1.5609,0.14581,-0.21315,-0.035109,-0.53942 -1.2091,-3.1045,0.23825,0.11128,1.4583,-0.41922,-1.4109,2.1104,0.040924,1.9852,-1.1205,-1.4392,0.37208,0.39756,0.97222 3.6214,-1.0417,-2.7232,0.39129,-0.23119,0.67967,1.4652,-0.71924,0.61388,-1.3775,0.37698,-0.65655,0.5172,0.35743,-0.21309 -0.46502,-2.8875,2.0382,0.81626,-1.296,-0.41907,-0.39573,-2.6433,-0.73527,1.0016,0.88597,-1.0441,-1.2245,-0.20027,0.39871 -3.1499,-2.9938,0.45586,-0.63228,-0.63259,0.15761,-1.9642,0.12461,0.040199,0.017602,1.1605,-0.62123,-1.4736,0.11927,-0.74801 1.2818,-0.087172,-0.36455,0.29014,1.2293,-0.29938,-0.85436,-1.7345,-1.7247,-1.5653,2.8001,-0.62026,0.70985,0.93771,1.3458 3.1744,0.88942,-0.4461,-2.5018,-1.9733,-0.5091,-1.8399,-0.44663,0.15107,-2.2185,0.42913,-1.5145,0.3857,-0.59304,0.19705 -2.9026,-1.0131,0.32449,0.75112,-0.97927,-1.0122,0.7094,-0.48966,0.56088,-0.64997,2.0832,-0.65496,-0.79176,0.32513,-0.8843 -3.297,-0.62457,0.034214,0.095855,-1.0929,-2.0365,0.72739,-0.52912,0.24627,0.20564,1.4861,-0.029893,0.19315,0.71172,-0.79081 1.1319,0.16642,0.86506,1.906,-2.1211,-1.0906,-1.6588,-0.613,1.0863,-0.57443,0.25113,0.38369,0.41826,0.23564,0.20237 0.54178,2.3488,0.46583,0.118,-1.7767,0.32866,0.87967,0.45658,-1.5167,-0.75862,-1.6672,0.53589,1.6925,-0.014251,0.48789 -2.5008,-2.0717,-0.00059083,-0.51308,-0.3425,-1.7342,-1.1673,-1.7313,-0.73571,0.99305,1.2411,0.59127,-0.38556,0.30486,-0.96118 2.2854,2.2002,-1.5545,-0.34964,0.25257,-1.9582,0.07549,0.48114,0.97978,-0.11117,-1.4319,-1.2027,0.97412,-0.35733,-0.94501 -0.3222,2.353,0.77238,-1.083,-2.6413,-1.1536,0.79235,0.11984,-1.9348,-1.4887,-1.1595,-0.49718,-0.57853,0.20223,0.94796 0.1582,1.807,-1.391,0.88288,0.98177,0.78381,-0.076071,-0.055848,-0.97193,0.039007,-1.1232,-1.5093,1.9423,-0.05844,0.53614 1.5994,1.3741,-2.0636,1.1779,-0.13781,0.56765,0.23327,-1.6446,-0.85004,0.18116,-1.026,-2.2276,1.4158,-0.22617,0.9867 -2.2703,-1.3305,-0.88719,0.6073,-0.21314,-2.8123,-0.3483,-1.8648,-0.34699,1.0858,0.40309,0.56449,0.20824,0.65061,-0.31122 1.5823,1.4188,-0.62156,-0.26995,-1.1722,-0.13299,-0.093572,0.11653,-0.11244,0.48666,-1.6865,0.29312,2.1321,0.1261,-0.62232 -1.1949,-2.3357,-2.203,1.2296,1.1354,-0.76058,0.49268,-0.33007,-0.43852,-1.3991,-0.46175,-1.0359,-1.3433,-0.98117,-0.034041 -1.5734,0.18323,-3.3596,-0.98092,-0.86741,0.59133,-0.64701,0.99124,0.52668,0.87455,-0.97332,-0.068419,-0.15868,0.96287,-0.0084137 -2.7098,-2.5776,-1.5293,0.34488,-0.071232,0.2367,-1.3511,-0.38904,0.40179,-0.63356,0.24655,-0.64774,-2.4207,-0.5218,-1.0345 1.5675,2.3876,-0.78261,-1.7744,-0.76812,-0.61811,-2.3047,-0.43296,-1.3423,-0.064335,3.165,-0.56784,0.59386,0.15332,0.0034814 -0.85853,2.2661,1.2866,0.63979,-0.8249,-1.665,1.1347,0.52743,-0.72371,0.6755,-1.9151,-0.026272,1.1413,0.67081,0.42889 4.5838,-5.2875,-0.003385,0.032819,0.21267,0.26175,2.3691,0.95049,-1.9638,-1.51,-0.53269,0.45678,1.0016,1.0654,1.0788 -0.90147,2.7219,0.20377,0.012201,-2.1098,-0.20341,1.663,-0.47569,-1.3513,-0.51031,-0.86755,-0.32836,0.1283,-0.38145,1.5078 -1.9896,-2.812,-1.8096,0.88572,-0.67659,0.30787,-2.2425,-0.097978,0.73149,0.60595,0.020434,-0.35206,-1.1686,-0.39606,0.53002 -1.5959,-2.0218,-2.1795,0.56077,-0.96496,0.67696,-2.7806,0.40442,0.54004,0.98992,-0.036531,0.41704,-0.39279,-0.033276,1.1595 2.7565,-1.0171,-1.7427,-1.2723,-2.3774,0.026191,0.90477,0.92924,0.68637,1.4236,-0.80093,1.0588,0.4621,-0.46516,0.72154 -2.186,-1.8649,-2.5698,0.22589,-0.01501,-0.30111,-2.7158,0.75001,0.36799,-0.2539,-0.20763,1.5366,-1.9333,-0.78529,0.76434 -0.47382,-2.8348,-0.87238,1.2384,-0.2647,2.0405,-1.2748,-1.2085,0.17338,0.31741,-0.2948,-0.30651,1.1683,-1.7438,0.25163 1.3177,2.1202,-1.3687,-0.14444,-0.76131,-0.71068,-1.5648,-0.97476,-0.40424,1.1772,2.3675,-0.58578,-0.19289,0.43494,-0.12752 -1.9656,-0.83818,-2.885,0.38028,-1.3507,-1.4721,-1.3914,-1.0176,-0.2544,-0.027289,0.063383,1.8656,0.020371,0.038236,0.48963 -2.0896,-0.49327,-3.3945,1.1221,0.097854,-1.5616,-0.38215,-0.6381,-0.088427,0.090298,-0.29306,1.3359,-0.11535,0.60047,0.13127 -0.647,2.8516,-0.612,1.9461,-0.75159,-0.63322,-0.44192,0.42149,-0.63908,1.0296,-0.79538,0.36107,-0.21161,1.3421,0.094585 -1.5288,-1.9849,0.94092,1.1046,-1.608,0.19894,-0.79816,-1.0164,0.84452,0.94045,1.2278,-0.46591,-0.44742,-0.90357,-0.061442 -2.8064,-2.0161,-1.5807,0.15652,-0.25506,-1.1514,-1.8783,-1.1106,0.51622,0.20416,0.52163,0.78458,-0.69417,-0.49832,-0.093407 -1.6265,-2.7365,0.29826,1.063,-1.1195,-0.17313,-0.78167,-1.7586,0.49457,1.2963,0.65427,-0.37447,-0.18284,-1.3818,-0.39771 -1.038,3.6952,0.045071,0.55293,-0.27034,-0.60435,-0.97709,0.55519,-1.5472,0.96632,-0.3266,0.29488,-0.34632,0.27031,-0.4335 3.3645,-0.61682,1.1041,-1.3237,-1.9571,1.3837,-2.3694,2.2547,-0.80031,1.1184,-0.5814,0.89252,1.6892,0.58395,-1.0176 -1.9965,-2.3827,-2.455,0.46097,-1.2479,-0.78577,-2.4746,0.20107,0.45993,-0.014824,-0.21887,0.39745,-1.4347,-0.33786,0.68001 -1.0532,2.2393,-1.4902,1.8108,-0.76808,1.0914,-0.086613,0.92945,-0.50935,1.3559,-0.36951,0.76745,-0.82236,0.8753,-0.37039 -1.8608,-2.9516,-1.8636,0.79391,0.43899,-0.13912,-2.7792,0.2446,0.58803,0.097752,-0.72469,0.12523,-1.6144,-0.79557,1.5322 0.43373,0.77089,3.3439,-0.73007,-0.91041,-0.35104,-1.2405,1.0064,-1.2577,-1.7561,0.83773,1.5695,1.0811,-0.6623,-0.6843 4.3219,-1.6875,0.7077,0.34108,-0.36349,0.62474,-2.2392,0.66115,-0.45726,1.9999,0.56909,0.092202,1.2351,0.23387,-1.2694 1.7356,0.052852,-0.78489,2.6432,1.3874,-0.24569,-1.3398,-0.86984,0.40947,-0.67486,2.3137,-0.36579,0.16367,-0.043014,-1.0157 4.6506,-0.89773,0.31765,-1.0732,-1.3767,0.45136,-1.5357,1.2713,-0.71681,2.3461,-0.24637,0.40389,0.41094,1.1528,-0.98739 0.15607,0.22808,2.1832,0.75971,-1.4939,1.1312,-1.9602,0.88112,1.1544,0.92583,0.62957,1.0542,-0.028204,0.0029624,0.69329 2.2877,0.34397,1.4377,-0.092111,-2.8346,-1.6721,-1.4897,-0.36067,0.15502,-1.0606,-0.97201,0.42487,0.17162,-0.54837,-0.40174 1.7606,-1.9389,-0.019003,3.2456,0.00109,1.1889,-2.2251,1.3161,-0.24132,-0.29995,0.42874,-0.23239,0.80506,-0.38883,0.023505 -0.34873,-0.70251,0.93478,0.64585,-2.8152,-0.99631,0.3204,-0.71688,0.97858,0.54681,0.12331,0.60132,0.61755,-1.2159,-0.046589 0.55357,2.4949,-0.61897,-0.40776,-2.1088,-0.38384,-1.2424,-0.58094,-0.28475,-1.1707,-0.44616,-0.55671,0.69739,0.83629,0.43793 -0.73112,0.895,0.23582,3.2017,0.20205,-1.1703,0.30756,0.56648,0.43217,-1.1709,0.70807,0.96635,-0.66952,0.572,-0.70566 -1.1735,-2.5636,0.73273,-1.4866,1.2891,0.56051,-2.3141,0.55475,-0.40916,2.6746,-1.2177,0.39373,0.033305,0.97125,0.71238 3.1051,0.98328,-0.6552,1.0737,1.3772,-1.6668,0.006623,-1.3371,0.061901,1.0919,0.41537,-1.802,0.73434,0.79852,0.99206 5.9704,-3.8081,-1.0076,-0.83151,0.050703,2.061,1.3096,-0.23879,-1.8506,-0.41629,0.73356,0.21108,-0.47105,0.33369,0.99809 -2.3871,0.068137,0.74258,0.031255,-1.9969,-0.42628,0.42176,-0.46789,0.51211,-0.57391,1.7762,0.45476,0.81125,-0.34619,-0.17616 4.7424,-2.5429,0.39041,0.44704,0.077089,-0.67031,-1.1675,-0.49074,-0.48084,0.40733,1.6152,0.015219,1.0519,0.38005,-0.1236 1.1132,0.68013,0.21986,1.2684,-2.9783,-0.36354,0.074194,-0.52257,0.94046,-0.37444,-1.093,0.19244,-0.41921,-0.035556,0.70317 2.1896,-0.55778,-1.3349,1.9693,1.8073,-2.5024,-0.043906,0.84721,0.25726,-1.9867,1.492,-0.97552,0.61464,1.0852,-0.80335 3.1791,-0.69396,-0.30954,1.5789,1.173,2.2185,-0.84468,1.0525,0.11345,1.096,-0.48568,0.22647,2.2581,0.49719,-1.3541 -1.5061,-0.30955,-1.1931,1.6631,-0.61963,-0.04151,0.96114,-1.561,-1.1442,0.62775,1.7609,0.20623,-0.18526,0.38042,-0.50578 3.2751,-0.51598,-2.7849,-2.3259,-2.3412,0.45648,0.57129,1.708,0.27632,1.7051,0.41365,-0.15505,0.4624,1.2588,1.5515 5.118,-2.943,0.071883,1.1726,0.14657,1.8871,-0.60499,-0.096895,-2.1278,0.91907,0.18085,-0.3132,0.69758,0.15553,-0.90437 4.2132,-1.5764,-0.96237,-0.087901,-1.1476,0.55763,-0.53167,1.3533,-0.75703,2.7446,-0.1329,0.51986,1.5633,0.37934,-1.5877 1.7296,-1.621,1.1015,2.3878,-0.34325,0.072976,-2.2533,0.64466,0.81854,-0.99391,0.74498,0.30976,0.87158,-0.76451,-0.77795 1.2999,-0.90556,1.8438,0.64784,-2.9196,0.14669,-1.3478,1.0247,0.61081,0.21979,0.061789,0.80785,0.5751,-0.20405,0.35758 -1.1196,-4.9398,1.6277,-0.89284,0.26771,-1.4691,-0.71179,-0.17281,-0.33038,0.92335,-0.21322,0.41147,0.46885,-0.67572,-1.1701 -0.92635,2.7497,-1.2868,0.39392,0.30884,0.25467,-2.2425,1.8785,-0.2778,0.44156,0.50311,-0.38642,0.44107,-0.066801,-1.1804 -0.96788,-3.2523,0.015533,0.17895,-0.36023,-2.4944,0.072825,-1.495,0.16024,0.75808,-0.26947,0.91415,1.5971,-0.192,-1.0533 -0.96231,1.5786,-1.1759,0.92713,-1.5399,0.92242,-1.454,1.6283,0.40701,-0.50778,1.1393,0.43751,-0.48211,0.70623,-1.0419 0.59997,-2.575,2.3785,2.1403,-1.1865,0.55961,1.0386,-0.57214,-0.29172,-0.10543,0.85351,0.3378,0.92262,-1.2529,-1.0229 2.0395,-2.5101,-1.0181,2.0363,1.5377,-0.31344,-1.2466,1.0902,-0.40914,-2.7171,1.9447,-1.8497,0.6966,-1.3479,0.27845 -0.59807,-4.6349,-0.076052,1.5253,-0.11147,0.15657,-0.54496,-0.66967,-0.58933,0.23439,0.24918,-0.71863,0.82144,-1.6558,-1.0764 -0.05763,-4.162,-0.07722,1.9721,0.48664,0.71797,-0.55023,-1.2771,-0.8923,0.43829,0.50244,-0.10152,0.80441,-1.2642,-0.55848 -0.53589,-3.9661,0.29753,0.88108,-0.43116,-0.28293,-0.8176,-0.94385,0.11802,1.3794,0.20611,0.49998,0.53876,-1.4967,-0.91601 -1.5674,-2.8531,-0.99841,1.119,0.22694,-1.9318,-0.43228,-0.86085,-0.11357,0.63301,1.1797,0.96045,-0.47757,0.49334,-1.424 -0.95093,-2.7619,-2.2269,1.5297,0.62649,-2.8883,-0.17984,-0.73039,-1.1298,-0.045326,-0.44652,1.2706,0.50436,0.017988,-0.47634 -0.90633,1.4419,2.0747,0.57309,1.4185,-0.52631,0.15886,3.0873,-1.0279,2.1733,-0.21306,0.7737,0.63103,0.37108,-0.61329 -1.4657,-2.5899,-0.31342,2.089,0.74462,-0.1388,1.257,0.826,-0.64028,-1.9758,1.5508,-0.94029,-1.2407,-1.1569,-0.29585 -1.678,-3.4326,-0.17437,1.9455,1.0471,-1.2061,0.45312,0.2252,-0.25208,-0.59606,0.91263,-0.55211,-0.84703,-1.2508,-0.81083 1.739,0.3773,-0.753,1.3325,0.30331,-0.42602,-2.0574,-1.5916,-0.61029,0.12119,2.9341,-1.0359,-1.3426,0.44439,0.22154 -0.076531,-0.57563,-0.93277,2.2369,0.23808,1.7246,0.65357,2.4922,0.52756,-0.68555,-0.49644,-1.848,-0.95398,1.0639,1.0991 3.2099,-0.33355,-1.8431,0.99126,1.4937,-0.67492,1.5753,-0.87638,0.19236,0.99279,-0.33219,-1.7637,-0.076776,0.024296,1.6555 0.25951,-3.4046,2.1058,1.2615,-1.0184,1.1807,-0.72547,0.46642,-0.13649,2.375,0.48614,-1.0861,0.26924,-0.58831,-0.46805 4.3267,-3.225,-0.9123,-0.775,-0.68055,1.5642,0.4738,0.11664,-0.87112,-3.1141,-0.46895,-1.239,0.4102,-0.82046,-0.45339 -0.44305,-3.502,0.60555,1.6985,-0.86996,0.70822,-0.67932,0.66897,0.23268,1.8769,0.094656,-0.8917,0.66689,-0.69469,-0.36892 0.094641,-3.6446,0.13084,1.4631,-0.12614,1.2943,-0.51336,0.19714,-0.33802,1.935,-0.34239,-1.1894,1.1339,0.089175,-0.090494 0.62997,-0.72169,3.2108,0.88192,-2.0502,1.2062,-0.87825,-0.13843,-0.59642,1.1132,0.83468,-0.10993,-1.5046,0.50737,1.3859 0.86623,-2.3204,2.25,1.4874,-1.5295,1.7412,-0.22208,1.4293,-0.33363,2.7257,0.2068,-0.81212,1.119,0.45764,-0.17139 -0.2967,-3.8256,-0.17999,-0.18046,-1.4775,-0.36572,-1.9066,-1.4565,-0.24369,1.4363,-1.6741,0.29514,-0.27687,-1.4368,0.17725 2.9391,-1.7629,0.043831,0.73747,-0.32508,0.89617,-2.4052,0.66896,0.65629,1.0984,1.2634,0.16591,1.3809,0.12717,-1.2648 -0.43589,-2.5571,0.64096,2.5421,0.18753,2.164,0.2354,2.3763,-0.38442,1.3885,1.4123,-1.5639,0.23442,0.80961,-0.76277 4.1029,-4.0136,-1.6489,-2.0658,-1.9031,-0.12849,1.5739,3.4828,0.39257,1.1739,-0.79408,2.448,-0.50721,0.086923,-0.36661 0.077864,-2.7455,1.9088,2.5847,0.26074,3.2469,-0.16731,1.1686,-0.90673,0.44976,1.2122,-0.69448,0.68557,-0.60655,0.36509 3.9162,-1.1511,-0.63635,-1.8489,-1.7825,-0.94043,-0.47197,-0.37671,0.3528,-1.0041,1.1739,-0.4419,1.1295,0.64475,0.18464 0.58766,-1.731,1.1336,3.0056,0.87835,2.9787,-0.83225,2.1547,-1.4409,-0.17453,1.6681,-0.56862,-0.10992,0.67704,0.58059 0.12437,-2.1089,3.6675,0.39941,-1.7832,1.6278,-0.56006,0.55186,-0.31348,2.069,0.46538,-0.83248,-0.60764,0.074298,0.5167 -0.6594,1.5,-1.7778,2.3672,-0.7681,1.1195,0.13408,0.4128,0.24349,-0.97284,0.012581,0.30293,-0.64285,0.61934,-0.25304 -1.9584,-2.8395,-0.45725,1.0389,-0.79594,-1.2039,-0.69918,-1.7348,-0.086107,1.4028,0.69406,0.4012,-0.62031,-1.2764,-1.4209 1.0839,-0.49275,0.22608,2.7395,0.14111,1.1398,-1.8741,-0.8205,-0.18053,-1.3525,1.5821,-0.075883,0.33,-0.55281,-0.81903 4.049,-2.1912,-1.7923,-1.1072,-1.5376,0.34444,0.63703,0.8997,1.4812,0.98465,0.60095,-0.45638,-1.1273,0.35122,1.6865 -2.2773,-1.1153,-3.0444,1.3875,-0.066014,-1.482,1.57,-0.5658,-0.19474,-0.27519,-0.32374,-0.82123,-0.56608,0.28502,-1.0481 -0.87031,2.4347,0.007268,0.33887,-2.4289,-0.14463,0.17714,-0.49552,-1.1134,-1.2411,0.25956,0.30924,1.1495,0.30899,1.2985 -0.30836,-3.1957,1.3004,-1.4942,-2.5181,0.51689,-0.50737,-0.91894,0.35552,1.8913,-1.3601,-1.5064,-0.6064,-0.81959,-0.43749 -0.55554,-3.9406,1.2801,1.7806,-0.22386,0.69817,-0.20002,0.36898,-0.23715,1.5582,0.47827,-0.90656,0.55149,-1.237,-0.70085 -1.8851,-0.17841,-3.5736,0.19433,-0.65305,-0.53975,-1.2238,0.88507,-0.92209,-1.4521,0.25291,1.7511,-0.17903,-1.036,0.51908 -2.4295,0.35751,-2.6533,0.17778,-0.62712,-0.44603,1.0638,0.75649,0.27493,0.15112,0.40951,-0.61614,0.13219,0.68991,-0.73053 3.9886,0.74175,-1.3563,-4.3589,0.54588,-2.0411,1.8051,1.8239,-0.33277,-1.1811,0.89933,0.19665,0.79072,0.52559,0.27185 1.2794,2.3969,-0.857,-0.77969,-0.51821,-2.0373,-0.50894,0.062114,-0.084424,-0.6738,-0.61541,-1.0239,2.8346,0.48109,-0.42014 2.4915,2.1253,-0.67317,0.43706,-0.036184,-1.8661,0.075672,-0.79388,0.3627,0.71916,-1.5637,-2.2621,-0.38477,0.74158,0.68083 0.0018756,1.1893,-1.7552,1.5379,-0.97698,1.529,-1.9411,1.0214,0.72773,-0.39814,1.2095,-0.56905,-0.37503,1.1903,-1.2045 2.4184,2.6526,-1.5615,-1.8162,-0.60367,-1.8025,-0.24067,0.047216,0.71768,-0.38647,-0.47181,-1.9122,0.23119,0.30908,0.14647 0.9,-1.4023,2.4077,0.22166,-2.8548,1.801,-0.72019,1.3384,-1.3153,1.4404,0.31816,-1.1088,0.15972,0.62663,0.49662 2.7043,0.71057,2.2586,-1.4443,-1.7941,0.067351,-2.1371,1.0898,-0.83603,-0.091854,-1.2886,-0.061645,0.088467,-1.1286,-0.7446 0.9226,-2.9584,1.41,1.2232,-0.72768,2.6289,0.088867,-0.047109,-0.77998,2.5958,0.039095,-1.4436,0.8725,0.29883,-0.21276 2.4048,0.55266,-0.38231,1.0024,-0.73282,0.59493,-2.1931,-0.53321,-0.69651,1.1774,1.9169,-1.6459,-0.46731,1.8492,0.68599 2.7165,0.80738,-2.1759,1.2446,1.0189,-0.47142,0.84213,-0.54682,1.0948,0.24703,-1.3858,-1.8817,-0.15348,-0.333,-0.42882 -0.31592,-0.43877,1.2908,2.0361,1.6237,0.016992,1.3631,1.7699,-1.3463,2.7747,-0.31614,0.38932,0.72117,-0.54325,-0.42789 0.44725,-2.8593,1.5427,-0.39699,-2.5924,0.96195,-0.45099,0.89929,-0.46029,1.9602,-0.2375,-1.7324,0.84713,0.10966,-0.55763 -2.1757,-2.4219,-1.138,-0.40471,0.12877,1.3411,-1.8667,1.2565,0.4903,0.80089,-0.12236,-1.092,0.0097507,0.61678,-0.26126 -1.2188,-1.5001,0.38773,1.2168,0.19664,1.959,0.12776,-1.0342,-0.52581,-0.3532,0.92818,0.1327,1.0353,-1.1606,0.13636 -0.32385,2.0012,-1.8093,-0.20342,-2.3926,1.102,1.0093,1.0144,-0.97893,-0.11016,-1.2509,-0.19584,-0.20742,0.36604,1.1347 3.3161,-1.4162,1.1414,2.1727,-0.8151,1.0402,0.039756,-1.3473,-1.9638,-1.3189,-0.10724,0.52826,0.44936,-0.33054,-0.24594 0.55734,-1.752,2.3083,-1.4222,-3.1757,1.9974,-0.22165,1.228,-1.3952,1.8208,-0.21944,-1.5114,-0.10249,0.74681,0.076659 3.6242,-2.3679,-2.0126,-2.1291,-2.0145,-0.089712,-0.26469,2.5055,1.0486,-0.71157,1.1365,0.82192,0.69099,0.34931,-1.0775 -0.30506,-2.4443,1.469,-0.51622,-2.5321,1.5459,-0.85961,0.46853,-0.14844,2.1299,-0.28662,-0.51702,0.20709,-0.17905,-0.46958 -0.72952,-3.8348,-0.17945,1.1515,0.76009,1.6908,-1.8021,0.4352,0.086056,1.5318,-0.041715,-1.0894,0.26207,-0.0035206,-0.31125 0.37269,-2.5754,1.5079,0.98712,-1.726,1.6676,-0.81869,0.52498,0.24069,2.4746,0.2565,-0.98617,0.7978,-0.14978,-0.58755 0.45814,-1.1249,0.60207,2.8626,-0.51101,0.69633,-1.192,1.0259,0.76257,-0.70908,1.387,1.0052,-1.0841,0.14302,-0.10664 -1.6802,1.9476,-0.12351,2.0143,1.1745,-1.5951,1.466,2.0138,-0.56143,-1.7026,-0.84476,-0.49735,-1.4471,-0.14753,0.85175 0.031272,-1.7399,2.1612,-0.62884,-2.5405,1.7475,-0.81857,0.93568,0.08422,2.0517,0.089621,-1.0993,0.75978,0.28698,-0.25772 -0.26871,-0.52619,2.2223,2.1863,-1.8855,-0.41273,0.20269,-1.5886,-0.30185,-0.64636,0.41962,-0.041133,-0.49224,-0.77586,1.1632 -3.2705,0.1361,-1.1027,-0.94121,-0.62361,1.0936,0.41258,-0.99229,-1.3303,-0.67364,1.8089,-0.84955,-0.28026,-0.95354,-1.2747 0.50576,2.5489,-0.6029,1.1343,-2.0054,-0.94472,-0.66027,-0.94647,-0.029784,0.01633,-0.59646,0.14516,-0.051409,1.4209,0.045239 4.0624,-2.1665,-2.0303,-0.41235,-0.01396,-2.0437,2.4154,0.68573,1.7147,-0.42656,1.0902,1.1593,0.14459,1.2442,-0.33227 0.27201,-0.97651,0.53529,-1.2011,-2.046,-2.0138,3.1408,0.55073,-0.07945,0.17245,-1.8873,0.23024,-0.13667,0.46282,-1.1122 2.8256,1.2317,1.6029,-0.065247,-1.6038,-1.5777,-0.62919,-0.63488,-0.095869,-1.3943,-1.1811,1.185,1.2217,-0.70394,-1.3101 -0.54245,2.6262,-1.8147,-0.098766,-1.7228,1.1402,-0.20859,0.89556,-0.63154,-0.10039,-1.5779,-0.49193,0.086944,0.099776,0.48973 1.5147,-0.3888,1.3226,0.079467,-1.998,-2.7827,3.0336,0.75264,-0.74322,-0.29679,-2.1153,0.37268,-0.92666,0.21002,-0.82346 0.18454,1.3153,-0.61234,1.6613,-1.4899,0.40464,-0.67705,0.15232,0.34887,-0.5129,0.83787,1.0144,0.77101,-0.88123,0.22476 2.6963,0.41679,-1.5097,0.68803,1.0784,0.61292,0.55523,-0.92421,-1.0605,0.92054,-1.0627,-2.0171,0.76777,0.16671,1.8199 2.0882,2.3365,-1.8613,-2.0178,-0.93654,-1.409,-1.1945,-0.22629,-0.81083,1.2688,2.121,-1.2064,0.44174,-0.18989,0.81109 0.47032,-1.4222,-0.77842,-0.94493,-0.87979,-2.1306,3.6246,0.0035487,-0.82253,1.8193,-2.2796,-0.7623,0.14917,0.89877,-1.5068 1.4935,0.2154,-1.8752,1.2881,2.3069,-1.3996,0.74955,1.1862,-1.1594,-1.7717,0.60927,-2.6032,1.1128,0.091255,0.41578 -1.8965,0.66189,0.68715,0.5556,-1.5304,-1.457,1.136,-0.53237,-0.21699,1.2021,0.79038,0.98053,0.32335,1.0997,0.67543 2.5562,-1.9446,2.2054,2.5609,-1.3233,0.82285,0.57585,-1.1262,-1.3933,-1.46,-1.0768,0.26017,-0.34102,-1.5716,0.2154 5.1381,-2.9214,0.26127,0.91467,-0.20099,0.14588,0.23006,-0.95295,-1.6055,-1.7165,-0.39933,-0.23667,0.046852,-0.48176,-0.41654 3.4105,-1.8065,-2.3428,-0.26879,-1.5848,0.4501,0.68885,0.23884,1.7396,-0.24378,0.34677,-0.24923,-0.61744,-0.38533,-0.010335 0.27739,-1.2982,-1.2367,-0.27164,0.0042966,-1.8728,1.6133,-1.1648,-1.1808,2.4895,-2.2664,0.3609,1.6426,0.64243,-0.90594 3.2157,-1.2746,-2.5516,0.53454,0.57371,-0.25155,3.1199,-0.089122,1.2055,-0.46216,-0.16476,0.26758,0.10377,0.041251,0.96108 2.1953,-1.4625,2.3967,-1.6217,-3.7756,-0.33439,0.97413,1.5465,-0.73977,-1.2597,-0.59481,-0.18657,-1.1257,-0.44893,-0.59422 -2.9293,-1.3806,-3.1029,-1.5259,0.72403,-0.45853,-1.4715,0.18486,-0.83189,-2.6466,-0.79006,1.1544,-1.1774,-0.84407,0.87878 3.1237,-2.3073,2.3659,1.6348,-1.2569,-1.9092,2.5945,-0.016502,-1.6697,-0.987,-1.442,0.82503,-0.57401,-0.85443,-1.178 1.1975,-3.6516,3.514,1.5373,-0.060059,0.80497,0.99973,-0.56877,-1.7692,0.74653,0.23118,1.2225,-0.34556,-1.5137,-1.3862 2.4434,-1.5158,2.505,0.1371,-3.1057,-0.40187,0.058191,0.82952,-0.036703,-0.48119,-1.4482,0.33118,-0.98073,-0.38339,-0.77759 4.2301,-0.20261,-1.3392,-1.2669,1.9932,-2.1072,1.992,0.78628,1.6235,0.34642,0.23725,-0.14991,-0.35015,0.29035,-0.35454 3.454,-0.60885,-1.6841,-1.5265,-1.2542,-1.5351,1.4072,-0.10133,0.16508,1.7679,0.78833,0.80885,-0.7201,-0.62261,2.3688 4.3325,0.26901,-0.96211,-1.1037,0.58628,-2.7276,1.4108,-0.71337,1.206,0.54515,0.25491,-1.3601,0.18447,0.46734,1.1568 1.1779,1.2982,-2.0042,1.4233,-0.30161,1.0801,-0.14665,-0.79748,-0.86471,0.77502,-0.65695,-1.8392,1.3817,0.5056,0.82813 4.6929,-1.6807,-1.1449,-2.4968,0.83221,-2.5274,2.9314,1.0246,1.1454,-0.65218,0.59835,1.3556,1.1192,0.52947,0.6509 4.8931,-1.8749,0.83389,-1.5177,-0.16049,0.94213,-1.5064,0.9855,0.63118,0.32475,0.17124,0.95228,0.18838,-0.4209,-2.524 -0.75588,2.7151,-2.0654,0.24676,-1.1704,1.0448,-0.41213,0.58127,-1.09,-0.55384,-1.097,-0.28975,0.63287,0.36527,-0.16375 4.0604,-0.53555,-0.39283,0.78571,0.91327,-1.6418,0.87705,-2.2643,-0.26956,-1.1107,0.45394,-1.9146,0.8595,0.50354,1.5889 -1.0659,1.8808,-1.3362,2.553,1.4163,-1.1398,0.91191,2.2809,0.28977,-0.16118,-1.7159,-0.20092,-1.0307,0.54321,-0.14523 4.7395,-1.806,-0.98156,-0.28171,0.87111,-1.9546,2.7999,-0.73811,-0.01522,0.0041498,1.0841,-0.26814,-0.059546,0.85864,2.7079 -0.24775,1.1581,1.2424,0.010451,-3.3723,0.73609,-0.78051,-0.30787,-0.26066,-0.80951,0.032253,0.82485,0.14589,-1.3559,1.0849 3.5071,-1.7825,-1.8315,-2.1975,-0.91087,-2.1938,2.4179,1.0524,2.041,-0.617,1.1389,1.8155,0.061976,0.97645,0.79712 3.6601,0.77666,-0.61795,0.71728,0.21535,-2.2757,0.66278,-0.87481,1.1574,-0.9563,-1.5166,-1.5779,-0.24147,0.33674,-0.99148 3.7994,0.051305,-1.3708,-2.6384,-0.8774,-2.2828,1.0897,-0.33647,1.6733,-0.58459,0.87128,-0.69951,0.27605,0.64356,1.2664 3.165,-0.1836,-2.3172,0.20716,-0.25339,-1.2926,1.9905,-0.28201,1.5291,0.57684,-0.37524,-0.47656,0.49706,-0.035234,0.51985 -0.029031,1.5207,0.30918,1.9664,-1.1995,-1.9051,-1.2695,0.011994,0.71327,-0.66517,0.56788,0.65606,0.2043,1.2597,-0.34997 0.83778,1.6293,-0.081775,1.5295,-1.548,0.13073,-0.48361,-0.94962,-0.22283,1.6757,0.041133,0.7497,-0.19936,-0.29811,-0.31652 -3.3015,0.98213,-1.2771,-0.61963,-0.64509,-0.30017,1.4483,0.8368,-0.048152,-0.0024778,0.78198,0.062539,-0.23051,0.48163,-0.83228 -1.5803,-0.076546,-1.4105,-0.55237,-1.8546,2.0326,0.49663,-0.32782,-1.0209,-0.089454,0.49158,-1.9682,0.029582,-0.10071,-0.1982 5.4211,-2.7801,-1.2504,-0.35085,2.0133,-0.95128,3.6268,-0.28954,-0.14552,-2.3009,-0.071707,-0.33433,0.40696,0.90945,0.51708 4.7819,-1.8323,0.19786,0.38264,0.61137,-1.5658,1.2601,-1.7397,-0.86267,-1.9961,0.51466,-1.5404,0.49237,0.50429,1.4326 3.3963,-1.4736,-1.6101,-1.5847,-0.11283,-2.3901,2.001,1.4851,1.7318,-0.39681,1.1084,1.8571,0.61648,1.2992,-0.37314 3.8576,-1.3748,-0.50877,1.1281,-0.60998,1.3648,-1.8372,0.00092965,-0.20619,1.2885,-0.28838,-0.74938,0.93005,0.35672,-0.013869 5.0893,-0.55422,-1.0314,-0.29815,1.301,-2.7816,2.2753,-0.43885,0.48578,0.0073702,-0.19174,-0.67089,0.35865,0.63294,0.29871 1.2203,2.9269,-0.54358,-0.72005,-2.032,-0.94478,-0.66348,-0.69349,-0.14812,-1.9441,-1.1054,-0.50918,0.098095,0.8377,0.061297 5.027,-2.4264,-0.89153,-0.21134,0.19991,-1.6517,2.2647,-0.79915,0.66904,-0.70799,0.68895,-0.61059,0.38623,0.76969,1.5669 1.5475,-1.3064,1.6528,1.0581,-2.9741,0.14291,0.043151,-0.15413,1.1829,-0.69957,-0.94245,0.0066809,0.05421,-1.2613,-0.32918 3.5808,1.2616,-0.37838,-1.7285,0.12286,-2.5397,0.3265,0.31593,0.31198,-1.6775,-0.62422,-0.92686,1.3264,0.65716,-0.95177 3.3908,-1.8738,2.9811,0.72617,-2.2393,0.89228,-0.53322,2.0554,-1.4056,1.3451,-0.94925,-0.45484,0.14219,0.27049,0.016501 -2.9926,-2.7906,-0.10559,-0.52381,-0.28993,-0.30453,-1.7327,-0.047679,0.30667,0.73547,1.2549,-0.1179,-1.7702,-0.30008,-1.4359 1.6698,-1.8954,-3.1276,1.5595,-1.2426,0.98667,1.4343,1.0029,1.3878,-0.30778,-0.043759,1.6611,0.45579,0.66725,-0.5885 4.2035,0.74292,-0.39421,-0.37767,1.5037,-2.4632,0.8988,-0.66502,-0.01202,0.85464,-0.30341,-1.907,-0.50143,0.98178,1.2406 -0.68715,-1.79,2.563,1.8485,0.23066,0.53445,-0.89748,2.3099,0.32903,0.2033,1.5935,-0.014237,-1.3994,-0.3066,-0.19763 -0.18389,2.0406,2.0103,-0.43225,-2.3085,1.7129,-1.5429,-0.21009,-1.8059,-1.1538,0.76819,0.77055,-0.73368,-0.5693,0.66116 0.8232,3.2361,-0.7012,-1.7486,-1.0454,-2.0857,0.64229,0.43986,-1.4429,-0.059469,-0.66799,-1.3877,0.17255,0.31792,1.2147 -3.1197,-0.81572,0.48339,-1.3708,-1.7142,0.65784,-0.60279,-0.92407,-0.69111,0.34727,1.9697,-0.10208,0.13815,-1.0492,-0.66678 -2.2863,1.9424,-0.61129,0.058353,-2.2716,0.2728,1.0817,-0.51407,-2.0169,-0.48474,1.069,0.84545,0.17753,-0.72891,0.63873 2.0477,0.51435,-0.13213,1.4265,-1.4469,0.49084,-2.2405,-1.1145,1.1383,-0.27803,0.7415,0.27663,0.71061,0.052057,-0.14102 -2.0745,-2.121,0.18292,1.4646,-0.26194,0.35238,0.053636,0.67681,1.4267,-0.15034,1.4524,-1.1407,-1.9054,-0.81852,-1.263 5.5708,-3.3788,-1.6253,-0.45595,-0.55319,0.33132,-0.22384,2.1924,0.64195,-0.42406,0.23343,-0.27084,-1.3363,0.31253,-1.3993 -3.0919,-2.8685,0.18338,-1.782,0.20886,0.61127,-2.4973,0.79108,-0.31722,0.51428,0.050271,-0.55091,-0.067132,-0.34378,-0.32689 -1.3304,-1.8422,2.3323,0.33362,0.037979,0.35987,-0.84799,3.2232,0.035871,0.72141,1.2404,-0.95068,-0.52637,-0.2856,-1.1184 -0.25118,-2.3432,1.3545,1.4108,0.49243,1.2303,-0.31531,3.1589,-0.28181,1.8789,1.4456,-0.76085,0.96961,1.1187,-1.2182 0.65822,-0.68096,2.7602,0.76439,-0.45313,0.979,-0.4341,2.2035,-0.42422,2.5243,1.4541,0.088939,1.1858,1.3841,-1.2285 -1.446,-0.65451,2.626,-0.94702,-1.7124,1.4632,-1.22,1.6768,-0.92105,1.0022,1.6275,-0.70564,0.60796,-0.19716,-0.31268 -2.2532,-2.0846,-0.75069,-1.9698,-0.24278,0.048453,-3.4726,-1.2676,-2.2684,0.67379,-0.28258,2.1053,-0.76157,-1.1048,0.85325 1.5795,-0.32241,2.3788,-0.38767,-3.1361,-0.83704,-0.41155,0.80298,-1.0048,-1.1272,-0.41861,0.10978,0.24425,-1.4932,0.15886 0.33044,-1.6169,1.2234,3.1025,1.075,1.9569,0.050891,2.5472,-1.4382,1.1362,1.8655,-0.83929,-0.70115,1.6428,-0.34888 1.4442,2.1352,1.0673,-1.3453,-1.2836,-2.6162,1.5198,-0.23216,-1.461,-0.68811,-1.4941,-1.6883,-0.42696,1.3355,-0.0046861 -1.5434,-0.47747,0.074066,0.66629,-2.2723,0.67261,-0.0011374,-1.2709,0.9389,1.2743,1.2444,0.067472,-0.73382,-0.64329,-0.045985 -1.0058,1.2754,-2.4358,1.6487,-0.22263,1.5861,0.20169,1.6901,-0.49311,-0.12547,-0.73837,-0.86712,-1.021,0.24469,0.083533 3.7392,1.0119,-0.23464,-0.03514,1.0263,-1.2716,1.5659,-1.1032,-1.9393,1.308,-1.104,-0.66777,-0.47116,0.051197,-0.74984 2.0936,-1.7131,-1.6058,1.9037,0.93283,1.7134,-0.25844,-0.3828,-0.5745,1.3271,2.8123,0.79983,0.85504,0.13903,1.502 -1.6796,1.4316,0.42338,0.2438,-1.0113,-1.287,1.6196,-0.47808,-0.16277,1.7526,-0.90477,-0.42193,-0.1927,0.50138,1.346 -1.0338,-0.012123,-3.1071,-1.0342,0.70413,-0.87749,-0.536,2.4054,-0.83073,0.50887,-1.6903,0.54152,0.57437,0.25069,1.2896 -0.5689,-0.037354,-2.6839,-0.66556,0.52938,-1.9929,0.020928,2.6393,-1.4564,0.12591,-0.90162,0.77566,1.198,-0.022596,1.0815 -0.57217,-0.59158,1.0327,1.7532,-0.56311,1.5859,-0.38641,1.2423,1.1706,1.8038,1.3716,-0.28534,0.20807,0.99784,-0.00011778 -2.1278,-1.259,-2.0173,-1.5328,0.15834,-1.9856,0.37816,0.63252,-1.2968,-1.1033,-0.98047,0.26999,0.72912,-0.070385,0.34075 2.649,-2.1371,-1.7922,-1.0364,-2.586,0.77789,0.19568,1.7362,0.18856,1.5052,-0.50708,0.85116,1.5781,0.080706,0.72374 -0.85156,-1.9328,-2.5036,0.20852,0.3307,-3.3655,0.6346,0.17707,-1.8562,-0.1367,-0.98509,1.0115,-0.31611,0.10699,-0.61067 -1.0779,-1.6835,-2.7278,-0.50019,-0.44017,-3.0348,0.41948,0.30997,-1.8021,-0.054421,-0.93535,1.1935,0.1327,0.021647,-1.1622 1.6114,0.75608,-2.522,0.84392,0.10457,0.99232,-1.7235,0.72715,0.72659,-0.037006,2.2114,-1.4316,-1.2523,0.80473,-0.84402 -0.68835,-1.0612,-2.8698,0.044545,0.4462,-2.7741,0.29281,1.1217,-1.2265,-0.44518,-1.2418,1.4228,0.20431,-0.41201,0.2873 -0.42646,-2.0632,-2.1227,-0.43279,-0.069004,-3.5424,-0.262,1.2912,-2.3522,-0.87701,-0.8796,1.8254,0.19492,-0.4247,0.23082 -0.37301,0.029512,-2.7267,-0.034047,0.70608,-1.7524,0.43104,2.6876,-1.0126,0.33852,-0.82565,0.42454,1.2255,0.48718,0.85998 -1.4954,-2.2477,-0.7656,-0.97694,0.29684,-2.8906,0.51182,0.98326,-0.53518,-0.94205,-0.84094,0.0035647,0.49988,0.082283,-0.27408 0.71754,1.1287,0.64275,1.3865,-1.7732,-0.72523,1.143,-0.55708,0.35228,1.3546,-1.8833,0.37373,0.15322,0.19326,0.80292 -1.6336,2.2216,-0.65961,0.0084454,-1.1611,0.89295,-0.55404,1.7104,-0.86816,0.35621,-0.6856,-0.1149,0.37564,0.2679,0.69954 -1.7536,-1.3408,-2.038,-0.70332,0.46636,-3.1919,1.5468,0.9287,-1.1963,-0.23521,-1.1062,-0.078371,0.43589,0.64309,-0.96978 -1.4781,0.028558,0.2791,0.66169,-2.8084,0.00052988,0.25285,-1.1777,-0.30014,0.97007,1.2496,0.25624,-1.4104,-0.14653,0.39922 -1.3494,-2.1585,-1.1931,2.1226,-0.61453,-2.3524,0.90094,-1.4802,-0.43507,-0.28386,0.6185,-0.75675,-0.36402,-0.032429,-0.97984 3.6163,-1.2838,-1.805,0.23256,-0.53066,-0.93573,0.80468,-1.3196,1.4693,-0.87049,0.20476,-1.0465,-1.0826,-0.5525,0.46067 -1.4851,-0.75001,-1.5888,0.58761,0.74314,-3.0722,0.22229,-1.1963,-1.3284,1.793,-0.85863,0.42716,1.0966,1.594,0.7085 -1.1376,-3.7291,0.0056872,1.0866,-0.025766,-2.1684,-1.2426,-1.2936,-0.94439,0.5045,0.15848,-0.12049,-0.11738,-1.084,-0.56433 4.2342,-1.7789,-0.031005,1.2314,-0.66625,0.092352,-0.56808,-1.2873,-0.26185,-1.8711,-0.56006,-0.60987,0.54429,-0.34196,-0.42442 2.1755,-1.6134,-1.0018,1.877,2.2478,-2.0398,0.34176,-0.23591,0.10022,-1.3255,3.3437,0.20831,1.2145,0.4175,0.15098 1.4323,1.7209,-0.34278,0.95037,-1.9942,-0.74669,-1.3258,-1.0528,0.077625,-0.77218,-0.012955,-0.55807,-1.1114,0.58398,0.6674 -2.6165,-0.59185,-2.0545,-0.33531,0.3506,-3.0825,-0.39763,-0.30691,-0.83233,0.9267,-0.24833,0.3294,0.78841,1.2899,0.16066 -1.2536,0.3372,-1.8118,1.4258,-0.88753,0.13929,0.8882,-1.075,-1.0476,0.84327,0.14716,0.42317,-0.60862,0.32014,0.60674 0.24458,1.6745,-0.12164,3.013,2.3035,0.27221,-0.021118,-0.28069,-0.80826,-0.70889,-0.18935,0.33261,1.1301,1.4383,0.1749 2.0165,1.3461,2.7663,1.8824,-0.57502,-1.8981,0.56716,-1.2655,-0.59598,0.04642,-0.65156,0.0085465,0.26159,0.51272,0.32761 -1.3557,-2.8924,0.50659,0.04648,-1.1264,-1.8537,0.86708,-0.17978,-0.6493,-0.12955,1.0228,-0.066755,-0.74318,-0.48326,-1.3861 -1.909,-2.5941,1.0286,-0.61235,-1.8931,0.38065,-0.60116,1.5778,-0.086885,0.42232,1.3515,-0.99862,-0.50371,-0.14013,-0.92029 -1.2841,-4.2509,-1.1833,0.30734,0.18765,-1.2433,-1.4975,1.4612,-0.61134,-0.42627,0.20652,-0.098346,-1.4946,-1.1234,-1.0602 2.048,-1.981,-2.108,0.85818,-0.19494,1.6067,0.79128,-0.68572,-1.4793,-0.80513,2.1601,0.40534,2.2016,0.91883,2.2752 -2.7303,-2.022,-0.23118,-0.51057,-1.4851,-1.0594,-0.1388,0.70474,-0.78538,-1.4643,1.3656,-0.48605,0.59296,-1.7636,-1.3679 0.94962,1.8692,-1.7891,-0.11974,-0.70975,-1.6333,-0.15496,-0.87579,-0.70179,0.93266,1.1422,-1.1423,-0.6198,0.61282,0.99568 -2.4929,-2.3094,-0.82613,-1.1702,-0.079258,-2.1797,0.51543,0.97485,-0.45034,-0.81115,0.60374,0.086009,-0.26722,-0.83107,-2.0699 -2.2897,-2.3991,-1.1739,-0.23256,0.033231,-2.8307,0.11393,0.17115,-0.047441,-0.16405,0.63902,0.27164,0.031446,0.63406,-1.0948 -2.4228,-2.4464,0.11814,-1.0952,-0.98913,-0.81834,-0.10483,1.3109,-0.44664,-1.7178,1.1719,-0.58563,0.080293,-1.1398,-1.7445 2.3787,-1.0705,1.9787,0.873,-2.027,-0.15798,-0.82325,1.0632,-0.53228,-0.10958,-1.7638,-0.4024,-0.63212,-1.2568,0.76811 -1.3369,-2.3627,0.83532,-0.36401,-0.98936,-2.7052,1.2028,-0.36015,-0.75772,-0.10016,0.64069,-0.017015,1.6204,0.79513,-1.0437 2.4125,-3.6996,-0.42081,1.8113,-0.48233,0.30787,0.10996,-1.046,-1.181,-1.7585,0.1288,-0.43005,0.75377,-1.6294,1.031 -0.40364,-3.3529,-1.1266,1.4295,0.71413,-2.5593,0.15782,-1.4198,-2.063,0.088931,0.15957,1.2761,1.1273,-0.27424,-0.56554 -1.0293,-1.6367,2.4039,-0.031528,-1.9597,-0.19108,-0.5168,1.6208,-0.0047383,-0.86533,2.1402,0.071275,0.89941,-0.43089,-0.51657 0.34691,1.1872,-2.5302,1.3505,2.4263,-1.2937,0.42849,1.1468,-0.35959,-1.0704,0.030047,-2.4557,-0.018,0.58496,0.67805 1.5402,1.0096,0.69842,-1.145,-3.0003,-0.51324,-0.33641,0.86076,0.38974,-2.9569,-0.9175,0.16111,-0.51447,-0.23758,0.44668 -1.5888,-1.6682,-2.5726,0.55671,-0.33604,-2.6037,-0.50948,0.23444,-1.2965,-0.41221,0.0054603,0.81212,0.37467,0.75428,-0.18687 -1.7234,-3.4199,-1.4098,0.73203,-0.74273,-1.0694,-1.2602,0.59844,-0.28185,-0.84935,0.51058,-1.1452,-1.2593,-0.88893,-1.0237 -1.4163,-0.2176,-3.0941,2.1509,-0.72765,0.17981,1.1576,-0.2442,-0.15672,-0.22514,0.137,-0.78844,0.55994,0.17978,-0.071814 -2.3384,-1.768,0.42567,1.0436,-0.54174,-1.6693,0.64319,1.139,-0.24926,-1.3003,1.6587,-0.30686,-1.1793,-0.81568,-0.86983 1.1991,-0.16953,-0.49524,1.2984,-1.0335,0.10985,-1.6101,0.65493,0.6421,-1.5424,1.5232,0.51023,0.76067,0.55991,-0.88314 3.5773,-2.4269,-0.97217,0.34134,-0.88593,0.42934,0.22285,-0.96117,0.23055,1.2933,1.4408,0.3429,0.076323,0.045784,2.0863 -2.0316,-1.1363,-2.4193,0.094013,-1.141,-1.6551,0.82522,0.013662,-0.69032,-0.46601,0.22948,-0.40307,0.26767,0.71299,-1.3957 -1.7282,-1.8507,1.3823,1.1361,-1.0127,-0.5218,-0.166,1.7626,-0.02835,-1.2417,2.041,-0.42255,-1.5161,-0.96238,-0.87296 -2.0087,-2.4011,-1.6996,1.191,0.40787,-1.9247,-0.60706,-0.42849,0.065606,-0.74779,0.72225,-0.46665,-1.604,-0.42307,-1.2929 2.5526,0.012938,0.82356,1.7351,-2.1262,0.98283,-1.1634,-0.16447,0.54489,0.2327,-0.60871,-0.18808,-0.41598,0.23364,0.88454 -1.2345,-1.1198,-0.30382,0.48198,-2.1528,-0.027209,-0.048334,2.2058,0.14302,-1.6207,1.1853,-0.44845,-0.27311,-0.82195,-0.69507 2.9983,0.9006,-1.6125,-1.916,0.0048938,-0.37374,0.60959,-0.30706,-1.3696,-0.085815,1.514,-1.0647,2.6188,-0.56072,1.4316 -2.6282,-1.1956,-0.40087,0.4211,-1.5101,-1.2055,0.53368,1.5595,-0.015303,-1.3463,1.2339,-0.95993,-0.7016,-1.3187,-1.2468 -0.32027,2.9296,-2.1384,0.16611,-0.82487,-0.37646,-1.0134,0.83694,0.20284,0.54676,-0.63425,-0.6307,0.78363,0.90198,-0.56296 -1.7772,-3.0005,-0.30197,-0.49974,-0.34563,0.91166,-0.72505,2.8188,-0.32115,-0.328,0.33712,-2.2733,-0.66316,-0.30772,-1.162 -1.4891,-2.2186,0.93371,1.4281,-1.2368,-0.40994,-0.38417,2.2795,0.15778,-1.5593,1.5414,-1.0383,-1.7225,-0.8124,-0.66367 -2.9905,1.1897,-2.1726,0.16182,-0.48942,1.7509,0.61751,2.329,-0.2661,-0.51841,0.424,-0.084844,-0.66532,-0.76197,0.16274 1.1806,2.2234,-0.80648,2.358,0.1859,-0.31976,-0.15871,-0.87884,-0.16834,0.24602,-1.8723,-1.0062,1.9807,0.14132,-0.23263 -2.3202,-2.0839,-2.1406,0.36065,-0.93617,-1.4162,-1.0154,0.43203,-0.90463,-0.81696,0.29354,-0.31632,-0.80467,-0.9086,-1.2408 -2.9832,-1.5179,-0.71141,-1.6729,0.31135,1.8558,-2.7446,-0.61373,-1.8619,0.37235,-0.15269,0.37873,-0.078253,0.045227,0.7748 -1.3879,-0.62478,-1.3568,1.1219,0.0037649,-0.38006,0.48616,-2.0588,-1.525,1.4106,1.1464,0.60852,0.40478,0.17795,-0.58391 0.3838,-4.6463,2.2431,1.5778,-0.95048,-0.36541,-0.19352,0.81704,-1.2332,-0.124,0.48809,-0.84018,0.13907,-0.46876,-0.51043 4.1345,-3.8249,-0.96017,-0.9005,0.037547,-2.4561,2.4934,1.3066,-0.60193,-1.1898,0.98281,1.9473,-0.32452,0.098243,-0.012269 0.017675,-3.8089,3.976,-0.25197,-0.33168,0.27775,-1.2089,1.3022,-2.1151,1.5043,0.43193,-0.51552,-0.94495,-0.32622,-0.77083 -2.0929,-3.6956,1.0613,0.30936,-0.70827,-2.5617,-0.46812,-1.008,-0.51572,-0.16976,0.2037,-0.25665,-0.1787,-0.55278,-0.96567 3.7803,-3.0046,3.169,0.56415,-0.60174,0.65932,-1.3317,2.1859,-2.3137,0.70024,0.4806,-0.20771,-0.03309,0.45485,-0.27522 2.2781,1.186,1.5014,0.28604,-0.11917,-3.2887,0.1118,-0.43949,-1.4914,0.36514,0.3007,-0.10217,1.4078,0.93873,-0.51577 -1.5939,-4.874,1.3556,0.99152,0.49944,-1.2496,-0.71695,-0.17184,-1.7075,-0.21494,0.15851,-0.77678,-0.18082,-1.7735,-0.94794 -1.6278,-4.4561,0.58449,1.1847,-0.50052,-1.7847,-0.22203,-0.37411,-0.66277,-0.41497,0.44178,-0.70918,-0.33896,-1.3904,-1.1188 0.21551,-2.9512,1.6197,0.19353,-2.5773,0.071041,-1.2456,1.4727,-0.44731,0.41008,-0.23915,-0.86338,0.38036,-0.61858,-0.12515 -1.7063,-2.028,3.3588,0.12581,-0.40653,0.79505,-0.89843,0.83122,0.75768,1.4387,1.1622,-0.71427,-0.9439,-0.45934,0.11179 -1.1497,-4.0444,0.2295,1.077,-1.5822,0.20738,-0.75499,1.0923,0.026144,0.68492,0.10348,-2.1221,-0.88411,-0.59926,-0.76304 -1.1778,-4.2363,3.0158,-1.1742,0.36163,0.60154,-1.1485,2.1403,-0.77171,0.80126,0.5219,-1.2563,-0.055963,-0.69708,-1.1447 -2.4188,-2.4158,-1.5944,-0.037918,-0.0038526,-2.2182,-2.3695,-0.73712,-0.56097,0.065029,-0.39558,1.6054,-0.70449,-1.2546,0.6437 5.2887,-2.8077,-0.67846,-0.68022,0.64879,-1.4262,2.7923,-0.81892,0.076615,-0.2993,0.42378,1.0368,0.82989,0.53873,0.94674 -1.8003,-4.3845,1.4565,-1.0478,-1.0067,-0.57972,-1.6905,0.77507,-0.6849,0.58877,0.093819,-0.58725,0.014338,-1.0302,-1.1891 2.0885,-3.8799,3.0866,1.53,-0.59116,1.6975,-0.19827,0.085128,-2.6057,1.2271,-0.39933,-0.58662,-0.22198,-0.53745,-0.39929 -0.57812,1.5364,0.054155,0.39643,-0.55602,-1.3001,0.32235,2.5436,0.16492,-0.53199,-1.1333,0.44339,1.5039,0.4692,0.36815 -1.702,1.3624,-0.90894,2.0061,-0.21925,0.43902,0.85796,0.9723,-0.4493,1.9798,-0.14562,0.20941,-0.66855,0.46313,0.3722 1.9791,-1.3806,-1.1057,-1.311,-1.8733,0.55081,-1.091,1.1303,-0.097142,1.5595,1.7161,1.1176,1.7938,-0.17487,0.3524 0.084889,-3.3218,2.6515,-0.23448,-2.648,0.36726,-0.31276,1.0621,-0.53678,0.17084,0.20258,-1.1835,0.0082347,0.032104,-0.33699 -0.55604,-4.7845,1.4447,2.0078,-0.45177,-0.34552,-0.53538,1.733,-1.3036,-0.81821,0.61037,-1.6692,-0.75666,-0.52521,-0.87357 2.4423,-0.39947,-1.8324,0.036712,-0.75875,-0.467,-0.21034,-0.99228,-0.13886,1.908,2.3799,-0.18919,-0.55019,0.31234,2.6319 -0.28297,-0.60668,1.3835,2.4386,0.88662,-2.9385,2.3877,0.4335,-2.0446,0.73756,0.13488,0.29794,1.6491,1.2249,0.38738 -0.007124,1.7723,-0.54561,0.67514,-1.1079,1.8654,-2.312,1.0121,-0.16804,-1.0984,1.9031,0.61407,0.15647,0.90148,-0.7557 -2.1278,0.58543,1.5129,1.4953,1.3622,-2.0017,0.89738,1.645,-0.1184,-1.1859,0.33804,0.030862,-1.4683,-0.28402,-1.0767 -1.8613,-1.0893,-0.13588,1.6061,1.4167,-3.16,2.3596,1.575,-1.7062,0.49732,0.59406,-0.21377,0.61722,1.2274,-0.2816 1.0553,-1.8333,2.9367,2.4466,-0.30882,-2.7165,1.1399,0.1852,-2.1992,-0.57854,0.48081,1.2137,0.94343,-0.20181,-0.22258 4.8293,-2.4344,-1.7331,-0.34035,-1.2698,1.4349,-0.16865,1.901,-0.23179,1.3033,-0.47516,-0.20332,-0.28822,0.9305,-1.5258 3.8145,-2.1495,-0.98183,1.5995,0.97899,2.3136,-0.98384,-0.084529,-1.5791,1.697,1.4169,-0.58957,1.8821,0.42658,0.34964 -1.512,1.4679,-1.0806,1.9517,0.90092,-0.30264,1.1653,2.6489,0.17008,0.62424,-0.914,-1.0734,-1.545,0.1776,0.43713 1.3125,2.0448,0.15765,0.24446,-1.713,-1.1502,-1.6912,-1.0399,0.49965,-0.40437,-0.092739,0.18973,1.213,0.78669,-0.19125 -1.4201,-0.73815,0.93577,2.3737,0.78216,-3.0279,1.6462,0.80249,-1.1483,-0.25864,1.0424,0.42073,0.11157,0.99117,-0.14737 -1.203,-1.0049,0.51728,0.82608,-0.46468,-3.1904,2.103,0.17985,-1.048,1.403,0.080246,-0.11376,1.9736,0.96451,-0.37728 0.89318,-0.86665,-3.0487,-1.1335,-2.3615,1.1243,0.79775,1.1999,1.0712,-0.91353,0.78169,1.7364,1.054,0.82818,1.1097 -0.38978,-1.2911,0.27967,2.7069,-1.5292,1.2146,0.52002,-0.93265,-0.18314,0.071791,0.2856,0.78394,0.091356,-1.9071,-0.25229 3.9253,-2.3535,-1.8135,0.51589,-0.0497,2.596,1.6428,-0.028068,-1.7879,2.1322,0.45508,1.4251,1.0834,0.3186,0.89362 -0.59034,-1.6125,-0.59341,-0.29413,-0.75267,-3.1934,0.76323,-0.19191,-1.3529,1.514,-0.070828,0.65649,1.7534,0.19901,-0.51412 -0.90748,-1.8412,1.2176,2.3638,0.42144,-2.556,1.5551,-0.10151,-1.2356,0.15491,1.9635,0.69313,0.63873,-0.14682,-0.64166 -0.19101,1.2317,0.1937,2.4656,-0.78286,-0.52281,1.5543,-1.486,-1.8139,-0.36598,-0.70468,1.3054,0.89486,-0.24445,0.85408 -2.045,-1.3313,-0.17586,0.43653,-0.64398,-2.8735,1.6648,0.4201,-1.1728,0.67035,1.106,0.47923,1.3535,0.8094,-0.65328 3.1109,-2.6433,-2.3844,0.61723,-0.42619,0.49072,2.8395,0.082022,0.15874,-2.2244,0.47768,0.97361,0.80485,0.037626,0.45818 -0.63322,-1.8495,1.2344,0.21921,-1.281,-2.7307,1.6026,-1.5213,-0.67249,1.324,-0.0014567,0.080877,1.1341,0.40928,-0.58838 -1.0866,-1.0042,-1.9546,1.0128,-0.1154,0.66641,0.98912,1.0592,-0.47081,-1.3832,-0.2719,-1.8639,0.58663,0.43941,0.67525 -1.0152,-4.0527,1.1995,1.2052,-0.44736,-0.60482,-0.43861,-0.086404,0.28775,1.2382,0.16221,-0.20877,0.079945,-1.6853,-1.0626 1.5299,1.643,2.8148,-0.69692,-2.1337,-2.0767,-0.02043,-0.71277,-1.0327,-1.1189,0.019542,-0.21637,-0.13231,0.74774,0.83902 4.1859,-2.2201,0.75978,0.8944,-0.51097,-0.49264,0.38093,-1.0385,-1.326,-1.8032,-1.8067,-0.35783,-0.3813,-0.17156,-0.3309 0.41647,-4.0616,0.93925,-0.82154,-1.5883,-0.39056,0.29229,-1.6104,-0.29053,1.5173,-1.4384,-0.24372,-0.7316,-0.96285,-1.4404 -3.1789,-0.37226,-2.6697,-0.80294,-0.3836,-1.2695,-0.28976,-0.36788,-0.18346,-0.25013,0.58223,0.50519,0.052326,0.79433,-1.007 3.2905,-0.59464,-0.83252,0.18811,-0.80553,0.87225,-1.4795,-0.44695,-0.15626,0.51039,1.294,-2.4792,0.077587,0.98315,1.9694 -1.7808,-0.26994,-1.7291,1.4015,-1.7932,-0.71144,0.88361,-1.2646,0.60978,1.2951,0.49289,0.16656,0.23916,-0.27263,-0.18498 1.8849,-1.5306,2.438,2.8202,-0.28665,-1.3531,1.0049,-0.91749,-1.5844,-0.51888,0.29716,0.90234,1.1657,-0.60083,-0.80632 0.50591,1.2658,-1.6788,2.428,-0.30916,0.15456,-1.1428,-0.91968,0.38457,-0.93203,1.1052,-0.096017,-0.29079,0.88686,-0.82974 2.6177,-0.53129,-2.2805,-0.94472,-1.5873,-1.1275,1.4237,0.34897,1.9599,0.38645,0.63831,0.74272,0.15957,-0.011781,1.2467 -2.0429,-1.849,-3.0762,0.1792,0.78106,0.0063338,-1.9286,0.13483,0.04601,-0.60169,-0.77432,1.2101,-2.7347,-0.7799,0.19615 3.2947,0.40822,-0.5385,0.8011,-1.2762,-1.5134,-0.17752,-0.35295,1.8112,-2.006,-0.82806,-0.55217,-0.96202,0.0838,-1.1521 1.9994,1.0182,-0.813,1.8411,3.1515,1.1326,-0.39737,0.064172,-1.4475,1.1368,-0.17936,-0.39213,1.9186,-1.0224,-1.5562 2.0377,1.9908,-2.3364,-1.2408,1.0894,-1.667,0.87098,0.99008,1.2472,1.6289,-0.6615,-1.1382,-0.67091,-0.61094,0.5432 4.5341,-1.8111,0.15718,-2.2911,-1.85,-0.58965,-0.64866,1.0658,-0.8496,-0.95368,0.25529,-0.24594,0.98979,-0.85991,-0.65352 2.9853,-2.9269,-2.6376,0.59871,-0.71572,-0.031239,2.2806,1.3335,1.3683,-0.37172,1.1827,2.1794,0.33586,1.0971,0.039407 0.37954,1.7414,-1.4911,2.0762,-0.49074,0.89124,-2.3745,0.3899,-0.12166,0.56738,1.3567,0.22021,-0.63905,1.1773,-1.3361 -1.4843,-1.7962,-0.16752,-1.1758,-1.0251,-2.3036,0.60041,-1.4069,-1.4642,1.7803,-0.080456,0.92943,1.8785,0.23408,-1.0209 1.5339,2.3069,-1.6343,-0.52848,-1.5924,-0.1567,-0.0058654,1.2715,-0.018434,0.036946,-2.2128,-0.62662,0.23794,0.37339,-0.78115 -0.38317,1.2261,-1.199,3.1444,0.57566,-0.4603,0.96102,0.97119,-1.1268,0.1568,-0.28853,0.16891,-0.035531,1.5679,0.059595 5.6022,-2.5682,-0.6512,0.41295,0.051388,-0.27667,0.74409,-0.56106,-0.075118,-2.2214,-0.65601,-0.31395,-0.45962,0.30167,-0.90984 -1.4129,0.25994,-1.4549,2.5222,-0.55776,-0.45889,2.0137,-0.15578,-0.49522,-1.2015,0.28393,-1.099,-0.1382,0.6752,0.060563 2.4583,-1.038,-0.2931,2.2545,-0.46383,-0.56292,2.6352,0.4702,-0.14128,-1.8821,-1.7297,1.2088,-0.3159,0.46235,-1.1152 -2.0862,1.719,0.55923,-0.061512,-1.3752,-0.37322,1.0243,0.019644,-1.9982,0.88879,1.6908,0.40758,0.69895,0.60719,0.3007 -0.778,-0.14615,-0.72947,2.1446,-0.41272,-1.1329,2.0073,0.041147,-0.2624,1.601,0.31116,-0.5825,1.1974,1.1516,0.15957 0.007992,1.9389,-0.19721,1.6443,-0.84563,-0.037936,-2.3881,0.039133,0.5909,1.0061,1.1999,0.63876,-0.27305,0.63144,-1.197 3.3276,-1.1615,-0.14295,1.2024,0.19955,-1.8666,-0.28316,-1.7058,0.49943,-0.16373,1.6834,-0.57116,1.2507,0.74117,0.67378 5.7958,-2.3123,1.3376,-1.3695,-0.53155,-1.302,0.36011,2.3339,-0.64981,-0.90383,-0.51048,0.33659,-0.62563,0.072085,-0.88132 -1.2043,-1.2349,-3.0553,2.0808,-0.30069,-0.67162,0.27004,-0.62439,0.015322,-0.4505,0.26187,-0.045099,-0.055548,0.20396,-0.6987 -1.3943,-0.8822,-1.3048,1.861,-0.81728,-1.1495,1.2111,-0.22811,0.26923,0.54084,1.3077,-0.18427,0.38311,0.84432,-0.82172 -0.33792,-2.4549,-2.2203,1.8441,-0.79989,0.13626,0.031939,-1.708,-1.2819,-1.1577,0.057677,0.3223,1.3687,-1.295,0.18314 -1.0345,-2.1211,0.25854,2.2818,-0.6195,-0.47524,1.0409,-1.5003,-0.052303,-0.073317,1.4376,-0.0014576,0.79094,-0.67683,-0.56817 0.15004,-1.0664,0.22009,1.7787,-1.6735,0.23041,1.0604,-1.7739,-1.1483,-1.6994,0.75811,-0.62693,1.8705,-0.70977,1.0479 -2.2615,1.1868,-1.3946,0.91314,-0.87493,-0.32851,0.98826,1.0391,0.64564,-0.4635,-0.063558,-0.095456,0.21567,0.27715,0.93775 1.2545,1.0306,-0.12888,-0.6332,-0.29513,-0.48394,-1.9463,-0.80255,1.314,-0.81317,1.3051,0.090995,1.9838,0.3454,-0.1666 -1.9608,-0.55454,-2.8849,1.5266,-0.49714,-1.3385,0.71944,-0.38848,0.064654,0.24037,0.10876,-0.27479,0.11962,0.85625,-0.84216 -0.025295,1.4006,-2.1694,0.97618,0.3615,0.46085,-1.248,1.4263,1.4227,0.85566,-0.42279,-0.80978,1.0645,-0.55748,-0.49666 3.0234,1.5897,1.2083,-0.61102,-1.3289,-1.7903,0.76275,0.61398,0.22655,-1.0885,-2.7406,0.049436,0.25868,0.55005,-1.0906 -1.1301,2.6411,-2.4593,0.63628,-1.8026,1.8473,-0.00023384,0.91162,-0.91557,-0.085152,-0.65368,0.44169,0.62198,-0.02004,0.31081 -1.7674,-0.31058,-1.3777,2.1624,-0.63854,-0.31142,1.4469,-1.3834,0.44617,0.75821,0.83987,-0.33258,0.17047,0.17553,-0.061763 -1.1678,-1.2936,-3.4192,1.3989,0.50741,-0.33393,0.16673,0.12017,-0.65182,-0.59902,-0.59246,0.34063,-0.3906,0.42822,-0.10897 -1.7699,-2.0091,-1.6585,2.0229,-0.33826,-1.2551,0.45905,-1.0465,0.33404,-0.29263,1.2752,0.090196,-0.21732,-0.44335,-1.0245 1.9458,-0.8321,3.01,-0.58039,0.051859,-2.8506,1.5893,0.6248,-3.2281,-0.13687,-0.83269,0.18558,0.31575,0.057551,-0.95882 -4.1067,-0.24187,-0.51542,-1.4465,1.2427,1.0325,0.20815,-0.36255,-1.5458,0.31616,1.311,-0.18805,-1.0359,-0.68948,-1.247 0.35206,-0.56492,4.1078,-0.0016458,0.25841,0.049211,-1.4384,1.6216,-0.884,-0.85595,1.2859,0.82944,-0.20529,-0.42864,-1.1525 3.9022,-3.0239,-2.1345,0.65142,-0.62417,1.945,0.6939,0.24662,-0.90519,-0.60437,-0.32865,-1.1124,0.62582,-0.46896,0.91573 -0.48977,1.6723,2.0776,1.0732,0.2816,-1.2377,-0.55453,1.422,-0.024461,-1.2573,1.4183,1.235,-0.25525,0.60777,-0.57779 4.6921,-2.2159,1.6053,1.4788,0.69586,0.8591,-2.1554,-0.41871,-1.6769,-0.32807,0.97397,0.43087,0.64957,-0.0029642,-0.35348 -2.3228,-1.3829,1.1426,-2.3167,-1.1481,-0.75289,-0.2527,-2.6482,-1.075,0.94422,0.79229,0.31767,-0.17739,0.46307,0.072268 0.68619,-0.34998,3.4631,1.1096,-1.3541,-1.2827,-0.671,0.34638,-1.1717,-0.99746,1.5358,1.096,-0.04361,-0.067118,0.046559 0.78463,3.8061,0.26813,-0.6502,-0.98843,-0.95047,-1.0049,0.091948,-1.5223,0.40278,-1.8148,-0.87608,0.81452,0.43204,-0.10689 -1.5288,0.50446,2.431,0.22841,-1.0862,-1.2,1.5246,-0.89476,-0.079832,0.74961,0.54787,0.090554,0.26388,0.94874,1.171 -0.37164,1.6651,-1.3835,1.4957,-0.040495,-0.48605,-0.57207,2.9476,0.25502,0.36234,-1.4245,-0.88275,-0.76313,0.47773,-0.29678 3.5878,-3.1701,-2.8843,0.6065,-0.81881,1.4103,1.2855,1.6756,0.81769,0.26881,0.66675,0.49319,-0.48353,-0.043256,0.34428 -3.2736,0.65903,1.2,-0.78279,-0.56828,0.5048,0.82918,-0.46317,-0.23361,-0.44947,2.3705,0.46867,-0.89261,-0.04302,-0.98479 -2.735,-0.55961,-2.5051,-0.59462,0.55286,0.44849,-0.75263,-1.2954,-0.78447,-0.75152,0.35111,1.4984,-0.34393,-0.12206,-0.59212 0.66794,-0.7388,1.7996,0.55311,-1.2486,1.6294,-1.1235,2.8115,0.66365,1.6568,0.88069,0.18473,1.4255,0.85415,-0.24216 -1.052,2.2879,-0.36035,2.185,1.6882,0.15491,0.10957,1.7373,-1.2031,0.85741,-0.24261,0.26143,-0.99305,0.055272,-0.34092 -2.4833,-2.0869,0.65172,-0.70994,-1.4835,1.4256,-1.406,0.56416,-0.35738,-0.59005,1.8082,-1.32,-0.12928,-0.50389,-1.0098 -2.7108,-1.6313,-2.4562,-0.53825,-0.61831,1.1384,-2.418,-1.0158,-1.3536,-0.81012,0.28261,1.617,-0.5455,-1.0109,-0.0078685 -1.3682,-1.7284,-2.222,-0.35349,-0.74521,1.768,-2.1948,0.99879,-0.85951,0.37147,-0.64524,0.27357,0.97806,0.41017,1.4805 4.0408,-2.6534,-3.2592,-0.1515,-0.5955,1.62,1.6116,1.6573,0.65157,0.4547,0.019053,0.54521,-0.30466,0.086372,-0.025694 2.4358,1.7331,-1.6108,0.68429,0.80053,-1.83,-0.192,-1.0719,0.443,1.3749,-0.61017,-2.0786,0.073323,0.31849,0.8196 4.1847,0.12022,0.36544,-2.3254,-0.48989,-3.2343,0.30625,-0.34221,-0.88127,-0.1429,1.1374,-0.0052467,1.1975,0.67887,0.024891 1.4837,1.3261,-2.7172,1.4699,-0.20463,0.8744,0.11407,-0.41427,0.69216,0.53266,-1.5328,-1.2283,1.138,-0.70367,-0.46498 -1.5568,-2.1799,-1.47,-0.7036,-0.86178,1.6682,-3.0853,-0.45044,-1.3165,0.35156,-0.49742,1.1209,0.20396,-0.81275,1.4511 2.9654,-0.75104,-0.4572,0.35751,0.40525,-1.3524,-1.871,-0.064216,-0.21578,0.51137,3.2776,-0.3533,-0.51501,0.37591,0.28286 2.6572,0.59626,-2.4539,-1.0637,-1.353,-1.2582,0.40683,0.51195,1.3787,0.9587,0.72499,-0.51037,0.73267,-0.52016,0.64756 0.26017,-0.81685,-0.29443,-0.22334,-2.9868,-1.254,2.2874,1.3601,0.55477,-1.2359,-0.26111,1.4931,-0.47716,-0.085869,-1.2528 3.0813,0.98044,-1.5313,0.0112,-0.74981,-0.32093,-0.20948,-1.5614,0.030471,1.8219,0.98186,-1.5458,0.32464,-0.45675,1.3078 -1.2677,-1.8561,-2.0515,2.0785,-0.98318,-0.77175,1.012,-1.4701,-0.62156,-0.43538,0.61743,-0.47283,0.247,-0.48061,-0.71961 3.0591,0.64158,1.0338,-0.3104,-1.2251,-1.7102,-0.25335,0.24109,-0.43937,0.12739,-1.1903,0.75573,1.2163,0.92389,-1.204 -1.0077,-1.9285,-3.0691,2.0816,0.069551,-1.3735,0.20801,-0.94498,-0.89084,-0.37191,-0.14688,0.62947,0.60219,-0.0052433,-0.42246 -0.66699,-1.5174,-3.2746,2.0295,-0.6597,-0.46683,-1.1223,0.3079,-0.28654,-0.51744,-0.31292,0.88409,-1.4893,-1.206,0.64829 2.5898,2.2888,-1.737,-1.4759,0.3054,-2.0427,0.43768,0.90103,1.1553,0.90675,-1.3789,-1.3766,-0.19736,0.048053,-0.80369 3.6697,-1.724,-0.26181,0.75459,-1.6473,0.5755,-1.8061,1.1302,0.24026,0.012328,-0.72335,-1.3181,0.41389,0.1362,0.1199 -0.48092,2.164,-0.32486,2.0181,2.3403,-0.61419,0.29836,0.25411,-2.3905,-0.037631,0.061877,0.16516,-0.31112,0.50081,0.47991 -0.55455,-1.9881,-3.0536,1.8018,-0.65745,-0.69612,-0.76736,-0.034379,-0.73986,-0.18318,0.0057055,1.1366,-0.29135,-0.69339,-0.19568 0.38605,0.97894,0.84835,0.19759,-3.6019,0.74906,-1.1929,-0.15502,-0.13174,-0.31734,-0.15653,0.092191,-1.0526,0.087599,1.2335 -1.3915,0.25001,-3.9644,0.14794,-1.1816,-0.94514,-0.11799,0.42485,-0.17752,0.059659,-0.96557,0.61821,0.2786,0.74572,-0.19014 -0.94311,-0.99861,-3.7049,1.8215,-1.0716,-0.55523,-0.17803,-0.71805,0.0097501,-0.29357,-0.34722,0.59102,-0.94649,-0.33017,-0.49298 -1.0707,-2.3383,-2.3306,1.938,-0.52996,0.18166,-0.74658,-1.19,-0.3487,-0.40558,0.73722,0.41698,0.33288,-1.0223,-0.36128 -0.87823,-1.9852,-2.7588,1.8249,-0.25626,-0.44762,-1.0254,-0.34317,0.18824,-0.099994,0.14685,1.2354,0.24304,-0.91843,-0.30773 -1.1316,-2.4823,-1.9399,1.4345,-0.83305,0.54528,-0.97215,1.1195,0.88601,0.83239,0.42088,-1.1592,-0.4115,0.0032876,-0.55727 -2.5648,-0.80018,-3.4103,-0.70912,0.087537,0.5129,-0.69796,-0.8906,-0.015252,-1.0052,-0.64336,0.93753,-0.56554,-0.37597,-0.84711 -1.2838,-2.0691,-2.0424,1.4281,-0.4642,1.7176,-1.1516,-0.66655,-0.61749,-0.32557,1.2155,-0.19317,-0.037414,-0.62789,-0.27358 -0.38061,1.4927,-0.46806,2.384,-0.54199,-2.0963,0.058965,1.1873,0.25138,-1.0656,-0.20538,0.41763,-0.28929,1.668,-0.62866 -1.9886,1.3254,-0.91668,0.15515,-1.5339,-0.22113,1.0119,0.81757,-0.40582,1.8217,-0.17618,-0.39645,0.75222,0.85415,0.95585 0.24357,2.2825,0.47642,0.80915,-2.2798,-0.85082,0.31195,0.1606,-0.25439,0.55821,-0.52472,-0.11916,0.66545,1.0281,1.3214 -0.91397,0.093979,-1.6293,2.0817,0.62228,-1.1417,2.8789,1.838,-1.22,0.54269,-0.86589,-1.2497,-0.10719,0.30256,0.0040812 0.34916,0.28777,-0.22584,1.8331,-1.5997,-0.25666,2.3103,-1.0655,0.051865,0.96534,-1.1349,-0.85523,-0.14165,0.29976,1.2974 -2.8209,0.4203,-2.3076,-0.742,-0.49063,-0.14602,0.30169,-0.94666,-1.1815,0.72899,0.53308,-0.05176,1.2882,0.52443,-0.32425 0.082921,2.4339,1.031,0.66783,-1.387,-0.3686,-0.58117,0.1658,-0.33124,1.3558,-0.97829,1.2204,0.86414,0.11747,0.011108 -2.9108,0.51353,-1.6015,-0.60029,-0.97371,-0.27453,0.98598,-0.57383,-0.94682,0.39997,1.0395,-0.24609,1.2715,0.32349,-0.53239 -3.1733,0.77213,-1.7961,-0.84477,-0.89734,-0.25294,0.70007,-0.6555,-0.99931,0.74567,0.47645,-0.51158,1.7641,0.40029,-0.27121 -1.6068,1.4587,1.3575,0.62712,-2.1374,-1.3558,0.51751,0.72827,-0.051582,-0.89292,1.2808,0.68408,0.20043,1.0585,0.52375 -0.89944,2.5861,0.0004318,0.028372,-2.3238,-0.37767,1.1422,0.02433,-0.83662,0.25372,-1.306,0.14732,1.1059,0.35315,1.3912 2.6595,2.3758,2.2161,-2.0574,-0.75471,-2.1782,-1.2649,-0.3743,-1.5075,-1.4399,-0.15535,-0.1888,0.32418,0.20647,0.3988 -2.3101,0.18217,-1.8007,-0.28856,-0.80897,-1.1324,0.5083,-0.47995,-0.44165,1.7697,0.10668,-0.36582,1.4791,1.2499,0.11241 2.1718,-0.38125,0.56192,1.5136,0.065723,0.31077,-2.6963,0.97835,0.5168,0.37754,2.287,-0.094084,0.61994,0.63842,-0.77311 -1.435,0.77688,-0.010133,0.15077,-2.6669,-0.53208,1.1473,-0.79209,0.060176,0.41767,0.40558,0.32761,1.4423,0.10861,0.72919 -0.45896,0.26063,0.34166,1.3936,-1.8903,0.48063,-1.8867,0.90382,0.12482,-1.5843,1.1941,1.3029,0.20746,-0.48522,-0.63918 -2.8625,0.46984,-1.8602,-0.30478,-1.0643,-0.78279,0.7946,-0.41323,-0.088494,0.932,0.74546,-0.012966,1.3444,0.83115,-0.35381 2.3452,-2.9296,-0.49712,0.36072,4.0843,-1.5706,1.0352,1.3873,0.73565,-0.93227,2.7379,1.3955,0.95053,1.2097,0.82845 -2.2805,1.5794,-1.1701,0.39315,-1.5535,-0.072486,1.0505,1.2794,-0.39676,0.34837,0.39486,0.55928,0.57081,1.0131,0.54119 -0.53434,-4.2681,-0.90091,1.4967,0.20341,-0.4775,-2.2088,1.04,-0.57972,0.72743,-0.23569,-0.39545,-0.24535,-0.75762,0.43003 0.68035,1.391,0.5163,2.3245,-2.0792,-1.0715,0.65186,-1.0035,-0.035806,-0.083843,-1.5245,0.77801,0.57605,-0.28509,0.32819 -1.0776,-3.0392,-2.2721,1.6907,-0.75579,-1.2857,-1.275,-1.1169,-0.51959,0.6069,-0.69604,0.90115,-0.048945,-1.4908,-0.37176 -0.71958,-2.6991,-2.1297,-0.31156,-1.603,0.20626,-2.1704,1.4013,-0.44752,0.47175,-0.54137,0.10483,-0.17387,0.19003,0.64259 0.37734,-4.9317,0.97555,1.3816,0.17268,2.1047,-0.77328,-0.7382,-1.5754,0.8271,-0.59502,-0.99201,1.0441,-1.3803,-0.39653 -0.62092,-2.8156,-0.89445,-0.31824,-1.931,-1.4132,-0.82576,-1.8162,0.20969,0.73325,-1.4212,0.6704,-0.33318,-1.4512,-0.46433 0.25975,3.0719,-0.84116,0.16332,-0.34866,-0.14679,-1.6758,-0.42621,-0.67653,-0.32873,0.56355,-0.33298,1.9697,0.27031,-0.63494 -1.2425,-4.5337,-0.67934,1.5988,0.79619,0.44302,-2.1878,-0.16417,-0.57836,0.050788,-0.045049,-1.3877,-0.55943,-1.0089,0.57423 -1.896,-2.9961,-1.9142,1.1752,-1.2418,-0.78453,-0.92883,-0.5664,0.35865,-0.13405,-0.00014253,-1.0526,-1.6677,-0.75792,-0.75703 -0.36084,-2.3364,0.97599,0.43314,0.69701,3.052,-0.43872,-1.498,-0.66647,0.76897,0.33525,-1.0134,0.85565,-1.0924,0.10193 0.075882,1.1395,-0.02401,2.5505,-1.6135,-0.68944,0.75249,-1.3687,-0.38204,-0.14904,-0.81166,0.61066,-0.33037,0.15858,1.3353 -1.1993,-3.7638,-0.56584,0.54129,-0.6953,0.48112,-2.4811,0.27848,0.17586,1.871,-0.24722,0.2631,0.25362,-0.44017,-0.30006 -0.79559,-3.3199,-1.9746,0.82602,-0.24075,-1.761,-1.3965,1.068,-0.81701,-0.21364,-0.24477,-0.036986,-1.3077,-1.1824,-0.24738 -0.19239,-3.1923,0.18401,2.0052,-0.29132,1.3952,0.12973,2.6368,0.0062969,-0.65026,0.7664,-2.1125,-1.0011,-0.74242,-0.31365 4.1147,-0.87153,-0.86341,-2.3148,-0.89722,-3.0067,1.0241,-0.2337,1.4431,-0.99475,1.1782,-0.19045,0.38599,0.55556,0.57861 -0.4074,-2.8965,-1.7391,1.3977,-0.56147,0.83858,-1.2662,1.4334,0.36404,1.1427,-0.22165,-1.2886,0.3718,0.43556,0.4475 0.16931,-0.3773,0.39652,3.7112,-0.036968,0.23565,-0.67296,-0.59579,-0.58494,-1.8823,1.3347,0.76968,-0.31015,-0.20317,0.27757 4.9519,-2.2467,-1.8197,-2.3988,-1.5204,0.28219,0.328,3.0336,0.14972,1.5593,-0.33924,0.12508,0.80029,0.93557,-0.94247 0.37742,1.0099,-1.1921,3.0891,1.7504,-0.55753,0.25586,0.223,-1.4253,-0.32742,0.5864,-0.21464,0.69473,1.1207,-0.71312 3.1635,-1.1508,-0.18231,-2.1967,-2.3172,1.5546,-1.0228,3.0692,-0.31774,-1.4841,-0.55684,-0.31376,0.23492,0.75678,-0.45026 3.2484,-0.050939,0.50712,1.4822,-1.7645,-0.4658,-1.1347,-1.8491,0.36524,-1.2165,-1.0184,-0.78321,-0.96974,-0.25069,0.53135 1.9315,-1.6449,2.2343,-2.474,-3.2101,0.93068,0.61923,2.7345,-0.98477,-0.8821,-0.94602,-0.97933,-1.3505,0.63514,-0.41671 3.0425,-0.26541,1.6837,-1.8388,-2.8076,-1.0138,-0.91412,0.97766,-0.28772,-3.032,-0.71231,-0.25245,-0.49121,0.098329,-0.54265 2.415,1.1718,-0.4545,0.29884,-1.8413,-1.6176,-0.34343,-0.40974,1.4683,-0.78745,-1.3081,-0.56036,0.24617,0.81771,-0.34793 2.6314,-0.67109,0.29827,-1.6073,-2.3668,0.6909,-1.202,2.8168,-0.68096,-3.1471,0.5251,0.40077,0.096631,0.78544,-0.22191 -1.054,-2.0594,2.3613,-2.8555,-3.1558,0.2812,-0.2516,-0.65624,-1.0953,0.31792,-0.31701,-1.4843,-0.97158,-0.79768,0.011913 1.607,-0.22823,-3.2315,-1.7676,-2.1174,0.46312,1.0018,1.5453,0.69093,-0.33038,1.0867,1.2055,0.88114,-0.36693,0.82434 5.1807,-1.1568,0.62961,-0.36958,-1.6062,0.5117,-0.0024578,2.471,-0.93135,1.7226,-1.1536,-0.34661,-0.21519,1.7439,-0.40352 1.0887,1.945,0.31225,-0.34696,0.27333,-2.6951,-0.88937,0.027185,-0.34333,-0.23519,-1.0516,-1.1339,0.072216,1.1225,0.68517 0.56812,3.7277,-1.6273,-1.6367,0.64011,0.030514,-0.46967,1.251,-1.4755,-0.37611,0.18347,-1.1076,-0.35427,-0.39017,-0.6363 5.8826,-2.4135,-0.22605,-0.41852,-0.87501,0.59871,-0.51261,2.459,0.32205,-0.049815,-1.0943,-0.75001,-1.1907,0.94058,-0.93131 1.9286,-1.5705,1.8929,1.4466,-1.2613,3.378,-0.51023,-0.48148,-1.5098,-0.037144,-0.13919,-0.85012,0.35607,-0.85766,0.96202 2.3506,-1.908,1.8635,-0.59251,-2.8919,0.94643,0.96872,2.0577,0.34117,-0.3637,-1.5867,-0.45833,-2.3491,0.16347,-1.1231 2.0003,0.86218,2.6254,-1.3369,-2.2048,0.26135,-1.9071,0.72315,-2.007,-1.3435,0.94567,0.011797,0.41532,-0.089152,0.70212 0.055157,-2.5324,1.2724,-2.2854,-3.4074,1.0297,0.8071,0.016044,0.15349,0.60235,-1.2585,-1.6268,-1.7723,-0.73972,-0.75435 0.46849,-0.77121,3.4988,-1.6128,-2.0353,2.3325,-0.7843,1.8666,-1.268,0.94803,0.58844,-0.33064,0.94732,0.21591,-0.21443 1.8133,-2.4027,2.9806,-1.7309,-2.9763,-0.43948,0.95345,2.1484,-0.37267,-0.7966,-1.2308,-0.70752,-2.3688,0.091727,-0.74373 0.72601,-2.4361,2.1578,-1.4475,-3.3183,-1.0907,1.274,0.81783,0.11347,-1.2758,-0.49945,-0.8438,-2.0452,0.11385,-0.31397 0.68539,1.1693,-0.23896,1.7433,-2.1557,0.35012,-0.55871,-1.7264,-0.2976,0.014034,-0.075949,0.079608,-1.7131,-0.33018,0.86184 -0.3257,-1.5455,2.1748,-0.33051,-2.4015,-0.92515,0.28164,-1.9347,-0.23345,1.1383,0.90002,-0.59331,-0.91705,-0.16135,-0.0038559 0.51184,-3.0317,0.778,0.16267,-1.5765,2.8524,-0.4916,-1.2119,-1.4485,0.69798,-0.65163,-2.5061,0.66367,-0.36007,1.0397 -1.677,1.5656,0.18597,0.6715,0.25707,-0.40532,0.40187,3.1564,-0.088554,0.3604,-0.97751,-0.10859,0.86038,0.20499,0.17566 -1.3084,-3.2154,-0.44334,1.8052,0.76328,2.2136,-0.42408,0.52234,-0.37094,0.27299,1.1873,-1.6822,-0.27089,-0.064262,0.069179 0.19351,-2.0813,-0.7043,1.6072,-0.93078,2.6751,-1.5426,0.76854,-1.2332,0.30907,0.57488,-1.0292,1.7915,0.18636,0.91585 -0.83356,1.6903,-0.019075,0.51968,0.35184,-0.73169,-0.56126,4.1389,-0.50757,-0.0051872,-1.4894,-0.31715,-0.099151,0.12186,-0.42705 -1.8405,-2.2661,-2.4883,0.69392,-0.68902,0.064252,-1.3942,0.27418,0.76957,-0.31275,-0.34005,-0.074134,-1.8444,-0.848,-0.54749 -0.84572,-3.5317,-1.6863,1.304,1.76,2.3071,-1.8076,0.59045,-0.57649,-0.015412,-0.84167,-0.33576,0.46484,0.13739,1.5692 -1.1628,-2.2448,-2.8883,0.86902,-0.87191,-0.10338,-2.2227,1.198,0.75979,0.27864,-0.74975,0.26837,-2.0526,-0.43651,0.86283 4.4551,-1.7575,0.44629,0.20966,0.032022,-0.34611,-0.17755,-1.3736,0.38872,-0.87046,0.58118,0.017108,0.97786,-0.22178,-1.0266 -2.5538,-2.2782,-1.7572,0.86289,-0.20051,0.39626,-1.4836,-0.63076,0.78565,0.35233,0.71662,-0.32474,-1.6941,-0.41628,-0.93957 -1.5973,-3.9205,-0.73466,1.0587,0.7287,-1.6756,-2.2639,0.0482,-0.60802,-0.13946,0.090689,-0.13558,-1.5406,-1.2845,0.46253 2.6862,-0.34574,0.71532,0.32152,0.54164,-1.8189,-1.7832,-0.52661,-0.67483,-0.068672,3.3073,-0.074879,-0.34177,0.57215,-0.078216 -1.1183,-2.531,0.37601,2.0901,0.42806,1.696,-0.55393,0.011764,-0.96237,0.15581,1.6578,-0.57771,-1.1875,-0.043651,0.35672 3.5016,-0.077751,-1.5528,-0.94396,-1.0339,-0.39148,-0.19529,-0.52147,0.91407,-1.5056,-0.042434,-0.81529,0.60894,-1.6687,-0.8527 -1.61,-2.1946,-1.2642,-0.24887,-0.19783,-0.16248,-3.5147,1.1248,0.02229,0.37729,0.21545,1.3623,-0.83273,-0.8776,1.7823 -0.90948,2.541,-0.40623,2.0505,2.8903,0.85609,-0.38397,1.3709,-1.689,0.52872,-0.0096699,0.067555,-1.3398,0.43683,-0.62508 -0.9304,-4.6628,0.26998,0.70034,-0.279,0.11325,-1.696,-1.1191,-0.63561,1.2148,-1.1648,-0.28551,0.18854,-1.6059,-0.64161 -1.5213,-2.8183,-2.3187,0.67867,-0.63463,-0.91868,-2.9038,1.0203,-0.31788,-0.11498,-0.57906,0.26728,-2.148,-0.86997,1.6124 0.60466,-3.9734,-0.42843,0.44245,-0.67697,0.078991,-2.5352,-1.1217,-0.33691,1.3329,-2.1263,0.85186,-0.43812,-1.2904,1.3561 -2.5137,-3.328,1.0188,-1.3349,-0.22585,0.47431,-2.0186,0.41631,-0.049892,1.275,0.57795,-0.085933,-0.30365,-0.31933,-0.46502 0.88364,0.08982,-0.08168,2.3256,-0.30191,-0.58111,0.57044,0.86157,-0.37202,1.9727,-0.398,1.3639,0.76673,-0.24994,-1.5275 3.6251,0.98006,-0.93098,1.3773,1.2165,-1.4442,1.1729,-0.48108,0.018545,0.076487,-1.5249,-1.4379,0.70496,0.23005,-0.52117 -1.8637,-1.1379,-1.2682,1.8707,0.067431,-0.28594,0.72805,0.37666,0.72158,-0.20682,0.23616,-0.45637,-1.6836,-0.79828,-0.56718 2.0199,0.00028387,-0.9951,-0.48262,-2.8417,1.5389,-1.1812,0.63461,0.25136,-1.5981,-0.6299,-0.046013,0.36658,0.33329,-0.011023 -0.94343,-4.0987,0.90622,0.672,-0.070082,-1.1247,-0.90907,-1.5602,0.24222,0.15702,0.1546,-0.22425,0.52059,-0.24881,-0.4058 -0.12521,-0.69344,-2.0428,2.0343,-1.9508,0.61539,0.99978,-1.8917,0.21944,-0.21886,-0.05078,-0.22197,-0.36121,-1.006,0.92334 0.1002,-1.7199,1.1295,2.4541,-0.74899,2.5494,-0.36331,0.35493,0.18632,1.3744,0.7446,-0.72902,0.26072,-0.13356,0.58204 -1.577,-1.3403,-2.2718,0.35745,-0.74456,-1.9428,-1.7739,-0.24398,-0.80899,-1.1289,0.77542,1.9862,-0.41234,-0.065125,1.127 -1.8766,1.7969,0.59816,0.041808,-2.6447,-0.45456,1.3243,-0.71501,-1.4123,0.75652,0.63421,0.027405,-0.76036,0.0060131,0.46822 4.1424,-0.44164,2.4385,-1.8591,-0.83377,-2.314,-1.2769,0.53157,-1.3967,-1.1708,0.73157,0.0027517,-0.39334,0.52081,0.10762 -0.23765,1.3755,-1.4955,1.4369,2.0971,1.4104,-0.64337,2.1264,-1.6013,0.21099,0.39466,-0.19275,-1.622,0.36394,-1.0343 4.8757,-1.5619,-1.4703,-0.84546,-1.4961,1.1956,-0.50849,1.378,0.20566,1.6804,-0.93425,-0.84063,0.044598,0.69969,-0.72403 2.4947,-3.1891,3.8784,0.71765,0.98864,-0.59586,-1.1613,2.4592,-2.4719,-1.3127,0.96069,-0.016596,0.071844,-0.31497,-0.81052 1.0506,-0.23495,3.1799,-1.4962,-0.82597,-3.0409,1.0564,-0.30985,-2.3868,-0.94485,-0.26903,-0.73297,-0.45032,0.61871,0.12422 3.9292,0.92173,0.089689,-1.8306,-0.46387,-2.7145,0.034471,-0.31273,-0.79003,0.33713,0.68987,-0.97681,0.67925,0.17118,0.10799 1.7921,0.09185,2.6884,-2.4966,-2.1282,-1.2578,0.99791,2.1142,-1.7026,-1.9779,-0.65624,-1.1082,-1.6054,-0.14646,-0.25312 4.3268,-3.0153,1.6117,0.2964,0.14385,-0.87415,-2.2752,1.1852,-1.5677,0.15143,0.88703,-0.47525,0.98293,0.055443,-0.48087 2.8484,0.54293,2.1611,0.59549,0.24946,-3.4323,-0.13246,-0.80888,-0.18121,-0.77035,-0.46893,-0.5992,0.67627,1.2739,0.33051 -0.68198,2.5963,-2.306,-0.24382,0.94733,0.0036079,-1.6789,2.25,0.57821,0.36176,0.74323,-1.0152,0.093072,-0.16914,-1.1445 4.0682,-2.701,1.5778,0.85353,-0.36053,-1.8281,1.4105,0.14617,-0.5863,-2.1205,-1.2345,0.071288,-0.26368,0.040245,-1.2953 2.8995,-0.52475,0.94686,1.925,-0.8969,-0.62716,-0.54918,-2.4734,-1.0744,-1.3739,-1.0249,-1.271,-1.1424,-0.58745,0.82413 -2.2834,-1.0866,1.7067,0.9367,-1.0727,-2.6952,1.3726,-1.3006,-0.25448,-0.10306,0.71638,-0.57205,0.086988,0.91954,0.028821 4.5938,-2.2108,0.9377,0.77995,0.19336,1.7034,-1.4031,-0.70562,-2.0224,0.035014,0.16157,-0.8867,0.6144,0.17372,0.64139 0.065406,-1.5125,4.6829,-1.2919,-0.81799,-1.6095,0.41805,-0.18642,-1.6585,-0.89894,0.60971,0.47328,0.085257,-0.16918,-1.8117 -0.80776,-1.7178,1.8816,-0.68222,0.78955,-2.7781,1.3945,-1.7517,-2.6817,0.98222,0.18066,0.033306,0.42131,-0.17469,-1.0677 -2.263,-0.14445,-3.238,0.92905,-0.038995,0.45933,0.75163,-0.45198,0.19725,0.041199,0.34674,0.028276,-0.83532,0.0091207,-1.076 0.83378,-2.1878,4.2643,1.3924,-0.51418,-0.93887,-1.0509,0.80345,-1.041,-0.47388,1.2811,0.4587,-0.23987,-0.64608,-1.0518 -0.86024,-0.56016,0.94162,0.58914,1.54,-2.2567,2.9284,2.6656,-0.25752,0.96968,-1.123,0.40696,1.5365,-0.011915,-0.33188 0.78673,0.62607,-0.81294,2.7657,1.1389,0.62336,-2.1651,-0.0367,0.41929,-0.58248,1.8553,-0.76194,-0.91044,0.27843,-0.98559 2.6164,1.337,-1.1917,-1.4025,-1.0776,-1.8393,-0.53418,-0.31361,1.7564,-0.75487,-0.32248,-1.0775,0.91553,0.14904,-0.55263 3.1635,1.4625,-0.70495,-1.2725,-1.0292,-2.195,0.18323,0.8487,0.41915,0.48381,-1.4145,-1.1069,0.49891,0.26653,-0.83606 -1.8301,0.38885,2.9573,0.041974,-1.1566,-2.5872,1.0399,-0.49409,-1.0305,-0.28561,0.49037,0.094985,0.40815,0.66084,0.19895 -1.0559,-2.161,2.1036,-0.44369,-2.4124,-2.0907,0.41674,-1.2671,-0.83628,0.50021,0.0026181,0.038673,0.18491,-1.3124,-0.80967 -2.9193,-2.8387,0.035906,0.021123,-0.80231,-2.4525,-0.75223,-1.1753,-0.35449,0.40603,0.88388,0.3479,-0.53105,-0.73707,-1.0621 4.1608,-2.4457,0.12915,1.6836,1.3537,0.50006,-1.4879,1.107,-2.8691,2.2707,1.2645,-0.014653,1.5166,1.3924,0.087401 2.5548,3.0733,-1.0737,-1.715,-0.85896,-1.5361,-1.3324,0.27383,0.36884,-0.1901,-0.43993,-2.0809,0.23551,-0.43426,0.175 -2.3179,-0.093888,-0.10335,1.7898,1.1454,-1.0991,1.8134,0.92441,-1.1747,0.3726,0.86858,-0.095359,-0.80577,1.1276,0.045891 2.4283,-2.9167,3.0645,0.25177,-2.0651,0.29161,0.84977,1.5153,-0.98557,0.70088,-1.4992,-0.83471,-0.75218,-1.0184,-0.40132 0.70948,-1.9532,0.79499,3.3206,-0.93197,1.6621,-0.22777,0.27201,-0.85058,0.18793,1.2386,-0.058915,-0.60571,-0.3708,0.90568 -1.4124,0.71017,1.4646,-0.61928,-2.7673,1.0685,-0.49059,0.83122,-0.59913,-0.2519,1.8619,-0.25384,0.070974,-0.54681,0.95479 0.44579,-1.5203,2.0317,-2.6466,-2.7197,1.0985,0.962,1.3828,-1.2031,0.39582,-0.88975,-1.9275,0.76054,-0.85838,-0.55156 5.3585,-1.8316,-0.91564,-0.089412,-0.20493,-1.4542,0.47454,-1.5988,0.63905,-1.0923,0.59875,-1.1618,-0.62595,-0.29493,0.43939 -0.35244,-2.0993,3.5174,-1.1079,-0.74028,1.4177,-0.82708,1.2419,-0.53601,2.6747,0.12244,-0.87485,0.12769,0.74742,-1.1856 -2.4146,-1.2766,2.2048,-1.2944,-0.91034,1.3545,-1.0669,1.0899,-0.020449,1.554,1.1707,-0.74724,0.16539,0.062946,-0.34092 -0.61558,-3.0391,3.3476,-1.4817,-0.95725,0.44364,-0.5276,0.017293,-2.1992,2.2353,0.050217,-0.4914,-0.50179,-0.3476,-0.68955 0.61509,3.4148,0.20055,-0.51122,-1.0658,-1.1649,-0.34669,-0.16498,-0.49101,0.41675,-2.2028,-0.74539,1.3432,0.57841,-0.00074542 0.33666,-3.0049,2.6222,-3.011,-2.6096,0.40857,-0.31428,-0.014591,-1.9413,1.6602,-0.70721,-1.3923,-1.9831,0.18461,-0.32012 -1.3159,0.74885,1.2426,1.4745,-1.1621,-0.47937,0.66213,-0.39099,0.15265,0.61508,1.4084,1.3633,-0.019973,-1.3167,0.27012 -1.4564,-1.5044,1.0147,-1.056,-1.9568,-2.0897,0.9928,-2.1184,-1.1098,0.4671,-0.38553,-0.62052,-0.98381,0.82114,0.61594 1.2478,0.96184,-0.90836,-0.54482,-1.9419,0.84065,-1.9707,0.2835,-0.19063,-0.69295,0.90113,-1.2337,-0.20548,1.0325,0.37025 -1.6854,-2.8529,-0.8966,1.2534,2.1271,-0.8066,-0.63972,-0.97315,0.69715,-1.4252,-0.27697,-0.92252,-0.68129,0.91054,1.0026 -4.3704,-0.57122,1.1256,-1.7,0.78789,-0.82786,0.072453,0.62751,-0.40302,-1.4224,1.0624,-0.90471,-1.5622,-0.39902,-1.0652 -1.1524,-3.4606,-0.36485,-0.69343,1.3666,-0.026895,-3.2267,1.6363,-0.58684,1.2808,-1.0673,1.3959,-0.38934,-0.50067,1.0892 2.2995,-0.2117,-1.8757,0.12732,0.38163,-0.3304,1.2586,2.3627,0.75537,0.76635,-1.5804,-0.99887,-0.40864,-0.02884,-0.45023 1.8796,0.59353,0.14401,1.8229,-1.4602,-1.7639,-1.0338,-0.90809,1.3615,-0.73518,-0.57929,-0.04892,0.18636,0.56461,0.407 -1.6531,-1.3891,3.0139,-0.97652,-1.1897,1.631,-1.0353,1.0657,0.43313,2.0597,1.021,-0.8855,0.33548,0.46769,-0.52438 -3.7783,-1.4578,-2.22,-1.3973,0.95229,1.079,-1.697,-0.16172,-1.4565,-0.94738,-0.088458,-0.031029,-1.2217,-1.0247,-0.45319 1.0674,2.3628,-1.9631,-0.01933,1.0515,-0.99692,-1.127,0.21867,-1.3352,0.42616,0.42162,-1.4635,-0.59576,0.3857,-0.11142 2.2061,1.5061,0.81854,-0.94516,-1.7393,-1.319,-2.3576,-1.0601,0.037533,-1.0685,1.0429,-0.0042984,0.95266,0.44862,0.33496 -0.64674,2.7074,-0.084959,-0.082507,-2.2168,-0.055451,1.75,-0.085189,-1.7791,-2.2118,-0.82545,-0.80723,-0.44511,-0.37493,1.2856 -0.53787,-0.70892,-0.93573,0.2114,-0.47095,-1.5225,1.3012,-2.7609,-0.99199,2.2017,-1.0538,-0.56455,0.43681,0.50788,-0.12109 -0.90174,0.65976,1.9383,1.3598,0.85212,-2.4226,1.3895,1.0611,-0.76349,0.30709,1.3334,1.0651,0.51165,0.76239,-0.33576 -2.5117,-1.1611,-0.93803,-0.24681,-0.97988,-1.587,0.13018,-1.7087,-0.63272,0.8452,1.3935,0.52935,0.25209,1.2156,-0.89145 1.9819,0.70848,-1.7201,1.4073,-1.4865,-0.66252,0.16476,-0.1546,1.5203,-1.0089,-0.87158,-0.46126,-0.047892,0.86728,-0.48776 2.4941,0.64295,-2.3765,-0.85355,-0.32125,-1.407,1.3048,0.36435,1.9557,0.64432,-0.34925,0.022895,1.1138,-0.031928,-0.36308 2.0538,0.79144,0.52239,2.2579,-0.24058,-1.7161,-0.75193,-1.7713,0.67524,-0.11005,-0.71893,-0.33,0.98749,0.46761,0.022871 0.81972,1.6796,-0.77686,1.7369,0.72808,-1.1407,-1.7604,0.51026,-0.31195,0.30636,2.4866,-0.12832,-0.92213,0.54845,-1.5656 3.8039,-1.0848,0.13999,-0.54752,0.83841,-3.0053,0.14221,-1.6572,-0.87059,-0.3786,1.443,-0.71256,-0.28482,1.2427,1.8673 -0.93826,-1.1525,1.0957,2.829,-0.6597,-1.2192,0.96598,-0.21413,0.062518,-0.13206,2.0274,0.73916,-0.62502,-0.27658,-0.29684 -1.6917,-1.2264,-0.88914,-0.42124,-1.5967,-0.85248,-0.77716,-2.1103,-0.95949,0.58041,1.4145,0.63784,-0.37558,0.5163,-0.83133 1.2636,3.0063,-1.9115,-1.5062,-1.0215,-1.3025,-0.76296,0.30386,0.17126,-0.60965,-0.13639,-1.4909,0.91509,0.3107,-0.34308 -1.9173,0.088089,-0.82751,1.4335,-0.20314,-1.313,1.8255,1.2074,-0.17912,2.1906,0.35558,-0.39714,0.32415,1.292,0.042068 4.5694,-0.66485,1.2468,1.4538,0.41093,-0.17141,-0.78117,-1.9262,-0.7489,-0.98284,0.38545,-0.32174,-0.094694,0.95707,1.0032 -2.4479,-0.33858,-1.8928,-0.20481,-0.5124,-1.5381,-0.40235,-1.5636,-0.69055,1.4558,0.66964,0.83743,0.060992,1.5963,-0.77743 -1.4827,1.8118,-1.3173,1.755,-0.76076,0.61138,0.1828,1.2241,-0.28124,0.84832,0.1991,0.80508,-1.3562,0.15648,-0.28613 4.2402,-0.63595,-0.29411,-0.16589,1.6047,-0.49716,2.0035,-2.057,-0.77766,1.2548,1.3661,0.31234,0.31411,-0.62108,1.4576 3.826,-2.834,2.6399,-0.44238,1.2192,0.33216,-0.98593,-0.91317,-3.46,-0.45294,0.77648,-0.58944,-0.8564,-0.067391,-0.39294 3.2868,0.73041,0.50141,1.6889,0.73298,-1.665,0.55401,-2.3489,-0.72758,-0.88224,-0.61643,-1.2184,1.5776,0.21118,0.10313 -0.76723,1.2071,0.78103,2.483,0.68968,-0.0092876,2.2921,-1.453,-1.6806,0.90757,-0.87729,-0.29458,0.93864,0.46663,1.3113 2.9951,-1.0671,-1.906,-1.3119,-1.2603,-1.7468,1.1385,0.25359,1.9294,-1.5507,1.361,0.61454,0.39395,0.71067,-0.37628 -3.7495,-0.0065141,-2.3551,-0.56973,0.15857,-0.30355,1.0475,-1.0451,-0.39398,0.067634,0.089572,0.23259,0.2998,0.69236,-1.6832 -0.48275,0.6185,1.2974,2.5436,-0.56199,-0.71387,0.97932,-1.1888,-1.4603,-0.17204,1.5787,0.74774,-0.58804,1.5211,0.62149 2.1124,-0.42815,-2.5659,-1.7564,-1.3602,-1.1574,1.5027,0.67794,1.9481,-1.0545,1.2628,1.3103,1.1424,0.71204,0.44834 -0.19989,-0.68533,0.81156,2.5423,0.15386,0.78473,-0.43317,-0.23355,-0.57728,-2.6657,2.1425,0.36902,-0.25159,-0.43634,0.40562 -1.3747,-1.5653,-0.052366,1.8196,0.99434,-0.66184,1.8384,-1.273,-0.08292,0.67033,2.2829,0.43649,-0.12174,-0.23289,-0.78212 -2.976,0.36062,0.29012,0.73064,-0.15652,-1.0471,1.6986,-0.29955,-0.13093,0.38364,1.606,0.51428,-1.1567,0.63333,-1.161 -2.0555,-1.6363,-0.75642,0.80757,0.571,-0.48834,-0.53628,-1.5393,-1.8781,-1.2467,1.8928,0.89807,-1.1552,0.18157,-1.1091 2.3881,-1.4296,-1.4499,1.1529,-1.1986,1.8789,-1.1558,-0.79717,-1.0626,-0.52873,-0.81548,-1.8088,0.59429,0.12451,1.3719 -2.1013,-2.0837,-1.649,1.393,-0.49487,-1.8647,0.46142,0.012553,0.026071,0.37339,0.94939,-0.28825,-0.77712,-0.19102,-1.3107 3.8814,-2.3317,-1.1468,-1.8168,-0.25918,-2.9981,2.24,1.4611,-0.0044887,-1.3809,1.5261,1.4674,0.13214,0.028865,0.12329 0.21714,2.9168,0.32418,0.2131,-1.8439,-1.1233,-0.61322,-0.50668,-1.0716,-0.16907,-0.95787,0.062079,0.89626,1.5208,0.3945 -0.60618,2.0733,-0.68192,1.5957,-0.50607,0.53931,0.65525,0.84264,-2.1367,1.197,-0.019648,0.30217,-0.28944,1.3123,0.63141 -1.4885,1.1245,-2.8611,1.5782,-1.0291,0.86717,1.2676,0.52883,-0.23775,1.0414,-1.0466,-0.09978,0.2881,0.34891,0.74897 -1.5063,0.091136,0.23023,2.6468,-0.93339,-0.13369,1.6566,-0.32318,0.23114,0.2295,1.1068,0.90697,-0.17056,0.033718,-0.15664 2.2601,2.2555,1.5256,-1.0246,-0.14037,-3.1433,-0.74206,-0.60878,-1.4541,-0.57306,0.90371,-1.0794,-0.11753,0.80627,0.68502 4.1064,-1.3525,0.73202,-0.020397,-1.9193,-1.829,-0.55435,0.41289,0.74072,-1.4802,-0.87148,-0.022569,-0.56505,-0.43072,-1.8436 5.029,-2.5369,2.4486,1.2605,0.51621,1.4771,-0.81707,-0.8065,-2.3827,-1.0541,0.2245,0.39824,-0.077215,-0.1917,-0.68628 2.3013,-2.7055,0.97329,0.035262,-1.5029,2.478,0.94533,-0.92324,-3.2811,-1.2306,-0.58295,0.14841,-0.75154,-1.1402,-0.83116 0.15509,-0.50048,1.8773,1.2869,-2.1549,-2.4064,1.3982,-0.14316,-0.10673,0.039251,-0.69281,0.74952,0.95151,-0.38653,-0.23966 -3.9168,-1.2472,0.63682,-1.1688,-1.2859,-1.727,0.35044,-0.18287,-0.70295,-0.94706,1.6479,-0.44505,-0.036194,-0.237,-0.27389 -1.7116,-0.96828,-1.7891,0.41621,1.8222,-1.0916,1.4183,2.4724,-0.83659,1.093,-0.76017,-1.5843,-0.75463,1.1769,-0.056596 2.6052,-1.3337,2.7794,1.3431,-1.8093,0.029891,-1.2149,0.033153,-0.93735,0.76815,0.7517,0.039024,-0.46843,-0.47404,0.20628 2.7807,0.16942,3.3029,-1.2756,-1.6871,0.18872,-2.3087,1.3819,-1.4549,-0.28116,0.23326,0.89401,-0.28742,-0.10307,-0.65034 1.8979,0.65398,2.3864,1.4838,-0.53468,-2.018,2.1535,0.21495,-0.97122,0.75062,-2.0669,0.79165,0.64683,0.78981,0.48765 0.014331,-3.213,3.3522,-0.35464,-0.76143,-0.95168,0.6433,-1.1497,-0.98753,1.0403,0.62477,0.21514,0.058366,-1.2283,-1.6563 3.896,-1.3371,-0.61561,-1.9925,-1.1062,2.0019,-0.97164,1.983,-0.034943,-0.033283,0.15136,0.25135,0.94444,0.20691,-1.1403 3.5647,-2.2445,-1.9457,-1.7121,-0.47105,-2.0455,2.7667,1.5031,2.1085,-0.44262,1.1257,2.3077,-0.093415,1.3789,0.68478 0.48553,-3.442,2.8445,-0.038079,-0.70782,0.33092,1.3992,-0.18514,0.36251,0.9867,-0.55455,-0.67619,-1.536,-1.8127,-0.53459 2.3963,0.51252,-0.26575,-1.1165,-2.7059,2.7254,-0.7487,2.5521,-0.82794,-0.53716,-0.30042,-0.070506,-0.62181,1.3108,0.57185 -1.8156,-0.85393,-0.14883,0.17604,2.746,0.10316,2.6642,0.24694,-1.135,1.6666,-1.3329,-0.50695,1.5835,-0.60302,-1.1707 -2.0039,-2.82,-1.2539,-0.047591,-0.4505,-2.4774,-0.085819,0.11804,-0.33053,-0.086966,0.46305,0.30124,0.27665,0.42183,-1.4968 -1.1782,0.53121,1.2569,0.9184,-1.4283,-1.9329,1.0921,0.72558,-0.41361,-0.8003,1.192,0.34484,1.8958,-0.32,0.052975 3.2808,1.2991,-1.3694,-1.7038,0.80878,-2.4227,1.0034,0.33616,0.4109,0.25848,-0.074346,-1.5579,1.0282,-0.18995,0.72515 2.4004,-1.2026,-1.7085,1.0547,-1.546,2.6109,-0.29058,0.42349,0.19861,-0.79347,-1.5118,-0.80594,-0.29214,-0.062903,-0.038232 1.5689,2.9729,-1.1191,-1.7632,0.91441,-1.1072,-0.46509,0.40009,-1.4182,1.3701,0.9952,-1.6139,0.49926,0.44585,1.0869 2.2622,-1.686,-1.2898,1.967,0.14101,0.87517,-1.414,1.5788,-0.21922,2.1373,1.3508,0.51249,1.5258,0.88837,-1.0015 -0.20856,3.1801,0.24267,1.1549,-0.37326,-1.2565,-0.67791,1.0022,-0.48307,1.1095,-1.7852,-0.31719,0.94047,0.58443,0.27034 -0.44561,2.3383,-1.114,2.6888,0.031757,-0.41417,0.60943,1.0658,-0.36456,0.62931,-2.0351,-0.72739,-0.49138,0.48549,0.76271 1.824,-1.1366,-0.97712,1.5756,2.6668,0.84647,-1.3214,1.3658,-0.14945,-1.3606,2.7899,-1.2246,-1.2736,0.039597,-0.62596 2.0348,-0.55775,-0.012166,3.0345,1.3785,0.36529,-0.72241,0.01776,-0.76394,-0.5045,2.0616,0.34473,0.76762,-0.033961,-0.72827 1.2546,2.4562,-2.3009,-1.5649,-0.62502,-1.4805,0.26815,0.42369,1.1233,-0.028302,-0.79254,-1.0843,1.0193,0.28139,-0.11755 1.6829,2.9773,-0.59345,-0.4863,-0.48063,-1.5196,-0.51173,-0.065619,-0.049224,-0.55838,-1.6579,-1.4013,1.2905,0.26461,-0.45533 1.7619,-0.53827,1.7385,0.27315,-1.0547,1.5499,-2.5616,2.919,-0.68113,0.73941,0.88596,0.85412,1.106,1.4107,-0.77747 0.97158,1.9791,-0.5283,1.7376,1.0098,-0.50414,0.85715,-0.27222,-0.95209,0.48562,-3.5064,-1.4159,1.1092,-0.37313,0.7187 2.632,2.0287,-1.0759,1.0501,0.85813,-0.89759,0.10064,-0.49606,0.81738,0.60178,-2.0646,-2.1221,0.59598,-0.045362,-0.0098888 1.2723,1.626,0.59026,0.59676,-1.1059,-1.7659,0.60887,0.76667,-0.72284,1.4178,-1.4932,-0.20944,2.0059,0.82122,0.12566 3.8195,1.0358,1.6028,0.85414,0.72022,-2.3173,0.014607,-1.1401,-0.4349,-0.8239,-1.8193,0.17824,0.63162,-0.4812,-0.64671 4.016,-2.8178,-1.9835,-0.43619,-0.58647,0.29583,1.8352,-0.36854,0.29225,-0.68977,0.15246,1.0969,-0.48327,-1.2998,1.265 3.1281,0.73824,-1.5343,0.3662,0.72554,-2.1575,0.86175,-0.89164,1.6314,-0.014985,-1.0408,-0.83919,0.86843,-0.53734,-0.94934 2.1435,1.7071,-1.2151,-1.1597,-1.2351,-2.0826,-0.44617,-1.1866,0.071481,-0.40086,0.42627,-1.3457,1.0662,-0.13248,0.38022 3.9002,0.037053,0.86775,0.63976,-1.4104,-1.6266,-0.86584,-1.4317,0.41055,-0.90518,-0.71324,0.028169,-0.61559,0.22177,-0.94892 4.3346,-1.2824,-0.079253,-0.90807,-0.50679,-1.7743,0.34369,-1.5411,0.60052,0.23816,1.8084,-0.030581,0.59537,-0.34515,1.4037 2.5375,0.25673,-3.0022,-1.808,-1.4722,-0.03098,1.1231,0.28807,1.1426,-1.3946,1.2821,-0.24817,0.6147,0.83386,0.52194 1.7313,1.6096,0.00025722,-0.44964,-1.5768,1.9575,-2.3224,-0.11273,-1.1289,-1.3799,0.99826,-0.038167,0.9324,0.086704,0.017853 -0.77999,-2.7076,0.99887,-0.43184,-2.3549,-0.93188,0.37981,-0.99044,-0.02115,1.3276,0.28886,0.20193,0.69652,-1.005,-1.1663 0.3366,2.3082,1.1657,1.1788,-1.5955,-0.038724,-1.4062,-0.7228,-0.18737,0.049962,0.34784,1.3729,0.3546,-0.14134,-0.15819 0.060683,-3.911,1.332,-0.15551,-1.9936,-0.48319,-0.43358,-0.87182,-0.68783,1.9131,0.15385,-0.42577,0.19008,-0.41702,-1.0018 0.85782,-3.379,-0.62832,-1.7368,-2.194,-0.55762,-1.7279,-0.72406,-1.1779,1.2524,-1.8608,1.1006,-0.49532,-0.61647,0.52291 -2.2367,-0.71138,-2.4887,-0.53916,-0.95971,-2.0133,-0.018961,-0.18612,-0.082375,0.76513,-0.045306,0.23974,0.65863,1.5809,-0.52619 0.046314,-2.6058,1.3079,-1.2513,-3.2785,-0.43974,0.41395,-0.52987,-0.25304,0.51077,-0.35395,-0.40068,0.4706,-0.91798,-0.57471 -1.4101,0.26185,-2.1483,-1.0804,-0.044433,-0.95483,-1.0101,-0.4791,-1.861,0.22333,-0.41977,2.1767,1.556,1.0057,1.8157 3.1365,-3.2186,-1.5315,-1.4485,-1.8929,0.15455,1.1556,3.0771,0.87426,0.91415,-1.1487,2.36,0.36177,-0.053751,-1.0091 -1.4144,-0.86538,-0.030424,-2.0722,-1.7675,-1.7923,1.2779,-1.7825,-1.9681,1.3816,-0.47218,-0.11383,1.3266,0.83943,-0.28578 -0.62933,-1.1531,-0.46677,-0.9087,-0.54068,-2.297,1.3752,-1.051,-1.6826,2.8841,-1.074,0.087129,1.9859,1.2994,-0.78854 0.65423,0.73229,-0.32784,2.1774,-2.2121,-0.95908,-0.25899,-0.66077,0.51253,-0.18923,-0.10881,0.17615,-0.06271,0.7397,0.63336 1.8162,-0.52973,3.1956,0.079782,-2.9049,0.49058,-1.013,0.71158,-0.39959,0.16317,0.3558,1.0041,-0.032991,-0.28283,0.30327 -2.8462,-0.7018,-1.7517,-0.5293,-1.1789,0.89291,0.55339,-2.4661,-0.43969,-0.98515,0.46889,-0.0020533,0.13302,-0.4161,-1.3069 -0.58951,-3.69,-0.99382,0.58631,-0.62596,-0.48103,-2.3766,0.1144,0.15238,1.4014,-0.49025,0.48414,0.014705,-0.49943,0.26273 -2.6914,-3.2967,-0.23518,-0.7495,1.4696,-0.45613,-1.2708,1.7241,0.12622,0.14363,-0.27532,-1.0769,-1.1481,-0.97963,-1.0318 3.6342,-2.1811,-1.6404,0.38934,-0.29479,1.1123,2.0033,-1.6195,-0.73985,-0.70041,0.79877,0.88822,0.96523,0.35414,1.1682 5.1222,-3.4313,-0.75522,-0.89434,-0.52305,-1.0139,1.8802,-0.17588,0.14278,0.34506,0.83426,1.0283,-0.044982,0.23708,1.8732 -1.9208,-1.3698,-0.56735,0.33027,-1.8108,-2.4006,0.65891,-1.29,0.63446,0.9036,0.37274,-0.26605,0.86865,0.017582,-0.61684 3.1804,-2.6892,1.7355,1.7905,-1.87,0.56936,-0.23335,1.6363,0.23692,-0.89407,-1.6972,-0.12348,-0.76869,-1.0968,-1.0034 -0.12649,2.9889,0.013095,1.4415,-0.076125,-0.65265,-1.0346,0.69196,-0.61206,1.659,-0.46433,-0.18403,-0.52808,1.0641,-0.12028 -0.83541,-1.8801,1.6927,0.72709,-2.5528,-1.3195,0.45526,-0.63615,0.042763,0.8664,-0.056246,-0.018024,0.19335,-1.931,-0.5119 -2.9408,-1.019,0.836,-0.73646,-0.72007,-0.22519,-0.23097,-0.35255,-0.71048,-0.32735,2.6749,-0.031924,-0.28986,-0.30084,-0.98493 -3.2151,-0.13433,-3.45,-0.9988,0.36314,-1.3913,0.037934,0.33583,-0.7603,-0.055381,-0.90442,-0.029271,0.15419,1.355,-0.45726 2.1813,0.19709,-1.5934,2.304,0.10473,-0.12183,-0.25436,-1.2427,0.090663,-0.32612,0.54012,-0.33232,1.8174,0.77734,-0.10224 -1.7729,2.826,-0.69631,0.67424,-0.30083,-0.19217,-0.28713,1.7447,-0.64932,-0.47034,0.0053728,1.0049,-1.8007,-0.39468,-1.442 -2.337,-1.7949,-1.9994,0.099581,-1.6975,-1.2254,-0.49319,-0.41545,0.56519,-0.62038,0.89868,-0.30838,-0.38989,-0.03348,-1.1733 0.55665,-0.63583,0.94473,2.3048,-0.60515,1.6132,0.71966,-1.5213,-1.0673,0.6014,0.74544,0.44121,0.11599,-1.4816,0.57889 -2.103,-1.4297,-1.42,-1.5081,-2.5843,0.30541,-0.52009,-1.4783,-1.026,-0.44696,-0.56839,-0.71794,0.32351,-1.373,-0.29294 0.0047673,-2.5249,-2.5094,2.0657,-0.53451,-0.97034,-1.2725,0.1687,-0.40769,0.48349,-0.56559,1.4553,-0.07753,-1.3634,0.16035 -1.4773,-0.60263,-3.5516,0.70236,0.20478,-0.71727,0.95152,-0.29828,-1.1493,-0.16134,-1.2478,-0.4263,-0.1562,1.2144,0.22473 -1.509,-2.6717,-2.1866,0.66505,-1.2906,-1.3405,-2.3072,-0.47012,0.016459,0.33594,-0.55544,0.7234,-1.0129,-0.81338,0.43136 -2.2657,-2.0822,-2.3877,-0.50248,-1.2746,-0.44194,-2.3136,0.066604,-0.98497,-0.68418,-0.099896,0.50775,-0.093127,-0.93598,0.28943 -1.9775,-0.39742,-3.597,0.23014,-1.2588,-1.2896,-1.1161,-0.2304,-0.2722,-0.19459,-0.33101,1.2552,0.14389,0.38644,0.21437 1.7582,-1.1802,-1.7566,0.78813,-0.23799,0.80915,-0.64794,1.1765,0.47518,2.3175,3.3604,0.91851,0.2765,1.3538,1.2211 -1.1185,-2.357,3.6629,-0.78575,1.4912,-2.6266,0.95134,-0.63669,-2.483,-0.54075,-0.60861,0.017147,-0.1804,0.49034,0.032862 4.074,-3.9561,-1.1087,-0.2526,-1.4193,0.024419,1.1902,2.525,-0.0059615,1.0097,-0.75801,0.83428,0.097114,0.68327,0.15746 0.69522,-1.3343,-0.41434,1.5713,1.3586,1.5238,-2.348,0.91917,-0.53365,-2.915,1.9263,-0.83975,-0.29567,-0.092775,-0.60491 -2.0969,-3.3012,2.3233,-2.0537,0.73941,-0.14637,-2.0988,-1.0032,-3.0457,1.2432,0.36775,0.36068,-2.29,-0.08599,0.37899 2.3476,-1.5939,4.289,1.3325,-1.1868,-0.28567,-0.67159,0.43776,-0.71047,-0.21095,0.94299,0.91998,-0.038551,-0.10784,-0.14341 -2.1337,-2.8619,3.3259,-1.8769,1.5562,-1.6125,-0.69444,-0.022718,-3.3666,-0.017289,-0.21186,-0.2213,-1.4454,0.11178,0.51976 -0.61384,-0.057027,0.83545,2.7699,-1.4529,-0.61099,0.7809,-1.3219,-0.62154,0.16078,0.88027,1.2021,-0.38372,-0.77469,0.26499 2.6179,0.62385,-1.2413,-2.7616,-0.68473,-2.3047,0.67037,-0.76524,-0.28665,-1.0767,1.5126,-0.536,1.418,0.075395,1.5803 0.097009,-4.9635,3.5477,-1.694,1.2037,-1.3409,0.093926,0.50574,-3.7152,0.48854,-0.80839,0.33637,-1.7172,-0.35288,-0.22098 4.1422,-2.8724,3.0916,0.038388,1.0543,0.51481,-0.82185,1.8429,-3.4427,1.0789,0.51598,-0.20991,-0.53408,1.0116,-0.34552 3.6907,0.10971,0.16479,0.94538,0.11411,-1.9748,-0.53938,-1.9126,0.10241,-0.19363,1.2276,-0.71277,0.87316,0.46869,0.093088 -2.5986,-0.84946,2.5389,-0.37032,-0.24006,-3.0325,0.95949,-0.99961,-2.0888,-0.055892,0.026757,-0.47407,-0.66988,-0.012706,0.39647 -0.82204,-0.029573,3.526,-1.0838,0.10445,-2.8308,0.54777,-0.87556,-3.1462,-0.57793,-0.74926,-0.50022,-1.5613,-0.1322,-0.19043 -1.516,-0.9532,-1.4633,-2.32,-1.8616,-0.55517,1.6589,-1.1433,-1.1897,-1.0831,-0.57941,-0.73347,0.26566,-0.018817,-0.85479 -0.35657,0.098215,2.6046,-0.17905,-0.58567,0.21903,-1.68,2.108,0.18712,-2.458,0.92938,0.55919,0.93521,0.081915,-0.091541 2.5521,-1.5162,3.1156,0.38615,-2.1905,1.8169,-0.54159,0.82778,-0.50673,1.6714,-0.74098,-0.89391,-0.58891,0.39345,-0.74765 3.4384,-5.0051,-1.1288,-0.67273,-0.95178,-0.66572,1.2794,2.8733,-0.037986,0.20784,0.39399,2.6431,-0.5131,0.24763,-0.17857 -0.49536,1.0595,0.7154,2.2242,1.4629,-1.8513,1.4695,3.0072,-0.083286,-0.33579,-0.75881,-1.2799,-0.68594,0.32341,0.033164 2.4889,-2.2825,2.8523,1.7282,0.12171,1.4836,-1.38,3.1115,0.082555,0.84458,-0.61275,0.78782,1.0944,-0.19996,-0.49586 -2.0671,-2.2327,-0.36322,0.85761,2.1918,-2.5707,2.0565,0.85178,0.02428,0.18191,-0.16906,-1.2004,0.038434,0.88404,-0.85511 1.0402,2.5481,-0.50958,-0.26552,-2.4938,-1.0592,-0.89843,-0.71308,-0.24836,-1.3956,-0.96761,-0.16557,0.90961,-0.3915,0.34568 -1.1033,-3.3846,2.7411,-0.12194,0.37831,-0.0036345,-0.42054,2.2817,1.044,0.59717,0.28716,-1.1842,0.03312,-0.26592,-0.89797 0.80593,-2.2485,1.67,2.5583,2.3107,-0.7605,0.17209,2.4844,-1.7543,-3.549,0.074819,-0.4865,0.29824,0.39175,0.65567 -0.14245,-2.5431,2.7317,2.5089,1.2986,-0.85569,0.36622,1.9577,-0.03592,-1.4072,0.38,0.018949,-0.60139,-0.87219,0.015709 -2.2781,-0.70459,-1.7741,0.821,0.75592,-1.0052,0.058549,-1.3074,-0.4486,1.0922,0.78367,0.63394,-0.71459,0.89932,-1.0184 -0.17374,2.4894,1.3952,-0.97559,-0.69385,-1.3758,0.78753,1.2703,-1.1011,-0.23814,-2.0431,-1.6899,0.44707,0.5861,0.55838 -1.1168,-3.2084,3.2615,-0.8344,0.079403,0.77648,-0.75273,2.4309,0.57251,1.1406,0.70328,-0.9184,0.56259,0.15362,-0.98681 -0.5097,0.17785,1.5152,2.5658,2.5098,-2.7463,1.9733,2.3405,-1.0059,-1.0266,-0.80937,0.26122,0.57902,0.89494,-0.58049 1.0888,0.61208,2.5594,1.433,1.813,-2.0526,0.23877,1.2309,0.6182,-0.9709,-0.23396,1.0373,1.3732,1.226,-1.015 3.8692,-0.43157,-0.22433,-1.0191,-2.5816,0.94048,-1.1568,2.6913,0.68083,-0.33555,-1.3563,-0.41692,-1.0084,1.4428,-0.37853 -1.5288,-0.66751,1.0485,0.96054,-0.32579,1.0879,-0.40705,2.6559,1.4864,0.77422,1.6965,-0.98739,-0.80204,0.99022,-0.30022 -0.81449,0.33029,2.4699,0.28461,0.15419,-2.5587,1.3057,2.6415,0.50238,-1.3337,-0.11425,-0.28993,0.51347,-0.13914,0.384 -0.49486,-2.0045,1.8679,2.2849,-0.19883,-2.3143,1.4236,1.9014,0.017217,-0.95907,0.66108,0.34032,0.035037,-0.58509,-0.46532 -1.2255,0.035046,0.86173,1.357,0.57642,-2.3403,2.6259,2.3716,0.10366,-0.97151,-0.23126,-0.60844,-0.84571,0.050632,0.031693 0.04575,0.98625,2.9541,0.63816,-1.4453,-0.087556,-1.825,-0.3234,-1.1261,-0.15994,1.6775,0.85878,-2.0521,0.83406,0.040916 0.38295,-0.6499,1.9553,1.6373,-1.521,-0.1355,-0.056016,-1.7002,-1.6923,-1.3146,-0.4121,-0.062837,-1.2787,-0.27017,2.0797 -2.3449,-1.954,-0.06206,-1.1233,-1.1189,0.42412,-1.8041,-0.44573,-0.73357,0.11429,1.3479,-0.054203,0.3781,-0.84617,-0.47884 0.7057,-3.4617,-0.40115,0.52732,-0.99876,0.097415,-1.4154,-1.6511,-0.86804,1.0604,-1.4844,0.13787,-0.25146,-1.6009,0.46937 2.1421,1.6536,0.84539,-1.1881,-2.3594,0.86055,-1.88,-0.73714,-1.4201,-2.6499,0.12421,0.050641,0.15865,-0.6022,0.17839 -1.3222,-2.8899,1.0048,-0.92332,-0.93511,1.0002,-1.5875,-0.50162,-0.12188,1.3143,0.24038,-0.7479,0.0031419,-1.0342,-0.78898 -0.86954,-0.32904,3.6151,-0.43917,-1.246,-0.4862,-0.62364,-0.21872,-1.9374,-0.5372,1.3568,0.12573,-2.3606,0.12698,0.26168 2.3797,0.65974,-2.5983,-0.35244,-0.47687,-1.4099,0.69753,-0.64979,1.153,1.1268,0.92198,-0.93147,-0.61824,-0.11416,1.9994 4.1192,-3.0924,-2.422,0.14107,-1.2919,1.5068,1.2971,2.4588,-0.0031714,1.9543,-1.1767,0.70486,0.69344,0.2418,-0.8075 -2.1771,-0.5328,-2.9905,-0.097539,-0.012522,-1.8876,0.81047,0.63491,-0.37017,0.68872,-0.59164,-0.87887,-0.39536,1.4825,-0.74362 -2.5434,-2.4097,0.33878,-0.63669,-0.36102,0.40306,-1.3398,-0.088453,-0.1134,-0.069796,1.6166,-0.64207,-0.16887,-1.1274,-1.3923 1.4734,2.5866,-0.007876,1.1912,0.29475,-2.0248,0.078402,-0.71899,-0.27711,0.78759,-2.5804,-0.97906,-0.49602,0.39435,0.45874 0.6824,2.9564,-1.587,-0.35867,-1.7716,-0.43977,-0.83052,0.16392,-0.32687,-0.60915,-1.4031,-1.1555,1.1276,0.54562,0.24552 -1.5386,-3.0632,0.12746,-0.39562,0.73868,1.0295,-2.3716,-1.0615,-0.34571,0.72488,-0.40201,0.22367,-1.0782,-0.52724,-0.21045 -2.2355,-1.1245,-3.0948,0.11344,-0.46246,-1.5274,-1.4678,-0.15843,-1.0458,-1.1235,-0.18724,1.3186,-0.033098,-0.43056,0.42969 1.4537,-0.26652,-0.47817,2.0473,3.1885,-1.0312,0.27395,0.41746,0.43568,-0.49138,0.65321,-0.06761,1.836,0.39398,-0.8128 0.13388,-1.8682,0.92658,1.221,-1.4321,1.7557,-0.77005,1.9486,-0.039675,1.4358,0.37,-1.4001,1.6102,0.62287,0.15344 3.0446,-0.94584,0.4046,-0.22389,-2.6068,1.0797,-0.25447,1.9849,0.32736,-0.87996,-1.3918,-0.05234,-0.13527,-0.85323,-0.48658 -1.7388,-1.1302,1.1294,-1.0796,-1.2131,0.62817,0.069601,-1.3369,-0.78477,-0.11011,1.3213,-0.015527,-0.075231,-1.1512,-1.6021 -2.6928,-0.82732,-3.0589,-0.0556,-0.025563,-1.2386,-1.2249,-0.23988,-1.3464,-0.99768,-0.25053,0.65753,0.33097,-0.33385,0.044337 1.3301,1.6503,-2.8441,-1.6093,-0.55193,-1.0092,0.73458,0.34324,0.066205,-2.0108,0.85437,-0.78335,1.6956,-0.044384,-0.097839 -1.5471,-3.5575,0.56964,0.19803,-0.32679,0.10294,-1.3883,1.834,0.72951,1.5631,-0.03912,-1.9233,0.13277,-0.46041,-0.34392 -2.9356,-2.3786,-0.8238,-0.66991,-0.73309,-0.89281,-1.5943,0.21734,0.77163,-0.40807,0.5612,-1.0644,-0.53298,-1.0762,-0.40999 3.7711,1.3032,-0.29875,0.28186,-0.45378,-2.0131,0.052101,-0.96727,0.87776,0.062965,-1.6314,-1.1957,0.25866,0.61264,-0.79042 2.7172,-1.0127,0.0706,1.3978,-0.047694,0.97861,-2.1034,-0.52661,0.774,1.3696,1.4307,-0.14756,0.52246,-0.0020372,-0.30339 2.7621,-2.5033,-2.4325,0.14712,-1.5806,2.6619,1.2685,1.1986,-2.0381,-0.0088381,-1.9474,-0.63419,1.3921,-0.2995,0.2596 -2.6133,-1.895,0.79004,0.31193,-0.41406,-0.21368,-0.36556,0.3483,0.68881,-0.27909,1.4407,-0.54932,-0.56624,-1.1783,-1.4692 0.054116,0.6393,-0.53404,3.4892,1.3752,-0.85235,0.014221,-0.13731,-0.2636,-1.2857,0.70947,0.24787,-0.48915,1.1458,-0.28642 4.3325,-3.3904,-2.0134,-0.59283,-1.1769,0.50108,2.2372,2.6625,-0.37332,1.0716,-0.73158,0.96571,-0.32454,0.66303,0.21396 1.1897,3.284,0.18164,-1.5343,-0.48714,-1.6737,0.50026,-0.085828,-0.84388,-0.71041,-2.0689,-1.46,-0.27237,0.49002,-0.039766 -3.7827,-1.2914,0.21897,0.068781,-0.6227,-2.232,0.49297,-0.10129,-0.010186,-0.68421,1.3143,-0.089645,-1.1989,-0.079181,-0.96342 -0.87242,-1.987,2.6527,0.4186,-2.2212,-2.3598,0.74783,-0.64584,-0.83655,-0.28439,-0.50772,0.13919,-0.14346,-0.96115,-0.42637 3.4256,0.29049,-0.36392,0.80487,-0.4137,-1.0778,-1.2623,-1.4927,-0.27956,1.1983,1.5565,-1.7956,-0.28538,0.042897,1.3464 -0.3237,-1.846,4.2569,-0.60949,-2.0912,0.27284,-0.93319,0.6587,-1.1441,0.5094,0.76243,0.026992,-0.79481,-0.50147,-0.18608 3.6638,-0.59483,-0.27162,-0.43444,-1.8797,-0.050507,-1.6565,-0.59192,1.0116,-0.5224,-0.043451,0.071828,0.19844,-0.26095,-1.4315 -3.4049,0.46259,1.3543,-0.26667,-1.3945,-0.12295,0.83298,-0.23993,-0.92003,-1.7977,2.0779,0.1395,0.099105,-0.41056,-0.60508 -0.28444,-0.42634,-1.0314,1.5063,2.0829,0.82162,1.5654,0.67291,-2.4027,1.3941,-0.511,0.47561,2.6004,-0.52542,-0.056028 1.495,2.2715,-1.4796,-0.71396,-0.32902,-0.81639,-0.48876,-0.34315,-0.33164,0.92815,1.0205,-1.3011,1.7209,-0.072074,0.9875 2.3306,-0.45922,0.63574,1.694,1.0646,-0.93148,-2.1275,0.21168,-0.47451,-0.34492,2.798,0.70011,-0.28536,0.65547,-0.40577 2.3601,-1.6369,3.593,0.10193,-2.4685,1.155,-0.39315,1.835,-0.84193,1.9209,-0.57747,-0.94142,-0.29719,0.76609,0.52087 1.3461,-0.74152,-0.70894,0.12037,-0.87443,-0.93965,-2.3314,0.28078,1.3617,0.55784,2.5359,0.05067,0.8449,0.44412,-0.065655 1.8445,-0.10354,0.40915,1.3325,0.26771,-1.8872,-1.583,-1.3911,-0.35563,-0.15219,1.5594,-0.52034,-0.59886,0.67758,0.38358 -1.8155,-1.8566,3.3424,0.067543,-0.18429,-0.73084,-0.0073588,1.1955,0.33172,-0.39754,0.71293,-0.31401,-1.207,-1.5162,-0.77545 0.16184,2.0851,-0.64912,2.3135,-0.9018,-0.67489,-1.1831,-0.46215,0.17812,0.46411,0.40511,0.17781,-0.31261,1.1198,-0.49236 0.098771,2.975,1.6939,0.097899,0.26973,-0.69968,0.029414,0.55658,-2.398,-0.51903,-0.98923,-1.5107,0.10391,-0.087798,0.75384 1.1032,-2.1333,-0.88493,-1.065,-0.95097,0.36868,-1.1504,1.8479,-1.2828,0.69735,3.0045,2.1653,1.0894,-0.082615,0.97547 -3.4913,-1.6137,-1.712,-1.0987,0.0021928,-1.0728,-1.9595,-1.402,-2.0479,-1.1768,0.60647,1.4966,-0.45435,-0.65149,0.16814 -0.28308,2.8574,-1.4427,1.1967,-0.8921,-0.4306,-1.0166,0.36484,0.27139,0.52282,-0.86213,-0.15339,0.76675,1.3396,-0.3997 -3.8044,-1.0025,-0.91146,-0.6671,-1.1102,-0.39207,0.26742,-1.1594,-1.1581,-1.2431,1.2955,-0.45325,0.5682,-0.9823,-0.87684 2.164,-0.22743,0.80948,2.0808,-1.4685,-0.26931,-1.2804,-2.203,-0.55847,-0.99655,-0.7698,-0.53231,-1.1699,-0.6522,0.59817 -0.9017,-0.42356,-2.8031,2.0597,-0.049262,-0.1044,1.1812,-0.17278,-0.077637,1.0214,-0.32526,-0.55322,1.2993,0.17871,-0.2561 3.0959,-2.8336,-3.3524,0.7895,-0.5609,2.2204,0.69078,1.4623,0.19268,-0.32035,0.9265,0.26502,0.65178,0.31573,0.0056402 -0.84603,-1.4146,1.8755,2.9181,-0.48808,-1.4536,0.97667,-0.91853,-0.61122,-0.59764,1.3177,0.26651,-0.37228,-0.060637,0.82643 -2.2237,-1.6763,-0.88734,-1.6032,-0.66385,-1.2945,-1.8374,-2.1301,-1.7503,-0.308,0.1949,1.8074,0.17792,-0.69522,0.58497 0.68513,3.4574,-0.46042,-0.30744,-1.2385,-1.1942,-0.0062018,0.15136,0.0046076,0.40474,-2.4006,-0.55652,0.64184,0.203,0.39675 -2.8715,-2.0466,-0.45489,-2.122,-0.76016,-0.41928,-1.3091,-2.1172,-2.6423,0.10959,-0.42978,0.032153,-0.36153,-1.3133,-0.24893 -1.6564,-3.8143,1.9808,-1.952,-0.32185,0.97515,-2.3118,0.23992,-0.77938,1.9342,-0.26201,-0.33016,-0.87404,0.22993,-0.41706 4.4438,-3.9071,-1.3528,-0.61246,-0.41132,-1.2297,1.5673,1.5788,0.64334,-0.34851,0.59944,1.0103,-0.23529,0.49136,-0.5003 -2.875,-2.0433,-0.73607,-1.6723,-0.97422,-0.53549,-2.2879,-2.2537,-1.5127,-0.026647,0.1353,1.0272,-0.25249,-0.45997,0.20694 0.17442,-1.1894,-1.1509,1.0252,-1.6256,0.81256,-0.18374,-1.8819,-0.25537,1.189,0.2899,-1.2578,-0.53786,-0.11807,0.75853 -1.2333,-2.1825,2.2067,-2.8603,-2.011,1.9221,-0.80236,-0.26324,-2.7377,0.49018,-0.029549,-1.4007,-0.21351,-0.94287,-0.53723 -0.20341,-3.6767,0.83013,0.51713,-0.28253,-0.41364,-1.4846,2.0538,-0.6476,1.3187,-0.3634,-0.30755,0.47404,-0.50698,-0.01744 -0.3179,0.44207,-0.56625,2.867,0.34705,-1.1982,2.1289,2.0098,-0.426,-0.39664,-0.94117,-0.73743,0.045716,-0.067976,0.35484 2.7886,0.45766,-3.5396,-2.5606,0.21771,0.036309,1.9391,2.1381,-0.66502,-0.68042,1.5009,-0.3305,0.52174,-1.5057,1.3714 3.0263,1.6639,-0.59176,-0.42373,-1.7171,-1.0848,-0.70261,-1.0932,1.1333,-1.0557,-0.87615,-1.2318,0.65171,0.13888,-0.52455 -2.0058,-0.89527,-0.82206,-0.74329,-0.41094,-1.5164,-0.12934,-1.7161,-0.38964,1.3981,0.43181,0.97796,1.483,0.69069,-0.67758 -2.7037,-2.144,-0.52246,-1.7435,-1.6929,-0.24292,-1.7839,-1.8816,-1.3026,0.41511,-0.35409,0.034532,-0.0023984,-0.99424,0.10406 2.2164,1.5431,-0.76661,-0.90563,0.11005,-2.2722,-0.77087,-0.055206,1.0232,0.97065,-0.11162,-1.4149,0.21237,0.90123,0.55265 -3.5913,0.3907,-2.1367,-0.76849,-0.27498,-0.44507,0.37625,-0.12138,-0.034684,-0.0088329,0.91798,0.22027,0.49212,0.1259,-1.1945 -3.4691,0.13888,-2.3936,-0.057594,-1.1948,-0.18292,1.595,-0.64619,-0.89504,-1.0875,0.82533,-0.44375,0.55856,-0.32499,-1.0534 -2.5809,-1.4271,-0.38835,-1.7624,-1.3295,1.4393,-1.6592,-1.5529,-0.95491,0.060845,0.36337,-0.48861,0.68853,-1.1038,0.14037 1.8932,1.3635,-0.16786,1.1486,-0.60274,-1.071,-1.3067,-2.2141,-0.4801,-0.9755,0.75689,-1.4315,-0.46309,1.2376,0.81455 0.37346,-0.1916,2.2221,-1.8488,-3.4799,2.0613,-0.083795,0.82926,-1.4327,-0.49171,-0.23466,-1.0151,-1.0878,-0.72271,0.89266 -2.6572,0.21849,-2.3271,-0.88684,-1.9361,-0.28742,0.92873,-1.8599,-1.2625,-0.057542,0.15013,-0.023455,0.99517,0.089769,-0.65119 -0.15655,-2.7068,0.17764,-2.0662,-2.8744,0.67262,-0.49343,0.39256,0.10976,0.99459,-1.415,-0.75297,-0.23792,-1.0035,-0.78745 -0.28727,-3.4173,1.8692,-0.68125,-0.17453,1.1168,-0.91519,-0.64167,0.1371,2.88,-0.46566,-0.88103,-0.26676,-0.0028576,-0.84185 -2.6005,-2.4982,1.022,-3.2885,0.38232,0.95846,-2.0522,-0.28513,-1.1155,1.2279,-0.63604,-0.7022,-0.48969,-0.58607,0.40043 0.41189,0.96766,2.2212,1.6136,-1.34,-2.6385,0.14271,-0.54576,0.10341,-0.77139,-0.37831,0.23415,0.31657,0.68749,0.73053 -0.90548,-2.1879,2.7059,0.32407,0.36288,1.0482,-0.20226,3.1649,1.5272,1.6303,0.59422,-1.7054,0.60415,0.23833,-0.08767 -2.1778,-2.2409,0.3528,-2.4353,-0.50909,0.67691,-2.4504,-1.7547,-0.50809,0.98375,-0.61941,1.0575,-0.33623,-0.96251,-0.19204 -2.5571,-2.3127,0.49823,-1.0206,0.41625,1.0056,-1.3,2.062,1.0091,0.56129,0.20043,-2.3393,0.11832,0.69472,-0.20542 0.84417,2.337,1.9675,-1.038,-1.395,-0.77691,-0.12541,-0.20384,-3.0682,-2.3015,0.30978,-1.5303,-0.58412,-0.39713,1.1515 1.1493,0.56425,-0.84104,1.1393,-2.1581,-0.18651,-1.8124,-0.022077,0.48385,-1.5176,0.83909,0.20356,0.82523,0.8668,0.14787 -2.647,-1.0132,-2.4107,-0.73958,-0.54945,0.57685,-1.4837,-2.1251,-1.7003,-0.56191,-0.11194,1.5808,0.025113,-1.1425,-0.2743 2.8173,-1.326,1.0563,1.8956,-1.9955,0.25597,-0.59764,-0.23778,0.74963,-1.0828,-1.3608,-0.41472,-0.35058,-0.3743,0.53116 1.6443,1.202,1.1238,0.55384,-1.8502,-2.0205,0.093676,-0.24045,-0.95681,0.97057,-0.45096,0.041128,-0.2151,1.2775,0.90909 -1.0005,0.85781,1.6631,-0.13308,-2.8864,-1.5717,0.47582,-0.36352,-0.19594,-0.74855,0.37125,0.42094,0.53351,0.41181,1.3757 0.37678,-3.4168,1.5322,1.3345,-1.937,0.66062,0.10235,-0.064216,0.17957,1.4789,0.0342,-1.4274,0.63568,-1.2747,-0.21181 -2.7082,-1.1457,-0.3523,1.0512,-0.50539,-2.607,0.9924,-0.62909,0.16123,0.94107,1.1323,-0.29395,0.19619,0.32277,-0.83926 -0.39281,-0.019864,1.3402,-1.6616,-2.2733,0.47806,1.8483,0.205,-2.0536,-1.8303,-0.1267,-2.7321,-1.6477,-1.4403,0.86933 -0.38713,-1.7749,3.4539,0.87473,-1.8389,-0.47351,-0.31621,0.32951,0.095259,0.28451,1.634,0.25867,0.10414,-0.43987,-0.42167 -2.8522,-1.3856,-0.16251,-0.08342,-1.7864,-1.4032,-0.29189,-0.17353,0.35901,-0.12278,1.829,0.17917,-0.34221,-0.64525,-1.1051 3.3396,-2.8957,-2.5649,1.3927,-0.30642,1.045,0.79999,0.81135,0.72418,-0.88314,0.88052,0.039835,0.34591,0.47731,-0.5938 -2.2336,-1.7178,-0.96515,0.89626,1.9949,-1.1498,0.87309,-0.51835,-1.1364,0.44492,1.39,-0.48872,-0.98363,-0.0044161,-0.9539 -2.215,-1.9673,0.91205,1.0187,-1.3373,-0.080817,-0.54455,0.092831,1.0954,0.63238,1.7705,-0.75179,-0.69785,-0.82899,-0.74756 5.1674,-2.318,-0.62424,-1.598,-1.4113,-0.8596,-0.50487,1.4005,0.81816,-1.4907,0.13391,0.12546,-1.0606,0.69271,-1.8263 1.9564,0.77117,-2.8387,0.12152,-0.69657,0.17418,0.14759,0.28173,1.8755,1.095,-0.38161,-1.1944,0.11417,-0.50065,0.036205 1.6549,-3.1164,0.304,1.2487,-0.74927,-0.10082,2.3298,-2.2795,-1.5137,-1.6711,-0.8598,-0.75941,0.36936,-1.4105,-0.2566 -2.0874,-1.2841,1.0248,-1.46,-2.1996,-0.49282,-0.23408,-2.2723,-0.22627,0.12367,0.93041,-0.57745,0.4823,0.20403,-0.19667 4.7722,-3.2635,0.53824,-0.053368,0.7474,0.7424,-0.14634,-0.55982,-1.052,0.58814,2.5141,0.52856,0.53498,-0.39522,0.45302 -3.7022,-0.54065,-2.7357,-0.91152,0.14532,-0.99583,-0.44842,-0.7429,-1.0645,-0.86201,0.30093,0.69479,0.28366,0.13148,-0.85571 -0.78512,0.4159,-2.5446,2.529,0.60138,0.62967,1.2106,1.2531,-0.64257,0.073387,0.0036532,-0.53842,-0.68316,-0.20482,-0.2589 -1.8325,-2.5768,0.60232,1.8436,-0.018472,-1.3675,0.096849,-0.2362,0.19473,-0.32547,2.0589,-0.41733,-1.2307,-0.86156,-1.3106 4.433,-3.3097,-0.79916,-1.0392,-0.84624,-0.60855,1.3363,1.6505,1.2386,-0.20464,0.213,1.4032,-0.54805,0.013465,-0.64294 -1.8452,-2.078,1.1927,-0.34614,-2.2009,-0.4435,-0.86657,-0.040391,0.35206,0.16036,1.8829,-0.65202,0.21748,0.51265,-0.28685 -1.964,-2.225,-0.96285,0.11624,1.1914,-2.378,-0.17512,-0.52066,0.25052,1.3779,-0.83709,0.33671,0.82958,-0.29684,-0.36326 -1.9564,0.8745,0.30482,0.36144,-1.0112,0.43546,-0.92031,2.046,0.72182,-0.31333,1.6016,0.20117,-1.2258,0.26487,-0.56057 1.0474,-2.669,1.2139,-0.19916,-2.8863,0.43426,0.24804,1.0859,0.50805,1.5325,-1.4619,-1.8522,-1.2626,-0.2732,0.14826 -0.30967,-3.5375,1.003,-1.5594,-1.3634,0.56697,-2.0196,-0.78242,-0.75464,2.6232,-0.75387,0.10152,-0.34225,0.18112,-0.26077 0.95121,-0.80935,-1.402,2.0067,1.6613,0.5892,-0.3858,0.42901,-0.054154,-2.5566,1.8358,-0.31897,-1.2697,-0.031841,-0.37415 -2.4872,-1.1652,0.83533,-2.3542,-1.6778,1.4639,-1.6253,0.073599,-1.8444,1.1471,0.52332,-1.6426,0.58542,0.52813,-0.060812 -2.5258,0.44591,-3.7276,-0.36079,1.3233,-2.1645,0.27965,0.52725,-0.66393,0.57678,-2.0323,-0.1593,-0.69628,1.0282,0.54124 4.3212,-1.4243,-0.57507,-3.0333,0.27493,-2.2897,1.1616,2.3071,0.49697,-1.1917,0.65521,1.0562,0.49352,-0.095406,-0.36661 -0.81051,-1.767,-1.068,-1.7879,-1.8624,0.66662,-2.4317,-0.27192,-1.7198,1.2079,-1.3412,-0.36066,-0.3979,0.87617,2.1798 -0.91612,-1.1971,0.71592,-1.9788,-2.9684,1.5823,-1.0195,-0.16042,-0.64073,0.77041,-0.2523,-1.9481,0.72911,-0.58187,0.67857 -1.6342,-2.6057,1.1742,-0.29217,-0.89471,0.60155,-1.8194,0.78953,0.15315,2.2026,0.94036,-0.68092,-0.17775,0.37287,-0.41649 4.9796,-0.62926,0.036404,-3.0168,-0.50333,-2.5261,0.98552,-0.23431,0.23693,-0.070993,1.0482,0.26744,0.51232,0.97426,0.47215 0.80356,-2.9987,0.88968,-2.4355,-2.2458,0.19422,-0.68489,0.82971,-1.5277,1.9803,-1.8273,-1.4275,-0.95622,0.67145,-0.014605 3.0305,-0.027516,-1.9309,-1.6499,-0.22662,-2.0451,1.7688,1.3311,1.9003,0.22822,0.52727,0.73171,0.46115,0.73079,0.078976 -2.5113,-1.8399,-1.6559,-0.32099,-0.99661,-0.023544,-1.8696,-0.54177,0.1614,-0.16304,0.86584,0.75863,-0.59633,-0.13803,-0.30955 -1.3265,0.35114,0.0020783,1.4772,-0.79295,1.2784,-0.85924,1.7823,1.1009,0.19445,2.0139,-0.072503,-1.1427,0.87092,-0.079951 1.7877,1.0527,1.5784,1.6761,-0.68237,-2.3885,-0.2244,0.044145,-0.32659,0.099385,-0.081183,-0.029308,0.35023,1.7981,0.58974 -2.4882,-2.5691,0.076891,-1.5813,-1.0323,-0.056879,-2.7353,-1.0201,-1.3782,1.763,0.37376,0.3112,-0.55151,-0.31425,-0.056136 3.2635,2.0652,0.95439,-1.2905,-0.30785,-2.908,-0.85174,-0.47701,-0.50065,0.018505,0.052198,-0.97406,0.42332,0.91873,0.19925 1.874,0.88127,-0.87918,-0.73317,-2.3217,0.10502,-1.0849,0.91206,0.12155,-3.263,-0.66724,-0.12824,-0.14253,-1.1974,-1.5672 -1.7204,-1.6096,-2.7469,0.045106,0.31791,-0.95362,-1.5473,0.60466,-0.44868,-0.33101,-0.49517,1.3561,-1.7994,0.44388,0.17041 -0.13315,-2.7675,-0.44726,-0.84644,-2.0295,-0.32439,-1.7874,-1.387,0.12871,2.0304,-1.7183,-0.31386,-0.99964,-0.8157,0.67341 0.085069,1.5729,0.16751,2.2327,2.6887,-2.0659,0.29746,1.8377,-0.59744,-0.38905,0.40265,0.17857,-0.52322,1.7139,-1.0583 0.69163,0.97757,-1.7947,0.87035,0.10906,0.70241,-1.2658,0.022686,-0.67957,1.1914,3.2283,-0.64996,-0.011174,0.76401,-0.059336 1.4473,2.204,0.84359,-0.15491,-2.1591,-1.5938,-0.41836,-0.61903,-0.0045975,-1.0508,-1.4606,-0.16826,0.51196,0.89841,0.037078 -1.649,-0.21768,-3.689,0.19531,0.32379,0.57131,-0.95748,-0.59801,-0.70194,-0.63485,-0.66595,2.5225,-0.68267,-1.145,0.0040325 -1.8236,0.61297,-1.0701,0.81045,-2.2314,-0.5777,1.166,-0.62186,-0.0022995,0.94487,0.76676,0.26673,1.1744,0.26641,-0.084289 -1.6348,-1.3474,-0.11185,2.5337,0.41668,-2.5922,1.8805,-0.27223,-0.64751,0.54364,0.43688,-0.88691,0.28877,0.81392,0.13759 -0.22907,1.2108,0.81762,0.83616,-1.6943,-1.9351,0.40393,0.3837,0.27079,0.8488,-0.66563,-0.16885,1.3348,1.3296,0.62858 -1.4124,-0.60222,-2.2389,1.0365,-0.016886,-1.9081,0.50489,0.41258,-0.085174,1.9442,-0.50867,-0.81291,0.55274,1.5799,-0.04935 2.1332,2.1044,0.74931,-1.5431,-0.64587,-2.5499,0.093753,-0.47243,-0.077733,-0.54662,-1.3201,-1.0259,-1.0874,-0.011559,0.24546 2.9252,0.52563,1.0954,-0.53396,-2.2223,-2.3306,-0.19361,0.51773,0.89007,-1.6281,-1.1936,0.059393,-0.48545,0.46721,-0.67592 5.6917,-3.5223,0.5695,1.0872,0.029546,1.5165,-0.43262,1.42,-3.7166,0.7296,-0.61811,-0.48691,0.72413,0.80542,0.69616 -0.51864,-1.6982,-1.8604,1.793,-0.8628,-1.7128,0.76037,0.64799,0.44272,0.54252,0.8363,-0.45794,-0.63167,0.6555,-0.90875 0.19742,-0.75451,-0.89246,3.7005,-0.26422,-1.0605,0.48084,-0.28221,-0.18017,-1.8471,0.82016,-0.55309,-0.50686,0.82306,0.2234 1.3666,1.7341,-0.01784,-0.086377,-0.96363,1.2881,-1.3717,-1.0053,-0.35971,-1.9327,0.76873,0.34926,0.9976,-0.53825,-0.70428 0.3511,0.37424,0.795,2.1851,-2.1299,-1.7866,0.49142,-0.28371,0.9332,0.16307,-0.69232,0.55677,1.111,0.087964,0.27005 -1.9476,-1.7477,-1.0697,2.1843,-1.0908,-1.6106,1.0336,-0.51875,0.25893,-0.52753,1.0925,-0.73268,-1.4937,-0.015021,-0.48769 3.3227,-1.7982,1.0234,1.6432,-1.0108,1.8418,-1.6035,-0.96816,-2.3543,-0.86552,-1.1272,-0.91374,-0.23504,-0.57256,1.1037 1.4752,-1.8211,-0.29238,-1.595,0.2533,-0.036058,-1.318,2.4875,0.46317,2.0464,2.1817,1.0821,1.0529,-0.13353,0.96759 -1.2976,-0.11842,-3.5634,1.0369,0.047666,-0.58279,0.78892,-0.25363,-1.0155,0.39142,-1.3516,-0.72108,-0.17229,1.176,0.15448 -1.6335,-0.043154,-1.004,2.0943,-0.34254,-1.888,1.457,0.9882,0.19738,0.50229,0.34324,-0.24599,-0.30307,1.3222,-0.59598 2.4991,-1.1408,0.08248,2.4084,-0.046928,1.9285,-2.4453,-0.53468,-0.92581,-0.023069,0.54804,-0.91925,0.61773,0.058855,0.49406 1.711,0.54557,-2.0261,1.2562,-0.16173,-0.4818,-0.99522,-1.7321,-0.15542,-0.026235,2.1326,-0.91647,-0.60975,0.25151,0.82285 -1.5857,-0.50643,-2.4512,1.9743,-0.40455,-1.6142,1.2082,-0.32663,0.3704,0.9733,-0.060536,-0.60542,-0.1479,0.9997,-0.59339 -1.6231,-0.34078,-3.117,1.9813,-0.31852,-0.71705,1.0988,-0.079834,-0.10471,0.97938,-0.47768,-1.1295,-0.58347,0.93755,-0.35032 3.4454,-2.3246,2.5799,0.41814,-2.1422,0.58608,-0.67685,1.1756,-0.39177,-0.14868,-1.0919,-0.84567,-0.55483,-0.17918,0.036187 -0.095846,-3.4271,-0.78948,0.85835,0.63376,2.477,-0.6878,-0.22245,-0.16451,0.43324,-0.62702,-0.60403,1.1727,-1.111,-0.34801 -1.7029,1.2688,-1.0103,0.70355,-1.7711,-0.41954,1.1881,-0.52031,-0.77478,1.4494,0.14908,0.010242,-0.54014,0.86454,0.43874 0.23211,-2.1328,3.1175,-1.7013,-2.9142,0.67368,-0.28034,0.80921,-1.2652,0.51301,-0.43157,-1.0991,-0.69363,-0.21018,-0.20441 -0.12687,-3.7358,1.09,1.5942,0.1172,1.2981,-0.99294,2.5898,-0.47143,0.65416,0.39116,-1.5994,0.51574,-0.27069,-0.21008 1.5693,0.21765,2.322,0.095079,-1.8528,1.5877,-2.1744,1.2903,0.76292,0.60668,-0.2686,1.0406,0.3893,-0.22389,0.72966 -3.2818,-1.4184,0.65109,0.0099208,-0.47706,-2.2914,0.63024,0.34447,0.21463,-0.86224,1.0567,-0.69111,-0.67237,-0.63411,-0.88855 0.56506,2.1081,0.45158,0.47339,-2.1454,-0.9678,-0.98126,-0.68016,0.21235,-0.3336,-0.66478,1.093,1.3343,0.38245,-0.38103 2.2662,-0.79659,-3.2143,0.68862,1.2576,0.13509,2.8507,0.9261,1.3576,0.26867,0.31965,1.6338,-0.17749,0.3344,0.1358 1.2835,1.0218,-0.51512,2.2571,3.0258,-0.61684,-0.14104,1.3169,-0.20597,-0.29907,-0.87341,-0.22931,1.8391,0.46236,-1.8013 -0.6509,-2.4065,2.0792,-1.5734,-2.36,1.643,-0.81654,-0.034903,-1.624,0.62257,0.25885,-0.86028,-0.37142,-0.15586,-0.2871 -0.04121,0.46285,1.9357,1.5629,-1.391,0.0001783,-1.2944,0.4145,0.4132,0.87404,0.8718,1.1754,-0.50118,-0.4376,-0.0016808 2.9186,0.88078,0.53987,-2.5789,0.041752,-2.2497,0.97564,2.6437,-0.95186,-2.4804,-0.96192,0.049145,0.19662,1.0612,-1.5441 0.64716,2.4122,-0.99595,-0.26479,-2.6468,0.29635,-0.65865,0.046503,-1.1564,-1.7823,-0.74273,-1.0026,-0.28332,-0.88426,0.70842 0.18709,-1.9933,3.5039,-0.52886,-2.3668,-0.52478,-0.039806,-0.45333,-1.1404,-0.30365,0.6625,0.0096921,-0.55911,-0.34125,-0.86594 -1.1414,-2.2783,2.8046,1.3973,-0.93113,-1.5658,-0.48988,1.558,-0.82459,-1.2828,1.217,0.41888,-0.46201,-0.83051,-1.706 -1.2372,-3.7394,-0.67586,1.5037,1.9727,-0.1849,-1.3862,-0.99255,-0.82,0.17364,0.19728,0.29394,-0.40212,-1.6478,-0.92648 2.682,1.2511,-2.1679,-0.61746,0.36844,-1.3703,0.57622,-0.030736,1.7366,0.06276,-0.10943,-0.92966,-0.3394,0.48673,-0.67929 -1.6992,-1.3297,2.6349,-0.52019,-2.4938,-0.90736,0.28163,-0.86084,-0.6123,-0.75646,1.1195,-0.074483,0.33834,-0.37304,-0.1952 -0.17292,-1.4951,2.9997,0.70233,-2.163,0.010873,-1.0657,1.2538,-0.86938,-0.95245,2.01,-0.12734,-0.14395,-0.38236,-0.6004 -0.32936,0.96498,-0.27074,3.3889,1.4633,-0.19552,1.0832,1.065,-1.4012,1.2327,0.10614,0.34491,0.056308,0.44052,0.27311 -1.0155,-3.5425,2.3533,-0.48909,-1.7552,-0.43911,-1.1811,-0.2859,-1.0271,0.93369,0.83802,-0.50391,-0.091042,-1.0007,-1.1666 -2.04,0.37899,1.9628,0.096385,-1.1038,-1.6838,1.4849,-0.51728,-2.6244,-1.1863,0.94155,-0.069071,1.0289,-0.25225,-0.58841 -1.4565,-3.2213,1.224,-0.83294,-2.2105,0.92406,-1.3918,1.2938,-0.41731,0.39492,0.25898,-1.8307,0.84984,-0.14999,-0.58319 3.9994,-2.7851,-1.6987,0.61365,-0.35682,0.39584,0.71912,-1.2054,0.49118,-2.0165,0.23533,-0.085017,0.22784,-1.2246,-0.07366 4.3268,-2.4872,-1.2477,0.60355,-0.079442,0.96053,0.53564,0.45376,-0.69475,1.0775,-0.5372,-2.2373,-0.33129,1.0292,1.5694 -0.13318,-1.5997,3.8706,0.85471,-1.2515,0.4882,-1.5637,1.6213,-0.66506,-0.3629,1.4605,0.038307,-0.8034,-0.27456,-0.029833 4.5553,-1.5407,1.7948,1.1626,0.97039,0.86698,-1.0255,-1.0021,-0.96509,-0.78161,0.38127,0.40923,0.20421,-0.23252,-1.0541 -0.22133,-4.3321,0.77157,-1.0668,-1.8151,-0.28922,-2.2132,-0.80688,-0.48807,1.6013,-1.6872,-0.63323,-0.30267,-0.5678,0.33483 -1.8026,-3.133,0.80878,-1.8354,-0.58497,0.59843,-3.1973,1.2269,-1.0156,1.5587,-0.44025,-0.55864,0.59309,0.37741,0.48263 5.0164,-2.5695,2.2032,-0.41707,-0.39764,-0.70089,-1.9362,1.4243,-2.2999,0.14558,0.76001,0.027424,0.72237,0.21002,-0.51752 -1.1879,-2.577,0.35772,-1.8314,0.37965,0.7744,-3.0206,1.1055,-1.732,1.8305,-0.56567,0.85585,0.067626,0.72968,1.2328 -2.2721,-4.6445,0.4496,0.78234,0.97634,-0.60021,-2.3335,-0.52598,-0.99003,0.84256,0.40463,-0.077539,-1.3971,-1.1855,-0.38173 -1.1264,-4.0944,-1.3978,0.79745,1.5008,0.033451,-2.5808,2.1875,-0.41377,0.55278,-1.0831,-0.42553,-1.5614,-0.14672,1.2188 -2.3294,-2.8315,-1.4758,-0.43212,0.52304,-0.057326,-3.2118,1.2132,0.53524,0.60779,-0.81124,0.45149,-1.7329,-0.30576,0.89958 -0.21881,2.8134,0.043465,1.2529,-1.6664,-0.97366,-1.0867,-0.038983,-0.60786,0.33263,0.4051,1.1924,0.30761,-0.11281,-0.10914 5.0937,-2.3298,-1.0056,0.5491,-0.25764,0.7922,0.44337,-0.96373,-0.70441,-2.3154,-0.023067,-0.62429,0.076175,0.44617,-0.3335 1.1619,1.3435,0.021508,1.2991,2.1526,-2.1633,-1.0186,1.0591,0.39467,-0.5632,1.7099,-0.085991,0.50304,1.6221,-1.5878 1.8805,-4.0824,1.5939,-0.36605,-1.3066,2.2053,0.34143,-0.51681,-2.1035,0.19979,-0.087459,-2.0741,0.8994,-1.3431,0.28573 -1.1297,0.7566,-0.76183,1.3713,-0.73032,-0.89291,0.85618,1.1894,0.4107,-0.95519,0.19722,0.085142,0.02534,-0.14317,-0.28661 3.6538,-4.0813,-2.2661,0.85157,0.27478,0.090031,3.2115,1.168,0.21354,-1.2641,0.17637,2.2402,0.089183,1.2249,-0.12791 -1.3667,-1.6387,-1.563,0.53042,0.28427,-0.85075,-2.4544,1.0356,0.15135,0.29698,0.06971,1.5979,-0.59826,-1.6477,1.5192 1.4848,2.4503,-1.2738,0.16009,-0.47478,-2.1091,-0.69614,-1.0711,0.60211,-0.001553,-0.38561,-1.1368,0.08336,1.0023,0.11562 2.5507,0.69614,-1.9543,-1.0675,0.90801,-2.2032,0.50414,-1.1078,-0.60655,-0.062231,1.2675,-0.50718,0.24486,0.22527,2.9089 -0.089874,-2.2877,-0.54764,0.068254,-0.50004,0.36134,-1.9475,1.1822,-0.42536,2.1923,-0.217,0.68226,1.2427,0.84671,1.1273 1.9224,-1.9869,1.6223,2.6899,-1.6334,1.2246,0.73657,-1.273,-1.0481,-1.7812,-0.58728,-0.73776,0.16602,-1.4063,1.1075 4.524,-3.9973,-2.4404,-0.45148,-0.58559,1.732,1.7986,1.2523,-0.13212,-0.74562,0.33398,-0.18192,-0.2876,-0.28964,1.2529 -2.2341,-3.8419,0.12072,-0.59089,1.0182,0.012746,-2.1048,2.409,0.346,1.2612,-0.99777,-1.8028,-0.9787,0.44578,0.10146 2.5736,-1.7178,-1.5175,1.6452,-0.36274,1.1762,-0.030422,-1.032,-0.53437,-0.1729,1.7106,-0.3097,1.3815,0.24703,1.7301 1.9068,0.83341,2.0616,1.2772,4.041,-1.9712,-0.13286,1.5942,-2.0085,0.28402,0.99968,0.90059,0.46746,0.22742,-1.3808 3.2996,-0.62183,-0.40955,-0.39036,-1.4329,-2.0615,-1.1605,-1.2919,1.0456,-0.062402,0.19129,-0.57808,-0.035991,-0.85612,-0.12415 -1.4951,-2.9371,-0.49673,1.0615,2.5849,-2.1463,1.4534,-0.22363,0.13449,0.074451,-0.4534,-0.64645,0.99883,0.51012,-0.80029 1.4,0.060544,0.98096,2.1117,-1.6168,-1.3885,-1.7069,-0.90324,-0.06718,-0.25606,0.17622,0.69079,0.39955,-0.67889,-1.3671 0.25451,-2.0622,-0.59294,1.6529,1.4452,-0.83703,0.98537,-1.0957,-0.959,1.5066,0.11126,1.3655,1.217,-1.1139,-1.3602 -0.24383,-3.0186,1.1006,-1.5426,-0.41458,-0.33261,-0.484,-2.0259,-0.61679,1.3306,0.043156,1.0021,-0.76597,-0.026868,-1.2506 -1.1039,-1.7412,-1.818,0.018995,3.0038,-2.0525,0.44333,1.2025,-0.42315,1.709,-2.3309,0.72448,1.8055,0.94831,-0.079446 3.4917,-1.2971,-1.9192,-0.30552,-1.5181,0.46779,0.24331,-0.43867,1.4363,0.40896,0.80942,-0.53634,0.14817,-0.42344,0.88032 1.0796,0.73133,-0.90772,2.3425,-1.7374,0.37161,0.69579,-1.2373,0.466,-0.44076,-0.97293,-0.10975,-0.0056633,-0.14517,1.1339 -1.2542,-2.0656,-0.89268,0.21239,1.4453,-1.9158,0.74219,0.64926,0.11392,1.6009,-0.75793,0.48789,0.8625,-0.51931,-1.3714 2.0208,-1.5438,-0.35891,1.7645,-1.8886,0.89402,1.1613,0.13355,0.61955,-3.2932,-0.5984,0.010753,-0.64523,-0.76403,-0.21128 -1.0086,-1.5119,-1.8515,1.6673,1.4077,-1.8896,1.2501,0.83835,-0.56769,1.1332,-0.67016,-0.96903,0.298,-0.90822,-0.2823 -0.78081,-0.44831,-1.4105,-1.2752,0.28795,-0.89265,-1.0209,0.097553,-1.685,0.6072,-0.2506,2.6475,1.5875,-0.57078,0.56925 -0.0064059,-4.0524,-0.44465,0.95309,0.283,-0.7002,0.96699,0.6881,-1.3378,-0.37741,-0.40578,-1.3357,-0.15779,-1.458,-1.0063 0.11907,-1.5048,-0.67995,-2.5221,-1.0227,-1.9353,-0.064488,-1.8863,-2.8374,1.6388,-1.2699,1.9196,0.027,0.63617,-0.53645 1.0054,3.2537,-0.074787,-0.98103,-1.4724,-1.6932,0.063156,-0.71308,-0.19347,-1.3274,-1.3693,-0.56771,0.63949,0.69553,0.64309 1.9451,1.1949,-0.17631,1.1894,1.9495,-2.7526,-0.64559,1.7681,-0.16388,-0.11146,-0.30906,-1.1366,1.837,0.76433,-1.421 0.15459,-3.4995,0.81035,-1.1768,0.90365,-0.20477,-1.5149,-0.80466,-0.61113,1.7374,-0.56953,1.7676,-0.33997,-0.791,-0.81089 2.5317,2.0892,-2.1802,-1.5555,-0.17319,-1.3167,0.10207,0.37876,1.2978,0.86549,-0.54474,-1.4183,0.6904,-0.90593,-0.19849 -2.3553,-1.3288,-1.8297,-0.85346,0.58377,-2.9575,0.12422,0.94923,-0.74565,1.0191,-0.98607,-0.6111,0.81839,1.0131,0.016572 3.0952,-2.1815,-1.7329,0.019758,-1.429,0.50378,0.43685,-0.7736,0.36077,-0.58039,0.71347,0.75662,0.48179,-0.93351,0.74216 -3.5685,-0.68304,-0.36139,-0.40459,-1.1047,-1.4684,0.86403,0.34434,0.59794,-1.5884,1.2788,-0.91502,-0.97409,0.13563,-0.92681 -1.6092,-1.5166,1.4808,-0.3488,-0.30934,-1.8681,1.0879,1.97,0.77187,-1.2982,0.10182,-1.8127,-0.072939,0.39774,-0.21612 -0.75775,-3.3856,-1.1586,0.78162,1.6801,-1.4569,0.35332,0.53543,-0.27182,0.12287,-0.95729,-0.77151,0.10588,-0.7459,-0.38341 0.54957,0.45923,-1.0028,3.3827,0.04818,-0.40471,1.1249,-0.19032,-0.50777,0.75455,-1.0505,-0.79373,1.1723,0.76698,1.0766 4.9593,-3.1723,-2.3855,-0.89158,-0.54146,1.2174,2.1356,1.5408,-0.36507,0.93626,-0.17988,1.0759,-0.49919,0.15098,0.75213 0.3097,0.29304,-0.75134,2.9335,0.14486,-0.62328,2.1056,-0.2108,-0.96778,1.2793,-1.0301,-1.0297,0.9464,0.34391,1.057 0.037769,-0.98164,-0.5423,1.2029,-1.0603,-2.2297,2.5837,-0.32216,-0.031579,1.4602,-1.2572,-0.50253,1.2416,0.58928,-0.61262 2.1779,-1.2903,-2.0672,1.7391,-0.96069,1.5315,1.3904,-0.46427,-0.89536,-2.9579,-0.44191,-0.031574,0.54223,-0.57948,-0.78407 1.1771,-0.43231,-1.4275,2.7399,1.3811,0.070177,-0.60269,0.50293,-0.051755,-1.4884,1.3322,0.055905,-0.92917,1.1151,-0.92945 -0.79345,-0.18819,-1.7643,2.7383,-0.34072,-0.27748,2.0087,-0.4619,-1.0391,0.37537,0.17929,-0.58231,1.6502,0.050517,0.37812 -0.3242,0.79377,0.12429,2.2581,-1.5903,-1.8652,1.4235,0.032121,0.56352,1.0588,-1.0912,-0.065688,1.0353,0.78835,0.69319 -3.7346,-2.0054,-0.82329,-1.7834,1.488,-0.021524,-1.6441,-0.733,-0.87171,-1.2706,0.54211,0.5952,-1.1822,-0.31905,-0.79119 -2.0293,-0.30497,1.045,-0.17787,-2.6553,0.68344,-0.39139,0.359,0.535,-0.91017,2.0711,-0.20308,0.49142,-0.53994,0.079063 -1.6572,0.9194,-0.78412,1.1506,0.94558,-0.3763,0.58594,3.1319,-0.067164,0.69566,-0.84348,-0.84339,-1.836,-0.0083359,-0.0069676 3.7415,-2.31,-0.6678,1.7731,-0.27918,0.47162,0.66099,-1.5504,-1.0022,-2.0703,-0.27332,-0.86375,0.63098,-0.11456,0.88057 -1.676,0.12883,-2.4208,0.088471,-1.0978,-0.14725,0.58343,0.42487,0.083523,2.2642,-0.75602,-0.82606,0.84965,1.2153,-0.0017429 -3.8663,-1.2447,-2.5279,-1.6228,-0.24604,-1.3427,-0.56512,0.042867,-1.1443,-1.8538,-0.23713,-0.43558,-1.0523,-1.0224,-0.60378 -1.5332,-0.70645,-1.1177,2.118,-0.29459,-2.0388,1.4635,-0.81102,-0.32543,1.5141,0.34598,-0.60935,0.88975,0.53701,-0.3232 -0.9343,2.8251,-1.8246,-0.23044,0.060448,0.35675,-1.7135,1.3728,-0.57323,0.36334,1.2639,0.046352,-0.17403,0.22305,-2.2321 -0.34659,-0.42228,-0.67721,1.3645,-1.7337,-1.4629,1.8512,-0.22241,0.50958,1.8282,-0.59501,-0.43852,1.2269,0.49388,-0.1686 4.7565,-1.9851,0.94271,0.066026,-0.76579,-1.9763,-0.71159,-0.25886,-1.4821,-0.80311,1.0138,-0.12958,0.53086,-0.3825,0.0023516 -0.70338,-0.52726,-3.0575,1.9942,-0.20367,0.1027,0.38265,0.1864,0.16118,1.2414,-0.33507,-0.88638,0.81591,0.85039,0.092138 0.60687,3.307,0.74492,-0.28309,-0.57173,-1.513,-1.0869,0.80799,-1.5803,0.80634,-0.60533,-0.32251,0.45609,1.2858,0.31775 -2.6166,-3.3568,-0.1392,-2.0195,0.74761,-0.97497,-3.2087,-0.022512,-1.2623,0.78578,-0.70272,1.241,-0.59728,-1.0594,0.7288 2.528,-1.5121,-4.0154,1.3102,-1.3618,1.8463,1.8564,1.581,0.17785,0.78288,-0.53408,0.4944,0.023835,0.1949,-0.52956 -1.4377,-2.2775,-1.134,-3.2754,-1.2516,-0.46034,-0.16068,-1.4992,-2.6382,-0.54317,-1.5788,-0.26106,-1.6292,-0.80871,0.383 0.6191,1.6006,-1.1148,2.882,1.4545,-0.11039,-1.2001,-0.082458,-0.86933,-0.90827,1.4326,-0.60823,0.14923,-0.24039,-1.2548 -0.75365,-3.7549,1.8535,-2.0616,0.58019,-1.0097,-0.85279,-0.59435,-2.7406,2.1197,0.08195,1.0233,-0.68245,-0.63946,-0.81615 -1.1788,-1.2783,-1.0444,0.54136,-1.512,0.21742,-0.64704,-1.7866,0.43941,1.5208,0.82465,0.32813,0.25474,-0.44742,-0.76292 3.2083,-1.7113,2.4898,-0.80797,-2.7051,-0.38339,-0.17327,2.4925,-0.43031,-0.9452,-1.8723,1.0503,-0.82094,-0.35213,-1.1501 2.4026,0.49749,-3.154,0.53222,1.8909,0.55115,2.3084,0.24097,-0.12597,-0.56477,-0.4198,-1.2342,0.51853,-0.53732,-0.35624 0.22867,-4.6528,2.7916,-0.3143,-0.97682,0.41351,0.45467,0.19842,-1.3918,2.0943,-0.827,0.38681,0.18019,-1.0354,-0.99806 1.2304,0.12415,-1.3346,1.9119,0.60842,-0.67646,-0.69189,-1.9195,-0.113,-1.0245,2.3294,-0.44182,-0.33592,0.413,0.60782 -0.68387,-3.6291,2.4749,-0.10111,-0.39755,0.10329,-0.43596,1.4488,-0.055457,1.9699,-0.18575,-0.98525,0.25492,-0.20349,-0.13516 -1.3269,-3.1222,2.1233,-2.1818,-1.9608,0.58431,-0.97644,1.2577,-1.2001,1.1077,0.13102,-0.74642,0.89436,-0.30983,-0.54918 2.3065,-0.29376,-2.3708,1.0595,0.22559,0.38893,1.321,-0.31552,0.2807,1.5203,0.71151,0.31572,1.1701,-0.013226,1.4118 -1.858,-1.7674,1.5909,-1.0891,-2.2254,0.099856,-0.85667,0.15019,-0.095476,1.2804,0.49312,-0.69207,0.61131,-1.3932,-0.14166 1.8415,2.296,-0.3563,-1.7529,0.93422,-1.1191,-0.6434,1.1984,-0.48827,1.295,0.15823,-0.7215,2.1108,0.12108,-0.33215 -0.62722,0.5148,-1.8634,2.3241,-0.36792,0.72443,1.613,1.2737,-0.64449,-1.4816,-0.47662,-1.1372,0.45005,-0.29796,0.48761 0.40562,-3.4162,-0.31848,0.063606,0.44626,-1.9021,-1.6465,1.2506,-1.2373,1.0692,-0.48157,1.9846,0.70637,-1.3268,0.27076 -1.0797,-3.9531,0.96178,0.46558,-0.01665,-0.70075,-0.81657,2.1694,-0.73872,1.4057,0.26427,-1.099,0.13049,0.31837,-0.15567 -1.2868,-2.5548,0.78712,-3.1521,-1.585,0.43784,-1.0381,-0.82975,-1.966,1.7109,-0.81925,-0.045391,-0.55178,-0.38854,0.13851 -0.88163,3.5714,1.1422,-0.26212,-0.31847,0.26749,-0.10101,1.2753,-2.689,0.13722,-0.42768,-0.048763,0.39648,0.77588,0.61576 0.055781,-4.0146,0.78767,-0.64375,-1.508,-0.86945,-0.72368,0.66468,-0.8661,1.7252,-1.0227,0.31107,0.592,-0.38156,-0.24513 -0.31382,-2.1265,2.0501,1.8278,-0.18687,-1.0021,1.5856,-2.2223,-1.8916,-0.15704,0.35371,-0.074177,0.058426,-0.65412,0.26861 0.83073,0.63489,0.538,2.4441,1.1529,-1.3273,-2.0132,0.54097,0.24685,-0.50704,1.9241,-0.213,-1.2017,0.45278,-0.82492 -0.60874,-4.5364,1.3021,-0.84429,-1.386,-0.47632,-1.3774,-0.44809,-0.81411,1.9633,-0.22776,-0.12167,0.43991,-0.53221,-0.60576 0.15548,-5.4315,1.2081,0.6148,1.593,-0.26546,-1.4658,-0.068477,-2.6938,1.4492,0.29461,1.4672,-0.0056483,-1.3379,-0.84397 -0.56355,-5.7166,0.47626,-0.11262,1.8082,-0.12213,-2.6302,2.149,-2.2888,1.6072,-0.84618,0.95296,0.12073,0.019609,0.061664 -0.46799,-4.2064,2.0984,1.1646,0.55632,0.68606,-1.2596,1.253,-1.398,1.6924,0.44975,-0.16214,0.13459,0.010689,-1.3807 1.9266,-1.2141,1.636,2.6527,-1.6734,0.23591,-1.4741,-0.28741,0.62473,-0.52014,-0.86405,0.34879,-0.14787,-0.91392,0.36405 -1.2456,-2.4742,-0.72763,-0.59274,-0.26116,-1.5757,-2.9409,-0.49674,-0.57309,0.34845,0.15851,2.4552,0.024489,-1.2243,0.97157 -0.12793,-5.6195,1.6507,0.19585,1.5716,-0.47446,-1.62,0.038473,-2.876,1.1215,0.48285,1.2634,-0.39404,-0.91066,-0.94638 4.7119,-1.0142,-0.78369,-1.0123,-1.1372,-0.23465,-0.91952,-0.41559,1.0803,-0.10094,0.0014087,-0.85902,-1.0924,-0.58101,-0.3009 -0.42124,-4.4099,0.29768,0.45981,2.4802,-1.9571,-0.93588,-0.68504,-2.3698,0.48395,-0.44165,2.1303,0.36708,-1.9378,-0.95475 1.2582,-4.2716,2.6302,-0.59293,-0.74114,0.6257,-0.48167,-0.36846,-1.6739,1.0815,-0.8841,0.77992,-0.54061,-0.69687,-2.255 -0.75797,-4.425,0.74265,-1.6595,1.228,-0.77666,-2.8271,0.1563,-1.5571,1.293,-1.0677,2.2964,-0.48675,-1.2579,0.1088 0.72231,-4.0189,-0.37314,0.20735,-0.33232,-0.14269,-1.7927,-0.0023223,-0.75612,1.7825,-1.4966,2.0303,0.38621,-1.2681,0.45956 2.0693,1.8111,-1.4888,-1.1813,-1.5116,-0.22342,-0.86111,-1.2722,0.5221,-0.18729,0.48914,-0.81881,1.3437,0.21663,-0.16773 -0.75075,-3.5617,0.60839,-1.465,-1.2818,0.066275,-2.0761,-0.27567,-1.5199,1.2517,-0.75488,1.2024,0.59009,-1.151,-0.096575 -2.5564,-1.2066,-1.5432,-0.53316,2.3422,-2.5968,0.83613,0.67668,-0.2457,1.263,-1.6453,-0.66578,0.68336,0.51944,0.27736 0.73694,0.85041,2.3808,-1.5859,-2.5534,1.562,-0.06642,1.0152,-1.433,0.50603,1.2229,-0.52295,1.1148,0.29373,0.97357 -0.56816,-4.493,-0.89029,1.6296,2.8566,0.26142,-1.3743,0.90083,-1.5853,-0.40272,-0.68891,-0.22884,-0.31274,-0.78353,0.57134 0.8187,-2.9372,1.154,1.6212,-0.519,1.7182,-0.74281,1.3879,-0.12455,2.3214,0.24999,-0.57102,1.339,0.2312,-0.59188 -2.1726,-2.3689,-2.0826,1.084,-0.56763,-1.9184,-0.58612,-0.21659,0.95963,0.079195,0.12096,-0.36672,-1.4416,-0.97653,-1.0999 4.5118,-2.3363,0.85957,1.5807,-0.8626,1.6466,-0.92394,1.0026,-0.70585,-0.65069,-1.5295,0.28765,-0.60688,-0.50294,-1.3011 0.34801,-3.4278,1.144,0.18372,-1.563,1.1101,-1.1324,-0.035745,0.085012,1.7932,-0.46104,-1.3333,0.85382,-0.50673,-0.14317 2.4702,1.0623,0.32773,-0.095779,-0.86285,-2.628,-1.2197,-1.8359,0.54535,-0.74747,-0.26222,-1.0591,-0.93629,0.70609,0.39232 -1.2226,1.7737,0.075817,1.677,-1.0368,-1.7376,0.88223,-0.030153,-0.24382,1.3765,-1.0484,0.24669,0.74545,1.1674,0.82907 0.62483,-3.2462,2.1828,1.7878,-1.2805,0.76466,-0.0085324,0.20231,-0.34701,2.0522,0.66863,-0.91409,0.12254,-0.54702,0.08607 -0.20095,-2.9956,0.75887,1.736,-1.0537,-0.3896,0.11378,-1.665,0.30101,1.3713,0.55258,0.019942,0.13959,-1.6706,-1.2433 1.5672,-0.028449,1.7633,1.7889,-2.0439,-1.9176,-0.20461,-0.88117,-0.97319,0.24348,-0.56219,0.30342,-0.95051,0.052896,0.66392 0.30001,-0.22562,2.4401,0.49755,-2.8111,0.50169,-1.9176,1.0033,-0.52355,0.03299,1.4592,0.76073,-0.034591,-0.071591,0.64132 1.1627,-1.367,-1.1134,0.0044635,-0.66065,0.093735,-0.87237,0.87933,0.71136,1.2155,3.2463,1.8525,-0.16196,0.59419,1.0389 -1.2729,-0.54176,0.37138,0.27232,-1.4407,-0.90982,1.6482,-2.3998,-0.70093,0.28406,0.77809,-1.3779,-0.5172,0.96213,0.54604 3.683,-2.5474,2.4765,2.643,0.54505,1.6872,-1.6372,1.2813,-3.1672,0.86727,0.58521,0.031464,0.43009,0.63871,0.38718 -0.9266,-0.14091,-0.28738,1.6536,-0.30312,-1.1545,2.6198,-2.5094,-1.2828,0.97255,-1.2972,-1.1362,1.0553,0.17348,0.84313 0.77501,1.8739,0.50604,1.6432,-1.4792,-1.6573,-0.77579,-0.5628,-0.2423,-0.46365,0.34754,0.69721,0.57917,0.71885,0.13923 -0.32468,-1.8609,3.7212,-0.21776,-1.7634,-0.049178,-0.95328,2.1562,-0.6728,0.68187,0.94426,-0.29053,0.077942,-0.76834,-0.029119 2.9077,-3.3864,-3.0354,0.74857,-0.80187,1.2245,2.327,1.045,0.41062,-1.588,0.33014,2.0066,-0.25181,0.81856,0.21501 2.2104,-2.8071,2.5803,2.904,0.88454,2.3612,-0.59276,2.2462,-2.5684,1.5313,1.0323,0.23782,0.86401,0.64896,-0.078442 -1.596,-2.5757,0.38747,-0.017157,-1.4204,-1.9688,-0.81244,-1.8041,-0.18483,1.2945,0.6854,0.41197,0.21455,-1.109,-0.81411 -2.1718,1.3229,0.25817,0.7214,0.68364,0.42486,-0.96331,2.6516,-0.88051,1.2908,0.70487,0.7257,-1.3578,0.95377,-0.48351 -1.8293,-3.9946,0.61489,-0.48162,-0.63706,-0.63549,-2.5493,0.12951,-0.13283,1.7653,-0.091757,-0.36509,-0.22478,-0.6641,-0.22495 0.89978,-1.9906,1.6213,0.59017,-0.79353,-0.95088,2.6905,-1.6794,-2.4925,0.92495,-1.0927,0.070049,-0.35619,-1.417,-0.31864 -3.4225,-1.3588,0.91411,-1.5179,-1.572,-0.029805,-0.085158,-0.2378,-1.0605,-1.4332,1.6045,-0.80571,0.63836,-0.73538,-0.044166 0.34499,0.09074,-0.57672,1.8821,-1.5216,-0.36668,1.527,-0.55258,0.14092,-0.074238,-1.6659,0.90581,1.0955,-0.52606,-0.31368 3.8994,-3.9054,0.41083,-2.8908,-1.0787,-0.73731,0.70091,2.5381,-3.041,0.48827,1.1457,2.2956,0.54624,-0.48655,0.49212 1.8932,-1.4081,0.46888,1.1718,-1.0004,3.3669,1.3098,0.88314,-0.0080498,1.6202,-0.37042,-0.54165,0.57871,0.18566,-1.0028 2.9678,-2.5992,-1.5329,1.4503,-0.34629,2.1775,0.38861,-0.64338,-1.5538,0.62465,1.2947,0.45529,1.6665,-0.12153,1.3454 0.11336,-2.1517,-1.1024,-1.7416,-2.4897,0.92137,-1.7075,-0.96211,0.0037156,1.2509,-1.7598,0.024915,-0.92784,-0.28301,0.52895 3.0742,0.45098,-1.5928,1.713,-0.46063,-0.51461,0.393,-1.559,0.89405,-1.5897,-1.1541,-1.4725,0.0028587,0.14208,-0.55517 -1.5639,2.7735,-1.3097,0.40925,-0.79418,1.2464,1.4221,0.95991,-1.8615,0.20645,-1.9462,-0.69388,-0.51145,-0.62199,0.77658 1.2637,-1.7363,1.0083,1.4099,-2.714,-0.17623,1.1211,-0.31362,1.1723,-0.81765,-0.90981,-1.0119,-2.0278,-0.92895,0.51798 3.4349,-2.1434,-0.081885,2.1213,-1.3069,1.8843,-0.18418,1.6943,0.20166,-1.2603,-1.8911,-0.43382,-0.8914,-0.86461,-0.96023 0.46901,1.9343,-1.0261,1.1999,3.8928,-1.238,-0.083589,1.2744,-0.65275,1.1039,1.1041,-0.48852,-0.49882,0.94975,-1.1487 2.275,-2.0326,0.54038,1.4394,-1.3224,1.8049,0.27109,0.38721,-0.15448,1.9471,-1.2704,-1.4958,-0.22705,0.27602,0.43289 0.74059,-3.0797,0.71248,0.222,-0.69193,1.166,-1.2763,-1.5841,-0.94211,2.5549,-0.9095,-1.754,-1.3007,0.3629,0.48215 0.30709,0.43645,0.037199,-0.7101,-2.8139,2.5762,-0.41403,0.74519,-0.27372,0.80485,0.51245,-0.86835,1.3989,0.78195,0.79791 -2.1782,-3.1476,-1.5308,0.055991,-0.61351,-1.3913,-1.5443,0.344,0.069711,-0.50336,-0.44599,-0.73462,-1.7977,-1.3883,-0.39513 3.4905,-2.2593,-2.3061,-1.9622,-1.7027,0.10342,0.68668,2.0385,1.1224,0.58568,0.15141,0.99606,-0.10216,-0.73541,-0.085797 0.78931,2.4209,0.17483,-0.27385,0.65837,-2.0282,-1.7497,-0.094318,-0.29533,-0.36601,1.0005,0.6026,0.93468,-0.00049269,-0.30592 -2.4986,2.2593,-0.27241,0.19644,-1.0673,0.14375,1.068,0.74708,-0.91107,-0.84804,0.58142,1.123,-0.48478,0.54032,-0.72939 0.65643,2.4504,-2.606,-0.61929,-1.3581,-0.34621,-0.40256,0.10712,1.1355,0.11147,-0.92574,-0.8969,0.77985,0.094378,-0.17887 -0.34288,-3.4283,-1.9044,1.2215,0.18382,-0.37314,-2.2722,1.3834,0.17441,-0.072632,-0.80449,0.63644,-1.2696,-1.506,1.0529 2.8897,-1.2422,3.2051,-0.23373,-2.2914,0.36316,0.98034,0.44807,0.10566,0.52812,-0.1789,0.40861,-1.1234,0.42392,-0.56981 4.1979,-1.9031,-1.9775,0.10867,0.37987,0.14182,3.1913,-1.2721,-0.12639,-1.7967,0.24096,-0.18557,0.36447,0.1725,1.4094 -1.7595,-0.10506,-0.03589,1.8178,2.2578,-1.1971,1.16,0.84362,-0.32885,1.0147,0.54219,-0.68061,-0.75308,-1.117,0.29097 -1.0775,1.3015,-2.1199,1.3539,-0.51203,1.8091,-0.59038,1.6533,1.2138,-0.69099,-0.72631,-0.23207,-0.84669,0.53638,-0.40842 -1.1694,-2.7368,-1.649,-0.38296,-1.3875,0.16297,-2.4362,1.084,-0.094814,0.48515,-0.47693,0.31055,0.34701,-0.56297,0.54688 2.7979,-2.0632,-2.0075,-2.9016,-2.1046,-0.84271,1.605,3.144,0.49341,-0.050466,0.66342,2.6259,0.1064,-0.077895,0.22705 -1.11,1.3859,-0.82077,2.8621,-0.37522,0.16385,-0.4709,0.84659,0.0083741,0.28767,0.7779,0.58024,-1.8065,0.29511,-0.76021 1.0855,1.8895,-2.9684,-1.8416,-0.037378,0.20626,0.25584,0.77882,0.26932,-0.41865,0.95912,-0.87469,0.82039,-0.16453,0.52596 -0.4668,-2.5462,-2.0447,-0.15018,-0.62107,0.64282,-2.2525,1.9424,0.58386,0.56647,-1.0083,0.57245,-0.13282,-0.18996,1.225 -0.44172,2.8105,-1.1818,-0.0073307,-2.3052,-0.2882,0.18154,-0.044648,-1.0567,0.093296,-1.3226,0.036655,0.51658,-0.30551,1.0324 0.036155,-1.633,-2.6481,1.0263,-1.4831,-0.045078,-1.2522,1.1672,0.20388,0.34792,-0.60947,0.48675,-0.91172,-0.89106,0.3327 4.5667,-2.9566,-1.1084,-0.23183,-0.37112,1.2171,-0.41754,0.93937,0.087707,-0.8817,0.39302,-1.538,-0.050071,-0.28102,0.70978 -0.74428,-2.4776,-2.194,1.0845,-1.2563,0.45583,-1.6837,0.8553,0.60961,0.96132,-0.41659,-0.25656,-0.02513,-0.23936,0.42995 1.9096,0.14108,-3.3319,0.62181,-0.68977,0.56979,1.2215,0.11018,1.7136,0.29038,-0.058532,-0.1426,0.58861,-0.18898,0.41123 3.8551,0.17361,-0.83477,-3.2451,1.1542,-2.8496,1.6719,1.5529,0.74869,-0.13004,0.61602,-0.14715,-0.15805,0.93778,0.88066 2.548,0.14252,0.82255,0.68054,0.41467,-1.9609,-0.87884,-1.9623,-1.1718,-1.6307,0.85252,-1.3686,-0.517,1.3079,1.0797 4.3737,-4.0945,-1.4423,-2.5606,-0.71988,-1.7631,1.603,2.8095,0.12006,-0.74649,1.3746,2.4261,-0.21754,0.087927,-0.59029 -1.5117,-1.0112,1.921,1.3593,-0.95267,-1.1792,0.82932,-1.922,-1.0005,0.55385,1.1787,-0.16676,-1.2583,-0.4442,0.71963 3.693,-0.47912,-1.8439,-2.4716,-0.9849,-1.9332,1.2784,0.080942,2.3228,-0.53219,1.0577,0.0018747,-0.36078,0.67347,0.70085 4.3513,0.45164,-0.088725,-2.4197,0.70337,-3.1671,0.85308,0.21696,0.58269,-0.48136,-0.18314,-0.92568,-0.27181,0.89041,0.27472 2.3437,-1.065,-2.8651,0.75327,-0.73731,-0.041583,1.971,0.91662,1.653,0.42099,0.13216,0.71384,-0.10569,0.65338,0.37954 3.6678,-0.021558,-0.10482,-2.1255,-0.60222,-3.0136,-0.13603,0.96217,1.2963,-2.0132,0.31685,-0.26748,-0.29251,0.81508,-1.3428 3.9278,0.43268,-0.76984,-3.1783,-1.5653,-1.6804,-0.48942,0.65429,0.22207,-2.9741,1.4067,-0.48137,-0.39137,1.0703,0.19352 -1.2477,-1.5538,-2.1763,1.6426,-1.1962,-1.0564,0.56906,0.18479,0.8764,-0.10218,0.84082,-0.61094,-0.67401,-0.35203,-0.6658 2.1087,0.31763,1.2073,0.85229,0.013555,-2.2034,-2.4697,-0.76625,-0.71474,-1.3673,1.7814,0.63578,0.74592,0.058887,-0.93585 3.7063,-0.27315,-0.9993,-2.6827,-0.10236,-2.8551,0.1946,1.2765,1.0144,-1.7176,1.4675,0.55271,0.60083,0.62878,-0.99736 2.1067,-2.1644,-0.86847,1.2313,1.6666,-0.99967,-0.066103,1.1094,0.82009,0.32745,2.5897,0.928,1.2382,-0.43455,-0.38918 3.7147,-0.2228,1.633,-2.1562,-1.6764,-1.5373,-2.3378,0.27453,-0.83418,-1.0382,0.17425,-0.47559,-0.69493,1.0415,0.36695 3.9919,-0.19772,0.52427,-3.0443,-1.4893,-1.9291,-1.2467,0.30465,0.10469,-1.8323,0.39733,-0.56921,-0.12432,-0.3527,-0.7514 1.9544,0.21065,-1.4179,1.3342,2.033,-1.3703,0.19216,0.27891,1.3053,-0.92993,-0.18493,-0.87564,1.3273,-0.31002,-0.82164 2.1248,2.814,-0.24177,-2.5302,-0.56429,-1.9308,0.0057977,0.49014,-0.98535,-2.8873,-0.68453,-1.5169,-0.1661,0.021644,-0.15888 1.2072,1.1058,-0.9073,1.3974,2.4068,-0.58393,-0.20234,1.1283,1.0446,1.5856,-0.46443,-0.12719,1.3916,-0.049199,-0.96929 -0.36012,-3.8014,2.4795,1.674,-0.15761,0.64974,-0.096763,-1.5187,-1.6874,0.77899,0.85712,-0.11605,-0.4114,-1.6166,-0.74983 -3.2455,-0.44371,-0.2114,-0.19872,0.22627,0.8503,-0.30155,0.49601,0.062879,0.43538,1.9208,-0.087082,-1.9436,-0.24568,-1.3251 3.7772,1.9928,-0.012217,-2.2927,0.32996,-3.2936,0.21674,0.41026,-0.31793,-0.35128,-0.57589,-1.1504,-0.47893,0.66558,-0.021058 2.5762,1.268,-1.5048,1.7292,1.2957,0.68206,1.4469,-1.4738,-2.6641,-0.047471,-1.4318,-1.1437,0.87169,0.52049,-0.18528 1.6684,2.1196,1.7489,-0.91937,-2.1712,-1.8451,-1.2748,-1.1668,-0.35129,-1.2351,-1.0808,0.45344,-0.43069,0.24194,0.16405 -0.21007,2.0072,1.2119,-0.81546,-2.2175,-0.93438,-0.37475,-0.28083,-2.0406,-2.8811,-0.39264,-0.090923,-0.70463,0.11563,0.82633 2.1397,2.2737,-0.86717,-2.1617,-0.76235,-2.1475,-0.76698,0.17265,0.69491,-1.1925,0.17339,-1.2827,-0.44033,0.73666,0.0045803 2.3824,-1.0003,-0.93443,0.66456,0.5594,-1.8634,1.0041,-2.7768,-0.94403,-1.4257,-0.17327,-1.2457,-0.12034,0.52353,2.53 0.16699,2.3871,0.79662,1.2477,-0.19648,-2.6877,-0.099109,0.32663,-1.1105,-1.068,-0.82895,0.003468,1.8277,0.37315,0.15348 3.4308,-1.9008,-1.7513,-1.2664,-2.0947,0.072832,0.10507,0.65193,0.91428,-0.11161,1.0681,-0.0094644,0.5508,0.35509,0.86272 -1.5533,-4.1117,-0.051803,1.0698,1.0084,-2.0958,-0.21547,0.6218,-0.6536,-1.6267,0.58282,-1.3198,-1.3391,-0.61736,-0.48194 1.1812,0.067323,-1.0849,1.8723,3.7808,0.26401,0.40679,1.1941,-1.3749,-0.67041,-0.48719,-1.4454,2.425,-0.49701,-0.052771 -0.67061,2.0037,-0.72221,-0.22732,-2.2496,-0.54271,2.176,1.1364,-0.50485,-1.8708,-1.1297,0.71163,-0.25928,-0.49628,-0.090369 4.5996,-2.1323,-1.5354,-0.2591,0.21297,-0.728,2.0294,-0.067826,0.9773,-2.2711,0.92309,-0.46419,-0.54382,0.95022,0.2314 3.3578,-4.0928,-1.4163,0.76441,-0.3344,2.2302,1.8062,2.2082,-1.3822,-0.31553,-1.1101,-0.58368,-0.78171,0.96442,-0.56644 1.5117,-2.9286,-0.083542,0.033341,-0.49359,-1.2899,1.2392,-3.0883,-2.1398,-0.70621,-1.3052,0.10267,-0.37575,-1.0956,0.32423 -1.1324,-3.928,-0.65135,0.67038,1.0428,-1.2633,-2.3596,-0.51747,-1.8307,0.72364,-0.97842,0.51652,-0.19489,-0.87495,1.0177 4.9611,-1.0802,0.27775,-0.079815,0.19152,-0.11253,-0.80691,-1.4741,-0.11184,1.2802,1.6982,-1.1855,-0.98541,0.11223,0.84849 -1.3184,-3.1634,-1.3228,-0.20164,-0.61672,-0.65579,-3.1876,0.51086,-1.6804,-0.2116,0.24102,1.3221,-0.82641,-0.16133,1.7814 -4.2626,-0.89559,-0.83265,-1.5125,-0.85836,-1.3669,0.02096,-1.285,-1.5231,-0.44991,0.83832,0.0091207,0.52225,-0.31226,-0.82903 -1.7103,-1.2008,1.3082,0.23847,-2.4484,-1.4387,0.42972,-1.6773,-0.44893,0.8462,1.2018,-0.18754,-1.0976,-0.020505,0.093409 0.69447,3.3804,-0.36511,-0.37938,-2.1865,-0.60863,-0.21265,-0.32585,-1.1884,-0.36317,-1.7152,-0.90501,-0.02064,0.37486,0.24526 -2.2082,1.197,-1.6537,-0.064465,-0.73091,-1.0531,1.2878,2.3685,-0.15031,0.43306,-0.52429,-0.71882,0.071935,0.51273,0.97339 0.28439,0.37437,-0.26674,2.6335,-0.89896,-2.0586,-0.9863,0.77922,0.34915,-2.4075,0.35182,-0.75304,-0.81256,0.45154,-0.31507 1.6906,-0.2968,0.74413,0.063134,0.37325,-1.8266,-0.85882,1.5868,1.5199,-1.6888,-0.3466,0.73118,1.561,0.63009,-0.47583 -2.9365,2.2949,-1.2786,0.41714,-0.073699,1.0789,0.68921,3.3084,-0.50185,-0.25605,-0.48563,-0.31145,-0.55131,-0.64246,0.78067 0.60563,0.037119,0.58313,2.2513,0.35817,-1.4664,0.72917,1.5991,0.96454,-1.5448,-0.50422,0.3061,1.0409,-0.017894,0.1273 -0.17998,-1.7043,1.589,1.4746,0.56718,-0.75882,1.8458,0.85725,1.37,-0.99354,0.077512,-0.44864,0.66949,-0.59049,0.54271 2.5968,-0.39328,-1.2596,-0.12735,-0.43921,-0.87492,-0.42377,-1.6631,0.42856,-0.38168,1.6215,-1.7193,-1.2722,0.44742,1.8699 2.4165,-0.74225,0.15744,1.6547,-1.6357,1.8253,-1.8272,0.29058,-0.24325,0.06409,-0.13602,-0.026746,1.1926,-0.22289,0.22988 -1.4628,0.33809,-0.27863,1.5708,-1.2398,-1.7397,1.4704,0.43667,-0.16535,-0.53577,-0.52371,-0.61604,-0.40149,-0.67123,0.32382 3.9202,-1.9055,-0.22005,0.89122,0.93197,-0.3155,1.0961,-2.4706,-1.9652,-1.7568,1.5006,-0.92806,1.8673,0.56555,1.7692 1.7098,0.63914,-1.9586,1.4334,-0.17538,1.7418,-1.2284,-0.66528,-0.93521,1.3803,2.3682,-1.0568,0.18026,1.4888,0.22171 0.72451,-2.2247,0.7755,1.0696,-0.87733,2.9028,0.19382,0.35438,0.27396,1.6304,0.50488,-1.066,0.95972,-0.42012,-0.42805 5.8222,-3.1773,0.040695,0.48379,-0.32809,1.4808,-0.36137,0.59571,-1.8843,-1.2961,-1.4197,-1.2708,-1.0052,0.038862,-0.12007 0.25836,-1.0991,0.61493,1.6751,-0.72674,0.51364,-1.0929,2.7409,0.95817,-0.88451,0.30982,-0.044813,0.1865,0.11423,0.44805 1.2099,1.0211,-0.22679,-0.13493,-2.5995,-0.70057,0.66667,-0.084867,0.3937,-1.7989,-1.7872,1.317,-0.92721,-0.96913,-1.5422 2.8149,-1.1129,-1.748,0.34671,-0.65581,2.67,-0.55283,-1.0423,-1.165,0.61707,0.99915,-1.3707,1.546,0.33836,1.8531 1.4905,2.2249,-1.6764,-0.00095299,-0.9943,-1.3697,-0.43387,-0.065092,1.6139,-0.86759,-1.2141,0.11493,0.6705,-0.024374,-1.2654 2.5739,1.6587,-1.8074,-2.4644,-0.5637,-2.0859,0.5314,-0.11104,1.2917,-1.5735,0.9727,-0.91313,0.81959,1.1122,0.6429 0.27694,-2.3011,-0.11698,1.2378,-0.92241,2.7312,0.4557,-1.8464,-1.0996,0.26313,0.45019,-0.69051,0.56101,-1.6418,-0.58196 1.9147,-0.76274,-0.5561,1.9195,-0.73903,-0.01363,-2.3151,-0.1326,0.47266,-0.27898,1.2967,0.24502,-0.15449,0.55611,-0.15736 -1.1956,0.073718,-1.723,0.78698,-1.2005,-0.67291,0.60921,-2.0783,-1.6229,1.0779,0.50325,0.12362,-0.01061,0.47917,-0.046014 1.6926,2.473,-0.84712,-0.19476,-0.80495,-1.3885,-0.74858,-0.37784,-0.84668,0.26044,-0.37983,-1.962,-0.53453,0.58495,0.5809 1.5715,1.2468,-0.52512,-0.56023,-2.4461,1.5761,-1.8613,-0.64439,-0.35365,-2.035,-0.18789,-0.12631,0.38881,-0.26121,0.37035 0.61342,3.1538,-1.927,-1.9742,0.12401,-0.14603,-0.86038,0.99057,-0.43558,0.46941,0.42824,-1.8422,0.39428,0.16369,0.20852 1.5783,2.1669,-2.1106,-0.25239,0.77446,-0.63633,-0.53179,0.37499,0.56402,1.7032,0.16506,-1.933,-0.6019,-0.073813,0.74415 -3.7332,0.01262,-2.3846,-0.95724,1.0453,0.80444,0.24364,1.436,-0.65425,0.50263,-0.22429,-1.7256,-0.45329,-0.24626,-0.40935 0.2606,1.0533,-1.0726,1.8086,-1.2077,-0.28446,-0.32489,-1.9257,-0.91281,-1.2764,-0.94048,-0.83993,0.14354,0.76292,0.8161 -1.4416,-2.2154,-1.4033,-0.4262,0.65171,-1.2045,-2.5587,2.042,-0.59553,0.023371,-0.41362,0.51119,-1.0701,-1.3862,2.0605 0.2358,2.5612,-0.54357,-0.10461,0.010309,0.067386,-1.3402,1.6947,-0.46092,0.6096,-0.98926,-1.3302,-1.0767,0.60398,-0.17717 1.8662,0.44887,-2.3846,-0.50427,-0.35267,-1.2767,0.73126,-0.22909,0.42916,0.32771,2.3068,-0.035067,-0.43931,1.1239,1.2332 -0.34786,3.3093,-1.0546,-0.017603,0.04892,0.11218,-1.4004,1.509,-1.0038,0.43893,-0.86963,-1.091,0.068673,0.94361,-0.75299 -1.372,3.0201,0.44256,0.50833,-0.29764,-0.33288,-1.3387,1.8259,0.070863,-0.54797,-0.43739,0.07905,0.85247,0.2241,0.53787 1.3486,2.4734,-2.0481,-0.51135,0.17138,-0.76005,-0.68752,0.2664,0.51447,1.5573,0.031988,-1.7112,-0.2853,0.31429,0.47845 3.6327,-2.4062,-0.49722,0.11778,1.2346,-0.57344,2.3527,-1.0034,-0.78537,-2.1731,-0.21483,-0.81325,0.82665,0.87441,1.8484 2.9626,-0.84218,1.341,2.1902,-0.42049,2.5615,-1.6412,-0.25571,-1.425,0.42783,0.25756,-0.12533,-0.11373,0.70949,0.88008 1.4653,2.5421,-0.53169,0.95214,1.4002,-1.2294,-1.1997,-0.48271,-0.50713,1.7057,-0.77028,-2.0273,0.13653,0.64735,0.50797 1.6401,-0.67115,-2.1108,1.2153,-0.3061,2.6374,-0.008492,-0.23765,-1.2855,1.1334,1.6487,-0.024875,2.2599,0.66214,0.94322 1.1252,2.4778,-2.7312,-2.3346,-0.17915,0.29952,-0.60434,1.5327,-0.015506,0.28339,0.8546,-1.3172,0.12863,-0.55453,0.17606 1.229,0.27658,-1.6219,2.3024,3.7004,-0.13581,0.49622,0.53745,-0.70974,-0.70947,0.45955,-1.4098,1.643,-0.13498,-0.48839 1.7401,2.452,-1.4649,-1.4551,-0.66478,-1.8901,-0.80072,0.091003,0.53389,0.32664,0.14056,-1.6193,0.19628,0.6829,0.36276 -1.2118,2.5109,-0.84564,0.43289,-0.55064,0.60226,-0.7978,2.0979,-0.82222,0.36303,-0.99919,-0.29347,-0.91181,0.56589,-0.43928 3.298,-1.338,-0.50805,-0.56286,-1.1841,0.17533,-1.6742,0.21799,0.55426,0.98263,1.4629,-0.095937,1.7367,0.56988,0.16179 0.94267,2.0681,-2.1296,-1.8901,0.26209,-1.1765,-0.17986,0.95743,-0.074956,1.4549,1.1452,-0.72589,-0.28135,0.2267,1.206 -0.35194,3.7804,-0.81138,-0.57277,-0.8429,0.38285,-0.66005,1.5707,-1.7844,-0.42168,-1.6632,-1.3569,-0.33974,0.34509,-0.049227 1.6609,-1.057,1.9641,2.0225,-0.113,1.037,-2.0896,3.0156,0.13734,0.67631,1.1389,0.59899,0.36952,1.0103,-0.75354 4.0254,-3.1927,-0.066938,-1.7389,-1.6168,-0.32689,0.39293,0.99135,-0.19318,1.8125,0.87617,1.437,0.44161,0.3762,1.6369 -0.46517,-2.1995,2.1316,-0.49429,-1.5093,1.4451,-1.2696,2.5179,-0.19868,1.1593,1.0183,-0.51549,1.206,0.28084,-0.87512 -1.8311,1.743,-1.9494,0.47326,-1.1869,1.5595,0.51127,1.0368,-1.3328,0.40407,-0.15599,0.27073,-0.0099783,0.10357,0.17837 0.19105,-0.89644,3.3268,0.7321,-1.3085,-0.40631,-1.53,1.7875,-0.23903,-0.54751,2.1303,0.52691,-0.27093,0.44787,-0.70853 1.8584,1.2987,1.401,-1.1184,-2.3142,-0.17866,-1.4111,-0.31418,-1.7627,-2.5912,0.52398,0.48282,1.2828,0.0022587,0.31679 -1.9791,-2.7983,0.094698,-0.17725,-0.90505,-0.5071,-0.41185,1.6336,0.55602,-0.69281,1.1734,-1.4726,-1.0453,-0.8472,-1.3578 -2.4791,-2.5106,0.55333,-1.6277,-1.9017,-1.0918,-0.70881,-1.1014,-1.1742,-0.85017,0.62633,-0.26522,0.77816,-0.46172,-0.61324 0.43635,1.1313,2.3803,-0.84771,-2.646,-1.3509,0.76851,0.024161,-2.2149,-1.7233,-0.18651,0.37342,0.53706,-0.23082,-0.20121 3.6479,0.11922,-0.21327,-1.0881,-0.080169,-3.5017,0.075689,-1.8928,0.27996,0.016838,1.0038,-0.87865,-0.17156,0.59778,1.2481 -0.89996,-1.4622,-0.18051,-2.5519,-1.2565,2.2498,-0.6668,-1.5743,-2.4519,0.052128,-0.92096,-1.5822,-0.90755,-0.50669,0.15624 -2.6416,-0.85031,1.9846,-2.1609,-1.3816,0.58136,-0.7496,-0.88617,-1.468,0.62774,1.5978,-0.93029,-0.043476,-0.6037,-0.37668 0.20357,-0.39465,3.1588,-0.78604,-2.3399,-0.19744,-0.16553,1.2719,-1.5177,-1.4661,1.6705,0.74628,0.99936,-0.39447,-0.18647 -0.02104,3.0902,-0.33415,0.56127,-1.0052,-1.5514,-0.93458,0.26723,-1.7961,0.96399,-0.085096,-0.70527,-0.58209,0.43176,-0.097564 0.47153,-0.53346,2.584,0.47912,-2.5427,-0.69532,-1.1496,1.3905,-0.6426,-1.6699,1.2553,0.86755,1.0306,0.098369,-0.15319 0.3138,0.43449,1.1097,0.72969,-1.0013,-0.84606,-1.6286,1.2744,0.45835,-2.0356,1.3141,1.1695,0.32989,0.33775,-0.69218 -1.5047,-0.36262,1.1468,-0.71765,-1.7776,-0.07065,1.6814,-0.55967,-1.0283,0.44967,1.1306,0.40003,1.8976,-0.15148,-1.0757 -1.6546,0.41778,2.6457,0.036961,-1.744,-1.1589,0.44993,0.31453,-0.68095,-0.77638,1.9678,0.85094,0.69482,-0.59434,-0.64419 1.0837,0.48847,-1.0075,0.32607,-0.40076,0.10657,-2.0934,-0.57702,1.7201,-0.056453,2.3223,0.009972,0.96847,0.051409,-0.52614 4.3954,-2.4428,-0.040411,1.3322,0.057805,0.24826,0.77262,-2.1037,-1.6881,-2.019,-0.090976,-1.2068,0.49449,-0.1441,0.55877 -1.6887,-1.5443,-1.2413,-0.59472,-1.8483,-2.287,-0.34163,-1.392,-0.21091,0.52648,-0.21417,0.46562,1.2985,-0.18146,-0.58102 3.2521,-2.7477,2.2541,1.0767,-1.1749,2.5408,0.86539,1.4818,-0.66781,0.14988,-1.0427,0.043757,-0.7838,-0.24306,-1.3433 2.4308,-0.55615,0.86551,-0.97972,-2.5261,0.057126,-1.7904,0.87868,-0.52207,-2.3728,-0.44814,-0.16772,1.7716,-0.61624,-0.26601 2.6699,0.26432,-0.049335,-2.9244,-0.054039,-1.118,-0.97475,-0.27603,-1.0947,-0.94257,2.9544,0.64121,2.3551,-0.17506,-0.32104 -0.44328,-0.51842,-3.0806,1.4837,0.57665,0.34959,-0.087019,0.46527,-1.0653,0.96849,-0.88887,-0.11285,1.4658,0.93694,1.5566 -0.49104,0.61872,-3.4823,0.46807,-0.55596,0.11317,-0.017056,1.8625,0.61017,0.49935,-0.83063,0.11069,0.10309,1.143,0.9648 -1.7469,-0.7599,-2.8528,1.484,1.1234,-0.5707,1.8426,0.68314,-1.7122,0.3335,-0.15811,-1.1102,0.55118,1.0632,-0.44561 -1.4469,-0.78157,-1.7421,1.7929,0.58283,-0.1985,1.5699,0.49928,-0.23687,1.6501,0.088836,-0.53697,1.526,0.48233,-0.68177 -0.1946,1.8221,-1.0432,1.5639,-0.86824,1.0283,-2.1116,1.5268,0.076833,-0.42843,1.2365,0.12011,-0.70903,1.2489,-1.4885 -0.034279,1.5311,-1.1303,3.2388,2.0676,0.23178,-0.58795,2.3394,-0.25749,0.01187,-0.71589,-0.98315,-0.864,-0.091367,-0.79455 -0.73872,-0.63966,-3.3579,0.86082,0.18829,0.45147,-0.94689,1.7673,0.47116,0.65459,-0.4862,-0.063899,-0.72604,0.82495,0.71926 -0.29601,-2.2888,1.2329,3.5516,-0.64413,-0.37403,-0.57049,0.98241,-0.25348,-1.5863,0.79161,-0.78861,-0.83713,-1.5207,0.3831 2.9757,1.0959,-1.142,-1.0041,0.4334,-2.4347,0.77206,0.23918,0.57824,1.7241,-0.063405,-0.90649,0.95909,0.11571,0.91794 -1.3046,-0.85637,-2.5808,1.5164,1.1804,-0.38267,1.0234,-0.36902,-1.979,0.95047,-0.16592,-0.10217,2.1356,1.2809,0.15143 3.2421,-0.50105,0.6914,1.0347,1.3252,-0.50051,-1.057,0.10159,0.43094,0.2533,0.9036,1.3851,1.3213,-0.57194,-2.2021 -1.5452,-1.5122,-1.0398,1.7016,-1.7281,-0.80329,0.41653,0.47871,1.1079,-0.84327,0.99815,-0.8939,-1.334,-0.56471,-1.0679 0.89341,0.79115,0.67503,0.8046,-2.8093,-1.308,0.27365,-0.060891,-0.60737,-0.56948,-0.33193,0.049226,-1.3427,0.75368,0.77594 0.97744,1.6808,0.85763,1.5719,1.6016,-2.2284,-0.86219,0.80096,-0.13709,0.50185,1.0581,-0.12263,0.96945,1.4688,-0.9881 -1.3956,-2.5801,-2.1051,1.588,-0.91505,-1.9772,-0.98026,-0.55078,0.11853,0.24148,0.020024,0.36216,-0.40833,-0.91647,-1.0109 3.984,-2.2359,-1.6732,0.3143,-0.65385,0.67108,1.3739,-1.3528,-0.25784,-0.25105,1.0157,0.62782,0.71728,0.020845,0.92265 -1.2153,-2.1693,-0.72381,2.2825,-0.93962,-0.52736,0.42731,-0.38086,0.63157,-0.10841,1.6205,-0.96577,-0.35493,-0.57275,-0.43196 -1.7002,-2.3737,-2.2053,1.9252,-0.58106,-1.3874,-0.36138,-0.39645,0.28962,-0.027632,0.58574,-0.23731,-1.1384,-0.49867,-1.1666 0.93961,-1.3511,-2.4837,1.6691,0.88704,2.1323,-0.078613,1.0082,-1.5279,0.37394,3.0019,0.3695,0.41618,1.2516,1.1431 -1.6047,-1.481,-1.0686,1.2256,-1.9708,-0.80372,0.31108,0.8499,0.88372,-0.66572,1.1117,-0.73563,-0.97443,-0.64282,-1.0859 -1.6499,-1.2182,-3.157,0.3727,-1.4007,-1.5436,-0.47953,-0.029917,0.35438,-0.43315,-0.16639,0.30224,-0.888,-0.013581,-0.77555 1.8114,-0.77163,-3.0613,0.67977,-1.1954,1.3247,1.3528,-0.8985,0.64347,-1.0066,0.20747,-0.24559,0.98477,-0.034305,2.0032 1.6171,1.9418,0.046727,1.7242,1.2202,-1.2054,0.49058,-2.0913,-1.9392,-0.23369,-1.6716,-1.7271,0.82973,1.0331,0.83242 1.0975,-0.2421,-0.70616,2.5585,-2.0043,1.075,-0.62534,-0.73231,0.22463,-0.81474,-0.059796,-0.24761,0.080866,-0.46781,1.2388 -1.1526,-2.8033,-1.383,0.42493,-1.5385,-0.092356,-1.7665,0.52897,0.73422,1.215,-0.18916,-0.30273,0.35369,-0.37693,-0.16662 -0.34098,1.2746,0.97411,0.52286,-3.0807,-0.34292,-0.63511,-0.50226,-0.4793,-0.27575,0.29845,0.85191,0.044727,-0.94415,0.87868 -0.82033,1.592,-0.36264,2.4657,0.3148,0.19817,-0.35241,0.2827,0.55989,-0.79605,0.65727,0.94659,-1.2062,1.1923,-0.61924 1.3964,-0.55231,1.1947,1.0408,-2.9346,0.10214,-0.22141,-0.26284,0.96293,-0.53278,-1.2541,0.66062,-0.064141,-1.2603,-0.45456 -2.0277,-0.9471,-2.7365,-0.1369,-0.61042,-1.8351,-1.42,0.036333,0.00077011,-0.14016,-0.17633,1.3918,0.49805,-0.16966,0.30942 3.296,-3.2088,-1.8852,-0.45636,-1.5007,-0.037725,1.4617,3.2889,0.59515,1.5134,-0.69422,1.4868,-0.55813,1.1648,-0.44949 2.5613,1.5535,-1.8161,-1.3569,-0.27404,-1.3468,0.90952,1.2788,1.0685,0.78724,-1.3845,-0.81753,0.44351,-0.91566,-0.85852 1.3321,-0.7973,1.0953,2.8978,-0.10262,-0.40422,1.2426,-2.2854,-2.0941,-0.52595,0.26429,0.27614,1.0353,-0.5897,0.50961 4.7509,-1.383,2.098,0.82335,-0.7381,0.12052,-1.3095,-1.112,-0.63189,-0.29063,-0.18148,-0.63034,-1.2268,0.099396,-0.18987 0.44169,-2.2603,-2.058,1.0972,0.34524,-1.3661,2.2311,-1.4115,-2.5543,-0.55029,-1.6085,0.30006,1.8159,-0.050258,-0.91228 0.46697,-3.493,2.5716,1.9977,-0.54651,0.8158,-0.25795,0.77045,-1.2379,1.774,1.7861,-0.65195,-0.34473,-0.43536,-0.43198 0.075023,-3.9088,1.2817,2.0285,-0.80423,0.17655,-0.98683,1.5127,-0.49772,1.2843,0.67979,-1.1618,0.31302,-0.21823,-0.3776 1.7094,-3.5801,-0.028576,0.52503,0.13199,1.0909,-1.3814,-2.0003,-1.5185,1.3639,-1.0795,0.86323,-1.4803,-1.1635,0.37552 3.0524,-0.74828,-2.1996,0.1847,-0.57587,0.11682,1.2329,-1.8763,0.27741,-1.4106,0.48531,-1.649,0.56318,0.25229,1.6187 -0.73511,-0.9181,-2.3121,1.392,-0.011634,-2.4984,-0.33044,-0.43158,-0.57743,1.0896,-0.44227,1.5935,0.63546,1.2302,0.69603 0.23554,-1.0393,-0.54941,1.9304,-0.18062,1.984,0.70872,1.8102,0.99246,1.1675,0.15465,-0.36049,1.8302,0.32965,-1.0706 0.99311,1.2374,-2.8637,1.8774,-0.52232,0.89952,-0.4389,-1.0406,0.12303,0.40956,0.022668,-1.3285,0.6924,0.18745,0.72268 3.5972,-1.4307,-1.3334,0.45777,-0.97347,0.79295,-0.85222,-0.60929,0.72116,1.1978,0.11628,-1.3146,-0.12198,0.020468,1.3076 0.49609,-3.5325,-0.061593,2.6704,0.92894,1.9177,-0.4216,1.5182,-1.974,-1.4408,1.782,-0.24187,-0.0062092,-0.69784,0.29715 -0.071526,-3.0177,-0.24044,-1.2437,-1.9313,-1.4129,-0.84755,-1.4729,-1.1368,1.6111,-0.89069,0.61086,0.35758,-1.0491,-0.78533 -0.47568,-3.1527,0.64797,1.2849,-0.19068,1.2352,-0.87484,0.30503,0.67483,2.3969,0.70341,-1.4707,0.35992,0.25029,-0.31227 2.8793,-0.12322,-1.9631,0.75335,-0.30847,-0.23412,1.2561,-1.6905,0.60503,0.31196,0.40375,-1.647,0.06487,0.32716,2.1989 0.058513,-2.0281,2.0833,-1.8619,-2.2983,1.3749,-0.30819,1.5891,-1.2564,2.3484,0.074215,-0.48083,1.5793,0.14494,-1.0164 2.4217,-0.91558,2.68,1.7187,-0.6475,0.22966,-1.72,-1.2294,-0.90903,0.1926,0.51974,-0.31017,-0.86022,-0.48984,-0.23688 -0.39346,3.4344,-0.6295,0.18495,-1.015,-0.4151,-0.97533,1.6572,-1.4724,0.33721,-0.96601,-0.67844,-0.41511,0.48389,-0.31671 -2.3428,-2.7014,-1.9313,-1.3049,-0.098449,-1.7124,-2.1369,0.59524,-0.50232,-1.2481,-0.040772,1.348,-1.2995,-0.30663,0.17136 -0.49909,0.85213,0.075804,2.7443,0.14132,-2.1914,-0.13561,0.35118,0.24243,-0.66306,-0.022976,-0.12625,0.59927,0.8858,-0.08662 -1.6478,-2.2617,-1.5902,-1.2822,-0.29673,1.6428,-2.3599,1.4453,-1.3488,-0.051864,-0.73143,0.039757,0.92402,-0.40727,0.64776 -0.18823,-3.3766,-1.9322,-0.032289,-0.58612,-0.19515,-2.1363,2.5097,-0.65104,0.3333,-0.60857,0.48548,-0.20031,-0.11793,0.94167 -1.7836,-1.1616,-1.3642,0.096724,-0.84386,-1.6058,-0.70263,-1.3451,0.077781,1.379,0.77917,1.1448,0.59968,0.82915,-0.50583 -1.3895,-2.8888,-1.5699,-0.55905,-1.0342,-0.42796,-2.6945,0.86254,0.15459,0.10598,-0.34014,1.0039,-0.027863,-0.58262,0.82072 -1.366,1.7264,0.56055,1.8063,-1.0702,-0.47595,0.756,0.48924,-0.47349,1.1508,0.57214,0.68138,-0.35095,1.1115,0.63671 -0.0061666,-1.9091,-1.404,0.39119,-0.22979,0.76436,-2.2363,1.1775,0.37661,1.454,0.054877,0.97513,0.39843,0.51383,2.1751 0.88551,-0.58459,-0.58295,0.75048,-2.3115,-1.3843,3.2209,0.60244,0.89457,-0.11963,-0.97106,0.42086,-0.79819,0.59428,-1.0236 -1.7777,-3.0891,-1.058,0.588,0.33992,-1.7062,-0.84194,-0.0076792,0.79086,-0.10748,0.41838,-0.14265,-0.70088,0.53292,-0.62451 -1.2695,-3.6975,-1.0377,0.15879,0.35381,-1.461,-1.9997,0.023501,-0.12442,0.090836,0.26152,1.8405,-0.24758,0.0019264,-0.6546 3.566,0.98129,-1.3992,-3.0693,0.7344,-2.5738,1.32,1.5856,1.0117,-1.3436,0.49962,-0.048325,0.58867,0.15788,-0.99525 -1.2928,1.8854,-0.9369,1.6281,-1.6824,0.30148,0.95193,0.089637,0.45913,0.93472,-0.24139,0.40897,0.25367,0.85996,0.71428 -1.1317,-1,-2.374,-0.19112,-0.17293,-1.6742,-1.3331,1.151,0.10333,-0.93312,-0.15876,1.4649,-0.39176,-0.80335,1.3221 -0.64692,0.051782,0.36526,3.0687,1.2536,0.059975,-0.33032,0.062145,0.40941,-1.4175,0.72961,-0.14815,-0.98329,-0.85808,0.59512 2.5712,-1.4208,-2.1786,-3.3403,-2.0009,-0.27206,1.386,1.4223,0.14846,-1.6631,1.5201,1.2768,0.42004,0.30518,1.4827 -2.254,-1.907,-0.96279,-1.7878,-2.5059,-0.2182,-1.4941,-1.6866,-1.3736,0.051606,-0.07627,-0.23464,-1.0109,-0.44594,-0.092538 0.20098,-1.8199,1.4317,2.2179,-1.09,-0.91847,-0.52658,3.0057,0.24911,-1.1275,0.12176,-0.15031,-1.3355,-0.75372,0.28485 -1.998,-2.3228,0.42305,-2.5984,-2.4399,0.065809,-1.9348,-1.1735,-2.0729,0.63815,-0.6257,-0.84158,-1.286,-0.14917,0.80605 2.4693,-0.65815,1.3537,1.3348,-1.966,0.39305,-0.90761,1.7707,0.067403,1.5471,-0.4481,0.16461,0.8687,1.2085,0.64762 -0.93502,-0.69356,2.6297,-2.0584,-3.064,-0.64129,-0.098469,-0.47417,-2.1367,-1.0061,0.37213,-1.446,-0.84989,-0.066584,0.37343 -2.7411,-0.2497,-1.1614,-0.83138,-2.2005,-0.92304,0.7522,-1.9329,-1.6199,-0.40125,0.33868,-0.32032,0.77207,-0.68022,-0.10731 -1.1604,1.9959,-1.5182,0.41962,2.8377,0.32702,0.72908,2.0961,-1.8413,-0.47509,-1.0236,-0.61867,-1.194,0.015182,-0.33223 -2.0375,-2.0388,-1.2807,-1.2552,-1.0496,-0.48832,-3.0136,-1.3506,-2.1129,0.61469,-0.55299,1.7736,-0.98667,-0.52825,1.323 -3.5596,-1.0015,-0.1908,-1.5472,-1.938,-0.30169,-0.15445,-1.0042,-1.4005,-0.32861,1.2962,-0.070298,-0.69831,-0.68166,-1.4782 -3.1932,-0.066602,-1.2314,-1.2655,-0.90698,-1.7018,0.48326,-2.2153,-1.9387,0.59046,-0.19276,0.1788,0.044224,1.3067,-0.31668 -2.0299,-2.7859,1.2481,-0.97496,-1.859,-0.012071,-1.7423,-1.3983,-0.28727,1.0087,0.45605,-0.43904,-0.019376,-0.93589,-0.53915 2.9798,1.0903,-1.52,0.2603,-0.87948,-1.2237,0.40689,-0.71049,1.2607,-0.50295,-1.2009,-0.85685,0.81685,0.37889,-1.1463 -3.1096,-1.3056,-1.6076,-1.455,-0.40294,-0.88854,-1.1277,-2.4517,-3.1737,-0.68533,0.025689,1.7449,-0.99093,-0.025867,-0.17085 2.1035,-0.40502,-3.1181,0.40022,-1.3031,0.29744,1.2917,-0.10832,2.1924,0.042393,0.36386,0.23339,0.59028,0.047599,0.8654 0.1639,-2.6576,0.43424,-0.78303,-2.0421,-2.0012,1.9286,-0.65729,0.048723,0.58387,-1.2144,0.14086,0.27852,-0.19547,-1.5143 2.687,-0.032947,3.3903,-2.4191,-1.9582,-1.2275,-0.47053,1.0109,-2.4459,-1.1376,0.055047,-0.62359,-0.52462,0.36928,0.25629 1.6951,1.0267,-1.0989,-0.42071,0.39195,-1.76,-1.3289,0.056147,-0.23976,1.1033,1.7999,-0.74353,0.18584,-0.03738,0.77851 -0.61588,-1.9443,-0.83939,1.0217,1.9229,-2.8617,1.7795,-0.66968,-2.7819,1.0422,-0.91834,-0.046357,2.3799,0.57085,-0.24988 -0.86956,-0.11105,-0.93688,-1.7411,0.40095,-1.289,0.046348,-1.2987,-1.8007,3.1117,-1.4581,0.71594,0.89453,1.6328,0.57186 -0.48893,1.8378,-0.56503,2.5141,2.0311,0.050881,-0.40904,1.8002,-0.34992,0.30702,-0.22098,0.0295,-0.75522,1.001,-0.95591 0.016816,2.0795,0.50326,2.5552,2.7216,-0.7872,-0.60764,1.4521,-1.8185,0.95614,0.94588,0.18243,-1.3708,0.53766,-0.69005 -2.1641,-0.98043,-1.8633,-0.85294,0.14541,-2.2947,-1.0878,-0.17538,-1.694,-0.14696,0.30809,2.2106,1.0155,0.78826,0.79713 -1.996,3.2178,-1.108,0.65194,-0.9368,0.052286,0.067299,1.6012,-0.65191,-0.40899,-0.63684,0.54863,0.27327,0.93845,-0.27714 1.8222,-0.47322,0.65431,0.016847,0.66031,-2.4883,-1.8166,0.77217,0.61899,-1.4594,2.1296,0.62851,2.1486,0.31674,-1.4167 2.4324,1.4893,-2.1982,-2.6852,-0.98761,-1.2386,1.1467,-0.25626,0.60944,-0.032899,0.31803,-0.62337,1.2592,-0.063061,1.4426 -1.1678,0.092644,1.7125,1.226,-0.65618,-2.5155,1.2686,1.1411,-1.5635,0.33263,1.2863,1.4534,0.98397,0.67399,-0.90683 -1.4533,-0.88164,-0.0097797,1.1936,-0.62965,-2.8191,2.1784,0.40264,-1.5144,1.1263,0.67344,0.28325,1.897,0.81486,-0.74396 -1.0217,-1.0702,-1.6655,0.7288,-0.12294,-1.9342,1.3289,0.081678,-0.67764,2.5277,-0.8572,-0.46554,2.0021,1.0406,-0.56561 -1.5138,1.3415,-0.10696,2.1378,2.1824,1.1677,1.1095,1.4132,-1.515,1.5437,0.78437,0.11989,-0.80617,-0.38798,0.48697 1.0067,0.94402,0.06533,1.3518,-1.3434,-1.9328,-1.4812,-0.59216,0.43822,-1.4019,0.85372,-0.078776,0.73765,1.4318,-0.069797 2.7484,-1.6722,1.0994,0.68381,2.5787,-0.060436,-0.24841,-2.6969,-1.6217,-1.7936,1.9284,-0.44475,1.7356,0.00078198,0.16552 -0.69726,2.2818,-1.0172,0.37375,-2.0282,0.82473,0.32425,0.64043,-0.57589,0.93676,-1.0225,0.1425,0.42369,0.95712,0.89727 -0.90522,2.9233,0.66911,1.0702,-1.4701,-0.94164,0.093803,0.59122,-0.42294,0.69887,-0.95055,0.79927,1.4295,0.73606,0.57207 2.8321,-0.7323,-2.9027,0.34418,0.83961,0.58816,2.9696,0.83901,0.80877,0.68461,-0.87044,0.65926,-0.63136,-0.054047,0.37294 -1.5229,1.2648,0.86285,1.5975,-1.8798,-1.4406,1.0437,-0.13542,-0.41108,0.28889,1.1024,0.88171,0.25239,0.83255,0.18366 -1.3451,-2.6846,1.6052,1.436,-0.51409,0.66644,-1.0254,1.6007,1.549,1.135,0.64222,-1.736,-0.64603,-0.70782,0.26631 -1.414,1.8775,-0.59882,1.4431,-2.2164,-1.1254,0.012644,0.57772,-0.20346,-0.81583,0.227,1.2015,0.64733,0.92595,0.11436 -2.5507,-0.20539,0.73605,0.50073,-2.1367,-0.94416,0.10019,0.42142,0.2029,-1.2551,1.9607,0.41396,-0.13055,-0.45136,-0.74365 -1.1374,-1.5093,1.777,2.311,0.1557,-0.38414,-0.83529,1.7694,0.38466,-1.3732,1.6417,0.08038,-1.9711,-0.63925,-0.75678 -3.091,-1.395,-0.34563,0.77099,-0.59986,-1.5796,0.75173,-0.21076,0.61464,-0.32329,1.7325,0.17075,-1.0684,-0.31757,-1.5966 -1.5515,-0.93776,1.3117,0.62042,-1.5488,-2.4477,1.6191,-1.5062,-0.40592,0.7709,0.66281,-0.50136,0.95828,0.44247,-0.36051 -2.6677,0.41256,-1.8675,0.20308,-1.1927,-1.3725,1.5045,-0.088606,-0.062154,1.6262,-0.04378,-0.28405,0.87601,1.126,-0.43715 -3.0051,-1.4055,-1.2429,-0.44148,-1.7156,-1.1633,-0.65609,-1.0157,-0.11937,-0.37018,1.3754,0.21506,0.57384,-0.53843,-0.9501 -2.7875,-1.0563,1.2648,0.57141,-0.20698,-0.53022,-0.088891,0.82938,-0.28197,-0.49782,1.9255,0.030473,-2.4756,-0.69746,-1.3908 0.0057834,-0.42802,-0.80351,1.1904,0.091015,0.40824,2.0209,-0.81044,-1.6941,1.8403,-1.0358,-1.3176,0.91461,0.74467,1.332 -2.4586,-0.92435,-0.035008,-0.91348,-2.3924,-0.46597,-0.22222,-1.6809,-0.58776,0.71689,1.0128,0.27786,0.77792,-1.2986,-0.59246 -1.4065,-4.4526,0.13855,1.2021,0.89801,-0.27594,-1.5142,0.78845,-0.68012,0.60412,0.94912,0.25107,-1.0158,-0.43565,-0.83878 3.764,-2.9751,-2.5077,-0.20092,-0.88988,0.66099,2.3,1.0547,1.1442,-0.29762,0.056647,1.5201,0.19095,0.37526,0.36329 -0.054347,0.35641,2.5849,0.047427,-2.6718,-0.80411,-1.1158,0.30928,-0.70042,-2.0029,0.80849,0.50676,0.92468,-0.34627,0.82243 -2.9087,-3.0606,-0.43339,-0.77408,-0.054545,-2.0771,-1.3598,0.10143,0.3053,-0.47012,0.75865,-0.29392,-1.0937,0.23657,-0.22668 0.90812,1.2007,0.86589,0.76446,-2.7479,-0.36312,-1.9004,-0.68102,0.62467,-0.61398,0.0099787,0.77817,-0.18516,-0.21898,0.4413 -4.0624,-1.5759,-0.93009,-1.2772,-0.52178,0.17305,-1.4698,0.048169,-0.79189,-0.27442,1.0062,-0.31334,-0.71159,-1.1046,-1.0708 0.31013,0.028754,0.51555,1.0276,-2.4296,-1.2012,2.2348,-0.5641,-0.026179,0.52965,-1.3056,-0.085766,0.76293,0.10167,-0.31186 1.3671,2.1762,-1.1617,1.5025,0.26824,-0.37523,-0.66073,-1.0223,-1.0632,1.2983,-0.55451,-1.7152,-0.30368,0.87679,0.66839 3.1061,0.083092,-0.18464,-0.48105,-2.4079,-1.3163,-0.074059,1.3384,0.61177,-2.7902,-0.060871,0.71795,-0.74672,0.44013,-1.8192 -0.44285,-0.13529,-0.22725,2.538,-1.324,-1.0085,2.1635,-1.8961,-0.3218,0.056514,-1.1432,-0.24876,0.64716,-0.55182,1.2405 4.2055,-0.90116,0.16674,-0.74525,-2.3002,-0.80098,-1.149,1.4683,0.97362,-1.3502,-0.62512,-0.23308,-1.0262,0.14659,-1.1345 1.6298,-1.5632,-2.2744,1.6844,-0.076118,2.9562,0.50095,-0.11713,-2.5866,1.5267,1.0827,1.0906,2.5362,0.12395,0.68566 1.6658,-0.00038332,-0.71804,2.486,2.9988,-2.4863,0.40415,1.3588,-0.86532,-1.2522,-0.11416,-1.3379,0.78411,-0.014811,-0.43994 2.1169,1.299,0.88582,-0.11203,-2.8132,-1.0796,-0.34203,-0.25035,0.48466,-1.8561,-1.1782,0.2232,0.39651,0.35205,-0.44262 3.7955,-0.85589,-0.44718,-1.3989,-2.1446,-0.89066,-1.2336,1.9249,1.1907,-2.3519,0.36835,0.44393,-0.20671,0.49299,-1.6757 -0.47051,2.3472,-1.4723,0.16333,0.5942,-0.69947,-1.0226,3.253,-0.10135,-0.30591,-1.2909,-1.4556,-0.12982,0.1838,-1.0018 0.94417,0.97818,1.7894,0.39693,-2.2454,-2.1768,1.4751,-0.31255,-0.71529,0.62067,-1.0768,0.092567,0.81284,0.84632,0.11634 3.9318,-0.68814,0.73242,-2.8439,-2.7228,-0.15139,-0.93598,2.4205,-0.91104,-2.139,-0.1855,-0.58846,-0.91735,-0.17592,-0.53176 2.9989,-1.9971,-1.5865,1.1198,-0.063705,2.9524,-0.57479,-0.35245,-2.3053,0.54153,1.1127,-0.70981,1.9072,0.59292,1.4261 4.0966,-1.8335,-0.40212,-0.84081,-1.7232,-1.5123,-0.78299,0.59466,0.48393,-0.58718,0.62006,-0.42927,0.059511,0.01256,-0.65303 -2.2533,-1.087,-2.2769,1.3008,1.0715,-0.92714,0.77951,-0.48991,0.14518,-0.64356,-0.040292,-0.6665,-1.7232,-0.17166,-1.087 0.63178,3.4049,-1.6936,-0.20112,-1.4348,0.16997,-0.64263,-0.59371,-1.3484,-1.2963,-1.0035,-1.3988,1.0273,0.37872,-0.038561 0.24757,-0.50351,0.88429,0.97845,-2.3676,-2.1521,2.0749,-0.4359,-0.18421,0.42107,-1.0594,0.6991,0.97167,-0.43611,-0.58231 -3.0795,1.3806,-1.4655,0.41217,-0.48506,1.0825,1.8293,0.46141,-0.18359,-0.23267,-0.042907,-0.87084,0.83311,-0.56516,0.3447 -0.41892,-0.99721,1.5943,-1.6956,-3.4862,-1.0656,1.8189,-0.069262,-0.97495,-0.66368,-0.047167,-0.43894,-1.8757,-0.19996,0.19835 -2.4161,0.092951,-2.2121,-0.079589,-1.2811,-0.42987,0.66152,-0.57133,-0.45886,0.86772,0.59661,0.15734,1.1911,1.0618,-0.80777 1.9938,1.6307,-1.2322,-2.1416,-1.552,-1.4871,-0.85682,-1.3244,0.2062,0.49085,2.1192,-0.40669,0.82087,-0.26921,1.416 -0.952,-2.9448,-1.949,1.5713,-0.047785,0.4901,-1.1162,1.627,0.5337,1.1641,-0.59753,-1.4923,-0.065281,0.20523,0.16676 4.1895,-3.3403,-2.7668,-0.2556,-1.0986,1.0528,1.7337,1.21,0.56187,-0.78985,1.0102,1.054,-1.1062,0.39393,0.031614 -0.88271,-2.0799,-2.7245,1.5812,-0.54514,-0.52303,-2.1611,0.31675,0.63245,0.22274,-0.40714,0.90441,-1.1782,-0.95117,1.3313 2.7054,-2.088,-0.77488,1.6484,1.6505,-0.25757,0.48595,0.017715,-1.3222,0.95799,3.914,0.96042,0.60941,-0.007565,1.2869 3.2039,-0.72773,0.40715,0.28117,-0.73303,0.26376,-2.6369,0.0033249,0.26323,1.2292,1.2802,-0.57431,0.45974,0.36614,0.17391 -2.775,-2.5609,-1.3657,-1.3743,-0.61537,0.74963,-2.9215,1.1958,-0.23475,-0.2594,-0.403,-0.58215,-0.32901,-0.040732,1.1521 4.8723,-2.7091,-0.41056,-2.7854,-1.6153,0.15579,0.98943,1.3555,0.12393,1.7675,0.84996,2.0216,-1.2066,0.34579,0.8116 -0.15167,-1.7996,-2.0053,1.7404,-0.53941,-0.22693,-1.638,0.21159,0.80321,0.77905,-0.48928,1.4406,0.42953,-1.938,0.86585 -1.3162,-0.944,-3.6058,0.72979,-1.2276,-0.20629,-1.654,0.80646,0.24789,-0.66968,-0.33476,1.3195,-1.5449,-0.82441,0.60653 3.8817,-3.8898,-1.204,0.80875,-0.2467,-0.35847,2.5136,-0.027906,0.094597,-1.3529,-0.070514,0.77093,0.22834,0.49423,1.0316 -1.1054,-2.4452,-0.79253,-0.14279,1.4585,0.2722,-2.5493,0.83619,1.1567,1.3922,-1.5997,1.1093,0.29931,0.7791,2.6313 0.41196,1.7066,-0.68204,0.93347,-1.296,-1.1933,-0.64601,1.2259,-1.0986,2.1732,0.23316,0.0036664,0.45552,1.0394,-0.17353 -0.8854,-1.4081,-1.7117,0.5595,-0.63164,-0.57394,-2.3654,1.0042,0.76778,0.58509,0.11602,1.3144,-0.07926,-1.2361,1.6055 0.13412,2.4553,-1.4391,-0.59326,-0.84792,-0.47104,-1.9732,-0.45837,-0.029088,-0.67982,1.8614,0.061548,1.9322,0.23371,-0.50283 0.24046,-3.4883,0.52526,0.55634,0.06466,2.2698,-1.5624,-1.7011,-0.39236,1.8899,-1.2087,-1.2997,0.1167,-0.44405,0.18096 -0.2917,-3.6805,-0.55057,-1.0635,-2.0729,-1.7917,1.5473,0.14272,0.091931,0.11512,-0.74954,0.58668,-1.0923,-0.73069,-2.6467 1.4162,1.6036,-0.16721,0.7552,-2.0582,-0.73871,-1.0597,-0.20049,0.13842,-0.79179,0.19077,-1.1241,-1.2717,0.68589,0.32977 -1.8409,-1.8225,-2.3068,0.36808,-0.22397,-2.1576,-1.5962,-0.34349,-1.2699,0.49179,-0.086365,0.99639,-0.69562,0.28405,0.23382 -1.7422,-0.40391,-3.3392,-0.48807,-0.53985,-0.74617,-0.89879,-0.013705,-1.1283,-0.5507,-0.83924,1.669,0.40418,0.38124,0.27725 -0.77742,-1.1226,-1.5205,0.56263,-1.0645,-0.97636,-1.8933,0.30788,-0.46881,0.3135,0.63743,1.7232,0.23573,-1.0105,1.0205 0.056907,1.59,-0.71057,2.7986,1.1617,-0.95909,-0.43872,-0.31716,-1.2559,-0.82114,0.39279,0.16453,-1.4986,0.29317,-0.47578 1.3617,-1.8803,-1.1145,0.28185,-1.4947,-1.1797,-0.9333,-0.70878,-0.11344,0.79236,-1.6397,1.1393,-0.86168,-1.6859,0.99318 -2.0142,-1.1884,-2.0311,-1.311,-0.71318,-1.2556,-1.5729,-1.4595,-1.7929,-0.046299,-0.2431,1.7136,-0.75509,0.1315,0.21965 1.1305,0.78582,-1.28,2.7409,0.16869,-0.50461,-0.60299,-1.4291,-0.94418,-1.4012,0.7437,-0.66769,0.43665,1.3578,0.56259 0.71895,-3.9263,0.053168,-0.4532,-1.1064,0.32297,-2.0819,-1.4606,-1.1996,2.3388,-1.833,-0.52438,-1.4438,0.4047,1.737 1.7181,0.74615,-1.1975,1.7201,-0.38732,-0.97972,-0.59542,-2.5813,0.43953,-0.72864,0.46575,-0.55036,0.34873,-0.012194,0.51031 -1.3373,0.78919,-0.31346,0.34115,-2.7895,0.070716,1.3195,-0.87985,-0.65414,-0.64051,0.17646,0.2449,0.96298,-0.30981,0.41704 -0.50808,-0.90194,-2.7102,-0.23172,-1.709,-1.0899,-1.1597,-0.40172,-0.71041,0.012334,-1.0071,1.6279,-0.72594,-0.66908,0.8562 -1.5121,-1.6545,-2.7543,-1.5375,-1.4517,-0.61952,-1.6325,-1.4275,-1.9167,-1.3892,-1.2285,1.4297,-1.2602,-0.91688,1.1413 -0.47114,-4.0219,0.53887,0.34817,0.024018,0.71093,-1.7126,-1.9821,-0.87834,1.317,-1.1532,-1.4664,-0.64754,-1.0254,0.58606 1.6517,-0.058363,-1.0108,-0.043153,1.6412,-1.6376,0.24126,-0.26529,0.9058,-1.0675,1.3643,-0.74249,1.5237,0.48071,0.097215 1.74,1.8902,-2.0255,-0.66229,-0.89247,-0.55842,0.28417,-0.2132,1.1029,1.483,-1.1188,-1.3272,0.75166,0.207,0.60595 -2.1344,0.6883,-3.317,-0.34856,-0.93103,0.13768,1.0639,-0.35508,-0.99881,0.26738,-0.95342,-0.14189,1.301,0.56558,0.091757 3.0954,-0.40747,-1.4123,0.3441,0.019988,-1.6602,0.74921,-1.4912,0.90219,1.1196,0.38982,-0.5631,0.21556,-0.060929,1.598 1.1055,-4.1176,2.2363,-0.042453,-1.0594,1.7078,-0.41434,-0.13465,-0.25249,2.2815,-1.2898,-1.2938,0.045312,-0.23152,-1.045 0.72474,-3.1265,1.9941,-0.37966,-1.4504,1.7111,0.19497,0.063025,0.18211,2.9951,-1.0567,-1.7259,0.21243,0.84942,-0.59831 4.4392,-0.64318,-0.9877,-2.0703,-1.2046,-1.8324,0.033108,-0.25199,1.3968,-0.28814,1.1294,-0.63677,-0.88166,0.40999,0.0070553 -1.3131,-1.8831,-1.2664,0.72612,3.2028,-1.0092,1.5844,2.0317,-1.3681,-0.55273,0.079381,-1.1095,0.41155,0.6994,0.14593 -0.17268,2.0721,-1.9943,1.551,2.0012,-0.48117,-1.2825,0.97133,0.28628,0.18067,0.52957,-2.0014,-0.32411,-0.24176,-0.34642 0.43479,-2.7313,0.69488,0.88875,0.44056,1.7502,0.13153,0.43717,0.38632,2.1851,-0.56983,-1.4916,1.4936,0.15971,-0.19082 -1.1441,-3.8137,-0.13122,0.5391,0.85981,0.33674,-1.2523,2.5977,-0.10977,1.2057,-0.68975,-2.0728,-0.023568,0.27844,0.094928 2.6021,0.068279,-0.12652,-0.35898,-1.4252,-1.0588,-1.9395,-0.78579,0.58755,-0.46831,1.3383,-1.2399,-1.1252,0.93467,1.0539 -1.4267,-2.9482,0.16721,1.3355,2.1228,2.2132,-0.23449,1.2818,0.085755,0.92035,0.33365,-2.5127,0.54557,-0.014852,0.38997 3.7174,-0.92753,-0.73268,0.10719,0.12093,0.91655,0.13803,-2.4783,-0.81122,-0.1335,2.3275,-1.004,0.578,-0.090941,2.2365 4.5098,-1.7343,1.8374,1.5691,-1.0038,1.4362,-1.1624,0.28802,-0.72024,0.0077422,-0.86648,0.31744,-0.22185,-0.1747,-0.60688 2.6831,-0.95005,-2.5886,-2.2296,-0.89542,-1.3423,2.5745,1.5363,1.4642,-0.83795,0.77899,2.1665,1.0955,0.54524,0.12839 1.4798,1.2675,-1.2531,2.3185,-1.1629,-0.44029,-0.19256,-1.6703,0.11618,-0.75739,-1.2131,-1.1815,-0.013607,0.42347,0.71508 0.0095699,2.4172,-1.3475,1.4304,-1.5586,-0.31732,-0.79484,0.21985,0.25646,0.6203,-0.6595,0.41811,0.50993,0.61146,-0.15119 1.3383,-4.4115,1.5884,0.59318,-0.56854,2.0933,-0.048971,-0.1977,-1.1561,2.5685,-1.4152,-1.4438,0.62143,0.1237,-1.0759 0.69465,-3.615,1.5186,-0.78856,-1.5325,1.6034,0.16827,-0.84987,0.38562,1.9705,-1.0489,-1.2739,-0.86248,-0.51633,-1.396 0.47196,0.43233,0.59318,2.1269,3.7354,-2.3951,0.33611,1.8379,-1.0969,-1.7912,-0.4384,-1.3562,-0.050654,-0.035788,-0.27161 0.29423,-3.7552,2.3915,1.4849,0.10471,2.3604,0.46674,-1.052,-0.63782,0.84291,-0.13659,-0.47373,-0.10119,-1.8885,-0.58014 -0.32232,-3.585,1.2119,-0.21418,0.18763,1.2713,-1.4409,0.63683,0.45641,2.8761,-1.0938,-1.1685,0.88561,0.44418,0.11945 -0.44355,-4.3589,0.19941,0.43094,2.6744,1.7803,-2.3754,0.64424,-2.0679,-1.0548,-0.378,0.018258,0.15371,-1.0074,0.61055 -2.1745,-1.0493,-1.7258,-1.1281,-1.6815,-1.4085,-1.4197,-2.1272,-0.6557,0.059773,-0.21363,1.2353,0.46674,0.033781,0.63228 4.7927,-0.85634,-0.16356,-2.2901,-1.3221,-2.4851,0.22603,-0.23201,0.4832,-1.3947,0.62949,-0.11565,0.1088,-0.046108,-0.99326 -1.5222,-1.5448,-2.1282,-0.16678,1.1005,-3.4506,-0.35332,0.56653,-0.13031,0.13533,-1.5187,1.1165,0.52376,1.1765,0.99372 -3.6071,0.96085,-2.8018,-1.0667,0.014388,-0.64723,1.4753,1.3408,-0.80816,0.53841,-0.81976,-1.7564,0.27954,0.59638,-0.14217 0.68866,2.3309,0.10792,-0.27341,-1.0237,-2.1857,-2.0632,-0.24701,-0.52519,-1.3712,1.1494,-0.38189,1.3817,0.25071,-0.39053 -0.8543,-1.9853,-1.4806,0.60043,0.52311,-2.5049,1.4641,0.47364,-1.1951,-0.35393,-0.3689,-0.35654,-0.6365,-0.14638,-0.53854 -0.33959,-2.8356,-1.0882,1.6195,0.030166,0.32151,1.3172,0.57829,-1.3941,-2.4524,0.4657,-1.5645,0.18055,-0.2442,0.23777 4.6737,-3.5477,-1.3822,-2.2452,-1.0475,-0.38132,2.2923,1.8466,-0.85242,-1.0017,0.047309,1.8108,0.53868,0.10193,0.23039 4.6188,-1.7759,2.7535,0.89194,-1.5185,1.4266,-0.46688,1.0545,-0.87593,-0.20084,-1.3454,0.50655,-1.1858,-0.4345,-0.93311 -1.7136,1.5299,-1.3634,0.78366,-1.7338,1.1899,-0.0090342,1.9928,0.76759,-0.25593,0.14613,0.38636,-0.84746,-0.031537,-0.65048 -0.57773,-0.81606,-2.4698,0.99548,0.78554,-2.5988,0.93853,1.0401,-0.019836,0.98403,-1.0052,0.26457,0.85286,0.23009,-0.10925 -1.2841,-1.5728,-1.2199,-0.1797,-0.55768,-2.7456,1.5612,0.6844,-0.29726,-0.19167,-0.35892,-0.34322,0.089514,0.41166,-1.1821 -1.0552,1.6309,1.5957,1.1166,-1.0918,-2.3185,0.51668,0.32665,-0.2958,-0.010475,0.040309,0.4585,0.58627,0.97484,0.762 0.24036,0.58147,0.57544,1.6909,3.8621,-0.10938,0.61403,-1.1333,-2.5056,-0.31552,0.15764,0.56938,0.91998,-0.25302,-0.17014 0.26923,0.72055,-2.2401,1.826,3.2296,-0.11477,0.18418,1.2227,0.53896,0.38241,0.97372,-1.6355,0.20313,-0.31602,0.36023 1.2171,-2.7828,-1.529,0.45145,-1.1905,-0.53063,-1.254,-0.9888,-0.10071,0.77123,-2.1153,0.90621,-1.449,-1.3934,0.55754 -1.492,-1.3857,-0.62301,2.9188,-0.70931,0.22672,0.59927,-0.69388,-1.0477,-1.7144,1.1618,0.086965,0.56364,-1.4498,0.41641 -0.22761,-2.8771,-1.0082,0.089405,-1.5917,0.89561,-1.2051,-0.41262,0.90631,1.8795,-1.5343,-0.66649,0.17879,-0.09347,-0.24119 -0.12951,-1.2435,-2.311,1.013,-1.0833,-0.51511,-1.4422,0.1346,0.25252,0.50326,-0.35134,1.3062,0.13878,-1.1587,0.86587 -2.4679,1.9114,0.36204,-0.059966,-1.7919,0.56708,0.76022,-0.29372,-1.06,-0.52946,1.8848,0.71755,0.4266,-0.24179,0.039966 0.83716,1.9855,-0.13222,1.1404,-1.3783,-1.5641,-1.7529,-0.84178,0.60244,-0.35062,0.66496,0.43673,0.80905,1.1243,-0.60188 0.96246,-2.3318,-2.1713,0.58356,-1.0954,-0.24087,-0.57049,-0.67438,-0.44107,0.56575,-1.8167,1.8704,-0.86377,-1.5955,-0.10514 -0.83368,-1.3988,-3.1312,1.8353,-1.1048,0.0041733,-1.6165,-0.26092,0.032863,0.097822,-0.50268,0.6719,-0.88307,-0.78556,0.96069 4.438,-1.5605,2.0213,1.6262,-0.074154,-0.29813,-0.99618,-1.5686,-1.3638,-0.87679,-0.24008,-0.18434,-0.46301,0.26389,-0.17421 -0.96342,-2.9811,-0.89443,0.91815,0.27296,1.6759,-1.6552,-1.5658,0.6338,1.6716,-1.152,-0.056323,-0.32351,-1.282,-0.10278 2.0669,-1.4421,-3.3797,1.1296,-0.95967,1.443,1.967,0.18197,0.81009,-0.88952,0.11145,0.83416,0.82248,0.30999,0.94901 -1.0031,-2.3737,-2.1393,1.6787,0.86368,0.65553,-1.2943,0.40149,0.60097,0.065406,-0.5668,-0.49715,-0.55384,-0.73705,-0.41769 -0.75506,-0.59555,2.3054,-0.1375,0.32803,-0.18961,-0.2263,2.3838,-0.95733,-2.5707,2.0114,0.62439,0.090504,-0.97906,-0.80778 -0.70295,-1.5273,2.3091,-1.5675,-1.9229,-1.3794,0.97925,1.6726,-1.4787,-1.7213,-0.98514,-0.085839,-0.92551,-0.34392,-0.12155 -0.18123,1.4222,1.1894,1.887,2.1358,-0.55529,-0.53735,3.0071,-0.44699,1.425,-0.8804,0.049328,0.41211,-0.038136,-0.82056 -0.00043981,-2.5492,-2.2479,1.8678,-0.31031,1.2046,-1.5468,-0.49993,-0.069244,0.32978,-0.89318,-0.34302,0.24931,-0.97426,0.97439 0.085015,-1.6954,-1.5437,0.59234,-1.2246,1.0121,-0.87351,-2.3303,0.012914,1.106,-0.8218,-0.012098,-0.52394,-1.3251,-0.19235 -0.51032,0.4325,1.7984,1.7166,0.25116,0.60185,-1.2692,2.3177,0.18361,0.79551,1.8845,0.36854,-1.2549,1.3602,-0.058152 2.6548,0.59136,0.89354,1.3311,0.57341,-1.3551,-1.0192,1.0747,-2.5453,2.1637,0.33931,-0.26232,0.86575,0.09655,-0.34841 2.7783,0.058038,-0.41659,-0.34171,-2.5472,0.19616,-1.5934,0.30729,0.74964,-1.0093,-0.41542,-0.065668,0.57255,0.1194,0.10691 -2.888,0.15163,-0.54581,-0.81499,-1.107,-2.088,1.4376,-0.15767,-1.1373,1.2477,0.30336,-0.48766,1.3413,1.3282,0.16288 -0.14939,2.92,-1.188,1.1717,-0.29223,-0.34842,-0.49927,0.42337,-0.16838,0.93776,-1.6003,-1.0108,0.33978,0.99468,0.17109 -0.71084,1.736,-1.5127,1.9979,-0.38128,0.01689,1.0957,0.41663,-0.48284,1.0949,-2.4395,-0.54057,0.25692,0.27882,1.3171 2.6713,-0.44197,2.5929,0.27897,0.58015,-1.3362,-0.47142,0.26526,-1.886,1.0961,2.6081,0.28883,-0.23339,0.41932,-0.098584 -1.5669,0.95699,-1.2823,1.1164,-2.0122,-1.1033,1.9738,-0.42109,0.38659,1.0218,-0.68417,-0.17724,0.38489,0.70216,0.82253 4.4047,-2.7348,-3.0073,-1.289,0.37518,-0.56428,2.3257,1.2694,-0.44452,-0.73763,0.29173,1.8494,-0.34198,-0.72459,-1.0237 -0.80057,1.2197,-1.3713,2.5178,0.84768,0.54523,-0.13375,1.44,-1.2682,0.74615,-0.8629,-0.85969,-0.0032366,0.32516,0.9384 -2.4437,1.4718,0.57958,0.83437,2.0933,-1.084,1.3284,3.1949,-1.0352,0.74635,-0.58345,-1.1879,-1.4945,0.74007,-0.45315 2.3983,-0.88323,-2.5668,0.13579,-1.1537,-0.30597,1.8759,0.51206,1.9012,-0.059427,0.16488,0.45919,0.55582,0.50007,0.51743 -1.4573,0.24004,-1.9587,1.5035,-1.4173,-0.63138,1.8817,-0.57798,0.40194,1.1269,-0.63046,-0.64616,1.4493,0.26477,0.093867 2.5705,-2.0591,1.9824,0.65597,-2.8466,0.48394,0.5689,0.6763,0.47752,-1.2561,-1.018,-0.2488,-1.256,-0.78739,-0.22461 -0.33073,-0.98136,1.2436,2.0365,-1.8174,0.47858,0.13438,-1.2441,0.45552,-0.50035,1.3294,-0.29182,0.045886,-0.72431,1.3746 5.0508,-1.0404,0.3163,-1.2923,-0.38514,-2.5769,0.14177,-0.87272,1.0121,-1.0847,0.081896,-1.1034,-0.95058,1.4165,1.0998 -0.68529,1.6563,-1.6753,2.8221,0.22748,0.079869,0.66335,0.12944,-1.1136,-0.438,-0.81438,-0.59572,0.87896,0.56052,1.1022 0.015481,-0.11504,-0.28108,1.9485,-0.7265,-0.0095767,-0.65306,1.391,0.92239,-2.7805,0.45286,0.15023,-1.3109,0.22477,-0.22456 -0.93607,2.4052,-1.4432,1.1766,-2.1059,1.6266,-0.57929,0.50374,-0.96249,0.52082,-0.076492,0.64874,0.70393,0.17165,-0.11543 0.40006,0.79573,0.46146,2.5721,-0.7612,-0.40815,1.3447,-1.7746,-1.0011,-1.2603,-0.91055,-0.45738,1.1848,0.05471,1.9195 -1.3807,1.5892,-1.293,2.0162,-1.3856,0.064386,1.4511,-0.30115,-0.65393,0.77679,-0.57818,-0.28525,0.50834,0.81845,1.37 4.6688,-2.5438,0.48726,0.055241,0.81754,-0.88178,0.4859,-1.229,0.15311,-0.67348,1.7229,0.94133,1.7582,-0.49954,-0.41907 -2.0134,1.119,-2.3966,0.12965,-1.7091,0.66388,0.58406,0.12461,-0.16913,1.1814,0.8061,0.96671,0.023621,-0.094159,-0.71525 2.2009,-0.6318,1.4493,2.4836,-1.1147,0.1518,0.5355,-2.5199,-1.7687,-1.8761,-0.65517,-0.24604,0.26305,-1.0079,0.58853 -0.3087,2.4705,-1.1085,1.7355,-0.6044,0.14075,0.77395,0.27336,-0.53114,1.2467,-2.414,-0.61652,-0.56479,0.1821,1.0764 0.71258,0.14683,-2.6974,1.5332,0.94453,0.82229,-0.70719,-0.20394,-0.55756,-0.94563,2.3534,-0.98172,0.23313,0.22299,-0.22226 -0.54875,1.7875,-0.65847,2.3708,-1.1941,0.1821,0.42057,-0.79138,-0.58663,-0.71599,-0.42367,-0.1111,0.53233,0.88437,1.4086 -0.16507,1.6298,0.38282,1.0896,-0.8969,-0.22251,-2.277,0.55512,0.36206,-0.53934,1.7557,0.94456,-1.3218,0.40108,-1.2143 4.3504,-4.661,-0.89125,0.32384,-0.23193,-0.011555,2.0451,1.8939,-0.39775,-0.4689,-0.66061,1.3002,-0.032074,0.96821,-0.09572 1.1766,-1.461,-0.54023,3.5362,0.27867,-0.54859,-0.99437,0.14981,0.34409,-2.242,0.98308,0.075277,0.80383,-0.12122,-0.36568 -2.5492,1.151,-0.56656,0.081097,-1.3599,0.61349,0.03028,1.3341,0.15397,0.040077,1.5536,0.33831,-1.0833,-0.21186,-1.2638 4.1934,-2.7794,-0.324,0.92839,0.90111,-0.29207,-0.29809,-1.6614,-0.69249,-0.66007,2.2468,0.19855,1.6375,0.070246,1.116 -1.0476,-3.2701,1.0686,2.4539,0.90452,-0.021543,-0.064668,-0.039449,-1.0451,-0.94467,2.4298,-0.69461,-1.2138,-0.76968,-0.93749 -1.8977,3.0075,-0.3718,0.79958,-0.22663,-0.36215,-0.53523,1.942,-0.054573,-0.449,-0.12774,0.78933,-0.63119,0.87028,-0.64886 2.5281,-0.46242,2.1467,0.17709,-2.8459,0.1175,-2.0171,0.60761,-0.36127,-0.5947,-0.57499,0.42494,0.66091,-0.58892,-0.60654 2.5066,-2.4914,-3.2596,0.49184,-1.7194,2.0476,1.2554,2.3269,0.66651,0.51012,-1.0051,1.4131,-0.083409,0.19701,-0.67825 0.25131,-3.7534,-1.7743,1.3571,-0.69603,0.15386,-0.058998,-2.1987,-1.6911,-0.59779,-1.3353,1.0837,0.97524,-2.5523,-0.17227 -2.3669,3.2207,0.83017,0.28066,-0.82475,-0.48525,0.89533,0.91227,-2.0484,0.078867,-0.11738,0.60909,-0.32171,0.44722,0.21781 2.0554,0.011629,-0.7867,0.87155,-2.5159,1.623,-0.14865,2.2324,0.34077,0.088982,-0.90128,-0.70717,-0.76957,1.7964,1.0264 3.7324,-0.1259,-1.5192,-1.8424,-1.3757,-1.3926,0.87932,-0.28361,1.5405,-0.48801,0.63409,-0.71985,-0.1008,0.89477,0.55967 -1.707,-1.949,-2.9505,1.6703,-0.44287,-1.3697,0.11075,-0.9399,-2.1588,-1.7035,-0.41345,0.33218,-0.62562,-0.63927,-0.50189 2.339,-1.4812,1.8342,2.6713,-0.42192,0.23643,-2.2329,-0.93366,-0.92455,-0.68645,0.76824,-0.35805,-0.15778,-0.07627,0.59284 1.6276,1.3757,-2.9783,0.70625,-0.56637,-0.2162,0.20651,-0.12004,1.8985,0.75294,-0.82856,-1.0075,0.29608,-0.06556,-0.30462 1.2129,-0.70817,1.8331,3.0777,-0.54865,1.6167,-1.8086,-0.10617,-0.40737,-0.1485,0.97553,0.076092,-0.74488,0.11386,0.70281 -1.6256,-2.444,-2.4581,0.77241,1.0226,-2.164,-1.3233,0.224,-0.46956,-0.52616,-0.56701,1.3525,-1.7272,-1.138,-0.60652 2.0302,-0.94488,-0.037825,2.0178,2.7161,-0.82939,-1.4017,0.68858,0.80986,-1.6363,0.95865,-0.87501,0.0044178,-0.44843,-0.63904 -1.1831,1.9451,-1.636,1.7675,0.53891,-0.018879,-0.47811,2.8762,0.063841,0.30312,-1.4352,-0.59154,-1.6312,-0.058528,-0.51036 -0.23246,-2.3932,1.8403,1.1023,-2.0194,0.25173,-0.042286,-0.3733,0.29611,0.8876,1.4908,-0.40172,0.56271,-1.3438,-1.0216 3.5004,-1.6938,-2.6929,-0.1005,0.32619,0.31338,2.7755,-0.35256,0.70341,-2.1894,0.79033,0.049746,0.85847,0.25649,0.80966 -0.48231,-0.81058,-3.4286,1.3238,0.20053,-1.4826,-0.11167,0.82286,-1.7132,-0.87803,-0.4693,0.53083,-0.88267,-0.67726,0.49426 0.37516,1.8323,-1.9173,1.647,0.52215,0.48603,-0.95291,0.25282,-0.33414,1.1278,-0.4806,-1.4876,0.02414,0.38537,0.25788 -0.066211,3.0118,-2.46,0.6489,-0.49764,1.51,-0.58857,0.60458,-0.84314,-0.31607,-1.3561,-1.4116,0.24953,-0.30718,-0.14946 3.4574,-0.93855,-0.10618,-1.155,-2.7753,0.97357,-1.2407,3.1029,0.17164,-0.38003,-0.9558,-0.16999,-0.73478,1.0964,-0.19877 -1.7583,-2.7615,-1.2466,0.82448,0.68211,0.33237,-1.4447,0.86732,1.276,0.10754,-0.6372,-1.8269,-1.5072,-0.7541,-0.16757 2.0397,2.4121,-1.6578,-2.0375,-1.4196,-1.3335,-0.89665,-0.94331,-0.0068923,-1.4301,0.13623,-1.5126,1.016,-0.16061,0.039556 0.11691,0.5073,-1.5315,3.2496,1.9741,-0.50722,0.24758,1.3252,-0.75083,-1.2056,-0.3147,-0.802,-0.52089,-0.073746,-0.11518 1.7071,-1.0577,1.8675,2.4828,-0.63618,0.085983,-1.1473,-2.2032,-2.3769,-1.8378,0.92578,-0.60131,-0.18201,-0.34473,0.97136 1.7393,0.41309,-1.6149,-1.085,1.9248,-2.5546,0.19817,3.1114,0.39412,0.28231,0.87105,-0.90413,1.3371,0.83566,-0.2329 0.95096,2.1508,0.67973,-0.59659,-1.6288,0.13414,-2.7168,-1.0421,-1.0868,-2.0656,1.3305,0.10132,0.99814,-0.27131,-0.25363 1.7047,1.3568,1.674,-1.3722,-3.2946,-0.51202,-0.77377,-0.031235,-0.94695,-2.3105,-1.0903,-0.2819,-1.0906,-0.624,-0.15996 2.0902,-1.2015,2.6634,2.7753,-0.40161,-0.51682,-0.15549,-1.3517,-1.3923,-0.65319,0.99222,0.24889,-0.15564,0.39029,0.66968 0.66841,1.4305,-0.87153,3.0658,-0.15991,-0.16317,0.50766,-0.7593,-0.7737,0.90347,-0.54896,0.19755,0.86572,0.86517,0.073377 0.24445,3.2974,0.30498,0.0060244,-1.6661,0.00043329,-1.1636,-0.93948,-2.1991,-2.3184,0.21165,-0.071259,0.65356,0.041887,0.3799 -0.56091,0.8943,0.38283,2.2308,-0.14989,-0.95999,-0.19818,0.48349,-0.10625,0.86323,0.82393,0.77986,-0.80813,0.94568,-0.3989 2.1379,1.8432,-0.56932,-1.0053,-1.187,-1.6596,-0.7584,-0.78175,-0.16585,1.4375,1.1615,-1.0315,0.0054363,0.34363,1.4215 4.032,-0.73952,2.0928,-0.91938,-1.8413,0.209,-2.5823,1.6172,-1.2834,0.52025,-0.75934,0.38824,0.72917,0.0098934,-0.32479 -0.88075,3.0647,-2.0279,-0.045288,0.51522,-0.18457,-0.47433,2.3941,-0.45517,-0.34437,-1.4782,-1.8188,-0.14016,0.46539,-0.2743 1.6015,2.808,-1.2505,-1.1839,-0.59896,0.18591,-0.1362,1.1153,-1.263,-0.83215,-1.8158,-1.6199,1.0902,0.043747,-1.0105 1.599,1.1183,-0.91718,-0.58702,2.4346,-1.1067,-1.7447,2.7316,0.11767,1.5562,1.7551,-1.015,0.85961,-0.77186,-1.3014 -0.092723,0.79509,2.9256,-0.56114,-2.5327,0.75485,-1.9902,0.63344,-1.9567,-1.0629,0.92687,0.72094,-0.18023,-0.83042,0.67246 -0.19261,1.2996,1.3736,0.75036,-0.77361,0.12177,-2.6426,1.0705,0.38912,-1.1024,2.0764,1.3265,-1.3155,0.82083,-0.90842 2.8089,1.426,-0.70842,-2.4533,-1.8987,-0.37343,-1.936,-0.54703,-0.37211,-1.8116,0.96611,-1.7984,0.42338,-0.42269,0.65263 -0.90611,0.89712,2.5217,-0.051918,-3.0558,0.11326,-1.2056,0.073142,-1.1366,-1.4197,1.1634,0.81919,-0.57318,-0.21928,0.85072 -1.2632,3.1945,-0.74637,-0.28218,-2.1642,-0.51516,0.94204,1.0093,-1.5537,-0.15333,-1.4054,0.056519,-0.012887,0.4343,0.82333 0.11659,0.87262,2.3643,-1.4558,-3.3669,-0.066243,0.10254,-0.41373,-2.515,-1.777,-0.18921,-0.4481,-1.2894,-0.89393,0.21371 0.95409,0.47515,2.2012,1.8038,-1.484,-0.43951,-1.7374,-0.62445,-0.01168,-0.020405,0.54219,1.2668,-1.1708,0.64502,0.51131 0.2451,3.4687,-2.1703,-0.52826,-1.0467,0.20517,-0.78884,0.95793,-0.82291,-0.36213,-1.4461,-1.1516,0.29267,0.27558,-0.42039 -3.6359,0.026477,-1.7137,-0.9916,-0.59194,-0.082274,0.48946,-0.63241,-0.84976,-0.37732,1.7018,0.47566,-0.60375,-0.27037,-1.6753 3.9619,0.1173,-1.1714,-0.20853,0.1982,-1.1115,1.0478,-1.5263,1.0673,0.50603,0.17069,-1.1261,0.40728,-0.0058424,0.31598 0.10519,2.3257,-1.9168,0.43962,-1.8966,0.37519,-1.9805,0.26859,-0.090943,-0.5954,0.99515,0.2325,0.49434,0.4295,-0.97381 -2.8699,-0.015096,-2.0549,-0.61369,0.74611,-1.0562,0.63572,0.31095,-1.0463,1.5548,-0.083724,-0.24769,0.22196,1.7461,-1.1091 -0.18722,0.35417,2.1511,-0.58398,-3.1665,0.59817,1.2223,-0.85434,-1.1129,-0.63199,0.44381,0.51148,0.33056,-0.6917,0.23259 -2.9879,-0.11513,-0.67865,-2.0516,-0.052489,-0.98025,0.9174,-0.99958,-1.3756,1.2971,-0.38642,-0.63278,-0.19768,1.3784,0.089358 2.8967,-2.1578,-0.67915,1.592,1.1141,1.481,-0.73739,1.6066,-0.57672,2.3589,1.2712,1.1279,2.15,0.83778,-1.0192 -3.2977,-0.042143,-1.3097,-1.5934,-0.86016,-1.0346,0.82737,-1.5876,-1.8485,-0.13041,0.35828,-0.035645,0.72913,0.94468,-0.39215 -3.1698,-0.28983,-0.27268,-0.51994,-0.04603,-1.3398,1.1386,-0.5193,-0.38726,1.2444,0.83105,0.11334,-0.39853,1.2154,-0.74545 1.1279,1.1628,-3.0567,-2.164,0.21424,1.0257,0.50441,1.7383,-0.90749,-0.031623,1.8663,-0.3585,0.016587,-1.2727,1.2047 0.068853,0.83488,-1.7049,2.0156,2.8596,0.8683,0.074941,1.3648,-1.524,-0.73774,-0.56291,-0.90171,1.8174,-0.48256,-0.63617 1.1468,1.2447,-1.5263,0.18247,1.0743,-0.80706,-1.101,0.61478,2.2578,0.80829,0.16892,-0.9108,1.7296,-0.26404,-0.47925 0.0018212,0.42698,-1.168,2.0086,-0.53842,0.86771,-1.2335,1.7756,1.0592,-0.63087,0.8116,-0.50026,-1.6203,1.0241,-0.32842 -3.2767,0.88315,-1.3362,-0.54235,-0.21657,0.047378,1.8741,0.56122,-0.099923,0.25511,0.045835,-0.017651,-0.14537,0.59529,-1.0224 -1.2049,-0.70236,-0.13542,-2.1151,-1.2801,-2.4821,1.5359,-1.5914,-0.98477,1.3769,-1.3038,-1.0767,-0.27057,1.4146,0.75397 -3.2312,-0.41734,-2.0569,-1.4601,0.11051,-0.033847,0.74657,-1.6331,-2.2914,-0.31612,-0.46347,-0.5318,-0.17855,0.30851,-0.32835 -0.35852,0.10006,1.4961,-0.0064729,-1.0893,-2.1585,2.7625,-1.0989,-0.23017,1.1871,-1.1433,-1.6418,-0.66579,1.3114,0.82805 4.5723,0.078871,-0.61601,-2.99,0.65024,-3.067,1.8012,1.1259,0.78491,-1.4319,0.31387,0.17799,0.57901,0.53353,-0.59177 -3.0292,-0.51038,-2.5084,-1.6713,1.5135,0.59869,0.089608,-1.1058,-1.5781,0.55762,-1.5803,0.39311,-0.3563,0.59315,-0.030732 0.91476,0.99904,-0.52189,1.828,3.0282,-1.8817,-0.039405,3.0593,-0.87059,-0.48815,-0.47484,-1.3795,-0.55851,0.84281,-0.46768 2.1246,2.3004,1.2805,-1.5129,1.2346,-1.4564,-0.82054,0.59169,-1.4059,2.1782,0.44992,-0.31118,0.69719,0.17049,-0.63183 -1.4734,0.0049567,-2.3208,-0.86803,2.0035,-0.54832,-0.59492,0.60206,-2.1269,0.075967,-0.076542,2.5673,-0.61591,0.73408,0.79204 0.86309,0.19107,-0.53952,1.098,-0.45414,2.1364,-2.0132,1.9655,-0.65224,-0.43305,0.038113,-0.21963,1.6065,-0.14507,-0.19943 4.1527,-2.4183,-2.2104,0.71637,0.20852,-0.16912,1.3379,-0.90953,0.2073,-2.8501,0.54405,-0.3386,-0.33625,-1.3612,-1.0974 -2.0165,-0.39571,-2.1993,-0.79908,1.3392,-1.8677,-0.43783,-0.18857,-2.4812,1.2663,-0.40873,1.3944,-0.15938,2.4099,0.33694 3.2692,-2.8075,-2.981,0.1972,-0.52196,0.11738,2.429,0.80522,1.6351,-1.2909,1.3945,1.9857,0.21345,0.8003,0.3545 1.5809,1.4799,-1.9162,-0.50137,-0.85472,-0.5592,-0.90318,0.55185,1.0117,1.642,-0.17567,-1.5403,0.45968,0.053222,0.61887 -0.2186,0.63133,1.7425,2.3502,-1.5985,-1.4001,-0.77217,-0.78505,-0.17387,-0.75693,0.59135,1.2678,-0.59999,-0.16416,0.50731 2.0135,2.6664,-0.17664,0.08622,-1.5293,-1.8434,-0.20025,-0.19793,0.27993,-1.0064,-1.4698,-1.0322,-0.64115,1.2816,0.34129 0.19187,0.29591,-0.092711,1.1426,-1.8402,-1.8865,0.78054,-0.65652,0.0037958,1.2172,0.6738,0.39798,0.39741,1.0422,0.84698 2.2965,1.5031,-1.6827,1.0142,0.35136,-0.076772,-0.09963,-0.75874,0.39649,0.801,-1.4024,-2.4209,0.9311,-0.60654,0.12548 4.533,-1.3072,-0.87727,1.1989,-1.3893,1.6339,0.7219,2.6164,-0.41853,0.32778,-1.475,-0.93584,-0.45927,1.33,-0.28422 4.7141,-1.5146,1.2202,1.2307,0.14054,-0.38853,-1.6058,-0.55396,-0.93011,0.37194,1.3781,-0.44289,0.037417,0.88436,0.094995 2.6195,-1.0317,-1.4996,0.7371,-0.23942,-0.95046,0.3151,-0.76582,0.44482,-0.018367,2.9499,0.33007,1.2473,0.78351,0.81061 -0.73623,-0.3711,2.0962,1.8218,-1.5558,2.2457,-1.0553,0.35268,0.47923,0.61649,1.6517,0.038075,-1.0381,-0.19053,0.85397 -0.62629,-1.3551,0.26105,2.8053,-0.67549,1.5138,-0.11407,0.63176,0.89313,-0.37525,1.1752,0.051216,-0.62843,-0.90016,0.41565 4.3744,-0.86252,-0.70494,0.46334,-1.6501,0.97812,-0.95422,0.74522,0.68352,-0.74648,-0.9494,-0.82869,-1.1696,0.39983,-0.53198 3.6817,-0.20948,-0.61688,-2.2056,-2.4186,-0.19559,-1.9569,0.29949,0.416,-1.2264,0.4627,-1.128,0.072103,0.77641,0.6201 0.24474,0.36391,0.24189,2.3193,-0.29073,-0.15295,-1.8967,1.3278,0.91553,-0.85526,1.5135,-0.12641,-1.6146,0.34196,-0.46801 3.6965,-1.5063,-0.79157,1.6125,-1.4591,2.5425,0.89779,2.6425,-0.58815,0.059722,-1.0569,-0.41618,-0.83178,1.4654,-0.74029 -2.6188,-1.2986,-0.82454,0.97,1.2791,-1.2572,1.1802,-0.66712,-0.047002,-0.58145,0.96687,-0.89321,-1.1961,0.27465,-0.87215 1.2614,-0.55244,-1.7952,0.72803,1.3276,1.7381,-1.2047,0.75579,-0.12675,-2.5972,2.1446,-0.85024,-0.94269,0.35635,-0.037681 -2.1911,1.5692,-1.4661,0.45715,-0.33074,-0.25784,0.22837,2.9396,0.71042,0.56873,-0.57124,0.038123,-1.0032,-0.28145,0.50948 0.24336,1.4323,0.59108,0.55624,-2.8385,-1.5306,1.4284,-0.42889,0.23558,0.063028,-1.2021,-0.056036,-0.10464,0.82908,1.3574 0.65304,-1.0359,1.0349,-0.88087,-3.8375,1.0029,0.82685,1.2769,0.80945,-0.77033,-0.58483,-1.4225,-1.6858,-0.39312,0.58075 1.2936,1.2947,-1.7456,0.53363,-1.0058,-0.7488,-0.88386,-1.0573,1.1997,0.96527,0.82988,-0.9452,0.67429,0.97064,0.85411 5.1212,-4.1377,-1.2186,-1.0524,-0.56889,0.58315,2.3674,2.3475,-0.82195,1.4289,-0.3135,1.9209,-1.028,0.65931,0.065583 0.95714,-0.35452,-0.29917,1.7203,-0.049653,-0.60066,-2.1685,1.0561,1.6726,-1.1845,1.3579,0.4169,-0.16906,1.075,-1.0311 1.7232,-0.012817,2.5552,0.85726,-2.2441,0.079514,-0.0072841,-0.71053,0.50212,-0.30224,-0.91754,1.2806,-0.87717,-1.2163,-1.287 4.7833,-1.0474,-0.8237,0.47212,-0.99504,2.2345,-0.56627,0.30542,-0.87866,0.15232,-0.88533,-0.56293,-0.12574,0.37738,-0.35357 1.3639,0.5343,2.0179,1.1129,-1.4728,-2.6166,1.0769,-0.29054,-1.635,0.00049046,-0.43753,0.12827,0.9468,1.3556,0.31047 -1.7962,-1.4277,-0.099935,0.68916,0.12937,-2.5084,0.91264,-1.5289,-0.69721,1.6144,0.8276,0.10026,0.94888,0.83899,-0.72712 -1.337,-3.9238,-0.9987,1.1632,0.52444,-1.7423,-1.9345,-0.076385,-0.86862,0.33124,0.36448,0.9455,-0.46334,-1.0318,-0.7044 -0.23377,-3.2746,2.1253,-0.75066,-2.3117,-0.41721,0.21484,-0.59727,-0.70947,0.65418,0.61971,-0.16728,1.0209,-0.85682,-1.0697 0.38821,-2.8362,-0.86507,1.1572,-0.6932,-1.3472,-1.8735,-1.2601,-0.92108,1.0783,-0.68952,1.465,-0.11486,-1.0109,1.3523 3.798,-3.2554,-2.0761,0.72795,0.71581,-0.15436,3.5165,0.37286,0.51998,-1.6803,0.13009,1.456,0.38755,0.95129,0.33531 3.8001,-0.71259,-1.386,-3.9551,0.76696,-2.6549,2.4737,2.7679,-0.40042,0.16441,0.60554,0.82746,0.52661,0.54845,0.60337 0.59276,1.583,0.0065776,-0.0035317,-3.2434,-0.15816,-0.18939,-0.18096,-0.057055,-1.0767,-1.0486,0.48755,0.056174,-1.3606,0.48393 0.7738,-1.5236,-0.66885,-1.0006,-0.91057,-2.4976,0.35601,-1.6074,-2.0769,0.72885,-0.92051,1.8537,1.2453,0.15485,-0.26736 0.8621,-4.8782,0.0047193,1.3684,0.033838,1.3498,-1.1219,0.21344,-1.4042,2.1668,-1.1489,-0.22044,1.4043,0.047489,-0.17654 3.7205,1.2652,-1.004,-0.14441,0.34724,-1.4801,0.80641,0.11773,-0.012257,1.7128,-1.382,-1.3995,0.64573,0.023082,-0.81781 -0.75439,2.8211,1.3513,1.0429,-0.88276,-2.0339,0.14251,0.54995,-1.4554,0.48182,-0.24175,0.021998,0.56021,1.4493,0.12587 1.7819,-2.8513,2.8461,1.0699,-2.3006,-0.44297,1.2458,-0.6023,-0.86094,0.71022,0.31333,-0.52513,-0.37061,-0.84589,-0.56846 -1.6918,-3.3902,0.09661,1.5148,-0.082234,-1.034,-0.50398,-0.64832,-0.42982,0.38201,1.5729,-0.37602,-0.47043,-0.8854,-1.3346 -1.4802,-1.9488,1.1321,-0.099707,-1.4681,-1.6592,0.72561,-1.144,-1.0455,0.81528,1.3428,0.25406,1.1869,-0.44045,-1.5581 -1.8847,-1.9381,-2.7124,-0.27795,0.2248,-1.9082,-1.1468,0.51089,-1.1534,-0.78295,-0.1585,1.4546,-0.79186,-0.1298,-0.47375 3.0833,-2.3843,-1.1418,1.2093,-0.27449,0.77512,1.4551,-1.3712,-0.24885,0.12032,1.2252,1.1479,1.2419,0.23368,1.5215 -1.0832,-3.6625,-0.19062,-0.1258,-1.5351,-0.40583,-1.7684,0.052028,0.34807,1.1902,-0.016095,0.045543,0.6899,-0.64215,-0.57902 0.72061,-0.70769,-1.6284,-0.51928,-0.91927,-2.0468,0.15244,-1.0716,-0.68395,1.6518,-2.4362,1.6022,1.0719,0.28851,0.6783 1.3502,0.51571,-0.154,3.1813,-0.32827,-0.57488,-0.38918,-1.5037,-0.81389,-1.1478,0.92971,-0.21181,0.55972,0.83906,0.45657 -0.19235,2.3771,-0.8659,0.75695,-1.0772,-1.0874,1.2658,1.1669,-0.17762,0.60614,-2.1867,0.041406,0.46004,-1.0707,0.46972 -2.6724,-2.4192,-0.02359,-1.0794,-0.63719,1.0507,-1.6876,1.3211,0.80575,0.72471,0.52145,-1.3431,-0.17816,0.081311,-0.65792 -1.9523,-2.8679,-0.0050854,-1.3688,-0.66625,1.0579,-2.8645,-0.9352,-0.07828,1.218,-0.46572,0.58713,-0.3448,-0.52851,0.028091 0.074327,2.592,0.33454,1.3146,-0.6659,-1.1801,1.1589,0.45753,-0.55596,1.0588,-2.4724,-0.94855,-0.98764,0.44082,1.1709 4.0262,-2.228,-1.7259,-0.026543,-0.88572,-0.48874,1.8076,-0.54399,1.3358,-0.35908,0.37273,0.30502,-0.096746,0.224,0.55565 -1.5184,-3.2397,-1.4716,0.039204,-0.34246,0.23246,-2.3893,1.8674,0.36444,1.3383,-0.90301,-0.78675,-0.1769,0.6546,0.61438 -0.26595,-2.9808,2.0487,-0.42439,1.5117,1.8322,0.18463,0.90284,0.2187,2.9885,-0.96935,-1.6263,0.49787,-0.52344,-1.1384 2.3936,-1.7718,-3.7321,1.7433,-0.74884,1.9834,2.2655,1.2834,-0.30129,0.156,-0.60679,0.49282,0.66129,-0.11894,-0.38667 -2.2527,-2.051,-2.4675,0.31408,-0.6894,-0.42122,-1.9188,-0.24189,0.63055,0.099676,-0.47493,0.16431,-0.79695,-0.96291,0.22497 -2.0251,-2.7221,-1.7587,-0.42715,-0.73798,0.3147,-2.7699,0.78645,0.26403,-0.08876,-0.32254,0.19367,-0.55669,-0.63752,0.39049 -0.95282,2.5618,-2.3328,-0.30372,0.72008,1.309,-1.762,1.3693,-0.16819,-0.07093,1.1288,-0.87626,0.75711,-0.57053,-0.66826 -0.52631,-0.19917,-1.8473,1.1391,-1.6176,-0.38539,-0.05062,1.7169,0.91941,-0.73351,0.7668,0.32894,-0.076217,-0.084484,-0.54708 -1.5848,1.4604,-1.0443,0.62909,-1.7459,0.78225,0.47683,0.83073,-0.10935,1.021,0.49279,0.87098,0.034781,0.75342,0.46523 -1.7444,-2.9672,1.049,-0.87628,-0.93565,1.5026,-1.8062,1.5821,0.36923,1.3443,0.58999,-1.6085,0.60696,0.3525,-0.71273 -3.395,-2.3997,-0.80899,-1.8148,-0.30829,1.4171,-2.1712,-0.25878,-2.0383,-0.0080821,-0.24125,-0.81121,0.13849,-1.1248,0.10897 -2.7257,0.4835,-0.13505,-1.294,0.02786,-0.27936,1.9564,0.55896,0.15641,0.15289,-0.41003,-0.35048,1.7194,-0.33523,0.91242 -0.99946,-2.1467,0.52004,-2.3053,-2.8582,1.8481,-1.2881,-0.78715,-0.63781,0.71469,-0.75606,-1.8465,-0.60385,0.42735,0.14921 -2.0128,-2.1902,0.30317,-0.72841,-2.2742,1.009,-1.8117,-0.19701,0.27362,0.46559,0.71267,-0.99629,0.55842,0.36989,0.039959 0.7596,3.3252,-2.8225,-0.17092,-0.12203,0.45285,0.11796,0.78558,-0.65923,-0.75305,-1.4865,-1.9314,0.12433,-0.32122,-0.58058 1.2725,-2.0591,2.3499,-2.1447,-3.5422,1.6395,0.7351,1.6514,-0.54958,0.4386,-0.59913,-1.7461,-1.3312,0.64697,0.041213 1.9352,2.5948,-1.4135,-1.7096,-1.6823,-0.20504,-1.4469,-1.131,-1.1896,-0.37356,1.4435,-1.5813,0.23704,-0.23604,0.27259 2.7937,1.8214,-1.5328,-0.74411,-1.2127,-0.8452,-0.11365,-0.87362,1.2824,-0.5042,-0.85366,-1.1463,0.30621,0.68531,-0.89152 3.8717,1.2456,-0.27909,-2.6779,-0.90005,-2.0275,-0.10161,0.61082,0.55678,-1.6963,-0.30107,-0.95596,0.57162,1.0365,-0.19558 3.4128,-2.2904,2.3434,0.92869,-1.3251,-2.292,1.3695,0.6233,-1.306,-1.5476,-1.0712,0.65377,-0.23448,-0.36828,-1.1039 -1.0041,-3.1494,1.8201,1.6324,-1.2381,-1.4661,0.15427,-0.28986,-0.48749,0.47511,1.2303,-0.16345,-0.25882,-1.1516,-0.27348 2.6145,-4.3394,2.4454,1.0345,-0.81848,0.80792,1.1719,-0.47243,-2.2709,0.71574,-0.6449,-0.28984,-0.392,-1.0611,-0.069663 -1.7777,-0.010318,-3.0888,0.80143,0.1333,0.65354,-0.01676,0.016589,-0.092171,0.30845,0.69378,0.43039,-0.72813,0.10067,-1.0461 2.0601,-2.6946,3.0597,1.0043,-1.6806,0.91215,-0.52646,1.9181,-0.89513,1.8812,-0.71539,-0.094911,0.89863,-0.26318,-0.27715 -1.4711,0.9153,-1.0961,3.0286,0.81941,0.845,0.27542,0.88059,-0.49468,-0.57287,0.46747,0.36376,-1.9224,-0.22859,-0.11995 1.2973,-4.3779,2.115,-0.24116,-1.6613,0.021716,0.59156,-0.87438,-1.1788,1.9878,-0.81309,-0.7427,-1.0182,-1.1933,-1.0624 2.8677,-1.039,-3.3354,-1.0599,-1.8814,1.4527,0.3972,2.1732,0.6412,0.96148,0.35063,-0.2389,0.23643,1.2175,0.15349 0.10466,-1.911,2.6902,-0.27589,-2.6625,-0.69757,0.39861,-1.267,-0.2805,0.66317,0.45301,-0.39324,0.018124,-1.1371,-0.83054 0.92988,-3.4626,0.99308,-0.81134,-1.8668,-1.3672,1.6723,-1.6546,-0.1178,0.79873,-1.0747,-0.58419,-1.0378,-0.65456,-1.4259 -0.40958,2.2637,-1.6289,1.2845,-1.3577,0.7589,-0.55038,0.64988,-0.36701,0.91763,-0.89426,0.083857,-0.19621,1.2082,-0.054239 2.0083,-1.8138,2.8216,1.7501,-1.6477,-0.82091,-1.2326,0.21548,-0.65381,0.040008,-0.07944,0.36515,0.047079,-0.73501,-0.093795 -1.7579,-4.0396,0.15463,0.48154,-0.23253,-0.16785,-1.1869,1.6862,0.61132,1.0536,0.97845,-1.375,-0.93384,-0.041854,-0.68869 2.424,1.6616,-0.89341,-1.1702,-1.1573,-0.88646,-1.6013,-1.3398,-0.37985,0.65594,2.2672,-1.1018,-0.37747,0.5923,0.67893 3.2184,-2.9894,-1.8683,-1.859,-1.5579,-0.75471,2.0571,2.6385,0.7706,-0.93624,0.93586,2.5193,0.63405,1.9173,-0.084763 0.98612,-3.6256,2.2902,-0.63952,-1.7488,-0.80246,0.76661,-1.0141,-1.1734,1.5522,-0.19635,0.344,-0.41943,-1.4588,-1.6074 3.3769,-2.702,1.4437,0.9476,-1.8161,-0.098112,0.060676,0.88316,0.071156,-1.011,-1.6099,0.18422,-0.27724,-0.68022,-1.382 2.0148,0.25455,-2.9894,-2.5647,-1.5472,0.36334,0.89657,1.1762,-0.28855,-1.5216,1.9868,0.13544,0.45166,-0.73657,1.6413 0.33116,-3.128,0.25323,-1.6503,-2.2625,-2.1503,1.8699,-0.70399,0.34646,-0.037419,-1.2087,-0.050088,-0.57074,-0.51844,-1.8052 3.4566,-2.5964,1.9602,0.68042,-2.3293,1.3123,0.61747,2.6009,0.1517,-0.15877,-2.054,-0.43453,-1.7733,0.26938,-0.8913 0.93764,1.7938,-0.47654,0.99461,0.9034,-0.14505,-0.17794,1.3919,0.89106,0.6673,-2.2869,-0.12376,1.187,0.40588,-0.75726 -2.5256,-1.7717,-1.9438,1.0811,0.77546,-0.78674,-0.54901,-1.903,-0.2197,0.72543,0.36968,1.2412,-0.3249,-0.91189,-1.0456 -1.0949,-0.61459,2.4177,1.2873,-0.42459,-3.0474,1.2893,-0.34804,-1.0203,-0.38755,1.0827,-0.3085,0.17687,0.67882,-0.0051852 1.8631,-2.0973,3.4511,-0.92093,-2.4437,-1.4054,-0.25156,1.0458,-1.3432,-0.74926,0.076291,-0.084299,-0.046839,-0.0019976,-0.59376 2.8269,-2.1051,3.8805,-1.8927,-2.0342,-0.067674,0.0016594,2.6353,-2.5902,0.7461,0.16403,0.0132,-0.67699,0.14674,-0.57833 -0.98438,2.4296,0.10377,-0.13523,-3.0479,0.13661,0.90023,-0.43833,-1.9549,-1.9832,-0.2404,0.099528,-0.41046,-0.55537,1.1922 -0.44464,1.1905,1.2227,1.013,-1.1217,-2.9584,0.25351,1.3296,-1.0014,-0.81233,0.30701,0.90434,1.5359,1.0177,-0.10816 -0.40702,1.0766,1.7748,0.55706,-1.7846,-0.020793,-0.83,-0.13697,0.96085,-0.22217,0.90548,1.6084,-0.043421,0.30588,0.79074 1.6351,1.0287,-0.85051,2.4901,-1.0263,-0.57367,0.27586,-1.2952,0.10627,-0.68308,-1.1996,-0.38347,1.0905,0.15703,0.042743 -0.88067,-2.1766,1.5396,-1.0736,-0.76271,-3.2098,1.836,-0.85163,-1.9787,1.0518,-0.12898,0.1878,1.3343,-0.28648,-1.3646 2.1358,1.8032,0.46836,-0.72626,-0.85917,-2.7334,-1.1516,-0.63378,-0.40252,-1.7038,0.22978,-0.59726,2.1814,0.55384,-0.12072 0.90781,-0.96657,-0.36404,3.0399,-1.4498,1.1009,-0.073572,-0.72432,-0.33931,-1.8258,0.046776,-0.13817,1.0159,-0.66679,0.93042 1.9484,-0.23111,3.4765,-0.17734,-1.4753,-2.6896,0.40795,0.58131,-2.6111,-0.99158,0.59526,1.4576,1.1713,0.33893,-0.82279 1.5718,0.6354,0.84128,-1.0846,-3.3161,1.834,-1.0738,1.0693,-1.0884,-1.9228,-0.93054,-0.41821,-0.3134,-0.43405,0.9186 -1.4814,-4.0944,1.0958,-2.294,-0.18406,-0.88449,-2.3974,0.20552,-2.1819,0.47513,-0.11316,1.0463,-0.25599,-0.66652,-0.27616 -0.97508,-3.4949,2.9468,-0.25997,-1.0978,-1.9919,-0.11092,0.52314,-1.1111,-0.22585,1.1186,-0.24646,0.54151,-0.69522,-1.5984 2.2335,-1.057,0.081476,1.8932,-1.7327,0.23343,-2.2397,0.28454,0.9862,-0.41764,-0.088457,-0.11782,1.0746,-0.64861,-0.35121 -2.9489,-3.5437,-0.51634,0.61506,0.22911,-1.7627,-0.95988,-0.0034348,-0.92364,-0.086614,0.43283,-0.75125,-1.8494,-1.4016,-0.80001 -0.059957,-1.4889,2.7133,1.9535,0.38704,-0.33781,0.80668,-1.444,-2.5186,-0.44094,1.5255,0.28065,-0.33162,-1.6722,0.28082 2.248,1.6196,1.6695,1.3981,2.0669,-2.4029,0.1641,-1.0935,-0.99107,0.16624,-0.1562,-1.3273,0.25149,0.89119,0.48443 1.4916,-1.9739,3.536,-0.35381,-2.3531,-0.38035,-1.1269,1.7899,-2.0128,-0.027935,0.30346,0.4496,0.32003,-0.87993,-0.46612 -0.34965,-2.5031,0.56842,2.6656,-0.30374,2.5458,0.028826,0.8168,-0.15314,1.4203,1.1992,-1.3781,0.45737,-0.0036338,-0.19204 -1.1813,-1.8193,-0.72975,-1.724,-1.0043,-2.9698,0.28975,-1.142,-1.9037,0.76398,-1.0389,0.89322,1.8206,0.1568,-0.58468 0.80729,-0.35263,2.0353,-0.56218,-2.3156,-2.066,2.6146,-0.10625,0.35358,-0.057359,-1.3829,-0.26056,-0.75825,0.91838,0.559 0.99428,0.48714,2.0631,-0.56893,-2.6811,1.4376,-0.87826,0.13368,0.88041,0.1586,-0.4079,0.70813,-0.63418,-0.96694,0.45245 3.3783,-0.64576,-0.64073,-0.54693,0.045864,-2.2981,0.077527,-0.68573,-0.21451,0.13611,3.2387,0.068628,1.4306,1.2097,1.1422 1.4027,-3.581,0.2582,-0.88189,-2.1492,-1.7694,2.3456,-0.66883,0.068069,-0.28578,-0.88907,-0.29099,-1.3131,-0.028124,-1.7747 -0.59526,-1.6994,1.5397,-1.6222,-3.1465,-1.5801,0.89439,-1.3255,-0.72234,0.14894,0.27324,-0.9074,-0.52228,0.47537,0.17515 1.5599,1.7688,-1.4449,0.37605,-1.5462,-1.3484,-0.91942,-0.55641,1.1588,-1.1655,-0.3168,-0.67644,-0.31067,1.3695,-0.28054 1.5773,-2.3626,1.6971,0.13635,-2.5987,-1.6569,2.9482,-0.20338,-0.075125,-0.19765,-1.2829,0.30685,-1.3781,-0.38249,-0.82999 1.3349,-0.056824,2.2168,-1.2907,-3.4447,0.30747,0.3774,0.63728,0.3076,-0.53894,0.3235,-0.87019,-1.2796,0.79131,1.0402 0.15188,-0.5887,2.1004,2.2455,-1.9158,0.67787,-0.68064,-0.73516,-0.70696,0.87709,1.0126,0.19158,-1.835,-0.49503,1.363 2.3647,-3.9327,1.3463,1.1649,-1.6983,0.47897,2.7417,-0.17467,-0.8961,-1.0867,-0.94564,-0.99554,-1.6644,-1.1452,-0.81238 0.066205,1.6989,-1.8036,2.2692,1.8816,-1.2163,-0.1087,1.5036,-0.97299,-0.20888,-1.3215,-2.1544,-0.12304,0.071631,0.06898 0.50417,-2.4926,-0.96132,0.079545,-1.2024,-2.3674,1.5572,-2.3524,-0.75366,0.82785,-1.5662,-0.48333,-0.62705,-0.10472,-0.44063 3.5578,-1.5631,2.3309,0.68016,-1.5893,2.1757,1.2805,1.3192,-1.2223,1.9464,-0.46427,-0.31007,-1.2035,1.1583,-0.35072 4.9357,-2.5222,0.39534,0.97413,-1.2005,0.10061,-0.4158,1.3676,-0.088378,-1.157,-1.4297,0.29461,-1.6366,0.085191,-1.746 -0.58087,-2.3885,-0.47602,-1.9566,-2.5028,-1.5838,-0.080795,-1.8097,-0.004942,0.36575,-1.2258,-0.066614,-0.32803,-0.085357,-0.14016 -0.022948,1.9558,-1.4332,2.5985,1.7897,-1.0005,0.58544,2.2038,-0.84399,-0.56392,-1.8786,-1.4301,-0.80999,0.31481,-0.38394 -0.7187,-1.1873,-0.36273,-0.26613,-2.5641,-1.5833,1.2621,-1.7376,0.27612,1.0125,-0.37715,-0.37958,0.069765,-0.093967,-0.1874 1.6564,-1.3408,2.6127,0.7605,-2.686,-1.1592,1.4862,-0.036052,0.068583,-0.20542,-1.3116,1.0713,-0.78295,-0.69565,-0.070583 0.21034,-1.2269,0.72006,-1.4113,-3.2945,-0.43375,0.21438,0.27188,-0.12335,0.2352,-0.91687,-0.5581,-1.3707,-0.38871,0.86265 2.9035,0.58336,-1.8753,-2.3944,-0.039855,-2.2561,0.83872,2.0308,-0.17547,2.0977,0.95951,-0.60522,0.05805,-0.23717,1.686 2.9409,-0.63031,0.60566,2.5265,-0.69274,0.92529,-0.90342,-1.5136,-1.0891,-2.0215,0.25064,0.073946,0.54669,0.29365,0.77571 1.8623,0.84734,-2.3274,-2.9814,-0.89023,-0.99258,0.12615,2.8053,-0.38928,0.64922,0.80604,-0.59546,0.81829,-0.10523,0.90196 3.965,-1.8899,-1.5734,-3.3509,-0.33708,-1.639,1.7375,2.0689,1.4203,-1.3279,1.4297,1.5891,0.97487,1.8429,-0.06401 2.8652,-0.77252,-1.9384,-0.20815,-0.43943,-1.8917,1.7748,1.2435,0.57186,1.669,0.32936,0.47689,-0.35603,-0.43285,0.90547 3.8467,-0.50166,-1.4833,-3.6107,-1.6088,-1.8978,0.58034,0.4691,0.079163,-0.80151,1.2149,-0.14272,0.16016,-0.95363,0.98617 4.0978,-0.90702,-1.7878,-1.766,1.2097,-2.8179,2.8071,1.506,0.34127,1.1499,0.5292,0.59331,-0.24005,-0.37048,0.49073 3.6275,-1.8189,-0.98247,-1.0319,0.36439,-2.4898,2.7318,0.85574,0.5653,0.59331,0.3695,1.1158,-0.42962,0.43572,1.6234 3.3457,-1.0949,-1.5851,-1.5367,1.3362,-2.2787,2.8048,2.4202,0.42198,0.92863,0.34054,1.5529,-0.098363,-0.041057,0.18016 2.5251,0.46242,-2.1997,-2.4436,-1.0445,-1.9572,1.1018,1.8817,0.23812,1.1653,0.53438,0.18231,0.72085,-0.045145,0.65289 -0.044581,0.61415,-0.64575,1.6507,0.82472,0.10063,0.47168,-0.027363,-1.0656,0.15672,-2.2794,-0.56862,0.5002,-0.38904,1.7836 1.7824,-0.16614,-1.9705,1.9475,0.10841,0.0066781,-0.62313,-1.5231,-0.092135,-1.1334,1.9136,-1.055,0.44496,1.1678,0.82614 3.5404,0.87174,-1.6171,-3.1041,0.08646,-2.5934,1.18,0.82135,0.66196,0.12556,0.96014,-0.4196,0.059411,0.80102,0.90557 2.5457,-0.74359,-2.312,-1.1835,-1.453,-0.22018,-0.030468,0.30576,1.8609,-0.96551,1.8115,-0.49844,0.097053,1.1435,0.97541 2.806,1.3414,-2.1394,-3.6229,-0.040331,-1.0025,0.66357,2.2004,-0.71719,-0.30263,0.7988,-1.0687,0.90948,-0.35971,0.73471 3.9168,-1.2201,-0.7722,-0.56955,-1.0345,-0.88433,-0.78872,-1.1867,1.3711,-1.0127,0.50933,-1.7064,-1.1459,0.26029,1.0788 2.4146,1.4883,-1.5085,-2.5815,0.86103,-0.82395,-0.17502,3.2006,0.05749,0.18397,0.040697,-0.67464,0.6761,-0.45486,-1.4629 1.1398,2.1227,0.3275,-0.81352,-0.56114,-0.88156,-0.679,2.3917,-0.91757,1.0337,-1.7508,-0.84059,-0.6417,0.50106,0.089785 2.1617,2.2754,-1.0785,-1.7283,-0.15603,-1.2828,-0.50778,1.8501,-0.18773,0.84893,-1.0877,-1.4425,0.50392,0.6784,-0.37942 -0.39402,0.91011,-0.97925,1.4756,0.44289,-1.6162,-0.023302,2.0147,0.97536,-0.76029,-0.81878,-0.35414,-0.79474,0.59011,-0.35378 -1.1616,3.8306,-0.43557,-0.1073,-0.985,0.39566,0.66124,0.50595,-2.1979,-0.43473,-1.7306,-0.13307,-0.039625,0.38013,0.46199 3.9283,-1.9675,-2.4751,0.39625,0.86846,-0.97205,3.3763,-0.34328,-1.1656,-2.1169,-0.22366,0.64862,0.89193,0.41229,-0.50534 2.906,-0.057299,-2.0388,-0.11278,-1.2386,1.1281,0.13612,0.023335,-1.1211,2.3505,2.08,-0.73785,-0.31558,1.9243,1.7097 1.7059,0.99455,-1.6475,1.3469,0.34081,-0.33698,-0.51439,-2.6768,-0.36202,-0.78016,1.0567,-1.6963,0.91577,0.73331,1.1535 2.0754,0.28891,2.3478,0.84725,-2.5085,-0.43094,-0.91268,-0.78543,0.45127,-0.29014,0.18787,0.26289,-0.94434,0.4084,1.2197 -0.30089,-0.78647,-1.2894,0.17761,-1.1212,-2.0463,-0.80047,-1.5118,-0.91329,1.3483,-0.18506,1.2589,0.64049,0.12097,0.63276 -1.7847,-2.747,-1.1508,0.35423,1.111,-1.6635,-1.1758,0.4599,-3.1054,-1.0377,-0.92698,0.3302,0.42202,-2.3264,-0.23037 -0.23408,0.55613,1.8149,1.2313,3.2118,-0.32881,2.1753,0.99747,-1.8542,1.6599,-1.4434,0.30763,0.83423,-0.278,0.66158 1.1671,3.3578,-0.89782,-1.3049,-1.1353,-0.92248,-0.5704,-1.0245,-1.7662,-1.5309,0.082389,-1.8363,0.72627,0.21362,0.61834 2.6015,0.92141,-1.2505,-1.5962,-0.84342,-1.0991,0.058834,-0.95965,0.86659,-0.016908,0.71643,-1.0252,1.3979,0.49674,0.99489 2.2706,-2.1655,0.64087,2.6669,0.55477,1.8128,-2.4783,1.2018,-0.54305,0.073061,0.97194,-0.11385,0.73269,-0.29755,-0.79649 -0.79498,-3.5653,0.49403,0.99155,0.84891,1.4148,-1.6211,-0.17178,-1.1421,-0.30703,-0.59652,-1.6421,0.95046,-1.5469,0.49925 -1.4969,-3.1715,-1.1377,2.1869,0.27779,-0.39758,0.0075474,-0.44696,-1.0918,-1.6394,1.1081,-1.1165,0.13769,-1.9478,-0.88174 3.1201,1.5494,-0.93942,-0.010158,0.022234,-1.7203,0.068392,-1.1144,0.40661,1.859,-0.77001,-1.8773,0.78457,0.068841,0.30867 -2.46,-1.9922,-0.0076495,0.40668,1.5655,-0.50574,-1.0615,-0.68727,1.0168,0.057658,-0.036755,-1.3957,-0.73783,-0.68642,0.31632 1.2092,-1.4972,-1.4447,1.0224,-0.97215,0.70248,-0.59962,-1.508,-0.66318,0.80131,-1.6138,0.81651,-0.50306,-2.0094,0.80901 0.68692,2.5279,-2.4452,-1.5438,0.36217,0.12375,-1.2373,1.2895,-0.45857,0.45474,1.5471,-1.1887,0.014546,-0.34871,-0.44884 2.5996,-0.46796,-2.8156,0.25184,-1.0512,0.31086,1.3489,-0.34597,1.6297,0.1697,0.22974,-0.0096317,0.95193,0.16976,0.39217 -0.73931,-2.0802,-0.58959,-0.094008,-0.41261,-0.034995,-0.90838,2.1775,0.25239,1.7973,-0.5396,-0.50618,1.2694,0.44801,0.23535 -2.4702,2.4816,-0.21133,-0.25861,0.22643,0.04867,-0.25038,3.4586,-0.2529,-0.87946,-0.23865,-0.32681,-1.1451,-0.8373,0.59089 -2.8047,-1.2458,-2.9428,0.97012,-0.18944,-1.3504,-0.64555,-0.98332,-0.60041,-0.32727,0.1385,1.0017,-0.57695,-0.060729,-0.38257 0.91345,-0.46536,-0.33114,1.7218,-1.8646,1.0614,0.04071,-1.1043,-0.0353,-1.6877,-1.1138,-0.49821,-0.53834,-0.19471,1.968 -1.7427,-0.76403,-0.030449,1.6125,-0.82584,0.89637,0.065591,0.83645,0.85297,1.1902,2.0099,-0.012856,-1.4232,0.15098,-0.25319 1.3913,-1.9324,0.18294,1.1238,2.1286,-0.99907,-0.95054,-1.8514,-1.5029,-1.5398,2.9184,-0.33387,0.53177,-0.639,0.97703 2.0354,-2.186,0.53189,0.61046,-0.45998,2.9829,0.077964,-0.65996,-1.0434,-0.12585,-0.93733,-1.1097,0.64621,-1.1848,0.26494 1.6542,-3.111,-1.3956,0.99068,-1.0665,2.4979,0.36756,-0.025563,0.038149,0.20541,-1.67,-1.5025,-0.056306,-0.78738,-0.50046 3.7876,-3.522,-2.5981,-0.18088,-1.7367,1.0846,1.7176,2.5978,0.37073,0.7045,-0.40353,1.4928,-0.75011,0.58318,-0.56901 0.69051,-3.0012,2.1852,0.88408,-0.10625,1.9283,-0.78251,0.64645,0.29795,2.3681,0.37977,-1.3041,0.39921,-0.40704,-0.064542 -1.1431,-2.276,0.33766,0.31051,-0.80517,1.8509,-1.6124,-1.8036,-0.25641,1.8117,0.46387,-1.4537,-0.63362,0.062907,0.17894 0.47041,-0.97701,-2.7646,-0.20849,-1.3613,-2.0108,0.19593,-0.41336,-0.40921,0.36852,-1.7555,1.8244,-0.12448,-0.15007,0.033038 -0.81322,0.38364,-1.4133,1.8119,-0.74178,0.27721,-0.15165,1.7124,1.6687,0.10751,0.24355,-0.35424,-0.98775,0.16927,0.34047 0.26395,-2.623,-1.6,1.0194,-0.35711,0.035776,0.57359,-1.9368,-1.0455,0.48489,-1.1353,1.2157,0.80965,-1.3869,-1.5015 -1.218,-1.4422,0.35775,-0.0037223,-2.0258,2.1386,-1.119,0.036836,0.6299,2.1993,0.90459,-1.0165,0.41427,0.65667,0.015823 -1.2029,-2.64,0.65521,-0.22931,-0.98289,-2.3898,-1.0135,-3.1458,-1.6024,1.1967,-0.20927,-0.04049,-0.90785,-0.40154,0.21945 -0.74433,-2.1699,0.57915,0.25351,-1.976,1.3175,-0.9313,0.66688,1.0153,2.1272,0.07699,-1.6454,1.0807,0.35718,0.10051 -0.41865,-4.1245,2.165,0.079955,0.57022,1.8671,-1.6965,-0.49867,-1.0157,2.8378,-0.026365,-1.3997,-0.47547,0.79768,0.10756 1.3544,-4.6415,0.3256,-0.74975,-1.6155,-0.066857,-0.11189,-0.15442,0.064715,0.59094,-2.0698,-1.7897,-2.4966,-0.46004,-0.61436 -2.4311,-1.6038,1.6249,0.85602,-1.6051,-0.97798,0.11453,-1.4173,0.058259,0.18494,1.932,-0.29198,-0.97973,0.26042,-0.46718 -2.9592,-2.3998,-0.10697,-1.5471,-1.0109,0.43695,-2.5819,-0.87864,-1.2759,0.16557,1.2275,0.36139,-0.78111,-0.33283,-0.68145 -1.6784,-2.7092,1.8746,-0.84147,-1.2046,0.96534,-1.9518,-0.16871,-0.21672,2.5775,1.105,-0.85729,-0.60697,0.4897,-0.42034 0.17273,-4.1895,1.2194,0.30305,0.10533,1.6872,-1.8379,-1.2338,-0.82097,2.9107,-1.0932,-0.52152,-0.6021,-0.061065,0.036801 -2.5367,-0.84743,0.57732,0.284,-1.1645,-0.63005,0.39684,-2.0088,0.59155,1.5989,1.5411,0.63195,-0.64804,-0.30906,-1.07 1.1715,0.28294,-1.0526,1.3029,-1.7137,1.6887,-2.2122,-0.14887,-0.32369,-0.60275,0.7861,-0.43946,-0.96572,0.93786,0.30822 -2.0873,-0.2018,-2.3276,-0.014088,-0.59062,-2.003,-0.8318,-1.3939,-1.1585,1.1425,-0.59822,1.4892,0.74018,0.93876,0.41695 -1.4534,-1.3995,-0.10239,2.2546,1.839,-0.22195,1.8736,0.29602,-0.2084,-2.0297,1.1622,-0.88952,-1.2926,0.091871,0.10018 2.5716,1.5566,-0.90836,-0.6571,0.59324,-2.18,0.156,-0.6898,1.0951,1.4731,-0.38518,-1.7672,0.64459,0.5685,1.0514 -1.1487,-0.80348,0.61677,1.5779,-0.87502,2.317,-0.35023,-0.1785,0.97535,1.321,1.6723,-0.70307,-0.43311,0.24034,0.46017 1.9936,2.6913,1.2109,-0.00075277,-1.7611,-1.8181,-0.42219,-0.20937,0.28954,-0.40475,-1.8813,-0.24186,0.53173,0.17685,0.24342 -2.3174,-2.3985,-1.189,-0.36583,0.016291,-1.2402,-2.3313,-0.54275,0.36477,0.39031,0.695,1.4717,-1.121,-0.012616,-0.39346 -2.8458,-1.8174,-2.1455,-0.73275,0.26051,0.33501,-2.4782,-0.66696,-0.54579,-1.0106,0.10407,2.019,-1.5656,-0.41222,-0.11832 -1.8958,-0.879,-2.6407,0.57721,0.30572,-0.3784,-1.4543,0.3299,-0.35644,-1.034,-0.067495,2.0811,-1.4342,-1.1497,0.026325 2.4619,-3.071,-1.0061,1.433,1.8368,-1.1922,0.37762,0.68243,0.23337,-1.2364,3.0432,0.14596,1.5339,0.14747,0.98978 -1.5855,-2.0407,-0.97115,-1.1329,1.1126,0.11161,-2.2793,1.9342,-0.049038,1.0294,-1.4731,-0.32067,0.49911,1.3947,2.1786 -2.1484,0.55603,0.44672,-0.79289,0.091687,-1.3646,1.7592,-1.4702,-2.6027,1.8851,1.0497,-0.21748,-0.56839,1.7791,-0.51 -0.71454,2.2442,1.137,0.71795,-1.3034,-1.2165,0.74254,0.089451,-2.3394,-0.46715,1.2749,0.29037,-0.85375,1.3506,0.3278 2.9474,1.6518,-0.18031,0.99371,0.33001,-1.7075,-0.59591,-1.3141,1.0619,0.63251,-0.71068,-1.3596,0.16069,0.94887,0.51821 0.69804,-1.9736,1.7575,-0.28411,-2.5688,-1.2105,1.5353,-1.1297,-1.1654,-0.10808,0.27717,-1.4012,-2.6745,-0.18214,0.59892 -1.9768,1.4032,-1.0645,1.981,-0.61386,0.17961,1.6935,-0.43876,-0.80555,0.95851,-0.3467,0.25602,0.86022,0.51724,1.4647 1.2277,-1.5748,-0.8619,1.938,3.4846,-0.2641,0.28419,0.50578,-0.7481,-2.5066,2.362,-0.5892,0.35615,0.82595,0.46514 -2.0105,1.3159,1.5778,0.72639,-0.86702,-1.2367,1.2586,-0.82646,-2.1285,0.40651,1.2289,0.32291,-0.97406,1.0432,-0.17815 -1.45,0.65459,0.97764,-0.85352,-2.8904,0.38609,0.64063,-1.2299,0.22681,-0.75962,1.138,0.10311,0.31039,-0.92913,0.46679 -2.8886,1.0292,0.3218,-0.55001,-0.58646,0.32196,2.313,0.0015708,-2.3389,0.12683,1.0564,-0.057264,-0.14728,0.52812,-1.1559 2.9252,1.2623,1.5125,0.15802,-0.46163,-2.7425,-0.20369,-0.93713,-0.35546,-0.40833,-0.4686,-0.023162,1.5766,0.51041,-0.59459 -3.3385,0.79451,-1.1862,-0.027711,-0.97132,-1.4428,1.8526,0.85932,-0.91081,0.026551,0.40482,-0.087548,0.6527,0.42851,-0.37434 0.66229,1.2746,-1.4302,2.3464,2.7566,-0.8141,-0.31428,2.2564,-0.2645,0.091306,-0.48717,-1.3764,-0.20569,0.37315,-1.1813 -3.0509,-0.22509,-2.3022,-0.18106,-1.7658,-0.71047,0.83733,0.078433,0.029552,-0.90161,1.0085,-0.22297,0.049693,-0.11814,-1.037 -2.4106,-0.40973,-1.8114,-0.86886,0.28217,-0.61576,-0.85724,-1.5547,-2.7443,1.0669,0.51645,0.9802,-0.80135,0.73608,-0.98694 4.5342,-1.2389,-0.94395,0.11854,-1.466,0.93458,-1.0533,0.81235,-0.30738,2.402,-1.2245,-0.58783,0.33232,0.87825,-0.14741 -2.1987,-1.129,2.1042,0.3283,-0.78099,-1.1195,0.75358,-0.24471,-0.42013,0.61348,2.3324,0.80802,-0.23848,-0.56036,-0.99077 2.8263,-2.5845,-2.0262,0.35968,-0.74691,-0.096725,1.2862,-0.94349,-0.37732,-0.29087,0.092187,1.2486,0.19073,0.22576,2.6803 4.9462,-1.1708,-0.17562,-2.888,-0.15742,-2.9219,1.0755,1.8082,0.33949,-2.1547,0.2779,0.85899,0.50766,1.0352,-1.4151 -1.4652,-1.8721,-0.86681,-0.53791,0.048761,-2.4748,-1.1273,-1.7734,-2.1389,1.5647,-0.39842,1.1487,0.23281,0.23473,0.37942 0.30849,3.1851,-0.083725,0.4331,-1.7023,-1.3675,-0.0088486,0.26218,-0.44559,-0.37528,-1.5322,-0.1375,-1.1192,0.40988,0.43952 2.0827,0.18776,-3.1045,-1.1431,-1.4835,0.24288,1.2814,0.78662,1.2781,0.049199,0.030404,0.36128,1.2601,0.22244,0.047373 0.091201,-1.4564,2.0503,1.7408,-0.34644,-0.60511,0.17713,-2.3443,-2.6323,-0.98761,1.5117,-0.1727,-0.11021,-0.50779,0.53689 3.0449,0.39488,1.5828,1.8111,0.64104,-2.401,-0.33933,-1.063,-1.1475,-0.77286,0.53195,0.041431,1.4945,0.57176,-0.27449 -3.0264,1.1432,0.66833,-0.58048,-0.019242,-0.73916,1.4231,0.17404,-1.6717,1.5868,1.3328,-0.35273,0.72614,0.76972,-0.15168 -0.33799,-2.4977,-2.735,1.7216,-0.67494,-1.1246,-1.4778,0.2523,-0.64134,-0.44321,-0.44334,0.89616,-1.7534,-0.88977,0.1572 3.187,-1.8099,0.50429,1.0524,-1.4766,-0.67096,-1.6482,1.839,1.0061,-1.7916,-0.66125,0.6557,-0.78311,-0.034328,-2.3045 -0.044102,-2.8425,-1.8604,1.8093,-0.64819,-0.3224,-1.7582,1.2025,-0.12172,0.2521,-0.38788,0.035012,-1.3268,-0.86015,0.78752 3.079,-3.7041,-0.20961,-0.12018,0.68977,0.55937,-0.39899,2.1465,-0.91968,2.1755,2.8596,1.9044,0.60937,0.47427,0.74006 -0.61549,-1.3999,-2.8507,1.7851,-0.47989,-2.0177,-0.36637,-0.39447,-1.4068,-0.47906,-0.87769,1.1172,-0.87893,-0.55939,0.010052 -0.85797,-2.3462,-2.4721,0.68566,-0.21798,-1.0176,-1.8966,1.8691,0.097747,-0.27398,-0.69718,0.83931,-1.4759,-1.7137,0.26334 2.755,-1.1006,-2.0979,1.4325,0.1756,0.68629,2.2351,-1.0194,-0.4108,0.0491,-0.79289,-0.34261,0.067321,0.074455,0.906 1.5002,-0.9657,1.3219,2.6808,1.4219,2.4164,0.58397,1.5603,-0.010803,1.3268,-0.2264,0.66837,1.172,0.46942,0.10476 4.0309,-2.5864,-2.161,0.12251,-0.59034,0.10957,0.90059,-0.029358,1.5564,-1.5297,1.1651,-0.32547,-0.76831,-0.061091,-0.20592 0.0039948,1.2122,-0.18612,1.4013,1.1181,-2.2736,-0.123,2.461,0.66613,-0.84758,-1.2268,-0.41228,0.42365,0.93806,-0.46491 2.3401,-0.95637,2.2181,2.7749,-0.86981,0.0055944,-1.5413,-0.45496,-0.42876,-1.1475,0.73544,0.8599,0.48359,-0.46496,-0.15428 -1.5664,0.20668,-0.16679,0.40751,-1.3926,-0.43098,2.3117,0.17942,-0.57213,-2.4022,-0.12931,-1.456,-0.38205,-0.35504,-0.1342 0.66234,0.85915,0.15003,1.8972,-1.4751,-0.87619,1.5404,-0.24831,0.044481,0.91251,-1.3044,0.35249,0.37551,0.94446,0.74823 -0.48768,-2.1902,-2.428,0.69291,-1.5039,-2.3325,-1.043,-0.016707,-0.26773,-0.042487,-0.29741,1.3651,-0.74756,-0.49147,-0.60962 -2.0182,-2.2728,-1.6753,-1.2652,0.72133,-1.3615,-1.6433,1.1273,0.37109,-0.46577,-0.70921,0.01525,-1.2666,-0.022873,0.62882 -1.1009,-0.42578,-2.3334,0.98113,-0.36015,-2.778,-0.79271,0.70997,-0.89288,0.013416,-0.053873,0.95698,0.013428,-0.25118,0.93398 1.8916,-1.0805,-0.97116,1.0017,0.55897,-0.66567,-1.0476,0.60942,1.5881,0.30578,2.1359,0.64143,1.258,0.10352,-1.363 -1.8381,0.28742,-1.3188,0.28741,-0.60559,-0.46418,0.99112,2.0739,0.15424,1.9928,0.30446,-0.38157,0.58475,1.2197,0.076204 -1.0856,0.10747,0.47222,1.55,-1.0652,-1.5086,0.99062,-0.17121,0.28376,1.6037,0.92733,0.12195,0.82164,1.0299,0.33887 2.1192,1.2616,-1.0721,-0.92446,-0.10609,-2.0529,-0.77868,-0.8922,-0.35778,0.38355,2.6416,-0.38619,0.17422,0.058071,1.1639 -0.31626,-1.1672,-2.6668,1.5356,1.1647,-1.1712,0.50956,-0.12565,-1.5603,1.2764,-1.1498,0.13214,2.1653,0.87074,0.73039 2.9706,-0.26396,-1.6809,-1.3923,-1.9312,-0.89288,-0.52398,-0.6515,1.851,-0.7204,1.0502,-0.80075,0.80925,0.52239,1.0092 1.1954,0.93224,0.7116,1.0621,-1.4175,-2.3203,-0.69785,0.27346,0.047899,0.17805,0.053232,0.55085,1.3626,1.6319,-0.1534 -2.0518,0.7587,-0.4124,0.81531,-1.627,-1.4827,1.4596,0.87573,0.12384,0.39761,1.0981,0.47924,0.54742,1.2601,-0.070237 1.0259,3.1834,0.21038,0.41109,1.1648,-1.6136,-1.3548,-0.13099,-2.4863,1.9161,0.5445,-1.1262,-1.1468,-0.059328,-0.073431 -1.5482,-1.212,-1.8257,1.7337,1.829,-1.3124,1.6718,0.46693,-1.1536,1.7689,0.030426,-0.9185,1.0699,0.8131,-0.42902 0.33268,-0.13632,-1.6441,0.76017,2.5861,-0.4966,-0.37625,0.044689,-0.40765,-2.9742,0.14537,-1.0233,-1.0162,1.3542,0.42961 5.4577,-3.3041,-0.90855,-1.7159,-0.98794,-1.0036,1.4017,1.0112,0.92116,-0.47529,0.2265,0.68283,0.074965,0.67171,-0.31926 6.0336,-2.7333,0.89234,-0.56653,-0.79316,-0.16583,-1.0742,0.82676,-0.27335,-0.11607,-1.0027,-0.96691,-0.70277,0.27382,-1.0049 -1.0076,0.83417,0.34949,1.2278,-1.8232,-1.4847,1.2968,-0.34026,0.32188,1.5419,-0.14519,0.23943,1.1928,0.72401,0.7637 -1.7787,-0.83118,-1.6572,1.6908,-0.004061,-1.3687,1.7466,-1.0503,-0.072961,0.89646,0.5121,-0.75067,0.98025,0.88834,-0.6331 2.5295,-0.053944,-0.50885,-0.99433,-1.6127,-1.0868,-1.2957,-1.089,1.0284,0.27129,1.451,0.18652,1.7713,0.29528,0.13306 -1.2744,-0.57418,-1.519,0.61607,0.58065,-0.77015,0.54564,0.68819,-0.21186,2.9065,-0.16594,-0.36486,1.2033,1.204,-0.068929 -1.0495,2.1194,-0.20404,2.0654,0.32585,-0.9323,-0.6521,1.6294,0.85724,0.52575,-1.0329,-0.201,0.07838,0.67751,0.43518 -1.1502,-0.67641,0.59969,0.99052,-2.5673,-1.4926,0.15432,0.061765,0.43476,-0.048519,1.3835,0.50623,0.074296,0.012377,0.08617 3.2385,-0.77292,-2.3334,0.37839,-0.32253,-0.51055,0.39972,-1.084,0.22899,0.68915,1.0306,-1.4611,-0.52056,-0.53914,2.389 -0.73876,-2.1336,-3.012,1.2759,1.0411,0.38316,-1.3536,0.66795,-0.20028,-1.0634,-1.3205,0.13841,-1.3392,-0.56355,1.9894 -0.43141,-0.15954,-0.022381,0.53065,-1.0437,-1.9281,1.9042,-0.36701,-0.090605,2.5386,-1.0209,-0.9449,1.1731,0.65864,0.36421 -0.031356,1.5481,0.60071,1.2235,-1.6266,-1.3022,0.48402,0.015073,-0.1561,1.2351,-1.0393,0.90171,1.4528,0.87404,0.50101 3.6487,-2.4523,-2.0385,-2.0238,-1.2998,-0.82332,2.0941,1.8615,1.6176,-0.061871,1.3026,2.5084,-0.056534,1.285,0.43539 1.3772,0.086628,-2.1689,2.1874,2.4455,-0.88724,0.33092,1.2875,-0.8251,-1.1817,0.47081,-1.6138,1.0786,-1.4608,0.096965 1.5553,-1.0293,1.0838,1.8325,-2.1377,1.6954,0.06756,-1.0685,-0.19703,0.17317,0.015725,-0.91655,-1.2492,-0.66231,1.4107 1.4038,-2.273,-2.0088,1.1183,2.9535,-0.42033,1.7171,1.1868,-0.39367,-2.5121,1.6016,-0.43891,1.7393,0.21436,1.8904 2.5805,-1.6895,-0.87082,1.8319,3.4535,-1.5088,0.079283,1.0805,-0.16433,-3.323,1.0079,-1.4927,0.65434,0.50738,0.25245 -0.70543,1.0144,-1.834,0.32202,-2.3662,0.78409,1.4986,0.40352,-0.089798,1.6071,-0.55145,-0.67075,0.15451,0.49391,0.86418 -0.80052,-0.21551,0.26941,1.0988,1.604,0.13112,1.4217,1.985,-0.64588,2.9337,-0.39805,0.52028,1.2417,-1.2736,-0.74097 1.0799,-0.13098,-0.98938,2.8043,2.0846,-0.62786,-0.30951,0.45883,0.24789,-3.5553,0.1308,-1.0221,-0.025311,0.9395,-0.11794 0.93546,2.2015,-0.5392,0.21553,-1.7262,-1.0104,-1.6309,-0.18829,0.21183,-0.61541,0.45593,0.051937,0.46806,1.6446,-0.19923 0.83821,-0.22662,-0.98584,2.641,1.7354,-0.84515,0.49454,0.9953,0.84893,-1.0355,-0.19749,-0.15864,1.7823,0.65039,-0.68694 -1.6662,1.1944,1.6079,1.1185,-2.0958,-1.0864,0.83284,-0.61904,-0.18052,-0.17619,1.2135,1.1964,-1.0841,0.40431,0.49877 -0.47853,0.045554,-0.51341,2.6802,1.9146,-0.7424,0.89571,3.6968,-0.87362,1.1202,-0.43528,-0.37186,0.19929,-0.35449,-0.30228 0.8265,0.3226,0.22391,1.9937,2.8181,-2.5962,0.30453,2.0327,-0.24842,-0.6538,0.24118,-0.040979,1.0867,1.4884,-1.3563 -0.39474,1.9085,-1.7437,1.4312,-0.78917,0.94081,-2.0066,1.4934,0.60142,-0.77032,0.846,-0.30916,-0.51979,0.74241,-1.4233 1.9067,-1.4264,-0.044405,2.4548,3.0196,-2.1592,-0.25801,0.80843,0.1449,-1.5207,1.0737,-0.026308,1.2273,0.71795,-1.0367 0.31833,2.0071,-1.7964,-0.046188,1.8624,-1.0261,-1.574,2.5718,0.77315,0.71503,1.1212,-1.7827,-0.22791,-0.16474,-0.82446 -1.6336,-1.5744,-1.2975,-1.036,0.17688,-3.0365,-0.74889,-0.49463,-0.92836,0.97769,-1.1735,1.2354,1.8343,0.69814,0.55914 -0.074566,0.14785,0.16806,3.2696,2.9723,-0.85144,1.5497,2.1238,-0.71434,0.79123,-0.34623,0.23792,1.05,1.2797,-0.069791 4.3692,-1.6773,-0.58635,1.0645,1.2344,-0.24899,1.4105,-2.3761,-1.6833,-0.39861,1.9851,-0.087831,1.7326,-0.092422,1.4395 2.7517,1.4173,-0.87724,-2.1597,-1.6079,-0.97331,-1.1847,0.86699,0.21736,-2.481,0.48622,-0.79892,0.21078,-0.9107,-0.81031 -1.4033,-1.2645,0.8291,1.9935,-1.4284,-2.1394,1.3507,-0.039042,0.17645,0.46934,1.4538,-0.061597,0.26361,0.37884,-0.47406 1.1634,1.0203,-1.1824,1.5613,2.2295,-3.3354,-0.12274,1.5504,-0.48371,-1.6117,0.28903,-1.6358,-0.28599,1.0057,-0.37207 -0.53478,-0.21357,-0.12516,0.50751,1.2612,-1.2773,0.035746,3.6938,-0.25581,1.9514,-0.27042,0.27703,1.3704,-0.30828,-0.61459 -1.45,0.80196,-1.1602,2.6301,-0.59934,-1.2414,1.0288,0.50286,0.74186,0.54729,-0.25732,0.21105,0.34273,0.50618,0.55838 0.36826,0.048327,-1.1961,2.4978,2.2405,-1.8556,0.60749,2.9768,-0.34595,0.71688,-0.67057,-0.56264,0.61911,0.35065,-0.50447 1.0815,-0.14077,-1.1806,2.4771,4.061,-2.0595,0.60634,1.728,-0.90199,-0.71187,0.472,-1.0502,0.6005,1.2817,-0.22305 -3.3662,-0.39535,-2.0808,-0.6388,-0.47477,-0.61998,0.096954,-1.3526,-0.95237,-0.59134,0.71061,-0.12732,0.9811,0.61572,-0.50396 -2.7166,-2.0381,-0.84998,-0.6811,-1.6925,-1.1155,-0.8103,0.44478,0.34332,-0.68507,1.1042,-0.60991,-0.29205,-0.025064,-0.80648 -2.8905,-0.91526,-1.1586,-0.59798,-0.6143,-1.8205,0.67143,-0.11218,-0.51792,0.12127,0.98025,-0.22973,1.4112,0.20266,-0.98905 -1.5955,-0.41307,-1.2576,2.4635,-0.99994,1.2675,0.81183,-0.4043,0.7857,-0.19662,1.3285,0.31426,-0.54219,-0.9239,0.081261 -2.6291,-0.46542,-1.8176,-1.0753,-1.2364,-0.14175,-0.13143,-1.5506,-1.1422,-0.33,0.71512,0.23925,1.3448,0.24468,-0.099373 -1.904,-0.05862,-0.61995,-0.64227,-2.0793,-0.54144,0.8287,-1.2633,-0.52404,0.86403,1.16,0.3948,1.4185,0.5051,-0.14759 -3.2367,-0.54403,-1.7656,-0.52936,-0.87612,-1.1008,0.083893,-0.20044,0.25375,-0.38599,1.1738,-0.35959,0.11086,-0.040833,-1.118 -0.6495,2.2121,-1.4974,2.2991,1.0314,-0.044145,0.82252,1.9601,-0.65054,-0.10723,-2.0199,-0.6043,-1.4971,0.034947,-0.17385 2.1178,0.66257,-1.5914,-2.0651,-0.83252,-1.9976,-0.051881,-0.22186,0.79507,0.59914,1.9609,-0.074293,1.2016,0.021375,1.7009 2.2244,-1.971,-1.2532,-2.5017,-0.55331,-2.5367,2.3214,2.6456,-0.19394,-0.8261,0.20525,2.7706,0.7571,0.67471,-0.56491 -1.5689,-1.2394,0.90024,0.17899,-2.1111,-0.85829,0.52527,-0.23979,0.17908,0.32394,1.2905,0.8685,1.3728,-0.69836,-0.43792 -2.0041,-0.37319,-0.88571,-1.1426,-1.7595,-0.85361,1.4182,-1.486,-1.2465,-0.10266,-0.20762,-0.79242,1.488,-0.53218,0.1922 2.3652,2.1003,0.59356,-1.3846,-0.31465,-3.2923,0.086152,0.33149,-0.02658,-1.6635,-0.70608,-0.92735,-0.50278,0.89405,-0.2575 -0.26638,-0.79577,-1.5645,-0.91901,-0.7571,-1.3511,0.45861,-1.5933,-0.45133,2.4537,-2.0579,0.51467,0.88348,1.0865,-0.14432 -2.2566,-0.65113,-2.398,-1.0655,-0.7983,-0.14893,-0.64487,-1.5234,-1.3903,-0.15758,0.34,1.6516,0.2683,0.80191,-0.82338 3.3703,-1.8321,-0.37262,0.42242,-0.41061,-0.77328,0.6403,-1.4332,-0.16654,-3.5001,-0.99184,-1.2481,0.16524,-0.83936,-0.74459 -1.1906,-1.0949,0.91288,0.84948,-2.1742,-0.67918,0.47167,-0.78891,0.52309,1.0344,1.43,0.61585,0.32381,-0.52546,-0.27311 1.2994,2.4677,-1.8283,-1.2111,-1.8099,-0.95087,-1.4246,-0.74692,-0.28141,-0.86291,1.1186,-1.0456,0.35522,0.091063,-0.040681 4.9381,-0.86947,-0.58131,-0.37538,-0.060799,-1.6915,0.357,-1.6553,0.3516,0.61127,1.0347,-1.0563,-0.8156,-0.84292,1.1177 3.5016,-1.9034,-1.3347,-1.8956,0.32,-2.317,2.5411,1.1866,0.74146,-0.56603,0.57741,1.7457,0.55458,0.6804,0.67787 1.2798,1.2491,1.9558,2.4402,0.61431,-1.3019,-1.2916,-0.54571,-2.0068,0.4057,1.6567,-0.33459,-1.4803,0.29253,0.007189 6.0134,-2.9524,-0.59075,-0.82346,0.19592,1.0247,1.426,0.55224,-1.0246,2.5992,0.98448,0.26301,-0.55834,0.76316,0.82611 3.2527,1.2023,2.1591,-0.93284,0.11354,-3.4614,1.2362,0.22052,-0.85625,-0.93361,-1.3561,-0.96397,-0.32228,0.97576,-0.13796 2.8357,1.9237,-1.7843,-2.4967,0.086294,-1.5867,-0.35705,0.9825,1.2226,-0.31622,0.7434,-1.125,0.57804,-0.40475,-0.13415 4.1912,-0.43071,2.1026,0.68185,-0.59575,-2.6328,-0.10461,-1.1621,-0.57308,-1.3223,-0.67521,-0.69496,-0.58537,0.40792,0.060545 3.4771,-1.12,-0.62851,0.16482,-0.73916,1.7358,-1.5463,0.10334,0.82454,1.397,0.093279,0.30833,0.86051,0.099447,-1.2202 -1.6948,0.28734,-2.2956,0.53403,-1.9343,-0.34558,0.87278,-1.4874,-0.14323,1.0564,0.34862,0.24231,0.081391,0.25071,-0.1313 3.7314,0.16502,1.3185,0.83574,-0.83984,-1.0895,-0.9552,-1.8595,0.09627,-0.10902,-0.29846,-0.82751,-1.0302,-0.30785,-0.10865 1.7512,2.6812,2.1083,-0.15932,-0.86257,-2.6516,-0.25746,-0.36997,-1.0882,0.13622,-0.39611,-0.60934,0.20824,1.6835,0.68371 2.3089,1.1031,-2.639,-1.6335,-1.1996,-1.5003,0.76859,-0.17373,1.7745,-1.5141,0.69213,-0.2731,1.125,0.41089,-0.38522 -0.081235,2.9427,2.2588,-1.2739,-0.90255,-1.3639,0.38879,-0.048578,-3.0371,-0.29369,0.22894,-1.2204,-0.42429,0.57262,0.43714 2.1154,0.56175,0.98279,2.0137,1.1676,-2.1729,-0.25438,-2.1887,-0.93459,-0.18965,-0.059124,-0.84647,0.48259,1.1572,0.93481 -0.45366,0.65466,3.4786,-0.024836,0.068768,-2.6077,0.60409,-0.32137,-2.4328,-0.15653,1.1313,0.29602,-0.43178,1.451,-0.03028 2.4604,-0.03043,3.5624,1.029,-0.42405,-2.159,-0.19092,-1.1059,-1.4901,-0.47271,0.444,0.0196,-0.78431,0.67865,0.23339 1.6471,1.6143,0.49889,1.9492,-0.081213,-2.1776,-0.93094,-1.1124,0.12503,-0.60585,-0.3074,-0.17634,0.17863,1.1552,0.64298 1.1894,0.77698,1.3779,1.6873,-0.49176,-2.5189,-1.5644,-1.4291,-1.1264,-1.2673,0.13024,0.76821,-0.65108,0.59783,0.37621 2.1509,1.5428,2.0198,0.59674,-0.8858,-2.6339,-1.2725,-0.98511,-0.59356,-0.86195,0.22448,-0.45971,-0.68661,1.1075,0.4933 3.6543,0.17424,-0.54707,-1.9186,-1.8261,-0.72011,-1.8995,-0.24574,1.1763,0.55779,0.56011,-1.2548,-0.69899,0.099573,0.43377 2.7511,1.4071,0.0067313,-1.8564,1.8126,-0.38498,-0.12689,0.030533,1.0744,1.9058,1.0422,0.59242,1.5317,-0.51199,-0.94877 1.3636,1.2074,-1.0116,1.4335,0.98784,-0.3352,-0.84482,-1.569,-1.0137,-0.37937,1.86,-1.249,0.68766,1.2296,0.41549 -0.76837,1.0926,-0.47375,2.0309,-0.29466,-1.902,1.6643,2.3796,0.18094,0.19971,-0.86668,-0.51198,-0.11909,0.35918,0.36393 2.9275,-0.50427,3.4826,-0.59517,-2.3283,-1.9395,0.41476,0.052953,-0.60751,-1.2178,-0.42146,0.06789,-0.39243,0.78892,-0.1308 5.8467,-1.9377,0.92296,-1.8567,-1.5708,-0.86703,-1.0482,0.99378,-0.40176,-0.15725,0.062304,-0.48206,-1.3496,0.89139,-0.20887 -1.6653,1.9629,-0.43153,1.7178,-1.3823,-0.716,0.73447,0.075096,-0.77222,-0.74254,0.17884,1.1934,-0.59946,1.1485,-0.35367 -1.5516,1.7924,0.15023,0.084841,-2.385,-0.67511,1.9294,-1.0405,-0.20753,0.7854,-0.40884,0.45627,0.76968,-0.23921,0.88328 4.9668,-1.7987,1.2334,-1.2632,-0.30829,-2.4053,-0.59816,-0.67575,-0.78746,-0.32732,1.1256,-0.54207,-0.35719,0.90633,0.80732 0.4368,0.67046,-0.81693,2.6733,2.7355,-2.0437,-0.32636,0.67242,-0.25809,-1.5667,0.70804,-1.1531,-0.39795,0.81536,-0.76378 -0.3889,1.2473,3.4591,0.13848,-1.1442,-2.124,0.34532,-0.63614,-1.6458,0.05199,1.1651,0.13949,-0.47064,0.7451,-0.10797 -1.7737,-2.1221,0.66616,-0.72065,0.30455,-1.0361,-1.1107,-0.04951,0.093763,1.5017,1.0247,0.73142,-0.12503,-1.3248,-0.22151 3.9071,-0.19659,-1.0905,-3.0925,-1.7011,0.50453,-0.92824,0.080646,-0.75421,-2.1767,0.97905,-1.2814,0.3614,-0.87743,0.24494 -1.1702,0.26095,0.97311,2.3912,-1.6237,-0.6232,1.2199,-1.9115,-0.65914,-0.084903,0.89647,0.27894,-0.57677,0.070756,1.0283 -1.0437,-0.39166,3.6983,0.47487,-1.4248,-1.7117,0.43658,-0.73207,-0.84206,0.12196,1.3193,0.39307,-0.61647,-0.26989,-0.12916 1.0571,1.0191,1.7624,0.74612,0.12123,-1.7155,-2.1993,-0.20548,0.49946,-0.22141,1.6404,1.0117,0.43366,0.73234,-1.1634 0.93619,0.27606,-0.48402,1.5281,-1.2628,-0.49084,2.8217,0.51636,-0.44362,1.6989,-2.2814,-0.63657,0.041896,0.66047,0.49414 2.5888,1.7381,-1.7594,-0.53081,0.0074959,-0.80167,-0.19359,0.25694,0.90468,1.8853,-0.70031,-1.975,0.093498,-0.51813,0.27745 2.8863,-0.3075,1.6855,-1.6927,-2.0134,1.5385,0.28048,2.37,-2.9826,-1.8959,-0.19289,-1.7465,-0.37669,-0.44327,0.12311 3.4774,-0.018102,-2.1425,-0.31149,0.41413,-0.89835,2.19,-0.52082,1.3221,0.70592,-0.089261,-1.2585,-0.74105,0.00049529,1.8815 2.4973,-2.5576,-0.92861,1.6112,0.82271,1.0658,-0.62623,-0.18685,-0.93387,0.0068244,3.1671,-0.12335,0.56592,0.87624,1.7569 3.338,-0.14285,-2,0.59263,0.72616,0.2952,1.9125,-1.1862,0.19411,0.47191,-0.27557,-1.3248,0.51333,-0.75141,1.5975 2.8656,-0.0245,-2.6242,-2.6364,-0.88024,-1.5118,2.3068,1.473,1.1645,-0.04898,0.89041,1.0465,0.39016,0.93171,0.65169 -1.419,1.0251,-0.93983,0.38903,-2.2641,-0.80817,1.4071,-0.70081,-1.0472,0.72338,-0.16373,0.11558,-0.36438,0.50561,0.44799 2.2001,-1.271,1.6683,1.4524,-1.1723,3.4018,-0.41594,0.83866,-0.63952,0.72615,-0.2012,0.63616,0.26481,0.563,-0.14 3.0046,-0.55908,-1.7817,0.54039,0.4455,0.18154,1.9267,-1.1423,0.25633,-0.29065,0.41737,-1.0398,0.74459,0.36615,2.576 1.6237,2.4478,-1.0495,-0.53441,-2.2068,-1.2897,-0.40679,0.0055225,0.7928,-1.3765,-1.3565,-0.71703,0.30753,0.72965,-0.30423 2.1334,1.1097,-1.9663,0.90895,0.94486,-0.32795,0.38991,-0.3072,0.099638,2.033,0.20738,-1.422,0.26264,-0.1449,1.3358 3.6753,0.56412,-2.0587,0.16475,1.0811,-0.44838,0.87721,0.12258,0.64537,1.3953,-0.80589,-1.4408,0.49887,-0.97845,-0.80226 2.7847,1.5579,-1.83,0.026129,0.3499,-0.44436,0.01778,0.70812,1.1702,1.242,-1.4315,-1.5781,-0.29972,-0.43076,-1.3112 -1.837,1.9293,1.4158,0.57573,-2.017,-0.6975,0.30947,-0.27097,-0.51395,-0.10683,0.9313,1.397,0.10194,0.44945,0.56035 0.99936,0.53779,1.4091,1.0251,-2.3146,-0.22552,-1.5537,-0.30309,-0.28931,-1.4452,0.96502,0.22559,0.29131,1.0133,0.96699 -3.0754,-1.6455,1.1012,-0.12622,-0.97829,-0.81401,-0.20837,0.26033,1.1917,-0.17087,1.7817,-0.65776,-0.81551,-0.48867,-0.71062 2.1132,1.7328,-2.0535,-0.81838,-0.012267,-0.74643,-0.068207,0.41816,1.5148,1.4197,-0.88233,-1.661,0.045684,-0.61088,0.061098 -2.628,-1.689,1.4131,-0.79876,-0.97293,0.94641,-1.084,0.46969,1.3488,0.82749,1.5141,-0.90526,-0.13478,-0.10881,-0.19067 1.8638,-1.2379,-3.4719,-1.376,-2.5731,1.4568,0.7086,2.8684,0.33936,0.90543,0.14894,1.2404,0.76475,0.74971,0.25643 -3.0635,-2.7941,-0.040694,-1.4248,-0.46069,-0.80355,-0.91734,0.62623,-0.037089,-0.89916,0.54152,-0.88018,-0.20901,-1.0865,-1.4299 -1.6279,-1.1503,1.7928,0.43036,-2.1027,0.3978,-0.29952,0.064955,0.6219,0.1843,2.2813,-0.22596,-0.24784,-0.11667,0.23877 -0.83489,-0.92536,1.7285,0.4727,-1.6936,1.0602,-1.6929,2.8029,-0.87496,-1.7492,1.25,0.52967,0.55125,-1.1586,-0.40034 0.35438,-3.0454,2.812,1.8967,-0.52439,1.3425,0.20863,1.0889,-0.056106,0.82102,1.5726,0.20297,0.37522,-0.893,-0.57773 -2.3381,-2.8465,0.56939,-0.14286,-0.51902,-0.33531,-0.90533,1.8337,0.55913,0.14047,0.60758,-1.514,-0.65972,-1.2677,-1.092 -2.508,-1.7439,0.040183,0.092868,-0.93584,-1.7585,-0.23525,-1.3625,0.34978,0.92013,1.5105,0.4606,-0.042131,-0.18503,-0.68684 -1.4569,-1.2948,2.1753,0.46163,-1.5201,-1.5506,0.71126,-0.4483,-0.57452,0.2422,1.984,0.91031,0.57979,-0.60805,-0.95533 -2.6624,-1.0689,0.19189,0.34655,-0.83522,-1.4706,1.3149,0.5516,1.3139,-0.80647,1.2895,-0.52309,-0.94811,-0.23694,-1.1123 -2.7776,2.062,-0.29105,-0.55722,-1.3273,0.10939,1.6451,-0.43764,-1.8615,1.1381,0.55885,0.25786,0.4171,0.54899,0.62878 1.2676,2.1749,-1.9285,-0.32404,-1.1222,-0.064497,-1.0788,0.66367,1.3102,0.67858,-1.261,-1.2136,0.2081,-0.38821,-0.66935 -3.1943,0.18297,-1.797,0.25571,-0.26057,0.19091,1.1443,-0.76951,0.12391,0.7338,1.2423,0.57719,-0.56246,0.37395,-1.7053 2.1826,-1.0442,3.1784,-0.55488,-2.3588,-1.2915,0.34118,1.1877,-0.7783,-0.82031,-1.566,-0.49851,-1.5406,-0.88298,0.23846 -0.59544,-4.1719,0.69095,2.003,1.0555,2.1706,-0.56542,0.74646,-0.4805,0.42149,0.93181,-1.7891,0.54301,-1.1028,-0.41321 -1.5208,-3.0256,0.72811,-0.53243,-0.85306,0.49585,-2.3334,-0.68799,0.40235,2.5618,0.059087,-0.052892,-0.1682,-0.58341,-0.58008 -2.009,0.42364,-1.679,0.3999,-0.078008,0.8551,0.44735,1.1365,0.076835,1.5302,0.43359,-0.62934,-0.040034,1.1063,-0.009473 -1.108,-0.99471,1.5956,-0.90934,-2.8998,-1.0326,0.83894,-1.6862,0.19711,0.9178,-0.13091,-0.57963,-0.97823,-0.9712,0.015232 1.4535,-0.79847,-0.23883,1.1688,-3.0503,0.4338,0.4289,0.30448,1.6307,-0.79977,-1.0142,0.035565,-0.60288,-0.74747,-0.29746 -3.1522,-2.3026,-2.0736,-0.11442,-1.1825,-1.6427,-1.5518,-0.88106,-0.31398,-0.28775,0.22041,0.30128,-1.0782,-0.19735,-0.52572 0.69611,1.8254,-1.4553,2.0551,-0.64792,-0.10791,0.1204,-0.52071,-0.2757,0.53759,-0.69728,-0.78203,0.4485,1.1378,0.69365 -1.6409,-3.2576,-0.53606,-0.76648,1.0876,0.43166,-3.2791,1.0541,-0.58332,1.5322,-0.72983,1.2886,0.0089452,-0.11545,0.99296 3.9693,-0.13088,-2.4441,-0.51621,2.1492,0.88424,2.4717,1.4065,-1.4988,0.824,-0.85378,-0.57075,-0.36254,-0.48353,-0.74975 2.888,-1.5866,-0.47942,2.4534,0.72627,2.1665,-1.8142,0.67091,-1.707,1.4393,0.91459,0.14504,1.5296,0.80754,-0.30507 -1.7379,-2.2236,-1.7459,-0.09079,-0.23882,-1.3441,-3.0673,0.55019,-1.0168,0.34943,-0.51724,1.7058,-0.70472,-1.1837,1.8415 -0.94649,1.3433,-0.02288,2.9142,1.0291,0.10207,0.57942,1.0409,-2.5099,1.2246,1.2457,0.15716,-1.028,-0.31688,-0.057537 -0.55117,3.3086,0.23038,-0.5494,-1.1863,-0.27312,1.8397,0.97383,-1.4329,-1.7598,-1.685,-0.59829,-0.77887,0.34994,0.6272 -0.32653,-2.1116,-2.1012,1.1428,0.40272,-0.16192,-1.8625,2.1205,-0.096533,0.90199,-0.76636,-0.8549,-1.006,0.49561,2.3241 -2.7215,-1.4986,-3.2857,-0.89969,-0.054121,-1.2537,-1.7659,0.67713,-1.5781,-0.98791,-1.0828,0.75839,-1.8111,-1.089,0.080373 -2.4052,-3.4422,-1.3506,0.047751,1.7888,-0.67622,-2.9219,0.65372,0.019445,0.2915,-0.73259,0.5117,-2.4625,-1.0376,0.60152 0.40691,-4.0953,-0.86137,0.9216,0.36758,0.64331,-2.1602,-0.51119,-1.8848,0.40581,-1.6265,1.4153,0.69423,-1.5875,1.5835 2.0842,0.65172,0.52,1.5595,1.9606,-1.8167,-0.18284,1.4753,0.33754,0.85231,-1.421,-0.42291,2.0178,-0.064957,-1.1537 -2.0624,-2.6931,-1.5649,-0.22039,0.74997,-0.59475,-3.3552,1.4687,-0.48334,0.14056,-0.28679,1.1981,-1.8141,-0.59654,1.8065 -0.97499,-4.1671,1.1731,0.90892,1.2452,1.0352,-0.93764,1.5255,-0.30636,1.9721,0.27878,-2.1561,0.51068,0.2656,-0.48827 -0.33513,-2.0722,0.15506,-1.8718,0.19121,0.80226,-2.875,-0.41841,-1.3505,1.5607,-0.49439,1.5378,-1.6971,-0.21492,1.6715 2.2577,-1.2895,1.285,2.1125,-1.7081,2.3241,-0.029328,0.24966,-0.35995,0.81792,-0.66798,-0.63813,0.23387,-0.44202,0.5118 -3.1217,0.61727,-0.044719,-0.83497,-1.9421,-0.94112,1.2599,-1.4396,-1.7135,-0.20292,1.1271,0.6313,-0.056425,0.83485,-0.34633 2.4325,-0.18096,0.044271,2.6464,-0.80673,0.34398,0.057472,-1.7896,-1.3271,-1.3875,-0.30164,-0.23752,0.25665,0.044413,0.62216 -0.23924,2.4709,-0.76705,0.87149,-2.0757,0.04272,-0.76251,0.32973,0.44058,-0.38598,-0.3126,0.61176,0.27165,0.8418,0.50522 -0.73502,2.4381,-2.8239,0.83783,-1.5243,1.853,0.30654,1.1871,-0.54378,-0.23147,-1.4179,-0.60895,0.15972,-0.31728,0.84235 0.30206,0.7196,0.38224,2.0375,0.6024,0.25177,1.8999,0.57324,0.96093,-0.15235,-1.1328,0.65905,1.0164,-0.50751,0.28813 -1.0494,-1.0672,-1.2192,0.075908,0.21881,0.13456,-2.2635,1.3258,0.74248,0.66473,-0.034312,1.0963,0.08835,-1.3136,1.7829 -0.45841,0.2936,-1.5575,2.4567,-0.83134,0.37492,-0.34017,1.1521,1.298,0.2551,0.75317,0.017766,-0.85874,0.23856,-0.035353 -1.1312,-0.50657,-2.8058,0.32158,-0.11322,-0.85327,-1.1876,1.5313,-0.35148,-0.22515,-0.29875,0.53121,-1.6252,-0.59149,1.514 0.70744,-0.42791,-0.056281,3.1132,0.51197,-0.76305,-1.1505,0.86948,0.54339,-2.6771,0.93976,-0.39893,-1.173,-0.38759,-0.10453 -0.36087,-0.86815,1.9329,0.91618,-2.3497,-1.8919,1.2561,-0.51009,0.26356,0.15118,0.37761,0.33626,1.0974,-0.24846,-0.16308 -0.44684,-4.0974,1.0519,0.1733,2.2351,-2.5404,-0.56314,0.03019,-3.4933,-0.46364,0.74445,0.48424,0.43626,-1.7401,-0.76633 1.9304,2.5077,-0.95089,-1.2492,-1.7921,-1.5827,-0.12684,-0.18831,-0.22296,-1.8938,-0.94364,-1.3761,0.037688,0.83195,-0.45667 3.7369,-1.4317,0.72893,1.1942,-0.49598,2.0837,-1.8959,0.59493,-0.74253,0.98386,-0.02486,0.6275,1.0375,0.282,-1.1637 1.0323,-0.61786,-2.2098,1.1351,0.014796,0.74949,-0.28357,0.017876,0.78296,-0.75555,1.2253,0.63116,1.0732,0.8486,0.18569 0.53019,0.84142,-0.066704,2.6443,3.4551,-0.11937,0.12899,-0.47126,-2.66,-0.24255,0.31085,0.24666,1.2653,-0.34867,-0.2914 4.2436,-0.19565,-0.39799,1.0347,-0.65552,-1.6853,0.76371,-0.72508,-0.28179,-0.10243,-0.85454,-1.1143,-0.85848,-0.080125,-0.58588 -1.0489,-3.8915,0.46196,-1.0842,2.4585,-2.6554,-1.6969,0.035829,-3.9233,0.38191,-0.3045,1.6661,0.012959,-0.84315,0.25071 -2.9837,1.1195,-0.79459,0.091997,-1.3748,-0.48586,1.5679,0.76932,-0.0011613,-0.98893,1.2237,0.19583,-0.10468,-0.45272,-0.26528 2.745,-3.1439,3.0161,-0.16162,-1.1403,-1.6215,0.14327,0.99087,-2.7282,-0.058528,0.091184,0.67656,0.14511,-0.22575,-0.52906 0.58451,-2.4559,0.81223,0.21979,1.9143,-3.347,1.8144,-0.79936,-3.2215,0.37057,-0.10081,0.22301,1.8015,0.0087704,-0.75954 2.93,0.84309,1.4211,0.44997,-1.8062,-1.1885,-1.7814,-1.4285,0.68353,-0.56489,-0.4392,0.26217,-0.49096,-0.029694,0.0045161 0.74335,2.6145,2.4699,-0.92682,-0.047212,-1.7343,1.0091,0.17203,-0.72688,0.050237,-2.6042,-0.52444,-0.60959,-0.19102,0.639 0.54383,-3.4138,0.65459,1.8808,1.5977,-0.99574,-0.46276,-0.27757,-2.3686,-2.5463,1.6479,-0.30993,0.89712,-1.8076,0.093027 -1.5895,3.4799,0.84964,0.078987,0.25727,-0.88058,-0.59241,2.1353,-2.117,0.68735,-1.2443,-0.79089,-0.84334,-0.28219,0.45738 -2.2571,-1.9749,-2.1186,0.61747,0.55971,1.0299,-0.58601,0.5264,1.4307,0.061579,-0.44275,-1.7001,-1.5116,0.81146,0.26859 0.19911,1.4658,2.9177,-0.40263,-1.675,-1.0147,-0.076256,-0.31759,-2.1103,-0.37887,1.2048,0.89611,-0.36412,-0.093916,0.082718 -1.5254,-1.1862,-0.24588,1.6187,1.4105,-3.03,2.0184,0.62478,-2.09,-0.057574,1.2567,-0.94726,0.49192,0.63615,0.018933 4.7348,-2.1739,-1.7259,-1.0307,-0.71576,0.13775,-0.55626,1.5173,1.9524,0.59169,0.69692,-1.0277,-0.83598,0.48039,0.35553 4.3574,-0.42403,-0.88493,-0.78187,-0.27902,-2.1699,0.40127,-1.2311,0.52079,1.2472,1.6569,-0.96417,-0.8074,-0.31257,2.0381 -2.5047,0.58703,-1.9273,-1.0957,-1.5145,-0.75563,1.1867,-1.7881,-0.64712,0.79952,-0.33752,-0.27374,0.52479,0.83925,-0.55045 2.9904,-2.4037,-0.4457,-1.8198,1.6926,-2.288,2.4614,1.9914,-0.47773,-0.44755,-0.4251,2.0004,0.45291,0.61075,0.089093 -1.6756,-2.5226,2.3067,0.68192,0.59981,-0.19708,-0.038426,1.8598,-0.55112,0.22738,1.7732,0.51011,-0.79806,-0.59801,-0.75499 -1.2037,-1.669,0.43745,2.1206,1.8101,-2.6996,1.4877,-0.16206,-1.7781,0.31949,1.3593,-0.24475,0.64121,0.01843,-0.60806 1.1267,-1.6669,3.468,-3.1686,-2.3186,1.569,0.29624,1.8807,-2.33,1.4349,0.11349,-1.1106,-0.83546,1.1066,-0.45451 -1.0315,-3.891,0.7983,-0.928,2.3075,0.44588,-2.7691,1.2419,0.044759,2.0541,-1.4656,0.11683,-0.098018,0.65765,1.096 0.65444,-3.0394,1.8836,-2.5886,-2.4535,0.47611,0.9224,1.7657,-1.7016,1.0382,-0.8954,-0.56263,-0.073531,0.12278,-0.39927 0.99314,-3.8162,3.2141,0.67014,-0.42568,1.3902,0.36707,2.2522,-0.51681,2.6291,0.12066,-0.54891,1.0328,0.051604,-0.98715 1.3736,-1.6836,2.8073,1.9866,-0.96254,-0.56432,-0.42959,-1.3166,-3.1409,-0.83735,-0.10554,0.53027,-0.7014,-1.0968,0.85262 1.4806,0.34609,-0.23373,-0.046395,-3.1823,-0.64864,-0.64253,1.1573,1.0143,-2.0229,-0.82293,0.69963,-1.1468,-0.67591,-0.83663 3.6916,-0.42024,-0.24105,-0.10688,-1.3987,-0.70941,-0.7947,-0.4447,1.1522,-0.0080358,-0.80004,-0.85033,-0.34895,-0.514,-0.52933 3.2492,-1.5501,1.1741,1.8549,0.35981,1.5884,-1.7396,2.0589,-1.3439,1.6501,0.61776,1.1524,1.5297,0.82047,-1.4693 4.2067,-3.3096,-0.93883,-2.2614,-0.67094,-1.162,0.31271,2.9611,-0.034125,0.042407,1.0894,1.3039,-0.4533,0.16444,-0.3127 0.90925,-1.5319,2.1759,-0.82384,-2.5076,1.4467,-0.59442,1.8,-0.081251,1.7846,-0.47231,0.11601,0.53263,0.21267,0.13464 1.9769,0.087455,-0.27111,-0.33371,-1.2576,-1.913,-0.33122,0.17422,0.94039,-1.1067,0.031197,0.40532,2.7376,0.60776,-0.86175 0.90725,-3.3078,0.69684,-2.986,-0.89112,0.93569,-1.3061,-0.70869,-1.4972,2.1208,-0.8286,0.20198,-1.8446,0.72179,0.064683 4.5076,-0.79173,-1.6784,-1.3114,-0.15113,-2.1695,1.8711,0.9906,1.0227,-0.79123,0.21576,0.2824,0.71946,1.0036,-1.6789 0.71047,-1.4051,1.9146,-2.3448,-3.5496,1.1713,0.63272,1.708,-1.6886,-0.2805,-0.76036,-1.2503,-0.87022,-0.69045,0.84874 -1.2496,0.28246,2.0996,-0.37679,-2.9738,-0.72838,-0.37737,-0.45168,-0.80214,-0.44729,0.44176,0.63575,-0.72291,-0.30761,1.0741 -0.58526,-2.6469,2.2339,-0.48741,-0.56699,0.82592,-0.59226,2.9737,-0.01158,2.1249,0.58394,-1.1193,1.1429,0.7497,-0.77562 2.8057,-2.1323,4.5929,-0.17852,-0.53582,-0.73085,-0.63203,1.3701,-2.7844,0.10413,0.73373,0.65131,-0.98648,-0.22432,-0.78895 2.621,-3.8259,2.7077,-0.18621,-2.1092,-0.26442,2.2271,1.0944,-0.80696,0.025315,-1.1204,-0.076525,-1.6741,-0.87004,-1.2901 0.90332,-3.2891,1.4174,0.65614,1.4125,1.5888,-0.13407,0.99822,-0.027124,2.5977,-0.15905,-0.68818,0.93619,0.30999,-0.821 -1.1076,-4.0679,3.0207,-1.7629,0.39907,0.029693,-0.49929,0.58128,-1.9069,1.6289,0.91438,0.27058,0.037154,-0.82537,-1.4734 -1.1403,-2.7785,3.2176,-0.65223,0.19965,0.83878,-1.0897,2.5049,-0.16223,1.4356,1.1974,-0.78117,0.15973,0.068364,-1.1816 2.1265,-1.6177,-1.3809,-0.50875,-1.9343,1.1731,-0.10345,1.1973,0.11711,2.1377,0.7336,1.6413,2.1592,0.19389,1.2751 1.9498,-0.23087,2.8011,0.16958,-1.9239,-1.7856,-1.5683,0.053172,0.053492,-1.0061,0.30032,0.51656,0.31642,1.1368,0.74626 2.5499,-0.83483,2.3418,1.0453,-0.99467,-3.124,-0.67164,-0.39816,-0.91289,-1.514,-1.5575,0.33291,-0.042493,-0.5955,-0.98069 -2.8739,-0.52391,-2.2408,0.40541,-0.8954,-0.42761,0.49627,-0.70262,0.66761,0.15748,1.1051,0.42076,-0.80109,0.63526,-1.4768 2.4272,0.35871,2.205,0.6698,-1.6912,-1.0498,0.57043,-0.6186,1.2867,-1.2804,-0.85528,0.46275,0.052973,0.56136,0.50848 2.3092,-0.29882,2.0467,0.76586,-3.023,-0.22933,-0.78999,0.036433,0.84351,-1.1309,-0.9676,0.24438,-0.091663,-0.40349,0.069599 -0.88869,1.1349,0.35698,-0.49946,-3.2255,-1.1083,1.8701,-0.47066,-0.87782,-0.61133,-1.1168,0.3989,0.60677,-0.71373,0.31225 -1.6921,2.306,1.1678,-0.45547,-0.40222,0.54121,1.244,0.77888,-2.964,0.6431,0.29105,-0.6088,0.93868,1.0247,0.71474 3.0521,0.21363,-0.15375,0.59017,-1.3123,0.21856,-2.3722,-0.44649,0.72965,0.99252,0.2673,-0.92205,-0.35329,0.8869,0.53125 4.3704,-4.6647,-1.5713,0.42851,-0.57437,0.90136,1.17,1.8174,-0.36895,0.9948,-0.53333,1.0225,0.30569,-0.6404,0.088486 -2.2022,3.1013,-0.0056155,0.14474,-1.354,0.5403,1.5973,0.5868,-2.1598,-0.5043,-0.29206,-0.69006,0.65408,0.37884,0.63467 1.0563,-0.2457,0.064597,2.8998,0.83346,-0.44046,0.3735,-1.7316,-2.474,-1.7344,1.7329,0.49272,0.47883,0.9338,0.75154 0.17319,-2.3063,1.4685,-0.54772,-1.3536,-3.2771,2.6141,-0.27724,-1.34,0.26249,-1.0142,0.57852,1.5435,0.34109,-1.312 0.49353,-0.40596,3.0235,-1.435,-3.4546,-0.4731,0.37805,0.18889,-0.053492,-1.7825,-0.23387,-0.69413,-0.38499,-0.57665,0.36501 -2.8127,-2.1679,0.72787,0.14722,-1.5176,-1.9579,-0.41022,0.36438,0.20349,-0.89782,1.5371,-0.86226,-1.0256,-0.29285,-1.1734 -1.6297,-1.7958,0.024204,0.50304,-1.1507,-3.0039,0.82547,-1.9588,0.092818,0.6539,-0.28817,-0.42319,0.33748,-0.13875,-0.11982 1.4623,1.3023,0.095349,1.3223,3.0233,-1.6762,-0.79398,1.5069,0.51372,0.95636,-0.72171,-0.67702,1.2943,-0.48508,-1.0222 3.8273,-0.65085,0.1542,-1.9066,-1.1254,-3.1346,0.031337,-0.12846,0.49154,-1.4311,-0.18846,-0.19718,0.48503,-0.11137,-1.2934 3.4686,-0.59116,-1.7462,0.17396,-0.57112,-0.48708,1.3181,-1.5182,0.9377,-0.37031,0.84261,-1.425,-0.36804,0.55876,1.939 0.61526,1.5258,-1.3379,2.3136,2.7886,-0.77346,-0.92987,1.0411,0.88058,0.50426,-0.32402,-1.4386,0.87844,-0.32644,-0.87404 -0.13286,2.4545,-1.7903,0.33829,-2.0175,0.8014,0.47619,1.122,-0.94866,-0.73289,-1.3073,0.11219,0.41382,0.53621,0.55374 1.6193,0.42124,0.23419,2.7838,-0.17142,-0.88272,0.81547,-0.8221,-2.4282,1.5144,-0.45697,0.59359,0.71385,-0.5386,-0.010735 0.19495,1.9335,2.3476,-0.49529,-1.1808,-1.527,1.9413,0.41071,-1.4777,1.8034,-1.568,-0.42188,-0.24312,0.99514,1.18 -1.5875,0.43525,1.2752,-1.6133,-2.3819,-1.2929,1.1252,-1.1929,-1.1412,0.16176,0.66882,0.1544,0.63328,-0.14397,0.67077 3.3593,-0.83169,-1.6586,0.69844,-1.1389,1.3611,-0.54626,-0.70894,0.8221,0.79037,-0.17385,-1.2912,-0.28188,0.017901,0.46231 -2.3238,0.3466,0.49295,2.2308,-0.47742,-2.4759,1.5551,0.80183,0.1845,-0.21149,0.70799,0.38749,-0.72318,0.27085,0.075828 0.63436,-0.39308,1.9226,3.3801,1.9401,-0.91054,0.96779,0.61301,-1.484,-0.54474,0.97517,1.3021,0.50667,0.049869,-1.0283 1.1833,1.7673,-0.70355,-0.1663,-0.083173,-1.5239,-0.89933,0.87497,0.54051,2.0871,-0.78293,-1.5485,0.99533,0.36779,0.35018 0.58331,1.4828,-0.83932,1.5922,0.65872,-0.046399,-0.80801,0.89305,-0.79429,1.7463,-0.15814,-1.1662,-0.014842,1.2799,0.51548 2.7779,0.86946,-0.30742,0.67008,0.12267,-2.9948,0.50286,-0.86664,0.086116,0.11139,-1.3281,-1.6687,0.10839,1.1033,-0.011583 -0.46049,0.48426,1.4292,1.9234,0.10894,-1.8184,1.5215,0.47765,-0.45671,1.8541,-0.12795,0.56075,1.3472,1.0298,0.075185 2.192,1.8648,-0.84018,-1.9282,-0.85532,0.87151,-2.0908,0.049988,-1.6768,0.29495,3.0178,-0.36952,1.1209,0.69611,0.48558 2.7721,2.1555,-0.50787,-0.67104,-0.15921,-2.2671,-0.33605,-0.038764,0.3472,1.4896,-1.2928,-1.7875,1.235,0.90424,-0.1475 -0.18833,1.563,-0.8772,1.9897,0.011634,0.18897,-0.59268,1.0825,-0.47284,0.92981,-1.5082,-1.3566,0.092651,0.27225,0.66593 0.93371,1.0071,-0.87913,0.69973,2.4157,-3.6353,-0.12336,2.0795,-0.13265,-0.55075,-0.51344,-1.5349,0.72695,-0.022698,-0.62394 -1.5112,-0.49691,-1.1611,1.9617,-1.2101,-0.13309,0.86713,-1.6076,0.63683,1.06,1.0466,0.51482,0.012869,-0.53648,-0.46281 -1.8254,2.5096,0.44782,-0.32007,0.63347,-0.73919,0.93191,3.3595,-1.1838,-0.63607,-1.2479,-0.70806,0.51497,0.12433,0.4889 0.4638,1.4356,-2.2002,0.3689,1.8789,-1.7262,-1.151,1.8612,0.97625,0.81916,0.71095,-2.2377,-0.18468,-0.20054,0.24685 2.3317,1.7341,-0.032979,0.72743,0.34729,-0.66467,0.54113,1.8662,-0.99725,1.4175,-2.0988,-1.2696,-1.1612,1.139,0.59445 -0.61363,-0.24724,-0.31795,2.0725,3.0127,-0.35485,-0.30043,0.54229,-1.2784,-2.9009,0.38724,-0.83231,-0.15591,-0.91574,0.045609 -0.097557,1.1952,2.2578,0.63674,-1.104,-1.68,-1.4996,-0.00038608,-0.47718,-1.4786,1.5856,1.1454,0.38027,0.29765,-0.67172 2.539,0.56061,-1.5556,-0.63193,0.63574,-0.67096,1.3167,0.047486,-1.2493,1.0376,1.0173,0.40975,1.7207,-0.40742,1.8652 1.9286,-0.45527,-0.54497,2.1004,1.5853,-2.7926,-0.73353,0.12854,0.85046,-1.1207,0.14587,-1.7824,0.39479,0.033247,-0.075815 4.0374,-1.9256,-1.3407,-1.0244,-0.87273,-0.81584,0.70925,-0.15695,1.4624,-0.34007,0.97771,-0.90515,-0.47686,1.2844,1.8564 -2.2128,-1.8723,-2.3141,0.18115,-0.57088,-2.3433,-0.65104,-0.054521,0.18773,-0.30884,-0.058472,-0.018241,-1.0986,-0.30721,-1.0615 -1.0112,-0.34534,0.53308,2.3964,0.14102,-1.5005,1.2956,0.63427,1.0664,-0.95342,0.48978,-1.6782,-0.39038,-0.40267,1.3191 -1.9066,-3.2558,-1.8273,-0.49502,-0.90012,-1.0019,-1.8514,0.80195,-0.065771,-0.372,0.01003,0.051081,-0.81874,-0.45604,-0.64686 -0.85603,-2.2255,-2.6869,0.34813,-1.1198,-1.0646,-2.3289,1.1156,0.053832,-0.39571,-0.57521,1.1697,-1.2498,-1.1238,0.66169 0.59434,3.4154,-1.2256,-0.31072,-1.138,-0.31956,0.28302,-0.075407,-0.90135,-1.718,-1.9229,-1.2814,0.79366,0.38534,-0.36016 -1.6798,-2.5196,-1.4824,-0.43097,-1.0169,-0.75503,-2.5627,-0.18253,0.47309,0.49557,-0.30495,0.87479,-0.131,-0.96259,0.22934 -1.3102,-2.5998,-1.9084,0.40787,0.81576,0.13511,-2.5253,1.2494,0.48392,0.28178,-0.38094,-0.036628,-1.8856,-0.15859,0.84742 -1.6888,1.8365,0.74219,1.1567,-1.5765,-1.4012,0.41553,-0.29574,-1.3608,0.30737,0.84948,1.6392,-1.0709,0.96406,-0.22194 -1.2439,-1.8085,-3.0584,-0.10683,-1.6469,0.011263,-2.1437,0.90284,-0.10717,-0.55134,-0.67793,0.26973,-1.065,-0.62854,0.6347 -0.10267,2.3574,0.14871,1.6924,-0.099514,-1.6712,0.10769,-0.16916,-1.5852,-0.55375,-0.72578,-0.48345,-0.64018,1.8217,0.15226 -0.57031,-2.5466,-2.197,0.88657,-0.93443,-0.42181,-2.3842,1.4035,0.20713,0.53735,-0.25133,0.75696,-0.54009,-0.3672,0.59951 -2.7287,-2.1609,-1.5729,-0.45701,-0.53658,0.7377,-2.8726,0.71522,-0.058806,0.064225,-0.31078,0.32409,-0.77339,-0.20613,0.54481 -1.7661,-1.6295,-3.033,-0.0025615,-1.4343,-1.4504,-1.7013,0.18632,-0.32659,-0.12822,-0.20016,0.59085,-1.1524,-0.07033,-0.014347 -2.6669,1.8329,-1.9025,0.3303,-0.017094,0.56734,0.8018,2.1353,0.41466,0.61674,-0.55619,0.030898,0.11514,0.093212,0.87111 -1.6694,-2.3496,-2.5311,-0.46171,-1.41,-0.66596,-2.1301,0.27091,-0.15853,-0.99512,-0.19667,0.77556,-0.50464,-0.70665,-0.041218 2.7328,0.63696,0.80728,0.064203,-1.3357,-1.3088,-2.357,-0.71092,-0.24349,0.77387,0.81603,-1.2754,-1.0308,0.72923,0.64568 -1.016,-2.2655,-2.5729,0.081367,-1.0059,-0.022573,-2.3005,1.506,0.098824,-0.25421,-0.34261,0.67513,-0.43902,-0.67934,0.62865 2.9725,-2.6781,-0.34456,-1.5612,-1.9925,-0.87562,0.15799,1.0326,0.061464,1.1667,0.5071,1.0899,0.43918,0.066986,1.1929 5.104,-1.9579,-0.2071,0.26064,-0.87183,1.0308,-0.62152,0.87808,0.0055111,-0.85766,-1.0933,0.060338,-1.0022,-0.016784,-1.1234 -0.11376,2.177,1.443,0.055398,-0.1599,-0.60212,-1.0961,1.9317,-0.98827,1.5804,-0.39524,0.66689,1.0024,0.51399,0.33488 -2.674,-0.20065,-2.8899,-0.63954,0.59227,-0.21868,0.28052,0.017112,-0.3415,0.046233,-0.25426,0.16793,-0.28406,0.58409,-1.4262 -0.15782,-2.1053,3.8735,0.3542,0.13632,0.84407,-1.0957,3.4778,-0.39861,0.91711,1.3935,-0.002172,-0.28393,0.007108,-0.44979 -2.7666,-2.0451,-1.4687,-1.5622,0.72838,2.3406,-2.0116,0.11068,-0.87793,0.016411,-0.56668,-0.07043,0.35532,0.08543,0.38747 4.2174,-1.779,-2.2921,0.22684,-0.54078,2.4165,0.86155,-0.34865,-0.39539,1.0808,0.2904,-0.81421,-0.48699,0.054056,0.51944 4.4117,-1.8978,-0.83902,-0.44811,0.013099,-0.63666,1.9745,-2.1514,-1.0797,-0.78231,1.2545,-0.50753,0.43449,0.42766,2.7486 -1.2755,-1.0634,-3.398,-0.18539,-1.804,-0.51804,-1.2741,-0.032797,-0.043152,-0.82648,-0.49735,0.76583,-0.74775,-0.38437,0.17917 1.1901,1.2854,-1.9729,2.3781,0.31206,0.36471,-0.62932,-1.7326,-0.94194,-0.3738,0.5668,-1.2237,1.0074,0.48752,0.4701 -0.16634,-3.3928,1.0377,0.73156,0.43042,-1.1141,0.48198,-1.9369,-1.0739,1.2722,0.72207,0.82298,0.45975,-1.6305,-2.2884 -0.28506,-1.5651,-0.80468,-0.45852,-0.52601,-2.319,0.13697,-1.746,-1.4569,1.4857,-1.1487,1.5988,1.5011,-0.64267,-0.54781 -1.1125,-2.8576,-0.099377,1.0433,0.84792,-2.5146,0.55971,-1.4962,-1.3487,0.82436,0.10649,0.91607,1.1677,-0.93732,-1.4291 1.5378,2.0361,-1.2454,-0.2319,-1.1518,-1.3792,-0.57998,-0.86436,1.1753,0.84098,-0.33912,-1.1839,0.90469,0.29756,0.67577 -0.07144,-1.5681,-1.6823,1.3322,0.97512,-0.033838,0.62024,-0.46322,-1.6037,1.9545,-1.0176,0.72662,2.1049,0.14827,-0.19407 0.47816,-2.9331,0.89293,2.1312,-0.46708,-0.12796,1.2869,-1.7049,-1.0898,-0.11593,0.90174,-0.22826,1.1206,-1.3844,-0.22359 1.8398,-3.3291,0.78728,1.9212,-0.99772,0.39207,1.1691,-1.4902,-2.0908,-0.78355,-0.34771,-0.66806,0.51029,-2.0784,-0.14293 2.2892,-0.3833,-2.0215,-1.5833,-2.3475,0.12849,-0.92205,0.24368,1.4701,0.47989,1.0588,-0.62226,0.39823,-0.22201,1.6312 2.903,-3.733,-0.11669,0.15364,-1.391,1.2475,0.87656,0.74545,-0.4264,1.2395,-1.3698,-0.41252,-1.1436,0.2374,-0.91675 1.9339,-1.4186,-1.9762,-2.571,-1.9024,-1.2455,1.6097,2.5338,0.57988,-0.54411,0.22713,2.5417,0.2461,-0.17244,-0.40985 1.0119,0.68028,-1.6297,2.4772,-1.8961,1.1837,-0.047429,-0.78171,-0.13937,0.07725,-0.36551,-0.46736,-0.038324,-0.078715,0.98579 -0.48566,-4.228,-0.80439,1.548,0.89154,0.19337,-1.067,-0.033466,-0.27732,-0.096367,0.24484,-0.56001,-0.45057,-1.3015,-0.40885 -0.51573,-1.6066,-0.65701,0.31785,0.57953,-2.5222,-0.8326,-0.82509,-1.7393,1.3583,-0.23528,2.5788,0.95224,-0.48333,0.37904 2.1452,-0.8223,-0.32512,2.0149,-0.31092,1.2656,-0.78156,-1.7468,-1.0411,-1.512,0.34385,0.047504,1.5393,-1.7116,-0.98917 0.98003,-2.7896,-1.6649,-0.58372,1.4227,-0.18801,1.4892,2.2718,-2.6047,-2.7865,-0.08559,0.21181,1.512,1.1781,1.46 -2.9689,0.034587,-2.5508,0.41092,-0.45879,-1.0908,1.6326,-0.017706,0.21906,0.46136,-0.48642,-1.0547,-0.53005,0.91738,-1.0197 1.3639,-0.65783,2.8266,1.5559,-2.2555,-1.2851,-1.0608,-0.81411,-0.82451,-0.074442,-0.14683,0.22136,-1.2746,-0.12865,0.61464 4.5526,-2.2006,3.2202,0.74885,-1.6533,0.30662,-0.72452,0.62022,-1.5766,0.10398,-1.0313,-0.39405,-1.4553,-0.36376,-0.58656 4.496,-0.52188,2.198,-1.3209,-1.952,-1.2583,-1.0436,0.49999,-0.12569,-1.5437,-1.2041,-0.037211,-0.46701,-0.18711,-0.80977 -0.42452,1.8488,-0.57546,0.5694,-2.7764,1.3429,-0.92595,0.078311,-0.20275,-1.4036,0.99872,0.90358,0.15193,-0.29185,0.54988 -0.93985,0.070467,2.8113,-0.90353,-3.0989,0.31936,-0.13135,-0.53593,-1.199,-0.48352,0.65765,0.24671,-0.91592,-0.26599,1.195 -1.1223,1.8021,-1.1918,2.4677,-0.092227,-0.84429,-0.18973,0.94525,0.48194,-0.12623,-0.66031,-0.21679,0.17278,0.73259,0.10867 -2.4701,1.1553,1.2589,0.3593,-1.4367,-1.5771,0.60724,0.48612,-0.5819,-0.3646,1.2206,1.1873,-0.179,0.80788,0.19736 -1.8726,-0.45513,1.0317,1.2493,-1.1394,-2.0827,0.63609,-0.37162,-0.026547,0.53545,1.1242,1.3194,-0.31643,0.020153,0.10079 -1.9682,2.0154,-0.072081,-0.63523,-1.9907,-0.5297,1.6211,-0.8256,-1.971,0.089967,-0.70075,0.35143,0.65702,0.20178,1.4264 -0.54369,-1.6299,-0.92832,-0.13117,0.022684,1.3099,-2.5615,-0.83837,0.93321,1.8794,-1.2001,1.4558,0.23196,-0.0057294,1.7831 3.5116,-1.2204,0.71607,-0.10172,1.562,-0.31975,0.33247,-2.8214,-2.5084,-1.225,0.80666,-0.84534,0.85881,0.06878,1.3366 -0.53868,-1.4336,-1.6573,1.9572,0.26995,2.3809,0.020187,-0.16283,0.049707,-0.30018,0.74417,-0.88948,0.89401,-0.38644,0.3506 -2.3514,1.2791,1.6416,-0.20162,-1.7505,0.63999,0.45409,-0.71886,-1.1598,-0.93113,1.7911,1.4575,-0.67109,-0.34722,-0.12007 -0.6033,-1.3484,2.8308,1.9699,-1.0369,-1.1435,-0.82929,0.86658,-0.6282,-0.25616,1.5564,1.0044,-1.4431,-0.32769,0.12608 2.4456,1.0928,2.7875,-0.074182,-1.9516,-2.0649,-0.66789,-0.83267,0.11422,-0.94449,-0.70377,0.4423,-0.57285,0.65204,0.7912 -0.64092,-1.733,3.0038,1.3356,0.50482,0.27879,0.5257,-1.7224,-2.1549,-0.31697,0.76456,0.33513,-0.28453,-1.8905,-0.68069 3.1839,-0.79116,0.16793,1.5377,-1.8561,0.29078,-0.42729,-0.9262,0.5306,-1.471,-1.5059,-0.098419,-0.53913,-0.57085,-0.35185 0.68706,-0.62535,0.80081,2.4044,1.2194,0.017265,-2.1206,-0.29646,-1.8155,-2.213,1.7585,0.44264,-1.7926,0.15511,-0.44394 0.3773,0.49914,1.9634,-1.3961,-2.6939,-2.0511,2.2934,-0.34364,-0.84779,-0.77046,-1.2556,-0.10008,-1.8064,0.50493,0.61339 -2.5821,0.88503,0.84717,0.92594,-0.852,-1.2808,1.207,0.23034,-0.13985,-0.2684,1.1903,1.2719,-1.2938,0.95428,-0.37653 3.3864,-0.96245,1.1902,0.42561,-1.164,1.8349,-2.173,1.7532,-0.045556,0.79574,-0.94709,0.90844,1.9123,0.065181,-1.5499 0.35981,3.2497,-0.10845,0.43087,-0.26829,-0.93314,-1.489,0.39531,-0.44795,0.64869,-0.41155,-0.36881,-0.87858,0.432,-0.053312 -3.1228,0.39737,-0.099439,0.38965,-0.80355,-1.6263,1.3414,-0.87307,-0.57048,1.3717,0.86067,0.88487,0.42156,0.26466,0.078875 -1.0625,-2.5746,-1.1531,-0.13384,0.010357,-1.2864,-2.5456,0.56064,-0.66076,0.45117,0.38626,2.6693,-0.005721,-1.0772,0.2948 4.3346,-3.0433,-1.8947,-0.01546,-0.65986,1.0672,1.3951,-0.32739,-0.02502,-0.43722,0.40539,0.093245,0.61776,-0.11798,1.2037 -0.88061,-3.2005,-0.65855,-0.099497,0.01401,-0.75842,-2.8543,0.54915,-0.059635,1.2861,-0.5115,1.6495,0.1205,-1.1832,0.81814 -1.1056,-0.9329,-1.4645,2.2129,0.93604,1.427,1.0713,0.13383,-0.5815,-0.77078,1.1137,-0.72902,0.83845,-0.6767,0.11652 -0.71713,2.1436,-1.7186,1.4068,0.46393,-0.42675,-1.2307,1.3604,1.2215,0.14705,-0.72346,-0.7863,0.064116,0.14426,-0.20813 2.0025,-0.046648,-1.5808,-0.60937,-0.4442,0.046643,0.8441,-0.31132,0.43157,0.94297,1.2111,1.2803,2.2609,0.38475,1.0817 -2.0536,-4.3244,-0.18851,-0.47501,0.41226,-0.2756,-1.9685,1.3284,0.42127,1.1513,-0.090856,-0.46226,-0.76081,-0.17987,-0.7914 1.9503,1.7375,1.9319,0.25038,1.4893,-0.25788,0.042414,1.7302,-0.52327,2.1024,-1.8561,1.4587,0.48254,-0.11494,-1.7577 1.3763,-0.66027,0.94239,2.5281,-1.6341,0.92545,0.76924,-1.5066,-0.6537,-0.13296,-0.29141,0.30996,-0.902,-1.4264,0.6273 -0.8233,-4.6881,0.37051,-0.19294,1.1004,-1.6608,-2.2752,-0.41114,-1.807,1.0361,0.010469,2.0484,0.00022073,-1.3092,-0.66513 -1.2743,0.38205,-3.8816,0.1363,-0.52143,0.14546,-0.051701,0.2991,0.13403,0.78743,-1.5194,0.0055631,-0.29193,0.81843,0.19507 -1.0697,-2.4771,-0.49008,-2.9688,-1.4932,-1.2543,0.63938,-1.6205,-2.502,-0.37253,-1.967,0.36107,0.22358,-0.45328,-0.16074 2.4877,-1.812,-2.513,-2.6865,-2.0998,0.25567,-0.20471,2.3706,1.1952,0.25996,1.1631,1.2077,0.67648,0.35881,0.51873 3.6221,-1.3433,-0.13611,-1.1695,-1.3236,-2.1984,-0.7094,0.58455,0.29167,-1.6005,0.76823,-0.26635,0.58683,-0.43731,-0.94133 -1.1144,2.5757,-1.8741,0.81776,-2.3154,0.85019,0.2462,0.4222,-0.81769,-0.36418,-0.28993,0.46352,0.59682,0.29097,0.48868 -2.0023,1.3616,-0.77594,1.1761,-2.1145,-0.16298,0.26919,0.59281,0.54508,-0.69625,0.9711,1.4995,0.029737,0.4535,-0.2106 -0.16034,-3.4947,2.2779,2.2987,-0.5679,0.55118,-0.47737,1.5863,-0.27767,0.98845,1.5692,-0.93729,-0.365,-0.53926,-0.4474 0.99769,-1.59,1.2396,3.0805,-0.80274,2.5541,-0.69871,0.3001,-0.88634,-0.38911,1.3802,0.10069,0.37691,-0.49177,0.52509 3.6124,-0.19004,-1.3004,-0.2498,-1.8078,-0.33563,-0.54875,-0.23047,1.8566,-1.288,-0.53844,-0.56162,-0.61578,-0.051196,-1.0882 -1.3316,-2.4369,-2.1358,-0.22485,-0.16791,-0.15744,-2.6664,1.9232,0.38572,0.21916,-0.42654,0.99659,-0.58818,-0.18181,1.404 -1.8935,-2.625,-0.86107,0.10867,-0.50243,-3.4446,-0.28861,-0.59475,-0.74788,0.37145,0.30994,0.50299,0.2305,0.23922,-0.47455 1.3589,-2.2216,-0.10387,0.41948,-0.14025,-1.3561,1.9775,-2.5423,-3.5479,-0.94075,-1.0209,0.38212,1.0806,-1.1194,0.30247 1.4776,1.052,1.8006,-1.4083,-1.7018,1.2468,-1.4905,0.71602,-1.3318,-1.2781,-0.77908,0.74992,0.30443,-1.7499,-0.61254 1.9766,-0.5192,1.5877,1.834,4.0538,-2.2511,0.13219,1.7266,-0.29571,-1.2611,0.7432,0.29786,0.94225,0.82118,-0.67475 -1.3373,0.65483,2.4449,1.3274,-0.51274,-1.6326,1.5143,-1.497,-1.2699,0.75899,0.37896,-0.061285,-1.0732,0.47877,1.1642 1.4571,0.19599,-0.28123,0.4073,1.8355,-1.5485,-0.52672,2.7728,0.15516,1.7406,-0.00056178,-0.16877,1.8169,-0.82582,-1.2869 3.9474,-2.9967,-1.1125,-2.4492,-1.7395,0.14337,1.4942,2.182,-1.1421,1.4457,-1.05,2.4532,0.49585,-0.85944,0.10408 -0.04024,0.83194,1.23,2.1854,0.97742,-1.7462,0.0023952,1.8858,-0.26526,0.46952,0.46808,1.0032,0.64972,0.2991,-1.4826 2.4424,-0.75988,2.6799,1.7109,-0.21851,-0.23717,1.5798,-1.6099,-0.73177,-1.1886,-0.87878,0.80569,-0.17133,-0.026596,-1.3822 -0.15981,0.99823,1.392,2.9464,1.9297,-0.97137,0.92929,1.1466,-1.5658,1.0891,0.35476,0.8099,0.22612,0.87761,-0.81044 0.60354,2.6892,-2.5757,-0.67488,-0.80421,0.06006,-0.92931,-0.18552,-0.10367,0.015171,0.1582,-1.483,1.5766,0.23966,0.49513 -0.69515,0.58635,0.50527,3.2351,1.9592,-0.1713,1.785,1.2918,-1.9952,1.097,0.77994,0.50331,0.12798,-0.45145,-0.22289 -2.1073,-1.4065,-1.0491,0.82372,-0.21298,1.2891,-1.0194,-0.65388,1.2001,1.428,1.2846,-0.41336,-0.711,0.40777,-0.57758 -0.2353,1.7903,0.22603,0.37355,-1.0562,0.52163,-1.9068,1.486,-0.26045,-0.039168,1.9268,0.94334,-0.33286,0.85753,-0.86314 -0.19489,0.19828,0.23947,3.0343,2.2445,-1.1823,1.0525,0.42579,-1.4022,0.31453,0.091294,0.78462,1.1485,-0.047269,-0.85398 1.6359,-0.40885,-0.12566,2.2956,3.5603,-0.54464,-0.13218,0.7359,-0.42967,-2.6851,0.18294,-0.65088,1.6395,0.1468,-0.13274 1.7971,2.1149,-0.46524,0.69171,-1.385,-1.4277,0.013118,-0.43717,0.21362,0.78786,-1.8318,-0.82806,0.060412,1.6041,0.36175 0.25792,1.1018,0.041398,4.7468e-05,2.3536,-1.7662,0.010851,2.9491,-0.15137,1.0445,-0.24377,-0.59236,1.9944,0.1605,-0.94862 3.1005,0.47505,-0.48171,1.7177,-0.25341,-1.1248,-0.13743,-2.0069,-0.02037,-0.2507,-0.25168,-0.85286,0.49396,0.62483,0.15944 1.8117,0.68248,2.2267,1.6291,0.7155,-2.0121,-1.4949,-1.002,-0.17586,-0.37283,1.7649,0.49879,-0.0084513,0.62637,-0.42275 -3.1383,-0.82174,-1.4648,-1.2949,0.65266,0.094599,0.47432,0.19057,0.046121,-0.17385,0.68909,-0.34003,-1.7432,-0.22085,-1.594 3.2868,-0.83689,-1.9553,0.75775,-0.34659,0.21313,1.1241,-2.1316,0.3355,-0.95504,0.51955,-0.87436,1.0854,-0.54147,0.85909 -2.6889,-0.28497,1.0097,0.51471,-0.14082,-0.56724,0.010686,0.56226,0.80693,-0.34608,2.0144,-0.48819,-1.4344,-0.081189,-0.92485 -2.8904,-1.1617,-1.4262,-1.1379,1.5349,-1.2335,-0.59717,-0.4398,-1.0845,0.72063,1.2097,1.3232,-1.3497,1.1032,-1.3471 -2.2275,2.037,-1.7948,0.80056,-0.58315,0.62369,1.7603,2.3697,0.095158,0.37851,-1.3491,-0.70486,-1.0793,-0.13044,0.59573 -3.5259,-0.89952,-1.6695,-1.8151,1.0703,-0.57518,-0.23217,-0.6318,-1.0316,-0.19114,0.80269,0.91163,-1.0358,0.71741,-1.1583 -3.0293,-1.4154,-1.8017,-1.9162,2.1626,-0.95989,-0.49889,-0.35308,-1.6742,-0.67233,0.19553,1.7441,-1.0939,1.2996,-0.92556 -2.5123,-0.93061,-1.6938,-1.2089,1.3735,-1.584,-1.6751,-0.45307,-1.139,0.79921,0.47409,2.4196,-0.68389,1.2462,0.19153 -3.2862,-1.613,-0.22374,-1.3316,2.319,-1.9079,-0.35569,-1.0349,-0.86133,0.83212,0.61077,0.77633,-0.84985,0.94493,-0.1021 3.0504,-1.62,-1.6491,0.42713,-1.0341,1.7737,-0.44085,-1.6936,-0.81914,-1.8797,-0.11498,-1.5134,0.77356,-0.43242,0.66676 -0.66707,2.1191,-0.0052294,2.3089,-1.6999,-0.89727,0.36902,0.075459,0.4247,0.552,-0.87739,0.39734,0.55395,1.0415,0.82218 -1.761,-3.6577,-0.12056,-0.20195,1.2622,-1.1961,-2.389,-0.44701,-0.89297,0.80823,1.1287,1.5572,-1.3278,-0.030886,-0.56474 2.3486,-1.47,-1.615,-2.2557,-2.0826,-0.72469,1.0423,2.3796,-0.6665,-0.30596,-0.21976,1.0823,0.77009,-0.5217,-0.06211 -3.2411,-0.26148,-2.5322,-1.4578,1.2835,-0.35872,-0.81839,-1.034,-0.99954,-0.032565,0.26384,1.3979,-0.91061,0.11592,-1.0365 0.37818,-1.6275,1.2327,3.0192,-0.72168,0.36801,-1.4349,2.1799,0.69686,-1.4449,0.94926,0.057699,-0.4464,-0.54646,0.017211 -2.7711,-0.10129,-3.2586,-1.3412,1.4119,-0.044131,-0.96054,0.016585,-0.1472,-0.78911,-0.56122,1.3165,-1.3483,-0.42446,-0.34997 -3.3646,-1.4592,-1.4965,-1.4859,0.43059,0.45214,-0.66204,-0.046669,-0.14951,-0.27055,1.1964,0.21439,-1.6306,0.045445,-1.5173 -3.5514,-0.91073,-1.3049,-1.5147,0.35017,-0.5669,0.041712,-0.32022,-0.53526,-0.045451,1.4836,0.68359,-1.1053,0.72166,-1.7063 2.2224,-3.5389,-0.16576,-1.6187,2.708,2.9154,2.5284,0.73131,-1.8821,-0.99019,-0.67978,2.7619,2.7979,0.40746,0.32214 3.4949,-1.5303,-0.78305,0.46855,0.60248,-0.72325,1.9592,-1.24,-0.42787,-0.030039,0.47444,-0.88747,1.1226,0.088506,2.027 -2.3762,1.6366,-1.9898,0.069989,-0.88487,0.054165,0.84513,2.8731,0.1843,0.29074,-0.70041,-0.40865,-0.48626,0.054039,0.90623 -1.5475,-1.6289,-1.7302,0.32621,2.5715,-2.1287,-0.82867,0.11956,-0.16036,0.48699,-0.014357,2.3639,-0.6651,0.96216,0.39326 4.9063,-1.8735,-1.1632,-0.1217,0.18164,-1.3623,2.0161,-1.021,0.58087,-1.0427,0.39323,-0.71682,-0.361,-0.3096,0.43198 2.7203,-2.3467,2.2229,1.1128,-1.3535,2.8109,-0.51461,0.083961,-2.1288,-0.31618,0.07295,-1.2951,0.80474,-0.60051,1.7631 -1.888,1.3248,0.51834,0.042268,-2.6608,0.14426,0.86146,-1.0066,-0.97456,-0.14826,1.1252,1.2094,-0.79883,-0.1274,0.074156 2.5704,-1.2105,-0.6913,1.6819,-0.34507,0.38196,-0.55517,-1.8204,-0.57641,-1.931,1.3265,-1.3389,1.3026,0.17791,1.44 1.0278,-2.221,0.91529,1.3384,-1.5563,-0.45957,2.1369,-1.9437,-0.82399,-1.1038,-0.7966,-1.3492,-0.88858,-1.9201,0.43747 1.1044,0.46489,-0.062436,2.5165,-1.3912,-0.53747,-0.45831,-0.83606,0.51485,-0.56,0.23514,0.070507,1.2436,0.52182,0.7446 0.020126,-2.8985,-0.40332,-0.62509,-2.1503,-1.6775,1.2012,-1.3717,0.32188,0.28526,-1.1606,-1.1347,-2.1353,-1.3431,-0.94281 -0.82365,-1.0627,2.3607,0.83692,-0.12368,0.19648,-1.1636,3.3538,0.8626,-0.79967,1.3125,0.023375,-1.6075,-0.27255,0.13002 2.2956,-0.076551,-2.8966,0.95971,-0.7986,0.87984,0.69714,-0.61709,0.68731,-0.80924,-0.51791,-0.4963,0.35708,0.32108,-0.23532 -0.66707,-0.76608,0.97504,1.5737,-2.3607,-0.34872,-0.24531,0.71935,0.40823,-0.48694,1.7418,0.63264,0.35533,-0.58446,-0.22613 -0.74987,-1.0589,1.5803,1.201,-1.9203,0.2282,-1.2368,1.4904,0.41808,-0.68257,2.1073,0.29482,-0.50434,-0.39149,0.1077 3.1735,-0.20837,-1.8234,0.80467,-0.87724,0.86749,0.46929,-1.7613,-0.61562,-1.744,-0.26661,-0.9231,0.49377,-0.50679,-0.61417 0.14813,-1.8033,0.63022,0.31085,-2.9545,0.76152,0.068038,-0.73722,0.12013,0.93693,0.3165,-0.57774,0.61977,-1.5749,-0.30197 -0.28921,1.2295,-1.0577,2.9871,2.3331,-0.40131,-0.091737,2.4574,-0.27422,0.22984,-1.4685,-1.3026,-0.3138,0.024528,-0.38723 -1.1049,2.242,1.7668,1.4365,-0.72708,-1.4577,0.052581,-0.16597,-1.5946,1.1537,0.83052,0.48899,-0.88721,0.83163,-0.078653 4.4365,-0.87274,-2.1324,0.41867,-1.2541,0.60171,0.42442,1.5971,0.033203,1.1425,-0.97492,-0.93072,-0.3531,1.5309,-1.048 -1.4418,-1.0245,-2.7595,1.7555,0.25634,-2.4341,1.455,-0.56274,-1.2799,0.11201,-0.45256,-0.5378,0.32705,0.31242,-0.85267 -0.70087,-2.9616,1.5742,2.0823,-0.89435,-0.31017,0.19018,0.54247,1.0128,-0.39901,0.96155,-0.67381,-0.08836,-1.1586,-0.11764 3.3052,-2.5413,-2.4215,0.26682,-0.49115,1.6053,2.3869,-0.63413,-0.35733,-2.6073,0.36864,0.41183,0.74426,0.12729,1.0737 -1.0646,1.4931,-0.0060837,1.5563,0.76756,-1.7433,1.9893,3.2002,-0.93638,0.33643,-1.3108,-0.93477,-0.61151,0.82932,-0.12901 -2.7267,-3.2391,0.38766,-2.5546,0.43916,-0.19892,-2.8238,-0.3178,-1.2404,0.15779,-0.35397,1.0564,-0.11023,-0.69349,0.27592 -1.9549,0.0040084,-1.4042,1.3018,-1.2665,-1.0234,1.6055,-1.9915,-0.32716,0.89865,0.0060077,-0.49053,0.98394,0.38276,0.4054 1.8023,0.3865,0.48692,0.0090127,-1.3245,-1.4195,-1.0376,-0.41311,1.2105,-1.5017,-0.47781,-0.20066,1.7601,0.75344,-0.19814 1.6597,1.4922,0.12677,0.62186,-2.1328,-1.7707,0.48875,-0.19389,0.92276,-0.81192,-2.0336,0.0042888,-0.31523,0.85515,-0.11471 4.6816,-0.22152,2.2156,-0.93022,-1.6154,-0.4983,-0.67033,-0.12775,0.071661,-1.1082,-0.44652,-0.025548,-2.3153,-0.63835,-1.8132 2.5762,-0.32125,1.7852,1.4212,-2.2394,-0.35062,-0.10588,-0.8622,0.71026,-1.059,-0.95259,-0.16914,-1.0464,0.099579,1.303 1.3987,0.10781,-1.8778,0.56098,0.34169,0.53859,-1.9782,1.1483,1.5502,0.71619,3.256,-0.43723,0.17064,0.86989,-0.57328 -0.52672,-1.8064,1.8533,1.6096,-2.1074,-0.87513,0.087309,-0.67265,0.26505,0.38368,1.7516,-0.67757,-0.6849,-0.50412,-0.28458 -1.1975,-0.58837,2.2901,1.6903,1.5222,-0.10825,-0.53708,1.5935,-0.46682,-0.61056,1.5555,0.47808,-2.5037,0.51749,-0.36968 0.39448,2.7271,-2.3814,0.28389,-1.9609,0.008134,-0.92517,-0.31771,-0.35646,0.37641,-0.47075,-0.76494,0.44958,0.21178,-0.30084 1.487,-1.5429,-1.2711,1.1687,-2.186,2.4063,1.4567,-0.21482,-0.51802,-1.2211,-0.73639,-0.51806,-0.55401,-0.47401,0.23575 -2.1919,-1.2706,0.033529,1.9215,-1.0279,-1.3127,0.76492,-0.27227,0.414,-0.83242,1.9177,-0.81616,-1.1249,-0.28918,-0.41157 4.175,-0.43274,0.22637,0.51422,-0.40928,-2.5866,0.47605,-0.74555,-0.18239,-0.091664,-0.48899,-0.39761,0.62488,1.0967,-0.44818 -1.8287,-1.4309,-0.19578,1.4455,-1.5094,-1.3829,0.76325,-0.6258,0.45321,0.41184,1.8026,-0.17332,-0.32579,-0.13291,-0.62707 -1.4106,-2.7584,1.2356,-0.48676,-1.6235,-0.025557,-0.96301,-0.42085,-0.11397,0.98151,1.6818,-0.1543,0.42374,-0.6591,-1.317 0.43833,0.064522,-1.4299,1.9358,1.6386,1.7688,-1.746,1.2481,-0.51273,-1.8462,1.3036,-1.5241,-0.86121,0.99107,-0.35852 4.4188,-1.0962,-2.3348,0.10739,1.4673,-0.41067,3.2287,-0.62844,-0.53795,-1.2962,-0.42616,-0.62602,-0.24371,-0.13823,0.641 2.6663,-1.8565,-1.616,0.23091,-1.5136,1.3651,0.053261,1.0855,0.26273,2.93,0.28467,1.3477,1.3035,-0.034208,-0.10427 -1.8267,-0.25659,0.98512,1.2091,-1.4058,-1.2455,0.010157,1.3901,-0.29207,-2.3453,1.3143,0.73117,-0.52521,-0.694,-0.46823 -1.3255,2.0764,-0.75626,2.0268,0.53711,-1.2791,0.19876,1.8575,0.95725,0.0053676,-1.3188,-0.090413,-0.35578,0.35547,0.63756 4.9576,-3.4201,-1.3334,-0.047821,-0.054273,-0.01933,2.0683,-0.31241,-0.27633,-1.8503,0.6974,-0.65315,-0.32091,-0.68899,0.8234 -0.73693,-0.78447,-2.3601,1.7675,0.7538,-1.7963,0.013132,-0.80735,-1.271,0.74063,-0.56743,0.96885,1.3929,0.055016,0.80592 3.0831,-2.8503,-1.3775,0.372,-0.50739,-1.1217,2.0484,0.8347,0.95285,-0.16836,-0.58592,1.4237,-0.093707,0.44206,0.052186 3.6994,-2.668,0.096253,0.7856,0.74795,3.4263,-1.3208,-0.098674,-2.9138,0.69568,0.68904,-0.8132,2.1331,0.34945,0.42435 1.5938,-1.705,1.2264,1.3887,-1.9628,0.12624,2.2949,-1.554,-0.042492,-0.40914,-0.25836,-0.93089,-1.1327,-1.3101,-0.18992 2.5166,0.73463,-2.0929,-1.3025,0.19161,-2.0364,1.441,0.34608,2.433,0.48352,-0.012938,0.061168,0.25235,0.90618,0.43948 -0.97276,-3.5286,-1.6525,1.8488,0.28958,0.32276,-1.8529,-0.50901,-0.43469,-0.044148,-0.41024,-0.24363,-0.40111,-1.3519,-0.017858 2.2098,1.3454,2.0817,-0.95012,0.59843,-1.3597,-1.5687,0.10978,-1.2574,-0.81798,1.3803,0.75873,1.7212,-0.16745,-1.5481 2.6038,-0.94563,2.6184,-0.2255,0.49737,-0.059484,-2.2346,1.4379,-1.2095,0.61148,1.3028,0.61443,-0.07061,0.40939,-0.97886 1.8638,0.70553,3.1728,0.91062,0.58064,-2.9903,-0.02537,-0.92693,-2.1718,-0.65787,0.61518,-0.28877,-0.18855,0.83949,0.048571 3.2836,1.137,1.9385,-1.3956,-0.62151,-2.8589,-0.85199,-1.015,-1.0558,-1.0049,0.99085,-0.24904,0.089518,1.0315,0.48451 4.6413,-0.35861,0.87789,-1.2441,-0.2805,-3.1178,0.54588,0.38891,0.39813,-1.854,-0.3922,-0.2013,0.7549,0.69197,-1.1772 1.5687,-0.93964,-2.9169,0.39022,-1.4071,1.2611,1.345,-0.50441,0.55481,-0.9336,0.34367,0.040774,0.64707,0.41098,2.0827 -1.0259,0.89602,1.9069,2.4222,0.5091,-1.7134,-0.78025,0.044913,-0.85201,-1.4903,1.1839,0.8906,-1.718,0.21267,-0.48557 -1.0124,3.3232,0.32818,1.035,-0.6901,-1.8718,-0.65096,0.56185,-0.81476,0.10286,-0.48718,0.47702,0.56709,1.4543,-0.14814 1.0982,2.3205,1.6408,0.45648,-0.94414,-2.8626,-1.2462,-0.88277,-0.88568,-0.63758,0.41208,-0.080199,0.60939,1.3524,-0.078285 -0.65916,0.24226,2.9486,1.9462,-1.2657,-0.62792,-0.85952,0.059873,0.28753,0.056202,1.3989,1.1782,-1.2081,-0.65822,-0.18342 0.096824,1.9539,1.2012,0.54005,-0.57971,-1.907,1.1587,1.1449,-0.65075,1.1144,-2.4082,-1.1474,0.89665,0.29687,0.16219 1.8023,-2.6078,3.031,1.8486,-1.1894,1.0239,-0.029237,-0.92433,-2.5246,0.012949,-0.098147,0.2392,-0.85936,-0.68446,0.36585 1.0027,1.5393,0.16004,1.7054,1.4921,-1.2134,-1.3945,-1.7363,-0.81009,-0.14428,1.8068,-0.92604,0.020701,0.22151,-0.079743 1.7454,3.491,0.55871,-0.72034,0.085646,-1.9076,-1.0157,0.093756,-0.57013,0.90913,-0.83898,-1.6608,0.73032,0.91828,0.55519 3.694,-0.16731,-1.2693,-2.4136,0.0065157,-2.4532,1.6904,0.42706,1.2403,-0.014656,0.65922,-0.45304,0.60031,0.79762,1.1889 1.5868,1.9634,2.2621,1.3315,0.91668,-2.5768,0.86593,-0.81857,-1.3414,0.48233,-1.8719,-0.93141,-0.2066,0.43128,0.66613 -0.32875,3.9396,0.69092,-0.051292,0.092372,-1.1278,-1.7471,1.2007,-2.3998,0.25923,0.91331,-0.36516,-0.455,0.14016,-0.74972 -0.36801,1.4965,-1.5743,2.5259,1.9297,0.28674,0.70914,0.93551,-0.67406,-1.9456,-0.58569,-0.6924,-0.4283,0.86567,-0.062 0.61098,0.55194,2.7714,1.796,-0.95291,-1.8991,-1.404,-0.30661,-0.24599,-1.1184,1.2121,0.34356,-0.7126,1.0158,0.39323 -1.8983,3.087,1.1903,0.63393,-0.40992,-1.3148,0.42755,0.6103,-1.6944,0.23187,0.2548,0.37454,-0.43902,1.6058,-0.20242 -0.73625,-2.5111,0.74452,1.6915,2.3029,0.070818,1.5058,0.63351,-1.3074,-2.4644,0.47385,-0.39455,1.447,-0.6528,0.38664 2.8004,1.7721,-1.0246,-0.95367,-1.2796,-1.3239,-0.64279,-1.4466,1.0816,0.63426,-0.22028,-1.153,0.89954,0.11261,-0.078651 2.476,1.4156,-1.041,0.46263,0.76391,-1.9811,0.48778,-1.5206,0.46187,1.7699,-0.23198,-1.6334,0.7169,0.35207,1.4083 -3.3016,-1.4681,-0.64599,-1.5736,1.5423,0.82679,-1.1544,-1.324,-0.60884,-0.3551,0.86499,0.38894,-0.6921,0.29917,-0.51842 2.4729,1.5212,1.6352,0.47407,1.2637,-3.2062,-0.69402,-1.1376,-0.94204,-0.41772,0.62204,-0.7004,0.24227,1.4434,0.44255 -1.9393,0.94531,1.2898,0.42329,-1.1806,1.0382,-1.1852,0.53181,-0.62142,-0.16006,1.9837,0.72327,-1.0965,0.24607,-0.71583 -0.14609,-0.66134,-0.77014,1.6048,-0.87355,0.12247,-0.73137,1.491,1.1937,-1.0101,0.41066,0.80918,0.39213,-0.67018,-0.85494 -1.0832,1.6779,0.79128,0.41766,-3.0879,-0.55319,0.43146,-0.6359,-0.60581,-0.59248,0.53157,0.58902,0.29403,0.66145,1.0971 5.3522,-1.3792,-0.18412,-1.3095,-0.92757,0.5803,-0.56608,0.9753,0.067151,1.1145,-0.039745,-0.45443,0.23607,0.28075,-0.86629 0.36892,-0.26416,1.7375,2.2342,-2.2578,-0.87037,-0.15589,-0.20228,0.96614,-0.56859,0.63057,0.2281,0.82433,-0.49148,0.55079 1.1126,1.4833,1.5742,0.20048,-2.598,-1.6558,-0.80961,-0.86766,0.090762,-1.4686,-0.9321,0.69162,0.971,-0.52484,-0.12935 0.20097,1.5231,-2.4175,0.47959,0.55687,-0.20645,-1.4664,1.412,0.11976,0.37512,2.3908,-1.0107,-0.88564,0.35149,-1.0409 0.041767,-1.1713,2.3279,0.12163,-3.2152,0.51281,-0.85935,0.22878,0.017028,0.78487,0.77849,-0.28418,0.0094671,-0.91337,0.50248 1.5606,0.96881,-2.2776,1.0988,-1.2719,-0.21183,-0.44116,-1.6996,1.0236,-0.23645,0.45775,-1.3257,0.3669,0.75939,0.85321 -3.5672,0.64762,-1.6507,-0.22605,-1.0561,-0.7466,1.2276,0.58444,0.016101,0.31289,1.0867,-0.28451,0.73965,0.51828,-0.50772 1.916,-1.9142,0.34906,-1.3253,0.38525,-1.0556,-1.8121,0.84186,0.087486,0.48875,3.2633,1.1901,1.2732,-0.18919,-0.1405 1.1798,-0.22314,1.6858,1.0655,-2.9489,0.77826,-1.2226,0.50153,0.50502,-0.030383,0.67542,-0.041206,0.72717,-0.48066,0.90364 -1.5208,1.0277,-0.61241,0.34356,-2.5313,-1.0896,1.9086,-1.0993,-0.2192,1.0677,-0.77877,-0.056726,0.34448,0.44701,0.62024 1.7134,-2.4792,-1.4791,0.78525,0.4165,0.94156,-0.64202,3.0439,-0.26141,2.1979,2.3407,1.4719,1.6895,0.63351,-0.14159 -0.92992,-0.495,1.3002,-0.15631,-3.1568,1.1706,-0.004056,-0.94529,0.1208,0.0099232,0.81286,-0.48214,0.79929,-1.3454,0.39927 -0.27846,2.5202,-0.51118,0.86594,-1.293,-0.70087,-1.132,0.09612,-0.586,-0.54628,0.8415,0.31841,-0.24261,0.92473,-0.63546 0.85156,0.34889,1.096,0.49463,-0.081728,-2.2505,-2.4284,0.81481,0.75346,-0.99849,1.1222,1.0702,1.0387,0.16914,-1.3783 2.5751,0.44191,-0.6918,-2.3007,-0.72933,-0.80894,-0.90136,0.38584,-0.17354,-3.7125,0.72919,-0.27719,0.98772,0.57762,-0.6048 3.3536,-1.4173,-1.8052,-0.50246,0.28336,-1.9493,2.5285,1.0277,0.83865,0.79986,0.36935,0.88007,-1.1053,-0.70898,0.8384 2.202,-0.88435,-2.8019,-1.0377,-2.1184,0.53983,-0.12072,0.96596,2.1832,-0.23103,0.58814,0.14481,0.12114,-0.65092,0.088243 2.1483,1.4641,0.63552,-0.63797,-1.5757,-1.2156,-2.1891,-1.1505,0.034459,-1.4815,1.1591,-0.34608,1.2203,1.0588,0.41157 -0.6855,-0.63398,1.3868,0.42109,-1.7841,0.75939,1.1094,-0.21587,-1.0782,-1.1455,1.1372,-0.74673,1.0363,-1.4542,0.19174 -1.4453,0.58243,-0.28358,1.3731,-2.1942,-0.86207,-0.72883,1.3013,0.60291,-1.2093,1.3753,0.9248,-0.5913,0.53035,-0.012538 -2.2187,-0.0056947,-0.095031,1.8474,-1.39,0.18536,0.71506,0.058234,0.83329,-0.73024,1.9015,0.099411,-0.98197,0.0057186,0.044497 -2.3104,0.9515,-1.2056,-0.090819,-1.9836,-0.68525,1.8428,-1.2256,-0.58955,1.1547,-0.14594,-0.29448,0.96745,0.91289,0.42764 3.14,-1.1864,-0.34952,2.3028,-0.42911,0.57881,-1.4419,-1.2466,-0.6778,-0.78601,0.79358,-0.57373,0.60212,0.25227,0.41724 -2.2491,0.75595,-0.66265,1.5758,-1.1901,0.86442,0.70298,-0.24105,0.11255,-0.31092,1.8997,0.52189,-0.56981,0.19677,-0.69396 2.4966,-0.56785,1.2726,1.8436,-1.9772,0.34186,-1.8548,-0.69087,-0.4115,0.25761,-0.56807,-0.59059,-1.9502,0.15623,1.2501 -1.7038,1.2018,-0.14429,0.74942,-0.98422,-1.3749,0.23716,2.0745,0.76573,-1.1864,0.64948,-0.62553,-0.77326,-0.14123,1.3797 1.7168,1.6604,-0.25042,1.2125,-1.2948,-1.5948,1.2954,-0.65385,-0.15177,0.77377,-2.2724,-0.58514,-0.053105,0.50444,-0.016685 1.2871,0.98778,-0.26092,0.1479,-2.5261,-1.7546,0.62521,-0.57964,0.56332,-0.28372,-1.7106,-0.15345,0.011933,-0.043537,-0.48866 2.0016,0.68069,-2.932,-0.7527,-1.2048,0.37164,0.85391,0.63058,1.3057,0.7277,-0.41238,-0.19013,0.98621,-0.091885,-0.12741 0.34487,-1.1063,0.7171,1.9703,-1.188,-0.14856,1.7726,-2.1572,-2.876,-0.32525,-0.3414,0.3801,0.44389,-1.5672,0.72488 1.3824,-0.35976,-2.0378,-3.1866,-1.4833,-0.86148,1.5477,1.6875,-0.3763,-1.4862,0.89915,1.7732,0.7971,-0.20102,0.87065 0.35747,2.0048,-0.078109,-0.052332,-2.7117,-1.256,0.043493,-0.48788,-0.55669,-0.7275,-1.48,0.00832,0.721,0.59729,0.13592 2.6513,0.6731,-1.0216,0.013507,-0.60316,-1.4814,-0.55389,-2.063,-0.014593,-0.12073,1.7772,-1.94,-0.5072,0.94404,1.5852 0.78682,0.41538,-2.0019,1.4542,0.38556,-1.4444,-0.89653,-0.044575,1.3932,-1.0901,0.87539,-0.22302,-0.64761,0.93362,-0.93183 4.7565,-1.0594,-0.12053,-3.0952,0.75007,-3.1684,1.0759,2.167,-1.5429,-0.55188,1.3166,0.23566,-0.49348,-0.25629,0.27447 -0.21773,1.7592,-0.25427,2.964,0.57817,-0.62786,0.15343,0.033611,-1.1594,-0.14175,0.26724,0.84982,-0.88421,1.2868,-0.013033 -0.53122,0.45724,0.17692,1.9125,-1.7678,-0.98862,0.87616,-1.1474,-0.4929,1.4365,0.35942,1.2523,0.21298,0.34377,0.26138 0.87299,-0.39662,0.29631,2.3864,-1.5991,-0.099466,1.4093,-1.6812,-2.2298,-0.51566,-1.1375,0.095575,0.24495,-0.61558,0.93544 2.4617,-0.89523,0.54423,2.4079,-1.1703,2.8286,-0.94391,0.4899,-0.70113,1.1003,-0.49668,0.04674,0.71106,0.023894,0.30842 2.9464,-1.3321,-1.3277,0.83106,1.1415,-1.6246,1.3881,-1.6033,-0.66064,0.3787,0.43623,-0.83545,-0.10843,0.92329,2.787 2.0731,1.0718,0.31855,1.3827,-1.6167,-1.9254,0.30326,-1.272,-0.25452,0.17962,-1.6772,-0.61635,-0.21994,0.70198,0.21302 0.04535,0.4393,1.3563,0.08833,-3.0261,-0.4796,1.111,-0.57698,-0.50289,-0.19065,0.28919,0.82991,1.0033,-0.25305,0.13963 3.3937,0.88169,-0.66007,1.5061,0.012048,-1.7419,1.3688,-1.2976,-0.49269,-0.16039,-2.0483,-1.1561,0.47348,0.1007,-0.68185 0.51621,2.5512,-1.2718,0.15826,-1.8728,-1.2926,-0.93342,-0.70931,0.13565,-0.2761,-0.87477,-0.52788,1.0114,0.64836,-0.29142 2.9004,1.3298,-1.184,0.59463,-1.0395,-1.6453,-0.41742,-1.4541,0.97722,0.41729,-0.7029,-1.5831,-0.16391,0.3091,0.13215 -0.78773,2.3496,-1.1104,2.9115,1.0411,-0.24697,0.052955,0.6666,-0.90229,0.94826,-0.87799,0.65961,-0.10893,-0.39299,-0.23997 -1.1847,-0.45383,-0.44004,2.348,0.8279,-1.6191,2.1818,1.5164,0.013935,-0.24709,-0.30804,-0.39426,0.0058214,0.021234,-0.21776 2.4317,-4.58,-0.50966,0.94873,1.4369,1.9615,-0.72949,1.5785,-2.3482,-1.3434,2.3261,0.56141,2.4668,-0.91027,0.70552 -1.1322,1.7095,-1.308,-0.65745,-1.3101,-0.034765,0.79656,-0.094449,-2.1867,-0.1358,-1.1537,-0.12288,0.42642,0.5225,0.85708 -1.4825,0.36033,-0.22743,2.2825,0.56223,-1.03,1.4427,1.2359,0.71574,-0.9948,-0.11257,-0.23985,-2.1209,-0.76492,0.25521 -1.9731,3.0266,0.13146,0.24052,-1.0469,-0.46116,0.49682,1.7935,-1.3693,0.74088,-1.035,-0.42274,0.6178,0.28889,0.90357 -1.6843,0.96936,-1.0042,0.91104,-1.7779,-0.010857,0.5324,0.28043,0.15432,1.3566,1.4096,1.1133,-0.15334,0.35902,-0.1746 3.2431,-1.6238,2.8339,0.053384,-1.5051,-1.2325,-1.777,1.2677,-0.93082,-0.91782,-0.64488,0.20613,0.11745,-0.11735,-0.47172 -0.88611,0.40175,1.1843,0.20044,-3.157,-0.75566,0.044285,-0.26677,0.72791,-0.2906,0.66561,0.51536,0.70235,-0.52183,1.1419 0.0018949,-0.32467,1.3403,2.004,-2.0287,-1.3049,0.29066,-1.1622,0.54241,-0.21396,-0.072244,-0.26603,-0.50842,0.28498,1.3918 4.3601,-0.80497,-0.18873,-2.847,0.25818,-3.1937,1.2774,1.6725,0.29205,-1.9602,0.74742,0.86728,-0.073969,1.3009,-0.36885 1.8865,-0.10625,1.4418,0.25359,-2.8419,2.2659,-0.53179,1.8242,-0.4939,1.4299,-0.65575,0.1501,1.125,0.85363,0.041441 2.6593,-2.5021,2.7383,1.8587,-1.2787,-0.42352,-1.4845,-0.077298,-0.99942,0.13801,-0.29062,-0.056471,-0.38012,-0.89102,0.45547 1.9678,-0.56391,1.5492,2.8166,-1.4799,-1.1375,0.04814,-1.0438,0.57641,-1.6806,-0.95313,0.21834,0.090674,-0.50797,0.32738 -3.4548,-0.037496,-2.2935,-0.53194,-1.004,0.22309,0.86399,-0.98709,-0.75644,-0.75349,0.95759,0.15372,0.61377,-0.19819,-1.4111 0.73535,0.59295,0.89932,2.6866,-0.77547,-2.0079,-0.77932,-1.5192,-0.22272,-0.63706,0.63121,0.2095,-0.49316,0.96974,0.24431 -1.5389,-0.74677,3.0557,0.86917,-0.69925,-1.87,0.68568,-0.20502,-0.75324,0.30307,2.198,0.36697,-0.51927,0.79639,-0.35716 1.2825,1.7794,1.3687,-0.76461,-2.0762,0.72596,-1.4619,0.33684,-1.9804,-1.4801,1.1288,-0.12952,-1.7443,0.90199,-0.090337 -1.6514,0.86951,1.4753,0.70344,-1.8462,-1.4047,0.32941,0.055237,-0.335,-0.65164,1.5575,1.3915,-0.71892,1.4315,0.32848 2.056,1.1775,-0.49835,-2.1329,-2.009,-1.7116,-0.44306,-0.090966,0.24985,-1.3442,-0.34295,-1.2535,-0.43755,-0.65326,-0.066248 -1.3829,-1.2665,0.19781,0.43294,-2.4129,0.63497,0.031908,-1.0969,0.95019,0.74512,0.75164,-0.20086,0.2041,-1.1472,-0.22026 2.4584,2.0175,-2.6531,-2.3388,-0.62228,-1.3876,1.0219,0.052911,0.4593,-1.0078,0.23418,-1.4311,1.1195,-0.40229,0.82511 -3.64,0.50626,-1.6776,-0.62828,-1.2799,-0.83104,1.2421,-0.13163,-0.9381,-0.023029,1.0321,0.35676,0.91407,0.60483,-0.99519 -1.733,0.86121,0.85359,1.5738,-2.0424,-2.0946,0.54714,0.036413,0.25016,0.26986,0.45494,0.83637,0.22609,0.92599,0.88411 -0.9801,-0.049237,-0.1216,2.3925,-1.0833,-1.1701,2.0453,-2.0782,-0.75381,0.69274,-0.71316,-0.82232,-0.066968,0.31349,1.0256 -0.36516,-2.6516,0.6728,2.0734,-1.3752,-0.32288,0.13627,-1.9375,-0.40015,0.73198,-0.15381,-1.4498,-0.30931,-0.8421,0.25147 0.15283,0.30732,-1.0182,2.9762,-0.64735,-1.1987,1.1599,0.57794,-0.088607,0.39933,-0.95408,-0.21568,0.709,0.62158,0.22441 2.2632,1.5408,-2.4435,0.45544,0.023278,-0.84965,0.19998,-0.66646,0.58911,1.3785,-0.55632,-1.9121,-0.56778,-0.593,1.1448 -2.609,-1.6837,-0.59715,1.4981,0.6124,-0.59039,0.59143,-1.04,0.50266,0.077055,1.8781,-0.308,-1.6842,-0.55498,-1.372 3.0154,-0.037,0.65131,1.2361,0.84988,-2.4791,-0.80547,-2.1058,-0.18202,-0.50187,1.523,-0.33728,0.71194,0.79055,0.61414 -3.0018,-0.24402,0.1609,0.020025,-1.16,0.88509,0.25699,0.36847,0.97927,-1.2759,2.1907,-0.36054,-1.1068,-0.14168,-1.1831 -3.7658,-0.81395,-1.4351,-0.80087,-0.53141,-0.018776,-0.48991,-1.0251,-0.50729,-0.47755,1.5118,0.43115,-0.43553,-0.10103,-1.3125 -2.4514,1.2237,-0.18773,0.77172,0.73827,-1.5278,2.1383,2.6827,-0.24533,0.029494,-0.89607,-1.211,-0.51817,0.45709,-0.14836 -2.8851,0.88684,-1.0014,0.11849,-0.67463,0.45474,1.8616,0.80973,0.89276,-0.80283,0.26351,-0.86449,-1.5896,-0.56202,-0.61748 0.54976,1.8658,-2.9337,0.26338,-1.799,0.85008,-0.49614,0.72667,0.65988,-0.17006,-0.80837,-0.25753,0.78695,0.32529,-0.22926 -1.0559,-0.5472,1.9769,0.463,-1.8352,0.7777,-0.88772,0.19164,0.91367,-0.25905,2.3078,0.085356,-0.0080365,-0.0064085,0.34888 -1.2282,-0.0091262,-0.15137,2.1278,0.11403,0.72015,1.2976,0.36452,0.048843,-1.8293,0.48024,-0.16333,-1.9127,-0.86019,-0.049389 0.24349,0.41925,0.46942,1.1899,0.14384,0.032558,-1.5176,2.2229,0.91728,-2.014,0.98429,0.47538,-2.5125,0.36352,-0.2172 0.093315,2.3171,-0.62778,1.1534,-1.5841,0.18138,-0.49389,0.49353,0.61032,0.56426,-1.4952,0.62584,1.7692,0.14349,0.2347 1.2017,1.6929,-1.8165,1.6397,-0.84298,-0.42594,-0.83607,-1.6672,0.16405,-0.068608,0.38092,-1.2807,0.31605,0.99905,0.45111 -1.533,-1.4459,1.5525,2.3249,-0.91904,0.28249,0.14145,-0.43401,0.50645,-0.5597,2.3523,-0.096896,-1.3127,-0.30984,-0.077073 -2.2566,-1.1646,-0.046053,1.4088,0.20219,0.26934,0.72945,-0.075972,0.68151,-1.0992,2.0091,-0.97861,-2.0736,-0.15306,-0.61725 0.34539,-0.15834,1.5338,1.2162,-2.7621,0.17212,0.60538,-1.112,0.091368,-0.23434,0.37187,0.084406,0.57949,-1.1771,0.42068 -2.9742,-0.5047,-2.3157,-0.18142,-1.4899,-0.34355,0.32958,-0.33737,-0.18943,-0.8707,1.2114,-0.43265,0.4027,-0.38461,-0.60799 3.0766,-1.4187,2.9861,-0.70886,-2.3448,-0.44953,-0.10246,1.7524,-0.36015,0.19428,-1.0332,-1.3151,-1.4463,0.8784,0.45726 0.084171,1.5916,-1.4442,1.1738,-1.4214,0.87775,0.67579,0.44839,0.56141,1.5138,-1.8514,-0.099009,-0.58986,-0.15551,0.99507 0.43986,-1.7648,1.3998,0.47952,-2.4081,2.1765,-0.12186,-0.50243,0.24707,0.66191,0.069474,-0.9388,0.54558,-1.3271,-0.19124 0.10323,0.72788,2.0347,0.32517,-3.0053,-0.76044,-0.78134,0.19505,-0.54401,0.31328,0.24029,0.42986,-0.98848,0.19478,1.3063 -0.16328,-0.98382,1.9292,2.7836,-1.189,1.2375,-0.78878,0.29838,0.60909,0.243,1.1255,0.65168,-0.85637,-0.6624,0.66074 -0.96309,-0.67797,-0.26327,1.873,-0.06355,1.2096,-0.18056,1.4661,1.2953,-0.24322,1.8008,-1.0787,-1.857,0.6813,-0.37464 -0.081945,2.4167,-0.786,0.10702,-1.7506,-0.11118,-1.2809,0.72061,-0.93862,1.7472,-0.17003,-0.18857,0.56966,0.5991,0.36823 -2.4317,1.417,1.3592,1.1825,1.8935,-1.6334,1.4643,1.4851,-1.588,-1.1912,0.93531,0.62702,-1.0502,0.027351,-0.22623 1.9975,-0.64054,-2.257,-3.7002,-0.70189,-1.6946,1.9868,2.5828,-0.66526,-0.80776,1.5769,2.1292,0.94707,-0.61473,1.0014 2.074,-0.92283,-1.0703,-1.9667,-0.76005,1.545,-1.9755,1.6725,-0.35171,1.606,2.1471,0.89103,2.3121,0.47752,-0.25198 1.7078,-0.41631,0.5975,0.72047,-2.0107,1.2975,-2.2911,1.9119,-0.6874,0.63564,0.203,-0.092012,1.7359,0.80555,0.53102 2.4601,-0.94008,1.1265,2.1728,-1.3417,1.1417,-1.5736,-0.59248,-0.36182,-0.3005,0.32411,-0.10444,0.54743,-0.080607,0.45667 -3.1544,0.61163,-2.0487,-0.25149,-1.0186,0.073282,1.0984,-0.11192,-0.3153,0.96981,1.1379,0.60642,0.00024946,0.32058,-1.5756 -1.9628,2.7905,-1.2786,0.5797,-0.49461,0.56872,-0.11677,2.8591,-1.2319,0.56489,-0.17093,0.75775,-1.1142,0.097627,-0.87408 0.20446,-0.80776,0.26777,2.5068,-1.3744,0.73469,-1.394,1.3289,0.79498,-0.70321,1.297,0.10339,-0.22105,-0.47547,0.34573 0.75776,-0.67295,-2.1298,2.1791,2.0626,0.42571,-1.0609,0.75598,0.6674,-1.067,1.5884,-1.8369,-1.3812,-0.17308,0.13488 1.4211,-0.33099,-0.40454,1.9247,-2.1748,0.67561,-0.91691,-0.61583,0.81653,-0.66291,-0.25061,-0.00589,1.1699,-0.6442,0.44552 2.0194,1.5173,-0.83442,1.4222,-1.011,-1.1309,-0.40598,-1.5188,-0.62114,0.065446,-0.36865,-1.8815,-1.4102,0.26718,0.76991 3.1187,-1.3753,-2.2389,0.27803,-1.2169,0.44917,-0.81295,0.51195,2.2469,-1.4763,0.45357,-0.11854,-0.034919,-0.085937,-1.6225 -0.72308,3.7663,0.61759,-0.2016,-1.4234,-0.87286,-0.33675,0.42256,-2.2168,-0.38081,-0.49502,-0.35871,0.34234,0.73363,0.73984 0.82461,1.4276,2.5989,1.1272,-1.3632,-2.4933,0.49023,-0.40142,-1.3621,0.47938,0.040343,0.089272,0.11246,1.3107,0.62855 -2.4644,1.1378,-0.64554,-1.0542,-0.93912,0.035743,1.7418,-0.23603,-2.8581,0.41312,-0.22752,-0.56249,-0.48827,0.092441,0.91483 -0.82077,3.5029,2.209,-0.90016,-0.26706,-0.85299,0.064908,-0.31559,-2.4109,-0.70204,-0.68444,-0.35284,-0.31151,0.87296,0.56281 -0.82423,2.4668,2.0587,0.6972,-1.3858,-1.7379,-0.37846,-0.202,-1.1772,-0.31831,0.84565,0.75234,0.072674,0.82375,0.078674 1.8506,-1.4706,-0.082801,1.2073,0.21457,4.0733,-1.3622,0.95478,-1.9343,0.06947,0.11371,0.47071,2.6557,0.60662,-0.347 3.1944,-2.2037,-3.122,0.46333,0.03286,0.86463,2.5493,-0.18323,0.73642,-2.2544,1.2783,0.67882,0.050624,0.53695,0.45789 -1.6511,2.8471,0.89862,0.37755,-1.4,-0.67728,0.070992,0.35636,-1.4343,-0.83887,0.985,0.96426,0.34004,1.4222,0.055997 -3.1323,1.4158,-0.25862,0.25436,-0.12456,-0.44827,1.6348,1.2721,-0.75028,1.3201,0.44888,-0.10286,-0.6053,0.95332,-0.67353 2.7583,-2.3612,1.7144,1.4128,0.22047,-0.016012,-1.8876,0.55307,-2.7823,-0.69554,2.0391,-0.0010659,0.219,0.91323,0.39209 0.147,0.00068322,0.63168,2.8921,0.40995,-0.50969,-1.1187,0.77284,0.85185,-1.3968,1.6717,0.39312,-1.3362,0.21825,-0.50603 -1.648,-0.59335,0.69198,-1.7636,-0.73347,-2.4434,1.3752,-2.0126,-1.1593,1.3539,-0.99089,-0.8489,0.86575,1.1899,0.3218 0.81546,1.0307,1.7101,-0.36252,-3.1609,-0.41811,0.29897,0.051626,0.11965,-0.39529,-0.68942,0.66284,0.10117,-0.63069,0.89082 2.8404,1.1578,-0.45928,1.0962,0.29746,-2.0192,-0.28118,-1.4416,0.3442,1.1133,0.39533,-1.4411,1.0137,0.35889,0.20886 0.32215,-1.0396,2.5362,2.6613,-0.1512,0.93543,-1.3328,0.10213,-0.51255,-0.77436,2.2523,0.31372,-1.5004,0.5365,0.52381 -3.1442,0.51791,0.027805,0.8249,1.2224,-1.685,1.894,1.3994,-1.068,1.0324,0.29886,-0.67622,-0.84488,0.96127,-0.077711 -1.9907,-2.014,1.7961,1.6082,1.0708,-0.48217,0.24088,0.40868,-1.118,-1.332,2.0759,0.091759,-2.7176,-0.14436,-0.52631 -0.54875,1.5421,-1.7458,1.1368,-2.6322,0.7397,-0.61534,-0.020687,0.6286,-0.36125,0.49878,1.1233,0.36057,0.17983,-0.0071353 -0.10229,2.2095,-0.88655,1.1134,-0.63037,-0.51352,-0.35006,0.27751,-0.72036,1.0794,-1.4875,-0.72153,-1.0223,-0.15336,1.0595 3.0555,0.52687,2.3678,0.28951,-0.74759,-2.3698,-1.136,-0.88387,-0.62289,-0.82231,1.028,0.077779,-0.076171,1.4604,0.39117 -2.2334,0.25361,-2.5556,0.41311,0.43565,0.57386,0.39254,0.40835,-0.37804,1.5835,0.67116,-0.49758,-0.5547,0.7145,-1.4142 -1.0004,-2.9984,3.289,-0.46892,-1.1348,1.0025,-1.5139,1.1474,-0.61965,1.6376,1.3522,-0.76919,0.033647,0.13524,-1.2401 0.8119,1.4914,-1.2094,0.7422,1.8002,-1.4366,-0.96477,0.51925,1.9878,0.15215,0.32719,-1.1664,1.3005,0.28645,-0.41112 -2.2343,-2.8064,-0.74847,0.37494,1.3847,-1.7163,-2.3046,-1.4525,-0.15408,0.58326,0.27152,1.3193,-1.4371,-0.76047,-0.28424 3.5624,-1.4582,0.34469,0.62638,1.1115,-0.095262,-0.78567,0.04666,0.015265,1.1359,2.1914,1.1114,1.603,-0.30339,-1.2754 -1.9704,0.30497,-1.0131,0.93015,0.68935,-0.9254,2.413,2.5344,-0.085122,1.2581,-0.45178,-1.7014,-0.7999,0.44395,0.048402 -2.0071,-1.1573,-1.29,0.56599,-0.53471,-1.456,1.0301,0.3815,1.4067,0.29578,0.35669,-0.75961,0.24741,0.39097,-0.72011 -1.3406,-2.108,-2.1027,1.1485,1.3871,-1.6988,1.7928,-0.12675,-0.24828,-0.63925,-0.85664,-0.8228,0.29217,0.61299,-0.85365 1.3982,0.5363,-0.514,0.96344,-0.15028,0.2409,-1.9455,-1.3115,0.48353,0.087426,3.1418,-0.80026,0.16601,-0.20729,0.57084 -2.1748,-0.83716,-2.707,0.56448,0.41053,-1.7404,0.11492,0.27822,0.38286,1.0082,-0.80447,-0.68319,-0.40309,1.0998,-0.49428 2.4362,0.5936,-0.8889,-0.37224,0.66717,-2.4629,-0.77739,-1.4967,-0.39353,0.40487,1.969,0.45776,1.0431,-0.19297,0.78412 -0.58925,0.47434,1.1099,-0.91824,-3.681,-0.6569,0.60244,-0.25447,-0.45151,-1.9057,-0.4792,-0.010431,-0.77238,-0.72751,0.72763 -0.51254,0.0021023,2.3752,1.229,-2.4191,0.23624,-1.6277,0.33815,0.0048445,-0.059606,1.5691,0.86805,-1.1794,0.49121,0.62168 -2.0588,-1.2358,-0.41032,1.7598,-0.4288,-1.7305,1.5277,-0.73592,0.70309,0.52266,0.69676,-0.95207,0.73667,-0.064227,-0.38325 0.9591,0.077623,-1.4614,1.5132,3.1189,-0.094941,0.24387,1.2478,-1.3966,-0.062784,-0.070808,-1.5381,2.2239,-0.394,0.16665 -1.1558,-0.076942,1.2166,-0.55585,-2.472,0.095687,0.46364,-1.126,0.047505,-0.45863,1.5057,-0.046136,1.2279,0.29751,-0.24495 0.065371,2.3988,-2.4848,0.30337,0.89116,-0.35549,-1.4294,1.8467,1.1239,0.072766,0.23743,-1.1716,-0.5964,-0.19629,-1.5734 2.4049,-2.9726,-2.0457,-2.3223,-2.1064,-0.41033,0.39672,3.3774,0.37444,0.041294,0.94993,2.2079,-0.062365,-0.79295,-0.19707 2.3774,-0.77237,1.5032,0.58796,-2.2016,-1.4032,-0.73348,-0.38027,1.1196,-1.0683,-1.4794,0.5081,-0.51307,-0.36661,0.25958 0.64742,1.4754,-1.2713,1.9478,-1.1449,-0.90225,-1.0472,-1.1176,0.7719,0.31377,-0.13252,-0.5212,0.65683,1.0229,0.15739 2.1489,-0.28595,-2.107,-2.5443,-1.8593,-2.0391,1.0104,0.54062,1.2866,-0.41202,1.3682,0.77051,0.018969,-0.13453,1.3826 -3.1606,0.78956,-0.20732,-0.043577,-1.7309,0.66244,0.55658,0.69078,-0.54896,-0.95177,1.8202,1.2412,-1.019,-0.95527,-0.88036 2.4509,-0.048569,-2.1172,-3.9847,-0.76225,-1.7801,1.5244,1.0562,-0.55876,-1.6185,1.8079,0.25233,0.61488,-0.53303,1.7031 0.26047,3.8438,-1.1001,-0.57155,-1.7782,-0.76031,-0.9781,0.43053,-1.6835,-0.12873,-1.2766,-0.88605,0.37822,0.3357,0.030708 3.252,0.19654,-1.8839,-2.15,-0.45063,-2.9498,1.8248,0.29356,1.0956,0.20688,0.45139,-0.27241,0.07542,0.5578,0.85683 2.5262,0.45542,-0.75887,0.69197,1.6297,-0.75086,0.29665,-0.17171,1.5833,-1.2952,-0.60504,-0.067155,0.96375,-0.33799,-1.4016 2.5562,0.25778,-1.8873,-0.27823,-1.1183,-0.94372,0.77992,-0.46054,0.97045,1.9117,-0.12661,-0.76224,-0.48515,0.68279,1.2075 1.7037,1.1593,-1.73,-2.1622,-1.7028,-2.0893,-0.60094,-0.47863,0.42277,-0.50503,1.1253,-1.1746,0.24192,0.78788,0.9898 -0.39933,-0.66621,1.9763,2.6205,-0.01183,0.1749,-0.62473,0.2751,0.17792,-0.15267,2.1261,0.70434,-1.5509,0.23898,0.3861 1.4489,1.8538,-1.7148,-1.7187,-1.3347,-2.1835,-0.72846,-0.60961,-0.14828,0.14317,1.0116,-1.2499,0.45124,0.78764,0.85967 -3.0096,1.5392,-1.1375,0.30332,-1.2448,0.37487,1.2133,1.0044,0.26223,0.89498,1.1636,0.39002,0.019906,0.076295,-0.62812 1.823,1.6203,-1.7266,-1.6913,-1.3425,-2.357,-0.66295,0.19538,0.70359,-0.65348,-0.064486,-1.076,0.50178,-0.042262,-0.73991 3.166,-0.24903,-1.8282,-2.1464,-0.59509,-2.5846,1.3076,0.49116,1.6334,-0.41436,0.99839,0.24364,0.44297,0.0723,0.10304 2.2192,1.3992,0.43711,-0.65788,-1.8455,-2.4378,-0.34322,-0.54384,-0.13639,-2.3617,-0.997,-0.97871,0.64687,0.18295,-0.70085 0.35244,2.0655,-1.5766,2.0909,-1.2456,-0.40254,-0.69079,-0.76719,0.27472,0.50248,-0.66137,-0.47726,0.46596,1.0925,0.11754 3.5624,-3.7004,-1.3993,0.041722,-1.5478,0.075,1.2608,2.5286,0.09219,1.6625,-1.3038,1.4298,0.32619,0.15795,-0.25524 4.0803,-3.3387,-1.8095,0.69356,-1.2383,0.3425,1.9006,2.138,-1.0233,2.0627,-1.5948,0.57415,0.42871,0.067693,-0.11753 4.3148,0.89113,-0.39629,-2.8859,-0.9219,-2.0785,0.07208,-0.49245,1.3839,-1.9688,0.086374,-0.68408,0.090385,0.71588,-0.39555 3.6411,-1.303,-0.52526,0.61065,-0.14766,-1.4933,-0.23325,-1.7415,0.38687,0.29169,1.7648,-1.1304,0.56208,0.58696,1.6455 -1.7116,1.2424,-0.7689,1.3936,-2.231,-0.60512,0.39007,0.79215,0.30684,-1.1908,0.95778,0.52471,0.23284,0.36146,0.3963 -1.8434,0.61942,0.47231,0.70398,-2.1288,-0.29107,0.59867,-0.014748,-0.15608,1.3782,1.5082,0.42309,-0.47923,0.22696,0.32017 3.9644,-1.083,-0.92836,-1.0251,-0.41552,-2.2485,1.2725,-0.74999,1.6643,0.16297,0.92894,-0.081521,0.84449,0.31412,1.212 -0.68083,1.4461,-0.82487,2.26,-0.44743,0.065489,-0.15579,1.207,-0.09586,1.7811,-0.976,-0.25777,-0.38577,0.47319,0.80541 1.7654,0.87861,-1.7024,-0.013376,-0.68273,-0.85539,-0.35192,0.18137,1.6044,0.94367,-0.8557,-0.91529,0.61079,-0.29401,0.065752 4.0115,0.40742,1.2052,0.83009,-0.50022,-1.9894,0.30996,-1.6227,-0.1841,-1.0009,-1.1121,-0.86021,-1.3565,1.1829,0.37067 0.13648,2.1637,-0.95982,1.4996,-1.0727,0.18107,-0.87865,0.68523,0.34271,1.6422,-1.1874,-0.26019,-0.12846,0.76695,0.044711 3.1871,-0.20183,-0.95736,-1.8299,-1.3762,-2.3218,0.33599,-0.75538,1.6382,0.25431,1.1542,-0.49321,0.057764,0.60581,1.8396 4.1552,-5.0761,-2.0707,1.0848,-0.30615,0.75862,2.4891,2.4424,-0.8409,-0.23534,-0.54873,1.9903,-0.0038329,0.4846,-0.88939 -2.4177,1.7912,-0.55866,0.65022,-1.8555,-0.54085,1.2034,0.66564,-0.41189,0.83407,0.75166,0.66383,0.81899,0.68602,0.25674 3.6151,-3.3407,-2.5155,0.75257,-0.78272,2.3638,1.6175,0.64206,-1.1108,-0.29168,-0.65198,-0.32626,0.26396,-0.55265,1.1805 3.8088,-0.14811,0.7539,-0.78648,-1.2536,-2.3889,-0.77508,0.21088,1.4701,-1.9404,-0.75847,-0.35642,-1.4678,0.34442,-0.72291 1.0118,2.5278,-0.21453,1.5648,-0.31516,-1.7231,-0.91583,-0.18257,-0.40106,1.4356,-0.8543,-0.97435,0.48136,1.4628,0.10794 2.4035,-0.5894,-1.9336,-2.6205,-2.4189,1.296,0.9759,1.6564,-2.2094,0.48342,-0.30042,0.99144,1.4987,-0.15552,0.42348 0.39644,2.5723,-0.60278,1.4027,-0.94702,-0.88292,-1.208,0.28851,0.43797,1.1658,-1.0137,-0.49329,0.55081,1.1648,-0.073347 -0.44527,0.98262,-0.70238,3.2,-0.16687,0.44568,0.083894,-0.48607,0.49202,-1.1273,0.70767,0.85235,-0.33365,0.25936,0.26926 4.4614,-1.649,0.353,-0.88647,-0.58973,0.60904,-1.9847,0.83987,-0.13736,1.6984,1.0938,0.27471,1.8917,0.31862,-0.82236 0.61691,-2.7579,0.5707,0.74189,-2.3859,1.3445,0.7025,0.31966,0.99112,0.8555,-0.96968,-0.65495,-0.34083,-1.3275,-1.033 1.5504,-2.8503,-0.080897,0.6156,-1.816,2.3365,1.1556,0.51384,0.48038,0.91465,-1.1329,-1.4976,-1.0303,-0.34642,-1.1501 1.8905,-1.5503,-0.68688,0.62033,0.64627,-0.16006,-2.2039,3.0976,0.33948,1.7099,0.88714,-0.080973,1.7646,0.55025,-1.1587 2.4559,1.3021,-1.2697,1.5405,1.7106,-0.84167,0.086034,-1.0401,-0.42839,1.1814,-0.40499,-1.7975,0.93896,-0.081636,1.1845 -1.6979,0.3873,-0.71123,2.2984,-1.3728,-0.022689,0.38437,0.53697,1.1994,-0.49313,0.87014,0.71235,-1.0127,-0.34592,0.045985 0.4044,-2.9312,-1.517,0.34662,-2.061,0.85268,0.093746,-0.22366,0.93264,0.43662,-1.4673,-0.015873,-0.75234,-1.4351,-1.4532 2.1858,2.7787,-1.5388,-1.455,0.038289,-2.0966,-0.27724,0.58122,0.74134,0.7855,-0.38789,-1.7361,0.77572,0.10698,0.35781 1.2196,-1.6845,2.2442,0.83369,-3.0626,1.1015,0.1388,0.57576,1.0259,0.54414,-1.1023,-0.39609,-0.65705,-1.3939,-0.12769 1.7849,-0.063535,0.11916,2.2076,-0.5954,0.72486,1.465,-1.2307,-0.67996,0.36507,-0.38415,1.0264,-0.25308,-1.1038,-0.86373 1.2233,-0.76007,0.33978,2.4708,1.5667,0.11948,-2.0728,0.79459,1.1521,-1.7962,1.1128,-0.65951,-0.48892,-0.42782,-1.1577 2.5077,-2.4602,1.1462,0.83718,-2.2337,2.3461,1.2732,1.9549,0.33797,0.9063,-1.446,-0.97291,-1.0913,0.14575,-1.0839 2.772,1.863,-0.22663,0.79958,0.56221,-1.1308,1.1621,-1.9561,-2.2595,1.2281,-1.0555,-1.049,-0.15468,0.3427,0.65879 0.37712,-2.8968,-1.803,0.93919,-1.6107,1.1208,0.37291,-0.91967,0.14802,0.38512,-1.662,0.0033878,-0.64145,-1.8223,-1.3942 2.4771,-1.5716,-1.8156,1.9278,-0.71388,2.6068,-0.17619,0.63079,-0.29414,0.67044,-0.7998,-0.64458,1.9044,0.16322,-0.043832 3.7329,-1.8326,-1.2557,1.2621,-1.1974,2.7273,0.4437,1.6857,-0.59511,-0.02265,-1.3734,-0.79766,-0.69,0.8051,-0.66326 3.1632,-1.3513,-0.3552,-1.7521,-0.80446,-1.3362,0.31264,-0.31304,-1.2958,-0.89817,2.4746,0.8624,2.4901,0.49319,1.4721 1.4384,-0.50479,-2.0251,1.3333,2.8247,-1.0473,1.0377,1.2115,0.028147,-1.2052,0.92865,-1.1571,1.549,-0.087573,0.84419 -1.6314,0.11161,-1.0788,2.1899,2.0048,-0.9185,3.1817,1.0939,-1.2658,-0.98979,-0.70779,-1.5295,-0.12639,0.26928,0.053967 2.5516,-0.94369,-2.5296,-0.80551,-1.3312,-0.48058,1.354,0.7613,2.3401,-0.41318,0.74859,0.71835,0.67213,0.83428,0.1805 2.9378,0.32558,-0.33223,0.35653,-1.8914,-1.6175,0.80397,0.88946,1.0802,-2.5013,-0.74805,0.63711,-0.59021,1.2504,-1.9748 1.6519,1.3508,-1.8541,0.8668,-1.4829,-0.8356,-0.82061,-1.6885,1.0729,-0.23758,0.20553,-1.3458,0.10437,0.61909,0.43805 -1.1081,-0.76997,-3.0749,1.4813,-0.28001,-1.31,-0.32083,-0.29882,-0.57265,0.74071,-0.34035,0.74453,0.90931,0.72607,0.26564 2.8162,-0.2427,-1.3313,-1.4554,-1.9678,-0.25629,-0.83453,-0.95277,1.301,0.61409,1.4775,-0.056442,0.67952,-0.15678,1.2368 -1.1959,-0.52098,-2.7614,1.7775,-0.039516,-0.29564,1.2262,-0.70551,-1.0772,0.33644,-0.28339,-0.58339,1.9016,0.55559,-0.12356 4.1507,0.64333,-0.76184,0.67547,0.082931,-1.3886,0.58008,0.33873,-0.1082,0.5833,-1.7294,-0.96841,0.43608,0.64508,-1.5736 2.4041,-0.64465,-0.57206,1.1938,0.25702,-0.70942,-1.8424,-0.81523,0.77928,0.5312,3.215,-0.63898,0.13816,0.34125,0.19287 -1.2039,-1.2447,-2.4267,1.7855,-0.32226,-1.7443,1.1308,-0.66049,-0.61731,0.51942,-0.10316,-0.20126,1.0936,0.58602,-0.6966 2.8961,0.50506,-2.6529,-0.46078,-1.1346,-0.30371,0.60717,0.33778,1.4137,-0.060264,-0.27911,-0.61629,0.89868,0.42176,-1.2067 -0.22756,-3.2221,2.9247,2.7078,0.73261,0.034703,0.052458,0.76197,-1.911,-1.2101,2.6783,0.20664,-1.2481,0.054529,-0.51598 -1.6669,1.4844,-1.1164,1.7578,-1.4322,-0.1196,0.74095,0.85521,0.16059,1.7041,0.51198,0.59554,-0.43694,0.59951,0.20881 0.99402,-0.75474,2.2058,2.5227,-0.27198,-2.9341,1.0975,-0.58903,-1.0517,-0.86371,0.21114,0.022298,0.87803,0.67242,0.12465 4.7946,-1.4536,-0.74286,-0.55025,-0.37959,-1.2625,1.0367,-0.13463,0.76906,-0.7234,-0.20213,0.38885,0.18126,0.98781,-1.3372 -0.47194,-0.070166,0.63065,2.0833,2.097,-1.7773,1.7352,1.3546,-1.5199,-2.4469,0.60692,-0.12099,-1.4692,0.66912,-0.53459 3.9697,-0.19327,-1.7695,-1.4698,-0.26438,-1.2602,1.639,-0.0079337,0.76521,0.53285,0.40437,0.19675,1.6647,-0.1897,-0.17613 -1.4766,2.3374,0.73623,1.7618,0.30016,-1.6719,0.61419,2.0477,-0.67022,0.41339,-0.54734,-0.27601,-0.32543,1.6538,0.015489 1.8928,0.69368,2.2206,1.4982,0.47926,-2.9513,0.21886,-0.40922,-1.3129,-0.63041,0.57491,-0.15775,0.52223,1.5896,0.41248 2.6558,0.30296,1.4747,2.2485,0.6741,-2.8874,0.069732,-1.0175,-1.9602,-0.28622,1.1031,0.027571,0.67277,1.3414,0.18507 1.7645,2.0411,1.8465,0.46033,-1.6436,-0.61593,-1.6588,-1.6391,-0.21462,-0.61306,0.23031,0.50564,-0.46459,0.43268,0.14262 -0.83057,-0.11736,-0.88332,1.5809,-0.34335,0.057272,0.44046,-1.4564,-0.73662,2.1575,1.6806,0.31361,0.018369,-0.20006,-0.38406 0.37319,-0.42127,-0.97039,3.0827,-0.87447,0.45346,-0.81201,-0.83214,-0.3892,-2.5187,0.6595,-0.3402,0.93512,-0.26915,0.51437 -0.85631,2.4168,0.53785,0.98762,-1.5528,-0.81486,-0.3464,0.35324,-0.75892,-0.50764,0.32966,1.3124,1.2077,0.14442,0.067392 3.3702,-1.0752,-1.5995,0.12239,-1.0669,0.00023734,-0.41091,-0.78496,1.15,1.1279,1.4757,-0.76588,0.32984,0.16788,1.7832 3.4207,-0.25453,-0.22135,1.6504,-0.95503,-0.92575,-0.43174,-1.6832,0.39173,-0.812,-0.35615,-0.43526,0.37712,0.14076,-0.70041 -2.6515,-1.0651,-0.75465,0.16078,-1.3358,-1.1751,0.025585,-0.89354,0.6365,0.74797,1.2417,0.22343,-0.11045,0.015781,-0.78806 -0.76186,0.91839,1.2426,0.27793,-1.9488,-2.1156,1.2562,-0.45812,0.27673,0.21272,-0.079394,-0.6744,1.424,0.90925,0.80627 -2.6376,0.94324,-0.15643,0.11186,0.50993,-1.1845,0.84315,2.7247,-1.2392,1.4184,-0.16089,-0.55866,0.10384,0.84757,0.278 0.11632,-0.091414,1.848,2.2516,1.4508,-2.1337,-0.64958,0.59028,-0.75424,-2.2312,1.8525,0.51684,-0.88096,0.88336,-0.84793 -2.4498,0.39758,-1.5106,-0.512,-0.95335,0.73303,0.3073,1.3976,0.21847,1.607,0.18611,-0.5933,-0.35485,0.18199,0.49239 0.77933,0.32723,2.9967,0.70125,-1.8984,-2.4453,0.0095464,-0.70024,-0.15534,-0.51015,0.37371,0.33365,0.77564,0.46364,-0.067402 1.5966,1.7152,-3.5387,-1.7616,-0.32158,0.070996,1.044,1.0134,0.65946,-0.64231,0.70278,-0.6507,1.0063,-0.63165,0.24126 3.6146,-1.0588,2.0495,1.8688,0.46142,-1.9038,0.1916,-1.6846,-1.4253,-1.1773,0.11262,-0.070859,0.82303,0.48286,0.22172 2.3673,-2.1377,2.9016,3.0096,0.16413,-0.69892,0.21644,-0.56419,-2.7537,-1.5365,1.5303,0.78165,0.39229,0.10848,0.27753 0.12177,0.76291,1.1769,0.11793,-2.8551,-0.81441,2.1495,-0.35932,-0.16382,0.54808,-1.2826,0.68083,0.81702,0.034826,0.20775 3.7448,-3.5419,-2.1381,0.56133,-0.47117,0.61748,2.7592,1.1536,0.65301,-0.55299,-0.80655,1.59,0.39808,0.96697,0.091965 -0.21725,1.1088,1.3921,2.2337,-0.57385,-1.4657,1.505,-1.3844,-1.1134,-0.45438,-0.31822,-0.95637,-0.8198,1.0112,1.6224 -2.9359,0.15236,1.2858,0.92543,0.55077,-1.0205,0.72533,-0.027255,-1.5212,-0.35173,1.6265,0.59391,-2.1646,-0.42763,-0.29829 4.2781,-2.9419,0.82802,1.7901,-1.1843,2.4519,1.3266,2.3324,-1.4832,-0.90671,-2.0575,-0.86703,-1.4636,0.13171,-0.45015 -1.133,0.43206,1.5868,2.4462,-0.36016,-2.3568,1.335,-0.44548,-0.43934,0.339,0.40344,0.34636,-0.16556,0.64007,0.89178 2.7843,0.072075,1.3565,0.30036,-2.2544,-0.43878,-1.3922,0.32749,-0.25655,-1.4272,-0.012936,-1.3976,-2.0806,1.2453,1.1383 -2.024,-0.77502,-2.6005,-1.5367,1.0504,-1.3259,-0.70894,1.6827,-0.94568,0.64202,-1.737,-0.23661,1.3539,0.64848,0.90581 -0.9203,-0.37358,1.9792,2.0651,0.6556,-2.8648,1.4677,-0.93104,-1.5621,-0.37509,0.048565,-0.54223,0.65072,0.52987,0.35329 1.7151,0.92338,0.63504,1.5832,0.57263,-2.7879,-0.95077,-1.1024,0.17584,0.007519,0.52262,-0.54367,1.2334,1.1694,0.16821 3.5997,-1.665,0.41495,0.86267,0.2946,-0.88684,-0.17613,-2.0105,-1.3042,-1.4828,1.0733,-1.5812,0.50472,1.3178,1.8549 -0.86564,1.7614,0.99651,0.97398,-0.46321,-1.8641,1.167,-0.35997,-1.3481,1.4586,-1.3667,-0.883,-0.35038,1.3121,1.1376 0.38237,-0.52134,0.86101,3.4918,-0.31811,-1.0385,0.03099,-0.27235,-0.53259,-1.2508,1.66,0.25643,-0.15918,0.31621,0.56391 -1.5397,-1.5012,0.84427,-0.82225,-1.9882,-2.0844,1.2876,-2.0772,0.53529,0.63305,-0.5558,-0.10857,-0.3761,-0.64279,0.53508 4.2483,-4.0485,1.1456,1.6021,1.0061,1.3957,-0.78224,1.3336,-3.2874,-0.002753,0.90998,0.26573,1.7418,0.32647,-0.20174 4.1836,0.31315,-1.0909,-3.2294,-0.026987,-2.5919,1.2866,0.55382,0.14898,-0.17201,0.50608,-0.12877,0.82939,0.57825,0.14913 0.90846,2.0708,-0.97949,1.2604,1.5005,-2.8342,-0.24978,1.6688,-0.08191,-1.0983,-0.71315,-1.763,-0.14361,0.48052,-0.88045 4.2053,-1.8529,1.4534,1.0278,2.1065,1.3553,-0.84002,-0.46963,-0.29349,-0.77223,-0.20116,0.64732,0.7664,-0.69287,-1.5442 0.73335,-0.41707,2.1816,1.9546,-2.3226,-0.83955,-0.49595,-0.84814,-0.26914,0.27944,0.10012,0.70099,-1.3269,-0.37306,1.0633 3.6948,2.1016,-1.0307,-3.2105,-1.178,-1.2773,-0.52442,0.44266,-1.8982,0.10053,1.3328,-1.3523,0.82994,-0.62559,0.3697 -1.0852,-1.2876,-0.74523,1.8226,-0.69079,-2.2324,1.0543,-1.6383,-0.072473,1.3774,0.11121,0.19941,0.78402,0.12335,-0.11477 -1.2996,-2.0817,-2.8689,2.0051,-0.14091,-1.2668,-0.84111,-0.84587,-0.72221,-0.23468,-0.11739,0.69338,-0.98039,-0.43548,0.16017 2.014,2.1659,-1.6826,-2.6871,-0.1771,-1.2454,-0.48066,-0.07676,-0.92585,-2.4359,1.6717,-1.4784,0.57433,-0.12804,0.523 1.0975,2.0228,0.84565,0.81015,0.58739,-2.4389,-0.67985,-0.92561,-1.3254,0.13425,-0.34594,-1.1359,-0.75281,1.4204,0.95548 3.8678,-3.3231,-0.69486,0.99761,0.83998,2.2883,0.2615,-0.31172,-2.3157,2.3696,0.75808,0.51807,1.2022,0.0089494,0.064066 1.4904,0.43749,-0.15992,0.81051,-0.7651,-2.3236,-1.6188,-0.80827,1.4269,-0.46254,1.2814,-0.061492,1.9313,0.20441,-0.4681 -0.80464,0.44197,-0.47738,0.88405,-2.1372,-2.0885,2.1597,-1.0096,0.6042,0.68561,-1.1929,0.10861,-0.13925,0.030043,0.48184 2.8504,-0.80649,1.9266,0.67905,-1.5907,-0.15759,-2.1265,1.0853,-0.72035,0.81541,0.06298,-0.96894,-0.72494,1.4783,1.4713 2.2461,-0.29582,1.9601,1.062,-2.0057,-2.0831,-1.2758,-0.79375,-0.13092,-1.2757,-0.55068,-0.25475,-1.357,0.64049,1.1045 3.0541,-3.3205,3.0901,1.0028,-1.6606,0.92361,-0.1268,0.71845,-1.097,1.0623,-1.0808,-0.49398,-0.83573,-0.69959,-0.41292 1.8676,1.2326,-2.2833,0.097083,-1.4884,-0.73449,-0.41799,0.076296,2.0512,-1.3456,-0.094617,-0.045962,0.89904,0.50617,-1.3077 4.046,-0.97545,-1.7453,0.94997,-0.37641,3.1677,-0.67902,-0.15786,-2.5572,0.49694,-0.82783,-0.76307,1.7638,0.46968,-0.56834 0.055249,2.5343,1.2043,-0.74551,-1.8772,-2.3464,-0.1848,0.087205,-1.6841,-1.6727,-0.61184,-0.23427,-0.51328,0.76814,0.72934 -1.0085,-0.17247,-2.0102,2.0686,-1.8465,1.5385,-0.061996,-0.48648,-0.16908,-0.99276,0.98333,0.29582,-0.5241,-0.26504,0.32143 1.7434,-0.4807,2.3853,-1.1055,-2.9712,-1.6609,0.023624,0.8861,-0.51526,-1.4364,-0.7378,-0.022925,-1.5213,-0.29002,0.59456 2.8889,-2.8597,0.44199,-0.013791,1.4372,-0.62928,-0.83687,1.3184,0.20613,1.0444,2.9311,1.4295,1.1941,-0.37012,-0.0089564 4.3796,-1.3577,0.028394,-0.70542,-0.36837,-3.1147,0.26671,0.074308,0.48549,-1.5619,0.25794,-0.56931,-0.97605,1.1273,-0.19786 2.2117,2.5798,-0.27587,-0.0022077,-0.74412,-2.2023,-0.57779,-0.63554,-0.036262,-0.32274,-0.94795,-1.447,-1.2607,0.53893,0.19471 5.706,-2.162,1.3244,0.30775,-0.31811,-1.1654,0.58793,0.21498,-0.38852,-1.7884,-0.75107,-0.48751,-1.228,0.5739,0.25284 0.02073,3.0419,-1.606,0.77227,-2.0087,0.74998,0.12465,-0.25832,-1.7183,-1.3268,-0.52821,-0.66943,-0.12489,-0.61382,0.057611 -1.8595,0.47206,2.3145,-0.066369,-1.8743,-1.6879,0.67599,-0.19998,-1.0814,0.141,1.5915,0.6001,0.50005,-0.47576,-0.43257 0.034082,-0.86712,-0.39635,0.75615,1.6939,0.19361,-0.5952,1.3343,-1.4369,-3.8804,0.44777,-0.8256,-0.79865,-0.12702,0.35072 3.2119,-0.029571,1.3859,-0.28094,-1.6935,-1.6891,-1.7392,-0.035831,0.13073,-0.98145,-0.69037,-0.82497,-1.2933,0.39515,0.40747 0.68025,0.51728,0.38355,3.4763,1.9778,-1.3462,-0.23045,-0.39407,-1.5377,-1.8591,1.2837,0.30862,-0.33287,1.3464,-0.48876 -2.7054,1.244,-0.040568,0.26523,-1.5917,0.28465,1.3386,0.14174,-0.1089,-1.2306,1.6268,0.38107,-0.2618,0.18957,-0.74992 3.4904,-0.33919,2.5518,-0.39025,-2.7133,0.05698,-1.7338,0.32667,-0.30275,-0.27369,-0.27922,0.12304,-0.59483,0.77921,0.25011 -1.707,0.63375,1.0136,-0.51706,-2.5876,1.544,-0.77274,0.60933,-1.5299,-0.57333,1.7329,-0.13985,-0.53769,-0.26032,0.60439 -2.8542,-0.15979,1.9132,0.15525,0.31303,-1.8176,1.0916,-0.046181,-0.23095,0.91826,1.0226,0.070553,-0.19223,1.1098,0.028603 3.5596,-1.5758,-2.051,-2.9756,-1.985,1.1185,0.11161,1.3748,-0.422,-0.56648,0.76158,-0.21951,1.0021,-0.84581,0.62585 3.9029,-0.068173,-1.1176,0.15156,-0.80267,-1.5913,-0.035162,-1.6105,1.4363,-0.45003,-0.13791,-1.3933,-0.11395,0.29782,-0.17333 -1.9025,-2.1564,-0.35337,-0.57572,0.011296,-2.522,0.9344,0.55753,-1.5471,0.29891,0.4468,0.86663,2.4251,-0.12439,-1.2652 -0.40775,-2.0842,2.3197,-0.99043,-0.92358,-1.2404,-0.060946,1.2103,-1.9576,-0.53881,1.5141,1.0827,1.568,-1.2292,-2.0942 4.4608,-0.87862,1.7661,0.21154,0.29465,1.9719,-0.25096,2.079,0.01987,0.24416,-1.0225,-0.17028,-2.5233,-0.19743,-0.51073 -1.8493,-2.9395,0.74479,-0.37973,-1.4019,-1.3181,0.13776,1.0826,-1.0871,-1.5245,1.7363,-0.18948,1.0412,-0.40333,-1.469 -0.54909,-4.3386,0.33055,0.023288,0.097179,-0.4532,-1.4459,0.017642,-0.5071,1.7916,0.16849,1.1904,0.5037,-1.302,-1.602 -2.4579,-2.7362,0.28805,-1.7157,-1.2372,-0.1508,-1.7947,-0.43152,-0.85016,0.07444,0.94343,0.23408,0.52539,-0.32767,-0.5819 -0.10607,-3.3048,0.5707,-0.060318,-1.3689,-1.6629,0.27798,-1.6625,-0.59681,1.439,-0.018131,0.8925,1.1019,-0.5132,-1.3991 -0.30245,0.63722,-0.85101,3.1096,2.1575,-1.158,1.2588,2.4316,-1.0011,0.0059602,-1.3811,-0.36697,-0.039489,0.2815,0.36316 -2.8241,-1.6894,-0.053404,-0.85223,1.901,-2.0508,0.98567,0.3896,-0.96328,0.080511,1.3719,0.46807,0.36311,0.83578,-1.6322 -1.2388,-2.3941,0.03745,0.31622,1.3918,-1.9927,0.9572,-0.92095,-0.87402,2.0342,-0.23794,1.1048,1.8301,0.95284,-1.3908 -0.78443,2.3402,-1.1085,1.0564,-0.22728,-0.93934,-1.4,1.2211,1.1941,0.079256,-0.46081,-0.0057208,0.65013,0.69854,-0.12686 -1.8429,-1.9051,0.98975,1.4502,0.77505,-2.5863,1.9931,1.4722,-0.10502,-0.215,1.0526,-0.43257,-0.2277,0.0068295,-1.2907 -0.48602,-0.36697,1.3554,0.73277,-0.96014,-1.8367,2.7005,-0.34248,-1.1492,2.4771,-0.33807,-0.31326,1.7439,0.94891,-0.55667 -2.3351,-1.6205,-1.7423,-0.21608,-1.1238,-1.7851,0.13173,-0.070985,-0.63405,-1.1392,0.83295,-0.18807,0.73699,0.061573,-1.3453 1.7679,2.7777,-0.22263,-1.6261,-1.1242,-1.5147,-0.37184,-0.26456,-0.42788,0.34477,-0.92442,-1.2876,0.65489,0.0053839,0.39916 0.58564,1.4745,-0.42794,0.44164,-0.79761,-2.532,0.10534,1.8686,-0.59594,-1.1512,-0.64649,-0.19764,1.1697,0.82452,-0.35782 0.4469,-1.9957,-2.4725,1.6988,-0.22387,-1.3961,1.1777,-1.3427,-1.0619,0.92615,-1.6547,0.29676,1.4811,0.090317,-0.38923 -1.3523,-3.8867,-0.72133,-1.2712,-0.37434,-0.71365,-2.7573,1.1465,-0.90023,0.40195,-0.7288,1.0857,0.46333,-0.96631,0.48144 2.0425,1.8704,-2.0145,0.10276,0.93675,0.18082,0.66163,-1.0912,-0.057368,0.2746,-0.69217,-2.6977,-0.062964,-0.66423,1.2914 -0.11297,-3.7471,-0.083915,-1.9378,0.079799,0.34248,-2.9497,1.2737,-2.2756,1.3779,-0.83715,2.5929,0.52807,-0.3701,0.9629 3.8359,-1.3549,-0.57094,-2.5634,-0.79882,-0.26237,0.50395,-0.51992,1.4558,0.31912,1.9373,1.8602,0.55726,0.2995,-0.21347 -0.80223,-2.2648,-1.4201,-0.19603,0.16638,-0.56946,-2.5795,1.8185,0.21243,0.30193,-0.5473,0.89972,-0.29719,-1.3255,1.6691 -0.022571,0.18981,-0.64326,2.1531,0.97955,1.8354,-1.6269,1.2438,0.36887,-1.5978,1.1273,-0.80771,-1.278,0.97185,-0.099275 -0.476,-4.6814,0.10315,-0.5982,0.88515,-0.96809,-2.2276,1.3734,-1.2121,1.6,-0.28431,1.1069,0.2403,-0.6857,-0.16075 -0.16093,-4.8348,0.39836,-0.32871,1.5799,-0.95593,-2.3689,0.96357,-1.4446,1.46,-0.61217,1.9239,0.00375,-1.3697,0.0031193 0.14698,1.1815,-0.037641,2.2565,2.6758,-2.1015,0.033026,2.6959,-0.29831,0.0035997,-0.69961,-0.87501,0.020978,0.67009,-0.5761 -2.3515,-0.022275,-1.4186,-0.58363,-2.0037,0.64926,0.38503,-1.9074,-0.76341,0.089587,1.2395,0.53317,0.37798,-0.3535,-0.78373 5.5785,-1.9638,-0.15025,0.58868,-0.49645,1.0572,-0.057019,0.2065,-0.7413,-1.7366,-1.0078,-1.1701,-1.1037,0.0088665,0.14303 -0.41211,-2.8791,-2.3114,1.0824,0.23661,-1.209,-2.098,1.338,-0.16432,0.16417,-0.65316,0.29772,-1.9402,-1.0745,1.3956 0.12362,2.5667,-1.4895,-0.12674,-1.1277,0.49457,-0.76744,0.44197,-0.34021,0.3024,-1.5993,-0.66214,2.1502,-0.4484,0.079862 -2.6596,-1.7687,-1.3962,0.10098,0.23197,0.35661,-1.6138,-0.50636,1.1028,0.2572,0.71588,-0.23107,-0.96824,0.11888,-0.18799 3.1541,-0.98809,-3.0664,0.19868,0.24607,-0.14052,2.8102,-0.88583,0.78856,-1.4009,0.067094,0.137,-0.074702,-0.36557,0.42456 -0.54585,-2.2535,-1.9135,0.31318,-0.73019,-1.5237,-1.5927,1.02,-0.28738,0.85365,-0.16008,1.6843,0.8885,-1.0248,-0.35424 -1.1218,-2.7812,-0.97659,-0.81916,0.17828,0.1697,-2.7916,0.97756,0.16673,1.2575,-0.61719,0.99537,0.18408,-0.13058,1.2109 1.2513,0.1818,0.53074,2.1799,-1.5917,-1.9256,0.65973,-0.84792,1.0128,-0.52544,-1.4224,0.24604,-0.2588,-0.3687,0.21066 1.5557,0.28146,-1.014,1.9124,1.6224,0.24463,-0.30652,1.2144,0.25048,1.3047,-0.94015,-0.36619,1.708,-1.4174,-1.0065 -0.56665,-2.2284,-1.6938,0.98454,-1.938,-0.36488,-0.71603,0.62751,0.95843,0.040771,0.43501,0.18985,0.14459,-0.52512,-0.65373 4.7641,-1.6699,-0.75994,0.35285,-1.3238,0.91279,-1.2502,1.5387,0.64246,-0.26444,-0.84926,-0.44052,-1.8689,0.57139,-1.8842 0.76064,-3.548,-0.39156,-0.34036,-1.9974,-1.0104,0.23742,-0.90346,0.0016655,0.35462,-1.7181,0.81645,0.073016,-1.3855,-1.6127 -1.7994,-1.9687,-1.4686,-1.0576,0.073769,-1.0134,-1.5427,-0.29976,-0.42335,0.0054727,0.060507,2.2197,0.99533,-0.81483,-0.64509 -1.4449,-2.6511,0.04204,0.27396,-0.50382,-1.444,-0.17601,-1.2979,-0.11388,1.1625,0.99938,1.1247,0.87357,-0.52257,-2.0416 -2.8591,-0.36837,-1.5524,0.88766,-0.23456,1.3228,0.98422,0.30335,0.96036,-0.58133,1.0087,-1.1784,-1.5389,-0.32121,-0.79591 -1.8973,-2.0918,0.29103,-0.038881,-0.82433,-0.55567,-0.75594,0.61369,1.5418,0.4113,1.1272,-0.8798,-0.62953,-0.0020792,-0.49282 -0.088327,1.1846,-0.85885,2.3786,3.6427,0.2741,-0.90977,1.9006,-2.1972,-0.14423,0.4393,-0.93084,-0.24433,-0.45971,-0.80292 -0.15295,-2.6948,0.98932,2.5154,-0.89104,-1.32,1.3377,-0.57808,-0.21669,0.38009,0.86791,0.095691,1.0468,-1.156,-0.88454 -0.42843,-3.1729,-1.0043,0.406,-1.2538,0.39269,-0.43168,1.7875,0.9872,0.59158,-0.50972,-0.79659,-0.14031,-0.75499,-0.90419 4.7333,-1.3323,2.8047,-0.082104,-1.0069,-1.0197,-0.87548,-0.50981,-0.66666,-0.92596,-0.78757,-0.1888,-0.71815,0.040517,-0.55011 -1.3702,-3.4909,-1.38,0.14269,0.036907,-0.2633,-1.7397,0.5633,0.70257,0.51615,-0.75348,0.41864,0.35496,-1.153,-0.63324 1.5369,1.0916,1.659,0.024684,0.19297,0.046514,-2.8198,1.3779,0.59369,-0.29484,2.1779,1.1169,0.55054,0.22329,-0.33019 -1.863,2.5501,-2.2404,0.2333,-0.0037278,1.5411,-0.86597,2.8499,-0.56352,-0.92188,-0.64632,-0.26623,-0.67217,-0.21825,-0.84081 -1.2525,-1.383,-1.5499,2.3024,-0.5703,-1.1697,1.6185,-0.21951,0.099097,0.090586,0.92221,-0.14085,1.0528,-0.13905,-0.84879 1.659,-0.44922,-2.965,-1.5249,-1.9931,-0.29946,1.4635,1.5203,1.5081,-0.26213,0.94164,2.0702,0.84633,0.094838,0.41863 3.2483,-2.0382,0.72445,-0.2747,1.1162,-2.1524,0.63631,-0.72855,-0.84064,0.26825,2.4198,1.3388,1.3481,1.0971,1.3008 -1.7837,-1.0586,-2.4521,-0.53959,-1.109,0.4062,-0.45351,-1.2013,-0.51443,-0.34368,-0.3887,0.57535,1.5158,-0.85184,-0.26037 2.3395,-0.5326,2.0552,-0.82226,-1.7772,-2.3125,-1.2279,0.76656,-0.27728,-1.4796,-0.053549,0.55295,1.0106,0.7338,-0.27767 -2.4108,0.30388,-1.9262,0.40233,-0.56563,-0.42711,0.22608,0.27907,0.23973,1.9361,1.2306,0.5967,-0.21797,0.11932,-1.0716 2.3146,1.4211,0.40191,1.0824,-1.0125,-0.96465,-1.4467,-1.8671,0.58029,0.11971,0.23348,0.15639,0.33419,0.03995,-0.9162 1.6619,-1.8838,-2.7315,1.4236,1.6761,0.89848,0.3746,1.119,-0.097206,-1.405,2.6563,-0.49294,-0.5438,0.19757,0.55966 1.7665,-0.79673,2.7998,0.24486,-2.3046,-1.7039,-1.3573,0.47619,-0.40292,-0.91826,0.026351,0.07334,0.14548,-0.33113,-0.04162 -2.1232,-0.54855,1.7212,-1.5854,-2.1613,-0.20087,0.89297,-0.6619,-1.9408,-1.7568,0.55774,-0.87116,0.42838,-1.0409,0.28662 3.1053,-3.1193,2.0506,2.627,-0.94772,0.0091098,-0.76833,1.0638,-1.0162,-0.097326,-0.15323,0.015518,0.71366,-0.47882,0.15919 1.241,-4.0367,4.4322,-0.52708,-0.92939,0.0059503,0.12318,1.7698,-2.6971,1.4165,0.40471,0.56897,-0.19717,-0.25017,-1.3963 0.75149,1.7416,0.30313,-0.79709,0.41721,-0.66023,-0.073494,2.293,-1.772,0.93826,-1.5847,-1.601,-1.1392,1.3243,0.65445 -1.9145,0.64341,-2.0675,2.3185,-0.082469,1.2101,1.069,0.75968,-0.23268,-0.047405,0.36305,-0.16639,-1.439,-0.43797,-0.16274 -2.5797,-3.0208,-0.67379,-0.7087,-0.91748,-1.9905,-2.6942,-0.77436,-0.79278,-0.0048392,0.12506,0.68728,-0.9498,-0.30152,0.53197 -0.26572,2.2789,-1.4416,2.7072,1.3774,0.44808,-0.81716,1.0014,0.3246,-0.19682,-0.2813,-0.067727,-0.45933,0.56554,-1.0222 -1.9924,-1.2451,1.3371,1.1994,-0.9423,-2.6537,1.3614,0.50283,-0.31455,0.19281,1.4954,0.0035507,-0.090557,0.90502,-0.18892 -0.078031,1.163,0.14888,2.6835,3.0377,-0.29628,0.81261,1.1981,-2.1457,-0.71099,1.0155,-0.28858,-1.3436,1.1852,-0.66499 -0.28007,-1.8278,1.4167,-0.65703,-1.2768,-2.6454,2.471,-0.69022,-0.27544,0.89639,-1.1468,-0.4492,0.60306,0.40437,-0.1141 0.19939,-3.5604,2.4921,0.27452,-1.9446,-0.47059,-0.56673,0.83695,-0.43058,1.3379,0.22605,-0.32888,0.51265,-1.1048,-0.60982 2.8327,-1.5111,-0.87933,0.27721,0.099281,-1.3165,0.12806,-0.96902,-0.4043,0.95022,2.3205,-0.26994,-0.67914,1.2587,2.6672 -0.45191,3.2412,-1.016,-0.29086,0.43345,-1.0598,-1.3968,0.8062,-0.8292,-0.187,-0.29465,-0.31419,-1.1444,-0.5217,-1.0556 -0.47133,-1.7855,2.4244,0.39023,-2.6765,-1.773,0.38364,0.25071,0.11984,-0.16027,0.1697,-0.096148,0.28828,-1.5488,-0.71589 -0.15254,-0.96792,2.558,-1.5117,-3.2074,1.0936,-0.26191,0.9998,-1.354,-0.07068,0.17354,-0.83186,0.7086,-0.80946,0.53965 1.5848,-2.9752,3.2887,2.3361,1.6811,1.4588,-1.7014,0.8406,-2.8187,-0.91252,1.0901,0.38759,-0.62791,-0.2871,0.17471 2.2093,1.8632,2.2357,-0.3596,-0.69495,-3.049,-0.18155,0.1439,-1.1137,-0.60456,-0.67565,-0.74871,0.46533,1.3296,0.44587 3.6404,-1.5932,-1.6913,-3.7716,-1.0505,-0.62103,-0.53262,2.3388,-0.97847,-2.41,1.9148,0.3378,1.0727,-0.79717,-0.50896 0.033021,-0.9311,1.8097,0.1818,-3.2877,-0.83349,0.64943,-1.1948,0.47879,-0.051669,-0.082278,-0.26733,-0.18489,-0.75543,0.14178 1.7535,-1.6415,-1.7299,-0.76493,1.2086,-0.47232,-0.053275,1.1721,0.064193,-1.2653,3.4941,1.7371,-0.54405,-0.23379,0.35196 -0.4418,0.10804,-0.36198,2.9418,0.41874,-1.2344,0.85676,1.2861,0.39448,-1.8308,-0.89854,0.24104,-0.24107,-0.092127,0.03974 2.5482,1.6831,-1.9048,-1.8689,-0.022603,-2.3359,1.1257,0.15165,0.65775,0.98981,0.059436,-1.2748,-1.2592,-0.68764,1.5412 -2.3386,0.47182,-1.1526,1.3178,-1.6915,-0.7838,1.3842,-0.35273,0.65171,1.2868,0.66262,-0.32902,0.20059,1.0352,-0.063629 -2.7055,0.88049,-2.3635,0.54209,-0.92727,-0.37027,2.0962,1.1153,0.33607,0.634,-0.68088,-0.7212,-0.30481,0.72259,-0.55279 2.0642,1.318,1.2728,0.75703,1.6596,-1.9569,-1.3992,-0.55745,0.22038,-0.012777,1.0482,0.43146,1.613,0.040427,-1.4364 -1.8054,0.35021,-1.0334,0.86401,-2.1522,-0.91752,1.1541,-0.53197,0.90434,1.2795,0.44457,-0.060251,1.1678,0.32531,0.012714 2.2404,0.25973,-1.0485,1.7012,-0.43838,-0.76299,-0.7516,-1.0863,0.94375,0.20593,1.0115,-0.6903,1.2904,0.92433,0.027135 -0.74155,0.99678,1.0764,-0.3877,-2.9938,-0.84785,0.78164,-0.56154,-0.36871,-0.8552,-0.31639,0.21768,0.45959,0.18227,1.2303 -0.59645,0.97319,0.61055,2.0953,-2.0191,-0.99404,0.3631,-0.59162,0.42569,0.63625,0.55515,0.56088,-0.089169,1.0755,1.0316 -3.2076,-0.59874,-0.39793,-0.82038,-1.5209,0.0028134,-0.3568,-1.1379,-0.31754,1.0198,1.8294,0.42305,-0.47184,-0.28028,-1.1079 -1.0927,-1.32,-1.9802,2.0221,0.68003,1.7606,-0.18159,-0.61106,-0.3656,0.58051,0.87409,-0.66597,0.67633,-0.0078441,-0.11376 -1.7735,1.071,-1.6281,0.75527,-1.255,0.19371,1.443,0.77084,-1.1564,0.86446,0.42261,0.50091,0.14072,1.1939,-0.097231 4.1652,-2.0927,-0.57615,1.9413,-0.41961,2.9998,-0.32922,0.28414,-2.538,0.23592,-0.98056,-0.86835,0.71974,0.18117,-0.074444 4.3894,-2.0944,0.63413,1.1178,2.065,-0.43383,0.67039,-1.9991,-1.6825,-0.46555,2.2065,0.10786,1.4119,1.0836,0.8922 0.14809,1.2229,-0.33656,2.5265,0.26342,0.48884,1.832,-0.63898,-1.2915,-0.43239,-1.7344,-0.20951,2.377,-0.37662,0.52377 -1.9684,-1.1644,-0.91088,1.4421,-1.1996,-1.2513,0.30703,-0.43888,1.371,0.59963,1.3135,0.10682,-0.40044,-0.22977,-1.0935 -2.6995,-1.3806,-2.9079,-0.25077,-0.71921,-1.1703,-1.297,-0.23914,-0.4517,-1.0556,0.19116,1.0167,-0.36722,-0.55225,-0.37553 -1.8681,-2.806,-1.9384,-0.56885,0.54399,-2.7788,-1.1494,0.084842,-0.81774,-0.0014208,-1.6142,0.53662,-0.98795,-0.59104,0.50263 -1.5704,-1.8045,-3.4535,1.4643,-0.89378,-0.35074,-0.064066,-1.0449,-0.51102,-1.1356,-0.23667,-0.15864,-1.2503,-0.61985,-0.40752 2.1632,0.18844,2.3526,0.6842,-2.7926,-0.86669,-0.88671,-0.51724,0.52762,-0.98793,-0.91254,0.24973,-1.2526,0.14364,0.87864 -1.5864,2.7219,-0.63955,0.60514,-0.97179,-0.46196,0.23096,1.4154,-1.2488,1.0311,-1.3273,-0.15472,-0.077942,1.3679,0.11411 2.0791,-0.82453,1.4335,2.6266,-0.62277,1.1817,-0.89668,-2.1669,-1.9599,-2.1925,-0.087572,0.38893,0.83592,-0.85698,0.074976 -1.4029,0.85754,0.23504,-2.1861,-2.3617,0.25664,1.4487,-0.42122,-1.5803,0.80104,-0.30945,-1.7126,0.0014694,-0.32013,0.84176 -1.8779,-1.9496,-1.1155,-0.18888,-0.021762,-1.6164,-1.7373,-1.5523,0.069515,1.0623,0.44898,1.7571,-0.40176,0.20184,-0.014121 -2.9946,-1.23,-2.3121,-1.1494,-0.38045,0.50967,-0.86376,-1.0426,-0.19727,-1.0056,0.63318,1.0609,-1.3014,-0.6794,-1.601 -1.7838,-0.5951,2.1456,-1.111,-2.3431,1.6307,-0.88153,-0.030898,-1.1395,-0.13983,1.3144,-0.30706,0.34508,-1.1077,-0.044615 2.9805,0.020593,-0.15881,-1.256,-1.4885,-1.7812,-1.3727,-1.073,0.49038,-1.052,1.2751,-0.68609,1.6382,0.26881,0.059634 -0.030232,1.174,-2.4174,0.52145,-1.1032,0.53434,-0.60431,0.89286,-0.65362,0.2742,0.67318,0.061895,1.2356,-0.29659,-0.51987 -0.73964,-1.3503,-1.3242,-0.89306,-1.4344,-0.6029,-1.8945,-0.47049,-0.33383,0.47781,-0.64292,1.9336,1.0462,-1.5895,0.54577 3.4629,1.0393,-1.1712,-0.87405,-0.66387,-2.6888,0.91357,-0.75531,1.3662,-1.1762,-0.50062,-0.76574,0.5347,-0.2465,-0.62648 -1.1864,-1.3128,0.43714,-2.5947,-2.1969,2.1254,-0.51603,-0.23823,-1.941,1.2327,-0.098858,-1.7872,0.5963,0.67353,0.42378 4.0788,0.52027,-2.7886,-4.6318,-0.73986,-1.352,2.1875,1.9075,-1.159,-0.62796,1.5867,0.28801,0.28721,-0.52637,1.1418 0.84566,-2.3332,-1.2734,0.060442,-0.99619,-0.1029,-1.7125,-1.3456,-0.73647,1.2911,-2.1028,0.89004,-0.93903,-0.73203,2.2517 0.43833,-3.4681,1.3584,2.0556,-0.89028,1.0465,0.32221,-0.68235,-1.6488,1.4123,0.70226,-0.16855,-0.15234,-0.70464,0.33201 -1.5644,0.05468,-2.8368,0.093354,0.78371,-0.66421,-0.81874,1.2565,0.24859,-0.373,-0.14775,1.5426,-0.44939,0.46208,0.56126 -1.4066,-0.7277,2.8397,-1.1886,-1.2691,1.4153,-0.34097,1.8105,-0.027978,-0.40395,1.8978,-0.42121,-0.69045,-0.25916,0.14897 2.0376,-0.30285,0.89546,-0.70297,-1.7688,1.1581,-3.0023,1.4447,-0.81776,0.0085235,0.99727,1.0978,1.6124,0.36242,-0.39443 0.057294,1.7397,-2.0005,2.2057,-0.70815,0.86328,-1.4769,0.65707,0.43364,-0.14357,0.92973,-0.40463,-0.26328,0.45212,-1.0964 -2.1261,0.47666,-1.3036,1.1288,-0.39863,1.6167,0.39579,0.40354,0.3685,0.035163,1.4064,-0.024778,-1.4183,0.014974,-1.0864 0.90387,0.37196,0.96324,2.2882,-0.99449,0.16366,-1.5931,-0.95178,-0.8323,-0.87066,1.1997,-0.11171,-1.4217,0.7991,1.1476 -2.3492,-0.92873,-3.6144,-0.18742,0.21386,-0.052113,-0.6961,-1.1941,-0.33572,-1.5812,-0.89966,1.9333,-0.55245,-0.91886,-0.17886 3.8322,-2.5787,-1.9899,-0.20172,-0.47991,-0.72832,1.5225,0.0051775,2.0292,-0.47382,0.77136,0.15716,-0.72734,0.15864,0.56177 -0.59391,0.06027,0.70867,2.1675,0.99038,-1.087,1.3771,2.5634,-1.2317,1.7914,0.078751,-0.20799,0.81019,0.86184,-0.41832 -0.68335,-0.073835,-0.18111,3.109,0.19907,0.13068,0.27867,0.80303,0.40333,0.98602,1.0892,-0.024548,-0.27418,-0.22343,-0.049432 -2.1557,-0.32744,-2.5907,-1.1566,-0.96163,-0.40014,-0.31849,-2.49,-1.9031,-0.67794,-0.36183,1.0079,-0.024131,-0.48971,0.052017 3.1258,-0.33745,-1.2518,-1.9065,-1.9841,-0.55847,-0.43162,-0.7616,1.3943,-0.47215,0.86613,-0.29709,1.2261,0.22232,0.56586 -1.915,-2.2932,-1.3599,-0.62823,-0.53074,0.35834,-2.5516,-1.1019,-1.0485,1.0902,0.45084,1.4191,-1.2854,0.7754,-0.25309 2.0351,2.2304,1.1327,-0.72472,0.79983,-2.8138,-1.5715,-1.1231,-0.69111,0.18534,1.5016,-0.56539,0.022307,0.9207,0.19101 0.81573,1.0056,0.63413,0.96392,-0.18144,-1.1772,-2.6212,0.39283,0.6802,-1.0343,2.2357,0.56041,-0.2398,0.43301,-1.1516 2.0942,-2.2821,-1.2826,1.8489,1.8262,1.2116,-1.0288,0.30915,-0.6037,-0.22462,3.7009,-0.11296,-0.049305,0.17064,0.87495 -1.4822,-0.58644,0.77045,0.24371,3.0421,0.24403,0.91085,0.1735,-1.8021,2.1284,-0.97583,-0.17546,0.80574,-0.53624,-0.42283 -1.4611,-2.5435,0.53092,-0.21782,-0.032275,1.8238,-1.6236,-0.047285,0.93148,2.7656,-0.15133,-0.64923,0.1285,1.348,0.10053 -0.81764,-0.61477,-3.0379,2.088,0.21346,-0.85788,-0.13607,-0.19308,-0.73266,-0.30581,0.22344,1.0905,0.43233,-0.31349,0.78634 1.6437,2.0049,-0.25084,0.19597,-0.49378,-1.965,-0.88888,-0.57003,0.91184,-0.2553,-0.32657,-0.79961,2.3858,0.71998,-0.11714 -0.60375,1.1084,-0.97936,2.4354,1.914,0.28057,0.35404,2.2173,-0.38682,0.53846,-0.82809,-0.4207,0.59468,-0.5087,-0.35153 -1.5931,0.34526,-0.9882,1.6683,3.8413,-0.96138,2.1612,1.8304,-2.4462,-0.9982,-0.20636,-0.64892,0.012702,0.76411,0.38383 1.456,-0.026835,-0.27236,-2.5063,0.77942,-1.3229,-1.8249,0.87408,1.0901,-0.82969,2.7979,0.31856,1.3395,-1.0419,-0.13678 -1.4536,-2.3093,-2.6656,1.1829,-0.36658,-0.56933,-1.9177,0.22209,0.49708,-0.17255,-0.21506,0.2276,-1.7515,-0.7716,0.5193 0.43071,3.0129,1.4489,-1.0126,-1.0701,-2.3332,-0.2755,-0.11634,-1.4924,-1.0313,-1.6722,-0.81244,0.12297,0.80787,0.72173 1.6405,-0.44313,-0.090048,0.89129,0.73792,1.1529,-1.665,0.45596,1.1244,-1.757,0.080524,-0.50338,1.1316,0.30809,0.80629 -1.6984,-1.9011,-2.3146,1.2291,-0.099754,-1.5182,-0.67736,-0.69889,0.26019,0.084898,0.094104,0.3289,-0.32364,0.0041056,-0.056019 3.9162,-1.3474,-1.8631,-2.59,-1.4065,0.70861,-0.56448,1.6681,-1.024,-1.8181,0.30161,-0.9377,0.99297,-0.97144,-0.45848 -0.86619,-3.2782,-0.13986,-1.9399,-1.9034,0.2422,-2.0867,-1.1338,-1.8906,0.7935,-1.3953,0.47694,0.060202,-1.1918,0.2879 1.7233,2.4271,0.59818,-2.2452,0.98676,-0.48801,-1.076,1.1746,-0.83454,1.5515,0.25531,0.064733,1.3867,0.10414,-1.0432 -2.4715,-2.6329,-0.69982,-1.4408,0.12961,0.11012,-3.4001,0.4049,-1.1408,0.99997,-0.5318,1.1121,-0.15555,-0.60865,1.2544 -1.7696,1.3541,0.38447,0.93998,-1.2438,-1.4332,1.2153,0.56216,-1.0617,1.3611,0.75542,0.84917,0.19777,1.6148,0.227 -0.93348,-4.2571,-1.2751,0.62668,-0.42009,-1.1895,-2.7276,0.13579,-0.59925,0.66655,-1.1422,1.1252,-0.47931,-1.1312,0.60527 -2.1389,-1.6183,-2.6724,-0.26928,-0.0048691,-0.15077,-2.6434,0.54458,-0.88817,-0.91852,-0.16064,1.8546,-1.2467,-1.5726,1.1039 2.9929,0.23738,-1.9947,0.39531,-1.1152,0.13271,0.50195,-1.7564,0.26071,0.14319,0.74043,-1.6019,0.0021239,-0.33064,1.5995 -1.3336,-1.7754,-1.9687,0.29933,0.28133,-0.40887,-2.4819,1.6727,0.47063,0.36982,-0.23365,1.0046,-0.96794,-0.8684,1.7241 4.6802,-4.2111,-2.1972,0.17363,0.72359,-0.033744,3.3832,1.4082,0.23741,-1.4365,0.91185,1.6832,-0.11463,1.3139,0.34675 -2.4059,-1.9822,-2.2627,-0.2188,-0.21674,-1.6439,-2.7902,0.18304,-0.22834,-0.24833,0.0029599,2.056,-1.6874,-0.88369,0.57863 -2.1455,-0.81127,-3.3321,-0.2918,-0.55804,-1.6424,-1.8071,0.9027,-0.81127,-1.0477,-0.37548,1.7733,-1.3179,-1.1726,0.65887 3.8569,-1.9239,3.2779,-0.23459,-2.4309,0.53006,-0.57112,1.5804,-1.3276,0.39196,-1.0491,-0.04584,-0.87366,-0.23528,-1.0649 4.7072,-3.6911,-1.1015,-0.56035,-0.59731,-1.1712,2.031,0.13853,0.99868,-0.60164,0.50041,1.1348,0.46195,0.3879,0.89321 -1.6658,0.018501,-2.0371,0.0081684,-2.1417,1.107,0.2064,-1.0044,0.51274,-0.12746,1.0933,0.015926,0.31776,0.61088,-0.71374 4.2354,-0.1941,-1.2681,0.16471,1.6336,-1.2397,1.5944,-1.3208,-0.65981,1.2829,0.5512,-1.6003,-0.32148,0.30349,2.1394 0.0053064,-0.24794,-1.9928,2.4804,-1.9749,2.0871,0.23829,-0.85415,-0.10961,-0.79584,0.27829,0.27868,0.41701,-0.79355,0.71198 1.7045,2.5481,-0.22298,-0.6409,-1.3701,-1.7325,-0.47483,0.73789,0.19603,0.44229,-2.0698,-1.1397,0.35288,1.1622,0.058166 1.6979,2.6398,-0.97417,-1.3782,-0.80899,-0.47089,-0.6013,1.8852,0.24071,0.14648,-2.1103,-1.4889,0.34368,0.56557,-0.50484 -2.4654,-0.84203,-0.22372,-1.0365,-1.7526,0.13266,-0.89081,-1.8157,-0.1591,1.2099,1.743,0.57935,-0.50719,-0.10212,-0.74958 1.4258,1.8637,-1.1004,1.0631,-0.34903,-1.2516,-1.3192,-0.5666,0.53256,1.3606,0.51276,-1.0837,-0.011054,1.5513,-0.009773 3.7018,0.56657,-0.79648,0.16868,-0.056928,-2.4033,0.2921,-0.81936,1.0602,0.30464,-0.75641,-1.4745,0.11018,1.2729,0.070384 1.6946,-0.3461,-3.7874,0.31813,0.96798,1.633,2.78,0.66872,-0.18078,-0.58145,-0.40159,1.1348,-0.28673,-0.26108,0.36106 2.3913,2.2232,-0.66597,-1.3515,-0.29682,-1.8919,-0.83095,-0.53256,0.013015,1.4892,0.52966,-1.3744,0.8222,1.3298,0.94613 0.26975,2.4241,-0.47896,0.68393,-1.8194,-0.91347,-1.9181,-0.10408,-0.49105,0.18781,0.95124,-0.18883,0.22537,0.070926,-0.38709 3.4603,-0.20336,0.27884,0.72693,-1.4072,-0.71329,-1.3824,-1.6002,1.0022,-1.0665,-1.0139,-0.44601,-0.76109,-0.73645,-0.7423 3.9387,-1.2486,-1.9369,0.72584,0.81509,-1.9846,2.3099,-1.0305,0.6198,-0.72944,0.053691,-0.57663,0.19557,0.16621,0.34619 4.2021,-0.57168,-0.64669,1.246,0.011861,-1.4284,0.34728,-2.05,0.12,-1.6109,-0.59137,-1.579,-0.051294,-0.14024,-0.084659 2.7805,-1.3192,-0.76577,-2.7433,-2.2527,1.2511,0.051524,1.4091,-1.0524,1.7997,1.0509,1.7777,1.6711,0.39599,1.1807 3.2759,1.0376,-0.7965,1.0105,-0.14917,-1.6814,0.41535,-0.35615,1.2681,-0.54704,-1.8809,-0.67788,-0.085312,0.42968,-1.1521 -0.34999,2.4376,1.2597,0.80724,-0.58906,-1.0269,-2.0804,0.22861,-0.79594,-0.45741,2.1333,0.54213,-1.1087,0.36805,-1.2745 2.4301,1.9432,-1.1962,-0.51732,-0.47427,-1.4824,-0.88734,0.43491,0.11292,2.0761,-0.52021,-1.8902,0.044842,0.34271,0.61923 0.85802,2.506,-3.2439,-1.2489,-0.23869,0.17386,-0.26024,0.35185,0.1008,-0.44723,0.33099,-1.3619,0.95321,-0.18082,-0.0058042 2.824,1.9131,-0.39705,0.68023,0.67371,-1.2855,-0.018462,-0.01179,-0.72759,1.9889,-2.1895,-1.8363,-0.48608,0.55037,0.26809 1.2901,1.3596,0.16362,2.1182,0.16068,-0.83814,-0.15745,0.47736,-1.202,2.4602,-1.1159,-0.32343,-0.14102,1.2773,0.88451 2.1466,1.853,-0.68908,1.3912,-0.60562,-1.7036,-0.32226,-0.20222,0.39836,1.1252,-1.7448,-1.1333,-0.02415,0.58674,0.18751 -0.60277,2.2273,-0.20206,0.056683,0.47187,-0.35322,-1.3468,2.8609,0.36616,0.35415,-1.1195,-0.60894,1.166,0.36352,-0.39501 -0.30988,-4.373,1.3975,1.7917,1.0925,-0.45614,-0.077755,2.0672,-1.4233,-0.24087,0.61152,-0.74467,-0.20188,-1.5819,-0.22818 -2.1106,-1.5678,-2.6371,1.3925,0.3735,-0.59555,-0.23862,-1.3106,-0.9183,-0.17521,0.39361,0.61533,-0.04434,-0.58837,-0.84588 1.0885,-2.8032,1.0167,2.6166,-0.6916,-0.62198,1.044,-1.3419,-1.424,-1.2021,-0.15736,0.26363,0.99019,-2.0476,-0.093154 -2.9581,0.97691,-2.3362,-0.81605,-1.1376,0.16605,1.3474,-0.33964,-1.4039,0.18268,0.91137,0.55646,0.25061,-0.32006,-1.1164 -1.3111,0.34478,1.7466,0.23979,-2.8358,-0.62098,0.44901,-0.70014,-0.26614,-0.225,1.2419,0.76281,0.7831,-0.72805,0.2512 -0.29399,1.3496,-0.66596,1.1131,-1.2695,-0.067759,-1.7794,1.2958,0.81797,-0.21254,1.1616,0.56755,-1.0201,0.81899,-1.099 2.7971,-0.23992,1.1611,1.7567,0.39699,-2.3465,1.398,-0.22209,-0.9291,-0.72026,-1.3295,0.43317,2.0088,0.57964,-0.99149 0.088456,1.5261,-1.7902,1.6692,-1.7663,0.90769,-1.6546,0.3012,0.31277,0.55713,0.71965,0.1971,-0.28187,1.0238,-0.94676 2.6312,1.0184,-2.0584,-1.4896,-0.75259,-1.6662,0.038069,-0.51891,2.066,-0.332,1.0976,-0.90067,0.1662,0.73721,0.84926 4.6083,-1.4075,-0.27844,0.82162,0.85084,-0.93213,1.4472,-1.7891,-0.87064,-0.011616,0.83708,0.21767,1.288,0.63712,-0.24942 -0.85447,0.63852,0.058752,0.53225,-2.888,-1.4102,1.7475,-1.0277,0.2004,0.27315,-1.0778,0.96339,0.52185,-0.39729,0.46965 -1.1968,-1.1014,-1.9476,2.2012,-1.4254,-1.3079,0.94765,-0.3637,0.43073,-0.23151,0.87456,-0.35083,0.1899,0.18198,-0.96937 1.3226,0.91791,-1.8649,1.8735,4.3916,-1.568,0.3967,2.0263,-1.3336,-0.43381,0.40843,-1.9707,0.27682,0.058973,-0.37573 0.6725,1.2636,-0.66793,1.8249,-1.5485,-0.46494,-0.54723,-0.36488,-0.069424,-0.4486,0.25251,0.014672,1.2942,1.0882,0.41766 -0.94308,-2.7187,-2.1157,2.1319,-0.56928,-0.39404,-0.53739,0.33703,0.13941,-0.30264,0.67637,-0.70512,-0.83644,-0.82192,-0.61516 0.70489,-1.1136,0.92233,3.3694,1.2421,1.562,0.30132,2.7612,-0.58289,0.89058,1.1727,-0.20294,0.77702,1.044,-0.59326 -1.0228,-1.759,-3.1564,1.0538,-1.2575,-0.96618,-1.2254,0.34228,-0.0057921,-0.20117,-0.061435,0.88077,-0.68413,-0.37028,-0.43823 -0.95932,-1.6851,-3.0345,1.0934,-1.5543,-0.65374,-0.45697,0.11957,0.28008,-0.0093042,0.016181,0.2137,-0.91313,-0.091983,-1.0382 -2.285,0.63825,-0.78264,0.73405,-1.3534,1.84,0.14689,1.6882,0.52313,0.41992,1.7364,-0.41634,-0.51664,0.85772,-1.1187 2.2703,1.0236,1.1306,-0.23645,-0.27675,-1.5643,-2.6826,-0.56223,-0.26667,0.071553,2.5233,0.20805,0.083103,0.43308,-0.4205 -1.6901,-0.4024,-0.32689,0.71763,-1.1148,-1.5653,1.2035,-0.65809,0.63615,1.389,0.62937,0.23348,1.3562,0.30442,0.022197 -0.4446,-2.7863,-0.43593,-0.21427,-2.4331,0.036524,-0.54092,-0.66614,0.20939,0.86934,-0.31603,-0.19335,1.1791,-0.93783,-0.91412 -1.5522,-2.1127,-2.2061,1.6422,-1.3642,-0.79317,-0.45992,-0.37413,0.7082,-0.15763,0.84422,-0.095912,-0.18754,-0.55087,-1.172 -1.1614,1.571,-1.4995,1.5762,-0.74818,-0.9407,0.95829,2.5397,0.31803,0.56415,-1.1731,-0.36263,-0.82262,0.34318,0.41302 -0.10171,-1.8933,4.5125,-0.76863,-0.19372,0.44817,-2.0583,1.1235,-0.99964,0.70648,1.1533,-0.55609,-1.1842,0.32842,-1.0922 -0.48805,-2.2307,-1.1971,1.7649,-1.5964,1.1551,-0.36585,1.9866,0.85156,0.90105,0.57584,-1.4246,0.21305,0.23688,-0.43478 -2.1882,0.92182,-2.2251,-1.1569,-1.2595,1.0751,0.39208,-0.29317,-1.0226,1.0366,0.02044,-0.56494,0.64742,-0.51612,0.56586 -1.6207,-2.6721,-0.97689,0.26465,-1.8059,0.40386,-1.1194,0.85754,0.7871,0.35218,0.95408,-0.919,0.076593,-0.090543,-1.0257 -0.67011,-3.2758,-1.6862,1.931,-0.24547,-0.23877,-0.96967,0.018455,0.23145,0.21828,0.42066,0.010587,0.24479,-1.1477,-0.7393 -1.1186,-2.1641,-1.3698,0.97292,-1.7671,0.8729,-0.58148,1.6784,1.1667,0.17606,0.45551,-1.7548,-0.44037,-0.14949,-0.80654 -0.57628,-1.1064,-3.4338,2.4216,-0.38317,-1.0072,0.022174,-0.17584,-0.58366,-0.60879,0.043807,0.77595,0.12858,-0.14939,0.010546 -0.92379,-0.34208,-3.698,1.2045,-0.96159,-1.1587,-0.36944,0.49856,0.29501,-0.2928,-0.5768,1.0099,-0.67928,-0.3028,0.14639 -0.41173,1.4566,-1.5531,1.1654,-2.4717,0.95487,0.2316,-0.023064,-0.53841,-2.4686,-0.66065,0.3695,-0.45143,-1.0704,0.11245 0.14829,1.4031,0.31155,3.2748,1.1317,-0.58792,1.0402,-0.14266,-2.7691,-0.17348,0.54277,0.23591,0.4593,1.0088,0.64528 -0.4532,1.0046,0.91039,2.2014,0.76505,-2.1508,1.2511,0.19818,-1.9626,1.4199,0.53919,0.59971,0.6434,1.4835,-0.2797 1.2311,-0.65336,3.2799,2.2247,-1.187,-1.2103,-0.064897,-1.4465,-0.79134,-0.26072,0.48395,0.61179,-0.62485,-0.59961,0.11863 -0.99372,1.1851,-0.42139,2.466,0.63669,-1.2695,1.1484,1.5866,-0.79769,0.071979,0.24854,0.85196,-0.46878,1.5654,-0.52565 1.8281,-0.49208,-1.6564,0.45466,2.6044,0.62019,1.5226,-0.98126,0.60932,-2.1423,0.82491,-0.22767,2.5272,-0.34637,0.54171 -1.3954,1.0968,-0.82698,1.899,0.5824,-0.10986,1.2382,2.0968,-0.63706,0.86858,0.46277,0.30603,-0.45095,1.4257,-0.42801 -2.0327,0.46224,-1.5757,0.93333,1.7154,1.081,1.9989,2.17,-0.89233,0.90165,0.016016,-0.82941,-0.99448,0.4431,-0.22737 -1.0781,1.2718,-0.76622,1.8683,-0.10424,-0.64695,1.132,2.3818,-0.26451,0.88411,-0.3774,0.37004,0.14148,1.3287,-0.36048 3.2665,-0.099668,0.53324,-0.28267,4.187,-1.5302,0.066626,1.4243,-0.023265,1.489,1.6304,0.5739,1.1461,-0.13396,-0.67584 0.28886,-0.64716,0.44794,2.9329,2.3732,-0.40732,1.1199,1.0733,-1.0597,-2.0111,0.16888,0.14353,1.1033,-1.0846,0.22746 -3.045,0.027052,-2.7199,-0.1324,0.3777,-1.0611,0.46743,0.23211,-0.23353,1.06,-0.3396,-0.10327,0.20098,1.0728,-0.71652 1.5272,0.51287,-1.641,1.5851,1.1973,-0.23646,-0.095195,-0.81027,-1.3319,1.3879,-0.21766,-1.6634,-0.27149,1.0392,1.5259 -0.59508,2.079,0.23114,-1.0597,-1.2993,0.091018,1.4245,2.4759,-1.3565,0.85271,-1.5363,-0.97558,-0.424,0.34547,0.99457 -1.3715,1.3516,-1.2472,1.5055,-0.70948,-0.57289,1.5586,1.7809,0.20594,-0.64701,-0.27761,0.11319,-0.66945,0.64609,0.059357 1.1655,3.2882,1.1748,0.3682,-0.10435,-1.8214,-1.0584,0.64908,-0.94457,1.0533,-1.398,-0.85544,-0.063942,0.46608,0.38608 -2.3361,-0.057373,-2.0522,0.58863,0.064271,-1.202,1.346,1.1373,0.13291,1.1604,0.3978,-0.46586,0.028051,1.1951,-0.76739 -1.84,-0.15986,-2.6305,0.82678,1.0641,-0.028479,1.9566,1.3229,-0.78157,0.69271,-0.49735,-1.3364,-0.23657,0.81651,-0.28892 -2.0406,-0.069552,-1.7021,1.2184,-0.16901,-1.1543,1.118,0.51597,0.62402,1.3848,0.46351,-0.30701,0.50153,1.137,-0.52792 0.35102,2.2583,-0.38825,2.8223,1.7765,0.091622,-0.66789,0.16546,-0.6376,0.10834,0.30071,-0.035147,-0.3796,1.3455,-0.72737 3.7809,-3.0539,-2.2336,0.73083,0.3256,-0.016971,2.7267,-0.26393,0.072991,-2.1543,0.71601,0.26977,0.25149,0.051885,0.087293 2.5289,0.82626,-2.4765,-2.9667,-1.367,-1.9333,1.3671,0.80701,0.48759,0.03824,1.4679,0.27829,-0.29819,-0.094663,1.7627 -1.9689,0.72302,-0.81392,1.9809,0.22327,-0.65529,1.7526,1.3624,-0.58662,1.1085,0.7292,0.24024,-0.24731,1.236,-0.094671 -1.7882,-0.89425,-1.8672,2.1694,0.99871,-1.047,1.665,-0.57951,-0.83753,0.81866,0.62374,-0.57648,0.60445,0.78911,-0.81608 2.1606,0.76828,-0.056504,-0.74192,-1.4942,0.87363,-2.8943,-0.11923,0.0015333,-0.043435,2.13,-0.44409,1.3616,0.59507,0.47388 1.0024,-0.092762,1.6544,-1.2194,-3.6111,-0.63829,0.37969,1.2175,0.16103,-2.5025,-1.0439,0.34949,-1.4755,-0.82619,0.19021 0.68343,-0.54921,0.074606,1.148,-1.5315,-1.9791,3.3358,1.1518,0.42931,0.058821,-1.0219,0.94676,-0.23905,0.71884,-1.3295 2.9262,-0.44268,0.84072,0.81589,-0.95627,1.1949,-1.9818,-0.80724,-0.61369,1.0984,0.49694,-1.8517,-1.1774,0.9836,1.2336 -1.7485,0.31705,-0.13717,-1.7004,-1.9984,-1.3048,1.8209,-1.3349,-1.4754,1.0929,-0.14154,-0.13992,0.59496,1.2011,0.30428 0.25842,-0.1581,1.2323,1.1304,-2.099,-1.8812,2.1331,-1.1532,-0.061537,0.89876,-0.84252,-0.22063,-0.061356,0.61316,0.50413 1.7457,-2.7751,-1.0254,1.2069,2.6303,1.8736,0.32612,0.37745,-1.0608,-1.7147,3.4323,0.82545,1.5704,0.21278,1.0322 2.0935,0.53131,-2.2587,0.31671,-1.8176,-0.036452,-1.1699,0.023635,0.91081,1.2497,1.0131,-1.5774,-0.482,1.3498,0.94534 4.2562,-2.1174,-1.4541,0.24273,-1.2079,0.29562,-0.36281,0.80713,1.0702,-0.82156,-0.15728,-0.36556,-0.9939,0.22555,-1.7693 -2.1349,-0.51031,-1.1187,0.43066,0.66865,-0.82144,0.4721,-0.3671,0.011493,2.4735,-0.20533,0.22256,0.82696,0.91394,0.020889 2.1791,-2.7716,-3.7936,0.95172,-1.176,2.7794,2.0016,1.4226,-1.2443,-1.3395,-0.59511,1.2437,1.0567,0.46529,-0.068342 -0.63948,-0.066726,-0.79536,0.81636,-0.6683,-0.86478,1.3435,-0.052615,-0.15313,2.286,-1.7166,-0.72784,0.72629,0.96015,1.0307 -2.0344,0.055495,-1.5109,-0.79051,-0.48512,0.33988,-0.0094944,-0.070509,-0.8474,2.0153,0.13827,-0.071284,0.43285,1.574,0.43711 -0.46063,0.36467,-0.37088,-0.38857,-3.2257,0.23316,0.45548,0.19999,0.17909,1.0266,-0.15296,-0.8391,-0.75209,0.38748,1.1127 -1.1987,-3.2554,0.66482,0.72514,-1.5974,-0.59254,-0.088811,-0.90619,0.14376,0.9052,0.7755,-0.22077,0.18158,-0.5455,-0.81089 0.58343,-0.41293,-1.5579,1.794,0.39076,0.25818,3.1189,0.82358,-1.3022,0.75097,-2.2606,0.026758,1.5602,0.074498,0.035808 -1.9052,2.0334,-0.41051,0.9505,-1.9141,-0.25194,1.4023,-0.023212,-0.33723,0.75768,-0.32902,0.38074,0.71203,0.84015,1.0154 -1.521,0.21758,0.63997,0.30988,-2.1138,-1.0595,1.2718,-1.0316,0.11132,1.4398,0.81133,0.40307,0.32846,0.9563,0.46617 1.1944,-0.45643,-0.31249,0.35246,-0.72195,1.4907,-2.4664,3.5283,-0.24361,-0.65663,0.70769,0.17615,1.2006,0.60062,-1.6823 -0.61047,-0.058361,0.40163,0.71666,-1.8915,-1.2368,2.1794,-1.1102,-0.23022,2.2504,-0.35567,-0.36632,0.35887,1.0995,0.39526 -1.2363,-0.64659,-0.72318,1.0601,0.19125,-1.4343,1.7273,-0.95177,-0.38442,2.6592,-0.37146,-0.41151,1.6683,0.83597,-0.26232 4.463,-3.0985,-1.8181,0.098745,0.12497,-0.7645,1.9109,-0.027205,0.8545,-2.1662,0.5715,0.58651,-1.2327,-0.637,-0.2224 -1.6041,-2.4727,0.74476,0.65551,-2.2753,-0.73414,-0.19216,0.61274,0.63929,-0.25627,1.4001,-0.79206,0.39505,-0.85177,-0.94342 -1.6082,-3.7793,-1.2308,-0.43362,0.017428,-0.31632,-3.0558,1.6844,-0.17861,0.81778,-0.71672,0.62615,-0.44444,-0.16896,0.65452 -1.6475,-2.495,-1.6276,0.0015085,1.1029,0.67995,-2.9942,1.8376,0.68355,0.80971,-0.73429,0.40716,-1.2758,0.63807,2.2936 1.1051,-3.7005,-0.99255,1.5457,0.18822,1.69,-1.5532,-0.34814,-0.90111,1.2869,-0.81954,1.284,0.54289,-1.056,0.3857 -1.0995,-3.0973,-1.5534,0.14624,-0.60003,0.40294,-2.3165,1.8873,0.1459,1.0339,-0.70269,-0.11407,-0.097019,0.0041004,0.21134 2.2959,1.168,-1.4094,1.5537,-0.441,-1.018,0.63205,-0.59896,0.62066,0.71735,-1.9637,-1.3146,0.80937,0.60256,-0.41391 2.8971,-1.1132,2.3933,1.4644,-2.3875,0.23349,0.29793,-0.52135,-0.21699,-0.28511,-0.72832,-0.65974,-1.8007,-0.030207,1.043 1.8346,2.6346,-0.43127,0.55139,-0.80265,-0.65554,-1.1171,-1.3542,-0.6921,0.92222,-0.82105,-1.5509,0.32282,0.41056,0.065007 -1.7767,-0.86386,-3.6303,1.0207,-0.39397,-1.6213,-0.27388,-0.33911,0.29366,-0.23754,-0.62196,1.1747,-0.74996,0.30778,-0.5805 1.0816,1.5539,-1.5211,1.8074,-0.9104,-0.17174,-0.98972,-1.6127,0.23389,-0.34688,0.2272,-1.1756,0.43209,1.0084,0.49273 -1.3548,-2.1084,-1.5375,-0.97866,-1.8816,-1.0267,-1.4585,-0.83002,-0.40411,0.53985,-0.51731,0.92989,1.0357,-0.7029,-0.092444 -1.126,-2.6442,-1.2682,-0.91178,-0.76022,1.0007,-2.72,0.97102,-0.69138,1.0154,-0.7911,1.2046,1.0171,-0.41115,0.90866 3.2847,-0.88076,-1.8729,-1.3309,-1.5182,-1.1977,0.18879,-0.12516,2.2678,-0.84554,1.3059,-0.42607,-0.62685,0.37024,0.70872 1.8563,1.5123,-0.28053,-0.10825,-1.5402,-1.2537,-1.331,-1.0692,0.61443,-0.7411,-0.30381,-0.41556,1.8162,0.79479,-0.20335 -1.2569,-2.5301,-1.9821,0.37182,-0.8405,0.085099,-2.9598,0.67535,0.73993,0.83844,-0.69235,0.80283,-0.50664,-0.64161,1.5553 -1.9748,-2.0582,-1.3781,0.13972,-1.4034,-1.0737,-1.0457,-1.0707,0.234,0.90114,0.23618,0.72948,0.81729,-1.3677,-1.1128 4.5726,-2.047,0.68821,0.0071682,0.96746,-2.1143,0.41171,-1.207,-0.12446,-0.22084,0.93084,0.5184,1.3826,-0.17076,0.16436 3.4109,-0.37255,-2.5497,0.033842,-0.38146,-0.35251,1.3035,-1.1695,1.4146,-0.65854,0.61357,-1.6097,-0.30679,-0.35743,1.3519 -0.0076306,0.55058,0.4944,2.4073,-1.9539,0.018044,-0.43629,-1.162,-0.21326,-0.37771,0.551,0.74214,-0.68049,0.14557,0.86087 -2.4291,0.70593,-2.2676,-0.78619,-1.4636,-0.96341,0.64397,-1.053,-0.50785,1.0452,-0.38275,-0.010373,1.9891,0.65465,0.04435 -1.1111,1.3474,-0.36629,1.515,0.80411,-1.0949,0.28776,3.4659,0.11341,0.75931,-1.4409,-0.44397,-0.48303,0.17488,-0.19428 -1.1632,-1.635,-0.19006,0.22128,-2.719,-0.58472,0.36531,-1.7794,1.0952,0.81574,-0.27007,-0.72353,0.012777,-1.2225,-0.45742 0.66402,1.7705,0.45237,2.1967,1.157,-2.1245,-0.25296,1.0807,-0.97345,0.51472,0.58969,-0.1405,0.52303,2.1145,-0.73626 -1.8389,0.21608,0.92108,0.66441,-2.3999,-0.93952,0.24593,0.30138,0.93156,-1.013,1.4691,0.7718,0.50068,-0.58015,0.33242 4.7324,-2.1039,-2.4845,-1.62,-1.0513,0.40558,0.33433,2.8328,1.6272,1.0393,0.57426,0.03601,-0.20934,1.022,-0.40769 -2.344,-1.8383,-1.2579,-0.48667,-0.44159,1.7963,-1.7227,-0.67086,-0.72529,-0.17141,0.069603,-0.69221,0.44512,-1.5644,-0.18618 0.56552,2.6294,-1.0966,1.3811,0.76943,-0.90687,-0.23928,-1.0711,-0.92201,0.59249,-1.5558,-1.5244,-0.65584,0.27762,0.66483 3.1151,0.14455,2.4585,-0.33497,0.07532,-0.74246,-1.5806,0.33987,-0.048197,0.14519,0.80093,1.8922,0.87963,0.029726,-2.065 -1.6597,-2.7495,-1.1355,1.6064,-1.5091,-0.050318,-0.13782,-0.21366,0.45959,0.13458,0.65847,-0.93987,-0.24885,-1.4106,-1.1446 3.3599,-1.1088,0.55009,1.6819,-0.60089,1.3178,-1.4038,1.8957,-0.66128,1.8848,-0.39948,0.49961,2.1452,0.80833,-1.0307 1.4816,-3.3929,1.7705,0.79873,-1.3022,2.3627,0.012449,-0.42979,-1.1848,0.91059,-0.90896,-0.57985,0.11481,-1.2781,-1.2818 2.7011,-1.7476,1.3534,2.1108,-1.5499,1.3359,-0.89042,2.0193,-1.0589,1.341,-0.067606,-0.58459,0.69304,0.6923,0.66114 -1.3659,1.7954,-1.8759,1.0452,-2.3047,0.38707,1.0857,0.8281,-0.23086,-0.47119,-0.71226,0.28245,1.0621,0.28547,0.54379 -2.2259,-2.4067,0.048742,-0.83473,-0.77945,-0.28444,-1.2217,-0.86727,-0.65769,0.72688,0.6032,0.46473,0.8085,-2.045,-1.4943 1.2441,1.1341,0.4883,0.94089,1.031,-1.6063,-1.8168,-0.55032,-0.071165,-0.69063,1.3453,0.44961,0.047196,1.5199,-0.42291 2.7357,-3.1757,-2.7407,0.91421,-1.2415,1.4039,1.9416,1.1023,0.53118,-0.91072,-0.13939,1.0907,-0.2944,-0.052162,0.16093 -1.8801,-1.489,-3.0524,-0.3218,-1.4659,-0.74429,-1.8854,-0.22715,-1.1493,-0.8831,-0.37614,1.3719,0.10727,-1.199,0.41039 3.1883,-1.7183,-1.4919,1.012,-0.10997,0.8625,-0.25952,0.31071,-0.41452,2.0774,3.0559,0.1867,0.7811,0.85587,1.8388 -2.1075,-1.7537,-1.7302,0.68464,-0.81561,-1.391,-1.0035,-0.91668,1.039,0.47165,0.6439,0.7697,-0.1034,-0.88611,-0.82855 -1.4977,2.4109,-0.49069,0.34468,-1.5854,0.78192,0.27971,1.324,-1.6711,0.49868,0.14344,1.0741,0.61584,1.3132,0.40874 2.4587,1.2051,-1.3996,-1.9585,-1.4398,-1.4059,-0.80947,-0.77782,-0.10305,-0.32121,2.1508,-1.051,0.92717,-0.29576,1.4597 1.4789,0.75618,-1.361,1.8148,3.5964,-1.3632,-0.084645,1.2187,0.054039,-1.2918,0.32733,-1.3747,0.19996,0.076527,-0.83793 -0.25739,0.90679,-1.7702,2.0793,1.3565,-0.32163,-0.10799,2.7452,-0.080264,0.686,-1.038,-1.0169,-0.12812,0.27941,-0.5868 2.1384,-2.0784,-0.97287,2.0726,0.24497,1.1003,-1.6261,-0.93991,-0.42934,-1.2413,1.569,-0.41383,1.6376,-0.46527,0.54816 1.4205,-0.69987,-2.5754,1.2673,-1.1181,0.026231,1.1084,-0.4549,-0.58468,0.24023,-1.2929,0.85583,0.64561,-1.3805,-0.4068 0.16681,-1.6238,-0.25509,2.1219,0.054869,1.0616,0.94903,1.1443,-0.17157,-3.1156,0.28283,-0.83024,0.97676,-0.47004,1.2005 3.3471,-1.0802,3.4679,-0.27138,-1.4872,1.6653,-1.1499,2.4185,-1.4041,1.9158,-0.31961,0.41436,0.37475,0.87425,-1.3871 -0.011103,-1.3667,-3.0432,1.4111,-1.0304,-0.61796,-0.29653,0.61052,0.14935,0.13531,-0.64707,1.0285,0.26642,-1.1229,-0.35934 4.574,-2.0222,-1.4382,0.31721,-1.4724,1.1331,-0.3202,2.2726,0.25407,0.32499,-1.1382,0.47795,-0.68244,0.81964,-1.7956 -1.1664,1.4741,0.43743,0.78314,1.9723,-0.97573,0.052663,3.7644,-1.3407,1.0708,-0.61855,-0.7461,-0.25286,0.295,0.012651 3.5794,0.45984,-0.99484,-1.4429,-1.3057,-1.9559,-0.42515,-1.1617,1.4487,0.032311,1.2058,-1.2896,-0.66119,0.44356,1.2935 2.9293,-1.9818,-2.6536,0.77771,-1.3176,0.21659,1.6709,1.2318,1.332,0.64784,0.02294,1.0407,-0.3028,-0.04388,0.053477 0.14332,0.8151,0.73488,2.166,2.9514,0.2055,-0.14039,2.4268,-1.6959,1.3102,0.058561,-0.036483,0.23081,-0.47351,-1.0069 3.4667,-1.0031,-0.0073845,0.11671,-0.74457,2.0411,-1.0636,1.5561,0.0693,1.293,-0.74268,1.5858,1.0481,0.62901,-1.7834 0.11233,2.2598,0.50138,1.8793,2.2603,-0.02456,0.027321,1.3917,-0.60516,1.7037,-0.63021,0.37196,0.60254,0.22464,-0.74633 3.4997,-2.7196,-0.69679,0.15496,-0.11931,-1.7611,1.2591,-0.6206,-0.13281,0.25069,1.219,0.46142,-0.069731,1.115,2.3673 0.49976,1.0821,0.34471,2.1267,3.136,-0.007042,0.15104,2.6939,-1.113,0.81504,-1.2178,-0.21079,1.0086,-0.45784,-0.63706 2.2884,0.098935,2.2672,1.3956,0.081962,-1.9756,-0.32699,0.3562,-1.1167,0.46595,0.55904,1.219,1.314,0.984,-0.71187 1.999,0.9017,-2.0254,2.0136,-0.80089,-0.14229,0.55806,-1.183,0.7167,-0.74117,-1.6939,-1.0666,0.21721,-0.13368,-0.29908 -1.2117,-1.4115,0.069314,2.9044,-0.79893,-1.9209,1.174,-0.47787,-0.19204,-0.30556,0.9699,-0.14622,-0.27462,-0.046266,0.5238 -0.75618,0.1806,0.80262,0.80931,0.68537,0.87652,0.4248,1.2254,-1.4937,2.7645,0.52019,0.23809,0.00734,-0.16776,0.16739 -0.62556,1.743,-0.44057,1.5729,1.3248,-1.0947,0.063241,3.7389,-0.52573,0.65292,-0.85991,-1.0879,-0.75665,0.53483,-0.47934 1.8077,0.98918,0.041757,1.6852,4.4258,-1.3584,-0.81483,1.8781,-1.1942,1.3687,0.99625,-0.70832,0.64819,0.095918,-1.189 -2.0268,0.65774,-0.80098,1.3421,1.6553,0.30285,1.1948,3.1155,-0.32449,1.3002,0.29222,-0.96944,-0.94274,0.4071,0.25035 1.4098,-2.3391,1.8643,0.55123,-1.776,1.3047,-0.94723,1.3029,-0.46463,1.9511,0.72101,-0.21287,1.0684,0.22022,0.008543 0.69686,-2.7411,-0.66514,1.9737,1.1515,1.1694,-0.36745,3.0681,-0.15665,-0.39641,0.46259,-1.8478,-0.74906,0.092995,0.59907 -0.40155,-4.3479,1.797,1.4239,2.0907,1.0076,-1.0089,1.2893,-2.4588,0.31642,1.4553,-0.60751,-0.60732,-0.079582,-0.4985 2.6309,-1.2333,0.25569,2.2543,0.37894,2.4803,-1.2229,-1.2793,-1.3466,-1.0153,0.73469,0.22005,0.91374,-0.55691,-0.32607 2.9431,-0.58293,-2.9121,0.54327,1.3465,0.37612,2.0494,1.2256,0.47045,1.4265,-0.11829,-0.19725,-0.65544,-1.0369,-0.048306 2.9021,-1.6112,3.4256,0.90359,-0.95587,0.62704,-2.257,1.7368,-0.96075,1.0896,-0.6185,0.24876,-0.1396,0.052282,-0.077461 0.52488,-2.6915,1.4615,2.5396,-0.056801,-0.93946,0.48302,-1.1832,-2.532,-0.3334,0.96381,-0.52689,0.12605,-1.016,-0.35751 -0.08559,0.76886,-0.72801,3.2479,2.3279,-0.040223,0.26458,0.67844,-0.55772,-1.7985,-0.2735,-0.39928,0.23198,0.22383,0.15707 -2.1068,-0.83293,1.2419,0.33494,-2.0013,-1.7158,0.85773,-0.61504,-0.17462,0.19649,1.8373,-0.085567,-0.3533,0.45089,-0.34367 -1.1093,0.5267,-1.2502,2.2825,0.37136,-0.22748,1.2546,0.94678,0.12865,-0.88958,-0.031611,-0.17475,-1.9433,-0.6998,0.0066588 -1.2845,-2.7987,-1.0495,1.965,0.53256,-2.8298,1.3064,-0.9031,-1.5321,-0.23888,0.77556,-0.3762,0.4774,0.29647,-1.0852 -1.5891,-0.15534,0.95917,2.0295,1.3649,0.46852,0.86482,-0.049139,-1.552,-1.5259,2.1513,-0.017788,-0.26161,-0.2584,-0.80395 -1.508,-3.2461,1.1209,1.191,1.414,-1.9621,0.70354,0.55951,-1.1094,-1.4543,1.9718,-0.15391,-0.88349,-0.47427,-1.704 -0.20318,-3.1256,1.1302,2.9318,0.18175,0.47785,-0.36345,1.9604,-0.8877,-2.1214,1.3855,-1.1197,-1.2565,-0.36077,0.052139 4.5048,-2.0494,-0.97534,-0.69447,0.85638,-0.49966,3.255,-0.5275,-0.13111,-0.9124,-0.1303,-0.65795,0.093865,0.93464,2.5007 -0.21364,-2.8895,-0.10508,1.2694,0.4447,-2.2808,0.55549,-2.399,-2.5871,0.67784,-0.08791,0.55872,0.99223,-0.46909,-0.72074 3.2512,-0.75833,-1.1765,-0.5914,-1.7469,-0.55458,-0.43927,-0.3412,0.8192,-1.6135,0.42223,-0.83135,1.2106,0.7025,-0.057907 -0.7556,-1.5682,0.099724,2.3938,1.4748,-0.73442,2.6562,0.020037,-0.50505,-0.11505,0.07966,0.078855,1.5997,-0.92448,-0.64252 -1.5063,-0.26988,1.5086,0.1752,-2.8944,-0.17192,-0.12625,-1.1448,0.11078,0.15331,1.0972,0.55089,0.11043,-0.92742,0.38553 -0.8667,-4.9186,1.5,0.97408,2.4798,0.72549,-0.96418,1.6379,-2.5089,-0.40295,1.7092,-0.50975,-1.6516,-0.1748,-0.45404 1.9569,-1.2403,-0.94242,0.57149,0.77447,3.0005,-0.85197,0.0022624,-0.81653,1.1568,2.1697,0.27489,1.8384,0.85178,1.0602 -0.97686,3.0954,-1.6935,-0.38815,1.2273,0.12354,-2.1363,2.1303,0.14809,0.17839,0.81373,-0.929,0.42676,-0.16132,-1.1013 1.6227,0.012369,0.46904,1.8336,-1.7127,-1.2404,-1.4986,-1.2073,1.1871,-0.4004,-0.066516,-0.12047,0.67637,0.0049621,-0.27492 -1.7276,-1.3091,-3.0468,0.44248,0.81517,-3.2932,0.23747,0.0069235,-1.1305,-0.1494,-1.3346,0.47451,-0.70271,1.0375,-0.078106 5.7985,-3.8902,-1.7366,-0.73866,-0.2923,2.574,0.86568,1.3258,-2.2151,-0.95067,-0.2786,-1.4577,0.058589,-0.099942,0.20152 -0.95389,-4.5944,-1.4791,1.1628,0.59153,0.011303,-2.432,1.5015,-0.40969,0.2505,-1.2825,-0.54662,-1.557,-0.92131,0.66753 2.715,-0.87262,-2.6997,0.85508,-0.29772,1.234,1.4156,-1.4442,-0.27104,-1.0567,0.4972,-0.70246,1.5362,0.10406,1.633 1.5284,0.97522,-2.9408,1.1215,-0.29902,1.1804,0.55609,-0.81623,-0.36135,-0.48524,-1.0555,-1.2882,2.1068,-0.19466,0.20286 0.79365,3.1231,-1.5867,-0.62647,-0.8954,-0.4841,-1.664,0.4115,-1.0642,-0.59193,0.67688,-1.1846,0.33684,0.46896,-0.59966 3.5273,-1.6964,-0.54189,-1.8474,-1.68,-1.5706,0.6124,-0.13823,0.43841,0.77339,1.7048,0.94605,-0.029844,0.40631,2.3971 1.2051,2.0998,2.2358,-1.1572,-2.3149,-0.91299,0.16174,-0.96992,-1.8195,-3.0195,-0.088583,-0.55889,0.25702,0.39307,0.83427 2.6974,0.83482,0.36429,0.1705,-1.8789,-0.75894,-1.781,-1.379,1.0121,-0.22418,-0.26094,-0.28681,-1.0442,0.55304,0.14346 -1.824,-3.5757,-0.90251,-0.41629,0.61544,0.2372,-2.9446,2.1381,0.23608,0.71935,-1.2436,-0.67969,-1.1762,-0.066073,1.1571 -0.4156,-2.319,-1.8586,0.99439,-0.34318,-1.0369,-1.9244,1.6033,-0.027619,-0.058163,-0.12892,0.58652,-1.042,-1.4973,0.8054 3.4497,-3.0194,-0.78743,-0.31029,-0.66231,-1.2461,1.2138,-0.35458,0.59036,0.075823,0.86875,1.4869,0.012541,0.41049,2.4709 5.2073,-2.7832,-1.8109,-0.089466,-0.69924,1.077,0.1247,1.9466,0.79005,0.72086,-0.53896,-1.1419,-0.81872,0.35945,-0.32934 0.10086,1.442,-0.059508,0.72273,3.4495,-1.7166,0.028745,3.3092,-1.1069,0.93592,0.21153,-1.1636,0.28896,0.42881,-1.4463 2.1434,-1.2552,2.3532,0.12152,-1.7608,1.4802,-0.64134,2.8758,-0.6971,1.4432,0.19706,-0.0068614,1.5872,1.3628,-0.0037875 1.3098,1.9346,0.5776,2.4874,0.18944,-1.2066,-1.2356,-0.67427,-0.57735,0.18156,1.0457,0.35805,-0.14103,2.0389,-0.39516 -1.2007,-2.5088,-0.88297,2.1373,-0.90003,1.6929,0.076739,1.6601,-0.15309,-1.1479,0.45366,-1.8663,-0.58917,-1.3997,-0.0039327 4.5424,-1.0948,1.0393,1.4149,0.70742,1.0759,-0.13204,1.2223,-2.9078,2.0468,0.27248,0.20733,0.41427,1.4844,-0.023947 -0.7483,2.2325,-0.27785,-0.78884,-1.4846,0.82518,-0.68607,1.5419,-1.1959,-0.48325,-1.2836,-0.54108,-0.9737,-0.22325,1.291 -1.7385,1.4561,-1.4837,0.33672,-2.3363,0.91158,1.973,-1.2633,-1.3775,-0.35842,0.18449,-0.32983,0.26873,-0.23133,0.62412 -2.1283,-1.3805,0.77868,-0.087448,2.2989,1.3015,-0.033436,2.4228,0.41148,0.058686,0.8724,-2.5747,-1.1737,1.9345,0.34731 0.65617,1.4861,-1.9221,0.94006,-1.3346,1.2571,-1.8456,-0.60191,0.28205,0.17151,1.6782,-0.44827,0.63931,0.60015,-0.59779 2.2403,1.6957,-0.44599,-1.4937,-1.6073,-1.201,-2.0579,-0.79112,-0.32012,-0.41924,1.5811,-1.347,0.30409,0.46636,0.81079 -1.3274,-2.4075,1.1377,-0.70178,2.0213,1.6649,-2.5121,0.36137,-1.1399,1.9865,0.49353,-0.88305,-1.3531,2.1578,0.64546 -2.8904,-1.4246,-1.061,-0.30425,0.84115,1.2035,-2.0293,0.29628,0.27813,0.30119,1.0099,-0.04094,-1.7344,0.93864,-0.33139 2.2871,-2.2503,-1.7394,-1.2645,-2.2216,-0.4961,0.89906,2.6257,1.2328,0.20546,-0.12092,2.0618,0.42971,0.38383,-0.83302 -0.82385,-2.9535,0.10221,0.87616,2.4479,1.3506,-1.8993,1.5202,-0.9005,0.4798,-1.1593,-1.4484,0.33745,-0.049017,1.7391 -1.6825,-2.4921,2.1277,0.45379,1.1185,1.1776,-0.95935,-1.2171,-0.69158,0.65413,1.6315,-1.3992,-1.4581,-0.3392,0.16723 -2.1158,-0.27253,-2.7133,0.44333,0.56759,-1.319,-0.38147,0.37988,0.76462,1.1494,-0.47986,0.10883,0.30163,1.218,-0.18899 -2.9156,-2.1672,-0.75454,0.02659,2.6979,1.2272,-1.0947,0.94872,0.4404,-0.42912,-0.52413,-1.7069,-0.98134,1.0798,1.1237 -1.4651,-1.9553,-0.63132,-0.48838,1.272,-0.086504,-0.049146,2.9018,0.28136,0.53541,-0.95351,-2.2794,-0.11812,1.9413,-0.27416 2.7981,0.15615,0.92277,-1.375,1.921,-2.3747,-0.72497,-0.063272,0.041534,0.5188,2.9431,0.76721,1.0818,0.73729,-0.63206 0.74563,1.7318,0.59931,-1.3033,-1.1699,-1.2179,1.6244,2.1379,-1.509,0.73547,-2.3014,-1.1738,-0.40652,1.023,0.55806 0.42728,2.2983,0.55027,-0.64267,-2.4383,0.20988,-0.40803,-0.092821,-1.8617,-2.2279,-0.34071,-0.51023,-0.35849,-0.50148,0.93471 0.71162,3.2717,-2.7122,-1.3854,-0.70767,-0.3941,0.34886,0.49272,-0.30157,-0.49248,-1.066,-1.2494,0.98806,0.18911,0.23585 -2.4351,-2.7807,-0.12088,0.59359,2.1947,1.5443,-0.95323,1.0583,0.77098,0.82079,0.064964,-2.0095,-1.2734,1.5142,0.3401 -1.7208,-2.6381,0.19942,-1.344,0.343,1.2949,-1.1695,2.4765,-0.40667,0.77935,0.32966,-1.4543,0.76073,0.58101,-0.91677 -1.9609,-2.9371,-0.73106,1.7225,-0.14678,0.65134,-0.8026,-1.0754,-0.1617,0.89544,0.78671,-0.45116,-0.62743,-1.5076,-0.017144 -1.8288,-2.0381,-2.1166,0.21389,2.1989,0.62424,-0.89152,1.4382,-0.3868,-0.88604,-1.6808,-0.91535,-1.5787,1.1716,2.0734 2.5767,-1.9719,-0.75447,-2.0007,-0.96308,0.8487,-1.1154,1.7494,-2.0598,0.65372,2.2494,0.76207,2.795,-0.36661,0.68802 -1.3002,-0.30865,0.6777,1.7964,1.3539,2.2624,-0.046182,2.2738,0.30884,-0.55736,1.4994,-1.789,-0.38204,0.63748,0.94519 -2.3726,-0.23666,-0.86845,1.5487,-1.0248,-0.46496,1.7765,-1.7284,-1.1535,0.50133,1.2461,-0.040568,-0.5244,0.29371,-0.088434 -0.75833,1.3626,-1.0467,2.5507,-0.87908,0.69529,0.68595,0.22314,-0.11504,-0.84708,0.5665,-0.30157,-1.1139,0.53011,0.48335 3.0692,1.4833,1.5793,-0.33674,-1.2607,-1.62,0.86293,0.43977,-0.89805,0.38612,-2.2474,0.52794,0.47806,0.95425,-1.3924 -2.1044,2.8214,-0.32851,0.65918,0.14813,-0.28747,0.036931,2.9113,-0.10637,-0.60892,-0.63693,-0.4018,-0.43107,-0.53102,0.46264 1.7896,1.406,-1.8962,1.6784,-0.48259,-0.058562,0.028939,-1.3356,-0.57074,0.36649,-1.0163,-2.235,0.72783,0.26444,1.1203 3.2866,0.75523,-0.4828,1.1949,-0.13451,-1.6253,0.40522,-1.6735,0.33635,0.13012,-0.84451,-1.1255,0.93625,0.70251,-0.15564 4.6986,-2.6619,-0.091082,-1.3252,-0.17501,-1.3641,1.5514,-0.56344,0.25,0.72476,1.2083,1.1111,0.83025,1.1124,1.6708 4.3558,-0.66016,-1.3185,1.3436,-0.018023,-0.7253,1.8046,-1.2205,-0.87478,-2.8753,-0.81802,-0.78348,0.20186,-0.028553,-1.1962 -2.1997,0.027635,-3.0775,0.065472,0.16139,-1.1917,0.15003,1.1606,-0.11225,0.53509,-0.61003,-0.40331,-0.09859,1.189,0.26176 0.59309,1.2382,-2.1439,0.81139,0.80225,-0.93604,-1.6274,0.77792,0.91753,0.65025,2.7069,-0.66204,-0.87805,0.1689,-1.1965 -0.51876,0.48264,0.031989,2.7211,-0.54338,-1.5314,1.345,-0.18633,-0.87275,0.29645,1.0206,0.99709,-0.77225,1.638,0.22191 -0.45559,-0.033887,0.2133,0.21308,-1.8574,-2.0029,1.8247,-0.11417,-0.65843,2.0658,0.22821,0.24288,1.1246,1.3139,0.44501 -1.6298,1.3574,-0.39837,2.1224,-0.17182,-1.0577,0.51416,1.4185,0.41847,1.1001,0.20892,0.72286,-0.41753,1.0373,-0.048885 1.1792,-0.036048,-1.256,2.2744,1.9927,-2.4527,0.62834,2.0045,0.15151,-0.34452,-0.35921,-0.84023,0.77439,0.44906,-0.7202 0.40796,0.17379,0.62802,2.1359,2.7071,-0.77367,0.16898,3.0108,-0.8307,1.8543,-0.92521,0.078659,0.96372,0.15486,-0.66829 3.4231,-1.0043,-1.5076,1.1459,0.18202,0.026494,1.086,-2.3198,-0.38239,-1.2067,0.77495,-1.4152,1.5653,0.09613,1.6069 2.4755,-1.0226,-0.66227,2.3863,-1.0039,0.8221,-1.7186,-1.0271,0.068268,-0.1052,0.039355,-0.82848,0.23484,-0.21442,0.28656 1.0018,1.8402,-0.8748,2.8309,0.093166,-0.5492,0.27035,-0.66627,-0.58435,0.60558,-1.5211,-1.1066,0.8224,1.0184,0.54292 -0.31199,-0.15291,0.10197,3.5149,-0.85015,-0.47015,0.21622,-0.59677,0.12724,-1.0294,1.0377,0.47747,-0.11166,0.11177,0.45546 0.060722,0.20155,-0.77571,2.4748,1.5373,-0.45755,0.85962,2.5481,-0.96439,1.4679,-0.5258,-0.3724,-0.077668,-0.41384,-0.21931 3.3748,-0.77311,-0.71216,-2.5621,-0.85753,-1.9604,-0.42266,0.087979,0.67798,-0.13614,1.6305,-0.095505,0.60671,0.40385,1.4215 1.392,-1.2317,-3.2545,-0.77463,-0.67869,1.2913,2.5979,0.68536,0.31647,-2.145,0.35033,1.5789,1.1766,2.0916,0.63312 -0.96859,0.096341,-1.7024,2.7486,1.3892,1.2484,0.91953,1.753,-0.76095,0.89362,0.26262,-0.19221,-0.41205,-0.38677,0.26186 2.1614,-1.5413,-0.24475,1.7487,1.1451,0.93012,-2.4912,1.9203,0.92055,0.24545,1.1739,-0.47411,0.55341,0.50559,-1.0761 0.34277,-0.22936,1.6462,2.059,-1.4248,-1.9411,0.90788,-0.64475,-0.67065,0.14487,0.70053,0.73437,0.93337,0.90397,0.08679 0.14161,2.5383,0.095083,0.53062,-2.148,-0.9348,-0.86462,-0.84804,-0.16656,0.08714,-0.15228,0.71285,0.50226,0.4405,0.24327 -0.9481,1.7536,0.086801,2.3704,0.86428,0.30402,1.5257,0.21502,-2.5054,0.67743,0.16538,-0.12847,-0.070338,1.3144,1.0585 -2.0264,1.1616,-1.0343,1.2559,1.4669,0.55782,1.6883,1.813,-2.3581,0.44341,0.41876,-0.33669,-0.5688,0.71354,-0.34535 -0.54718,2.216,-1.3561,1.0221,-2.3316,-0.11656,-0.34417,-0.14112,0.14955,0.5766,-0.028844,0.87517,0.64334,-0.0209,0.43548 3.5557,-0.0026232,-0.73419,0.6038,-0.85328,-1.969,-0.11153,-2.0792,0.97878,-0.66985,-0.40502,-1.1676,0.13171,-0.044942,-0.0051521 0.87733,-0.30841,-0.10515,2.9323,-1.1328,0.49736,0.51857,-0.96449,-0.10007,-0.53146,0.51372,0.59192,1.257,0.095563,0.1563 0.52313,0.39165,1.1745,3.203,-0.19528,-1.5976,1.2209,-1.0426,-2.3945,-0.36655,0.82841,0.30451,0.12894,1.4058,0.66504 1.2119,-0.013992,-0.41153,-0.27974,-2.9962,0.95343,-1.1766,2.0406,1.3149,-1.0637,-0.36174,0.40977,-0.52492,0.31265,0.50374 0.39102,-0.40758,0.47217,3.3815,-0.01164,-0.15457,0.013371,-0.76688,-1.7304,-2.1484,1.8692,0.81952,0.4857,0.47459,0.38402 -1.2154,-0.096678,0.33193,2.0467,0.60236,-0.94385,1.7259,0.66472,-0.70345,-0.96772,1.3269,0.47407,-1.3963,1.5949,-0.86981 -1.8637,-0.44958,-0.50421,2.4236,1.4581,-1.0875,2.4122,0.091678,-1.7082,-0.44284,1.4594,0.063734,-0.51922,0.93383,-0.7101 0.69217,-0.11965,-0.20058,1.551,0.24933,0.04234,3.6066,-0.58544,-2.8461,1.3668,-1.7233,-1.2036,1.4643,0.47522,1.0174 -0.77845,-0.58762,0.66966,2.2564,1.4006,-1.2323,2.5819,-1.4686,-3.4618,1.1051,0.7013,-0.2782,1.0932,1.1103,0.17544 3.8991,-3.4747,-0.33591,0.65468,0.72575,1.1463,-0.17216,0.61208,-1.7299,2.4911,2.2008,0.49456,0.76498,0.78951,2.1309 -1.0506,0.57576,-0.72005,2.3374,0.61167,0.19622,2.4003,-0.66223,-2.4546,0.97196,0.28422,-0.44568,1.1283,0.84281,0.96193 0.54631,0.034259,0.94264,3.1334,-0.059061,-0.81928,1.337,-1.3387,-2.5174,-1.3011,0.4725,0.13919,1.2362,1.067,1.177 -1.1685,-2.6411,3.5593,-0.19327,-1.062,0.36534,-1.0093,2.1141,-1.2832,0.53524,1.5713,-0.70245,-0.083226,-0.56642,-1.112 0.025587,-0.78029,2.3688,-0.78931,-1.2571,1.1853,-0.49074,3.8756,-1.9511,0.68816,0.81593,-0.42278,2.4206,0.36537,-0.69285 -1.5356,-2.8213,2.3713,-1.9813,-0.50506,1.5433,-1.4911,2.26,-1.2314,1.219,0.51707,-1.4177,1.5566,0.10894,-1.2596 2.6316,-3.9074,0.2527,1.4423,-1.5931,1.1697,2.0108,2.0211,-0.72504,-0.60924,-0.67381,-0.031918,-2.1771,-0.20234,-0.83291 -1.0688,0.93216,-1.6008,2.4804,-1.2435,0.64956,0.3309,0.9311,0.31748,0.83183,0.65585,0.64397,-0.48774,0.21057,-0.16363 -2.408,-3.2566,0.50247,-1.2875,-0.40363,-0.10247,-1.6594,1.9888,0.091858,0.25477,-0.33837,-1.6624,0.47537,-1.3795,-0.8006 4.5719,-1.4014,-2.353,0.24563,0.81237,-0.35286,2.9606,-0.60991,0.26999,-0.88898,0.33145,-0.42609,0.58971,0.095078,0.54986 -2.8349,-2.4234,0.45068,-1.5561,-1.0811,-0.10869,-1.5558,-1.1755,-2.5119,0.17977,0.74263,-0.43965,0.016624,-1.6845,-0.86488 1.0825,-1.6942,3.399,0.50754,-2.875,-0.058377,-0.77581,0.8447,-1.0693,0.26293,0.085723,-0.26812,0.13025,-1.0116,-0.52071 -1.3134,0.4498,2.5291,0.02142,-2.0215,0.71335,-0.31415,0.11172,-2.0905,-1.3059,1.3751,0.23726,0.2572,-1.5897,-0.20015 -2.378,-2.0843,1.0486,-1.295,-1.4753,0.48965,-0.51715,-0.58175,-2.0054,0.07554,0.72598,-0.72164,0.69827,-2.3388,-0.91136 -2.4836,0.43823,0.46163,0.60113,-2.0483,-0.19495,0.18882,0.82441,-0.76187,-2.0015,1.8912,0.14311,-0.1714,-1.2208,-0.017674 -1.0554,-1.3031,2.4548,-0.68136,-2.1242,0.68326,0.27254,0.13371,-2.6258,-1.2703,0.82642,-0.7013,0.82643,-2.2847,-0.77002 -1.9376,-2.9697,1.518,-1.4385,-1.5194,0.90087,-1.349,1.4016,-1.0081,0.79882,0.64231,-0.88757,1.6519,-1.0848,-1.2715 -0.78264,-1.8341,2.7073,-0.45059,-2.106,1.5059,-0.94731,2.4849,-0.86275,0.8158,0.72041,-0.64669,1.6736,-0.63476,-0.59778 -2.4036,-2.4835,1.2699,-1.0443,-0.15554,0.53291,-1.3146,1.4015,0.14669,0.046091,1.3059,-1.254,0.20173,-1.0667,-1.5196 4.3502,-0.83473,1.4882,-1.1798,-0.48189,-2.4717,-0.75077,-0.80467,-0.53217,-0.94586,0.49094,-0.16035,1.5149,0.83011,-0.42402 -2.286,0.63073,-0.64114,2.0131,0.9139,-1.0393,0.99308,1.2554,-0.2854,0.68162,0.78323,0.26733,-2.1724,-0.30526,-0.14791 2.0524,3.3234,-0.81504,-2.6427,0.12423,-1.8542,-0.80508,0.34802,-0.77219,-0.071979,0.13029,-2.4229,0.13557,-0.071954,0.992 -0.7,1.4738,-0.53774,2.4446,-0.71495,0.91518,-1.4692,0.69665,0.65656,0.39846,1.0263,0.61005,-1.1403,1.0786,-0.74637 -0.60152,0.078802,1.7117,1.6445,-2.356,-1.522,0.71097,-0.51403,-0.22554,0.72749,0.40087,0.80544,-0.16509,-0.42087,0.47631 0.027636,-1.821,2.1798,0.46882,-1.2063,0.39202,0.78738,-1.0372,-0.051734,2.1492,0.84438,0.41476,-0.32344,-0.14147,-0.88976 -3.2568,-2.0902,0.50256,-1.9212,-1.1229,0.77114,-1.2343,-1.3264,-1.4846,0.1093,1.3494,-0.033388,-0.16329,-0.68932,-0.62555 -2.5794,-3.0908,0.46209,0.24188,0.7164,-0.082993,-1.2897,-0.37824,0.54905,1.5115,0.38439,-0.21821,-1.1295,-0.67877,-0.17606 -1.1493,-1.6733,-1.01,-0.059299,1.7681,-0.14091,-1.8564,2.4843,-0.23999,0.77477,-0.12138,0.21068,-0.27867,0.57659,2.3907 5.1488,-2.3893,2.3769,1.2771,-0.81591,1.6559,-0.76828,0.027412,-2.2339,-0.38064,-1.3288,-1.0603,-1.5518,-0.050365,0.10321 -3.0707,-2.3315,-1.2581,0.21598,-1.0874,-1.3803,-0.87332,-0.076311,0.76977,-0.0068957,0.84508,-0.58152,-1.4444,-0.85449,-1.087 3.9642,-2.9143,-2.1501,-0.37515,-0.77982,0.56673,0.88817,0.21467,0.69307,0.33815,0.15301,-0.22625,-1.3584,-0.50965,1.6378 4.1231,-0.83243,0.94268,1.5974,0.39032,-1.1333,-0.24565,-1.9832,-0.99394,-1.0178,-0.10748,-0.83523,0.15942,1.3308,1.1799 -1.5978,-0.31027,1.4504,0.43855,-1.8624,-2.3776,0.98875,-0.28768,-0.008978,-0.13241,0.60382,0.52753,1.2694,-0.1382,-0.30854 -0.83814,-2.4467,-1.6599,1.1831,-0.45864,-0.80039,-2.4449,-1.0271,0.23405,0.64564,-0.9641,2.1117,-0.087659,-1.429,1.4841 -0.74021,-3.2376,-0.70868,-0.10263,0.03893,0.31009,-2.9619,-0.22326,0.41364,1.5757,-1.4394,1.7016,0.18095,-1.5287,0.73942 0.26523,-1.2754,-0.92846,0.2756,-2.6068,1.4719,0.14518,0.45983,1.0337,0.88447,-1.3992,-0.59371,0.0044408,-0.35994,-0.53215 -1.5941,-0.72214,-2.806,0.44222,-0.24017,-0.80108,-1.7035,1.6346,-0.045616,-0.49369,-0.059188,1.0349,-1.3988,-1.3898,0.81637 -3.2547,-0.93497,0.75086,-0.16443,-2.1492,-0.4882,-0.12634,-0.57019,-0.21207,0.15294,1.7404,0.40037,-0.18563,-0.91742,-0.64586 -3.1337,-1.3289,-1.6031,0.35213,-1.0201,-1.1956,0.34979,-0.56639,0.70574,0.047873,1.0542,-0.024262,-1.1153,0.094749,-1.6527 3.1583,-2.3039,-2.8022,-1.174,-1.4036,0.55036,2.1012,2.7575,0.39202,0.34497,-0.49023,2.4011,0.4196,-0.36713,-0.88 3.771,-0.51692,-0.77719,-2.2562,-1.6011,-1.0958,-0.19102,-0.86832,0.96189,-0.97236,0.97824,-0.47468,1.1398,0.95156,0.53787 -0.41114,-2.7796,1.0125,-0.35455,-1.5313,0.38923,-1.083,-1.957,-0.19142,2.0219,0.49599,-0.44131,-1.0473,0.43729,0.17469 4.4701,-2.1397,-0.042191,0.76717,-1.7587,1.1571,-0.84221,3.0999,0.16437,0.17572,-2.172,0.016108,-0.68505,0.84661,-1.9661 -1.8296,0.87882,-3.2119,0.84851,-1.4974,2.031,1.1692,0.76625,0.092843,0.64618,-0.2708,-0.38633,0.083415,-0.47117,-0.45244 2.3311,0.11453,-0.33656,0.40289,-1.9895,-0.93901,-0.24162,0.2525,1.9539,-2.2702,-1.2247,0.618,-0.063121,0.11498,-1.6081 -2.2789,1.1002,-0.60666,0.30286,-2.1756,-0.24232,1.222,-0.65096,-0.75737,-0.24613,1.1041,0.72307,1.2428,0.026229,-0.012174 3.4545,-0.37138,-0.54649,0.22959,-1.3972,-0.95768,-0.7997,-1.3256,1.1186,-0.94927,0.32316,-0.0063573,1.0846,0.12794,-0.29751 2.7641,0.16223,-0.17549,-0.42336,-2.9583,0.96844,-1.8929,0.57025,0.50123,-1.0584,-0.92527,-0.055089,-0.047887,-0.30614,-0.60161 1.7063,-0.51926,0.30175,0.60897,-0.7682,0.40434,-0.41513,1.8647,1.5842,-1.1047,-0.72277,0.59494,0.28645,0.23884,0.39573 2.6545,1.5192,0.03923,-0.43086,-1.5084,-2.4074,0.38924,-0.42245,1.3172,-1.4552,-1.7244,-0.70776,-0.2883,1.0717,-0.8339 -0.4205,0.85434,0.6345,1.4237,-2.8021,0.058169,-1.1183,-0.011887,0.66211,-0.56604,0.89709,1.0759,-0.49332,0.0068576,0.73396 0.0019522,1.1553,1.0233,0.53597,-2.6004,0.16665,-1.1377,-0.32744,-0.83969,-1.6519,0.85641,0.9397,1.1574,-0.92467,0.41815 0.54377,-0.38929,0.87275,1.6018,-2.5134,-0.96126,0.87584,-0.61618,1.0657,-1.1672,-0.53611,0.46171,-0.35942,-0.74248,0.79279 2.6064,-1.6767,-1.5401,-1.3444,-2.1907,-0.54445,0.38132,0.43194,0.79246,0.064403,1.1934,0.7895,0.74414,0.43737,2.1821 4.3328,-1.3831,-0.94279,-0.12604,-0.85659,1.7377,-0.86602,0.6367,0.20301,1.6638,-0.20552,0.14466,-0.5583,0.50023,-1.7378 -0.14643,0.48157,-2.2169,2.3896,0.39353,1.7277,-0.65955,1.5142,-0.10983,-0.8529,0.4667,-1.0102,-0.97582,0.80301,-0.19835 4.7047,-0.71135,0.57796,-2.7562,-0.89167,-1.2236,-0.74552,3.3389,-1.2051,-1.4218,-0.10048,0.30499,0.052786,-0.19101,-1.1511 1.8152,0.81065,0.43133,0.48074,-2.1397,-0.52755,-2.1763,-0.83365,0.61481,-0.89479,0.18897,0.42448,1.0219,0.18583,-0.34472 0.72219,3.2105,-0.41112,-0.020438,-1.3789,-0.75148,0.082994,0.10082,-1.252,-0.9204,-1.8055,-1.2821,-0.8425,0.93949,0.42274 -2.8659,-0.15185,-0.42698,-0.28346,-1.653,0.39621,0.84205,-1.6261,-1.0394,-0.8784,1.338,-0.5646,1.0836,-1.0744,-0.32743 3.2373,0.79132,-2.0067,-0.71182,-0.40449,-1.6205,0.86067,0.98661,1.6919,-0.61689,-0.72771,-0.60139,0.72192,1.2144,-1.8488 1.5006,2.0652,0.058302,-0.16794,-1.7698,-1.405,-0.15137,-1.1191,0.37777,-0.55751,-1.5019,-0.080481,0.71324,0.00032656,0.062365 -1.6303,-0.56152,-0.53529,0.33541,-2.1944,1.0703,-0.51333,0.42693,1.072,-0.10925,1.8314,-0.23031,0.31705,-0.32058,-0.40274 -2.4143,2.0605,-0.64398,1.0573,-0.67407,-0.6597,1.2299,1.5998,-0.81723,-0.052404,0.36427,1.3918,-1.5154,-0.29126,-0.70418 1.7967,-1.6175,3.0082,1.8638,-0.28319,-1.0038,-2.4118,0.71491,-1.4045,-0.41299,1.2377,0.38895,-0.54594,-0.067691,-0.61287 1.9619,1.7423,-0.7073,1.4615,0.3012,-1.2523,0.87616,-0.89804,0.21888,0.081419,-2.5,-1.4141,0.46284,-0.26737,-0.12714 -0.17591,-1.3697,-0.81968,2.4494,0.82091,1.3608,-0.35511,1.5156,-0.32943,-2.1932,0.19472,-0.73947,-0.52923,-0.51232,0.66152 0.26735,1.3329,-1.141,0.75204,-1.1616,0.42535,-0.53888,1.111,-0.46302,1.1835,-0.82452,0.27281,1.5721,-0.19135,-0.048932 0.081063,2.7165,-1.1989,1.0954,-1.553,-0.45847,-1.0622,-0.31133,0.04579,0.32832,-0.40277,0.02828,0.3805,1.3784,-0.16821 0.77513,-1.5982,2.8975,2.521,-0.49201,-1.0146,-0.52136,-0.01801,-1.4178,-0.031381,1.7358,1.1427,-0.81081,0.14424,0.27942 0.34814,1.9493,-0.24104,-0.73133,-1.4202,-2.2114,0.20602,1.5468,-0.4488,-1.3153,-1.3698,0.40135,-0.77785,0.40112,-0.26773 1.3786,-0.56795,3.7135,-0.0032337,-2.8526,-0.97554,0.031643,-0.14302,-0.1508,-0.4465,-0.34796,0.25938,-0.50412,-0.45588,0.39585 -0.51894,2.0705,1.9048,1.2647,-1.0909,-2.2464,-0.058641,-0.79221,-0.92156,0.45183,-0.42072,0.68447,-0.24047,0.75085,0.61442 0.60852,0.54264,2.5751,1.652,-0.85241,-1.6587,-1.7688,0.051889,-0.30662,-0.71577,1.2901,1.0285,-0.47589,0.28556,-0.17679 3.4979,1.4695,-1.8771,-2.1933,0.51485,-1.4883,0.87075,2.3908,0.10473,-0.085721,-0.48308,-0.39575,1.3169,0.32712,-2.0571 1.2873,0.21989,3.7003,0.12071,-0.039941,-2.32,-1.0228,-0.25933,-0.96871,-0.97971,1.216,0.30124,-0.10804,1.1893,-0.58539 0.16141,1.8917,2.7046,0.21238,1.0892,-1.9881,-1.2889,-0.24299,-0.81572,-0.82382,1.683,0.091962,-0.70531,1.5681,-0.39679 2.1691,0.51843,-0.44747,2.4874,-0.031279,-0.87286,-0.061306,-2.1222,-0.28149,-1.5863,-1.3713,-0.98999,0.79667,0.45413,0.93317 1.3367,-0.1935,-1.963,1.1405,0.99128,0.094082,-0.8824,0.67954,0.29303,-0.34448,3.2128,-0.56004,-1.2447,0.31432,-0.62899 1.3124,-2.0746,3.1246,2.407,-1.3187,1.1939,-0.65955,-0.29514,-0.89115,0.42774,0.20815,-0.54281,-0.76506,-0.64922,1.4148 3.0709,0.67939,0.20084,0.20715,-1.3421,-0.29822,-2.2876,0.059142,0.16596,1.308,0.46119,-0.39091,0.0087479,1.2444,0.42735 0.38778,-1.5531,4.3053,-0.1936,-2.0668,-0.65988,-0.52356,0.25937,-0.97115,0.20929,0.5012,-0.13082,-1.3078,-0.34388,0.20722 3.5304,-0.72064,-2.5412,0.35887,0.334,-1.0756,2.0307,-0.7742,1.5871,0.21826,0.083062,-0.56906,-0.43649,0.14544,0.95661 -1.056,1.2775,1.5664,1.9593,-0.60454,-1.78,-0.49813,0.52512,-0.1253,-0.86711,1.1848,1.5185,-0.69122,0.49566,-0.69739 -1.5669,1.7907,2.0572,-0.74278,-0.097285,-0.94504,1.1455,0.31629,-2.2146,0.49374,0.57867,0.4427,0.80822,0.019419,0.17399 2.3776,-2.0728,1.1167,2.3621,0.74245,1.1649,-2.2687,-0.18181,-1.5221,-1.9786,1.6551,-0.33407,1.2227,-0.35091,-0.16455 2.3262,-0.01124,0.97491,0.82617,-0.4759,-0.039214,-3.271,0.94505,0.068399,0.93732,1.7324,-0.46196,-0.084172,1.4196,-0.2385 3.4987,-0.43565,-0.84095,-2.0923,-0.94403,-1.607,-0.16457,0.18207,-0.9899,-1.8972,1.6618,-0.5426,2.3916,0.10205,0.13966 -3.1272,1.413,0.12427,0.6846,0.007347,-0.93119,1.3081,1.241,-0.52342,0.97078,0.55047,-0.6076,-0.11497,0.62648,-0.11253 1.8249,0.72133,-1.1773,0.73026,1.0359,-2.609,0.76446,-0.11952,-0.70303,0.35796,1.0896,-1.0244,0.85713,1.5037,0.90727 0.37664,-0.47481,3.6881,0.31666,-1.3735,1.1887,-1.0056,0.80011,0.40627,0.42294,0.71298,0.84757,0.069826,-0.23513,-0.81082 0.88972,-0.27629,3.6637,0.21215,-1.6142,-1.642,-0.40689,0.080003,-1.5905,-0.56348,0.93285,1.2396,0.45129,0.48085,-0.48166 2.0556,-1.8843,-0.089163,2.2743,0.79924,0.52358,0.37422,-0.35963,-0.77843,-1.2577,0.59976,0.74047,2.2015,-0.35094,-0.45019 -0.61353,-1.2081,3.171,0.87417,-1.9572,-0.72381,-1.1833,0.53243,-1.1214,-0.43069,1.374,0.71977,-0.647,-0.64316,0.0067118 -0.15032,0.8883,-0.61258,2.1966,0.56097,-2.034,0.09307,1.5019,0.78307,-1.7824,-0.34299,-0.26708,-1.0784,0.48006,-0.44715 -0.23853,1.5614,0.2029,1.0142,-2.3246,0.0833,0.20907,-0.35922,-0.31612,-0.80813,0.29731,1.0334,1.2075,-0.087267,0.22341 4.7609,-1.4153,0.44449,-1.8315,-1.4428,-0.74392,-1.3424,0.63616,0.18678,0.8617,1.1464,-0.85366,-0.13285,0.83404,1.292 -1.5721,-2.1161,-1.0014,0.49984,-2.1405,-0.42797,-0.83189,-0.15626,-0.10935,-0.17186,0.7638,0.29191,0.63507,-1.2584,-0.71954 -1.6882,2.4433,-0.50009,0.41283,-0.59529,-1.3687,0.15683,2.654,-0.068777,-0.91547,-0.89308,-0.29338,0.49655,-0.30288,0.88801 -0.75157,-2.8357,0.17123,-0.30366,-2.1883,-1.3615,-0.58971,-1.8598,0.23545,0.3328,-0.4632,0.029455,0.59168,-0.9411,-0.50887 -0.83046,-3.1978,-2.1784,1.0496,-0.96689,0.041868,-1.4893,1.3326,0.28277,0.45976,-0.18304,-0.75297,-0.96953,-0.10325,-0.32204 0.91816,1.6046,0.17957,1.0502,-2.4519,-1.024,0.43931,0.062234,0.7024,0.22059,-1.3989,0.40748,0.28519,0.31152,0.82917 0.51183,1.7973,-0.16421,0.16134,2.0237,-2.1904,-0.9624,2.2363,0.94318,0.037269,0.13141,-0.64641,0.89551,0.81114,-1.3019 -1.45,-2.5021,-1.6117,2.0105,-0.67337,-1.4918,0.54185,-0.46072,-0.56533,-1.0247,0.69375,-0.37026,-1.3536,-1.0778,-0.99582 1.0526,2.7497,0.81875,0.071698,-1.5747,-2.0518,-1.2146,-1.0098,-0.24045,-0.7495,-0.047839,-0.094011,0.71121,1.3678,0.097734 -0.84783,-1.3947,-3.4239,1.5616,-0.11759,-1.8167,0.17589,-0.82763,-1.5347,-0.68247,-0.67676,1.0945,-0.54655,0.0727,-0.0842 1.5474,1.5022,0.058397,-0.23572,0.20631,-2.3366,-0.61928,1.3572,0.075865,0.34821,-0.43396,-0.31651,2.8268,0.57557,-1.1816 -0.9502,-3.4564,-0.26147,-0.23889,-2.0182,0.082317,-1.6789,0.62331,0.38,1.1101,-0.49159,-0.92291,0.51127,-0.47916,-0.53841 -0.56876,-3.0179,1.6482,-0.34354,-2.6402,0.78987,-1.015,0.38167,-0.07979,0.93436,0.10502,-0.63504,0.96824,-0.86629,-0.70786 -0.60763,-2.6276,-2.2586,0.57898,-1.2936,-1.2096,-1.9302,0.35703,-0.16417,0.3023,-0.8034,1.4351,-0.32885,-1.5314,0.10982 -0.59051,-3.0305,-2.6045,0.75177,0.18149,0.70786,-1.7957,1.3449,-0.65013,0.045144,-1.4299,-0.61161,-1.7358,-0.33761,1.1178 -0.029234,-1.6598,-2.7996,1.042,-1.5602,-0.29645,-1.3687,0.66425,0.45309,0.059646,-0.49537,1.3818,-1.0822,-0.91456,0.19196 4.1356,0.41235,0.15739,-2.5973,0.9089,-3.3407,1.6961,1.6878,-0.52876,-0.93694,-0.40455,-0.025703,0.87866,0.65991,-0.96374 -0.63385,-3.0115,-2.2084,1.1273,-0.78444,-0.51436,-1.6907,1.2918,0.14216,0.24563,-0.245,-0.37832,-1.1,-0.70995,-0.18968 4.1544,-0.37025,-0.053183,-2.6349,-1.7471,-1.0143,-1.576,1.9747,0.27641,-1.5781,0.21236,-0.21563,-1.13,0.47143,-0.56212 -1.4663,-3.6397,-1.3299,0.1732,-0.84587,-0.38494,-2.2699,0.74791,-0.072216,0.38212,0.056934,0.41163,0.044183,-0.64015,-0.32446 -1.7717,0.44293,-1.726,1.9011,0.012508,-1.0567,2.1883,0.57556,-0.67329,0.97582,-0.19174,-0.76317,-0.074667,1.4868,0.10981 3.2331,1.0245,1.3716,-2.1642,0.067754,-3.1029,1.8676,2.268,-1.7722,-1.3912,-1.4116,0.15352,0.20892,1.5679,-0.77707 2.4256,0.4147,0.3796,0.7149,0.63798,-2.7453,-1.0901,-1.8133,-0.20068,-0.43525,0.32233,-0.69876,0.31687,1.1082,0.89671 1.1803,0.98698,1.6048,1.8628,-0.10389,-1.8908,2.2929,-0.092006,-1.1844,0.9693,-1.5056,-0.98042,0.0487,0.91348,1.1327 0.71644,-4.2065,2.9697,-0.046458,0.066998,1.6591,0.061783,0.49745,-0.26213,2.4925,-0.6299,-1.0314,0.029736,-0.28,-1.0304 0.99295,1.7899,0.57114,0.97219,-1.4433,-1.4808,1.9887,0.35144,-0.77246,1.3339,-2.4349,-0.88365,-0.404,0.98331,1.3416 2.434,-2.1201,3.0271,1.9218,2.1825,1.3468,-2.3253,-0.026735,-2.0001,-0.53561,1.409,-0.31221,-0.96893,-0.03044,0.3276 1.9413,-0.08494,-2.8822,0.53073,-0.33133,-0.72217,1.5591,0.83547,2.0977,1.0895,-0.25416,0.31852,-0.10975,0.39552,0.11531 2.0517,1.2818,-0.55737,2.0493,-0.51567,-0.77457,0.85173,-0.42944,0.13433,0.44337,-2.2877,-0.69509,0.93427,0.22754,0.019114 -0.862,2.3308,-0.47464,1.6708,0.20127,-0.85,-1.1697,1.6187,1.0629,-0.37394,-0.75955,-0.24116,-0.09569,0.15245,0.53351 0.44873,1.192,-1.8201,1.883,2.8191,0.038207,-1.2081,0.97711,0.17786,0.91494,0.77957,-1.4921,0.37479,-0.68865,-0.41557 3.2663,-0.55572,2.4927,0.52871,-2.7711,-1.4771,0.33495,0.16848,-0.042315,-0.91416,-1.1549,0.22098,-1.3993,0.054176,0.012298 1.4973,-0.030592,-3.1733,0.92982,-0.8913,1.1437,1.1755,-0.63795,0.50872,-0.049123,0.19926,-0.68384,0.83269,-0.16462,2.0531 -0.38068,1.3437,1.7086,-1.1003,-1.9118,-1.4817,2.0262,-0.34241,-1.2271,1.0769,-1.7952,-0.24761,0.1039,0.77711,0.78247 2.2368,0.37909,0.43895,2.3775,-0.75913,-0.86679,2.3392,-0.95736,-1.1952,-0.017424,-2.325,-0.42023,0.17408,0.5357,0.50142 0.27944,1.3576,1.0442,1.2237,-1.2818,-1.25,1.5806,-0.12921,-0.94516,2.0411,-1.3545,-0.14197,0.18311,1.029,0.93463 1.8191,0.88456,0.91826,-0.43998,-2.5513,-1.4469,0.043548,-0.077263,0.38005,-2.838,-1.318,0.24342,0.59928,-0.46754,-1.0116 1.7348,0.69756,-0.3741,1.9211,3.1683,0.56368,-0.14201,0.82667,-1.0901,1.6654,-0.34753,-0.23137,1.6411,-0.78639,-1.6611 -1.8191,1.5528,0.77736,-1.1968,-1.7371,-0.65348,1.454,-0.31682,-2.1048,0.55866,-0.87625,-0.45682,0.45823,0.69973,1.3929 -0.66893,0.66298,0.6385,2.1767,-0.7136,0.56309,-1.4876,0.52562,0.064342,0.18373,1.6556,0.7666,-1.9276,0.56201,-0.28315 3.5247,0.52278,-2.1763,-1.9664,-1.0918,-1.8751,1.176,0.71194,0.53456,1.445,0.90765,-0.33315,-0.016923,-0.93197,1.4495 0.037158,2.2801,0.24663,0.43356,-1.5207,-0.4831,-0.1105,1.2126,-0.021323,1.3686,-2.2702,-0.018029,1.0325,-0.014618,0.72708 -0.51443,3.3504,-0.32208,0.23445,-2.0463,-0.98944,0.13477,0.65493,-0.94734,0.31074,-1.4127,-0.040473,0.083566,1.0528,0.89544 0.35427,1.1587,1.4303,1.3585,-1.9366,-1.3901,1.5546,-0.28992,-0.79084,2.0284,-0.46186,0.097204,0.089128,0.57253,0.97728 2.8932,-0.88506,1.8041,2.3907,0.061726,-0.87094,-1.4483,-0.82954,-0.7933,-0.687,1.6906,1.1742,0.57723,0.3623,-0.60807 -0.84947,-0.33602,0.060044,0.14851,-1.254,-2.0618,1.8817,-1.2734,-1.1538,2.5467,-0.64606,-0.29374,0.7232,0.81558,0.3176 -0.2013,0.025675,1.8069,1.133,-1.2754,-1.9946,1.4805,-1.3789,-0.9615,1.229,-0.19034,0.44985,0.063294,1.0224,0.67258 0.31323,-1.7308,2.1722,3.0661,0.47716,2.3569,-0.98269,0.97141,-1.0549,-0.095416,1.8086,-0.077313,-1.3117,0.71451,0.66615 1.1882,-2.8045,-1.7111,-0.69144,2.0144,-0.35778,0.87613,0.98966,-1.2558,-2.756,1.3187,-0.14621,2.1232,-0.8836,1.9007 3.0237,-1.0742,2.5238,0.40631,-2.5901,0.15346,-1.311,1.6172,0.12586,0.1543,-2.0419,-0.21817,-1.1276,-0.34433,0.33516 2.972,1.0537,-1.4835,-1.2208,-1.3536,-1.928,-0.39571,-0.72146,1.1077,0.7732,1.0815,-1.2365,0.32534,-0.21227,1.0939 3.8015,-1.5556,0.87588,1.048,-1.8925,2.0353,0.96533,1.8008,-0.494,1.1231,-1.7083,-1.0396,-1.5596,1.2071,-0.19566 -2.0972,-1.1681,-0.48703,-0.82963,2.3622,-2.1808,1.1406,2.9493,-1.5969,1.8821,-0.52089,-0.87132,1.0728,0.065223,-0.27793 -2.5403,-0.41894,-0.87694,1.1712,0.21103,0.53053,1.5781,-0.63029,0.22636,-0.62693,0.90918,-0.4351,-2.025,-0.61164,-0.6444 -0.44523,0.16548,1.0491,2.9493,-1.5431,-0.13498,0.0054795,-1.1277,-0.21218,-0.35044,1.2122,0.81363,-1.3686,0.59011,0.729 1.2266,1.5869,-2.2734,1.0524,-1.1533,-0.40556,-0.73031,-1.3499,0.7138,0.45401,0.35527,-1.258,0.43057,1.2702,0.49759 2.7953,-2.3647,2.3999,2.8189,-0.35824,2.5511,-1.008,0.47374,-1.9953,0.26057,-0.20153,-0.093496,0.47752,-0.45414,0.52687 4.463,-4.2643,-1.5797,0.14622,-0.35181,1.3248,1.6041,-0.16737,-1.1869,-1.7627,-0.15751,-0.45074,0.75413,-0.58997,0.95338 5.2609,-2.7939,0.24317,0.60378,-1.2057,0.5948,-0.67405,2.1525,0.15157,-0.14066,-1.7394,-0.75718,-1.3706,0.12964,-1.2085 -0.35255,0.52606,-0.35032,2.6623,-1.807,-1.3233,-0.50774,0.46211,1.0093,-1.2091,0.47449,0.86557,-0.12884,0.38356,-0.20926 4.9127,-2.8697,-0.66602,0.31595,-0.44933,0.95842,-0.21442,1.5409,-0.69194,1.4999,-1.0918,-0.66295,0.73527,0.42073,-0.54366 1.2227,-1.5377,1.9146,2.8997,-0.97473,0.25368,0.47925,-0.2476,-0.71453,-0.5652,0.59076,1.3909,0.6538,-1.1716,-0.55821 0.84489,-3.365,0.65599,-1.0654,-2.6527,-1.2189,1.7243,0.46,0.18014,0.46096,-0.85907,-0.68193,-1.4511,-1.3105,-1.8042 1.6099,-2.5306,2.0427,1.2412,-2.3808,-0.2797,0.87829,-0.19796,0.037068,0.71335,-0.13729,-1.2138,-0.99121,-0.62874,0.28431 -1.5093,-1.3787,0.44015,-1.9706,0.96999,-0.49794,-1.1365,-2.7094,-1.6896,0.91375,0.78359,1.2749,-1.0601,0.5571,0.45828 -0.48042,1.7517,-0.53158,1.2042,-0.91003,-1.5864,-0.07601,2.4939,0.13145,-0.42625,-0.77458,-0.25595,0.49917,0.75188,0.3047 -0.1278,-1.8311,2.8321,0.8139,-2.5329,0.11444,-0.44787,-0.46227,-0.11687,1.4743,0.80815,0.014816,-0.73518,-1.0893,0.22469 2.8838,0.91461,-0.7931,0.45986,-0.49317,-2.4946,0.56665,-1.3871,1.2591,-0.28691,-1.2445,-1.1375,-0.58383,-0.12743,0.15538 3.2684,-2.5936,1.9734,1.7353,-1.7483,0.63841,-0.18762,0.56441,-0.91944,0.29018,-1.604,-1.1881,-1.3513,-0.43421,0.35688 2.2413,2.3271,-0.75217,-1.0025,-1.9533,-1.7932,-1.2338,-1.0712,0.21002,0.73039,-0.33059,-1.006,0.12549,-0.7869,-0.20192 -0.16954,1.9506,0.57521,0.8226,-2.3303,-0.85099,0.27661,0.12032,-0.14513,0.7087,-0.51042,0.57064,-0.19302,1.436,1.1574 -0.22242,-4.018,1.5954,-1.1973,-2.4293,-0.61597,-0.39226,-1.0709,-0.6858,0.19863,-1.6075,-0.89133,-0.68246,-1.0633,-0.72534 -1.1193,-1.748,0.35766,2.4392,-1.717,-0.63889,-0.019918,-0.091749,0.88175,-0.1632,1.3668,-0.055058,-0.06203,-0.96408,-0.23123 -0.85641,-2.3631,-3.2645,1.5497,-0.89672,-0.19251,-0.28078,-1.5137,-1.1565,-0.56551,-1.3653,0.99099,0.50676,-1.3885,-0.41859 -0.73187,-3.4691,0.25413,0.27026,-1.938,-0.1579,-0.70206,-1.2351,0.4554,0.97748,-0.52658,-0.77427,0.45797,-1.2422,-0.71391 1.2433,-2.4232,-1.9137,1.5012,-1.1119,-0.054957,0.3242,-0.48617,0.25897,-0.13839,-1.2997,0.51956,-0.61843,-2.0609,-1.0689 0.55876,-2.8041,0.58873,1.5054,-0.10783,2.5828,-0.40711,0.64745,0.15087,1.2484,0.081986,-1.4217,1.5353,-0.4177,-0.066714 -1.4922,-1.0664,0.053275,0.75916,-0.89285,-0.91199,1.02,0.55466,1.2846,-0.014854,0.71525,-0.017835,0.93032,-0.73532,-0.71741 -0.56109,2.1303,-1.0709,0.47854,-1.4014,0.33376,-0.94433,1.6114,-0.10068,0.77789,-0.34846,0.42116,0.25661,1.1851,0.061343 -0.74232,1.8148,-0.02799,1.2366,-0.78464,-0.030835,-0.47289,0.6212,1.622,-0.37906,-0.41078,0.65554,1.2858,-0.70651,1.0792 -0.4508,-1.6576,2.5591,1.0123,-1.6672,-1.2882,0.17444,1.2883,1.1017,-0.47686,1.0197,0.42546,0.63206,-0.92316,-0.19876 0.5245,-0.044323,-2.0451,1.9258,1.0702,0.35023,-0.40296,-0.54081,-0.61857,-0.087543,1.4508,0.58352,0.16452,1.3676,0.41354 2.7435,-0.54262,0.18248,-0.017964,-0.72942,2.1468,-2.2333,0.97149,-1.6316,0.40913,1.049,0.5007,0.97647,1.1481,-1.0166 -1.5164,-2.2633,-1.2685,-0.65223,-2.0693,-1.7286,-1.3731,-1.3889,-0.84765,0.32559,-0.79461,0.56426,0.71214,-1.0019,-0.21644 1.4281,1.6164,1.8753,1.0198,-1.3207,-1.4871,-2.0728,-1.4025,-0.23421,-0.52108,0.84314,0.14111,-0.50176,0.91083,0.011175 -2.1111,1.5396,-0.72203,0.9929,-1.4664,1.5437,0.71486,-0.099521,-0.62272,-1.207,1.7139,0.32321,0.57826,-1.1827,0.15295 0.1854,-2.9534,-1.2148,-0.05102,-1.7077,-0.33078,-1.7184,-0.81975,0.14528,1.1635,-2.196,0.47826,-0.78798,-1.3527,0.67717 2.5768,0.42997,-2.0087,1.0918,0.20411,-0.85316,0.76903,-2.0829,0.38321,0.24269,0.012651,-1.758,0.49512,-0.069519,2.0226 -3.065,-3.7331,1.2366,-0.51746,0.72058,-0.15567,-2.2217,1.1026,0.077249,0.67847,0.16494,-1.3184,-1.8584,-0.65679,-0.030399 -1.7355,0.26878,-0.82751,1.7261,-1.0374,-1.7078,1.7736,0.68999,1.3847,-0.28861,-0.10935,-0.50803,-0.98429,-0.011188,0.58495 -2.0415,-3.6762,-1.0835,0.51414,1.0419,-0.40168,-1.2633,0.52346,0.15156,-0.4074,-0.31146,-1.3987,-2.6809,-1.0253,-0.68636 0.86308,-1.5276,2.7673,1.179,0.9129,1.6061,-1.357,0.55454,-2.5872,-0.54003,1.2971,-0.61873,-0.38242,0.2265,1.0787 -2.5572,-3.6361,-0.21021,-0.49431,1.3171,0.24563,-3.2435,1.1139,0.3501,1.1266,-0.53294,-0.80259,-1.7147,0.48671,0.8637 -1.3229,-3.7753,0.036818,0.023532,0.94179,0.41554,-2.8354,0.3447,0.41206,2.1857,-0.8142,0.36946,-0.19594,-0.08234,0.42076 -2.122,-2.8861,-0.077037,0.23213,-0.20209,-1.6558,-1.0311,-0.62985,0.51971,1.0326,1.1072,0.21315,-0.50366,-0.61454,-1.1112 2.0232,-0.51354,-0.4091,0.54639,-2.381,2.1855,-0.37124,0.93562,0.88711,0.58565,-1.0558,0.44535,0.072737,-0.37043,-0.15943 -1.4582,-4.4346,-0.43468,0.69562,0.30695,-1.3309,-2.4133,0.71866,-0.94628,0.57899,0.50378,0.52854,-0.64327,-1.0959,-0.71933 -2.2012,-3.2992,-1.5568,-0.94679,0.021956,-1.1791,-2.7482,1.3851,-0.21071,-0.13388,-0.32273,0.22825,-1.5873,-0.96017,0.12132 -1.6651,-2.8806,-0.50404,0.74572,-0.68051,-0.21753,-0.7123,1.6541,0.78174,0.26282,1.2679,-1.311,-0.77658,-0.71744,-1.4047 -1.7606,-4.4539,-0.68833,0.24068,0.65417,-0.68008,-1.5587,1.5225,-0.38817,-0.012909,-0.2532,-1.4743,-1.7543,-1.043,-0.79125 2.0283,2.0374,0.22969,-2.4343,1.1961,-0.45299,-0.87864,0.57493,-0.16611,0.54863,0.51603,-0.28127,2.6054,0.34845,-0.7232 -0.83971,-3.7536,1.5075,1.1745,-0.56307,0.88027,-0.94148,0.69991,0.5394,2.1322,0.39087,-1.3468,0.21669,-0.45043,-0.87263 -2.081,-0.34656,1.5797,0.14557,-1.6978,1.233,-0.66766,1.6807,0.699,0.92691,1.6198,-0.14991,-0.44921,0.059192,0.040636 -1.6611,-2.9085,-1.024,0.78833,-0.52294,0.10295,-0.50113,1.3734,0.87415,0.14149,0.33447,-1.5319,-1.8399,-0.80122,-1.0659 -1.9127,-3.3898,0.19259,0.46458,-0.31785,0.2027,-1.0031,1.6385,1.2157,-0.31511,0.67404,-1.9996,-1.4709,-0.48264,-0.86706 -0.083386,0.43928,-0.77156,2.4383,-1.7668,0.45983,0.37301,-1.2414,-1.3277,-0.21639,0.80061,0.21362,-0.51982,0.098632,0.91492 -2.3387,-2.7146,-1.3601,0.41811,0.32281,-1.5061,-0.57825,-0.039803,0.52227,-0.91801,-0.0018306,-0.21845,-1.3058,-0.95397,-1.1903 -0.279,0.76889,-1.1974,2.3471,0.24804,-1.1336,1.6881,2.6036,-0.89555,0.58504,-1.2098,-0.793,-0.25838,0.36272,-0.091384 -1.3405,-3.9316,-2.0117,0.96272,0.039079,-0.41005,-2.353,1.0785,-0.53885,-0.14542,-1.0748,-0.66209,-1.8991,-1.006,0.62369 -2.2009,0.213,-1.0797,0.66152,-0.24458,0.88992,0.85739,1.3374,0.94208,-0.89614,0.10944,-1.9163,-1.6794,-0.085411,0.25564 2.4919,2.8954,-0.71139,-3.0343,0.47803,0.83504,-0.82291,0.17654,-1.9615,-0.13371,-0.15914,-2.197,-0.39883,-1.1172,0.17805 -1.7709,-2.5474,-2.5666,0.56968,-0.75628,-1.0973,-1.7338,0.36263,0.50016,-0.5732,-0.54376,0.14433,-1.7425,-1.0319,0.13089 2.2508,0.75365,1.2483,2.2336,3.5144,-1.7837,0.31493,0.4641,-1.5621,-0.10295,1.6701,0.91138,1.0073,0.96851,-1.4982 2.4664,-1.7739,-1.284,1.1635,-0.27257,1.3241,-0.0729,0.55801,-0.27419,2.2098,2.5617,0.75567,1.2883,0.45536,1.3041 0.88305,-2.2879,1.3995,-0.68346,-0.57135,1.524,0.29913,-0.44212,0.10322,2.6759,-1.0255,-0.64433,-0.56672,-0.0093556,-1.2159 -0.50729,3.9036,-0.92443,-0.2044,-0.60674,0.12986,-0.8967,0.33193,-1.557,0.31256,-1.2479,-0.55483,0.74707,0.23176,0.012286 -1.5784,-0.19352,-1.5017,1.8646,1.0195,0.34343,0.76774,0.4291,-0.29017,-1.7418,0.28614,-0.90735,-0.41699,-0.79013,0.5257 -1.0191,-2.4323,-0.36829,1.1025,-2.1961,0.9398,-0.649,2.3804,0.44369,-0.10805,0.72505,-2.2037,-0.48764,-0.07566,-0.50513 -1.9179,-2.0711,-0.6126,0.73031,-1.1205,0.072363,-0.8444,0.74821,1.391,0.039091,0.57183,-0.67143,-0.12561,-1.3034,-0.95373 -1.2789,-0.63153,-0.077375,1.355,-0.48689,0.88036,0.022998,1.7566,1.6922,-1.0034,0.59774,-1.0467,-2.2629,-0.30911,-0.15285 -1.8933,-1.543,-1.0124,2.0631,-1.3842,-1.6057,0.82227,0.10207,0.76016,-0.80417,1.1909,-0.52148,-1.4116,-0.25603,-0.82701 -1.4649,-4.0589,-1.0018,1.1765,0.89388,1.2864,-1.2344,1.2966,-0.091465,-0.41433,-0.59938,-2.2352,-0.8895,-1.0553,0.045624 -1.8962,-2.7804,-2.2958,1.7462,-0.018792,-1.6977,0.071081,-0.76883,-1.3121,-1.5769,0.25148,-0.69462,-1.1951,-0.95987,-0.87865 -0.2724,-0.7526,-3.0149,0.91534,0.17928,2.0751,-0.17202,0.76088,-0.62597,0.0029073,1.8786,-0.72825,-0.54184,0.81123,0.19062 4.1957,-3.4722,-0.39423,-2.5848,-1.5964,-0.73883,0.75199,2.4193,-0.9452,0.76896,0.39692,1.1928,0.37509,-0.013693,1.06 3.7968,-1.8731,0.93239,1.4438,-1.5413,2.398,0.76875,-0.26324,-1.7986,-1.9476,-0.5272,0.063217,-0.70801,-0.83887,-0.48787 0.68134,-0.77872,0.9168,2.6741,-0.081965,1.3826,-1.6581,1.1293,1.2863,-0.35844,0.80466,0.59124,-0.5171,-0.5749,0.42074 -1.9913,-2.7006,-1.4805,-0.069684,-1.8423,-0.12126,-1.7704,0.50887,0.080597,0.34401,0.047034,-0.33448,-0.14939,-0.6863,-0.83522 -2.3267,-1.6125,-1.8952,-0.28038,-0.96491,-1.2064,-0.32899,0.41866,0.95699,-1.0341,-0.011381,-0.95348,-1.2245,-0.70475,-0.80757 -1.4728,-2.4873,-2.469,0.19016,-1.3243,0.7473,-1.5828,1.37,0.44411,-0.07683,-0.61459,-1.1355,-0.66591,-0.57742,-0.21612 1.9858,0.7339,-0.22628,-0.72691,-2.4582,1.3546,-0.66121,1.1503,-0.13856,-3.6975,-0.15282,-0.21802,-0.60412,-0.030656,0.57329 4.3736,-2.702,-0.54626,0.58854,-0.62762,0.74364,0.18948,-1.4637,-1.5478,-3.0492,-0.36901,-1.527,0.26838,-0.85612,0.2048 4.6401,-1.0607,-0.44915,-0.75143,-0.42297,-2.7849,1.0103,-0.11108,1.7091,-1.6394,-0.087028,-0.18366,0.5051,0.8936,-1.2471 1.4586,-4.3422,0.38633,0.72559,-1.7051,0.070051,1.2646,0.23388,-0.068495,0.68275,-1.0268,-0.19579,-0.16185,-1.2604,-1.936 3.5831,-2.752,0.6532,-2.9442,1.8703,-1.5254,0.9671,1.6,-3.4521,0.58622,2.1486,0.59213,-1.7136,-0.39126,1.7144 -0.4992,-3.9148,-0.83086,1.5081,-0.26398,-0.072938,-1.2536,1.4602,-0.2656,1.2675,-0.20858,-1.336,-0.020929,0.25607,-0.59402 -2.6993,-1.9656,-0.31771,0.44409,-0.4456,-1.4206,-0.53688,-1.6358,-0.63599,1.0853,1.1926,0.37781,-0.88017,0.33082,-1.2194 -2.1426,-1.8409,-2.9891,0.35891,-0.39163,-1.9637,-1.2578,-0.16888,-0.19508,-0.38751,-0.64486,0.8128,-1.8992,-0.44019,-0.66757 -0.26626,0.03793,0.29829,0.75894,-3.2263,-0.052281,0.4121,-0.13161,0.35611,-1.0478,0.12572,0.32844,1.0043,-0.6709,0.0606 -0.6904,0.81138,0.93982,-0.46598,-2.5056,0.31675,0.36237,-0.65669,-0.3349,0.047383,0.18625,1.4359,0.45991,-1.6872,0.39207 1.3836,-0.1796,-1.1148,2.4402,0.32826,0.23329,-1.3896,-1.3542,-0.589,-1.7241,2.2319,-0.6381,0.61188,0.91008,0.12929 0.35768,-5.2645,1.0104,0.3522,-0.19169,0.38728,-0.99852,-0.20861,-1.2632,1.4557,-1.3534,-0.27045,0.18329,-1.0824,-0.79037 -1.7469,1.3726,-0.70064,-0.002322,-0.4638,-0.76553,1.2405,3.7311,-0.6881,0.4764,-1.1695,-0.49994,0.11215,0.47815,0.6032 -1.3743,-1.4331,2.6702,-2.0115,0.41254,1.2669,-0.88781,2.8257,-0.51061,1.4727,0.47111,-1.1231,0.5132,0.79077,-0.74426 -0.53143,-2.6644,-2.54,0.61776,-0.016941,-0.26328,-2.1703,1.6049,-0.55378,0.17929,-1.0646,0.17352,-2.4737,-0.44005,1.5167 3.9993,-3.415,-0.8666,-1.0538,-2.0322,0.63606,1.2331,1.575,-0.043343,1.0773,-0.38409,2.1846,0.078876,0.22562,-0.59411 -0.48267,-2.3013,-1.7085,1.8761,0.91677,-1.2222,-1.6438,1.6382,-0.5187,-0.13532,0.20814,0.56662,-1.2855,-1.725,0.16254 2.9541,0.70259,-2.0314,-2.0533,0.76416,-2.0795,1.4258,1.2928,1.8381,0.17387,0.76267,0.18677,0.23768,0.37108,-0.15914 0.58833,-0.23371,0.33491,1.7102,1.3433,2.0857,0.59945,2.4139,-0.42853,-0.69512,0.64635,-1.6395,-1.8469,1.1856,0.21297 -1.4599,1.7395,-1.9061,1.0485,-2.161,1.771,0.73863,-0.17614,-0.72307,-0.89526,0.94125,0.67464,0.020806,-0.95624,-0.089482 0.92485,-1.3775,1.4521,-0.72355,-2.7099,1.9493,-0.21853,1.5943,-0.69706,1.7143,0.054725,-1.3948,0.98476,1.0427,0.26612 -2.3825,-1.5233,0.9681,-1.206,-1.8512,1.7409,-0.86531,0.15604,-0.57743,0.30943,1.1025,-1.0325,0.71474,-1.1275,-0.6445 -1.7776,-1.8758,-1.3731,-0.48106,-0.20848,1.1366,-3.1073,-0.26883,-0.82755,-0.089781,0.20094,1.3439,-0.46936,-0.95847,1.0777 3.0259,1.3994,-1.4201,-1.3662,-1.0095,-2.5006,-0.041405,-0.62101,1.32,-0.53205,0.30549,-1.605,0.066382,1.232,0.45423 4.9838,-2.9235,-0.89316,-0.32178,-0.71472,0.62369,1.1238,-0.60119,-0.0082607,-1.01,0.68256,0.21477,0.35842,-0.29268,-0.31617 -3.2707,-1.8214,-1.1314,-1.1913,-1.4066,0.66639,-1.4973,-0.26258,-0.023787,-0.22352,0.97926,-0.24268,-0.68219,-0.52847,-1.0668 -1.9108,-3.89,0.84499,-1.0122,0.018228,-0.30452,-2.8212,-0.4906,-0.028798,1.3177,-0.48318,0.34574,-0.45608,-0.83806,-0.35425 -3.0936,-2.6157,-1.3325,-1.1507,0.20614,1.7669,-3.015,-0.31711,-0.8444,-0.24453,0.014534,0.61966,-1.0088,-0.25993,-0.051525 -1.2507,1.5774,0.081942,1.1967,-2.3341,-0.46596,0.25768,-0.2909,0.07972,-0.21025,1.0556,1.5494,-0.181,0.059129,0.089558 -2.0891,-3.1137,-1.0578,0.062317,0.80788,0.27482,-2.6478,0.7959,0.58046,0.46802,-0.56545,-0.3472,-2.1373,0.26403,0.25614 0.97654,0.5299,0.73957,1.6793,-1.7064,-2.0436,1.9766,-1.2529,-0.015101,-0.32222,-2.0345,0.040862,-0.3538,-0.43188,0.35632 -2.1345,0.18511,-2.141,0.78778,-0.91666,0.79732,0.98608,-0.46185,-0.10281,-0.22036,1.0775,-0.13381,-0.88276,-0.1897,-1.4355 1.0823,-1.9974,2.6687,-0.71382,-3.0342,0.88852,-0.18623,1.0833,-0.012076,0.73498,-1.1829,-0.24501,-0.13436,-1.0385,-0.83593 -2.6303,-2.7208,-1.264,-1.5219,0.53262,1.6423,-2.4781,0.20818,-0.9354,-0.38413,-1.0991,0.028258,-0.12401,-1.2163,0.12915 -0.65666,1.258,-1.5595,1.8572,0.11375,-1.103,0.81058,2.7828,-0.45908,0.62554,-1.4368,-0.77588,-0.65323,1.2324,0.44036 3.7841,-3.2113,-2.4885,-0.86101,-0.5143,0.57364,2.4432,0.16385,-0.90798,-0.81105,-0.65414,2.1554,0.075855,-1.0123,0.73438 -1.4119,-2.9883,0.66781,0.5702,0.2249,0.95797,-1.3864,1.4713,0.87647,2.2641,0.69083,-1.411,-0.045297,0.69665,-1.0089 -2.4031,-2.3743,-0.71903,-0.9085,-0.90731,1.1066,-1.508,1.168,0.09922,-0.47566,0.44799,-1.2705,-0.0012045,-1.0407,-0.947 -2.5408,1.0434,-2.9211,-0.37335,-0.69349,1.1709,1.093,0.0065574,-1.3467,0.74633,-0.20294,-0.33319,1.006,0.56311,-0.14831 4.0531,-0.92397,-0.43432,-2.3636,-1.8622,-1.4477,-0.43292,-0.2813,0.28102,-0.10929,0.64027,0.015622,0.61694,0.70031,-0.14075 -0.11914,-0.31871,0.059272,2.6119,-1.8211,0.37654,0.20154,-0.97574,-0.37497,-0.64667,0.27962,0.86874,-0.2366,-1.2862,0.76051 1.238,2.0699,-1.7962,-1.114,-1.0526,-1.128,-1.21,-0.71455,0.38218,0.079906,1.2916,-1.0865,0.95302,1.1438,0.59413 -2.3525,-2.4093,-1.8187,1.2121,0.73639,-2.8615,0.32398,-0.70502,-0.19431,-0.28907,0.07465,-0.18224,-0.68705,-0.18786,-0.75302 3.2685,-2.3828,-2.3186,0.33299,-0.98338,0.63679,1.8473,0.47404,1.3556,-0.21093,-0.12208,0.78948,-0.06006,0.15132,0.63752 1.6304,1.7037,-0.32578,-1.5641,-1.973,-1.5576,-1.2165,-0.082274,-0.23189,-2.4086,-0.26031,-0.87907,0.63467,0.95636,0.152 -0.84307,2.6256,1.678,0.11767,-1.618,-1.0396,-0.65302,-0.31943,-1.3259,-0.95265,0.73668,1.2832,0.6967,0.91687,0.27409 0.47377,2.1772,1.5058,-0.25734,-2.5501,-1.8219,0.3327,0.10179,-0.74613,-1.0524,-0.72511,-0.17897,0.12489,1.4069,1.0504 4.5402,-1.6499,-1.0912,0.028095,-0.66262,1.326,-0.89582,0.13973,-0.25328,1.0786,-0.25362,-0.35792,0.74443,0.25816,-0.41174 -1.8664,-1.1381,-0.68661,2.1704,-0.90068,-0.79479,0.41039,-0.31304,0.63873,0.082922,1.7903,-0.85379,-1.048,0.23013,-0.56932 -0.10014,2.6676,-1.5652,0.57181,-0.89917,-0.32614,-1.0299,0.53845,0.091888,1.6095,-0.9647,-0.72616,0.88782,0.67622,0.068025 3.8433,0.020547,1.0239,1.3399,-1.3471,-1.6782,0.31352,-0.81288,-0.065522,-0.69806,-1.3395,0.063529,-0.77217,0.81384,-0.64923 1.5666,1.7521,-0.3876,1.3736,-0.37966,-1.0138,-0.26941,0.021864,-1.3773,2.2484,-1.2069,-0.74759,0.6962,0.35997,0.20514 1.2953,-1.4265,2.1565,2.0617,-1.5878,0.71692,-0.51362,-0.31235,0.4557,0.020478,-0.12313,0.91725,-0.004178,-1.0731,-0.15409 1.4721,0.72342,0.69719,2.2161,-0.99356,-1.6491,-0.15218,-1.2962,-0.73309,-0.13606,0.37229,-0.12434,-0.21179,1.7177,1.1789 2.6539,1.5705,-1.383,-2.0718,-1.1624,-2.0393,-0.0094489,-0.67086,0.65392,0.023442,0.37445,-1.5952,1.0658,0.42444,1.0901 -1.3169,2.4875,0.35948,1.8059,0.45373,-0.87809,-0.68513,1.3673,-2.3109,0.7796,0.67348,0.34325,-1.8998,0.13461,-0.95259 0.14922,3.006,-2.039,-0.75976,-0.2528,0.22256,-1.5052,0.8486,-0.63408,0.4674,0.18047,-1.4477,0.45134,0.27026,-0.38686 2.5564,0.72822,-1.2401,0.80898,-0.1838,-0.91256,-0.29067,-2.2116,0.38104,0.16413,0.84218,-2.1131,0.18798,0.78697,1.5779 4.6563,-2.0465,0.15311,-1.9108,-0.76317,-2.0051,-0.24211,0.34324,0.044353,-0.074446,1.4613,-0.61383,-1.0283,0.57041,1.1748 0.27976,0.50996,1.141,2.4343,-1.3623,-1.327,-1.0167,-0.017386,0.83257,-0.61931,1.0486,0.86466,-0.33709,0.79983,0.27715 0.3489,-0.9481,-1.9834,1.1179,0.074997,0.14852,0.67645,-2.2889,-1.2311,1.8635,-0.69553,1.0782,0.32155,-0.53169,-1.0257 -0.91926,-0.54981,-1.8091,0.74401,-1.092,-0.5186,-0.02183,-0.98881,-0.77862,2.1347,0.97822,0.70279,0.46792,0.38877,-0.37511 2.9265,0.55307,1.3379,0.36855,3.1222,-2.4812,-1.3524,0.82515,-1.9708,0.86453,1.6678,0.42652,0.6025,-0.70966,-1.4106 0.5032,-1.0626,-2.2607,1.6092,-0.56053,0.45951,0.11279,-1.9027,-1.4836,1.217,-0.2246,0.61904,0.80005,-0.78785,0.13811 3.3462,-2.6055,-2.2837,0.52449,-1.0127,3.8732,1.4425,0.46511,-2.6943,0.67567,-0.86247,1.0974,0.85128,-0.19445,-0.2408 -0.30024,-1.4347,-1.6899,1.637,0.02131,0.30563,-1.0192,-1.3613,-0.8766,1.7054,0.64402,0.87767,-0.18269,-0.33665,0.26562 2.9442,0.72609,-1.0257,-3.1326,-2.0575,-0.72753,-1.6118,-0.0543,0.15205,-1.2563,0.91201,-1.4774,0.11611,-0.5361,0.62808 2.5629,0.11572,-2.7961,-1.301,-1.6743,-0.69017,1.1526,0.93811,1.2275,0.37496,0.44616,0.22744,0.63934,-0.54194,0.072953 0.15098,0.25962,1.0431,-0.95464,-2.3899,-1.2903,1.6793,1.0288,-0.43454,-2.6484,-0.23356,0.51372,0.059508,1.0569,-0.30738 -0.47494,-1.0914,-1.7226,1.2382,-1.3923,0.67336,-0.6851,-0.80836,-0.089628,2.0254,1.1018,-0.06223,-0.36778,0.67752,0.25067 -1.3889,0.13067,-2.8878,-0.92577,-0.97764,0.2172,-0.42283,-1.2922,-2.1073,0.17446,-0.29488,1.17,0.61326,0.2703,0.049764 -1.5713,-1.7898,-1.5711,1.861,0.63072,1.5074,-0.66401,-0.061291,0.030156,0.45936,1.2486,-0.91246,-0.95123,-0.12625,-0.35968 0.94897,-1.4947,-1.6181,0.97125,-1.0069,0.45205,-1.368,-1.1805,-0.3851,1.7748,-1.2128,0.47536,-0.37787,-0.38255,1.8284 -1.442,-1.0904,-2.2246,-0.88884,-1.9272,0.64718,-0.70104,-0.80067,-1.0971,0.40238,0.63533,0.13738,-0.46054,0.41063,-0.42529 1.0083,-1.6538,-1.8078,0.88097,-0.90314,1.3758,-0.85238,-1.6396,-0.93351,1.352,-1.0528,-0.84665,-0.12514,0.066652,1.9689 2.1886,0.1883,-1.6519,-0.46221,-1.687,-0.59847,0.016767,-0.66805,1.1093,1.4735,1.1985,0.23168,0.75497,0.046065,1.6857 0.028379,-1.6098,-0.62412,0.73986,-1.4194,0.37715,-0.20726,-1.7752,-0.51511,2.2182,0.81585,-1.0226,-0.84138,0.26707,0.6296 -1.5373,-1.4177,-1.8115,1.2326,-0.07494,1.51,-0.58256,0.06279,0.85714,0.99138,1.4532,-0.75069,-1.0445,0.55704,-0.58683 3.3992,0.19597,1.1075,1.3002,1.3081,-2.5206,1.8784,-0.085967,-2.1643,0.20833,-1.4643,-0.62674,1.3007,0.29242,-0.50761 1.7849,0.96205,-0.74859,1.7752,2.7954,-0.030644,0.064909,0.1624,0.12635,1.3417,-0.14484,-0.50478,1.9365,-0.23774,-1.1067 3.5411,2.1822,1.2806,-2.1113,1.1688,-2.7505,0.94604,1.6321,-1.6307,0.21723,-0.8158,-0.80593,0.63582,0.97751,-0.21476 -0.22229,-1.2909,-1.5097,1.2269,-0.14496,1.8416,-0.3168,-2.0464,-1.1466,0.26192,0.60526,0.27723,0.84225,-0.99606,0.09331 2.3867,-0.28777,0.24524,-0.71407,-0.20229,-0.49755,-2.529,0.30069,-0.49693,0.28106,2.8229,0.77711,0.97283,-0.032671,-0.60047 2.5034,-0.040664,2.2142,0.79727,-0.35215,-2.8037,1.7072,0.11016,-1.0239,-0.066964,-1.2719,0.37916,1.2463,0.61772,-0.34237 2.2886,-0.22947,-2.2729,0.24023,-0.72312,-0.62374,1.02,0.016421,1.8042,1.1357,0.61729,-0.32381,0.27691,0.68126,1.6151 0.7011,1.1031,-0.93128,1.8337,4.313,-0.74374,0.075896,0.42627,-1.1854,-2.2919,0.78887,-1.3473,1.083,0.67024,-0.22015 -1.1501,-0.61276,3.2155,0.30637,-1.9289,-1.8033,0.86188,-0.48815,-0.12634,-0.08429,1.3787,0.31222,-0.1508,0.29284,0.48941 -0.087001,1.6817,-1.4743,2.0001,-2.1492,0.66611,0.23512,0.24025,0.14214,1.0085,-1.1622,-0.11256,-0.15647,0.82554,1.1035 -2.9932,0.42173,-3.5966,-0.74904,0.2776,-0.25378,-0.32661,-0.022309,-0.85864,-0.10928,-0.26732,0.88219,0.90458,0.55228,-0.58863 -2.1481,1.9806,-0.21835,-0.46343,-1.9303,0.43722,1.7592,-0.41174,-1.3671,0.051528,-0.21901,-0.16601,0.97742,-0.071828,1.3373 0.91161,1.437,-2.3823,0.24564,-0.14041,0.6142,-0.98894,-0.1272,-1.0286,0.55522,1.6252,-1.5146,-0.3918,0.3482,0.046467 -0.086621,-1.8613,2.8174,-2.0554,-1.7098,1.5728,-0.067219,0.98818,-2.1963,0.17135,0.49688,-1.4118,1.7908,-0.89436,-0.66407 4.522,-0.70219,-0.62491,-0.70498,-0.98404,-1.846,0.09241,-0.78388,1.5689,-1.5079,-0.27085,-0.67765,-0.49338,0.11844,-1.1619 3.9908,-0.35477,1.7675,0.97974,-0.55504,-2.4793,1.1339,-0.84165,-0.65742,-0.95965,-1.1858,-0.27423,0.20572,0.75966,-0.29965 2.399,1.1312,1.3066,2.1871,0.88692,-2.49,0.049909,-0.7119,-1.3814,0.36885,-0.39021,-0.50907,0.72479,1.2605,-0.0043779 1.188,1.3111,0.29996,2.5688,-1.3165,-0.92122,0.44165,-0.9982,-0.24369,0.66892,-1.079,-0.071992,0.34165,1.0752,1.0448 -1.9137,0.10407,1.0849,0.88199,1.7759,-0.86649,1.5574,1.696,-1.9526,2.9141,-0.066805,-0.369,0.3365,0.11573,0.010366 2.4528,-1.0098,-2.9721,0.44879,-0.033922,-0.19601,2.2157,0.38859,2.1452,0.15056,0.45109,1.1821,0.0060983,0.48372,0.39377 1.6417,1.807,0.014376,-1.1595,-2.5013,0.0058284,-0.77794,0.74824,-1.054,-3.459,-0.46088,-0.70647,-0.7631,-0.92729,0.27506 3.5229,-3.0331,-2.0659,-0.031942,-1.5035,1.3049,1.6513,0.60306,0.32379,-0.038636,-0.64424,1.303,0.26587,0.10654,0.67796 -1.4043,-1.2549,-1.602,0.94267,0.74324,0.78439,-1.5246,-1.1273,-0.27996,0.70679,0.7781,1.0318,-0.74792,-0.05347,-0.0086865 2.7442,1.2294,0.26675,-1.7055,-2.4661,0.10576,-1.8374,0.50917,0.053073,-1.1582,-0.65901,-0.44018,0.42458,-0.11495,0.67619 1.9756,1.1146,-2.5451,0.65533,0.40824,-0.42237,0.94316,-0.17655,0.88341,0.59287,-1.2122,-1.8312,0.064111,-0.18029,0.083635 -0.013563,-3.2413,2.4634,2.2203,1.0077,0.67349,0.73283,0.6353,-1.6396,-1.0621,3.0394,-0.049133,-0.68295,0.40092,-0.69991 -1.2117,-0.94844,-1.9363,-1.7203,-2.0852,-0.84486,0.49145,-1.4404,-1.4104,-0.12299,-0.35342,-0.03904,-0.70799,0.066144,-0.13259 3.1405,1.1176,0.1043,-1.5712,-1.5578,-0.92769,-0.66565,-0.0052777,-0.45398,-2.7653,-0.35158,-0.52599,1.2089,0.098321,-0.0414 -0.20866,1.1487,0.49788,1.6516,-0.29665,-0.65839,-0.6928,1.2583,1.4552,-0.90384,0.80126,1.1779,0.167,0.56116,-0.0805 -1.8001,-2.8282,0.8407,0.018992,-0.55258,-1.3131,0.14232,-0.58599,0.22479,0.51626,1.437,0.35804,0.40717,-0.046489,-1.7318 0.97529,-1.2803,-0.41471,2.6503,0.40298,1.1903,-1.6341,1.6472,0.722,-0.99921,1.0504,-0.083399,-1.2696,0.71889,-0.48181 -0.46788,-3.1109,2.3079,-1.7586,-1.9052,1.094,-0.46048,-0.12258,-1.0797,1.4671,0.93474,0.11412,0.61496,-0.42573,-1.4966 4.0101,-1.5128,-0.80398,-2.7898,-1.1404,-1.4562,1.5987,0.77122,0.70357,-0.99529,0.73572,0.34557,1.0245,0.73235,0.89477 0.3506,1.2204,-0.050255,2.941,-0.64418,-0.17396,0.24026,-2.1051,-1.098,-0.61435,-0.33327,0.6927,0.38452,0.2416,1.0477 -1.8868,-2.4893,2.8094,-0.83724,-0.65985,-0.39208,0.17856,0.60199,-0.76238,-0.73649,1.5201,0.49833,1.0681,-0.8763,-1.482 2.4405,1.216,0.058329,1.6098,-0.39021,-1.1017,0.67127,-0.99759,0.52815,-1.0775,-2.016,-1.3316,-0.17048,0.68303,0.35137 -1.0722,-3.9719,-0.14171,-0.89717,0.76901,-0.038288,-1.9769,-0.23214,-0.015348,0.43019,-0.96983,1.1888,0.23929,-0.9463,-0.50666 2.7232,-0.78472,-1.7795,-0.59942,-1.1442,2.4802,-0.54924,1.3473,0.24259,1.254,-0.26638,1.1484,1.4581,0.52317,-1.3512 -1.3812,0.49813,-1.2936,1.712,1.4868,-0.018288,0.66977,2.7097,-0.65167,0.26636,-0.84027,-1.2856,-1.6311,0.5285,-0.063224 -0.97015,-2.1131,0.5408,0.92027,-0.026168,-1.4935,1.2267,-1.6739,-0.57611,1.3293,1.5018,0.5602,1.1251,-0.37755,-1.662 -2.1044,-1.7728,0.63512,-0.3263,-0.47597,-1.6629,0.75687,-0.14546,-0.92206,0.71363,2.0266,0.72218,1.0367,-0.12849,-1.7022 -1.5523,-4.0071,1.1137,-0.76839,0.025787,0.30473,-0.95986,1.0926,0.64543,0.86574,0.12521,-0.73582,0.56161,-0.60649,-0.94289 4.3212,-2.1766,1.1796,0.68689,2.272,-0.87761,0.089336,-1.4702,-1.4066,0.088365,1.9911,1.1344,1.035,0.13579,-1.3392 -1.7652,-1.0332,-3.0036,-0.32745,-0.43282,-1.2263,-0.68787,-0.032601,0.26847,-0.72453,-0.37053,0.24566,-1.0604,0.10781,-0.51044 -2.6621,-0.50267,-1.5708,-0.20511,-0.42643,-1.8164,0.1677,0.063376,0.82606,0.22383,0.62737,-0.75013,0.57734,0.69179,-0.13178 2.4344,-1.3122,3.1932,-1.0914,-2.8184,-0.13623,0.051945,1.5894,-0.6382,0.4525,-0.95978,-1.3128,-1.593,1.0698,0.6185 0.69517,-1.9363,3.4699,1.9671,0.6886,0.1666,-1.0199,2.6355,0.042424,-0.91532,0.84191,1.1707,-0.36779,-0.20904,-1.1503 1.3638,2.9136,-0.81599,-0.40064,-0.92089,-1.1226,-0.75431,-0.40281,0.47389,0.79818,-1.5935,-1.0951,1.4336,0.23819,-0.3134 2.6588,-0.28259,1.5353,0.74393,-1.637,0.0046479,-2.1331,-0.31142,0.92946,-0.3025,-0.19012,0.83474,0.88953,0.24902,-0.50955 -0.31917,1.5056,-1.7178,1.8906,2.377,-0.13326,-0.9243,0.38398,-1.6087,-0.80276,-0.45142,-0.71229,-1.2615,0.90411,-0.6736 4.5481,-0.70067,-0.83604,-1.4289,-1.1477,-1.4131,-0.34217,-0.38036,1.5004,0.41437,0.92838,-1.2927,-1.0454,-0.20036,1.0781 -0.038448,-2.8468,4.0906,-0.088493,-0.9469,-1.5253,0.69121,-0.16595,-2.1386,0.38582,1.1909,0.78187,0.14507,0.01246,-1.1409 -0.34337,-3.6946,3.7702,0.48628,0.83165,-1.2113,1.2721,0.47215,-0.88168,0.27387,0.34422,0.40988,0.11085,-1.4662,-1.1614 0.44516,1.7819,-0.39545,-0.35438,-2.1133,-0.69132,0.99126,1.1846,-0.11349,0.14009,-2.3908,-0.14388,0.69993,0.71404,0.70354 1.8637,0.28316,0.11075,2.4655,3.5859,-0.69961,0.26231,-0.02875,-0.006823,-0.62312,-0.21257,-0.13304,1.9021,0.083524,-1.0328 -0.94835,-2.4351,3.681,-1.0644,0.57896,-2.1126,1.0564,-0.40066,-2.6418,0.61653,0.75888,0.54433,-0.38252,0.24118,-0.79548 -1.3729,0.047462,3.4516,-0.53887,-0.85717,-1.9387,1.021,0.22739,-1.4617,-0.3898,1.6506,0.31336,-0.014867,0.99472,0.19221 1.8304,1.0666,0.22881,0.14676,-0.0055916,-2.2471,-1.0003,0.38455,0.75712,-0.28642,0.40295,-0.1576,2.935,0.68022,-0.89507 -2.7938,0.68046,0.69649,0.12713,-1.8746,-1.4319,1.08,-1.158,-1.715,0.91987,1.0651,0.5368,-0.79406,0.79138,-0.38351 -1.0458,0.61216,1.2073,1.162,-1.5795,-0.3851,-0.66226,1.2809,0.77856,-1.1255,1.9598,1.2275,-0.55004,-0.32923,-0.31751 0.31316,1.5257,-0.57445,2.706,-0.8491,-0.35071,0.56991,-0.37719,-0.55894,1.0374,-1.0107,0.15682,0.64803,0.7991,1.1675 -1.4295,-1.6131,2.3943,-1.0364,1.2335,-2.3444,1.5999,-0.59838,-2.3377,1.4353,0.64378,0.43175,0.48588,0.60251,-0.74993 -1.3509,-2.7313,3.503,-0.60484,-0.16621,-1.8989,0.68212,0.05638,-1.7655,0.63444,1.4375,0.1724,-0.062318,0.16145,-0.68959 -0.0025385,-2.9491,4.4645,0.10861,-0.49558,-1.1235,-0.3578,1.3212,-1.5906,-0.26955,0.88813,0.23978,-0.13457,-0.18143,-0.96482 -1.8455,1.4441,-2.6311,-0.034622,-1.878,0.91532,2.0148,-0.23885,-1.075,-0.028789,-0.3944,-0.42698,0.5635,-0.20887,0.51193 -0.97674,1.7298,-2.3186,1.8344,0.31965,1.032,-0.016452,1.0247,-0.81297,-0.43463,-0.7953,-0.28773,-1.2321,-0.46835,-0.39405 -0.98104,-2.8042,1.6791,2.2925,-0.35558,-1.0109,1.2028,1.1016,-0.41674,-0.21619,0.59711,0.036126,-0.14518,-1.6716,-0.49244 0.083023,-0.52272,3.8092,-0.66598,-0.27113,-2.2799,1.8051,-0.77068,-1.9991,0.77866,-0.42276,0.54903,0.36081,0.98334,-0.8125 2.2864,-1.315,-0.76856,1.2527,1.3289,0.59445,-1.7344,0.54052,0.81332,0.96585,3.6664,-0.75328,0.2476,0.28652,0.50231 -1.4675,0.25965,-0.67702,0.94046,-1.5364,0.11978,1.7141,-1.3312,-0.93203,1.2768,-0.72344,-1.1721,0.2554,0.40776,0.98713 1.0127,-0.47209,-0.76299,1.8827,0.11761,-0.12245,-2.1405,0.49967,1.5037,-1.5765,0.83907,-0.28621,0.27047,-0.75997,-0.87831 0.99666,-3.2187,4.3665,-1.8825,-1.1723,0.30693,-0.20862,1.3586,-2.0237,1.3289,0.35724,0.14252,-1.275,-0.12328,-1.1176 2.0067,1.2276,0.96031,1.6502,-1.7621,-0.92502,-0.81858,-1.5732,0.25269,-0.051122,-0.65278,-0.085421,-0.82536,0.23023,1.0562 -1.7515,-1.7934,1.4335,-2.4856,-0.86253,-2.0759,0.91075,-1.6426,-1.9539,1.1455,0.35587,0.34176,0.83085,0.55635,-0.6224 -1.517,0.6822,3.2484,-0.52919,-1.106,-1.8321,0.44763,0.27482,-1.2244,-1.0151,0.75153,0.43248,0.64336,0.76333,0.45332 -2.8008,-1.8301,0.83847,-0.71496,-2.1399,0.055894,-1.1338,-0.087624,0.33593,1.3024,0.81091,-0.79078,0.14521,-0.62494,-0.16685 -2.2976,0.090116,1.1226,-2.1417,-0.61503,-1.2782,1.6042,-0.6013,-2.2048,1.6587,0.35992,-0.38321,0.81704,0.99266,0.50126 -1.5926,-1.5208,0.82355,-2.6247,0.48148,-2.7372,0.79205,-1.5485,-2.6839,1.5349,-0.8596,-0.20791,0.40604,1.6891,0.86798 1.9539,1.0046,1.8282,0.13081,-0.076262,-1.3074,2.0228,1.8778,-1.0117,0.83009,-3.4711,-0.30633,0.29688,0.14132,-0.067556 -0.36065,-1.3348,-1.0012,0.78891,-1.8686,0.50178,-0.67299,-1.8043,-0.91832,0.51217,0.11116,-1.1125,-1.0578,-0.60511,1.1241 -1.9601,-1.2182,1.1389,0.96714,-0.096768,-2.1453,1.5528,0.12086,-0.82711,0.97919,1.0152,0.94145,0.79412,0.50218,-0.36911 -2.4009,0.20895,0.40565,1.1533,-0.15866,-1.2806,1.5221,0.9035,0.19834,1.0008,0.94234,1.0424,-0.33213,0.82452,-0.14322 -1.1548,-3.0115,2.4344,-0.76431,-1.057,-0.80048,0.18983,-0.52058,-1.6582,1.3216,1.3867,0.93079,0.76035,-0.83409,-2.1424 -0.97144,-1.0387,0.59934,0.73228,-0.50595,-1.5174,1.6657,-0.41048,-1.4479,1.6754,0.70839,1.7949,1.628,-0.061996,-0.94133 -1.3454,-0.17962,1.4179,0.89374,1.4362,-0.20698,2.3996,-0.22873,-1.3209,3.0877,0.4025,-0.083657,0.71584,1.319,-0.23477 -1.5895,0.27693,1.5701,0.9427,-0.38043,-1.3717,1.8762,0.035364,-0.46668,1.3393,0.69718,0.71128,0.23651,1.1728,0.73445 0.49331,-1.7123,-1.6345,-1.6833,-0.85931,-1.5009,2.1152,0.016626,-0.65452,0.94173,-2.6154,0.83171,0.97027,0.30645,-1.3923 3.3792,0.033852,-0.45877,1.141,0.12772,-0.13313,-0.57415,-2.8524,-0.6457,-0.85122,1.0171,-1.8747,0.31531,-0.096528,1.3187 3.8259,-0.27539,-2.1902,-0.055672,-0.93673,-1.3076,0.57882,0.19628,1.8331,-1.4153,0.57354,-0.23754,-0.29559,0.66358,-1.978 4.0307,-1.2623,-1.8243,-0.34984,-0.054144,-1.768,2.5523,-0.7147,1.1354,-0.94605,0.5756,-0.53392,-0.6468,0.38712,1.3021 -0.16327,-0.51113,1.9463,-1.0227,-1.046,-1.7016,2.9467,-0.14574,-1.7132,1.7167,-1.1311,0.15191,1.1287,-0.29451,-0.19958 1.5724,-0.39699,-0.019989,-1.5067,0.034251,-2.1569,-1.7039,-0.048141,0.61649,-0.47529,2.927,0.8023,1.7427,-0.5776,-0.71238 -1.8494,-1.2262,-2.3804,1.1772,0.056916,-2.1701,0.25031,-0.25272,0.60129,0.49115,0.16112,-0.0041742,0.10538,0.51374,-0.7403 4.4964,-0.58349,-0.85854,-3.8004,-1.2456,-0.73852,0.29308,0.65176,-0.98705,-0.078441,1.8403,-0.092511,0.67706,-1.077,0.9726 3.3396,1.0903,1.8845,-2.1252,-2.1316,-1.8377,-0.27292,0.68842,-0.33127,-2.9328,-0.67353,-0.2622,-0.67031,0.20359,-0.13971 -0.071622,-1.3837,-1.2713,-0.36201,0.01971,-1.3947,1.1981,-1.4437,-0.98755,2.4909,-2.2789,0.0036303,1.4709,0.82151,-0.14206 3.0765,-1.2789,-0.65418,-0.36598,0.012826,-1.5318,0.39402,0.086223,-0.25061,1.8754,2.8056,1.1165,0.73607,0.49402,2.068 2.2144,1.802,-1.4938,-1.6143,-0.46957,-1.493,-0.62006,0.060327,0.59888,-0.74109,0.93254,-1.8136,0.45022,0.17358,0.5549 0.11653,0.40426,1.9012,0.3765,-1.1231,-1.0114,2.4384,0.12851,-1.652,2.0078,-0.80235,0.91767,1.3677,0.1083,0.24027 -2.8226,-2.2392,1.443,0.7833,-0.089795,-0.71268,-0.40608,-1.7942,-0.62531,0.87907,1.3914,0.0024015,-1.5401,-1.0161,-0.69744 2.9509,-2.9989,-0.57753,-3.2031,-0.66133,-1.9629,0.84407,3.1112,-1.0282,-0.090221,1.6014,2.0669,0.32522,0.036512,0.50076 -1.0102,-0.06925,4.1552,-2.0698,-1.04,1.6252,-0.70868,0.98308,-1.1762,0.29187,0.50811,-0.45239,-0.15607,-0.92899,-0.12672 2.4625,-1.1698,-0.75081,1.8349,3.0727,-0.49564,0.22503,-0.84616,-1.4519,-0.93157,3.5825,-0.25765,1.0178,0.9018,0.52923 -2.7193,-3.768,-0.44685,0.29959,2.0136,0.12975,-2.7355,-0.51432,-0.61464,0.45684,-0.46659,0.14946,-1.7081,-1.1083,1.0744 -0.96421,-3.0121,0.39803,2.4202,0.4303,2.7556,-0.47371,1.0594,-1.1323,0.038718,1.306,-1.4003,0.027346,-0.56368,0.028805 3.2985,-0.2403,-1.4354,-1.9587,-0.87369,-2.299,1.5601,-0.20413,1.936,0.0016759,0.72789,-0.011384,-0.22739,0.464,1.6165 1.9654,-0.5394,-1.9717,1.6992,0.40786,-0.91838,0.62794,-0.95874,0.10083,-0.24536,2.2701,-0.60177,0.75336,1.2417,1.6325 1.6303,0.45828,1.1542,-0.055835,-0.18254,-0.89491,-2.8207,1.0513,-0.38694,-1.6779,2.5549,0.74956,0.72946,-0.0024495,-1.1939 0.49534,0.75525,1.0109,1.9446,-0.52494,0.33065,-1.424,-0.26003,-1.0864,-1.2624,2.2755,0.3362,-1.4623,1.3608,-0.29902 -0.28432,-4.4836,1.7445,-1.1355,0.56819,0.45552,-2.0555,-0.45434,-1.1793,2.3703,-1.0566,-0.72799,-1.1586,0.60723,0.87318 0.32467,1.6976,-0.20625,2.8705,-0.3521,0.34498,0.18704,-1.2489,-0.55555,0.89202,-0.41009,0.41485,-0.012249,0.60962,1.1304 -2.4977,-3.4652,0.48063,-0.29755,2.4245,0.49761,-2.6625,-0.64824,-0.59919,1.2761,-0.26525,0.24869,-1.8227,-0.23253,0.86214 1.2664,-4.4018,0.57178,-1.122,-0.20301,1.0846,-0.96828,-1.731,-1.1378,2.0714,-2.5115,0.10997,-2.2475,-0.57765,-0.14852 1.0721,-4.2795,2.1154,0.58174,-1.0256,0.17775,1.1669,-1.907,-1.9174,0.43696,-1.0619,-1.1317,-0.77929,-2.0096,-0.55636 -0.25814,0.12323,-0.34703,2.5437,1.9301,0.32863,-0.44191,0.78014,0.099544,-3.0346,0.8995,-0.19564,-1.5555,-0.20274,-0.36323 -2.2585,-2.6558,1.3437,-0.94089,-0.2126,1.3995,-2.0985,0.27978,-0.25718,1.6013,1.5378,-0.16658,-1.4857,1.3413,-0.93728 -2.0013,-3.3212,0.30221,-0.48541,1.135,-0.58675,-3.0282,-1.3547,-1.5213,1.3589,-0.15119,1.1951,-1.9015,-0.59015,0.95653 3.9893,1.0612,0.13482,1.2343,1.0643,-1.4093,0.48277,-1.6964,-2.0735,0.16366,-0.45774,-1.7482,-0.12939,-0.98815,0.78637 4.5133,0.0083848,-0.47182,-1.7204,-0.70956,-2.6681,0.13941,-0.94794,0.83142,-0.35084,0.6043,-0.89833,-0.10997,-0.46206,0.12416 0.96774,-0.23869,-0.75707,1.694,-0.051742,1.1362,-2.0767,2.0061,1.2055,-0.33747,1.1116,0.15522,-1.1169,1.1107,-0.86047 1.0437,-2.129,-1.2736,0.85574,-1.0777,-0.94132,-0.97993,-0.03386,0.14314,1.3846,-0.84727,1.336,0.42629,-1.2726,0.33235 0.18818,-0.45473,-0.77919,2.6451,-0.50787,0.0090828,0.12389,0.21643,0.51459,-0.44913,0.77078,1.3318,1.0481,0.12298,-0.80197 1.3684,-2.1045,-0.80213,0.44547,-0.8165,-1.7334,-0.40681,0.62545,-0.74351,1.4704,-0.42902,2.1286,1.3275,-1.6711,-0.25951 3.1263,-0.80143,-1.7967,-0.51549,-0.43586,-1.0196,1.4196,0.23718,1.8644,1.0263,-0.17037,0.10055,0.38036,0.27055,0.69774 1.7249,-3.1184,-0.72678,0.36755,-0.93904,-0.94966,-1.3118,0.40197,-0.67235,1.1919,-0.94939,1.0385,0.29083,-1.1237,0.82313 0.20822,0.42532,1.8777,1.4707,0.97738,1.0523,-2.0126,1.6469,-0.41186,0.35969,2.0116,0.50272,-1.7238,1.5658,0.2624 0.63447,-0.39657,-1.3326,-0.32933,-1.083,-1.7904,0.012113,1.3558,-1.3166,1.095,-0.37184,0.99842,2.3797,0.14379,0.79145 1.5827,-1.6747,0.066467,3.0144,0.39104,1.7825,-0.81082,2.1251,-0.42872,0.45931,-0.27129,0.035669,1.601,0.5494,0.32644 4.4811,-1.939,-0.30921,-1.3737,-2.1005,-0.18082,-0.25266,2.4329,0.68149,-0.88972,-0.34006,0.24206,-0.72038,0.90394,-1.1884 0.55664,-3.2669,-1.4151,1.8011,-0.80743,-0.52444,-1.3421,-0.024526,0.004667,1.1405,-0.2212,0.32087,0.26526,-1.127,0.090441 1.2658,-4.2201,0.3376,-0.71111,-0.13434,-0.58331,-0.76771,-1.3545,-1.4354,1.913,-1.3778,1.5452,-0.62324,-1.0395,-1.3241 2.1968,-0.25622,-0.83797,0.33689,1.2086,-2.3,0.017807,-0.07001,1.0101,0.058316,2.2793,0.025181,1.8346,1.1115,0.47569 -1.0722,0.048368,-0.26941,1.8798,0.88035,-0.13064,-0.15427,2.9663,0.055667,0.39092,0.25947,-0.64974,-1.3872,0.15522,-0.41244 -0.49797,-2.9969,-1.4403,1.5887,-0.49789,-2.589,0.2072,-0.74613,-0.97119,0.34085,0.65766,0.17157,0.14769,-0.70545,-1.0973 -2.4725,-0.37021,-3.1451,0.35722,-1.1892,-0.41771,-0.0042627,-0.46378,0.096242,0.013861,0.61862,0.37599,0.22138,0.27569,-1.053 1.6231,-2.6582,-0.66719,-1.1385,-1.3208,-2.3973,-0.27505,-0.75139,-1.685,0.82457,-1.3844,2.0832,-0.53593,-0.90481,-0.25286 -1.2317,-1.6212,-2.0995,1.7148,1.5305,-2.6678,-0.030821,-0.39268,-0.88093,0.16572,0.22574,1.0289,0.15025,0.26452,-0.023581 1.3552,-2.709,-1.5926,-1.5604,-2.0348,-1.9297,-0.050046,-0.1566,-1.0571,0.18186,-1.1898,1.887,-1.666,-0.26025,-0.62668 -0.46551,2.6475,-1.6683,0.65357,-0.94791,0.25027,1.1185,0.66674,-1.3446,-0.20175,-1.5279,-1.4681,-0.80474,-0.70482,0.74231 2.793,-1.9121,-0.69685,0.3768,0.22069,-2.4705,2.1489,0.087321,-2.8032,0.54135,-1.4204,1.4902,1.5905,-0.85519,-0.62144 0.14742,-2.5396,-0.80885,0.55271,0.3609,-2.6029,-1.3204,0.072414,-2.1051,0.53822,0.74236,2.7893,1.0024,-1.504,-0.012702 1.93,1.0682,-1.9164,-0.28569,-1.5237,-1.6623,-0.38562,-0.70993,2.0184,-0.20583,-0.29693,-0.76361,-0.50998,0.17219,-0.33385 1.7449,-0.49031,-1.4904,-0.70424,-1.1703,-0.45438,-0.72499,0.26258,0.62709,1.1069,3.0607,0.82,-0.07769,0.81315,1.7094 -2.9662,-0.75927,-1.4917,1.2411,0.32397,-0.78927,0.84578,-1.4735,-0.30578,-0.044358,1.2498,0.25511,-0.24547,-0.26157,-0.66905 3.0999,0.76218,-2.0558,0.71745,0.22237,-1.417,0.7681,-0.65464,1.0069,0.83562,-0.56205,-1.9809,-0.16831,0.48939,0.68509 -0.80213,3.1703,1.5022,-0.093802,-1.7468,-1.0687,0.44815,-0.63444,-1.8937,-1.4049,-0.572,0.086588,0.36844,0.89474,0.74202 0.5479,2.2603,-1.2231,0.17358,-1.4011,-0.50094,-1.0106,-0.32809,-0.34656,1.0618,0.073511,-0.20973,0.48879,1.39,-0.056306 0.95686,-0.008633,-1.1806,1.6358,-0.56319,-0.20631,-1.2217,0.65288,0.59479,-0.87462,1.788,0.80159,-0.58729,1.0632,-1.0261 -1.5707,0.27685,3.0294,-0.38552,-1.9255,1.2683,-1.1956,0.55198,-1.1315,-0.81075,1.6809,0.33896,-0.14162,-1.0569,0.030208 1.2742,1.5226,-0.7026,-0.75659,0.62149,-0.66238,-1.4011,-0.17726,1.9756,-0.4233,0.45992,-0.71813,1.9951,0.81778,0.20255 -1.2968,0.060218,0.75294,1.8186,-2.0767,-0.78067,0.6878,-0.045378,0.44407,-0.086291,1.5505,0.91971,0.089653,-0.1502,0.06645 -0.038475,1.8084,-1.5199,2.0553,-0.54323,-0.40253,-0.38663,0.84867,0.41364,1.3659,-0.95462,-0.45887,0.10516,1.0934,0.015282 3.7033,0.65706,0.08331,0.78513,1.3664,-1.6418,1.6575,0.24286,-1.1374,0.27204,-3.117,-1.4566,-0.038008,0.51009,-0.29772 1.9293,1.4056,-1.9404,0.50551,-0.50583,-1.2946,-0.24167,-0.20352,1.4756,1.3322,-0.46453,-1.4223,0.85128,0.5027,0.18291 1.5732,2.2619,-2.449,-1.0407,-1.855,-0.98513,-0.27875,-0.23159,0.74062,0.35848,-0.51006,-1.2914,0.31498,-0.3331,0.14652 1.1081,1.7253,-1.4817,1.0693,-0.38963,-0.40018,0.79041,1.106,0.6497,1.0999,-2.6469,-0.88923,-0.092143,0.33552,-0.65108 0.82848,2.0416,-2.2084,-0.50352,-1.5914,0.43286,-0.47827,0.84036,0.87121,0.64843,-1.7283,-1.0195,-0.15746,0.14325,-0.23875 3.7225,-1.7434,-0.11003,-0.67234,-2.2193,0.40527,-1.4437,2.7421,1.085,-1.1448,-0.75385,0.28777,-0.51489,0.15533,-1.8351 1.7807,1.4443,-0.82278,2.2594,-0.10119,-1.1615,-0.1654,-1.3127,0.18752,0.37805,-1.3674,-1.4143,1.0993,0.49648,0.10058 0.39259,-0.52767,-1.4797,2.1365,0.36147,0.44166,1.3664,0.67387,-0.34218,1.5263,-1.417,-1.1378,0.42713,0.11748,1.1656 -2.1252,1.6786,-1.7843,0.33308,-1.0288,-0.61519,2.3369,1.2768,0.48862,1.0072,-1.2166,-0.39228,-0.44799,0.18804,0.22681 -0.76862,1.5094,-0.60839,1.9886,-2.0003,-0.55387,1.1097,-0.2715,0.018089,0.42888,-0.58813,0.26312,0.31778,1.1614,1.1214 0.37363,1.5402,-0.97759,2.4408,-0.2905,-0.31076,0.76612,-0.52278,-0.5965,1.6177,-1.8807,-0.84321,0.072186,0.1782,0.99006 -2.1041,-1.4677,0.72549,-1.5654,1.886,-1.7015,-0.4529,-0.75082,-0.2949,-0.1267,-0.25537,0.39814,-0.21683,0.1859,0.52605 -0.55301,1.6075,-1.6941,2.8177,1.873,0.48657,-0.64036,1.8994,-0.49001,-0.37542,-0.99287,-1.2436,-0.57783,-0.50632,-0.42735 -0.36709,-1.7211,3.362,0.64097,-1.4155,-1.4344,0.43389,-1.4389,-1.2699,0.92634,1.1871,0.23466,-0.55415,0.14584,-0.8059 4.358,-2.8125,-0.64569,0.88757,-0.28595,1.2081,0.20595,0.93634,-0.42938,-1.7795,-1.3559,-0.42047,-1.2646,-0.21607,-1.347 0.60237,-2.0134,2.8418,-2.4792,-3.1412,-1.3601,1.3455,0.13468,-1.484,-0.9692,-1.1484,-0.84791,-1.5711,0.56949,-0.1041 3.1031,-3.3687,2.8337,0.80265,-1.2074,0.99754,1.7044,-0.46909,-2.251,0.073376,-0.53219,-1.0477,-1.3923,-1.0225,-0.73358 -2.2504,-3.9444,1.3993,-1.9739,0.35237,1.0751,-1.9824,1.8054,-1.318,1.2632,0.13527,-0.37412,0.68438,0.36671,-0.84503 -3.0783,-2.9416,0.36811,-2.2634,0.26691,1.1041,-2.2757,-0.95342,-1.4966,0.88399,0.35791,0.99289,-1.0859,0.34774,-0.13648 2.8643,-2.4482,-0.53895,-2.8363,-1.6684,0.89334,-0.066191,2.1509,-2.8866,1.1091,1.3367,1.9085,2.104,-0.50605,1.0379 -0.047028,-3.137,0.079029,-0.26231,0.023981,-0.11105,-2.9567,-1.0418,-1.0497,1.8702,0.095284,2.3476,-0.76425,-0.16387,1.1585 2.02,-0.9908,-0.94251,-0.73656,-2.3529,-0.30201,-0.11391,0.72644,0.15706,1.5009,0.16749,1.192,1.4349,-0.26108,0.48023 -1.6842,-2.5895,2.7961,0.5907,-0.4145,0.77921,-0.89199,1.6947,0.99414,0.92818,1.626,-0.96832,-1.0504,-0.067532,-0.73266 3.326,-0.65322,-0.89082,0.8466,-0.19014,-0.91728,0.041442,-1.9847,0.63734,-0.088308,1.8988,-1.1246,0.3046,-0.011389,1.9003 -1.2268,3.2937,-0.15438,0.024152,-1.3403,-0.26238,1.2803,-0.41925,-2.8282,-0.78248,-0.93703,-0.709,0.78124,0.81589,0.69417 2.0223,0.61157,-2.2355,-1.8064,-0.55207,-0.47111,0.49457,2.2546,1.4743,1.3229,-0.22493,-0.11806,0.28805,0.55353,0.27044 0.27155,-3.1228,2.2987,-2.6335,-2.8651,0.011709,0.12408,-0.43269,-1.885,0.88086,-1.174,-0.31633,-1.5252,-0.51008,-1.0321 4.9792,-2.8194,-0.73292,-0.0078563,-0.19052,0.88032,0.99992,-1.8526,-2.5363,-2.4505,0.59549,-0.72239,0.28222,-0.64242,-0.26961 0.0090766,2.768,-2.0804,0.67467,-1.1709,0.083789,-1.2792,0.34351,0.16654,-0.47578,0.082452,-0.17472,0.37335,1.0333,-1.0152 -0.38372,-3.8573,2.0316,-1.0174,0.26837,-0.41835,0.63408,-2.0423,-0.99169,1.7957,-0.65871,1.1666,-0.43331,-0.87403,-2.0627 -0.92004,-3.3493,0.41401,-0.24753,-0.59857,-1.1955,-0.6622,-2.0115,-0.197,1.7282,-0.12305,0.90252,0.18561,-1.119,-1.1922 1.8365,-3.7554,1.7981,-0.6692,0.72203,1.9093,0.75725,-1.5508,-2.1596,1.0539,-1.0668,0.036622,-2.1195,-0.6025,-1.9325 1.8616,1.8045,-0.99033,-0.90264,-0.7377,-1.6209,-0.69226,-0.59994,-0.23218,-0.43121,0.81668,-1.165,1.7103,0.82014,0.5498 2.0126,0.92794,1.6213,-0.76405,-3.0091,1.3078,-0.48638,0.30249,-0.80783,-1.8385,-0.205,-0.35351,-0.052579,-0.86878,0.57984 -0.84211,1.5421,0.16842,1.4121,-1.577,-1.0129,1.3465,0.012766,-0.47785,1.4838,-0.85257,0.079321,1.0451,0.75447,0.95907 -1.2409,1.4132,2.6212,-0.26486,-2.741,-0.75783,0.11962,-0.68934,-1.966,-1.6093,0.96605,0.15214,-0.44825,-0.31172,0.77464 -3.7005,0.1478,-1.8225,-0.29412,-1.2246,-0.96922,1.4543,-0.32908,-0.44214,-0.4968,0.88522,-0.079529,0.81924,0.75929,-1.1585 1.2789,2.4056,-2.0557,-1.6631,-0.28539,0.12834,-0.88629,1.5603,0.95063,0.44485,-0.65837,-1.5702,0.02502,-0.61659,-0.0070744 -2.0105,-0.16151,1.1843,0.23521,0.23859,-2.4037,1.817,1.505,1.1501,0.09632,0.016027,-1.3004,0.47398,0.0031327,0.128 -0.84791,1.4666,0.21289,0.65707,-2.6711,-1.4749,1.7413,-0.73165,-0.20349,0.25599,-1.1289,-0.25085,0.5502,0.7682,0.52992 1.5434,1.3346,-1.6549,0.66089,0.1373,-1.3779,-0.84512,-1.2373,-1.2695,0.98213,2.0734,-1.1431,-0.81074,0.34205,0.90087 3.094,-0.59416,0.86032,-1.0188,-2.8973,1.4425,-0.81935,2.6235,-0.27172,-1.0743,-1.6523,-0.10226,0.45589,-0.50584,0.020653 1.9017,0.89454,0.0084581,1.864,-1.913,-0.50499,-0.60112,-0.83079,0.77364,-0.82276,-0.69094,0.019931,-0.7693,-0.33328,0.86477 -2.8199,-0.25368,-2.1635,0.21806,-1.4971,-0.7255,0.75211,-0.72526,0.85539,0.24161,0.88538,0.22123,0.54058,0.50003,-1.1458 -1.7147,3.4078,-0.39967,0.22548,0.67709,0.85333,-1.8383,2.7601,-1.5436,-0.30547,0.42947,-0.0088779,-0.80315,-0.083362,-1.7122 -1.4176,0.57992,-1.4191,1.6715,-1.5182,0.71514,0.63184,-0.58867,0.31173,1.1523,1.0964,0.81047,-0.51042,-0.052561,0.15031 -1.9423,-1.1193,-1.5895,0.46087,-1.5176,-2.1801,0.3972,-1.9425,-0.23569,1.043,-0.1453,0.53181,0.74737,0.35677,-0.64132 -2.4244,-0.85112,-3.4466,0.05854,-1.1054,-1.481,0.27696,-0.87162,-0.01714,-0.30932,-0.80618,0.53154,-0.704,0.41174,-1.2424 -0.95012,-3.0643,0.76534,2.7162,0.38892,-0.40131,0.18228,-0.3277,-0.82083,-1.4762,1.9972,-1.1887,-0.13266,-1.2702,-0.52639 -0.8,1.425,0.93784,-1.3848,-1.4329,-0.53788,0.57746,2.0012,-1.3346,0.64394,-2.1144,-0.90159,-1.8303,-0.77461,2.1033 -1.8274,-2.5008,-1.7567,0.92146,1.9183,-2.5729,0.20147,-0.042858,-0.83287,-0.22841,0.40484,0.72623,-0.70045,0.71959,-1.1464 0.036364,-1.3386,1.6891,2.5915,-0.90013,0.46139,1.33,-1.3756,-1.518,0.18777,1.2995,0.19965,-0.2926,-0.70966,0.84926 -1.0627,-1.3184,-2.8751,-0.23256,0.73302,-2.058,-0.42886,0.61742,-0.35132,-1.1889,-0.71915,1.7461,-0.84159,-0.10348,0.33081 2.5394,-2.3038,-2.1343,-0.19322,-1.8296,0.9226,1.1332,1.2834,0.20465,0.34915,-0.97732,1.5558,1.2837,-0.27237,0.45386 -2.0007,-0.67093,1.8136,0.13133,-0.40979,1.7054,-0.60849,0.94225,0.29681,0.22824,2.5924,-0.32191,-1.2888,0.5583,-0.24885 0.77913,-1.9916,0.93976,1.1862,-1.4898,-1.0998,2.0139,-1.6564,-0.65647,0.10026,0.35932,-0.10901,1.6371,-0.52658,-1.1533 -1.6078,-1.0349,-2.1626,0.80679,2.0863,-1.8091,0.16874,0.43453,-1.4886,2.2254,-0.62893,1.1493,1.3429,1.2973,0.060598 -1.6585,-2.4156,-1.6162,1.8775,0.62798,-1.7265,0.4615,-1.3095,-1.542,-0.31658,1.3906,0.5024,-0.36153,0.2113,-0.95307 1.413,-0.88027,-0.67386,1.9863,0.56347,-1.6092,-0.35646,1.5188,-0.45337,1.9787,1.199,0.72147,1.78,-0.39086,-1.2594 -1.5121,-2.7484,0.81917,2.6053,-0.73401,-0.40431,0.019644,0.34117,0.46129,-0.455,1.4149,-0.39982,-0.68067,-1.2207,-0.58328 0.17494,-0.88006,1.1268,3.413,-0.47127,-1.6672,-0.11099,0.26855,-0.21709,-1.7881,1.3664,0.5075,-0.1122,-0.12332,-0.44491 -0.056749,-3.7134,-1.4384,1.9463,-0.16577,-1.1586,-0.58604,-1.92,-1.2772,-0.50858,0.31562,0.12816,0.29691,-0.63795,-0.032695 -1.4361,-2.4329,-1.7742,1.5548,2.1061,-1.4858,0.57151,-1.0829,-2.0873,-0.22295,1.2569,1.3992,-0.1427,0.70969,-1.171 -1.8374,-2.7994,-0.2907,1.6077,1.7889,-1.7309,0.96849,-1.315,-0.94013,-0.38004,1.4492,-0.064484,0.36105,-0.0073374,-1.1577 3.8908,-1.8568,-1.6778,-2.3382,-1.975,-0.70384,0.58879,0.58309,1.8011,-0.66934,1.0047,0.12645,0.12874,0.12741,0.73018 -1.4723,-3.2907,-0.69284,0.89762,1.9135,0.56578,0.044249,0.062537,-1.2494,-2.2547,1.8492,-0.9327,-0.9919,-0.60816,-0.60739 1.9304,-1.6312,-3.3889,1.4355,-0.7501,1.1259,1.992,0.48524,1.1106,-0.86233,0.63575,1.2655,0.56066,0.7906,0.1121 3.8457,-0.2761,0.37431,1.2043,-1.1305,-1.1209,-1.0771,-1.2639,0.31587,-1.4459,-0.59992,-1.5618,-1.7272,-0.30451,0.43508 4.6433,-2.6063,-2.0643,0.12615,0.17157,-0.39897,2.3891,-0.7047,0.79538,-1.853,0.50548,-0.44053,-0.032617,0.19754,0.67822 4.8098,-2.7875,-1.6411,-1.8886,-1.595,-0.38039,0.98763,1.5391,1.2037,0.092897,0.69824,0.47955,-0.42715,0.59565,-0.122 3.4289,-0.70322,0.36073,-2.2304,-0.97208,-1.7493,-0.95344,-0.58639,0.39541,0.56169,2.0354,0.41653,1.0319,-0.53556,0.24562 -0.20106,1.8678,-2.3652,1.4906,0.1628,-0.04134,-1.5485,1.2413,0.42726,0.071901,0.54881,-0.67651,-0.90947,0.39691,-1.187 -0.5465,-3.1095,0.84799,1.8963,0.48147,1.3095,-0.24483,2.5193,0.3692,0.21074,0.79743,-0.26448,-0.21568,0.1075,-0.72993 -0.98785,0.99523,0.05033,1.6034,-0.85211,-0.55211,0.55966,-1.6225,-2.1292,-1.1934,-0.13858,-0.019718,0.28261,1.441,0.84643 -0.34009,-0.3539,0.071837,1.4673,-2.0064,-1.5145,2.0059,-1.7417,0.72489,0.18422,-0.42788,-0.94113,-0.85534,-0.259,0.92362 5.756,-2.8786,-0.50868,0.10932,1.5009,-1.1465,2.3507,-0.10034,-0.493,-1.7734,-0.47761,-0.0803,0.50096,1.3083,-0.18296 -2.037,2.2442,-0.56478,-0.34767,-1.4666,-0.67938,1.7476,1.2232,-0.45794,1.487,-0.9666,-0.87414,-0.57791,-0.79712,0.79107 -1.4739,2.6402,-0.21523,0.6803,-1.2568,-1.0777,1.0787,0.30011,-0.24595,0.62851,-0.62221,0.61238,0.34953,0.14741,0.95341 -1.7136,0.39171,-2.1479,1.6019,-0.88655,2.0303,0.13888,0.9436,0.17743,0.035575,0.18298,-0.67043,-0.99333,0.31917,-0.9036 -2.5924,-0.95848,1.9328,-1.2936,-0.70861,0.97065,-0.085942,-0.026264,-1.8035,-0.28296,1.7182,-1.365,0.13673,-1.4398,0.024343 -1.0756,-1.3488,-0.97562,0.13662,-2.2872,-0.36188,0.52642,-2.7295,-0.17897,0.74818,-0.67046,-0.7945,-1.0149,-0.99646,-0.021673 -0.24262,-2.4384,-0.18614,0.9695,-0.9571,1.6712,-0.61295,-2.1992,-1.1784,0.66662,0.33417,-0.96405,0.33771,-0.74046,0.59153 -2.2449,0.43704,-3.1663,0.11903,-0.066931,-1.2903,0.0067043,-1.0962,-0.59303,1.0228,-1.2013,1.3418,0.6707,0.61777,0.31222 -0.23544,1.1012,-0.47592,0.3493,-1.6285,-0.73793,-0.12903,0.25546,-1.6136,2.0214,0.017304,-0.16319,-0.69005,0.99368,0.95996 2.6388,-0.58802,1.7553,-0.21737,-3.0091,1.4597,-1.411,1.4623,0.24827,0.1852,-0.93898,0.081877,-0.15457,0.27032,0.52473 3.3468,-1.6832,-1.2771,0.89736,-0.8808,2.7875,-0.66066,-0.077114,-1.6692,0.51885,-1.4207,-1.1127,1.486,0.053844,0.89669 -2.4669,-0.87334,-1.426,1.8654,-0.13531,-0.28923,1.057,-1.1068,0.30898,0.57799,1.1766,0.18561,-0.1292,-0.60753,-0.84606 -1.8946,-0.0084874,0.33559,-0.84647,-3.0517,0.2788,0.4021,-1.1766,-0.19184,-0.32844,1.0029,-0.79825,0.16801,-1.0981,0.45001 5.2911,-4.2614,-0.89158,-0.70234,0.095899,-0.60137,0.75666,1.1571,-0.67402,0.42872,0.90005,0.025896,-0.50637,0.20408,1.7017 0.99365,0.71047,-1.6612,2.8693,0.91931,0.39186,-0.98733,-0.37319,0.37263,-1.5924,1.2483,-0.41233,0.018058,0.57158,-1.0012 1.9985,2.4307,2.1803,0.44832,0.34684,-2.4226,-1.1506,-0.80064,-1.068,0.17694,0.52065,-0.42651,-0.42071,0.65389,0.1531 -2.0778,-0.70749,-0.83034,-0.69559,-2.4727,-0.89627,0.28249,-2.3632,-0.50884,0.29057,0.71472,-0.16436,-0.51611,0.084599,-0.17979 -1.8396,-2.0483,-0.28866,-1.2288,-1.6034,1.5172,-2.2368,-1.1141,-0.54068,1.0062,0.67352,-0.065322,-0.93077,0.5735,-0.078419 -0.92378,0.69869,-1.5881,1.658,-0.69177,1.14,0.46155,1.7842,-0.97006,1.1467,0.50006,0.034739,-1.0465,0.86207,-0.38319 -2.2916,-1.5375,-1.7707,-0.78692,2.0156,-0.35743,-2.0581,-0.26597,-0.98543,-1.3961,-0.14803,2.0849,-1.6634,-0.29842,0.13444 1.4768,-1.2936,2.9573,0.50857,-2.5228,1.0008,-0.41547,-0.40221,-1.0511,0.53085,0.87623,-1.2989,-2.1135,0.60169,1.2027 2.6431,-2.5277,1.3084,2.5954,-1.0839,1.9904,-0.53612,0.71843,-1.4514,0.55336,-0.46984,-1.1839,0.69921,-0.14334,0.88919 0.51421,-1.7134,-0.3427,2.4384,1.8427,3.0794,0.41955,2.2627,-1.3012,-0.51951,0.91584,-0.93255,2.1896,1.1204,0.17493 1.9566,1.6271,-0.018223,0.21066,-1.076,-2.4851,0.89389,0.42774,0.74562,-0.24537,-2.0098,-0.60318,-0.24051,1.3142,-0.44784 -0.21433,-1.76,1.19,2.1167,1.2188,-0.46265,2.2935,-1.8657,-3.3019,-0.6583,1.8127,0.30403,1.5659,-0.13512,-0.50145 -0.24191,-2.8331,-1.9132,1.7494,-0.19695,0.34746,-1.4894,1.5137,-0.019527,0.1633,-0.50224,-1.3166,-0.95824,-0.20775,0.2606 -1.8482,-3.4689,-0.30096,0.16748,0.69209,-2.6345,-0.37537,0.45435,-0.4728,-0.023257,1.1714,0.67905,-0.011606,-0.43121,-1.7042 -2.6595,0.33185,-0.22976,2.1802,1.183,-0.0628,1.6212,-0.48618,-1.067,-0.064202,1.3013,-0.62727,-0.67358,0.61107,-0.23259 -0.072891,-2.2784,3.0088,0.49548,-0.92237,-0.30587,-0.54978,-1.5804,-0.62263,0.70774,1.6716,-0.62176,-0.81979,0.023043,-0.61961 2.1881,2.5825,-0.49524,0.29084,0.018072,-1.9426,-0.11849,-0.20228,1.0018,0.64343,-2.3828,-1.4045,0.45067,0.24385,-0.73253 5.4043,-1.1659,-1.409,0.14798,0.95256,0.29341,1.8002,-0.79457,-0.21145,-1.4721,-0.41939,-1.4921,0.29615,-0.16052,0.11645 0.52092,-3.2057,-0.84663,1.6135,1.3445,0.39319,-0.60906,-0.77615,-1.2178,0.13178,-0.30813,1.4711,0.72894,-2.4494,-0.40393 0.66424,-3.1313,0.18074,2.6943,0.55037,1.9176,-0.58012,0.35238,-1.3297,0.37088,1.7834,0.044674,0.39968,-0.5213,-0.18331 0.46184,0.77943,0.87041,2.8886,1.9402,-0.66979,0.74749,1.6973,-1.8896,1.8259,0.13984,0.41796,0.55688,1.0361,-0.8667 3.1213,-0.079235,1.3981,1.2747,-0.89217,-0.0293,-2.8744,-1.3965,0.13805,0.29542,0.23811,-0.5226,-0.91858,-0.085838,0.092341 3.4222,-2.9699,0.034725,1.428,-1.6766,1.199,1.5976,1.0784,-0.57554,-0.83579,-1.0223,-0.30401,-1.8103,-0.69886,-0.96222 -2.6672,-0.02835,-1.9956,-1.2709,-0.60433,-1.6122,-0.14388,-2.0029,-1.8008,0.48112,-0.19065,0.95457,0.33212,0.66625,-0.10469 1.8183,-3.1217,-2.8122,2.313,-0.31734,0.96316,1.8764,0.25901,-0.14494,-1.2445,-0.029683,1.5011,0.81701,0.91479,-0.0013047 -0.60926,-1.663,-2.1333,2.1208,-0.15976,-1.985,0.98848,-1.6119,-0.60134,0.58112,-0.32974,0.058125,1.2794,0.22564,-0.42463 -1.7801,-1.9125,-2.0684,1.9384,-0.44977,-1.3105,0.7971,-1.5229,-0.79794,-1.1698,0.58255,-0.99372,-0.92653,-0.32394,-1.033 -1.4798,-2.0223,-0.95777,2.6,-1.2193,0.036247,1.1998,-0.88545,-0.38746,-1.6304,1.0419,-0.87493,0.50898,-1.2906,-0.32962 -2.1194,-0.68742,0.08652,1.8593,-0.42864,-1.9195,2.0135,-0.037932,0.42245,-0.30819,1.2826,-0.82583,-0.63673,0.87569,-0.69135 1.8116,-0.4418,0.39518,2.5376,-1.3915,-1.2496,1.3904,-1.2733,0.23923,-1.2617,-1.888,0.099878,0.04538,-0.54234,-0.36452 -1.1668,-1.1765,-1.1817,-1.1853,-0.88381,-2.6744,-0.52774,-2.1339,-1.4969,0.89171,-1.1313,1.3856,1.2405,0.80302,0.97438 1.6544,-3.2436,0.40031,1.5002,-1.2809,2.2408,0.068626,-0.66755,-1.3907,-1.276,-0.66412,-1.323,1.1467,-1.9221,0.1298 1.7857,3.2851,1.5435,-2.0875,-0.50788,-2.0338,0.54316,-0.15615,-1.6458,-1.0904,-0.47006,-1.6121,-0.73744,1.043,1.0817 -1.9257,-1.0385,-1.0165,1.1078,-0.72237,-2.125,0.77485,-1.6223,0.54069,1.1551,0.28116,-0.75145,0.86812,1.0352,-0.52002 1.859,0.55445,-0.6296,-0.038607,-1.7868,-0.36999,-0.30936,-0.15778,0.5316,-0.99974,-0.70408,0.13696,1.5931,0.47363,0.11335 1.7226,1.3431,-3.014,-0.66646,-1.177,-0.91332,0.46106,-0.15297,1.9235,0.13281,0.20784,-0.41028,0.97302,-0.061052,0.12549 -1.2903,1.1835,0.64903,1.8454,-1.3079,-2.0545,0.6724,1.1248,0.62788,-1.3546,0.50087,0.39128,-0.39857,1.3618,0.13209 -1.1942,-3.1138,0.85298,2.2655,0.12708,-1.3326,0.81175,-1.6964,-0.84909,-0.83783,0.58057,-0.57063,0.86096,-1.5598,-0.93769 0.074595,-1.3694,1.6563,1.5378,-1.4051,-2.3687,1.8374,-1.7026,-0.20736,0.56723,0.21387,-0.61884,0.65661,0.033272,0.074289 2.7309,1.5666,1.2863,-0.59946,0.16164,-2.5224,-1.5891,-0.93769,-1.1053,-0.34456,1.8946,-0.65107,0.032845,0.53633,0.44185 1.1038,-2.1525,1.0003,2.5381,-1.0602,-0.6025,1.3748,-1.5713,-0.48488,-0.55901,0.46846,-0.60939,0.77826,-0.99333,0.31474 3.7359,-1.3099,-0.061154,-0.73922,1.2811,-0.63163,2.2728,-2.1122,-2.4324,-2.1435,-0.19292,-0.55954,2.14,0.3777,1.3657 2.4812,1.7119,-1.7119,0.082333,0.6774,-1.9049,0.34158,-0.48996,1.4032,0.38404,-0.47543,-1.4255,-0.1303,0.45083,0.54642 -2.0811,-1.1732,-2.2131,1.4324,0.74409,-2.4378,0.16873,-0.92079,-0.47621,0.94555,-0.69038,0.22949,0.83068,0.68531,-0.29522 -0.31402,1.2834,-0.2791,2.0804,1.2462,-0.11489,-0.79576,-0.83,-1.048,-1.5192,0.52425,-0.42139,1.3375,1.0806,-0.12029 -0.82986,2.2135,-0.21587,1.8205,-1.3361,-0.79073,-0.10549,-0.16627,0.01497,1.0043,0.0047121,1.3759,0.063245,0.94972,0.018831 0.41539,0.41061,1.0744,0.31622,-2.8517,-1.5303,1.7518,-0.37785,0.12758,0.48904,-0.76555,0.35855,0.69015,0.35128,0.35751 3.2299,-2.7497,-1.2081,-1.8536,-1.1997,-1.3759,2.541,1.7696,0.76173,-1.1237,-0.85971,2.6886,1.1409,0.52165,-0.77919 0.82676,1.321,-1.0725,0.57069,-0.48877,-0.2056,-2.5346,0.25412,0.62825,-0.093833,2.8648,-0.47214,0.54643,0.31181,-0.92197 1.7011,-1.3031,-0.91806,0.64837,-0.1625,-0.045426,-2.3858,2.0639,1.5339,-0.5044,0.98874,-0.35768,0.82153,-0.04576,-0.59304 -0.78004,-2.4888,0.16749,1.3444,0.65416,2.7433,-0.62574,-1.0639,-0.71416,0.48813,1.5271,-1.0834,0.42648,-0.36202,-0.058146 2.4222,-1.467,-2.2145,-1.4448,-2.1856,-0.67118,1.4466,1.7387,1.5248,0.049227,0.23731,2.1408,0.45548,-0.10998,-0.33714 0.25709,-1.2512,-2.2306,0.27991,-0.93822,-1.2023,2.0776,-1.1849,-0.42567,1.3977,-1.8665,0.16955,0.70516,0.22939,-1.6255 4.5839,-2.5423,1.113,0.99724,-1.4281,1.558,0.37192,1.926,-0.86351,-1.4967,-1.9938,0.14083,-1.6608,-0.1057,-1.45 2.8335,1.6269,1.528,0.46971,-0.58228,-2.2069,1.3743,0.49351,-0.3379,0.2438,-2.7367,-0.57287,-0.20018,0.92963,-0.38897 0.12637,2.3073,1.4173,0.19654,-0.56982,-0.32098,-0.43862,1.4382,-1.853,2.1989,-0.62146,0.028575,-0.52127,1.7955,0.57172 -2.0259,-0.2838,0.12855,0.85752,0.73783,-2.0606,1.8721,2.1837,-0.78908,1.9087,0.23839,-0.73119,0.99613,0.57565,-0.51729 2.3861,0.4914,-0.1581,1.5396,-1.2992,-1.7835,-0.73104,-1.8673,0.7691,-1.1434,-0.74805,-1.1466,-0.59765,0.45047,0.23624 4.3819,-2.7727,-2.3701,-0.042686,-0.26583,2.8368,1.0445,-0.024877,-1.588,-1.3739,0.47406,0.021491,0.48405,0.40726,-0.26545 0.3032,1.9131,0.5114,1.1564,2.3332,-2.5908,-0.12187,2.8279,0.00054403,-0.94911,-0.36728,-0.73091,-0.31013,0.95651,-0.46662 0.45998,1.6248,0.51345,2.1833,2.8246,-1.2933,-0.48478,2.9272,-0.45124,0.19432,-0.25226,-0.62441,-0.58109,0.70776,-1.5469 4.3452,-3.6474,-1.095,-1.1744,-0.85668,-0.24362,1.2069,2.4599,0.25974,1.09,0.37443,0.47,-0.98331,0.91298,1.4239 -1.8766,-0.13175,0.49231,1.3272,1.8651,-0.66069,1.7607,3.1352,-1.3794,2.0131,0.50053,-0.57691,0.087445,0.90514,-0.21787 -1.2634,-0.75788,-0.35998,2.1711,3.033,0.049223,1.2094,3.1817,-2.0707,1.1446,0.45909,-0.35207,0.073388,0.073406,-0.43232 2.7926,-0.0093758,-2.462,-3.4061,-0.19031,-2.0276,1.9727,2.1569,0.93373,0.2247,1.5823,1.5538,0.57267,-0.6406,1.0579 -1.733,-2.6656,1.8442,0.89822,-0.045693,-2.8262,1.3059,1.0048,-0.96094,-0.9466,2.1268,0.086579,0.37596,0.065263,-1.3883 -1.3794,-0.65085,1.0125,0.76866,1.5464,-1.8701,2.985,1.9521,-0.29176,-1.7279,-0.091642,-0.63398,-0.68826,1.3957,-0.5771 3.3509,-0.81031,0.80987,-0.76217,-2.0495,1.1267,-2.11,2.4757,-2.5181,-0.60985,-0.094952,-0.28648,1.7617,0.25868,0.03393 -1.8581,1.9311,-0.28507,2.1118,0.78206,-0.60496,0.57683,2.1757,0.96623,0.72992,-0.8668,0.10555,-0.45574,0.5764,0.072706 4.2871,-3.3283,2.3325,1.4163,-0.79188,3.0933,0.51495,0.82221,-3.2578,-0.6029,-1.6483,-0.13249,-0.54455,-0.21582,-0.81526 -2.0292,-2.7516,-0.76208,0.49684,2.5327,-3.1438,0.25165,0.18368,-1.8568,0.023531,0.29213,0.71334,0.32251,-0.029727,-1.3576 5.0531,-3.4493,-2.1555,-0.036258,-0.45099,0.78503,0.56198,1.2917,0.57713,-0.26398,0.61652,-0.69606,-1.0642,-0.016351,-0.24767 -0.026213,-0.19109,1.0558,2.2146,1.4347,-2.4638,1.1587,2.3079,-0.31054,-2.4263,-0.0071104,-0.13022,-0.8409,0.999,-0.153 -2.757,0.94358,-0.49042,0.59537,0.0060258,-1.4812,1.5977,2.3663,-0.0049893,0.73609,-0.23648,-1.0356,0.16197,0.3707,0.2614 -1.9337,-0.20296,1.2138,0.68109,0.6378,-2.9146,1.85,2.02,-1.3676,0.089032,0.72061,0.28051,1.1155,0.90946,-1.018 -0.34292,2.1441,-2.3613,0.41596,-1.7887,1.0796,0.63673,1.4836,-0.77669,-0.028297,-0.89572,0.14559,0.46105,0.29063,0.58801 -2.4832,-0.7503,1.3468,-0.93459,-0.0059242,-2.8679,1.942,1.7838,-0.58116,-0.98931,-0.27463,-0.95028,0.02343,0.26711,0.39232 -1.7981,-3.6993,0.19388,0.1096,-1.1831,-1.529,-0.68998,0.78586,0.13497,0.44799,0.54011,-0.39622,-0.24458,-1.1897,-1.3564 -1.7018,1.7236,-0.33252,1.8443,-0.26692,-0.20328,0.42544,1.2651,0.14318,1.7435,0.14153,0.89017,-0.67082,0.64989,-0.068163 -2.5016,-3.7319,0.14288,-0.56825,-0.36781,-2.7679,-1.3675,-0.49389,-1.2092,0.2348,-0.0082758,0.31931,-0.056076,-1.6665,-1.0031 -0.11846,-0.41264,3.268,-0.86848,-2.4589,2.0101,-0.88561,1.0108,-0.23779,1.5219,0.80561,-0.23133,-0.21875,0.62759,0.75339 -0.39965,2.725,-0.0051175,0.86804,-2.0513,-1.3596,-0.013848,-0.48224,-0.84226,-0.9214,-0.66422,0.32611,0.029834,1.5626,0.40607 -0.12897,-1.5259,2.5607,1.1147,-0.89685,0.81086,-0.67747,3.0825,0.27491,1.5317,0.25585,-0.52355,0.54407,0.59881,0.10687 1.8325,-2.7944,-0.69029,1.4652,1.522,1.7498,0.091985,-0.13183,-1.5542,-1.8838,3.128,0.80872,2.0664,0.37276,0.86667 -0.20726,0.89674,-0.77001,0.31077,-2.577,-0.91966,2.6484,-0.0027976,0.42036,-0.83533,-1.4474,0.3923,-0.16544,-0.63529,-0.72756 -0.31662,-4.9757,0.12761,1.7524,0.37743,-0.71467,-0.68168,2.1182,-1.5145,0.18085,0.43775,-0.63379,-0.48913,-1.129,-0.42626 0.24827,-4.6279,0.96947,1.3738,1.4166,0.59529,-0.65587,-0.81369,-2.3655,1.1135,0.71612,0.75814,0.46482,-1.1062,-1.2198 -0.085709,-4.0392,0.55422,0.55237,-1.47,-0.34129,-0.60099,0.57815,-0.16462,1.4457,-0.26801,-0.11234,0.69494,-1.2187,-0.66588 0.059855,-4.0882,0.44553,0.8012,-0.41388,-0.84196,-1.054,1.2334,-0.36642,1.369,0.10855,0.26991,0.61667,-1.1124,-0.415 3.7058,-0.274,-0.24368,0.59368,-1.8495,0.10291,-1.1001,-0.37508,1.047,-0.69925,-0.51345,-0.95701,-0.36234,0.41009,0.0008416 0.04779,-3.1151,0.458,2.543,0.36064,-1.7511,-0.43276,1.6983,-1.8212,-1.5975,0.79483,-0.21874,-0.62812,-1.4375,-0.2549 1.6605,0.85419,-2.2667,-1.2479,-1.8465,-0.65791,-0.85519,-0.034895,0.92214,-2.2868,0.84883,-0.014745,1.2633,-0.21119,-0.79036 3.2935,0.39598,0.023212,-0.23461,1.8315,-2.668,1.1532,-1.1451,0.24359,-0.11629,-0.67957,-1.3258,0.44029,-0.0047858,1.0492 0.44392,1.6729,-0.88303,3.3071,2.522,-0.33746,-0.56737,1.0033,-0.65543,-0.049105,0.25788,-0.8251,-0.33079,0.78698,-1.377 0.82355,-2.8079,-0.4342,-0.24641,-0.4933,-0.61547,-1.9473,1.5228,-0.3238,1.3203,-0.38473,1.3472,0.64632,-0.57666,0.99022 3.7936,0.96341,0.34226,-0.75816,0.27156,-2.7974,0.36139,-1.2724,-1.7929,0.44493,1.0628,-1.3907,-1.1342,1.3737,1.5561 -1.5521,-4.2105,1.2743,-1.359,0.80353,0.30946,-2.3074,0.5352,0.19079,2.2017,-0.42443,-0.31625,-0.23442,-0.14068,-0.33493 -0.5097,-5.0826,-1.1291,0.51697,1.2441,-1.2069,-1.6308,1.1212,-1.6489,-0.15185,-0.9534,-0.077374,-0.60689,-1.2779,-0.080826 -0.50787,-3.5915,-0.78504,-0.024975,-0.31046,-2.243,-2.6567,0.2499,-1.3478,0.65898,-0.46972,1.8222,0.094173,-1.2211,0.56092 -0.9451,2.4691,1.3139,1.2567,-0.88316,-2.5273,-0.088137,0.19278,-0.3607,-0.011685,-0.39074,0.44382,0.81852,1.2821,0.10237 0.11141,0.16877,2.8835,-1.5185,-3.2605,-1.3605,0.90471,-0.68178,-1.5894,-1.5925,-0.74667,-0.19442,-0.66345,-0.49531,0.32958 4.6544,-2.796,-0.22478,-1.5525,-0.70356,-0.46977,1.4765,2.0194,-1.9193,2.0638,0.44916,0.9515,-0.072201,1.0867,0.6953 -1.965,-1.4756,2.9164,-1.2562,-1.9719,-0.65971,-0.1195,-1.2074,-1.1499,0.18469,0.56916,0.31285,-0.7129,-0.9717,-0.063359 -0.8339,0.065081,-0.72254,1.6688,-2.5948,0.75918,0.96703,-1.463,0.39112,0.75647,0.40369,0.1145,-0.58236,-0.71774,0.68667 -2.0113,-3.437,0.5456,0.0178,-0.39402,-1.2082,-1.3687,-2.2505,-0.33112,1.4979,-0.21851,0.14522,-0.60216,-1.3235,-0.20766 1.8342,1.727,-2.2735,-0.70554,-0.97151,-1.6518,0.065788,-0.87071,1.3563,0.85104,0.34979,-0.96542,0.080845,-0.003252,0.9851 3.8279,-3.0869,-1.3251,0.39099,-0.26757,-1.1965,2.5575,0.53218,1.0965,-1.2786,0.69857,0.89521,0.058024,0.61513,0.59563 -3.5769,-0.42431,-1.2846,-0.62362,-0.95855,-1.6067,0.51992,-1.794,-1.0712,0.26527,0.47429,0.48332,1.0961,0.75619,-0.71004 1.8168,-1.3657,3.2863,1.7573,-1.7432,-0.17833,-0.48802,-1.1197,-0.75062,-0.79751,-0.071686,-0.92622,-1.3333,-0.20934,1.0076 -1.4036,-1.2705,-0.94547,0.55236,2.0211,-1.3432,0.27781,-1.8077,-1.7504,1.5609,-0.58755,0.77382,1.3069,0.76498,0.1886 -2.1922,-1.1127,1.2244,-0.49234,-2.5784,0.14452,0.31856,-2.2097,-0.65677,-0.22086,1.0729,-0.17424,-0.52051,-0.299,-0.33387 2.4349,-2.7421,2.7411,1.195,-1.2954,1.6982,0.59557,1.3765,-0.72477,1.9312,-1.2241,-0.77685,-0.16754,0.28003,0.047339 3.2441,-3.1563,2.1112,0.74387,-2.0648,0.61499,0.36159,1.9123,0.0017075,-0.5786,-1.7816,0.022595,-1.0568,-0.82559,-1.5095 -1.3357,1.2832,1.6239,-0.032302,-0.92625,-2.3127,1.8759,-0.6402,-0.88017,-0.43835,-0.90838,-0.64939,-0.88359,0.94256,1.0582 -0.0054946,-2.6229,2.5293,1.9028,-1.0933,-1.4177,0.65249,-1.2376,-1.0362,0.19783,0.43169,0.3228,0.0735,-1.5703,-0.47601 4.2194,-2.042,-2.5698,0.061429,-0.089543,0.7325,2.216,-0.3237,0.73514,-1.1703,0.7111,-0.17936,-0.05767,-0.27403,0.72847 -2.1824,-0.7511,-0.87298,-2.2243,-1.2344,0.36608,-0.17132,-2.0721,-1.4769,0.14441,0.29522,0.34898,0.4355,-0.13778,-0.52597 -0.61117,-2.9595,2.6663,-1.0326,-2.6695,-0.44393,-0.12991,-0.92847,-0.20018,1.1855,-0.12254,-1.085,-0.88608,-0.64236,0.21995 0.9124,0.045238,-2.6425,1.9097,-0.18006,0.74246,0.28154,-0.078031,0.54161,0.7203,0.98947,0.33591,0.93853,0.5688,0.25234 -1.429,-0.078513,0.74405,-0.048489,-2.5334,-1.408,2.0467,-2.0765,0.039646,0.80378,-0.40509,-0.42994,-1.092,-0.24346,0.28203 -1.0212,0.25786,0.40702,0.85653,-3.1216,-0.32256,0.83125,-0.73968,0.35365,-0.75861,0.39966,0.026015,-1.1252,-0.15729,0.81486 2.491,0.36697,2.7871,-1.7218,-2.9653,-0.49619,-1.1817,0.78574,-0.8301,-2.0288,-0.87297,0.28801,-0.014573,-0.25219,0.41129 0.30602,-3.0525,3.1384,1.8841,-0.61378,1.0502,0.28291,-0.92962,-0.82539,0.853,0.95891,-0.38559,-0.62208,-0.95174,0.45007 -2.729,-0.30383,-1.6529,1.1508,-1.0296,-1.1955,1.0171,-0.80241,0.51412,0.72271,0.87109,0.13304,-0.3563,0.88778,-1.2871 0.80193,1.2487,-1.5647,2.5769,1.1979,-1.1009,-0.53038,0.36237,0.057654,-1.6084,0.57824,-0.37641,-0.72255,0.78232,-1.5678 1.5602,2.2833,-1.0934,0.80864,0.67371,-1.5832,-0.91617,-0.22284,0.21618,2.1745,0.15632,-1.6026,0.19155,0.4027,0.55128 -2.4832,0.99854,-2.7099,-0.63374,-1.3681,0.58115,1.6239,-0.95754,-1.4849,0.63925,-0.33823,-0.50674,0.83343,0.37498,-0.43639 -1.6996,-3.5288,0.85821,-0.72284,-0.743,0.43371,-2.6526,-1.5381,-0.77036,2.1533,-0.36749,-0.17718,-1.2843,0.29274,0.60465 0.25609,1.3956,0.51059,-0.12869,-3.677,-0.28436,-0.4397,-0.17263,-0.1238,-0.99156,-1.0173,0.63401,-0.75318,-1.0085,0.60176 3.0142,-0.42313,-0.38328,-1.468,-1.896,0.69055,-1.8706,0.93735,-0.58389,-3.0675,-0.61528,-0.75706,0.31259,-1.0973,-0.66854 4.1836,-0.8579,-2.1885,0.1702,-1.2316,1.0041,-0.41419,0.53941,0.1167,1.8857,-0.70439,-1.52,0.51236,0.73402,0.38713 0.77093,1.0627,-1.0099,1.6804,2.4911,-1.7301,-0.67367,3.122,-0.32784,0.43347,-0.57364,-1.3898,0.43705,0.020121,-1.2333 1.2042,-0.092003,1.7353,-0.45107,-3.2135,0.86596,-0.59777,0.22769,-0.087079,-2.004,-0.48376,0.14489,0.27077,-1.2247,1.1376 0.27742,-2.8424,1.0909,-2.059,-2.7872,2.1273,0.0076407,0.52292,0.034697,1.4926,-1.016,-1.4345,0.6076,0.29613,-0.64976 -2.4468,-1.479,-0.18308,-0.25428,-1.9591,0.68753,0.47823,-0.73522,-0.70732,-0.9852,0.71372,-0.31675,0.93484,-2.1444,-0.93344 -1.5189,-0.19315,-0.58339,0.0024905,-2.7085,0.64745,0.442,-1.0247,-0.10774,-1.4847,0.72222,-0.49244,1.3914,-1.3675,-0.071561 -0.99451,-1.5552,-0.043738,-1.4207,-1.8649,2.5231,-0.97978,0.63253,-0.6543,0.51033,-0.24978,-1.5395,2.19,-0.10523,0.0096388 0.082994,0.14721,1.1258,0.22535,-2.7624,1.7711,-0.62315,0.4337,-0.6819,-1.6131,-0.38961,0.21619,0.75424,-1.746,1.0388 5.0476,-2.9007,-1.7737,-1.4098,-0.61356,-1.113,3.1742,0.99756,0.88559,-0.25599,0.96047,1.5549,-1.0678,1.136,0.56297 0.045046,-0.70482,1.2429,-0.59058,-2.194,2.5282,0.076513,1.4678,-0.6397,0.6631,0.63077,-1.0095,2.3254,0.053088,-0.051758 3.4928,0.96307,-0.91368,-0.98937,0.19406,-1.6336,0.87209,1.315,-0.191,0.37421,-1.2715,-0.95022,1.5547,-0.025502,-1.3679 0.38886,2.2718,-2.2145,0.39058,-1.5706,-0.11563,-0.94417,-0.18197,0.96791,0.54235,-0.50671,-0.80543,0.80437,0.58252,0.0083791 -0.94109,-1.7845,-0.46798,-0.1891,-1.522,1.4355,-0.87453,2.5023,0.25525,0.70283,0.51177,-1.3293,2.2437,0.47247,-0.65804 -1.553,-1.8206,-2.2866,-0.81028,-0.080041,1.8991,-1.4919,1.1673,-0.78714,-0.56734,-1.0672,-0.8742,0.86592,-0.27615,0.82375 -1.5183,0.067071,-3.2723,1.6376,-0.18019,0.52751,1.0329,0.074054,-0.31722,0.80068,-0.18201,-0.89198,0.53482,0.59621,-0.034695 -1.8122,1.2585,-0.62959,-0.21894,-1.542,0.097815,3.0474,-0.97698,-1.4003,-0.78006,-1.1465,-0.20392,0.4426,-0.50844,0.4966 -2.2767,1.1571,0.11764,1.1936,-0.82244,-0.20553,0.67994,1.3492,-0.35575,-2.6968,1.0074,0.4881,-0.44522,-1.0343,0.0027493 -0.88616,1.308,-1.9748,-0.95582,-2.153,0.89027,1.7849,1.0554,-0.62596,0.63798,-0.80382,-0.73039,0.18295,0.54524,0.93023 -1.2048,-0.2449,-1.4219,2.4674,2.4642,0.62639,1.6379,2.9164,-1.9759,0.27323,-0.062037,-0.67034,-0.45513,-0.2042,-0.017767 1.3841,-2.9533,-1.315,2.0712,1.5565,0.57886,0.53817,1.4049,-0.22442,-0.3549,2.16,1.4082,1.137,0.49841,-0.090026 -1.3281,-1.4864,-1.4741,1.2355,3.7072,-1.5863,2.684,1.1739,-2.4839,-0.016406,-0.85191,-1.3831,1.4044,0.01746,-0.66975 -0.80293,0.68142,-1.1412,0.52722,-2.0132,-0.25942,2.4837,-1.0774,-0.2799,-0.0068939,0.16353,-1.1467,-0.3568,0.96094,0.69457 -0.94697,-1.6891,-0.87099,1.5751,2.199,-2.9072,2.8663,1.2289,-2.3578,-0.57261,-0.18293,-1.2092,0.68937,0.54281,-0.16005 1.2311,-0.027486,1.8246,2.2129,-0.20338,0.67986,0.04337,-2.5511,-1.6486,-2.0412,-0.10891,0.53573,0.80527,-0.65536,0.27864 -1.8638,-1.7184,0.19802,-0.92612,-1.0965,-0.73001,0.00048069,-1.0707,-2.0342,0.68913,1.9244,0.49003,0.87042,-0.15111,-1.4176 0.29837,-1.3105,-0.82596,-1.9657,-0.5046,-1.941,0.04875,-1.8199,-1.8222,2.2188,-2.2235,1.4941,0.71577,0.84115,0.093927 0.87444,2.5523,-0.34122,-1.5722,-0.90111,-0.01753,-0.84192,1.8803,-1.0892,-0.07186,-1.1902,-1.7547,-0.52906,0.90865,0.32932 1.0161,1.1395,1.7018,-0.13849,-2.7925,-1.2883,-0.73162,-0.56905,0.17572,-0.89881,-0.17686,0.64482,-0.046544,0.27435,1.1947 1.4163,-0.269,-2.4603,-0.949,-0.72056,1.2241,-0.11916,0.82442,-1.177,-0.067422,3.1152,0.73206,2.1423,-0.70108,1.0108 -2.3024,-1.4418,1.838,-2.3157,-0.99493,-1.1271,0.041285,-1.8131,-1.2943,0.59741,0.88589,0.2131,0.31553,0.97709,-0.30078 3.6196,-1.7914,-1.0198,1.3926,-1.0874,0.6706,-0.4122,-0.82026,0.29572,-0.26218,-0.53559,-0.83636,0.18636,-0.34789,0.15443 -0.97415,0.9352,-2.8241,-0.21311,-1.8567,1.5075,1.067,0.91993,-0.7037,0.62675,-0.52413,-0.40424,0.18772,0.003626,0.63558 0.86671,-1.7079,-1.433,0.15692,-0.79969,-0.84081,-0.14266,0.98708,0.37953,0.17371,2.3019,2.0084,0.084566,0.93305,0.78088 -1.394,-1.6672,0.42258,1.5484,-0.011229,-0.67909,0.71733,-0.72306,-0.8516,1.4008,2.7654,-0.22664,-1.0222,0.53895,-1.4539 0.97107,2.906,0.21813,-1.5319,-0.26493,-1.3548,1.0681,0.23418,-1.6456,-2.3507,-1.9315,-1.4385,-0.86497,-0.51093,-0.24854 -1.8222,-1.3769,-2.0866,0.80132,2.663,-3.3182,1.1988,0.54088,-1.6952,0.15608,-0.74733,-1.2225,-0.19962,0.92262,0.073149 2.1607,0.8671,-0.070561,0.35743,-0.62648,-1.2963,-2.0439,-0.7057,0.0084329,-0.50339,2.4024,-0.71941,-0.76616,1.2992,0.0004451 -1.0162,-1.0938,-0.73459,-0.16444,0.45389,-2.044,-0.83517,-1.3473,-2.2092,2.6564,0.098939,1.2408,0.22484,1.2199,0.073837 3.4327,-0.093305,-1.2568,-2.4802,-0.47239,-2.6008,0.62006,0.060913,-0.1378,1.0304,1.5412,-0.1998,-0.89342,-0.23557,2.2569 3.6527,-1.9458,1.018,1.229,-1.4739,2.7051,0.26808,0.40448,-1.6763,-0.74065,-1.6221,-1.8621,-1.3458,-0.18408,0.11155 -1.6941,-0.74467,0.13355,1.7264,3.5896,-1.1397,2.3682,0.6216,-2.081,0.0048498,0.38701,-2.0767,1.3036,-0.21576,0.71888 -0.38454,-3.1082,-0.32167,0.7354,-0.63565,-1.5826,1.0612,-2.4038,-0.0069009,0.71031,-0.85698,0.2046,1.2464,-0.086327,-1.0805 2.7732,-2.8009,-1.5101,-2.3128,-2.5717,0.093061,0.6835,3.207,-0.57148,-0.0020724,-1.2897,1.5805,0.84466,-0.77414,-0.9743 -1.1699,-3.9483,0.39633,1.3287,-0.4794,0.24265,-1.2832,0.96423,0.71504,1.1208,0.34555,-0.89364,0.11567,-1.2199,-0.9089 0.36914,1.2341,-0.98355,3.1283,2.1946,-1.5497,0.16694,1.2707,0.15132,-1.5357,-1.0121,-1.4247,-0.41322,0.88354,-0.14183 3.2642,-1.3196,-0.060623,1.691,0.84229,1.6191,-1.9801,2.0377,-0.84803,1.5932,1.1459,0.52381,2.2169,0.87358,-1.3178 1.5049,0.57678,1.4906,0.47176,-0.1303,0.075276,-1.0361,-1.5465,0.010429,-1.3942,-0.40653,0.49823,-0.60875,-0.321,-0.37198 -1.463,2.8294,-1.1989,0.88913,-1.7703,0.90928,0.25311,0.60579,-1.0445,0.28803,-0.26139,1.1483,0.45111,0.3025,-0.12276 -0.67691,-2.0437,-2.8808,0.38015,0.083069,-0.94813,-1.1207,0.88852,-0.69627,-0.0058491,-1.2411,0.37268,-1.513,-1.3717,0.096071 -1.4303,-1.9022,-2.7784,0.18371,-0.21041,-1.9639,-1.5354,0.7909,0.2265,-0.2663,-0.76691,0.78751,-1.2741,-1.0936,-0.11164 -2.0229,1.6234,-2.6612,0.49839,-1.6477,1.9583,0.75021,1.5483,-0.86025,0.38451,0.34871,0.41196,0.10223,-0.30408,-0.21462 -0.26677,-3.8871,0.70734,2.32,0.85984,1.8049,0.039611,2.2963,-0.24993,0.89698,0.90874,-1.4987,0.018524,-0.066516,-0.85566 -1.247,-2.3536,-2.7832,1.4616,1.0202,-1.8601,-0.37773,0.067503,-0.66301,-0.98417,-0.74978,0.23719,-1.3871,-1.0449,-0.25395 0.71036,1.2942,-1.5419,2.9923,-0.20312,0.21241,1.2097,-0.17502,-0.2212,0.13523,-2.5114,-0.73687,0.49254,-0.0068842,0.42166 3.2393,-1.0889,-1.3496,-0.39804,-1.0839,0.07199,0.040099,0.027372,-0.29118,2.8174,2.2983,0.23693,-0.32849,1.1984,2.8393 -0.51961,-2.0285,-3.2192,1.8441,0.83743,-1.7998,0.029569,0.60623,-1.6913,-0.72614,-0.65519,0.69791,-0.21047,-0.89306,-0.0067612 3.1975,-0.63076,-1.7998,-0.14344,-0.32434,-0.78008,1.6953,-0.16046,1.6824,0.93653,0.14112,-0.43092,-0.17662,-0.096571,1.9509 -1.5432,-2.8111,-0.11933,1.5241,-1.1166,-0.40941,0.11958,0.98994,1.1901,-0.52631,1.0949,-1.0782,-0.81365,-1.0051,-1.204 -1.3608,-1.936,-3.3856,2.0671,0.22165,-1.173,0.054328,-0.7088,-0.91072,-1.6504,-0.26006,0.25867,-1.0057,-0.81019,-0.042534 -1.8414,-1.1119,-2.8097,1.3158,0.63868,-1.5462,0.62105,-0.31152,0.10692,0.49329,-0.37722,-0.053269,0.12151,0.62546,-0.74571 -2.7124,0.47393,-2.0642,0.12958,0.51597,0.032175,0.69418,1.3968,0.28245,1.6788,0.046482,-0.61946,-0.47851,0.89632,-0.71185 -0.035734,1.1574,2.2491,1.2587,-1.291,-1.5518,0.69849,-0.34637,0.20803,-0.093398,-0.50422,1.084,1.4357,0.17127,-0.065768 0.31662,1.6998,-1.129,3.0932,-0.65477,-0.018054,-0.13665,-1.2373,-1.0398,-0.38467,-0.23477,0.19383,0.0044152,0.82027,0.64233 4.1049,-1.8844,-1.2824,-0.65025,1.9612,-1.9333,3.3778,1.1939,0.28076,-0.28075,0.14191,0.87943,-0.34674,0.6501,0.67149 -2.1293,-3.9159,1.4798,-2.4808,0.16319,0.090286,-2.7361,-0.025953,-2.4425,1.0821,-0.61032,-0.088169,-1.0318,-0.82901,0.32776 -3.3349,-0.60201,-0.17134,-1.2674,-0.13372,-1.1556,0.42343,0.06805,-0.58208,1.0031,1.5197,-0.080684,0.1443,0.34043,-0.94913 -0.42036,-4.097,0.82694,-1.0093,-0.3755,0.47846,-2.2977,-0.93113,-1.3256,2.0888,-1.3385,0.50571,-0.46833,-0.62675,0.27699 5.2648,-2.9956,-2.0309,-0.030521,-0.27607,2.064,0.76246,-0.14144,-1.2029,-0.59239,0.2322,-0.99125,-0.78727,-0.29027,0.13912 2.9479,0.76339,-0.21114,1.0453,-1.476,-0.98786,-1.4785,-1.658,0.88381,-0.65702,-0.46531,-0.74725,-1.1794,-0.17716,0.12995 -1.4356,-4.9093,0.43902,0.93293,1.8741,1.1143,-1.7382,1.407,-0.66999,0.76366,-0.23439,-1.9323,-0.34473,-0.071263,0.18574 -1.1903,-2.7214,1.0224,-2.2745,-0.99616,1.4761,-2.8058,-0.77375,-0.71934,2.3011,-0.82536,-0.1816,-0.50913,0.73937,0.46447 1.9189,-0.43999,-2.1398,1.3945,-1.338,1.6537,-1.1489,-0.77334,0.3212,0.11005,0.28971,-0.34685,0.56995,-0.18873,0.78119 1.2982,-1.0442,2.3303,-1.7145,-2.9531,1.5367,-0.36333,1.9307,-0.92724,1.3973,-0.76441,-0.94796,0.95151,0.74316,-0.21781 -1.7354,-4.1594,1.0453,-1.7563,-0.33441,0.1644,-2.8164,0.06737,-0.27675,1.1817,-1.064,-0.27079,-0.20075,-0.41642,0.35406 0.056779,-2.4283,3.7518,-1.2704,-1.677,2.1481,-0.87339,1.6187,-0.68506,2.1069,0.48409,-0.64899,0.4394,0.20746,-1.1445 -0.32294,2.909,-1.4937,-0.44698,-1.2439,0.78743,-0.79232,0.8936,-0.96067,0.25987,-1.5515,-0.9393,0.21069,-0.07185,0.56669 3.3452,-2.806,-3.0959,0.50616,-1.7368,1.3273,1.7139,2.4566,-0.059882,1.4207,-0.95671,1.0935,-0.4104,0.38902,-0.81085 -1.5,-2.77,-0.2456,-2.0723,-1.6852,0.73676,-1.5345,-1.3111,-2.1526,0.63023,-1.2586,-0.99138,-1.1657,-0.56036,0.80868 1.026,-0.096149,-2.2299,1.3887,3.3696,-0.088976,-0.56478,2.3852,-1.5222,0.23979,2.078,-1.3207,-0.61418,-0.24172,-0.25559 -2.9345,-2.3834,1.3118,-2.5012,0.42693,2.7081,-2.1881,0.27668,-2.3056,0.42807,0.32236,-1.0348,-0.48053,0.4927,-0.14118 3.2207,-1.0658,-1.6724,0.69462,-1.1644,0.42183,-0.35776,-1.0964,1.4328,-0.67722,-0.22537,-0.92714,0.16463,-0.065555,-0.20495 -2.7017,-3.0451,0.18722,-1.9289,-0.78147,0.98545,-3.1038,-0.73726,-1.5665,0.95473,-0.41583,-0.080296,-0.32776,-0.16671,0.63947 3.5776,-1.3419,-2.9154,0.44077,-0.047144,0.653,1.9406,-1.3109,0.03383,-1.9475,0.35381,-0.97461,0.13284,0.036691,0.48423 2.8053,1.8644,0.025925,-1.6106,-0.49398,-1.7346,1.0817,2.4088,-1.5985,0.39277,-2.0795,-0.93921,0.54607,0.88631,-1.0892 1.2551,-2.5366,0.64787,2.2132,-1.4122,-0.20817,2.3098,-1.1491,-0.35884,-0.85155,-0.38389,-0.16591,0.42778,-1.5338,-0.90338 1.2086,-3.6793,0.20742,1.113,-0.93068,1.3482,0.92516,-1.3011,-0.5327,-0.83106,-0.55909,-0.79787,0.24584,-1.8601,-1.1347 -1.7054,1.2354,-1.596,0.12967,-1.3095,2.3678,0.64669,0.83421,-0.46016,0.06652,-0.6014,0.23711,0.42587,-0.28494,1.0446 0.051249,-1.0159,-1.9029,2.0945,0.98672,-1.41,2.2923,-0.1814,-1.4222,1.3297,-1.2133,-0.75175,2.1403,0.29122,-0.26298 0.77087,1.4606,-0.0078944,0.97632,0.17082,-1.3556,-1.8033,0.36031,0.46826,-0.56349,1.6638,0.4908,1.2212,-0.30082,-1.5592 0.021253,-1.7295,-1.4626,2.3217,1.4491,-2.046,2.5166,-0.64427,-2.5657,-0.5991,-0.0080834,-0.40804,2.1768,0.1456,-0.078814 1.3877,0.86851,-1.2586,1.1952,-1.5521,0.36158,-1.542,-1.6071,0.19376,-0.56197,0.88698,-0.85859,-0.77911,0.39474,0.51473 -1.0999,-0.83772,-0.18206,-2.4009,-2.2526,1.6993,0.023325,-0.46686,-1.925,1.0821,-0.054299,-2.095,-0.24795,1.5686,0.093646 -0.93917,-2.4833,-1.8009,2.2706,-0.037762,-0.99574,0.69119,-1.1041,-1.6109,-1.3034,0.471,-0.31401,0.80628,-1.5333,-0.60246 0.35925,-3.4582,0.072548,3.1374,-0.75428,0.6107,0.078578,0.66746,-0.76211,-0.74915,0.73126,-0.84393,0.21938,-1.5385,-0.14484 1.0901,-3.9037,1.6681,1.9354,0.36435,2.9046,0.066069,0.19261,-1.8507,0.07452,0.84868,-0.5318,1.3387,-1.3961,-0.40019 2.7018,-3.8511,1.8783,1.7653,-0.24911,2.5518,0.67043,-0.33035,-2.0487,0.38279,-0.24864,-0.10328,0.11834,-1.3445,-0.47161 0.23488,-2.4395,-1.1392,1.5667,-0.20649,-0.55096,1.5044,-2.074,-1.995,-1.4214,-0.25271,0.17822,1.81,-1.4817,-0.55974 3.714,-3.4817,-2.5532,0.33948,-1.171,2.621,2.1871,1.0191,-2.0139,-1.8017,-1.2582,0.56827,0.69738,0.032143,-0.57778 -1.0014,-1.7648,-2.5145,1.8074,-0.11925,-1.0523,1.2973,-0.68316,-1.9224,-1.9177,0.53246,-0.47869,0.67012,-0.67811,-0.43057 1.0426,3.0568,0.10435,-1.1011,-0.47357,-1.3498,-0.40637,0.058948,-0.092268,0.61293,-1.7485,-1.1781,-0.37007,0.7217,0.58404 -1.2717,-1.2997,-3.1536,1.9238,-0.12681,-1.5081,0.77139,-1.0591,-1.1143,-1.1443,-0.12041,-0.43195,-0.5471,-0.029713,-0.23739 2.9973,1.153,1.307,1.5458,1.1291,-0.95738,-0.39289,-2.5231,-0.77534,-0.43657,-0.75913,-1.1912,-0.059964,0.29866,0.82506 0.24888,-0.6883,-0.64117,3.5541,-0.39162,-1.288,1.5361,-0.62051,-1.7584,-1.3398,-0.13725,0.16218,1.1363,-0.37505,0.21668 3.2013,-1.4992,-1.8227,-0.0083784,-0.41719,1.0097,0.15908,-2.0745,-0.90804,-0.67828,0.69787,-0.8687,0.84776,-0.31025,1.904 1.3128,0.29672,-0.42672,1.6371,3.8655,-0.14558,0.48514,-0.44109,-1.3028,-1.6756,0.011916,-0.59297,2.9026,0.34515,-0.78659 1.9065,1.8126,-1.7082,-0.31545,0.12121,-1.1574,-0.52322,-0.47176,1.4052,1.7235,0.19099,-1.3679,0.56388,0.17171,0.98252 1.9958,2.0391,-0.21107,1.753,0.78355,-0.89156,-0.10033,-0.54375,0.14311,0.74202,-1.9447,-1.4152,0.93918,-0.17999,-0.22054 -1.3227,2.3881,-0.2675,1.2255,-0.8998,0.22204,0.18311,1.3558,-0.4737,1.7852,-1.244,-0.30874,0.18994,0.50718,0.98481 3.9398,1.0174,-0.24292,-0.59182,0.49529,-2.3457,-0.53923,-0.86339,-0.26123,1.387,-0.32814,-2.0371,-0.56678,-0.6509,1.0142 -0.36415,-0.71365,2.4939,2.1226,-1.6987,-1.7621,1.0929,-1.3582,-0.20057,0.18149,0.34015,0.44422,-0.0091262,-0.43616,0.26787 0.06625,2.0364,0.23305,2.8839,0.4665,-1.5114,-0.70244,0.51999,0.13502,0.39161,-0.57112,0.00022643,0.84195,0.72892,-0.25291 0.083603,2.0521,-0.53573,2.2081,-0.082009,-1.7514,-1.4269,0.058794,0.59505,-0.15511,0.4138,-0.075188,0.85174,1.3204,-0.7817 0.13147,1.5892,-0.47265,2.9401,-0.6373,-1.2611,0.42657,0.18423,0.47782,0.72194,-1.4726,-0.38697,0.76536,0.78702,0.45205 1.0866,2.0117,-0.40862,1.3392,-0.68709,-0.69751,0.27248,0.77667,0.8223,1.4972,-2.6324,-0.89787,-0.086091,-0.0070833,-0.22786 1.2893,1.6243,1.528,-0.49243,-2.706,-0.68798,-1.9737,-0.4596,-0.67059,-1.4985,0.17851,-0.24288,0.49738,-0.12507,0.76928 -2.4402,0.37688,-0.077814,1.0562,-1.8525,-0.74342,1.0441,0.010972,0.45971,-0.364,1.3682,0.56462,-0.31451,0.33147,-0.31133 2.4448,-0.13884,-1.7461,0.13294,-1.0589,-1.5915,0.7822,-0.86473,1.7424,0.76683,0.81288,-0.37921,-0.19897,0.12885,1.7801 -0.94931,2.7651,-0.57461,1.7653,1.3222,-0.069008,-1.099,1.7605,-0.65206,0.62775,-0.23663,0.043741,-1.2138,0.75761,-1.0894 4.2415,-0.89127,-1.1953,1.1858,0.035131,-0.88214,0.46193,-1.1843,0.75926,-1.8759,-0.37559,-1.1935,0.44611,0.65949,-0.32043 2.7075,-0.30351,-1.1465,-0.59381,-1.3673,0.87762,-1.4855,0.48873,0.083987,1.5697,2.3282,-0.36528,1.7929,1.0677,0.99286 0.86033,-0.36609,2.0661,2.2359,-0.66171,0.80932,-1.9621,-0.41703,-0.74213,-0.56628,1.9585,0.5328,-1.4529,0.8549,0.63509 -1.0636,0.18182,0.98036,0.73473,0.98695,-0.15833,-0.13899,2.5274,-1.3862,2.6709,1.0421,0.75654,-0.077439,0.15624,-0.0085301 2.1429,1.4784,0.45195,-1.4649,-0.22666,-1.8916,0.7115,0.26753,0.14505,-2.5087,-0.788,-1.0266,-0.80065,0.91589,-0.34207 -1.9998,-1.1265,-3.033,0.66837,-0.77746,-2.015,0.14345,0.091756,-0.47612,-0.37707,0.0043109,0.21573,-0.16063,0.47598,-1.1127 2.9753,-2.9712,-0.38008,-2.5767,-1.0163,-1.641,1.2173,2.455,-0.58582,-0.32591,0.82519,1.6389,-0.20604,0.22344,0.35709 0.98103,2.7138,-1.3087,-0.21355,-0.70089,-1.1847,-0.31244,0.8159,0.79072,0.6515,-1.8387,-1.3492,0.064578,0.52008,-0.39241 -1.0022,2.1418,0.05175,1.6573,-1.214,-0.96528,1.106,0.64183,0.069005,1.818,-1.6711,-0.088817,0.54291,0.43735,1.2473 -1.9778,-1.906,0.47216,-1.9544,-1.2485,0.89818,-1.5375,-1.7729,-1.3039,1.9096,-0.51542,-0.64635,-0.30028,-0.91006,-0.067966 -1.3664,1.0419,0.1369,2.4424,2.1092,-1.1852,1.4709,0.44965,-1.8001,-1.4788,0.54718,-0.1192,-0.01566,0.8352,0.26384 1.3462,1.6705,-2.1542,1.4972,-0.48948,-0.46789,-0.33779,-0.095824,0.43848,-2.0432,-0.49949,-1.2739,-0.66079,1.055,-0.60799 -2.5057,1.5361,-1.55,0.39612,-1.2465,0.72616,0.44809,1.8389,-0.33888,1.1587,0.04979,0.13607,0.28339,0.36942,0.60722 1.6495,1.2949,-0.84772,1.2,-1.1391,-1.9807,-0.32342,-0.67336,1.5392,0.14108,-1.4168,-0.68645,0.701,0.60057,-0.18016 3.9637,-1.5024,1.9821,1.4347,-1.2833,0.91919,-1.4642,0.9437,-0.47184,1.078,-1.8339,-1.0984,-0.66341,0.42788,0.48041 -3.175,0.50319,-1.657,-0.39008,-0.93739,-0.48397,1.7036,-1.6383,-1.7731,0.31948,-0.15207,-1.047,0.87112,0.11751,-0.12605 0.18272,-1.8594,-1.0365,1.2206,-0.076338,-2.5737,1.5082,-1.1167,-0.91469,0.96404,-0.46845,0.93127,1.8827,0.36724,-0.58719 2.9599,-1.268,-1.6413,-0.66093,-1.9209,0.30354,0.44535,-0.13673,1.3562,0.75686,0.82052,0.76194,0.611,-0.032591,0.72993 -0.52697,-2.0052,-2.6312,0.56935,-0.84218,-2.462,-0.79453,0.80934,-0.72838,-0.80295,-0.13758,1.7988,-0.76947,-0.3202,0.039285 -1.2603,-4.4689,-0.58659,0.59598,-0.32244,-1.8249,-1.3821,0.28376,-0.4894,0.33508,0.30346,0.61296,-0.030345,-0.64669,-1.044 -1.8871,-2.5007,-0.99954,-0.033175,-1.5706,-1.9197,-0.74703,-0.59175,0.36556,0.1155,0.74044,0.2113,0.45713,-0.39885,-0.99047 -1.8973,-3.199,-0.98818,0.27482,-1.0305,-0.93794,-1.355,0.74532,1.0394,0.060216,0.39884,-0.63668,-0.90405,-0.75518,-0.82462 1.5868,1.9671,-1.7323,-0.65453,-2.0014,-0.60275,-0.64409,-0.18226,1.2122,-1.2971,-0.97792,-0.78371,0.8049,0.19267,-0.48613 -0.37794,-1.9011,-2.5847,1.263,-0.72728,-2.0825,-1.0047,0.68403,-0.24356,-0.25637,-0.096589,1.4005,-1.0952,-0.43737,0.38333 -1.2364,1.2562,-1.8811,1.8892,-1.4881,1.4864,-0.37752,1.2414,-0.054067,0.15793,0.19408,0.59812,-0.92217,0.4221,-0.70544 1.4895,-0.00029337,0.9043,2.5046,-1.2507,0.0030555,-1.5486,-0.62509,0.44987,-0.1762,0.74812,1.0212,-0.22334,0.26492,0.030762 3.4,-0.94495,0.61988,2.1249,0.009318,2.5231,-1.5164,0.69507,-0.89058,1.5215,-0.41207,0.3139,1.2515,0.7849,-0.8724 -0.075972,-1.8919,-2.6407,1.623,0.52775,-1.1471,-0.41011,1.2947,-1.4185,-0.67104,-0.49777,0.39367,-1.4289,-1.5643,0.58243 1.3416,1.3121,-2.8508,-0.71008,-0.86944,0.43834,-0.11177,0.76511,1.3348,0.93725,0.048011,-1.141,0.17118,0.18847,0.87254 0.48261,-3.8485,-1.8326,1.0032,0.27482,-1.7171,-1.3543,1.9254,-2.4035,-0.60528,0.08581,0.93446,-1.1787,-1.2583,0.28005 -0.92068,-1.4261,-1.5731,-0.41402,-0.64881,-0.26614,-1.9265,1.1621,-0.53533,-0.58897,0.35849,1.6626,0.72223,-1.836,1.0003 2.994,-0.064521,-1.6033,0.57004,0.035144,-1.2872,0.42783,-2.7746,0.40233,-1.4711,0.15653,-0.98671,0.70435,0.15859,1.2179 1.3541,3.0311,0.5392,-1.0112,0.066754,-2.7168,0.20942,0.99382,-0.99423,-0.2257,-1.3648,-2.0781,-1.3589,-0.23296,0.46823 -1.2392,-2.7069,-2.3607,-0.8449,-0.36583,-0.60804,-2.2434,2.0226,-0.59404,-0.41756,-1.071,0.4774,-0.92066,-0.73097,1.0254 0.1933,-1.3094,-2.7189,1.916,-1.3016,-0.074848,-0.86259,0.8526,0.60226,0.53532,0.13672,0.44507,-0.41355,-0.65389,0.32443 -0.45081,-1.9956,-2.4599,0.11685,-0.96295,0.047292,-1.3284,1.9006,-0.14354,1.0045,-0.86012,-0.51186,-0.49601,0.62282,0.65878 -1.4001,-1.9745,0.40656,0.8502,1.6348,-0.53369,-0.37429,0.042162,-1.3882,-2.5225,1.4771,0.2476,0.12291,-0.53964,-0.57636 -0.052436,0.79368,1.9204,-0.081285,-2.4292,0.68613,-1.1715,0.5952,-0.44363,0.50505,1.7636,0.60081,-0.5485,0.89514,0.59292 -0.52573,2.7822,-1.8115,0.91697,0.61991,-1.1943,-0.70363,2.2654,0.78699,-0.3243,-1.4797,-1.0663,-0.32049,0.57471,-0.87809 -0.63814,-2.5661,-2.3171,0.8648,0.2309,-3.6272,-0.43876,0.56591,-2.2984,-0.84937,-0.098606,1.9294,-0.05982,0.088403,-0.09183 0.62157,-0.24978,-1.9206,1.7177,0.50499,1.3036,-1.612,0.19659,-0.10729,-0.68821,2.2074,-1.1791,-0.91994,0.71586,-0.15953 -0.43318,-2.8325,-1.8444,-0.28439,-1.672,-1.4327,-2.0704,0.87757,-0.82407,0.021732,-0.037647,1.2784,-0.070129,-0.45433,0.14413 -2.4731,-0.47083,1.096,0.69559,-0.95414,-1.5971,0.88348,1.0136,-0.12331,-0.95386,1.7444,0.58059,-1.4091,-0.12336,-0.91008 -2.9277,-1.8782,-1.9673,-1.0007,0.79056,-0.43775,-0.26779,0.47928,-0.8547,-1.0438,-0.2531,-0.81962,-0.90884,-1.8942,-0.59811 -1.4705,-2.2834,-1.5751,-0.9863,-1.3661,0.60105,-1.86,1.3854,-0.78781,0.18255,-0.11703,-0.096145,1.3117,-0.68004,0.3242 1.8745,1.0868,2.5936,-1.1739,-1.124,0.49797,-2.3831,1.3869,-1.7422,-0.70841,1.2889,0.16384,1.1804,-0.17976,-0.40294 1.0713,-3.1613,0.32175,0.61063,-2.2587,0.6808,0.10752,0.80221,0.94883,1.3888,-1.4001,-0.84894,0.12144,-1.114,-0.87896 -2.2585,-1.1603,-2.949,0.46108,0.30942,0.12407,-0.56548,-0.059528,1.0672,-0.11936,-0.20859,-0.20497,-2.0019,-0.36331,-0.41324 -0.1763,-2.2847,-1.4134,-0.052932,-1.8231,0.056076,-1.9408,-0.01637,0.50036,1.8439,-1.5731,0.45716,0.65668,-0.61593,0.38275 -1.7553,-0.92811,0.12637,2.2233,-1.0381,-0.38514,0.50156,-0.0024651,1.1504,-0.72505,1.9106,-0.038796,-1.5637,-0.0066783,-0.68315 -2.0727,-2.0132,1.5808,-1.8702,-1.2833,2.1225,-1.2061,-0.9173,-1.5293,0.53482,1.2938,-0.67655,-0.50034,0.067563,-0.32777 2.759,-1.8117,0.47971,1.6665,-1.3432,2.9296,-0.11354,0.60872,-0.43722,0.30777,-1.5553,-0.90558,0.57201,-0.44739,0.58198 -1.3475,-2.333,-2.6161,0.94915,0.01802,-0.64282,-1.1851,0.20964,0.66459,0.1323,-0.67892,-0.67893,-2.2774,-0.82728,0.18344 -1.7409,-0.10384,-2.0154,1.6921,0.25918,1.0264,0.38438,-0.43237,-0.11141,0.026569,1.3379,-0.15662,-0.024489,-0.38078,-0.25891 1.2227,-0.7496,2.8777,2.2021,-0.60445,-1.2794,0.050977,-1.0053,-1.2366,-0.47694,0.98532,0.94312,0.24525,-0.24617,-0.029684 2.7815,-0.77166,-0.18045,2.2013,-1.2199,2.1116,-1.5455,0.60586,-0.29701,0.86546,-0.73698,-0.017435,1.0516,0.27622,-0.29501 -0.62544,-0.93309,-2.2117,2.196,-0.48476,-1.0445,1.2098,-0.88898,-0.59919,1.0709,0.15757,0.16923,1.4769,-0.069022,-0.48406 -0.12414,-0.74389,0.40635,1.4518,-2.1791,1.8567,-0.38641,1.1865,1.1683,1.6648,0.041693,-0.29724,0.96031,0.21979,0.60845 0.58852,1.5052,-1.9026,2.0618,-0.48318,0.62429,-0.51193,-0.967,-0.69188,0.66099,-0.066831,-0.70681,0.49916,1.0669,0.31295 4.4424,-1.3915,-1.7815,-0.89017,-0.72352,-0.11288,0.3445,-0.52153,0.89282,-0.50505,0.25458,-0.24995,-0.35486,-1.3281,-0.42813 1.646,-0.23862,1.8882,2.3377,-0.9615,0.066759,-1.377,-1.0276,0.062237,0.10019,0.84507,0.95729,-0.41543,-0.033562,0.21854 -1.8954,-1.0435,-1.2118,0.47327,-1.2981,1.4319,-0.83593,0.94912,1.3263,1.2793,1.1149,-0.6238,-0.30962,0.51347,-0.71397 0.18393,-3.5661,1.1358,2.1412,1.3811,1.4963,0.25067,2.5013,-1.5443,-1.3763,-0.66894,-1.5825,0.064933,-1.9895,0.73743 5.0699,-2.1545,-0.7526,-2.7818,-1.2601,-0.74336,0.45693,1.1547,0.32202,0.77093,0.60318,0.31201,-0.25042,-0.61785,0.98787 0.091758,0.88432,-0.32093,2.9079,3.6538,-0.35278,-0.03793,3.1777,-1.9752,-0.033986,-0.22637,-0.62725,-0.90719,0.43383,-0.6138 4.7448,-2.1313,2.0062,1.4059,-0.48249,0.45983,-0.85967,-0.012484,-1.3885,-0.3789,-0.18675,1.1014,0.07039,-0.53852,-1.1401 2.0808,-1.1663,-0.12625,1.3347,-2.2265,2.8688,0.73891,1.2683,0.040984,0.16046,-1.4614,-0.29124,-0.57024,-0.083029,-0.48315 0.066358,0.66852,-1.4911,3.1301,2.7247,-0.10847,0.36004,2.414,-1.4459,-0.24256,-0.68021,-0.98218,-0.27548,0.017595,-0.27646 -1.8546,-2.1288,-1.2177,1.5361,-0.58673,1.0882,-0.41248,0.54698,1.5251,0.53857,0.7007,-1.3794,-1.1399,-0.61357,-0.80905 2.273,1.5181,-0.41382,0.66293,-0.29878,-1.6127,0.17191,0.91429,0.86317,0.88393,-2.2526,-0.6975,0.58682,0.59603,-1.1046 2.3701,1.1594,-1.3249,-1.3635,-1.3232,-0.37796,-0.74686,-0.83086,0.87364,-1.2327,0.16357,-0.68238,1.9451,0.16215,-0.69909 1.0852,0.84409,0.48045,0.64712,1.029,-1.5477,-2.1651,1.1,0.21591,-1.5111,2.0138,0.30976,0.54176,-0.28957,-1.4226 0.67608,1.9796,0.33013,0.15386,-2.9881,-0.37132,0.93544,-0.19171,0.29307,-1.1331,-1.1547,-0.10792,-0.27047,-0.028385,0.82993 -0.41014,-1.8628,-1.4297,1.5338,-1.2238,2.6322,0.033561,-0.76987,0.22,1.1282,0.15921,-0.88187,0.96962,-0.64735,-0.35149 1.8898,-2.0246,-1.5077,1.5377,0.541,1.4552,0.40962,-0.91859,-0.50733,-0.199,2.6695,1.0064,1.2863,0.79608,1.6061 -2.2819,-3.9981,-0.21786,0.5148,1.5265,-2.4429,-0.93132,-0.64553,-1.9078,-0.38498,0.60905,0.86,-0.85711,-0.2277,-0.664 3.5458,-1.483,-2.0993,0.38734,0.87464,-0.97954,2.4268,-1.5487,0.5046,-0.67775,0.23138,-0.5381,0.18385,0.18557,2.4311 2.833,-0.32588,0.14249,0.11594,-2.6922,0.31699,-1.7751,0.35743,0.46011,-1.1007,-0.79276,-0.36861,0.40674,0.077431,-0.24072 -1.879,-1.0823,-1.1706,-1.25,-0.9432,-2.4358,-0.52051,-1.8735,-1.8906,1.0758,-0.71271,0.37861,0.38265,0.95581,0.29308 -0.0015336,1.3725,-1.0276,3.0835,0.11358,0.21333,-0.57004,-0.67528,-0.095952,-0.71804,0.35618,0.10725,0.41518,0.60935,0.097785 -0.09919,-3.3292,-0.26915,0.091916,0.35211,-2.7601,-1.5878,-0.29715,-1.7015,0.45592,0.0070156,2.7253,0.72863,-0.99148,-0.0013427 3.5483,-1.4916,1.0527,1.9624,-0.028148,1.8325,-2.3274,-0.15599,-1.0663,0.63286,0.41558,-0.039147,0.43571,0.19077,-0.060032 0.72845,1.5747,1.2158,2.2913,1.8926,-1.5171,-0.066986,2.1116,-1.5523,1.1738,0.26332,0.86298,0.69707,1.6164,-1.4213 -2.1538,-0.65091,-1.6269,-0.36584,1.3945,-2.7522,-0.69245,-0.1825,-1.573,1.4619,-0.34988,0.87789,0.75492,1.5318,0.78055 -1.5378,-1.8134,-1.7287,1.8835,0.16578,-2.8416,0.78577,-1.8813,-0.55023,0.5243,-0.32729,-0.094224,0.41693,0.42182,-0.16942 -1.4065,-2.7056,0.32775,-0.073437,-1.2767,-2.3407,-0.72125,-1.8027,-0.76629,0.70365,0.73695,0.29943,-0.18833,0.51842,-0.34326 -1.4962,-2.2675,-0.62298,-1.8189,-1.2724,-0.21019,-2.648,-1.2203,-2.3251,0.46961,0.36916,1.3633,-0.35806,0.076843,0.91295 -0.79408,-3.8539,-0.88683,1.0653,-0.1917,-2.3828,-1.4977,-0.21378,-0.79548,0.42331,0.49252,1.2613,-0.26097,-0.29197,-0.28664 3.4967,-0.025477,0.23709,0.50516,-1.0799,-1.0192,-1.0451,-2.3174,0.49501,-0.44063,0.58772,-1.277,-0.64179,0.54321,0.30493 0.050004,2.7874,-3.205,-0.35517,-0.49434,1.5175,-0.33057,0.9698,-0.92645,-0.24493,-0.53222,-1.4569,0.33977,-0.44634,-0.020906 0.18398,-0.0070392,0.6211,0.9178,-1.5524,1.3864,-1.8306,2.351,1.1306,0.26464,0.98012,0.50835,0.54542,0.63154,0.34272 -2.0863,-3.2791,0.82468,-0.16794,0.095969,-2.0163,-1.3811,-0.89948,-0.49842,0.41252,1.0389,-0.26852,-0.6479,-0.80678,-0.88715 -2.5572,-2.2565,-1.1365,-0.093739,-0.0089097,-3.0667,-0.72543,-0.87281,-0.81315,0.029913,0.51968,0.67862,-0.46677,1.3559,-0.19352 2.9195,-1.3792,-0.34628,1.587,0.46219,0.74283,-0.4521,-2.2729,-1.1891,-1.2126,2.5651,-0.73625,1.1275,0.017825,1.1972 -0.8323,-3.9838,2.6091,-0.43739,0.33032,-1.3562,-1.058,-0.73813,-1.432,0.64814,1.3217,0.094957,-0.57639,-0.094194,-0.80542 -2.5445,-1.1917,-2.4475,-0.32533,-0.26798,-2.5468,-1.098,-0.58072,-1.1607,-0.53171,0.44468,1.4666,-0.10152,0.66376,-0.094609 -1.1505,0.53859,0.23614,1.1729,-2.1424,0.91674,-0.66968,0.70624,1.1517,-0.21478,1.86,0.75465,-0.61867,0.10074,-0.16417 -3.2816,0.37751,0.33859,0.59411,0.36238,-1.4412,1.3392,-0.30575,-1.294,-0.38622,1.0485,0.22026,-1.0945,1.035,-1.0784 0.38323,-2.618,2.3282,-0.96291,-2.388,0.085513,-1.0316,0.43289,-1.4214,0.94258,0.9083,-0.70165,0.44945,-0.084295,-0.55682 0.78804,2.5409,-1.7032,-1.1521,1.1135,-0.56985,-0.47501,1.2181,-0.27417,1.6297,0.25083,-1.0844,-1.1723,-0.32628,0.037375 0.22586,1.8974,-1.9403,-1.4599,0.75619,1.4682,-1.0307,1.7313,-0.62146,0.03588,1.7045,-0.67199,-0.27424,-0.40147,-0.05284 -3.4676,-0.2301,1.6032,-1.0183,-0.30662,1.6199,-0.10376,1.7399,-0.17753,-1.8818,1.5979,-1.1139,-0.73947,-0.64589,0.070772 1.8541,2.1873,-1.5727,0.013057,-0.63813,-1.2521,-0.56423,-0.49132,0.91819,1.6014,-0.66257,-1.5762,0.21643,0.018006,0.30984 -0.019478,-1.7585,3.6589,-3.361,-0.51569,1.5397,-0.54158,2.2054,-2.5485,1.1462,0.45328,-0.78672,0.16983,0.93985,-1.1906 0.015251,2.3901,-1.1299,1.9451,-1.8068,-0.3833,-0.14976,-0.29192,0.07152,0.68184,-0.96338,0.16854,0.13865,1.2104,0.56874 -2.15,-2.129,0.42184,-2.8131,1.9453,2.4844,-2.042,0.27439,-2.2967,0.37855,-1.0233,-0.12308,-0.56519,0.45411,0.71668 -3.5251,-1.9283,0.96087,-2.2337,0.21084,0.90923,-1.8347,-1.2497,-1.2711,-0.33879,0.75354,-0.29102,-0.66841,-0.41698,-0.3029 -3.7333,-2.2479,-1.7773,-1.7003,1.6368,0.9524,-2.6448,0.2169,-0.97663,-1.1527,-1.1975,0.32354,-1.0575,-0.87045,0.93312 -0.10072,-0.3933,3.1749,0.20069,-0.36174,-0.48102,-1.7467,2.5217,-1.1264,-2.4221,1.582,0.84437,0.52628,-1.0539,-0.82148 3.4975,-1.3035,-1.3573,-0.94378,0.65836,-2.6753,2.0416,0.90009,1.4794,-0.9579,1.0321,1.2096,0.092156,1.1127,-0.039713 -3.4828,-1.6949,0.058186,-2.375,1.2392,0.62099,-2.212,-1.4663,-2.4429,-0.51218,0.50295,0.72095,-0.97701,-0.6813,0.30842 0.72392,0.60403,-2.3829,1.6475,3.4274,0.36068,-0.080518,0.66938,0.26251,-0.50108,1.8957,-1.576,-0.2122,-0.9337,0.35938 -3.9054,-1.6681,0.085959,-1.8538,1.3417,1.8669,-1.5295,-0.36361,-0.54401,-0.81959,0.086182,-0.77141,-0.64609,-0.48076,-0.19551 1.8557,1.551,0.22189,0.87398,-0.77738,-2.1458,-1.3181,-1.6616,0.23085,-0.20449,0.3478,-0.59136,-0.13492,0.18766,0.1555 -2.5663,-3.4038,0.19771,-2.7045,0.89667,1.092,-2.9267,0.49024,-1.9771,0.21132,-1.3164,0.16238,-0.18014,-1.3404,0.3424 -2.7829,-2.4928,0.2064,-2.3723,1.3942,1.7962,-1.9603,1.1542,-0.84478,-0.16041,-0.89056,-1.0811,0.39297,0.39483,0.58419 -1.6013,-1.8661,1.6022,-2.0586,-0.40511,2.8701,-0.96102,-1.1697,-2.6359,0.08057,0.31935,-1.1897,-1.0335,-0.21276,-0.47479 1.4633,1.656,-2.994,-1.7681,-0.73834,-0.96877,1.2455,1.0499,0.96027,-0.4017,0.18744,-0.022311,1.0227,0.12326,0.18173 0.13211,3.0769,0.52987,-0.2661,-2.3492,-0.18676,-0.78515,-0.82828,-1.8368,-1.5989,-0.15503,-0.11282,0.37042,0.13707,0.98533 2.1365,0.14228,2.5956,1.2343,-1.381,-2.116,0.22447,-1.3633,-0.92475,-0.63417,-1.2101,0.8511,0.0061347,-0.44352,-0.55695 2.809,2.5234,0.14734,-2.7488,-0.5779,-1.3776,-0.70932,0.54759,-1.8894,-1.5676,0.82026,-1.0307,-0.47902,0.80787,0.4755 2.8058,-0.95919,-2.9584,1.3535,0.75394,-0.030516,2.076,0.44303,0.8888,0.33599,0.076984,-0.3491,-0.057841,0.28316,0.22822 -2.8318,-2.0479,-0.57234,-1.9964,1.3002,0.90549,-1.9508,1.7857,-0.95862,0.25403,-1.2558,-1.3012,0.45456,1.4646,1.2871 4.4103,0.383,-1.4545,-0.99721,0.31263,-2.3064,1.8328,-1.3622,1.2331,-0.50471,-0.33174,-0.89802,0.64877,0.010406,-0.046555 -1.2943,-2.23,0.96068,-2.7124,0.81518,1.8569,-1.9406,0.8557,-1.633,1.1483,-1.0145,-0.058194,0.80257,1.0935,0.67167 2.2324,1.7266,-1.0638,0.028861,-0.73226,-1.4751,-0.090374,0.61455,0.86988,1.0228,-1.2385,-1.4569,0.30032,0.92405,-0.14038 1.4046,1.3538,-0.21149,-1.3361,-2.3432,-0.30029,-2.1449,-0.58821,-0.28534,-1.1152,1.3108,-0.72945,-0.437,0.21742,0.65444 4.2188,-0.21148,-1.5879,0.43656,0.80499,-1.4146,2.6564,-0.90057,0.29474,-1.2934,-0.80155,-0.9273,0.11442,0.094253,-0.7815 4.4791,-1.4159,0.88859,1.1659,-0.040488,-0.23664,0.89689,-2.1868,-1.4024,-1.2612,0.4251,0.19908,-0.03533,-0.73346,-0.96481 0.9648,-0.32813,1.5487,3.2281,-0.38109,0.046242,-0.79464,-1.8166,-2.2061,-1.9245,1.18,0.52009,-0.672,0.4807,1.1173 3.812,-0.39776,0.32019,-0.057135,-1.7797,-2.2488,-0.24829,-0.32107,-0.016456,-0.18163,-0.18287,0.16962,0.96262,0.75899,-1.1911 4.7461,-2.3415,-0.70115,1.2108,-0.7714,0.69853,-0.055165,-0.055937,-0.13141,-1.3044,-0.79967,-1.1925,-0.79114,-0.87475,-1.1825 3.3721,0.8985,0.49898,0.0060958,-0.10419,-2.8481,-0.44554,-1.0384,0.0080991,0.27598,0.61595,-0.89641,1.1867,1.255,0.14593 3.9551,-2.1597,-2.1386,-0.059476,0.1208,-1.0312,2.8333,0.43543,1.6123,-0.57887,0.63592,0.97371,0.31061,0.91106,0.0034301 -1.7519,1.9028,-1.3063,0.49092,-1.8412,-0.32414,0.087252,1.7965,-0.062514,0.74335,-0.064634,0.30856,0.47565,0.72456,0.35844 6.0862,-3.4928,1.1184,-0.65089,0.24871,0.32623,-0.12239,0.85015,-2.6988,1.2348,0.7031,-0.42842,-0.77479,0.85343,1.0279 2.5034,1.3387,-1.0635,-0.87723,-1.32,-1.9528,-0.048781,0.74758,0.92771,-0.36343,-1.3414,-0.35259,0.85504,0.84221,-1.3809 1.8984,-0.49245,3.1859,0.87784,-2.0335,-0.043434,-1.9886,0.48094,-0.49065,0.49615,-0.39273,0.57968,-0.82298,-0.45738,0.46232 -0.66261,1.257,-1.4061,2.4645,-1.1953,-0.92019,0.53316,1.1288,0.65433,1.2715,-0.54764,0.15421,0.076179,0.87625,0.39658 -1.9848,-0.86557,0.44083,1.3284,-0.62652,-2.0133,0.94346,0.80985,0.81869,0.15492,1.2691,-0.25526,0.12414,-0.69513,-0.4745 1.223,2.3725,-1.2085,-1.2462,-1.9176,-0.31371,-0.68002,0.14249,-1.4957,1.2186,-0.20231,-1.2506,0.7181,0.38505,0.6945 1.0933,0.063662,-0.31371,2.7251,-0.60888,0.17834,0.99499,-1.8296,-1.1962,-1.3395,-1.4971,-0.12828,1.4795,-0.77869,0.234 1.542,-0.16406,-0.35099,2.633,-1.237,-0.819,2.2227,-1.0291,-0.74787,-0.1909,-1.4367,-0.23166,0.10976,-0.18826,0.58767 0.1259,-2.6053,3.5269,-0.4822,-1.9806,0.42455,-0.67141,-0.16016,-1.2741,1.3551,1.0579,-1.1266,-0.88852,-0.02464,-0.16464 1.7872,1.7985,0.014101,0.8382,0.89872,-1.1228,-1.3975,-0.54882,0.74316,1.3309,1.1443,-0.36415,1.4139,0.47084,-1.1472 -0.067072,-1.8832,1.8164,-2.2712,-1.1977,1.9582,-0.43614,1.2011,-1.6006,1.863,0.74907,-1.1548,0.88722,1.307,-0.53469 -2.6105,-1.5499,0.80913,-1.0578,-0.15925,2.2981,-1.0836,0.3755,-1.0147,0.39203,1.9091,-1.4847,-0.13297,0.061855,-0.58695 2.1705,-1.0439,-0.46524,1.5475,0.53407,1.4184,-2.1407,-1.0537,-0.93185,0.11268,2.5994,-0.77163,-0.38115,1.1684,0.55573 1.3774,2.1456,-0.42127,1.541,0.086399,-0.98183,-0.074834,0.72918,0.26724,1.58,-2.7369,-1.0733,0.67697,-0.37897,-0.65619 0.95214,0.29041,-2.4312,2.0769,2.4547,-0.71376,0.56913,0.9389,-0.74521,-0.96904,0.24264,-1.6956,1.1174,-1.3171,0.49335 -0.21032,-2.3413,0.43572,-2.2236,-1.7551,1.6759,-1.0777,-1.0747,-1.8882,1.0506,0.093765,-1.6198,-1.0268,0.43367,-0.13455 4.9725,-1.9492,-0.84134,-3.2243,-1.4449,-1.0104,0.30845,0.55288,-0.30972,-1.0927,0.87652,0.26554,1.0108,-0.52657,-0.028594 4.8102,-0.91443,0.92247,0.71508,-0.91366,-0.15525,-0.49934,-0.65933,-0.062583,-0.76685,-0.6326,0.42927,-1.3744,0.51425,-0.97893 0.22023,-2.8837,1.0591,-1.0249,0.25253,1.7221,-2.5522,-0.23454,-1.0971,2.5509,-0.45354,-0.34281,-0.29481,1.9115,0.17334 2.1687,-0.18565,-1.3505,-1.54,-0.93636,-2.3437,0.67296,0.12771,0.64161,-0.42988,1.6011,0.31234,1.1017,0.16298,1.5263 -1.2487,-1.7169,-1.001,-1.0752,0.093846,1.2802,-1.2052,1.7259,-0.025498,0.52512,-1.0237,-1.4903,0.58731,0.56524,0.64916 -0.39086,0.61391,-1.1922,1.1754,-1.9864,1.6397,-0.88883,0.51406,-0.1644,-1.3164,0.92835,0.32491,0.65587,-1.0525,0.55476 -0.44314,1.7579,-0.14219,-0.32323,-2.6742,-0.5859,1.8964,-0.075524,-0.70372,-0.8748,-1.4695,-0.10235,0.72551,0.25366,0.78007 3.3073,0.37614,-0.41666,-2.1944,-2.5016,0.76473,-1.6709,1.8857,-0.13915,-1.5743,-0.87878,-0.83015,-0.19041,0.37221,-0.33157 -1.7439,1.1774,-0.32646,1.3392,-0.61106,-0.12798,0.26861,1.7101,1.1001,0.8438,0.58135,0.74063,-1.1572,0.48005,-0.27318 0.58751,3.6739,-0.65654,-1.003,1.1491,-1.1728,0.22366,0.6108,-1.7018,-2.3162,-0.93909,-2.0196,0.27875,0.45936,0.14666 -1.3555,-2.8511,0.81035,-0.82678,0.71657,1.2563,-1.9007,0.37078,0.35401,1.6401,0.3379,-1.2364,-0.21971,0.4529,-0.7866 -0.44718,-2.7702,-0.20489,0.33986,1.3697,1.2494,-0.67393,2.359,0.070568,0.76527,-0.19063,-2.6589,0.48304,1.3213,-0.45671 -0.58063,-1.0189,0.066253,0.67099,1.1391,1.0722,0.47236,2.4389,-0.31373,1.4092,1.1465,-1.5581,-0.29425,1.4259,-1.3227 -0.23783,-1.5564,2.2645,-1.4704,0.56455,2.4242,-0.18516,2.2347,-0.72116,0.73496,1.2888,-0.7497,1.122,0.73141,-0.56385 3.3401,-1.2871,1.8357,1.6922,-1.1088,-1.6684,1.4748,-1.163,-0.55396,-1.7375,-0.95004,-0.74528,-0.26317,-0.52501,-0.54699 1.9847,1.8142,-1.2044,0.329,-1.5303,-1.8332,0.16198,-0.11872,1.193,-1.074,-1.6223,-0.36787,-0.029915,0.72156,-1.4614 -2.1802,-0.010839,-1.3734,-1.0927,-2.343,0.48114,0.48432,-2.0063,-0.69564,-0.060186,0.51824,-0.37521,0.6268,-0.12664,-0.16033 -2.0574,-1.361,-2.3556,1.0122,-0.57551,-1.9214,0.10943,-0.31149,1.0249,0.27395,0.11977,-0.26125,-0.16394,0.22431,-0.76118 0.39797,-1.591,2.3059,0.17736,-2.0702,-2.3205,2.0215,-0.51198,-0.60842,0.058298,-0.71978,0.72603,1.1599,-0.396,-0.96495 -2.0233,-0.64821,-2.5061,-0.73644,0.046672,1.7366,-2.3344,-0.16684,-0.93922,0.3905,0.22694,2.3345,-0.77495,0.22575,-0.083121 -2.0325,-2.2912,-0.93308,0.9436,-0.057746,-1.1454,0.92916,0.40981,0.08087,-0.73313,0.96086,-1.0155,-1.7387,-0.93299,-1.6641 -0.56371,1.0534,-1.0558,2.6923,-0.5384,0.063186,1.5586,-0.070646,-1.2574,0.63465,0.40259,-0.32436,-0.56225,0.77649,0.99658 -2.0114,-1.7989,-0.62539,0.13292,-1.3293,-2.0639,-0.25343,-1.4695,0.19144,0.30925,0.90925,-0.12833,1.1255,0.042361,-0.77462 -2.1704,0.056353,-2.2205,0.85875,1.0365,-0.66921,-0.45747,-1.1284,-0.76124,0.65892,0.22333,1.4425,-0.10489,1.1722,-0.49482 3.1708,-1.8047,2.7142,-0.025993,-2.9384,0.2278,0.56794,1.0633,-0.11118,-0.82972,-1.0308,0.35188,-2.2096,-0.45049,-1.484 -2.1977,-0.81428,-3.0366,0.73027,1.3552,-0.087433,0.070548,-0.099052,-0.93969,-1.2889,-0.79064,0.39571,-0.80272,0.040136,-0.44845 0.40728,1.803,-0.92945,2.5768,0.72588,-0.53392,-1.0047,0.46878,-1.8028,0.50659,1.308,-0.70062,-1.1325,0.6201,-0.88391 -1.8315,-2.2046,-0.62129,0.70827,0.74346,1.8449,-0.91186,1.2911,-0.69915,-1.321,0.044435,-1.8228,-1.0074,-0.01657,-0.18106 -1.4838,-1.5956,-2.7169,1.2113,1.8809,0.57402,-0.64069,-0.074502,-0.37034,-1.3783,-1.1009,-0.85769,-1.1912,-0.075175,0.62482 -1.4595,-1.6391,-1.3759,1.0607,1.0295,-0.49246,-1.7827,-1.1011,0.16025,0.87334,-0.31466,1.1088,-0.49872,-0.81352,0.40734 4.3384,0.22348,-1.4552,-2.8656,0.081132,-3.2053,1.9585,0.8572,0.89117,-0.95606,0.64655,0.23139,0.34034,1.2792,-0.26076 -2.529,-0.2946,-3.1126,0.44482,0.22002,-2.0361,0.18833,0.20853,-0.039426,0.30536,-0.58472,-0.19306,-0.48579,0.90321,-0.59942 2.8709,1.5505,0.37913,-1.8589,-0.12268,-1.7512,-0.42153,0.11968,-0.87888,-2.2522,-0.34768,-0.57741,2.8397,-0.071638,-0.56969 -1.9032,-2.7465,0.15808,0.099776,-0.56166,-2.9273,-0.43452,-1.1181,-0.61602,0.78743,0.54475,0.51201,0.28853,-0.40612,-0.21287 3.614,-0.52628,-2.1384,-0.0010427,-1.2516,1.1403,0.36882,-0.050693,-0.72405,1.3968,0.83109,-1.8671,0.037406,1.4262,2.0503 -2.0734,-2.2004,-1.7081,1.1939,1.3456,0.20966,-0.97542,-0.47135,0.14773,-0.57325,0.26281,-0.54532,-1.4718,-0.55347,-0.35677 2.5663,0.017679,-0.87173,-1.211,-1.4238,-1.6857,1.2523,1.4113,0.29486,0.60665,-1.0466,0.33011,-1.2692,0.42418,-0.69901 -2.2102,-2.0531,-1.731,0.71269,1.506,0.20541,-0.31067,-0.68355,-0.65935,-1.6548,0.37282,-0.53472,-1.9927,-0.86383,-1.3047 0.88009,1.7587,0.30514,0.028957,2.6166,-2.0463,-1.2813,2.4989,0.44626,0.7164,-0.030662,-0.80141,1.2801,0.14213,-1.2853 1.9971,-3.6308,3.0939,-0.1744,-1.2443,2.1151,0.70906,0.056502,-1.0051,2.4119,-0.66188,-0.83529,-1.55,0.34521,-1.417 3.0817,0.53941,-1.7509,-1.6693,-0.65164,-1.884,1.3815,0.34448,1.2632,1.4482,0.047215,-0.37144,0.40498,-0.57799,1.5704 -1.655,-1.7889,-2.6688,1.0524,0.8533,0.1739,0.30348,-0.55633,-0.45307,-1.1003,-0.20799,-0.80006,-1.3438,-0.4553,-0.70353 -2.2895,-1.1605,-2.7167,0.98116,1.1444,-0.49968,-0.35419,-0.3759,-0.72593,-1.1163,-0.29223,0.12385,-0.80318,0.033676,-0.24925 2.257,0.30126,-2.4534,-0.76349,-2.0436,0.026941,-0.26152,-0.39316,1.974,-1.4771,0.10543,-0.62249,0.72348,0.3986,-0.38738 -0.23479,-2.5136,1.2679,0.44448,-1.7391,-2.3403,1.0912,-1.6157,-0.3352,0.86871,0.19184,-0.094124,0.76444,-0.35411,-0.55997 1.9356,-0.322,-0.0015005,2.1864,-0.46535,0.058926,-0.85814,-2.2688,-0.76301,-2.1468,0.34507,-1.1371,1.2412,0.18844,0.91582 3.8596,1.7721,-0.35989,-3.0148,1.3259,-3.139,0.54603,-0.46615,0.19812,0.81859,0.30796,-1.0292,-0.061956,-0.030888,1.2404 0.98515,-0.2965,-1.371,0.99578,-0.58655,0.4426,3.2058,0.93139,-0.099575,1.3142,-2.0514,-0.94843,-0.82951,0.77108,0.55188 -0.038632,-1.5822,-1.4369,0.23415,-0.085123,-2.7765,1.2413,-1.871,-0.39002,1.3192,-1.9833,-0.36771,0.67017,0.46071,-0.3391 -1.1492,-1.1732,-0.73058,-1.4491,-1.6561,-2.5255,1.0386,-1.2828,-0.46739,0.94012,-0.90144,-0.16919,1.2672,0.23672,-0.24365 -0.91952,-1.6522,-1.6775,-0.32094,-0.86585,-2.8865,-0.83016,-0.86727,-0.91002,1.0721,-0.82165,1.5664,1.332,0.57697,0.2971 -0.41103,-0.27547,1.4386,1.0269,-1.8079,-2.0364,1.3684,-0.71571,-1.0278,1.1008,0.58935,0.72672,1.0756,0.70849,-0.74596 -1.2384,1.6091,-1.3864,1.2506,-1.73,0.10688,1.1595,0.13972,-1.3658,0.08522,0.32088,0.74581,-0.045655,1.0019,0.11186 0.72317,-2.9247,0.85286,-0.3608,-1.6229,-2.6075,2.3204,-1.7482,-0.80546,0.5454,-1.2391,-0.17584,0.012064,-0.53729,-1.2125 -0.4315,-2.2968,0.49917,1.5118,-0.71455,-1.5898,1.7604,-2.5517,-0.61487,0.86091,0.15411,-0.61022,0.90727,-0.51115,-0.57772 0.97999,3.1904,-0.10972,0.34926,-0.11821,-1.7715,-0.33456,-0.12408,-0.40592,1.2947,-1.9807,-1.1944,-0.29832,1.1008,0.37145 1.6746,-1.2364,1.4113,2.1077,-2.0112,0.73673,-0.031696,-0.31732,0.49914,-0.77584,-1.3121,-0.32313,-1.4054,-1.4673,0.60784 -2.3667,-1.217,-1.1281,0.38713,-0.19594,-2.1981,0.81005,-0.55138,-0.30417,1.113,1.3283,0.34765,-0.071909,1.2309,-1.4326 3.9304,-1.7117,-1.3574,-0.071552,0.15485,0.76843,2.8953,-1.0597,-1.3135,-0.82769,-0.41869,-0.14471,0.67822,-0.26859,1.9845 -1.9057,-1.7594,0.083232,1.2753,-0.53246,-2.0377,0.9053,-1.2671,-0.2199,1.1063,1.2507,-0.46681,-0.20249,0.79432,-0.73807 -1.1978,-0.7024,-1.8589,0.88965,0.51518,-2.0077,-0.39506,-0.69196,-0.51653,2.2005,-0.7629,0.71253,0.85545,1.5848,0.714 2.5249,-0.7536,-1.0335,-0.00050668,-1.8072,0.011909,-1.8922,-0.31335,1.0107,0.51159,1.053,-0.69768,1.3539,0.49917,0.37518 0.20799,-4.6423,1.7834,-0.050142,-1.3251,0.55672,-1.168,-0.57835,-0.25573,1.5459,-1.1954,-0.883,0.22128,-0.72322,-0.91339 4.2902,-0.1087,-1.6668,0.53262,-1.6545,0.81916,0.077576,1.4818,-0.039783,1.1231,-1.2389,-0.37484,-0.46808,1.6114,-0.66641 1.1572,2.6394,0.89801,-0.68033,-1.4592,-0.59036,0.087161,1.1753,-1.4414,1.2655,-2.3897,-0.69465,0.24149,0.24929,0.98368 -0.035168,-4.1966,-0.11818,0.46756,0.94811,-1.0797,-2.2124,0.56645,-0.49113,0.8186,-0.41063,1.4198,-0.41917,-1.7111,0.52928 -0.99336,-4.0694,1.1659,0.57535,-0.95398,0.057526,-1.2089,-0.60715,0.25277,0.88048,-0.62373,-1.2422,-0.26515,-1.0654,-0.38497 1.184,2.7493,-1.0497,-0.51274,-2.415,-0.46466,-1.8884,-0.4339,-0.54112,-0.086678,0.016987,-1.0504,0.6266,0.020113,0.019222 -2.1842,-2.3456,-1.2798,1.9108,-0.49746,-1.0818,0.77356,-0.40788,0.1361,-1.0824,0.9438,-1.5147,-1.4272,-1.0756,-1.1885 -0.851,-1.1726,-2.7526,1.5203,-0.1607,-1.9879,0.028802,-1.4667,-0.67223,0.83269,-1.5084,1.5847,1.536,-0.0025192,0.59094 5.3942,-3.7169,-0.46431,-2.658,-0.29425,-2.5539,1.8112,1.3433,-0.93488,-1.0492,0.68874,1.3183,0.11721,0.57404,0.24595 -1.9452,-3.2464,-1.8656,0.97295,-0.30406,-2.3344,-1.3551,-0.11067,-0.74826,-0.60003,-0.39038,0.50497,-1.2038,-1.2933,-0.86485 -1.6469,-3.112,0.20685,1.4367,-1.1,-0.57975,-0.19293,0.518,0.4518,-0.46913,1.6013,-1.3266,-0.99255,-0.62048,-1.0045 -1.2503,-2.6952,-2.4701,1.8318,-0.15531,-1.7064,-0.93171,-0.76234,-1.1309,-1.3243,-0.12768,0.58185,-0.95361,-0.88652,-0.15826 -1.6148,-1.7954,-1.6867,1.1853,-0.35679,-2.8298,-0.21133,-2.1835,-0.5535,0.78596,-0.59471,0.59629,0.51939,-0.00059957,0.049162 -0.53299,-3.0989,0.54994,2.0128,-0.68947,-0.92364,1.2861,-2.0086,-1.1829,-0.51819,0.053455,-0.43147,1.2324,-1.8422,-1.11 1.758,1.075,-0.30251,0.89167,-0.71422,-0.95199,-1.8514,-1.7117,1.2495,0.63763,1.5019,-0.024635,0.41833,0.79478,-0.23814 1.8003,-1.6498,2.5805,2.087,-1.289,0.25207,-0.36452,0.38223,0.27414,-0.22052,0.76907,1.2447,0.57284,-0.38416,-0.28456 -0.95702,-3.4202,-2.18,1.8791,-0.35687,-1.2114,-0.58278,-1.0365,-1.1609,-0.58201,-0.28946,0.53037,-0.22115,-1.3324,-0.73313 -0.92855,-4.0807,-0.13627,1.2535,0.47327,0.97339,-1.5128,-1.2091,-0.50262,0.029219,0.025456,-0.64058,0.30397,-1.5421,-0.23591 0.99857,2.4772,-1.3113,0.24046,-1.9759,-1.1406,-1.1129,-0.78638,0.21214,-0.23654,-0.14346,-0.44343,0.39021,0.035064,0.035535 0.78943,-1.809,0.20711,-0.35199,-1.7663,-2.4113,3.3839,0.15384,0.023179,0.52177,-1.0174,-0.40485,-0.74782,1.0613,-1.3889 2.6301,-2.8706,-2.7136,1.5831,-0.68899,1.2566,1.624,0.92172,-0.075499,0.094349,-0.7499,1.0659,0.22188,-0.19574,0.16381 2.3646,-1.5922,-0.93101,-1.0297,-2.1686,-1.0456,-0.0039931,0.30711,1.0072,1.0674,0.99148,0.79642,0.68896,0.53701,1.6474 2.3714,2.7803,-0.32128,-1.6988,-1.3882,-1.7146,-2.0429,-0.62295,-0.77354,-0.89541,1.126,-1.0048,0.055266,0.072419,0.12991 2.4692,-1.61,-1.6106,1.6734,-0.79919,0.91124,-1.157,-0.60281,-0.10325,0.50236,0.63835,-0.68805,0.28426,0.13627,1.2679 -0.24766,0.31825,-0.040779,-0.21026,-2.0666,-1.3063,2.4332,0.011434,0.61338,1.1808,-1.7352,-0.69655,-0.26184,0.8633,0.27094 4.474,-1.9406,1.2219,1.37,0.20175,0.36025,-0.50406,-1.8836,-1.3718,-1.1664,0.43947,0.013835,0.78159,-0.0068154,-0.25724 3.0331,-1.128,-2.2287,-1.3077,-2.089,1.3692,1.5408,1.4711,0.17729,2.0358,-0.46527,2.5725,0.12062,0.22264,-0.95871 3.2021,-0.38505,-2.5986,-0.55645,-0.044526,-1.6375,2.0837,-1.0846,1.235,-1.0266,0.17054,0.19092,0.15465,-0.44686,0.46818 2.9556,-2.6055,-2.4459,-0.61327,0.019116,-0.8407,3.0323,0.84245,0.51493,-1.6997,0.2315,3.4442,0.846,0.3995,-0.13952 -1.409,-0.66065,2.3584,-1.2044,-1.0183,-2.4937,1.6648,-1.5625,-1.6206,1.4547,-0.60166,0.029001,0.20412,0.96479,0.4137 0.014862,0.87105,1.8643,0.0048266,-2.916,-1.9323,1.2565,-0.012558,-0.32928,-0.32703,-1.206,0.32258,0.26987,0.26488,0.37251 -1.8212,-1.5289,-1.7181,1.2392,0.06513,-3.0394,0.672,-1.3849,-0.66933,0.87511,-0.43642,0.013663,0.67981,0.17687,-0.19938 -0.12999,0.8955,-1.2797,2.8214,1.7218,-0.58514,0.53074,2.1161,-0.2995,-0.70292,-0.72839,-0.40226,-0.96693,0.26121,-0.40728 -0.087743,1.616,-1.9659,0.23885,-2.3457,0.077297,0.52607,0.62267,-0.46977,-1.1012,-0.67584,0.41472,0.49054,0.32876,-0.42893 1.5277,-2.5561,3.416,0.7396,-2.2824,-0.92822,0.18726,0.022593,-0.63052,0.12781,-0.48364,-0.19294,-0.43712,-0.2542,-0.098224 -0.64443,-2.0237,-1.1121,0.39485,-0.54042,-2.8891,0.97868,-2.0288,-0.77059,0.637,-1.4593,-0.054687,0.57448,0.013102,-0.39417 0.31809,-1.2759,-1.6105,0.7049,-0.31715,-2.1889,0.93681,-1.6013,-1.0764,2.0408,-1.9291,0.57539,1.4203,0.094819,-0.0035265 -2.3378,-1.9306,-2.1669,0.89099,-0.29419,-2.332,-0.20076,-0.40082,-0.28249,0.043657,0.39601,-0.13735,-0.91683,1.1237,-0.3901 2.8736,0.034682,1.229,1.3384,1.1672,-0.71989,-0.92981,-3.0238,-0.99644,-0.71692,1.7945,-0.89763,-0.1009,0.90093,0.61072 0.26873,-3.2949,1.8685,0.67369,-0.64282,0.94143,-0.20218,-1.6504,-0.99615,2.5461,0.31524,-0.69417,-0.89844,-0.93445,-0.31749 1.202,0.49615,0.11447,1.8254,3.2984,-1.8779,0.14681,2.0599,-0.55637,-0.52364,-0.97435,-0.3587,1.2542,-0.72496,-1.2885 2.4143,-0.61336,-1.7818,0.79602,-1.0037,-0.64717,0.66246,-0.64227,0.61721,1.1307,0.6809,0.35093,1.1588,0.20533,0.89207 -2.5113,-0.82221,-1.584,0.56134,-0.96475,-1.89,0.5721,-0.29039,0.30125,1.2599,0.52338,-0.54408,0.2922,1.4866,-0.46298 -1.434,-1.4752,-3.3398,1.8135,0.41139,-1.4561,-0.020044,-1.1936,-1.4823,0.28271,-1.3428,0.73459,1.086,0.15908,0.51038 -1.7869,-1.9497,-1.1513,1.2267,-0.25095,-1.6522,-0.54667,-0.68653,0.30185,1.5054,0.56314,0.30783,0.052912,-0.13626,-0.37506 -0.62319,-0.061014,2.3491,1.2764,-2.1926,0.65846,-1.2438,0.43919,0.38435,0.069496,1.8964,0.94998,-1.1846,0.17914,0.8497 -1.9998,-2.0656,1.4255,0.0041341,-2.4136,0.3025,-0.72307,1.2271,-0.21218,-0.22154,1.2107,-0.68337,0.64127,-1.4924,-0.17432 3.1247,0.53323,-2.111,-0.42332,0.11753,-2.4949,2.2753,-0.48212,1.0879,0.27876,-0.77292,-0.57746,-0.15455,0.43987,1.0634 -0.85453,-1.6183,0.040795,1.3105,-1.3118,-1.1621,1.3812,-1.9983,0.18521,1.2306,-0.090131,0.079063,1.0092,-0.74025,-1.03 1.1416,-1.0477,0.63075,1.322,-1.945,0.60152,1.7303,-1.7563,-0.69541,-0.10627,-0.44037,-0.22212,-1.417,-1.6071,0.56433 -1.2373,-0.53141,-0.59506,2.2231,-1.7748,-1.1594,1.1947,0.49299,0.8003,-0.16197,1.0498,0.44732,0.018349,0.19643,-0.2097 4.9542,-3.5369,1.5295,1.4121,0.13606,1.3178,-1.1049,-0.080892,-3.4401,0.14097,0.05408,-0.46348,0.29867,0.25251,-0.22924 -1.3781,-1.0472,-2.0749,0.62558,2.6865,0.070565,-0.31002,0.48141,-0.45558,2.4153,-1.2565,0.20016,1.0742,0.26069,0.11144 1.997,0.20421,1.7186,0.88176,-2.8242,-0.76011,-0.66556,-0.88327,0.44049,-0.47148,-1.3496,0.52648,-1.508,-0.46899,0.37805 -2.23,-0.99565,-2.7774,0.63475,-1.3222,-1.9661,-0.10839,-0.4492,0.3168,0.4476,0.24901,0.029507,-0.23295,0.26252,-0.9215 2.7535,1.8741,0.26941,-0.0048536,-1.6281,-1.7034,-0.33255,-1.3363,0.78419,-0.63829,-1.4833,-0.035844,-1.2869,0.60188,-0.89043 -1.7983,0.32387,-3.5477,-0.46444,-0.69623,-0.35293,-0.39676,1.0283,0.12496,0.74655,-0.77703,-0.27174,0.29459,1.163,0.33433 -0.15931,0.58381,0.87454,1.6993,-2.0828,0.38577,-1.4197,0.49813,0.306,-0.085178,1.2488,1.0973,-0.97125,0.36273,0.40953 2.3226,1.714,-1.7079,-0.69817,-0.74858,-2.2674,0.090347,-0.10654,1.752,0.11529,-0.90232,-1.1638,0.28148,0.60818,-0.62908 -2.7072,0.82721,-2.3049,0.13653,-1.382,0.030516,1.4426,1.0457,0.082052,-0.19529,0.3606,-0.36231,0.61294,0.51726,0.020981 -2.5083,-0.11654,-0.65896,0.3534,-1.989,0.17509,0.31071,0.30633,1.2216,-0.58653,1.4896,0.26503,-0.12677,-0.78999,-0.018263 0.65214,-1.9619,0.27761,1.0023,-1.1617,0.10513,-0.30268,-1.2117,-1.4227,-1.8795,0.79227,0.27446,2.2507,-1.3635,-0.10645 -1.3952,-0.73267,-0.67636,-0.089032,-0.99824,-1.4403,0.95463,-1.717,-0.020452,2.2899,-0.32864,-0.013385,1.3886,0.81273,-0.22437 -1.294,-1.9605,0.7123,-1.2349,-1.8907,-0.097911,-0.62364,-2.107,-0.027361,1.2017,0.51491,0.14758,-0.21968,-0.39982,-0.80528 1.6775,-0.30899,-1.5366,1.5767,3.8273,-1.4505,0.31512,1.6129,0.32732,0.62244,1.032,-0.9986,1.3474,-0.047906,0.095148 -1.4056,-2.6163,-1.3399,-0.12595,-0.39569,-1.1382,-2.6958,0.10839,-0.69683,0.28794,-0.073268,1.3337,-0.3553,-0.80943,1.4021 -1.956,-3.4454,0.72964,0.53155,0.48352,0.67013,-1.4795,-1.7115,0.28728,2.0364,-0.11251,-0.00023256,-0.70028,-1.1737,-0.84723 5.0781,-1.8999,-0.63294,-0.80785,-0.79197,-0.51975,-0.05733,-0.34312,0.81979,0.048387,1.0145,-1.3601,-2.2277,-0.090266,1.221 2.8114,0.034126,-2.7157,-0.72598,-0.99378,-0.60207,1.4329,0.18184,2.0484,-0.15735,0.12802,-0.1085,0.24561,0.19145,-0.36633 -1.8493,-2.0223,-1.2336,-1.4487,0.65848,2.1962,-1.1025,1.8038,-1.0566,-0.11983,-1.3136,-1.4529,1.1678,0.54847,0.51169 0.91392,3.0781,-1.5718,-1.7998,0.11631,0.023134,-1.2847,1.3941,-0.25338,0.53277,-0.51894,-1.9731,-0.32058,-0.5195,-0.21167 -2.026,-2.0982,-2.0356,-0.96459,0.24171,0.35296,-2.291,0.55082,-0.4452,-0.91842,-0.66051,0.5524,-0.16193,-0.9592,1.075 3.9109,-1.7433,0.48058,-0.36406,3.1409,0.12139,1.5999,-1.4754,-2.0695,-0.37382,2.0901,0.38886,0.55986,-0.41986,1.6708 0.24577,0.32658,2.8877,0.80311,-0.67386,-2.3916,0.93084,0.25136,-1.1164,0.023532,0.11784,1.4818,1.5331,0.38206,-0.60581 -1.7207,-2.5609,-1.4231,-0.9374,0.35636,-0.97654,-2.3906,0.46058,-0.3139,-0.22163,-0.79981,0.43009,-0.51409,-0.85699,1.6437 -1.1378,-2.9573,-1.9916,-0.25987,-0.43559,-1.6195,-2.3831,1.385,-0.81553,-0.088943,-0.39811,0.71572,-0.68721,-1.1052,0.74923 -1.3238,0.28409,-3.6437,0.012651,-0.192,-1.9459,-0.23274,1.1404,-1.2983,-0.26632,-0.71187,0.88396,-0.15874,0.55196,1.0885 -1.4238,-0.62141,-1.6431,-0.53634,0.097544,-0.76733,-1.4213,-1.1058,-1.5472,0.088148,0.17607,3.0229,0.27973,-0.26181,0.71174 -0.31154,1.7691,-0.77947,2.3252,-1.8634,-0.0096601,0.27068,-0.51718,0.33361,0.8542,-0.20409,0.80341,0.23936,0.63035,0.64231 -1.4702,-3.3863,0.14123,-0.0070761,1.4141,0.21703,-1.4681,1.8517,0.37685,1.7133,-1.9831,-1.5697,0.01248,0.92121,1.3084 0.68823,1.5763,-1.7536,1.4949,2.8476,-1.5852,-0.55509,2.1495,0.11945,-0.48282,-0.66767,-1.907,0.56208,0.10736,-0.76888 0.43361,-0.44304,2.9555,1.5686,0.58943,0.28241,-1.8517,1.9014,0.9406,0.10976,0.91039,0.7678,-0.71339,0.031538,0.45 -2.6219,-2.7336,0.11509,-2.0387,-0.78686,1.1411,-2.9208,-0.66363,-0.93948,1.1024,-0.24136,-0.16876,-0.0084259,-0.13337,0.35325 -0.09471,-2.4401,2.3927,0.59262,-0.1946,1.8488,-0.61886,2.0186,-0.30754,2.2213,1.694,-1.4161,0.24725,1.3256,-0.4916 2.8758,-0.57348,-1.6966,-1.8796,-0.66546,-1.2383,0.91535,0.60435,1.9805,-0.94372,1.4476,0.053543,0.0042029,1.3047,0.69534 3.1927,1.8582,-0.89895,-0.8488,-0.056776,-2.3908,0.25886,-0.57665,0.2077,2.0736,-0.53827,-2.0062,0.43477,0.50817,1.0895 -1.5498,-2.6552,-1.385,0.0028848,-1.0369,-1.1612,-3.1563,0.31084,-0.34827,0.34504,0.11815,1.4863,-0.77425,-0.6652,1.4699 -2.1295,-3.6236,-1.4348,-0.75573,-0.7003,-0.95111,-2.8217,1.1659,-0.13613,0.00058208,-0.46745,-0.52343,-1.8139,-0.23931,0.43132 -2.4026,-1.5387,-2.0011,-1.0907,0.99681,0.7166,-2.8605,0.94113,-1.0147,-0.75504,-0.2088,1.1443,-0.72237,-0.2606,1.8491 1.0235,2.2441,0.47438,1.4542,0.38529,-1.8942,-1.9157,-0.054677,-0.90622,-0.17503,1.8397,0.10521,-0.86497,0.79907,-0.90072 -2.0456,-2.3341,-0.56775,-1.3668,-0.95957,1.39,-2.1466,0.29861,-1.3348,0.42246,0.38936,-0.50615,0.8886,-0.56163,-0.3612 -2.6814,2.046,-1.1742,-0.036616,-0.41768,0.61395,1.1308,1.4831,-0.46819,1.7437,0.46455,0.94566,-0.3977,0.17272,-0.38595 -2.9089,-1.8727,-1.2766,-1.2441,-0.058161,2.2765,-2.535,-1.1865,-1.4739,0.024644,0.18658,0.37343,-0.31392,-0.5472,-0.062458 2.1764,1.9781,0.92688,-0.89233,-1.0278,-3.0889,-0.019584,0.41527,0.49336,-1.9338,-1.458,-0.052914,-0.52018,0.44247,-0.68105 0.7965,-0.77841,-1.2342,-0.59971,-0.34853,-1.121,0.46815,1.1282,-0.023146,-0.14367,1.2388,1.5934,0.83056,0.53436,1.011 -3.3184,-1.0859,-3.1059,-0.92609,0.18697,-0.99828,-1.903,-0.092882,-1.582,-1.5445,-0.16853,1.4505,-0.66875,-1.1937,0.5109 3.1142,0.33475,0.33293,1.0736,1.8556,-2.1108,-0.33528,-0.7158,-2.3976,1.2261,2.4246,-0.79589,-0.38035,-0.34393,0.86116 -2.9489,0.20509,-1.2881,0.76904,-0.63792,-0.25277,0.84876,-0.59417,-0.16567,1.369,1.5622,0.80738,-0.60032,0.524,-1.3235 -1.2349,-2.6041,-1.924,0.04318,-0.18559,0.14167,-1.7472,2.5251,0.072181,0.8612,-0.86233,-1.4528,-0.68308,0.61615,0.52625 2.0741,-0.93565,-1.8435,1.7557,0.80825,1.4652,-1.1223,-0.28222,0.17387,0.96358,2.8751,-0.50178,0.55503,0.3998,0.81711 -2.0996,-1.4853,-2.8328,-0.64437,-1.3189,0.37497,-2.5633,0.6545,-0.59576,-0.96556,-0.23181,0.61771,-0.67803,-0.84013,1.3957 -2.4462,-2.4751,-2.1412,-1.6811,0.95531,-0.81524,-2.8585,1.5147,-1.2227,-0.5678,-1.4365,0.44199,-2.0776,-0.56141,1.7435 -0.52004,-1.8448,-1.7714,0.56131,0.86662,-0.66955,-1.9422,2.1572,0.50903,0.79321,-0.8432,-0.24448,-1.1727,-0.11192,1.9952 1.2189,1.9931,0.5783,-0.12757,-2.1814,-1.5892,0.67484,0.35942,-0.6319,-0.49423,-1.4393,-0.088541,1.0378,1.16,0.63558 2.0103,0.042944,-2.1207,-1.5368,-1.7786,-1.1844,0.79244,-0.044433,2.0993,0.30809,0.38464,0.28372,0.016556,0.42566,1.3115 1.9692,-1.7669,-0.39731,-2.6895,-0.48071,-0.49312,0.45584,1.8666,-2.4856,0.24773,2.6119,2.563,1.7156,-0.93163,0.91097 3.2051,-0.98941,1.6796,1.0761,-1.4318,-1.1411,0.28149,-0.47001,0.21659,-1.2671,-0.5514,0.79413,0.76882,0.15936,-0.79201 2.2343,-1.3479,-2.2908,0.943,-0.1782,-1.0547,2.2886,0.71385,1.7167,-0.086547,0.10427,1.2836,0.2228,1.0074,-0.072886 4.1453,-1.2353,0.1685,-0.84863,-2.3345,-0.083394,-1.5435,1.9489,0.028972,0.047172,-0.83196,-0.62844,-0.78481,0.82763,-0.7797 1.9066,-0.62153,1.9717,0.36529,-3.1615,-0.39484,0.14942,-0.28824,0.30852,-1.2598,-0.73685,0.39442,0.52886,-0.54114,-0.3287 2.3764,-1.5064,2.1926,2.1977,-1.9543,-0.10013,-1.015,-0.18218,-0.25654,0.057248,-0.20344,0.22553,-0.33362,-0.42199,0.36602 -0.06025,1.1604,0.38014,1.1513,-2.7163,-0.86245,-1.3758,-0.17739,0.57547,-0.91001,0.36559,1.0254,0.69778,0.23025,0.26143 2.6531,-0.67401,-0.84946,1.9451,-1.8475,0.93143,-0.31019,0.035044,0.66718,-1.4358,-1.0151,-0.21297,-1.0642,-0.35091,-0.94163 -0.43737,0.70991,-1.3974,2.8964,-1.2309,0.68624,0.19921,-0.11269,0.86257,0.021732,0.7172,0.33198,-0.13017,0.45131,-0.01633 4.3324,-1.4314,0.046243,-1.0388,-2.471,0.99287,-1.1903,1.7806,0.2042,-0.46975,-0.97457,-0.050693,-0.26068,0.44322,-1.0649 4.5934,-0.50201,-0.7379,-2.6785,0.4062,-3.5334,1.5236,-0.44515,1.0322,-0.41289,0.51647,-0.22206,-0.68894,0.17897,1.1871 0.47597,0.28167,1.6767,0.65258,-2.1992,-0.33232,-2.4019,0.9865,0.57704,-1.1711,0.87756,1.2478,0.63305,-0.024409,0.074504 0.60535,0.16829,-0.90167,2.4271,-0.47881,1.1199,-1.8969,0.85941,0.63366,0.80133,1.4992,0.1496,-0.66718,1.3904,-0.24463 1.7424,1.1587,1.1157,2.045,-1.2101,-1.4027,0.73665,-0.98275,0.065126,-0.13605,-1.5629,0.23544,1.1025,0.30505,0.16393 3.0527,0.41898,0.58626,1.5245,-0.42138,-1.8067,-0.189,-2.004,0.13166,-1.0481,-0.49879,-0.8549,1.3336,0.56049,-0.064256 0.14633,2.8029,-0.054225,0.62688,-1.4115,-1.8277,1.3182,0.24137,-0.51532,0.33226,-2.4664,-0.49632,-0.85333,1.1336,0.82937 -1.6541,0.093798,0.58014,1.4148,-2.2211,-1.4746,0.9969,-0.7054,0.47683,0.28774,0.97,-0.043679,0.49495,0.37256,0.52254 0.85063,0.16779,-2.1673,2.7191,1.4222,0.52668,-0.068381,0.47668,-0.68075,-1.7466,0.80651,-0.85521,-0.59786,0.16984,-0.4214 4.5071,-2.1122,-1.6324,-1.3114,0.37883,-1.741,3.008,0.92085,1.292,-0.49983,0.53616,1.6384,0.80857,0.68483,-0.057664 -0.62394,0.46771,-1.023,1.7869,0.50763,-1.737,2.1776,2.2899,-0.83451,0.64194,-1.1263,-1.3177,0.31243,0.43626,-0.036927 2.4979,1.5712,-1.406,-1.9296,-1.0487,-2.3391,0.74917,-0.23395,0.33913,1.1067,0.69801,-0.56963,0.11843,0.25675,1.8459 0.70887,2.5432,0.55053,-0.16898,-2.17,-1.8242,1.1687,-0.33198,-0.13094,-0.14516,-2.0891,-0.26808,0.29529,0.6074,0.20487 1.0824,-2.488,1.2753,3.0027,0.04698,0.43569,-1.4827,2.8003,-0.13908,-0.48559,1.1273,-0.19651,-0.55673,-0.37827,-0.46328 3.2031,-0.71785,0.79698,0.068224,-2.2114,-1.9105,-1.0214,-0.17947,1.0195,-1.3828,-1.0846,-0.30016,-0.83817,-0.38748,-1.1646 -1.4102,-2.2187,0.10561,1.2869,-1.4048,-1.4067,0.27958,-1.2636,0.8314,0.70491,0.71696,-0.25766,0.33831,-1.0342,-0.93262 -0.50293,1.384,-1.6126,2.1709,0.13076,0.56773,-1.847,0.68814,0.19459,-0.47374,0.81618,-0.40545,-0.98837,0.62524,-1.1304 2.0264,1.6664,-1.3356,0.79974,-0.2815,-1.178,-1.1111,-1.7991,0.68568,0.77261,1.2552,-1.2036,0.44872,1.1076,0.59015 3.1078,-3.0467,-2.4945,1.3084,0.29061,0.0072772,2.6325,0.49421,0.82812,-0.80069,1.0692,1.5306,0.38332,0.88678,0.66497 3.0048,0.62383,-2.0132,-1.3781,-1.0013,-1.4544,0.48461,-0.59255,1.2307,-1.1392,0.85733,-1.0174,-0.14001,1.1386,0.53414 3.0786,0.11447,-0.26454,0.23508,-1.2099,-1.4678,-0.70958,-1.391,0.2474,-1.2421,0.17846,-1.1466,0.98803,0.4792,-0.050785 -0.8025,1.3267,-0.63145,2.743,0.33159,0.78567,0.3191,0.13394,-0.89606,-2.0625,0.76134,0.43203,-1.199,0.38855,-0.44858 -0.20759,-0.90891,1.139,2.8731,-1.222,0.75616,0.20496,-1.2861,-1.5164,-1.8259,1.3506,0.20216,0.8535,-0.85213,-0.15397 0.6815,-0.90336,0.51739,3.3489,0.37346,1.5458,-1.4589,0.48886,-0.88961,-2.0849,1.7474,0.29106,-0.71193,-0.3137,-0.16234 1.204,0.49587,-1.1417,0.6804,-0.22905,-0.64291,-1.54,-0.8905,-0.075108,-1.4717,2.9033,-0.73703,0.4895,0.93316,-0.61413 0.25527,-0.53296,-0.10622,2.3718,-1.0538,1.2752,0.44615,-1.3029,-0.2051,0.76783,0.96464,0.353,0.19378,-0.93344,0.26867 2.38,0.40935,-0.22623,1.1575,-1.055,-1.0378,-0.80515,-1.7213,0.26298,-0.65724,0.44734,-0.64617,1.235,0.47069,0.3938 5.2277,-1.3523,1.5482,-1.4561,0.13796,0.41111,-1.6162,1.4659,-1.029,2.1941,1.1778,-0.33178,0.0081487,1.0285,-0.30809 3.0005,-2.9178,-1.5672,0.47368,1.2962,2.5833,1.1772,1.4489,-0.22295,1.6879,0.19738,1.6667,1.2502,-0.28686,0.037957 -0.69202,-2.6075,0.095526,-3.0499,-2.1036,-0.88823,0.059918,-1.5744,-0.10533,-0.0058748,-1.5131,0.16457,-0.56439,-0.42153,-0.85981 0.28688,-1.5783,0.30013,0.062918,-3.1031,-0.2054,1.235,-0.61406,1.2157,-0.092289,-0.98547,-0.30985,-0.66619,-1.8108,-1.2188 -0.9516,-1.7615,1.577,1.1507,-1.598,-0.56571,0.51951,-1.2223,-0.074195,-0.035279,0.302,-0.26502,1.0446,-2.0943,-1.2126 0.47823,1.229,0.75763,2.4173,-0.23861,-0.95291,-0.6003,-1.3903,-1.2919,-1.285,0.042463,1.4521,0.48586,-0.58593,0.56053 -0.34541,1.4704,1.8888,-2.1602,0.34821,-0.99049,2.2145,1.4768,-1.5708,-0.78697,-2.8908,-1.077,-0.37898,0.53866,0.085012 -1.1636,1.7234,0.57562,0.2915,-2.0411,-0.34612,-1.4251,0.83312,-0.23522,-2.0722,1.6635,1.7155,-0.11578,-0.080857,-0.055259 -3.6121,-0.64787,-0.12541,-1.1897,-1.5494,-0.54541,0.13519,-1.5626,-1.2415,-0.41619,1.6706,0.43138,0.4646,-0.64836,-0.90765 0.6255,1.4959,-0.065314,0.70344,-2.1059,0.094977,-2.15,-0.24491,0.30469,-0.43492,0.91345,0.65947,-0.10273,0.007474,0.013692 -1.2539,-1.3,1.2911,-1.7776,-3.0156,-0.90097,1.0603,-2.0338,-0.36776,0.18798,-0.22048,-0.96572,-0.56577,-0.67466,0.072674 1.1213,0.456,-0.17083,2.1016,-0.37214,1.2099,-1.2966,-1.1905,-1.5361,-0.8472,1.8123,0.050438,0.66965,-0.13345,0.1912 0.28575,2.2315,-0.40268,1.2417,-1.3557,-0.65515,-0.48759,0.32158,-0.23379,1.1568,-0.92359,0.37461,0.085841,1.6929,0.71119 -1.0305,1.777,-1.6329,0.50214,-2.908,0.40143,1.085,-0.42815,-0.16463,-0.2803,-0.43459,0.50421,0.19791,-0.10293,0.7077 1.2085,-2.8436,2.581,-0.73329,-1.8675,1.9221,0.52787,0.93929,-0.20251,2.8748,-0.63776,-0.86732,0.19239,0.46351,-1.6604 0.59487,-2.7285,4.117,1.4498,0.16008,-0.13855,-1.1165,1.591,-1.4759,0.06469,1.7041,0.59813,-0.40839,-0.037123,-1.4045 -1.0828,1.3343,1.8486,2.438,-0.60333,-2.3744,0.21856,0.1338,0.22836,-0.26483,0.43163,1.0125,0.050791,0.78462,0.38562 2.9098,-3.8414,-3.716,0.97585,-0.49809,3.1349,2.3607,2.5269,-2.2155,-0.32588,-0.61572,1.0782,0.63351,0.41839,-0.17761 -0.81268,-4.0401,2.4874,-0.2944,-0.43002,-0.34995,-0.71063,0.44456,-0.71452,1.4355,0.89635,0.26345,0.073387,-1.1859,-1.5183 -3.8571,0.72312,-0.36748,-1.0514,-0.2801,-0.10113,1.8717,-1.0104,-1.8388,-0.52788,1.0151,-0.24594,0.17091,-0.19034,-0.25524 -1.4361,-1.9638,2.4408,-2.1123,-2.5378,0.3984,-0.35883,-0.62079,-1.3274,0.94969,0.50674,-0.20912,-0.10341,-1.2391,-0.50083 -3.3281,-1.1273,-1.265,-1.6555,-0.74247,0.1803,-1.0134,-2.1786,-1.1762,-0.58644,1.1062,1.0022,0.098933,-0.3326,-0.91918 -0.75026,0.6795,-1.3251,2.3098,0.86235,-1.1875,2.5413,1.3903,-0.84715,-0.52816,-0.96416,-0.53418,-0.58302,0.67973,0.4169 4.4306,-4.1453,-0.80169,-0.89292,-0.43239,1.1268,1.55,0.51786,-1.4826,-3.8071,-0.27802,-0.024924,1.045,0.42554,-0.6362 0.053096,2.3623,-0.80142,2.493,0.16222,0.057406,-0.35902,0.63836,-0.77631,1.4104,-0.82086,-0.098473,-0.47133,0.99479,0.15585 -0.88584,-1.9015,-1.8631,0.90798,-0.64759,-1.5624,0.5436,-1.7656,-2.1112,-1.222,-1.0068,0.6695,1.5697,-0.82822,-0.24959 -1.4927,-0.39734,2.5261,0.14062,-1.8418,-0.46411,-0.50126,0.6593,-0.057517,-0.23208,2.0327,0.88119,-0.16898,-0.98068,0.24615 -2.3151,-1.5659,-2.9469,0.55273,-0.57157,-2.0227,-0.87081,-0.66709,0.49566,-0.3528,-0.15038,0.98682,-1.1198,0.034371,-0.46004 -2.8611,-0.89309,-2.0849,-1.2189,0.97006,0.69163,-2.0765,-1.0181,-1.536,-0.81226,-0.11592,1.6885,-0.87037,-0.63397,0.64186 2.3243,2.7238,-0.91639,-1.9229,-0.23363,-1.5477,0.57177,0.79431,-0.15869,-2.3942,-0.68731,-0.99426,0.60396,1.2492,-0.72101 4.0588,0.35892,-0.18834,0.76526,0.20039,-1.6734,1.1062,-1.9186,-0.37628,-2.4889,-1.2711,-1.897,-0.38919,0.32831,0.033177 4.5431,0.013652,-1.1724,-1.7843,-0.64054,-2.1054,0.69606,-0.49146,1.6863,-0.87209,0.34749,-0.75515,-0.23317,0.71563,-0.23664 5.2171,-0.57062,1.3799,-0.9331,-1.1632,-0.45957,-1.2403,0.064305,-0.46531,0.70079,0.61898,-1.0746,-1.6053,0.83783,0.70733 2.9315,0.93606,-0.98083,-1.6006,-1.7194,-1.6396,-0.68271,-0.068557,1.79,-2.3617,-0.05816,-0.5009,0.15359,0.53382,-1.1986 0.58883,-1.0349,1.2356,3.0734,-0.29827,1.7878,-1.3682,1.5227,0.067258,0.39277,1.0339,0.22409,-0.80664,0.64688,0.47374 3.7976,-1.0879,-0.84172,-1.8862,-2.1696,-0.15002,-1.779,1.5685,1.4945,-1.3681,-0.34124,-0.32483,-0.37147,0.059123,-1.2554 4.5401,-2.5905,-1.7294,-0.15548,0.70481,0.042907,1.9444,-1.0325,-0.018947,-2.6341,0.25083,-0.85928,-0.14992,-0.3545,0.335 3.4436,-1.5638,-0.29379,1.4512,0.98525,-2.2389,0.81468,-2.0492,-1.7924,-0.34901,1.7965,-0.61822,0.82696,0.70934,1.4538 2.9714,1.3539,-0.45708,-0.89802,-1.5147,-2.5274,-0.18167,0.23156,1.4455,-1.7061,-1.2983,-0.13073,0.007666,0.56715,-1.5428 3.9843,-3.0963,-1.6642,-1.5191,-2.2111,0.76614,1.4231,2.0539,0.28992,1.4629,-0.55381,1.9953,-0.52985,0.45905,-0.16347 1.8732,1.701,-0.29019,0.63213,-1.8683,-1.7899,0.76999,0.33722,0.68839,-0.78982,-2.101,0.10227,-0.2232,0.87434,-0.61288 1.6625,2.8672,-0.55707,-0.73627,-1.3242,-2.1599,-0.16811,0.029333,0.45392,-1.1553,-1.4529,-0.97186,0.17543,1.4395,-0.28142 0.96896,0.51344,2.5642,1.8045,-0.85154,-2.2011,0.74093,-0.74514,-0.84298,0.089861,0.98045,0.56371,0.13314,1.4709,0.81941 1.782,-0.95204,1.5031,1.939,1.4431,2.1471,-0.50783,2.4134,1.1577,0.21627,-0.66957,0.767,1.1637,0.032619,0.22241 3.5826,1.0223,-0.62237,0.40918,-0.58101,-2.0299,0.065411,-1.128,0.98444,-0.86063,-0.94686,-1.3705,-0.48352,0.82125,-0.25336 -3.0958,1.0564,-0.56555,0.12329,-0.32188,-0.83968,1.6911,-0.72579,-0.70721,1.6047,-0.021957,-0.449,0.03732,0.94061,-0.098076 -1.1503,1.7946,-1.0606,1.8493,-1.9137,-0.013456,0.57757,0.28414,0.33719,0.7145,0.26058,0.89645,0.16973,1.0349,0.39723 -1.2645,-1.1065,-0.2976,0.30623,-2.3932,2.3656,-0.41156,-0.12231,0.059217,0.10311,0.82034,-0.86962,0.92164,-1.0138,-0.26822 1.8263,0.497,0.98701,0.67212,-2.4457,0.15586,-1.9659,-0.48162,0.71323,-0.081575,0.18657,0.25955,-0.21127,0.025448,0.67995 1.4659,1.2911,0.76459,0.88614,-2.3561,-1.9324,0.63312,-0.10679,0.70114,-0.20711,-1.5127,0.080218,-0.30238,1.0154,0.77243 -1.8961,1.6431,-0.022991,-0.292,-3.0423,-0.23951,1.4093,-0.77326,-1.6263,-0.78366,0.33273,0.42051,-0.24391,-0.13243,0.98397 3.2084,1.0214,0.85528,0.81353,-0.58924,-2.0847,-0.53737,-1.7887,0.082818,0.31103,0.03299,-1.1445,0.34838,0.50751,-0.31538 -0.81136,1.9463,0.77238,0.036398,-1.5304,-0.56758,1.2548,0.97445,-1.1524,2.0074,-1.0634,-0.12204,0.20861,1.2265,1.2997 4.1655,-2.0163,-1.5868,-0.58257,0.68299,-1.0677,3.4307,0.98646,0.7742,0.081636,-0.9143,1.4776,0.14775,0.50531,0.24243 1.1095,1.726,-0.93139,-0.93879,-2.2497,-1.1062,-0.36514,0.76341,0.43175,-1.5272,-1.0808,0.1657,0.58001,0.90859,-0.29386 3.058,-0.68704,-1.1041,-1.8096,-2.389,-0.68423,-1.7767,1.3069,1.0607,-0.90557,0.02966,-0.57555,-0.38304,0.060055,-0.70615 -1.0268,2.7373,-0.054965,0.039762,-2.7579,-1.1293,0.80728,0.34692,-1.7142,-1.623,-0.77151,-0.039051,0.05256,0.78981,0.74663 0.012071,-1.9848,-3.1304,2.3653,-1.0644,0.61041,-1.1325,-0.13913,-0.035809,-0.095889,-0.54375,0.61166,-0.71627,-1.163,0.73001 2.7753,-2.3159,-0.59307,-0.36172,-1.0343,0.50287,-0.83628,1.0867,0.10828,2.5524,1.7996,1.2059,1.593,0.024137,0.74722 4.7813,-1.8914,-0.074966,-3.1285,-1.1557,-1.889,-0.3139,0.9053,-0.25401,-0.51877,1.2386,0.0041067,0.21235,0.053188,-0.013698 1.0371,-1.035,-1.2912,0.40141,-0.039345,-0.039624,2.3903,-0.25999,-1.2023,1.6335,-1.8352,0.32956,0.62005,-0.72594,-1.0712 -0.81148,-2.7561,-0.98332,0.44492,-1.4151,1.0272,-1.6636,0.28605,0.73361,1.521,-0.29397,-0.29506,1.0728,-0.24548,-0.32366 -1.815,1.9031,-1.0612,2.0053,0.072304,-1.1343,1.0445,2.0267,0.86975,0.093201,-1.3493,-0.31763,-1.0901,1.2927,0.51263 0.26521,-2.4706,-2.7044,2.1061,-0.69786,1.4031,-0.60442,0.83368,-0.11599,0.4686,-0.34641,-0.82588,0.48939,0.15253,0.32894 0.52377,-3.2307,-2.2018,2.4224,-0.30135,1.1158,-1.2509,0.31945,-1.0608,-0.11136,-0.21666,0.0080692,0.56297,-1.0337,0.8014 -0.79163,0.34219,0.19503,0.70661,0.33228,-0.073415,0.61221,-0.15601,-1.4365,3.1521,-0.3358,-0.40856,-0.59906,0.89251,0.94966 3.4209,-0.98483,0.11063,0.80676,-1.1568,-0.48591,-0.41133,-1.629,-0.25812,-1.16,0.32966,-0.46723,0.78697,-0.69907,-0.014547 -0.91816,-3.4804,-0.12923,0.51942,-0.029237,1.6495,-1.859,-1.6578,0.39273,1.9909,-0.6789,0.20041,-0.56619,-0.55213,0.56275 -1.5797,1.6243,-1.6571,1.5535,-0.70693,0.61581,0.42375,1.633,0.42628,1.0267,-0.59676,0.50871,-0.73016,0.46622,-0.084703 -2.2987,0.53961,-0.87948,0.26662,-1.6165,-1.1231,1.693,-0.18404,-0.4313,1.3332,0.17907,-0.76066,1.2949,0.97123,0.31291 -2.3475,1.4176,-0.60884,1.1351,-0.73674,-0.41303,1.1711,1.3836,0.73838,-0.40265,-0.15941,-0.51616,-0.27126,-0.046046,1.0045 -1.0171,-0.41483,1.8838,2.1665,-0.89505,-0.66147,0.50903,-0.85743,0.06644,0.74496,1.6089,0.83414,-0.94453,0.72947,0.32549 -1.3419,1.9984,0.33664,0.1016,-2.26,1.5945,-0.90201,0.77398,-1.392,0.82582,0.8296,1.1156,-0.079327,0.57621,0.38364 0.41728,0.7533,-0.4378,2.0688,-0.80724,-0.4631,2.3498,0.050254,0.012548,0.92718,-2.3946,-0.30728,0.93948,-0.30921,-0.05422 -0.050947,1.4101,0.50507,2.5066,-0.67472,-1.6657,0.14556,0.67285,0.67856,0.74809,-0.5678,0.69632,1.1102,0.70702,0.32083 0.16295,-0.5554,2.1504,2.1458,-1.6113,0.75783,-1.4655,0.34512,0.6659,0.19488,1.5466,0.88033,-0.96597,0.15849,0.8922 3.2749,0.09596,-0.31809,0.24901,-1.5202,-1.6308,-1.1662,-1.3079,1.3646,-0.43991,-0.17392,-0.60008,-0.1313,0.37228,-0.11118 -0.33185,0.31944,-0.39286,1.5047,-0.72139,-0.69668,2.0973,0.62026,-0.59551,2.4193,-1.165,-0.5725,1.6621,0.5256,0.55823 -0.38615,1.9555,0.12839,0.47491,-2.4907,-1.3693,0.87653,-0.19037,-0.0025078,-0.10817,-1.7027,0.2055,1.3303,0.33334,0.53521 2.1746,-2.8609,2.0051,1.9833,-0.8391,2.8102,0.21015,-0.037336,-1.2663,0.018433,-0.60872,-0.68237,0.4005,-1.6493,-0.36299 3.4112,-0.82546,1.6839,1.4647,-2.1256,0.54481,-1.5263,0.063838,-0.059363,-0.33078,-1.5567,-1.1062,-1.5214,-0.029234,1.1059 1.5293,1.4959,-0.69191,-0.59371,-2.4418,-1.3686,0.091257,0.77449,0.87106,-1.7971,-1.084,0.36265,0.28251,0.77706,-0.53794 0.084173,-2.0852,1.3297,2.3797,-0.71209,2.0704,0.087766,0.83844,0.45844,0.32335,-0.12335,-1.5948,0.73396,-1.4623,0.70418 1.1251,1.3596,-0.018094,2.3655,3.5283,-0.59169,-0.2539,0.76916,-0.93233,0.66608,-0.98657,-0.78666,1.622,-0.84486,-0.79805 -1.2943,-2.081,0.76363,-1.6595,0.83808,1.3971,-1.4827,-0.90922,0.056106,1.3511,0.116,-0.57641,-0.77243,2.1146,0.56008 -0.23597,-2.9239,1.8412,0.18692,-1.4604,0.43563,0.27392,-1.818,0.61704,0.94551,-0.0080911,-0.67663,-0.19963,-1.4207,-1.3912 -1.4763,0.41135,-2.3,0.53889,-1.1374,-0.3865,1.7489,1.8033,-0.14373,1.2269,-0.53892,-1.0626,0.057276,0.66752,-0.032385 3.0028,-1.8271,0.92638,0.043895,0.27697,3.1251,2.6007,1.3178,-0.17626,1.5066,-0.6771,-1.34,-1.4823,2.0593,-1.0594 0.20003,-1.0124,1.1461,1.6163,1.7665,0.73882,0.26843,2.2089,0.8525,1.8,0.53493,-0.90233,0.97188,1.5213,0.22221 1.8898,1.8899,1.4225,-0.68994,-2.363,-1.4046,-1.5798,-0.70712,-0.22829,-1.9482,-0.41188,0.15505,0.83134,-0.32412,0.17229 -1.6353,-1.3862,0.53497,0.86753,-0.32821,0.76095,-0.60684,-0.46862,0.11594,1.1288,2.302,-0.077218,-1.0894,-0.014823,-0.2958 2.2918,1.4789,-1.4943,0.2024,0.22033,-1.9721,2.1159,1.2376,0.49411,0.71013,-1.9234,-0.77259,-0.075806,1.1103,-0.55146 -1.2482,-3.245,-0.77585,1.3539,1.1807,1.3175,-1.4127,-0.43039,0.40449,0.84847,-1.3475,-1.4119,0.2937,-1.5053,1.0429 1.4396,-2.8227,2.6666,2.1567,0.2368,2.077,-0.46454,1.8332,-0.24279,1.0766,0.016703,0.060715,0.53947,-0.72004,-0.38451 -2.313,-1.6978,-2.0507,1.2484,-0.86756,-0.75269,-0.91974,-0.42492,0.98179,0.67408,0.68855,-0.079906,-0.91997,-0.50509,-0.85314 -2.3457,1.7739,-0.34644,0.97748,-1.5514,0.66107,0.25245,0.75839,-0.5122,-0.34158,1.5245,0.92372,-0.23481,-0.54143,-0.084151 -2.0193,-1.8355,-1.0556,1.2858,-0.29114,1.4109,-0.50052,0.70449,1.602,1.1626,0.57972,-1.6765,-1.1046,0.5849,-0.55139 0.12998,2.6406,-0.25199,0.75352,-1.2022,-0.64439,-0.51547,0.22829,-0.282,0.28722,-1.4168,-0.0080742,1.2227,0.22046,0.1397 1.4852,0.82227,-0.56507,0.9884,5.0519,-1.257,-0.045119,0.64653,-1.9345,1.2026,2.4602,-0.47416,-0.25006,0.48354,-0.22191 4.2417,-3.5212,-0.80187,-0.62993,-0.194,0.11356,0.8311,1.2941,-1.33,2.1703,0.38993,1.3132,1.0987,-0.10074,1.6793 1.9076,-1.5775,-0.35015,1.8795,-0.91728,2.5659,0.39897,0.57328,0.065025,1.565,-0.47676,-0.50817,-0.3874,0.048161,-0.97118 1.3902,1.7796,-0.97978,0.12854,-0.42905,-1.6016,-0.82566,-0.18482,0.60022,-1.4088,-0.20674,-0.7981,2.5209,0.29146,-0.7098 1.7681,1.0945,-1.3387,-0.019459,-0.65546,-2.1046,0.12567,-0.56608,0.16233,0.25186,0.20776,-1.1436,2.0272,0.57172,0.32816 1.6254,1.6168,-1.4468,1.4265,0.37692,-0.68085,-1.2697,-0.6211,0.59703,1.3139,0.93016,-1.0766,0.90616,1.1727,0.054138 -2.6732,1.5937,-1.3374,0.50885,-2.0297,-0.28078,1.1559,0.29941,-0.92869,-0.50043,0.32863,0.73062,1.2139,0.54785,0.33884 -0.2448,-1.5448,-1.3146,0.80516,-0.75725,2.0188,-0.5838,0.99046,1.3353,1.2642,-0.45296,-0.19254,1.8371,-0.14617,-0.6196 2.1738,-3.6214,-1.5403,0.75919,2.7109,-0.50283,1.946,2.0693,-1.2664,-2.0117,0.7283,0.1376,1.2019,0.75354,1.8022 4.5746,-1.9744,0.43926,-1.6012,-0.47589,-1.2026,0.21177,-0.091696,-0.61208,0.72098,1.4786,1.2963,0.871,0.07725,-0.69459 2.7904,1.2623,-1.0918,-2.2492,-0.84008,-2.3515,-0.1037,-0.49093,1.4996,-1.3464,-0.07914,-0.89428,0.71457,0.21088,-0.64308 -2.6882,-1.1422,-3.3385,-1.2345,-0.17664,0.81234,-1.4783,0.26711,0.10403,-1.3047,-1.148,0.33039,-0.86079,-0.49575,0.018964 -2.3348,-1.7345,-1.4928,-1.2463,0.30719,0.58093,-2.6658,1.1382,-0.066742,0.66505,-0.80371,0.21111,0.57696,-0.065836,1.4931 -0.52499,2.0611,-1.6292,2.1413,-0.77706,-0.38202,-0.6243,0.71249,0.51213,0.97744,-0.6414,0.17754,0.28927,1.1189,-0.2941 2.1512,-1.2356,1.2791,2.115,1.2849,0.48935,-1.4988,-1.9244,-1.2749,-2.447,1.0203,-0.29515,1.4775,-1.1555,-0.14617 -2.594,-1.9043,-1.7054,-1.064,-0.092509,0.46316,-2.8415,1.2346,0.14325,1.0097,-0.41258,0.26885,-0.35909,0.83497,0.67238 -1.6206,-2.2841,-0.38277,-1.1165,-0.88003,0.48486,-2.6802,-0.6234,0.094425,1.9635,-0.31352,0.76991,-0.12051,-0.33506,-0.08173 -0.076004,-0.58017,-1.4996,-0.61368,-1.9852,2.1366,-0.62599,0.01841,-0.26857,1.063,-0.20555,-0.16926,1.7535,0.39891,-0.088218 4.0448,-0.1482,0.76002,-3.4855,2.997,-3.0664,2.2652,3.0278,-0.91237,-0.94785,0.55756,-0.21553,-0.32714,-0.21211,0.72707 -1.9544,-1.3418,1.435,1.9735,-0.95018,-0.55102,0.71456,-1.3609,-0.39578,-0.74574,1.5812,-0.50857,-0.70938,-0.46636,0.72887 -1.8599,2.2117,-0.58348,0.73175,-1.4947,-0.24023,0.42392,0.87249,-0.38309,-0.13418,0.5583,1.6429,-1.4066,-0.29314,-0.74774 2.2207,-1.3082,-2.8004,-0.5445,-1.7774,0.42133,-0.14281,0.32097,2.4131,-0.65471,1.3599,0.38781,-0.091156,-0.22635,0.38643 3.5496,1.0999,-0.89313,-3.3425,-0.44338,-0.66052,0.58022,0.010603,-0.5741,0.85714,0.84725,0.41384,1.7268,0.2599,-0.13972 -2.0502,0.31279,0.93235,0.76055,-1.3796,-0.99717,0.85389,-0.22288,1.1128,0.46436,1.3884,0.74393,0.79209,-0.47198,0.053964 3.2462,0.18036,-1.0534,-2.7122,-0.77889,-1.1907,0.31164,-0.35891,-0.26434,-3.2405,0.74081,-0.77614,1.7732,-0.19231,-0.26712 2.2802,1.7352,-1.8222,-1.5788,-0.55338,-2.2615,0.7546,0.77038,1.3151,0.1173,-0.51364,-0.86393,0.68064,-0.061238,-0.36312 2.198,1.8195,0.95983,-0.055105,0.31488,-2.6229,0.76274,-0.54735,0.51131,-0.85228,-2.6991,-0.92371,-0.19596,0.29739,-0.46387 2.7191,0.92467,1.2975,0.67786,-0.77056,-2.9574,-0.83607,-1.2343,0.040083,-0.43864,-0.057369,-1.0414,0.11565,0.95395,0.27017 0.3,0.56148,-0.10962,1.864,-1.5794,-0.75021,-1.165,0.1217,1.2903,-1.2473,0.10591,0.6828,0.81004,0.063977,-0.55788 3.9857,-1.4431,-0.91411,-2.5464,-1.5156,-0.6994,0.75477,1.203,-0.22229,2.2,1.0669,1.0665,0.66206,0.14767,1.8388 -0.011982,1.3702,-0.26764,1.5495,-2.0687,-0.24305,1.4873,-0.73109,-0.074266,1.5423,-0.92447,-0.48269,0.31838,0.51583,1.0331 -0.3184,-3.1703,-1.1147,2.2594,-0.3354,0.18256,-0.00031114,-1.6434,-1.165,-0.69979,0.8493,-0.094618,1.1191,-1.2339,-0.31831 0.016262,-2.0548,-1.3036,2.2798,-0.43545,-0.35733,0.82357,-2.0233,-1.4889,0.63965,0.62424,0.23377,1.332,-0.81098,-0.59119 -1.7497,-1.9747,-1.9831,1.0286,0.84183,-1.7971,-1.024,-0.94183,-1.2612,-0.48297,1.0207,1.8661,-1.8588,0.40724,-0.3575 -1.5565,-2.5659,-2.8701,0.96144,0.80821,0.74041,-2.0826,0.65666,-0.51748,-0.8305,-1.4512,-0.29546,-2.3136,-1.0153,1.5612 0.8683,1.4423,1.2554,2.3403,0.92359,-0.44591,-0.28142,0.29214,0.68488,0.84386,-0.67781,1.0705,0.65514,-0.018269,-0.38233 0.054451,0.60028,-0.94977,1.6517,0.50274,1.9429,-1.7491,0.88816,-0.01062,-1.7445,1.4545,-0.68399,-0.85306,0.74786,-0.86288 -0.6847,-2.8557,-1.8565,1.2542,1.1227,-0.50127,-0.31516,-1.2015,-2.3809,-0.76414,-0.55936,1.8343,1.7034,-1.9294,-0.37682 2.316,-3.2388,0.91729,0.33989,-1.1287,4.2154,1.3757,0.054072,-2.5588,0.14279,-1.0876,-2.0248,0.22936,0.034358,-0.75666 -0.26486,0.79931,0.83949,2.7441,0.8712,-0.8631,1.9172,-0.46026,-1.9109,1.67,0.1117,-0.17062,0.4568,0.48077,0.75315 -1.6262,-3.2628,-0.69924,0.90198,1.5585,-0.60549,-2.5707,-1.0166,0.41257,0.16906,-0.096361,1.5906,-1.2128,-0.11063,0.69955 -1.6061,-2.0821,-1.9163,1.4174,1.8174,-1.3326,-1.6523,0.077884,-0.63898,-0.24645,-1.2581,0.070636,-1.4045,-1.5739,1.7957 2.8874,1.589,-0.35144,-2.3871,0.16067,-1.0346,-0.93415,-0.79476,-1.8876,-1.4346,2.2777,-1.4707,1.08,-1.2307,0.709 2.3409,1.4979,0.95441,-1.8359,2.6681,-1.0555,-1.1252,1.6655,-0.32849,2.0485,0.86737,-0.30697,1.1682,-0.83829,-1.0392 4.701,-2.1584,-1.9209,0.78666,-0.44727,1.8854,0.15301,0.86673,-0.85682,0.42551,-1.3191,-1.3407,0.43505,0.495,-0.26256 -2.1891,-3.0346,-1.0067,0.091126,1.0266,-0.43573,-2.6257,0.19039,1.0637,0.64477,-0.55094,0.27914,-1.3135,0.019222,0.97295 -1.2698,-0.50296,1.5553,-1.2662,-3.5345,1.2677,-0.13777,-0.5002,-0.53732,0.99452,0.25355,-0.62182,-0.88117,-0.73404,0.62064 -0.77137,-3.0125,-1.7631,2.1538,1.0139,-0.17057,-1.973,-0.21292,-0.52277,-0.008645,0.19446,0.95952,-1.0363,-1.4638,0.76725 0.0071596,-4.5452,0.1718,0.15195,0.059401,-1.0721,-2.1245,-0.7374,-0.81071,1.2015,-0.67888,2.1131,0.29882,-1.1533,0.064149 1.1067,0.3157,0.87666,1.0818,-1.3968,-1.4699,2.3984,0.49068,0.69913,0.20129,-2.1082,0.21848,0.19068,0.6819,-0.060914 2.6658,0.21829,-1.6198,-1.05,-0.15709,-2.6104,1.3719,-0.99897,1.6152,0.54131,0.36403,-0.62264,-0.72587,0.67219,1.9883 2.808,0.20055,-1.3237,1.5252,-0.84082,-0.81586,0.71837,-0.1314,0.34905,-0.55546,-0.88958,0.27176,-0.15916,-0.26002,-1.8145 0.96376,0.90238,0.41537,1.0075,-0.31531,-0.24694,1.4145,1.554,0.78321,0.9691,-2.6765,-0.21261,-1.4233,-0.60881,0.5434 5.197,-2.3516,-2.9251,-0.041528,0.036381,2.6115,1.5382,1.1865,-1.0457,0.97372,0.29881,-0.84635,-0.70801,0.67395,-0.46547 2.4282,0.29784,0.90965,1.4285,-1.0378,-1.9897,-0.67345,-1.3212,1.2195,-1.0684,-0.8859,-0.45057,-0.13625,1.0864,0.63476 -2.0761,2.2522,-1.6402,0.56733,-1.6667,1.4206,0.61107,1.5073,-0.95544,0.64409,0.080517,0.51875,0.057572,0.21233,0.17229 -0.13443,1.9088,0.75097,-0.92479,-1.7808,-0.40736,1.3519,1.5291,-0.88058,0.49925,-2.2398,-0.61334,0.08538,0.55548,1.3628 1.6397,2.2664,-2.5487,-2.6128,0.023831,-1.2255,1.1893,1.7475,-0.1347,-0.56511,0.18488,-0.70934,1.0477,-0.21208,0.64278 3.077,-0.13626,-0.63282,-0.56277,-0.44675,-2.9761,0.030095,-1.0818,1.5448,-0.057322,0.37736,-0.53663,1.0313,0.68262,0.48671 2.7494,-0.95818,3.0283,0.39077,0.047597,-0.067969,-1.3302,-0.5364,-2.7611,0.4211,1.3122,-0.8491,-2.0895,0.91558,0.71495 2.5919,0.85641,-0.070745,0.47351,-0.58507,-1.6619,-0.43893,0.24394,1.3904,-0.013045,-1.4768,-1.0478,-0.24106,1.436,-0.24446 -1.8674,1.2602,-1.0709,1.3697,-1.9957,-0.38379,0.71583,0.48493,0.040249,0.012722,0.78007,0.93148,0.58141,0.45367,0.16714 2.6056,-0.8299,1.7252,1.6605,-1.3079,0.49501,1.2639,-1.1073,-0.12383,0.070295,0.020019,0.62906,-0.96074,-0.25935,-0.13133 0.46815,1.8892,-0.17538,1.0718,-1.1262,-1.529,0.82738,0.73219,0.9717,0.63617,-2.7155,-0.057178,0.12483,0.47838,-0.12318 0.010334,0.81988,0.14682,1.0525,0.069635,-1.421,2.6254,1.0716,0.4273,0.57452,-2.5993,0.0667,-0.5435,-0.36264,-0.65937 -1.5159,2.1317,0.31475,0.20025,-0.81114,0.67786,-1.1772,1.5615,-0.69234,-1.433,1.582,0.86954,-0.99435,-0.033948,-1.1397 -2.4714,1.4706,-1.1243,-1.4439,-1.6092,-0.64624,2.6393,-0.052421,-0.81407,0.39761,-1.121,-1.0733,-0.0036041,0.37506,0.16078 -0.98975,0.42116,-0.83073,0.82567,-2.2582,1.0099,0.36153,-0.56977,-0.28528,-0.046797,1.0579,0.61694,-1.0039,-0.10017,0.53425 -1.4224,0.74097,-0.25392,-1.352,-1.448,-1.5752,2.674,-0.0097767,0.74027,0.48794,-1.2667,0.043983,-0.83729,-0.72188,0.46118 1.3462,2.6471,0.85227,-0.68938,-0.78219,-0.47448,-1.1806,-0.7269,-0.7096,-1.0248,-0.07335,0.15956,2.0134,0.073352,-0.73517 4.1022,-1.5395,-1.498,0.55712,-0.60904,1.0593,-0.86291,-0.79205,0.087193,-0.34568,0.066416,-2.4024,-0.76637,-0.29822,1.7392 -0.16497,-0.70544,0.29117,-1.6599,-2.5891,-1.7004,2.48,-0.10343,0.4182,-0.058302,-1.0887,-0.2052,0.24414,-0.063298,-0.31021 3.9431,0.087318,0.28607,-2.5782,-0.79786,-3.3183,0.55827,0.57417,-0.1137,-2.1371,0.17692,-0.25694,0.80054,0.64061,-0.60079 4.4906,-2.6319,-1.4641,-3.5013,-1.413,-1.0104,0.50187,2.417,0.5025,-1.3443,1.461,1.099,1.0117,0.53443,-0.5212 0.80201,1.0926,0.26679,2.399,1.2966,-1.8161,-0.51852,0.4552,-0.60511,1.0274,0.93661,0.32993,0.43253,0.8038,-1.3927 -2.0646,-1.9987,-2.1796,-0.060662,-0.37549,-3.531,-1.5277,-0.48135,-1.0965,-0.95003,-0.24307,1.0804,-1.1086,0.37352,0.52003 3.4984,-1.1483,-1.9379,1.3233,0.82961,2.3717,0.37116,0.19183,-1.0536,1.9393,0.37111,0.86951,1.8092,0.81385,-1.4101 2.0973,2.0828,1.579,-0.93514,-0.88302,-1.8389,-1.4169,-0.91774,-1.2347,-1.55,1.234,-0.056035,1.4492,1.2073,0.075813 -1.2089,1.5806,-2.54,1.502,-0.049258,-0.64129,0.94717,0.91076,-1.5384,-1.0259,-2.0049,-0.53284,-0.17553,0.69327,-0.046811 2.7945,2.7531,-0.69554,-1.5993,-0.5253,-2.0466,-0.36835,0.12165,-0.072039,-0.99421,-1.4232,-1.4751,1.3357,-0.036024,-0.76273 3.1979,0.53942,1.0474,-1.2255,-1.4002,-2.6188,-0.81093,-0.13359,-0.89185,-1.4556,0.06474,-0.048295,1.9467,0.75056,-0.61733 2.2466,0.66632,-2.6168,-2.8516,-1.8969,-0.69788,0.72236,-0.48753,0.73407,-1.337,1.2927,-0.37202,0.63948,0.072894,1.6264 4.3665,-0.24554,0.40449,-2.4392,-2.12,-0.60105,-1.4072,0.45635,-0.19242,-2.1201,-0.033232,-0.32558,-0.45728,0.66011,-0.21668 3.7821,-2.0639,1.4308,1.9666,0.51049,0.46101,-2.6414,-0.29365,-1.1091,-0.11723,1.4352,-0.29553,0.5434,-0.081839,-0.56144 2.0133,0.69607,-1.736,0.50193,-0.13479,-1.0798,0.18865,-0.43852,0.86571,2.0328,0.48995,-1.1901,0.62241,0.60335,1.3905 3.0556,0.36787,1.197,-1.7552,-2.729,-0.75792,0.22083,1.0008,-0.78163,-3.123,-0.45881,0.20711,-0.10327,1.0812,0.14608 1.3703,2.4541,0.92677,-0.19601,-1.5376,-1.7936,1.4748,0.69193,-1.3647,0.20876,-2.0062,-0.20164,-0.27738,0.78291,0.67117 -3.3838,-0.71209,-2.3406,-0.11309,-0.15801,-1.7944,0.80769,-0.4871,0.1166,0.11145,0.005086,0.06064,-0.88924,0.69029,-1.5597 3.8394,-0.062186,-0.32562,-1.169,-2.4664,-0.75752,-1.0068,0.77564,0.69187,-1.3685,-0.71877,0.079902,-0.62379,1.03,-1.1137 2.825,-0.84793,2.2883,1.483,-1.0758,-0.80049,-1.2302,-0.77194,-0.55177,-0.94097,0.89148,0.53773,0.37018,0.32386,0.41902 5.3862,-1.3898,0.60718,-0.74022,-0.37801,-1.4625,-0.45941,-0.19602,-0.66092,-1.4795,-0.67179,-0.16811,-0.2451,-1.3453,-1.5242 -2.0865,2.3801,-0.71025,1.3712,-0.092832,-0.16768,-0.33636,2.4585,0.22683,0.037259,-0.73879,-0.056442,-0.27962,0.22937,0.82497 -2.4257,2.5766,0.354,0.035304,-1.7854,-0.45586,1.4947,-0.089284,-1.888,0.39993,-0.20476,0.46305,0.53357,0.61648,1.0054 4.0314,-0.77601,-0.98261,-2.5725,-1.6614,-1.5186,0.67613,-0.22579,0.63677,0.73401,1.7351,-0.065458,-0.1739,-0.3488,1.8272 3.2822,-0.58586,-2.652,0.060257,-0.42216,-0.16676,1.6128,-0.56578,0.92213,-0.13305,0.19454,-0.14992,1.062,0.3727,0.12702 1.4023,-0.20391,2.8565,-0.5063,-3.2075,-0.62091,0.68211,-0.19747,0.011422,-1.3,-0.8801,0.062692,-1.3312,0.4478,0.9301 -2.3933,-1.6301,-0.032894,0.0093566,1.014,-3.0059,0.74138,-0.24666,-0.44848,0.64107,0.90295,-0.23826,0.62752,0.10738,-1.1009 -0.4034,2.959,-0.74405,-0.97072,1.6662,-0.32511,-2.0311,2.1257,-0.19803,-0.043307,-0.027933,-1.5414,1.21,-0.30076,-0.41165 2.8313,-1.5692,0.58507,2.6445,-0.51,1.212,-2.2969,-0.094309,-0.75877,0.018526,-0.14416,-0.11718,0.56745,-0.275,0.20405 -0.24876,-1.5205,1.7828,2.2767,-0.33717,1.4914,-0.16145,-0.067416,0.66464,0.64695,1.0583,0.099568,-0.16074,-0.87008,-0.44381 0.70482,0.63852,1.9088,-0.64521,-3.5366,-0.0067275,0.51389,-0.27911,-0.15559,-1.6385,-0.50009,0.43488,-0.39006,-0.51307,0.57511 1.0653,1.1212,-1.5328,0.69074,-0.26011,-1.906,-0.5401,-0.22624,0.92699,-0.049279,1.2164,-0.66495,1.8907,0.99966,-0.021808 -2.1145,-0.24794,0.87282,0.051549,-1.7455,-2.1159,1.6024,0.49729,-0.49356,0.20087,1.0426,-0.27557,1.4589,0.98154,-0.11186 -1.726,-1.3397,0.91552,0.86138,-0.26994,-2.6993,1.4409,0.16643,-1.4146,0.52573,1.5297,0.67675,0.499,0.19264,-1.1311 1.0301,-0.618,2.7451,0.30569,-1.5043,-2.6827,2.3655,-0.10516,-0.94429,0.24726,-0.43954,0.4768,1.3689,0.41142,-0.8152 2.1655,-1.285,-0.79115,1.8734,1.1781,0.74371,-1.0031,1.6836,0.44737,2.0411,0.93612,0.39272,2.3405,0.29577,-0.90054 -0.033678,0.74834,-2.6918,1.6547,-0.015136,1.7361,-0.99355,0.66739,0.075982,-1.2255,-0.47456,-1.2679,-0.5242,0.088938,-0.16276 0.96474,-2.972,3.2392,1.523,-1.2016,0.58786,0.25881,0.47172,-0.95322,0.92123,1.3761,0.33801,0.28519,-0.76637,-0.88399 -1.1456,-3.4537,2.0497,0.51854,-1.2159,-0.86264,-0.30833,0.34631,0.43903,0.6449,1.36,-0.14018,0.49083,-0.63002,-1.5001 -1.7556,-3.0162,0.59723,0.046714,-1.1701,-2.7898,0.47836,0.50964,-0.86591,-0.17524,1.3678,0.31961,0.76078,0.027663,-1.7205 1.6117,2.2347,0.38805,-0.22756,-0.29628,-1.4245,-1.5634,-0.69667,0.23376,0.81274,0.37402,-0.018067,1.7998,0.34782,-0.84842 4.7008,-3.978,0.584,-0.27335,2.0224,1.5864,-0.43457,-0.9831,-2.9075,-0.56305,1.8408,0.34521,1.1025,-0.13341,0.094129 -0.55554,-1.6047,0.90343,-1.0092,-2.3945,-2.2181,1.6932,-0.78331,-0.99975,0.013685,-0.50996,0.45852,1.8375,-0.1825,-0.86606 -0.88247,-3.3931,0.97163,0.26404,-0.89217,-3.0438,0.67837,-0.93094,-0.91477,0.43538,0.78035,0.5435,1.5432,0.029938,-1.2699 2.8517,-0.37415,-1.2841,0.25129,-0.22986,-0.72874,0.77044,-1.561,1.5205,0.94055,0.82964,0.2707,0.98249,0.29964,0.58085 1.1955,1.3773,-1.3815,-1.0564,-1.2448,-1.254,-1.3416,-0.62341,0.58645,0.37609,1.4389,-0.2797,0.48663,1.106,0.62871 -0.044762,1.6366,0.69556,-1.1613,-2.1638,0.19462,0.30058,0.13816,-1.0352,-2.702,1.0964,-1.0091,-0.12793,-0.16617,0.28902 -3.1815,1.8275,-0.33949,0.37013,-0.80747,0.13231,1.3671,0.85132,-0.1836,-0.27464,0.97252,0.85691,-0.17205,0.26389,-0.60416 3.9075,-2.6532,-2.7389,0.21392,-0.29165,-0.22852,2.9352,0.21144,0.80097,-1.327,0.65836,1.3882,-0.15386,0.18285,0.070214 -0.99519,-0.82145,-1.9997,-1.2814,-0.24964,-2.3293,-0.31278,0.045908,-2.1662,0.94652,-1.3205,1.332,2.3636,0.82925,0.62723 2.2068,-0.1961,-2.2212,1.0773,-0.99901,0.26607,-0.42361,-1.5483,0.55293,-0.13922,1.1693,-1.3051,-0.18011,0.45906,1.4411 1.8517,0.96452,0.335,0.62803,2.9753,-1.8093,-1.3369,0.042441,1.002,0.90614,0.96138,-0.20128,1.0618,-0.69117,-1.0634 -2.6594,-0.21729,-0.063885,0.27141,-1.072,-1.6331,1.5795,0.33036,0.060183,0.47121,1.4386,-0.2834,1.1063,1.1569,-0.69958 -0.34259,-1.2307,-0.23454,0.62677,0.072067,-2.4535,2.3347,-0.86317,-1.088,2.6735,-1.198,-0.59064,1.9803,0.99592,-0.62857 1.9627,1.4481,0.9049,-1.0573,-2.7467,-0.19359,-1.1399,-0.1074,-0.90695,-2.5625,-1.122,-0.33339,0.0073747,-1.2852,0.39457 -0.020237,0.1046,-0.21826,2.2422,-0.5524,0.876,-0.25195,-0.72587,-0.96468,-0.89345,2.2346,-0.10386,-0.33016,0.12188,0.38176 -0.23586,0.13504,1.0667,2.0455,-1.1052,-0.66022,2.1323,-2.5866,-1.6016,0.12551,-0.5693,0.035039,-0.071214,-0.29411,1.2497 0.61913,2.8934,-2.2434,-0.35751,-1.351,0.13945,-0.95371,-0.82883,-0.75895,-1.6562,0.54518,-0.75975,1.2371,0.42801,-0.061274 2.1755,-0.58706,-0.63841,2.0522,-0.39906,2.5409,-1.9134,-0.61284,-1.2333,0.6423,0.35026,-1.2586,0.76429,0.98811,1.1001 1.0091,0.22134,-1.1032,0.75294,-1.3816,0.67371,1.9741,-0.72383,-1.6204,-0.67016,-1.3419,-0.48388,1.9571,0.78514,0.45103 0.38546,-0.032678,-1.1386,2.1859,0.029988,0.89258,0.56421,-0.21484,-0.79901,-1.9621,1.7238,0.27039,1.4542,0.62865,0.4011 2.3598,1.154,-1.6803,-2.6587,-0.82608,-1.789,-0.03161,-0.13883,0.50669,-2.9268,1.1427,-0.5722,1.2624,0.063728,-0.032909 2.4935,0.41053,-2.0156,-0.72767,-0.49318,-1.504,1.0059,-0.77963,1.0112,-0.17429,1.3295,-1.18,-0.24407,1.2819,2.0402 3.513,-1.2194,1.1431,2.3957,-0.65931,1.317,-0.47043,-0.81889,-1.5946,-0.54991,0.097647,-0.021345,0.38661,-0.11096,0.077898 2.637,0.86731,-2.6277,0.36803,1.1344,0.16334,0.60366,0.20222,0.70113,1.2799,-0.71653,-1.9865,-0.74798,-0.74792,0.72207 2.4809,-1.433,-1.2125,1.8157,-1.0209,2.7371,0.62043,0.71313,-0.37727,0.40686,-1.3701,-0.79794,1.3197,0.30206,-0.023455 0.28841,-0.89928,-1.5443,1.4696,-0.52621,0.13831,2.3149,-1.6997,-1.558,1.2837,-1.2529,-1.2904,1.063,-0.030392,0.25723 0.88691,-0.19755,-0.59029,3.2906,-0.71379,0.6019,-0.84149,-1.259,-0.29471,-1.0438,0.81201,0.58249,0.17567,0.021192,0.61051 -0.41313,1.1015,0.27713,1.0922,-0.084598,-1.6478,1.3211,2.7392,0.30513,0.23283,-1.4465,0.25322,1.2899,0.4997,0.35267 -0.31486,0.16155,0.38491,3.1402,-1.1625,-0.49503,-0.88515,-0.20167,0.71088,-1.0838,0.94368,0.79542,-0.66932,-0.042172,0.54302 3.7617,-0.47855,1.0189,1.0084,-1.6386,0.57551,-1.8145,-0.15935,0.0067293,0.42488,-0.39973,-0.56557,-1.5437,0.67251,0.82457 -0.44462,2.1582,-1.2843,0.94901,0.24786,-0.11954,-1.9044,1.6715,-0.053846,1.0653,0.96209,0.050636,-0.29562,1.2251,-1.893 0.44849,2.419,-0.16013,1.3025,-1.6529,-0.28848,0.31207,0.23,-0.274,0.95268,-1.2631,-0.63082,0.030119,1.0922,1.2469 0.59158,-2.2945,0.57361,1.2826,-1.8802,0.43485,-0.055495,1.6346,1.1541,0.12695,0.11312,-0.1384,0.6563,-0.80566,-0.44884 -0.43244,2.3526,1.6023,-0.040458,-2.0117,-1.291,0.62407,-0.0076584,-1.2618,0.72439,-0.58032,0.26127,0.65887,0.68061,1.2846 -0.59452,-4.3743,1.0781,0.19553,-0.37466,-0.074697,-1.3038,2.0745,-1.2191,1.8537,1.1459,-0.059952,0.95871,0.0051772,-1.2648 -1.356,0.19534,0.54089,1.1816,-1.152,-1.0856,2.0242,-1.5626,-0.33469,1.9014,-0.16082,-0.18009,0.37742,0.6072,0.67031 0.072963,-0.3476,1.5372,1.7934,1.6982,0.1016,0.99284,-1.4316,-2.3813,-2.0441,1.0178,1.1317,2.0082,-0.17087,-0.23453 6.1775,-3.5494,0.18727,-0.048209,0.30042,1.5019,-0.28236,0.13785,-1.9819,-1.5448,-1.0451,-0.89662,-0.22883,-0.587,-0.6212 0.12832,-4.018,-1.1677,1.9604,1.2139,-0.067717,-1.8303,1.5738,-0.55405,1.0953,-0.42241,-0.279,0.13408,-0.096932,1.1622 -1.5262,-1.9915,-2.0913,-0.72852,-0.34078,1.2794,-1.8507,1.6707,-0.77432,-0.093995,-0.84715,-0.25088,1.1436,-0.57311,1.2366 -0.43726,1.4803,1.7041,0.51499,0.022849,-2.2721,0.2678,2.0902,-0.82407,0.80554,-1.169,0.39884,1.005,0.37329,0.76406 -1.6026,-1.8913,-1.2221,-1.1441,-0.10902,0.81689,-1.7668,1.4422,-1.0567,0.84505,-0.44877,-0.17182,1.7109,-0.13902,0.65984 -0.9724,-3.4813,-1.319,-0.89626,0.059041,-0.59842,-2.7545,2.3487,-0.98732,0.052082,-0.23004,1.324,0.21818,-0.6915,0.52943 -1.1716,-2.558,-1.1885,-0.51958,-0.32819,0.25225,-1.7001,2.0643,-0.65796,0.67522,0.050165,-0.36636,0.97339,0.40467,0.5236 -2.2017,-1.3124,-0.73632,-1.3151,-0.78127,1.6524,-1.3176,1.8608,-0.091926,-0.16107,0.55218,-1.7162,1.2943,-0.28702,0.033714 0.87613,-0.18144,2.3615,-0.94974,-2.2749,2.0042,-1.3026,2.5065,-2.099,0.15831,0.6363,0.36805,1.5897,-0.080818,-0.060519 -0.11322,2.6207,1.4397,0.79776,-0.86398,-2.0543,-0.78294,0.76016,-0.2922,-0.4362,-0.058618,-0.079683,0.93388,1.315,0.29668 -1.6093,-2.8404,-1.1942,-1.1065,0.75481,-1.0254,-3.2122,1.8479,-0.51847,0.3551,-0.97839,0.87466,-0.76463,-0.70664,2.1269 2.0897,0.047211,-0.76803,0.58936,-0.049629,-0.3867,-1.572,-1.1897,1.3913,1.2255,2.8172,0.016624,0.60159,0.39717,0.15185 -1.9014,-2.0534,-2.3738,-0.70637,0.53893,-1.4362,-2.0401,1.4591,-1.0389,-0.86519,-0.65572,0.80552,-1.0582,-1.4628,1.2515 -0.1969,-3.626,-0.48728,-0.32093,0.1656,0.16716,-2.4868,1.3673,-0.3042,1.4485,-0.38158,1.5337,0.90921,-0.26834,0.64496 0.085547,1.5481,-1.2546,0.5053,-2.9327,0.88947,-1.2779,-0.16066,0.13311,-1.498,0.17237,0.28467,-0.13979,-0.16139,0.53024 -1.0887,-3.5841,-0.21453,0.40228,-0.37315,-1.9489,-1.4548,0.50345,-0.89965,0.79942,0.67253,0.64354,0.6036,-1.1686,-0.84446 3.803,0.4817,1.8996,-0.90527,4.218,-1.6674,1.3463,1.1123,-3.2513,1.3527,0.96569,0.76896,0.84408,0.24461,-0.3545 -1.4299,-0.77876,-0.74305,1.2186,-2.4598,-0.72661,0.6121,-1.2949,1.1917,0.094279,0.73586,-0.69487,0.70761,-0.16706,0.0054289 -0.59341,-3.7019,-1.5958,1.0049,-0.68772,-1.3302,-2.0757,0.62613,-0.44274,0.59879,0.025455,0.54201,-0.52866,-0.38088,-0.10934 -2.1192,-3.8481,-1.4464,-1.0192,0.0037668,-0.15518,-2.889,1.1526,-0.68908,-0.14399,-0.71779,0.19107,-1.1226,-0.23367,0.76217 0.59949,1.7088,0.69119,1.264,1.1974,-2.6386,-1.8389,0.10427,0.62168,-0.50205,1.4291,0.082975,0.083471,0.84826,-0.92517 3.4256,-2.6757,-2.4887,0.1858,-0.83231,0.076924,2.1377,0.2781,1.0402,-1.342,0.57748,1.4802,0.042498,0.26993,0.13903 4.0242,0.87773,-0.5732,-0.029913,2.3194,-1.0065,0.83388,-0.093454,-0.95718,2.1167,-0.084706,-1.5192,-0.037019,-1.0587,0.21577 2.3512,-4.8366,1.9694,0.91292,-0.19176,2.3361,1.0061,0.78161,-2.0456,1.1084,-1.2355,-0.092779,0.096817,-0.083986,-0.87424 -1.2731,1.6114,0.32492,2.3429,-0.076092,-1.8671,0.3039,1.2975,-0.23241,1.1304,-0.23532,0.45916,0.072737,0.91493,-0.0041222 0.37751,1.642,1.3451,2.7774,0.43326,-1.1137,0.9807,0.084689,-1.7122,1.984,-0.87838,0.35154,0.71048,0.92879,0.12151 4.0241,-3.8612,-2.065,-0.61259,-1.4143,0.17595,2.4788,1.9601,0.36196,-0.9635,-0.02138,2.2382,-0.61429,1.1073,-0.44734 2.851,-0.073004,1.1522,-2.1173,-2.7646,1.4972,1.2041,2.8331,-1.37,-1.2946,-0.38401,-0.31345,-0.17459,0.10083,-0.093138 -0.92624,1.4143,2.2902,0.69404,-0.4885,-1.2135,1.5927,0.75086,-0.37956,1.682,-0.38964,1.1417,1.2528,0.16589,0.27762 0.84803,-0.42382,1.5154,1.5082,0.62529,-0.79704,3.443,-0.4657,-1.7669,1.0345,-1.848,0.45763,1.2912,0.28606,0.017768 0.26397,1.5046,1.3431,3.0345,0.36059,-1.1375,0.43377,-0.037029,-0.8171,1.1552,0.064859,0.56215,0.18261,0.90104,0.39356 -2.7586,-0.57492,-2.7203,0.68551,-0.90682,-1.7033,1.2511,-0.3625,0.16653,0.21597,-0.28284,-0.79595,-0.98197,0.89981,-1.1122 -2.2215,1.0303,-0.68141,-0.024248,-0.31974,0.17615,-0.12651,3.0566,-0.099115,0.56454,-0.40893,-0.23838,0.51685,0.73494,1.1973 0.95524,1.1521,0.10474,2.4128,-1.1747,-1.2105,-0.89263,-1.4188,0.40468,0.10665,0.21219,0.26972,0.043617,1.0295,0.25377 1.4489,-0.83241,0.01453,-0.43028,-1.1312,1.1532,-3.2984,2.5107,0.18901,-0.62317,1.0704,-0.077163,1.4308,0.29424,-0.89105 3.0426,1.6306,1.0533,1.3877,-0.073849,-1.9241,-0.27102,-0.88438,-0.23742,0.79434,-1.0397,-0.27714,0.9986,0.88756,-0.33007 2.5255,0.24721,-0.93578,-1.677,-1.111,-1.324,-0.81858,-0.36651,-0.58064,-2.7967,1.1504,-0.93179,2.069,-0.22517,-0.34107 0.53139,1.9624,0.77508,0.91764,-0.61585,-0.81656,-0.35126,1.2805,-0.339,1.422,-1.1578,0.26579,2.0466,0.38508,-0.081799 0.85398,1.987,0.94216,1.0489,-0.4829,-1.2415,-0.50293,0.78413,-0.39957,1.2338,-1.3189,0.17325,1.9263,0.53894,-0.65442 -1.6611,-3.4098,2.0082,-0.45742,-0.38053,-1.7345,-0.075074,-0.88085,-1.2053,0.92674,1.7882,0.20974,0.034777,0.088234,-1.4772 2.6058,2.2018,0.72065,-1.1607,-0.44489,-2.1147,0.099103,0.62824,0.39517,-0.04291,-1.5905,-1.0404,0.16429,1.2822,0.063604 0.73591,-2.5193,3.4427,-0.93167,-2.762,-0.39819,0.70954,0.094562,-1.937,0.61593,0.8014,0.65659,-0.19552,-0.015886,-0.74996 -1.1215,2.7274,-0.13023,0.65809,-1.5208,0.18698,-1.1285,0.24753,-0.73784,-0.28822,0.79321,1.2215,0.74533,-0.701,-0.092343 -1.3777,-3.7878,1.2365,-1.0665,-1.0607,-0.050785,-1.0844,0.1853,-1.776,0.45869,1.2486,0.60168,0.88124,-0.42648,-1.6273 -1.3073,-2.0948,0.26633,-1.0938,-0.556,-2.2234,0.39008,-1.6746,-2.1088,1.471,0.37321,1.0949,1.4488,0.71335,-1.4444 1.4337,0.49516,0.63548,2.7153,1.1019,-2.5325,0.38542,-0.10928,-1.1259,0.23049,0.059893,-0.30994,1.6528,0.8432,-0.37365 0.42818,-4.1607,1.6352,-0.79684,-0.96509,-1.1641,-0.049929,-1.8497,-1.985,1.3001,0.18087,0.63784,0.00072423,-0.08446,-1.1932 -1.3105,-3.5013,1.451,-1.0613,-1.2355,-1.5463,-0.12972,-0.97676,-1.8146,0.66489,1.2282,0.6042,0.8501,0.10263,-1.4323 -0.36822,-3.3456,1.4445,2.1511,0.15653,-0.55288,0.46395,-1.3151,-1.593,-0.033992,2.2505,-0.21153,0.13914,-0.7977,-1.0791 -0.64571,-2.9463,1.5532,-1.2505,-1.8554,-1.3205,0.31995,-1.5572,-1.752,0.7278,0.74322,0.3749,0.73471,0.25371,-1.3569 -0.31364,-3.4769,1.6775,-0.049602,-1.354,-1.0784,0.36469,-1.1659,-1.1512,1.0334,0.87043,-0.023638,0.4841,-0.57983,-1.3043 1.6509,-0.44531,-1.7845,0.86207,0.39884,0.13799,-0.60262,-1.5551,-0.4353,1.2487,3.1191,0.73016,-0.46927,-0.26916,1.4631 -0.0047976,1.0767,-0.58168,2.8155,-1.3774,-0.22993,0.92747,-0.54616,-0.079801,-0.4756,0.38331,0.026959,-0.067211,0.86094,1.2082 0.23447,-3.0907,1.398,-1.5412,-2.1084,-1.6188,1.1707,-1.535,-1.5125,0.94412,-0.2971,0.25223,0.39162,0.29907,-1.1037 -1.6588,-3.037,-0.44732,-0.75067,0.72484,-1.5863,-1.2813,-0.61346,-1.6158,0.2719,0.90635,1.6865,0.17868,0.31866,-1.4825 4.3917,-0.2825,0.70664,-3.138,1.9863,-3.0537,1.4092,2.556,-1.2798,-1.3931,-0.029951,0.26953,-0.50183,1.046,-0.081394 -3.423,1.8122,-1.1109,-1.1419,-0.40852,0.15398,1.6539,0.25323,-1.0989,1.7516,0.227,-0.31447,0.66086,0.17472,-0.34576 -1.4492,0.40499,0.22088,-0.77498,-0.70824,-1.4842,1.74,-0.31749,-2.4432,2.361,0.63611,0.26458,0.32645,2.3022,0.47426 0.93305,1.1458,-3.523,1.1686,-0.014039,1.0208,0.47373,-0.61728,0.41326,0.52624,-0.55563,-1.2418,0.38131,-0.23585,1.3235 4.1898,-2.1643,-1.5011,-0.28579,-0.94358,2.0557,-0.41904,-0.88249,-0.75936,-1.5787,-0.089267,-2.0858,0.36191,-1.072,0.4855 -2.2332,-1.216,1.2481,-0.1403,-0.95796,-1.4286,0.57483,0.25866,-0.75678,0.8532,2.7487,0.89994,-0.6258,0.21003,-0.8431 2.1471,2.3759,-1.0237,-1.6871,-1.3974,-0.67032,-0.87975,-0.91887,0.22642,-1.2641,-0.50902,-1.1508,1.3069,0.0014602,-0.15491 -0.061884,-2.3992,3.503,-1.3307,-1.1439,0.38513,-1.3297,-0.74518,-1.6466,1.5761,0.25245,-0.83466,-2.0542,0.4749,-0.30087 -0.83788,-2.4715,1.5277,0.58747,1.5876,-1.8962,1.1201,-0.63948,-1.5894,1.3146,2.1353,0.61828,0.41872,-0.20381,-1.7412 -3.8553,-0.1417,-0.62008,-1.2752,1.0115,-1.1239,0.49938,-0.10787,-0.89397,1.0128,1.1686,0.13358,-0.24647,0.6927,-1.1171 3.7667,-1.9087,-1.314,-0.22556,-1.1642,-0.27985,1.2212,-1.1867,1.1665,0.4186,0.64945,0.18945,-0.21805,0.4399,1.6598 1.6775,-2.3823,3.9859,0.46267,-0.66682,-0.82302,0.41989,-0.14143,-2.2219,0.24616,0.94459,0.20721,-1.569,-0.82961,0.55575 3.2597,1.6803,-0.755,-1.9327,-1.9278,-1.4469,-0.60846,-0.74375,0.6908,-1.545,-0.169,-1.2752,-0.14277,-0.026854,-0.44897 -0.015472,1.54,-1.1594,3.3718,2.8292,-0.33183,-0.52485,0.95546,-0.40631,-0.61261,-0.75277,-1.0798,-0.60734,0.34348,-0.77476 2.1482,0.36774,1.6003,-0.12414,-1.9191,-2.7592,-0.2811,0.26383,0.061825,-1.1509,-1.3279,0.58698,-0.080778,0.37253,-0.26717 -1.2724,2.5037,-1.6897,1.4896,0.40425,-0.63873,-0.31251,1.9839,0.62997,-0.074477,-1.4781,-0.63475,-0.34889,0.46608,-0.06072 0.62812,2.1169,0.28754,-0.55782,-1.3343,-1.2106,1.8603,1.2591,-0.63301,-0.66226,-2.8428,0.24721,0.74026,0.78473,-0.54174 -1.6942,1.876,0.83743,-1.0414,-1.9057,-0.037389,1.4183,-0.35786,-2.1558,-0.68526,0.25562,-0.19261,-0.098563,0.2399,1.2875 3.2437,-3.1695,-0.20418,1.0922,2.1352,0.40113,-0.16532,0.54391,-0.70079,0.54986,3.3741,0.99636,1.232,-0.47545,0.23311 2.1771,0.3701,2.2958,-1.2368,-2.3141,-1.2983,-1.4814,0.80867,-1.4621,-0.96241,-0.28224,0.42391,-0.88539,0.73895,0.52212 4.573,-1.0866,-0.68297,-0.46198,-1.1535,-1.5774,0.45707,-0.83577,1.2705,-1.8076,-0.28775,-0.73159,-1.7813,-0.36622,-1.1514 0.65861,-0.39318,2.0815,2.0269,0.047254,-0.74525,0.91829,-1.0045,-1.1713,1.5891,0.2209,0.80147,0.23717,0.4519,0.19819 -1.4944,2.2304,0.65373,0.90732,0.16686,0.35596,-0.67443,1.9509,-1.504,1.5581,0.3181,0.73842,-1.127,0.70322,0.20647 2.5836,-0.38799,1.0247,1.1993,1.3421,0.59172,-1.4717,-2.3491,-1.5097,-1.5565,2.2611,-0.48488,0.95843,0.5253,0.3894 -2.115,2.0059,0.025815,1.0491,-0.20665,-0.97134,0.52937,1.7208,0.37465,-0.4114,-0.50803,0.32104,0.38537,-0.67417,1.3945 1.8101,-0.70945,-2.4392,-0.415,-2.1621,0.30594,0.096453,0.30887,1.0771,0.47542,1.1512,-0.36263,-0.38871,1.0113,1.9053 1.5507,-2.757,0.8086,1.3646,-0.80087,-1.3459,3.4054,-0.044343,-1.3742,-0.50312,-1.452,1.0081,0.369,0.15517,-1.2718 -0.45894,1.4531,1.167,2.0542,1.6073,-1.2725,0.059534,2.3411,-1.4066,1.785,0.5787,0.42223,-0.64516,0.82899,-0.5026 4.0093,-1.0037,-0.4461,-0.72776,-1.9285,-0.55728,-1.7704,1.3607,1.8656,-1.4455,-0.61567,-0.70747,-1.2051,-0.26282,-1.7211 0.22992,3.5657,0.20928,-0.78299,-1.1491,-1.1879,-0.20268,0.045687,-0.90592,-0.61777,-1.8264,-0.4002,0.18808,0.84942,0.34652 5.0164,-2.4581,-0.016572,0.7233,0.45725,0.13689,1.0045,-1.9615,-1.4689,-0.81776,1.0365,-0.39108,0.67233,-0.13293,0.84599 -0.89767,1.3948,-0.33574,0.73752,-2.2633,-0.69563,1.0979,0.22191,0.31474,1.0839,-0.62567,0.16648,0.19505,1.3121,1.1868 -1.8706,0.94171,-0.077223,-1.4741,-1.9852,-1.0114,2.6576,-0.16166,-1.3505,-1.2481,-0.59931,-1.0255,0.14036,0.46873,0.47519 2.5683,0.15454,2.0099,0.25242,-0.22752,-2.5192,2.5699,-0.71811,-1.1473,-0.99193,-1.8708,0.0096367,-1.407,0.42177,1.0137 1.392,1.7542,-0.95057,2.5484,0.045778,-0.54139,-0.48306,-0.33034,-0.42109,0.84297,-0.75129,-0.76396,0.41528,1.1252,0.07327 2.7175,0.1917,1.9521,-0.20928,-2.1106,-2.8606,0.30533,-0.38117,-1.1323,-0.74623,-1.2942,0.19188,-1.1023,0.8987,0.049126 0.27345,0.85634,0.64569,-0.9457,-1.5602,-1.2213,2.2697,1.8822,-0.56596,1.8854,-1.6434,-0.48745,-0.93559,0.23752,0.57862 -1.2494,1.43,1.263,-1.266,-1.6024,-1.2869,1.999,0.35265,-2.353,0.90491,0.20398,-0.1773,-0.086482,0.87368,1.203 2.5602,-0.52559,1.88,-0.14904,-2.5545,-1.0154,-1.9777,0.9848,-0.58892,-0.84504,-0.67741,0.31897,0.044346,-0.6055,-0.59979 1.131,1.6675,-1.3337,-0.29293,-2.2009,0.64336,-0.86942,-0.22575,0.050399,-2.3762,-0.014256,-1.0133,-0.47845,-0.55686,-0.008206 0.31058,0.027142,1.5286,-1.7177,-2.7985,-1.8519,2.3236,0.86847,-0.71376,-1.5134,-0.93432,0.12227,-0.24642,0.62114,0.13938 1.4735,2.1257,-0.32304,-0.092227,-1.4864,-2.194,0.18554,0.33766,0.57603,-0.97946,-2.3615,-0.018995,0.63859,0.44986,-1.4149 3.2047,-0.78661,-2.1443,-1.7058,-1.6547,-0.76883,-0.25391,0.47938,2.2414,-1.3254,1.0923,0.079881,0.042357,0.44818,-0.75941 -1.6631,0.46897,0.23796,-0.37083,-2.5904,0.65666,0.15643,-0.68771,-0.53046,1.0445,1.9201,0.6364,-0.20029,-0.21713,0.29703 0.14435,1.1063,-0.65642,1.8657,-1.1286,0.024679,-1.5437,-0.0088827,0.98069,-0.93689,1.2643,1.0888,-1.3925,0.24889,-0.41457 0.25191,-4.0267,1.8278,-0.93614,-2.2485,-0.79113,-1.4135,0.20024,-0.62204,0.28606,-1.0931,-0.67756,-0.07458,0.021778,-0.24859 0.25734,2.8251,-2.7822,-0.92405,-1.741,0.39046,-0.78641,0.39231,-1.3136,-0.35592,-0.31099,-1.5087,0.58242,-0.61172,0.17059 -1.2234,-1.1604,2.4851,-0.3148,-0.88122,0.29142,0.29505,1.13,-1.1857,-0.21629,2.4879,0.8331,0.80046,-0.74961,-1.0677 1.1896,-0.72241,3.4845,-0.639,-2.6006,-0.48733,-1.0257,0.97758,-1.2725,-0.92442,0.53002,-0.076818,-0.4016,-0.18428,0.34921 -1.6556,-0.36688,-2.7981,0.76873,0.092604,-0.056658,0.37267,1.4103,-0.0067848,1.7715,0.28519,-0.72305,-0.90382,0.52009,-1.1078 2.4773,0.52221,-2.523,0.25689,-0.073679,0.72135,0.33413,0.37938,0.31252,1.3561,-0.29159,-0.85527,1.1162,-0.63375,-0.1061 -2.4158,3.1141,-0.92111,0.39503,-0.26764,0.85305,-0.26862,2.0826,-1.7255,0.34553,0.15399,0.67892,-0.14334,0.10378,-0.92389 2.4359,-2.8471,2.4083,0.60033,-1.6055,1.2151,-1.2439,1.4558,-0.29032,0.43339,-0.41922,-0.75676,0.37757,-0.16606,0.15774 2.5445,-0.81041,-1.6317,-0.2642,-1.5078,-0.86437,0.57067,0.36587,0.85542,1.031,1.2393,0.45624,-0.54297,0.6268,2.1314 -2.4989,-0.4844,0.48623,0.75659,-1.6037,-2.838,1.5613,-0.5895,-0.12212,0.48452,0.62918,-0.20039,0.60135,0.33427,-0.25341 -2.2959,-0.72011,2.0263,1.1467,1.2701,-1.6509,0.63474,0.31152,-1.0306,-1.2334,1.7986,-0.48146,-2.0251,0.17326,-0.34793 1.1868,-0.34164,2.3535,0.16638,-2.9595,0.69669,0.08234,-0.86894,0.40321,-0.085071,0.59548,-0.44143,-1.2352,0.2164,0.59736 -1.2222,-1.276,0.99902,1.5535,-0.45072,1.6927,-0.057414,1.5645,1.8565,-0.026311,0.065234,-1.3705,-0.15532,-0.34445,1.5511 -1.9353,-1.3855,0.59244,-0.75934,-1.4104,-3.1046,1.2162,0.22373,-1.7594,-0.73949,0.6843,-0.49549,1.2085,-0.27066,-0.71998 -1.4531,1.8199,0.3084,0.16881,-0.21254,0.78193,1.2002,1.4284,-2.6408,1.4755,0.2165,-0.3054,-0.52256,2.0162,0.11 -0.64991,-3.8533,0.2807,0.0135,-0.46954,-1.8844,-1.6878,0.63165,-1.0036,0.43213,-0.065246,-0.4671,-0.058646,-1.3794,-0.8013 2.6666,1.0158,1.4294,0.40131,-1.3332,-2.2556,-0.40223,-0.62296,-0.72172,-0.84201,-1.1344,0.031355,-1.1264,-0.61598,0.70684 -1.1268,-2.7705,-0.092143,-1.6052,0.14456,0.1528,-2.6877,0.55304,-1.2857,0.073556,-0.039552,0.41452,0.097953,-0.9544,0.14762 3.8288,-0.20744,-0.62891,0.63888,-0.87372,-2.3174,0.14819,-1.2124,0.64244,-0.8318,-0.12185,-1.4809,-0.54807,0.94487,0.058928 -1.3422,-2.2873,2.4099,-2.3858,-2.7465,0.42931,-0.73432,-0.83157,-1.808,0.48687,0.3361,-0.90146,-0.37773,-0.83717,-0.29052 -2.4296,0.65185,-1.9328,1.6071,-0.54413,-0.92407,1.5679,1.5307,0.60317,0.56398,-0.097704,0.11246,-0.74777,0.64455,-0.028209 3.4646,-4.4516,-1.3095,-0.057799,-1.2128,0.12245,1.0239,3.2076,0.21623,1.1942,-0.96355,1.7576,-0.22024,0.46976,-0.96734 -0.33837,-1.2561,0.81662,-2.072,-2.669,-0.92372,1.5416,-1.204,-1.6971,-0.4448,0.41424,-0.94993,-0.13483,-1.0247,-0.51354 0.81792,3.3137,0.93066,-0.76277,0.42244,-1.3586,-1.8144,0.86967,-1.7638,0.71351,0.5755,-1.2551,-0.90538,0.52301,0.17735 0.14306,-4.4765,2.0889,-1.7168,2.3486,-0.39384,-1.4003,1.3992,-0.67322,0.71374,-0.83943,-0.67104,-0.69979,-1.133,-0.19741 0.52356,0.63672,0.20368,1.1436,-1.0412,1.4135,-1.9237,1.7714,0.2705,0.60474,2.1784,0.7573,-0.18463,1.8973,0.11382 0.15979,0.97045,1.2602,1.2556,-1.5494,-1.1452,-1.6529,0.33837,0.2774,-0.93441,1.64,1.4147,-0.47045,0.67586,-0.44304 5.9026,-3.0942,-0.52552,0.074326,-0.070294,1.751,-0.5007,0.3729,-1.7707,1.28,-0.05261,-1.2298,0.10823,-0.021583,-0.13256 0.89599,1.502,0.96283,1.5229,1.6962,-2.1346,-0.055417,1.6774,-1.3761,1.0831,0.95793,0.7047,1.3426,1.7227,-1.4993 3.8983,-2.3724,1.518,2.6402,-0.4693,1.3907,-1.7645,0.69945,-1.959,0.42927,-0.86279,-0.71361,0.5141,0.2678,0.50455 3.2383,-1.1263,-0.51061,-2.9723,-1.4673,0.14164,-0.13993,-0.44353,0.62504,0.17336,2.6154,1.879,1.1138,0.054363,0.69471 -1.2807,-3.1527,1.2001,0.30169,-0.45846,-2.8146,1.2237,-0.15546,-0.3128,0.67053,0.26731,0.043089,1.2276,-0.66519,-1.4486 1.4981,0.63237,-1.4555,1.6956,2.9327,-1.4189,-0.44368,1.7338,0.92011,-0.11879,0.44607,-1.3746,0.41343,0.5153,-1.0985 3.466,-0.63626,-0.66718,-2.9179,-1.8416,-0.74329,-1.563,1.0001,0.27968,-0.45959,0.76635,-1.3403,-0.4002,0.16783,0.54336 -1.2211,-0.13122,2.3905,0.62432,-2.4804,0.45682,-0.69685,-0.1723,0.64842,0.64952,1.3683,1.0109,-0.71248,-0.72226,0.49149 -1.1276,-0.74254,1.7396,2.3069,-1.4717,-0.76976,-0.64027,0.2602,0.29274,-0.16227,1.8191,1.1907,-1.4956,-0.34844,-0.029175 2.4353,1.3637,-1.1792,-0.070948,-1.2425,-2.0071,-0.54108,-0.98874,1.5594,-0.089003,-0.33017,-1.4499,-0.083193,0.76467,0.14362 4.3024,-1.6301,1.1945,-0.66743,-2.2642,-1.0629,-1.0158,1.3848,0.28638,-1.2036,-1.1495,-0.15271,-0.89931,-0.27522,-1.4744 0.68519,-2.1417,1.9735,1.7781,-0.41285,1.8647,-0.38321,2.7277,0.91102,1.3234,-0.2121,-0.30536,1.2817,-0.52822,-0.19267 5.8323,-3.4229,-0.66235,0.13645,0.13559,1.52,0.19601,0.97713,-1.7067,1.5987,-0.60678,-0.80459,0.41763,0.18181,-0.46405 -2.3158,1.2411,0.20974,0.061818,-1.4129,1.2032,-0.021703,1.1323,-0.46294,1.9377,1.4915,0.99245,-0.046176,0.48727,0.16675 2.5967,-3.3502,1.8607,2.2193,-0.65512,1.2829,-0.96124,0.0035707,-2.0747,0.13563,-0.1783,0.028515,-0.081789,-0.71691,0.38431 2.4724,-3.5416,3.6474,1.2667,-1.1577,0.80524,-0.5791,0.44908,-2.48,1.18,-0.058453,-0.16622,-0.63437,-0.27271,-0.47833 4.9823,-0.5821,0.08349,-0.71022,-0.60896,-2.6328,0.2352,-0.68701,1.0064,-1.1864,-0.65593,-0.66792,-0.48586,1.0206,-0.65588 5.8004,-3.5639,-1.4808,-0.052798,-0.39884,0.97926,0.65584,0.93626,-0.68169,0.64983,-0.48382,-1.2183,-0.14114,-0.23279,-0.16957 -2.5862,0.67096,0.72006,-0.62682,-2.7933,-0.55676,0.99494,-1.3693,-1.8562,-0.36006,1.2364,0.50227,-0.449,-0.00061609,-0.1027 4.2242,-1.3587,-1.255,-2.6954,-1.6589,0.99974,-1.0673,2.0723,-1.4327,-1.1287,0.17278,-0.93917,1.2997,-0.60749,-0.53725 -1.3598,-2.0251,2.3666,0.18944,-2.6797,-1.3233,0.036821,-0.79685,-0.86805,0.41064,1.0309,-0.55746,-1.0082,-0.95523,0.046575 -1.3102,-0.56662,-0.97295,1.6172,-0.023107,0.83093,0.8883,1.0165,1.0914,-0.82124,0.42086,-1.1602,-2.0403,-0.75083,-0.16135 -0.82864,0.88264,-0.93674,2.5237,-1.0491,-0.38474,0.57711,0.48101,0.56635,-0.29243,0.9091,0.74741,-0.86442,0.65476,-0.51401 -0.82661,0.4394,-0.17463,3.3688,0.060979,-0.20302,-0.028145,-0.40338,-0.37753,-1.8727,0.90045,0.50124,-0.82801,0.13502,-0.1265 3.3957,-0.95637,-2.0399,0.59792,-0.2124,2.0935,1.138,-0.0034088,-0.597,2.7633,0.83952,1.5125,0.96406,0.43693,-0.73104 4.1714,-2.8111,2.7998,1.6342,-0.12985,2.397,-0.72666,1.185,-2.501,0.96311,-0.39099,-0.13834,0.11627,-0.023512,-0.72026 -0.00060823,-0.064983,0.74641,1.4954,2.3368,0.72248,2.7786,-0.68423,-3.0547,1.6425,0.02875,0.37745,2.0006,0.2728,-0.33962 0.11936,2.8695,-1.0765,-0.37763,-1.8876,-0.59532,-1.2341,-0.10602,-0.80545,0.021146,-0.7647,-0.36946,1.7547,0.16472,0.24592 -0.26346,-1.2683,1.2193,0.58885,-2.1054,0.029355,0.61107,-0.7109,1.5244,0.79995,0.33503,0.061389,0.88207,-1.148,-0.10968 -1.9444,-0.21062,-0.70126,-1.8163,-1.4091,-0.5754,0.25757,-1.8801,-0.42786,1.1258,0.08316,0.61827,1.5601,0.1476,-0.3 1.1397,1.99,1.2401,-0.069342,-1.2955,-0.18249,-3.2187,0.15171,-0.41521,0.17299,1.523,0.59743,-0.40342,0.60297,-0.3198 2.9623,0.56418,0.46641,-0.28108,-1.8926,-1.6705,-1.7331,-1.1333,-0.078131,-1.1169,0.25932,-0.50699,1.0751,-0.021209,-0.89577 1.2846,-0.74005,2.1968,1.6702,-1.9337,0.99252,-0.14599,-0.69188,0.23909,0.99663,0.26768,0.95777,-1.1238,-0.63682,0.378 1.2845,1.7282,0.18359,0.027162,-1.932,-1.5811,-0.24191,-0.11166,0.68983,-1.6824,-1.2827,0.19623,1.88,0.52246,-0.60691 -1.7143,-0.022933,-2.2048,-1.0113,0.24497,0.023804,-1.6737,1.3522,0.29037,0.98674,-0.59996,0.59838,1.4438,0.51016,1.5144 -2.2025,-0.13077,-2.7279,-0.29616,-0.54649,-0.083218,1.0752,0.41175,1.0164,0.25016,-0.55931,-0.7454,-0.7024,0.20325,-0.63507 -2.0579,0.57233,-3.3817,-0.50841,-0.823,0.34061,-0.43833,-0.2772,-0.36928,0.11104,-0.14771,0.77836,1.4001,0.51417,0.13583 -0.45187,-1.1103,-0.41422,0.76632,-1.8637,-0.083241,1.1535,-1.6072,0.72416,1.1493,0.10173,-0.054449,1.0949,-0.33682,-0.49678 -1.6837,1.1553,1.2134,-0.59772,-1.3958,-1.8234,2.0062,-0.86108,-0.74944,1.5921,-0.88511,-0.37405,0.19104,0.89655,1.2606 3.7624,-0.80134,-1.8846,-4.3776,0.080367,-2.0935,2.0352,1.9995,0.3019,-1.769,1.6352,1.5859,1.2363,0.70287,0.025395 0.91394,1.6865,-1.4258,1.5822,1.1772,-0.63231,-0.59759,0.1999,-0.09773,1.5387,1.0816,-0.61915,0.10905,1.3494,-0.39454 3.2509,0.62087,-2.116,-1.2658,-1.6416,-1.1391,0.15164,-0.34576,1.6557,-0.98308,0.061161,-0.83214,0.14657,0.59022,-0.90244 -0.78749,-1.0037,-1.1101,-1.11,-0.68956,1.3934,-2.045,-0.682,-0.6347,1.5847,-1.0534,1.3428,0.57284,-0.41045,1.5533 0.71021,-1.5002,3.56,-0.27202,-1.7002,1.0772,-0.61897,-0.1785,-0.69287,1.4382,1.368,-0.48407,-1.3083,0.46176,0.65359 -0.9184,0.71731,0.59643,1.5683,-1.5373,0.0020073,-0.21679,-0.16977,1.2008,-0.29011,1.1932,1.6807,-0.059537,0.25465,0.19426 -2.8791,0.056737,-2.5387,-0.8704,-0.66953,-0.35108,0.91522,0.35902,0.67374,-0.23135,0.080577,-0.053983,0.29898,0.57227,-0.7602 -2.386,-0.53266,-1.2864,-0.073592,-0.11825,-1.1074,0.26733,-0.32678,0.56796,1.9214,0.55461,0.33776,0.83762,0.67267,-0.57077 -1.9221,0.21266,-2.0019,-0.48152,-0.87316,-0.45311,0.051,-0.50804,0.0080956,1.6,0.3009,0.54922,1.0838,1.2144,-0.2635 3.6249,0.30499,-1.9878,-4.0305,-1.7241,-0.77065,1.307,0.70223,-0.92858,0.26396,2.0995,1.1277,-0.53753,-0.48811,1.0514 3.9326,0.091885,-0.35831,-3.3489,-0.68578,-2.6888,0.41383,-0.39276,0.2459,-0.64603,1.3696,-0.52698,0.28989,-0.032224,1.6073 1.3245,1.4585,0.86224,0.7634,-1.3136,-0.33624,-2.6768,-1.4647,0.061495,-0.18787,1.2258,0.66164,-0.80078,0.61549,-0.70959 4.0784,-0.38039,0.79021,-0.17429,-1.0948,-1.8203,0.68211,-0.17682,0.41514,-2.4026,-1.1426,0.55953,0.48394,0.081886,-1.9077 1.6221,2.478,-2.1584,-1.8261,-0.24113,-1.6493,0.16979,0.64556,0.79082,0.96038,-0.035871,-1.4081,-0.0056862,0.35539,0.84152 -0.83147,-2.8276,1.1087,-0.27831,0.55624,0.67518,-0.743,3.8761,0.59526,1.3167,0.23217,-1.5134,0.88812,0.33901,-0.87162 0.27559,-1.6974,1.2686,1.6974,0.89893,0.70888,-0.5493,4.8416,-0.19501,0.64734,0.44764,-0.80736,-0.1364,1.164,-0.57179 4.8186,-2.6313,0.6343,-0.22168,0.41344,-0.48479,-1.5198,0.16416,-1.9884,0.6214,2.1093,-0.29576,-0.21142,0.96871,1.4997 4.2684,0.33404,-0.85091,-3.0977,0.82222,-3.1099,2.3504,2.091,0.19018,-0.91351,0.045353,0.37593,0.41056,1.1771,-0.852 1.0101,1.4134,-1.2186,0.61654,-1.1107,-0.21204,-0.70262,-0.084379,-0.14422,1.0285,-0.31177,-0.082933,1.7455,-0.31544,-0.17269 -0.56877,-3.3265,-0.2509,-0.43521,0.39635,0.089331,-1.5141,2.3307,0.64906,1.3075,-0.28392,0.27906,0.42103,0.046164,-0.43115 -0.37674,-1.4656,3.6018,1.7352,-1.0373,0.45322,-0.6407,0.67055,0.48713,0.88723,0.70749,0.77261,-0.52665,-1.7306,-0.19775 -1.1482,-3.782,1.3806,-0.55561,-1.0369,0.12702,-1.4179,0.78233,-0.087938,1.7499,0.94119,-0.23843,0.84516,-0.67432,-1.3222 -0.28167,-0.76373,-0.30357,-1.9528,-2.6459,0.43354,0.87611,-0.89769,-0.13243,1.277,-0.24833,0.35783,-0.6819,-0.71344,-0.82458 -1.2044,-3.5706,-0.062481,-1.5171,-0.61358,0.13798,-2.6812,0.71659,-1.1595,1.445,-0.43564,0.78345,0.83171,-0.36626,0.19288 1.9153,-3.3734,-1.461,1.0181,0.3854,0.64755,-0.23199,0.95587,-2.0902,-0.22975,2.8704,0.44252,-1.2518,1.3907,1.6524 -3.2719,1.5651,-0.63715,-0.10562,-1.1622,0.35777,1.4543,-0.066427,-0.54263,-0.027323,1.3867,-0.029623,1.2077,0.054097,-0.038418 -1.1066,-2.6194,-0.41157,-2.0414,-1.0902,0.98709,-2.2485,0.81542,-1.7415,1.293,-0.46865,0.76244,1.4103,0.057416,0.20723 -1.9096,-2.9757,0.32493,-1.3198,-1.0239,0.97495,-1.3049,2.6425,-0.60079,0.27889,-0.26394,-1.9995,1.1436,-0.32536,-0.43889 4.4321,-0.77864,-0.059107,-1.5914,-2.5098,0.48084,-1.84,1.9988,0.41137,-0.58715,-1.1606,-1.0373,-0.89613,0.71951,-1.1227 3.3664,0.014808,0.25347,-1.4694,-2.0795,0.74844,-1.9437,0.50351,0.59885,-1.0407,-0.017014,0.88784,0.042219,0.37617,-1.44 5.199,-1.2803,-0.93617,-0.7238,-0.95088,-0.11891,-0.029246,-0.43035,0.36306,-0.55192,0.70579,-1.5865,-1.106,0.89319,1.1865 1.664,2.2842,-0.14192,0.47213,-1.4155,-2.006,-0.052188,-1.1751,0.51642,0.056741,-2.2105,-0.26303,-0.058497,0.78408,-0.39014 3.9663,-0.26788,1.2639,-0.24578,-1.9052,-0.37549,-0.91371,-0.62758,-0.008469,-0.86666,0.24358,-0.04863,-1.3196,1.8872,1.2075 2.3346,-0.061301,1.9386,1.2717,-2.3743,0.33705,-1.407,-0.49543,0.55641,-0.072519,-0.56826,0.6739,-0.56434,-0.28333,-0.031524 -3.2136,-0.53642,1.2679,-0.28534,-1.0899,-0.11672,0.44731,-1.0217,-0.1851,-0.11303,2.2661,0.55833,-0.59205,-0.10938,-0.63244 0.025726,0.05434,2.6584,0.97455,-1.0925,1.0412,-0.83082,0.39286,1.4156,0.094251,1.5512,0.3299,-0.29099,-0.61665,0.38506 -0.10578,0.23064,1.7251,0.77378,-2.776,0.47069,-1.5756,0.16245,0.41447,0.19361,1.0803,1.0556,-0.33179,-0.30084,0.72917 -0.71883,-0.75062,2.4232,1.634,-1.556,0.72,-1.117,0.47363,1.1035,0.52149,1.0626,0.82869,-0.77001,-1.0716,0.55872 3.2886,0.40579,2.5363,0.09147,-2.4401,-0.27846,-1.4494,-0.28624,0.25566,-0.57873,-0.23279,-0.012264,-1.5085,0.8165,0.80935 -2.0741,0.84598,0.72191,0.59743,-1.3195,0.83969,0.013597,1.082,0.5303,-1.5112,2.3543,0.51655,-1.2561,-0.12851,-0.30612 2.4367,-0.26188,1.7555,2.7447,0.86973,-1.9256,-0.20805,-1.9645,-2.676,-1.0113,0.99848,-0.072319,0.056227,0.36729,-0.17564 -0.74878,1.6287,-2.2218,1.0641,-1.1894,1.7869,-1.4783,1.072,1.1431,-0.80024,0.19765,0.53489,-0.14499,0.29593,-1.1521 -0.16928,-1.743,2.6304,1.096,-1.3126,1.8033,-0.51129,0.38704,0.42478,2.2559,1.1701,-0.87414,-0.45907,0.57273,0.51268 -1.3003,-1.7664,2.0051,-1.9998,-2.6864,-0.24486,-0.36438,-2.0774,-0.76051,0.73098,0.20201,-0.79124,-1.0475,-0.39174,-0.17639 -0.75092,-4.8504,-0.66344,0.17143,-0.92432,-1.3447,-1.7496,1.5809,-1.1491,0.62396,-0.15134,-0.079049,-0.4273,-0.28819,-0.77962 -1.421,-0.20874,-2.9475,1.3025,-0.70941,-0.46697,0.6349,-0.19574,0.098242,1.3185,0.051002,-0.2311,0.59718,1.0526,-0.62455 0.47767,-2.2149,-2.882,1.9434,-0.36337,0.2642,-0.28321,1.104,-1.7836,-0.30201,-0.47098,0.18784,-0.17908,-1.3329,0.057206 -0.10282,-2.4044,-2.4239,-0.041686,-1.9815,-0.14478,-1.6912,1.2893,-0.28671,0.1511,-0.65033,0.87476,-0.70499,-0.31685,0.1589 -2.842,1.7088,-1.3745,0.2691,-0.38929,0.35376,1.0846,1.8903,0.61769,1.0824,-0.21603,0.053727,0.16137,-0.0021682,0.65253 -2.3933,-0.43515,-0.74828,0.34231,-0.90896,-1.4126,1.1481,0.83228,1.0776,-0.12968,1.3239,-0.14277,0.29814,0.36554,-0.34921 0.68236,2.7554,1.5749,-0.43371,-1.7915,-2.4185,-0.80018,-0.86868,-1.5904,-0.80077,-0.31334,-0.26804,0.28138,0.8196,0.2271 2.2111,0.17926,-2.5946,0.85204,-1.0065,0.077375,0.4923,-1.2193,0.74686,0.79034,0.90962,-1.002,0.39691,0.58759,1.9168 -0.098607,-0.8069,-2.6167,0.73524,-1.5454,-2.166,-0.24602,0.685,-0.35315,0.08035,-0.21555,1.5741,0.10578,-0.14059,0.019279 -0.9859,0.25265,0.15894,1.6714,0.64077,-2.4005,1.8109,2.2368,-0.42529,-1.1039,-0.30128,-1.043,-0.48243,0.60266,0.11965 -0.43371,-0.35539,0.92315,2.8635,2.161,-1.6774,2.0041,1.5959,-0.40824,-0.74866,0.0039647,-0.082147,0.8317,-0.00164,-0.059337 -1.5577,0.10692,-1.7486,0.8586,0.10069,0.6924,1.6108,0.46106,-0.070899,-0.88948,-0.025952,-1.9283,-0.99376,-0.53953,0.34939 -1.9233,-0.8137,-2.8186,-0.63088,1.7786,-2.1615,0.018839,1.5101,-1.3237,0.6605,-1.9217,-0.3287,0.37234,1.3817,0.45537 -1.6072,-1.5791,-2.7393,0.64665,-0.093126,-2.5885,1.0281,0.28923,-0.92091,-0.063622,-0.55587,-0.32212,0.10999,0.76692,-1.0595 0.63826,0.26935,0.93824,-0.18717,-3.7751,1.0875,-0.0092814,0.51255,0.49061,-0.72537,-0.67501,-0.21561,-1.3874,-1.0564,0.88543 -1.2652,-1.9359,-1.5051,0.79089,1.0969,-0.87758,2.1516,-0.64824,-0.84554,-2.2069,-0.18826,-1.9598,0.26306,0.53416,-0.2016 2.0099,2.2856,-0.62101,0.56914,0.83851,-1.2559,-0.71479,0.66066,-1.7377,1.4906,0.33459,-1.1036,0.79256,1.2832,0.19849 0.058374,2.0968,-1.2594,2.381,1.3862,-1.0056,0.61773,1.6511,-0.27102,-1.065,-2.0036,-0.94084,-0.54794,0.89832,-0.34231 1.1528,-3.2255,1.6015,1.0867,-0.525,3.1758,0.36829,-0.99581,-1.5087,1.7822,-0.083462,-1.4314,0.32816,0.019892,0.10181 -2.0166,-0.62905,-3.1579,-0.89186,-0.35232,-2.2967,-0.51901,-0.058006,-0.83984,-1.2047,-0.97727,0.66306,-0.090024,0.128,0.71118 0.63312,1.9421,-0.35811,1.8858,-1.3701,-0.97478,-1.0147,-0.72011,0.020304,0.34306,0.025756,0.56855,0.53959,0.61501,-0.063134 1.6154,2.2336,-2.6123,-0.8617,-1.4081,-0.0099815,-0.16101,-0.016396,0.80339,-0.49778,-0.9947,-1.4402,0.95042,-0.15578,-0.5676 -0.85983,0.064343,-1.9461,0.87715,-1.8624,-0.9142,1.3987,0.22202,0.38299,0.28946,0.12994,-0.35083,0.11219,-0.41431,-0.6629 -2.0662,-1.9257,-1.7324,0.23526,0.92949,-2.4803,0.82198,-0.26351,0.6855,-0.60097,-0.92405,-1.0453,-0.59429,0.2483,-0.54737 -1.1466,-1.4278,-3.0001,0.84412,-0.10544,-2.0773,0.65532,-0.33319,-0.58471,-0.47931,-0.82057,-0.098864,-0.39701,0.36892,-0.44077 -0.53128,0.026692,0.13773,2.4887,0.27856,-1.351,1.8276,1.3799,0.19215,-1.862,-0.16027,-0.9065,-0.67396,0.46713,0.5101 0.11338,1.7708,-1.0236,2.8007,-0.72447,-0.41092,0.22853,-0.77006,-0.38187,0.68982,-1.1146,-0.25428,0.42171,0.7632,0.92577 -1.5623,-0.49132,-3.205,0.2045,-0.25294,-1.9608,0.88713,-0.31917,-0.47244,0.34854,-1.2773,-0.24188,-0.17274,0.50643,-0.56994 0.20229,2.7869,-1.4767,0.81471,-0.23462,-0.59338,-1.1862,0.1478,0.089515,1.2301,-0.56348,-1.1624,0.25492,0.94578,-0.085034 1.7702,1.7183,-1.9232,1.447,0.036585,-0.71429,-0.25963,-1.0058,0.68543,1.0653,-0.64991,-2.098,0.40622,0.64411,0.62835 4.038,-0.93157,-1.8721,-3.6837,-1.6541,0.89958,-0.016822,0.60386,-0.54746,-1.6311,1.3998,-0.54462,-0.028158,0.31303,0.8081 2.813,0.94931,-2.726,-2.4642,0.079481,-0.65559,1.2486,1.6449,-0.40062,-1.4176,0.86578,-0.14693,1.7993,0.34235,-0.94586 0.45999,2.0218,-1.6782,0.28493,-0.20628,-0.91186,-1.5174,0.46502,-0.026418,0.21687,1.7496,-0.56437,0.38218,1.8641,-0.92512 -0.19949,-1.2137,2.0025,2.3975,-0.090399,0.68154,-0.27844,0.89494,-0.0026767,0.14414,2.7817,0.17333,-1.6262,0.56488,0.17306 -0.37162,1.6336,-2.1825,2.0352,-0.35119,0.2582,-0.19571,1.0996,-0.096438,1.099,-0.58231,-0.8015,0.13051,0.97647,0.014699 0.68523,1.7341,-1.9425,1.4351,-0.47515,-0.70861,-0.2699,-0.36418,0.62537,1.3716,-0.92008,-1.5803,0.26995,0.7611,0.59784 -1.7675,-0.4071,-1.7811,0.96315,-0.59846,-1.7268,1.695,0.53582,0.77142,-0.061289,0.061268,-1.2255,-0.62404,0.049414,-0.4973 2.754,-0.57642,-1.5933,1.3005,-0.15011,0.67652,-0.20685,-2.1154,-0.26144,-1.4938,1.1319,-1.3092,1.8364,0.019771,1.3349 0.17616,1.871,-1.7862,1.8837,-0.70076,0.23989,-0.96931,0.24636,-0.056471,1.2321,-0.92082,-0.89819,-0.22926,0.87103,0.034238 1.9855,-0.46436,3.311,0.037584,-1.9797,-0.86971,-0.97938,0.21657,-0.66072,-1.3705,0.91814,0.92074,1.2539,0.047367,0.0085798 3.6913,-1.7754,-2.3162,0.62424,-0.36704,0.52861,0.69989,-0.36288,0.92659,-2.0463,0.35312,-0.30437,0.1014,-0.30455,-0.75891 2.4536,0.34766,-1.2182,1.7696,0.43308,-0.61063,0.56853,-2.1127,0.16266,-0.1187,-0.18175,-2.0094,1.4028,0.31968,1.0127 -0.83598,1.7089,-1.4328,1.78,-0.83093,0.37217,-0.94354,1.2075,0.22442,1.2928,-0.40333,0.027754,-0.27153,1.0001,-0.43455 1.3954,-1.2748,2.3649,3.0593,-0.37712,1.8504,-1.5336,-0.099109,-0.71104,-0.47311,0.81625,0.34171,-0.11799,-0.99746,0.75334 1.8313,-0.46019,-0.39057,0.81373,-0.40081,-1.069,-2.1978,-0.17052,1.3462,-0.75349,2.1299,-0.03841,0.88108,-0.060864,-1.1628 -0.70142,1.9595,-1.3911,2.2969,1.7231,-0.38859,-0.40709,-0.10697,-1.0777,-1.1009,-0.41768,0.38343,-0.90659,1.0844,-0.75538 0.037957,1.7535,-1.7101,2.5309,1.0942,1.1949,-1.0477,-0.13267,-1.4726,0.65069,-0.16957,-0.94935,-0.020331,0.11387,-0.18771 -0.036642,1.7806,-1.7581,2.0973,0.36276,1.2217,-0.47152,0.27039,-1.3577,0.7486,-0.52462,-0.63253,-0.46838,0.84414,0.25066 -0.7808,0.61723,3.0227,2.0293,-0.091416,-1.354,-1.0366,-0.13035,0.23367,-1.0434,0.99991,1.0215,-1.007,-0.060133,-0.15615 0.80126,3.0975,0.52057,-0.80093,-2.6065,-1.2903,-0.7896,-0.46712,-1.4377,-1.3227,-0.60017,-0.28725,0.1879,0.31633,0.67136 1.1869,1.4536,-1.5729,1.9474,-0.26725,0.18274,-0.49656,0.034858,0.22037,1.3461,-1.5702,-1.6124,0.16791,0.1496,0.32709 -0.17466,1.0098,-1.8224,2.4211,-0.46772,1.2843,0.85137,0.1063,-0.70185,0.74782,-1.7173,-0.78773,0.26474,0.21947,1.1171 -0.045782,-0.11585,1.3246,3.5724,-0.83565,-0.86621,-0.1631,-0.26977,0.097287,-2.0602,0.72555,0.79366,0.19059,-0.22113,-0.25162 0.90557,0.43956,-0.95067,2.1835,1.1435,-1.1,-1.1261,-1.0906,-1.8079,-1.6657,1.683,-0.73671,-0.43253,1.1713,-0.13817 2.0715,0.16542,-0.356,0.27391,-3.0327,0.9527,-1.1907,0.67354,0.99631,-0.96427,-0.94491,-0.21373,-0.50878,-0.0043045,0.28126 5.7594,-2.914,0.066355,-0.6613,-0.99928,0.25389,-0.38206,2.1443,-0.062158,0.014943,-0.98086,-0.49194,-0.25281,-0.0082129,-0.94261 -0.17219,3.2045,-1.256,0.56269,-0.32547,-0.5984,-1.0397,1.6561,0.077368,0.85951,-1.7771,-0.49708,-0.21954,0.34742,-0.34357 0.68894,0.12454,-0.90986,1.8129,1.7744,-0.74542,-0.98916,-0.17515,-1.6932,-2.366,1.8921,-0.36867,-0.86133,0.5412,-0.77125 -2.4214,2.3469,-0.32427,1.0954,-0.84565,-0.96309,1.1946,1.0204,-0.2846,-0.29377,-0.27529,1.3911,-0.49409,0.61391,0.13968 3.0166,-2.2988,-0.085479,1.794,-0.27565,2.5553,-1.4709,0.39599,-3.4079,0.58339,-0.26452,-1.156,1.6498,1.0549,1.6554 1.2926,1.3407,-2.8601,1.2297,-0.37274,0.65288,-0.60152,-1.4198,-0.1428,-0.20514,0.37272,-1.7134,0.46321,0.87977,0.75032 3.9144,-0.40374,0.32831,0.097398,-0.43435,-0.14514,-0.99039,-2.1501,-0.24815,-0.32652,1.6998,-1.6089,-0.80272,1.0258,0.95028 2.9656,-0.73972,-0.096688,2.0223,1.1575,-0.53022,-0.74048,-2.1408,-1.7773,-1.6021,1.5655,-0.80602,0.83358,1.4786,1.3437 4.9518,-1.6109,0.76974,-1.1157,1.9649,-3.0328,1.3295,-0.5488,-1.0725,-0.21877,0.71458,0.00028298,0.48254,0.90456,0.9257 4.3346,0.15011,0.2619,0.59924,1.0342,-1.4177,0.33324,-2.0222,-0.81524,0.43882,0.1122,-1.4072,-0.46809,0.34957,1.3056 -0.30534,-1.2137,1.4995,2.9097,0.52495,0.1485,-0.26779,0.50763,-2.1037,-1.6342,2.1328,0.64616,-2.2371,0.16013,-0.10522 4.7051,-2.3136,0.11215,0.83366,-0.73865,1.851,-1.2604,1.3148,-0.62051,0.86795,-1.0306,-0.26345,1.1084,0.18484,-1.1027 0.33304,0.53124,1.218,0.6756,-1.5229,-0.28469,-2.0171,1.4571,-0.024907,-0.83487,2.1793,0.73004,-0.82404,1.065,-0.2813 -0.43005,-0.087939,1.1031,3.0439,0.87919,-1.6348,1.2672,0.042467,-2.3222,-0.085315,1.3034,0.84728,-0.2233,1.6465,0.046965 1.4572,0.10817,-1.5227,1.8952,-0.56323,0.086604,-0.6604,-0.65873,0.69303,-0.25517,0.77578,0.24265,1.3279,1.1177,-0.18343 -0.84215,-2.5305,0.95545,2.6414,-0.079779,-0.23997,1.3048,-1.6269,-1.4177,-0.72166,2.4082,-0.52,0.13386,-0.38152,0.024659 3.3182,-1.2282,0.18454,2.0628,0.326,-0.67843,-0.86375,-1.8505,-1.6664,-2.0138,1.0348,-0.84403,1.1241,1.1822,1.1681 3.1592,-1.159,1.4683,0.51871,0.51832,-0.73403,-1.7093,0.19605,0.39104,0.51157,1.4966,1.173,1.4022,-0.36098,-1.6241 -1.9388,-1.4208,1.0066,-1.0739,-0.36669,-1.5882,-0.15313,-3.0736,-1.5246,0.93104,0.54879,0.15406,-0.35925,0.3989,-0.43055 2.848,-0.013926,-0.35151,1.4271,-1.23,-1.3438,0.34043,0.0041336,1.7064,-2.3294,-0.84297,0.22161,-0.49007,0.63565,-1.813 0.2776,0.66839,-0.88088,1.8632,-2.7727,-0.404,0.80625,-0.58426,1.0439,-0.40645,-0.88893,0.051876,-0.77869,-0.013152,1.0531 3.7505,-2.6798,0.94637,1.1349,-1.0835,3.2633,0.36507,0.93882,-2.4216,-1.6185,-2.2535,-1.5735,-0.099342,-0.30335,0.61513 0.44413,-2.7727,1.3384,0.43043,-2.3325,1.1019,-0.083029,-0.74353,0.57512,2.0294,-0.72575,-1.4553,-0.65698,-1.0038,-0.26277 0.51015,-0.73575,1.8565,-2.1489,-2.6774,2.7,0.50131,1.3555,-1.9181,0.6738,-0.14681,-2.2273,0.91236,0.39002,0.20601 4.6844,-2.9915,-1.6378,-1.0266,-0.78304,-1.232,0.82421,1.0171,1.9218,-1.1807,1.06,0.60486,-0.74444,0.95653,-0.42779 3.8502,-2.5393,3.0945,0.10302,-1.5511,-0.3645,-0.26347,1.473,-2.3749,-0.24845,-0.57609,-0.17546,-0.063807,-0.50446,0.0089061 0.70595,-3.5922,0.21239,1.0787,-1.7006,1.0098,1.581,-1.6373,-0.71679,-0.32978,-1.3295,-0.80591,-1.3606,-2.1377,-1.2969 -2.5376,-3.0376,-0.85904,0.87346,0.73792,-0.14126,-0.95708,-0.88191,0.46987,0.2431,0.9468,-0.15915,-1.9672,-0.62117,-1.3649 2.2609,-0.61225,-0.8011,0.15186,-2.5175,1.5412,-1.7447,1.0347,0.5078,0.47442,-0.59849,0.01997,1.4708,0.11617,-0.12846 -2.484,-0.27297,-1.4639,1.4564,-0.32487,-0.9835,1.195,-1.3366,-0.27181,1.7327,0.65947,0.19578,0.036886,1.0186,-0.83742 -1.291,-3.4412,1.2424,1.4971,-1.1413,-0.14983,-0.50273,-0.24723,0.33846,0.99343,0.66761,-1.0044,0.17897,-1.6004,-0.65836 3.0202,1.3917,-0.27182,-1.1889,-0.11044,-2.3363,-0.72414,-1.4921,0.3697,1.2286,1.308,-1.2706,0.14859,-0.019566,1.3116 -1.2282,-1.9799,-1.0707,0.72155,-1.0042,-0.1252,0.24808,-2.95,-2.1623,-0.23143,-0.68713,0.25127,1.4852,-1.1321,-0.38875 -0.16451,0.39159,-0.40758,2.6611,-0.051697,0.050503,0.55262,-1.4664,-1.7349,0.10649,0.55547,0.52936,0.40795,0.68335,0.4496 3.4472,-2.3064,-2.3455,0.25557,-0.4805,-0.068763,1.4746,-0.32064,1.6684,-1.3092,1.3935,-0.070191,-0.29126,0.036304,0.8453 -0.8028,-3.9327,-1.2931,0.38528,-0.45342,0.52571,-1.6867,-1.9136,-2.0164,-0.17458,-1.7884,0.84122,0.42296,-1.8764,0.76208 -0.37547,1.6205,2.8167,-0.87182,-2.7284,-1.4851,1.0132,-0.80157,-0.85036,-1.0093,-0.37431,0.040716,-0.78203,0.40481,1.0832 1.0429,-1.8325,0.36758,2.8933,1.2897,0.26105,-1.236,0.33715,0.39993,-2.4201,0.78273,-0.078615,0.32575,-0.68498,-0.33655 3.5211,-1.4609,0.80106,-1.6194,-0.65132,-1.368,-1.348,0.19662,-0.12951,-0.80912,1.7472,0.98267,2.8292,-0.1547,-0.81185 -0.099266,-3.8035,-1.7739,-0.88538,-1.2044,-2.1379,0.16237,-0.61841,-0.13464,0.12484,-1.9092,1.0339,-1.547,-1.0307,-1.7826 3.0247,2.1414,-1.7342,-0.58489,0.43395,-1.0531,0.28832,0.65475,1.4157,0.7558,-1.8195,-1.7212,-0.011679,-0.013033,-1.3914 2.6376,2.7787,-1.1668,-0.52819,0.12354,-1.7201,0.083924,0.024139,0.77122,0.82739,-2.1499,-2.0307,0.15001,0.21681,-0.409 -0.84317,2.2106,-1.5336,1.7406,-1.0686,0.89376,-0.95877,1.3779,0.18772,-1.0134,0.52587,-0.19967,-0.81449,0.37859,-1.2121 2.6449,2.7203,-0.88502,-0.4093,-0.010566,-1.15,-0.30791,0.10727,0.86683,0.66929,-2.3842,-1.7168,0.49437,-0.34248,-0.92541 -0.51053,2.9362,0.25798,2.2597,0.58342,-0.4919,-0.58255,0.57472,-0.73369,1.2946,-1.0286,-0.43115,0.035665,0.44095,0.25598 -0.54942,2.1706,0.62625,1.5388,-0.5067,0.075579,0.95417,0.86604,-0.86895,2.0189,-1.909,-0.65154,-0.21338,0.34807,1.3262 -0.99691,3.0231,-0.16586,-0.15177,-1.7021,0.87643,1.1546,0.68406,-1.2622,1.017,-1.9718,-0.26004,0.08151,0.1924,1.1941 3.0781,1.387,-1.0086,0.74201,-0.59825,-1.3763,0.18114,-0.9873,1.2722,-1.1655,-1.6386,-1.1616,0.61161,0.55519,-1.1397 2.0545,-0.98341,-2.8804,-1.311,-1.8932,1.2672,0.46753,1.5625,0.055801,-0.039629,0.95339,0.061194,1.3139,-0.077759,1.4826 3.9224,-1.0246,1.038,1.6899,-0.99921,0.85444,-0.75884,-1.2022,-0.4672,-1.7738,-0.47388,0.15317,0.33441,-0.46473,-0.4899 1.0657,-2.0691,-1.808,1.7043,-0.047474,0.61911,-0.19074,1.149,0.13432,1.0937,2.5707,1.7393,-0.42669,1.0733,0.68704 3.1214,-2.9275,-2.8656,-0.24701,-1.2351,0.90806,1.2625,2.069,1.4732,1.0146,-0.14826,1.4917,-0.70866,-0.19497,0.29378 -0.74883,1.2795,0.73375,2.46,-1.5703,-1.0995,0.75805,-0.82841,0.22758,-0.23841,-0.21626,0.32807,0.84929,0.37463,1.2592 -1.9096,1.7245,-0.67838,0.61998,-1.6828,0.077654,0.84438,0.63163,-0.11357,0.43517,0.35118,1.2266,-0.05201,0.96143,0.23297 1.2733,2.5322,-0.79707,1.7388,1.0575,-0.68271,-1.1201,-0.50204,-0.47245,0.74967,0.063363,-1.4065,0.28624,0.89316,0.036598 1.6651,2.5381,0.18061,-1.0758,-2.0743,-1.025,-2.3413,-0.6248,-1.0532,-0.75747,0.89509,-0.74716,0.49689,-0.0054165,0.26616 0.1571,1.1629,-0.42229,2.5596,-0.21127,-0.66404,-0.066492,-1.1582,-0.9374,-1.5626,0.45953,-0.13549,1.174,0.69802,0.61281 2.5243,0.077026,0.8502,2.1884,-0.083562,-1.2536,0.62585,-1.7356,-0.32835,-0.98516,-2.1037,-0.69939,-0.25227,0.20234,0.91688 -1.1341,1.0828,1.7155,3.1368,0.70915,-0.83584,0.4927,-0.62453,-0.31408,0.032234,0.65947,0.8113,-0.57476,0.4589,0.76229 0.54074,1.8008,-0.0094108,2.1461,-0.92805,-0.99077,1.0309,-0.82919,-0.03061,0.38076,-2.0248,-0.31595,1.2784,0.58862,0.66962 -1.9829,2.7063,1.1177,0.72988,0.16082,-0.82018,-0.17873,1.9933,-0.54016,0.082368,0.75187,0.52214,-0.76459,0.8719,-0.66953 -2.1219,1.236,0.40693,0.91067,0.78285,-0.49135,0.884,2.8987,-0.51459,0.43428,-0.090093,-0.70671,-2.4151,0.0047263,-0.56088 -2.9244,1.8258,1.1164,-0.24076,0.43154,-0.30428,0.81685,2.1288,-1.4795,1.105,0.81102,0.012385,-1.0748,1.0383,-0.064029 -1.4541,2.2186,0.80234,0.88676,1.384,-0.33707,0.56627,2.9805,-0.65075,0.14574,-0.14645,-0.5449,-2.0049,0.64708,-1.0692 -3.6332,2.3792,0.51008,-0.46023,0.23016,0.16271,0.99082,1.053,-1.8633,1.2321,1.0552,0.41188,-0.52175,0.062591,0.019263 -2.7685,1.1724,0.10855,-0.53116,0.23487,0.30127,0.55524,2.2941,-1.1962,0.12132,0.06508,-0.6398,-1.6726,0.45156,-1.0803 -3.034,2.5134,0.34503,0.11265,1.0749,-0.65223,0.76156,1.9581,-1.5222,0.073988,-0.33152,-0.3749,-1.7306,0.86009,-1.3432 2.5665,-3.3343,-2.8367,0.66893,-1.0563,1.304,0.89079,1.0228,1.0127,0.18864,0.17352,1.3277,-0.57246,-0.75092,0.56564 2.1596,0.12555,-1.6629,0.074501,-1.9103,-0.16132,-1.5136,-0.01955,2.3209,-1.6399,0.25559,-0.12259,0.077072,0.41477,-0.72076 -4.1479,-1.958,-1.6212,-1.6482,-0.25922,-0.85933,-1.304,-0.66476,-1.0449,-1.6529,0.57972,-0.23838,-0.22213,-0.77661,-0.21693 -1.0717,1.1531,1.647,1.218,1.0103,-0.49193,-0.56532,1.8285,-0.83735,-0.39468,2.0184,0.23485,-2.6199,0.64498,-1.3246 -2.2691,2.3153,1.0075,0.32151,0.21271,-0.18898,0.068786,2.4218,-1.3885,0.31802,0.90277,0.14098,-1.8588,0.30448,-0.85891 1.3992,0.50444,-2.0583,0.75425,-0.20011,1.3222,-1.12,0.075154,-0.63393,1.6565,3.259,-0.40811,-0.2142,1.6006,0.23636 -1.6806,-1.571,1.509,1.7768,1.6869,-1.5767,1.9693,0.81429,-0.52605,-1.2088,1.3069,-1.3481,-0.041946,-0.58427,0.64038 -0.9665,-1.4106,1.5073,2.047,2.4287,-2.2783,2.2096,1.582,-1.9569,-1.5717,0.87213,-0.88265,0.33,-0.83158,0.96149 2.0881,1.5037,-1.0712,1.8587,0.71613,-0.64444,-0.049739,-1.4662,-1.9636,-0.44545,-0.74913,-1.7667,0.9286,0.54687,0.9036 -1.8236,-3.3859,-0.21111,-0.24491,3.3629,-3.5239,0.97583,0.75583,-1.7681,-0.7075,-0.49629,-0.26884,0.10671,-0.33187,-0.60822 1.6451,2.0601,-1.4028,-0.63987,-0.01901,-1.8088,-0.58117,0.20257,0.76613,1.0885,-0.47441,-1.3568,-0.059295,-0.61864,0.22362 -1.8737,-0.60604,-1.2277,1.2215,2.0842,0.34299,1.4928,2.6135,0.13606,1.6522,0.39226,-1.0147,-0.28459,0.022286,-0.60773 2.2376,-0.79311,-1.4824,-3.1115,-2.3703,-0.15495,0.4562,1.045,-0.13231,0.0064948,0.71158,0.97535,0.7619,-0.81683,1.6142 -2.2837,0.95666,0.35123,0.27757,0.080602,-0.10681,0.44392,3.6829,0.29948,0.92608,0.35667,-0.036564,-0.97349,0.053168,0.34113 0.0041035,0.86474,-0.20757,2.8779,-1.4363,-0.99127,-0.15042,-0.66563,0.75986,0.47915,0.22531,0.82324,0.22893,0.6687,0.39115 -1.0576,0.77324,-0.39415,2.0741,-1.9745,0.0022147,0.57291,-0.84795,-0.32573,0.14188,0.78788,0.8826,-0.82725,0.21632,0.63228 -1.6722,0.36621,2.4335,0.91857,0.27675,-1.4331,0.71466,-0.12753,-1.0349,-0.38656,1.387,0.19048,-1.2784,1.5944,0.18338 -1.4796,-0.020511,-0.51597,2.3272,2.7692,-0.40976,2.7522,1.6595,-1.2499,0.20351,0.010442,-1.2473,-0.058301,-0.36593,0.28173 -1.1686,0.6656,-0.1895,2.4212,1.8109,-1.3045,2.1739,3.1145,-0.407,0.40248,-0.91991,-0.48573,-0.69084,0.98235,0.084678 0.33741,1.6356,0.12325,1.1348,-1.9061,-1.7897,1.2926,-0.88221,-1.0433,-0.21875,-0.931,-0.80202,-0.92262,0.82922,0.94797 -0.44364,0.25939,1.2472,2.7886,2.3976,-0.89335,1.7888,2.445,-0.41578,0.63188,-0.82143,0.17142,0.8137,0.6577,-0.32386 -1.4734,-1.5511,-1.9968,1.7694,0.82288,0.29748,-0.25586,-0.89466,-0.19645,-0.25727,0.7912,0.27369,-0.53642,-0.63369,-0.22846 -0.22501,0.86841,1.0202,2.9609,2.576,-0.40799,2.0128,1.2462,-0.65272,0.29032,-0.85679,0.62025,1.1094,0.25624,-0.33971 -1.66,-0.79524,0.35559,2.4079,3.2181,-1.3003,3.0217,1.5281,-1.7165,-0.62024,-0.10071,0.087239,0.73823,-0.2812,0.53273 2.7376,-0.56009,1.348,1.3526,-0.79665,-0.58841,-1.33,-1.9991,-1.0856,-1.2937,-0.18763,-1.0255,-1.2593,0.14318,1.2783 -2.3525,-0.58966,1.2777,0.90115,1.9783,-2.0151,2.4199,1.8172,0.092801,-0.34495,0.99399,-0.00068855,0.16824,0.37595,-0.27363 3.0833,-2.4058,-0.89952,0.34228,-0.13622,-1.3952,0.44223,-0.061717,1.4728,-0.42993,2.0643,1.0397,2.2253,0.062239,0.097874 -2.1131,-0.88051,0.56543,0.579,1.6463,-0.66815,1.5976,0.69675,0.61784,2.449,-0.11131,-0.22551,1.0055,0.43077,-1.0449 1.7098,-4.9975,1.9779,-1.0184,-0.86397,-0.10671,0.4852,0.14038,-1.8582,2.0341,-1.2179,0.58056,-0.39735,-0.81358,-1.6663 2.4881,1.3704,2.4935,-0.48053,-0.95041,-2.2322,-0.45453,0.36999,-1.0212,-0.83111,-0.65751,0.74679,0.98186,0.83809,-0.040766 1.3703,-4.4665,0.40575,-0.17081,1.0614,-1.3762,-0.33572,-1.0339,-2.9545,1.1047,-1.1652,2.3288,0.48947,-1.8694,-1.0406 3.1099,-1.4758,-3.2891,0.66866,0.095198,0.56848,2.7038,-0.18862,1.1113,-1.1209,0.43911,0.42965,0.41091,-0.046472,0.73841 1.703,-5.023,0.55542,-0.51318,0.7834,-1.2577,-0.42982,-0.98395,-3.2003,0.99661,-1.4976,2.0954,0.48776,-1.5488,-0.81941 1.7605,2.111,-0.014714,-0.80304,-1.8117,-1.7987,-0.55811,0.59916,-0.72503,1.1003,-0.919,-1.3567,-0.21359,0.4912,0.74255 0.29865,-3.5961,-0.11382,0.72348,0.96117,-2.7232,-0.22853,-1.2117,-2.2579,1.2162,-0.62208,1.7306,1.4842,-1.1955,-0.85961 1.9677,-1.0276,-1.081,0.92731,-2.6015,1.3311,-0.66218,1.9807,1.4939,-1.2153,-0.33821,0.34449,-0.47178,0.6825,-0.38775 1.5147,-3.4444,-1.1104,-0.20901,-0.2944,-2.3534,1.8659,-1.5327,-1.8172,0.44462,-2.1608,1.3159,0.015872,-0.59973,-1.8522 -0.94112,-2.4637,-0.23974,-1.285,0.98497,-3.1737,-0.41275,-0.32402,-2.3788,1.2007,-0.72697,1.9333,1.6312,0.79119,0.054376 -0.49485,-3.0841,0.10131,-0.20927,1.002,-2.0865,-0.84779,-0.6411,-1.9857,1.7239,-0.44982,2.7393,0.95127,-0.84274,-0.71598 -0.27099,-1.7148,-1.5511,1.0093,1.8735,-2.7956,-0.22775,1.282,-2.1137,0.75027,-0.54853,0.86246,1.6991,0.51888,1.1788 -1.0175,-2.6532,-1.633,1.4684,1.4108,-3.2698,1.0016,0.6056,-2.0995,0.57861,-0.033732,0.6721,1.2709,0.76454,-0.51384 -0.897,-0.64454,3.0904,-2.158,-1.448,-2.1245,1.5984,-0.24595,-1.3798,-1.0159,-1.3661,-0.97529,-1.1953,0.5216,0.91691 1.4607,-0.071565,-0.67814,1.624,-2.001,1.2527,-2.0673,-0.60076,-0.1993,-0.89749,0.13344,-1.0979,-0.49295,0.45747,1.0733 3.3107,-3.0436,-2.3024,-2.044,-1.935,-0.36153,0.82972,2.4971,1.7418,-0.35814,1.5088,2.1677,0.29419,0.10639,-0.25834 0.14137,-2.9776,-0.54498,0.97576,0.90982,-2.5278,-0.62798,-1.8365,-2.108,0.90818,-0.59284,1.8837,0.9835,-0.55237,0.31724 -0.3144,-0.37568,-0.85559,2.9908,-0.93603,0.80807,-0.78198,-0.68054,-0.30543,-2.1003,0.96663,0.33477,0.35823,-0.66461,0.58515 -0.70576,-3.907,-1.1215,1.6702,0.38609,-2.5171,0.070935,-0.91699,-1.9732,0.40085,-0.18336,0.98012,1.0934,-0.56524,-1.04 -0.57305,-0.1571,0.28637,1.9814,-2.4272,-0.098128,0.70703,-1.263,0.45299,0.62754,0.59508,0.40358,-0.9946,-0.65659,0.72762 1.7703,-1.2798,-0.92792,0.55677,1.48,-1.5961,1.6582,-0.48048,-3.0672,0.54613,-1.6846,1.3666,2.5676,-0.49079,0.37647 2.4628,0.76853,-1.1701,-1.9799,-0.43079,-0.25514,-0.81501,-0.99733,-1.2139,-1.1389,2.671,-0.097223,2.3136,-1.0937,0.34987 4.4123,-3.8342,-2.5215,-0.18055,-0.42826,0.26911,1.4492,0.8759,1.2935,-1.1124,1.2139,0.7683,-0.95482,-0.4073,0.010191 -0.33516,-4.2461,-0.85108,1.9759,0.16081,-2.3936,1.1626,-0.91507,-2.213,-0.42628,0.23891,0.1834,0.62795,-0.49933,-1.3093 -0.81468,-2.7886,3.2589,0.097157,0.95904,0.97325,-0.45437,3.7971,0.070434,1.0376,0.42372,-1.6158,-0.10878,0.042911,-0.62671 1.5456,-1.5183,0.094255,2.9574,0.49342,1.5415,-2.4258,1.0938,-1.6518,-1.7677,1.5599,-0.12646,-1.1031,0.84268,-0.11197 -3.1416,0.4121,-1.2045,-0.70113,-1.0435,0.95776,0.5516,-0.0096949,-1.2401,0.8425,1.4681,0.25175,-0.0087205,-0.039703,-1.3617 -0.23351,1.8158,-2.135,1.7543,-0.96833,-0.36927,-0.40728,0.3346,0.44147,-0.10478,-0.076762,-0.32581,0.66924,1.117,-0.28636 1.5629,-1.2629,-1.6033,2.0806,1.1127,-1.2122,-0.85318,0.37336,1.6126,-1.2764,1.5305,-0.64836,-0.1576,-0.00079674,-0.85829 2.7454,0.71829,-1.9724,0.6923,-0.10807,0.12853,0.63243,-1.8665,0.21056,-0.36159,-0.30448,-2.3324,0.7356,0.11843,1.0999 1.7051,-0.26439,-1.1982,1.6663,0.79795,-1.6637,-0.76569,-0.31284,1.6645,-0.36792,1.0627,-0.47344,1.5551,0.29371,-0.94768 1.8478,-2.4314,-0.68346,1.3675,0.393,-0.73494,-0.52486,0.19843,0.80087,-0.10517,2.8715,0.32221,1.1728,0.37573,0.35221 1.4934,-0.68241,-0.080725,1.5589,1.4405,-1.5238,-1.8421,0.072883,0.92099,-0.94676,2.4087,-0.052058,0.15175,0.84233,-1.1784 0.89174,1.4434,-1.0026,2.0014,1.4028,-1.5051,-1.0061,0.93349,0.49531,0.46754,0.81105,-0.74372,-0.01069,1.2458,-1.2458 -0.08746,1.7557,-1.5991,2.2794,2.0783,-0.94267,-0.35774,1.6141,0.70205,-0.19631,-1.1856,-1.2557,-0.87034,0.51836,-1.223 -2.3986,-0.44671,-2.0224,0.24305,2.5692,-1.0411,0.15126,0.67158,-1.603,0.96586,0.2543,0.11936,-0.72998,1.134,-0.7497 5.0941,-3.9612,-0.81465,0.26991,-0.33822,-0.0081366,2.0287,0.017422,-0.37035,-1.0138,0.36444,-0.024388,0.51879,0.16241,1.1534 0.48876,0.53328,-1.8349,2.1295,0.99566,-1.326,-0.66611,0.88442,1.1753,-0.85223,0.47912,-1.3398,-0.42065,0.87839,-0.80275 -0.29464,1.7573,-0.79571,2.654,0.579,-0.67038,-0.36919,0.88909,0.25945,-0.67732,0.13429,-0.20729,-0.9779,1.2307,-0.47732 -1.3517,1.6019,-0.85651,1.5933,-0.99052,-0.90097,0.60889,2.3936,0.38345,0.11821,-0.22076,-0.54356,-0.38082,1.0476,0.51255 0.95223,0.94948,-1.9803,1.9899,1.3621,-1.3028,-0.55298,1.1416,0.55859,-0.63342,0.41339,-1.8883,-0.44515,0.75367,-0.51199 1.4801,0.66729,-0.34101,-0.33948,1.6024,-1.5027,1.0061,0.89435,0.52537,-0.71896,-1.4251,0.19113,-1.0289,-1.5284,-1.5027 0.32914,2.513,1.7874,1.1619,-1.409,-2.2883,-0.30727,-0.58797,-0.31249,-0.031785,-0.73294,0.47222,0.14453,0.87639,0.60688 1.4301,-1.9667,4.7303,-0.29419,-0.23791,0.55626,-0.5279,0.31153,-1.3206,0.72199,-0.29554,0.090873,-2.3271,-0.64725,-0.38149 0.82859,1.7727,-0.36911,1.9553,-0.034562,-1.7042,-0.73056,-0.029309,0.081321,0.74087,0.080166,-0.41415,1.1626,1.5114,-0.40785 -0.21698,-3.2072,-1.0953,2.1851,-0.78757,0.39849,-0.31437,-1.5812,-0.57558,-0.56148,-0.10393,-0.93633,0.45595,-1.8355,-0.20006 -0.54044,1.213,-0.71611,2.0865,0.6865,0.045533,-0.74335,-0.91464,-1.7326,-1.1351,0.61562,-0.20546,-0.74869,0.6136,-0.32141 0.028558,-3.2589,-0.67607,1.6185,0.20274,0.04149,-1.6774,-2.1614,-0.64307,0.95782,-0.73885,0.81057,-0.11329,-1.8332,0.53816 -0.52326,-3.4947,-1.5512,1.9776,0.065064,-0.38982,-1.2129,-1.7964,-0.59161,-0.34858,-0.92675,0.61978,0.16928,-1.9357,0.069483 1.2231,-0.92198,0.91275,2.4181,-1.4863,1.9933,-1.2743,-0.36337,-0.20657,0.12737,0.41942,-0.55848,-0.34179,0.10885,1.5456 -2.048,-2.5715,-0.11571,1.951,0.34771,-1.2243,1.1787,-0.11696,-0.42033,-0.30656,1.2915,-0.027782,-0.80363,-0.89469,-1.114 -1.9839,-1.4884,-2.8041,1.2993,-0.90671,-1.8413,-0.17491,-0.70544,0.36339,0.34547,0.13575,0.57038,-0.20752,0.053732,-1.0537 -1.642,-2.2892,-1.3127,2.0939,-0.94982,-1.0846,0.17571,0.13193,0.98285,-0.45129,1.0154,-0.82985,-1.4476,-0.88031,-0.74168 2.4333,0.94835,-0.19793,-0.0389,-1.2709,-2.2604,-1.5712,-1.2853,1.18,-0.13085,0.909,-0.84378,0.90713,0.70613,0.15628 -1.2431,-2.5954,-2.6795,1.8699,-0.26032,0.89162,-1.2161,-0.0040877,-1.2938,-1.4375,-0.30544,-0.70984,-0.58365,-1.1554,0.40105 1.7904,-0.15634,0.37471,1.9781,-0.64242,-1.1843,-1.8448,-1.1543,0.56314,-0.21589,0.83068,-0.15979,0.060577,0.88949,0.47642 -1.1125,1.8088,-1.2915,1.8539,1.0715,0.082788,1.9043,0.91287,-0.93964,-1.8549,-1.7164,-0.87308,-0.30978,0.51747,0.7104 -0.68915,-2.0032,-2.3347,2.2485,-1.0731,-0.025849,-0.25351,-1.2815,0.40574,0.12092,0.41991,-0.52008,-0.12081,-0.56671,-0.24183 0.89047,0.7115,0.625,-1.1286,-3.2013,1.1023,0.18958,0.46725,-0.70117,-1.26,-0.12071,0.68515,-1.9208,-0.31923,-0.068532 -0.82733,-2.6657,-1.9241,1.827,0.36115,-0.45346,-1.0793,-1.6109,-0.8676,0.050416,-0.22992,1.0275,0.49431,-1.2356,0.13811 3.4255,-1.169,-1.7538,-0.81993,-0.69911,-1.7898,1.5201,-0.6046,2.1967,0.15859,0.84043,0.44171,-0.38433,-0.022082,1.6715 -1.4012,-0.81763,-2.1198,0.16114,-0.73594,-2.3734,-0.48851,-0.67707,-0.11938,1.3442,-0.31595,1.0732,0.98501,1.3974,0.24298 2.7289,-1.4607,-1.4855,-2.8425,-1.7419,-1.3715,1.6932,1.8627,0.41008,-0.52183,0.39694,1.6545,0.63029,-0.077781,0.66028 -1.1094,-3.66,-1.4241,2.0887,0.39653,0.066549,-0.89778,-0.18271,-0.53846,-0.9821,0.72018,-1.8227,-1.0349,-0.78978,0.2651 -1.2328,2.7748,0.6975,1.6585,0.62719,-1.1458,-0.1849,1.0365,-1.528,1.5589,-0.54969,-0.03703,-0.45776,0.65123,-0.2083 0.8782,-3.2885,-0.62038,0.63193,-1.0641,-0.97348,-1.5404,-1.1128,-0.89941,1.8275,-1.1173,0.31277,-0.35701,-0.61679,0.49028 2.6141,-0.8102,-0.95368,0.70058,-1.8862,-0.60791,-1.3506,1.0979,1.7507,-1.5089,-0.66168,0.66791,-0.12093,-0.43439,-2.6145 0.017117,2.4621,-0.95495,1.0523,-1.3074,-0.70054,-0.14768,0.75147,0.29529,1.5158,-1.9818,-0.64028,0.3089,0.59708,0.23 -0.52668,-3.6058,-0.44475,1.0142,-0.21224,-1.7802,-0.6218,-1.6515,-0.40034,0.84409,0.19139,1.03,0.4472,-0.43073,-0.92411 -1.4211,-1.3742,-1.4629,2.1327,0.79105,-1.4593,1.392,-0.35868,-0.13435,1.0404,1.1457,-0.28142,0.39035,0.54767,-1.2366 1.015,2.2027,-1.6293,0.24231,-0.7577,0.013661,-1.0779,0.059753,0.91739,0.90452,-0.83971,-0.88612,1.957,-0.19617,-0.34158 2.1282,0.54636,0.64575,1.2444,-1.6267,-1.6347,-0.81632,-1.1902,0.54951,-0.86911,-0.64577,-0.56735,-1.6238,0.32089,1.0313 -0.87297,-1.4545,-1.3787,2.0147,-0.082599,-1.26,1.6941,-1.1203,0.053334,0.77894,0.44879,0.067097,1.2322,0.23917,-0.81631 -0.30762,-2.0674,2.5051,-0.70474,-2.1097,1.0104,-0.79903,2.4948,-1.3724,1.856,0.8331,-0.54594,1.5033,0.11148,-0.6675 1.8178,1.0818,-0.45885,0.54871,-0.99441,-1.1462,-1.1948,-1.3566,1.5891,-0.30095,0.068127,0.036402,1.987,0.2211,-0.6199 1.429,-1.179,1.1665,0.56379,1.1603,0.13116,-2.3259,4.3064,-0.048889,0.63236,-0.073981,0.44935,1.3564,0.52265,-0.72236 -1.1342,-2.5169,-2.2653,1.9597,-0.36727,-1.6496,0.4933,-0.65261,-0.83718,-0.83498,0.78534,-0.37402,-1.0432,-0.034505,-0.98957 -2.645,2.9073,0.017227,0.21987,-0.13431,1.6202,1.307,0.87747,-0.84218,-0.059449,-0.55611,0.17634,0.99778,-0.59239,0.66222 1.217,-2.2948,0.64826,0.99314,-1.3177,-1.8799,2.3057,-1.8891,-1.425,0.84251,-0.057023,-0.70674,-0.15455,-0.79774,-0.21263 -2.4205,1.5981,-0.028672,0.31634,-1.0797,-1.1673,1.1108,0.94462,-0.8459,1.8098,0.029489,-0.56758,0.47072,0.84486,0.35167 5.0721,-0.85018,-0.60186,-3.07,-0.93799,-1.683,0.77893,-0.041395,0.23399,-0.089775,1.3271,0.19767,0.55755,0.96984,0.17585 2.8279,0.027513,0.77975,-0.74413,-2.8576,0.99031,-1.0106,2.2709,-0.77731,1.3119,-0.99307,-0.051283,0.50863,1.2515,0.46062 -0.092622,-1.7626,-0.15498,0.78003,-1.399,-1.4121,0.85968,-1.5933,-0.16877,1.7727,0.30635,0.47561,1.2214,-0.3895,-1.2845 -1.6401,-1.4589,0.81744,0.4293,-0.46221,-2.3783,1.027,0.35533,0.27205,0.92598,1.8082,0.45271,0.62917,0.3873,-0.85145 2.9629,0.14886,-0.35217,-1.0113,-1.2852,-1.4948,-1.732,-0.71476,0.625,1.017,1.7933,-0.67341,0.024734,-0.0097774,1.2351 -1.8044,-1.4422,-0.61974,-1.1545,-2.5813,-0.18479,-0.71105,-0.47865,-0.34157,0.32356,0.91085,-0.23793,0.14208,-0.43607,-0.31676 2.0469,0.90806,-1.0049,-2.0921,-0.80449,-0.99436,-1.05,0.59879,-0.93323,1.5842,3.0597,0.23562,1.3089,-0.41798,0.97344 0.49723,-2.4513,-2.5384,1.1508,-0.33595,0.46619,-1.2255,2.0073,-0.68724,0.37296,-0.9238,-0.56078,-0.65552,-0.20636,0.81163 0.19836,-2.9043,-1.1976,-2.0179,-2.152,0.7923,-1.9141,-0.4126,-0.56501,1.1326,-2.6349,-0.26555,-1.4929,0.1446,1.1649 -0.75339,-1.7696,0.83735,2.6988,-0.81704,-0.99288,0.8232,-0.64046,0.40388,-0.57944,1.0828,0.043481,0.60723,-1.0729,-0.29192 2.0358,1.8252,-1.2467,1.1297,1.6855,-0.16136,-0.39389,-0.57053,-0.83325,1.7571,-0.94623,-2.4859,0.059259,0.066289,0.96673 -0.15269,-0.99553,-0.32571,0.38746,0.41511,0.1031,1.8366,-0.98557,-0.36492,1.5637,-0.65563,0.17534,0.090147,-1.9317,-0.93325 -0.58054,-3.3503,-1.5565,0.17766,-0.049263,0.15508,-2.5645,1.983,-0.30122,1.0115,-1.0263,-0.95764,-0.55758,0.76603,1.7264 -1.0201,-3.9755,0.75382,1.2672,1.2201,-0.45834,0.33873,-1.371,-0.86463,-1.2369,0.71392,-1.0406,0.86404,-1.4139,-0.54974 -0.032243,-2.2918,-1.914,1.1061,-1.4638,-0.79527,-1.955,-0.16701,0.24973,0.62319,-0.81067,1.449,-0.44621,-1.3909,0.92767 -1.5751,-1.6656,1.123,0.29956,-2.5881,-0.07356,-0.44329,0.026937,1.0058,0.28434,1.342,-0.19298,0.45829,-0.86362,-0.091743 3.06,-0.49736,-0.95533,1.7788,-0.25128,-0.23836,2.0301,-0.71879,-1.4498,-2.0713,-1.9283,-0.03735,-0.097216,-0.628,-0.78767 -0.19695,-2.2643,-0.52308,1.7413,-1.7729,0.44193,0.46165,-2.1054,0.24585,0.74233,-0.27674,-0.9892,-0.14373,-1.7549,-0.16281 1.175,0.97053,0.010493,1.0112,3.1397,-0.68613,-1.3247,1.7458,-0.21296,2.1404,1.1321,-0.85983,0.25177,-0.2825,-0.21926 -0.74258,-1.6621,0.70616,-0.80639,-3.1218,0.42981,-0.47458,-0.70818,0.77774,0.58448,-0.2083,-0.78116,0.50128,-1.1342,-0.13395 -1.507,0.17015,-2.9912,1.1866,-0.66736,-0.47383,2.1057,0.44949,0.43244,0.36449,-0.66089,-0.63012,-0.87114,0.4712,-0.42034 -1.4842,2.181,-1.3763,1.3799,-0.66271,0.084019,0.88266,1.1099,-0.54629,0.48932,0.307,0.23814,0.37947,0.74676,-0.12031 1.5533,0.58883,1.577,1.6018,-1.4817,-0.90903,0.047641,-1.8417,-0.71244,-1.0639,-0.62329,-0.45446,-1.4177,0.7536,1.8676 -1.8994,-1.2695,-2.4983,1.4134,-0.55359,-1.2819,-0.30597,-1.628,-0.033251,0.30332,0.058952,0.64743,0.42206,-0.038833,-0.31299 5.3979,-0.074862,-0.41897,-0.52896,2.2814,-1.7677,2.4589,-0.8553,-2.0102,0.35164,-0.042499,-1.3216,0.00082054,-0.91728,1.2055 -1.1041,-0.35022,-1.6787,2.5008,-1.1212,-0.81158,1.0006,0.45675,0.73254,0.37934,0.86621,0.15517,-0.18896,0.45564,-0.1971 -1.8986,0.56317,-3.6459,-0.043509,-1.0225,0.70525,0.15133,1.1345,0.77181,0.80985,-0.49697,-0.23509,0.40496,0.39887,-0.55152 -1.9602,-2.1686,-1.1355,1.2944,1.6066,-1.9457,0.42411,-0.97812,-0.10656,0.76618,0.55527,0.19479,-0.052329,1.0149,-1.1411 0.90373,-1.5745,3.3391,-1.0101,-2.955,1.2859,-0.57611,1.6666,-0.24951,1.529,-0.47745,-1.1428,0.68991,0.066458,0.067422 3.9553,-0.34992,-1.9737,-1.215,-0.017532,-2.3222,2.0024,0.21802,1.7883,-0.93964,0.19094,0.37604,0.36283,0.16672,-0.88064 -1.4774,-1.3775,-3.5675,1.3477,0.35207,-1.2285,-0.14695,-0.52988,-0.84671,-1.3849,-0.89929,0.47006,-1.2254,-0.74184,0.26858 -0.7552,-1.3181,-0.07385,2.8696,-0.83223,0.92673,0.79647,-0.52033,-0.079546,-1.1229,1.0742,-0.014778,0.64014,-1.478,0.63509 2.7724,3.034,-0.71825,-1.9277,-0.15004,-0.72873,0.26573,-0.34852,-0.50593,-2.1019,-1.3351,-1.4802,0.74339,0.37002,-0.50869 1.9472,0.44279,-1.8302,0.16908,-0.42517,-0.79842,-0.023717,-0.62867,1.2861,0.8924,1.4825,-0.21576,1.4438,0.32945,0.95041 0.84444,-0.72785,1.3708,-1.3827,-3.3752,1.9699,-0.082216,1.1519,-0.082422,0.012253,-0.16121,-0.55172,0.010867,-0.62142,-0.48236 3.7579,-1.2174,1.5063,0.86282,-1.6776,1.375,-0.32131,1.1888,-0.41186,-0.5465,-1.9716,0.19248,-0.50067,-0.67166,-0.060142 3.5929,-1.2073,-2.4128,-0.056248,-1.1382,-0.54573,0.52983,-0.23049,2.1741,-1.1235,0.42339,-0.27334,-0.5571,-0.030725,-0.94945 -0.71318,1.7596,-1.7957,3.0343,0.1927,0.89019,0.16349,0.47929,-0.82771,0.22378,-0.42884,0.18541,-0.17884,0.62244,-0.049887 1.0713,0.2952,2.4291,0.77511,-0.16075,-2.4899,2.7036,0.11791,-2.177,1.5114,-1.3086,0.61064,0.82579,0.57452,-0.053612 3.2286,1.1753,-0.079949,-0.66566,0.0077521,-1.4433,-0.62498,-1.7114,1.2857,0.27448,0.26457,-0.3291,1.1385,-0.13725,-0.76309 3.9204,-0.6474,2.3589,0.01529,-1.0829,-2.5736,1.3411,0.33908,-1.6836,-0.61015,-1.1043,0.86507,0.29258,0.37232,-1.0049 1.7157,1.309,-0.36079,0.39441,2.9188,-0.90879,-0.14998,-0.55162,1.0806,-0.62177,0.080188,-0.79173,0.7443,0.053571,-0.68595 2.1039,-0.31579,1.57,1.9442,-0.11754,0.50655,-3.0002,0.93858,-0.38861,-0.34458,1.8233,0.53293,-1.0471,0.99494,-0.24853 1.5391,-1.5469,3.572,-2.0419,-2.636,0.69838,-0.50876,1.8991,-2.6894,-0.31139,0.13042,0.37082,0.53955,-0.66357,-1.037 -1.5044,-1.2137,-0.38658,-1.0002,0.53052,-1.3329,0.38962,0.64153,-1.3879,2.8819,-0.34306,-0.10368,1.655,0.91357,0.15569 -0.897,-2.9016,1.3461,1.5337,-0.050985,-2.4906,1.6944,-0.17549,-0.52757,0.4197,1.2358,0.38429,1.0689,-0.7128,-1.8861 -1.3302,-2.9478,0.37584,2.0541,0.94992,0.092521,0.54544,-0.60233,-0.27686,0.11163,1.9983,-0.6052,-0.22552,-1.1259,-1.4402 -1.7372,-1.5871,0.6294,2.0735,0.777,1.0042,0.65879,-0.64932,0.17004,-1.1038,2.1191,-0.8341,-0.51691,-1.1899,0.092707 -3.2965,-1.8401,-1.3412,0.93533,0.6063,-0.6206,-0.054422,-1.2558,0.13478,-0.50984,0.91433,-0.44388,-0.98818,-0.83579,-0.98317 1.0837,0.62342,2.8781,-0.80458,0.055011,-0.42258,-1.2633,0.84397,-0.40646,-0.6197,1.3598,1.662,-0.23688,0.15835,-0.5234 0.88264,-0.10663,-2.0632,0.11955,-0.93855,-0.73865,-1.4683,0.91241,1.464,-0.26901,2.0684,0.1431,0.63951,0.94132,-0.78904 3.9484,-0.92927,-0.86559,-3.0992,0.16933,-2.7063,2.0242,1.4348,0.52009,-0.28675,0.67519,1.1922,-0.075618,-0.42229,0.6173 1.3361,-0.67444,-1.5202,-0.0044886,-1.2025,-1.118,2.2609,-0.32671,-1.1039,2.3403,-1.7222,0.07663,-0.19506,-0.79431,-0.87685 0.90911,2.3699,-0.096527,-0.04592,-2.3021,-0.84259,1.0549,0.51986,-0.80866,0.23868,-2.068,-0.028715,-0.13312,1.1577,0.36185 1.126,1.3047,0.15906,2.7333,1.0596,-1.0708,0.14894,-1.503,-1.03,-0.10687,-1.1887,-0.62944,1.9756,-0.058545,-0.17631 -0.69515,-0.19713,1.6594,-0.68815,-1.4566,-1.1895,1.5769,-1.2809,-0.92734,2.0254,0.45528,0.21221,0.84369,0.43059,-0.9797 1.8832,2.2636,-0.8564,0.49642,-2,-0.4836,-0.69465,-1.0507,0.73736,-0.14144,-1.2447,-0.15291,-0.20837,0.24851,-0.60878 -0.072638,1.6048,-0.34201,2.1376,1.1668,-1.096,-0.32492,2.3718,0.41526,0.51163,-1.4829,-1.0556,0.59343,0.50039,-0.13834 -0.68912,-0.80747,1.0139,-1.3853,-1.7628,-1.8666,1.5983,-1.5217,-1.5362,1.5597,0.33892,0.53517,0.60557,0.040624,-0.69506 1.6113,-1.7582,3.0653,3.0555,0.1942,-0.4396,-0.11143,0.078141,-1.4383,-0.75163,1.4749,1.5075,0.048775,-0.83786,-0.83757 4.0324,-1.8335,-1.8483,-1.3554,0.25655,-2.8474,2.6399,-0.018094,1.249,-0.50187,0.61062,1.3983,-0.26615,-0.022204,1.0692 4.3218,-1.2578,3.0767,-0.50418,-1.999,0.31923,-1.5004,1.9625,-1.2549,0.75352,-0.69816,-0.1387,-0.12888,0.47902,-0.52872 5.348,-3.1628,-1.3571,-0.52674,-0.21445,1.882,0.86291,0.40337,-0.78016,-0.31021,-0.18106,-2.0168,-0.57728,0.049654,1.2326 -1.5758,-2.1158,-0.98789,1.8965,-0.90929,0.48815,0.0045397,-1.9509,-0.14313,-0.52913,0.9751,-0.58579,0.77742,-1.3849,0.36532 -1.1458,-2.7424,0.32212,1.8581,-0.53586,2.385,-0.83126,0.057452,-0.38324,0.059532,1.1703,-1.5636,0.50044,-0.67142,0.58972 2.6632,0.25958,0.32111,1.2916,-0.28715,-1.7403,-1.2147,-1.5059,-0.79663,1.1055,1.3698,-0.75774,-0.49151,0.85932,0.78383 -1.7306,-1.7967,-1.3908,2.4361,-0.43502,-0.00079308,0.72441,-0.81994,-0.53078,-1.8457,1.3411,-0.70625,0.39011,-0.9736,0.1293 2.4409,-0.38012,-2.9346,-2.255,-1.4054,-0.60698,1.6478,1.8707,1.1138,-0.15454,1.1501,1.5101,0.83641,-0.31476,0.38001 2.0311,-2.1664,-0.27602,-1.3168,-1.5211,-0.52525,-0.11195,1.1062,-2.5668,0.43477,-0.47065,1.499,1.4858,-1.3009,0.29642 -1.3951,-1.0385,-3.2925,1.6857,0.86864,-1.4651,0.36086,-0.047723,-0.99765,-0.70821,-0.32194,0.11646,-0.4994,0.42056,0.10893 -1.0578,-3.1775,0.88814,0.92091,0.97352,1.799,-1.7001,-0.46442,-1.1643,-0.85951,1.2706,-0.47466,0.15272,-0.89655,-0.36243 -0.26476,-2.9059,0.897,1.0526,-0.36833,1.9051,-0.6074,-1.0753,-1.0551,-1.2165,0.72147,-0.39214,1.6697,-2.1581,-0.38381 0.045566,2.9203,-0.75063,-0.48397,-2.3634,-1.1467,0.27301,0.099469,-1.0817,-0.51959,-1.0098,-0.25364,-0.96386,-0.2929,0.47043 3.9849,-1.301,-1.7135,-0.9653,-0.76559,-1.3554,1.255,-0.67815,1.6769,0.078005,0.9361,0.09282,-0.38493,-0.43316,1.3442 -0.13715,1.538,-2.2578,2.1086,-0.82483,0.84826,-1.5456,1.0322,0.38698,0.18633,0.47666,-0.35743,-0.67132,0.72775,-1.4993 -2.2749,-1.9377,-2.5335,1.4797,-0.90772,-0.80708,-0.10766,-1.2056,-0.413,-0.93801,0.43979,-0.47482,-1.3685,-0.4194,-0.59981 -0.7498,-0.52878,-2.2949,1.7539,-0.15304,-0.638,0.33147,-2.2448,-0.99315,0.70852,-0.91882,0.64879,1.3602,-0.01573,0.75828 -1.7664,-1.341,-3.5253,1.7119,-0.3575,-0.92424,0.50524,-1.4759,-0.94841,-1.0548,-0.10737,-0.020052,-0.25268,0.19733,-0.16347 1.39,-1.0531,-2.1945,-2.1476,-2.212,0.55337,0.48585,2.538,-1.1441,-0.7355,-0.452,0.70494,1.5302,-0.85184,-0.35097 1.1119,0.34447,-0.74089,2.8949,2.612,-1.9462,0.74898,1.4394,-1.5039,-2.4468,-0.2264,-1.6726,0.20997,0.69808,0.40793 3.71,-1.2887,-0.59699,-1.9138,-1.6936,0.21406,-1.1775,2.7623,-0.9996,-2.8532,0.30087,-0.35178,0.16617,-0.56382,-1.9392 -0.60671,-0.47378,0.16723,-1.5491,-1.6931,-1.4029,-0.77219,-1.184,-2.6643,0.093625,-0.68385,1.2126,-0.1346,-1.1033,0.21764 0.28292,3.0292,0.86719,-1.1976,-0.79491,-0.24777,0.35244,1.3133,-2.6675,-0.64603,-1.9411,-0.96361,-0.14518,0.51809,1.0273 -1.3813,-2.4941,-0.21542,-0.9283,-1.0288,-1.0749,-1.4189,-1.4776,-1.1136,1.5747,-0.29742,1.3006,0.38775,-1.6147,-0.87812 2.7752,-0.65306,2.8967,-0.7624,-1.8179,0.74163,-2.5738,2.2949,-1.6579,0.34168,1.3213,-0.098463,0.60217,0.71355,0.11906 1.963,-1.3875,2.1987,-0.89756,-2.6469,-2.0563,0.77509,-0.086604,-0.72708,-0.93438,-1.0558,-0.58967,-0.77905,-0.94088,-1.0461 4.5379,-1.4037,-0.10643,1.0062,-0.49566,0.84265,-0.77763,-2.1597,-1.0167,-1.7865,-0.60402,-0.83974,-0.77311,-1.2404,-0.95808 1.3709,-0.33994,2.5869,-1.73,-2.7774,0.66939,0.2477,0.18899,-3.1271,-2.2348,-0.53858,-1.2241,-0.87445,-1.3198,-0.72288 -0.32315,-3.2695,1.117,-1.9399,-2.6706,0.014754,-0.35677,-0.056024,-1.7123,0.7854,-0.92898,-0.62203,0.4006,-1.1326,-0.47696 0.10369,0.25845,2.5164,0.14488,-1.6326,-1.2138,-0.41913,1.1141,-1.0819,-2.5817,1.7093,0.12552,0.45467,1.0682,0.33538 3.9683,-0.4529,-1.2179,-0.39745,0.23365,-2.5132,1.0152,-0.15863,1.9972,-1.1299,-0.31886,-0.22433,0.20961,0.52784,-1.4966 -1.8837,-0.17221,1.6038,1.8451,-1.5904,-1.702,0.77278,-0.25256,-0.82503,0.95463,0.82543,1.0755,-0.57579,-0.8177,0.16193 0.29652,-2.371,2.5947,-0.96076,-2.6868,-0.11474,-0.34832,-0.18439,-1.521,0.74076,-0.57734,-0.1778,-0.050275,-1.3991,-1.1361 -2.8354,-1.8641,1.6149,-0.28258,-0.23293,-1.5601,0.22544,0.66113,-1.6696,-0.6261,1.8351,0.67911,-0.53156,-0.60746,-1.7525 0.33887,1.4707,-0.50254,1.7231,-1.397,-0.8988,-0.97056,0.35272,0.38104,-1.0902,0.80787,0.85862,-0.34609,0.98406,-0.67501 -2.2185,0.31146,-0.92977,-1.0831,-1.5922,-0.61486,1.1289,-1.6908,-0.22272,1.6507,-0.10287,-0.44958,0.57039,0.69783,0.18236 0.58005,-2.5721,3.2219,-0.60035,-2.2584,1.1152,-0.681,0.66041,-1.2417,2.0889,-0.67747,-1.0396,0.23971,0.022728,-1.257 3.2589,-0.7356,2.1017,2.0673,-1.04,1.0332,-2.1153,0.97637,-0.83332,0.96901,-0.41942,-0.4433,-0.18342,0.53478,0.7938 -1.291,0.14142,-0.99385,1.516,-1.1748,0.92219,-0.21324,1.5609,1.5715,0.82227,1.3266,-0.57554,-0.98142,0.74882,-0.77473 -1.1884,0.99382,0.56324,0.94182,-1.9665,1.4946,-1.0719,0.56604,1.0241,-0.33229,1.5194,1.4631,-0.37026,-0.13638,0.50053 0.90871,0.51477,-0.8157,0.84463,1.8125,-0.46813,-2.1758,1.8137,0.5271,-0.16821,2.3015,-1.1209,-1.6492,0.26251,-1.3062 -2.8397,-0.52888,0.59418,0.37918,-0.52035,-1.866,0.89216,-1.178,-0.48279,1.4773,1.6197,-0.034527,-0.35967,0.81792,-0.55059 -0.3695,-3.7038,2.1729,-0.4619,-2.015,-0.089446,-1.4179,-0.041422,-0.2492,1.3323,-0.074782,-0.94277,0.24516,-0.91177,-0.55509 1.0791,-3.4589,0.38517,0.3144,-0.48328,-0.72963,-1.1328,-2.2176,-1.6295,1.28,-0.59136,0.93051,-0.41277,-1.8125,-0.62877 0.74869,-4.0104,0.080628,0.75059,-0.44333,-0.3175,-2.2628,-0.47531,-0.61632,1.3572,-1.0459,0.91098,0.12517,-1.5077,0.45505 1.9626,-0.073315,-2.0037,1.1022,2.1844,-1.4737,-0.27634,1.3089,1.4566,-1.0974,0.81454,-1.5622,0.72819,0.63727,-0.13715 -2.5775,-1.0667,-1.077,0.64321,-1.7314,-0.60605,0.68324,0.57824,1.3474,-0.96807,1.1171,-0.78195,-1.5334,-0.46474,-0.7848 -1.4741,-2.8516,-1.8854,1.257,-0.88415,-2.1851,-1.2941,-0.54206,-0.088424,-0.27624,0.28025,0.52766,-1.3622,-0.67126,-0.84138 -0.68442,-2.7436,0.14578,0.70149,-0.27137,-1.6096,-0.0061321,-3.4312,-1.688,0.58939,-0.46668,-0.11629,-0.14982,-0.53804,0.36299 -1.54,-2.3391,-2.3173,0.7271,-1.7309,-1.115,-2.2409,-0.54231,0.39832,0.54096,-0.22152,0.64611,-1.4092,-0.3533,0.43436 -0.84719,-5.2571,0.21381,1.6442,0.41939,0.23062,-1.6361,0.86994,-1.5523,0.48834,-0.13883,-1.1583,-0.070439,-0.7202,-0.62868 -0.95248,-3.8269,-0.5941,1.8891,-0.63303,-0.16674,-1.1418,-0.44547,-0.018628,0.69226,0.54169,-0.57865,-0.036462,-1.3221,-0.96381 0.15093,-3.085,-0.95401,2.08,0.058765,-1.1327,-1.947,0.48007,-0.026918,0.31712,0.18545,0.77618,-0.35602,-1.8805,0.59225 3.6105,-2.1626,-1.9124,-1.6711,-2.2663,0.49911,0.56358,1.2916,1.3402,0.35723,0.13205,0.39502,0.012716,-0.15197,0.57396 0.023583,-1.6686,-1.3854,1.6209,-0.67851,-2.5066,-0.13383,-1.3909,-0.71301,0.51603,-1.0209,1.7734,1.1905,-1.287,0.026017 -0.33138,1.5898,-0.099656,1.7783,-1.5932,-0.48478,0.86029,0.17093,0.007706,1.7096,-0.861,0.35969,0.99266,0.78935,0.96144 -1.9704,0.18755,-0.63744,-0.17095,-2.7737,-0.10655,0.86806,-1.5775,-0.28399,0.063954,1.315,0.094925,-0.0095903,0.39584,-0.21484 -1.4316,-1.186,-3.028,1.4415,-0.56121,-2.1195,-0.86182,-0.55987,-0.90245,-0.82697,-0.32533,1.2883,-1.5197,0.057079,0.47346 0.078175,3.4544,0.19362,-0.10829,-1.6346,-0.19137,-0.21355,-0.31868,-2.0476,-0.81961,-1.1933,-0.25471,1.2994,0.33958,0.25422 -0.64158,2.2052,-0.90009,2.0655,2.5179,-0.54453,-0.81133,1.1583,-1.6469,0.19826,0.82257,-0.64963,-1.3125,-0.077478,-1.2173 -0.72858,-3.4413,-1.4023,1.2833,-1.2111,-0.84704,-2.4658,-0.28827,-0.046682,0.90059,-0.63444,0.22146,-0.84546,-0.86485,0.64885 -1.17,0.56245,-2.2061,-0.36394,-1.6615,0.31293,1.1233,0.15866,-0.12052,1.8469,-0.80053,-1.0675,0.44508,0.96349,0.48602 -0.97019,-0.42562,-0.28944,1.0423,-1.1075,-0.36401,1.7644,-1.942,0.16356,2.0952,0.019307,-0.22532,0.8344,0.38,-0.14591 0.93922,-3.781,-1.3242,1.7949,-0.12317,-0.68077,-1.0301,-0.96764,-1.5921,-0.093588,-1.2697,1.4253,0.38037,-2.1364,0.079021 1.1936,0.60267,-1.8927,1.136,1.1626,-1.1906,-0.81017,1.1721,1.7308,-1.2676,0.82811,-1.1576,0.15934,0.96682,-0.93604 2.0123,1.3977,0.34317,0.22218,-2.2292,-2.6441,0.64157,0.19127,0.51702,-0.98149,-1.7914,-0.1211,-0.82168,1.0109,-0.46852 2.708,-0.28031,0.068706,2.3006,-0.78751,-0.71892,-0.10117,-2.0029,-0.73999,-2.3054,-0.95989,-1.0434,-0.14228,-0.78114,0.29658 -1.8504,1.0925,0.53196,1.2162,-1.8282,-0.87129,0.18111,0.65261,0.059511,-0.567,1.8021,1.317,-0.27913,0.060874,-0.3018 2.0244,-0.64853,1.405,1.5807,-2.7988,-0.66832,-0.0029364,-0.1678,0.84619,-1.3059,-1.3176,-0.38584,-1.945,-0.86255,0.379 0.56622,0.35157,-1.2656,1.8704,0.45528,0.018775,-1.9326,0.42896,0.0019891,-0.24699,2.2703,-0.43055,-1.4061,0.79382,-1.0702 5.0882,-3.3521,-2.4451,-0.098139,-0.11607,2.6382,0.48859,0.9822,-1.0718,-1.139,-0.20677,-1.117,-0.016952,-0.57034,-0.28532 0.072717,2.5615,-1.3142,1.753,1.0968,-1.1416,-0.94449,2.0011,0.96349,-0.51988,-1.2013,-1.3619,-1.0379,0.3317,-1.0121 3.4935,-3.5139,-2.0963,0.39384,-0.89395,0.70294,2.1004,1.5281,0.40863,-0.25568,-0.38835,1.2123,-0.078292,0.76444,0.64421 -0.93314,1.1873,-1.566,2.6791,1.7091,0.75209,0.84053,2.5178,-1.355,-0.52173,-1.2214,-0.62287,-0.72205,0.15981,0.4745 -3.308,-1.0536,0.34699,-0.060098,-1.5062,-1.0136,0.18739,0.4704,0.70434,-1.0547,1.9331,-0.28966,-0.77894,-0.59958,-0.85813 0.66165,-0.22847,0.92948,2.7334,-1.3378,-1.4681,2.2593,-1.8732,-0.7072,-0.31136,-1.4978,-0.55299,-0.14024,-0.50925,0.64358 1.7995,-2.5754,-2.0946,0.24879,-2.0513,-0.0039876,0.54744,2.2606,1.5631,0.71389,-0.28477,2.1024,0.56099,0.70347,-0.87559 -2.8746,-0.23043,-0.28631,0.42524,-0.76378,-1.1997,1.2101,0.83828,1.0089,-0.41262,1.5189,-0.12731,-0.86219,0.40502,-0.89267 0.14828,2.9575,-0.88887,0.27547,-0.47722,0.52056,-1.7375,1.245,-1.5569,0.41173,0.11897,-0.33693,0.0062386,0.91715,-1.2293 -1.1657,0.15031,0.33597,3.0746,-0.62824,-1.0323,0.81922,-0.27994,-0.12075,-0.26989,1.2143,0.3937,-0.32503,0.25138,0.61086 -1.3516,-0.03207,1.1502,2.3291,-0.67975,-1.7305,1.27,0.016862,-0.056952,0.8736,1.2145,0.56181,-0.13349,0.73728,-0.080491 3.0788,-1.1773,0.68153,0.46006,0.11097,0.81404,-3.1932,2.0197,0.12667,1.6761,0.94666,0.34912,2.0502,0.33235,-1.4443 1.8946,-1.2786,2.1293,-0.014512,-3.4422,0.81453,0.27939,1.4759,0.89939,-0.030968,-1.2866,-0.71881,-2.4163,-0.31735,0.75896 1.0474,-2.3831,1.8621,2.6302,-1.708,0.9643,-0.77486,0.95351,0.0014125,0.7416,0.094658,-0.57226,0.40717,-0.74352,0.30048 -1.5478,-2.3221,-0.059101,0.20806,1.0484,-0.88747,-2.2393,-2.1982,-1.483,1.0473,-0.10538,1.4707,-1.0062,-0.7331,0.17196 -2.5203,1.8751,-1.9715,0.57289,-0.65196,1.3702,2.4238,0.35155,-0.3161,0.2869,-0.29286,0.36944,0.26128,-0.32418,-0.3151 -1.2453,-3.0011,-0.64651,1.5678,0.36488,-1.8572,-0.71763,-1.6977,-1.1615,0.582,0.12258,0.9523,0.33078,-1.2492,-0.77989 -0.4399,2.7684,-2.0284,-0.34456,0.99625,-0.045598,-1.7652,1.7702,0.86253,0.13085,0.94725,-1.0584,0.21814,0.19681,-1.2184 -0.68211,-2.015,0.25391,1.6487,-0.18296,-1.0837,1.5368,-1.3002,-2.3861,-1.0392,0.057215,0.56881,1.9731,-1.8109,-0.57627 3.0477,-1.0972,0.90033,2.354,-0.73904,0.46386,-1.952,-0.96594,-0.19219,-0.73787,0.28598,-0.01182,0.78207,-0.66251,-0.59 2.4112,-0.19094,0.49145,-1.4429,3.8339,-2.3552,-0.44873,2.2488,0.64524,0.0021086,1.617,0.42905,1.5001,0.69822,-1.0904 -1.7981,2.2401,-0.099542,-0.80693,-1.6077,-0.56914,2.2707,0.46647,-1.0094,1.0091,-2.2347,-0.75666,0.49467,0.38456,0.98606 -1.6462,-3.1349,-0.45507,1.6485,0.11761,-0.35323,-1.7587,-1.6003,-1.485,-0.70772,0.79922,-0.10115,-0.60797,-0.98241,0.14259 -0.9341,-1.6622,-1.1146,1.0471,1.319,0.73007,-0.9015,-1.8482,-1.0028,0.80928,-0.30269,1.248,0.58259,-1.3036,-0.040959 -1.9204,-0.18519,-3.715,1.0366,0.054494,-0.6768,1.016,0.20618,-0.25538,0.92443,-1.2336,-0.60406,-0.30127,0.98936,-0.61928 0.50448,2.9325,-0.67958,1.2111,-0.36058,-1.1894,-1.3224,0.14336,-0.10616,1.4041,-0.60224,-0.66742,-0.11514,1.0079,-0.10075 -0.59984,2.1636,-1.9654,1.4329,-0.80388,0.31732,-0.60592,0.40154,-0.58982,0.49621,-0.22394,0.28317,0.61056,1.2165,-0.84424 0.14033,0.66457,2.0214,1.9108,-1.1548,-2.1502,1.1719,-1.3331,-0.62813,0.10958,-0.1076,0.44645,-0.070567,0.36927,1.0921 3.1523,0.25491,-0.42976,-0.89648,-2.4594,-0.22602,-1.9217,-0.012223,0.84708,-0.98057,0.00099462,-1.3097,-1.0882,0.61255,0.21612 2.5353,-2.0915,1.5436,1.7105,-1.3168,2.9065,0.77929,-0.26655,-1.8686,0.059271,-0.65219,-0.56744,0.0074378,-0.9646,0.79953 1.6329,-1.9691,0.50053,0.94613,-1.6368,2.8766,0.90376,-0.0031443,0.2005,1.85,-1.2408,-1.6084,-0.076984,0.01505,-0.44 0.44075,1.1529,0.31399,1.4421,1.0271,-1.0114,-1.399,-1.7379,-1.657,-0.46546,1.2348,-0.62296,-0.85033,1.307,0.27841 3.299,0.3586,-1.3196,-1.5362,-1.8918,-1.5851,-0.39005,-1.2309,1.3993,-1.3095,0.36766,-0.76709,0.18801,-0.65586,-0.41903 2.8628,-1.349,0.32049,0.77757,-2.6026,1.4317,0.65087,2.1412,0.17783,0.30201,-0.64025,-0.43142,-1.9336,0.93203,-0.70903 4.3022,-1.1926,1.0391,1.3045,-0.74085,2.4669,-1.5115,-0.08552,-1.2517,0.58874,-1.0122,-1.0591,-0.035107,0.28623,0.23768 -1.2419,-1.5258,-0.68521,-1.2944,-1.8854,-0.97654,-0.53509,-2.0458,-1.146,0.66888,0.02707,0.78026,0.37708,-0.34759,-0.30259 -1.4212,1.5679,-1.2254,1.8466,-0.83554,-0.2219,0.8021,0.91039,-0.12743,2.1021,-1.1348,-0.31556,0.29224,0.30249,1.1695 -2.4971,-0.96445,-0.090184,0.79224,-0.62581,-0.93925,0.52204,-0.089113,0.69784,0.66099,1.8659,0.039492,-0.43569,-0.25448,-0.88275 -0.81729,0.78814,-0.15345,0.84457,-0.64905,-0.42356,0.48685,2.1082,0.55427,-2.7675,0.024032,0.28638,0.45379,0.72796,-0.055458 2.6554,-0.29659,-0.92319,-0.20438,-0.5293,-2.9121,0.23686,-0.86988,0.57554,-0.74059,1.8785,-0.2308,0.55696,0.83035,1.1568 1.0442,0.26934,-0.08761,1.1725,0.16398,-1.4084,-0.84161,2.1316,0.42185,-3.0975,-0.43557,-0.12301,-0.40553,0.49406,-0.4045 2.7633,0.42075,-2.8706,0.80554,-0.047632,0.19931,1.7637,-1.0343,-0.21329,-0.23296,-0.9991,-1.6254,0.92981,-0.35432,0.38148 -1.7208,0.9724,0.13145,0.72117,-0.1767,-1.1305,1.5326,2.1068,-0.57445,-1.3693,-0.020931,0.69481,1.6362,0.53408,0.07885 1.2558,-0.83383,1.1821,1.9376,1.1934,0.4046,0.074736,1.4442,1.5484,-1.7993,-0.37102,0.67012,1.3781,0.83622,0.080623 2.654,0.65832,-1.1708,-2.6769,0.084384,-2.5236,1.1202,0.67688,-0.40517,0.25315,1.7344,-0.061361,0.33599,0.11705,2.2794 -1.2085,0.37024,-0.40324,0.90164,-1.2723,-0.20645,0.65783,1.6651,1.6032,-1.4564,0.38644,-0.33777,-0.06191,0.16775,0.36692 2.289,-1.649,-1.1353,1.6556,0.73069,-0.14696,-1.6149,3.0529,0.31138,-1.054,-0.35435,-1.0183,0.65857,1.0088,-0.55058 -0.04117,3.2802,-1.5112,-0.048052,-2.1168,0.24681,-1.1393,0.68877,-2.0212,-0.1517,-0.41934,-1.2221,0.62014,0.10421,-0.023207 -1.5015,1.3111,-0.7508,0.74435,-1.127,0.46437,0.64169,1.8008,0.47541,-1.4775,-0.20043,0.001287,0.69554,-0.60232,0.843 2.9221,-0.061031,0.13166,-1.37,-2.9539,1.1442,-1.6452,1.8802,0.071262,-1.1542,-1.3755,-0.038551,0.027199,0.088999,-0.19817 4.1714,-2.3193,-1.0413,-1.6524,-1.6775,0.70288,0.7347,1.1706,-0.029411,2.7206,0.37493,1.5281,0.39364,0.13649,0.80232 -0.4365,-0.83748,0.15688,2.6203,0.2572,-0.47255,1.9975,1.1465,0.8229,-1.6625,0.023889,-0.28715,0.20573,-0.57553,0.40654 -1.6324,0.65298,1.0848,1.9499,-0.0023392,-0.22009,0.22422,-0.13802,-1.348,-0.44937,1.7671,0.33181,-1.6748,-0.34527,0.41206 -2.5026,0.016805,-2.4075,-0.58595,0.089044,-1.1049,0.58364,1.1591,0.45647,0.54307,-0.10029,-0.62075,0.49527,0.2873,-0.31759 0.15644,3.5951,-1.0423,-0.22258,-1.7419,0.31958,0.32598,-0.11269,-1.7341,-0.91946,-1.9771,-0.67129,0.23973,-0.0071183,0.4045 0.73681,1.0183,-0.45396,2.0302,1.7436,-1.6619,-1.0359,0.12016,0.82098,-1.0279,1.3911,-0.23518,-0.53799,1.1647,-1.4697 -2.9027,0.26397,-2.8107,-0.15954,-0.90581,1.08,0.37632,0.1027,0.29669,-0.44178,1.1116,-0.11181,-0.29022,-0.37561,-1.3702 -0.92527,0.48633,1.1967,1.4231,1.8005,0.27858,2.5992,1.0555,-0.10128,1.8267,-0.52394,0.92283,1.3889,-0.24616,-0.46971 -0.2075,0.11315,0.53013,1.4322,1.2711,0.95164,1.965,-0.21213,-0.90319,-2.315,-1.205,1.1265,1.8856,-0.38767,0.13603 -1.8755,0.68071,0.86685,0.53869,0.29084,-1.0932,2.0778,1.9649,0.87784,-0.17358,0.10061,0.094034,1.0887,-0.12443,0.0087025 -0.40019,0.42853,2.0244,2.0978,-1.1831,0.087911,1.1384,-2.2235,-0.20104,0.20571,0.57699,0.37826,-0.56537,-0.23292,1.2418 2.6932,1.7894,0.12023,-1.7751,-2.1285,-1.5711,-1.9929,-0.54259,-0.11514,-1.1985,0.28061,-1.092,-0.22473,-0.21518,0.28463 -0.28086,2.1815,0.19846,-0.65187,-1.3694,0.48134,-0.91465,1.89,-1.3649,0.90536,-1.0658,-0.24661,-0.6243,0.8637,1.041 -0.29376,-4.3729,0.32802,1.1567,0.95726,0.68595,-0.64086,2.3595,0.35355,1.7735,-0.27683,-1.4576,0.49437,-0.063716,-0.57371 4.3236,-5.5901,-1.0631,0.76468,-0.28496,0.4232,2.0906,2.6933,-1.3069,-0.72619,-0.64728,1.6486,0.051844,0.931,-1.0668 -0.92846,0.88423,-0.9496,1.5207,-0.70256,-0.13182,1.4395,0.15104,0.29235,1.777,-1.5074,-0.33874,0.17474,-0.50902,1.2197 -1.294,-2.7816,2.0279,-1.0164,-1.9653,0.1209,-0.7814,1.1606,-0.58428,1.4029,1.1624,-0.092807,0.70935,-0.65402,-1.1987 0.28168,-3.6821,0.9128,-1.8915,-1.929,0.70409,-1.4122,-0.32473,-0.60906,2.2458,-1.4858,-0.094811,-0.36622,-0.10715,-0.28062 -3.2061,-0.051712,-0.71477,-0.85336,-0.41762,-1.706,0.28986,0.026383,0.28206,0.8012,0.38371,-0.29793,0.82073,0.43175,-0.51811 -2.1341,-1.2696,-1.6506,-0.50959,-0.31649,-0.36391,-2.7541,-1.2771,-1.0399,-0.3552,0.50946,2.7163,-0.44411,-0.73616,0.77765 0.32165,-0.57956,0.36909,1.8629,-2.3231,0.061275,0.6972,-1.638,-0.62111,-0.1481,0.3581,-0.43115,-1.003,-0.588,1.3536 0.31102,-3.2541,0.16253,-2.1889,-1.8874,1.0051,-1.9044,-0.38683,-0.75117,1.6214,-1.6001,-0.18267,-1.1734,0.21196,0.16195 -2.7308,-2.9904,0.9393,-1.8024,1.201,0.74329,-2.7012,0.70087,-0.06434,1.7485,-0.39705,-0.227,-0.65374,0.62025,0.38304 2.8035,-1.2901,-1.2252,-2.502,-1.1169,1.0482,0.28169,1.7665,-2.8785,0.85714,1.7653,0.82241,1.9787,-0.6889,1.5486 -2.3546,-1.1177,-3.0152,-0.017263,-0.52958,-2.0502,-1.4305,0.0068196,-1.2641,-0.63988,0.079901,1.6115,-0.36684,0.41059,0.21758 -1.8401,-1.8043,0.093696,-1.4922,-0.76823,1.0087,-1.2904,1.3878,0.12357,0.94748,0.063832,-0.78755,1.0871,0.8148,-0.23977 -2.5219,-2.4935,-1.9362,-0.84478,-0.84572,-0.16754,-2.2222,0.93995,0.24938,0.11159,-0.87319,-1.1633,-1.215,-0.61666,0.5196 -1.6546,-3.0699,-2.1461,1.0409,0.24677,-2.0687,-1.7777,0.10575,-0.2824,-0.41746,-0.69887,-0.19623,-2.0911,-1.0756,0.35062 2.8005,-0.38098,2.547,-0.18027,-2.1576,-1.1128,-0.69964,-0.40083,-0.88789,-0.30796,-1.5427,0.35904,-1.606,-1.1343,-0.67647 2.0417,0.11821,1.3659,0.91113,-1.319,0.037808,-1.6166,-0.62781,-0.48227,-0.18244,0.026808,0.31902,0.71169,-1.3158,-0.70181 -2.7732,0.79354,0.30221,0.048757,-0.48524,-0.8729,1.5715,-0.91893,-1.5133,1.4714,1.3261,0.014814,0.051057,0.98911,-0.63227 -2.613,-1.2555,-0.86648,-0.65762,0.38444,-0.85122,-1.8726,-2.2943,-1.4921,-0.1849,0.57398,1.9172,-0.87894,0.386,-0.24438 2.3371,1.5684,-0.91247,1.1,-0.87606,-1.9686,0.051956,-0.52354,1.5175,-0.4101,-2.0616,-0.63987,-0.39931,0.1994,-1.1732 -1.3943,-0.84892,-0.10211,-0.12189,-1.9386,-2.0259,1.2583,-1.8106,-0.87319,1.4352,0.37103,-0.50005,-0.57258,0.74676,0.42847 -1.5632,1.7546,-1.402,1.2699,-1.2356,0.58254,0.50528,1.2763,0.097391,1.5921,-1.0049,0.056944,-0.25507,0.4362,0.74257 6.0668,-1.8061,0.27379,0.27629,-0.72778,0.58559,-0.4504,1.669,-0.38082,-0.3489,-1.0028,-0.56321,-1.2517,0.54986,-1.3009 1.0166,0.24314,2.2179,-0.65413,-2.47,-0.35439,1.162,0.24232,0.64363,0.05352,-0.63772,0.23987,-0.57305,0.15939,0.66477 4.0694,-0.42656,2.2329,-0.55105,0.26517,-2.6143,0.19129,0.17712,-2.0612,0.19375,0.6647,0.95472,0.73398,0.4011,-1.1686 2.009,-0.5613,1.1266,0.69951,-2.7699,-2.0713,1.5359,0.99577,0.3644,-1.0078,-1.1337,0.69095,-1.533,-0.25901,-0.87425 2.2272,0.67493,-0.96363,-0.96532,-2.5083,-0.71792,-1.4398,-0.26354,1.1933,-2.0295,-0.005864,-0.84683,-0.024013,0.54124,-0.29879 -2.5207,0.084969,-0.50676,-0.11818,-1.6492,-0.88493,0.53486,-1.5462,-0.20833,1.5064,1.4274,0.81597,-0.098731,0.11813,-0.79131 -2.6544,0.025076,-2.0088,-0.63909,-1.3455,0.50411,-0.027091,-1.2344,-1.0451,0.39737,1.3142,0.68884,0.19758,-0.093783,-0.95835 3.802,-1.6781,-1.9476,-0.61703,-1.4886,0.64329,-1.1844,1.6246,1.7811,-0.3819,0.43779,-0.57141,-0.52226,-0.056986,-1.5 -0.18732,-1.6856,2.9643,1.4473,-1.6549,-1.2465,1.021,-0.054139,-0.72583,0.44468,1.4836,0.61836,-0.21482,0.079206,-0.31783 -1.3419,1.3302,-0.6992,-0.74248,-2.3691,0.038918,1.246,-0.2417,-0.58295,1.3438,-0.58039,-0.20149,0.72948,0.30983,1.4064 -2.4437,2.2765,-0.45989,0.78693,1.6569,-0.064559,0.11546,3.045,-1.29,-0.12195,-1.215,-1.3506,-0.5162,0.30594,-0.33414 -2.2367,-0.49051,-3.3411,0.48934,-0.18212,-0.29061,0.0066993,-0.23035,1.0017,0.14043,-0.19803,0.19442,-1.2528,0.021903,-1.0968 -0.36862,1.5936,0.45527,0.88554,-2.7103,-0.923,-0.40632,-0.78201,-0.56671,-0.081809,0.22898,0.8242,-0.24129,0.72872,0.67776 -1.7124,-1.8598,0.017803,2.783,-0.30961,-0.068337,0.59029,-0.47218,-0.16138,-1.5535,1.6557,-0.25376,-1.5365,-0.61411,-0.24576 1.7824,-1.6792,0.98343,2.3607,-0.83912,1.4765,-1.3353,0.9748,0.35389,-0.31583,-0.35993,0.64204,1.1689,-1.0656,-0.21482 -0.047771,0.21655,-0.14176,0.97856,-1.981,-1.7658,2.7873,-0.59573,0.17981,1.0201,-1.5758,-0.37472,-0.53975,0.23248,0.28522 -1.8935,-1.198,-2.5373,0.97667,-0.85748,-0.8394,0.095262,-0.36803,0.52443,-0.050322,0.090907,-0.50237,0.13095,-0.39131,-0.93716 -1.3567,-2.9816,-0.67544,1.4724,0.67427,1.1418,-0.8106,-0.22809,-0.11131,0.93898,1.5513,-0.45299,-1.5618,0.2572,-0.51954 -0.87504,0.68223,1.4381,0.98353,-2.0289,-0.054124,-0.69604,0.4463,0.5492,-0.23495,1.8354,1.3204,-0.57893,0.64918,0.52339 2.6917,2.3922,-0.40604,-2.1461,0.44696,-1.9209,-0.92051,0.83926,-0.1154,0.87169,-0.21171,-1.7267,0.30065,0.60147,0.34805 -0.79722,-3.7145,2.1254,1.9534,0.66668,1.8549,-0.68329,0.11066,-0.92806,0.52134,0.60904,-1.2375,-0.010433,-1.7006,0.85579 2.8433,1.4788,-1.9447,-1.4464,-0.82429,-2.0236,1.0099,-0.56898,-0.01141,0.69978,0.27427,-1.4748,-0.2057,1.3116,1.1195 2.8741,0.61585,-0.27205,-2.0512,-1.0221,-2.1292,-1.0762,-1.1682,0.29377,0.46769,1.3403,-0.41473,0.87318,0.15121,0.30085 1.3865,2.2379,1.3801,-0.025911,-1.0586,-2.3204,-0.67736,-0.42445,-0.58847,-0.1184,-0.42958,-0.090482,0.13138,1.8253,1.0287 -2.0542,-1.6494,-0.10142,2.3602,0.61047,0.032689,0.80766,-0.24098,-0.11446,-0.44916,1.3385,0.30919,-0.89906,-1.8574,-0.57173 -1.4003,-0.52411,-1.1973,2.392,0.89491,1.3992,0.90562,-0.15676,0.15433,-0.13095,0.95813,-0.7831,-0.050112,-1.0881,-0.13339 3.024,0.15968,-1.2617,-1.8585,-0.47531,-2.7524,0.46898,0.4773,1.3114,-0.89045,0.24277,-0.093568,1.0268,0.59168,-0.83877 2.3546,0.48172,-0.41715,-0.43736,-0.24719,-3.0542,-0.58277,-1.218,0.52379,-0.19476,1.0021,-1.1561,0.28686,1.3818,1.0623 4.0196,-1.0392,0.89567,0.74444,-1.0469,-1.2361,0.46192,-0.93182,0.61108,-2.5879,-1.4992,-1.2248,-0.91272,0.13523,-0.55771 0.41201,3.4061,-1.3618,-0.57437,-0.39758,-0.91229,-1.7069,0.4889,-0.29617,0.87777,-0.088566,-0.90087,0.6943,0.84947,-0.34699 3.8532,-0.14093,-0.28866,-1.0439,0.36457,-2.8591,0.49358,-1.1299,0.36928,0.39508,0.29649,-0.63835,0.99621,0.29062,0.36814 -2.5238,1.2666,0.28141,-0.62857,-2.3696,-1.3489,1.849,-1.0548,-1.6933,0.18565,0.50121,-0.42325,1.0673,0.20605,0.74672 -1.0483,2.3352,-2.6103,0.48341,-1.3994,1.9833,-0.20911,1.2951,-0.72683,-0.32092,-1.2082,-0.31055,0.56117,-0.37761,0.31133 2.2667,2.2094,0.21521,-0.02492,-0.33203,-2.6966,-0.43846,-0.14371,0.51927,0.36925,-1.3074,-1.3578,0.92983,0.69062,-0.095562 2.9257,-2.4269,-1.5626,-1.9988,-1.7185,-1.529,1.8375,1.6631,1.7379,-0.80745,0.7508,2.3958,0.34775,0.87028,0.27196 3.0553,-1.0671,-1.1683,-0.22008,-0.29993,-2.5829,0.70572,-0.28344,1.7893,-0.6365,0.47356,-0.31346,-0.20688,0.74253,-0.30786 -3.6397,-0.19464,-3.165,-0.97655,-0.3429,-1.0155,0.68813,-0.55015,-0.93041,-1.2962,-0.053083,-0.1878,0.24987,0.48926,-1.0949 -1.3647,-2.261,2.8965,0.19473,-1.8653,-1.106,0.11266,-0.37602,-0.12141,0.61023,1.534,-0.089105,0.014194,-0.96981,-0.78519 -2.7537,-0.89303,0.85294,-0.1019,-1.2425,-2.0913,0.64252,-0.83331,0.0090529,0.62905,1.8135,0.0058207,0.21355,0.54271,-0.9464 1.2771,0.27708,2.9588,-1.2318,-0.57065,-1.5965,1.5409,-0.69684,-1.3517,0.37136,-1.996,-0.52384,-1.7371,-0.085805,0.49238 2.9321,1.0855,1.8672,0.57552,-1.3871,-2.6186,-0.2664,-1.263,-0.22642,-0.93577,-1.2959,-0.38527,-0.99646,0.17826,0.44276 0.605,2.1096,1.5597,-1.3466,-2.7888,-1.3367,1.0768,0.16005,-1.291,-2.5199,-1.1254,-0.16944,-0.70947,0.0963,0.86332 -1.8143,2.6133,-1.1251,0.41271,-0.82986,1.6766,0.99085,1.7986,-1.6656,-0.13824,-1.4431,-0.3626,-0.48991,-0.30758,0.6996 0.58343,1.915,-1.512,1.199,1.534,-1.7448,-0.85144,2.5629,0.70953,0.25675,-1.1551,-1.7691,-0.1429,0.57225,-1.1495 0.37833,1.9438,2.0346,-0.36493,-3.0518,-0.42475,-0.88534,-0.7508,-1.0839,-1.2573,0.50669,0.66097,-0.41794,0.28744,0.88426 -3.3257,1.4472,0.357,-0.14777,-0.94627,-0.99667,1.4696,0.26957,-0.56378,0.6444,0.90176,0.64619,-0.069469,0.43401,0.35793 -0.92804,0.20782,2.3773,0.74594,-1.4676,-0.43142,-0.87466,1.0919,0.27344,-0.37226,2.6485,0.48836,-0.6479,0.013447,-0.37265 1.8407,2.2271,-1.2345,-0.3812,-0.56339,-1.8853,-0.12877,-0.2394,1.2818,0.72419,-1.2915,-1.0547,0.87504,-0.097318,-0.1161 2.9884,0.033739,1.2537,1.325,-0.43116,-1.4579,-2.2685,-1.6187,-0.47736,-0.7534,1.8501,-0.44941,-0.72874,0.96522,0.45916 2.5368,-1.0742,-1.4667,0.50368,1.3424,0.99589,1.3504,-0.14821,1.2378,1.059,1.1297,1.4651,1.1361,-0.90661,0.10659 3.6363,0.36184,0.71229,-1.0796,-2.7072,0.89409,-1.2635,0.43667,0.058368,-1.2675,-0.66398,0.15766,-0.052064,0.66978,-0.11933 -1.4901,0.30233,-0.96715,2.473,-0.22295,0.97707,0.56149,0.57121,-0.052933,-1.2655,0.58439,0.59494,-2.4804,-0.58648,0.005015 3.1875,-0.45372,2.4069,-0.53975,-2.4835,-0.90621,-2.0525,1.4043,-0.054629,-0.27567,-0.97975,-0.0081369,-1.0666,-0.25666,0.42202 -2.052,-0.58089,0.29545,0.076276,-1.022,-2.2041,1.145,1.2933,1.0437,-0.76497,0.45642,-1.3271,0.14599,-0.35901,-0.10907 -1.6668,2.5393,0.90707,0.41772,-2.1687,-0.74549,0.21949,-0.14118,-1.0738,-0.57091,0.62191,1.5007,0.65759,0.39911,0.86972 4.6682,-1.919,-2.2906,-0.094143,-0.38977,0.35047,1.4192,-0.25501,1.0232,-1.3337,0.63139,-0.60656,-0.14491,0.70542,-0.38276 -3.5446,-1.3784,0.52382,-1.4437,-0.95678,0.42522,-1.1914,-0.58444,-0.98363,-0.061812,2.0681,-0.091402,-0.71037,-0.55268,-0.88124 1.5737,-1.3756,1.5804,1.8728,-2.0746,-0.39235,0.038291,0.04489,0.19837,-0.60426,0.19584,0.87046,1.271,-0.81948,-0.70149 -2.8465,1.0195,0.051264,-0.1611,-1.2663,0.32872,0.49038,1.6404,0.5159,-1.673,1.6334,-0.10571,-1.3352,-0.73206,-0.47389 -0.22258,0.80417,-2.8797,1.2619,-0.21664,1.5979,-0.89199,0.37121,0.32744,-0.58117,0.38029,-1.1948,-0.54513,0.11914,-0.87819 -1.8176,0.55315,2.4365,-0.48379,-1.7042,0.28413,-0.29115,-0.34886,-1.0276,-0.27312,2.1307,0.45995,-0.48805,-0.31238,0.16903 -3.1357,-2.5141,0.58611,-0.17463,0.61029,-1.6705,-0.56757,-0.14585,-0.5645,0.37192,1.7,0.023797,-1.5416,-0.77126,-1.4932 -2.4372,2.0707,0.39203,-0.30639,-1.5948,0.32744,1.8731,-1.3353,-2.9385,-0.12286,0.42159,-0.24333,-0.14091,0.3617,0.046022 0.63872,-0.2834,3.0364,1.3859,-1.2669,-0.75615,0.45161,-1.3863,-0.18554,0.73937,1.6379,0.071577,-0.76778,0.1785,0.52283 1.5436,-0.96028,3.1093,-1.0603,-3.2182,-0.7707,-0.019997,0.059107,-1.0101,-1.0595,-0.26055,-0.095854,-0.75685,-0.4103,0.87555 0.63148,-1.0427,-2.0976,1.1228,2.3992,-0.71121,-0.091294,-0.083887,0.026338,-3.7783,0.90096,-1.5066,0.6386,0.36345,0.96114 -3.4694,-0.041842,1.1017,-0.76957,-1.1325,0.80439,-0.073943,-0.4394,-1.1583,-1.2091,2.4193,0.22075,-0.35709,-0.56581,-0.9033 -0.55071,-0.092999,-1.4554,2.5525,-1.758,-0.12345,1.1987,0.20347,0.38324,-1.3672,0.24654,-0.73389,-0.47234,-0.54976,0.0075562 -1.1196,-2.7647,-1.0526,1.2751,0.47447,1.6829,-1.5207,-1.238,0.67217,0.58352,-0.16184,-0.17825,0.04166,-0.75423,0.45961 -0.62203,-2.6525,-2.1468,0.96685,0.50715,0.30285,-2.2982,2.0707,0.27252,0.42357,-0.92268,-0.53146,-2.2432,-0.14425,1.5178 -0.52131,-3.0039,-2.4263,1.5119,-0.44992,-0.14082,-1.7388,0.93258,0.59195,0.078805,-0.37091,-0.4593,-1.5601,-0.48032,0.19008 -1.6683,3.1158,-1.0352,0.18916,0.45015,0.2617,1.0422,0.44971,-2.15,-0.47888,-1.3513,-0.31864,-0.21866,0.55184,-0.56802 -0.37278,-2.8648,-1.7883,0.80742,0.47909,-0.4803,-2.297,2.3781,0.48077,0.67559,-0.56879,0.30001,-1.2956,-0.22713,1.5755 -0.8226,-2.359,-1.518,1.9864,0.656,-1.0915,-1.9615,-0.12042,0.53598,0.16584,0.31868,1.217,-1.212,-1.1436,0.54262 -1.4395,-0.70407,-2.7983,0.83061,-0.89484,-2.1485,-1.1785,0.2746,0.050639,-0.22923,-0.15907,1.4593,-0.2971,-1.0262,0.67142 -1.1342,-2.3112,-2.765,0.95214,-1.1428,-0.10903,-1.4084,0.25535,0.26867,0.27614,-0.6953,-0.71323,-1.8575,-0.5049,-0.14644 4.5867,-1.2879,0.47966,-0.96415,-0.45378,1.4095,-1.6922,0.40129,0.58435,1.134,-0.25781,0.31612,-0.37857,-0.088139,-2.1543 -0.74908,-1.559,-2.7338,0.28759,-0.70069,0.012029,-1.4308,1.29,0.25924,0.40654,-1.324,0.060931,-1.3592,-0.72511,0.5211 -0.035604,2.2188,0.018336,1.0848,1.4043,-2.0524,-1.1491,2.4164,0.70339,-0.10716,-1.3611,-0.69537,0.33267,-0.41695,-0.85551 -0.48511,-1.8021,-1.2178,0.41624,0.40428,-2.0743,-1.4951,0.46202,0.62205,0.32509,-0.079744,2.0114,0.41818,-1.1275,0.71449 -2.2168,1.4315,-1.6225,1.0777,-0.55245,-0.26697,1.1945,2.8223,0.71271,0.95384,-0.82175,-0.29537,-0.711,-0.30244,0.76957 1.8723,-1.9582,-3.9383,1.1535,-1.2204,3.1176,1.5618,1.7063,-1.2241,-0.49644,-0.89021,0.56006,1.0533,0.3921,-0.49518 -0.72123,-2.0306,-2.3532,0.96492,-1.3184,-0.77856,-2.2165,1.0036,0.81959,-0.020829,0.011372,0.86193,-1.0284,-0.98498,0.74989 -0.59739,-0.2305,-0.39597,2.4238,0.16106,1.4869,-0.21864,0.5132,-0.11289,-2.0989,1.4423,-0.25757,-0.34445,-0.5809,0.46681 -0.72207,1.4007,1.0237,2.1674,-0.012273,-1.3597,-1.0775,0.27216,0.76619,-0.98278,1.0745,2.0331,-1.3401,0.46711,-0.9517 -1.8453,-0.0342,2.6703,-0.32448,-1.5715,-1.8386,1.1056,-1.7348,-0.61322,0.33545,0.48722,0.14519,0.074552,0.14899,-0.045076 -0.32975,-2.3459,-2.3046,2.1893,-0.22371,-1.0852,-1.4518,0.76043,-0.21721,-0.519,0.15013,0.20668,-1.854,-1.2922,0.60164 3.4564,0.57056,-1.9827,-1.8741,0.041319,-2.6231,2.2021,0.29735,1.6961,0.54865,-0.15542,-0.25729,-0.36984,0.49497,0.83267 -0.85931,-2.2159,-2.6998,1.0149,-0.75872,-0.65637,-2.3433,1.093,0.018066,0.027886,-0.51633,-0.015096,-2.3474,-0.5687,1.2361 2.6387,-0.20356,-0.89415,-2.0528,-1.0952,-1.3655,-0.9742,-0.10343,-1.0834,-1.3365,2.0065,-0.78189,1.9067,-0.52339,0.75309 3.849,-1.1326,0.15191,-0.69197,-1.9693,0.092534,-1.5892,2.7132,-0.26119,1.2532,-1.1716,-0.35612,1.6459,0.79778,-0.71432 0.41505,-0.56846,1.4444,0.22533,-1.3608,1.7634,-1.1842,2.5402,-2.4635,-0.4503,1.4503,-0.74914,1.4453,-0.51159,0.15856 2.7204,1.1849,-1.9049,0.61099,0.63847,-1.2506,0.33506,-1.1939,0.75376,0.98432,-0.20355,-1.8638,-0.12082,0.32349,1.27 1.4863,-0.5507,0.57666,3.064,-1.2701,-1.1804,-0.61969,-1.0707,-0.068969,-0.83935,0.45103,0.023458,0.3527,-0.033423,0.18774 -2.6195,-0.34295,0.54736,-0.090314,-1.8477,-0.27041,0.046128,1.2322,0.11772,-1.4788,1.7991,-0.25615,-1.0739,-1.057,-1.0735 1.1431,0.42871,3.1159,-1.5939,-2.9454,-0.19916,-0.19318,0.41517,-1.6227,-0.27847,0.49362,-0.42705,-0.68381,0.18982,0.96843 1.4027,-1.7118,2.8555,2.3277,0.037776,1.2703,-1.8938,1.0708,-0.54198,0.9992,1.2347,0.21805,-0.68544,0.20795,0.71088 3.6278,-1.0588,1.7231,1.5923,-1.2732,1.2579,-0.83699,2.0857,-1.2449,2.1328,-0.55149,0.48863,1.3883,1.0209,-0.50158 3.1451,-0.99648,-1.5868,1.2116,-0.61574,0.024023,0.22755,-0.70413,0.88413,-2.4078,0.016921,-0.98765,-0.50941,-1.054,-0.7409 1.369,0.30224,0.14529,2.0249,-2.5863,-0.26677,-0.73707,-0.70671,0.75323,-0.88214,-0.95209,-0.2628,-1.2725,-0.23848,1.0978 0.48531,-1.3735,1.9945,-1.1284,-3.0752,1.8363,0.18689,1.1984,-1.7996,-1.6194,0.072119,-1.7654,0.4199,-1.0041,0.22842 1.7135,2.04,1.0626,1.8507,-0.11324,-2.2012,-0.20352,-0.38682,-0.34307,0.012677,-0.91345,-0.76563,0.66988,1.7592,0.70686 3.0738,0.058867,-0.30814,0.3955,-0.32135,-2.1964,0.3738,-1.3875,0.60566,-1.7527,-0.16133,-1.4355,-0.81091,0.26044,0.49972 -1.762,-2.6488,0.026266,-2.7122,-1.4836,0.47141,-1.7906,-1.473,-2.5313,0.76741,-0.34884,-0.17232,-0.06827,-1.1779,-0.18597 -1.9276,-2.1759,1.2523,-1.0285,-1.1363,1.0091,-0.93062,2.3634,-0.39271,1.1211,1.0689,-1.5807,1.0022,0.42172,-1.2143 -0.34535,-0.73216,2.1373,-1.2811,-1.3532,2.3008,-0.339,2.508,-1.9663,0.57765,0.93621,-0.80427,1.8928,-0.015911,-0.49556 -2.0961,-1.9687,0.16625,-1.8756,-2.021,-0.90695,-1.0766,-1.5734,-1.7295,0.72317,-0.032123,-0.17877,0.2285,-1.6285,-0.52068 1.6246,-1.6886,-2.6573,2.3479,0.82353,2.1898,-0.36306,1.0765,-1.3829,0.9166,1.9075,0.13789,1.0925,1.3345,0.42644 0.3381,-2.5007,2.2091,2.1369,-0.24095,1.0583,-1.1103,3.3337,-0.34351,0.84771,1.604,-0.61763,-0.28596,0.48566,-0.65027 -2.1166,-0.57722,-0.73374,2.2725,-1.0524,-0.45639,0.46615,-0.4961,-0.14398,0.63615,1.4403,0.7013,-1.4695,0.36177,-0.40763 4.1781,0.55288,1.5811,-2.8372,-2.2118,0.032412,-1.2156,1.2903,-1.2628,-1.705,-0.50921,-0.7631,-0.95296,-0.013309,-0.33857 3.7422,-0.86046,-2.6276,-4.3551,-1.7249,0.45425,1.2153,2.1175,-0.84279,-0.81565,1.6232,0.30177,0.024098,-0.34614,1.7585 0.70653,-1.2477,0.45948,3.139,-1.3726,1.8519,-0.84833,2.2389,-0.002789,0.026815,0.17435,-0.5946,-0.48389,0.73172,1.1214 1.034,0.27286,0.51484,1.3312,0.038957,-0.48241,0.13545,0.53811,1.4017,-1.8251,-1.4623,0.60135,0.073759,-0.32376,0.17815 -1.6066,-2.9131,0.63066,1.6546,-0.74824,-2.0944,0.37291,-1.2497,-0.065904,0.13272,0.86709,-0.72836,0.084445,-0.97408,-0.91962 -0.29951,1.0068,-0.54646,2.6939,2.7692,-0.21329,-0.37285,2.6584,-0.87422,0.77095,-0.44528,-0.66988,-0.21764,0.12473,-0.66172 0.5835,1.309,-2.3795,1.0111,-0.11935,1.0078,-1.5559,0.98368,0.78545,-1.073,1.1412,-1.2164,-0.33217,0.070666,-1.3795 -2.1966,-0.96449,0.26415,0.47747,-1.8676,-0.57952,0.10334,0.084293,0.68433,-0.51191,1.7982,0.25787,0.23394,-0.79987,-0.72435 -0.081983,1.3336,0.64445,0.95474,-2.5199,-0.84656,-0.24494,-0.34167,0.65886,-0.34932,0.26662,0.95408,0.8307,0.41414,0.97784 4.2247,-2.638,-0.99862,0.64956,-0.27042,1.3952,0.054996,-0.014938,-0.56745,1.5499,0.19168,-0.93697,0.76367,0.28334,2.0319 -1.3771,0.2308,1.1148,0.77971,-2.6589,-1.7545,0.98806,-0.61247,0.26474,0.15219,0.58371,0.52377,0.94807,-0.072932,0.42022 -2.2573,-0.068752,0.072298,1.6084,-1.1966,-1.1735,0.53245,0.76068,0.47037,-0.82803,1.6462,0.3931,-0.48791,0.021845,-0.15225 -2.475,1.6802,-1.2093,0.17592,2.1019,1.2983,1.4554,1.9539,-1.2903,0.54155,-0.89906,0.36764,-1.705,0.09094,0.1934 -2.4204,-1.0686,1.1719,1.2218,0.93758,-1.6729,0.87647,0.075962,0.46955,-0.44513,2.0221,-0.52254,-0.85112,0.15676,-1.3135 -1.9212,-1.3092,-0.51762,2.298,-0.37814,-0.59539,1.0894,-0.44397,0.61743,-0.39262,1.5657,-0.9071,-0.49623,-0.33021,-1.3224 0.80551,-1.943,-0.31312,0.85213,-0.30491,-2.0166,1.4866,-3.3007,-1.5056,1.0864,-0.92705,-0.74089,0.16128,0.47304,0.16671 0.45626,2.9022,-2.4337,-0.41167,-1.4809,0.10307,-0.78986,0.2854,0.26586,0.05824,-1.2524,-0.94891,1.3286,0.23314,-0.15831 -1.7294,1.9335,-1.7416,0.87597,-2.0911,1.7652,0.91039,-0.062879,-0.96,-0.65312,0.76023,0.93229,-0.20354,-0.95466,-0.28212 -0.22083,-3.126,1.9012,2.3425,-0.028683,0.56674,-0.11918,0.15234,0.19866,0.79863,1.3923,-0.61185,-0.39323,-1.5969,-0.87853 -0.69606,-1.4423,-1.1997,2.3171,-1.4043,0.32117,-0.21483,1.1632,0.77148,-0.58337,0.93629,-1.0631,-1.8387,-0.40966,0.52318 -2.0953,1.2695,-0.81281,0.2865,-1.1014,-1.2156,1.0124,1.6602,0.44166,-0.31263,-0.23398,0.10171,0.43997,0.41236,1.1831 -0.79091,-2.9605,1.1171,2.0748,0.57723,0.50605,-0.14517,-1.4203,0.11021,0.54864,1.8766,-0.34556,-0.37909,-0.77493,-0.78411 -0.10969,-0.62316,0.67752,2.913,-2.1031,-1.0458,0.45304,-0.36668,0.35884,-0.67914,0.55728,0.40587,0.076231,-0.31989,0.7758 4.6354,-1.34,-2.6053,0.30321,-0.70328,2.8251,0.17402,1.7829,-0.48652,-0.18523,-0.87211,-0.41974,-0.52776,1.0087,-1.1231 -0.75738,-3.1827,0.6511,-0.15664,0.16582,-0.15843,-1.1464,3.2235,-0.29669,1.5845,0.31973,-1.5202,0.83606,0.33476,-0.57502 1.8709,1.1987,-2.3074,-2.3845,-0.8866,-1.5619,1.1309,0.24923,0.92079,0.25419,1.0959,0.096688,0.18381,0.69689,1.9726 1.4715,0.9729,-0.64329,1.2756,1.7298,-0.78515,-1.1912,1.6703,0.090107,2.1065,0.93154,-0.27575,1.5126,0.028485,-1.7215 -1.537,-3.1396,1.3755,-1.5951,-0.73445,0.51457,-1.5735,2.7991,0.13389,0.6941,0.26514,-1.7636,0.6005,-0.27914,-0.62851 -0.52984,1.8347,-0.17298,-0.13451,-1.8976,0.078139,0.29651,2.1191,-1.5644,1.0703,-0.99549,-0.57504,-1.0909,0.84966,1.257 -0.61837,-1.1321,-0.025297,2.338,-0.51995,1.8316,-1.0006,1.0542,-0.35477,-2.8476,0.92923,-0.14651,-0.57255,-0.98923,0.099201 4.5233,-1.3198,0.10425,-3.2853,-0.569,-1.4712,0.17224,0.052776,-1.7798,-1.1932,2.0744,0.85006,2.1314,-0.40331,0.0085262 0.88921,-2.133,2.4557,-0.51771,0.67283,0.32865,-0.11605,4.3256,-0.88684,1.8211,-0.3659,-0.9889,0.47923,0.062189,0.24926 1.3787,1.5807,-0.0023224,-1.0245,-1.3676,-0.22722,-2.4978,-0.88477,-0.20322,0.26157,2.2711,0.061713,0.38729,-0.073276,-0.1823 4.9272,-2.3055,-0.74437,-0.16071,1.7177,-0.97555,2.5511,-1.2415,-0.89434,-2.2084,0.18741,-0.51932,1.6648,-0.11268,0.60454 3.3539,-2.4183,3.8126,0.46146,-1.7107,-0.031016,-0.31159,1.6172,-1.3676,0.28944,-0.70129,1.3297,-0.36212,-0.21704,-0.52918 1.8409,-3.9966,2.9472,1.3867,-0.83531,0.41281,-0.1915,0.6809,-0.97201,0.78035,0.17138,-0.86775,0.45113,-0.92971,-0.59957 0.82142,-0.29144,2.802,-2.2141,-2.6349,2.0291,-0.03393,1.0834,-2.5167,-0.4547,0.16198,-0.16192,-0.91819,-0.42925,0.098014 -0.67237,-1.0701,2.7431,-0.92707,-2.4183,0.28508,-1.0493,2.7092,-1.1185,-0.73732,0.827,0.19042,1.0615,-1.1818,0.45946 -2.1318,0.70348,-0.96034,0.33049,-2.0039,2.6386,0.96199,-0.73625,-0.81299,-0.14571,1.3431,-0.42804,-0.34543,-0.82782,-0.52184 -1.6587,-1.2232,2.6959,-0.89405,-2.0387,0.81959,-1.2555,1.5537,-0.13324,0.48651,1.5781,-0.74311,0.37792,-0.37484,-0.0030086 -0.45674,-3.1142,2.4029,-1.2874,-0.62359,0.058576,-0.044471,3.7566,-1.2574,1.1695,0.7145,-0.68182,1.1718,-0.47904,-1.3217 1.8134,-0.092049,-2.0542,1.494,2.77,-0.64857,0.90162,0.98154,-0.34084,-0.97203,0.20196,-1.8817,2.238,-0.77128,0.34876 -1.0532,-3.0207,1.0276,-2.2915,-0.26684,0.28692,-2.0416,1.892,-1.882,1.4066,-0.30736,-0.40791,0.97792,-0.23559,-0.53477 2.8162,1.5063,1.5146,0.41747,0.87927,-2.6835,-0.86594,-1.4548,-1.7341,0.053703,0.53126,-0.4437,0.32223,0.93428,0.57445 0.46212,-2.5663,0.13097,0.17577,-1.4682,-0.067099,1.2773,-2.1227,-0.92045,0.81333,-0.88256,-1.0448,-1.2875,-0.95608,0.30128 0.59428,-4.265,1.829,1.1111,0.949,0.15556,-0.33418,3.7876,-1.6691,0.5144,1.3818,-0.72953,0.20065,-0.32779,-0.3203 0.4377,-2.0474,2.0201,0.42326,-0.72376,-0.33862,-1.4642,3.6199,-0.27431,-0.24386,1.2165,0.22475,0.25333,-0.92367,-0.19766 0.21076,-0.23984,-0.068257,1.6362,-0.99809,-0.67597,-0.66018,1.6364,0.31726,-2.0213,1.5452,1.1871,-0.083669,-0.062859,-1.3801 0.38439,0.96421,0.82796,2.5472,0.61483,-0.71467,-1.0885,0.54965,-0.515,0.25649,1.9935,1.1032,-1.222,0.82753,-0.55057 -2.5086,-1.7821,0.15821,-1.1256,-1.1513,-1.1855,-1.4895,0.67443,0.25789,-0.44478,1.2668,-0.79498,0.30884,-0.7689,-0.27313 -2.1259,-0.16577,-3.0525,1.7949,0.052573,-0.25105,1.4834,-0.28934,-0.08042,0.52621,-0.032499,-0.51842,0.33553,0.47298,-0.1997 1.5576,2.4493,-0.46311,-1.0563,-1.1016,-2.1896,-1.4657,-1.1196,-0.13051,-0.76101,1.1384,-1.0578,1.2568,0.96242,0.30044 0.54745,-3.7958,2.8248,1.6111,-0.62268,-0.79962,0.59514,-0.67732,-1.8193,0.037893,1.1315,-0.13003,0.084099,-0.039563,-0.50432 -0.4512,-3.737,1.5307,1.7991,-0.40038,-2.0294,1.3729,-0.908,-1.6737,0.22475,0.97256,0.46424,0.74291,-0.4053,-1.0824 3.7507,-4.3923,-2.626,0.85051,0.53664,1.0237,2.8719,1.1622,-0.034648,-1.6607,0.95485,1.9994,0.47681,1.2994,0.41998 1.4696,2.1423,-1.0535,-0.12704,-1.0385,-1.1702,-1.6678,-1.0902,-0.40378,1.6996,1.7648,-0.66555,0.15571,0.33291,0.10341 2.6174,0.95208,-0.98341,-1.2357,-1.8615,-1.5317,-0.47254,-0.45822,1.7023,-2.2043,-0.52688,-0.17176,-0.18145,-0.017132,-1.4585 -1.2949,-2.3179,0.2522,0.95121,-0.14374,-3.1867,1.3861,-0.73239,-1.3968,0.7739,0.20144,0.49291,1.5467,0.66351,-0.97128 0.33957,0.70082,-2.7749,1.7908,-0.31713,0.65648,-1.0591,-0.17776,-0.21208,0.6825,1.9405,-0.73916,-0.25603,0.41549,-0.077528 3.4471,0.14895,1.0249,-1.2365,-2.5116,0.39198,-2.0283,0.073775,0.39571,-0.51625,-0.753,-0.2906,-0.58958,0.14022,-0.4363 -1.4494,-0.40032,-1.2413,-1.0638,-0.11487,-1.7994,1.412,0.10012,-2.3378,1.4895,-0.71018,0.046124,2.6288,0.98693,-0.3079 -0.79279,2.9873,-1.0913,0.37155,-2.1531,0.63585,0.4523,0.44642,-1.3562,0.13496,-1.658,0.072113,1.1202,0.018403,1.3378 4.5917,-3.083,0.15915,-0.58009,-0.35049,-0.004602,-0.074819,-0.0027164,-0.55612,1.6604,1.6104,1.291,0.56971,-0.28744,-0.085991 -0.92284,-0.89137,-2.3944,0.20172,-1.7965,-0.13086,-1.6206,-1.8777,-0.27647,1.1497,-0.43257,1.3205,-0.84346,-0.35811,0.40717 -0.92938,-2.9286,1.1055,1.3321,-1.5687,-1.7565,0.57792,-0.021667,-0.27922,0.58322,1.2275,0.61586,0.63735,-0.25174,-1.3742 -2.6496,-0.91373,-1.5813,-0.68245,-0.89975,-2.0296,0.17437,-0.15947,-0.62193,0.67786,0.40403,0.12187,1.3947,1.4352,-0.26047 -2.2399,-1.5507,-2.0467,-0.083928,1.3173,-1.6391,0.67417,1.6734,-1.5605,1.431,-1.0574,-0.73104,0.59489,1.8428,-0.43055 1.2618,0.17091,-1.4886,1.8773,3.8992,-0.43405,-0.03943,1.9627,-0.96715,1.1888,0.67176,-0.98267,1.2637,-0.88269,-0.71812 3.0749,-0.062371,-0.87687,0.65862,-0.32432,-1.3079,0.13291,-2.2787,0.19855,-1.4989,0.6433,-2.1294,0.083366,0.47342,1.6457 -1.8057,-2.4624,-1.674,-0.23971,-0.15527,-2.3054,-0.98577,-0.37987,-1.1046,-0.74793,0.63328,1.193,0.23038,0.42165,-0.89824 -1.8823,-1.5582,-1.8437,-0.48668,-1.0147,-2.2991,-1.1717,-1.2821,-0.64265,-0.17134,-0.017002,1.5563,1.1273,0.22257,0.21367 3.2215,0.12059,0.93948,0.46864,-1.3006,-1.3284,-2.0063,-1.684,0.1202,-0.58081,0.91566,-0.97315,-0.57368,1.6821,0.83826 -2.1997,-1.125,-2.858,-0.19971,-1.7422,-1.3728,0.14875,-0.90167,-0.26251,-0.6343,-0.29219,-0.1101,-0.62015,-0.23369,-1.2355 -1.302,0.71329,0.066246,0.82176,-2.4238,0.27946,-0.39538,-0.22189,0.12402,0.50397,1.5599,1.0471,-1.1146,-0.12042,0.37833 1.331,0.82047,-1.8421,0.89385,1.0656,-1.2734,-0.87951,0.53022,2.0775,-0.059757,0.56103,-1.5697,0.91703,0.15659,0.0073536 2.5519,-1.7971,-0.60032,1.4616,1.6293,0.848,0.36112,-1.3032,-0.56851,-1.132,2.5977,0.88671,2.0507,-0.41962,0.21805 2.4321,-0.84859,-2.2733,-0.59266,-1.1687,-1.3857,0.93571,0.6172,2.4589,0.35537,0.79798,0.5656,0.46236,0.89597,0.31185 -2.3184,-0.88136,-2.1699,-0.23062,-0.26462,-2.2909,0.29844,0.16598,-0.78098,0.53821,0.42189,0.17093,1.1743,1.0795,-0.99884 -1.683,-2.8101,0.93757,1.5683,-0.87229,-1.9969,0.69081,0.76619,-0.15876,-0.6711,1.3903,-0.11606,-0.12237,0.094941,-1.5454 1.5961,-0.64963,0.60804,2.7987,-1.5394,1.1092,-1.1025,-1.0326,0.032293,-0.090948,-0.73389,0.12743,-0.99877,-0.74798,0.30522 -1.5498,-2.8822,-1.2467,-0.065,-1.5509,0.30062,-1.942,0.28137,0.23405,0.9481,-0.59629,-0.65456,-0.39213,-0.25459,0.099717 -0.29313,-2.542,-0.9768,-0.59214,-1.3311,-0.080485,-2.7,0.46275,-0.55998,0.74336,-0.53595,0.82458,-0.11274,-0.53608,1.3537 -1.3132,-0.87776,-3.0004,0.69349,-1.5022,-2.0547,-1.1923,-0.35119,-0.08744,0.18896,-0.32145,1.0186,-1.035,0.32247,0.17704 1.4872,0.63344,-1.3816,0.70987,0.57509,-1.3041,-0.52314,-0.89951,1.5,1.0185,2.0802,-0.16523,1.4948,0.4133,0.53152 3.3456,1.8526,-1.1695,-1.9263,-1.6503,-1.1467,-0.52122,-0.59875,0.78991,-2.4426,-0.27876,-1.2822,-0.021089,-0.011048,-0.76605 3.9808,-0.26413,-0.44065,-0.13658,0.47832,-2.4741,0.55776,-1.4488,0.5101,0.72125,1.0374,-0.86923,0.68215,-0.21759,1.3263 -2.9655,-2.0766,1.6347,-1.9417,-1.8821,-0.28855,-0.91599,-1.1085,-0.99392,-0.29909,0.92671,-0.68585,0.12355,-0.75683,-0.23218 3.4653,1.3313,-0.83539,0.68247,0.53019,-1.9595,1.4758,-0.64738,0.75387,-1.1806,-2.276,-1.3254,-0.11729,0.45247,-1.1085 -2.9164,0.2539,-1.7185,-0.53302,0.11291,-2.3371,1.6334,1.2315,-0.80016,0.54956,-0.61957,-1.1933,0.30954,0.55956,0.28318 0.68718,1.2319,-0.15823,-0.40148,-3.2226,-0.35319,-0.19293,0.20644,0.18253,-2.6404,-0.71824,0.27031,-0.49908,-0.68372,-0.11541 1.5407,-0.096457,-1.3374,1.7006,-1.4107,-0.40951,2.6479,-0.47876,-0.7661,0.095816,-1.3763,-0.017238,-0.91933,-0.41285,-0.84314 -0.38868,-1.7884,0.93786,0.51279,-1.8782,0.97326,-1.0611,3.2324,0.033329,0.58042,0.71022,-0.88154,0.97452,0.095028,-0.39523 -2.7491,-1.0708,-2.9179,-0.63275,-0.9407,-0.59209,-0.69627,0.10745,0.27874,-0.80248,0.017007,-0.1378,-1.0777,-0.65514,-0.60224 -0.66478,-3.1269,0.099523,0.33609,-0.82216,0.29486,-1.606,0.90331,0.16071,1.0843,0.43412,-1.1042,-0.013394,-0.61178,-0.72138 1.1179,0.23609,-1.497,2.4581,0.42868,-0.30246,-1.2102,0.14751,0.13078,-1.0009,2.0386,-0.62055,-0.70911,-0.18103,-1.5597 -0.27584,-1.9481,-2.1065,0.99223,-1.2601,-0.46712,-1.7443,0.82772,-0.38829,0.2888,-0.57873,-0.12365,-1.243,-0.84518,0.98874 -0.44043,-0.63055,-2.9807,1.2886,-1.2713,-1.7133,-0.44107,0.098362,-0.35121,-0.22732,-0.19155,0.73969,-0.78613,0.0087814,-0.030989 3.0917,-3.6298,-0.25418,1.1445,0.7883,1.4258,0.17591,1.3675,-1.3159,2.573,1.5531,1.8946,1.6535,0.22815,0.32516 -0.24239,-1.6323,-1.6188,1.1296,-1.3176,0.053737,-1.9213,0.39751,0.23015,1.0022,-0.56038,-0.40856,-0.42692,-0.1874,1.5173 2.4145,-1.5294,0.058693,1.2984,-1.3543,3.5371,1.6986,0.12688,-1.9272,0.18325,-1.2916,-1.1476,0.040066,0.41953,-0.21504 2.6017,-0.66662,-0.20797,0.6221,-0.77614,-2.1742,-0.76688,-0.83216,0.56777,0.30263,1.2401,-0.46596,0.74663,1.0822,0.79412 0.75802,-0.99751,-3.2267,-1.2302,-2.2634,2.2046,0.21929,2.3206,-0.2514,-0.24953,-0.057016,1.1977,1.0455,0.082569,0.28971 1.9953,0.63605,0.97846,0.3439,-1.9451,-2.6773,-0.60417,-0.16881,-0.19841,-0.26201,-0.5133,0.28945,1.04,1.0342,-0.10165 3.2277,-2.2236,-1.5156,-2.4531,-2.942,1.0102,0.81586,1.7579,-0.046591,0.4557,-0.3337,1.841,0.028568,0.17789,0.047624 1.6305,0.48968,0.57326,0.33791,-2.5875,-1.2328,-1.5249,0.041688,0.29537,-0.88797,0.50489,0.52651,0.44517,1.1399,0.56597 0.81075,1.097,-1.4799,1.5453,0.77317,0.25543,0.16466,-0.18249,-0.58538,-0.27985,-2.8792,-1.2711,0.59066,-0.16202,0.49627 2.3496,-0.35443,3.7033,-1.5549,-2.6781,-0.36405,-1.5485,1.2426,-1.8029,-1.1516,-0.012577,0.0894,-0.359,-0.19288,0.35514 0.5775,2.1515,-1.3162,1.7615,-0.2059,-0.23632,-0.72497,-0.49378,-0.31406,0.73676,0.18663,-0.32175,0.15229,1.3686,0.099062 -1.4979,-0.71466,0.33432,2.1209,-0.67633,-0.25627,0.16954,1.3598,1.0353,-1.3494,1.1056,-0.21306,-2.6891,-0.55619,-0.0061266 4.5337,-1.7242,0.016566,1.2666,-1.1595,-0.4906,-0.78958,0.2126,0.11119,-0.56669,-0.7999,-0.89015,-0.67484,0.0031128,-0.56677 -0.35415,-1.6093,1.0851,1.6331,-0.81489,2.4284,-1.0167,0.22521,-1.5605,-0.033529,2.0612,-0.87071,-1.1107,0.84651,0.86586 -2.2374,-0.060187,-3.2663,-0.028145,-1.2194,-0.99308,0.53481,0.51184,0.58124,0.60113,-0.3411,-0.097532,-0.16503,0.93529,-1.0656 -1.8302,-0.70304,1.3332,-0.39294,-0.033704,0.97055,-0.53951,3.0062,-0.59921,0.045239,1.2417,-1.0113,0.52993,0.097176,-0.4573 -1.8285,0.20464,-0.57862,1.9436,-0.95333,-1.5748,0.86257,1.2893,0.76024,-0.16617,1.2088,0.24154,-1.0605,0.45733,-0.27526 -2.3713,1.9428,-1.3723,0.79233,-1.493,0.19841,0.70406,1.2169,0.09057,-1.0385,0.20933,1.2643,-0.32054,0.015543,-0.3215 -2.1209,0.53213,2.7614,-0.86459,-1.5205,-0.95661,0.32643,-0.88127,-1.8895,-1.2215,1.1591,0.17752,-0.6171,1.0934,0.16932 -1.4688,-0.77446,-0.1108,0.64747,-1.3899,-1.4895,0.59335,-1.9278,-0.27968,1.3312,1.4919,-0.54244,-0.052851,0.87786,-0.59518 1.8079,-1.4874,1.2336,0.72898,0.37494,-1.2456,-0.92597,2.0392,1.279,-0.79152,-0.42742,1.1306,1.3161,-0.36739,-0.22007 3.531,-0.28685,-1.7172,-2.5758,-1.5867,-0.90256,0.50361,-0.45942,1.149,-1.8316,1.0281,-0.54949,0.69542,0.032161,0.31097 0.58146,1.0219,-0.35734,1.9711,1.4593,-0.34211,1.2014,2.1627,-0.11779,0.81532,-1.9351,-0.39079,0.48646,-0.57643,-0.79425 -1.5588,-0.66492,-0.64857,2.0315,-0.087792,-1.8246,1.3102,-0.69673,-0.56415,1.4238,1.4017,-0.1143,-0.029904,0.99587,-0.84839 -2.5975,0.004032,-0.36741,1.0661,-1.7848,-0.99431,0.9091,0.59802,1.127,-0.3506,1.4524,0.39219,-0.97994,-0.098448,-0.50007 -2.2878,0.10237,-2.1261,-0.59744,1.1926,0.054813,0.77953,1.9688,-0.41077,1.4592,0.1528,-1.0792,-1.0636,0.61092,-1.2035 -1.8042,1.9792,-2.0791,0.99277,-1.5346,2.1763,-0.23286,0.82781,-1.0844,-0.11273,0.35023,1.1882,0.098286,0.038492,-0.98425 -0.71556,0.13525,0.41079,1.009,-2.0542,-2.1397,1.0021,-0.026108,-0.03311,1.4225,0.30789,-0.58176,0.34916,0.18462,0.14067 -0.87873,1.4173,0.13944,2.3654,0.39098,-0.65319,-0.70676,-0.061514,-0.67171,-0.87056,1.0265,1.2753,-2.3426,0.36766,-0.69476 2.7254,-0.89368,-0.0023281,0.42632,-0.90116,-1.1629,-1.2625,-0.42891,0.78992,-0.01117,1.5282,0.84051,1.8873,0.57023,-1.0609 -0.48441,-1.2631,0.48748,2.2685,-1.1059,-0.82865,0.67183,-1.2541,-0.62691,0.71959,2.3387,-0.060005,-1.0597,0.4985,-0.10049 0.61304,-0.28406,-1.3952,3.0978,-0.27776,-1.2854,-0.54835,0.40862,-0.51416,-2.5175,0.36811,-0.74282,-0.51704,-0.40952,-0.74003 1.2562,-1.8538,-1.4862,-2.3322,-2.3528,-0.49283,-0.081543,3.1306,-0.34154,-0.3748,-0.29143,1.3439,1.0976,-0.23893,-0.81815 -1.7459,-0.92764,0.64753,0.90683,-1.1479,-0.45329,-0.31118,1.5777,1.0054,-0.54808,1.9825,0.1961,-1.5736,-0.52121,-1.0352 -2.4855,0.22169,-3.9697,-1.1653,0.92305,-1.0007,-0.076976,0.054888,-0.80686,-0.83462,-2.0668,0.51683,-0.44807,-0.4389,0.4923 2.7797,-2.6792,-1.5099,1.2399,-0.68416,-0.32117,1.7451,0.62985,1.1235,0.14132,-0.97049,0.51186,0.26606,1.0053,0.40071 3.9945,-1.4797,-1.9242,-0.30657,0.77375,-1.6826,2.6686,-0.46457,1.3525,-0.32717,0.019886,0.41933,-0.71095,-0.52587,0.84092 -1.118,-1.3182,-0.70334,0.72172,0.17548,-0.92096,-0.66357,-2.8916,-1.7108,1.4143,-0.07573,0.84865,-0.015574,-0.8119,0.004508 3.1117,-1.8585,-1.7529,-0.10389,-0.28226,-0.92561,2.4407,1.2682,1.6261,0.48606,-0.58407,1.3097,-0.63605,0.24055,0.080858 4.8822,-2.9348,-1.0035,-2.2252,-0.56075,-1.7301,2.2905,1.7131,-0.12099,0.64944,0.68974,0.88671,-1.3938,0.13786,0.94831 1.7389,1.7809,-2.4602,0.14586,-0.5074,-1.0466,0.0043194,0.22701,1.5917,0.99871,-1.0878,-1.2469,0.28289,0.23445,-0.52805 2.9107,-1.6537,-2.4514,-1.1787,-1.325,-0.59724,2.3952,1.1014,2.3898,-0.22117,0.17897,1.7711,-0.12335,1.0867,0.67147 2.3949,1.1781,-0.8198,-0.026373,-1.4728,-1.0638,-1.7427,-1.2599,0.87462,1.2208,1.2623,-1.1601,0.48241,-0.038028,0.47288 3.0483,-3.7055,-2.651,1.5478,-0.63568,0.84938,2.5126,1.9149,-0.00056124,-0.24043,-0.58446,1.6828,0.12829,0.85197,-0.74928 4.122,-3.0225,-1.4185,-0.30697,-0.39297,-0.45941,2.9522,0.92405,0.94522,0.23653,-0.93644,1.6099,0.20223,1.0379,0.66618 1.3495,0.061135,0.46132,0.71737,4.4689,-1.4678,0.10077,-0.82494,-2.2132,-1.455,1.3371,-1.0383,1.3417,-0.77369,0.63951 3.7778,-0.6795,-0.086606,1.6793,-0.67295,-0.20698,0.38231,-1.2694,0.45755,-2.4798,-1.2968,-0.54368,-0.067896,-0.096946,-0.73559 -2.1522,3.1525,0.71712,-0.29122,-0.91169,0.39123,1.0571,-0.53201,-2.9006,0.54239,0.04321,0.3966,-0.24447,0.28972,0.28225 2.885,0.90002,0.77192,0.37366,1.4564,-1.9871,0.048596,-0.0065256,-0.084094,1.121,0.59707,0.67237,2.3746,1.0483,-1.2758 -1.1762,1.527,0.55992,1.879,1.5818,-0.0090668,1.793,0.9824,-2.7119,1.7125,0.28534,-0.47012,-1.1033,0.96481,0.84039 -1.6601,-2.2699,-1.5594,-0.73432,0.81167,0.4327,-2.584,-0.78903,-1.8975,-0.95696,0.30679,2.6318,-1.378,-0.41309,0.30621 1.3305,-0.44828,-0.25763,1.3365,-2.1093,2.829,-0.84974,-0.40102,-0.70555,-0.57511,-0.069767,-0.27062,0.63303,-0.21001,0.84293 0.70173,0.092002,0.76165,1.6511,-1.0392,-0.88756,2.0554,0.30242,0.17739,1.3378,-2.6646,-0.10837,0.19119,-0.15031,0.32884 4.3351,-1.8868,-0.65069,-0.14249,0.12402,-0.69072,1.2754,-1.0408,0.76787,1.1941,0.80165,-0.0088907,0.41141,0.97316,1.5924 3.1573,0.28449,1.3684,-0.38658,-2.7006,-0.8703,-1.7662,-0.2759,0.33589,-1.0764,-1.0435,-0.94769,-1.0591,-0.43446,-0.31024 5.6783,-3.1366,0.17201,-1.0476,0.32529,2.0252,-0.47831,-0.2467,-2.8461,-0.23711,1.1879,-0.46274,0.77668,0.097318,1.039 3.5775,-3.1038,-2.1034,-2.0145,-2.1377,-0.33037,1.7817,2.4109,1.328,0.023942,-0.1126,2.0547,-0.05623,0.7727,-0.17856 1.8441,2.3014,-1.5064,1.5695,0.24939,-1.1692,-0.022661,-0.64188,0.29953,0.72596,-2.2995,-1.8005,-0.1529,0.43076,0.0962 2.8585,-1.2275,-1.9675,0.1429,0.87367,-1.6801,2.2611,0.37133,2.175,0.29019,0.38848,0.87476,-0.28189,0.7978,0.54421 -0.028687,3.9154,0.24987,-0.90795,-0.15267,-0.93197,-0.27869,0.68772,-2.2004,-0.74276,-1.5361,-1.8714,0.50487,0.18866,0.42615 -0.10752,0.63631,0.55217,0.5232,-2.8073,0.69772,-0.68738,0.27292,0.79614,-0.25074,1.253,0.59476,0.40736,0.80542,1.3458 3.1871,2.1324,1.1271,-1.8886,-0.43968,-2.7575,-0.28828,-0.056226,-0.018524,-1.4562,-0.8148,-1.0205,0.5559,0.89514,0.039702 0.75796,0.89454,-0.20881,2.5412,-1.5891,-0.78923,0.25989,-1.1096,0.34629,-0.19599,-0.80574,0.23318,0.94708,0.11177,0.46685 4.763,-0.036051,0.22998,-3.3005,-0.43986,-3.609,0.75181,0.39976,-0.22988,-1.6264,0.45681,-0.3841,-0.23624,0.88914,-0.086229 3.3743,-0.078641,-2.208,0.60335,0.23376,-1.3218,1.1646,-1.2558,0.1308,1.0496,0.75817,-1.2655,-0.40955,-0.74481,2.1895 -1.4874,0.38906,-1.9641,2.2444,-1.666,-0.44293,1.2212,0.59033,0.62661,-0.11684,0.41991,-0.56573,-0.1398,0.62756,-0.0093526 1.5361,2.3367,1.6813,-0.60029,-1.6775,-1.2169,-2.4847,-0.36641,-0.97502,-1.3879,1.3229,0.25544,0.17453,0.12785,0.19751 1.6336,2.7579,1.7289,0.069102,-1.4017,-2.3562,-0.37482,-0.39708,-0.48473,0.0063486,-1.5546,-0.48761,0.11569,0.59338,0.35111 -0.048878,2.4758,2.211,0.12029,-1.021,-2.024,-1.1422,-0.72564,-0.84059,-0.90466,0.6899,0.48687,0.574,1.0703,-0.17077 1.9011,-2.6024,-0.49618,2.1594,3.0353,-0.29817,-1.1832,1.1568,-0.3868,-2.5748,1.8766,-1.0263,0.12327,0.29647,-0.31055 -0.54877,2.569,-0.56581,1.4161,0.52879,-0.30605,-0.52851,-0.2062,-2.6396,1.1328,0.0073447,-0.57534,-0.51526,0.55645,0.14584 0.077585,0.44705,0.83427,1.7297,2.1875,-2.3093,-0.75216,1.9197,0.49571,-0.76827,-0.69891,-0.38863,-0.034257,0.40061,-0.8215 6.1482,-2.3963,-0.083332,-1.2326,-0.17783,-1.7877,0.85671,-0.50144,0.64949,-0.94409,0.12384,0.066356,-0.21951,0.54252,-0.4079 1.6889,3.5219,1.2934,-0.82669,-0.47255,-2.1856,-0.66048,0.241,-0.52813,0.19844,-1.9549,-0.73225,0.1178,0.055154,0.023489 0.020376,0.94271,0.28319,2.9395,1.3493,-2.6542,-0.5821,0.49702,-0.019036,-1.4432,0.59618,-0.41307,-0.3965,1.2148,-0.36683 6.2461,-3.6779,-0.99913,-1.165,-0.59683,-0.56998,0.17297,2.2262,0.27924,-0.41893,0.078369,0.1407,-1.0839,0.27025,-1.2737 0.10842,1.8313,1.2328,1.6655,-0.85166,-2.0264,-1.0265,0.13772,0.15481,-0.81836,0.74008,1.036,0.42768,1.4041,-0.32976 -1.756,3.2756,0.58431,0.98878,-0.6388,-0.94389,-0.090412,1.3777,-1.1682,0.37219,0.19736,0.70265,-0.033483,1.3145,-0.48049 5.898,-2.2347,-0.29581,-0.72498,-0.78196,1.1088,-0.85384,1.1665,-0.47316,1.0906,-0.56793,0.32569,0.45956,0.48458,-1.2924 2.1588,2.1477,-0.30635,1.2144,1.079,-1.9691,-0.77692,-0.86391,-0.82377,0.87866,0.31635,-1.3474,0.52191,0.79165,0.1634 -1.2405,2.3237,1.4729,0.17532,-1.0021,-0.81864,-0.94427,0.88031,-1.1205,-1.5855,1.6854,1.2991,-0.90313,1.013,-0.69089 2.1531,0.58106,-0.56994,2.1033,-0.001416,-1.5077,-0.8831,-1.925,-0.46009,-0.11006,0.6208,-0.76942,0.50698,1.1134,0.59794 3.1303,1.2699,0.55514,-2.1732,-1.7384,-0.94847,-1.6811,-0.76372,-0.88519,-2.1737,0.89624,-0.55943,1.033,0.85044,0.78154 3.0313,0.836,-2.5325,-2.5576,-1.4618,-0.50187,0.49827,-0.14445,0.54675,-1.7378,1.6853,-0.94837,-0.18615,0.2705,0.84592 2.8835,0.61899,-1.3844,-1.088,-1.7033,-0.29432,-1.4887,-0.93126,1.1364,0.81655,1.3187,-0.73834,-0.18677,-0.022651,0.65425 -2.3221,-1.6911,-1.0329,0.51464,-2.0859,-0.84141,-0.75651,0.08774,0.56605,-0.17307,1.1845,-0.65287,-0.49183,-0.64579,-0.81588 -0.55978,-3.4146,-0.58474,0.93807,-1.5898,-0.41887,-1.3063,-0.15384,0.54559,1.0808,0.29224,-0.7269,0.23038,-0.57465,-0.60536 2.5401,0.40807,-0.51792,-2.6615,-0.62254,-1.8331,0.13221,-0.54521,0.27291,0.71927,1.7011,0.67383,2.0844,-0.024294,1.0351 -0.45533,-2.9704,0.58023,1.5002,-1.4498,0.56784,-0.94315,1.2683,0.66557,0.99755,1.337,-1.4623,0.2872,-0.29423,-0.70971 0.53271,-0.97183,-1.6505,1.9435,-0.33589,-0.33558,2.435,0.82607,0.033061,1.2217,-1.8991,0.10577,0.77288,0.211,-0.61521 -0.97077,-2.565,-1.3811,2.1616,-1.1098,-0.77266,-0.58768,-0.46988,0.36693,0.34372,0.81571,-0.72634,-0.38784,-0.85971,-0.8732 -0.94725,-0.91973,-3.324,2.0885,0.060838,-0.92144,0.17532,-0.38669,-0.10453,0.427,-0.50481,0.52522,0.3745,0.71414,-0.52823 -0.49803,-0.95334,-2.7086,1.0429,-1.2996,-1.8085,0.059994,-0.91357,0.44433,1.0365,-1.2268,0.87689,0.83848,0.189,-0.3075 -1.4201,-1.5557,-2.2825,0.31561,-1.9025,-1.5485,-1.5987,-0.96767,-0.27673,0.46198,-0.43777,1.0342,0.6736,-0.65352,0.1483 -2.2378,0.68039,-3.8558,-0.67981,-0.56502,1.1291,0.60193,0.72138,0.10455,0.25016,-1.1764,-0.69856,0.34451,-0.031674,-0.53341 -3.1564,0.84597,-1.3608,0.25804,-0.33464,-0.40477,1.6873,0.82827,0.95927,0.49368,0.48739,-0.090106,-1.1819,0.11056,-0.89765 -1.0023,-0.056867,0.38408,3.1698,-0.65264,-0.40792,1.7217,-1.487,-0.67237,0.28948,0.916,0.12098,-0.060859,0.10331,0.59529 -0.64036,-1.3919,-1.8855,-0.46856,-2.0044,-2.0568,-0.25343,-1.4025,-0.14441,0.36761,-1.2254,0.85434,0.84352,-0.55538,-0.64419 -0.69547,3.2548,-0.62111,-0.044037,0.16574,-1.7838,-0.70083,0.26098,-1.0219,0.35586,-0.1248,-0.44234,0.19294,1.0798,-0.46451 -0.066415,-2.0062,0.76121,-0.94914,-3.0914,0.72139,-0.43372,0.033201,0.4465,1.2005,-0.32556,-0.84075,0.65181,-0.88072,-0.21867 -2.22,-2.549,2.7408,-2.1692,-0.84998,0.96216,-1.0097,1.3005,-0.15674,0.86463,0.39544,-1.1423,0.37712,-1.4497,-0.62164 0.54036,-1.3166,0.91348,0.84261,-2.8284,0.79167,0.051955,-0.12476,1.207,1.0109,-0.029495,-1.0381,0.15923,-0.33683,0.29253 -2.1409,-0.86354,-1.526,-0.65024,-1.7951,-1.7643,-0.63602,-1.2663,-0.16143,0.70405,0.34879,0.59332,1.1887,0.22234,-0.14507 2.0274,-0.78353,-2.0049,0.88459,2.4527,-0.096798,1.6698,0.49469,0.48252,-1.3285,0.80576,-0.89966,2.0294,-0.1856,1.1451 -2.6215,0.27687,-2.4163,0.99835,-1.1814,-0.40515,1.6065,0.34603,0.48315,0.77122,0.27427,-0.16935,0.051574,0.85943,-0.92053 -1.0324,-2.1266,-2.8295,2.2519,-0.5231,-0.92606,-0.67072,-1.7014,-0.25006,-0.11472,-0.58354,1.0258,-0.15629,-0.97182,0.046895 4.5575,-1.7783,1.7614,-1.7599,-0.9341,-1.0837,0.204,3.0682,-0.88367,-1.0136,-0.66676,-0.091512,-1.158,-0.13131,-1.6148 0.019106,1.7154,0.7091,-0.5435,-0.94548,0.4474,-0.029775,2.5844,-1.6252,0.66812,-1.3713,-1.1369,-0.97742,1.5243,0.7334 -0.96695,-1.825,1.9142,1.4371,-1.7936,1.0146,-0.52023,-0.14071,0.88916,0.782,1.1702,-0.14916,-0.49684,-1.1167,0.2201 0.27941,1.5044,-2.2201,1.6648,1.0612,-0.81863,-1.1777,1.0898,1.3857,0.04917,-0.24822,-1.8564,-0.22029,-0.38464,-0.069275 -0.59946,2.3791,-1.0981,1.4088,0.27072,-0.54488,-1.2751,1.2755,0.81133,0.067995,-0.97414,-0.55372,0.53929,0.45218,-0.12896 -1.9403,-3.2381,-0.357,0.99064,-0.030521,-0.092322,-0.98274,-0.61581,0.86477,0.54342,0.075714,-1.5121,-1.0633,-1.3015,-0.15897 1.4384,-0.95892,1.3334,2.0306,-1.6457,2.0282,-1.5729,1.9874,-0.69441,1.1301,0.082406,-0.11421,1.1987,0.69486,0.39921 -1.5898,-2.4324,0.34701,-1.5714,-2.2293,0.0002956,-0.76547,-1.6001,-1.0274,0.66788,0.032462,0.67981,0.2378,-0.94746,-0.84829 2.3217,0.19904,2.1889,1.6625,-1.0925,-0.64599,-1.5349,-1.2266,-0.61904,-0.90374,0.33309,-0.24589,-1.5928,0.73291,1.2045 -2.5421,-0.6403,0.086604,0.066116,-2.6891,-1.2277,0.34296,-1.3236,0.0052037,0.18071,1.0195,0.26152,0.51729,-0.32108,-0.27482 2.6825,0.5833,-0.79169,1.3104,-1.157,-1.0633,-0.7508,-1.9749,0.9237,-1.6389,-0.72155,-1.2114,-1.0341,0.3749,0.21511 -0.712,-2.6032,1.7534,0.46947,-1.9331,1.3121,-0.48768,0.77443,0.9328,1.8392,0.47262,-0.59033,0.50401,-0.60434,-0.39014 0.54355,2.8906,-1.9794,0.0006683,-1.2599,-0.46755,-0.70616,0.56516,0.67442,0.3089,-1.5636,-0.70408,1.2125,0.24958,-0.20497 1.4666,0.5017,-1.6268,1.8893,0.27772,0.24779,-1.2163,-1.5793,0.049317,-1.1693,1.9722,-1.0769,0.54524,1.035,0.35624 -2.41,-1.9231,-1.0665,1.3359,-0.6936,-1.4389,0.53255,-0.3166,0.72287,-0.33292,1.0208,-0.73795,-1.6369,-0.70456,-1.1611 -1.1651,-1.1008,1.1206,2.321,-1.3497,0.17286,-0.58486,1.239,1.1552,-0.44934,1.0692,0.028937,-1.5202,-1.0681,0.027414 4.0302,-1.9431,1.7711,1.616,-1.2366,1.8823,0.17002,-0.44961,-1.6299,-1.2296,-1.0786,-0.63762,-0.98125,-0.41227,0.38482 -1.2619,-3.2707,0.6214,-0.53733,-1.8626,0.40057,-1.039,-1.1569,0.65678,1.8485,-0.75724,-0.46786,-0.24388,-1.0276,-0.48152 -2.9191,-2.485,-0.46554,-0.9174,-0.31871,1.3654,-1.7787,1.0464,0.44364,-0.15968,0.29495,-1.3775,-0.227,-0.52119,-0.21162 2.9457,-0.93962,-2.0587,-0.21982,-1.2908,-0.45511,0.21082,-0.98662,1.5761,0.38587,0.84798,-0.3264,-0.99852,-0.58611,1.619 -2.1721,-3.5806,-0.53792,-0.99876,-0.9783,-2.2052,-1.0012,0.15878,-1.0742,-0.32473,0.49933,0.38437,0.65716,-0.56958,-1.3907 -0.55929,-2.2409,-1.7837,0.8981,0.96495,-3.7361,0.17845,-0.049162,-2.1407,0.76426,-0.90884,1.525,1.8079,0.55103,-0.1165 1.5773,1.0418,-0.2768,2.9235,-0.6777,-0.09602,0.67291,-0.58879,-0.68948,0.20338,-0.98283,-0.26214,0.40075,0.4967,1.234 3.2847,-1.5092,1.5293,2.2561,0.023504,0.49903,-0.094246,-1.3921,-1.5137,-1.0415,0.4974,1.1949,0.75216,-0.26488,-1.6003 0.034654,-3.7464,1.8726,1.61,-0.88623,1.3229,-0.45255,1.4352,-0.3445,1.7145,1.056,-0.96448,0.84958,0.049193,-0.97478 -1.74,-1.049,-1.5655,1.278,2.0538,-0.89843,1.8423,0.63204,-0.89772,-0.30612,0.24521,-1.5307,-1.6796,-0.4399,-0.21709 2.3576,0.50692,-1.9037,-0.73894,-1.2072,-2.147,0.27812,-0.37544,1.3661,0.98861,1.228,-0.63175,-0.55588,-0.034791,1.5326 0.49522,-2.4886,-0.85856,-0.62471,-0.96344,-1.7128,-0.38327,-1.9935,-0.42726,1.0398,-1.7548,2.2357,0.0015694,-0.82866,-0.63893 4.694,-0.38818,2.0051,-2.0827,-0.89702,-1.6975,-0.83754,0.93886,-1.6978,-1.1505,1.0516,0.87439,0.7283,0.69737,-0.5498 -0.23448,-0.022686,0.39178,0.9001,-1.5856,-1.739,2.2581,-0.65146,-0.048052,1.7011,-1.3325,0.10305,0.69756,0.047657,0.016757 4.1091,-0.53707,-0.55826,-2.0049,-1.359,-1.7612,-0.59015,-0.88657,1.423,-0.45567,0.76471,-0.72467,-0.10969,-0.7767,0.35632 0.18853,-3.3498,1.2887,2.0856,-0.79874,-1.1414,1.3825,-0.95352,-1.4498,0.13571,0.45826,0.14964,1.1362,-1.6863,-1.326 -0.8162,-2.7347,-1.6142,1.5195,-0.024109,-1.8163,-0.098675,-1.6036,-1.0029,0.65462,-0.36862,1.1289,1.0332,-0.46065,-0.56424 1.004,0.25705,3.3267,-0.1209,-2.1063,-2.0054,1.1508,-0.41431,-0.90028,0.072415,-0.55388,1.0923,-0.21265,0.29677,0.027527 1.2253,-1.6675,-1.9299,0.94352,-0.47966,-1.3572,0.72869,-1.1762,-1.2844,0.78187,-2.0071,2.3477,1.2461,-1.2354,-0.25674 -0.83542,-2.5955,-1.5247,1.2122,-0.34103,-2.6135,-0.020987,-1.4825,-1.0884,0.82833,-0.64419,1.0055,0.92246,-0.39604,-0.61355 0.14783,1.7417,-1.9248,1.8819,-0.7359,0.41418,-1.1615,-1.1666,0.21571,-0.43994,0.69429,0.40613,-0.1927,0.57051,-1.0467 -0.79426,1.33,0.97387,0.5529,-2.6878,-1.0936,1.3133,-0.54888,0.43563,0.56958,-0.14277,0.063763,0.49363,0.49569,1.5029 -0.81842,0.65981,0.08576,1.6253,-1.9027,-0.94173,1.1941,-0.32755,0.40374,1.2716,-0.18594,0.56867,1.1818,0.32982,1.0823 -1.7096,-0.54632,-3.386,0.16093,-0.65526,-0.56466,-0.83762,0.33231,-0.29982,-1.194,-0.02183,1.9271,-0.016696,0.051905,0.14208 0.77498,-2.3837,-0.48434,-0.47454,-2.2436,0.4815,1.4834,1.5848,0.56034,1.6239,-1.8434,-0.82685,-1.7493,0.28619,-0.94727 -0.29163,-4.1632,-0.43088,0.85273,0.11197,1.5914,-1.3373,-0.49682,-0.15231,1.5666,-1.3938,-0.37318,0.92866,-1.0042,-0.10803 3.7474,-2.8366,-1.2258,-2.682,-2.0675,-0.98577,1.7611,2.2638,-0.341,-0.52813,0.23478,2.2365,0.36055,-0.39825,0.15264 1.5489,2.8403,-2.41,-1.8765,-1.198,-1.1159,-0.79807,-0.098089,-0.65453,-0.30015,1.192,-1.5459,0.76535,-0.3435,0.49487 -2.2698,-0.32342,-1.0723,-0.15004,-1.0171,-1.2476,-0.14234,-1.2517,-0.24956,0.88532,0.34799,0.44225,0.77451,1.1354,-0.35179 1.5307,-0.0074525,2.3701,1.7494,-1.7251,0.025868,-2.2117,-0.37731,-0.012878,0.37907,0.66359,0.21389,-0.91386,0.2019,0.35192 -2.8433,-0.36688,-2.3703,-0.31544,-0.35755,0.87625,0.62972,0.019842,0.027522,-0.24417,0.30838,0.058978,0.4618,0.63522,-1.7405 -0.88362,0.4975,-0.38117,-0.26479,-2.0432,-1.1408,2.1053,-1.1147,0.17755,1.7063,-1.1744,-0.77351,0.47177,0.7772,0.74007 -1.4578,0.98065,-1.3325,-0.49044,-2.7847,0.10919,1.7147,-0.75633,-0.54549,-0.68283,-0.34676,-0.095688,0.43473,0.10877,-0.068173 1.3546,-1.1528,1.3271,0.83613,-2.9967,1.3733,-0.12871,0.22079,0.49853,0.46806,-0.31251,-1.3583,-1.1057,-0.29876,1.628 -2.7687,-1.8253,-3.0638,-1.0043,-0.88134,-0.42168,-1.4715,-0.25135,0.031717,-1.5986,-0.41683,0.34531,-1.4848,-0.69477,-0.47515 -0.63286,-1.911,0.72809,1.4859,-0.86996,1.6956,-0.56439,2.0653,1.3193,1.2435,1.0177,-0.75535,0.36064,0.049704,-0.70473 1.5221,1.084,-1.8427,1.7171,0.61549,0.12677,-0.20785,-1.5586,-0.23698,-0.57223,0.52058,-2.1648,1.2722,0.50191,1.1166 2.4588,0.75987,-1.4246,2.3214,0.55815,-0.1131,0.39587,-1.1592,0.22463,-0.9471,-1.3844,-1.636,0.97313,-0.23903,-0.12916 1.8604,1.5585,-1.696,1.8449,0.25497,-0.10887,0.017461,-0.82393,0.15052,0.4518,-1.6475,-2.0271,0.71009,-0.29854,0.22324 1.6463,2.5122,0.17327,1.7128,-0.031008,-1.1402,-1.109,-1.5133,-0.1277,0.67708,-0.24838,-0.88717,0.015494,1.1975,0.36415 0.84662,0.93964,-1.7657,2.6884,0.26802,-0.24149,-0.62501,-0.98471,0.31136,-1.0305,0.61473,-1.177,0.71838,0.93461,0.26182 -1.5253,-1.8533,0.047008,-0.4099,-1.4759,1.8897,-0.84838,0.11259,0.081997,0.88694,1.1192,-0.66727,1.1139,-0.8058,-0.9064 0.12855,1.6056,-0.97706,2.9946,-0.86521,-0.37814,0.32334,-0.1986,0.3065,0.53255,-1.3314,-0.4332,0.64402,0.42682,0.59145 -1.2614,1.9156,-1.4354,2.1192,-0.79135,0.37462,0.051759,2.0125,0.20521,0.90858,-0.5968,0.25175,-0.48277,0.56381,-0.068331 0.031778,1.9327,-0.35974,2.2308,-0.82141,-0.12468,-0.014212,0.82592,-0.42981,1.7572,-0.73027,0.4453,0.27161,1.2234,0.41504 -0.016391,1.4843,-0.80754,-0.079454,0.21801,-1.3916,-1.7006,2.2077,0.78193,-2.5783,0.26055,-0.3966,0.19461,-0.3661,-0.38159 0.91432,-0.54272,0.6071,3.4719,0.20333,-0.44504,1.0346,-0.50876,-1.1829,-2.1171,0.11894,0.54669,2.2226,0.11508,0.23313 0.20213,1.4276,-0.85847,3.3428,0.50502,-0.44081,0.98376,0.074953,-0.95558,0.067112,-0.88098,-0.93327,0.5268,1.0589,1.0233 -1.0713,-0.28086,-1.2998,2.8418,-1.4852,-1.0195,1.8486,-0.40558,0.35713,-0.82423,0.4758,0.051489,-0.28361,0.11161,-0.19658 -0.95056,0.96684,-1.0908,2.8559,-0.99082,-0.66462,0.83641,0.27214,0.1092,-0.10681,0.25768,-0.28141,0.13271,0.88176,0.46132 -0.10101,-0.33426,1.4279,1.7411,-2.5239,0.21605,0.44392,-1.6529,0.3567,0.39014,0.27942,-0.066014,-0.27958,-0.84555,0.29174 1.408,1.5604,-0.26919,2.2362,-0.86551,-0.55235,-0.47894,-1.0922,0.52338,0.43551,-0.69096,-0.004694,1.2007,0.6675,0.087034 2.9817,-2.9082,-0.32151,0.33302,2.738,1.9407,-1.0569,-0.093446,-0.90415,-1.4069,1.5803,0.2671,1.6542,-0.83164,-0.18333 1.2489,2.1814,0.72757,0.96659,-1.1521,-2.5606,0.65446,-0.96091,-0.38663,-0.026299,-2.0782,0.037336,0.77018,0.41923,-0.039111 -1.1245,-1.4961,1.5956,0.27441,-1.3655,-1.781,1.2572,-1.6853,-0.31865,1.317,0.86647,0.39416,0.87506,-0.52245,-0.89846 0.32973,2.3339,1.2189,-1.2925,-1.228,-1.5448,0.62494,-0.058692,-1.4816,-2.6025,-1.4446,-0.45632,-0.21338,0.092636,-0.03567 2.5674,0.78498,-1.249,1.0672,-1.3501,-0.68569,0.43928,-0.52078,1.6679,-1.5481,-1.4705,-0.50812,-0.10122,0.498,-1.2444 2.5418,-1.4291,-2.6888,0.092352,-2.0901,0.71771,1.1753,1.9172,0.98385,1.75,-0.33245,1.5776,-0.81788,1.0456,-0.99848 5.5501,-4.6338,-1.8363,0.8148,0.2655,0.78808,1.7246,2.0916,-2.2385,-0.32786,-0.68343,0.0067719,0.34684,0.76698,-1.2916 -1.1201,0.0001268,-0.8793,1.4088,0.046703,-0.62785,1.6095,0.95072,0.11629,2.3013,-0.54766,-0.94283,1.1376,0.70972,0.82378 3.0306,-2.6059,-1.7234,-3.0607,-1.9518,-0.49369,1.1119,2.4466,0.71371,-1.1339,1.651,1.6522,-0.16951,0.9085,1.0436 -1.329,-1.0367,-1.0669,2.6742,-0.71209,-1.6055,2.2627,-0.76804,-0.65507,-0.50688,0.67339,-0.80678,-0.17138,-0.27912,-0.11188 -0.14885,-1.0324,-0.51514,2.8246,-0.39125,-1.0905,1.8082,0.078189,0.27044,-0.20649,0.82692,0.074186,1.7629,0.35478,-0.25325 -1.1816,0.3288,-2.336,2.9346,-0.92596,-0.35195,1.8319,0.051845,-0.32949,-0.04207,-0.11172,-0.27756,-0.047282,0.30768,0.43142 -1.3804,-0.14008,-1.2465,0.25358,-0.77206,-0.98156,1.0812,-0.44538,0.46103,2.1867,0.022392,0.50689,2.0808,0.66804,-0.55275 -0.39626,-1.165,-0.50491,2.7525,-0.89642,0.94219,-0.090546,0.090155,-0.74933,-2.6394,1.1425,-0.082475,0.9681,-1.1335,0.69485 1.2488,0.5391,-1.4838,2.8915,-0.27177,-0.45461,-0.55381,-1.2759,0.34216,-1.154,0.46116,-0.83818,0.98721,0.8458,0.61281 -0.9175,0.37052,-4.0393,0.33307,-0.79257,0.22254,-0.21758,0.94674,0.16576,-0.10303,-1.3406,0.4948,0.14532,0.45874,0.77849 -1.4941,0.36931,-3.5244,0.35885,-0.3655,0.34415,-0.13135,0.7427,0.025737,0.79315,-0.8979,-0.64137,0.24737,1.3934,0.26574 -0.73824,-2.6316,-1.8046,2.2302,-0.78895,-0.67029,0.67998,-0.39987,-0.19838,-0.24146,0.53176,-0.61536,-0.046629,-1.164,-1.2928 0.013152,-1.2753,-1.8454,0.52021,-0.25765,-0.39951,-0.74971,-0.81828,0.025643,1.5197,-1.3219,1.9842,0.77604,-1.2325,0.015099 -0.31468,1.9313,-0.26557,0.58478,-1.1055,-0.61582,0.41241,1.8099,-0.72585,1.7611,-1.7338,-0.10263,0.18313,1.0428,0.85593 4.3134,0.17808,1.1909,-0.21864,-1.552,-1.7854,0.057786,-0.65293,0.034775,-1.2475,-0.70283,0.12641,-0.51224,0.8339,-0.99852 2.4853,0.13705,1.1991,0.44182,-2.7848,-0.97695,-1.2021,0.12384,0.57913,-1.2491,-1.1977,0.042953,-0.05765,-0.12586,-0.50289 2.3757,0.246,0.87331,1.671,-0.251,-1.8772,-1.7055,-0.27811,-0.21799,-0.44326,1.8432,0.53161,0.57666,0.96819,-1.1464 -1.1379,-0.057967,-0.51102,-0.52791,-2.1444,-1.1781,1.6937,-0.666,0.024306,1.7742,-0.54901,-0.32383,1.768,0.1535,-0.15742 1.563,-0.2636,1.4045,-0.049674,-2.7676,-1.2039,2.3543,0.59239,0.72639,-0.84198,-1.4918,0.36485,-0.49934,0.39892,-0.33978 1.988,-0.88991,2.5124,-1.139,-3.5533,-0.7654,0.73144,0.87608,-0.31753,-1.5746,-1.2613,0.4211,-1.3137,-0.26024,-0.59867 -0.55408,-0.37847,1.0459,-0.35123,-2.5698,-2.0768,1.6691,-0.87579,0.025273,0.5122,-0.35587,-0.11468,0.84481,0.12444,0.23649 3.5485,-2.6946,-0.61581,1.8131,-0.87555,1.501,-0.00042354,0.68967,-0.53803,-2.5714,-0.85647,-0.30719,-0.66552,-0.43539,-1.3758 1.6399,0.54889,0.91361,1.1026,-1.4527,-2.0388,-1.6748,-0.37889,0.24606,-0.89596,0.76582,0.56842,1.209,1.1366,-0.72894 -0.58185,-2.3921,1.3315,-0.71735,-2.1021,-1.4258,0.1497,-1.5207,-1.122,1.3949,0.76492,0.60446,0.26872,-0.68137,-1.0112 3.9422,-1.036,1.0154,0.88105,-1.2071,0.70899,-1.1127,1.6612,-0.99579,2.436,-0.046782,-0.53919,1.4276,1.6603,-0.12011 5.1584,-2.2041,0.28138,0.90373,-0.56286,-0.78321,-0.22485,-1.3053,-0.17602,-1.3348,-0.45405,-0.69234,-0.028763,-0.0259,-0.40153 -1.081,-3.0456,-0.53292,-0.22933,-0.95673,-1.9632,-1.5424,-0.59257,-0.60025,0.92055,0.22158,1.4973,0.85642,-0.77467,-0.89628 -1.0555,-3.6759,-0.6002,-0.19378,-1.1057,-0.27588,-2.1966,1.4183,0.020507,1.2668,-0.27717,0.015834,0.56778,-0.40025,-0.19349 -0.40422,-3.226,-1.8394,1.2843,-0.80824,0.24135,-1.3369,1.7912,0.099248,0.66393,-0.19545,-1.1802,-0.77415,0.37029,0.026033 -1.0946,-3.3447,-1.0501,-0.2029,-0.4956,0.18227,-1.8207,2.5514,0.27113,0.84436,-0.36013,-1.3779,0.087501,0.31706,0.074758 -0.10741,-4.0179,-1.1802,1.4743,-0.79806,-1.5801,-1.1342,-0.1446,-0.80776,0.53891,-0.092155,0.49208,0.0010183,-0.74409,-0.66347 -0.73171,-3.1278,-1.9108,0.53761,-0.84714,-0.72365,-1.5485,1.8341,-0.0789,0.47506,0.0081831,-0.3145,-0.58215,-0.19002,-0.29785 -0.69107,-2.7327,-1.4417,-0.062644,-1.4484,-0.26052,-2.1261,0.94375,0.074815,0.80333,-0.25265,0.57841,0.54135,-0.32382,0.45702 -0.66235,-3.6131,1.1125,1.058,-0.77949,-0.24824,-0.40776,0.53943,0.38087,1.3267,1.4549,0.20022,0.54522,-0.8286,-1.3478 -0.32928,-1.9671,-2.2861,1.5176,-0.17953,-2.1884,0.018303,-0.28681,-0.731,1.1527,-0.54694,1.501,1.6223,0.21667,-0.71599 2.5988,-0.94727,2.2656,-1.4423,-3.1768,-0.97049,0.81652,2.0988,-0.50852,-1.7688,-0.89922,0.5092,-0.33342,0.2138,-0.487 1.2427,-1.5461,0.98499,0.39597,0.96991,-1.5455,4.9454,-0.072607,-1.9757,0.31625,-2.0397,-0.048228,0.51989,0.72863,-1.192 -0.16407,-2.2731,0.61539,-1.4137,-2.2919,0.94226,-0.929,-0.16272,-0.37652,2.2059,-0.31464,-0.36238,0.77577,0.034937,0.10386 1.1631,-2.2948,1.0091,-1.0405,-3.4507,-0.3878,1.3382,1.526,0.15623,0.20906,-0.89969,-0.14953,-0.65356,-1.3819,-0.83723 1.064,-2.1219,2.0688,0.14476,-2.9704,0.96651,0.14316,1.0723,-0.26972,1.5964,-0.32034,-0.30078,0.61188,-0.67072,-0.036814 0.57895,-3.2356,1.5452,0.23638,-2.3033,1.0789,-0.25995,0.74621,-0.013317,2.5637,-0.67738,-1.0008,1.1374,-0.22891,-0.50889 1.2402,1.7552,1.5691,0.1917,-2.5462,-2.0078,0.81497,0.052499,0.36919,-0.95717,-1.2215,0.23596,-0.076815,0.64697,0.82281 0.12611,-0.16239,1.4505,0.85427,-2.4132,-2.1614,2.4945,-0.76325,-0.38507,0.83455,-0.47995,-0.10875,-0.43885,-0.10991,0.69626 -1.78,-1.4488,1.2391,-0.015335,-1.8665,-1.5357,0.99926,-1.2268,-0.27409,1.0797,1.7378,0.082838,0.24323,0.3369,-0.3847 2.8715,-2.3777,1.8881,1.7303,-2.1974,0.11029,0.40171,0.91944,-0.01399,-0.010619,-0.61083,-1.055,-0.8026,-0.11992,0.96599 0.24932,-3.5026,2.5672,1.6863,-0.96229,0.15059,-0.46822,0.35011,-1.4721,1.6142,1.5838,-0.25324,-0.40307,-0.34338,-0.58198 1.472,0.38628,2.4799,-1.8236,-3.1956,-0.89968,1.349,1.3018,-1.2343,-1.1046,-0.34302,-0.18815,-0.28906,-0.28452,-0.048262 0.033167,-3.81,-0.36379,1.4798,-0.17151,-0.88191,-0.5297,-2.328,-2.0388,0.50386,0.33012,-0.46201,-0.19905,-1.1421,0.059405 1.971,-1.3234,1.1189,3.0915,-0.94662,1.2451,-0.70893,-0.50957,-0.48826,-1.2362,0.50169,0.21109,0.73409,-0.51544,0.86629 -1.249,-0.13871,0.37659,2.4549,-1.329,-0.62291,1.1295,-0.88549,1.0126,1.0478,1.0118,-0.15604,0.037214,0.50014,0.49948 -0.82683,-0.57989,0.56465,1.8773,-1.6855,-0.036202,1.1972,-2.1713,0.58127,0.53808,0.83341,-0.89488,0.039376,0.25693,0.7865 0.37297,-2.0071,0.39252,3.1191,-0.65169,1.6732,-0.43175,0.79458,-0.28351,0.61138,1.3584,-0.73134,-0.1165,-0.056155,0.80669 -0.35162,-2.8668,0.87688,1.7744,-0.080942,2.536,-0.31515,-0.86978,0.23403,1.1318,0.68217,-1.1865,0.4621,-1.3,-0.45146 0.21595,-1.4786,-0.26463,1.6859,-0.039994,-1.1641,0.5206,-2.7806,-0.99052,1.2961,0.80282,0.040819,0.41228,0.21869,0.12438 -2.5365,-0.10984,-2.5697,0.91572,-0.72412,-0.072242,1.7586,-0.29824,0.63945,-0.30669,-0.08073,-0.79154,-0.43227,0.45964,-0.74992 1.8323,-0.21642,0.55858,2.5356,-1.564,1.0581,-0.041948,-1.3027,-0.16051,-1.9441,-0.10523,-0.15892,0.80318,-0.21579,1.2796 1.4616,-0.51134,0.47858,2.7092,-1.6675,0.58297,-1.3131,-0.25924,0.27546,0.64054,0.22312,0.0052521,-0.48105,0.50672,0.77626 0.63322,-0.71471,0.71964,3.0213,-1.5811,1.4232,-0.66241,-0.68945,0.14423,-0.31601,0.81315,0.17767,-0.41015,-0.76083,1.0185 -0.28936,-1.2662,-0.054176,3.5549,-0.30975,-0.2046,0.62909,-0.5183,-0.67664,-1.9052,1.8077,0.17146,0.052241,0.018952,0.7622 -1.9551,-1.769,-0.71984,1.4765,-0.90281,-1.0824,1.1299,-0.027984,0.42825,-0.51878,1.5084,-0.31965,-1.5374,-0.45173,-1.3842 -0.032824,-1.8012,1.2669,2.1368,-1.4888,-0.99132,1.3366,-1.1399,-0.34764,0.38293,0.83143,0.73526,1.1775,-1.1233,-0.7658 -2.0489,0.23129,-1.1416,0.74217,-1.3333,-1.6262,1.601,0.69565,0.4064,0.41942,0.72604,-0.266,0.25779,1.0235,-0.39519 -0.86739,-0.58345,-2.4613,1.0778,-0.44498,-1.8173,0.85432,-0.18253,-0.10168,1.5841,-0.58584,0.17247,1.4459,0.98125,-0.21304 -0.82641,-0.70879,-1.056,3.2341,-1.0207,-0.86908,1.8623,-0.67737,-0.25691,-0.79594,1.0754,-0.44672,0.079954,0.21662,0.18541 -1.2627,0.39674,-1.4461,2.4494,-0.94561,-0.90647,2.2528,0.41281,0.12487,0.25676,0.33636,-0.39237,-0.34262,0.66665,0.12438 -1.745,-0.18557,-2.5077,1.6224,0.041011,-1.1755,1.925,0.76227,-0.1909,0.89069,-0.15269,-0.98742,-0.26841,1.1603,-0.61644 -1.722,-0.26583,-1.4179,2.1501,-0.85551,-1.5883,1.7826,0.58255,0.42282,0.29485,0.91721,0.14613,-0.38351,0.80346,-0.4118 -2.1439,0.54817,-2.7475,0.18994,-1.2283,-0.51513,0.7673,0.97637,0.62928,0.88207,-0.0048654,-0.45097,0.37529,0.91603,-0.41475 -0.5924,0.059069,0.62472,2.4492,-1.6937,-0.12074,-0.34139,-0.70972,0.79936,-0.056946,0.94909,1.1513,-0.24747,-0.35213,0.48026 -2.3179,-0.014401,-0.64478,1.2336,-1.4497,-0.98921,0.99044,-0.82713,0.98141,0.87246,1.1734,0.15472,0.4419,0.28377,-0.28247 -0.59034,-1.1929,1.2059,0.4244,-2.6254,0.11349,0.58032,-1.7977,0.82549,1.1459,0.37467,-0.010703,-0.6984,-1.3124,-0.53861 -1.3388,-2.5384,-0.088892,0.685,-1.1709,-1.0817,0.10201,-0.90669,0.23094,1.3836,1.0779,0.52828,0.571,-1.0139,-1.644 1.2832,-2.4317,0.88281,1.3685,-2.174,2.1362,0.89694,-0.0051565,0.21771,0.81589,-0.49863,-1.0144,-0.14036,-1.2896,-0.44277 -1.8457,-0.79108,-1.8512,0.79418,-0.89274,-1.5914,0.59975,-0.049429,0.63698,0.8291,1.1252,0.19173,0.72091,0.55603,-1.1216 -1.3619,-1.8954,-1.2104,2.1162,-0.82719,-0.79283,0.74298,-1.7915,0.14069,0.29856,0.62304,-0.52977,0.48674,-0.92748,-0.9248 0.81059,-2.6217,1.2412,2.5128,-0.83905,2.3297,-0.17225,-0.70064,-1.1419,-0.16466,1.1053,-0.91482,0.67575,-1.3627,0.50547 -0.28522,-0.95509,-2.296,1.803,-1.6903,1.7662,-0.20973,1.0435,0.80637,-0.42435,0.40903,-1.2635,-0.96512,0.082081,0.58977 -1.1454,-1.4228,-3.4346,2.2442,-0.46076,-0.1876,-0.74977,-0.58829,-0.54799,-0.902,-0.36164,0.42213,-0.75681,-0.82957,0.27742 4.5807,-2.583,1.1894,1.9461,0.10319,0.51292,-1.2399,-0.59986,-2.8596,-0.68645,0.38038,-0.75256,0.44884,0.078072,0.59186 1.7771,-0.79626,0.60554,1.8114,0.35436,-0.95867,-1.0199,-0.023362,-0.69837,0.5002,3.0056,0.47496,-0.032506,0.1425,-0.3064 2.9737,-2.9452,0.08148,1.877,0.56499,1.5786,-1.2935,0.22007,-1.3201,1.5988,1.2867,-0.23605,0.94205,0.48636,1.261 1.6302,0.90459,0.92075,1.4624,-1.0576,-1.6942,-1.265,-0.40383,-0.63497,0.41711,1.5568,0.81469,0.44673,0.73886,-0.54636 3.1753,-0.6182,0.31189,0.82618,-1.2859,-0.24272,-2.3652,-0.38662,0.24876,0.31619,1.2469,-0.47176,0.6331,0.29837,-0.098035 1.4869,-0.90775,0.97797,3.067,0.34785,0.54552,-0.8736,-1.1087,-2.7919,-1.8668,1.9381,0.33048,0.49783,-0.10998,0.42911 5.0688,-2.5821,-1.3145,0.97982,-0.10948,2.2294,0.53795,0.62148,-2.0457,1.4197,-0.56329,-0.6671,1.3409,0.49986,0.088055 -0.79349,0.071471,0.949,1.3415,-2.0838,-0.16842,-0.4962,0.71735,-0.12569,0.83581,1.8871,1.0189,-0.77538,0.4949,-0.13958 2.6284,0.50015,0.35242,1.1511,-1.6273,-1.9097,0.17532,-0.38511,-0.55657,0.66906,-0.44256,-0.26433,0.72343,-0.021491,-0.1122 4.1674,-2.7964,-1.665,-0.14667,-1.4209,0.50378,0.91019,1.7136,-0.085671,1.9665,-0.080614,0.010361,0.47279,0.40054,1.0619 4.2678,-2.1509,0.14905,1.4977,-0.71609,1.3226,-0.91115,-0.070141,-0.63533,0.38318,-0.47728,-0.96257,0.51592,-0.4965,-0.32058 1.2702,-0.15329,0.54473,1.3029,-1.2911,-0.11523,-2.277,0.60788,-0.30582,-0.69761,2.1138,0.33972,0.20799,0.56462,-0.49479 2.0798,0.28468,-0.1119,2.6098,-0.53449,-1.0523,2.6925,-0.67676,-1.8975,0.16125,-2.1779,0.016265,0.77791,0.14775,-0.20044 0.40611,-1.1926,2.4039,0.071248,-1.9114,-1.3142,1.0701,-1.0611,-1.6457,-0.22788,0.69672,0.41302,0.31246,-0.076262,-0.72829 1.3783,-0.84325,2.4729,2.3377,-0.18287,-0.95514,0.53432,-0.83601,-1.063,-0.25493,0.71671,1.2013,0.66969,-0.82352,-1.1293 0.53478,-2.1436,2.8632,1.037,-0.53139,0.17629,-0.99303,1.9231,0.24357,-0.27294,1.0147,0.49113,0.090821,-0.93773,-0.78424 -1.6184,-1.0681,-3.2233,0.79271,1.6796,-2.4667,0.79173,1.0181,-1.4641,0.74314,-1.1658,-0.2249,0.043497,1.1742,0.014803 -3.1528,-1.2628,-1.5713,-0.72695,-0.19284,-2.6615,-0.2067,-0.42594,-0.53468,0.0064864,0.53336,0.064797,0.093587,0.51908,-0.39324 -1.525,-1.5384,1.8392,0.7315,-0.29393,-1.7859,0.77955,1.6483,-0.12285,-0.73061,1.4347,0.25126,-0.58811,-0.90945,-0.8486 -1.0243,-1.5457,1.4286,2.6097,0.62694,-1.2563,0.89377,0.94077,-0.56095,-1.1094,1.6777,0.16992,-1.2943,-1.0171,-0.83401 -1.6924,-1.6234,0.43299,0.58954,-1.6252,-2.3737,1.4424,0.1242,-0.30796,0.75067,0.95574,0.2304,0.93273,-0.18223,-1.0818 -3.5887,-1.7963,-0.41819,-1.6983,0.0456,-0.82566,-0.86907,-1.0513,-0.80679,-0.63109,0.92758,0.093961,0.019887,-0.54615,-0.67936 -1.472,-2.7307,1.5355,1.168,0.26504,-0.55284,0.39916,1.6714,0.21491,-0.39656,2.1186,-0.32742,-0.93822,-0.58366,-1.2337 -3.6838,-2.1838,-1.3032,-1.1673,0.26938,-0.96893,-1.6669,-0.5949,-0.56033,-0.38971,0.7025,0.74678,-1.0588,-0.46674,-0.71998 -2.3648,-0.25205,-0.99921,1.3247,0.58189,-1.6412,2.2656,1.4707,-0.76866,0.96481,0.26253,-0.7612,-0.45061,0.76949,-0.76774 -0.46113,0.46191,-0.19651,2.4027,-1.6329,-1.1385,1.5433,-0.49278,0.2968,0.084196,-0.12955,0.53475,1.2175,0.030315,0.43554 -0.71616,-1.0101,-0.86567,2.3862,0.17199,-0.47966,1.7,0.72439,0.7456,-1.3646,0.76846,-1.1929,-0.68354,-0.27885,-0.10059 0.7813,-2.868,1.1404,2.2561,-0.12894,2.5548,0.55845,2.4264,-0.092938,0.12814,0.12701,-0.60885,0.78298,-0.48909,-0.45071 1.2919,-2.8869,1.8017,2.3419,0.34992,0.60766,-0.432,3.0297,0.15497,-0.51006,-0.0059373,-0.21806,0.88342,0.15916,-0.052453 -1.9454,1.1739,-0.050627,0.47078,-0.37647,-1.0426,1.3921,2.1775,0.60711,0.28144,-0.28677,-0.05272,1.0153,0.90259,0.50353 0.11322,-2.9239,-0.24427,1.7553,-0.22612,0.61717,-0.090587,0.63164,0.68283,-0.40368,0.5921,-0.51001,0.72184,-1.8823,-0.56746 -0.89728,-1.0261,-0.32986,2.7004,1.6818,-0.415,2.634,0.46755,-0.78319,-1.6733,0.307,-1.198,0.69496,-0.4258,0.021597 -0.49049,0.13926,-0.15759,2.2186,0.28457,-1.8632,2.986,1.1732,-1.3125,-1.5401,0.18342,-1.1774,-0.11644,-0.39885,0.19765 0.045975,-1.4618,0.069639,1.2126,-1.3798,-0.019377,1.3454,-0.28743,1.0556,0.54312,0.43612,1.111,1.2251,-0.90558,-1.4563 0.82813,-1.3725,0.15964,2.9537,0.82072,-0.026749,0.43854,1.6271,-0.12837,-3.0799,0.21451,-0.90624,-0.12239,-0.1664,0.86134 -2.1237,-1.1293,-0.79565,0.14426,1.1025,-2.3442,1.4898,-0.21651,0.73394,0.19105,-0.2218,-0.96799,0.69622,0.87,-0.28929 -0.18508,-0.91471,0.78782,2.4686,0.38806,-1.5189,1.8165,1.4872,0.28712,-1.687,0.42081,-1.0704,-0.31718,-0.60397,0.38296 -2.0401,-2.2101,0.0071346,2.2593,-0.72714,-0.96145,0.4395,-0.30597,0.45495,-0.13061,1.7291,-0.69134,-1.6432,-0.69135,-0.87617 -1.0707,-3.2918,-0.46614,1.6767,-0.34237,-0.79569,-0.87665,-2.1296,-0.49206,0.77134,0.23878,0.4754,-0.04072,-1.6432,-0.82667 -1.7565,-2.2476,-1.3612,1.267,-0.41591,-1.8244,-0.9035,-2.1346,0.021534,1.1326,0.08647,1.0487,-0.11311,-0.836,-0.58779 -2.0138,-2.7998,-1.3406,1.7467,-0.46327,-1.3074,-0.7676,-0.84417,0.69572,0.35656,0.80898,-0.23933,-1.0107,-0.69592,-0.79128 -1.2788,-1.7945,0.025301,0.84799,-1.9484,-0.48762,-0.30905,-1.9838,0.82247,1.4335,0.81792,-0.17985,-0.42048,-0.65356,-0.71295 -1.7675,-2.692,-0.27157,-0.42445,-1.2359,0.10209,-2.7382,-0.012736,-0.076898,2.1605,-0.11973,-0.15495,-0.0081983,0.271,0.43551 -0.80738,-2.376,0.84226,0.82799,-2.6185,-0.47939,-0.1077,-0.72024,0.78803,1.3331,-0.0022663,-0.93517,-0.27878,-1.2043,-0.23393 -1.5431,-3.7036,-0.16421,1.4742,-0.11441,0.043189,-1.7452,0.60164,0.54298,1.4332,0.32078,-1.2107,-1.0379,-0.64685,-0.33644 -0.21128,-3.7691,-0.89353,1.3864,-0.92577,-0.97334,-1.3943,-1.4723,0.10456,1.1218,-1.1206,0.273,-0.11232,-1.59,-0.17633 -2.5364,-2.7339,-1.2939,-0.41346,-0.62952,-0.87446,-2.5553,0.76186,0.12775,0.6329,0.232,-0.025744,-1.3918,-0.4854,-0.29155 -1.8044,-3.3282,-0.8112,0.76827,-0.78666,0.079787,-1.4454,1.5682,0.71332,1.0762,0.27502,-1.8783,-1.1665,0.38799,-0.53695 -3.0657,-2.39,-0.77104,0.26574,-1.0482,-2.376,-0.75609,-0.65412,0.32659,0.10512,0.927,-0.12516,-0.8396,-0.35059,-0.99497 -1.0523,-2.8796,0.57259,0.48591,0.7845,-2.8666,0.7061,1.3264,-0.70213,-1.4475,-0.48184,-0.49025,-0.72862,0.35108,0.58862 -1.4222,-2.6206,-1.0144,0.41428,0.23548,-3.2958,0.58312,0.48516,-0.80246,-0.76996,-0.85736,-0.13111,-0.69916,-0.26965,-0.37409 -0.7148,-0.10006,-1.1207,-0.37914,0.086399,-2.541,0.75188,2.0012,-0.89769,-0.91681,-0.79873,-0.25177,1.4183,0.98556,-0.048041 -1.7439,-0.78212,-0.69292,0.22156,0.069735,-3.037,1.8257,1.3461,-1.2272,-0.75258,-0.85304,-0.73374,0.063368,0.68944,-0.91682 -0.2932,-2.2277,1.0749,0.16401,-0.61765,-1.4398,0.2261,2.7241,-1.1261,-1.4528,-0.76613,-1.058,-0.47762,0.75323,-0.81728 3.9346,1.5109,-0.54603,-2.0642,1.9496,-2.9428,1.4265,1.6966,0.15021,0.28529,-0.82974,-1.4563,-0.073074,0.16216,-0.13581 2.6103,3.2638,0.062119,-2.7536,1.3872,-2.0921,0.078021,0.77547,-0.84744,0.67337,-0.30712,-2.039,-0.038514,0.15907,0.98678 2.9918,1.2387,-1.0845,-3.0995,-0.92405,-2.6141,0.7556,0.24199,0.12868,-1.7311,0.75778,-0.84403,0.71971,0.48527,0.76865 1.5932,3.2167,-0.85121,-2.3762,0.2825,-0.14723,-0.94666,1.5183,-1.0902,0.35269,-0.51628,-2.2188,-0.11982,-0.66896,-0.063014 5.8173,-2.2482,0.88524,-0.59229,1.0271,-2.7727,1.4421,-0.43123,-1.0552,-1.1858,-0.11822,0.016886,0.14435,0.76115,0.26207 -2.24,3.0967,0.032454,0.38767,0.14629,1.4595,0.069839,1.6364,-2.3778,0.43388,-0.77593,-0.066004,-0.083277,0.064562,0.48678 4.8798,-0.2271,0.74674,-1.7124,1.0058,-2.8705,0.42055,-0.53884,-0.75287,0.31846,0.48611,-0.89635,-0.34091,0.50593,0.8744 2.7411,2.1887,-1.2608,-3.3268,-0.64056,-2.2179,0.32258,-0.22288,0.37937,-0.75237,0.17231,-1.5257,0.78054,0.04352,0.69395 2.8539,2.8278,0.36498,-1.7022,-0.13829,-3.3345,-0.075469,-0.16012,-0.15401,-0.34174,-1.234,-1.6315,0.14706,0.92476,0.0022836 5.0299,0.13003,-0.97043,-3.0479,0.79716,-2.9218,1.8558,0.41388,0.77485,0.53452,0.049628,-0.045903,0.018644,0.4113,0.41581 5.1396,-2.1888,-0.76895,-2.241,0.31732,-3.0327,1.5267,1.1932,0.62906,-1.8674,0.98878,0.97633,0.39637,0.59773,-1.1297 6.3702,-3.8691,0.0609,-1.6377,0.015637,-1.4938,1.6439,-0.035392,-1.4688,-0.23375,0.70452,1.365,0.12614,0.62555,0.1889 0.83087,-1.3765,2.2607,3.1029,-0.69699,0.37243,-0.8433,0.54017,-0.40839,-1.1071,2.0737,0.41049,-0.55221,-0.13383,-0.045152 -0.10106,-2.343,1.2638,2.9179,0.2684,1.7406,-0.29303,1.7007,-0.87142,-1.5124,1.9133,-0.80322,-1.1947,-0.84341,-0.16717 0.33725,-1.8908,2.0206,2.9714,-0.9519,-0.45295,0.42137,-0.34148,-0.50636,-0.43129,2.0732,0.3769,-0.05387,0.082201,-0.23122 0.052701,-2.3944,0.73357,1.3762,-1.1392,-0.73037,1.511,-2.0089,-1.2798,0.99265,0.82853,0.38132,0.85227,-1.0383,-1.6035 -1.7301,-1.7899,0.56279,0.19742,-1.943,-1.0435,0.27405,-0.73605,-0.27442,0.18976,1.5928,0.34252,1.2537,-0.4686,-0.9884 0.18455,-2.0148,0.99264,2.0585,-1.5615,1.1481,-0.40404,0.90816,0.31421,1.3183,1.6325,-0.56683,0.037974,-0.1112,-0.068522 -1.1719,-2.5004,0.27516,2.0082,0.18353,1.0723,0.64881,0.7751,-0.015989,-1.5616,2.222,-1.355,-1.8748,-0.91315,-0.4759 -2.0359,-1.6477,-0.49086,2.0218,0.65262,-1.1941,1.1846,-1.1912,-0.52691,0.28077,1.9699,-0.27884,-0.43796,-0.32808,-1.4877 1.235,-3.1188,0.41168,2.1367,0.16929,2.3544,-0.70537,1.4587,-0.40622,0.89305,0.74282,-0.77765,0.9782,-0.57157,-0.3438 -2.1349,-1.7276,-0.93297,1.0076,0.33893,-1.7953,0.44658,-1.1479,0.3678,0.61656,1.3798,0.044273,0.11108,0.24308,-1.5356 -1.0887,-3.1152,2.4575,1.7385,0.08646,0.78558,-0.82784,1.0622,0.23145,0.91501,1.8751,-0.80066,-1.2266,-0.095935,-0.31948 -0.37587,-0.3705,1.6855,0.58473,-2.5143,-1.6119,2.3655,-2.1412,0.03434,-0.15214,-1.0528,-0.65398,-1.188,-0.10782,0.60298 4.1734,-2.3329,1.993,0.37866,-2.3754,0.78615,0.12127,2.2144,-0.71051,-0.58672,-1.1035,0.67079,-2.4303,0.59221,-1.47 -2.6972,-2.0895,0.26562,-0.69567,-1.4191,0.60416,-1.8384,0.25123,0.25441,1.5108,1.0726,-0.41982,-0.15123,-0.58003,-0.54264 -1.9067,-1.2972,-1.3677,-0.89852,-0.88251,-1.4115,-2.3134,-1.7812,-0.94894,0.68511,-0.27613,2.0606,-0.19297,-0.42533,0.57351 0.62819,-2.8336,1.2008,2.1841,1.0099,2.2364,0.23514,3.4683,-0.11112,1.0405,-0.22818,-1.4472,1.3526,-0.048226,-0.82 -2.3292,-1.0456,-2.0872,0.32398,0.13727,-1.9704,-1.0456,-1.3637,-0.12323,0.89736,0.21006,1.7646,-0.17278,0.90099,-0.38714 -1.9141,-3.0842,0.16185,-1.1152,0.14248,0.28447,-1.8074,1.7058,0.69038,0.88124,-1.1664,-1.2338,1.0154,1.199,0.28541 0.67114,-3.0635,-1.468,-1.4997,-1.4544,-0.94704,-1.8993,0.8472,-0.70117,-0.51584,-1.3025,1.8395,-1.522,-0.51959,1.5613 1.2911,-4.1868,0.26547,0.58318,-0.20724,3.7687,-0.40353,-0.66036,-2.3676,0.67788,-0.80393,-0.32525,0.80416,-0.51764,-0.41806 1.5011,-4.0077,1.595,1.0422,-0.85646,0.070259,1.6696,-2.1774,-1.0383,-0.72466,-0.77796,-0.87612,-0.012026,-1.1234,-0.72382 -1.9443,-2.5904,-1.5411,1.51,-0.41145,-2.4372,-0.47609,-1.4021,-0.96017,0.28535,0.3508,0.40678,-0.78916,-0.86819,-0.60256 -2.633,-1.0227,-2.9738,-0.49801,0.55553,-1.942,-1.7189,0.46469,0.017604,-0.49485,-0.49899,1.6997,-1.5071,-0.78076,0.024658 -3.6194,-1.9548,-2.2192,-1.6567,0.84843,-0.56446,-2.4439,0.53903,-1.0379,-1.2704,-0.71528,0.79249,-1.6896,-1.168,0.55313 -2.0887,0.1692,-3.4256,0.06212,-0.6412,-1.8912,-0.51718,0.29181,-0.29291,0.54904,-0.43421,0.71777,0.50364,0.91189,0.081039 -1.5387,-3.1728,-0.38811,-0.27007,-1.5785,-1.5706,-1.6122,-0.71352,-0.32623,0.61611,0.073073,0.50004,0.62222,-1.1889,-0.69778 -2.3409,-1.5114,-3.3914,0.076496,-0.19545,-1.8745,-0.92178,-0.29795,-0.65908,-0.70671,-1.0214,1.1912,-1.8041,-0.74631,-0.46131 -2.6264,-1.6606,-3.2526,-0.73355,-0.99199,-1.0491,-2.3771,0.13635,-1.2766,-1.2494,-0.35109,1.3043,-1.3635,-0.65444,0.55096 -2.7068,-1.7822,-3.0662,-0.68798,-1.1707,-0.46137,-2.3444,-0.25344,-1.3307,-1.1351,-0.3293,0.89166,-1.0197,-0.58683,0.60133 -1.0676,0.80471,-2.8241,-0.43674,-0.41677,-1.1747,-0.3325,-0.14793,-1.2918,0.7989,-0.081245,1.8428,2.0141,0.48696,2.0644 -1.7912,-1.9328,-1.9244,0.42122,-1.9788,-1.1712,-1.3704,-0.89929,0.6651,0.65213,0.19054,0.11263,-0.39358,-0.68613,-0.40025 -1.5111,-1.4989,-3.2261,0.36366,-1.095,-0.55674,-2.3248,0.95623,0.29374,-0.45682,-0.4233,0.89922,-1.9118,-0.61285,1.0832 -0.85594,-2.8597,-1.2736,2.5511,-1.2194,0.85106,0.30021,-0.30189,-0.26242,-1.045,0.8817,-1.6123,-0.80345,-1.2558,-0.28309 -2.7986,-2.0181,-0.89595,0.35768,-1.5712,-1.5368,0.13765,0.7996,-0.29422,-1.1347,0.47184,-0.54868,-1.5783,-1.1328,-1.3879 0.099997,-3.1274,1.6296,0.64709,-2.2361,-0.66983,-1.0275,0.94036,-0.56611,-0.265,-0.095477,-0.902,0.83657,-1.1117,-1.0315 -1.9747,-2.1046,1.0868,0.043903,-2.3308,0.45344,-0.7373,1.6341,-0.66886,-0.67349,1.0527,-0.75895,0.77956,-1.6049,-0.28398 -2.5556,-2.2294,-1.7405,1.0853,-0.76732,-2.3769,0.97187,-0.67009,-1.0878,-0.80018,-0.12915,-0.12428,-1.6843,-0.43333,-1.2902 -2.8585,-2.0484,-1.2074,-0.16469,-0.65749,-2.6327,-0.14413,-0.36523,-1.0859,-0.57614,0.77126,0.29641,0.56125,-0.50145,-1.4364 -1.3433,-2.8475,0.95163,1.363,-1.3994,-0.4196,-0.89717,1.6763,0.62637,0.0403,0.89065,-1.4171,-0.40471,-1.2277,-0.75744 -1.3071,-3.9502,0.34939,0.61635,-1.5982,-1.2548,-0.623,0.24147,-0.058126,0.81281,0.40153,-1.0739,-0.37345,-1.1528,-1.1496 -2.4131,-2.3722,0.34912,0.0086391,-2.0722,-1.0756,-0.28585,0.99308,-0.71491,-1.2727,1.1563,-0.73775,0.017068,-1.5179,-0.90488 -2.354,-2.2409,-1.9676,0.66579,-0.98846,-2.8242,0.061934,-0.16867,-0.72367,-0.78932,-0.028005,0.42634,-0.48141,-0.3737,-1.2693 -2.3526,-3.0659,-1.3983,0.32636,-1.2774,-1.73,-1.4338,0.1133,-0.14157,0.30052,0.14456,-0.071128,-0.3552,-1.3294,-0.99651 -2.1693,-1.3349,-3.4603,-0.30957,-1.6221,-1.6888,-1.3585,-0.38874,-0.49297,-0.50084,-0.63947,1.1087,-1.1426,-0.12297,-0.37219 -1.095,-2.7394,-2.5194,2.4038,-0.70152,0.38467,-0.64063,-1.033,-0.66076,-0.62866,0.1223,-0.42166,-0.39482,-1.3121,-0.073216 -1.2296,-2.385,-1.0619,-0.36177,1.4625,2.1917,-1.2019,-0.7846,-0.059076,-0.79801,-1.7909,0.60617,-0.61906,0.23192,2.0259 0.75887,-2.8045,-1.8901,2.1189,-0.44135,1.2253,-1.07,-0.4257,-0.21713,0.34924,-1.0848,1.07,0.40879,-1.732,0.4394 -0.22665,-1.8146,-3.2994,1.8517,-0.94423,1.7737,-0.86215,0.48593,-0.76472,-0.80396,-0.48163,-0.45727,-0.46274,-0.53494,0.82101 -0.13832,-2.5318,-2.4368,2.5871,0.43593,0.63321,-1.1988,0.89047,0.097582,0.0095267,-0.43321,-0.11932,-0.4418,-1.2238,0.90404 -1.077,-0.6612,-2.8062,0.94184,-1.5262,-0.39926,-1.6534,0.48387,0.35618,-0.10288,0.38219,1.303,-0.18077,-1.0483,0.82809 -2.08,-2.6622,-1.1698,-0.98325,-0.79485,0.39035,-2.37,1.4552,0.5197,0.88992,-0.30053,-0.68495,-0.17159,0.37888,0.47689 -0.56134,-3.2571,-2.2572,2.0876,0.80169,1.0225,-1.4398,0.55277,-0.1499,0.19242,-0.34739,0.033515,0.077103,-1.1617,0.10749 -0.96044,-1.3801,-3.3043,1.9844,-0.7844,-0.4766,0.35811,-1.8751,-0.42821,-0.51223,-0.48321,0.12445,0.27431,-0.14802,0.026309 -1.8276,0.83313,1.0954,0.24854,-0.088972,-0.94241,0.94454,-0.066881,0.78211,0.35109,-0.80142,1.852,0.83696,-1.6968,0.0604 -3.475,-0.41904,-2.815,-1.4765,0.72598,0.23981,0.094065,-0.093827,0.67867,-1.3842,-1.0481,0.21777,-0.42027,-0.25343,-0.27503 -2.4138,-1.2339,-2.8911,0.53898,0.30453,-0.51248,-0.1332,-0.86335,1.4272,-0.84519,-0.52823,0.14934,-1.1867,0.57454,-0.45982 -3.0237,-1.2511,-2.544,-1.1858,1.1422,0.32286,-0.43099,-0.86952,0.11802,-2.4037,-1.5611,0.42314,-0.68138,-0.80567,0.62563 -3.8492,0.51388,-2.3952,-0.97818,1.0436,0.90781,1.1951,-1.1014,-0.047654,-0.60748,-0.50229,0.034603,0.71594,0.71676,-1.564 -2.2038,0.67754,1.9647,-0.5685,-0.11227,-0.39856,1.2929,-0.52342,1.7083,0.03022,0.30923,-0.16674,1.2993,-1.555,0.32703 -0.28114,2.4713,-1.8432,0.45359,-0.21084,2.3905,-1.3532,0.45147,-1.1656,-0.28093,0.1521,-0.80019,-0.17097,0.078292,-1.0032 -0.98073,-0.19455,0.97766,-2.2127,-2.2896,2.3935,0.59796,0.20236,-0.44303,-0.50575,0.18194,-0.75796,-1.5974,-1.5977,0.061492 -3.258,-0.43979,-0.77066,-0.75046,0.06936,-1.1253,-0.13668,-0.71913,1.6592,-0.1745,0.026729,-0.3169,0.26088,0.045517,0.064835 0.64233,-0.2594,-1.7537,0.042907,0.034977,1.3981,0.10965,-0.25702,-1.7444,-1.1284,1.779,1.0406,0.23812,0.63402,0.14881 -2.2657,-2.1743,1.1475,-0.047048,1.7202,-0.2652,-0.5694,-1.2694,1.4467,0.38533,-0.65471,-0.56119,-0.20155,-0.5683,0.64036 1.998,1.8143,-0.15568,-1.2702,1.7375,-0.71522,-0.3399,-1.4208,1.2406,0.9672,1.5252,0.41037,1.5893,-1.4279,0.2274 0.14845,1.5598,2.5596,0.45734,0.53704,-1.139,-1.0745,1.0135,1.642,-0.48573,-0.115,0.68813,0.4722,-0.82987,1.2486 -3.6745,1.3597,-1.2035,-0.52962,0.19225,0.63455,2.0524,0.76801,0.21556,-1.3426,0.37904,-1.1977,-0.044134,-1.4608,-0.23658 -3.4071,0.40753,-2.4301,-1.0787,0.28311,0.29221,-0.23099,-0.80925,0.13,-0.13801,0.081809,0.92988,0.55625,-0.033919,-0.55873 1.053,1.6899,0.70056,-0.83087,-1.8062,2.4411,0.29876,0.53853,-0.64309,-1.9518,-0.22339,-0.1589,-1.3722,-1.1722,0.75233 -0.46056,3.2956,1.4679,0.18124,-1.1879,0.34586,-0.62115,-0.59057,-0.25493,0.49797,-0.13422,1.5133,-0.90966,-0.0028369,0.40088 -2.6111,-1.3726,1.2203,-1.6363,0.088656,0.36054,-1.0643,0.8695,1.7309,-0.55689,0.089148,-1.3502,0.91919,0.85344,0.76733 0.30964,2.9041,1.463,0.2435,-0.029038,0.022731,-1.1119,-0.3434,0.81627,-0.13332,-0.70891,1.2841,0.85758,-1.7478,0.37035 -0.21276,0.51821,1.7972,-0.38863,-1.7589,1.2203,0.64218,0.63152,-0.84703,-2.1773,0.058416,-0.68193,-0.19693,-1.8899,1.181 -1.567,4.0736,-0.33611,0.31424,0.22798,0.85427,-0.64062,1.2399,-1.5027,-0.21649,-0.53159,0.62548,0.68403,-0.82527,0.024942 -2.2398,0.43629,1.8133,-1.5506,-0.26713,-0.099495,0.63894,-1.2961,1.6247,0.78876,-0.073674,-0.51459,0.32511,-1.0252,0.098136 -3.7463,-0.81891,-0.96523,-1.4333,0.90523,1.3224,-0.4086,-0.68624,0.19384,-2.1208,-0.33155,-0.23427,0.36417,0.3191,-0.5081 0.35906,4.0239,0.21713,-0.83613,-0.61118,-0.080635,-0.4325,0.24554,-0.55817,0.36342,-1.7899,0.16551,-0.59514,-0.5199,-0.099191 -3.5361,0.45833,0.63537,-0.52912,-0.25317,0.83533,1.4397,-0.93717,0.65724,-0.27636,1.3214,1.0777,-0.71343,0.47798,-0.66584 -3.3618,0.75366,-0.069077,-0.51293,-0.83475,1.4391,1.0839,-1.3342,-0.18147,0.19554,1.4086,0.21654,0.31061,0.52456,-0.98536 2.4884,0.65073,-2.3551,-0.25636,-0.1191,-0.13128,0.9567,-0.82406,0.46628,1.7229,0.51405,-1.1617,-1.4873,0.062606,1.6143 -2.5617,2.5462,0.59676,-0.56462,-0.79848,1.3648,1.8391,-0.96658,-0.32345,0.57583,0.51828,0.22227,0.34848,-0.26358,-0.077863 -2.8245,0.81078,-0.11055,-0.05914,-0.44202,-0.40365,0.79376,0.48213,1.5326,-0.080238,1.0475,-1.0823,0.65333,-0.79405,0.16231 1.8772,1.2623,-2.7297,-1.5988,-0.36969,0.76741,0.24629,0.54244,1.1016,1.0902,0.86111,-0.18776,0.37461,-0.4628,0.62104 -3.261,1.286,-0.29963,-0.52497,-0.16794,1.8043,1.1677,-0.88808,-0.25069,1.0756,1.0035,0.16879,-0.048125,0.77262,-0.89416 -0.21865,3.291,-1.1846,1.2627,-0.48592,2.3484,-0.38508,0.40644,-0.34859,-0.37107,-1.4969,0.083432,-0.082221,-0.54714,0.0030747 -3.6245,0.52433,-0.57886,-1.0235,0.4221,0.065654,0.95444,-1.7432,0.36223,1.365,0.60287,0.71617,0.44759,0.99069,-0.85138 -3.9996,-1.6031,-0.76491,-1.3597,0.29035,-0.52007,-0.75991,-0.39456,1.1076,-1.2179,-0.02697,-0.30572,-0.45506,0.94309,-0.59628 3.4823,0.45687,-0.83515,-0.20905,0.27219,0.70968,-0.61408,-1.5612,1.6786,-0.81172,-0.15261,0.25021,-0.58462,0.11527,-1.6384 2.7741,1.3136,0.56442,1.1941,0.65422,0.36966,-0.72942,-2.3781,-0.8884,-0.50898,-0.69607,-1.2775,-1.1373,0.504,0.56943 1.4557,1.8287,0.38154,-0.063693,-1.1383,0.44267,-2.5838,-1.0632,1.3827,0.62081,-0.20954,0.13821,-0.38451,0.26984,-0.86926 -2.5547,1.275,0.1751,-0.54867,0.19004,1.1497,0.38705,-0.61587,0.14434,-2.5453,0.99143,0.65266,0.68702,0.9525,-0.88516 0.34204,2.687,1.4161,2.0643,1.1503,0.029934,-0.6373,-1.2935,0.56221,0.88722,-0.68199,1.22,-0.6526,0.19026,-0.26791 -1.6861,1.3153,1.3753,1.4535,0.54325,0.87844,0.061845,0.4643,0.94327,-0.33129,0.72926,1.1544,-1.1449,1.1734,0.71704 -1.8861,0.58056,-0.6692,2.1422,0.047468,1.255,1.6195,-1.5801,0.096537,0.52488,0.77652,0.66748,-0.051965,0.17257,0.56077 0.77692,2.8208,1.2081,0.78027,1.9495,-0.88615,-2.2388,0.16009,-1.6308,1.4479,0.73828,-0.1566,-0.96251,-0.15993,-0.60351 -2.2192,-0.59825,1.8999,-1.6389,-0.026029,0.0144,0.0078879,-1.3388,1.8349,0.044976,0.25621,-0.36011,1.0628,0.83443,-0.23284 -3.8285,-0.76513,0.11595,-0.48563,0.21381,-0.57871,0.82831,-0.178,1.8736,-1.0387,0.69067,-0.76498,-0.67309,1.0982,-0.76207 -3.4458,-1.5931,-0.50313,-0.76525,0.55431,-0.63582,-0.63961,-0.68414,1.6868,-0.88814,0.16991,-0.40139,-0.59512,1.4942,-0.22216 -3.7329,-0.92182,0.30062,-1.4557,-0.26369,0.83386,-0.13128,-0.92515,0.44205,-1.7423,0.94337,-0.79525,0.73443,0.97937,-0.60061 -4.0061,-1.0507,-0.99979,-1.4616,0.59884,0.21031,-0.51466,-1.0093,0.7815,-1.233,0.29813,0.14443,0.20054,0.97138,-0.52999 2.1579,3.2265,-1.6403,-3.4836,1.7081,1.1384,0.62788,1.0203,-1.6545,0.72543,0.6158,-0.88072,-0.97259,-0.90686,0.34072 1.3584,4.1564,0.041116,-0.76415,-0.32589,-0.14675,-1.1435,-0.71758,-0.53965,1.0178,-1.2552,-0.37491,-0.79745,-0.14869,-0.89513 2.7259,0.83523,-2.5586,0.62491,-0.21769,0.4303,0.14263,-0.63104,1.2623,-0.81176,-0.26153,-0.85048,-1.1083,-0.33672,-1.0966 -3.3782,0.77942,-0.013875,-0.52331,-0.040203,1.8842,1.2804,-0.83662,0.62188,-0.98909,1.202,-0.30912,0.4764,0.24097,-1.0884 1.0724,0.54413,-0.38345,1.5391,2.358,0.52754,-2.1184,-0.32162,1.9288,0.56774,0.38887,-0.084387,0.13613,-1.4395,0.28335 -3.7831,-1.9643,-1.3633,-1.8792,1.2411,0.75586,-1.4084,-0.47347,0.082536,-2.4228,-0.72551,0.35452,-0.19975,0.77933,0.53973 -2.2093,0.81103,0.019632,1.8774,0.57532,-0.17711,1.7149,0.5971,1.1066,-0.35411,0.68331,0.075101,-1.1543,1.388,0.16444 -2.3066,-0.99025,-2.1226,-0.62957,0.82352,0.17115,-1.4869,0.15412,0.34307,-2.0842,-0.17579,1.4696,-0.148,-0.19977,2.1368 -1.808,-0.8905,-2.9509,-0.56753,0.46719,0.86594,-1.2026,1.1879,0.67144,-1.7362,-1.2304,0.84271,-0.59841,0.13467,1.6077 1.3893,2.813,2.2714,-0.11106,0.26225,-0.45564,-1.8598,-1.0328,0.41984,-0.038832,0.70521,1.117,-0.5079,2.231,-0.027406 -2.9294,-1.2521,-0.90369,-1.7141,0.9791,-0.50705,-1.8985,0.49085,0.5032,-0.84183,-0.60867,0.31516,0.20769,0.49417,2.084 -2.3406,-1.4023,-2.0644,-0.56145,0.867,-1.993,-1.5261,0.53632,0.56969,-1.5912,-0.75289,1.4466,-1.5624,0.097405,1.9077 1.2206,2.3281,1.4979,0.69875,0.82735,-0.1704,-2.169,-0.37358,1.1998,0.34129,0.63342,1.0686,0.40708,0.42889,-0.41994 -0.98126,3.4777,0.76113,0.63889,-0.92299,0.34611,-0.3077,-0.41785,-0.05661,-0.030232,0.08086,1.7031,0.45736,0.83066,-0.10912 -0.29617,2.5957,1.2652,0.60816,-0.10237,-0.206,-0.86159,0.045449,0.94253,-1.2375,-0.21256,1.1132,1.3676,-0.38529,0.12276 -2.671,-0.51679,-3.0874,-0.56039,1.0206,0.0094813,-0.5907,-0.29324,0.050882,-2.7029,-0.90141,1.392,-0.35411,-0.25421,1.1299 -2.571,-2.6629,-1.3958,-0.87789,0.85743,-0.33945,-1.2489,1.2078,0.96252,-1.1031,-1.3484,-0.64282,-1.4887,2.0592,0.85979 -2.8776,-0.091666,-2.7355,-0.94961,0.74789,-0.58437,-0.62756,0.020544,0.043268,-1.6649,-0.77198,0.74112,-0.091687,0.097704,1.1416 -3.3783,1.9607,-1.4749,-0.5197,-0.12341,0.841,1.1259,1.6934,0.2229,0.80802,0.49135,0.51208,0.48299,-0.85479,-0.2613 -1.7531,-1.8114,-2.5844,-0.14557,0.23711,0.76148,-1.7858,1.2123,1.2625,-0.77731,-1.2267,0.93157,-0.80083,1.4372,1.4354 -2.6233,-1.0037,-1.1148,-1.3458,0.4839,0.27994,-0.92018,1.364,1.5856,-0.96304,-0.11451,-0.67702,-0.24057,1.1633,0.40624 0.72291,-3.578,1.5448,0.0033095,0.61394,-0.25607,1.2152,2.5181,0.0017368,0.99288,-1.3519,-1.006,0.99266,0.49784,-1.3843 -1.6433,-1.9226,-2.5095,0.51576,0.41781,-0.27264,-1.4932,1.4085,0.89899,-0.59195,-1.3994,0.25791,-1.3857,1.1659,1.5921 -2.7301,0.70109,-3.2303,-1.1617,1.8413,-1.0323,-0.63448,0.87868,-0.29949,-1.1201,-1.211,1.5365,-0.9987,-0.38258,1.3003 -1.652,0.083568,2.7683,0.59012,1.0807,-0.75844,0.83268,0.92894,2.4539,-0.32109,0.65014,-0.59321,0.64224,0.81107,0.38496 2.3491,-1.0292,-1.4164,-1.2029,2.3736,1.4278,0.76667,0.41953,0.21064,0.4167,0.054503,1.3967,1.9616,-0.29326,1.0449 -3.7242,0.013696,1.0542,-1.6611,0.48022,-0.31065,0.46644,-0.93266,0.85857,-0.40684,0.57253,-0.77904,1.3404,0.65583,-0.1166 -2.6512,-0.59347,2.4402,-0.61104,-0.49768,0.18853,0.14923,0.66213,1.8076,-0.45596,0.60741,-0.85161,0.88802,0.76889,0.51203 -1.6496,-1.1141,1.9807,1.2375,0.97303,0.56914,0.63676,1.453,2.2479,-0.34127,0.99897,-1.5267,-0.072963,1.8397,0.42815 -1.3714,2.3656,-0.79346,1.4178,-0.67912,0.272,1.3089,0.031882,-0.90796,1.5282,-0.46514,0.90087,-0.50255,-0.92255,0.91652 -2.7864,-2.5899,1.6243,-1.4847,1.0834,-0.33406,-1.091,-0.46828,1.2939,0.53744,-0.80621,-0.81765,0.86707,1.0891,0.099806 0.061853,-1.0086,4.862,0.12922,1.2893,0.1002,0.49228,0.78279,1.447,-0.47523,-0.54862,0.2503,0.55746,0.44435,-0.46408 2.966,1.0452,-1.2332,-3.9203,1.2652,-0.14593,1.3105,0.77961,1.4548,0.5438,1.3589,1.3966,0.081705,-1.6626,0.10482 -0.35801,-3.593,3.8797,-1.8414,1.1019,-0.11141,1.5713,-1.4117,-0.54178,0.41873,-1.5488,0.68936,-0.53255,-0.14434,-0.85566 -0.03951,-0.25502,0.3152,2.5999,-0.24122,2.77,0.73359,-0.88315,0.034352,-0.52675,0.10559,0.39492,1.3043,0.36369,1.0122 -0.6487,-0.020611,-1.3754,1.4554,1.4719,0.014699,-1.552,-0.44858,0.135,-3.2694,-0.026569,-0.34457,-1.1312,0.95844,-0.82474 -1.7711,-0.55739,3.1385,-0.8472,0.17443,0.81746,0.394,0.5362,1.7405,-0.31988,0.75586,-0.78272,1.4624,1.877,0.42223 -0.89981,1.2048,2.1517,2.6297,1.166,-0.67711,-0.10837,-0.9211,0.03447,-1.3247,0.34087,1.6411,-1.0821,0.9758,0.15227 -0.65097,1.8744,3.3832,1.0634,0.7006,-0.5031,-0.25304,-0.63968,0.28031,0.37578,0.42154,0.90708,-1.2652,0.69253,0.1173 -0.41168,2.4106,0.56194,-0.24986,0.22942,-0.7059,-2.3002,0.57063,1.3172,-0.43822,-0.037741,0.39797,1.0501,-1.0864,0.20803 -3.4839,0.56277,-2.6859,-0.87313,0.37394,1.8987,0.68891,0.13973,0.47868,0.37304,-0.35986,-0.62011,0.40516,0.33884,-1.4341 3.7621,-1.7443,-1.0463,-0.29165,2.2867,2.4976,3.1633,-0.66038,-0.45499,0.27735,-0.52901,1.6483,-0.91163,-0.24453,0.39375 -3.4905,-1.8229,-0.72898,0.038503,0.57429,-1.427,0.11257,0.10974,1.6712,0.23258,-0.58079,-1.4876,-0.41147,0.99611,-0.31153 -2.6437,0.8131,-3.2785,-0.031911,0.46216,2.0617,0.97545,-0.59842,-0.015016,0.94899,-0.82218,-0.25638,0.59955,0.28572,-1.2197 -0.96028,-2.9529,2.9933,-2.2584,0.66861,0.74106,1.2345,-0.46603,1.4115,-0.04587,-1.8496,-0.14896,0.47562,-0.3644,-1.8011 -2.6152,1.8867,-1.8015,0.24057,-0.93228,1.2337,1.147,0.88094,0.18453,0.72599,0.32579,0.78666,0.8052,0.52646,-0.10272 2.3503,-1.1682,0.46497,0.011712,0.0082301,3.1397,-1.4831,0.037003,-1.0045,-0.68817,0.14098,0.92962,2.791,1.6143,-0.86393 -0.3773,-2.4006,1.922,0.38223,0.31561,2.9948,1.1711,-0.69087,0.98593,-0.0095025,-0.87788,-0.32759,1.0488,0.097051,-1.1795 -0.56242,-1.925,3.2065,-1.0417,0.56852,1.4966,-0.81252,0.043516,0.73936,1.3907,0.74852,-0.84043,0.18525,2.6773,-0.22522 2.0091,2.1224,-0.70853,-1.005,0.73328,-0.21783,-1.1575,-0.56504,0.76739,1.1988,0.26295,-0.4796,2.4564,-1.9111,-1.0763 2.3178,0.54463,0.053136,0.77709,2.1979,0.7681,-1.0254,-2.8186,0.30868,-0.26794,1.2104,-0.92611,0.66818,-0.18638,0.63611 0.95295,3.3173,-1.1313,-1.9886,2.0268,1.0569,0.6223,-0.67264,-2.6432,0.36402,0.9846,-0.61906,0.25023,0.030983,0.75597 -3.2086,2.3271,0.11179,-0.026932,-0.048358,0.41394,1.1992,0.90155,0.048102,-0.35571,0.54665,1.9277,-0.92823,0.012305,-0.60958 -1.9627,-2.943,2.2003,-1.0114,0.41079,-0.14352,-0.29331,1.7382,1.0321,-0.57347,-0.76019,-1.5606,1.6018,-0.25449,-0.53422 -3.2431,0.11245,-2.9485,-0.7132,0.11613,-0.62787,-0.23568,0.18402,0.47323,0.53689,-0.78297,0.22491,0.17895,0.35233,-0.50058 -2.2049,-1.8835,-1.4913,-0.89833,1.0904,-0.094652,-2.148,1.2205,0.25562,-1.511,-0.96169,0.24086,-1.0095,0.7917,2.2979 3.8438,1.1049,0.54186,-0.088644,0.46687,0.63489,-0.39565,-0.86889,0.98441,0.53815,-0.65771,0.66132,-1.376,0.82752,-0.22027 -0.94323,2.0871,0.43628,0.69982,-0.8463,0.23839,-0.53973,-0.097506,0.69356,0.8974,-1.0305,1.8936,-0.060108,0.046909,0.31475 -2.8533,-0.76149,-0.33228,-1.4949,0.18851,-0.0065843,-0.65418,-2.4916,0.12884,0.59442,-0.29037,0.73813,-0.31637,0.42056,-0.16414 -2.3421,-1.3422,-2.7933,-0.38322,0.96028,-1.3403,-1.4386,0.28813,1.1218,-0.84907,-1.2948,1.1484,-1.7605,0.66878,1.4436 1.6523,-3.1107,1.8714,1.3752,0.39949,3.6571,1.2157,0.077249,-0.54075,-1.0495,-0.95046,-0.091872,0.53919,1.0794,-0.97308 -1.3775,-1.3202,2.4549,-2.844,0.20075,-0.2361,0.27286,-2.2654,0.51058,0.67595,-0.94225,-0.27374,-0.66511,0.68172,-0.35685 -0.063246,2.8535,2.408,-0.79169,-0.77233,1.6256,-0.4495,-0.64763,-0.2468,-1.1796,-0.15667,0.79555,-0.79,1.0327,0.65011 3.2233,1.3247,2.2455,0.15572,0.34739,-1.4675,-0.12701,-1.8864,-0.6494,-0.024532,-1.2632,0.1045,-1.9941,-0.88805,-0.97939 -2.6323,1.6993,2.1335,-1.0319,0.47119,-0.23841,0.98626,1.4952,0.02488,-1.3306,0.87643,-1.5693,0.90773,-1.5972,1.1865 -3.1432,1.4419,-1.7273,0.02622,0.50725,2.0135,1.6033,0.066337,-0.30621,0.85442,0.39101,-0.74544,0.091073,-1.2893,-0.24616 -0.087958,-0.053965,1.3699,-0.84805,-0.57599,1.3097,-0.12483,0.10641,0.92375,0.82457,-1.92,1.6507,0.56334,-0.017527,-0.43866 0.46591,-2.1906,2.3789,-0.89286,-0.73435,1.5317,0.54644,-0.96933,2.0343,0.91946,-0.82342,-0.51297,-0.35325,1.1309,-1.3426 -2.394,-1.45,1.2736,-0.51088,0.41247,-0.1292,-0.21392,0.045968,2.5778,0.45375,0.34455,-0.74372,0.14879,0.38223,0.041444 -2.5648,-1.5964,0.64608,-1.5126,-0.1812,0.33023,-1.4,-0.73366,1.2219,0.27388,-0.020935,0.24199,0.23671,1.1806,-0.29635 -2.7008,-0.33252,0.57949,-1.397,-0.57543,0.86287,-0.30812,0.45429,1.5716,-0.90654,1.0218,-0.45091,0.38694,1.1276,-0.86141 -2.7067,0.12202,-0.76549,-1.4144,0.2521,0.024442,-1.1775,-1.2282,0.49045,0.955,-0.0072734,0.89181,-0.23047,-0.10288,0.20848 0.30009,-0.31977,2.478,0.29681,-0.3521,0.40314,1.1984,-1.8359,0.71643,1.186,0.28271,-0.672,-0.96774,1.6965,-0.60276 3.3206,-0.31597,-1.7775,-0.86152,0.66935,-0.19951,2.3214,-0.33334,0.86193,1.6977,0.48532,0.72874,-2.7425,0.1612,1.0973 -1.2717,-0.40824,3.8087,-1.0335,3.1426,-0.89376,0.59349,0.075184,-1.1915,1.2537,-0.084703,-0.72418,-1.4601,-0.31963,0.44306 -4.8643,-1.3223,0.052759,-1.8302,2.1986,-0.037452,0.038063,0.40439,-0.50486,-0.91554,-0.94179,-0.41762,-0.997,1.1596,-0.747 -3.6014,0.26325,-0.285,-1.0887,0.44285,1.4409,1.2702,-1.7166,0.32568,-1.2262,0.96773,-0.16416,-0.0072698,0.62432,-1.5789 -0.75959,1.6599,-0.3505,2.0909,-0.32862,1.6673,-0.49315,-0.50703,0.90749,-0.33521,0.35891,1.2454,-0.86676,1.156,-0.1486 1.843,-0.62816,2.0795,1.2647,0.48747,2.1163,1.6316,0.62139,0.99616,0.68135,-1.0746,0.52855,1.3574,0.99904,-0.31642 -2.648,-1.6541,0.082833,-2.2558,0.77865,1.8167,-1.9646,0.063157,-0.73532,-0.76056,-0.95656,0.10755,1.3436,1.3046,1.3467 -0.77378,3.6526,-0.82419,0.11779,2.0013,2.2053,-0.78486,0.35242,-2.233,-0.36554,-0.31145,-0.61131,-0.55345,0.29654,-1.2346 -2.9355,0.58717,-3.1452,-0.63222,0.0091589,0.60843,0.29539,-0.060805,0.77165,0.07718,0.041421,0.30798,0.35238,-0.23932,-1.0179 -1.2811,2.7235,1.0937,0.38812,-0.82429,0.16505,-0.20146,0.23758,0.39696,0.98368,-0.12628,1.6519,0.27203,-1.0858,0.69843 -1.2978,-0.59207,4.5825,-2.0681,1.3229,-0.60126,0.55116,-1.1517,-0.39918,-0.23383,-0.6189,0.21615,-1.1018,0.93964,0.16009 -4.4253,-0.15839,0.11375,-1.6935,1.068,-0.11433,0.48946,-0.9828,-0.11982,-0.99634,0.84322,-0.030183,0.11604,0.16843,-0.42667 -0.41576,-0.069772,4.174,1.0259,2.5396,-1.1458,1.2898,-0.12795,0.31338,0.091959,0.099563,-0.22361,-0.30709,0.21144,0.67872 -4.2473,-0.48195,1.308,-2.0999,1.8544,-0.05159,0.52147,0.35681,0.16482,-0.9793,0.51624,-0.85425,-0.38114,1.0678,-0.22591 -2.528,-1.0393,-1.6055,-1.2845,0.072819,-1.3543,0.12181,-1.0789,0.46888,-0.57602,-1.1285,0.42464,1.4644,-0.73667,-0.31859 -1.3011,-0.95973,3.8303,-1.9448,1.3756,-1.1915,0.85288,-1.731,-0.29095,0.3028,-0.6366,0.021213,-0.65045,1.1251,-0.15668 1.2489,1.783,-1.7801,-2.5559,1.5971,0.72683,1.5277,0.24094,-2.1184,-1.5037,0.64594,-1.1995,-0.40999,1.5117,1.6006 -3.7413,-0.20622,2.0336,-1.6268,1.1341,-0.55993,0.77654,0.60713,1.1319,-1.0163,1.1847,-0.51323,-0.34097,1.018,-0.23395 1.5411,-0.24094,0.087586,2.0669,1.3239,2.5098,-1.119,-0.029782,-0.026754,-1.3151,-0.26916,0.36035,2.186,1.1055,0.3286 2.1322,2.2224,1.8043,-2.1175,1.4332,-1.8652,0.11165,-0.74515,-1.3951,1.0203,0.088124,-0.30195,-0.93003,2.3772,0.61939 1.6538,4.4941,0.44929,-2.3083,1.2814,0.053034,-0.80852,-0.19665,-1.1271,0.75244,1.0972,-0.0307,0.10672,0.84646,0.31882 -3.697,0.65009,2.5848,-1.2354,1.988,-0.61009,0.77954,0.29752,0.04823,-0.21548,0.98054,-0.46033,-1.3174,0.44034,-0.38739 -1.7316,2.052,0.52849,1.1539,-0.28214,-0.10455,0.83272,0.0095769,0.51021,1.5567,-0.71277,1.7124,0.78393,0.17859,0.2495 -0.44704,2.4559,3.8124,-1.1042,1.515,-0.84404,-0.55531,1.0148,-0.27227,-0.61335,0.54859,0.12277,-0.70606,0.34062,0.41999 1.9804,1.2416,3.89,-0.58591,3.1063,-1.3276,0.89504,0.42257,-1.9715,0.84068,0.0061921,-0.14876,-1.2434,-0.2614,0.49538 -2.1411,-1.6032,-0.21478,1.645,0.52327,1.1234,0.2832,-1.2883,0.84639,1.0998,1.0638,-0.24102,-0.64218,0.59086,-0.44859 -3.0978,-0.38345,-3.1969,-1.0433,0.75232,-0.5777,-0.83841,-0.069192,0.055615,-1.5394,-1.0911,0.77197,-0.53071,-0.40034,0.63261 -1.5465,3.4611,-0.13046,0.17253,-0.63104,0.8943,-0.61442,1.135,-0.43681,0.42864,-0.14017,1.315,0.25577,-0.79859,-0.015117 -3.1573,0.099013,-3.1832,-0.49666,1.6033,0.090816,-0.22815,-1.177,-0.40951,-1.0822,-1.0993,1.2399,0.31913,-0.44261,0.41353 -1.8649,-0.42787,-3.2582,-0.52878,0.2467,-0.17222,-0.80359,0.59457,0.059516,-2.2527,-0.9776,1.1761,-0.86673,-0.79764,1.4769 -2.6932,-2.253,-1.7225,-0.9898,0.8693,-0.30697,-2.4209,0.70357,0.91567,-0.82971,-1.0522,1.0696,-0.98172,0.67916,1.6748 2.7514,0.1407,0.74961,-1.4173,1.3015,0.34791,-1.5302,-0.20543,2.5292,0.020822,0.11247,0.89766,1.7401,-0.07519,-1.1015 -2.8696,-0.89931,-1.9802,-1.2747,0.53989,0.56985,-1.9785,-0.7954,-0.69635,-1.0271,-0.75293,2.2317,0.13957,-0.16592,1.0062 -2.5523,1.0228,-1.0763,0.49848,-0.79361,2.2715,1.322,0.36225,0.94646,-1.4761,0.84185,0.13559,0.34601,-0.67524,0.12144 -2.9386,-1.5,-1.0652,-1.0317,0.75113,-0.46101,-2.1188,-0.79033,0.99794,0.23987,-0.46021,1.4028,-0.15322,1.1044,0.73758 2.3718,-0.34243,-2.2529,-0.78783,-0.23508,0.1891,1.5109,1.3259,0.020033,1.0881,-0.16263,1.7253,0.30868,-1.5003,-1.1354 0.71614,-1.1828,-2.8026,1.0909,-0.49985,0.93649,0.97779,1.228,0.51887,0.1814,-0.70542,1.319,0.59602,-0.6105,-0.011195 -0.76828,3.5728,-1.3773,-0.58344,0.74717,0.67745,-2.0838,0.86141,-0.39971,-0.3813,0.80385,-0.17839,1.2815,-0.41493,-1.1369 -3.6132,-1.0634,-1.0602,-1.7308,0.24946,1.095,-0.6439,-0.40269,0.6671,-1.4455,-0.038367,-0.53879,0.64896,-0.30649,0.1401 4.0528,0.76405,0.46824,-0.032176,1.47,0.39912,-1.0791,-0.69617,0.36198,0.78198,-0.62675,-1.2393,-2.4989,-0.78292,-0.60147 -2.8971,-1.7209,-1.3907,-1.36,1.2791,-0.39628,-2.5173,0.43302,0.19883,-1.2923,-0.70345,1.7546,-0.72247,0.49959,1.7445 2.0506,-1.2577,3.9433,-0.22196,0.22268,1.8604,1.1094,0.54448,0.91412,-0.15322,-1.9272,1.0916,-1.2227,0.74125,-1.7734 -3.5554,-0.30367,-3.1534,-1.0056,0.96082,-0.11609,-0.17787,-0.76468,-0.064302,-1.5102,-0.7569,0.57409,-0.027552,-0.3075,-0.031662 -2.433,-1.8104,0.56452,-2.3086,0.55619,1.1181,-1.9279,0.026175,0.29339,-1.2355,-0.46635,0.17167,1.2776,1.3177,1.2905 -3.3169,-1.9868,-1.8635,-1.8323,1.4061,0.15866,-1.922,0.55052,-1.2475,-2.1369,-1.3632,0.5318,0.017721,0.53233,1.9926 -2.8872,0.45038,-1.6593,-0.13455,0.33073,2.5448,0.32433,-0.036427,0.25922,-0.6154,0.58253,-0.12293,-0.10866,-0.62855,-0.60483 4.139,-1.0757,-1.977,-0.69728,1.0111,0.30035,2.2484,-0.12561,1.0345,-0.16869,1.5002,0.13283,-1.8023,0.09139,0.44481 5.5373,-1.124,0.08252,-0.51819,1.9835,1.0061,0.38058,0.19116,0.031418,0.10248,0.83877,-0.062901,-0.79746,-0.30469,-1.3201 -1.554,1.0391,-0.21507,-1.3319,-1.2008,1.3555,1.3903,-1.0937,0.27453,2.2019,-0.14552,0.03721,-0.46448,0.43445,-0.067551 2.9775,2.2525,-0.11326,-0.86745,-0.043363,-0.61299,-0.86492,-2.0512,1.3558,-0.086436,-0.30157,-0.56867,-0.52408,0.13445,-0.82647 -2.4862,0.13596,-0.042298,0.49661,0.3403,-0.37674,1.3535,-1.6396,1.6518,1.7684,-0.011127,0.19812,0.76257,0.29129,-0.67155 -3.4313,0.44609,-0.32121,-1.1719,-0.17885,0.057999,0.4381,-1.0797,0.89692,0.84063,0.33875,-0.048305,1.2843,0.78684,-0.61982 1.5827,-0.10939,0.21191,-2.6066,1.3138,2.39,1.7037,1.2745,-1.8193,-1.6699,-0.52842,-0.55318,-0.62012,2.5033,0.51653 -0.84163,-2.3013,2.5092,1.1999,1.6373,2.6478,0.44623,0.61087,-0.2655,-1.9452,-0.050637,-0.48929,1.5098,0.93587,1.6375 2.2607,1.647,1.4618,1.1398,4.2353,-1.1954,-0.80962,-1.5592,0.18694,-0.17364,-0.07044,0.0081633,0.40339,-0.44566,-0.10751 -0.26361,-0.37964,2.2364,2.3555,1.3242,1.1229,1.0282,-0.96657,1.0814,-1.5751,-0.27731,0.79494,0.36334,-0.39504,1.2472 0.60639,1.634,-0.17079,2.1004,0.72863,0.68789,-1.2188,-1.2248,1.4706,0.11934,-0.26086,0.51316,0.24758,1.3028,0.14148 -3.8306,0.52345,-1.5539,-1.4596,0.30995,-0.31362,0.57196,-0.98085,-0.12229,0.20733,0.12494,-0.35101,1.1655,-0.53197,-0.28423 2.9617,0.64967,-1.0963,0.96678,-0.4539,2.5801,-0.69448,-0.98174,0.20948,-1.2664,-1.0883,-1.0861,-0.25155,-0.16268,-0.36143 -1.0393,1.6992,1.098,0.8225,-0.35979,-0.11368,-0.028664,-0.084939,2.1524,-0.20895,-0.40567,1.5126,0.28331,-0.74657,1.1042 -2.6612,2.3393,-0.24881,0.52792,-0.5882,-0.10444,0.76863,1.2577,0.64063,-1.0158,0.13965,0.79563,0.22018,0.056716,0.60789 1.4629,0.82165,-1.7108,-0.16184,0.81721,1.6851,0.71818,-1.6399,-1.2381,1.3264,-0.17384,-1.5187,-0.44841,-1.5648,0.70939 -0.32263,1.2689,1.5215,2.1564,0.98941,0.025344,-0.5545,0.70257,2.0512,0.015853,-0.37799,0.55101,0.041189,-0.56339,1.6718 2.9733,0.44768,0.64106,0.80318,1.7963,0.57344,-0.93525,-0.91615,0.99435,-0.32315,-0.44244,0.64707,-0.042181,-1.0773,0.23981 -0.28156,0.034647,1.4827,1.9595,0.54102,0.37536,0.90861,-0.31162,2.209,-0.42932,-0.3464,0.26214,0.39729,-1.1402,1.2437 1.9042,-0.60037,2.2417,0.78475,1.7342,1.0482,0.18762,0.67481,1.7075,-0.83906,-0.89345,1.4708,0.73023,-0.60465,0.59187 2.1906,0.81547,0.75916,1.1536,3.3524,-0.9042,-1.2735,-1.6531,-0.14168,-0.0038646,-0.25125,-0.67763,0.017278,-2.205,0.14644 -1.9676,-0.44195,1.4579,0.65669,0.85701,-0.096408,1.2552,-1.4242,1.7941,0.92098,0.21197,-0.9369,-0.18622,-1.1424,0.80173 4.7252,0.21371,-0.68727,-1.2273,1.6768,0.77639,-0.13813,-0.54092,-0.70187,0.59154,0.13073,-2.0281,-1.5219,-0.39949,0.35809 3.4455,-0.8233,0.28023,-2.8218,1.9491,-1.5179,0.75624,1.2402,-2.0145,1.5509,2.1905,-0.22616,-1.405,-1.266,1.2314 -1.3509,1.8651,-1.9532,0.98856,-1.2174,0.76747,-0.6349,1.4683,1.2929,-0.71646,-0.29135,0.58491,0.21181,0.91628,-0.45681 2.1435,2.0182,0.78703,-1.3764,1.2269,-0.75866,-2.2588,-0.64304,1.3468,0.48992,0.8329,-0.10204,-0.15799,-0.34287,0.23912 -2.6023,0.082494,-2.4951,-2.187,2.4508,1.4802,-1.0722,0.97866,-1.9861,1.508,-0.62563,1.5517,0.56496,0.24578,0.9734 -0.16529,2.7491,-0.58286,0.49366,1.4981,-0.95267,-1.3763,1.1051,1.4914,-0.34566,0.10229,0.5881,-0.087885,-0.45732,-0.34865 0.62743,1.4284,0.84632,2.5898,0.9763,1.0529,-1.2086,-1.4177,0.98016,-1.0233,0.048199,0.50132,0.18236,0.78528,0.15694 2.0478,0.71368,0.90045,0.36461,1.9822,-0.49814,-1.5121,-1.0912,2.3143,0.43763,0.20692,-0.38358,0.37779,-0.56626,0.63904 -4.5496,-0.2776,-0.95808,-1.8119,1.3439,-0.33784,0.51504,-0.42775,0.32803,-1.427,0.16508,-0.72691,-0.043533,-0.42362,-0.43183 -2.117,2.1359,1.822,-0.79544,-0.95207,1.2303,0.78362,-0.20464,0.65311,0.25571,0.32665,0.49986,0.30047,-1.2525,1.2876 -3.0851,1.0989,2.7123,-2.5803,0.59877,-0.69868,1.4361,-0.092769,-0.33024,-0.30613,0.017313,-0.59718,-0.066252,-1.7848,0.70849 3.2557,0.44944,-0.46266,-2.901,1.0121,-1.071,0.40778,1.028,1.3503,0.0527,0.81885,0.34353,0.28934,-2.1316,-0.54811 0.27224,1.1231,2.591,0.87386,-0.017869,0.18785,-0.24329,1.2647,1.791,0.23404,-2.0152,0.52686,0.57164,-0.42095,0.91084 -3.9798,1.395,-1.158,-0.68818,0.22588,0.53544,2.1987,1.0068,0.0585,-1.1219,0.36868,-0.60405,-0.069168,-1.5294,-0.31167 -3.1894,1.7847,0.78085,0.57323,0.94073,-0.41978,1.0388,1.0329,0.48085,1.7775,0.84178,0.99801,-1.011,-0.40826,-0.11112 3.1683,3.2291,0.42867,-2.4137,-0.32727,0.16911,-0.82214,-0.024827,-3.0433,-1.3132,1.3662,-0.86432,-0.34669,-0.41222,0.014029 -2.4272,2.8143,1.8237,-0.40968,-0.10919,-0.095425,0.41946,0.91627,0.13889,-0.037173,0.21769,0.91684,0.45312,-1.6135,1.1936 2.0178,0.96511,-0.17832,-1.549,1.7408,-1.7067,-1.6013,1.7644,0.88151,-1.2921,0.80626,-0.74115,2.7197,-0.71289,-0.097314 0.8081,0.60598,-1.0369,1.6456,2.5345,-0.1838,-1.3454,-0.8581,1.3545,0.32563,0.75731,-0.55411,0.13664,-0.8828,0.74828 0.33595,1.8901,-1.6832,0.38823,1.1962,0.12291,-0.90484,-0.77964,-0.70703,2.336,1.7476,-0.40369,-0.78856,-0.38827,0.28838 -0.097802,2.6738,-0.68305,1.0178,-0.50241,1.1896,-0.74076,0.27557,-0.40784,-0.8091,-1.1042,-0.39288,0.68909,-1.5746,0.27605 2.9629,2.8595,0.44963,-1.359,2.4369,-1.2142,-0.62291,-0.96491,-0.26554,2.3973,0.58713,-0.69226,-0.21744,0.016613,0.061182 -3.0308,-0.031471,-0.91175,-0.36751,-0.97136,-0.20469,0.69251,0.58638,1.6142,-1.3013,0.71871,-0.49878,-0.13727,-0.1709,-0.015269 -2.1591,-0.28897,3.3261,0.55153,1.1006,-2.2376,1.0516,1.2957,0.90281,-1.1243,0.18157,-0.46307,-0.20714,-0.73472,0.78807 -1.8693,1.0107,1.1637,0.7771,-0.88838,0.8311,-0.26094,0.87401,2.0087,-0.3636,0.71576,1.2159,-0.27334,0.084395,1.1538 1.9717,1.7624,-1.02,-1.0915,-0.31063,0.53079,-1.0383,-1.5792,2.0368,0.16875,0.39844,-0.43745,-0.060354,-0.45069,-0.0070494 -3.5185,0.86983,0.88059,0.022667,-0.45021,-0.034699,1.0218,0.44243,1.0817,-0.85004,0.9734,1.1378,-0.24423,0.37406,-0.0072767 -2.5699,-0.21392,0.50781,-0.20694,-0.26247,-0.057913,0.89293,-1.5498,1.7374,1.1166,0.67367,0.42135,0.29887,-0.21585,-0.75014 -2.6608,0.36327,1.2132,-1.3439,-0.74972,0.08995,1.2497,-2.7366,0.28478,1.2185,0.59684,0.35682,-0.1896,0.58916,-0.59404 -1.4566,-2.4764,2.7695,2.1724,2.2888,0.45344,0.99659,1.0563,0.41799,-1.3408,-0.10821,-1.72,-0.045806,0.37798,1.1565 -2.4287,0.054446,0.085366,-2.1976,-0.51834,1.6587,0.92351,-2.1764,-0.11638,-0.87058,-0.335,-0.8867,0.37329,-1.0776,-0.36917 -2.4297,3.7652,-0.09096,0.0086163,0.13355,1.9924,0.63773,0.91193,-1.8627,0.55828,-0.05811,0.92815,-0.24704,-0.026967,-0.46342 0.92751,1.571,2.1839,1.1104,0.19228,0.80093,0.70658,-1.3982,0.050702,0.99275,-1.3607,0.50555,-1.9629,-1.4053,0.76197 -0.125,2.9852,1.3656,-0.89551,-0.71577,0.97914,-0.27171,0.18423,0.55386,-0.092356,0.24915,0.78927,0.63545,-0.78109,1.1732 -1.4705,1.2737,1.34,2.5407,1.2533,0.67571,1.6441,-1.2183,0.40125,0.31845,0.47056,0.69094,-0.31951,-0.56887,0.88492 -1.0789,2.7355,1.6189,1.8943,0.808,-0.45131,0.50057,-0.47102,-0.010862,1.2732,-0.54225,1.7467,-0.60225,-0.48827,0.15302 -1.1313,-2.2466,1.499,0.11904,1.6641,1.1365,1.1652,-3.8183,0.81046,0.22708,-0.58846,-0.30944,-0.086767,-0.16254,-0.1407 -0.28295,1.3952,3.1708,-1.5363,-1.281,1.3138,0.80895,-0.34943,0.79961,-0.19861,-0.055928,0.11074,-1.4019,-0.042424,0.55587 1.5339,1.9529,-1.4444,-0.65901,1.6589,0.3496,0.58327,-0.57242,0.37364,0.5245,-0.58989,-0.40852,2.3892,-0.91504,-0.264 3.3951,1.672,-1.9516,-1.9618,1.1055,-1.1528,0.83056,0.53918,0.75367,1.9739,0.66175,-0.96425,-2.2686,-0.84402,0.38396 1.0868,1.355,2.9085,1.224,-0.04003,0.074433,0.21486,-1.5513,1.0592,0.067322,-1.2344,1.5379,-0.93152,-0.29499,-0.20421 3.7673,0.61755,-1.3131,-1.1702,1.2423,0.15823,1.1007,-1.3338,1.5754,0.49119,0.84884,-1.1923,-1.3809,-0.080587,1.1913 0.43079,-0.0095202,2.6718,1.0596,0.18346,0.86428,1.6665,-0.94012,1.432,0.32041,-1.3145,0.56227,-1.1143,-1.4679,1.243 -1.562,1.5291,2.2444,-0.13929,-0.43772,0.60264,1.0656,-1.1211,0.69216,1.8187,0.77338,0.018712,-1.1139,-0.076725,0.56343 -3.775,-1.1757,-0.26156,-2.2749,1.0697,0.64475,-0.97037,-2.4619,-0.2309,-0.48088,0.22665,1.1519,-0.24371,1.248,-0.10569 1.9356,2.5789,-1.1355,0.54245,1.8237,0.051548,-0.95452,-1.8779,-1.4743,1.6661,-0.83746,-1.3222,-0.53984,-0.81266,-0.051335 -1.4907,-0.12817,0.20969,1.339,-0.79211,0.65204,-0.090938,1.524,2.4947,-0.69864,0.42702,-0.30342,-0.23249,-0.069929,1.1951 -2.8071,-1.8146,-1.9447,-1.3355,1.4696,1.6321,-1.5872,-0.082473,-0.092801,-2.2756,-1.1717,1.16,-0.31075,1.1948,0.95796 -2.9587,-2.133,-0.76777,-1.3379,0.64742,0.64577,-1.6764,0.85417,-0.25425,-0.8088,-0.841,-0.15025,1.0196,2.4961,1.0589 -0.049947,2.1297,-0.46136,-0.05636,-1.0062,1.1711,-2.0505,0.037781,1.2414,-0.027222,0.66548,1.2657,0.79791,0.70691,-0.072577 -1.937,3.0653,-0.20627,-0.35574,-0.61965,1.1605,0.66113,-0.39745,-1.7404,-0.10199,0.44348,1.2909,-0.61374,-1.0038,0.08031 -1.7561,2.0344,-1.0596,1.9053,-0.66758,1.5569,0.46729,0.73297,0.78265,0.27729,0.14238,0.93777,-0.34562,0.3997,-0.040862 -2.7046,-2.611,1.286,-1.6018,0.97257,-0.26558,-1.8079,-0.3,1.4488,0.44904,-0.96194,-0.38814,0.42,0.67079,1.0043 0.86055,-0.001437,2.9517,-0.92234,-0.73702,1.4733,1.2709,0.7886,1.7357,0.75936,-0.56027,0.35468,-0.28951,-0.22332,0.32806 -2.9998,-1.5559,-0.88259,-1.6746,1.3674,1.8363,-1.8823,-1.1057,-0.94489,-0.72777,-0.8125,0.71809,0.20145,1.4504,0.62513 -4.0409,-2.0588,-0.30079,-2.3812,1.4303,0.62944,-1.8554,-0.69968,-0.30348,-1.2619,-0.59937,0.45992,0.00051789,0.95336,0.49324 -4.2262,-1.7304,-0.6933,-2.1413,1.2503,0.52163,-1.3149,-0.63252,0.25889,-1.525,-0.22984,0.40181,-0.12501,1.2236,-0.14685 -3.2229,-1.0888,-0.35838,-1.9406,0.46934,1.6954,-1.6472,-0.92531,-0.083538,0.031404,-0.3213,0.3103,0.6241,2.0308,0.30813 -2.5873,1.4964,-0.7325,1.0107,0.38284,0.2214,1.3777,1.4964,1.3402,0.68706,0.33058,0.13218,-1.0856,-0.44969,-0.37359 -2.9403,-2.3705,0.78177,-2.0254,0.93057,1.3509,-2.1694,-1.0386,-0.081333,0.030562,-0.81858,0.78137,-0.20378,2.4961,0.82827 -2.9114,-2.6445,-0.51778,-1.3469,1.5505,0.70342,-2.427,1.2908,-0.13627,-0.13955,-1.2978,0.81009,-0.17399,2.5949,1.3412 -2.776,-1.7049,-1.2766,-1.2192,1.4627,1.6661,-2.3112,-0.59756,-1.006,-1.2182,-0.78142,2.0555,0.030325,0.99395,1.3258 0.75096,3.1763,1.0673,-0.87331,0.47742,-0.70655,-2.4506,-0.15751,0.36568,-0.25159,0.33541,0.2585,0.99797,-1.554,-0.31518 -1.4497,0.088189,2.4804,-2.687,-0.67055,2.6427,0.60874,-0.057297,0.20658,-0.61597,-0.06045,-1.1808,0.27562,-0.2812,0.65891 -3.5956,-1.9554,-1.8848,-1.7073,0.67822,0.83751,-0.67427,-0.33994,0.65383,-1.4982,-0.83736,0.11244,-0.26951,-0.40178,-0.47302 -3.2497,1.3838,-0.63637,0.81691,0.023189,1.3281,1.033,2.1901,0.03506,0.82062,0.58344,-0.33111,-1.1758,-0.4963,-0.95645 -3.1686,-1.2832,-1.1416,-1.7145,0.6836,1.1449,-1.633,-1.8176,0.11447,0.028226,0.064186,1.5378,-0.88496,0.94449,-0.47053 -1.0087,-2.9192,2.1867,1.4393,2.1113,2.3665,0.93487,0.13494,-0.12851,-0.26259,-0.23223,-1.8626,1.9953,0.94982,0.53217 2.9913,3.4273,-0.53018,-2.9872,0.89926,-0.72617,-0.35129,-1.0862,0.21063,1.0017,0.81886,-0.952,-0.78863,-0.33015,-0.064572 -2.4248,0.15574,2.4292,-1.9576,-0.44049,0.33813,1.0997,-0.22573,0.52961,-1.2426,-0.23786,-0.90208,1.2005,-1.9131,0.70001 -3.7266,-1.0438,-0.31231,-0.76837,1.0131,-0.86817,-0.010357,-1.489,1.3429,0.60558,0.25991,0.15937,-0.2944,-0.12019,-0.17939 -3.2074,-0.65791,0.64592,-2.114,0.5469,2.022,-0.59762,-0.78051,0.10738,0.18915,0.71911,-0.35185,0.41054,1.5304,-0.64424 1.4824,0.31157,-0.86156,-0.64305,2.9213,-0.46938,0.75432,0.17198,-0.99109,2.4537,1.6065,1.8286,0.3683,-1.9221,1.965 0.19117,-0.62626,2.9457,-2.0827,-1.2936,1.8916,0.92541,-0.2969,1.5958,0.078362,-0.52054,-0.38618,-0.038398,1.1398,-0.74454 4.2064,-1.0301,-0.7948,-3.9371,1.3512,0.42977,2.6024,0.84289,0.60057,1.005,1.0348,3.6063,-0.86843,-0.58515,-0.39421 -2.8535,-1.8653,-0.07046,-2.7265,0.92448,-1.0693,-0.69389,-1.6818,0.13222,-1.1925,-1.9331,0.60168,1.0487,-0.51527,0.74633 -1.6281,3.5353,1.0493,0.14852,0.69356,0.54634,-0.14684,0.11775,-1.3208,-1.2963,-0.40456,0.3239,0.42826,-1.3054,0.617 0.30064,3.5874,-1.0196,-0.79085,-1.3035,0.68093,-1.1449,-0.023728,-1.6788,0.13028,-0.98778,-0.64267,-0.023689,-0.95138,-0.50577 -0.3549,-2.8647,-1.437,0.76762,1.4882,-0.59391,-1.3445,0.64826,0.039051,-0.79351,-1.5997,1.4931,0.38361,-1.7978,1.6636 3.143,1.2147,1.2325,-1.8068,0.60014,-0.77981,-0.24678,1.2276,-0.094369,1.0764,0.36502,1.0347,-0.93145,0.25102,0.97222 -0.86938,3.3919,-0.2848,0.82871,1.0262,0.50984,-1.5221,1.1807,-0.66624,-0.2244,-0.93293,-0.91882,0.93319,-0.8065,0.21327 1.5449,0.18247,1.5218,-1.5844,-0.96739,1.3789,1.9991,2.3088,0.13316,1.2532,-0.21401,0.0035681,-0.60075,1.0516,-0.90153 3.0079,1.927,0.40125,-2.774,-0.3772,0.79361,-0.6505,1.8442,-0.50998,-0.62198,-0.0906,1.1359,-0.18632,0.71225,-0.54605 -1.2896,-1.6521,2.4586,-1.9525,0.66615,0.31929,0.41122,-0.31479,1.4397,1.1832,-0.99146,-0.94917,0.89025,1.8617,-0.13713 -1.3406,-2.0275,2.3641,0.27461,1.3174,-0.51754,0.085331,1.1973,1.1001,0.8417,-0.14469,-1.5563,0.86574,1.4803,0.34742 -3.1449,-0.47931,1.4478,-2.3051,0.39571,1.8421,-0.076423,-1.3295,0.099119,-1.6248,0.78555,-0.73267,0.84779,0.84051,-0.39833 4.1756,-1.7867,-3.0901,-0.78794,-0.22266,3.191,1.2751,0.60857,-1.3313,-1.256,0.68737,0.52924,0.65086,2.119,-0.46318 4.5603,0.53844,0.010718,-2.7282,0.73492,-0.20061,-0.20113,-0.45427,1.4307,0.88272,0.95433,0.55059,-1.429,1.3452,0.23197 3.3618,0.84892,1.3281,-1.9331,0.18377,0.29157,1.452,1.8571,0.48913,0.51371,0.36355,1.5693,-1.8523,1.6699,0.16176 0.313,0.81008,2.9432,-0.15236,-0.068673,0.90256,0.081418,1.1181,1.5524,0.7266,0.068624,1.0874,0.89965,1.9891,1.0733 -2.9955,1.5272,-1.5501,-0.055092,-0.26665,0.48272,1.3856,0.80181,-0.049573,0.24707,0.09382,-0.10319,1.4674,-0.5172,0.98043 -0.021961,1.1166,3.3795,-2.3233,0.3945,0.65946,-0.016849,0.60353,1.2407,-0.72595,0.7553,0.10308,0.944,0.6688,0.72392 -2.8602,-3.2781,0.3603,-1.4771,2.2429,-0.35583,-2.0833,-0.85955,0.77064,0.27958,-1.219,0.74441,-0.40587,1.349,1.3641 2.6767,-1.6764,-2.1285,-1.7693,0.016703,4.1059,1.6175,0.087451,-0.4456,-1.0136,0.6872,1.1082,-0.19228,2.1401,0.23539 -2.4715,-2.2324,0.18363,-0.48246,0.76644,1.075,-1.0059,-1.2103,1.5415,1.3043,-0.8654,-0.5856,-0.042676,1.0909,0.618 -2.2026,0.34452,0.64076,-1.497,1.7301,2.007,0.46913,-0.38946,-1.2289,-1.644,0.63131,-1.3701,-0.63349,0.73087,-0.51741 -3.0396,-0.76682,-0.15034,-1.459,-0.43964,0.63494,-0.37006,-1.5665,1.4077,0.19057,0.090246,-0.077939,0.5368,0.098306,-0.093074 -3.2807,-0.42773,-2.0132,-0.75274,0.0025124,0.95549,0.24293,-1.4741,0.9718,-0.78353,0.41096,0.38027,-0.18101,1.0432,-1.7037 -2.2136,-0.69576,-1.7543,-1.069,-0.29377,-0.14687,-1.812,-2.1125,0.084377,0.21407,-0.82903,2.4385,0.088793,0.62328,0.6694 2.4828,-1.4944,-0.37647,0.09923,1.5188,3.0228,-1.0191,-0.67147,-0.56702,-1.3218,-0.029421,0.028334,3.0171,0.96229,-0.28363 -1.1617,1.5273,1.5575,0.15857,-1.1016,1.574,0.32101,-0.028283,0.70376,0.22397,1.1003,0.48359,-0.41859,-0.96941,0.54567 0.57017,3.3406,2.0235,-0.28716,-0.50014,0.24439,-1.0204,-0.53428,0.3723,0.033045,0.12657,1.4042,0.14063,1.1324,0.31261 1.126,-0.39516,-1.5668,0.94027,0.42068,0.62711,0.23791,-0.26802,-0.38285,1.7497,1.9085,2.2979,1.2132,1.5119,1.136 0.42814,2.9962,-0.021692,0.67128,0.91945,0.30629,-2.3576,0.63278,-0.42025,0.63174,0.18568,-0.45948,1.0308,-1.2543,-1.043 -1.6942,-1.769,-0.4256,-0.17876,0.18778,0.65968,-1.3695,-2.333,1.1753,0.63919,-0.17484,1.2748,-0.49365,1.4871,0.45422 -0.9829,-3.209,0.059498,-0.79919,0.16862,0.027769,-1.8456,0.49353,1.0325,0.79928,-2.2047,-0.36352,0.51178,-0.47284,1.1102 -2.8118,-1.9997,-0.73708,-1.5988,0.053699,2.3045,-2.1423,-1.0386,-0.27093,-0.4461,-0.7882,0.82345,0.47867,1.9165,0.26466 -0.075766,-1.3946,1.8364,1.0831,0.60281,1.213,0.056955,0.13689,1.6922,1.461,-0.61066,-1.1818,1.5485,0.97374,-0.34212 -1.7156,-1.6676,1.4638,-1.0046,-1.0017,1.9942,-0.63444,-1.0487,1.1277,0.93122,-0.13805,-0.93349,0.31314,2.1661,-0.19971 -1.0707,1.8616,1.7177,2.3464,1.4942,0.11345,0.057775,0.77251,0.98583,0.12527,0.87975,-0.29085,-0.70101,0.056339,0.66436 4.1967,1.0919,2.8669,-2.206,2.2796,-1.4628,-0.2741,0.078024,0.67933,-0.62154,-0.051758,1.0585,-0.63782,0.20926,-0.59166 -2.6199,-0.79355,-2.3018,-0.52583,0.39424,1.6235,-1.6561,-0.438,-0.43495,-0.57645,-0.92518,1.1225,0.85082,0.62806,1.1185 -2.7204,-1.1645,-0.95164,-1.118,-0.48414,0.29878,-1.0633,-1.7521,1.2154,0.17518,-0.41078,0.60349,0.75325,0.28905,-0.11715 1.3446,1.5891,-0.81649,1.9587,-1.1665,2.1365,-0.10945,-0.5866,0.25124,0.297,-0.97603,-0.50207,-1.1763,0.50721,0.73488 -3.0687,-1.2521,-1.0015,-1.1918,-0.35399,1.4264,-1.4237,-0.75699,0.62073,-0.2313,-0.16039,-0.1719,0.87602,0.90395,-0.19975 -3.1549,-1.6214,-2.5727,-1.4566,2.0245,-0.66927,-1.4519,0.72418,-1.5984,-2.1186,-2.0571,0.62668,-0.97443,-0.42281,1.7593 2.6807,1.0948,-2.1085,-0.083706,-0.2962,0.7866,0.0028563,-0.94813,1.4157,-1.4723,0.28217,0.13012,-1.1888,-0.095534,-2.1639 -3.3294,-0.96898,-2.2431,-1.0528,0.54565,0.89581,-1.8983,-0.24049,-0.68596,-0.74953,-0.93405,0.9764,0.70745,0.74117,0.78199 -3.2925,-0.99887,-1.8215,-1.2908,0.29012,1.3719,-1.6001,-0.6021,-0.3894,-0.58572,-0.96391,0.6249,0.62861,0.63855,0.42372 1.7607,0.27792,-1.3328,0.2158,0.82455,0.6438,0.34398,-0.60296,1.0235,2.7795,0.51341,0.57707,-0.022573,-1.2354,1.4304 0.51201,3.2513,-0.19743,-0.090926,-0.518,0.86467,-0.59022,-0.71525,0.11321,0.044829,-1.6672,0.18718,1.3482,-0.11141,-0.63193 -3.4356,-0.28789,-2.6354,-1.1578,0.79071,0.65673,0.31576,-1.5471,0.13449,-0.83825,-0.37823,1.1687,-0.16218,0.57663,-1.5966 1.0498,3.5383,-1.6361,-1.184,-1.3143,0.098794,-1.3892,0.92632,-0.88602,-0.33834,-0.67883,-1.1876,-0.13707,-0.58139,-0.79173 -3.2622,-0.093177,-2.4669,-1.3096,1.008,0.27851,-0.99738,-1.6677,-0.44121,-0.65631,-0.32998,2.2061,0.43524,1.254,-0.16591 0.33922,0.96438,1.5403,2.2265,-0.072532,1.3105,0.49626,-1.9303,0.55232,-0.64937,-0.36804,0.87,-0.35612,0.14306,1.0958 3.2895,0.86664,0.42853,0.64023,0.4501,1.4312,0.29392,-0.89204,0.53317,-1.2277,-1.0765,1.4392,-0.33149,0.93342,-1.9798 2.6141,-0.29968,1.4213,1.1808,2.2116,0.80757,-1.5631,-1.5396,1.2169,-0.89672,-0.17811,0.78992,0.86031,0.051973,-1.1097 -3.6667,-0.74965,-0.82107,-1.939,0.99662,0.56087,-0.98599,-2.2832,-0.54837,-0.21157,0.000407,1.4539,-0.43484,1.3271,-0.57898 -2.5646,0.30336,1.3762,0.31176,0.070524,0.17798,1.0793,-1.4535,1.6454,1.5539,0.88941,0.60036,-0.20833,0.27674,-0.26843 -3.0207,1.2419,-0.19325,0.4793,-0.39082,0.66322,1.6907,0.49838,1.4422,-0.60498,0.6744,0.44667,-0.66058,1.0015,-0.92098 -3.1624,-0.17823,1.6483,-0.93754,0.52982,1.0664,0.65717,-1.2625,0.34147,-0.050474,1.7863,0.099661,-1.2727,1.0335,-0.92584 1.5344,1.4444,-2.2241,0.097407,-1.5315,0.88307,-1.3361,-1.226,0.87502,0.51461,0.8928,-0.42732,0.065538,0.55429,-0.12346 -2.0402,1.6447,2.0011,-3.1981,1.0169,1.0972,0.56458,-1.3437,-2.0602,-0.14176,0.36873,-1.5371,-0.78263,0.076994,0.054596 3.14,1.4252,2.8085,-1.293,3.4207,-1.6858,-0.30207,-1.0211,-0.62254,-0.18229,-0.35291,0.15116,-0.79254,-0.60802,-0.10695 3.7152,2.4492,-1.1124,-2.0377,1.2688,-0.22152,0.43846,-0.7314,0.817,0.9875,-0.044462,-0.81327,-0.67029,-1.2932,-1.2156 -3.365,-1.286,-0.75207,-1.2054,0.62473,-0.098894,-0.73356,-0.88413,1.4334,0.94123,-0.37054,0.49701,0.26812,0.55499,-0.095834 -2.3058,1.9998,-2.0764,0.23417,-1.0608,0.9902,0.90754,1.6191,0.58704,-0.6867,-0.41996,1.1442,0.12035,-0.17608,-0.055038 -2.3828,-1.1068,-1.9952,-0.6099,1.7505,-0.57202,-1.5789,0.046437,0.63107,0.87415,-0.95148,2.125,-0.61766,0.39675,1.1928 -2.1083,3.0643,0.15726,0.77347,-0.45362,0.61355,-0.61787,1.1435,-0.35638,0.8058,0.20614,1.6464,-0.17126,0.054436,-0.44749 2.1085,0.96814,0.57847,0.91697,2.473,1.0703,-1.6476,-2.3352,0.30801,-0.70215,1.1222,-0.3729,0.49636,0.12702,0.53591 2.7177,-2.789,-0.50095,-0.93318,3.2427,2.091,1.8742,-0.3607,-0.22765,-1.1436,-0.25832,0.65082,-0.012774,-1.5771,1.3436 1.45,3.0821,-0.48029,-0.94139,-1.052,0.67889,-0.54756,-0.49645,-0.76166,-1.0401,-0.76769,-0.42358,-0.29948,-1.2253,-0.59525 -3.5018,0.35082,-3.3086,-1.0286,1.6626,0.60288,1.1078,-0.60828,0.26365,-0.25268,-1.6947,-0.16238,0.021092,0.30536,-1.0044 -3.6768,0.55479,-2.4644,-0.90393,0.62989,1.0551,0.34975,-0.70402,-0.17257,0.5234,-0.027868,0.44304,0.3697,0.95081,-1.6303 -1.6961,-3.8352,1.2087,0.091956,1.9584,0.93816,-0.60519,-1.1999,0.66047,0.59832,-0.73708,-0.14546,0.66803,1.1727,-0.040168 0.056775,3.9984,-0.39259,-1.7364,1.1755,1.1184,-0.71756,-0.29346,-2.6387,-0.35215,-0.17464,-0.93931,-0.22328,0.97023,0.051313 2.4144,-1.4719,-2.5625,-2.5606,2.2532,1.7911,2.6151,2.2094,-1.1735,-0.52964,0.0038317,3.3442,-0.87056,-1.2925,0.45827 -2.2654,0.24347,0.70807,0.71795,-0.47042,0.51974,0.70944,-0.49516,2.1399,-0.27161,1.2266,-0.045352,0.25678,1.3621,-0.47685 0.24447,3.319,2.4144,-1.049,1.4607,-1.4476,-1.3445,0.15468,0.20836,-1.0238,-0.62643,0.4603,0.84183,-0.7776,0.0086539 1.751,3.1642,-0.21949,0.03297,-0.55004,-0.11058,-0.53585,-1.0218,0.70865,1.284,-1.3114,0.011008,-1.1757,0.27545,-0.68801 -3.3288,0.022797,-1.2402,-0.53344,0.55745,2.2521,0.22375,-0.21303,0.57672,-0.92466,0.19286,-1.1502,0.91875,0.65482,-1.1291 -2.1662,0.28348,-0.12482,-0.89536,-0.039435,-0.20869,0.20956,-2.752,0.67614,1.4098,-0.21184,0.36874,-0.070108,0.8395,-0.69417 -3.2612,-1.3858,-1.3971,0.044111,1.0161,-1.3616,-0.46845,-1.4291,0.9614,0.63935,-0.81546,0.70675,0.15503,0.56663,-0.34263 -2.2766,0.56415,0.68777,0.24182,0.74817,-0.48183,1.5938,-1.9798,0.087969,1.2924,0.35943,0.17048,0.22389,0.43802,-0.39388 2.0305,0.22795,-2.0211,-3.4528,0.078951,0.78714,2.1653,2.1258,-0.77056,0.048029,0.62764,2.3782,0.28172,-1.4831,0.52612 1.7293,3.3748,-1.4544,-0.84068,0.56636,1.3675,-1.505,0.72786,-1.4508,-1.0391,-0.1763,-2.2702,-0.70417,-1.069,-1.0252 -2.3327,0.1083,-3.5529,-0.89682,1.2673,-1.5081,0.407,-0.51967,-0.89112,-1.9387,-2.481,1.4428,-0.5673,0.18438,1.3157 -2.9601,-0.26198,-2.8113,-0.60337,0.54509,0.20688,-0.80697,-1.2849,0.32905,-0.6472,-0.32947,2.2749,0.012263,1.5482,-0.38654 -2.5041,3.0196,0.50456,-0.098471,-0.16387,1.6266,1.1136,0.56101,-0.83162,-0.44248,0.99084,0.94972,-0.43248,-0.39363,-0.64882 0.30359,-0.17077,2.4311,0.28918,0.20093,0.0045445,1.3089,0.73317,1.8609,-0.88429,-1.4468,1.156,-0.0098024,-1.6699,0.00075634 -2.7715,-1.8342,-0.43504,0.29729,0.97284,-0.35896,-0.11599,-0.0047216,2.2178,-0.42398,0.085531,-1.2665,-1.2598,0.43912,0.087563 4.2171,-1.1796,-0.46985,-1.9228,2.1916,-0.87629,2.3928,1.255,-1.5206,2.8246,0.97602,0.8797,-1.2531,-1.0906,1.6274 3.1798,0.05786,-1.1563,-0.78278,0.38281,1.0195,0.43552,-1.5283,2.0601,1.507,0.87594,0.34555,-0.44986,-0.15061,0.68453 0.77852,2.2145,1.0317,0.799,-0.22674,-0.30806,-0.58435,-1.058,1.6887,0.44827,-1.4114,1.2699,-0.44082,-0.39259,0.16489 1.8245,1.858,-1.388,1.957,-0.0083092,0.53646,-0.3979,-1.2639,0.51736,0.6417,-1.2827,-0.14516,-0.26725,-0.26063,-0.94582 3.4075,-0.67535,-2.1833,-1.5025,0.20161,0.22427,1.332,1.3813,1.3415,1.0726,1.5336,0.70055,-1.1023,-0.56777,0.85212 -4.0627,-1.0554,-2.2569,-1.7314,1.8662,-0.61798,-0.051083,-0.27536,-0.5997,-2.0573,-2.189,-0.046159,-0.88564,-0.24806,0.24604 -3.0205,0.49544,-2.7248,-1.3056,0.65407,-0.45167,-0.5369,-0.49544,0.66686,0.012019,-0.5512,1.4502,0.62632,-0.031004,-0.048739 2.253,2.2612,-2.165,-1.9952,0.33336,0.67985,-0.05276,0.7213,0.35619,1.4138,-0.15453,-1.4395,-0.081474,-1.6366,0.070598 4.0237,0.49519,1.624,0.060305,3.4818,0.22412,0.2336,-0.48322,0.032037,-0.40188,-1.4003,1.0768,-1.3079,-0.49495,-1.4068 -2.0878,2.0768,-0.74183,0.90059,-0.37445,0.089204,0.15778,1.6986,1.5923,0.097127,0.034267,0.96053,0.041588,-0.33765,0.63544 3.7235,-2.1234,0.90077,0.34901,3.6232,2.1581,0.012162,-0.4444,-0.27008,-0.73893,-1.1421,0.78948,0.81153,1.2555,-0.92533 -2.1547,1.0052,-3.3203,0.38397,-0.18212,2.2396,1.5486,0.66286,0.66319,0.7912,-0.74874,-0.79928,0.16534,-0.37666,-0.4757 -1.0912,3.8269,2.1055,-0.25037,-0.34408,0.037889,0.48863,-0.13289,-0.60953,0.77633,-0.27878,1.2111,-0.72952,0.014613,0.36142 -1.3925,2.6296,0.52874,2.2167,1.6844,-0.71947,-0.32704,1.7035,0.7591,-0.16199,-0.44984,0.5679,-1.1327,0.67372,-0.012273 -2.1283,2.1,-1.7299,0.7517,0.14369,2.5924,1.3696,0.7289,0.16259,0.85365,-0.48605,0.37236,-0.61722,-1.0275,-0.22124 4.5502,-1.4052,-1.6116,-1.2112,1.3472,1.5203,2.3232,0.23918,0.38202,0.64848,0.84188,0.029254,-1.9514,-0.62159,1.3564 1.7861,-0.38113,0.75966,-3.9743,-1.1038,0.45584,0.14809,-0.032278,-1.5243,-0.73518,0.17069,1.5811,-0.36468,2.8855,0.848 -2.1746,1.1863,-0.64365,1.3233,0.12682,-0.096335,1.0023,0.71993,2.0568,1.0121,0.36352,0.77917,0.0655,-0.98177,0.82828 0.49311,0.93393,0.21883,1.6246,0.15083,0.59652,-0.96609,1.6108,1.4128,-0.32862,-0.62573,-0.026201,1.2104,-1.4636,1.0354 4.1418,-1.0044,1.519,-0.043207,2.7819,-0.37707,-0.32561,1.6095,0.7188,0.058918,-1.0551,0.1378,0.5365,-0.29004,-0.966 -0.90419,4.6652,0.33845,-0.8908,2.5919,0.063499,-1.5363,1.4675,-1.528,-0.84783,0.20354,-0.77953,0.45776,-0.14872,-0.50601 -0.77032,0.52493,1.9034,0.33378,-0.60558,0.59517,1.32,-1.0495,2.1778,0.73562,-0.30434,0.97235,-0.07352,-0.27091,0.13406 1.0655,0.47927,2.0371,1.9082,1.2075,1.7184,1.202,-1.7221,0.59828,-0.34782,-0.97951,1.0266,-0.96901,-0.3579,1.1497 2.7358,-1.0732,-1.0179,-2.4296,0.54793,0.69275,0.42832,0.60758,2.8165,0.19095,0.49923,1.545,-0.030016,-0.36836,-0.050149 0.51333,1.3353,0.75085,2.4863,0.81751,0.78732,0.39506,-0.72273,1.2868,-0.44608,-0.91767,0.74036,0.16962,-1.0884,1.529 2.4101,1.6401,2.5487,0.39,0.69394,0.44684,-0.3623,-0.97487,-0.34232,0.10967,0.20416,0.068823,-2.2748,0.93012,1.4018 -2.8747,0.97735,0.40281,0.42686,0.22435,-0.84599,1.247,0.3274,1.6264,1.0821,0.70861,0.70781,-0.0046727,-0.79894,0.49793 1.8018,2.5981,0.14892,-2.198,0.7537,0.30181,-2.1693,-0.23864,0.21919,-0.46972,0.68624,-0.59902,1.6488,-1.7449,0.11764 3.5391,0.27773,-0.5442,-2.6303,2.1508,-0.13771,0.63897,-0.076006,2.0775,-0.51601,0.82691,1.1834,0.47259,-1.7039,-1.239 -3.0013,0.9766,-1.4172,-1.0872,0.41387,1.717,1.4802,-2.2825,-1.1355,0.83461,0.061593,-0.52279,-0.91498,-0.25747,-1.4627 -1.3282,2.1254,0.63512,0.40578,-0.73897,-0.2561,0.82876,-0.015078,0.45866,0.53611,-0.4122,1.2517,0.64261,-1.982,0.87693 -3.0637,0.96388,1.0044,-0.81276,-0.0032399,0.96063,1.067,0.71527,0.70739,-0.42246,1.3342,-0.05765,0.027905,-0.2339,0.10483 -1.5987,2.3317,0.67647,0.84324,-0.75191,1.216,0.19486,0.66193,0.70751,0.85164,0.76636,1.7565,-0.86822,0.44129,0.013392 -2.6234,0.88119,-0.26884,-1.2407,-0.85953,1.6305,1.3627,-1.3465,-0.52761,0.59582,0.39843,-0.37233,0.51562,-0.912,-0.079516 3.0026,3.0029,0.31862,-2.9432,1.1686,-0.68398,-1.0086,-0.094835,0.38249,-0.69657,0.078535,-0.88351,0.32853,-1.5826,-0.3339 2.4732,0.28287,-3.529,0.026763,1.4089,1.9188,2.7347,-0.26836,0.06349,0.22435,0.56053,0.72681,-1.1219,0.19588,0.57503 -3.5908,1.6278,-1.6388,-0.50811,0.26523,1.9321,1.3966,-0.080928,-0.97821,0.76426,0.82649,-0.53191,0.46517,-0.45935,-1.2605 -3.5052,0.27065,-0.066901,-1.2072,0.39381,1.2845,0.91954,-0.25996,1.1046,-2.0728,0.64271,-0.88756,0.9511,0.77644,-0.40852 -3.0942,0.25125,0.21563,-2.136,-0.47176,1.4359,0.38097,-1.7473,-0.4234,0.54292,0.49291,-0.39781,-0.02939,-1.0383,-0.1406 -2.5083,2.0206,2.2394,-1.2118,-0.27269,1.1323,1.3537,-0.97743,-0.33189,-0.96896,1.0999,-0.10771,0.71991,-0.0077802,0.38457 -1.1827,-0.30633,1.105,-1.7563,-1.15,2.1763,1.7478,-1.2472,-1.4406,-0.52467,0.37943,-2.1742,-0.77308,0.89887,0.55818 -2.5124,-0.54224,0.4496,-1.8998,0.042617,1.2829,-0.19432,-1.4213,0.51359,-0.47455,-0.039287,-0.97628,1.7425,0.53814,0.23957 -2.2038,-1.7281,2.2221,-3.5731,1.374,-0.44721,-1.0562,1.2689,-1.2391,-0.011159,-0.99251,-1.1444,0.55306,0.76017,0.94008 -3.7346,0.39581,-0.84599,-0.56313,0.18957,1.4374,1.3822,-1.8122,-0.76922,-0.36569,0.72493,-0.27519,0.40268,0.44057,-1.4387 -2.5098,2.358,-1.1459,1.2003,0.11484,-0.58488,1.351,2.7005,0.49934,0.33884,-0.89899,0.35316,-0.87834,-0.40336,0.78535 -2.6285,-1.316,-1.0684,-1.9422,0.47487,-0.068083,-2.0596,-1.4388,0.046436,-0.62728,-1.1633,1.7811,0.26073,-0.4782,1.56 -2.9083,-1.5572,-0.6016,-0.47219,0.40969,-1.0841,-0.35272,-1.4084,1.5475,0.38277,-0.036088,-0.14963,-0.2025,0.010392,0.28857 3.7764,-0.75266,0.37622,0.41764,1.703,1.4936,-0.81532,-2.2366,0.19699,-0.64715,1.199,-0.066946,0.17217,-0.9747,-0.89362 -2.643,-0.36522,0.30744,-1.1484,-0.18493,2.7683,0.16695,-1.7186,-0.017499,-1.1301,0.81229,-0.77997,0.52246,0.50472,-0.73795 -2.3736,0.075932,-0.65546,-1.6999,-0.81291,1.704,1.1465,-2.7249,-0.49216,0.11888,0.10931,-0.033536,-0.46302,0.37112,-0.74312 1.5982,1.7511,-0.57211,1.6354,0.57715,1.1037,-1.4167,-2.6014,-0.037785,0.090157,0.40706,-0.64416,-0.057562,0.18503,0.058837 2.0473,-1.447,1.4949,1.4338,2.4081,1.4047,-1.2029,-0.31261,-0.207,-2.4539,-0.86145,0.99349,1.6029,0.38059,0.11203 -3.6768,0.19709,1.286,-1.5711,0.41569,-0.054353,0.67362,0.025643,0.28145,-1.1269,0.80053,-1.2851,0.95472,-0.61505,0.60527 2.7994,-0.0071992,-2.1323,-0.54383,0.21688,0.97351,1.0348,-0.62312,0.49828,-1.3915,1.124,-1.7435,-0.56089,-1.1032,0.35822 2.6816,-0.46245,-0.50783,0.43493,0.84016,1.7581,-1.2425,-0.65096,1.7581,-0.36123,-0.55382,0.10089,1.3711,0.48642,-1.7893 0.75971,1.3246,-0.12374,2.7406,0.68103,1.1003,-1.2004,-1.8735,-0.12756,-0.55868,-0.027851,0.20559,0.16631,0.73783,0.31314 -1.6854,-1.3774,1.9395,-2.102,0.20487,0.0017445,-0.30658,1.1031,0.92044,-0.45963,0.18072,-1.1607,1.8604,1.1369,0.53342 -3.175,-2.4016,-0.60169,-2.1393,1.8754,1.1954,-1.8373,0.39971,-1.2705,-1.6545,-1.2904,0.025424,0.10295,0.54217,1.435 -2.7611,-0.16211,2.003,-1.4584,0.1761,0.11564,0.40847,-0.64629,1.4246,-0.52286,1.0393,-0.66665,1.409,0.4461,0.18504 -2.6871,2.7861,0.17231,-0.15964,-0.76818,0.69348,1.5862,0.086656,-0.78022,1.7053,0.65367,1.0703,-0.084697,0.19315,-0.11772 1.2055,-0.024806,3.5872,-0.071416,1.3721,0.68837,1.9609,-0.17161,0.8297,0.59605,0.31748,0.75859,1.2448,0.094742,-0.69423 -1.7188,0.95831,2.4239,-0.0056073,-0.25518,-0.72625,0.36678,1.2473,1.6009,-1.1647,0.44827,-0.61079,0.84443,-0.97265,1.3145 3.823,0.21781,-2.2219,-1.7689,0.067258,1.1128,1.0559,0.028727,1.9567,-0.091638,1.9152,0.18404,-1.3285,0.018045,0.2629 -4.5029,-1.1958,-0.48984,-1.6528,1.2067,0.37481,-0.3858,-1.0096,-0.45363,-1.6273,-0.32288,0.25926,-0.066667,0.4069,-0.30148 0.11067,3.3986,-0.37673,1.3325,0.17262,0.17441,-1.4245,-0.47742,-0.13949,1.5412,-0.22256,0.82668,-0.47772,-0.09161,-0.89109 -3.6073,-0.69529,0.78654,-1.5346,1.2619,0.61022,0.83578,-0.52718,-0.52222,-1.5431,-0.38607,-2.0663,0.2901,-1.7895,0.35259 2.2729,1.4634,-2.4076,-0.93025,-0.53548,-0.075151,0.13542,0.052718,0.8787,2.6193,0.18338,-0.71326,-0.4212,-0.36843,0.81984 -0.56607,-0.74453,3.7431,-1.1234,1.0959,-0.74892,0.22427,2.6326,1.2441,-0.81925,0.82678,-0.5845,1.0735,-0.4174,0.51424 1.1107,2.8387,-0.83924,-0.87078,-0.39165,-0.061192,-2.5212,-0.21668,-0.7729,1.6796,1.4454,-0.18782,0.51844,0.12909,-0.89768 -2.5707,0.083775,2.1013,-2.1121,0.86689,1.5411,0.20845,0.32744,-0.0012418,-2.1828,1.3023,-1.3839,1.2884,-0.11501,0.37476 1.4076,2.9162,-1.4482,0.46927,-0.71786,0.25287,-0.61519,-0.59504,0.064348,0.93237,-1.3903,-0.42195,0.32888,-0.90185,-0.93787 -3.4795,1.6738,-0.67335,-0.057778,0.35598,1.7993,1.5814,0.090433,-0.5308,0.52681,0.57886,-0.90592,0.74612,-1.3344,-0.10036 -0.018638,1.4464,2.704,-1.6751,-0.56727,2.0224,0.25477,-0.26678,-0.20988,-1.6343,1.158,0.06244,0.98607,1.0734,0.59138 0.092383,3.2324,-0.45833,0.13689,-0.14637,0.041246,-1.1881,-0.96738,0.27185,1.2731,-0.59428,0.54164,0.44015,-0.69326,-0.61748 -1.9316,-1.3065,2.5903,-1.9834,-0.066518,0.49998,0.10033,-1.001,1.2419,0.14837,-0.10507,-0.59302,1.31,-0.011963,-0.54597 1.0261,2.1659,-1.1574,-1.7172,-0.68714,0.13703,-1.5767,-1.3313,0.69496,0.46118,1.8711,0.19307,0.30586,0.34534,-0.058797 3.7994,-1.6036,-2.0344,-0.63977,1.5979,2.9486,1.5757,0.18394,0.34076,-0.33849,0.52369,-0.16497,-0.38083,-0.0012123,0.076978 -1.6468,-2.072,0.015391,0.58026,1.6877,0.47044,0.57972,-2.6885,0.10614,-0.40641,-0.57304,0.077824,0.91699,-0.141,-0.37089 0.060321,2.7812,1.8274,0.6873,-0.76173,0.46707,-0.03496,-1.3354,0.63872,1.1023,-1.0165,1.7041,-1.2137,-0.31132,-0.062856 -0.69375,-2.3193,0.76677,0.18748,1.1884,1.235,0.81589,-1.5473,0.11213,-0.49201,-0.98322,-0.31422,1.5705,0.11456,-0.66254 -0.91095,-2.0247,1.635,0.95127,1.2173,0.54572,1.059,-0.70125,1.2331,-1.3419,-0.068167,-0.75202,1.3246,-0.28267,0.33368 0.38334,-2.168,1.8509,1.5441,0.1495,3.8615,0.62475,-0.06378,-0.87981,-0.46746,-0.55855,-0.6267,1.8858,0.71098,0.19639 0.76141,3.5853,-1.2264,-0.92549,-1.3316,0.30752,-0.92816,0.28763,-0.63198,0.4758,-1.363,-0.55358,-0.37482,-0.68729,-0.90236 -0.97743,-2.1449,1.4915,1.5302,1.5251,0.42737,1.2272,-0.21236,0.76312,-1.6349,0.36167,-1.0715,1.0208,0.044712,-0.011731 -1.8599,-3.5053,-1.0744,0.78975,1.4075,-0.37973,-2.1109,-0.60772,0.99227,-0.44819,-0.96786,0.94955,-0.96306,0.57236,1.3938 -2.8629,-0.21662,-1.0352,-1.0311,0.28687,-0.51941,-0.67217,-1.1816,1.0686,0.30751,-0.13233,0.6748,0.4111,1.0265,0.0060348 2.4491,1.8495,-1.2922,0.27695,0.7413,0.035601,0.10935,-2.4462,1.0059,1.5098,0.42791,-0.47897,0.09395,-0.045391,-0.11828 1.3462,0.0080641,-2.2768,-0.045388,0.052938,3.5931,1.4606,-0.54893,-0.046562,-0.71048,-0.83007,1.3207,1.2544,-0.44295,-0.50407 2.5801,1.6143,-1.5634,-0.92211,1.6901,0.87934,1.1643,-0.3629,0.42148,2.1841,-0.16753,-0.50041,-1.2496,-0.99991,0.66875 -0.43907,-3.4448,0.92247,-0.21116,0.40856,1.1914,0.315,-1.87,0.53146,0.66798,-1.5139,0.28621,-0.044015,-0.33446,-2.0754 -2.9489,1.6284,-1.7448,-0.63011,-0.32226,1.3805,1.5788,-1.1173,-1.5317,1.3827,0.43041,-0.0017301,0.46393,-0.13548,-0.73146 -1.522,-2.2325,0.091186,-1.4275,0.71794,-0.17734,-1.1808,-1.6251,0.93916,0.63297,-1.8869,1.0624,0.76371,0.48134,0.55946 -2.3278,-1.9962,-1.5903,-0.049381,0.28442,-0.44222,-2.0447,-0.42227,1.3038,0.0098548,-0.80577,0.91814,-0.67175,0.18665,0.94445 -2.4119,-1.8331,-1.4773,0.26927,1.323,-0.55687,0.81338,-0.31339,0.070523,-1.5016,-0.47205,-1.5317,-0.59225,0.30628,0.29005 2.4044,-0.69572,0.78146,0.51987,1.6886,0.53692,-1.1064,0.0089737,1.3581,0.17143,0.43186,0.69956,0.8531,1.1666,0.9625 0.14178,-2.5637,2.1269,0.94526,0.38372,3.3732,0.4355,-0.33383,-0.81172,-1.7258,0.038114,-0.27564,1.7077,0.83471,-0.23531 3.2591,-1.5009,-1.611,-0.58854,0.94505,2.0611,1.9109,-1.9381,0.60339,-0.88982,0.70468,1.233,-0.70406,-0.017471,0.60653 2.9619,2.4258,-0.59784,-2.1536,0.25798,-0.83084,-1.1537,-1.0988,0.56953,1.3924,0.99613,-1.0953,-1.8343,-0.11299,0.0031416 -2.7478,2.5061,1.4622,-0.68512,-0.1846,1.8672,1.0589,0.54698,-1.1716,-0.58976,0.40592,0.76695,-0.22538,-0.93219,0.73061 -3.7924,0.9619,-1.3008,-0.60055,0.98232,1.3007,1.9728,-0.60874,0.078265,-0.33643,0.46833,-0.29657,0.0099038,-1.5528,-1.0072 1.5324,2.6243,-0.57077,-1.137,1.7717,-0.97294,-0.5586,0.37208,-0.97337,2.8051,2.0038,-0.23314,-0.073394,-0.10315,0.96769 -0.56385,-0.74859,4.5772,-1.637,0.11743,0.21708,1.1537,-1.0964,0.96994,0.6253,-0.54187,0.13325,-0.87269,0.78854,-0.0072232 -2.9513,2.1083,2.0828,-1.9974,0.19117,0.93243,1.1262,0.095432,-1.3358,0.25025,0.71136,-1.1977,-0.21788,-1.8305,0.59395 3.4542,1.9777,0.57136,-2.1054,1.3365,-1.0072,-1.0201,-1.3681,1.3453,1.5191,0.96112,-0.071754,-0.30066,-0.004357,-0.21425 -1.8849,2.6129,3.0411,-1.6575,0.32852,1.4898,1.063,-0.50236,-1.2471,-1.5338,0.45878,-0.2475,-0.38179,-0.63229,0.38492 0.73899,2.5142,-0.082279,0.49379,1.3757,0.10119,-2.1289,-0.46218,1.1571,2.1389,0.55289,-0.24732,0.0062104,0.594,-0.68251 4.8908,-2.1224,-0.63265,-1.501,2.2274,1.5371,2.3914,0.00016999,0.67349,1.1324,0.6411,0.98609,-1.6067,0.59413,1.18 1.8014,-0.60835,5.0371,-0.09923,1.5641,0.55317,0.21468,0.69276,0.84039,-0.010201,-1.2515,0.69954,-0.81001,0.98821,0.37416 -2.5588,1.3115,3.3222,-2.2785,0.3318,-0.1393,1.0357,-0.05966,0.29498,-0.19665,0.66176,-0.84816,0.52801,-0.9033,0.78093 2.3324,3.0355,-0.30508,-0.15869,-0.25086,-0.25682,-0.59725,-0.48041,-0.093495,0.07913,-1.3535,-0.24065,0.23976,-1.1209,-0.6671 -1.814,1.3706,3.3259,-1.8022,-0.15264,-0.39636,0.62254,1.9693,-1.2437,-0.9657,-0.22427,-0.78829,0.12508,-2.4216,1.3583 -4.3289,-0.066944,0.0045913,-1.9657,1.3163,1.0543,0.46374,-0.72931,-0.20604,-1.3032,0.49229,-0.78033,0.056116,-0.9414,-0.62918 3.6783,-0.94225,-1.7876,-0.36848,0.9459,1.5242,2.1646,-1.4841,1.1781,-0.51858,0.93928,1.1675,-1.3579,0.47349,-0.14296 -3.9821,-0.93432,1.2933,-2.0696,0.89331,1.4412,0.43658,-0.99121,0.10604,-1.1215,0.93922,-0.1346,-0.045366,1.0537,-0.71403 3.8936,-1.1504,-1.2073,-1.7609,1.5023,2.9382,2.3072,-0.32113,-0.48466,-0.75704,1.4917,0.67367,-0.1303,-0.75319,0.47042 0.073848,2.6414,2.5339,-1.5422,0.00344,1.463,0.57939,0.28486,-1.3723,-2.536,-0.36494,-0.12043,-1.1062,-1.5012,1.2734 -2.7387,1.6689,-0.092326,-0.59062,-0.0084353,1.8926,1.3382,-0.071666,-0.1247,1.0306,0.5625,-0.36374,-1.2573,-0.58208,-1.2905 -1.0716,-2.821,3.4329,-1.3126,1.8456,-0.1447,1.1353,-0.54821,0.66127,1.7026,-1.3161,-0.57002,-0.55753,-0.79835,0.44797 -1.2804,3.1781,2.2528,-0.4549,0.64365,1.575,0.11329,0.73201,-1.9957,-0.62736,1.1467,-1.2597,-0.15739,-0.95534,0.31506 2.8049,2.642,0.87279,0.60842,0.40657,0.036391,-0.54223,-1.2537,0.12101,0.68469,-1.3891,-0.98319,-2.1285,-0.29173,-0.42481 -1.0101,1.2786,0.68362,2.8638,0.65046,0.30274,1.3646,-1.0005,0.11796,0.42431,0.37353,1.0393,-0.12054,-0.13724,0.38512 4.6584,0.1379,-1.4396,-1.1738,2.1122,0.027565,1.1698,-0.74124,1.8715,0.19589,0.88354,0.024568,-1.752,-1.1281,-1.061 3.2738,2.218,-0.88107,-1.1641,1.039,-0.63557,-0.35734,-1.5603,0.88278,1.4242,0.52713,-1.6348,-1.7592,-0.32688,0.60035 4.0514,-0.25938,1.0965,-1.091,2.7731,-0.72006,-0.10614,-0.14627,1.8092,-0.039056,-0.24788,0.86028,-0.73702,-0.7099,-0.18923 2.2795,2.4725,-0.66891,-1.0813,0.20986,-0.22049,-1.5026,-1.6596,0.90923,1.3934,1.419,-0.86263,-0.26284,0.72179,0.11623 -4.3944,-0.88515,1.0535,-2.7715,1.8226,-0.43212,-0.081287,-0.12096,-0.24751,-1.5255,0.39715,-0.79359,0.10845,0.7815,0.058259 2.01,0.84375,0.94184,-0.49972,1.3304,0.61965,0.98032,0.65118,0.48644,0.48446,-0.49551,2.1515,1.475,-1.4304,0.22714 -0.4592,3.0963,-0.27607,1.4097,-0.79429,0.6302,0.19331,-0.49176,0.1706,0.73631,-0.5551,1.3446,-0.3665,0.49483,0.17823 0.71526,4.1706,1.5848,-0.48407,-0.50187,0.25896,-0.002533,0.20778,-0.89125,1.0553,-1.5903,0.28622,-0.69491,-0.57335,-0.12952 4.972,-1.2877,-0.38442,-1.9077,3.8541,2.019,2.8312,-1.2628,-1.5992,-1.4763,0.70215,0.19701,-0.76624,0.15231,-0.44176 4.3366,-0.86281,-0.51108,-1.9013,2.9571,2.5673,2.0466,-1.8796,-0.66945,-1.6388,0.77459,0.14639,0.54614,0.0014321,0.0068477 -1.5106,3.7448,1.7934,-0.11587,0.35655,-0.1248,-0.11018,0.050417,-0.99774,-1.3445,-0.23461,0.60277,0.83433,-0.19628,0.36596 4.3679,-0.5656,-1.2793,-2.2087,1.4583,0.07277,2.1307,0.049282,1.5294,1.3623,1.0934,0.96329,-2.5484,-0.74529,0.78182 5.0587,-0.75257,-0.7111,-1.149,2.8059,1.7441,1.9212,-1.6872,0.62825,-1.0058,0.91953,-0.20965,-1.349,0.063105,-0.4928 0.33553,2.7002,-1.2933,1.3492,0.33266,0.75076,-1.4181,-0.59705,0.48962,1.8638,-0.18782,0.41927,-0.58395,0.21723,-1.208 -0.71991,3.1609,0.50547,-0.21697,-0.34926,0.85258,-0.30356,-0.020001,-0.060298,-0.92264,-0.91434,0.77593,1.5403,-1.1886,0.7444 0.72036,2.7266,-0.68384,1.9108,0.8384,0.40709,-1.2001,-1.7851,-0.084754,0.39079,-0.13882,0.13274,0.30862,1.2099,-0.80191 1.0458,-2.4525,3.0324,0.94854,1.1973,3.6133,1.4953,-0.56731,-0.57405,-0.55748,-1.2116,-0.0059572,0.82358,0.94682,0.22536 -2.9577,-0.56717,-1.7133,-0.50645,-0.24208,1.0724,0.27119,-0.26939,1.9222,-0.15569,0.80188,0.13029,0.20218,0.47611,-0.56371 0.8276,2.687,1.0708,0.58319,2.4192,-1.981,-1.5956,0.42307,-0.16691,1.1928,-1.0221,-0.14319,0.61808,-1.9589,-0.51785 -1.4931,-2.9283,0.35351,0.030719,0.97853,0.12547,-1.1239,-1.1314,1.4706,0.96622,-1.7205,0.24186,0.92098,0.11554,0.28757 0.18113,2.7267,-0.87079,-1.7946,1.5172,1.2208,-0.14761,0.054667,-1.8489,-1.0248,1.7449,-0.15834,0.44401,1.0088,-0.015354 -2.2972,0.19536,0.44932,0.97227,0.41638,-0.0086484,1.2503,-1.2052,1.9579,1.3014,0.76964,0.88494,-0.22057,-0.20039,0.14185 -1.0921,0.30728,1.6199,1.3,0.18763,0.5585,2.2412,-1.9138,0.9988,0.92386,-0.47651,1.109,-0.33488,-0.61211,-0.43184 -1.8638,-2.3726,2.3694,0.94871,1.5328,1.3913,1.022,-1.4413,0.75813,-0.36381,-0.13166,-0.0696,0.38695,-0.052329,0.27576 -1.6318,-3.104,0.48894,0.22399,2.6313,0.25548,-0.025811,-2.7864,0.82321,0.16435,-1.6696,0.50336,0.46296,-0.40131,0.11689 1.8789,2.4554,-0.46421,-0.7733,-0.42167,0.0045353,-1.326,-1.2709,0.99729,0.64585,-0.12377,0.43932,1.1325,-0.71109,-1.4512 1.6609,-1.1674,3.1524,0.85581,1.7265,2.5336,0.94778,-0.7525,-0.46445,-1.8409,-1.5295,1.7756,-0.57249,0.42026,-0.25063 1.5834,2.2476,-1.7247,-1.0705,-0.91247,0.62286,-1.5286,0.17503,0.51735,1.4551,0.097566,-1.2354,0.18527,-0.50587,-0.10747 -2.3078,-2.9363,1.6188,-2.895,0.80067,-0.47339,-1.2283,0.49209,0.056388,0.7679,-1.8204,-0.72812,0.28342,0.52033,0.93263 3.3193,-1.4821,1.1712,0.75033,0.71548,3.8338,2.4103,0.90358,-1.7105,-1.4888,-1.9751,-0.082017,-0.57934,2.1486,-0.20976 4.8293,-0.024973,-0.41312,-1.5532,3.0408,0.78172,2.4269,-0.37997,0.12545,0.7963,1.093,-0.061039,-1.1659,0.87618,1.0342 -1.4707,-4.1819,-0.50635,0.36513,1.6309,2.5022,-0.66064,-0.36908,-0.4093,-0.47827,-1.9815,-1.5693,1.84,0.99595,0.84472 1.906,-1.8571,2.5735,1.0446,2.0813,3.1455,0.95986,-0.099121,-0.3962,-1.5739,-1.1184,1.1444,0.98168,1.0651,0.53969 4.302,-1.0469,-0.51887,0.80936,1.9879,2.3493,1.2561,0.67028,-0.77278,-0.59736,-1.3291,1.4081,-0.064343,1.7319,-1.8913 0.18161,-0.98381,1.9579,2.0469,1.307,2.3564,0.26965,-0.11497,0.49985,-0.88922,-0.55545,-0.12468,0.8392,-0.10254,2.585 2.2601,0.35338,-1.5947,0.038745,1.4758,0.44733,1.2913,-1.6149,0.67556,1.73,0.11091,0.51155,-0.64073,-1.9794,0.78212 0.67022,2.858,-1.3248,-1.2109,-0.3911,1.0111,-0.24852,-1.1438,-1.41,-0.92545,0.29008,-0.83005,0.82344,1.3284,0.36064 0.66075,-2.5142,2.5698,1.1771,1.0826,3.1192,1.7217,-0.29488,0.11848,0.07259,-1.207,-0.58351,1.1512,1.5693,-0.63209 -2.8512,0.88986,0.82707,-0.050646,-0.54919,0.12245,0.97777,-0.21392,1.6512,0.2971,1.1549,0.72552,-0.20906,-0.44446,0.27003 -3.3629,-3.4671,1.319,-1.6279,1.9214,-0.51233,-2.2383,0.023623,0.4802,0.12151,-1.1033,-0.26164,-0.94472,0.89065,1.2303 -0.070026,2.1742,2.2537,-0.16907,-0.51877,0.042608,-0.61227,0.42743,0.28256,-0.65812,-0.99401,1.1143,0.58814,-2.6142,0.45603 -2.6286,-1.2332,0.5347,-2.2517,0.3037,0.090343,-1.1388,-3.1626,0.2678,0.50258,-0.59393,1.1055,-0.5742,1.4536,0.33224 -3.9617,0.0039026,-0.57159,-1.373,0.4488,0.99204,0.80327,-1.3294,0.21211,-1.6928,0.76127,0.03619,0.075328,0.4877,-1.6829 0.38039,3.2583,-0.67441,-0.16147,0.81194,0.50373,-2.1932,0.52838,-0.6164,1.1606,1.3331,-1.064,0.56548,-0.41655,-0.72683 -3.3378,-0.29564,1.5534,-1.5097,-0.262,0.84007,0.068523,-1.0302,1.2156,-0.30332,1.0717,-0.24587,0.31193,1.1262,-0.5569 -2.1018,-0.64103,0.58131,1.513,0.52216,0.51311,1.7003,-1.8005,1.2289,0.28408,0.45413,0.21258,0.77998,-0.13304,-0.031717 -3.075,-0.77045,2.2759,-2.6088,0.35146,0.65977,-0.31918,-1.3782,0.12967,-0.82269,0.46176,-0.50244,0.62931,0.74793,-0.040529 -2.7951,1.5014,-2.2492,0.30134,-0.57255,1.8341,1.9898,0.61548,0.18822,-0.50874,0.11371,-0.06172,0.64008,0.14765,-0.65003 -3.5369,-2.4324,0.39558,-2.1901,0.61724,0.036296,-2.1107,0.42331,0.47612,-0.95162,-0.78269,-0.094144,-0.12068,0.71959,0.87865 -3.9993,-1.1316,-2.2352,-1.8253,1.6818,-1.334,-1.3081,-0.35129,-0.32358,-1.8841,-1.1217,1.4651,-0.7039,0.59578,0.79487 -2.7679,-1.3717,2.2373,-2.047,0.20307,1.1278,-1.0908,-1.0476,0.73753,0.26844,0.58638,-0.16041,-0.23393,2.3506,-0.28515 -0.61537,2.2328,0.59721,0.8273,-0.088829,0.10128,2.9041,-0.025209,0.32595,1.1181,-2.4201,0.78327,-0.79335,-0.72686,-0.24029 3.5747,0.83031,-1.8815,-3.0069,0.13098,0.34469,0.63611,0.16966,1.7388,1.0001,1.2001,0.29173,-1.0103,-0.90024,0.0045525 3.8938,-0.58466,-2.3541,-1.8888,-0.4001,-0.43864,2.3183,1.0431,0.55379,1.2274,1.516,2.2953,-1.5788,-0.61035,-0.49537 4.1951,-1.172,-0.73836,-2.2157,1.7086,-0.7754,1.9677,0.90363,0.91121,1.6637,1.2628,0.84628,-2.5132,-0.63586,1.7281 -3.3356,-1.402,-0.62718,-1.5677,0.71496,-0.37999,-1.974,-2.0467,0.17905,-0.066697,-0.12944,1.9889,-0.39503,1.3139,-0.04346 -3.9647,-1.0311,-1.612,-1.6026,0.83516,0.63828,-0.61082,-1.6767,-0.26055,-1.6213,-0.23931,1.0533,-0.11586,0.52713,-0.99421 2.2593,0.72198,0.0043665,-2.0829,1.6179,-0.95677,-0.81518,-0.24543,0.27854,0.6131,2.9564,0.74764,1.7701,-1.2033,0.21835 3.1476,0.052192,-1.1065,-0.94996,0.50412,-0.18149,-0.4857,-0.061935,1.2397,-0.24996,-0.32047,0.20511,0.19742,-2.1092,-1.7829 -2.0669,0.92006,2.9783,-1.8911,1.1665,-0.81766,2.1747,0.0092109,-0.5092,-1.026,-0.80707,-0.61391,0.95872,-1.0868,-0.42686 5.1719,-0.28761,0.87627,-2.2724,2.2183,0.020149,0.48366,0.21604,1.3943,-0.70515,-0.18244,0.6169,-1.9919,0.62986,-1.9889 -2.7423,0.8061,-3.4334,-0.17016,0.58222,1.4845,1.4449,0.33037,0.49147,0.66509,-1.0132,-0.78726,0.27943,-0.90175,-0.7015 -3.8617,-0.97258,1.0606,-2.0315,0.58509,-0.47475,0.18387,-0.091248,0.93929,-0.69263,0.41764,-1.1397,0.58035,0.45262,0.51359 2.9968,-0.70454,-2.1465,-0.49852,0.54396,3.8863,0.52371,-0.1939,-0.84799,-0.73261,-0.3646,0.26789,1.3445,1.8244,-1.6239 -2.4719,1.7768,-0.46525,1.7381,1.3854,-0.82001,1.0301,1.1847,-0.18516,-0.97331,-0.82104,1.0932,-1.9898,0.055473,-0.043548 -3.5532,-1.6514,1.01,-2.6253,1.8202,-1.1358,-0.79839,-0.98777,-0.14279,0.65831,-1.4412,-0.23605,0.24514,-0.1878,1.0376 -1.7468,2.6039,-0.34162,0.3904,-1.9974,0.68956,1.0017,-0.067647,-0.71683,0.74121,0.30579,0.92348,-0.32197,0.65732,0.081932 -3.2062,-1.8955,-2.1989,-0.98674,1.146,-1.201,-1.5662,-0.66757,0.69779,-1.6107,-0.79435,1.4963,-1.122,1.1152,0.8018 -2.2029,-1.6663,3.9628,-1.3357,0.3631,-1.2658,0.42407,0.26104,0.8714,-0.42313,-0.71967,-0.82459,0.23471,-0.84298,0.34388 -2.8169,-0.47751,1.9819,0.92208,1.4049,-2.4997,1.5828,1.026,0.90793,-0.76823,0.29737,-1.1383,-0.78061,-0.3585,0.39198 1.7527,-1.8738,2.7,1.2053,2.8481,0.67887,-0.45179,0.87622,0.61169,-0.37619,-1.3481,-0.18878,0.82618,0.61367,-0.18211 1.6477,1.935,-1.3528,0.34611,-0.2089,0.17822,-0.7637,-1.6775,0.9171,1.7624,0.73905,-0.55717,0.29463,0.28096,0.56483 -1.3684,-2.5904,3.3449,0.43353,1.4053,-1.3014,0.66811,1.8291,0.8384,-0.82408,-0.34273,-1.4985,0.43912,-0.20116,0.10068 -2.1568,-3.9558,2.8658,-1.272,2.0679,-0.91323,0.037352,-0.9229,0.91163,0.36328,-1.6885,-0.082881,0.61799,-0.14927,-0.059024 0.6273,2.6749,-0.56419,1.3965,1.1154,0.87491,-0.90186,0.36709,0.41223,1.4109,-2.0203,0.2665,0.97643,-0.97629,-0.90759 3.2856,2.5995,-1.0964,-1.5777,0.78842,-0.94625,-0.22838,-1.3403,0.30852,2.3035,0.37255,-0.90865,-0.77929,-0.36898,-0.022792 -3.6971,-1.6315,0.020146,-0.88161,-0.17106,-0.85909,-0.38178,0.63813,0.91268,0.046287,-0.49107,-1.6104,0.04884,0.09235,0.11442 3.4303,-1.2922,2.5428,0.82604,2.1318,1.7508,-0.91899,0.67749,0.878,-0.74722,-2.5572,0.57626,0.33542,0.81747,-1.1368 -2.2278,1.5657,-1.6047,0.63964,0.25782,1.8826,0.93372,0.59876,0.57898,-0.8903,-0.27512,-1.1942,0.01373,-0.17829,-0.53759 -3.6948,-1.214,-0.16621,-1.7066,0.013104,-0.42882,-0.39895,-0.74161,0.17459,-1.1511,0.080252,-0.90054,0.67333,-0.59257,0.40076 -0.78691,2.2905,-0.60102,2.7022,1.0373,0.087533,-0.43926,-0.30653,0.43666,0.015752,-0.39056,1.1372,-0.39153,0.9336,-0.39491 -4.4677,-0.87532,-1.3673,-2.3642,2.0226,-1.257,-0.61979,-0.051702,-0.17446,-1.2694,-0.76027,-0.091592,-0.73816,0.5329,0.35775 -2.241,-2.7062,-0.11113,-2.7475,0.4228,-0.83101,-1.6329,-0.94155,-0.23615,-0.37216,-2.7232,0.5725,0.24085,-1.2836,1.1273 4.6111,0.55155,-0.39676,-0.099617,1.4077,-0.436,0.39955,-2.1989,0.2877,0.82307,0.77583,-1.4738,-0.57747,0.91316,0.57995 -1.5061,-1.0649,2.2812,-3.4413,-0.052408,1.4942,1.3077,-0.78315,-0.07146,-1.725,-0.94072,-1.4092,-0.19636,-0.91182,-0.22228 -3.609,-1.1373,2.6283,-0.66015,0.79824,-1.7228,0.45984,-0.099137,0.94842,-0.55009,-0.3701,-0.45116,-0.35808,0.029189,0.40771 1.8043,1.101,1.1045,0.43106,0.0063876,0.28993,0.7392,-0.41447,1.5453,-0.59524,-1.8878,1.4806,-1.8834,-1.1642,-1.579 -3.5618,-1.147,-1.1583,-1.5925,0.15894,-1.098,-0.94677,-0.88823,0.14709,-0.5305,-0.84304,-0.0093046,0.64353,-0.36812,0.79175 -0.90511,-0.92662,2.2944,-2.2823,-1.4094,0.77066,1.3532,-2.0866,0.88002,-0.27451,-0.96565,-0.2059,-1.2843,0.41181,-1.1748 2.0215,3.1623,0.44797,-1.3137,3.1677,-1.1507,-1.8413,0.29579,-1.7566,1.7513,0.71794,-1.1952,-0.92094,-0.56091,0.078834 -2.3602,-1.4319,1.3014,-2.5468,0.4158,-1.1917,0.50031,-1.0641,0.59069,-0.47222,-1.2852,-1.0473,1.2957,-1.5681,0.06611 1.7323,2.1415,0.00028786,0.49115,0.74362,-0.053613,-0.49445,-1.5183,1.2252,0.1045,-1.1682,0.9222,1.3008,-0.37523,-1.9826 -3.6904,0.70518,-2.3892,-0.55591,0.78153,-0.16482,1.1641,1.0769,0.44941,1.0631,-0.10634,-0.44366,-0.46632,0.442,-1.0251 -0.35959,-0.33761,3.2645,-0.49883,-0.25892,0.26523,1.0608,0.56161,2.2596,-0.42599,-0.32896,-0.18436,1.2873,-1.1381,0.71524 2.5298,1.7121,-1.209,0.1864,0.81162,1.0967,-0.55157,-2.5361,0.41671,0.75753,0.7314,-1.679,-0.47321,-0.34753,0.67517 -1.5751,-0.96951,2.709,-2.7606,-0.61491,1.9826,-0.27519,-1.0668,0.29387,-0.15133,-0.60445,-1.0295,0.26153,1.5956,-0.16832 0.1334,0.95896,-0.3379,1.6288,-2.8226,1.5468,0.0221,-0.11831,-0.19564,0.30336,0.33417,-0.75396,-1.6564,0.85091,1.1521 -2.4576,-0.083838,0.31286,-2.207,0.10217,0.15171,1.1873,-2.6421,0.079363,-0.59982,-0.94452,-0.75946,0.89667,-0.11959,-0.29174 3.0753,0.36885,-1.4205,-0.51728,-1.3939,-1.4221,-0.27018,-0.51933,1.5121,-1.1281,-0.081779,0.45736,-0.97404,-0.93568,-2.3411 5.1664,-1.2977,-0.7482,-1.7548,2.2278,1.4734,1.3193,-0.048216,1.2575,0.26484,0.95291,0.82736,-1.8502,0.39862,-0.70879 -3.3983,-0.69195,1.7904,-2.1148,0.14616,0.63613,0.069051,-1.7903,0.65724,-0.36586,0.60819,-0.031327,-0.0063807,1.3211,-0.26209 2.9995,-2.8621,1.8986,-3.1609,1.3029,0.53169,1.3359,1.5442,-0.5376,0.072208,-1.1141,2.1383,-0.97034,2.7865,-1.4811 -3.4466,0.20405,-2.095,-1.7012,1.8693,0.22736,-0.86044,-1.7376,-1.4489,-0.65672,-0.46265,2.0417,-0.42038,0.20162,0.36924 -0.52762,2.6844,-1.7302,0.066755,-0.13515,0.66026,-1.576,0.43993,1.2418,1.4126,0.028171,0.5571,1.1229,-0.24319,-0.61694 -2.9308,0.25039,-1.2294,-2.2429,0.72531,-0.039229,-0.70555,-2.5527,-1.5528,0.0013756,-0.42452,1.9677,0.30378,0.41564,0.25585 2.2723,0.25895,-2.3171,-0.90732,-0.94921,0.41412,1.6077,-0.66701,1.4898,0.51443,0.24671,1.4649,0.0381,-0.1262,-0.066294 -2.5241,-0.91588,3.6331,-0.94147,0.49672,-0.14198,0.17085,0.18714,1.8192,0.43819,0.3833,-0.52447,-0.040702,-0.22426,0.60502 -3.2815,1.1308,2.1649,-1.6768,-0.081313,0.56526,1.0742,-0.16252,0.52521,-0.64938,1.2302,0.10965,-0.24014,-0.4653,-0.10997 -0.17943,1.9772,1.0014,-2.7647,-0.59555,1.7384,1.7238,0.79751,-1.7802,-0.34881,0.26111,-2.0554,-1.1713,0.65971,-0.56218 -3.0932,1.4444,2.2626,-0.74554,0.73439,0.28416,0.69355,0.53504,0.92387,0.029263,1.2844,-0.013224,-0.82751,0.081517,-0.316 -0.30436,-0.21574,2.8866,1.4238,1.0473,1.2025,-0.023399,-0.18049,0.87011,-0.18737,1.2473,0.59144,-0.90358,1.3476,1.4847 1.9136,-1.1687,-0.46844,0.040824,2.3638,0.22055,0.94128,-0.43238,2.2444,1.2022,0.46201,1.3278,0.39041,-1.4019,1.5311 -3.8479,1.3887,-1.1096,-0.37966,0.10073,1.2408,1.6526,1.5733,0.37037,-0.93927,0.45023,-1.4267,0.24347,-0.12318,-0.25537 -1.7245,0.36899,2.7735,0.29874,1.0675,0.67253,0.41193,0.14154,1.0045,1.4138,1.3833,-0.83311,-1.1282,0.21967,0.36538 4.2926,-0.84029,-0.85565,-1.8963,0.52681,2.7808,1.658,-0.84127,-0.61263,-1.0382,0.58276,-0.90772,0.29174,1.1206,0.054088 -1.4415,-1.9862,3.7254,-0.52039,0.27934,0.81894,-0.035242,-0.47132,1.6099,1.0636,0.10764,-0.64305,-0.21503,0.78057,0.2298 -2.9293,-0.80113,1.7828,-0.78044,0.85325,-2.4752,1.2747,1.5037,0.27193,-1.2177,0.46337,-1.7426,-0.1173,-0.54231,0.13264 -2.9194,-2.3464,-2.3963,-0.7329,0.050963,0.078097,-2.0623,0.40077,0.71387,-0.69943,-1.2308,-0.0019905,-0.94194,0.99387,0.5299 2.1428,2.0904,-0.68303,-1.9346,-0.07554,0.1753,-0.82646,-0.65128,1.7069,-0.7715,-0.34191,0.74199,0.71823,-0.62744,-0.83043 -3.6093,-0.71477,-0.52456,-1.2074,0.86565,-0.19825,-0.39,-1.2208,1.4077,0.11227,0.6376,0.21614,-0.3472,0.11378,-0.28551 -2.8742,0.057695,-3.5492,-0.4493,-0.27631,0.61437,-0.0044255,0.36109,0.31923,0.1255,-0.62631,0.12202,0.14118,0.76914,-1.1548 -4.1582,-0.48711,-1.3434,-1.983,1.0707,-0.13462,-0.42974,-0.36494,0.68947,-0.39488,-0.10419,0.68916,-0.37422,0.11955,-0.73123 1.6135,0.6278,-1.1796,1.1428,0.37007,2.2301,-1.1909,-1.9919,0.23424,-0.90402,-0.051215,-0.23015,1.3802,0.72117,0.023272 -2.4529,1.6787,-0.63795,0.54439,-0.86994,2.2424,0.91728,0.7268,0.62467,-0.58009,0.65603,0.94559,0.39842,-0.32786,0.043065 -3.6106,-0.67394,-0.19536,-1.2296,0.76207,0.20526,-0.15872,-1.4485,1.0808,-0.5221,0.5209,0.70163,-0.5915,1.403,-1.1498 -0.1379,3.4899,1.3652,-0.6355,-0.15527,-0.27867,-1.2151,-0.18734,-0.77196,-0.77178,-0.54785,0.41393,0.53263,-1.8421,0.2085 -1.1527,-2.3363,3.4686,0.7766,1.6712,0.86396,0.31486,-0.19873,1.3058,-0.089907,0.16887,-1.0192,-0.095081,1.0177,0.84281 1.9989,3.1319,-2.0856,-0.91492,0.041265,1.2744,-1.0404,-0.60514,-0.53313,-0.81709,0.090761,-1.8724,-0.493,-1.1174,-0.72891 -3.4198,1.3857,1.9896,-1.12,0.82201,1.2722,1.3281,-0.66507,-0.66652,-1.3888,1.0067,-0.26826,0.23884,1.0213,-1.1146 -0.071454,0.22285,0.86918,0.72937,-2.3252,1.4859,0.92782,-0.92852,1.1188,0.49196,-0.5557,0.091292,-1.519,0.60782,0.52245 -2.6866,-1.2923,3.4213,-2.917,1.0173,0.60701,-0.21031,-1.1474,-0.080761,-0.63745,0.2179,-0.38917,-0.2241,1.7349,0.13899 -2.5372,3.1171,0.075271,0.043999,-0.48327,1.1629,0.92103,0.64599,-1.0772,0.98683,0.36531,1.7236,-0.59651,-0.071507,-0.40534 -2.0604,-1.9711,3.7468,-1.9176,0.6538,-0.45028,-0.44671,-1.5305,0.059168,0.29946,-0.27046,-0.32085,-0.53134,1.3041,-0.19234 -2.0204,3.4335,-1.0071,0.35012,0.51142,-0.39809,-0.41299,2.4317,-0.11242,-0.72465,-1.005,0.0059627,0.48238,0.31756,0.18841 2.1522,-0.99892,-2.05,0.84981,1.267,1.6884,1.1753,-0.27633,1.4963,0.76084,-0.13939,0.50649,0.30735,-0.71297,0.49259 -3.6402,-0.64746,2.627,-2.4491,0.98635,0.44799,-0.11874,-0.93188,-0.66372,-0.92673,0.35948,-0.43753,0.16151,1.145,-0.16211 0.34723,-1.1033,5.3486,-0.85342,2.8641,-0.82259,1.2985,1.2888,-0.79227,-0.52697,-0.53087,0.23369,-0.13906,0.098717,-0.71469 -0.22395,1.271,4.1497,-0.025955,0.87598,-0.087072,0.59606,0.53844,1.4982,0.73098,-0.5813,0.046267,0.059648,0.49733,0.66328 -1.7629,0.64889,3.5949,-1.3088,0.11819,0.48016,0.33678,0.95579,0.67957,-0.8136,1.0864,-0.41161,0.34813,0.42139,1.0803 2.1516,3.0093,-1.5045,-0.1227,-0.12549,-0.075794,-0.44546,-0.22336,0.13687,1.5499,-1.6595,-0.98189,-1.1196,-0.4755,-1.5678 0.16077,1.8064,1.4435,1.2273,0.027794,0.48645,1.1597,-2.2488,-0.42188,0.94835,-1.0648,0.70079,-1.8612,-0.64115,0.88268 3.9983,-1.7523,-1.7552,-0.68201,-0.0048021,0.6982,1.9874,0.24185,1.2747,0.74544,0.37202,0.86361,-1.1589,0.966,0.35431 3.3873,-0.87573,1.6663,1.0687,1.3676,0.81798,-1.8913,-1.1356,1.1485,-0.35878,0.41659,0.39223,0.44699,-0.15335,-1.4173 -0.97998,1.1932,2.9044,-2.6698,2.3008,1.7607,0.60482,0.161,-2.0292,-1.7163,0.92477,-1.4818,-0.99063,0.38633,0.13465 -1.7034,1.5262,4.0042,-2.1891,-0.0291,0.43801,0.8067,-1.2511,-0.82166,-0.93782,0.2984,0.049362,-0.70823,1.2221,-0.12914 0.21497,1.6156,4.0921,-3.2769,0.13499,0.75983,1.027,0.064662,-0.62108,-0.76414,0.70514,-0.0018567,-0.53543,0.87345,0.24129 2.2668,1.4396,3.8044,-3.7949,0.78144,0.38128,0.44814,0.76402,-0.93199,-1.9498,0.85442,1.0284,-1.0184,1.8508,0.22894 -1.1765,1.3244,3.3824,-2.8248,0.30886,0.63947,1.3477,-0.050965,-0.64565,0.69519,-0.60682,-0.75023,-1.591,-0.23104,0.058084 4.1891,0.0076805,-1.6292,-2.1537,0.078854,-1.0873,1.5074,-0.50286,1.5201,0.89014,1.4788,-0.24997,-2.1626,-0.28905,1.264 1.9582,1.0208,-0.52526,0.39692,-0.34708,2.3232,-0.21491,-1.6038,-0.18234,-0.34765,-0.81927,-1.256,0.512,0.26847,-0.29756 2.0832,1.8234,0.5471,-0.32545,4.6665,-1.4746,-0.76014,-0.45016,-1.709,1.4941,0.29541,-0.89353,-0.051559,-1.5293,0.054254 1.2919,1.8005,0.99305,1.4432,-0.36355,0.10751,-0.70736,-0.78705,0.2036,-0.035427,-1.1509,0.82598,-0.89348,-1.8153,0.055831 1.7467,4.4106,-0.37974,-1.9661,2.7818,0.59967,-0.36183,0.50743,-1.4242,-0.59108,-0.13308,-1.2865,-0.51295,-0.66098,0.062079 -0.75207,-1.0373,4.5557,-0.90115,1.2659,0.27808,0.75069,0.048598,1.2761,0.60374,-0.078462,-0.46,-0.25323,1.2171,0.6384 -1.9734,-1.8789,3.5744,-2.4364,0.096351,1.0452,-0.48929,-0.79448,0.1878,0.50213,-0.47968,-0.72913,-0.15827,2.1388,-0.029529 -0.8686,0.48851,3.1642,1.2823,2.3109,-1.6212,1.2715,1.3708,0.030042,-0.99492,-0.90136,0.87322,0.68788,-1.5366,0.18321 4.2503,-0.71177,1.0192,-0.23528,2.2538,1.3499,-0.25077,-0.57337,1.0148,-1.0327,-1.2276,-0.40021,-1.2044,-1.1325,-1.1517 4.7661,-1.8061,-1.0206,-1.0284,2.355,2.3746,2.6032,-0.348,-0.088984,-1.0302,0.85134,0.20387,-1.4302,0.064516,0.57707 -3.4695,0.29833,1.6227,-1.1523,0.7824,-1.2579,1.3395,-0.61381,0.38712,0.75181,0.38305,0.37307,0.6569,-0.6968,-0.062726 -3.306,3.0221,-0.74481,0.64836,0.75763,0.94711,0.98008,3.0201,-1.3008,-0.81453,-0.63711,-0.28865,-0.21655,-1.3,0.76265 0.99646,-1.3542,3.9015,1.6518,2.4086,-0.29329,-0.22842,0.26787,-0.34936,-1.6238,-0.69175,1.3212,0.73375,0.037025,-0.44666 -3.4968,-0.038728,-0.70891,-0.54395,-0.25876,0.79322,0.89307,-0.52391,1.371,-0.46592,1.4079,0.42431,-0.50522,0.70314,-1.2602 0.11876,0.5931,3.0305,0.61914,1.5845,-2.1122,-0.52498,1.5385,0.88399,-1.8056,-0.53868,1.0103,0.7822,-0.42229,0.58217 2.4643,-1.186,2.8491,1.2482,4.2147,-0.96095,-1.0928,0.90131,-1.0393,-1.8654,-0.60956,0.75562,0.77183,-0.73975,-0.063173 3.8797,0.4103,-0.034599,-2.7877,3.1748,-0.63042,1.5658,0.23917,0.063101,2.0161,1.3797,1.4894,1.2115,-1.5555,0.42172 -0.57219,3.5435,-0.91676,0.40337,-0.5303,0.8473,-0.47213,-0.39187,-0.3261,1.2148,-0.87322,0.73071,0.53927,0.6203,-0.62079 -3.2828,1.1985,0.018044,-0.9809,-0.87682,1.0105,1.446,-1.3269,-0.91653,0.048011,1.1654,0.54715,0.2326,-0.45254,-0.84268 3.408,-3.2935,0.53401,-1.1942,3.9474,1.1087,-0.29171,-0.2716,-1.7394,-0.036986,0.60283,1.9596,1.465,0.46855,0.085516 1.6204,1.9087,-1.2586,-3.0567,-0.2983,1.567,0.32712,0.43904,-0.16688,-0.53908,0.37029,1.6965,0.07452,-0.90776,0.85286 3.605,1.0381,0.76851,0.30768,1.4254,0.92483,-1.0001,-2.0241,0.50666,0.28022,-0.27732,-0.081209,-1.1292,0.54985,0.26022 -0.4897,-0.25878,3.934,1.3318,1.7719,-1.0259,0.5799,0.42722,1.1655,-1.002,-0.17495,0.75915,0.38246,-0.53479,0.71968 -1.2693,3.205,-0.46253,0.69451,-1.242,1.2198,-0.12121,-0.31653,-0.57849,-0.32251,-0.34938,1.5644,0.68128,0.94842,-0.33495 2.8997,-0.1413,3.8094,-0.38711,2.6149,-0.45441,-0.18714,0.5824,-0.11901,-1.532,-1.5295,1.8726,0.73208,-0.52557,-1.3377 3.9442,2.872,0.33405,-3.3114,0.7295,-0.61229,-0.090396,-0.436,-0.2855,-1.0652,-0.15947,-0.36585,-0.7979,-0.75298,-1.353 -3.4383,1.4971,1.0843,-1.0217,-0.48507,-0.15612,1.8389,-1.0616,-0.42853,0.41289,0.43277,0.28451,1.032,-0.086001,0.25941 -3.4239,-0.49878,-1.3903,-1.3363,0.67322,0.71384,0.13437,-2.7035,-1.1626,-0.26055,-0.58388,0.21298,0.35404,-0.032958,-0.53592 -0.26847,3.8253,0.10348,-0.093278,-1.1871,0.80454,-1.015,0.48703,-0.80928,0.73982,-1.1612,0.75938,-0.4757,-0.31219,0.032886 -3.6396,0.51511,-0.07694,-0.5567,-0.30077,-0.25689,1.1657,0.45825,1.223,-0.86045,1.1247,-0.50565,-0.085541,-0.69494,-0.049164 -2.3032,1.5297,1.5669,0.06528,-0.90986,0.58332,0.7954,-0.045954,0.74481,0.073039,0.78225,0.1062,1.1256,-0.52388,0.66716 3.6794,1.8243,-1.3505,-4.4662,0.7578,0.32873,0.67137,0.51843,-0.56503,0.38806,2.1216,-0.19143,-0.45314,-1.407,0.8701 4.5135,-2.2112,0.82073,-1.9385,5.3115,-0.62647,2.0571,0.49362,-1.4082,0.66371,1.2291,1.1903,-0.7234,-0.7318,0.6205 2.5873,-0.53302,1.6365,-3.4733,0.6547,0.86929,2.2249,1.3236,0.35757,0.13008,-0.53486,2.6109,0.63221,0.6621,-1.4045 -2.4593,-0.38898,1.4864,-2.7825,-0.32111,1.1493,1.4239,-1.9501,0.3017,-0.60318,-0.64868,-0.54564,0.017065,-0.44597,-0.28193 -2.7892,1.5362,0.82906,-0.17994,-0.35637,0.17699,0.93366,0.74217,1.2466,-0.40251,1.2469,0.18352,0.65841,0.5349,0.20432 4.5993,1.3495,-1.2382,-3.6441,1.246,-0.16554,0.64651,1.0126,-0.21582,0.75513,0.99115,0.12761,-0.71754,-0.94314,-1.3127 0.1421,1.8477,2.8231,0.93154,0.22847,-0.31394,-1.049,-0.21847,1.7261,-0.30775,-0.39163,1.2863,0.50229,0.47172,0.46847 3.2093,1.0389,-0.8156,-0.26676,2.5201,0.078856,0.83351,-1.4841,-0.28937,0.75944,-0.48477,-1.5803,-0.57048,-2.428,0.27991 -3.5405,0.67642,0.01081,0.1222,-0.31554,0.061136,1.349,0.66091,1.6614,-0.11886,0.58171,-0.33695,0.20414,1.0651,-0.58866 -3.5304,0.77659,0.9663,-0.63496,-0.0002674,-0.50983,1.4483,0.10943,0.8195,-0.90486,0.93926,-0.52207,1.1228,-0.36058,0.37871 -2.6972,0.90933,1.1874,-0.28934,-1.0292,1.0647,0.39748,0.16955,0.90153,-0.85956,1.0868,-0.19438,1.2454,-0.17528,0.31973 -0.6255,1.181,1.501,0.37423,0.03445,2.0777,0.30947,0.035597,0.48983,-0.49155,2.1588,0.14717,-0.99557,1.7586,-0.089172 -2.2655,-1.5366,1.7866,-1.7725,-0.72316,1.095,-0.23911,-2.1119,0.8548,1.4173,-0.45242,-0.3682,-0.20584,1.0369,-0.53045 -3.0789,-1.908,-0.26503,-2.0018,0.24227,0.53524,-2.0897,-1.5351,0.39122,0.3158,-1.1124,0.68778,0.67558,0.69914,0.60823 -2.1052,2.1719,-0.88875,1.4787,-0.21975,-0.032515,0.74153,0.97224,1.024,0.25278,-0.17856,1.3486,-0.43122,0.66557,-0.065063 -1.8613,3.0892,-0.97985,0.24078,0.54787,1.9038,0.24989,0.95521,-0.73203,-1.0617,-0.21175,-0.13845,0.10134,0.38663,-1.3338 -2.6616,0.73385,-1.0386,0.60219,-0.2949,0.22468,1.4444,0.81049,1.0449,0.87064,0.20652,1.0498,-0.066878,0.59076,-0.17454 1.484,0.9215,-0.46053,1.23,2.7785,-1.7503,-0.76712,0.058858,0.030768,-1.8538,-0.45168,-0.37591,2.118,-1.0208,-0.61016 -2.5631,0.2625,-2.2346,0.64727,0.0043906,0.0048416,0.88977,-0.58368,1.5328,1.0497,0.22173,0.25434,0.3769,0.6959,-0.86059 -2.4828,0.72978,-1.7296,0.51129,0.46039,-0.092166,1.2682,-0.96176,0.86742,1.8992,0.078585,0.31444,0.68065,0.18013,-0.90818 1.8824,2.2986,1.4559,-0.76234,0.54244,-0.58352,-1.6602,0.4084,0.70271,0.51935,-0.68071,0.54283,1.0631,-1.7705,0.035751 -2.4731,0.20956,-0.40621,1.4019,0.6427,-0.19844,1.7775,0.1231,1.492,0.010325,0.85037,-0.082834,-0.33317,-0.53318,-0.38543 -1.4731,-1.2431,0.88132,1.8856,0.39897,1.5321,1.3375,-1.4475,1.5164,-0.612,0.39065,0.074933,0.48268,-0.42727,0.39485 -2.3809,0.80943,0.56292,1.6396,0.25765,0.21184,1.6317,-1.0642,1.331,0.94157,0.97002,0.81438,-0.56714,0.54542,-0.010168 -1.7666,2.057,0.30409,1.0934,-1.2526,-0.058315,1.498,-0.5223,0.22409,1.6147,0.63577,1.1314,-0.24138,0.51558,0.24598 -2.4782,0.1439,-0.6853,-0.76868,-0.42305,-0.10694,1.0359,-1.7325,1.4446,0.66732,0.1102,0.61789,1.4078,-0.10702,-0.54283 -1.9918,-0.26244,-0.29792,0.20014,-0.33861,-0.40731,1.0775,-0.67744,2.2325,0.24316,-0.079975,-0.30554,1.2953,-1.1891,-0.19037 0.36955,2.7661,1.9122,0.554,1.765,-1.4921,-0.69388,-0.093285,0.30038,0.096328,-1.3608,0.70428,1.2435,-0.56763,-0.97617 -2.2993,1.1712,-1.3328,1.6618,0.23826,0.79423,1.3244,0.11585,0.29321,1.8799,0.4143,0.57874,-0.6365,-0.32991,-0.036729 -0.79505,1.51,-0.5309,2.3686,1.3447,1.5646,-0.42732,-1.6764,-0.40355,-0.47559,-0.080988,1.1006,0.11577,-0.18043,0.42425 -1.0708,-1.1815,0.1266,1.7091,-0.2384,0.59491,0.53846,1.4374,1.7483,-1.552,0.30385,-1.108,-0.54952,-0.57545,1.2093 -0.01545,3.4954,2.493,-1.0293,1.6854,0.99729,0.30133,-0.60595,-1.9742,-2.0524,0.05258,-0.68338,-0.96721,0.24403,-0.28121 -0.41105,-1.327,0.46165,1.2624,0.0067039,1.9064,0.21163,0.63606,1.8894,-0.51058,-0.28328,-0.70678,1.403,-0.6588,0.81118 -1.3121,2.6285,0.35947,-0.50123,-1.5853,1.73,0.8671,-0.27915,-1.1025,-1.004,0.35377,0.33498,-0.71288,-1.8414,1.0173 4.167,-1.5846,-0.38285,-0.96535,2.5227,1.9456,1.0069,-0.38896,0.94174,-0.35182,-0.033112,-0.48527,0.2253,-1.2962,0.90016 -1.3473,-0.29901,1.6011,0.92927,-0.8301,-0.053091,1.0081,-0.14137,2.5005,-0.31859,-0.25759,0.34336,0.3052,-1.1238,1.151 -3.2806,-1.8022,-0.36083,-1.8386,1.6139,1.8019,-1.3464,-2.3855,-1.7424,-0.97257,-0.60984,0.97524,-1.0495,0.80474,-0.0883 1.6728,-0.91244,-2.973,0.22216,0.5784,2.403,1.6058,0.50381,0.56847,-0.26638,0.56629,0.94587,-0.11272,-0.2557,1.7183 -2.4246,-0.35015,-0.44417,1.9113,1.1872,0.24168,1.4898,-1.1836,0.77973,0.40164,0.83583,-0.39299,-0.28413,0.1598,0.014819 2.0542,-1.7524,-1.6012,-1.0612,0.72604,3.3117,1.9115,0.33512,-0.10887,-0.95242,-0.34414,1.5161,1.4365,0.14669,0.75685 0.48993,1.6836,0.060146,1.9707,1.7358,0.65373,0.83415,-1.514,-0.36954,-0.43186,-1.8725,1.1484,0.98313,-1.2901,0.3823 -1.9361,0.71078,3.7113,-1.9312,-0.4097,0.65454,1.0407,-1.5019,-0.3631,-0.45166,-0.25175,0.14015,-0.056809,0.3268,0.22398 -1.7469,2.0386,1.5245,1.4749,1.0066,-1.0925,0.54025,0.85879,0.96102,0.73731,0.10904,1.1344,-0.25833,-1.1015,1.1552 -2.596,-0.30592,2.5975,1.0739,1.2097,-0.48391,0.34119,1.3978,1.3253,-1.2533,0.53419,-0.20355,-1.726,1.2723,0.43428 -0.62858,0.14352,3.0513,1.9834,2.0416,0.43404,-0.15542,0.81337,0.62003,-1.0361,1.3997,0.074895,-1.4744,1.9366,0.27546 0.039999,1.1254,3.8308,-0.56924,-0.26086,0.23814,1.5941,-1.2383,0.97137,0.64627,-0.48548,0.17407,-1.7368,0.98548,0.41711 -0.81023,3.182,-0.60441,-0.71216,1.1704,1.5062,-0.33119,1.3279,-0.15285,-0.31741,1.0038,0.027799,-0.35616,-0.41561,-1.3862 2.8182,0.074944,2.0245,-0.74505,0.072879,1.3094,0.51574,0.31264,0.56595,-1.6882,-1.2075,2.1217,-0.50041,0.45469,-1.429 0.23438,3.1942,-0.079117,0.50667,0.76225,0.50841,-2.7109,0.43323,0.41748,0.50068,1.1014,0.78845,-0.15204,0.48657,-1.7241 -2.5728,-0.93176,1.6064,2.2279,1.3055,-0.02589,1.2029,0.24442,1.1165,0.013537,0.49338,-0.30373,-0.32327,0.548,0.08059 -3.0518,-0.47012,-1.368,-1.7814,0.77061,1.4181,-0.5576,-1.8086,0.075495,-0.81201,0.051457,0.50385,-0.065886,-0.1052,-0.21623 0.43466,3.5062,2.6631,0.11177,0.46638,-0.81832,-0.80646,-1.0019,-0.5572,0.67222,-0.073368,0.51653,-1.148,0.33143,-0.37055 -2.6852,0.049721,-3.1829,-0.47128,0.78153,1.2892,-0.60594,-1.3635,-0.22895,-0.95971,-0.62865,1.2461,-0.50471,-0.033069,-0.060998 -3.3051,1.4024,-0.11007,-1.7605,-0.01168,1.1891,1.1653,-2.2967,-1.0967,0.8472,0.68524,-0.28678,0.26719,0.15976,-0.7774 1.0023,0.46412,3.398,0.59671,0.25697,1.0875,-0.067616,0.70678,0.93066,1.1084,-0.78338,0.55963,-1.0023,0.26455,1.6957 -3.6019,-0.37166,-0.60818,-1.2976,0.61544,1.3824,0.31084,-1.9972,0.011935,-1.6166,0.59102,-0.21212,0.46687,0.35655,-0.91392 -3.2821,0.71094,-2.9955,-0.77377,0.90098,1.3365,0.23328,-1.2522,-0.42622,-0.36456,-0.35194,0.46908,0.21886,0.14489,-1.1373 0.431,3.6748,-0.56508,-0.48133,0.093714,0.15617,-1.7962,-0.046441,-0.17887,1.8167,-0.35764,-0.37075,0.50829,-0.1769,-0.85573 4.6308,-1.4486,-1.4663,-1.0438,1.7628,2.0709,2.8473,-0.43336,-0.01191,-0.14866,0.75998,0.36204,-1.4936,-0.50472,1.1617 1.2533,1.9258,-0.61027,-0.35413,1.1457,-0.82822,-1.7642,0.95123,0.63446,1.1631,0.42501,0.096051,1.7436,-1.7172,0.31193 0.49108,3.5928,0.0055953,1.1305,-0.48834,0.2917,-0.30496,-1.0495,-0.2198,0.67113,-1.1576,0.70158,-1.0532,0.76949,-0.034705 0.37609,4.3181,1.3908,-0.75344,-1.017,0.2273,0.032995,-0.27161,-1.261,0.64047,-1.511,0.77858,-0.2504,-0.36684,-0.055795 -0.90986,3.1118,0.10041,1.1243,1.336,0.23602,-0.84395,1.3482,-0.096998,1.6473,-1.0166,0.92261,0.62406,-0.77458,-0.38346 -3.3233,0.74829,-2.0407,-1.0743,0.65942,1.2809,-0.099598,-1.5637,-0.92577,0.53133,-0.16489,0.3255,0.11702,0.21549,-1.0003 -3.0566,-0.7298,-2.4722,-0.71897,0.86943,1.199,-0.36223,-1.9465,0.081324,-1.8817,-0.63627,1.1035,-0.3827,0.35387,-0.51604 -3.169,-0.42476,-0.83296,-1.1853,0.073574,0.30569,0.55953,-0.28257,1.7015,-1.6308,0.56675,-0.39313,-0.38446,1.193,-1.3683 -0.336,0.65901,2.4357,0.7449,-0.13932,-0.1695,0.54544,0.058363,1.7714,0.3731,-0.15082,0.6895,0.52293,-1.8646,0.84354 -1.5619,-1.9468,1.843,-1.1867,0.41876,0.46447,0.99684,-1.0605,2.4823,1.0614,-1.2044,-0.72099,0.13204,-0.9424,-0.32384 3.6816,1.7099,-0.21622,-2.0922,0.24113,0.72893,-1.2889,0.49779,1.4598,-0.055805,-0.061896,-0.46593,-1.0559,0.62459,-0.51052 -3.1587,2.8468,-0.45712,-0.36327,0.22743,1.5633,0.91214,1.2861,-0.99135,0.70154,0.17888,1.0673,-0.68226,-0.29356,-0.84862 -2.8877,0.28612,-2.3602,-0.51784,0.7712,0.090316,0.31033,-0.63538,0.83092,1.1237,-0.24737,0.73475,0.60064,1.2139,-0.76809 1.7099,1.8157,-3.3274,-0.935,-0.61733,0.94684,0.58878,0.47686,1.0562,0.41503,0.3484,-0.33968,0.17533,-0.84414,-0.65114 -3.0644,-0.14888,-3.31,-0.41186,0.62865,0.81713,0.1233,-0.98021,0.31876,-1.3013,-0.54385,0.16271,0.25987,-0.39732,-0.44226 -1.5429,-0.54779,-3.4957,-0.10334,-0.24396,0.16553,-0.55167,0.026704,0.63629,-2.1937,-1.4419,1.6956,-0.14562,-0.34474,0.99973 -2.5032,-1.1924,-2.5763,0.72547,0.32984,-0.47482,0.4837,-0.54301,1.2636,-0.50769,-0.34665,-0.58655,-1.5056,0.33736,-0.68994 -3.0601,-0.44216,-2.3095,-0.7343,-0.18869,-0.58478,0.40919,-0.20977,1.7283,-1.0782,-0.49045,-0.31279,-0.38121,0.84335,-0.65842 -2.4054,-1.207,-2.662,-0.10935,0.16515,-1.1325,-0.51998,-0.16545,1.1828,-0.60177,-1.0761,-0.25597,-1.3394,-0.20728,0.18063 -2.9442,-1.6093,-2.3754,-1.1194,0.14313,0.58092,-1.6625,0.59477,0.98142,-0.76618,-1.0356,0.15967,-0.47066,0.65488,0.71598 -1.5908,1.4871,1.4553,1.9105,0.23169,-0.056055,1.0331,-0.74445,0.93066,0.66431,0.64186,1.0796,-0.1141,-0.10693,0.29301 0.26365,1.5417,0.8453,1.9014,1.5295,0.768,-2.137,0.31931,-0.213,0.03171,1.2507,0.59274,-1.8284,0.99576,-0.36311 -0.83745,3.7248,1.1636,0.099988,-0.51623,1.561,0.38573,-0.90255,-1.4131,-1.539,-0.17808,0.80337,-0.26047,-0.047954,0.34951 -0.86424,3.7631,-1.2203,0.7594,-0.59971,1.1903,-0.49374,0.92953,-2.4065,-0.48502,-0.6809,-0.24027,-0.025403,-0.39371,-0.98843 -2.8615,-0.93206,-1.4139,0.34783,0.26556,-0.61135,0.52576,-0.22606,2.0244,-0.04332,0.27564,-0.2744,-1.2622,-0.1334,-0.5132 4.4191,-0.46773,-0.776,-0.37517,2.5318,0.96775,0.58902,-0.17381,0.65918,-0.16345,-0.32462,-0.86731,-1.7449,-1.1223,-0.88141 -2.0342,0.061693,2.0445,1.8686,1.7263,0.16512,0.3877,1.1574,1.0433,-1.4254,0.58015,-0.27093,-1.8543,0.45857,1.3289 -2.209,2.0249,-0.5288,0.48214,-1.2506,0.89817,1.4169,-0.2109,-0.003927,1.278,0.23161,1.247,0.85329,0.41101,0.25002 -2.1935,-1.2339,-2.8837,0.64422,0.39764,-1.2267,-0.42795,-0.62912,1.127,-0.88293,-0.87526,0.5044,-0.57005,0.18546,0.32963 -2.0535,-0.39253,-3.5368,0.75691,-0.00015222,-0.76033,-0.89503,-0.040006,0.95239,0.38041,-0.85187,0.99477,-0.27452,0.64404,0.24634 -2.3211,-0.45459,-2.7613,-0.6562,-0.66529,0.98028,-1.1738,-0.96429,0.27658,-0.36798,0.10915,1.5371,0.53436,0.63705,0.071425 -2.3787,0.74208,0.80085,-0.58304,-1.1128,0.90556,1.263,-1.5332,1.38,0.77698,0.81218,0.18164,-0.12715,-0.46988,0.12235 2.4281,2.3589,-0.58197,-1.3384,0.37032,-0.1584,-1.5856,-1.5225,0.46783,1.3702,1.6966,-0.95039,-1.2648,0.15,0.27271 1.2962,-0.045987,1.5265,-1.1778,0.46645,-0.18781,1.0802,1.6782,1.2983,0.92953,-0.19844,0.39915,1.3226,0.20624,0.23267 -2.4635,1.9806,0.084438,0.17208,-1.0842,0.86313,1.0085,0.046344,0.62285,1.3115,0.84793,0.6237,0.065689,-0.6064,0.34771 -1.0095,-1.1725,3.4623,1.7099,2.5346,-0.33466,0.32149,0.97668,0.70107,-1.4949,0.14427,0.29363,-0.54636,0.45463,0.87899 2.8044,1.7532,-0.15077,-0.45681,0.89627,0.19304,-0.55643,-0.85191,2.132,0.28527,-0.79976,-0.074871,-0.17713,-1.3655,-1.8004 -1.2088,3.0551,-1.0881,0.66668,-0.39886,1.6169,-0.84589,1.0264,-2.2948,0.46867,-0.81798,0.01804,0.11431,-0.67753,0.19111 1.3862,2.0493,-0.86476,-0.30319,1.1857,-0.92345,-0.31139,-0.56016,1.5174,1.6774,-0.81138,-0.27381,0.79464,-2.0983,-0.41756 -1.7591,1.8386,0.89079,0.79549,-1.2182,0.16494,0.48946,-0.34442,1.2071,-0.17047,0.72488,1.6139,0.38059,0.86221,0.54341 -0.21051,2.2137,1.3462,1.4195,0.055789,-0.26162,0.91001,-0.50291,0.72653,0.97842,-1.278,1.4917,0.098277,-1.3391,0.89922 -4.5048,-0.20049,-1.8825,-1.639,3.5329,0.013205,0.54037,-1.262,-0.97179,-0.64169,-1.221,0.46838,-0.68572,-0.08353,-0.55979 -1.0135,2.5911,1.8444,-0.088854,-0.90554,-0.17119,0.81843,-0.5827,0.63137,0.76718,-0.56806,1.5436,-0.12161,-1.1528,0.99381 1.2755,1.7213,-1.0387,1.212,2.3881,-0.84795,-0.60359,-1.0744,1.1086,0.31133,0.094212,-0.66182,1.4817,-1.5959,-0.11677 -0.5508,2.0603,-0.92327,-1.2335,-1.712,0.88501,2.9344,0.45161,-0.41081,0.76209,-1.1254,0.14656,-0.97334,-0.14572,0.51494 -0.9434,2.1225,1.3616,0.90634,-1.1251,0.44201,0.61138,-0.57592,1.1612,0.9652,0.050711,1.1414,-0.74664,-0.70064,1.1153 2.8406,0.64919,0.38022,-1.3006,2.6253,-2.2058,-1.5822,0.21362,-1.2699,0.97725,1.6535,-1.005,-0.80726,-1.4731,0.46295 -2.0384,2.1348,-1.8914,0.60177,-0.10799,2.359,1.0461,0.12828,-0.58364,-0.092453,-0.29225,-0.30283,0.25852,0.33549,-0.44051 0.8455,2.7077,1.2394,-0.12269,-1.3552,-0.0037057,0.26947,-0.63488,0.97652,-0.18813,-1.1521,1.148,-0.31853,-0.89121,0.52617 -0.14543,3.2193,0.91105,-0.61923,-1.4302,0.57865,0.93744,-0.34729,-0.18824,-0.21997,-1.1405,1.0516,-0.40108,-1.4112,0.87386 -0.11784,-3.6475,3.668,-1.4852,1.7343,0.81774,0.20409,0.19788,0.75438,1.3045,-2.1926,-0.599,0.45617,1.7933,-0.32665 -2.3296,-1.0929,2.4994,-0.27325,-0.16392,0.05296,-0.14131,-0.023058,2.3062,-0.62099,1.175,-0.53057,0.18349,1.1223,-0.14647 3.1955,0.99343,-2.6552,-1.6991,0.48886,0.17587,1.3275,-0.017007,1.3562,0.081247,0.86989,0.33781,-0.5201,-1.2365,-0.81429 -4.061,0.91249,0.49626,-0.87657,0.61483,0.78706,1.7599,-0.36355,0.020198,-0.7216,0.9837,0.5918,-0.58457,0.16951,-1.1652 -2.9898,0.2579,1.5947,-2.1081,0.17272,0.92692,1.0439,-2.708,-0.94364,-1.259,0.2675,-0.8811,0.46462,0.58575,-0.22328 -2.6185,3.1638,0.89858,-0.067561,0.7154,-1.1541,0.38446,2.9381,-0.11935,-1.5036,0.25104,-0.27993,-0.46402,-1.037,0.85511 -2.1107,0.06271,0.72632,2.498,0.47799,0.05471,1.6507,-1.0707,0.93157,-0.0038499,1.0829,0.68242,-0.60893,0.43869,0.35864 -1.8972,-3.9578,1.1698,-0.39395,1.4494,-0.33942,-1.7516,0.50099,1.2153,0.48507,-1.6055,-0.83784,0.36235,1.0724,0.69419 0.11617,2.1236,-0.83842,2.4079,0.85341,0.53071,-0.48393,-1.8689,-0.21459,0.15612,-0.40781,0.65189,0.045883,0.12542,-0.40911 -3.5124,0.038133,0.23228,-1.7985,0.52289,-0.068746,-0.16658,-1.1801,0.026788,-0.80567,0.8251,-0.30845,0.64115,0.5271,-0.42855 -2.6041,-2.8144,0.3033,-0.54037,0.31316,-0.63497,-0.81148,0.1524,2.1125,-0.57758,-0.62277,-1.3604,-0.15893,1.2283,0.17727 -2.3521,0.54476,1.3802,-1.7591,-0.086313,0.82436,1.2694,-1.534,0.1628,0.84576,0.87401,-0.086018,-0.048803,1.1761,-0.26494 -2.8753,-1.3961,0.64734,-1.033,-0.55847,-0.22971,-0.67054,-0.19869,1.9562,-0.74031,0.4253,-0.84079,0.64563,0.27169,-0.062253 -2.0333,2.5408,-1.75,0.76186,-0.70368,1.3152,0.28825,1.6402,-0.029304,-0.43577,0.18518,0.10813,0.54407,-0.75424,0.6991 -2.367,-1.5995,0.19137,-1.4666,0.47181,-0.70315,-0.98092,-1.6751,1.1701,-0.37811,-0.94919,0.92019,1.0956,-0.0348,0.1615 -2.6015,-3.1877,0.24898,-1.0438,0.55627,-1.0482,-1.9829,0.38024,0.1467,-0.12494,-1.1528,-0.070178,-0.0053646,-0.27655,0.42857 -1.6623,-0.0074098,3.7515,-0.75455,1.1351,-1.2181,1.1882,2.2822,-0.16654,-0.9795,-0.22101,-0.44014,1.0356,-2.053,0.3608 -2.4075,-2.5262,-1.2135,-0.44894,0.2938,-0.3985,-2.5713,0.41396,0.75113,0.042708,-1.0588,0.67824,-0.5543,0.22723,1.0906 -2.7985,3.365,1.5831,-0.090122,1.548,0.35095,0.41121,0.9702,-2.0272,-0.74605,-0.28102,0.2578,-0.76011,-1.6617,0.24356 -1.2346,-2.5725,2.6268,-2.3951,0.023512,0.37652,-0.67257,0.019916,0.71378,-0.77038,-0.94115,-0.45758,1.7542,0.17306,-0.54383 -1.7396,-2.3874,1.6748,0.45949,0.71685,0.43769,-0.18905,-0.89996,1.4852,1.0596,-0.79391,-0.76228,0.99401,0.37396,-0.80953 -3.0949,-1.5701,0.59519,-2.3907,0.1182,-1.1128,0.24952,-1.0871,0.39441,-0.67848,-1.0083,-0.47134,1.2807,-0.93928,-0.1956 0.30303,3.8709,0.66092,-1.2801,0.52128,-0.066739,-2.1882,0.08066,-1.1968,-0.44669,0.55748,-0.46369,0.26227,-1.377,-0.49846 1.0178,3.2196,1.4389,-1.4502,-0.15757,0.32319,-1.6538,0.9068,-1.1155,-0.064319,-0.49973,-0.59546,0.12669,-1.0783,-0.086335 1.3844,3.1419,2.7026,-1.9607,0.20447,1.4406,0.37929,-0.51499,-1.4574,-1.8152,-0.19454,-0.23326,-0.99407,0.41474,0.45514 1.7499,2.154,-2.481,-2.7545,-0.14873,1.2242,1.104,2.0578,-0.88676,-0.31662,1.656,-0.97706,-1.2067,-0.65225,1.2653 0.12199,1.3803,2.4628,0.9666,0.79892,0.25732,-0.81572,-0.039819,1.5355,-0.38281,-0.087972,1.3793,-0.41684,-1.027,0.97657 -0.15058,3.2432,3.3561,-1.8335,0.13353,1.2426,0.42967,-0.37826,-2.1445,-0.81166,0.59299,-0.56989,-1.1105,-0.60044,0.41896 3.2064,-0.65051,0.86158,-0.99849,1.2161,1.0882,-1.0187,-0.47084,1.2974,0.96843,-0.11338,0.83332,0.0015605,1.6833,0.81827 -0.99037,2.3136,-2.8113,0.41445,-0.73486,2.08,-0.66139,1.0733,0.27156,0.23504,-0.35074,0.39449,0.48617,0.098269,-0.98951 -4.5955,0.57878,-1.5803,-1.4539,1.9401,0.44932,1.2111,0.033308,-0.51717,0.048515,0.23791,0.03984,-0.58962,-0.43581,-1.2064 -3.2581,1.3657,1.374,-2.1948,0.63201,1.0053,0.50382,-0.38478,-0.83499,0.22781,1.0686,-1.3618,0.50994,-1.3134,-0.18382 4.5687,0.24861,-1.5655,-0.59571,2.3158,-0.045471,0.90705,-1.0255,0.58585,0.27253,0.68731,-1.2432,-2.4589,-0.88079,-0.38752 -2.7186,-0.34949,1.2985,-2.9662,0.18771,0.019214,1.4457,-2.8238,-0.36184,0.11359,-0.8449,0.45851,0.15281,0.0032268,-0.85463 2.9486,-0.47233,2.1091,1.2734,2.5756,3.5258,1.7412,0.33478,-0.90338,-1.2403,-1.0621,1.3777,0.71389,1.92,-0.23781 3.0821,1.6391,-0.28426,-1.0916,3.5028,-1.379,0.089248,-1.9786,-1.2404,2.344,1.2437,-0.80508,-0.92444,-0.6433,1.1663 -2.637,1.1328,2.2466,0.27371,1.1251,-1.5047,0.41549,1.8356,0.71644,-0.90855,0.7956,0.24309,-1.1044,-0.56524,0.87102 3.4519,-0.56192,2.3637,-1.0944,3.4235,-1.0042,-0.16191,2.5405,0.019316,-0.077402,-0.12452,1.8686,0.53156,-0.75497,-0.072106 3.785,-0.75783,3.6861,-1.1066,2.6883,-0.26659,0.23691,2.1054,-0.065344,-1.041,-1.0429,1.9144,-0.15,-0.64494,-1.0858 -3.1955,0.52788,2.3545,-1.4997,0.68598,0.08353,0.82371,-0.44118,0.63888,-0.60963,0.93287,-0.84428,1.2038,-0.070484,0.23015 -0.37876,1.2901,1.1519,2.5467,2.5658,0.25747,-0.79491,-0.75297,-1.4101,-0.7869,-0.23858,0.81716,-0.35438,-1.6382,0.43221 -0.1856,2.2876,2.6786,-1.0662,0.21714,0.54724,0.49732,0.51402,-0.43105,-2.3063,-0.57697,-0.20609,1.4428,-0.1709,0.26019 0.7554,2.3799,1.0701,1.4657,-0.37856,0.28274,-0.62846,-1.589,0.71432,0.51922,-0.74616,1.2353,-0.41223,0.0029848,-0.1854 3.3808,-0.67699,2.4268,-1.5196,3.7872,-1.1184,-0.8591,1.3482,0.04968,-0.45002,-0.10183,1.366,0.70226,0.41626,-0.37305 3.3034,0.64834,-0.74445,0.43173,3.3326,0.7711,0.81842,-1.5279,-0.10061,2.1699,0.89828,-0.87143,-0.065857,-1.2133,1.1006 -1.4249,2.0676,1.9575,-0.11263,-1.0534,0.99401,1.096,-1.0325,-0.31905,-0.22086,0.56753,0.59067,0.65029,-0.68017,0.88681 -0.11788,3.7221,2.0386,-0.92978,0.75394,0.28425,-1.3896,0.084369,-0.33612,-1.2094,0.21086,0.69513,1.1394,0.72091,0.10741 3.0105,-0.012932,3.8628,-2.0207,2.3905,-0.68237,0.52955,2.6873,-0.089173,-0.38981,-0.047892,1.7973,0.69035,-0.65822,-0.11252 -2.6038,0.1902,0.33395,2.0304,0.80475,0.65711,1.3737,-0.13758,1.4501,0.44233,0.87094,-0.26287,-0.71742,0.66311,0.00083872 -2.4165,-0.14799,-1.3984,1.2491,1.1546,0.50976,0.91353,-1.6922,1.0208,1.3637,0.44836,-0.2203,-0.58008,-0.0081627,-0.81105 -2.8399,-0.82149,-0.55444,0.78479,0.39918,0.4426,0.46279,-0.075327,2.3199,0.0053639,0.6579,-0.82036,-1.1439,0.72497,-0.54648 -0.20578,2.0702,1.8088,0.39516,-0.75615,0.76658,0.53629,-0.62529,0.82322,0.33512,0.24433,1.1464,0.40558,-1.1284,0.50062 -1.7905,0.13338,0.9983,0.63641,0.10968,0.47581,0.85944,-1.6445,2.2067,0.71279,0.71059,-0.081098,0.24971,0.42711,-0.42041 -1.5094,-2.7612,-0.35474,0.7639,0.81678,2.1789,-0.78636,-1.4141,0.89619,-0.022893,-0.94525,-0.87661,1.1186,0.78691,0.94292 3.1178,-1.2086,-3.4125,0.28105,0.19732,2.116,2.5599,-0.33072,-0.1855,-1.091,1.5552,1.1035,-0.99975,0.88742,0.41087 -3.1705,-2.5525,1.7028,-1.4615,0.74255,-0.64295,-1.0951,-1.9138,0.60194,0.81868,0.077483,0.16388,-0.74475,-0.48013,-0.24881 -1.6771,-2.7708,0.65894,0.52232,1.1935,0.99678,0.20687,-1.9881,2.0624,-0.016784,-0.81422,-0.685,0.46203,0.28718,0.24717 -1.4728,3.5,-1.2091,-0.17987,1.3673,-1.7612,-1.4135,2.7413,-0.2999,-0.45519,-0.37361,-1.4826,-0.098564,-0.6216,-0.79692 0.51892,1.0995,2.0266,1.0313,-0.11956,0.74354,1.265,-1.7441,1.0484,-0.018232,-1.3412,1.5218,-0.65636,-0.86105,-0.40012 -3.7014,-0.99926,-0.42754,-1.1535,0.63906,-0.47559,0.60507,0.3889,1.705,-1.5123,0.11018,-1.4447,-1.0653,0.94481,-0.48051 5.5651,-1.259,0.59974,-2.2358,3.4766,-0.40698,1.7455,-0.34166,0.77265,0.5081,0.62846,1.5726,-0.59659,-0.44357,-0.65658 -2.2737,-1.5817,-2.9129,-1.0668,0.44448,0.26442,-1.2127,-0.046174,0.25946,-2.399,-2.0949,0.87251,-1.1242,0.17473,1.6486 -2.606,-2.1613,-1.6244,-1.1851,1.2337,0.55515,-2.2547,0.99307,-0.47319,-1.3815,-1.3035,1.2541,-0.11109,0.54613,1.9716 2.7542,0.89895,-0.52335,-0.016161,2.7097,0.18992,0.022019,-2.4771,0.0097096,2.0793,1.1928,-0.41168,-0.18379,-1.0356,0.80101 -3.7027,-1.742,-2.1151,-1.966,0.68659,-0.18904,-0.95458,0.019798,0.6071,-1.8464,-1.6772,-0.0097723,-1.2103,0.82163,-0.074908 -1.1667,3.3768,-0.27049,1.0367,1.6891,-0.25851,-1.321,2.3408,-0.23718,-0.25713,-0.51487,-0.40011,0.49209,-0.45646,-0.45004 4.8201,-1.6039,-0.24243,-1.3898,2.6701,1.3986,1.5834,-0.82679,0.30402,1.9911,0.73876,1.0102,-1.208,-0.78017,1.1568 -3.2376,-2.0004,-1.7379,-1.4593,1.8058,-0.98992,-1.5185,-0.013005,0.28078,-1.7578,-1.2659,1.1235,-0.75762,1.3558,1.6356 -0.35566,1.4381,1.2655,2.1815,0.70227,-0.7858,-0.42677,0.68247,1.9268,-1.2166,0.10588,0.91625,0.40183,0.49951,0.21236 -3.5261,-1.127,-0.76629,-1.1422,0.9955,-0.046855,-0.97137,-1.7492,0.20443,-0.48392,-0.22419,0.92241,0.31423,1.8144,-0.090703 4.0822,0.5383,0.012141,-1.9,1.4801,0.19074,-0.49036,-0.43567,2.5321,-0.020356,0.33037,0.63558,0.11502,-1.0752,-1.2896 2.7677,-0.32954,1.8187,1.0378,1.5064,2.0971,-0.10529,-1.8508,0.24582,-1.268,-1.3747,0.82862,-0.77882,-0.29074,-0.80661 -2.1811,-3.8077,1.8293,-2.1943,1.5385,-1.2733,-1.3169,0.19332,0.50671,0.71003,-2.3119,-0.24198,0.15121,-0.19602,1.0922 -3.8615,0.14743,-2.1928,-0.27804,1.7405,-0.12522,0.46669,-0.24031,0.47089,1.1671,-0.40176,-0.44077,-0.76166,0.83845,-1.3206 -1.7188,1.8473,1.3889,2.4118,1.4589,0.26524,1.0977,-0.67058,-0.52474,1.0169,0.095484,1.2944,-0.78843,-0.31412,0.63923 -0.020942,1.7798,1.6129,0.39452,0.43799,-0.93073,-1.1673,1.1275,-0.13937,-1.4821,0.16118,0.71389,1.0822,-2.322,0.45513 -2.7161,-1.8322,0.12799,-1.9543,0.97342,1.8394,-2.0185,-1.5863,0.0018538,-0.20133,-0.35417,1.183,-0.40352,1.9111,0.71299 -3.0068,2.1703,1.4192,-0.1131,0.32884,-0.52267,0.2517,1.977,0.23661,0.083715,0.70082,0.25844,-0.52564,-1.081,0.74396 2.6313,0.49232,-1.817,0.33729,0.44019,2.3843,-0.52251,-1.7035,0.63109,1.1023,0.6761,-1.0392,-0.74277,-0.17825,0.46809 -2.0159,-2.3418,-2.301,1.2539,1.0412,0.38178,-1.8254,0.15087,0.86681,0.025556,-1.3272,0.0017055,-0.40363,1.227,1.5397 1.9886,0.34703,0.48989,1.1551,1.4826,1.1421,-1.549,-2.8142,-0.00085676,-1.2348,1.5361,-0.7211,0.77717,0.69993,0.049466 2.1502,0.4148,-1.0407,-1.958,0.48031,-0.99746,-0.61001,1.277,1.3916,1.2248,0.82457,-0.25106,1.5887,-2.0108,0.16812 2.6096,1.9492,-0.015012,0.91377,1.3725,0.41876,-1.2196,-2.3606,0.032294,1.2483,0.039726,-0.81424,-0.14929,-0.54842,-0.28298 0.53474,1.6832,3.9574,-0.43357,1.3007,0.019808,-0.81021,0.40173,-0.95699,0.97937,-1.0565,0.31973,-2.3301,-0.23375,0.75923 1.204,1.9232,1.198,-1.8792,-2.4087,-0.40186,0.46545,-0.71179,-1.5035,-0.9196,-0.059031,0.29071,-1.9216,-0.38374,-0.2698 1.5396,3.0828,1.7897,0.85544,0.26094,-0.78012,-0.2223,-1.2311,-0.89948,1.0641,-0.86465,-0.25862,-2.4326,0.6268,0.17436 0.50692,0.83176,4.4481,-1.1706,0.39935,-0.17735,0.78456,0.18248,-0.39556,0.77797,-1.179,0.79925,-1.9428,-1.1916,-0.18818 -2.9942,3.3237,2.4639,-0.65744,1.2355,-0.15497,0.35069,1.0441,-1.1142,-0.66891,0.41667,0.21144,-0.27441,-0.37315,0.048194 -1.1311,0.70512,4.6576,-1.617,1.1737,0.72114,-0.86811,0.31642,-0.66629,-0.16641,0.39467,-0.49652,-1.8275,0.87088,-0.16796 1.1727,0.03355,1.6253,0.19102,0.49592,0.44582,0.52044,0.73464,1.7522,-0.35235,-0.27944,1.4951,1.1946,-0.87677,0.41406 -1.8644,0.43671,1.0719,-2.7494,-0.39115,1.2754,2.1923,-1.702,-0.55082,-0.84456,-0.38133,-0.53658,-0.52764,-1.5772,0.040142 -1.2939,1.9219,-0.5286,2.1893,1.2138,0.58772,-1.1832,2.0114,1.0981,0.29134,-0.43055,0.33778,-0.86547,0.86487,0.18819 -3.9226,0.34046,1.509,-0.42122,1.8714,-1.5397,1.5107,-0.38119,0.4565,1.2515,0.2875,0.08657,-0.46233,-0.26344,0.31366 -3.7104,-0.35427,2.6684,-0.47119,2.3288,-1.1099,0.74782,-0.039983,0.094784,0.52938,0.37127,-0.2317,-1.3941,-0.33026,0.24666 -4.2307,-0.48302,-0.11813,-2.2257,2.1026,-0.6659,-0.79758,-0.51733,-0.88608,1.0272,0.50022,-0.055052,-1.2713,-0.83131,-0.22858 -2.6746,-0.98215,-1.5523,-0.66693,-1.3715,-0.7169,-0.81127,-0.26657,0.34309,0.21225,0.0055491,-0.6603,0.52038,-1.4255,0.0095693 -3.9349,0.86863,1.9614,-1.4871,1.0729,0.76223,1.0335,0.15428,-0.51613,0.21744,0.96626,0.62489,-1.1353,-0.16326,-0.0018513 -3.4182,0.53391,1.7602,-0.20571,1.3806,-1.0446,1.281,1.3354,1.3005,-0.38678,0.78769,-0.87419,-1.1672,0.096499,0.43401 -3.1245,-1.9327,2.7677,-0.9843,2.68,-1.0915,0.48318,0.3696,0.55347,0.521,-0.11265,-1.0787,-0.72485,0.67425,0.88681 3.4241,-2.4443,-0.66443,-2.2546,3.6239,0.32671,3.3116,1.1152,-1.881,0.4205,-0.80517,4.0515,-0.82758,-1.2091,0.37691 0.37711,3.0636,-0.46146,0.11508,0.103,-0.39377,-1.5765,-0.44165,1.2089,0.070738,-0.23749,0.64312,1.2757,-0.25816,-0.26587 -2.6215,0.81286,3.7615,0.029685,1.9376,-2.0246,1.0384,0.91688,0.1831,-0.60301,0.060662,-0.084757,-0.48674,-0.53476,0.79805 3.6441,0.63399,0.89515,0.99546,2.0956,1.0289,-0.98611,-2.1015,0.26615,0.2638,-0.004468,-0.54556,-0.76311,1.1513,0.43575 0.46915,1.8039,-0.01532,2.1469,2.5342,-0.49543,-0.77065,-1.7356,-0.097259,-0.0094493,1.0741,-0.11849,0.049165,0.81764,-0.59945 -1.897,3.1689,0.29219,0.48648,-0.12827,0.21463,-0.28872,2.0272,-0.59732,0.48088,-0.25264,0.093218,0.87192,-1.4448,1.2541 -0.58661,2.1505,-0.1585,2.2299,-0.40111,1.2207,-0.073139,-0.63162,0.81774,0.80588,-0.40361,1.2893,-0.61896,0.50966,0.5696 -2.5003,-1.6391,2.0394,0.8615,2.8521,-0.37108,1.3758,1.061,0.79656,-0.21057,0.74855,-1.752,-1.407,0.97794,0.79987 -0.69606,2.0213,-0.64395,1.7332,2.5309,-0.42956,-0.91868,-0.7102,-0.26142,-1.811,-0.15756,0.015808,0.30421,0.3667,-0.39102 -2.455,-1.909,1.8493,0.31834,4.1013,-0.0029592,1.0693,-0.3333,-0.75504,0.18167,0.36668,-1.5327,-0.59153,0.19116,0.7604 -3.355,-0.26903,3.8267,-0.64327,1.2158,-0.60027,0.29302,0.40972,0.87353,-0.76032,0.851,0.087683,-1.044,0.81302,0.08434 1.8696,-0.1121,-2.7441,-1.0842,1.4579,1.467,2.8265,-0.25324,0.38001,-0.14346,0.44534,3.1333,-0.21687,-0.21372,0.96449 3.9196,-2.1273,-1.7305,-1.0977,1.778,1.7236,2.6838,1.0021,-1.3634,-0.64562,0.59552,0.81548,-0.98651,-1.5972,0.62301 1.2328,-0.6785,-0.37559,-4.1811,-0.19213,0.31882,1.231,1.2838,-1.6111,-1.5284,0.46095,2.0643,-0.45781,2.097,-0.21745 -0.81091,-0.86153,2.7511,2.2294,1.6752,-1.4973,0.63229,1.716,0.48184,-0.84288,-0.33639,-0.47991,0.78644,-0.10559,0.05324 0.98655,4.1401,-0.80994,-2.6274,0.63748,0.57424,-0.32089,-0.87022,-1.1388,0.38712,1.567,-0.35079,0.43878,0.057399,0.13834 -3.3782,1.1155,-1.6797,-0.88318,-0.97837,-0.47381,2.1769,0.88291,0.2799,-1.37,0.10632,-0.67007,-0.22028,-0.72095,-0.14618 2.0258,0.87883,-0.41853,-2.2099,1.1381,-1.1777,-0.39988,-0.11332,1.351,2.2968,1.5111,0.62053,0.31753,-1.6549,1.3886 -4.2686,-0.3467,-1.1029,-1.7243,0.99247,-2.0965,0.8572,0.14849,-0.062473,-0.41308,-0.13979,-0.84508,-0.026322,-0.63392,-0.29659 -1.6589,2.2868,-0.64954,0.87222,-1.4434,2.0459,0.75523,-0.60442,-0.66178,-0.34837,0.87459,0.70961,0.26257,-0.59429,0.34325 -2.4039,0.588,0.94604,-1.0033,-1.0737,1.441,0.70721,-1.2124,0.84107,0.63877,0.99171,-0.27837,0.75121,-0.067655,0.15695 -4.3482,-0.75585,1.3638,-2.222,0.93724,-1.3706,0.38435,0.0045212,0.2108,-0.35544,0.010604,-0.94319,0.30629,-1.5159,0.20757 -4.3859,0.044664,-2.2086,-1.8591,0.75202,-1.9186,0.90914,0.59648,-0.8928,-1.1055,-0.87046,-1.3926,-0.16736,0.096707,-0.46601 -4.4095,-1.1858,-1.1216,-1.8456,0.79431,0.079266,-0.29698,-0.42458,0.12886,-1.5307,-0.12456,-0.57895,0.038727,0.21004,-0.49369 -4.2132,-0.96872,1.5777,-2.5197,1.1168,-0.49973,-0.13965,-0.82182,0.33505,-0.84425,0.23531,-0.54913,0.43683,0.40091,-0.082992 0.40064,2.7651,-0.94429,1.8717,0.84591,0.39104,-1.4259,0.086402,0.23759,1.6373,-0.12909,-0.23145,-0.63102,0.6871,-1.1361 -3.1449,0.52511,0.26131,-0.80732,-0.91048,1.2506,1.2754,-0.31853,0.70438,-1.7029,0.92098,-0.19163,0.27581,0.11216,-0.73508 4.5607,-1.0526,-1.7787,-1.1735,2.5961,0.62772,2.3322,0.058053,0.46573,0.13951,1.2639,1.1265,-2.377,-0.9941,-0.17891 -3.0198,1.2795,-0.55523,0.05051,-0.30044,2.267,1.9343,-0.89876,0.15542,-0.98826,1.0648,-0.12415,-0.016854,-0.11129,-1.345 1.6802,3.3921,-2.4969,-0.65718,0.14847,1.0611,-0.72812,0.20726,-0.86314,-0.68459,-0.33363,-2.5236,-0.63893,-0.72437,0.02226 -2.8007,3.3317,1.5269,-0.18903,0.1429,0.34556,0.79736,0.61962,-0.74437,-1.2549,0.62868,1.3405,0.4291,0.41993,0.085793 -3.19,-0.68902,-2.1018,-1.261,0.7046,0.67959,0.45953,-0.96917,1.4244,-1.9597,-1.2433,-0.59223,-0.37888,0.27751,-0.27266 -3.9465,0.015037,-2.2109,-1.3684,0.42408,0.42104,0.29227,-1.198,-0.25523,-1.2155,0.28182,0.29898,0.3412,0.36991,-1.3288 -2.7176,1.2426,-0.7471,-1.2093,-0.77195,2.1019,1.4637,-0.92773,-1.7316,1.3693,1.0795,0.046271,0.39037,0.20757,-0.71244 -3.4639,1.0747,0.54896,-0.7515,-0.28914,1.668,1.4749,-1.2739,-0.24613,-1.0839,1.6026,0.28573,0.3289,-0.027801,-0.78021 1.338,2.4063,-1.7285,0.093374,-0.37468,0.61546,-1.0759,-0.74657,0.87526,0.74948,-0.37314,-0.0083595,1.525,-1.3357,-1.0205 -0.060548,1.5835,1.5772,2.0757,1.2272,-1.0618,-1.0693,0.62677,1.7746,-0.62939,-0.068437,0.97025,-0.19938,-0.52645,0.75507 0.45829,4.0651,-1.1409,-0.0021826,-0.51848,0.78278,0.48855,0.25564,-2.0264,-0.8559,-2.2122,-1.0701,-0.86022,0.72272,-0.32837 -1.6717,2.861,-0.1653,0.32872,-0.62484,1.4032,-1.139,0.21718,-1.2333,0.0065169,0.57929,1.5508,-0.52803,-0.062102,-1.0332 2.9622,-0.60733,-2.3455,0.57536,1.6785,1.2615,2.6976,1.2092,-1.5573,1.1355,-0.26794,-0.28847,-1.4627,-0.63835,0.27161 -0.90479,2.4949,-0.92709,0.27967,-0.81712,2.3044,2.2001,0.18003,-1.3776,0.12336,-0.8048,-0.086074,-0.56802,0.54486,0.74824 -2.141,3.1718,-0.70521,0.65489,-0.38229,0.53607,-0.42383,1.5954,-0.2167,0.22369,-0.2467,1.3585,0.45033,-0.42085,-0.13638 -1.7676,3.0275,-0.58294,0.11171,-1.2376,1.8454,0.7573,0.78966,-1.0133,-0.26459,-0.64611,1.1725,0.65364,-0.42314,1.0956 1.6838,2.6519,1.625,-0.50107,0.84015,0.41702,-1.2005,-0.72158,0.50855,-0.32237,-0.9024,1.1687,1.4617,-0.85543,-1.6374 1.1661,3.4073,-0.73485,-0.53907,0.028208,-0.13152,-0.016718,0.13501,0.55947,0.37652,-2.4377,0.052797,0.063304,-0.50862,-1.583 -3.2214,1.3907,-1.4158,-0.032161,-0.54199,-1.1374,1.4533,1.6575,0.66131,0.21017,0.36718,-0.48746,-0.067361,-0.56192,0.38845 2.2497,3.7792,-0.33731,-2.0008,0.18953,-0.31887,-0.82336,0.14476,-0.63199,1.0529,-1.0745,-0.72436,-0.56486,-1.0707,-1.8867 2.8147,2.8772,1.1643,-1.4049,0.16967,-0.093366,-1.0536,-0.52218,0.68984,0.098723,-1.6319,0.030938,0.24284,-1.0354,-1.378 1.181,-0.014895,-0.011076,0.10035,2.8284,1.4767,-0.32391,-2.371,0.62264,0.096643,1.7431,-0.92146,0.38402,0.022425,1.8284 2.7809,1.5478,-1.8511,-0.50563,1.9723,-0.068432,1.4435,-1.248,0.28942,0.87208,-0.85836,-0.70845,-0.60753,-1.8544,-0.28473 0.096869,2.548,-0.30455,1.6593,1.2671,-0.60745,-1.0714,-0.44281,0.96257,0.65971,-1.0707,0.72571,0.87637,-0.33386,-0.55478 1.8629,2.8732,-0.10033,-0.025314,1.0236,-0.15189,-0.52146,-1.5389,1.3396,0.89611,-1.4688,0.23285,0.61303,-0.16699,-1.7042 0.62336,3.2442,0.11189,-0.32634,-0.31996,0.69932,-2.1228,-0.6035,-0.033322,-0.26209,0.42781,-0.19699,-0.13202,-0.38867,-0.60692 -0.18762,3.3899,0.74368,-0.47563,-0.46244,0.6612,1.2463,0.52042,-0.090278,-0.1412,-2.0444,1.1433,0.44829,-1.713,-0.056837 0.75589,2.7265,-0.24261,0.825,0.36157,0.28285,-0.069103,-0.31672,0.80976,1.0469,-2.1187,1.0149,0.99098,-1.2559,-0.83556 0.26358,1.7932,-0.89106,1.8952,2.2889,-0.36883,-0.73993,-0.50346,0.18037,-0.093919,-1.4128,0.29205,1.4466,-1.4494,-0.12052 1.3435,-0.77439,-0.60662,1.8796,4.4613,-0.79644,-0.38772,1.4047,-2.2305,-2.1244,0.40418,-1.3206,1.5997,1.042,0.49177 1.1875,3.5401,1.0194,-1.7611,1.9243,-0.80591,-1.3671,0.49871,-0.98572,-2.2339,-0.010531,-1.1099,1.232,-1.919,0.060346 3.7512,-1.6765,-1.5997,-1.7369,0.72176,1.8597,2.7038,0.73373,1.7346,0.97964,0.42534,2.7923,-0.79722,1.2584,0.1714 3.9284,1.75,-0.53649,-3.3535,0.35333,-0.12633,-0.02758,-0.2159,1.0833,0.26929,0.21033,-0.19136,-0.16219,-1.298,-0.80758 -1.7966,-0.4128,3.8598,-0.49874,0.51727,0.75874,-0.25243,0.35541,1.8656,0.093137,1.0423,-0.18793,-0.15543,1.3989,0.15467 3.7737,-0.076991,-2.7484,-3.6187,-0.19421,1.7743,0.99389,1.6278,-0.82359,0.19936,1.7704,1.2546,-0.27653,-0.35978,-0.99706 -1.383,-2.7535,2.6984,-1.799,0.79806,0.88254,0.11685,-1.358,1.7616,1.0742,-1.4028,-0.77133,0.3782,1.4457,0.098397 2.6616,-0.084309,3.9775,1.0086,1.5002,1.4898,1.4567,-0.23259,0.39622,0.38229,-0.62869,0.55425,-0.30834,0.66074,0.052904 -1.3602,2.8515,0.20175,-0.55351,0.082429,1.1418,-0.69963,-0.10824,-0.41396,0.064918,0.69285,0.61632,0.34898,1.5467,-0.6488 2.5027,-3.426,-0.2876,-1.4027,2.2069,2.4937,-0.75508,-0.70521,-0.82566,-0.2272,0.58992,1.4211,2.0114,1.2661,1.0717 2.856,1.6262,0.5415,-0.121,0.94729,-0.15102,0.036973,-0.36678,0.91371,0.044112,-1.5992,0.19328,-1.8994,-1.3659,-1.7125 -3.518,-1.0992,1.6904,-1.6353,0.72569,-0.50165,-0.17986,-0.58953,1.6304,-0.9132,0.73369,-0.59593,0.4724,1.0377,-0.06606 -2.9478,0.44103,1.8732,-0.53588,-0.024885,1.1537,0.63045,0.88777,1.5818,0.3031,1.1703,-0.29148,0.45385,1.4313,0.52758 1.9593,-1.142,0.98165,-4.0328,-1.2063,0.62736,0.19057,0.59111,-2.2213,-1.6344,-0.10542,0.38335,-0.25819,3.1811,0.17533 0.92402,-2.0523,3.0462,0.053541,0.71906,2.7125,2.0604,-1.0848,0.35505,1.4121,-1.0291,-1.1385,-0.39563,1.7535,-0.13096 -2.695,-2.1312,2.0145,-1.1197,0.32803,1.2772,-0.8212,-0.69599,1.413,1.0756,0.094794,-0.87003,0.47787,2.0247,-0.17901 -1.9179,3.4723,0.13435,-0.96431,1.9284,0.68331,-0.50778,0.37757,-1.2653,-1.3704,0.30879,0.65218,-0.020707,1.1298,-1.7325 -1.8468,-1.5931,0.71478,-2.2224,-0.16493,1.0122,-0.5544,-0.90146,1.2615,1.2841,-1.5811,-0.91881,0.77018,0.84742,0.51679 -0.98736,-2.2753,0.71938,-2.3746,1.1306,0.48042,-1.1007,-0.93126,0.10691,1.8708,-2.1761,0.17716,-0.10553,1.907,1.472 -1.2136,-1.6553,1.0912,-2.9547,0.93729,1.1948,-1.7096,-1.3769,-0.77992,0.91179,-1.8976,0.74913,0.28224,2.2767,1.4935 1.2943,4.1489,-1.3277,-1.8822,0.38129,0.83126,-1.3401,0.2699,-1.5172,0.021756,-0.61617,-1.7352,-0.28433,-1.1824,-0.53156 -2.8677,0.68742,-1.9995,-0.59378,0.23989,-0.045997,0.73521,0.74976,0.93414,-0.87796,-0.061465,-2.0184,-0.37172,-0.58774,0.023479 2.5067,-0.66283,-0.14299,-1.1395,3.7643,-1.4449,1.0396,0.23741,0.76733,1.3705,1.8567,1.7725,1.6391,-1.0822,1.1591 0.74441,4.0289,-1.5422,-1.3129,0.90734,1.2469,-1.323,-0.061886,-1.4626,0.19214,0.29343,-1.4246,0.19766,-1.192,-0.69446 3.3524,0.49868,-1.5678,-1.6064,2.2421,-0.10937,2.6904,-0.37796,1.0302,1.3292,0.025462,0.69088,-1.1865,-1.5004,1.1759 2.2069,2.4932,-1.1005,-3.3225,0.48706,-0.909,-0.89493,-0.11206,-0.25228,0.86671,1.8894,-0.74637,-0.61531,-1.6017,0.72648 -0.26396,3.8815,-0.90498,-0.97979,0.76575,0.95794,-2.2386,0.49699,-1.8651,0.74687,0.78279,-0.76445,0.47821,-0.75605,-0.80517 2.181,2.3744,-0.47057,-2.4213,1.5795,-0.97591,-0.10391,-0.5385,0.29904,2.0128,0.97184,-0.71599,-0.83919,-1.3259,1.3072 1.4038,2.9171,-2.4941,-1.9783,-0.3564,1.2788,-0.80478,0.57464,-1.2759,0.09823,0.35522,-2.1198,-0.63687,-0.74488,0.21976 2.0425,2.1559,-1.5184,-1.9641,1.4729,-0.050691,0.4273,-0.037515,1.348,1.2057,-0.023092,-0.012015,1.6881,-1.9673,-0.46794 1.8779,1.2317,-0.083303,1.1551,2.2126,0.41359,-1.1045,-2.8792,0.77663,0.58051,0.98501,-0.23426,-0.013879,-0.035236,-0.0069709 1.1034,3.7067,-0.53483,-1.8045,0.88378,-0.41828,-1.718,-0.2689,-0.52676,1.0803,0.62983,-1.05,0.55183,-1.1161,-0.16424 1.7225,2.8454,-1.3524,-1.5553,0.5656,-0.79947,-0.74445,-0.42199,0.14807,1.8599,0.50389,-1.2732,-0.35123,-1.3495,0.64339 1.1415,3.4615,-1.538,-1.9573,0.51795,0.6531,-1.5658,-0.46821,-0.45802,0.97186,0.85828,-1.1474,0.97341,-1.3156,-0.046328 -1.7097,4.0348,0.42254,-0.13206,1.6414,0.64526,-1.3787,1.5777,-1.2339,-0.96755,0.089229,-0.074088,0.39115,-0.20637,-0.53702 1.4221,4.4487,-0.95035,-1.9156,1.5979,1.04,-1.4233,-0.22721,-1.5087,0.28293,0.50525,-1.7355,0.34069,-0.60821,-0.11733 -1.3674,3.9676,1.3839,-0.13264,0.31181,1.1122,-0.90878,0.27313,-1.1887,-1.2207,0.55344,0.9297,0.43905,0.091792,-0.4003 2.861,1.9244,0.83528,-0.52196,3.59,-0.31866,0.042196,-1.2031,-1.2,-0.37364,-0.9895,-0.98399,0.29572,-2.5966,-0.57557 1.345,3.6,-2.245,-1.0154,0.57959,1.8755,-1.3738,-0.093382,-1.4445,0.025627,0.28178,-2.072,-0.41052,-0.57143,-0.47401 -3.5272,0.35576,0.31449,-0.92712,-0.75275,0.80007,1.1641,-1.0451,0.65405,-1.2965,1.2752,0.10666,0.52227,0.63839,-1.1371 0.93409,3.8283,-0.33418,-1.1264,-0.23449,0.17971,-1.063,-0.1336,0.15468,0.98786,-1.4521,0.025792,-0.0665,-0.4781,-1.1016 -1.9011,3.467,1.6106,-0.65525,-0.3784,1.0576,0.65071,-0.39666,-2.2713,-0.13937,0.39687,0.8704,-1.1729,-0.52851,0.1409 -2.1427,2.6219,-1.5152,0.31857,-1.0556,2.0484,1.28,0.66336,-1.8144,0.73862,0.07386,0.9303,0.15997,0.10378,0.3316 -1.5425,0.043925,2.224,-0.43992,-0.25444,0.42007,0.84517,-0.45505,2.09,0.69395,0.87456,-0.50593,0.40473,0.41265,0.55247 -2.5266,1.1305,-0.17057,-1.6627,-0.18965,1.4696,1.2299,-1.7157,-0.72064,0.34388,0.36342,-0.66621,-0.15322,-2.0299,0.12896 -2.84,-0.97523,-1.9997,-1.0254,0.48264,0.78379,-1.3795,-2.031,-1.0478,-1.6238,-0.5663,2.0927,0.1089,0.089994,0.56422 4.5914,-2.3471,-0.53276,-1.8048,0.81333,3.1309,2.0239,-0.72653,-1.2982,-1.3301,0.33696,-0.3011,0.26644,1.0583,0.56092 -4.045,-0.0011526,-1.3693,-1.5343,0.39271,0.35471,0.66454,-0.28875,0.73298,-0.89244,0.53797,-0.39353,-0.068839,-0.54783,-0.92659 -2.2704,0.2557,0.42068,-1.2873,-0.77836,0.15225,1.1719,-2.8088,0.9379,1.2062,-0.24417,-0.1506,-0.019085,1.074,-0.6311 -3.0619,0.83187,0.797,-0.60908,-0.85239,0.95085,0.81372,-0.082026,1.098,-1.2237,1.7682,0.39452,0.17665,0.17107,-0.55854 -3.1852,-1.2537,0.56343,-1.8155,-0.37002,0.32758,-0.76512,-2.4351,0.22486,0.54112,0.31417,0.60905,-0.14739,1.2672,-0.8156 -0.7506,1.1577,1.1163,2.845,1.9231,-0.68752,-0.14494,-0.05095,0.41959,-1.3924,-0.56494,0.40915,-0.034881,-1.1936,1.2512 2.0851,4.2356,0.3847,-1.6395,0.22696,0.51664,-0.97154,-0.86603,-1.2937,-0.30252,-0.492,-0.46535,0.21537,-0.32746,-0.76362 -0.82384,0.32258,2.2557,-2.6274,1.6556,2.4156,1.5259,-0.48088,-1.8054,-1.2447,0.73312,-1.3519,-0.57077,0.2736,-0.28571 2.6626,-1.6046,-3.6073,0.38033,-0.93155,2.7905,2.2028,0.43844,-0.98979,-1.2095,1.0177,0.97645,-0.33265,0.7708,0.5591 -1.0353,-1.0335,1.5467,-1.7241,-0.95294,0.53233,0.48397,-2.6693,1.3559,0.9435,-0.49325,-0.72111,-1.0073,0.99938,-0.40758 -1.492,1.1383,2.4584,-0.59248,0.12191,-0.4601,1.2919,-0.77196,1.5718,1.3343,-0.21025,-0.44616,-0.14912,-1.0804,0.44601 2.4541,2.3014,1.6174,-0.52428,-0.085022,0.48038,-1.3065,-0.66736,1.3448,0.50722,-1.0409,-0.050922,-0.74177,0.67137,-0.41564 -3.4154,-0.46351,0.39731,-1.2065,-0.1944,0.6289,-0.041233,-1.7306,0.93234,-0.25237,0.9122,0.3736,-0.17808,1.1624,-1.03 -2.3343,1.9421,-2.434,0.52175,-1.1618,1.345,0.82076,1.7425,-0.13214,-0.21124,-0.057366,0.029312,0.59336,-0.96825,0.63969 -0.9963,0.77769,1.2517,-1.4236,-1.5157,-0.3095,1.8588,-2.1442,0.69228,0.82152,-0.18592,-0.7946,-1.0961,0.43567,-0.41043 -2.0916,-2.4332,0.93205,-2.0758,0.24395,-0.87876,-0.9495,-1.4642,1.1399,-0.084742,-2.0143,0.62096,0.72359,-0.50843,0.01879 0.20417,2.2184,-0.76275,1.3184,0.013794,-0.33223,-1.1664,-1.3017,1.5571,0.39334,-0.16911,0.79849,0.85259,1.0334,-0.87765 2.8542,2.9599,1.143,-0.98413,-0.30352,-0.47594,-0.98305,-1.0192,0.73402,0.13179,-1.0398,0.051179,-1.6277,0.49802,-1.1389 -3.5562,-1.1654,-0.92668,-1.3747,0.31326,1.1498,-0.59162,-0.58259,0.4905,-1.8043,-0.15688,-0.20088,0.32555,-0.21447,-0.17729 -1.194,3.3356,0.62724,0.2451,-0.97568,0.22546,-0.25702,-0.46997,-0.31975,-0.40961,-0.44578,1.8394,0.58416,0.67368,-0.082408 -1.7644,2.8418,-0.44567,0.71857,-0.11113,-0.060715,-0.78946,2.1207,-0.70948,-1.0939,-0.54254,-0.6392,0.70635,-1.3453,1.1304 3.4074,1.3433,-0.83048,-1.9641,-0.19929,0.43681,-1.0335,0.28443,1.7813,-0.26441,0.30181,-0.34246,-0.84665,0.04877,-0.9578 -1.0413,1.8575,1.7945,-0.04422,-0.2003,-0.83398,-0.32839,2.2233,0.63056,-1.519,0.10342,-0.2759,1.0915,-0.81807,1.9735 3.7051,-2.1328,0.39811,-1.737,3.2804,2.2594,1.3765,-1.6173,-1.2407,-2.5378,0.18186,0.68243,0.62812,0.794,0.11206 2.8062,-1.1817,-1.5151,-2.009,1.4964,1.5692,2.153,0.42559,-1.737,0.81255,-0.63698,4.0119,0.31065,-1.6275,-0.2426 -3.4994,0.14354,0.42825,-2.2068,1.1697,1.4694,0.32771,-1.8108,-0.085246,-0.62266,-0.050232,-1.1164,0.86991,0.087552,0.18006 -0.7518,3.2572,0.66929,0.19117,0.84398,0.11622,-2.0479,1.2292,0.68262,-0.85321,0.53417,0.61014,0.72459,0.18364,-0.40701 -3.9145,-0.36472,-2.4449,-1.3604,0.66964,-0.32482,-0.22499,-0.72308,-0.33897,-1.3007,-0.15162,-0.38779,0.61311,-0.43097,0.082781 -3.1179,-0.081638,-2.6258,-0.91685,-0.60165,-0.041133,0.34244,-0.24395,0.56898,-1.4019,0.0077814,-0.73161,0.20243,-0.39601,-0.27539 2.0196,2.5835,0.49655,-3.8919,2.3643,-0.66713,0.28793,1.0188,-1.3651,-1.2525,1.1326,1.0791,-0.41583,-0.77328,0.95577 -2.7567,2.1285,0.3739,0.87431,0.98272,-0.28135,1.2056,0.52358,-0.54617,2.3515,-0.12822,1.2252,-0.50063,0.14897,0.53624 1.8356,2.6474,-0.17684,0.78963,0.79893,0.70461,-1.704,-1.5968,-1.1489,0.83652,-0.16849,-1.2031,-0.71949,-0.26656,-0.088237 4.0353,2.6149,0.58958,-3.054,1.6173,-1.0686,-0.32927,-0.38095,0.41891,0.8095,0.57516,-0.31943,-1.4108,-1.0922,-0.80219 -3.1468,1.3826,-0.44239,-0.44758,-0.36765,0.50844,0.94138,1.5149,0.88996,-1.3864,0.85936,-0.35407,0.16245,-1.1928,0.87175 -3.9666,0.3726,-3.0278,-1.0639,1.3827,-0.29031,0.12555,-0.23301,-0.80953,-0.59921,-0.59944,-0.73265,0.53298,-0.52723,0.12936 2.0031,1.9148,-2.7875,0.40943,-0.37609,0.64625,0.15754,-1.0008,0.56937,0.4795,-0.86764,-0.61114,0.069092,-0.85313,-1.1608 -0.9461,3.4269,-1.1743,0.18742,-0.61496,1.3306,-1.1755,0.3467,-0.70452,0.52759,-0.43541,0.53193,0.88098,-0.47025,-0.66224 -2.9583,2.1605,-1.124,-0.18656,-0.70155,0.77947,1.9557,0.70587,-0.73742,0.76905,0.40299,0.65029,-0.06944,0.48929,-0.87711 -3.223,-0.59636,0.58599,-1.4567,-0.14421,0.31828,0.23415,-0.55086,1.4375,-0.95111,0.91437,-0.78229,1.0107,0.0027849,0.012145 -2.3258,-0.69227,1.0235,-2.1668,0.11965,0.23097,0.67835,-0.66852,0.71554,-0.73209,-0.6606,-1.3526,1.8693,-0.88377,-0.25564 0.096729,0.12377,-1.1263,2.383,0.87241,0.54901,-0.5277,0.75162,1.1883,-2.7588,-0.49295,0.16578,-0.58778,0.7223,0.96174 -0.57526,-0.27272,2.2595,0.77861,0.63695,-0.38395,0.81777,1.6642,0.72775,-1.4361,0.030722,-0.26588,2.3644,-0.79924,-0.58169 4.4104,0.73565,1.2747,-1.1849,1.0557,0.93352,-0.52462,2.2021,0.48762,0.41891,-1.2995,0.75893,-2.4845,0.22813,-2.0436 3.0475,0.12653,0.31638,-0.15723,2.7081,-0.22491,0.26838,-0.024108,1.9244,-0.90636,-1.213,1.2168,0.0080983,-0.13562,-1.0171 -3.779,-0.13042,-2.5748,-1.6158,0.17457,-1.6143,0.083413,0.17899,-0.47773,-1.2284,-0.57181,-0.76128,-0.36251,-0.36241,-0.15048 -1.7193,2.8519,2.4899,-0.39276,0.52954,0.30134,-0.31288,-0.054791,-0.65959,-2.2531,0.40352,0.5162,0.48775,-0.04731,0.57811 -2.5466,-0.78523,1.0403,-0.76671,0.35485,-0.71546,0.50719,0.15088,1.8885,-0.10972,0.14311,-1.5121,1.233,-1.049,0.29481 -2.212,0.97055,1.1188,0.64699,-0.21178,-0.43387,1.4337,-0.076543,1.2384,0.84553,0.35673,1.0516,0.76579,-1.8504,0.33327 -0.84146,0.29842,4.8913,-1.8087,2.0636,-1.1177,0.80618,1.4971,-1.1826,0.14527,-0.24208,-0.73229,-1.3579,-0.81281,0.41197 0.30057,-0.68529,3.5057,-0.37626,0.82447,0.63185,0.22669,-0.50983,0.60326,0.33541,0.40366,-0.55632,-0.11178,1.5008,0.30538 -4.3781,-0.268,2.1651,-2.8133,2.4198,-0.5713,-0.015438,-0.029661,-1.4188,-1.2737,-0.079975,-0.65866,-0.68366,0.48464,0.17768 -2.6263,1.4396,3.8739,-1.3532,2.5017,-1.804,0.14178,0.34423,-1.2425,-0.69667,-0.45037,-0.58671,-0.98827,0.036602,-0.10891 -2.6968,2.1379,3.0512,-1.4583,2.4116,-0.83894,0.041178,0.76609,-1.962,0.53425,0.4819,-0.97758,-1.2558,0.66222,-0.41535 -0.47991,2.5797,-0.85436,1.6459,1.0891,0.7876,-1.3465,-0.22861,-0.12537,1.2151,0.4129,-0.1006,-0.72706,0.26683,-0.96429 3.4024,-0.0050217,-0.81863,-0.42365,0.75856,1.6558,-0.18639,-1.3491,0.93166,-1.0433,-0.24116,-2,-1.0496,0.39479,0.23682 -2.631,0.60446,3.7727,-2.4426,2.8631,-0.52168,0.34362,0.95715,-1.573,-0.0083668,0.53206,-0.71181,-1.3725,1.2432,0.127 1.4063,3.7857,-0.84832,-1.5007,-0.27083,0.49687,-1.3911,-0.41786,-0.1859,0.66811,-0.83475,-0.84863,0.64584,-1.1704,-0.96514 -0.079189,2.5334,-2.1082,0.088375,-0.062845,0.82371,-1.6706,0.048901,1.1947,0.60479,0.72531,0.41004,1.0738,0.65354,-1.1306 0.92155,-0.12832,3.945,0.078902,0.25767,0.43,0.21448,0.098328,1.6751,-0.70677,-0.78914,1.299,0.59207,-0.39588,-0.55855 0.60861,-2.549,3.2144,-0.0050079,0.49435,2.2215,2.3808,-1.2203,0.86599,-0.21081,-1.3526,0.27603,-1.0176,0.0033776,-1.5432 -1.2981,3.3492,0.78221,0.5799,-0.83973,0.72684,0.0042042,0.60106,-0.63205,1.7279,-0.080345,1.2951,-1.2215,-0.032929,0.081316 -0.043929,-2.2263,3.7145,-1.4177,0.16195,1.2198,0.7507,1.0027,1.8678,1.2022,-1.5661,-1.1074,0.63974,0.50565,-0.46351 -0.86319,0.54899,-0.21597,-1.5989,-1.8977,0.66629,0.5315,-1.579,-0.70538,0.62641,-0.46307,0.42766,-0.5744,-0.19874,-0.962 -1.3398,-2.6232,2.5586,-2.606,0.46523,-0.0071539,0.39728,-1.0941,1.19,0.15311,-1.8841,0.00040356,0.50258,-0.57952,-1.5683 -2.266,-1.9277,-2.1315,0.14218,-0.0018538,0.49146,-0.26325,0.35407,1.7766,-0.34571,-0.40669,-1.1645,-1.1745,0.48829,0.17116 1.6536,-0.55738,0.35402,1.5312,-1.3722,3.1881,0.86228,0.095977,0.38712,-0.28015,-1.0457,-0.74692,-0.54578,0.96595,0.59067 -0.6632,3.115,-1.4596,0.066385,1.2554,-0.41185,-1.6802,2.0384,0.39721,-0.021346,-0.12034,-1.5266,1.4952,-0.58931,-0.074925 0.62414,2.7049,-2.332,-1.8779,-0.78826,1.3388,0.15802,-0.23224,-1.4717,0.21754,0.49209,-1.3957,-0.12396,-0.055727,0.44072 1.7983,-1.9228,4.0984,0.17822,1.1773,1.6657,0.97873,1.1641,0.73522,-1.2534,-1.2935,1.5593,-0.20041,0.12152,-1.29 -1.2152,-0.60006,3.6657,-0.19908,-0.19149,-0.43008,1.0724,-0.91956,1.9347,0.073763,-0.29833,0.62605,0.107,-0.49463,-0.019168 0.53789,0.19771,3.58,-0.42826,0.17088,0.35988,1.6898,-1.1548,1.5089,0.40014,-0.63228,-0.011941,-0.73081,-1.0125,-0.072902 -2.0327,2.9818,-0.53243,0.95989,0.30508,0.051628,-0.47193,2.9453,0.11339,-0.022508,-0.33657,0.32799,-0.14307,-0.89376,0.32365 3.6078,-0.10661,-1.1396,-1.8413,0.24509,0.71586,0.83474,-0.66872,1.5133,1.4476,1.2392,-0.038438,-2.2811,0.13412,1.8012 -0.49035,0.60301,4.1073,-0.11174,0.1382,-0.64076,1.0748,-0.38443,1.3596,0.087819,-0.82561,0.77888,-0.52135,-1.3638,0.4634 -1.0042,0.94585,2.7336,1.4642,-0.0098904,-0.31802,0.79693,-0.98683,1.571,-0.20126,0.29947,1.2435,0.092609,0.12246,0.55951 -0.85747,-1.1564,3.709,-0.7405,0.60138,-0.068594,1.5666,-1.0918,2.016,0.64254,-0.76933,-0.32152,-0.47823,-1.1567,0.22117 -0.2908,1.4776,3.927,0.22512,0.48686,-0.9643,-0.22241,0.27102,1.437,-0.31492,-0.47794,0.96325,-0.30028,-0.82445,0.87167 2.7977,0.55524,-3.4711,-1.0948,0.35889,1.2345,1.7307,1.4451,0.51511,0.40885,1.0601,0.089104,-0.55545,-1.4965,0.28584 0.13234,0.29856,4.472,-1.1254,-0.074655,0.36729,0.50519,0.05292,1.8392,-0.5283,-0.39953,0.77839,0.091482,0.25198,0.54083 2.5462,-0.92729,3.9183,-0.098077,0.27525,1.0252,1.4809,-0.19953,0.6587,-1.0619,-1.3454,1.3891,-1.4164,0.28153,-1.4443 2.41,1.19,-3.0854,-0.92811,0.25259,0.012481,1.303,0.45653,1.2006,1.3749,0.29454,0.34456,-0.74711,-1.247,-0.81464 -3.0865,0.31881,1.4977,-1.8318,0.18804,1.1346,0.95462,-0.70319,0.021721,-1.508,0.80257,-0.97102,0.85988,-1.5022,0.96551 1.2918,2.2023,-0.40165,-0.42854,3.6307,-2.5047,-1.293,1.5865,0.31549,0.69658,1.0576,-1.3471,1.3419,-0.97596,0.16997 -3.3882,0.30233,-1.075,-0.64186,0.52286,1.2068,1.0749,-0.32471,0.86789,-2.013,0.61067,-1.1094,0.45366,-1.0156,-0.55908 -1.7236,0.75323,1.5766,-2.1161,-0.47187,1.7307,1.3718,-1.1759,0.61556,-1.612,0.24621,-1.0244,0.71853,-1.2067,0.55083 -0.078191,2.415,-1.2444,0.37852,0.013834,0.091622,-2.2716,0.5409,1.5371,0.77187,0.449,0.61395,0.90358,-0.30233,-0.62172 -3.4354,0.24379,-0.46192,-1.4714,-0.17877,0.03284,0.83709,-1.1333,0.37618,-0.42871,0.34367,-0.96361,1.1541,-1.2609,0.40812 0.22527,0.51889,2.6753,-0.93112,-1.2302,1.1222,1.4071,-0.20119,2.2429,-0.67493,-0.78629,0.5135,-0.47438,-1.1348,0.25747 -1.0284,-0.3796,-0.23593,1.0973,-0.85547,1.4511,0.29166,-0.095812,2.5053,0.42535,0.52524,-0.46741,1.1525,-0.37473,0.24045 -2.1646,0.17762,-0.0057035,1.4018,0.69929,0.25867,2.1378,-1.3196,0.81664,1.3146,0.35688,0.44651,-0.11613,-0.96287,-0.50911 -0.21711,1.4892,-0.7063,2.4854,0.38039,0.75242,-0.56554,-0.72126,0.84761,-0.35487,-0.40181,0.93056,0.47896,-0.83921,0.64707 -2.4006,-3.3201,-0.26184,-0.10565,0.79469,-1.6184,-1.0937,-0.34106,1.3032,0.088646,-1.0991,-0.60437,-0.058715,-0.73635,0.21445 -0.93753,-0.33112,2.7506,-0.66003,-1.007,0.88882,0.71396,-0.57584,2.5879,0.22308,-0.15781,-0.12984,0.12127,-0.42257,0.99732 1.1739,4.2052,-1.0052,-1.027,0.0062597,0.75592,-0.76483,-0.80208,-1.0826,-0.054129,-1.2446,-0.86454,0.31047,-0.57338,-0.87751 -1.4405,-0.080101,1.9499,-3.0284,-0.71809,1.2412,1.3865,-0.92076,0.79078,-1.1649,-0.27748,-0.92876,-0.17229,-0.96694,0.39379 -2.6442,-1.4643,0.84831,-0.23586,-0.12602,-0.10553,0.01888,0.69631,2.4461,0.012571,0.59385,-1.1886,-0.00075988,0.029901,0.71791 1.4731,0.091401,-1.6741,-0.56105,0.13497,1.2669,0.5821,0.68473,-0.19986,1.1933,0.70986,0.90332,0.86659,-1.6864,1.1785 -3.5196,-0.52324,-3.1016,-0.87565,2.0691,1.4603,-0.16901,-0.54665,0.33629,-0.53805,-1.4918,0.81974,-0.14336,0.84484,-0.59118 -0.70122,0.76346,1.8685,1.0255,0.23758,0.83663,-1.2176,1.5955,1.7016,0.15538,1.3111,0.96114,-0.83829,0.98086,0.3723 -1.9183,-2.7113,0.30153,-0.12137,0.17252,0.054527,-0.79344,0.11511,2.279,0.42926,-0.89097,-1.1269,0.5993,-0.11634,0.41542 -0.4069,1.5764,-2.701,1.1206,0.16578,1.7351,-0.4599,-0.7297,-0.028812,1.451,0.83141,0.14398,-0.12063,-0.059919,-0.33534 -0.40479,2.2316,-1.5356,2.1752,-0.49835,1.0874,-0.85514,-0.51988,-1.0171,0.24153,0.13214,0.30381,-0.82418,0.97042,-0.7166 -1.4712,1.5682,0.79273,-0.37868,-1.2874,1.3953,1.4348,-1.136,0.7853,0.49388,0.40122,-0.087172,0.524,-0.50968,0.31083 1.254,3.533,-1.3483,-1.852,0.10623,0.52695,-1.2717,-0.62127,-0.39603,1.467,0.68494,-1.0507,0.5898,-0.81481,-0.027422 -3.0201,3.4055,0.40385,-0.0088589,0.2405,1.6924,1.2872,0.82032,-2.2607,0.48121,0.25272,0.88608,-0.80862,-0.61649,-0.51058 4.3345,-1.5454,-0.095574,-3.2795,2.384,-0.57354,1.9121,-0.12474,1.0293,0.43662,1.1877,2.0111,-2.0352,0.90906,0.53768 0.47558,2.6951,-0.048241,1.2521,1.5181,-0.88456,-1.9914,0.031028,1.3417,0.53369,0.10784,0.22084,0.65243,-0.9929,-0.7831 -1.7841,3.9099,1.3551,-0.64709,-0.6986,0.73543,0.8785,0.063263,-2.1021,0.90142,-0.30567,0.79701,-0.824,-0.065947,0.44868 3.1372,0.15275,-1.5817,-0.79814,1.1145,-0.33447,1.2161,-0.56939,0.051294,2.1058,0.77055,-0.40658,-2.4297,-1.2532,1.6729 -3.9479,0.94601,0.55553,-1.6476,0.66546,0.18067,0.90129,-1.7454,-0.7951,1.4733,0.7083,0.24328,-0.34482,0.70933,-1.0747 -3.7879,1.2893,0.43656,-0.58954,0.23074,-0.96265,1.4757,1.819,0.50778,-0.83111,0.84477,-0.72572,-1.0773,-1.4292,0.095679 -3.742,2.0037,0.75056,-1.5101,0.35603,0.92471,1.7954,-1.1669,-1.5599,0.98464,0.89643,0.36012,-0.56081,-0.1934,-0.65992 0.56685,3.271,0.36386,-0.70577,-0.19316,0.63355,-2.0157,-0.87797,0.65412,-0.56018,0.22136,0.70442,0.90802,0.58447,-0.41801 -2.3613,1.0176,0.80914,-1.5262,-0.76712,1.2943,1.1182,1.3386,-1.8446,2.1693,0.3194,0.15135,-0.26257,-0.49275,0.92868 -3.4652,0.22661,2.0283,-2.8316,0.86139,1.151,0.59168,-2.0733,-1.3655,-0.72417,0.71786,-0.51821,-0.62188,0.6656,-0.38923 -3.4409,2.0327,1.1435,-0.092551,0.482,0.3015,1.2184,0.23032,-0.63599,1.9837,0.85423,0.76921,-1.3392,-0.18432,-0.3597 -1.0415,-1.8179,3.7255,1.3304,1.2124,0.027178,-0.013539,1.4527,0.46484,0.56092,-0.068852,0.35336,-0.8079,-1.7384,0.62168 -0.98237,3.4868,2.2378,-0.75202,-0.42371,0.37484,-0.18086,0.5062,-0.35997,-0.19955,0.56458,0.70061,0.38361,-1.4957,0.99699 -1.4824,2.8002,-1.3031,1.0858,-1.0861,2.6594,-0.35528,0.56154,-1.0437,-0.37071,0.0041461,1.1318,-0.0017342,0.19134,-0.80598 -2.4712,1.8264,0.51511,0.37627,0.54326,1.7551,0.49922,2.1739,0.8131,-1.5301,0.41984,-0.27045,0.54737,1.2441,-0.3527 -1.7327,-0.16205,3.6391,-1.4848,0.14467,0.084056,0.60677,-0.037188,1.4817,0.60385,0.17989,-0.78743,-0.15341,-0.39977,0.86343 -3.0237,-0.58347,2.9902,-1.2942,1.2049,-0.29118,0.57235,-1.2974,0.53099,1.1281,-0.065362,0.26532,-1.151,-0.19339,0.51724 -1.6427,1.8887,-1.1006,2.4404,0.46265,0.46536,1.278,-0.15652,0.22935,0.63846,-0.27696,1.377,-0.43057,0.68686,0.27338 -4.4957,-2.1116,0.55079,-1.9441,1.7445,-0.59533,-1.2279,-0.2295,0.12207,-0.3292,-0.69039,-0.14157,-0.58044,1.0776,-0.16569 -2.243,2.0516,2.7696,-1.8703,-0.015663,0.40397,0.65932,-0.17478,-0.12049,0.57951,0.86544,-0.75675,-0.19442,-0.90474,0.25216 -1.6739,3.1591,2.5935,-1.3751,-0.38536,0.64556,0.90481,-0.70868,-1.707,0.11099,0.22049,0.16792,-1.639,-0.59014,0.26794 4.4755,0.95859,0.88564,-1.7372,2.0091,-1.8604,-0.48593,-0.59423,-1.3016,0.91786,1.9707,0.0017541,0.42963,-1.0949,0.027682 1.5015,1.5775,-2.4303,-2.4612,0.60828,1.2924,1.3165,1.739,-0.96264,-0.17601,1.1384,-0.82328,-1.3549,-0.63677,0.98304 -1.1201,3.3313,-0.55115,0.14632,-1.0063,1.0839,0.30587,0.33844,-1.969,0.74281,-1.4515,0.22503,-0.23371,-0.54692,0.41779 -2.0796,1.3807,0.71853,-1.1938,-1.4273,0.53272,1.6414,-1.4375,0.095919,1.1817,0.44845,0.37207,0.59049,0.48498,0.12852 -1.4434,3.7008,1.1806,-0.32241,-0.58678,0.5788,-0.93062,0.74136,-1.221,0.05719,-0.24092,1.0008,-0.17874,-0.94474,0.279 1.9016,-0.81528,3.78,2.1412,2.1114,1.0309,0.75757,-0.24595,-0.24327,-0.61396,-0.76168,0.71657,0.60084,0.71997,-0.29168 -2.3788,1.2189,-1.0213,1.134,-0.89109,0.68799,1.0932,0.2578,1.3451,0.75393,0.51879,1.0408,0.096685,0.74043,-0.025431 -3.4275,-0.59378,-1.0223,-0.44964,-0.47446,0.06609,0.79682,-0.9016,1.4801,-0.49791,0.97021,0.013187,-0.25086,0.97851,-1.4207 -2.8805,-2.218,-1.597,-1.0593,0.50316,0.67273,-1.7149,-0.0020107,0.95097,-0.023158,-0.84532,0.466,-0.37154,1.3529,0.50155 -3.92,-0.92715,-1.0504,-1.6434,0.60319,0.2976,-0.03634,-1.1292,0.56509,-1.1173,0.41445,0.21616,-0.16276,0.9643,-1.0447 1.6386,3.2059,0.050838,0.024438,0.035842,0.31933,-2.2487,-0.61905,-0.14575,0.68564,0.40088,-0.77691,-1.0508,0.5878,-0.41834 -3.1072,-0.61708,-3.2051,-0.65491,1.1953,0.72174,-0.8573,-1.2556,0.0905,-1.4164,-0.96083,1.6898,-0.090676,0.57066,-0.065809 -3.359,-0.40224,-0.97285,-1.7617,1.3194,1.4425,-0.84822,-2.0562,-0.76303,-0.68712,0.053313,0.64699,-0.37309,0.84853,-0.80141 -2.5975,-0.94978,-0.49743,-2.0475,0.030516,0.013436,-1.1834,-2.7377,-0.47202,0.15978,-0.44161,1.1059,-0.28848,1.3593,0.092398 1.2403,0.85894,-1.6259,1.0448,1.7377,1.5948,-1.266,-1.9181,0.086451,0.16757,1.5024,-0.51858,0.6484,-0.6287,0.27161 -2.7619,1.7057,-0.2834,0.46177,-0.047588,-0.94345,1.2737,0.56389,0.86539,0.99555,-0.19952,1.2896,0.51434,-0.41982,0.62084 -1.148,0.0162,-0.072697,1.912,0.51194,1.5402,0.43101,0.93495,1.016,-2.903,0.51062,-0.44727,-0.389,0.5313,1.464 2.8501,-0.78176,-2.0905,0.16048,0.47698,2.0159,1.4731,0.5433,0.75116,2.1941,-0.1781,0.3617,-1.0024,-0.24849,0.78053 2.3202,0.40721,0.68428,-1.2757,3.7843,-2.5921,-0.5044,1.5389,-1.2298,-1.8756,1.0787,-0.70326,2.1251,-1.5587,-0.3509 -3.473,-0.93261,-1.9098,-1.1832,0.7169,0.023953,-1.4101,-1.676,-0.3907,-0.64783,-0.046671,1.8839,-0.46434,0.59955,-0.83909 2.2542,-0.2854,0.747,-4.1965,-0.92171,0.18197,0.25017,0.19507,-1.1356,-2.0433,0.091024,0.76253,-0.70207,2.1162,-0.41821 -2.9998,-0.35284,-1.9088,-1.0512,1.0183,0.51127,0.10902,-1.3926,0.90327,-0.0092449,-0.17926,0.43634,-1.3442,0.819,-1.4382 1.6892,0.028894,-0.88479,-3.8531,-0.47502,0.32039,2.0446,1.1279,-1.5642,-1.6615,0.16596,1.7097,-0.44493,2.3841,-0.43389 0.42276,1.5321,-0.65503,1.8063,2.5066,-1.0555,-1.7717,-0.19777,1.3715,-0.21428,0.48866,-0.80018,0.16042,-0.31503,0.14015 -3.3117,-1.4842,-1.1756,-1.36,0.54104,0.40425,-0.91438,-1.3379,0.44159,-1.5135,-0.06921,0.39594,-0.012674,1.4623,-0.37055 -2.5879,-1.1111,1.8638,-1.3691,-0.076567,1.8566,-0.025468,-0.80683,0.56521,-0.014792,1.1641,-0.42783,0.0031321,2.5521,-0.77937 0.42883,3.6503,-0.73787,-0.43228,-0.79239,1.954,-0.85717,-0.23757,-1.8952,-0.14717,-0.71874,-0.79634,-0.75744,-0.40615,-0.53187 -3.4497,-1.6716,-1.2424,-1.1525,0.56151,0.47637,-1.0023,-1.1735,0.89049,-1.0543,0.010451,0.56702,-0.48388,1.5322,-0.57154 -2.439,-2.1155,1.8936,-1.2453,0.67781,1.4141,-0.8792,-0.60935,-0.096843,-0.2043,0.38362,-0.65117,-0.057577,2.7241,-0.10523 -2.6493,-0.10683,0.96643,-1.0488,-0.53099,1.5646,0.21717,-0.62084,1.7156,-0.53194,1.1693,-0.44471,0.51982,0.039489,0.029985 -2.5081,2.5294,1.1079,0.28533,-0.098027,0.68799,0.84321,0.34498,0.13262,1.3427,1.1362,0.64544,-0.53541,-0.070022,-0.31913 0.46139,1.2659,0.29366,1.8313,0.75401,-0.48089,-0.92055,1.3016,1.0722,0.46663,-0.68763,-0.13855,0.097488,-1.4764,1.3798 1.1727,3.9776,-0.0016807,-1.2666,0.033779,0.17889,-0.81163,-0.03704,-0.42255,1.2902,-1.9411,-0.29282,-0.11785,-0.5669,-1.2465 -3.5942,-1.3793,0.57467,-1.3581,-0.21782,1.8733,-0.60538,-0.29521,0.41271,-0.20209,0.42728,-0.79279,0.57434,1.7419,-1.0935 3.9511,-1.6948,-1.7752,-1.2267,1.9915,2.3626,2.1123,-0.32766,-0.55746,0.016131,1.0802,2.0602,-1.8228,-1.018,0.22925 -2.8443,1.1958,0.11663,-1.8647,-0.19833,0.35179,1.0493,-2.0774,-0.27662,1.5084,0.13825,0.034994,0.40549,-0.39569,-0.63427 -2.4038,2.2536,1.8658,-0.65073,-0.27838,0.41373,0.44896,1.0718,0.10775,0.055269,1.0409,-0.2765,0.58771,-2.0643,1.076 -2.0287,1.6835,1.6297,-0.43881,-0.43779,0.83421,1.0664,-0.38237,0.70115,0.27435,0.54816,0.56539,0.81339,-1.2369,0.66512 -3.055,1.3133,-2.0196,0.1783,0.46503,2.0112,1.6754,0.43726,-0.048259,1.2891,-0.18776,-0.42607,0.0248,-1.4537,-0.79481 -0.61855,0.88977,2.3289,0.52651,0.99775,-1.974,0.39356,2.189,0.88075,-2.0444,-0.20035,0.15565,1.0305,-0.76806,0.58879 3.4397,0.54288,-2.8698,-1.3706,0.058708,-0.14789,0.57126,0.72163,1.6825,0.71324,1.6965,-0.44891,-1.2913,-1.1055,0.01649 -0.041567,-2.2408,2.7267,0.52353,1.9769,2.4979,2.3981,-1.429,0.044716,-1.1682,-0.54358,-0.28125,0.88093,0.44515,-0.064011 2.802,2.5488,-0.0056944,-0.62523,-0.21226,-0.30776,-0.53321,-1.324,1.2214,-0.46186,-1.1891,0.16857,-0.72144,0.14661,-1.9462 -3.6581,0.20798,0.21415,-1.4407,0.27416,0.80103,0.66952,-1.9237,-0.55967,-0.034904,0.43055,-0.51201,0.60338,-0.50493,-0.47128 4.325,-0.49926,-0.63719,-3.0741,1.1449,-0.78668,0.42705,2.343,-0.2203,1.7786,2.1249,0.049034,-1.3832,-0.031815,1.5125 -0.60737,0.18181,1.6756,0.92773,0.3208,-0.87377,0.060444,1.9931,1.7546,-1.6063,0.029457,0.077963,0.61958,-0.77465,1.095 -1.6998,1.8189,-0.015472,-0.05158,-1.4428,1.9163,-0.33449,0.70704,0.29806,-0.020337,1.6712,-0.26949,1.0256,-0.53855,0.056769 -1.6275,2.3764,2.4564,-0.90835,0.81775,1.1043,0.75782,0.70033,-0.4195,-1.3925,0.49163,-0.80531,0.4815,-1.6465,1.2439 2.6067,0.30758,-2.4386,-3.5234,0.47918,0.65469,1.9879,1.5622,0.34965,-0.28918,1.5915,1.6205,0.28138,-1.8215,0.99882 2.4859,1.9907,0.83428,-0.12621,0.63823,0.075104,-1.961,-1.0291,1.2667,1.2405,0.64236,0.68561,0.13176,0.18762,-0.13661 -1.9555,1.6405,-2.4602,1.3852,0.31859,1.1054,0.58233,1.8959,0.29632,0.72878,-0.95833,0.2835,-0.46535,-0.3832,0.38396 4.736,0.6864,1.9496,0.10726,2.2665,1.0939,1.3437,-1.0243,-1.1406,-1.4007,-1.2093,0.90812,-1.2192,0.18549,-0.64177 2.5168,2.0079,-0.51316,-0.24284,2.0986,-0.85558,-1.1081,-1.6867,0.16025,2.4364,1.5843,-0.38508,-0.44818,-0.45062,0.26915 -1.8506,0.98403,2.0644,-1.587,0.15002,0.65055,0.70025,0.49277,0.081137,-2.0245,1.2289,-1.3124,1.6365,-0.87581,1.1549 -3.3822,0.25198,2.0877,-1.9175,0.21727,-1.1165,0.43455,0.33658,0.26535,-0.49501,0.24149,-1.4236,0.96035,-1.1257,0.37706 -0.55857,2.0564,2.1577,-1.1731,-0.039583,0.2942,0.23655,0.58727,0.85386,-2.0689,-0.0060555,0.29105,1.6911,-1.37,1.5201 1.8055,0.1927,2.0116,-0.81444,0.96935,-0.68164,-0.73069,1.5914,2.1488,-0.64244,-0.45637,1.5437,1.3619,-0.59103,0.83524 -0.43818,-0.020055,0.0048766,2.2687,1.3454,0.19613,-1.9035,-1.0685,-0.71912,-2.6502,0.82876,0.54748,-1.0958,1.1175,-0.65363 0.22947,0.70809,-1.0395,2.0132,3.1861,-0.63232,-1.3537,-0.69288,1.0714,-0.39428,0.50875,-0.99507,-0.22449,-0.42179,0.64689 -3.737,-1.1058,-2.6405,-2.3613,1.2546,-1.312,-0.30977,-0.30775,-0.43417,-2.155,-1.7007,0.16201,-1.1078,0.057775,0.3595 -4.3448,0.38902,-0.66429,-1.4521,0.5638,-0.26684,1.2385,0.41611,0.39089,-1.2601,0.66826,-0.45752,-0.62641,-0.19481,-1.0035 3.732,-1.2911,-1.6789,-1.4648,0.89972,1.4,1.3468,-0.66419,1.6109,-0.52395,1.3935,1.7402,-0.9538,0.57879,-0.7511 2.4882,1.324,1.5389,-0.26812,2.09,-1.0919,-0.9349,0.045697,1.4025,-0.023192,-1.2952,0.28371,-0.10901,-2.0492,-1.5177 -4.151,0.28183,-1.3748,-1.1163,0.64773,-1.3058,1.3954,0.12732,0.87171,-0.073803,-0.088599,-0.4079,-0.18487,0.63543,-1.2096 -4.3336,-0.062345,-2.2226,-1.7877,1.3428,-0.36209,0.55067,-0.3426,-0.43609,-1.8667,-0.46685,-0.83287,-0.46971,-0.0045724,-0.42967 -2.9882,-0.66774,-3.349,-1.77,0.13607,-1.2556,-0.66783,0.026541,-0.72069,-2.0391,-1.7226,0.76732,-0.90325,-0.20677,0.57211 4.5537,-0.94119,-0.97601,-1.8784,1.5484,-0.54872,2.7364,-0.22538,0.47234,1.6703,0.73129,1.8632,-2.1814,-1.325,0.81692 2.1627,1.2782,-0.51525,0.28545,0.56624,0.28513,-1.1432,-1.316,1.4314,0.38123,0.056202,-0.19501,-0.17166,-0.14875,0.71304 -4.2151,0.15057,-2.0321,-1.7223,1.272,-0.40712,0.16164,-0.55732,-0.45583,-0.98222,-0.034607,0.1711,-0.42595,-0.0083396,-0.88684 -4.0624,-0.75192,-0.80541,-1.3493,1.5445,-2.8768,-0.054672,0.70805,-1.1631,-0.3121,-0.92923,-1.3501,-0.052183,-0.19393,0.16615 3.8918,-0.11017,1.1609,0.27341,2.1677,0.93072,-0.29013,0.044259,0.9173,0.72894,-1.5057,0.99131,0.28612,1.4809,-0.80146 -3.4961,0.87355,-0.20794,-0.83229,0.057714,-0.59288,1.1554,1.3039,0.76567,-1.1561,0.52393,-1.1956,-0.7646,0.13481,-0.9264 -1.9388,3.016,-0.99118,0.75565,-0.69408,1.2262,-0.047341,0.54991,-0.70228,-0.069953,-0.43334,1.2834,0.82703,0.7266,-0.48771 2.2343,2.2578,-1.6137,-1.5893,-0.446,-0.20753,0.14226,-0.33154,-0.4753,2.4353,0.57169,-0.34741,0.6674,-1.3147,0.52333 1.4342,3.3728,1.4085,-1.6989,-0.75337,-0.059547,-0.71612,1.0037,-1.0149,-1.5427,-0.81842,-0.37704,-1.5371,-1.5839,0.088825 0.32205,2.7204,1.3445,0.75392,1.2295,-1.0636,-1.3295,0.46025,-0.20131,1.3906,-1.4522,0.27258,-0.39346,-1.7141,0.33683 -3.3759,0.55438,-3.9652,-0.95854,2.0292,-0.082503,0.020865,0.45505,-0.86106,-0.58758,-1.3682,0.38784,0.030556,-0.40629,0.028681 3.837,-0.19242,-1.7689,-2.1078,3.1724,1.3862,3.0949,-0.34036,-0.95242,-0.27929,1.0772,0.20418,-1.2263,-1.1179,-0.083389 -2.0865,-2.013,1.6674,-0.42215,0.61647,-0.074054,-0.41028,0.96936,1.6435,0.79549,0.19132,-1.2245,0.83191,1.0055,-0.23285 -4.0188,0.60554,-2.2779,-1.3192,0.88057,-0.010194,1.5599,0.44542,-0.50175,-1.4746,-0.6165,-1.9649,-0.21403,-0.56967,-0.51839 3.5264,1.5911,-0.68806,-0.70195,0.42491,0.12192,-0.23856,-0.71664,1.591,-0.353,-0.41068,-0.27842,-1.5358,-0.40717,-2.1397 -1.1889,0.45313,-0.54315,1.6497,-0.98389,1.0659,0.17925,0.19849,2.195,-0.16818,0.61507,0.33626,0.11284,-0.42563,0.54206 1.462,1.759,-1.3192,1.2439,1.5651,0.6888,-1.4224,-1.343,0.6721,1.8161,1.3654,-0.91922,0.015547,0.1119,0.0869 -2.7261,0.24901,-0.52702,0.38695,-0.30694,-2.0948,1.5235,0.82404,0.97998,0.5247,0.12741,-0.54377,-0.37236,-1.0749,0.45799 1.8476,1.9409,-1.4162,1.2507,0.038969,1.4612,-0.67605,-0.24642,-1.3904,1.3758,-0.18647,-0.73763,-0.27712,0.75184,0.32065 -0.68476,3.0942,0.069411,0.58118,-0.95533,0.62274,-1.1804,-0.47646,0.47325,-0.51399,0.17604,1.6518,0.41645,0.95996,-0.50988 -1.8723,-0.42665,1.6921,1.5416,0.74879,0.37975,1.8637,-1.4528,1.1998,0.24115,0.76916,0.57506,-0.037642,-0.26374,0.056573 -2.2726,0.78328,-2.6099,-1.515,1.7863,0.29632,-0.34788,0.035,-0.76987,0.79144,-0.072344,1.7669,1.3614,1.3154,0.85572 -1.12,2.0931,0.23822,2.6258,0.45606,0.21591,0.038156,-0.0040747,0.84144,0.5809,-0.10242,1.4777,-0.62423,-0.52471,0.77317 4.722,-0.48059,-1.0751,-0.74279,1.4095,0.54378,1.0878,-1.1827,0.70585,-0.78369,0.99358,-1.0677,-1.908,0.35578,-0.10769 -1.1837,1.7164,2.1231,1.2653,2.2989,-2.8846,-0.29937,1.6429,0.085203,-1.5348,-0.53281,0.38298,-0.28949,-0.25592,0.11622 -3.8281,2.2429,-0.73417,-0.33921,0.21992,-0.42962,1.9745,2.5134,-0.23635,-0.63095,-0.23574,0.12808,-0.30515,-0.67854,0.42085 -0.53911,1.6744,-0.053083,2.5857,0.3753,0.8595,0.011616,-0.86756,0.44477,0.22073,-0.48044,1.0735,-0.03692,-1.3591,0.90026 -3.2611,3.3559,0.089381,-0.059473,0.47114,1.3663,0.92156,1.7987,-1.1338,0.2266,0.17501,1.0784,0.52409,0.1021,0.4452 3.0844,0.2069,-1.9869,0.054179,2.1225,1.2025,1.6116,-1.2961,0.92533,0.54119,-0.0067971,-0.019712,-0.11417,-1.3039,-0.33268 -2.6083,1.5985,2.0917,-0.050882,-0.22835,-0.62619,1.0271,-0.11651,0.71045,0.2097,0.64044,1.6285,0.11693,-0.34547,0.43766 0.70056,1.2742,-1.0332,2.0101,-0.97357,0.62518,-0.27957,-1.0741,1.5639,-0.0241,-0.67364,1.0197,-0.18157,0.26009,-0.01407 0.51874,1.9117,0.96396,1.0811,2.1336,-0.64818,-0.74633,0.50247,0.93035,-0.10892,0.45261,1.2065,0.39964,-0.90256,0.79225 -2.6898,2.0689,-1.0871,0.62926,0.14082,0.2386,1.4619,1.2528,0.70605,1.3386,-0.3661,0.92343,0.47373,0.11316,0.64406 -4.7928,0.047067,-1.6225,-1.6236,1.5984,-0.18546,1.3947,-0.078554,-0.29847,-1.4463,-0.1991,-0.942,0.013178,-0.12148,-0.69176 1.232,2.7754,-1.1932,-1.7284,-0.15509,0.44442,-1.4532,-0.45791,0.80448,0.2857,-0.054714,-0.71792,1.3001,-1.2518,-0.41181 -3.6535,2.2617,-1.401,0.042128,0.25631,0.94957,1.9335,2.1172,-0.92145,-0.49662,-0.28679,-0.032923,-0.0011215,-0.34222,0.20642 -1.2851,2.8336,3.3688,-0.87717,-0.21958,0.30878,0.21489,-0.31022,-0.45491,0.18294,0.51325,0.58708,-0.88168,-0.049566,0.48347 -0.47033,0.5017,0.23272,2.0053,-0.15818,1.6409,-0.025122,-0.99526,-0.86994,-0.8397,0.22422,0.85112,1.0202,0.18331,0.50948 -3.6531,-0.037914,2.7673,-1.4937,0.77747,-1.7141,0.80989,1.7376,-0.4311,-1.2033,0.096603,-1.2931,-0.54823,-1.163,1.0488 4.23,1.2214,-0.86634,0.016054,1.1424,0.41197,-0.20133,-1.8476,0.4016,0.04947,-0.23434,-1.4287,-1.5783,-1.1176,-0.70495 4.9377,-0.80307,-1.0692,-1.0552,1.6825,1.259,0.1747,0.013062,0.76323,-0.080019,0.32654,-1.1126,-1.6727,-0.98385,-0.36598 -5.0698,-0.13903,-0.35247,-2.0536,2.342,-1.7375,0.84176,0.073036,-0.50192,-0.35424,-0.13596,-0.31148,-0.62836,0.038314,-0.38053 -2.5948,0.78315,-3.4006,-0.10616,0.33606,1.709,0.74974,-0.63257,0.14466,0.34506,-1.2269,-0.2207,-0.024244,0.36744,-0.9317 2.0201,2.0557,-1.7812,-2.0766,0.2008,1.2649,-0.91971,-0.15667,-0.22965,0.5083,0.87614,-1.123,1.0428,-1.8781,0.38941 -2.4682,-3.4358,2.0116,0.7559,2.2929,0.89601,0.085969,-0.64595,0.68213,-1.0364,0.32863,-1.5016,-0.2286,1.015,0.58995 -2.8639,1.451,1.6048,1.3297,1.7205,-0.66362,1.4165,1.3453,-0.17556,0.59959,0.58223,0.34414,-0.38884,0.26554,0.08723 -3.4068,-2.1937,1.2469,0.62147,2.3252,-1.6675,0.96008,-0.11187,0.39523,-0.96081,0.31677,-1.3532,-1.5056,-0.30437,0.36287 -0.4911,-2.0072,2.9287,1.6891,2.3827,0.44844,0.73896,-1.0981,-0.91744,-1.6473,-1.066,-0.017908,0.83269,-0.18081,-0.47877 -1.6621,-4.0178,2.351,1.4658,2.5285,0.8115,0.56253,1.2705,-0.29154,-1.5912,-0.18905,-2.0274,0.096991,0.79446,0.58199 -4.9496,-0.96752,-0.45203,-2.0795,1.804,-1.0974,0.51041,-0.085058,-0.93289,-1.9635,-0.70145,-0.71952,-0.62107,-0.2357,-0.10631 3.7815,0.6128,-0.38049,-0.99039,1.8375,-0.22688,-0.16528,-1.3552,1.9367,-0.32437,-0.06909,-0.85932,-1.5085,-1.1302,-0.25048 -1.9374,0.83501,-2.5266,0.9463,-0.91859,-0.039216,0.7332,0.93493,1.322,0.05289,-0.34153,-0.049818,-0.6708,0.1603,-0.3819 2.2614,2.1851,-0.50397,-0.96478,-0.73482,0.72556,-1.1709,-0.32649,-0.12761,-1.6027,-0.085694,-0.24793,0.76361,-1.3485,-1.05 -2.7676,0.080137,2.5573,-1.1261,-0.075717,0.57351,0.52713,-0.67097,1.6411,-0.01923,1.0497,-0.20206,-0.21025,-0.20555,0.5043 0.44347,-3.4304,3.255,1.0254,2.4581,2.628,1.6473,1.574,-1.3984,-1.3613,-1.4776,-0.67922,1.8989,0.49813,0.5108 -1.285,-3.5621,3.4022,1.0618,2.7616,0.43441,1.4235,-0.70872,0.12198,-1.1093,-0.38687,-0.71501,0.57788,-0.91093,0.46245 -0.011953,1.5138,-1.7505,2.2269,1.3483,-0.23362,-0.35496,0.98912,1.4035,-1.3466,-0.89168,-0.20633,-0.098425,1.1175,0.10977 -3.2651,-0.62751,0.64407,-2.6142,1.0258,0.58818,0.67315,-2.9171,-1.1596,-1.0601,-0.90822,-0.36872,-0.15004,-0.19506,0.025075 -0.77856,0.98112,3.212,1.7914,1.1989,-0.90512,0.38342,0.10845,1.44,-0.37659,-0.070117,0.95037,-0.31579,-1.197,1.2075 -0.7597,3.4525,0.51866,0.87243,0.039559,-0.11028,-1.2747,-0.080413,0.64796,-0.030187,-0.1224,1.4891,0.29351,0.6438,-0.65957 1.652,-2.3157,3.8475,1.3869,2.507,2.2682,1.5439,0.7475,-0.23633,-0.2177,-1.0849,0.29646,1.3105,1.3357,0.1594 -0.77743,-3.7346,2.4093,1.3513,2.3529,1.7771,0.99106,0.53344,-0.15194,-0.66349,-0.67733,-1.6613,1.5831,1.0889,0.57959 1.0774,1.7269,-1.0806,1.3172,1.6615,0.20437,-1.0958,-1.2312,-0.16805,2.4877,0.18208,-0.80259,-0.36975,-0.51747,-0.11833 4.7648,-2.5395,-0.91196,-1.4481,1.7004,1.9373,2.4872,0.26858,0.60608,1.0214,0.5533,1.5562,-2.3109,0.26426,0.87735 -1.4184,-2.5179,3.5876,1.3517,2.075,0.54122,0.8765,-0.789,0.77663,-0.39884,-0.0012357,-0.2969,-0.20556,-0.30358,0.64494 -2.552,-3.2156,0.76229,-1.1138,1.0657,-1.6015,-1.3052,0.76403,0.77016,0.52303,-1.3841,-1.38,-0.10511,0.40318,0.92575 -2.8918,0.18251,1.4965,-1.0215,0.10192,-0.40959,0.5898,-0.025628,1.6944,-0.63688,0.54657,-1.0785,1.4362,-0.025118,0.29315 -1.0506,3.8779,0.12351,0.24987,0.63318,0.35622,-1.2676,1.5454,0.012905,-0.1896,0.39979,1.3253,-0.13057,0.4771,-0.9822 -0.22329,-3.4506,1.1025,-1.2659,1.5225,0.36521,-0.7419,0.24428,0.56158,1.5707,-3.3207,0.29035,0.12154,0.65597,0.52194 2.889,1.7169,-1.3136,0.30245,0.7484,-0.3613,-0.47135,-1.4295,-0.36671,2.7214,0.32389,-0.85889,-0.022613,-1.169,-0.052445 -1.9896,-2.0227,-1.8141,-0.88161,1.4229,0.12665,-1.6677,1.8989,-1.2701,-1.021,-1.0014,0.85322,-0.36788,0.493,2.0993 -4.062,-0.2443,-0.42345,-2.2599,1.1594,0.41447,0.1685,-1.8507,-1.1761,-0.22448,0.070853,0.14539,-0.12126,-0.96273,-0.25218 -1.3048,1.3298,1.1846,1.1488,-0.63977,-0.17555,0.57807,-0.34456,1.6288,-0.087735,-0.32238,1.7015,0.95392,-0.29256,0.32207 -1.0634,-3.7095,-1.4789,1.4387,2.3784,-1.2486,-1.3044,0.47898,-1.3313,-1.0282,-1.4352,0.13498,-0.53187,-1.2265,2.116 -2.4882,-2.4656,-0.60537,-1.636,1.0877,-0.25966,-2.7645,0.64748,-0.36677,-0.38925,-1.6826,1.0419,0.50973,0.53197,2.6522 -0.95688,-4.7461,-0.44463,0.66681,2.8945,0.15866,-0.96406,0.76674,-2.1915,-0.92379,-2.2731,-0.86082,1.2727,0.45606,1.382 -1.4953,-2.7601,2.5846,-1.0723,0.87279,-0.47142,0.99311,0.57284,1.4946,-0.44754,-0.93161,-0.73262,1.374,-0.59523,-0.60538 2.9826,0.68779,-2.1425,-2.4527,0.31983,-0.50167,1.3812,0.58128,1.6468,1.143,1.8267,1.0602,-1.7516,-0.31794,0.84938 4.1192,-1.4784,-0.7586,-2.2418,1.9416,0.62222,2.8138,1.362,0.61794,1.8058,0.39481,3.1048,-1.7304,-0.52307,0.013215 0.18041,0.64829,-1.2409,2.2769,2.2613,-2.1001,-0.97583,0.22438,-0.66467,-2.8867,-0.63276,-0.90493,-0.068027,-0.31646,0.12206 -1.883,3.535,-0.12079,0.29561,0.38706,-0.16308,-0.61461,1.4229,-0.55078,-1.2011,-0.23498,0.27507,0.82405,0.4317,-0.030877 -0.98552,-2.4293,0.49455,-1.8945,1.2445,-0.032381,-2.2215,-0.4105,-0.046741,0.1404,-1.8549,2.0588,0.05623,0.52429,2.7279 1.9729,0.3353,1.4134,1.3103,2.2688,1.3272,-1.3598,-2.472,-0.9072,-0.67474,0.74075,-0.59387,-0.0089913,-0.12652,0.28754 -0.90215,-2.551,3.049,-1.0161,1.318,-0.50073,0.99374,0.28222,1.5175,0.014484,-0.97226,-0.90943,1.1817,-1.1143,-0.63218 -1.4234,-4.6242,1.5405,0.75666,2.8723,-0.3204,-0.01271,1.4333,-0.95496,-0.50433,-1.2866,-2.0986,0.35879,0.97212,0.63201 -0.67279,-3.3753,3.5188,-2.4313,2.2376,-1.0048,0.74191,0.48768,0.36533,0.48207,-1.7995,-0.76188,0.059507,-0.33304,-0.54101 -2.8509,-1.5397,-1.8357,-1.1987,1.2884,-1.089,-2.0814,0.72316,-0.16443,-1.9005,-0.88536,1.675,-0.70189,0.046224,2.1697 -2.7535,-1.4452,-2.4985,-0.17165,0.67653,0.15697,-0.71496,-0.66474,1.6406,-0.88228,-0.55767,0.039758,-1.2024,1.1219,-0.27303 2.3409,0.75348,-2.3865,0.48918,-0.81795,0.16357,0.09421,-0.41138,1.6748,-0.36394,0.31263,-0.80309,-0.2774,-0.18691,-1.171 0.24812,1.7498,1.6344,-0.79681,0.13118,1.4385,0.80843,0.35492,1.1127,-0.97513,0.33769,-0.16504,1.6728,-0.84326,1.4201 -1.6416,-3.5136,-0.39868,0.58221,2.4539,-0.50372,-2.252,0.055469,0.51009,0.089978,-1.6592,1.0062,-0.43103,0.8837,2.4571 -0.093832,0.89838,2.6616,-1.2708,-1.681,0.54638,1.2304,-0.18348,1.0038,-0.31612,-1.3054,1.1581,-1.1792,-1.1582,0.1278 -1.4592,0.47134,2.41,-2.3556,-0.85003,0.86046,1.1072,-0.97621,1.2886,0.47844,0.21571,-0.76808,-0.98689,-0.40578,0.56863 -0.36625,2.8284,-0.3947,0.94724,0.46997,0.14075,-1.8575,0.24706,1.1623,0.15951,0.13784,0.74193,0.021342,0.016075,-0.38659 -0.94606,-1.4064,3.4235,0.62097,0.42591,0.38504,0.59525,1.0425,2.0353,0.69681,-0.68054,-0.47765,0.063223,-0.4608,1.5194 -2.0101,-2.0996,2.9592,-1.0822,0.24148,0.18216,-0.15213,0.66448,2.1274,0.54521,-0.55252,-1.5679,0.64796,0.42883,0.6635 -3.0458,-0.65691,2.2638,-2.5706,-0.020817,0.98455,0.059105,-1.0199,0.97015,-0.12737,0.49723,-0.68287,0.38765,0.26482,0.43241 -0.16752,-1.5052,3.7547,-3.0877,-0.31756,1.0623,0.86307,0.25235,0.95998,0.89106,-1.0407,-0.96167,-0.465,1.0121,-0.10898 -1.4262,0.65757,0.54686,-1.2082,-0.98734,0.57036,0.99293,1.5286,0.12023,0.86313,-0.35529,0.50702,0.30349,-1.253,1.5712 -2.6688,-2.9783,-0.4107,-0.61666,1.6546,-2.1831,-1.6598,-0.94747,0.97405,-0.3323,-1.5111,1.1909,-0.017777,-0.032092,0.80695 0.37669,2.5035,0.12219,1.556,1.3578,0.16222,-1.3478,-1.4174,0.020277,0.70486,-0.13454,-0.052121,-0.47616,0.010485,-0.41062 -2.5022,-2.3652,-1.8396,1.2456,0.99807,-0.98073,0.13771,-0.74186,0.93427,-0.38822,-0.44,-1.1307,-0.85724,-0.55582,0.060437 -1.3764,-1.5321,3.5961,-1.3345,-0.0040897,0.65714,0.53681,0.92966,1.9353,0.77005,-0.30461,-0.89257,0.45524,0.38345,0.92951 1.918,-0.29809,0.6135,0.80499,1.164,3.3504,1.9455,1.2804,-2.1614,-1.398,-1.4377,0.45094,-0.45215,1.9737,-0.29554 -2.758,-2.8897,-1.2546,-0.9876,0.86246,-0.74403,-2.4481,1.1901,0.62098,-0.12458,-1.6681,-0.14173,-0.91016,1.074,1.8718 2.642,-0.17826,0.27288,0.89384,-0.69602,1.9322,-1.3759,-0.45173,1.1996,-0.69495,-1.3263,1.0046,-0.76664,-1.1846,-1.9928 -0.74817,-0.83536,-1.352,-0.89022,0.70019,2.6983,-0.32918,-0.73274,-0.92364,-0.84623,-0.36881,0.30305,-0.85705,0.84871,0.77808 -1.1651,-2.6345,0.73855,-2.0882,-1.0353,1.2299,-1.5991,-0.33467,-2.685,0.064049,-0.41644,-0.060647,-1.0938,4.3914,0.38358 -2.8987,-1.2064,2.3764,-2.0931,-0.12133,0.39054,-0.13791,-0.11628,1.6238,0.07558,0.029233,-0.96348,0.75859,-0.36611,0.59108 -0.80827,0.4444,2.8191,-2.7179,-0.15448,1.3194,1.2105,0.072381,0.092311,0.15955,0.18405,-0.8043,-0.84555,0.91477,-0.1935 3.0482,0.34433,-1.4415,-0.97603,1.0945,-0.39368,0.75104,-0.82842,-0.82495,2.7085,0.78549,-0.86195,-1.6617,-1.222,1.5526 0.36408,-0.13197,4.7686,-0.60414,0.6367,-0.40974,0.86269,-0.79165,0.48584,-0.1271,-0.90582,0.59339,-1.2228,0.076665,-0.89078 1.6883,-0.11449,0.12078,1.6029,2.069,0.35433,-0.96341,-1.4188,1.7298,0.042775,-0.68499,-0.47309,1.1155,-0.96444,-0.093295 -4.0538,-1.3336,-0.70683,-1.1044,1.288,-2.3173,0.51758,0.16823,0.82897,-0.54033,-0.19522,-0.91898,-1.0775,0.31313,-0.364 0.78271,0.021052,0.32046,2.7735,0.9488,1.2764,-0.089968,0.23556,0.63374,-0.40011,-2.4983,0.91848,0.95597,-0.84988,-0.1696 3.3256,-1.6689,-2.2572,0.4446,1.0821,2.1681,2.4916,-0.22261,0.33269,0.54863,-0.050523,0.84913,-0.48364,1.2866,-0.19969 3.2255,-0.9349,-1.2435,-0.35621,2.2038,2.8807,1.0034,-0.95349,-0.56127,-2.4811,0.13769,0.70941,0.73761,1.5799,-0.72422 2.3989,-0.1337,-3.9148,0.20926,0.69698,2.1082,3.1338,0.24196,-0.32077,-0.49274,0.70043,1.0898,0.03533,0.40494,0.001302 -1.551,1.1002,0.5332,2.2224,0.40558,-0.42029,0.67659,1.5995,1.8215,0.23421,-0.48489,-0.20385,-0.1274,-0.68716,1.7202 0.5436,0.38033,1.1837,2.9437,1.1618,1.5079,-0.33992,-1.2012,0.61688,-0.5919,-1.2925,0.76668,0.5552,0.20934,0.59286 2.3961,1.4192,0.9948,0.1187,0.91521,-0.020368,-0.95595,-0.17058,1.1114,0.50739,-1.6432,0.75668,-0.91047,-1.1759,-0.94907 -0.80935,2.7562,0.62153,-0.20926,-1.4408,1.9946,0.25871,-0.81261,-2.0546,-0.081019,0.1431,-0.58789,-1.102,1.0166,-0.22902 2.8103,1.979,0.082732,0.35908,2.7447,0.29274,-0.69186,-1.8365,-0.46528,0.9317,-0.037488,1.2596,0.42145,-0.26622,-0.16705 1.5964,1.2951,2.9612,-1.6947,3.1871,-1.4061,-0.29357,1.1776,-2.8831,0.54367,1.3239,-1.3759,-2.2554,-0.0050142,0.74503 -0.80592,1.8089,-1.2787,1.2681,0.13015,-0.036276,-1.4313,1.2458,2.3709,-0.51787,-0.58883,0.60056,0.59345,1.462,-0.30666 2.7393,0.044338,-2.2556,-2.389,-1.3238,0.61348,1.5631,1.8232,-0.73536,0.71817,0.18291,1.3345,-0.18261,-0.83652,-1.0473 -1.4256,1.1987,1.2727,-0.18574,-1.217,0.71444,0.96386,-0.2119,1.58,0.72367,-0.58018,0.47886,0.46787,-0.89106,1.0211 0.016777,2.3873,0.36909,2.2259,1.9313,-0.53993,-0.51245,0.50213,0.46851,0.21805,-0.82858,0.97913,0.95482,-0.48725,-0.4624 -0.89879,2.2908,0.25335,1.6283,1.344,0.84468,-1.5564,0.78709,0.90107,0.18576,0.40594,0.14065,-0.16907,1.9576,-0.81261 -2.5508,1.1626,-1.5004,2.1517,0.96519,0.25302,1.5379,1.3859,-0.1846,-0.093755,-0.52112,-0.24354,-1.1602,-0.34812,0.88852 -1.0487,0.92967,-0.54368,3.0109,1.4765,-0.88436,0.13636,1.0773,1.4619,-0.77067,-0.94325,0.35934,-0.52978,0.89159,0.83417 -0.41988,-1.382,1.7227,0.19428,0.093204,0.71459,1.5554,-0.59076,1.4912,1.5985,-1.1302,-0.76882,-0.38819,-2.4037,0.5259 -1.8605,1.6692,-0.69344,0.26506,-0.75343,2.4173,2.4206,-0.74766,-0.75117,0.44296,-0.34295,-1.2412,-1.3148,0.015018,-0.14495 3.828,-1.2524,-2.4522,0.53667,1.5783,2.8879,1.3237,-0.1822,-0.76042,-0.23396,0.46085,-0.017694,-0.11318,2.3866,-1.0782 -1.1453,1.2861,2.4497,1.8349,0.25951,-0.36513,-0.10402,-0.3687,0.86554,0.15432,0.60832,1.6994,-1.1159,0.62395,0.6866 -2.4835,2.6034,-0.88949,0.76658,-0.61201,1.1059,0.94965,1.2602,-0.31275,1.184,0.16481,1.4587,-0.49393,0.40672,-0.43277 -4.0552,-0.59579,-0.29582,-2.0703,1.4871,-1.6463,0.018823,-1.2347,0.19287,-0.26413,-0.2292,-0.088701,0.7623,0.19997,0.13137 -3.2773,-0.87909,1.8617,-2.5179,1.0697,0.57104,0.01888,-1.1642,-0.72514,-1.2054,0.7174,-0.877,1.0543,1.4039,-0.21618 2.1567,0.99022,-2.0679,-1.1694,-1.4049,2.4147,-0.16638,0.61528,-0.64316,-0.25096,-0.0028409,0.58154,0.16121,-0.30275,0.26356 -2.331,-1.2918,0.17678,-1.4183,1.755,-1.5399,-1.4274,-0.94117,-0.1946,0.029668,-0.97281,1.1759,0.46645,1.5574,1.8304 -1.5296,-4.1089,2.7181,-1.5804,2.9493,-1.755,-0.7379,1.5534,-1.8786,-0.36452,-1.3691,-0.8909,0.4779,0.9693,0.41793 -1.6639,-5.3465,0.64891,0.55369,2.8956,-0.3174,-1.2782,0.56084,-0.57947,-0.44508,-1.8274,-1.2836,0.092957,0.1672,1.0221 -3.1433,0.47804,-3.3051,-0.06104,0.40437,1.4703,0.75662,1.0159,-0.45218,0.27766,-0.39243,-0.17658,0.12498,-0.26523,-0.47519 0.8801,2.9993,-0.25702,0.33096,-0.77083,-0.025617,0.19206,-0.33263,-0.79839,1.106,-0.91252,-0.87273,-2.2847,0.5922,0.55553 -0.72529,1.7012,2.7962,0.45961,-0.64379,0.57413,-1.257,-0.11549,0.77824,-0.29642,-0.66457,1.4275,-0.20462,1.229,0.50153 1.3935,2.1217,-1.0623,-0.029982,1.5449,-0.39655,-1.304,-0.8916,0.54479,1.3377,1.5696,-0.84725,-0.19812,-0.20737,-0.15234 -2.2422,-0.32996,0.70945,0.041052,1.0899,1.1089,0.083299,0.20638,1.2772,1.2846,1.3036,-0.80277,-0.1277,1.1689,-0.56138 -4.5042,-1.6873,0.94321,-2.5072,1.3318,-0.40945,-0.80768,0.064461,-0.37489,-1.499,-0.15564,-0.61977,-0.25301,0.70766,-0.074438 -3.9372,-0.13765,-2.6734,-1.0532,2.8425,-0.93831,-0.62153,-0.5638,-1.3832,-1.4213,-1.1469,0.61349,-0.17476,0.44393,1.2211 -2.7905,1.3373,-2.5794,0.19633,0.11908,1.8415,1.9643,0.50996,0.47803,0.59207,-0.31693,-0.40504,0.17203,-1.1307,-0.54734 -2.1607,-4.1449,2.074,-0.79854,2.2605,-1.6245,-1.4732,0.71683,-0.19628,-0.15132,-1.5138,-0.69122,0.10532,0.39519,0.6464 -3.2345,-3.0112,2.1722,-2.4433,2.2335,-1.3255,-1.5377,0.88474,-0.90377,-0.71948,-0.95812,-0.59077,-0.097987,1.0712,0.75215 1.2203,0.79145,2.5281,1.6156,2.4851,-1.3678,-0.70781,0.51942,-0.048052,-1.4247,-0.88231,0.83691,0.35975,-2.0627,0.48911 -3.1862,2.1715,0.83068,-0.12449,0.062159,-0.93837,1.0573,2.3443,0.53585,-2.0465,0.30285,0.14274,-0.73399,-0.79555,0.61047 -0.10997,-0.28815,0.73751,-2.9152,-0.3037,3.0032,-0.20066,0.87666,-2.0406,-0.36202,-0.61641,-0.46637,0.52188,2.9347,-0.2036 0.019309,3.7763,-0.074114,-1.1257,-0.31894,0.016208,0.50355,-0.034854,-0.85059,1.5967,-1.6927,0.51515,-0.69495,-0.36921,0.10813 -1.5696,-1.9934,3.8049,-2.2625,0.67624,-0.5341,0.463,-0.12596,-0.64093,-0.48716,-0.26328,-0.079083,1.0667,0.54586,-1.3285 -2.3539,-3.4701,-0.042863,-1.3773,1.4059,-2.1051,-2.1701,0.052085,0.061912,-0.047531,-2.2613,0.60287,0.12818,-0.74186,1.4514 0.65166,2.8878,-1.4546,-0.75255,-0.49079,0.19934,-1.6311,-0.36658,0.8392,1.2704,0.069395,-0.50683,0.096603,-0.52128,-0.52774 3.0377,-1.1039,-1.7469,-0.32735,0.84109,1.7299,2.0861,-2.2703,-0.059477,-0.80701,0.62268,1.8127,-0.089208,0.40352,0.36066 -2.0186,-0.62616,-1.4892,-0.7627,2.3124,0.78397,-0.99433,-1.5468,-0.77802,-1.3539,-0.7005,2.8916,-0.8083,0.31597,1.2069 -2.9997,-2.2047,-0.096048,-2.8245,2.1726,0.61011,-1.8736,-1.8158,-1.6304,-0.89225,-1.8253,1.2859,-0.34082,0.63721,1.7221 -0.2959,2.7062,-0.55486,1.0423,-0.70821,0.72211,-0.08763,0.18444,0.72239,1.235,-1.138,1.2356,0.83614,-0.61379,-0.099543 -2.3742,-2.209,-0.62841,-1.9596,2.4482,0.87031,-1.6785,-0.79677,-1.5518,-1.2863,-1.8702,1.2111,-0.3861,0.010678,2.2925 -1.0818,3.1757,-0.27008,1.3247,0.53678,-0.33266,-1.236,1.3418,-0.27289,0.68558,-0.1728,0.56622,0.51264,-0.31337,-0.54169 -3.7086,-1.6771,-0.75633,-2.2935,1.1972,-0.21524,-1.7562,-0.9993,0.28687,-0.94917,-0.98866,0.38738,0.75758,0.43901,1.257 -1.0593,-3.8194,1.1363,-2.931,1.0249,0.90525,-0.031275,-0.61099,0.75122,-0.30523,-2.5253,1.3409,0.17714,0.66432,-1.2441 -3.4934,-2.15,-0.35399,-2.4782,1.4463,-1.9054,-1.3826,0.075813,-0.16961,-0.0076765,-1.4156,-0.26568,0.096826,-0.96156,0.8939 -2.503,-1.9512,-1.0893,-1.7686,0.43261,1.3772,-2.4257,-1.7378,-0.5699,-0.58268,-1.4323,2.006,0.12439,0.74857,1.3936 -1.7913,-4.1836,2.5097,-1.9252,2.9155,-1.2358,-0.54898,0.19001,-0.21618,-0.061689,-1.9675,0.29026,0.51233,0.41987,0.24941 1.9143,2.6119,-0.032651,0.16133,-0.48841,-0.16446,-0.74099,-0.84875,1.4209,0.24578,-1.658,0.71882,-0.31008,-0.80082,-1.1186 -0.27304,3.1666,0.11035,0.81574,0.95709,-0.86566,-0.95937,0.75377,0.42162,1.0435,-1.6655,0.40343,1.574,-1.3833,-0.099576 -3.0582,-2.0823,-0.27536,-2.2092,0.5072,0.29102,-2.1213,0.49045,-0.15521,-1.4207,-0.79369,-0.37444,0.74452,0.50505,1.7432 3.1588,0.44055,-2.2666,-0.030856,0.58437,0.9985,0.75715,-1.9847,0.64056,-0.56461,0.26777,-0.43307,-0.6603,-0.77569,-0.30311 -1.0324,3.0448,-1.3844,1.7978,-0.85161,2.229,0.25074,0.69947,-1.2849,0.10869,-0.66262,0.57757,-0.77418,-0.20269,-0.62318 -3.757,-1.8895,2.3665,-2.7018,1.1707,0.64091,-0.86195,-0.52758,0.20054,-0.24637,-0.23951,-0.28537,0.056066,1.2742,0.19811 5.3032,-0.97793,-2.0126,-0.60909,1.296,1.4232,0.57911,0.10377,0.94138,-0.33176,0.91743,-0.62416,-1.9119,0.022466,-0.88385 0.54751,3.8617,-1.3309,-0.94046,0.69146,1.4109,-1.7805,-0.54051,-0.93029,-0.052321,0.80996,-0.65298,1.3848,-0.11663,-0.75452 2.9063,0.36956,1.116,1.2802,0.84581,2.8447,-0.074261,-1.0676,0.013197,-0.40285,-1.5009,-0.028152,-0.13142,1.0818,0.48603 -2.6608,-1.8547,0.2022,-2.8964,0.8602,-0.26455,-1.587,-0.52259,0.36224,-0.58166,-1.5636,0.10078,0.77723,-0.51976,1.6317 -2.9903,-0.80442,-2.1874,-1.2833,1.5773,0.28383,-1.41,-0.45133,-0.2548,-2.2007,-0.90881,2.1099,-0.05914,0.10104,1.4615 1.0344,1.8353,2.6976,1.293,1.0196,-0.77229,-1.088,-1.2407,0.80555,-0.46281,-0.0061451,0.63365,0.10081,0.63663,-0.39054 -3.6657,-0.72201,1.3886,-0.80714,-0.10345,-0.88822,0.79054,-0.37582,1.5157,-0.084679,0.51791,-0.23215,-0.15179,-0.4834,0.33895 -4.0907,0.16596,1.3147,-1.7341,1.0441,0.31325,0.92412,-1.0701,0.22242,-1.5267,0.54164,-0.51948,0.68509,0.68089,-0.42031 3.1925,1.5365,-0.83216,-1.6392,0.27717,-0.31623,-0.19294,-1.7498,1.3752,0.47993,1.0098,-1.0935,-2.0288,0.26554,0.5093 0.70056,-2.3995,4.5654,-1.1801,1.5241,0.36605,1.4755,1.2436,0.79675,0.80381,-1.4214,-0.70119,0.059496,0.16607,-0.27811 2.8176,-0.024926,-1.264,-1.7432,-0.9177,0.41902,1.1458,1.083,-2.2001,1.4993,0.50672,1.1579,1.2039,-1.32,-0.40817 -2.8839,-0.38066,-1.4287,0.087806,0.48308,-0.97589,0.97693,0.37319,2.1001,0.019263,0.13473,-1.0213,-1.4363,-0.32537,-0.17492 -2.4348,-1.8746,-0.42912,0.20001,1.1398,-1.4765,0.44492,-0.4768,2.1554,0.42884,-0.39993,-0.76651,0.055763,-0.95679,0.16538 -3.3859,-0.86859,-0.091115,0.33789,1.5989,-2.2079,1.4353,-0.29969,1.6853,0.35545,0.099733,-0.6698,-0.26544,-0.13712,0.092187 -3.0573,-1.0561,0.92401,-0.48086,1.0307,-1.4162,0.51336,-0.88117,2.3524,0.36333,-0.19351,-0.43282,0.65459,-0.070236,-0.15882 -1.7659,3.2361,-0.19457,0.6643,-0.062911,0.74922,-0.49548,0.82195,-1.2613,1.4531,-0.23445,1.3876,-0.94422,0.072697,-0.94052 0.21251,-0.13052,3.7194,0.22782,1.1375,-0.29678,0.79224,1.5506,2.011,-0.061912,-0.36753,-0.27304,0.26515,-0.96747,1.0276 1.1621,1.9368,-0.044597,1.8317,0.66161,0.31025,-1.1722,-2.1557,1.0532,0.0022108,-0.48145,0.698,-0.40596,0.30688,-0.43081 -1.0439,0.47127,3.7464,0.31195,0.54723,1.131,0.18973,0.074692,1.0192,1.1805,-0.41289,0.48764,-0.55806,0.72008,0.54973 -2.3342,2.0323,-0.61301,-0.001254,0.14107,0.47591,1.4873,0.71208,0.94474,2.2468,-0.4216,-0.10843,0.88869,-0.76631,0.27972 2.5911,-0.5828,0.82263,0.93414,1.2209,0.85607,-1.1798,0.74387,1.9208,-0.3132,-1.6465,0.9165,1.0909,0.061452,-0.87733 -1.995,0.73199,2.8647,-1.7946,0.056187,-0.73306,0.74822,0.58523,0.80772,-0.73497,0.48867,-0.8169,1.1174,-1.7091,1.1319 -0.78119,3.5736,0.26246,-0.57228,-0.60561,0.1055,-0.70304,-0.081844,-1.8707,-0.47663,0.45393,0.42202,0.54733,1.5136,-0.23746 4.4857,-1.4516,-1.8523,-0.76088,-0.48584,0.66765,0.89323,0.31384,1.2586,0.44457,0.55356,0.27435,-1.1429,1.8514,-0.97298 -0.95567,-2.4009,1.2604,-2.6615,-0.65379,1.2241,-0.6626,-2.5057,0.08521,1.1115,-1.8907,-0.17968,-1.8378,1.4873,-0.28565 -2.8414,-2.477,1.8792,-0.73178,0.99405,0.52148,-0.55265,-0.37632,2.1313,0.28416,-0.48156,-1.2559,0.3122,1.4178,0.47323 -3.3247,-1.1646,-0.65132,-0.70974,0.63778,0.57842,-0.29569,-1.7931,1.1861,0.5242,0.34948,0.22604,-0.28887,0.45881,-0.34677 -4.3873,-0.8254,0.96125,-2.1779,0.98657,0.39958,0.25006,-1.4384,-0.20265,-0.97034,0.41778,0.076782,-0.058522,0.39794,-0.53242 2.4423,1.4082,-1.1586,0.44051,-0.046034,0.69466,0.2581,-1.3658,0.075754,-1.4552,-0.74269,1.0521,0.072771,-0.25714,-1.8612 2.6573,1.9521,0.36747,-0.14169,-0.85857,0.48576,-0.60047,-0.83618,1.4301,-0.25054,-1.299,0.52808,-1.32,0.36459,-1.3196 0.12573,2.4394,3.3264,-0.048342,-0.34047,-0.76276,-0.96445,-0.58329,0.15475,-0.12714,0.0091569,1.5804,-0.63224,-0.073952,0.0096046 2.181,-0.8992,-1.001,0.78138,1.3826,3.0928,1.8745,-1.8589,-1.1454,-0.22826,-0.46385,0.81179,0.41901,0.57838,0.2286 4.6813,-1.2335,-1.7987,-1.654,-0.62187,-0.33024,1.289,0.084508,0.44507,1.0496,1.3012,0.74537,-1.0873,-0.58244,0.15 -1.3704,-0.40375,0.53651,2.4361,-0.085528,0.8245,1.4402,-0.75341,0.96849,-1.1592,0.51874,0.61642,0.50894,-0.57001,0.43389 -3.2558,1.6191,1.7144,-0.23344,-0.099187,-0.41035,1.3476,-0.40452,0.30411,0.26936,0.57662,1.5013,0.49711,0.075308,0.52161 2.7304,2.3215,-1.1466,-3.1222,0.39414,-0.025763,-0.81346,0.71755,0.66212,-0.65526,0.97097,-1.2459,-0.50315,-0.97635,-0.04218 -3.1627,0.2519,-1.1945,-0.57908,-0.0080137,1.7952,0.52961,-0.18841,0.86886,-1.0635,0.47834,-0.5409,0.59529,-0.38413,-0.39217 3.0278,0.39612,0.73481,0.99578,0.84803,1.8672,-0.73753,-0.90761,1.2853,-0.88652,-1.436,0.062596,-0.35669,-0.81351,0.053894 -0.33372,-0.90275,1.6961,1.1171,-0.11288,0.66664,0.0053882,0.84415,2.5912,-0.061816,0.38761,-0.8714,1.0431,0.30409,0.94033 0.81035,2.1279,0.19835,-0.54999,-1.5345,2.3299,0.27745,0.5313,-0.59797,-1.1439,0.21216,-0.61366,-0.7331,-0.72789,1.5209 -0.99474,1.3027,0.65921,0.086684,-1.5632,2.2504,0.42802,0.094945,0.16592,0.028738,1.5996,0.2064,0.96638,1.7001,0.15347 2.7198,-0.91369,-0.74683,-0.46643,2.4035,2.6022,0.46562,-1.2462,0.3139,-0.97889,-0.089245,-0.73188,0.97991,-0.75465,0.5857 -2.4356,2.368,-0.91472,0.77734,0.43332,-0.65292,0.28787,2.1655,0.51453,1.0064,-0.21347,1.098,-0.51369,-1.0428,0.33004 -1.4416,1.3774,2.2021,-0.69306,-1.5034,1.3428,-0.15598,-0.038808,0.61358,-0.42002,1.0066,0.74348,0.59726,1.1743,0.49506 2.4476,0.08055,0.14569,-3.7366,-0.33357,0.614,-0.18666,0.31019,0.40457,0.32673,0.6663,0.41782,-2.2785,1.3709,0.98418 -1.1352,3.2573,-0.51181,-0.20311,2.2033,0.54495,-0.55161,0.2735,-2.7226,-0.83791,0.84737,-0.32667,0.41087,0.51696,-1.3466 -3.094,0.79735,-3.3138,-1.2944,0.44426,-0.1761,-0.12425,-0.30841,0.066937,-0.22064,-0.82157,1.2001,0.79714,1.2403,-0.33815 -1.3195,0.42187,2.069,0.97887,-0.60066,0.35916,-0.085795,0.69476,2.2206,0.04947,0.24185,0.65925,0.29537,1.0038,0.55829 4.029,-1.7075,-1.368,-0.75863,2.1653,2.2105,2.2996,-1.3516,0.73519,-0.52109,1.2415,1.6705,0.074628,0.25566,0.33054 -3.418,-0.086294,-2.7413,-1.1513,0.35534,0.043557,-0.48626,-0.16705,0.051167,-1.7352,-0.2662,-0.2778,0.3278,-0.27415,0.4519 -2.694,-0.9098,-0.30818,0.90121,1.0393,0.77909,1.0276,-0.45045,1.6519,-1.3701,1.0099,-1.2305,-1.278,0.66934,-0.18298 -2.9127,0.50295,0.30075,-0.10754,-0.068016,1.4915,0.74801,-0.074755,1.2783,-0.099922,1.5076,0.11053,-0.62428,1.3427,-1.2083 -0.8717,1.4395,0.68657,-0.24029,-2.0191,2.7402,-0.26373,0.3492,-0.10251,-0.3381,0.84759,0.20292,0.032556,1.0131,0.72516 0.39224,3.3435,-0.48207,1.1525,-0.77869,0.77695,-0.75982,-0.51096,-0.55554,1.6267,-1.2531,0.11258,-0.99993,0.88309,-0.28122 -3.8935,-1.5516,-1.2282,-1.6453,0.66088,0.79935,-0.99902,-1.2304,0.46026,-1.3518,-0.16664,0.65275,0.085788,0.90686,-0.54563 -2.9186,-2.2889,-0.72806,-1.838,0.88238,1.2817,-2.7316,-0.11746,-0.39446,-0.3086,-1.2581,0.87917,0.59104,1.2629,1.6171 -0.81372,-3.1491,1.4387,-1.8153,0.66317,1.0932,-1.3471,-1.5035,1.1243,0.89758,-2.3661,0.4457,0.11107,1.9868,0.97171 -3.2376,-3.1043,0.12539,-0.76385,0.92481,-0.71695,-1.5275,0.11847,1.5925,-0.11556,-0.74646,-0.8692,-0.40947,1.2187,0.50341 -0.98727,-4.4232,0.82004,-0.37144,1.7901,-0.035438,-1.5666,0.73727,0.51068,1.1992,-2.6578,-0.34651,0.94846,1.5332,0.91194 -2.1614,-3.4625,-0.79996,0.58344,1.0194,-0.2223,-0.85898,-0.0618,1.1825,-0.91765,-0.98767,-1.5677,-1.1644,0.95214,0.85915 1.3158,2.2599,1.2536,0.11366,0.21594,0.31536,-0.45751,-0.74429,0.679,0.26026,-1.4047,1.2579,0.88096,-0.10053,-1.688 4.1246,-1.0218,-1.6509,-2.0457,-0.22739,0.86261,1.857,-0.1648,-0.45521,0.27905,1.4025,2.0272,-0.2103,-0.98762,-0.31613 3.27,1.622,-1.7537,-1.7069,1.3154,-0.27656,1.0966,-0.57656,0.66839,2.4532,0.51899,-0.32249,-1.5218,-0.78134,0.97099 2.8405,-0.83857,-1.9983,-0.76636,2.0735,1.3444,2.0257,-0.13763,0.61502,0.14535,1.1645,1.5595,-1.0305,-2.0392,0.57909 -0.8476,-3.8701,0.19438,0.2663,1.2102,0.1537,-1.9679,0.70492,0.65835,1.39,-2.3435,-0.24892,0.91497,1.7083,1.6753 -2.8269,-2.792,-0.022801,-2.4685,1.3207,0.18034,-2.8736,0.24772,-0.41132,-0.16154,-1.8609,0.75028,0.22217,0.92014,2.5597 -1.4967,-4.4219,-0.42455,1.0403,1.7447,-0.52777,-1.0873,0.43974,0.059446,-0.72662,-1.6739,-1.1751,-0.49194,0.60092,1.4123 -2.4576,0.94668,-2.0177,0.79293,-1.308,2.2374,1.133,0.40006,0.61679,-0.76438,0.74693,0.10782,-0.0068412,-0.71663,-0.37039 0.91819,2.7401,-1.7592,-2.0494,-1.0008,1.3435,-0.30275,0.36597,-1.6368,0.13478,1.7772,-0.48356,-0.34755,0.28387,0.12 -0.71385,-3.714,-0.57175,1.0038,1.1095,0.57386,-1.2809,0.477,0.65326,0.67298,-2.0989,-0.26836,0.88662,0.90414,1.5018 1.9551,-2.4883,-1.7734,0.63129,0.75979,0.99889,1.3427,2.3817,0.3875,1.1073,-0.83707,1.4827,0.655,-0.39057,0.30713 2.4632,1.3151,-0.3392,0.14287,1.1324,2.1559,0.11463,-2.1136,-0.9815,-1.8965,-0.94096,0.082891,0.10106,-0.61628,-1.7841 -1.175,-2.1641,-0.45531,-0.87369,0.74589,0.41498,-2.2058,0.47892,0.44669,1.4027,-1.94,1.0306,1.0104,1.2886,2.3967 3.084,1.3445,1.7279,-3.0182,1.621,-0.73056,-1.9242,1.1046,0.66083,-0.16674,0.21371,-0.25455,-0.093798,-0.47982,-0.016543 2.2987,2.0038,-2.0243,-1.5049,-0.68578,1.5171,-1.3788,0.40794,-0.3081,-1.6149,0.78308,-1.6702,-0.17529,-0.43788,-0.2343 3.2542,1.6074,0.993,-3.7135,1.672,-1.756,-0.71728,0.36847,0.43471,-0.032022,1.0829,-0.46701,-0.35772,-0.82513,0.50161 3.6113,2.6855,1.1227,-2.442,1.6719,-2.1288,-0.066921,-1.0993,0.11836,0.44375,0.31755,-0.69067,-0.68336,0.64941,0.7011 2.9283,2.3493,1.7094,-3.5484,1.612,-1.326,-1.092,0.78011,-0.35104,-0.67386,0.65343,-0.44471,-1.1985,-1.1114,-0.047904 -1.8667,0.95582,0.40087,0.043824,-0.68774,-0.30014,0.23811,1.5279,2.0467,-1.2291,0.78408,-0.44324,0.51726,-0.43224,0.89246 1.4367,1.9106,-1.8536,-2.5258,-0.22038,1.0681,-0.36067,-0.36153,0.83197,1.1673,1.1898,0.40048,0.40304,-0.3007,0.88953 3.6403,0.1534,0.66117,-0.63986,2.6596,-0.019195,0.17125,-1.6063,1.421,-0.96363,-0.071203,0.93855,0.29694,-0.25267,-2.2077 -0.99292,0.6985,-0.20439,-1.2261,-0.028051,1.7582,-0.15085,0.047341,-1.388,-2.1088,1.5783,0.61368,0.51012,1.5042,-0.56063 2.87,-3.1276,0.30528,-2.2928,2.4064,-1.8289,1.8009,2.6022,0.023119,0.56573,0.090443,2.7588,0.99673,-1.3238,0.9174 -0.57395,2.1271,-2.1029,0.045553,0.0318,1.8576,-2.1477,0.73167,0.11103,-0.61678,1.354,-0.49297,1.4483,-0.53487,-0.94909 0.62521,1.9859,-1.7813,-0.60186,-0.77717,1.2952,-1.5337,-0.62516,0.57329,0.31095,1.3532,-0.11561,1.6794,-0.69744,0.16408 2.6223,-0.14739,0.37683,-0.38289,3.9506,-1.441,-0.03613,-0.34966,0.035081,-0.22382,-0.49822,-0.10103,1.0878,-2.1677,-0.48679 3.6103,-3.0956,-2.443,-1.5434,1.1737,2.424,2.5454,0.26081,-0.85961,-2.0337,0.83452,0.83319,-0.63503,1.9172,0.45388 -2.0005,1.3934,-0.75096,2.2064,0.80612,-0.023031,0.89498,0.1326,0.40611,0.7556,-0.01577,0.95438,-0.60194,-1.1723,0.99783 -0.22909,3.5249,-0.033762,-0.35685,2.3868,-0.3596,-2.2138,1.5115,-0.68708,1.3304,0.48786,-0.88132,0.43474,-0.64363,-0.76229 -2.0957,-1.0547,-0.73253,0.14971,-0.61359,0.21582,0.50555,-1.2976,2.1079,0.4291,0.025132,0.031216,1.1148,-0.21514,-0.70992 4.414,-1.7362,0.86087,-3.1515,3.0495,-1.359,0.51707,1.8441,0.62628,0.80892,0.58749,0.77818,0.73069,-0.55414,0.36405 -2.8002,0.65128,0.36443,1.5383,0.86505,-0.06988,1.0446,2.7113,0.18434,-0.93348,-0.5213,-0.28823,-1.5346,0.32276,0.97771 3.6833,-2.9987,0.3837,-2.4015,3.1176,-0.8323,2.336,2.3916,0.063326,1.1292,0.16024,2.5843,0.55482,-0.67547,1.1065 2.3852,0.051013,0.09019,-2.0781,1.6173,-2.2424,-1.2081,1.3052,0.91011,1.2042,1.6648,-0.45224,1.0052,-1.203,0.91087 2.1011,2.8562,-1.0393,-1.1552,-0.64499,0.68466,-1.2369,-0.71741,0.4158,0.22274,-0.47827,-1.0627,0.55956,-1.0378,-0.55744 4.2428,0.42013,1.5511,-3.5849,2.8328,-1.6812,-0.20892,1.1802,-0.0017524,0.39669,0.78516,0.0031266,-1.1551,-0.34783,0.10814 4.3227,-0.099525,0.32841,-4.7231,2.023,-1.4359,0.49513,1.3588,0.50173,0.81862,1.563,0.95575,-0.80319,-0.020683,0.30651 -2.4391,1.2496,-2.9074,0.25664,-0.22027,0.81183,0.49341,2.0149,0.5198,0.90447,-0.55366,0.37046,-0.38872,-0.78943,0.00057694 -1.1143,0.45598,2.2532,-1.7991,-1.2171,2.1021,0.92601,-0.30692,0.18632,0.21185,-0.18104,-1.1903,-0.015962,1.7994,-0.37536 -1.1799,-0.89706,2.709,-3.6014,-0.34858,0.60674,1.2841,-1.3617,0.51283,-0.63822,-0.57016,-0.71853,-2.2921,1.4399,-0.069324 -4.1195,-0.32648,-2.2155,-1.8387,1.8967,-2.1296,0.20579,-0.08432,0.14418,-0.55429,-0.87401,0.13018,-0.62773,0.53592,-0.12036 4.4204,-2.2591,-2.0729,-0.66251,1.1025,1.7734,2.7684,-0.74662,-0.20472,-1.2095,0.93154,0.45367,-1.8508,0.62828,0.83025 -3.5622,-0.37886,1.4872,-2.7627,1.221,0.99065,-0.22796,-0.85906,-1.0413,-1.3382,-0.537,-0.84593,0.015927,-0.35966,0.34745 4.0483,-1.7181,-1.6835,-0.16099,1.1307,1.5722,2.5504,0.20192,0.2816,0.67199,0.9019,1.7711,-1.6643,-0.56393,-0.012345 -2.4931,0.088451,-1.1689,-3.2502,2.4784,0.84662,-0.18401,-2.2883,-2.0066,-0.095959,-0.60966,1.0394,-1.7543,0.27773,1.1005 3.0084,-0.7584,-0.94827,0.50774,0.69356,1.4986,0.29462,-1.9942,0.3805,1.5383,0.73716,-0.62181,-0.10887,0.78783,1.6983 -0.85417,-2.8895,1.521,-0.48737,0.59019,0.49488,0.85284,0.097169,2.0994,1.5764,-1.8617,-1.358,1.2405,0.50329,-0.97847 -3.1175,-1.3712,-0.56048,-1.0376,1.9026,2.3433,-0.38754,-0.79181,-0.44412,-0.92405,-0.87029,-0.9827,0.19502,1.3836,-0.59593 1.8431,-0.2767,-1.1312,0.19531,0.96975,1.0172,1.3489,-1.1899,-0.64776,1.6799,-0.67485,1.1592,0.0027659,-2.1876,1.2625 -3.4955,-2.6491,0.69919,-2.3789,0.7932,0.17408,-1.7529,0.68477,-0.089852,-1.4451,-1.046,-0.71129,0.26354,1.2564,1.366 -1.615,-1.4796,0.56052,-3.2414,-0.096623,2.4523,-0.80958,-1.4643,-0.96006,-0.2022,-1.1605,-0.69289,-1.09,2.8011,0.15394 0.33157,2.4307,3.1498,-1.4879,-0.73883,1.6249,0.32939,-0.13405,0.52073,-0.26679,0.016458,0.50178,-1.3505,0.76794,0.97343 -2.2422,1.4428,2.0819,-2.7782,-0.26535,0.80229,1.7333,-2.0549,-1.0292,-0.70743,-0.15531,-1.1536,-0.77593,0.87789,0.2522 -0.096988,3.1572,-1.6901,0.71265,-1.4431,1.9113,-0.047362,0.044192,-1.0651,-0.17096,-1.0386,-0.19809,-0.0039706,-0.58971,0.68113 1.5331,-0.18904,-0.5511,0.45062,0.9973,2.0734,-0.34502,-2.6243,0.76421,-1.4568,0.16122,-0.64657,1.5125,0.14145,0.064261 -1.9198,3.5529,1.5164,0.65139,1.8517,-0.77759,-1.0717,2.0103,-0.87233,0.45174,-0.081454,0.27581,-1.241,-0.30805,-0.33263 -0.59758,-0.77717,2.843,0.26752,-0.34353,0.27989,0.66819,0.87019,2.5958,0.27739,-0.84079,-0.93536,0.64645,-0.71643,0.93002 -2.0815,-1.126,0.81817,-1.3966,-0.49848,0.8313,-0.47084,0.014751,2.0462,0.49835,-0.19159,-1.3133,1.5806,0.2691,0.55374 -0.70156,-1.8557,0.6182,-0.75622,-0.21041,0.53675,-0.16356,0.34426,1.8123,1.3851,-1.6706,-1.2856,1.2279,0.41197,-0.17956 0.32278,-2.0429,2.0604,0.85486,0.32052,1.8474,1.2302,1.2338,1.819,0.53195,-1.3033,-1.2161,1.2585,-0.16133,0.032772 -0.82879,-2.2093,1.096,0.67845,0.063882,1.9898,0.5094,-0.29398,1.9798,1.3542,-0.88583,-1.1878,1.2232,0.36968,-0.13747 2.0206,0.33685,-3.3891,-0.88565,-0.76584,1.0997,1.3087,0.84717,1.5407,0.68547,0.79034,0.98122,-0.54912,-0.71382,-0.12021 -2.51,3.1319,0.13579,0.56186,-0.31213,0.086276,0.67782,1.484,-0.60832,0.30949,-0.049507,0.82164,0.11741,0.84698,-0.60166 -1.2316,0.51486,1.5165,-0.31755,-1.4113,1.9332,-0.088023,0.49541,1.8173,0.43492,0.37123,0.059105,1.1683,0.35397,0.94867 2.0825,2.7278,1.2357,0.35739,2.8561,-1.2778,-0.74606,-1.8113,-1.5065,1.3527,0.50769,-0.86397,-1.3153,0.44624,0.27717 -1.468,3.4785,1.1859,0.75905,0.47706,-0.41224,-0.26722,0.19287,0.066178,0.8869,-0.57201,1.5446,0.06998,0.16415,0.070823 1.6668,0.76986,1.0309,-0.67281,-0.83975,1.7398,-0.24972,1.4924,0.96271,0.63678,-0.43438,1.3401,1.8454,1.3866,-0.31899 1.6242,2.1627,-1.1004,-3.1184,1.2434,-0.30433,1.0923,-0.10042,-1.6509,-1.2041,0.61647,-0.50765,-0.43376,0.80941,1.1133 4.0825,0.21697,0.0042072,0.28746,-0.10539,-1.517,1.1228,-1.9311,0.33979,-0.66502,-0.94964,-1.0252,-1.6937,-0.54663,-0.53569 -1.9078,-4.037,-1.0474,0.51329,1.5079,-0.64594,-1.9274,1.0688,0.741,0.75595,-1.7208,-0.413,-0.021413,1.2027,0.99976 1.6031,3.3742,-2.1655,-1.4359,-0.36435,1.3314,-1.429,0.12324,-1.7975,-0.1692,0.50731,-2.2509,-0.40129,-0.38799,-0.30753 2.1264,3.0821,-2.2073,-2.7777,-0.29307,0.39399,-0.69457,0.24002,-1.281,0.52818,0.90952,-1.943,0.14878,-0.69235,0.48809 -0.15623,3.4284,1.74,0.46958,0.43004,-1.0777,-0.9085,-0.81654,-0.22402,0.40008,-0.48187,1.4098,0.4042,0.15595,-0.59182 0.98183,3.7652,-2.1462,-0.68769,0.81056,1.7156,-1.3426,-0.32388,-1.855,0.23636,0.76976,-1.7326,0.031246,-0.72459,-0.80876 -1.9984,2.0527,0.06367,0.86533,-0.54871,-0.31279,0.96675,0.98173,0.7927,-0.54237,0.047818,0.63274,1.1581,-0.91255,1.1069 1.0322,3.0938,-2.0638,-1.9135,-0.77077,0.90543,-1.6046,0.2708,-1.1059,0.82343,0.96175,-1.4906,0.21133,-0.42294,0.039113 1.0327,2.7249,-1.8161,-1.8679,-0.75994,0.10295,-1.5427,0.48249,-0.42558,0.99807,0.30942,-1.4264,0.31172,-0.88058,-0.097228 3.3473,-0.6887,0.61253,-0.3319,1.6335,1.0346,-0.81312,-0.66038,2.2051,-0.2638,-0.67042,0.8628,1.0308,0.75898,-1.3208 1.4005,2.4073,-2.9811,-2.6965,-0.82603,1.0831,0.31665,0.3363,-1.4552,0.77297,1.6045,-0.5429,-0.063312,-0.81989,1.5546 3.2561,1.0759,-0.78148,1.0161,1.153,0.26958,0.52041,-0.62942,0.40147,-1.7395,-0.16912,0.026954,-1.7338,0.1922,-1.0295 -3.4845,2.7036,-0.1438,-0.0079188,1.0797,0.84882,0.57423,2.968,-1.0149,0.51036,-0.31957,0.26192,-0.90679,-0.10042,-0.34973 1.3191,2.6866,-1.4159,-1.8373,-0.65958,0.054303,-1.9357,0.37554,-0.44542,1.5144,0.77967,-1.2672,0.70142,-0.7278,0.2065 0.64889,3.2859,-2.2109,-1.4303,0.13127,1.8911,-1.6711,-0.1038,-1.2351,0.4922,1.2085,-0.88134,0.67939,-0.56853,-0.97407 -4.6497,0.58376,-1.0956,-1.6576,2.0626,0.67157,0.3745,-0.74378,-0.85344,-0.32059,-0.097653,-0.67506,0.45326,-0.10869,-0.63751 2.0712,0.72733,0.071676,1.1592,0.1179,1.7262,-1.6942,-0.1903,-0.7084,1.1638,1.4049,-1.0874,-0.40532,1.5819,0.66914 -2.5392,-0.24061,0.24539,1.3476,0.25973,-0.15179,1.3582,-1.1473,1.2494,0.71276,1.0997,1.0121,-0.73522,-0.36965,-0.44103 0.57771,3.1151,-1.525,-1.9578,-0.13156,0.38468,-2.1423,0.45773,-1.1029,1.1887,1.3012,-1.0229,0.8259,-0.76852,-0.16247 2.1107,-0.75809,-3.6302,-0.095214,-0.80023,3.1542,2.1052,1.0858,-1.1506,-0.6022,-0.9438,0.27456,0.4024,0.80392,-0.93395 -2.9783,1.5899,-1.0491,0.7804,-0.55723,0.57818,0.94201,2.8054,0.24797,0.47441,-0.10791,0.15477,-1.0244,0.12109,-0.45622 -0.071887,2.1769,-2.2908,-1.5672,0.22632,0.8561,-1.3832,1.0527,-0.15193,1.7431,2.4005,0.36034,0.41014,-0.4488,0.055819 -3.595,2.415,1.9175,-0.51535,1.2403,-0.87959,1.3826,1.0105,-0.35905,0.57973,0.40124,0.3888,0.012332,-0.26164,0.45309 1.0604,2.3015,-1.1193,1.2349,0.013043,0.35146,-1.5742,-1.381,0.65891,0.91011,0.64966,-0.0095586,-0.17339,0.99368,-0.67602 -3.199,-0.54118,-0.48442,-1.6323,0.42661,2.4838,-0.045572,-1.4082,0.087467,-0.3471,0.15233,-0.50932,-0.012129,-0.90697,-0.61492 2.3121,3.0924,-1.8103,-2.7633,-0.28908,0.15546,-0.75881,-0.15438,-0.79301,1.8384,0.95872,-1.2568,0.055091,-0.9661,0.50519 1.4784,3.7868,-0.55379,-1.5026,1.2763,1.2985,-1.8156,-0.24451,-1.3054,0.073837,0.32805,-1.6925,0.94456,-1.1364,-0.53076 1.1563,2.364,-1.9757,-2.1033,-0.69648,0.58882,-1.1725,0.50173,-0.49403,1.5599,0.78491,-0.97397,-0.012918,-0.65672,0.51059 4.2629,-1.7609,-0.69479,-2.0417,2.3221,3.6289,1.5884,0.26203,-0.79896,-1.0451,-0.20963,0.3596,1.428,0.30107,-0.38853 -1.6693,0.6349,2.4576,-1.4832,-0.98227,2.4401,0.15136,0.18943,0.7824,-0.63575,0.7286,-0.49143,0.52868,0.15881,0.95497 3.2709,1.2272,-1.3863,-1.4628,-1.2275,0.68459,-0.82948,0.56668,0.1898,0.34052,-0.2027,0.41281,-0.34057,0.29179,-0.99729 0.54811,0.84668,-1.6758,2.2974,0.23151,1.1452,-1.7045,0.09582,1.5939,0.18136,0.7907,-0.58795,0.4929,0.90566,-0.30633 5.168,-1.0819,-0.098154,-1.6273,1.405,1.2184,-0.048721,-0.1375,1.643,0.36048,0.087185,-0.034297,-1.6976,0.59355,-1.1957 -2.0523,-1.9605,-0.24193,-3.0681,0.29408,1.406,-1.8483,-1.8021,-0.19874,-0.20238,-1.8246,0.99994,0.13306,0.27745,1.3015 -2.5941,-0.99443,-0.33344,-2.7828,0.40847,1.7003,-0.87708,-1.7662,-0.18482,0.13582,-0.80182,-0.1155,-0.028702,-0.31848,0.59696 3.3232,0.32099,-1.6906,0.40972,0.75395,1.722,-0.080297,-1.6486,0.68501,-0.36273,-0.31403,-1.0358,-1.0313,0.71241,0.025637 1.5979,1.664,2.6917,-1.4278,0.201,0.1057,-1.2198,1.0552,1.2091,-1.8157,-0.76422,0.78434,1.2404,-1.2734,0.69561 1.1984,1.6398,0.44396,1.6782,1.4348,0.32311,-1.5933,-1.9765,-0.58784,-0.18974,-0.18996,1.0443,0.15549,0.45456,-0.17369 0.81943,2.0895,2.3311,-0.94772,-0.078792,0.224,1.069,0.88503,0.66693,-0.32724,-1.2228,0.93477,0.097084,-2.4819,-0.47958 -1.4853,1.3336,3.2114,-0.48847,0.32885,-0.35208,0.30079,-0.011711,0.42577,-0.76776,0.14515,0.84324,0.69999,-0.27663,-0.069748 -2.357,1.4804,1.4671,-1.4827,-0.5167,1.1633,1.881,-1.0762,-0.4593,-1.1389,0.18508,-0.34044,0.032387,-1.8415,0.67639 -1.8598,2.2256,-1.7171,1.3261,0.86221,0.38376,-0.37846,2.3542,0.11797,0.57232,-0.84064,1.0025,-1.3726,-0.087819,-0.59876 -1.9824,0.96186,0.93807,1.3281,0.49107,-0.77354,1.8976,-1.8441,-0.98981,2.0609,-0.48304,-0.20662,-0.74483,1.0726,-0.41111 -0.20147,2.9091,0.45572,-0.28411,1.3805,-1.0336,-1.7649,1.3168,0.082929,-1.2836,0.68391,-0.27217,1.3178,-1.0585,0.84506 -1.6949,0.92348,1.4184,-1.3211,-0.97927,0.80374,1.4708,-0.70192,1.6039,0.48145,-0.28684,0.040419,0.28821,-1.7355,0.40245 2.6277,1.1224,-0.73895,-0.26881,-0.70946,1.1311,-1.2903,-0.67818,1.6347,0.57259,-0.59052,0.27736,0.97841,1.5162,-1.0408 -1.3927,3.0191,-1.4546,1.3278,-0.83453,2.1522,0.4074,0.081743,-1.1466,-0.37359,-0.44656,0.94306,0.11387,0.3144,-0.60185 -1.6968,-0.26896,2.1054,0.80049,0.10803,-0.326,0.53674,1.3309,2.5601,-0.3924,0.90626,-0.3658,-0.36041,0.29929,1.3661 -0.5067,1.8621,-1.7129,1.8924,-0.51739,1.0035,-0.67134,0.3835,1.3021,-0.1813,-0.04411,0.85284,0.54439,-0.43157,-0.23809 0.24407,2.63,0.68777,1.9336,0.11127,0.19163,-0.87172,-0.28168,0.50021,1.5956,-1.0894,0.94753,0.041563,-0.96325,0.18496 1.5066,2.7751,0.73725,-0.30989,1.09,-0.74358,-1.5742,-0.91088,0.81176,0.021739,0.28114,0.67382,1.2885,-0.21631,-0.70111 -1.7908,0.67982,1.6872,-2.5067,-0.94016,1.7145,1.4614,-1.2282,0.25116,-0.84843,0.066181,-0.77691,-0.01255,-1.3032,0.37271 1.1766,0.68518,3.4312,-0.85228,-0.30698,0.9237,0.59771,-0.19939,1.4217,-0.93243,-0.23491,1.2109,0.92565,0.095029,-0.50274 2.6668,0.21784,-1.5125,1.0033,-0.79164,3.4675,0.4838,0.34403,-1.0017,-0.25803,-0.42641,1.0012,0.24917,1.6731,-0.44209 -1.9107,0.72204,2.0514,-2.0617,-0.96425,1.1826,1.4044,-0.88203,1.1905,-0.41501,-0.050666,-0.38481,0.043013,-1.2579,0.6098 -2.1784,0.017224,1.7649,-1.5317,-1.0747,0.94158,0.72528,-1.8403,1.2361,0.084016,0.38303,-0.12076,0.88809,-0.022652,-0.31889 1.7563,1.5644,-2.3894,0.39108,0.092872,1.3854,-0.1571,-1.5727,-0.46634,-0.37035,-0.71721,0.46962,0.46675,-0.77225,-0.84748 -1.9703,-0.055845,0.32229,0.81993,-0.79455,1.176,0.80721,-0.77184,1.9778,0.25274,1.0227,0.098955,-0.3937,-0.22645,0.64024 2.8092,0.9847,-0.42116,-1.2989,2.3986,-1.1292,-0.39606,-1.285,0.22891,2.0021,1.6308,0.3729,-0.77948,-1.6854,0.81405 0.16488,1.7862,-0.79689,2.3704,-0.64141,0.70627,-0.64007,-1.5656,0.30373,0.067605,-0.39084,0.63405,-0.48208,0.7208,-0.11409 -2.9131,-1.2115,-1.3655,-0.7251,-0.80954,-0.23231,-0.38284,-0.23899,1.2947,0.094606,0.26566,-0.69484,0.55214,-0.19586,0.36879 -2.9684,1.9695,-1.6562,-0.42161,0.2051,0.64036,0.991,1.27,0.27515,1.3921,0.079044,0.94363,0.5726,-0.54319,0.19912 -1.9934,-1.5879,-0.32853,-2.115,-0.86963,1.8457,-0.68773,-1.5485,0.73782,0.29015,-1.0486,-0.25856,0.80038,0.61274,0.21636 -0.055061,3.491,-0.24746,-0.17787,2.586,-1.431,-2.2699,0.75813,0.13072,0.64531,1.1366,0.055239,-0.44787,-0.75842,-1.2198 -3.1641,0.61532,0.59606,-1.0135,-0.28904,1.8899,1.1339,-1.5502,0.052897,-1.4861,0.59685,0.47495,0.4705,0.12569,-0.13288 -2.4992,-0.28867,-3.5854,-0.17227,0.39622,0.89144,-0.75846,-1.1992,-0.71893,-0.85525,-0.59853,1.9682,0.50406,0.68217,-0.54107 -2.4757,0.90872,-2.0045,1.1251,-0.15492,1.2198,1.2114,-0.19974,0.50311,1.5312,0.46431,0.15842,-0.33598,-0.56828,-0.46701 0.2095,0.17493,1.6369,0.93863,-1.2253,1.6699,1.4114,-1.513,1.7236,0.26666,-0.25492,0.34829,-0.58185,0.044472,0.43225 -2.9717,1.0347,-0.8115,-0.46944,-0.34104,0.36646,0.71037,-0.4482,1.0743,1.0989,0.67336,0.51261,0.56803,-0.49844,0.071594 -2.3039,0.65381,0.99907,-0.61514,-1.5484,0.31226,1.6222,-1.4626,1.027,0.11865,-0.086779,0.52734,1.0821,-0.10155,0.060644 -1.44,1.7052,0.6199,2.088,0.29674,-0.79176,0.038082,0.57719,1.345,-0.043192,-0.37798,1.6248,-0.15643,-0.60893,0.34867 -3.2761,2.1013,-0.44891,-0.69592,-0.22314,0.79729,1.486,-0.36141,-0.98085,1.6167,0.75052,1.1929,-0.0056555,0.39544,-0.47907 -1.1319,-1.7265,0.82481,1.1087,-0.47149,1.4288,0.52797,-1.7014,1.5907,0.63274,-0.24594,-0.90944,0.23412,-0.81319,0.52338 -1.111,-3.2049,-0.36098,0.45249,1.1726,0.57126,0.69363,-0.65742,0.21073,0.046292,-1.342,-1.1752,1.3763,-1.3664,-0.50188 -1.854,-0.24243,2.14,-1.8703,0.88118,0.94446,0.5927,0.96261,-0.37286,-1.0615,0.41147,-2.4146,1.1854,-2.051,0.56792 -2.8935,1.0655,0.2201,-0.79112,-0.032768,1.8952,1.3621,-1.2057,-0.35366,-0.31254,0.088061,0.83026,0.14091,-0.62241,0.36166 4.0466,0.94756,-0.45216,-0.72628,2.912,1.6001,0.72734,-1.9833,-1.0981,-0.26076,-0.20657,-0.96104,0.42907,-1.131,-0.61846 0.79962,3.502,0.3368,-1.0516,-0.61532,1.0494,-0.070166,0.62988,0.04303,-0.56817,-0.90085,0.55466,-0.11965,-1.534,0.55814 -1.2692,0.69753,-2.8328,-1.3763,1.1211,1.239,-0.20347,-1.342,-2.2635,1.0474,-1.4411,1.6851,-0.16791,0.79805,0.95194 -1.2212,1.5959,-1.3055,1.6437,-0.42304,1.3775,-0.67288,0.82635,1.8735,0.33722,-0.17817,0.66559,-0.057979,1.2188,-0.34518 -3.0467,0.66268,0.012991,-0.72788,-0.74941,1.1014,0.8504,0.22165,1.2576,-1.3495,1.1109,-0.13055,0.81782,-0.763,0.74335 0.48897,1.2773,1.0217,0.33524,-0.49728,1.4986,2.1236,-1.0297,0.87887,0.09261,-0.71043,0.65785,-0.21128,-0.31062,-1.2866 -2.7457,-1.3363,-0.1564,-1.7043,-0.44547,0.70096,-1.2765,-1.5232,1.3107,0.16328,-0.38872,0.33127,0.87793,0.48218,-0.15291 -3.3306,0.76668,-1.9041,0.22319,0.59503,1.1438,1.8496,-0.54476,0.35401,-0.92491,-0.49823,-0.69071,0.20663,0.7184,-1.2289 -2.7631,-1.0151,-1.3866,-0.10275,0.43512,-1.5577,0.050832,-0.72625,1.7328,0.42732,-0.39952,-0.31209,0.15245,-0.44723,-0.045016 0.96679,1.9737,-2.2346,-0.77509,0.057815,1.3581,-0.43749,0.19097,0.47934,1.1139,0.06511,-0.90798,1.7506,-1.7672,0.44318 -2.5703,-1.6906,-1.6747,-0.64807,-0.00094942,-0.56691,-1.9584,-0.94516,1.3266,-0.34111,-0.799,1.4787,0.15062,0.60329,0.76844 -2.4282,-1.0962,-2.9787,-0.77017,-0.22765,0.0011897,-1.7735,0.45422,0.55162,-1.324,-1.0182,0.94161,-0.34187,0.39774,1.2105 -2.6147,-2.2836,-0.73594,0.60058,0.5938,0.97581,0.60544,-0.75838,1.0178,-2.1159,0.39583,-1.001,0.74348,-0.072689,0.47654 -1.7465,-2.7698,-0.63619,0.75073,0.20606,0.15323,-0.21643,0.14044,1.8551,-0.20764,-0.67252,-1.6422,-0.16244,0.19692,0.15376 -1.782,-2.8357,0.19446,-0.12711,0.011074,0.35067,-0.64368,-0.91641,2.21,0.25268,-0.6935,-0.50729,0.63467,0.18767,-0.16809 -3.3735,0.169,-2.1103,-1.1079,-0.029171,-0.2855,0.022943,-0.30792,1.0507,-0.42353,0.041392,-0.22641,0.39042,-0.040827,-0.45791 2.5281,3.6913,-0.056615,-2.8075,1.5575,-0.1022,-0.60604,0.69867,-1.7603,-0.9857,0.58286,-2.3018,-0.93922,-1.0234,0.59733 1.7512,-1.7926,1.837,1.1413,0.84777,3.3199,0.58324,0.80107,0.19828,-0.53139,-1.0295,0.45992,1.5347,0.70189,0.052839 -2.9162,0.88342,1.4473,-0.39173,0.058041,-0.57479,1.3135,-1.326,0.36574,1.5613,0.71908,0.95478,0.014738,-0.33389,-0.12413 1.4331,0.62901,0.81697,0.97181,0.74671,0.38543,-1.263,0.78433,2.3394,0.0067774,-0.76945,0.71378,1.2792,0.44187,0.98396 2.2737,0.19877,1.0153,0.11343,0.60967,0.60977,-1.79,-1.3146,2.3294,-0.47899,-0.27704,-0.30575,0.58138,0.035854,0.41434 2.977,-0.52784,1.9347,0.46974,0.51094,2.0441,1.1017,0.9323,0.84341,0.027146,-1.4432,1.9732,-0.32995,1.3207,-1.1769 3.2043,0.40511,0.83064,0.35841,1.3836,2.6694,-0.64225,-1.3179,-0.59518,-1.8146,-1.7526,0.42691,0.99545,1.0936,-1.3238 0.20485,0.19277,2.7253,-2.0252,-1.2344,1.637,1.1031,0.6155,1.7409,-0.25377,-0.24348,-0.27635,-0.59251,-0.34939,0.44423 -3.7543,0.27259,0.67741,-0.53907,1.1552,-0.86886,1.0683,-0.14088,1.6147,0.94234,0.70492,-0.10615,-0.088334,-0.19929,-0.088304 -1.2386,-3.4255,0.69553,0.15464,1.2052,0.18589,-0.41319,0.14886,1.4061,0.82779,-1.8486,-1.7219,0.65019,-0.095572,0.40873 -1.5805,-1.45,-0.66368,0.75799,2.4677,0.064355,0.39092,-2.0322,0.87237,0.47357,-0.16345,0.14125,0.42008,-0.64332,-0.14538 1.3706,0.81549,2.215,-4.4906,1.2878,0.38908,0.39581,-0.040034,-1.3083,-0.29243,0.42194,2,0.41871,1.478,0.13087 -1.716,0.38995,-1.4525,2.0136,0.41603,-0.20842,1.4235,-0.53146,1.3642,0.4595,-0.3051,0.56527,0.11185,0.34459,0.15369 2.4751,-0.71814,-3.3894,0.61108,0.14079,3.6678,2.1582,0.72958,-1.2366,0.25699,-0.46114,1.0222,-0.28697,0.075246,-0.94615 -2.3485,-1.8865,1.3183,0.58806,1.4503,0.99321,0.45032,0.092815,2.1826,0.73931,0.75168,-1.2966,-0.17646,1.8524,0.18433 -2.1659,-2.9139,-1.7788,0.61329,1.8779,-0.6914,-1.6902,-0.10261,0.61305,0.73252,-1.8479,0.6146,0.051861,1.0095,1.12 -0.18463,3.1197,0.031562,-0.93984,-1.2201,1.0927,2.0711,-0.17032,-1.1761,-1.1693,-0.55516,-0.5507,-1.9223,-0.39013,0.17897 -2.0053,-1.3131,1.6783,-1.403,0.29087,1.4624,-0.31978,-0.28514,1.784,1.0198,0.27806,-0.67387,1.0982,2.3419,-0.13775 1.4761,0.90016,1.6266,-0.73883,0.19234,1.5021,0.72418,0.92926,1.3394,-1.8233,-0.91231,1.7886,1.0688,-1.0409,-0.13284 1.4355,2.1307,-2.1571,0.28102,-1.3092,1.0589,-0.87521,-0.7737,0.58818,0.56282,-0.46206,-0.38312,0.7607,-1.0662,-1.0336 -2.2666,-2.0177,1.2503,-0.94385,0.34731,-0.20138,-1.0268,0.59082,1.9153,0.74996,-0.66029,-1.2365,1.0985,0.31119,0.11409 -3.0871,-0.908,0.31901,-2.5567,1.4077,0.036707,-0.093198,-1.3999,-0.838,-0.66129,-0.72084,-1.4183,0.74096,-1.3811,1.0529 -2.7777,0.17922,0.99016,-0.68875,0.055716,0.016598,1.0397,-0.40421,1.4997,-1.3786,0.74033,-1.1116,1.4727,-0.35245,0.54494 1.8524,2.6678,0.26067,0.12416,0.94086,-0.42114,-0.95,-1.9354,1.3938,0.85854,-0.6381,0.1614,0.34147,-0.3474,-1.1297 -4.058,-0.074852,-1.0806,-1.0916,1.2564,-0.57634,0.50071,0.10788,1.3396,0.084134,0.25786,-0.32592,-0.64448,0.27701,-0.77059 -0.38562,1.6221,-0.069737,2.3618,-0.55745,0.52308,1.5735,-2.0815,-0.75206,0.21965,-0.77908,1.0955,-0.25846,0.068133,1.0019 3.8938,0.92033,-1.6105,-3.4929,0.18867,-0.2808,0.80526,0.2432,0.93395,0.96655,1.5229,0.71762,-1.2614,-1.1624,-0.54602 2.0877,-1.1404,2.9512,0.36695,0.13024,1.1935,0.31981,1.0408,1.7661,-0.14252,-0.96954,0.10794,0.11285,-0.020512,0.98706 -0.96236,-1.4945,0.7056,-2.9513,-0.26188,0.60155,-0.47896,-0.41923,0.42448,-1.5605,-1.1028,-0.25577,1.3847,-0.42996,0.55901 -0.4164,-0.0099335,0.53,-1.9378,-0.014022,0.54303,1.0987,0.66004,-0.26948,-1.871,0.045768,-0.87781,2.1444,-0.29397,0.39668 -2.0536,0.3909,-4.401,-0.4103,-0.46519,0.99896,0.016571,-0.011494,-0.024674,-0.21519,-1.6881,0.056396,0.37457,-0.0058464,-0.13637 -0.95335,-3.5342,0.98051,-0.51201,0.28684,-0.6985,-1.1811,1.2971,1.3623,-0.26362,-0.92034,-0.91084,1.004,0.21784,-0.47921 -0.091634,-3.5972,0.62466,-2.3741,-0.13437,0.73097,-1.157,1.891,-0.0768,-0.39143,-2.0999,0.22049,2.0136,-0.30095,0.01983 -2.6032,1.8893,-1.2423,-0.54113,-0.96801,1.4096,1.8667,-0.73123,-0.99518,0.89456,0.24248,0.36048,1.0466,-0.34701,0.22905 -1.5766,-1.6331,0.1875,-0.29374,-0.88265,-1.009,0.53834,1.1632,0.59734,-1.8192,0.214,-1.7196,0.39768,-0.53909,-0.64394 -1.2427,-2.4407,-0.21031,-2.3919,-0.028272,0.034216,-0.83879,-0.19794,0.52022,-1.2783,-1.6466,0.24674,1.4941,0.02854,0.89979 1.1385,-0.8862,-2.6727,-0.26428,0.84739,2.0423,1.5699,0.48848,0.16128,-0.23229,-0.076066,1.8243,0.42573,-0.90705,1.6526 -2.0387,-1.9407,0.3534,-0.37117,-0.23659,-1.0172,0.16796,1.1468,1.1517,-1.6512,-0.076724,-1.5449,0.18808,-0.29894,-0.50493 1.9382,0.56322,0.5363,1.1793,1.1601,0.65421,-1.7442,-1.0687,2.029,-0.35404,-0.67253,0.094362,1.0838,-1.0807,-0.22521 0.2202,3.9137,0.20201,-0.31727,-0.37684,0.93554,0.75925,-0.27794,-2.0352,-0.41439,-1.8882,-0.29308,-0.26819,0.15647,-0.20823 -2.9544,1.4033,-2.4633,0.35954,0.26255,1.9082,1.678,0.60598,-0.082549,0.82313,0.077319,-0.21416,0.40375,-1.18,-0.43458 -3.2545,0.38161,-0.41633,-1.5644,0.35543,0.59083,0.49862,1.1955,1.0605,-1.5322,0.25378,-1.7444,0.52226,1.0918,-0.68411 -0.094528,2.4249,-2.4899,0.31856,-0.74395,2.4414,-0.7333,0.44103,-0.89169,-0.1595,0.41592,-0.9603,-0.018652,-0.13366,-0.41214 -2.8474,-1.4451,-1.5169,-1.3258,1.6058,1.2763,-1.2155,-0.081088,-1.3384,-1.7538,-0.52178,0.94877,-0.54725,1.0939,0.51243 0.13275,2.4526,-0.90812,-0.060943,2.5657,0.014268,-1.2009,0.19569,-1.0722,1.9012,1.4845,-1.2357,-0.71477,-0.35526,0.21174 -1.2449,-1.5042,-2.3073,-1.0327,1.2569,-0.42944,-0.52263,0.36831,0.12689,-1.4338,-2.3568,0.9818,-1.1194,0.90526,2.2438 -0.66674,0.99494,0.15733,1.9648,0.15001,-0.48654,-0.22689,1.3004,1.9978,-1.229,-0.20519,0.55739,-0.34996,-0.86132,0.62409 -3.1147,1.4982,-1.6005,-0.25119,-0.22627,1.8201,0.91212,0.48397,0.16485,0.33142,0.77192,-0.66412,1.2497,-0.86649,-0.27858 2.2078,3.3754,0.012661,-1.2786,-0.53761,-0.010976,-1.188,0.56648,0.0743,0.79414,-1.5598,-0.71448,-1.0449,-0.053069,-1.2648 -4.0596,-0.031603,-3.3374,-1.6312,2.8471,-1.2935,0.22232,-0.15437,-1.2262,-1.4404,-2.1278,0.60925,-0.56501,0.58175,0.3595 -2.9808,-0.67158,-3.372,-0.70387,2.3311,-0.58755,0.040512,-0.80066,-0.18669,-1.9839,-2.4709,0.71376,-1.2004,-0.29661,1.1014 -4.2369,-0.35081,-1.2297,-2.0296,1.1261,-0.45775,0.62552,0.13847,-0.22169,-2.3359,-0.42455,-1.6012,-0.4436,0.073473,-0.1968 3.6353,-0.18161,-0.73407,-0.52143,1.7709,1.5702,2.2291,-1.4532,0.29232,1.0502,0.45354,0.317,-1.0948,-0.8363,1.0649 -4.1475,-0.076079,-2.0227,-1.8454,2.0802,-0.62883,-0.24351,-1.2852,-0.61223,-0.37761,-0.61032,1.2738,0.12698,0.40561,-0.37431 2.7254,1.6995,1.0498,-0.37947,1.2053,-0.85563,-0.96988,-1.875,1.9079,0.70709,-0.02741,0.019419,0.42251,-0.22444,-0.82356 -2.9662,1.8274,2.3829,-1.2275,0.92796,-0.44354,0.86878,1.1574,0.28402,-0.66477,1.1704,-0.86251,0.67082,-0.87757,0.69918 -3.9864,-0.25787,-2.5905,-1.5575,2.1296,-1.2494,-0.82258,0.030784,-0.94307,-0.56605,-1.1497,1.0842,-0.81257,1.0447,0.26517 -4.5474,-1.2764,-0.21552,-3.0175,2.9379,0.22982,-1.0553,-0.37694,-1.7731,-0.89858,-1.1594,0.37324,-0.94758,0.098882,0.58436 -4.0337,-0.42144,-0.43622,-2.5869,1.5902,-0.78954,0.5362,0.77416,-0.1912,-1.8927,-1.0957,-1.6859,-1.2844,0.15937,-0.15362 -2.2308,1.6021,2.0837,-1.1568,0.83964,0.23638,0.33926,1.9466,0.36207,-1.203,1.8821,-0.69298,-0.22701,0.15565,-0.23509 -3.8009,1.0704,1.4363,-1.984,1.2015,0.20215,1.1014,0.2571,-1.1073,-0.93347,0.44473,-2.1008,0.18308,-1.7664,0.65242 -0.34986,2.8105,2.0313,0.60373,-0.3588,0.06544,-1.136,0.091121,0.92467,0.044226,0.13737,1.414,-0.2,-0.23538,0.82914 2.025,1.2452,0.016663,-0.2366,0.36116,-0.45921,-1.3979,-0.8057,2.4068,-0.019296,-0.7855,0.18142,0.62361,-0.55823,-0.045235 -3.2622,0.42538,-0.62034,-2.5016,1.9437,-0.50249,1.288,-0.69939,-0.63844,1.3586,-0.61008,0.51451,1.1715,-0.37539,0.36074 -0.82119,3.4049,-0.049807,-0.26009,0.40487,-0.15586,-2.1126,1.7096,-0.17738,-0.92587,0.35712,0.49521,0.84681,-1.3596,0.08579 -4.0448,1.4461,-0.28823,0.21229,1.1909,1.477,2.5527,0.48823,-0.16094,-1.0286,-0.14462,-0.52996,0.1723,0.015039,-0.5504 2.99,2.1557,-0.25087,-0.7874,2.8003,-1.0423,-0.26397,-2.2631,0.35532,2.1596,0.84237,-0.44168,-0.60548,0.19102,0.46668 -3.6751,-0.2318,-1.7635,-1.955,1.4794,0.20587,0.023357,-1.3365,-1.236,0.24446,-0.67935,0.41306,0.95107,-0.44621,0.20239 -4.4523,-0.22364,-2.0552,-1.6353,1.2618,-0.42129,0.69604,-0.7939,-0.21059,-1.0715,0.014818,0.20603,0.40545,0.46794,-0.88152 1.5148,0.7663,3.2895,1.68,2.3897,-0.15263,0.21964,-0.25618,1.043,-0.7923,-0.63816,1.3218,0.63847,-0.22899,0.22165 3.6047,-0.81197,-1.4866,-2.1379,1.3716,1.0134,2.1786,0.15107,1.6733,-0.12976,1.3781,2.5953,-1.2395,0.22293,-0.50702 4.4917,-0.57193,-0.87989,-1.7989,1.3879,2.0295,1.4739,-1.1101,-0.16019,-1.1342,0.7842,-0.97279,-0.4727,-0.38778,0.49466 -3.3531,-1.503,-0.64041,-0.65551,2.0492,-3.2769,0.78349,-0.0082978,0.083193,-0.13949,-0.78961,-1.2646,-0.56116,0.24558,0.11275 -3.6812,-0.60609,1.2335,-0.59488,0.41213,-2.1814,1.1271,1.0816,0.94236,-0.92193,0.44176,-1.1985,-0.44695,-0.15971,0.069723 0.74323,-0.75613,2.5513,1.9636,2.4713,-1.1349,-0.92565,1.0474,0.65815,-2.5599,0.17506,0.78764,0.036832,0.49394,0.97938 -3.3818,-0.59947,0.81686,0.4098,0.04805,-1.5895,1.3585,1.0672,1.2672,-1.3103,0.33011,-1.0168,-1.8293,0.21189,0.33565 4.836,-1.2138,-0.60489,-2.4751,2.9456,-0.53766,2.2981,0.68908,0.454,1.2936,1.3172,0.67548,-2.6442,-0.73694,0.8209 -2.6741,-0.44296,2.0997,0.089413,0.73919,-1.6954,1.6046,-0.34515,1.8205,0.32052,-0.073343,-0.064229,0.59098,-0.89424,0.22294 0.69314,1.2903,0.64839,2.3647,0.5027,1.4698,-1.5871,-0.19857,0.57412,-0.081798,0.64681,0.42013,-1.0518,0.44136,0.59177 -2.4461,-0.33149,1.9902,0.25467,0.81063,-1.1302,1.4512,-0.55315,2.1462,0.54401,0.061436,-0.18487,0.42633,-0.80708,0.19846 -1.7101,1.1929,0.45605,-0.98097,-1.9156,0.78284,1.5557,-0.78673,0.20775,-0.56181,0.12944,0.33611,0.33208,-1.877,0.40171 -0.39883,2.485,1.7762,0.031674,-0.99326,0.74295,-0.40537,-0.48579,0.99567,-0.097004,-0.21385,1.516,-0.032853,-0.50208,0.35741 -0.24221,3.0558,1.9876,0.52118,0.099542,-0.47928,-0.26705,-0.38773,0.44016,-0.05678,-0.68793,1.1086,-1.1215,-0.45764,0.97326 2.5635,1.5022,0.4212,-0.53357,1.4861,0.019146,-0.16875,-2.9612,0.87987,0.54,1.6244,-0.36911,-0.59355,0.35021,0.80898 -2.1522,3.5322,1.2402,-0.53646,-0.63272,0.59492,1.147,0.30065,-1.0346,0.38261,-0.31296,1.1061,-0.1724,-1.225,0.84912 0.3607,3.5814,0.23769,-1.5569,1.0982,-1.0119,-1.5667,-0.44697,-0.34777,-0.7856,0.097735,-0.036224,1.78,-0.119,-0.6474 -0.01325,0.64227,0.059011,1.1237,2.4362,0.86163,-1.162,-1.1321,-0.40621,-1.4532,-1.6987,1.0135,1.3616,0.10484,-0.12615 4.5152,-0.42017,-0.98595,-0.14801,2.847,2.217,1.0729,-0.82996,-0.34902,1.5332,0.26735,-0.48216,0.4676,-0.53283,0.057314 0.96565,4.1086,-0.34411,-0.7972,-0.14579,1.3604,-0.44344,0.28334,-0.91883,-0.027735,-2.0095,-0.63437,-0.35346,-1.6126,-0.45017 -4.0741,-0.11858,-0.086319,-1.0184,0.08042,-1.3813,1.2368,0.39593,0.6118,-0.35335,0.80309,-0.66518,-0.43881,-0.77586,0.092092 -3.524,1.0888,0.56294,-0.096081,0.09265,-1.345,1.611,1.5399,1.2036,-0.99936,0.6088,-0.31284,-1.0374,-0.64355,0.10482 -3.8807,0.53891,0.39635,-0.67919,-0.097464,-0.88574,1.4125,0.38262,0.88995,-0.39822,0.84725,-0.22819,-0.11128,-0.71103,-0.27983 -3.0793,1.0332,-1.8121,-0.21199,-0.87743,1.533,1.238,0.18845,0.61927,-0.065302,0.78325,0.15908,0.43378,-0.30571,-0.96913 -0.89076,3.5049,-1.7223,0.17579,1.2957,2.0917,-0.71457,0.61584,-1.3562,-0.21077,-0.19752,-0.32473,0.045376,0.12222,-1.7444 -3.3865,2.347,0.28734,-0.54606,-0.11792,0.28375,1.2193,0.96249,-0.21874,1.4127,0.65972,0.63133,0.2501,-1.3843,0.47604 0.97527,1.8209,2.1488,0.79535,1.7091,-1.2865,-1.1663,0.20438,1.254,-0.30817,-0.63066,1.3708,0.27387,-1.616,0.39368 2.5002,1.1738,-0.40972,-0.32045,1.7028,-0.7434,-1.2171,-0.81394,-0.24326,2.1066,1.0733,-1.7891,-0.77456,-1.0576,1.0449 1.8568,2.2194,0.07953,0.69436,0.018404,0.87206,-0.60875,-0.79743,1.174,0.74588,-1.7516,0.25396,-0.91185,-0.6239,-1.3669 -2.1327,1.3687,2.1344,-1.4771,-0.88441,-0.027778,1.7692,-1.2475,0.9415,0.26773,-0.12531,0.55937,0.20912,-1.0694,0.61566 1.3367,1.4867,1.2444,2.4935,1.1251,0.59392,-0.95779,-1.8541,0.70729,-0.18566,-0.2883,0.97312,-0.26411,0.17141,-0.30804 -3.2258,0.25771,1.4825,-1.0449,-0.41248,-0.22956,0.95969,-0.45275,1.3332,-0.49388,0.97762,-0.09821,0.14638,-0.72914,0.51433 2.5709,0.28747,-0.80671,1.5597,0.92725,1.8012,-0.82709,-1.0413,-2.0113,1.2221,1.7926,-0.86025,1.5913,1.996,0.51987 -3.6783,0.68796,1.3194,-1.6015,0.063806,0.58239,0.91025,-0.056165,0.5481,-0.40853,0.98222,-0.56201,0.2826,-1.5131,0.33375 -4.0346,1.3457,-0.34878,-1.1198,0.34651,0.025101,1.7534,0.043523,0.5998,-0.33553,0.74785,-0.11215,0.36828,-0.3076,-0.90515 1.3103,3.0802,1.0487,-0.040179,-0.081047,0.83585,-0.16041,-0.51951,-0.29749,-1.3834,-1.2153,0.46422,0.99748,-0.30201,-0.50259 -0.10954,2.037,1.1483,1.6785,-0.28287,0.71259,-0.74797,-0.49297,1.6094,0.45535,-0.50923,1.2804,-0.21979,-0.62818,0.90859 -1.9172,1.4167,1.9398,-1.4605,-0.95049,1.4359,1.5246,-1.0152,0.55613,-0.34439,0.40173,-0.22945,-0.39776,-1.1107,1.0089 1.9747,2.4313,-0.36258,-0.04515,0.047652,0.46485,-1.2926,-0.69895,1.2988,0.58581,-1.0229,-0.14447,0.9686,-1.5393,-1.2954 0.42525,3.0216,-0.2972,1.4924,-1.271,1.7867,-0.43649,-0.18814,-0.6254,1.1883,-1.5488,0.25965,-0.78354,0.10865,-0.0056019 -1.7391,4.4251,-0.067359,0.085671,0.91945,1.5535,-0.46991,1.2512,-1.9126,-0.51094,-0.33601,0.71129,-0.20719,-0.56146,-0.89549 -2.7064,1.7444,-1.4851,0.39789,-0.076767,2.25,2.1325,-0.66937,-0.68566,0.81139,0.10673,0.70218,0.12988,0.4232,-0.67216 2.8722,1.6343,0.94664,0.8596,-0.18045,-0.65947,-0.50814,-1.8958,0.44399,-0.16976,-0.27497,-0.79949,-1.776,1.546,0.57982 3.6724,1.2822,1.5253,-1.5705,0.1424,-0.58945,-0.75287,1.3186,0.68476,-0.52632,-0.37453,1.0595,-2.1412,-0.694,-1.1775 0.7875,1.5194,2.5605,-1.2323,-1.4609,1.4085,0.56291,0.31807,1.3948,-0.91136,-0.55144,0.77572,-1.2508,1.301,0.13665 -1.3684,3.326,1.4328,-1.1642,-0.32866,0.77644,0.59081,-0.51678,-0.69961,0.61077,-0.54403,0.41439,0.17164,-0.39032,0.38316 -3.3744,2.1463,-0.52469,-0.16115,0.24605,0.73736,1.7058,0.44841,-0.35578,1.0554,-0.059637,1.0046,0.4328,0.54921,-0.020371 -1.6963,-1.1911,0.96888,-2.0453,0.50961,2.8639,-0.80419,-0.98878,-1.3058,-1.6301,-0.3217,-0.59365,-0.43274,2.195,-0.34325 -1.2524,2.2108,0.1875,0.07844,-1.529,1.9462,1.2613,-0.93824,0.27827,-0.093842,0.23273,-0.10221,-0.4005,0.038357,0.53304 3.6859,2.8414,0.27643,-2.1121,0.083567,-0.1489,-1.057,-0.81635,0.86297,-0.086859,-0.29022,-0.034518,-0.95248,-0.22738,-1.5025 3.7991,1.1182,-0.8886,0.38261,0.19022,1.9447,-0.37945,0.61637,0.76947,-0.39916,-0.76341,0.15421,-2.0066,1.0675,-1.791 2.7963,0.51341,2.7922,0.77922,1.2466,-0.053849,-0.21863,-1.8211,0.90824,-1.0442,-1.5179,0.90536,-0.93407,0.041216,-1.4946 1.1642,-0.013492,2.9144,0.19879,-0.020954,1.3665,1.3973,-0.43505,1.8832,0.0041233,-0.5178,-0.043827,-0.94399,-0.86069,0.75797 0.34027,1.2989,2.2351,1.3257,-0.093467,1.2602,-0.68968,0.39186,2.2369,0.14754,-0.40599,0.81093,0.53585,0.53291,0.79632 1.582,1.1662,1.4616,0.27998,-1.5106,1.1737,0.18039,-0.50769,1.4401,-0.94893,-1.2457,1.6333,-0.48246,0.041551,-0.96849 3.51,0.52077,-0.56338,-2.3024,1.834,-0.72135,0.35536,0.75462,0.069444,2.7249,1.2495,0.57044,0.90034,-2.3016,0.17968 -0.89143,1.016,2.5508,-2.2288,-0.6334,2.1594,1.5868,-0.036456,-0.2417,-0.45415,-0.86436,-0.27328,-0.68144,-1.0216,-0.15383 4.6465,0.75479,-0.7238,-0.097628,1.0928,0.91202,0.62605,0.05883,0.8731,0.16103,-0.65883,0.62574,-0.77657,2.4826,-2.0484 1.3156,1.0231,2.1282,0.61341,-1.32,1.7582,0.41975,-0.40606,1.6499,-0.32874,-1.2459,0.59564,-0.84597,1.4412,0.23567 -1.9821,3.2171,-0.45781,0.69526,-0.11703,0.90658,-0.1614,1.8502,-0.041416,-1.1755,-0.04067,0.98542,0.63941,-0.11488,0.33286 -3.5209,-1.615,-1.698,-1.1223,0.47504,-1.1969,-0.9546,-0.63855,1.1257,-1.3589,-0.66297,0.66528,-0.92613,0.99639,-0.13791 0.57562,4.0753,-0.4604,-1.6876,1.2089,0.32047,-0.38095,-0.4731,-1.598,-0.34993,-0.4058,-1.3388,0.13112,-1.3941,-0.24809 3.3908,-0.33307,-1.6289,-0.21724,0.37303,2.5227,0.40214,-1.6925,-0.34188,-0.70187,-0.12434,-0.97356,0.9399,0.8677,0.082382 -1.677,-0.8385,-3.1356,-0.26451,0.090626,0.80635,-1.1001,0.94014,0.1962,-1.5944,-1.1508,1.186,-0.50685,-0.51935,0.8435 -2.2486,-0.52367,0.25811,-1.4875,-0.91996,1.0384,-0.34809,-1.6774,1.4433,-0.32114,0.55214,-0.0093129,0.89717,0.72386,-0.24389 1.5789,3.2233,0.84437,-0.33928,-1.0195,1.7252,-0.39886,-0.60799,-1.8359,-2.2139,0.12682,-0.80091,-1.806,-0.23189,0.090039 -1.6092,2.948,-0.63803,0.81838,-0.7362,2.4219,-0.3363,1.166,-0.78291,-0.35774,0.094539,0.64057,0.6062,-0.80962,0.21061 2.0702,-0.27275,-2.8174,-0.38727,-0.36747,2.6723,1.6109,-0.35263,-0.0038338,0.57232,-0.54153,1.9654,-0.089479,-0.1587,-0.29279 -2.9726,-0.53843,1.5705,-1.7608,0.60611,-0.38796,-0.24353,0.23679,1.04,0.59047,0.87159,-1.0196,-0.023555,-0.35057,0.32894 -2.5502,-1.4572,-1.6876,-0.93397,-0.060817,-0.54932,-2.0239,-0.4587,0.30391,-0.62819,-1.0928,0.91638,0.47198,-0.56693,1.4353 1.2945,0.069208,-0.65213,0.36401,3.3424,-1.4302,-0.84885,0.1057,0.93956,-1.7766,1.2602,-0.34005,1.4341,-0.60128,0.13372 -3.9805,-0.94618,-0.013527,-2.3272,0.51468,-0.085793,-0.46488,0.3747,0.10353,-1.728,0.32047,-1.3082,0.28528,-0.48086,0.26291 -3.6316,0.071088,-0.033791,-1.3705,0.018527,0.14573,0.59326,0.48813,0.7518,-1.879,0.87942,-1.2177,0.17141,-0.87472,-0.090235 0.6693,-0.33683,2.8744,0.068587,-0.63428,1.3983,0.28731,0.44559,2.3859,0.52935,-0.85984,0.40364,0.15383,-0.19476,1.2063 0.59312,1.4355,1.0796,1.9419,1.1295,1.583,-1.7182,-0.2863,0.72531,0.52001,-0.10142,-0.26295,-0.48582,0.80872,0.59082 -2.3724,-1.3288,-0.70226,-1.4958,0.88506,-0.28721,-2.0457,-0.71859,1.0003,0.65751,-1.3339,1.3166,0.11314,-0.34159,1.9477 1.6149,1.5831,0.73266,1.7448,-0.57753,2.4429,-0.30159,-1.364,-0.42601,-0.081097,-0.52546,-0.34184,-0.077026,0.6563,1.1594 -2.7868,-1.5232,-2.1403,-0.92098,0.22386,-1.13,-1.031,0.10164,1.2886,-0.77954,-1.0539,0.158,-1.3159,0.27446,0.53762 0.039002,-2.8873,0.16892,-0.80891,0.14821,1.3927,-1.017,-0.97887,0.81562,1.397,-2.846,0.64688,0.16157,1.0149,-0.28243 2.7518,0.93115,0.47011,-0.48041,1.1003,-0.055578,-1.3,-2.3373,1.8866,0.5729,0.7412,-0.28244,-0.19195,0.49437,0.10729 -2.2994,-1.2588,-0.22424,-1.0296,-0.53307,0.89981,-1.282,-1.1291,1.5342,-0.018421,-0.355,-0.064632,1.1247,0.63937,0.19102 2.0592,0.65606,-2.6147,-1.5706,-1.0278,0.5904,0.47446,1.0101,0.74725,2.0988,0.69823,0.15136,-0.46544,-0.073776,0.92431 -0.7009,2.0878,-2.2953,2.1241,-0.0041322,1.4865,-0.45714,0.47257,-0.84113,0.71336,-0.58506,0.53268,-0.38746,0.79991,-0.43017 -2.6587,0.080923,-0.77762,-1.9091,-0.61078,2.1442,0.91544,-1.6998,-0.80015,0.35046,-0.62368,-0.90903,0.11877,-0.01835,-0.48913 3.4603,0.4901,-1.8889,-0.78376,1.3191,0.5018,0.56028,-0.47435,1.6309,0.95422,0.48901,-0.36454,-1.0793,-1.6581,-0.6122 -0.9011,1.5019,0.74667,-0.56966,-1.5895,2.2826,1.4129,-0.28859,0.40813,-0.50886,0.53184,-0.72144,-1.0649,-0.21582,0.75952 -0.64674,2.7169,-0.20855,0.47397,-1.2498,2.6089,-0.023089,0.88455,-1.7553,-0.70652,-0.26236,-0.37537,-1.2648,-0.66878,0.67869 -3.4091,-0.4145,0.34402,-1.2868,0.46813,2.5624,1.0445,-1.4599,0.23088,-0.87971,0.79566,-0.25351,-0.13864,1.1347,-1.1017 0.66495,3.2061,0.84103,1.347,1.1229,-0.35635,0.012254,-1.0295,-0.89092,1.9536,-1.1038,0.45457,-0.22891,0.18167,-0.65347 -3.6371,-2.0392,-0.60882,-2.044,0.7176,-0.28044,-1.9052,-0.14303,0.29327,-0.43626,-0.69409,-0.15593,0.32729,0.48794,0.9763 -3.376,-0.69801,1.013,-0.41788,-0.098643,2.5384,0.66907,0.22544,0.49869,-0.053846,0.51261,-0.33125,0.22334,1.8004,-0.84186 3.173,-0.85012,-2.4253,0.41909,1.8236,1.4833,3.4373,0.54827,-0.58763,1.0664,0.10739,1.9754,-0.65364,-0.92146,-0.49051 -2.3156,0.38021,0.86026,-2.2184,0.64484,1.7194,0.090642,-0.84212,-0.13343,-0.59782,0.93885,-0.48974,1.3991,0.95911,-0.068576 -3.3989,0.55211,-1.835,-0.3195,1.1617,1.9269,1.6124,-1.2849,-0.018907,0.84355,-0.65824,-0.4995,0.084327,0.86353,-1.6771 -3.4684,1.5025,0.44904,-0.70539,0.81726,2.1622,1.037,1.7479,0.095738,-0.6907,0.70764,-0.74919,0.14171,-0.45978,0.23038 3.0157,1.7377,-0.013247,0.35353,-0.26772,0.95262,-1.0489,-1.1187,0.95259,-0.094149,-0.54152,-0.43039,-1.2631,1.6061,0.16151 0.40209,0.046622,3.3394,1.1053,0.94573,-1.5129,-0.53873,1.2469,0.78706,-1.0906,-0.9225,0.83258,0.46343,-1.9543,0.10115 -1.2463,3.6361,0.0055419,0.62615,0.055196,1.9295,-0.55482,1.2745,-0.52068,-0.4683,-0.40251,1.0781,-0.19982,-0.47803,-0.44414 -2.4771,1.7603,0.33733,-0.18811,-0.090044,2.2598,1.763,-0.25148,0.18369,-0.64097,1.127,-0.13053,-0.61045,-0.058318,-0.89653 0.41756,1.9828,1.9005,-0.44331,-1.7322,-0.096491,-0.10661,0.23216,0.23935,-0.20158,-0.24524,0.58023,-0.49874,-1.831,0.62496 -2.8743,-1.8861,-0.084895,-2.5042,0.68853,1.1756,-2.1693,-2.0253,-1.8709,-0.29955,-1.2048,0.77826,0.15471,0.6449,0.93235 0.45031,1.7726,-0.7739,-0.22925,2.4448,-2.1392,-1.5591,0.84342,0.72808,-0.096334,2.1298,-0.65306,0.61929,-1.289,0.04214 -0.36453,1.591,3.0383,-1.378,-0.52643,0.40086,0.55947,-1.0958,0.51543,0.62229,1.3224,-0.51743,-0.84387,0.99737,0.29615 -3.1286,-2.5043,1.0582,-2.0238,0.94609,0.24778,-1.8529,-0.40298,0.99958,0.54781,-0.44872,-0.31567,0.2351,1.0702,0.8561 -1.6835,-1.751,1.2068,-3.1366,0.21146,2.4667,-0.59903,-2,-1.8429,-1.0062,-0.85043,-0.86058,0.0075038,1.59,0.2171 3.7052,-0.0087503,-1.3002,1.023,0.40469,2.4401,-0.67005,-0.15196,-0.30293,0.35899,-1.1964,-1.4696,-0.3824,0.29616,-0.083224 -2.2295,2.4202,-0.98527,0.98921,0.30332,2.9084,1.0474,1.587,-0.52712,0.53494,-0.63388,0.96247,-0.86029,-0.22899,-0.23346 -3.5647,-2.237,-0.62162,-1.3026,0.5462,-0.44665,-1.5143,0.26962,1.1926,-1.1402,-0.68423,-0.41624,-0.99086,1.5334,-0.24347 -2.9067,-2.9545,1.1471,-2.2537,0.95914,-0.49599,-2.1593,-0.84924,0.62411,-0.18472,-0.93308,0.32293,0.2379,1.1357,1.0974 -1.3015,3.0234,-0.19177,1.2298,-0.91327,2.6499,0.6658,0.62176,-1.0067,-0.45112,0.52724,0.11815,-0.18514,-0.80768,-0.061161 -3.5291,1.6104,0.46152,-0.20942,0.55823,1.383,1.1835,1.1998,-0.4706,-0.70244,0.59163,-0.093047,0.25934,-0.98877,1.1175 0.16929,-4.0141,2.0569,-0.71678,1.4878,1.1688,-0.2464,0.1446,0.64706,1.2204,-2.8357,-0.52249,1.0921,0.44705,-0.3938 -1.7345,-3.8256,1.8001,0.67852,2.2832,-0.075052,-0.57248,0.95509,0.67731,0.50389,-0.92211,-2.0842,0.43417,1.4014,0.10428 1.2969,-1.2811,-2.1614,-0.31426,0.39264,2.9588,1.5067,0.41592,0.20768,-1.3434,0.469,1.3697,0.57179,-0.25603,1.3356 -3.6965,-1.6393,0.6468,-1.9644,0.42428,0.27738,-1.3774,-0.25143,0.25989,-0.13475,-0.52237,-0.75042,1.1647,1.2397,0.6881 0.82612,2.3423,0.66852,1.4221,0.22247,0.16894,-1.1162,-2.363,0.87057,-0.18499,-0.1715,0.63266,-0.39856,1.0268,-0.37225 1.2782,-1.4429,4.2621,0.094555,0.51335,1.16,0.25687,1.0424,1.2064,0.19255,-0.94226,0.77338,0.90652,0.33053,0.14322 -0.14106,-3.0121,3.2844,-1.0863,0.46337,1.3186,0.063429,-0.32708,1.1576,1.7258,-1.4726,-0.85321,0.9241,1.0705,-1.0282 -3.564,-1.3613,0.68173,-2.0415,0.15996,0.17125,-0.61924,0.73008,0.79462,-1.291,0.34279,-1.7923,0.87016,0.15839,0.57034 -1.5248,-3.6188,2.1775,-0.55123,1.3152,-0.61726,-0.68425,1.1091,0.99575,0.87765,-1.5662,-1.7325,1.0957,0.4471,0.13526 3.419,1.6842,-0.54459,0.76708,1.0514,0.63215,-0.0065788,-2.2208,0.058879,-0.43438,-0.95666,-0.49315,-1.0994,-1.0622,-1.5329 3.7063,-0.80865,-2.0763,-0.5498,0.60001,1.3673,2.1635,-0.67301,1.4547,0.19022,0.96167,0.77398,-1.3839,1.3922,0.24087 -4.0396,-0.68876,-2.315,-1.4437,1.1113,-0.0021259,0.11374,-1.3978,-0.17762,-1.7543,-0.31646,0.62613,-0.35649,0.40278,-1.1429 -2.7988,-0.51652,-1.4176,-1.5554,-0.17768,0.50311,-0.23896,-2.1185,0.0041216,-0.71452,-0.51144,-0.096062,0.94311,-0.58117,0.41969 -3.2462,-1.5,-2.45,-1.4265,1.0805,0.70578,-0.92457,-0.90129,-0.0077888,-2.133,-1.1564,0.39514,-0.65282,-0.28252,0.56186 -3.2953,0.10658,-2.1345,-0.094601,-0.47729,1.8177,0.9105,0.34983,1.1899,-0.33545,0.38378,-0.62369,0.90955,1.0551,-0.94501 -3.1425,-0.48487,-0.56264,-1.0639,-0.35664,1.1566,0.22305,-0.29933,0.15077,-0.65126,0.53907,-1.5626,0.92276,-1.4698,0.64087 1.8333,-1.2665,-1.485,0.42794,2.0705,1.5052,0.37241,-1.4314,0.87193,-0.64919,0.60142,-0.08529,2.3139,-0.31762,1.2376 -3.9685,-0.3145,-1.0584,-1.8754,0.59413,-0.095139,0.13585,-0.75225,-0.35576,-0.07192,0.37853,0.31419,0.41511,-0.46617,-0.58918 -1.8242,-1.7913,2.8177,-0.82929,0.28389,0.63837,0.10472,-1.4747,1.6391,1.3597,0.37985,-0.4188,-0.42429,0.88432,-0.046515 -1.2023,-2.3268,2.2639,1.7145,1.5529,0.84027,0.80802,0.23206,1.6518,-0.40929,0.39942,-1.3573,0.078689,-0.37224,1.3095 -2.3679,-2.7757,0.25489,-0.32689,0.29568,-0.28434,-0.84227,-1.4226,1.6489,0.98519,-0.17135,0.46083,0.085206,0.59575,-0.60063 -2.2248,-1.5868,1.9684,0.13033,-0.17598,0.080185,0.38669,-0.67885,2.1555,0.33739,0.69354,-0.19333,0.26166,0.48314,-0.43389 -3.0479,-1.058,0.26379,-1.3712,-0.40803,0.59502,-0.20649,-2.1196,0.4339,0.49624,1.0911,0.95237,-0.37813,1.2344,-0.52671 -3.2826,-0.65068,0.15138,-0.63957,-0.66577,0.7393,0.18786,-0.11715,1.8502,-0.62526,1.2591,-0.39702,-0.018196,1.0195,-0.65455 1.1719,-1.5732,1.0156,-0.99466,0.10036,1.453,1.5017,0.79364,1.3368,1.2057,-1.3543,-0.58394,0.19425,0.92067,-1.6415 -0.17916,-2.7064,0.64514,-1.9405,0.58155,1.2022,0.36519,0.010179,1.2749,1.6511,-2.636,-0.73269,-0.21658,1.23,-0.14895 -0.79307,-1.1379,-0.79438,-2.2149,-1.0665,2.3372,0.43586,-0.40349,-0.44273,-0.83428,-0.60969,-1.1323,-0.21396,3.1369,-0.3577 -0.91328,-0.60331,1.1756,0.73866,0.37396,1.2179,1.0156,-1.2101,2.4527,0.57929,-0.2498,-0.69234,0.0097063,-0.85192,0.32078 0.02203,0.41946,1.4547,-2.0288,-0.22334,2.4275,1.0573,0.3839,1.5754,-0.040596,-0.093423,-0.8497,0.44896,0.14432,-0.10123 -4.1748,0.82847,0.076998,-1.2685,0.26978,0.35844,1.7521,-0.96105,-0.70477,-0.77873,0.53516,0.33268,-0.15224,0.26547,-1.0567 0.30003,-0.83463,-0.43272,-0.16429,0.18537,2.7062,2.0124,1.1318,-0.0023234,-0.53737,-0.37239,-0.76636,1.3261,0.24273,-0.71417 1.6171,3.043,-1.8506,-2.1499,0.1596,0.68085,-0.56888,-0.54316,0.083059,1.4037,0.58705,-1.0181,1.0018,-1.6065,0.58937 -3.487,-0.41096,-1.3521,0.2562,0.79775,-0.91229,1.9261,0.32157,1.0479,-0.35141,-0.42294,-0.95922,-1.036,1.0399,-0.74692 0.38203,1.1471,1.5543,-0.25142,-0.39133,1.2358,0.79604,0.60228,2.1485,1.1709,-0.28774,-0.38299,0.0070568,-0.1176,0.54519 -1.581,-1.0107,-0.43852,-0.81705,-0.30461,2.2886,-0.13412,-0.56029,1.7572,-0.39818,-0.87406,-1.2412,1.5198,0.55068,0.4578 0.32221,-0.10382,1.1893,-0.080386,-0.99585,2.0097,1.2707,0.75493,2.2772,0.24513,-0.82112,0.17104,-0.05478,0.45327,1.0581 0.68423,1.8574,-2.1324,1.041,-0.81115,1.2169,-1.0027,-0.74538,1.42,1.1627,-0.12432,-0.10872,0.33911,-0.17702,-0.27007 3.723,1.3806,1.0938,-0.89813,0.031657,0.40618,-0.11958,0.86473,1.2888,-0.51664,-0.42946,0.87532,-2.4451,1.3449,-0.73938 3.5547,2.1728,-0.49315,-2.4556,-0.39759,0.46594,-0.6694,0.82742,-0.70112,-2.2448,0.057854,-0.41546,-1.303,-1.1323,-1.1235 -0.13847,1.751,3.2815,0.65884,2.4857,-2.2538,-0.65318,1.9143,0.45398,-1.1629,-0.010101,0.014968,-0.073384,-0.081911,0.5392 -1.2738,-0.28664,2.9642,-3.3233,2.1874,2.0979,0.77051,0.37776,-2.1416,-1.5076,0.32516,-1.2195,-0.46836,1.1407,0.3095 0.7097,-2.5973,0.21895,-1.8138,-0.20932,1.4751,0.81862,0.041743,1.2978,0.73402,-1.6505,-0.69478,-2.0441,2.9446,-1.4627 1.2088,-0.040159,1.5023,-0.018288,0.5291,0.37364,-1.928,1.63,0.78664,-0.27486,0.31059,1.7497,2.1175,0.4262,0.0010962 2.1671,1.1873,0.54943,-1.5876,3.0826,-1.5953,-0.89388,1.0151,0.070642,-1.7447,1.4136,-0.86215,2.6919,-0.94892,-0.11305 -0.80753,-1.2559,-0.47526,-2.3134,-0.24822,2.6226,-0.72838,-0.91417,-0.85618,-0.24754,-1.638,-0.41634,0.46077,1.9451,0.51984 -1.9211,0.21672,0.2513,-0.013465,-1.0687,0.00097278,1.3389,-2.0699,1.6604,1.0861,0.3847,0.44925,0.37079,-0.28736,-0.61363 -0.86182,3.5516,-0.12108,-1.5675,1.3785,1.3061,-1.4652,0.93913,-2.2599,0.67736,1.3632,-1.0248,0.041823,0.21777,-1.0549 3.2189,-0.29841,1.5123,1.5082,1.1211,1.2915,-0.38296,-2.0214,0.069016,-1.7057,-1.0157,0.87655,-0.47045,0.30365,-0.96417 -2.1536,3.1697,0.33334,0.77806,0.56268,2.2159,-0.15878,1.8448,-0.11291,-1.5323,-0.29175,0.40371,0.59715,0.29042,-0.078681 2.0325,1.4991,-1.079,0.85387,1.3276,-0.021236,-0.92484,-2.298,0.81878,1.3,1.1074,-0.31791,-0.12294,-0.77578,-0.041559 -2.5745,0.95297,0.54556,0.84301,0.30831,1.2776,0.99688,0.5299,1.2416,-0.081185,1.6833,-0.29711,-1.7401,0.32714,-0.7708 -1.6196,3.4221,0.49109,0.72856,0.13429,1.4504,-0.21067,1.7366,0.10398,-0.60799,-0.010297,0.86577,0.57206,0.90626,-0.24631 -1.0961,2.4823,-0.27523,2.2546,1.2131,-0.70708,-0.60504,1.6573,1.3268,-0.21068,-0.85166,0.5577,-0.77922,0.67374,-0.16456 -2.4307,2.4349,-1.2492,0.15223,-0.68211,1.5484,1.1626,0.94203,-0.076721,0.99994,0.093449,1.3041,0.81157,0.40173,0.32099 -1.065,3.0247,-0.94078,1.8014,0.43542,0.73636,-0.62533,0.64167,0.40129,0.10442,-0.35383,1.1125,-0.73715,0.06082,-0.96312 2.8869,-1.903,-1.6444,-1.653,-0.37669,2.2213,1.6288,-1.6763,-0.6534,-1.8641,0.68516,0.70934,-0.28119,0.94507,0.52708 -0.79409,3.6063,2.0577,-0.032224,-0.052503,0.066813,0.12648,-0.37617,-0.38789,0.46129,-0.67627,1.4989,-0.40159,-0.42649,0.12531 -1.7551,3.0739,-0.23718,0.28657,-0.0413,1.777,-0.25381,1.3982,-0.579,0.17173,0.64063,1.5401,0.14887,1.2356,-0.13727 0.56673,-0.12786,1.587,-0.55486,2.6172,1.5539,-0.45342,0.26017,-0.63387,-0.61294,2.2452,0.87536,-0.57294,2.519,1.0101 -0.32559,1.2087,-1.5221,2.4042,-0.68426,1.0719,0.35784,-1.4241,-0.6624,-0.67639,-0.47198,1.1694,0.55443,0.69988,0.39166 0.81649,3.2653,-0.68331,-1.7599,1.0861,0.27724,-0.80322,0.24691,0.24369,0.78352,-0.75599,-1.0869,1.4853,-1.8671,-0.2132 0.20564,3.9383,0.65455,-0.35508,-0.45475,1.4881,-1.9859,0.14364,-1.5982,0.61814,-0.21882,-0.29611,0.20211,0.39463,-0.43219 0.65024,2.1052,-0.59593,1.9227,1.2226,0.2251,-2.0281,-0.22277,1.1632,0.49845,0.9242,0.40814,-0.11875,1.3927,-1.3366 2.883,2.4267,-0.99916,-1.7989,0.80882,-1.2178,-0.42695,-1.4802,0.6329,2.1558,1.1151,-0.74324,-1.0402,-0.58891,0.76744 3.565,0.40549,-2.3836,-0.3883,-0.21481,0.10243,0.10184,-0.4172,0.46197,0.55702,0.41627,-0.66691,-0.15273,0.0057911,0.050679 -1.1497,2.4046,-1.6902,2.0603,0.79199,0.32241,-0.34423,0.41812,0.43989,0.38253,-0.81453,0.4444,-0.14327,-0.34738,-0.1342 -1.3237,3.2466,-0.53971,0.80553,-0.84629,2.2977,-1.0107,1.0561,-0.80926,-0.55003,0.081969,1.2156,0.35618,-0.33534,-0.58924 -2.8831,1.9827,0.078311,0.65527,-0.2485,1.6289,0.26657,2.1867,0.55225,0.49154,0.15433,0.33761,0.30099,-0.35694,0.89268 -0.71654,4.542,1.4726,-1.3092,1.0002,-0.10832,-0.69606,0.22936,-1.9488,0.60163,-0.99169,0.16605,-0.28428,-0.2547,-0.4009 -2.8973,1.8597,-0.25878,0.76423,0.32678,2.2821,2.2268,0.20591,0.88567,-1.3892,0.39284,0.19414,0.49524,0.2044,-0.54758 -3.4572,-0.11839,0.41164,-0.23239,0.65989,-0.73357,1.2826,0.24492,2.2706,-0.78369,0.97066,-0.40058,-0.84109,0.41892,-0.27029 2.699,2.3251,-1.9096,-2.2039,0.2128,-0.77164,0.48234,0.061594,1.2391,0.96218,0.060594,-0.2577,-0.51295,-1.0413,-1.1892 -1.5905,1.2157,2.718,0.34758,0.27894,-0.89626,0.16327,1.3586,1.7692,-0.96749,0.34862,0.24447,0.20278,-0.96256,1.5976 1.2415,1.7064,-1.6623,-1.5741,-0.17619,0.46211,2.172,1.1447,-3.5175,-0.46141,0.91267,-2.3178,-0.55797,1.7219,-0.20592 -3.8966,0.13718,0.060456,-2.2013,1.3934,-0.33368,0.23498,-2.166,0.06862,0.11476,-0.23106,0.1221,0.98408,0.29446,-0.07594 4.3076,-1.6456,-1.4077,-1.4563,2.8138,1.9948,2.9859,-1.4126,-0.44538,-0.34944,0.9017,2.0939,-1.0153,0.0041708,0.54569 4.2819,-0.026971,0.25637,-0.12666,2.2879,2.67,0.15987,-1.4096,0.1772,-1.1907,-0.73741,-0.029993,-0.24672,0.30618,-0.88426 -3.4888,2.517,0.76646,-0.21647,0.44545,0.060074,1.3058,1.3486,-0.095054,-1.2353,0.6214,-0.058146,0.59824,-1.2189,1.2428 -3.3506,-2.0313,-0.57567,-0.93641,1.1015,-1.3882,-0.31069,0.17529,1.7076,-1.1288,-0.55541,-1.1326,-1.3794,0.81756,0.043861 1.3823,1.2347,0.8143,0.34606,0.49136,1.0929,-0.45672,1.7001,0.86934,0.91431,-0.71064,0.95883,1.7793,-1.3121,0.29603 -2.3662,-2.1259,-0.4658,0.097192,2.6044,-0.75066,-0.14679,-2.0513,1.3846,-0.095402,-0.62725,0.29124,0.43885,-0.10466,0.39941 -3.9102,-0.051153,-1.2011,-1.7023,0.65668,-0.29703,0.56857,0.25947,0.97635,-1.1562,0.437,-0.97912,-0.57604,-0.82087,-0.61748 -3.8213,-1.1273,-1.0496,-1.6007,0.68431,-0.8291,-0.0097422,-0.18987,1.1403,-1.9558,0.0089217,-1.0445,-0.29592,0.86512,0.080861 1.3826,2.3415,1.1501,1.0028,-1.1452,0.918,-1.3062,-0.97313,0.90396,0.75582,-0.71809,0.42439,-0.88841,0.46426,0.32974 -3.459,-0.99501,-1.119,-2.0552,1.4262,-0.92353,-0.89222,-1.4317,0.26103,-0.97352,-0.63699,0.80962,1.0951,-0.080936,0.64819 -3.6992,-0.036893,-2.6534,-1.4525,1.9015,-0.46477,-0.67361,-1.222,-0.34591,-1.5021,-0.76131,1.8383,-0.022991,0.61565,0.25713 -2.7108,-0.64633,-2.4623,-1.7287,1.3523,-0.48215,-1.2415,-0.83365,0.34166,-1.929,0.017916,1.1536,0.14038,0.52849,1.4149 -3.6566,-0.28443,-2.7612,-1.4216,1.9585,-1.6939,-0.74732,-0.20587,0.17878,-1.1837,-1.2454,1.3087,-0.80313,0.62642,0.75026 4.4398,0.81241,-0.67155,-1.3114,2.0845,-0.053127,0.11475,-1.1979,-0.65418,0.54664,0.0044852,-1.1512,-1.4359,-1.9949,-0.65235 -3.9684,0.083174,1.5732,-2.7215,0.87371,-0.94807,0.78646,-0.91798,-0.43428,0.19866,-0.20554,-0.8157,0.31885,-1.3654,0.47446 -3.4352,2.4525,-0.42862,-0.49036,-0.045971,1.4087,1.8996,0.39101,-1.1996,0.80594,0.35096,0.45624,0.78243,-0.61117,0.48675 1.9481,2.3893,-1.5647,-0.79838,-0.060524,-0.21946,0.62779,-0.21212,1.0158,-0.41294,-0.85841,0.4181,-0.65759,-0.9898,-2.3032 -3.2991,2.1713,0.65958,-0.5036,-0.32568,0.94946,1.7885,-0.83115,-0.80922,-0.15228,0.94523,0.75488,0.59653,0.10443,0.10755 1.777,1.3434,0.5938,2.1416,0.61185,-0.18547,-1.4487,-2.5469,0.22342,-0.40211,0.16759,0.80681,-0.024722,0.2263,-0.38365 -1.358,3.4344,1.8333,0.048816,-0.16117,0.76917,-0.23282,-0.61444,-1.2393,-1.9037,0.25855,1.1075,0.63559,0.44325,0.14203 -3.8163,1.1441,1.6469,-1.0552,0.72449,-0.75193,1.1489,0.59209,0.76668,0.46725,1.0926,-0.37941,0.1445,-0.18905,-0.20822 -3.8198,1.0113,-1.1125,-0.15573,0.44988,-0.44789,1.684,2.0581,0.37089,0.47238,0.05292,0.027974,-0.29129,-0.092906,0.2376 -0.27635,1.7099,2.5216,0.61361,0.90315,0.32738,-0.67999,0.69068,0.68075,-0.94298,0.80617,0.57588,-0.96267,0.37447,1.5986 -2.4133,3.8578,0.59074,0.15277,0.27371,1.0531,0.52087,0.51382,-1.1763,-0.31326,-0.022748,1.4671,0.37559,0.080067,0.095849 -1.1312,3.166,0.11154,-0.64646,3.0539,1.2786,-0.14456,0.026847,-0.81041,-1.6165,0.56289,-0.4216,-0.29334,0.41996,-0.99213 -2.4663,3.7466,1.414,0.40512,0.88311,-0.46218,0.068918,2.1066,-0.19517,-0.093716,-0.11677,0.79505,-0.054946,0.2978,-0.16921 -3.7156,2.8715,-0.42905,-0.055912,0.88233,1.2298,1.0746,2.726,-1.2605,0.052765,-0.12258,0.2563,-0.59109,-0.51105,-0.015063 -3.4215,2.8845,0.44825,0.040521,0.22324,0.63144,0.83997,1.5624,-0.39928,0.16188,0.23473,1.0752,0.12164,0.014536,0.17992 -1.4836,2.9948,1.2153,1.507,0.95992,-0.6881,-0.69636,0.45393,0.80078,-0.32757,0.0069412,1.5895,-0.51261,1.3485,-0.20797 4.1145,-2.5071,-0.76447,-1.3984,0.70446,1.3811,1.2622,0.010658,0.54453,0.98703,1.2449,3.0395,-0.69354,-1.3126,-0.57888 -4.5818,0.94251,-1.6398,-1.1587,2.0158,0.26,2.1038,0.40678,-0.67067,-0.21053,-0.17406,-0.40124,0.07478,-0.34299,-0.64629 -2.5213,4.0174,0.93525,0.055173,1.06,1.2752,0.48386,0.96424,-1.4187,-0.99211,0.034149,1.0414,-0.20733,-0.38837,-0.22861 -4.4119,0.81301,1.574,-1.1303,0.81842,-0.5732,1.3825,-0.034988,-0.11417,-1.0249,0.53716,0.44185,0.060362,0.071608,0.27579 -0.68307,2.2319,0.68166,1.9279,0.10347,-0.81043,-0.37107,-0.1098,1.147,0.23147,-0.57119,1.5777,0.33303,-0.5381,0.18447 -2.0451,3.5269,0.0086065,0.27846,-0.37047,0.94669,0.25626,0.70677,-0.51237,-0.96754,0.032593,1.3524,1.2344,0.46493,0.31243 0.59995,2.3237,2.9414,-1.8425,-1.0941,1.3188,0.43843,-0.46664,0.26835,-1.2441,-0.090359,0.86446,-0.76891,0.05288,0.34342 0.45263,-1.8071,4.3896,0.41199,1.1876,0.27268,1.2864,0.27065,1.4063,-0.28587,-1.1369,0.37855,-0.011803,-0.28211,0.28951 -0.58366,3.5986,1.6035,0.2698,0.39982,-0.11298,-1.1129,0.65611,0.2691,0.35227,0.58429,1.5012,0.15906,-0.31106,-0.15164 -2.4284,1.7712,-1.3961,0.32429,-0.66075,0.49464,1.2274,2.2213,0.53119,-0.77971,0.02597,-1.2283,-0.79104,-0.92241,0.60106 -0.20457,3.08,0.31933,0.5444,1.7514,-0.56675,-2.5765,1.6412,0.31035,0.27407,0.77081,0.5365,-0.21519,-0.11949,-0.86195 0.37846,1.9302,2.9373,-2.4485,0.57903,0.88406,1.3608,0.53689,-0.078876,-1.321,0.35587,-0.2907,1.1477,-0.41979,-0.49404 2.5922,-1.8482,0.92484,0.97925,3.2407,2.6029,0.77494,0.66927,-1.24,0.47867,-0.61515,-0.32131,1.6077,-0.36533,0.51692 1.9298,1.5246,0.67543,0.57561,2.3015,-0.51195,-1.6364,-1.5843,1.389,0.57963,0.93958,0.74304,0.32539,-0.34957,-0.47987 0.026058,4.2086,0.37357,-0.31769,-0.65897,1.8245,-0.34675,0.074867,-1.3892,-0.12706,-0.7549,0.3053,0.30109,-0.12371,0.19392 -0.51762,0.9263,2.2457,0.9101,-0.58837,0.55442,0.060336,0.12427,2.4688,0.14242,0.09376,0.45979,0.5517,0.74532,0.91373 4.7996,-0.04127,-1.0797,-1.4177,2.2856,-0.35317,2.5892,-0.0051573,0.19555,0.89336,0.79484,0.088115,-1.6977,1.2639,0.14592 2.0915,2.1705,-1.7696,0.77817,0.50305,1.0984,-0.010022,-1.5615,0.16518,0.75285,-1.1005,-0.41576,0.27533,-0.7604,-1.3617 -1.6044,3.5463,1.644,-0.12136,0.30876,0.87923,0.59255,1.0078,-0.51319,0.74148,-0.63529,0.13923,0.92966,-0.77312,0.83483 3.4393,0.67757,-2.3232,-0.8245,1.8175,0.82,1.8644,-2.2843,-0.75688,-0.56057,0.1302,-0.35516,-0.72813,-0.56326,-0.75398 4.3693,-0.04434,-1.4118,-3.8025,1.562,1.212,0.42769,1.5349,-1.3506,-0.80758,1.9478,0.18555,-0.36068,-1.5143,-1.1171 -1.7955,2.5777,-1.5591,1.0928,-0.06261,1.155,0.23872,0.65104,-1.2786,1.2799,-0.34213,1.1325,-1.0018,0.080741,-0.83374 0.37218,0.21142,3.5874,-2.3776,0.69095,-0.092259,0.6319,0.77353,1.2281,-0.45437,0.079107,-0.0094954,1.6811,0.67484,-0.35198 -2.5866,-0.88597,-0.3173,-2.0047,0.75153,1.239,-1.4856,-0.19514,0.20591,-0.045715,-0.29246,0.25425,0.55715,1.1174,1.0362 -2.412,-0.55595,-1.7628,-0.24165,-0.99675,0.78054,-0.21945,-0.83709,1.6277,-0.067109,0.15152,-0.40994,0.94423,0.40082,-0.045645 -1.8049,1.9828,2.2706,-1.2471,-0.46839,1.3595,0.72289,0.56084,-0.72496,-0.3172,0.36586,-0.71516,0.29098,-2.3864,1.4006 -2.1715,-2.1994,3.1868,-2.2642,0.32588,-0.40035,0.52538,-0.50538,0.6772,-0.43553,-1.0308,-0.54294,1.0896,-1.2152,-0.71122 2.2787,2.6718,-0.31466,-1.4427,0.25932,-0.24412,-2.1887,-0.39354,-0.17128,1.0413,0.78674,-1.4309,-0.82525,-0.18898,-0.086043 2.2602,0.10499,-1.3785,-1.9543,0.61904,0.07005,0.19646,1.1848,1.1065,0.62719,-0.070096,1.754,1.9769,-1.8216,-0.77915 -3.4599,0.36248,-1.2676,-0.61757,-0.16962,1.2701,0.92835,-0.83003,-0.49375,0.62327,0.78832,0.44473,0.6008,-0.35559,-0.62959 3.1116,-4.0559,-0.30864,-0.072015,0.26695,0.17066,1.5682,2.2057,-0.84853,-0.21658,-0.66509,1.1906,-0.65051,4.1494,-1.3211 1.6911,1.813,0.03037,1.9215,1.3152,0.11322,-1.1182,-2.7069,-0.30722,-0.052152,0.35593,-0.01681,-0.0102,0.83323,-0.031649 -1.8531,3.7985,0.066979,0.050795,-0.11998,2.0312,-0.17514,1.1937,-2.6351,0.6068,-0.68174,0.49854,-0.52623,-0.18227,0.11077 0.23286,2.3988,-0.48727,1.1896,-0.2142,0.52442,1.9861,-0.98172,-0.94375,0.88156,-2.3115,0.68849,-0.96641,-0.32549,0.38787 3.3585,-2.3152,-0.87139,-1.4694,3.4059,-0.0033751,2.8053,1.4017,0.20798,0.39891,0.58959,3.1117,0.75147,-1.5199,0.78433 0.64638,-0.45244,3.008,-1.2945,-1.4807,1.9053,1.0144,0.50356,1.5088,-0.57237,-0.99194,0.23823,-0.33578,0.54161,-0.574 -0.073483,1.5947,1.5817,2.0729,0.30913,0.41486,-0.24916,-0.20512,1.558,0.19334,0.53549,1.0399,-0.17608,-0.23388,0.20988 3.6219,0.052539,-0.5125,-4.0644,2.2031,0.031894,0.5481,1.7732,0.44725,0.3175,1.4087,1.2078,2.0859,-1.3136,-0.085805 1.8794,0.19303,1.4139,0.5848,0.89042,2.6892,-0.36894,-0.58062,0.39656,-2.6435,-1.6392,0.77225,1.2282,-0.74091,0.51771 2.9357,2.4633,-0.75311,0.19644,1.3063,0.82898,-0.72145,-1.7074,0.51339,1.205,-0.12686,-0.95169,-0.33899,0.44279,-0.10533 3.2308,-0.44206,-0.4974,0.14518,0.70085,0.93731,0.40878,-2.8296,-0.33442,-1.0567,0.97228,-1.8154,0.12775,1.1611,1.116 2.4606,0.80193,-1.6037,-3.1979,0.74406,-0.70716,1.1862,2.2289,-0.24245,0.36336,0.97053,0.64268,1.3649,-2.5528,0.55847 2.975,2.8836,0.01238,-2.0386,0.40777,-0.37827,-1.2497,-0.62357,1.1891,0.14571,-0.729,-0.13416,-0.085218,-1.5487,-1.4125 0.25378,0.94638,3.6965,-0.48721,-0.64399,0.55054,1.1534,-1.0064,1.6227,-0.45173,-0.56853,0.73795,-0.77612,0.54862,0.47836 -2.5084,1.358,-1.0985,-1.0568,-0.70797,0.44391,1.3583,-1.9051,-0.31462,1.161,0.092949,-0.18608,0.9728,-0.21161,-0.46368 -2.7438,-0.75637,-3.0668,-0.97812,0.60857,-1.0703,-1.199,-0.066443,0.91468,-1.3135,-0.83174,1.3311,-0.80768,0.078685,0.64967 3.0238,2.2746,0.084471,-0.66858,1.4212,-0.42956,-0.72529,-1.1944,1.7694,0.42583,-1.1421,0.24182,-0.12945,-1.5806,-1.5079 2.8615,-0.80537,-0.36938,-2.0552,2.0834,-0.43385,1.2592,-0.12929,1.6917,0.26048,0.98471,2.0911,1.354,-1.9907,0.19934 -1.209,0.81006,0.42277,-1.4856,1.0752,2.2084,0.52205,-1.0048,-1.5371,-1.4733,0.67213,-1.2793,-0.25885,1.5171,-0.12744 0.82154,1.0421,1.6419,0.5162,-0.31885,1.0551,-0.94123,0.71937,2.2499,-0.58551,0.017356,1.1447,1.0742,0.22536,1.4284 0.45233,3.2707,0.52364,0.1193,-1.3694,1.1465,0.35975,-0.29389,0.41163,0.24728,-1.1879,1.1359,0.19397,0.68538,-0.036519 -0.94159,-0.68031,0.68652,2.6733,1.2854,1.3038,-0.73701,0.36404,0.50713,-2.3841,-0.54613,0.17008,-0.17453,0.10948,1.5963 1.1971,2.3871,-0.27371,1.1718,1.0913,0.36003,-1.3715,-1.8399,0.21071,0.55482,-0.047186,-0.43014,-1.0986,0.12556,0.060179 -0.24044,2.0292,-0.77732,0.45512,0.55803,-0.33308,-2.1275,0.75115,2.0932,0.015363,0.68365,0.29263,0.87973,0.1683,-0.22101 -0.25019,1.5956,1.9548,2.0427,0.28117,1.2067,1.3423,-1.7056,0.92294,0.34905,-0.28968,0.59547,-0.76672,0.059942,1.2661 -1.1358,-1.6109,2.9179,-0.26652,0.57538,0.43457,2.4443,-1.7231,0.80705,0.083902,-2.0025,0.78083,-0.4977,-0.8274,-0.4897 1.0199,2.3484,-2.8652,-0.3729,-1.4387,1.268,-0.69142,0.19739,0.84551,0.18671,-0.67413,-0.63659,-0.0066134,-0.37439,-0.86614 -3.5201,1.4104,-0.70566,-1.0867,-0.081243,1.4082,1.6345,-1.8918,-1.2352,0.49363,0.81444,-0.20556,0.40351,0.40443,-1.2692 1.9806,2.091,-0.96285,0.16236,1.9181,1.0253,-0.52649,-1.1016,0.73034,0.12269,0.33133,-0.45345,2.298,-0.88106,-1.065 -3.2104,0.2535,1.0072,-1.5551,-0.28204,0.045554,0.46541,-1.335,0.76883,0.40086,0.80227,-0.42424,0.39179,-0.21335,-0.25101 -4.0737,-0.86804,-1.7075,-1.3211,0.82083,0.43169,-0.1533,-2.0476,-0.83874,-1.3887,0.048898,0.91294,-0.075842,0.47769,-1.2939 3.5329,-0.079418,-2.1646,-0.39208,1.3427,1.6681,1.4569,-1.863,0.79374,-1.4666,0.45064,-0.19478,-1.1708,-0.31825,-0.51025 1.3176,2.4636,-1.3287,0.17711,1.2143,-0.13992,-0.48783,-0.62392,1.3736,0.99005,-0.53109,-0.56056,1.9377,-0.80802,-0.46981 1.7613,0.90834,-2.7033,0.45168,0.29039,1.1863,0.5251,-1.5548,0.277,1.2153,0.65413,0.13168,0.19261,-1.0714,0.84388 -0.157,0.11671,4.2722,-2.3884,-0.15377,0.89204,1.1232,-0.22543,0.57492,0.30018,-0.079293,0.17033,0.46031,0.65012,-0.021649 -2.5967,1.3666,-1.0494,0.34425,-0.32968,0.73904,1.0624,1.6125,1.4179,-0.061053,0.35542,-0.60661,-0.74278,-0.91371,-0.14345 -1.1479,1.6122,2.6612,-2.037,-0.78513,0.95921,0.86835,0.36737,0.37599,0.02258,-0.27809,-0.21315,0.26711,-0.63045,0.98144 -2.2892,1.3858,-0.95091,0.67764,-1.6103,1.3584,0.27854,0.89078,0.96577,-0.049291,0.64442,0.43395,0.73648,0.10751,0.5368 -0.90028,-0.77633,3.4239,0.56136,0.15788,0.7037,1.1285,-1.5247,2.042,0.61284,0.13144,-0.015479,-0.36167,0.41369,0.64088 -3.1372,-0.95746,2.7448,-1.3816,0.47533,-0.13419,0.33015,-0.3631,1.645,0.15413,0.60295,-0.62765,-0.10348,-0.02229,0.62805 -0.43551,2.5107,-0.20184,2.4775,1.4391,-0.21925,-0.86813,-0.68869,0.50673,0.14623,-0.28779,0.87937,-0.040852,1.2658,-0.72038 -2.1876,3.4944,-0.20467,0.49906,0.2078,1.3241,-0.29959,1.6282,-1.1769,0.63865,-0.16052,1.3754,-0.6386,-0.60319,-0.42682 -1.9146,3.7734,-0.31589,0.29351,1.2301,-1.0123,-0.63607,2.5866,-0.18342,-0.27437,-0.92907,0.042746,-0.33154,-0.142,-0.37525 -1.3449,1.5331,2.439,-2.0786,-0.53637,2.096,1.2271,-0.30869,0.11706,-1.1985,0.5483,-0.85121,-0.36267,-0.92427,1.0033 1.5998,1.4713,-0.7477,1.106,-0.4647,1.2719,-0.9995,-1.197,1.1785,-0.6127,-0.81863,-0.83297,-1.142,0.40704,0.40926 -3.2934,-0.86117,1.66,-1.4255,0.34992,0.3559,0.0072387,0.56064,1.7793,-0.32372,0.6802,-1.4709,0.47492,0.21018,0.80936 -2.9327,-0.75493,1.3989,-1.2269,-0.40876,0.99437,0.10216,0.25782,1.942,-0.40455,0.98123,-0.93243,0.67439,0.3347,0.51477 -0.45175,1.3741,-0.77647,1.0367,0.10126,1.5863,1.6205,-0.50796,1.0255,-1.3913,-0.95985,1.8908,0.69579,-1.5762,0.24528 1.6095,2.8336,-0.13533,-2.9896,0.23391,-0.083449,-0.81247,-0.19469,-1.45,1.4605,0.85921,-0.52464,-0.47137,0.17821,0.69842 -3.053,-1.4756,1.3058,-2.9,0.32467,0.59494,-1.2279,-2.5549,-0.48541,-0.25406,-0.54789,0.56152,-0.041972,1.1809,0.14038 1.6582,3.1575,0.022837,-1.1363,-0.8639,-0.38321,-0.073883,-0.437,0.62788,-1.4663,-0.39807,0.23663,-1.105,0.95583,-0.079379 -2.708,-0.21669,-2.5223,-1.095,1.2304,-0.29441,-0.86727,-1.0198,-0.23091,-1.5463,-0.84286,2.4218,0.10471,0.57086,1.2692 3.0692,0.97039,0.76347,-0.83811,2.4968,-0.086258,-0.50664,-0.9423,0.68735,-0.74042,0.37108,1.0345,1.506,-0.85958,-2.2415 1.6057,2.4591,-1.6422,-1.5027,-0.60914,0.94639,-1.3521,-0.92378,1.0102,0.066395,0.24564,-0.72197,0.52657,-1.2475,-0.43773 4.1925,-0.63969,-0.86122,-2.1385,2.1247,1.5444,1.794,-1.296,-0.95114,-2.0151,0.29238,-0.65029,-1.2884,-0.55268,-0.95564 -3.3032,-1.0459,-2.3472,-1.6404,0.93556,0.379,-1.5266,-0.70068,0.35565,-1.6106,-0.83702,1.8414,-0.32967,0.92478,0.50257 -3.4789,-1.7482,-1.1797,-1.869,0.49429,0.25644,-1.8921,-0.51054,0.52655,-1.3802,-0.4304,1.0291,-0.114,1.0235,0.50046 -3.6723,-2.1736,0.11462,-1.9033,0.60442,-0.26348,-1.3889,-0.60139,0.92569,-0.78179,0.13133,0.24912,-0.1802,1.5975,-0.023566 2.0165,-0.98787,-2.9034,-1.0412,-1.9332,1.5664,0.77578,1.4363,1.6832,0.94539,0.54778,1.4852,-0.91978,0.99118,0.61207 -2.531,-3.0811,-1.2398,-0.33617,1.2907,-1.4251,-1.8373,-0.002301,0.72562,-0.94062,-1.1933,0.82178,-1.6086,1.0591,1.3819 -2.8398,-1.4083,-1.7704,-1.2449,0.29893,0.57658,-1.9021,-0.37222,0.9509,-0.042385,-0.7877,1.2859,-0.27119,1.8027,0.56188 0.19492,0.43348,2.9442,0.36618,-0.79786,0.8072,2.0815,-1.9817,1.0861,0.27979,-0.41869,0.19118,-1.3346,0.55053,0.051618 4.1073,0.33664,-0.17061,-0.86372,2.319,0.92869,0.50787,-2.2374,0.073943,-1.3789,0.082538,0.63391,0.085053,-0.4864,-1.5057 3.9667,-0.48473,-1.6485,-0.49,1.6473,1.8723,0.75008,0.20656,0.80683,1.2419,0.021281,-0.19661,-0.50147,-0.9724,-0.9137 -0.59286,-1.8382,1.235,-0.041219,-0.033974,0.76751,1.4996,-3.1087,1.4427,0.33735,-0.79867,-0.34883,-0.35494,-0.0067149,-1.2373 -2.949,2.1254,0.22363,-0.52522,0.054183,1.9753,1.1964,0.51246,-0.69031,-0.059223,1.4892,-0.36113,-0.4897,-1.1675,-0.86115 0.39486,1.7336,0.8913,0.82699,1.3243,-1.1132,-1.748,1.257,0.89286,-0.88765,0.68996,0.29586,1.4566,1.3384,-0.82466 -2.7447,-1.6588,0.1259,0.038977,-0.051419,0.27909,-0.37941,-2.0455,1.5661,0.64376,0.38034,0.081083,-0.46551,0.87992,-0.58537 -2.9992,0.65151,-2.6868,-1.4021,1.1924,0.79685,0.34153,-2.0508,-2.3283,0.73215,-0.94092,1.0362,-0.11185,0.59227,-0.75099 3.5077,-0.0053758,-1.8367,-1.5737,2.1506,-0.25171,1.7576,0.64881,0.14714,2.0704,0.58351,0.41888,-0.97821,-2.2896,0.67658 -1.0779,-2.8034,0.45179,-0.38673,1.1358,0.23635,-2.128,-1.2709,0.62383,0.99499,-0.85493,1.8124,-0.17849,2.1082,1.6123 3.1488,-1.4466,-1.3491,-0.59387,1.2392,2.0273,2.0873,0.14548,-2.023,1.4011,-1.3137,1.9404,-0.97614,-1.2018,-0.38798 1.8856,1.8878,1.9915,-2.6691,1.1497,2.8266,1.4373,0.94774,-2.1039,-1.4077,1.5254,-0.38666,-0.8885,1.0407,0.23469 -1.3194,2.1237,-1.2805,2.4068,-0.40616,1.0022,0.92067,0.28958,-0.35258,0.45396,-0.2823,0.80546,-1.0173,0.48841,0.045179 1.7508,2.1731,2.8323,-1.6236,0.38205,0.025032,0.38134,2.2606,-1.0575,0.95621,0.16118,0.063568,-0.92241,0.35861,1.0734 0.078219,-0.61983,0.96113,-2.1718,-0.9029,1.0555,-1.481,0.55274,-2.5303,0.98249,1.3145,1.262,0.55163,3.1208,-0.2467 0.014023,2.4347,-0.37596,0.72768,1.6983,0.2906,-1.1542,0.0055369,-0.58085,1.8827,1.1026,-0.29952,-0.74806,0.70806,-0.75922 -3.2794,-0.26318,-0.30054,-1.6205,0.92677,2.2273,0.51279,-1.8397,-1.1649,0.38455,0.50341,0.21312,-1.167,-0.59859,-0.50847 -1.1356,-0.11451,2.9834,-0.51086,-0.29116,0.17826,1.6008,-1.8645,1.2502,1.1418,-0.23513,0.35755,-1.1635,-0.041164,-0.086295 3.13,0.88605,-0.38843,-2.0436,1.5455,0.4415,-0.067253,-0.25868,1.0214,-0.35422,0.20074,1.0023,2.0252,-1.7053,-1.2177 -1.6819,1.1501,2.8545,-1.3676,-0.85008,2.2273,0.62934,-0.42521,0.046359,-0.54101,0.1499,-0.3656,0.24645,1.1582,0.52336 0.4849,0.43763,4.1055,-1.4608,-0.28561,1.3081,0.42807,0.50235,1.4317,-0.271,-0.40073,0.64489,-0.23756,1.4709,0.45905 2.3718,-0.66604,2.844,0.31165,4.2502,0.82014,0.69071,0.93827,-2.1146,-2.1042,-1.4503,1.14,0.90869,0.25134,-0.10995 -1.0584,3.2181,0.71316,1.5205,0.15915,0.7719,-1.1963,0.96943,-0.43435,1.4249,-0.016511,0.92156,-0.76039,0.25825,-0.44909 0.93819,-1.7837,3.5763,-0.40581,1.3141,1.7537,2.2443,-0.32129,1.204,0.66552,-1.2292,-0.82487,-1.2883,0.81521,0.20884 -0.11676,3.2131,-0.52238,0.59337,0.10615,0.40202,-0.49011,-0.077631,-0.79316,2.637,-1.1112,0.23507,-0.51678,-0.24939,-0.33175 0.023056,3.7223,-1.226,-1.0395,0.32965,0.93365,-1.613,0.49192,-1.1528,1.2011,0.60686,-0.10371,-0.17742,-0.57353,-0.51892 -1.787,1.3043,3.1336,0.93712,1.0649,-0.85911,0.62784,0.69454,1.0646,0.69734,0.36415,0.02322,-0.88959,-0.9156,1.5377 0.70281,0.88369,4.0828,-0.43965,0.6583,0.69411,0.61417,-0.024035,1.8242,0.60314,-0.013742,0.15169,-0.58668,0.94761,0.62482 -2.468,-0.29125,2.4984,-3.1845,0.32149,0.83027,0.75321,-0.79338,0.10433,0.38005,0.1013,-1.1568,-0.46955,-0.18681,0.91004 -1.1658,-1.448,3.4877,-1.3511,0.6833,0.67429,0.68178,0.47593,0.88751,1.769,-0.12284,-0.95494,-0.15298,0.6876,0.93994 -0.94638,2.2846,2.9921,-1.8353,-0.19321,1.1013,0.90815,-0.46327,0.26521,0.063078,0.56028,-0.44918,-0.38393,0.28233,0.56422 -1.3307,3.2452,-0.098793,0.52993,0.2184,0.31004,-2.2127,2.4321,-1.9097,0.24785,0.4553,-0.09751,-0.52234,-0.13919,-1.1778 -2.3398,0.19347,0.69867,-2.4376,0.34462,2.1212,1.0658,-1.6818,-0.41973,-0.61805,0.053935,-1.5952,-0.42117,-0.86281,0.13147 2.6507,-1.3563,-1.0563,-1.9093,1.5014,4.0457,0.58491,-0.24521,-0.11711,-0.68252,0.081539,1.0825,1.1136,-0.027161,-0.46484 1.0313,2.7243,3.6149,-1.0343,0.032456,-0.035174,-0.48176,-0.47185,0.32604,-0.039754,-0.56603,0.99209,-1.1496,0.53262,0.32428 -1.5942,-0.72995,4.3107,-0.56814,0.94073,-0.20771,-0.2177,1.1013,1.4287,-0.26503,-0.12519,-0.57418,0.29304,0.55048,0.38619 -1.4365,0.59123,4.3034,-1.6924,0.074246,0.10616,0.819,-1.4482,0.89272,0.60468,0.02696,0.031919,-0.72269,0.42164,-0.32965 -3.2698,2.2987,-1.2382,0.40547,0.47857,0.83462,1.2635,2.7206,-0.71274,-0.059924,-0.58287,-0.64581,0.048826,-0.59006,1.315 1.4698,2.2971,-1.6836,0.74773,1.1376,0.13941,-0.32344,-1.7623,0.2659,1.6859,-0.065987,-0.85491,0.12575,-1.0541,0.50613 -4.0657,0.16834,-0.7191,-1.2505,0.28949,-1.1279,1.3567,1.2664,0.75001,-0.76551,0.29907,-1.0911,-1.0342,-0.54975,-0.23695 -2.0464,1.6304,2.6394,0.71546,0.90192,-0.82762,0.19686,0.6615,0.90325,0.22095,0.65388,1.1424,-0.88204,0.30627,0.46873 -0.10457,0.83986,3.099,2.4516,2.8132,-0.22824,0.67864,-0.62736,0.099045,-0.52668,-0.30562,0.67445,-0.25444,-0.23844,1.1108 1.7712,-1.7617,1.7302,2.1147,3.606,-0.44778,-0.7015,1.8522,-0.97903,-3.0267,-0.21175,-0.27057,0.72013,0.74493,1.3471 0.23549,0.63971,2.3371,0.69294,0.37802,-2.083,-0.73102,2.9009,-0.026689,-0.79256,-0.41993,-0.45187,0.10706,-1.3128,0.74167 3.1047,-0.24754,-1.0194,0.43647,0.28295,3.9328,0.31239,0.023136,-1.0368,-0.8701,-0.96798,1.742,1.7282,1.2678,-0.83393 -3.0771,-0.49346,-2.6807,-1.0026,0.35201,0.99668,0.70573,-1.0123,1.1289,-1.5392,-0.79743,-0.41229,-0.25773,-0.84566,-0.59927 -1.7691,-2.9951,2.3433,1.2478,2.4655,-0.13746,1.2492,-1.0275,0.076661,-0.85763,-0.046347,0.044594,0.61225,-0.30803,-0.047661 0.17834,-0.16667,1.6891,1.6646,-0.54349,1.598,-0.3324,-1.1237,-1.2415,-1.0297,0.79485,0.6374,0.098015,1.0745,0.70622 -0.93843,-0.41075,2.3881,2.6388,2.4053,-0.40797,0.84544,0.80916,0.98263,-1.5946,0.35902,-0.42634,-0.73168,0.42169,1.7101 1.0476,1.4553,1.0502,-2.083,-1.298,-0.12936,-1.01,-2.1679,-0.82175,-1.7767,0.5662,-0.15323,-0.084182,1.8402,0.11417 3.9814,-0.30434,-0.37991,0.15156,0.58303,0.95823,-0.71864,-2.2691,0.41211,-0.86078,-0.18893,-0.15513,-1.3052,-0.47534,-0.99256 -4.4487,0.6584,-0.85946,-0.76556,0.93968,-0.17062,2.1111,0.64365,-0.67097,-1.6551,0.13981,-1.5338,-0.13307,-1.2774,-0.16815 -0.4384,3.3636,0.7403,-0.25869,0.93399,0.44415,-2.0437,1.4378,-1.6938,-0.5863,-0.43345,-1.1047,0.86491,-1.8209,-0.36731 -2.3984,0.098249,2.1466,1.7948,2.3973,-0.79678,1.2508,1.1695,1.1395,0.59655,0.60177,-1.4618,-0.87779,0.23496,0.38762 -3.7303,-0.13189,0.9701,-0.67307,0.8311,-1.6491,1.3968,1.137,1.335,-1.0336,0.59177,-1.1879,-1.0767,0.57039,0.23691 1.0474,-2.1743,3.6264,1.8679,2.6906,1.306,1.1156,1.1225,0.36778,-0.8778,-0.348,-0.30849,1.1604,0.95239,0.54727 -3.5037,1.8645,-0.21018,-0.53972,0.62447,1.7799,1.4933,0.11227,-0.90706,0.50994,0.57176,-1.5067,0.58094,-1.7611,-0.040304 0.86121,3.9396,-0.29179,-0.83772,0.60775,1.6963,-1.334,0.358,-1.5244,-0.85464,-0.87865,-1.1188,-0.29227,-1.3535,-0.023283 -0.80833,4.2168,-0.14217,0.40767,0.52842,2.2912,-0.54174,0.88238,-1.6699,-0.58075,0.15584,0.42667,0.32293,-0.37053,-0.091279 5.7957,-0.99508,-1.3384,-1.3415,2.8909,2.0542,2.3484,-0.37978,-0.37328,-0.8829,0.99902,0.1283,-1.1212,-0.095703,-0.63874 0.91556,2.4034,-2.0414,-0.44322,-1.5411,1.2491,-0.78457,-0.79449,0.75827,-0.50723,-0.65844,-0.038239,0.69889,-0.079274,-0.3402 -3.3614,1.771,1.2759,-0.45874,0.14748,-0.57533,1.0276,1.4892,0.6076,-1.0974,0.99875,-0.37749,0.15348,-0.90982,1.0202 -0.25902,3.9541,1.1954,-0.99643,-0.18727,1.1067,-0.30566,0.59348,-1.7495,-1.26,-0.79539,0.26396,-0.77689,-1.3318,0.87434 2.1898,-0.18527,-0.28081,-1.3193,1.7332,-0.91872,-0.16194,-0.51037,2.7678,1.0909,1.146,0.77723,1.1212,-1.4037,1.1195 1.5274,2.5307,1.7212,-0.53054,-0.79264,0.42207,-1.5948,-0.38949,1.1476,-0.45941,-0.71732,0.63385,-0.7977,0.37268,0.37754 1.8681,2.2105,3.1882,-0.72613,0.0085247,0.1523,-0.47343,-0.019072,0.70669,0.56067,-0.45716,1.1009,-1.0155,-0.81923,0.33576 2.7504,0.84435,2.1131,0.1726,1.2959,-0.388,-1.8461,0.047044,1.3372,-0.3246,-1.0079,0.46894,0.36743,-1.9067,-0.5687 3.5868,2.0085,0.81041,-2.9344,1.0881,-0.34399,-1.107,-0.67898,0.66338,0.30115,0.80678,0.513,-0.81369,1.0114,-0.038346 -3.0542,2.7264,-0.18228,-0.035062,-0.14923,2.2735,1.1884,1.3473,-0.44021,0.066882,0.28283,0.77368,0.74644,-0.5773,0.47875 1.4647,0.19512,-0.0010402,-0.18204,3.378,-1.5683,0.77614,-0.01515,-0.82095,2.1192,1.6625,-0.14139,-1.2472,-0.68103,2.137 2.285,0.92435,2.2343,-0.25297,1.5839,-0.1931,-1.7139,0.37364,0.82508,0.17178,-1.8101,1.015,1.3149,0.44474,-1.514 1.6838,-0.67027,4.2488,-0.2017,0.84737,1.5883,1.4153,-0.0054518,1.3168,0.67472,-0.63629,0.46251,-0.4038,1.0086,-0.64271 2.5896,1.052,-0.67461,-4.6941,2.3209,-0.96341,1.0919,1.2189,-0.17137,-0.84853,1.8329,0.39745,0.54436,-1.6131,1.3529 -2.9701,1.9128,0.87316,-0.81912,0.05106,1.1918,1.6145,0.15918,-0.74702,-0.40285,0.41722,0.62452,0.29052,-1.431,1.1864 -1.4854,1.0144,2.194,0.39612,-0.53999,1.47,0.4373,0.23441,1.5944,0.76007,0.47866,0.42408,-0.2637,0.36991,1.051 2.9826,0.9946,0.36673,-2.8914,1.1758,-0.15258,-0.66307,-1.3518,2.3205,0.64534,1.5877,0.40644,0.17615,0.14692,0.76527 1.0001,2.7648,-1.4611,-2.8162,1.5741,0.68651,0.72235,-0.96075,-2.3479,-0.60934,1.7185,-0.21817,0.5916,1.3127,1.015 1.8991,-1.0455,-0.36504,-3.5961,-0.73744,0.6759,0.91021,0.6553,-0.054354,-0.70454,-0.52689,2.3809,-1.397,2.3807,-0.59098 0.88863,-1.0526,-2.3442,0.8642,0.10841,1.7708,1.0413,0.86246,1.3855,0.26791,-1.2653,1.2566,0.67543,-0.24752,-0.18692 -1.6509,3.6043,0.078725,-0.22509,0.95865,0.49313,-0.75721,0.50581,-0.49665,0.62758,-0.033199,0.67077,-0.70118,0.0091215,-1.0223 -3.14,0.31646,-0.20712,-1.4521,0.33871,2.2571,0.34021,-1.8626,-0.47244,-0.45502,0.76735,-0.22066,-0.071955,0.5896,-1.2992 -1.4039,3.0608,0.30473,0.024992,-0.53664,2.3184,0.011668,1.0991,-0.92339,-0.38375,1.133,-0.3398,0.81322,-1.1232,0.44421 1.9875,1.12,2.3407,1.1112,2.7829,-1.0129,-1.3574,-1.0877,1.0181,-0.90282,-0.21651,0.93791,0.55635,-0.29701,-0.73905 4.4354,-0.15448,-1.676,-1.1938,1.6192,-0.43053,1.8963,-0.35663,0.52952,1.6335,1.0496,-0.70399,-2.4346,-1.174,1.1924 1.2076,4.166,0.64719,-1.5938,1.1697,0.0033136,0.28391,0.23038,-2.5986,-0.35237,-0.98723,-2.1748,-0.929,0.18502,-0.17601 3.7366,-0.97691,-1.1906,-1.7754,0.92031,-0.16045,1.7834,0.42829,1.0482,1.5957,1.4273,0.80577,-2.7618,-0.38726,1.9944 2.9751,-0.67057,-3.4016,-0.49314,-0.81251,0.3905,2.7451,0.99221,-0.78036,-0.2196,0.020195,1.8703,-0.27294,-0.82317,-0.58554 -0.3487,-1.6259,1.1284,-0.42926,-1.231,2.2844,0.94024,-0.43074,1.4554,0.37831,-0.79719,-0.023523,0.82482,-0.79878,-1.3786 3.829,0.46464,-1.1577,-2.9439,0.80061,-0.96654,1.2688,-0.16291,1.392,1.5642,1.6372,0.52692,-2.3916,-0.056334,1.3292 3.6904,1.8556,-1.0636,-0.35389,2.0373,-0.50516,0.39378,0.046939,-0.43373,2.3091,-0.87816,-0.7167,-1.9952,-0.56705,-0.62551 3.3734,-1.3666,-0.79262,-2.4547,2.4045,1.5783,1.3694,0.61017,-0.36977,0.62318,0.48257,3.1115,1.5948,-0.48539,-0.74065 1.2517,2.8684,-0.59943,0.23653,2.2977,-0.52412,-1.9294,0.5719,0.41383,0.84418,1.5003,-1.1038,0.56135,-0.62311,-0.68834 3.1243,2.1913,-2.0177,-3.4335,0.25941,-0.83059,0.42243,0.10889,0.29124,1.6038,1.5435,-0.61774,-0.98868,-0.52576,1.3811 4.1216,0.43118,-2.0362,-1.5883,1.0994,-0.86721,1.5064,0.0084442,0.21585,2.0627,0.65927,-0.47975,-1.7682,-1.6318,1.0607 -2.8381,3.0236,-0.35953,0.27719,-0.29905,1.3089,1.1301,0.74384,-0.89658,0.23223,0.10927,1.0753,0.71419,-0.32388,0.43304 3.5699,0.3082,-1.5217,-0.070055,1.955,0.69927,0.70473,-1.1083,0.85688,0.75211,0.41179,-1.438,-1.2924,-1.6877,0.10638 2.6945,-2.4962,-0.36985,-0.080138,1.7865,2.6572,0.97725,-0.68001,-2.1913,1.6041,-0.45341,2.0928,0.20875,-0.25947,0.42036 -2.7322,2.543,-1.6795,0.26006,0.28085,0.18818,0.66605,3.3509,-0.39008,-0.17825,-0.92323,-0.1875,-0.58485,-0.88999,0.63108 3.0261,0.94254,-0.17214,-0.70957,2.6595,-0.60023,0.71756,-2.6238,0.36697,1.4328,0.94133,-0.80268,-1.737,-0.49108,1.3744 1.34,2.4563,-0.10739,0.46714,2.0819,-1.2925,-1.7472,-0.88772,0.17594,1.8424,0.23743,-0.59338,-0.33261,-1.594,-0.16339 1.2393,3.3787,0.83275,-0.45857,-0.48514,-0.024524,-1.7284,-0.86359,0.17425,-0.056204,-0.050721,0.41483,-1.1688,0.68727,-0.1332 -0.60917,3.4548,-0.38464,-0.018103,-0.25393,0.35023,-1.7963,1.2138,-0.16709,0.90812,-0.95903,0.070763,1.4273,-0.84666,-0.16605 2.6916,2.0613,-1.4708,-1.7584,0.49258,-0.80489,-0.18933,-0.39943,0.36047,2.3342,0.92889,-1.3041,-1.9082,-0.57493,0.82972 2.215,3.3621,-0.8041,-2.3914,0.58735,-0.87225,-1.1864,-0.32794,-0.26139,1.6512,0.6585,-1.4142,-1.4161,-0.52811,-0.027935 -4.1806,-0.72862,-0.77778,-0.97656,-0.16062,1.0609,-0.085115,0.63686,-0.18471,-0.39801,-0.14915,-1.4347,0.89845,0.38695,-0.59605 2.7047,2.1136,-0.62186,-0.64656,1.7877,-0.97255,-0.47743,-1.1122,0.32207,2.1721,-0.27581,-1.2613,-1.2845,-1.7302,-0.14666 -0.84386,-2.5206,0.045065,-0.18736,0.086014,2.3798,0.22109,-1.36,1.7022,1.1847,-1.7965,-0.86699,0.77566,-0.21943,-0.6859 3.2004,1.2657,-0.84192,-1.6717,1.2081,-0.48455,0.15402,-1.2467,1.1814,2.0785,1.3634,-0.67243,-2.133,-0.35512,1.246 1.851,-0.15692,-1.3957,0.81442,0.93302,2.0359,-0.72042,-2.497,0.3616,-0.80406,1.1043,-0.35025,1.2008,0.53565,0.39586 -0.43551,-0.44511,1.9915,-2.6029,0.42754,2.2136,0.3099,-0.21337,-0.67411,-0.80064,1.1538,-0.37826,-0.85423,2.821,-0.23555 -1.4108,-2.7996,1.9851,-1.0418,0.43809,-0.13197,1.0712,0.28778,2.0222,0.23394,-1.1079,-0.66267,0.88752,-0.95222,-0.66719 0.62291,0.054372,3.3172,0.25812,-0.32072,1.4875,-0.02945,0.56938,1.2165,1.2898,-0.23356,-0.078518,-0.87542,-0.28705,1.8553 1.6648,-0.32645,0.59222,-4.4747,0.020451,1.2204,0.61964,0.56633,-2.3598,-1.3366,-0.21273,1.1659,-0.35962,2.5303,0.43845 -1.9845,2.0758,-0.93367,1.287,0.26923,0.82879,1.2002,-0.088238,-0.97571,1.5502,0.017358,1.1543,-0.84958,-0.29733,0.70034 -2.1057,1.0435,-1.7482,1.4162,-0.18884,0.97473,1.0197,0.68646,0.64852,0.68773,0.43895,0.37809,-0.99811,0.19529,-0.19151 -4.0123,-1.1374,0.083657,-1.7052,0.31259,-0.35569,0.24481,-0.5607,0.56882,-1.0251,0.40155,-0.62968,0.15341,-0.65338,0.18906 -4.3285,-0.37837,-2.0123,-1.4725,2.4637,-0.84287,0.45748,-0.43963,-1.1007,-2.0801,-1.1851,-1.052,-0.2987,-0.27185,-0.018388 1.6626,0.69401,-0.87165,-1.0232,2.3124,-1.051,0.51706,0.083186,1.1662,2.2696,0.47004,0.97536,0.8851,-2.3495,1.0855 -3.5304,-0.46541,0.50191,-1.2227,-0.21874,0.5179,0.42827,0.95853,1.2904,-1.0356,0.80121,-1.2183,0.33032,-0.16723,0.42241 -0.35118,0.73187,-1.056,2.5232,0.34395,0.61476,-0.26584,0.27649,1.6398,-1.6082,0.047689,0.28787,-0.27553,-0.36031,1.2614 -0.68108,3.1803,2.1246,0.91943,1.7189,-1.6247,-0.28516,-0.55515,-0.15108,0.30353,-0.23108,0.97019,0.14923,1.0554,-0.57709 -3.5357,-0.26447,-2.5119,-1.2533,0.35524,0.22438,-0.12745,-1.0465,0.1266,-0.89118,0.045553,0.59253,0.32975,0.37779,-0.94044 -2.8255,-1.7275,-2.6278,-0.67225,0.75154,-0.095367,-1.7343,0.19713,1.2947,-0.54692,-1.1418,0.58597,-0.84611,1.3164,0.87745 2.6251,0.93205,-1.5726,0.58666,-0.17072,0.31267,-0.22167,-1.9962,1.2382,0.11617,-0.19952,0.052735,0.21705,-0.34188,-1.0254 1.2919,-0.027292,-0.78042,-1.8309,2.826,-0.58776,0.5638,1.245,-1.5349,1.8521,1.5608,0.29311,-0.25751,-1.9344,2.03 -3.7866,0.67569,-1.5587,-0.85719,0.83374,0.3313,1.0266,0.50996,0.67091,-0.36586,-0.6044,-1.2559,-0.76722,0.12955,-1.2309 -0.20309,-1.8045,1.8308,-0.32688,0.032621,1.3204,1.3113,0.84052,2.6154,0.39794,-1.0916,-0.83215,0.72418,-0.10911,-0.47441 2.2545,1.8033,0.31141,-0.87252,2.0494,-0.6925,-1.4315,-1.8468,0.0274,1.4927,0.82164,-0.83735,-1.7883,-1.0251,0.28942 3.2041,2.9354,1.0302,-1.5061,2.8749,-1.1854,-0.13129,-0.36215,-0.48454,1.4915,-0.89644,-0.77111,-0.71359,-1.126,-1.1512 2.9581,1.2172,-1.2171,-0.041973,1.3843,0.079533,0.50764,-1.7602,0.66459,-0.45409,-0.59426,0.70185,0.17228,-0.53005,-1.6578 0.28007,-1.3168,3.6739,-0.82182,-0.037966,1.1968,1.4097,0.1226,1.6496,0.091495,-1.0733,0.27172,-0.016315,0.28305,-1.2522 -1.7645,-2.1059,1.3663,1.5918,1.8314,0.086703,1.1,1.3457,1.1889,-0.69044,-0.36189,-2.1799,-0.80676,0.19619,0.95345 1.0307,2.5251,-0.45925,1.0093,-1.1525,0.76241,-0.11277,-0.91669,0.66091,0.21745,-1.5101,1.0218,0.60598,-0.089583,-0.69772 -0.9679,-0.85325,1.6558,2.113,2.5876,1.3853,0.85066,1.0508,-0.075868,-1.8556,0.62087,-0.70043,0.29121,1.1844,1.9577 -0.78937,-4.752,-0.051365,0.010768,2.8173,0.62645,-1.3754,-0.46942,0.022594,-0.16472,-2.7853,0.69759,0.93905,0.22815,1.3011 -2.4979,-2.3419,0.40409,-1.3111,0.30962,0.53201,-1.5414,-1.0364,1.6056,0.58964,-1.1497,0.17707,0.38433,1.3094,0.68524 -2.5442,-2.244,-1.1888,0.21784,1.0479,-0.66064,-0.84442,-0.85991,2.0285,0.70558,-0.6746,-0.31475,-0.048981,0.48361,0.32555 3.0148,1.1284,1.315,-0.8179,3.1249,-1.662,-0.93155,-0.63332,0.69697,1.1911,0.18945,-0.43774,-0.0055358,-1.6743,-0.30084 3.7972,-0.97044,-2.0399,-1.2165,1.4489,3.0429,2.8098,-0.5404,-0.75451,-0.81902,0.69576,0.1421,-0.20557,1.069,-0.14942 -1.238,2.3143,-0.048424,-0.15061,-1.4578,-0.22726,-0.20118,-0.77881,-0.37895,0.039841,-0.034439,0.55657,0.035661,2.083,-0.11346 0.019603,3.7124,0.97177,0.49209,0.71704,-0.10766,-0.78887,-1.3016,0.28505,0.39626,0.054842,0.9112,-0.7558,1.3865,-0.84583 -3.4497,-0.66948,2.1793,-2.8367,0.69434,1.0615,0.11333,-1.1007,0.039914,-0.6461,0.41818,-0.37656,0.281,1.1715,-0.051244 2.6567,-1.6733,-0.062938,1.1905,4.1635,-0.60011,-0.81786,1.405,-0.44826,-0.72845,0.40708,-0.93043,1.9797,0.42914,0.00943 -1.2865,3.0381,0.66574,1.0933,-0.16041,0.36773,-0.24034,-0.1995,0.56941,0.69021,0.18923,1.6407,-0.62599,1.0253,-0.55383 -3.9364,-0.81059,0.30119,-2.122,1.5605,1.359,0.37376,-0.7624,0.20494,-1.6052,0.40986,-0.50576,0.13618,1.0826,-0.72065 0.29256,3.801,-0.22858,0.03906,-1.6668,0.71254,-0.95993,0.2582,-1.4894,0.80537,-1.3652,-0.079452,-0.60424,-0.0063306,-0.070216 -2.7949,1.2429,-2.8476,-0.66556,-0.13879,1.5,0.98915,0.24292,-0.50701,0.70599,0.49082,0.59187,0.038291,-0.41184,-1.3918 -0.59351,2.0869,2.9753,-0.24351,-0.50677,0.92426,-1.334,0.94409,0.066193,0.047749,1.3526,1.051,-0.94853,-0.17362,0.44319 -2.7691,-0.94246,-1.4401,-1.7966,0.45772,0.90424,-1.898,-1.8036,-0.13524,-0.60127,-0.77648,1.9176,0.45959,0.52782,0.88401 -1.9524,-1.2338,2.9914,-0.99682,1.4923,-0.20017,0.040931,-0.0054703,1.8042,0.656,0.65432,-0.88052,0.13013,1.7245,0.25477 -2.3234,2.1825,-1.2413,0.28537,-0.74489,1.5356,1.2043,0.74137,0.74964,0.70361,0.11648,0.99122,0.18519,-0.55468,-0.06345 -1.1207,-0.18231,2.826,1.2554,0.88324,1.0256,0.54221,-0.060952,1.387,0.72684,1.5259,0.144,-1.4504,0.67824,0.62335 -1.513,1.3431,2.3795,0.56826,0.36433,0.48336,0.53016,-0.56981,0.45714,2.4393,0.93303,-0.40727,-0.82518,0.92222,-0.22415 -3.951,0.94909,-1.6765,-1.1394,0.069151,-1.1776,2.2808,1.3112,0.047648,-0.57024,-0.43687,-1.2027,-0.2418,0.066219,-0.36976 -1.8426,-1.4962,2.1009,-0.53177,0.11713,0.26609,-0.21646,0.28132,2.6333,0.59071,0.047062,-0.89071,0.89085,0.89894,0.0063284 4.3335,-0.36118,-0.28456,-2.7679,0.54692,-1.3254,1.396,0.042727,-0.11477,1.7736,1.265,1.6295,-0.98203,-1.4203,0.63465 -1.042,0.68081,0.71556,-2.4083,-0.41338,2.333,0.21155,-0.74061,-0.18142,0.92622,0.083502,-0.84606,0.74183,1.894,-0.015643 3.0407,1.1409,-0.054167,-0.28519,2.0784,0.59569,-0.75345,-0.93873,1.6635,0.68462,-0.37763,0.43593,0.99698,-0.92174,-1.6842 2.5016,1.8789,-0.50233,1.053,0.056794,0.60243,-0.88767,-1.8451,0.76791,0.3733,-0.78422,-0.82481,-1.0198,-0.98609,-0.80233 2.6973,1.1103,-0.97594,-0.87158,-1.4498,1.2913,-1.3251,-0.3969,1.236,-1.9331,-0.58952,-0.65029,-0.22102,0.8502,-0.80096 -0.15158,-0.88469,2.1528,-0.11665,-0.10789,1.2712,0.82881,-1.4011,1.1666,1.8538,-0.21786,-1.0696,-0.18355,2.2944,-0.58012 -1.9608,-1.9608,2.6933,0.86936,2.3146,-1.1939,1.2383,0.46325,1.682,-0.41602,0.7482,-1.1528,-0.5857,0.91622,0.95192 -3.2231,-1.9444,-0.038771,-0.67243,1.5235,-0.13085,-0.48526,1.014,1.58,-0.77733,-0.64611,-1.5048,-0.99921,2.3075,-0.35155 2.9145,2.29,-0.33872,-1.9447,0.52251,-0.65358,-1.131,-1.6259,0.6081,1.4129,1.133,0.11148,-0.91521,0.87255,0.036902 -3.3395,0.032644,-1.1414,-0.57605,0.66513,2.2723,1.397,-1.1179,0.87436,-0.49841,0.077989,-1.0327,-0.46156,0.42039,-1.5681 3.121,-0.79198,-1.7729,-3.7274,0.7876,-0.93083,1.637,3.0945,-0.35283,0.84918,1.6166,1.8149,0.62828,-1.3876,-0.049302 1.6747,1.8318,2.5817,-0.38487,-0.7531,0.59089,-1.0858,-1.042,0.71893,-0.81312,-0.76697,0.32397,-1.6238,1.8019,0.17161 0.1919,-1.2663,2.9784,0.10287,0.49984,1.4079,0.42274,-1.4611,-1.4254,0.069908,1.2943,-1.0077,-0.81561,3.0215,0.24448 -2.6817,1.5521,-0.45761,-0.23958,-0.5098,0.099656,1.1624,-0.79873,-0.13303,2.2864,0.89583,0.44858,0.056713,-0.62729,-0.43423 -3.5014,-0.021185,0.64552,-0.0076419,-0.051758,-0.049013,0.95023,1.3323,1.9124,-0.82917,0.9444,-0.6834,-0.73157,0.005918,0.26422 1.6982,3.8613,0.52696,-1.8217,-0.38959,0.68078,-0.17186,1.0002,-0.80456,-1.6416,0.2889,-1.205,-1.617,-0.047535,0.52887 -4.4245,0.65908,-0.99687,-0.98166,1.0061,0.59716,1.9704,-0.75133,-0.34608,-1.0882,0.4269,-0.54899,0.35542,-0.0436,-1.2957 -2.5641,-2.7015,1.9853,-1.3401,0.91712,-0.33345,-0.36688,-2.1123,1.0244,0.77948,-0.61845,-0.13187,-0.22637,0.87654,0.37523 -2.6698,-0.73834,-2.6329,0.66621,0.73925,-0.94964,0.57758,-0.51497,1.5215,-0.20027,-0.16332,0.18637,-0.60851,0.77087,-0.65894 -3.8994,-0.54422,0.70987,-2.0164,0.35007,1.1514,0.27402,-1.9174,-0.32144,-0.85895,0.9667,0.14342,0.010306,1.2632,-1.0756 3.8327,-0.20584,-2.1066,-1.6332,2.3811,0.50724,3.4355,0.16734,-0.62201,0.92995,0.067219,2.3018,-1.6016,-0.99718,-0.11486 3.3359,1.6204,0.62116,-0.3603,1.5354,-0.20544,-1.719,-1.599,0.17402,1.3113,0.67653,-1.2104,-1.4618,-0.44795,0.57907 4.2032,-0.32345,1.7562,-0.024403,3.3761,-0.14232,-0.70177,-1.7802,0.063695,-0.3612,0.46575,-0.27009,0.084091,0.14003,0.29623 3.0349,1.8193,0.3773,0.5264,0.44968,0.48326,-0.33434,-0.42662,0.97272,-0.70938,-1.0896,-0.33172,-2.1485,-0.92485,-0.27191 0.7375,-2.9998,2.9188,0.40427,2.8213,2.3565,1.0235,0.86819,-1.9223,-1.4652,-0.36874,-0.25039,2.5455,1.2767,-0.020575 -3.4602,1.9396,-1.3256,-0.23482,-0.088044,1.2274,1.3884,2.0939,-0.36111,0.84242,0.47944,0.25599,-0.23276,-0.50566,-0.67148 -3.742,-0.3843,-1.6647,-1.6847,1.3877,0.60902,-0.33973,-2.7831,-1.0361,-0.8689,-0.35066,1.3979,0.25394,0.81046,-0.74877 -3.6088,-0.9871,-2.5944,-1.0297,2.0091,0.47761,0.20702,-1.874,0.13165,-1.3975,-1.5003,0.81426,-0.87137,-0.016194,-0.7125 -2.5132,-0.22874,-3.6763,-0.65096,0.98447,0.13734,0.75685,-1.8865,0.44344,-0.68898,-2.0933,0.45488,-0.52684,0.49353,-0.32844 0.1593,1.3991,0.83083,2.7627,1.6378,0.39429,-1.1252,-0.68489,1.0524,-0.61115,0.14158,0.77418,-0.59914,0.12556,0.49628 -2.0209,0.056979,0.34572,0.79921,-0.17382,0.32723,0.88103,-0.39632,2.0953,0.10921,1.3125,-0.21406,-0.58655,-0.47848,-0.17571 0.42527,-0.17107,-0.27918,-2.9958,0.53577,1.478,1.0358,1.6946,-1.4297,-0.83527,-1.0171,0.97695,1.7184,-0.27565,-0.036549 -3.0832,1.6722,-0.86609,0.096747,0.18809,2.195,2.5667,-1.1077,-0.8322,0.71749,0.18513,-0.4535,-0.186,0.12656,-1.2525 1.211,2.6034,-2.7753,-0.79343,-0.62573,1.6952,-0.39634,-0.62516,0.38716,-0.48092,-0.1868,-0.93362,0.14976,-0.76767,-0.6451 2.5298,-1.9944,-0.13952,-2.7112,-0.77353,0.64423,0.77925,1.2629,-0.83668,0.33024,-1.6157,1.3763,-1.2677,3.5557,-0.93618 -3.1962,0.52791,-2.0652,-0.80399,0.96399,1.3885,1.1679,-2.1977,-0.72368,0.65276,0.12192,0.80352,-0.063199,0.48198,-1.5737 2.9385,1.2282,-0.65713,-0.23567,1.3158,0.67938,0.28872,-2.3965,0.29881,-0.21588,-0.30839,-1.7262,-0.6119,-0.61552,-0.088216 2.7903,-0.8382,-0.44226,-0.53315,0.79392,-0.65216,1.6334,-0.045868,-0.66619,1.6837,0.479,-0.15334,-1.937,-0.64377,2.3078 -4.3432,-1.2463,0.052217,-2.7501,1.8689,0.087287,-1.2223,-0.5507,-0.76176,-1.1358,-0.32623,-0.067154,0.076749,0.73497,0.098385 -1.7091,-2.7764,1.4022,-2.8305,1.7374,0.18087,-1.7924,-0.41448,-0.5009,1.0731,-2.4014,0.59543,0.23764,2.1333,1.4367 -2.9883,0.99984,0.35903,-0.0072982,0.27563,0.76934,0.37015,-0.54822,0.56329,1.1894,1.1014,-0.69287,-0.44604,0.7152,-1.2322 -2.8498,-1.7003,-1.2994,-1.8477,2.3098,1.6259,-1.9448,0.023309,-0.53368,-1.4402,-1.2592,1.8058,-0.16144,1.3035,1.6485 -4.0067,-0.26488,-1.6976,-1.5343,1.6631,0.43445,0.078813,-1.8809,-0.5483,-1.3392,-0.43731,0.40912,0.29576,0.00076802,-0.42943 -3.3337,-0.26021,1.1177,-2.9253,3.0286,1.2873,0.02697,-1.0868,-2.2103,-0.79557,-0.26063,-1.1354,-1.1068,0.11968,0.35438 0.6283,2.3808,-1.028,1.49,0.69536,0.7971,-0.52186,-1.9775,-1.5498,1.2417,-1.2487,-0.6011,-0.38583,-0.3812,0.024047 -2.3136,-2.1591,-0.23652,-0.95481,0.059047,-0.12929,-1.1958,0.22499,2.0031,0.68995,-1.1415,-0.69602,0.81702,0.26319,0.41411 -1.7306,-1.4882,3.749,-0.7209,2.1563,-0.8106,0.92716,0.18513,0.96554,0.49383,-0.22227,-0.89525,-0.33465,0.039309,0.62406 -0.66757,2.2357,-0.0042189,1.328,0.32967,0.014891,-2.2208,0.6212,-0.60722,0.83089,1.1887,0.66606,-1.247,0.97922,-1.6528 2.0863,2.625,-0.86385,-1.0763,-0.85754,0.99439,-1.2704,0.33211,0.22047,-0.97702,-0.23887,-0.65682,-0.78261,-0.14213,-0.32451 -3.3122,-1.7938,0.81785,-2.4458,1.966,-2.0844,-0.82328,1.128,-0.2414,-1.0819,-0.58034,-1.012,-0.50579,1.0423,0.84128 -1.8201,-2.0468,0.55159,-1.9343,0.022037,0.17625,-1.0291,-1.0701,1.2781,0.28402,-1.4908,0.55109,1.1661,0.1792,-0.19274 -0.098076,2.706,0.77536,2.1784,2.1688,-0.52769,-1.4502,-0.45649,-0.49393,1.4018,-0.033587,0.078857,-0.69624,-0.12514,-0.74033 3.6032,0.052903,2.0515,0.78679,1.9293,2.1049,1.1224,-1.3613,-2.1055,-1.12,-1.3982,0.061668,0.51212,2.027,0.24498 -0.067476,-1.3972,4.0244,-0.99175,1.6454,-0.78547,0.21973,1.9154,0.59397,0.71522,-0.1521,-0.99947,0.5882,0.33521,0.56629 -3.3477,-1.7901,1.8577,-3.3765,2.252,-0.58165,-1.0207,0.35228,-1.3751,-1.3361,-0.59744,-0.65937,0.21885,0.96372,0.77999 0.0048311,3.0751,0.41845,-0.45272,-1.8182,0.56791,0.18455,0.18976,-0.36533,0.37245,-1.3484,0.48442,-1.0098,-1.4131,0.3561 0.27331,4.3239,0.13559,-0.25247,-0.99028,0.34175,-0.39415,-0.31821,-1.5772,0.74901,-1.2712,0.16905,-1.2289,0.78137,-0.36539 1.8013,0.22337,0.2203,-3.6292,0.80576,0.93094,1.5697,1.8695,0.0034619,0.7606,-0.84691,2.2755,-0.41226,1.3317,-0.89485 -1.1783,0.46893,0.54819,1.2765,1.0773,0.39732,2.3203,-0.54701,1.1449,1.9806,-0.91835,0.4937,0.18346,-1.8312,0.56133 -0.12814,1.8523,0.6656,0.98507,-1.5184,0.72877,1.3845,-1.1731,1.0274,1.0193,-0.66956,0.75664,-1.1508,0.14421,0.25692 1.5984,2.3386,-0.84305,0.8049,0.90011,0.47512,0.063192,-2.2379,-0.34848,0.52261,-1.1246,0.042902,0.53205,-0.51332,-0.82832 -3.4907,0.73045,0.84458,-0.62382,-0.4525,1.1962,1.1575,-0.41392,0.5426,-1.4701,1.4932,0.38834,0.3411,0.17232,-0.22798 -1.0289,1.8893,2.4701,0.86273,-0.14225,-0.16605,0.10852,0.18097,1.43,0.79204,0.24305,1.2075,-0.5772,-0.84292,1.1963 -1.1052,3.5992,-0.37018,0.36876,0.26838,-0.20077,-1.2347,0.5698,0.33269,-0.25789,-0.47517,0.60574,1.3127,-0.13771,-0.42457 4.1905,-1.0978,-2.5397,-1.1893,0.98104,0.98783,1.277,-0.6963,-0.30118,-1.1003,0.90822,0.3296,-1.2597,-0.51668,0.16363 0.62503,-1.4234,3.007,0.23405,0.27994,2.2495,2.0237,-0.87922,1.4077,0.78216,-0.57187,-0.045153,-0.55509,0.55463,-0.82138 -3.0016,1.8799,-1.7223,0.39576,-0.34333,2.3041,1.7304,0.87574,-0.79415,0.74262,0.35427,0.046812,0.24796,-0.23351,-0.52912 1.8833,2.6908,-0.54294,0.40766,-0.34388,-0.05799,-0.59737,-1.3049,0.81676,0.70422,-1.4231,0.30741,0.00092788,-0.80245,-1.4916 1.5612,-0.17677,2.3357,1.5402,0.79375,1.8109,0.62958,-0.68199,1.2336,-1.0281,-1.0429,1.2069,0.027854,-0.76866,0.80428 -1.2451,-0.81941,1.7378,1.6708,0.16796,1.5361,0.77363,-1.4559,1.5221,0.54247,0.74122,0.10501,-0.44609,0.63969,0.58113 -2.8433,2.9256,0.022241,-0.42297,-0.24559,1.8956,1.6462,0.26669,-1.3951,1.0439,-0.0018653,-0.011152,0.52322,-0.98331,0.60014 4.0334,-0.030124,2.1446,-2.7728,3.7759,-2.1024,-0.087287,1.8091,-0.78047,-0.46649,0.26648,0.5374,-0.022131,-1.1689,-0.49333 2.5432,1.2801,1.9212,0.51558,-0.3914,0.45378,-0.13843,-0.71944,1.4674,-0.33047,-1.1237,0.69762,-2.0859,0.93795,0.45317 0.081336,0.34031,1.666,1.6262,-0.36411,1.7039,1.1196,-1.1165,1.7189,0.80708,0.0034458,0.51291,-0.45242,0.025245,0.60495 -1.916,1.2029,-0.96323,2.2811,0.65524,1.5409,1.0385,0.47587,0.55495,-0.036441,0.47074,-0.28414,0.19234,-0.62196,1.1829 4.764,-1.8696,-1.935,-1.4071,1.485,1.8939,2.3047,0.42849,-0.38948,1.4259,0.41799,1.8015,-1.4691,-0.14287,0.10073 -0.017487,-0.34109,1.9135,1.9058,1.2239,1.8769,1.6376,-1.1887,0.71992,-0.63307,-0.70592,0.57804,-0.14379,-1.5499,1.4709 -1.8707,0.95334,0.69916,1.6096,0.085677,-0.09707,1.1223,0.42343,2.1272,0.88058,0.14686,0.85633,-0.11405,-0.99735,1.0922 -1.5264,1.2461,1.7824,0.40394,-0.69747,0.14139,0.33082,0.41438,1.8764,0.65434,0.48477,1.0348,0.2338,-1.0882,0.98758 -1.1682,-2.111,-2.1291,1.0369,1.9645,-0.57693,-0.34998,-0.35366,0.12276,-2.3162,-0.87348,0.3862,-0.66739,-0.63927,2.1432 1.3745,0.068826,3.2973,-0.31168,-0.14777,1.1849,1.6107,0.096226,0.84021,-0.43802,-1.3687,1.6401,-1.4219,-1.1767,-1.3186 -2.7948,1.6096,-2.405,-0.10587,-0.54767,1.893,0.98011,2.5057,-0.16373,-0.1287,-0.397,0.048366,-0.31894,-0.90437,0.0050715 -1.8588,-1.9658,-1.3059,0.65503,1.5089,-0.26444,0.16807,-0.30813,1.4538,-1.3661,-0.19765,-1.3941,-1.114,-0.20192,1.0317 -1.926,3.0821,-1.1709,0.82161,-0.61838,1.4774,0.51518,0.84308,-0.79972,-0.50723,-0.046836,0.62806,0.59949,-0.77783,0.30131 -2.6116,0.43325,-2.0695,0.55357,1.0269,-0.5396,1.0526,-0.81486,0.81782,1.559,-0.17269,0.06747,0.46666,-0.53975,-0.11502 -1.6243,-0.48443,-2.871,0.53374,0.94491,0.35222,0.42215,-1.8203,0.76974,-1.2454,-0.92435,0.54078,0.2213,0.10681,0.44325 -0.41493,-0.34212,0.62166,-3.0544,0.22811,2.0489,-0.2545,-1.3693,-1.7787,-1.1969,-0.45767,0.33309,-0.69306,2.1458,0.84112 -1.9407,-0.84414,-2.4124,0.28172,1.0757,-0.46028,0.086301,-0.96586,0.43436,-1.8981,-0.85416,-0.12616,0.39883,0.26744,1.2688 -2.3815,-1.9595,-1.4329,0.7908,0.36317,0.67332,0.99434,-0.43521,0.76753,-2.2486,-0.058791,-1.829,-1.1545,0.071426,0.55861 -3.4439,-0.66379,-1.0629,0.49461,2.7187,-1.1644,1.9052,-0.38534,-0.13196,-0.65517,-0.24537,-1.3984,-0.71276,-0.17184,-0.033212 2.2739,0.90199,1.0202,0.93682,-1.6139,0.99784,0.24105,0.06649,1.545,-1.0206,-1.2858,0.18229,-1.99,1.414,0.26628 0.95795,0.75558,-1.4892,1.2435,1.7642,1.7816,0.094053,-2.3544,-0.061693,0.7756,0.81674,-0.74879,0.86854,-0.49723,0.76929 -0.71613,2.2523,-1.4121,2.0828,1.7922,0.35708,-0.68971,-0.3391,-1.1567,0.33912,-0.23377,0.66397,-0.47477,-0.13704,-0.54412 -3.1402,-1.4298,-0.037021,-0.59522,2.9172,-1.9393,1.2978,0.35953,-1.063,-1.8563,-0.47303,-1.4765,-1.0137,0.79483,0.31593 -2.1062,-2.9954,1.0469,1.0133,2.2172,0.65781,0.72995,-1.5704,0.046476,-0.96968,0.27097,-0.6029,0.47751,0.44396,0.0064167 -1.4017,-2.7377,1.4573,1.7466,1.9391,1.4886,1.0196,-0.54208,0.32608,-1.4518,1.0341,-1.1403,0.23004,1.2918,0.77306 -2.6813,-2.0675,-0.19284,1.3938,2.3628,0.37771,0.79722,-1.7154,0.027858,-1.2694,0.70973,-0.5987,-0.26116,0.47857,0.082015 -0.43763,0.98397,-1.3204,2.2316,2.3616,-0.040687,-0.88326,-1.3731,-0.1067,-1.4813,0.54752,-0.22371,0.064477,0.9877,-0.42468 -2.9174,0.83063,0.7879,1.0705,2.5736,-1.1941,1.9197,1.254,0.058569,-0.7438,-0.016546,-0.10755,-1.9404,-0.17865,0.34772 -2.693,2.1964,0.94665,-0.34177,-0.083564,-0.73663,0.7181,1.2738,0.20153,-0.31769,0.90285,0.68627,0.73111,-2.0165,1.3674 3.1186,1.327,-1.0966,-2.1452,-1.8308,-0.41758,-1.5761,0.48435,0.19503,-1.1721,0.63562,-1.1589,-0.11092,0.13472,-0.26151 -3.3802,-0.52269,-3.0076,-1.0292,0.87773,-0.042103,-0.80315,-0.77453,0.021661,-1.4585,-0.72146,1.4215,0.26289,-0.012998,0.13063 -1.9538,0.8933,2.938,-0.61541,0.72257,-0.50859,0.10898,2.1832,0.32349,0.24833,0.78266,-0.33635,-0.24194,-1.8569,1.1381 -3.1195,-1.0818,-1.9547,-1.1332,-0.051838,0.89147,-0.37794,-0.12256,1.5895,-1.4699,-0.13332,-0.53897,-0.15034,0.2961,-0.34209 -3.122,-0.84158,-2.8342,-0.94641,-0.3147,0.25621,-0.084791,-0.06783,1.0826,-1.1029,-0.95016,-0.66469,-0.35936,0.071138,-0.61472 -2.6662,2.318,-1.1894,-0.086914,-0.84916,1.3841,1.3744,0.6176,-0.55235,1.0494,0.48001,0.38617,0.89014,-1.0372,0.32771 -3.1727,0.82712,-0.32145,-0.83458,-0.35875,-0.56615,1.8373,0.56694,1.3396,-0.79852,0.1153,-0.532,-0.58056,-0.60436,0.037917 2.4057,0.97655,-1.8316,-0.83025,0.69166,0.30449,0.46678,-0.37934,0.32354,3.0559,0.80558,0.46999,-0.11281,-1.0762,0.98461 -3.6352,-0.41127,-2.2745,-1.1312,-0.016003,-0.38187,-0.42038,-0.43929,0.73086,-0.59993,-0.18888,0.021387,0.5215,0.10944,-0.27728 -3.735,-1.4565,-1.7241,-0.77667,1.1174,-1.1401,-1.2004,-0.59169,1.0625,-0.15019,-0.58815,0.56349,-0.64192,1.1255,-0.23899 -2.1287,-1.906,0.85998,1.3492,0.40484,0.56248,0.44338,0.43135,2.2412,-0.14323,0.67742,-1.6382,-0.56031,0.36318,0.58258 2.7634,-0.61605,-0.028714,-0.20482,2.36,0.71216,-0.92559,-0.5144,2.1991,1.2539,1.2269,0.70491,1.0432,-0.47624,-0.056757 -3.5319,-0.34312,-1.1391,-1.5137,0.45228,-0.84182,-0.39433,-1.6056,0.49049,0.58856,-0.48577,0.7386,1.1498,0.41193,-0.32749 -3.5362,-0.69896,-0.97818,-0.29511,0.31795,-0.96308,0.84424,0.064767,2.0307,-0.82283,0.27228,-0.78173,-0.9365,0.68284,-0.812 2.2019,-0.97104,-0.75643,-1.2444,1.8577,3.2816,1.8506,-0.11159,-0.52902,-0.8632,-0.21509,1.3082,1.0176,-0.56721,0.79674 1.1192,2.5636,-0.81482,1.6538,-0.032072,0.58872,-0.79951,-1.9558,0.53502,0.52191,-0.82825,0.38964,-0.035911,0.35934,-0.76399 0.60846,2.2984,-1.2241,-0.59974,1.3815,-0.38675,-1.0425,-0.30175,0.92031,2.6881,1.9296,0.6183,0.25448,0.056094,0.11714 -2.3756,1.573,3.6447,-1.2644,1.1402,-0.88343,0.74788,0.035433,-0.26607,-0.18391,0.58806,-0.33695,-0.38723,0.44309,0.031364 -2.1622,-1.199,1.9558,-0.76483,-0.1592,-0.22376,0.8584,1.049,1.4019,-0.88501,0.26891,-1.0817,1.6625,-0.92931,0.068328 -3.1358,-1.1997,-1.7584,-0.89714,-0.66274,0.39881,-0.34403,0.39218,1.3535,-1.1108,-0.056211,-1.1845,-0.30915,0.060626,-0.25278 0.84368,2.6255,1.0239,1.402,-0.19335,0.11346,-1.4171,-1.974,0.39878,-0.1865,-0.071721,0.71399,-1.1397,1.4295,-0.42591 -1.7645,-3.0658,0.55897,0.13574,1.3243,0.84705,-2.2222,-0.86389,0.23254,0.66539,-0.57298,0.58789,-0.47855,2.3137,1.3047 -0.49412,3.3668,2.8413,0.33463,1.2515,-0.33148,-0.94976,0.3982,0.40529,-0.11032,0.54292,0.81675,-0.8905,0.91889,-0.048881 -0.62046,3.4157,2.3621,0.44618,0.013891,0.36281,-0.78374,0.64788,-0.83983,1.3289,0.26875,0.21039,-1.5591,0.53935,0.077997 -1.6156,2.7445,2.3322,1.6087,1.0521,-0.13286,0.14045,0.41216,-0.30353,1.2667,0.36573,0.57864,-1.4793,0.38971,0.054956 1.3724,1.701,2.413,1.9233,2.119,-0.24602,-0.7108,-1.2077,-0.038346,0.12677,0.9505,0.30773,-0.8189,1.8158,0.42143 1.6086,0.42517,0.93835,2.2091,1.9276,1.2207,-1.8344,-0.52437,0.76343,0.074032,-0.6303,0.064096,0.77378,1.2985,0.37843 -1.1246,-1.8265,1.8908,0.010615,0.97729,-1.2313,1.1726,2.1153,-0.28466,0.39536,-1.8552,0.68104,0.5606,-1.5869,0.45042 1.9938,3.5919,2.2302,-1.7913,0.44498,0.39367,-1.1245,0.37175,-0.68999,-0.22528,0.14451,-0.47496,-1.6459,1.1461,0.39643 1.8728,1.2922,3.3506,0.70771,3.4133,-1.0836,-0.90104,-0.025027,0.23948,-0.37276,0.21655,0.23119,-0.95581,0.61383,0.51606 -0.45562,2.1302,-1.2733,2.2559,0.47805,-0.12691,-0.68523,-0.41461,0.94678,0.32965,-0.47615,0.42278,0.18293,1.0029,-0.61459 3.8732,0.39359,0.50625,-1.849,3.3993,0.03237,0.91369,-0.2044,0.17161,-0.51635,0.84967,0.99849,1.4282,-1.5959,-0.63302 1.2085,2.6212,0.50678,0.55059,2.1369,-0.80523,-0.90114,-0.19754,1.2027,1.0331,-1.266,0.32274,1.7076,-0.96479,-1.7336 1.2129,1.3303,3.5888,0.67953,2.1031,-0.087671,-0.45437,-0.18759,0.44069,-0.14639,0.82987,0.87188,-1.1192,1.5244,1.2026 4.3825,0.55822,1.118,-0.54911,2.1935,0.01674,-0.84504,-1.7112,0.029529,0.73413,0.7266,-0.93422,-1.5274,0.55575,0.97674 2.0896,0.052675,4.094,0.89661,2.9716,-0.22455,-0.11116,-0.089476,0.01956,-0.72274,-0.1247,0.55808,-0.50954,0.84175,0.85306 -3.6173,0.6104,1.673,-1.3311,0.69016,-1.2039,1.3231,0.58667,0.48776,-0.63889,0.66922,-1.1658,0.75512,-1.6358,0.63818 1.3599,3.0854,2.4004,-0.486,1.3569,-0.36025,-1.9113,-0.62019,0.00397,-0.036675,0.87151,0.45223,-1.5406,1.1702,-0.017521 3.6302,0.47196,3.1626,0.69972,3.096,0.67999,-0.28539,-1.5569,-0.062183,-0.64544,-0.68978,-0.16005,-0.9758,0.73815,0.45484 -1.0302,-0.48487,4.0583,1.044,2.7867,-0.57053,1.6209,-0.82973,0.14024,0.12472,-0.43756,-0.29322,-0.84031,-0.40311,0.88677 0.23266,1.8781,4.1719,-0.0042305,1.2323,-0.042033,0.041295,0.25121,0.27185,0.92318,1.0108,-0.087851,-1.058,1.3143,0.48225 -0.84691,2.5249,3.1003,0.34534,0.14246,0.045592,0.31006,-0.74769,0.14504,0.31734,0.79053,0.97478,-1.2855,1.0502,0.62699 3.2273,-0.89405,-1.9419,-2.0041,-0.30294,0.763,1.8437,1.1967,1.8867,1.1575,0.92495,1.7042,-1.9729,0.99638,0.96537 -0.87631,2.294,-2.3953,1.0261,-1.2684,1.8875,-0.67045,0.98796,-0.11555,0.63083,-0.28471,1.0283,-0.23952,0.28737,-1.0604 2.875,0.8015,-2.2166,-2.9871,0.18824,0.35424,0.52739,1.1388,1.7074,0.95129,1.331,0.1695,-1.1105,-0.98111,0.66301 -1.616,2.683,-0.40367,1.8283,-0.59448,0.86034,0.32911,0.13315,-0.57768,1.0178,0.26578,1.5584,-0.76376,0.55321,-0.48247 -0.72477,1.9959,-0.60311,1.6055,-1.4061,1.575,0.31228,-0.45749,0.514,1.0817,0.062765,0.73911,-0.41865,0.40828,0.77566 1.4689,1.1647,1.4806,1.6672,0.018814,1.5872,-0.1241,-1.3712,0.80072,-0.27072,-1.4421,0.51345,-1.0756,-1.3562,0.70073 2.4013,2.1708,-1.5874,-1.2447,0.10535,-0.11964,-1.0328,-0.87939,1.2154,0.10624,0.9823,-1.2871,-1.4451,-0.20142,-0.22503 5.4257,-0.45428,-0.012344,-2.2532,3.8494,-0.44971,1.6663,-0.20004,-0.02055,1.5702,1.0522,0.96325,-1.3229,-0.98226,0.097397 -2.1941,2.4946,-1.6415,0.73076,-0.71535,0.98066,0.45329,0.98477,-0.11729,-0.87543,-0.037515,0.82608,0.73814,-0.44467,0.45011 -0.035446,2.3054,-0.97611,1.7632,-0.44665,0.32875,-0.6032,-0.94514,0.30878,0.39713,-0.49141,1.2707,0.027757,0.64014,-0.40818 1.1942,1.8636,-1.2522,0.355,1.2584,-0.057969,-0.49729,-0.83819,1.1364,0.38744,-0.024903,0.068945,2.2567,-1.5748,-0.94892 0.7956,1.9755,-0.83423,1.597,0.51092,0.50327,-1.3681,-0.54747,1.5361,0.48238,0.045345,0.16551,0.57962,0.94253,0.029493 3.9264,1.047,-1.4687,-0.4683,2.0374,0.23404,0.66087,-1.7214,0.61142,0.9622,-0.14756,-0.76783,-0.82582,-2.0863,-0.65066 3.6618,1.1041,-1.8255,-0.4081,2.1096,0.36932,1.0675,-0.88849,0.057938,-0.010919,-0.18763,-1.3437,-1.5635,-2.0604,-0.97937 3.3671,-0.82723,-2.1182,-1.0999,1.3174,1.1942,2.2655,-0.15725,-0.26907,0.090961,0.81157,-0.72082,-1.3444,-1.6504,2.0641 -0.76194,1.8478,1.4268,-0.13653,-0.27601,2.6352,1.2065,0.25222,-0.22022,-1.2686,0.16345,-0.81001,-1.1017,-1.8357,1.2216 3.3268,-0.26867,-1.7517,-0.53624,1.8704,1.505,1.7978,-1.8225,0.81022,0.11724,0.34312,0.29615,-0.39883,-0.68146,0.79982 3.0571,2.4722,-1.9868,-2.569,0.037428,-0.40463,0.41811,-0.50786,0.90008,1.0569,0.64058,-0.73779,-0.85297,0.3576,-0.41022 -2.8908,1.3677,1.3883,-1.2378,-0.31433,0.22597,0.96804,-0.81594,-1.2123,0.51508,1.1069,-0.69678,-0.099101,-1.855,0.50331 -1.206,3.5504,1.8664,1.1473,1.4574,-0.62115,-0.82808,0.99508,-0.43979,0.72299,0.37238,1.0216,-1.4876,0.13976,-0.51679 4.0351,-0.19687,-0.44342,-0.97939,1.603,1.4363,0.045169,-1.0481,1.3163,0.0037956,0.45707,-1.6156,-0.99989,-0.70972,0.81055 3.5778,1.641,0.26302,-0.90561,2.09,-0.73759,-0.058775,-1.6535,0.88483,0.95868,-0.28413,0.37923,0.28267,-0.99925,-1.8572 1.785,3.623,-0.5726,-2.1125,-0.010846,-0.0088665,-0.78015,-1.4499,-0.25371,0.18109,0.017511,-0.56678,0.39733,-0.28921,-0.46884 2.2255,0.74368,1.6342,0.32093,0.66404,-0.40832,-1.2526,-1.2475,1.4976,-0.5915,-0.88977,0.57255,0.15086,-1.6483,-1.4858 -3.3401,1.776,-1.4269,-0.25333,0.52658,1.8655,1.9534,-0.44465,-1.1134,1.2404,0.28361,-0.11566,0.095396,-0.66423,-0.81445 0.036774,2.1479,-2.4287,0.5219,-0.78942,1.276,-1.6822,0.21616,0.79053,0.93578,0.55037,0.068143,1.0119,-0.2978,-0.80356 -0.43725,4.6095,0.76143,-1.3854,2.6757,-0.56562,-1.8398,1.1375,-1.5189,-0.50212,0.91019,-0.43524,-0.45664,-0.0020477,-0.78799 -4.1272,-0.5522,-1.6046,-1.885,0.70704,-0.12433,0.20983,0.72804,-0.049889,-0.54496,-0.18967,-1.1047,-1.0634,-1.3948,-0.67955 -2.1447,0.28984,-3.9076,0.23838,1.4929,-0.11244,-0.031912,-0.57288,0.068775,-1.2752,-1.694,2.1303,0.085755,0.35824,0.70344 0.033301,2.3366,-1.672,0.55501,-1.0904,0.95274,-1.2042,-0.55779,0.9497,0.64242,-0.18328,0.4645,-0.11373,-0.28622,-0.31558 -2.2322,0.044443,0.13598,-1.733,-0.85078,-0.0009795,0.48314,-2.7329,0.57344,1.0157,0.42494,0.3932,-0.16132,0.52382,-0.53271 -3.28,-0.65332,0.35725,-0.84882,-0.62316,0.39097,0.31152,-0.46542,1.7709,-0.88399,0.98917,-0.61755,0.55989,0.61265,-0.098758 0.41435,2.6515,-2.5392,0.066959,-1.0332,1.9928,-0.81913,-0.29536,-0.083678,0.10403,-0.58557,-0.68278,0.86352,-0.85633,-0.26668 -3.1056,0.026659,-3.1747,-0.83578,2.1261,-0.24599,-0.77851,0.31273,-0.70935,-1.9443,-1.1451,1.3556,-0.53964,-0.56379,1.3003 -3.7758,0.31042,-1.582,-0.67619,0.55405,0.98919,1.4065,-1.6212,-0.035495,-1.066,0.41078,-0.16676,0.53482,0.020715,-1.209 -2.2112,-0.34275,2.1414,0.40356,1.0287,-1.3158,1.134,0.25914,1.5116,0.23047,0.48206,-0.45834,0.41597,-1.5442,-0.05146 0.0050815,0.78849,1.2027,1.8995,-0.080602,0.36796,0.76046,-0.22724,1.1544,-0.69046,-1.0202,1.5251,1.1893,-0.5886,-0.40494 1.4634,2.1262,1.1425,0.76924,-0.16381,1.5075,-1.3212,0.19449,0.016293,1.3538,-0.88013,0.38035,-0.71714,-0.19464,0.55253 0.62745,3.5399,0.14455,0.27468,-0.14632,0.12566,-1.6205,-0.48269,0.065153,1.9256,-0.85932,0.17908,0.18915,-0.33356,-0.85103 4.3422,0.94816,1.3375,-2.7135,1.8064,-1.9392,-0.46296,0.75415,-1.6807,1.004,0.85526,-0.45436,-1.5712,-0.71643,0.34754 -4.2322,1.0557,-1.854,-1.0885,0.96202,0.64831,1.0674,0.32938,-0.30699,0.28586,0.30066,-0.7344,0.37561,-0.18783,-0.97474 3.258,1.4274,-1.1241,-1.4303,1.0742,0.079398,0.26298,-0.55163,0.054927,2.8841,-0.22246,0.3123,-0.079562,0.75582,-0.2315 4.0193,-0.099545,0.45714,-3.3492,2.0064,-0.87223,0.46583,-0.32098,1.5008,-0.091763,0.62451,1.3653,-0.092696,-0.031473,-1.3098 0.98609,2.3552,1.5177,-0.83689,-1.5153,0.15767,-0.12702,-0.099665,0.78661,-0.37005,-1.175,0.86505,-1.8317,-1.2782,0.46219 -3.4049,0.073616,-3.4555,-0.93162,1.9261,-0.25783,-0.45307,-0.74529,-0.68945,-1.4688,-1.2309,1.2162,-0.093993,0.081797,0.6071 -3.6274,-1.2759,-1.6339,-1.8155,0.97793,0.14312,-1.165,-1.0639,0.14366,-1.8534,-0.15206,1.137,-0.22033,0.6938,-0.095322 -3.1231,-0.40045,-3.5518,-0.76027,1.0411,-0.15901,0.19814,-0.98759,0.095123,-1.9134,-1.3919,0.27903,-0.37318,-0.0089849,-0.072938 -3.3816,-1.0156,-3.1099,-0.64037,0.94329,0.19481,0.21635,-1.1845,0.29067,-1.8922,-1.1464,-0.096467,-0.37843,-0.1905,-0.5519 -0.77013,-0.34437,-0.59187,0.26356,0.22138,1.2719,1.1381,-2.8012,1.2994,1.3795,-0.46905,-0.43362,-0.68951,-0.76099,-0.30497 -2.7865,0.79332,-3.2202,-0.14493,-0.44059,1.1607,1.5308,-0.23247,0.43612,-0.58942,-0.38519,-0.97567,0.50138,-0.29406,-0.89409 -3.6189,-1.0131,-1.1583,-1.6118,1.0639,-0.88589,-1.0627,-0.78286,0.21372,-0.14762,-0.73542,0.42072,0.65439,0.058565,0.70865 -3.4157,-1.4987,-1.501,-1.5584,0.5794,-0.7417,-1.4252,-0.52214,-0.11532,-0.89626,-0.62047,-0.082968,0.16266,0.10748,1.135 -1.7222,-2.242,-0.1643,-2.1297,0.85927,-0.74519,-2.3486,-0.16961,-0.68416,-0.51252,-1.9576,0.8692,0.013959,-0.50977,2.9294 -0.83923,-4.8781,-0.46857,0.80699,1.9929,0.29124,-0.47457,0.33589,-0.34963,-0.4801,-2.2414,-0.69865,0.97179,-0.21849,0.31248 -2.8462,-1.5309,-3.3929,-0.94742,0.13172,-0.72628,-1.8772,0.41097,-1.6184,-1.1528,-1.4666,0.35253,-1.2533,-0.40986,1.2502 2.9032,-0.50158,-2.0346,-1.6682,-0.050378,0.27288,1.3463,1.0766,1.893,0.54005,1.5609,1.019,-1.046,-0.63153,1.4579 0.28735,-4.0098,1.4065,-0.95629,1.525,1.1841,2.0649,-0.56545,-0.30998,-0.33026,-1.6769,-0.2501,-0.87151,-0.27363,-1.5509 -0.030697,-4.6825,-0.015299,-0.070289,1.0924,0.55694,0.26093,1.1512,-0.54485,0.33662,-2.196,-0.77668,0.09149,0.46971,-0.81305 3.6891,0.92758,0.4146,-3.0896,3.0809,-1.7327,-0.25629,1.2531,0.41429,1.2445,1.2984,-0.1037,0.072131,-2.127,-0.31388 -3.4151,-1.9528,-1.2043,-1.9866,0.77253,-2.0114,-1.9291,0.50574,-1.181,-0.71265,-0.90967,0.057524,-0.85398,-0.75473,1.387 2.2666,0.53477,-3.418,-0.099438,0.13118,1.5653,1.3381,-0.54484,1.1102,0.021024,0.60362,0.46688,-0.47762,-0.80281,-0.39569 -4.182,0.074149,-2.8639,-1.4187,1.5919,0.13324,1.3064,-0.32904,-0.089265,-0.73981,-1.4735,-0.77199,-0.11917,0.091279,-0.87144 -2.4075,-1.1414,-3.1935,-0.6693,0.55824,-0.90469,-1.4498,1.135,-1.1909,-1.4611,-1.7083,0.72294,-1.0166,-0.12828,1.4704 1.3752,3.0118,2.0606,0.43821,0.98608,-0.65207,-1.7164,-0.22334,-0.7029,1.1096,1.1576,0.68293,-0.93259,0.60527,-0.26274 -0.18387,0.78551,1.7485,-3.2227,1.7745,0.02446,-1.5666,-0.70191,-1.1362,-0.78171,1.6669,1.2158,-0.11646,2.5063,0.46229 -4.5481,0.42805,0.50842,-2.0769,1.9643,-0.16465,0.98732,-0.25705,-0.58996,-1.1269,0.68446,-0.69936,0.21899,0.19939,-0.44643 -0.92501,3.6738,0.17207,-0.64029,1.5442,0.63011,-0.37713,-0.87355,-2.7432,-1.2295,-0.023492,-0.072119,-0.34746,0.58365,-1.0463 -3.582,1.9622,-1.3354,0.34575,0.085026,0.32847,1.4993,1.868,-0.91309,-1.1255,-0.30361,0.096945,0.28636,-0.068155,0.60191 -0.48919,4.2589,1.8761,-0.49995,0.84363,-0.22138,-1.1443,0.6955,-1.7072,1.0058,-0.56493,0.36403,-0.20785,-0.5549,-0.39297 2.4822,-0.45823,-0.95086,0.062216,1.1361,1.9756,-0.24286,-2.9263,0.2734,-0.68613,1.2427,-0.35552,0.9167,-0.12851,0.88977 -4.0893,-1.4647,-1.5292,-2.2001,2.4297,0.090246,-0.87657,-0.66691,-0.81443,-2.3317,-0.89823,0.70512,-0.14091,0.34609,0.59033 1.0601,3.6256,-0.80866,-1.5673,-0.42653,0.56724,-1.2021,0.21319,-2.1232,0.79628,0.11534,-1.6225,-0.40566,0.52363,-0.091147 -3.7481,-0.19144,0.65448,-1.4869,0.73379,-2.6099,1.3472,0.9542,-0.41621,-1.0581,0.010941,-2.0542,0.45815,-0.74902,0.069393 -1.1314,2.3722,0.59811,0.62797,0.85856,-1.677,-0.30489,3.1833,0.78934,-1.4833,-0.24779,-0.56846,-0.86974,0.90339,0.67849 3.5963,0.55961,1.3106,-0.66942,1.2232,0.8124,-1.2957,0.11362,2.2669,0.42154,-1.1715,-0.020531,-0.2646,0.36413,-0.90046 -1.4061,2.3466,3.0813,-0.38707,0.9294,-0.010058,-0.33742,1.3283,0.00071147,0.32554,1.0015,-0.063386,0.36991,0.41721,0.031215 4.9056,-1.7598,-0.27895,0.73389,1.3979,2.7452,0.17388,-0.74971,-1.5794,-1.7454,-0.71992,-0.59308,-0.22438,2.4047,-1.7957 -3.3514,1.856,-0.70046,-0.80677,-0.10722,1.8401,1.1119,-0.29534,-0.72221,1.4283,1.0097,0.085146,0.45808,-0.67976,-0.63999 -2.2724,-2.799,2.1866,0.45726,1.405,-1.3842,0.7248,0.52426,1.5871,-0.51423,-0.051582,-1.492,-0.13166,-0.28205,0.30482 -0.61421,1.5397,3.8962,-0.98409,1.3949,-1.5495,0.079017,1.6675,0.60341,-0.92249,0.35526,0.23743,0.3821,0.19863,1.1324 -1.6476,-2.4632,1.7192,0.88005,1.9921,-1.5931,0.91157,1.9945,-0.052498,-0.76946,0.10493,-2.3329,-0.58835,0.9209,0.4577 -3.6219,0.081884,-0.61398,-0.87265,1.9569,1.5054,1.3788,-2.0531,-0.021125,-0.35351,-0.14868,-0.47598,-0.86678,-0.068977,-1.2467 1.2732,-0.16392,1.3073,-4.4552,1.8889,-0.41219,1.3474,1.8203,-0.60103,-0.071934,-0.72536,2.6618,0.63368,-0.93209,-0.52006 -0.74031,1.5178,2.59,-1.0344,1.1538,-1.1956,-0.45308,2.5211,0.81597,-1.7276,0.755,0.16102,1.1828,0.26726,1.1977 -0.87768,3.1429,-0.13494,-0.17972,-1.2862,2.3924,1.3749,0.42819,-1.3966,0.065126,-0.35731,-0.92388,-0.3215,-1.0385,0.57602 -1.6786,3.3413,1.039,1.0615,0.15999,0.026597,-0.86448,1.4746,-0.064153,0.88645,0.25695,1.4877,-0.81932,-0.16879,-0.28788 -4.1384,-1.142,-0.50545,-1.863,1.9918,0.034986,0.037505,-0.34508,-0.65234,-2.29,-0.44115,-1.4427,0.2545,0.11957,0.69181 -3.0955,-2.3527,1.4773,-1.9358,0.74196,-0.22709,-1.2333,-0.010562,1.2026,-0.00808,-0.39724,-0.7838,0.55906,1.3377,0.53336 1.7052,2.6591,-1.2672,-0.61497,0.41762,-0.16254,-1.8295,-0.71141,0.20348,1.9649,0.91567,-1.1073,-1.1247,0.0048933,-0.41321 -3.068,-1.9411,-1.6278,-1.5012,1.398,-0.1821,-2.3693,0.77997,-0.98056,-1.5283,-1.4032,0.48091,0.10234,0.46276,2.3764 2.693,-1.565,0.71819,1.2411,2.7345,1.085,-1.2426,0.68682,0.70179,-1.5785,-1.124,-0.074435,1.7504,-0.025345,-0.28344 -0.55128,3.0447,1.9539,1.2624,-0.30531,-0.012881,-0.63562,-0.015481,0.037143,1.2937,0.50271,1.4253,-1.3173,-0.023835,0.06193 -2.6909,-3.2172,-0.79561,-1.3267,1.0893,-0.69162,-2.2765,1.871,-0.080854,-0.38337,-1.5054,-0.58731,-0.99847,1.9049,1.7097 -3.2683,-1.1234,1.6834,-2.7796,1.3157,-0.42826,-0.45966,-0.56472,0.1137,-0.56751,0.18742,-1.0803,0.86782,-0.58729,0.69734 -1.964,-3.0048,1.8947,-1.5455,1.1493,0.34037,-0.50838,0.22428,1.4617,-0.082781,-1.2103,-1.1552,1.9859,0.65178,-0.18977 -2.0923,-2.0817,2.0441,0.61932,2.1903,-1.4122,1.3176,-0.41837,1.4851,-0.4694,0.013312,-1.1993,0.62149,-0.3929,-0.25697 1.7259,1.5495,0.12429,0.69072,1.2537,0.51066,-1.7763,-1.4211,1.9383,0.93226,0.58967,-0.24895,0.55985,0.8527,-0.36434 -2.152,-0.073845,3.8916,-1.7757,1.771,-1.0039,0.90932,1.237,0.12544,-0.38424,-0.43449,-0.68669,0.6772,-0.78828,0.016651 -2.0552,1.497,1.854,-0.5835,0.79264,-0.13544,0.68632,1.9251,0.68667,-1.6959,1.2435,-1.1297,1.2128,0.11759,0.92361 -1.1984,-1.4822,3.5452,-1.3396,0.70594,-0.18934,0.40126,0.60661,2.0755,-0.037089,-0.21523,-0.80242,1.296,-0.6083,0.049138 -1.1749,1.3987,0.6577,2.4691,2.8069,-1.2586,-0.16272,0.62082,-2.0082,-1.2367,-1.0168,-1.3454,0.13576,0.015965,0.90787 -1.3522,1.896,3.3284,0.036869,1.473,-2.4336,0.29728,1.724,0.39708,-0.97916,0.092851,-0.11562,0.24177,-0.20641,0.67081 4.289,-1.7631,2.9447,-0.86182,2.8552,0.97153,0.534,0.13292,-0.84874,-0.72943,-1.548,1.0329,-1.6968,0.30413,-1.5955 0.67851,-2.2001,4.7522,-2.1877,2.3499,-0.068787,1.5318,0.65997,-0.16056,-0.021266,-0.78657,0.33936,0.8444,0.35329,-1.4499 -1.9943,0.71841,3.3221,-1.8279,0.80316,0.070359,0.33126,1.5717,0.34854,-0.85627,1.4215,-0.65638,0.69552,-0.90558,1.0439 1.0205,0.12177,-0.56613,2.1243,0.37572,2.2891,-1.6982,-0.69163,0.63626,-1.4113,-0.25611,-0.016429,1.4427,0.59969,0.43563 0.9909,3.3453,1.0466,-0.61235,0.53797,-0.39533,-2.3168,0.53151,-0.096471,1.446,-0.53876,-0.21667,0.57905,-1.2045,-0.67029 2.7569,0.42741,-1.7262,-1.0066,-1.0948,0.58633,-0.74781,-1.0405,1.8944,0.12015,0.75187,-0.57699,-0.76164,-0.32101,0.13003 2.0778,3.0233,-1.3351,-3.5134,0.55054,0.58792,0.86497,0.58189,-1.3756,0.58109,1.028,-1.5122,-0.81111,-0.58496,1.1807 2.0798,-2.0557,3.4491,-2.7385,-0.039404,0.21657,0.96512,1.9728,1.0282,-0.21207,-0.41656,0.9823,0.27097,1.1814,-0.46338 5.5062,-1.1163,0.11493,-3.1413,3.6088,-0.79452,2.0858,1.1275,-0.0033325,0.82775,1.1434,2.3221,-1.196,0.32224,-0.78035 -3.4106,0.34101,-0.16503,-1.0826,0.8766,1.3927,-0.090772,0.77204,-0.16194,1.1184,1.1789,-0.9452,-0.56502,0.19977,-1.2687 0.76908,3.2355,1.6042,-0.9621,-0.060392,1.004,-1.5788,0.30674,-0.21003,-0.61898,0.66171,0.95736,0.58575,-0.29975,0.66338 -1.3371,2.8736,2.1591,-1.1429,-0.69815,1.1129,0.31147,0.77136,-0.75632,-0.17701,0.10998,0.051811,-0.06173,-1.7181,1.3513 -3.0355,2.1514,-0.88683,-0.15065,-0.58976,0.47803,1.2821,0.80568,0.18022,0.81973,0.45416,0.70881,1.0652,-0.53999,0.48821 2.6327,2.4641,1.044,-1.1726,1.0181,-0.33177,-0.40615,-1.0857,0.76285,-0.78638,-0.94696,0.73512,0.86579,-0.49969,-2.6024 2.4197,0.65874,-3.1314,0.82319,-0.90347,0.43071,0.73355,-0.4648,0.2539,0.68978,0.38307,-1.5117,-0.89133,-0.37331,0.35244 0.99845,2.1098,3.2226,-0.39045,0.26175,-0.48017,-0.69943,0.1528,1.1396,0.011174,-0.83849,1.0754,-0.95437,-0.40596,0.82333 0.099914,1.2852,-0.38924,1.4209,0.66427,1.6755,-0.79896,-1.6698,0.42112,-0.41407,0.010109,-0.26248,1.2694,0.19105,-0.31101 0.98521,1.0668,-2.4852,0.18141,0.99056,0.62809,0.56645,-1.4929,-0.17476,0.88728,-0.26824,-0.9119,1.0295,-1.6636,1.0581 -3.1617,0.1696,2.805,-2.4414,0.33557,1.3953,0.4333,-0.96485,-0.4325,-0.36829,1.0478,-0.063111,-0.66275,0.043173,-0.15967 3.768,-0.73427,-1.2359,-0.99342,2.5728,0.50961,3.2248,0.27501,-1.724,0.8406,-0.20068,0.56467,-1.7257,-2.2766,0.67345 -0.93729,2.4321,0.47077,1.5647,-0.96168,0.4417,0.14328,-0.49684,0.69133,0.59609,0.41683,1.9092,-0.065407,0.46388,0.081476 -0.90914,2.5081,2.0829,-1.3627,-0.18031,1.827,0.48368,0.27889,-0.646,-1.5546,-0.11126,0.25464,-0.4385,-1.8626,1.3803 0.66455,2.7321,-0.31504,0.65023,-1.1864,0.78304,-1.6715,-0.59006,0.30232,0.5285,-0.22269,0.54253,-0.62544,-0.21118,0.11922 1.3935,0.55544,3.5092,1.2797,1.6312,-0.0013091,0.55822,0.55988,0.99442,0.59838,-0.87841,0.092263,-0.87247,-1.2043,1.2259 -3.2504,0.25621,1.6035,-1.6637,0.60673,0.20021,0.68815,-0.40381,0.95871,0.90475,0.66627,-0.60095,-0.17642,-0.73098,0.12455 -2.763,2.2846,-1.4917,-0.19923,-0.34998,2.0053,1.8049,0.23519,-1.0502,0.85622,0.18142,0.45025,-0.049917,-1.3136,-0.43506 -2.1894,1.6678,1.308,-2.2576,-1.0562,0.79352,1.3025,-1.3786,-2.0164,0.55537,0.80626,-1.003,-1.2132,-1.0589,-0.26286 -3.9795,0.41205,-2.2726,-1.3617,2.0522,0.74731,0.63147,-0.9013,-0.50946,-0.21365,-0.38437,-0.050419,-0.55044,-0.85276,-1.2807 5.9076,0.47971,-0.22482,-1.1626,1.5264,0.15374,0.3662,0.42925,0.18478,1.1661,-0.24796,0.18634,-2.148,0.33193,-1.2448 2.1548,3.9147,-0.10428,-1.4231,-0.35081,-0.49481,-0.89326,-0.85832,-0.1668,-0.031434,-0.5578,-0.56552,-1.1538,0.51249,-1.316 -3.7113,0.70469,-2.3336,-0.34972,1.7416,0.81031,1.1771,-0.40904,-0.71494,1.2637,-0.17402,-0.094279,0.18967,-0.52264,-1.0667 0.32425,2.8659,-0.79257,0.98975,-0.598,0.0012657,-1.1256,-0.55574,0.90092,0.015266,-0.4173,0.69333,0.74843,-0.29428,-0.37696 1.4835,2.2135,2.8267,-0.60311,-1.0065,1.0919,-0.7734,-0.68684,0.65889,-0.91943,-0.23983,1.006,0.12296,0.66372,0.12429 0.85795,3.8643,-0.88358,-1.6803,0.12355,0.62396,-0.71459,0.12635,-2.0457,0.72296,-0.59703,-1.3984,-0.69815,-0.96943,-0.54794 1.6366,2.2854,0.74141,0.69126,1.9864,-0.37844,-0.93559,-1.7909,0.6401,1.4341,-0.60519,0.027226,-0.36165,-0.11398,-0.67054 -2.0834,2.8398,1.6799,0.75556,0.67361,-0.22855,0.85937,0.62594,0.69858,1.4299,0.43322,1.0238,-0.59555,-0.052526,0.28841 3.4459,2.1297,-0.16182,0.31063,2.12,0.19778,-0.81874,-1.7253,0.13583,1.6414,-0.80142,-0.74362,-1.0658,-0.78118,-1.2872 2.5808,2.1595,-1.447,-1.8775,-0.69445,0.37657,-1.4812,-0.61101,-0.085493,0.9547,1.737,-1.4101,-0.98664,1.6625,0.11142 2.8399,2.675,-1.4501,-2.6994,-0.15144,-0.20232,-0.69668,-0.39,0.91771,0.041034,0.72368,-1.0547,-0.90003,0.54028,-0.78174 -0.2501,3.4425,0.19721,-0.32894,0.17245,-0.1022,-1.5329,0.99913,0.41089,0.86977,-1.4003,0.41368,1.3777,-0.91288,0.051652 -2.1246,3.6607,-0.29512,1.1303,0.5504,2.2023,0.84516,1.023,-1.3993,-0.34508,-0.57825,0.87987,-0.39379,-0.54457,-0.59714 3.4272,-0.15288,1.0416,-0.69031,1.8804,0.76479,0.24859,-0.11145,1.5325,-0.95213,-0.95161,2.1314,-0.61307,-0.65114,-0.71572 2.3596,1.5786,0.23984,1.2829,1.5733,0.71392,-1.5965,-2.4434,0.8887,0.73815,0.27588,-0.77578,-0.6055,0.20528,-0.14271 -2.4353,2.2014,0.64696,-0.62206,-1.7884,0.83302,1.6474,-1.0165,-1.7039,0.51876,0.26292,0.42051,-0.37547,1.5386,-0.31026 -3.0035,-2.8977,-1.2255,-0.70166,0.4794,0.22795,-1.2017,0.5654,1.5344,-0.036616,-0.70994,-1.0254,-1.0043,1.196,0.2777 0.090556,1.5232,-0.96856,0.82691,0.22596,-0.35589,-2.2044,0.84125,2.2248,0.76534,0.2237,-0.053244,0.78796,-0.49359,-0.0038803 1.5642,3.7709,1.2687,-2.5268,1.7016,-1.1862,-0.74744,-0.84851,-0.13889,0.24555,0.065092,-0.28264,-0.097845,-0.43904,-0.50468 0.43559,3.5784,2.486,0.082086,0.9846,-0.63384,0.28111,-0.034771,-0.49543,0.8308,-1.6142,1.1471,0.37443,-0.84886,-0.10296 -2.3853,-1.9761,-1.2555,-1.3999,0.50445,-0.046026,-2.8555,-0.2643,0.18026,-0.024249,-1.2883,2.0468,0.36492,0.72957,1.8133 2.5257,2.3336,-0.67146,0.66124,0.88578,0.8966,-0.099874,-2.4172,-1.0351,-0.20897,-1.4598,-1.5606,-0.40357,-0.92774,-0.66561 -3.0716,-2.0656,-1.9091,-1.2525,0.83899,1.0617,-2.3555,-0.018603,-0.52899,-1.5535,-1.181,1.2868,-0.013234,0.14236,1.3971 -1.771,-2.099,-0.6923,-1.6133,-0.21654,0.993,-2.5292,-1.2168,0.57653,0.99417,-1.7315,1.3611,0.50274,0.70232,1.0601 -2.8591,-1.1926,-2.1621,-1.1516,0.62559,-0.47597,-1.7341,-1.0082,-0.17005,-1.318,-0.78294,2.0598,0.3603,0.073773,1.3721 -2.4125,-1.4191,-0.5865,-0.60603,1.5819,-1.2066,-0.87911,-2.0372,0.76324,1.0304,-1.4295,1.5285,0.16608,0.52152,0.95139 2.1857,-0.19764,-0.15652,1.1676,3.5892,-0.39212,-1.4803,0.076901,0.47823,-0.5552,1.2616,0.067091,0.98523,-1.2496,0.33147 -3.6081,-0.63019,-2.5367,-1.1242,0.24514,-0.073878,-0.2542,-0.94221,0.25409,-1.3459,-0.23078,0.79328,0.40262,0.56677,-0.77399 -2.1396,-1.0963,0.39009,1.8801,0.18973,0.92685,0.70932,0.61705,1.8104,0.04171,0.3698,-0.077612,-0.38796,0.60238,0.67601 -1.9831,-1.5115,-0.83315,-2.0127,-0.38171,1.1339,-2.1439,-1.549,-0.25839,0.048292,-1.5549,0.98057,0.68593,0.34662,1.2615 -1.4487,-2.2911,-1.1974,-0.41554,0.42105,0.84079,-2.4778,0.4181,1.0218,1.0693,-1.6428,1.1305,0.66708,1.6585,2.1369 3.7071,-1.1587,-1.9328,-2.0623,0.63889,1.2997,1.475,1.4341,1.8279,0.97006,1.5206,1.1325,-0.89765,-0.0082483,0.92695 -2.2257,2.1733,-1.5069,0.2576,-1.0448,1.2688,0.5717,1.0337,-0.5447,1.0648,-0.14103,1.1183,0.92978,0.4235,0.38011 -2.093,-2.09,-1.0626,-0.8444,0.32851,-0.27956,-2.1039,-1.1553,1.3196,0.087205,-1.3603,1.3639,0.32669,0.067162,1.3479 -1.9466,-1.2161,-2.427,0.024024,0.33046,-0.7265,-1.7266,-0.033931,1.5029,-1.1638,-0.39482,1.9681,-0.75762,0.66708,1.6328 -2.4918,2.7821,-0.022748,0.82454,1.6701,-0.27363,0.14643,2.2597,-0.50665,1.1479,-0.43026,0.8031,-0.84974,0.18397,-0.12135 4.5415,-0.38124,-1.1982,-1.7091,2.1024,1.4864,2.0871,-1.5187,-1.0287,-1.5199,0.59052,-0.59533,-0.9275,0.38798,-0.56704 -1.8391,-1.7988,-2.5997,-0.12129,-0.14075,0.59334,-2.2363,0.96459,1.1695,0.24505,-1.3479,0.83088,-0.26839,1.089,1.3346 -0.75203,4.6288,0.32794,-0.3534,0.35201,0.72224,-1.1727,-0.32129,-1.7578,-0.46474,0.038558,0.88231,0.038398,0.070479,-0.9349 -1.8812,-2.9526,-1.7809,0.7251,0.91476,0.18106,-2.1427,0.69359,0.94487,0.29712,-1.441,0.24245,-0.5375,1.4185,1.7557 -1.7053,1.3372,-0.63936,1.8971,0.28716,0.24942,1.0105,1.3685,1.7024,0.13193,-0.25884,-0.24841,-0.68322,0.21065,0.53762 4.0591,-1.1841,-0.12674,-0.64762,1.149,1.6666,-1.073,0.85511,1.6347,0.13104,-0.71759,0.2219,0.35403,0.72411,-1.716 2.651,0.54415,-1.276,-0.80521,1.192,-0.40366,1.1477,-0.81589,-0.099371,2.6996,0.82505,-0.13068,-2.1075,-0.83343,2.1645 0.92327,0.47807,1.8212,-1.7889,-1.4997,2.1186,0.7344,1.7375,0.63513,-1.6647,-0.29409,0.32045,-0.49056,0.13849,0.35632 3.7707,-0.3518,-0.69245,0.30212,0.82511,2.3823,-0.60114,-1.1707,0.56769,-2.4608,-0.36664,0.046939,-0.81398,0.75061,-1.8329 4.0847,1.3003,-0.868,-3.09,1.5188,-1.7621,0.99943,0.86802,1.1831,0.29938,0.80176,0.21418,-1.2107,-1.8477,-1.0016 3.4955,-2.013,-1.3921,-1.3441,0.72103,1.8406,1.9649,0.82096,1.8243,0.48083,0.9041,2.1639,-1.5538,0.15745,0.58684 -2.1877,0.60021,1.8617,-0.56938,-0.23439,-1.0208,0.53104,1.611,0.79505,-1.3037,0.48674,-0.54359,0.42221,-1.3499,1.6169 4.4455,-1.6066,-0.85679,0.64856,1.2837,1.5957,1.5246,0.95155,-0.85375,-0.24764,-0.41792,1.1506,-1.0143,3.6687,-1.7753 -4.0836,0.93832,-1.698,-0.99256,0.79092,0.57534,1.0714,0.60832,-0.18351,1.0818,0.33914,-0.33286,0.17738,-0.99981,-1.1081 4.3612,-1.263,1.152,-0.11583,1.5131,1.3222,0.89789,1.2759,0.97588,-1.1478,-0.36671,2.0701,-1.1633,1.1416,-0.89816 -1.0236,1.625,-0.67603,-0.86982,-1.2758,1.2415,-0.16394,0.36586,-1.5171,0.097552,-0.40397,-0.69619,-1.1637,0.76564,0.24081 2.0742,1.4106,-0.021468,1.1323,0.26852,1.9792,0.21497,-0.73628,1.105,-1.0757,-1.4044,0.22746,-0.6803,-0.37887,-0.19958 2.8125,0.32652,-2.4755,-0.69487,-0.95366,-0.05373,1.1533,-1.1006,0.73748,1.335,0.80725,0.71538,-1.1873,-0.77049,0.958 3.8435,-2.3956,-2.6917,-0.28166,1.015,2.6016,2.2285,0.71903,-0.12261,-0.13925,0.85489,1.2807,-0.83477,2.136,0.0056401 3.0383,-0.96256,-0.56889,-0.17018,1.4159,2.0505,0.41251,0.65716,1.0219,-0.36892,-0.28359,1.7801,0.7849,0.54862,-0.43317 1.0605,1.1928,-0.70784,2.2589,-0.63733,2.1111,-0.71834,-1.6366,9.4421e-05,-0.28862,-0.77007,-0.085162,0.42302,0.99384,0.60215 0.66806,-1.2545,1.955,-1.0024,-0.93982,1.9737,0.58956,1.2774,1.9269,-0.35614,-0.82529,-0.38,1.0836,0.2788,-1.1251 0.51601,0.59682,2.083,0.99802,-0.17179,0.11233,0.29498,0.11463,1.4401,-0.75231,-0.94946,1.5387,0.69049,-2.0713,0.30338 -0.46495,3.2625,0.58173,1.1845,0.093502,-0.74807,-0.65182,-0.56156,0.58729,0.29945,-0.84992,1.4884,0.54522,0.58908,-0.33442 -2.1936,0.31668,2.275,-0.15436,1.1352,-0.83549,1.5357,-1.2173,0.4706,1.1583,-0.72741,1.1522,-0.27178,-1.2392,0.30433 1.1686,-1.2347,-1.8258,-0.55628,0.9232,3.1799,0.73548,-0.13194,0.3157,-0.80056,0.43569,1.411,2.2259,0.94338,0.68134 -3.756,-1.3438,-1.2654,-1.5128,0.76472,-0.87569,-0.91286,-0.11008,1.1474,-0.55833,-0.23724,-0.023489,-0.17213,1.2079,-0.015448 -4.2464,-0.14563,-2.0362,-1.234,2.0328,-0.1619,1.774,-0.59046,-0.083581,-1.5436,-1.4345,-1.513,-0.65322,-0.35123,-0.46788 -3.0556,-0.40974,2.1389,-1.3478,0.95154,-0.46435,0.53354,-1.3626,0.69815,1.0863,0.11391,0.32431,-0.049577,-0.0093197,0.21345 -4.5469,-0.59428,-0.69275,-1.8126,1.106,-1.3689,1.0133,0.42995,-0.38757,-1.2162,0.052614,-1.1452,-0.98373,-0.69828,-0.05065 -3.9784,0.15256,0.71806,-0.36498,1.1619,-2.1811,1.7774,0.57049,0.079215,-0.061645,0.051875,-0.025986,-0.31695,-0.39346,0.22899 -1.5362,1.083,0.10426,2.4526,-0.66895,0.63203,0.77271,-0.2874,1.2307,0.088856,0.86556,0.90682,-0.74856,0.6991,0.61071 0.032254,3.1207,2.6107,-0.69364,0.30352,-0.71695,0.035112,0.51288,-0.14185,0.2413,-1.4865,1.014,0.20902,-2.0819,0.055348 -3.6791,1.7828,1.8813,-1.6275,0.37591,-0.090601,1.2057,0.072088,-1.0073,0.46599,0.81963,-0.10406,-0.23689,-1.6462,0.45758 -1.7173,2.4221,0.62157,-0.39885,0.56498,0.011705,-0.79054,-0.096566,-0.44093,-2.1991,0.85491,1.187,-0.68849,1.6721,-1.8117 -1.1136,2.5315,2.2941,1.2791,1.1934,-0.77425,0.27147,-0.057753,0.45177,0.22367,-0.037262,1.4944,-0.44976,0.42266,0.24876 -2.9519,1.3867,-0.42425,-0.39407,-1.0365,1.1398,1.3169,-0.21677,-0.45829,-1.1446,1.3969,0.305,0.45964,-1.7285,0.062384 -3.084,1.6636,-0.75712,-0.27776,0.56007,2.4332,0.7989,0.044339,-1.1765,0.31676,0.55997,-1.4308,-0.37289,-0.74675,-1.0213 -4.1632,1.8165,0.16468,-0.63052,0.58439,0.35601,2.1376,0.30789,-0.65063,-0.89704,0.54711,0.48874,0.25254,0.081387,-0.59417 4.195,1.1865,-1.3135,-0.81755,1.1833,0.042305,0.55232,-0.94422,0.9807,0.78295,0.056899,-1.4877,-2.5104,-0.72659,-0.5243 -3.2493,-0.076143,-3.4231,-1.2353,0.84617,-0.0097926,1.2082,-1.0102,-0.035842,-0.66068,-2.2513,-0.32229,0.078059,0.45803,-0.45773 1.751,1.3484,2.0406,1.7018,1.0034,0.89175,-0.77021,-1.7518,1.0002,-0.51471,-0.74756,0.61359,-1.1614,1.0023,0.94547 -0.67733,3.7908,1.9235,-0.42153,0.93493,0.005359,-1.4206,0.84806,-0.51819,-0.89576,0.79179,1.0137,0.24843,-0.35285,0.17209 -0.86326,-0.20601,1.9276,2.0919,3.1594,0.055643,-0.23405,0.86193,-0.58047,-2.2689,-0.21377,-0.50342,-0.28659,0.99597,1.6021 -2.6805,-1.2965,-1.6351,-0.93159,1.3542,-2.1049,-1.8931,-0.13291,0.56398,-1.0521,-0.8834,2.2105,-0.51492,0.04154,1.6543 -1.3577,2.2366,1.5282,0.50975,-1.2697,-0.16758,0.49427,-0.34911,0.43554,0.57887,-0.19976,1.8392,-0.0017232,-1.2031,0.51298 -3.4778,1.3546,-2.1081,-0.55478,0.50303,1.4542,2.138,-0.47606,-0.57744,0.18663,0.16693,0.44084,0.11547,0.068694,-1.3663 2.8639,-1.0326,-2.2058,-1.2168,-1.8404,0.078795,1.0248,0.83296,0.62987,1.4022,0.17964,-0.19395,-0.15121,2.0134,1.7256 -1.6355,1.171,2.8325,0.52449,1.7697,-2.2105,0.007136,2.6914,-0.52534,-1.4811,0.078815,-0.25117,-1.1742,-0.61973,1.4612 2.3565,-0.37631,-2.3387,0.68281,0.64259,2.2427,1.5408,-0.19033,0.60455,1.6668,-0.35004,0.4366,-0.45316,-0.31837,0.53568 -3.1673,-1.1937,-1.0141,-1.7209,0.81793,0.53035,-1.1405,-0.21166,0.57153,-0.98878,-0.31578,0.37464,0.41869,1.1011,0.74503 1.684,1.8421,0.40175,1.8893,1.3988,0.97317,-0.33092,-1.8189,-1.1694,-0.24501,-1.2053,0.39252,0.24231,-1.5059,-0.53689 -2.2997,-1.1778,-3.0431,-0.32298,1.4487,0.95145,-0.91146,-0.86211,0.51606,-1.8559,-1.9549,1.7648,-0.99026,-0.24793,0.91085 -3.3378,2.6551,0.90017,-0.082626,-0.050538,0.82156,0.7869,1.1637,-0.41533,1.0887,0.50735,0.93331,0.044947,-0.15489,0.19389 -3.8763,-0.66988,-2.3254,-1.3511,2.1988,0.43616,-0.62331,-1.823,-0.42708,-1.451,-0.89014,1.8472,-0.2986,0.67344,-0.19536 1.9446,-0.48933,-0.067101,0.48437,0.77589,1.3347,-1.0311,-3.1931,-0.86345,-1.6496,-0.49837,-0.13224,0.83933,0.3609,-1.0143 -3.6535,-1.929,-1.4094,-1.9646,1.4426,1.4413,-1.3941,-1.1875,-0.34926,-1.5045,-1.1735,1.1555,0.11909,0.87998,0.12258 -4.3949,-0.74549,-1.2363,-2.3387,1.7474,-0.0031198,-0.34056,-0.99292,-0.53357,-1.0318,-0.4157,0.22715,-0.039578,-0.70084,-0.082851 -2.3637,-0.31414,2.1464,-1.3975,-0.083571,1.5816,-0.2374,-0.28564,1.3341,0.59151,1.2269,-0.53257,0.11659,1.1546,-0.03145 -3.4314,-1.1132,-1.5743,-1.2838,1.0234,0.90889,0.032627,-0.49103,0.013807,-1.9862,-0.32268,-1.1848,0.12666,-0.57116,0.075554 -3.4157,-1.1202,0.14379,-1.8385,0.66927,0.39616,-0.8738,-2.0231,0.91196,0.37538,0.41834,0.87354,-0.11247,1.7542,-0.30494 -3.3011,0.74948,0.72052,-1.0881,-0.17812,2.2111,1.0835,-0.86539,0.20025,-0.47936,1.5078,0.31384,-0.084208,0.40378,-0.41058 -0.81375,4.2669,1.4254,-0.60752,1.3262,0.41239,-1.5803,1.7183,-1.6246,0.1139,0.43755,0.2727,-0.67753,-0.27959,-0.48757 -2.8559,-2.1064,-1.2255,-0.91433,1.3481,0.12362,-2.2492,-0.67293,1.1989,-0.53734,-0.59875,1.9489,-1.1753,1.4938,0.75831 -2.8182,-0.098818,1.9211,-1.5505,-0.23064,1.2136,0.19409,-0.28538,1.514,-1.0023,1.1928,-0.64208,0.77965,0.11378,0.3775 3.9514,1.5061,0.57312,-0.95258,1.7452,-1.2472,-0.24788,-2.2846,0.82354,0.56587,0.3601,-0.49296,-0.73302,-0.48539,-0.010248 -1.9606,1.6442,2.9798,-0.035294,0.59247,-1.0597,0.53155,1.213,0.85697,0.29811,0.73552,-0.48785,0.013927,-0.42193,1.1017 -2.3836,0.21032,1.1883,-1.8155,0.12378,2.5163,0.48487,-0.37961,-0.097145,-0.68558,1.0317,-1.162,1.0134,0.63898,-0.34509 1.7873,-2.0794,3.9903,-0.82537,1.3764,1.4641,1.8639,0.95205,0.35292,1.0001,-1.5285,0.082367,-0.0036466,1.9098,-1.9295 -2.5186,0.92209,0.20303,-0.53402,-1.0735,0.3969,0.6882,0.41279,1.0993,-1.0641,0.68665,-0.536,1.3997,-1.264,1.0623 2.1851,3.4101,-1.6195,-2.2777,-0.092795,0.68476,-0.60088,-0.3483,7.9674e-05,-0.050875,-0.32716,-1.303,-0.041768,-0.826,-0.81979 1.5123,0.38164,3.0511,0.48872,0.43842,0.45935,-0.17281,1.0418,1.2779,0.13911,-2.2463,0.97138,0.36099,0.1199,-1.2987 0.27952,1.7121,0.016612,2.0646,2.6384,0.24847,-0.94336,-0.85864,-0.3254,-2.1603,0.43581,-0.12781,1.3423,0.47797,0.047314 -0.12876,4.1978,0.9521,-0.38276,0.0073005,0.35813,-0.4509,0.89274,-0.57482,0.41248,-1.9283,0.22809,0.61333,-1.4202,0.41588 3.3636,-0.075838,0.73428,1.1028,2.0483,0.63171,-0.27648,0.54819,0.92744,0.15536,-1.5837,0.51561,1.0135,0.34827,-0.94255 1.0123,1.5363,2.9556,-1.4573,-0.8502,1.547,0.68485,0.51559,0.84167,0.087036,-0.099258,0.55091,0.40657,1.6763,0.6612 0.10138,1.0611,2.9865,-1.1378,0.31031,-0.51749,-0.90934,2.7657,0.49123,-1.8803,-0.34263,0.092975,1.3882,-0.54807,1.4881 2.8546,-0.76715,-3.1057,-0.3198,-0.11025,3.1998,0.88524,-0.23997,0.0511,-0.094033,-0.097522,0.396,-0.2785,1.4559,-0.50169 -0.25838,2.2858,1.3302,0.94338,-0.36694,0.10775,1.2678,-0.59016,0.6554,0.70597,-1.1878,1.3598,0.69165,-0.66981,-0.20185 -1.5775,-2.1821,1.8174,-1.3553,-0.17011,0.26089,0.72157,0.76144,1.6254,0.8997,-1.2288,-1.09,1.6861,0.21088,-0.10891 -0.48407,-2.368,2.2241,-0.96594,0.62246,0.3179,1.5339,0.19429,1.699,1.3616,-1.4758,-0.8551,1.134,0.89286,-1.0094 -0.69057,2.4265,2.5196,-1.3261,-1.1524,0.44239,-0.079195,0.64568,-0.71671,-0.32053,0.85945,0.023197,0.19084,-1.7992,1.2269 3.0172,1.293,-2.4631,0.18499,1.1994,1.1269,0.60165,-1.6997,-0.30566,-0.41125,-0.47157,-0.935,-1.1621,-1.2716,-1.089 -0.20082,0.54317,0.096641,0.9289,-0.18616,-0.59232,-0.69841,1.7904,2.2419,-0.99864,-0.051016,0.32864,0.9278,-0.074795,1.209 -3.8924,1.4385,0.91192,-0.78067,-0.24527,1.4134,0.69083,0.45404,-0.2909,0.31697,1.4572,0.15558,-0.013917,-0.034392,-0.33158 2.0668,2.1116,0.91845,-1.9822,0.66678,0.066993,-1.8663,0.46754,1.4962,-0.62942,-0.67671,0.063621,1.0267,-0.12535,-0.17658 4.5298,-1.3967,0.23817,-2.543,2.0382,0.14158,1.9246,-0.53533,1.7714,0.89348,1.2457,2.1901,-1.1738,0.76803,0.57416 1.7381,2.8974,0.25676,-1.7944,-0.099015,2.5169,-0.071349,0.57841,-0.89498,-0.69213,0.27569,0.56525,0.45561,1.392,0.56038 2.8831,-2.1145,-2.8903,-1.109,-0.07218,1.7463,1.6221,-0.99852,-0.6969,-2.4324,1.9714,0.34454,-1.0827,2.2419,0.95792 -1.3103,0.95828,2.3669,-0.35882,0.85151,-2.0652,0.078313,1.8778,1.1795,-1.9451,0.8752,-0.043836,0.73864,0.14346,0.58496 1.112,-1.0443,4.3213,-0.61901,1.2992,-0.63047,-0.5837,2.811,-0.1216,-1.3366,-0.56857,1.125,1.5493,-0.13167,-0.21069 -2.7088,1.4547,-1.946,0.60492,0.37347,2.4723,1.3305,1.3825,0.43333,0.83722,0.021269,0.076856,0.60308,-1.0711,0.20084 -0.9466,1.8945,0.46824,1.3801,-1.1175,0.56802,0.083508,-0.40968,1.0475,0.56545,-0.70681,1.8258,0.39225,-0.25572,0.49332 -3.8753,-1.1374,0.87561,-1.6857,0.74862,-2.0981,0.41222,0.66613,0.48278,-1.5949,0.14001,-1.6733,-0.12033,-0.21199,-0.055156 3.5461,0.014656,-0.75693,0.62483,1.376,2.3646,-0.11961,-2.2239,-0.015886,-0.36533,0.036882,-1.0376,0.40888,0.50578,-0.99344 0.80698,-0.023611,-0.81967,2.1699,1.869,0.52685,-1.746,0.10541,1.3313,-2.2701,0.18747,-0.39855,0.98945,0.50886,0.2073 1.3246,1.5616,-1.1155,1.7344,-0.033678,1.6607,0.07098,-1.2159,0.78906,-0.17588,-1.6324,0.51965,0.07502,-0.85234,-0.77851 -2.748,-0.38394,2.8987,-0.027165,1.3695,-2.0763,1.3185,0.72263,0.87608,-0.90756,0.16285,-0.55978,0.47313,-0.84465,0.018193 -1.2347,2.2485,0.033856,2.8338,1.0921,0.22285,-0.62294,0.67233,-0.38418,0.17344,0.23748,0.77445,-1.555,0.49223,-0.48234 -3.1213,1.0199,0.45844,-0.29333,0.80138,-2.0164,1.8212,2.0054,0.36195,-0.66617,0.42996,-1.8774,-0.48977,-1.0773,0.14584 -2.7832,-0.2745,2.7006,-1.3779,0.92752,-2.0792,1.0384,0.7836,0.55577,-1.0268,0.044408,-0.97746,1.2078,-0.83422,-0.18037 -3.2446,-1.2904,2.5866,-0.89941,0.41041,-1.5694,0.73647,1.2849,0.39624,-1.4786,-0.088187,-1.0318,0.33711,-0.96132,0.11217 -3.0786,-2.8733,-0.7408,-0.97883,1.5478,-2.3361,-0.8668,0.42784,-0.33388,-0.48639,-1.3816,-1.04,-0.9289,-0.85457,0.45971 -3.7758,-1.9889,1.7967,-2.481,0.94063,-1.5548,-0.33395,0.49214,0.057242,-1.3512,-0.29206,-1.3678,0.60519,-0.12749,0.21935 -3.4645,-0.52559,1.6623,-1.5951,1.8417,-2.0859,1.2907,0.086041,0.20382,-0.24987,-0.20874,-1.3294,1.3509,-0.53712,-0.27089 2.1759,-0.35298,-2.4502,-1.3156,-0.61926,-0.049415,0.89995,1.5807,0.90489,1.1217,1.5685,0.80714,-0.73663,-0.49388,1.0778 -1.3208,1.9978,3.0438,-1.0738,-0.32049,0.78824,-0.21394,0.46278,0.011281,-2.4584,0.25183,0.59954,0.67745,-0.90026,1.5493 2.6492,0.35692,-2.1743,-2.8093,-0.2353,-0.044805,1.3694,0.71618,1.5298,0.62248,2.0496,1.953,-0.83761,-0.85612,0.74103 4.1812,-2.1838,-1.2266,-1.7326,2.0417,2.6455,1.8777,-0.84556,-0.83069,0.441,0.16643,1.9585,-1.1496,-0.18408,0.67346 -4.1256,0.61797,-1.2858,-1.2686,0.9447,0.41535,1.1894,-1.0741,-0.50991,0.037102,0.019898,-0.53291,0.92808,-0.85266,-0.4618 -2.6437,1.4225,-2.8532,-0.26218,0.061673,2.2304,0.91531,0.57863,-0.092108,0.81507,0.24215,0.091948,0.70022,-0.90172,-0.60164 0.16385,2.4046,-1.1181,1.7916,-1.4456,1.4738,-0.8005,-0.5809,-0.043757,0.36932,-0.48699,0.29377,-0.86491,0.36277,0.0093039 -4.1549,0.24912,-1.7127,-0.54528,1.1886,0.61918,1.7246,-1.1036,-0.094872,-0.80314,0.12558,-0.29725,0.39096,-0.092041,-1.241 -2.7816,1.3372,0.39953,0.63425,-0.37654,0.055882,1.8123,-0.93941,1.0479,1.1158,0.60849,0.38146,0.51989,0.22619,-0.1055 -3.393,1.6287,0.26065,-0.90156,0.88145,0.99951,2.632,-1.0892,-1.188,0.43162,-0.28368,-0.41083,0.010642,-1.0229,0.040098 3.4038,-0.1901,-1.1556,-1.9044,3.2928,-0.50858,1.2159,-0.27414,-1.2354,2.0398,1.1468,0.45212,0.12817,-2.7298,1.9981 0.010957,3.2366,-1.3256,1.3883,-0.14912,0.040764,-0.87875,-0.28654,0.13747,0.7326,-0.34643,0.65327,0.24353,0.45061,-1.0527 0.50517,4.1248,0.29173,-0.51147,-1.1844,1.7552,-0.73495,-0.07323,-1.6696,-0.48875,-0.41284,0.13597,-0.27796,0.81274,0.25174 -3.9753,1.5303,-1.2938,-0.7057,0.27942,0.65885,1.6056,0.67363,-0.56383,0.16493,0.63869,-0.35886,0.65489,-1.3491,-0.44308 -4.2316,1.2849,-1.586,-0.81006,1.1228,0.5566,1.9537,0.59575,-0.48155,0.30677,0.039825,-0.76554,0.85602,-0.78763,-0.27645 -1.4658,1.2876,1.3071,1.3256,0.33933,-1.0304,0.13749,1.791,1.5814,-1.1293,0.35684,0.32174,-0.2687,-1.2854,1.1883 -3.9512,0.97372,-1.2019,-0.47552,0.57993,0.41333,2.1422,0.073074,-0.38997,-0.66787,0.3552,-0.15562,0.75331,-0.83804,-0.073067 -3.0628,0.66469,-1.9853,0.20365,0.40269,1.6301,1.6175,-0.69587,0.79493,-0.61432,0.2976,-0.85352,0.061871,-0.72325,-1.416 -3.8188,0.39997,-1.2821,-0.70485,-0.32529,-0.25106,0.97525,0.78209,0.79829,-0.7109,0.53992,-1.0503,-0.4269,-0.1661,-0.92478 3.9979,-1.1612,-0.23571,-2.0139,1.7358,2.8086,0.8064,-1.9304,-0.38545,-1.1107,0.81673,-0.086424,0.78684,0.67275,0.072773 -3.826,0.36327,-0.45853,-0.82637,0.39734,1.1731,1.1511,-0.40669,0.31559,-1.4576,1.0807,-0.91841,0.23135,-1.2565,-0.58692 -1.5488,0.43791,3.0214,-0.22759,-0.13141,-1.1897,0.63366,0.66506,1.7572,-0.46858,0.069258,0.045952,0.81779,-1.2923,0.97671 -3.0981,1.1438,-1.8528,0.15492,-0.76245,1.0155,0.76846,1.3409,0.30789,-0.98389,-0.035641,0.46388,0.3133,0.6324,0.16395 -0.040504,4.155,1.311,-1.1161,0.90603,-0.58371,-1.6169,0.77063,-1.4849,0.19421,-0.38162,-0.60822,0.588,-1.368,-0.31036 -4.0295,0.98003,-0.82499,-1.4851,1.3177,0.40454,1.395,-0.92702,-1.2668,0.48013,-0.10963,-0.60237,0.57123,-1.2432,-0.27117 0.32662,1.8772,1.2644,1.8965,-0.44318,0.94501,-0.29498,-0.93286,0.71382,0.32262,0.47591,0.78761,-1.3291,0.90994,1.0599 -1.0124,-0.32626,0.50856,-2.3137,-1.7074,0.7852,0.82761,-1.853,0.91831,-0.33657,-0.45558,-1.1878,-1.297,1.1171,-0.53574 -0.92672,-0.25002,1.2044,-1.1688,-1.2331,1.1585,0.94774,-1.3799,1.9581,0.94668,-0.107,-1.0192,-0.87723,0.12394,0.33049 3.0421,0.0025331,0.10745,0.79117,1.3609,1.951,0.055903,-0.97161,0.49977,-2.3319,-1.2924,0.48679,-1.1646,-0.87299,-0.92354 -0.62944,2.7698,2.1574,-1.2456,1.5835,-0.15534,-0.67618,1.223,0.12125,-0.77455,2.3655,0.91821,-0.67139,0.71559,-0.045844 -1.8912,2.7916,-0.49689,-0.48218,1.1051,0.94045,-0.50281,0.88771,-0.099685,-1.5576,0.65824,-0.015246,0.48927,0.40631,-0.73098 2.408,0.65794,1.5217,1.838,0.26151,1.7924,0.35452,-1.5083,0.30676,-1.0391,-0.72392,0.0027032,-0.80132,0.94791,0.73203 -1.2329,-0.35376,0.36786,2.6532,0.47325,-0.14186,0.21816,1.3441,1.2489,-1.3766,0.10064,-0.27595,-0.5331,-0.14781,0.91732 -0.03018,2.3612,0.67637,-0.99332,1.0824,0.31402,-0.77907,0.40536,0.96684,-1.0435,1.4207,-0.034867,1.7118,-0.11845,0.86628 1.3363,-0.53804,1.7671,-0.31067,-1.0762,1.5322,1.6618,-0.59746,1.5183,0.083811,-0.41371,-0.44153,-1.7204,0.90771,-0.82874 2.2118,-1.4747,2.2367,0.71475,0.69306,2.8411,1.5366,-0.57083,0.072116,-1.526,-0.83692,0.63887,-0.043268,0.56019,-0.58951 1.4972,0.16109,1.9451,1.2115,0.83721,2.0218,1.9559,-1.4845,0.56788,0.40586,-0.49878,-0.7855,0.32843,0.90998,0.33784 -0.67824,-0.17369,1.1113,-0.95408,-1.3859,1.2403,0.62112,-1.9638,1.6601,0.55545,-0.0024942,-0.74881,-0.73096,1.2568,-0.35744 -0.79834,1.3816,1.463,0.060833,-1.2926,0.38829,0.6293,-0.53071,1.2853,-0.30683,-0.15321,1.5411,1.0245,-1.5339,0.60127 1.2287,2.4559,0.4289,-1.0357,1.7535,-1.5426,-2.2769,-0.3915,1.1582,1.076,1.2219,-0.11951,0.28121,-0.55171,-0.11245 -1.9872,-0.47651,-0.033905,1.0647,0.26937,0.84539,1.367,-2.8149,0.48333,0.98987,0.4717,0.12514,-0.079963,0.42917,-0.47879 0.26428,-3.0106,0.40936,-1.4729,0.038224,1.734,0.16107,-0.27641,1.0229,0.47963,-2.1999,0.43265,-0.2365,1.3948,-1.9313 -0.78478,-0.74534,1.6413,-1.7744,-1.3291,1.9758,-0.72653,-1.0473,1.0409,0.20982,0.27048,-0.72461,0.34857,1.8837,-0.22074 2.8286,2.2548,-0.30027,-1.6902,1.8713,-0.2256,-0.68388,-0.41631,-0.32599,0.93944,1.1421,-1.1565,0.86016,-2.3301,-0.15869 -2.074,3.1137,-0.19754,0.69421,-0.014394,2.1234,1.7089,0.51449,-1.0828,0.54581,-0.9131,0.032492,-0.089395,-1.1882,0.89853 2.2488,3.202,3.1392,-1.5549,0.88462,-0.93094,0.18021,-0.33608,0.20077,-0.053131,-1.0778,0.40603,-2.2,0.013796,-0.26862 2.4799,3.2037,3.187,-2.1318,1.0185,-0.912,-0.052522,-0.28557,0.11191,-0.47826,-0.56322,0.19862,-1.5432,0.095364,-0.26972 4.2391,-0.35566,3.1792,-0.66175,3.1765,-0.85712,-0.90235,-0.31161,0.42882,-0.39094,0.13481,0.88948,-0.063945,0.32396,-0.29675 3.8166,1.3652,2.1282,0.32249,2.0086,0.027017,0.26517,-1.3508,-0.33175,0.30742,-1.0103,-0.9073,-2.0379,-1.2123,-0.56402 4.5885,0.3029,1.0944,-0.94557,3.3282,-0.505,-0.18187,-1.3311,1.0164,1.0587,0.58332,-0.31942,-0.43392,-0.60488,0.48041 2.547,1.2514,3.3222,0.36864,1.5064,-0.92719,0.28221,-1.6795,0.10103,-0.45186,-1.786,0.61888,-1.6097,0.11376,-0.65734 2.436,1.2557,3.5101,0.39307,1.6624,-1.2088,-0.90516,-0.40935,1.3347,-0.62057,-1.0726,0.78908,-0.20305,-1.2933,-0.22668 1.4969,2.5751,-1.914,-1.071,-0.20022,0.85044,-0.90043,-0.69185,0.17734,0.60174,0.36305,-0.62191,1.7274,-1.6842,-0.51983 0.56923,2.9812,1.8736,0.3708,3.1609,-1.4491,-1.3959,-0.98937,-0.10517,0.45369,0.22578,-0.17568,-0.92626,0.754,-0.18811 -0.5459,-0.60106,1.1693,2.5752,0.37861,2.1946,-0.28882,-0.14354,-0.04567,-1.5293,-0.80387,0.69241,1.0697,-0.20078,1.3111 2.9456,1.9519,-0.91159,-1.6114,0.59092,-0.33765,-0.40666,-1.6996,1.5084,1.5568,1.1494,-0.0063132,0.34227,-0.61506,-0.15201 1.1241,1.2525,-1.0412,-1.2509,0.88202,-0.69019,-0.52312,0.47544,0.49034,2.437,1.3176,0.64927,1.525,-2.2487,0.54498 1.7637,3.1941,1.1463,0.06001,3.034,-1.4508,-2.0157,-0.55006,0.057429,1.4338,0.90323,-0.37369,-0.41258,-0.60751,-0.45508 4.0095,1.0087,0.64704,-0.71638,1.4984,0.38692,-0.43158,-2.1358,0.86039,0.065839,0.10938,-0.72857,-1.8434,1.05,0.033853 -3.2787,1.3665,-2.0041,-0.38306,-0.094582,2.414,1.3651,1.2415,-0.85455,0.67312,0.61468,0.14582,-0.42223,-0.36043,-0.85265 4.2968,0.032764,0.97253,-2.1353,4.418,-1.5959,0.43168,0.40997,-1.2955,1.0882,1.4375,-0.17285,-1.7077,-1.4289,0.68623 2.8663,0.10963,1.9471,-0.5128,4.133,-1.2268,-0.69308,-1.8077,-0.19315,-0.31258,0.84701,-0.55274,-0.65383,0.45287,0.85676 0.56257,2.288,-1.1502,0.67234,-0.41687,0.24606,-1.764,-0.73504,1.2009,0.91156,0.7103,0.019364,1.1323,0.58731,-0.83637 0.75775,2.2174,2.5695,1.5196,3.0356,-0.89664,-0.6039,-1.3348,-1.1282,-0.12135,-0.24313,0.096111,-0.88211,-0.60417,0.7024 1.7031,1.8885,-1.2953,-2.1335,-1.0255,1.5625,0.47998,-0.16538,0.13437,-1.7698,0.38907,-0.51308,-0.3925,1.2716,-0.1064 -1.2532,-0.73572,3.049,0.9543,0.4996,-0.24067,1.2377,-0.93375,1.8538,0.097234,-0.72688,0.71352,-0.13745,-0.64,0.12662 -2.6,0.78851,-2.6626,0.10502,0.55103,1.7378,0.96962,-0.98434,0.62333,0.81609,-0.66437,-0.57874,0.73149,-0.56269,-0.73894 -2.6267,2.9931,-0.011419,0.19083,-0.04675,0.43738,0.16035,1.9655,0.2147,-0.52169,0.17939,0.98139,0.32479,-0.86086,0.77722 -3.4151,0.6268,-1.0071,-0.082296,-0.27358,-0.68591,1.5073,1.4079,1.2458,-0.35809,0.32493,-0.18913,-0.46715,-0.39424,0.13576 -1.8211,3.7039,-0.70717,-0.045743,0.49233,0.31091,-1.2878,1.9143,-0.60253,-0.64322,-0.21161,0.68978,0.64362,-0.99867,-0.46889 -3.0303,1.4227,0.49862,-0.81707,0.85717,1.3179,0.81937,0.32825,0.28458,-1.6542,0.44052,0.033099,-0.48115,0.73431,-1.1887 -2.5387,0.37126,1.3418,0.85758,0.88472,-1.1499,1.0286,0.45003,2.031,0.48186,0.85276,-0.39999,-0.45334,-0.50225,1.0486 2.9232,2.5645,0.22087,-1.6095,-0.13129,-0.50861,-0.55819,0.25363,1.0724,-0.6304,-0.88013,0.83567,-1.2057,-0.92406,-1.1452 2.6038,1.3521,-0.031365,0.33736,2.0563,1.0867,-0.29014,-2.4488,-1.6073,-0.79371,0.027411,-0.605,1.7176,0.45002,-0.53208 -0.8954,2.7884,2.1422,-0.02364,-0.097783,-0.66412,-0.26711,0.43576,1.0278,-0.44411,-0.57555,1.254,0.79686,-1.1987,1.274 4.7426,-1.4253,-0.63097,-1.5472,3.1537,2.6713,2.1911,-0.80527,-0.19499,-1.3771,0.99807,0.45501,-0.26107,0.24229,0.038348 2.5782,1.5726,1.767,0.65399,0.73603,0.30741,-0.85563,0.041751,1.0262,0.94004,-1.1728,0.54678,-0.88017,-1.4311,0.18664 -2.2951,2.575,0.38696,0.3685,-1.1118,-0.0044042,-0.78033,1.7789,-0.86637,-0.35212,1.1617,0.90299,0.27567,-0.9852,0.28894 3.2349,1.56,-0.17846,1.1806,0.4395,-0.14424,-1.4601,-2.4281,-0.40035,0.5999,0.34996,-0.84726,-0.9922,-0.45042,-0.37413 0.83653,1.6249,2.0551,0.64365,1.6673,-1.3451,-1.6346,1.0539,1.5742,-0.49112,-0.018591,0.84889,0.25505,-0.85825,1.0901 4.1143,-0.87516,1.4879,-0.14495,2.5796,0.70044,-0.98852,1.2932,0.12395,-0.51276,-1.4763,0.6689,-0.44707,-1.1492,-1.6524 -1.2839,1.2433,1.7807,2.2528,1.8646,-0.097123,1.033,0.32785,0.19226,1.1446,-0.41532,0.1003,-0.57522,-2.1553,1.6506 -1.4765,1.8178,-1.0752,2.1154,-0.84784,0.86833,1.0177,-0.026198,0.17883,1.6036,0.070681,1.4563,-0.36156,0.60583,0.25772 0.39741,0.37684,0.87515,2.3216,2.8297,-1.2308,-1.0178,-0.19033,1.4979,-1.0288,-0.39924,-0.017083,0.081964,0.15941,1.051 3.4151,0.58558,-1.3974,-2.5258,-1.1651,1.1604,-1.3644,-0.062093,1.2219,0.092648,1.0858,-1.4027,-1.2145,0.55775,0.56796 -1.1632,-0.42223,0.50636,0.94898,-0.61061,0.85597,1.6548,-1.78,1.4205,0.89783,0.2894,1.0108,0.12013,-1.0859,-0.47538 -3.5259,2.2388,0.65791,-0.97272,0.05345,0.11648,1.7176,0.3677,-0.34491,-0.10464,0.40199,0.15382,0.96331,-1.1959,1.0073 -1.1111,1.3,-0.94972,0.93492,-0.92334,0.33091,1.2167,1.2968,1.3464,-1.5603,-1.0386,0.37851,-1.3985,-0.14317,0.43526 2.3406,0.79865,1.2507,1.646,1.5571,2.0248,-0.3604,-1.8699,-0.2647,-1.311,-1.2346,0.42119,-0.42274,-0.38371,0.71059 -2.6545,0.99794,-1.3582,0.27319,-0.66523,1.0064,0.83204,-0.50079,0.69926,1.4056,0.91608,1.0204,-0.12416,0.55829,-0.63619 -2.4834,1.6167,-1.4865,0.27281,-1.4505,1.1261,0.72051,0.33212,-1.2063,1.7306,0.51174,0.56372,-0.25712,0.43205,-0.74376 -2.1507,2.9909,0.11741,1.2048,-0.29793,2.1387,0.80072,0.40882,-0.71815,-0.95804,0.45936,0.66157,0.22942,-0.18962,0.09124 -3.2745,1.4961,-0.76205,0.10454,-0.69379,0.86129,1.7064,-0.088219,-0.070891,-0.62084,0.71739,0.47918,0.99368,0.39314,-0.13578 4.3184,-0.046793,-0.40412,-0.48845,1.8716,2.8911,-0.51156,0.37063,0.14593,0.46898,-0.80671,0.56683,0.03457,0.67112,-1.6112 1.6972,2.2691,0.14103,-0.83278,-1.1204,1.2617,-1.0438,0.31789,0.93856,-0.18042,-1.2409,0.37675,-0.62983,-0.21933,-0.49415 -2.1129,1.5288,0.21106,2.0251,0.58639,0.42474,0.90765,0.6581,1.0209,1.2426,0.49345,0.28935,-0.77651,-1.1675,1.1655 -2.5329,0.80818,-2.8873,0.26979,0.047872,2.4319,1.2532,-0.0015605,0.11755,1.4607,-0.21747,-0.34059,-0.11592,-0.37944,-1.2653 0.35752,1.4848,0.78175,2.354,0.8016,1.4866,0.13783,-1.7443,0.52823,-0.4931,-0.66342,0.82212,0.17903,-0.25153,1.2193 -2.0387,1.8088,-1.9132,1.2093,-0.97246,1.5837,0.93539,0.82889,0.26077,-0.76543,0.51614,0.0029349,0.7565,-1.1378,0.77691 0.43021,0.96226,1.7295,2.494,0.33329,1.5312,0.66107,-1.5715,-0.19515,0.075552,0.36193,0.46178,-0.48215,0.98811,1.4789 -0.47558,2.145,-0.31101,2.5061,1.4139,1.7792,-0.48434,0.0011917,-1.0974,-0.25554,-0.32239,0.32789,0.97168,0.55486,0.39615 0.35399,2.3719,-0.68627,2.2433,0.78011,0.92617,-0.69935,-0.54556,-0.057803,1.514,-0.95446,0.50494,0.68033,-0.16722,-0.6974 -1.054,2.5862,-0.90449,-0.10941,-1.0498,0.72955,0.14165,-0.95615,-1.132,-1.6474,-0.2543,0.21095,0.7459,1.8965,-0.031767 -2.2393,2.5096,-1.1243,1.0159,-0.093121,1.2675,0.27246,1.4929,0.024983,0.75328,-0.40213,1.3002,-0.85535,0.30477,-0.85021 -1.7405,2.8174,0.50493,0.45629,-0.91845,0.64383,-0.10645,-0.017807,0.46271,-0.20567,0.048116,1.8021,0.41007,0.57788,0.38181 -2.4532,2.6003,0.70229,-0.16851,-0.32225,0.59865,0.85344,0.55639,-0.5427,1.3151,-0.34448,1.488,0.75135,0.28361,0.4764 -0.68394,2.5735,0.81177,-0.27696,0.89023,-1.2828,-1.8393,1.7052,0.90488,-1.8692,0.28946,0.32632,0.88317,-0.65267,1.0211 1.7094,2.1714,-2.8186,-2.2216,-0.69606,0.87397,-0.18374,0.052298,0.27496,0.083325,1.1654,-0.94646,-0.22567,-1.1946,0.52838 -1.5278,2.2248,2.2376,-0.25056,-0.7839,0.99881,0.61677,-0.52695,0.51698,-0.59751,-0.038385,0.85413,0.74099,0.23667,0.95557 -0.73484,-0.80166,1.228,2.6304,0.34413,1.4622,0.13805,0.33435,1.002,-1.1824,0.64958,0.13385,-0.1724,0.17806,1.1241 -0.094604,3.7047,-0.070119,0.24124,-0.94433,0.90434,-1.0984,-0.71219,-0.65523,-0.71822,-0.13765,1.0735,0.86393,1.3479,-0.51791 2.6259,1.8157,-2.6842,-0.13168,0.91378,0.97753,0.61785,-0.2771,0.87291,1.2816,-0.57784,-0.93475,-0.75962,-1.3617,-1.2466 2.6324,1.7207,1.8915,-1.5303,-0.87097,0.95698,-1.1921,1.1211,0.25354,0.41425,-0.56642,0.27672,-0.83068,-0.60412,0.49501 -3.0102,-2.2544,1.4868,-1.2385,0.40863,-1.3759,-0.38887,0.055561,1.5573,-0.32456,0.15159,-1.2677,0.16065,0.5243,0.41378 2.3491,2.3356,-1.0065,0.12192,1.906,-0.0036698,-0.22675,-0.33004,-0.51582,-0.043965,-1.5937,-0.8265,0.84359,-1.8522,-0.85081 0.42203,1.2782,1.7656,0.022841,-1.9367,1.9237,0.084714,-0.38644,1.1958,0.42781,-0.2772,0.36082,-0.82232,0.18935,0.77374 -3.4839,2.5151,-0.053593,-0.030246,0.1889,0.553,1.2115,1.4032,-0.53727,-0.42943,0.42434,0.53055,0.43878,-1.3361,0.7957 -0.92769,2.9438,2.1349,-0.43476,0.33612,-0.75446,-1.4793,1.4765,-0.08876,-0.34379,0.25997,0.8858,0.2766,-1.6979,0.99227 -1.1544,0.041616,3.4588,1.2271,1.3181,0.55027,0.98858,-1.3373,1.1584,0.078941,-0.32401,0.73829,-1.2648,0.6724,1.0709 -3.7181,-0.85626,0.48026,-0.67449,0.52711,-1.2604,0.63786,0.64443,1.5011,-0.28985,0.84494,-1.0954,-0.75363,-0.41879,0.25551 -0.4751,0.7813,1.2869,2.0767,1.5461,0.5773,-1.426,1.6206,2.0789,-0.24434,0.059715,0.64399,-1.0314,0.96323,1.0537 1.0034,1.0356,2.7123,0.31871,0.27479,1.1688,-1.0565,0.8818,1.8584,0.40403,-0.86538,0.94439,0.48445,-0.95009,0.98299 3.6838,-0.88597,1.8813,0.56693,2.8132,0.04669,-0.19234,-3.17,-0.70544,-1.1538,-0.52823,0.23964,-0.36826,0.38886,-0.96015 1.4363,2.1677,-2.1164,-3.439,0.9607,0.71842,1.4025,1.7636,-1.3483,0.065689,0.44765,-1.5405,-1.6283,-0.67733,0.74284 2.8374,0.1822,1.0124,-1.1387,2.2588,-0.56617,-1.5419,0.25612,2.1429,0.64841,-0.23528,0.065737,0.5414,0.22942,0.36111 -2.4772,2.2708,-0.52979,0.92496,-0.62164,-0.15417,0.52768,1.5978,0.52589,0.078395,0.19822,0.8947,-0.17623,-0.68432,0.50691 1.5048,0.60723,3.952,-0.45517,1.3382,1.1428,-2.1007,2.263,0.72516,1.0585,-0.54348,0.60325,-0.26394,1.312,0.77825 -0.42525,3.4103,2.9489,-0.47069,2.3447,-1.7943,-1.3681,0.48171,-0.069805,-0.36097,0.18123,0.38199,-0.45242,-0.055846,-0.18224 3.1834,0.67409,2.1664,0.14384,0.89749,1.6554,0.59024,1.3927,1.1703,-0.29857,-1.3666,1.0829,1.3296,1.5067,-0.71616 -0.19416,0.71365,1.9252,1.5945,0.23781,1.5897,0.091134,0.74874,1.9473,1.068,0.73389,0.29869,0.2288,1.0643,0.83722 -2.5698,1.6151,0.079002,0.18623,-0.75273,1.3557,1.2159,-0.74268,0.61847,1.0583,1.2837,0.020887,-0.057099,0.62079,-0.70539 -1.3459,2.3871,1.0751,0.97797,0.20911,0.34215,0.13891,0.80028,1.2199,-1.4386,0.77093,0.46661,0.80044,-0.745,1.0929 -1.4558,3.2123,-0.09009,0.19386,-0.64692,1.9326,0.72236,0.046107,-1.0172,-0.086703,-1.3404,0.8248,0.51293,-0.68738,0.55858 1.2524,3.6205,-1.2147,-1.6943,0.43861,0.64905,-1.0911,-0.34634,-0.26811,1.9839,0.13808,-1.0548,0.44141,-0.55787,-0.012018 2.3368,2.451,-1.1466,-0.64952,1.583,-0.18861,-0.24069,-1.0656,0.80653,2.7952,0.29291,-0.41829,0.191,-0.82385,0.059662 0.74322,3.3295,1.1225,-0.92726,-0.86828,0.27904,-0.48986,1.1407,-0.58495,-0.057865,-0.85465,0.18206,-1.263,-0.84657,-0.57772 -1.9322,2.2194,1.7666,-0.1771,0.017411,0.074754,0.26311,0.89642,1.1533,-0.39746,0.23328,0.654,0.60321,-0.68823,1.2031 -2.2751,0.67441,1.2168,-1.1135,-0.42332,1.6394,0.26116,0.85325,1.0906,-0.21482,0.5373,-1.1293,1.2902,-0.83497,0.99056 3.2455,-0.73866,-2.3146,-1.6741,0.12821,1.3091,1.6072,1.1882,1.8366,1.462,0.93474,1.5368,-0.85388,0.32231,0.061097 2.899,0.89748,-0.56087,-0.72154,-0.18643,-0.91327,-0.98805,-1.5173,1.5393,-0.2108,0.17618,-0.26365,-0.43512,-1.465,-0.83768 -3.071,2.4557,-0.021916,-0.55071,0.30814,2.4807,0.95972,0.37141,-1.7308,0.56091,0.98976,-1.2231,-0.060531,-0.59868,-1.0623 -3.6843,0.30083,-1.6747,-0.77152,-0.28813,-0.74001,0.84183,1.0184,0.64005,-0.088015,-0.069963,-1.833,0.10059,0.30586,-0.42079 -2.9438,-0.75218,-0.46184,-1.0783,-0.41922,1.6432,-0.15919,-2.1286,0.76808,-0.61171,0.43324,-0.097362,0.88666,0.82191,-0.26304 -3.7847,-0.055983,-1.9608,-0.96168,-0.30323,-0.18161,1.2399,-0.19677,0.87846,-1.3971,0.09338,-0.90579,0.052314,0.72693,-0.99687 -3.1948,1.2753,1.5634,-0.058836,-0.10934,-0.45252,1.0553,0.70215,1.1857,-0.89345,0.89631,-0.23635,0.31655,-0.60748,0.74834 5.1396,-1.0156,-0.47708,-2.0454,4.4469,2.8396,2.4308,1.511,-2.4652,0.26987,0.38697,0.21582,1.3661,0.2751,-0.053328 3.0228,2.7357,0.81454,-0.88802,2.3664,-1.5622,-0.97908,-0.41916,-1.097,1.684,-0.080853,-1.4762,-0.89542,-1.697,-0.050838 1.2813,-2.3384,0.37345,0.4987,3.9309,-0.78521,-1.8496,1.0086,-1.2943,-2.3738,0.76119,1.0536,0.70646,1.1019,0.15633 2.5393,0.015342,-1.0236,-1.2135,1.5171,-1.292,0.94416,-0.13674,1.3451,1.1283,0.65385,0.95977,0.65236,-2.8033,0.59958 0.75111,3.5817,0.93521,0.67304,1.0324,-0.52313,-1.3856,-0.26984,-1.458,2.1316,-0.84777,-0.29695,-1.3859,-0.59874,-0.31374 -2.0758,1.2875,-0.34776,1.9726,1.1584,0.37767,1.2046,0.33949,0.35609,-0.43951,0.13583,-0.33587,-0.57462,-1.2317,1.3715 -0.1622,2.9164,-1.004,1.6042,-1.0085,1.4072,-0.65387,0.29437,-0.58427,1.3523,-0.85275,0.62377,-0.25933,0.31748,0.16564 0.74319,3.0296,0.34553,-1.29,-0.56921,1.4462,-0.29448,0.8766,-0.96825,-0.37125,0.59747,0.45086,0.47839,-0.65607,1.0599 3.6521,0.97779,0.82574,-0.4082,1.0956,-0.72829,-0.64458,-2.6705,0.67892,-0.32396,0.20663,-1.0279,-1.741,1.1811,0.12855 -0.028749,0.93223,1.6481,0.58414,-0.94385,0.45118,-0.8552,0.62029,2.3323,-1.0017,-0.78843,0.71959,0.88086,-0.44206,1.5028 -1.7929,2.927,0.55043,0.89117,-0.47555,0.78598,0.85138,0.058307,-0.68303,2.202,-0.0074711,1.4274,-1.1796,-0.26996,0.18777 2.3162,0.83176,-1.3891,0.54932,-0.022471,1.8536,-0.39276,-2.6011,0.28669,-1.1247,-0.13293,-1.1527,0.12067,-0.11423,-0.15195 -1.3227,0.5468,-2.0593,1.7051,0.361,1.3169,0.81062,1.3223,1.4025,-0.36636,0.18094,-1.5762,-0.11711,-1.2281,0.8908 3.7266,1.039,1.3393,-1.0251,1.1114,0.12344,-1.7141,-0.91388,1.9584,0.14576,-0.84594,-0.76766,-1.4983,2.9487e-05,-0.3829 -1.5457,0.7372,-0.47958,1.4753,0.30793,0.96571,0.46542,1.7655,2.1231,-0.50159,0.35536,-0.69255,-1.0601,-0.8368,0.97116 3.0986,-0.45123,-1.0562,-1.5451,1.6087,3.1677,0.28517,0.11728,0.039044,-1.4246,-0.70175,0.81982,0.46043,0.57922,-0.051866 1.5028,0.59185,0.051054,1.8532,-0.94589,2.5419,0.31179,-1.3149,-0.18394,-1.4977,-1.0143,0.38541,-0.039256,0.61046,0.2066 2.0668,0.8063,-2.423,-0.39233,0.3702,0.5631,1.0551,-0.72793,2.1084,1.0353,0.1511,0.53453,-0.22541,-1.1346,0.26235 4.7145,-1.6541,-1.0196,-1.265,0.56927,0.66344,1.7192,-0.48976,0.97513,1.2862,0.99998,1.7062,-0.56158,0.88182,-0.40855 -2.1501,0.48397,-0.23816,1.0232,0.12862,0.9879,0.42185,0.27698,2.2805,0.78835,0.88439,-0.72245,0.19612,-1.1359,-0.0061087 0.03359,3.7011,-1.8548,0.92895,-0.53074,2.107,-0.26234,-0.52708,-1.3681,-0.1984,-0.70371,0.054231,-0.23443,0.22596,-1.0758 -1.9074,1.6909,-1.4882,1.4174,-0.045751,0.90739,0.90432,0.92229,0.98663,1.4835,0.17184,0.45071,-0.77469,-0.67325,0.3417 1.0028,-1.4607,1.0294,1.907,1.1361,2.3397,0.7556,0.77294,1.0456,-1.1838,-1.2787,0.40793,1.4954,-0.63839,1.2577 -4.804,-0.0052165,-0.50266,-2.1067,1.9754,-1.4833,0.67883,0.32467,-0.42518,-0.80028,-0.32681,-1.0936,-0.23165,0.55321,-0.29213 0.70939,0.53018,1.3115,1.7648,0.40613,2.012,-0.026941,-0.31504,1.6629,0.46231,0.13049,0.8294,-0.49418,0.61276,1.096 -1.2903,1.255,0.18906,-1.4245,1.9905,2.0567,0.17712,0.019855,-0.96797,-1.7398,0.89357,-0.18004,-0.39372,0.9534,-0.65874 -1.6576,0.072164,1.79,-0.45949,-0.30525,0.23393,1.2499,-0.042118,2.0449,-0.39753,-0.12705,0.0010913,1.102,-2.1185,0.2835 -2.9827,2.6101,-0.65866,0.2722,-0.028053,2.4524,1.6028,0.89784,-1.614,0.94478,0.23873,0.85811,-0.50474,-0.76996,-0.55394 2.4555,0.77273,2.4064,1.6072,1.7197,1.6108,-0.58015,-1.459,-0.09219,-0.2055,-1.2505,0.082042,-1.2587,-0.5997,0.8143 -1.4912,3.2927,1.1721,-0.13475,-0.70615,2.0551,0.86785,-0.62253,-1.365,-0.35387,0.027991,0.72557,-0.70391,-0.6217,0.37962 -0.61217,3.6154,-0.40436,0.4895,-0.64089,1.8062,-0.26369,0.48434,-2.4345,-0.28729,-1.0123,-0.10895,-0.91208,-1.0765,-0.14109 2.5531,-0.47621,-3.2123,-2.4981,-0.48889,0.32847,1.8685,1.673,-0.16899,-1.8291,1.9635,0.20969,-0.22634,-0.36533,1.8629 0.69442,-2.0572,3.2863,1.3748,1.8049,0.88732,-1.1713,1.0399,-1.2443,1.2767,0.7068,-0.28522,-0.52158,0.90505,-0.43108 -0.98529,2.285,-0.5458,2.128,0.43143,0.78034,0.57383,-0.76711,0.246,0.43596,-0.62005,1.1843,0.0094194,-0.4036,0.73381 -1.0757,3.2199,1.7296,-0.56863,-1.6752,0.75814,0.5514,-0.44782,-2.4783,-0.27501,0.20521,-0.19123,-1.2995,-0.86082,0.62485 -3.0841,1.0914,1.9235,0.31623,1.1598,-2.1185,1.5244,1.8139,0.35425,-0.30587,0.3496,-0.3528,-0.37474,-1.2626,0.95435 -1.6393,2.4491,1.7756,0.45412,-0.5941,0.77573,-0.45946,0.5835,-0.82635,1.5051,0.31878,0.74738,-1.5293,-0.31715,0.52437 0.73469,2.7555,0.5839,0.95417,-0.63566,-0.63132,-0.56892,-0.48401,0.71256,1.0204,-1.2952,1.2823,0.72457,-0.80086,-0.189 -2.0947,2.0671,-0.46823,0.48595,-1.1264,2.4754,0.74576,-0.11707,-0.14794,-0.57857,1.1084,0.13747,0.63776,-0.50005,0.062739 3.5778,0.88165,-0.88419,-2.5643,1.7579,-0.89625,1.3053,-1.3069,0.92618,1.7412,1.5815,0.28184,-1.7524,-0.063698,1.7395 2.6544,-0.69229,0.54463,-0.37543,-0.074882,1.5395,0.75317,0.76548,-1.1713,0.27853,0.02744,0.50058,-0.66227,2.1159,1.0582 1.6354,3.7744,0.1931,-1.4555,0.22357,0.091566,-1.5776,-1.6405,-0.1233,0.44519,0.28591,-0.44899,0.2923,-0.031253,-0.77791 0.82446,3.215,1.5994,0.33898,0.30043,0.30627,-2.0368,-0.98779,0.62025,-0.070981,0.50094,0.61697,-0.53265,0.83568,-0.55447 -3.2417,0.51224,-2.5093,-0.67207,0.27106,-0.055523,0.62643,-0.50258,0.41881,-0.10238,-0.22598,-0.74825,1.023,-0.55866,0.028205 -1.5935,4.0504,1.4413,0.094642,0.24135,1.0929,-0.21626,0.091449,-1.0599,-0.50601,0.52666,1.3433,-0.43391,0.53062,-0.23892 -2.3401,2.4324,1.6411,0.78376,0.31656,0.39287,0.93794,0.32199,-0.47355,2.2467,0.59141,0.46708,-1.5056,-0.60961,0.16408 -1.3161,3.3036,-0.82072,-0.0010607,-0.30398,1.2578,-0.82474,0.5259,-0.93648,0.038448,0.13595,0.38274,0.43974,1.1201,-1.1474 -4.1985,0.3531,1.1937,-1.5493,1.0755,1.3203,1.0703,-0.91678,-0.26949,-1.1428,1.1868,-0.3004,-0.17822,-0.020086,-0.59769 -0.35653,2.4856,-1.5366,0.33244,0.016375,0.082897,-1.8588,0.85222,1.6028,0.35482,0.17211,0.70834,0.49913,-0.15893,-1.0102 -4.4246,0.064519,-1.0236,-1.3626,1.8603,-0.84133,1.072,-0.0022021,0.44854,-0.31421,0.04472,-0.64435,-1.0504,0.52894,-1.0719 -3.6102,1.8221,0.98864,-0.065829,1.2358,0.49191,1.0299,1.191,0.018196,1.9073,0.72492,-0.71304,-0.84554,0.29634,-0.84793 -3.7515,1.781,0.36871,-0.69367,0.73554,-0.26662,0.79539,1.7675,0.27064,0.22209,0.77779,-1.0754,-0.16283,-0.92358,-0.25743 0.9045,3.2974,-0.99038,0.75234,-0.98038,0.42847,-0.9825,-0.54582,-0.11005,1.4853,-1.4158,-0.13606,-0.52115,0.82777,-0.64126 -1.8199,1.9436,1.0499,-1.0434,-1.0148,1.1876,1.7187,-1.1559,-0.15132,-0.42567,0.035263,0.45081,0.51167,-1.5937,0.84032 -2.4829,2.154,1.0229,0.37582,-0.75729,0.0065091,0.84482,0.54883,1.01,0.57491,0.77522,0.89331,0.54966,-0.85448,0.71492 0.26748,1.2344,2.3401,0.21789,-0.60101,0.39816,-0.27509,0.29239,2.1685,-0.94082,0.057667,1.4704,0.92593,-0.81269,0.81152 3.6252,0.10675,-1.728,-0.36823,0.42343,-0.027946,0.33109,-0.77355,1.4686,-0.38053,0.73941,-1.3057,-1.5257,-1.1378,-0.38837 1.9488,1.4461,0.36682,0.54502,0.7752,0.19312,-0.94387,-1.5136,1.6478,-0.35898,-0.73367,0.8438,1.6507,-0.037,-1.8801 -2.3831,-0.81293,0.43296,-2.028,0.058672,0.027489,-0.53001,-1.4556,0.42677,1.6634,-0.59143,-0.38191,0.37585,-1.4949,0.2827 -0.51786,-0.12918,2.8267,-0.8573,-1.1019,1.361,0.49513,0.11367,1.4627,-0.56555,0.10157,0.36409,1.2734,-1.6919,0.439 -0.53307,-3.2624,2.5179,-0.4,0.51116,0.78658,0.20894,2.1878,1.6155,0.12669,-1.1433,-1.1178,1.5911,0.057611,-1.2775 3.0494,1.6788,-1.2717,-0.96686,0.016392,-0.18425,-0.36432,-1.755,1.7975,0.6763,0.30808,-0.55717,-0.9597,0.47057,-0.92605 -0.20139,-1.6247,2.6462,1.4522,0.19585,0.78897,0.022602,1.4023,1.6323,-1.4157,0.1808,0.75835,1.224,-0.22082,-0.1916 1.1499,0.63109,2.7295,-0.14687,-0.41786,0.73266,-0.64718,0.86313,0.97709,-0.7916,-0.36706,1.6894,1.201,-2.0418,0.047861 0.66616,1.1045,0.3314,3.0416,-0.61775,1.0265,-0.058463,-0.95739,-0.045385,0.11164,0.053632,0.44278,-0.013114,0.36466,0.76692 0.13832,3.1276,1.5795,-0.36466,-1.2665,0.92861,-0.7271,-1.0361,-0.49389,-1.6015,0.36545,1.1274,0.30285,0.3576,0.72201 -4.1272,-1.2031,0.34748,-1.4894,1.8662,-2.137,-0.64261,-0.22822,0.44455,-0.94617,-0.46933,-0.2405,-0.81474,0.93665,0.30035 -1.8532,-0.14095,-0.51536,1.6367,0.77218,1.0563,1.1873,0.87497,1.1655,-0.29156,0.055637,-1.4557,-0.48833,-0.048093,0.8577 0.48051,2.0602,0.93744,0.62937,-0.32323,0.090685,0.18638,-0.53289,1.351,0.71389,-1.7375,1.4305,-1.9577,-1.0043,0.20679 0.42173,2.0779,0.21986,0.75072,-1.111,0.32173,-0.49477,-0.072108,0.7147,0.78237,-0.99585,1.1475,-2.0255,-1.0202,-0.21353 2.6788,1.8306,1.7075,-0.32739,1.2334,-0.72708,-1.2191,-2.2296,0.95857,0.035806,-0.31616,-0.15257,-1.1918,0.33798,-0.28787 1.9802,0.53896,1.1324,-0.81105,1.665,0.052806,0.80239,1.5811,0.53562,-0.18245,-0.18489,1.0753,-0.89997,-1.1806,-0.19133 0.96432,2.9822,-0.36138,1.7494,0.61567,1.1709,-0.3507,-1.2054,-0.89486,1.052,-1.7012,0.1015,-0.19301,-0.83552,-0.4778 0.43563,2.4276,1.3182,1.1248,1.1921,-1.8395,-1.3155,-0.47783,1.0839,0.39795,-1.5591,0.36886,0.32253,-0.90763,-0.083128 5.7038,-1.9799,-0.63828,-2.8073,3.3646,0.44755,2.4332,0.95226,0.29052,0.32522,1.0241,2.6378,-1.2383,1.3394,-0.88608 0.32488,1.9127,-0.1886,0.76386,2.6666,-2.0229,-1.4516,0.41521,1.0159,1.2277,0.8345,-0.28589,0.039982,-1.7198,-0.062411 2.1239,0.14495,-1.2013,-3.515,1.3978,0.41338,2.1656,1.6084,-0.5601,0.063885,1.0845,2.1821,1.613,-1.0334,0.96414 3.6883,-1.2256,0.91966,0.45123,2.1025,1.7573,-0.49632,-2.4416,0.37372,-1.4814,-0.41624,-0.66471,0.29091,0.29542,-0.55581 -1.4639,2.6012,0.2006,0.23517,-0.48032,-0.90641,-0.62112,0.82853,-0.43319,1.5629,-0.2279,1.4547,-0.42454,-1.4488,0.44547 2.2825,-0.353,-3.9723,0.015185,-0.17329,3.341,2.0374,0.28265,-0.5378,-0.38989,0.51013,0.68286,0.4958,1.3897,-0.38828 3.1771,3.0256,1.0529,-2.2487,-0.029042,0.26518,-0.42275,0.28639,-1.1806,-1.6002,-0.54974,-0.69123,-1.1958,-1.527,-0.74999 -0.50171,2.7734,0.34985,0.33933,1.7508,-1.6015,-1.7618,0.57534,0.85645,1.3385,-0.29228,0.27608,0.37575,-1.2464,-0.3295 2.6701,2.8435,1.2017,-0.44227,2.0611,-1.1889,-0.78827,-2.0743,-0.09298,1.0982,-0.43182,-0.41245,-1.9077,-0.40673,-0.15477 -0.27762,3.038,0.36932,0.80083,1.0405,-0.87055,-1.8358,1.0529,0.8711,1.5044,-0.94593,0.77663,0.42443,-0.92901,-0.31838 -0.2229,3.893,0.32084,0.04796,-0.51851,0.69062,-0.75822,0.2048,-0.66164,0.44016,-1.0753,0.66176,1.2894,-0.21902,0.014932 2.4519,-0.87208,-1.2548,-0.18328,1.8653,0.8591,1.0975,0.45303,0.41058,2.2098,0.14362,0.66883,-0.83442,-1.4234,0.44501 3.341,0.77492,-1.0003,-1.7361,1.5575,-0.79761,-0.12746,0.13037,1.1214,1.4725,0.39797,-0.14396,-1.6931,-1.8809,-1.2127 0.57545,2.6695,-1.0858,-0.97085,-0.2392,-0.59113,-1.0579,-0.057614,0.64494,1.6838,-0.71819,0.31333,-0.067297,-1.8621,-0.88497 -3.2733,-0.52809,-0.58732,-0.34846,-0.26731,0.30967,0.29553,-0.057331,2.0523,-0.45243,0.64304,-0.59377,0.25868,1.0714,-0.73536 3.3582,1.9794,-1.502,0.48208,1.2887,0.1988,-0.11873,-0.83546,0.4196,1.2969,-0.79347,-0.39821,-1.5569,-0.8043,-2.4465 2.2625,2.9141,1.8861,-1.0226,1.1639,-0.4821,-1.8353,-0.56001,0.33525,0.73904,0.65487,0.50457,-0.026254,-0.39532,-0.43574 1.0838,1.6369,2.2786,-1.6782,0.48113,-0.35952,-1.5203,-0.68566,0.73659,-0.69448,-0.35471,-0.13282,0.43486,-0.27152,-0.48614 3.171,-1.1346,-2.6294,-0.3241,0.63882,0.95592,1.8041,0.40776,1.2189,0.14923,1.6417,0.57482,-1.0813,-0.28977,1.013 0.25585,1.5178,0.46113,2.0853,1.3007,0.44634,0.27836,-0.99862,0.91421,-0.03494,-1.7974,1.6559,0.41806,-1.4232,-0.046619 -2.995,0.98184,-0.04731,0.075779,0.56069,-0.091016,0.57794,1.6899,0.99877,1.031,1.0449,-0.64868,-1.1568,-0.95906,-0.46097 2.358,0.77151,-3.1973,-1.0444,-1.5131,-0.44041,0.47598,0.30208,1.6252,-0.2412,1.3317,-0.070451,-0.27772,-0.0231,-0.39496 1.8673,2.703,0.65313,0.29434,1.2119,-0.98694,-1.4244,-1.0903,0.28165,1.7694,-0.97909,-0.58502,-0.61761,-1.3963,-0.50025 3.5662,1.7927,-0.89411,-0.26243,0.70223,1.1611,-0.26138,-1.6035,1.5359,-0.29594,-0.52004,-0.32232,-1.0164,-0.078789,-2.1904 2.363,-0.10438,0.32638,0.59042,2.2477,0.38026,-1.442,-1.4282,1.9727,-0.21999,0.26777,-0.31659,0.87495,-0.97955,0.61321 1.3726,2.0858,0.81177,-1.1092,2.002,-0.20817,-2.061,-0.53213,1.7818,-0.92306,0.73898,-0.09648,2.0598,-0.57796,-0.36605 4.1812,-0.18953,-1.2131,-0.66481,2.1071,1.4784,1.0641,-1.6496,0.40557,-1.811,0.69849,0.080057,-1.954,0.19612,-1.2046 -4.3124,-1.0038,-0.3233,-1.9506,1.5014,1.2419,-0.29839,-1.3153,-0.67875,-0.57458,-0.22986,0.16246,0.53249,0.73948,0.001198 -2.5145,-0.59332,-1.8053,0.90327,1.2851,-1.3898,1.2132,1.2601,-0.43222,0.39732,0.30249,-0.84896,-1.2802,-1.6427,0.472 0.46964,3.4314,-0.89079,-0.39428,1.2176,0.058721,-1.4774,-0.044007,0.37851,1.4404,0.63902,-0.49919,1.3644,-0.47261,-0.58353 -3.0265,1.0237,-0.10437,0.81563,-0.70065,-0.11458,0.92556,1.0928,1.1898,-0.88108,0.3845,1.1209,-0.41307,0.84358,-0.11217 1.7324,2.7199,-0.45101,-0.54283,0.13212,-0.12343,-0.92522,-1.0588,1.5359,0.76507,-1.1716,0.33854,0.50599,-1.4767,-1.4761 4.3643,-0.35012,-0.65096,-0.65974,2.842,2.0098,0.6634,-2.0675,-0.11478,-0.66373,0.1919,0.075572,-0.88542,-0.22294,-0.78269 1.5215,0.30107,-0.19823,0.90277,2.0317,1.0263,-1.3009,-2.5545,1.4294,0.34497,1.2483,-0.077499,0.22197,-0.0030951,0.65468 1.3915,0.62568,0.22315,1.8827,2.8682,0.37625,-1.6591,-0.8468,0.84307,-0.49045,-0.37142,-0.89809,0.84959,-0.91121,1.0003 -0.22579,3.5864,1.43,-0.10798,0.92555,-0.08008,-1.962,-0.37057,0.60125,-0.29188,0.25768,1.1289,0.56521,-0.024308,-0.55774 1.7681,0.56608,0.21799,1.1936,2.8708,0.28212,-0.57728,-2.6067,0.72886,-0.59904,-0.049683,0.20032,1.4038,-0.27512,-0.40169 -3.6416,-1.252,-0.14426,-0.64424,-0.43204,-0.22178,0.32993,-0.29572,1.76,-0.73707,0.8006,-0.44497,-0.28482,0.59111,-0.6937 4.2593,-0.0046774,-0.73776,-2.4154,1.4516,-0.52662,1.3132,-0.10637,0.33599,0.81726,0.91983,0.90288,-0.2954,-2.7885,-0.42261 -2.8675,0.42242,0.37458,-1.049,-0.087578,1.9231,0.97678,-1.5453,-0.048721,-1.1501,1.3924,-0.89834,0.94354,0.29777,-0.41291 -3.2704,0.13052,-1.7266,-0.61952,0.48443,1.1941,1.4776,-2.3826,-0.25561,-0.20827,0.065648,0.04924,-0.44475,0.42675,-1.8747 -1.8256,0.77152,1.1322,1.6159,0.29576,-0.47466,1.1747,0.61169,1.7938,-0.9269,0.64825,0.50528,-0.061696,-0.012328,0.25687 -2.9752,-1.4529,-2.3673,0.10691,0.58839,-1.0403,-0.18384,-1.0012,1.6291,-0.60863,-0.40938,0.076106,-0.95085,1.1021,-0.48385 -2.2433,-2.9383,-0.43389,0.3536,1.709,-0.026532,-0.30713,-0.57381,1.1275,0.39683,-0.55337,-0.81412,0.14974,0.9056,0.060163 -2.4059,1.4319,-0.0039508,-1.7298,-0.88512,0.9773,0.94625,-1.687,-0.50067,1.3249,0.48959,-0.50816,-0.0072214,-0.92314,-0.1777 0.46499,0.19838,2.9077,1.8109,1.1077,1.0378,0.92671,-0.54123,1.4809,-0.09418,-0.44539,0.1217,-0.19304,-1.0383,1.9106 -3.1876,1.1405,-1.6802,0.074351,-1.2634e-05,0.68265,2.4142,0.12989,-0.73605,-1.0333,0.7223,0.14152,0.63716,0.13615,-1.1793 -3.198,0.21251,0.54045,0.043957,0.19698,-0.86039,1.5956,-0.73054,1.506,1.0702,0.53214,0.40902,0.663,-0.16487,-0.43788 3.152,0.36795,0.68678,-1.8651,0.40759,0.75648,-1.4355,0.3322,2.2268,-1.1176,-0.68527,0.8341,1.1442,-0.073977,-1.6635 0.8818,0.72321,1.3578,0.4209,-0.62475,0.9124,-0.0058151,-0.23662,1.5049,-0.77746,-2.2253,2.0336,-0.57743,-1.2217,-1.1003 0.2434,2.8685,-0.36684,0.75032,3.0169,-0.86946,-1.9638,1.0902,0.16522,0.58162,0.74511,-0.2408,-0.15492,-0.60706,-1.1102 -3.7581,0.5799,-2.2374,-1.0102,-0.072921,-0.44092,1.6382,0.17714,0.41023,-0.87702,-0.12558,-0.68583,0.32486,0.26849,-1.0098 -1.8153,1.7163,2.1909,1.7832,1.1512,-0.44052,0.99734,-0.21906,0.51695,1.2083,0.60197,1.075,-0.77908,0.46373,0.3673 -2.8391,-1.1057,-2.5835,0.49444,0.33903,-0.80948,0.079689,-0.8265,1.2074,-0.13013,-0.21292,0.31554,-0.8588,1.2089,-1.0506 -0.57273,1.8655,-1.9915,2.1536,0.051762,1.9298,-0.73913,-0.69856,-0.64502,0.29786,-0.0018982,0.77029,-0.42032,0.12604,-0.38201 -2.967,-1.7941,-2.7433,-0.90347,-0.0035558,0.30607,-1.3026,0.11164,1.076,-0.97627,-1.2927,0.50654,-0.81832,1.1714,-0.089055 1.6092,-0.70739,1.6321,1.3206,0.34612,2.1143,-0.30085,1.4525,-0.78266,0.7812,-1.5067,0.27832,0.93824,-1.2331,-0.0923 0.71212,2.5184,-0.98127,1.6779,-0.15085,0.55689,-1.2392,-0.61618,0.76199,1.4009,-1.0595,0.37561,0.47922,-0.50554,-0.59523 0.40605,3.1927,0.57207,-0.062998,-0.47321,0.17444,-1.1306,0.059509,0.60281,0.64065,-1.3525,0.66049,0.53427,-1.077,-0.29479 -4.6052,-0.052298,-1.7443,-1.8581,1.8602,-0.13279,0.58011,-0.62113,-0.23403,-0.73861,-0.080137,0.12736,-0.45831,0.35889,-0.88386 -1.6316,1.5501,1.994,-0.28849,-1.8251,0.76071,1.1015,-1.1776,0.4291,0.047279,0.12575,0.70465,0.43366,0.26508,0.50038 2.8222,1.4923,1.8108,0.68189,0.2249,0.55242,-0.61971,-1.0019,1.1091,-0.3502,-1.0095,0.76454,-0.2384,1.2065,0.046174 0.51158,3.4989,-0.7988,-0.23416,-0.60216,0.36318,-1.5314,0.10518,0.16163,1.2867,-1.2674,0.38042,0.7614,-1.1113,-0.5623 2.0037,0.717,2.097,-0.29542,-0.43798,0.40494,-1.1207,0.52934,2.1598,-1.4126,-1.4461,0.99728,0.53244,-0.32002,-0.050974 -2.7016,1.4093,-0.41605,-0.58214,0.58673,0.15709,0.85108,0.87507,0.66372,-1.434,0.23426,-0.32099,-0.22134,0.98225,-0.99308 -2.1908,0.094721,0.91275,-1.8084,-1.3372,0.1514,1.4199,-2.7051,0.26004,0.19329,0.019745,-0.1017,0.36542,0.24566,-0.8089 -1.7726,-2.33,-0.21972,0.7113,0.5587,-0.19572,0.30482,-1.2024,2.0036,0.30648,-1.0437,-0.71271,0.91317,-0.45072,-0.50743 1.0995,-1.0855,2.4053,1.9601,0.3644,2.9122,1.1761,-0.97823,-0.54249,-0.96633,-0.53046,0.19474,0.17428,0.53794,-0.21608 -0.44121,-1.2498,2.9933,-0.31579,-0.22612,1.2173,1.6397,-1.8858,1.5233,0.74975,-0.55735,0.43527,-0.58286,-0.43102,-0.73336 2.2752,2.63,-1.9248,-1.3718,1.149,1.2674,-1.5313,0.16927,-0.52321,-0.83423,1.3326,-1.792,-0.2683,-1.1641,0.13815 2.0464,1.6366,-2.267,-2.5576,-0.76304,1.0289,0.459,-0.021592,0.71327,0.48353,0.83851,0.13927,0.16297,-1.0683,0.88316 0.11275,1.0851,3.0428,-0.87845,-1.5039,0.44436,1.3692,-0.53373,0.70498,-0.41884,-1.2768,1.0442,-0.58982,-0.27394,-0.6891 0.30358,-2.3179,1.9703,0.63748,-0.51032,2.8656,1.7686,-1.764,0.13773,0.45638,-1.0127,-1.2405,-0.42566,0.6123,-0.14759 -1.4026,3.0245,-0.071091,1.1511,-0.81223,1.014,0.26654,-0.04776,-0.060172,0.70481,0.081993,1.7383,-0.62904,0.38108,-0.10582 2.3814,0.85225,-1.408,-0.13978,1.8024,1.1326,1.0927,-2.3165,-0.38304,-1.7261,-0.97772,-0.9445,0.15909,-0.16859,-1.4556 0.43047,0.41753,1.2401,1.5289,0.77451,2.1545,-0.66348,-1.3007,0.28825,-2.1396,-0.34672,0.9972,1.6071,-0.12792,0.351 0.27082,0.24729,-0.48754,2.2007,1.1203,1.7311,-0.80257,-1.8564,0.51104,-1.7788,-0.27398,0.033052,0.8719,-0.1514,0.49067 -2.0654,2.4309,-1.2884,0.085889,-0.67759,2.3908,-0.13956,1.5269,-0.70036,0.21765,0.34453,0.30829,-0.01942,0.35485,-0.90905 -3.2554,-0.57247,2.9891,-1.6245,0.32613,-0.44027,0.56144,-0.65027,0.95333,0.46302,0.42701,-0.29388,0.082576,-0.63808,0.53277 4.5033,-0.45661,-0.1124,-2.4751,2.9904,-0.73879,0.83572,0.37347,0.85766,0.53898,1.0551,1.3452,0.01231,-2.1361,-1.0613 -3.2385,2.0553,2.4266,-1.5988,0.77951,-0.17629,1.6923,-0.87058,-0.21191,1.1134,0.23871,-0.050885,0.015553,0.012547,0.28412 -2.0039,2.2564,1.3076,1.0587,0.050364,-0.78427,0.003475,0.14278,0.49462,-0.24719,-0.013074,2.309,-0.85279,-0.14346,0.14971 -3.959,1.2648,1.7861,-1.4767,0.74317,-0.88905,1.4198,-0.097005,-0.22202,0.70655,0.24877,-0.27067,0.27971,-1.3176,0.70906 -0.3559,2.3623,1.6673,1.8013,2.5558,-2.0336,-1.2338,0.6577,1.0784,-0.78356,-0.26615,0.1959,-0.66352,0.37897,0.24274 -2.3396,2.3145,-1.0518,0.34448,0.30702,1.5935,0.69255,0.21246,-0.98045,-1.3753,0.095435,0.30972,0.1171,0.45031,-0.84324 -2.2249,1.5527,-2.7692,0.75788,-0.53317,0.9911,1.2009,2.054,0.15958,0.69395,-0.71665,-0.02554,-0.24203,-0.57036,0.42434 -0.95624,3.3904,2.2234,0.24465,1.7914,-1.2658,-1.086,1.2162,0.38916,-0.88557,0.65096,0.97436,-0.30539,1.0216,-0.17261 -2.9441,2.2547,2.902,-0.76023,0.52846,-0.1723,0.96411,-0.20035,-0.41934,0.48276,0.58633,0.41,-0.36012,-0.3192,0.11464 2.9496,1.3188,3.2831,-1.4056,1.4132,-0.77101,-1.4718,0.40462,1.5524,-0.58203,-0.93276,0.93942,0.12328,-0.68328,0.079345 -2.6185,3.5578,1.5827,-0.24301,0.62299,1.4892,1.4498,0.231,-1.5869,-0.35481,0.085825,0.40842,0.43528,0.48494,0.076381 -4.8095,0.7545,0.38357,-1.4265,1.3928,-0.85044,1.6025,-0.15215,-0.22384,0.054219,0.34252,-0.16033,0.37561,0.16952,-0.29547 0.4939,1.3568,4.435,0.012543,1.696,-0.92249,-0.53918,0.12135,0.84312,-0.54519,0.24409,0.88871,-0.49694,0.51304,0.32447 -0.28465,-3.6778,1.5517,-2.5829,1.3048,-0.056776,-1.1958,0.66695,-0.28745,1.2589,-3.1131,0.68017,-0.26532,1.3373,0.84944 1.1987,2.7684,0.1596,-0.35968,-0.57687,1.2194,-0.97394,0.12021,0.75389,-0.6965,-0.8949,0.85716,1.4161,-0.79978,-0.29258 1.2127,0.81761,3.0457,0.45026,1.5104,-1.4957,-1.6329,1.1889,1.5617,-1.5109,-0.53166,0.72388,0.92178,-1.0164,0.18676 -1.8852,2.1692,-0.3773,0.78697,-1.3381,0.13143,1.0966,-0.28777,-0.74393,2.1316,0.56612,0.91115,-0.036584,0.43167,-0.22996 -3.0567,-0.77607,3.2489,-2.0817,1.961,-1.2212,0.24756,-0.57378,-0.078309,0.073606,-0.02178,-0.69795,-0.59739,0.64427,0.55295 -2.5071,3.4681,2.4369,-0.87855,0.98307,0.69267,0.97387,0.2919,-1.0808,-1.2801,0.48541,-0.038954,0.43539,-0.1474,0.21641 2.246,0.013267,1.7168,1.1888,-0.017711,2.9174,0.24631,-1.4603,-0.65507,-2.2054,-1.0069,0.77378,0.25026,0.96497,0.35787 -4.2029,2.317,1.1783,-0.92592,1.0746,0.48523,1.9262,0.049064,-0.96334,-0.15454,0.49601,0.036287,0.54858,0.21377,-0.22675 -2.0344,1.6465,3.1091,0.24412,0.64936,0.010634,-0.38945,1.8246,-0.17217,0.45065,-0.62741,0.61638,-0.40375,-0.084329,0.79415 -2.7734,1.6858,-0.22023,-1.4303,-0.88221,0.68253,1.9445,-1.7129,-1.1097,0.54079,0.40447,-0.57403,0.58538,-0.92093,-0.15847 -2.2216,-0.96074,0.44818,1.6166,0.22738,-1.407,1.219,1.1968,0.98807,0.20748,-0.36403,-0.66664,-0.37316,-1.4012,0.72962 -4.2477,-0.47354,1.3705,-1.7423,1.0611,1.2957,0.51541,-1.006,-1.1976,-0.72683,-0.83765,-0.40516,0.036588,0.77757,-0.55193 0.68471,2.0563,-0.53987,-2.8206,0.58689,1.1153,-0.4098,-0.59389,-2.2445,-0.68653,1.7672,0.65577,-0.28251,1.5042,0.5613 -3.461,-1.0869,-3.0391,-1.2291,1.1439,-0.3685,-1.1752,-0.29293,-0.63203,-1.9885,-1.3433,0.79756,-0.55609,-0.50013,0.49798 5.1408,-1.0333,-0.97015,-0.66934,2.7966,-0.043493,1.4716,1.3338,0.059228,0.81007,0.27222,1.0402,-1.002,-0.58846,-1.0673 2.9285,-0.12869,3.748,-0.27711,1.6974,0.24537,-0.12559,0.95496,1.2995,-0.16573,-1.2343,1.0647,-0.37912,-0.14725,0.25071 0.87007,2.4883,1.9292,-1.8897,-0.46948,2.0487,1.2866,0.74627,-1.6269,-1.7977,0.49537,-1.3918,-1.8868,-0.16268,0.45935 -0.062484,3.8962,1.2297,-0.6245,0.36484,1.7015,1.0854,0.56044,-2.5986,-0.51256,-0.34385,-1.6822,-1.864,-0.78249,-0.14997 -1.8234,2.5613,2.795,-0.0031659,0.17496,-0.11642,0.59468,0.69919,0.49348,0.58544,-0.54261,0.53423,0.5462,0.43742,0.13808 -1.9569,1.8853,-0.33743,2.0042,0.39467,0.69518,0.96944,0.58285,0.6328,1.0374,0.19293,1.0112,-0.88539,-0.41592,0.24142 -1.8211,0.051789,-2.4987,1.0634,-0.54363,1.3814,1.2416,0.33694,1.4598,-0.63925,-0.34425,-1.136,-0.80116,0.15804,0.65867 -1.1763,2.601,-0.93661,1.9858,-0.71281,2.0087,-0.40781,0.65514,-1.0763,-0.77547,0.5314,-0.043686,-0.085716,0.0057122,-0.54556 -1.4509,1.1918,2.8665,-2.6132,-0.10968,1.3652,0.38007,-0.21997,-1.2505,-0.515,0.83565,-0.56044,0.092111,1.5368,-0.13078 -0.34888,-1.5637,4.4232,-1.0384,2.0797,-0.30949,1.117,-0.72037,0.34904,0.61026,0.041042,0.0023597,-0.41019,0.71448,-0.34251 -1.9954,-1.0898,2.5585,-2.8791,0.060955,1.7329,-0.83703,-0.64684,0.11137,-0.58655,0.21094,-0.50737,0.43548,2.4673,-0.090252 0.088328,1.8176,2.2824,2.3227,1.7628,0.23142,-0.44099,-0.55764,0.78893,0.22963,-0.097595,1.5765,-1.0132,-0.52757,0.7403 4.5589,-1.4599,0.028183,0.074595,3.1327,2.6987,0.54638,-1.1028,-0.98057,-0.59965,-1.2518,-0.23702,0.4577,1.5144,-1.047 -0.60087,3.0231,-0.14367,-0.75162,1.1976,-0.25394,-2.0835,2.4426,-0.57364,-1.4893,1.0854,0.060637,0.88498,-1.3249,0.7088 0.58592,-0.80847,4.0182,-1.3595,0.75007,0.36209,1.2994,1.1488,0.99254,0.99776,-0.83688,-0.4693,-0.92364,-0.15568,0.25905 -0.47637,1.8345,-2.4451,1.1021,1.0655,-0.3871,-1.2375,1.2074,1.8315,0.43844,-0.19694,-0.28865,-0.3665,-0.11929,-0.64511 -0.8612,-1.221,0.45779,0.32205,-1.0335,1.7953,0.02962,0.21208,2.2178,0.85643,-0.22843,-0.85069,1.6216,-0.03133,-0.18387 1.3931,1.7699,-2.7203,-1.154,-0.83527,0.97415,0.020872,-0.35714,1.3412,1.0269,0.38714,-0.33642,0.36825,-0.94418,0.53133 -0.068234,0.036176,-0.9554,-0.76169,-1.5045,2.5719,0.025399,0.59855,-0.6657,-1.574,-0.39388,-1.4899,0.098925,2.4104,0.12246 -0.69136,1.3213,3.132,-0.42349,-0.3142,-0.24364,0.70782,0.19973,0.90152,0.98264,0.47523,0.0085522,-0.8948,-0.46373,1.0447 4.4548,-1.9116,-1.6279,-0.88673,0.7431,1.6321,1.6654,0.15548,0.42812,1.4419,0.59655,0.12213,-2.2056,0.13426,1.8739 4.6491,-0.73303,-1.3656,-1.2463,1.3737,0.68075,0.74073,0.0020228,1.7131,0.022279,1.5068,-0.084553,-1.758,0.48352,-0.39698 2.6567,1.718,-2.8336,-3.4264,-0.60865,-0.98768,1.5244,0.63111,-0.022499,-0.54483,1.1047,-0.87899,0.61639,-0.52177,2.0429 4.1818,-1.0733,1.2123,0.36699,2.3739,1.7325,-0.39835,-0.35994,0.96908,-0.93043,-0.90518,0.80888,0.59204,0.69558,-1.7053 0.35491,-0.65002,4.1768,-0.48611,0.83973,-0.17049,1.4272,-0.58243,1.268,0.031975,-1.0172,0.27887,-0.80804,-0.18188,-0.21973 3.5719,1.1772,-0.12285,-0.599,1.465,-0.13193,-0.55591,-2.3173,0.34686,1.4456,1.3954,-1.4455,-1.5456,0.086565,1.0216 1.4548,2.0519,-0.42342,2.3577,-0.056191,0.93205,-0.21464,-1.6982,-0.33298,0.608,-1.3881,-0.017601,-0.23055,0.2296,-0.44628 0.098814,1.4971,-1.9878,0.28767,0.24394,-1.0323,-1.4311,0.76884,2.3541,0.0091015,0.40732,-0.3291,1.1133,-0.13521,-0.063222 -0.65878,2.7049,0.38517,1.2478,1.6096,-0.051734,-1.4734,2.4352,-0.10037,0.43575,0.6542,0.48066,-1.1763,0.42475,-0.46367 -3.0589,1.821,1.4008,-1.6457,0.57085,1.471,0.71545,0.39116,-1.9373,0.93797,1.3143,-1.103,-0.55352,-0.40061,-0.95731 -0.73554,-0.76025,3.427,0.2763,0.92723,0.81611,0.97696,-0.67667,2.096,1.3378,0.080478,-0.44519,-0.298,0.3525,0.67029 1.4133,2.8611,2.2403,-1.1209,-0.25787,0.35595,0.18386,0.13724,-0.54183,0.13416,0.62148,0.30389,-1.7735,1.307,0.91466 -2.8073,3.1637,-0.2088,0.10618,0.91609,0.31202,-0.90792,2.9524,-1.1042,-0.11284,-0.10804,0.27266,-0.91199,-0.61647,-0.84245 -2.7594,0.042789,-1.1376,-0.46426,-0.32553,2.1618,0.70028,0.19983,0.99838,-0.81359,1.3003,0.43697,0.71719,-0.078842,0.59785 -1.2417,3.4226,0.1225,0.085547,1.2504,-0.88098,-2.1256,2.883,-0.48287,-0.16406,0.2768,0.4382,-0.38022,-0.64775,-0.20708 -2.8014,0.74954,1.6336,-1.0713,0.74515,-0.62261,0.80848,-0.26722,1.4066,1.7364,0.24579,-0.58824,0.64761,-0.24889,0.15325 -2.9607,0.90727,-3.239,-0.81886,0.78476,1.2215,0.4467,-0.11664,-0.3999,0.23053,-0.00094585,0.81253,0.63177,0.35368,-1.1686 1.7346,2.6578,-0.71238,0.21108,-0.98663,-0.50172,-0.28275,-0.66477,0.25934,0.1129,-1.8863,0.2475,1.3005,-0.94073,-1.0572 0.90792,4.2055,1.3351,-1.4358,0.46061,-0.10256,-1.9197,0.22432,-1.4577,-0.050138,0.88424,0.58581,-0.42208,-0.26198,-0.086345 1.33,2.2976,-2.7224,-2.3843,0.022072,1.459,1.1045,1.0866,-1.1916,-0.098854,0.84136,-1.3728,-0.89598,-0.42882,1.2759 -0.55915,-1.225,2.7057,-0.0025961,1.8213,-0.042637,0.53266,-0.76959,1.6848,1.1181,-0.15011,-1.6802,-0.24103,-0.30827,0.81616 1.3012,2.9091,0.010433,0.8496,-0.08198,0.18481,-0.56831,-0.50509,0.22317,1.2312,-1.6443,0.74623,0.78375,-0.6919,-0.94095 -2.1101,2.145,1.3855,0.16722,0.38381,0.74578,0.81045,0.39039,0.43842,1.3864,1.3954,-0.0535,-0.64886,0.87366,-0.36428 -1.7369,2.2152,1.9272,-0.1462,-0.45204,-0.22442,-0.58951,1.8013,0.00044952,0.40244,0.27652,0.26481,0.50247,-1.697,1.2602 -2.43,3.3194,-0.20542,-0.18138,-0.69645,1.5724,0.88358,0.87696,-2.2216,0.88293,0.43093,1.3021,-0.42077,-0.68402,0.0083419 -0.58059,0.94177,3.6014,0.1692,0.64022,-1.0378,-0.40747,0.87754,1.8591,-0.53289,-0.14132,0.9181,-0.0059653,-1.2067,1.3436 -2.7387,0.4928,1.2584,-3.0215,0.71822,0.98519,1.3429,-1.5012,-0.80227,-0.39439,-0.62613,-1.2565,-0.14401,-1.6651,-0.078154 -1.4749,-0.58961,3.5659,-2.698,0.012785,-0.10333,1.559,-0.70357,0.44002,-0.85228,-1.2276,0.15732,0.12921,-0.43933,-1.1543 -0.83851,-2.3715,3.528,-0.29628,-0.25467,0.85367,0.85983,0.68754,1.7489,-0.0064899,-0.78721,0.38241,1.0757,-0.13877,-1.0768 -0.25385,3.7048,0.189,-0.25699,-1.0995,1.2569,1.027,0.64648,-2.6301,0.054053,-1.4929,-0.48488,-1.6572,0.19131,0.16462 2.4708,1.4823,-1.6701,-0.2277,-0.79516,0.040401,-0.34171,-1.9789,1.4762,0.37014,0.42912,-0.53515,-0.67767,-0.43683,-0.29013 -0.28561,-2.1717,4.1561,0.099136,1.1767,0.35118,0.94209,0.4205,1.5158,0.44695,-0.42136,-0.24581,0.53648,-0.72146,0.48122 -2.282,-2.6616,2.2759,-0.021178,0.82157,-1.1864,0.19197,0.98777,2.0037,-0.71013,-0.017381,-1.6308,0.0082829,0.26416,0.23405 1.6181,-1.7125,3.8289,0.19904,0.70161,2.0294,1.9518,-0.61863,1.3544,-0.46043,-1.3,0.41641,-0.63359,0.60282,-0.83819 -0.14823,-0.54908,3.2905,-0.93573,-0.31069,0.10576,2.0284,-1.822,1.7402,-0.051863,-0.74008,0.43257,-0.057586,-0.025322,-1.384 3.627,0.085296,-2.5014,-0.27041,0.93477,0.64591,0.86843,-1.0818,0.80739,-0.1719,0.51589,-0.32754,-2.0369,-0.42965,-0.73887 -0.87431,-2.274,2.1667,-0.90741,1.2484,-0.16513,1.4079,-1.5033,1.5852,0.67719,-1.7754,-0.55836,-0.16863,-1.5868,-0.27992 3.8919,0.41542,1.2832,0.33094,2.1081,1.8676,0.02941,-2.0476,-0.25853,-1.3853,-1.0613,-0.59401,-1.1823,0.10585,-0.30024 -0.33988,-3.1586,3.471,0.30301,1.3164,1.1436,1.7179,-0.23839,1.5327,-0.64169,-1.0738,-0.28034,0.64333,-0.58296,-0.82356 1.2606,2.317,0.81028,-1.8192,1.277,-1.2802,-1.0537,-1.1051,0.79653,-0.33559,0.32742,0.17593,1.5755,-0.95062,-0.69399 0.70854,-1.6834,3.3833,-0.0009865,0.73283,1.4509,2.6712,-1.4722,0.82564,-0.76689,-1.1944,0.71613,-1.0374,-0.29125,-1.4787 -1.3593,-4.6917,1.2389,0.3819,2.0929,0.9792,0.38748,0.17248,0.53819,-0.46826,-1.5694,-1.3489,1.1752,0.47978,0.06525 -3.5899,1.735,0.53663,-0.64811,0.0080995,0.24513,1.4222,0.45895,-0.067493,-0.59473,1.2168,-0.73834,0.70616,-1.4605,0.43662 -2.5661,-0.08969,1.2908,-3.2514,0.26464,-0.43583,0.77436,-2.269,0.60584,0.70545,-1.1847,-0.089889,-0.1931,-0.96384,-0.19873 -3.8089,2.8727,0.78167,-0.032896,1.511,0.92952,1.7176,1.0225,-1.3007,-0.86845,0.20046,-0.25779,0.007616,-0.50347,0.15927 -2.8718,-0.98043,1.8132,-1.2668,0.26523,-0.38824,-0.10316,-0.36235,1.8021,0.4206,0.76339,-0.47131,0.14295,-0.60777,-0.057145 5.2045,-2.8798,-0.6572,-2.0976,2.5612,1.1305,2.3761,1.0478,0.43566,0.56459,1.0065,2.7562,-0.87147,1.8791,-0.8341 0.049111,-4.1374,0.83512,-1.4638,0.55891,1.6148,-0.47892,-0.52408,0.50762,1.1759,-3.1938,0.2734,-0.34611,1.8684,-0.72186 -2.9398,-1.3126,1.4566,-2.8327,0.59484,1.6507,0.17087,-1.7798,-0.80627,-1.3982,-0.68582,-0.83092,0.3465,0.093854,0.37906 -0.49866,-0.16375,3.9361,-2.7141,-0.76715,1.1992,0.44719,-0.40833,0.019093,0.18378,0.43659,-0.50226,-0.22023,1.8362,0.1295 4.1359,-1.6311,-1.3814,-1.1971,0.51291,0.20003,1.656,-0.80613,1.3794,0.4337,1.5633,0.73963,-2.7094,-0.52342,0.83028 -1.0312,-2.3928,1.8262,-3.9033,0.019907,1.0599,-0.43894,-1.5111,0.031559,-0.26696,-1.6878,0.1767,-1.1342,2.4163,-0.15005 -2.121,-1.4688,2.4465,-2.0518,0.676,-0.32816,0.0044206,-2.4385,0.70257,1.2246,-0.61657,0.11025,-0.24794,0.47621,-0.25005 2.5221,-0.95194,2.0653,0.84702,0.44574,2.3716,2.278,-0.022364,-0.65085,-1.8677,-1.3654,0.47108,-1.5293,-1.1157,0.26281 -2.9208,-1.2301,1.2491,-2.5214,1.3534,-0.78706,-0.52886,-2.4708,0.54251,0.69904,-1.3516,0.73555,0.11607,0.46315,0.32743 -3.4385,2.5374,0.27685,-0.16842,0.37084,0.4582,1.4763,1.6597,-0.23075,-1.5156,0.95826,-0.84658,0.46424,-1.1396,0.67275 1.2449,-0.38376,-3.1929,0.95971,-1.0656,2.697,1.0525,0.48156,-0.010633,0.11725,-0.94663,0.12809,1.2064,-0.84257,-0.32853 -1.7518,-1.5259,0.17238,-0.95535,0.25496,-0.66684,-0.076607,-2.5727,1.1643,1.0359,-0.93335,0.9011,0.37093,0.20552,-0.84012 -3.3853,-0.53723,-0.73415,-1.7836,0.99014,1.9422,0.019149,-2.745,-0.82676,-1.0765,-0.17988,0.271,-0.46586,0.51359,-0.91657 -1.2776,-1.0073,2.6358,-1.9813,-0.86815,0.099354,1.7004,-1.2943,1.1565,-0.20227,-0.85745,0.21113,0.52807,-0.87779,-1.2691 -1.9464,2.2405,-0.87635,1.9783,1.2334,0.77262,-0.046617,2.0424,-0.54804,0.3099,-0.44378,0.25752,-1.0043,-0.56322,0.33285 0.18435,1.5867,1.2149,-0.095262,0.16271,1.8733,-0.36474,0.35347,1.2795,-1.0373,1.1741,-0.18915,0.59708,-0.51223,1.2801 -1.1033,3.6921,1.458,-0.46156,0.42302,0.33695,-0.98268,1.0121,-0.05119,-0.36396,-0.040384,1.0528,0.71297,-0.99079,0.94821 -2.9692,-2.0606,0.67683,-3.0009,1.0159,0.77038,-2.0877,-1.4088,-0.78661,-0.43887,-1.3007,0.59739,0.55125,1.1756,1.2253 1.8687,1.2494,0.24794,1.1038,-0.25315,2.3175,-1.3985,-0.98243,0.57,0.039066,-0.38125,-0.15557,-0.23515,1.548,0.56722 0.99184,3.1659,2.149,-1.5798,-0.14956,0.69554,-1.4804,1.0659,-0.34138,-0.12248,-0.71594,0.47807,0.29058,-1.4878,0.54596 -3.0191,1.8947,0.1939,-0.034956,-0.27726,1.0217,1.5112,-0.37039,-0.63084,2.3644,0.84725,-0.0018153,-0.62003,0.39803,-0.82585 0.94013,0.49816,1.0169,1.5642,0.11808,1.7078,0.38551,-0.84417,-0.29918,-0.0013684,-1.638,0.82553,-0.93898,-2.4845,0.31071 -1.8467,-0.30241,-0.92059,1.0507,-0.35384,0.17263,0.73627,0.018613,2.2981,-0.53524,0.6303,-1.1142,-0.15166,-0.35151,0.49024 -1.6656,-2.1315,-1.9968,1.3078,-0.41402,0.81792,0.15645,-0.20651,0.72091,-1.0172,-0.25526,-1.2577,0.39687,-0.60701,0.10182 2.8,2.1356,-1.0536,0.81259,0.76743,0.50093,-0.21544,-2.1226,0.22673,0.48058,-1.2196,-0.97832,-1.1274,-0.59101,-0.97002 0.48314,2.8116,-0.72773,1.1909,2.9885,-0.44436,-1.7906,-0.36498,-0.72988,1.503,0.54756,-0.53509,-0.65502,-0.30185,-0.74649 -0.80901,-1.2344,0.25071,-1.033,-1.4138,1.6642,0.62509,-0.51243,1.8096,-0.72192,-0.70165,-0.55863,1.3342,-0.53815,-1.0535 -0.36458,-2.58,0.25455,-0.65513,-0.73042,2.2491,1.3493,0.22209,2.0048,0.54789,-1.6052,-0.89923,-0.11452,1.0606,-1.8017 2.2376,0.71567,1.9724,0.84542,0.28732,2.4355,0.41859,-1.9187,-0.74002,-2.08,-0.67172,0.23315,0.14935,0.49519,0.67496 0.089103,3.6923,0.60578,1.5132,1.6177,-0.82492,-1.176,-0.20856,-1.0715,1.5212,-0.16414,0.51463,-0.72283,0.83036,-0.69059 -1.8062,-0.030663,-0.40475,-0.7573,-1.6149,1.1546,-0.054724,-0.90155,1.1981,-0.61117,0.51238,-0.62744,1.291,-0.63814,0.41549 -0.0037579,2.8125,-1.5598,0.36565,0.10899,0.42478,-1.2722,-0.12106,0.59539,1.9395,-0.15561,0.13605,0.61889,-0.31193,-0.58291 1.5231,-1.0378,2.1458,-0.056149,-0.47651,1.2977,-0.0076557,2.0375,1.8682,-0.79759,-0.93214,0.50154,1.3457,-0.7858,0.12707 -2.485,-0.56885,1.4915,-0.08965,-0.75023,-1.1042,0.6643,0.22657,1.8269,-0.57024,0.41524,-0.88081,0.53244,-1.0764,0.68824 3.1947,-1.233,0.52781,0.31066,2.4864,1.4592,-1.2091,0.085715,0.47593,-1.1448,-1.216,0.2115,1.9259,-0.1946,-0.55132 -3.2898,3.1552,1.6465,-0.43559,0.73012,0.30447,1.118,0.93254,-0.92139,-0.5163,0.52737,0.37502,0.35453,-0.6882,0.67412 -2.3457,-1.4417,-2.3138,-1.3311,0.57162,-1.8187,-2.2527,0.85379,-0.71124,-1.1586,-1.3325,1.1761,-0.75067,-0.92423,2.3577 -0.92526,-2.2897,-0.95891,0.22182,-0.24988,0.81377,-0.52437,-0.19238,1.5616,0.25551,-1.5662,-0.56343,1.3123,-0.93847,-0.2033 -0.87504,0.43027,-3.0948,0.76809,0.21231,-1.2404,-0.407,0.088602,0.65785,0.48211,-0.67105,1.0113,0.3199,-1.1902,1.6141 1.05,-1.3977,1.7424,0.19117,-0.13769,2.8111,1.7577,0.64024,1.6557,0.56724,-1.5336,-1.2328,-0.33842,0.42053,-0.52874 -1.6316,1.5873,2.0421,-0.831,-0.68221,-0.047508,1.2617,-0.22529,0.81024,-0.075413,-0.37824,1.0988,0.76721,-1.8988,0.94219 -3.119,0.86685,-2.2816,-0.14254,0.066733,0.65613,0.94208,1.6374,0.52423,1.4047,-0.10858,-0.3211,-0.54392,-0.66808,-0.83614 -0.16695,2.2769,3.9894,-1.9321,1.1939,-0.86624,-0.21485,2.0848,-1.2408,-0.21674,0.92402,-0.65655,-0.99056,-1.3303,0.77215 -1.637,-0.093888,3.9284,-0.64966,1.1351,-0.35574,-0.11548,1.1484,0.90383,0.14413,0.64846,-0.82846,-0.82597,-0.25185,1.137 -4.3879,1.5277,-0.97952,-0.84229,0.98932,0.69405,2.387,2.0381,-0.48663,-0.50236,-1.0784,-1.2944,-0.62654,-0.021028,-0.43171 3.3281,-0.29322,0.093154,0.79498,-0.83474,0.89366,-1.3114,-0.4586,1.0228,-1.1783,-1.1857,0.53152,-1.7427,-1.0428,-2.0737 2.7667,1.5759,3.5459,-2.3769,1.9215,-1.1652,0.41855,2.4229,-0.97443,0.53956,0.17935,0.88354,-0.83632,-0.90799,0.34392 0.59791,3.0607,1.8994,1.2616,1.5844,-0.36171,-1.5836,-0.23628,-0.20594,1.1928,-0.40179,0.14968,-1.119,-0.16448,0.25198 2.4412,1.7091,4.2225,-1.0595,1.4389,-0.2919,0.62008,0.37274,-0.41168,1.0339,-0.62174,0.044742,-2.2234,0.11749,0.44676 -1.419,3.8802,1.0175,-0.22572,-0.69492,1.0426,0.016032,0.34279,-0.99973,-0.13347,0.54104,0.97989,0.30519,0.15484,0.45241 -2.1777,2.8384,-1.388,0.1589,-0.042687,1.2414,-0.37194,2.4095,-0.24444,0.56984,-0.46616,1.4068,0.21631,-0.56918,-0.19918 4.5739,-1.1131,1.962,-1.1227,4.3332,-0.95591,0.058338,-0.99468,-1.7737,-0.54816,0.65664,1.0384,0.38572,0.70842,-0.32759 -2.9859,2.6742,0.61636,-0.3986,-0.48208,0.85479,1.3858,-0.12909,-1.0586,1.3814,0.9322,1.1491,-0.51243,-0.23073,-0.2336 -2.2018,-0.023071,-0.20605,0.72732,-0.16252,1.1687,0.80222,-0.63703,1.618,0.79258,1.183,-0.17217,-0.53135,-0.3694,0.45202 -0.70082,1.4613,4.0833,-1.2505,0.84864,-0.48191,1.0239,-0.17607,0.055241,1.3567,0.1838,-0.18798,-0.92219,-0.73681,0.41628 3.3777,0.99074,2.4749,-0.75653,1.764,0.63508,-1.31,0.35976,0.6722,1.3827,-0.67541,1.3249,0.17093,1.6097,0.15399 -2.934,1.0926,2.5005,-2.3087,0.28975,-0.46399,1.0501,-0.40118,-0.40271,0.57129,0.56842,-0.89141,-0.081423,-1.7092,0.60064 -2.8558,1.3524,-0.089233,-0.18654,-1.0567,-0.70224,-0.10328,1.4566,-0.99317,0.40841,0.52732,-1.1669,0.71703,-1.0196,0.42009 5.1438,-3.9466,0.61222,-1.0797,3.9346,1.8871,2.4369,0.65852,-1.5692,-0.027862,0.21046,1.3133,0.52001,1.5567,0.16857 0.36547,1.4428,3.5474,-0.67277,0.18711,-0.30857,0.88618,0.84294,0.50169,1.4085,-0.49103,-0.54539,-1.6738,-1.353,1.1262 2.5023,-1.6691,-3.0595,0.22066,0.37576,3.2396,2.5816,0.78099,-0.40588,-0.66991,0.19833,1.694,-0.33394,1.0783,0.063958 -1.745,-0.82054,1.9784,0.64044,1.3946,-1.2653,1.1183,-0.022836,1.6399,0.056562,-0.83912,0.25584,0.073602,-1.3001,0.081363 -1.9414,3.3632,2.4905,-1.1659,0.60779,0.4092,-0.026587,1.4847,-1.3484,-0.57136,0.79187,0.13647,-0.34692,-1.6016,1.1979 1.7512,2.6966,0.24091,0.30441,1.3889,-0.97065,-1.0305,-0.42779,0.48439,0.94821,-1.0621,0.30847,1.3161,-1.9471,-0.99552 -0.17308,2.3367,3.4178,-0.46364,0.8478,-1.0346,0.2801,1.2282,0.30276,1.0371,-0.13856,-0.15151,-0.57983,-1.143,1.154 -2.9137,1.7548,3.0001,-2.0882,0.58962,-0.29607,1.0405,0.074524,-0.22244,-0.27088,0.52341,-0.80953,0.1166,-1.3343,0.44866 2.2707,1.0372,-2.4498,-1.4947,0.18561,-0.55758,1.551,1.3942,0.86005,1.8731,-0.42509,1.6804,-1.5836,-1.3835,-0.03122 -0.19897,2.134,3.9004,-2.6408,0.29035,-0.10361,0.69978,1.4806,-1.0739,-0.18883,0.20684,-0.4476,-1.0508,-1.3374,0.70326 1.087,3.438,0.046035,0.51967,-0.077298,-0.21475,-0.68563,-0.66734,0.28947,1.8351,-1.7818,0.35431,-0.57439,-0.16069,-0.66048 2.0468,2.1989,-1.2527,-2.9397,0.22121,-0.042141,0.011636,-0.91189,1.1023,-0.61946,0.53284,-0.21314,0.42684,-1.5761,-0.17514 -0.98948,2.4724,2.6454,0.41944,0.24903,-0.50494,-0.82315,-0.56576,0.72388,-0.45547,-0.0066953,2.0207,-0.68945,1.1113,0.32472 2.2747,2.6876,1.4612,-1.1935,3.0009,-1.7709,-1.015,-0.79424,0.76382,0.68091,-0.27349,0.022007,0.86733,-0.46566,-0.87267 2.4338,1.4142,2.8445,0.85693,1.5025,-0.054108,0.99025,-1.1182,0.48631,-0.6513,-1.9047,1.3617,-1.7205,-0.47057,-1.0025 0.85258,1.1832,2.67,1.324,-0.59203,-0.1265,-0.2057,-1.5408,1.0712,-0.36968,-1.2342,1.8359,-0.81313,0.48404,-0.074974 2.5118,2.0607,0.71019,-0.34697,-0.57873,-0.48001,-1.3272,-1.2125,1.2582,0.12117,-0.73413,1.1197,-0.14219,-1.1266,-1.6696 -0.19212,1.8879,0.75981,1.9056,0.12813,0.084078,-0.58283,-0.10952,1.7882,0.22754,-0.50844,1.0295,-0.26204,-0.40297,1.1369 -1.9185,2.1483,-0.05256,-0.53572,-1.2577,1.4935,2.0539,-0.67767,-0.17588,-0.25473,-0.46102,0.16187,0.88448,-0.31253,0.45908 -0.48822,1.0131,-0.087227,2.1505,-0.19525,0.50751,0.13,-0.21234,2.2234,0.12263,-0.27117,1.0643,0.1068,-0.50672,1.127 1.1457,0.66159,1.5065,2.1507,-0.10259,0.82346,-0.083882,-1.3326,1.6045,0.022416,-0.53307,1.1627,-0.49451,0.79778,0.72673 1.2275,3.3972,1.2584,0.17069,-0.096472,-0.23227,-0.44019,-0.88677,-0.19036,1.1451,-1.3011,-0.21277,-2.0312,0.20995,-0.041223 2.8924,-1.373,0.33641,0.8701,1.4447,2.5061,-0.70914,-2.4215,-1.0462,-1.9691,-0.66885,-0.28214,0.67363,1.2554,-0.35585 -2.6395,0.5699,0.44013,0.20786,-0.75517,-0.55092,1.0026,-1.0174,0.85213,1.6246,0.95958,0.27698,0.57377,0.71152,-1.1528 0.43779,2.5273,-0.020331,0.93892,-1.313,0.15177,-1.3766,-1.1298,0.89151,0.04261,-0.051993,1.4504,0.15953,0.12707,-0.71223 -3.1947,-1.7384,-0.72371,-0.040273,1.7262,-1.6309,-0.8223,-0.79373,1.1922,0.17526,-0.32678,0.41138,-0.68384,1.0252,-0.19293 -2.1286,-1.0602,-2.9168,-0.28454,1.8163,-0.24302,-0.62362,-1.0007,-0.07395,-2.2186,-1.7713,2.0071,-1.2734,0.15884,0.80298 -2.4384,1.9709,-0.34596,1.5087,0.057184,-0.13559,0.6691,1.3748,0.7727,0.8601,0.039648,1.1342,-0.46504,-0.41027,0.65578 -1.7723,3.8562,1.4021,-0.23724,-0.5009,0.56273,0.32805,-0.11783,-1.6117,-0.12386,-0.039286,1.1228,-0.75243,0.0015817,-0.15953 2.8735,1.9683,1.4665,0.87416,2.0658,0.068956,-1.48,-1.6905,-0.44096,0.97665,0.091001,-0.80412,-1.5509,0.27691,0.46955 -3.1303,0.93264,-2.5043,-0.29933,0.17432,1.5188,1.7816,0.91364,0.47162,-0.17118,-0.63361,-1.2522,0.38502,-0.65117,-0.32592 -1.7982,2.2738,0.66642,-0.62603,-0.30807,1.7485,1.708,-0.55473,-0.28207,-0.60353,0.18698,-0.7838,0.88282,-1.3342,0.80594 -1.8519,3.1682,-0.2968,-0.39891,-1.0487,1.9167,1.388,0.93042,-1.4714,0.52689,-0.64371,-0.38915,-0.21562,-1.2754,0.97224 -3.0423,-1.3638,0.54395,1.0963,0.75102,-1.1583,0.99225,-0.42262,1.9036,-0.15199,0.54482,-0.39058,-0.64489,0.0094555,0.095078 -1.4325,1.6904,-0.026265,2.1215,0.13889,0.5827,0.073178,0.94078,1.4191,0.46274,0.73992,0.66594,-1.1109,0.32281,0.23358 1.3329,0.65143,-0.14236,1.0821,0.89953,1.7515,-1.146,-2.8751,-0.21183,-1.4548,-0.28062,-0.0095154,1.0582,0.050854,-0.47253 -3.0387,1.3081,-2.5689,-0.36653,-0.27672,1.8032,0.88775,0.50547,-0.4899,0.80422,0.72341,0.15626,0.31346,-0.25253,-0.98624 -0.2911,2.8698,1.4691,0.1156,1.4664,-1.0184,-1.2002,1.7343,0.46936,-1.602,0.4013,0.17874,0.79477,-0.16413,0.44712 -1.6418,3.2078,-0.78906,0.71624,0.35953,2.0049,0.13,1.3703,-0.13777,-1.1792,-0.43945,1.0304,1.1483,0.8334,-0.26593 -0.7494,-0.0894,1.4508,1.211,0.01722,2.2387,1.6528,-2.3205,-0.006519,-1.0829,-0.19369,0.73082,0.62342,-0.57474,0.69711 0.55341,3.7761,0.27326,-0.27324,-0.28691,0.60388,-1.6826,0.66174,-0.2382,1.2838,-1.5074,-0.088046,0.21265,-0.73176,-0.13809 -2.7728,1.9044,-0.21004,0.52,0.16929,1.6314,1.4698,0.44813,0.16884,-0.85601,0.88204,-0.83889,0.61793,-1.5188,0.84636 -1.0278,1.2241,-0.41901,1.9852,-0.75702,2.0926,0.25447,0.024502,0.94293,-0.2846,0.86412,0.90675,-0.62739,1.0932,0.43754 -0.9117,0.62717,1.0913,2.5413,0.29001,0.30636,0.49313,-0.19925,1.438,0.26925,0.63218,0.68545,-0.013944,0.91458,0.56781 0.86599,-0.2851,1.7334,0.60361,2.7348,0.44862,1.2135,0.65216,-0.73314,-1.4459,-0.43026,0.45878,0.46685,-1.6196,1.6195 -1.803,-0.34369,-0.33564,1.8514,0.41746,0.66822,1.2435,-1.7747,1.2333,0.41456,0.47825,-0.68424,0.98163,0.43541,-0.11861 -3.5016,1.0342,-1.701,-1.5333,0.36947,0.75376,0.19066,-0.6491,-0.55102,0.74591,-0.061066,-0.5727,1.0848,-0.58849,-0.4398 -3.5618,-0.8047,-2.6335,-0.97926,0.11791,1.0943,-0.35152,0.1006,0.27293,-1.3364,-0.76894,-0.82542,0.54444,0.35488,-0.86821 -1.9629,0.31051,-3.8813,-0.48792,-0.22063,0.55267,0.12824,-0.018917,0.77874,-0.61937,-1.1459,0.67975,0.76157,0.6245,-0.37154 -1.9906,1.0736,-1.4728,-0.29465,-1.0899,2.3348,1.0617,-0.91812,0.32596,0.27711,0.78929,0.24219,0.66642,-0.50338,0.35368 0.43862,2.2639,-1.0209,-1.1483,0.99107,-0.86725,-1.7613,-0.053956,1.8547,1.1816,1.1643,-0.019831,1.2599,-1.2332,0.16345 -2.6457,-0.52463,-2.8821,-0.2349,0.052791,0.74306,-0.60879,-0.35786,0.68781,-1.4375,-0.66464,0.73747,0.24616,1.3317,-0.041632 -1.6277,-1.0732,0.51049,-1.1182,-0.71993,0.58116,-0.66532,1.1052,1.6185,-0.5166,-0.28492,-1.7318,1.8923,-0.12616,0.50599 -2.5472,-0.84654,-1.2137,-1.648,-0.094505,0.85085,-0.96381,-1.6002,-0.049854,-0.84877,-1.0732,-0.059054,1.3193,-0.34111,0.93015 -1.6388,-0.51223,0.48394,-0.7223,-0.15175,2.7581,-1.2936,1.367,-0.15778,-2.5078,0.73253,-0.020049,0.1999,1.2262,-0.82876 -0.98712,-0.41276,0.11131,-2.3588,-0.21607,2.3819,0.33743,-0.18478,0.30422,0.010356,-1.0405,-0.77424,1.8943,1.7408,0.11481 -0.71982,-0.33423,0.82955,-0.41117,-0.23396,1.5638,0.5634,-0.33425,2.5933,0.53443,-0.53005,-0.69874,1.9812,1.0889,-0.35233 2.4051,1.8053,1.6215,0.96673,3.7206,-0.37959,-0.39591,-2.3224,-0.69391,0.08101,-0.55947,-0.040209,-0.25245,-0.51382,-0.2867 -1.3051,0.33425,-0.78734,-0.4681,-0.57462,3.0894,0.29875,-1.6541,0.2949,-0.043547,0.18755,-1.2814,-0.28354,-0.1134,-0.48015 -1.9641,-1.4072,-0.24768,0.23084,-0.54031,-0.85507,-0.52127,1.0066,1.6099,-0.36113,-0.32727,-1.8298,0.58228,0.17369,0.11234 0.027577,-1.3014,0.95323,-0.76724,-0.42682,1.0231,0.76483,1.863,1.6785,0.040751,-0.54779,-0.50842,2.5066,0.15887,-0.47366 -1.0575,3.6279,0.51866,0.9073,1.1952,0.61863,-1.1125,1.3433,-0.33309,1.7263,-0.73218,1.1522,-0.18515,-0.1835,-0.14387 -3.052,0.7015,-2.0916,-0.060229,0.087236,1.5294,1.5081,-0.92102,0.53641,-0.2803,0.37445,0.095736,0.49335,-0.8131,-1.0462 1.5762,1.3689,-1.2594,-1.3121,-1.4915,2.6572,1.2662,1.2004,0.096284,-0.56724,0.14066,0.81113,0.031415,1.913,-0.083771 -0.40571,-0.19921,1.4746,1.1705,-0.54688,2.4146,0.69526,-1.3228,0.29772,-2.0214,-0.24096,1.1838,1.214,-0.32726,0.58947 3.1483,-0.12168,-0.094652,-0.19242,-0.30577,2.4879,0.6629,1.1039,0.65884,-0.50889,-0.96058,2.2406,-0.54983,2.0108,-1.5112 -2.169,2.3272,-1.2284,0.58821,-0.61621,1.5547,0.97969,0.71131,0.51817,0.87987,-0.076288,1.0662,0.27219,-0.64957,0.34657 -2.5834,-1.2362,-2.3402,-0.91018,0.63897,1.1627,-0.65458,-0.39372,1.0221,-2.7114,-1.4424,0.13905,-0.24437,0.22239,0.90037 1.8667,0.91424,-0.47233,-0.80184,-0.57656,-0.14298,-1.0388,2.1511,0.8758,-0.79154,-0.87806,0.46657,1.159,-0.36867,0.031382 -3.3067,-1.7395,-2.621,-1.2448,1.2929,0.44907,-1.9713,-0.58041,-0.53428,-1.7261,-1.1385,2.133,-0.60512,0.15982,0.41438 -2.2632,-1.5759,-3.2354,-0.70992,0.73913,0.5392,-1.6888,0.40542,-0.042395,-1.9413,-1.858,1.8087,-0.87324,-0.28452,1.0728 -1.7972,1.7702,-3.3159,-0.78993,1.9456,-0.33499,-1.1215,0.24402,-0.40881,0.0041269,-0.22101,1.8762,0.47831,0.68297,0.21804 2.6311,2.0643,0.62963,0.032804,0.35208,0.10259,-2.0075,-1.9433,1.2341,0.33909,0.65474,-0.16091,-0.50494,1.998,-0.30633 -2.8479,-3.348,-1.3377,-0.19451,1.5052,-1.5862,-1.8597,0.59885,0.70094,-0.70035,-1.5608,-0.33263,-1.8263,0.9743,1.2244 -0.98239,-4.7176,0.21513,0.84297,2.433,0.81743,-1.8325,-0.40189,0.18961,0.17509,-1.9262,0.2307,0.51331,0.65224,1.5811 -0.21058,-1.0505,3.5981,1.2268,0.70587,1.4609,0.56393,-0.48015,1.2788,0.59207,-0.75503,0.1195,-0.83663,-1.7843,1.3391 -3.2521,-3.271,-0.90257,-0.62559,1.1496,-0.96441,-1.4258,0.49625,0.94334,-0.57779,-1.3644,-1.0628,-1.7056,1.4525,0.6408 -3.0666,1.5405,-1.0021,-0.56258,-0.3862,1.244,0.85514,-0.013771,0.010501,1.1201,0.8204,-0.74175,1.0158,-1.4461,-0.064715 1.9457,-1.8114,1.2541,-3.3133,-0.84152,2.5519,0.39102,0.88537,-1.8471,-0.26077,-0.97096,0.99467,1.4504,2.862,-1.1591 -2.7702,-1.0741,-3.6473,-0.31857,1.2626,-0.022136,-0.85452,-0.4685,-0.088997,-1.7412,-2.0561,1.0891,-0.74799,-0.43278,0.7021 2.8106,-1.8881,-3.7381,-0.66329,-1.3559,3.4111,0.1676,1.1051,-1.0175,-0.084135,0.51556,-0.29393,-0.17876,1.0248,0.4003 2.2082,-0.38392,-1.3148,-1.4374,0.32053,0.25389,0.84039,-0.49024,1.382,0.79502,0.84158,1.1796,-0.97627,0.41102,1.1954 3.417,-0.30084,-1.4921,-0.50118,1.6803,1.2211,1.1423,-1.0789,-0.29121,1.5588,0.78709,-0.62855,-0.2909,-1.7878,1.4627 -2.5326,1.423,1.8792,-0.93722,-0.83069,0.41157,0.74723,-0.86884,0.16439,-0.054078,0.2686,1.2025,0.14232,0.098599,0.58684 1.8297,0.78559,-0.30941,0.81638,2.3386,0.5186,-1.4948,-1.4494,1.2327,0.91543,1.2355,-0.69204,0.10881,-0.75864,1.0734 2.6164,2.9785,-1.7433,-2.7687,-0.16788,-0.21384,-1.0026,-0.32496,-0.093411,0.1127,0.8717,-1.5682,-0.74226,-0.51857,-0.095278 2.9683,1.5582,-0.89624,0.098067,1.2025,0.035084,-0.8907,-2.003,0.11811,1.9984,0.62718,-1.5236,-1.1752,-1.1251,0.31325 0.92288,1.6135,-0.63641,0.91267,2.12,-0.0055844,-1.8385,-0.93219,0.87208,2.085,1.3649,-0.54361,-0.3402,-0.29351,-0.17684 0.93805,3.8425,1.187,-0.79389,-0.099051,0.038887,-1.7724,-0.78487,-0.34294,-0.25506,0.19992,0.74267,-0.81033,0.33579,-0.19876 0.24959,0.91681,0.78433,2.4565,1.2528,1.0709,-1.2535,-1.245,-0.15561,-1.3579,-0.075579,1.3511,-0.026124,0.6869,0.20932 -0.26378,0.34772,-0.25944,-1.5909,-0.44359,1.4292,-0.45073,-0.22175,-1.3632,-1.5354,2.0004,1.382,0.723,2.5874,-0.47 0.82828,2.9771,-0.088271,0.036063,0.41348,-0.39132,-2.2604,-0.64275,1.0183,1.5809,0.094563,0.17391,0.21401,-0.65307,-0.72001 3.3527,0.80221,-0.15981,-0.71822,2.1495,0.47999,-0.46408,-1.6561,0.68443,0.66823,1.0151,0.51539,1.0156,-1.1692,-0.67853 -2.6485,0.0052994,-1.2959,1.249,-0.111,1.0609,0.58924,0.71383,1.4426,-0.29727,0.094268,0.16802,-1.0217,0.88049,-0.3354 2.4922,2.7396,-2.44,-2.3586,-0.22783,0.066145,-0.46839,0.74641,-0.77189,-0.30788,0.40681,-2.0359,-0.16835,-1.4721,-0.70014 2.119,1.0709,2.0383,-1.406,-1.495,1.1686,0.4657,1.8289,-0.0029041,-0.58839,-0.78024,0.20399,-1.2583,-1.4457,-0.11718 -2.4942,3.0656,0.031049,0.85293,0.94948,-0.36088,-0.055419,1.9329,-0.029344,0.7116,-0.6365,1.4722,-0.38832,0.5522,-0.26119 4.9094,-2.8947,-0.11161,-0.96161,2.9442,1.9795,0.98456,-0.6518,-0.010523,0.66768,1.0025,1.518,0.55226,0.74594,-0.038136 1.7794,3.0168,0.36994,-1.8278,1.5767,-0.46588,-2.1092,-0.91528,0.91968,1.0991,1.153,-0.29764,-0.40209,0.19786,-0.25529 0.71373,2.6897,0.88645,0.91802,1.7399,-0.96612,-0.16361,-0.35712,0.64582,0.68764,-2.4383,0.68187,0.93821,-1.5108,-0.69636 2.7839,2.1191,-0.14622,0.56057,1.9733,0.31951,-1.4454,-1.7993,0.049756,1.8873,0.57733,-1.1062,-0.32295,-0.38151,-0.023452 1.5554,2.8877,-1.5482,-1.6424,-0.56321,1.0102,-1.081,-1.0402,0.47565,-0.59549,0.091282,-0.66516,0.52219,-0.43923,-0.67994 3.1634,1.2249,-0.86049,-1.4404,0.58298,-0.048071,-0.55533,-1.2432,0.83173,2.0408,1.2342,-0.9934,-1.7424,-0.076909,1.0649 -3.2089,0.93693,0.25611,-1.5209,0.14771,0.27511,0.98376,-1.5296,-0.016248,0.92518,0.37034,0.1064,0.68347,-0.67334,0.08922 -4.9268,-0.57996,-0.71622,-1.9272,2.2318,-2.1186,0.80763,0.2239,-0.64311,-0.88091,-0.62922,-0.81717,-1.0038,0.3479,0.14135 2.15,0.63162,-1.3317,0.0056115,0.45585,0.23142,-0.054289,-0.70276,-0.070614,2.0839,1.6932,0.91489,1.5188,-1.0121,0.081686 -3.3618,0.090405,-2.8507,-0.59605,1.6412,0.6838,-0.0090612,-1.0776,-0.29953,0.18676,-0.56674,0.37931,-0.19934,-1.258,-0.75304 0.61978,0.19465,3.1348,-3.1168,-0.092507,1.8199,1.949,0.78423,0.37099,-0.032792,-0.82637,-0.38537,0.33445,0.77135,-0.74233 2.5472,-1.3963,-2.5713,0.0014885,1.0496,3.3921,1.8902,-0.37323,-0.36224,-0.065908,0.097641,1.229,0.57635,1.7316,0.23792 0.99738,-0.8302,4.2961,-0.98692,0.6138,1.1109,1.3899,0.29576,0.054113,0.1866,-1.3579,1.5756,-0.53248,-0.74743,-1.4181 -2.4538,0.78448,2.3282,-0.7904,0.36831,-0.65517,0.72471,0.50403,1.1757,-0.79705,0.89958,-0.30914,1.0637,-0.49991,0.7778 3.4278,-1.0777,-1.9015,-1.1787,0.44265,2.4467,2.2049,1.3456,1.0356,2.1688,0.091492,2.5196,-1.2152,1.1026,-0.38138 3.0068,0.97587,0.28364,0.41342,3.3993,-0.37106,-0.76104,-1.7007,-1.4546,1.4028,1.1542,-1.1317,-0.50167,-1.382,0.50656 -0.099247,-1.872,3.4868,0.44315,1.1292,0.97831,1.5119,-0.54535,1.3847,-0.099784,-1.0794,1.1679,0.27493,-0.51732,-0.72426 -0.53251,-3.0146,2.3178,-0.91097,1.6086,-0.36626,1.5739,1.0707,1.2264,0.77387,-1.0456,-0.82701,1.2956,-0.52673,-0.9127 -0.099363,3.6421,0.20234,0.4523,1.0219,-0.32883,-1.803,1.0941,-0.52908,0.67701,-0.3833,-0.28322,0.94236,-1.0161,-0.73585 1.5822,0.10502,3.8548,-1.9381,-0.33026,1.931,0.64716,0.99246,0.62753,-0.98811,-1.055,1.4775,0.53949,0.5093,-0.85825 -1.2341,-1.8474,3.9689,0.11935,1.366,-0.86085,0.30154,2.2743,-0.29558,0.044051,-0.3522,-0.35298,-0.064263,-2.4797,-0.10605 -2.1081,1.4246,0.92538,2.1638,0.78424,0.75817,1.253,-1.2533,-0.097607,0.37612,0.47263,1.2589,-0.64514,0.15127,0.91467 -0.85993,-0.32107,1.4133,1.1058,-0.59949,0.91647,0.9326,-0.23719,2.4199,-0.55632,0.24994,0.24374,1.29,-0.37456,0.27835 -1.7437,2.6063,-2.0593,0.66002,-0.42731,2.0046,-0.13114,1.9988,0.1794,-0.11761,-0.89073,0.86779,-0.0061409,0.057719,-0.54902 -2.1217,-1.0374,-0.72019,-1.0236,-0.75286,0.74194,-0.47394,-1.8431,1.3552,0.18495,-0.53875,0.22531,1.4,0.14482,-0.26048 -1.7926,3.9151,1.4763,0.19565,-0.24495,0.42041,-0.14028,0.82253,-1.0176,0.86169,0.4226,1.3252,-0.63523,0.076841,-0.31131 -1.7219,-1.8471,-1.6551,-0.38357,-0.38396,0.36727,-1.503,-0.69014,1.4598,-0.00045511,-1.4143,0.49435,1.0126,-0.54524,0.82407 -2.5726,-0.46833,-0.17928,0.42656,-0.79041,-0.17416,0.73109,0.5666,2.248,-0.75319,0.63871,-0.87016,-0.058286,-0.70552,0.23591 -3.0468,-1.1016,-1.3503,-0.7778,-0.53553,0.21302,-0.70174,-0.54983,1.2135,-1.147,0.019228,-0.5415,0.81898,0.15425,0.22827 -2.2505,-1.0716,-1.7618,0.58288,-0.05754,-0.44746,0.41218,-1.1727,1.8161,-0.50983,-0.14455,-0.090674,0.84697,0.087067,-0.65186 1.2068,0.96827,-0.41029,1.4904,2.409,0.60541,-0.87842,-0.76692,0.34473,-0.76629,0.25846,-0.67271,1.2278,-1.1628,1.3551 4.0831,-1.7443,-2.0747,-2.2158,1.7109,3.3454,3.3248,1.2041,-1.2075,-1.4176,0.76242,1.98,-0.56636,0.71696,0.076707 1.3124,1.8307,-2.135,-1.6212,-0.86864,0.63329,0.66736,1.2685,-0.032299,0.5346,0.43743,-0.85273,-0.14625,-0.67467,0.64599 -2.1589,0.64539,-2.1043,-0.70505,-1.0592,1.2614,1.0509,-2.4516,-1.2241,0.26607,0.2951,-0.45419,-0.22624,-0.3083,-0.97634 -2.3452,-1.0148,-1.2838,0.41202,0.16865,-0.34897,0.29445,-1.618,1.7464,-0.21265,-0.053177,0.061618,1.0036,0.13713,-0.45388 2.7156,2.4176,-0.41621,-3.4436,1.6333,-1.2543,0.00106,-0.68233,0.15179,1.1153,1.2274,-0.21172,-1.1563,-0.3761,-0.035452 2.424,-0.37852,-2.0092,-1.4309,0.32303,1.565,1.6444,1.2981,-0.023933,0.86011,0.5515,1.8859,-0.46009,-1.4489,-0.1052 -1.8137,0.986,0.65732,-1.4073,1.1586,1.7718,-0.43849,-0.5988,-0.75553,-2.5677,1.2889,0.58561,0.12308,1.7273,-0.82172 -2.928,-0.56085,-2.5225,-0.58494,-0.28577,0.035817,-0.55725,-0.34072,0.81602,-0.20449,-0.58372,-0.19179,0.9662,0.057858,0.13494 3.2146,0.82667,-2.9864,-1.5425,1.1935,-0.035265,2.2602,1.3276,0.6742,1.1738,0.80879,1.0237,-1.2921,-1.2169,-0.36233 -3.2172,2.9083,0.22366,-0.33558,-0.024069,1.9058,0.66831,1.9672,-1.5488,0.86361,0.79611,0.58585,-0.61524,-0.67247,-0.24025 -2.5632,-0.87769,-1.7367,0.25014,-0.61514,-0.7057,0.2443,-0.62166,1.8998,-1.0519,0.17052,-0.55922,0.13133,0.26213,-0.38737 0.64165,0.79514,0.61457,-1.8958,0.78293,-0.0204,1.0991,1.0189,0.45153,1.5325,-1.3035,0.77388,0.84607,-0.45817,0.066667 -2.7286,-1.5175,-1.93,-0.4865,-0.20249,-0.93327,-1.0387,-0.76952,0.81737,-0.90472,-0.67363,0.13936,0.6396,-0.3956,0.36566 -4.27,0.53684,-2.781,-1.5229,1.3061,-0.23716,1.0547,-0.021164,-0.81902,-0.64184,-0.37402,-0.47987,0.40149,-0.090309,-1.0312 1.2495,-0.34715,0.90256,1.5945,2.3052,-0.40383,-0.98934,-1.6703,-0.10705,-2.7859,-0.79673,0.70959,1.9323,-0.63285,-0.33254 2.4037,-0.29127,-3.1189,-0.85745,-1.2827,0.045627,2.2754,1.5181,-0.067548,0.40007,-0.45279,1.332,0.14613,-0.98541,-0.1199 -1.818,-0.24038,1.7249,0.43016,1.5164,0.95093,1.2873,-1.7145,-0.92585,1.4566,0.47366,0.077735,-1.0326,-1.8527,0.91413 4.0373,-1.3808,-0.91278,-2.4759,2.078,0.020753,3.1259,1.8785,-0.33341,1.9987,0.1703,3.3973,-1.8173,-0.83637,-0.53599 -0.92412,-1.482,0.096677,-0.51838,-0.6465,1.501,0.25823,-0.88563,2.0045,-0.18707,-0.93599,-0.22962,1.4429,-1.0773,-0.79232 -2.4723,1.9212,1.6928,-0.032339,0.56795,0.31987,0.20361,0.38478,1.4429,0.34848,1.3836,0.13168,-0.11325,1.0085,-0.62208 -3.6401,0.68327,0.25702,-0.54118,-0.30645,1.477,1.3454,-0.38272,0.33843,-1.424,1.1162,0.25569,0.3976,0.044194,-0.32509 0.085757,1.982,1.5537,1.1903,-1.0391,0.9923,-0.33363,-0.73459,1.4046,0.65573,0.0042546,1.1045,-0.65656,0.58167,0.79391 -0.20372,3.8663,-0.032455,-0.13589,-0.40115,-0.42317,-0.67102,-0.9447,-0.28554,0.22605,-0.83957,0.8233,0.70543,0.7107,-0.53566 -2.113,0.78728,2.8968,-0.99273,-0.49645,0.69049,0.11467,0.47368,0.59526,-0.5208,-0.1692,0.7321,-0.12432,-0.79682,1.8595 -1.1364,1.7002,0.24363,2.8375,0.59832,1.0028,0.12754,0.075638,0.71787,-0.80565,0.53687,0.57341,-0.87597,0.51194,0.77125 0.18256,0.31759,3.3759,0.86693,0.97042,0.13611,1.1772,-1.1774,1.5903,-0.10829,0.1881,0.36465,0.22288,0.045662,0.55708 0.10607,3.0551,-1.9079,-0.68101,1.1505,1.983,-0.58277,-0.081906,-1.8561,0.5222,0.68147,-1.4868,-0.48453,-0.25981,-0.76402 -4.0556,0.95795,-0.68261,-0.57367,0.11619,0.37757,1.8754,0.77529,0.29784,-1.3781,0.61033,-0.88406,0.43935,-0.8462,-0.17514 0.50191,3.3384,1.2972,1.1128,0.25013,-0.30716,-0.63247,-0.48763,0.11947,1.932,-1.5609,0.88676,0.022799,-0.24558,-0.871 -0.3273,2.2754,2.3818,0.21596,0.078501,-0.64524,-1.5135,-0.12994,1.2954,-1.0417,-0.17443,1.4663,0.85887,0.47591,0.17784 -0.49736,0.79695,2.262,2.3043,1.776,0.39015,1.1831,-0.78834,0.21352,0.043171,-0.23291,0.41677,-0.16716,-2.0153,2.0106 -0.29939,-0.28688,2.1251,2.2819,0.80918,0.12955,-0.070926,0.66646,1.9597,-1.0308,-0.32812,0.22834,0.015864,-1.2314,1.9937 -2.8321,0.32152,0.96677,-0.032391,-0.60552,-0.036369,0.47608,1.0636,2.0744,-1.1553,1.3046,0.1879,-0.23441,-0.47595,1.0037 2.4515,3.4114,-1.3419,-2.1487,-0.40518,-0.045731,-0.75143,-0.16823,-0.12448,0.050769,-0.33946,-1.2458,-0.95211,-0.80449,-1.0872 -1.7849,0.23975,1.6129,0.59109,0.44556,-0.46399,0.89529,-0.21458,0.91431,1.9084,0.30377,-0.052826,-0.63145,-2.133,0.9305 -0.83198,3.1499,0.46267,0.27065,-0.10021,1.9225,-0.83949,-0.016048,-0.41407,-1.5321,0.26092,0.53705,0.80834,-0.68983,0.44302 -0.12392,-1.6972,1.5146,0.065179,-0.1495,1.144,1.0742,1.2815,1.8746,1.327,-0.89361,-0.87047,2.0177,0.58504,-0.85451 -2.5615,3.0714,-0.049242,-0.068648,-0.62306,1.3854,1.4917,0.056101,-1.2518,0.2416,0.24245,1.2475,0.48598,-1.0562,0.70702 -2.5329,2.8324,0.10086,-0.26191,-1.0353,1.6307,0.95489,0.33396,-1.7841,0.98321,0.60107,0.63368,-0.35964,-0.89078,0.24718 -3.4539,1.8719,-1.0958,-0.71885,-0.22278,1.4534,1.5417,0.257,-0.91677,1.0635,0.76587,0.40363,0.69392,-0.9821,-0.34944 0.79809,1.52,2.5211,0.90944,0.14687,0.31225,-1.518,-0.4087,2.0752,-0.4909,-0.27215,1.2767,0.13696,1.1871,0.53852 -2.7696,1.7462,2.6854,-1.0097,0.08627,0.20917,0.84257,-0.54406,0.10299,1.1895,0.98875,0.018375,-0.15298,0.021415,0.034011 -2.6484,2.3348,0.7673,0.23199,-0.71961,0.3007,0.86716,0.29848,0.39557,0.74598,0.37929,1.4777,0.31272,-0.42994,0.9068 -3.7933,0.83733,-1.3403,-0.58566,0.13098,0.091036,1.6606,0.33079,0.6447,-0.27586,0.7152,-0.49688,-0.281,-0.82844,-0.9398 -2.1811,2.6674,0.57905,0.29814,-0.33727,2.1253,1.7204,-0.788,-0.80427,-0.8511,0.73987,0.21555,-0.065298,-0.53273,0.068103 -1.4346,2.3127,0.3137,-0.58188,-1.1733,2.0689,1.7872,-0.60742,-0.70337,-0.58052,0.2701,-0.52808,-0.4379,-1.3069,0.88437 4.7992,-1.3317,-2.0693,-0.8998,1.2567,1.2732,2.239,-0.78675,-0.072008,-0.02143,1.1336,-0.52311,-2.0411,-1.1838,1.2086 -2.8776,1.0713,-2.1592,0.32952,0.057803,1.0778,1.1788,0.38487,0.55073,1.7484,0.19389,-0.1327,-0.17664,0.56141,-1.318 -0.77031,2.0204,-0.76457,-0.015041,-1.3567,3.1103,0.7966,0.5003,-0.79204,-0.21051,0.51219,-1.5264,-0.12143,-0.10398,0.36345 3.08,-1.0992,0.98569,0.25889,0.94601,2.9175,-0.78042,-1.5136,-0.46154,-2.4671,-1.2429,0.92914,0.80373,0.38739,-0.61681 -1.3186,1.6691,-1.2525,0.56145,-0.85615,3.0401,0.9114,0.50189,0.16706,-0.30046,0.7392,-0.98681,0.44586,-0.065112,-0.37379 2.1232,-1.6679,-0.75658,-1.8984,2.124,1.449,0.63574,-2.4496,-0.3167,-1.1013,0.86313,1.6407,0.82606,-0.18071,0.71045 -2.7685,1.9811,-0.50024,0.85803,-0.48665,1.0633,1.3661,0.63632,0.13764,1.6836,0.65839,0.96748,-0.59096,0.41712,-0.48706 -2.8683,2.0477,0.52927,-0.81951,-0.7686,0.96393,1.7082,-1.268,-0.5386,0.41308,0.5522,0.96764,0.24229,-0.18253,0.15757 -0.81806,2.8855,0.84166,0.88737,-1.3252,-0.4223,-0.085221,-0.69343,-0.55895,0.46282,0.43551,1.3708,-0.23249,1.4699,-0.27886 3.2271,-0.8334,2.58,0.96246,2.6337,0.81008,-1.0128,-0.87763,0.98797,-1.6604,-1.3988,0.54044,0.43578,-0.11615,-1.177 3.1105,0.80916,-1.3795,-0.5112,-0.17859,1.092,-0.24907,-0.50182,1.7461,0.012904,-0.27688,0.7589,-0.53642,1.2808,-1.8184 4.6897,-0.29598,-1.2147,0.12632,0.80545,0.92705,0.526,-1.6938,0.097105,-1.1373,0.28918,-0.58169,-1.4275,0.80455,-1.7689 -2.2308,3.2892,-0.38893,0.20855,-0.51269,1.0102,0.031808,1.6199,-0.49871,0.05476,0.3033,1.4168,0.56254,0.46214,-0.063781 -2.1804,3.7712,1.1234,0.17434,1.038,-0.53703,-0.38823,1.481,-0.062179,-0.72364,-0.22841,0.95523,0.38451,0.84703,-0.14027 -2.4321,3.2998,0.10826,0.16833,-0.67296,1.8906,0.37458,1.5074,-1.2343,0.71292,0.43063,0.86688,0.28893,-0.075445,0.36098 -2.732,3.0384,-1.4446,0.38405,-0.057969,1.2054,0.75531,2.2151,-0.66735,-0.78295,-0.48874,0.60168,0.13523,-0.35798,-0.0016798 -1.1857,1.9805,-0.06121,2.0602,-0.41637,0.19667,-0.08195,-0.042868,1.2567,0.43938,0.31845,1.7497,-0.51398,0.85514,0.016724 1.254,3.8157,0.45597,-0.20976,0.36006,-0.46192,-1.2854,-0.75206,-0.14702,1.7329,-1.4982,0.1956,-0.13658,-0.30037,-0.95442 3.07,-2.0171,-2.6168,0.91675,-0.50098,2.866,1.9824,0.52111,-1.1673,-0.38338,-0.070979,0.1846,-0.49036,0.86393,-0.46197 2.2817,-1.787,-2.1698,-0.66561,0.045799,3.9241,2.0257,0.88006,-1.0592,-1.0755,0.19905,1.8527,0.1458,1.763,-0.14483 -0.81696,-0.58185,1.6174,-2.0842,-1.7315,0.85928,1.9118,-1.6147,0.99878,-0.087482,-0.80205,-0.31624,-0.91348,0.0091882,-1.025 -3.9859,0.52292,-1.986,-1.1156,-0.019327,0.2793,1.6975,0.3427,0.45369,-0.87818,0.071086,-0.59258,0.45645,0.43891,-1.1897 0.27295,-0.92483,2.1507,-1.8896,-0.83871,1.983,1.4097,1.4425,1.9677,0.11235,-0.93366,-0.33462,0.48015,0.22973,-0.56214 -1.9524,2.6265,0.58001,1.1332,0.023797,0.19136,0.72494,1.7342,0.38861,0.79527,0.28295,0.79342,0.14263,0.91292,0.40598 -2.2093,1.6006,-1.9173,1.0872,-1.0704,2.0937,1.3061,-0.056232,0.1341,-0.47439,0.43388,0.99994,0.095003,-0.5556,-0.23337 0.14805,2.2414,0.76273,0.76117,0.38231,0.047645,-1.8013,0.031196,1.6835,-0.32814,0.20345,1.0905,1.2003,0.72531,-0.25007 1.3031,0.98557,1.0884,1.2327,-0.22265,1.1379,0.7829,-0.22376,-0.116,1.2239,-2.0306,0.37339,-1.7094,-0.61633,0.39232 -2.6938,0.11172,-0.28351,-0.55017,-0.45873,0.4268,0.63084,0.2702,0.48973,-1.9749,0.54928,-2.021,1.05,-0.88665,0.71653 2.8341,2.2507,-0.18337,-3.0969,0.99988,-0.18653,-0.911,-0.05756,1.1283,-0.24082,0.45887,0.61485,0.19328,-0.58575,-0.51236 -1.9654,-1.4173,0.50736,-2.1617,-0.11911,0.69372,-0.25339,1.4784,0.60943,0.57523,-1.1771,-2.2903,1.5948,-0.51842,0.2756 -2.2743,0.38523,-0.65402,-0.83381,0.70888,2.0428,0.82774,-2.3708,-0.38986,-0.080761,-0.24489,-1.3651,-0.58351,0.35116,-0.4244 -1.9841,-2.3005,-0.60114,-2.7447,0.27863,1.0624,-0.98495,-1.9806,-1.2341,-0.47233,-2.464,1.3655,0.25428,-0.37254,-0.069364 -0.99046,-3.4902,1.1269,-2.3609,0.89404,0.90852,-0.86108,-0.33676,1.0306,0.76891,-2.9203,0.58636,0.094966,0.80322,-0.70527 2.8834,-2.6441,-0.61328,-0.063236,2.3373,1.7037,-0.030239,0.58872,0.38372,-0.13784,0.46842,1.3677,2.372,0.78439,-0.13928 -1.7777,1.4268,-1.0522,2.1959,-0.42553,1.0354,0.96226,-0.43256,0.13391,1.2227,0.53645,1.3909,-0.61025,0.4435,0.15734 -2.9884,-1.5531,-1.1189,-1.7061,0.077386,-0.42482,-1.4835,0.13806,0.8253,-0.88514,-0.82858,-0.29778,0.37746,-0.091517,1.067 3.3038,2.6301,-0.43689,-0.70073,0.40234,-0.2964,0.014692,-0.90055,1.1501,0.14325,-0.82477,-0.1156,-1.2722,0.27234,-2.5644 -3.622,-0.84158,-1.3674,-0.13991,-0.11923,-0.73015,0.55691,-0.78739,0.69501,-0.59026,0.51142,0.029537,-0.85848,1.1027,-1.5717 -1.5545,-2.0633,2.7873,-2.2229,-0.12176,-0.37594,-0.44865,1.7919,0.82133,-0.31351,-0.44338,-1.8873,0.99354,0.22901,0.73061 -2.6018,0.29884,-1.2112,-0.38283,0.79582,2.0403,1.0184,-1.5758,0.15844,-0.52614,0.088576,-1.3337,-0.686,0.53043,-0.98263 -1.5834,-2.0856,1.9293,-0.1837,-0.046373,0.0024303,0.41805,0.25206,2.409,-0.62194,-0.12618,-0.7412,1.0943,-0.19895,-0.58864 -2.453,0.51752,0.23162,1.9085,0.59634,-0.13157,1.2827,-0.37169,1.0229,0.09792,0.48824,1.1211,-0.99311,-0.76356,1.0019 3.0595,0.6617,-0.57541,-0.95491,1.516,-0.034882,0.44772,-1.1288,1.7462,0.34194,0.076845,0.6188,1.2057,-1.2777,-1.041 0.98774,2.0199,2.2198,-1.1869,1.4297,-0.86061,-1.783,-0.46816,1.2818,-0.28851,0.62249,0.087819,0.8084,-0.08461,-0.20111 -4.391,0.49913,-0.35811,-2.2594,1.3703,0.42624,0.34694,-0.55204,-0.78294,0.06645,0.20792,-0.47932,0.19719,-1.1376,-0.50195 4.8184,-0.70465,0.47804,-0.80154,2.5601,2.8644,0.73284,-1.6052,-1.0252,-1.5145,-0.59286,-0.47333,-0.34869,0.80182,-0.44061 -2.2154,-0.074994,1.1826,-1.7961,-0.77401,0.32078,0.46172,-0.30122,1.7547,-0.51257,-0.22784,-0.82029,1.4048,-1.0432,0.30516 -0.28092,-2.8109,1.1502,-2.4151,0.46409,1.6537,0.33404,0.28326,1.0469,0.27192,-2.505,-0.095103,0.76004,1.7656,-1.0597 -4.1364,-0.81007,-2.6061,-1.9917,0.98556,-1.3973,0.20977,-0.70562,-0.04174,-1.4781,-1.223,0.4803,-0.37047,0.4198,-0.68308 -2.7,-1.0582,-3.0915,-0.75717,0.26604,0.8217,-0.55183,-0.16412,0.11361,-2.3314,-1.0196,-0.55692,-0.39612,-0.28265,0.78065 2.3894,-1.1793,-0.017095,-2.4482,1.927,1.5778,2.1718,0.87309,0.72327,0.81447,-1.2633,3.1453,-0.36497,1.123,-1.9361 4.2939,-0.44632,-0.99825,-2.1075,1.6061,-0.5736,2.3843,-0.67228,1.487,0.80043,1.1565,1.9353,-1.7897,0.049527,-0.45356 3.0467,2.2598,-0.6321,-0.53142,-0.050323,-0.44981,-0.71743,-0.03975,0.50347,0.66794,-1.2671,-0.1193,-0.23465,-1.3645,-1.2712 -2.8886,0.19481,-0.49353,0.083448,-0.84182,0.3247,0.93129,0.57309,2.1869,-1.1543,0.72076,-0.45953,-0.39394,0.53856,-0.52479 -0.77633,-0.44126,1.9951,0.74939,0.56024,0.041661,0.93209,0.54507,1.8221,-1.312,0.28224,0.15133,1.9292,-0.21277,0.35199 -3.1361,1.0752,-1.3366,-0.090264,-0.86757,0.87523,1.5084,-0.25555,0.50898,0.11211,0.90351,0.85836,0.26236,0.56495,-1.2701 2.42,0.13709,2.2418,-0.23567,0.3236,1.6839,-0.44387,0.70967,1.2751,0.30675,-0.61596,2.0279,1.076,0.45085,-0.61878 1.1146,2.0219,1.0674,1.6576,0.45287,-0.24289,-0.77481,-1.481,0.65513,0.22068,-1.2159,1.1472,-0.42397,-1.6376,-0.07274 -3.3511,-1.116,-2.2861,-1.1836,0.0028392,-0.55838,-0.82671,-0.17737,0.72021,-1.53,-0.62306,-0.15016,-0.15925,0.31947,0.12945 -4.2452,-0.1226,-1.3549,-1.22,0.39512,0.77682,0.3878,-0.30768,-0.011289,-0.7996,-0.065119,-0.75934,1.2499,0.21001,-0.80722 -2.5548,-0.24715,-0.24205,0.4079,-0.65846,0.16767,0.19329,0.93783,2.3434,0.0038234,0.64825,-1.1151,0.27949,0.6161,0.038797 -3.1678,-0.00025892,-0.51209,-0.89993,-0.41714,0.6957,-0.39671,-0.21839,1.5139,-0.0011259,0.3982,-0.65074,1.3823,1.0964,-0.47273 3.4802,-2.7914,-1.9721,-1.3031,2.2777,3.4291,3.0984,0.16238,-1.2975,-0.99262,0.96586,2.2019,-1.4113,2.0366,1.1707 -3.1154,1.4714,-2.1498,0.64352,0.70924,1.9655,1.5092,1.6653,0.14409,0.63048,-0.2439,-0.28837,-0.043739,-1.2946,-0.11256 -3.0947,-0.39416,-2.7891,-0.52326,0.8346,1.328,-0.42963,-1.4423,0.30417,-1.0626,-0.59446,0.43021,0.49072,0.024298,-0.319 -2.9191,-0.81999,-1.9056,-0.68971,0.2596,1.6466,-0.13896,-0.69209,0.69039,-1.5053,-0.43509,-0.9254,0.7047,-0.58428,-0.057314 0.15482,3.2734,-1.1199,1.0145,-0.57148,1.8762,-0.0072608,-0.34743,-0.27475,-0.86771,-1.0828,0.20775,-0.23857,-0.33756,-0.17417 -0.55583,2.6204,0.47359,1.3594,-0.58016,-0.053095,-0.30045,-1.1771,-0.31895,0.9595,-0.16154,1.3412,-1.071,1.107,0.047219 2.5448,2.357,-2.7303,-2.3705,-0.3898,0.10149,0.16898,-0.011101,0.70954,0.18031,0.74858,-0.77605,-0.05498,-0.90572,-0.46328 0.20682,3.247,-0.00054505,0.342,-0.025107,0.82345,0.40743,0.28203,-0.028133,1.1938,-2.5161,1.0536,0.37475,-0.85653,-0.79849 -1.7915,3.0969,-0.1969,0.97872,0.70951,-1.6191,-0.46003,1.9664,0.35328,-0.20134,-1.0257,0.79297,0.032113,-0.52502,0.25628 -0.27885,2.926,-1.2277,1.406,0.86524,0.76689,-1.251,0.35805,0.34676,1.7313,-0.65476,0.32278,-0.34178,0.36777,-0.92093 0.59671,0.36134,0.049441,-2.4762,-0.58647,2.4531,1.3684,0.55817,0.61275,-1.4067,-0.20152,0.24216,0.54388,0.52301,-0.15883 0.18299,-0.73425,0.84797,-2.0136,-1.2439,2.3083,1.098,1.144,1.7002,0.087973,-0.76869,-0.51401,0.29571,0.75823,-1.0212 3.8831,-1.7538,-2.3244,-0.51341,1.9145,1.8446,2.7926,0.74872,-0.18328,-0.42933,1.3707,1.1373,-1.8573,-0.60864,0.63147 -1.6786,1.0067,0.42717,-1.34,-1.0113,0.48845,1.7806,-1.6017,1.031,0.62127,-0.39518,0.12396,0.30756,-1.3865,-0.18554 1.0117,3.0669,0.63512,0.92599,0.25828,-0.28482,-1.2143,-1.6559,-0.63472,0.54148,0.47616,0.14053,-1.016,2.1517,-0.65896 4.4424,0.15255,-1.1893,-0.45691,1.6997,1.3585,0.82974,-1.8986,0.28399,-0.36211,0.095823,-0.37074,-1.2343,-0.20136,-1.1683 2.6807,-0.73635,0.69328,1.2068,2.6007,0.048746,-1.2915,1.2912,1.1794,0.61685,0.21203,0.18,2.0652,1.7601,-0.082271 -0.77599,2.8515,-1.7769,1.0331,-1.2816,2.5329,0.042347,0.55603,-1.2331,0.33624,-0.89768,0.22991,-0.34825,-0.31363,0.49881 0.79181,2.1891,0.23228,0.88678,1.6181,-0.61188,-1.321,-1.329,1.6863,0.62119,-0.030853,-0.38298,1.0512,0.93726,-0.35559 2.2722,1.8781,0.43921,1.3376,1.8846,0.38285,-1.7243,-2.5036,0.3004,0.61563,0.60797,-0.57777,-0.26035,0.24701,-0.17769 2.965,1.428,-2.3352,-2.3686,1.2565,0.35838,1.5265,0.3084,0.5476,0.97246,0.65716,0.62608,-0.17928,-2.135,-0.88885 2.2243,2.3859,-2.0738,-2.1955,-0.23444,0.37439,-1.1132,0.1494,0.72447,0.17377,1.1592,-1.4781,-1.0422,-0.20152,-0.14882 -3.0039,-0.49065,1.8833,-0.21691,0.13369,0.35949,0.78194,-0.83049,1.6973,-0.16331,1.4992,0.22886,-0.56828,1.4326,-0.31954 3.9181,0.62017,-1.8482,-0.75641,0.13506,0.20345,0.92255,-1.0527,1.3317,1.6258,0.63305,-0.72613,-1.1093,0.50491,0.48499 -0.80193,0.7534,2.6694,-0.747,-0.94312,1.2318,0.80228,0.1215,1.5496,-0.71611,-0.2915,-0.080564,1.3873,-0.23605,0.43916 2.3336,0.5563,0.50902,-1.7497,1.0381,-1.5675,-1.9566,0.52337,-0.69136,-0.09987,2.1123,-0.11558,1.6011,-1.6514,-0.5463 4.4341,0.78257,-0.23322,-0.64992,1.3046,-0.8213,-0.067702,-1.8676,0.034976,1.2417,0.28058,-0.15265,-0.17469,0.99368,-0.97399 -2.7174,0.7831,-1.2662,-0.42276,-0.49623,1.731,0.99391,-0.88922,0.84336,-0.86819,0.8579,-0.65459,1.2149,-0.12904,-0.28802 1.9632,2.9399,2.1224,-2.6752,1.9034,-1.035,-0.3452,2.0212,-2.6141,0.14964,0.51541,-1.0163,-1.3895,-0.23109,0.16718 0.94016,-0.17702,0.68864,2.2649,-0.85346,1.7758,-1.219,-0.84969,0.65473,0.28256,-0.12594,0.58331,-0.51689,-0.27361,-0.057144 -0.65875,2.955,-1.6509,0.086465,-1.1446,2.1858,-0.91131,0.55548,-1.6201,0.45221,-0.47983,0.21396,0.035492,0.10748,0.031697 5.1489,1.192,-0.31362,-3.679,1.2392,-1.5614,0.94169,0.033802,0.41914,0.14016,1.181,0.5096,-1.34,-0.021024,-0.96163 2.433,1.1913,1.9856,-1.6971,0.17579,0.72346,-1.1953,1.506,1.5237,-1.0469,-1.3804,1.2382,1.0544,0.13674,-0.2321 2.9936,2.5841,-0.87679,-1.8935,0.68527,-0.57186,-0.28048,-1.472,0.7463,1.8425,0.78534,-0.88374,-0.70336,0.98369,0.18383 -1.2574,2.4959,0.76296,0.71954,-0.92618,0.34449,-0.21802,-0.19656,-0.23958,-0.10993,0.59279,1.8937,-1.7637,0.069314,-0.10044 1.116,1.6077,-1.6864,-0.58033,-0.16658,0.40945,-0.96468,-0.36192,0.8083,1.957,2.7397,0.40242,0.65254,1.6159,0.55577 0.73066,2.1044,-0.29803,2.1974,0.55566,0.93501,-1.1182,-2.1011,0.14213,-0.23481,-0.17569,0.36736,-0.38655,0.40761,-0.21009 0.80528,1.9418,-0.76284,1.8086,0.33943,0.15231,-2.0369,-0.68612,0.46674,1.5259,1.1295,-0.14782,0.45086,1.5339,-1.1768 0.82031,2.5133,0.74454,0.067614,0.037119,0.23983,-2.3571,-0.68244,1.4146,0.13024,0.13626,0.71775,1.1,1.2941,-0.9391 1.3469,2.594,1.0098,1.3917,-0.75034,-0.43456,-1.4702,-1.2215,0.18687,0.55434,0.040893,0.27539,-0.81917,1.663,-0.17875 -1.9307,1.6377,-2.3151,1.3325,0.071938,0.92882,0.8491,2.3464,0.5016,0.48671,-1.3255,0.29796,-0.80868,-0.093249,0.51366 -1.0863,3.0865,-0.45996,1.1187,-0.72613,1.4833,0.32983,0.49809,-2.3291,-1.0022,0.18914,1.2483,0.65512,0.94245,-1.2848 3.3558,-0.4638,-2.5715,0.19355,0.48336,1.0443,1.874,-1.071,-0.5815,0.37715,-0.063856,-0.21072,-1.2545,-1.1459,0.94289 -2.0858,-0.69281,1.2817,-2.0817,-1.0323,1.696,-0.12429,-1.4464,-0.13906,0.48606,-0.72202,-1.3726,0.30293,1.8681,-0.45702 -3.3263,1.7632,-1.5968,-0.27122,-0.19862,0.9779,1.5296,0.66234,-0.38724,0.32716,0.42799,0.11767,0.8823,-0.9216,0.14493 -1.9278,-0.22708,2.1223,-1.148,-1.3016,0.65477,1.1912,-1.0577,0.80957,0.96079,-0.88863,-0.24167,-0.21777,0.26213,-0.0010595 2.1795,-1.5554,1.2609,-1.6028,0.96285,-0.3561,0.70564,1.6945,0.31227,0.97833,-0.648,0.36866,-0.47835,-0.45653,-0.06249 -3.062,0.92749,2.1423,0.34101,0.3554,-0.23363,0.80539,0.60113,1.2036,0.7882,0.40505,0.17884,-0.043754,0.40004,0.26151 -3.2185,1.6887,0.97347,-0.053412,0.036905,0.78582,0.83426,1.318,0.82481,-0.65951,0.88265,0.4605,-0.46197,0.44433,-0.56517 -2.7191,2.8467,1.4873,-0.32135,-0.28792,1.4044,0.98081,0.20492,-0.57935,-0.072788,0.15382,0.85165,0.43954,0.08137,0.46247 0.48231,-1.1644,2.5457,1.7332,2.3498,2.1106,-1.0526,0.22898,-1.5454,-1.6643,0.78667,-0.24848,0.71004,1.6689,0.8415 -2.9523,-0.39945,0.93151,0.32858,0.12359,-0.40076,0.12805,1.1215,1.8328,-0.33414,0.88982,-0.95963,-0.4427,1.3475,-0.77321 -3.5619,1.9654,1.0864,-0.81584,0.36714,0.061268,0.94019,0.77863,-0.38196,0.93622,1.4907,-0.15285,-0.083619,-1.228,-0.22529 -3.2199,1.1056,-1.9758,0.47903,0.31379,1.5729,2.4231,0.49029,0.73786,-0.068203,-0.61252,-1.1055,0.32143,-0.19425,-0.71693 -2.2687,1.0892,2.5032,-1.8925,-0.91949,0.80333,1.2116,-1.9953,-0.057619,0.50666,0.86777,-0.22634,-0.93722,0.80638,-0.024333 -1.8627,-1.8348,2.107,-0.5181,1.592,-0.18871,-1.1233,1.1943,1.4765,-0.4752,0.67403,-0.5908,-0.28215,2.8564,0.18839 -2.8911,-0.98954,2.6748,-2.1536,0.31322,-0.39515,0.32835,-0.74756,1.337,0.35045,-0.40458,-0.73301,0.19056,-0.93137,0.53738 2.0413,2.1964,-1.8019,-0.90692,0.061112,1.2527,-0.84646,-1.3766,-0.080712,-0.35182,1.3439,-1.3362,0.48428,-0.94161,-0.095767 -3.0944,0.013213,2.2831,-0.46914,-0.21892,0.60508,0.45931,0.13706,1.7012,-0.54054,1.2104,0.06693,-0.22923,0.84236,-0.00044411 -3.9009,-1.1996,0.15424,-1.8224,0.38675,0.43613,-0.69402,-1.8323,0.57621,0.33839,0.42788,0.60904,0.056851,1.1314,-0.75643 0.37655,0.98681,0.95603,1.713,-0.50689,0.95055,0.59961,-1.4739,0.93034,-0.45951,-0.70099,1.1475,-0.5756,-0.95179,1.0991 -2.3127,-0.94637,2.7258,-1.7506,-0.053528,-0.22042,0.67612,-0.99367,1.5463,-0.71603,0.035805,-0.77611,1.3818,-0.19711,0.064484 -2.7532,-0.1681,-2.7351,-0.54021,0.17633,0.99434,0.20704,0.35518,1.1812,-0.37282,-0.75043,-0.36859,-0.11208,-0.21526,-0.46553 -3.0069,-1.5621,-1.6196,-0.877,0.92972,0.8748,-2.0764,-0.61088,-0.99723,-1.5191,-0.62028,0.46578,0.21901,0.080683,1.5978 -3.3582,-1.8796,0.049553,-2.025,0.16933,1.3747,-1.5925,-1.1998,-0.62627,-1.2424,-0.50648,-0.32258,0.70041,0.53814,0.48478 -2.6309,0.66435,0.68352,0.77191,0.79059,-0.27639,1.9063,-0.45959,1.542,1.3736,-0.27093,0.59911,0.85535,-0.016318,0.10127 -3.3286,-1.5427,-1.0051,-1.5764,0.97347,0.93165,-1.8511,-1.1178,-0.50529,-1.6798,-0.54381,0.56829,0.5401,0.67064,1.3417 -1.5767,-3.3825,-1.6642,0.78361,1.1304,-1.4963,-1.7955,0.20894,-0.053572,-0.34378,-1.8329,0.22825,-1.0836,-0.26603,1.7444 -3.0503,-1.8669,-1.4847,-1.3461,0.85813,-1.3421,-1.6846,0.58953,0.67526,-1.5863,-1.0476,0.43778,-1.0525,0.87057,1.3512 -3.1043,-0.23039,-1.2592,-1.4562,0.67239,-0.61547,-1.0727,-1.5279,0.21045,-0.97051,-0.41551,1.0401,0.95968,0.42774,1.135 -2.3651,-3.4895,-0.36238,-0.57483,0.90189,-1.7049,-1.6524,1.2536,0.42038,-0.75726,-1.3752,-0.78534,-1.0507,0.85778,0.99755 -2.1405,1.5227,-2.4286,1.0198,-0.7208,2.4719,1.4409,1.1201,0.77122,-0.11151,-0.52324,-0.19524,-0.076257,-1.2241,0.05313 2.1474,2.463,0.0046047,-1.4766,1.5656,-0.34913,-0.36645,-0.55729,0.56533,-0.4371,-0.76456,-0.26664,2.2985,-1.8666,-1.3869 -2.5177,-3.4474,1.0215,-1.1097,0.72423,-0.73276,-1.4773,0.29031,1.1833,-0.064606,-1.4958,-0.96295,0.63279,0.2146,0.60804 1.3117,2.2205,-0.47585,-0.062277,1.6249,-0.51174,-1.8555,-0.62729,-0.28129,0.72602,0.57432,-0.068845,0.34558,-1.0223,-0.051233 -3.5656,-1.8074,-0.33774,-2.1659,2.0681,-1.1435,-1.6395,0.15031,0.39869,-0.39487,-0.38774,0.086817,-0.54735,0.66714,1.3709 2.0727,3.0758,1.8034,0.93741,0.604,-0.40665,-0.21872,-1.1072,0.14431,1.2643,-1.8581,0.37183,-1.0651,0.42299,-0.62536 -2.5354,-2.5402,0.6035,-2.1016,1.7365,0.067355,-2.3021,0.43695,-0.35502,0.29044,-1.4113,0.75845,0.62142,2.2123,1.8249 -0.3542,1.2349,0.80888,2.1545,0.3089,0.74578,1.475,-0.91884,-0.048852,0.42846,0.32047,1.4686,0.16384,0.32926,0.097844 -1.2283,2.0984,-0.14882,2.1892,0.33435,0.25815,0.12149,0.76557,1.3364,0.029325,-0.26783,0.5823,-0.48677,-0.66053,1.1884 -2.3704,-2.8422,-0.88814,-1.4765,2.4771,-1.2783,-2.1002,1.7111,-0.72728,-0.6217,-1.4027,0.95491,-1.0732,1.105,2.483 1.2099,0.46535,0.22242,1.6828,0.053814,2.2894,-0.10261,-1.0668,0.86462,-1.4637,-1.3509,0.58875,0.85485,-0.98,0.32929 -1.3145,0.89966,0.079419,2.0076,0.85837,1.7297,-0.2082,0.79937,1.3128,-1.5069,0.27755,0.44514,-0.43657,0.33613,1.294 0.81075,-0.42587,1.0514,1.5019,0.80113,2.3351,-0.68198,-0.74364,0.45016,-2.5557,-1.2663,0.80314,1.4653,-0.77601,1.1222 0.19995,2.7772,1.5193,1.5517,0.31425,0.48712,-1.1599,-0.21213,-0.63174,1.2512,-0.3287,0.5218,-1.2545,-0.83693,0.45533 -1.3418,2.1468,0.26335,0.45107,-1.1997,1.622,0.097468,0.022787,0.23928,-1.201,0.68949,0.59542,1.0986,-0.23749,1.0546 -3.0336,-0.56131,3.0408,-1.6696,1.0135,0.39137,-0.0053269,0.78216,1.1054,-0.87798,0.9486,-0.82328,0.19604,1.4171,0.46945 4.2165,0.55076,1.0094,-2.2481,0.54637,0.093887,-0.78162,-0.45204,1.3683,-0.44493,-0.02409,1.6385,-0.74997,0.41201,-1.7807 3.6383,-0.54217,1.1503,-1.068,1.433,4.1238,0.97164,0.34587,-1.2828,-2.5526,-1.3636,1.7037,0.44088,2.1942,-1.1851 -2.5178,-2.0764,3.9932,-1.8451,1.649,-0.1232,0.0039649,1.1777,0.47632,0.59083,-0.24586,-0.42289,0.1885,1.8487,0.18899 -4.0579,0.65722,-0.5505,-0.59995,1.0326,-0.14493,1.3184,-0.42563,-0.057943,-0.18233,0.1335,-0.97193,0.58343,-0.56804,-0.43808 -2.1843,-3.0078,0.080225,-2.7048,2.2853,-1.8151,-2.1299,1.1332,-2.0898,-0.32141,-2.2386,0.40779,-0.21332,-1.0457,2.1081 -3.5878,-2.8627,2.7491,-2.2485,2.1491,-1.224,-0.63693,0.72629,-0.28184,-0.28307,-0.74656,-1.0063,-0.32338,0.63518,0.70768 -2.2149,-3.3773,2.1172,-1.7163,2.1064,-0.43698,-0.81328,-1.5794,1.0915,0.94386,-1.3768,0.37288,0.093849,0.25268,0.083646 -0.81927,-3.7148,1.1561,-1.682,2.7342,-0.28055,-2.2239,-0.88693,0.1645,1.0012,-2.7592,1.6903,0.083928,0.51012,1.4869 -2.2215,-3.8532,2.0309,-2.4766,3.0985,-0.67388,-2.1093,0.063598,-1.1121,0.65837,-2.0213,0.5454,-0.12755,1.5186,1.1386 -3.7687,-2.8255,0.52592,-2.5061,1.9402,-2.3588,-1.321,0.41244,-0.69323,-1.1732,-1.6197,-0.74627,-0.477,0.06634,1.1126 -1.7355,-1.7867,3.7082,-1.8723,2.4652,-2.1496,0.86716,1.5746,-0.63783,-0.87312,-0.73669,-1.1454,0.39833,0.33393,-0.36454 -2.8643,-1.129,1.5964,-2.7881,1.286,1.522,-0.4152,-0.61148,-0.48894,-0.72034,-0.27602,-1.3904,0.66753,-0.054707,1.0005 2.5734,0.62932,-0.66692,-0.69526,1.0544,0.57313,0.85343,-1.0431,-2.2887,-2.4449,-1.842,-0.3155,-1.0413,0.35382,-1.5766 -3.4241,1.6076,-0.81847,0.011345,-0.54127,1.9854,1.2908,-0.0015138,-0.91613,0.23757,0.83454,0.34674,0.32501,0.020384,-0.70526 2.3076,1.696,-2.3437,0.34228,0.48815,0.62804,0.081414,-1.1191,-0.39911,0.79291,-0.77366,-2.1278,-1.2376,-1.2295,0.05734 2.5548,-0.60707,-0.81137,-0.27032,2.4556,2.3291,0.62871,-1.4888,0.0043455,0.049498,0.90899,-0.45052,1.1654,-1.1616,1.8556 2.0723,1.9622,1.7145,-0.34997,-0.16307,0.12923,-0.20074,0.14091,1.759,-0.4432,-1.6073,1.5387,-1.9316,-0.7647,-0.97776 -3.0467,0.00018276,-0.66664,-0.94974,-0.40104,0.42028,0.071028,-1.8895,0.40642,1.0701,0.89188,1.2605,0.070769,0.76288,-0.92609 -3.5765,1.7381,0.28877,-0.39034,0.48915,1.0963,1.6313,0.38644,-0.31273,0.76933,0.86265,0.21236,-0.79818,-0.028375,-0.93748 -0.91456,0.40193,0.2425,1.0326,-1.0401,0.50816,2.0029,-2.3583,0.74556,1.1567,0.0040784,0.21434,-1.1921,0.052682,0.022709 0.65828,0.6684,-0.31869,-1.2827,-0.70123,0.65889,-0.78452,-0.89707,-2.3592,-2.9516,1.3779,0.12349,0.3476,1.3207,-0.16224 -0.34963,1.9865,0.60415,1.7283,-1.537,1.5816,0.39585,-0.56496,-0.19497,1.0565,0.21412,0.057813,-1.6759,0.023443,0.93925 -0.80715,3.156,-1.5563,0.78989,-0.37584,0.86955,-0.92879,0.25049,0.10849,0.28466,-0.21296,0.90578,0.73557,0.94371,-1.3392 3.1106,-1.3325,-1.1814,-1.0777,2.1217,2.5483,1.0474,-0.97977,-0.078676,0.041815,0.31411,1.0534,-0.38062,-0.95322,0.69433 0.40357,1.2306,1.3997,2.3849,2.6917,-0.18314,-0.82455,-1.2967,-0.20905,-1.9056,-0.22406,0.95219,0.35917,-0.012861,0.13159 1.1746,2.9234,0.2438,-0.21966,-0.18357,0.25273,-1.0354,0.1783,1.1162,0.32022,-1.7548,0.80136,0.35112,-1.8132,-1.0098 -0.23259,3.396,0.66451,-0.90773,-0.81848,0.30283,1.1598,0.25956,-0.76233,-0.43034,-2.2372,1.1179,0.12101,-0.67836,-0.24129 0.35848,1.2448,-0.82576,1.8629,1.425,0.014019,-1.7559,-0.35476,2.191,-0.64017,0.14371,0.26859,0.29269,-0.35489,0.089772 3.0561,-0.044603,-0.18413,0.39683,2.5826,1.3914,-0.84442,-1.2639,0.78002,-0.30813,0.16485,-0.433,0.99352,-1.4924,-0.075611 -0.71375,0.95791,1.0814,2.7959,1.283,1.1677,-0.18248,0.32331,1.3076,0.15975,-0.1162,0.19885,-0.35917,1.2029,1.2537 -0.96712,0.53292,-0.44608,2.8326,1.0329,-0.0058783,-0.12639,-0.23548,0.90117,-0.38527,-1.0185,1.1354,-0.4801,0.3313,0.67221 0.50698,1.8866,0.1987,1.1055,-1.0926,-0.0040365,-1.2698,-1.0284,1.2365,0.10573,-0.65813,1.5028,-0.8961,0.16968,-0.27042 3.1342,1.549,-1.7191,-1.227,0.20154,0.29971,-0.51143,-0.57668,1.596,0.8528,0.027848,-0.44309,-0.88189,-1.1559,-1.6157 -0.49027,2.7808,-0.45591,0.56777,-0.053423,0.062248,-1.8869,0.44764,0.97801,0.86981,0.16454,1.2239,0.18419,-0.50802,-0.38008 0.6606,1.2081,-0.13352,0.8905,1.1593,0.027433,-1.9374,-0.17997,2.9316,-0.032266,0.28362,0.45094,0.66491,0.17827,-0.16899 3.3755,-0.018361,-1.8999,-0.23783,2.3583,2.9485,1.144,-1.433,-0.05332,-0.75286,0.69002,0.10448,-0.031732,0.19875,-0.70738 -3.0524,-0.65456,2.8385,-2.5068,1.6211,-0.0787,0.047811,-1.0632,-0.21683,-0.28164,0.45898,-0.29665,-0.74142,1.6864,0.11518 -0.86941,2.448,1.1269,1.8647,-0.38794,0.30278,0.36394,-0.81665,0.67699,0.71485,0.1006,1.7793,-0.59246,0.58083,0.26933 -2.6724,0.32327,-0.096644,2.0412,0.63812,-0.0849,1.719,0.030424,1.4405,-0.58908,0.5138,0.32011,-1.0762,0.3923,0.53358 -1.6217,2.4467,0.6924,1.8434,0.13332,0.34287,1.0525,-0.22635,-0.0015768,1.7291,0.092989,1.594,-0.71759,0.58322,0.23016 -0.22484,1.3731,1.421,2.7094,1.7726,-0.18349,0.5047,-0.55913,0.17356,-0.2978,-1.0622,1.0409,0.39844,-1.9526,1.1451 0.97536,2.7223,-2.2253,-1.0854,-0.57988,0.22338,-0.55455,0.85308,0.31263,1.1524,-1.26,-1.6747,-0.051261,-0.22397,0.14415 4.3048,1.1076,0.6866,-1.9414,1.2754,1.0209,-0.32231,1.1592,-0.46396,0.86016,-1.366,-0.12718,-0.78658,-0.043788,-2.1576 -3.2932,3.0492,0.62627,-0.19294,0.39315,0.92881,1.1373,1.5264,-0.74294,1.2288,0.54921,0.53556,-0.2698,-0.6738,0.10388 -1.1297,1.8592,1.4215,0.22787,-1.6511,0.7023,-0.68639,-0.22234,-0.5052,-0.24923,0.53653,0.78768,-0.8607,1.4908,0.097588 2.8128,-0.58145,0.54312,1.4661,0.96545,1.9741,-0.25994,0.86884,1.1381,-0.50545,-2.0057,1.1069,0.50064,0.51671,-0.82106 1.4061,2.3771,-2.0095,-3.1158,-0.45854,0.54141,1.5426,0.42244,-0.32847,0.78884,0.80609,0.98359,-1.0867,-0.42548,0.88761 1.2331,1.1575,1.7382,2.0785,0.71381,1.7102,0.16384,-2.1309,-0.91127,-0.91714,-0.46476,0.25571,-0.20935,0.27951,1.0932 3.6257,1.1544,-0.84707,-2.0987,0.41184,0.4834,0.15899,-1.7796,1.6516,1.2689,1.4245,-0.13982,-0.81037,0.23168,0.73226 -2.403,0.44057,-0.83462,0.56444,0.4247,1.3101,1.0085,-0.72991,0.82085,0.93958,1.0524,-0.83495,-1.466,0.45514,-1.1104 2.7245,-0.20908,-2.6737,-2.3613,0.44687,1.1123,1.9683,2.546,0.86495,2.2885,0.81825,2.1738,-0.78776,-0.38263,0.37932 -1.9537,0.78262,0.94919,2.2551,1.2362,0.61495,1.8634,-1.6487,-0.1348,0.51896,0.40926,1.0724,-0.27645,-0.17263,0.95469 -2.8744,1.4893,1.2794,1.1098,0.78745,-1.3756,1.5772,1.5002,1.1856,-0.19651,0.33616,0.51298,-1.0546,0.025848,0.41291 0.12198,1.2833,0.66185,2.7635,2.1521,-0.26841,-1.1292,-0.19267,1.242,-1.7961,0.086153,0.40852,-0.42107,0.60617,0.38919 -2.9369,-1.2108,-0.84487,0.47446,0.5606,1.2015,0.062583,-0.83405,1.7151,0.39485,0.85986,-0.69073,-0.51955,1.7768,-0.82208 -0.44115,2.0268,-0.90744,2.1817,-0.15122,0.5747,-0.78935,-0.85417,0.16384,0.35183,-0.31714,0.70242,0.19586,1.0991,-0.6417 1.9284,1.6381,0.8109,1.4575,1.6604,0.50281,-1.184,-2.5303,0.35652,-0.48998,-0.45345,0.50225,0.029449,0.0046901,0.1747 -0.42828,4.1408,-1.3033,-0.76835,0.94262,0.74,-1.846,0.5532,-1.0951,-0.22131,0.32478,-0.32501,0.84652,-1.1356,-1.0562 1.3091,-0.50343,4.4291,1.2332,1.9252,0.77162,0.37876,-0.66081,1.3521,-0.36764,0.34714,0.85782,-0.14653,0.84133,0.61116 -2.2006,-4.1286,1.305,-0.47209,2.2263,-0.40478,-0.90591,0.47195,1.2504,0.45871,-1.3062,-0.85835,0.33615,1.7939,0.38174 0.83537,3.5677,2.087,-0.39549,-0.1801,0.24437,-1.1773,-0.89184,0.18294,-0.31798,-0.19075,0.79101,-0.79942,0.87607,0.15032 -0.95943,-2.3019,3.6742,-3.7147,1.6331,0.12302,-0.30452,-0.44804,-0.50236,-0.16026,-0.90171,0.27596,0.53696,1.6893,-0.476 -2.0387,-1.0415,-1.0829,-0.87306,-0.21102,0.94864,-1.032,-1.3155,1.4771,1.0488,-0.77138,0.58131,0.43542,0.86847,0.55523 5.0302,-0.68918,-0.46289,-2.9612,3.7381,0.67989,1.8303,-0.74009,-1.1353,-0.63741,0.85592,2.1134,-0.90196,-0.38883,-0.34863 -2.7565,-2.2494,-0.011767,-0.65966,1.7192,-1.1916,-0.86629,-2.3057,1.3568,0.30783,-0.62463,1.2403,-0.25159,0.8569,0.043578 0.7048,2.6397,-0.40191,-1.6762,0.21186,0.46527,-2.0307,0.60983,-1.6149,0.87865,2.0269,-0.79795,0.56239,-0.16356,-0.18145 0.7616,-3.5732,2.8091,-1.2025,1.22,1.6514,0.97309,-1.8555,0.15079,1.4708,-1.4109,-0.60045,-0.66699,1.5784,-1.0583 2.6769,1.9924,-0.27858,-0.57067,2.613,-1.3068,-1.5039,-0.48076,-1.8157,2.223,1.2809,-1.3816,-0.86189,-1.1665,0.47248 -1.7764,-1.5943,3.3513,-0.42245,1.3125,0.096826,0.29903,-0.91591,0.88755,0.93341,0.89529,-0.30095,-0.24815,0.66326,-0.47709 -3.8913,-1.4081,-0.1919,-1.7614,1.596,-1.0241,-0.6465,-0.023094,1.1339,-0.75878,-0.10473,-0.30402,-1.1749,1.167,-0.098136 -1.5235,0.12916,1.1957,0.64055,-0.70396,0.77235,-0.10999,1.881,2.1147,-0.085912,1.249,-0.52685,0.59445,1.5599,0.39865 1.747,1.5773,-1.1787,0.54243,0.89328,0.19773,-0.80341,-1.646,1.5411,1.3348,0.39379,-0.99658,-0.30973,-0.50282,0.39308 0.69023,1.5377,2.0236,-1.9484,1.1503,0.81714,-1.2231,0.53278,0.75403,-1.1283,0.94382,0.53533,-1.1745,1.4051,0.61547 -1.7955,-3.0097,2.3299,0.89524,2.2068,0.41055,0.35488,-0.25823,1.3503,-0.43158,0.62471,-0.87893,-0.14949,1.4087,-0.11825 -2.6861,-0.46993,2.2514,-1.1187,-0.10483,0.6085,0.012403,0.21972,1.0753,-0.68179,1.7858,0.0019847,-0.02501,2.0001,-0.64774 -1.3341,-3.6946,0.97796,0.4281,1.3436,0.77866,-0.15386,0.16511,1.5682,-0.17594,-1.2119,-1.1582,1.2984,0.54793,-0.54024 1.7657,1.6047,2.5988,0.7843,-0.51196,-0.27827,-0.74345,-1.4115,0.13449,0.36868,-0.58052,1.343,-1.8348,-0.43817,-0.26827 -3.4486,-2.1602,-0.18458,-1.5867,0.68407,-0.2502,-1.5814,-0.4513,1.4966,-0.59894,-0.29525,-0.036454,0.064618,1.1753,0.32801 1.1374,1.8954,-0.73862,0.21642,0.85977,0.58493,-0.30644,-1.532,0.74844,1.2439,0.28403,-0.44291,-0.17309,0.94522,0.33243 -3.1029,0.4768,-2.6493,-0.79134,-0.26361,0.74313,0.6819,-0.46345,0.8849,-0.45214,0.36307,0.34792,0.42419,-0.26231,-1.2519 0.22685,2.0531,2.647,-1.5513,-1.3281,-0.050297,0.86253,-0.28379,-1.4752,0.9181,0.56024,-0.9727,-1.2695,1.262,0.013758 3.9832,-0.38761,0.17763,-3.0004,3.2166,-1.5221,0.83921,1.5856,-2.3769,1.5235,1.9289,-0.23513,-1.7407,-1.4295,1.1828 -0.97131,-4.3338,1.4013,-1.3077,1.5672,0.4465,-1.3918,-0.66013,1.0206,0.72188,-2.5925,0.88317,0.90514,0.97134,-0.16196 3.6183,-1.6323,-0.81742,-1.7563,1.4694,3.3781,1.3247,-1.3879,-0.33983,-2.1392,0.67546,-0.1671,-0.39574,0.81031,-0.16531 -2.7679,-1.5353,1.8972,-2.9177,0.73698,1.4487,-1.4663,-0.46992,0.20903,-0.1445,-0.34512,-0.6231,1.267,1.5306,0.24138 0.97674,1.8618,0.045387,2.2972,0.27195,1.8797,-0.63135,-1.8244,-0.25603,-0.23435,-0.50771,0.18981,-0.028104,0.025719,0.60879 -2.9793,-1.5445,-0.54454,-0.93594,0.044137,0.37644,-0.87801,-1.6583,1.6984,0.05789,0.15764,0.50158,-0.017341,0.92806,-0.19106 -1.6326,2.6844,-0.88695,0.64291,-0.59495,1.3938,-0.61622,1.5167,0.088353,-1.1504,0.073487,0.27555,0.85914,-0.99446,0.62678 -1.1169,-1.32,1.5469,-2.4789,-0.97187,1.0588,0.25735,-0.90677,1.7918,-0.14504,-1.1316,-0.76101,-0.013647,0.10029,-0.22569 -2.9155,-1.3551,-0.042031,-0.84597,-0.7088,0.73394,-0.36251,-0.51794,1.6928,-0.024881,0.60119,-0.46134,0.80383,0.83849,-0.0588 -2.2676,-1.3239,0.53764,0.65896,-0.062813,0.98784,0.13518,-0.50352,2.266,1.0867,0.23637,-0.31818,0.22534,0.60944,0.43057 -2.3524,-1.2886,0.68536,-2.1427,-0.40366,1.6477,-0.86523,-1.3219,0.81936,0.20091,0.049055,-0.32768,-0.03649,1.1991,-0.0092381 0.68022,-2.3138,3.6723,1.0405,1.6516,1.5811,1.6214,0.57832,1.2297,-0.40605,-1.0962,-0.26677,0.19183,-0.87758,1.0702 -0.11861,-2.674,0.90621,-2.0014,-0.025144,1.3508,0.50713,0.85064,1.5319,1.0294,-2.4365,-0.57523,0.59955,1.225,-1.2991 4.7858,0.68035,0.13185,-0.88524,2.1412,0.074614,0.78458,-1.7285,1.1258,-0.72064,-0.30265,0.25181,-1.6048,-0.38622,-1.7174 0.096317,-2.9848,2.4546,1.0172,1.706,2.8303,2.0395,-0.13753,-0.46594,-0.32868,-0.87144,-0.66823,2.0293,0.78058,-0.22469 3.6063,-1.9623,-1.5277,-0.024632,1.9991,0.28983,2.7277,1.5783,-1.1247,1.019,0.5579,0.69081,-1.5604,-1.0651,0.58339 -1.6782,4.0026,-0.52683,0.23316,0.59081,-0.056557,-0.83047,1.8419,-1.3803,-1.2099,-0.71325,-0.069429,1.0703,-0.75881,0.23714 0.33202,3.4039,2.0674,-0.61314,2.1145,-1.5624,-0.504,0.36287,-0.54575,0.60719,-1.5128,-0.08084,0.23953,-1.2259,-0.90984 1.8333,1.0113,3.4115,-0.52962,1.0949,-0.29524,-1.5626,0.33586,0.86423,-0.19038,-0.53311,0.65033,0.66429,0.81255,-0.74227 -1.4204,-1.4088,2.2374,0.73352,1.5717,-0.004207,1.6836,-1.7715,1.6666,0.34197,0.077368,-0.27471,0.60451,-0.56599,-0.20303 -3.5274,-2.2961,-0.55914,0.26663,2.8127,-0.92696,0.056866,-1.5121,0.50831,-0.89746,0.32302,0.64239,-1.158,0.26094,-0.076883 2.7198,1.1491,-2.3737,-1.1841,-0.068395,0.3707,0.46096,-0.1942,1.9346,1.2849,0.75686,-0.69751,-1.2354,-0.53218,0.43123 -2.4325,0.39525,-3.1171,0.3037,-0.5809,1.2462,1.2586,-0.70374,0.29307,-0.77354,-0.77044,-0.46279,0.35821,0.3242,-0.90241 -2.9403,0.5445,-2.6317,-0.82254,-0.08462,0.50428,0.034446,-1.388,-1.4239,0.11039,-0.082377,1.5048,0.78468,1.1369,-0.7566 -1.7439,-4.1713,0.59167,0.52602,1.6456,0.6279,-0.34672,-0.61233,1.07,1.0028,-1.5589,-0.92605,1.0228,0.74749,-0.25239 5.2283,-2.704,-0.84538,-1.3592,1.523,1.1694,1.8046,-0.68558,0.13052,-0.068832,0.82139,1.7944,-2.1209,0.41699,-0.47138 0.12356,4.1061,-0.33371,-0.092354,-0.8319,1.4714,0.010218,0.055421,-1.1585,-0.87251,-1.3741,0.0093633,-0.030728,-0.58791,0.55667 -2.1561,1.0527,0.65595,-0.31855,-1.3362,-0.13369,1.3068,0.18996,1.4005,-0.029624,-0.28429,-0.22498,1.2998,-1.2275,1.0508 1.3861,3.6203,1.2664,-1.2317,1.6008,-1.3339,-1.3386,0.58741,-0.48413,0.52249,-1.0926,-0.35494,0.67997,-2.3244,-0.99948 0.025994,3.5852,-0.83911,-1.0864,-0.0083599,0.31006,-0.23419,-0.18767,-0.81147,0.55956,2.1163,0.98101,0.5704,1.2016,-0.87161 -1.5012,2.8319,-1.27,0.4047,-1.1173,1.9232,2.2611,0.1877,-1.8379,0.57174,-0.88362,-0.49496,-1.1114,0.19069,0.52046 0.62031,3.7439,0.22583,-1.2716,0.082276,0.87527,-1.9608,-1.2419,-0.98969,-0.81355,0.72899,-0.18842,0.50411,-0.46458,-0.84632 -2.38,-0.13155,1.5654,-0.56564,-1.1011,0.98047,0.27076,0.12603,2.1374,-0.21136,0.90338,-0.40446,0.60949,-0.05816,0.72656 -1.7741,-0.41937,1.1263,-1.9609,-0.78818,0.53754,0.80133,-2.1206,1.6001,0.75651,-0.56594,-0.48262,-0.10786,-0.7528,-0.17567 0.28297,2.6976,-1.2276,0.060623,-0.3246,0.037414,-1.7963,-0.7844,0.37522,1.417,0.90471,0.75774,0.13186,0.85781,-1.267 2.6094,-0.93398,-2.0792,-0.72544,0.41309,2.4366,2.062,1.1978,0.94074,1.5929,-0.61291,2.9604,-0.52988,0.21747,-1.0235 -3.0662,1.1788,0.031368,-0.67525,-0.1966,-0.4372,1.7275,-0.39673,0.65411,0.42327,-0.56804,0.10722,1.8307,0.1725,0.24363 4.976,-1.7176,-0.73194,-0.54238,2.5691,2.3304,1.2328,-0.43752,0.34854,-1.0778,0.75026,-0.21254,-1.7852,0.69491,-0.60701 -0.49477,0.40002,1.1072,1.3295,-0.61352,-0.072365,0.75238,0.67218,2.0987,-0.35185,-1.2794,0.92543,0.81606,-1.281,0.46582 -2.7858,2.0834,-0.96286,-0.57581,-0.3311,1.7754,2.0171,-0.7579,-1.1493,1.0216,-0.26966,-0.026464,0.98887,0.51001,-0.048188 0.13047,4.1616,0.63013,-0.84843,0.1068,0.73554,-1.4998,-0.56111,-1.9418,-1.4237,0.21709,0.12719,-0.15031,-0.82725,-0.50567 1.8465,1.5577,-0.56754,0.88767,1.5965,0.00029302,-0.87918,-0.54537,1.6551,0.67171,-1.1948,-0.82557,0.51011,-2.0856,-0.73516 0.41085,-0.36977,3.8483,0.14444,0.12311,-0.38904,-0.16725,0.92163,1.626,-1.718,-0.32533,1.125,1.4181,-0.64665,-0.027968 -0.96113,2.8195,1.0226,-0.076462,-1.353,0.27561,1.05,-0.10371,0.54381,0.64832,-1.1553,1.3147,-0.22864,-0.81566,0.93634 -0.63137,1.0551,1.8762,-0.33616,-2.3712,0.95921,0.36267,-0.30026,0.6117,0.1714,-0.95986,0.77906,-0.14896,0.068061,0.57937 1.7962,2.3266,-1.9304,-0.66924,-0.41372,0.10983,-0.45219,-1.0882,1.158,1.8636,-0.082432,-0.7071,-0.02475,-0.11033,-0.096695 -3.2086,2.4244,1.4108,-0.60719,-0.12631,1.1005,1.0235,0.53519,-0.26721,1.4963,0.54717,0.50426,0.11932,0.79785,-0.16914 -2.626,2.7451,0.074444,-0.69495,-0.51062,1.3498,0.93835,-0.50456,-2.1316,0.1531,0.55828,0.27573,0.1926,0.75877,-0.3209 0.78873,3.2631,0.28964,-0.24212,-1.7092,-0.033243,-0.73441,-0.94808,-0.35131,-0.50019,-0.82936,0.08362,-1.3319,0.63132,-0.10458 -2.1824,1.8085,-1.887,-0.13686,-1.0739,2.4404,1.4556,-0.050917,-0.49895,0.8115,0.13639,-0.4454,0.10684,-0.42528,-0.50819 -1.2922,3.2968,-1.6193,0.39695,0.71715,-0.21473,-1.4727,1.9223,0.28347,0.15019,-0.62833,0.52412,0.095393,-0.0006279,-1.4912 -1.7494,-0.086949,3.1296,0.83422,1.0074,-0.60714,1.55,-1.2063,1.3557,1.0137,0.16839,-0.064831,-0.18189,0.12172,0.82649 0.1797,1.7949,1.033,2.0162,2.1302,-0.97318,-1.5217,-0.20407,1.0478,-0.3834,-0.06343,0.010913,-0.15983,0.019481,0.62885 -2.7565,0.57338,-2.757,-0.7857,0.35767,0.058605,-0.26856,-0.87353,0.46892,0.5862,0.026136,1.2512,0.073831,-0.31851,-0.82063 -1.5021,-0.99298,-0.96775,-0.83361,1.2159,2.7285,0.19329,0.10962,0.31183,-0.75369,-0.95401,-0.24731,0.5698,0.88691,0.28929 -1.5091,1.8638,1.0652,2.0065,1.769,-1.7155,-0.49605,1.4492,0.54445,-0.81471,-0.69983,0.99633,-0.9601,-0.31685,0.70897 2.1039,1.9732,-0.60508,-0.65539,0.92682,-1.2868,-1.7064,-0.66412,-1.498,2.184,1.198,-1.214,-0.52761,-0.58437,0.47471 -1.8754,0.64851,3.0202,1.5368,2.7876,-1.8254,0.90163,0.70182,-0.15976,-0.6578,-0.21,0.08563,-0.79037,-0.38702,1.2522 -0.055525,-0.95695,3.507,1.7583,3.4573,-0.23935,0.429,0.48867,-0.48564,-1.2849,-0.45949,0.065515,-0.53728,0.49661,1.8322 -1.4784,0.30192,0.17351,-0.52786,-0.62732,2.7628,1.1936,-1.5623,-0.5346,-0.77029,0.70226,-1.0406,-0.19248,1.0729,-0.13968 -1.731,-2.3299,1.6375,-0.024189,0.72918,0.6819,0.65394,-2.3099,1.5376,0.63035,-0.87702,-0.80524,-0.33665,-1.0727,-0.0042115 1.7787,1.5884,3.3714,0.94573,3.2211,-0.34679,-0.35171,-0.45097,-0.15549,0.087213,-0.96867,0.47747,-0.44297,-0.54303,0.032828 3.0987,0.70479,2.6641,-0.44616,3.457,-1.283,-0.6684,-0.00023727,0.69351,-0.46407,-0.83124,1.2867,0.75684,-0.12341,-0.62855 1.8374,0.45374,0.30002,-0.69166,2.1571,-1.5936,-1.5286,2.4272,-0.50561,-2.6593,0.72883,-0.60099,2.3551,-1.5508,-0.092002 1.2006,1.7307,-1.355,-0.2723,2.2412,-0.15962,-0.57237,0.32881,-0.17654,1.7651,2.4306,-0.085266,0.78621,-1.5149,0.9169 -2.8836,1.4705,0.38244,1.806,1.2163,0.29341,1.1386,1.6099,0.67547,0.51709,-0.043224,-0.27232,-1.3924,0.10646,0.51353 -0.75834,0.22639,2.6035,0.77181,-0.52066,1.3314,0.60212,-1.1545,1.0192,0.90056,1.152,0.074544,-1.1455,1.4684,0.42757 -1.0755,0.26013,2.7142,1.5852,1.3872,0.28758,1.3394,-1.2895,-0.067311,0.72548,-0.010903,0.51049,-0.87029,-1.8451,0.91528 -2.5693,-0.83235,3.1915,0.14201,1.7508,-1.0408,1.0737,0.2129,1.1242,-0.32349,0.69444,-0.061801,-0.26644,-0.036675,0.13642 -2.0829,0.29371,-0.57343,1.4781,-0.52999,0.64891,1.1023,0.25996,2.1486,0.35621,0.98617,-0.2634,-0.67663,0.36576,-0.16357 2.6193,0.74141,0.17012,-2.3419,0.69832,-1.3876,-1.4787,0.89001,1.5023,-0.86519,0.16907,0.049799,1.2961,-1.9269,-0.72742 -3.4541,-0.038003,-2.3996,-0.98999,0.24451,-0.28159,-0.88817,-1.2596,-1.122,0.24267,0.36653,1.0239,0.026106,0.4651,-0.81388 -2.7308,0.58277,-2.6654,-0.29097,-0.89362,0.11901,1.0759,1.991,0.89054,-0.0001645,0.022762,-0.96179,-0.016373,0.19571,0.054777 3.7382,-2.3031,0.44803,-1.6669,2.417,1.0697,1.921,0.61239,-0.97164,1.7692,0.16311,3.7784,0.074633,-0.74105,-0.018792 -3.9471,0.51411,-1.2413,-1.3469,-0.037038,0.35713,1.5457,0.98913,0.61599,-1.0965,-0.15117,-1.7105,-0.35196,0.1836,-0.63012 1.6229,2.0102,0.69932,1.553,2.0845,0.54031,-1.5022,-2.1294,-0.26421,0.17346,0.23631,-0.74345,-0.36828,-0.51667,0.18487 -2.8888,-0.53434,-3.0586,-0.48978,0.54458,0.15906,-1.0512,-1.0827,-0.64197,-1.7509,-0.64302,1.5297,-0.048249,-0.40692,0.92332 -3.5457,-0.043034,-1.9639,-0.86833,0.36434,-0.80624,0.034053,-0.75811,0.81148,0.55212,0.056159,0.60718,0.22578,0.79152,-0.9598 -1.6858,-0.036153,2.6509,-0.70973,-0.60657,-0.5869,0.9907,0.4722,1.7664,-0.38821,0.15693,-0.4501,1.1288,-1.612,0.88798 -3.1852,0.1759,0.36678,-0.50791,-0.35994,0.0061858,0.75758,0.68301,1.3115,-0.97386,1.3318,-0.82901,-0.027199,0.16968,-0.40604 1.0405,3.5706,0.75352,-0.87319,0.024112,-0.017198,-1.3866,0.3201,0.15302,0.42222,-1.7131,-0.14099,0.82623,-1.5099,-0.62407 2.8338,-1.5247,-1.115,-0.60052,0.8166,0.89922,1.8598,0.61647,-0.37195,1.3314,-0.71844,2.9859,0.1466,-1.9086,-1.1399 -4.4848,0.059403,-0.76127,-1.2712,0.99957,0.13059,1.0929,-1.334,-0.63815,-0.87237,0.75506,-0.12271,0.19533,0.32765,-0.82126 -0.35863,0.97315,1.5232,-1.0012,-0.17568,0.87514,1.0231,0.46462,0.98075,-1.3676,0.54711,-0.0066175,2.3767,-1.3621,0.35673 0.068799,3.1958,0.97038,0.42695,0.49505,-0.35087,-1.4132,-1.0122,0.49399,0.20613,-0.44162,0.83319,-0.47338,0.22649,-0.12223 -3.9296,-0.06645,-2.7703,-1.3563,3.1189,-0.28955,-0.11022,-0.83105,-1.0672,-0.70586,-1.3353,1.4307,-0.61803,0.2684,-0.10547 -2.7823,-3.4074,0.36642,0.77259,1.6696,-0.49016,-0.38306,-1.0368,1.157,-0.45383,-0.56177,-1.2232,-0.29741,0.052001,0.53405 0.24399,1.0853,1.2758,1.4332,2.8665,0.026895,-0.93728,-1.6315,-0.2072,-1.88,-0.58665,-0.18107,1.105,-0.31216,0.65654 -2.8865,-1.7226,1.7987,-1.738,0.61137,-0.32442,-1.018,-0.23559,1.0981,0.44947,-0.56262,-1.0727,1.0208,0.45984,0.29521 -2.0045,-2.1984,-0.013406,-0.57419,1.5546,-1.8929,-0.58944,-0.25975,0.3533,0.60197,-1.3236,-0.78115,-0.59395,-1.5771,0.90635 1.2694,2.4094,2.3627,-1.6531,0.14465,0.80776,-1.3769,0.59418,-0.47144,-0.79594,0.84083,1.2824,1.3023,1.2329,0.18642 -2.5221,-2.6593,0.31888,-1.3768,0.18026,-0.80044,-1.6543,0.9029,1.1581,-0.083892,-0.76052,-1.4065,0.52356,0.71435,0.66663 4.5822,-0.67299,-1.4607,-0.61377,0.86584,0.73743,1.4848,-0.14179,0.2162,2.6837,0.69429,-0.57682,-1.4995,0.22262,1.6714 1.0842,3.0923,0.43099,0.66984,1.5739,-1.0833,-1.7025,-1.1395,-0.32804,1.2633,0.20288,0.53719,-1.1034,0.34674,-0.5487 -0.88916,3.1812,-0.75422,0.42341,0.40389,0.20642,-1.4576,0.83319,-0.0014147,-1.3207,-0.54302,-0.45368,2.0902,0.5643,0.0017098 0.64289,1.2687,-0.24205,0.72259,0.38951,0.68396,-0.92483,0.92228,1.2021,-0.8142,-0.063362,1.026,1.7749,-0.91436,0.25781 -2.938,1.8392,-0.5615,0.66711,-0.55698,0.25276,1.0159,1.9876,-0.27458,-0.81798,-0.093249,-0.45653,0.74319,-0.62605,1.6395 3.3236,1.4832,-0.028632,-0.33291,1.4567,-0.19782,0.010115,-1.4474,0.099264,0.56239,-1.1138,-0.096021,-0.56426,-0.5466,-1.8534 -1.9681,1.2212,0.95619,0.39336,-1.1485,0.32005,0.078414,1.3167,1.6488,-1.0025,0.32245,0.10375,1.1238,-0.50648,1.6978 -2.538,2.8238,-1.3562,0.45035,-0.49156,1.7646,0.71417,1.7947,-0.8392,-0.053515,-0.079608,1.1161,0.18216,-1.0909,-0.031098 0.36486,1.927,0.17323,2.5426,-0.47244,1.9532,-0.18402,-0.82437,-0.64113,0.50515,-0.26774,0.027939,-0.92258,-0.26146,1.1928 -1.0452,0.27085,1.7814,0.48818,-0.35513,0.31392,0.84426,0.25215,1.9649,0.032561,0.21954,0.60905,0.9958,-1.9455,0.5403 -3.1541,1.1779,-1.5498,-0.1107,-0.4272,1.9304,1.1901,0.32301,0.75706,0.43391,0.83955,-0.093243,0.63776,0.59678,-1.037 1.5959,3.7019,-0.62967,-0.86172,-0.50309,-0.82072,-1.2255,-0.52158,0.057193,0.64048,-0.8192,-0.79996,-0.8162,0.26885,-0.54188 -1.3292,1.8128,-2.5128,1.8336,0.28782,1.1102,0.42457,1.2286,0.49913,0.24117,-0.75383,0.77739,-0.60849,-0.054574,0.13701 3.0187,1.616,1.7524,-0.37805,1.9107,-0.24534,-1.6351,-0.067325,1.4793,0.20562,0.39719,1.1206,1.3227,-0.60308,-0.75706 -2.5712,2.5813,-0.98354,0.62372,0.58011,1.7199,0.89183,1.3972,-0.010891,-1.2,-0.97511,-0.11025,0.20388,-0.040522,-0.45397 0.85892,3.0019,0.55016,-1.2555,0.79364,0.14623,-2.395,-0.54621,0.68469,-0.58365,1.0868,0.60589,1.474,0.17509,-0.40749 -2.5629,-0.24156,-0.41833,0.69452,-0.40945,1.6664,0.4655,-0.31674,0.94303,-0.15299,0.98849,-0.37782,-0.74524,2.1464,-1.2558 4.7419,-2.1117,-1.689,-0.40781,0.86925,2.5736,0.8319,-0.66068,-0.54278,-0.43292,-0.080728,-1.669,-0.76751,1.06,0.55708 3.2414,2.2593,1.2245,-1.1562,1.4218,-0.094519,-0.94448,-0.5934,0.34765,-0.31904,-0.051627,1.0061,1.7784,-1.1274,-1.8223 -3.3957,-0.062584,2.842,-1.4506,0.50577,-0.93321,0.057836,-0.23908,-0.94407,-0.41086,0.30297,0.20954,-0.25955,-0.92604,-0.34287 5.1396,0.36572,-0.21068,-2.877,0.96773,1.2374,-0.33655,1.2033,0.49208,0.96877,0.023918,1.0363,-0.51867,0.23509,-1.6393 3.4901,1.3887,2.3122,-0.53325,1.6763,0.56284,-1.909,0.50236,1.2637,1.1988,-0.13841,0.57509,-0.33748,0.032928,-0.084225 -0.66883,2.9806,1.6551,0.99259,-0.41805,0.86563,-0.8754,-0.14005,0.71615,0.61806,-0.4002,1.5698,-0.11824,1.26,0.28867 0.017347,2.7644,2.5958,-0.10248,-0.33153,-0.17905,-1.4551,-0.29255,-0.074843,-0.41915,0.74315,1.1169,0.37412,-0.12427,-0.50713 -1.4343,3.2852,3.2977,-1.3465,0.003397,-0.026677,0.55692,-0.31306,-1.6947,0.033978,0.66284,0.056332,-1.0714,-0.69068,0.44362 -2.8716,-0.45986,-3.1215,-1.1216,0.76826,0.82138,-0.037959,-0.74012,0.86291,-1.3431,-1.0881,0.16894,-0.50279,-0.95651,-0.20243 -0.98434,1.6796,1.3308,-1.7355,1.8051,-2.0548,1.0279,-0.9803,-2.0195,0.34722,-0.37734,1.1834,-0.62143,0.025102,0.39577 -3.6095,0.56127,-0.60147,-1.6812,0.59661,0.74889,1.4334,-0.85269,0.29695,0.25824,1.0186,0.73933,-0.48684,-1.0603,-0.8852 -0.37564,2.1756,0.15405,1.745,1.0382,1.1414,-0.15128,-1.5372,-1.1094,-0.37468,-0.50795,0.80305,0.042384,-1.1543,0.53667 0.59648,0.45719,1.9696,-1.108,0.65054,0.44382,0.41401,-0.11386,0.78001,1.9388,0.471,0.43611,-0.56233,0.50693,0.15381 2.1935,0.49258,-0.70959,0.069747,-0.033781,-0.84182,-0.073766,0.062137,1.2976,-0.88191,-0.69339,0.50065,-1.0718,-1.7894,-2.2064 3.1983,1.8343,-0.53901,-0.19661,1.2414,0.16193,0.52567,-1.996,-0.87403,0.25149,-1.1304,-1.7309,-1.7866,-1.5204,-0.4755 1.4473,3.6825,1.1334,-1.1892,-0.85907,-0.039156,-0.48631,-0.046308,-0.41073,-0.65635,-0.63051,0.47503,-0.59159,0.55072,-0.53766 -1.195,4.0243,1.55,-0.80316,-0.19845,0.26416,-0.22531,0.27065,-0.99592,-0.54728,-0.34699,1.1551,-0.38333,-0.99766,0.60406 3.5697,1.5445,1.1642,-1.0173,0.29977,-0.18221,-1.4536,0.37959,1.2095,0.16922,-0.79086,-0.086657,-2.0588,-0.58947,0.36686 2.1544,0.86484,-1.2915,-1.0398,0.72712,0.46867,0.14718,-0.69312,1.2883,1.8016,1.2614,-0.025303,0.010918,0.25187,1.5766 4.3292,-0.94969,-1.6847,-0.91101,2.3427,1.9072,2.9756,0.53446,-0.41108,0.52268,0.42503,-0.1947,-1.2692,-0.53436,1.254 0.61563,2.2217,1.634,0.25298,-0.1846,0.0044616,0.86636,0.12888,1.8455,0.012988,-1.5438,1.4629,-1.0342,-1.4289,0.023473 -3.3568,1.4726,0.95256,0.06887,-0.15987,-0.91152,1.0658,1.159,0.8051,-0.058736,0.71319,-0.0050964,-0.072468,-0.77724,0.81931 1.5107,1.3077,1.9719,1.5788,0.38366,0.10746,-0.42255,-0.37206,0.5669,0.51486,-1.0427,0.92613,-1.0062,-1.8369,0.53808 -2.1973,0.5084,1.6846,0.77175,0.70573,0.023325,0.82274,0.2447,1.223,0.86287,1.1697,0.78633,-1.6698,-1.0249,0.99624 -1.7845,-1.9095,1.9363,-0.34949,0.85711,-0.2452,0.48808,0.36091,0.67497,1.1443,0.44512,-1.7592,-0.53245,-0.34891,1.3141 -1.5777,3.7773,-0.14513,0.55437,-0.48529,0.94792,-0.94509,1.0172,-1.3365,-0.024517,0.31016,1.3252,0.089012,-0.15988,-1.1958 2.4842,3.1808,1.0292,-1.2754,0.35411,-1.0664,-1.2575,0.0020754,0.47264,0.76286,-1.3435,-0.10951,-0.77765,-1.1644,-1.1101 -2.6973,1.8774,0.52015,-0.73865,-0.1117,0.02316,1.0655,-0.024711,0.56593,1.759,0.44814,0.61282,-0.12556,-1.4658,0.50666 3.6492,-1.9647,-1.847,-1.3283,0.21234,2.6026,3.118,-0.412,-0.99948,-2.0784,0.55025,1.301,-0.4905,1.1476,-0.5073 0.19617,0.027116,1.6008,1.8972,0.58947,-2.2141,-0.25934,2.0857,0.86563,-1.3686,-1.0087,0.80535,-0.13672,-1.6721,0.29552 3.524,0.22319,-2.791,-3.0708,-1.2813,0.61557,1.7911,1.2826,-0.72964,0.82781,1.5459,1.364,-0.37842,-0.33999,-0.38283 -3.8541,-0.88147,1.4152,-1.6607,0.21813,1.2057,0.30315,-0.99312,0.30335,-1.4487,0.68291,-0.61047,0.48208,0.47951,-0.36491 -2.595,-1.7075,0.31918,-2.3446,-0.24743,1.9421,-0.92283,-1.8415,0.042229,-0.35506,-1.0027,-0.56771,0.50423,0.75917,0.17012 -0.95829,-0.43401,-3.6826,0.43423,-0.86349,1.8532,-0.5484,-0.34264,-0.38592,-1.6197,-0.80151,0.77768,-0.057263,0.25305,1.1483 -4.5753,0.0034049,-1.1805,-1.1075,2.218,-2.3209,1.1368,0.59728,-0.1602,0.56703,-0.50619,-0.94081,-0.5607,0.33812,-0.23391 2.2686,-1.1675,-3.0989,0.64172,-0.35801,2.927,1.659,1.3164,-0.11948,0.29403,-0.11917,0.56144,-0.23972,-0.18284,-0.10642 -3.5493,-0.45047,-0.52759,-1.3994,0.44191,1.0778,0.23106,-0.076939,0.73528,-1.5896,0.34801,-1.3511,0.82688,-0.13588,-0.22249 -2.8243,-3.2972,0.72761,-0.49393,2.7113,-1.5374,-0.42309,1.0222,-0.25419,-1.2468,-0.73646,-1.1978,-1.0281,0.9732,0.22729 -3.0717,-2.2313,1.6594,-0.91695,1.2929,-0.12866,-0.27478,-1.7735,1.4387,0.91235,0.0035512,0.43063,-0.70475,0.31905,-0.59383 -2.0573,-3.4383,1.3351,-1.811,0.90216,-0.67956,-1.5978,-0.90319,1.174,0.34848,-2.0042,0.49738,0.67456,0.16083,0.31065 -3.0054,-0.51963,-3.4165,-0.74112,2.5117,-0.61347,-0.19933,-0.5322,-0.54147,-2.0951,-2.2511,1.7752,-0.60781,-0.21922,0.98698 -2.9659,-1.6448,-1.8064,-1.2386,1.2941,1.8067,-1.8531,-1.8113,-1.3837,-1.3575,-0.98206,2.1905,-0.71181,0.1693,0.18131 -0.933,-1.9226,1.5836,-1.7058,-0.60563,1.5576,-0.09249,-0.69668,1.4753,1.4094,-1.5602,-0.98299,0.57585,1.5275,-0.76197 -2.2562,-2.513,1.093,0.16659,0.42211,-0.17164,-0.31929,0.42678,1.4044,1.3471,-0.32814,-1.4276,0.63436,1.4466,-0.24434 1.346,3.3835,0.043414,0.49805,-0.19828,0.041257,-0.63486,-0.088063,0.11248,1.6683,-2.1294,0.19585,-1.1149,-0.62342,-0.90768 -3.6716,-1.8583,-0.12354,-1.8405,0.66684,-2.0067,-1.0435,-0.68948,0.53094,-0.35418,-0.70332,-0.37865,0.2468,0.0416,0.71069 5.1426,-1.969,-0.10556,-0.89791,1.9762,1.3401,2.0124,-1.0922,0.04908,-0.70462,0.62006,-0.45072,-1.5242,0.64167,0.86916 3.9507,-0.24795,-1.4891,-2.0631,0.13846,1.1046,1.3262,-0.12342,1.5041,1.8936,0.99808,1.023,-1.7852,0.23734,0.48268 -1.4831,-3.5861,2.8981,-0.2609,1.4397,0.62196,0.031392,-0.68527,1.4569,0.64801,-1.6443,-1.2293,0.21645,0.46755,0.28117 -2.1776,-0.57567,2.6781,-1.9388,0.93973,-0.21095,0.94504,-2.0584,0.96185,1.373,-0.28361,0.09415,-0.16943,-0.72186,-1.1962 4.1614,-1.1892,-0.80021,-1.1374,2.1563,1.9795,1.7374,-1.1503,1.3982,-0.34294,1.2231,1.6156,-0.75632,0.66595,-0.45533 1.3785,0.5553,-1.1062,-3.523,-0.018679,0.49326,0.29632,1.1915,0.29889,1.5319,0.8271,1.59,0.56705,-1.8496,1.6748 0.68582,-1.0569,3.1451,-2.7349,-0.086742,1.5833,0.60657,0.6848,-0.86567,-0.11054,-1.5066,0.18269,-2.2582,2.3805,0.18521 -1.6265,1.0281,0.77297,0.46398,-0.77593,0.19069,1.386,-1.41,1.6755,0.9827,0.18367,1.1656,0.37913,-0.60265,0.041563 3.991,-0.99056,-0.56603,-0.47397,1.2451,1.7563,-0.37063,-0.77426,1.2749,-0.43404,-0.47192,0.23502,-0.45053,-0.71335,-1.1857 -2.0832,1.0078,0.37793,0.40593,-0.64308,0.45625,0.67647,-0.27269,1.8206,0.40211,1.2192,0.17171,0.90816,-0.0093175,-0.32998 -0.64665,-2.1968,2.9051,-0.034689,0.96504,-0.012751,1.2443,0.12875,1.6263,-0.54067,-0.50145,-0.26527,1.2875,-1.5399,-0.71929 -3.7868,0.96415,-0.3651,-1.2055,1.7347,0.92696,0.23195,0.30276,-0.34185,-1.7488,0.18866,-1.1368,0.26547,0.2267,-0.05231 -2.2721,2.3512,-0.43735,1.0604,-0.2114,0.71883,0.46209,1.8426,0.88124,1.5028,-0.12945,0.80516,0.20927,-0.30142,0.52701 -1.6986,-4.1807,0.90422,-0.82517,1.3846,-0.58336,-1.5213,-1.2895,0.91234,0.67173,-2.7802,0.46,0.20025,-0.36463,0.078846 3.9745,-0.51705,-1.4339,-3.0735,0.90602,-0.033684,2.4805,0.077755,1.4882,0.96245,1.2887,2.7602,-1.5995,0.83329,-0.50976 4.032,0.3642,-1.3999,-1.1716,1.0461,1.1991,0.066931,-0.42991,2.1853,0.3438,0.23242,-0.25374,-0.87491,-0.62759,-1.0362 -3.7407,-2.0008,-0.45822,-1.4053,0.75729,-2.4841,-0.99432,-0.37981,0.71135,-0.80297,-0.77105,-0.096097,-0.46847,0.17568,0.41213 0.86742,-1.2583,-3.0059,1.6014,-0.63185,1.7563,0.76914,1.0638,-0.45663,-0.30478,-0.33037,0.35223,1.2655,-0.52103,-0.086002 -2.7193,2.1745,-1.2951,0.86281,-0.69068,2.5151,1.2465,1.3694,-1.6866,0.32596,0.38747,0.25087,-0.43545,-0.6009,-0.4068 -3.3852,1.5553,-0.89756,0.070473,1.1985,-0.0097418,1.7223,1.1448,0.90078,1.7006,0.11352,0.61206,-0.19659,0.48822,-0.32254 3.5931,-2.758,-0.33972,-1.8625,0.45233,-0.43673,1.3844,2.4421,-0.71166,1.5285,0.48312,0.87554,-0.71541,-0.72617,1.2923 -0.24326,0.38727,4.384,-0.39352,0.24387,0.32129,-0.27785,-0.066595,0.51215,0.13973,-0.61779,0.95241,-0.3281,0.22006,0.45255 -1.9669,-1.4931,1.8139,0.76477,1.4485,-0.7696,1.3358,-1.3106,2.2672,0.13657,0.072564,-0.57866,0.31217,-0.19313,-0.053334 0.5528,2.5001,-1.7802,-0.33522,0.86638,0.94441,-1.7202,0.086412,0.79078,2.0469,0.97141,0.16576,0.55545,-0.37166,-0.562 -3.1723,-2.0448,0.0018359,-0.57122,1.4952,-2.9265,0.54093,-0.37966,0.80528,-0.33682,-1.1265,-0.49913,0.67011,-0.63424,-0.64168 -3.5046,-1.2246,-0.41722,-0.58072,2.2461,-2.5513,0.28395,-0.34552,0.99872,0.080189,-0.70272,-0.58021,-0.60665,0.2077,-0.17579 -2.4159,-0.3964,1.9522,-0.049255,1.6354,-1.2334,1.6678,-1.5351,1.6377,0.92983,-0.16169,-0.35544,0.64123,-0.39316,-0.47108 -1.2804,1.4267,3.3007,1.1411,1.2393,-0.49037,1.084,-0.72628,0.44951,1.0965,0.27278,0.9633,-1.1723,-0.28168,0.85449 1.0588,3.5336,2.1506,-1.4987,2.3066,-1.5726,-1.0453,0.8244,-1.7775,0.62904,-0.21668,-1.0968,-1.2578,-1.2258,-0.71113 -3.2648,-0.74264,-0.55111,1.0467,2.2611,-1.5702,1.7727,-0.47644,0.77058,-0.026649,-0.1734,-1.6007,-0.83898,0.22582,-0.1262 0.076873,4.0591,-0.57963,0.35133,-0.11276,1.8859,-1.0261,0.17198,-1.9209,-0.14372,-1.3004,-0.6693,-0.014558,-1.047,-0.43443 -1.364,-2.6141,2.6752,0.41471,2.024,-0.44396,0.67353,-0.74659,2.2208,-0.24446,-0.20927,-0.7645,0.56797,0.30204,-0.30419 -3.2088,2.0774,-0.69664,0.24367,-0.086913,1.7599,1.517,1.3631,-0.097272,0.92138,0.45884,0.36815,-0.42718,-0.29873,-0.85469 -0.52386,2.9334,0.51155,0.0076991,-0.93757,2.5485,-1.1215,0.6654,-0.75628,-0.72016,0.68309,0.38812,0.57091,-0.42683,0.59797 -2.3838,-2.0361,1.1606,-0.24931,0.093422,-0.16221,0.11496,-1.0413,2.1031,-0.57409,0.5021,-0.49552,0.58467,0.30778,-0.93903 -3.3155,-2.3042,-1.4573,-0.73383,0.56378,-1.5438,-0.76412,-0.60687,1.2646,-1.0618,-0.93766,-0.33959,-1.0782,0.57478,0.17318 -1.7074,2.0464,-1.0504,1.4732,0.13348,0.86452,-0.30486,2.066,0.21118,0.16051,-0.6711,0.56411,-1.6671,-0.34415,-0.81958 3.9312,-2.2996,-1.3431,-0.9934,2.7203,2.2581,2.5081,0.58919,0.59926,-0.065591,0.22715,1.276,0.54044,0.44684,0.38713 -2.5012,0.68641,-1.5926,0.31735,-0.71054,-0.18578,0.6056,0.73237,0.97523,0.72161,0.46561,0.15667,0.66084,-1.2217,0.88856 2.4419,-1.5016,2.9304,0.64579,2.66,-0.43213,0.026951,0.14602,-0.17659,-1.2278,-1.8158,0.56944,0.27599,-1.2248,-1.0082 -2.9952,-0.95321,1.6133,-2.4901,0.69059,0.051909,0.41731,-1.2408,-0.21488,-1.2838,-0.17075,-1.3823,1.3691,-0.61252,0.41593 -1.2157,1.2007,-2.034,-1.1845,1.0232,0.010589,0.039354,-1.3314,-0.87667,0.44869,-0.80385,2.663,1.2539,-0.012696,1.3254 1.4095,1.3927,2.9782,-2.7343,0.66103,1.4215,1.3891,1.8004,-0.82735,-0.37428,-0.094358,1.2218,1.6759,0.58717,-0.19304 -3.1619,-1.6615,-1.6916,-1.4686,0.86821,-1.2115,-2.4077,-0.041533,-0.70323,-1.3398,-1.2514,1.2267,-0.051147,-0.69333,2.0568 -2.4244,0.29246,1.2262,1.2232,1.0903,-1.6403,1.6493,0.55752,1.8548,-0.57255,0.41428,-0.20415,0.11652,-0.49716,0.28608 -2.3194,-1.2692,1.7062,1.3426,0.60935,-0.87992,0.98326,0.58231,2.351,-1.0154,0.71435,-0.69668,-0.50363,-0.075701,0.28258 -2.2341,1.4685,-2.0111,0.63789,-0.74829,2.7468,1.3917,0.30511,-0.20134,0.4584,0.15959,-0.49909,-0.33296,-0.73121,-0.21154 -1.1777,-1.3836,2.1476,-1.2305,-0.58021,0.55403,0.2467,1.0307,1.6009,-0.13455,-0.30949,-1.3879,1.3036,-1.9698,0.45797 1.816,3.7247,-0.72508,-1.53,-0.037851,0.291,-1.6689,0.018189,-0.54832,0.61494,-0.86456,-1.0528,0.9149,-1.5686,-0.68753 0.43245,3.5543,0.11793,0.38045,-0.51399,-0.26208,-0.89329,0.11087,-0.69549,1.5342,-1.5202,0.034901,-0.69953,-0.58445,-0.1898 -1.3863,-2.178,0.14079,1.0728,0.46134,0.45764,0.50552,1.2337,1.9434,-0.54077,-0.01068,-2.0146,0.25714,0.17478,0.36602 -2.3513,-1.6607,-0.34384,-0.2542,-0.45823,-0.36628,-0.2199,0.85689,2.0901,-0.47543,-0.080943,-1.633,0.013054,0.09513,0.036741 -2.605,2.2491,0.51656,0.74216,-0.0087802,0.10401,1.3816,0.75879,0.39308,2.1781,-0.019434,1.1112,-0.033142,-0.47223,0.79405 -0.62071,2.0784,-0.048068,2.4885,1.5583,0.14908,-0.85858,-0.32441,0.25537,0.50269,-0.43925,0.75512,-0.78494,-0.88043,0.69476 -3.3879,-0.52967,-2.1433,-1.3946,0.44476,-1.7371,0.26304,0.28168,0.73454,-0.81403,-0.70988,-0.51008,-1.1798,-0.37133,-0.41638 -3.7766,-0.16367,-2.0021,-1.1489,-0.11331,-1.4124,0.95462,0.092298,0.7206,-1.1257,0.11359,-0.36411,0.006338,0.23768,-0.7185 -2.4691,-2.4454,-0.64078,-0.55321,0.75538,-0.56464,-2.2847,-0.37107,1.3488,0.20457,-1.2815,1.0366,0.14613,0.40268,1.332 -2.5442,-2.266,-0.44767,0.20213,1.1873,-0.93621,-0.78571,-0.042591,1.7897,0.054534,-0.67941,-0.38137,0.35749,-0.051642,-0.090525 -1.9624,-1.2911,-0.49231,0.28922,0.017748,-1.0648,0.6983,0.70784,1.5879,-0.97578,-0.0096026,-1.3961,-1.3796,-0.44864,-0.0036316 -1.271,3.8423,0.41531,0.23555,0.84666,0.099895,-1.0376,1.3063,-0.55183,-1.8477,0.077815,0.053202,0.86809,-0.75356,0.50323 1.9116,2.752,-2.547,-1.5701,-0.36508,-0.31449,-0.76598,0.1151,0.53672,1.1905,0.38378,-1.4279,-0.4622,-0.45179,-0.13027 -0.82745,-0.73624,3.2087,-1.8001,-0.57423,1.0963,1.1343,0.051667,1.6766,0.26793,-0.35861,-0.21245,0.17201,1.0818,0.059821 0.82567,3.6668,-0.060728,-0.74935,1.1761,-0.62359,-2.1746,0.5292,-0.21164,1.2433,0.49751,0.33026,0.68933,0.0044824,-0.46462 -2.7475,-0.012928,-3.4556,-1.236,-0.053534,-0.10586,0.40183,-0.68013,0.64648,-0.87408,-1.7062,-0.11828,0.12135,0.4384,-0.35826 -2.9478,-1.9577,-0.53932,-1.0016,1.383,-1.4759,-1.7075,-0.9366,1.0965,0.33876,-0.99258,0.64336,-0.58421,0.030867,1.3089 -2.3882,-1.344,2.1817,-1.3061,-0.056272,0.45902,-0.31043,0.32436,1.7338,0.15743,-0.16345,-1.1055,1.1843,1.8627,0.25779 3.4171,-0.67831,-1.6014,-0.56484,1.4339,1.1219,0.20014,-1.7958,-0.84239,0.52283,1.0381,0.45048,0.1649,-1.0352,1.0635 0.74497,0.3122,2.5616,-0.40133,-0.26357,0.90412,1.3574,0.85714,1.7545,0.94589,-1.0043,-0.28802,-0.70423,-1.15,0.40014 0.4998,1.8893,0.38186,1.7112,0.37784,0.33993,-1.3129,-0.73423,1.9025,0.33038,-0.51066,0.88173,-0.27266,-0.34184,0.27193 2.8157,1.6212,-0.93475,0.66406,1.0219,1.2901,-1.3675,-2.1224,0.38933,0.80996,0.21088,-0.95759,-0.61255,-0.20937,0.32136 2.473,1.8398,-0.67449,-1.8286,-0.84085,0.61173,-1.2512,0.082695,0.15478,-1.8968,-0.51283,-0.3285,-0.51294,-1.7994,-1.4345 -0.95875,-3.3545,0.13168,-0.048104,1.408,-0.052119,-1.5282,-1.1687,1.4261,0.86609,-2.3958,0.6746,0.55148,0.2407,1.0412 -2.0042,-1.5518,1.8643,-2.0798,-0.11214,-0.29111,-0.11043,0.48717,0.81366,0.62312,-1.0606,-1.6599,1.1034,0.071236,0.47086 -0.74324,-2.4926,1.5855,-2.7078,-0.061292,-0.2856,-1.1099,0.15848,1.3494,0.031412,-1.4879,-0.16815,0.93038,-0.092254,0.65581 -1.6537,-3.0655,0.29621,0.95677,1.8034,0.25979,0.43885,-0.063171,0.25902,-0.25138,-0.86977,-2.5947,0.49307,-0.45615,1.0804 -1.9936,1.8936,-0.53307,2.2961,0.65597,-0.23943,1.1703,0.60286,0.67021,0.56156,-0.34753,1.0862,-0.58288,-0.4744,0.78521 -3.2397,-1.6872,-0.88212,0.29279,1.168,-0.66109,-0.63883,-0.45973,1.9237,0.77392,-0.49914,-0.57153,-0.18419,1.3563,-0.043635 2.4094,0.13621,-0.70059,-2.178,1.4909,-0.64072,2.3152,-1.0545,-0.80544,1.1442,-1.1268,2.0843,-2.1689,1.304,-0.15733 -1.8952,-2.9916,-1.6888,0.8264,1.6939,-1.6529,-1.6764,0.12167,0.67933,-0.47164,-1.4871,0.13868,-1.1719,0.11617,1.7233 -1.0193,-2.3039,1.6637,1.2308,0.92158,1.8386,0.75743,0.24135,1.5297,0.24353,0.033265,-1.6378,0.9809,0.41253,1.0682 0.14964,1.5838,-2.9032,0.75715,-1.3928,1.9881,-0.34899,0.60162,-0.054273,-0.209,-0.56837,-0.85289,-0.29782,-0.019985,-0.17419 -3.4286,-0.33081,-2.0569,-0.56336,0.46174,0.86543,0.63527,-2.42,-0.53037,-0.55506,0.096201,0.235,0.011917,0.38091,-1.6259 -2.3003,-2.8986,2.4293,-2.9071,0.59879,-0.74468,-1.0829,1.3008,-0.21216,-0.22644,-1.1745,-1.6811,1.282,0.14694,0.59242 -3.4089,-0.62879,-2.6841,-0.70634,1.1014,0.53039,-0.64519,-1.447,-0.88417,-0.62483,-1.1334,0.89429,0.416,0.036093,0.076463 1.6733,1.9135,-2.1602,0.36611,0.76053,0.88968,-0.47149,-2.3461,0.075681,1.137,0.51604,-0.91058,-0.65663,-0.29654,0.26367 2.1491,1.3309,1.492,0.22643,1.1403,-1.0313,-0.9725,-1.3258,0.60448,-1.5267,-0.43289,1.3957,1.6416,-0.20721,-1.8113 -3.776,-1.3839,-1.6187,-0.88789,1.7842,0.68548,-0.056693,-1.7097,0.4385,-1.75,-0.67888,-0.0069196,-0.5333,0.38221,-0.53887 2.0741,2.8903,-0.58655,-0.83771,0.38099,-0.20267,-1.7037,-0.68016,0.0081087,1.9555,0.60639,-1.5843,-0.9786,-0.26682,0.070539 -3.097,-0.63586,0.019105,-2.0868,0.71965,1.0822,-0.25369,-3.4571,-0.73947,-0.27586,-0.32282,0.74769,-0.65146,0.77099,-0.29997 2.3346,2.3276,0.45547,0.7714,1.453,-0.47708,-1.2255,-1.0438,0.64013,1.5119,-1.1908,-0.046196,0.39257,-0.58298,-1.6134 -3.0482,-1.4106,-0.22102,-2.5125,0.77617,2.3201,-1.2488,-1.1314,-0.41331,-0.59723,-0.34339,0.27306,0.41322,1.743,-0.13006 -3.2948,-0.21014,-0.50602,-0.85815,0.067005,2.1134,0.59448,-1.5158,0.13154,-1.1173,0.46999,-1.0922,0.55366,0.74882,-0.73439 -2.5978,-0.57599,-0.65356,-2.2497,-0.21063,0.77278,-1.1225,-2.6117,-0.38691,-0.072924,-0.86195,0.71478,-0.0031584,1.0214,0.20319 -2.7325,-0.59501,-2.439,-0.89061,0.42324,1.6876,-0.70959,-2.3535,-0.30613,-0.60881,-0.3815,1.2988,-0.5133,0.502,-0.65206 -3.7651,-0.36436,-1.8733,-1.3187,0.82115,0.65647,0.28682,-0.98058,0.28852,-1.7686,0.0038309,-0.31683,0.39425,-0.22194,-0.35718 3.6247,0.03006,-1.0319,-0.30414,1.63,1.6643,0.04538,-2.1273,0.62974,0.71953,0.68377,0.082979,0.33642,-0.25911,0.58103 -0.10761,1.5577,2.6289,0.55726,0.087289,-0.093603,-2.1615,1.6148,0.28182,-0.15235,1.1594,0.83818,-0.411,-0.77403,0.45051 -1.7174,0.18811,3.8506,-1.1896,0.65029,-0.72284,0.8148,0.54771,1.269,-0.58778,0.37505,-0.1388,0.73709,-0.77293,0.32769 -3.7793,-1.4273,-1.7509,-1.8603,0.64161,0.56633,-0.79415,-0.60878,0.62136,-1.8932,-0.65995,0.17132,-0.063509,0.83362,-0.15339 -3.5365,-0.42197,-1.4588,-1.5877,0.67604,1.0744,-0.44819,-1.5839,0.047814,-1.6781,0.24248,0.64467,0.221,0.43144,-0.57015 0.52602,3.6877,-1.2624,-2.0419,-0.64382,0.18797,-0.17198,0.46266,-1.3597,1.0281,0.11042,-1.1328,-0.26358,0.45698,0.042821 -3.8724,0.095298,-1.8852,-0.89455,0.90809,0.70749,1.0079,-0.79364,0.24629,-1.3391,-0.23948,-0.99264,0.47902,-0.52803,-0.80869 -1.0886,3.483,-0.53101,0.14319,0.11901,1.4303,-1.5349,1.2902,-0.46127,-0.74603,-0.24543,0.84216,0.5503,-1.1271,-0.60652 -1.0828,0.034393,1.125,2.1475,0.42024,1.0673,1.1792,-1.4935,0.48406,0.29247,-0.34525,0.61393,0.051259,-1.489,1.6026 0.659,0.22391,1.719,1.1481,0.68115,2.9003,0.20245,-1.5949,0.060401,-1.9025,-1.377,0.8612,0.99597,-0.11174,0.65183 0.92535,3.0808,0.83971,-0.03865,-0.81233,0.020143,-1.395,0.15223,0.61977,0.78289,-1.2002,0.41301,-0.62549,-0.39527,0.03282 1.2422,3.0824,-0.28338,-0.82544,0.16718,-0.4265,-1.6205,-1.524,0.87261,1.0999,0.36343,0.38891,-0.32019,0.39087,-1.0522 1.4792,1.903,-0.30693,0.0028347,1.7922,-0.83009,-2.0094,-0.49336,1.6008,1.9158,0.87989,-0.24641,0.31799,-0.74653,-0.16556 -3.7,1.1692,-0.47537,-0.91233,0.080805,0.32674,0.9278,0.69507,0.18271,0.98169,0.93037,-0.4546,-0.4608,-1.2194,-1.3583 2.5618,1.5529,-0.9919,-1.2479,0.47263,0.18574,-1.3207,-0.45329,1.1676,2.3844,0.86153,-0.45826,-0.37168,-0.12411,-0.11633 2.1246,0.29522,-1.5636,0.10475,0.2007,1.2553,0.18143,-1.1,1.8273,1.3352,0.4044,-0.15187,-0.16102,0.28342,0.78172 -1.0761,1.6799,2.4504,1.6302,0.97809,0.3417,0.57229,0.044753,0.92749,1.3207,1.1362,0.055115,-0.96539,0.25254,0.41057 -0.2219,3.7277,-1.0439,-0.45857,-1.5155,0.3237,0.77512,0.66082,-1.9224,-0.42811,-1.9229,-0.26387,-0.66389,0.75289,0.027511 -0.8571,0.47088,2.184,1.5346,0.8151,1.5482,0.63423,-0.32497,-0.067516,1.6487,1.5117,-0.45256,-1.5425,0.06427,0.81345 -0.81063,2.8231,-2.3804,0.15447,0.23776,0.8696,-1.6833,1.7668,0.19504,-0.23806,-0.14717,-1.0733,1.3217,-0.88903,-0.30035 -1.8537,-2.214,-0.064818,1.7032,1.0156,1.4578,0.69244,-0.5623,1.0462,-0.23865,0.13122,-1.4101,0.99492,-0.21583,0.97409 2.7064,0.58613,-1.1896,-3.7063,0.53251,-0.38453,2.0425,1.4583,-0.62582,0.48716,0.83021,1.7521,1.0428,-1.9107,0.78359 -1.1087,3.4793,0.52271,0.63898,0.83187,-0.73221,-1.3217,0.74802,0.53778,0.30678,-0.45786,0.80235,0.37889,-0.13184,-0.32515 3.0504,-1.0511,-1.2274,-0.082507,1.4877,1.747,1.0207,-2.8578,-0.075515,-0.70891,0.72805,0.42799,-0.10113,0.14569,0.19091 1.5554,-0.3132,-2.6712,-0.19747,0.024609,1.6517,1.7166,0.60962,2.0423,0.54979,0.2368,2.3229,-0.42438,-0.061535,0.039395 0.82796,3.5763,-0.7736,-0.70879,-0.98611,0.40056,-1.7849,0.16236,-0.40807,1.2305,-1.0865,-0.24322,0.12416,-0.23228,-0.85572 -2.5006,1.3357,1.5761,-1.9329,-0.58071,0.37369,1.0977,-0.63278,0.052644,-0.70039,0.60631,-1.1481,0.95942,-0.83703,0.23907 -1.0672,2.7073,0.67166,1.3805,-0.59812,1.1232,0.61669,-0.5916,-0.53874,1.0663,0.1373,0.95219,-1.6659,0.22504,0.72303 -0.84337,1.1507,-0.35629,-0.016057,-1.0119,0.83776,-0.30668,1.2663,0.86924,-1.545,0.64796,-0.23666,1.656,-0.4012,1.9687 4.5892,-1.0327,-0.27078,0.25761,1.2613,0.76863,-0.1585,0.28152,0.099306,-1.0934,-0.66762,-0.66102,-2.1929,-0.13614,-1.2106 -3.1112,-0.24941,-1.9351,-0.74758,-1.3086,-0.85978,0.45116,0.41479,-0.43787,-0.66059,0.42383,-1.1214,-0.051076,-0.99476,0.095849 3.5067,-0.31721,-0.99414,-1.2708,0.83646,2.079,1.4468,-0.38418,-1.8531,1.1041,0.71881,-1.1537,0.091737,-0.53893,2.6043 -4.1317,-0.51192,-0.44991,-0.95029,0.19097,-2.7199,1.2571,0.87468,-0.26826,-0.65027,-0.33238,-1.5764,-0.89871,-0.14462,-0.63226 2.7375,1.6667,-0.81043,1.5813,0.5448,0.35606,0.0044588,-2.4824,-0.16171,-0.66405,-0.86013,-0.61511,-0.78879,0.1038,-1.4213 -3.3156,0.099877,-2.1092,-1.2106,-0.43103,-0.64398,-0.084683,-0.26227,-0.1561,-0.43318,-0.18512,-0.84647,1.2236,-0.49945,0.35569 -2.7079,-0.89963,-2.929,-0.85706,-0.64147,0.024968,-0.83179,-0.35866,-0.6687,-1.8185,-0.2174,-0.42709,-0.30623,-0.87859,0.27292 -3.6349,1.1137,-1.0016,0.28595,0.92287,1.9172,1.525,-0.32135,-0.37287,0.85938,0.4173,-0.63559,0.0020452,-0.99864,-0.70805 -0.4664,-1.6803,0.079147,1.5046,-0.15491,0.36465,0.42579,1.3608,1.2512,-0.71011,0.23822,-1.381,0.11921,-1.2715,0.56548 -2.5129,-0.23559,-0.80997,-0.30244,-1.6397,-0.34139,0.32422,0.96649,0.69668,-0.85602,0.60498,-1.3224,0.23167,-0.91721,0.80188 -1.5347,-0.76975,1.1689,0.50447,-0.84971,0.33147,0.72512,0.58918,2.4183,0.17998,-0.35558,-0.095831,0.68885,-1.0654,1.1922 0.66655,3.8723,0.17864,-0.84758,-1.2621,1.1606,-0.46537,0.71719,-0.90577,-0.68582,-1.0355,0.25768,-0.47665,-0.81068,0.26806 4.0698,-1.9754,-1.7463,-0.56272,1.3022,1.0863,2.9846,0.023944,0.62262,-0.078845,0.8107,1.1437,-2.282,0.11819,0.8511 -1.6958,2.1082,1.238,1.9534,0.91861,0.28727,1.1682,-0.0012187,0.083729,1.5062,-0.83677,1.7021,0.22282,0.71754,0.19749 -0.67311,0.7209,0.49386,2.5396,-0.42154,0.78868,0.81687,-1.2277,0.76564,-0.59799,0.38567,1.286,0.40412,-0.24859,0.7411 3.9222,-0.69035,-1.4705,-1.4436,0.83896,0.31642,0.94006,-0.11156,2.0386,0.51614,1.5376,-0.0063282,-2.2281,-0.65662,0.88307 4.1719,-1.0076,-2.0032,-2.8575,-1.3661,0.12026,1.0918,0.79805,1.1719,0.7878,1.499,1.032,-1.4257,-0.096212,0.42458 -2.3605,0.16558,-1.2474,-0.58172,-0.88259,-0.70701,0.31841,-0.1474,0.81512,-0.16268,0.055148,-0.97789,1.3045,-1.5227,0.18883 3.7983,0.38828,-0.85812,-0.79577,1.6088,-0.37206,0.89448,-2.2789,0.44084,1.755,1.6065,0.27558,-0.95477,-0.80832,1.5051 -2.6524,-0.17966,0.54525,-0.21672,0.20371,1.5146,1.1154,-0.96148,-0.025553,-1.2564,0.77781,-1.4146,-0.64622,-1.2416,-0.30722 3.5024,-2.2354,-1.7312,0.059568,1.9647,0.48429,0.62245,2.1122,-0.068096,0.51166,0.49861,0.24463,1.1098,-0.43179,-0.3948 3.6807,-3.0321,-0.0020536,-1.5726,3.9223,1.1908,2.507,0.93661,-0.32542,1.116,0.050049,3.3706,0.50511,0.026921,0.46328 3.443,0.56495,1.0791,-0.9171,1.0578,0.00063337,-1.1058,-1.8764,2.2452,0.36402,-0.084688,-0.17376,-0.6998,0.29582,-0.79937 0.64887,3.4397,2.4014,-1.9924,0.58942,-0.063613,0.87716,0.44092,-1.8526,0.98657,-0.681,0.41778,-1.6469,-0.36251,-0.11923 -3.6848,0.40159,1.6424,-2.2092,1.2768,-0.79987,0.79154,-1.4127,-0.42285,0.63545,0.47529,-0.50138,0.51945,0.30001,-0.30004 -1.7327,1.7204,-2.0701,1.8772,-0.4557,0.72206,0.95291,1.9991,0.59556,0.44789,-1.0178,0.27305,-0.35719,0.20429,0.8389 2.0157,0.77721,5.0223,-1.4088,1.9143,-0.39214,-0.034518,0.35698,0.17097,-0.1268,0.098268,0.16117,-1.7104,0.79674,0.0056017 2.624,-1.6613,-0.020791,0.10014,3.8247,0.54494,1.1349,-0.40878,0.3158,1.3784,1.3329,1.3834,0.99946,0.11232,1.2098 2.7894,1.1398,-0.27776,-0.09762,2.3909,-0.5533,-0.75585,-1.6172,-0.069411,2.4191,0.83298,-0.72987,-1.0297,-0.82338,0.78553 -2.8401,-0.21317,1.6224,1.4813,0.60044,-0.013043,0.81819,0.7027,1.6304,-1.6021,0.9365,0.030074,-1.6225,0.73152,0.80857 -1.9213,2.7162,2.9753,-0.39752,0.46789,0.20155,0.26284,-0.11473,-1.1114,1.0362,0.45861,0.24613,-1.8081,-0.21567,0.031848 2.6031,0.69076,3.575,0.7727,2.5583,-0.57687,0.20677,-0.62326,-0.14186,-0.43525,-1.659,0.48395,-0.78099,-1.1339,0.29614 0.76336,2.2461,4.0032,-1.5674,0.11649,0.39653,-0.69244,-0.51845,-0.14964,-1.1591,0.30543,0.80427,-0.57083,1.2725,0.27579 -0.34748,1.4916,4.4628,0.060463,2.181,-1.0436,0.072906,0.32298,-0.36323,0.26142,-0.029063,0.56183,-1.2976,-0.43488,0.45002 2.3751,-0.64439,4.2493,1.148,1.9903,0.64885,-0.17058,0.72364,0.55361,-0.41753,-1.0688,0.28045,-0.19791,-0.5429,1.2686 -2.8576,2.1574,2.0949,-1.1414,-0.27417,0.74682,0.93671,0.15742,-1.4466,0.48434,0.46568,0.19575,-0.46522,-2.0144,0.90274 -4.5704,1.3858,-1.6921,-1.0799,1.7316,0.099875,1.8915,1.6999,-0.87412,0.17025,-0.090204,-0.81396,-0.1123,-0.26263,-0.095238 1.3117,3.9774,0.6728,-1.5234,-0.24439,-0.47774,-1.2523,-0.22125,-1.295,0.51489,-0.75752,-0.84625,-0.28865,-1.2025,-0.37214 0.77895,1.1699,4.5716,-0.40821,0.70808,-0.46659,0.27007,0.43494,1.5402,-0.19052,-0.82253,0.81498,-0.445,-1.0769,0.60901 -4.3616,-0.24036,0.79134,-2.6983,2.1865,-0.89468,-0.18508,-0.46523,-0.51791,-0.17063,-0.13141,-0.65819,0.016668,-0.037255,0.34811 -4.0195,-0.62665,-1.4503,-1.2629,3.5836,-0.053516,0.17754,-1.4447,-0.90632,-0.5599,-1.2791,0.75552,-1.3383,-0.09575,-0.4508 -1.3644,-2.9731,0.89336,-0.33759,0.99364,0.67523,0.2103,-0.72685,1.7351,1.8553,-1.7297,-0.61868,0.99823,0.67941,-0.08269 1.7646,1.9491,-0.8253,1.0569,1.9752,0.47764,-0.22763,-1.9624,-0.079158,0.59364,-0.75784,-0.014987,1.3995,-0.8497,-0.95429 -3.0801,-1.6322,-1.0777,-1.5065,0.4508,0.17025,-1.5901,-0.95004,1.1029,-0.17709,-0.48172,0.99734,-0.16286,0.82067,0.61875 -2.7015,0.74324,-2.8084,0.056284,-0.04777,0.84129,1.1013,1.0549,0.63588,1.4274,-0.38222,-0.29451,-0.71239,-0.17787,-1.104 -1.8513,-1.1353,0.32157,-3.3487,1.7348,-0.097013,-1.3175,-1.5796,-1.0861,0.12264,-1.7384,1.173,-0.95064,0.054339,2.177 -0.80725,-0.58548,1.7223,-0.35687,-1.0674,0.66059,1.2888,-1.7192,2.163,0.84472,-0.12299,-0.15904,-0.36755,0.45563,-0.42938 -1.8273,-0.8669,-3.2266,0.34233,0.043647,-1.7545,-0.95849,0.24626,0.42016,-0.10425,-1.1601,0.82316,-0.75705,-0.15706,0.71454 -1.4332,0.10653,1.9345,0.64849,1.6859,-1.5323,0.88883,-0.78689,0.41401,0.59458,-0.92308,1.7661,0.16806,-1.4387,-0.41215 -0.030244,3.3998,-0.36698,-0.24684,-1.2383,1.2078,-1.3302,0.027888,-0.84105,-0.6712,-0.48345,0.36981,0.10967,-1.2116,0.049974 1.4626,2.4451,0.16509,0.35143,-0.90584,1.0486,-1.7588,-0.78253,0.59703,0.16113,0.027662,-0.15057,-0.08743,-0.02514,-0.26741 3.8911,0.2483,-1.7897,-1.0136,1.5251,2.2671,1.3974,-0.87254,-1.0213,0.61101,0.40828,-1.6265,-0.45202,-1.1311,0.58689 0.33415,1.4962,-2.094,0.88406,0.81283,0.44722,-1.5605,0.22662,1.9853,0.84417,0.88787,-0.14156,0.61099,-0.80969,-0.56048 -1.6463,-1.0755,0.92874,-0.57532,0.3275,0.64194,-0.14358,-2.2433,1.1376,1.7544,0.57549,-0.3122,-1.1602,1.228,0.04851 4.1489,0.5592,-2.1649,-2.3441,1.5106,0.43072,1.9464,0.73676,0.54398,2.1325,0.69434,1.086,-1.3154,-0.5369,-0.97038 2.568,2.4679,-0.3064,-2.0247,0.11038,0.037002,-1.3366,-0.018485,0.85037,-0.50162,0.47951,-0.93534,-1.332,-0.82769,-0.70449 -2.9987,-0.83748,-1.4042,-0.79033,-0.013485,0.68395,-0.59859,-2.2416,0.80105,-0.2542,0.19298,1.1393,-0.15238,1.4206,-0.88499 -2.2834,-2.5097,0.074503,-0.742,1.312,0.19113,-1.4127,-1.9441,1.2184,0.66274,-0.55955,1.1438,-0.17875,1.5906,0.25213 -0.4643,0.14821,2.1382,-2.989,-0.27443,1.908,-0.25221,-0.74718,0.19366,-1.766,0.31706,-0.039713,-0.49419,2.3758,0.073985 -1.6905,-0.53024,0.119,-1.1465,-0.40677,1.0342,-0.20042,-2.9229,0.82256,0.38336,-0.17404,-0.18641,-0.68497,1.4007,-0.1915 -2.6592,-1.7705,-0.020592,-0.55629,-0.36403,1.6338,-1.0308,-0.95495,1.4715,0.52445,-0.28811,-0.24668,0.47186,1.7492,-0.12147 -1.2332,1.6533,1.1599,-0.018508,-0.27062,2.0372,0.77911,0.13987,0.30556,-1.0535,0.42593,-0.45094,0.81778,-1.1029,1.7604 -2.7386,-0.48056,-2.004,-1.102,0.57162,-0.24831,-1.2735,-1.4804,1.0587,-0.55949,-0.10327,2.0399,-0.16321,1.0989,0.048066 -1.922,3.0967,0.92156,0.86518,-0.078114,0.81473,0.39851,1.0129,-0.13799,1.053,0.68307,0.94695,-0.60375,0.25518,-0.30129 -3.1414,-0.95465,-1.659,-1.259,-0.1853,0.85408,-0.93464,-1.2221,0.93384,-0.87475,0.28655,0.87241,0.02021,1.1469,-0.75415 0.64079,3.4217,-1.5253,-0.30108,-1.1368,0.9859,0.65625,0.13674,-1.4517,-0.32481,-1.8201,-0.97997,-0.85691,-0.071966,-0.6985 -2.5107,3.0892,1.5878,0.77034,0.73375,-0.34016,-0.013468,1.2903,-0.47162,0.81378,0.22539,1.1715,-0.96732,0.43715,-0.39816 2.5152,0.72729,-3.4449,-1.3173,0.044376,1.1629,1.6131,1.1694,0.47108,0.46166,1.6864,0.58433,-0.087118,-0.6888,0.92407 2.5318,0.034102,4.952,-0.88008,2.0112,-0.22411,0.50624,0.59047,0.5141,-0.26912,-0.66715,0.81702,-0.52776,1.004,-0.30942 -0.99604,-3.1236,4.1739,-0.87806,1.9774,0.19339,0.32609,0.33768,0.0039141,1.0992,-1.0791,-0.812,0.039352,1.6592,0.23152 -0.29553,3.9565,0.82419,-0.6637,2.6559,-0.37057,-0.69531,1.1604,-1.5011,-0.61874,-1.0579,-1.4771,0.50749,-0.36049,-0.12614 -0.96414,-3.2323,3.5014,-1.6981,1.6735,-0.43561,1.2185,-0.28344,1.0552,0.78207,-1.6339,-0.50859,0.0062432,-0.7337,-0.40141 -2.7476,-0.50295,2.9593,-0.8653,1.8636,-1.5398,1.1939,0.33387,0.29311,1.1153,-0.21926,-0.70989,-0.42398,-1.5473,0.82219 -2.3904,0.4049,3.1564,0.65794,1.1842,-0.8269,0.6425,0.95484,1.0046,0.08541,0.48435,0.070469,-0.48991,0.3497,0.84465 -4.1458,0.66503,0.0098779,-1.6843,1.3643,0.73886,0.84387,-0.22739,-0.64219,-0.99869,0.52314,-0.9258,0.25812,0.58144,-1.0201 1.8955,3.8808,-0.21591,-2.5389,0.51113,-1.0069,-0.93038,0.29197,-1.838,1.469,-0.24259,-1.8562,-0.77746,-1.1171,0.017993 1.9582,2.85,-0.2405,-1.2681,-0.14611,0.033406,-0.94191,-0.65161,0.78023,-0.85287,-1.0367,0.03934,0.54402,-1.6566,-1.0586 0.60135,1.8845,4.5694,-2.3846,1.2397,-0.44019,0.32428,0.086344,-0.87868,-0.73568,-0.61571,0.44818,-1.1167,0.095325,-0.46108 -0.76271,2.0026,1.4245,2.1459,1.6206,-1.2384,-0.91092,0.73748,0.82566,0.5915,-0.5106,1.0138,-0.58374,-0.82931,0.69389 -2.2399,-3.3116,3.5983,-2.5302,2.2342,-0.50097,-0.81136,-0.13612,-0.026313,0.46595,-1.3447,-0.38958,-0.30391,1.8177,0.90795 2.9281,-0.24804,2.5118,0.85634,1.9356,0.89231,1.3412,1.4904,-0.84292,-0.50558,-1.4678,0.45501,-2.2249,-1.457,-0.39685 -3.1668,0.22893,2.5319,0.43295,1.1358,-0.46453,1.0628,-0.1536,1.515,0.14956,1.049,0.37709,-1.0918,0.62534,0.28247 -1.142,-1.1804,4.8017,-0.40809,1.2815,-0.32859,0.6268,-0.25207,1.1423,0.057552,-0.51442,-0.049395,-0.23152,0.16121,0.3469 -1.4282,-2.3425,4.2252,-0.25718,2.1208,-1.146,0.85074,1.1893,0.12581,0.048405,-0.5398,-1.0643,-0.30787,-0.69566,0.80115 0.50108,4.1168,0.27584,-0.51627,-0.21719,-0.35399,-1.4017,-0.57726,-1.5966,1.1466,0.37838,-0.48855,-0.16635,0.71971,-0.80564 -2.0128,-1.5221,2.8616,1.0353,1.9018,-0.2219,0.94027,0.69636,1.347,-0.21696,0.57663,-1.0901,-1.0065,-0.074959,1.6557 -1.7807,-0.97502,4.258,-1.9342,0.26392,0.68132,0.099743,-0.39049,0.50624,-0.24037,0.10972,-0.52274,-0.3282,1.2535,0.49984 -1.0187,0.50724,3.5315,-2.5816,1.4347,0.58543,0.90352,2.1151,-0.97873,-1.7261,0.50678,-1.7134,0.50083,-0.83048,0.8254 -2.6074,1.6712,1.0055,-0.27464,-0.7888,0.90977,1.0494,0.36394,0.81248,-0.5148,0.69576,0.95466,-0.25714,-0.64479,0.6484 4.206,-0.85533,-0.9988,-0.7167,2.1078,0.67609,1.157,-1.0114,1.6022,-1.1708,0.78858,0.29708,-0.89496,-0.94613,-0.89899 2.1076,1.7836,-1.8033,0.038799,2.1536,0.5453,0.48876,-2.124,-0.98419,1.0285,0.28123,-0.14625,0.96575,-0.78958,0.55366 -2.5518,0.4145,0.89528,-1.5352,-0.84161,1.5495,0.51615,-1.1937,0.7221,0.54568,0.89001,-0.44414,0.19782,-0.4002,0.13044 1.1243,3.8352,-1.428,-1.1063,-0.12362,0.49311,-1.4346,-0.97317,-1.1874,-0.17271,0.73907,-1.0483,0.96482,-0.23422,-0.32093 -2.5549,1.4784,1.0248,-0.39641,-0.681,2.17,1.7911,-1.4201,-0.41109,-1.2859,1.0256,0.17932,-0.26821,0.17281,-0.24661 1.5926,2.1691,-0.6533,0.73685,0.15784,0.52531,-0.15754,-1.3945,0.06794,-0.38546,-1.4819,0.73201,0.8915,-0.91356,-1.1332 -0.30299,1.7682,-1.7701,1.9362,-2.2845,0.7994,-0.39459,-0.16634,0.21878,0.50551,-0.34676,0.44311,-0.4085,0.92024,-0.13331 -2.2159,1.5114,0.88021,-2.5896,0.7125,1.5173,0.0085834,-0.677,-2.1236,0.18536,0.67903,-1.6617,-0.63795,-0.039183,-0.20928 -0.27737,1.6499,-0.37149,1.6929,2.4256,-1.943,-0.47859,0.12212,1.1793,-1.2395,-0.40111,0.089147,0.4907,-0.20664,-0.99781 -2.1178,1.9599,1.0264,-0.24955,-1.0189,0.55764,0.93095,-0.26034,0.031344,0.28554,1.0597,0.087865,1.0093,-1.4172,0.33602 -1.7799,2.094,0.18667,0.65156,-0.61663,0.49281,0.79793,-0.22424,0.28696,1.9937,-0.084076,1.3505,-0.30246,-0.95427,0.72034 -1.0234,2.3916,-1.8119,1.2005,-2.4751,1.6934,0.85438,0.19398,-1.2268,-0.48597,0.012978,0.25276,-0.0167,-0.22191,0.088222 -3.6271,0.73685,-0.99088,-0.62246,0.54032,0.39098,1.2985,0.52074,1.2667,0.31068,0.73839,-0.082721,-0.34999,-0.88059,-0.44488 -4.2459,1.4853,-0.10191,-1.1834,0.86481,-0.45115,1.3088,1.0245,0.13714,0.77002,0.64166,-0.71113,0.33782,-1.3152,0.24186 3.4653,0.19908,2.3128,0.3132,1.6072,0.59785,0.31358,1.247,0.79059,-0.055415,-2.0168,0.80033,-1.421,-0.76935,-1.0052 -3.5508,2.0567,-0.038701,-0.36096,-0.021671,1.0679,2.0928,0.089567,-0.015522,-0.54136,0.73765,0.73284,-0.085384,0.075945,-0.82946 -3.6559,0.080379,-2.4442,-0.89171,1.0627,0.93987,1.2128,-1.4092,0.50218,-1.0798,-0.44509,-0.12056,0.12711,-0.049937,-1.3115 -2.8152,-0.36028,0.88173,-1.6254,-0.72561,2.19,0.36812,-1.8627,0.2326,-0.47203,1.1028,-0.27121,-0.010674,1.1951,-0.85345 -0.61453,4.4896,0.7264,-0.631,1.3116,-0.551,-1.8081,0.29752,-0.71162,0.31765,0.17656,0.70936,0.019706,-0.18612,-0.985 -3.4966,1.565,0.714,-0.92052,-0.080078,0.12187,1.3033,0.090236,0.32419,-0.10608,1.1131,-0.48108,0.84084,-1.2305,0.49512 -3.1425,-0.43076,1.2914,-1.1894,-0.43116,-0.12962,0.30354,0.20728,1.8212,-0.77549,0.97825,-0.9632,0.66676,-0.32781,0.71324 3.3088,1.5802,-0.098323,-1.8923,0.71978,0.061618,-1.3521,-1.1216,1.743,0.93163,0.61154,-0.18272,0.077272,-1.2162,-0.15183 -2.7119,-0.25586,1.1327,-0.0692,-0.033599,-0.70933,1.5087,-0.37664,1.8423,0.84492,-0.10339,0.18864,0.50615,-1.4898,0.3989 -4.0621,0.25249,-1.7906,-1.5961,0.84711,-0.41975,1.027,-0.020411,0.2649,-0.82317,0.057451,-0.86644,-0.23569,-0.95987,-0.63416 -2.0993,2.7537,-1.2672,0.48571,1.2454,2.7733,0.27036,1.3835,-0.48488,-0.54109,-0.74018,-0.3447,-0.15806,-0.025094,-1.0917 -1.742,0.96796,2.3037,-1.2305,-0.5522,0.336,1.028,-0.89878,1.5808,0.7738,0.2379,-0.38231,0.12341,-1.1528,0.16986 1.1308,2.7619,-1.9343,-1.2023,-0.55481,1.0453,0.24749,-0.71693,-0.017372,-0.65639,-0.45889,-0.46607,-0.16701,-1.0904,-0.92112 3.4099,-0.1248,-2.0739,-0.48031,-0.13098,1.1042,1.1564,0.13323,-0.28794,2.6746,1.2227,-0.25169,-1.4161,1.1076,1.4575 -2.9605,2.377,-1.4536,0.44494,0.35782,2.4119,1.2235,2.6062,-0.79248,-0.39768,-0.81646,0.088779,-0.49868,-0.87788,-0.061388 -1.1385,-1.8897,-2.7736,-0.042121,-0.30348,0.68899,-0.96653,-0.31943,0.064279,-1.659,-1.9768,0.3913,-0.79317,0.35821,1.702 0.46215,-1.8347,3.9434,0.44794,2.504,-0.44914,0.9335,1.2429,0.025549,0.51824,-0.37347,-1.2064,0.13133,0.088287,0.78108 -1.1714,1.7197,-1.0827,2.3739,0.80777,0.35692,0.30329,0.63009,0.43843,-0.05678,-0.38193,-0.0099128,-0.30701,-1.4146,1.4361 -2.0202,0.56546,3.3913,-2.4628,1.1336,0.32724,0.42306,0.09729,0.22255,-0.28048,1.1996,-0.58664,0.21779,1.8486,-0.03843 -0.9971,2.5221,2.8835,0.86542,0.27292,-0.88538,-0.29528,-0.78775,0.38176,0.037977,0.16019,1.7178,-0.63635,0.72198,0.00088817 -0.63329,-2.5106,2.0038,-2.3456,1.614,-0.39224,-0.25909,-0.93639,0.27608,1.7079,-2.1016,0.01561,-0.4858,0.74294,0.17742 -2.4781,-1.5594,2.4009,0.90712,2.1877,-0.77401,0.85598,1.2511,0.86046,-0.88845,0.61874,-1.6943,-1.1379,1.2883,0.89568 -4.0406,-0.95425,1.6169,-1.5389,2.3214,-2.2833,0.29052,0.20476,-0.13145,-0.49012,0.050454,-0.94759,-0.65131,0.27552,0.078048 -2.4906,3.0019,0.084846,0.19704,-0.70361,1.5381,1.1608,0.27249,-1.2663,0.31043,0.19234,1.372,0.043775,-1.2647,0.24695 -1.2792,-0.1897,3.9367,-1.1163,1.2892,-0.77901,0.5095,-0.024063,1.6561,0.13835,0.63316,-0.42469,0.59653,0.050337,-0.25195 0.33583,3.1501,-1.1079,0.09077,0.67667,0.61204,-2.5205,0.50086,-0.82459,-0.35149,1.7107,-1.0132,0.53278,-0.43883,-0.82025 -0.039947,2.2128,-0.070975,1.9154,2.7962,-1.0976,-1.2939,0.31233,0.9768,-0.94003,0.036171,0.26438,-0.54919,0.62155,-0.93224 -4.0523,0.40023,-1.4622,-0.8913,0.64495,1.3183,1.217,-1.0165,-0.18162,-0.2387,0.83855,0.12998,-0.025784,-0.07224,-1.5102 -3.951,0.90609,0.30092,-1.5189,0.28387,0.79235,1.064,-1.7436,-0.45504,0.20946,1.1411,0.17928,0.49799,0.3069,-0.76041 -1.989,-1.417,3.6836,-0.53938,2.0656,-0.82048,0.43999,0.90317,0.7643,0.014264,0.59482,-1.0281,-0.51582,1.2844,0.85947 -3.3633,-3.0195,0.70018,-1.8007,2.4255,-1.3436,-1.7948,0.48483,-0.19158,-0.20726,-1.2068,-0.30619,-0.65687,1.5414,1.3565 1.5553,1.0786,0.63935,1.5909,1.2987,1.8801,-2.3456,-0.88319,1.0102,0.21923,0.42487,-0.17515,-0.19484,1.0033,0.22113 -3.29,-2.1624,-0.28823,-1.167,2.0226,-1.7404,-2.2339,-0.1318,-0.39467,0.42813,-1.7408,0.50313,-0.081115,0.61598,1.6604 -2.1173,-1.1229,3.8508,-1.3576,1.2597,-1.5945,0.15698,1.7947,0.23081,-0.50513,0.32768,-1.4921,-0.19055,-0.0072829,0.76776 -3.5102,-1.6856,0.38539,-2.8814,2.8052,0.16741,-1.6654,-0.64575,-1.711,-1.3718,-0.75162,1.2242,-0.60485,1.427,1.168 3.708,1.2347,-0.67886,-0.11199,2.1546,0.59138,0.2102,-2.1842,0.036208,0.30092,-0.28293,-0.23827,-0.45275,-1.3763,-1.6574 -0.90605,2.7553,2.3512,-0.44011,-0.19764,2.4972,-0.37776,0.011091,-0.17063,-1.6385,0.71513,1.0998,-0.39668,0.74882,0.23303 -0.66185,-0.27963,3.6128,-0.15119,0.21373,0.70173,1.152,-0.30278,1.4862,1.4283,-0.82547,-0.75479,-0.44786,0.016218,0.62786 3.7262,1.575,-0.29164,0.023955,2.7805,-0.16516,0.47871,-2.0484,-1.1651,2.0864,0.030559,-1.4554,-1.1255,-1.1289,0.24798 2.1058,-0.91975,0.96663,0.65226,0.89116,4.1969,0.81004,1.0138,-0.60913,-2.0025,-2.1221,0.77834,0.03793,0.52205,0.13284 2.0732,-0.71361,2.859,1.637,2.3132,1.7414,0.72871,-0.51053,0.11194,-1.076,-1.7143,0.45666,-0.7394,-1.0923,1.3693 5.281,-0.38531,-0.80356,-0.3968,1.8034,-0.15352,2.0541,-0.50175,-0.97392,-1.9449,0.12523,0.064399,-1.2675,1.9989,-1.5784 -1.0155,-0.81669,2.7888,-0.084391,-0.15312,0.62921,1.1177,0.26939,2.6871,0.66914,-0.45478,-0.029065,0.53818,-0.91195,0.77651 -1.3906,0.62429,3.1995,-0.93232,-0.45961,0.32448,0.67889,0.016196,2.1472,-0.27342,0.19173,0.20118,0.66137,-1.0576,1.4126 -0.59926,1.5159,0.156,2.191,1.1634,0.15794,-0.28601,-0.91242,0.37917,-0.24046,-0.69369,0.58731,0.21709,-1.5381,0.94074 2.8048,-0.78789,3.326,0.22761,2.1482,0.73909,0.94361,1.6501,0.86732,-0.33258,-0.8855,0.90453,0.53832,-0.43261,-0.0171 3.7774,0.28032,-2.1567,-2.4391,-1.8623,0.25941,-0.63499,0.89294,0.63354,0.12182,1.3119,-0.87526,-0.43217,1.0502,0.089133 2.8196,1.3102,2.7421,-0.29701,0.77548,0.40255,-1.1001,-0.47169,1.7935,-0.32599,-1.0127,0.80726,-0.62411,0.99593,0.0044319 1.1286,2.6997,1.4729,-0.061001,2.1354,-1.3497,-2.4288,-0.19768,1.2025,0.49769,0.61017,0.023185,0.029577,-0.41868,-0.055641 0.50547,1.3521,2.6841,-2.3947,-1.0165,2.1195,1.656,0.020807,-0.042501,-1.0265,0.10121,-0.17011,-0.51663,-0.048451,0.10849 0.94238,3.8464,0.43385,-1.8773,1.8807,-0.89246,-1.5636,-0.37441,-0.087662,1.4041,0.67791,-0.54965,0.70381,-0.601,-0.43056 -1.4768,1.2485,3.5095,-0.19886,0.33858,0.27553,-0.37232,1.7945,0.81161,0.060391,0.19324,0.41854,0.068739,0.31769,1.392 -0.033936,2.911,-0.81121,0.93061,-1.2546,0.20918,-0.1479,-0.8486,-0.35184,1.5292,-1.0141,0.13386,-0.65174,0.66818,-0.25085 -2.6466,-0.68751,-1.4192,-2.0065,1.0112,1.3892,-0.99729,-2.072,-0.635,-0.37381,-0.8705,1.4382,-0.37135,-0.25322,0.64121 3.5435,-1.1968,-0.77687,-0.49599,2.0283,0.62625,1.5814,0.10384,-0.65234,2.4958,-0.048144,0.61786,-1.6473,-1.0299,0.85338 0.52669,-1.6182,2.8738,1.4548,1.1079,2.7637,1.5111,-0.17767,0.75759,-0.27855,-1.0137,-0.074272,0.71918,0.22415,-0.29283 0.9251,0.092156,2.7226,-0.059185,0.26849,0.695,0.15634,1.6329,2.4429,-0.43644,-0.72438,0.65963,1.2923,-0.50112,0.94675 -1.6882,3.0526,-0.067393,0.91617,0.34113,0.35387,-0.62251,2.2936,-0.47616,-0.56688,-0.44105,-0.41253,0.90824,-1.0949,0.98655 -1.7217,4.2047,1.488,0.03855,0.66401,-0.14764,-0.54747,0.9119,-0.94725,0.18214,-0.067253,1.3169,-0.065238,0.38153,-0.37717 1.0669,3.124,-0.068594,-0.50035,-0.11194,0.34532,-2.224,-0.44335,0.76691,0.55406,-0.052571,0.051652,1.0604,-0.5036,-0.42233 -0.57212,2.8769,-0.66078,1.7112,0.30636,0.65006,-0.88006,0.3201,0.38397,1.5136,-0.80003,1.0702,0.46725,0.33723,-0.53694 2.3801,1.3798,-1.676,-1.4043,-0.47641,-0.16445,-0.50954,-0.30712,1.1239,1.8137,1.2616,-0.79059,-1.759,0.028684,0.96036 1.0823,3.0451,-1.7906,-0.3549,0.12033,1.0009,-0.15504,-1.323,-1.583,-1.3477,0.074559,-1.4412,-0.47012,1.0563,-0.50325 2.4857,1.0065,-1.256,-1.0255,0.42773,0.55036,-0.58102,-0.78367,2.6374,1.0606,0.67708,-0.065224,0.57004,-1.0264,-0.090617 3.2406,1.8563,-0.55609,-0.70692,0.17171,0.26904,-0.92466,-0.47543,1.9754,0.86148,-0.64471,-0.817,-0.3825,-0.19663,-1.1906 -0.0072213,3.6184,-0.15862,-0.38155,-0.2114,1.3651,-1.7069,0.27548,-0.57175,0.77702,-1.0468,0.032329,0.95154,-0.55612,-0.68812 -0.026489,1.6661,-0.62361,1.5526,2.2712,-1.0522,-1.3882,1.5892,0.91539,-0.99423,-0.014638,-0.051353,0.80106,0.49421,-0.46529 1.299,3.7203,-0.21316,-1.2262,-0.17607,0.57136,-1.3377,-0.79538,0.17815,-0.33554,-1.0825,-0.4534,0.35155,0.41958,-1.0848 1.4736,3.5175,-0.85474,-0.37061,-1.0946,0.15125,-0.88987,-0.46952,-0.53741,-0.014945,-1.2678,-0.83769,0.19709,0.33843,-1.1895 0.67253,2.5709,-0.82099,-0.12037,1.1972,-0.52235,-1.6099,-0.81658,1.11,1.7451,0.83002,0.096733,0.7435,-0.50118,-0.48667 1.1249,0.71207,-0.72359,0.33804,2.0849,1.6862,-0.87201,-2.7579,-0.05331,0.16586,0.72401,-0.62151,0.88177,-0.3712,0.28667 0.030839,2.8353,-1.2916,-0.73193,-0.67335,0.72661,-1.457,-0.40063,0.70413,1.1705,-0.17693,0.7341,0.34999,-0.44519,-0.62937 4.3205,-0.20712,-1.5737,-0.73153,1.7974,1.4637,1.6888,-1.5813,0.72587,0.52313,0.47191,0.37266,-0.54954,0.71314,-0.50881 -2.1156,3.1575,0.13322,0.56568,0.53797,-0.26592,0.14717,0.35822,-0.060707,0.8351,-0.36506,1.6742,-0.17524,0.16009,-0.20753 0.83676,1.1231,2.2305,1.1122,-0.31353,0.92988,-1.0359,-1.0713,2.0306,-0.69317,-0.87827,1.2364,0.028872,0.54234,0.091807 1.8243,0.12918,1.1659,1.4666,1.2013,-0.63641,-1.3728,0.32564,1.4913,-0.56183,-2.0401,0.041456,0.88675,-0.92648,-0.86309 3.8981,0.67592,-1.1409,-1.3009,0.48036,-0.15541,-0.078741,0.47883,1.7311,0.81274,0.89651,-1.2596,-1.9872,-0.15348,0.20428 0.69455,0.86073,-0.94159,2.1826,2.9823,0.073425,-1.8814,0.034189,0.92007,0.2183,0.6583,-0.52702,0.7788,1.0607,-0.29961 0.48859,2.9556,1.5793,-2.6253,-0.36264,0.022323,0.66136,-0.22606,-1.1692,-0.48373,1.666,0.14594,-0.40438,0.92759,0.13424 -2.8862,-2.5832,1.284,-3.4387,1.18,0.9112,-1.5976,-1.9387,-1.6531,0.057221,-1.5093,0.31631,-0.45577,1.3957,0.83845 3.1059,0.3994,0.93701,-0.52361,2.3895,-0.054266,-1.3083,-2.3332,1.617,1.4023,1.2035,-0.54961,-0.95465,0.59226,0.54143 -1.8405,0.44353,0.99554,-0.085556,-0.081931,-0.65373,1.8511,-1.2521,0.86029,1.5055,-0.35546,1.1112,0.5124,-1.9811,-0.098702 -1.7116,-1.5314,1.0558,-3.9412,0.0059599,0.22117,0.62764,-2.313,-0.88115,0.16585,-2.0147,-0.30493,-1.7024,1.0543,-0.19698 -3.0253,1.2405,-0.79318,0.17498,0.32886,1.2186,1.6435,-0.25884,-0.23057,0.82343,0.63857,-0.84174,-0.39788,-1.4371,-0.63467 -3.4176,1.5005,-0.65382,-1.2297,0.51797,0.98158,1.6215,-1.3362,-0.89943,0.37778,-0.035556,-0.79575,0.76496,-0.91585,-0.33415 -2.0025,-1.8189,-1.8886,-0.59982,1.1597,2.0475,-1.7024,-1.5132,-0.72229,-1.1856,-1.201,2.2661,-0.89783,0.7672,0.80474 -3.5551,-1.6856,0.56811,-2.8997,1.2477,-0.0067397,-0.57207,-2.6322,-1.0951,-0.78363,-1.1439,0.38153,0.17431,-0.07005,0.53347 -4.0448,-1.6881,0.40312,-2.0262,1.4158,-0.86609,-1.0678,-1.6693,-0.084814,-0.39935,-0.78972,0.80268,-0.015061,0.6273,0.55256 2.127,1.6508,-0.052745,-1.2417,-0.48862,1.7017,0.66917,1.562,0.51081,-1.3037,-0.87653,1.1094,0.069081,-0.42194,-0.38882 0.37624,2.7488,0.47652,1.6149,0.63064,-0.5984,-0.74487,-1.1801,0.75062,0.5568,-0.4493,1.1246,0.55103,0.88772,-0.71784 -2.1868,-2.7522,1.0707,-3.4046,0.77455,1.2595,-1.8306,-0.79561,-0.63941,-0.1599,-2.4805,-0.045366,0.49772,0.82192,1.1946 -2.7616,-2.6798,-1.4371,-1.2822,0.83526,-0.057811,-2.7731,1.0289,-0.42749,-0.95651,-1.4705,0.72047,-0.52597,0.59906,2.2661 -2.7152,-1.4534,-0.89173,-1.4358,2.1947,0.48855,-1.3843,-2.3411,-1.3836,-1.4989,-1.3724,1.2294,-0.30275,0.31652,1.762 -2.2984,-1.714,-1.0508,-2.1975,1.1544,0.92033,-1.4887,-1.8328,-1.2511,-1.0436,-2.2914,1.0693,0.15297,0.03179,1.7686 -1.1025,-1.9201,0.055231,-3.3632,0.71597,1.4852,-0.58203,-1.6776,-1.4055,-0.68178,-2.0899,0.84497,-0.83676,1.7561,1.2037 -3.3918,-0.81103,-2.8891,-0.32239,0.12494,0.46514,-0.42389,-0.59368,0.10932,-0.83262,-0.67639,-0.0945,0.16364,1.0614,-0.45894 -0.57297,-1.2269,1.1098,-3.8968,-0.15487,1.1654,0.53687,-1.0182,-0.57401,0.11992,-0.94258,-1.0502,-1.6897,2.3441,0.018753 -2.3632,3.8745,-0.073391,0.25681,1.2636,0.55825,-0.48879,1.8464,-1.2856,-1.1638,-0.28495,0.78636,-0.20036,-0.5525,-0.79588 3.061,1.1694,-1.4055,-0.19826,0.59839,1.3098,0.74844,-1.7944,-0.72591,0.27453,0.42838,-1.8418,0.73302,0.52575,0.83583 -1.8092,0.47064,2.4568,-0.14631,-0.19228,-0.022411,1.5906,-0.99177,1.3806,1.5299,-0.080414,0.30639,-0.076998,-0.67292,0.61518 -1.8581,0.36783,1.343,1.8535,0.61259,-0.943,2.0775,0.32046,0.58291,-0.47349,-0.70988,1.2185,0.62649,-1.8674,0.33799 3.0423,0.68227,3.0542,-1.4485,0.76039,1.4526,-0.5821,1.3219,1.2194,-0.74601,-1.723,1.6636,0.11118,0.44261,-1.3333 3.042,0.17121,1.025,0.6812,2.7247,1.5566,-1.54,-1.687,0.13525,-0.097538,0.74415,-0.65282,0.39774,-0.89987,0.49717 -0.84308,1.4833,2.3018,1.7392,0.67554,-0.76093,0.53409,0.022351,1.7434,0.17502,-0.7281,1.4994,-0.023468,-1.496,0.93559 0.93911,2.9572,1.7294,-0.25449,0.70428,-0.3352,0.18133,0.21653,0.15161,-0.34954,-2.3487,1.0591,0.79879,-2.067,-1.3697 3.1341,0.7547,1.2682,-1.5613,-0.08602,0.87056,-0.64342,1.2513,1.9464,-1.1736,-0.91648,1.5497,-1.6612,0.46833,-0.52197 2.0803,1.0129,1.4214,-0.69075,0.28799,0.80315,-2.1253,0.20509,2.3736,-0.33757,-1.1694,0.68165,0.24018,0.080193,0.21678 2.4016,2.291,-0.91901,-1.7628,-0.97374,0.27914,-1.0232,-0.69527,0.8239,-2.1129,0.15757,-0.22123,-0.74954,0.86535,-1.0457 3.2313,1.5896,0.32457,-2.6043,2.2105,-0.79829,-0.023128,-1.2023,0.85354,-0.5485,0.53315,0.52819,1.7672,-0.9583,-0.96222 0.93172,2.2399,0.084843,1.1534,0.57996,0.16988,-1.4976,-1.4854,1.4811,1.0693,-0.22533,0.46385,0.57133,0.10653,-0.75524 2.3452,1.5965,-1.5389,-0.58036,1.9355,-0.30349,-0.8546,-0.73184,-0.96472,2.1699,0.92871,-1.1831,-0.15035,-1.4325,0.91015 1.2603,2.6756,0.57479,1.0982,2.2295,-0.10384,-0.66743,-0.87107,0.092787,-0.36024,-1.1984,1.0112,1.6139,-0.95814,-0.99307 2.3735,-1.9324,-2.1683,0.13241,1.0483,1.7177,1.7379,1.4468,1.0024,0.62723,0.48459,1.2416,-0.27506,-0.39267,1.2516 1.7619,-1.7476,-2.5277,0.22699,-0.18364,1.775,1.3919,1.1764,-0.15422,-0.72211,0.15561,1.7844,1.1656,-0.9966,0.016915 -2.3999,-0.048756,1.5333,1.1021,-0.18457,-1.1125,1.2099,0.30452,1.9643,-0.2994,0.50764,0.26033,-0.16265,-0.98477,0.85919 1.4982,1.9263,0.8866,1.3594,0.57485,-0.57674,-0.97418,-2.6862,0.13256,0.18287,0.021122,0.37043,-1.1787,0.19678,0.0084286 -3.5091,-1.0829,-0.1595,-2.0458,1.4704,-0.61563,-1.6057,-1.9018,-0.067013,0.21496,-0.45009,1.8875,-0.68476,0.94523,0.33688 -3.5243,-1.5016,0.10482,-0.91434,2.0124,-0.98179,0.72415,0.42306,0.57214,-0.42025,-0.21699,-1.2793,-1.5051,0.037047,-0.1539 -2.8742,-1.4273,2.0361,-1.468,0.96293,-0.088505,0.30421,-0.62201,1.8574,0.25511,0.041436,-0.63475,0.60091,0.57405,-0.063817 3.0753,-2.3824,-1.0604,-0.35003,1.7314,2.9095,1.0045,-0.15225,0.57226,0.091079,-0.36614,0.49049,0.44264,-1.0093,0.93531 1.7365,2.7494,-0.94111,-3.555,0.38942,0.82517,0.075605,0.41421,-1.0591,1.0692,0.82638,-1.4794,-0.81822,-0.39741,0.40471 -2.8197,-0.57251,0.33868,-1.6974,1.1078,0.54423,-0.50562,-0.49171,0.53403,1.6154,-0.54406,-0.46818,0.21044,1.5915,-0.045674 2.5506,2.3219,0.96718,-1.0783,0.015935,0.68653,-1.8014,-0.89753,1.6964,-0.58739,-0.56229,0.21222,-0.27197,-0.3629,-0.31826 -2.4032,-0.49244,1.2236,-0.9437,0.46215,-0.76517,0.51404,-0.97926,1.7901,-0.26389,0.33593,-1.1177,1.0806,1.1824,0.064701 0.355,2.6984,-2.9514,-1.4537,0.66349,1.2127,-1.7374,1.474,-0.80568,-0.039535,1.8105,-1.529,0.29238,-0.31574,-0.19609 -4.2945,-0.38435,-1.9515,-1.3768,1.4111,-0.13963,1.0235,-1.2276,0.10227,-1.6828,-0.43093,-0.15356,0.30295,0.2368,-0.72893 -1.0822,-2.1252,0.65071,-0.97352,0.32585,0.85191,-0.89237,-1.7301,1.404,1.4061,-0.79411,-0.61237,-0.64089,0.1035,0.92835 -1.2987,1.794,-1.143,1.1452,-1.382,1.0182,0.47534,-0.10837,1.2333,1.1727,-0.14981,1.5491,0.13047,0.21235,0.4491 -2.0759,-1.4286,-0.59675,-0.070692,1.8514,0.31093,-1.2388,-1.6725,1.0124,0.91799,0.066431,0.70039,-1.3706,0.80826,0.36858 -1.8722,-1.1453,2.3859,-1.6498,-0.40235,0.79143,0.82925,-2.2837,1.4135,0.83357,-0.25425,-0.15286,-0.0013312,0.45229,-0.62262 -0.19939,3.2743,-0.508,-0.53336,-1.7923,0.63186,0.87131,0.24724,-1.0787,-0.69771,-0.33607,-0.15189,-1.0348,-0.70992,0.51945 -3.4032,-1.3697,-0.39931,-1.7369,1.3304,-0.60312,-0.9169,-1.9784,0.82783,-0.054886,-0.00031132,1.1895,-0.078312,1.4374,0.22659 3.6727,-0.67221,0.48025,-2.5118,3.17,-1.3822,1.0384,0.5861,-2.2548,2.1114,2.0877,0.26694,-1.3213,-1.4416,1.5951 0.96858,3.2612,0.57348,0.36325,-0.012143,0.082083,-0.7517,-0.23829,1.3188,0.59174,-1.9378,0.95672,0.13822,-0.87786,-0.5642 0.31619,3.7824,-1.626,-0.30567,-0.52258,1.2256,-1.2909,-0.87765,-0.79337,-0.071013,-0.029105,-0.30237,0.75857,0.4381,-1.0954 -0.8622,2.8089,1.4874,0.15143,-0.53922,0.31354,-0.71776,0.75684,0.99172,-0.65333,0.024443,0.94897,0.86349,-0.92052,1.0607 3.5496,2.25,-0.73448,-0.39067,0.38437,0.43287,0.3899,-0.56672,1.0025,-1.3177,-0.22613,-0.23776,-1.372,0.72006,-2.1211 -2.7865,2.88,-0.60482,0.41478,0.03686,1.62,0.57629,2.301,-0.67488,-0.57904,-0.41315,0.44722,0.67668,-0.5585,0.92717 0.71451,3.4056,0.70387,-0.27498,-0.56052,1.8934,0.5087,-0.45371,0.32774,0.1676,-0.90542,0.67631,0.31322,-0.25009,-0.157 -2.2099,2.4444,-0.93575,0.5144,-0.6072,0.45722,0.050258,2.2701,-0.51679,-0.26354,0.095237,-0.72487,1.212,-1.5921,1.4561 0.90035,3.4826,1.4061,-1.3498,-0.34865,0.36149,-1.8662,0.1448,-1.3978,-0.71181,0.52841,-0.10822,-1.8501,-0.10575,-0.32992 0.061848,-0.74291,2.282,2.1395,1.3183,-0.086078,0.72317,0.53172,1.8093,-1.5653,-0.16237,-0.029554,0.23797,-1.3965,1.4927 1.9592,1.6599,1.2876,1.3019,-0.074966,0.45773,-0.99301,-2.1138,1.1913,-0.18843,-0.80152,0.49462,-0.88439,0.18657,-0.24179 -2.6807,-0.0019068,-1.6932,-0.093508,-0.51396,-0.25384,1.192,0.23253,0.84352,-0.19218,-0.16629,-0.79393,1.0866,-0.94698,-0.13208 2.6051,0.52512,0.13264,-0.074981,1.297,1.6591,-0.65248,0.41089,1.5849,-0.59169,-0.66026,1.2878,0.67685,-1.0665,-0.91994 -0.91386,1.9326,-0.34145,2.4589,1.6822,-1.3729,-0.0052652,1.7006,0.35515,-0.8943,-0.93688,0.53168,-0.77652,-1.1085,0.34598 3.6832,-0.37539,-0.63145,-0.067791,2.85,2.2217,0.22837,-0.40475,0.18459,-0.86519,-0.17184,0.95744,0.48171,-0.21732,-0.71988 -1.5508,0.33583,0.21722,-1.2108,-0.68651,2.0533,0.68656,-1.8945,0.5843,-0.89832,-0.33318,-1.0022,1.1573,0.080387,-0.51544 -2.832,-2.5564,2.7041,-0.40611,1.2674,0.049387,0.075261,0.73127,1.7794,0.37699,-0.11377,-1.0636,-0.18898,1.5675,0.41222 0.051687,3.613,2.5481,-0.19491,1.8016,-1.5324,-0.8786,-0.50212,-1.2318,0.80403,-0.2485,0.19398,-1.0624,-0.25144,-0.4092 -1.3071,0.71141,0.40575,-0.32245,-1.5755,1.2199,0.51183,-0.054192,1.2591,-0.13002,0.55678,-0.64104,1.1472,-1.5892,1.2311 -1.1224,-4.6636,0.60831,0.65411,2.3926,0.85277,-0.2639,1.0804,-0.81259,-0.050148,-2.1135,-1.5075,1.4005,0.48524,0.037163 4.6739,0.4767,0.46593,-0.43064,1.751,1.3742,0.28371,-0.56927,0.35737,-2.0939,-0.5277,1.1672,-2.1191,0.51887,-2.0954 -1.3421,-3.5287,2.9442,-2.9107,1.3149,-0.16057,0.17278,-0.59267,0.64669,0.89658,-2.2626,0.11862,0.41988,-0.45106,-0.32876 -0.83788,-3.0301,2.167,-0.96768,0.71735,1.6213,-0.036292,0.12066,0.62966,0.005643,-0.99101,-0.0089738,1.9282,0.43971,-1.7554 1.6499,2.9441,1.4897,-0.40357,0.5423,-0.3251,-2.1233,-1.4937,1.0425,0.27677,0.21893,0.36531,-0.3368,0.13127,-0.49258 -0.55811,0.78967,2.0175,1.2115,-0.1625,-0.19951,0.046022,0.70172,1.9249,-1.5123,0.27566,0.98262,1.0341,-0.22991,0.64707 -0.61013,-4.5845,0.46557,-0.20814,1.8309,1.1456,-0.41312,0.25345,0.44199,0.73403,-2.7104,-0.0044715,1.6247,1.3026,-0.63259 0.37031,-2.8984,2.2121,-1.9469,0.64295,1.563,1.5523,1.4944,0.82842,0.7613,-1.7009,0.037907,0.21593,1.3403,-2.2433 -1.0932,-4.1163,1.0703,0.23299,1.3383,0.10765,-0.23087,1.2912,-0.033586,-0.21703,-1.6759,-1.2076,1.5286,-0.19339,-0.71454 -0.96262,0.97435,1.168,1.081,-0.31217,0.63752,-0.60439,1.4591,1.7338,0.47389,0.72346,0.063514,0.86572,-1.1442,1.0536 -2.719,2.1095,-0.69393,1.5537,0.92094,0.81907,1.0561,1.8306,-0.81782,0.96473,-0.45434,0.84231,-1.1962,0.45486,-0.011403 2.0292,2.3291,0.73815,-1.3487,0.40899,1.4062,-1.2385,-0.027815,-0.79038,-2.3442,-0.79855,-0.90029,-1.0703,-1.8595,-0.51114 0.55072,-2.681,2.7387,-0.72898,1.2097,1.4657,1.4982,0.80199,1.0023,-0.21417,-0.34054,0.53001,1.3408,0.10514,-1.5604 -0.10744,2.8238,0.8279,0.98278,0.77158,-0.99698,-0.85573,-0.041301,0.66146,0.72037,-1.1022,0.8527,0.79585,-1.4784,-0.55244 -1.9899,1.1355,2.8477,-0.36192,-0.37464,-0.47067,1.5869,-0.83616,1.4073,0.27867,0.046239,0.85516,0.43939,0.04527,0.42088 -3.6711,1.4238,-0.066244,-0.57695,0.75427,-0.4959,1.4611,-0.35632,-0.009337,2.0134,0.68107,0.26488,0.22276,0.42327,-0.68083 -1.3265,-0.83794,-1.5431,-2.1861,-0.3472,-0.65212,-0.63341,-2.9989,-1.4801,0.23416,-1.2757,1.9613,-1.0544,1.2753,0.32365 4.7832,-0.57553,-0.29754,-2.2201,2.7379,-0.52463,1.6265,-0.78301,1.5475,-0.34002,0.7694,1.8687,-0.75236,0.32454,-1.5983 2.3995,0.56603,-1.1024,-2.5829,0.15518,-0.87999,1.995,1.147,0.33101,1.4984,0.15049,1.8131,-2.6022,0.95775,0.31269 -1.9933,-2.712,0.70576,-1.1318,0.6187,0.97207,-1.2989,-0.80752,1.3533,1.2008,-0.98026,-0.2202,0.79771,2.5069,0.49896 -0.61892,3.6617,0.77559,-0.14037,-0.35077,1.2771,-0.66279,0.13828,-0.47012,-0.58419,0.79435,1.0496,0.91863,0.70253,0.22848 -1.4182,0.87303,3.7535,-1.398,-0.18708,0.64373,0.67279,-0.571,0.69489,0.72928,0.53602,0.25258,-0.70705,-0.6178,0.29488 -2.8182,0.20191,-1.6021,0.09648,0.026782,1.6277,1.2378,-1.8794,0.55349,-0.5832,0.38029,-0.4477,-0.010178,0.11156,-1.5559 -4.1147,1.8157,-1.0632,-1.0293,0.41435,0.39295,1.6104,1.717,-0.20725,0.76795,0.43393,-0.4187,0.52673,-0.90786,-0.19238 -1.1346,0.99344,1.5838,-1.4075,-1.345,3.0632,0.52158,-0.4846,-0.17749,-1.0912,0.58006,-0.83007,-0.0001563,0.30942,0.44726 -2.7478,0.31181,0.58373,-0.85308,-0.68434,2.8006,1.0647,-1.4714,0.098763,-0.62278,0.90706,-0.73813,0.22894,0.39263,-0.77177 -2.8721,-0.70485,0.57957,-1.5768,-1.1019,1.2919,-0.31997,-1.9916,-1.1232,0.39059,1.5293,0.013991,-0.83025,0.47481,-0.87766 -2.3244,0.70575,-2.9561e-05,1.2297,-0.10179,-0.044557,1.3164,-0.34564,1.2516,0.34675,0.97078,0.89245,-0.60143,-1.0374,0.044696 -3.216,1.9572,-0.43482,-0.77355,-0.73979,1.5555,1.2195,-0.45887,-0.84595,0.7294,1.2939,0.71463,0.13434,-0.56663,-0.54311 -3.6049,-0.22781,-1.4551,-1.2279,0.54368,2.1236,-0.17523,-1.7594,-0.41936,-0.30678,0.48985,-0.22999,-0.022078,-0.19119,-1.2382 -2.7248,0.15657,0.80684,-1.0328,-1.4158,2.2459,0.63444,-1.6857,-0.22681,-0.54843,1.5805,-0.12843,-0.23004,-0.36183,-0.77891 -0.34792,2.0516,3.5609,-0.65285,-0.20681,0.88408,-0.47284,-0.14058,0.3121,-0.56668,-0.15595,0.70472,0.31646,0.098916,0.66462 -1.4966,1.9216,2.5316,0.18387,-0.90876,0.67556,0.19263,-0.32931,1.0355,0.31985,0.62041,0.94685,0.23533,-0.24649,0.5543 -0.50085,4.3001,0.86244,-0.42816,0.26877,0.64652,-1.2512,-0.66114,-1.1014,-0.98574,0.011731,0.94555,0.46352,0.53044,-0.80877 -2.3746,0.35865,-0.064736,-1.8575,-0.42265,0.030324,1.2623,-1.8767,0.46298,1.4281,-0.068821,0.51628,0.56939,-0.20162,-0.32223 2.4296,1.0872,1.9362,1.7728,1.7556,0.44499,-1.3048,-1.3659,0.90088,-0.31498,-0.2201,0.3874,0.011569,1.3089,0.35584 -2.9889,0.28293,-2.9574,-1.2696,0.16977,0.43671,0.23856,-1.2551,-0.15774,-0.017866,-0.13497,1.1162,0.57616,1.134,-1.4205 1.9631,2.1219,0.88073,1.0402,0.56152,-0.072445,-1.5212,-2.068,0.83927,0.058421,-0.012456,-0.36279,-0.71372,0.33785,-0.03294 -3.2327,-0.52742,-2.3094,-0.69018,0.15284,-1.299,-0.097324,-0.41422,1.3123,-0.35332,-0.4041,0.054872,0.49743,0.89191,-0.1213 -3.4742,0.23997,-2.0718,-0.98704,0.90629,-1.1873,0.45579,-0.45199,0.79471,0.49955,-0.14697,0.37817,0.75919,0.69084,-0.54998 3.1295,1.9918,-1.7626,-1.3784,-1.1534,-0.52383,-0.93636,-0.79937,1.1892,-0.038883,0.51334,-1.0542,-0.65816,-0.17381,-0.92798 5.2915,-1.0977,-1.393,-0.62231,1.7307,3.2767,1.09,-0.64617,-1.1674,0.415,0.33914,-0.40407,0.2806,2.0207,-0.69271 -3.151,-1.3669,-2.3685,-0.97294,0.59279,-1.3389,-1.3431,-0.40485,0.87316,-0.68095,-0.90167,0.92916,-0.55925,0.11334,0.53007 1.3503,3.1619,-1.8613,-0.99525,-1.3894,0.81727,-0.86277,-0.57698,-0.44804,0.25015,-0.51887,-0.85125,-0.2349,-0.069438,-1.1172 2.8682,1.3304,-1.1755,-1.2812,2.7439,0.22992,0.24618,-1.3745,-1.8004,1.8548,0.19573,-1.5176,-0.74529,-1.8973,0.87418 -0.64656,1.2205,1.048,-0.0039454,-0.61687,0.70218,-1.3607,2.4506,0.4566,-0.68249,1.0358,0.13993,0.89597,-1.1449,1.6862 -1.4389,2.9296,2.1629,0.48672,0.017984,-0.22051,0.10038,0.59549,0.24631,1.2704,-0.1538,1.0075,-0.96295,-1.0828,0.9742 -4.662,1.129,-1.5596,-1.2628,1.3358,0.31538,1.3102,1.2025,-1.0593,0.24216,0.35555,-1.1792,-0.12526,-1.6353,-0.486 0.62911,2.4247,2.6221,0.63458,-0.029745,-0.51196,-0.59093,-0.83677,1.1726,0.22906,-1.0647,1.5604,-0.55794,-0.73423,0.43119 2.8233,0.85401,0.03041,0.63447,-0.43414,0.99231,0.53275,-0.90217,0.73984,-0.25257,-0.66296,-0.54664,-1.0657,1.8155,-0.82941 -2.1443,0.0089435,1.9881,1.9412,1.741,-0.19189,2.2998,-1.6716,0.31486,0.2484,0.028018,0.70086,0.24583,-0.33042,0.36851 -2.5172,1.8236,-1.9414,0.54633,-1.1231,1.6597,1.6489,0.46014,0.1466,-0.35172,0.46522,-0.029923,0.70415,0.13294,-0.035079 -0.71172,-0.91712,3.6398,1.5515,0.95959,-0.69768,-0.028029,-0.16599,0.047467,-0.41628,1.1556,0.46912,-0.50704,-0.10604,0.0046134 2.1173,2.5394,-2.5543,-2.8399,-0.088477,1.0821,0.21647,0.29508,-0.36134,1.0819,0.53542,-0.99663,-0.12309,-1.5033,0.65245 -1.3185,3.933,0.25224,-0.23499,1.3835,-0.2184,-1.5016,1.2738,-2.0043,0.67635,0.40032,-0.12462,-0.98331,-0.53804,-1.4961 1.267,2.4262,-0.81585,-2.4056,1.8854,-1.0626,-0.60949,0.48864,1.054,1.2616,0.88805,-0.54932,2.1324,-2.0209,0.70419 1.7966,-1.8643,3.9698,0.95904,2.5482,2.966,0.91988,-0.50091,-1.093,-2.2608,-1.3013,0.58642,0.63479,0.31489,0.50142 -1.5386,3.2008,-0.23495,0.16286,-1.6137,1.222,1.0016,-0.51455,-1.3536,0.083067,0.054266,0.99958,0.016437,0.024187,0.58686 -2.514,-2.6498,2.4244,-0.13021,1.9199,-1.5633,0.73339,-0.75663,1.0739,-0.21911,-0.90831,-0.65372,0.30757,-0.76829,-0.30141 -4.0625,-0.71252,0.82182,-1.102,1.1325,-0.94458,0.45944,-0.99598,1.4143,0.032004,0.69131,0.044092,-0.37456,0.76685,-0.59617 0.97927,-0.74331,4.1589,0.83928,1.2891,0.93682,0.87157,-0.29573,0.12427,0.53525,-0.81422,-0.62118,-1.3812,-1.8711,1.3523 -2.0092,-1.4006,3.7165,0.68837,1.6968,-0.57476,0.60217,0.21193,1.1316,-0.43853,0.51372,-0.18694,-0.42134,0.1979,0.43874 -2.7731,-0.035898,-3.0988,-0.17993,-0.18193,0.94678,0.99333,-1.1777,0.85689,-0.69066,-0.57452,-0.20545,0.15151,0.33939,-1.2316 -3.9812,1.4371,-0.19741,-1.2424,0.67208,0.081654,1.2882,-0.62929,-0.045256,1.7276,0.60685,0.16119,0.65715,0.44544,-0.85213 -2.2634,-0.024477,3.9657,-0.79787,0.11543,-0.022209,0.34904,-0.6597,1.2821,-0.28567,0.72232,0.36058,-0.46618,1.0968,0.15981 2.529,0.73935,-1.6575,-3.1371,1.4613,-0.19202,1.7754,0.88383,-0.31417,-1.0167,1.6092,0.19381,0.9979,-1.822,1.7888 1.9838,-2.2749,3.5301,0.012366,3.7454,-0.87805,1.4355,2.5956,-1.4094,-0.36384,-0.056867,0.09746,1.1969,1.7219,-1.0871 -4.8274,-0.12535,-0.85071,-1.4838,1.4208,0.53643,0.90991,-0.2632,-0.15227,-1.724,0.19546,-0.88816,0.19742,0.21698,-0.7264 -4.5477,-0.75933,-1.5258,-1.5695,1.6336,-1.109,-0.16751,0.56281,0.22475,0.02876,-0.63621,-0.17496,-0.064999,1.0705,-0.5493 -4.12,-0.16434,-1.1809,-2.2072,0.63055,-0.81444,1.165,0.36735,-0.52148,-2.04,-0.81804,-1.7169,-0.66379,0.17539,-0.07874 -3.054,0.21988,0.75674,-0.80127,-0.51329,-0.70565,0.56755,1.984,0.60265,-1.652,0.36655,-1.989,0.58423,0.25104,0.35909 2.0459,0.62932,-0.28319,1.2438,-0.16374,2.4615,-0.77973,-1.8083,-0.050142,-1.3486,-0.39655,-0.2508,0.70673,0.97483,0.40817 -2.4351,0.094217,3.1307,-2.3399,1.4649,-0.42648,0.044212,1.0946,-1.4843,-0.66783,-0.54811,-1.0089,0.6872,1.2742,-0.073996 1.5581,2.1735,-2.1581,1.0064,0.51784,1.7875,0.10193,-1.2534,-0.91287,0.030433,-1.9088,-0.8623,-0.32527,-0.29816,-1.3068 -2.5995,-1.6721,0.017406,-2.2126,3.6877,0.85162,-0.45998,-1.5936,-1.8355,-0.47617,-1.9869,1.2228,-2.2181,0.51723,1.3118 -3.565,-1.4592,-1.7365,-1.2246,3.098,0.0069772,0.0516,-1.567,-0.2414,-1.4061,-2.238,0.8692,-1.3536,-0.082893,0.35007 -3.328,0.039365,-2.1381,-0.8393,-0.2309,0.20104,-0.067517,-0.058148,0.74111,0.70185,0.69623,0.23244,-0.14038,-0.77368,-1.0986 -2.0842,-0.27492,2.5915,-0.14603,1.4834,-0.26451,0.54908,1.8392,1.2315,0.10605,1.4666,-1.0057,-0.42552,1.5797,0.46011 0.84063,1.5652,-0.60912,1.1985,0.46367,-0.048318,-1.812,-0.88837,1.0503,1.7618,0.35385,-0.1611,-0.21046,-0.355,0.1812 -3.4245,0.2348,-0.44501,0.26792,-0.27935,0.68529,1.0705,0.85507,1.3988,0.35016,0.64747,0.84817,0.13011,1.5408,-0.083149 0.48891,3.8289,-0.36305,0.054559,0.73607,0.04287,-1.2941,-0.59453,0.14441,1.9226,-0.63184,0.11298,0.29793,0.30431,-0.93856 2.1305,-1.3394,-1.6466,0.015335,0.65865,0.17927,1.5389,0.53253,-0.85213,0.78672,-1.0956,1.963,0.75534,-2.2265,-0.54521 -4.0335,1.1219,1.1451,-1.315,0.72994,-0.58185,1.2522,1.1898,0.1337,-1.2276,0.94738,-1.1035,-0.16341,-0.82025,0.052177 -3.0321,1.9621,0.80266,-2.1236,-0.1233,0.81563,1.4991,-1.6718,-1.7364,1.2783,0.49872,-0.65135,-0.66624,-0.12002,-0.58476 -4.6125,-1.0387,0.48125,-2.6814,1.9282,0.70028,0.01824,-0.90578,-0.603,-1.6005,0.023813,0.16806,-0.65936,0.57782,-0.91912 -1.6448,1.8531,2.9535,-1.3757,-0.75431,0.014589,1.7061,-1.2756,-0.43558,0.25014,-0.77189,1.2855,-0.42043,-0.18641,-0.106 -4.5254,1.0929,-1.3602,-1.3104,1.2958,0.38041,2.1948,0.87207,-0.072159,-0.45793,-0.67004,-1.1395,-0.0638,-0.086051,-1.1123 -3.1651,1.7582,-0.77549,0.35574,-0.44464,0.61286,1.602,0.13359,-0.94174,-0.9451,0.28711,1.0613,0.76553,-0.63273,0.21631 -2.9707,2.5952,0.84348,-0.55909,0.66935,1.7472,2.0951,-0.56659,-1.9956,0.18704,0.57941,-0.58439,-1.15,-1.3153,-0.3249 -4.4092,1.2038,0.67401,-0.91038,1.0698,-0.22203,1.1397,1.3386,-0.045674,0.97781,0.049116,-1.0471,0.17983,0.55402,-0.33536 -4.4064,0.25463,-0.50577,-1.5309,0.91503,0.55082,1.1137,-0.52775,-0.26776,-1.1716,0.16925,-0.79737,0.14189,-0.24483,-1.019 -3.4446,2.9181,-0.58216,-0.13617,0.57854,1.8311,1.5237,1.6549,-1.5805,0.56847,0.10428,0.80598,-0.75179,-0.55821,-0.57798 -0.059839,3.0688,0.35864,0.69662,0.48508,0.36677,-1.8263,1.1527,0.097921,1.2423,-0.94051,0.14513,0.37949,-0.71573,-0.88731 3.3686,0.92364,-0.039701,-0.41529,2.1592,0.22079,-0.22332,-1.5564,1.1438,0.30663,0.33388,0.76011,1.5219,-0.59649,-1.5942 -4.324,-0.022544,-2.3677,-1.8406,2.1804,-0.56985,-0.35373,-1.0693,-1.6275,-0.54595,-1.3628,0.93865,0.58907,0.91809,0.15311 -2.4183,0.54385,0.70059,1.3424,0.096725,-0.88557,1.407,-0.41753,1.2322,0.97101,0.11763,-0.39834,-0.37175,0.68851,-0.25368 -3.4938,0.4126,2.2619,-0.31001,1.4699,-1.4134,1.2725,0.89415,0.85221,-1.0781,0.81099,-0.3241,-1.1828,0.60374,-0.17286 -3.1372,0.35559,0.21178,-0.72704,-0.94951,0.66556,0.068628,1.2991,1.0563,-1.0045,1.3692,-0.33758,-0.14558,-1.4988,0.79222 -3.8752,1.0546,0.90503,-1.1671,0.39259,0.87869,1.5299,-0.58583,0.34387,-0.58305,1.3262,0.47301,-0.41653,0.17595,-1.2813 -0.80833,0.99574,3.9935,-0.75143,0.62194,-0.016513,1.0645,-0.73329,0.83783,1.1443,0.18914,0.20206,-1.1861,-0.54847,0.23883 3.7258,0.66413,-0.1627,-2.5287,1.05,0.73096,0.041231,1.2636,0.90268,-0.76458,-0.31531,2.3363,-0.4086,-0.16076,-1.8923 2.6792,-0.68642,-0.35229,0.396,1.4991,2.0392,-0.91249,-2.3093,-0.032923,-1.3727,0.22581,-0.067645,1.5877,0.30629,-0.37158 3.3556,0.90386,-2.0759,-2.0422,0.23693,-0.2191,0.05827,0.70581,2.0422,1.2324,1.3731,-0.69954,-1.3062,-0.36923,0.54837 -2.4099,3.167,1.1642,0.48676,0.9184,-0.78475,-0.56082,1.4247,-0.66066,0.74285,-0.012402,0.89382,-0.80639,-0.44889,-0.19552 -3.0585,2.8023,1.3668,-1.356,0.47562,1.4693,1.9446,-0.97364,-2.0832,0.25442,0.28847,-0.38427,-0.64136,-0.53193,-0.4942 1.5017,3.8461,-0.72885,-2.1276,0.48697,0.3782,-0.90968,-0.88184,-0.87932,-0.59219,-0.1301,-1.2446,0.30883,-1.6244,-0.49629 2.0097,0.044618,1.5889,-0.7658,1.6124,-1.1047,-1.9133,1.1752,1.6492,-1.2886,0.063038,0.68618,1.5348,-0.98669,-0.067638 0.88857,0.60715,-1.556,0.97965,1.3545,1.2201,0.17276,-2.0195,0.85562,1.4798,1.5402,0.39593,-0.16317,-0.038024,1.5423 -0.47739,2.6152,-0.90909,0.57559,-0.75964,1.8811,-1.4288,0.56428,-0.21605,0.25689,0.12245,0.27924,0.18592,-0.18388,-0.46966 -3.7137,-0.1577,-2.8668,-1.3563,1.8366,0.030096,-0.80423,-0.99056,-0.70363,-1.0056,-0.81959,1.9677,-0.11758,0.83854,-0.24763 -3.1224,1.733,0.90121,-0.19247,-0.097965,-0.39988,1.5643,-0.16198,0.13486,1.7238,0.37405,1.2152,0.18103,-1.1576,0.33131 -2.2558,-1.0211,2.5419,-0.26102,1.1326,-0.33611,1.657,-1.6935,0.84777,0.76385,-0.064567,0.47192,0.44821,-0.78371,-0.93012 1.9225,2.3985,-2.4033,-1.2814,-1.2447,-0.074695,-0.018108,0.58554,-0.0045866,1.4318,-0.66896,-1.3568,-0.45984,-0.14067,0.11345 0.38487,0.41938,1.8828,-1.7611,-1.5604,1.8999,1.1503,0.038257,1.7449,-0.81409,-0.19627,-0.19092,-0.52729,-0.052082,0.085728 2.7894,-0.23203,-2.1719,-0.67369,0.10715,1.5258,1.3404,-0.075367,2.0344,0.36483,0.90166,0.84278,-1.5227,-0.18402,0.3103 -2.069,-1.0565,-1.7533,-1.0446,0.2249,2.3887,-1.2265,-1.6787,-0.31742,-0.68051,-0.87436,0.43251,0.10444,0.048536,0.55652 0.54669,2.3905,0.48238,0.97961,-0.62791,0.65178,-0.85269,-1.1447,0.60127,0.81877,-1.1451,1.1253,0.48422,0.52876,-0.70384 -0.4498,0.87522,0.46611,1.9257,-0.96171,1.8241,1.1247,-1.3541,0.93087,0.48934,0.51718,0.18318,-0.084091,0.97371,1.2096 -1.1388,-1.7553,1.4009,-1.3737,-0.18082,0.293,-0.19482,1.9825,1.1681,-0.37325,-0.11371,-1.9076,2.0878,0.037221,0.63674 -0.56119,-1.4648,0.68394,0.23409,0.20961,1.6341,0.12191,-0.87988,2.5146,0.35075,-0.58905,-0.73682,1.1403,-0.42887,0.22195 -0.93595,-2.8785,0.91875,0.82373,0.71237,0.7575,0.52107,0.54305,1.6189,-0.074585,-1.1526,-1.9155,1.2516,-0.048558,-0.10079 -2.483,-1.5778,0.45216,0.759,0.93079,0.50916,0.57115,-0.72358,2.2242,0.89828,0.61486,-0.32921,-0.42136,0.72546,0.15343 1.4452,-0.44351,-0.48117,1.3488,-0.58479,3.0145,-0.55105,-0.78472,-0.087627,-1.5217,-0.66064,0.51724,1.2003,0.51694,0.47675 -0.77447,2.8282,-1.4667,-0.42245,-0.86969,1.0909,2.0585,0.57012,-0.92397,-0.24563,-1.5126,0.27529,-0.78395,-0.10194,0.67756 -2.3241,-1.1411,-1.1927,-1.6448,-0.42065,1.2063,-1.0583,-1.579,0.26519,-0.6917,-1.2121,-0.081582,0.67807,-0.2547,0.80762 -4.6569,0.18351,-1.6197,-1.9074,1.2146,-1.1232,1.4948,0.14462,-0.51729,-1.85,-0.62858,-1.3475,-0.16466,0.068647,-0.58399 -0.061663,4.0309,0.10613,0.15889,-1.0332,0.78281,-0.69973,0.15533,-0.80571,1.1845,-1.2861,0.72816,-0.025576,0.38214,0.0016213 -2.2834,-1.4835,-1.4503,0.4574,0.4339,-1.2944,-0.12153,-0.79126,1.2604,-0.28234,-0.64843,-0.29067,0.05261,-1.1493,0.17264 -1.5426,-0.66045,1.1748,-1.8592,-1.0824,1.545,0.39814,0.089141,1.0895,-0.47557,-0.19748,-1.2324,1.0818,-1.411,0.9832 -2.7197,-0.89868,-0.17006,-1.6863,-0.49819,1.181,-0.37487,-0.84235,0.59019,-0.91421,-0.3353,-1.3913,1.2525,-0.96518,0.81371 -2.2196,-0.72461,0.022237,-0.83383,-1.1261,0.24309,0.26517,-0.24151,1.483,0.23707,-0.17238,-0.76752,0.84891,-1.7697,0.47216 2.0447,4.0828,-1.0956,-1.9256,-0.050248,-0.3887,-0.48571,0.040063,-0.51578,-1.2351,-0.65661,-1.3278,-0.68804,0.22887,-0.66803 0.13256,-0.92735,0.45987,-1.4755,-1.0699,2.0083,-0.037316,-0.21203,1.4176,0.98333,-1.0516,-0.85861,0.78617,1.4256,-0.010584 -2.3129,0.97254,1.0316,0.29069,-0.2713,-0.73955,1.5607,-0.66027,1.1358,1.6958,0.060406,0.93494,0.42634,-1.3704,0.3655 -1.4967,-2.8439,1.064,0.71849,1.4175,1.6519,0.62368,-1.3164,-0.27819,-1.4861,0.60452,0.24184,1.4055,0.4295,0.52911 -2.6843,0.2979,2.4681,-0.71976,-0.2593,-0.978,0.42377,1.2249,1.2342,-1.2997,0.73447,-0.40177,0.47075,-1.0537,0.98103 -2.4548,0.36539,1.8871,-0.64763,0.48229,-1.1013,1.2347,-0.90893,1.4536,0.85849,0.075875,-0.59436,0.5511,-0.99608,0.35803 0.28584,1.6846,-0.87766,-0.062669,2.8435,-1.2262,-0.79766,0.63385,-0.20453,2.8197,0.88099,-0.66828,-0.33873,-1.4359,1.0875 -3.6353,0.013007,1.7125,-2.0412,-0.07618,0.5618,0.03939,-1.2004,0.23915,-1.1909,1.3296,-0.18329,0.41563,0.75691,-0.60673 -2.0425,-1.4832,3.0092,1.0972,1.9705,-0.70248,0.80425,1.0114,0.94945,-0.76647,0.56712,-0.82682,-1.2477,-0.36526,1.3039 3.9339,2.377,1.2627,-2.9169,0.84489,-1.676,-0.091766,-0.11439,-0.23171,-0.75789,-0.0046199,-0.0081107,-0.23316,-0.59882,-1.1759 4.7694,1.7139,0.29415,-1.4088,2.5277,-0.83301,0.81523,-1.2862,0.17966,0.42921,-0.32509,-0.145,-1.9049,-0.5639,-1.5447 0.28717,2.6051,-1.3674,1.7475,0.99017,0.051846,-1.4868,-0.13429,-0.49786,1.499,-0.14628,-0.34538,-0.25048,0.53275,-0.71315 0.54686,1.5435,-1.7582,0.80907,1.7993,-0.31162,-1.4362,0.39625,1.7439,1.3954,1.2026,-0.53628,1.0505,-1.1951,0.069308 -3.5987,-0.78508,1.2845,-0.48133,0.56438,-1.0863,1.1646,-0.42937,1.8468,-0.053757,0.45831,0.30869,-0.2577,0.22102,0.25615 -3.2123,-0.070159,-3.6523,-1.0959,0.04491,-0.35139,0.29668,0.24518,-0.32886,-0.91355,-0.72896,-0.47713,-0.082167,-0.027291,-0.34591 -4.2269,0.68941,-0.97923,-1.7849,1.1887,-0.36893,0.80921,-1.1511,-0.62597,0.15325,-0.061808,-0.39898,1.2321,-0.031337,-0.16212 -3.0435,1.0533,1.9188,0.11297,0.80104,-1.2775,1.1557,0.82851,1.0554,0.50125,0.91242,-0.43059,-0.2815,0.046903,0.19628 -3.7992,-1.0457,0.52575,0.070462,1.3573,-1.3835,1.1313,-0.25356,1.6945,0.19028,0.17597,-0.44826,-0.68068,0.23705,-0.35318 -0.89045,0.49481,1.3499,0.16769,-1.1833,1.1953,0.55276,-0.022433,2.246,0.99447,0.3301,-0.063765,0.59444,-0.86999,0.84197 -3.6487,-0.38136,0.44889,-1.2316,0.67753,-0.81525,0.40991,-2.0705,0.82985,0.50467,0.44333,0.77704,-0.15517,0.95983,-0.85283 -2.1089,-0.58023,2.2748,-3.4029,-0.065371,1.9256,1.1739,-1.928,-1.7687,-1.0573,-0.44607,-0.71852,-1.2357,0.88925,-0.1977 1.8351,0.92677,2.3459,-0.96307,-1.446,1.7386,-0.60564,0.75396,1.0241,-1.1165,-1.2754,0.99471,-0.85538,-1.0604,-0.19505 2.9,-1.4748,-3.3294,-0.22809,0.38118,2.6054,2.1361,0.78761,-0.019346,-1.0419,1.6219,0.89133,-0.10271,-0.34567,0.814 -3.1753,-1.4484,1.7007,-1.5426,-0.22852,-0.92795,0.54135,-1.6866,1.1369,0.28278,0.023675,0.31184,0.50771,-0.21784,-0.096988 -3.6014,-1.7472,-0.090346,-1.9513,0.22404,-0.12466,-0.73369,-2.4233,-0.2603,-0.36102,-0.1745,0.78137,0.086425,1.4719,0.15902 1.0689,2.8546,-1.0539,0.62167,1.1055,0.12108,-0.61778,0.45569,0.63887,0.72899,-2.2537,-0.92024,0.94909,-1.2623,-0.63297 -3.8041,-0.57645,-0.56288,-1.9963,0.72172,0.50691,0.023469,-2.7887,-2.0061,-0.13369,-0.54706,0.52556,-0.16153,0.72195,-0.69315 -3.6174,-0.021594,-1.2929,-0.36595,0.51398,-1.5387,1.2633,-0.048857,1.0813,0.5445,0.2345,-0.27411,0.22172,0.50902,-0.83749 -2.29,-2.0525,-0.87563,-0.87321,0.47328,-1.348,-0.087517,-0.73788,1.3372,-0.24541,-0.82034,-0.058903,0.66608,-1.336,0.19493 -1.8408,-2.2575,-0.56711,-2.5648,0.21965,0.70631,-2.1885,-1.0086,0.28254,0.27103,-2.3547,0.94709,0.81579,-0.45493,1.1153 -0.77519,2.4304,1.8979,1.393,0.33125,0.24567,-1.2934,0.36914,1.0656,0.79413,0.068939,1.4937,-0.51702,0.44225,0.19554 1.6119,2.0444,-2.7255,-2.4994,-0.97625,0.92329,0.79809,1.373,-0.37309,0.68377,0.98515,-0.41766,-0.3364,-0.89316,1.417 -2.2045,-1.7375,-0.98588,-0.3559,-0.14292,-1.9962,-0.0071249,0.078948,0.58259,-1.2364,-0.55762,-1.0032,0.52502,-0.7098,-0.50149 2.1244,0.54323,-1.0325,-3.5275,0.65905,-0.53555,1.4186,0.71091,1.4986,0.5734,0.789,2.02,0.86246,-1.7607,1.1181 -2.5227,-2.5945,-0.055477,0.52983,0.7577,-0.082054,-0.48368,-0.54311,2.0254,0.56619,-0.34342,-0.83942,-0.083417,0.68721,-0.11293 -4.5609,0.03185,0.18369,-2.1394,1.1547,0.22246,0.64668,-1.008,-0.92765,-0.48802,0.32268,0.086414,-0.34955,-0.24209,-0.86521 -3.3631,-0.17352,0.64437,-1.0483,-0.17043,-1.2557,0.73571,0.4629,1.6772,-0.60331,0.88886,-1.3585,0.26138,-0.23868,0.42031 -2.323,-2.0343,0.39047,-0.73933,0.61076,-1.9166,0.2722,1.1848,0.33594,-0.91779,0.04516,-1.9817,-0.99598,-0.30854,-0.056717 0.32436,2.3929,-1.8365,1.7654,-0.39696,1.4047,-0.13042,-0.014183,-0.47246,1.2534,-1.5877,0.31064,0.18637,0.011032,-0.10004 1.9471,1.6633,1.409,-1.0216,2.5651,-1.2646,-1.4204,-1.0249,1.3479,0.59999,0.31869,-0.0448,0.67469,-1.0479,-0.47179 -2.0219,-2.0962,1.2129,0.78643,-0.15496,0.25391,0.13455,-0.54805,2.1025,0.4995,0.20608,-0.823,0.20153,-0.36296,-0.12711 0.056299,-0.96807,2.894,1.3549,0.23961,1.8508,0.88367,-0.34007,1.6795,-0.46232,-0.26577,0.72044,0.63038,-0.069047,0.33683 2.3097,3.2046,1.892,-1.7747,-0.67286,-0.16475,-0.041488,-0.29696,-0.40329,-1.3092,-0.96418,0.22902,-1.4205,0.1804,-0.34226 -0.10884,3.2821,-0.56645,0.81333,-0.31162,0.33344,-1.7128,-0.66809,0.57922,0.18389,0.21988,0.87857,0.33346,1.0065,-1.3936 -2.6681,-1.677,-0.87814,0.6299,0.56204,-1.0565,0.49788,-0.66988,1.5683,-0.25241,-0.16063,-0.89898,0.27979,-0.56083,-0.44823 -1.7629,-1.7649,0.10601,1.6118,0.42559,0.49723,1.3524,0.096827,1.5604,-1.7684,0.50551,-0.94936,0.15833,-0.51076,0.3463 0.22674,2.18,2.188,-0.5156,0.08201,-0.30992,-0.9751,0.46741,0.80738,-2.3754,-0.94298,0.48988,1.4723,-1.1811,0.73194 -1.8476,-2.7964,-0.53781,-0.075067,0.10325,-0.068809,-0.58392,0.96196,0.81541,-0.1837,-0.94895,-1.5221,1.0922,-0.29765,-0.45569 -4.5368,-0.67136,-0.93684,-1.9601,1.7727,-0.92017,0.17375,-0.41763,-1.1451,-1.6255,-0.31003,-1.0914,-0.2659,-0.77976,0.25137 0.49105,1.181,2.011,1.4046,0.33201,1.3405,0.6272,0.13835,0.58641,1.0463,-0.95206,1.0542,0.059157,-1.7559,0.21957 0.48664,-0.2409,0.020248,2.3992,-0.17558,1.4475,-1.2493,1.4668,1.7537,-0.55445,-0.36549,0.24138,0.90409,0.57843,0.82565 -0.5207,2.1303,3.41,-1.2321,0.66596,-1.0315,-0.37375,0.32539,-0.61394,-0.0024072,-0.921,0.43143,-1.5651,-1.5623,0.40227 -2.6996,0.041079,3.2408,-1.026,0.58364,-1.8465,0.5732,1.7255,0.53164,-0.79812,0.32343,-1.2601,0.31555,-1.3408,0.79751 4.1398,0.71347,-0.83253,-3.0338,0.33528,-1.9063,1.6594,0.44936,-0.67641,1.6336,1.1231,0.29232,-2.0448,-1.1042,0.96823 -3.7443,-1.5664,-0.60822,-2.4729,2.2279,-1.7719,-1.9511,-0.11323,-1.1467,-0.56344,-1.3501,0.90372,-0.65374,-0.47588,1.8 -3.0019,-1.604,2.8313,-2.1383,1.315,-2.4724,0.26083,-0.30786,0.21557,-0.23408,-1.3027,-1.0133,0.38833,-0.68236,0.25233 -3.648,-1.3487,1.8557,-2.6616,1.7724,-1.5101,-0.033962,-0.99035,-0.24656,-0.044226,-0.71146,-0.44893,0.20339,0.057705,0.67337 -0.47633,-4.1301,3.0387,0.3756,2.0347,-0.61019,0.81706,2.2144,-0.73089,0.5619,-1.1002,-1.8373,0.91947,0.75174,-0.12046 -3.8831,-1.1503,-1.731,-1.8393,1.3025,-2.0551,-1.3023,-0.49977,-0.34006,-1.1749,-1.0253,0.90936,-0.046346,0.089216,0.92775 -1.3723,-4.0317,1.5444,-1.5429,2.3944,-0.82948,-0.28977,-0.15209,-0.4637,0.50519,-3.0688,-0.20386,0.31391,-1.3957,-0.58879 -2.7743,-1.2439,-2.5596,0.29067,2.0304,-1.2888,-0.442,-1.1237,0.9739,-0.9429,-0.76876,1.0269,-1.0373,0.44353,0.2127 4.2045,-0.37179,-1.9308,-2.3717,0.34047,0.91559,1.4405,0.24946,2.005,0.65599,1.2866,0.94542,-1.3855,0.44279,-0.46048 2.6817,-0.56047,-0.095606,-1.518,1.6707,-0.59575,0.29979,0.56805,1.6075,2.0389,1.0095,1.3825,0.75845,-2.2436,0.68401 -2.9124,-0.89939,1.8169,-1.5559,0.95668,-2.1958,0.93403,-0.46754,0.86697,-0.39515,-0.8143,-0.98046,1.4681,-0.71562,-0.23014 -1.8175,-3.0805,3.3424,-2.7436,2.0721,-1.4861,-0.62058,1.4505,-0.95173,-0.19278,-0.90726,-0.94043,0.50895,0.47987,-0.15788 0.48719,3.6483,-0.53209,-1.586,1.7786,-1.7459,-1.9636,1.2864,-0.407,0.25285,0.13991,-1.5422,1.3053,-0.93268,0.038419 -2.3717,-3.5337,0.54226,-1.4934,0.96196,-1.0867,-2.6449,-0.7166,0.52047,0.2794,-1.6495,0.74256,-0.14949,0.19927,1.7191 -3.1586,0.78071,0.27252,0.79311,-0.088708,0.62909,1.3485,0.06311,1.1794,-0.37312,0.9406,1.0849,-0.77275,0.68126,-0.14534 0.53132,3.509,-0.59947,0.48144,-1.4324,0.42833,0.011655,0.11055,-0.56574,1.0927,-1.7758,0.17511,-1.1842,0.6076,0.077262 -3.1843,-1.1194,0.32598,0.40679,0.24539,-0.13982,0.35456,-1.1212,1.7779,1.1968,0.46601,-0.14023,0.29986,0.86084,-0.7244 -3.8067,-1.514,0.81819,-2.0991,1.4243,0.058491,-1.0775,0.14867,0.44381,-0.74655,0.20267,-0.59964,-0.35064,1.3601,0.11104 -0.81462,-2.4255,2.356,-0.96114,1.0692,0.70407,-0.65827,-0.18886,1.7291,0.8822,-0.90349,-0.46969,1.524,2.1782,0.16125 -1.4014,3.3834,-1.3916,0.54413,0.29643,0.75741,-1.1656,1.7378,-0.17697,0.35823,-0.64462,0.79281,0.33885,-0.26613,-1.1208 -2.1289,1.7442,1.6316,-2.0154,-0.25625,0.5712,1.271,0.3176,-0.9477,-0.26949,0.53373,-1.1682,-0.38645,-2.609,0.67022 -2.6248,-1.521,-1.161,-1.2201,0.43152,0.90319,-2.4655,-0.77731,-0.33896,0.28439,-0.55161,1.3915,0.42513,1.8552,0.94555 3.9162,1.318,0.66411,-1.1094,3.5926,-1.3099,-0.68614,-0.54578,-1.4302,1.6674,1.5406,-0.47527,-0.58919,-1.8807,0.41265 0.73841,-0.88198,2.5026,1.6007,0.99261,0.89383,0.034874,1.8852,1.7079,-0.15519,-0.17609,-0.34802,1.4902,0.75569,0.63069 -3.622,-1.6876,-0.27287,-0.82823,0.83151,-0.76642,-0.81143,-0.82307,1.7952,-0.14103,-0.052851,-0.23571,-0.056985,0.8767,-0.11042 -2.951,-2.5737,-1.2383,-0.27272,0.58576,0.39506,-0.93812,0.98831,1.2556,-0.43767,-1.1391,-1.6579,-1.1987,1.7806,0.18995 1.3282,1.81,-0.35227,1.3622,2.7673,0.0096692,-1.0146,-1.5357,0.40867,0.25479,0.75915,0.79692,0.033196,-0.11493,-0.081473 3.4539,-0.32646,-0.32148,-1.2656,2.4361,-0.63776,0.94815,-0.7409,0.9341,2.114,0.7645,0.092859,-1.0535,-2.0788,1.8123 4.2678,0.40597,-0.69552,-1.3335,1.2458,0.10393,0.25876,-1.977,1.6592,1.297,1.1893,0.084523,-0.92707,0.046416,0.35911 -2.9161,0.68344,0.58358,1.6274,0.54577,0.75517,1.2563,1.0534,1.5349,-1.0563,0.4809,-0.35156,-0.85305,0.99079,0.31421 2.7338,-0.010301,-0.94399,-0.94924,2.2787,2.1957,0.16383,-1.1333,-0.16055,-1.6898,-0.083816,-0.035873,0.11702,-0.80886,-0.46511 -3.4789,-1.2814,-0.50555,-1.8185,0.21297,1.5467,-1.1828,-1.8533,-0.22164,-0.9129,-0.12648,0.57393,0.30851,0.66721,-0.22082 -2.1059,2.5638,-1.1715,0.81909,-0.85626,1.7107,1.1466,0.5473,-0.08974,-0.74516,0.09754,0.7748,1.1658,-0.3249,0.5386 -2.5919,1.6882,-2.7047,0.34664,-1.1102,0.42584,1.0285,1.9575,-0.40312,0.29543,-0.076192,-0.30905,0.18444,-0.89504,0.52005 -1.884,-0.35322,1.6443,-0.62793,-0.9498,1.5312,-0.090094,-0.29065,2.0227,0.017643,0.38191,-0.91279,1.2536,0.76314,0.35491 -2.945,-2.1642,0.14701,1.4322,1.2856,-0.27536,0.91857,-1.1693,0.91256,-0.32392,0.083847,-1.5423,0.10122,-0.54414,0.23756 -3.8655,0.65717,0.1854,-0.98257,0.46475,-0.15534,0.91144,-1.0514,0.48504,0.84924,0.89852,-0.21314,0.41382,0.56009,-0.90821 -3.3425,-1.9936,-0.26704,-0.64562,0.50052,-0.41218,-1.5141,-1.0327,1.0553,0.8011,-0.78431,-0.15898,0.15361,0.64606,0.27985 -3.4631,-2.0419,-1.3579,-1.084,0.37148,0.85744,-1.4196,-0.03588,1.2947,-1.0761,-0.67853,-0.20861,-0.39919,1.7468,-0.31622 3.869,-1.205,-1.199,-0.011819,1.2074,1.1859,2.3062,-0.97303,1.2084,-0.17857,0.096138,0.34008,-1.6169,0.55285,0.32686 -0.30565,3.3386,0.47612,1.4687,-0.43048,0.17479,-0.20938,-0.78951,-0.13057,1.2429,-0.92131,1.4503,-0.62462,0.64999,-0.066901 1.5344,1.3253,-2.7696,-3.0577,-0.34793,0.96842,0.96873,1.65,-0.2251,0.91878,0.92884,0.41151,-0.45835,-1.5021,1.3814 0.50319,3.3263,1.5374,0.11486,-0.26631,-0.26047,-0.22883,0.17457,0.90017,0.53546,-1.9235,0.9661,-0.47535,-1.0472,-0.034216 1.7999,2.9622,-0.53893,-0.68286,0.55811,1.5787,-1.0816,-1.2407,1.3259,-0.30099,-1.1614,0.26746,0.43102,-1.097,-0.91021 0.53133,2.7511,-1.1553,1.433,1.6169,0.3583,-1.3278,-1.0505,0.27884,1.6116,0.55454,-0.56027,0.12432,0.70013,-0.64778 1.6003,0.83129,1.3802,2.1865,3.9059,0.83603,-1.6463,0.021535,-1.0042,-0.31419,0.26354,-0.41771,0.30218,-0.27777,0.40178 3.0104,0.39787,-0.38498,0.48758,1.8125,1.3455,-0.022,-1.4148,1.4057,-1.4245,-0.59765,0.51834,0.14134,-0.83897,-1.5639 1.0314,3.7232,0.53369,0.089977,-0.95972,0.96972,-0.67353,-0.16541,-0.41286,0.70087,-1.6199,-0.077519,-1.1897,0.047477,-0.37569 -1.1024,3.372,-0.15159,0.022105,-1.048,1.778,0.13209,0.47326,-0.83348,0.71206,-1.1506,0.84615,0.0068066,-0.87039,0.78307 0.77011,2.2272,1.7235,-0.12281,3.2023,-3.1315,-1.1219,0.91484,-0.31135,-0.55326,0.54834,-0.88888,0.54723,-0.57225,0.11704 1.153,2.5504,0.32544,1.9761,1.1205,0.67004,0.57114,-1.1707,0.23944,0.78621,-2.3362,0.83307,-0.42243,-0.5305,-0.5439 0.60312,4.0308,0.88091,-0.39738,-0.87262,0.60219,-0.63887,-0.45264,-0.52782,0.47471,-1.2647,0.67437,-0.21641,0.079753,-0.38386 0.78832,3.8433,-1.1206,-0.27279,-0.66812,1.6214,-1.3394,-0.77089,-0.65545,-0.43659,-0.71194,-0.3306,-0.20134,0.069637,-0.86174 4.8151,-0.44259,-0.86236,-0.91479,2.5639,1.8408,0.84266,-0.91539,0.14848,0.22433,0.20288,-0.78255,-0.55154,-1.1968,-0.087748 -2.0202,3.3122,-0.49536,0.60525,-0.34616,0.98402,0.33886,0.94887,-0.61022,-1.0078,-0.10342,0.88026,0.93481,-0.95605,0.76931 1.2945,3.5509,-0.68746,-1.1751,-0.45999,1.0695,-1.2064,-1.0684,-0.074543,-1.4212,-0.63719,-0.17838,0.035645,-0.84107,-0.62218 0.52223,2.2503,-0.50273,0.014018,1.7252,-0.82114,-2.3888,-0.00047794,1.9535,1.0703,1.0477,0.021947,0.46639,-0.5234,-0.45832 3.8587,-0.22057,-0.19118,-0.34783,1.7415,1.4973,0.25699,-2.3727,0.42078,-0.1494,0.61944,-1.4775,-0.64649,-0.12678,1.0007 -1.2366,3.2979,-0.29257,0.21239,-0.80963,1.4134,0.00538,0.40426,-0.63328,0.88733,-1.378,1.2273,1.0354,-0.85352,0.55453 -3.7931,-2.6683,0.15218,-1.0905,1.0594,-2.0868,-0.93629,-0.14792,0.1066,0.31885,-0.31287,-0.27334,-0.77998,-1.3228,0.095484 -0.87224,2.1363,1.0965,1.3485,-0.15288,0.25186,-0.92781,0.37061,1.9611,0.070089,-0.39121,1.4134,0.13869,-0.010647,0.80607 -0.25075,0.82702,-0.3874,2.7794,0.67018,0.50183,-0.85492,-1.0543,-0.42456,-1.5529,0.71654,1.0384,0.064711,1.3037,0.28161 1.3034,2.1222,1.9909,-0.48365,0.503,0.021283,-2.4173,-0.2872,1.4414,-0.26282,0.66498,1.3045,0.47807,1.5828,0.093871 0.59451,2.7025,-1.2916,0.86154,-1.1839,1.573,-1.4497,-0.59743,0.57575,0.22771,-0.25919,0.43783,-0.19319,1.6556,-0.50993 0.32518,2.7454,-0.33265,1.7,2.4824,-0.23452,-1.1711,-0.22336,0.0067423,1.2832,-0.50707,0.47796,0.88272,-0.6584,-1.0896 -3.7307,0.053734,-2.9848,-0.81611,0.48774,0.50973,-0.053255,0.24416,-0.2048,-0.93191,-0.49685,-0.62006,0.67019,0.21113,-0.10511 -3.8364,-0.64469,-1.8709,-1.6393,0.41906,-0.36196,-0.50941,-0.55623,0.074934,-1.4881,-0.20643,-0.10859,0.37308,-0.46081,-0.014287 -0.66244,1.4376,1.6689,0.95562,-0.53408,0.11997,0.83854,-0.67906,1.264,1.0553,-0.57152,1.6383,-0.44339,-1.3623,0.96488 -2.8304,-0.93735,0.30569,-1.8711,0.20139,1.2354,-0.85982,0.50237,1.0337,-1.1318,0.30257,-0.83263,1.1142,0.76216,0.64141 3.1097,1.685,1.9301,-0.8806,2.2577,-1.0374,-1.4033,-1.7813,1.0492,0.48604,0.1897,-0.18859,-0.92123,0.30502,-0.12974 0.45385,0.052561,-0.028713,1.6104,2.8819,-1.165,-1.3135,-1.0292,-0.24818,-2.9938,-0.07135,0.62384,1.3474,0.34092,-0.42257 -2.9064,-0.87163,0.23178,-1.0183,-0.23137,-0.56871,-0.90061,0.77082,1.007,-0.76525,-0.7426,-1.4502,1.3129,0.62364,0.59155 -1.5792,-1.3675,1.4641,0.78661,-0.063417,0.47356,-0.069667,0.54094,2.5157,0.17057,0.31818,-1.1891,0.69902,0.35367,0.20178 -2.9701,0.99333,0.9534,-1.1622,-0.57308,0.80203,0.7487,-1.345,0.56026,0.19581,1.1643,-0.057678,0.94781,0.24373,-0.32904 -0.70851,-2.7819,1.546,0.67,1.4742,0.73327,-0.47185,-0.61402,0.76389,1.8175,-1.535,-0.83992,0.7442,1.037,-0.025348 -1.8606,-1.5062,1.8463,0.085819,-0.065934,-0.0031705,-0.3799,0.55526,2.3488,0.75774,-0.079129,-1.1329,0.89537,0.23733,-0.0047487 1.1625,2.4086,-2.2396,-2.6624,-0.25579,1.3302,1.2114,-0.20312,-0.27242,-0.42171,1.078,-0.30032,-0.48793,0.20835,0.20387 0.6084,3.4368,-0.96326,-0.38923,-0.18773,2.5684,-2.2373,-0.37328,-0.89962,-0.25587,0.4353,-0.067921,1.002,0.45904,-0.77157 1.953,0.68703,-0.72406,0.98597,-0.7172,3.1644,0.91578,-0.63152,-0.5324,-0.90303,-0.78287,0.64883,0.51597,0.5153,0.17293 0.018743,-2.9865,2.8088,-0.16176,0.73123,2.0157,1.2613,-0.90878,1.4159,0.75214,-1.5662,-0.54869,0.17903,0.46467,-1.3869 -2.4203,-0.32995,2.073,-0.50517,-0.35942,-0.17024,0.30829,-0.11072,1.7124,0.92893,-0.46561,-0.69594,1.199,0.14736,-0.351 1.1381,-0.98547,0.53688,2.9033,2.0096,1.3898,0.27226,1.0399,-0.48002,-0.65555,0.15325,-0.51715,2.1566,0.86506,0.86057 -1.4444,-2.4576,1.233,0.022789,0.76738,0.81082,-0.3454,-2.4518,0.57192,0.81519,-0.24466,-1.3265,-0.71546,-0.56602,0.95192 -3.4349,0.16623,0.77161,-0.77571,1.5084,-0.99811,0.45272,-0.68604,0.50393,1.8608,0.41407,-0.45225,-0.098612,0.20043,-0.87176 -3.1484,0.27224,1.7318,-2.6498,1.2787,-0.011751,-0.020978,-0.2919,0.34802,-0.9244,0.4123,-0.49577,1.1726,1.1447,0.14759 1.4576,2.2753,-1.1683,-0.076114,0.4877,0.53866,-1.0462,-0.30014,1.6123,1.3005,-1.1528,-0.30612,0.97587,-1.5012,-1.3208 -2.1361,-0.88442,-2.6088,-0.55783,0.21494,0.89842,-1.3731,-0.016436,0.23201,-1.9634,-0.2671,0.87266,0.13279,-0.045424,2.0005 -0.46609,1.9162,-1.6634,0.057832,0.30874,2.2878,-0.074689,-0.33071,-1.9859,-0.46832,0.23227,-0.96404,-0.21276,0.74182,-0.49804 1.909,-1.4616,-1.0882,1.5074,0.55717,0.42506,0.17022,2.0477,0.11151,-0.51341,0.45419,0.057713,1.5722,-0.40087,0.16791 -2.837,0.36044,-0.084303,-1.2031,-0.42363,0.43574,0.6148,-1.0448,0.87616,0.64707,0.57774,0.74448,0.022799,-0.99718,0.22336 -1.6392,-1.2072,-2.9603,-0.6174,-0.035629,0.39584,-1.4425,1.3994,-0.66314,-1.7697,-1.1,0.32866,-0.91299,-0.35442,1.6879 -1.8723,-1.912,-2.5468,0.23666,0.63945,-1.8349,-1.4588,0.19183,0.96725,-0.8238,-1.2461,1.1963,-1.51,0.41488,1.0794 -1.5015,-1.8803,-3.0533,0.52875,0.24087,-1.5602,-1.2496,0.1491,0.31953,-0.79211,-1.468,1.0021,-1.8663,-0.057282,0.96669 -2.4268,-2.1886,-1.4095,-1.2729,0.13872,-0.30738,-2.0474,1.35,0.38306,-0.085017,-1.3768,-0.36026,0.20168,1.0183,1.8202 -1.8344,-1.082,-3.1229,-0.95597,-0.67732,0.98034,-1.4116,1.5561,-0.97587,-1.4462,-1.0475,-0.36168,-0.27073,0.071731,1.477 3.6838,-0.6004,-1.5759,-1.0186,1.1662,1.4618,1.177,-0.38151,2.159,0.0099982,0.97579,0.92402,-0.73604,-0.6751,-0.5636 -2.75,-0.2847,-3.1454,-0.3428,1.1733,0.21206,-0.89093,-0.62975,-0.42058,-1.9853,-0.73349,1.8098,-0.16553,-0.18258,1.078 0.7676,0.83806,0.80699,-4.46,0.91628,-0.39586,1.1313,0.53158,-0.81574,-0.16393,-0.75129,1.9802,-1.6587,1.503,0.020621 1.6121,1.3922,1.0603,1.5886,0.44103,0.91884,-1.0005,-2.3158,1.0249,-0.3401,-0.73111,0.41557,-0.4924,0.77866,0.20993 -2.9275,-0.80172,-2.2752,-1.4343,0.99202,-1.2473,-1.4594,0.21108,-0.48402,-2.1664,-0.67101,1.4224,-0.6164,-0.49378,2.0086 -2.742,-1.2169,-0.17942,-3.2562,2.5089,-0.40225,-1.4084,-0.35048,-1.9693,-1.0151,-2.2047,0.53527,-0.44501,-1.0989,2.2947 -3.4477,0.20856,-2.9976,-1.9476,0.16866,-1.2003,0.95213,-0.25577,-0.64631,-1.3569,-1.095,-0.7575,-0.53331,-0.79346,-0.57217 0.45582,2.1135,2.1522,2.0918,2.2648,-0.84165,0.70663,-1.1957,-0.70842,0.24707,-1.0326,0.6826,0.22959,0.19704,0.39373 -4.2697,-0.53915,-0.90191,-1.9793,0.92539,-0.98372,0.16185,-0.67618,0.45094,-1.2059,-0.034694,-0.45998,0.43994,0.13263,-0.015751 2.24,-0.12978,-2.8018,-0.062921,0.1873,1.8173,1.9903,-1.3345,-0.51383,0.30148,0.17168,1.3192,-0.37077,-1.2292,0.59402 -1.944,-0.26663,-2.2244,1.2269,0.15458,-0.055596,1.643,-0.25064,0.72302,-0.607,-0.37147,-1.2703,-1.3499,-0.72675,0.22137 -1.9079,-0.94637,-1.8677,-0.078017,-0.95388,-1.0166,-0.34341,0.40276,1.2529,-0.38592,0.4279,-0.85121,-1.2227,-0.35049,0.17628 -2.8074,-1.0172,0.085651,-2.5176,1.2301,-1.1337,-0.51719,-1.2435,-0.11216,-0.29077,-1.2332,-0.13377,1.1464,-1.4304,0.80519 -2.4912,-2.3123,-1.0723,-0.83531,-0.03271,-1.9308,-1.0936,0.036959,0.75072,-0.38488,-1.0781,-0.40539,-0.23018,-0.89612,0.2135 4.0592,-0.95007,-0.86873,0.69797,-0.41969,-0.71814,0.23945,0.87632,-0.15766,-0.25931,-1.1766,-0.42994,-1.394,0.36417,-2.1162 -2.9339,-1.278,0.65321,-1.8032,-0.18481,-0.55819,-0.31673,0.23385,1.1903,-1.1235,0.090694,-1.1504,0.88867,-1.166,0.59998 -3.0314,-0.59395,0.04199,-0.14387,-0.21201,-1.8547,1.2837,0.79672,1.6504,-0.78209,0.29184,-1.3446,-1.3933,-0.54563,-0.053397 -3.7876,-0.80852,-0.85875,-2.0015,0.53756,-1.3007,-0.64113,-0.10019,0.35392,-1.0148,-0.03175,-0.46304,0.24274,-0.66257,0.54935 -3.2204,-1.1386,-2.6927,-1.8704,1.0757,-1.2598,-1.1705,0.47699,-1.1899,-2.2975,-1.2629,0.6817,-1.2852,-0.96296,1.1115 3.0195,2.2401,-1.7248,-0.66872,-0.27318,0.31381,-0.40862,0.6072,0.26008,-0.9607,-0.74023,-0.91466,-0.32837,-1.1155,-1.4861 -1.2941,-0.34397,3.4493,-2.6371,0.5135,-0.14557,0.58451,1.0516,0.72747,-1.4182,-0.10095,-0.85416,1.8538,-1.4185,0.33989 -1.9657,0.41839,0.59057,-1.1725,-1.0997,0.14329,2.1164,-1.2766,1.3985,-0.014951,-0.76816,0.13199,0.63088,-1.2617,-0.067114 -2.5734,0.40362,-0.31275,-0.59111,-1.3688,1.5727,0.6707,-0.51431,1.0842,-0.42289,0.473,-0.42239,1.2081,-0.70725,0.45699 -1.2024,3.0671,0.94613,0.12578,-1.1916,1.2124,0.92165,-0.026298,-1.2909,1.2684,-0.39113,0.73855,0.3027,-1.3418,0.1217 -1.2946,-0.95554,0.23605,0.74731,-0.80272,1.3458,1.8168,-1.4655,1.6334,0.24069,-0.43188,0.35437,0.37599,-1.2756,-1.008 -2.8334,-0.16773,0.13599,1.0192,0.22695,-0.63322,1.5964,-0.13315,1.7059,-0.46869,0.78115,-0.3048,-0.21754,-0.011696,-0.51244 -1.1264,3.4306,-0.41128,0.89732,0.091827,0.42928,-1.7437,1.4088,-0.92773,0.79482,0.076921,1.1034,-0.88136,0.15992,-1.718 3.3269,-0.18271,-2.0808,-2.3983,0.11872,0.72755,0.60296,1.3415,1.8824,1.1277,1.6163,0.7132,-0.72427,0.49817,0.49933 -1.0876,0.74458,0.75081,0.71801,-1.8453,1.0718,0.65413,-0.95477,1.5867,0.56117,0.20003,0.67046,0.4881,-0.049906,0.5703 -1.325,2.3558,-0.95271,0.82931,-1.8986,1.6933,0.26981,-0.070792,-0.025762,-0.21509,0.66572,0.92323,0.68864,0.24226,0.35994 3.3154,1.3144,-0.13785,-1.8158,2.3954,0.66254,0.077852,-0.39739,-0.19538,-0.10523,0.94929,0.2104,2.3539,-1.1093,-0.91305 -1.5089,1.4263,-0.23382,0.66603,-1.1947,0.8808,-0.3041,1.4215,0.84727,-1.6193,0.30747,0.20861,1.0078,0.16611,0.93027 -2.3901,-1.2656,-1.1623,-0.34911,-0.91653,0.58864,-0.91077,0.53958,1.8169,-0.15824,-0.15292,-1.4834,0.58886,0.40378,0.41291 -2.6149,-0.18378,-1.9169,-0.12281,-0.82413,-0.080196,0.049203,-0.98501,0.935,0.84894,-0.011809,-0.022015,1.3672,0.017879,-0.63691 -2.5534,0.25801,-0.64841,-0.32203,-1.199,0.89176,0.32373,-0.42935,1.155,-1.2952,1.1145,-0.58124,1.1017,-0.8147,0.3292 2.6743,2.3018,-1.2346,-0.63321,1.9146,0.13101,-0.61356,-1.5001,-1.0898,2.3342,0.66044,-1.8458,-1.709,-0.53824,0.72125 -3.122,0.29718,-3.2889,-0.78713,0.30505,-0.23594,0.1947,-0.043147,0.35808,-0.21702,-0.66365,0.40249,0.90632,0.89067,-0.5122 -2.7318,0.024253,0.33393,-0.16424,-1.3389,0.65234,0.50598,0.41047,0.94038,-1.7014,1.1491,-1.1795,0.74843,-1.2572,0.90714 -3.1164,0.23048,-2.0168,-0.59932,-0.48322,-0.033326,0.72648,-0.26537,1.4353,-0.76296,0.38447,-0.22605,0.37577,-0.17567,-0.57267 -1.1061,1.0586,0.015186,0.44013,-1.5488,0.89298,0.14065,0.68071,1.379,-1.4513,-0.19489,0.3214,1.189,-1.3678,1.3582 3.6202,1.051,0.50193,-2.2557,0.71061,0.080067,-0.5415,-0.92364,1.762,0.31255,0.63678,0.62572,0.8536,-0.15387,-1.0816 -2.9368,-2.9481,1.9461,-1.4976,1.0616,0.21718,-1.204,-0.15828,1.2557,0.30671,-0.51225,-1.1453,0.30336,1.6727,0.5238 -3.0494,0.22911,2.0832,-1.6578,0.03249,-1.2568,0.53509,1.3429,0.72178,-1.555,0.97382,-1.6653,0.60953,-0.71503,0.90061 -1.3074,-2.0338,3.2024,-1.1984,1.8875,0.0059122,0.35288,1.6045,1.1173,1.1158,-0.49867,-1.3228,0.6823,1.4778,0.029084 -2.8542,-0.64308,1.2586,0.4263,0.85787,-0.43218,0.60488,1.5307,2.0757,-0.5002,0.74507,-1.031,-1.1086,0.83759,0.32227 -3.035,-0.20228,0.72677,1.2678,2.0969,-1.17,1.6019,0.21076,0.8858,0.99966,0.27838,-0.82528,-0.74974,-0.75013,0.23362 1.7588,2.821,-1.5777,0.38581,-0.65944,-0.057011,-1.0617,-0.075338,0.45251,0.80839,-1.5202,-0.76632,-0.46321,-1.0257,-1.1495 1.8303,-0.49909,-3.4345,0.53602,0.13185,3.2776,2.4576,0.92895,-1.1065,-0.48128,-0.15712,0.97275,0.36646,1.5634,-0.42697 -2.2619,-1.3084,-1.6782,0.80487,0.043123,0.31533,-0.28222,-0.60712,1.9511,0.52592,0.13916,-0.39646,-0.15894,-0.059534,0.37048 3.4918,-0.6383,-2.2881,0.027883,0.69207,0.028256,1.2596,-0.78553,1.5702,-0.89702,1.1151,0.090743,-1.3237,0.26226,-0.99773 -1.0233,2.5296,0.025033,1.3813,-0.19047,0.024909,-0.87389,0.12065,1.3681,-0.15975,0.03945,1.5032,0.29769,0.65914,-0.25458 -3.304,-0.88716,2.5978,-2.3565,0.81256,-1.224,-0.21806,0.91851,0.247,-1.1414,0.0035945,-1.7492,0.42151,-0.77588,0.48351 2.934,-0.6366,-0.3442,-1.7379,0.60619,-0.67197,1.629,0.80673,1.6597,0.3957,0.46683,2.2487,-2.3154,-0.78796,0.28983 1.0491,-0.71762,2.8379,1.6336,1.0211,1.4523,1.1438,-0.95657,-0.39803,1.2897,0.48955,-0.31953,-0.093961,2.7719,0.50216 -0.0089556,1.0442,-2.003,-1.0167,1.0313,-0.4316,-0.71176,1.753,-0.15685,2.1799,2.2353,0.74999,0.74011,-1.1948,1.6455 -3.2699,-0.26498,1.2109,-1.1623,2.0775,-0.78762,0.013543,-0.42029,0.58974,0.82136,0.53514,-0.16784,-0.78845,1.0924,-0.46365 -3.9155,-1.625,0.67228,-0.59568,1.4959,-1.3339,0.35338,-0.65567,1.2881,-0.42428,0.31618,-0.35455,-1.1739,0.92252,-0.53984 -2.2611,-1.0482,1.5044,0.91112,0.064522,-0.027207,0.25394,-0.074271,1.4116,0.1487,1.3903,-0.48538,-0.62516,1.9657,-0.59795 2.3382,-0.87292,-1.2066,-2.4572,1.2357,3.8112,1.9717,0.34255,-0.67184,-0.26283,0.80812,1.1468,-0.81652,0.039755,0.47245 -0.59396,-3.8685,3.1785,0.89206,2.3385,0.74068,0.82875,-0.63051,0.74255,-0.07643,-0.50272,-0.80205,0.53864,0.55904,0.14677 -0.95627,3.2142,-0.21054,1.2803,1.5356,-0.98653,-1.1986,1.6838,0.74979,-0.48901,-0.48934,0.42048,-0.69227,0.73755,-1.0329 2.5756,1.0245,-3.2297,-0.60994,0.53997,2.0003,1.8153,0.26391,0.22673,0.55335,0.84731,0.42985,-0.52189,-0.38583,-0.0055549 -1.0129,-1.0779,2.0315,0.015362,-0.99242,0.35861,-0.009278,-1.4884,0.030168,1.3014,0.15314,-0.97301,-0.54499,2.7505,-0.59942 -0.20189,-1.4856,2.9356,2.1085,1.3834,0.6046,0.75894,0.51926,1.8231,-0.53952,0.019314,-0.43434,0.58597,0.47142,0.60214 -3.3612,1.6009,-1.8081,-1.0573,0.44163,1.6929,1.7066,-0.70208,-1.5856,1.3047,0.2316,-0.073906,-0.0052813,-0.2266,-1.1308 1.3428,1.3362,1.9289,1.6888,2.9536,-0.90552,-0.69868,-0.43565,0.84482,-0.92768,-0.65087,0.79936,0.92445,-0.68621,-0.81554 2.1217,0.10323,-3.0588,-0.2375,-0.071421,0.71602,1.1773,0.33504,0.6717,1.21,0.1905,0.43243,-1.5,-1.0588,0.90447 -3.8883,1.7939,-0.58062,-1.2941,0.67977,1.9944,1.3173,-0.20647,-1.7607,1.2122,0.57516,-0.81659,-0.37771,-0.8199,-1.4907 -3.3379,1.8795,-1.3244,-0.12797,0.037544,1.1768,1.2396,0.82235,-0.362,0.21524,0.51761,-0.49339,0.7158,-1.321,0.098011 2.0894,3.5481,-0.017495,-0.71032,-0.24088,-0.2494,-1.6495,-0.83625,0.0011133,1.4024,-0.95661,-0.65345,-0.02307,-0.3602,-0.92811 -4.2023,1.4126,-0.1131,-1.0176,1.2468,0.80977,1.8931,0.74505,-0.25361,-0.61272,0.011104,-0.89299,-0.94616,-0.81336,-1.3212 1.7876,0.31595,2.9349,1.4788,1.5852,2.6702,0.079349,-1.2363,-0.29214,-1.4508,-0.53057,0.31205,0.30428,0.37141,1.2966 -4.3309,0.4838,-1.3905,-1.4198,1.4085,0.96393,1.2172,-1.6773,-0.6834,-0.31043,0.28787,0.17878,-0.1756,0.16022,-1.8402 3.1851,0.93821,-1.1114,-2.5121,0.358,-0.00025084,0.84526,-1.1271,1.5956,1.8006,1.4039,0.80981,-0.95005,0.094996,1.2607 -3.7285,0.80191,1.2416,-2.1368,1.6463,0.87188,0.20973,0.24712,-1.5242,-0.3464,1.0777,-0.8837,-1.202,-0.53299,-1.1225 -3.163,0.65236,0.20304,-1.5146,0.70336,1.4274,0.50753,-0.96002,-0.50672,-0.4168,1.2109,-0.33192,-0.28624,0.99687,-1.6996 -1.5402,3.2569,-0.65795,0.79686,-0.67137,0.87846,0.085269,0.23604,-0.89642,1.134,-0.35771,1.6211,-0.37116,0.14423,-0.35101 -3.6419,0.027385,-2.6592,-0.81317,1.0649,1.6561,0.66812,-1.1892,-0.57487,-0.18739,-0.77531,0.0042104,-0.39912,0.62019,-1.6587 -0.65962,-1.331,2.0914,1.5649,1.5675,-0.04934,0.87767,2.0933,1.1804,0.38999,0.16635,-1.2992,0.1223,0.25975,1.6517 -2.3644,1.5865,-0.60138,0.3177,-0.44416,2.3181,1.2861,0.16322,0.29609,0.26504,0.85586,0.43032,-0.64143,0.21483,-0.35534 2.2139,0.73755,-0.23756,-0.16699,1.976,1.5706,0.48628,-3.1182,-0.97251,-0.7621,-0.25242,-0.68997,0.33394,-1.1863,-0.61815 -3.3109,0.2214,0.78749,-1.3515,0.45762,1.0732,0.12623,-0.90618,0.69276,0.17696,1.2294,-0.23324,-0.4793,0.83945,-1.3409 3.6923,-0.85045,-0.48299,-0.43654,0.93953,2.8218,0.32305,-1.8469,0.14856,-1.5389,0.216,-0.72896,0.32198,0.51237,-0.70972 -3.4768,-1.5615,0.19548,-2.5114,0.64294,0.42068,-0.84394,-2.0267,-0.31182,0.60253,-0.61243,1.0064,-0.19626,1.4912,-0.13506 -3.315,-1.5123,-0.90957,-1.5573,0.7619,1.2668,-0.50502,-0.71965,1.1348,-1.844,-0.32651,0.061952,-0.58266,1.4028,-0.80189 -4.2156,0.38474,-0.39677,-1.6404,0.68991,0.6309,1.2014,-1.0761,0.2021,-1.1539,0.79299,-0.19181,-0.076986,0.43997,-1.6444 -3.1727,-0.36551,-0.96956,-1.6452,1.3312,1.7971,-0.72603,-0.85558,0.051255,-0.8528,-0.13261,0.44251,-0.27007,1.1019,-0.39696 2.2339,-0.25019,2.1769,0.29164,0.62123,2.2863,0.55203,1.199,0.66992,-0.65994,-1.5273,1.6225,-0.26259,-1.0418,-0.087549 -1.0393,-0.11163,0.14959,1.5323,-0.96251,0.55212,0.40002,0.79781,2.0453,-1.2135,0.13732,0.23369,0.77096,-0.82965,0.45264 -3.333,-0.89999,-1.1447,-1.3663,0.98086,1.8563,-0.081985,-0.54183,1.0922,-1.1549,-0.25238,-0.44337,-0.29098,1.3244,-1.005 -3.1027,-0.50043,-1.923,-1.3216,1.2236,0.77799,-0.63348,-0.9645,0.091758,-1.4152,-0.67041,1.2424,-0.7095,1.3711,-0.33327 0.86193,2.7762,1.5426,-0.37682,-0.47001,-0.0017433,-1.1209,-0.27734,1.4406,-0.37315,-1.0951,1.08,0.61087,-0.51906,0.099777 1.2326,-1.4119,-2.0547,0.57708,0.70789,1.6745,1.5108,1.1008,1.1549,-0.52802,-0.4784,1.1484,1.2006,-0.12617,0.53918 2.1937,-1.6094,-2.2557,-1.0285,0.84226,2.8471,1.9346,0.54091,0.73276,-0.44437,-0.13727,2.8677,-0.057184,-0.19577,0.35661 1.5172,-0.28324,0.28209,1.3473,0.45693,2.3224,-0.5407,-2.097,0.37121,-1.8337,-0.42113,0.21291,0.98351,-0.30687,-0.21997 3.2769,1.1857,-2.1508,-1.7559,-0.41819,0.4766,-0.23501,-0.21358,1.5054,-0.092207,1.5932,-1.1207,-0.82885,1.3736,0.22886 -4.6325,-0.32451,0.85698,-1.9987,2.4244,-1.0694,0.65035,-0.53538,-0.29986,-0.16325,0.30032,0.037323,-1.0077,0.11904,-0.13352 3.7215,0.48952,-1.7873,-1.8104,0.50389,0.10786,1.0301,-0.49126,2.3091,1.0468,0.95388,0.43323,-1.4128,0.7646,-0.67946 1.2602,1.1211,-0.76283,0.58257,1.0293,-0.24348,-1.7374,-0.50345,1.6828,0.95267,1.4584,0.24926,1.2341,-0.12263,-0.83578 1.3323,1.1565,2.0372,1.4234,1.6884,-1.1271,-0.08726,-2.2624,-2.7852,-0.63383,-0.71461,0.9348,-0.40925,0.82108,0.61106 2.397,1.5542,-1.5652,-1.8457,-1.1951,0.0035321,-1.4243,-0.18077,0.13178,0.24672,1.7975,-1.2907,0.31548,1.7339,0.16059 0.33078,2.4007,-1.5826,0.057239,1.3983,0.99398,0.093069,-0.52723,-1.5419,-0.83273,0.63822,-1.2497,0.33623,1.0805,-0.45466 3.5142,-1.2644,-2.2665,-0.14792,1.6062,2.7736,1.9217,-1.0829,0.44065,-0.20614,0.71988,0.45789,-0.41207,1.4601,0.11957 -1.6598,0.97337,0.46622,1.1134,-0.33584,0.97499,-0.12391,1.338,2.2932,-0.51289,0.85325,0.24263,0.084702,1.1147,0.43056 2.35,1.0774,-1.0516,1.3023,0.88425,1.3533,-0.13551,-1.8411,1.3242,0.93136,-0.93504,-0.2029,0.39136,0.78794,-1.4283 1.1397,3.0261,-0.39146,-0.43842,-0.50798,1.0652,-1.7291,-0.59839,1.0512,0.7732,-0.96832,0.29886,0.99446,0.83505,-1.2247 4.5301,-1.1983,-0.62768,-1.9388,1.2338,0.54097,-0.24381,0.29241,-0.14807,-0.01635,1.2667,0.74031,-0.58087,-1.1188,-1.4467 1.4219,2.5207,-1.5175,0.48173,0.35127,0.31595,-0.63038,-0.91592,-0.051918,2.5191,-0.90839,-0.51894,-0.74439,-0.096321,-0.58911 2.6949,-1.8153,-1.3289,-0.18339,2.0332,2.3351,2.1772,0.60954,0.85504,0.53562,-0.12392,2.1317,-0.27344,-0.13703,0.64397 1.0585,4.1452,1.7801,-0.64256,0.48819,-0.37161,-1.9903,-0.047469,-0.74798,0.90037,0.42079,0.39913,-0.55198,0.0071655,-0.25909 -1.7792,1.4327,-0.46349,1.4228,-0.70331,1.4642,1.1632,-0.24142,1.4989,0.8615,0.59481,0.63129,-0.02085,-0.11994,0.82047 -3.425,1.9716,-0.34105,0.13141,-0.33614,-0.47403,1.3876,1.6989,0.58331,-0.19054,0.080952,0.63099,0.23205,0.13065,0.71601 3.2391,-0.44434,-1.2491,-1.1891,2.8376,-0.070471,1.2618,0.10258,1.2832,0.31803,0.99112,1.252,0.1834,-1.9602,-0.14279 2.0035,-1.0002,-0.36833,1.5008,2.6478,1.3055,-0.39902,-0.11246,0.63577,-0.87937,-1.3273,-0.12469,1.6102,-0.46847,-0.32597 0.10501,4.4801,0.85478,-0.76831,0.18069,1.503,-1.2589,0.19377,-1.4567,-0.64744,-0.0017393,0.47139,0.54391,-0.02811,0.10475 3.6328,-0.23042,-0.83131,-1.8602,0.48155,0.92251,-0.34234,-0.66921,1.8223,-1.1701,0.66382,0.73539,-0.50054,0.62833,-2.1426 3.308,-0.75735,-0.85076,-0.46733,1.4813,0.85133,0.90135,-0.47079,1.2272,2.0678,0.17889,0.64678,-0.59503,-0.98982,0.34202 2.9041,0.34495,0.40958,-1.528,1.1218,-1.2565,-1.7985,1.6844,1.1117,0.76883,-0.19135,0.11539,1.1136,-1.0604,-0.53915 0.95195,2.4282,2.7645,0.78181,0.20474,-0.22028,-0.9777,-0.23662,0.31089,1.1352,-0.60835,0.6689,-1.3499,-0.67916,0.81547 2.9108,0.70311,-0.62827,-1.0975,-2.1109,-1.9242,-0.96565,-0.15577,1.3331,-1.5735,0.11808,-0.67916,-0.82545,0.11175,-0.37362 -2.4546,2.554,1.8359,-0.15895,0.55783,1.2824,0.0077604,1.5703,0.52144,-1.6744,1.0177,-0.14223,0.72215,1.0635,-0.043077 1.4582,2.7016,3.1367,-3.3611,0.039345,0.45237,0.65257,1.1546,-1.0945,-0.53763,0.14093,-0.91767,-2.0684,0.063747,0.33014 -1.3899,3.0209,1.5517,0.94827,0.053504,-0.26726,-0.10134,-0.040742,0.56913,0.34607,-0.40543,1.7545,0.41613,0.29798,0.13252 -3.0962,0.30436,0.42918,-1.1931,0.033987,0.26644,0.064925,-1.2023,0.62343,1.2692,1.2987,0.39878,-0.37166,-0.67751,-0.69921 1.1414,-1.5291,-2.1782,1.0024,0.13006,1.2695,0.83979,1.6372,0.91576,0.58348,-1.1084,1.0538,0.91985,-0.52039,-0.15974 -2.5592,-1.0466,1.8566,-1.9722,0.69954,0.29593,-0.04272,-0.55573,0.70861,1.744,-0.057734,-1.0226,-0.065203,-0.16652,0.50604 -3.1485,-0.79893,0.19205,-2.0441,0.93226,2.1366,0.54827,-2.5268,-0.56955,-0.7656,0.22373,-0.15695,-1.0165,0.7894,-0.86235 -1.2026,-0.56671,3.2982,-1.4574,0.17015,0.45291,1.2329,-1.7974,0.80763,1.5414,-0.50818,0.38444,-1.4852,0.012347,0.35608 -0.82846,2.1777,-1.341,2.3806,-0.23055,1.4621,-0.50737,-0.49738,-0.82537,0.64287,-0.17152,0.61228,-0.62692,0.48525,-0.49715 -3.8266,0.12394,-2.7481,-2.0093,2.0681,-1.6308,0.32649,0.057421,-0.074572,-0.86702,-1.4343,0.23011,-1.0601,0.20494,-0.24159 -0.58302,-1.6261,3.2114,1.3838,1.5904,1.4675,1.1979,-0.59336,0.28979,0.6183,0.53895,-0.18174,0.14453,2.0853,0.53643 -1.5489,-2.749,1.8543,-0.20573,2.1802,1.4205,-0.091145,-0.72599,-0.12257,1.1217,-0.10905,-0.79669,0.37457,2.7507,0.6268 -2.9582,0.06836,-2.5887,-0.21573,-0.77104,0.87586,0.4138,0.037594,1.3172,0.0044842,0.23194,-0.053852,0.48981,0.41656,-1.0923 1.7947,-0.74468,3.8407,-0.0012872,0.8302,1.7574,2.3149,-0.55311,1.1913,-0.184,-1.2856,0.28886,-2.1766,0.42407,-0.342 -2.002,-1.406,-0.67284,-0.95068,1.6204,0.20425,-1.6636,-2.1551,0.57361,0.078253,0.17841,2.1873,-0.94989,1.7748,1.3605 2.2823,2.9396,1.6305,-1.0308,-0.37075,0.7207,-0.14633,-0.31198,0.82535,-0.76746,-1.5956,1.0033,-0.52708,-0.84586,-0.69739 -1.9683,1.8146,-0.94506,0.7297,-1.4965,2.1786,0.28282,0.81902,0.41317,-1.0367,0.90345,0.78266,0.0093712,-0.20029,-0.18522 -4.2479,-0.86698,0.30524,-1.6513,1.2348,1.3173,0.14759,0.12829,0.65751,-0.80448,0.29467,-0.62755,-0.095432,1.0636,-0.89728 -2.9417,-0.91504,-0.76716,-2.514,1.7201,2.0046,-0.55575,-1.9162,-1.3212,-0.092157,-0.46153,0.89007,-1.0405,1.0801,0.21892 -2.9522,-1.5132,2.0898,-1.7032,0.81151,0.90237,-0.094689,-0.87149,1.2896,0.56744,0.59994,-0.2715,-0.066393,1.655,0.14877 3.5345,0.67019,0.11339,0.64891,1.4315,1.4226,-0.77366,-2.5736,-1.1104,-0.32324,0.56732,-1.6322,0.42704,0.97722,0.60317 -3.5648,-2.0826,0.76844,-2.4946,1.9483,-1.3148,-1.6123,0.61504,-1.049,-0.79351,-1.1489,-0.72078,-0.052928,1.1242,1.2925 -2.3293,1.4443,2.4418,0.080296,-0.032396,0.17058,0.18983,1.2961,0.81273,-0.34164,0.98058,0.52123,-0.44176,-0.25568,0.98994 -0.7516,3.2271,2.6596,-1.7756,-0.23901,1.6353,1.1832,-0.086501,-1.3472,0.15193,-0.36061,-0.62853,-0.64221,-0.92999,0.41134 -3.2304,-0.16093,-2.7934,-0.56906,1.5572,0.68282,0.89308,-1.8926,0.48459,-0.084707,-1.1249,0.58195,-0.307,0.28068,-1.2167 -1.7135,1.3062,-0.18755,2.0854,2.8001,-1.1755,0.14832,-0.25258,-1.3718,-1.4065,-1.4174,1.0557,0.93751,0.30996,0.6733 -2.1368,2.2981,1.9115,-1.402,-0.83685,1.1943,1.6562,-1.1299,-0.92445,0.6739,0.19825,-0.094261,-0.42146,-1.0113,0.36409 0.13642,0.07283,3.9231,-0.36071,-0.18153,0.71818,1.5104,-1.2645,1.3936,0.40825,-0.74001,0.59427,-0.86163,0.26518,-0.3641 -1.4321,-1.3066,2.5259,-1.5049,-0.11639,0.76549,1.1276,-1.4703,1.5135,0.87412,-0.52182,0.78982,0.2077,0.24738,-0.39506 -3.0908,0.58516,1.8892,-1.1434,-0.40438,0.12533,1.1749,-1.3042,1.1089,0.076169,0.83163,0.20963,0.88206,-0.050644,0.096796 0.72921,3.193,-0.86277,-2.8174,0.10046,-0.27205,-0.223,-0.34836,-1.3479,0.79106,0.091994,-1.0932,-0.8516,0.58498,0.13448 -1.0196,3.3131,0.40976,0.89873,-0.046229,0.10292,-0.45656,0.50562,0.34402,-0.036121,0.057218,1.3859,0.44659,0.0061157,-0.19142 -4.1423,1.2822,1.1153,-0.77752,0.44435,0.14564,1.3897,0.54008,0.12223,-1.7706,0.9698,0.18319,0.059624,-0.19978,0.20807 -2.1332,3.5234,0.91546,-0.28154,-0.053401,-0.55798,0.029699,1.6735,-0.98056,-0.22228,-1.1601,0.55819,0.70923,-1.2419,1.0196 2.6428,0.4785,-2.2003,-0.85419,0.78457,0.24782,1.1735,-0.53405,1.6909,1.0851,0.39084,0.44699,-1.2489,-1.5032,-0.085484 3.0444,-1.827,-1.8929,-0.58936,1.8472,2.328,2.6927,0.033871,-0.36508,-0.49846,0.2329,2.0276,-0.44151,-0.27258,-0.18537 -1.5063,-2.6787,1.9403,1.3956,1.2878,0.18686,1.0929,0.75833,1.9556,-0.94392,0.31873,-1.275,0.71956,0.32946,0.25806 -2.8799,0.32489,-3.4835,-0.45309,0.33582,0.95493,1.1327,-0.56033,0.4246,-0.73374,-1.1214,-0.51908,0.039143,-0.63777,-0.8281 -2.9796,0.42504,-2.3083,-1.6078,0.79715,1.2943,-0.23041,0.60259,-0.96164,1.7753,1.0913,0.36533,0.031348,0.38218,-0.34504 0.4419,3.7294,-1.4274,-0.053332,-1.2303,1.2493,-0.56443,0.02748,-0.88466,-0.36247,-1.3411,-0.055493,0.27384,-0.80654,-0.17973 -2.6408,-1.8508,-1.1148,1.597,1.6842,0.02892,1.3909,-0.62507,0.20607,-0.88174,-0.34145,-2.0192,0.27579,0.76271,0.33664 -3.527,0.21264,-2.477,-1.6442,-0.46688,-0.5479,1.6621,-0.24451,0.36122,-1.0587,-0.93749,-0.77116,0.030079,0.35263,-0.90531 1.3648,3.518,-1.2857,-1.8518,0.75117,0.69192,-1.7683,0.19249,-2.0793,-0.21046,1.2104,-2.0591,-0.036413,-1.2117,-0.47172 -2.5235,1.4162,-1.5807,0.40441,-0.47333,0.81191,1.3259,2.1979,1.2549,0.053993,-0.25119,-1.3263,0.044706,0.68187,0.084569 0.99896,4.1078,-0.83533,-0.70177,-1.1799,0.10553,-1.2936,0.35677,-1.0671,0.19032,-1.0922,-0.67073,-0.7007,-0.039882,-0.5837 -0.4512,2.5134,-2.3574,-0.31348,-0.57663,1.6459,-1.8745,0.75186,-0.43157,-0.097829,1.8333,-0.086453,0.95916,0.93167,-1.4855 -2.8186,-1.2841,-2.1396,0.46988,1.47,-0.898,0.87066,-1.2306,0.81155,-0.90287,-0.44067,-0.40602,-1.6344,0.7638,-0.53829 -3.3562,-0.16426,-2.8694,-0.54048,1.7599,-1.6772,-0.035416,-0.093849,0.76536,0.33401,-1.4302,0.19568,-0.86246,1.0699,-0.13466 -2.5436,2.0756,-1.406,0.35035,-0.58051,1.0347,0.98394,1.7374,0.63137,0.15254,-0.1148,0.95091,-0.67974,-1.1127,-0.38447 0.40261,-0.45798,2.1853,1.3096,2.9772,0.23307,0.34454,0.68241,-1.2663,-0.98818,-1.9607,0.3946,1.1284,-1.3588,0.4951 -3.34,0.37572,-2.9624,-1.3786,1.1119,-0.90495,-0.59938,0.034281,0.0078236,0.16168,-1.2489,0.68294,-1.0081,0.53093,-0.37922 -3.3581,1.3796,-1.7472,-0.40171,0.20736,0.18934,1.8139,0.84044,0.62869,0.47696,0.10108,0.12346,-0.81002,-0.60492,-1.2299 -3.1284,0.72443,-2.6345,-0.46914,0.57528,-0.023167,1.3145,1.3423,0.86008,1.3276,-0.86094,-1.0581,-0.41633,0.24792,-0.88912 -1.4919,-1.0905,-0.42981,-0.72328,0.12756,0.70911,-0.73048,-2.3785,1.9411,1.2071,-0.63417,0.71794,-0.40385,-0.22923,0.57094 -3.9623,-0.88448,-1.1623,-0.99527,1.9618,-0.81601,0.18615,-0.91217,1.0452,0.12063,0.17295,0.22451,-1.5857,0.22924,-0.8115 -0.1585,1.0962,2.9992,0.83709,2.0373,-1.527,0.45825,1.2978,0.50882,-1.5566,0.045942,0.60581,0.61245,-0.50367,1.1665 2.1746,3.5048,-0.40124,-3.2912,1.4365,0.11644,-0.96804,0.76765,-0.55989,1.0971,0.37954,-1.2132,-0.0092499,-1.1269,-0.19278 -4.3176,-0.16607,-2.0561,-2.0481,2.0777,-0.44457,-0.019374,-0.52937,0.30618,-0.94344,-1.0434,0.33574,-0.56233,0.53552,-0.78782 -0.33305,0.51245,2.3701,1.7254,0.17779,1.7471,1.2989,-2.1278,0.52,0.33317,0.0056654,0.23291,-1.243,-0.025159,1.3934 -3.9531,-1.4642,-1.9207,-1.8786,1.9375,-0.94391,-1.4989,-0.79169,-0.33657,-1.9449,-1.077,1.9684,-0.65752,0.58183,0.57084 -2.5544,1.0151,-2.0936,0.69398,-0.19504,2.8758,1.2451,0.43007,0.20406,1.0214,0.20456,-0.32162,-0.26406,-0.8924,-0.8611 -3.3751,-0.89823,-0.82546,-2.3056,2.3437,0.019224,-1.9558,-1.3075,-0.99507,-0.53072,-0.87976,1.9274,-0.52046,0.71181,1.3436 -2.9964,1.068,-0.82424,1.5339,1.0095,-0.23682,1.918,0.79706,0.43587,0.84898,0.24354,-0.67553,-1.4119,-0.76406,-0.11844 -4.3782,-1.2845,-1.2064,-2.2212,1.6462,-0.77185,-1.1096,-1.1849,-0.13831,-1.2953,-0.47216,0.9675,-0.086378,0.67683,0.052857 -3.8647,0.06366,-1.2081,-0.87914,0.2171,-1.0118,1.1814,0.069198,0.28985,-1.1561,-0.43167,0.12185,-0.75251,0.75963,-1.1291 3.5308,2.4643,-0.72807,-3.1911,0.3194,-0.65796,-0.55882,0.96463,-0.018234,-1.3881,0.85659,-0.62599,-0.68042,-1.4436,-1.0186 -3.2712,-0.65051,0.76009,-1.2685,0.50974,-0.97569,0.57431,-2.0098,0.8374,1.1089,0.635,0.78298,0.40388,0.16886,-0.79329 -1.0356,-1.9527,4.1055,-0.97966,0.30145,0.90106,0.0070144,-0.0023174,1.4675,1.1222,-0.57805,-0.62563,0.41252,1.0514,-0.20429 0.49985,2.7546,-0.91737,-3.1822,1.0244,1.3582,0.26368,0.099023,-2.4524,1.1056,1.683,-0.50059,-0.089883,0.559,1.0513 -3.5809,-0.38263,-2.9693,-1.3888,1.1326,-0.32719,-0.83885,-0.64868,0.21042,-1.2214,-0.87527,1.4221,-0.046589,0.66798,-0.064545 -4.0426,0.72798,-0.1171,-0.69704,0.19247,-0.42296,1.8387,0.31593,1.5015,-0.56296,0.57742,0.39582,-0.36346,0.70974,-0.80762 -1.3732,3.4176,0.97341,-0.23278,-0.10295,0.093792,-0.53224,-0.61413,-0.89345,-0.19268,0.29278,1.4729,-0.58054,1.531,-0.26917 -0.067267,-3.3218,0.65419,-0.42927,1.05,3.6388,0.29357,-0.89764,-0.52011,-0.020495,-1.5229,-1.0806,2.6486,1.3311,-0.42545 -3.2906,2.4893,-0.66718,0.0032694,-0.070113,1.0282,1.1024,1.6356,-0.24025,0.0775,0.59839,0.35397,0.11707,-0.73504,0.15631 -3.3014,-0.64594,-2.1299,-1.313,1.0754,1.3729,-0.4583,-2.2159,-0.47989,-1.1216,-0.23724,1.1697,-0.6273,0.18184,-0.97738 -3.279,-2.2594,-0.39658,-1.2034,0.99403,-0.81897,-1.5461,-0.38697,1.6625,-0.38531,-0.46235,0.25206,-0.69596,1.38,0.32753 2.4294,1.4995,-1.6206,-0.48494,1.3432,-0.30213,0.87775,-0.93007,0.63925,3.1768,0.46014,0.32078,-0.067059,-0.46149,0.87251 -1.419,-2.8492,0.25298,-1.7902,0.43186,0.73331,-0.9755,-1.5679,1.425,1.6575,-2.5269,0.19217,0.42018,0.17764,0.31601 -3.0579,-1.6842,0.23274,-0.75066,0.133,0.6406,-1.2437,-0.59614,1.1152,1.0934,-0.39286,-0.80636,0.80631,1.71,0.18532 0.67055,4.4811,1.5689,-1.4656,0.0869,0.016573,-0.54231,-0.30861,-2.2603,-0.80718,0.28931,-0.69756,-0.95121,-0.095513,0.42459 -1.446,-2.9864,0.74601,0.078018,0.58852,1.5459,-0.038975,-1.7736,1.4159,1.0252,-1.4107,-1.3607,0.72151,-0.71812,0.31 -3.6259,1.1492,-0.76561,-0.21649,0.45403,2.3126,1.8394,0.094394,0.13594,-0.21941,0.91132,0.57242,0.1609,0.21921,-0.72275 -1.876,-2.974,1.5586,-0.44064,0.50261,0.69912,-0.49197,-1.1404,1.2734,1.4081,-1.5597,-1.2345,0.62515,0.26749,0.14814 -1.7447,-2.6555,1.8898,-0.61386,0.47776,0.86247,-0.79127,-0.63905,1.1418,1.5958,-0.95659,-0.72572,0.91999,1.5565,-0.2676 2.1832,-1.3511,2.1778,0.11459,0.96509,3.3089,2.807,0.12098,-0.6482,-1.8191,-1.1547,0.50266,0.17301,0.79097,-1.0434 -0.47607,-2.262,2.106,-2.4609,-0.52449,1.5606,0.47928,-0.89339,1.6655,1.161,-1.627,-1.1807,-1.0828,0.75106,-0.37352 -2.3372,-1.8158,0.68508,-3.8804,0.62415,1.3491,-0.79495,-1.1957,-1.1761,0.31353,-1.6824,-0.89776,-0.27187,-0.59785,0.81096 -1.8745,-2.4767,0.75609,-1.6325,0.17335,0.96119,-0.92311,-2.1158,1.048,1.5348,-2.111,-0.32439,0.059877,0.91426,0.01082 3.0095,2.543,-0.97294,-1.8332,0.9678,-0.64324,-0.24242,-1.2486,0.15072,2.5242,0.81467,-0.98442,-1.2884,-0.35255,0.63838 0.36863,4.4812,-0.31342,-1.1402,0.64875,0.86723,-1.9573,-0.2736,-1.6954,-0.35926,0.39863,-0.78275,0.16063,-0.55092,-0.71807 -1.743,-0.76004,2.2145,0.045448,-0.76193,0.72681,0.94333,-1.3302,1.8378,0.76367,-0.26434,-0.59606,-0.15729,-0.83183,0.54714 -0.45762,2.2374,-0.19319,1.2796,-0.056287,-0.82015,-0.85505,0.85838,0.79109,-1.0866,-0.30221,0.44459,1.2687,-1.5436,0.46577 -1.1058,-2.4384,2.2477,-1.9194,-0.19429,0.86832,-0.25476,-0.026891,1.5028,0.88508,-1.9134,-0.8716,1.1738,0.25981,-0.70637 1.566,0.21448,-2.4029,0.2001,1.3497,1.9478,1.985,-0.0035617,-0.57438,-0.0033162,-0.77825,0.40519,0.22603,-1.8452,-0.10361 -3.3576,0.87852,0.29797,0.21696,0.073243,-1.0959,1.7362,-0.088235,1.3038,0.1486,0.85699,0.71441,-0.082372,0.47601,-0.50872 -2.1728,-1.5141,1.2588,-1.4033,-0.5699,1.1927,-0.205,-1.4724,1.8308,0.93055,-0.83957,-0.86331,0.30297,-0.19243,0.30584 -0.20926,-2.0034,3.1117,1.4313,0.6219,2.3985,0.79534,-0.57297,1.0433,0.52653,-0.51257,-0.97568,0.67688,0.50053,0.83723 -0.93928,1.5002,2.086,-0.85249,-0.3085,-0.41572,2.503,-0.65084,-0.38938,0.72206,-1.7331,0.84383,0.16854,-0.41003,-0.47004 -1.0517,1.7778,3.4678,-0.97143,0.26342,-0.63405,-0.40488,1.5847,0.44209,-0.98731,0.1502,0.82553,0.18364,-1.1339,1.7083 2.5766,0.33514,-1.2307,0.024863,2.1196,0.82673,0.19629,-1.5542,0.25109,1.3322,0.64275,0.40085,0.33553,-2.0961,0.91961 0.66949,1.173,-0.74682,2.1724,0.008526,2.138,-1.09,0.076249,-0.30255,-0.27906,0.90802,0.119,0.2091,2.0736,0.24487 -1.5831,0.86881,3.1828,-2.9577,-0.55417,0.8187,1.543,-1.2197,-0.42146,-0.51763,-0.36553,-0.46372,-0.78783,0.032594,-0.018603 -1.4869,-2.3453,1.9024,-0.44949,0.37934,0.64345,0.015739,-2.1696,1.3542,1.6316,-0.92603,-0.59656,-0.30919,1.3296,-0.41842 -3.8626,-0.65253,-0.58089,-1.7616,0.31849,0.66901,-0.098272,-2.2062,-0.098707,-0.7021,0.86177,0.74091,-0.23921,0.98253,-1.3493 -1.4862,2.8212,3.2106,-1.2628,-0.58708,0.57117,0.69582,-0.83796,-0.89424,-0.041483,0.58794,0.19973,-0.32611,-0.28636,-0.055389 -0.12538,3.6449,1.6194,-0.39566,0.092657,-0.23915,-1.223,-0.01061,-0.34701,-0.48743,-0.3689,0.77184,0.54428,-1.3825,0.3701 1.2049,2.0051,2.0657,0.061807,1.1878,-0.71316,-1.943,0.2591,1.4691,0.1108,-0.30597,1.3056,0.48281,0.17262,0.51668 -3.3472,1.6437,-0.63679,-0.67326,-0.050033,1.1608,1.2693,1.3051,0.87953,-0.98212,0.51598,-0.062647,-0.19493,-0.57123,-0.36171 0.59659,1.6773,3.1038,-1.3421,-0.57937,2.0419,-0.40963,0.15117,0.004196,-1.9247,-0.50568,0.65398,0.53204,0.33726,0.6488 -1.4715,-1.1527,3.2882,-2.0519,-1.0146,1.2929,0.17443,-0.61343,0.66681,0.57551,-0.44235,-0.70413,0.40782,0.70715,-0.20436 -2.6055,0.50372,0.4117,-2.2319,-1.1678,1.198,1.2563,-2.3515,-1.0944,0.048411,0.066473,-0.86572,-0.44302,0.30598,-0.72382 -2.4866,-0.4725,0.36995,0.66756,0.72875,0.47073,0.70783,-0.55652,2.6522,0.98175,0.38318,-0.45614,-0.072268,1.5877,-0.31177 -3.27,1.3549,1.0887,-1.7249,-0.13161,1.0617,1.0852,-1.2242,-0.73524,0.30276,0.94229,-0.20483,0.3819,-1.1388,-0.18339 -1.6423,2.0166,1.9001,0.026561,-1.2816,1.0401,0.70983,-0.5298,0.80995,1.0125,0.63206,1.0827,-0.23067,0.063523,0.16231 -1.9541,-0.045927,3.1884,-0.86091,0.84042,-0.65976,0.82894,-0.27618,2.0271,0.34756,0.42786,-0.67376,0.54811,0.32195,0.058804 -0.082062,3.7638,0.68175,-0.40755,-0.32394,0.54958,-1.6685,1.0501,-0.51944,0.58954,-1.1718,0.29923,1.0747,-1.2093,-0.023612 -1.2895,-1.98,0.56978,1.331,0.065961,1.6996,1.0627,-1.3629,1.3213,-0.11283,0.17825,-0.36956,0.71421,-0.59267,-0.32373 3.9599,-1.4876,-1.5638,-1.0384,1.5142,0.64783,2.2284,-0.38848,0.72684,0.20655,0.80806,1.7046,-1.7157,-1.8829,0.51169 -3.4979,-0.14702,-1.1751,-0.42878,-1.1226,-0.30209,0.75546,0.54524,0.0755,-0.5085,0.41966,-1.7985,0.49509,-0.55401,0.058777 2.3698,0.83656,3.0591,-1.7161,-0.74735,1.7918,0.25358,0.5838,0.39964,-1.4415,-1.1035,1.0969,-0.44069,0.66659,-1.0591 -2.8756,0.63627,0.86163,-1.0091,-0.60262,-0.12708,1.5425,-1.2933,0.65766,-0.13801,0.38026,-0.28265,1.612,-0.66297,0.30476 1.3071,3.0449,-0.35391,1.1959,-0.7483,1.3828,-0.74629,-0.3891,0.60005,0.73481,-1.705,-0.14615,-0.78152,0.53676,-0.23409 -3.1499,-0.55716,-0.14307,-0.17724,-0.90015,-0.26569,0.40203,0.53059,1.6043,-0.0094679,0.38153,-1.3949,0.55967,-0.3234,0.26245 -0.26089,1.5608,-0.87113,2.1316,-0.24941,0.93587,0.69685,-0.7989,0.5577,0.35326,-1.4565,0.94672,0.56067,-1.3235,0.29898 1.8808,0.99094,-2.9485,0.65513,-0.50656,1.4979,0.19291,-0.87201,1.1413,-0.22621,-0.2017,-0.68825,-0.72855,-0.93639,-0.81392 -1.7214,-0.25239,1.0191,2.9803,1.1266,-0.45444,1.3566,0.40716,0.72163,-1.6347,0.052431,0.48339,-0.36935,-0.38039,0.94987 0.089145,1.8802,1.0108,1.7811,-0.1029,0.5305,-0.40943,-0.55767,1.4492,0.41585,-0.6488,1.6622,0.059665,-1.2444,0.33836 -2.5501,0.93074,0.81513,-0.51433,-0.73171,0.2971,1.5162,-0.010988,1.0634,0.93886,-0.1903,-0.14157,1.651,-0.85504,0.13906 -2.3026,-0.13724,0.43889,2.4356,1.4366,-0.34325,1.6175,-0.1199,0.93327,-0.95777,0.66324,0.59888,-0.41763,-0.093198,0.53526 0.35471,0.42894,0.85699,2.979,0.79541,0.34708,-0.49428,0.22773,0.40773,-1.5436,-0.12739,0.92121,1.0958,-0.43812,-0.52207 -2.5671,1.026,-1.6315,1.4921,0.56719,0.44968,1.947,0.20631,0.15033,1.2073,0.37596,0.3686,-1.0236,-0.21965,-0.603 -1.4808,2.8521,2.3501,0.16413,-0.029098,-0.71173,-0.077068,0.259,0.72454,-0.52864,-0.36678,1.3044,0.61573,-0.066013,0.47225 3.2832,0.94518,-1.2272,0.18655,1.3834,1.5723,-0.13585,-2.5243,-0.013397,0.48698,0.36249,-1.8994,-0.53502,-1.1204,0.75058 1.3181,1.8553,-1.9891,-1.4509,0.31394,1.2182,1.122,0.54671,-1.8284,-0.51347,0.71457,-1.6431,-0.77897,1.0111,1.2078 -2.6804,-0.91679,-2.3124,0.34298,0.21303,-1.2328,0.89069,0.40134,0.67911,0.28875,-0.47454,-0.74475,0.22458,-0.30898,-0.85981 -1.3304,1.4186,1.1712,2.6737,0.28807,0.24366,1.2103,-0.89365,0.71861,0.66933,0.28877,1.2983,-0.55326,0.17025,0.56196 -1.6693,0.80447,2.0423,-1.7778,-0.78755,1.6739,0.68465,-0.97278,0.46074,1.3108,0.50135,-0.73876,0.023032,0.62242,0.12342 -0.80409,2.4888,-0.45833,2.0945,1.4063,0.49794,-1.181,1.7477,0.1668,0.82437,-0.31268,0.61053,-0.49165,0.044295,-0.16265 -0.53711,0.67784,1.5883,-2.4274,-1.3532,1.2159,1.4102,0.091611,0.86669,-0.63978,0.04898,-1.1014,-1.2868,-1.1356,0.39564 -0.69254,0.21574,1.1543,2.2614,-0.46522,0.28716,0.075873,0.92144,1.8556,-1.2164,-0.030563,0.66122,1.1218,-0.1,0.546 0.10454,-0.1739,3.0616,0.67885,-0.36613,0.39746,-0.14259,0.57183,2.3538,-0.59263,-0.773,0.27236,0.69197,-1.2383,1.1727 -1.0457,1.0797,-0.29874,1.4194,-0.56999,1.0614,-0.022965,-0.8464,-0.40093,-1.1831,0.49114,0.98802,-0.034587,0.78057,0.52283 -1.3622,-0.34618,1.3175,0.46363,0.017322,0.37699,0.41944,0.35621,2.4837,-0.38274,0.86147,-0.083156,1.2816,-0.27491,0.054799 0.030068,0.98714,0.35736,2.408,0.25043,2.0403,-0.33229,-0.96343,0.52014,-1.0482,0.33649,0.5607,0.82116,0.32408,0.80351 2.5521,2.2534,-1.2697,-3.3636,1.0142,0.48726,-0.011334,0.29847,0.67857,0.45434,0.49941,-0.56443,0.91861,-2.0943,-0.26011 -2.9885,-0.10993,0.39061,0.31119,0.037473,-0.9974,1.5907,-0.39222,1.5726,0.43787,0.4811,0.3717,0.89481,-0.31451,-0.35542 2.879,2.8249,-1.0729,-2.2333,-0.036853,-0.43667,-0.91652,-0.4977,0.71923,0.46055,0.16194,-1.2718,-0.92168,-0.80482,-0.46387 -3.6564,1.1014,-1.9527,-0.69751,0.52293,1.8209,1.2843,1.3763,0.2552,0.93315,0.030367,-0.56388,0.019725,0.074871,-1.1089 -1.3448,-1.7418,1.8269,-1.3403,-0.6,0.9974,1.547,0.30264,1.4078,-1.2361,-0.64094,-0.28576,1.2096,-1.4132,-0.73776 3.4105,1.3893,0.16682,-0.76636,2.0334,1.4688,0.032323,-0.68558,-2.3259,-1.4852,-1.3102,-0.59039,-1.2011,-1.6456,-1.4312 3.2722,2.4325,0.31876,-2.8942,0.59463,0.46208,-0.81378,-0.72651,0.50002,-0.3082,0.23237,0.18838,0.50035,-0.23595,-1.5074 -1.1042,-3.2067,0.30063,-1.8159,0.17343,1.2057,0.032139,-0.21752,1.4513,0.62078,-2.0027,0.10597,0.82414,0.31304,-1.2907 -0.59898,3.3633,-0.78511,0.43857,0.10554,0.12441,-1.4313,0.78353,0.41412,0.95193,-0.34578,0.38364,0.88241,0.57829,-0.95296 -2.0309,-2.2306,-0.001067,-1.6628,0.057268,-0.01041,-0.17915,-0.36792,0.82379,-0.98494,-1.1716,-0.58863,1.4996,-1.6595,-0.26865 -0.21126,-3.799,1.5635,-0.8777,0.37229,0.49146,0.57362,1.7932,0.16576,-0.238,-0.98032,-1.154,1.2775,-0.19909,-1.0183 -2.5297,-3.0625,-0.13978,-1.1812,0.24617,-1.1277,-1.3921,-0.369,1.3325,0.16148,-1.3235,-0.3032,0.062356,-0.41791,0.7099 1.3086,2.0613,1.8417,1.3898,1.8107,0.22954,-0.81519,-2.3936,-1.2544,-0.39707,-0.7786,0.39139,-0.9134,-0.89862,0.30342 0.49212,-0.0003903,2.7005,-1.0801,-1.0315,1.1525,0.14222,1.5005,1.6047,-1.7856,-1.039,0.67357,0.82675,-0.94765,0.61921 -2.8474,-1.8085,-0.28422,-1.7538,-0.01745,0.42885,-1.8805,-1.1647,0.51294,-0.77038,-0.67279,0.29349,0.79858,0.10867,0.73883 0.93357,1.3815,1.6635,0.83728,1.3045,-1.1541,0.12943,0.47476,0.11685,-2.6599,-0.91573,0.66866,2.6249,-0.53433,-1.1077 -0.60772,-3.038,0.87209,-1.7457,0.23996,0.59821,-0.38931,1.7266,1.1949,-0.22805,-1.7014,-0.91374,2.2534,0.65448,-0.59959 1.7105,0.71894,-0.94249,0.95844,2.306,1.3694,-0.63772,-2.216,0.45371,0.10364,2.0143,-0.88071,0.96403,0.022419,0.98666 -1.9424,-2.4079,0.001519,-1.4737,0.47063,-0.55778,-0.80803,-0.47332,1.0583,-0.60904,-1.3434,-0.1743,1.2708,-0.92007,0.366 2.1013,2.6886,-0.044549,-0.40587,-0.24972,0.49669,0.047431,0.0017385,0.30585,-0.96831,-1.5376,0.7325,-0.25407,-1.4321,-1.7321 -2.0556,-2.6178,0.16486,-0.84648,-0.041964,-0.39924,-1.1179,0.026447,1.7823,-0.35021,-0.77595,-0.888,0.62045,-0.37672,0.57116 1.6959,1.5239,1.1494,1.5314,1.5553,1.223,-0.21858,-2.0189,-0.27335,-1.0611,-0.74427,1.1737,-0.1051,-0.45572,0.24904 -1.9485,-2.7986,0.3121,-1.7976,0.17242,-0.15491,-1.371,0.35932,0.68164,-0.63883,-1.2397,-0.7332,1.2912,-0.23275,1.0344 3.1291,2.3948,-0.58097,0.54797,1.6484,-0.029759,-0.44132,-1.7259,-1.3233,1.1509,-1.151,-1.1783,-0.3627,-0.71937,-0.55078 -2.7743,-1.1794,-0.73836,-2.0249,0.33845,1.5874,-0.55546,-2.8734,-1.2078,-0.81518,-0.97206,-0.068196,-0.47186,-0.5332,0.0070173 -2.7559,-1.1185,1.1035,-2.4445,0.67452,1.0666,-0.41411,-1.2449,-0.26306,-2.1848,-0.46872,-0.50461,0.73057,0.21147,0.5403 3.429,0.12133,-2.6645,-0.20681,0.97044,1.5189,0.98117,-1.3571,-0.19315,-0.86536,0.56532,-1.2649,-0.89192,-0.67956,-0.39888 1.4557,-1.2637,-2.2121,-0.84671,-0.21769,3.9218,1.631,0.34983,-0.40227,-0.53305,-0.31678,1.1303,0.17967,2.5442,0.33994 -0.05622,2.7403,-0.80851,-0.30828,-0.92895,1.3347,-0.42598,-0.93977,-1.4493,-1.2499,0.90408,0.037663,0.68502,1.2565,-0.10413 -1.8179,1.5443,0.044376,2.2938,0.95661,0.83732,1.0818,-0.18642,-0.41889,0.95471,0.0070718,0.90747,-0.44957,-0.16574,0.79477 -1.8307,0.67374,-3.0288,-0.40149,1.1635,1.3341,-0.74255,-0.83777,-1.3664,0.23556,-1.0734,2.2498,0.62638,1.1233,0.4904 -3.0671,-1.8519,-1.6929,-1.6675,0.18114,-0.29774,-1.8881,0.56057,0.46286,-0.25526,-1.3705,0.14865,0.29791,0.61454,1.0972 -1.5087,1.9311,0.62708,-1.3259,0.47846,1.5122,-0.043869,-0.08195,-2.1376,-0.78528,0.62986,-0.28459,-0.74027,1.2962,-0.60887 -2.9977,0.13183,-2.4387,0.018379,0.3773,1.5839,1.5845,0.16542,1.2056,-0.24217,-0.15136,-0.54635,0.3403,-0.90748,-0.29996 3.6947,0.54928,2.0792,0.60754,3.7212,0.04656,-0.56283,-1.4866,0.13837,0.20197,0.36424,-0.45701,-0.2201,-0.14162,0.15829 -2.8345,-1.6635,-1.7866,-0.53662,0.74604,-0.87779,-1.0191,0.50431,1.5521,-0.08091,-1.0292,0.31809,-1.0455,0.3609,0.4841 -1.5069,-2.0875,0.51416,-0.9838,0.22247,0.49133,-0.92914,0.33407,1.5331,1.1607,-1.4405,-0.98606,1.1452,1.1251,0.953 -2.8703,-1.4234,-2.9643,-1.7959,0.76932,-0.12529,-1.3013,0.54966,0.0025839,-2.0583,-2.3346,0.91272,-0.70623,0.40449,1.1304 -2.6224,-0.76575,-1.1348,-1.6721,0.51025,0.030193,-1.6842,-0.69396,0.90567,0.44481,-0.87651,1.742,0.11795,0.71466,1.01 -0.59386,2.861,-0.19622,0.36319,-1.0086,0.56122,0.28312,0.45951,0.74667,0.62235,-1.416,0.60633,1.403,-0.53722,0.87353 -1.5829,3.1359,0.33441,0.89758,0.10451,1.5421,0.40107,0.75651,-0.20556,-1.4173,0.018703,0.38272,0.99594,-1.0694,0.89239 1.3527,2.4079,-0.49508,1.9036,-0.10672,0.96968,1.0494,-1.4868,-0.35762,0.082511,-2.2544,0.65412,-0.80674,-0.10916,-0.69275 -0.2891,4.2958,1.5226,-0.49932,0.86697,0.27879,-0.9778,0.10777,-0.96909,-1.0221,0.23291,0.56634,0.8075,0.032787,0.27317 -3.9372,1.6156,-0.24456,-0.80668,0.47182,1.268,1.0801,-0.10816,-1.0358,1.252,1.3103,-0.45509,-0.088061,-1.0232,-0.64073 -2.6571,-0.96127,-0.056512,-1.1338,0.54293,0.12957,-0.97185,-0.45771,1.8174,-0.11919,-0.26241,-0.38059,0.503,-0.20267,0.77331 -3.3085,0.25504,-3.1819,-1.3255,0.90574,0.43106,0.025068,-0.58442,0.34569,-1.6497,-1.0299,0.47476,0.1077,0.20382,-0.27047 -2.6058,-2.1219,-2.2982,0.073819,0.34193,-1.1255,-1.8233,0.96624,0.58496,0.48846,-1.5799,-0.19638,-0.84991,1.4169,0.86843 -0.16773,-3.5605,0.35543,-0.50152,1.1061,1.2684,-0.9853,-0.93647,0.93736,1.435,-2.9449,0.69274,0.39865,1.4441,0.31272 -2.9643,-2.1638,-1.698,-1.6245,0.46056,0.27512,-1.6096,0.57042,1.1034,-0.8542,-1.245,0.37809,-0.58374,1.7549,0.317 0.41894,1.9647,-1.7174,1.5637,0.039076,2.1607,-0.56774,-1.2639,0.47327,1.2013,-0.22839,-0.12167,0.2961,-0.066864,-0.078238 -0.78681,4.599,0.74703,-0.27719,1.2163,1.0693,-0.75287,-0.24888,-1.8337,-1.2908,-0.42808,0.47919,0.5269,0.9594,-1.0803 -2.8092,2.4005,-1.2663,0.15453,-0.67316,1.6607,1.3849,0.57544,-0.38252,0.14581,0.60067,0.63088,0.87225,-0.15608,-0.065813 2.9495,1.4207,1.9542,0.37318,-0.087181,0.73859,-1.2228,-1.2016,1.4119,-0.6184,-0.90013,0.25522,-0.98194,1.5291,-0.37552 2.2138,1.8792,2.5231,1.0459,2.3547,-0.40186,0.69298,-1.3178,0.38435,-0.22825,-1.9819,0.86779,-0.33377,-0.69778,-1.6089 -1.9108,1.0595,1.6648,-0.6845,-1.2401,0.2131,2.055,-1.8678,0.084944,1.2786,-0.3563,0.2612,-1.0763,0.67973,-0.41357 2.6982,0.1193,2.2002,1.1338,0.03164,1.6632,-0.89436,-0.6644,1.1011,-0.40318,-1.3558,0.39235,-0.84667,1.6316,0.48476 -0.16312,3.3127,-1.6901,-1.0046,1.9626,2.4608,-0.59069,0.25325,-1.5708,0.32238,0.8419,-0.71131,0.010372,0.19749,-0.52154 1.672,-0.0082664,3.2358,1.6005,0.48876,1.7641,0.4185,-1.229,0.55262,-0.7601,-0.41113,0.18766,-0.076987,0.59376,0.70925 0.089832,1.7815,1.8645,1.3418,0.69507,-0.98392,-1.3482,-0.50646,1.9196,-0.61228,-0.74869,1.2201,0.44088,0.39065,0.072438 2.6002,1.1062,0.87194,0.73069,0.11022,0.24516,-1.4549,-1.9986,1.536,-0.39077,-0.19974,0.67699,-0.12232,0.709,-0.49033 3.5184,-0.25396,1.2822,1.2358,2.2813,2.1485,-0.66047,-1.3032,0.67454,-0.60581,-1.0827,0.23512,0.34548,0.98838,-0.72157 -0.43747,2.7526,1.2876,0.39421,-1.2402,1.1278,-0.73603,-0.59382,0.51376,-0.34884,0.37397,1.5068,-0.32827,1.2144,0.23681 1.3819,3.5069,-1.9563,-0.68778,-0.065377,1.6744,-1.007,0.14303,-1.5178,-0.27494,-0.75737,-2.0653,-0.9906,-0.5799,-0.96956 -1.9611,1.2905,-0.36884,1.8581,-0.19818,-0.087535,0.82632,0.25461,1.6109,0.56665,0.29482,1.4185,-0.42583,-0.41734,0.77791 0.78449,2.1569,-0.90407,1.0765,0.011508,0.30036,-1.6936,-0.84203,1.5273,0.49499,0.63115,0.77015,0.54903,0.49264,-0.81962 0.021209,1.0286,2.8463,1.7776,0.93912,0.42861,0.56499,-1.2034,0.12789,1.1237,-0.051469,0.58556,-0.99637,-0.21079,0.52504 -3.4773,2.2151,0.0034946,0.32524,0.66218,-1.5389,1.2878,2.3009,-0.36006,-0.36101,-0.57213,0.17329,-0.48184,0.39106,0.64828 1.7522,0.12577,2.7993,1.9602,1.6761,1.0908,-0.49144,-0.66317,1.3768,-0.77371,-0.52476,0.78969,0.29846,0.63141,0.83172 -0.76817,0.73133,2.957,0.7768,-0.41516,0.77282,0.82555,-0.85593,2.0009,0.65175,-0.15195,0.48504,-0.66196,0.39912,0.95639 0.21376,-2.3664,2.763,0.081869,0.099222,2.4345,1.0772,1.7729,1.6266,-0.3,-1.8083,-1.234,1.0746,0.66052,-1.0875 4.4776,-0.071128,-0.63799,-1.1938,1.5129,0.64044,0.40786,-1.1865,1.0352,0.033824,-0.23944,0.58774,-2.0707,-0.31357,-0.82143 -1.128,-0.80851,2.0723,1.0255,0.52871,0.86766,1.313,-1.3946,2.198,1.0404,0.017616,-0.47034,0.24216,0.32687,0.076407 -3.271,0.7809,0.6559,-0.42244,-0.83872,1.4119,1.0757,-0.45963,0.81282,-0.34567,1.1321,0.22602,0.41125,1.0176,-0.51905 2.86,2.2409,-1.406,-0.82468,-0.25245,-0.029321,-1.0136,-1.2321,1.2139,1.2758,-0.15926,-1.2905,-1.195,0.080537,-0.70844 2.5015,1.7458,0.72007,0.45972,1.2414,0.35301,-1.451,-1.8512,1.1437,0.18287,-0.79287,0.10579,-0.40627,-0.59918,-0.78686 3.5055,-1.4211,-2.481,-2.1826,-1.2582,0.66351,1.55,1.2238,0.64681,0.36769,2.0159,2.576,-1.3912,-0.26619,-0.33252 1.3017,0.7778,0.13591,1.9374,1.8625,1.1956,-1.3214,-2.2219,0.15016,-1.2581,0.49573,-0.017246,0.77729,0.89692,0.17657 -0.55187,0.56955,1.7891,2.4773,-0.19797,0.20704,0.93226,-1.8879,0.17797,-0.0089561,0.44612,1.1157,-0.90357,0.66877,0.79296 1.1504,-0.38934,2.6247,1.729,0.44203,2.8155,0.77929,-1.7801,-0.48213,-1.8706,-0.96401,0.73362,-0.044693,-0.45311,0.84633 3.4327,1.8408,-0.1347,-0.70938,0.76967,0.097065,-1.1133,-0.76409,1.4155,1.8266,-0.38958,-0.69635,-1.0474,-0.83611,-1.2016 -1.1663,-1.2341,2.9586,-0.95047,1.2901,0.16388,1.0171,0.54518,1.1006,1.7675,-0.52695,-0.15942,0.19434,-0.60397,0.045249 4.0626,-1.9617,-0.69814,-2.3322,2.9522,0.2895,2.1576,1.3972,0.82674,1.6431,1.0843,2.7771,-0.68641,-1.2178,0.21533 -2.6754,0.53489,-2.5282,-0.20661,-0.55126,0.051084,1.5485,1.4243,1.3303,0.51935,-0.76019,-0.95384,-0.13964,0.91225,-0.13311 -2.7814,2.0514,0.42521,-0.24082,-0.64956,1.3467,1.1031,0.37685,0.42745,-0.042269,0.69707,-0.10158,1.193,-0.5383,0.77405 -0.053404,0.97689,1.0003,2.8908,1.1904,0.66448,-0.35959,-0.69456,1.1476,-1.4419,-0.07268,1.2697,0.45066,0.26596,0.62216 -2.5597,-0.85582,0.073837,0.31603,0.086054,-0.16994,0.92517,-1.3633,1.8478,0.79315,-0.014347,-0.020517,1.118,-0.11362,-0.99796 -2.2037,2.5817,-1.5055,0.63096,-0.26367,0.042276,1.1217,1.985,0.059895,-0.0052328,-1.2062,1.0877,-0.73084,0.20724,-0.31516 -1.1075,1.2261,-0.38766,2.6918,0.048596,1.1674,1.1487,-1.0581,0.24039,-0.67607,-0.22513,1.02,0.69161,0.06404,1.0703 -3.0431,0.79543,-1.6146,0.34432,-0.28135,0.79433,1.1994,-0.27519,1.0194,1.5912,0.5989,-0.10569,0.17864,0.52119,-1.1736 0.28143,2.9337,-0.53289,-0.44686,0.83635,0.36859,-1.5718,-0.016499,-0.44659,2.082,0.51648,0.061046,-0.14651,0.34745,-0.72031 5.1965,-3.2425,-0.41606,-1.6971,3.674,2.9636,2.4353,-0.28932,-1.0863,-0.85463,0.67331,1.4155,0.17656,0.90401,0.51399 0.9244,4.4713,0.2234,-0.97618,-0.28706,-0.06354,-1.1311,-0.015395,-1.7196,0.7869,-1.0155,-0.80751,-1.5039,0.058331,-0.47594 0.47113,3.3414,0.79053,-0.02064,-0.39236,-0.51145,-0.94974,0.29129,-0.17141,1.0233,-1.6156,0.63442,0.57449,-1.6702,-0.57915 0.29496,2.3659,1.0191,2.1773,2.0988,-0.30316,-1.1536,-1.0538,0.53716,0.38912,-0.0077219,1.0592,-0.39572,0.058287,-0.086117 -0.45347,-1.0443,2.5558,1.6961,0.62108,1.8621,1.5145,-1.3178,1.1131,-0.63592,-0.090778,0.25236,0.72458,-0.95283,0.23734 -2.9323,2.0699,-1.3742,-0.21504,-0.57871,1.209,1.2432,1.123,-0.34467,-0.25743,0.3408,1.0273,-0.69808,-1.3478,-0.80973 3.8093,-1.8385,-1.6386,-0.8205,1.7896,3.0632,1.7142,-0.20264,0.40384,-0.82756,0.55145,0.32816,-0.015369,0.10525,0.021867 -0.14521,3.5506,0.47773,-0.67386,-0.37726,0.86096,-1.4497,0.4763,-0.47412,-0.33977,0.20781,0.74682,0.494,-1.0871,0.47558 -2.1462,3.393,2.2432,-0.2952,0.51444,-0.25655,0.54742,-0.20957,-0.78642,-0.37415,-0.40417,1.041,-0.13943,0.92999,-0.0034709 1.0915,1.1621,1.4476,1.9507,-0.17362,1.8649,1.2896,-1.6954,-0.031997,-0.12455,-0.93983,0.24535,-1.1545,0.24453,0.85653 -2.5388,0.689,0.072123,-1.185,-1.4711,0.31348,0.48594,-0.2794,-0.43651,-0.45747,0.5478,-0.72272,0.86001,-2.3432,0.41543 4.1091,-0.12388,-2.4737,-0.9233,0.52383,1.3429,1.6931,0.79031,0.32229,1.7968,1.1791,-0.97905,-1.7542,0.99415,1.3349 -1.6771,-0.88199,0.099962,0.28965,0.55905,0.50488,1.1017,-2.1586,1.3654,0.64215,-0.058015,-0.12923,0.8362,-0.65547,-0.90318 1.5015,-1.0847,3.5905,1.7773,2.2179,2.1194,0.083965,-0.91486,-0.45,-1.4457,-0.46419,0.59176,0.37847,1.0071,1.3489 -0.1415,3.0465,-1.1644,-0.48855,-0.013115,1.029,-0.57596,-0.46723,-0.11631,-0.19649,0.55314,0.13247,0.10969,0.63271,-0.64838 -2.7651,1.8337,1.9814,0.1169,0.48635,-0.033381,0.74314,0.54717,0.57342,0.22205,1.2754,1.1167,-1.1132,-0.11809,0.029777 -0.61144,3.4958,-1.0009,-0.16209,-0.65472,1.6009,-0.29766,-0.074074,-0.94251,0.1898,-1.2782,0.36682,0.25992,-1.0807,0.15684 -1.3222,1.5543,0.10311,0.82519,-0.60926,0.71087,1.1551,-0.33153,2.1714,0.17202,0.034874,0.89834,0.61649,-1.3165,0.91578 -3.0141,0.82313,0.28568,-2.0933,0.1856,0.63115,0.25368,-1.8102,-0.098807,0.84882,0.73962,-0.17861,0.13806,-0.058476,-0.587 -1.1297,3.0943,-0.84457,1.3733,0.51976,0.60269,-1.1236,1.6125,0.5984,-0.15069,-0.56425,0.66681,-0.11236,1.6537,-1.3431 0.42782,-0.19578,3.3251,0.21314,-0.21758,0.97537,1.7037,-1.6875,1.0859,0.29042,-0.78518,0.37551,-1.5408,0.21579,-0.054323 2.1241,3.0463,-0.71652,-0.51355,-0.11685,-0.30654,-0.98417,-1.3572,0.37773,1.6072,-0.33476,-1.2667,-1.2214,-0.32827,-0.28714 1.9199,-4.5949e-05,-1.7656,-0.22526,1.6526,0.48975,0.70296,-1.6494,-0.12444,-1.9785,-0.44959,-0.12547,0.87001,-1.4673,-0.14066 1.0573,2.25,2.5382,0.41917,0.45542,-0.3097,-1.2491,0.55696,0.4333,1.1208,0.11609,0.93583,-0.50966,-1.2251,0.98446 -3.3776,1.4421,0.39364,-1.4406,0.14636,0.038485,0.37401,0.14905,0.29048,1.362,0.98981,-0.44219,0.43224,-1.4159,-0.12657 -1.9918,3.1543,-1.3703,0.34686,-0.80708,1.7621,-0.22529,1.2153,-1.1002,-0.047083,-0.14263,1.6019,0.024097,-0.12561,-0.93944 2.886,0.37164,-1.7901,-0.19959,0.49276,0.079625,-0.3247,-1.5422,1.1041,0.61555,0.95324,-1.2366,-1.6838,-1.1613,1.2096 1.5929,0.76502,2.5465,-0.16642,-0.62611,1.1416,0.14714,0.44508,2.1549,-0.21102,-1.7328,1.1351,-1.4715,-0.32881,0.38215 -2.1363,-1.9498,0.65787,0.9687,1.7592,0.6139,0.37973,-0.98488,2.0014,0.52094,0.54476,-0.4824,-0.55055,0.87917,-0.28441 -0.9211,3.8524,0.32856,0.024978,-0.82038,1.0496,-0.35567,0.35743,-1.197,1.4383,-1.0557,1.0176,-0.35139,-0.0066332,0.063158 -1.5118,0.72085,1.2783,-0.52647,0.2712,0.53053,0.076977,1.1889,2.1682,0.55313,1.1773,-0.86788,0.5444,0.021528,0.4944 -4.1861,0.48596,1.5123,-1.3488,1.5762,-0.88396,0.59293,0.085656,-0.16942,0.999,0.90328,-0.21563,-0.98657,-0.57583,-0.12422 3.5061,-0.085914,0.57733,0.62912,-1.1236,2.2199,-1.1261,0.39311,0.83968,-0.56636,-1.4812,0.48462,-0.70295,0.89106,-1.6248 -0.33953,3.4946,-0.82031,-0.14038,-0.95545,1.879,0.19829,0.0072416,-1.3062,-0.58247,-1.8114,0.38841,-0.36354,-0.52933,-0.053604 -0.92676,2.6701,1.4941,-0.28066,0.22141,-0.40322,-1.0585,-0.60193,0.12266,-1.1864,1.3068,1.577,-0.61059,1.3174,-1.2109 -1.0663,-0.069704,2.6531,-0.88901,0.52872,1.2236,-0.56174,0.44993,1.4632,-0.86138,1.9808,0.51364,-0.12887,2.7117,0.10312 2.5386,1.1546,-2.1164,0.54294,0.059263,1.6212,0.16685,-1.3784,0.51216,-0.74975,-0.49607,-1.4656,-0.65652,-0.45951,-0.78487 0.93411,3.8857,-1.131,-0.23828,-0.74354,1.4059,-0.55081,-1.103,-1.6481,-1.2285,-0.95569,-0.64108,-0.95142,0.16536,-1.1448 2.3642,3.1976,-2.6377,-1.1784,-0.21779,0.29262,-0.1652,0.2664,-0.96145,-1.2481,0.40522,-1.9682,-0.6963,-0.83195,-0.70799 2.4308,1.616,-0.98284,-2.5493,-0.12909,1.037,-1.2126,-0.78629,1.6494,0.92713,1.0701,-0.11312,0.62383,-1.0014,0.030525 -3.1788,2.3872,1.0859,0.080973,0.33668,-0.019306,1.3757,0.5759,-0.13163,0.36558,0.76465,0.43746,0.43626,-0.20435,0.00064392 -0.39189,3.4739,0.8906,0.69753,-0.42566,0.37803,-1.1738,-0.4643,-0.51228,0.78652,-0.21474,1.0907,-0.8813,0.26975,-0.56858 2.8182,2.3342,0.30385,0.2851,0.78166,-0.58564,-1.1963,-0.9056,0.86624,0.82821,-1.2039,-0.65571,-1.6791,-1.1243,-0.43239 1.8455,0.84578,-2.7149,0.18012,0.059081,1.518,-0.24049,-1.7023,-0.4697,0.41947,0.20578,-0.20077,0.49678,-0.79023,-0.043261 1.9297,2.3718,-0.42652,-1.2664,-0.6606,1.2497,-2.1756,-0.81447,1.0048,-0.44241,0.45951,-0.23264,0.51044,0.48295,-0.31707 1.7847,1.2388,0.8346,-0.06352,1.2281,-0.59012,-2.1359,-0.31125,2.7649,0.10453,-0.24165,0.30878,1.0678,-0.19721,-0.047569 3.3268,-0.39486,1.6937,1.9331,-0.1856,1.6803,-0.33758,-1.8513,-0.91565,-1.1952,-0.88543,-0.54827,-0.9108,0.84458,-0.076804 -2.511,0.58687,-0.50348,0.58018,-0.58493,-0.45014,1.111,1.1046,1.9046,-0.5886,0.61076,-0.83376,0.32332,-0.75062,0.55764 0.71983,2.9586,1.8614,0.4769,0.36482,-0.49351,-0.99463,-0.85017,0.58368,0.98548,-1.0172,1.3148,-0.72853,-1.0232,-0.34299 1.9647,2.3681,0.082385,-1.3936,-0.27659,0.40866,-1.9977,-0.45624,1.5483,0.6234,-0.30784,-0.55288,0.133,-0.63123,-0.90403 2.4868,1.0872,0.76602,-1.2439,0.95807,-0.041094,-1.4018,0.31207,2.527,-0.094743,-1.0132,0.64815,0.64562,-0.5042,-1.356 0.91415,3.5041,0.024462,-1.1861,-0.67437,0.57208,-1.1407,0.095848,0.023892,-0.5795,-1.284,0.26286,-0.056853,-1.0694,-0.70153 0.24864,2.9629,0.55538,-0.45216,-0.59345,0.57117,-1.4257,0.17755,1.1104,0.062524,-1.1407,0.88346,0.95936,-0.96981,-0.060186 -2.2337,2.3373,-0.91028,1.5967,0.18225,1.4403,0.4885,1.6027,0.20383,0.19308,-0.26292,0.74611,0.36554,-0.9326,0.60886 2.8008,0.5171,0.41,-0.53055,2.1076,-0.07401,-1.4043,-0.87382,2.2729,1.3604,0.38725,-0.46259,-0.15373,-0.53057,0.28861 0.080433,2.4133,0.85523,-0.9007,-0.056835,0.43566,-2.1195,0.30176,1.1206,-1.7098,-0.55318,0.42634,1.6399,-0.37291,0.59179 -0.96459,2.7248,-0.15577,1.8485,0.10486,0.98666,-0.57781,0.18925,-1.0923,1.1489,-0.092384,0.81436,-1.7337,0.21928,-0.007984 -1.6369,4.1381,-0.2494,0.0055469,0.54306,0.97163,-0.53157,1.2793,-1.8501,0.16089,-0.75417,0.96761,-0.084535,-0.58061,-0.74792 -3.2931,-0.81468,-0.47407,-0.35631,0.22697,-0.28576,-0.52728,-1.1718,1.3166,1.1635,0.31815,0.14894,0.43219,1.3659,-0.88052 0.7875,2.5549,1.0102,0.55345,1.2081,-0.45349,-1.2733,-2.0171,1.1261,0.93867,-0.10764,0.23925,-0.21641,0.6884,-0.52283 -2.3195,-0.51434,-1.4146,-1.3341,0.8389,1.4008,-1.7932,-1.231,-0.75249,-0.7923,-0.46118,1.8606,0.37823,0.3514,1.5075 -2.3469,-0.26492,-1.1817,-0.020784,-0.661,0.78264,-0.16771,0.33789,2.3716,-0.70244,0.61553,-0.71869,-0.092677,0.81438,-0.63845 -2.5999,-0.95716,-0.96208,-0.92649,-0.41907,0.63523,-1.4277,-1.7731,0.54325,0.29693,-0.11107,1.3356,0.15636,1.0325,-0.3909 -2.2559,1.4935,0.96952,-0.62351,0.68629,2.1489,1.5052,-1.8393,-0.66099,-0.6151,0.52813,-1.0938,-0.31415,0.24131,-1.0226 -1.8895,-1.0815,-0.40236,-1.8862,0.024338,2.0855,-1.6924,-0.60307,-0.48946,-0.45216,-0.54858,0.20872,1.5365,0.6837,1.3818 -2.2932,-1.3824,-2.2061,-0.61273,0.018009,0.9615,-1.582,0.9772,1.1625,-0.70084,-0.81669,0.16332,-0.07927,1.6475,0.70396 2.4636,1.9586,1.7787,-0.056922,-0.79498,1.3804,-0.88081,-0.30816,1.1377,-0.20746,-0.84175,0.23651,-2.4239,1.1869,0.45178 -2.3106,-2.2441,-0.39124,-0.4189,0.57402,-0.048236,-1.8251,0.20645,1.7682,0.60775,-0.86757,0.020675,0.16898,1.3287,0.44385 0.83001,-2.1409,1.1714,-0.80814,-0.60813,2.6472,1.5018,-0.17862,1.2294,0.8221,-1.4925,-0.81674,-1.0581,1.8752,-2.4643 -3.204,0.368,-1.6904,-0.91363,-0.15526,0.86534,0.4317,0.31872,0.67248,-1.8784,0.48901,-1.2351,0.44249,-0.37948,-0.20777 -2.0589,-0.80237,0.92024,1.0317,1.2766,0.61766,0.64445,0.71517,1.9767,-0.82355,1.1165,-1.0357,-0.7408,1.3472,-0.53627 -2.1981,-1.0491,0.12895,1.2032,1.1685,1.3776,0.34859,-0.32136,1.6902,0.070761,0.9867,-0.8526,-0.77626,1.1093,-0.43138 3.8633,-0.10897,0.90014,-2.1117,3.5828,-2.0101,0.29281,0.93953,-3.1177,1.1,1.7545,-0.48793,-1.2956,-1.1169,0.97231 -0.82334,3.7427,0.25851,0.92159,0.91223,0.66928,-1.0801,1.0236,-0.79265,-1.0691,-0.85293,-0.58076,1.0938,-1.0565,0.74528 1.301,3.0325,1.1729,0.17782,0.18385,1.8226,0.087093,-0.52328,-0.23602,-2.1189,-0.76068,-0.14187,-0.62823,0.34955,0.23333 0.88886,2.5691,1.141,-0.016454,0.33538,1.0942,-0.57962,0.34423,-0.67862,-1.338,-0.89269,-0.015608,0.29827,-1.7008,0.072588 -0.13041,2.8586,0.94362,0.46184,1.3099,-1.6599,-1.5646,1.2466,0.8898,-1.6732,0.10771,0.080751,0.84266,-0.7981,0.1896 -1.8856,2.2115,1.7637,-0.1064,-0.24938,0.69536,0.93106,0.17339,-0.27875,-1.6837,0.30169,-0.16449,0.76495,-1.7016,1.6049 2.1579,2.1256,1.5857,-0.31334,1.6241,-0.53389,-0.65578,-0.0090647,0.5637,-1.5682,-0.78396,0.98175,2.085,-1.941,-0.98388 1.0743,2.4776,1.4707,-0.3422,0.27895,-0.21201,0.26339,0.25481,0.65018,-1.5041,-2.0339,1.1099,0.96808,-1.9634,-1.263 2.1497,0.48499,2.0646,1.4066,1.1877,1.3265,-0.89225,-1.8278,0.63692,-0.89922,-0.097051,0.888,-0.29494,0.68314,1.174 -1.5911,0.32041,-2.2137,2.207,-0.21131,0.34458,1.0712,0.7921,0.97002,-0.063569,-0.36802,-0.37219,-0.55909,0.046405,0.12913 -1.3614,3.8331,0.19412,0.4281,0.72267,0.064138,-0.81052,1.329,0.28799,-0.9015,-0.16878,0.80379,0.82081,0.25098,0.079279 4.9712,-2.5447,-1.1899,-1.0198,2.8248,1.2576,3.3527,1.9328,-0.85916,2.204,0.20249,2.3609,-0.62,-0.045715,0.68266 -2.3612,1.9506,0.38109,0.63301,-0.67951,-1.1856,1.1487,1.7099,0.48201,-1.4742,0.045052,-0.24205,0.40253,-0.98497,1.4587 -3.3441,0.64969,0.45785,-1.432,-0.42546,1.2187,0.81595,-1.044,-0.32021,-0.13583,0.9029,-0.25515,0.39679,-1.8417,-0.020296 0.46705,2.6324,-0.56537,-0.002671,-1.5237,0.95199,-0.49851,-0.09375,0.2487,-0.72076,-0.42363,0.76904,1.247,-1.1637,0.25116 -0.44467,3.5004,1.6267,-0.73441,-1.0538,0.68992,-0.053707,-0.26722,-0.38872,0.095644,0.5163,0.81531,-0.25451,0.52635,0.46853 -1.7615,1.3338,2.7685,-1.1036,-0.58338,-0.30829,1.0339,-0.44541,1.2949,0.24018,0.33098,0.77888,0.45818,-1.2324,0.84555 -0.66444,-1.0867,-1.5675,0.40642,0.8254,-0.45645,-0.81925,-2.3534,1.5127,-0.045423,-1.4177,2.164,-0.76687,0.35647,1.2797 -2.5357,1.8673,-0.29876,0.87012,-0.31995,-0.24235,1.4203,0.97099,0.96872,1.1008,0.30452,0.67496,0.36923,-0.87627,0.40474 -2.3767,3.1408,-0.91212,0.35915,-0.51134,1.4235,0.38792,1.2054,-0.88885,0.10637,-0.069559,1.2967,0.55092,-0.77726,0.031582 -0.13934,-3.1144,1.4758,0.4063,1.2013,1.6802,1.637,-0.31674,1.4563,-0.1181,-0.68561,0.3499,0.28584,1.1622,-1.1566 -0.56212,-0.30472,0.17043,-1.1423,0.31312,2.6407,-0.66253,-0.021955,-0.53551,-2.5023,0.95906,1.2374,0.097653,2.8615,-0.3976 2.3296,-0.971,2.1928,1.0505,1.3453,2.017,1.7816,-0.62948,-0.74752,-1.3938,-1.3153,0.97673,-0.73946,0.20127,-0.039488 -0.96333,-2.8965,0.29649,-1.3448,0.77319,0.71537,0.97117,-1.2318,1.1143,0.1315,-1.1733,0.72513,-0.49653,0.47614,-1.9872 0.34691,0.42978,2.9437,-0.67738,-0.17111,1.3765,0.97019,0.43756,2.1986,-0.78796,-0.27032,0.23499,0.13582,-0.62311,0.70037 3.2999,-2.8632,-0.12481,-2.8618,2.9517,2.6897,2.2496,-0.60789,-2.032,-1.1542,0.16735,2.0562,-0.7404,0.97969,1.0878 -0.23294,3.7801,-0.94697,-0.20203,0.10895,1.2918,-2.3221,0.83348,-1.6121,-0.70306,0.9374,-0.25838,0.85936,-0.19304,-1.6546 -0.01142,1.9476,-1.6449,2.3975,-0.029241,0.51419,-1.1699,-0.35314,0.48321,0.23835,0.15956,0.08264,-0.22794,1.4138,-1.0477 -2.1682,3.7157,0.10106,0.38265,0.2706,0.49147,-0.15613,0.88066,-0.66873,-0.49602,-0.32164,1.3921,0.85394,0.65974,-0.14736 0.43134,-2.7734,1.982,0.14441,1.126,1.4363,1.4974,1.4054,1.0963,0.8389,-1.1371,-0.56751,0.63082,-0.76805,-0.84524 1.0386,-0.94892,-2.7528,1.2165,-0.58472,1.4257,1.0766,0.93172,0.67167,0.30424,-0.74016,0.93316,0.81643,-0.28703,-0.17534 -1.051,-3.7586,-0.83949,0.060656,0.16287,0.47824,-0.99573,-0.38062,1.2848,0.31365,-2.1684,0.34013,0.31032,-0.080098,-0.34003 -1.3769,-1.4373,-0.015545,-2.3968,-0.14092,-0.24294,0.35205,-1.6367,0.83715,0.02693,-2.0683,0.29276,0.60642,-0.01598,-0.67913 -2.719,0.51979,0.024513,-1.2867,-1.4699,1.7153,0.75334,-1.2551,-0.43863,-0.89159,0.98415,-1.0218,-0.13164,0.23921,-0.71881 -1.5279,2.217,-0.41391,0.30826,1.8331,1.0113,-1.287,1.5524,-0.15865,0.16995,0.67498,-0.080426,-0.92975,1.4262,-1.5137 1.6834,2.84,1.8977,0.066863,0.063305,0.37404,-0.88243,-0.50893,0.6865,0.61789,-0.62695,0.63907,-0.71484,0.13096,0.25157 -0.1365,-0.94267,-1.5486,0.59968,0.94441,-0.43467,0.48083,-0.065459,1.6005,-0.85222,-0.60636,1.8714,0.12799,-1.1713,0.19451 1.4965,1.9175,2.7159,0.96719,2.383,-1.4962,-1.3041,-1.4047,0.37757,-0.16783,-0.097294,1.0198,-0.28706,0.45943,-0.21806 -0.79434,-1.3764,-0.86862,-1.7329,-1.6222,1.0082,-1.7276,-1.1588,-1.0137,1.2389,-1.0406,0.16092,-0.38488,1.7534,0.98915 -1.0096,0.49134,1.1606,1.4143,1.9971,-0.38547,0.14117,-1.6561,-2.0202,-1.798,-0.71894,1.5653,0.97132,0.10578,-0.068635 -1.7824,-0.8982,1.1095,-0.79051,-0.38244,1.0446,-0.023139,-0.56908,2.6521,0.98116,-0.076289,-0.61646,0.36698,0.2344,0.3402 -3.0375,2.0117,-1.5869,0.14797,-0.56124,0.26668,1.4762,2.1891,-0.14836,0.77095,-0.032928,0.33437,-0.73404,-0.52293,-0.47192 -0.79509,3.2096,-0.095971,0.77386,1.3271,-0.29209,-1.5732,0.23116,-1.0194,1.9505,0.29537,0.33126,-0.81383,-0.21747,-0.88356 2.6703,3.0801,-0.90302,-0.68772,-0.16657,-0.85612,-1.1252,-0.63848,0.42903,1.3326,-0.73275,-1.311,-1.407,-0.077772,-0.7552 -3.6483,1.9247,1.7536,-0.6421,1.0931,0.73815,0.95667,1.0226,-1.2786,-1.188,0.3732,-0.4836,0.0010021,-0.8534,0.51249 0.80653,-1.7867,-1.8585,1.7397,0.055709,-0.0058996,-0.27887,1.3139,0.81072,0.53957,-0.37143,-0.90387,0.45039,-0.20754,0.54048 -1.2465,-0.75688,-2.4679,-0.43167,-0.96712,1.9135,-1.2995,0.90065,1.3638,0.21735,-0.87116,-0.1397,1.6609,0.72198,1.3032 -1.8229,-1.7082,2.6304,-1.1894,0.95223,-1.0971,0.66268,2.5305,0.10818,-0.2258,-0.037137,-1.8319,0.97224,-1.2562,0.072315 -3.2775,1.8583,-0.78732,-1.095,0.38707,1.1785,2.3017,-0.66327,-1.2871,1.0865,-0.42325,-0.48247,1.0991,-0.1159,0.31617 -2.0235,3.7033,0.15535,0.22053,1.0056,-0.84753,-1.1625,1.8247,-0.74944,0.53428,-0.3659,1.0563,-0.33278,-0.93412,-0.44821 0.29432,1.2145,1.127,-0.5976,-1.531,1.5616,0.24809,0.3503,2.1307,-0.29563,-0.30972,0.4684,0.14982,-0.088976,0.89649 -0.81174,3.2081,-0.85823,0.67042,-1.7912,1.3012,0.061653,-0.65054,-1.6745,-0.69299,0.05839,0.90352,0.33228,-0.38033,0.14796 -2.0246,-0.061343,-3.6116,-0.58399,-0.43362,1.2243,-0.89233,0.13541,0.75667,-1.8232,-0.8038,0.86733,0.36004,0.021009,0.78791 -2.3348,-0.85138,-1.1608,-0.12562,-0.53345,-0.062146,-0.036744,0.27742,2.6048,0.070804,0.027494,-0.63581,0.28582,0.015389,0.26227 -0.38991,2.6411,0.23657,1.9808,-0.56717,1.2838,-0.21049,-0.3298,-0.075621,1.0003,0.25522,0.78311,-1.0777,0.62681,0.38113 -3.4191,-0.81094,-1.0217,-0.91789,0.29855,-0.77922,0.97697,-0.35434,1.6971,-0.56636,0.13974,-0.66913,-0.86657,0.45241,-0.4018 1.0327,0.89109,2.6555,-0.16276,0.39665,0.96161,-0.25244,0.6958,1.7736,-1.0853,-1.9237,1.4947,0.68558,-0.48122,-0.37075 -0.06031,3.5148,1.6626,0.19085,1.0842,1.9975,-0.37862,0.6228,-0.92542,-1.4567,-0.56199,-0.79966,-0.57382,-1.2485,0.58085 2.8125,-0.54315,-2.626,-3.1816,-1.2024,1.8699,2.0861,1.7597,-1.339,0.48799,1.0089,2.8032,-0.25548,-0.71874,-0.39503 -2.3661,-1.7555,-0.18642,1.8055,1.8864,-0.073834,1.9914,-0.72645,0.50753,-1.6355,0.49664,-1.1204,-0.078856,-0.21767,0.41369 2.1422,0.92467,-0.70526,-0.081008,1.0608,-0.67489,0.15264,-2.8748,0.55201,1.6728,0.72977,0.33321,-0.65926,0.24352,0.38382 0.45268,2.8679,1.4491,1.0404,2.3196,-1.3785,-1.9873,0.059845,1.116,0.30519,0.019469,0.66753,-0.24939,-0.052317,-0.17757 -0.024289,-0.58159,2.7261,0.92013,1.5984,2.0016,1.4876,-0.2573,-0.055268,-0.98359,0.10888,-0.19387,1.0066,-1.7788,1.3693 -1.0067,-1.3794,2.0192,2.4416,1.5462,0.42382,1.5681,0.36328,1.7748,-1.557,0.18432,-0.28782,0.4418,-0.30887,1.1321 -1.697,1.4041,1.392,2.579,2.4871,-1.3983,0.59113,-0.085954,-0.33727,-0.31678,-1.0169,1.0329,-0.28781,0.15845,0.15361 1.9238,0.024457,-0.45681,-0.75675,1.1929,-1.0438,-1.0043,0.09063,2.5074,0.66851,1.2925,0.1276,1.928,-0.82383,0.71891 0.68897,-2.1053,1.5098,2.1913,1.1147,1.743,-0.15465,1.7155,0.13214,-2.0891,-0.24779,-0.75251,1.4761,0.039919,0.77026 0.098752,-2.1035,2.0584,1.8559,0.5782,2.6625,1.5503,-1.0884,0.12092,-0.89267,0.1727,-0.19073,1.4182,0.43884,0.084287 1.3056,-0.10751,2.2275,0.3142,-0.28997,1.3455,-0.29977,0.77685,1.2231,-1.0331,0.2499,1.7656,1.8518,0.69954,-0.90763 -0.94608,-1.1663,1.5047,1.3825,-0.20673,0.41996,0.36432,1.4309,2.519,-0.99386,0.040069,-0.68483,0.79776,-0.19125,0.69906 3.2011,-2.1066,1.6844,0.88793,3.4565,0.7597,-0.47633,1.0563,-0.56049,-2.4819,-0.33259,0.87421,1.9497,1.2736,0.18656 -0.080799,-1.8262,1.7132,1.7989,0.013263,2.6007,1.1488,-0.65241,0.25045,-1.1007,-1.2981,0.51783,0.52176,-1.4273,0.70899 1.5031,-1.8312,-2.3157,0.42752,-0.067155,1.1895,1.0132,1.6054,0.53157,-0.32204,-0.063818,1.2952,1.0313,-1.1494,0.51741 -1.5047,-0.17347,-0.8668,-2.1837,0.63046,0.69027,-0.56666,-2.0535,-0.74732,0.81272,-1.1746,0.98211,0.5433,1.8563,0.93756 2.6588,1.2748,-0.6825,-0.62444,-2.3155,-0.35133,-1.1292,-0.1148,1.1199,-1.63,-0.41189,-0.3542,-1.2052,-0.21287,-1.5324 -3.0702,-1.7441,-1.4075,-1.1244,0.23443,0.77317,-2.0274,0.196,0.437,-0.35662,-0.42569,0.31934,0.36595,1.9288,-0.094958 -0.093075,1.3753,0.35045,3.0449,2.2891,-1.1302,0.20264,1.185,0.18523,-1.4137,-1.1697,0.11672,0.098592,-0.52888,0.15975 -2.0064,-0.026747,-1.0979,-1.0227,0.82837,0.24299,-0.95288,0.53632,0.58252,-0.67446,0.22068,0.83572,1.2503,2.4284,0.7664 -3.2076,1.9136,-2.2619,0.22376,0.63165,1.8312,0.86617,2.8439,-0.87034,-0.43851,-0.69417,-0.32279,-0.66305,-0.76505,0.20298 0.54426,-0.66258,1.1763,1.4939,0.062158,2.1902,0.57904,0.28597,1.8369,-0.64954,-0.0052972,0.67735,1.239,0.062372,0.2815 0.054788,3.2376,-2.0245,0.10368,-1.6598,1.1074,-1.353,-0.19186,-2.0106,-0.17761,0.2992,-0.80979,0.7305,0.11578,-0.77546 -3.2949,-1.627,-1.9714,-1.4065,0.54748,-0.23947,-1.579,0.23119,0.88334,-1.8767,-1.0196,0.39963,-0.539,1.1555,0.4932 -2.0274,-3.5052,-1.0125,0.74824,1.8796,0.33752,-0.73177,0.037484,1.1791,-0.1823,-1.1823,-1.2325,-0.16956,1.8961,1.0173 4.2133,-0.033964,-0.52131,-2.6415,1.6337,0.38719,1.083,-0.48843,1.9797,1.8432,1.1395,1.0043,-1.0491,0.069446,0.47361 -1.0133,-2.9382,1.4634,-0.43475,1.621,3.0144,0.90884,0.55083,-0.12622,-0.5699,-0.95479,-1.2564,3.2623,1.4465,0.56895 -2.2979,-3.1819,-1.4551,0.48113,1.1325,0.76714,-0.90962,0.47321,1.3431,-0.28308,-0.74714,-1.0881,-1.2393,1.6628,0.072412 -2.4456,-0.18833,-1.062,-0.42352,-0.25567,0.78269,-1.2253,-0.75613,-0.047185,-0.6785,0.77087,0.96812,0.65304,2.2733,-0.53698 -2.3533,-1.4342,-1.2888,-0.015859,0.87344,0.16442,-2.2513,0.8117,-0.18979,0.57673,-0.33458,0.93638,0.20321,1.948,1.086 -1.3707,2.0135,-1.6942,1.6375,-0.31833,0.86095,-0.36985,0.95404,0.82612,0.50968,-0.44165,1.1553,-0.22708,0.028075,-0.23831 0.073147,-0.30479,3.0421,0.99682,0.17002,0.25193,0.39312,-0.2754,1.4867,-0.24358,-0.12183,1.185,0.86145,-0.66269,-0.22769 -0.86147,2.6109,0.20299,0.9355,0.042417,-1.1141,-0.50775,0.59153,1.6158,-0.79343,-0.56487,1.4959,0.5995,0.43923,-0.19909 -0.85629,0.95973,1.8082,-0.83124,-0.95577,0.95084,0.48261,0.033977,2.0737,-0.33996,0.26452,0.020826,1.1897,-0.91268,0.7675 4.7692,-0.22945,-0.73909,-0.36895,1.4012,1.4543,0.9883,-1.8864,-0.26582,-1.1542,0.68768,-0.97498,-0.58413,-0.23361,-0.68036 -3.1209,2.0985,-0.54222,0.21781,-0.39983,0.63024,2.0674,-0.080789,-0.6722,-0.064172,0.46461,0.10086,0.57323,0.13315,0.39098 -2.2191,2.4484,-0.082631,0.72392,0.19047,0.51083,0.74841,1.6982,-0.21855,2.1785,-0.11073,1.5084,0.048702,-0.54241,0.38562 -0.18998,1.1079,-1.2172,2.595,1.5404,0.020055,-0.091268,-1.0728,0.6576,-1.8545,-0.95499,1.0548,0.89719,0.067433,-0.055154 -1.1193,2.9047,-1.4796,1.2308,0.95125,0.22916,-0.80964,1.7445,0.97005,0.26773,-0.95546,0.72223,-0.17805,0.019305,-0.82152 -3.0399,1.5013,-1.8326,0.0078012,-0.20735,0.98029,1.8072,0.54457,0.27607,-0.062291,0.2245,0.89679,0.29456,-0.71269,-0.33687 1.1759,2.6139,-0.10434,0.58908,-0.53079,-0.14891,-0.62379,-0.92965,0.62746,0.2351,-0.99072,1.0027,1.4199,-0.40859,-0.68817 -1.2999,2.8504,-0.14806,1.3055,-0.040161,0.45266,-0.55142,1.535,0.22924,1.4475,-0.55134,1.2661,0.38181,-0.47017,-0.15331 -2.4119,2.9141,-0.9017,0.55313,-0.48913,2.1604,0.24963,1.3781,-1.0877,0.067103,0.041746,1.618,-0.3825,-0.064085,-1.1042 -1.9015,2.176,-0.765,1.2132,0.07596,-0.81466,0.87452,2.0653,0.76837,0.62942,-1.0791,0.6056,0.43623,-1.0969,0.84029 1.6172,2.0666,0.34715,-0.17605,2.3909,-0.86992,-1.4511,0.045139,0.99525,0.45241,0.083227,0.50516,1.6853,-1.9565,-1.6846 -0.86382,4.2723,0.68073,-0.23482,0.57771,0.24038,-1.8344,0.53123,-0.71672,0.36644,-0.1077,0.60646,0.96807,-0.22352,-0.71139 -0.31814,2.6803,-0.67518,1.096,2.812,-0.98132,-1.2027,0.75585,0.54016,1.1157,0.19497,-0.094669,0.34102,0.30631,-0.91188 -0.19171,2.1708,-0.095459,2.2905,1.0913,0.17762,-0.41101,0.41419,0.412,0.66455,-1.3032,0.87594,0.90003,-1.4785,-0.26413 -1.6981,2.2829,0.23205,2.0649,1.4696,0.43874,-0.051305,-0.31439,-1.0048,1.1741,-0.28001,0.91291,-0.87368,-0.41257,0.14591 0.15983,3.3622,0.74027,1.6199,1.8062,-0.76492,-1.4198,-0.39594,0.12854,1.51,-0.37168,0.68002,-0.27052,-0.084131,-0.83721 -2.5266,1.4482,-0.16862,-1.2792,0.83621,1.8764,0.45002,-0.9196,-0.86223,-0.88429,0.68202,-0.4287,-0.58101,0.50429,-1.3099 1.8395,2.3123,2.0843,-1.5257,-1.0839,0.25668,-0.40081,0.63242,0.30084,-0.85348,-0.78228,0.01367,-2.7052,0.62114,0.44433 4.3504,0.50367,1.0154,0.29986,1.8356,1.6587,-0.090803,-2.1847,-0.37705,-0.74124,-0.51251,-1.1405,-0.36107,0.94081,-0.21146 1.3315,0.13866,-1.0166,-1.2443,0.55997,0.12418,0.6877,1.5554,-0.22947,1.1527,0.10647,1.2211,2.3966,-2.4665,0.09351 0.67201,3.0336,1.699,-0.21461,-1.0396,0.47345,-0.35921,0.39701,-0.53989,0.79549,-0.87311,-0.14593,-2.3188,-0.41793,0.88257 1.408,3.2872,0.25387,-1.0945,0.016573,0.11117,-2.4,-0.56429,0.49141,0.30682,-0.014587,-0.28786,-0.38263,-0.54125,-0.23648 2.9271,-0.14542,1.1877,0.74664,0.12056,0.58629,-1.8705,0.066357,1.3536,0.77138,-0.33171,0.99052,0.75696,0.7031,-1.032 -3.1176,-0.17529,1.0361,-0.967,-0.5885,-1.4901,1.0499,0.072383,0.2987,-0.61586,-0.10965,-0.43075,0.54967,-1.9367,0.77884 2.3359,2.5442,1.8591,-1.7735,-0.6993,0.73696,-1.1621,0.26778,0.16864,-0.91208,-0.18241,0.33703,-1.5959,0.58554,0.90996 -2.8922,-1.1782,-0.37602,0.50544,1.8438,-1.693,1.8158,-1.6184,0.54086,0.81568,-0.69414,0.29047,0.77688,-0.43976,-0.56919 0.52908,2.6025,-0.7953,0.3911,-0.58923,0.48582,-1.7577,-1.1105,0.7654,1.0749,0.70712,-0.13608,0.17069,0.5436,-0.89542 2.2402,-0.64933,0.82169,0.20589,0.7022,3.5446,-0.85049,-1.2335,-0.3185,-2.2864,-1.5496,0.46408,0.72248,0.35269,-0.96399 2.1404,1.2427,-1.0102,0.24919,2.4805,0.40476,0.66088,-2.7889,-0.29985,1.2013,1.1469,-0.13973,0.31511,-0.68039,1.3032 3.9549,1.7619,0.36435,0.45362,1.2639,0.34757,-0.022544,-1.3094,0.4136,1.2466,-0.51946,-0.42596,-0.85796,1.1408,-0.65042 -3.2906,1.67,-0.12957,0.52505,0.41311,1.4427,0.50957,2.3915,-0.48585,-1.2325,0.13469,0.34023,-0.073158,-0.49516,1.2249 3.059,0.50213,3.4343,-0.75059,0.20413,0.90755,1.2854,0.54424,0.8696,-0.15497,-1.4662,1.2913,-2.1428,0.79147,-0.9854 -0.15422,3.7929,0.62647,-0.21334,-0.84252,1.1033,-0.72783,-0.59236,-0.80505,-0.926,-0.1339,1.0187,-0.40406,-0.048344,-0.060229 3.6558,2.3449,0.13354,-1.9265,2.1384,-0.6239,0.15355,-0.52861,1.1331,1.1501,-0.49391,0.75208,0.79361,-0.2278,-1.9459 2.4033,1.3194,-0.44261,0.31581,2.5265,0.6578,-0.34571,0.13437,0.36256,-0.18654,-0.51743,1.1675,1.1427,-1.6451,-0.61567 0.016129,3.5874,2.0853,-0.97563,-0.9164,0.68046,-0.56858,-0.064216,-1.1319,-0.34189,-0.016104,0.51106,-1.1744,-0.98324,0.83092 2.7306,2.1423,1.9539,-0.42228,-0.060333,0.30873,-0.91012,-0.37038,0.97132,-0.31315,-0.44213,0.069309,-2.6386,1.0287,0.9765 1.564,3.0259,1.0906,-1.4505,-1.3196,0.69211,-0.2066,0.5947,-0.13184,-0.56647,-0.26868,-0.1662,-1.6303,0.61156,0.71266 0.86514,0.87511,3.2561,-1.544,-0.97669,1.2424,0.48398,0.53319,1.9349,-0.78067,-0.75063,0.45806,-1.2317,0.15475,0.82333 -4.3398,1.189,-0.77116,-0.77124,0.74948,1.2232,1.8118,0.22724,-0.16262,-0.76784,0.52908,-0.84923,0.57148,0.41001,-1.1358 3.497,-0.75046,-2.1415,-0.2721,0.81227,3.0203,0.1692,0.061857,-0.25354,-1.5416,0.10415,-0.80485,-0.59871,-0.54859,-0.93176 -1.4648,2.5692,-1.6795,0.80999,-0.28721,2.5391,-0.35562,0.71238,-1.0431,-0.32301,-0.24023,0.38494,0.26303,0.7203,-0.97388 -4.2164,0.84559,0.064368,-1.2803,1.2452,1.4038,1.1914,-1.4292,-1.0578,0.19577,0.59047,-0.62928,0.24401,0.56574,-0.93335 -2.2988,2.152,0.16713,1.0055,0.26627,-0.37436,0.58439,2.2434,0.5164,0.58566,0.56364,-0.077306,-0.092511,-1.2212,0.69599 1.5182,2.3125,0.020857,-0.36847,-0.41216,-0.29502,-0.97926,-1.2484,1.3276,0.24193,-1.1553,0.3434,-0.96938,-1.3389,-0.81809 -4.0258,1.4485,-0.24954,-0.73716,0.75906,0.96122,1.8877,-0.43242,-0.47202,-0.82712,0.71495,-1.1833,0.9687,-0.11356,-0.53866 -0.027638,2.8342,3.0375,-1.9206,-0.44571,0.35124,1.3955,0.23271,-0.31888,-0.060116,-0.59901,-0.20825,-1.2033,-0.63505,-0.34579 -0.94138,1.6824,2.8543,1.0207,-0.15884,-0.71251,0.056086,0.016482,1.4304,0.12495,0.40824,1.2364,0.10366,1.1158,0.66399 -2.0477,2.198,1.4972,0.30315,-0.15782,-0.57155,0.50992,1.148,1.487,-1.1043,0.49486,0.54166,0.7824,0.16214,0.93254 -2.4419,0.96556,3.2956,-1.8158,0.33886,-0.74781,0.98734,-0.065394,-0.25992,-0.026888,0.15633,-0.80339,-0.04049,-1.0325,0.66224 -3.325,1.4633,0.42198,-1.4515,0.025421,0.64572,0.89341,-0.35821,-0.087286,1.5716,0.50388,-0.86181,0.7912,-0.59674,-0.29265 -0.93571,1.756,-0.92619,1.3295,-0.99047,-0.70886,-0.032203,1.2916,1.0004,-1.6694,-0.27191,0.3446,0.62558,-0.75025,0.99964 -2.5628,-2.4278,1.7464,0.043377,1.0651,0.04309,-0.12652,-0.1113,1.7088,0.41144,0.091327,-1.2553,-0.15934,0.75362,0.66235 2.8769,-0.91395,-2.2241,-0.74279,1.7035,2.8733,2.1347,-0.40982,-0.14318,-0.39951,0.45626,1.3382,-0.8847,0.29881,0.54059 -1.9632,1.5761,-0.65281,-0.13202,-1.4403,0.63716,1.2415,-0.76116,1.0483,0.68374,0.32176,0.38908,1.0751,-0.31478,0.21283 -3.3907,-2.2078,0.072412,-0.52687,1.4553,-0.55672,-0.70253,-1.2077,1.8596,0.25943,0.16417,0.18426,-0.82666,1.1047,-0.17271 -2.7878,1.1707,1.4589,-1.1707,-0.13591,-0.063502,0.83502,-0.55365,1.2501,0.80781,0.97226,-0.45516,0.77338,0.38389,-0.22585 -3.5168,-0.70656,0.034898,-1.629,0.52333,-0.29256,-0.064411,0.049363,1.7838,-0.72213,0.73877,-0.55836,0.091881,1.5543,-0.52694 2.0697,0.85605,0.51037,1.4516,2.1399,-0.20247,-1.5663,-1.8655,1.2218,0.13826,0.22115,-0.14467,0.40287,-0.23103,0.55816 -3.2096,1.4013,1.0688,-1.4788,0.38549,2.0552,0.97029,-0.53354,-0.79809,0.38085,1.1348,-0.81706,-0.22599,-0.1829,-0.71403 -2.6345,-1.6119,-1.7661,0.71548,0.82891,-0.28725,0.41886,-0.897,1.6138,-0.74255,0.35332,-0.36574,-1.316,0.38489,-0.37511 2.8354,2.1188,-1.4627,0.13346,1.6635,0.55489,0.587,-0.89231,-0.038511,0.23176,-1.1763,-0.30026,-1.1775,-1.8756,-1.4771 -1.4057,2.4495,1.5991,0.0694,-1.1101,0.3912,0.24392,-0.46887,0.56287,0.084407,0.56675,1.5699,0.5903,-0.59795,0.53499 0.67096,-0.34834,2.1631,-0.035265,0.65326,0.38203,0.48992,1.6601,1.2781,-1.8816,-0.51392,0.71888,1.6982,-1.271,-0.20132 -0.59765,4.3622,0.43486,-0.086612,0.42803,0.61615,-2.0929,1.4618,-1.3502,0.21436,0.55212,0.53844,0.06629,-0.24532,-0.99674 -1.2086,-1.4434,-0.33467,-2.6007,-0.6663,1.9149,-0.86241,-1.978,-1.0789,-1.0539,-1.2633,-0.35635,-0.57049,1.1731,0.28876 0.45264,2.9145,1.0781,2.1916,0.77902,0.49654,0.443,-0.92095,-0.77553,1.6857,-1.7637,0.78115,-0.61181,0.012164,0.5646 -0.04562,3.8658,0.81674,0.12737,1.2008,1.0765,-0.42936,0.20334,-1.344,-0.87734,-1.1617,-0.18718,-0.87053,-1.7023,0.079698 0.10339,3.4013,-0.90659,-0.10638,1.0144,0.38778,-1.7413,0.77483,-0.87668,-0.97527,-0.78458,-1.0134,0.79477,-2.003,-0.51647 0.66113,4.2338,1.0634,-1.3626,1.0438,-1.4851,-1.7124,1.2144,-1.8658,0.05768,-0.29149,-1.1946,-0.8471,-0.90751,0.021778 -1.3563,2.0589,-0.34701,0.54411,-0.77862,1.9422,0.61383,0.34069,1.168,-0.75974,0.067044,0.11242,1.3613,-0.51887,1.1135 2.9935,1.4706,0.45077,-2.4597,1.3058,0.51476,-0.67055,1.1765,-0.40263,-2.8399,-0.19876,0.28442,0.45489,-1.408,-0.36901 -2.6972,1.1587,-2.0455,0.12356,0.22572,2.6556,1.7924,0.17768,-0.12746,1.6576,-0.15975,-0.3931,-0.61744,-0.57406,-0.82959 -1.816,2.5138,-0.99653,1.1943,-0.24984,0.89327,1.5336,1.005,0.089608,0.13489,-0.55512,0.87227,0.54997,0.71331,0.081452 -1.8567,2.9812,1.2318,0.09277,0.10259,-0.77061,0.061097,1.1843,0.62633,-0.86819,0.021655,1.0133,1.0507,-0.92731,1.1852 0.50058,1.264,3.7847,1.0106,3.2204,-1.4984,0.32995,-0.68674,-0.6588,-0.44289,-0.81635,0.6712,-0.409,-0.59503,0.26902 -1.457,0.59031,0.64713,-0.17216,-0.8079,0.35459,0.33257,0.61312,2.0678,-1.3523,0.53072,-0.25114,1.1903,-0.97441,1.0414 -3.1548,0.88227,-1.4358,-1.2644,-0.34733,0.66211,0.61465,-1.6964,0.1137,-0.047759,0.2503,-0.095364,1.446,0.53451,-0.5187 -3.2165,-0.79846,-2.3254,-1.3524,0.93889,-1.3414,-1.1406,-0.15982,0.95442,-0.93957,-0.75284,1.1316,-0.18053,0.57689,0.40091 -1.595,1.984,1.8423,0.061213,-0.35672,0.41535,0.37831,0.020445,1.0432,-1.1056,0.7551,0.75383,1.1036,-0.29688,0.83828 0.1925,2.9373,3.0534,0.11587,1.3077,-1.3378,-1.1264,0.85291,0.14033,0.48721,-0.15117,0.67832,-0.49324,-1.214,0.73173 -3.2474,0.2303,-2.3877,-1.769,-0.4703,-0.8748,1.2452,-0.28399,0.24009,-1.1502,-0.75014,-0.95652,-0.48337,-0.58307,-0.59392 -1.6042,-1.3398,-2.8267,-0.35853,-0.31542,0.51245,-1.313,1.3177,-1.3248,-1.4941,-0.88248,-0.27255,-0.81955,-0.16293,1.8198 -3.6014,-1.8572,-0.53619,-1.7905,0.2256,-1.2583,-1.1082,-0.69588,1.1127,-1.085,-0.52379,0.14781,0.049411,0.49761,0.44363 -1.1933,-3.6132,-1.0859,-0.43278,1.4505,-2.0045,-1.1949,1.5191,-1.6238,-0.19831,-2.0726,-0.18143,-1.2578,0.24342,1.6742 -2.4273,3.0367,-0.6558,0.61326,-0.80091,1.0176,0.38476,1.7897,-0.63541,0.061765,0.14858,1.4027,0.069494,0.022111,-0.55512 -3.0927,-3.2799,1.8183,-0.20306,1.3711,-0.59824,-0.59961,0.34514,1.2325,-0.033377,-0.33352,-1.0379,-0.80387,0.81249,0.074861 -2.7487,-2.8921,-0.48274,-1.2016,1.0063,-1.5771,-1.9155,-1.2465,0.88657,0.21085,-1.5885,1.0277,0.082854,-0.21777,0.81797 -0.29234,0.21163,3.5537,1.416,2.2672,-1.2578,-0.12227,0.65919,0.92344,-1.0972,-0.26917,1.2929,-0.053259,-0.33667,0.62751 -3.6871,-0.72606,0.14395,-1.5543,0.43018,-1.8853,0.33184,0.7493,0.6897,-1.6435,0.22277,-1.6306,-0.24539,0.036416,-0.0057021 -3.6633,2.872,0.12017,-0.18964,0.49204,0.27728,1.1669,3.3401,-0.49965,-0.92721,-0.51552,-0.56785,-0.39148,-0.096755,0.2497 -3.2657,-1.349,-1.0326,-0.35251,0.96968,-0.78686,-0.28857,-1.1709,1.5056,0.11748,0.24668,0.69613,-1.1521,0.85704,-1.2659 -2.3182,1.6188,1.933,-0.88396,-0.67759,0.71556,1.3093,-1.424,0.35284,0.81724,1.0516,0.48401,-0.37881,0.88055,0.097137 3.0986,-0.011972,-0.15363,-0.98792,3.018,-0.050734,0.48328,-2.6627,0.17184,1.3323,0.95767,0.26638,-1.4953,-0.35477,1.514 0.37616,3.8004,1.2604,-1.6082,0.65031,-0.7615,-1.014,-0.096439,-0.3105,-0.38409,-1.1398,-0.1945,0.46229,-1.6222,-0.11631 0.73233,4.5718,1.7395,-1.4904,0.45071,-0.011409,-0.79522,-0.073846,-1.1251,0.028376,-1.2599,0.56824,0.098,-0.50438,-0.70196 1.7653,2.822,1.9881,0.78377,1.805,-0.72574,-0.76448,-1.5067,0.18131,1.0753,-1.3438,-0.000781,-1.3582,-0.62166,-0.32018 3.4604,0.74252,1.939,0.31527,4.1265,-0.52441,-0.25801,-0.99385,-0.28081,-0.46254,-0.59789,0.65144,0.8016,-1.0989,-1.3342 3.1227,1.3373,1.7917,-0.80063,3.0777,-0.73298,-0.30913,-1.0467,0.80794,1.0341,-0.33068,0.30887,-0.57842,-1.4156,-0.2464 1.5902,0.23957,-1.7595,-3.1897,-0.93631,1.5296,0.80964,1.5434,-0.17671,0.31466,0.68516,2.0941,-0.19163,-0.87113,0.085618 1.0364,1.3136,-1.8957,-0.018707,-0.27864,0.99724,-1.1091,-1.097,1.8475,1.6466,1.4898,0.2157,0.84807,0.67374,0.24206 2.0026,0.53471,1.1189,0.61525,2.9466,1.3,-1.1325,-2.4451,-0.14923,-1.6201,0.057917,-0.50267,0.72817,0.25566,0.65886 0.44628,3.081,0.92895,1.4431,0.91078,0.32169,-0.39443,-0.71671,-1.5459,1.5504,-1.1691,0.25814,-1.2962,-0.722,0.47164 -0.7347,2.0914,3.3567,0.70008,1.246,-0.75158,0.19754,0.21094,0.32015,0.6403,-0.65834,1.2797,-0.69788,-1.4993,0.68799 2.6126,2.6008,0.014568,-1.9263,0.91142,-0.52291,-2.1671,-0.81463,-0.2378,0.97706,2.2281,-0.59138,-1.1789,-0.022265,0.0030061 1.5821,2.7156,-0.17536,0.96234,1.8124,-0.32607,-1.5167,-1.2754,-0.073298,0.85353,-0.26264,-0.54911,-0.45881,-1.2937,0.23222 4.5649,-1.2175,0.48366,-0.479,3.3985,1.1223,0.070813,-0.071397,0.85812,-0.48887,-0.42372,-0.55386,0.76212,-1.0108,-0.11833 -3.2155,0.76236,-2.1355,-0.52952,-0.35946,1.1724,1.2909,-1.2965,-1.7277,0.72517,1.0662,0.63368,-0.0064899,0.059522,-1.7986 -0.86629,4.2192,-0.18838,-0.041339,0.62472,0.73195,-1.2344,0.9195,-1.4651,-0.69759,-0.86942,-0.30892,1.5311,-1.135,0.21365 0.11674,3.4827,0.82681,0.67873,2.8733,-1.1167,-1.4829,0.70458,-0.16571,1.342,-0.54075,0.0088186,0.16922,-0.96078,-1.0262 -2.7046,-1.9574,1.8421,1.2411,2.7567,-1.8634,1.7591,0.29711,0.26401,-1.1201,0.30243,-1.2211,-0.64665,-0.33804,0.96421 -2.4985,1.5846,2.491,-1.5705,-0.72004,0.39528,1.4486,-1.8862,-0.13813,0.24208,0.8187,0.22236,-0.31304,0.46105,-0.032656 -1.9166,-2.5222,2.5493,-0.90859,1.3475,-0.4229,0.63714,-2.5802,1.3152,0.75368,-0.85937,0.097825,0.20403,-0.038279,-0.45593 -3.6483,1.0729,-1.6822,-0.28653,0.45657,1.9682,1.3969,0.22774,-0.13227,0.38765,0.52018,-0.6231,0.9265,-0.55766,-0.46801 -3.4334,-2.207,0.75153,-0.22085,0.70216,-0.55547,-0.051258,-0.76864,2.1797,-0.18124,0.39335,-0.58846,-0.54988,0.94127,-0.358 -3.4754,-0.16387,0.32032,0.096399,1.488,-0.76876,1.3702,-0.99997,1.2104,1.5434,0.48354,0.020823,-0.25703,0.5673,-0.65753 -3.1992,-1.2725,0.16336,0.79611,1.0557,0.048706,0.7573,-1.3647,1.0008,-0.21122,1.2489,-0.19455,-1.4429,1.4745,-0.83219 1.7055,0.27338,-3.0533,-0.94598,-0.90487,0.68362,1.0861,1.7448,0.49287,0.66401,0.69145,0.93196,0.60546,-0.80705,0.15925 -0.32721,0.73878,1.5624,1.4323,0.56783,0.95456,-0.61553,0.28281,2.3872,-0.16475,1.1005,0.95408,0.14491,-0.20769,0.78837 -0.88234,3.8157,0.68485,0.30056,-0.85638,1.1868,-0.29628,0.70577,-0.82153,0.50196,0.042943,1.0475,-0.09607,0.40649,-0.077412 -0.92601,-3.6758,2.4126,1.8248,1.6561,2.3536,0.20685,-0.15716,-0.64187,-0.23496,0.46962,-1.2526,0.85112,1.0673,-0.042929 -3.5482,-0.42898,1.5306,-1.5796,0.71741,-1.0444,0.77542,0.67454,0.52899,-0.30718,0.51777,-1.2462,0.40523,-1.5555,0.69397 -1.3343,-1.5774,2.9468,2.0404,1.4765,0.68249,0.38278,-0.8645,-0.14727,-0.92411,1.4572,-0.03635,-1.0099,1.636,0.31645 -2.9448,-2.9376,0.85101,0.81479,2.076,-0.30006,0.72035,-0.36906,1.0145,-1.4008,0.39912,-1.4875,-1.2344,0.77125,0.35321 -1.0102,-2.4827,2.5502,1.9131,0.70576,1.9827,0.30035,-1.1357,0.19518,-0.097333,0.67497,-0.79453,0.22495,1.2651,0.34552 -2.8473,0.27252,-2.7507,-0.50783,1.4378,0.82919,0.1591,-1.8608,-0.18529,0.28571,-0.79884,0.8621,-0.3331,-0.81425,-0.62602 -2.6756,-1.4958,2.437,0.68134,1.7191,0.0029323,0.70109,0.55813,1.4703,-1.3464,1.0302,-1.1632,-1.6117,1.2422,0.46546 -1.5417,2.1778,2.0125,-0.20565,-1.0679,-0.77944,0.74966,0.28752,-0.68625,-0.0028409,0.51123,0.51343,0.5549,-1.6427,0.97098 -3.1638,1.6306,-1.5148,-0.087543,-0.29278,1.4876,1.2366,0.75071,-0.5159,0.57902,0.22913,0.012481,1.1723,-0.59547,0.53385 -1.7049,-1.79,2.4138,1.3924,1.89,1.4994,0.70251,0.13093,0.52373,-1.664,0.89192,-0.83641,0.18856,0.92327,1.1754 2.2995,-1.3012,2.6666,-2.955,1.8931,0.57401,0.59098,0.92749,1.1849,-0.55558,-0.11695,2.2355,0.89572,1.2003,-1.5997 -3.3022,1.6782,1.3889,-0.13828,0.64155,0.15632,0.78826,0.67895,0.73733,1.0324,0.82878,-0.56296,0.33048,0.96686,-0.41146 -0.3784,1.9232,-0.80582,1.9934,-1.2921,1.6349,0.41287,-0.83331,-0.029784,0.68109,-0.12871,0.24909,-0.78441,0.089368,1.0059 -3.7435,-0.088011,-2.6289,-1.3148,1.1124,-0.12767,1.3782,-0.91631,0.47062,-0.8468,-0.94963,0.080038,-0.21426,0.33169,-1.1875 3.7466,0.55495,0.60281,-0.83823,3.896,-0.40772,0.81546,-2.9208,-1.3921,-0.0075902,0.53766,-0.92189,-0.61952,-1.1043,0.92044 -3.5095,1.3981,-1.6422,-0.50792,0.28361,0.71511,2.2454,1.0579,0.56653,-0.076757,-0.51586,-0.20203,-0.6099,-0.5876,-0.54061 -3.4813,0.58476,1.7048,-1.2161,0.20811,0.20442,1.3921,-1.2204,0.59383,0.02012,0.93478,0.84999,-0.83919,0.82207,-0.223 -4.5877,1.3166,-0.30789,-1.1077,1.1747,-0.41021,2.1557,0.89934,-0.17276,-0.53504,0.30822,0.2469,-0.70833,-0.075109,-0.61568 -2.6054,2.8844,-0.85087,0.10115,0.081249,1.6577,0.8835,1.4283,-1.1475,0.93202,-0.55999,1.2644,-0.33327,-1.1825,-0.21649 -0.95872,0.81741,1.3953,1.3039,0.61815,0.9732,0.42217,0.91693,1.2073,1.209,0.18343,-0.29575,0.20215,-1.1152,1.3596 -1.3535,1.7924,-0.94769,0.58152,0.11268,1.5853,0.39804,-0.84983,-0.87235,-1.6367,0.36061,0.0093395,0.0067506,1.2781,-0.68234 0.55963,3.1369,2.2789,1.3764,1.9449,-0.65177,-0.7907,-1.3527,0.026138,0.60327,-0.6012,0.82287,-1.2215,0.62119,-0.06766 0.84504,2.0845,3.4431,1.6461,2.176,-0.62133,-0.32237,-1.1464,-0.45161,0.59345,-0.25529,0.57446,-1.6489,0.016976,0.63129 -3.4759,1.2632,0.97228,-0.29206,0.86177,0.17277,1.4925,0.83058,0.83713,-0.49532,0.77272,0.5818,-1.5039,-0.030727,-0.34401 -0.14529,3.3881,-0.60942,-0.73091,1.5565,-0.59787,-2.2543,1.077,0.68022,0.078561,0.70487,-0.49051,1.5471,-0.82313,-0.4464 -2.1038,3.0063,0.95096,0.31074,-0.19835,-0.44076,0.77325,0.63059,0.050107,0.24417,-0.41731,1.2111,0.32191,-0.33795,0.47278 -0.06372,2.0283,1.7033,0.58626,1.9803,-1.8315,-0.98334,1.7282,0.47643,0.23531,-0.40589,0.66603,0.29054,-2.0156,1.046 0.16357,1.5671,-0.08935,0.32986,0.30058,-0.70603,-1.4704,0.94012,1.7944,-1.3925,0.13682,0.58552,1.2629,-1.0332,0.50463 -2.4497,1.3582,-2.5942,0.016857,-0.78605,0.37711,1.616,1.3486,1.0182,0.12818,-0.63642,-0.58215,-0.037939,-0.44246,-0.18738 -2.0227,2.1142,0.82346,-1.0577,-0.17693,1.5731,1.0185,0.80325,-1.0353,-0.14352,0.59799,-0.65227,0.76573,-2.2204,1.1117 3.4662,0.48296,-1.9106,-1.9386,0.60872,-0.10334,0.88908,0.79485,1.8296,1.4557,1.3874,-0.17735,-1.6456,-0.61049,1.0164 2.7436,1.6688,0.58147,-0.51289,1.7249,-0.10244,-1.4803,-1.8752,0.25278,0.79668,0.99987,-1.4528,-1.6586,-0.48695,0.75805 0.30083,0.72955,2.5778,0.29272,2.0382,-0.93068,0.3023,2.0814,1.1877,0.90991,0.16106,0.61814,0.55993,-0.10927,0.59795 0.8371,2.4366,0.43795,-1.3041,1.65,-1.219,-2.43,0.4696,0.75776,0.72659,0.67736,0.30731,0.69889,-1.6398,-0.060808 0.40244,4.006,1.0204,-0.53292,-0.14386,0.5203,-0.68514,-0.18152,-0.58889,-0.087691,-0.98174,0.97947,0.90709,-0.78853,-0.42737 1.7523,2.2924,0.97304,0.091496,1.8236,-0.97813,-2.0396,-0.9632,0.21238,0.60198,0.54591,0.87846,-0.29314,-1.0777,-0.36721 0.97803,2.4009,-2.303,-2.1405,-0.63697,1.0792,0.60605,1.4579,-0.22492,0.60763,0.74948,-0.99498,-0.26868,-0.48056,0.71616 -2.9319,-0.054011,-2.52,-0.45601,0.59335,-0.6007,-0.045101,-0.48171,1.1058,0.1432,0.0041765,0.62124,-0.63641,-0.58971,-0.65322 -1.6993,1.7483,0.80792,1.2553,1.7433,-1.4663,0.50606,2.0226,-1.268,1.4102,-0.22093,0.62647,-0.86112,-1.6141,1.846 -1.5354,0.79569,0.16139,2.4691,0.063541,0.11603,0.97491,-0.18773,0.52533,-1.0406,0.42271,0.89272,0.3232,-0.36599,0.63329 -1.8506,1.494,-1.438,0.79139,-2.1582,2.189,1.0022,-0.041026,-0.79006,-0.65072,0.77247,-0.045877,-0.15446,-0.57382,-0.076325 -2.0442,-0.52199,-3.3712,-0.22647,0.8945,-0.94405,-0.22734,-0.1507,0.23467,-2.4008,-1.5753,1.4342,-0.99942,-0.18551,1.3829 2.5381,0.3651,0.1815,0.68468,3.0984,-0.75482,-1.1559,1.3666,1.2746,0.4544,0.52052,0.42483,1.2945,-0.93063,0.3388 -2.0873,3.6001,0.72729,-0.14936,0.6262,0.69965,-0.31399,2.1535,-0.93067,-1.446,0.55624,-0.01977,0.60399,-1.4944,1.0548 1.8142,-0.64068,1.0833,-4.488,-0.13786,0.64428,1.2667,0.71835,-2.4646,-2.2778,-0.42812,0.35976,-0.50239,2.7106,-0.47584 -0.71207,0.88001,-0.8376,2.3532,0.10001,1.5027,-0.022,0.61373,0.88953,-1.4878,0.51185,0.36008,-0.065835,1.5322,0.51223 1.4276,1.6873,0.12614,0.70165,1.9966,-1.5948,-1.2762,0.30085,1.521,0.40497,-0.79166,-0.21319,1.422,-1.8209,-0.5115 -0.02494,1.2166,1.1469,0.74193,-0.26269,0.13559,-0.9741,0.772,1.9087,-1.8505,0.3588,0.50969,1.5793,0.38496,0.86437 2.3642,1.0823,2.9811,-1.9539,0.5882,0.17794,-0.48265,1.1876,1.0978,-0.22344,0.013949,0.84492,-1.1076,0.51251,1.2246 2.0782,0.50343,3.2262,0.66306,1.2428,-0.1214,-0.13655,0.57951,1.2186,0.32087,-0.32537,0.58907,-0.7937,-0.33084,1.5353 3.4427,-0.29509,-0.018224,0.010634,2.4489,1.2567,-0.066251,-2.4917,0.96712,0.31941,0.51548,-0.42753,-0.3866,-0.55927,0.38798 1.3232,1.3014,-0.10435,1.1922,0.19231,0.64014,-0.26123,-3.4428,-0.91596,-0.9548,-0.79842,-0.28805,0.027904,-0.092262,-0.15494 0.70147,-0.53669,1.8554,-1.6413,2.188,0.10993,0.63981,0.98922,-1.5026,0.55492,-0.81546,1.159,2.31,1.4894,-0.46392 1.7906,2.8778,-2.3526,-1.4569,-0.75115,1.5452,-1.2952,-0.24496,-0.58864,-0.6707,0.27663,-1.5954,0.087682,-0.89118,-0.52744 1.8383,2.3689,1.2773,-2.4688,1.2133,-0.53464,-0.52137,-0.50517,-0.21647,0.88155,0.17232,0.23719,0.44275,0.25071,-0.52406 2.5345,2.7385,-0.22154,-1.2551,1.2088,-0.76041,-0.94644,-1.4255,0.14759,1.8051,0.72256,-1.195,-1.7014,-0.17847,0.18996 -2.2973,2.2664,1.8875,-0.99807,-0.57469,0.27,0.57545,0.21294,0.31773,-0.59385,0.53914,0.99921,0.17719,-1.2873,1.5089 -1.7261,-1.3411,0.91444,-3.1587,0.42691,1.1183,-0.99342,-0.079525,-0.97349,0.80262,-1.4256,-0.21712,0.37897,1.4997,0.96691 1.3136,2.8956,0.073587,0.16361,-0.78344,0.35357,-0.88334,-0.43887,1.1429,0.76117,-1.701,0.62077,-0.66379,-0.20152,-0.53968 -0.34802,0.74371,-0.32533,1.9651,1.277,0.088019,-0.62504,-0.18628,0.26126,-2.61,-0.48979,-0.3997,1.0673,-1.1126,1.2593 -2.672,-0.75477,1.9998,-1.9128,0.17862,-0.088681,-0.089598,1.2275,1.2857,-0.98041,0.81321,-1.5533,0.89448,0.70923,0.84247 -2.5396,0.017058,2.8338,-3.5134,1.2337,-0.12356,0.6833,-0.14561,-0.76031,0.38523,0.30993,-1.4276,-0.37171,-0.74756,0.47741 0.62445,-0.26411,2.8947,-1.6395,-0.77668,0.73113,1.2318,0.32436,0.9994,0.3686,-0.56262,-0.71814,-0.60745,1.9816,-0.50948 0.48292,0.23414,2.788,-1.9746,-1.6406,2.3103,0.98519,-0.25872,0.83711,-0.85553,0.1037,-0.2407,-0.92065,2.1918,0.20195 -2.3052,1.0552,2.1299,-1.6506,2.4778,1.923,0.93443,0.19796,-1.1234,-1.4137,0.72647,-1.5399,-0.055149,-0.40681,-0.048869 1.4589,2.8068,-0.6638,-1.0007,-0.46776,1.424,-2.6888,0.17347,-0.30411,-0.01294,0.65004,-0.59668,0.41144,0.11673,-0.40036 0.86193,3.3452,0.69262,-0.23665,-0.27461,-0.0060005,-1.2418,0.13199,-0.2282,1.1509,-1.6354,0.25212,0.4899,-1.8729,-0.82663 -1.1104,-1.2195,0.11952,-1.4208,-0.31267,1.4361,-0.91095,-1.2408,0.66038,1.3779,-0.85777,-0.73261,-0.46491,1.327,0.45785 3.9298,0.10388,-1.0233,-1.2319,1.737,-0.65674,1.1768,-0.65664,0.12533,2.4884,0.76077,-0.68767,-2.2198,-1.0274,1.6135 -2.816,1.3592,-2.5591,-0.19205,-0.50643,2.0518,1.2649,0.50452,-0.063635,0.47918,0.19792,-0.43534,0.93051,0.083848,-0.65616 -2.9463,1.7081,0.65967,-1.0137,0.18575,1.2928,0.87478,-0.26225,0.4051,-1.158,0.93391,-0.46162,1.1481,-0.47066,0.041847 -2.1487,0.074562,-2.2966,1.356,0.010768,1.1308,1.4506,0.52539,1.2261,-0.59959,-0.30163,-1.209,-0.98077,-0.3874,0.75549 0.38468,2.584,-0.11642,-1.9707,1.9267,-0.31888,-2.2176,-0.03112,1.0109,-0.65488,1.5318,0.37026,1.3962,0.26097,0.12068 -3.066,-1.656,-1.792,0.087105,0.76004,-1.3436,0.44005,-0.060266,0.53983,-0.59792,-0.86809,-1.9045,-1.64,0.69494,0.033392 -1.4398,0.23619,2.6131,0.32245,1.8446,0.25815,-0.77959,0.99061,1.1107,-1.1146,0.9254,0.30489,-0.91829,1.6345,0.87063 2.0713,-1.1889,1.6424,1.3279,1.6891,2.804,0.39459,1.1891,-0.53768,-2.1198,-1.9039,0.22524,1.0616,-0.48726,0.99582 2.8428,-0.99577,1.1209,-0.064942,3.3086,-1.1387,-0.87029,0.87838,1.1583,0.072853,-0.42444,0.10866,0.56176,-1.0811,0.37053 2.3069,1.4694,0.051853,-0.30596,1.6909,-0.77844,-1.211,-0.51303,1.7401,1.4896,0.36948,0.39517,0.20869,-0.99488,0.23439 4.5312,-0.28366,-0.35103,0.7089,1.5085,1.1617,-0.010234,-1.5328,0.012962,-0.55181,-1.1273,-0.19202,-0.96081,1.3934,-1.7182 -0.30416,2.8961,1.2992,0.027312,1.0964,-0.78122,-2.1286,1.0322,0.90885,-0.45706,0.027183,0.98643,0.8552,0.52532,-0.23098 0.48091,-0.5072,3.4716,-2.7947,1.0767,2.2653,0.84292,2.5616,-1.473,-1.9607,0.021498,-0.24243,1.5341,1.1887,-0.034653 0.58898,0.94785,2.429,1.3757,2.2087,-1.3411,-1.7313,1.3784,1.3996,-0.64919,-0.13011,0.16738,-0.35405,-0.038069,1.3369 -2.7198,-0.31857,1.9081,-2.3069,1.4068,0.81749,-0.34725,-0.54179,0.27566,-0.67024,1.1744,0.075605,-0.57045,1.847,-1.0863 1.0767,1.2521,2.333,0.44998,0.064611,0.79751,1.1956,-0.45071,1.157,-0.53326,-1.3179,1.2867,-0.50922,-2.078,-0.2007 1.852,2.0345,-1.2942,-1.6151,1.8005,-0.34248,-0.83858,-0.04134,0.11848,2.844,1.6982,-0.23423,0.2342,-1.3924,0.84286 1.9222,1.6497,0.63145,1.3896,1.1766,2.682,-1.1462,-1.6566,-0.16546,-0.35495,-0.022826,-0.27107,-0.27228,0.36938,0.32619 4.7901,0.38121,-0.21296,-1.652,1.8653,-0.84864,-0.021957,0.37314,0.98064,0.73602,0.27138,0.1778,-1.8765,-0.87595,-1.3659 -2.8533,-0.35082,0.21277,-0.2568,-0.85086,1.7219,0.31274,-0.19096,1.6523,-1.5774,1.6079,-0.66057,0.63237,0.76692,-0.47122 2.5688,0.80267,-3.1905,-2.8579,-0.61383,0.58098,0.94999,1.5795,0.50699,0.52281,1.8447,0.30736,-0.01355,-1.0464,0.73468 2.1661,0.68385,-0.57454,0.12626,1.6096,1.151,-0.56294,-2.7608,0.18011,-1.4529,-0.12139,0.44876,1.2266,-0.34702,-0.55717 0.35062,3.8252,-0.66081,-0.54082,0.16557,-0.029103,-1.8124,-0.30979,0.10959,0.75145,0.22899,-0.18947,1.139,0.17459,-0.85759 -1.5801,-1.1314,-2.7321,-0.37121,0.53881,1.3555,-1.3337,1.3714,0.84371,-1.4993,-0.97405,1.1626,-0.35638,0.28161,1.5213 -0.94018,-1.5917,0.93007,0.77125,-0.27817,3.1828,0.94926,-0.37368,0.16653,-0.99837,-0.83843,0.32741,1.7462,-0.23402,0.71834 3.4451,0.65095,-0.78545,-1.5855,2.7211,-1.225,0.69147,-0.16254,-0.38335,2.7477,0.45303,-0.29307,-0.72789,-2.1891,0.73225 1.4887,2.7135,0.7286,1.9941,0.84963,0.30398,-1.0943,-0.62631,-0.36998,1.0758,0.1995,-0.08315,-0.35604,-0.10594,0.91708 3.5148,-1.451,-0.074191,-3.6864,3.3671,-1.2186,2.2713,2.6183,-0.75256,-0.10195,1.7222,2.0197,1.391,-1.5803,1.0789 -2.809,1.747,-0.10883,-0.48099,0.17447,-0.60342,0.96749,2.6769,0.4902,-0.69397,0.38166,-1.3329,-0.61716,-0.7385,0.13602 -3.4481,0.23212,-2.52,-1.2002,0.54361,-0.2657,0.16293,-0.11399,0.868,-0.32008,0.0013494,0.16219,0.028008,-0.35356,-0.57545 3.7717,1.9728,0.97905,-1.349,0.83236,-0.49425,-0.036401,-0.33758,1.2466,-0.34896,-0.76193,0.11385,-2.353,0.44079,-2.2244 -2.9563,0.35439,-1.4734,-0.4841,-0.68582,0.85694,0.68575,-0.32984,1.5033,-0.43599,0.86529,0.35383,0.47038,-0.14057,-0.58094 -3.0454,0.49861,-2.6209,-0.92761,0.19407,0.19548,0.23504,-0.11731,0.80609,-0.25489,0.39014,0.70012,0.39944,-0.5037,-0.48865 -3.9357,1.1778,-1.7081,-0.30674,1.1535,1.9637,1.0646,0.68472,-0.93614,0.53363,0.16231,-1.1056,-0.58227,-0.76444,-1.2112 -2.6934,1.9284,2.7684,-1.0538,0.12406,0.20669,0.49886,0.48986,0.1171,-0.064154,0.27424,0.02653,0.18484,-0.53936,0.82732 -2.2888,0.0085252,-3.5607,-0.43904,-0.094329,-0.80305,-0.96985,0.29228,0.289,-1.0469,-1.0008,1.6123,0.059982,0.24646,1.0199 -2.991,0.2395,-2.6446,-0.29129,0.46514,-1.0063,1.9197,0.22756,0.71087,0.11728,-0.88293,-0.67649,-0.82474,0.17227,-0.47928 -2.2997,0.31876,-1.6376,1.7891,0.41746,0.68516,1.0502,0.26416,1.1764,0.53652,0.17048,-0.050232,-0.38596,-0.73303,0.92972 -1.4314,-2.3854,0.59581,-1.5008,0.50838,1.5734,-0.29792,0.28178,0.59703,-0.1586,-1.6964,-1.3506,2.482,1.4967,0.43664 1.2014,1.1626,-3.533,-1.7414,-1.3328,1.0229,1.3283,1.2458,-0.040432,0.23743,0.45854,0.56628,0.13722,-1.11,1.0124 3.5656,0.012441,-1.5576,-0.90122,1.0945,1.7031,1.1367,-1.8573,-0.71469,-2.7607,0.34858,-0.64364,-0.2637,0.56156,-1.7306 -1.298,-1.5792,-0.026093,-0.54171,0.44966,2.5814,-0.32052,0.34896,1.1441,-0.16068,-1.2311,-1.0831,2.3673,1.2641,0.18405 -0.72713,-2.901,1.2067,-1.4339,-1.3476,0.32086,0.14678,1.3111,1.0042,0.060296,-1.3906,-0.59847,2.1501,0.50536,-0.5888 -1.6425,-2.802,0.012089,-0.98915,1.2076,-0.19238,-1.516,0.46797,1.3466,0.75225,-2.3429,0.22721,1.2594,0.80036,0.98508 3.4658,-1.6951,-1.7757,-1.1128,1.2762,3.5806,2.1113,-0.81676,-0.62075,-1.2734,0.47363,0.93786,0.80541,1.1057,-0.34466 2.7251,-0.75856,-2.56,-0.95116,-0.86504,0.91826,1.4474,0.5339,1.81,0.99041,1.6994,2.1443,-1.4013,0.61759,-0.10942 -1.5225,-3.5335,-1.3462,0.2018,1.1817,-1.3611,-1.9,1.1028,0.2196,0.083615,-2.1502,0.64275,-0.15501,-0.50787,1.401 -2.0469,-3.2834,-0.80302,-0.11673,1.1971,-1.5967,-1.2239,1.3022,0.1172,-0.45773,-1.6969,-1.0069,-1.4129,1.0138,1.0449 -1.6231,-4.3063,1.0458,0.14088,1.6898,-0.54094,-0.16995,1.3496,0.28521,-0.22895,-1.6861,-1.6548,0.77775,-0.18165,-0.40111 0.75518,2.5089,-0.71635,-1.9662,0.81832,0.27151,-1.2189,-1.5515,-1.3086,-1.8857,0.89159,-0.063397,-0.26309,1.7909,-0.037527 -2.4666,-1.714,-1.0813,-1.0606,-0.81254,-1.1194,-0.75605,1.1672,0.1661,-0.44895,-0.69848,-1.7247,-0.79904,0.19563,0.15563 3.2803,1.5645,0.47874,-2.2437,-0.42618,1.0148,0.037279,1.2364,0.46068,-2.2043,-0.18943,1.7798,-0.39013,0.60589,-1.0654 0.63183,3.4631,-0.91057,-0.31687,-1.5826,1.2992,-0.98993,-0.67407,-0.78712,-0.21922,-1.0083,-0.28721,-0.14866,0.87624,-0.75421 -0.53976,2.6106,-1.0206,0.91144,0.20505,-0.22179,-1.5937,0.7077,1.3653,-0.018073,-0.41306,0.35561,1.4548,0.11661,-0.56599 -0.96751,-1.0484,0.21478,-0.68378,-1.2082,0.5619,1.0602,-2.6877,1.6223,0.42435,-0.57979,-0.13797,-0.092935,-0.3278,-1.3556 -0.64572,-1.1758,3.374,-0.46607,-0.85291,0.79998,1.1206,-0.61733,2.2032,-0.10912,-0.72828,0.50459,0.30515,-0.67545,-0.52162 -2.7396,-0.16728,1.2333,-0.92129,-0.12863,0.3015,0.20922,-0.37915,1.3435,-0.65959,0.82351,-0.64728,1.1409,-0.29057,-0.1315 -1.7638,-2.1773,-0.32022,-3.0052,-0.53854,1.5744,-0.68349,-2.0408,-2.4307,-0.55429,-1.8883,-0.72187,-2.0833,0.80254,-0.31829 2.0482,-0.71616,2.1197,1.2158,1.0875,2.5657,-0.34777,0.1003,0.99058,-0.62963,-1.2388,1.684,-0.21757,0.13497,-0.63755 -1.4543,2.7882,1.9301,1.1848,0.74721,-0.043132,0.47367,0.2539,-0.60134,1.9534,0.23427,0.8002,-1.2869,-0.60072,0.53607 2.212,-0.71078,3.3355,1.5723,3.7493,0.062174,0.04858,0.95815,-0.096438,-1.5532,-0.84864,1.2141,0.75505,-0.06484,-0.01403 -1.7556,2.5496,1.9432,-0.89987,-0.78652,1.3361,0.75226,-0.69674,-0.67972,-0.56934,1.4173,0.3024,0.16569,-0.083165,0.40922 -2.1015,0.68898,-1.3424,1.1428,-0.57025,0.20237,0.72359,1.0258,1.9093,0.2547,0.19471,-0.23618,-0.089633,-0.59127,0.71746 2.096,2.209,1.4085,0.92426,1.1979,0.56606,-1.48,-1.6005,-0.21885,0.80477,-0.061353,-1.0658,-1.3296,-0.28305,0.46669 4.2205,0.63613,1.411,-0.047335,1.4578,0.20547,0.082013,-0.21168,1.4668,-1.4054,-1.279,0.99114,-1.5541,-0.68403,-2.032 -3.4707,1.714,-1.738,-0.50737,0.18306,0.22659,1.7278,2.4141,0.47702,0.79252,-0.24397,-0.63444,-0.23676,-0.60246,-0.098759 0.58931,0.56602,3.1941,-0.9941,0.89922,0.43598,-0.36898,1.9602,0.83108,-1.4784,0.15422,0.47279,1.9297,-0.37803,0.91668 -2.5645,0.47112,1.0862,-1.5099,0.13397,1.3952,1.0795,-1.4084,0.20707,-0.65872,0.48713,-1.4336,0.75009,-1.3583,0.65298 2.6042,1.4251,-0.51897,-0.55957,-0.89838,1.3664,-1.3484,-0.77047,1.7553,-0.27938,-0.53826,-0.68627,-0.62713,0.80455,-0.15698 -3.7969,0.74879,-2.6715,-1.0578,1.3843,1.0751,0.62284,1.7819,-0.3732,0.94076,-0.40242,-0.59784,-0.36793,-0.50346,-0.79064 0.31921,3.07,-1.3979,0.14994,-2.0709,0.8263,-1.248,-0.68707,-1.2624,-1.4398,0.30464,-0.094923,0.13221,-0.17457,-0.46234 0.14064,2.398,0.63619,0.73378,-1.0094,0.71788,1.1506,-0.12011,0.78783,0.55622,-1.6591,1.3741,-0.64754,-1.6795,-0.1962 -1.1696,-2.4413,2.4457,-2.2807,0.96412,1.2698,-0.62361,-0.4771,0.90186,1.5553,-1.6439,-0.59391,0.42188,2.3266,0.45601 -1.8167,-1.6224,-2.8245,-0.67973,-0.015464,-1.3004,-1.7538,0.87854,-0.41853,-0.92041,-1.44,0.94275,-2.0047,-0.020737,1.63 3.1039,1.2955,-0.12902,-1.5604,0.86412,0.26454,-0.57724,-0.59643,0.84644,0.62096,0.3554,0.32371,1.1534,-1.4114,-1.6875 -2.5491,-1.3408,-2.2335,-0.8903,1.6111,0.61371,-1.4673,0.52741,-0.22012,-2.1383,-1.1149,1.2129,-0.49801,-0.64813,1.8013 -1.2163,-1.5349,1.3192,1.0932,0.22254,2.126,0.43489,-0.47662,0.82135,-2.1303,0.81585,0.099582,1.6276,-0.2122,0.68786 -2.345,-1.2518,-2.6398,-0.53292,1.0005,0.50589,-1.4637,0.64868,-0.27636,-1.7625,-1.1969,1.0156,-0.35477,-0.6734,1.5995 -0.58708,-2.9834,-0.79003,-0.62099,0.25478,-1.6455,-2.2029,1.8069,-0.47802,0.072593,-1.358,0.9985,0.054761,-1.2082,1.7651 3.9103,1.5107,-0.26551,-2.175,1.0471,0.1432,-0.76389,0.54782,0.42566,1.713,0.41372,-1.0679,-0.61954,0.41825,0.16446 -2.306,-2.5135,0.26561,-2.6578,0.99455,-0.72666,-1.5099,-0.34971,0.12595,-0.33442,-2.2272,0.32801,0.48505,-0.95635,1.2422 -0.59871,-3.9915,-0.77657,-0.32381,0.94145,-0.56113,-1.1243,0.96033,-0.29526,-0.18732,-2.4211,0.084269,-0.16989,-0.93206,0.65668 2.4613,-0.756,1.8812,1.6046,1.1668,2.6838,0.25833,-0.75912,0.17408,-1.7853,-1.319,1.5316,0.40005,0.68936,-0.43669 0.62057,4.0693,-0.97098,-0.85745,-0.71834,0.72225,-1.7712,0.70308,-1.4029,0.54877,-0.90485,-0.75788,-0.39655,-0.18189,-0.51224 -1.7189,-1.4269,-0.41792,-1.631,0.45264,0.31251,-2.1665,-0.33286,0.794,-0.41452,-1.1831,1.1759,1.0026,-0.32411,2.4849 5.3631,-0.95939,0.65411,-0.93145,1.1646,1.1566,-0.88868,0.45127,-0.20037,-0.26553,-0.79123,-0.67518,-2.0797,-0.91548,-2.0546 -0.43751,-2.823,1.8778,-1.9124,0.43439,1.407,1.1613,0.91783,1.2858,0.50273,-2.0804,0.046446,0.7764,1.6669,-1.562 -1.8167,-1.4116,-1.5996,-0.5817,0.12551,-0.090055,-2.0257,0.46189,-0.024283,-1.1944,-0.46885,1.1467,0.036939,-0.75167,2.4098 -1.0191,2.3186,0.64199,-0.46918,-1.5391,1.4107,0.46555,-0.12477,0.68722,0.36781,-0.45076,0.89624,-0.45754,-1.1532,1.2934 -1.9783,0.22163,1.6821,0.5369,-0.67713,0.3795,1.2429,-1.3838,1.765,1.095,0.32333,0.23305,0.88932,0.66794,-0.27436 -1.1941,3.3763,-1.6818,0.11488,-0.02271,1.2618,-1.3788,0.48481,-0.34264,-0.29343,0.16067,0.73397,0.9092,-0.43761,-1.14 -1.9212,-1.7063,-1.3987,-1.2933,0.13703,0.7222,-2.1935,-0.053137,0.65045,-0.17656,-1.7343,1.0811,0.80422,0.10902,2.3446 1.3656,-0.26699,0.077199,-2.691,-1.6569,0.92666,-1.2729,-0.71221,-1.3078,-0.87851,1.5479,0.99041,-0.31013,2.0596,0.45577 -2.7331,-1.9402,-1.7243,-0.11044,1.2107,-0.45516,-1.5539,-0.64323,1.6083,-0.49055,-0.63465,1.0915,-0.89573,1.3859,0.73398 -3.0081,-1.2098,0.44712,-0.81333,0.051972,-1.0516,-0.078888,-0.85401,2.1165,-0.14232,0.28047,-0.28981,0.69975,0.24654,-0.57133 -2.5822,-0.96977,-0.52171,-1.7603,0.55761,0.12405,-1.4887,-2.6188,0.46741,0.78636,-0.46984,1.7428,-0.45999,1.1263,0.33996 -2.7067,1.8415,-2.156,0.68707,0.1518,1.8643,2.285,1.0184,0.32648,0.36587,-0.53589,-0.35685,-0.16277,-1.3983,-0.057922 3.965,-0.10496,0.77298,-1.5052,1.874,0.46937,-0.92277,-0.40396,1.6811,1.5619,0.34095,0.22557,-0.015002,-0.85167,-0.54093 -3.3103,-1.5255,-0.35225,-1.2439,0.23365,0.28472,-0.86792,-0.56142,1.5272,-0.39348,0.50478,0.16186,-0.35707,1.678,-0.8191 4.4286,0.10402,-1.3581,-0.16044,1.027,0.73297,1.2877,-0.95006,0.21419,-0.5985,0.53126,-1.3172,-1.5326,0.14359,-0.77224 1.168,1.9363,3.0582,-0.97933,-1.0606,-0.052882,-1.4466,-0.43056,-1.4168,-0.23708,1.0535,-0.069233,-1.8027,1.6786,0.11605 -0.57,3.3567,1.3623,0.8633,0.024684,0.42209,-1.4277,-0.21865,0.094272,0.5402,0.43066,1.2428,-1.1918,1.026,-1.0824 2.005,0.56081,-0.96143,-0.6275,2.1426,0.68272,0.95335,-1.427,-1.2892,2.0624,1.5471,-0.36997,-0.34448,-1.2824,2.29 3.925,0.91127,-0.023653,-0.78442,0.56144,0.34459,0.64379,1.8896,0.98173,-0.0041752,0.14688,0.99046,-1.6513,0.2091,-0.11044 -1.0543,1.649,1.0092,2.0805,0.37442,-0.53285,-0.17681,0.93248,1.7904,-0.90112,0.22564,1.3896,-1.3251,0.84933,-0.082828 1.4465,2.1993,3.559,-0.19597,1.6422,-0.96521,-0.1719,0.19046,0.54208,0.29709,-0.73716,0.81941,-0.34174,-0.69347,0.066644 -0.53199,-0.23163,1.6825,2.4193,2.2463,-0.30123,-0.989,-0.86364,-0.70861,-2.3713,-0.14197,1.1398,-0.24322,-0.42146,0.82033 -0.78584,-2.4402,0.61709,-0.13275,0.42466,1.1488,-1.0945,-0.12763,0.82308,2.0471,-1.7171,-0.057575,1.579,2.2406,0.051842 -1.9757,-1.4076,0.85964,-2.8823,-0.83759,0.91583,-1.4013,-1.6499,-0.18367,0.70583,-0.66348,0.15166,0.23341,1.8012,0.14837 0.36974,3.1553,1.0331,-0.38621,-0.72696,0.81908,-0.93917,-0.35803,-0.6387,-1.0092,-0.42175,0.021174,0.28357,-1.7887,0.59975 -1.4148,0.098181,3.2084,1.0976,0.76798,-0.27558,0.1194,0.10648,0.38011,-0.99371,1.3361,1.0413,-1.4883,1.4454,0.42877 2.7894,0.73047,-0.22758,1.2742,1.0837,0.72742,-0.27979,-2.4673,0.88291,-0.20046,-1.2214,-0.38359,-0.25979,0.26604,-0.75586 2.1924,3.1394,-1.1434,-1.6484,0.23764,-0.47801,-1.4941,-0.90683,-0.006761,1.9872,0.94513,-1.1033,-0.18652,-0.26792,-0.047731 -0.29207,2.4757,2.0394,-0.71733,-0.82137,0.86726,-1.4745,-0.45832,-1.5121,-0.17815,0.79959,0.048885,-1.3224,0.61175,-0.75018 -2.307,-2.2837,-0.823,-0.36697,0.91729,1.0299,-1.2099,-0.13495,1.5614,0.58955,0.076775,0.081073,-0.75347,1.1518,0.18375 4.0469,0.60532,-0.57857,-2.5624,2.6554,-0.55571,1.6171,-0.69131,0.46361,-0.18169,0.83596,1.3516,-0.91168,-0.58613,-1.5727 1.6009,2.9274,-1.2519,-0.51324,-0.13501,0.15057,-1.3698,-1.2836,0.76879,1.2086,0.44459,-0.67014,-0.39169,0.8804,-0.41136 4.9505,-1.7451,-1.2317,-0.82608,2.5641,3.3974,1.6307,0.38457,-1.2831,-1.4127,-0.21452,0.35565,0.012615,2.2938,-1.4101 2.1422,1.7639,-0.34556,-0.015827,1.8176,-0.37739,-1.2264,-1.4655,1.4754,1.9524,1.573,0.086087,0.84746,0.12216,-0.49934 2.1586,0.58335,4.035,-1.8814,-0.14714,1.2482,-1.2544,1.2777,-1.2283,-0.17883,0.30813,0.44938,0.29474,-0.68824,-1.0745 -0.19438,1.8558,-1.9579,2.397,0.96519,1.7635,-0.92309,-0.35631,-0.3788,1.0883,-0.49058,0.057585,-0.44463,-0.35012,-0.4758 -1.1995,3.1802,-1.275,0.56982,0.23878,1.8166,-1.6057,1.9724,-0.90912,-1.4612,0.25577,0.00071103,0.61957,-0.99688,-0.68036 -0.061203,3.0559,-1.1757,-0.10968,-0.54101,0.92608,-2.4207,0.88803,-0.7033,0.92308,0.50997,0.019497,-0.13808,0.39736,-1.2073 1.931,3.9596,-0.3952,-1.3952,-0.38938,-0.68662,-0.86828,-0.12355,-0.04091,-0.042154,-1.2345,-1.2043,-0.49431,-0.63975,-0.48365 0.90802,2.6761,-1.1243,0.45087,-0.27689,-0.26478,-0.93959,0.19286,0.42943,1.4121,-1.7026,-0.43488,-1.3308,-1.0835,-0.5323 1.7559,1.3615,-1.8724,0.55339,1.0908,2.0787,0.034715,-1.6165,-0.6712,0.82323,0.19907,-1.7181,0.014169,-0.94451,0.35156 2.6184,2.0572,1.684,0.94004,2.6028,0.0055872,-0.46449,-1.2994,-0.10451,-0.44629,-0.74653,1.1657,1.2825,-0.6806,-1.5225 -1.0518,0.46853,2.0247,1.0103,0.64915,1.0598,0.34376,0.22662,1.2465,0.4961,1.926,0.13202,-1.3026,1.688,-0.071817 1.9402,1.8724,-0.42876,0.76389,0.90958,0.32059,-1.229,-1.3438,1.1554,1.0024,-0.4819,-0.97413,-0.55111,-1.3162,-0.11455 -3.3745,0.50689,-1.3527,-0.81535,0.56357,1.0516,1.1154,0.122,1.3418,-0.75801,0.20922,-1.0072,-0.007443,-1.1356,-0.79117 2.2781,0.84215,-1.3498,0.39862,1.9943,0.32646,0.37923,-1.9258,0.35824,1.1483,-0.50421,-1.2234,-0.90684,-1.8259,1.0593 -0.38822,2.0413,2.1153,1.4053,0.61698,-0.10688,1.0241,-1.0903,-0.66513,1.2786,-0.44938,0.39131,-1.7187,-1.1918,1.6499 0.63724,1.6429,-1.7383,1.9043,1.3378,1.1345,-0.93889,-1.0861,0.30921,1.5737,-0.23027,-0.87072,0.41999,-1.1609,0.16786 2.8491,1.3903,-1.8993,-0.81168,1.0727,-0.10776,0.49852,0.096185,1.394,2.3687,-0.048705,-0.72919,-1.3277,-1.1403,-0.3138 -0.23144,0.075326,1.0619,-1.7675,0.18544,1.463,-1.3617,-0.18676,-0.52646,-1.3006,1.7169,1.0212,-0.37507,3.607,0.11206 -0.78047,2.7036,1.7733,-0.047778,-1.2569,1.0636,0.071588,0.020846,-1.1172,0.13419,0.312,0.022395,0.79964,-0.34884,0.054629 3.8704,0.072487,-1.3902,-2.6332,0.10684,-0.016529,0.17025,0.24962,1.7667,0.74502,1.9887,-0.40558,-2.2551,0.33826,1.3451 -2.5534,-0.087126,-3.5764,-0.59723,1.7854,-0.3608,0.01184,-0.77765,0.32488,-1.7387,-2.2086,1.3123,-0.73292,0.021772,1.1745 -1.0955,0.9967,2.1719,-1.0102,-0.40537,2.9382,1.2881,-1.0645,-0.65173,-0.82825,0.62948,-1.5739,-0.64161,-0.24191,0.25792 -3.9605,0.5975,-0.23842,-1.686,0.41585,0.45843,0.60769,0.27694,0.40898,-0.4902,1.082,-0.85723,0.31416,-0.9854,-0.45467 -4.3638,0.70677,-0.18495,-1.2831,0.86015,-0.45086,1.6967,0.71783,0.41611,-1.3414,0.50166,-0.33465,-0.57828,-0.19101,-0.39752 -2.6353,2.9181,1.606,-0.017535,0.076866,0.35623,1.0541,0.94426,-0.74601,-0.50016,-0.30038,-0.32263,1.5634,-0.061509,1.1534 2.9122,1.3608,-0.9521,-1.3987,-1.0034,0.61972,-0.9979,-0.025573,0.83478,-2.792,0.18398,0.13917,-0.5277,0.70782,-1.7314 -0.39587,3.3172,-0.65209,0.1778,1.3595,-0.73143,-2.1013,2.1095,0.53265,-0.40102,0.19765,-0.36868,0.62919,-0.99231,-0.40934 -1.9672,-2.5979,0.59569,2.2454,1.4158,1.1892,0.63904,0.51267,0.15197,-1.7852,0.70326,-1.3499,-0.74975,0.10047,0.50776 -0.44454,1.632,3.042,-0.30458,-0.31099,1.1036,-0.57459,1.1418,1.1254,-0.089202,0.64455,0.28401,0.99492,-0.18742,0.77209 -1.509,1.4492,2.4732,1.0529,0.035699,-0.031564,1.1962,-1.1127,1.0452,1.1244,0.39687,1.0662,-0.36888,0.13201,0.013565 0.70933,2.057,2.6215,-0.36308,-1.0175,0.13789,0.93662,-0.3336,0.84635,0.081898,-1.3032,1.3326,-0.37874,0.24519,-0.18955 -3.7897,1.4459,0.85799,-0.95707,1.768,1.3663,1.8224,-0.99781,-1.0615,-0.1725,0.54484,-0.92281,-0.37786,-1.0278,-0.42346 0.43841,1.8217,1.6213,-1.1387,-2.666,1.7069,0.47379,0.054628,-1.3468,-0.92747,0.0040569,-0.75495,-1.3334,0.057305,0.1821 1.3839,3.3745,0.31813,-0.57778,-0.1668,-1.0488,-1.7866,-0.33983,-1.1119,1.0441,0.55951,-0.64123,-1.1478,-0.21973,-0.201 -3.1731,-0.5874,2.6138,-1.9644,0.21076,0.47412,0.30768,-0.55865,-0.40251,0.49393,-0.16465,-0.35586,0.39675,0.74528,-0.10662 -3.6872,1.1878,0.51791,-1.6268,0.28094,0.92172,1.2502,-1.3739,-0.23036,0.53516,0.45782,-0.40601,0.73278,-0.26378,-0.22031 -0.97935,0.14722,2.5412,-0.25676,-1.0955,1.1297,1.0073,-0.56358,2.2743,0.42822,-0.30124,-0.50083,0.88097,0.38779,-0.23221 0.66903,2.7497,-0.080433,1.7673,2.3922,-0.0090535,-1.2653,-1.0784,-0.41386,1.1654,-0.046978,-0.076215,0.33372,-0.32649,-0.51267 2.508,-0.9508,1.6419,1.0317,2.4946,1.9107,0.49678,-0.14289,-1.6687,-2.3297,-0.41284,0.79818,3.1248,1.6001,-0.62073 2.2185,-1.5143,-1.0137,-2.0323,2.1368,3.2206,2.129,-0.057672,-0.80101,-0.89441,-0.59246,1.7578,1.8236,1.4067,0.21516 0.82247,0.84095,2.426,1.6794,-0.41453,1.6871,1.0335,-1.022,1.3643,0.59018,-0.7423,0.35405,-1.0294,0.35278,0.99616 2.6485,-0.60736,-2.5617,-0.7359,0.5633,2.7866,0.93318,-1.5612,0.58821,-1.139,1.0345,0.86517,-0.44108,0.44476,-0.043883 -2.4968,0.69307,0.91924,0.49227,-0.93686,1.4072,0.2371,0.82577,1.23,-0.37596,1.5819,0.26202,-0.77742,1.0428,-0.63752 3.0715,0.22487,-1.2102,-4.6586,0.99314,0.30782,2.0914,1.4948,0.092543,0.017051,1.6674,2.6034,0.044849,-1.3071,0.74942 0.55477,3.6521,1.3121,-0.28936,-0.81362,1.5969,0.05268,-0.80385,-0.68584,-1.9327,-0.20005,0.20668,-0.30354,0.67383,0.37767 -1.7053,-1.5914,-0.015409,1.0829,1.147,1.8238,0.17551,-0.49858,1.1758,0.4232,1.318,-1.106,0.05699,-0.48406,0.80171 -0.080014,-0.32148,1.53,-1.6022,-0.4054,3.5287,1.7776,-0.23989,0.84345,-1.4856,-0.19666,-1.4497,-0.62872,0.52686,0.083051 -1.3154,0.045306,-0.014321,-1.7196,1.1619,2.9533,0.95715,-0.75965,-0.69198,-0.2882,-1.0674,-0.90169,1.4562,2.338,0.147 2.4879,2.333,0.12175,0.10535,1.7345,-0.84695,-1.0642,-2.6379,0.57611,1.0532,0.66089,-0.40174,-0.77435,0.83337,-0.033426 -0.42493,1.0099,2.6191,-0.089342,0.30932,0.84627,0.71075,0.37188,1.9234,-1.4144,0.094221,-0.18455,1.4276,-1.5306,1.1954 1.6411,1.2455,-0.24296,1.6719,1.5545,0.68051,-1.7107,-2.2214,0.87897,-0.25198,1.0533,-0.096254,0.13871,0.70619,-0.14292 -2.1004,2.8239,0.12401,0.95389,0.16842,0.17228,1.1905,0.81885,0.86474,1.2417,-0.048598,1.0061,-0.011313,0.182,0.2945 3.9672,0.40003,-1.3271,-2.4172,-1.0367,0.55026,-0.65492,2.0071,-0.99938,-2.0144,0.32212,-0.56016,-0.14352,0.56156,-0.81114 1.5577,2.2256,-0.55624,-0.84085,0.11859,0.69195,-2.2893,-0.51175,1.2135,1.2181,1.0581,-0.039146,1.7667,1.4405,-0.56355 0.77512,1.593,-1.3691,-2.0625,-0.62759,0.83407,0.57563,-0.83566,-2.3326,-0.41372,1.1978,0.2719,1.0183,1.5564,1.258 0.11749,4.1184,-0.25013,0.12522,-0.94526,1.4225,0.076858,-0.23942,-1.8476,-0.15016,-1.6781,0.028951,-0.45955,-0.58005,-0.48667 -1.4937,2.4447,2.5498,0.2241,0.14934,0.30261,0.30323,0.17014,1.6493,-0.3698,0.31959,1.0399,0.63569,-0.031278,0.73422 -0.19861,0.23199,1.2724,1.8437,-0.57449,2.0309,1.5016,-2.5607,-0.53628,-0.077309,0.09968,-0.13599,-0.75061,0.44997,0.73762 1.7961,1.4569,0.74057,1.6517,1.68,0.25913,-1.7101,-0.64257,1.2011,0.20007,-0.018908,0.35338,0.64483,-1.2035,-0.13029 0.37009,-1.0435,-0.53844,0.65949,-0.55494,3.3913,1.1138,-0.15562,0.66691,-0.29884,-1.0516,0.87806,-1.2715,0.019544,-0.60755 1.8724,0.51798,2.4194,0.96577,0.55607,2.7381,0.9395,-0.087118,1.7466,-1.5784,-0.38951,0.38709,0.73878,0.63507,-0.072732 1.3828,2.752,0.29397,1.3999,-0.86327,2.415,-0.69064,-0.51497,0.36575,-0.15861,-0.021538,0.21077,-0.98363,0.45863,0.64905 0.87791,2.8234,-1.2012,1.3543,0.83771,0.41332,-0.6363,-1.8274,-0.44867,0.89112,-0.64739,0.026123,-0.15917,-0.74252,-0.5222 -1.9367,1.5571,0.6554,0.42984,-1.4204,2.0261,1.1482,-0.47359,0.91502,-0.091089,0.34838,0.92176,0.24878,1.0553,0.084211 -0.78648,-0.74194,1.0041,-0.39385,-0.78699,2.3611,0.43406,-1.1681,2.2078,0.83928,0.19372,-1.0386,0.87592,1.5311,0.11606 -1.4209,1.3495,-2.5395,0.9229,-1.2734,1.3672,0.9335,-0.92659,-1.3682,0.38749,0.12082,0.84279,-0.54425,-0.23471,-0.77694 2.4171,-0.93499,0.28675,0.37202,2.9524,1.0016,-0.91707,-1.1325,0.43562,-2.315,-0.31656,-0.97506,1.93,-1.0183,0.52256 3.8546,1.4278,-1.7517,-0.92227,1.3512,1.4868,0.10505,-0.55829,0.91417,-0.49631,0.063382,-1.3092,-0.62053,-1.8159,-1.2846 1.7406,0.57379,-1.2425,0.31247,0.88629,-0.25691,-0.87124,-1.3606,0.73908,1.7225,2.0232,0.15157,0.17774,-1.3888,0.93599 2.632,2.749,-0.58131,-0.43385,0.8721,0.57179,-1.3204,-1.1437,1.0361,0.15279,-0.30969,-1.2166,-0.4323,-1.3574,-0.334 2.32,3.2129,0.61031,-1.1143,-0.39734,-0.64196,-0.12421,-0.92598,0.24651,-0.26061,-1.636,0.41685,-1.2498,-0.21296,-1.7773 -2.2917,-2.4704,0.5092,1.6438,2.0759,0.62484,1.1589,-0.86236,0.41342,-0.97013,0.11088,-1.6144,1.2141,1.0187,0.71198 -2.6039,2.9545,-0.071156,0.17593,0.023361,2.1282,1.9086,0.50113,-1.3654,0.099663,0.36799,-0.43272,-0.48369,-0.17234,-0.89523 2.3229,2.186,1.2207,1.1101,2.9974,0.73872,0.087624,-1.6814,-0.55362,-0.46429,-1.8703,0.13607,-0.75619,-1.4518,-0.82525 3.4299,0.0080489,-2.5068,-1.3543,0.77862,2.0582,1.6816,-0.091488,0.18711,-0.12118,0.88638,-0.3518,-0.4004,-1.4786,0.28853 3.0715,0.93752,0.30209,0.028004,2.487,1.7133,-0.58987,-2.2043,0.72134,-0.59521,0.30971,-0.25996,1.2865,-0.3672,-0.16442 -3.3234,2.6793,0.050851,0.023169,0.56,2.0795,1.3298,1.3338,-1.3544,0.89079,0.24454,-0.2524,0.19783,-1.1373,0.54939 2.7543,0.9076,-1.5253,-0.64241,-0.29536,1.0175,0.61882,-1.2721,-0.31117,-0.7075,0.16756,-1.5411,0.59431,-0.22061,0.39237 3.307,1.4604,-0.34429,0.39798,1.8681,1.4256,-0.20265,-1.2865,0.37071,-0.97469,-1.0505,-0.46864,-0.17299,-1.8094,-1.6287 4.0573,0.47948,-1.6834,-1.351,1.7461,2.8619,0.98382,-0.96347,0.13975,-1.7023,0.64913,-0.38821,-0.59258,0.37895,-1.0338 1.4598,1.5477,1.4635,-0.12828,-1.2196,-0.35406,0.25038,-0.95244,0.99305,-0.62625,-1.984,0.7223,-2.3699,-0.78381,-0.041281 -3.9764,0.3735,2.1197,-1.0499,1.7488,-2.1523,1.5754,0.98027,-0.38339,-0.7451,-0.053027,-1.2584,0.34159,-0.80333,0.20712 -2.8051,1.8551,-0.95763,0.46152,-0.89278,0.89446,1.2568,0.59981,0.41165,0.83846,0.84709,1.0155,0.31422,0.37844,-0.31484 -0.96656,2.0941,2.7373,0.87556,2.3177,-1.1753,0.39554,-1.8563,-1.2207,0.65389,0.050149,-0.075386,-1.0919,1.881,-0.48719 3.0204,0.53083,-0.87757,0.40748,0.30874,0.62108,0.21255,0.35635,-0.16524,-0.6287,-1.0809,-0.92552,-1.9354,-0.71002,-1.002 -1.9072,2.7859,1.2499,-0.57311,-0.95313,1.0141,0.98305,-0.51778,-0.96883,-0.182,-0.031527,0.75338,-0.14967,-1.5131,1.2925 1.5237,3.7245,-1.3814,-2.0226,-0.25372,0.11768,-1.4994,-1.2659,-1.345,-0.16382,1.4684,-0.98651,0.035965,-0.39345,-0.3916 -2.4651,1.9986,1.7903,0.26386,2.1614,-1.2708,0.10639,0.59014,0.065101,0.16423,0.24233,-0.091371,-0.61078,1.4845,-0.49267 3.9336,-1.0764,-1.3229,-3.3257,0.49795,0.84541,1.2986,1.7422,1.2207,1.7772,0.69394,1.9684,-0.508,-1.1812,0.031959 -1.6582,0.51941,3.1105,0.37086,1.438,-0.92466,0.95565,-2.4869,-0.67124,0.98201,-0.3439,0.22271,-1.2016,1.4405,-0.23959 0.7649,1.8317,-0.17458,2.0769,0.11358,0.63354,-0.04744,-2.6689,-0.42127,-0.27741,-0.88297,0.53545,-0.19588,-0.062318,-0.03867 4.0639,-2.0583,-0.82913,-2.4836,2.8567,0.62805,2.5193,0.97425,0.22977,0.77171,0.93775,3.5842,-0.39545,-1.1786,0.12568 -1.1215,1.8656,2.0704,1.5326,2.4821,-1.0146,0.39088,-0.38062,0.95689,0.12369,0.37543,-0.0018652,-0.25026,0.61266,-0.15997 4.567,-0.22089,-1.6371,-1.7023,1.9839,0.94835,1.5771,-0.15157,0.95107,0.55632,1.3033,0.8946,-1.992,-0.41886,-1.0181 -2.7714,0.96908,-0.089631,-1.2932,-0.72472,1.3785,1.538,-1.5365,-0.26022,-0.17096,0.50781,0.3795,0.07938,-1.429,0.28257 -0.16522,3.2183,2.5204,0.58342,1.4569,-1.5595,-0.8146,-0.36025,0.37376,0.17378,-0.68098,1.1203,-0.11523,0.050831,0.27296 0.17269,2.6589,2.2261,2.3996,3.113,-0.31433,0.079562,-0.69516,-0.98708,0.67799,-1.2042,0.40628,-0.30392,-0.41546,0.41525 -0.66176,2.8823,2.7944,1.6342,2.427,-0.9946,0.11105,-0.55864,-0.81806,0.23417,-0.13356,1.0423,-1.2322,0.76961,0.10537 -0.25493,3.7637,1.2928,0.4477,-0.117,0.46809,-1.2877,-0.31232,-0.39342,0.27551,-0.22161,0.79556,0.23905,-0.55083,-0.16223 -1.6192,2.248,1.7125,2.0821,2.673,-1.2036,0.11813,0.58955,-0.50299,-0.29579,-0.3276,0.43156,-0.82198,0.53622,0.80802 -0.011203,2.3393,2.6091,2.1355,2.5257,-0.74161,-0.44792,-0.77181,-0.26485,-0.07015,0.11999,1.1089,-1.011,0.45334,0.26919 1.661,2.8199,3.257,-1.6087,1.8114,-0.63937,-1.4428,1.2215,-0.48154,0.67068,-0.75441,-0.052935,-0.58805,-0.8637,-0.05525 2.8435,0.4952,-2.0868,-1.8778,-1.6356,0.8336,0.71312,-0.0041118,-0.2655,1.4658,0.93157,0.58646,0.92051,-1.0688,0.4561 2.207,0.20466,1.4931,-4.6621,1.4587,-0.48432,1.2405,0.27986,-0.37853,0.27904,-0.17793,2.2056,-1.6366,1.7237,-0.31479 -1.0967,0.225,1.7468,0.70841,-0.20404,0.76412,1.1012,-0.70092,2.1562,1.5437,0.28472,-0.15673,-0.1084,-1.1853,1.1505 -2.3158,0.98749,0.50784,0.069621,-0.91289,1.2494,1.0459,-0.71909,0.92137,-0.023151,1.4017,-0.027096,0.24404,1.736,-1.1289 -2.4115,0.39105,1.0892,-0.20786,-0.69403,1.2489,0.11662,1.0263,2.1055,-1.1667,1.3777,-0.32994,0.44545,0.15546,0.67191 -0.61585,2.1053,1.4214,2.0297,0.65164,0.0093423,-0.78139,0.26706,1.5107,-0.11641,0.25317,1.1516,-0.69627,0.080363,0.90835 -1.8889,-1.4778,1.1636,-0.49369,-0.15366,0.054344,0.24172,-2.1436,1.852,0.89363,-0.94727,-0.16,0.67495,-0.043277,-0.94143 -0.18213,-0.72061,1.5512,2.34,0.74453,1.3322,0.44672,0.044454,1.3768,-1.5101,0.45085,0.71628,0.56762,-0.22414,1.1904 0.21655,3.0805,-0.25207,1.3825,1.6188,-0.38465,-1.732,-0.4373,-0.023077,1.1724,-0.059539,0.28246,0.19093,0.29454,-0.98307 -0.15142,2.9552,0.10715,0.59741,2.081,-0.66543,-1.3103,-0.95646,0.07522,0.96578,0.80586,0.37426,-0.5644,0.62315,-0.66794 -2.0747,0.73654,-0.28096,1.7436,0.71191,0.55933,1.9891,-1.5743,0.81974,1.3932,0.38715,0.79659,-0.30469,0.055413,0.13948 -1.2146,-0.40408,1.6892,1.2072,0.22359,0.81487,1.5148,-2.364,0.86387,0.95542,0.44013,0.48267,-0.90558,0.16203,0.57095 0.90239,2.9001,1.0083,-1.0825,1.9824,-1.9709,-2.2242,1.0125,-0.30495,0.078217,0.45937,-0.75975,1.0647,-2.1063,-1.049 2.4293,1.9561,2.3084,-0.81264,-0.31439,0.89354,-1.5074,-0.19548,1.2473,-0.01526,-1.3234,0.83569,-1.6537,-0.40157,-0.32848 -2.4321,0.67133,2.1636,-0.035679,-0.48096,0.21438,0.44594,-0.36104,1.827,-0.50232,1.4894,0.61683,0.15853,0.84793,-0.061807 -1.4816,-1.1227,2.193,1.4284,0.84391,0.21758,1.888,-1.7117,1.3955,-0.10133,0.076952,0.25612,0.58154,-0.67773,0.045598 -1.1442,-0.24464,2.1147,0.34925,-0.67565,0.73115,1.3417,-2.0215,1.9352,0.94727,0.2617,0.5319,-0.36121,0.25144,-0.17153 -1.7543,1.5006,2.1787,-1.249,-0.32892,0.62219,0.92047,-1.0204,1.351,0.20659,0.64638,-0.44211,1.4107,0.55164,0.15342 -1.1983,2.124,0.21657,0.77779,-0.15623,-1.0555,0.75305,1.5479,0.3153,-0.62662,-1.2099,0.75034,1.6529,-1.6004,0.70912 -1.5407,2.8497,-0.97417,0.56275,-1.4677,1.1274,0.42103,0.4467,-0.56328,1.0302,-0.37739,1.363,-0.13487,-0.70393,0.38379 -3.641,-1.0173,-1.4478,-2.2209,2.8042,-0.084362,-1.4145,-0.82823,-0.4624,-1.5052,-0.76262,1.9467,-0.76072,0.93551,0.84141 1.6233,0.49077,-2.386,1.005,-0.34618,2.2098,-0.7332,-1.7238,0.51514,0.22612,0.7313,-0.93006,0.51288,0.5048,0.55837 -2.3105,-0.96815,0.62199,-3.5027,1.7626,0.71173,-0.95657,-2.3635,-1.8643,-0.61503,-1.1619,0.45114,-0.82462,1.3784,1.339 -0.163,1.8124,1.165,-0.70451,-1.2482,0.66544,-0.45113,1.3023,-0.036011,-0.97945,-0.70085,0.052278,0.66013,-2.1022,1.4169 -3.2001,-1.5922,-0.98386,-2.0921,1.8976,0.41138,-1.5472,-1.2827,-0.014802,-1.6604,-0.53256,1.8649,-0.45381,1.2041,0.57252 1.7593,2.0607,-0.89068,0.45329,0.70198,-0.12531,0.75654,-1.4316,0.34897,1.0071,-2.1397,0.29736,0.17363,0.061465,-1.3468 -0.25112,2.8127,-0.7997,-0.22525,0.39662,1.2312,-0.44766,-1.2097,-1.1602,-1.6455,0.90764,0.16738,1.0175,1.3747,-0.51041 -2.6195,1.0337,-2.1765,0.35502,-0.094311,1.3641,0.83058,2.0137,1.0431,1.0112,-0.13137,0.33172,-0.55839,-0.048898,-0.18192 -4.1537,-1.7158,0.9143,-2.0331,1.2242,-1.0503,-0.19987,0.34767,1.0974,-0.72482,0.62911,-1.0473,-0.59444,0.29486,0.30806 -3.7923,-1.8718,-0.49113,-2.7896,3.2416,0.50586,-1.4145,-1.4553,-1.7869,-1.0567,-1.3986,1.5306,-0.76579,0.8591,0.98511 -2.2072,3.1565,-0.74932,0.47172,-0.64079,1.5187,0.49443,0.33327,-1.9367,-0.35496,-0.26173,0.7174,0.40921,0.62485,-0.75167 5.0584,-2.359,-0.68305,0.016789,0.15738,0.28844,0.978,-1.8406,-0.28358,-0.5563,0.78156,-1.0634,-0.219,0.22364,1.1707 -4.3886,-1.7469,1.8824,-2.6038,1.8866,-0.081888,-0.90795,0.50089,-0.53583,-1.1074,-0.51681,0.24756,-0.97641,1.3245,0.31716 -4.3947,-1.4784,0.56405,-2.532,1.6192,-0.3679,-1.0487,-1.3073,0.18187,-0.39509,-0.23483,0.4795,-0.04568,1.0497,0.19816 -0.72405,-3.218,3.1325,0.055194,2.0567,1.4568,0.59873,-1.1102,0.99845,1.1851,-0.5181,-0.80692,0.51872,1.2049,-0.20615 -1.7456,1.5318,-2.4279,1.5251,-0.69251,1.145,0.62637,1.8592,-0.21927,0.83928,-0.64115,0.54326,-1.0635,-0.17873,-0.32764 -2.3529,-1.2027,3.3615,-2.6321,0.21848,0.5266,0.099323,-0.87089,0.8747,0.52389,-0.45971,-0.56529,0.27088,1.0704,0.15543 3.6091,-1.0054,0.036309,-3.4398,1.8119,-0.81636,1.8092,0.9936,1.3363,1.4399,1.1944,1.7931,-1.0594,-0.62645,1.6078 -3.109,-1.7187,0.68783,-2.6199,1.7349,-0.39925,-1.7948,-2.2524,-0.17259,-0.033629,-0.4511,1.4358,-0.65094,1.645,0.93256 -0.44642,0.21724,2.964,-0.69238,-0.25879,0.66643,0.96842,-1.1311,1.2098,1.854,0.56104,-0.5251,-0.77876,0.074663,0.23166 2.7601,2.7133,-0.57147,-0.68511,-0.51167,-0.27746,-1.1157,-0.86249,1.0915,0.45329,-0.98459,-0.56137,-0.81311,0.12848,-0.91047 1.3146,0.1282,-0.75783,1.5252,1.7425,-0.052744,-1.5654,-0.048686,2.2825,-0.63155,0.3435,-0.41136,1.3831,-0.12855,-0.00061345 -3.8266,-1.5276,2.7719,-2.6151,1.3253,-0.2269,-0.23831,0.29362,0.16323,-0.91918,0.37348,-0.77167,0.27349,0.81147,0.10712 1.3463,2.0841,2.3223,1.3194,3.7641,-1.2425,-0.85058,-0.94879,-0.69181,0.073654,-0.37939,0.45917,-0.47056,-1.0647,0.015922 3.6482,0.88838,-0.1625,-0.71594,2.3305,-0.6302,0.25875,-0.53629,1.2977,-0.75701,-0.85837,1.102,-0.026944,-1.3032,-2.452 -0.58013,1.9263,1.7734,1.7006,0.3174,-0.60364,-0.43383,-0.49492,1.3154,0.26494,-0.63787,1.3563,-0.47604,-0.37131,1.0964 -0.41953,3.4837,0.039887,0.096321,-0.42674,0.53536,-1.5587,-0.23656,-0.0095627,-0.58966,-0.38371,0.60236,1.4216,-0.33173,-0.38588 -2.1232,3.5095,-0.36935,0.31902,-0.25632,1.0418,0.18141,1.1509,-2.2114,0.4168,-0.50054,0.81436,0.21505,0.26427,-0.33587 4.3102,-0.53709,-0.90879,-1.2716,3.239,0.65037,1.8617,-1.921,-0.23106,0.060746,0.57509,1.117,-1.026,-0.25481,-0.519 1.0248,1.2069,1.4039,-1.0805,0.43952,0.75112,-2.4578,1.2503,1.5854,-0.90498,-0.73648,0.57808,0.97325,-0.28369,-0.33273 1.1839,1.7882,-1.2056,0.7252,2.2111,-0.010623,-0.30142,-1.4986,-0.32685,2.6257,1.2163,-0.73831,-0.49027,-0.017357,0.20002 5.2609,-0.13924,0.94001,-0.47289,1.8015,0.82645,0.84143,-0.41504,-0.64969,-1.0303,-0.91519,-1.1031,-2.6511,-0.64355,-8.1178e-05 -2.5298,2.3013,1.4835,-0.73174,-1.0858,0.35078,1.8242,-1.3734,-1.4649,-0.48065,0.46471,1.1018,-0.4042,0.93596,-0.039749 1.7381,2.6191,1.1569,0.20405,1.1472,-0.96657,-0.39617,-0.42303,1.126,0.44193,-2.317,0.98451,-0.15307,-1.627,-1.4761 0.78957,2.091,-0.048552,2.0053,1.4388,0.6029,0.60176,-1.6956,-0.40393,0.5917,-2.1496,1.4565,0.10562,-0.24424,-0.69044 1.8633,-0.37868,-0.36749,1.2701,2.8445,0.44951,-0.95524,-1.6176,1.7816,-0.09754,0.47601,-0.62556,0.59791,-0.66009,0.9534 0.6705,3.1461,1.0879,-0.40621,0.10431,-0.91577,-1.158,-0.21307,1.067,0.59591,-1.6055,0.86435,0.576,-1.1129,-0.69616 3.1199,1.8354,0.47661,-0.76875,0.97952,1.6291,0.29388,-1.9258,-0.9606,-1.1098,-1.1502,-1.0714,-0.14115,-0.31365,-1.7528 -1.6259,2.7773,0.63772,0.12255,0.60164,-1.3016,-1.5975,2.4759,0.082936,-1.0232,-0.17718,0.95501,-0.23613,-0.80565,0.31099 -0.029808,1.4145,2.3911,1.862,0.09897,0.0087645,0.26511,-1.4551,1.0872,-0.056347,-0.50018,1.7458,-0.49229,0.18111,0.57508 -1.5525,1.5334,0.3982,2.4788,1.5681,-0.36636,0.084975,-0.44535,-0.21557,-1.3136,-0.54772,1.8767,-0.83367,0.54864,0.25422 -0.26768,2.5453,-0.1817,1.2975,-0.42075,0.066841,-1.8589,-0.28071,0.042379,0.741,0.73655,0.88997,-0.1707,1.1782,-1.185 2.889,-2.07,-0.818,-0.7123,2.7529,2.4216,2.1754,0.52078,-0.06911,1.1346,-0.37711,2.9571,0.79607,0.35545,0.51206 -0.099257,0.22376,0.69132,1.8696,1.4041,2.1177,-1.0441,-1.0421,0.43367,-2.1247,-0.81787,0.38944,1.2388,0.32584,0.96947 -0.54895,-1.8238,1.582,-2.095,-0.14151,0.84386,-0.99396,-0.69428,1.0057,-0.13384,-1.3555,0.39626,0.91243,1.7364,-0.074763 2.3489,-0.38862,0.96916,0.80008,3.3274,0.25328,-0.93203,-1.5656,-0.085137,-1.3743,-1.2116,-0.087459,1.3041,-1.2559,-0.083707 3.5711,-0.22969,-0.63894,0.072686,2.2457,1.3791,0.35002,-2.8728,-0.20759,-0.91419,-0.13195,0.002183,-0.28763,-0.12353,-1.0538 1.6374,2.4214,1.7004,0.69329,0.47124,-0.36002,0.12291,-0.30807,1.1867,0.2173,-2.2524,1.2502,-0.34582,-1.6291,-0.67372 4.6422,-0.93416,0.20703,-1.2212,2.9645,0.99487,-0.094718,-1.1428,0.83402,0.18259,0.4821,0.55515,-0.16776,-1.1539,-0.11076 -2.1089,3.3805,-0.17264,0.41731,0.079177,0.54764,-0.34912,1.7101,-1.5453,1.3443,-0.12867,1.199,-0.55588,0.25601,-0.66344 -3.3217,0.88186,-0.56071,-2.1879,0.60993,1.226,0.47923,-2.4964,-1.4086,0.41029,0.1087,-0.2049,-0.12798,-0.26613,-0.61287 -4.0041,-1.0998,1.0861,-2.5357,0.81742,0.14895,-0.26148,-1.8028,0.17431,-0.63526,0.48552,0.48316,0.33682,0.60982,-0.10996 -2.684,-1.6317,0.42812,-1.7378,0.59837,0.06494,-1.2577,-0.51494,0.92502,-1.197,-0.65992,-0.30152,1.1476,0.51585,0.97846 -2.4799,1.6372,0.39762,0.25294,-0.68387,1.0157,1.1639,-0.23807,0.1956,1.9381,0.82834,-0.12961,-0.85592,-0.31254,-0.27789 2.6399,-1.7569,-2.6023,-0.82129,1.2395,3.3052,1.4181,0.019606,0.65316,-1.0596,0.77771,1.1086,-0.33996,0.40346,0.78691 -1.8241,-0.58898,1.4559,-1.7056,-0.54542,1.9312,-0.56255,-1.3078,1.0814,0.18449,0.44138,-0.17485,0.20981,2.2232,-0.60623 0.080709,-0.52858,3.8391,0.30285,0.45973,-0.11773,0.15635,0.30491,1.7099,-0.49148,-1.2665,0.85081,0.32328,-0.40706,-0.33799 5.036,-2.9628,1.908,-0.61014,4.4821,0.26893,0.30842,0.68359,-1.0061,-0.84307,-0.19461,0.57725,0.66773,0.93565,-0.30149 -0.75179,-1.3263,1.1641,-1.012,-0.35438,0.87204,0.29862,-0.70161,2.4312,0.15115,-0.71528,-0.4866,1.1905,0.41363,-0.77764 2.1916,-2.026,2.938,-0.43871,0.082885,1.5413,1.894,-0.11121,0.34796,0.37094,-1.1042,-0.27249,-1.3469,2.489,-2.1337 1.6785,1.7484,-1.6661,-0.46803,-0.19024,1.6913,-0.8681,-0.2825,0.81161,-0.50688,-0.064152,-0.071533,1.6569,-1.1116,-0.32498 -1.0399,-0.39803,2.4208,-1.0874,0.33348,0.82721,0.77916,-1.9223,2.1803,0.61185,-0.063781,-0.51721,0.37262,0.69672,-0.65949 -0.82374,1.3917,2.515,-0.3116,-1.2058,0.40805,1.0708,-0.30835,1.0713,-0.88493,-0.59753,0.96952,0.61244,-1.7594,0.42412 0.7251,-2.2348,0.66372,-0.76802,0.14293,3.1693,1.0403,0.25044,1.1064,0.57022,-1.6539,-0.45561,0.43027,2.1957,-2.1281 0.4853,-0.20945,-0.6673,1.1841,1.4264,0.80876,-0.82866,-2.143,0.86084,-2.4617,0.052191,-0.23939,2.0485,-0.47446,0.085482 -1.4847,-2.8807,1.8858,-0.16346,1.1653,-0.018374,0.47189,-0.9504,1.5855,0.80856,-1.342,-0.90187,0.46356,-0.86473,-0.21571 -3.2519,0.28524,-3.038,-0.75203,0.56348,0.8867,1.6237,-0.58572,0.67076,-0.56596,-1.1897,-0.58584,0.29176,0.51839,-1.0492 3.188,-1.2843,-1.814,-1.5687,0.90884,2.5706,1.6001,-0.90656,0.20819,-2.8504,1.0951,0.0012922,-0.31238,1.0318,-0.34967 -1.5902,-0.66302,0.77424,-0.36683,-1.2894,0.90368,0.049607,-0.65174,2.2906,0.71307,-0.12922,-0.51119,0.74461,0.46886,-0.48367 -1.6374,-1.4586,-2.4374,-1.4384,-1.4276,-0.77697,-0.52157,-1.7737,0.019559,-0.7938,-1.4113,0.97273,-0.66871,0.13803,-0.13911 2.5806,-0.41421,1.3058,1.2506,2.7947,2.9,-0.76973,0.070762,-0.5044,-0.87065,-1.5315,-0.41192,1.222,-0.48597,-0.55214 -1.1459,1.204,1.5412,-0.18827,-0.70098,-0.11837,0.77654,-0.18771,1.5637,1.0329,0.67974,0.467,-0.026856,-1.114,0.5914 -1.6718,1.8414,0.8993,-0.055546,-1.4205,0.70683,1.1038,-0.58262,1.1118,0.82939,0.353,0.66799,0.20109,0.73411,0.10424 0.77214,2.486,1.6487,0.20394,0.33129,0.27901,-0.028496,-0.22429,-0.38116,1.7308,0.45695,-0.075065,-0.4302,-0.33536,0.48567 2.9239,2.8718,0.56207,-2.5538,1.3951,-0.11633,-1.115,-0.35761,-0.29706,-0.49181,0.33428,-0.60015,0.97324,-2.258,-0.39953 -4.3858,2.0161,-0.81792,-0.58708,1.3269,0.59194,2.1407,1.8164,-0.73871,-0.57108,0.10082,-1.3278,-0.11486,-0.92222,-0.14639 -2.0556,-0.011738,0.74352,-1.5771,-1.9163,0.70847,0.11534,-0.3412,0.53135,0.15517,0.78244,-0.26205,-0.81717,-0.24126,-0.15754 4.3518,-0.29426,-1.1592,-1.538,1.7499,0.29103,1.3348,-1.3586,1.2086,-1.1311,0.7567,1.0516,-0.8132,0.57642,-1.9274 -1.6625,-2.1097,-0.31145,0.13031,0.43954,0.11707,-0.038577,-1.4426,2.5764,0.53408,-1.0883,-0.44506,0.63301,0.34681,-2.6568e-05 2.8816,0.46533,-1.5958,-1.1652,0.089279,0.67949,0.45286,-0.44402,1.7036,2.1793,0.65022,0.16187,-1.594,-0.24688,0.58081 -1.2124,-2.5609,-0.47547,-0.46073,0.16619,-0.024603,-0.82943,-1.1084,1.8244,1.6823,-1.6693,-0.0090346,0.36441,-0.10651,0.088559 -2.4647,1.2145,-0.091474,0.41317,-0.74141,0.11809,1.9186,-0.28778,1.5804,0.73092,0.33312,0.59739,0.037484,0.11444,-0.55969 -0.25437,-0.19245,1.9079,0.62119,0.38305,0.9016,2.1504,-1.1852,1.8502,0.15976,-1.1244,0.051723,-1.3488,-1.4545,0.6996 -2.6539,1.0221,-1.5808,0.45958,-1.0689,2.1449,1.5428,-0.2322,0.49163,-0.7159,0.72004,0.02449,0.23213,-0.29901,-0.83196 2.3055,1.0608,0.75488,0.56263,0.35773,0.2621,-0.19958,-0.85169,1.8325,-1.0887,-1.493,1.5921,-0.83753,-0.77813,-1.7137 -2.3392,2.8494,0.07681,0.75044,-0.049371,2.912,1.2321,0.7286,-1.2987,0.21898,0.57513,-0.068378,-0.53449,-0.87712,-0.46732 -0.33387,1.251,0.6688,0.61688,-0.55418,1.125,0.22923,0.047057,2.5385,0.65385,0.042501,0.3784,0.1224,-0.66524,1.2279 -2.2586,0.51516,-1.5118,1.866,0.7749,1.6735,0.99472,0.92837,0.88366,-0.7419,-0.19886,-0.37232,-0.9379,0.64492,0.53118 0.07118,0.91947,0.64287,1.7554,-0.11653,1.0534,-0.63619,1.0161,1.5613,0.87797,0.6278,0.66112,-0.91219,0.042049,0.92595 -1.1217,-3.0704,-1.4228,1.058,0.72086,-0.29675,-2.1059,0.50404,0.93197,0.017426,-1.1887,0.47037,-0.82719,0.64027,2.1109 3.7978,0.17979,-0.47673,-0.3356,4.5103,0.74373,1.189,-0.98158,-0.93519,0.0081988,-0.021059,-0.59531,0.27289,-1.8601,-0.8198 -1.7021,-2.2951,-1.5599,-0.090274,-0.051833,0.15646,-2.6771,0.42127,0.49192,-0.26356,-0.59601,1.6147,-0.37382,0.40039,1.7786 -1.1706,-3.7946,-1.2485,1.0701,1.7872,0.53755,-1.8328,0.14455,0.24859,-0.51224,-1.6487,0.12216,-0.027502,0.64681,2.0739 -0.61994,-2.5718,-1.5612,1.4007,1.2328,0.048368,-1.2052,-0.19309,0.88681,-1.0895,-0.91964,1.3283,-0.032824,-0.83558,1.7642 -0.17893,2.8119,-1.5531,0.77643,-0.6817,1.9653,-0.71964,0.9975,-1.1165,-0.23394,-1.301,-0.53031,-0.69041,-0.55866,-0.48609 -1.3247,-4.1879,-1.1771,1.2851,1.9349,-0.2724,-1.9574,0.41272,-0.051955,-0.16446,-1.9071,0.031669,-0.27532,0.15042,1.8788 4.6757,-1.4258,-0.25751,-2.7242,2.9055,-0.46063,1.921,1.4271,0.62323,2.3125,1.2859,1.6698,-0.67587,-1.152,0.68376 -0.51006,-3.8011,-0.80956,1.1305,1.7051,0.74716,-1.5287,0.49796,0.17931,0.89709,-2.0847,0.12968,0.9508,1.0797,2.0814 -1.9417,1.9046,-1.2985,1.933,-0.091681,0.81464,0.65017,1.0511,0.45197,0.36809,-0.11741,0.7925,-1.1188,0.20132,-0.28353 3.7989,2.3943,-1.0526,-2.8474,1.6469,-1.3839,0.83765,0.40508,1.0393,1.1062,0.32601,-0.068844,-1.1465,-1.0474,-1.3044 -3.7196,0.43224,-3.3444,-0.94288,1.0421,0.26282,0.85407,-0.23047,-0.32897,-0.5269,-0.93865,-0.52176,0.41461,-0.5398,-0.73051 0.039253,3.7038,-1.3659,0.56681,-0.94607,1.9373,-0.33693,0.52499,-1.5795,-0.20561,-1.2867,-0.57559,-0.44328,-0.30539,0.38753 -1.6515,1.1392,0.28896,2.1993,0.76458,0.7412,0.63026,-0.37973,0.44005,-0.33423,0.77132,1.0349,-1.1903,0.23572,0.6178 -3.3248,-0.52819,-2.8839,-1.3094,0.74592,-0.43431,0.56466,-1.0535,0.083841,-2.2472,-1.8477,0.085257,-0.28116,0.63578,0.074761 1.9007,0.061802,-2.3273,0.336,0.97444,1.2998,2.4199,0.4995,0.81782,1.4706,-0.60144,2.1451,0.48298,-0.26212,-0.90943 -3.8303,1.7409,-0.43512,-1.5653,0.66644,0.91542,1.9164,-1.2109,-1.1135,0.80902,0.27809,-0.21539,0.79004,-0.2986,-0.55634 0.9033,3.2778,0.78904,-0.49921,-0.066491,0.16012,-2.2855,-0.46049,0.10614,0.18794,1,0.9762,0.1832,1.195,-0.3907 -1.5187,4.0587,1.5429,-0.53457,0.97379,0.41484,-0.0091712,1.3306,-2.526,0.069391,-1.2981,-0.58757,-0.67663,-1.2445,0.51022 4.2549,-0.26333,-2.3285,-0.71975,1.691,1.4188,1.6444,-0.28787,0.020352,0.16421,0.95328,-0.90022,-1.0962,-1.3627,0.073551 -3.6083,0.87052,-2.1626,-1.035,0.16071,0.22429,2.0361,0.19302,-0.19118,-1.2128,-0.65537,-1.8805,-0.18439,-1.2324,-0.72538 -0.89718,-0.46279,3.6734,-0.29434,1.5335,-0.49423,1.0871,1.6904,0.59506,0.93123,-0.65729,-0.81682,0.15568,-2.4706,0.15053 -2.3048,0.8814,-0.4848,1.0632,1.0778,-0.61484,1.7898,1.7618,0.10797,-0.96279,-0.30174,-0.73042,-2.0137,-2.011,0.8831 0.83201,1.3583,0.77228,-2.0307,0.56068,2.5327,2.5148,1.5232,-1.2124,-1.1467,0.55105,-0.33196,-0.52984,-0.72988,0.61472 -1.6665,1.7477,-0.93016,2.0129,-0.55413,1.1164,0.43111,0.52176,0.75509,1.2378,0.19401,0.95117,-0.82061,0.37289,0.049302 -3.1164,-0.274,-0.41175,-1.5793,-0.059559,-0.70441,0.88595,-2.3117,0.87004,-0.023365,-0.54959,0.2674,1.4128,0.28845,-0.52942 -2.5522,2.0683,-0.8743,0.3785,-0.13617,0.95568,1.1956,1.6874,0.90447,-0.14602,-0.070492,0.23649,-0.73775,-1.0156,-0.20797 -2.6529,-0.22807,2.3258,0.35133,0.3759,-0.77134,1.0658,-0.23,1.6085,-0.63365,0.71841,0.16424,0.18297,-0.37125,0.077212 -2.2722,-1.7214,0.22639,1.7107,1.1365,-0.97243,2.1432,-0.28043,0.49796,-1.5177,0.19668,-1.1346,-0.25272,-1.1768,0.41596 2.0744,2.5044,-1.0069,-1.141,0.37439,-0.79278,-1.1053,-1.0342,1.0848,1.8746,0.61041,-0.70432,-0.22577,-1.4573,0.052062 -1.8036,0.43337,2.3129,0.97948,0.45471,-0.77489,1.4047,-0.199,2.2434,-0.32638,0.48865,0.79394,0.23479,-0.15445,0.2719 -3.7406,1.9593,0.11139,-1.0799,0.30974,0.82798,1.5108,0.26223,-0.47828,0.23582,0.55802,-1.0388,0.94714,-1.6462,0.16486 3.9261,0.22139,-1.355,-0.19699,1.7643,0.57237,1.498,-1.5362,-1.364,-1.0778,-0.76598,-1.06,-1.0988,0.21759,-1.689 -3.9337,0.20225,-0.056906,-0.52759,2.1991,-1.4353,1.6784,0.43163,1.0101,0.34393,0.018063,-1.0451,-0.97401,0.054421,-0.36922 -2.1716,3.1124,-0.55358,-0.12861,0.12223,0.48694,-0.76842,0.36527,-0.2418,-0.11595,0.27618,1.7201,-0.076208,0.17597,-0.82473 3.0246,1.6524,3.1539,-1.1912,0.74305,-0.34439,-0.52427,-0.059889,1.3054,-0.53527,-1.1069,1.1795,-0.0080074,0.25,-0.87375 1.3377,-0.51396,4.5552,-0.63025,0.67043,0.54908,0.42593,0.79948,1.3278,-0.79891,-1.0262,0.7592,0.12258,-0.098713,-0.74181 1.6915,2.5545,-2.6268,-1.8972,0.19885,0.041332,1.7026,0.84142,0.35593,0.64715,-0.4893,0.30681,-0.58002,0.59531,-0.81002 0.59095,2.0845,4.2306,-2.2151,-0.10766,0.55736,0.24759,-0.31398,-0.043159,-1.3132,-0.25931,0.56663,-0.45936,0.37452,0.44746 -1.2165,0.50098,0.53922,-0.75671,-0.34237,2.3772,0.41574,-1.1768,-1.0448,-1.8871,0.76651,-0.95536,-0.47451,1.4234,-0.094088 -2.4409,1.0193,2.4352,0.56547,-0.065746,-0.82235,1.0065,-0.20654,1.625,-0.51174,0.5843,1.0401,0.49146,0.17375,0.40415 3.3586,2.8494,0.42907,-1.4799,1.5968,-1.6885,-0.09356,-1.7113,-0.21526,1.8253,0.0040459,-0.84823,-0.66878,-0.72039,-0.1688 0.65128,1.1306,0.53465,1.6826,0.9866,-0.46728,-0.97443,-0.96084,1.0941,-1.7762,-0.47502,1.5254,1.6787,-0.16735,-1.4305 -1.1212,3.0459,0.74128,0.92144,1.8637,-1.4894,-0.90543,2.1878,-0.26466,0.4632,-1.0015,-0.46714,0.70568,-0.65272,-0.14631 -2.1313,2.1254,2.0526,0.084101,-0.64882,0.082627,0.82192,-0.098374,0.48017,1.1395,0.4709,1.003,-0.5671,-1.4114,1.04 4.8871,-1.0257,-1.6747,-0.74028,1.7621,2.0896,1.9722,-0.71963,-0.29204,0.48091,0.63635,-0.62199,-1.1997,0.68087,0.49947 0.60008,2.7474,-0.11317,-0.87828,-0.81119,0.78543,-0.79224,-0.99511,0.1781,-0.99261,1.0603,0.64611,-0.079799,1.3259,-0.038581 0.37831,4.1415,1.536,-0.66703,-0.89519,0.72242,0.18341,-0.25898,-0.93111,0.6179,-1.4408,0.53592,-0.20786,-0.06962,-0.14134 -0.96883,2.5569,2.3958,-0.040953,-0.76827,0.26202,0.22195,-0.62608,1.129,-0.39642,-0.36461,1.5371,0.4629,0.26001,0.91184 2.2231,3.027,2.1645,-2.5346,0.32592,-0.58653,-1.2281,0.73988,-0.70098,-1.0971,-0.19437,-0.2534,-0.75123,-1.4226,0.063857 -2.5116,0.76195,-1.9368,0.58975,-0.41573,1.2406,1.5063,0.40642,1.6861,-0.014515,0.48044,0.59405,-0.61076,0.53965,-0.6708 -0.77479,3.2454,0.06148,0.34714,0.32991,-0.50975,-2.245,1.3799,-0.70973,1.4916,0.092046,0.18662,0.33224,-0.57151,-0.95376 3.5791,2.1417,1.229,-0.66862,0.75614,-0.062527,-0.79084,0.34355,1.2605,0.21393,-1.5514,0.22968,-1.7316,-1.291,-1.6149 0.27618,-0.45238,3.5731,-0.31891,-0.083587,0.9426,1.0947,0.89797,2.0799,-0.59006,-1.3711,0.87195,-0.09637,-1.3889,-0.23928 -2.2607,2.4039,0.65988,-1.2109,-1.0872,1.5982,1.9663,-1.3516,-1.3119,0.73457,0.44925,-0.73184,-0.82315,-0.45308,0.0018335 0.48568,2.751,1.2301,1.4766,0.69293,0.37755,-0.53935,-1.6024,-0.5399,0.63352,-0.66093,0.23999,-0.80842,0.4315,0.49012 -3.4356,0.92922,1.2503,-0.39878,-0.41469,0.81653,1.249,-0.80297,0.62767,-0.61843,1.5489,1.3526,-0.33385,0.66061,-0.37833 -1.9855,2.8081,0.61321,-0.19362,0.36928,0.49033,-0.36648,0.38743,-0.12878,0.60706,0.44528,0.71823,0.097987,1.0676,-0.87029 -0.14537,1.0436,0.70272,1.7133,2.9516,0.18735,-1.0025,-1.287,-0.20757,-1.9764,0.7164,-0.38049,0.45168,1.1464,-0.093828 0.59332,0.2842,2.7651,2.0514,0.69111,1.1105,-0.091476,-0.5958,1.3147,-0.56511,-1.4797,0.72524,0.1716,-0.12738,0.4294 -2.2201,1.7359,1.7192,-1.8627,-0.50819,0.88485,2.3259,-1.0135,-0.38048,-0.042772,-0.64693,0.066114,-0.1391,-1.4954,0.6884 2.7115,2.9271,-1.1075,-1.6303,-0.32181,0.60016,-0.45379,-0.32463,-0.097567,-1.9899,-0.39159,-1.1018,-0.824,-1.0052,-1.0544 -2.1229,-0.49354,0.31324,-0.18703,0.90738,-0.015694,-0.41778,-2.1457,1.0804,1.9926,0.60345,0.49398,-0.65108,0.44667,-0.35444 3.4924,0.80715,-2.2969,-1.7275,2.7197,0.80613,1.7371,-1.5513,-0.99583,0.81787,0.14646,-0.15411,-1.4824,-1.1958,-0.17766 1.2672,3.5199,-1.2174,-0.64114,0.40548,0.10814,-1.4718,0.2024,-0.030802,0.58237,-0.47615,-0.80934,-0.51682,-0.69001,-0.6737 1.3108,3.3238,0.38077,0.1501,-1.8314,-0.8835,-1.8399,-0.52804,-0.82758,0.63646,-0.2658,0.31244,-0.25989,-0.31036,-0.26249 -2.0478,-1.4513,1.139,1.9938,1.1198,0.27688,0.73341,-0.48056,1.232,0.42796,1.0916,-0.92517,-0.3505,0.38021,-0.4815 -2.935,-0.40831,-3.5391,-1.3163,1.2239,0.24356,-0.55186,-0.59896,-0.051615,-1.9516,-1.8016,0.76031,-0.80206,-0.331,0.31189 -3.5737,0.20121,-2.2812,-0.67597,1.166,1.2714,0.46228,-1.9752,-0.60053,-0.23464,0.20718,0.27404,-0.082739,0.08396,-1.3805 2.6425,2.3386,-0.96266,-1.4435,-0.97527,0.93368,-1.7642,-0.69382,-0.36399,0.27521,0.57873,-0.49037,1.1999,-0.65487,-0.97705 -0.34921,2.4637,-0.87008,1.4893,-0.31658,0.30519,-1.1354,-0.27538,1.3997,0.16919,-0.49913,0.88511,0.29068,0.35684,-0.2393 -2.728,0.41853,-1.0842,0.50655,-0.078793,0.39479,1.9793,0.98877,1.5907,-0.26212,-0.22924,-0.64445,-1.0422,0.86554,-0.5759 1.0948,1.6059,-2.444,0.06227,2.0044,2.0739,0.76257,0.6201,-1.5878,0.092892,0.35924,-1.3676,-0.60843,-0.11868,0.90168 0.20684,-1.1899,2.1796,2.8113,1.7772,1.7664,-0.44883,0.69736,-0.30696,-1.0733,1.2891,-0.43283,0.066639,1.6598,0.66681 1.0591,2.0339,1.1985,-2.0529,-0.1027,0.41979,0.032794,-0.91921,-1.061,-0.46275,0.33,0.37337,0.48201,1.7464,0.80991 -2.9928,1.0267,-0.67992,0.31552,-0.82056,0.93907,1.0167,1.4616,1.0122,-0.74921,0.54474,-0.42902,-0.45851,0.84707,-0.93539 -3.4466,-0.40727,-2.3561,-1.0436,0.13992,-0.17124,-0.31372,-0.0038652,0.93198,-0.89708,-0.3437,-0.37273,-0.1623,1.2356,-0.88055 -0.24875,0.86306,0.22492,2.0366,1.2411,1.2418,0.037228,1.7633,1.6486,-0.13703,0.7874,-0.3797,-0.18989,1.3015,1.1288 -0.2943,1.2784,1.125,2.2096,0.97423,0.98531,-0.89168,-0.72715,0.98668,-0.63549,-0.59124,0.47544,-0.19512,-0.69856,1.4138 -1.7788,2.843,2.0902,-1.2253,-0.41854,1.0314,0.89963,-1.5126,-1.19,-0.67277,0.46998,0.012565,-0.17719,-0.17554,-0.14285 1.1752,-0.24327,3.27,0.94002,0.674,0.52819,0.20151,-1.6363,1.3647,-0.25526,-0.45954,0.68141,-0.57291,-0.19027,-0.21765 3.1532,-0.57202,-1.2776,-1.187,0.97609,3.9383,0.16012,0.083603,-0.83952,-0.47105,-0.75729,0.69937,1.8224,2.0479,-1.2555 2.1083,-0.24106,3.3851,-2.7816,-1.2277,1.8105,-0.1117,1.8907,0.066785,-0.23085,-0.18667,0.59678,-0.95502,-0.14071,-1.38 0.26439,-2.0105,4.2131,0.30707,2.0302,1.1009,1.9406,-0.55614,0.72493,-0.92885,-1.7821,0.50607,-0.22089,0.23078,-1.4423 2.3686,-0.12582,4.642,-2.0303,0.23216,0.98969,0.51697,0.80648,1.297,-0.5983,-1.3414,0.81992,-1.1313,1.5596,-0.89892 0.94093,2.8134,-2.6023,-0.21441,-1.1804,0.99075,-0.044403,0.49874,0.17816,-0.06762,-1.4007,-0.055789,0.21959,-0.62188,-1.6645 -1.8381,0.17154,2.6602,-0.053337,0.3573,-0.87781,1.3844,0.47712,1.8153,-0.1452,0.018408,-0.30248,0.9211,-1.436,0.14228 -0.70957,-0.85972,3.8722,0.73053,0.65682,-0.2642,1.3704,-1.6032,1.1968,0.71536,-0.3611,0.39551,-0.32641,0.45377,-0.16234 0.85825,0.35304,1.3777,0.56342,1.5773,1.0924,0.97001,-0.49331,0.039078,-0.84019,-0.51464,0.50967,0.6333,-2.0917,1.1529 2.7129,2.7307,1.168,-2.3358,1.2645,-1.5288,-1.6035,-0.45642,-0.96556,0.82712,1.8689,-0.6496,-1.2198,-0.35693,0.57898 3.1231,-1.3296,-2.2079,0.30029,0.52902,2.9043,1.3883,0.62156,0.6077,0.94595,0.77275,0.45898,-1.4968,0.21588,0.3563 1.0012,2.109,-0.8153,-0.99545,0.11691,2.2097,0.052982,-0.49893,-0.23146,-0.48066,0.77541,-1.1477,-0.0046805,0.23217,1.0892 0.54483,-2.0634,3.5704,-2.5595,-0.099763,1.5231,1.4606,-0.06408,1.4896,0.89622,-1.3561,-0.56097,-0.67442,1.1039,-1.0971 -0.076354,-0.61487,3.7519,-1.9516,-0.70715,1.5716,-0.016577,0.63338,0.99491,0.11989,0.0347,-0.077423,0.61306,-1.2318,-0.65402 -1.6301,-0.41485,2.2964,1.5,0.3267,1.0446,0.21954,0.83344,1.976,0.41376,1.2545,-0.16596,-0.77555,0.9695,0.58293 2.072,2.1576,-1.4325,1.3907,-0.1878,0.72956,0.00073465,-1.4896,0.09327,0.54428,-1.7247,-0.671,-0.81631,-0.57982,-1.2622 2.0509,1.9142,-0.10439,-0.32803,2.4259,-1.236,-0.28246,-2.1027,0.80022,1.2191,0.14511,-0.073442,0.34036,-1.2958,0.067629 2.0036,4.3623,-0.21613,-2.2519,0.46882,-0.17121,-1.4361,-0.84848,-0.61155,-0.30762,-0.039898,-1.0252,-0.34805,-0.27143,-0.62327 -3.1248,0.49789,-0.28462,-0.36432,-0.77633,-0.99409,1.4053,1.0979,0.72212,-1.1773,1.1885,-1.1227,-0.40098,-1.0531,-0.16066 -3.8042,-1.6249,-0.39384,-1.93,1.3471,-0.64837,-1.1993,-0.098327,1.0989,-0.9845,-0.38994,0.17462,-0.60085,1.5593,0.40249 0.739,2.886,0.73481,0.5605,1.0151,-0.73518,-0.7271,-0.057594,0.43141,0.31742,-1.6526,0.53736,1.4951,-1.7456,-0.96517 -0.26232,1.7355,3.9181,-1.1981,0.79822,0.52177,-0.62727,1.0412,-0.79392,-0.29582,1.0424,0.50284,-1.0298,1.8699,-0.018087 -0.082301,-0.27636,1.5462,-2.5856,-1.3227,2.6592,1.6326,1.0256,0.46567,-1.0528,-0.40675,-1.1557,-0.18012,1.097,0.21621 -3.6339,0.75447,-2.4887,-0.94965,0.70216,0.80879,2.0282,0.3123,0.28453,-0.039588,-1.3722,-1.1392,0.57579,0.70508,-1.1769 -0.51753,0.60713,3.6953,-0.5408,1.013,-0.95455,0.67089,1.7335,0.30487,0.046045,0.42336,-0.013505,0.69431,-2.2882,0.51576 3.3898,3.1728,-0.49273,-3.6071,1.3026,-0.028352,0.32989,-0.32056,-1.7297,-0.60412,1.1781,-1.4846,-1.3207,-0.66322,0.029165 -4.1488,-1.055,-2.112,-1.6319,1.2334,-0.6479,-0.88641,-0.042077,0.039175,-0.64104,-1.1563,0.3087,-0.19891,1.0778,-0.035441 2.2679,-0.63314,-0.3743,-0.18892,0.40589,3.3192,-1.1634,0.37315,-1.2268,0.15969,-0.75631,0.81932,3.2391,1.6686,-1.3979 -2.1187,-3.4362,0.15187,-0.046089,1.7781,-0.2266,-1.3546,0.20588,1.5477,0.33459,-1.6994,-0.87368,0.10128,1.6938,1.4473 2.5427,0.26582,0.039735,0.55076,1.5391,0.75486,-1.147,-2.2139,1.2753,-1.2997,-0.36354,0.34053,0.89682,-1.0778,-0.48138 -2.6928,-2.5714,0.84581,0.216,1.9686,-0.54068,-0.4885,-1.8789,1.3919,0.26546,-0.77002,-0.42836,-0.02968,0.4515,0.42196 -3.9097,0.21298,-1.4977,-1.3632,1.1451,1.2797,0.014684,-1.5787,-0.5491,-0.59414,0.43516,0.29689,-0.036694,-0.011184,-1.1351 -1.6742,-3.7242,0.1903,0.63173,1.9502,1.2188,-0.63111,-0.091983,1.1559,0.34024,-1.1897,-1.2299,0.6092,1.7677,0.6952 -2.4954,-1.8049,0.72207,-0.29223,0.64797,-0.0019153,-0.50968,-0.61105,2.57,0.14618,-0.26126,-0.52541,0.30161,0.74418,-0.007227 -2.4695,-2.827,0.20147,-0.42053,0.71476,-0.30644,-1.1284,-1.1634,2.0435,0.55399,-1.262,-0.28885,0.24776,1.0342,0.24046 -3.2272,1.1165,-0.12089,-0.53903,0.21959,1.9632,1.4895,-1.0237,0.52851,-1.0729,1.0721,-0.15399,0.12729,0.22611,-1.5496 -3.7837,-0.36831,0.068498,-1.7915,0.58523,0.55465,0.11836,-1.6989,0.20734,-1.1718,0.19901,-0.48545,0.85473,0.080457,0.067906 3.8752,-0.77427,-1.6931,-2.7962,-0.25375,0.095326,2.7215,1.8232,-1.9668,0.36319,0.7671,1.968,0.25017,-1.8101,-0.054077 -3.3851,1.3818,0.045852,-0.43121,-0.38244,0.84569,1.0619,1.0141,0.88125,-1.2844,1.1141,0.061878,-0.2095,-0.384,-0.33426 0.055768,4.0743,-1.3052,-0.48746,0.74731,1.1329,-1.2947,0.58226,-2.3934,-0.10985,-0.21398,-1.3092,-0.50768,-1.0575,-0.72308 -1.6354,1.5005,1.7825,-0.099054,-0.53964,1.4627,-0.14289,1.0016,1.3896,0.73084,0.96852,0.29655,1.1132,1.1376,0.16526 1.6709,1.8112,-2.1412,1.1239,0.26567,1.8326,0.18469,-1.9235,-0.088631,-0.98028,-1.181,-0.37812,-0.23817,0.0049489,-0.99153 -3.3698,0.51391,0.18117,-0.17717,-0.25421,0.68884,0.65752,0.11978,1.712,1.0207,0.66761,-0.48092,0.9663,0.91351,-0.2571 -0.79669,1.2319,2.3879,-0.26164,0.18463,0.0020984,-0.094661,1.1202,1.5167,-0.88396,0.99042,0.70666,1.3005,-0.085809,0.81993 2.4791,-1.1235,-2.5815,-0.68708,-0.020262,3.0494,1.3647,-0.51786,0.23927,-0.81396,0.24006,0.66375,-0.32185,-0.85726,0.81819 2.9881,-0.97784,0.70347,1.5968,1.6219,1.8319,0.019544,0.74834,-0.27999,0.11144,-0.75167,1.695,1.7134,1.33,-1.0614 3.0609,0.0015046,0.2038,-0.14739,3.0112,0.69549,-0.77517,-1.966,0.25721,-0.55469,0.84594,0.9925,1.4493,-0.45009,-0.086572 -2.8036,2.1994,1.6458,-0.10151,0.48047,1.5326,1.1662,0.68094,-0.52668,-1.4,0.4175,-0.67658,0.75788,-1.0339,1.1816 -2.7917,0.78314,0.14049,0.50166,0.86312,-1.9746,1.6091,1.9737,1.145,1.2623,-0.29529,-0.95232,0.19391,0.0020269,0.61149 0.078304,1.4973,0.84023,0.96971,0.64152,-0.68929,-1.341,1.7132,1.6617,-0.88536,-0.77277,0.70663,2.0086,0.10401,0.088021 -1.9303,0.93318,1.2066,1.0818,0.31976,-0.23375,0.47923,1.7346,1.9421,-0.13066,0.64628,-0.60466,0.39524,0.07458,0.29892 0.43111,0.10967,1.9792,1.4605,0.72941,0.36014,-0.38831,1.9874,1.9105,-0.41685,-0.031788,0.49636,1.2955,0.2894,0.61629 -1.5481,1.9728,-0.08483,1.49,-0.065474,0.37498,0.91934,-0.455,-0.15917,1.1133,0.12034,1.5014,-0.37681,-0.80743,0.61074 -0.32936,0.13905,1.4969,0.48328,-0.78887,1.4352,0.069887,1.2287,2.3979,0.28913,0.097963,0.23651,1.4071,0.56788,1.1692 1.6983,1.7561,-1.4513,1.3251,0.11119,1.5942,-0.83227,-2.0572,0.2572,0.11419,-0.038205,-0.60125,0.31382,0.38615,0.080699 -3.2319,1.7889,-1.2317,0.32082,-0.23436,1.6202,2.3744,1.7134,0.11863,-0.79326,-0.62358,-0.45842,0.03924,0.25675,-0.24078 3.1343,2.0193,1.0979,-2.8662,0.24261,-0.010804,-0.85948,0.06693,0.39519,-2.0997,-0.53064,0.73674,-0.21204,-0.85657,-1.3926 0.51523,2.6557,1.1483,-0.4142,0.25037,0.027581,-1.7864,-0.20836,1.2653,-0.85434,-0.1885,0.93709,1.6412,0.47451,0.2422 0.43389,2.9003,0.43846,0.51842,0.61767,-0.60382,-1.5244,-0.61864,1.55,0.043975,-0.16116,0.96633,1.3006,0.86174,-0.52847 3.9207,-0.64874,-0.66935,-1.4243,1.5345,2.6031,2.0372,-1.6105,-0.91404,-0.32117,0.87111,-0.045772,-0.0086856,-0.83103,1.1055 3.1378,1.3738,-0.049132,-0.62913,1.4538,0.30745,-0.8954,-2.3157,1.0868,0.94204,1.1162,-1.3118,-1.3807,-0.12125,0.93971 3.3965,1.1075,-0.0078608,0.18324,0.53368,0.95059,-0.37659,-0.67897,1.401,-0.088218,-0.97957,0.0026243,-1.8553,0.50261,-1.6891 2.8782,0.84634,-2.2612,-4.4197,0.25858,0.6123,1.2862,1.9106,0.13014,1.1987,1.4087,1.1376,-0.20706,-1.1827,1.1062 -2.9901,0.24206,1.6134,-2.7117,0.42893,0.080151,0.7809,-2.1578,0.005473,-0.18768,-0.12546,-0.73237,0.93953,0.41012,-0.031798 0.63728,2.5454,2.2727,-1.2608,0.92484,1.0845,0.47539,1.1109,-0.27679,-1.7433,-0.21641,0.03033,1.0286,-1.8356,1.2745 1.9254,2.6024,-1.5297,0.19806,0.23748,0.11808,-1.2838,-1.4908,0.58658,2.2196,0.35687,-0.98769,-0.49922,-0.021106,-0.28968 -1.1506,-2.2981,2.7428,-1.6244,-0.28609,0.56864,1.1786,-1.0587,1.6433,0.0079894,-1.4273,0.45584,0.48702,-0.71668,-1.9127 -2.3102,2.5821,0.43412,0.2311,-0.21475,1.1766,0.62493,1.3556,0.52953,-0.30943,1.2843,0.20385,0.17786,-0.11904,0.09619 -1.6185,0.26834,-2.5104,-1.2379,0.70906,1.514,0.96625,-2.2331,-0.99797,0.61477,-0.72387,-0.31308,-1.5475,-0.0092721,0.0019432 -3.5128,-0.2658,0.067947,-0.93248,1.0123,1.2702,1.0657,-1.309,0.39276,-1.4042,0.39763,-1.379,0.37102,-0.81543,-0.25352 0.73182,3.6471,0.78576,-1.1009,0.33484,0.12983,-1.7446,0.0032658,0.037893,-0.60795,-0.45165,0.30325,1.0682,-1.2364,0.42268 0.98409,1.8913,0.28561,0.12495,0.95455,-1.0379,-1.4125,1.1282,0.96088,-1.3448,-0.29562,0.01595,2.332,-1.5601,-0.76915 -0.49653,2.548,-0.54746,1.3137,-1.5376,1.9499,0.36491,0.025757,-0.92541,0.033322,-0.64966,0.053326,-0.13611,-1.1695,0.57446 1.9893,1.8045,-2.0663,-0.99253,0.17583,1.3518,-0.86124,-0.71536,0.54037,-0.59873,0.99949,-1.4206,0.87167,-1.3031,0.11153 -3.1061,1.6659,-0.13164,-0.19303,-0.86761,0.78335,1.6023,-0.093775,0.29221,-0.34404,0.70513,0.83722,0.77764,-0.84216,0.52419 -1.4771,1.7437,1.6017,-0.66187,0.73599,1.0152,0.1006,0.7471,-0.19189,-0.015379,2.1836,-0.011291,-0.54066,1.5139,-1.0844 0.026801,0.87775,2.2644,0.94582,0.88603,0.48007,-0.92844,-1.8767,-0.80393,-1.4277,1.1791,0.64112,-1.1527,1.8746,0.74148 -2.7149,1.7,-0.21314,-0.075565,-0.48141,2.104,1.8918,-1.0928,-0.043331,-0.26257,0.5567,-0.52358,0.58304,-1.0208,-0.1415 -2.5979,1.0605,-1.6855,-0.77283,0.10468,1.2447,1.7237,-2.061,-0.58063,0.76666,-0.29988,-0.30981,0.43323,-0.80603,-0.45743 -1.5137,1.1613,2.0625,0.009187,-0.98087,0.11065,0.80837,0.49768,1.4565,-0.40202,-0.50009,0.39451,1.3223,-1.4135,1.2278 -2.9973,1.5082,1.075,-0.97665,-0.017135,0.84998,1.7622,-0.99979,-0.58704,-0.31045,0.60694,-1.1584,0.68147,-1.7671,0.58068 -3.254,-0.27721,-4.0899,-0.96293,1.5338,-0.98842,0.395,-0.29833,-1.0397,-1.1559,-2.6485,0.23579,-0.32455,0.020011,0.44504 -2.2212,3.2016,-0.53384,0.20375,-0.35765,1.7919,1.5053,0.44692,-0.59298,0.032708,-0.20226,1.0891,0.59517,-0.93783,0.46796 -2.2742,2.8091,1.5108,0.79248,0.25507,0.46047,0.89815,0.0046805,-0.3591,1.0653,0.37433,1.1633,-0.77181,0.55593,0.1718 0.036389,2.4098,-0.15669,1.583,0.018151,0.13912,-1.0966,-0.65814,1.3706,-0.11849,-0.053973,1.4109,0.59987,0.27143,-0.74455 1.133,3.1256,0.054735,0.94419,1.1321,0.55724,-1.2539,-0.33168,-1.3223,1.0152,-1.3835,-0.79048,-1.4948,-0.70098,0.17397 -3.1896,0.26232,0.12602,-0.72184,-0.8953,0.47024,0.68868,-0.20233,1.1672,0.49722,0.37448,-0.38446,1.1401,-0.61892,0.24893 3.0342,2.0287,2.2302,0.38614,2.4363,-0.68252,-0.93741,-1.2262,0.46709,0.60927,-0.71369,0.45084,-0.3629,-0.97596,-0.92032 2.4887,-1.3024,0.69021,1.1404,2.1429,1.8306,-1.6477,-0.017744,0.68609,-1.5337,-0.34788,0.87055,1.8557,0.57002,-0.24357 -0.22041,-1.6732,1.837,1.6678,0.13769,1.9183,0.69623,0.55927,1.3977,-0.93529,-0.57043,-0.016496,1.1205,-0.82623,0.14312 -2.2602,0.27912,1.3573,-1.0093,-0.15199,-0.46504,2.3712,-0.79958,0.76201,0.62025,-1.1383,0.17846,1.6874,-1.362,-0.62442 0.68977,0.48854,1.3305,2.0624,0.85581,-0.38652,-2.0407,0.76998,1.841,-1.0147,-0.85975,0.39493,1.0268,0.16482,-0.22183 -1.6639,-0.3102,2.1319,-0.64437,-0.86249,0.7465,1.2063,-0.85964,1.7709,-0.43105,0.010763,0.30697,1.2676,-1.0653,-0.45493 1.5822,-1.1289,3.379,1.4011,1.402,2.4515,0.8724,0.19693,0.85292,-1.0579,-1.0417,0.63422,0.88377,0.30583,0.20786 0.41073,2.1965,-1.2933,1.3318,3.2587,-0.9448,-1.4085,0.58868,0.14721,-0.048101,0.74295,-0.37493,-0.20908,-0.48843,-0.98291 1.0783,2.3392,-0.49793,-2.6535,1.0933,-0.40677,-1.7655,-0.026174,-0.16895,1.0354,2.7914,-0.12271,1.0821,-1.4551,0.40642 -3.6311,0.51722,-0.61758,-1.2581,-0.17336,0.69498,1.1405,-0.4472,-0.068988,0.68483,0.1827,-0.12213,1.499,-0.61089,0.084438 -2.1197,-1.4577,-0.34704,-2.3548,-0.27105,1.1713,-1.9447,-1.5023,0.035213,0.19578,-1.5118,0.96102,0.29959,1.5756,1.167 -3.333,0.11101,0.92051,-2.5303,0.40035,0.26375,0.22326,-0.99313,0.065224,-1.2225,0.17229,-1.1175,1.2336,-1.0276,0.48014 1.8738,1.9249,1.5902,-0.7246,1.008,-0.36853,-2.2739,0.0055819,1.8884,-0.35181,-0.34376,0.3776,1.3629,-1.07,-0.41739 -1.3156,2.2448,-0.47189,2.448,0.4033,1.0086,0.012765,0.33194,0.67096,0.15672,-0.19221,1.0129,-0.74197,0.29182,0.20539 -3.2582,-1.508,-2.3512,-1.6427,1.5024,0.10237,-1.6306,0.34186,-0.22,-2.3827,-1.3379,1.3055,-0.7247,0.32689,1.3222 1.1727,0.70665,2.0212,0.52049,1.3173,-1.7979,-1.2802,1.7136,0.34262,-1.0458,-1.547,0.49243,0.74177,-2.5795,-0.79793 2.7632,-2.7595,1.5998,-3.0179,0.84526,0.77404,0.85123,0.61908,-2.4132,0.79059,-1.3215,1.8525,-1.0732,3.561,-1.2045 0.043785,1.9934,1.8343,0.12257,0.5051,-1.6096,-0.97469,-1.1274,-0.12658,0.28986,0.81339,0.63069,-0.088837,2.2923,-0.3714 -3.9668,-0.61061,-2.1496,-1.7563,0.32659,-0.89761,-1.0194,0.061183,-0.2447,-0.68099,-0.67162,0.071454,0.4121,-0.1332,0.17898 2.16,-0.58318,-1.7737,-1.2415,1.1564,2.3054,2.5254,-0.23927,-1.3099,-0.043149,-0.45939,1.3546,-0.57381,-1.7268,0.47838 -1.7909,-2.0745,1.9911,-1.0781,0.16241,0.31434,-0.41425,0.23705,2.1877,0.19204,-0.99325,-1.0451,1.4311,0.4299,-0.056071 -2.5222,0.45608,-1.7871,0.53842,-0.60128,2.3636,0.84322,0.88012,1.1216,0.27479,0.50643,-0.22861,-0.71249,-0.14356,-0.79616 2.8715,-1.5475,-3.0329,-0.45286,0.035175,3.0119,0.93138,0.81941,0.1964,-1.5752,1.5552,0.0090882,-0.17622,-0.40181,0.15805 -3.7186,0.29355,-2.5105,-1.5101,0.72695,-0.069735,0.20748,-0.5085,-0.12831,-1.1878,-0.42659,0.26568,1.1069,0.4167,-0.051978 2.3091,-0.52641,-0.034045,1.5114,1.236,1.6473,-1.2853,-1.5197,1.356,-1.0491,-0.37117,0.075733,1.171,0.5065,-0.55813 -3.505,0.58245,-1.8175,-0.59874,-0.3462,1.1059,0.67268,0.099763,0.66803,0.12292,0.39658,-0.4816,1.0892,0.30444,-0.14371 -1.7806,-2.697,1.2754,-0.96746,0.49842,-1.1315,-0.92211,1.0681,1.4872,0.47308,-0.94047,-1.0997,0.59477,0.070725,0.47937 -1.4859,-2.8765,-0.77911,0.39948,1.0045,-1.3336,-0.79667,-0.32785,1.0808,0.4385,-1.8541,-0.2187,0.69869,-0.64615,0.18601 3.5755,1.0016,-0.43843,-0.096297,0.56345,-0.36067,-0.1221,-1.2778,2.0399,-1.4382,-0.65289,-0.28265,-0.8849,-0.7333,-1.9449 -3.8783,-0.57659,-1.1851,-1.4159,0.76514,-0.94369,-0.25326,0.39592,1.2976,-0.61496,-0.48898,-0.6089,-0.49982,0.3912,-0.54498 -2.727,1.3183,0.17867,0.98678,0.0090779,0.43315,1.1039,1.2928,1.1132,0.15987,0.38875,0.82704,0.58517,0.67053,-0.023362 1.1443,-0.99218,1.8035,-2.8218,0.38535,1.1253,1.5087,1.962,1.2211,-0.20384,-0.69452,1.3353,0.15676,0.39167,-1.5137 -2.098,-1.7089,-0.18295,-1.6039,0.10955,-0.74303,-0.97865,0.2616,1.1922,0.60315,-1.1511,-0.54612,1.2112,-0.64081,0.77974 0.26455,1.7959,0.58513,1.9062,2.8569,-0.85613,-1.5013,0.71121,0.19044,-0.38431,0.022551,0.49813,0.49796,-0.16975,-0.42686 1.4118,3.166,-0.83466,-0.69196,-0.49598,1.5894,-1.3767,-1.1557,-0.50539,-1.4477,0.039903,-0.46504,0.53527,-0.20296,0.13929 1.4877,1.9404,1.5237,0.98141,0.40345,0.39105,-1.2269,-1.637,1.0451,0.00041494,-0.22084,1.4293,-0.28887,0.44004,-0.23362 2.7133,2.5329,0.23799,-1.897,0.26127,-0.8939,-1.2003,-0.6685,1.5795,0.19026,-0.76953,-0.19433,-0.67758,-1.2374,-0.91656 -2.1036,4.0502,0.33867,0.27862,0.64852,0.03321,-0.19655,2.0321,-0.57261,-0.33945,-0.26919,0.73773,-0.094008,-0.15568,-0.44205 2.0979,2.9261,-1.6601,-2.8463,0.033271,-0.088049,-0.83342,-0.15537,-0.09235,-0.26403,1.0088,-1.3052,-0.92127,-1.4377,-0.11917 0.33286,2.4256,-1.7728,0.096576,-1.0143,1.6434,-2.057,-0.19848,0.42803,0.033607,0.59192,-0.068699,0.39448,0.1113,-0.92973 2.9574,0.67173,-0.049807,0.4517,1.8782,0.41768,0.89177,-2.0771,1.0873,-0.72704,-1.0428,0.76556,-0.63943,-0.34498,-1.842 -1.324,4.361,0.52049,-0.29801,0.49558,0.93558,-0.37374,0.094858,-2.416,0.23097,-0.32126,0.70348,-0.0071102,0.53245,-0.87424 -2.4649,-1.3707,-0.031913,1.9931,0.52431,0.96717,0.77223,0.67039,0.61366,-1.5568,0.22884,-1.0844,-0.9606,0.71327,0.9903 1.2224,0.67403,1.0126,-0.016312,-1.0271,1.6856,-0.20978,1.0099,2.3854,-1.0025,-1.1248,1.3512,0.24799,-0.059097,0.18772 -0.85878,2.003,-1.4408,2.383,0.80662,0.89289,-0.62803,0.41249,0.44394,-0.34096,-0.32158,0.95109,-0.13006,-0.57398,-0.023809 -0.87905,1.6468,-0.19127,2.8725,0.53802,0.035562,0.37642,1.081,1.513,-0.54965,-0.30437,0.22512,-0.10934,1.1047,0.73307 -2.2978,1.0312,-0.3641,1.9571,0.44311,1.2162,1.4696,-0.53664,0.066152,0.63403,0.2676,-0.18421,-0.021387,-0.1162,0.98656 -2.8941,-0.98616,-1.4213,1.5213,0.65095,-0.27395,1.0501,0.37649,1.1659,0.63353,0.012467,-0.67195,-0.24461,0.61071,-0.21812 2.0493,-1.9057,2.9828,0.93656,1.9685,2.9468,1.6482,1.1074,0.13857,-1.9638,-1.6844,0.30054,0.13699,-0.81542,0.65823 -0.32815,3.1949,0.46192,0.18126,-1.6708,1.8254,-0.041363,-0.06078,-0.32248,0.45063,-0.67392,0.54968,0.28241,1.0517,0.51475 -0.66835,3.9402,0.16095,-0.0011026,-0.822,1.7946,-0.96037,0.51043,-1.5326,0.18224,-0.92371,0.28162,0.76349,-1.082,0.39664 -2.267,0.097948,0.71726,1.1919,-0.37316,-0.20028,0.73055,0.49656,2.2825,-0.29703,0.8479,-0.0404,-0.66428,-0.28556,0.68661 -3.1751,-0.82244,-2.0625,0.53837,0.55442,-1.3024,1.0438,-0.1649,1.0191,0.24541,-0.041672,-0.15279,-0.55311,0.79564,-1.1938 1.5102,2.1965,-2.6091,-1.3633,-0.77772,0.79045,0.3126,-0.0785,1.0121,1.6067,-0.41792,-0.31454,0.45476,-0.47492,0.067277 -2.9383,0.75987,-0.68153,0.40073,-1.1078,0.64254,0.61878,1.5087,0.97382,-0.95706,0.5097,1.2097,0.050253,0.65099,0.28051 -1.1509,2.7739,-0.67691,1.019,-0.28122,-0.38514,-0.88246,1.9118,1.0807,-0.51209,-0.38749,0.37285,0.425,0.00090582,0.56948 -2.2257,1.1106,0.64047,-0.67134,-0.3541,2.3901,0.47352,0.54769,1.093,-0.74211,0.87149,-0.29388,1.4233,-0.077252,0.51988 -2.5935,2.3671,-1.0261,0.62488,-0.61154,1.9687,1.0119,1.019,-0.42105,0.086672,0.44376,0.375,0.73766,-0.88202,0.66234 -3.1885,-0.96695,1.4958,-2.066,1.4603,-0.91385,0.24755,-0.70476,0.63258,1.5473,-0.10084,0.0080782,-0.093469,-0.77171,0.2536 1.9392,0.65956,-1.6458,0.77044,0.59793,1.679,-0.76387,-2.215,0.78733,0.46836,1.0325,-0.51884,0.35607,-0.72003,0.69868 -2.7179,3.2627,0.23767,0.25819,1.1624,-0.086244,0.68383,2.0201,-0.39052,-0.75484,-0.49461,1.1278,-1.2555,-0.0848,-0.77545 -3.0351,1.0833,2.6797,-0.74651,1.0183,-1.6326,1.4631,0.47537,0.097012,0.4661,0.17497,0.38762,-0.065645,-1.647,0.86079 -2.149,-1.0277,2.3299,2.046,1.7645,-0.49206,1.1168,0.51401,1.0629,-0.88093,0.11273,-0.44511,-1.1835,-1.2426,1.7571 0.62159,2.9326,2.1088,0.13831,2.6553,-1.8156,-0.88611,0.8992,-0.11267,-0.0011245,-1.3575,0.22535,0.7905,-0.90777,-0.46688 -2.1733,3.1821,1.1203,0.263,0.77294,-0.96465,-0.71454,2.0091,-0.11297,-0.73018,-0.18324,1.0332,-0.32917,-0.67451,0.55367 -1.1237,3.0857,1.0044,1.4541,2.5223,-1.6253,-0.91816,0.89682,0.26412,0.18295,-0.63808,1.1653,-0.67447,0.096873,-0.23285 -3.1928,1.8509,1.8347,-0.62181,0.56281,-0.51397,1.1451,0.68131,0.39024,-0.6103,0.81663,-0.51869,1.0687,-0.18537,0.6613 -3.5007,1.2029,-1.8577,-0.16997,0.61861,2.2537,1.4489,-0.47535,-0.68701,1.1095,0.44789,-0.33037,0.095692,-0.72778,-1.6208 3.5113,-0.10485,0.241,0.42091,2.0403,0.43694,-0.26803,-1.2162,1.2685,-0.74078,-0.50361,-0.5818,-0.51097,-1.2305,-0.74411 1.3055,0.83152,2.4986,1.7469,1.4454,0.66598,-0.75106,-0.024025,1.6619,-0.54858,-0.60706,0.41838,0.023966,-0.74964,1.6595 0.94298,2.2708,-1.468,-2.5309,-0.69457,0.50925,0.8743,0.22607,-0.72955,1.2705,0.69741,0.46371,-0.82795,0.69832,0.57871 0.91551,1.8264,0.87033,-1.0414,1.4588,-0.35094,-1.2335,0.93376,1.417,-0.26824,1.0356,1.2612,1.0512,-0.89236,1.2378 -0.46798,2.6584,-0.40335,0.59414,-0.66316,0.35137,-1.2303,-0.91105,0.76117,0.78212,0.11873,1.0497,0.25942,0.35302,-0.66407 -1.6944,2.6779,-0.45139,-0.059465,-1.4902,1.0052,1.2533,-0.29603,-0.036731,0.14277,0.35217,0.56196,1.1245,-0.43071,0.64418 1.8071,0.91819,2.4966,1.8508,2.296,0.3671,-0.47262,-1.889,0.73024,-0.68596,-0.94846,0.80202,-0.51609,-0.072297,0.71446 0.099016,0.68386,3.0139,2.0698,1.4272,-0.43644,0.34865,-0.43952,1.2841,-0.2252,-1.0781,0.78142,-0.51701,-1.4255,1.652 2.3327,1.2569,-0.6987,-0.66638,0.51796,-0.96244,-1.0255,-1.2186,1.5567,1.377,1.188,-0.65487,-0.79495,-0.9022,0.58412 4.7586,0.95532,0.31051,-0.49151,3.8104,0.04169,1.257,-2.1483,-0.84298,-0.88568,-0.96698,0.087818,-1.2816,-0.88545,-1.6982 -2.9163,0.7696,-2.721,0.12287,0.46127,1.6214,1.7491,-0.1024,0.36364,0.53055,-1.4487,-1.0219,0.20056,0.67042,-0.7247 4.0571,0.58233,-0.55609,-3.4609,1.5577,-1.1879,0.70728,0.60039,1.9592,0.35491,0.83131,0.52025,-1.1258,-0.29098,-0.099032 -0.18238,3.7088,0.35545,0.14476,0.09342,-0.32963,-1.3998,0.59138,-0.56233,1.9378,-1.2353,0.78808,0.1558,-0.8614,-0.35847 -0.73984,2.1989,0.96348,2.4038,1.8801,-0.91212,-0.48856,0.19911,0.35895,0.73519,-1.0147,1.3272,-0.47204,-1.253,0.75737 -2.0359,3.4845,0.78426,0.49095,0.00211,-0.34752,-0.49684,1.4339,0.029011,-0.23187,-0.052387,1.4748,0.29466,-0.48177,0.24351 -3.2224,2.3209,-0.30978,0.32251,0.29128,1.8499,2.3892,-0.54854,-1.1641,0.42377,-0.0027949,0.47741,-0.099313,-0.052731,-0.61639 -0.026808,2.6783,1.2719,-0.48838,-2.3322,0.48675,0.062186,-1.4113,-1.8462,-1.7578,-0.21586,0.17897,-0.83653,-0.23202,0.38001 0.96199,2.1045,3.9003,-1.5986,-0.65802,0.38679,0.19673,-0.34292,0.38948,-0.24033,-0.2029,0.52755,-1.1944,0.054197,0.77665 1.0233,1.8919,2.2071,1.5004,1.8483,-0.94113,-1.6788,-0.46186,1.3874,0.07863,-0.40873,0.63478,-0.16805,-0.91634,0.27077 -1.1942,2.4322,2.7844,-0.97754,-0.72589,-0.0041422,0.3721,0.25837,-0.35968,1.1668,0.4021,-0.16214,-1.0069,-1.5876,0.95782 -4.1251,0.026269,1.4562,-1.5696,0.65754,-0.69058,1.015,0.23283,0.61975,-1.2726,0.59313,-0.67482,0.42833,-0.17159,0.55512 2.7056,1.8708,1.926,-0.60025,2.9829,-1.4371,-1.0523,-0.51219,0.22606,0.97106,-0.28079,-0.37038,0.064547,-1.2321,-0.47905 2.3788,1.8373,-2.2774,-0.82693,-0.69018,-0.23785,-0.20522,-0.88774,1.0937,0.75364,0.072924,-1.1455,0.45638,-0.33311,-0.10321 -0.57546,2.9576,1.9015,1.0797,1.344,-1.3449,-1.2459,1.2648,1.0465,-0.57002,0.23052,0.90394,-0.23608,-0.44155,0.23506 0.68982,3.7303,-2.1647,-0.33864,-0.73362,1.6443,-0.64722,-0.62094,-0.90651,0.33122,-0.75281,-0.71675,0.52873,0.61679,-0.54063 -3.4871,1.4988,1.3763,-0.59796,-0.22467,0.64106,1.0166,0.64552,0.33175,0.3605,0.88798,1.1118,0.045441,-0.26141,0.5608 -4.4106,-1.3404,-0.38974,-2.0917,0.97328,0.55376,-0.074734,-0.77728,0.67199,-1.5415,0.27906,0.10021,-0.60797,0.77715,-1.1202 4.2088,1.0591,2.2768,-2.1468,2.4339,-0.84957,-0.034673,-0.6379,0.80418,-0.27457,-0.064018,0.97454,-0.0030214,-0.19122,-1.4732 -3.8224,0.83878,0.99492,-1.4911,0.16035,0.63033,0.79866,-0.31964,0.62811,-0.09239,1.4937,-0.22578,-0.03641,-0.7975,-0.52367 -4.3028,0.28094,-1.074,-1.9268,1.4999,0.37857,0.69612,-1.8288,-0.3756,-0.49839,0.50926,0.63782,0.031148,0.68061,-1.3355 -2.2709,1.3752,3.1694,-2.79,0.093493,1.5524,0.61632,-0.24142,-1.5848,0.42238,0.40856,-0.87699,-0.81821,-0.36918,0.32832 -0.91583,1.99,-1.8536,1.7281,-0.43532,0.42515,-0.89601,0.68309,1.3488,0.18905,-0.066565,0.77749,-0.00040948,0.060382,-0.87882 4.0416,-2.3215,0.050948,-2.4346,3.045,0.33581,2.1627,0.37895,1.4853,0.31235,0.82632,3.1655,0.081756,-0.18564,0.032553 -1.091,2.9467,-1.1945,0.41073,-1.512,1.5022,-0.87114,0.8943,-0.55664,0.93747,-0.46968,1.2725,0.68833,-0.02775,-0.083726 -1.1436,-2.4991,0.40909,-2.5119,-0.46195,0.56752,-1.2272,-0.65577,1.0919,-0.35943,-2.2504,0.49703,0.66636,-0.11802,-0.22303 3.3129,1.4973,1.0312,-1.312,2.4951,-0.90944,-0.94999,0.20881,-1.3296,1.2659,1.9851,-0.089207,0.52948,-0.57136,-0.62018 -3.1134,-1.7378,0.58547,-2.293,-0.073771,-0.47181,-1.7188,-1.1883,0.37181,-0.57413,-0.21155,0.50717,0.44629,0.50145,0.24346 -1.0127,-2.0336,1.7999,-1.6895,-0.24687,0.51327,0.09452,-0.30909,2.6462,-0.31631,-1.0693,-0.67756,0.8709,0.45749,-0.34375 0.59168,3.0463,0.34992,0.29582,-0.35993,0.11138,-1.7519,-1.1584,0.96605,-0.21497,-0.3511,0.61624,0.31193,0.059143,-0.43706 -1.4955,-3.1349,0.80835,-1.6317,0.46511,-0.46776,-0.89138,-1.0903,1.7996,0.1224,-2.1906,0.55947,0.62423,-0.12104,-0.22306 0.6257,3.0772,1.2451,1.7294,1.7945,-0.02354,-0.22565,-0.6333,-0.75502,1.7395,-1.8135,0.82977,-0.058089,-0.65093,-0.64577 -2.7359,-2.3128,1.0512,-2.0008,-0.010823,-0.40017,-1.5992,1.0714,1.1128,-0.46197,-0.65013,-1.3401,0.99597,0.27623,0.74843 -2.5445,-2.2809,-1.8751,-1.0806,-0.60561,-0.66341,-1.4602,0.5375,0.67844,-0.9982,-0.93999,-0.448,-1.4064,0.61396,0.57152 -0.72376,-2.3331,1.3624,-4.3657,0.23082,1.492,0.099249,-0.35558,-1.3714,-0.45664,-1.901,-0.17953,-0.39244,1.6857,-0.5983 -1.8191,-2.6659,1.4397,-1.2778,0.13095,0.24367,-1.486,1.0998,1.3711,0.57449,-0.92684,-1.2353,0.74438,1.6814,1.0793 -2.6204,-1.4959,0.83531,-1.1117,-0.27139,-0.16857,-0.63659,0.28199,2.207,-0.17917,0.070998,-1.0667,0.32696,0.2657,0.64182 -2.7275,0.61363,1.0643,-1.7732,-0.73281,1.6488,0.36158,-0.78057,0.64903,-1.096,0.76243,-0.44153,0.57026,-0.55377,0.078965 4.1274,-0.50263,0.46209,-0.71465,0.20611,0.79127,1.3834,1.6731,-0.83514,0.23081,-0.71402,1.463,-1.4401,2.8843,-1.3148 2.0132,1.4477,-0.80867,-1.3668,1.2359,0.48027,-0.00049922,1.4174,0.923,-0.44876,-0.69552,1.5492,0.89258,-1.3102,-1.2793 3.5181,-0.20024,0.33624,0.61502,3.2663,1.1151,0.029969,-1.7691,0.45567,-0.20486,0.10161,-0.16426,0.91197,-0.14518,-0.50328 -1.3688,2.21,-0.76677,1.6605,-1.1124,0.90482,0.0012964,0.263,0.30966,1.4558,-0.14172,1.5744,-0.5199,0.69311,-0.16008 2.2508,1.2213,1.6735,-1.3168,0.96163,-0.23201,-1.949,-0.094727,2.1495,-0.12904,-0.61879,0.76379,0.57708,-0.12271,-0.058165 3.5578,-1.9685,-0.055861,0.71312,2.1764,1.9486,-1.0664,-1.6855,-0.92453,0.16129,1.6246,-0.037521,0.89505,0.017308,0.39261 -3.7837,-0.063843,-0.30435,-1.5922,0.56059,0.18721,0.24614,-2.1956,0.14675,-0.055667,0.20129,-0.17627,1.102,0.83481,-0.34346 0.48403,2.9033,0.3268,0.59167,2.2112,-1.1045,-1.6695,-0.52924,1.1552,0.41816,0.19765,0.78591,0.14778,-0.21089,-0.63129 -3.0615,1.2204,1.3938,-0.70274,0.20004,-0.1444,1.0618,0.67358,0.89675,-0.77944,1.0483,-1.0243,1.0699,-1.5738,1.1039 -3.2203,0.88492,-2.153,-0.94349,-0.34765,0.95018,0.82898,-1.2382,-0.41324,0.34847,0.27958,0.13853,1.4682,0.56833,-0.86145 -2.6441,0.98048,2.0756,-1.2879,0.27455,-1.0544,0.93506,0.675,1.4431,0.033829,0.47473,-0.78701,0.85332,-1.6072,0.81692 1.9835,-1.3841,3.295,1.3104,2.5694,1.074,0.63794,1.2431,0.47696,-1.4571,-1.4092,0.77488,0.37,-0.93869,0.76512 0.27862,3.4926,0.083657,-0.32011,2.4665,-1.8576,-2.1682,1.294,0.33667,0.64736,0.31415,-0.78854,0.99526,-1.247,-0.56761 -1.1459,1.8434,2.4668,-0.64699,0.54827,-1.2943,-0.37907,2.5305,0.60829,-0.95325,0.24633,-0.16918,0.40958,-1.6879,1.5107 0.95369,-0.85043,2.8546,1.4114,1.9944,1.4633,0.69798,1.4858,1.1896,-1.0918,-1.0224,0.42329,0.68178,-1.0036,1.3236 -2.9997,1.304,-1.3348,0.58821,-0.31673,-0.3954,1.7095,0.92001,1.1434,0.55691,0.19003,-0.3488,-0.090997,-0.23311,-0.14794 -0.39608,-0.089357,3.7464,-1.8947,-0.49278,0.45808,1.02,-0.53574,1.7512,-0.50046,-0.29533,0.058695,-0.049351,0.44579,0.043956 -1.5991,2.1356,-2.008,0.50049,-1.0962,0.36931,-0.74897,2.1504,0.73342,-0.4005,-0.31511,0.19745,-0.1365,0.026461,-0.30526 -2.6432,-0.94383,1.3995,-1.5786,-0.027411,-0.18361,0.19206,0.08978,1.5917,-0.7509,0.2058,-1.8016,1.3853,-0.73951,0.79389 -0.036618,-0.66214,2.7585,0.31206,1.0569,1.3617,1.603,0.19447,1.6354,-0.69956,-0.46443,-0.86913,0.838,-1.3224,0.60026 -0.58067,1.374,2.4011,-0.82569,-0.10575,0.53479,0.3647,0.34437,1.2558,1.4265,0.26935,-1.046,-0.33271,-0.66761,0.5806 -1.9073,0.9151,2.826,-1.7286,-1.0914,0.62912,0.63605,-0.2318,0.89199,-0.25191,0.18779,0.38766,-0.27146,-0.93283,1.2394 -2.1841,0.31946,-3.6423,-0.44439,-0.32953,0.43475,0.31658,-0.0099418,1.0173,-0.56756,-0.62282,0.34036,0.50632,0.74443,-0.82193 -0.96543,-0.0066832,3.6682,-0.44968,0.27857,-0.78798,0.57765,0.72992,1.099,-0.059346,-1.1254,0.9549,-0.066855,-1.4739,1.2541 -1.9115,-0.092715,2.1642,-0.24666,-0.30753,0.44739,0.15656,0.15456,2.3283,0.40409,1.2167,-0.10115,-0.1499,0.48789,0.51448 -2.5684,-0.91958,1.9821,-1.1896,0.57622,0.00043844,0.0046608,-0.2066,1.7895,0.74869,1.0512,-0.36647,-0.45519,0.075327,0.4294 0.85677,0.93803,-2.2063,1.2139,1.2599,0.55513,-0.89353,-0.99616,1.2539,0.54284,1.3779,-0.25108,0.86171,-1.3537,0.33166 -2.0883,0.67775,3.0476,-1.021,0.26495,-1.1809,0.83441,0.52663,1.4083,-0.12459,0.61939,-0.22322,0.57272,-1.0811,1.1356 0.42928,2.7214,0.43244,0.22885,0.11566,-0.11194,-1.7972,-0.55504,1.5512,-0.33702,-0.47116,0.80137,1.3532,-0.64467,-0.053341 -0.40509,1.098,2.0428,2.2925,1.243,-0.74016,0.14977,-0.79642,1.0119,-0.46775,-1.1467,1.4467,-0.43755,-1.1288,1.3952 -0.49585,2.0436,1.5373,1.7368,0.89207,-0.99208,-0.22842,-0.096311,1.6869,0.0008527,-0.019207,1.7049,0.071563,0.30277,0.32256 -1.0501,2.6051,-0.73437,1.5898,0.5119,-0.3061,-1.3685,1.8481,0.96601,0.46797,-0.77976,-0.052834,-0.18521,-0.48139,0.06437 -2.3165,1.6624,1.4967,0.45147,-0.25645,-1.3579,-0.11167,2.1159,0.61065,-0.41782,-0.64911,0.95265,0.34741,-0.83605,1.2123 -1.1049,0.3213,2.3095,0.93116,0.32961,0.27413,-0.02881,0.38014,2.2636,-0.049957,0.96281,0.72102,-0.67323,0.34143,1.246 -0.17132,3.6967,-0.92927,-0.46066,-1.2981,1.2538,-0.08673,0.32203,-1.2043,0.91443,-1.79,0.2366,-0.1475,-0.21583,0.11123 2.6391,2.4169,0.29445,-1.6244,0.47492,-0.23427,-1.9544,-1.4832,1.1037,0.6692,0.86153,-0.18914,0.22263,-0.73499,-0.3487 -2.0638,1.7691,2.2589,0.55397,0.68901,-1.5634,-0.2512,1.3773,1.0208,-0.62749,-0.23788,1.6971,-0.64639,-0.8516,1.2133 2.9875,-0.59104,-1.2794,0.34258,1.8143,2.1765,0.025405,-0.88527,-0.59457,-0.45343,0.32755,0.014022,-0.30834,-0.63987,0.39671 3.7882,-0.33507,1.7068,-0.5934,2.1892,-0.020559,-0.98528,0.27217,1.6516,0.34107,-0.91534,1.4716,0.60626,-0.67231,-0.49219 -1.0952,0.45683,2.6898,0.48117,0.19056,0.00061086,-0.54168,1.1572,2.2369,-0.13906,0.35399,0.84215,-0.21371,-0.2829,1.5899 1.2469,2.1308,1.9315,-1.5462,-0.78618,0.32237,-0.95421,0.18537,1.2489,-0.93149,-0.76412,1.0249,-0.66462,-0.57589,0.6545 2.4453,-1.1529,-1.8073,-1.8764,0.60264,0.81842,2.2811,-0.093782,-2.2369,0.54927,-1.8161,3.2706,0.30699,-0.75743,0.47121 2.738,-0.85236,0.3911,1.1664,-0.037503,3.09,0.98237,0.68248,0.56439,-0.096138,-0.9582,1.3942,0.41533,1.3932,-0.71064 -2.2432,0.94225,1.3851,-0.80696,-0.84462,-0.039335,0.73272,0.91373,-0.052615,0.75998,0.22574,0.7751,0.00061294,-1.9234,1.41 -2.4455,-0.81716,1.9866,-0.16225,0.60622,1.0909,0.45806,0.46302,2.1547,-0.035635,1.2747,-0.84556,-0.2185,0.48327,0.78842 1.3141,1.6128,3.9469,-1.1466,1.7468,-0.35293,-0.19076,0.71893,0.35972,0.090073,-1.5075,0.7842,0.21905,-0.20084,-0.53057 0.45429,2.5797,3.2701,-0.84589,0.55277,-0.12522,-0.84645,0.18831,0.92165,-0.49775,0.026443,1.1184,-0.075767,0.83204,0.74754 1.998,1.5501,-0.050948,1.4591,3.3032,-0.0015281,-0.71333,-1.0616,0.38528,0.87877,-0.53471,-0.17253,1.3741,-1.2225,-0.8965 0.65546,2.6892,2.2379,0.3451,0.024731,-0.50421,-0.30733,0.26636,0.86102,1.1164,-0.72603,0.61646,-0.89781,-0.94802,0.9307 -1.1526,1.9325,1.3085,0.4905,-0.82269,1.148,-0.66093,0.55943,0.91557,-0.23971,-0.36728,1.5891,0.0036869,0.69723,0.91616 0.85215,1.6438,2.9416,-0.52846,0.046009,0.19143,-1.2539,0.72001,0.73115,-0.35433,-0.30376,0.51669,-0.5582,0.76445,1.3815 -0.6337,0.37528,3.4992,1.01,1.3587,-0.27074,-0.13161,0.82728,1.3557,-0.12839,0.73714,0.63837,-1.0709,0.096029,1.876 3.6352,2.4307,-0.66802,-1.5661,0.62796,-1.0429,-0.48393,-0.40588,1.205,0.76732,-0.42543,-0.64142,-1.1687,-1.396,-1.5503 -0.38287,2.6614,1.8345,-2.568,0.15879,0.23606,-0.66733,-0.31377,-1.8302,-0.70436,0.97275,-0.24758,-0.89049,2.0249,0.21929 3.5033,0.17647,2.4274,0.80347,2.3186,0.61218,-0.52633,-0.0029718,0.36507,-0.12924,-1.4322,0.17877,-0.77052,-0.85366,0.19546 -1.1217,3.3214,0.54711,-0.50996,-0.40286,1.2718,-0.23229,0.56522,-0.38508,1.3406,0.85392,0.14493,0.75054,0.20394,-0.62332 3.1246,-1.343,-2.5758,-0.38689,-1.1765,0.92039,1.5863,-0.52312,0.86793,0.59397,0.81213,0.99455,-1.7993,-0.43281,1.0633 2.6587,-1.0481,-2.4149,-1.2542,0.58057,1.0174,0.88374,-1.7943,-1.0504,-0.25216,0.60281,1.9711,0.63317,0.5354,0.31605 -0.48467,-0.10256,0.47926,-0.23887,-1.1085,0.74601,1.4003,-1.3748,1.7699,1.4703,-0.40356,-0.26758,-1.6305,-1.6691,0.13117 -0.96944,2.3639,1.8432,-0.19923,-0.046191,-1.526,-1.0696,1.7085,0.21006,-0.36247,-0.078583,0.55476,0.10756,-1.7059,1.4839 -3.5992,1.2046,0.85889,-2.1683,0.71125,0.89093,0.61945,-0.76824,-0.65993,0.024753,0.92495,-1.0208,0.24462,-1.1067,-0.29962 -1.2371,-2.2828,1.5462,1.8917,1.1784,2.4383,0.54895,1.0218,0.15657,-1.8227,0.1183,-0.67155,1.0378,0.83449,1.7102 -1.2725,0.11557,2.6665,-0.31989,1.1414,-1.1199,0.99181,-0.098752,1.6285,1.2949,0.039282,-0.66195,-0.23615,-1.7024,0.68456 0.20978,2.4858,-0.50444,0.75013,1.3487,-1.1713,-2.7342,0.81736,-0.33187,0.48718,1.4562,-0.13529,0.041208,-0.51208,-1.3527 -2.3662,1.5986,2.4242,0.14452,1.006,-0.41594,0.84603,0.31002,-0.14922,0.30844,1.566,0.33756,-1.0134,1.7606,-0.81711 1.944,0.57821,2.3878,0.15175,0.90754,-1.3014,-1.5786,-0.22412,1.8499,-0.74833,-1.0495,0.19419,0.23333,-1.2988,-0.49097 0.073277,3.3313,-0.99211,0.084164,-0.91062,1.2665,-0.90295,-0.13575,-0.34055,0.85757,-0.84689,0.1614,-0.20416,0.13165,-0.4129 -1.8813,0.65304,2.6746,0.13581,0.64394,-0.30546,0.155,1.7046,1.8326,-0.95297,1.5015,0.25497,-0.81171,1.0957,0.49489 -1.7098,2.6942,-0.77374,0.59993,0.021558,1.5381,1.199,-0.2307,-1.3508,-0.44889,-1.0399,0.14613,-0.87598,1.2617,-0.63722 -2.1414,1.4367,2.1625,-0.89353,-0.85595,0.55351,1.2282,-0.99561,-0.21968,1.6135,0.71947,0.60708,-0.3433,0.48221,0.15145 -1.0023,2.7588,2.2803,-0.80635,-0.87143,0.30606,0.94965,-0.35062,-0.055768,1.4067,0.63237,0.60749,-0.49915,-0.27792,0.66788 -2.0341,-2.0546,-2.2789,1.5454,0.53868,0.36906,-0.2942,-1.0734,0.6632,-0.29504,0.13205,-0.11825,-0.30031,-0.68393,-0.15381 -0.022566,1.7138,3.3687,1.6894,1.1632,-0.16779,0.3775,-0.77756,1.0582,0.80467,-0.12652,0.84106,-0.72249,0.27775,0.64321 -2.8712,-1.9861,-0.66749,-1.5585,1.6046,1.4048,-1.0633,-0.2794,-0.63459,-3.1534,-0.42171,0.30367,-0.10175,0.88586,0.075833 -0.99048,1.4683,2.8162,1.3328,1.2979,-0.34378,0.36091,0.11605,1.3518,0.26845,1.1321,0.53767,-0.81304,0.29271,0.64007 -1.9616,0.093635,2.519,0.23191,0.52479,-0.051542,1.0108,-1.9737,0.75181,1.1469,0.83112,0.13413,-0.92398,0.44414,0.49676 -2.7937,-0.015439,1.4148,0.15556,0.4347,0.41702,0.7196,0.75009,1.8037,-0.80702,1.3603,-0.233,-1.2696,0.955,0.050469 -3.2402,0.42221,-3.5747,-0.69926,-0.11224,-0.044484,0.85489,0.034966,-0.44628,-0.94038,-0.40256,-0.48394,0.61148,0.38112,-0.67169 -1.3363,-1.9798,2.3214,1.9191,1.7635,1.2447,0.25169,0.97991,-0.11961,-2.9838,0.15554,-0.721,0.075097,-0.078193,1.7072 -1.8857,-0.46783,2.0436,0.45506,0.69003,0.32166,0.84993,-2.4047,1.2126,1.4102,0.75685,-0.47946,-0.58817,0.45926,-0.33361 4.1581,0.14751,-1.3057,-0.22314,0.95652,2.0043,0.37749,-2.122,0.21716,-1.088,0.24509,-1.3115,-0.28557,0.080733,-0.68314 -3.348,0.79001,0.89561,-0.57798,0.045688,-0.14897,0.53747,-0.080108,0.69022,0.63815,1.5797,-0.20237,-0.13736,0.72073,-0.9787 -3.3826,0.056313,0.85751,0.64594,1.6617,-0.60106,1.0011,-0.89887,1.0165,1.556,0.84389,-0.47936,-0.81832,0.67157,-0.68825 -1.0469,2.0867,3.8716,-1.2144,1.8988,-0.85571,0.16154,1.4858,-1.0192,0.050479,0.5262,0.038359,-0.74284,0.55965,0.41965 -3.1712,-1.7707,1.0827,-0.42611,0.38064,0.68587,-0.25855,-0.62146,1.9635,0.53019,0.7449,-0.45211,-0.47083,1.9555,-0.41783 -2.2699,-0.1841,1.1164,1.2446,0.88433,0.52376,1.3227,-1.866,1.2043,1.4692,1.25,-0.044512,-0.80251,0.21375,-0.022715 3.9536,-1.1015,-0.59544,-3.7303,0.19001,0.11273,-0.22058,1.804,0.15406,2.0654,2.2643,0.7963,-0.75993,0.061806,0.7387 -0.98019,1.531,-0.75945,2.7429,0.51521,0.040407,0.22807,-0.63233,0.26026,-0.68579,-0.045903,1.3226,-0.37565,0.83435,-0.21543 1.3401,3.9981,-1.0819,-1.958,1.2324,0.86114,-1.4835,-0.38085,-1.4396,0.30067,1.152,-1.538,0.91655,-1.1584,-0.05898 -1.7798,1.0653,2.2856,-1.8695,0.043321,1.6217,0.68702,-0.22414,0.095187,0.43389,1.2293,-0.59308,0.3868,2.0862,-0.31403 1.7645,2.8046,-1.4052,-0.26522,-0.64249,0.37703,-0.83945,0.12958,0.55063,0.47299,-1.4128,-0.7501,-1.3822,-0.98469,-1.1872 -1.4522,1.6511,0.54774,-1.6576,-0.59157,2.5564,1.2894,-0.56676,-1.0077,0.073145,0.58216,-1.8397,-0.16483,0.44711,-0.1487 -3.4693,0.13096,-1.7729,-1.2929,1.2894,1.4359,-0.12814,-2.1707,-0.93962,-0.63114,-0.50033,0.81242,0.037205,0.72629,-0.50139 -1.2151,0.68944,2.751,-0.94243,-0.33216,0.55279,0.42178,-0.71328,1.6189,0.52327,0.68352,-0.060386,-0.12307,1.1071,0.52209 1.0825,3.3486,-0.31484,-0.55491,-0.15139,1.7945,-2.1727,-1.6683,-0.62224,-0.99339,0.88148,-0.44699,0.66195,0.068006,-0.74318 0.71873,0.20796,2.6644,-0.48081,0.66995,-1.294,0.32818,1.4095,1.9387,-0.17993,0.27671,0.45978,1.0009,-0.052362,0.82886 4.1758,-0.27671,-1.6638,-0.93721,2.1773,1.4941,1.6874,-2.0043,-0.51234,-0.36131,0.30206,-0.92412,-1.1425,-0.92689,0.49091 -4.2437,1.3705,0.24478,-1.7983,1.2221,0.21291,0.65709,-0.28598,-0.39085,-0.35715,0.72799,-0.87334,0.82395,0.065543,-0.6798 -1.2996,2.7445,-1.5536,1.7606,-0.68136,2.2014,0.25136,0.97745,-0.82252,-0.13771,-0.3484,0.58594,-0.60336,-0.54762,-0.64545 0.17946,0.9694,1.4575,0.46028,-1.9153,1.9388,-1.2253,-0.28925,0.892,-0.18259,-0.67628,0.93156,-0.32235,1.0806,0.81491 2.2904,1.2431,0.82177,0.28902,1.0895,-0.3652,-0.68862,-0.46875,2.2315,-0.71722,-1.4314,0.94525,0.62125,-1.05,-1.5682 -0.72634,3.1956,-0.55131,0.62285,-1.3168,2.35,0.62819,0.43728,-1.3314,-0.33474,-0.64321,0.0013372,-0.68586,-1.1996,0.56654 -3.1289,-2.2272,-0.17902,-1.4671,0.88074,0.16159,-1.841,0.34865,1.194,-0.21376,-0.90704,0.2393,-0.20342,2.1365,0.47442 -2.9341,-0.73419,1.506,-1.5781,0.44262,0.10404,-0.7256,0.6471,1.5754,-0.13841,0.28324,-0.85904,0.43661,0.93872,0.45202 -3.4233,-0.43208,-2.3196,-0.67065,0.44037,2.0117,0.34152,-0.27907,0.34881,-0.81314,-0.23686,-1.3322,0.15479,0.33733,-1.21 2.8564,-0.17168,3.291,-3.6234,3.009,-0.59002,1.7444,3.4566,-1.6498,0.060791,0.93835,1.4552,-0.21756,0.20675,-0.90194 -2.2206,-0.99756,2.5413,-3.9452,0.90076,1.1496,-0.81722,-0.26738,-0.73584,-0.67513,-0.79392,-0.8834,0.43694,0.63625,0.43936 -3.8972,0.813,-0.17613,-1.1626,1.2663,-0.47201,0.55562,-0.68521,0.58441,1.1665,0.3805,-0.41019,0.57242,0.32741,-0.90912 1.8678,2.0286,3.0937,-1.5231,-0.33905,0.94001,-1.3358,0.75638,0.73144,-0.77281,-1.1777,0.34905,-0.15077,-0.91294,0.96583 -3.1495,-0.27791,0.86056,-2.1713,0.23679,1.934,-1.4252,0.2859,-0.43102,0.010197,-0.41747,-0.30916,1.2385,2.2297,-0.66992 -2.084,-0.69858,2.3376,-1.8237,0.71063,0.88654,-0.58462,0.33829,1.228,-0.2383,0.99685,-0.4195,0.32374,2.2432,-0.26992 -2.756,-2.0159,1.5789,-1.1291,1.1074,-0.79575,-0.92805,0.54998,1.8346,-0.19972,-0.17334,-0.86535,-0.10183,1.5825,0.26395 3.5131,-0.17263,-1.5746,-1.8347,1.6139,-0.32678,2.3766,1.4187,0.17771,2.6726,0.26147,2.11,-1.3224,-1.3092,-0.2907 1.1003,1.5812,2.1937,-0.49836,-1.2897,1.2652,-1.5895,0.30743,1.1832,-0.18878,-1.0459,0.79851,-0.47652,1.254,0.65666 2.785,2.5421,0.60721,-0.066734,1.1544,-0.19377,-1.2998,-0.59927,0.78235,1.1839,-1.2155,0.15461,0.40832,-1.6108,-1.27 -1.9459,1.6719,-1.5333,0.76098,-0.38879,-0.32884,0.53211,2.1304,1.0116,-0.65058,-0.00052614,0.074139,-0.07705,-0.6702,1.2845 0.10888,2.1013,2.9077,-1.5492,-1.0265,0.4977,1.6254,-0.66631,0.19076,-0.56551,-1.0763,0.67906,-0.82367,-0.78644,0.21536 -1.4866,-0.96784,-1.3938,0.71931,-0.20859,0.78623,0.0384,-1.9992,1.568,0.2609,-0.047384,0.49677,0.92972,-0.21203,-0.52659 -2.6548,1.525,-0.94967,0.62224,-0.72453,-0.47553,0.98139,1.8522,1.1842,-0.12175,0.10066,-0.016163,0.0013189,-0.48062,1.1156 3.057,1.6338,-1.1494,-1.7865,0.50711,-0.113,-0.34611,-0.019554,0.87399,1.5275,0.40851,0.26387,-0.50235,-0.10252,-0.17185 -2.7466,0.52739,-3.696,-0.69009,-0.64811,0.70129,1.1141,0.53335,-0.19669,-0.60259,-0.59543,-0.75998,0.93827,0.47141,-0.67767 -3.5362,0.47977,-1.6703,-0.9113,0.36936,-0.76111,1.8788,1.214,1.0338,-0.2119,-0.61835,-1.0211,-0.42812,0.2822,-0.69429 -1.7467,0.99088,-3.5168,1.042,0.076786,1.0656,0.93343,1.7276,-0.34912,0.2562,-1.1222,-0.38353,-0.34006,-0.6677,1.1468 3.0163,-0.72494,-2.8737,0.21339,-0.22859,3.0818,2.4123,0.14329,-1.3938,0.55771,-0.98516,0.35175,0.1731,0.38908,-0.026221 -3.5994,0.55844,-1.9324,-0.99091,0.59953,-0.68008,1.6934,1.7535,0.80976,0.068344,-0.44783,-0.85891,-0.31166,0.53303,-0.46347 2.4624,1.3656,-2.3676,-0.49036,0.34516,-0.067375,0.26842,-1.521,-0.017412,2.047,1.1507,-1.0698,-1.4351,-0.45444,1.5662 -1.1727,2.8036,-0.82809,0.97623,0.26157,0.3853,-1.4522,1.3149,0.50529,0.16122,0.42578,1.4483,-0.05849,-0.24787,-1.0009 -2.2801,-0.10811,-0.85971,1.7176,1.2723,0.45794,1.4936,1.2019,0.0066085,-1.9483,-0.75606,-0.64299,-1.5544,0.097705,1.9438 1.0143,-0.21854,1.9313,1.067,1.693,0.029511,-0.21545,0.87829,2.1156,-0.86436,-1.5052,1.2721,1.0289,-0.068684,0.67615 3.0541,0.78077,-1.261,-4.8866,2.3436,-0.1638,2.779,1.8367,-0.25573,0.20605,1.5768,1.8785,0.11149,-0.60119,1.5572 0.23989,-0.27823,0.12307,1.8144,2.5779,1.3782,-1.415,-0.86337,0.1895,-2.611,-0.65899,-0.097022,1.6464,0.41996,0.74595 2.8985,0.92632,2.674,-0.75865,2.1079,-0.25725,-1.2141,0.1136,1.0698,-0.52099,-0.49404,1.2291,0.99332,-0.53098,-1.0788 -1.2529,2.5682,-0.77399,0.734,0.34004,-0.47569,-1.5122,2.2691,1.2768,-0.48895,-0.038996,0.49559,-0.098992,-0.89834,-0.091336 1.7024,-0.3371,1.6841,-2.0074,-0.93112,1.0512,1.3742,3.1432,0.58086,-0.27817,-0.25149,1.228,0.52939,0.48379,0.02045 -3.248,-0.26551,-0.25932,0.1829,0.6251,-1.1472,1.2109,1.2418,1.8098,-0.1949,0.14137,-0.59201,-0.70703,0.45014,-0.0057838 -0.60784,2.1559,0.15192,2.0479,0.81349,0.2134,-0.78941,-0.05368,1.8285,0.44736,-0.25466,1.6681,-0.35809,0.3907,0.056505 -2.0015,1.5157,0.17484,1.8751,0.27391,0.73621,1.4537,-0.96319,0.40294,1.4713,0.52201,1.0928,-0.88339,0.47587,0.76776 -2.4653,0.75238,-1.1357,-0.037272,0.26586,-0.65491,1.2267,2.5001,0.13327,0.83704,0.27108,-0.91845,1.1146,-0.64577,0.84561 -1.9952,2.6878,0.52452,-0.048457,-1.535,1.5762,1.6875,-1.0138,-1.2208,-0.1628,0.33443,0.49979,0.29294,0.54299,0.40937 -0.0090319,1.4155,0.85891,-1.4735,-0.83247,-0.78024,0.21017,-1.7666,-0.88958,-0.51937,-0.039073,-0.41398,-1.2391,2.909,-0.080522 -2.3216,3.2569,0.53869,1.0083,1.6774,-0.46619,0.14564,1.3953,-0.66673,1.208,-0.26222,1.5031,-1.3213,1.5758e-05,-0.50073 3.688,-0.38171,-1.9644,-1.9329,0.49539,-0.19889,2.2481,0.097683,0.87779,1.0872,0.76051,1.5574,-1.6963,-1.6398,0.65196 0.73542,0.9911,-1.4364,-0.68505,0.12593,2.6492,0.38907,0.84628,-0.4728,-0.44778,0.57912,-0.67904,-0.36119,0.28795,0.81726 -2.501,1.9854,0.69159,0.098892,-0.21408,0.14933,0.88351,0.49631,1.4736,-0.11767,1.0588,0.14809,0.34958,0.2364,-0.41417 0.90861,2.3256,-2.9581,-2.6324,-0.013405,1.4285,0.036879,0.48459,-1.4201,0.65615,1.8271,-0.54011,0.37048,-1.2274,1.2844 -2.9882,0.31092,-3.4213,-0.9691,1.0608,-0.34913,0.86064,-0.80735,0.071059,-1.3706,-2.3717,0.073705,-0.077854,0.093844,0.36967 0.6366,2.8931,-2.1267,-1.743,0.061583,1.5499,-1.5452,0.27393,-1.2292,0.24231,0.98225,-1.5406,0.972,-1.2516,0.25337 1.2147,2.2818,-2.4257,-2.27,-0.66319,0.46004,-0.83705,0.073726,-0.18594,1.4962,1.6886,-0.35988,0.55713,-0.73452,0.69111 -0.82299,3.5136,1.2271,-0.38764,0.027975,0.65366,-1.0633,0.76712,0.22545,0.2496,0.010795,1.0462,0.69457,-0.51551,0.44472 -3.8084,1.6571,0.15709,-0.90092,0.42054,0.0020777,1.4176,0.12709,-0.77442,1.2549,0.72007,0.54051,0.14067,-1.1216,0.10515 0.82453,2.2625,-1.6046,0.093811,0.53232,-0.26272,-1.3898,-0.11522,0.50627,2.2331,0.5019,-0.36347,0.84498,-1.4228,-0.20563 -0.15125,3.4792,-1.2108,-0.21316,-0.8576,0.9905,-1.7437,0.11126,-0.70267,0.95303,-0.21311,0.34783,-0.2304,0.26424,-1.0511 -0.68618,2.8447,-1.4545,-0.33433,0.13349,0.3691,-2.3493,1.1696,0.57264,0.75399,0.52585,0.32912,1.0525,-0.65978,-0.9564 0.87799,2.2594,1.3634,-0.46905,-1.0755,-0.25894,-1.1592,-1.1365,0.51336,-0.93066,-1.0476,0.31796,-0.37709,-1.0136,0.04438 3.2186,0.37894,-3.1713,0.085172,0.7304,1.9894,1.3777,-0.26106,-0.94344,-0.22337,0.16255,-0.60096,-0.3182,0.4987,-1.2247 4.1382,0.6502,-0.4589,-3.3348,1.4974,-1.143,1.4972,-0.63277,0.52206,2.4406,1.3907,1.0466,-1.5481,0.25606,0.80943 1.5467,1.832,-2.0005,-1.0511,-0.48231,0.29459,-0.15704,-1.234,2.0306,0.25197,0.054945,0.11584,0.66609,-0.74622,-0.6097 1.7475,2.209,-1.5807,-2.8008,0.088732,0.8389,-0.92036,0.16553,0.46282,2.0367,1.2918,-0.46674,0.26141,-0.87397,0.95764 0.83245,2.5714,-1.571,-1.043,-0.5236,0.31877,-1.7718,-0.35725,0.23713,1.9752,0.90086,-0.29795,0.67809,-0.43202,-0.24127 4.195,-1.5215,1.8855,-0.02983,3.6292,1.2321,-0.81309,-0.94576,0.47083,-1.0139,-0.25771,0.29238,0.32802,-0.22306,-1.0798 2.534,0.45345,-0.16258,-2.3341,0.83964,0.3577,-1.0261,-0.13843,2.4329,-0.32669,0.18465,0.84588,1.5386,-0.99215,0.0026428 0.18519,1.3682,0.83499,2.5558,0.044178,1.9411,-0.67451,-0.88429,0.45106,1.3227,0.16619,0.090251,-0.70866,0.60689,0.43172 0.66846,2.3886,-1.5556,-2.5121,0.1469,0.56126,-0.96319,0.073206,0.37475,1.7629,1.4928,0.13528,1.1596,-0.9595,0.91347 -0.83026,1.5791,-0.14629,-0.15562,-2.2984,0.97856,1.7258,-1.1995,0.19126,-0.14887,-0.13369,0.14049,0.43208,-0.79539,0.14597 1.7304,2.8901,-1.3795,-2.5504,0.27864,0.76645,-1.2205,0.037301,-0.47302,0.67879,0.69942,0.0023022,0.78981,-0.75349,0.33225 4.0915,-1.2552,0.24168,0.02983,1.9773,3.2136,0.32803,-0.04025,-1.3219,-2.4508,-1.4957,0.3325,-1.4507,1.9611,-1.4671 1.8891,4.3015,0.54971,-1.49,-0.044328,-0.26331,-1.6002,-0.40291,-0.78906,0.75766,-0.7497,-0.49294,-0.44817,-0.6484,-0.57213 2.5245,-1.0965,0.79033,-2.1573,4.8319,-1.8575,0.79776,-0.60286,-2.4312,0.63386,1.9876,0.52887,-0.9499,0.15071,2.1503 1.1675,4.2569,0.035543,-1.4071,0.054428,0.7108,-1.4927,-1.5008,-1.4041,-0.94175,0.20772,-0.51024,-0.17668,-0.067319,-0.43809 1.1853,2.6868,-0.48896,-1.5416,1.5115,-1.0935,-1.5522,0.46578,-0.3818,1.5302,1.5969,-0.86896,1.4045,-2.0755,-0.051313 -0.6972,3.8333,-0.23071,0.63929,0.17162,1.5967,0.93855,0.96429,-1.8784,0.046566,-1.5824,-0.62227,-1.7608,-0.033265,-0.0037553 -0.3056,2.1844,-1.2023,0.5441,-2.0948,0.29782,0.33092,-0.94073,-0.18768,1.249,-0.72096,1.2821,0.25632,-0.02522,-0.0921 4.0641,0.21421,-1.9213,-0.63201,0.92066,0.21485,0.8896,-1.3386,1.6026,0.22787,0.65361,-0.64475,-1.9834,-0.016466,-0.20744 2.8699,0.24927,1.4322,1.0424,1.5168,1.4625,0.97179,-0.15668,0.29015,-1.9085,-1.9504,0.7487,-2.3113,-1.2749,-0.62269 -0.20464,2.1253,-2.4741,1.1378,0.26979,1.98,-0.30641,0.42951,0.082385,-0.62355,-0.43322,-0.83875,0.35913,0.27698,-0.57093 0.40541,4.0076,0.77343,0.03486,-0.40334,-0.053512,-1.6174,-0.72792,-0.37462,0.36272,-0.29595,0.81284,-0.8047,0.12068,-0.55721 4.5376,-0.72926,-0.66124,-0.70973,2.4012,2.2334,1.0773,-2.1358,-0.5375,-0.28729,0.52193,-0.79208,-0.041954,-0.24297,0.66502 4.6467,-1.6895,-1.7579,-1.5712,1.4394,3.0733,1.7371,-0.25243,-1.4024,-1.8696,0.26394,-0.22413,-0.40719,2.0844,-0.48797 -0.15086,4.2555,0.05618,-0.13299,0.38912,0.5286,-1.8831,0.033434,-0.56544,-0.1317,0.39917,0.81272,0.22083,0.52804,-1.3867 2.9627,1.5137,0.77609,0.017009,0.093036,0.25807,-0.69393,0.10457,1.3402,0.0065242,-1.8003,0.20454,-1.8602,-1.1194,-0.84936 4.047,2.3842,0.26955,-2.1794,0.35015,-0.41344,-0.29624,-0.29127,0.96849,-0.90007,-0.56052,0.36259,-1.3249,0.48769,-1.7016 -0.29693,3.9197,0.80283,-0.33256,-1.0514,0.83914,-0.23789,-1.1585,-1.0853,-1.2331,-0.47119,1.095,-0.37763,0.65991,0.016303 3.9027,-0.83403,0.033225,-2.0958,2.6756,-1.0529,1.0058,0.57072,0.3745,2.0408,1.0438,0.40114,-1.313,-2.0054,1.1741 4.0034,0.035824,-0.35904,-0.28624,1.5668,0.94327,0.030539,-2.5105,0.60219,0.4871,0.66053,-1.158,-0.42377,-0.35569,0.6807 1.5793,3.2448,1.4002,0.035276,0.25933,-0.26506,-1.326,-0.9299,0.19259,0.62857,-0.73164,0.47666,-0.074537,-0.18384,-0.2649 1.1966,3.1465,1.6286,-0.083254,-0.17772,-0.47999,-1.3962,-0.58919,-0.062417,0.95774,-0.68163,0.3956,-1.9128,-0.37862,0.1588 1.0072,4.2689,-0.048895,-0.96036,-0.44347,0.87007,-0.46783,0.36753,-2.2526,-0.97029,-1.2317,-1.5177,-1.658,-0.56882,-0.16997 3.3518,2.2931,0.195,-1.1154,0.74718,-0.25788,-1.2955,-1.1972,0.56147,0.96364,0.61846,-0.41687,-1.5565,0.73746,0.39924 3.5178,2.0593,0.87784,0.44363,2.517,-0.19005,-0.52868,-2.3137,-0.26648,0.054799,-0.89257,0.38065,0.1495,-0.82757,-1.4385 -1.5342,2.2697,0.42131,2.0101,0.035274,0.15788,0.88968,-0.44204,0.30685,0.54241,-0.029575,1.7941,-0.058535,0.58366,0.26209 2.0204,2.7811,-0.078222,0.23923,0.56766,0.32164,-1.4746,-1.8428,1.2216,1.2888,-0.25384,-0.026598,-0.047488,-0.02959,-1.0249 -1.7965,-1.1239,1.3545,-2.1788,-0.50591,1.0491,0.35162,-0.74268,1.5998,-1.1951,-0.48673,-1.1908,1.0248,-0.75175,0.02918 -2.4265,1.1419,-1.5604,1.0387,-0.60874,1.0349,1.6083,0.32289,1.1958,-0.14088,0.43235,0.51477,-0.80254,0.24157,-0.57047 -0.57168,2.1219,3.2108,-0.50454,-0.78253,0.91647,-1.374,0.42687,-0.22413,-0.57636,0.38822,0.8252,0.17309,1.6095,-0.057731 -0.67088,1.5026,0.14365,2.1265,-0.63806,1.236,0.44394,-0.97835,1.0177,0.090958,0.33081,0.97711,-0.23242,0.41134,0.9308 1.0686,-1.297,1.9954,0.75336,1.002,3.1124,0.83658,1.686,0.023253,-1.1888,-1.2233,-0.63117,1.9356,0.41886,0.55183 0.19245,0.10574,0.93969,0.84338,0.30667,0.94133,1.1173,-2.0789,-1.339,1.1653,0.27278,0.049676,-0.95812,-0.59452,1.1477 -2.0456,1.931,1.0675,-0.68278,-0.53329,0.15707,1.0316,-0.26485,1.302,0.57092,0.55381,0.20205,0.96957,-1.4319,0.57243 -3.2781,0.16769,-1.2851,-1.5,-0.13027,0.45051,0.23435,0.10018,1.0704,-1.5223,0.59512,-0.78345,0.69403,-0.67224,0.095406 -2.5972,0.83301,0.13622,0.0048237,-0.50774,0.0041558,0.91959,0.41738,2.324,-0.16787,0.59724,-0.12778,0.70199,-0.72924,0.40447 1.9339,2.192,0.78098,1.2738,1.427,0.81196,-1.5274,-1.3852,1.2475,0.22371,-0.091612,-0.17526,0.379,0.84044,-0.075743 1.5972,3.2909,1.4817,-0.25094,2.0965,-1.2887,-1.6635,-0.60694,-0.42482,0.74498,0.63315,0.16235,-0.12722,0.77637,-0.34764 0.321,2.0379,-0.73821,1.7366,-0.76637,0.79746,-0.7202,-0.80817,1.1017,0.88597,-0.4398,1.0569,-0.15988,-0.61153,0.38411 -2.6294,0.97609,-0.31175,-1.1574,-0.44929,1.2528,0.52459,-0.86087,0.74564,-0.13336,0.58847,-1.0886,0.76528,-0.30399,-0.3279 -2.4849,-0.63831,-2.7709,-0.8561,-0.29146,1.7884,-0.70835,-1.4462,0.43791,-0.979,-0.67445,0.65335,-0.14047,0.72752,-0.22936 2.1334,0.15687,-1.0678,-2.1595,1.4522,0.91822,0.34133,0.36076,1.329,0.22776,1.3097,0.27163,1.7704,-1.6471,1.5424 -0.66638,0.7554,2.7105,1.1486,1.6858,-1.033,0.7597,1.4766,1.267,-0.30855,-0.08193,0.46502,0.4433,-1.8986,0.9141 -3.1574,0.77712,0.3082,-1.5215,0.32854,0.021904,1.1206,-0.49008,0.11201,-0.45321,0.25712,-1.1965,1.5295,-1.717,0.74829 4.4756,-1.642,-1.564,-1.3337,1.4854,0.56826,3.1321,-0.966,0.99175,-0.20005,1.1257,1.7767,-2.2223,0.53618,0.29563 -1.3828,1.1523,1.3441,-1.0259,-0.94086,2.1999,1.0359,-0.61589,-0.24098,-0.29049,0.41278,-0.72775,1.0222,0.59125,0.54649 3.7368,-2.1564,3.2624,0.28848,3.4579,0.13901,0.63986,1.5471,-1.0368,-1.1018,-1.2287,1.3763,0.70202,1.0583,-0.58648 -1.0804,0.8856,0.54883,-0.68348,-1.5725,2.0085,0.96016,-0.79476,1.6778,-0.28321,0.010062,-0.53789,0.63501,-0.60404,0.25401 -3.7215,0.14877,0.24346,-1.6524,0.038033,1.0975,0.64247,-0.96567,0.55076,-1.2674,1.2311,-0.39085,0.67949,0.033167,-0.6228 -1.5982,1.571,2.2609,-1.809,-0.54449,1.7234,0.92971,-0.16084,0.31762,-0.93749,0.79265,-0.65311,0.76088,-0.87893,1.1705 -1.1485,0.23972,2.5922,-1.8956,-0.87923,0.41654,1.1152,-0.85854,1.3322,-0.61088,0.40857,-0.15859,0.94397,-0.22077,-0.10232 4.6215,-1.6986,-1.5382,-0.78431,2.0098,2.2483,2.5059,-1.0408,0.17972,-1.0629,0.90491,-0.17327,-1.1906,0.91561,0.2154 -1.6317,-0.73528,-1.0052,-2.7031,-0.65567,0.76792,-1.1124,-2.63,-1.7033,-1.0308,-0.83712,0.24352,-0.59824,0.89364,1.0493 -1.3289,-0.59422,2.5093,1.9063,1.4688,-0.56743,0.68327,1.3739,1.7945,-0.70158,0.66001,-0.5858,-0.095419,0.71514,0.62075 -3.2719,0.071335,-1.838,-0.95193,0.17745,1.4242,0.60685,-1.3194,0.65034,-0.83033,0.53641,0.41922,0.69144,-0.32363,-0.97659 -2.1561,-1.6734,1.6579,-1.7371,-1.0784,1.0438,-0.72662,-1.029,1.0752,0.71303,-0.057124,-0.61667,0.29328,1.8808,-0.29173 -3.848,-1.0422,-0.35952,-1.816,-0.45628,-0.39143,-0.13861,-1.2663,0.30313,-0.35051,0.3427,0.18365,0.77815,-0.093569,-0.45597 -2.3448,2.5405,0.21167,0.48473,0.18747,1.1172,0.97037,0.85484,0.13034,2.0543,-0.53031,1.2424,0.5622,0.44971,0.51395 -2.3922,-2.6533,1.0421,-2.2319,-0.49199,-0.20372,-0.36079,-1.3538,0.86591,0.61338,-1.4214,0.052668,0.84508,-0.34683,-0.66881 5.448,-0.66676,0.59944,-1.3693,1.2107,-1.2525,-0.085537,-1.4472,-0.44882,0.43429,0.99892,-0.38018,-1.9622,0.34078,0.47031 -2.4989,0.81642,2.2937,-1.0747,-0.14104,1.0881,0.047761,0.38871,0.85789,-1.1796,1.0637,-0.5711,1.5804,0.72832,0.089347 2.1419,-2.5779,2.6199,1.5258,1.3303,0.83955,0.86391,2.7718,0.043982,-0.31865,-1.5086,0.11776,1.4848,1.062,-0.068081 -2.6052,-0.34993,0.26575,-2.2205,-0.49488,-0.31218,0.036272,-2.5221,0.31883,0.53601,-0.09903,0.37974,0.1673,0.62872,-0.66714 -3.3691,-1.5764,0.82048,-0.75287,1.295,-1.2783,0.94367,0.39402,0.73135,-1.1556,-0.31554,-0.78219,-1.2632,-0.20174,0.11352 -1.681,-1.1469,2.5892,-0.70791,1.6367,-0.080024,1.0066,0.033135,0.5214,-0.26711,0.14552,-0.72696,0.71208,-1.739,-0.96112 -1.4015,3.6315,0.93142,-0.17555,-0.089569,2.0046,0.54334,0.11764,-1.8229,-0.065859,0.058796,-0.23943,-0.47628,-1.0245,0.34784 1.2721,2.0358,0.68225,0.44564,-1.0539,1.3216,-0.3556,-0.29159,1.179,0.66021,-0.022944,1.0046,0.58364,1.5848,0.38819 -2.5699,-1.0955,-1.156,-2.2652,-0.24355,0.59842,-1.7332,-2.5778,-1.9618,-0.64896,-1.1576,1.1268,-0.2119,-0.48207,0.56177 -3.2123,-1.9629,-0.073994,-2.3027,-0.081774,0.36086,-2.1229,-1.1533,0.04643,0.029715,-1.0202,0.55997,0.70471,0.64508,0.61853 -2.917,1.5893,-1.0887,-0.3935,0.095426,0.97899,1.8349,-0.63183,-0.6223,0.57073,0.096885,-0.10297,0.93637,-1.1206,0.59057 -2.3506,3.8908,1.8468,-0.61749,0.70449,1.0398,0.55052,0.75021,-1.5211,-0.66008,0.7649,0.45713,-0.16944,-0.70985,0.19746 3.3443,0.42137,1.7252,0.42144,1.4057,1.0434,0.15942,-0.23663,1.1643,-0.57731,-1.0251,1.8986,0.092567,-0.36346,-0.22804 -3.0738,0.60948,-0.39658,-1.7459,-0.34248,0.43213,1.2392,-2.6958,-0.51073,0.34446,-0.058995,-0.086802,0.85677,0.13933,-0.54401 -2.4285,3.0852,-1.1094,-0.022553,0.17199,2.3466,0.6059,1.1675,-0.42416,-0.0054815,-0.1422,1.1489,0.086233,-0.4007,-0.98287 -2.3715,-1.0545,1.3163,-2.1556,-0.094173,0.19135,0.4054,-2.3431,0.94569,0.3753,-0.78154,-0.19627,0.89499,-0.25664,-0.61035 -3.472,-0.50054,-3.0457,-0.57059,1.4865,-0.31514,-0.39935,-0.18035,0.63374,-0.58624,-0.96783,0.57992,-0.75006,0.81226,-0.49568 -1.3687,-1.5273,2.709,-1.1886,-0.028108,0.11884,1.6471,-1.4051,1.4172,0.34107,-1.0294,0.15327,0.53442,-0.92399,-0.99743 -0.61407,-3.6227,2.0966,1.4761,1.3231,1.227,1.1345,0.50153,0.54811,-1.0158,-0.79691,-1.4755,0.89903,-0.68866,-0.10427 -2.0116,-1.9066,0.9099,-2.7064,-0.64808,0.37843,-0.47755,-1.4162,1.1056,0.052997,-1.4861,-0.28772,0.85017,-0.20206,-0.48585 -1.9854,-2.3517,1.3696,-0.37553,-0.37198,0.18617,-0.41545,1.6275,2.0141,0.29867,-0.13124,-2.1318,0.5008,0.60512,0.66366 -1.4366,-1.8419,1.8838,-0.65381,-0.035828,0.53421,0.50148,-0.91582,2.6962,0.20068,-0.62455,-1.1107,0.72007,-0.5284,0.19645 -2.8202,-2.4776,-1.226,-0.055384,0.2336,-1.5428,-0.54544,-0.024106,0.90165,-0.10723,-0.93998,-0.99447,-0.49821,-0.39712,-0.2815 -0.44551,-2.8908,1.9425,-0.69148,-0.051626,1.6259,1.5935,-0.88474,1.9619,-0.25822,-1.281,-0.31972,0.50946,-0.29569,-1.631 -1.6043,-2.4156,1.1549,-1.3706,0.93123,0.13625,0.97241,-0.062824,1.2713,0.0954,-1.4233,-0.43711,1.1816,-1.4144,-1.3621 2.0402,0.68398,-0.66796,1.2332,1.6771,1.6811,-0.83828,-2.623,-0.56503,0.52314,0.81635,-0.99865,-0.68423,-1.0066,0.45792 -3.0579,-2.2476,0.49786,-2.0828,0.19534,-1.1246,-1.4463,-0.33606,0.30563,-0.026861,-1.2304,-0.72497,0.78198,-0.75932,0.5996 -0.4617,-2.1093,2.453,-1.6371,-0.63503,0.84111,0.8243,-0.18947,2.0014,-0.41318,-0.94478,-0.4698,0.88071,-0.4234,-0.97539 -0.85829,2.7478,3.0053,-1.5405,-0.3347,0.13661,0.35333,-0.54366,-1.7455,-1.02,-0.44984,0.5442,-1.1254,0.24248,-0.33044 4.5563,0.48962,-0.86687,-0.54001,1.9376,0.32526,-0.013309,0.1286,1.0629,-0.093964,0.16758,-0.65889,-1.8621,-1.0283,-1.2059 -2.8501,-0.65042,-0.9282,-1.8915,0.90584,1.6996,-1.1266,-1.608,-0.52284,-1.0433,-0.53246,0.79413,0.11768,-0.44657,0.74264 -2.6806,-1.0516,-2.69,-0.70443,1.2402,1.7288,-0.46187,-0.77224,0.80441,-1.5627,-1.3103,-0.3322,-0.8552,-0.29016,0.16172 5.0772,-1.6974,-0.98746,-1.3697,3.3609,0.52829,1.9778,0.96432,0.62968,0.38758,1.4847,0.84,-1.7316,-0.54596,-0.066397 -3.1342,0.93089,1.1673,-1.2445,0.17492,1.8716,0.75262,-0.075742,-0.84195,0.13928,1.0061,-1.0172,-0.17481,-1.7962,0.49234 0.33338,1.8501,1.5192,-1.3183,-1.1554,3.0921,0.083669,0.061845,-0.44059,-0.77867,0.84994,-0.22083,0.45399,1.9902,0.54876 0.42748,0.77063,-0.92215,-0.1323,-1.7177,3.0689,0.70355,-0.068506,-0.58778,-0.69476,0.6252,-1.8696,-0.36749,1.4117,-0.16272 -1.8849,-0.18453,2.8994,-0.47175,-0.28129,0.92691,0.38664,0.90912,1.9679,0.39461,0.61851,-0.33058,1.1251,0.38006,0.65302 0.77895,-0.51109,1.8567,-0.51028,-1.123,2.1149,2.0063,-0.22994,2.0436,0.35359,-0.96314,-0.58337,-1.5988,1.0668,-0.9664 1.7851,0.32359,-1.724,-2.9952,0.94048,1.8684,1.9882,0.42105,-2.1712,-1.2527,0.25407,1.1917,-1.2911,1.4017,0.99728 -1.4815,0.72293,-1.4044,-1.1117,-1.1477,2.1223,1.5808,-1.8872,-1.0387,0.057144,0.29715,-1.3701,-1.6059,-0.81934,-0.88834 1.3024,3.4867,-0.67967,-1.1878,0.18329,1.4656,0.97486,0.96309,-1.9707,-1.3427,1.4706,-0.22626,-0.54948,0.73817,0.28761 -0.41206,-0.34151,1.6175,2.4487,0.24365,2.1094,-0.59891,0.72423,1.2925,0.71306,0.82123,0.21506,-0.63651,0.31459,1.436 -3.1961,-0.11906,-2.4788,-1.2836,1.269,1.1908,-1.1011,-1.3098,-0.3151,-1.1283,-0.37377,1.7216,-0.18732,0.14096,0.079545 -1.1891,0.35873,2.0837,-2.5866,-1.522,1.4858,1.1944,-1.2552,0.25035,-0.19705,-0.066606,-0.63025,-1.9579,-0.40635,-0.43011 2.6512,2.2158,-0.96524,-2.5646,1.13,-1.4946,0.42848,0.51064,1.0874,0.87093,-0.074457,-0.34173,0.68163,-1.4823,-0.55481 -0.85341,2.0745,0.43534,0.10305,-1.9108,0.90025,0.91825,-0.58745,0.53069,0.27158,0.28802,0.41047,-1.1936,-0.76527,0.98068 -0.62109,-0.16247,1.4316,0.96128,0.035235,2.1199,0.74519,0.3769,2.5136,1.6794,-0.34221,-0.39907,-0.029129,-0.3716,0.88339 0.26745,1.8479,-0.27635,0.65153,-1.7312,1.0884,-1.1354,-0.13656,0.46795,-0.84219,0.36953,0.88072,1.1935,-1.0818,0.428 -2.1783,4.0344,0.69475,0.337,0.19695,0.71859,0.050531,1.214,-1.185,0.19314,-0.22353,1.1548,0.45107,0.272,-0.059229 3.0292,2.1467,-1.3429,-3.648,0.83737,0.35805,-0.070627,0.2745,0.89672,0.70952,0.88469,-0.28147,0.61816,-1.5067,-0.17117 0.56152,2.0171,0.13901,-0.57354,-1.5376,2.6347,0.17289,0.33331,0.61682,-1.4454,-0.33012,0.46435,-0.18996,-0.12768,0.9463 3.7117,-0.78969,-1.4786,-3.3409,1.6706,-0.12971,0.93855,2.8145,-1.0486,0.3123,1.5292,0.38179,0.5477,-2.0485,0.15625 3.0208,0.22098,-2.2131,-0.38872,0.29589,1.9084,0.80286,-2.2023,-0.10994,-0.93618,0.43656,-0.9658,-0.15389,-0.21998,-0.14644 -0.31547,0.28459,-0.15212,2.1846,-0.76569,1.2972,-0.68557,0.3961,2.1035,-0.88295,0.2317,0.65888,0.10478,-0.10582,1.0633 2.5257,0.91291,-0.48577,0.95892,0.097737,0.9393,-0.15049,-2.7072,-0.6224,-2.1597,-1.2249,-0.11314,-0.49446,0.27534,-0.89296 2.0396,1.2961,-1.1299,0.78414,-0.34605,1.3849,-0.90479,-2.1912,0.77075,-0.58518,-0.29528,-0.95284,-0.33928,0.26323,-0.10086 -3.6726,1.3018,-0.088033,0.02744,1.2768,0.097736,1.1962,0.093714,0.14307,2.4362,0.67081,-0.21394,-0.77711,0.33818,-1.0473 2.4164,1.3542,0.27475,-0.13536,2.7102,-0.8782,-2.0292,-0.080183,0.53322,1.3336,0.55507,-0.32179,0.86365,-1.9503,-0.2368 -2.9986,1.0004,-2.5955,-0.41678,-0.57094,0.94746,0.89479,0.75795,0.74396,1.0335,0.20397,-0.2931,0.35526,0.20704,-1.1418 -3.6553,0.57798,-1.7625,-0.67191,-0.25597,0.98457,1.2318,-0.28677,0.070167,-0.42441,0.5857,-0.30519,1.1033,-0.53326,-0.60727 -2.0599,1.3456,-0.9067,1.3883,-0.88946,-0.90262,0.72372,1.5603,0.90659,0.2326,0.1619,0.25776,-0.22719,-1.342,0.91141 -0.043738,2.0668,-0.52809,2.44,-0.089565,0.78961,-0.97757,-1.0808,0.15308,0.42301,0.0022273,0.59746,-0.65054,1.0839,-0.12827 -3.1597,5.3428e-05,-0.14701,-0.90692,-0.11604,1.6605,0.52207,0.45592,1.6887,-0.83464,0.7637,-0.83332,-0.37811,0.48198,-1.2017 -3.2296,-0.59511,-1.6603,-1.2783,-0.38514,-0.89476,-0.58021,-0.073866,0.89844,-0.31103,0.059197,-0.065508,0.21237,-0.9269,0.19251 -2.5826,-0.34251,-3.2152,-0.61839,-0.58174,-0.86837,-0.92868,0.24489,0.6137,-0.30416,-0.57954,0.15709,-0.079043,-0.12482,0.31772 4.8397,-1.2506,-1.1845,-1.1454,2.0545,1.3034,2.0524,-1.5282,-0.40035,0.28832,0.9499,-0.62985,-1.4525,-0.45659,1.4794 -2.6607,0.29076,-1.7143,-1.4085,-0.3904,0.56174,0.24627,-1.683,0.52331,0.1462,-0.25015,0.41681,0.96876,-0.81796,-0.20602 -2.4113,0.32642,0.90657,1.4374,0.18507,-0.39883,1.3918,-0.17511,2.1658,0.85402,0.59656,0.49424,-0.21566,-1.2295,0.93936 2.2968,1.7707,0.36142,0.7957,-0.47994,1.0957,-0.95852,-0.35746,0.7571,0.39199,-1.4746,-0.41263,-2.4655,0.12845,0.20914 -2.6521,-1.016,-1.3648,-1.4091,0.072614,0.76847,-1.2135,-0.95026,1.4917,0.12455,-0.77384,0.40217,0.63291,0.053699,0.7016 -3.0376,-0.11304,-0.89361,-0.41007,-0.63922,-0.19794,0.95317,0.941,1.6732,-1.3071,0.36355,-1.2998,-0.80991,0.096664,-0.29065 -2.2801,-0.83286,-3.4477,-0.2366,0.96486,0.76269,-0.9515,-0.31375,0.19935,-1.9921,-1.6605,1.412,-0.50467,-0.037812,1.1697 -2.9953,-0.55796,-2.207,-0.44955,-0.30965,0.71076,-0.11541,-0.55358,1.638,-0.33521,0.090617,-0.084676,-0.19727,1.1165,-1.0517 -2.4798,0.35512,-3.2754,-0.4319,0.30731,1.2513,-0.80365,-1.1695,-0.23572,-0.50726,-0.52573,1.755,0.20581,0.74184,-0.085602 -1.81,-0.059284,-3.9656,0.18475,0.22676,0.83274,-0.20879,-0.64104,0.44689,-1.5308,-1.5929,1.1206,-0.3003,-0.33859,0.74377 2.0147,2.8465,0.64631,-1.2501,0.5412,-0.84477,-0.70872,-0.1856,1.0395,-0.69704,-1.5604,0.51624,0.84695,-1.1466,-1.7505 3.2154,0.83822,-0.75384,-2.3706,0.58385,-0.18784,-0.23411,-0.91112,2.6379,-0.16514,0.73328,0.2844,-0.066993,-0.87191,-0.61785 -2.6762,1.4958,-1.028,-0.42085,-0.30202,1.6297,2.0147,-1.1055,-0.71455,0.7065,0.087226,-0.27658,0.53147,-0.86711,0.11304 1.9482,0.74401,1.9922,-0.21601,-0.97331,0.44676,-0.071966,-0.18971,1.9377,-1.7979,-1.4355,1.5693,-1.1186,0.25914,-0.71044 3.3012,1.1196,0.64792,0.24489,1.1397,0.17051,-0.12643,0.15324,1.3446,0.2051,-1.5287,1.0797,0.19908,-0.28633,-1.0981 2.1712,0.24675,-0.52641,1.1746,2.717,-0.93517,-1.1464,-0.13075,1.0491,0.53612,0.82951,-0.9853,1.1305,-1.1622,0.81434 4.2273,0.82032,-0.61597,-2.4518,0.31703,-0.021897,0.18177,-1.2195,1.3496,-0.36571,0.55218,0.69108,-0.34504,0.74704,-1.6471 3.4082,-0.064352,1.1037,-0.1971,1.3494,0.60757,-1.4243,-1.7714,1.9289,-0.4509,-0.52814,0.65846,0.2273,0.48803,-1.1801 2.8646,1.4517,1.6266,0.21793,0.23357,0.79287,-0.12885,0.036251,1.7991,0.12524,-1.326,1.3358,-0.45767,-0.20868,-0.28004 3.0841,0.51842,1.0357,1.344,1.2024,2.4556,0.41337,-1.3586,-0.32464,-2.488,-1.2862,1.0977,-0.47955,0.7127,-1.423 -0.23911,2.1659,0.61058,-0.48246,-1.8914,1.2511,1.2287,0.29107,0.6643,0.6075,-1.1469,1.1604,-0.80159,0.07927,0.80584 -3.1221,0.50909,0.80056,-0.87503,0.23444,-1.6039,1.082,0.57289,1.2718,0.081563,0.45884,-1.2217,0.99519,-0.63108,0.55531 -3.0872,1.8427,0.029091,-0.89717,0.33172,0.87487,1.3255,0.20268,-0.38244,-0.59487,0.77874,-1.3223,1.3931,-1.2087,0.73019 -2.0906,-2.3891,0.54064,-0.69336,0.8913,-1.56,-0.031498,-0.92109,1.9671,0.23164,-0.6483,-0.604,0.50934,-0.7444,0.078061 -2.7056,-1.1805,-2.3859,-1.8768,-0.35501,-0.86277,-0.63908,0.063262,0.26637,-1.5126,-1.2626,-0.049591,-1.2928,0.12362,0.40657 -2.1837,-1.5771,-2.7767,-0.58534,-0.070015,-1.5983,-1.7415,0.68345,0.41743,-0.9703,-1.3783,0.97399,-1.4578,-0.025706,1.1952 -2.9399,-0.4836,-2.2814,-0.84299,1.1942,-2.438,-0.89719,-0.116,0.7357,-0.39937,-1.1006,0.95846,-0.05027,0.5789,1.1953 -2.8502,-0.31758,-3.2772,-0.88778,0.43051,-2.068,-0.84337,0.51939,-0.41784,-1.0231,-1.4749,0.68789,-1.0332,0.57126,1.0009 -3.3203,-0.91255,-0.60797,-0.80449,0.78651,-1.3567,0.95558,0.14368,1.7293,-0.81907,-0.077742,-1.0035,-1.4101,0.62187,-0.43738 -3.2984,-0.89238,-0.29342,-1.4972,-0.090531,-0.22526,-0.28412,0.76884,1.6191,-1.3064,0.58423,-1.2287,0.078134,0.053211,0.20414 -1.6953,-1.8509,1.7495,-1.1221,0.80818,-0.084637,0.46962,-1.3117,2.2016,0.54503,-0.56956,-0.0026679,1.1303,-0.17639,-0.80545 -3.2678,-1.8002,-1.3249,-1.9804,0.91778,-0.14247,-2.4888,0.22341,-0.00098723,-1.0178,-1.1434,1.0182,0.17823,0.70106,1.6971 -2.4659,-2.7902,-1.1188,-0.95447,0.44842,-1.5102,-1.9079,0.70585,0.93133,-0.22941,-1.3935,-0.15832,-0.79804,0.10907,1.1666 -3.4367,-0.34126,-2.9868,-1.352,0.45104,-1.116,-0.44598,0.10771,0.51593,-0.87464,-0.8367,0.17717,-0.65665,0.2345,0.0062696 1.9603,1.9633,2.3014,-0.86032,0.80854,-0.035514,-0.84105,-0.65698,1.2073,0.62864,0.69592,1.0901,-0.78705,1.0925,0.62898 4.6639,-0.84404,-1.325,-0.81188,2.7261,0.54287,1.926,0.597,0.1552,0.41566,0.6331,0.85587,-2.4431,0.026049,-0.24989 4.0041,-0.12995,-0.4975,1.1957,1.0451,1.9527,0.3296,-1.4382,-1.6513,-0.11778,-0.34662,-0.73248,0.24593,0.91375,0.46967 0.51945,1.8314,1.9562,-0.65965,-0.81302,0.38936,-0.20236,-0.93443,0.47841,0.37441,0.55538,-0.045459,-1.3216,1.9882,0.54881 0.090132,1.005,1.1809,-2.7646,-0.38651,1.5255,-0.38783,-0.5521,-1.1207,-1.7571,0.91219,0.33057,-0.60527,2.4981,0.8631 3.5253,-1.4654,-1.1772,-1.8827,1.0235,-0.086403,1.4531,1.0777,0.88414,1.5443,0.35541,1.387,-1.8192,0.99398,0.15375 3.9895,1.3322,1.4581,0.20049,1.8832,0.23659,-0.034341,-0.84663,0.10839,1.0566,0.14431,-0.70818,-1.7263,-0.32451,0.645 1.7721,-0.13255,1.5496,0.59109,-0.30644,0.92831,-0.2088,-1.8089,0.35715,0.50716,0.44155,-0.29816,-0.72885,2.0123,0.61427 1.7803,-2.0573,2.9959,-0.70322,1.2121,1.2077,0.90712,-0.76829,0.20954,1.5277,-0.34792,0.14215,-0.31569,2.937,-0.97195 1.1617,-1.987,2.7592,-0.49331,0.16032,1.2495,-1.1279,0.42853,-0.75595,2.3241,0.32371,0.022567,-0.04157,2.7762,-0.45316 2.1689,-0.53178,0.019616,-2.4991,0.087512,0.00058455,0.016507,-1.0394,1.1737,1.4947,0.59974,0.93595,-1.4864,1.7068,1.1954 -1.0005,-0.80666,0.68534,-0.77095,-0.2826,1.3302,0.98043,-1.8653,2.3241,1.6091,-0.97651,-0.66182,-0.53079,1,-0.4186 -0.1432,0.23143,0.30586,1.6527,0.40889,-0.7555,-0.73975,1.8364,2.2836,-0.41418,0.23707,0.23882,-0.15348,0.60165,1.5201 0.92854,-1.9083,1.3888,0.53174,0.017904,2.3404,2.0592,-0.38356,1.0897,1.1655,-1.1899,-0.76106,0.27559,2.0681,-1.6099 0.96929,0.13216,1.1219,1.6916,0.95462,1.6544,-0.85431,1.4997,2.0627,1.0664,0.11677,0.44382,0.30982,1.2948,0.97002 1.2006,1.3227,-1.136,0.61645,0.86471,2.7838,-1.3613,0.4722,1.509,1.1842,-0.21088,0.87227,0.76007,0.51018,-0.20372 1.1342,-0.10858,2.0507,0.075031,0.89109,1.7615,0.86282,1.0958,2.4868,1.1047,-1.415,0.14676,-0.69849,-0.1353,-0.11122 -1.4599,-0.53805,1.5263,0.16666,-0.12214,1.1549,0.26878,-0.32949,2.7783,1.6584,0.075938,-0.33208,0.30908,0.34434,0.23559 1.5547,0.51829,0.90852,0.21832,-1.2831,1.6256,-0.48331,0.10993,1.757,0.0037709,-0.76153,1.4508,-0.11888,-0.21573,-0.59427 2.3589,-0.48367,-1.8482,0.71617,2.1145,3.0768,1.1825,-0.85197,-0.54024,-0.33115,-0.23201,0.83449,1.8956,1.2439,-0.43465 2.6708,-0.028534,-0.18424,1.3327,0.4734,3.3725,2.0696,0.89397,-0.06749,-0.87093,-0.67599,0.73699,0.38946,1.9616,-0.64449 -3.2896,0.6622,-0.54809,0.0098268,-1.008,0.31092,1.1128,0.63795,1.1473,-0.68272,0.905,-0.18158,0.75872,0.37639,-0.24794 -2.9744,1.6582,-0.40311,0.20263,-0.41699,0.60788,1.1405,1.3363,1.1448,-0.50236,0.66896,-0.51208,0.72828,-0.6217,0.76913 -0.85083,1.4467,2.3108,0.27711,-0.98628,0.74719,0.5979,-0.78599,1.2432,0.11608,-0.47875,1.3325,0.39679,-0.31509,0.4012 -2.8163,0.71314,0.14403,-0.25913,-1.1687,1.3508,0.6532,0.46411,0.92177,-1.2874,1.2425,-0.011911,0.75411,-0.53122,0.55415 -1.3044,-0.41635,0.9794,2.5346,0.21159,0.15186,0.60675,0.73948,1.8028,-0.8531,0.054902,-0.24383,-0.40122,-0.55619,1.8769 -3.1692,0.86256,-0.091301,0.098426,-0.59832,0.58088,1.1722,0.98027,1.5394,-0.28592,0.53671,0.38484,0.59259,-0.25891,0.65291 -2.1999,-1.1938,-0.85534,0.81729,0.90939,-1.0228,1.8918,0.18731,0.34744,-0.98717,-0.23532,-0.56094,0.25995,-1.7593,0.064063 -1.4968,-0.15683,1.0059,2.318,0.066591,0.63236,0.22184,0.49412,2.0383,-0.92629,0.36115,0.10098,-0.40036,0.33546,1.5656 -2.9763,-0.10823,-0.4881,0.36895,-0.27173,-1.2058,1.273,0.67662,2.0271,-0.50774,0.68157,-0.57517,-0.66187,-0.47557,0.035957 -2.1102,0.10015,0.43069,1.0459,-0.089474,-0.34371,1.1071,-0.22611,2.3795,0.23496,0.55792,-0.56943,0.6441,-0.80117,0.522 -1.9011,-0.93105,1.8625,0.19073,-0.33293,-0.66109,0.49142,0.3258,2.6058,-0.12398,0.46035,-0.94891,0.4578,-0.96122,0.91877 -3.4112,-0.35829,-1.6741,-0.69865,-0.71658,-0.15421,0.52167,0.43486,1.3546,-0.63075,0.28139,-0.9023,0.03184,-0.10073,-0.37438 -2.2164,-1.7162,-0.38292,-1.8482,0.33873,-0.096973,-2.1323,-1.3878,1.0592,0.2016,-1.4529,1.1771,0.52308,-0.12253,1.6303 -3.7713,0.41868,-1.3916,-0.63192,-0.46529,-0.25131,1.3235,0.99116,0.92026,-0.67797,0.30323,-0.94005,0.20259,0.23049,-0.42699 1.0141,-1.2264,1.6042,0.91118,-0.24665,1.6417,0.5328,1.6392,2.2122,-0.42244,-1.1955,0.075474,0.65781,-0.22701,0.42229 -1.3053,-1.3492,0.88664,-1.0253,-1.1342,1.0014,0.49725,0.28241,2.1772,-0.67343,-0.56412,-0.85089,1.5214,-1.3828,-0.12206 1.3295,-0.85858,1.4718,-0.74129,-0.6627,1.6009,0.81695,2.0446,1.9828,0.5749,-1.0719,-0.33093,0.8225,0.75251,-0.27537 -1.716,-3.2085,-0.41375,0.44353,0.64883,0.10489,-1.0143,-0.0094214,1.3636,0.93911,-1.8663,-1.1335,0.58353,0.20168,0.6176 -2.4127,0.24779,0.98905,0.030288,-0.23682,-0.45763,0.6217,0.43791,2.2362,-0.78014,1.204,-0.44623,0.66334,0.40548,0.03708 -2.9829,-1.9743,-2.2816,-0.61069,0.14814,0.14763,-1.4599,0.31059,1.3379,-0.93966,-1.0643,-0.22679,-0.99545,1.3284,0.49055 1.3149,2.5227,1.0515,0.83452,-0.34821,0.97189,-1.3334,-1.051,0.89167,0.0016899,-0.073949,1.1901,-0.54888,1.7961,-0.041006 0.68846,2.5715,2.0449,-0.53005,-0.6734,1.0115,-0.9011,0.21425,0.81538,-0.93658,-1.2286,1.1281,0.18483,-0.24466,0.60739 -0.36967,3.5607,0.91055,-0.16028,-1.1827,1.7716,0.42456,0.15248,-1.0735,-0.65439,0.46001,0.10531,0.0017119,0.68085,0.67095 0.65099,2.6165,1.4819,-0.71422,-1.9308,1.8339,-0.38721,-0.27622,-0.99011,-2.0092,-0.72855,0.4809,-0.66437,1.4375,0.35678 -0.2837,3.7399,0.98698,-0.02472,-1.2032,1.3418,-0.60568,-0.21,-0.9687,-0.066119,-0.2118,1.0984,-0.20588,0.099924,0.72084 0.74471,3.2222,0.90661,-0.37477,-0.78234,0.47347,-0.87844,-0.33691,0.6182,-0.48304,-0.77503,1.2396,0.056965,-0.54912,0.67298 0.36391,3.7064,-0.72341,-0.11057,-0.06005,0.76353,-2.144,0.76696,-1.3391,0.67946,0.41149,-0.046918,-0.26922,0.42535,-0.66263 1.2706,3.3177,-0.61611,-1.3295,-0.1872,0.50318,-2.0672,-0.93794,0.31732,-0.15053,0.76318,0.2633,0.60366,-0.074724,-0.28643 1.1228,4.2084,-0.87686,-1.4127,-0.36431,1.113,-1.3329,0.4325,-1.2579,-0.33958,-1.0001,-0.23735,-0.26311,-1.0238,-0.64236 3.0782,1.1032,-0.23453,-0.98032,0.47467,0.65571,-1.3618,-0.99535,1.8681,1.2156,0.049919,0.24285,0.12018,-0.90914,-0.18002 -1.5334,2.4908,0.28515,0.63479,-1.4717,0.94816,1.0457,-0.49061,-0.31993,1.4221,0.58143,0.95162,-0.9849,0.0065279,0.51969 0.31401,3.702,-1.0207,-0.056868,-0.77763,1.0868,-1.6948,0.10675,-0.65346,0.16795,-0.14366,0.34888,0.58909,-0.2913,-0.4525 -0.65615,2.8794,1.2518,-0.88882,-1.2837,1.628,0.57873,-0.7597,-0.57617,-0.41492,1.2035,-0.03763,-0.29365,0.070195,0.40623 -3.1587,0.64206,-2.8558,-0.85779,0.90792,0.97415,1.0987,-2.0464,-0.75599,0.33271,-0.39858,0.55761,-0.2215,0.18125,-1.6235 -1.3888,-1.8736,1.5237,-0.037431,0.40793,1.6016,1.1852,-2.4851,1.8808,0.57297,-0.25158,-0.32788,0.28012,-0.0038222,-0.52307 -1.9414,-0.73953,2.0372,1.4682,0.11557,1.3849,0.83139,-0.533,1.8683,-0.11486,1.0008,0.032935,-0.62686,0.85113,0.88638 0.037125,-2.2078,2.6253,0.92764,0.63628,3.3941,1.6463,-0.77307,0.58919,-0.5078,-0.67263,-0.68484,1.065,0.51968,-0.099117 -1.8013,-0.0013296,0.77971,0.58384,-0.12227,0.9123,1.8667,-2.3429,1.1444,0.80786,0.47172,0.35543,0.58822,-0.44885,-0.87395 -1.7865,0.88583,1.4079,-1.285,-1.6388,1.0479,1.7254,-2.212,0.43897,-0.18308,0.37872,-0.028209,-0.11696,0.24335,-0.29196 -3.9226,-1.0198,-0.80401,-1.9107,0.60241,0.91601,-0.37793,-2.2361,-0.083707,-1.138,0.17628,0.85034,0.11339,0.81992,-1.0914 -1.1837,0.76809,2.8638,0.52905,-0.22426,0.34482,1.6056,-1.2348,1.545,0.22141,0.08462,1.0195,0.43765,-0.40173,0.10511 -2.0194,1.0693,0.67227,-0.62985,-1.6376,0.82879,2.0015,-2.2376,0.31314,0.66927,0.52764,-0.038264,-1.0581,0.55346,0.0068495 -2.5778,-0.13229,-0.77555,-1.7381,-0.60831,1.7207,-0.36783,-1.6812,0.47097,0.32861,-0.052086,-0.34983,0.81401,-0.36206,0.11839 -2.3475,0.49919,-0.054157,-1.8781,-0.45383,1.4238,0.42308,-1.8651,-0.32844,0.12836,-0.046679,-1.104,0.37271,-1.0943,0.13735 -3.202,0.035623,-3.6448,-1.2097,0.66249,0.29905,0.4058,-0.73798,0.1645,-1.3175,-1.3421,0.4401,0.2769,0.23933,-0.68413 -2.2585,-2.8664,0.6988,0.87159,1.1702,0.60739,-0.10744,-1.4434,1.6955,0.14548,0.21798,-0.7748,-0.069386,0.98103,0.11898 -1.2977,-3.1967,1.7121,0.84895,1.259,1.7578,0.45476,-1.3152,1.0864,0.63531,-0.83286,-1.1345,0.96156,0.90512,-0.090955 -4.0811,1.0123,-0.884,-1.0026,0.82194,-0.7337,1.1096,0.33621,-0.14092,1.2544,0.1566,-0.63045,0.42066,0.2528,-0.9535 -1.1354,-2.2148,2.1696,-0.49937,-0.16314,0.56914,0.65055,-1.9264,1.5986,0.64697,-0.54298,0.11578,0.40485,-0.000597,-1.1977 -2.2727,-0.61774,1.172,-0.674,-0.52017,-0.045397,0.49411,-0.81669,2.3806,0.48486,0.476,-0.3423,0.5552,-0.82909,0.43942 -2.8834,0.65497,0.78644,0.14698,-0.89445,0.20152,0.8855,-0.17084,1.6784,-0.69436,1.2702,0.70204,0.23317,0.32799,-0.26312 -1.3342,0.58784,1.742,-0.71377,-0.57996,0.28233,-0.22545,1.6661,1.5307,-1.3213,0.49871,-0.69553,1.8251,-0.43437,1.3653 0.43918,-2.8334,2.77,-0.7022,0.44923,1.9281,0.87981,0.2774,1.3778,0.29098,-1.1743,0.0065404,0.89212,0.31512,-1.9408 -3.2727,-1.0178,-0.53582,-1.7596,0.45024,-0.25174,-1.0799,-0.69538,1.1989,-0.67948,0.019018,0.30404,0.17923,0.46129,0.32569 -3.3645,-0.18646,-0.29499,-2.7797,1.0519,0.69023,-0.70213,-2.6028,-1.0889,-0.18122,-0.24857,0.83712,-0.21677,0.91103,0.072663 -3.1966,1.2251,0.69565,-2.1279,0.17278,0.047656,0.62337,-1.0458,0.29171,0.95495,0.44766,-0.64511,0.67001,-0.96979,-0.2349 -3.8899,1.0619,-0.36184,-1.7654,0.3532,0.33398,0.36231,-0.5437,0.24429,0.2237,0.79827,-0.46383,0.88451,-0.34704,-0.46349 -3.5422,-0.39656,0.10632,-1.7444,0.71618,-0.068662,-0.19621,0.54278,1.1884,0.065192,0.75007,-0.82366,-0.21595,-0.02119,-0.10363 -2.4996,0.2555,0.29846,-0.59488,0.21089,-0.549,0.45798,1.541,2.3746,-0.43802,0.7524,-1.2755,-0.22161,0.53382,0.092156 -4.0016,-0.097359,-1.1356,-1.9445,1.5237,0.37071,-0.33767,-1.3258,0.15567,-0.67263,0.27591,0.74792,-0.28319,0.58484,-0.84132 -2.8631,1.4179,1.4715,-1.9261,0.36717,-0.09618,1.0545,-1.1692,0.26697,1.7824,0.36,-0.33982,0.0039319,-0.60918,-0.21888 -3.9833,0.029459,-2.2999,-1.9545,0.96354,-0.264,0.3196,0.078658,0.219,-1.2873,-0.57344,-0.65695,-0.17966,-0.44615,-0.49715 -0.21707,-0.8795,2.2425,0.97986,1.4276,0.15378,0.6776,0.89999,1.7781,0.76393,0.3775,-0.72775,0.60085,0.90341,0.92022 -1.5559,-0.44864,2.6011,-1.641,-0.14993,1.2275,-0.21977,-0.5243,1.7494,0.36701,0.64791,-0.33762,0.55407,2.0956,-0.057499 -3.0786,-0.36491,0.41145,-1.496,1.1932,0.14945,-0.80956,-0.10816,1.3086,1.344,-0.095605,-0.40092,0.072049,1.2322,-0.0020903 -3.5909,2.9543,1.0215,-1.0358,0.72525,1.0403,1.0811,1.1882,-0.65199,0.48567,1.1014,-0.14361,0.13425,-0.28018,-0.45459 -4.2164,0.47717,-1.0877,-2.1074,1.3999,-0.017736,-0.36316,-1.0145,-0.17481,-0.15787,-0.14418,0.24483,0.73405,0.64033,-0.19365 -1.5445,-1.5962,0.99034,-1.9344,-0.16282,1.9468,-1.7475,0.14471,-0.92278,0.86169,-0.25083,0.26594,0.95203,3.7915,0.27781 -2.4862,-1.7334,-0.82651,-1.0952,0.15396,1.641,-1.6569,0.50024,0.90638,-0.92979,0.028993,0.51858,-0.074313,2.7483,-0.052704 -0.6425,-2.8012,0.019974,1.8587,1.0353,1.3352,-1.056,0.45815,-0.76941,1.8594,-0.2069,-0.28548,0.82385,2.8108,-0.075035 -2.5437,-0.91519,-0.68758,-0.50973,0.42111,0.14329,-1.4929,-0.061237,1.5227,-0.74675,0.79367,0.61389,-0.46601,1.9635,0.24622 -2.5252,-1.0167,-0.56544,-0.4899,0.053374,1.2947,-1.0864,-0.42983,1.1729,-0.90288,1.1058,0.519,-0.63586,2.4088,-0.49902 -1.2587,-0.96806,-0.63387,-0.77984,-1.0528,2.1344,-1.6869,1.0251,-1.2059,0.85864,0.66236,0.63686,1.4072,3.385,-0.58792 1.6293,4.5276,-0.60021,-2.559,1.9618,0.58594,-1.1071,0.076536,-2.2517,0.14274,0.9853,-1.0918,-0.86806,-0.76653,-0.11722 1.7689,3.7891,0.8239,-2.8245,1.856,0.59486,-1.901,0.04072,-2.1532,-0.92584,1.4316,-0.9661,-1.007,-0.97624,-0.134 1.1807,3.9353,-0.92364,-2.6828,1.1586,1.0572,-0.82899,-0.06423,-1.3935,1.2481,0.52381,-1.2622,0.013096,-0.53387,0.021909 3.1452,2.5669,1.4859,-1.1873,3.549,-1.6707,0.024321,-0.78714,-0.94838,1.6124,0.074441,-0.63534,-1.0248,-0.68125,-0.12033 2.156,3.049,1.8456,-2.1543,2.9648,-1.6007,-0.97173,-0.42534,-0.64748,0.71698,1.0627,-0.63258,-1.2618,0.19074,0.21218 1.6383,2.5569,-0.16047,-3.2166,2.3986,-0.26239,-1.711,0.84921,-0.60029,1.6152,2.4509,-0.51515,0.54705,-0.25881,0.40928 4.0777,-0.60869,0.84194,-2.8893,4.6512,-1.4932,1.0754,0.88406,-1.4398,1.3948,1.8346,0.96308,-0.72464,-1.1454,0.77334 3.686,1.1407,0.80599,-1.8906,3.4036,-1.359,-0.19754,-0.63549,0.30185,2.0081,1.3519,-0.44764,-0.91441,-0.8685,0.34625 2.3872,3.2131,-0.23833,-3.1271,1.2071,-0.52697,-1.1746,0.8755,-1.5703,1.5026,1.5305,-1.027,-0.372,-1.086,0.047975 2.4846,2.3087,0.93962,-1.2473,1.6849,-1.0522,-1.5302,0.15236,-0.069056,2.242,0.33458,-0.70279,-0.14049,-1.0366,-0.3202 2.8712,0.97631,0.5207,-1.7152,3.473,-1.517,-0.30432,0.53398,-1.5996,2.1693,2.0787,-0.42598,-1.0036,-1.3726,0.86509 1.1079,3.4944,1.1566,-0.40531,1.4683,-0.7112,-2.4376,0.03558,0.22007,1.3738,0.96859,-0.045042,0.1358,0.26831,-0.8841 0.13954,1.5859,1.9573,-0.60427,-2.2064,2.0621,0.70664,-0.42521,0.56877,-0.26408,0.18389,-0.35845,-1.3181,1.2522,0.9065 -0.50503,0.13444,1.9475,0.88809,-0.69158,1.1039,1.3886,-1.9,1.0064,1.337,0.42843,-0.51994,-0.83409,0.51843,0.64189 1.2003,0.12027,2.8145,1.0958,-1.0676,1.5475,0.75708,-1.1756,1.4236,-0.075795,-0.28824,0.36078,-0.7748,0.79759,0.60926 -1.0975,-0.63526,1.7708,1.1485,-0.13851,1.2654,1.5995,-1.9212,1.9441,0.5053,0.33788,-0.050851,-0.011933,-0.07779,0.32587 -2.4074,0.40932,1.0581,0.083151,-0.87563,0.21587,1.2185,-1.5935,1.3928,1.18,1.159,0.51043,0.25603,0.29616,-0.44371 -0.99513,-1.5752,0.2075,1.0424,0.29787,2.5733,0.21577,-0.57694,1.2696,0.144,0.16333,-1.5539,1.1258,0.3693,1.3714 0.70384,-0.70877,1.6032,2.2865,-0.94945,1.7626,1.1941,-1.8413,-0.4262,-0.53409,0.25382,-0.1709,-0.17228,-0.01404,1.0004 -1.648,0.22327,1.6412,-0.52334,-1.146,0.5149,1.4125,-2.3362,1.4294,1.0253,0.37004,0.13459,-0.39543,0.12975,-0.01775 0.028787,-1.7517,1.9139,0.058782,-0.51782,2.3901,1.3224,-1.5177,1.3938,0.74673,-0.83325,-1.679,-1.2501,1.0808,0.23999 -1.1576,0.86803,2.7128,0.51759,-0.59808,-0.10683,1.6587,-1.8075,1.4339,0.75073,0.31149,0.56679,-0.015906,0.40294,0.12174 -3.3557,0.25716,0.072183,-1.4746,-0.18102,0.51878,0.5539,-0.18569,1.2607,0.066842,0.8022,-0.043918,0.34464,-1.0587,0.20358 -0.24844,0.55793,2.8218,1.084,0.57273,1.3958,-0.24938,0.84315,0.57681,0.45005,1.796,0.41191,-0.70099,2.3779,0.37048 -1.6353,-0.28412,1.0791,-0.0053575,0.19456,0.5982,-0.16811,0.88048,2.5314,-0.24361,1.158,-0.6806,0.56981,1.23,-0.4213 -1.5482,0.72995,0.77668,0.62277,-1.1175,0.70789,0.14963,0.022555,1.6846,0.9218,1.0566,-0.13013,0.76615,0.40605,-0.25907 0.95561,0.58846,1.0535,0.38081,-0.30675,0.90444,-0.58385,1.0578,2.5344,0.096769,-0.59706,0.85602,1.224,0.16505,1.0344 -1.7575,1.7019,1.6023,-1.704,-0.53182,2.0095,0.93342,-1.1873,-1.1285,-0.3885,1.2568,-1.3931,0.38235,-0.32176,-0.27483 1.7821,-1.2689,3.909,-0.23324,2.3708,0.63382,1.5356,0.90857,1.025,-0.60872,-0.55817,0.52837,0.62441,0.42472,-0.28822 -0.50136,-1.6394,1.4154,-1.0351,-0.21638,0.93853,0.010422,-0.16923,1.8844,1.0124,-1.1504,-1.1136,1.6999,1.3248,-0.88751 0.62915,1.2517,2.9099,-1.6836,-0.14533,0.48485,0.33117,0.7022,1.8623,-0.057267,0.29125,0.18375,0.28661,-0.78679,0.76897 -1.4683,-1.9497,-0.54703,1.8648,1.3782,1.4116,0.58023,0.76056,-0.81816,-1.335,-0.2391,-2.2389,2.503,-0.19565,0.21321 -1.9792,-1.2515,0.94148,0.53975,-0.21616,-0.78323,0.6725,1.5383,1.4933,0.20876,-0.19252,-2.0413,0.83638,-0.82798,0.060837 -0.51067,0.028018,3.1893,0.47417,1.0322,-0.39077,-0.078098,1.8968,2.0608,-0.24565,0.79953,0.14745,0.17607,-0.32799,1.6636 -3.9494,-0.65429,-0.84353,-1.8513,1.0095,0.64986,-0.56265,-1.1181,0.78401,-0.67825,0.34365,0.40068,0.3322,0.86838,-0.63091 -2.7601,0.65037,1.1647,-1.1299,0.088305,0.78145,0.16021,1.0871,1.1993,-1.3556,1.441,-1.2018,0.67257,-0.56771,0.58463 -2.0302,-0.42459,1.2436,-2.4052,-0.12528,-0.010035,0.42007,-1.116,1.4495,0.072658,-0.44407,-0.64332,0.80154,-1.3731,0.23347 2.4741,2.2545,0.29933,-1.4894,0.27213,0.9274,-1.7194,-0.63558,0.78123,0.18668,0.1224,0.59813,1.051,-0.26173,-0.87989 0.87224,1.4833,2.2474,-1.1949,-0.17681,0.89284,0.0038537,1.3304,1.059,0.14387,-0.020942,0.85052,1.489,-1.073,0.73611 -2.4822,0.22936,0.18743,-0.32501,-0.49603,-0.16499,0.37154,2.1742,1.7382,-0.96736,0.7363,-1.6878,-0.014577,0.43129,0.37208 -1.2545,-0.97717,1.6001,-0.72235,0.54767,0.69105,-0.22069,0.32841,1.8741,0.83213,0.017644,-0.94282,1.3775,1.4132,0.36698 -3.0983,-0.55126,-0.22251,0.094539,-0.73066,-0.56379,0.72553,1.2106,1.7061,0.066325,0.18447,-1.2879,-0.044157,0.053816,0.37502 -4.0725,1.2195,-0.39915,-1.6724,1.0472,0.62845,1.4239,-1.0101,-0.80734,0.4353,0.53477,-0.37295,0.6239,-1.188,-0.081675 -3.4676,-0.796,-2.8672,-1.8067,1.3801,-0.55145,-0.96443,0.058398,0.52063,-1.5413,-1.1735,0.70318,-0.67923,-0.041355,0.49925 1.9334,-0.29478,2.3251,2.0716,2.7862,2.4223,0.4495,-0.029801,-0.029477,-1.3309,-0.7474,0.9125,1.193,0.20497,0.82723 -1.4874,-1.5139,2.1591,1.7292,1.1417,-0.17584,1.1095,1.4209,1.5597,-0.23111,-0.012189,-0.96294,-0.45018,-1.0046,1.7353 -0.15928,-0.18978,3.3728,1.8179,2.69,1.0752,1.7763,-0.60453,-0.084359,-1.1578,-0.9258,0.44,-0.2627,-0.92011,0.92918 -4.3082,-0.29095,-1.098,-1.5904,0.84163,-0.63402,0.71184,1.0418,0.10144,-0.081221,0.1629,-0.7167,0.22019,-0.28333,0.072374 -3.7304,0.98452,1.4461,-0.71581,0.099413,-0.52307,1.1656,0.36865,0.96444,-0.4254,0.91102,0.10761,0.68936,0.23966,0.30848 -3.9019,-0.96718,-0.95242,-1.0812,0.70043,-1.7655,-0.097167,-0.36234,0.64107,0.73424,-0.37472,0.02413,0.88537,0.19002,-0.32446 -3.6377,-0.11524,0.22216,-1.4145,1.4846,-1.4785,0.84057,-1.4927,1.0633,1.135,-0.10588,0.46041,0.77243,0.12377,-0.44409 -3.4264,1.5059,1.139,-0.6112,0.5221,-1.1104,1.5495,1.3499,0.72282,-0.22459,0.42378,-0.12763,-0.1292,-1.1343,0.98985 -1.695,-3.6906,0.58147,0.47004,2.454,-0.56253,1.1748,0.47573,0.44499,-0.49939,-0.57136,-1.8374,0.15731,-0.89349,0.20193 -3.0507,-1.2956,-1.6691,-1.4194,0.5129,0.36311,-1.4334,-0.60235,0.41229,-1.9675,-0.29582,0.30957,0.26316,-0.03379,0.78652 -3.1384,-1.9205,-1.8359,-1.5583,1.1638,1.0038,-1.4861,0.30843,0.47555,-1.4681,-1.4656,0.34139,-0.42305,0.44757,0.87923 -2.6533,-1.6315,-2.5949,-0.68357,0.76346,2.1294,-1.1561,-0.55532,0.25017,-1.2454,-1.6974,0.36847,-0.18314,0.68786,0.23761 -0.83746,-0.96006,-0.9514,-1.29,-0.64656,2.0835,-0.99411,-0.84631,0.022955,-0.55621,-0.86837,0.69627,1.367,1.5034,0.87398 -2.8452,-0.57388,-2.6382,-0.19688,-0.13348,0.93657,0.040835,-0.39971,0.46478,-1.675,-0.29827,-1.0589,0.43039,-0.71133,-0.15874 -2.3371,-0.58789,-2.3648,-0.026632,0.2275,2.34,-0.3747,-0.87236,0.71903,-1.3137,-0.1337,-0.19942,0.95104,0.80286,-0.32855 -2.35,-0.76406,-0.47972,-1.0338,0.085147,1.6397,-0.83987,0.1465,0.79905,-0.95084,0.16913,-0.83299,1.9207,1.796,0.54669 -2.7514,-1.028,0.21153,-1.3997,0.28374,1.6727,-0.25639,-0.44063,1.1628,-1.2411,0.42992,-1.607,1.5005,0.49365,0.73299 -2.3512,-1.0148,-1.8745,-0.96903,0.43199,1.8583,-1.3756,-0.43813,0.056795,-1.0012,-0.76345,0.024682,1.1742,0.91184,1.5851 -2.307,-0.97455,-2.5102,-0.35901,0.24727,1.7813,-0.99627,-1.243,0.34366,-1.7268,-0.61829,0.75832,0.54855,0.43315,0.77306 ================================================ FILE: bayesian_ml/1/nb.py ================================================ # Naive Bayes with prior on mean and precision of Gaussian # mean | precision ~ N(0, c / precision) # precision ~ Gamma(a, b) import numpy as np import pandas as pd import matplotlib.pyplot as plt from scipy.stats import t from sortedcontainers import SortedList class NB: def fit(self, X, Y): self.pyy = [] self.tinfo = [] N, D = X.shape for c in (0, 1): pyy_c = (1.0 + np.sum(Y == c)) / (N + 1.0 + 1.0) self.pyy.append(pyy_c) # for each dimension, we need to store the data we need to calculate # the posterior predictive distribution # t-distribution with 3 params: df, center, scale Xc = X[Y == c] tinfo_c = [] for d in xrange(D): # first calculate the parameters of the normal gamma xbar = Xc[:,d].mean() mu = N*xbar / (1.0 + N) precision = 1.0 + N alpha = 1.0 + N/2.0 beta = 1.0 + 0.5*Xc[:,d].var()*N + 0.5*N*(xbar*xbar)/precision tinfo_cd = { 'df': 2*alpha, 'center': mu, 'scale': np.sqrt( beta*(precision + 1)/(alpha * precision) ), } tinfo_c.append(tinfo_cd) self.tinfo.append(tinfo_c) def predict_proba(self, X): N, D = X.shape # P = np.zeros(N) # for n in xrange(N): # x = X[n] # pyx = [] # for c in (0, 1): # pycx = self.pyy[c] # for d in xrange(D): # tinfo_cd = self.tinfo[c][d] # pdf_d = t.pdf(x[d], df=tinfo_cd['df'], loc=tinfo_cd['center'], scale=tinfo_cd['scale']) # pycx *= pdf_d # pyx.append(pycx) # py1x = pyx[1] / (pyx[0] + pyx[1]) # # print "p(y=1|x):", py1x # P[n] = py1x posteriors = np.zeros((N, 2)) for c in (0, 1): probability_matrix = np.zeros((N, D)) for d in xrange(D): tinfo_cd = self.tinfo[c][d] pdf_d = t.pdf(X[:,d], df=tinfo_cd['df'], loc=tinfo_cd['center'], scale=tinfo_cd['scale']) probability_matrix[:,d] = pdf_d posteriors_c = np.prod(probability_matrix, axis=1)*self.pyy[c] posteriors[:,c] = posteriors_c P = posteriors[:,1] / np.sum(posteriors, axis=1) return P def predict(self, X): return np.round(self.predict_proba(X)) def score(self, X, Y): return np.mean(self.predict(X) == Y) def confusion_matrix(self, X, Y): P = self.predict(X) M = np.zeros((2, 2)) M[0,0] = np.sum(P[Y == 0] == Y[Y == 0]) M[0,1] = np.sum(P[Y == 0] != Y[Y == 0]) M[1,0] = np.sum(P[Y == 1] != Y[Y == 1]) M[1,1] = np.sum(P[Y == 1] == Y[Y == 1]) return M def get_3_misclassified(self, X, Y): P = self.predict(X) N = len(Y) samples = np.random.choice(N, 3, replace=False, p=(P != Y)/float(np.sum(P != Y))) return X[samples], Y[samples], P[samples] def get_3_most_ambiguous(self, X, Y): P = self.predict_proba(X) N = len(X) sl = SortedList(load=3) # stores (distance, sample index) tuples for n in xrange(N): p = P[n] dist = np.abs(p - 0.5) if len(sl) < 3: sl.add( (dist, n) ) else: if dist < sl[-1][0]: del sl[-1] sl.add( (dist, n) ) indexes = [v for k, v in sl] return X[indexes], Y[indexes] def plot_image(x, Q, title): im = Q.dot(x) plt.imshow(im.reshape(28,28), cmap='gray') plt.title(title) plt.show() if __name__ == '__main__': Xtrain = pd.read_csv('Xtrain.csv', header=None).as_matrix() Xtest = pd.read_csv('Xtest.csv', header=None).as_matrix() Ytrain = pd.read_csv('ytrain.csv', header=None).as_matrix().flatten() # print "Ytrain.shape:", Ytrain.shape Ytest = pd.read_csv('ytest.csv', header=None).as_matrix().flatten() model = NB() model.fit(Xtrain, Ytrain) print "train accuracy:", model.score(Xtrain, Ytrain) print "test accuracy:", model.score(Xtest, Ytest) # confusion matrix M = model.confusion_matrix(Xtest, Ytest) print "confusion matrix:" print M print "N:", len(Ytest) print "sum(M):", M.sum() # plot 3 misclassified Q = pd.read_csv('Q.csv', header=None).as_matrix() misclassified, targets, predictions = model.get_3_misclassified(Xtrain, Ytrain) for x, y, p in zip(misclassified, targets, predictions): plot_image(x, Q, 'misclassified target=%s prediction=%s' % (y, int(p))) # ambiguous ambiguous, targets = model.get_3_most_ambiguous(Xtrain, Ytrain) for x, y in zip(ambiguous, targets): plot_image(x, Q, 'ambiguous target=%s' % y) ================================================ FILE: bayesian_ml/1/ytest.csv ================================================ 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 ================================================ FILE: bayesian_ml/1/ytrain.csv ================================================ 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 ================================================ FILE: bayesian_ml/2/Q.csv ================================================ -7.4867e-19,5.6315e-19,1.973e-19,-6.7717e-19,2.373e-18,-1.4162e-19,-5.6552e-19,-1.2146e-19,7.3088e-19,5.5656e-19,1.2218e-18,1.0673e-18,3.0638e-18,1.7933e-18,-1.5816e-19 -6.011e-18,4.4018e-18,4.4044e-18,-6.3448e-18,1.94e-17,-1.7822e-18,-4.086e-18,1.1235e-18,5.5901e-18,4.6042e-18,8.9926e-18,8.3237e-18,2.6068e-17,1.5782e-17,-1.501e-18 -5.5492e-18,3.9852e-18,5.3138e-18,-5.9229e-18,1.9185e-17,-1.1093e-18,-3.3366e-18,-8.1893e-19,3.7768e-18,2.4595e-18,8.6731e-18,8.3354e-18,2.3839e-17,1.4832e-17,-6.7029e-20 -6.583e-18,3.9562e-18,4.6542e-18,-8.8559e-18,2.2705e-17,-2.3685e-18,-4.0349e-18,-2.6403e-18,6.2138e-18,5.6977e-18,1.0569e-17,9.7509e-18,2.853e-17,1.7109e-17,-1.7819e-18 -4.8539e-18,5.8247e-18,4.1718e-18,-6.5081e-18,1.8419e-17,-5.2626e-19,-4.8044e-18,-6.2812e-19,6.141e-18,3.5582e-18,8.9691e-18,9.1986e-18,2.4707e-17,1.563e-17,-1.5153e-18 -3.5854e-18,2.3606e-18,4.5114e-18,-4.9643e-18,1.3842e-17,-6.5907e-19,-2.8941e-18,-4.7605e-19,6.2247e-18,3.8328e-18,7.1909e-18,7.6724e-18,1.9494e-17,1.1422e-17,-1.2724e-18 -1.4039e-18,8.9214e-19,1.291e-18,-1.5682e-18,5.3071e-18,8.1127e-23,-1.161e-18,-4.9599e-19,1.7598e-18,1.2958e-18,2.5956e-18,2.3683e-18,7.2358e-18,4.2655e-18,-3.6548e-19 -8.5218e-18,8.5522e-18,4.3194e-18,-8.4601e-18,2.6117e-17,-6.0864e-19,-6.3716e-18,-2.0189e-18,8.9574e-18,7.1407e-18,1.2315e-17,8.913e-18,3.3396e-17,1.9457e-17,-1.142e-18 -9.7639e-18,8.021e-18,8.6407e-18,-9.2142e-18,3.1929e-17,-1.7551e-18,-5.5628e-18,-1.6311e-18,7.3616e-18,7.4003e-18,1.5293e-17,1.5608e-17,3.8518e-17,2.7512e-17,-2.8847e-18 -1.2744e-18,1.2661e-18,1.2556e-18,-1.4812e-18,4.9142e-18,-1.6944e-19,-7.32e-19,-3.3056e-19,1.5951e-18,1.0363e-18,2.4082e-18,2.0966e-18,6.1122e-18,4.1287e-18,-1.5852e-19 -6.0466e-18,5.6187e-18,8.087e-18,-7.2409e-18,2.62e-17,-2.5222e-18,-6.13e-18,-2.9832e-18,1.31e-17,7.866e-18,1.5546e-17,1.0797e-17,3.5016e-17,2.1604e-17,-1.9611e-18 -1.17e-17,6.4707e-18,5.5805e-18,-1.0522e-17,2.6971e-17,-1.7895e-19,-5.9102e-18,-6.0565e-19,9.2093e-18,4.9204e-18,1.4625e-17,1.4817e-17,3.5127e-17,2.5327e-17,-2.1979e-18 -6.9103e-19,4.3463e-19,5.4274e-19,-8.8561e-19,2.5707e-18,-1.9468e-19,-4.6275e-19,-1.576e-19,6.161e-19,4.676e-19,1.0759e-18,8.5213e-19,3.1821e-18,1.769e-18,-2.4132e-20 -4.0365e-18,3.2797e-18,2.5166e-18,-5.2998e-18,1.4414e-17,6.5557e-19,-4.0213e-18,-8.4823e-19,4.3092e-18,3.7896e-18,7.7954e-18,7.4451e-18,2.0082e-17,1.2891e-17,-1.3899e-18 -8.2524e-18,4.5777e-18,7.0009e-18,-9.3984e-18,2.5118e-17,-1.8716e-18,-4.3765e-18,-1.0959e-18,7.6141e-18,6.2938e-18,1.2644e-17,8.0634e-18,3.3784e-17,1.9519e-17,-9.6456e-19 -5.8104e-18,6.2973e-18,7.8161e-18,-8.5119e-18,2.5462e-17,-3.1688e-20,-5.6616e-18,-1.7517e-18,6.2827e-18,6.1381e-18,1.2008e-17,8.9887e-18,3.2988e-17,1.9922e-17,-2.5239e-18 -8.8931e-18,8.3657e-18,6.6394e-18,-8.7401e-18,2.6354e-17,-7.5187e-19,-5.6616e-18,-2.2361e-18,7.7238e-18,8.2954e-18,1.3295e-17,1.3675e-17,3.1326e-17,2.3226e-17,-2.6304e-18 -6.3602e-18,4.8369e-18,2.4537e-18,-2.2582e-18,1.6375e-17,1.2161e-19,-4.0497e-18,-2.5718e-18,8.129e-18,4.004e-18,7.6075e-18,6.2324e-18,2.49e-17,1.4367e-17,-5.7086e-19 -5.4728e-18,3.7045e-18,6.4009e-18,-6.9563e-18,1.9124e-17,-7.9748e-19,-3.7507e-18,-1.13e-18,5.5516e-18,3.3933e-18,8.2959e-18,8.7071e-18,2.4927e-17,1.4197e-17,-4.0817e-19 -3.1113e-18,2.6183e-18,3.2548e-18,-4.1522e-18,1.2249e-17,-5.3486e-19,-2.1024e-18,1.3337e-19,2.7854e-18,3.6371e-18,6.0933e-18,5.9073e-18,1.4433e-17,9.33e-18,-1.3596e-18 -5.5648e-18,2.4347e-18,4.7689e-18,-3.9755e-18,1.9524e-17,-2.0925e-18,-3.6363e-18,-4.0473e-19,6.2775e-18,3.9464e-18,8.6585e-18,8.1866e-18,2.4051e-17,1.4696e-17,-5.3165e-19 -1.6568e-19,1.6894e-19,2.3257e-19,-2.9092e-19,6.6811e-19,-9.2e-21,-1.19e-19,-1.0538e-20,1.5553e-19,2.2983e-19,3.4635e-19,3.013e-19,8.5785e-19,5.5171e-19,-2.9391e-20 -8.0709e-18,5.3261e-18,7.4744e-18,-6.7263e-18,2.0751e-17,2.1036e-19,-5.4563e-18,-3.6482e-19,1.0639e-17,6.109e-18,1.1437e-17,9.0511e-18,3.1213e-17,1.9498e-17,-1.9533e-18 -9.7557e-18,8.1887e-18,6.4029e-18,-7.5209e-18,2.6108e-17,-1.9721e-18,-6.5026e-18,-3.232e-18,1.1508e-17,6.8542e-18,1.3334e-17,1.0599e-17,3.6994e-17,2.1498e-17,-1.2942e-18 -9.4016e-18,9.503e-18,5.0208e-18,-8.5922e-18,2.5033e-17,-1.6837e-18,-5.8412e-18,2.7844e-19,1.2177e-17,5.7217e-18,1.4385e-17,9.9386e-18,3.4004e-17,2.155e-17,-1.8267e-18 -3.0226e-19,1.9717e-19,1.955e-19,-2.7872e-19,1.0685e-18,-3.0572e-20,-2.3457e-19,-1.031e-19,4.1522e-19,2.4631e-19,5.5285e-19,4.3941e-19,1.5418e-18,9.076e-19,-2.3226e-21 -7.9695e-18,6.0614e-18,1.0013e-17,-9.945e-18,3.0856e-17,-8.3311e-19,-5.6679e-18,-2.8781e-18,1.0762e-17,7.2886e-18,1.519e-17,1.4133e-17,3.8734e-17,2.3253e-17,-2.1544e-18 -7.5238e-19,6.6841e-19,7.9005e-19,-1.2413e-18,3.2491e-18,-9.0119e-20,-7.8506e-19,5.7969e-20,8.9031e-19,9.3871e-19,1.488e-18,1.1394e-18,3.8504e-18,2.5809e-18,-2.853e-19 -7.3665e-18,6.5073e-18,7.3888e-18,-8.8375e-18,2.7931e-17,-2.3988e-18,-6.2852e-18,-7.1268e-19,1.1131e-17,6.6605e-18,1.2079e-17,1.3042e-17,3.6386e-17,2.1699e-17,-7.6382e-19 -5.1186e-18,5.4054e-18,3.1762e-18,-3.3917e-18,1.6205e-17,8.8137e-19,-3.808e-18,-2.611e-18,7.856e-18,4.3272e-18,7.7098e-18,7.2169e-18,2.3605e-17,1.4044e-17,-9.7976e-19 -1.7855e-19,1.5614e-19,9.3929e-20,-1.5899e-19,5.5801e-19,-8.6565e-21,-7.2631e-20,-1.4526e-20,2.1996e-19,1.004e-19,2.7594e-19,2.2051e-19,7.342e-19,4.0715e-19,-2.1427e-20 -9.1687e-19,5.9531e-19,1.0908e-18,-1.671e-18,4.4768e-18,-3.7063e-19,-4.5806e-19,-7.6409e-20,6.859e-19,1.0078e-18,2.1513e-18,1.9582e-18,5.5499e-18,3.3266e-18,-1.4692e-19 -6.4241e-18,4.6888e-18,3.7933e-18,-5.0429e-18,1.8474e-17,-9.317e-20,-4.4275e-18,-1.1298e-18,5.9189e-18,4.8484e-18,9.2033e-18,8.4812e-18,2.5681e-17,1.7036e-17,-1.5144e-18 -7.6229e-18,5.6977e-18,5.3822e-18,-6.9519e-18,2.2989e-17,-1.5386e-18,-4.0534e-18,-7.4967e-19,1.0114e-17,7.9531e-18,1.1145e-17,8.6446e-18,3.2806e-17,2.021e-17,-1.2672e-18 -3.4401e-19,2.8835e-19,2.6754e-19,-3.4559e-19,1.2342e-18,-9.3413e-20,-2.8662e-19,-2.5366e-20,3.3675e-19,2.3142e-19,6.0428e-19,6.1936e-19,1.5875e-18,9.2196e-19,-1.3078e-19 -1.8568e-18,1.947e-18,7.4171e-19,-1.3479e-18,5.0503e-18,-1.2942e-19,-1.1902e-18,-2.9588e-19,2.2434e-18,1.7638e-18,2.7028e-18,2.4343e-18,7.1509e-18,4.4264e-18,-2.6336e-19 -2.628e-18,1.5108e-18,1.9317e-18,-3.2226e-18,8.1468e-18,-4.4557e-19,-1.819e-18,-4.941e-19,2.1306e-18,1.9153e-18,3.1653e-18,3.7328e-18,9.5465e-18,6.0664e-18,-6.0891e-19 -7.1712e-18,5.177e-18,5.4347e-18,-8.5082e-18,2.2077e-17,-1.1687e-18,-4.3743e-18,-1.4563e-20,9.265e-18,7.2652e-18,1.1607e-17,9.5899e-18,2.9107e-17,2.0585e-17,-1.8832e-18 -8.4372e-18,6.2943e-18,9.1348e-18,-9.626e-18,2.7854e-17,-3.9201e-19,-5.2248e-18,-2.3334e-18,6.7699e-18,5.3806e-18,1.1857e-17,1.1552e-17,3.2906e-17,1.9219e-17,-2.0727e-18 -5.6143e-18,4.9264e-18,4.0871e-18,-4.7651e-18,1.8423e-17,-3.6894e-19,-4.6373e-18,-9.9158e-19,8.0117e-18,4.6903e-18,9.5468e-18,7.3021e-18,2.6782e-17,1.5236e-17,-7.0794e-19 -8.9782e-18,4.9943e-18,6.8061e-18,-1.0214e-17,2.7158e-17,-1.0415e-18,-5.6317e-18,-8.8953e-19,8.0052e-18,6.3716e-18,1.4146e-17,1.4546e-17,3.3497e-17,2.5973e-17,-1.2204e-18 2.6742e-06,-3.9108e-06,-8.3876e-06,1.041e-05,4.11e-06,1.1774e-05,-2.2292e-06,7.0048e-06,-1.0741e-05,7.4552e-06,1.7807e-05,1.5329e-06,1.2606e-05,1.596e-05,5.9898e-06 1.6649e-05,-2.4348e-05,-5.2219e-05,6.4811e-05,2.5588e-05,7.33e-05,-1.3878e-05,4.3611e-05,-6.6873e-05,4.6415e-05,0.00011086,9.5438e-06,7.848e-05,9.9362e-05,3.7291e-05 -1.8994e-18,2.0585e-18,1.9547e-18,-2.2397e-18,9.1769e-18,-7.1572e-19,-1.6663e-18,-9.6119e-19,3.4165e-18,2.069e-18,4.2013e-18,4.1718e-18,1.0752e-17,7.3523e-18,-4.7849e-19 -6.7659e-18,6.0993e-18,4.8304e-18,-6.3006e-18,2.2213e-17,4.4344e-19,-4.3298e-18,-8.2245e-19,7.8443e-18,7.0471e-18,1.0383e-17,7.9354e-18,3.1485e-17,1.7833e-17,-1.9253e-18 -4.7512e-18,5.6858e-18,3.9184e-18,-5.427e-18,1.9438e-17,-1.653e-18,-3.4258e-18,-1.7144e-18,3.8818e-18,5.0842e-18,8.1706e-18,7.8706e-18,2.5202e-17,1.4741e-17,-1.2817e-18 -3.3212e-18,1.1474e-18,1.9358e-18,-3.0037e-18,9.6331e-18,-8.4001e-19,-2.1879e-18,-4.0259e-19,3.4389e-18,2.1535e-18,4.245e-18,4.2825e-18,1.228e-17,7.5649e-18,-6.4102e-19 -2.9699e-18,1.56e-18,2.827e-18,-2.8602e-18,9.3821e-18,4.7582e-19,-2.1342e-18,-7.8143e-21,2.715e-18,2.039e-18,4.1308e-18,3.9274e-18,1.1371e-17,7.477e-18,-3.7638e-19 -6.2843e-18,6.2969e-18,4.78e-18,-7.6064e-18,2.2227e-17,-3.0409e-19,-4.5653e-18,-1.429e-18,9.034e-18,6.748e-18,1.1373e-17,9.1603e-18,2.9611e-17,1.7497e-17,-1.3087e-18 -7.9674e-18,7.5603e-18,7.8196e-18,-9.6804e-18,2.7418e-17,-1.3495e-18,-6.8006e-18,-2.0382e-18,1.2934e-17,8.2375e-18,1.3833e-17,1.1695e-17,3.4047e-17,1.9915e-17,-6.0819e-19 -6.3578e-19,4.8709e-19,7.6807e-19,-7.3746e-19,2.5702e-18,-3.6972e-19,-4.5962e-19,9.4102e-20,8.9146e-19,6.7732e-19,1.1939e-18,8.9589e-19,3.3392e-18,2.1373e-18,-1.408e-19 -3.1544e-18,3.123e-18,2.6608e-18,-4.7286e-18,1.3265e-17,-6.8872e-20,-3.0776e-18,-2.6737e-19,3.9299e-18,2.9514e-18,6.1965e-18,5.3772e-18,1.5413e-17,9.9149e-18,-1.0193e-18 -8.6787e-18,6.4853e-18,7.7946e-18,-8.2065e-18,2.5559e-17,-1.4277e-18,-3.8277e-18,-3.1358e-19,8.8797e-18,8.1033e-18,1.3607e-17,1.2367e-17,3.1997e-17,2.1245e-17,-1.2535e-18 -7.6224e-18,1.0242e-17,7.6707e-18,-6.8145e-18,2.8599e-17,-1.6883e-18,-6.0616e-18,-3.9097e-18,9.7391e-18,6.3037e-18,1.2661e-17,1.4045e-17,3.9981e-17,2.6453e-17,-2.3571e-18 -7.2868e-18,6.5039e-18,6.3996e-18,-7.9398e-18,3.2759e-17,6.1023e-19,-7.2255e-18,-3.9272e-18,1.2008e-17,6.9312e-18,1.5032e-17,1.51e-17,4.0119e-17,2.6737e-17,-3.3262e-18 -4.0425e-18,4.3115e-18,2.6734e-18,-4.8384e-18,1.386e-17,-8.7521e-19,-2.456e-18,-1.3359e-18,5.4004e-18,2.9597e-18,6.6391e-18,5.92e-18,1.8596e-17,1.1114e-17,-4.4445e-19 -4.4216e-18,3.2291e-18,1.5271e-18,-3.5975e-18,1.3635e-17,-8.3325e-20,-2.7205e-18,-1.4131e-18,5.6898e-18,4.0095e-18,7.4963e-18,6.8818e-18,1.8148e-17,1.1686e-17,-5.023e-19 -3.1465e-18,2.7346e-18,3.4786e-18,-4.1496e-18,1.1374e-17,-1.5511e-19,-2.605e-18,-6.8765e-19,3.8746e-18,3.1941e-18,6.2502e-18,3.5983e-18,1.5197e-17,8.0763e-18,-4.539e-19 -4.6141e-18,1.4846e-18,4.9131e-18,-5.2146e-18,1.5235e-17,-3.2172e-19,-2.1165e-18,-1.37e-18,4.2322e-18,3.5789e-18,7.5732e-18,6.7182e-18,1.8684e-17,1.1998e-17,-1.0667e-18 -8.8585e-18,6.8642e-18,5.9722e-18,-9.5771e-18,2.5803e-17,-1.5152e-19,-6.0697e-18,-9.3551e-19,9.1064e-18,7.7482e-18,1.2058e-17,1.1341e-17,3.2675e-17,1.9182e-17,-1.5826e-18 -7.1299e-18,8.292e-18,5.1338e-18,-8.2061e-18,2.4985e-17,-1.567e-19,-4.3796e-18,-1.7807e-18,6.1613e-18,7.4217e-18,1.2353e-17,1.0756e-17,3.3648e-17,1.9956e-17,-1.2352e-18 -1.0828e-17,8.0402e-18,8.0811e-18,-1.3406e-17,3.4545e-17,-9.7561e-20,-6.1218e-18,-3.643e-18,1.0333e-17,7.1302e-18,1.5749e-17,1.3164e-17,4.3321e-17,2.6609e-17,-8.1487e-19 6.4694e-06,-9.4603e-06,-1.0078e-05,7.7447e-06,-5.5471e-06,1.4203e-05,1.3504e-05,3.1463e-06,-7.1776e-06,-8.8839e-06,-9.1686e-06,-3.1624e-06,6.9852e-06,-3.5731e-06,2.2555e-05 2.8609e-05,-4.1835e-05,-4.4569e-05,3.4249e-05,-2.4531e-05,6.2809e-05,5.9716e-05,1.3914e-05,-3.1741e-05,-3.9287e-05,-4.0545e-05,-1.3985e-05,3.089e-05,-1.5801e-05,9.9745e-05 4.888e-06,-7.1478e-06,-7.6148e-06,5.8516e-06,-4.1912e-06,1.0731e-05,1.0203e-05,2.3772e-06,-5.4231e-06,-6.7123e-06,-6.9273e-06,-2.3893e-06,5.2777e-06,-2.6997e-06,1.7042e-05 -1.6092e-18,1.2223e-18,1.5229e-18,-1.3892e-18,5.4861e-18,1.6348e-19,-8.7242e-19,-3.5358e-19,1.9845e-18,1.0677e-18,2.4753e-18,1.7891e-18,7.5554e-18,3.8181e-18,-4.503e-19 -3.3041e-18,2.1427e-18,2.4793e-18,-2.4913e-18,1.0987e-17,1.0585e-19,-1.8949e-18,1.9877e-19,3.7746e-18,2.4294e-18,5.0455e-18,3.9981e-18,1.4454e-17,8.4402e-18,-7.775e-19 -7.0684e-18,4.3143e-18,8.6404e-18,-9.1849e-18,2.7604e-17,-2.5187e-18,-7.829e-18,-2.2718e-18,1.3329e-17,8.2034e-18,1.3999e-17,1.1174e-17,3.3428e-17,2.0334e-17,-3.2371e-18 -2.1551e-06,-8.378e-06,-4.5739e-05,1.9506e-05,4.3006e-06,5.3625e-05,-5.0767e-06,2.3797e-05,-2.3369e-05,1.1366e-07,8.4292e-05,-3.8914e-05,-3.005e-05,4.6631e-05,1.2869e-05 1.9713e-05,-5.2561e-05,-0.0001356,0.00011115,4.566e-05,0.00019023,-1.7383e-05,7.7408e-05,-0.00014171,2.0583e-05,0.00031239,-2.9313e-05,9.2688e-05,0.00017932,8.866e-05 5.9989e-05,-0.00010983,-0.00015249,0.00019054,9.635e-05,0.00029193,3.9397e-07,5.9761e-05,-0.00031059,2.7356e-06,0.00049016,0.00012992,0.00044133,0.00020208,0.00020924 5.6053e-05,-8.3478e-05,-6.7279e-05,8.9638e-05,6.7749e-05,0.00012999,9.6288e-05,-3.3406e-05,-0.00020448,-0.00010109,0.00019692,5.4193e-05,0.00031791,6.6772e-05,0.00022575 3.6807e-05,-7.8617e-05,-0.00010387,0.00012643,9.3715e-05,5.1959e-05,0.00017023,6.9351e-05,-6.1543e-05,-0.00021954,6.095e-05,-0.00021287,4.0036e-05,7.3258e-05,0.00019928 6.8734e-06,-5.3957e-05,-9.4628e-05,0.00012633,5.4401e-05,0.00010279,7.664e-05,0.00010068,6.5391e-06,-0.0001141,5.4569e-05,-0.0002037,1.5638e-05,4.1766e-05,9.9944e-05 -8.5956e-07,-3.0861e-06,-6.9614e-06,1.1706e-05,3.7293e-06,1.1453e-05,3.0828e-07,1.5003e-05,5.6551e-06,-7.5721e-06,5.3779e-06,-1.5065e-05,-4.8293e-06,5.1222e-06,1.9137e-06 3.5295e-05,-4.0209e-05,-2.9711e-05,0.00014926,-1.6098e-05,-2.3494e-05,4.1101e-05,-6.6314e-05,-5.1053e-05,-0.00018861,3.6144e-05,-9.1797e-05,1.1123e-06,5.6759e-05,8.7077e-05 3.7641e-05,-3.8615e-05,-2.5589e-05,0.00011406,-1.4862e-05,-6.0409e-06,3.7926e-05,-6.6041e-05,-5.2377e-05,-0.00016497,1.522e-05,-7.9934e-05,1.9817e-05,2.9949e-05,7.9821e-05 2.0833e-05,-1.7388e-05,-3.7037e-05,4.4289e-05,-2.7201e-05,4.6729e-05,4.8587e-05,-1.8031e-05,-4.0012e-05,-0.00013744,-2.3535e-05,-2.9109e-06,3.6024e-05,-3.9255e-05,-6.0973e-05 2.1625e-05,-1.8027e-05,-3.9359e-05,4.6513e-05,-2.8922e-05,4.9671e-05,5.1499e-05,-1.8224e-05,-4.1951e-05,-0.00014513,-2.4885e-05,-2.1174e-06,3.7741e-05,-4.1805e-05,-6.6433e-05 -6.2415e-18,4.5474e-18,5.0909e-18,-7.5057e-18,2.298e-17,-4.0389e-19,-4.6354e-18,-1.2713e-18,8.3293e-18,4.0202e-18,1.0501e-17,7.6003e-18,2.8137e-17,1.831e-17,-1.9473e-18 -3.4319e-18,2.077e-18,2.8904e-18,-2.463e-18,9.9222e-18,-7.7195e-19,-2.083e-18,-9.8393e-19,3.1913e-18,2.4886e-18,4.9975e-18,4.3545e-18,1.2986e-17,7.8974e-18,-4.0729e-19 -2.9183e-18,2.4051e-18,2.8226e-18,-2.3766e-18,9.9352e-18,-1.0158e-19,-2.156e-18,4.3101e-19,3.2521e-18,2.2285e-18,4.2611e-18,4.1291e-18,1.209e-17,7.5939e-18,-5.6952e-19 -3.7494e-18,2.4643e-18,4.3757e-18,-5.0826e-18,1.4431e-17,-1.0053e-18,-2.7093e-18,-1.4038e-18,6.0738e-18,3.5464e-18,6.3066e-18,6.6156e-18,1.828e-17,1.118e-17,-6.1964e-19 -5.3215e-18,3.5663e-18,3.5087e-18,-4.2389e-18,1.7043e-17,-4.1235e-19,-2.3153e-18,-1.6167e-18,5.9134e-18,3.2008e-18,8.9973e-18,7.6483e-18,2.4141e-17,1.4903e-17,-1.2704e-18 -8.7151e-19,7.6823e-19,1.211e-18,-1.187e-18,4.1537e-18,6.6014e-20,-8.8294e-19,-6.4227e-19,9.6003e-19,8.7648e-19,1.7563e-18,1.8387e-18,4.903e-18,3.202e-18,-1.429e-19 -1.5918e-18,1.3528e-18,2.6789e-19,-1.4177e-18,4.356e-18,8.7318e-20,-6.8501e-19,-1.6034e-19,2.2792e-18,9.75e-19,1.9844e-18,1.5875e-18,5.9237e-18,3.2288e-18,6.6258e-20 -2.3099e-18,1.2181e-18,1.8501e-18,-2.3671e-18,7.5468e-18,-3.5792e-19,-1.5001e-18,-3.3773e-19,2.5236e-18,1.8185e-18,3.7081e-18,3.7768e-18,9.5708e-18,6.5458e-18,-4.149e-19 -1.2498e-18,8.243e-19,8.2959e-19,-1.1563e-18,3.653e-18,-1.0448e-19,-4.8433e-19,-1.4448e-19,1.3926e-18,1.0461e-18,1.6666e-18,1.8868e-18,4.3182e-18,2.7665e-18,-2.5084e-19 -8.1551e-19,8.3201e-19,8.3968e-19,-1.0152e-18,3.4141e-18,-2.3319e-19,-6.5658e-19,8.6422e-21,1.0061e-18,8.9211e-19,1.3886e-18,1.1027e-18,4.1348e-18,2.3607e-18,-1.9545e-19 -1.8176e-18,2.2603e-18,1.2185e-18,-2.1019e-18,6.428e-18,-3.1747e-19,-1.5121e-18,-2.5807e-19,1.648e-18,1.8698e-18,2.7467e-18,2.5902e-18,7.9883e-18,5.11e-18,-6.0254e-19 3.6894e-05,-5.3099e-05,-5.807e-05,3.9376e-05,-3.5624e-05,8.5327e-05,7.5306e-05,2.3531e-05,-5.1719e-05,-4.4491e-05,-6.4021e-05,-2.2862e-05,5.0988e-05,-2.1447e-05,0.00011642 6.3653e-05,-8.6375e-05,-0.00010548,3.6932e-05,-8.7901e-05,0.00017682,0.00012001,7.8439e-05,-0.00016028,-3.819e-05,-0.00018647,-6.7156e-05,0.00016199,-4.2224e-05,0.00011888 5.2341e-05,-5.9961e-05,-8.1962e-05,5.4645e-06,-6.8719e-05,0.00010304,9.4559e-05,5.1249e-05,-0.00014234,-2.2382e-05,-0.00015889,-5.01e-05,0.00013684,-2.1249e-05,8.6391e-05 0.00011963,-6.358e-05,-9.2838e-05,5.3614e-05,-0.00011075,1.5646e-05,0.00016273,-5.1569e-05,-0.00018009,-2.0207e-05,-5.5806e-05,-6.5297e-05,0.00023916,4.8959e-05,0.00032171 0.00030281,-0.00016815,-0.00012329,0.00019493,-0.00022158,0.00018734,0.00019801,-0.0001992,-0.00052077,0.00015213,9.1006e-05,-0.00036796,0.00066034,0.00025523,0.00092973 0.00029452,-0.00020923,-0.00012844,0.00031789,-0.00020667,0.00035123,-7.8173e-05,-0.0001872,-0.00062707,0.00021755,0.00049991,-0.0005273,0.00054541,0.00033615,0.00086209 0.00022643,-0.00016856,-0.00020185,0.00032198,1.1193e-05,0.00044852,-0.00019369,2.1843e-05,-0.00056453,0.00025422,0.00087188,-0.00030941,0.00050832,0.00036622,0.00032497 0.0001807,-0.00017614,-0.00029351,0.00043024,0.00016365,0.00046536,4.2203e-06,9.4897e-05,-0.00069159,0.00022598,0.0009191,-0.0001182,0.00040247,0.0003287,0.00027211 0.00015643,-0.00018372,-0.00061893,0.00075562,0.00051469,0.00079526,-0.00017425,0.00039428,-0.00073848,-3.3423e-05,0.0015909,-0.00014926,0.00043693,0.00055696,0.00044277 0.00019338,-0.00015797,-0.00073611,0.00094681,0.00065199,0.0005495,9.5064e-05,0.0004938,-0.00062624,-0.00042104,0.00087914,-0.00089808,-3.4636e-05,0.00076066,0.00049885 0.00025636,-9.2508e-05,-0.00084423,0.0010709,0.00064502,0.00016521,0.00083431,0.00066654,-0.00051644,-0.00021899,0.00029204,-0.0012965,0.00035466,0.001093,0.00096927 0.00017942,-5.3088e-05,-0.00073935,0.0012022,0.00054855,-6.5127e-05,0.00096535,0.00028323,-0.00081561,-0.00023706,6.5678e-05,-0.0012941,0.0014011,0.0013944,0.0011095 0.00015237,-0.0002487,-0.00078349,0.0013391,0.00030434,-0.00086917,0.0011535,-0.00010794,-0.0010221,-3.411e-05,-0.00010508,-0.00095555,0.0020501,0.001542,0.00057684 0.00035116,-0.00083136,-0.00095569,0.0017418,-0.00012964,-0.0011893,0.0017113,-0.00085749,-0.0016361,-0.0012531,-0.00019795,-0.00073927,0.0022203,0.0012508,0.0002592 0.00033875,-0.0014209,-0.00093172,0.0019006,-0.00040237,-0.0016016,0.0017627,-0.0015243,-0.0025059,-0.0021761,-0.00025795,-5.0244e-05,0.0023328,-0.00072507,-0.00075474 0.00018802,-0.0014682,-0.000938,0.0017223,-0.00073612,-0.0012727,0.0011657,-0.001488,-0.0026128,-0.0020278,-0.00065082,0.00036123,0.0022512,-0.002331,-0.0014574 8.0594e-05,-0.0010329,-0.00034881,0.0010434,-0.00054378,-0.00044655,0.0002624,-0.00068336,-0.0016815,-0.0010891,-0.00027177,-6.0275e-05,0.00093655,-0.0022756,-0.00095685 6.976e-05,-0.00064312,-0.00014451,0.00067582,-0.00025888,0.00014533,-6.138e-05,-0.00018741,-0.00092754,-0.00027239,-4.791e-05,-0.00029366,0.0003732,-0.0013596,-0.00045546 3.9186e-05,-0.00020955,-1.6895e-05,0.00021749,-0.00010479,7.886e-05,-5.5629e-05,1.9895e-06,-0.00023149,-1.0188e-05,-6.1895e-05,-0.00013117,-2.633e-05,-0.00041684,-2.7739e-05 1.0238e-06,-2.2948e-05,-1.2864e-05,-7.589e-07,-2.8592e-05,-5.9665e-06,-3.5396e-05,-1.7895e-05,3.7857e-06,3.1747e-05,-6.8773e-05,1.7838e-05,-3.0502e-05,-5.4271e-05,3.191e-05 -1.0212e-17,8.0372e-18,7.0542e-18,-8.6655e-18,2.5997e-17,-1.705e-18,-8.0952e-18,-1.2917e-18,1.0839e-17,7.7418e-18,1.2707e-17,1.1727e-17,3.8551e-17,2.4686e-17,-1.4662e-18 -7.1217e-18,7.1888e-18,5.7462e-18,-1.2148e-17,3.4625e-17,-2.3485e-18,-8.0868e-18,-4.344e-18,8.7101e-18,5.7201e-18,1.509e-17,1.4382e-17,3.7797e-17,2.7449e-17,-2.6346e-18 -5.6664e-19,2.771e-19,5.5923e-19,-5.4101e-19,1.7642e-18,-7.9974e-20,-3.9429e-19,-1.4078e-19,7.6521e-19,3.558e-19,7.8111e-19,7.973e-19,2.3689e-18,1.423e-18,-1.0065e-19 -3.4383e-18,3.0131e-18,2.6805e-18,-4.566e-18,1.1926e-17,-5.1553e-19,-2.7797e-18,2.814e-19,3.0325e-18,4.3499e-18,6.0276e-18,4.4463e-18,1.4374e-17,1.0141e-17,-1.4071e-18 -1.0454e-17,9.2939e-18,7.3226e-18,-1.1618e-17,3.3969e-17,-4.9554e-19,-6.0597e-18,-2.0361e-18,5.8258e-18,7.5437e-18,1.4414e-17,1.428e-17,3.8826e-17,2.8613e-17,-3.2294e-18 1.3212e-05,8.189e-06,-2.4199e-05,-4.3373e-05,-1.7874e-05,-3.9195e-05,1.9802e-05,3.1183e-05,-2.167e-05,1.4399e-05,6.0696e-05,-1.2256e-06,9.6824e-06,-2.1973e-05,8.7636e-05 0.00012814,-0.00015919,-9.0966e-05,-6.8676e-05,-7.0446e-05,-0.00010178,0.00025792,0.00024233,-0.00011777,-5.0365e-05,3.6554e-05,0.00022996,3.0802e-06,0.00010748,4.0631e-05 0.00029363,-0.00034803,-0.00030648,-7.4845e-05,-0.00022267,-0.00020745,0.00065176,0.00044329,0.00015077,-0.00017204,9.0844e-05,0.00073671,0.00011047,0.00030006,0.00015506 0.00047304,-0.00042199,-0.00050335,-0.00011745,-0.00030902,-0.00026247,0.0008902,0.00057202,0.00011336,-0.00014579,0.00015828,0.00041242,-5.8771e-05,0.0004662,0.0011392 0.00094081,-0.00082823,-0.00091456,-0.00017665,-0.00067324,-6.9481e-05,0.0014723,0.00095643,-0.00021654,-0.0005265,0.0003687,7.3011e-05,-8.4263e-05,0.00050523,0.0021704 0.0018069,-0.0012855,-0.0014291,-0.00023041,-0.0010626,-0.00031402,0.0020297,0.0007327,-0.00058312,-0.00042151,0.00066308,-0.00048703,-0.00018596,0.00080354,0.0040565 0.0023267,-0.0012368,-0.0014829,0.00022838,-0.0014978,4.3823e-05,0.0012964,0.00027406,-0.0019783,0.00038856,0.00064882,-0.0020255,0.00050708,0.0018826,0.0054172 0.0029102,-0.0013941,-0.0011719,0.0010556,-0.0017966,0.00057604,0.00061714,-0.00021833,-0.0047417,0.001376,0.0026289,-0.0029033,0.00027718,0.0032092,0.0065525 0.0031399,-0.0016551,-0.0011877,0.0031681,-0.00091266,0.0019416,-0.00087348,-0.00094547,-0.0076459,0.0020901,0.0084024,-0.002448,0.0011506,0.0048819,0.0060307 0.002542,-0.0010967,-0.0014286,0.0040846,-0.0002088,0.0032571,-0.0023264,-0.00037564,-0.0077769,0.001273,0.011252,-0.0019056,0.0006953,0.0053397,0.0016599 0.0012525,-0.00020203,-0.002193,0.0039816,0.0012946,0.0042211,-0.0022228,0.0018267,-0.0056182,0.00042045,0.0099565,-0.0014392,-0.0012094,0.0047389,-0.0021042 0.00058314,0.00014931,-0.0025237,0.0042258,0.0033633,0.0039226,-0.0012328,0.0043699,-0.0050245,0.00024256,0.0071981,-0.0033088,-0.0016761,0.0040962,-0.002933 0.00090841,0.00090773,-0.0032826,0.0047194,0.0056767,0.00098267,0.0010657,0.006544,-0.004284,0.0011171,0.0015823,-0.0076158,0.00069325,0.0050488,-0.0011293 0.0016976,0.0015356,-0.0042313,0.0065903,0.006707,-0.0036705,0.0042252,0.006913,-0.0039536,0.0029614,-0.0027335,-0.011038,0.0060173,0.0097427,0.0016299 0.0028395,0.00099609,-0.0048016,0.0083053,0.0049278,-0.0087044,0.0086532,0.0033028,-0.0042583,0.00090556,-0.0028291,-0.010997,0.013391,0.015442,0.0046634 0.0035014,-0.0015298,-0.004197,0.010623,0.00052548,-0.014201,0.011814,-0.0024143,-0.006399,-0.0036611,-0.00026236,-0.006036,0.018345,0.018152,0.0038921 0.0028956,-0.0062951,-0.0033294,0.012537,-0.0042442,-0.018843,0.013569,-0.0079254,-0.011853,-0.0069842,0.00096559,0.00030035,0.017637,0.011072,-0.0038601 0.0016099,-0.010626,-0.0033665,0.013909,-0.0078467,-0.017664,0.010361,-0.0099111,-0.015351,-0.0095641,0.0025926,0.0036168,0.012536,-0.0043873,-0.011699 0.00099757,-0.011911,-0.0030234,0.011377,-0.0081506,-0.010372,0.0020341,-0.0055457,-0.014288,-0.0083471,0.00076316,0.002128,0.0034912,-0.016177,-0.013812 0.0005073,-0.010808,-0.0021928,0.0079114,-0.0055738,-0.0037989,-0.0038762,-0.00071522,-0.01164,-0.00246,-0.0006759,0.0014978,-0.00085348,-0.018141,-0.010757 0.00015269,-0.00724,-0.0014216,0.0046457,-0.0025574,-0.00028517,-0.0051218,0.00083541,-0.0071092,0.0016384,-0.0018481,0.0011737,-0.0010517,-0.012381,-0.0037425 1.1814e-05,-0.0028795,-0.00098993,0.0018935,-0.00078138,0.00040972,-0.0028336,0.00030021,-0.0022309,0.0011868,-0.0013534,0.0006566,-0.0013447,-0.0049584,1.1481e-05 -5.8762e-06,-0.00035203,-0.00030256,0.00027005,-0.00022159,7.4099e-05,-0.00050163,-1.3423e-05,-0.00022164,0.00014773,-0.0004509,0.00027381,-0.00028684,-0.00076848,0.00039842 -5.6106e-06,-4.7888e-05,-7.4874e-05,8.3362e-05,-2.3449e-05,6.8767e-06,-0.00010524,1.3239e-05,-7.6206e-06,1.2963e-05,-2.452e-05,0.00013074,3.3078e-05,-0.00020859,0.00015319 -5.1909e-18,4.4245e-18,2.9202e-18,-4.9172e-18,1.7182e-17,-1.6463e-19,-2.623e-18,-1.0836e-18,6.2741e-18,3.8502e-18,8.3385e-18,7.9826e-18,2.3115e-17,1.3895e-17,-7.6378e-19 -4.3868e-19,3.2123e-19,3.215e-19,-5.126e-19,1.7174e-18,-6.7792e-20,-3.8453e-19,-4.0779e-20,7.3028e-19,4.7399e-19,8.2337e-19,5.9351e-19,2.2305e-18,1.5068e-18,-2.0499e-19 -9.1881e-18,8.6769e-18,6.5059e-18,-8.703e-18,3.0942e-17,-1.4103e-18,-8.29e-18,-3.5441e-18,1.1209e-17,5.9157e-18,1.337e-17,1.4558e-17,3.9216e-17,2.5175e-17,-3.9961e-18 1.6383e-07,-1.9987e-07,-2.2463e-07,-6.5039e-08,-2.5043e-08,-1.6417e-07,3.9656e-07,-7.746e-08,3.9077e-07,-2.1091e-07,2.6667e-07,5.1325e-07,-1.5558e-07,1.638e-07,6.7903e-07 6.1885e-05,-5.301e-05,-6.9714e-05,-4.0522e-05,-1.5813e-06,-7.107e-05,0.00012087,7.2578e-05,1.5799e-05,-5.4429e-06,9.2197e-05,0.00011916,-1.0235e-06,2.4303e-05,0.00016996 0.00069922,-0.00058908,-0.00058099,-0.00054646,-7.2511e-05,-0.00077521,0.0012501,0.001057,8.5717e-05,1.5455e-06,0.0005566,0.0011901,-0.0001285,0.00035837,0.0011981 0.0018535,-0.0012986,-0.0017126,-0.0016761,-0.00093353,-0.0018024,0.0028454,0.0026131,0.00080619,-0.00082229,0.0016435,0.0022924,0.00027637,0.001277,0.003228 0.0039207,-0.0026014,-0.0036637,-0.0030625,-0.0024675,-0.0029839,0.0061407,0.0049529,0.0019321,-0.0018472,0.0020546,0.0036475,0.00016472,0.0023845,0.0062311 0.0063577,-0.0032865,-0.0052708,-0.0039546,-0.0041983,-0.0041313,0.0082489,0.0056352,0.0022743,-0.0024059,0.0016875,0.0004125,-0.00052434,0.0034906,0.010119 0.010117,-0.0037047,-0.0059398,-0.004906,-0.0068152,-0.0066937,0.0087287,0.003873,-0.00093719,-0.0037389,0.0020462,-0.007624,-0.003686,0.0053214,0.016667 0.013886,-0.002836,-0.0049439,-0.0042607,-0.013016,-0.007544,0.004728,0.00031826,-0.010909,-0.0029132,0.0043783,-0.017346,-0.005595,0.010088,0.025571 0.015562,-0.0010815,-0.0021688,-0.00048932,-0.016166,-0.0045618,-0.001685,-0.0047931,-0.025834,0.0017702,0.013032,-0.019541,-0.0055191,0.018217,0.027079 0.014397,-0.0012986,0.0011774,0.0061671,-0.012959,0.0043214,-0.0069389,-0.0071379,-0.0398,0.0081472,0.031918,-0.0096615,-0.0093141,0.027889,0.016368 0.010304,-0.001128,0.0016982,0.0084716,-0.0050122,0.013685,-0.010823,-0.0039972,-0.042207,0.010613,0.047302,0.00085793,-0.016779,0.033223,-0.0052683 0.0045882,0.00094387,-0.00098244,0.008341,0.006321,0.019456,-0.011044,0.0028487,-0.034586,0.0092104,0.046659,0.00023236,-0.023043,0.03728,-0.02434 0.0015697,0.0028085,-0.0040862,0.0092732,0.017077,0.019561,-0.0073843,0.009994,-0.026721,0.0060155,0.030365,-0.0058535,-0.021298,0.037985,-0.026868 0.0018559,0.0058835,-0.0070563,0.010644,0.024402,0.011363,-0.00024899,0.016731,-0.020841,0.0055799,0.0058967,-0.018898,-0.0090489,0.046411,-0.015835 0.0049682,0.0093629,-0.010549,0.015199,0.025126,-0.0090512,0.014678,0.017955,-0.016526,0.0059128,-0.016669,-0.031605,0.014149,0.063995,-0.001641 0.009007,0.0067394,-0.010984,0.019451,0.016244,-0.035685,0.032,0.0067211,-0.017178,-0.0070137,-0.021884,-0.031745,0.042468,0.083171,0.0090241 0.0096988,-0.0031039,-0.0083513,0.024339,-0.0060108,-0.059015,0.041354,-0.011561,-0.020747,-0.024152,-0.0087469,-0.012955,0.057276,0.084452,0.007612 0.0062473,-0.018683,-0.0016712,0.027017,-0.025333,-0.064226,0.033592,-0.023994,-0.031271,-0.034248,0.010409,0.0095576,0.044949,0.041637,-0.017658 0.0029744,-0.032209,0.0014306,0.028236,-0.034528,-0.048764,0.010726,-0.020788,-0.037012,-0.032736,0.019163,0.016803,0.015812,-0.017011,-0.041412 0.00070528,-0.037984,0.0010835,0.021707,-0.031155,-0.023585,-0.012331,-0.007056,-0.035488,-0.012962,0.011774,0.0087046,-0.0076854,-0.051594,-0.045741 3.6374e-05,-0.034795,-0.00048088,0.014255,-0.021701,-0.0028696,-0.025228,0.005845,-0.028948,0.0074979,-0.0024199,-0.00076472,-0.012498,-0.051621,-0.028346 -0.00045417,-0.024629,-0.0012612,0.0076922,-0.011412,0.0046768,-0.024461,0.0092424,-0.018236,0.015181,-0.0095241,-0.0037288,-0.0094725,-0.033094,-0.008586 -0.00030277,-0.010277,-0.0019676,0.0029277,-0.0044045,0.0033128,-0.012334,0.0041391,-0.0068631,0.0088371,-0.0070476,-0.00097666,-0.0040077,-0.012532,0.0020789 -0.00022428,-0.0018354,-0.0010074,0.00058237,-0.00073535,0.00058861,-0.0029711,0.00058161,-0.0010407,0.0019968,-0.0019955,-0.00016946,-0.0011072,-0.0019569,0.0023247 -2.257e-05,-0.00019518,-7.858e-05,0.00010287,-5.8744e-05,0.00013355,-0.00026752,-5.599e-05,-0.00015494,0.00025924,-0.00012445,-0.00020631,-0.00011715,-4.3946e-05,0.0003739 -1.6156e-18,2.0676e-18,1.2488e-18,-2.3215e-18,6.0967e-18,-2.0775e-19,-1.5929e-18,-4.6425e-20,1.4344e-18,1.8138e-18,3.0274e-18,2.161e-18,7.4292e-18,5.0265e-18,-2.056e-19 -3.0517e-18,1.2551e-18,2.9227e-18,-3.261e-18,9.7636e-18,-6.0752e-19,-1.6842e-18,-3.6679e-20,3.3066e-18,2.3835e-18,4.1546e-18,3.9624e-18,1.2274e-17,7.6043e-18,-7.064e-19 -1.3481e-18,1.1752e-18,9.8054e-19,-1.2044e-18,4.7144e-18,-5.4981e-20,-9.3997e-19,-3.3129e-19,1.1323e-18,9.5204e-19,2.056e-18,2.192e-18,5.861e-18,4.084e-18,-5.6876e-20 2.1298e-06,-2.5983e-06,-2.9202e-06,-8.455e-07,-3.2556e-07,-2.1342e-06,5.1553e-06,-1.007e-06,5.08e-06,-2.7419e-06,3.4667e-06,6.6723e-06,-2.0225e-06,2.1294e-06,8.8274e-06 0.00020524,-0.00023838,-0.00021635,-0.00016461,-3.7971e-05,-0.00026531,0.00043533,0.00034873,0.00015252,-8.9997e-05,0.00030614,0.00073786,3.5983e-05,0.00013131,0.00032835 0.0016146,-0.0012352,-0.001433,-0.0016081,-0.00043017,-0.0018673,0.0027394,0.0028667,0.00068635,-0.00035468,0.0016166,0.0031202,0.00014839,0.00076117,0.0019957 0.0040815,-0.0025168,-0.0039274,-0.0043655,-0.0018807,-0.004093,0.0060679,0.0066155,0.0024417,-0.0022137,0.0035486,0.0055378,0.00088257,0.0021986,0.0041484 0.0083594,-0.0043994,-0.0078578,-0.0076825,-0.0048416,-0.0072227,0.012363,0.010922,0.0050002,-0.0054158,0.0039909,0.0065516,3.1018e-05,0.0049449,0.0082482 0.01555,-0.0056936,-0.011536,-0.01195,-0.0098825,-0.012365,0.017737,0.013391,0.0047776,-0.0092001,0.0024837,-0.0027042,-0.0054345,0.0084505,0.017799 0.024436,-0.0043649,-0.012739,-0.016276,-0.017915,-0.017946,0.019586,0.010052,-0.0037553,-0.010863,-0.00049187,-0.023012,-0.019346,0.012278,0.033265 0.035987,-0.00026855,-0.0089061,-0.018846,-0.030588,-0.018444,0.013631,-0.00097972,-0.031414,-0.0068195,0.0048151,-0.043919,-0.034191,0.024741,0.051292 0.042604,0.0057332,-0.00088488,-0.014754,-0.035536,-0.0063098,0.0025261,-0.020499,-0.068435,0.010426,0.029351,-0.041268,-0.050341,0.041218,0.05069 0.0401,0.013467,0.011305,-0.0077136,-0.021279,0.023019,-0.010975,-0.035644,-0.096259,0.035148,0.071038,-0.0098587,-0.076138,0.05295,0.010419 0.030224,0.025634,0.019429,-0.0057716,0.012438,0.059512,-0.019427,-0.044332,-0.094552,0.054658,0.10018,0.025923,-0.10423,0.060604,-0.050525 0.013326,0.040024,0.023518,-0.0071851,0.05564,0.089046,-0.017227,-0.049452,-0.059681,0.055258,0.0906,0.049526,-0.11561,0.073422,-0.095478 -0.0039206,0.048231,0.027974,-0.0098739,0.093386,0.10051,-0.00099784,-0.049804,-0.018099,0.03362,0.045569,0.054217,-0.093286,0.10052,-0.099895 -0.017951,0.045993,0.02927,-0.014192,0.11422,0.086448,0.021265,-0.041449,0.018119,0.0086946,-0.010079,0.036841,-0.044601,0.14453,-0.068866 -0.024745,0.032338,0.024895,-0.012651,0.11183,0.040162,0.047856,-0.032654,0.040261,-0.0237,-0.057678,0.010789,0.021538,0.19868,-0.027702 -0.022492,0.0076212,0.017304,-0.0089155,0.07809,-0.028373,0.070538,-0.039176,0.038237,-0.061171,-0.073696,-0.0088182,0.083362,0.23668,0.011908 -0.014617,-0.024837,0.013432,0.0018327,0.024432,-0.083723,0.068477,-0.054044,0.015653,-0.091121,-0.053608,0.0022103,0.10459,0.20886,0.014353 -0.0072817,-0.05469,0.015424,0.015132,-0.026793,-0.091875,0.033417,-0.052181,-0.020877,-0.094715,-0.010605,0.025355,0.068188,0.097955,-0.017892 -0.0033001,-0.0699,0.014509,0.023168,-0.047219,-0.059397,-0.011984,-0.026401,-0.045145,-0.061439,0.0054762,0.027829,0.010948,-0.021257,-0.050374 -0.00060402,-0.069283,0.011132,0.018601,-0.044469,-0.018866,-0.043034,0.0046676,-0.051867,-0.011622,-0.0017563,0.0099188,-0.02378,-0.075496,-0.050129 1.5411e-05,-0.055057,0.0049763,0.011261,-0.030872,0.0078968,-0.049818,0.020386,-0.04192,0.022411,-0.015603,-0.0072338,-0.025403,-0.066547,-0.027611 0.00027058,-0.036035,0.0012197,0.006469,-0.016288,0.014471,-0.03768,0.0204,-0.026963,0.030008,-0.019301,-0.010982,-0.011653,-0.035934,-0.0065984 -0.00046974,-0.015743,-0.00069193,0.002741,-0.0055951,0.0082353,-0.018603,0.0099853,-0.010403,0.017672,-0.010771,-0.0063446,-0.002072,-0.011901,0.0038254 -0.00039057,-0.0032221,-0.00081217,0.00070271,-0.00037371,0.001782,-0.0046408,0.0017479,-0.0017678,0.0040269,-0.0033858,-0.0016127,-0.00067233,-0.0018724,0.0039131 -9.2299e-05,-0.00031852,-0.00019256,-1.0229e-05,-4.5855e-05,7.9057e-05,-0.0007665,0.00016755,-0.00022181,0.0004356,-0.00035431,1.1382e-05,-0.00030922,-0.00018884,0.0011639 -6.8258e-18,7.194e-18,4.4619e-18,-8.654e-18,3.0217e-17,2.7332e-18,-6.9663e-18,-2.6273e-18,1.1453e-17,5.7129e-18,1.3432e-17,1.3327e-17,4.1851e-17,2.7002e-17,-3.2418e-18 -2.6878e-18,2.2046e-18,1.5519e-18,-2.5377e-18,9.2181e-18,-1.6968e-19,-1.472e-18,3.3454e-19,2.2011e-18,2.0022e-18,4.1412e-18,4.185e-18,1.2651e-17,8.0337e-18,-3.5427e-20 -9.5344e-18,5.4918e-18,6.744e-18,-9.5764e-18,3.1914e-17,-3.7511e-19,-5.1062e-18,-1.6989e-18,9.6046e-18,6.688e-18,1.317e-17,1.5361e-17,3.8088e-17,2.652e-17,-2.7487e-18 2.0151e-05,-2.4584e-05,-2.7629e-05,-7.9998e-06,-3.0803e-06,-2.0193e-05,4.8777e-05,-9.5276e-06,4.8065e-05,-2.5943e-05,3.28e-05,6.313e-05,-1.9136e-05,2.0148e-05,8.3521e-05 0.00044897,-0.00040015,-0.00038482,-0.00050572,-6.8264e-05,-0.0006167,0.00076641,0.00083244,0.00032925,-0.0002399,0.00058239,0.0013129,6.3277e-05,0.00030803,0.00049899 0.0024253,-0.0016166,-0.0021846,-0.0023992,-0.00066866,-0.0026111,0.0036082,0.0044383,0.0015795,-0.00084337,0.0022049,0.0040745,0.00029627,0.0012862,0.0017479 0.0067517,-0.0040975,-0.0063862,-0.0070154,-0.0027848,-0.0062327,0.0098451,0.011065,0.0047743,-0.0045868,0.0058884,0.0095398,0.00059828,0.0039917,0.0041705 0.014403,-0.0066432,-0.01215,-0.013953,-0.0063089,-0.010935,0.019285,0.019232,0.0073881,-0.0097326,0.0072034,0.0093704,-0.0048697,0.0079555,0.0080728 0.028784,-0.0072863,-0.018676,-0.024838,-0.01415,-0.019056,0.031334,0.024243,0.006768,-0.017144,0.0015607,-0.0072833,-0.023159,0.01379,0.019321 0.049546,-0.0028208,-0.020113,-0.039152,-0.027176,-0.02526,0.038654,0.015481,-0.012479,-0.019504,-0.0064807,-0.041486,-0.057707,0.021799,0.040202 0.069163,0.010388,-0.0090813,-0.046159,-0.0412,-0.019261,0.02835,-0.01913,-0.060006,-0.0017847,-0.0016602,-0.069501,-0.090899,0.03541,0.059339 0.073829,0.028407,0.017059,-0.041419,-0.041413,0.017236,0.0051811,-0.065525,-0.11104,0.041625,0.034155,-0.040332,-0.11139,0.046429,0.039136 0.054981,0.047317,0.050842,-0.03185,-0.002855,0.075486,-0.017051,-0.092951,-0.12263,0.086697,0.09242,0.045148,-0.12108,0.038336,-0.038637 0.019903,0.058123,0.069045,-0.032178,0.06826,0.12312,-0.029808,-0.086555,-0.068945,0.095467,0.11898,0.11113,-0.11225,0.018548,-0.11367 -0.014497,0.061804,0.067586,-0.043233,0.13784,0.1415,-0.020881,-0.055969,0.020159,0.063716,0.076915,0.11173,-0.093837,-0.0024932,-0.1168 -0.036061,0.063706,0.058985,-0.056578,0.18052,0.13101,-0.000199,-0.028635,0.087085,0.021433,5.6604e-05,0.07169,-0.065818,-0.0053818,-0.05925 -0.043286,0.067607,0.050212,-0.062612,0.19151,0.1022,0.026072,-0.011044,0.11414,-0.0012579,-0.071057,0.026922,-0.030071,0.025716,0.0054066 -0.042468,0.063935,0.044642,-0.053702,0.17589,0.048913,0.064846,-0.016257,0.11343,-0.024884,-0.11391,0.0013591,0.029308,0.10728,0.04583 -0.037283,0.034359,0.042349,-0.04038,0.12615,-0.031596,0.10174,-0.052955,0.096374,-0.079868,-0.10748,0.0012132,0.098126,0.20658,0.063175 -0.030243,-0.026065,0.04087,-0.024399,0.051369,-0.097602,0.098499,-0.086526,0.060615,-0.14489,-0.059783,0.031441,0.11516,0.21374,0.038456 -0.021189,-0.082428,0.041161,-0.0077964,-0.01848,-0.096325,0.031063,-0.075545,0.0092119,-0.15382,-0.015822,0.050643,0.055537,0.094146,-0.013637 -0.0094449,-0.10577,0.035451,0.0023603,-0.046769,-0.040089,-0.042105,-0.022693,-0.036096,-0.086538,-0.019762,0.029905,-0.0078182,-0.032926,-0.041837 -0.002154,-0.095282,0.021953,0.0043408,-0.042314,0.0078996,-0.07402,0.026258,-0.052711,-0.0031191,-0.033237,-0.00094078,-0.029887,-0.071886,-0.032371 0.0015655,-0.066169,0.011403,0.0033162,-0.028183,0.02653,-0.064206,0.04009,-0.044485,0.039695,-0.034717,-0.017926,-0.017824,-0.049849,-0.013179 0.00082839,-0.037978,0.0041936,0.0028614,-0.012837,0.022482,-0.039746,0.029221,-0.027153,0.038648,-0.025016,-0.017942,-0.0053091,-0.021735,0.0010784 -0.00047606,-0.01482,0.00051914,0.0014968,-0.0028554,0.0098072,-0.016495,0.013344,-0.009484,0.019715,-0.010345,-0.0092327,0.0023104,-0.0049543,0.005535 -0.00038352,-0.0033151,-0.00042129,0.00068923,0.00038281,0.0020555,-0.0045975,0.002634,-0.0019431,0.0047147,-0.0031066,-0.0017069,0.0002457,-0.0011356,0.004614 -8.3804e-05,-0.00031014,-0.00014403,4.0547e-06,9.6951e-05,0.00014984,-0.00074241,0.00020466,-0.00013973,0.00053884,-0.00048161,6.5082e-05,2.4432e-05,-0.00020841,0.0011187 -1.0675e-17,9.5396e-18,8.2463e-18,-1.1287e-17,3.1427e-17,-8.1663e-20,-7.5827e-18,-2.1681e-18,9.2419e-18,6.5129e-18,1.4203e-17,1.3271e-17,4.271e-17,2.4718e-17,-4.7664e-18 -4.2684e-18,2.7469e-18,2.9151e-18,-5.1638e-18,1.2538e-17,-4.6102e-19,-4.1108e-18,-1.1501e-18,6.3697e-18,3.4525e-18,6.331e-18,6.0253e-18,1.8364e-17,1.1257e-17,-9.1134e-19 -6.0269e-19,7.0227e-19,4.0996e-19,-8.322e-19,2.5901e-18,-1.3337e-19,-4.3336e-19,-1.9355e-19,9.025e-19,6.3054e-19,1.28e-18,1.1261e-18,3.2738e-18,2.0814e-18,-1.4866e-19 4.476e-05,-1.913e-05,-3.8325e-05,-9.9013e-05,-5.4223e-05,-4.3967e-05,-2.8448e-05,7.5715e-05,5.4161e-05,-0.00016723,0.00010415,5.5288e-05,9.0056e-05,4.0793e-05,-2.6181e-05 0.00064955,-0.00045543,-0.00064216,-0.0007775,-0.00024451,-0.00092146,0.00090462,0.0011536,0.00076425,-0.00065822,0.00098536,0.0015502,0.00026377,0.00045475,0.00038601 0.0035146,-0.0022061,-0.0032239,-0.0038813,-0.0010875,-0.0034366,0.0051728,0.0062967,0.0030662,-0.0021393,0.0039289,0.0063542,0.00051466,0.0026227,0.0017638 0.0097648,-0.0053099,-0.0086797,-0.010456,-0.0024255,-0.0074513,0.014422,0.015563,0.0064409,-0.0068698,0.0086772,0.013245,-0.00289,0.0057704,0.0039023 0.023038,-0.0087358,-0.017597,-0.023654,-0.0055541,-0.011887,0.030359,0.028174,0.01031,-0.014598,0.010663,0.014236,-0.018836,0.012039,0.0055873 0.047543,-0.0074161,-0.025973,-0.045897,-0.014398,-0.019395,0.050521,0.033594,0.0069358,-0.024319,-0.00091267,-0.0087168,-0.056051,0.018055,0.012956 0.079295,0.0069841,-0.020209,-0.071101,-0.030615,-0.020493,0.055814,0.0070747,-0.02378,-0.019837,-0.025019,-0.057963,-0.10894,0.020759,0.030432 0.096696,0.030234,0.016882,-0.074792,-0.046194,0.003586,0.034331,-0.060827,-0.081145,0.019115,-0.033029,-0.06885,-0.12723,0.026209,0.048381 0.074854,0.051768,0.07541,-0.055687,-0.026351,0.058875,-0.0044071,-0.12548,-0.11712,0.084841,0.01876,0.021202,-0.083498,0.020582,0.012289 0.017436,0.050137,0.11112,-0.033901,0.047618,0.10468,-0.031631,-0.11513,-0.07839,0.1139,0.094533,0.13183,-0.021216,-0.0073302,-0.068064 -0.038939,0.031212,0.1027,-0.030958,0.1338,0.11128,-0.03747,-0.042836,0.024522,0.070925,0.10376,0.14091,0.0042329,-0.047382,-0.096858 -0.0626,0.016477,0.071819,-0.050199,0.18956,0.084241,-0.029785,0.031961,0.10064,0.004572,0.031226,0.070147,-0.010504,-0.082682,-0.038066 -0.055214,0.024011,0.048135,-0.069845,0.19959,0.054461,-0.014499,0.070767,0.11702,-0.022096,-0.048103,-0.0030264,-0.023514,-0.10264,0.049038 -0.036463,0.053932,0.035031,-0.074409,0.1913,0.032403,0.012513,0.074581,0.091818,0.00097892,-0.09223,-0.043415,-0.027783,-0.096072,0.089432 -0.021263,0.08497,0.030162,-0.060229,0.17464,-0.0043689,0.058708,0.04556,0.059843,0.025908,-0.11285,-0.045404,0.0022763,-0.028572,0.090915 -0.016224,0.073883,0.036035,-0.038743,0.12582,-0.074253,0.1175,-0.03481,0.052019,-0.03498,-0.083323,0.0020275,0.05857,0.089726,0.078327 -0.017198,-0.0024003,0.051739,-0.025006,0.051914,-0.12221,0.11605,-0.10898,0.049478,-0.15155,-0.0078823,0.070605,0.063407,0.11252,0.032925 -0.014821,-0.090714,0.063741,-0.021861,-0.01537,-0.088658,0.026816,-0.08593,0.023016,-0.18048,0.019503,0.07968,0.0022207,0.018962,-0.014129 -0.0065267,-0.12632,0.056878,-0.019054,-0.040562,-0.0078163,-0.065152,-0.0065418,-0.022215,-0.087114,-0.02743,0.030393,-0.040652,-0.057568,-0.022938 0.0011163,-0.10728,0.034595,-0.013227,-0.030424,0.042302,-0.086757,0.048536,-0.044776,0.013475,-0.058448,-0.014278,-0.023831,-0.047944,-0.011758 0.0034068,-0.066298,0.016525,-0.0062881,-0.017139,0.04227,-0.060968,0.052334,-0.039648,0.048094,-0.049568,-0.026049,-0.0026897,-0.016292,-0.001346 0.0016655,-0.030413,0.0057444,-0.0013714,-0.0057523,0.023134,-0.029814,0.030881,-0.022,0.034805,-0.02456,-0.018456,0.0042822,-0.0009195,0.0057051 -0.00048396,-0.010378,0.0012661,-0.0004264,0.00038696,0.0075291,-0.011405,0.011275,-0.0074211,0.015274,-0.0084561,-0.0075512,0.0034503,0.0016544,0.0065612 -0.0002625,-0.0019779,-3.0104e-05,0.00021142,0.00063103,0.0013697,-0.0028466,0.0018383,-0.0013961,0.0033417,-0.0018929,-0.00077937,0.00061906,0.00022637,0.0033044 -4.9985e-05,-0.00021357,-6.212e-05,1.7602e-05,0.00018629,0.00011985,-0.00045109,0.00026501,-8.0652e-05,0.00037959,-0.00032564,-0.0001559,-2.7399e-05,9.3432e-05,0.00074998 -1.2837e-18,8.5554e-19,6.9508e-19,-1.3746e-18,3.2296e-18,-7.4076e-20,-8.7993e-19,-2.1795e-19,1.3147e-18,8.3492e-19,1.5833e-18,1.5306e-18,4.395e-18,2.9084e-18,-2.375e-19 -7.212e-18,5.0473e-18,6.6465e-18,-9.7024e-18,2.8178e-17,-5.7415e-19,-6.8618e-18,-1.868e-18,1.0029e-17,5.3985e-18,1.3003e-17,1.2903e-17,3.5479e-17,2.6042e-17,-2.2906e-18 1.2658e-05,9.4925e-06,-4.1646e-05,4.6209e-06,1.6935e-05,-4.1423e-05,4.098e-05,-1.6817e-05,8.1261e-05,1.5626e-06,5.0198e-06,1.2681e-05,1.2751e-05,4.0939e-05,-2.4362e-05 6.9225e-05,-3.8493e-05,-7.5817e-05,-0.00015572,-8.5054e-05,-7.0703e-05,-3.0667e-05,0.00013326,0.00013386,-0.00021743,0.00017581,0.00010791,0.00015661,8.4459e-05,-2.2638e-05 0.00070395,-0.00048436,-0.0007721,-0.00099803,-0.00030714,-0.00078875,0.00098115,0.0014646,0.00077512,-0.00071906,0.0012538,0.0019093,0.00031612,0.00050821,0.00038221 0.0043416,-0.0026242,-0.0038017,-0.0051551,-0.00059385,-0.0034207,0.0063091,0.0079722,0.0034604,-0.0028153,0.0050326,0.008364,-0.00083429,0.0030549,0.0012489 0.014257,-0.0071686,-0.011407,-0.015454,-0.0010623,-0.0055874,0.021212,0.021492,0.007794,-0.0088886,0.011239,0.019937,-0.011263,0.0072303,0.0002688 0.035689,-0.010566,-0.023084,-0.038379,-0.002969,-0.0078855,0.046003,0.037269,0.013194,-0.020821,0.011888,0.022891,-0.041571,0.01359,-0.0039941 0.070784,-0.0049854,-0.026662,-0.07285,-0.012194,-0.011784,0.068842,0.033156,0.0055741,-0.030553,-0.014489,-0.010523,-0.094868,0.01323,-0.0041714 0.10304,0.017849,0.0045118,-0.097518,-0.03056,-0.0014917,0.063002,-0.024005,-0.03225,-0.010609,-0.066158,-0.061255,-0.12797,0.0066707,0.018341 0.095949,0.043645,0.075666,-0.081677,-0.036999,0.031298,0.020782,-0.11667,-0.085549,0.056448,-0.069754,-0.031992,-0.065311,-0.0041248,0.045625 0.029573,0.044986,0.13102,-0.036844,0.0089377,0.066905,-0.031453,-0.14084,-0.088526,0.11173,0.026476,0.087262,0.060472,-0.012075,0.016054 -0.050262,0.01048,0.12452,-0.0020205,0.094789,0.065643,-0.052405,-0.051615,-0.016272,0.08152,0.10786,0.14009,0.1091,-0.031913,-0.04503 -0.088864,-0.024745,0.073273,-0.0036184,0.15739,0.024976,-0.052881,0.064262,0.063767,-0.00043013,0.079849,0.069455,0.063217,-0.063794,-0.036874 -0.075131,-0.030763,0.028359,-0.021458,0.16934,-0.016382,-0.037795,0.12373,0.081304,-0.050647,-0.0058777,-0.026419,-0.00036925,-0.088031,0.036097 -0.041713,-0.005026,0.0096722,-0.039788,0.14485,-0.027192,-0.016842,0.12577,0.044631,-0.034828,-0.052533,-0.07523,-0.029282,-0.10709,0.089157 -0.013471,0.045028,0.0025473,-0.043196,0.12934,-0.026213,0.0068048,0.11275,-0.0095038,0.030686,-0.066982,-0.084109,-0.038263,-0.11359,0.085767 0.0014368,0.09936,-0.004391,-0.032494,0.12375,-0.054913,0.058413,0.072027,-0.046116,0.080963,-0.07855,-0.062895,-0.01169,-0.067088,0.06149 0.0036889,0.10056,0.0069813,-0.016835,0.090351,-0.12532,0.11872,-0.039439,-0.031746,0.010512,-0.031509,0.013961,0.019506,0.006478,0.029908 -0.0011295,0.011883,0.045229,-0.017564,0.029809,-0.14387,0.10293,-0.13147,0.013717,-0.14239,0.057827,0.098956,-0.010532,-0.0095972,-0.00070109 -0.0002577,-0.094879,0.076457,-0.031965,-0.017396,-0.063898,0.0038794,-0.087463,0.024687,-0.17524,0.056567,0.092765,-0.06731,-0.071741,-0.0074753 0.0032011,-0.1331,0.070794,-0.037559,-0.028486,0.035655,-0.076252,0.014787,-0.0084271,-0.066534,-0.026591,0.025934,-0.058761,-0.062566,0.00281 0.006247,-0.10339,0.042135,-0.026217,-0.014633,0.067969,-0.077274,0.064545,-0.034044,0.029494,-0.067977,-0.020253,-0.011961,-0.011724,0.0072179 0.0055526,-0.055593,0.018807,-0.013292,-0.0043988,0.046399,-0.044465,0.051834,-0.031362,0.045191,-0.051015,-0.023558,0.0093239,0.016074,0.0055858 0.0020347,-0.020311,0.0056496,-0.0045482,0.00091224,0.017866,-0.016274,0.024321,-0.015341,0.024167,-0.020889,-0.013054,0.0079456,0.012618,0.0062157 2.7205e-06,-0.005155,0.0012396,-0.00080643,0.0015395,0.004138,-0.0048587,0.006591,-0.0041912,0.0080543,-0.0053519,-0.0041006,0.002641,0.0034639,0.0036032 -6.9186e-05,-0.00096017,-3.2608e-06,7.7483e-06,0.00037754,0.00077374,-0.001253,0.0010423,-0.00075753,0.0017906,-0.0012303,-0.00063086,0.00070956,0.00057299,0.0014744 -1.8339e-05,-8.8461e-05,-1.9881e-05,2.4381e-05,0.00011158,5.3297e-05,-0.00017942,0.00014108,-5.9785e-05,0.00013881,-0.00014432,-0.00013263,-2.6373e-05,6.5813e-05,0.00034381 -2.64e-18,1.9112e-18,8.1567e-19,-2.2185e-18,8.0639e-18,-3.4177e-19,-1.5821e-18,-7.4683e-19,2.7354e-18,2.203e-18,3.8685e-18,4.4356e-18,1.0829e-17,7.5811e-18,4.7416e-19 -1.601e-18,1.3576e-18,1.2365e-18,-1.777e-18,5.516e-18,-4.8145e-21,-7.9812e-19,-2.5749e-19,1.834e-18,1.8638e-18,3.0373e-18,1.7693e-18,7.4464e-18,3.9594e-18,-3.9017e-19 2.03e-05,1.5224e-05,-6.6791e-05,7.4108e-06,2.7159e-05,-6.6433e-05,6.5722e-05,-2.697e-05,0.00013032,2.506e-06,8.0507e-06,2.0337e-05,2.045e-05,6.5657e-05,-3.9071e-05 8.8262e-05,-4.0378e-05,-0.0001195,-0.00015336,-0.00011899,-0.00015128,4.2538e-05,0.00015974,0.00021044,-0.00022892,0.00020609,0.0001201,0.00015848,8.5032e-05,-8.5773e-05 0.00094428,-0.00066018,-0.001004,-0.0014199,-0.00029234,-0.00086486,0.0014606,0.001998,0.00076588,-0.00096027,0.0016749,0.0024987,-2.7238e-05,0.00067974,0.00048017 0.0063258,-0.0037075,-0.0055416,-0.0080854,0.00045267,-0.0023991,0.01016,0.011382,0.0042605,-0.003378,0.0072523,0.013706,-0.003509,0.0038059,0.00060521 0.02159,-0.0096634,-0.015025,-0.024382,0.0017722,-0.001127,0.031498,0.028637,0.010173,-0.012036,0.013577,0.031128,-0.022878,0.009668,-0.0067663 0.050941,-0.013323,-0.024211,-0.055428,-0.0011346,0.00049435,0.061539,0.043576,0.015758,-0.02855,0.0031714,0.030953,-0.064386,0.011772,-0.024129 0.092137,-0.003487,-0.0087941,-0.094745,-0.011674,0.0029956,0.07768,0.02026,0.0047804,-0.031497,-0.052041,-0.01328,-0.11172,-0.0035694,-0.02855 0.10959,0.02251,0.053676,-0.10752,-0.028631,0.014869,0.050799,-0.0681,-0.035217,0.016313,-0.1144,-0.052764,-0.07599,-0.02634,0.025521 0.06062,0.03775,0.12723,-0.062366,-0.021165,0.031835,-0.016354,-0.14055,-0.076153,0.090953,-0.064412,0.0039017,0.072078,-0.031062,0.079641 -0.034432,0.012843,0.13626,0.0059655,0.042729,0.027109,-0.065068,-0.086733,-0.060608,0.098375,0.071033,0.09044,0.17327,-0.014893,0.042445 -0.097054,-0.031511,0.073923,0.037936,0.11374,-0.010404,-0.0703,0.047108,-0.00016815,0.019416,0.12245,0.072863,0.11131,-0.015346,-0.026347 -0.091374,-0.051065,0.0081408,0.027824,0.13294,-0.049965,-0.050375,0.13393,0.030989,-0.055238,0.05272,-0.024944,-0.0035197,-0.038002,-0.012102 -0.051019,-0.034388,-0.01527,0.0046768,0.10399,-0.053849,-0.022686,0.12639,0.010336,-0.060453,-0.017046,-0.072759,-0.051405,-0.050543,0.034195 -0.018238,0.0011778,-0.015274,-0.012815,0.072982,-0.031529,-0.0019729,0.092816,-0.028095,-0.015276,-0.03094,-0.068986,-0.043575,-0.056784,0.045414 -0.003947,0.054386,-0.019135,-0.02295,0.075078,-0.025722,0.017925,0.085465,-0.07826,0.055465,-0.043257,-0.069607,-0.02659,-0.067616,0.029687 -0.0024553,0.11085,-0.028214,-0.016015,0.083739,-0.078233,0.067661,0.048802,-0.11157,0.097806,-0.061885,-0.047046,0.0081086,-0.048623,0.004389 -0.0031401,0.10382,-0.012211,-0.0068492,0.055187,-0.15796,0.10673,-0.071157,-0.075379,0.0044784,0.0027667,0.033372,0.0025063,-0.043031,-0.026446 0.0010733,0.001651,0.044054,-0.01985,0.0096348,-0.13905,0.057613,-0.14625,0.0065244,-0.1465,0.090452,0.10307,-0.067516,-0.099008,-0.01825 0.01113,-0.10504,0.088005,-0.051433,-0.013023,-0.017277,-0.034839,-0.071286,0.040298,-0.15299,0.063694,0.075382,-0.10543,-0.11058,0.019644 0.013689,-0.13002,0.077475,-0.054615,-0.0094081,0.076725,-0.076418,0.039176,0.0061868,-0.038235,-0.033307,0.0089852,-0.053857,-0.031455,0.033239 0.011621,-0.088837,0.042177,-0.035643,0.0022149,0.079282,-0.055158,0.071344,-0.023854,0.036101,-0.069936,-0.018146,0.0048577,0.032494,0.019135 0.0069114,-0.040285,0.017199,-0.01683,0.0053715,0.041303,-0.021954,0.043257,-0.021418,0.034841,-0.044061,-0.015393,0.015749,0.039751,0.0048781 0.0019353,-0.011939,0.00442,-0.0049637,0.0035584,0.011383,-0.00573,0.015963,-0.0089115,0.014014,-0.015534,-0.0060837,0.0075084,0.01557,0.0027732 0.00013379,-0.0024536,0.00079475,-0.0011006,0.0013128,0.001955,-0.0019662,0.0031873,-0.0026811,0.0039758,-0.0038331,-0.0018642,0.0017413,0.0035343,0.0021281 -2.4645e-05,-0.00053653,-3.7485e-05,-0.00021402,0.00028897,0.00022801,-0.00065228,0.00047687,-0.00060667,0.0010008,-0.0010448,-0.00014271,0.00024664,0.00069705,0.00083717 3.4208e-06,-4.8942e-07,-1.2004e-06,-8.2545e-07,1.5436e-05,-3.5669e-06,-2.2639e-05,1.4551e-05,-4.012e-06,2.6018e-05,-6.0597e-06,-2.1508e-05,-7.9563e-06,-9.427e-06,2.7569e-05 -8.5735e-18,6.7064e-18,5.4146e-18,-8.5572e-18,2.4422e-17,-2.7353e-18,-5.5318e-18,-9.7873e-19,8.6008e-18,6.9003e-18,1.2432e-17,9.1473e-18,3.1586e-17,1.944e-17,-8.887e-19 -2.6691e-18,1.3969e-18,3.2225e-18,-3.1222e-18,9.417e-18,-1.3882e-18,-8.0026e-19,-3.7647e-19,2.8737e-18,2.1808e-18,4.4128e-18,3.7986e-18,1.0948e-17,6.453e-18,2.8512e-21 2.1551e-05,1.4604e-05,-6.8891e-05,5.243e-06,2.4212e-05,-6.9637e-05,6.6684e-05,-2.5717e-05,0.0001352,-1.917e-06,1.4658e-05,2.3096e-05,2.6457e-05,7.0555e-05,-3.6869e-05 0.00011123,-5.6613e-05,-0.00025303,-0.00016303,-0.00016159,-0.00021797,0.00011273,0.00020322,0.00037976,-0.00033283,0.00031207,0.00020297,0.00029066,0.00015389,9.9781e-06 0.0015043,-0.00099679,-0.0014387,-0.0022618,7.782e-05,-0.00069075,0.0024797,0.0029957,0.00095843,-0.0012461,0.0024387,0.0041937,-0.00012292,0.0011441,0.00076848 0.0090088,-0.0052481,-0.0071531,-0.011156,0.0018679,5.8021e-05,0.01511,0.015233,0.0043042,-0.0042197,0.0085465,0.020667,-0.0062833,0.0047019,-0.0012413 0.030251,-0.012778,-0.017386,-0.033381,0.0041166,0.0047903,0.041193,0.035649,0.01161,-0.016983,0.011667,0.041648,-0.03232,0.010579,-0.019351 0.066659,-0.018184,-0.017406,-0.070615,-0.00019811,0.010275,0.071722,0.044335,0.016199,-0.03394,-0.017303,0.038445,-0.074992,0.002457,-0.051009 0.10599,-0.0083074,0.023078,-0.10897,-0.012107,0.012575,0.075416,-0.00043297,0.0059416,-0.02048,-0.097276,-0.01287,-0.081186,-0.031014,-0.041331 0.096559,0.014753,0.10025,-0.096653,-0.025843,0.012189,0.020105,-0.097274,-0.035355,0.047199,-0.12947,-0.04705,0.028465,-0.06206,0.063338 0.012035,0.018529,0.14031,-0.021478,-0.0024165,-0.00055638,-0.058929,-0.1182,-0.067962,0.10273,-0.01121,0.002695,0.1705,-0.031152,0.12705 -0.08067,-0.011812,0.088686,0.049154,0.062988,-0.028542,-0.087649,-0.0051066,-0.063719,0.052546,0.12925,0.047569,0.15128,0.013433,0.046373 -0.10362,-0.042391,0.0052903,0.055875,0.10183,-0.057067,-0.063395,0.11284,-0.034946,-0.040921,0.11993,-0.0055224,0.0011434,0.014244,-0.038924 -0.064941,-0.037424,-0.033209,0.028977,0.087289,-0.055361,-0.025415,0.12517,-0.02686,-0.073345,0.026995,-0.063373,-0.083852,-0.013467,-0.025584 -0.025394,-0.010491,-0.026733,0.0020525,0.052537,-0.026083,-9.9424e-05,0.074083,-0.038101,-0.045769,-0.01463,-0.060826,-0.06238,-0.027259,0.0073966 -0.011228,0.021255,-0.017794,-0.019151,0.042187,-0.0040075,0.010181,0.052987,-0.062186,-0.0051172,-0.016997,-0.045416,-0.022841,-0.040968,0.0147 -0.015632,0.070995,-0.025073,-0.031943,0.058436,-0.018099,0.033857,0.063695,-0.11356,0.05323,-0.041518,-0.044763,0.002102,-0.056583,-0.00069783 -0.02708,0.11623,-0.034753,-0.023231,0.063762,-0.099735,0.078082,0.016467,-0.13849,0.071799,-0.059197,-0.010804,0.027427,-0.059339,-0.034323 -0.022773,0.085438,-0.0054289,-0.014931,0.031802,-0.16593,0.074762,-0.10059,-0.067011,-0.032809,0.018518,0.050098,-0.019024,-0.099231,-0.049846 0.00012104,-0.025173,0.059996,-0.037136,0.0026571,-0.10133,-0.002279,-0.1326,0.037372,-0.14816,0.090303,0.0693,-0.095438,-0.13426,0.0075255 0.024079,-0.11522,0.097977,-0.070483,0.00047404,0.034662,-0.063007,-0.03662,0.063833,-0.11701,0.046213,0.031462,-0.096726,-0.075958,0.061409 0.026264,-0.11882,0.077269,-0.066776,0.011923,0.10063,-0.056622,0.064119,0.013758,-0.011964,-0.040809,-0.0051036,-0.026853,0.027687,0.053639 0.018164,-0.070161,0.036556,-0.040094,0.014624,0.074523,-0.024009,0.070777,-0.021056,0.034663,-0.060678,-0.0093616,0.018491,0.066514,0.016292 0.0087424,-0.027641,0.01248,-0.017014,0.0090504,0.031996,-0.0027996,0.034184,-0.017849,0.024301,-0.033349,-0.0020098,0.01819,0.04492,-0.0006672 0.0020592,-0.0072889,0.0028272,-0.0047419,0.0029787,0.0072155,0.00020511,0.0096396,-0.006403,0.0087009,-0.011199,0.00015176,0.0054668,0.014774,-0.00034371 0.00015939,-0.0011946,0.00039028,-0.00093968,0.00066895,0.00035259,-0.00046836,0.0011427,-0.0017298,0.0018708,-0.0025189,1.7906e-05,0.00055527,0.0018946,0.00055765 1.3082e-05,-0.00021389,-4.3123e-05,-0.00011095,0.00010845,8.7921e-05,-0.00011003,0.00013767,-0.00048519,0.00025759,-0.00042972,-9.759e-05,-6.1179e-05,0.00025276,0.00036436 3.0063e-05,-8.8537e-06,3.4511e-06,2.1203e-05,2.4008e-05,1.6893e-05,-5.7296e-05,7.0697e-06,-4.0986e-05,0.00010218,4.8927e-05,-2.9571e-05,6.0843e-05,-1.233e-05,5.2645e-05 -1.1263e-19,9.9942e-20,5.2139e-20,-1.1753e-19,3.673e-19,-1.3631e-20,-9.6097e-20,1.6194e-21,1.505e-19,9.6977e-20,1.938e-19,1.3763e-19,5.278e-19,2.7369e-19,-2.7844e-20 -8.2013e-18,6.6217e-18,5.9618e-18,-7.0268e-18,2.2355e-17,-1.4924e-18,-4.1691e-18,-7.0737e-19,7.3236e-18,6.101e-18,1.1963e-17,7.9515e-18,3.1532e-17,1.8535e-17,-1.9743e-18 3.4019e-05,1.0174e-05,-9.2101e-05,-1.3419e-05,2.1259e-08,-0.00010259,7.9756e-05,-1.6505e-05,0.00018737,-4.0869e-05,7.3665e-05,4.8919e-05,8.1019e-05,0.00011844,-2.0103e-05 0.00011227,-6.2722e-05,-0.00028045,-0.00020147,-5.5151e-05,-0.00016723,0.00013802,0.00016984,0.00038947,-0.00030021,0.00031965,0.00036401,0.00023108,0.00010188,0.00015279 0.0022331,-0.0015025,-0.001969,-0.0031112,0.0010067,0.00010758,0.0039462,0.003817,0.0010515,-0.0016291,0.0031248,0.0066384,-0.00052232,0.001715,0.0010101 0.012008,-0.0068717,-0.0078556,-0.014259,0.0035734,0.0028684,0.018893,0.018974,0.0044202,-0.0056785,0.0079892,0.027027,-0.0082644,0.006621,-0.0060175 0.037839,-0.017301,-0.016052,-0.039906,0.0039382,0.011323,0.046842,0.041802,0.011394,-0.020821,0.0038522,0.050932,-0.033148,0.010027,-0.037573 0.079372,-0.028679,-0.0026148,-0.0795,-0.0027786,0.01768,0.075016,0.043735,0.01356,-0.033819,-0.044262,0.045314,-0.060181,-0.012244,-0.079687 0.10969,-0.025125,0.055771,-0.10584,-0.015767,0.0093824,0.062093,-0.014655,0.0053427,-0.0027062,-0.12475,-0.011762,-0.0096128,-0.064297,-0.038321 0.075104,-0.0038606,0.12371,-0.069265,-0.020716,-0.018091,-0.017423,-0.09216,-0.031136,0.069655,-0.10169,-0.053601,0.11792,-0.082803,0.10487 -0.023341,0.0067552,0.11629,0.013382,0.0073302,-0.050225,-0.088801,-0.064055,-0.075594,0.087568,0.060229,-0.025524,0.16206,-0.010682,0.15832 -0.097538,-0.0080005,0.030702,0.050507,0.054913,-0.061254,-0.085266,0.057684,-0.10075,-0.0018762,0.15981,-0.0092192,0.0391,0.051233,0.035138 -0.090748,-0.01845,-0.034035,0.025423,0.068475,-0.046805,-0.036644,0.11681,-0.096056,-0.084793,0.099811,-0.044516,-0.089769,0.032362,-0.053094 -0.047626,-0.0040258,-0.037105,-0.015679,0.046643,-0.014525,-0.0017712,0.080093,-0.088565,-0.086988,0.016969,-0.060362,-0.082771,-0.013951,-0.029154 -0.026156,0.018261,-0.020818,-0.045294,0.028285,0.011709,0.0092395,0.039123,-0.088215,-0.059023,-0.0031963,-0.042776,-0.021534,-0.039406,-0.00050194 -0.028086,0.046497,-0.013965,-0.068609,0.032658,0.014029,0.015691,0.040141,-0.10819,-0.02876,-0.0093331,-0.027116,0.015358,-0.062806,0.0040227 -0.043125,0.086773,-0.021389,-0.076456,0.050514,-0.028651,0.040584,0.047705,-0.14169,0.023704,-0.044959,-0.0043999,0.036187,-0.076385,-0.017653 -0.055823,0.10326,-0.020359,-0.049362,0.043751,-0.11871,0.063069,-0.013705,-0.12532,0.030862,-0.053084,0.038394,0.026333,-0.087722,-0.053351 -0.034279,0.050271,0.02048,-0.029535,0.01683,-0.13953,0.020013,-0.10119,-0.023218,-0.058688,0.019571,0.043745,-0.042193,-0.12059,-0.03679 0.010517,-0.051504,0.082933,-0.054899,0.0072119,-0.046425,-0.046514,-0.095007,0.070551,-0.1306,0.077182,0.0143,-0.091598,-0.10581,0.040092 0.043141,-0.11426,0.10124,-0.082771,0.016417,0.068207,-0.061713,0.0084939,0.065586,-0.077867,0.030535,-0.0091769,-0.059031,-0.0074803,0.087747 0.040309,-0.098181,0.064865,-0.068294,0.023223,0.095345,-0.024072,0.0814,0.0017795,0.011944,-0.034091,-0.0028361,0.0018479,0.081746,0.050434 0.023453,-0.05077,0.025345,-0.036932,0.015866,0.054497,0.0042641,0.063551,-0.024755,0.031988,-0.044288,0.010354,0.027324,0.077243,0.0049703 0.0096966,-0.019545,0.0062754,-0.014456,0.0067363,0.017718,0.0092241,0.025813,-0.017632,0.018196,-0.023706,0.011535,0.015468,0.038392,-0.0056317 0.0025839,-0.0056797,0.0010609,-0.0041431,0.0012883,0.0026597,0.0043071,0.0061948,-0.0068495,0.0062583,-0.0087452,0.0054024,0.003951,0.011195,-0.0045014 0.00039406,-0.0012518,-0.00024693,-0.00043897,-0.00031262,-0.0010954,0.00096893,0.00041812,-0.0023902,0.0017022,-0.0025362,0.0015216,0.0014136,0.0010414,-0.0015588 6.1719e-05,-0.00010589,-0.0001282,7.3497e-06,8.5904e-05,-0.00016331,0.00011362,-0.00010017,-0.00069489,0.00059998,-0.00033523,0.00011116,0.0004497,2.5044e-05,-1.5778e-05 5.0858e-06,1.6927e-05,-4.7013e-05,1.5126e-05,1.1394e-05,-9.6794e-06,-4.0738e-05,1.0339e-05,-8.2928e-05,9.2548e-05,-2.5469e-05,7.6737e-05,0.00014199,-3.7662e-06,2.2415e-05 -4.3242e-18,2.9853e-18,3.4183e-18,-2.7638e-18,9.794e-18,-1.1609e-18,-1.4975e-18,-1.2896e-18,3.4626e-18,2.4866e-18,5.1559e-18,4.7525e-18,1.333e-17,7.9721e-18,-5.2682e-19 -1.6988e-18,1.4601e-18,1.2825e-18,-1.3696e-18,4.9395e-18,-4.3235e-19,-8.4069e-19,-6.5928e-19,2.3036e-18,9.0776e-19,2.3455e-18,2.1547e-18,7.6259e-18,4.0704e-18,-4.2598e-19 2.9899e-05,-7.8941e-06,-5.9181e-05,-4.0156e-05,-4.9917e-05,-8.0576e-05,3.6748e-05,1.6988e-05,0.00013062,-8.5391e-05,0.00013079,5.9282e-05,0.00012252,0.00011333,3.2135e-05 0.00011278,-4.4255e-05,-0.00013978,-0.00014257,8.3539e-05,-0.00010349,0.0001919,0.00010153,0.00028371,-1.895e-05,0.0002467,0.00035285,8.9716e-05,3.8981e-05,5.183e-05 0.0024725,-0.0017195,-0.002177,-0.0031249,0.0011242,0.00058871,0.0043255,0.0038904,0.0013256,-0.0017025,0.0029979,0.0076283,-0.00026172,0.0018051,0.00050389 0.014254,-0.0086951,-0.0075184,-0.015653,0.0030567,0.0055693,0.020387,0.021924,0.004011,-0.0074104,0.0057186,0.031423,-0.0064636,0.0082803,-0.012507 0.043739,-0.02519,-0.010276,-0.041864,0.0028785,0.016753,0.048433,0.045871,0.0055005,-0.020147,-0.0083054,0.058285,-0.022327,0.0069642,-0.058703 0.086588,-0.046357,0.013024,-0.07627,-0.0042245,0.018232,0.070937,0.046852,0.0047686,-0.025822,-0.063712,0.053489,-0.014005,-0.030942,-0.10453 0.10807,-0.051219,0.074151,-0.084017,-0.015076,-0.0090182,0.043941,-0.0060408,0.0055785,0.013077,-0.11937,-0.0038746,0.06449,-0.093306,-0.041198 0.061975,-0.025331,0.11867,-0.036725,-0.016015,-0.063565,-0.039334,-0.059258,-0.01357,0.07454,-0.05786,-0.060197,0.14141,-0.083608,0.12815 -0.030732,0.0065555,0.085291,0.012426,-0.0039139,-0.099486,-0.095123,-0.013055,-0.068185,0.063403,0.097008,-0.054872,0.082842,0.019582,0.1705 -0.087835,0.01802,0.0081304,-0.0085449,0.011491,-0.07816,-0.076033,0.083064,-0.12765,-0.036654,0.15669,-0.0439,-0.050533,0.083901,0.048116 -0.078419,0.021281,-0.023335,-0.070462,0.0071921,-0.029053,-0.031209,0.099646,-0.14958,-0.10489,0.092003,-0.04512,-0.081484,0.045004,-0.023779 -0.053282,0.032447,-0.013096,-0.115,-0.0053215,0.0051771,-0.01084,0.062492,-0.14258,-0.10546,0.033546,-0.03292,-0.011273,-0.015536,-0.0062176 -0.045985,0.046784,0.002858,-0.13975,-0.0077666,0.0091644,-0.0076296,0.047774,-0.12742,-0.086587,0.018903,-0.011122,0.046133,-0.050425,0.0070814 -0.052077,0.063144,0.0084881,-0.1519,0.0056701,-0.013702,-0.0025644,0.054394,-0.1177,-0.04868,-0.0035151,0.024368,0.064606,-0.067921,-0.0015187 -0.065546,0.075756,0.004078,-0.12751,0.02606,-0.070829,0.016736,0.04107,-0.10761,0.01314,-0.047202,0.065548,0.04587,-0.063208,-0.032866 -0.066335,0.066558,0.010947,-0.062893,0.020363,-0.11799,0.018194,-0.018257,-0.064833,0.022737,-0.051814,0.065137,-0.0063196,-0.071886,-0.056059 -0.024952,0.016614,0.051947,-0.034764,0.0092055,-0.092259,-0.026462,-0.071909,0.021271,-0.052271,0.013685,0.0063952,-0.05299,-0.088095,-0.015647 0.033493,-0.062808,0.10046,-0.06631,0.013367,-0.008841,-0.063817,-0.045499,0.078432,-0.096022,0.062519,-0.034551,-0.05922,-0.038269,0.063447 0.064632,-0.10128,0.093233,-0.084861,0.020965,0.060707,-0.035087,0.047614,0.037672,-0.034365,0.027592,-0.018537,-0.01749,0.065399,0.085954 0.050531,-0.079865,0.043155,-0.060734,0.019193,0.060493,0.01035,0.088308,-0.028357,0.030762,-0.01747,0.020756,0.024022,0.10715,0.029324 0.025629,-0.040708,0.012534,-0.029764,0.0072445,0.022883,0.023118,0.057044,-0.038981,0.034174,-0.027674,0.035555,0.030142,0.069913,-0.0093987 0.010887,-0.017167,0.0026192,-0.011694,0.0011992,0.00082154,0.016475,0.024053,-0.025338,0.017022,-0.016681,0.023966,0.016424,0.028677,-0.015087 0.003415,-0.0063225,0.00054947,-0.002857,1.5038e-06,-0.0036706,0.0073126,0.0073319,-0.011416,0.0075546,-0.0076438,0.010342,0.0078535,0.0072004,-0.010101 0.0010154,-0.0017804,-0.00038754,0.00011919,-0.00016703,-0.0029221,0.0021755,0.0021067,-0.0045791,0.0025607,-0.0029778,0.0030235,0.0041522,0.0011893,-0.0032272 0.00010739,-0.00014533,-0.00024902,9.7322e-05,0.00013131,-0.00027794,0.00036146,-7.1705e-06,-0.0010616,0.00085882,-0.00077993,0.00047541,0.0010114,0.00012702,0.00016681 -1.2732e-05,-2.5987e-05,-7.5182e-05,-2.3039e-05,0.00011836,-5.2043e-05,1.2873e-05,-2.9963e-05,-0.00016465,0.00021933,-7.634e-05,0.00022701,0.00011752,0.00010221,0.00014652 -3.0448e-18,2.4525e-18,1.5846e-18,-2.5976e-18,9.7981e-18,1.4135e-19,-2.323e-18,-2.5919e-19,3.8032e-18,1.7193e-18,4.7057e-18,3.6264e-18,1.3204e-17,7.7307e-18,-6.5897e-19 -6.1614e-18,5.7689e-18,4.8501e-18,-6.1259e-18,2.19e-17,-2.0942e-19,-5.1818e-18,-8.8899e-19,8.132e-18,5.345e-18,1.1014e-17,9.0874e-18,2.8338e-17,1.6604e-17,-1.6929e-18 1.3119e-05,-4.6606e-06,-2.4421e-05,-1.9636e-05,-2.5453e-05,-3.4674e-05,1.3754e-05,9.6929e-06,5.4893e-05,-4.0985e-05,6.2086e-05,2.717e-05,5.7408e-05,5.0385e-05,1.7641e-05 8.326e-05,-3.9024e-05,-9.6309e-05,-0.0001022,4.5855e-05,-8.4274e-05,0.0001416,6.8488e-05,0.00021424,-1.2595e-05,0.00020701,0.00025524,6.9579e-05,3.7099e-05,4.2275e-05 0.0026999,-0.0019058,-0.0022626,-0.0030213,0.00071297,0.00084773,0.0039027,0.0039722,0.0015492,-0.0017741,0.0031385,0.0076696,0.00061388,0.0021956,-0.00053104 0.015452,-0.011192,-0.0054459,-0.014343,0.0020376,0.0068106,0.019217,0.02337,0.00072155,-0.0076639,0.0028731,0.031374,0.0015052,0.008082,-0.018621 0.044433,-0.034899,-0.0031108,-0.03563,0.00060917,0.017894,0.042778,0.050009,-0.0059307,-0.015239,-0.01607,0.059107,0.005743,0.0003677,-0.074443 0.085072,-0.067611,0.02212,-0.055371,-0.0040703,0.011412,0.058314,0.05953,-0.012343,-0.015374,-0.061386,0.061715,0.045691,-0.046843,-0.12809 0.10359,-0.07922,0.070084,-0.04315,-0.0076095,-0.033524,0.035144,0.022904,0.0033268,0.015405,-0.094065,0.0091862,0.10915,-0.10796,-0.070137 0.066448,-0.050825,0.098742,-0.0039309,-0.01101,-0.1043,-0.030643,-0.014529,0.017954,0.067137,-0.034119,-0.049771,0.11203,-0.084708,0.086115 -0.0044624,-0.0023638,0.074473,0.00055802,-0.02639,-0.1432,-0.081773,0.020334,-0.0042222,0.071624,0.074351,-0.054978,0.010725,0.027826,0.14345 -0.051221,0.029234,0.034151,-0.067833,-0.049053,-0.12239,-0.079047,0.087175,-0.053544,0.012341,0.10896,-0.031038,-0.065891,0.092717,0.065816 -0.057686,0.03723,0.025374,-0.14803,-0.067095,-0.082983,-0.059293,0.10226,-0.078683,-0.032976,0.073369,-0.00096023,-0.028008,0.063116,0.0056737 -0.05143,0.040034,0.037918,-0.18426,-0.072325,-0.068203,-0.050633,0.092805,-0.066367,-0.037252,0.040991,0.03005,0.041345,0.021484,-0.0059697 -0.047045,0.041923,0.047747,-0.18741,-0.059827,-0.077647,-0.047825,0.088407,-0.036016,-0.015574,0.021669,0.062383,0.064771,0.0032361,-0.018907 -0.047219,0.036513,0.046506,-0.16353,-0.030359,-0.10032,-0.040414,0.075151,-0.0074551,0.028663,-0.012949,0.10046,0.039819,0.0042897,-0.039815 -0.055779,0.027918,0.031456,-0.1018,-0.00073081,-0.1183,-0.012973,0.039292,-0.013369,0.069349,-0.051752,0.10701,-0.017639,0.0045489,-0.061123 -0.050455,0.023403,0.032868,-0.034937,0.0043377,-0.099132,-0.0083666,-0.01042,-0.01019,0.042888,-0.046198,0.045254,-0.05342,-0.024688,-0.049464 -0.0019567,-0.0039192,0.070677,-0.023799,0.0054309,-0.057599,-0.047756,-0.037842,0.036067,-0.032499,0.014658,-0.035996,-0.045614,-0.032274,-0.0013171 0.062506,-0.062871,0.10071,-0.058156,0.015458,-0.010971,-0.052924,0.0051069,0.053343,-0.049443,0.059181,-0.061938,-0.016474,0.034003,0.058691 0.08376,-0.090801,0.066271,-0.064924,0.017539,0.019161,0.0039051,0.078292,-0.010497,0.009884,0.037521,0.00029233,0.020932,0.11013,0.046107 0.056979,-0.07015,0.019436,-0.041914,0.0097704,0.0073353,0.041486,0.089099,-0.064593,0.044501,0.0016047,0.055459,0.039076,0.1013,-0.0071558 0.026912,-0.038986,0.0031057,-0.017943,0.0015398,-0.0118,0.038018,0.054648,-0.060449,0.036995,-0.013338,0.055042,0.03489,0.053876,-0.031728 0.011811,-0.019409,0.00034627,-0.0046725,5.6929e-05,-0.015343,0.023687,0.026349,-0.038407,0.02168,-0.011277,0.033274,0.0223,0.021003,-0.0275 0.004779,-0.0086821,0.00021287,0.0012151,0.0018728,-0.01151,0.010719,0.011414,-0.02007,0.010067,-0.0063764,0.01401,0.014314,0.0061384,-0.017705 0.0015894,-0.0025079,-0.00040445,0.0017665,0.0014725,-0.0049621,0.0029575,0.0033702,-0.0071933,0.0041008,-0.0017196,0.0038279,0.0070755,0.0012856,-0.005441 0.00013659,-0.00024107,-0.00019168,0.00058357,0.00042671,-0.00088282,0.00045431,0.00041804,-0.0015984,0.0015148,-0.00061366,0.00075651,0.0016341,0.00037833,-0.00019641 2.2681e-05,-1.6525e-05,-3.0092e-05,2.1628e-05,5.5088e-06,-5.8708e-05,1.2339e-05,-4.7156e-05,-1.1805e-05,0.00010006,-4.0011e-05,4.6065e-05,0.00013496,3.0159e-05,0.00013002 -8.5143e-18,6.7152e-18,5.6701e-18,-8.7752e-18,2.7755e-17,-1.7454e-18,-5.4868e-18,9.4514e-19,5.843e-18,8.3775e-18,1.19e-17,1.0277e-17,3.2354e-17,1.9604e-17,-1.1489e-18 -1.1091e-17,5.3302e-18,7.9626e-18,-9.2249e-18,3.2569e-17,2.7083e-19,-6.1619e-18,-1.3831e-18,7.028e-18,3.9694e-18,1.2942e-17,1.4611e-17,3.8662e-17,2.6017e-17,-2.1338e-18 6.5055e-07,-2.311e-07,-1.2109e-06,-9.7369e-07,-1.2621e-06,-1.7194e-06,6.8201e-07,4.8064e-07,2.722e-06,-2.0323e-06,3.0786e-06,1.3473e-06,2.8467e-06,2.4984e-06,8.7474e-07 6.5156e-05,-3.4848e-05,-6.4537e-05,-4.1152e-05,1.1211e-05,-4.8963e-05,3.9105e-05,4.3391e-05,0.00016553,-0.00010919,0.00015752,9.1823e-05,0.00013478,5.9176e-05,4.4688e-05 0.0027234,-0.002125,-0.0018935,-0.0025967,7.8735e-05,0.00093455,0.0027906,0.0041873,0.0010981,-0.0021246,0.0029656,0.0066174,0.0017352,0.0021694,-0.001662 0.014013,-0.012492,-0.0033732,-0.01011,0.0013032,0.0056764,0.0146,0.021273,-0.0029174,-0.0065338,0.0017667,0.026739,0.010132,0.0052678,-0.020776 0.039169,-0.042214,0.0002945,-0.019571,0.00072526,0.013727,0.032226,0.051477,-0.020523,-0.00906,-0.013704,0.053772,0.036664,-0.0074773,-0.077784 0.073809,-0.082141,0.019687,-0.01786,0.0044393,0.0026021,0.047718,0.069952,-0.035877,-0.012235,-0.038471,0.063157,0.088336,-0.049507,-0.13751 0.095376,-0.10169,0.048482,0.007998,0.013468,-0.040806,0.040208,0.051692,-0.013668,0.0033069,-0.059954,0.023959,0.12112,-0.10223,-0.11544 0.080439,-0.082962,0.071791,0.043848,0.013318,-0.10824,0.0051334,0.020202,0.036719,0.051509,-0.032982,-0.023055,0.081882,-0.093003,-0.0094959 0.041254,-0.039201,0.074047,0.039561,-0.0065787,-0.15701,-0.036755,0.031431,0.074087,0.09982,0.015781,-0.029868,-0.01733,-0.010055,0.049443 0.0097152,-0.0081801,0.06764,-0.014651,-0.040292,-0.16728,-0.05647,0.070223,0.085767,0.11661,0.030487,-0.0016728,-0.070393,0.055403,0.017555 -0.0037422,0.0010347,0.069202,-0.066518,-0.063365,-0.16131,-0.058189,0.093534,0.089587,0.11881,0.020127,0.032648,-0.05588,0.067614,-0.028601 -0.0044477,-0.0011131,0.072884,-0.079972,-0.06182,-0.15898,-0.055229,0.094526,0.099059,0.12252,0.0085128,0.063953,-0.034991,0.063568,-0.053703 -0.001235,-0.010811,0.068697,-0.063857,-0.040367,-0.15913,-0.050618,0.081167,0.10391,0.13009,-0.0069222,0.088512,-0.048397,0.068192,-0.064643 -0.0080044,-0.025534,0.04596,-0.032927,-0.0057298,-0.14924,-0.036484,0.048434,0.069859,0.13268,-0.031314,0.10297,-0.085525,0.071535,-0.060407 -0.0337,-0.025765,0.024258,-0.0049195,0.012909,-0.11359,-0.0020934,0.0092629,0.0053323,0.1088,-0.04739,0.069606,-0.10615,0.046862,-0.048023 -0.032976,-0.0051215,0.043898,0.015336,0.0054356,-0.069291,-0.0061461,-0.014848,-0.0089529,0.041465,-0.035013,-0.0089569,-0.077075,0.0083036,-0.027083 0.027957,-0.011714,0.085585,0.0042393,0.011287,-0.042367,-0.047561,-0.01158,0.024306,-0.018235,0.020273,-0.082766,-0.029611,0.012054,-0.0017923 0.094364,-0.057738,0.084805,-0.028781,0.029487,-0.026755,-0.030197,0.035458,0.0099295,-0.013409,0.069564,-0.074796,0.01544,0.071503,0.019892 0.095424,-0.079913,0.03198,-0.03276,0.026884,-0.016015,0.039799,0.082573,-0.057637,0.032393,0.060846,0.019512,0.037917,0.10383,0.0059804 0.058209,-0.061872,-0.00060054,-0.015174,0.015,-0.024056,0.065161,0.07825,-0.086041,0.044928,0.024692,0.069473,0.041449,0.075029,-0.023951 0.026557,-0.037203,-0.0033782,-0.0029239,0.0071744,-0.027827,0.048327,0.04777,-0.070633,0.034478,-0.00038621,0.059239,0.036213,0.034439,-0.036328 0.012051,-0.02001,-0.0010094,0.003127,0.0054106,-0.022551,0.02843,0.023445,-0.045727,0.020403,-0.0068237,0.032891,0.026477,0.012982,-0.03027 0.0049243,-0.0091919,0.00012892,0.0047197,0.0050248,-0.013749,0.012851,0.010093,-0.02455,0.011058,-0.005214,0.013357,0.016638,0.0022633,-0.018894 0.0014761,-0.0028974,-0.00048451,0.0027329,0.0027149,-0.005809,0.0037828,0.0030832,-0.0087001,0.0049621,-0.0014677,0.0039014,0.0072999,-0.0010412,-0.0061645 0.00011918,-0.0004576,-0.00038761,0.0010212,0.0010049,-0.0014336,0.00074516,0.00074921,-0.0019865,0.0016588,-0.00051043,0.0010254,0.0015143,-0.00019195,-0.00086764 4.2265e-05,2.2244e-06,-1.1902e-05,6.3809e-05,0.00015662,-0.00015211,0.0001036,3.9079e-06,-0.00020101,0.00023152,-0.00016027,5.2112e-05,0.0002555,7.2423e-05,0.00040383 7.865e-06,4.8156e-06,-2.6347e-07,1.356e-05,-1.3759e-06,-1.975e-05,2.7648e-07,-7.1019e-06,-6.325e-06,8.3073e-06,-3.361e-05,-2.5426e-05,6.1853e-06,3.431e-05,2.2466e-05 -7.0288e-18,3.6412e-18,4.8275e-18,-6.2919e-18,2.074e-17,-1.8146e-18,-3.9794e-18,-1.8125e-19,6.0355e-18,3.4211e-18,9.9654e-18,7.8948e-18,2.5342e-17,1.6442e-17,-2.1805e-18 -5.3362e-18,3.8657e-18,2.9469e-18,-5.4135e-18,1.5583e-17,-1.9171e-20,-3.4373e-18,-1.3773e-18,7.091e-18,2.5613e-18,6.961e-18,7.2994e-18,2.0169e-17,1.2092e-17,-1.1441e-19 2.0952e-05,-2.9848e-05,-3.3898e-05,5.8754e-06,5.1641e-05,-2.3232e-05,3.9487e-05,6.1155e-05,-6.1328e-06,-6.8646e-05,5.1006e-05,1.6299e-05,7.334e-05,1.793e-05,9.1406e-05 0.0017568,-0.0016239,-0.00093594,-0.0011605,0.00014367,0.00083694,0.0015473,0.0028287,0.00016584,-0.0013061,0.0015316,0.0038131,0.0014993,0.0013923,-0.0014437 0.0097478,-0.010942,-0.0013692,-0.0040198,0.00085059,0.0040596,0.008301,0.015657,-0.0067195,-0.0049873,0.0015039,0.016983,0.014329,0.0018972,-0.016569 0.028902,-0.039668,0.00080976,-0.0012652,0.0057243,0.0067824,0.020681,0.043473,-0.029563,-0.0080663,-0.0021337,0.040464,0.05059,-0.010665,-0.063308 0.054651,-0.076836,0.008908,0.015392,0.01783,0.001271,0.037015,0.06485,-0.054488,-0.017111,-0.0095471,0.049681,0.095408,-0.039311,-0.11599 0.07598,-0.10225,0.022601,0.050871,0.040361,-0.021229,0.047931,0.055981,-0.048392,-0.019189,-0.017368,0.032232,0.11348,-0.076147,-0.12871 0.082599,-0.10173,0.037584,0.094841,0.062797,-0.062383,0.045536,0.029096,-0.0058776,0.0095132,-0.01734,0.0010838,0.071156,-0.087349,-0.084726 0.073803,-0.077852,0.049868,0.11775,0.06915,-0.10244,0.030323,0.014163,0.049788,0.068088,-0.012324,-0.010364,-0.01256,-0.054605,-0.037536 0.061548,-0.057427,0.056016,0.1126,0.059731,-0.12221,0.014394,0.018396,0.092113,0.11937,-0.011194,-0.0021637,-0.076706,-0.01109,-0.028715 0.05435,-0.048832,0.057701,0.1034,0.050586,-0.12745,0.0062516,0.025706,0.10728,0.14636,-0.013678,0.012477,-0.10882,0.020261,-0.036256 0.050956,-0.052084,0.05165,0.10556,0.053046,-0.12475,0.0017798,0.021204,0.095986,0.14959,-0.014926,0.027664,-0.12814,0.03805,-0.032167 0.041488,-0.065985,0.030687,0.10642,0.066295,-0.11944,-0.0067292,0.001811,0.050905,0.13386,-0.02586,0.045681,-0.14792,0.052682,-0.011946 0.0034492,-0.079614,0.0018137,0.08267,0.069909,-0.10331,0.0037836,-0.031864,-0.020379,0.11108,-0.039113,0.03909,-0.15237,0.061046,6.6139e-05 -0.044384,-0.056949,0.013966,0.057457,0.03612,-0.063505,0.038862,-0.034549,-0.062573,0.073702,-0.039886,-0.014197,-0.12124,0.038249,0.00088405 -0.024826,-0.0091049,0.07123,0.052534,0.0070406,-0.031209,0.011469,-0.016362,-0.035978,0.011384,-0.027754,-0.080281,-0.063579,0.015566,-0.0096711 0.060726,0.0014486,0.10263,0.03211,0.028341,-0.021815,-0.040277,0.0067887,-0.00063855,-0.032996,0.026074,-0.13206,-0.0046994,0.030738,-0.01843 0.11986,-0.037299,0.056039,-0.0078433,0.055325,-0.020105,-0.010683,0.035962,-0.02613,-0.014572,0.087511,-0.084152,0.027188,0.063536,-0.0065531 0.09729,-0.060914,0.00038718,-0.018605,0.045212,-0.017122,0.060059,0.059953,-0.071675,0.023452,0.086739,0.025004,0.03282,0.062799,0.0094384 0.053709,-0.049511,-0.013674,-0.0066796,0.02697,-0.017099,0.073603,0.056176,-0.078713,0.030253,0.043424,0.066058,0.030394,0.039623,-0.0039992 0.023619,-0.029425,-0.0067974,0.0027089,0.014701,-0.018446,0.047811,0.03453,-0.060064,0.022493,0.0099751,0.050144,0.028096,0.016768,-0.017247 0.010629,-0.015486,-0.0030024,0.0057482,0.0089322,-0.014106,0.025513,0.016418,-0.037223,0.012066,-0.0015812,0.025485,0.019898,0.0046612,-0.01705 0.0040904,-0.006761,-0.00086407,0.0055766,0.0055589,-0.0082586,0.010586,0.0064857,-0.018273,0.0061236,-0.0027774,0.0082123,0.012643,-0.0017301,-0.009855 0.001128,-0.0026232,-0.00054295,0.0028091,0.0022123,-0.0036302,0.0034321,0.0013073,-0.0074268,0.003523,-0.0010976,0.0029914,0.006069,-0.0024756,-0.0041908 0.00013934,-0.0004584,-0.00026933,0.00049261,0.00035992,-0.00097589,0.0007671,-0.000132,-0.0016458,0.0012975,-0.00044466,0.00061924,0.0013862,-0.00057865,-0.00029524 3.1394e-05,-3.1969e-05,-6.5721e-05,6.5805e-05,4.9644e-05,-3.3348e-05,4.6042e-06,-5.8542e-05,-0.00014728,0.00024756,4.3852e-05,-6.966e-05,0.00015997,0.00010808,0.00024967 2.4456e-06,7.5056e-07,2.7239e-07,6.0963e-06,2.2017e-07,-7.2623e-06,-2.7516e-06,-1.8305e-06,-1.9807e-06,6.5505e-06,-1.0736e-05,-1.4541e-05,-1.0611e-06,1.952e-05,7.86e-06 -6.5526e-18,5.6853e-18,6.915e-18,-1.1078e-17,2.7978e-17,-1.1305e-18,-5.9756e-18,-2.0937e-18,1.1027e-17,6.5204e-18,1.2883e-17,1.2712e-17,3.7371e-17,2.2679e-17,-1.3632e-18 -1.1222e-18,9.1013e-19,6.5354e-19,-1.1402e-18,4.2257e-18,-2.8361e-19,-4.8836e-19,-1.5098e-19,1.0305e-18,1.2661e-18,2.0671e-18,1.929e-18,5.1559e-18,3.8542e-18,-1.2924e-19 2.6408e-05,-6.3326e-05,-3.4418e-05,4.9088e-05,0.00012152,-1.4215e-05,6.1355e-05,0.0001558,2.1517e-05,-0.00019835,3.4919e-05,1.7061e-05,0.00016529,0.0001163,0.00018199 0.00070644,-0.0009642,-0.00042633,-0.00028871,0.00044545,0.00043772,0.00068827,0.0013667,-0.00045828,-0.00076882,0.00081249,0.0017201,0.0012352,0.0004078,-0.00036131 0.0054485,-0.0073181,-0.00088426,0.00031345,0.0019264,0.0023661,0.0039952,0.009176,-0.0069858,-0.0045948,0.0027634,0.0080143,0.012956,0.00077993,-0.0084897 0.017188,-0.027144,-0.00044393,0.008806,0.0083715,0.0030947,0.010977,0.027597,-0.029051,-0.0096182,0.0073924,0.021674,0.04102,-0.005974,-0.033114 0.03311,-0.052241,0.00079429,0.028113,0.023624,0.0060983,0.02411,0.041885,-0.056353,-0.023752,0.011987,0.029454,0.070308,-0.019393,-0.063058 0.048116,-0.072206,0.0036859,0.059275,0.049254,0.0049557,0.040414,0.038046,-0.071867,-0.042703,0.015497,0.023301,0.081677,-0.034986,-0.077012 0.0599,-0.079379,0.0068641,0.094829,0.083561,1.0169e-05,0.054791,0.017168,-0.069598,-0.047271,0.014069,0.0064571,0.060201,-0.047638,-0.058683 0.066956,-0.073948,0.010901,0.12556,0.11092,-0.0070068,0.059146,-0.010439,-0.053199,-0.02593,0.008029,-0.0090294,0.016413,-0.050129,-0.025036 0.067943,-0.065576,0.014644,0.14444,0.12379,-0.010172,0.056254,-0.029319,-0.035696,0.0055196,0.0033469,-0.018977,-0.034511,-0.043434,0.0087433 0.065286,-0.06163,0.011076,0.15052,0.12518,-0.013321,0.04697,-0.040296,-0.034791,0.023987,-0.001689,-0.018787,-0.072603,-0.029355,0.03841 0.055028,-0.067022,-0.0037602,0.14316,0.12485,-0.019413,0.026359,-0.051697,-0.058093,0.025661,-0.016208,-0.00024603,-0.096232,-0.014192,0.072917 0.021563,-0.090344,-0.031512,0.10992,0.12164,-0.032172,0.0014981,-0.077297,-0.10041,0.024058,-0.040153,0.013726,-0.11086,0.0087391,0.078903 -0.043695,-0.10408,-0.02908,0.060314,0.087186,-0.031254,0.034608,-0.089696,-0.12636,0.037125,-0.039145,-0.032141,-0.10321,0.019741,0.034831 -0.07786,-0.056625,0.045472,0.054976,0.021788,-0.005722,0.078679,-0.041855,-0.1017,0.022992,-0.033987,-0.08624,-0.077476,0.0082981,0.016484 -0.014421,0.019635,0.12316,0.070784,-0.0018693,0.0085746,0.020641,0.0053498,-0.048083,-0.035576,-0.028609,-0.12574,-0.033924,0.015103,-0.01382 0.090566,0.036509,0.10962,0.03326,0.040932,-0.001582,-0.055215,0.01539,-0.014273,-0.070913,0.025425,-0.13992,0.016753,0.034528,-0.035563 0.12929,-0.0080244,0.024167,-0.025094,0.070909,-0.0079838,-0.013102,0.014265,-0.026667,-0.034657,0.10428,-0.074897,0.026362,0.039422,-0.002528 0.091399,-0.039494,-0.022274,-0.035946,0.051297,-0.0015911,0.061639,0.033527,-0.048079,0.0070406,0.10111,0.026672,0.020835,0.029013,0.040062 0.046403,-0.034367,-0.020977,-0.016806,0.027709,-0.00012647,0.066107,0.037157,-0.049822,0.013052,0.048984,0.061562,0.015412,0.018644,0.027785 0.019526,-0.019386,-0.0097741,-0.0034197,0.013883,-0.0027513,0.038795,0.023529,-0.036653,0.0088426,0.011637,0.043227,0.014104,0.007232,0.0039091 0.0079904,-0.0092832,-0.0039103,0.0017439,0.0072201,-0.0030617,0.01778,0.010175,-0.021835,0.0037724,-0.00053188,0.018963,0.010965,-0.00031226,-0.0042171 0.0027999,-0.0036805,-0.0012779,0.0025863,0.0042808,-0.0020495,0.0066837,0.0026282,-0.010591,0.0023489,-0.0012235,0.0055545,0.0071885,-0.0023288,-0.0024133 0.00073007,-0.001149,-0.00035493,0.0012945,0.0015935,-0.0010548,0.0015982,-1.5005e-05,-0.0041071,0.00083809,-0.00023136,0.0010411,0.0032812,-0.001062,-0.0005503 0.00014627,-0.00022998,-7.8119e-05,0.00015801,-6.5872e-05,-0.00021921,0.00014931,-0.00018235,-0.00056109,0.00029704,-6.6057e-05,0.00016042,0.00035189,-0.00020481,0.00039657 -1.2239e-05,-3.8577e-05,-1.3078e-05,6.116e-06,2.6509e-05,3.3658e-05,-6.3654e-05,1.8177e-05,-1.9555e-05,0.00012487,0.00012377,-8.8583e-05,-4.6314e-05,0.00011178,5.9257e-05 -1.255e-06,-1.746e-06,5.0585e-07,2.9707e-07,1.0678e-06,1.6835e-06,-3.7586e-06,1.6278e-06,9.9098e-07,3.868e-06,4.9902e-06,-4.6289e-06,-4.8937e-06,6.113e-06,-2.4401e-06 -1.1735e-05,-2.3755e-07,-1.1541e-05,-1.304e-05,1.1025e-05,-3.2028e-06,5.5625e-06,-3.6676e-06,-5.5725e-06,-2.4978e-05,-7.1698e-06,-1.5233e-05,-8.9163e-06,-8.9962e-08,-9.9287e-06 -3.3834e-18,2.9972e-18,2.7107e-18,-4.7471e-18,1.1927e-17,3.0744e-20,-3.028e-18,-7.8421e-19,4.9689e-18,4.0638e-18,5.7481e-18,4.699e-18,1.7054e-17,9.9896e-18,-7.1225e-19 8.0517e-06,-5.8239e-05,-3.5321e-05,4.0621e-05,0.00011734,-4.2155e-05,1.4746e-05,0.00010453,4.1974e-05,-0.00019456,2.8342e-05,-4.7517e-05,0.00010484,0.00012975,0.00011647 0.00033396,-0.00051631,-0.00029209,-2.9882e-05,0.00072436,0.00010039,0.00030107,0.0007935,-0.00053567,-0.00076136,0.00073445,0.00085059,0.0013189,0.00040638,0.00035895 0.0024073,-0.0037651,-0.00083548,0.00092917,0.0024515,0.0010873,0.0016249,0.004418,-0.0048896,-0.0037789,0.0033053,0.0037272,0.0075101,0.0010942,-0.0010504 0.008217,-0.013313,-0.0015411,0.0068909,0.0072178,0.0024348,0.0051675,0.012994,-0.019257,-0.0097589,0.0091951,0.0081971,0.022888,-0.00022707,-0.0081241 0.015499,-0.024811,-0.0029118,0.016876,0.016748,0.0059591,0.012037,0.019425,-0.037886,-0.020885,0.01538,0.013682,0.036343,-0.0018803,-0.015006 0.022938,-0.034522,-0.0034094,0.032506,0.032836,0.011842,0.022374,0.017419,-0.057189,-0.038157,0.020507,0.014395,0.044847,-0.0027232,-0.017074 0.029443,-0.039068,-0.0034053,0.0489,0.053365,0.021826,0.031287,0.0046228,-0.069609,-0.053883,0.020968,0.0088694,0.042351,-0.0045072,-0.004617 0.034857,-0.039121,-0.0051164,0.063351,0.073285,0.031649,0.037304,-0.014103,-0.079033,-0.060453,0.017857,-0.0012231,0.03412,-0.0093689,0.019449 0.037171,-0.038141,-0.0082983,0.07163,0.085706,0.03634,0.036075,-0.031061,-0.08525,-0.057223,0.011832,-0.0071821,0.018186,-0.017054,0.047513 0.032972,-0.043007,-0.018261,0.071313,0.092288,0.031327,0.019039,-0.043073,-0.09712,-0.050145,-0.0026158,0.0064825,-0.0056246,-0.022883,0.082698 0.012727,-0.06398,-0.04002,0.052326,0.096064,0.012735,-0.018834,-0.061455,-0.11948,-0.041238,-0.037809,0.033685,-0.028837,-0.014888,0.10687 -0.038492,-0.1015,-0.053968,0.0081954,0.087821,-0.010271,-0.026559,-0.092873,-0.13485,-0.012463,-0.061146,0.0081927,-0.042002,0.0080699,0.053862 -0.099163,-0.10294,-0.0008339,-0.010579,0.040279,-0.0022923,0.060447,-0.07926,-0.11128,0.024457,-0.028084,-0.076544,-0.040179,0.0050813,-0.01433 -0.092264,-0.027592,0.11019,0.038142,-0.020741,0.025869,0.10467,-0.0017292,-0.075164,0.0012327,-0.019968,-0.10164,-0.044089,0.0027502,0.0011349 0.007249,0.060834,0.15995,0.073653,-0.012746,0.02428,0.0029259,0.041823,-0.040587,-0.07266,-0.037106,-0.099579,-0.014437,0.028563,-0.02086 0.10859,0.068345,0.089918,0.018849,0.04939,-0.0053884,-0.086895,0.015123,-0.01323,-0.088553,0.015444,-0.10651,0.022957,0.041598,-0.057344 0.12497,0.012626,-0.0047,-0.053275,0.074974,-0.012024,-0.02331,-0.0039499,-0.005553,-0.031586,0.10817,-0.061328,0.022612,0.025288,0.0022513 0.08181,-0.024555,-0.035429,-0.058437,0.048417,0.0012301,0.056214,0.019054,-0.017308,0.0064751,0.10304,0.031407,0.007972,0.015562,0.062018 0.039517,-0.024564,-0.025161,-0.031535,0.021628,0.0056032,0.058633,0.030733,-0.022735,0.0090197,0.046719,0.065413,0.0018921,0.010267,0.044778 0.016298,-0.013641,-0.012104,-0.011783,0.0090556,0.0031495,0.033076,0.020366,-0.018025,0.0046357,0.009907,0.044365,0.0043104,0.0043796,0.013417 0.0061034,-0.0062664,-0.004643,-0.0029378,0.0037216,0.00087216,0.01383,0.0084782,-0.011197,0.0011891,-0.00095097,0.018819,0.0048701,-0.00089924,0.00026276 0.0020577,-0.0022331,-0.0015981,-9.2825e-05,0.0017435,0.00077753,0.0047637,0.0025082,-0.0051543,0.00038746,-0.0014012,0.0053928,0.0034464,-0.00074741,-0.00044063 0.00039769,-0.00043405,-0.00037938,0.00029822,0.00064305,0.00024975,0.00080211,-1.072e-05,-0.0015566,2.741e-05,-0.00040294,0.00064434,0.0013809,-0.0004039,0.00012274 8.9651e-05,-9.1065e-05,5.6884e-05,1.0262e-06,0.00019238,5.0374e-05,5.9048e-05,-0.00010246,-0.00019978,7.477e-05,-0.00021447,-4.3735e-05,9.6737e-05,-0.00013837,0.00012821 -4.08e-06,-7.6797e-06,7.1224e-08,-5.2845e-06,9.2749e-06,2.1634e-06,-3.4126e-05,1.328e-05,3.2431e-06,3.9134e-05,3.3232e-05,-4.9874e-05,-3.0982e-05,4.8569e-05,-8.0533e-06 -4.5635e-07,-6.3493e-07,1.8395e-07,1.0803e-07,3.883e-07,6.1218e-07,-1.3668e-06,5.9193e-07,3.6036e-07,1.4065e-06,1.8146e-06,-1.6832e-06,-1.7795e-06,2.2229e-06,-8.8733e-07 -3.6187e-18,2.2296e-18,3.3765e-18,-4.3076e-18,1.122e-17,-1.5771e-19,-2.3972e-18,-3.5268e-19,2.0474e-18,2.3936e-18,4.8878e-18,5.0012e-18,1.34e-17,8.3806e-18,-4.6142e-19 -4.8114e-18,4.722e-18,4.1838e-18,-6.2124e-18,2.0138e-17,-1.3888e-18,-3.7305e-18,-8.6358e-19,5.8887e-18,3.8263e-18,6.9537e-18,8.6459e-18,2.3698e-17,1.4178e-17,-7.9646e-19 3.0144e-05,-2.777e-05,-1.9506e-05,5.7642e-05,0.00012232,-5.7572e-05,3.4547e-06,4.9899e-05,-9.0583e-06,-0.00019181,6.677e-05,-0.00011777,5.3581e-05,4.3062e-05,2.5164e-05 0.0002512,-0.00035563,-0.00024263,-0.00014475,0.00047832,0.00018248,0.000147,0.00064014,-0.0005365,-0.000556,0.00051041,0.00056795,0.0010619,0.000254,0.00041958 0.0009756,-0.001746,-0.00051948,0.00046844,0.0014501,0.00059619,0.00066707,0.0019609,-0.0027865,-0.0018261,0.0023451,0.0020079,0.0036394,0.00066379,0.00089899 0.0031803,-0.005363,-0.0009069,0.0023731,0.0039388,0.0016603,0.0024309,0.0043985,-0.0096915,-0.0060138,0.0063107,0.0038528,0.010516,0.001881,0.00082248 0.0059797,-0.0092841,-0.0019371,0.0050358,0.0078682,0.0030335,0.0040778,0.0063547,-0.017812,-0.011274,0.010389,0.00632,0.015439,0.0041889,0.0015586 0.0079816,-0.011741,-0.0032458,0.0088236,0.013609,0.0066751,0.0073935,0.0053745,-0.026281,-0.019269,0.013183,0.0080213,0.018406,0.0074594,0.0040603 0.0097343,-0.01343,-0.0038098,0.012522,0.02103,0.012157,0.0094443,0.00099486,-0.035139,-0.027739,0.012366,0.0067024,0.019808,0.00953,0.010175 0.010825,-0.015083,-0.0055658,0.015428,0.028278,0.016958,0.0069027,-0.0042545,-0.043428,-0.033926,0.0081067,0.0075011,0.019225,0.0069472,0.020392 0.0089925,-0.020451,-0.0125,0.016132,0.036304,0.018289,-0.005256,-0.0084077,-0.054051,-0.037268,-0.0046642,0.022226,0.012476,-0.00029654,0.042382 -0.0025991,-0.037547,-0.029366,0.0056218,0.045823,0.0077626,-0.036232,-0.019944,-0.073412,-0.034332,-0.036191,0.054676,-0.0042451,-0.0031971,0.075826 -0.035142,-0.074819,-0.049387,-0.022918,0.056355,-0.013633,-0.069551,-0.051848,-0.091717,-0.018204,-0.074346,0.059567,-0.019619,0.010387,0.058949 -0.088796,-0.10853,-0.032763,-0.054677,0.044399,-0.021264,-0.022845,-0.086424,-0.084663,0.018504,-0.05679,-0.027976,-0.013564,0.018293,-0.036603 -0.12198,-0.083304,0.05931,-0.02968,-0.008103,0.0098918,0.099846,-0.042597,-0.052327,0.039465,0.0034292,-0.10896,-0.015658,0.00092665,-0.059134 -0.076669,0.012529,0.16122,0.050802,-0.051176,0.036122,0.11101,0.048643,-0.043232,-0.014496,-0.011848,-0.068356,-0.033992,0.0079256,0.0044193 0.033571,0.091753,0.15683,0.07956,-0.01319,0.014469,-0.03397,0.064853,-0.039399,-0.090672,-0.057719,-0.036888,-0.016194,0.043391,-0.03196 0.11401,0.082211,0.056642,0.0073704,0.054254,-0.023014,-0.11105,0.0044373,-0.012882,-0.080455,0.0042349,-0.081609,0.021621,0.045371,-0.085998 0.11646,0.019406,-0.025718,-0.065475,0.072311,-0.022354,-0.02469,-0.016268,0.0074494,-0.014984,0.10405,-0.0653,0.021315,0.016062,-0.00068119 0.075153,-0.017637,-0.041657,-0.066615,0.043375,-0.0038616,0.054908,0.013456,0.00091481,0.015635,0.10188,0.028304,0.00023716,0.006776,0.072833 0.036974,-0.020446,-0.027333,-0.037405,0.016222,0.0045987,0.056533,0.028233,-0.0085224,0.013319,0.047465,0.065717,-0.0051142,0.004538,0.053428 0.015349,-0.011988,-0.013126,-0.015182,0.0050716,0.0037587,0.031463,0.020571,-0.0094711,0.0066502,0.011177,0.045476,0.00055186,0.0016744,0.017759 0.005436,-0.0055016,-0.0052806,-0.0050011,0.0010536,0.0019474,0.012913,0.0092134,-0.0061223,0.0029012,-0.00069727,0.020663,0.0027526,-0.0010149,0.0016895 0.0017586,-0.0020589,-0.001858,-0.0013141,0.0002137,0.0015538,0.0041328,0.0031202,-0.0029841,0.001316,-0.001292,0.0068638,0.0025036,-0.00052009,-0.00067904 0.00035151,-0.00042937,-0.00039766,-0.00014729,7.5198e-05,0.00047595,0.00073033,0.00038417,-0.00090438,0.00017972,-0.00059566,0.0010286,0.001144,-0.00041064,-0.00016028 6.1217e-05,-7.9556e-05,6.055e-05,-3.5802e-05,0.00016641,9.2352e-05,3.3511e-05,7.0324e-06,-0.0001026,9.7057e-05,-0.00032036,7.3213e-05,7.2356e-05,-0.00010589,8.8982e-05 2.001e-06,2.5022e-06,-5.788e-07,-4.2972e-06,1.0074e-06,-4.6642e-06,-2.5525e-06,2.4663e-06,-4.048e-07,3.2019e-06,-8.9252e-07,-8.6691e-06,1.5667e-06,3.2485e-06,2.2078e-06 -8.9859e-18,5.1487e-18,8.3915e-18,-1.1082e-17,3.408e-17,-2.503e-18,-6.1907e-18,-3.6995e-18,8.8273e-18,7.7567e-18,1.5578e-17,1.4643e-17,4.129e-17,2.8001e-17,-4.033e-18 -1.0203e-17,7.1481e-18,3.0883e-18,-1.3116e-17,3.0444e-17,-2.4748e-18,-7.5357e-18,-2.4106e-18,9.8262e-18,6.7706e-18,1.4412e-17,1.3724e-17,3.9103e-17,2.4503e-17,-2.0596e-18 -8.9964e-18,6.9316e-18,4.6307e-18,-6.9974e-18,2.7151e-17,-8.8863e-19,-6.5639e-18,-3.6326e-19,1.0552e-17,8.5728e-18,1.4175e-17,9.8537e-18,3.5543e-17,2.2888e-17,-1.6292e-18 2.0175e-05,-1.3927e-05,7.4879e-06,2.1556e-05,7.3949e-05,-2.8505e-05,2.9784e-06,4.3683e-05,3.0206e-05,-0.00011557,3.3352e-05,-5.7609e-05,7.3229e-05,3.8021e-05,2.4975e-05 0.00013558,-0.00013972,-0.00010232,-9.7382e-05,0.00026101,4.4933e-05,4.2617e-05,0.00029193,-0.00026528,-0.00033031,0.00026525,0.00018586,0.00058777,7.7288e-05,0.00030301 0.00039173,-0.00065101,-0.00022872,-9.3018e-05,0.00068745,0.00054633,0.0002965,0.0010298,-0.0015877,-0.00041052,0.00084745,0.0010152,0.0015576,0.00067981,0.00057876 0.0010357,-0.0018278,-0.00018862,-0.00040201,0.0015474,0.00095509,0.00047948,0.0018612,-0.0044806,-0.0021501,0.0025807,0.0028064,0.0038504,0.0023822,0.00096397 0.0020344,-0.0030852,-0.0005471,3.3262e-05,0.0034754,0.001467,0.0010599,0.0028558,-0.0080601,-0.0047651,0.0041798,0.0039137,0.0057483,0.0050153,0.0021334 0.0024055,-0.0036199,-0.0014968,6.7453e-05,0.0046603,0.0021471,0.0016949,0.0027088,-0.01045,-0.0068843,0.0044743,0.0054357,0.0059223,0.0070009,0.0040687 0.0021374,-0.0052772,-0.0031165,-0.00038896,0.0069847,0.0031148,-0.00047702,0.0025433,-0.014489,-0.009879,0.0022014,0.009281,0.0042637,0.0075078,0.0097549 7.6211e-05,-0.0096833,-0.0079276,-0.0010466,0.011259,0.0024362,-0.010245,0.0032294,-0.021813,-0.012687,-0.006294,0.021788,0.00013343,0.0048292,0.024581 -0.0071462,-0.022979,-0.019432,-0.007761,0.019837,-0.0034865,-0.035875,-8.5516e-06,-0.036788,-0.015128,-0.030395,0.050454,-0.010773,0.0032858,0.054443 -0.027847,-0.052618,-0.037405,-0.027785,0.033936,-0.016723,-0.074433,-0.020854,-0.057091,-0.010578,-0.071317,0.074267,-0.024231,0.012721,0.065904 -0.068353,-0.093453,-0.041644,-0.059227,0.041913,-0.028818,-0.075695,-0.06402,-0.062212,0.012369,-0.084424,0.025223,-0.020294,0.029566,-0.0089267 -0.11135,-0.1059,0.011129,-0.069937,0.014693,-0.014369,0.024282,-0.074774,-0.036068,0.045917,-0.022612,-0.090212,-0.001905,0.022359,-0.10136 -0.11299,-0.051397,0.11399,-0.013676,-0.040231,0.025,0.14027,0.00058074,-0.018061,0.038743,0.034811,-0.11094,-0.014273,-0.0032809,-0.053806 -0.046419,0.047595,0.17742,0.073906,-0.061611,0.033912,0.09795,0.083428,-0.039166,-0.038228,-0.016861,-0.0064822,-0.040897,0.012293,0.032779 0.053699,0.10659,0.13065,0.080216,-0.007172,-0.0026404,-0.068624,0.064163,-0.051705,-0.097647,-0.076681,0.012088,-0.023044,0.053574,-0.045427 0.1124,0.083122,0.028201,-0.0011082,0.058354,-0.035438,-0.11781,-0.0091282,-0.014708,-0.065439,-6.3384e-05,-0.08077,0.021976,0.043918,-0.10647 0.10865,0.022091,-0.036828,-0.066964,0.069755,-0.030899,-0.022116,-0.023711,0.012769,-0.0027853,0.10063,-0.074571,0.020126,0.0079937,-0.0055193 0.071772,-0.01275,-0.044688,-0.067971,0.04072,-0.0093344,0.053925,0.0090207,0.0079476,0.021624,0.10194,0.018462,-0.0038397,-0.00067417,0.0769 0.036953,-0.017706,-0.029409,-0.039558,0.015341,0.001594,0.057295,0.025811,-0.001045,0.016937,0.049246,0.059604,-0.0093557,-1.4572e-05,0.060082 0.016281,-0.011593,-0.014518,-0.017372,0.0040933,0.0027615,0.033447,0.021209,-0.0051392,0.0082163,0.012932,0.046185,-0.0031292,0.0002674,0.021806 0.0063677,-0.0057446,-0.006722,-0.0063426,0.00011444,0.0018298,0.01505,0.011028,-0.0041201,0.0035012,0.00053576,0.023177,0.001076,-0.00053554,0.0042279 0.0022021,-0.0024819,-0.0024624,-0.0019319,-0.00079352,0.0016107,0.0052309,0.0042272,-0.0024682,0.0018526,-0.0016296,0.0083031,0.0019285,-0.00023407,-0.00065494 0.00055308,-0.00057644,-0.00074631,-0.00050192,-0.00032171,0.0006414,0.0011927,0.0010259,-0.00095548,0.00050299,-0.00092296,0.0017739,0.0013001,-0.00061496,-0.00023526 9.5409e-05,-7.1478e-06,-4.5273e-05,-9.3601e-05,7.6185e-05,0.00011045,9.4967e-05,0.00010652,-0.0001662,0.00014732,-0.00043785,0.00012917,0.00015981,-0.00031245,0.00010341 -1.4736e-18,8.4327e-19,8.7008e-19,-1.0756e-18,5.1497e-18,-3.6052e-20,-1.4469e-18,-5.7706e-19,1.9424e-18,1.36e-18,2.8703e-18,2.1392e-18,7.3456e-18,4.0444e-18,-4.475e-19 -3.532e-18,2.7224e-18,2.5169e-18,-3.4057e-18,1.2161e-17,7.2449e-20,-3.3925e-18,-2.6704e-19,5.7361e-18,4.4543e-18,6.4082e-18,5.4852e-18,1.8734e-17,9.5045e-18,-8.0766e-19 -1.7359e-19,1.5305e-19,1.9706e-19,-1.6557e-19,6.8636e-19,-1.6273e-20,-8.7437e-20,-4.5247e-20,2.0687e-19,1.4774e-19,3.4463e-19,3.08e-19,9.0525e-19,5.3072e-19,-1.985e-20 -3.5399e-18,3.1715e-18,2.7065e-18,-3.8543e-18,1.299e-17,1.2773e-20,-3.979e-18,-7.015e-19,5.5095e-18,3.7159e-18,6.7755e-18,5.8717e-18,1.8339e-17,1.2489e-17,-1.1677e-18 1.984e-06,9.8424e-07,3.0592e-06,2.4744e-06,1.3703e-07,4.0777e-06,-3.5377e-06,7.5638e-06,1.9562e-05,-1.8285e-06,-4.6631e-06,7.9107e-06,1.4853e-05,2.5611e-06,1.4872e-05 1.2574e-05,-2.989e-05,-2.2172e-05,-1.3829e-05,7.2005e-05,3.9651e-05,-3.2045e-06,1.469e-05,-5.6481e-05,-9.2625e-05,3.2191e-05,1.1457e-05,4.6799e-05,9.2052e-05,9.1916e-05 -8.1051e-06,-0.00025109,1.1672e-05,-0.00037025,0.00042158,0.0004367,1.2163e-05,0.0004106,-0.00097272,-0.00027624,0.00014392,0.00042679,0.00047738,0.0015046,0.00024354 0.00026398,-0.00071608,2.2209e-05,-0.00099673,0.00088364,0.0010272,-0.00047311,0.0011794,-0.0029746,-0.0011225,0.00094363,0.0015366,0.0012669,0.0039628,0.0010768 0.0005882,-0.0013392,-8.6549e-05,-0.0015515,0.0015529,0.0015789,-0.0005147,0.0020708,-0.004525,-0.001865,0.001243,0.0028085,0.0014726,0.0062064,0.0015251 0.00041644,-0.0026796,-0.0013977,-0.0021695,0.0026009,0.0016251,-0.0024597,0.0034977,-0.0073577,-0.0028485,0.00015722,0.0063894,-0.00030701,0.0080072,0.0057735 -0.0010743,-0.0060908,-0.0051981,-0.0038082,0.0056322,0.00095608,-0.0099743,0.0055398,-0.012334,-0.0047574,-0.0060908,0.01699,-0.0049366,0.0091925,0.01748 -0.006392,-0.01575,-0.014061,-0.009431,0.012512,-0.0027699,-0.030548,0.0049716,-0.023861,-0.0084597,-0.024092,0.041005,-0.013529,0.0094444,0.044609 -0.020639,-0.037188,-0.028299,-0.025638,0.024065,-0.010967,-0.066238,-0.0062259,-0.040301,-0.008711,-0.058785,0.067285,-0.026549,0.018156,0.06864 -0.049911,-0.072688,-0.039173,-0.052909,0.037555,-0.023035,-0.090439,-0.040545,-0.051769,0.0022296,-0.088758,0.054009,-0.029763,0.034168,0.031824 -0.089379,-0.10254,-0.016862,-0.077426,0.031787,-0.023725,-0.043179,-0.076362,-0.036458,0.030463,-0.058748,-0.042188,-0.0069646,0.040898,-0.078394 -0.11291,-0.087992,0.058471,-0.061758,-0.0082375,0.0040584,0.083219,-0.052164,-0.0050865,0.05233,0.027508,-0.13424,0.0073651,0.013019,-0.12295 -0.089387,-0.015654,0.14586,0.012549,-0.056182,0.034951,0.15987,0.03846,-0.01169,0.018974,0.053669,-0.072894,-0.022219,-0.010483,-0.012778 -0.017949,0.070909,0.16753,0.087193,-0.059077,0.02482,0.065624,0.094944,-0.052525,-0.058308,-0.035788,0.057965,-0.05479,0.021856,0.055624 0.064075,0.10981,0.10022,0.074466,0.0026568,-0.01612,-0.091663,0.049115,-0.05872,-0.094789,-0.09014,0.033818,-0.024044,0.06012,-0.064759 0.10688,0.08089,0.0094978,-0.006496,0.06029,-0.042789,-0.11559,-0.020267,-0.014985,-0.051679,-0.0030554,-0.086114,0.022255,0.037826,-0.11981 0.10122,0.025323,-0.041252,-0.06396,0.066457,-0.035455,-0.021251,-0.028665,0.013121,0.0038681,0.096306,-0.085681,0.018443,0.00047159,-0.010284 0.070135,-0.0080227,-0.046252,-0.067528,0.039189,-0.015137,0.050618,0.0049693,0.012105,0.024007,0.10174,0.0047053,-0.0047061,-0.00888,0.075505 0.038748,-0.016128,-0.030734,-0.04095,0.017067,-0.0019576,0.057766,0.022307,0.0030843,0.018116,0.0539,0.0525,-0.011284,-0.0037762,0.064091 0.017891,-0.011248,-0.016221,-0.018977,0.005168,0.00099643,0.035766,0.01998,-0.0025689,0.0091745,0.017105,0.044655,-0.0059226,-0.0015937,0.02742 0.0077084,-0.0061105,-0.0080055,-0.0077139,0.00039772,0.0013392,0.01745,0.011679,-0.0035832,0.0043464,0.0024213,0.025092,-0.00040098,-0.0017139,0.007852 0.0028756,-0.0026552,-0.0030427,-0.0027465,-0.00080508,0.0013167,0.0064601,0.0051015,-0.0022656,0.0025154,-0.0010906,0.0096681,0.00079049,-0.00073852,0.00026538 0.00077974,-0.00073382,-0.0010282,-0.00089474,-0.0004304,0.00072971,0.0017218,0.0011443,-0.0011995,0.00092473,-0.00084536,0.0026216,0.001249,-0.00080009,-0.00029621 7.2751e-05,6.6588e-06,-2.35e-05,-0.00016971,-4.0146e-05,-4.9631e-05,8.4099e-05,7.4764e-05,-9.3031e-05,0.00014223,-0.00033311,0.00017986,4.3421e-05,-0.00021598,0.00015359 -7.2399e-19,6.4132e-19,1.1324e-18,-7.5456e-19,2.7441e-18,-1.5097e-19,-4.9333e-19,6.8349e-20,7.0378e-19,7.7646e-19,1.5085e-18,1.0966e-18,3.6653e-18,2.1916e-18,-1.878e-19 -6.6343e-18,4.6894e-18,4.0643e-18,-5.1793e-18,1.9677e-17,-7.2783e-19,-2.9626e-18,-7.9693e-19,5.5636e-18,4.4862e-18,8.7339e-18,8.4516e-18,2.5437e-17,1.5088e-17,-8.6591e-19 -6.5314e-18,6.2172e-18,3.5694e-18,-4.6926e-18,2.0985e-17,-1.255e-18,-5.074e-18,-4.6945e-19,6.2509e-18,4.6871e-18,1.103e-17,7.9497e-18,2.7754e-17,1.6668e-17,-2.1231e-18 -1.036e-18,9.1058e-19,1.0095e-18,-1.4512e-18,4.6447e-18,-9.5777e-20,-9.5489e-19,-2.1424e-19,1.3927e-18,9.472e-19,1.9679e-18,1.6899e-18,5.3954e-18,3.215e-18,-1.1801e-19 -8.996e-18,7.4341e-18,7.8959e-18,-8.8479e-18,2.6614e-17,-8.8832e-19,-5.7495e-18,-3.7641e-18,1.0672e-17,7.5171e-18,1.4818e-17,1.3951e-17,3.4555e-17,2.3236e-17,-4.4149e-19 -5.8485e-05,-9.5894e-05,3.8954e-05,-0.00015925,0.00014831,0.00021082,-0.0001507,9.428e-05,-0.00020645,-0.00015359,-3.7526e-05,9.6127e-05,-7.964e-05,0.00069853,1.2733e-05 -0.00014328,-0.00028784,0.00018977,-0.00055694,0.00050796,0.00055195,-0.00035406,0.00016909,-0.00097209,-0.00042079,-7.0361e-05,0.00043759,-0.00015743,0.0024044,0.00014602 -0.0001131,-0.0005345,0.00011831,-0.00088116,0.00062957,0.00076938,-0.00088943,0.00060186,-0.0018473,-0.00075441,-1.3689e-06,0.00094383,-0.00012461,0.0040288,0.00083991 -0.00022849,-0.0013213,-0.00057968,-0.0014764,0.00077895,0.0010693,-0.0025089,0.0015769,-0.0032939,-0.0014984,-0.00031482,0.0030951,-0.00043154,0.0056337,0.0030958 -0.0012748,-0.0039069,-0.0029735,-0.0026949,0.0027371,0.00097739,-0.0079764,0.0033994,-0.0066905,-0.0027704,-0.0041518,0.010522,-0.0041317,0.0083492,0.011758 -0.0053917,-0.011051,-0.0096145,-0.0077379,0.0086084,-0.00020767,-0.023376,0.005147,-0.014504,-0.0071847,-0.018337,0.028487,-0.011856,0.012232,0.034469 -0.015336,-0.026545,-0.019862,-0.020865,0.019135,-0.0043787,-0.053202,1.1403e-05,-0.027891,-0.010714,-0.045949,0.054343,-0.023376,0.02254,0.062413 -0.036263,-0.053512,-0.031754,-0.045482,0.033035,-0.013036,-0.084787,-0.022834,-0.042072,-0.007442,-0.079549,0.062848,-0.030764,0.03874,0.056499 -0.068363,-0.084723,-0.027696,-0.073888,0.039507,-0.018282,-0.076672,-0.060757,-0.037302,0.0090768,-0.079156,0.0043128,-0.018369,0.053997,-0.026739 -0.097714,-0.094324,0.017199,-0.083152,0.018655,-0.0076645,0.010858,-0.075117,-0.011653,0.037452,-0.011446,-0.10097,0.0081241,0.041275,-0.12486 -0.1004,-0.057408,0.095031,-0.04469,-0.024518,0.021021,0.12841,-0.022647,0.0086945,0.041922,0.068355,-0.13127,0.0040387,0.0013851,-0.10081 -0.063745,0.015279,0.15378,0.033791,-0.061488,0.0365,0.15183,0.063543,-0.020894,-0.0026355,0.051232,-0.010994,-0.037792,-0.010998,0.037029 0.0014394,0.084195,0.14504,0.090536,-0.051406,0.015594,0.032953,0.088963,-0.065235,-0.067289,-0.055209,0.10088,-0.061502,0.031279,0.061007 0.065358,0.10744,0.077756,0.066542,0.0076551,-0.021694,-0.10155,0.033286,-0.061337,-0.084377,-0.09288,0.036378,-0.025294,0.059801,-0.078013 0.099092,0.079153,0.0009937,-0.0078558,0.05842,-0.044021,-0.1109,-0.02647,-0.016167,-0.040275,-0.0050679,-0.088205,0.016996,0.031146,-0.12694 0.093848,0.030434,-0.041594,-0.059529,0.062288,-0.0372,-0.024115,-0.032819,0.013113,0.0073777,0.085613,-0.095184,0.01499,-0.0057969,-0.01824 0.068226,-0.0025803,-0.046381,-0.064942,0.038204,-0.019563,0.044953,-0.0018217,0.016285,0.025954,0.097503,-0.011268,-0.0067138,-0.014691,0.069881 0.040565,-0.012994,-0.032365,-0.043548,0.018064,-0.0067409,0.055973,0.018242,0.0085407,0.020444,0.057294,0.042854,-0.013525,-0.0077314,0.066902 0.020142,-0.010593,-0.018438,-0.021955,0.0068498,-6.1358e-05,0.038325,0.018475,0.00070777,0.010113,0.022072,0.042588,-0.0092841,-0.0033358,0.034143 0.0087228,-0.0061011,-0.0088861,-0.0089532,0.0016024,0.0012453,0.019355,0.01129,-0.0025026,0.0045911,0.0046782,0.025461,-0.0025205,-0.0022379,0.010592 0.0035608,-0.0028719,-0.003874,-0.003514,-0.00048933,0.0016403,0.0079969,0.0052334,-0.0018086,0.0026496,0.00016632,0.011528,-0.00075094,-0.0011206,0.001662 0.00093094,-0.00074601,-0.0011906,-0.0010279,-0.00042781,0.00092036,0.0021703,0.0011632,-0.00080136,0.00071696,-0.00049191,0.003229,0.00057927,-0.00068468,-0.00024683 0.0001539,-8.6158e-05,-2.845e-05,-0.00012753,-0.00015374,0.00022628,0.00020628,5.9067e-05,-0.00018525,0.0002876,-0.00019738,0.0004743,2.6486e-05,-0.00012156,6.3036e-05 4.3655e-06,-3.5386e-06,1.4315e-05,1.5288e-05,-1.9923e-05,1.1017e-05,-1.8506e-06,-9.2946e-06,3.8339e-06,1.6735e-05,5.1588e-06,2.1983e-05,-2.6771e-05,-1.5723e-05,1.0961e-05 -3.4388e-18,2.3113e-18,3.812e-18,-2.2495e-18,1.3542e-17,-5.0049e-19,-3.5138e-18,-1.4863e-18,6.4098e-18,2.6925e-18,6.8808e-18,7.2569e-18,1.7772e-17,1.1785e-17,-1.9726e-19 -9.9461e-18,1.0255e-17,6.5322e-18,-9.6735e-18,3.1537e-17,-1.3125e-18,-7.5717e-18,-3.8205e-18,1.032e-17,6.4131e-18,1.3574e-17,1.2267e-17,4.1495e-17,2.643e-17,-2.2237e-18 -9.3346e-18,3.9138e-18,9.5697e-18,-1.0818e-17,2.9925e-17,-1.4748e-18,-6.1232e-18,-3.0709e-18,1.1673e-17,7.4975e-18,1.3673e-17,1.2604e-17,3.9396e-17,2.3546e-17,-2.2283e-18 8.7433e-06,-9.4964e-06,-8.867e-06,7.1696e-07,-2.5654e-06,1.2244e-05,6.1068e-06,-3.978e-06,7.3382e-07,-2.2066e-05,3.8392e-06,-8.4394e-06,5.0216e-06,-1.9385e-05,5.6269e-06 -6.4508e-05,-9.9332e-05,4.1574e-05,-0.00017082,0.00015942,0.00020154,-0.00016763,0.00013294,-0.0002328,-0.00017128,-3.3385e-05,0.00011063,-8.3814e-05,0.00074798,-7.5239e-06 -0.00014467,-0.00027155,0.00010845,-0.00045981,0.00045169,0.00048001,-0.00042293,0.00016989,-0.00076075,-0.00046578,-0.00012089,0.00036446,-0.00030438,0.0019281,0.0003074 -0.0003546,-0.0006836,-0.00019069,-0.00086617,0.00080377,0.00073976,-0.0013206,0.00065302,-0.0014948,-0.00079895,-0.00074688,0.001402,-0.00034997,0.0034089,0.0018727 -0.0010789,-0.0022138,-0.0016664,-0.0015088,0.0015252,0.0011476,-0.0049294,0.0016003,-0.0028536,-0.0019554,-0.0029984,0.0051228,-0.0018174,0.005566,0.007735 -0.003792,-0.0069415,-0.0058882,-0.0048564,0.005427,0.0010629,-0.01559,0.0030341,-0.0071084,-0.0055457,-0.012288,0.017056,-0.0063017,0.0095748,0.025213 -0.01067,-0.017281,-0.013342,-0.014143,0.013819,0.00014189,-0.036869,0.0022873,-0.014221,-0.011688,-0.032909,0.03645,-0.015355,0.019809,0.050361 -0.024806,-0.035946,-0.022169,-0.033259,0.025953,-0.0023776,-0.06739,-0.010896,-0.023933,-0.014034,-0.06215,0.052863,-0.025507,0.035586,0.063317 -0.049736,-0.061255,-0.026171,-0.061647,0.038402,-0.0083013,-0.081432,-0.040599,-0.026391,-0.0084385,-0.080917,0.031793,-0.024467,0.054416,0.022769 -0.077537,-0.080439,-0.006078,-0.084315,0.035692,-0.0071343,-0.041767,-0.068963,-0.010109,0.013361,-0.049715,-0.047657,-0.0031468,0.057683,-0.074716 -0.093749,-0.070557,0.047965,-0.076348,0.0060929,0.0087406,0.057678,-0.060068,0.014739,0.035323,0.035345,-0.12557,0.010755,0.028752,-0.13074 -0.082999,-0.026134,0.10962,-0.026713,-0.032439,0.032135,0.1428,0.00383,0.016685,0.02826,0.085569,-0.092559,-0.0082537,-0.01266,-0.052484 -0.044144,0.037984,0.14176,0.043524,-0.058297,0.035157,0.12661,0.0706,-0.022542,-0.0185,0.035429,0.045881,-0.051528,-0.011214,0.076796 0.010049,0.0875,0.12012,0.081397,-0.042544,0.010415,0.0078926,0.075819,-0.06356,-0.066036,-0.064558,0.11974,-0.063931,0.027184,0.05587 0.0593,0.10326,0.061845,0.055839,0.010736,-0.02073,-0.10232,0.018577,-0.053206,-0.070967,-0.090418,0.038694,-0.029547,0.047787,-0.080856 0.086852,0.077893,-0.0021182,-0.0072578,0.052771,-0.039967,-0.10434,-0.031781,-0.012065,-0.031461,-0.013516,-0.081424,0.0059616,0.019348,-0.12577 0.084766,0.035619,-0.038561,-0.05409,0.057836,-0.034442,-0.028745,-0.035952,0.015063,0.0091585,0.068388,-0.097243,0.0052236,-0.013784,-0.030136 0.063964,0.0037728,-0.043077,-0.061253,0.037874,-0.018761,0.034171,-0.0091932,0.018932,0.026106,0.085989,-0.026304,-0.01222,-0.019658,0.05689 0.040296,-0.0092777,-0.03188,-0.044627,0.018923,-0.0076854,0.050936,0.012444,0.011951,0.020598,0.055748,0.031844,-0.016862,-0.012367,0.063522 0.020073,-0.0089735,-0.018429,-0.023443,0.0078659,2.7379e-05,0.037116,0.015667,0.003077,0.010292,0.024315,0.038918,-0.012536,-0.0049724,0.035412 0.008981,-0.0053983,-0.0091129,-0.0096268,0.0027371,0.0020613,0.019376,0.0099637,-0.00094358,0.0048047,0.0063767,0.024463,-0.0052796,-0.0029991,0.011795 0.0036822,-0.0025803,-0.0040366,-0.0035614,0.00056018,0.0012696,0.0085199,0.0046208,-0.00091155,0.0019908,0.00094983,0.011543,-0.0023295,-0.0022389,0.0022758 0.00088304,-0.00060653,-0.0010257,-0.00117,-0.00025908,0.00058454,0.0020143,0.0011681,-0.00083148,0.00052111,3.9773e-05,0.0032584,-1.0552e-05,-0.0010869,3.2001e-05 9.7548e-05,-1.3088e-05,-1.0067e-05,-8.7299e-05,-0.00012988,0.00013647,0.00010337,6.4409e-05,8.8808e-06,6.7539e-05,-7.7177e-05,0.00032248,-0.00012905,-3.5316e-05,3.9333e-05 4.3655e-06,-3.5386e-06,1.4315e-05,1.5288e-05,-1.9923e-05,1.1017e-05,-1.8506e-06,-9.2946e-06,3.8339e-06,1.6735e-05,5.1588e-06,2.1983e-05,-2.6771e-05,-1.5723e-05,1.0961e-05 -3.9295e-18,3.2676e-18,1.5916e-18,-3.7914e-18,1.1132e-17,-7.9389e-21,-2.6612e-18,-1.2798e-18,4.1264e-18,3.0814e-18,5.7712e-18,5.3803e-18,1.4357e-17,9.5963e-18,-9.9452e-19 -7.4537e-19,4.7386e-19,6.0661e-19,-9.0131e-19,2.1015e-18,-1.7264e-19,-2.4226e-19,-1.8928e-19,5.5901e-19,5.4091e-19,8.437e-19,9.2777e-19,2.3149e-18,1.5919e-18,-2.0772e-19 -4.8476e-18,4.266e-18,1.8637e-18,-3.7091e-18,1.2245e-17,7.817e-19,-3.3985e-18,-1.2264e-18,7.0016e-18,3.7987e-18,7.2147e-18,5.2235e-18,1.9192e-17,9.7052e-18,-1.556e-18 -4.3121e-18,3.1683e-18,4.5482e-18,-3.9507e-18,1.3972e-17,-6.7691e-19,-3.0876e-18,-1.1404e-18,5.9158e-18,2.6421e-18,7.2047e-18,7.0418e-18,1.9038e-17,1.2124e-17,-6.5555e-19 -2.6941e-05,-4.0457e-05,1.9166e-05,-5.6392e-05,6.6924e-05,5.0329e-05,-6.4099e-05,7.1241e-05,-7.0333e-05,-6.0441e-05,-2.0082e-05,3.8926e-05,-1.5303e-05,0.00026882,-1.3974e-05 -0.00015925,-0.00022357,-0.00011901,-0.00027534,0.00026395,0.00027083,-0.00046791,0.00031498,-0.00042271,-0.00049756,-0.00029932,0.00033732,-0.00024073,0.00097107,0.00061962 -0.00063071,-0.00097828,-0.00065088,-0.00094096,0.00088169,0.00089969,-0.0022819,0.00075288,-0.00093735,-0.0014079,-0.0016209,0.0020711,-0.00041418,0.0031461,0.0038537 -0.0019731,-0.0031452,-0.0027564,-0.0021921,0.0025972,0.0015666,-0.0073188,0.0013619,-0.0021401,-0.0034204,-0.0060124,0.0072576,-0.0018026,0.0058232,0.012884 -0.0058421,-0.0084305,-0.0071615,-0.0074672,0.00767,0.0021752,-0.019564,0.0010651,-0.005056,-0.0081612,-0.01867,0.018952,-0.0060657,0.011881,0.032452 -0.014367,-0.019974,-0.01295,-0.019815,0.017264,0.0025996,-0.041849,-0.0034197,-0.0078231,-0.012784,-0.041685,0.032938,-0.013025,0.025014,0.053448 -0.029993,-0.036036,-0.018206,-0.041471,0.028633,0.0022337,-0.061861,-0.020038,-0.0077966,-0.016199,-0.064858,0.032654,-0.018351,0.043188,0.04857 -0.053021,-0.052735,-0.013235,-0.068483,0.036791,0.0039032,-0.056891,-0.047274,0.0042179,-0.01131,-0.064709,-0.0088193,-0.010388,0.054914,-0.0056783 -0.072577,-0.057487,0.014823,-0.081859,0.030187,0.010654,-0.0049157,-0.059303,0.026299,0.0075341,-0.019238,-0.080429,0.0077919,0.045623,-0.077739 -0.078178,-0.037991,0.062318,-0.065299,0.0043276,0.026293,0.077726,-0.038426,0.043855,0.022036,0.04973,-0.10862,0.0091018,0.0059397,-0.084934 -0.062957,0.0021026,0.10215,-0.019515,-0.023677,0.039617,0.12395,0.018526,0.033827,0.010781,0.070913,-0.038414,-0.017335,-0.030132,0.006601 -0.031741,0.048176,0.11411,0.031874,-0.038929,0.036018,0.087729,0.061098,-0.0014774,-0.024355,0.016282,0.080499,-0.052357,-0.02324,0.094959 0.0084118,0.081988,0.089468,0.054281,-0.024751,0.015917,-0.0099509,0.053522,-0.035379,-0.052767,-0.064223,0.12437,-0.059345,0.0045969,0.049232 0.043957,0.09077,0.04463,0.033333,0.01519,-0.0051479,-0.089795,0.0038925,-0.027162,-0.051049,-0.082977,0.04974,-0.031164,0.015477,-0.069078 0.064141,0.070493,-0.0015455,-0.012702,0.046107,-0.02062,-0.0903,-0.034795,0.0017059,-0.01923,-0.023082,-0.051093,-0.0059826,-0.0067768,-0.11085 0.063611,0.036649,-0.028279,-0.048158,0.049911,-0.019221,-0.031306,-0.035844,0.018846,0.013787,0.041874,-0.073468,-0.0083461,-0.030439,-0.042028 0.048745,0.0094502,-0.031969,-0.052467,0.035511,-0.010131,0.020833,-0.014513,0.019728,0.025371,0.060239,-0.023451,-0.019709,-0.031252,0.031434 0.030638,-0.0028443,-0.024014,-0.037922,0.02071,-0.0019282,0.036497,0.0041323,0.012648,0.020397,0.042546,0.020293,-0.020394,-0.019222,0.04492 0.015057,-0.0052086,-0.013716,-0.019332,0.0091782,0.0022612,0.027602,0.0096973,0.0041239,0.010312,0.019568,0.029337,-0.013768,-0.0077072,0.026383 0.0066663,-0.003611,-0.006502,-0.007856,0.0040973,0.0026428,0.014852,0.0065731,-0.00057423,0.0043526,0.0059659,0.018902,-0.0064445,-0.0032745,0.008675 0.0026807,-0.0016781,-0.0027051,-0.002879,0.0015328,0.0016092,0.0064727,0.0028847,-0.00086701,0.0018104,0.0011013,0.0090262,-0.0027287,-0.0021671,0.0022018 0.0004448,-0.0002698,-0.00050023,-0.00055424,9.5424e-05,0.00050326,0.0011491,0.000445,-0.0002412,0.00029344,-2.6528e-05,0.001875,-0.00024629,-0.00068834,-3.1037e-05 2.7173e-05,2.0932e-05,3.776e-05,-9.7009e-05,-6.7301e-05,1.2153e-05,-1.7173e-05,5.9032e-05,3.2512e-05,-3.2822e-05,-6.2162e-05,5.5087e-05,-0.00023833,4.0855e-05,4.6639e-05 -4.016e-18,3.7139e-18,3.2826e-18,-4.6421e-18,1.2885e-17,-4.5834e-19,-2.4449e-18,-3.0954e-19,4.6608e-18,3.8485e-18,6.4881e-18,5.9645e-18,1.7009e-17,9.9696e-18,-7.8331e-19 -1.5781e-18,1.2143e-18,5.5615e-19,-1.299e-18,4.4466e-18,-3.3088e-19,-1.0339e-18,-3.0316e-19,2.005e-18,9.1923e-19,2.2584e-18,2.1545e-18,6.1467e-18,3.5545e-18,-5.8261e-20 -6.7331e-18,5.1667e-18,2.893e-18,-6.0678e-18,1.9165e-17,-8.5549e-19,-3.0136e-18,2.8284e-19,3.2773e-18,2.9584e-18,8.7183e-18,8.6726e-18,2.3612e-17,1.4459e-17,2.4179e-19 -2.5982e-19,2.2386e-19,2.663e-19,-3.1833e-19,9.6147e-19,-1.8011e-20,-1.5823e-19,-5.128e-20,2.6699e-19,1.9401e-19,4.8507e-19,4.4442e-19,1.2307e-18,8.7642e-19,-7.4313e-20 2.199e-06,-1.0472e-06,9.6208e-06,8.9027e-06,2.5619e-06,1.7579e-05,5.5566e-06,-1.3451e-05,-4.3488e-06,-1.7669e-05,-1.0451e-05,9.4714e-06,-5.9887e-07,-6.2928e-06,1.3805e-05 -4.2969e-18,3.1798e-18,2.9758e-18,-4.1942e-18,1.2895e-17,-5.5936e-19,-2.7277e-18,5.8815e-20,3.5643e-18,3.9589e-18,6.0617e-18,5.6998e-18,1.7155e-17,9.735e-18,-9.5777e-19 -0.00010079,-0.00013506,-0.00020083,-0.00012027,0.00010442,0.00012056,-0.00035056,0.00020652,-0.00010767,-0.00029037,-0.00035604,0.0003281,-0.00012125,0.00015444,0.00084294 -0.000549,-0.00079221,-0.00090842,-0.00066909,0.00067378,0.00083231,-0.0018311,0.00036067,-0.00015746,-0.0013472,-0.0021536,0.0017467,1.0821e-05,0.0011679,0.0043849 -0.0017936,-0.0024489,-0.0023782,-0.0022801,0.0023672,0.0017533,-0.0058044,0.00057017,-0.000581,-0.0030858,-0.0064683,0.005042,-0.00028043,0.0034245,0.011918 -0.0048538,-0.0063237,-0.0050405,-0.0068013,0.0066235,0.0023019,-0.013864,-0.00043051,-0.00090001,-0.006416,-0.017127,0.011778,-0.0023792,0.0088276,0.025168 -0.012127,-0.014112,-0.0085938,-0.017545,0.014012,0.0027214,-0.027622,-0.0059902,0.0011793,-0.011151,-0.03508,0.017991,-0.0039958,0.019052,0.037293 -0.023855,-0.022965,-0.0098698,-0.034708,0.021342,0.0042366,-0.034924,-0.019742,0.0086224,-0.014456,-0.047833,0.008794,-0.0024152,0.030377,0.02818 -0.039156,-0.029104,-0.0019185,-0.052434,0.027091,0.010444,-0.020208,-0.035868,0.026059,-0.014623,-0.039058,-0.029093,0.0082163,0.034766,-0.0087702 -0.048788,-0.024612,0.019901,-0.05742,0.023944,0.018575,0.02144,-0.036034,0.048307,-0.0064616,-0.0076647,-0.069489,0.017531,0.015795,-0.035222 -0.049084,-0.007335,0.048885,-0.04382,0.012557,0.029533,0.066611,-0.013648,0.060379,0.0012486,0.027345,-0.062516,0.012127,-0.019225,-0.015022 -0.037868,0.016734,0.067666,-0.013634,-0.0010147,0.037291,0.079761,0.01986,0.051237,-0.0039605,0.030985,0.0026496,-0.010781,-0.04666,0.047377 -0.019301,0.039999,0.066731,0.012206,-0.0062411,0.033623,0.043992,0.038361,0.025966,-0.017999,-0.0043836,0.073702,-0.031481,-0.044137,0.081214 0.0018102,0.055857,0.048004,0.020738,0.0027015,0.02146,-0.013359,0.027046,0.0046486,-0.025878,-0.048066,0.093072,-0.033388,-0.030952,0.036522 0.020773,0.058545,0.023941,0.0098714,0.022617,0.010328,-0.056241,-0.0033019,0.0060605,-0.020495,-0.057702,0.050395,-0.017198,-0.028333,-0.041639 0.031529,0.045358,0.00029413,-0.014175,0.037375,0.003919,-0.054442,-0.023592,0.014571,-0.0015735,-0.022899,-0.011026,-0.0082249,-0.04104,-0.071165 0.031248,0.025498,-0.013234,-0.02964,0.037542,0.00072081,-0.022088,-0.023929,0.017311,0.017265,0.017156,-0.030682,-0.013563,-0.04531,-0.034632 0.023698,0.0093475,-0.015337,-0.029958,0.028095,0.0022443,0.0073806,-0.010701,0.013745,0.021415,0.029165,-0.0084124,-0.01813,-0.035795,0.0057999 0.014343,0.0011434,-0.011035,-0.020794,0.017117,0.0041645,0.016519,0.0005988,0.0081541,0.015134,0.020584,0.012184,-0.015773,-0.021726,0.017732 0.0069124,-0.0012088,-0.0063177,-0.010456,0.0082728,0.0037438,0.012613,0.0032566,0.0029275,0.007279,0.010506,0.014688,-0.0097011,-0.0094678,0.012127 0.0027931,-0.00095418,-0.0027189,-0.0042249,0.0031276,0.0019661,0.0064658,0.0022677,0.00010807,0.0026961,0.0031756,0.0079649,-0.004266,-0.0033714,0.0045409 0.0010608,-0.00055435,-0.00085607,-0.0013614,0.0012286,0.00097188,0.0025499,0.00079173,-0.00050745,0.00082786,0.00048584,0.0034398,-0.0014504,-0.0012638,0.0014938 0.00020405,-0.00014044,-0.00012319,-0.00014834,0.00020197,0.00030756,0.00050092,-6.6322e-06,-0.00025147,6.7242e-05,-1.7699e-05,0.00046788,-0.00028987,-0.00025976,0.00012542 1.3372e-05,3.3648e-05,4.0861e-05,-4.8252e-06,-6.777e-06,1.3692e-06,-9.2513e-06,-1.0966e-05,-1.754e-06,-1.712e-05,-4.4532e-05,3.3684e-05,-0.00015123,3.3067e-05,3.284e-05 -1.2513e-18,7.8315e-19,7.8035e-19,-8.145e-19,3.6961e-18,-1.6204e-19,-4.1468e-19,-4.496e-19,1.5256e-18,6.3388e-19,1.7807e-18,1.6229e-18,4.7419e-18,2.8765e-18,-2.003e-19 -2.7217e-18,2.4793e-18,1.4197e-18,-2.3169e-18,8.8738e-18,-7.8863e-19,-1.5427e-18,-9.1127e-19,2.2999e-18,2.0101e-18,3.8057e-18,3.5919e-18,1.127e-17,6.4546e-18,-3.7567e-19 -1.4917e-18,1.1169e-18,1.209e-18,-1.5189e-18,4.876e-18,-4.6337e-19,-9.9906e-19,-4.1063e-19,2.0934e-18,1.2157e-18,2.516e-18,1.7153e-18,7.4353e-18,3.709e-18,-3.9409e-19 -8.9794e-18,7.2143e-18,5.6274e-18,-9.0055e-18,2.8513e-17,-6.7062e-19,-4.6562e-18,-8.6158e-19,1.1588e-17,8.5418e-18,1.3029e-17,1.1431e-17,3.2389e-17,2.2972e-17,-1.0473e-18 -7.1485e-18,3.3918e-18,4.4439e-18,-6.6609e-18,1.9683e-17,-4.4646e-19,-3.8152e-18,-1.4051e-18,4.8388e-18,5.7898e-18,9.3483e-18,8.6693e-18,2.4543e-17,1.7546e-17,-2.7329e-18 -3.648e-06,-2.5282e-06,-1.1417e-05,-3.0845e-06,2.8581e-06,5.7071e-06,-9.051e-06,9.4753e-06,6.3928e-06,-1.731e-05,-1.408e-05,1.1484e-05,-8.4639e-06,1.9742e-06,2.7681e-05 -0.00010227,-9.5275e-05,-0.00023664,-9.167e-05,7.1478e-05,9.9229e-05,-0.00030645,0.00015054,4.1469e-06,-0.00039585,-0.00028524,0.00031007,-9.9368e-05,-0.00010509,0.00087003 -0.000222,-0.00027955,-0.00044241,-0.00026843,0.00023459,0.00028691,-0.00066337,0.00021509,0.00014216,-0.00067013,-0.00082934,0.00073394,0.00015675,-0.00022952,0.0018642 -0.00058168,-0.00077404,-0.00082475,-0.0007839,0.00064033,0.00028413,-0.0016572,0.00039917,0.00021232,-0.0012281,-0.0022784,0.0011162,0.00024682,-0.00019338,0.0039884 -0.0012115,-0.0015148,-0.0012456,-0.0017454,0.0013588,-6.2457e-05,-0.0032027,0.00042666,0.00029212,-0.0017397,-0.0041663,0.0016862,-0.00019176,0.00032618,0.0066862 -0.0028513,-0.0030822,-0.0018105,-0.0044657,0.0026166,-0.00022862,-0.0053097,-0.0003249,0.0021016,-0.002269,-0.0081879,0.00091042,0.00060446,0.00061378,0.0095632 -0.0054241,-0.0045263,-0.0019345,-0.008644,0.003411,0.00038241,-0.005094,-0.0018303,0.0062893,-0.0034878,-0.010869,-0.0046409,0.0035455,-0.0011929,0.0086997 -0.0086938,-0.004898,0.00021502,-0.012843,0.0035512,0.0022635,-9.0637e-05,-0.0038384,0.011993,-0.0039345,-0.0081467,-0.015894,0.0083772,-0.0078343,0.0043804 -0.011775,-0.0028038,0.0061903,-0.014865,0.0026811,0.0052535,0.010577,-0.0025626,0.019944,-0.0035666,0.00030465,-0.025115,0.011062,-0.022244,0.0058374 -0.011895,0.0017884,0.013027,-0.011428,0.0010155,0.0072042,0.019135,0.0057189,0.024358,-0.0035902,0.0059213,-0.019104,0.0091108,-0.036353,0.019955 -0.0088858,0.0076483,0.016222,-0.004642,-0.00035076,0.0084278,0.01859,0.013928,0.02179,-0.0044371,0.0027452,0.0015121,0.0044439,-0.042926,0.037527 -0.0044623,0.012107,0.014567,0.0011921,0.00069264,0.0068857,0.0080767,0.016991,0.015017,-0.0065713,-0.0073812,0.019086,0.00046179,-0.039889,0.038044 0.00081198,0.013889,0.0088165,0.0026246,0.004302,0.0036879,-0.006885,0.011577,0.0095872,-0.0061327,-0.017122,0.022262,0.00040551,-0.032768,0.013395 0.0046609,0.014413,0.0041509,-4.433e-05,0.0079781,0.0027358,-0.0157,0.0039729,0.010559,-0.0044726,-0.019583,0.013566,0.0044083,-0.033289,-0.0076319 0.0067403,0.011853,-0.00094585,-0.0057642,0.0098764,0.0017078,-0.015785,-0.00082708,0.010473,-6.5833e-05,-0.0090469,-0.0020177,0.0058743,-0.031422,-0.016101 0.0066519,0.0072044,-0.0041795,-0.0091304,0.0089927,0.00078486,-0.0074949,-0.0011834,0.0083483,0.0051043,0.0025324,-0.0071402,0.0015666,-0.025219,-0.0086197 0.0056236,0.0028332,-0.0048834,-0.0088525,0.0076719,0.00056646,0.0014715,0.00085891,0.006073,0.0068472,0.0069128,-0.00099608,-0.002476,-0.019491,0.00066936 0.0039132,0.00043526,-0.0035894,-0.0066518,0.0059031,0.0011672,0.0046443,0.0024153,0.0039341,0.005245,0.0060166,0.0049257,-0.0017128,-0.01315,0.0059007 0.0016437,-0.00011517,-0.001796,-0.0029732,0.0022762,0.00097651,0.0028808,0.0015896,0.0015578,0.0020519,0.0029496,0.0038546,-0.00056504,-0.00535,0.0041954 0.00041219,-0.00010842,-0.00038464,-0.00081213,0.00057471,0.00023278,0.00079489,0.00056025,0.00029155,0.00049624,0.00061075,0.0013742,-8.8809e-05,-0.0014475,0.0012718 7.9149e-05,-2.5634e-05,-2.2128e-05,-0.0002548,8.7142e-05,8.0726e-05,0.00017031,6.3288e-05,0.0001044,0.00020962,0.00013625,0.00013625,-9.7967e-05,-0.0004231,0.00037197 7.0145e-06,-3.4583e-06,2.1637e-06,-1.8028e-05,-1.7113e-06,5.7134e-06,2.3255e-05,1.2368e-05,-2.677e-06,7.738e-06,2.0042e-06,1.6557e-05,-8.8915e-06,-2.3156e-05,3.0561e-06 -7.9702e-18,7.8171e-18,5.4509e-18,-9.2591e-18,2.5686e-17,-8.6231e-19,-6.7834e-18,-1.5894e-18,9.1237e-18,5.9336e-18,1.3275e-17,1.1263e-17,3.4739e-17,2.2616e-17,-2.0519e-18 -9.1249e-18,8.5799e-18,6.171e-18,-1.0619e-17,2.6404e-17,-7.9654e-19,-5.379e-18,-9.7775e-19,4.1576e-18,7.6104e-18,1.2284e-17,1.0285e-17,3.3577e-17,1.9424e-17,-1.766e-18 -4.8522e-18,2.8013e-18,4.2871e-18,-4.5582e-18,1.4995e-17,6.6027e-20,-2.7101e-18,-1.6668e-18,5.0375e-18,3.545e-18,7.0797e-18,6.9411e-18,1.9496e-17,1.2991e-17,-1.3443e-18 -6.8585e-18,4.4628e-18,1.0327e-17,-8.5455e-18,2.7143e-17,-1.8007e-18,-7.4696e-18,-1.1295e-18,1.0468e-17,5.6414e-18,1.2565e-17,1.2537e-17,3.6054e-17,2.2361e-17,-1.8541e-18 -8.4702e-18,5.9321e-18,7.2048e-18,-9.9953e-18,3.0992e-17,5.3531e-19,-4.7575e-18,-9.8686e-19,1.0505e-17,7.1051e-18,1.2485e-17,1.4747e-17,3.8284e-17,2.4689e-17,-1.1145e-18 -2.3521e-19,1.6648e-19,1.9839e-19,-3.5341e-19,8.1403e-19,-1.2761e-20,-1.5886e-19,-5.5747e-20,2.566e-19,2.6764e-19,4.3114e-19,3.2346e-19,9.9876e-19,6.5286e-19,-4.2664e-20 -5.5685e-18,7.0597e-18,4.4148e-18,-6.7863e-18,2.4657e-17,-1.224e-18,-5.8503e-18,-1.246e-18,7.8692e-18,6.3238e-18,1.1872e-17,8.0914e-18,3.163e-17,1.9333e-17,-1.47e-18 -5.5485e-18,3.4686e-18,2.5588e-18,-4.4786e-18,1.5385e-17,-4.6693e-20,-3.0593e-18,-8.2001e-19,5.7333e-18,3.9865e-18,7.0301e-18,6.4728e-18,1.9814e-17,1.1787e-17,-1.1913e-18 -6.0446e-18,5.4978e-18,3.7151e-18,-6.578e-18,1.86e-17,2.5527e-19,-3.685e-18,-1.3904e-18,7.1219e-18,4.1015e-18,8.385e-18,7.8945e-18,2.6086e-17,1.5427e-17,-1.0637e-18 1.7558e-06,-5.473e-06,-7.7584e-06,1.0202e-05,3.6771e-07,-4.1952e-08,-2.2646e-06,1.1307e-05,8.3283e-06,5.8044e-06,-4.5859e-06,-1.329e-05,6.8732e-06,-3.2826e-06,1.0041e-05 9.9782e-06,-3.1102e-05,-4.409e-05,5.7976e-05,2.0897e-06,-2.3841e-07,-1.287e-05,6.4259e-05,4.7329e-05,3.2986e-05,-2.6061e-05,-7.5527e-05,3.906e-05,-1.8655e-05,5.706e-05 5.9094e-06,-2.9668e-05,-4.2827e-05,4.9497e-05,1.9104e-06,-4.0132e-06,-1.4015e-05,5.8001e-05,4.7019e-05,2.9339e-05,-2.5022e-05,-7.0216e-05,3.592e-05,-2.5129e-05,5.4955e-05 -4.9123e-05,-3.6012e-05,-4.4427e-05,-4.0232e-05,1.8939e-05,-7.574e-05,-4.209e-05,6.8796e-07,6.8304e-05,8.1707e-06,-5.1626e-05,-5.3922e-05,-4.4392e-06,-0.00015868,8.1288e-05 -0.00011665,-4.9814e-05,-9.7963e-05,-8.6564e-05,-3.8387e-05,-0.00011114,-2.8027e-05,-1.3315e-05,0.0001635,-3.6901e-05,-1.5857e-05,-0.0002678,6.0779e-05,-0.00040732,0.0001597 -0.00010753,-5.2404e-05,8.4834e-06,-0.00011324,-9.1562e-05,7.2322e-05,4.3192e-05,2.2807e-05,0.00020766,-2.5711e-05,4.8348e-05,-0.0004112,0.00015469,-0.00043859,0.00031232 -0.00012699,-2.9163e-05,0.00010284,-5.828e-05,-3.7666e-05,4.0591e-05,0.00012887,0.00030505,0.00013449,-3.3603e-05,3.0185e-05,-0.00055927,0.00013408,-0.00078662,0.00064205 -7.9653e-05,0.00014042,0.00020581,-5.212e-05,-0.00010755,-4.215e-05,-2.7696e-05,0.00054146,4.3422e-05,-0.00029837,2.1333e-05,-0.00010364,1.2323e-05,-0.0010792,0.00099845 -0.00010332,0.00025029,0.0001503,1.0185e-05,-0.00011858,-2.8729e-05,-3.6815e-05,0.00069394,0.00023861,-7.8483e-05,-0.00013288,-8.1734e-05,0.00043926,-0.0016867,0.0013 3.1113e-05,0.00021198,8.8685e-05,-2.3685e-05,3.7238e-05,-0.00011411,-0.00029697,0.00040007,0.00011803,-0.00017292,-0.00029102,-4.0648e-05,0.00046595,-0.0011052,0.00035029 9.8935e-05,0.00017121,6.3645e-05,-7.8558e-05,0.00017428,-0.00026321,-0.00040379,0.00043469,0.00022883,-0.00018688,-0.00026344,7.6597e-05,0.0005853,-0.0010928,-0.00012586 0.0001003,7.7363e-05,-4.4523e-05,-0.0002141,0.00013217,-0.00020093,-0.00026494,0.0002164,0.00024936,5.6636e-05,3.7897e-05,2.8567e-05,0.00043999,-0.00067444,-0.00012791 0.00011067,0.00010472,-0.00019867,-0.00025975,0.00014781,-0.00023355,-0.00024144,0.00024076,0.00023904,0.00025323,0.00031511,-8.3454e-05,0.00032121,-0.00075664,0.0001861 0.00016434,5.2984e-05,-0.00014123,-0.00035764,0.00019302,-0.00018894,-4.2477e-05,0.00032808,0.00016022,0.00010135,0.00038461,-8.5255e-06,0.00019109,-0.00084698,-5.117e-05 0.0001533,-2.5614e-05,-0.00021212,-0.00028137,0.00017782,6.1944e-05,0.00028183,0.00025963,0.00022119,6.273e-05,0.00026047,0.00047286,0.00011224,-0.00075678,0.00031987 5.8973e-05,-7.8102e-06,-0.00011597,-0.00014815,6.2479e-05,6.9614e-05,0.00016885,0.000107,6.4561e-05,1.0248e-06,0.00014121,0.00027755,6.3216e-05,-0.00031414,0.00025603 2.0599e-05,-9.3492e-06,-5.9032e-05,-2.0303e-05,1.8197e-05,6.9861e-05,6.8667e-05,3.2682e-05,2.6315e-05,-1.4557e-05,5.0224e-05,8.1297e-05,-1.2244e-06,-5.0326e-05,0.00014253 -4.9105e-18,3.5796e-18,2.1421e-18,-3.995e-18,1.3178e-17,-3.0618e-19,-3.5121e-18,-9.5113e-19,4.444e-18,3.9248e-18,5.844e-18,4.7113e-18,1.717e-17,9.8824e-18,-5.513e-19 -2.6452e-19,2.5503e-19,1.6538e-19,-2.2287e-19,7.8614e-19,-1.1368e-21,-1.8564e-19,-4.2237e-20,2.4702e-19,2.395e-19,3.9663e-19,2.9824e-19,1.0212e-18,6.0554e-19,-6.4166e-20 -1.9474e-18,1.4069e-18,1.0622e-18,-1.539e-18,5.291e-18,-1.2984e-19,-1.198e-18,-3.11e-19,1.3536e-18,1.6155e-18,2.3607e-18,2.8383e-18,6.3186e-18,4.0955e-18,-6.0926e-19 -3.4173e-18,4.6477e-18,4.5719e-18,-5.4046e-18,1.7839e-17,-1.4963e-18,-3.0443e-18,-1.7041e-18,4.2817e-18,3.6529e-18,6.9903e-18,7.0989e-18,2.0907e-17,1.4601e-17,-5.1371e-19 -8.9807e-18,7.395e-18,6.5898e-18,-8.9913e-18,2.3895e-17,1.1806e-18,-5.4747e-18,-1.8107e-19,1.1714e-17,8.4051e-18,1.3189e-17,9.8731e-18,3.3631e-17,1.9141e-17,-9.4678e-19 ================================================ FILE: bayesian_ml/2/README ================================================ This data set contains the following: Xtrain: 11791 training examples of 4's and 9's, each 15 dimensions in length ytrain: the corresponding labels of the training examples (0 = 4 digit, 1 = 9 digit) Xtest: 1991 testing examples of 4's and 9's, each 15 dimensions in length used for prediction ytest: the corresponding ground truth labels used for evaluating performance (0 = 4 digit, 1 = 9 digit) Q: A matrix of eigenvectors that is used to map the 15-dimensional feature vectors back into image space. For a 15-dimensional feature vector x, this can be done as follows in pseudocode 1. Map x2 = Q*x 2. Reshape x2 into a 28x28 matrix and show it as an image Because the data has had the mean subtracted off, this image will not look exacly like a handwritten digit, but the contours of the 4 or 9 should be clear. ================================================ FILE: bayesian_ml/2/Xtest.csv ================================================ 3.7638,-0.92236,-0.53047,1.233,-0.71848,1.525,-1.3769,-1.551,-0.17975,-1.1499,-0.11756,-1.5398,0.34207,-0.60512,0.065985 -0.40127,0.26977,-0.20437,-1.0767,-3.4491,0.96986,0.62241,0.15118,-1.3787,-1.6964,-0.19497,-1.3029,-1.4716,-1.3327,0.47252 0.54033,1.5158,0.0057301,1.2152,-2.1241,-1.1308,-0.91144,-0.32863,0.60841,-0.64354,-0.00087909,0.45768,1.3614,0.71921,0.20154 1.7504,1.5461,-1.9151,1.3689,-1.044,0.36394,-0.20749,-0.97425,0.13825,0.94529,-0.76716,-1.0765,0.94106,-0.32831,-0.29621 2.0957,-0.3642,1.0851,1.2778,-0.67157,-0.49899,-2.7037,-0.54487,0.84837,-0.086419,1.4492,0.3441,0.46331,0.51728,-0.51133 1.2966,-1.6362,-2.1231,2.2668,0.021024,2.4636,0.064225,0.16694,-2.6767,1.1264,1.011,0.54725,2.7373,-0.096381,0.96821 0.34242,1.4374,1.1921,0.60321,-2.1172,-2.108,1.3842,-0.99591,-0.44959,-0.24658,-1.6997,0.24477,-0.73409,-0.32675,1.1555 2.241,1.0479,3.7299,-1.3708,-0.57897,-2.135,-1.0227,0.19116,-1.6525,-1.1759,0.86843,0.45257,-0.22053,-0.058321,-0.29706 4.373,-1.6854,-1.1732,0.25269,-0.11805,-0.8278,0.49605,-1.0704,1.3663,-0.83527,0.16838,-1.3209,-0.18926,0.4433,0.72966 4.9061,-1.5189,0.69141,-0.40059,-1.6001,-0.33886,-2.0876,0.63703,0.071592,0.42244,-0.32596,-1.2406,-0.11299,0.32148,0.14613 -1.1768,2.7211,-1.9466,0.58319,-0.91973,0.20794,-0.69717,1.9253,0.14132,-0.92793,-0.511,0.13961,0.12623,0.61935,-0.8245 2.8328,-1.342,-0.60797,2.4566,-1.0702,0.081054,0.34898,-0.19849,0.16284,-2.2237,-1.2937,0.43102,-1.0052,-1.0385,-1.8365 3.3843,0.10076,1.9631,-1.3811,-1.4517,-2.9031,-0.49936,0.63798,-1.4444,-2.2475,-0.39671,-0.010771,-0.11308,-0.31941,-0.4091 0.91302,-1.1661,2.6844,1.0152,1.7795,-2.2122,1.3515,0.085464,-2.9011,0.45318,-1.0435,0.71729,1.4514,-0.015185,-1.3481 4.2955,-1.6204,-0.58862,-0.16197,-1.1359,-1.3578,0.23008,-0.68053,1.5515,-1.1303,0.20523,-0.54476,0.53337,0.091987,-0.51841 -0.43154,-0.5402,0.21269,2.9266,-0.50234,0.42145,0.90034,-1.2784,-0.54621,0.15436,1.5119,0.56681,0.31507,-0.43955,0.4408 -2.3812,-0.056082,-0.89467,2.1133,-0.061934,0.45003,0.6943,-0.29364,0.67109,1.4262,1.0858,-0.25398,-0.91268,-0.17939,-0.37981 -0.95273,1.8538,-0.51732,1.07,-2.034,0.048668,-1.1583,0.23106,-0.102,-0.45604,0.8759,1.6835,-0.73838,0.10093,-0.78889 3.7697,-2.694,-1.1779,-0.58756,-0.95878,-0.65286,-1.261,1.6118,1.2474,0.34145,0.43167,-0.49113,-0.74164,-0.23089,-0.49057 -1.1123,-2.4263,-1.0913,1.6137,0.5331,2.2532,-0.91974,0.04655,-0.28936,1.8647,0.79794,-1.0007,-0.29407,1.5734,-0.080667 -0.97907,-3.5842,0.83276,1.1758,0.33957,1.7708,-0.89337,-1.9453,-0.29453,1.6292,-0.23561,-0.52882,-0.69093,-0.96737,-0.33392 -0.92034,1.0165,-1.5838,2.6534,0.30206,0.51838,0.20312,2.3375,0.34387,0.53061,-0.75727,-0.65845,-0.66545,-0.14811,0.42866 -0.4128,1.6385,0.10098,0.73246,-1.3821,-1.4382,0.0056794,-1.0218,-1.9022,0.79076,0.6974,0.12319,-1.4008,0.1837,0.50581 4.3155,-0.86847,0.13385,-0.38718,-1.0473,-2.2516,0.013736,0.90739,1.069,-2.0064,-0.559,0.57882,-1.2897,0.6017,-1.755 0.14999,0.42963,-0.58948,3.25,0.50981,0.20315,-0.34092,0.13586,-1.1356,-1.5288,0.88303,0.75972,-0.63656,0.79188,-0.64232 0.13371,2.9465,0.38271,0.30973,-1.6684,-0.57221,-0.4777,0.18647,-1.1962,-0.73395,-0.40575,-0.35481,1.027,0.72181,1.044 0.39796,2.3227,-0.91017,0.75586,-0.79276,-1.022,-1.5964,-0.76549,0.44418,0.80759,0.68862,-0.092809,1.0605,1.3595,-0.31052 -0.31917,1.6648,0.64912,1.7022,-1.5824,-0.2252,-1.661,-0.33282,-0.11859,-0.95826,1.3468,1.529,-1.0806,0.64468,-0.35981 3.5727,-0.30127,-0.58371,-0.099989,-2.5259,1.1521,-1.2565,1.3432,1.2963,-1.6346,-1.3604,-0.39803,-0.67149,0.12627,-0.80097 -1.0041,0.6032,-1.6764,2.4257,-1.107,0.63235,0.15688,0.80541,1.2245,-0.22032,0.78663,0.32348,-1.4664,-0.080609,-0.43975 1.6308,0.20822,1.9008,1.0694,-1.6549,-2.084,1.1008,-0.40759,0.12833,-0.11555,-1.3258,0.55165,0.96202,0.17506,-0.0023905 -0.40222,-0.43273,-1.8198,0.91728,0.21727,-0.10447,0.86552,1.318,0.025507,0.046009,-0.1571,-1.0809,-0.51187,0.098009,-0.10941 3.9565,-1.2563,2.506,1.9081,-0.60668,-1.0695,0.34605,-1.2199,-1.4162,-2.0128,-1.0664,-0.054556,-0.417,-0.98366,-0.30727 0.81574,3.0566,2.289,-0.50296,1.639,-2.3539,-0.86279,0.13462,-1.6316,0.46145,0.5696,-0.76657,-0.1792,1.1106,0.17598 2.7468,-0.041577,1.5932,1.7917,-0.037159,0.0097491,-2.843,-1.403,-0.13851,0.25666,1.2053,-0.25774,-0.84266,-0.079885,0.050416 1.5408,-2.2518,-2.1077,-2.5579,-2.0117,-0.043408,0.92866,2.8049,-0.36265,-1.369,0.97054,2.6708,1.1902,-0.29285,0.21365 1.9787,2.2517,-1.4535,-2.4867,0.068123,-1.7132,-0.035312,-0.10147,0.010606,-0.39286,0.68479,-1.6169,1.578,-0.05316,1.2401 -1.0301,-0.37195,-3.661,0.9618,1.3711,0.3213,-0.24447,1.6466,-0.39916,0.69686,-0.99213,-0.7632,-0.7145,0.32256,0.50338 -2.4193,1.572,0.35908,-1.4502,-1.1063,-0.0028337,1.4753,0.14714,-1.9692,1.6347,-0.55687,-1.1012,-0.12835,1.0784,0.96491 -1.1137,-0.90372,1.7438,0.085859,-2.3113,-2.1816,0.807,-1.7858,-1.0542,0.050647,-0.44683,-0.55498,-1.7587,-0.18655,0.30135 -2.1967,-2.0592,-1.6914,0.35186,0.54814,1.8469,-1.0361,0.80551,0.84533,1.0164,0.25508,-0.93665,-1.656,1.3473,-0.88658 2.7053,-2.2029,-2.4455,-1.6052,-1.9665,0.58056,0.86087,2.7574,1.2817,1.4748,0.80605,1.6223,0.10048,1.1145,1.4053 -1.5346,3.1249,-0.4748,0.88492,0.0234,-0.63569,-0.92912,2.1023,-0.056685,0.10577,-0.28825,0.51454,-0.044401,0.81438,-0.362 2.0875,-0.26424,0.378,0.19741,-0.9255,-0.68818,-2.7935,-0.2866,0.76996,-0.75514,1.8216,0.37945,1.5647,0.25816,-0.55408 3.0603,-0.87985,-0.86525,-0.77944,-1.7417,-0.33689,-1.3959,-0.24315,0.94422,0.42438,1.0795,-0.82541,1.0619,0.078842,0.86652 2.8919,-1.5595,-0.59407,2.2368,-0.10432,-0.69982,1.2093,-0.92448,0.095945,-3.1662,-0.86215,-0.0051159,0.64919,-0.38798,-1.5991 3.7854,-0.44607,-1.7454,-3.1411,0.3424,-1.7297,2.8718,1.9969,1.0067,0.37295,0.16245,1.0341,-0.28486,0.12756,0.6074 -0.44981,-2.1734,-2.0654,0.91182,-0.58209,1.854,-0.81142,0.25185,1.083,0.90555,-1.238,-0.38249,0.82766,-0.73798,-0.14168 2.4032,1.1523,-0.079068,1.3982,-0.18156,-1.7786,0.17533,-0.56812,-0.40898,0.35255,-1.8008,-0.95312,0.35507,1.1984,0.78389 -1.4607,-1.1005,-0.68788,1.6004,0.76708,-1.4474,0.80188,-1.8577,-0.26251,0.66604,1.0168,0.41301,0.36997,-0.16078,-0.90854 0.81954,1.3353,-2.2173,0.58146,-0.48759,-0.13079,-1.383,0.97311,-1.1434,1.4961,1.9932,-0.61506,-0.038171,1.2265,-0.65666 -2.0452,-3.0451,-1.1892,-0.95887,1.3935,-2.9836,-0.080132,0.79598,-1.3505,-1.2132,-1.2478,-0.13659,-0.75352,-0.40583,-0.1965 4.4884,-3.0626,-1.1004,-2.9842,-0.76224,-1.9503,2.4615,1.93,0.23667,-0.12883,0.87591,2.5484,-0.098641,0.074974,1.2203 0.63381,1.978,0.6194,0.25913,-2.5354,-0.3736,0.02305,0.35139,-0.60295,1.5774,-0.9892,0.12374,-0.060908,0.53163,1.1194 -2.358,1.8266,-1.2238,0.70428,-1.0954,0.255,0.64953,0.29402,-1.8366,0.61871,0.81548,1.257,-1.286,0.18837,-1.2388 -2.2613,-0.61961,-3.5804,-0.23972,-0.24774,0.23334,-0.89487,-0.95756,-0.67418,-0.6264,-0.33634,1.9032,-0.72671,-0.71193,-0.78463 -1.8846,2.6068,-0.12463,0.59326,-1.5609,-1.1768,1.0718,0.40365,-1.3633,0.9183,-0.97397,0.79023,0.39526,0.84893,0.75749 -0.55534,0.8539,-0.54733,2.6591,1.046,0.42409,-0.644,-0.10672,-0.43075,-2.1469,1.0066,0.16846,-1.2704,0.54731,-0.077969 4.0474,-0.4676,-0.77568,1.3887,0.8846,-1.815,1.0046,-1.822,-0.56842,-0.90365,-0.089729,-1.4371,1.165,0.40632,0.73696 4.5168,-1.592,-0.62623,0.16543,-1.0957,1.5522,-1.1707,1.3664,-0.2239,1.174,-1.2326,-0.32009,0.90044,0.58932,-1.0276 3.9218,-0.38356,0.9695,1.2891,-0.59278,-1.6457,0.1423,-1.8046,0.049312,-1.9831,-1.4045,-0.78403,-0.53162,-0.40722,-0.29982 3.0769,0.52986,0.16044,-1.0867,-1.3272,-1.451,-1.1608,-0.33139,-0.51325,-2.1848,0.81618,-1.7039,-0.057088,0.1491,0.40838 -1.1562,-1.6269,-0.30911,2.3549,-1.2109,1.6556,0.012148,-0.76975,0.27307,-0.30364,1.5571,-0.62827,-0.83108,-0.93158,-0.12309 5.2308,-3.5151,-0.60352,-0.59996,-0.36846,-1.1652,0.29643,1.7861,0.73144,-1.3648,0.34666,0.69157,-0.84562,-0.020109,-1.6488 -2.108,2.2727,0.61176,-0.74275,-0.70468,1.4316,1.5487,0.48497,-2.1253,0.94976,-0.28239,0.35185,0.26971,0.18572,1.1757 -0.35934,0.97506,0.65817,2.4938,1.1914,-1.5882,0.88811,1.5892,1.0424,-0.29683,-1.2559,0.032407,0.3631,-0.30626,0.44347 0.54464,2.7811,-1.992,-0.35361,-1.8189,-0.37498,-0.4641,-0.64747,-0.1323,-0.60307,-0.63055,-0.90568,0.84154,0.81357,0.1086 0.14617,-0.6869,0.18721,1.6617,0.64625,0.43758,-0.19493,2.4525,0.97561,-1.2853,-0.025493,-0.87577,-1.7902,0.80324,0.068641 1.2524,-0.68466,1.2283,3.3157,-0.17111,-0.11085,-0.84733,-1.5101,-1.3879,-1.8233,1.1386,0.48944,-0.021459,0.49209,0.78038 0.20586,0.16506,-0.31511,3.5071,-0.45864,-0.43469,0.3321,-0.37442,-0.24537,-0.87045,1.2402,0.86369,0.14008,0.20747,-0.068582 1.1577,1.9164,-1.53,0.84862,0.45301,-0.41597,-0.46588,0.45156,-0.63333,2.064,-0.63312,-1.5777,-0.31247,1.3432,0.53745 -2.2822,-2.0643,-2.3015,-0.15817,-0.95628,-1.0987,-2.8685,0.077507,-0.83794,-0.60885,-0.028351,1.5561,-0.99211,-1.0076,1.2382 1.2049,0.29418,0.50598,1.5095,-0.38319,-2.053,-1.7238,-0.20215,0.26209,-0.39916,1.4091,0.48051,0.78386,1.2746,-0.61396 2.5865,0.52106,0.92594,-1.3622,-2.6689,1.4491,-1.0107,2.4534,-0.076083,-0.63016,-1.1825,0.38557,-0.49278,0.67755,-1.0037 -2.6447,1.6587,1.3069,-0.018988,0.83454,-0.14742,0.44842,1.4082,-0.87815,2.3075,0.00025322,0.32687,-0.4531,0.34292,0.27814 1.892,2.519,0.041843,-0.92365,-2.0563,-0.95511,0.40588,-0.447,-1.3861,-1.9108,-1.0661,-1.5248,0.13987,0.62908,-0.45487 0.59066,1.8528,-0.64092,2.1798,2.7102,-1.7747,-1.0101,1.7168,0.8331,-0.19192,-0.2558,-1.4812,-0.59796,0.11496,-1.0738 4.8991,-2.3024,-1.3074,-3.5703,-1.4354,-0.71609,-0.55404,3.241,-0.23504,0.13868,0.7099,0.049474,-0.51817,0.13951,-0.43583 4.3969,-0.74904,-0.42801,-0.58328,-0.53535,-2.1894,0.53714,0.11517,1.8126,-1.8343,-0.58371,-0.24888,0.18243,0.78879,-1.704 5.093,-2.5583,1.1529,-1.0643,0.76018,-2.8453,0.78253,-0.48239,-2.0042,-1.0478,0.71103,-0.033028,0.3963,0.89118,1.0166 0.13901,3.7996,-0.71364,-0.41747,1.3994,0.68817,-1.4873,0.018002,-0.96753,-0.03059,-0.4219,-1.1434,1.4715,-0.93822,-0.70939 1.0729,1.3453,-1.0138,1.4238,2.5018,-1.7004,-0.62863,0.85582,1.5549,0.12785,0.14197,-1.2517,0.77403,0.36473,-1.0873 -1.0758,-0.37314,1.4116,2.7594,0.69036,-1.1032,-0.13392,0.93752,-0.47929,-1.8487,1.3163,0.84524,-2.0211,-0.2401,-0.3972 -0.51766,1.1565,1.1249,1.4802,-2.1051,0.011754,-1.2928,-0.23307,-0.042572,-0.94596,1.5556,1.3646,-1.0552,0.87095,-0.022778 -2.3854,-0.47411,-1.2852,0.55547,-0.55047,-0.18431,1.0688,0.17483,1.6698,-0.40612,0.42643,-0.75202,-1.9862,-0.60571,-0.91787 5.0686,-3.4622,0.10251,-0.37834,0.0046589,0.0077192,0.87198,-0.72091,-1.4501,0.97298,1.2528,0.12482,-0.87765,0.1645,2.1769 -0.39909,0.12568,0.63188,2.2616,-2.0307,-0.51538,0.0042571,-1.6634,-0.80505,0.28171,0.65415,0.3928,-1.497,-0.24881,1.1911 1.3074,-2.581,3.5189,2.0681,-1.0513,0.43577,-1.0002,1.0773,-0.62884,-0.13683,0.68888,0.33276,0.67056,-1.0429,-0.21868 -0.65349,2.767,-1.5089,0.65169,-1.0386,0.27865,-1.5009,0.71896,0.017218,0.19018,0.17464,0.31125,0.63729,0.88056,-0.98257 2.9107,-0.68917,-0.42391,-1.5337,-1.1052,-1.7997,0.3075,0.22454,-0.76839,1.3945,2.0213,0.064421,-0.55878,0.095725,2.2974 2.9224,-0.24015,-0.63593,-2.1086,-1.1753,-1.3925,-0.65175,-0.058448,0.17213,0.031605,2.5188,-0.31658,-0.37395,0.6155,2.0061 2.2121,0.91684,-1.6019,0.64075,0.089529,-0.93286,-0.4086,-1.7936,0.010434,-0.20095,1.3996,-0.7607,1.488,-0.28927,1.0524 2.8242,-0.062157,1.1624,-0.25677,-2.1165,0.75767,-2.0442,0.80856,-1.5631,-1.8984,-0.60289,-0.71212,1.256,-1.0853,-0.31133 3.2134,-3.1837,-1.1387,1.4482,-0.047211,0.97368,-0.48826,0.066824,-1.1246,1.5103,2.1085,0.029017,0.60747,0.078662,1.7328 -0.58593,-0.83495,-2.4279,-0.98559,-1.8458,2.1744,-2.0369,-1.049,-0.86366,0.1808,-0.80463,0.75165,-0.36078,-0.19133,1.4749 -0.36745,-2.0946,-1.9019,1.0401,0.47753,-0.52114,-1.8,2.1849,0.034595,0.32864,-0.15003,-0.408,-1.9418,-0.42212,1.8086 3.5866,1.0669,-0.74997,-1.7844,-0.84102,-1.2331,-0.18847,0.34375,0.20248,1.1654,-0.79824,-0.66294,1.5322,-0.20011,-1.2923 4.3924,-2.038,-0.76983,-1.4156,-1.4109,-1.2363,-0.03385,-0.14125,1.4109,0.029801,0.97895,-0.33059,-0.0050138,-0.51397,0.82748 1.6987,3.4697,-1.1806,-2.3486,0.73049,-1.3062,-0.99849,0.83683,-0.96256,1.2374,0.31027,-2.2718,-0.51512,-0.24669,0.72559 2.5414,-0.66077,-2.2279,-3.1588,-1.5191,-1.37,1.103,0.78566,1.287,-1.6011,1.9508,1.1696,0.91077,0.41082,1.1321 -0.31382,3.4846,-1.1692,0.43137,-1.4833,0.11114,0.70194,0.52989,-1.7744,-1.5938,-1.7834,-0.76263,0.043576,0.3941,0.44427 -1.6305,-1.3289,0.15653,0.98824,-2.72,-1.3666,0.69188,-0.060305,0.57332,-0.35313,1.0108,0.036754,0.6601,-0.99155,-0.65411 1.4352,-0.39481,2.2968,0.43345,-2.7893,0.89023,-2.0152,1.4227,0.24438,0.1402,-0.16198,0.30339,0.93505,-0.3778,0.90091 2.7007,-3.0975,-0.93663,0.6223,-0.88702,-0.12373,1.3569,0.79662,0.54899,0.39242,-0.82324,0.3964,-0.062094,1.2059,0.92237 0.8686,2.5954,-1.7123,-0.031724,-1.9628,-0.035233,-1.3437,-0.11834,0.061603,0.95446,-0.63256,-0.92703,0.70417,0.2021,0.040411 -2.5745,0.44598,-0.0045067,0.70295,-1.6945,-2.0768,1.4969,-0.29334,0.13863,0.60291,0.60996,-0.024599,1.4291,0.46899,0.18915 -0.29247,2.4707,-2.6247,-0.54302,-0.63616,1.1441,-1.2876,1.0494,-0.25975,0.4156,0.69941,-0.55246,0.54138,0.18247,-0.48857 -0.21392,2.1856,-0.35231,0.59784,-1.1288,-0.56355,-1.5786,0.45199,-0.8421,-0.55632,1.8069,0.079201,-0.67835,0.80263,-1.4355 1.1713,0.13254,-0.74142,-0.79751,-2.8733,2.7458,0.69554,1.8095,-0.50337,-0.17448,-0.15249,-0.87964,0.30098,0.48629,-0.068459 3.1307,0.39381,-0.14896,-0.51334,-0.49189,-2.606,-0.7893,-1.393,0.61164,-1.0206,0.78784,-1.5144,-1.0387,1.4835,1.1715 1.3145,-0.93234,2.3876,-2.3608,-3.4886,1.274,0.64235,1.8545,-1.1843,-1.4884,-0.32605,-1.3199,-1.8484,0.27254,0.50539 -3.3216,0.7039,-1.7361,-0.41909,-1.1047,-0.0072896,1.6696,-0.81481,-1.0578,-0.34945,0.63833,0.011268,1.0975,0.2652,-0.79946 3.3255,1.6539,-0.31278,1.4274,1.3005,-0.53178,0.84106,-1.053,-2.6133,0.14168,-1.332,-2.1347,0.41023,0.43846,1.1751 -2.002,-1.6757,-2.1103,-0.55972,-1.0478,-0.14504,-2.0509,-1.7726,-1.0932,0.081417,0.6923,1.7731,-1.7202,0.32667,-0.42551 1.5398,2.0758,-0.092248,-0.99028,-2.564,-0.44927,-1.604,-0.44732,-0.16311,-2.3264,-0.4462,-0.62495,0.11068,-0.019787,0.30846 4.8089,-0.66029,-0.53823,-1.7976,-2.1431,1.1708,-0.96476,2.0066,-0.25893,0.75786,-0.84829,0.21345,-0.25207,1.2895,-1.0062 -1.5119,-1.9699,0.51605,1.7842,-0.83967,0.32105,-0.35381,-0.10021,0.60356,0.4024,1.8597,0.093077,-0.8065,-0.98977,-0.70425 3.2949,-1.7448,2.5077,2.1293,0.80413,2.183,-1.738,-0.30674,-1.8126,-1.0368,0.95942,0.26161,0.60875,-0.26771,-0.23935 5.2305,-2.93,-0.20991,-2.8422,-0.79136,-2.1833,1.0339,2.2017,-0.65275,-1.8794,0.031992,1.5383,1.0206,0.41828,-1.4359 -0.92285,3.1692,-0.58179,0.65056,-2.2284,0.62008,-0.18988,0.19638,-1.8065,-0.40338,-0.19571,0.37776,0.36684,0.2328,0.60304 0.023656,1.3002,-1.8475,2.6673,0.92022,0.11388,0.24996,-0.076576,-1.6473,-0.28251,0.08444,-0.52164,0.411,0.88384,0.51789 1.2737,1.9261,-1.4955,0.41223,-2.0517,-0.46739,-0.030888,-0.29857,1.0677,-0.39923,-1.8999,-0.31622,0.90497,0.21963,-0.56979 -0.25177,-1.0914,2.2762,1.6618,-1.9698,0.15669,0.086771,-0.78032,0.41618,0.75376,0.87616,0.56109,-0.69001,-0.62542,1.0283 -0.96035,-2.9828,-0.4005,0.64573,3.6449,0.012034,0.20276,1.4855,-1.8395,-1.0191,0.42483,-1.6423,-0.28015,0.78825,0.69515 -1.4802,0.58041,-0.44817,0.11019,-1.243,-0.4366,0.4647,1.036,0.87204,1.3913,0.12991,0.84176,1.4342,0.37591,0.65925 2.3679,1.5586,-0.75586,-0.1408,-1.8328,-1.599,-0.55108,-0.47021,1.6036,-1.1638,-1.312,-0.81094,0.24708,0.62855,-0.9137 0.80075,-0.13565,0.41908,2.6016,1.2989,-0.12758,-2.2429,-0.091636,-0.53566,-2.0779,2.0651,0.50839,-1.7481,0.45577,-0.48592 3.0854,-2.6752,-2.2062,-0.45474,-0.15556,-0.94657,2.0022,-0.36902,1.5596,-0.80387,0.88556,1.4312,-0.41798,0.4246,1.4986 1.9959,-0.8861,-3.3833,-2.2909,-1.7464,1.3362,1.7185,1.2744,-0.014098,-1.7902,1.36,1.5944,0.52859,-0.60041,1.1277 -1.6956,-0.12445,-1.0643,1.1117,1.1254,-0.082738,1.2732,0.70574,-0.49943,2.7839,0.55626,-0.68648,-0.36758,1.0277,-0.30672 4.1356,-1.9856,1.3498,1.8122,-1.0365,-0.028732,2.0385,-0.39599,-1.4479,-2.2751,-1.0989,0.4963,-1.2307,-0.41766,-0.68491 -1.2263,-2.3009,-2.4609,0.75443,1.6015,-1.1852,-1.0575,0.13092,-0.34096,-0.99373,-1.0469,0.63575,-2.2697,-0.086732,0.68994 2.0668,-0.64914,-1.2265,1.9798,0.70395,0.30676,-1.0212,-1.3626,0.15791,0.44364,2.8508,-0.72585,0.44961,-0.65725,0.53331 -1.3339,-1.2553,-0.17667,-0.76003,-2.5226,-0.61013,0.057649,-2.0484,-0.44477,0.49388,0.43307,-0.88337,-0.21976,-0.62022,-0.0009416 -1.7467,-2.1709,-0.43176,-1.6232,-2.449,0.012838,-0.44127,-0.89527,-0.79609,-0.68436,0.098297,-1.2342,0.18867,-1.3255,-0.41323 -0.74939,-3.368,-0.49524,1.6151,1.2062,-0.025627,0.19623,1.8545,-1.2446,-0.236,-1.2777,-2.4264,-0.61765,1.1233,0.73545 1.8728,-0.05575,1.0449,1.2575,-2.6988,-0.022049,-0.024473,-0.92143,0.64092,-0.66542,-0.28449,0.27714,-1.005,-0.25166,0.61554 3.0325,0.33277,0.21037,0.04025,-1.421,-2.2916,-0.69105,-0.66744,1.4411,-1.1028,-1.0091,-0.16313,0.14062,0.25094,-0.87084 -1.7111,1.2937,-2.3116,1.88,0.3973,1.4291,0.66844,1.7699,0.50178,0.32731,-0.92757,-0.37734,-1.0313,-0.040048,0.40894 3.8988,0.28309,-1.7419,0.45003,1.7242,-0.062818,1.6811,0.30653,-2.5866,0.32651,-1.8888,-2.1423,0.9319,-1.1582,0.30293 4.0799,-0.28226,-1.664,-0.97574,2.2532,-2.0214,2.3932,0.83245,-0.06801,0.03926,-0.25815,-0.50293,-0.71301,-1.3824,0.8041 -0.10245,1.8577,0.12339,-0.0079416,-1.8842,0.73309,-2.3104,0.235,-0.5653,-0.20122,1.4178,0.48394,-0.33362,0.67408,-0.54107 -2.0474,1.7977,1.303,0.061462,-0.95098,0.80264,0.813,0.34662,-0.79132,-0.046486,1.2814,0.71456,0.44049,-0.18619,0.29721 -1.0621,0.588,-2.2721,2.1772,-1.4928,1.2171,0.18882,-0.52294,-0.34886,-0.51342,0.52875,0.80912,-0.18892,0.20356,0.50525 -0.83521,2.0591,-1.2533,0.80282,-1.6671,-0.66112,-1.0932,1.4275,0.60807,-0.44918,0.089552,0.71694,0.2891,1.3725,-0.41931 0.23237,-2.8691,-0.83855,0.86318,-0.0035715,2.5877,-0.38696,-0.69018,-0.089893,0.99366,-1.1456,-0.45952,1.3291,-0.85728,0.19566 1.0563,0.69474,-0.9698,1.9303,-0.15396,0.55009,1.7886,-0.30244,-1.1033,-0.34005,-2.7736,-0.50786,1.0475,0.094979,0.42621 0.86963,2.2934,0.37938,1.2921,-1.0286,-0.68179,-2.2309,-0.50276,-0.5488,1.1828,1.5225,-0.086158,-0.71419,0.83523,-0.70755 2.2776,1.2334,-0.74753,0.12219,-2.0788,-1.6223,-0.33878,-1.0117,1.3635,-0.40534,-0.87837,-1.1978,-0.72231,0.16878,0.019752 0.7155,1.4314,-0.11892,-0.12271,-2.8972,-0.38643,0.39659,-0.02352,-0.1127,-2.4962,-0.99112,0.49588,-0.24635,0.25997,-0.059225 2.8996,-0.33659,-1.6172,1.135,0.8787,-1.0187,2.4316,-1.3276,-1.1281,-0.045993,-0.27182,-1.0657,1.1659,-0.044719,2.4348 1.5995,1.312,0.37007,1.8282,-1.8061,-1.6056,-0.6432,-1.2047,0.30997,-0.42555,-0.58189,-0.30903,0.27421,0.79674,0.64787 0.070137,2.8838,1.9765,-1.1995,-0.91298,-1.9479,0.19604,0.14083,-2.4417,-2.0668,0.24782,-0.96832,-0.73205,0.88625,0.51321 3.7277,0.66202,-1.8675,-1.8108,-1.0923,-1.7042,0.66051,-0.58509,1.6906,-1.2869,0.01351,-0.87037,0.89126,0.14458,-0.66902 1.531,1.1942,-2.2956,1.0187,-0.13762,0.7068,-0.11693,-1.812,0.060213,-0.3953,1.1071,-1.4762,1.1734,0.44587,1.38 4.8682,-2.0389,-0.83437,0.32668,-0.22431,-0.81111,1.3657,-1.1572,-0.20451,-2.5301,-0.27405,-0.85723,-0.65682,-0.21925,-0.74743 2.7387,1.3211,-1.264,-3.3517,0.71625,-2.5725,1.4033,0.88497,0.32314,0.73966,0.71986,-0.16991,-0.66413,-0.56416,2.3507 1.038,3.1886,0.59629,0.87329,0.011184,-1.5384,0.36853,-0.99917,-1.6176,0.092599,-0.97931,-0.76066,0.54158,0.46315,0.45119 4.8529,-3.2282,-1.0399,-3.1385,-1.3223,-0.603,0.26762,2.9802,0.47665,0.71549,0.6578,0.62961,-0.43919,0.63848,0.082753 5.4904,-2.4106,-1.0235,-0.64987,0.65661,1.2445,2.3346,-1.5953,-1.0571,-1.0769,1.4456,0.43267,-0.0096808,0.67203,0.17256 4.5429,-2.5718,-1.852,0.3966,-0.28199,1.7566,0.22665,1.2424,0.32881,-0.49559,0.33337,-1.7639,-0.8387,0.36219,0.57543 0.12169,2.7861,-2.573,-0.40373,-1.5021,-0.053284,-0.72801,0.79976,-0.58426,0.27649,-0.74579,-0.89514,0.27327,-0.12452,-0.46261 -0.92991,-1.4131,-3.1066,1.8394,0.66252,1.9342,-0.88344,0.28148,0.82117,0.11952,-0.46611,-0.39995,0.082328,0.20377,0.7605 -0.22213,2.8193,-0.66706,-0.45758,1.5027,-1.0533,-2.1693,1.7567,0.55525,0.34504,0.51089,-0.87599,0.65045,-0.38918,-1.0459 1.8357,1.1127,1.4113,0.88644,-0.56181,-1.0291,1.4167,0.69032,-1.9654,2.5547,-1.6386,0.60504,0.43172,-0.34646,-1.0878 -1.0626,-0.016393,-3.8381,0.71931,0.71044,0.63178,-0.043319,1.2432,0.073381,0.66488,-0.99967,-0.64279,-0.47365,0.62378,0.35288 4.8541,-3.571,-2.0286,-0.41033,-0.24319,2.7902,0.67841,1.2942,-0.75918,-1.0558,-0.68951,-0.99341,0.18642,-0.33753,0.18363 2.1839,-0.16143,0.82687,-0.90507,-2.4008,-0.086508,-0.20146,2.2014,-0.18449,-3.5121,0.010397,0.080216,0.38774,1.1089,-0.53838 1.5899,-2.1569,1.3119,0.13757,-2.9534,0.58627,0.56657,1.9309,0.73288,0.18103,-1.6512,-0.97102,-2.33,-0.27204,-0.88685 1.9847,1.2196,-1.4443,0.92213,-0.4995,-0.83609,-0.88005,-2.5489,-0.17046,-0.05694,0.011284,-0.69465,-0.064906,-0.60241,0.4602 4.9671,-3.9905,-1.4317,-0.81978,-1.3866,0.97882,1.4044,1.9928,-0.98713,2.3946,-0.76116,1.4718,0.36221,0.053138,0.32082 1.6487,1.5316,-0.028068,0.24301,-1.6324,-1.7355,-1.1236,-1.0109,0.7646,-0.58368,-0.29242,-0.89451,-0.54652,1.6443,0.55892 -2.0231,0.92765,0.65861,0.28155,-1.8892,-0.66094,0.35768,-0.23222,-0.6712,-0.049644,2.0069,0.11484,-0.51981,-0.35184,-0.47061 -0.070407,-0.1301,-0.81548,0.9986,0.52084,0.13332,0.033277,2.4422,0.68639,-0.67921,-0.048047,-0.60904,-1.1684,0.75242,-0.15781 0.12816,1.0104,-0.4869,2.3925,-1.1521,-0.059769,0.78747,-0.48549,0.3936,0.9883,-1.2257,-0.073438,0.1213,-0.062031,1.3918 -1.019,-1.781,0.2072,2.5315,0.37497,1.8015,-0.12425,1.6477,0.90827,-0.076973,1.1003,-1.3045,-1.7103,-0.00015945,-0.081941 2.0009,0.70227,-1.7053,1.6395,0.81231,-0.0070305,0.58746,-2.4144,-0.40215,-0.41716,0.067615,-1.6569,1.7216,0.16445,1.202 -0.51353,2.6394,-0.030227,0.13457,0.068417,-0.018136,-2.0388,2.0284,-0.10962,0.73102,0.11658,0.16503,0.99716,0.37049,-0.41539 -0.071208,-2.2781,2.0816,2.5912,0.89425,0.17424,-0.066011,2.0111,0.55303,-1.613,1.1516,0.090383,-0.96433,-0.73612,-0.49173 -2.4716,-1.0573,-2.1864,0.087303,-2.047,-0.72888,-0.73999,-0.95745,0.025817,-0.077955,0.85385,0.12184,0.25628,-0.051979,-0.60322 1.8236,2.0166,0.28449,0.11379,-0.54566,-2.2099,-0.55929,0.62846,0.36186,0.76507,-2.0898,-0.52854,0.38382,0.12018,-0.37334 -1.4664,0.34295,-0.85498,1.7089,1.2964,-0.0013322,0.63996,1.2402,-1.5813,2.1539,0.9985,0.12471,-0.80427,0.14346,0.30768 2.5511,1.4772,-1.6579,-0.20708,-0.21425,-0.95336,0.13846,-0.72329,0.4162,1.7594,0.066686,-1.7652,-0.0071364,0.30911,1.2777 -3.2971,-0.64377,-2.7201,-0.46808,0.16914,0.061751,0.29456,-1.9473,-1.0041,-0.4819,-0.021998,0.97945,0.2795,-0.5352,-1.5353 -0.93375,-1.6946,-0.60821,0.0038216,-1.9086,1.6468,-0.8949,2.678,-0.039063,-0.19966,0.45374,-1.4455,1.2549,-0.45674,-0.071349 1.7616,-0.47846,2.1206,1.784,-1.7058,0.66488,-1.3155,0.16357,-0.85321,-0.5793,0.66592,-0.76145,-1.4618,1.2795,1.8424 3.6477,-0.34522,-1.5564,-0.0084016,-1.2892,0.18405,0.037116,-1.3333,1.1567,0.86559,1.2045,-1.0013,0.009764,-0.665,0.93983 1.2334,2.3993,-0.96675,0.99509,-1.2489,-1.598,-0.46063,-1.2052,0.17209,1.0154,-1.105,-0.65143,0.69883,0.85145,-0.14728 3.3702,-0.47617,0.21839,-2.5807,-1.8947,-1.7932,-1.1434,1.2164,0.57622,-2.5556,0.64668,-0.30148,-0.23618,0.57188,-0.47855 -2.3106,-1.2138,-0.22025,0.47273,-2.6086,-0.32706,-0.26454,0.47678,0.89717,0.33365,1.2628,-0.17948,-0.173,-1.0399,-0.479 -0.85254,2.5839,-2.0394,1.0856,-2.1805,1.5875,-0.48691,0.48515,-1.545,-0.507,0.047364,0.30882,0.56534,-0.12896,0.088515 1.695,0.3966,-0.23763,-1.402,-2.5155,-0.2607,-2.2052,1.1006,0.52192,-2.4105,-0.22558,-0.3965,-0.22731,-0.56089,-0.74393 5.6178,-2.0274,0.056597,-1.7006,-0.88401,-0.24764,-0.5918,3.2035,-1.8284,0.82673,-1.1035,0.57967,0.55584,0.37796,-1.1962 4.4091,-1.5742,0.31645,1.4422,-0.93522,2.7882,-0.21474,1.8775,-1.1891,0.51536,-1.3304,0.47479,0.16108,0.64753,-1.2935 -0.42653,1.9148,-1.1755,1.9061,-0.50126,0.090908,-0.53081,0.99636,0.24474,0.58637,-0.26489,0.20473,0.9057,0.75489,-0.53683 1.401,1.3206,-2.6151,0.76945,1.4636,-0.21256,0.25448,0.92621,0.95417,-0.17826,0.031501,-1.404,0.29234,0.20519,-0.71748 1.1794,1.0403,-1.3261,2.0284,2.1398,-0.31588,-0.50568,0.64232,0.55874,0.96515,0.24916,-0.69422,1.3523,-0.03879,-1.2126 2.2141,0.36633,-2.1469,0.93606,-0.54878,0.36099,0.67103,-1.9393,-0.42774,-1.952,-0.90005,-1.7029,1.3565,-0.15809,0.049392 -1.5928,-0.13321,-1.5268,0.13059,-0.66302,-0.7417,0.36526,-1.1618,0.042587,2.4388,-0.067425,0.26046,1.4337,0.75752,-0.35675 3.7136,-0.27006,-0.9502,-0.14922,-1.5162,-1.305,-0.34587,-1.1352,1.7009,-0.79119,-0.10895,-1.0848,-0.010316,0.16924,-0.31986 -0.50224,0.79614,1.0001,2.1245,-1.2489,0.24019,-1.6013,-0.30558,0.83043,-0.73421,1.0057,1.202,-0.65384,0.13844,0.17381 -0.35071,-1.5075,-1.8161,0.39488,-1.6197,1.3514,-1.6359,-1.0238,1.0995,1.5944,-1.0515,0.61265,-0.0286,-0.72949,0.31532 0.74804,1.7935,-2.1274,0.32623,-2.4136,0.07957,0.022902,0.079134,0.88383,-1.3141,-1.3137,0.042599,0.81809,0.26074,-0.5654 -0.85113,1.6952,1.0763,0.54761,-2.6952,-0.96928,0.074151,-0.84243,-0.66809,-0.45645,0.0019347,1.1601,0.78093,0.22314,0.56074 -2.3808,-0.51232,-1.4839,-0.3927,1.4143,-1.4755,2.1209,1.7218,-0.19706,0.69138,-0.80312,-1.3135,-0.56921,0.12072,-0.26944 0.32205,1.7791,1.2368,1.272,-1.5588,-2.9218,-0.54301,-0.38412,-0.55641,-0.76087,-0.44996,0.75068,1.1725,0.46873,-0.47439 -0.56825,1.2789,-1.4228,2.2982,0.16018,-0.57009,0.83039,1.9708,0.48798,0.40364,-1.5568,-0.29756,0.39881,-0.22302,0.21773 1.7073,0.79799,-2.1461,-1.2149,-2.3485,-0.80771,-0.30153,0.13337,1.5212,-0.57094,0.77871,-0.33385,-0.33482,-0.28271,0.51222 -0.83927,1.9124,-0.23109,2.8257,0.014033,-1.6559,0.80686,0.14402,-0.70141,0.49493,-1.2554,0.14811,-0.11486,0.93175,1.1463 1.9659,-1.2061,-2.4667,0.63991,-0.97759,2.1461,0.0019704,-0.16533,-0.50814,0.081647,1.5891,-0.69271,0.92736,0.45959,2.4358 1.3085,0.22428,-0.4465,2.0574,3.0277,-1.1326,-0.62388,0.68249,0.85603,-1.7814,0.85479,-0.25521,1.1071,0.19978,-0.89011 4.1179,0.57867,1.0161,-1.2282,-1.6427,-2.1485,-0.28779,-0.12043,-0.24525,-1.4671,-0.37952,-0.41067,0.74952,0.29723,-0.95074 1.7083,0.51254,-1.0542,0.48827,-1.4006,0.56439,-1.9133,-0.83468,1.4108,-0.030542,1.2213,0.27263,1.0821,-0.31433,-0.25864 1.8209,0.77595,-0.3271,-0.91997,-2.6071,-0.34027,-0.49531,1.4829,-0.1099,-3.4078,-0.27408,0.32109,0.03315,-0.73484,-0.87968 0.48354,-0.35213,1.5977,0.54215,-3.2501,0.25397,0.1712,-0.93659,0.50275,-0.15337,0.791,-0.63663,-0.055391,-0.07676,0.87941 -0.34704,0.37892,-0.85014,2.1055,-1.2292,0.018619,0.99553,0.3533,0.23392,1.9132,-0.282,0.9574,1.1712,0.56659,0.080851 0.29343,1.8195,-2.2138,1.3576,3.143,-0.48126,-0.72033,1.5819,-0.81553,-0.30782,-0.30009,-2.1776,-1.5349,-0.29133,-0.62143 3.3539,-2.7688,-1.5384,1.0121,-0.19004,2.7102,0.35284,0.28279,-1.9204,2.1478,0.54905,0.64251,1.1834,-0.13237,1.2049 2.0149,2.5593,-1.1358,-1.6244,-1.0949,-1.3964,0.29954,0.40898,0.043444,-0.75437,-2.0114,-1.4402,0.96462,0.21367,-0.7564 -0.56848,2.2961,0.97495,0.81355,-2.1194,-1.5756,0.72488,-0.81508,-0.64829,0.1044,-1.1887,0.51606,0.62518,0.98001,0.93713 1.108,1.224,-1.3194,1.4093,-2.3633,-0.5154,-1.264,-0.90694,0.94451,-0.92451,-0.39771,-0.20536,-0.49017,0.29926,-0.054362 -1.824,-0.8121,-3.0084,-0.72281,0.63408,1.5958,-1.6988,1.317,0.71617,-0.53788,-0.74217,1.004,-1.1361,0.43028,0.64379 -0.44311,1.7574,0.055199,0.00036804,-2.9497,-0.79665,-0.056253,-0.61572,-0.28811,-0.5891,-0.7366,0.75219,0.94615,-0.18011,1.1198 -3.2595,0.84833,-0.53207,-0.99908,0.27298,0.25232,0.43782,3.3287,-0.28224,0.20426,0.10122,-0.42988,-0.51694,-0.38565,1.3731 0.62012,-2.677,-0.0047715,-0.65953,-2.2916,0.40076,1.2921,0.94096,0.564,0.034854,-1.5675,-0.41592,-1.294,-1.6255,-1.7465 4.4025,-2.0454,-2.1103,-2.6877,-1.6857,0.065841,1.0158,2.4049,0.86613,1.2545,0.46214,0.6653,-0.13771,0.24341,0.11829 -2.1507,2.2974,-0.90539,0.55934,-0.52461,-0.33638,1.3958,2.8392,-0.66196,-0.48314,-1.1912,-0.98514,-0.56426,-0.087276,0.088346 -2.4592,1.8856,1.052,0.48616,-1.4004,-0.98025,0.9358,-0.35664,-0.64969,0.91884,0.79149,1.4002,0.16623,0.52498,0.33087 1.3135,1.7101,-0.91398,1.946,0.14667,-0.056048,0.4965,-0.26603,-1.5875,1.4635,-1.8056,-1.318,0.25203,0.86666,1.0744 -2.3102,-0.87286,-0.2938,1.2398,0.49037,-1.9451,1.9431,0.074862,0.24912,0.50783,1.6215,-0.3361,-0.7906,1.1818,-1.3436 4.3541,-2.1167,0.47317,0.53668,-0.53519,-0.28247,-2.2168,0.2521,-0.37512,0.15261,0.69979,-0.56702,1.1174,-0.12263,-0.15046 -2.1727,-0.44714,4.0072,-0.87995,0.80553,-0.54041,-0.58267,1.5953,-0.51975,0.13147,0.08811,0.10718,-0.88157,-1.5041,-0.043307 4.0571,-4.686,-1.7657,0.47006,-0.79431,1.3282,1.6529,2.5954,-1.0713,0.46931,-1.5741,1.4871,-0.17098,0.229,-0.8984 1.6102,0.43576,-1.4824,0.57127,2.6312,-2.1171,-0.77473,1.4106,1.7003,-0.81927,1.0515,-1.4359,0.23283,-0.28283,-0.37393 2.2883,-1.2066,3.3293,0.28279,-2.2884,0.27741,-1.3976,0.36211,-0.79846,-0.45339,-0.067528,0.87194,0.61283,-0.56268,-0.62607 0.97254,2.0672,-0.044767,-0.09476,-2.4002,-1.0879,0.84574,0.64965,0.93589,-1.1806,-1.3694,-0.22171,-0.42533,0.62294,0.16008 -0.014936,0.28427,2.089,-0.98323,-3.4695,-0.22226,0.27551,-0.40434,-1.3128,-1.2622,-0.28652,-0.49423,-0.38991,-1.0948,0.82953 3.0479,-2.1528,-1.9186,1.6584,0.78173,1.881,0.47366,0.43582,-2.3387,2.2717,2.1683,0.56804,2.1581,0.89183,0.974 -2.1539,0.13133,-2.9222,0.15706,0.96578,-0.42738,0.72603,1.7814,-0.66096,1.3694,-0.34617,-1.112,-0.47866,0.99561,-0.36749 1.9007,0.36442,-1.8695,-2.284,-0.41112,-1.785,1.6114,1.0057,1.0543,0.76528,0.65484,1.0616,-0.45219,0.48059,2.0133 -3.0792,0.17216,-1.0889,-0.66019,-0.070735,-1.3295,0.98772,-0.63096,-1.1299,1.7259,0.25293,-0.12944,1.6185,1.2929,-0.10123 -0.90085,-1.6134,0.72591,1.5046,0.43916,0.38478,1.2174,-2.724,-1.231,0.12786,1.5546,0.15778,0.61775,-1.269,-0.23818 0.021591,1.9802,-1.1295,1.5124,-2.0876,-0.16746,0.17756,-0.23864,0.46322,0.81598,-1.4105,-0.12704,0.81479,0.81283,0.5787 -0.99504,3.266,0.22697,-0.10535,-2.4015,0.26463,0.7836,-0.32237,-2.0613,-0.74239,-0.27977,0.33781,0.54898,0.24377,1.186 -0.96457,-0.10491,1.2724,-0.81965,-2.9037,-1.7255,2.0404,-1.4498,0.13131,-0.00037414,-0.74357,-0.58086,-0.25699,-0.66279,0.22624 3.2867,-2.0398,0.19724,0.52643,-0.16414,-0.97678,-2.0913,-0.02155,-0.11954,0.7247,2.5743,0.085249,0.68792,0.66326,-0.15692 3.5971,-0.90035,-1.9503,-2.8651,-1.1874,-0.6312,0.92312,1.4348,0.69029,-2.0559,1.6558,-0.020549,0.3683,-0.11963,0.051366 4.53,-3.5423,-1.8249,-0.12458,-0.34084,0.14516,2.1931,-0.38799,0.54082,-1.6866,0.75249,0.020368,-0.39946,-0.62833,1.5239 1.3665,-0.96186,-1.3812,0.26121,-0.29603,0.46318,-1.1392,0.91945,0.46898,1.828,3.9081,0.81605,-0.43958,1.3286,1.202 0.36099,1.9029,1.0588,2.111,-0.17014,-0.90837,-0.22803,0.72084,-0.46195,1.5092,-0.026531,1.0994,0.12751,1.8803,-0.0047883 -1.8835,-0.29973,-0.40759,-0.76685,-2.8023,-1.2641,1.274,-1.6666,-0.20503,-0.0022149,-0.45996,-0.041749,0.61223,-0.52368,-0.19724 -2.8599,0.44675,-0.13381,-0.093066,-2.0452,-1.3415,0.49893,0.057651,0.080413,-0.044428,1.6457,-0.052441,0.85555,0.19294,0.017073 5.2964,-3.6623,-1.0492,0.13931,0.72341,2.936,0.91294,0.52012,-2.9181,1.1194,-0.1992,-0.60931,1.3371,0.29043,0.38104 3.1723,-0.1093,0.074555,2.0815,-1.1301,-0.0055904,-0.83289,-2.0581,0.050956,-1.1914,-1.0022,-0.57054,0.051638,-0.68185,-0.33516 -0.067428,-1.7522,1.538,1.7931,-2.2137,0.93073,-0.30307,0.31059,0.7244,0.74582,0.63276,-0.23132,0.38441,-1.2376,-0.13081 2.4911,-2.1065,-1.8363,-2.3742,-1.9671,-0.21199,-0.54751,1.9733,1.0574,-0.61069,1.6383,1.3008,0.70844,-0.13144,0.27798 4.1684,-1.9971,3.0966,0.56793,-1.533,-0.21235,-1.4519,0.48211,-1.3472,-0.048896,-0.14129,-0.09182,-0.87717,0.28009,-0.21573 0.91603,-0.35381,3.0171,-1.8348,-2.3718,0.9575,-0.6807,1.8404,-2.9091,-1.2159,-0.9433,-1.263,-0.2261,-1.2865,-0.13478 0.71931,1.4886,0.32966,0.69474,-2.1407,-1.4851,0.79726,0.33013,0.29504,0.24042,-1.8363,0.58776,1.1135,0.7351,-0.30279 4.6003,-2.3579,1.0986,-1.5298,1.7712,-0.18047,-0.87302,0.59321,0.73267,-0.24293,1.3854,1.8757,0.9206,-0.75614,-1.7303 -1.0241,0.30853,0.57915,1.0722,-2.8261,-0.45487,0.62797,-0.72413,0.063543,-0.47387,0.64743,0.54542,0.73477,-0.28478,0.63388 3.1558,-1.4508,-1.3017,-1.9093,0.5393,-2.5459,2.112,1.3621,0.92079,-0.16707,0.65899,0.99066,-0.10385,1.1218,0.90796 -0.1574,2.7392,0.88232,-0.55099,-0.79271,-0.36154,1.5544,0.33074,-2.9593,-0.98932,-0.86793,-0.91292,-0.69213,0.092959,0.74818 2.0189,0.45161,-1.2488,-0.32797,1.5889,-0.0032755,0.55846,0.77264,1.3745,2.8648,0.42608,0.72963,1.4143,-0.74027,-0.2494 1.8788,-0.74293,1.6068,2.861,-1.8238,0.077778,0.025656,-1.3866,-0.29785,-1.1584,-1.0431,0.37816,-0.042044,-0.93945,0.43674 1.4366,2.2999,0.73757,0.060977,-2.1414,-1.6905,-1.5617,-1.0175,-0.083019,-0.39062,-0.28992,0.27706,0.38552,0.020523,0.12497 1.0628,0.088634,-2.5316,1.5197,4.1506,-0.28825,0.90836,1.1299,-0.82775,-0.95588,1.4542,-1.8133,0.61798,-0.26894,1.061 4.2194,-2.0198,-1.7928,-0.15889,1.6273,-1.367,3.5917,0.97789,0.42253,0.2217,0.051926,1.0542,-0.083441,0.53809,0.48132 3.4095,-0.46261,1.3694,-1.3339,-1.0622,1.3012,-2.9447,1.8895,-0.97029,1.2139,0.14613,0.99255,2.0116,0.27437,-0.99509 -2.7701,1.0669,-0.44097,1.3223,0.0076687,0.17051,0.93084,1.3962,0.85747,1.625,1.0979,-0.1821,-1.3226,-0.27269,-0.61356 -2.846,-0.89494,-0.6043,-1.6566,-1.1199,0.19989,-0.4987,-1.6635,-1.8863,0.44471,1.2163,-0.037342,-1.3514,-0.079368,-0.76698 5.2047,0.052799,-0.79733,-1.8704,2.2217,-2.1758,2.3942,0.56979,0.2606,1.2087,-0.26682,-0.75111,-0.82619,0.38524,1.1026 5.1484,-2.8902,-2.3228,-0.43244,0.13206,0.33471,2.1013,0.54089,0.82819,-1.34,0.56733,0.023006,-0.39943,1.0562,-0.2022 4.198,-0.6976,-1.5939,-1.0473,-1.3969,-0.99217,-0.47897,0.049513,1.8812,-1.2542,0.14979,-0.36219,-0.79792,-0.67104,-1.9501 3.2487,1.2855,-0.97426,-0.64391,-0.48966,-2.4703,0.15415,-0.29748,1.8843,-0.62523,-1.0956,-0.95364,0.85836,0.45822,-1.1806 -0.22397,-0.5287,-0.00017145,1.6707,-1.7879,2.2373,-0.36936,0.92099,1.2623,1.8284,0.76072,-0.69788,0.64467,0.54314,0.35885 0.47448,2.32,-1.3583,1.5223,-0.072291,-0.47928,-1.2077,-0.18449,-0.92684,0.22288,1.0443,-0.035209,0.15944,-0.49003,-0.46027 -0.31131,0.68728,-0.46547,2.5191,-0.52212,0.37421,-1.263,0.38404,0.75076,-0.95752,1.4205,0.69836,-1.911,0.33894,-0.57746 -1.46,1.0648,-0.35623,0.6246,-3.1887,0.14714,0.57813,-0.62701,0.12347,-0.11497,0.90516,0.72059,0.18232,0.074817,0.57455 3.4629,-1.0876,-0.70543,-2.1266,-1.982,-1.1823,-1.0616,-0.12293,0.67619,-0.76429,1.3264,-0.75846,0.90879,0.31965,0.85043 -1.9394,-0.90028,1.378,-0.46291,-2.7502,-0.78131,0.19136,-1.2229,0.063553,0.45562,1.1651,0.022842,0.75589,-0.62924,-0.47572 4.7332,-1.3633,-1.6436,-1.2519,0.41055,-1.9672,0.93703,0.34174,1.5599,-1.5927,0.64917,0.80356,-0.40483,0.054423,-1.1559 0.95364,1.175,-0.82274,0.056292,-2.562,0.52361,-2.0709,-0.069752,0.75114,-0.84237,0.49583,0.28507,-0.05665,0.42298,0.46475 -1.1223,2.0294,-0.3727,2.1615,0.63953,-0.38716,0.53787,0.32086,-2.7312,0.49581,-0.79596,0.45241,-0.53666,1.7556,0.4696 -2.1913,-0.47899,-2.8345,-0.30026,-1.4515,-0.057733,-0.28717,-2.027,-1.4004,0.4969,0.098046,0.76829,-0.59748,0.39024,-0.94642 3.2661,1.678,0.39115,-0.22093,-0.18282,-1.8797,0.94798,0.44672,-0.51056,1.3706,-2.325,-1.1942,0.63468,1.2347,-0.30259 0.35382,2.777,-0.65197,0.91186,-1.8023,-0.60229,-0.86338,-0.28659,-1.5652,0.66026,-0.030311,-0.48143,-1.4874,0.54537,-0.31254 2.0341,-0.21671,-0.039048,0.32992,0.045275,0.37085,-2.8936,1.642,0.71719,1.7879,1.6298,0.12759,0.91004,1.5584,-0.39628 0.32633,1.2918,1.2008,0.92518,-1.2629,0.6446,-2.8406,0.15427,0.23039,0.093809,1.664,0.62749,-0.7272,0.83048,-0.40014 -0.42629,1.0281,0.6322,0.72023,-1.7854,0.037126,-1.8529,0.67868,-0.028964,-2.4479,1.4073,0.97607,0.99637,0.041232,0.40315 -0.10033,2.0024,-2.1296,0.19796,-1.098,0.26405,-1.8253,1.441,-0.74274,0.40671,1.0961,-0.33581,0.057056,0.96119,-1.52 0.68869,1.543,-1.3895,0.76546,0.97113,-1.426,-0.98694,2.5272,0.75171,-0.3786,-0.78365,-1.2321,0.59088,0.48152,-1.0536 -2.1339,1.5965,0.77562,0.21291,-0.072623,-0.90496,1.506,2.1706,-0.43163,-0.57637,0.304,0.45476,-0.36838,0.69872,-0.14428 -1.1569,2.2548,-0.59717,1.6224,-0.6452,0.48838,1.1877,0.62767,-0.18283,1.6654,-1.2817,0.69611,0.97051,-0.29416,0.91401 0.11387,-0.29586,-1.6533,2.2435,-0.40305,-0.72003,-0.69645,-1.132,-0.36621,-2.9291,0.38988,-0.40036,0.69696,1.0066,0.47177 0.32559,1.9905,-0.14861,0.071556,-2.6535,-0.0082448,0.81104,-0.029638,-0.37473,-2.5072,-0.9372,-0.31901,0.35556,0.18322,0.70746 0.67788,1.7214,-0.39183,1.2581,-1.6549,-0.56921,-0.53723,-0.90534,-0.1214,-0.47621,0.083523,-0.35953,-0.19733,1.686,0.79708 0.087529,-3.3224,0.056411,0.64358,0.41851,2.3358,-1.5747,-2.0232,-0.72636,2.2692,-0.60359,-0.51252,-0.26936,0.048756,0.62965 -0.48481,-0.049732,1.3608,0.50276,-3.0031,-1.59,0.23909,-0.29974,0.61018,-0.48599,0.092763,0.38324,0.49352,-0.77482,0.64366 -0.73557,-3.2071,1.7763,1.2552,0.35417,-0.5385,-0.57404,2.4259,0.23375,0.41508,0.07715,-0.66682,-0.30794,-2.129,0.15736 -0.23811,0.97023,-0.73661,3.2783,0.23807,-1.0168,0.6216,0.67636,-0.66196,-0.78714,0.012294,0.11289,0.17398,1.0877,-0.25364 1.4993,0.79909,-2.5725,0.2032,0.66158,-1.5021,1.3013,-0.50387,2.0398,0.037456,0.10484,0.22238,0.21546,0.66742,-0.33816 0.2803,0.53563,0.2365,2.9677,0.8159,-2.4203,0.30847,1.3807,-0.13817,-2.2193,-0.93719,-0.683,-0.74138,-0.26085,-0.10586 3.9468,0.22364,0.38271,-1.8675,-2.1904,-0.32963,-2.0153,0.60545,-0.080021,-0.68693,0.035988,-1.2165,-1.2158,0.67719,0.13026 0.73067,0.88055,-0.18705,2.0456,0.07977,1.1386,-0.49756,0.80619,-1.2469,1.7923,-0.53399,0.41326,-0.53569,0.83502,0.7029 -1.1593,-1.095,-1.0556,1.3654,1.9349,-0.28843,0.96567,-2.0736,-1.2996,1.2385,0.64951,0.67295,1.2941,0.11179,-0.7403 2.1827,0.96147,-2.0848,-2.6602,-0.9739,-1.9824,0.87699,1.3031,-0.75867,0.4814,1.7681,-0.029979,0.22819,-0.49962,1.6966 0.69515,3.011,2.1438,-0.84881,-0.77749,-1.9665,0.15071,0.46925,-1.9799,-0.61577,-0.78053,-1.4371,0.87668,0.070731,0.028695 4.9069,-3.6521,-2.3908,0.017944,-0.40971,2.0347,1.0727,0.75734,-0.56727,-0.5541,0.14679,-0.91595,-0.14979,-0.71893,0.17781 -0.88374,2.7112,0.58843,0.23803,-2.5817,0.36894,0.51253,-0.77314,-2.0109,-1.0509,-0.060104,0.37948,-0.28097,-0.41659,1.0787 2.1805,-1.5923,-1.1983,0.23068,2.6198,-2.6299,0.43454,1.569,1.2574,-1.2007,2.4534,0.12808,1.3861,0.247,0.21365 -1.5286,1.3255,-1.7541,1.6159,0.26982,0.20804,0.33177,1.8922,-0.023985,0.77952,-1.038,0.037723,-1.1767,0.55963,-0.20014 1.4256,0.33039,-1.2958,1.6506,1.8735,-0.60721,0.27221,-0.35953,1.8167,-0.74152,0.29176,-0.41098,1.8608,0.40933,-0.60119 -0.20933,1.9466,-1.2355,2.0882,0.10066,-1.323,-0.72517,0.41685,0.7197,0.88691,0.17198,0.25297,0.14159,1.1375,-0.89225 4.795,-1.3,-1.0725,-2.5769,0.0037086,-2.8462,1.0715,0.81791,1.1492,-1.3458,1.1577,0.52988,-0.077679,-0.048989,-0.54278 -2.0847,-1.8835,-0.79719,1.6911,1.9949,-1.2304,1.1853,-1.0752,-1.4212,-0.50724,0.60301,-0.20896,0.34271,0.31846,-0.6958 4.5501,-3.23,-1.2504,1.3617,0.086549,0.80033,0.20647,0.86808,-0.19434,-2.6389,0.27876,-0.042854,-0.65233,0.079078,-1.5997 0.76453,2.4231,-1.088,-0.79415,-0.28157,0.10503,-1.5841,-0.79495,-0.079837,0.5017,1.4971,-0.26015,1.4746,-0.019354,-0.29442 -1.0223,0.58444,0.13935,1.5459,-1.9,-2.1856,-0.33936,1.47,0.518,-1.7512,0.42228,0.37372,-0.35152,-0.18644,-0.13357 4.0478,-2.3734,-2.4742,-1.4334,-1.8017,0.94808,1.1844,2.6849,0.84479,1.9931,-0.31772,0.52382,-0.54894,1.2819,0.23267 2.796,1.7783,1.1577,-0.56046,-0.86272,-2.5404,-1.2926,-1.6754,-0.28993,-0.24244,0.73185,-0.63292,-0.052724,1.5546,0.47598 -1.1746,0.98872,0.48229,0.64718,-1.6831,1.0176,-1.429,1.4813,-0.13252,-2.0952,1.5258,0.66449,0.039501,-0.80627,0.4034 -1.3147,-3.4964,0.77825,1.8488,0.86291,1.9347,-0.70139,-0.19689,-1.0606,1.341,1.6487,-1.387,-0.63454,0.18588,-0.10534 -1.5397,-1.4989,0.14529,1.6781,-0.92599,2.4854,-0.46506,0.29693,0.74275,0.63727,1.8203,-0.89784,-0.92329,-0.04454,0.034827 3.0982,-2.7404,-2.4944,0.98083,-0.096471,1.0538,2.9928,0.94693,0.54885,-0.90213,-1.0101,1.2614,0.019288,0.98729,-0.53291 0.99634,0.48286,2.3458,-0.79312,-2.8481,-1.227,0.20356,0.10772,-1.3405,-2.565,-0.43861,0.20187,0.52722,-0.30789,-0.072685 -1.6523,1.7524,-0.93438,0.16684,-2.7074,0.42072,1.9987,-0.71972,-1.3861,-1.0114,-0.29446,-0.30812,0.5026,-0.2229,0.95481 -0.09538,-1.6866,-1.6494,0.030988,-0.9245,-2.6632,1.2121,-1.5022,-0.75528,1.0313,-1.9394,0.52153,0.9439,-0.12798,-0.81013 1.4039,-0.54342,-2.0339,0.59426,1.1295,1.8246,-1.2327,0.070937,-1.2226,-0.13729,3.397,-1.2494,-0.98897,0.99004,0.72114 -0.40041,1.7496,-0.8204,1.2946,-0.75204,-0.25974,0.90879,0.50199,-0.33238,1.391,-1.9341,-0.78115,-0.52182,0.96177,1.5102 -2.6889,-1.1879,-0.3479,-2.1698,0.062139,1.1271,-2.5612,-0.26186,-2.037,0.84917,0.80113,0.60836,-0.58471,0.45327,0.054541 1.7147,-0.20534,1.5274,-0.17434,-2.9963,-1.3035,0.68704,0.027585,-0.19643,-0.34224,-1.509,-0.3277,-1.3326,-0.18526,-0.07732 1.8963,0.90562,0.2734,2.1024,0.91786,-0.30932,0.85048,-0.80126,-3.8614,0.98157,-0.84362,-0.52964,0.96051,-0.37956,0.90416 -1.4151,1.1245,1.2655,0.78667,-2.4441,-0.43361,-0.69084,-0.012908,-0.058234,-0.82996,1.5404,1.4239,0.30198,-0.54394,0.20617 0.38964,-1.0335,2.2127,3.0227,-1.0665,0.68349,-0.18135,-0.519,-0.1209,-0.64945,1.1666,0.83914,-0.059523,-1.2538,0.20681 4.1624,-1.2735,-0.78521,-3.1144,-1.6215,0.91371,-0.22398,0.53015,-0.45636,1.0988,1.646,0.71769,-0.3843,1.2128,0.30105 5.7513,-1.954,1.0394,-0.40578,-0.63527,-1.4626,-0.34654,-0.24408,0.081709,-1.1788,-0.47755,-0.61922,-0.79184,-0.079244,-0.22748 -0.14001,-1.3921,1.0985,1.2338,-2.388,0.37299,-0.068172,0.24901,0.57898,-0.034252,1.504,0.10257,0.86304,-0.8665,-0.22429 -1.7679,-0.52484,-1.7335,-0.0017398,-1.5805,-1.8199,0.31435,-1.9783,-0.058106,1.0414,-0.28418,0.2767,0.45931,0.31543,-0.27077 3.1658,0.16231,0.45186,0.91941,0.16432,-1.3964,0.31772,-2.153,-1.737,-2.8554,-0.86347,-1.0751,1.073,-0.32461,0.39953 2.9552,0.010129,-1.91,0.31459,-0.32516,-1.2076,1.0647,-1.4713,2.0701,-0.74761,-0.47272,-0.58699,0.16661,-0.076422,-0.13702 -0.14093,3.5011,-0.6592,-0.31283,-2.0586,-0.44394,0.24227,0.30181,-1.4194,-0.50785,-2.1872,-0.27018,0.31122,0.56594,0.40603 5.1822,-1.4023,-1.1407,-0.99424,0.050709,-2.2457,1.6887,-0.21098,1.2812,-0.56496,0.35171,-0.14376,0.64996,0.62852,-0.58366 1.7981,2.7273,-1.9477,-1.3802,-1.0003,-1.7925,-0.65422,0.58295,-0.73386,1.1034,0.10739,-2.1159,-0.48132,-0.18739,0.66638 0.26059,1.0533,0.38009,1.8168,-2.0618,-0.87871,0.65056,-1.187,0.72986,0.30705,-1.0192,0.59239,-0.13442,-0.013892,0.92463 -0.2078,-0.64076,2.7762,-1.5156,-2.9951,-0.30174,0.42809,-0.67797,-0.97396,-0.49742,0.24651,-0.095817,-1.0064,-0.83735,-0.25487 4.035,-0.33258,-1.306,1.1571,0.025447,-0.53079,0.52681,-1.635,0.58076,-2.3489,-0.78506,-1.383,0.25744,0.048298,-0.50672 3.0957,1.8254,-0.71186,0.31715,0.036782,-0.29006,-0.06515,-0.95506,0.23033,1.5065,-1.3765,-0.79078,0.033628,0.15191,-1.0062 1.2398,-0.95955,-2.0805,0.95585,3.2149,-0.16746,0.5152,1.3228,0.80737,-0.93962,2.4203,-1.213,-0.311,-0.2539,1.8663 1.4374,1.7027,0.84644,1.7997,1.7942,-2.1199,-1.1362,-0.81803,-1.6756,-0.58126,1.4869,-0.61582,-0.83359,0.31588,0.21511 -2.0019,0.83141,-0.25429,1.2487,-0.1636,-1.6242,1.6944,2.1745,-0.64784,0.84263,-0.27502,-0.99094,0.76374,1.0059,-0.47152 2.5842,-0.38989,0.43647,1.0491,-2.454,0.15957,-1.568,-0.17726,0.97484,-0.40262,-0.85473,0.31896,-0.1698,-0.52417,-0.14404 -0.14352,-3.8575,-0.94431,0.81133,1.559,0.084931,-2.0754,1.8927,0.44487,0.78725,-1.6582,0.55937,-0.34948,-0.90498,0.84605 4.4777,-2.5793,-1.3669,0.0562,0.010351,-1.081,2.6219,-0.53825,0.7397,-0.11105,0.34607,0.59057,0.20976,0.068433,1.4113 -0.56066,1.1285,0.3813,1.779,-2.1985,-1.2735,1.1718,-1.0844,0.31543,0.7482,-0.53105,-0.053464,0.35451,0.72493,0.93846 4.239,1.2561,-1.827,-2.3608,0.18238,-1.6214,1.5125,0.60131,0.65561,-0.1801,-0.39071,-0.71564,0.68308,0.66141,-1.1402 -1.4555,-0.61853,-0.49292,2.3678,0.82762,0.46362,0.79918,2.1189,1.1191,0.39695,0.27733,-2.2207,-1.4773,0.87067,0.26991 -2.4979,0.71208,-0.052289,1.1352,1.7086,-0.51435,1.1119,2.443,0.18272,1.8052,0.25376,-0.39155,-1.0635,0.77627,0.16384 4.4075,-0.6652,-0.57927,1.1174,-0.506,-1.4828,1.0865,-0.73535,-0.092256,-1.9425,-1.2205,-0.26307,0.029981,0.060834,-1.7957 -2.1264,-0.80675,-2.8185,0.039206,1.2535,-2.0305,-0.81288,0.20443,0.41237,-0.44203,-0.93407,1.0973,-1.155,1.0366,0.89634 3.4742,1.9815,-1.3134,0.13878,0.63794,-0.72699,0.41728,-0.87452,0.51922,0.16316,-1.6768,-2.2871,-0.30888,-0.74416,0.0031402 -3.7291,0.43665,-1.1599,-0.88207,-0.022533,-0.11293,1.1972,-0.32909,-1.0633,-0.055659,0.98109,0.070235,-0.03718,0.66699,-1.289 0.44244,1.7071,1.2435,-1.2007,-2.0151,-1.6798,1.703,1.7937,-2.2005,0.18745,-1.2345,-0.25573,-0.26881,0.23488,1.038 -0.94676,4.3127,-0.1882,-0.316,0.59243,-0.51393,-0.81084,0.80049,-2.246,-0.72446,-0.2687,-0.40951,0.26883,0.7283,-0.75149 1.4123,-4.2797,1.8275,0.45746,-0.85672,1.7456,0.71664,-0.4981,-1.12,1.4532,-1.4564,-1.6171,-0.30425,-0.67939,-0.48993 -0.77444,-0.096536,2.7716,0.70311,-1.8465,-0.88271,-0.69378,0.19875,-0.48791,0.16836,1.7752,1.3623,-0.576,0.20838,0.10885 2.5676,0.8142,-1.1028,-2.3295,-1.6782,-1.8008,-1.1321,-0.10676,0.69434,-2.256,1.0922,-0.7812,0.46371,-0.26229,-0.054114 -0.12364,3.4585,-1.4886,-0.53673,-0.46735,0.97164,-1.592,1.004,-1.4463,0.26269,-0.29132,-1.2086,0.4567,0.14554,-0.062283 -0.20603,1.6305,-0.23507,1.8533,-1.8506,-1.2328,0.97993,-0.88643,-0.19819,1.0652,-0.9086,0.55837,-0.34588,0.7762,1.0753 2.651,-0.045394,-2.4467,1.1334,0.214,0.041048,1.2205,-1.7882,0.52615,-0.52554,-0.00033333,-1.6062,1.0083,0.052474,1.5252 4.2552,-2.2696,-1.4248,-0.76479,-0.32815,-2.2274,1.7139,-0.56531,1.5122,-0.7589,0.8855,-0.12565,-1.0197,0.27507,1.1451 3.6697,-3.8294,-1.0339,-2.2765,-1.2092,-1.8861,2.0386,2.6777,0.19334,-0.71625,0.63214,3.0165,-0.04068,0.13864,-0.4468 -0.34614,0.66567,0.88005,2.9876,1.2227,-0.60367,-0.42894,0.10009,-1.0699,-1.6506,1.7091,0.65785,-1.8887,0.66509,-0.11954 0.6128,1.7375,-0.62367,1.8205,0.0095749,-0.81139,0.69144,-1.9742,-1.6693,-0.79757,-2.2448,-0.62926,0.8202,0.54355,1.4577 1.201,0.48427,-1.7632,2.2127,1.6001,-1.2027,-0.2341,0.66239,0.28434,-1.7778,-0.29478,-1.6806,0.92844,-0.74528,-0.58623 0.6228,-0.54762,2.1403,-0.1203,2.0826,-1.2397,0.42512,0.42851,-3.1924,2.4316,0.49256,0.5212,0.076075,0.12765,-1.0453 3.9284,-1.553,0.02246,0.14541,-0.66377,0.34463,-0.93197,-1.1185,-0.38677,-1.1121,-0.23201,-2.4129,-1.2036,0.051195,1.2723 2.0011,-4.2083,0.43587,-0.21804,0.0030905,-0.84245,0.024459,2.4354,-1.9394,-0.093836,1.865,2.7305,1.2031,0.71972,-0.90708 1.1797,0.50805,-1.3202,1.9081,3.6355,0.40324,0.19417,1.3796,-1.0071,0.33933,-0.55924,-1.2494,1.9447,-0.78886,-0.63444 1.5866,-1.3736,-0.28199,1.4572,-2.0627,3.3637,1.2622,0.66376,-0.066514,0.40215,-1.0316,-1.352,-0.011191,-0.25243,-0.027209 -3.1646,-1.2822,-0.45312,-0.42099,-1.6995,-0.89195,-0.096581,-0.065617,0.00045123,-0.69608,1.5166,-0.32516,0.31162,-1.4944,-0.87784 -1.2873,1.9994,-0.9036,1.4703,-2.1882,-0.27051,0.76664,0.15428,-0.38126,0.22762,0.15042,1.1316,-0.35949,0.62063,0.033949 1.6744,-0.16247,-0.88441,1.0931,-0.49674,0.98139,-2.0592,-1.4191,-0.37829,-0.77523,2.5345,-1.4485,-0.15387,0.46475,0.82758 -0.74875,1.2773,-1.2833,2.2897,-1.6205,1.483,-0.82795,0.45935,0.60881,0.39943,0.91682,0.36192,-0.18708,0.47885,-0.038054 4.0664,-2.8024,-2.6772,-1.1688,-1.1766,0.17957,1.532,1.5277,1.9589,-0.27346,0.89592,1.343,-0.22553,0.044519,-0.19132 2.9118,0.7417,-0.72928,0.35358,-1.5974,-1.7037,0.29469,-0.22748,1.7994,-1.9026,-1.2968,0.14542,-1.1474,0.65568,-1.5013 0.50973,-0.27853,1.6761,1.5594,-2.1182,0.41289,-2.1884,1.0032,0.43316,-0.36458,0.61167,0.7917,0.29758,-0.62705,0.3828 2.9903,1.193,0.65942,-1.3704,-1.2081,-2.2289,1.1819,1.4865,0.091797,-1.8084,-2.1897,0.53807,-0.064712,0.86388,-1.4557 1.1608,-0.93365,-0.0024026,2.8714,-0.58711,1.8617,-1.5612,0.33648,-0.4802,-0.50697,0.94225,0.66656,0.022482,0.052512,0.68091 4.1701,0.50369,1.6689,-2.1841,-1.3821,-2.2206,-0.71068,-0.0043912,-0.54914,-1.0513,-0.43633,0.86249,-0.21605,1.1593,-0.57469 0.84365,1.8186,-1.6921,2.3875,-0.13682,0.30316,-0.99533,-0.65044,0.0043661,0.48462,-0.10665,-0.56494,0.59146,0.39643,-0.0188 -1.595,-0.1018,-0.71241,1.5721,-0.21877,-0.17391,0.70873,2.1127,1.1998,-0.20034,0.17773,-1.2752,-1.6074,-0.030782,0.24966 0.39551,1.6522,0.086388,0.1801,-2.3674,-1.0495,0.33796,-0.010542,0.20102,-1.0326,-1.3716,0.065157,1.4871,0.31411,0.37708 3.3363,-0.55481,-0.26184,1.0788,0.46136,-1.3866,-0.11275,-2.3207,0.96312,-0.31594,0.66102,-0.81564,1.469,-0.47623,0.044934 2.7333,-1.3519,-2.3458,0.94572,-0.6302,3.1352,-0.42866,-0.39252,-1.8206,0.82299,0.3021,-0.14545,1.9876,-0.13853,0.30549 -0.69872,-0.7505,1.5999,2.3994,-1.7666,-0.74311,0.3814,-0.87368,0.15652,-0.17337,1.2079,0.32193,-1.3015,0.21436,1.0855 -2.5804,-0.1045,-1.8843,-0.34755,-1.2364,1.7638,0.28039,-1.2517,-0.023286,-0.90931,1.4511,0.14179,0.25996,-0.85685,-0.95807 2.5556,1.5627,-0.55599,1.2612,0.47846,-0.63353,-0.68223,-1.0207,-0.5046,0.47804,-0.30709,-1.9984,-0.013284,1.4867,0.94269 -2.5136,2.2311,-1.0104,0.95893,-0.22012,0.075895,0.57551,2.8634,-0.032334,0.49232,-0.1957,-0.66794,-1.0784,-0.17087,0.3613 -1.4288,1.0999,-0.36736,1.4392,-1.929,-0.33678,0.028736,-0.56435,-0.67542,-0.62536,0.96259,1.3592,-1.3806,0.3393,-0.23018 4.6372,-2.7741,-1.0572,0.13463,-0.85725,2.9419,-0.10778,0.14493,-2.4718,-2.0877,-0.89892,-0.89217,0.21943,0.047156,-0.088496 0.66724,2.1181,-0.28099,-0.33619,-1.5733,0.089137,-1.9951,-1.2928,-0.63216,-1.746,0.92982,0.64924,1.6655,-0.041692,-0.068154 5.2515,-2.0865,1.3453,0.90881,-0.47343,1.5621,-0.16742,-0.69779,-2.3248,-2.1661,-0.65077,-0.0081065,-0.038476,0.28164,-0.35194 1.7229,-1.6387,-1.4181,1.5761,2.8064,0.61802,-0.77096,2.6235,-0.38815,0.90576,2.958,0.08799,-0.46812,1.8041,-0.0032764 2.5707,-0.2051,-1.5743,-1.3194,-2.0473,-0.29354,-0.1332,-0.38663,0.29335,0.98908,1.6623,-0.59109,-0.32561,0.73179,1.968 1.6443,0.85236,-0.58155,1.5736,0.023253,0.32022,-2.7607,-0.10354,1.0679,0.32513,2.5299,-0.26173,-0.016279,0.65733,-0.81792 5.4337,-2.5274,-0.94924,-0.8478,0.0026324,-1.4148,1.954,-0.63065,0.86279,-0.20832,0.59446,-0.2473,-0.25255,0.55237,1.3026 3.0659,-0.98215,-2.7925,-2.5129,-1.2252,-1.3352,2.0495,1.2072,1.5599,-1.396,1.9771,1.7649,0.87882,1.3052,0.51327 3.6544,-4.3009,-1.6783,-1.7543,-1.7995,-0.23661,1.4686,3.9429,0.198,0.75298,-0.14903,2.9471,0.25769,0.20859,-0.90628 3.3886,0.23625,1.5079,0.47676,-1.2503,-1.5217,-1.802,-1.4978,-0.015094,-0.50033,0.64091,-0.22485,0.004688,0.59805,0.14848 3.8301,-3.5384,-2.765,0.18299,-0.58276,0.60382,1.0395,2.0683,1.2363,0.18058,1.2788,1.4486,-0.31102,0.32288,-0.4729 -0.73798,-0.27757,0.3374,3.313,-0.1984,-0.11387,0.54245,-0.38647,-0.50298,-1.9097,1.6193,0.3283,-0.24928,-0.17062,0.66839 -1.2229,2.3833,0.21656,1.8934,-0.65634,-0.97975,0.56005,0.64479,-0.58214,1.4652,-0.68818,0.72671,-0.53919,1.0704,0.83479 1.1222,-0.46187,-1.6865,1.4714,0.91642,0.84058,0.089142,3.136,0.28645,-0.17966,-0.13385,-0.98649,-0.33296,1.9034,0.20241 4.2527,-0.44913,2.2705,-1.1146,-1.7732,-1.0924,-1.1888,0.16151,-0.3756,-1.1846,-0.23186,1.3021,-0.15382,-0.26488,-1.9161 1.5423,-4.4088,0.80181,-0.030592,1.6354,0.96505,-0.6654,-0.31366,-1.0993,1.8677,-1.1909,1.3464,0.16521,-1.0942,-0.61435 4.4759,-1.9671,-0.8444,-2.0295,-1.1271,-1.2639,0.56288,0.37976,1.4163,0.5997,1.0805,0.54767,0.40717,-0.29139,0.85443 0.4014,-0.046622,-0.51947,2.6411,0.8799,1.28,-1.2718,2.4824,0.52164,-1.1804,0.81614,-0.99321,-1.2499,0.81657,-0.18456 -0.46847,-0.1007,1.1314,1.4104,-1.6633,-0.75097,0.80358,0.11263,0.38454,1.2234,-0.47526,1.2755,0.97128,-0.72907,0.4469 3.3163,-2.1762,-1.4646,-2.9949,-1.6592,-1.1769,2.087,1.5187,0.85136,-0.84527,0.19731,2.4045,0.75164,-0.29365,0.16139 -3.2859,-0.73647,-0.72725,-0.84926,1.0555,1.0359,0.029981,1.4937,-0.35415,2.0464,0.87564,-0.43453,-1.0536,0.65406,-1.1155 -1.8038,0.68653,2.0751,0.53001,-1.5644,-1.9484,0.80119,-0.0080196,0.24089,-0.24619,1.2866,0.75068,0.86673,0.61526,0.31681 -1.5397,1.0441,-0.88331,1.0839,-2.541,1.1723,0.35953,-0.0907,-0.30776,-0.19247,1.1006,0.66072,-0.93178,-0.16395,-0.079528 5.0591,-0.9993,-0.31665,-1.3502,-0.33864,-2.1888,0.69617,-0.80801,1.4135,-0.81093,0.33608,-0.63991,0.79641,0.39978,-0.20533 2.5456,-0.6008,2.1713,2.8961,-0.060275,-1.0207,-0.72657,-2.0294,-1.391,-1.5995,0.14985,0.20844,0.12624,0.0097984,0.65395 2.883,-0.99205,-1.6848,0.88209,-0.59791,0.56784,-0.076183,-1.8838,0.30494,-0.23212,1.5086,-0.85355,0.065559,-0.63016,1.6223 -0.11962,-2.0569,0.91048,1.698,0.15075,3.6782,-0.22065,0.18629,-0.86466,1.0382,0.79874,-1.365,1.5228,0.10791,0.21276 -0.25461,1.1353,0.73377,-0.44835,-3.688,-0.9522,0.27097,-0.35482,-0.17685,-0.99029,-0.40511,0.39157,-0.36797,-0.51884,1.1917 3.4882,-0.94419,-1.1762,-0.31292,-1.2287,-0.88175,-0.7439,-0.64339,1.6394,-0.086662,0.27179,-0.98,-1.0255,0.58903,0.87381 -1.2518,3.0215,-0.18265,1.2511,0.36934,-1.0478,-1.1713,2.5307,-0.050817,0.41955,-0.86807,-0.10909,0.1031,0.20809,-0.34864 0.72089,1.2364,-2.5203,1.9807,0.59503,-0.37817,-0.40588,-0.23527,0.31187,0.98362,1.0276,-0.43655,0.27653,0.96198,-0.30553 3.0011,1.4777,-1.6504,-2.9137,-0.4105,-2.3789,0.52674,0.65692,0.88756,0.015776,0.061134,-1.0919,-0.19733,-0.30747,-0.042425 -0.053079,2.3171,-1.7918,-0.36629,1.101,-2.3542,-1.1551,2.08,0.67251,-0.18824,-0.37024,-1.9606,0.86119,0.43146,-0.27909 4.932,-2.9527,-0.62417,-2.4664,-0.98679,-0.29369,0.88895,1.9027,-1.2618,1.9202,0.58367,0.33342,-1.4507,0.95252,1.4487 4.2093,-0.93488,-0.58079,0.045893,-1.426,-1.6689,-0.18006,0.42031,1.3859,-2.3008,-0.017915,0.17331,-1.5029,0.52037,-1.7544 0.3954,1.571,1.1981,0.70371,-3.148,-1.4929,-0.29528,-0.53989,0.15397,-0.60796,-0.38888,0.42966,-0.088021,0.37673,1.0119 -1.5008,1.595,-1.5603,1.901,-0.14584,0.79221,1.3532,0.91361,-0.99124,0.21141,-0.52139,0.094029,-1.6555,-0.57214,0.042806 -0.34094,1.5792,2.6766,-0.51651,-1.8961,0.070122,-1.7333,0.26114,-1.6929,-0.91938,1.265,0.57374,-0.45725,-0.077977,0.18899 1.8139,-0.66729,-1.9162,1.0377,-2.0299,0.44325,-0.06272,0.35897,0.82972,2.246,0.35907,0.10804,0.63342,0.80654,1.6298 2.7075,-2.8138,-2.1996,1.2033,-0.76569,1.8198,1.5151,0.33309,-0.6366,-0.75244,-0.6766,-0.19596,0.41704,-0.20582,1.1062 2.2937,-0.69952,-3.2158,0.68029,0.50169,0.11357,2.1953,-1.0853,1.0326,-1.6141,0.24141,-0.16626,0.60645,-0.15332,0.38451 -1.2405,1.9044,-1.8567,0.21589,-1.447,1.1344,1.7585,0.67972,-0.84671,-0.29158,-1.7195,-0.21321,-0.11837,-0.46959,0.93276 0.87099,3.3025,-1.1547,-0.60647,-1.2558,-1.1479,-0.63281,0.20503,0.19385,0.049265,-1.9553,-1.1176,0.83608,0.70727,-0.30127 -1.1524,0.019382,-0.015974,3.0622,-1.1219,0.069457,0.78325,-0.90474,-0.24129,-0.72572,1.6375,0.58046,-0.99485,0.30192,0.49225 0.87855,1.8366,-0.76277,0.53595,1.0479,-1.0056,-1.161,0.75415,-0.62906,0.95874,1.0821,-0.29634,0.28793,0.97103,-0.53483 0.94364,-0.02925,1.0546,-0.065988,-3.3133,-0.52133,1.271,-0.039392,1.1058,-0.87897,-1.0416,-0.0067662,-1.1668,-1.3835,0.35072 1.5219,0.96353,-0.055929,1.2675,1.274,-1.5429,-1.9508,0.45134,1.1773,-0.53687,1.8966,0.20874,0.27601,0.60178,-1.4981 -2.1153,1.8473,1.5677,0.38688,0.067221,0.026378,-0.79408,2.7267,-1.1572,1.408,0.51597,0.39748,-0.46674,-0.29795,0.40451 -2.2542,-2.4609,-0.11506,1.623,-0.034315,1.0182,-0.61646,-1.4723,0.15931,1.0453,1.4935,-0.21755,-1.3475,-0.79264,-0.78857 2.3761,0.52375,1.447,1.4234,-1.5452,0.08827,-2.2815,-1.216,-0.3395,-0.014752,0.24376,-0.29522,-1.2022,0.26795,0.68111 3.7829,-0.89489,-2.1319,0.371,0.72768,-0.15046,2.357,-1.689,0.18919,-1.6665,0.043318,-1.6417,0.71461,0.065954,1.6962 -1.1451,3.0574,-0.43987,0.17605,-2.2354,-0.65517,0.69395,0.24196,-1.6698,-1.4055,-0.52012,0.14241,0.4742,0.64223,0.56104 -1.6964,-0.97981,-1.4216,0.49681,0.46876,-0.3399,0.64771,1.9104,0.63158,0.85775,-0.70193,-2.6686,-0.72863,2.3619,0.10489 3.4384,-1.4913,-1.6527,-0.74165,-0.98045,-1.2175,-0.58752,0.50963,2.144,-1.464,1.1675,0.46061,0.18853,-0.80708,-1.7963 0.92844,0.29586,-1.6033,-0.4163,0.76453,-1.4974,-0.71855,2.558,0.73763,1.0041,1.2481,-0.1553,2.0519,-0.79844,-0.46693 -1.8182,-3.9235,-0.2379,1.1499,-0.19188,-2.4341,-0.13106,-1.3311,-0.83871,0.028896,-0.15811,-0.39114,-0.48062,-0.87781,-0.70705 3.0374,-0.13896,-0.24278,-2.1419,-1.352,0.31357,-1.7854,-0.036631,0.2481,1.373,2.3498,0.043678,1.2928,0.015025,0.81917 -1.6067,-0.27117,-1.409,0.64088,-1.4024,1.0138,0.30536,1.2579,1.4714,-0.15554,0.89366,-0.66692,-1.1684,-0.62094,-0.72746 -1.9135,2.0205,-1.1719,0.18831,-1.7933,-0.26271,1.3873,0.55071,-0.32108,1.3499,-0.82469,0.66912,1.1628,0.62288,1.4546 3.6633,-1.3178,1.3832,2.3657,-0.58438,1.3632,-1.8026,-0.66625,-1.0036,-0.34664,-0.13087,-0.28889,0.25734,-0.1454,-0.045797 -3.6648,-1.7357,-0.50457,-0.87733,0.062323,-2.0371,-1.0839,-0.61205,-0.16913,-0.12598,0.52546,0.2348,-0.41798,-0.79048,-0.41198 -0.42437,1.3423,1.7682,1.9315,-1.4008,0.17624,-1.0734,-0.42527,-0.46176,-0.8825,1.826,1.171,-1.5832,0.75864,-0.13162 0.53041,-0.30719,1.1515,2.1325,-0.10334,1.2573,-2.0123,2.2264,0.88937,0.26621,1.4663,-0.1404,-0.51877,1.2432,-0.37534 4.3024,-2.3291,2.36,0.36611,2.0555,0.7428,-1.578,1.7443,-3.1351,1.4528,1.3896,-0.24394,-0.36596,1.2181,0.04066 -3.8165,0.77721,-2.0455,-0.82948,-0.15998,0.29895,0.7794,-0.14647,-0.63307,0.2987,0.82674,-0.50592,0.94257,0.42408,-1.0311 0.84411,0.53438,-0.78315,1.3211,2.0402,1.3093,0.34383,-1.2799,-0.58676,-1.2937,0.87273,0.33821,2.6184,-0.0067581,0.019007 1.3884,0.8316,-0.05966,-0.20863,-1.2297,-0.2496,-2.7613,-0.54701,0.63468,-1.0825,1.8889,0.25254,1.3478,0.083233,-0.80167 -0.58283,0.67373,0.075949,3.1097,-1.2544,-0.55611,-0.18663,-0.90348,-0.13356,-0.53718,0.92958,1.0853,-0.92841,0.4444,0.35334 1.2974,2.4167,0.79294,1.9856,-0.6287,-1.1456,-0.76296,-1.1197,-0.61742,1.2559,-0.47929,-0.032232,-0.70825,0.4038,-0.041087 -1.0114,-1.3977,-0.42704,0.71815,-1.9945,-0.013011,0.26923,-2.4979,-0.11348,0.97742,0.0045134,-0.99204,-0.78424,-1.0384,0.22768 1.6974,1.0099,-2.0814,-0.17771,-1.2591,-0.95896,-0.10682,-0.41899,0.53161,0.86328,1.0468,-0.94709,1.2706,-0.52076,0.93375 2.938,-0.93655,-0.50872,0.90476,-0.59959,0.0056136,-2.245,-0.89834,0.508,0.56099,2.0907,-1.2284,-0.32554,0.49604,0.93655 -0.93698,0.28682,3.0049,-0.77588,-2.0399,1.2018,-1.0596,0.62044,-0.80353,-0.63429,1.4716,0.46511,0.35188,-1.3663,0.64736 1.2458,0.097412,-1.5327,0.54781,-0.34902,1.1862,-1.5145,-0.15036,1.5272,1.4014,2.7557,0.15069,0.56688,0.55933,0.39044 -1.7917,0.22483,0.14117,1.4113,0.31694,0.18312,-0.034204,3.0669,-0.82474,1.0051,1.3404,-0.19663,-1.5982,0.68184,-0.55399 -0.23651,2.4693,-0.14617,0.47102,1.3345,-2.0719,-0.8866,2.2092,0.55145,-1.1795,-0.17319,-0.8827,-0.63863,0.55905,-1.0036 -1.7028,0.43089,-1.3632,1.9376,2.122,1.6109,0.65374,2.1215,-1.3982,-0.056198,0.59713,-0.62348,-0.86434,-0.029349,0.72249 5.6257,-4.302,-2.2247,-0.37813,0.024259,0.78733,1.7874,2.823,-0.05787,1.0484,-0.086554,0.3446,-0.5537,0.79471,-0.33559 -1.2642,1.9999,0.076911,-0.22768,-2.1682,-1.1039,1.1079,-0.23048,-0.70035,0.3975,-1.5602,-0.11057,0.50139,0.76865,0.91289 0.093246,1.7323,0.76153,1.631,2.2332,-1.7404,-1.3496,1.3492,0.41936,0.11356,-0.36047,-0.72617,0.097527,0.33667,-0.52588 1.1306,1.4448,-2.149,0.49899,2.6007,-2.4244,-0.27815,1.9633,0.46754,0.30228,0.24558,-2.4497,-0.029076,0.13361,-0.25872 -1.7935,0.022382,1.0488,1.3369,-1.9655,-2.0033,0.78035,0.1146,-0.46508,-0.43316,0.95181,0.96173,0.85058,-0.52159,-0.24498 -0.88057,-2.7009,-0.4203,1.5352,0.51834,1.576,-0.8475,-0.33146,0.8259,2.2135,0.14823,-0.29812,0.47378,-0.36712,-0.70019 1.965,0.57399,-2.6794,0.4258,-0.1015,-0.8367,1.3353,0.032617,1.6558,-0.9321,0.0046611,0.33561,0.97894,-0.026424,-0.95241 -0.72599,2.0989,0.53129,-0.88779,-1.3879,0.68391,-0.24418,1.7406,-2.0121,0.84929,-1.0329,-0.31332,-0.26063,0.012738,1.6728 3.2527,1.6908,-1.7441,-4.1642,-0.23679,-1.8722,1.4561,0.40359,-1.0817,-0.21312,1.2899,-0.75565,0.50094,0.25643,1.8794 -1.0317,-2.9183,3.5064,-0.40245,0.91001,-0.61246,-0.25801,0.90141,-0.24343,1.0621,0.25158,-0.69919,-0.73635,-1.4586,0.30115 1.5836,3.2653,-0.91702,-2.0425,-0.67458,-2.0802,-0.7754,-0.12921,-0.21491,-1.4508,-0.21351,-1.4729,0.65849,0.70019,0.052871 0.069704,2.7491,-1.9397,0.43078,-1.6375,0.46928,-1.5119,0.092853,-0.00026075,0.70058,-0.14169,-0.17027,0.85353,0.52608,-0.34047 1.6393,0.3466,-1.6944,1.6149,3.032,0.34003,0.4353,-0.095939,0.23435,-1.1529,0.23501,-1.0376,2.134,-0.49254,-0.49999 2.0935,-0.87814,1.8143,-0.032563,-2.9301,0.17165,-0.016916,1.2504,-0.85472,-2.2179,-1.1894,-0.096147,-0.024299,-1.7794,-0.77516 -1.4081,0.58252,0.31719,3.0213,2.2008,-2.2864,0.53545,0.45048,-1.4628,-0.84276,-0.59779,0.68095,0.18146,0.28919,0.62625 1.2083,1.6307,2.7808,-1.2353,-1.0478,-2.4019,0.82399,-0.20254,-1.7151,-1.7094,-1.1664,-0.71381,0.45365,0.50035,-0.092374 0.78758,1.8121,0.53186,-0.019653,-3.0083,-1.459,0.43972,-0.64894,-0.24777,-0.82905,-1.7889,0.2427,-0.64691,-0.0011173,-0.052635 -0.51525,0.47136,-2.6735,2.3369,-1.3767,1.5971,-0.43306,-0.1362,0.29022,-1.2238,0.30356,0.48045,-0.21507,-0.10448,-0.10648 -1.8929,-1.7779,-0.012505,-0.20614,-2.3718,0.17401,-0.32468,1.6551,0.23173,-1.3617,1.0142,-1.2279,-0.33543,-1.3031,-0.31177 2.1937,-1.515,-0.086142,1.6292,0.96273,1.1019,-0.29246,-0.79331,0.34175,-1.7918,0.83157,0.92943,1.9277,-0.52638,-0.49427 1.9405,1.5889,-0.29572,-0.65949,-1.9913,0.2934,-1.541,-1.2416,0.36188,-2.0251,-0.3181,0.070765,1.3588,-0.21246,-0.67007 0.042909,0.045526,-1.2532,2.5652,0.13683,1.6167,0.14361,1.9544,0.50248,-1.3827,0.40743,-1.1419,-0.7552,-0.17272,0.17809 -0.54239,1.0915,0.43416,1.2245,-0.46755,0.70647,0.65114,0.70467,-0.53819,1.8989,-1.5259,-0.85608,-0.24022,0.3122,1.7158 1.557,-2.5367,3.3802,1.3401,-2.4392,0.49452,0.23644,0.10421,0.033682,0.21739,-0.325,-0.069931,0.11842,-1.1244,-0.53465 -1.9909,-1.6002,-0.83395,0.16255,0.64167,-2.9071,0.084897,-0.73022,-0.93937,1.2726,0.21626,1.0293,1.3876,1.4031,-0.74446 -3.2511,-0.84178,-1.4133,-0.63724,-1.6629,-0.64869,0.61107,-0.65247,-0.41515,-1.3329,1.4674,-0.25141,0.33719,0.13316,-0.55797 -2.5299,-2.5765,-0.21771,-1.2862,-0.85953,-1.7672,-1.3312,-1.2385,-0.61242,-0.4611,0.52029,0.74929,0.96214,-0.68918,-0.53917 -1.374,-3.2872,1.3382,1.6842,-0.19527,0.094172,-0.2454,0.98163,0.95127,0.3992,1.6599,-1.3121,-1.0402,-0.89151,-0.65775 -3.018,-1.7989,-1.9531,-1.1087,-0.58692,-1.4827,-1.5554,-0.16353,-0.3534,-1.1494,0.55252,0.22608,-0.44958,-0.37686,-0.073992 -0.85089,-3.7489,-1.9454,1.5016,0.47644,-1.5696,-0.89638,0.30732,-1.4329,-0.94101,0.0087818,-0.30067,-1.4832,-0.96301,-0.36761 -2.3497,-0.17919,-3.0729,-0.23675,-0.2277,-2.4005,-0.59735,0.33354,-0.15738,0.37466,-0.40845,0.47674,0.21168,1.4156,0.081127 -1.5986,-0.034565,-3.6081,-0.75459,-0.243,-1.0471,-0.28444,-0.13984,-0.74345,-0.61695,-1.508,0.70238,-0.69489,-0.1925,0.31784 -2.4766,-2.2506,-0.4721,-0.54444,-0.76389,-1.9029,-1.7006,-1.2959,-0.07004,0.25175,1.0091,0.63913,-0.44217,-0.40824,-0.71433 -0.53902,-3.432,2.0929,-1.1115,-2.0921,-0.29718,-0.28716,1.7444,-0.80077,1.2369,-0.37772,-1.0643,0.45329,-0.91998,-1.1247 -3.58,-2.1238,-1.4649,-1.7232,-0.55281,0.035974,-1.5577,0.28189,-0.7863,-1.4501,0.64039,-0.6241,-0.5728,-0.83047,-0.23739 -1.3164,-1.8962,-0.86048,1.0777,-1.3972,-1.5345,-0.65027,-2.1448,0.61313,0.58017,0.2124,-0.20782,0.2132,-0.71155,-0.080801 -2.4669,-1.796,-0.57648,0.49182,-0.74051,-1.6223,-0.94691,-1.4457,0.66973,0.70132,0.97718,0.36138,-0.22763,-0.59206,-0.58554 -0.2095,-3.5667,0.83305,0.53097,0.35285,-0.82245,-0.98398,-2.5245,-0.82737,1.1896,-0.14009,-0.073112,-0.07688,-1.5004,-0.51476 0.45457,-3.5065,0.30336,0.63907,0.25423,0.0271,-1.0606,-2.6413,-0.87921,1.1641,-0.34658,0.34042,-0.20816,-1.3934,-0.29389 -1.1605,-2.9703,-2.1414,2.084,-0.51888,-0.49787,-0.72461,-1.6663,-0.95903,-0.73945,-0.1412,-0.045688,-0.21325,-1.6342,-0.10999 2.3097,1.5408,-0.35446,-0.74012,-1.7032,-1.7268,-0.58145,0.27601,1.1743,-2.1033,-0.58022,-0.28676,-0.031772,1.2435,-0.43321 -1.6297,0.30005,1.5947,0.66613,-0.35991,-2.1678,1.2639,1.366,0.96201,-1.5528,-0.45467,-0.50871,-0.3132,-0.18826,0.6887 1.722,1.7777,0.4762,0.18091,-2.0528,-0.7981,-1.3043,-1.0221,-0.060304,-1.704,-0.092258,-0.59303,-0.49801,1.2389,0.65226 1.1407,3.2604,0.727,0.5687,-1.5237,-1.2882,-0.69683,-0.38639,-0.34168,0.68607,-1.7859,-0.24788,0.36786,0.65496,0.46131 0.16086,1.9917,0.60729,2.2795,-1.3958,-1.2491,0.20621,-1.1308,-0.44609,0.28061,-0.50385,0.072042,-0.091008,1.313,1.2906 5.2992,-2.4336,-1.7288,-0.38046,-1.0309,1.7573,0.17081,0.75738,-0.76055,0.067239,-0.68169,-1.1439,-0.54684,0.19228,-0.51235 2.8013,-1.2642,-0.10362,1.5473,0.39006,0.90965,-1.5748,-1.4646,-0.83425,-0.90174,2.3471,-0.71335,1.1598,0.44017,0.77564 0.89126,2.9615,-0.24076,0.15881,-2.1471,-0.77138,-0.33985,-0.65355,-0.62641,0.28404,-1.5269,-0.59627,-0.19817,0.39398,0.55474 4.8584,-1.5044,-0.76919,-0.77614,-0.041999,0.65577,1.0049,-1.7128,-0.5556,-3.0009,0.18685,-1.3375,0.96586,0.20955,0.33693 4.3208,-0.73484,-0.19206,0.49481,0.28146,-1.5001,0.74236,-2.4022,0.4655,-1.2139,-0.49317,-1.8043,-0.19906,0.62206,0.52944 0.30787,2.7035,-0.011386,0.17217,-2.4301,0.33305,0.37976,-0.31345,-1.0703,-0.74146,-0.60046,0.3873,-0.14427,0.5339,0.76498 3.2326,-2.1399,1.5578,1.2851,-2.1568,2.4792,0.92951,0.66324,-0.85498,-0.17179,-0.86393,-0.2203,-1.259,-0.43819,-0.10672 -0.98436,-2.0887,0.68228,-0.21717,-0.54217,1.1452,-0.97002,1.3901,1.2932,1.1644,-0.70193,-0.78133,0.64211,-1.1084,-0.26632 -0.2725,1.9787,1.9212,0.084559,-1.8774,-1.297,1.3858,-0.74833,-1.1834,1.3931,-0.67515,0.23056,-0.39225,1.1771,0.96711 1.2813,-2.2821,0.80166,1.7004,-1.1987,-1.2146,2.7303,-1.0518,-0.28863,-1.7308,-1.5177,-0.23128,-1.1401,-1.2241,-0.94414 3.2398,-3.0707,1.2963,1.1752,-1.6384,0.83602,2.082,0.2159,-0.77585,-1.7526,-1.0928,-0.75272,-1.7673,-0.86113,-0.60631 -0.48619,-3.2076,1.5387,1.3855,-1.0842,0.22105,0.14514,-2.1267,-0.049929,0.29091,0.21743,-1.508,0.097922,-1.7219,0.052468 1.0138,-2.4445,1.4828,1.3033,-0.92988,-0.72921,1.1274,-2.6197,-1.0993,-0.446,-0.35831,-0.95741,0.020865,-1.4595,0.12317 -1.9888,1.1401,-0.51418,2.2646,-0.51083,-1.107,1.3359,0.4411,-0.41268,0.53543,0.13558,-0.62459,0.019358,0.99204,0.68112 -0.055376,-1.6816,-0.8966,1.8453,-1.3445,0.073802,2.2331,-2.0192,-0.93391,-1.6136,-1.1622,-0.095131,1.1005,-1.8595,-0.26285 -0.49444,1.552,0.22456,2.8685,0.0045374,-1.1607,0.19987,-1.1206,-0.85275,-0.052081,-0.39471,0.043323,0.65682,0.90889,0.9313 -0.15967,0.78614,0.083656,1.91,0.24839,0.25318,1.9137,-0.48989,-1.8017,1.7655,-1.205,-0.76768,1.4979,0.075086,1.4877 0.63087,-2.391,2.183,2.4308,-0.43477,1.9339,-0.14244,-0.57054,-1.0542,-1.4557,0.94108,-0.25534,1.0423,-1.7717,0.77849 -0.73434,-1.4894,0.93397,2.3187,-1.2993,-1.4001,1.295,-0.71631,0.62256,-0.19938,1.0549,-0.73552,0.45082,-0.062624,0.19096 1.7527,-1.1142,1.4856,1.3651,-2.1008,-0.085957,1.3761,-2.0158,-0.38458,-0.98558,-0.33499,-0.84181,-0.91282,-0.74891,0.90182 -1.1114,-1.2819,-0.90357,1.759,-0.39155,-0.99597,1.586,-2.678,-1.2189,-0.23519,-0.90557,-0.68533,1.8984,-0.64191,-0.22942 0.93438,-2.0746,-0.12748,-0.034103,0.83358,-0.98844,1.9694,-2.8413,-4.1941,0.18033,-0.91593,1.1299,1.4442,-0.59781,-0.99625 0.035528,-1.9434,-0.61862,0.49299,0.22691,-1.4609,0.53314,-2.8889,-1.4632,1.8468,-0.58601,1.1509,0.46998,-0.05719,-0.9841 -0.08298,-2.1899,-0.76537,1.6798,0.32013,-1.0276,1.8339,-2.2915,-1.7224,1.2352,0.080959,0.24029,1.7395,0.35671,-1.1087 -1.103,-1.4053,-1.6496,1.7439,1.3517,-2.5829,1.7228,-0.40387,-1.4136,1.3231,-0.17747,-0.69163,1.4095,0.93136,-0.51468 -1.7995,-1.5219,0.55211,1.8645,-0.40967,-0.45806,0.40483,-1.2734,1.1643,0.13192,1.6911,0.074655,-0.77901,-0.35776,-0.97274 -1.0238,-1.1238,-2.0711,1.6087,1.888,-2.6327,0.21238,-0.21285,-1.5729,0.99164,-0.16294,1.179,0.90992,0.92727,0.33055 -0.99029,-2.5474,0.81887,1.6347,0.24225,-0.39896,0.53301,-1.5512,0.26294,0.81342,1.7201,0.061145,-0.10221,-0.88787,-0.94222 1.2055,-2.0864,-0.20758,-1.3492,-0.35761,-2.5056,2.251,-2.2652,-1.8452,1.7851,-1.4963,-0.1061,-0.81348,1.0217,-0.76327 0.79533,-1.5889,2.1792,0.99456,0.41767,-2.7622,2.5788,-1.0207,-2.1446,0.82799,0.082891,0.31671,1.0581,0.032362,0.074453 0.95066,-3.3153,1.1075,0.57214,-0.058779,-2.068,1.0724,-2.6087,-1.8403,1.026,0.017548,0.36343,0.43437,-0.77202,-0.88782 0.74995,-2.1652,-0.69624,-0.93134,-0.79471,-2.846,-0.40958,-2.046,-1.9129,1.3968,-1.6263,2.0776,0.20993,-0.21528,0.40014 2.6305,2.2053,-0.48187,0.53036,0.49117,-1.722,-0.7559,-0.18217,0.11733,1.8828,-0.96868,-1.4557,0.69442,0.48541,-0.18901 3.2571,2.1098,-0.33668,-0.43608,-0.10828,-2.0718,-0.12802,0.45994,1.2711,0.063441,-1.7821,-1.2957,0.36908,0.96387,-0.65377 -0.83108,1.2551,-0.51095,2.5078,2.2181,0.65186,0.072532,2.862,-0.9534,0.82384,-0.27549,0.1698,-1.3264,0.93881,-0.1938 -0.698,0.53028,0.69485,2.8187,3.5969,-0.50501,1.7519,1.337,-1.8294,0.20622,-0.37474,0.015238,0.66417,-0.29248,0.40388 0.74043,1.2418,-0.44465,2.5205,4.1536,-1.2788,-0.28592,0.67005,-0.56317,-1.0395,0.26179,-1.4678,0.41042,0.60782,-0.078545 0.097361,0.16717,1.1693,3.1296,3.45,-0.54707,1.7129,0.62983,-1.2359,-1.2231,-0.26328,0.39233,1.4185,0.02482,0.002927 -1.1493,-1.0544,-0.51719,-0.37633,1.8548,-0.71651,-0.085729,1.7094,-0.74447,3.2417,-0.55062,0.094027,1.2741,-0.82278,-0.52997 -1.8589,0.013707,-0.22729,2.3163,2.4179,0.49179,1.5974,2.6435,-1.1374,1.4921,0.50369,-0.79622,-0.73949,-0.28437,0.045022 -0.79659,1.6992,-0.14784,0.78899,0.16775,-0.078551,-0.93903,2.7126,-0.75148,1.1029,-0.52726,-0.13093,-0.40342,0.99722,-0.27591 -1.0324,1.6182,-0.17676,0.93301,-0.54579,-0.0077359,-0.18828,2.5783,-0.63036,1.0822,-0.53582,-0.08472,-0.2723,0.97259,0.44924 -1.5434,1.6756,-0.53628,-0.095142,-0.92683,1.4175,-0.18402,1.1675,-1.3249,0.13363,-0.5578,-0.27506,-0.19385,-0.59739,0.99534 -1.4239,0.96947,-1.502,0.90062,-0.65545,0.21169,0.36233,2.7505,-0.39514,1.0074,-0.19047,-0.23014,-0.66104,0.93121,-0.010251 -2.0596,0.28539,-1.1958,-0.61027,-0.36827,-0.91771,0.92255,1.4497,-0.92873,1.803,-0.38741,-1.1734,1.1005,0.86338,0.56063 0.30721,0.22689,-2.2168,0.65654,-2.2842,0.62462,0.80482,0.79082,0.57734,-0.97809,-0.13843,0.85478,-0.3023,-0.17632,-0.6905 -1.8822,-0.34186,-2.1637,0.28278,0.39109,0.22886,0.74536,2.7679,-0.3184,1.031,0.64644,-1.0149,-1.0089,0.31852,-0.82276 -1.0397,0.44574,-1.2383,0.48031,-1.1566,0.45149,0.27824,1.7697,-0.14705,1.6807,-0.10192,-0.14575,0.58891,0.046583,0.79285 0.2871,1.7424,-2.4324,2.2384,0.39255,-0.065408,-0.2494,1.3744,-0.09755,0.52657,-0.64913,-1.1366,-0.34854,1.0197,-0.50775 -1.1146,1.6291,-0.6236,0.80351,-0.053063,0.5872,-1.079,2.8281,-1.2457,0.023738,0.26197,0.19101,-0.23949,0.72607,-0.68204 0.85802,1.751,0.28809,1.0514,0.68341,-0.95911,-0.18175,1.7349,-0.87565,1.9599,-1.5684,-1.1085,0.98259,0.09204,-0.065101 -1.7092,1.4599,-2.1342,0.15427,-1.2961,0.97008,0.010993,2.2263,-0.16559,0.34145,-0.37425,-0.13698,-0.46721,0.61033,0.12073 4.47,-1.8129,-0.96773,-1.0728,-1.923,-0.11908,-0.93856,2.2539,1.0325,-0.94078,-0.25753,0.12194,0.013911,0.96433,-1.6047 0.71848,-0.84407,2.0864,-0.083952,-3.2113,0.99798,-0.42386,1.4108,-1.4522,-0.67549,0.067746,0.19309,0.99651,-0.80345,0.14066 -0.94666,-2.5907,2.1439,-0.6158,-2.3956,0.73964,-0.98707,0.25996,-0.31998,2.1745,0.59381,-1.1315,0.10579,0.031442,-0.18189 -1.0763,1.8858,1.3825,1.0354,-1.879,-1.881,0.32066,-0.17148,0.077958,-0.25263,0.18492,0.87089,0.84664,1.081,0.75343 4.9181,-2.724,-1.788,-1.3277,-1.2899,0.056467,0.19351,2.1298,0.95422,0.40388,-0.17634,0.081741,0.44248,0.42411,-1.5801 1.1219,-4.0484,0.67826,1.1197,0.0055784,1.6676,-1.5998,-1.675,-1.422,1.5425,-0.91338,-0.90919,0.0058936,-0.78419,0.048166 2.5502,-3.7141,0.74753,1.7336,-1.5388,0.17342,1.4325,0.6139,-0.039626,-1.1768,-1.0149,0.025852,-0.76017,-1.28,-1.3825 1.8622,-1.9728,2.2636,2.1042,-1.7909,-0.14119,-0.95894,0.94053,-0.56615,0.30097,0.35797,0.10872,0.25943,-0.099174,0.3369 2.5057,-1.6368,2.5185,1.4962,-2.134,0.84528,-0.50501,1.4067,-0.7073,1.1065,-0.50039,-0.47658,0.39627,0.26336,0.12845 5.2196,-2.8122,-1.4308,0.86981,-0.42788,0.82544,-0.23719,2.4122,-0.21396,0.41003,-1.0395,-0.9278,0.22479,0.5811,-2.072 -0.1862,-1.184,2.0845,1.7717,0.71713,-2.4809,0.74154,2.1231,0.10697,-1.2753,0.57211,1.4434,1.0544,0.57474,0.14638 -0.18027,-0.4249,1.4207,0.96056,-0.67018,-0.79553,0.87136,1.9653,1.2223,-2.0084,-0.11036,0.3337,0.85457,-0.50014,0.82717 -0.61803,1.5647,0.062375,3.1,3.3588,-0.072544,0.81978,1.96,-1.5862,-0.065796,-0.14695,-0.15493,-0.24463,-0.44917,0.20072 2.0006,-0.72425,0.96778,0.085304,3.3839,-0.51599,0.49796,-0.43352,-1.459,-2.9419,0.84565,-0.51699,2.0928,0.40334,0.40329 2.0432,1.2771,-0.23325,1.8442,0.36444,-1.1085,-0.058026,-0.41071,-0.38744,1.6568,-0.79654,-0.34368,1.9504,0.70365,-0.4222 -1.0357,0.87689,-0.0896,2.5988,1.5938,0.47528,1.4067,2.3496,-0.40137,1.5526,-0.29024,0.24083,0.21247,-0.4091,-0.04849 0.74511,1.947,1.348,2.3823,1.4894,0.23796,-0.026544,0.7687,-1.0478,1.9815,-0.53355,0.81923,0.8523,0.3772,-0.85822 4.1568,-1.7034,-1.6106,-0.8806,-1.4298,-0.54354,1.0713,-0.38814,1.2919,-0.79012,0.73096,-0.48719,0.62957,0.53621,0.65922 0.3399,2.8646,0.72496,-1.4505,1.4076,0.39195,-2.0947,1.7694,-2.0456,0.94557,0.34387,-0.22945,0.97052,-0.18902,-0.9679 1.3088,2.9107,-2.1964,-2.4142,-0.24038,-1.1785,-0.20763,0.4413,-0.3053,0.51431,0.44165,-1.6639,0.73549,0.3049,1.0911 2.4644,1.5445,-1.4355,-1.3695,-0.38965,-2.5995,-0.19643,0.47331,1.3372,0.33225,-0.38527,-1.3456,-0.13903,0.19771,-0.57405 2.0205,1.7419,-2.0072,-1.2057,0.28036,-1.6564,0.42059,0.84714,0.90328,1.8295,-0.71952,-1.2934,-0.49627,-0.017534,0.75144 -0.056041,3.0273,-1.2842,-0.85114,-1.1522,0.39114,-1.8408,0.94627,-0.88994,-0.080695,-0.52584,-1.1716,0.17559,0.053955,-0.24823 1.5616,1.2586,-2.687,-2.3574,-0.85627,-1.6279,0.85514,1.5088,0.69309,0.68006,0.68107,0.066253,0.49466,-0.1608,0.70618 1.2851,2.3829,-2.478,-1.7902,-0.46777,-1.2534,-0.33582,0.66666,0.61347,1.1066,0.23929,-1.2187,-0.22162,0.1864,0.52194 1.5324,1.0955,-1.5234,-0.13251,0.34783,-1.9899,0.040211,-0.71184,0.59638,1.5574,1.2558,-0.83441,-0.25379,1.0859,1.8439 -0.52192,3.0457,-2.2904,-0.53997,-1.245,0.59776,-0.55673,0.87899,-1.306,-0.86163,-1.2324,-0.97719,0.32383,-0.45136,0.019079 -0.37212,3.1695,-2.2737,-0.49054,-1.1327,0.54334,-1.2687,0.91115,-1.1431,0.18231,-0.44554,-0.71774,0.72121,0.35585,-0.45433 2.4858,0.12005,-2.2551,-1.5675,-0.24842,-2.2008,1.6834,1.0228,1.5086,1.1188,0.57312,0.69994,-0.38972,0.22076,0.85116 0.9199,2.5705,-2.7998,-2.0599,-0.77974,0.21477,-0.63392,1.0679,0.24382,0.2416,-0.070578,-1.4949,0.37206,-0.51751,0.30585 3.5931,0.13122,0.98225,-2.0078,-1.0026,-3.0702,1.1359,1.3103,-0.53683,-2.0912,-0.85146,0.012423,0.81895,0.98636,-1.4369 5.7805,-1.3987,0.26549,-2.266,-0.046308,-2.8824,0.99392,0.7417,0.24327,-1.4562,0.10723,0.66377,0.72165,0.69941,-1.1738 3.753,-0.83343,1.7146,-2.1061,-1.561,-2.15,0.27542,1.4416,-0.43039,-2.1095,-0.58827,0.58148,0.66915,0.49298,-1.1433 4.4266,-0.14068,1.1048,-0.86924,-0.3118,-3.2396,2.2934,1.3021,-0.76156,-1.3191,-1.0051,0.62754,-0.37623,1.2941,-1.6913 4.6102,-1.2361,1.9412,1.3704,-0.31396,-2.3559,0.72897,-0.81073,-1.1928,-1.0372,-0.55589,0.18742,0.65758,0.77668,-0.52635 3.5648,-0.46648,2.9977,0.99385,-1.2624,-2.4526,0.056671,-0.7298,-1.7779,-0.49747,0.10011,0.47285,-0.25227,0.75251,-0.51911 -0.0044317,-0.68914,2.3219,-0.030624,0.17199,-2.5123,2.5805,0.030177,-2.3195,1.78,-1.3237,0.016022,1.5509,1.001,-0.14956 2.478,-2.1277,2.394,2.5893,-0.0409,-2.021,1.6699,-0.59265,-1.8644,-1.3313,-0.46196,0.52404,1.4976,-0.022546,-0.6667 1.5202,1.8175,2.2555,0.31607,-0.041625,-2.1286,1.2815,0.94228,-1.3545,1.2579,-2.4454,-0.79142,0.67515,0.61656,-0.27028 3.1368,-2.9788,3.8598,1.0855,-1.5716,0.15525,0.85723,0.47763,-2.1747,0.54535,-0.32438,0.33807,-0.62582,-0.18756,-0.75432 0.56174,-0.63393,1.9443,0.52812,-0.090153,-2.073,3.2857,0.078661,-1.3385,1.5294,-2.3881,-0.27769,0.9007,0.58149,0.17075 3.6257,-1.015,1.4328,-0.079315,-1.5011,-2.3523,1.8232,1.334,-0.1656,-1.9525,-1.1644,1.093,-0.70708,0.90579,-2.1442 0.050292,-1.6758,2.5077,-0.62412,-3.1365,-0.95853,0.76753,-0.95084,-0.52125,0.13279,-0.55675,-0.025108,-1.4937,-1.0956,0.0422 3.8321,-1.7103,1.6817,0.20659,-2.4795,-0.23758,-0.73804,0.90056,0.24795,-0.81843,-1.5173,-0.5557,-1.8788,-0.40825,-1.119 0.20916,-1.8305,2.9998,-0.96395,-2.5863,1.5261,-0.5181,-0.3749,-0.54934,0.65316,0.25691,-0.67517,-1.0228,-0.79997,-0.72696 1.9813,-0.72041,2.7993,2.0337,-1.7945,-0.023469,-0.4714,-1.0146,-0.027515,-0.25102,0.58539,0.43915,-0.19561,-0.20127,0.5666 0.35101,1.6058,1.1614,1.8659,-1.4004,-1.1506,1.6433,-0.76102,0.07467,0.87611,-2.0674,0.048414,0.77085,0.2655,0.61279 0.79078,-0.97452,2.1148,1.5012,-2.2444,-1.1905,1.7391,-1.2917,0.23738,-0.58482,-1.1361,-0.092018,-0.2809,-1.1285,-0.24243 -1.485,-3.5347,0.37758,0.83135,-0.36268,0.23518,-1.3753,-1.0684,0.31137,1.4517,-0.092051,-0.63913,-0.11545,-1.6504,-0.44629 2.145,-1.9506,2.3018,2.32,-1.5624,1.6978,-1.1262,-0.29958,-1.0446,0.23119,-0.5955,-0.8119,-0.040062,-0.81492,1.0005 0.84361,-0.4213,2.787,0.61028,-2.9816,0.54645,-0.098481,-0.69096,0.30823,0.15498,-0.065598,0.40557,-1.3475,-0.96113,0.48924 0.34004,-3.1934,0.77307,2.0625,-0.77871,2.8805,-0.081176,0.96571,-1.1425,0.643,0.36187,-1.7124,2.092,-0.48111,0.51303 -0.24219,-2.7042,-0.015616,1.8109,-1.8363,-0.21645,0.79187,-1.2222,0.43799,0.17451,-0.29331,-0.26713,0.62925,-2.0931,-0.89132 -0.31403,-0.98592,1.9601,1.5597,-2.6976,-0.11725,0.29938,-1.5007,0.019894,0.2186,0.2947,-0.25818,-0.68393,-1.1678,0.87822 2.2886,-1.713,2.9634,1.6484,-1.5073,2.0528,-0.74138,0.76884,0.021887,0.97893,-0.20919,0.042788,-0.20753,-0.61689,0.10888 1.4715,0.10863,1.3428,0.9776,-0.96734,-2.4433,2.7925,-0.18565,-0.61723,0.86252,-2.3126,-0.47546,-0.038755,0.91811,0.32851 3.7676,-0.92514,-0.12407,-0.51275,-2.2481,-0.70644,-1.1256,1.1144,0.97007,-0.62925,-0.83053,-0.080426,-1.0969,0.93304,-0.17124 4.5706,-2.0265,1.2607,0.49721,-1.7702,-0.78462,-0.53062,1.0511,-0.37993,-0.86446,-1.3261,0.030656,-1.6812,0.65011,-0.62535 0.091164,0.20339,0.69285,2.5985,-0.87677,-1.5434,1.6098,-1.3677,-0.087512,0.39182,-0.15239,-0.70205,0.43095,0.68345,1.4691 2.7508,-0.91778,-0.011711,1.2138,-2.0575,-1.1393,-0.50546,0.13449,1.3213,-0.76205,-0.97973,-0.030795,-0.53429,0.1695,-0.41649 -0.16706,0.97846,1.0072,2.2328,-0.55888,-1.1239,1.2147,0.54905,-0.89631,1.883,0.22304,0.7948,-0.10853,2.1027,0.54793 1.0493,-0.15604,-0.51072,0.5547,-1.2316,-1.9098,3.1499,0.83579,-0.28576,1.7222,-1.5778,-0.60596,-0.0084245,0.75464,0.11649 1.9858,1.0804,0.41102,-0.47317,-1.444,-2.3613,0.67773,2.0439,0.29566,-1.3003,-1.2276,1.2663,0.21838,1.3389,-1.2369 -1.8783,0.35729,-0.77644,0.10528,-0.54662,-0.59803,1.1291,0.92797,-0.59137,2.6107,-0.084225,-0.43412,0.66224,1.5892,0.58033 -0.95237,-0.10438,-2.3974,0.65124,-0.1414,-0.7605,0.35009,-0.81906,-0.58666,2.3837,-1.1524,-0.54902,0.31601,1.5206,0.60254 -1.7496,0.645,0.19308,-1.0113,-1.7925,-1.7714,1.7213,-0.5965,-0.25574,1.3825,-0.60122,-1.3304,0.41311,0.93661,0.8843 -1.6318,-1.5996,-0.75178,1.5874,-0.81236,-2.2109,1.5556,0.79073,-0.28452,-0.59755,1.0096,-0.37245,-0.84411,-0.13222,-1.2182 -2.2002,-2.9304,-0.82775,0.91439,-0.14929,-2.0479,0.42458,0.14871,0.17923,-0.70581,0.88707,-1.0711,-1.2533,-0.73793,-1.4976 -2.6725,-3.071,1.2771,-0.74488,0.84188,-1.2618,-1.4187,1.5986,-2.0218,-0.91654,-0.083046,-0.16396,-1.1848,-0.73136,-0.67122 -1.4145,-2.1936,-1.9573,1.3869,0.003902,-1.7872,0.76678,-0.47212,-1.2564,-1.0616,0.081954,-1.1636,-1.2546,-0.91619,-0.97464 0.59188,-3.3109,1.2962,2.2421,-0.69507,1.669,0.10169,0.39562,-1.3052,-0.1047,1.4354,-0.93552,1.4568,-1.2877,0.051461 -1.6765,-3.3429,-0.97703,1.1815,0.05853,-1.6195,0.26827,0.14407,-0.66482,-0.68475,0.49191,-1.561,-1.4906,-1.3859,-0.78512 -1.4606,-2.5618,-1.4121,0.5922,-0.70782,-2.6591,-1.577,-0.57965,-0.50269,0.37754,0.22215,0.95083,-0.10195,-0.68069,-0.56205 1.5883,-2.8827,0.30586,0.16209,-1.7404,-0.75522,2.0237,0.26452,1.202,-0.77258,-1.1824,0.11301,-0.0039233,0.68012,-1.685 -0.35842,-0.028066,0.55828,0.40539,-3.273,-0.70142,-0.17629,-0.24083,0.89555,-0.40737,0.17091,-0.16042,-0.21199,0.34921,1.0022 3.316,-1.553,-0.001801,0.40307,-2.2712,0.022453,-0.69242,2.255,-0.10163,0.84132,-0.67916,-0.0033767,-0.84187,0.97326,-0.59399 2.1057,-3.9188,0.83264,0.80692,-1.0431,2.2084,0.62965,-0.6839,-1.524,0.81652,-1.3929,-1.1783,-0.076117,-1.3424,0.042713 0.042233,-3.1538,-0.56869,1.6817,0.3159,3.4044,-1.0199,-0.27011,-1.6753,0.48416,0.099842,-0.67264,1.5662,-0.18106,0.28277 -0.73152,-1.7831,-0.4,1.8454,-0.43912,0.84097,0.44958,0.8051,1.297,1.0231,0.47656,-1.1829,-0.84507,0.44616,-0.69095 2.0138,-0.35421,-0.27494,1.3084,-1.4606,-0.83357,0.49529,1.5171,1.289,-1.3159,-0.88515,0.81797,0.17473,1.7311,-0.91048 0.37261,-1.193,-0.11526,0.38284,-2.6223,-0.71627,0.78192,-0.16751,1.1926,0.019271,-0.30523,0.2507,0.55167,-0.030821,-0.85745 -1.0341,-3.8159,-0.56511,1.9862,0.020553,0.64109,-1.1998,-1.4551,-1.2194,0.77135,0.9454,-0.12402,-0.53513,-1.1948,-0.58445 -0.032959,-1.8516,0.26798,1.5431,-2.0316,-1.5845,1.2743,-1.482,0.34847,0.62935,-0.53248,0.094116,0.505,-1.3588,-0.80102 -2.1912,-0.31724,-1.3591,0.080671,-1.0859,-2.5921,0.89204,-0.4751,0.18067,1.0876,0.11348,0.12002,1.3896,-0.0020214,-0.60685 -1.0256,0.33399,-1.8959,2.9452,-1.0997,-0.56492,1.391,-0.17579,-0.022916,-0.97292,0.19611,-0.2902,-0.37036,0.60857,0.11637 -1.3446,-1.0762,0.041605,1.9,-1.6409,-1.1975,1.3847,-1.6819,0.35895,0.60435,0.54421,-0.29008,0.6665,-0.61888,-0.75689 -0.33533,-3.5134,-1.3045,1.5456,-1.0285,0.54031,-1.0706,-0.87507,-0.036964,0.81206,-0.96562,-0.033162,0.4356,-1.7369,-0.69854 -0.41204,-2.6767,-2.1334,1.7329,-0.78532,-0.27245,-1.5208,-0.72784,0.32534,0.36968,-0.40753,0.90603,0.045376,-1.2672,0.0079726 -0.32158,-2.2123,-2.9361,2.111,-0.78679,0.10675,-1.2321,-0.59252,-0.53637,-0.46373,-0.28105,0.23184,-0.76721,-1.0634,0.71085 -1.477,-1.196,-0.93969,2.5013,-1.3567,-0.48334,1.0449,0.29869,0.15719,-1.5157,1.2217,-1.1234,-1.4863,-0.69785,-0.54735 -2.0758,-0.56573,-0.68899,1.4183,-1.672,-1.486,0.72182,-0.23241,0.73186,0.40469,1.6266,-0.066281,-0.063895,0.27794,-0.50138 -2.0045,-2.9924,-0.51479,-0.29627,-0.60645,0.33623,-1.8179,0.87345,0.40629,0.113,0.40834,-0.61838,0.5647,-1.2594,-1.1789 -0.079524,-1.0843,-2.7193,1.986,-0.18519,-0.37231,0.53591,-0.97411,-1.6017,-0.14259,-0.92639,1.4084,2.0398,-0.85506,0.13232 1.0056,-1.3781,3.2856,1.0427,0.43017,-1.7098,-0.53651,1.0301,-1.1522,-0.59007,2.0118,0.4527,-0.10726,0.98927,-0.62004 -0.61288,-3.1765,2.5769,0.38,0.71875,1.0247,-0.72395,2.1489,-0.27106,2.4204,0.48812,-1.0835,0.91571,1.1948,-1.0807 0.66826,-4.2057,1.2409,1.536,1.1981,1.4263,-0.42633,0.89091,-1.1075,1.4949,-0.19225,-1.0898,0.96141,-0.22419,0.39701 0.96368,-4.352,0.24624,0.19643,0.010265,-1.4009,-0.57049,-1.1476,-1.3095,1.0883,-1.4435,1.5641,0.22935,-1.0818,-0.30399 0.13241,-4.9224,0.83168,0.13745,2.8337,0.70121,-2.0642,0.64544,-1.6896,1.8759,-0.90609,0.90121,-0.10243,0.24456,0.47708 0.67398,-3.6244,2.2231,0.28318,-0.12114,-1.1476,0.99485,-1.6557,-2.2842,1.2987,0.17688,0.98111,-0.3402,-0.97037,-1.7113 1.2444,-1.5954,1.8847,1.7935,1.8204,0.62748,-0.22949,4.0089,-0.5267,0.99458,0.30072,-0.46535,0.62334,1.6409,-0.48971 -0.10397,-3.8591,-0.4068,-0.15145,2.1702,-0.83976,-1.9607,2.175,-0.65508,1.2967,-1.1743,1.0346,0.18922,-0.3453,1.2245 -1.1913,-4.8238,0.48643,0.50344,2.7966,0.026646,-1.1615,2.0315,-0.62978,0.38987,-1.2033,-1.1786,-0.27785,0.178,0.26286 0.98302,-2.8967,0.69123,0.431,1.2822,0.78741,-1.9052,0.24554,-0.27752,2.0343,-0.34571,1.9635,0.24253,-0.71434,0.79409 -0.75945,-3.5761,-0.66298,0.60375,1.759,-0.24045,-2.1732,1.915,0.0014747,1.6734,-1.6214,-0.46215,-0.15284,0.14598,2.0038 1.7044,1.2948,0.24523,1.3718,0.21005,-0.85488,2.3679,1.5468,-1.1841,1.3703,-3.3774,-0.82711,-0.38681,0.46405,0.232 0.63667,1.9823,0.28384,1.911,0.012841,-1.9314,0.67248,0.67058,-0.52435,1.3635,-1.7592,-0.74156,0.34831,1.2902,0.68588 2.1474,1.8402,0.66113,1.002,-0.44885,-1.9921,0.16844,-0.93419,-0.43283,-0.22729,-0.70393,-0.83224,-0.76742,1.7078,1.3907 -0.92844,0.53063,-0.18451,-0.59539,-0.58479,-0.50526,1.4369,1.2362,-0.38024,2.8506,-1.362,-1.1517,-0.35078,0.52767,1.2315 -1.7894,1.4586,0.52474,-0.60486,-1.6705,-1.2577,1.5753,0.66728,-1.2069,1.231,-0.62281,-0.26085,1.0221,1.0103,1.3843 1.5923,1.2767,1.8124,-0.72785,-2.3255,-2.2589,0.097775,-0.18672,-1.0106,-1.2171,-0.8929,0.1548,0.034312,1.4644,0.83126 2.2183,0.53024,1.1737,1.3095,-1.062,-2.0542,1.7145,0.0038309,0.8582,-0.58035,-1.8351,-0.18179,-0.2453,0.97453,0.19156 -2.4937,0.29194,-2.0099,-0.04343,0.12378,-0.39357,0.44556,0.79359,-0.23765,2.2296,0.047492,-0.5599,-0.074467,1.181,-0.5245 0.40959,1.2602,0.16059,1.7192,1.095,0.18037,-0.12535,-0.29088,-1.9641,-1.5442,1.5472,-0.22944,-0.44673,1.5551,0.47005 1.2269,1.5834,1.1038,0.27738,-1.423,-2.1106,1.0573,1.4285,0.14923,0.30915,-2.2333,-0.085343,0.15899,0.92225,0.014197 2.3835,1.1983,0.3314,0.61296,-0.34347,-1.5773,1.7202,2.2743,-0.19286,1.0003,-2.7297,-0.2178,-0.84076,0.57909,-0.54914 1.0906,2.2441,-0.18635,2.0482,0.98839,-1.2982,-0.23672,0.539,-1.1459,1.7138,-0.78179,-0.92881,-0.24339,1.4193,0.25865 -0.91183,1.6684,-0.7561,1.0332,-1.6089,-0.019501,0.93151,1.3772,0.11308,1.8287,-1.0259,-0.32686,-0.095725,0.84293,0.99893 -2.5957,-0.41127,1.6288,0.66235,-1.7042,-0.85493,0.3057,0.21548,0.60349,-0.90279,2.2561,0.15594,-0.75033,-0.025135,-0.36785 -1.8453,-1.5841,2.5956,-0.83731,-2.2814,-0.29844,-0.46724,0.94923,-0.27082,-0.0078195,1.5714,-0.13329,0.43923,-1.2402,-0.12787 -3.2952,-1.9435,-1.1776,-0.89964,-0.84313,-1.6144,-1.4956,-0.74042,-0.48258,-0.47636,1.0855,0.3558,-0.30871,-0.56528,-0.70092 -1.4491,-0.87027,2.2693,-0.62873,-3.1327,-0.88478,0.076742,-0.321,-0.17814,-0.31865,0.87979,-0.23106,0.62096,-0.93005,0.19577 -3.3628,0.27362,-0.45935,0.45142,-0.99931,-1.898,1.3612,0.65815,-0.15868,-0.86548,1.0998,0.25991,-0.79435,0.25185,-0.5827 -3.2617,-0.1759,-2.8092,-1.5048,0.028561,-0.84275,-0.38965,-0.28179,-1.0241,-0.63348,0.091391,0.30242,0.70317,0.76723,-0.080389 -1.3211,-3.0421,-1.943,0.48094,-0.20425,-1.6625,-2.5201,0.52201,-0.1131,0.17844,-0.090822,0.98436,-1.8634,-0.36947,0.31989 -3.7499,-0.11754,-2.705,-1.3405,0.52591,-1.4546,-0.24209,-0.37976,-0.96174,-0.32703,0.23609,0.86637,0.2157,0.55131,-0.99049 -2.7204,-1.0096,-2.3378,-0.024433,-0.46341,-2.4203,0.52801,-0.23827,0.26041,-0.23895,-0.0086224,-0.40982,-1.113,0.58058,-1.1399 -2.1331,-1.8535,0.42042,0.95443,-1.4794,-0.46344,-0.43386,0.7409,1.5558,-0.22834,1.743,-0.6412,-1.3529,-0.077746,-0.74651 -2.7696,-0.83145,-2.211,-0.1259,-0.56525,-2.2013,1.1118,-0.26572,0.16724,-0.095067,-0.31975,-0.79982,-0.9604,0.64355,-1.1268 -2.0245,-1.9824,-2.3361,0.77791,-0.40579,-2.2663,-1.5397,-0.48209,0.11779,0.29126,0.1473,1.5427,-0.8884,-0.6399,-0.67309 -3.3496,-1.9064,-0.58134,-1.6415,-0.86832,-0.17571,-1.6192,1.0494,-0.097189,-0.68009,0.5374,-1.3426,-0.40418,-1.196,-0.4685 -1.4196,-0.9653,-0.59265,-2.1976,-2.0559,-1.3125,1.1193,-1.4165,-1.4673,-0.20468,-0.34986,-0.09638,0.99727,-0.79921,-0.52273 -1.2167,-3.2369,2.2602,-2.1424,-1.4635,-0.71893,-0.43569,-0.15726,-2.3605,1.1366,0.59758,0.31612,-0.31896,-1.1185,-1.0875 -1.7834,-3.7982,0.37473,-0.70389,-0.23965,-2.343,-1.4151,-0.44127,-0.75354,0.7577,0.64607,0.30649,0.029046,-0.58126,-0.7932 -2.5913,0.36833,-0.89371,-0.4339,-0.7797,-1.6027,0.84225,0.44178,-0.39914,1.7306,0.53556,-0.31705,1.0987,0.9073,0.1201 -1.5878,0.6182,1.2407,-0.46244,-2.9197,-0.71385,0.44637,0.22756,-0.84963,-1.0246,1.0025,0.6149,1.1894,-0.39426,1.0619 -1.2559,-2.2289,1.7245,-2.1368,-2.2064,-0.21796,-0.10036,-0.20432,-1.9885,0.41249,0.99759,0.061652,0.99058,-1.0051,-0.9585 -1.4192,-2.2739,1.7541,-1.9799,-2.1762,0.37648,-0.54671,-0.024401,-1.7477,1.1951,0.94212,0.046666,0.39679,-0.83088,-0.77176 -2.543,-0.69882,0.54576,-1.2568,-1.7956,-0.77921,0.70839,-0.20141,-0.54817,-0.26612,1.4338,-0.20682,1.5648,-0.42294,-0.20666 -3.5647,-0.56998,-1.3347,-1.0923,-0.74174,-1.2412,0.41814,-0.20236,-0.12636,-0.21267,1.0231,0.13163,0.071806,0.39965,-0.90171 -1.8502,-0.24238,2.4664,-0.58695,-2.2108,0.19463,0.064412,0.025285,-1.4774,-1.231,1.4474,0.57955,0.74732,-0.94119,0.23337 -2.6667,-2.9836,0.0702,-1.5364,-0.38349,-1.5715,-1.421,0.63861,-0.4532,-0.36949,0.19825,-0.23856,-0.27527,-1.0614,-0.25258 -1.9095,-3.1209,-0.23414,-2.4536,1.1939,-1.4248,-2.5227,-0.11376,-1.2634,-0.21402,-0.75484,2.4458,0.020744,-0.71063,0.65337 -2.4364,-2.0483,-1.0363,-1.5037,0.22696,-2.0262,-1.7676,-0.402,-1.1183,0.28072,0.37344,1.5659,0.27577,-0.19674,-0.13883 -2.6492,0.67875,-1.3924,0.18786,-1.7493,-0.87555,1.4557,0.46418,0.088712,-0.4701,0.79087,0.15721,-0.15087,0.50754,-0.535 -1.9549,-0.96816,-2.3397,-0.0087062,-0.2726,-1.2243,-0.73638,-0.18334,0.80282,0.55944,0.058597,0.66161,-0.20037,0.75539,-0.79262 -0.8359,-3.077,-2.0027,0.79438,0.35005,-0.43819,-2.075,0.56807,1.0013,0.2973,-0.89284,0.41016,-1.5437,-0.25556,0.26868 -2.7303,-2.8512,-1.5136,-0.44117,0.12307,-1.2571,-1.8805,0.069688,0.16402,-0.6198,0.37877,-0.21386,-2.2703,-0.35505,-0.59237 -1.4632,-4.5588,-0.44682,-0.41382,0.82218,-0.66896,-2.5941,1.7091,0.089106,0.74087,-0.88779,-0.16926,-0.68467,-0.99009,-0.090974 -1.4551,-2.6208,-1.2545,-1.1699,-1.5191,0.53033,-1.5798,-0.82105,-1.7097,-0.28259,0.38009,0.76206,0.45711,-0.94613,-0.72529 -0.89578,-3.8803,0.92016,-1.902,-0.70624,0.56167,-2.016,-0.21635,-2.1475,0.69484,0.25738,0.84434,0.37344,-0.98075,-0.88335 -1.8705,0.56025,1.7881,-0.0085058,-0.57695,-1.5943,1.3187,-0.56225,-1.1696,1.4913,1.9697,0.26236,0.32422,0.21985,-0.32874 -0.26741,2.1631,1.1456,1.2435,0.17411,-1.4553,0.73347,1.188,-2.0023,0.030632,1.1235,0.81797,0.25352,1.5913,-0.1271 0.15658,3.2955,1.3748,0.17308,-1.0652,-1.3318,-0.38059,1.3384,-1.7317,0.89352,-0.65675,-0.35485,0.089359,-0.22815,1.0703 -1.6263,-0.58401,1.3864,0.39926,-0.47647,-0.36276,0.044733,1.6802,0.41665,-0.95177,2.584,0.31636,-1.2436,0.32334,-0.66343 -2.2905,-1.6755,2.2057,-0.043878,0.86423,-2.4457,1.361,-0.49517,-1.562,0.63418,2.0689,0.36966,-0.32236,1.3926,-0.5917 -2.0825,0.52938,2.2863,1.2417,1.0671,-1.7731,1.0895,0.42847,-1.5947,-0.15981,2.0792,0.12808,-1.1349,0.42828,-0.70613 -2.3601,-2.4918,0.84075,-0.77495,1.5789,-0.16691,0.056093,1.9826,-0.081245,-0.93057,0.31028,-1.7152,-2.0661,-0.59885,-0.90421 -0.25955,1.8214,2.3986,0.41634,-2.2354,-2.2486,1.2718,-0.58508,-0.8623,-0.10023,-0.84114,0.13892,0.1091,0.25499,0.84556 -3.2761,-0.60419,0.32168,-0.20376,1.0409,-2.2919,1.0129,-0.64871,-1.0318,0.88164,1.4752,0.1111,-0.31259,0.78479,-1.2905 -2.5892,0.096603,1.8907,-1.4439,-1.5014,-1.4318,1.2212,-1.627,-1.854,-0.12614,1.0917,-0.35845,0.87277,0.67963,0.098106 -2.2922,-3.0061,1.9879,-0.019748,1.0023,-1.4456,-0.5763,0.051547,-1.3634,-0.50967,2.0436,-0.025791,-0.68193,-1.008,-2.0474 -3.4741,-2.2389,1.4067,-1.3876,0.71076,-1.2965,-0.33502,0.46661,-0.63582,-0.35272,1.6933,0.070584,-1.3501,0.466,-1.1952 -2.6382,-1.7902,-1.6699,-0.68977,1.9355,-2.1188,-1.0266,0.35168,-0.6533,-0.70421,-0.61039,-0.056856,-1.8567,-0.54325,-0.64373 -1.039,-0.81021,-2.6191,0.33493,-1.9282,-0.56504,-1.9735,-0.87178,-0.26134,0.43874,-0.39397,2.0526,-0.42202,-0.6999,1.2145 -1.0231,-2.7173,-2.4683,1.8593,0.13041,0.90189,-2.2699,-0.1066,-0.10726,0.55072,-0.45498,0.61021,-0.74488,-0.41254,1.7094 -0.53052,-2.2634,-2.6611,1.9453,-0.37273,0.50719,-1.7177,0.18524,-1.072,-0.52064,-0.0045818,0.83469,0.1184,-1.4534,1.2844 -1.2581,-3.2563,-1.5059,1.5297,0.61615,0.031971,-2.2641,-1.2836,-0.19973,0.73184,-0.39076,1.3892,-0.37879,-1.6264,0.44937 -2.7486,-0.88527,-2.7267,-0.60343,-0.78273,-0.42715,-1.9451,-0.77465,-0.60098,-0.24948,0.2077,2.018,-0.11415,-0.58168,-0.10756 -2.4885,-1.8057,-1.0304,-0.57028,-1.4656,1.3163,-2.061,-0.75801,0.14742,1.3306,0.61744,-0.028059,-0.33227,0.070235,-0.53488 -0.73477,-2.4928,0.10827,0.545,-0.98985,1.6864,-1.4915,-0.27574,0.34794,2.539,0.12588,-0.84094,0.80281,0.69559,-0.37041 -0.98352,-0.29881,-3.1897,0.44101,-0.59244,0.76383,-0.98195,1.5836,1.1644,-0.33551,-0.4864,0.38664,-0.86675,-0.13363,0.85489 -0.97074,-3.1248,-1.131,1.6977,0.5537,1.8717,-1.7285,-0.72467,-0.26974,1.341,-0.12915,-0.33099,0.16083,-0.1666,0.67863 -1.6026,-1.8127,-3.7451,0.69711,0.28749,-0.45797,-1.5162,0.39096,-0.97389,-0.78034,-1.3436,0.64985,-2.0415,-1.323,0.93246 -0.83139,-3.5434,-1.3761,1.5927,-0.30841,1.2079,-1.2468,-0.17073,0.19864,1.1267,-0.72036,-1.3861,0.47539,-0.21332,0.32352 -1.7267,-2.4018,0.18741,1.6091,-0.3203,2.5085,-0.55908,0.57777,-0.77816,-0.85627,1.8342,-1.1986,-1.0578,-0.77195,0.017432 -0.87264,-1.3378,-2.2358,-0.35386,-1.6222,-2.453,-0.66997,-1.1449,-0.31616,0.12416,-0.97719,1.436,1.2418,-0.028769,0.11443 0.055536,-2.8207,-0.14102,0.2573,-2.6695,0.11461,-0.60999,0.41334,1.1256,0.75078,-0.88871,-0.68643,0.2409,-1.4178,-0.79992 -1.1063,-3.1309,-2.1114,1.4561,-0.90705,0.40446,-0.78764,0.3723,-0.22018,-0.50752,-0.17023,-0.7131,-1.5962,-0.97764,-0.57472 -1.466,-3.6508,-1.2699,0.35857,-0.69115,-2.1864,-1.0704,0.11034,-0.86354,-0.35376,0.60331,0.56848,-0.82733,-0.43951,-0.92147 -2.3203,-0.74428,-2.7313,-0.32244,-0.89402,-2.535,0.48017,-0.14551,-0.70228,0.1654,-0.21286,0.075865,0.016801,1.1967,-0.93692 -0.57261,-0.62907,-3.2705,1.2223,-1.1874,-1.8947,-0.2382,0.27332,-0.27944,-0.57946,-0.31643,1.9673,-0.097921,-0.68772,-0.3564 -0.72435,-2.2216,1.3049,1.96,-2.2314,-0.44084,-0.27598,0.68021,0.47438,0.21012,1.1635,-0.29414,0.10625,-0.86657,-0.28919 3.0803,-0.23133,0.32655,1.7943,-0.64361,-1.2958,-0.80544,-2.2008,0.33614,-1.6082,-0.6319,-1.6471,-0.032742,0.28678,0.69687 4.3784,-2.3286,-1.2945,0.72758,-0.57538,-0.03243,0.17394,-0.66959,1.0714,-1.6042,-0.042207,-1.3839,-0.44048,-0.54842,-0.1981 3.9997,-1.3618,-0.40123,1.3137,-0.46295,0.04356,-0.51696,-1.6165,-0.0084686,-2.154,-0.48062,-1.5885,-0.0059394,-0.13281,0.73558 3.6158,-1.4155,-0.19967,1.749,-0.24984,1.5668,-1.8378,-1.6591,-1.5329,-1.2625,0.67583,-0.35111,1.0833,-0.45207,0.39225 2.5919,1.7609,-0.61118,2.0015,0.047011,-1.275,-0.15944,-1.8746,-0.42336,0.45647,-1.0898,-2.001,0.10715,0.1658,0.59008 0.71055,0.65671,0.74318,1.927,-1.8848,-1.3991,-0.34126,-1.4301,0.14658,-0.55932,-0.33453,0.064039,-0.9805,0.28541,1.0335 5.2922,-2.118,-1.0053,-0.19406,-0.049014,-1.1029,0.49901,-0.07302,0.51581,-2.1137,-0.13327,-0.023396,-0.92152,-0.29095,-1.6659 2.559,0.87183,0.73671,1.3297,-1.6835,-1.2561,-0.49568,-1.6424,0.32208,-0.63006,-1.178,-0.12681,-0.091476,0.13896,-0.16149 2.6956,1.213,-0.39231,0.99834,-1.4676,-1.7045,0.090898,-0.47994,1.7663,-0.97613,-1.724,-0.72367,-0.66299,0.56953,-0.53947 0.22174,2.0703,-0.28834,2.1403,-1.7367,-0.54353,-0.25574,-0.89768,0.23811,-0.12473,-0.76016,0.045297,0.1589,1.1385,0.70542 1.5725,0.017702,0.3713,2.5375,-1.4045,0.048809,-0.76569,-1.6139,-0.77825,-2.3762,0.078536,-0.65074,0.0028641,-0.21604,1.1483 -2.518,-1.6857,-0.5065,-2.3294,0.15462,-2.3602,-0.91647,-1.3301,-1.984,0.093927,-0.69513,0.98984,0.89832,1.0417,1.1294 0.31868,-2.5638,4.3847,-1.8609,-1.6121,-0.050919,0.38408,-0.068683,-1.4582,1.0764,0.66221,0.19515,-0.8289,0.25237,-0.9021 1.418,-5.0757,0.93767,-1.071,-0.42956,-0.099916,-1.2981,-1.2328,-1.8463,2.1369,-2.0018,1.3198,-1.0071,-0.6162,-0.27162 -2.1486,-2.1233,1.1203,-0.3746,0.79,-2.7094,0.79573,-1.0173,-1.0878,1.5463,0.67643,0.23007,0.81212,1.4717,-0.63082 -2.1117,-3.073,0.90055,-1.4976,1.2168,-2.5045,-1.0706,-1.1218,-1.1968,0.78283,-0.18227,1.2701,0.24033,0.87153,0.33269 -0.25223,-4.1264,3.4738,0.22073,-0.32668,-1.4271,0.9593,0.22042,-1.1825,0.58093,0.63403,-0.18406,0.55749,-0.60938,-1.3425 0.87857,-3.2956,-0.32329,-1.4534,-0.82064,-3.4334,2.0371,-1.0142,-1.653,0.41733,-2.1326,0.54228,-0.52896,-0.11543,-1.2247 -1.3096,-0.91263,2.4939,-0.12481,-2.0098,-2.1119,1.1151,-0.53119,-0.67359,0.21754,1.0583,0.41357,0.9973,0.11816,-0.12061 -2.5339,-0.18764,1.0376,-0.59917,-0.97729,-1.6466,1.4557,-0.23277,-0.87263,1.5202,0.89908,0.11499,0.72545,1.144,0.37797 0.48117,-2.1758,0.0033147,0.53309,-0.29458,-2.4377,2.8473,-1.3383,-1.1765,1.7816,-1.5952,-0.074412,1.7952,0.4523,-1.2063 -0.67596,-4.3617,0.30751,-1.0214,-1.3334,-2.6079,-0.60486,-0.37543,-1.7516,0.21885,-0.58926,0.9516,0.57917,-0.84945,-0.85202 -1.1621,-3.2655,-1.313,1.4737,0.76259,-3.3924,0.80133,-0.85856,-2.2274,-0.51505,0.16029,0.034853,0.25242,0.055014,-0.83433 1.8563,-4.0949,0.060738,1.5774,-0.85587,0.12095,-0.050008,-0.90492,-0.63381,-0.21994,-1.0851,-0.38037,0.14627,-2.195,-0.62697 1.2036,-5.0104,2.3822,0.016109,-0.31815,-2.2966,1.3463,-0.16167,-2.5601,-0.17672,-0.88231,0.42321,0.41245,-0.37928,-0.93433 -0.18293,-0.66601,2.5336,0.61487,0.38261,-3.1768,1.992,-0.32879,-2.3266,0.83252,-0.20333,0.36103,1.0807,0.52738,-0.29455 -0.40231,-1.2833,1.0729,1.3798,0.087476,-2.5743,2.7929,-1.4414,-1.2098,1.3951,-0.73366,-0.55217,1.3503,0.10549,0.22058 -2.191,-1.7784,-0.65377,-0.49628,0.33176,-2.867,-0.42203,-1.1492,-0.93166,1.6075,0.13425,1.1482,1.0589,0.68377,-0.33349 -0.48899,-1.5003,-0.52433,0.084088,-1.4413,-2.545,1.9805,-1.8702,0.019574,1.2446,-1.5187,-0.3052,0.84944,-0.29158,-0.95339 1.4217,-4.4509,1.3766,1.808,-0.82802,-0.26315,0.9565,-0.6485,-1.4327,-0.6786,-0.67676,-0.55507,0.27693,-1.9744,-0.82052 -3.6159,0.55,0.65866,-0.31258,-0.26911,-2.1202,1.2284,0.55626,-1.4888,-0.33977,0.6862,0.18987,0.4246,1.0883,0.080801 -2.7789,-3.4641,-0.10872,0.29814,1.2775,-2.6647,-0.34544,-0.016025,-0.48635,-0.35871,0.82628,-0.13447,-1.4823,-0.75249,-1.0968 2.0635,-4.3339,0.39056,0.9591,0.21122,-0.20798,-0.17351,-0.025833,-2.8473,-2.3948,0.42,-0.10096,1.339,-1.4852,0.16887 -2.3049,-1.7646,-0.55564,0.53804,1.3791,-3.2044,1.5698,0.10114,-1.7218,0.88309,0.35849,-0.57043,0.69612,1.0287,-0.12159 -1.4908,0.13248,0.79008,-0.20142,-1.8041,-2.1307,2.0133,-0.072742,-0.26248,1.0752,-0.50218,-0.31308,1.5201,0.42368,0.48281 -2.327,-3.244,0.95056,-0.83366,0.26217,-2.8673,-1.1089,-1.1889,-0.98447,0.10848,0.39507,0.49834,0.15138,-0.66679,-0.75988 -1.5718,-0.26447,2.0408,0.66572,0.16046,-3.0065,1.9432,0.13385,-1.8267,1.0293,0.68976,-0.035444,0.62308,1.3356,0.46058 -0.24295,-3.2062,1.973,0.41797,-0.98791,-2.2741,0.87372,-1.7465,-0.93519,0.86595,0.27974,0.28778,0.70453,-0.63202,-0.91577 -0.77571,0.93484,2.5397,1.0444,4.1795,-1.5436,1.5712,2.0694,-2.6454,0.53362,0.67108,-0.063467,0.083609,0.2504,-0.45428 -1.9863,0.89825,0.22751,2.3863,2.6884,-1.7386,2.2227,2.0991,-1.419,-0.65204,-1.2224,-1.4075,-0.63456,0.103,0.27362 -0.13285,0.94331,1.2988,1.6369,4.771,-1.1479,0.81228,2.1511,-3.3342,0.74518,0.1487,-0.41951,0.49082,0.26696,-0.11473 -1.3501,0.75688,0.43334,1.1309,2.7409,-2.4338,1.7507,2.5484,-1.5318,-0.71362,-0.81031,-1.2647,-0.77361,0.75449,0.23883 -1.9914,1.2702,0.038321,1.5215,3.1665,-0.15068,1.0244,3.0061,-2.0975,0.28706,-0.35686,-0.79565,-1.6886,0.67725,-0.56181 0.054561,-0.18565,1.774,1.0234,3.7423,-2.4821,0.82267,2.7089,-1.8591,-1.3004,-0.1921,-0.67742,-0.028273,0.54373,0.0052303 -1.0466,-3.0655,-1.2584,1.2256,-0.3332,-2.084,-0.84285,-0.846,-0.45558,0.43876,0.56786,-0.028121,-0.20163,-0.96079,-0.92429 -1.9486,-2.8191,1.4003,-0.99123,-0.97556,0.17122,-1.5402,0.3297,0.21117,1.0682,1.1522,-0.70296,0.33409,-1.028,-1.1617 -1.6918,-3.7482,-0.78055,0.012737,0.51246,-0.20892,-3.247,1.7158,0.46618,1.0018,-0.96367,-0.65076,-1.0643,0.045199,1.3613 -1.6487,-2.7192,0.14612,1.0272,0.23707,-0.61446,-0.75224,-1.4145,0.42909,1.1463,1.6255,-0.061276,-0.75353,-0.9446,-1.1518 -0.20567,-3.2091,-0.085295,-2.4961e-05,-1.3736,-0.75071,-1.6374,-1.4376,0.024193,1.6952,-0.13686,0.86403,0.16851,-0.93965,-0.002924 -0.63781,-3.4552,-1.0966,-0.28689,1.519,-0.018068,-2.3229,3.0121,-0.10954,0.91912,-0.99147,0.42966,-0.46805,0.96521,1.5803 1.4348,-3.8293,0.28738,0.83263,-0.9484,1.3479,-0.12865,-1.4187,-0.7218,1.2608,-1.1414,-0.93188,0.06632,-1.7753,-0.75353 -0.051677,-3.3751,-0.48304,2.62,0.33219,1.0711,-0.28447,1.9632,-0.31692,0.39766,0.32542,-2.1927,0.21809,-0.45355,0.47251 0.36929,-3.5478,0.7294,1.4264,1.4297,3.4087,0.75377,1.7849,-1.0788,1.1159,0.38071,-1.3216,1.2369,-0.139,-1.0277 1.5947,-1.81,0.99341,2.1436,0.58483,1.8077,-0.19291,0.16556,-0.95073,-1.6083,0.11523,0.82279,1.0782,-2.2488,-0.21957 -1.2213,-3.2923,-1.0503,0.57631,-0.047643,-1.9464,-1.5795,0.018853,-0.23969,0.95551,0.15532,0.75199,-0.052277,-1.1292,-0.55957 -0.7969,-3.3185,0.9881,0.26376,-0.6288,-0.11011,-1.0993,-1.0274,0.446,1.5768,0.58165,-0.094258,0.11618,-1.3595,-1.6349 1.7798,-4.0507,-0.36112,0.44786,-0.76227,2.1411,0.25559,-0.069277,-0.26138,1.3754,-1.4953,-1.6433,0.43074,-0.30729,-0.87729 0.34223,-3.0678,0.79577,-1.4162,-1.8437,1.1314,-1.0183,0.57359,0.27025,2.2481,-1.6015,-0.61278,0.30176,0.25615,-0.67664 -1.4012,-1.7117,-1.8101,-1.9249,0.66847,0.064885,-0.86524,2.4176,-1.9088,-0.72436,-1.6781,-1.1812,1.0637,0.85475,1.2433 -0.4504,-3.9877,0.45334,-0.21141,-0.89596,1.0616,-1.4032,1.0313,0.4633,1.8933,-1.2192,-0.45991,0.95356,-0.15525,-1.2292 -1.6713,-2.8299,-0.25747,0.28427,-0.81502,0.23678,-0.99912,2.1691,1.1685,0.54138,0.16663,-1.8005,-1.2981,-0.94023,-0.99837 -0.47284,-3.2877,-2.108,1.3292,2.2079,0.44227,-1.6641,1.2884,-1.1904,-0.75707,-1.2679,-0.38573,-1.8201,-0.93142,1.2247 -0.91215,-3.5209,-1.1048,-0.065952,-0.32591,-0.27284,-2.5199,0.34309,0.086461,0.75763,-0.88781,1.9289,0.49672,-1.7907,-0.086359 -2.1926,-3.48,-0.66342,-0.90231,0.007932,-0.62068,-2.5222,0.85977,0.42382,0.15104,-0.708,0.50098,-0.89047,-1.2506,0.01332 -0.78736,-2.5568,-1.3799,-1.3664,-1.893,0.4679,-2.3866,-0.41373,-0.64292,0.69785,-1.6637,1.0587,0.39548,-1.239,0.75524 -1.5512,-3.4013,-1.8225,0.62517,1.0427,0.53594,-2.0697,0.74971,0.47056,-0.26458,-0.95302,-1.0127,-2.5193,-0.30418,0.59329 -1.5131,-3.392,0.59839,0.062949,0.50197,0.10779,-1.045,1.6664,1.1928,1.2524,-1.0858,-1.39,-0.47447,-1.0954,-0.30154 -1.1262,-3.8649,-1.9469,1.3063,1.5466,0.10135,-2.0843,1.1952,-1.6575,-1.3878,-0.3346,-0.48668,-1.0644,-1.8787,0.92966 -0.033199,-0.28103,2.3035,2.2626,-0.654,-1.5458,-0.65712,0.63095,1.3154,-1.1248,1.0361,0.50218,0.32738,0.58274,0.36758 1.9878,-0.18997,1.676,-0.30253,-2.8617,-1.5987,1.0117,-0.21991,0.35432,-1.2225,-0.88131,-0.02258,-0.96074,0.23476,-0.83187 3.4585,-1.2888,2.8151,0.56425,-2.3552,0.078556,-0.16706,0.21539,-0.42962,-0.26644,-0.49567,-0.18536,-1.5591,0.45126,0.34697 -0.62247,0.26393,-0.020203,-0.00072108,-2.3267,-1.3848,1.7647,-0.96971,-0.0042555,1.1124,-1.2969,0.38472,0.79007,-0.13664,-0.0068808 -1.5108,-1.3695,1.6355,-1.2224,-2.0529,-0.9729,0.34252,-2.3708,-0.27059,0.79815,0.13373,0.66527,-0.099153,-0.81043,-0.63087 0.95523,-1.4585,1.5289,-1.1915,-2.0476,-1.4251,0.86874,-1.8065,-0.79403,0.2753,-0.27951,-0.0324,-0.25797,0.23942,-1.3111 -0.3987,-2.8474,0.91455,1.3251,-1.588,0.89068,-0.26171,-0.39425,0.77458,0.93106,0.6207,-1.1351,0.33059,-1.0945,0.13638 2.4491,0.045451,1.9417,-0.4581,-2.5575,-0.8694,-1.5773,-0.36649,0.3614,-0.74034,-0.023512,0.30984,0.4445,-0.010365,-0.073494 2.3294,0.39532,2.9061,-1.2785,-2.5611,1.4261,-1.3877,0.97677,0.10602,-0.61159,-0.52311,0.97304,-1.295,-0.18205,-0.55512 -0.80391,0.039046,-2.747,-2.4369,-1.1091,-0.18543,1.9223,0.056228,-1.1221,0.96891,-1.7711,-0.44437,0.50784,0.47477,0.25335 4.1508,-2.3674,0.40119,1.213,-1.4815,1.6906,-0.1854,1.7052,-0.25737,0.050413,-1.5863,-0.29157,-1.037,0.11393,-1.1183 1.3432,-0.04667,1.0325,1.937,1.3717,-0.11753,2.5043,-1.4828,-2.8434,0.67413,-0.93114,-0.26122,1.9933,0.044119,-0.66361 1.8554,2.355,1.1484,1.8695,0.66272,-1.4026,1.1702,-0.58579,-2.02,0.70182,-1.5258,-0.82925,0.21259,0.63187,0.93724 -0.92504,1.5557,2.0591,-0.70548,-0.42608,-2.03,2.1244,0.62468,-2.5791,1.6522,-0.77646,-0.40719,0.31759,1.8,0.86936 1.1654,1.7636,2.3122,0.52347,2.3388,-2.8413,0.46842,0.40627,-1.5311,0.71776,0.12446,-0.43859,0.72302,1.2928,0.0034394 3.0993,2.089,1.3281,-1.0599,-0.083169,-3.4758,-0.34714,-0.51123,-0.54677,-0.3934,-0.52168,-0.99788,0.86973,1.046,0.12575 3.6954,0.66276,0.010133,-2.8493,-0.27555,-3.4341,0.41253,0.091417,-0.57837,-0.89913,0.74064,-0.91239,0.88995,1.3,0.51219 2.5289,1.1635,2.554,0.85453,1.1662,-2.6845,1.331,-0.12638,-0.42009,-0.48457,-1.3606,-0.40095,0.47469,0.74974,0.022969 -0.42641,4.2651,1.01,-1.0967,0.59527,0.27447,0.24791,0.68121,-2.4804,0.013586,-2.1158,-1.2904,-0.70435,-0.21622,0.065641 2.031,2.0327,0.42752,-1.1506,3.0168,-1.982,-0.85517,0.88123,-2.5751,1.4152,1.5695,-1.8245,-1.619,-0.76201,1.2411 5.6633,-1.721,0.096139,-1.8584,1.4688,-2.8452,2.0328,0.41138,-0.58262,-0.23451,0.43351,-0.020066,-0.36164,0.43757,1.2508 3.8528,1.6552,0.0042392,-1.0331,-0.68793,-2.4379,1.1363,-0.25496,-0.14195,-0.8291,-1.4926,-0.27471,-0.24346,0.99786,-1.0883 3.8888,0.6416,-0.046688,1.4774,0.88292,-1.3417,0.36151,-1.7827,-0.78883,-0.49279,-0.024888,-1.1158,1.5194,0.1717,0.0065281 -0.90922,2.1878,0.28143,1.041,-1.0826,-1.4393,-0.24075,1.5582,-0.40911,-1.4053,0.21892,0.035658,1.027,0.83594,-0.094055 2.0012,2.1862,0.20072,-0.06215,0.044542,-1.574,-1.315,-0.93313,0.3475,0.40785,0.50718,-0.26001,1.6733,0.84052,-0.70165 1.538,0.48489,-0.14135,2.3236,-0.79842,-0.69841,-1.2239,-1.0469,0.8485,-1.0899,0.32394,-0.29404,1.3373,0.56077,-0.028157 0.56137,2.3845,0.66838,0.14099,-0.89589,-0.80953,-0.90534,-0.025238,-0.39498,-0.69907,0.033161,0.60205,2.1276,0.7276,-0.20737 1.356,0.83863,1.0849,-0.52115,-2.7668,0.64854,-0.62104,-0.39413,-0.87806,-2.52,-0.17904,0.57904,0.79633,-0.058823,0.64903 1.3328,1.9213,-0.029557,-0.58165,-0.57593,-0.53686,-1.7226,-0.88432,0.22101,-1.6104,0.75649,0.31843,2.206,0.37768,-0.66327 0.16309,1.6598,-0.87939,2.5423,-0.68666,-0.15607,0.5557,0.022793,0.054661,0.70047,-1.8406,-0.37216,1.3032,0.063125,0.43827 0.49208,1.7894,0.4653,1.6242,-0.83751,-1.2357,-0.24641,-0.048738,-0.29696,-0.04134,0.3641,0.56457,1.4134,0.99211,-0.089703 3.251,-0.055232,0.093997,0.10301,-1.4627,-0.10198,-0.80481,-1.3982,0.95526,-0.9409,0.1985,-0.12691,0.60197,0.58362,-0.44237 2.2425,-0.28205,0.54098,0.62985,-1.8034,-0.48479,-1.2249,-0.43391,0.92641,-1.5436,0.2022,0.056506,1.7731,0.97536,0.55251 0.87452,-0.094675,2.6282,0.70677,-1.9377,-1.9249,1.3185,-0.49217,-0.83909,0.69245,0.04688,1.444,0.43379,0.11292,-0.36614 0.17272,-0.29906,2.5153,2.16,-0.94823,-1.7276,0.95912,-1.1397,-1.3433,0.6353,1.154,1.1122,-0.4029,-0.1444,0.32167 -0.28637,-0.37752,2.9654,1.8829,-0.57371,-1.856,1.2322,-0.52751,-0.52709,0.41022,0.62824,1.643,0.51382,-0.061308,-0.66179 1.5634,1.0493,1.8513,-0.78036,-2.8182,-2.3417,1.3055,0.29158,-0.89317,-1.4185,-0.85637,-0.182,-1.111,1.2175,0.25724 -1.0267,-2.347,3.457,-0.99073,-1.4127,-0.98455,0.12192,-0.050141,-1.4703,0.79203,1.3571,0.85486,0.068132,-0.70878,-1.1339 2.7515,-1.536,2.242,1.9133,-2.1771,0.24286,-0.44247,0.23619,0.19563,-0.83772,-0.93743,0.26895,-0.1171,-0.90034,-0.23975 1.8313,1.906,1.7575,-1.5197,-2.3562,-1.1664,0.35925,-0.06111,-2.5356,-2.3661,-0.069571,-0.1309,-0.38488,1.1171,0.22428 0.52915,0.39328,3.177,-0.42144,-2.0539,-1.2046,1.2266,-0.42493,-0.85698,-0.1678,0.39646,1.2836,-0.47122,-0.28728,-0.089738 1.9826,-0.73249,1.2989,1.8554,-2.6493,-0.068728,0.79184,-0.63699,0.43589,-0.47229,-0.8994,0.07577,-1.1364,-0.93772,-0.049524 -0.91088,-0.94312,0.48977,-0.24703,-1.7316,-2.1425,1.8246,-2.28,-0.58421,1.4437,-0.57467,-0.65863,0.21616,-0.17079,-0.29881 0.37832,-1.2496,3.5004,-0.82242,-2.4589,-1.4367,0.17703,-0.96675,-0.99677,-0.26423,-0.057719,0.18593,-0.54595,-0.2486,-0.85552 1.3044,-1.4318,3.2346,1.5453,-1.285,-1.5241,0.42599,-0.95305,-1.1643,0.43814,0.59003,0.94986,-0.17526,-0.213,-0.56751 0.45822,-0.19497,0.57702,1.1285,-1.5051,-1.8802,2.6292,-0.9272,-0.42961,1.4945,-1.1476,0.27206,0.69339,-0.053856,-0.35082 1.3818,-4.333,1.396,1.2672,-0.77039,2.3199,0.82135,-0.76589,-1.5918,0.87585,-0.21437,-1.3324,0.80664,-1.1585,-0.70458 0.457,-2.9247,-1.1462,0.94143,-1.4528,-0.61309,0.96146,-2.022,0.17314,-0.10089,-1.4509,-0.14392,-0.23007,-1.5946,-1.488 1.88,-4.3051,-0.38709,-0.80142,-1.1672,1.3877,-0.80341,-0.65876,-0.70445,1.8478,-2.2844,0.27397,-1.6231,-0.023715,-0.61884 0.11159,1.6323,2.0966,1.3284,-1.7245,-1.595,-0.63858,-0.78499,-0.097234,-0.65358,0.4182,0.87851,-0.32479,1.0818,1.0942 1.2658,-0.40579,1.4579,2.2039,-1.3947,-1.3273,1.7567,-2.1347,-0.98771,-0.68981,-0.56831,-0.75242,-0.25936,-0.13109,1.3043 -0.072466,-0.054014,0.75267,1.7127,-0.024869,-1.7173,2.9131,-1.4249,-1.4617,1.6705,-1.1279,-0.62068,1.1409,0.17942,0.68225 -0.43475,-2.5898,2.0024,1.9992,-1.2258,-1.4093,0.72552,-1.2497,0.54219,-0.12251,0.79111,-0.34909,0.73459,-0.91903,-0.46219 -0.52084,-2.0977,2.3016,1.6813,-1.7272,-0.86107,-0.1217,-0.60755,0.23655,0.46862,1.59,-0.30442,-0.48036,-0.77948,-0.053051 -1.0229,-3.8459,0.55952,1.4218,0.13232,0.69877,-1.7281,-1.6115,-0.32655,0.57407,0.48094,-0.74796,-0.20843,-1.0394,-0.0021732 -0.2778,-2.344,0.83073,0.032511,-2.3712,-0.37643,-0.40211,-2.5709,0.030938,1.2744,-0.36793,-1.3156,-1.0881,-1.0233,-0.04989 -2.1191,-2.8017,-0.25528,-0.060554,-0.70069,-0.69528,-1.7903,-0.87803,0.8491,0.67911,0.59955,-0.11775,-0.41264,-0.68729,-0.79777 -1.2304,-4.1862,0.79033,1.0533,-0.35542,0.11714,-0.94702,1.5649,0.0038949,0.91076,1.5207,-1.5839,-0.65474,-0.30453,-1.1417 -0.20986,-2.177,1.598,0.29824,-0.17773,1.4734,-0.36748,2.6216,1.1213,2.0497,1.0091,-1.0093,1.1336,0.78679,-0.96696 -1.9017,-3.1441,-0.75176,-0.050683,-0.32235,-0.87508,-2.2751,0.37802,0.43433,0.58218,0.00047035,-0.1854,-0.25809,-1.1176,-0.4246 -0.95115,-3.275,1.069,-0.46856,-1.0634,0.75776,-1.436,0.42543,0.54337,1.8645,0.12657,-0.82154,0.97392,-0.27852,-0.59358 -1.8017,-3.2249,0.67887,-0.25152,0.77149,0.55763,-1.1271,1.7035,0.96532,1.2181,0.50883,-1.6448,-0.36253,1.0887,-0.39284 -0.098662,-3.1802,1.5818,0.25325,-0.26303,1.2934,-1.0959,1.1325,0.48228,2.1043,0.89755,-1.2923,0.92771,0.21867,-0.7864 -1.0391,-2.4935,0.46429,-0.2863,-0.99699,1.48,-1.7314,1.1071,0.8766,1.5778,0.030175,-0.70246,1.0176,-0.058929,-0.1474 -1.1862,-3.3189,0.91085,-0.22479,-1.1573,0.66381,-1.3507,1.7681,0.44132,1.8965,0.57542,-1.2042,0.65608,0.30129,-0.84637 -1.6925,-3.3917,-1.5698,1.6237,-0.47552,-0.26739,-1.5263,-0.11012,0.38281,0.27323,0.28032,-0.76354,-1.0361,-0.83855,-0.68882 -1.4449,-4.1269,0.071414,1.0615,2.4431,1.7254,-0.19859,1.2674,-1.1643,-0.69577,-0.092384,-2.3393,0.34103,-0.33624,0.49516 0.47732,-3.0498,-1.6077,2.1243,0.42663,0.48528,-1.3653,0.50372,0.0056823,0.69885,-0.63844,0.52605,0.66524,-0.95798,0.98493 -0.21024,-2.785,0.85807,-2.1636,-2.5291,0.0079605,-0.45796,-1.125,-0.090255,1.4425,-0.85121,-0.26481,-0.7087,-1.02,-0.42949 -1.084,-0.97049,1.0511,-0.56709,-0.51104,-1.8507,1.2668,-1.9388,-0.85596,2.4748,-0.26308,0.14168,0.62342,0.84471,0.13803 1.0532,-3.6332,-1.4467,0.46245,-0.90845,-0.18792,1.2673,-0.91447,-0.59355,0.26505,-1.8865,-0.17077,-1.2435,-1.8251,-1.8558 2.8672,0.85526,1.1765,0.022916,-0.50001,-2.8087,2.5684,0.76529,-0.70242,-0.14055,-3.115,-0.10766,-0.015518,1.2151,-1.1473 2.8683,0.98882,1.6425,0.45288,0.57608,-2.7855,2.6211,0.61674,-2.1934,0.65292,-2.8355,-0.95214,0.097424,0.92493,-0.1347 1.824,1.3981,2.1466,1.3783,1.9339,-1.6395,1.357,-0.015636,-2.1412,1.2616,-2.0679,-0.51326,0.79875,0.84018,0.026327 2.7333,1.2706,0.99991,1.5814,1.1227,-2.4917,1.4961,-1.0752,-2.3894,0.13268,-1.4203,-0.95128,0.34334,0.89171,0.77578 3.5179,0.72163,0.48827,1.291,1.4927,-1.637,3.0529,0.45283,-2.2922,-0.4741,-2.8964,-0.78154,0.21749,0.48232,-0.59388 0.9972,0.12713,2.668,0.95647,0.73533,-1.9283,2.5905,-0.1399,-2.4877,1.5069,-1.5535,0.076985,0.30468,1.0047,0.94465 -0.87769,0.39457,0.77813,0.73589,1.8884,-0.86521,2.3341,-0.63241,-3.3445,1.6954,0.01222,-0.86642,0.83053,0.89557,1.2507 1.6862,0.81396,0.56158,0.87292,0.21079,-1.1596,3.2509,2.2082,-0.63186,0.57222,-3.5899,0.067869,0.13423,0.59515,-1.3404 0.89794,0.35702,1.8246,-0.12696,1.2859,-2.3697,3.2887,0.17904,-3.3373,1.193,-1.7634,-1.0973,-0.43496,1.4204,1.4451 0.68318,-0.37408,1.6337,1.5288,-0.87237,-1.968,2.6127,-2.0828,-1.5753,0.78878,-0.8593,-0.34499,-0.38599,0.18424,1.0319 -1.793,-2.1178,-2.6548,-0.89918,-0.21942,-1.8466,-1.8903,0.80553,-0.85732,-1.1439,-0.70262,1.2997,-1.0409,-0.77599,0.46148 -0.37896,-3.3345,-1.4909,-0.2115,0.91788,-0.67428,-2.0768,2.6405,-0.6858,0.09365,-0.8867,0.73108,-1.0512,-0.78224,0.8557 -0.65464,-3.2355,-1.5682,-0.66557,1.1885,-0.33402,-2.1578,2.8898,-0.56932,0.074744,-1.479,0.51331,-0.65675,0.33172,1.624 -3.769,-1.1569,-2.1846,-0.87188,0.070141,-1.2087,-0.70944,-0.69769,-0.75921,-1.2913,0.50622,0.17594,-0.33343,-0.59755,-0.77016 -2.9705,-0.74181,-2.7704,-0.88258,0.69737,-1.5108,-1.8469,0.10086,-0.21268,-1.3149,-0.20018,1.8343,-0.99129,-0.32141,0.58986 -1.7882,-4.0134,0.83424,-1.2066,1.053,0.37851,-2.9467,0.86481,-0.8207,0.89907,0.31401,-0.0035362,-1.1865,-0.080291,-0.48156 -1.2944,-3.6141,-1.0884,-0.64635,-0.65568,-0.54926,-3.1163,0.793,-0.99721,0.045045,-0.57977,0.72661,0.23391,-0.92023,0.89755 -0.48029,-2.2038,-2.2262,-0.6837,0.64533,-1.551,-1.7279,1.993,-1.6291,-0.33268,-1.2611,0.73394,-1.2382,-1.4907,1.1372 2.8357,-1.7845,-2.3337,-2.462,-2.3052,-0.10014,0.23203,1.7782,1.7022,-0.20737,0.92767,0.86196,0.23748,-0.16286,0.39087 4.5977,-2.4013,-1.2368,0.43034,-0.54613,-0.67549,-0.13896,-0.41672,1.2208,-0.56944,0.06562,-1.3826,-0.82729,-0.44521,-0.30208 2.7707,0.55763,-0.63488,1.1201,-1.5971,-1.6213,-0.29935,-0.5366,1.5044,-0.49152,-1.2593,-0.98323,-0.32441,0.76415,-0.32393 0.30434,2.8976,-0.46665,-0.15302,-2.13,-1.5031,-0.9665,-0.42007,-0.20312,-0.83738,-0.81175,-0.16684,1.0658,1.0555,0.089385 0.16904,1.8909,0.82267,1.1431,-2.5513,-1.8631,-0.15521,-0.54048,-0.062702,0.26063,-0.89144,0.4009,-0.18847,1.0184,0.92801 2.9912,0.29862,-0.33777,-0.32944,-2.1644,-1.6813,-1.0821,-1.0459,1.4451,-1.1168,-0.42137,-0.81071,-1.0174,0.040951,-0.60057 2.3855,-0.11974,0.079202,1.1982,-2.1956,-1.5885,-0.20217,-0.23188,1.473,-1.5226,-1.6522,0.34664,-1.2392,-0.61369,-1.3667 0.94219,2.4483,-1.5238,1.0452,-1.4329,-0.69984,-0.76224,-0.20431,0.94266,0.78117,-1.6,-0.88599,0.63976,0.64049,-0.12119 2.0022,1.0248,-1.2652,-0.23109,-2.3454,-1.0532,-0.745,0.32888,1.6595,-2.1005,-0.49781,0.15856,0.053578,0.73477,-1.1049 3.4903,-1.4075,-1.7822,-0.46613,-0.26264,-2.2763,1.3204,0.090332,2.4141,-1.2013,1.2648,0.73484,0.18477,0.85224,-0.47357 4.2447,-1.1882,-0.45766,-1.2762,-0.50111,-2.1718,0.011642,-0.05856,1.5178,-1.649,0.64218,-0.75126,-0.85319,0.60486,0.22299 2.2939,1.5312,0.064033,0.20966,-1.2029,-2.4339,-0.53183,-1.7882,0.67624,-0.73263,-0.82067,-1.1819,-0.46585,0.74012,0.14654 3.9279,-2.4083,0.49548,1.1998,-1.0956,1.179,-0.57383,0.81203,0.10556,-2.4853,-1.4101,-0.51423,-0.71189,-0.58307,-0.40566 2.9143,-0.63293,1.465,0.044217,-2.3742,-1.3334,-0.73305,0.046632,0.079992,-2.431,-0.67899,-0.64148,-1.6262,0.53538,0.40309 4.8187,-2.0355,-0.75939,0.11311,-0.7772,-1.0715,-0.037798,-0.23928,1.5018,-1.5939,0.060853,-1.0784,-0.9315,-0.25354,-0.81939 4.0162,-3.1002,-2.124,0.12226,-0.38865,1.7218,0.75201,-0.46223,0.071433,-2.0513,0.31095,-0.57397,0.32905,-1.2256,0.3029 0.75818,0.65279,0.82834,2.0461,-1.7721,-0.2904,-1.4831,-1.8088,-0.1493,-0.6708,0.34125,0.2243,-0.63814,-0.07684,0.44554 2.7311,-1.6695,0.94608,1.7317,-1.7538,0.51702,-0.38622,0.64328,0.3671,-1.4948,-1.8671,-0.38084,-2.4726,-0.91914,0.1695 3.2197,-0.56653,-0.64567,-1.2755,0.50803,-2.3769,0.97101,0.97399,1.9512,-0.99783,0.54096,0.32074,0.26525,0.86662,-0.3655 2.6954,-0.3053,0.85518,-2.0555,-2.7134,0.15927,-0.8586,2.4491,-0.62981,-2.692,-0.47041,-0.24937,-1.0018,0.17864,-0.40605 -0.08248,-2.5142,1.5324,-0.70624,-3.2137,0.19893,1.1516,1.8233,0.88906,-0.3576,-0.93489,-0.018561,-2.0199,-0.70327,-0.8308 0.60146,-2.8749,1.5777,-2.395,-2.689,-0.99898,1.5275,1.0783,-1.5853,0.42463,-0.7297,-0.52731,-0.59462,-0.60519,-0.60304 2.609,-1.7688,3.1069,1.1364,-1.2466,1.1886,-0.3433,1.3541,-1.5186,2.1336,-0.59519,-0.50637,-0.31829,0.83106,-0.059951 -2.1445,-4.2351,1.618,-0.61054,0.2584,0.20238,-1.9729,-0.19623,-0.2068,1.7507,0.14795,-0.32704,-0.70247,-0.53241,-0.83334 -1.476,-0.8903,-1.537,-1.9136,-0.73199,-2.2959,-0.85316,-1.9638,-0.65268,0.047582,-1.5032,1.058,0.057238,-0.36471,1.1363 -1.3565,-1.8131,-0.088846,-1.0676,-1.3089,-1.9797,-0.412,-2.5594,-0.56875,1.2955,-0.84772,0.75702,-0.11794,-0.9382,-0.030077 0.42361,-3.0493,2.8494,0.32512,-1.7836,-1.182,1.3082,-0.28773,-0.91846,0.44225,-0.04271,-0.53914,0.11559,-0.16197,0.17058 -0.42145,0.058747,2.7658,0.8481,-2.5457,-1.388,-1.0492,-0.056928,-0.70445,-0.65093,0.31455,0.95583,-0.042126,-0.91936,-0.04182 5.1837,-1.7174,1.3572,1.4961,-0.41125,1.7927,-0.91779,1.1649,-2.0224,1.6273,-1.4465,-0.29526,0.41808,1.0973,-0.7211 -0.9637,-1.8007,2.2682,-1.6395,-1.9126,2.0716,-0.34467,0.79345,-2.1015,1.4033,0.96292,-1.0078,0.72687,0.52127,-0.0099817 -0.8666,-2.606,-0.99905,0.95164,-1.736,0.97468,-1.2833,1.7555,0.24001,0.97699,0.32002,-0.97828,0.041464,0.32989,-0.30869 2.6287,-1.5125,0.67847,-1.5401,-2.6207,0.7105,0.66924,3.9227,-1.4631,-0.20608,-0.93839,-0.51836,0.59104,-0.033868,-1.8341 1.039,-0.73061,0.85286,-0.24105,-2.8242,-0.41373,0.66571,1.1053,1.3997,-0.71086,-0.82072,-0.5629,-0.45486,-0.043524,-0.51483 0.15723,-1.8865,0.31075,-0.74854,-2.731,1.6535,-0.32899,-0.48252,-0.40861,-0.72725,-0.49549,-1.28,1.2128,-1.4413,-0.87634 -1.7037,-0.72971,-2.4298,-0.031804,-1.3601,-1.8628,-1.0269,-1.489,-1.1559,-0.63857,-0.52683,1.4444,0.84757,0.25935,1.3247 -2.0036,-1.3977,-2.9099,-0.42443,-0.68992,0.51064,-1.3697,0.64325,-0.77839,-1.2202,-0.8769,-1.1873,-0.82295,-1.6636,0.9733 -0.86,-1.8429,-1.4731,-0.76203,-1.321,-1.8897,-0.90097,-1.7505,-0.95913,0.20676,-1.0012,2.0954,0.18264,-0.33312,0.54331 -1.3752,-2.0317,1.686,0.63848,-1.8397,-0.36498,-0.66723,1.2267,0.14928,0.029663,1.5918,-0.88875,0.013159,-0.25212,-0.52859 -2.3483,-2.0875,-2.2844,0.52214,0.58332,-2.487,-0.88803,-0.055369,-0.39764,-0.68021,-0.31706,0.66847,-1.4302,-0.60818,-0.92894 -2.083,-3.2165,-1.6611,0.00693,1.0013,-2.3149,-0.98184,0.50104,-0.92976,-0.51778,0.36782,1.1921,-1.443,-0.32749,-1.1739 -1.5975,-2.354,-2.6127,0.46554,0.4819,-1.1911,-1.4679,0.48182,-0.26189,-0.64184,-0.9667,0.52275,-2.1293,-1.0083,-0.13851 -1.8973,-0.34873,-3.3112,-0.43426,0.69854,-1.9982,-0.16597,0.4099,-0.34674,-0.029635,-1.5084,0.24501,-1.0163,0.46605,0.040428 -1.7018,-1.8858,-2.7253,1.1512,0.21908,-0.3617,0.019499,-0.60895,-1.0894,-1.5534,-0.38765,-0.75451,-1.3827,-1.2323,-0.48755 -1.0409,-2.4881,-1.7402,0.30001,1.3167,-0.2234,0.32917,-0.27535,-0.75758,-1.4494,-1.1496,-0.99381,-0.88393,0.33545,0.57049 -1.6968,-1.6002,-2.4144,0.83058,0.22464,-0.56487,0.36099,-0.59606,0.43441,-0.9925,-0.68004,-0.7054,-1.5426,-0.55042,-0.56056 -1.6874,-2.5378,-2.0908,0.50946,-0.3175,-0.61694,-1.0664,0.40345,0.49728,-0.41005,-0.52754,-0.86542,-1.9302,-0.96857,-0.80972 -1.155,-2.4698,-1.2951,1.122,0.23429,0.40787,0.26584,0.45623,0.1277,-1.1501,-0.1641,-1.8885,-1.8056,-1.0883,-0.2013 -1.6467,-2.7251,-2.9985,1.6321,0.097672,-1.0796,-0.84483,-0.31435,-0.66595,-1.2565,-0.4356,-0.15398,-1.9983,-1.1412,-0.06978 -2.1246,-0.85613,-3.2315,0.25487,0.94239,-1.7422,0.68904,-0.8051,-0.38158,-0.58013,-1.8568,-0.0048157,-1.0656,0.35002,-0.031613 -0.14377,-3.4349,0.55148,0.95896,-1.1787,-0.89731,-0.46526,-1.9288,-0.39655,1.4715,0.16525,0.0023819,0.1525,-1.4199,-0.82265 -0.075783,-1.9234,-0.2791,2.2682,-1.3877,1.1351,0.85696,-2.1216,-0.70551,-0.83603,0.17966,-0.99384,0.83871,-1.6442,0.54431 -2.0171,-2.5332,-0.55745,0.063398,-0.76979,-2.1577,-1.4592,-0.6224,0.16781,0.52577,1.0923,0.6395,-0.3709,0.10491,-0.68029 -1.4806,-2.7099,-0.1919,2.248,1.143,1.7554,-0.34467,0.90574,-0.17179,-1.0989,0.77211,-1.7215,-1.9157,-0.86628,0.13452 0.72876,-3.5733,1.1374,2.2268,-0.15713,2.584,0.0034851,0.077563,-1.3978,-0.066131,0.62301,-1.1572,1.404,-1.4461,0.4529 2.5291,-3.4059,-0.62632,1.2835,-1.0419,2.2757,0.86134,-0.50559,-1.2388,-0.5528,-1.076,-0.74824,-0.30547,-1.7311,-0.4117 -0.26737,-2.1538,0.68921,2.9656,-0.41379,0.18453,0.64316,-1.6647,-0.90298,-0.23227,1.3254,0.22893,0.58013,-1.5487,-0.0089869 0.64547,-3.252,0.3252,1.7256,0.076982,1.7045,-0.88302,-1.1011,-2.2051,-1.0516,1.3116,0.053996,1.3995,-2.0398,0.61865 -0.98177,-2.6526,-2.794,1.454,-0.76317,-0.0091298,-0.75947,-0.97087,-0.99671,-1.6284,-0.52161,-0.012691,-1.1154,-1.2304,-0.26943 -0.3868,-1.933,-2.7732,1.2728,-0.36321,-2.9163,-0.33659,0.73338,-1.3043,-0.71727,-0.33052,1.7227,-0.54468,-0.84866,-0.27878 -3.248,-1.4865,-2.6266,-0.89441,-0.2689,-1.6977,-1.0245,0.30314,-0.067965,-0.63702,-0.54903,-0.13383,-1.5804,-0.67649,-0.36725 -0.044072,-3.3069,-1.4486,0.83338,-0.15776,0.36313,-1.4406,-0.095111,0.30577,0.76519,-0.84414,1.7308,0.4945,-1.1344,-0.30698 -0.89223,-3.9355,-0.93113,1.4721,0.77437,1.3481,-1.7783,0.23008,0.64552,0.37712,-0.73786,-0.45102,-0.27788,-1.2736,-0.041609 0.54444,-1.9673,0.53781,1.9248,0.060506,-0.46211,1.3701,-0.65578,-2.1024,-3.1343,0.44334,-0.084764,2.2852,-0.63978,0.15782 -0.012358,-0.74601,1.8526,1.933,-0.86511,-0.58376,2.0181,-1.9687,-0.085079,0.68463,0.33853,0.13322,0.079072,-1.0804,-0.027926 -0.064755,-0.12414,1.3364,1.8823,-1.7674,-1.1298,1.5263,-1.5191,0.7055,0.5522,-0.29179,0.32958,0.9061,-0.64523,-0.15645 -0.91816,-2.26,-1.4946,2.5266,-1.0975,-0.36316,0.74027,-1.4002,-0.21184,-1.1075,0.43028,-0.89262,0.18943,-1.3319,-0.35984 -2.0355,-1.892,-2.3538,1.5108,1.2152,-2.4156,-0.35448,-0.88967,-1.0718,0.068455,-0.41671,0.54977,-0.18341,0.030209,0.15594 -1.5433,-0.83923,2.4521,0.61869,-2.3488,-0.31388,-0.96877,0.79633,0.18019,0.019924,1.9177,0.38595,-0.85799,-0.31845,0.033834 -3.3135,-1.7541,0.73691,-1.4014,-0.2976,-1.5693,-0.63117,-1.6651,-1.2816,0.64247,1.632,0.46527,-0.67022,0.34096,-0.7963 0.25527,1.6449,-1.5531,-0.58462,0.58572,-0.032772,-0.69759,0.86124,0.0076556,2.6099,1.6354,0.82098,0.54343,-1.0868,0.92091 -2.4819,-2.4435,1.1588,-3.1097,0.67342,0.27117,-0.8774,-0.24989,-0.093073,0.23278,-1.6617,-0.7482,0.82887,0.42322,0.98056 -1.3045,0.32975,2.2495,1.5829,0.12187,0.11746,-0.28054,0.77497,2.2137,-0.24199,0.59732,0.61054,-0.6934,-0.70587,1.3966 2.9415,0.72373,1.6121,1.5723,-0.083271,2.077,-0.52483,-1.3511,0.32156,-0.89809,-1.1703,0.14704,-1.3935,-0.23543,0.31007 -4.2349,-0.8794,-0.26988,-2.057,1.4953,-0.42373,0.053822,-0.3014,-0.51067,-1.5706,-0.21381,-1.5418,0.2588,-0.75662,0.64839 2.1304,0.2571,2.3465,0.22798,0.70905,-0.14975,-0.87297,1.2761,2.2538,-0.55157,-0.91903,1.1057,0.82013,-0.25439,0.55044 -0.11243,2.0423,-1.34,1.9818,-1.066,1.6243,-0.59105,-0.56438,-0.337,0.2086,-0.71863,0.1951,-0.60553,1.5718,0.32165 -2.9605,-1.1705,-1.9111,-1.2093,3.2575,0.34751,-0.88247,-1.5509,-0.28977,-1.9163,-1.4489,2.1754,-1.236,0.39669,0.80606 -3.7021,-0.068624,-2.6621,-1.6225,0.8849,-0.57245,0.29827,-0.073277,0.11021,-1.518,-0.60709,0.16658,-0.50814,0.17167,0.13115 -1.9531,-1.4035,-3.0179,0.047861,-0.64968,0.45427,-1.5312,0.13454,1.1309,-0.33735,-1.0789,0.8943,-1.1201,0.59976,0.2586 4.0644,1.248,0.53445,-0.88905,2.4986,-0.19456,-0.23471,-1.6606,0.57997,1.2218,-0.54223,-0.088765,-1.2868,-0.43004,-0.96908 3.4423,0.4575,-2.5125,-1.7738,-0.35482,0.83245,1.7079,0.33509,1.1963,2.3496,0.38669,0.80995,-1.0943,0.35861,0.22097 2.3413,0.93779,0.68691,0.65901,0.29952,0.6212,-1.4764,-1.2269,2.1779,0.099851,-1.3067,0.13562,-0.22753,-0.6295,-0.52057 0.29164,4.1006,0.49331,-0.61908,0.18371,1.3658,-1.5642,-0.54616,-1.8066,-0.70708,-0.11771,-0.3302,0.39979,-0.56077,-0.67597 0.60507,2.5556,0.78738,1.361,1.3257,-0.48729,-1.2425,-1.4065,0.71545,0.72852,-0.81149,0.58541,-0.3362,-0.97516,-0.23657 -1.5762,0.24937,0.33368,2.5562,-0.19618,0.90698,1.0732,-0.45919,1.6089,-0.4564,0.48679,0.56142,-0.18077,0.034503,0.91936 0.83955,2.3044,-1.4613,1.3274,1.5404,0.25499,-0.62544,-0.70529,0.39174,1.9555,0.25511,-0.24037,0.57732,-0.19464,-0.38059 2.6359,1.8013,1.2163,0.22191,-0.12229,0.1829,-1.7239,-1.1247,1.4135,0.39261,-0.65144,-0.14783,-0.19981,1.813,-0.50161 2.4477,0.72702,-0.86082,-0.29481,0.20253,-0.11326,2.2075,-0.21896,1.2593,-0.00070545,-0.7631,0.67772,-2.3922,0.94093,0.079939 0.3627,-0.07439,1.5241,2.3577,0.92055,1.4052,-0.35942,-0.14608,0.66534,-0.35418,0.051211,0.60783,0.43789,-0.083597,0.3799 1.7927,2.8494,-1.5789,-1.0161,-1.0276,0.39275,-0.60569,0.81791,-0.55593,-0.21607,0.077628,-0.88067,-1.1089,0.4914,-0.14841 -1.8421,2.7511,2.114,-1.004,0.43836,0.82502,0.24872,-0.42587,-1.0519,-0.74991,-0.38044,0.68771,0.10452,0.18292,0.084417 0.87627,2.0835,-0.97843,-3.6443,2.2069,-1.1737,-0.35209,1.5565,-0.70548,1.4494,1.757,-0.22375,0.7947,-1.7684,1.3313 3.5668,1.2211,-1.6513,-3.8777,0.77659,-0.90809,0.51397,1.2963,0.30311,1.6931,1.5106,0.02004,-0.51584,-1.5199,0.75156 -0.0080462,3.7279,2.3434,-0.43761,1.3794,-0.96378,-1.3242,-0.31352,-0.44409,0.31832,0.55461,0.30016,-0.95789,-0.07774,-0.36926 2.2681,1.3234,-0.1123,0.75037,0.29462,1.9637,-0.39559,-0.99051,0.82078,-0.5952,-1.1617,-0.70905,-0.34881,0.18956,0.15161 2.6079,0.82955,-0.18976,-1.4885,-0.25561,-0.64861,0.12948,-1.4386,0.54856,0.56903,0.78611,-0.28564,-1.3935,2.3718,0.67123 1.1706,2.9322,2.1224,0.2006,1.2236,-1.1367,-1.4776,0.50665,-0.30528,0.64778,-1.0147,0.51191,0.61081,-2.218,-0.89359 -0.23717,3.5604,-1.7304,-0.59968,-0.21897,1.4332,-1.2222,0.79212,-1.8919,0.76598,0.27015,-0.65018,-0.075697,-0.057292,-0.66809 0.50508,0.41112,2.8615,0.52498,0.027182,0.63481,1.5484,-1.388,1.2877,-0.13167,-1.7121,1.2933,-1.8941,0.0057145,-0.035983 4.2009,1.1252,-1.3102,-1.744,2.5179,-0.25158,1.2356,-1.2048,0.39629,0.50192,0.3845,0.79337,-2.4992,-0.12347,-0.84717 -1.6865,-1.3929,2.3206,0.98874,0.99505,0.56036,0.27453,0.55378,1.9234,0.15767,0.75538,-0.34063,-0.22637,0.26507,0.33951 2.9558,0.40388,-0.90127,-0.097835,1.7488,1.6847,0.21773,-2.579,0.7034,0.92449,1.6192,-0.46296,0.26388,-0.21098,1.5261 1.8637,2.5292,0.39734,0.70714,2.8819,0.75741,-1.0721,-2.2725,-0.79123,0.71872,0.077219,-1.435,-0.013935,-0.82952,0.27255 2.1325,-0.28854,2.98,0.92633,1.1757,1.6435,1.8308,-0.54682,0.64705,-0.22879,-1.2419,0.64974,-1.8641,0.14466,-0.21155 -2.6861,1.5954,-2.1215,0.19819,0.55535,2.1359,1.7703,0.45231,-0.42415,1.0301,-0.43261,0.52655,-0.75026,-0.68917,-0.70921 0.57457,3.2631,0.03768,-1.5857,1.1031,-1.1599,-1.7847,0.17709,0.028849,-0.57869,0.31093,-0.86185,1.1425,-1.6286,-0.3713 3.2824,1.8974,-0.22743,-0.42776,1.4541,-1.0984,0.17364,-2.1244,0.17446,1.6324,0.13017,-1.7045,-1.3876,0.19858,0.2002 -0.0543,2.4314,2.5048,-0.095894,-0.38411,-0.96727,0.52345,-1.0813,-0.27306,0.54476,-1.0261,0.623,-0.00056579,0.57784,-0.18657 -1.9445,3.0868,1.3048,-0.65325,-1.3221,0.41992,0.66337,0.39314,-2.6403,0.3087,-0.13701,0.14758,-0.8487,-1.4079,0.62087 -0.89813,-0.7463,0.43083,1.4423,-0.79401,2.2566,1.2817,-0.18642,1.8425,-0.91706,-0.34624,0.22423,0.91177,-1.0225,-0.11959 0.95501,2.9432,-0.48174,0.49036,0.73147,0.71754,-0.60132,0.21818,0.28952,1.693,-2.2694,-0.18209,0.89219,-0.95253,-1.258 -2.4587,2.1532,0.73433,0.37947,-0.20077,-0.52692,1.2489,0.26491,-0.37732,1.3282,-0.19391,0.83973,-0.38845,-0.58048,1.0963 0.69479,4.0397,0.91453,-0.9592,-1.0634,0.0081115,-0.2431,-0.56873,-0.70954,-0.39943,-1.1901,0.65513,-1.0356,0.38626,-0.24848 -3.1239,1.4498,-1.2033,-0.96071,-0.35316,0.91139,1.0557,-1.3167,-0.76971,0.9829,1.206,-0.21779,0.3526,-0.11823,-0.77184 -0.36646,2.6035,0.056753,1.9274,1.1162,0.098712,-0.16915,-0.17503,0.98355,0.17094,-0.076531,1.678,-0.54286,0.034275,0.13386 -3.9672,0.38125,0.94174,-1.1181,0.67985,0.11965,0.42335,-0.33938,-0.59217,-2.4454,0.58317,0.58448,-0.17433,1.4263,-1.0977 3.3262,-0.14314,0.0097896,-0.011133,1.5072,1.232,-0.77011,-1.5232,1.6264,0.13659,-0.14137,-1.0693,-0.066921,-0.59652,0.62235 -1.3967,2.0307,0.15678,0.74319,-0.96928,1.602,0.49387,-0.10867,1.3214,-0.50513,0.5213,0.40536,0.75949,-0.87614,0.76429 1.5082,2.0418,-2.039,-2.1008,-0.89371,0.075986,0.41022,-0.56212,-0.23996,0.11936,0.58546,-0.52638,-0.19068,0.95211,1.211 1.6177,3.5547,0.34988,-1.0235,0.057759,-0.04828,-2.1819,-0.89376,-0.11448,0.46098,0.47865,-0.22736,-0.28904,-0.22087,-0.46663 1.0145,0.88712,0.72605,0.081105,0.86289,-1.737,-1.3296,1.9337,1.2736,-0.81707,-0.42954,0.46716,1.4896,-0.38395,0.75062 -1.4614,1.065,-0.52324,-1.0887,-0.73879,0.74504,1.1299,-1.4115,0.44481,1.4361,0.096949,-0.12301,-0.98928,-0.85266,0.38184 2.2532,2.7606,-0.47109,0.56129,0.34838,0.0025859,-1.251,-1.2838,0.21283,1.6436,-0.89575,-0.50722,-0.36694,-0.46813,-0.91316 5.3819,-0.41039,-0.40118,-1.5076,2.6678,0.90117,1.1004,-0.89837,0.25595,-0.86495,0.5237,0.98306,-1.568,0.32689,-1.7234 -1.3088,3.6075,-1.2758,0.33026,0.58692,0.54356,-1.2798,1.778,-0.073122,-0.034911,-0.43521,0.89067,0.03754,0.11298,-1.5805 0.017182,2.5543,-0.82643,1.8658,1.0662,-0.53276,-0.79975,-0.071689,0.15577,1.0406,-0.016833,0.12968,0.54846,1.1042,-1.3001 -1.8785,2.6669,1.4909,-0.18556,-0.34027,-0.01583,1.6238,-0.4,-0.70497,1.1218,-0.60306,1.4239,0.40221,-0.5626,0.3922 -1.9488,0.16904,-0.42958,0.20788,-0.24328,0.063539,0.68648,-1.6833,1.7974,1.6646,0.14627,0.028411,0.29805,-0.80761,-0.3724 1.4979,0.56435,-0.44628,1.8784,-0.35374,2.1914,-0.24798,-1.5316,0.017325,-0.84735,-1.7275,0.6081,-0.3028,-0.019185,-0.43457 -1.4576,4.0314,2.494,-0.50128,1.0235,-0.69114,-0.24624,0.79191,-1.4174,-0.22544,-0.51341,0.40329,0.18095,-0.24426,0.14473 -3.3763,0.93001,0.92155,-0.69039,-0.014198,1.3308,1.6751,-0.79171,-0.33665,-0.34416,1.0381,0.36812,-0.81808,-0.92937,-0.76778 -1.6456,3.6895,1.025,-1.1706,-0.28283,1.099,1.2843,-0.27001,-1.9654,0.53147,-1.0822,0.87818,-0.71474,-0.54295,0.13043 4.1279,2.3722,-0.24251,-1.0194,1.2451,-0.67236,-0.32278,-1.4045,0.97914,1.4945,-0.054254,-1.0158,-1.7625,-0.41191,-0.75713 0.55438,3.5249,-0.80666,-1.5394,0.6004,0.89457,-1.8142,0.25984,-0.94204,-0.35607,1.03,0.48859,1.1731,-0.86021,0.081867 0.13206,1.1049,-0.41304,2.2378,-0.51744,1.21,1.6128,-1.8377,-1.1702,-0.024701,-1.1405,1.1132,-0.086456,-0.30856,0.20693 2.4987,1.8878,-0.93901,0.87845,-0.32664,1.1513,-1.2443,-1.5305,0.86262,1.2909,-0.42749,-1.3634,-0.82547,0.98926,-0.12968 4.4005,0.088575,-0.42123,-2.4643,1.3072,-0.26383,0.42652,-0.41936,2.3692,0.25977,0.75657,0.62159,-1.3637,-0.74425,-1.1649 -3.054,0.81566,0.73408,1.0181,1.7578,-0.8062,1.9472,-0.3184,0.39517,1.4025,0.18946,0.22403,-0.56343,-0.82701,0.58668 1.2127,3.006,-0.35593,-1.3548,0.71342,-0.63962,-1.1725,-0.61155,0.91584,1.4756,-0.47213,0.035891,1.1588,-1.6342,-0.78764 4.0632,-1.5419,-2.0176,-0.60985,2.1929,3.5585,2.2169,0.36437,-0.95872,1.608,0.34207,0.9042,-0.9543,0.55215,0.085747 -1.424,-3.8111,1.4984,-1.8486,1.4812,-0.65083,-1.6295,1.1118,-0.10371,0.67317,-2.4614,-0.31277,1.4377,1.3151,0.91396 3.767,1.4591,0.12228,0.67709,2.4872,0.83269,-0.92303,-1.7461,-0.96665,1.5205,-0.2704,-1.41,-0.48498,-0.9346,-0.40023 4.0046,1.4411,0.5963,-1.7459,1.2011,-0.39159,-0.77213,0.64585,1.6995,0.32091,-0.24864,0.74328,-1.106,-0.063509,-0.96535 1.8425,3.7306,-0.8556,-1.3307,-0.32692,1.2183,-1.4881,-0.11694,-0.92765,-0.71713,-0.60612,-1.336,-0.18229,-0.94515,-0.37305 2.2663,2.983,-1.205,-2.4236,-0.18957,-0.47593,-0.83206,-1.3702,0.41884,1.1506,0.7459,-0.83432,-0.32699,0.35264,-0.071831 -0.56172,0.4559,1.5196,-0.19397,-1.6279,0.90919,1.3417,-1.6159,1.5407,1.3197,0.20715,-0.2421,-1.0245,-0.32015,-0.15558 -2.4719,1.6494,0.20395,-1.0305,-0.69489,2.0468,1.0995,-1.2351,-0.19005,-0.10226,0.81551,-0.53149,-0.2363,0.30425,-1.3047 1.1188,3.2138,-0.03004,0.20734,0.013726,-0.11393,-1.1165,-0.63781,0.87823,1.0044,-1.6677,0.35304,0.1044,-0.99045,-0.96134 -0.18992,3.069,0.76491,1.1882,0.098388,0.019395,-1.2846,-0.35493,0.87351,0.18778,0.50149,1.7063,-0.34396,0.96271,-0.36653 -0.54024,-2.1033,1.4646,-1.3075,0.7741,1.094,-0.035166,-2.3327,0.88718,2.4308,-1.5888,0.11849,-1.3395,0.2593,0.6497 -1.9578,2.3005,1.5316,-0.72526,0.23149,-0.12288,1.6124,1.1488,-0.69765,-0.94385,-0.49341,-0.94651,1.5137,-2.0014,1.3957 2.1527,2.9914,0.56083,0.11621,-0.28803,-0.10764,-2.1241,-0.98272,0.38581,0.8245,0.15542,-0.61434,-0.93345,0.69628,-0.088349 -3.7203,-1.0107,-1.5557,-1.3641,0.82145,-0.81306,0.27567,-0.80375,0.59878,-1.1514,-0.87965,-0.23371,-1.4627,0.846,-0.99447 -0.96842,-0.39873,-1.2466,0.30036,-1.6347,1.3415,1.7569,-2.1371,0.87763,0.27831,0.0042571,0.088137,-0.72486,-1.2739,-1.1834 2.9681,0.84512,-0.14536,0.68026,0.86245,1.8227,-0.43726,-1.3297,0.99758,-1.371,-1.2335,-0.53046,-1.4881,-0.71628,-0.73743 2.1547,0.73157,1.6676,0.14142,1.1598,-1.6727,-1.8168,1.3759,1.1907,-0.60863,-0.70651,0.024857,0.27142,-1.0784,0.49599 3.7182,-0.059781,-1.4624,-0.40681,0.56154,1.7909,0.89745,-1.6715,0.97109,1.2917,0.98268,-0.76626,-0.98504,0.32623,1.5284 2.9228,0.93034,-0.13912,0.033372,-0.19442,1.2718,-1.2288,-1.2736,1.6335,0.024374,-0.43005,-0.25838,-0.82617,1.5717,-0.5853 -0.5739,3.7032,-0.63467,-0.61916,0.88221,-0.2129,-2.5203,1.2567,-0.47408,0.10713,0.48755,0.13648,0.64046,-0.85174,-1.4263 -0.6421,2.9054,0.30957,0.56572,-1.517,0.87778,0.7556,-0.61341,0.10676,-0.129,-0.94058,1.0543,-1.328,-0.14483,0.85669 -3.5592,-0.13192,0.68244,-1.4998,-0.31381,1.6888,1.2791,-1.7244,-0.23956,-0.70838,0.64986,-0.09162,-0.42469,-0.30258,-0.32324 1.2204,2.8198,1.251,0.31721,-1.0971,-0.47364,0.85388,-0.20113,-0.39182,0.087397,-0.93889,-1.0293,-2.202,0.70876,0.48892 2.1528,2.1108,-0.59192,1.1872,-0.3787,0.72458,0.083514,-0.8528,-0.29085,0.038078,-1.0716,-0.62547,-1.4134,-0.13939,0.26869 -3.1191,0.37872,-1.6583,-1.8285,0.94077,-0.2853,0.49633,0.15046,0.45236,-1.6993,-1.2752,-1.0362,-0.35006,-0.52789,-0.20595 -1.2972,3.1837,0.75396,1.2013,0.23963,-0.12808,-0.21675,0.088807,0.54195,0.5505,-0.5687,2.0449,-0.13647,0.31607,-0.26958 -0.82397,3.3747,1.0051,0.86131,0.67339,-1.0895,-1.1947,1.8371,0.45423,-0.11085,-0.090646,0.55149,0.063789,-0.77235,-0.10794 -2.1626,4.0855,-0.22982,0.035006,2.1072,0.92255,-0.55775,2.0849,-1.7137,-0.43173,-0.64538,0.11358,-0.70984,-0.40798,-1.4824 2.4007,-0.57642,-0.62623,0.6375,2.5835,1.3755,-0.7048,-1.0802,0.87714,-0.57449,0.095017,0.286,1.9759,-0.71872,0.26175 -3.2151,1.1467,-0.22605,-0.81206,-0.19373,0.69535,0.90199,-0.97953,0.91925,1.6016,0.63238,0.12252,0.58505,0.34844,-0.77793 -3.3708,-0.76946,-0.52526,-1.5326,0.9694,-1.5933,-0.97275,-0.91416,0.67683,-1.0379,-0.40804,0.28166,0.81651,0.34296,0.89636 1.6029,3.0172,-1.7427,-0.7824,-0.77585,0.83381,-1.443,-0.70179,0.069937,0.93964,0.52859,-1.066,-0.63369,0.38021,-0.93688 3.4737,0.80666,-0.6145,-0.95362,-0.048312,0.87846,-0.92595,-0.84035,1.7266,1.334,0.22402,-1.2147,-1.3079,0.89758,0.078896 -0.23694,0.98354,2.043,-0.93346,-1.3661,0.49362,0.14189,1.1,1.2626,-0.047425,-0.64225,0.16554,0.28505,-2.2523,1.2977 0.64656,1.6261,-0.46354,1.1796,1.4154,0.5881,-0.80255,-2.7473,-0.10995,0.31211,1.092,-0.57531,0.15433,0.24238,0.091966 1.4985,2.5702,-0.81064,-1.0169,0.32283,0.71115,-2.1018,-1.0748,0.53051,1.3284,1.8266,-0.35821,-0.51071,0.92101,-0.58558 -0.0022253,-0.86284,3.0759,0.11594,0.30883,-0.35605,1.084,1.537,1.5134,-0.081475,-0.80231,0.037105,0.4857,-1.1645,0.61763 2.1088,1.4061,-0.90583,-3.0188,-0.16636,-0.52756,1.6496,-0.1265,-1.3719,1.277,-0.40152,1.0777,0.22284,1.2213,1.2699 3.5858,-0.52996,0.51435,0.0072274,3.3317,-0.049024,0.063032,-2.2063,0.82945,0.5621,1.8818,-0.089189,0.51704,-0.3292,1.1471 0.16842,2.0914,1.4791,-1.0957,-0.569,1.1585,-0.45387,0.86159,-0.48945,-2.2415,0.040412,0.21282,0.80302,-1.8179,1.8375 0.70634,3.7746,0.4276,-0.21943,-0.1765,0.31905,-1.7798,-0.6114,0.19976,-0.097635,-0.22943,0.3984,0.23309,-0.2701,-0.41607 -2.1873,-1.3473,2.7843,0.39892,0.29695,0.69015,0.45437,-1.188,1.5839,0.7599,0.71216,-0.20089,-0.43749,1.1605,0.20151 0.49659,2.1611,-1.3398,1.0475,-2.3304,1.9049,-0.75488,-0.076449,-0.59866,-1.7644,-0.34967,-0.81078,-0.38689,0.21881,0.20492 -4.5443,0.65259,-1.6054,-0.72204,1.8419,0.27694,2.4232,0.011887,-0.39707,-0.66911,-0.90725,-1.1386,-0.0086848,-0.10326,-0.97531 -0.83042,2.6575,1.522,-1.6132,-1.2483,0.29219,0.79308,-0.94488,-1.5801,0.20026,0.28202,-0.70857,-0.76811,1.4327,-0.27102 -2.3868,1.6224,-1.0543,1.9644,0.81169,0.73185,0.58739,0.909,-1.6734,0.37064,-0.24589,0.88163,-1.6767,0.060866,-0.57284 1.0087,-0.045594,-1.187,-1.523,1.0113,2.1198,0.72391,0.46698,-0.8324,-1.0446,0.88217,0.24375,-0.39454,1.0876,1.7871 0.61096,3.4058,-0.4871,-0.70781,-1.2984,0.015783,-1.2205,0.10239,-0.63493,0.80009,-1.509,0.036445,-0.30198,-1.1346,-0.671 1.4372,1.2834,1.1229,0.18738,-0.67701,1.7429,-0.21484,0.21957,1.4818,0.63447,-0.32096,1.3101,0.6923,2.1523,0.45129 1.7614,1.4976,1.9173,1.0146,-0.00212,-0.32612,1.2605,-2.0937,0.24083,0.16924,-1.0645,0.90208,-0.95821,0.54858,-0.5171 2.0889,2.4457,0.38085,-0.55402,1.2543,-0.95117,-1.35,-2.2574,1.2754,0.93035,0.79419,0.1805,0.37497,0.062622,-0.68924 4.007,-0.93234,-3.2407,-0.42877,1.6446,1.43,2.6356,-0.3085,-0.067249,-0.70997,1.6404,0.30816,-1.3932,-0.14313,0.22424 1.9375,1.6392,1.2132,1.8267,0.24017,0.23506,-0.76203,-1.7485,0.65891,-0.19668,-0.64959,0.67173,-0.31479,0.19361,0.25513 1.2446,2.7179,-0.052521,-0.25803,-1.6039,0.39915,-0.83451,-0.12859,0.081022,-0.022505,-0.81337,0.13,-0.33294,0.95896,0.64664 -1.0684,-0.12323,0.47722,0.034791,-0.89299,0.83174,1.0439,-1.0123,2.361,1.6889,-0.055476,-0.1683,-0.34865,-0.48609,0.50827 2.4485,1.6455,-2.1531,-0.0028679,-0.14676,0.023801,-0.089533,-0.54281,0.94332,0.7829,-0.615,-0.042838,-0.13067,-1.1516,-2.0609 -0.49775,3.1693,-0.21599,-0.18318,-1.8569,0.78938,0.70011,-0.26253,-0.68773,1.0361,-1.42,0.71151,-0.33562,0.11669,0.3695 0.90431,1.1332,-1.3475,1.1758,2.0495,0.78606,-0.86718,-1.8174,0.14978,-0.84307,1.0061,-0.56421,1.5561,0.096328,0.16454 -0.041764,3.8791,-0.37766,-0.20647,0.82874,0.53257,-1.1592,-0.75496,0.1964,0.84405,-0.36056,0.56747,-0.014105,0.11142,-0.80459 -3.8742,0.039589,-0.43129,-0.6252,0.97378,-1.3224,0.7287,-0.047969,1.0622,0.71528,0.2818,-1.0713,0.28443,-0.60976,-0.26921 -0.57765,1.7892,-1.8676,0.44869,1.824,0.41158,-1.4183,0.92639,0.27742,-0.63969,1.1118,-2.0036,0.75531,-0.72307,0.056297 2.5158,1.9692,0.92029,-1.2871,1.82,-0.51203,-1.9687,-1.0944,1.1268,1.1282,1.2273,-0.25716,-0.29548,1.424,0.17205 3.3373,0.59403,-0.3251,-0.26814,0.9279,0.61922,-0.35316,-0.84199,1.5044,-0.752,-0.50591,0.68235,-1.256,-1.3456,-2.3242 -0.85992,-0.60169,3.0155,-1.3713,-0.48483,1.0294,0.060444,0.93688,1.479,-0.11052,0.11416,-1.0709,0.65814,0.67761,1.0587 1.8083,4.0282,0.94982,-1.7972,2.0888,-1.2914,-1.5728,-0.48939,-0.61403,1.1258,1.2549,-0.35633,0.17859,-0.088548,-0.35898 1.4326,1.2311,-1.2079,1.7185,0.92475,0.22735,-0.86937,-2.9885,-0.93071,0.45158,1.2024,-0.18714,0.17365,-0.23552,-0.071503 2.3642,3.0253,-0.25547,-1.199,0.41671,-0.39605,-1.5786,-0.60386,-0.2842,1.5076,0.80968,-1.74,-1.507,0.16812,0.13565 -3.5934,1.6162,-1.5077,-0.50676,0.076385,0.70371,2.4529,1.1299,0.3451,-0.58223,-0.46181,-0.23132,-0.17449,-0.26921,-0.57113 2.5437,3.1608,-1.1867,-2.184,0.30703,0.61288,-0.90571,-0.88945,0.10777,0.16753,0.16196,-1.3047,0.60597,-1.6303,-0.49987 -0.98239,2.1399,1.9283,0.30818,-0.33926,-0.14353,0.053033,0.5966,1.2656,-0.31224,-0.10791,0.86367,0.91707,-1.4723,1.3201 -2.0962,0.7026,-0.38183,0.85541,-0.52779,-0.45368,0.99042,1.1124,2.2385,-0.43917,0.59918,-0.73629,-0.16768,-0.47348,0.50713 2.6675,1.4628,-2.1719,-1.4056,0.13668,0.62373,0.26129,0.11776,1.5398,1.3662,0.026117,0.016376,-0.015661,-0.98194,-1.3315 1.5372,2.2949,-1.1113,0.59323,-0.99844,0.11098,0.079819,-0.90342,0.72251,-0.17573,-1.6922,0.66415,-0.82801,-0.13423,-1.6247 2.5118,2.362,-2.3607,-3.5562,0.76511,0.9633,0.22732,0.32502,-0.41448,0.14461,1.2363,-0.59264,-0.47085,-1.6284,0.18273 2.5883,-0.96269,-0.98749,-0.51388,2.7231,1.8708,1.0916,-2.4377,0.15141,-0.10076,0.61729,1.1272,0.3068,-0.57297,0.61321 -1.6055,0.82909,3.1742,-1.5693,0.35658,1.9122,0.32488,0.35685,-0.030829,-0.16039,0.63569,-0.64054,-0.17735,1.5518,0.24408 0.57961,2.3845,-0.19081,0.50803,2.3836,-1.1334,-2.1147,1.0892,0.6185,1.7256,0.082149,-0.6475,1.0243,-1.6808,-0.5356 -1.8828,-1.1299,0.99052,-0.9724,-1.0598,0.40357,0.76068,-2.3187,1.6198,0.81722,-0.2172,0.26113,0.25474,-0.039812,-0.68393 3.7173,0.21544,-2.8996,-2.7749,0.78044,-0.43193,2.1066,1.98,0.36632,1.1177,2.1044,1.4341,-0.62221,-1.3061,-0.31907 -2.4124,1.6456,0.69101,-1.1655,1.6812,0.821,-0.10262,-0.85291,-2.3776,-1.6074,0.64382,0.09452,-0.27471,1.6908,-1.3468 -2.1368,3.4594,1.1991,0.032797,1.2363,1.8756,1.0224,0.5479,-2.5107,1.0489,-1.2092,0.028178,-1.2381,-0.34353,-0.12991 -0.24706,2.3442,-1.0882,0.54752,-0.19064,2.7035,0.14915,0.063528,-0.19268,-0.41042,1.2508,-0.13272,0.083048,-0.093012,-0.72827 0.85606,0.59998,2.9545,0.99343,-0.36354,0.77365,0.30228,-0.68005,0.88014,0.74681,-0.25647,0.53567,-1.6059,-1.4974,0.4567 1.8068,2.0848,-1.2189,1.8889,-0.0034494,1.0517,-0.67265,-1.4258,-0.47084,0.48032,-1.5178,-0.059734,0.078757,-0.84626,-1.0049 -2.7666,0.98372,-0.63054,-0.60049,-0.66878,1.0176,1.7744,-2.249,-0.40317,0.58555,0.32293,0.12556,0.98291,0.29805,-0.17593 2.2067,2.8605,-0.092549,-1.8901,0.43924,0.42921,-1.1361,-0.6822,0.27682,-0.84596,-0.089503,-0.83144,1.3256,-1.7316,-0.85386 1.9077,-2.3783,0.17863,-0.70025,3.0687,1.4867,1.8379,-0.71767,-0.81514,-0.057949,-1.1693,2.8806,0.38993,-0.3922,0.42715 0.085747,3.9577,1.3408,-0.86328,1.2,0.77096,-1.4728,0.21307,-1.4852,-1.5216,-0.15048,-0.18712,0.032583,-1.5592,0.059346 3.7293,0.061835,-2.6594,0.63031,0.5078,1.0483,0.52886,0.38705,0.44797,-0.034299,0.1411,-0.96714,-0.5405,0.40312,-0.68749 3.536,1.2781,-1.7279,-0.014994,2.458,0.21095,0.70004,-1.2618,-0.052517,0.45385,-0.47833,-2.0467,-1.4545,-1.7966,0.27062 -2.5489,0.8942,-0.34122,0.79491,-0.051089,-0.05738,1.3145,0.27618,1.6429,0.98397,0.71388,-0.046872,0.40082,-1.0733,0.046795 -1.9311,2.6932,-1.1343,0.20663,-0.42388,2.2368,1.6229,0.16291,-0.8172,0.54407,-0.57448,0.13021,0.20338,-1.0836,0.85159 2.6869,0.11679,-0.27266,0.97245,-0.68298,2.0351,0.38023,0.11553,0.78447,0.72343,-1.2126,0.8649,-0.055073,1.6758,-0.18308 1.62,1.0837,0.084368,1.6199,0.51521,0.36441,-1.1287,-2.5915,0.71293,-0.6259,-0.76301,0.82037,-0.0096008,0.18464,-0.76407 0.12869,3.5754,0.58883,0.49408,-0.60696,-0.23601,-1.0218,-0.7049,0.040351,0.72684,-0.41011,1.166,-0.47806,0.055136,-0.52411 -3.6889,-1.0706,-2.6279,-1.201,1.2786,0.0050967,0.11744,-0.68175,0.086624,-1.5774,-0.98725,0.086718,-0.22905,-1.1121,-0.5064 -2.0679,0.036478,0.61925,-2.4045,-0.027362,1.5793,-0.047058,-0.7132,0.033282,1.5544,-0.4887,-1.0575,0.71288,-0.047459,0.13194 0.72732,1.3213,-3.7817,-0.032375,-1.4846,1.9631,0.18028,0.79603,0.15443,-0.27994,0.44674,-0.78148,0.15775,-0.30461,0.82218 1.6524,4.0847,1.092,-1.7116,0.32508,0.52014,-1.0257,-0.65269,-0.80815,-0.84354,-0.44091,-0.18292,0.60304,-0.21055,-0.6267 0.22676,2.5244,0.58379,-1.6621,1.0566,0.67727,-1.248,-1.5086,0.029809,-1.4868,0.2584,0.49598,1.4343,0.41549,0.03503 0.54087,1.3545,1.9483,2.3378,0.75223,0.80195,-0.16943,-1.3226,0.29198,-0.24609,-0.32139,0.55854,-0.034167,-1.2403,1.3899 -2.2369,0.41968,1.6598,0.045494,0.17864,-0.56187,1.1726,-0.81752,1.502,1.7094,0.2131,-0.0033966,-0.042066,-1.4847,0.68918 0.82105,-0.64592,-1.687,0.48225,3.8147,-0.40746,-0.77601,-0.299,0.63198,-0.9145,1.9112,-0.019704,0.7605,0.064969,1.2773 3.9667,1.429,1.9039,-0.36556,1.1178,0.27037,-0.92509,-0.56674,1.0237,0.62023,-0.82455,0.86985,-0.45455,0.14499,-0.80271 -0.83065,2.9928,0.60475,1.3179,-0.12964,0.31332,0.089588,0.39519,0.01839,1.4178,-0.44873,1.365,0.8553,-0.053054,0.068852 4.1893,-1.7906,-1.2045,-1.4342,1.8617,1.182,2.549,0.64285,1.5393,0.74164,1.1058,2.2022,-1.2353,-0.50937,0.45886 3.2183,-2.8034,-0.97015,-0.86557,2.7755,1.5765,2.8189,1.8858,0.53009,1.1938,-0.55947,2.8781,-0.31688,1.21,0.028258 2.4689,2.1973,-0.46066,0.9693,1.1117,1.0299,-0.83323,-1.9606,-0.16535,1.1557,-0.93333,-0.69367,-0.16682,-1.1204,-0.98423 3.0375,1.465,0.21767,-1.6482,-0.47839,0.75283,-1.5378,-1.0188,1.435,-0.34973,-0.077792,0.35511,-0.10255,1.7172,-0.50579 -1.4059,4.1146,1.1989,-0.21012,2.092,-1.1226,-1.1918,2.0058,-0.67976,-0.88119,0.39839,0.31763,-0.53953,-0.022758,-0.58713 -1.8834,3.6134,-0.41178,0.38313,-0.2166,0.82968,-0.34323,1.2483,-0.63323,-0.082551,-0.34313,1.7768,0.17431,-0.40091,-0.71646 2.9788,0.51919,2.4993,0.57532,4.0504,-0.3324,-0.37673,-1.1238,-1.573,-0.039599,0.0041333,-0.69557,-0.50861,-0.8742,0.78005 0.013835,3.4787,-0.34302,-0.84377,1.4891,-0.95593,-2.5534,1.2904,0.61916,0.41428,0.30732,-0.25838,1.2109,-0.66969,-0.25814 2.3681,2.1525,0.45248,-0.10574,1.7653,-0.50284,-0.74296,-0.64358,0.44265,0.15769,-1.3611,0.58604,0.80633,-2.0392,-1.8856 -2.4827,2.963,0.66987,-0.24717,-0.69558,1.3044,1.426,-0.72197,-2.0493,0.015531,0.66418,0.79965,-0.31993,-0.66805,0.28188 -2.8409,2.1719,0.59374,0.44195,-0.035372,1.77,1.0663,0.66081,-0.18633,-1.0541,0.60129,1.2993,-0.58291,0.84369,-0.78685 -0.6134,1.1643,-0.66704,1.4164,-2.2352,2.0921,-0.68483,0.63612,-0.37591,0.36823,0.90986,0.33275,-0.95243,1.1994,-0.2124 -2.2969,3.1984,-0.37731,0.6521,-0.35916,0.61813,0.3259,1.5507,-0.042028,0.67911,-0.53906,1.6626,0.38019,-0.17561,0.19783 -1.5696,1.9847,1.8837,0.48154,-0.97842,0.64792,0.20579,-0.27771,1.1801,0.047559,0.55183,0.9291,0.81271,0.53599,0.39561 -2.8301,1.689,-1.3811,0.35787,-0.34225,2.1918,1.5765,-0.3842,-1.5116,0.38253,-0.03121,-0.30443,0.37435,0.97751,-0.62447 -0.46391,3.2674,0.72268,1.6063,-0.028387,0.15977,-0.82691,-0.34316,-0.011205,1.354,-0.14177,1.6131,-1.0796,0.57104,-0.52943 2.42,0.94569,-0.87496,1.3952,0.74458,1.5896,-1.3352,-2.1773,0.093857,-0.027681,0.24948,-0.6953,0.015294,-0.13298,0.15805 -3.9013,-0.60573,-0.80064,-2.0327,1.4135,0.8452,-0.13307,-1.2422,0.40113,-0.039265,0.59359,0.79308,-0.19899,0.94452,-0.68513 -0.049469,2.0934,-0.37732,1.9338,2.4795,-0.46566,-1.66,-0.050731,1.4916,0.56892,0.28747,0.077853,-0.61913,0.48645,-0.67753 3.0145,-0.41182,-1.7339,-1.2662,0.64621,2.5251,0.65036,-0.63971,-0.31867,0.85123,-0.073469,1.9571,0.24967,0.50622,-1.1868 -0.33387,2.6713,0.38751,2.0538,1.6849,-0.25301,-1.0189,-0.59193,0.98383,0.5391,-0.2293,1.2441,-0.79823,0.30908,-0.33445 -2.5715,1.6573,0.17428,0.058239,-0.066739,-0.55468,0.28739,2.4564,1.2959,-0.76146,0.60531,-0.18655,0.063185,-0.81494,1.3602 -0.10215,2.1871,-2.0519,2.1833,0.88759,0.18827,-0.45565,-0.39767,0.18726,0.6705,-0.2338,0.26573,0.44562,0.32171,-0.81197 -2.3218,0.33706,-0.087585,-2.2327,0.71839,1.0425,-0.55229,0.18068,-0.52642,0.63108,-0.68836,-0.76884,1.3786,0.4557,0.74132 4.2081,-0.14932,-1.3123,-1.1145,0.72017,-0.65657,1.0213,0.032174,0.41162,2.5629,1.0004,-0.61507,-1.5188,-0.46727,1.704 2.7674,2.1403,0.52608,-1.3723,1.5037,-0.97004,-2.1011,-0.025426,0.82115,1.6752,0.74451,-1.0645,-0.39687,-1,0.14362 -1.4661,3.7296,-1.7337,-0.34306,1.3403,0.71903,-1.76,1.9402,-0.9316,-0.8195,-0.080161,-0.61443,1.0001,-1.2489,-1.0644 -0.80225,-1.8812,-0.46507,-1.235,-0.73596,1.7037,-1.0014,-0.64343,-2.3217,-0.34823,0.39748,0.76764,-0.30566,3.3458,0.45643 -0.8123,2.3866,2.9537,1.3992,1.637,-0.99695,-0.23614,-0.43412,0.564,0.07007,0.013629,0.7048,-0.7009,0.20597,0.0024427 2.2122,0.41041,2.2198,-2.3422,2.3333,-1.9546,-1.0032,2.3575,-0.219,-1.4364,0.0011724,0.8311,0.37406,-0.76293,-0.13764 3.6217,0.57292,-1.4742,-0.74562,1.4271,0.63304,0.57207,-1.4163,0.27755,1.3238,0.84473,-1.5894,-1.8112,-0.70817,1.4543 -1.5948,-0.1539,-3.8864,-0.20492,0.50642,-0.063745,-0.36633,-0.049436,-0.025656,-1.5617,-2.1387,1.6664,-0.27661,-0.71075,1.3204 -1.4809,3.2524,0.78484,0.23384,0.060411,-0.60909,-1.2552,2.0308,0.1017,0.11766,0.12623,0.95091,0.4225,-1.2989,0.65883 -1.5463,-0.11255,1.869,1.4764,-0.54297,1.2203,-0.23513,-0.25857,1.4869,0.30407,0.37685,1.1851,-0.71182,0.92329,1.012 1.8031,1.7294,0.36039,1.4386,2.3233,-0.64413,-2.2466,-1.1883,0.027196,1.4948,1.0505,-0.63725,-0.36158,-1.0673,-0.50651 1.91,0.35656,-1.4374,0.96937,0.92814,1.3539,-0.57718,-1.4707,1.8543,-0.89659,-0.0056688,-0.46954,1.6445,-0.92377,-0.31296 -1.6199,-0.1966,0.98402,2.7515,1.5053,-1.1781,1.2612,0.80313,0.28623,-2.4548,-0.052198,-0.023582,-1.1174,-0.31883,1.5134 -2.6873,0.86369,0.79858,1.3296,1.4808,-1.5704,1.9993,0.52455,0.47367,0.73494,0.12478,0.052007,0.31789,-1.1978,0.73885 -3.7522,-0.10232,-1.775,-1.3422,0.37805,-0.30328,0.40259,0.64665,0.96135,-0.86501,-0.1506,-1.3134,-0.46123,0.33898,-0.6791 2.552,2.9678,-0.3409,-1.2028,0.47358,-1.1084,-1.2782,0.021376,0.25043,1.5335,-0.89508,-1.2338,-1.1779,-1.161,-0.89595 3.0616,1.1451,-1.7443,-3.7062,0.45686,0.88271,0.66302,0.4056,0.65474,0.734,1.4695,0.91126,0.096591,-1.5442,-0.39003 4.9908,-2.0897,-1.6492,-1.1824,1.0031,1.9252,2.5583,-0.58461,0.56852,0.036332,0.59589,0.69,-1.0243,0.80506,1.0749 0.11198,2.2107,2.103,0.22388,-0.35499,0.60711,-0.47577,0.68333,0.85582,0.48198,-1.3159,0.82339,-0.79753,-1.8656,0.66556 2.0469,1.3599,0.67672,-2.8479,0.72645,-0.0071108,0.95824,-0.91929,0.40111,0.72846,1.3272,1.6443,1.0101,-0.79667,0.31676 4.2423,-2.7457,-0.45869,-0.44623,1.5506,4.0834,2.6048,0.85768,-3.4845,0.70002,-0.69801,0.53014,-0.0032605,1.3138,-0.63076 0.066628,2.8802,0.2383,2.409,1.1222,0.62419,-0.51589,-0.19174,-0.38598,1.0321,-1.0112,1.0574,0.47327,0.010578,-0.73563 2.1783,2.2414,-2.6215,-2.0874,-0.28383,1.225,-0.41919,0.22491,-0.25299,0.062016,0.6945,-1.4612,0.093389,-1.4696,-0.3426 -0.41539,3.1855,-1.375,-0.37053,-0.53048,1.807,-1.5484,0.7038,-1.5075,0.55891,0.091641,-0.3843,-0.10941,-0.20556,-0.63263 2.296,2.4146,-0.38623,0.80835,0.79982,0.25456,-0.80169,-1.5149,0.59196,1.2734,-1.1225,0.10783,0.25589,-1.276,-1.6368 4.2097,-0.28915,-1.5514,-0.68063,1.2303,1.3052,1.4765,-2.3042,-0.52906,0.013539,0.74545,-1.609,-0.47328,-0.30957,1.6379 3.0096,1.6521,-2.5911,-2.1372,-0.74176,-0.38742,-0.14029,0.12738,1.2856,0.16808,1.521,-0.68264,-1.1502,-0.63748,-0.43207 -0.22396,2.0468,0.01136,0.48278,-1.6607,0.85318,0.86025,-0.27441,0.75408,0.90514,-0.71765,0.40486,-1.2624,-0.93292,0.93159 -2.8334,-0.17462,-2.284,-0.66732,0.29606,-1.1051,-0.28534,0.16465,1.269,0.062872,-0.12436,-0.49722,-0.29784,0.030946,-0.37302 4.4698,-0.90362,-0.40462,-1.6241,1.3251,2.2212,2.0633,-1.2627,-0.8706,-0.49825,1.0267,-0.14613,-0.021263,0.25728,1.6144 -1.6108,2.5231,-1.4374,1.4455,0.017651,2.5674,-0.12883,1.4712,-0.98358,0.16767,-0.46862,0.41583,-0.76361,-0.25064,-0.90186 -1.6788,0.40817,-3.977,0.028953,0.38109,-0.62765,0.019392,-0.30859,0.42065,-0.82542,-1.762,1.5376,-0.51922,0.66029,0.79974 -3.2173,0.70704,-1.858,-0.57671,0.61223,0.75419,0.66805,-0.011742,-1.3081,1.9424,0.33045,-0.45077,-0.75874,0.38235,-1.8282 3.4955,-0.69496,0.61557,0.2019,1.708,2.9191,-0.81943,-1.6851,-0.068612,-1.6562,-1.0747,0.3156,0.22811,0.10204,-1.3302 -0.33433,2.2014,-0.61942,0.91434,-2.213,0.75118,0.3296,-0.53185,0.8232,-0.38437,0.085336,0.52544,0.084648,0.48203,0.80725 -2.6822,2.745,0.046211,0.34792,-0.32003,1.796,1.379,0.21822,-1.3293,0.14949,0.44281,0.1857,0.22109,-1.6286,0.66127 -0.12703,3.0801,2.0463,0.46163,0.43026,-0.30802,-1.1867,0.28832,1.1028,0.40026,-0.57319,1.0594,-0.14151,-0.69009,0.55913 -0.75024,1.8019,1.6067,0.12266,-0.92745,-0.45135,1.2367,-1.8181,0.26841,1.3174,-0.30024,1.2905,-1.2728,-0.036531,-0.24646 -1.5089,2.7926,-0.93797,0.25255,-1.5186,1.6935,0.97799,-0.06166,-1.1498,-0.47098,0.091139,0.55731,-0.24277,-1.2756,0.41231 -3.16,0.44461,-0.94466,0.30904,-0.76148,-0.34963,1.3006,0.78682,1.4796,-0.66201,0.60144,0.28974,-0.43053,-0.085653,-0.18913 0.2505,-0.1499,3.2213,0.37048,1.1096,-1.0389,-0.2855,2.0025,1.2205,-1.6891,-0.08935,0.8778,1.5747,-0.63334,0.65562 2.779,3.5716,1.5748,-3.6435,2.1631,-0.85587,-0.4959,0.94436,-1.7163,-0.71462,0.79846,-0.79791,-1.1303,-0.89583,0.025045 0.38425,3.4882,0.85445,-0.75246,-0.17567,0.35091,-1.8988,0.44261,-0.5255,-0.074539,1.1405,1.2331,0.5161,0.10856,-0.16117 1.7769,1.4146,0.12244,0.81115,1.2718,0.36241,-1.2492,-2.0659,1.8379,-0.10302,-0.052177,-0.55584,0.0010033,-0.63521,0.30316 -2.1238,-0.41051,3.7499,-0.61373,0.58617,-1.5239,0.23389,0.81626,0.042228,0.16704,-0.61554,-0.73968,0.2077,-0.8434,-0.0034361 4.1869,-0.29679,0.86997,0.84873,1.4979,2.0138,0.62698,-1.8669,-1.0697,-1.8898,-0.56775,0.49028,-0.96832,1.3001,-1.2194 -0.064109,1.3191,-0.62841,2.09,2.7819,-1.1061,-1.5275,0.086723,0.26741,-1.7939,-0.15843,-0.64797,-0.41564,0.39479,0.27186 0.90025,0.48164,2.2681,1.1533,-0.78311,1.0021,0.68298,-1.0104,1.1176,-0.30574,-1.5208,1.5214,-0.49977,-0.68869,-0.036426 -1.1139,2.1888,0.56251,-0.30731,-1.2083,1.8357,0.8439,-0.12737,0.36936,0.74905,0.21996,-0.41477,0.73965,-0.32712,0.60318 -2.7082,-0.79771,2.875,-1.0461,1.6527,-2.3009,1.3301,1.4693,-0.61559,-0.16756,-0.154,-1.3273,-0.34244,-1.6345,0.55228 -0.00082902,1.2949,1.9617,1.8313,-0.3712,0.90693,0.80247,-1.6208,0.12764,1.4918,-0.48978,0.56367,-1.5705,1.0666,0.42473 -3.1068,-0.18139,-1.5209,-0.63228,0.69712,0.32397,0.030878,0.15356,0.19617,-2.4809,-0.1395,-1.4719,0.43579,0.5094,0.92686 1.781,1.574,1.4065,2.1533,1.4558,0.54105,0.48193,-1.9452,0.14844,-0.82237,-1.7597,1.2107,-0.18093,-0.53099,-0.82546 4.0975,0.076569,0.16762,-1.3556,1.5086,1.8136,2.7654,1.5685,-1.0335,0.31833,-1.0493,1.6451,-0.45984,-0.28003,-0.64665 -1.8672,2.002,1.3031,-0.2362,-0.76424,2.4715,0.49771,-0.56456,-0.59976,-1.1633,0.45294,1.2457,-0.47276,0.46989,0.43717 -3.5096,0.52136,1.7636,-1.8258,0.078903,0.84461,0.32211,-0.70304,-0.27251,-1.1718,0.83413,-0.79318,0.92826,0.28638,-0.33857 3.2079,-1.933,-1.0668,-0.36602,1.9806,2.473,1.6325,-0.39288,1.2016,-0.13164,0.77446,1.6256,0.13665,-0.50943,0.6666 -0.85008,-0.49708,1.307,-1.166,0.29209,1.0893,0.45115,-1.0722,0.49964,-1.921,-0.8168,-0.22458,1.5631,0.49953,-0.040439 0.35171,3.0213,-0.74584,-0.042754,1.7262,0.058629,-1.1405,0.070621,0.89257,2.1874,-0.49069,-0.39224,0.89798,-0.62071,-0.5008 0.017593,4.6593,-0.16282,-1.3119,2.0286,0.85859,-1.719,0.42668,-2.1436,-0.038414,0.59774,-1.1289,-0.01907,-0.56525,-0.92049 0.19109,3.1174,-0.25229,1.2517,-0.54598,0.22464,-1.2193,-0.40828,-0.13331,0.86821,-0.47373,0.74008,-0.87336,-0.37158,-0.19661 -0.43434,2.7182,-0.65369,0.63641,-0.2071,1.1808,-1.3375,1.0075,1.053,-0.052092,-0.18003,0.66585,1.0707,-0.82743,0.43755 1.9266,1.1032,-0.79101,1.1791,0.8351,1.28,-1.1926,-2.6794,0.084775,-0.61953,0.48213,-0.1308,0.32441,0.00064594,0.038928 -3.1128,2.0402,0.75289,0.68288,0.0061933,0.32858,1.6202,0.42277,-0.62688,-0.19431,0.88977,0.95162,-1.4744,-0.090415,-0.96007 -0.003763,1.315,-0.73207,1.4209,-0.57221,2.2664,0.38838,-1.1807,0.23417,-0.72433,-0.91316,0.67716,0.81168,-0.13724,-0.15136 -4.3663,-0.23521,-1.435,-1.3204,1.8119,-0.031696,1.444,-0.69898,-0.24407,-1.5618,-0.66974,-1.2164,-0.44503,-0.54307,-0.55042 0.88272,1.1784,-1.5172,-0.97898,2.286,0.918,0.63192,-0.16952,-1.0348,0.91897,2.3795,-1.0717,-1.4074,-0.21863,1.4917 -1.6495,2.4382,0.3978,0.73747,-1.6032,0.78325,0.5055,-0.6903,0.085394,0.28641,0.39884,1.7409,-0.063272,0.99507,0.28018 -2.8389,-0.33489,-3.4681,-0.37365,0.74795,-1.0258,-0.086995,-0.59559,0.51964,-0.51961,-1.5684,0.8717,-0.99035,1.2219,0.027794 -3.2966,0.1786,1.3072,0.49597,0.028069,0.96292,0.88302,-1.0203,0.2391,0.43976,1.7345,0.54324,-1.6028,0.81192,-0.77738 2.824,3.0225,0.84398,-0.2397,0.55259,-0.49421,-1.2058,-1.6472,-0.24669,0.94058,-0.46667,-0.5489,-1.6553,0.14936,-0.49623 0.40023,2.9991,0.35242,-0.28101,-0.75145,0.39908,-1.7036,-0.56178,0.86626,-0.42733,-0.16239,0.95114,0.76939,-0.54084,-0.022184 0.46999,2.0698,-1.0041,1.6701,1.9491,-0.68219,-1.2563,-0.52742,-0.34727,-0.59168,0.87051,0.3531,0.65743,0.34623,-0.88655 1.1154,0.65591,4.0159,-2.6401,0.24657,0.47648,1.3894,1.1034,0.48786,-1.9531,-0.41469,0.88947,1.2094,0.46035,-0.80174 -3.9795,-1.4458,0.12468,-0.78401,0.62906,-0.56767,-0.022753,0.20225,0.71032,0.41749,0.45041,-0.73258,-1.4815,-0.99172,-0.49428 2.4853,0.6763,0.83744,0.90613,1.6501,1.8114,0.076178,-1.6357,-0.10377,-1.2159,-1.1541,1.2794,0.036695,-0.64738,0.22829 1.7935,3.5642,-1.1834,-2.1619,0.32879,-0.40876,-0.52263,-0.66848,-0.73442,2.3652,0.32537,-0.9592,-0.39932,-0.55391,0.34 -2.3196,2.2164,0.017256,1.0014,0.22466,0.54149,0.13425,1.9775,-0.08658,-0.49939,-0.15228,0.70092,-1.5838,1.1505,-1.1595 2.0347,1.2187,0.05964,2.0015,1.5518,0.77588,-0.84132,-2.1314,0.52233,-0.64033,-0.58596,0.65248,-0.28708,-0.13463,-0.10186 -2.7,0.53332,1.1994,0.42498,0.35044,-1.6112,1.7262,0.96479,1.6595,-0.82974,0.52755,-0.49998,-0.50825,0.24307,0.17946 -2.3601,-1.2827,3.4728,-2.4536,0.43063,0.5185,-0.027636,1.2861,0.028361,-0.61105,-0.52668,-1.4607,1.2955,0.61142,0.30383 3.5491,0.3187,0.71213,0.11762,2.2855,0.46096,-0.45687,-0.16552,1.1562,-0.51112,-1.3336,0.88553,-0.37142,-1.3786,-1.5976 3.0508,0.22497,0.25903,-1.2705,3.1337,-1.0087,0.49181,-1.6034,0.27056,0.4791,1.6648,1.204,1.7185,-0.46752,-0.12872 -3.1295,3.0913,0.27019,-0.19313,0.34096,0.37574,0.48192,2.2023,-1.1464,0.80801,-0.16299,0.83633,-0.31973,-1.0958,0.51737 -2.4642,2.375,-0.73633,0.028073,-1.0374,1.0858,0.60901,0.88651,0.00045362,1.2443,0.26274,1.4633,0.39615,-0.7247,0.32789 -0.49227,2.0266,0.3668,1.5527,0.35665,-0.13792,-1.6024,0.029552,0.9196,0.82709,0.6886,1.353,-0.067377,-0.13564,-0.64685 3.5081,-1.1406,-1.2907,-3.1137,0.8925,0.021523,1.6189,2.3759,1.5536,1.052,0.8149,1.9386,0.49011,-1.0386,0.40173 2.2362,3.6594,-1.1963,-1.728,0.35871,1.1782,-1.249,-0.40153,-0.90904,-0.82758,-0.025885,-1.319,-0.090347,-1.2493,-0.67541 1.8694,0.81336,-1.0958,-1.5257,1.576,1.8367,0.66186,0.84248,0.34978,0.4049,1.0383,1.5568,0.8704,-0.73419,0.48882 0.69096,2.1157,2.1303,-1.1778,-0.48349,0.5644,-0.92946,0.82339,0.72676,-1.6023,-1.7769,0.94826,1.0502,-0.7681,0.090286 -1.3367,1.3038,0.56854,1.7565,0.077676,0.25181,1.3769,-0.51679,0.73918,-0.45189,0.99722,0.70947,0.41914,-0.13008,0.044267 -0.57739,2.0138,-0.92392,2.5364,1.4092,-0.54077,-0.072365,0.33616,0.53832,-1.5287,-0.54015,0.59833,-0.19409,0.65599,-0.58653 0.53498,2.6862,0.57712,1.9718,2.1081,0.73298,-1.1478,-0.69986,-0.90112,1.4148,-1.2101,-0.12911,0.2997,-0.4052,-0.60197 2.7363,0.54983,1.0205,0.99456,-0.19652,1.0457,-1.115,-1.5447,1.1572,-0.25063,-0.32318,0.81361,-0.65213,1.1925,0.43633 -2.0524,1.1266,-1.3921,1.7283,0.26625,0.82472,0.95108,-0.31325,0.14154,-0.84603,0.11858,0.73038,0.069008,-0.45936,0.45993 2.1896,3.5238,0.79851,-1.0589,0.33467,-0.10587,-1.487,-0.89796,0.58711,1.0127,-0.91632,0.15928,-0.31362,-0.18474,-1.4749 -0.82847,0.36682,0.1329,2.0937,0.77208,1.2092,0.76196,-1.2923,-0.46436,0.23816,-0.89423,1.9514,0.53069,-0.35386,-0.012521 -3.4266,0.78245,-2.3593,-0.17319,0.41028,1.6656,1.4783,1.5555,0.011266,-0.13883,-0.70999,-0.15424,-0.17501,0.25936,-0.59323 1.5891,3.1986,1.1317,-0.080669,-0.22343,0.14688,-1.0234,-0.35694,-0.035408,0.4354,-0.82908,0.44451,0.39264,-0.17332,0.1968 -0.034793,2.8166,1.9392,-0.45802,-1.9071,1.0112,0.1099,-0.69984,-0.083103,-0.1371,-0.19061,0.79327,-1.4436,0.26612,0.66908 0.70504,1.5182,2.0189,1.9637,2.2581,0.055069,-0.14244,-1.7464,-0.1625,-0.074559,-1.12,0.70586,-0.51409,-1.5135,0.65867 0.16273,3.8881,0.79869,0.081112,0.16726,-0.042349,-1.3357,0.021413,0.32724,0.74505,-0.49465,1.0526,-0.35547,-0.34518,-0.28713 3.0853,1.6004,0.54625,-2.0408,0.38992,0.99719,-0.57571,0.092121,-0.11988,-2.6586,-0.34598,0.95966,0.42001,-0.80101,-1.6358 -1.8035,0.6637,-3.2507,0.6141,-0.95696,1.9411,0.80671,-0.78656,0.81192,-0.10271,-0.58973,-0.72822,0.17622,-0.1845,-0.75238 3.3461,1.795,0.22221,-2.3371,-0.3902,0.62716,-0.93942,-0.15978,1.1913,-0.91694,-0.33697,0.72609,-0.58071,1.251,-1.104 1.8968,-0.56358,-0.91728,0.22561,3.1567,-0.95099,0.37585,-0.01498,1.4257,0.553,1.0468,0.27691,1.7856,-1.58,1.372 1.4804,3.3468,0.5854,-0.55432,-0.86629,-0.56568,0.012367,0.17608,-0.20555,-0.57836,-1.8521,0.16196,-0.44223,-1.3069,-0.54937 0.15571,1.2055,-0.61372,2.0877,-0.03351,1.2746,-1.7463,0.58807,1.0368,-0.08591,0.96657,0.62403,-0.87598,1.6677,-0.82449 0.50097,3.7073,1.8334,-1.4933,0.65953,0.65297,-1.3762,-0.1904,-0.41765,-1.4959,-0.091569,0.74691,0.97594,-0.12625,0.51512 2.2129,2.187,0.9103,0.050878,1.9968,-0.88745,-1.6098,-1.2881,-0.15767,0.92089,0.038005,0.49542,-0.030266,-0.44668,-0.75622 1.0895,2.1693,-0.30335,-0.64067,2.402,-1.3017,-1.729,-0.058627,1.3378,1.6045,1.856,-0.067388,0.83628,-1.0425,-0.06907 4.6747,1.1239,0.11132,-1.3288,3.2547,-0.46961,0.30688,-0.86564,-0.49422,1.2607,0.057751,0.36296,-0.43371,-1.5301,-1.1698 0.05546,2.9077,-1.5806,-0.97047,-0.56154,0.63822,-0.97592,-0.53179,-1.192,0.071384,0.86146,-0.19151,0.81484,0.90015,-0.37421 3.0165,2.8194,-0.36935,-0.50022,0.22489,-0.54647,-0.91989,-1.0637,0.39822,1.606,-1.0917,-0.27783,-1.162,-0.63664,-1.5453 -0.16249,3.5201,1.1589,0.38708,-0.16675,-0.14041,-1.3088,0.53412,0.047633,0.98784,-1.0469,0.85371,1.1555,-1.2561,0.083444 4.2045,-1.16,-0.72126,-0.39682,1.4816,2.2165,1.6592,-2.0555,-0.31861,0.27937,0.90565,-0.42515,-0.33273,0.74156,1.5222 3.2106,0.63652,0.30417,1.1722,0.089673,0.2476,-1.136,-2.5967,0.7269,-0.44144,-0.7449,-0.65288,-1.0561,0.24279,-1.0064 -2.8935,2.4386,-0.6281,0.9064,0.64044,2.0125,1.7037,1.3208,-0.62584,0.25595,-1.1042,0.69846,-0.72121,-0.62408,-0.40418 3.7988,-1.2805,-2.609,-0.63577,1.4604,2.0252,1.278,1.0455,0.89233,0.60411,1.1282,0.17571,-1.7007,-0.82499,-0.030713 -0.20552,3.8206,0.84014,0.35184,0.78044,-0.28294,-1.3439,0.66782,-0.065453,1.3965,-1.3892,0.15907,0.87326,-0.94158,-0.28422 -1.8248,1.081,2.3643,0.99211,-0.13276,-0.29417,-0.2313,1.4291,1.1977,0.37059,-0.44286,0.57443,0.91948,0.6628,0.46733 2.9766,-1.2907,-2.6819,0.014721,1.2519,2.3704,3.1744,0.088497,-0.89941,-0.95635,1.1233,1.7595,-0.27911,1.291,0.18573 3.8562,0.042445,-1.1717,-0.083152,1.0097,1.9817,-0.67383,-2.1946,-0.60775,-0.37116,0.068932,-0.85218,0.36719,0.13284,-0.066236 -0.25636,1.6964,3.1483,-1.3321,-0.81845,0.97727,0.17427,1.3524,-0.22462,0.96732,-0.60182,-0.63275,-1.4412,-0.95106,1.2914 -0.52765,-0.25273,2.7674,0.81984,-0.34634,-0.086674,-0.030887,1.0138,2.0347,0.046131,-1.0436,0.19311,0.5551,0.0060822,1.0551 4.5847,-1.1969,-1.8869,-0.97483,2.1656,2.0381,2.6069,-0.89241,0.33257,-0.57115,1.4976,0.52666,-1.6433,0.25041,-0.079856 2.255,-0.8627,-2.0062,0.33256,0.52879,2.3341,-0.26745,-1.5371,0.13832,0.13103,1.5061,0.46022,1.253,-0.24228,0.73555 -3.6436,-0.68276,-0.67795,-1.9138,0.24359,0.35384,-0.70062,-2.2154,-0.29127,0.11043,0.47231,1.1457,0.19329,0.87686,-0.85908 3.9768,1.3256,-0.60023,0.67202,0.63859,0.52185,-0.37545,-1.9054,0.80669,-0.89651,-0.69063,-0.83128,-1.4195,0.17666,-1.7355 -2.8001,-2.503,1.6881,-3.1485,2.4452,-1.5504,-1.022,-1.0911,-0.64996,0.43163,-1.8893,0.453,-0.1026,-0.039437,0.93538 1.1741,1.514,1.3739,1.6551,1.4715,-0.85453,-1.8049,-0.47324,1.4918,0.48238,-0.39042,0.34303,-0.17862,-0.62204,0.50265 4.8319,-0.083784,-2.0489,-0.46952,2.5173,1.8995,1.4571,-0.76651,-0.64015,-0.74003,0.89643,-0.15474,-1.3537,-0.097695,-0.97566 2.5793,2.715,0.80581,-1.0627,0.26987,0.12694,-1.9092,-1.2012,0.97017,0.44208,0.14212,-0.055587,-0.49246,1.0021,-0.5835 2.9784,0.84218,-0.97654,-0.84664,0.58864,0.72128,-0.4532,-1.1229,2.5379,-0.36638,0.22471,-0.12237,0.50713,-0.42045,-1.0729 1.4347,2.1056,-0.038649,-1.4333,-0.25689,0.87278,-0.73008,-0.59895,0.72722,-2.3791,-0.76209,0.80512,1.0565,-0.91519,-0.91431 -0.38813,2.5496,-1.6876,1.0206,-0.31851,2.2317,-1.0652,0.90712,-1.2848,-0.10564,-0.27403,-0.49233,-0.75057,0.13155,-0.85588 -3.3423,-0.42414,-1.0775,-0.29574,1.138,-0.26649,0.83645,-0.83992,1.8557,-0.14775,0.33484,0.5222,-1.0527,0.49461,-0.82928 2.9214,-0.4324,2.0975,0.024291,2.7554,-1.1083,-1.0112,0.60485,0.45062,-0.90885,-1.8608,0.81654,0.60905,-1.6274,-0.70117 -0.60275,2.2193,2.0195,2.1153,2.2544,-0.5927,-0.27343,-0.43478,-0.78058,0.62825,-0.27639,1.4019,-0.72188,-0.44137,0.35203 -1.9574,0.29133,0.89906,2.0713,0.7042,-0.092278,0.859,0.46365,0.92391,0.13533,0.41943,0.34906,-0.96339,-0.78038,1.7853 0.086815,4.2575,1.0234,-0.63668,0.26612,-0.25993,-1.9856,0.094947,-0.92368,0.44565,-0.036558,0.38456,-0.11177,-0.82922,-0.64059 -2.4581,0.32992,0.79695,0.79022,-0.23379,-0.0080494,1.3536,-1.2711,1.8809,1.1529,0.80854,0.77194,0.11715,0.34893,0.25815 0.24165,-0.59996,3.4063,-2.1032,0.19009,0.033519,1.1873,1.6669,0.79554,0.77604,-0.95205,-0.13344,-0.74062,-2.1834,-0.10211 0.70687,2.144,-1.0447,0.69417,0.33376,0.85087,-1.9146,-0.76202,0.99515,0.73778,0.44671,-0.45073,0.21755,-0.16313,-0.13282 0.78998,1.5596,-2.8921,-0.68937,0.30494,1.3924,0.9674,0.026923,-0.54913,-0.27905,0.87933,-0.79548,0.011979,0.528,1.4118 -0.98554,0.12916,0.81167,-1.7177,-1.8451,1.8976,1.439,0.63583,0.80866,0.54218,-0.46544,-0.67764,-2.5083,-0.67055,0.43117 0.31782,-0.84057,0.019278,2.6117,0.46265,0.16878,-0.72989,1.6172,0.60713,-2.4694,-0.38078,-0.2278,0.036007,-0.33208,0.76249 -1.547,1.5139,1.9871,0.017135,-0.32478,1.3131,0.99533,-0.35467,0.87973,1.2183,0.34991,0.436,-0.45601,1.0547,0.73802 -1.6215,0.11197,0.53582,2.3536,0.51422,0.52654,1.4579,-1.4871,0.043215,0.83189,0.32106,0.54334,0.11326,-0.2936,0.44475 0.45009,3.9593,-0.15388,-0.15546,-0.38174,0.32883,-1.6914,-0.43057,-0.51998,1.3648,-0.74527,0.21545,0.80968,-0.44321,-0.81581 3.1989,2.2927,-1.6098,-2.5953,0.8735,0.50743,-0.14272,-0.11271,-0.11596,-1.0724,0.56784,-1.5559,-0.084817,-1.7449,-0.52223 0.36508,1.8316,3.932,-0.67344,0.063768,-0.59405,-0.8278,0.012778,-0.083392,-0.6175,0.22199,1.2766,-0.090627,-0.3016,0.19815 -2.1984,2.7496,-0.31149,-0.2303,0.46718,1.0127,0.46873,-0.045563,-0.67334,-1.9875,0.19319,1.215,0.14534,0.92989,-1.0401 -0.78319,-1.1331,1.621,0.76916,1.7043,1.519,-0.91377,1.1111,-0.92492,-2.4991,-0.4511,0.29067,1.265,0.93281,1.0595 1.2106,-0.023441,0.52121,1.5873,2.2032,0.55691,-1.8057,-0.89516,0.6245,-1.568,0.71868,0.67687,1.0409,1.0827,-0.67966 3.1343,1.3192,-0.5705,-0.047139,0.80535,0.73077,-0.65339,-1.5575,1.4692,0.27255,-0.2805,-0.10725,-0.23186,-0.41307,-1.9555 -4.3842,0.18805,-1.5743,-1.7686,1.1858,0.17006,0.55931,-0.75476,0.21937,-0.86607,0.20379,0.015111,0.15259,0.46982,-1.3724 4.0162,0.41978,0.99587,-1.4472,3.07,-0.95163,-0.26402,0.27188,1.0529,0.66327,-0.067896,0.045666,-0.2924,-2.0345,-1.3296 2.9816,-0.043822,-1.3691,-0.31627,1.6542,2.0267,1.8905,-1.9441,0.030795,-0.35457,0.39521,-0.72595,-0.26837,-1.2477,1.2662 -1.3088,3.6171,1.7896,-0.011329,0.46944,0.26479,-0.58683,0.3767,-1.4453,-1.5147,0.36384,0.18855,0.49762,-0.28771,0.17356 3.9299,-0.90589,-2.4576,-0.6151,1.213,2.8892,1.704,-0.14938,-0.47938,-1.4702,0.70885,0.3714,0.095356,1.6964,-1.2467 4.8113,-1.2354,-1.1842,-1.6473,-0.63305,0.064436,0.59217,-0.20833,0.38496,2.4424,1.4775,0.36459,-1.1603,0.10539,1.0755 -3.0373,1.2413,0.84155,0.26719,-0.19553,1.2694,1.6648,-0.42722,0.24642,-1.0821,1.242,0.40835,-0.84824,0.92466,-1.3261 2.5356,-0.81674,-0.25942,0.13569,2.6451,1.8851,1.359,-2.9194,-0.088992,0.43147,1.0586,0.30269,0.17717,-0.30975,1.6676 -0.58206,0.50132,2.7681,0.51336,0.4898,-1.1097,-0.32099,2.0828,1.539,-1.076,-0.059703,0.67662,0.93223,-1.0805,1.3877 3.7039,-0.59632,-0.60854,0.65184,0.12268,0.92498,-0.66269,-1.1468,-0.080184,-1.1744,-0.59433,-0.36036,-1.6634,-1.7589,-1.9891 2.1682,2.9907,-1.5043,-3.2457,1.0299,-1.0199,-0.8638,0.40398,-0.69287,1.083,1.6746,-0.97895,0.027211,-1.4665,0.55283 -1.1156,3.5403,1.0128,-0.002857,-0.66473,0.98948,1.0029,0.22506,-0.83687,1.4095,-1.4511,0.85382,0.33739,-0.59238,0.53844 2.518,0.12454,-2.1181,0.46094,0.82091,1.8548,2.7414,-1.6249,-0.63969,-0.21739,-0.29771,1.2546,-0.95688,-0.03784,-0.82965 2.182,3.2063,-0.98054,-1.1202,-0.079308,-0.20376,-0.91064,0.023548,-0.2904,1.01,-0.73974,-1.9278,-2.1058,-0.33025,-0.62361 -2.6967,-2.4299,2.8045,0.40409,0.5673,-1.3267,0.20093,0.60842,-0.17968,0.22341,0.34001,-0.24302,-0.67712,-2.0301,-0.045878 -0.60213,-0.50457,3.4701,1.1268,0.74105,0.30183,1.6555,-1.5018,1.3652,-0.12651,-0.25415,0.52157,0.11476,-0.21176,-0.064209 -2.4985,0.37984,-1.141,0.088957,-0.95842,0.56943,0.53199,0.1991,1.961,-0.49737,0.7075,-0.62041,0.29387,0.26903,-0.41543 4.0502,-0.39843,-2.0001,-0.23501,1.0444,2.9589,1.4847,-0.82487,-0.45624,-1.2389,-0.13137,-0.056499,-0.24891,0.94217,-1.0692 2.1966,1.5772,-0.45684,1.2699,-0.052714,1.4378,-1.0403,-2.1306,0.45896,-0.53557,-0.30514,-0.96307,-0.67965,0.15019,0.38917 3.585,-2.4834,-2.4637,-0.60652,0.62756,3.2076,2.9035,-0.013205,-1.2289,-0.71009,-0.12274,0.69927,-0.51214,1.802,0.55752 4.2349,-1.808,-0.43891,-1.1785,2.1243,2.637,2.818,-1.5888,-0.89357,-0.68309,0.87983,1.2058,-0.94612,-0.049688,0.80727 2.8105,-0.33954,-0.80906,-0.37667,1.3161,1.4858,0.90899,-2.4781,-0.18248,0.87806,1.5606,0.071074,0.36632,-0.7241,1.9229 -1.5284,0.67707,2.5155,-0.81717,-0.24343,-0.14099,1.4769,-0.77987,1.9474,0.79183,-0.34207,0.85811,-0.43584,-1.2351,0.68474 -3.8544,0.33819,-1.64,-1.2788,0.48481,0.60973,0.2226,-1.2474,0.19127,-0.511,0.3699,0.36347,0.87403,0.69819,-1.247 1.2839,1.2783,1.654,1.4946,-0.82786,0.84889,-0.60806,-1.3439,0.54956,-0.52489,-0.65446,0.19513,-1.6273,1.5248,0.85382 -1.4285,2.838,-0.16429,-0.72916,-0.11464,-0.29687,-0.45366,-0.67284,-1.861,-1.5943,0.21827,0.67183,-0.27059,1.8049,-1.6352 0.61071,-0.58387,1.4831,0.58342,-0.27071,2.0967,1.7094,-0.6618,1.7672,0.23056,-0.96857,0.029476,-0.68658,-0.96542,0.71513 0.50268,3.6919,0.64171,0.81994,-0.75477,-0.12186,-0.054192,-0.64253,-1.265,1.362,-1.4607,-0.025638,-1.7544,0.99759,0.032698 4.2963,-2.5199,-1.5029,-1.7662,1.292,1.0317,2.3143,2.0183,1.081,1.037,0.85792,2.755,-1.8645,-0.90192,0.16268 -1.5926,1.2904,-1.7684,2.0815,-0.086065,1.2017,0.87715,-0.20754,0.19984,0.69138,0.18147,0.78738,0.15054,-0.82897,0.82055 -3.7627,1.6976,0.87865,0.20273,0.45846,-0.27966,1.4077,0.43709,-0.90465,1.809,1.0845,0.60621,-1.2515,-0.22431,-0.73389 3.5171,0.85348,-0.0060948,0.33054,1.8415,1.3745,-0.36454,-1.9123,0.20901,-0.5508,-0.37248,0.60053,0.14648,-0.38607,-1.858 -3.7333,1.6483,-1.255,-0.952,0.75652,1.5025,1.5725,0.31606,-1.7867,1.6972,0.44584,0.31908,-0.44192,-0.45682,-1.0225 -1.8835,2.372,0.73081,0.69862,-1.4269,-0.36986,-0.11279,0.060251,-0.97712,1.5303,1.011,1.6659,-0.7713,-0.32069,-0.20048 2.3021,2.9482,-1.893,-2.791,0.23586,-0.03331,-0.15023,0.21506,0.39784,0.93805,0.2694,-0.86836,-0.17338,-0.99784,-0.44756 2.62,1.5568,0.32995,-2.1873,1.5439,-0.89027,-0.91897,-0.73172,2.3295,0.17036,0.015541,0.1914,1.1752,-1.2775,-0.59875 3.3088,0.3021,-2.2437,-2.0652,-0.67974,-0.98091,1.0663,0.76786,1.5527,1.2121,1.4001,-0.17245,-1.3253,0.75929,1.3545 -1.3437,3.1545,1.2998,1.5852,0.47232,-0.45889,-0.19217,0.30064,-0.63151,1.3712,0.12027,1.4764,-1.3882,0.14331,-0.33987 -0.31711,1.1943,1.861,-0.22583,-0.21559,-0.75872,-0.23943,-1.3234,0.76437,0.10705,0.0095993,0.48369,1.0346,0.73724,-0.23165 -3.5117,-0.094564,-1.657,-0.70326,0.18709,-0.85816,0.33795,-0.22484,1.2949,0.041108,0.22366,-0.072265,0.010943,-0.086927,-0.59461 -0.84626,3.373,-0.31082,0.44569,-0.10562,0.60134,-1.0793,1.1731,-0.60548,1.4132,-1.3207,0.49328,-0.27797,-0.44566,-0.025566 0.99182,1.4584,2.1196,-0.086671,0.71344,-0.47045,-1.7138,0.77834,2.01,-0.71566,0.5402,1.425,0.91858,0.21632,0.82352 -1.2449,2.9125,-0.37544,0.51659,0.048654,0.44633,-1.141,0.74127,0.53386,-0.0035867,-0.090552,1.2091,0.12866,-0.38241,0.059782 -0.75367,-0.72617,-0.18737,-1.4212,2.9802,1.61,0.40257,-0.97905,-2.8018,-1.6121,0.21053,0.63336,-1.2316,1.513,0.7957 3.6788,1.7248,0.63849,-2.7218,0.88389,-1.438,-0.91062,-1.4936,0.57409,0.94839,1.5709,-0.0048091,-1.1718,-0.47757,0.29252 2.5467,-0.45668,-0.037984,-0.79223,3.093,-3.2994,-0.571,2.4431,-1.277,-1.18,0.64975,0.31923,1.2904,-0.83275,0.12724 3.253,2.1997,-0.23381,-2.9485,0.46805,-0.10479,-0.67004,-0.89427,0.58202,-0.30537,0.5181,-0.21151,-0.1998,-1.3769,-1.1913 -1.9512,3.545,2.7235,-1.0115,0.61336,0.041814,0.16326,0.21138,-1.5424,-0.061334,0.16759,0.71752,-1.0892,-0.32785,0.34037 4.1877,-2.0895,-1.5802,0.1608,0.8159,2.9185,2.5061,0.18203,-1.0418,0.51554,-0.04024,0.071291,-1.108,1.4538,0.64764 5.2939,-0.33187,-0.14141,-1.706,2.4502,0.11808,0.45908,0.1827,1.3623,0.5511,0.28497,0.13033,-1.1996,-0.73193,-1.0757 -1.2607,2.399,-0.084148,2.0149,0.20314,1.0366,0.93648,-0.87192,-0.7705,1.1105,-0.14647,1.5058,-0.944,0.12288,0.76007 -1.92,0.85822,0.69228,2.5704,1.631,-0.29762,1.7781,-0.47235,-0.13464,-0.78833,0.035208,1.492,0.38143,0.066337,0.88599 -1.9651,3.291,1.4904,1.0115,0.55738,-0.30674,0.2073,1.1257,-0.98757,1.3177,0.33453,1.1055,-1.1475,-0.29524,-0.10143 4.2638,-2.1184,0.69975,-0.53133,3.0967,-1.0353,0.38839,2.4197,-0.38718,0.070694,0.060073,0.58161,0.977,-0.32902,-0.51281 3.9228,-0.047629,0.77368,0.73306,3.0148,1.0947,-0.26851,-1.0872,0.2544,0.44456,-0.47239,-0.33365,-0.46847,0.68208,0.056279 -0.34038,-1.14,-0.37078,0.56642,0.27579,1.5367,0.04194,2.8301,0.38534,-0.6313,-0.023953,-1.6542,2.4982,0.62415,-0.051503 -2.9967,2.0704,2.1084,-0.12911,0.19413,-0.88529,0.84662,0.33896,-0.41443,0.59964,0.69672,1.1073,-0.20393,-0.43986,0.15162 1.1337,1.0634,1.6713,1.1178,0.25422,0.82362,-1.2031,-0.083536,2.1536,0.03293,-0.85863,0.79413,-0.0074155,-0.3647,0.9545 3.2968,1.3201,-0.727,-1.019,1.5914,0.42205,-0.38468,-1.1173,1.6168,2.2097,0.65454,0.50904,0.32853,-0.080591,-0.54605 -2.0235,2.3229,0.84675,1.5476,-0.025576,1.0993,0.22472,0.73633,0.74285,1.0827,0.2663,1.3069,-0.53605,0.54522,0.16951 -1.4467,0.081224,2.5808,-1.16,-0.2042,0.6113,0.49196,1.5074,1.8451,0.081067,-0.19681,-0.37869,1.6208,-0.66331,1.4367 2.896,0.68586,-1.6433,-0.043908,2.0937,1.6121,0.59361,-1.9627,-0.33614,1.0145,0.16499,-0.035494,1.2864,-0.2016,-0.024207 0.80973,2.2834,3.2074,0.48533,1.151,-0.42786,0.14322,-0.9559,-0.27693,0.90936,-0.89011,0.44283,-1.9094,-0.047229,0.82995 0.3202,3.1985,-1.7167,1.0322,-0.089176,1.8138,-0.75231,-0.14513,0.14613,-0.36651,-1.3292,-0.4643,0.50961,-0.62277,-0.37615 2.849,0.35637,-1.9555,-0.85004,-0.29592,0.95744,0.33371,-0.78066,1.8426,0.020343,0.55416,0.25921,-0.6322,-1.409,-0.79428 0.51727,1.5389,-0.70893,1.2531,2.9102,-1.9543,-1.2991,-0.019261,1.5254,0.2614,0.75444,-0.51844,0.37741,-0.93169,-0.17702 2.3258,1.2763,-0.53915,-2.7792,0.83807,-0.82903,-0.26004,0.30044,0.0035472,2.3099,1.5863,0.1925,0.38178,-2.002,1.3214 2.8833,0.18448,0.81905,0.6208,1.0975,1.1056,-1.6591,-1.4095,1.821,0.2289,-0.41889,0.021723,-0.0066891,0.59464,-0.53833 3.3697,-0.18886,1.1165,0.70647,2.1112,2.7684,-0.90114,-0.88583,-0.13327,-0.92608,-1.0414,0.73359,0.99248,0.74516,-0.28378 -1.0377,2.8822,-1.2643,0.95062,0.66266,0.30096,-1.6322,2.5675,0.86636,-0.71427,-0.63364,-0.50277,-0.40715,0.41873,-0.88622 0.95996,1.6749,-0.47884,-0.82457,0.93489,-1.5674,-2.4549,0.96548,0.69164,1.2611,1.1711,-0.8515,0.88082,-1.1577,0.19812 -3.2268,2.6446,-0.60024,0.053673,-0.040517,0.18184,1.115,1.5433,-0.515,0.18501,-0.06115,1.0862,0.086425,0.063114,0.30988 2.308,-0.44465,0.91311,1.4043,0.9407,3.3743,-0.14784,-0.62521,-0.58949,-1.3969,-2.2007,0.6332,0.87348,0.80398,-0.22908 -0.55497,2.9621,-0.47467,0.58151,-0.03227,2.0354,-0.51342,0.54654,-1.5233,-0.34397,1.5412,-0.64175,0.61639,-0.037601,-0.81555 3.9407,-0.34993,-0.97623,-0.35745,1.2814,1.6213,1.1911,-2.2018,-0.58426,0.53728,1.0006,-1.3254,-0.76797,-0.60137,1.6439 3.8363,-0.25944,-0.68805,0.39117,1.3975,0.58879,-0.23469,-2.3772,-0.23997,1.0494,1.6074,-0.63418,-0.36259,0.35892,1.057 2.619,1.1916,-1.5078,-3.2952,1.4946,1.367,0.54822,2.1911,-1.4736,0.43307,-0.34253,1.6762,1.175,-2.1454,-0.91535 4.0328,-1.0132,-2.4484,-0.85116,0.41682,1.4265,1.6291,0.16646,1.4973,1.0697,1.1543,0.93507,-1.2504,1.6631,-0.81366 -3.6246,-0.082055,-0.94039,0.4968,1.1502,-0.29949,1.8199,-0.39894,1.0731,-0.49675,0.55655,-0.40833,-1.3961,0.07954,-0.64658 0.66877,-0.82451,0.34933,2.317,2.2116,2.1549,-0.4477,0.36159,-0.30197,-1.6032,-0.37687,0.019811,1.8972,0.98641,1.4806 -0.36431,2.5654,1.9578,0.13806,0.51683,0.11768,-1.1156,1.2632,0.34048,-0.27025,0.25256,0.70008,0.87202,-1.2674,0.36582 -3.1709,0.48602,-1.2485,0.064486,-0.27815,0.55418,1.4907,-1.1961,0.88542,0.73545,0.87244,0.48681,-0.16763,0.22561,-1.3521 -2.6456,1.5598,-2.0321,-0.20979,-0.7342,1.491,1.0205,0.056287,0.42056,0.76253,0.42341,-0.42814,1.1714,-0.77786,-0.44375 2.0559,2.2577,0.65941,-0.62848,2.2505,-1.3512,-2.0909,0.015635,0.97514,1.497,1.0048,0.24981,0.71263,-0.6628,-0.02704 1.3207,1.3435,2.7379,-0.47276,2.0754,-0.48168,0.083605,-1.1847,0.23414,-0.84266,-0.70733,0.98012,1.077,-0.505,-0.26266 -3.9419,2.5417,0.39186,0.005363,1.1279,1.169,1.7078,1.3612,-1.3914,-0.12395,0.41902,-0.32636,-0.17919,-1.8612,0.12099 1.1537,2.8194,0.026644,-1.148,2.4027,-0.63548,-2.3519,1.5426,-0.60098,0.019495,2.1473,-0.1949,0.82087,-0.80703,-0.45401 1.0647,-0.22998,-2.9657,0.73266,-0.5682,1.2185,0.79891,0.72137,0.684,0.87005,-0.71325,0.80131,0.21246,-1.1593,-0.49547 -3.6772,0.97769,-0.66089,-1.5255,1.5322,1.0366,1.1959,-0.58994,0.47787,-0.84263,-0.021551,-0.5839,-0.25129,-0.41142,-1.5275 2.3778,0.69042,-0.36767,-0.01437,1.9743,0.26825,-0.6166,-0.78151,2.1854,1.0054,-0.2213,-0.16666,2.3534,0.099093,-0.77172 -1.9439,0.25917,-3.6799,-0.10338,-0.83717,0.035847,-0.73116,-0.31886,0.20789,-0.59339,-0.30146,1.1164,0.015898,-0.35055,0.26917 3.1319,2.0706,-1.7117,-0.97517,0.99727,0.5793,-0.36826,-0.46126,-0.55153,2.2028,0.73486,-2.0424,-0.91478,0.086292,0.68976 0.63242,3.0737,-0.72031,0.51848,-0.69372,0.32026,-2.0548,-0.85381,-0.44779,0.48478,0.89993,0.49362,-0.67823,0.62634,-1.6876 -2.6946,-0.00039311,-0.92973,-1.7128,-0.040068,0.44918,0.48683,-2.0421,0.515,-0.12292,-0.51923,-0.43236,1.1962,-1.1352,0.18784 3.9372,-0.55972,-1.4063,-0.70623,0.89314,2.8602,0.38801,-1.4725,-0.87197,-0.084191,0.18106,-1.22,1.0279,0.72167,0.20289 -3.119,-0.20793,-0.17903,-1.3973,-0.22064,1.7211,0.10208,-1.5085,0.57366,0.5765,1.0164,0.028111,-0.21466,0.88736,-1.1693 2.9936,3.1767,1.76,-0.88654,1.9024,-0.37314,-0.69909,-0.7986,-0.096016,0.27348,-0.98011,0.40739,0.32353,-0.7717,-1.4526 -1.3105,2.5597,0.30586,1.7528,-0.66275,0.69102,-0.088589,0.016925,0.46096,1.014,0.10441,1.5117,-0.55563,0.7286,-0.12299 1.3989,3.0087,2.1687,0.16844,1.7551,-1.4597,-0.93995,0.2077,-1.7824,0.92637,0.18957,-0.21049,0.27616,0.12038,-0.70274 -3.0891,0.88833,-1.4235,0.82029,0.32938,-0.22393,1.6585,0.97846,0.7887,1.1775,0.46603,0.16936,-0.44991,-0.19969,-0.3029 0.44914,2.9257,1.1785,0.2477,1.6122,-1.5571,-1.7588,-0.12808,0.96852,0.8446,-0.73738,0.55157,0.16833,-1.1916,-0.18586 0.27725,0.84813,0.39234,0.62529,2.1237,0.25622,-2.1018,-0.31265,0.29504,-1.2416,0.25624,-0.21733,0.33594,-0.6561,0.42864 -2.4153,-0.41283,-2.2955,-0.58208,0.77716,1.5983,-0.47539,-1.5118,-0.55612,-1.0914,-0.43598,0.974,-0.83259,0.47093,-0.2702 1.0291,4.0074,-0.75393,-0.67337,1.785,1.2035,-1.5496,-0.020478,-1.9295,0.18283,0.37324,-1.6552,-0.065579,-0.86377,-0.55166 1.403,2.0465,2.1756,-2.4036,0.2366,0.31683,-0.54415,1.4488,-0.67539,-1.5829,-2.218,0.20649,-0.11749,-0.536,-0.73539 -2.328,2.9589,1.2859,-0.73635,0.16642,0.2146,0.37308,-0.60019,-0.72507,-0.14888,-0.078575,0.52471,0.71644,1.3532,-0.56045 -1.2556,2.5939,-2.3151,1.1788,-0.31123,2.5786,0.045218,1.2346,-0.57926,-0.028016,-0.71717,0.40411,-0.47114,-0.40999,-0.99592 0.81361,3.727,0.7428,-1.7127,1.6114,-1.0824,-2.5265,0.10071,-0.51331,0.37963,0.9737,-0.60596,0.21214,-1.0688,-0.50442 3.5573,1.5135,0.074189,-3.2749,2.3422,-1.4185,-0.43664,2.408,-1.789,1.7324,1.411,0.40346,-0.78776,-0.54313,-0.090806 2.7514,-1.9436,-2.3725,-0.60669,-0.27048,0.33579,2.3481,0.87685,0.65803,-0.54674,1.1036,3.4183,-1.0722,-0.28651,-0.75052 0.21777,-1.4465,2.8827,-0.41777,0.89404,1.0818,2.8203,-0.79353,-0.46904,-1.1125,-1.5824,1.501,-1.3618,-1.2414,-1.2052 2.0594,2.4638,1.5157,0.88137,1.1281,-0.22268,-1.7295,-1.9304,0.5806,0.83231,0.34558,0.057496,-1.334,0.70475,-0.29595 2.4447,1.4289,3.8452,-2.0466,0.57556,0.19776,1.3784,0.75212,0.36766,-0.77096,-0.52744,1.1494,-0.7053,0.16031,-0.94936 1.6372,3.3644,-0.23041,-1.665,1.4733,-0.71055,-2.2152,-0.06325,-1.3223,1.8939,1.4564,-0.70391,-0.8734,0.11552,-0.22778 -1.9188,2.8391,-1.3444,0.57612,-0.26781,0.91228,-0.33876,1.7345,0.21599,0.37502,-0.78596,0.83917,0.77703,0.14626,-0.070841 3.9338,-0.093673,-1.4137,0.26082,1.094,2.2602,0.076996,-2.1901,-0.4133,-1.1571,0.22983,-0.93399,-0.4494,0.91163,-1.065 -2.3195,-2.2775,-0.73464,-0.38671,1.5273,-0.31669,-1.854,0.98785,1.3608,0.72021,-1.3837,-0.2305,0.32956,1.7957,1.202 0.4413,-1.2597,0.92936,1.5218,-0.010397,3.3095,0.59968,0.48472,0.45303,-1.3221,-0.92504,0.075226,1.6079,0.35199,0.93254 2.8948,-0.19222,-0.78435,0.82411,3.0781,1.2555,-0.58706,-0.67897,0.058651,2.1754,1.1746,-0.56375,0.71557,-0.81616,0.30159 4.1378,-2.2264,1.679,-0.34358,3.294,0.69074,-0.93163,1.0648,0.89775,-0.58867,-0.75951,0.67482,1.5731,1.0384,-1.2579 0.80127,2.7622,2.8363,0.29517,-0.64773,0.36065,-0.75113,-1.0635,0.42665,0.11173,0.084531,1.0091,-1.0051,0.65935,0.15202 3.1067,0.90779,-1.0632,0.21836,0.1965,0.92881,-0.84582,-0.67553,0.98643,0.74997,-0.68222,-0.21867,-0.75448,-0.50425,-0.29819 1.5164,1.8063,-0.47624,1.2833,-0.93503,0.93842,-1.5248,-1.3712,0.39835,-0.51889,0.092651,-0.53274,-0.15063,1.8358,0.24968 -2.2922,1.22,1.7245,-0.93866,0.18564,-0.1857,1.3951,0.37361,0.49681,0.98366,-0.44739,0.45629,0.73696,-2.0536,0.91568 -1.4838,3.1975,0.51337,-0.0032866,-1.4191,1.1008,0.38569,0.13156,-0.76424,-0.021994,0.32022,1.0322,0.16691,-1.3339,0.71599 3.167,0.32745,-0.13904,-3.3065,1.4779,-1.2159,-0.20733,0.91744,0.10163,1.728,2.163,0.45586,-0.54921,-1.434,1.2721 2.6092,1.8694,0.67873,-2.9883,1.8758,-1.97,-2.1743,1.2101,-1.2465,0.28043,2.0203,-0.84623,-0.66921,-1.1278,0.37629 0.54559,2.7146,1.9028,0.45334,0.56886,-0.24659,-1.3144,-0.067399,1.2836,0.00058754,0.59692,1.5467,0.34703,0.76698,0.24618 0.13879,3.2197,-2.448,-0.86736,-0.70931,1.9345,-0.65143,0.1421,-1.4452,0.65015,-0.073967,-0.76536,0.081376,-0.35787,-0.32828 -0.0036358,-1.4092,2.108,0.69162,-0.81346,1.1163,1.6576,-1.3924,0.8632,1.2487,-0.77657,-0.29628,-0.67118,0.96186,-0.24886 3.543,-0.91163,-0.38262,-1.9932,2.2267,-1.1525,-0.0046715,2.2341,-0.42632,-0.56581,-0.018478,0.77317,1.8911,-1.6588,-0.9886 4.1094,-1.7467,-0.71538,-0.73911,1.5465,1.5911,1.8914,-0.62024,-1.0867,0.16292,1.0756,-0.9373,-1.8212,-1.4144,1.6265 0.30716,3.8067,-1.4021,-0.67642,-0.97761,1.4104,-0.98633,-0.097095,-1.6206,-0.36692,-0.9508,-0.58467,-0.26744,-0.54261,-0.82239 1.0158,1.0938,0.96329,0.51873,-1.0711,1.4853,0.27009,0.47963,1.7742,0.80924,-0.84141,0.39264,-0.45943,-1.2077,0.19817 2.18,1.7845,0.094137,-1.2901,0.68704,1.3334,0.26184,0.1418,1.0612,0.37538,0.021794,0.61003,0.9155,0.17902,0.73011 1.6368,4.207,0.047961,-1.5175,-0.33571,0.32822,-0.51664,-0.55916,-1.2271,-0.20772,-1.1336,-1.1389,-0.76767,-0.20847,-0.74202 2.8309,2.3886,0.010077,-2.157,0.19568,-0.3045,-1.5269,0.085863,1.2955,-0.36968,-0.10848,-0.38458,-1.2358,-0.56147,-0.7055 -1.2827,-1.6638,2.4191,-0.65121,0.62585,-0.50321,1.3486,0.95605,1.6104,-0.15042,-0.15721,-0.45702,1.565,-0.91083,-0.0085446 0.15002,2.5977,-1.4069,-1.5015,0.98689,-0.91287,-1.9938,1.6149,-0.69536,0.32899,1.7942,-1.9317,1.7441,-1.6071,0.66898 -1.6068,1.7486,1.5776,0.96354,0.42374,-1.3228,-0.063628,1.8871,1.8416,-1.0981,0.41695,0.58525,-0.04772,-0.72084,1.21 -3.134,-0.10228,-2.4071,-0.73343,-0.36734,-0.99611,0.42001,0.59571,-0.19213,-0.80452,0.048743,0.99158,-0.3026,-0.81006,-0.67706 1.1995,2.6602,-0.046781,-1.5935,-0.1054,-0.35586,-1.608,0.65881,0.25771,-0.63401,-0.50585,0.044902,1.3983,-1.781,-0.0039243 -1.1389,-1.8863,0.82224,0.46692,0.29275,0.6719,0.80023,-1.05,2.6102,0.13207,-0.59578,-0.63172,0.70646,-0.75127,-0.19223 0.41959,-0.35566,2.9257,-0.4276,-0.56287,1.8386,1.0563,0.5076,0.8163,-0.46323,-0.57488,0.9486,0.8841,-0.02726,-0.77022 1.3528,1.2215,-0.27394,2.0124,1.1759,1.6551,-0.38935,-2.0513,0.35197,-0.96463,-0.87752,1.0087,0.75574,0.055562,-1.0085 0.93363,0.16472,-2.3573,1.7077,0.91432,0.43573,-1.4733,-0.65878,-0.052831,0.6723,2.5885,0.18491,-0.40342,0.36768,-0.28513 0.19746,2.2794,3.4394,-1.5174,-0.81493,0.81755,-0.023787,-0.33655,-0.086694,-1.5752,-0.17405,0.32748,-0.96322,0.77265,0.81459 -0.68332,2.6974,0.088831,0.72156,0.5058,-1.2094,-1.7311,0.95802,0.092398,1.1337,-0.20459,0.68478,0.6324,-1.4953,-0.6525 -1.9713,2.7189,1.3093,0.064147,-0.20444,0.021625,-0.27078,1.5078,0.5224,0.63184,0.5202,0.74046,0.39993,-0.96143,1.004 2.0151,2.4919,0.63007,0.065724,0.45624,-0.44027,-1.9691,-1.5989,0.0092981,1.5702,0.603,-0.58789,-0.76729,0.050103,-0.39752 -0.25135,2.6266,0.36481,-0.93991,-1.0659,1.3483,-0.21838,0.56067,-0.40156,-0.74611,0.44598,-0.010631,-0.35697,-0.97353,1.0068 2.2589,-1.0181,0.18667,-0.89147,0.81581,3.3531,1.3002,-0.84513,-0.43094,-0.61505,-0.095709,1.0315,2.0351,0.77718,-0.063906 -1.2372,3.4564,2.0679,-0.73664,0.68733,-0.050408,-1.1546,0.21051,-0.7358,-1.5905,0.31443,0.79404,0.50396,0.1854,0.0034225 -1.3196,1.4859,1.1631,0.36431,-1.4188,0.7908,0.3581,-0.17912,1.8825,0.031059,-0.04726,1.0978,0.27046,-0.3014,1.1488 -0.55452,1.5342,1.577,0.58229,-0.086417,-1.7737,-0.79733,2.2659,0.19448,0.1533,-0.59706,0.098766,0.56847,-2.0963,0.77801 -1.0963,1.9557,-1.751,2.1516,1.0839,0.38288,-0.50969,-0.01375,-0.12591,-0.99476,-0.48764,0.58869,-0.35248,0.20438,-0.2478 0.10088,3.0772,1.221,0.2402,2.0013,-1.6377,-2.041,1.4699,-0.16014,0.0013933,0.092956,0.29816,0.5007,-1.6941,-0.055718 0.96071,2.6892,0.34608,0.37176,0.86553,-0.38931,-2.3505,-0.98383,1.1273,0.57236,1.017,0.75567,0.094787,0.78294,-1.0107 -0.75396,1.5408,2.3258,1.1032,-0.54709,0.083694,0.14167,-0.65082,1.7861,-0.018982,-0.49947,1.8249,-0.099861,0.29559,0.30768 -2.7892,-1.1482,-1.9792,-1.0991,-0.31793,-0.30239,-1.067,0.057697,-0.20446,-1.1121,-0.73497,-0.977,0.54336,-0.74685,0.95806 1.3391,-0.083921,-0.1928,2.4319,0.69273,2.0679,-0.8581,-1.3003,0.26745,-1.5552,-0.58045,0.35273,1.2617,0.67394,0.059722 3.9657,-1.2941,-1.7122,-1.1809,1.8982,3.1923,2.1766,0.31978,-0.26938,-0.93586,0.2454,0.14655,0.19165,0.043579,-0.13939 0.016338,0.1074,3.2881,-0.39498,-0.30536,0.48118,1.1064,-1.2834,1.6412,0.68384,0.12598,0.11787,-0.3484,1.1304,-0.15142 0.73337,1.9958,1.9394,-0.51118,-1.7163,1.4003,0.59357,-0.78813,0.5274,-1.5491,-0.4333,0.53442,-0.48343,0.034777,0.72973 -0.43125,2.7159,2.2889,0.28798,-0.86549,0.91369,0.31414,-1.0081,-0.065697,-0.091479,0.016407,0.81022,-1.4714,0.7566,1.0045 0.33524,0.20031,2.5002,1.0687,-2.1676,0.72667,-0.38576,-0.56319,0.43523,0.25088,0.4803,0.0040205,-1.2819,1.7479,0.74187 -0.95778,-1.7383,3.9897,0.22528,0.58323,0.2637,0.54615,0.96688,1.5738,0.033748,-0.44,0.077828,0.95737,-0.14749,0.20825 -1.7829,-2.2581,1.0725,1.2975,0.1969,-0.60472,0.84282,1.0525,1.6176,0.33729,-0.18381,-2.138,0.19323,-0.70876,0.35305 0.94536,0.10452,2.5115,0.025996,-1.6365,-0.1478,1.4335,-1.3895,0.57477,0.1177,-0.67973,-0.74624,-1.3399,0.4514,-0.60415 1.8888,-1.0657,3.0655,2.2958,1.0409,2.5509,0.024699,0.35881,0.090914,0.37759,-1.0353,0.45273,0.67932,1.3247,0.38544 -0.024897,-0.48908,2.9022,2.1873,0.76586,0.53919,1.0518,-0.16641,1.6781,-0.75152,-1.2686,0.54663,0.36671,-0.64332,0.48292 -1.8781,-0.67557,2.8965,-1.1049,-0.57404,-0.35227,1.162,-0.9067,0.60129,0.024315,0.42213,0.25848,1.1012,-0.73729,-0.94084 -0.85599,0.04417,4.0743,-0.6323,0.24786,-0.12177,1.0388,-0.39555,1.7393,0.13494,-0.15695,0.53955,0.49401,0.22379,0.25315 -0.66778,0.93734,1.1601,-1.7512,-0.83065,1.8267,1.0778,-0.80587,0.60309,-1.2419,0.37134,-1.0458,0.88256,-0.94996,0.61731 -2.7819,-0.30325,1.2205,-1.9504,-0.19192,1.0992,-0.022526,-1.0133,0.89975,-0.8825,1.0109,-0.65194,0.82995,-0.084019,0.24852 -1.2007,-1.3085,1.9192,0.21208,-0.068185,0.7868,0.30794,-0.26108,2.2373,1.2611,-0.55782,-1.7169,0.83332,0.27192,0.60159 -0.18994,-3.4991,3.0002,0.94122,1.9404,0.80371,1.3128,-0.21122,0.74625,-0.91815,-0.91883,-1.0141,0.82416,-0.82835,-0.27269 -1.603,-0.31496,3.7646,-1.4846,-0.17486,-0.48878,0.5561,0.55016,1.5432,-0.65556,-0.1238,-0.54171,0.91514,-1.2448,0.74398 -0.27785,-0.081953,2.449,-1.1822,-0.94028,1.2099,0.76279,-0.88059,1.9777,0.59061,-0.18879,-0.33046,0.48222,0.64131,-0.16103 -2.7655,-2.3793,0.49966,0.68057,1.3356,-2.101,0.52007,0.33317,0.86783,-0.58433,-0.16073,-1.993,-0.93165,0.041313,0.18279 -1.7725,-3.1375,2.0725,0.010163,0.58108,-0.94306,-0.022384,-0.02719,1.8072,0.18379,-0.80857,-1.4498,0.36455,-0.60633,0.20792 -2.7964,-0.10654,0.50402,-0.40192,-0.52062,-0.58954,1.1249,-0.92318,1.757,0.53445,0.028863,-0.42457,1.1346,-0.8791,0.10334 -1.256,-2.261,1.3135,0.93033,-0.31739,-0.38978,0.084827,1.3873,1.6773,0.46767,0.06347,-2.1127,0.059847,-0.58137,0.62567 -3.2518,0.89317,0.57995,-1.3419,-0.20983,0.20474,0.91412,-0.61368,0.34473,-0.81701,0.60915,-1.1165,1.5164,-1.0386,0.55868 -3.838,-0.48849,-0.7453,-1.4573,0.0060989,-0.60296,-0.16244,-1.0212,0.13136,-0.47071,0.12476,-0.55239,1.1376,-0.39834,-0.063161 -2.6057,-0.78443,0.18724,-1.0174,-0.75736,1.0529,-0.75766,0.071617,1.3043,-1.4197,0.67207,-1.1637,1.4532,0.56641,0.29005 -2.4551,1.9274,-0.44357,-0.85337,-0.63922,1.7202,1.1129,-0.79474,-0.39435,0.25849,0.65541,-0.59712,1.4464,0.56697,-0.72449 1.9014,2.4847,0.076505,-0.17486,-0.96098,0.72801,0.056819,0.19617,0.25824,-0.54544,-0.50963,0.7894,-0.22704,0.68822,0.15048 -2.5802,-0.24328,1.0239,-0.60938,-1.208,1.8057,0.23447,-0.96705,1.0498,-0.22231,1.3689,-0.089717,0.25768,1.2227,-0.5979 0.38935,2.0567,1.8986,-0.58236,-0.3925,0.32148,0.51782,-0.20071,0.91604,-0.44645,0.059427,1.3038,1.7649,0.25469,0.64117 -1.3419,0.73932,2.6118,0.29754,-0.83783,0.43036,0.29352,-0.58808,2.1903,-0.25199,1.0518,0.71819,0.38888,1.0631,0.58187 -1.8099,0.97033,0.79657,-1.5425,-1.1958,1.0707,1.0127,-1.3989,0.40983,-0.58655,0.44487,-0.70783,0.0043929,0.30529,-0.48191 -3.4041,-1.3748,-0.94265,-0.83534,-0.35117,-0.1185,-0.90955,-1.0354,1.2852,-0.52104,0.10246,0.16418,0.40578,0.76369,-0.23836 -3.3435,-0.36543,-2.0131,-0.77425,-0.066653,0.43235,-0.62717,-1.2847,-0.39204,-1.1335,-0.14079,0.79508,0.96285,0.51422,-0.27367 -1.4048,-1.8338,-1.1254,-2.3543,-0.62103,2.2814,-1.6148,-1.6461,-1.7214,-0.64317,-1.3868,-0.14992,-1.3888,2.0973,0.76492 -3.0801,-1.5233,-1.7853,-1.3485,0.63254,1.8549,-1.168,-1.71,-0.30864,-1.1627,-0.7535,1.09,-0.61843,1.0837,-0.6176 0.66394,4.0107,2.0915,-1.4591,0.21224,0.36501,-0.10545,0.57966,-1.1084,-1.099,-0.98486,-0.031574,-0.091641,-1.7688,0.46243 2.3855,3.4451,1.2738,-2.1905,-0.10637,0.62256,-1.581,-0.44633,-0.32531,-0.64826,0.26905,0.35561,-0.86153,0.65016,0.20557 -2.1689,2.1443,2.4892,-0.96537,0.59894,1.446,1.6448,-0.48271,-0.63159,-1.7825,0.33084,-0.89763,0.080938,-1.313,0.91152 -3.0359,0.71449,0.67829,-1.4776,1.3715,1.5869,0.79481,-2.3186,-1.5036,-0.57013,0.69258,-1.2342,-0.50466,0.23807,-0.64906 -0.27533,1.6867,3.6358,-2.1117,-0.2271,1.0619,0.18537,0.66113,0.39586,-0.18392,0.46765,-0.61128,0.0045174,-1.2649,0.83133 1.0155,1.8461,3.378,-2.9071,0.13913,1.386,0.39926,0.31961,-0.22839,-1.0465,1.0082,0.76021,0.089172,0.89072,0.35469 2.7216,2.6648,1.8501,-1.6116,0.18336,-0.08483,-0.45387,0.49215,0.92466,-0.32401,-0.86958,0.98347,-0.60067,-1.3059,-0.37965 1.9476,0.59931,3.8864,-0.74356,0.2951,0.81218,0.046842,0.76695,1.9489,-0.062293,-0.42499,0.63866,-0.020438,-0.19657,0.62631 1.8792,-0.58299,3.5415,-0.0041939,0.84344,0.74694,-0.096353,1.4195,2.2171,-0.42148,-0.98339,1.0229,0.76519,-0.33813,0.58061 -2.636,3.2831,1.8482,-0.61611,-0.23337,1.1783,1.1213,-0.093098,-1.1218,0.26375,0.72697,0.65212,-0.097297,-0.32899,0.10757 4.7179,0.40002,1.9983,-1.6339,0.62285,0.85739,-0.02964,0.47447,0.99264,-0.0083243,-0.61401,1.3815,-2.0486,1.7801,-0.38173 1.8737,2.3305,2.7247,-0.41191,0.404,-0.46778,0.083869,-0.0018586,1.5107,-0.39429,-1.5538,1.2967,-0.62021,-1.2138,-0.27006 0.84732,3.2144,2.6731,-0.91459,-0.25834,0.44743,-1.0756,-0.56864,0.41231,-0.67126,0.29611,1.2842,-0.10816,0.58981,0.40792 -2.364,0.51475,1.6661,-1.1547,-0.98615,1.5808,0.83521,-0.34975,0.95009,-0.77088,0.015309,-0.65679,1.1642,0.13407,0.48241 -2.4578,0.96873,1.0793,-0.046455,-0.50649,0.1656,1.1421,0.0038623,2.2261,0.18238,0.43561,-0.054563,0.62934,-0.75522,0.97205 -1.1947,-0.54462,1.6736,1.0551,-0.37274,-0.16444,0.83718,1.2026,2.3993,-1.0255,-0.42487,-0.26435,-0.0018467,-1.0074,1.2004 -2.8683,-0.66689,0.35414,-0.10162,0.58263,0.15139,0.56725,-0.52806,2.3372,0.45607,0.58452,-0.66657,-0.31202,-0.33459,0.3193 -2.8955,1.5381,1.7715,-0.56509,-0.1759,-1.0065,1.1435,0.82711,1.0091,-0.53118,0.35411,-0.3997,0.86991,-1.3773,1.273 1.0342,1.2851,2.3568,1.0291,1.1688,-0.17939,-1.2317,0.45344,1.8422,-0.19494,-0.63993,0.6236,-0.40772,-0.64985,1.1326 -0.97199,-1.7779,3.2557,0.2436,0.71817,-0.12394,1.0425,0.61465,2.2237,-0.43301,-0.57656,-0.2753,0.7884,-0.39956,-0.3879 -0.061406,-0.83008,2.1247,-2.7127,-0.47717,1.513,1.5951,-0.19196,1.3828,-0.89842,-0.29715,-0.28862,0.17693,-0.28669,-1.4707 1.9378,2.8969,0.19781,-0.38864,-0.54221,-0.61974,-1.3091,0.53098,0.11424,0.27365,-1.238,-0.78649,-2.0069,-0.84101,-0.59317 0.4073,1.8422,0.48784,2.07,2.2052,0.57648,-1.3831,-1.4505,0.25346,-1.3139,0.44854,-0.11553,0.27259,0.46408,0.035591 0.90792,2.3608,1.047,1.976,2.1825,0.72163,-0.75063,-2.1311,-0.98239,-0.29421,-0.70695,0.0079364,0.16908,-0.53464,0.14194 -1.0052,0.5454,1.8796,2.2418,2.3519,0.22718,0.88357,-0.62946,-1.3094,-1.7589,-0.71448,1.4011,0.79743,-0.45487,0.58543 0.57183,3.702,2.1798,0.21096,-0.055575,-0.30381,0.016586,-0.71941,-0.30801,1.5063,-1.4604,0.91653,-1.1537,0.014087,-0.046207 0.88106,1.5567,3.735,0.48898,0.4309,0.29316,0.58536,-1.333,1.352,-0.28543,-1.053,1.1473,-1.2305,0.16412,0.3416 1.8671,1.9439,2.7213,1.548,2.2685,0.13816,-0.90956,-1.4894,0.38551,-0.057859,-0.21073,0.35281,-0.3723,0.39015,0.1586 2.7003,2.8225,2.0015,0.12604,1.9833,-0.37045,-0.66766,-1.3787,0.2716,0.88847,-0.94579,-0.12573,-0.86916,-0.94809,-1.0033 0.052985,3.3283,2.415,-0.77286,-0.80039,0.8849,-0.47087,-0.81021,-0.60999,-1.1233,0.322,1.1819,-0.82235,0.96678,0.39875 -1.3419,3.8259,1.1478,-0.56734,-0.45063,0.71523,-0.26068,0.12603,-1.6282,-0.22226,-0.39587,0.97441,-0.66181,-1.0876,0.57236 -0.79344,3.5585,0.98764,-0.16799,-0.45623,0.94281,-0.92145,-0.3246,-0.33682,-0.99403,-0.19293,1.1695,0.10934,-0.28736,0.0060461 -2.1631,3.5044,-0.38291,0.35886,-0.20229,0.51757,-0.59991,2.0359,-0.38793,-0.031962,-0.45572,1.3084,0.26605,-0.456,-0.37823 0.43493,4.0026,0.37953,-0.13446,0.355,0.0051444,-1.8653,-0.11552,-0.57921,1.3268,-0.11889,0.0068014,-0.38833,0.37961,-0.98281 1.2195,3.2658,-1.3178,-0.34645,-0.93322,1.9554,-1.6363,-0.13002,-1.8084,-1.2316,0.4812,-0.69894,-0.2518,0.04642,-0.44049 -3.0736,2.7973,0.55742,-1.1921,0.047339,1.7344,1.8308,-0.21539,-1.7281,0.35345,0.46209,-0.68266,-0.014952,-0.44325,-0.0012658 -2.0355,1.0155,1.7481,0.94102,0.42497,-0.2898,0.55157,0.93075,1.4238,-0.40421,0.6159,0.4163,-0.77158,-0.80187,1.4569 0.81198,2.7598,2.6534,-0.22042,1.0325,-0.92955,-0.69329,0.52799,-0.54047,0.46864,-0.68785,0.74278,-0.63553,-0.75528,0.87799 2.2123,2.715,-1.3373,-2.7695,-0.36542,0.78388,-1.8301,-0.75182,-0.63352,0.11141,1.9492,-1.0552,-0.26596,0.12978,0.058729 2.8798,2.6177,-0.20672,-0.49226,1.0738,-0.51045,-0.48423,-1.5746,1.101,1.4787,-0.99857,-0.37795,-0.35384,0.0058031,-1.5522 0.73515,3.6583,-0.18593,-0.45447,-0.18192,0.71775,-2.1718,0.6573,-0.72621,0.66173,-0.38225,-0.65721,-1.0708,0.30808,-0.4943 0.93549,2.2245,1.108,0.95353,0.61295,0.25405,-1.2771,-1.5366,0.67018,0.26283,-1.0281,0.37984,-1.0701,-0.78455,0.37099 0.39085,1.8531,0.35915,1.9262,0.87099,1.5851,-1.1511,-0.31799,0.14161,-0.38532,0.78689,0.61883,-0.31834,1.9946,-0.22677 -1.8533,0.73262,0.25906,-0.25667,-0.30987,0.84179,1.2291,-2.1136,1.2572,1.9906,0.26632,-0.10489,-0.079392,0.62028,-0.34812 -0.13269,-1.1973,2.3978,-0.035041,0.14448,0.97719,1.0129,-0.9406,2.2061,0.91492,-0.66744,-0.70654,0.80356,1.2072,-1.1193 2.692,1.3752,0.38305,0.49361,3.5609,1.5151,0.63882,-0.642,-1.9483,-1.1299,-0.87686,0.52527,2.2737,0.13754,-0.38743 -0.32104,-0.90305,1.924,-1.8393,2.2968,0.82494,1.4116,-2.4578,-1.9872,1.1042,-0.97888,-1.1321,-0.73701,-1.0466,0.17625 -1.8479,1.668,1.1408,-1.3196,-0.297,1.4982,0.52735,-0.20277,0.58585,-0.71821,1.2278,-0.46012,0.97518,-0.88927,0.50253 3.448,0.3855,0.6006,1.4465,2.798,1.3005,-0.12689,-1.4196,-0.36068,0.16544,0.59688,1.1011,0.9843,0.34427,0.079431 -0.90858,0.1115,1.4046,-0.31964,-0.60137,1.9925,0.29367,0.21362,1.9167,0.68488,0.81017,-0.45786,1.9034,1.8533,0.21394 0.69382,2.0597,3.4268,-1.9904,-0.56315,1.026,0.49983,0.14979,0.50612,-0.34114,0.48832,0.32893,-0.48699,0.63834,0.25121 4.4838,0.83349,-0.2256,0.64558,1.7962,1.37,1.0413,-0.63379,-1.1048,-0.071008,-0.96909,0.21036,-1.7366,0.16634,-0.89209 -3.4215,-0.29176,1.1154,-2.4177,1.0535,1.4104,-0.45104,-0.9758,-0.055804,-1.0105,0.69093,-0.49805,0.45292,0.80428,-0.11321 -0.1906,0.95615,4.1847,-1.3072,0.033874,0.17011,0.5476,0.53481,1.394,-0.42005,-0.25584,0.42523,0.395,-1.4861,0.89596 0.91621,3.1443,0.53199,-0.18872,-0.5019,-0.74293,0.12092,-0.56542,0.84699,-0.032514,-2.4952,0.84362,-0.093395,-0.60508,-0.76785 1.1402,0.47377,1.9649,0.52696,-0.78202,1.5283,1.6173,-0.054883,1.8476,-0.26992,-1.1139,1.214,-1.0758,-1.3502,-0.31943 -1.1058,0.92457,1.77,2.0145,-0.48468,0.60702,-0.59873,0.17483,1.0855,0.63307,-0.98085,1.1876,0.023879,0.75619,0.53741 0.56764,1.1949,1.6725,1.5572,0.19615,0.31476,-1.0073,0.39199,2.2629,-0.49721,-0.23615,1.2906,0.93301,0.74997,0.15837 -0.43492,-0.70841,2.1349,2.7764,0.65755,1.4708,0.15915,0.44795,1.1636,-0.098848,-0.074841,-0.15301,0.46974,0.68753,1.5552 2.7167,2.2754,0.88589,-0.054915,0.76074,-0.70206,-0.47451,-0.99954,1.336,0.17092,-2.0378,0.43875,-0.999,-1.3566,-1.5554 3.3424,0.0050775,-0.49043,-0.39868,2.476,1.5226,0.43958,-2.4052,-0.031346,-1.6184,-0.88982,-0.74848,0.3051,-1.4311,-0.80856 0.59962,1.635,1.2613,1.1396,-0.33163,0.08623,-1.5282,-0.39211,2.1025,-0.52881,-0.76403,1.2591,0.98642,-0.10876,0.17233 0.26801,2.3045,2.0089,2.3534,1.4052,-0.36329,0.061688,-1.9495,-0.66481,0.63441,-0.71371,1.3557,-0.92245,0.10043,0.23601 2.3532,1.7154,-0.85458,-4.4854,1.1796,-0.73366,0.6554,0.82054,0.18876,0.29472,1.4129,0.35461,-0.65104,-2.0619,1.215 0.16437,3.3846,-1.7516,-2.0794,1.4345,0.95157,-1.1313,0.44976,-1.3349,0.57747,1.5335,-1.1809,0.94919,-1.6604,0.53567 0.65042,3.0142,-2.316,-1.4697,1.7762,1.7641,-0.30994,0.15243,-1.0119,0.63233,1.1592,-1.2059,0.31985,-1.5869,0.69024 2.4011,1.5563,-0.16404,-1.6928,1.7366,-1.1139,-0.52271,0.12006,0.53955,2.4341,0.56351,-0.29015,0.035566,-2.1678,-0.14991 0.15679,4.256,-0.47566,-1.7637,0.63632,0.12169,-1.8283,0.30391,-1.5795,0.65966,-0.24726,-0.64514,-0.0033485,-1.127,-0.62753 2.8243,1.81,-0.013889,-4.3415,2.1511,-1.4014,0.44574,1.0004,0.02819,0.065361,0.91197,-0.27689,-0.87503,-2.1684,0.236 2.134,-1.4117,0.13321,0.30461,3.8955,0.11754,1.0904,-0.075544,-0.67351,1.3313,1.0558,-0.25776,-0.21074,-1.1722,2.7057 0.55599,2.4891,-0.88099,-1.1729,0.89519,-1.5417,-1.9585,-0.03233,0.39985,0.65923,1.0689,-0.8984,0.59157,-1.4632,0.18515 1.5961,1.9455,-0.99087,-0.69679,0.84184,-0.35606,-0.8186,-0.41876,0.70513,2.8223,-0.058695,-0.46392,-0.1955,-1.4226,-0.0016258 0.37684,2.7145,-1.8637,-2.4592,0.068605,0.74049,-0.78536,0.17257,-0.7315,1.2384,1.6996,0.043124,1.2253,-1.5534,1.0545 -0.51916,3.6571,-1.2929,-1.124,0.80286,0.42809,-1.9843,0.54686,-0.65473,0.3797,0.64963,-0.65989,1.5358,-1.3909,-0.44495 0.84243,2.9952,-2.2189,-3.1128,0.52194,0.79623,0.11011,0.16699,-1.1479,0.95678,1.3789,-0.33219,0.30805,-1.7496,1.3778 1.004,3.0383,-0.31049,-2.4828,1.1734,-1.1236,-1.5053,0.13223,-0.054276,1.3311,0.95418,-0.88816,0.04406,-1.5329,0.26615 -1.2582,-1.5854,1.9996,-2.6004,0.78079,1.8993,-1.6418,0.6314,-2.069,-0.76321,0.6256,0.51102,-0.30705,4.1407,-0.48695 -0.0035743,-1.589,2.9273,-3.2961,1.5053,1.1079,-1.0601,0.93107,-2.1658,-0.084775,-0.060847,0.37883,-0.44823,4.2251,0.37783 -0.026336,-1.5435,3.016,-2.615,1.3964,0.66465,-0.81469,0.83684,-2.8226,0.57057,0.10492,0.51646,-0.52232,4.6718,0.31181 -0.017992,-2.3684,3.2015,-2.2316,1.7877,0.71568,-0.70266,0.25228,-1.4653,1.0306,-0.12624,-0.30211,-0.41652,4.0864,0.31648 2.4389,-1.8187,3.2136,-3.1908,1.1439,0.3511,0.84749,0.26092,-1.0971,0.77504,-0.54769,0.46547,-1.7174,3.8504,0.1127 0.56421,-1.1792,3.4924,-2.6214,0.89515,0.54321,-0.58425,-0.16585,-0.82192,0.91355,0.12333,0.41248,-0.45858,3.9739,0.30452 0.015504,-2.6475,2.7594,-1.1098,1.9002,1.0577,-0.87655,0.08181,-1.8856,1.2368,-0.15591,0.074995,-0.45219,4.5076,0.58897 -2.3445,-2.4489,0.73079,-2.12,2.3312,1.6482,-1.172,2.0753,-1.8863,-1.3074,-0.62679,0.48131,0.061858,3.2414,-0.3372 -2.4678,-2.7149,1.1273,-1.4633,1.3965,0.94306,-2.0669,0.87813,-0.46739,-0.75011,0.1612,0.55874,-0.5837,3.3563,0.14666 0.2459,-2.3483,2.6306,-1.4678,1.6456,0.39099,-0.84709,0.53462,-1.921,1.9404,-0.61288,0.56084,0.21343,3.9137,-0.21672 0.5914,-4.1061,2.466,-0.51019,1.9263,1.114,-1.5418,-0.2904,-1.6697,1.3774,-0.87705,0.25971,-0.28917,2.9085,1.0154 -2.1569,1.8876,1.9246,-1.4582,-0.89827,1.0964,1.0472,-0.69851,0.11505,-0.1078,0.60714,-0.22481,0.39136,-1.1973,0.86368 2.4187,1.1148,2.8219,0.60893,0.76457,0.83924,-0.30715,0.21076,1.8665,0.17127,-1.5092,0.75584,-0.29478,-0.20563,0.33645 -0.49244,-0.45758,1.826,-2.8116,0.068627,0.99391,0.45657,-0.60708,1.0678,1.6576,-0.97541,-1.2053,0.16137,0.26928,-0.2433 -3.4794,1.3303,1.5189,-1.1799,-0.12564,-0.51273,1.6453,-0.33794,0.081276,0.045299,0.37159,-0.10946,1.0635,-1.2383,0.75532 -1.9745,1.287,2.3208,-1.0867,-0.9578,0.37089,1.1691,-0.29019,1.2694,0.18264,-0.1461,0.639,0.12577,-1.4714,1.1971 4.329,0.59336,1.7767,-2.6125,-0.16637,1.1684,-0.85078,1.2895,0.31989,-0.68202,-0.83987,1.3517,-0.88789,2.2801,-1.7638 -0.88458,1.9239,2.9343,-1.1116,-0.44849,1.6716,-0.75073,0.48806,0.26693,-1.1816,0.50238,0.69864,0.62175,0.81474,1.2028 -0.60021,0.16615,3.4492,-0.34028,0.31762,0.083669,1.9484,-0.75364,1.864,0.70125,-1.017,0.093196,-0.54294,-1.5627,0.24131 -0.13974,0.85423,3.6003,-1.4697,-0.53594,1.1522,1.2939,-0.31956,1.3961,0.60775,-0.71284,0.077489,-0.76913,0.37852,0.24337 -1.697,-1.1732,2.2147,-1.0329,-0.30552,0.49074,1.1382,-2.2669,2.0293,0.99697,-0.52609,-0.28392,-0.62445,0.46379,-0.18663 -1.749,-0.78204,2.9118,-2.0727,-1.0308,1.9141,0.19662,-0.9768,0.55102,0.65502,0.44599,-0.69613,-0.25052,1.9078,0.096443 0.57094,-1.176,3.3404,-1.2835,-0.29781,1.3149,1.8079,0.47135,2.1354,0.72044,-1.0405,-0.3553,-1.3023,0.14494,0.01861 -1.5294,0.91258,3.3793,0.083426,0.34718,-0.32514,1.2928,-0.70073,1.2101,0.71784,0.1767,0.75868,0.15272,-0.42988,0.1207 -2.1488,3.5575,0.89782,0.46767,0.14922,0.84161,-0.58637,2.2752,-0.79675,0.2246,0.60185,0.92721,-0.54123,0.095202,-0.94884 -2.3071,2.4936,-0.40122,1.4035,0.49786,-0.16007,0.35664,2.7337,0.77178,0.35361,-0.42674,0.59237,-1.5685,-0.46293,0.0059683 0.99201,2.0467,3.2693,0.30278,1.3368,-0.3156,-1.3563,0.018402,1.3438,-0.40557,0.28955,1.5647,0.21729,-0.22918,0.15526 -2.3989,2.735,1.4315,0.41611,-0.35014,0.59113,0.55846,0.51624,0.10959,0.78409,0.92954,1.3563,0.10668,-0.66241,0.335 2.8209,1.2363,0.16591,0.36503,1.8568,-0.43117,-1.0713,-2.1671,1.0938,1.4614,1.4395,0.3227,0.12426,0.57196,-0.44164 -1.8906,1.4357,1.2096,1.9291,0.60931,-0.77515,0.54722,1.1083,2.0649,-0.59855,0.23686,0.65813,-0.59253,0.41457,0.63677 1.3281,0.52823,-1.3094,0.17282,2.902,-0.26048,-0.58974,0.16008,1.3592,-0.031723,1.1854,0.67735,1.6494,-1.3561,0.7135 -2.0136,3.4134,0.14178,0.58136,0.80586,0.064289,-0.55581,2.8426,0.35814,-0.46342,-0.25145,0.91902,-0.24315,0.35424,-0.25717 0.30068,2.1943,1.7411,1.5243,0.68448,0.5487,0.50896,-0.01556,1.5024,-0.21083,-1.021,1.3545,1.1221,-0.40729,-0.44908 -1.0546,0.1376,3.2642,-1.7206,-1.3093,0.92446,1.3444,-1.003,1.2465,-0.52977,-0.23299,0.42738,0.20283,-0.16804,-0.14945 0.029327,-0.51671,3.5078,1.8759,0.62231,0.058489,0.74099,-0.45262,1.5736,-1.0846,-0.16964,0.43629,0.29643,0.10469,0.87703 0.84684,-0.50773,3.8432,0.56069,0.36013,1.5136,0.52132,0.62876,1.4655,0.85635,-0.50003,-0.26202,-0.34626,-0.15538,1.5977 -1.0865,-1.7915,2.9249,1.8349,1.4369,0.29277,1.0911,-0.21228,1.8902,-1.0328,0.4687,-0.66623,0.28674,0.32782,0.62639 -3.6582,-1.0252,0.96091,-1.2911,1.0813,-1.3648,0.44983,-1.1397,1.5651,-0.084523,0.13211,-0.39595,-0.079025,1.2381,-0.28985 1.7672,-1.6966,1.0421,0.44888,0.97949,3.1932,-1.6605,1.1408,-1.5319,-1.1572,-1.1698,0.45452,3.0771,1.4147,-0.24505 0.3166,-2.1238,2.6878,1.3879,1.1813,1.7725,1.6666,-2.1092,-0.092981,-0.14778,-0.023563,-0.42743,0.61548,1.0401,-0.78891 -0.98126,1.3407,3.0673,-0.70976,-0.68083,0.47738,-0.20366,0.59889,1.7246,-1.3427,0.088383,0.70473,0.51753,-0.24649,1.6978 0.13317,-2.4921,2.8235,1.9331,1.7093,1.6073,0.94587,1.9838,0.46601,-0.90889,-1.2551,-0.47908,1.3532,0.22319,0.4519 -2.1685,-1.7991,2.039,0.28952,1.1217,-1.1656,0.92833,-0.56614,2.097,-0.41609,-0.17026,-0.66641,0.50883,-0.083948,-0.60451 0.098183,0.7279,3.8184,-1.3487,-1.2079,0.68082,0.51212,-0.74829,0.93956,-0.78902,0.18307,0.64135,0.34243,0.37958,0.36328 0.71064,0.58669,-2.6952,-0.13041,0.51122,-1.0158,-0.52536,1.1317,0.49716,-0.98884,0.58995,-0.62995,0.5381,-0.52123,0.33599 -2.3645,-0.017909,0.87587,-1.5487,-1.1595,0.99548,0.02285,-0.28118,0.12222,-0.73254,1.0632,-0.97271,0.9402,1.3105,-0.13353 -1.8405,0.89061,-3.436,-0.32467,-0.89325,0.68028,-0.45185,-0.46248,-0.36722,0.6466,-0.64372,0.35711,0.72055,0.2851,-0.19493 -1.4935,0.77573,-1.8472,0.88136,-0.97593,1.8485,0.78931,0.29431,1.8982,-0.56468,-0.21591,-0.86177,1.1629,-0.4032,0.54178 -0.54563,0.36881,-1.4103,1.0856,-0.31135,0.83295,-0.51358,1.2955,1.8257,-0.78868,1.0065,0.21951,0.051225,0.26306,0.55274 -1.1119,1.0466,-0.94174,1.9386,-0.64702,0.067737,0.3863,1.8749,1.604,-1.394,-0.26477,-0.54334,-0.55766,0.85867,0.89183 -2.1093,0.8208,-0.53349,-0.16622,-1.0617,1.071,0.086251,-0.48859,1.0651,0.55382,0.48949,-0.5682,1.5697,0.88454,-0.29964 -2.5906,-0.78979,-2.0367,-0.18806,0.065528,-0.63271,0.56756,-0.010532,0.93951,0.21307,-0.99156,-0.74262,1.4513,-0.049363,-0.71957 -2.086,1.2121,-2.124,0.94717,-1.4185,2.8503,1.1335,0.21232,0.30993,0.21034,0.66783,-0.46263,0.68399,0.24144,-0.75185 -3.3606,-0.61555,-2.971,-0.91594,-0.29296,-0.9044,-0.66155,0.39175,-0.053605,-0.22392,-0.67601,-0.4063,0.62692,0.41324,-0.079532 -1.1254,-2.4609,-1.3043,-1.3001,0.035963,0.097889,-1.9237,0.43959,0.74737,0.4734,-2.5604,0.95195,0.86645,-0.61164,1.2699 -1.2396,-2.9637,-0.11403,-2.1505,0.17963,1.3183,-0.52637,-0.32927,1.2372,0.58752,-2.4691,0.68614,0.66807,-0.49421,-1.2006 -2.3031,-2.2914,-0.58558,-1.4858,-0.037118,0.28644,-1.5627,-0.68338,1.5571,0.27571,-1.7102,0.25752,0.81399,0.25757,0.63989 -2.4912,-2.2776,-0.19699,-2.2241,-0.095169,-0.021832,-1.346,0.3274,0.079376,-0.30041,-1.6351,-1.0801,1.1927,-0.81536,0.81039 -2.5345,-1.9433,-0.54314,-0.4544,0.42159,-0.76564,-0.42933,-0.87585,2.1305,0.45771,-0.56783,0.13993,0.42848,-0.57986,0.13505 -2.4723,-1.6597,0.30718,-0.30065,0.31004,-0.46799,0.32953,0.089439,1.882,-0.20864,-0.10825,-1.0322,0.99588,-1.1836,-0.19266 -1.6551,-2.3662,-0.6,-1.9088,0.21779,0.40861,-1.8088,0.93041,-0.38626,-0.15612,-2.3405,-0.2111,1.4296,0.19789,1.9376 -0.86408,-4.0335,2.9418,0.69753,2.5542,1.7486,0.68788,-0.16843,-0.22933,0.16707,-1.3902,-1.3783,1.2461,0.48757,-0.047007 -1.1697,-4.7774,1.4636,-0.090953,3.0402,-0.21536,-0.82487,0.25551,-0.0023538,1.0382,-2.4142,-0.76751,1.1324,1.1334,0.33433 2.8947,-2.7579,2.4481,0.79468,3.6933,2.205,0.060675,1.1728,-2.0949,-1.002,-1.158,0.065154,1.691,0.67022,0.55455 -2.6408,-3.6158,0.11923,-0.80528,1.7544,-0.77964,-2.6256,1.0002,0.25619,0.49489,-1.6046,-0.32877,-0.65378,1.3674,1.7126 -1.351,-4.0714,3.1259,0.42322,2.5642,-0.63865,0.61432,1.5289,-0.27034,-0.76086,-0.98018,-1.7805,0.5781,-0.060055,-0.12954 -3.8191,-1.8852,1.941,-1.6536,0.91314,-0.19635,-0.3747,-0.064371,0.83308,0.058323,0.53779,-0.44528,-0.25741,1.193,-0.0088346 -0.34066,-4.5089,2.4603,-0.10234,2.2604,0.71293,-0.50478,0.13586,-0.31173,1.6383,-1.9959,-0.50938,0.95549,1.4487,-0.68336 -4.2871,-1.0511,-2.0981,-1.3963,1.7492,-1.8029,-0.044337,-0.25571,0.31505,-0.60757,-0.932,0.17823,-1.1864,0.7581,-0.59848 -2.8393,-2.6282,-1.4686,-0.48249,1.3691,-1.7228,-2.1004,0.88904,0.15317,-0.60641,-1.4105,0.28133,-1.66,0.62865,1.825 -0.71992,3.9495,0.52103,-0.52557,-0.40797,-0.15216,-0.41793,0.17065,-1.9478,-1.1292,-0.72291,0.505,-0.87998,-0.86724,-0.17351 -0.68263,2.3009,0.48372,-0.059287,-2.0699,0.7217,0.13745,0.10208,-0.84454,-0.64778,0.21369,0.40562,-1.9725,-0.0767,0.80552 -0.61869,3.8204,-0.74078,0.95159,-0.84771,1.4643,-0.233,-0.044212,-2.5628,-0.54874,-0.4615,0.13411,-0.50954,-0.074692,-0.52524 2.58,2.4017,-0.51192,-1.4392,-0.81414,0.34244,-2.3001,-0.90152,0.37573,0.01455,0.9489,-1.408,-1.2082,0.87768,-0.20547 0.29186,3.2343,0.80982,-1.1545,-0.42696,0.63207,-2.5389,-0.69676,-0.1407,-0.82282,0.5686,0.81736,-0.053281,0.60651,-0.59872 -1.9205,3.5679,1.0279,-0.19139,0.78887,0.6989,-1.0648,1.548,-0.84104,-1.6169,0.3551,0.65443,0.46022,-1.0322,0.68017 -1.4809,3.7988,0.31956,0.26292,0.87015,1.9665,0.057591,1.0981,-2.1804,0.11612,-1.2545,0.099392,-0.73337,-1.264,0.073096 -2.8314,2.5314,1.5598,-0.71819,0.26869,0.82441,0.68311,1.3169,-0.84156,-1.4196,0.65312,0.46763,0.20345,-1.8256,1.1145 -3.0651,1.9211,-0.96135,0.21085,-0.56197,2.8456,1.6075,0.29786,-1.2049,0.55892,0.78379,0.58765,-0.38797,-0.21808,-0.99077 -0.65464,3.7991,-0.75762,-0.03844,-0.0031736,-0.0402,-1.943,1.0859,-1.2564,0.080553,-0.10679,0.34518,0.10077,-0.5644,-1.4262 -2.5174,2.7908,-0.51398,0.53193,0.098845,2.2227,-0.2185,1.9399,-1.6394,0.11248,-0.40631,0.98935,-0.0076017,-0.87385,-0.17871 -0.25452,2.2651,1.7764,1.3196,0.50039,-0.20889,-1.1411,0.026397,0.87757,1.0213,-0.64919,0.87448,-0.90832,-0.66977,0.97025 -2.8334,2.222,-0.92819,0.69254,0.05329,2.0752,1.7309,0.7542,-0.81846,0.0069939,0.41535,0.45141,-0.92698,-1.8098,-0.56614 -0.41242,3.3412,2.0175,0.6474,-0.31087,0.36441,-0.70809,-0.4865,0.10351,0.49268,-0.20689,1.2596,-0.41065,1.4885,-0.063537 -3.3858,0.5025,-0.20559,-1.0736,0.049839,-0.3687,0.87668,1.3076,1.5679,-0.79752,0.71977,-1.1884,-0.87497,-0.61658,-0.42281 -2.2416,-1.3183,2.0557,-0.88359,0.29328,0.58165,-0.028304,-0.58922,1.6648,1.3942,0.4018,-0.71865,-0.2571,0.72067,0.36412 -3.4639,-0.75574,-1.1994,0.07047,1.742,-1.3613,0.73362,-1.092,1.3686,0.32759,-0.01162,0.32391,-0.60584,0.22096,-0.54356 -4.2223,1.391,0.062175,-1.4528,0.67742,0.42866,1.5535,-0.2124,-0.91096,-0.2044,1.4664,-0.023182,-0.56351,-0.97494,-1.002 -2.175,0.6925,2.9267,1.0311,2.0948,-0.68443,0.89588,0.49084,0.30172,0.46361,0.91505,0.23507,-1.5165,-0.89572,0.54639 -3.9263,0.79279,0.29256,-2.3281,1.9763,-0.83737,0.51425,-1.2854,-1.1174,2.0882,0.10353,0.10596,-0.29732,-0.20764,-0.42077 -2.9854,0.24064,0.0020738,0.72661,0.46218,0.84139,1.373,-0.36098,1.8212,0.77796,1.1689,0.10435,-1.3404,0.027796,-0.51219 -2.7935,-1.2107,1.4758,1.3531,1.1742,0.20274,0.9662,-0.51783,2.0757,-0.36606,1.1228,-0.15437,-1.1434,0.88901,0.35809 0.71219,2.2707,1.7542,0.76583,0.53145,0.44061,-1.8872,-0.34609,0.98698,0.75474,0.53022,1.2207,-1.1817,0.67065,0.37588 -2.7629,1.0238,1.5781,-0.27564,-0.91029,0.98346,1.156,-0.96179,0.58761,-0.053553,1.5997,0.98037,-1.0282,0.85952,-0.43797 -2.6825,0.15229,-1.8109,0.97991,1.3085,-0.80881,1.901,0.52142,1.234,0.24239,-0.26863,-1.0297,-1.6039,-0.91768,0.041265 -4.127,0.93194,-2.6176,-1.6547,1.1263,-0.32801,1.4927,0.65581,-0.33066,-0.79622,-0.39768,-1.1502,0.037216,-0.91991,-0.74318 -3.3937,-0.12026,-2.1462,-0.42681,0.97918,-2.0046,0.79666,0.16588,0.8292,0.97725,-0.52818,-0.65649,-0.11655,-0.48579,-0.28204 -2.4219,-0.69195,1.5227,1.0907,0.64568,-0.58174,0.56374,1.6649,1.7161,-0.35131,0.85867,-0.95729,-1.6311,-0.76946,1.466 -3.4343,-1.1229,-1.7254,-1.06,1.451,-2.961,-0.27276,0.16573,0.19248,-0.061136,-0.69916,-0.16891,-0.91794,-0.49257,0.31691 -1.5815,0.010364,1.6102,0.64962,0.30646,-1.2034,0.81058,2.9368,1.0539,-0.65393,0.3797,-1.3668,-1.1663,-0.32866,1.4897 -3.6038,-0.71909,-0.04061,-0.32445,0.41291,-2.2572,1.3512,0.12431,1.5574,-0.32447,0.3258,-0.44196,-0.64064,-0.1849,0.21959 -4.3779,0.61902,-1.612,-1.3035,0.47642,-0.38273,1.9528,0.23176,-0.16869,-1.3546,0.19287,-0.7873,0.25141,0.009163,-0.49661 -3.7609,-0.014043,-2.1393,-1.2813,-0.20243,-1.1128,1.3598,0.25378,0.41614,-0.97806,-0.049742,-1.0569,-0.65762,-0.43862,-0.6083 -3.7078,0.095222,0.93841,-1.8687,0.80456,0.2343,1.4783,-2.0739,-1.0083,-0.72725,-0.3097,-0.74636,0.99089,-0.48387,-0.11029 -3.733,0.36573,-0.77789,-1.313,0.79939,-0.1236,0.48729,-0.75992,0.97111,0.3277,0.40875,-0.28666,0.92392,-0.30551,-0.17284 -2.4174,-1.4603,1.5753,1.2228,1.9584,-1.6161,1.9283,0.4017,0.45485,-0.36585,-0.15575,-1.122,-0.51532,-1.9388,0.79961 -3.0023,-3.2081,0.95298,-0.91242,1.2027,-2.1696,-0.31989,-0.15212,1.0859,-0.16497,-1.0839,-0.95818,-0.14523,-0.58667,0.15344 -1.4453,-2.3933,3.3985,0.15757,1.4819,0.033088,1.3899,0.036145,1.8206,-0.36478,-0.76093,-0.33208,0.26407,-0.74142,-0.64623 -3.8112,-1.1023,-1.1413,-1.2345,0.32067,-1.7512,-0.024054,-0.52011,1.4123,-0.79,0.29408,-0.22043,0.041891,0.36828,-0.034545 3.3864,-0.028024,-0.30769,0.29811,0.93995,1.5082,-0.44087,-0.2635,1.6296,-1.2399,-0.36381,0.73587,-1.7406,-0.055553,-1.4057 -1.1071,0.38462,1.8351,-1.6195,-1.3086,1.1979,1.4836,-1.159,1.6324,-0.57161,-0.17084,-0.43804,0.33758,-1.5165,0.081881 -0.94776,-1.5884,2.34,0.27458,0.95204,0.87218,1.2849,-1.7897,1.7409,-0.45696,-0.40409,-0.70723,0.71324,-1.2236,-0.090261 -1.9056,-0.048863,0.015643,1.2813,0.16991,-0.46514,1.2971,-0.13866,2.3527,-0.22293,0.37065,-0.55746,0.44421,-1.0123,0.32985 -0.70974,-2.7949,1.7135,0.20139,0.98401,1.968,0.59367,-1.4036,1.7058,0.36422,-1.1848,-1.4088,0.67167,0.84429,0.051754 -0.38161,-1.7129,2.8252,-0.12489,0.93415,1.5676,1.28,0.18399,2.1163,1.1302,-0.84338,-1.1572,0.14326,-0.27949,0.073488 -1.8068,-3.0207,0.19295,0.19119,1.888,0.36102,-1.0884,-1.3641,1.4526,0.37455,-1.4342,0.019801,-0.076394,-0.15948,1.2541 0.36246,0.55745,1.9315,-1.1656,-0.63358,1.3676,0.85796,0.5222,2.4121,0.025517,-0.3575,-0.17256,-0.055787,-0.63672,0.084393 -0.59781,-2.3114,3.0552,-2.4844,0.49553,1.4058,-0.36959,-0.61141,1.176,0.85065,-1.7319,-0.71021,0.24605,2.0259,-0.57198 -1.4161,-0.89033,1.9084,-2.8221,0.56186,-0.30903,1.1322,-2.011,0.50841,-0.26452,-2.065,0.2059,-0.46535,-0.098729,-1.4324 -1.8836,4.0841,0.87981,-0.46235,-0.1467,1.5682,1.2538,-0.15606,-2.4958,0.53326,-1.1087,0.81001,-0.36347,0.20557,0.20086 -1.8897,4.126,1.5173,-0.28092,0.28657,0.47749,-0.35096,1.5315,-1.2973,0.97978,-0.22612,0.88676,0.21225,-0.39509,0.34001 -3.0243,3.516,0.99938,-0.034966,0.76051,1.0276,0.91311,0.90371,-1.0945,-1.2956,0.47631,0.96171,0.21802,-0.084023,-0.10307 0.85843,3.0477,3.2081,-0.657,0.38711,-0.30912,0.29873,-0.33298,0.63313,0.25884,-1.1823,1.4213,-0.37829,-0.43349,-0.34123 0.3355,3.5563,2.0911,0.55995,0.59309,-0.2991,-1.0999,0.030929,0.052443,1.2318,-0.1993,1.1437,-0.77469,-0.16884,0.22672 -1.4973,2.4157,2.8688,-0.10695,0.70611,-0.92403,0.31491,0.77028,1.1086,0.3866,0.17396,0.40223,0.21545,-0.40695,0.9783 0.58101,2.395,3.6308,-1.1706,-0.372,0.45611,-0.53439,-0.56255,0.31904,-1.176,0.16299,1.161,-0.15295,1.3889,0.30318 -4.5438,-0.25936,-0.66029,-1.7177,1.5922,0.85179,0.30744,-1.5278,-0.81123,-0.84921,-0.38642,-0.047043,0.42503,0.67695,-1.0288 -1.907,1.0451,3.5257,-0.39539,0.30517,-0.98917,0.80492,0.35026,1.0979,0.35076,-0.021242,0.15519,-0.18225,-1.4627,1.0428 -4.5652,0.080892,-0.44464,-2.1536,1.9294,-0.46015,0.63635,-1.5679,-1.3148,-0.54309,-0.58412,-0.37071,0.57422,0.22269,-0.10249 -3.8189,1.7678,1.227,-0.78414,0.65808,-0.036022,1.3066,1.2489,0.34647,-1.1208,1.0392,0.013428,-0.96043,-0.31083,-0.3889 -2.36,3.5739,1.9509,-0.76559,0.12235,0.85943,1.5086,-0.33752,-2.0065,0.21786,0.010889,0.13478,-0.57607,-0.33939,0.46972 -4.0226,1.8453,0.12398,-1.0477,0.48046,0.85177,1.7013,-0.26576,-1.4811,1.3066,0.47859,0.38247,0.24138,-0.26997,-0.21276 -3.7434,-0.043362,-1.9029,-1.0787,0.42339,1.2635,-0.78185,-0.73629,-0.88632,-0.38873,0.38639,-0.26672,0.49084,0.56765,-0.66829 -3.9861,-1.2366,-2.1034,-1.0632,0.15113,1.4106,-0.63696,-0.036797,-0.0041934,0.0070635,-0.48574,-0.035773,0.7088,0.8996,-1.0431 0.67084,0.78387,0.88478,-2.0871,-1.9265,2.7208,1.2168,0.97462,-0.39379,-1.3495,0.38564,-1.4624,-1.2435,0.047543,0.14083 -3.5616,-0.58371,-0.085992,-1.7109,-0.0044599,0.51765,-0.69936,-1.0317,0.27799,-0.32969,0.29485,-0.78031,1.2909,0.55093,0.049579 -2.0054,-1.1132,-1.6371,-0.81772,0.48547,2.7669,-1.4561,-1.0251,-1.1679,-0.59006,-0.31742,0.76146,0.32358,1.381,0.6276 -3.1374,-1.3083,-1.1528,-1.4778,-0.16312,0.61742,-1.8625,-1.0441,-0.66093,-0.45703,0.074436,0.62234,0.42565,0.62247,0.3258 -3.2308,-0.47629,-2.2013,-1.1106,0.38194,1.0425,-1.1274,-1.3673,-0.25633,-0.91952,-0.45104,0.36613,0.96096,0.26583,0.27974 -3.9575,0.037038,-2.9807,-1.0608,1.7571,0.52945,1.0782,-0.96014,0.01568,-0.96025,-0.95608,0.03072,0.29078,0.45451,-1.2524 -3.5805,2.0729,-0.054817,-0.45242,-0.12266,1.5185,1.2507,0.6698,-0.28469,0.67523,1.1971,-0.25782,0.40261,-0.45677,-0.27934 -3.1936,0.78739,-1.7013,-0.72881,-0.21118,1.3814,0.98159,-2.079,-1.217,0.5173,0.67387,-0.22722,0.3964,0.033141,-1.2662 -0.64587,-0.31077,2.7523,-1.1639,0.8097,1.0569,0.8659,-0.10261,1.8637,1.7546,-1.2427,-1.6503,-0.66588,0.30785,0.25908 -4.1929,0.066823,-2.0259,-1.6984,1.8431,-0.24534,0.27009,-0.81669,-0.6073,-1.3988,-0.48833,-0.25975,0.033766,0.10989,-0.23894 -3.7633,-1.387,-1.8159,-1.7142,0.929,-0.13838,-1.0806,-1.2362,-0.21206,-2.1687,-0.53489,0.80532,0.24162,0.15746,0.30467 -3.4242,-0.51672,0.43775,-0.26806,2.0628,-0.73012,0.62668,-0.54661,1.146,0.56968,0.21529,-0.65457,-0.70747,0.60506,-0.39472 -4.0504,-0.59712,-1.608,-1.7624,0.30271,-0.69244,0.23,-0.19876,0.46081,-2.043,-0.13886,-0.9442,-0.028473,0.47303,-0.56579 -1.9876,-1.6273,2.8231,-0.68943,0.67303,-1.0939,0.046089,1.4052,2.1281,-0.82488,0.47571,-1.4516,0.90366,0.71187,0.20629 -2.7762,-2.15,0.62424,0.13141,1.0808,-2.3073,0.31806,-0.29858,0.73942,-0.78574,-0.37556,-0.69556,0.0085728,-0.21984,-0.41935 -1.8683,-3.0157,-0.21072,1.3772,1.6623,-1.3263,0.63224,-0.49576,0.52677,-1.4073,-0.49227,-1.3684,0.21235,-0.09154,0.0075112 -3.9985,0.85508,-3.1693,-1.5287,1.6405,0.40322,0.094687,0.21086,-0.79405,0.34113,-0.8342,0.15277,0.41711,0.59485,-0.92471 -1.3544,-0.85598,1.454,1.8208,0.9341,-0.44334,1.3839,0.21873,1.9816,-1.2726,0.79681,-0.49763,0.12349,0.18912,0.39989 -3.2094,0.8431,-0.10916,-0.51635,0.042254,-0.17155,0.87798,1.4178,1.6376,-0.50794,0.54776,-1.267,-0.33573,-0.48545,0.1837 0.57543,2.6567,0.56918,1.9139,1.3023,-0.35907,-1.2158,-0.6443,1.3101,0.40471,-0.92167,0.63771,0.33246,-0.048945,-0.0068748 2.6557,1.127,0.25407,0.76797,1.2847,-0.14631,-1.2334,-2.7146,1.638,-0.29886,0.44096,0.2577,0.52772,0.3777,-0.43103 -1.6789,2.2299,0.3962,1.3047,-0.99179,1.119,0.61943,-0.063112,0.56636,0.97143,0.20677,1.361,-0.25535,1.4202,0.4801 -0.0095025,3.8153,0.66246,-0.047483,-0.71619,0.4862,-0.36272,-0.22952,-0.96465,1.6534,-1.4237,0.4597,0.28413,-0.22569,-0.27343 -0.25151,2.2803,0.60795,1.4827,-0.99613,0.24675,-0.8459,-1.046,0.44176,0.82686,0.077362,1.1356,-0.28405,1.5295,-0.60171 -2.0016,2.0439,0.36935,0.65924,-0.45565,-0.22786,0.96776,-0.48859,-0.10568,1.9892,-0.019908,1.4649,0.24519,0.3607,-0.23043 -0.72933,0.17672,1.5048,2.7637,0.56647,1.4182,-0.22839,-0.43876,0.99585,-0.93561,-0.10986,0.93638,-0.38479,0.34628,1.187 -1.2884,1.5717,0.73926,2.1123,-0.10726,0.36755,-0.68378,-0.5828,0.77176,-0.81791,0.33563,1.775,-0.96816,1.1965,-0.32808 -2.987,1.105,0.19048,0.3954,-0.63428,0.75901,1.0385,0.40882,1.2004,0.10779,1.1008,1.307,-0.4283,0.66137,-0.50589 -2.1633,2.0918,-0.019055,1.9146,-0.19906,0.95116,0.64647,0.60064,-0.037131,1.6618,0.49833,1.3844,-1.1652,0.13563,-0.089686 -0.45255,2.4919,0.89869,0.38655,-1.3404,2.0396,-0.73008,-0.55301,0.37821,-1.4184,0.2115,1.2578,0.64815,0.72988,0.51998 -1.9449,1.5033,1.3583,0.52937,-0.76039,1.0503,0.97655,-0.74767,1.0254,1.9604,0.44054,0.65282,-0.54189,-0.56051,0.5231 -3.6066,0.55356,-2.901,-1.1488,3.2475,-0.019243,0.44676,-0.50175,-1.5446,0.02672,-0.98459,1.5134,-0.27815,-0.11995,-0.15941 -3.7289,-1.0451,2.6884,-2.3528,1.2916,-0.52325,0.062291,-1.5387,-0.072674,-0.073452,-0.061248,0.041221,-0.24389,0.56627,0.12884 -3.9751,-1.6262,-1.1578,-1.9038,2.6085,0.57706,-0.82125,-1.6677,-0.92816,-1.8311,-1.3194,1.2981,-1.0456,0.36563,-0.16053 -3.7688,-0.93165,2.6536,-2.1313,0.94932,-0.024549,0.28552,-1.0846,0.42204,-0.29803,0.57217,0.06413,-0.35249,0.9287,-0.10122 -1.0668,1.5687,3.5759,-2.4636,0.18401,0.54044,1.0619,0.51009,-0.25799,-0.56867,-0.0047671,-0.99029,-0.9926,-1.3392,0.76258 -1.7922,0.18013,2.7588,1.0353,1.7439,-0.27902,1.3785,-1.377,0.77515,1.1644,0.8068,-0.57996,-0.33639,0.37623,0.30434 -4.1148,-0.87176,1.4675,-2.7529,1.7049,-0.16482,0.11778,-1.9981,-0.8211,-0.58833,-0.18288,-0.046741,0.075661,0.30545,0.33864 -3.0588,-1.2124,3.315,-2.8053,0.83373,0.70228,-0.29074,-1.1947,-0.42082,-0.9149,-0.0061209,-0.26723,-0.13787,1.6305,0.055047 -3.2979,-0.60434,0.90651,-3.1927,1.739,0.81114,0.12724,-2.7352,-1.9725,-0.18023,-0.53875,0.21435,-1.31,0.99488,0.1268 0.20249,0.90787,4.0113,-0.83616,-0.29372,-0.088557,1.1432,-0.10296,1.4203,0.47987,-0.88769,0.27537,-1.2191,-0.96959,0.9911 -2.0626,-0.73518,3.0529,0.58999,1.7096,-0.6056,1.6448,-1.361,0.86987,0.78248,0.34001,-0.23407,-0.26277,-0.058589,0.64234 -4.1685,1.0437,-1.0217,-1.8669,1.7239,0.61051,1.1123,-1.8391,-1.6602,0.94562,-0.03544,0.44937,0.097672,0.5528,-1.1129 -0.9698,-2.3728,4.6225,-0.14554,2.5794,-1.214,0.3062,1.4256,-0.31211,-0.62472,-0.046319,-0.62397,0.040096,0.54384,-0.059417 -4.613,-0.92302,0.8454,-2.1934,2.3829,-1.3726,-0.41825,-0.58971,-0.60882,-0.25088,-0.40469,-0.34383,-0.28657,0.97232,0.35953 0.87179,0.35594,4.1994,0.44152,1.9239,0.72614,1.3266,-0.70427,0.33241,0.9317,-0.62432,-0.37753,-0.84417,-0.052875,0.25886 -1.4391,-1.8937,4.1735,-1.3819,2.5099,-0.84504,0.91691,-0.62504,0.17873,0.73523,-0.64227,-0.3943,-0.34701,0.23917,-0.14706 -1.9135,-3.9752,2.2372,0.41266,2.9912,0.4136,-0.41204,-0.61684,0.18562,0.11119,-1.0812,-1.0537,0.35853,1.475,0.69315 -0.18857,-2.6199,5.1426,-0.91655,2.3276,-0.22864,0.97129,0.43052,-0.036344,0.16481,-0.87231,-0.12006,0.27143,0.41292,-0.74892 -4.2203,-0.24247,2.3603,-1.8636,2.091,-0.959,0.4697,0.38669,0.12103,-0.10985,0.61194,-0.64293,-0.98176,0.26185,-0.097829 -1.3135,-2.0417,4.1046,-0.60764,3.2925,-0.97126,1.3996,-0.65954,-0.42945,0.32128,-0.45982,-0.31459,-0.15302,0.020999,-0.16057 -2.4293,0.77532,3.6435,-2.7842,0.83334,-0.4555,0.92631,-0.96366,-0.30954,-0.45013,-0.15819,-0.56202,0.27607,0.51907,0.033703 -4.3076,0.37861,0.62229,-1.3689,0.57814,0.6147,1.2965,0.19029,0.24815,-1.6703,0.91336,-0.61778,0.095371,-0.97419,-0.18152 -3.1179,3.1279,0.11947,0.20787,0.54569,1.3914,1.232,1.265,-1.4358,-0.16799,-0.1578,0.7624,0.030583,-1.6665,0.37384 -1.9363,2.722,2.8661,-1.2035,-0.34381,0.45576,0.69581,-0.24305,-0.76502,-0.26753,0.030157,0.60431,-0.58316,-1.2167,1.0556 -3.1944,3.062,1.5995,-0.16997,0.885,0.51916,1.0199,0.0067091,-1.6338,-1.0552,-0.12752,1.2216,0.00082254,0.34768,-0.36813 -3.1867,0.067381,0.99963,-2.4162,1.0703,1.6245,0.47874,-1.6359,-2.193,0.57729,0.18104,-0.44268,-1.6097,-0.06223,-0.10469 -0.4763,2.0783,3.8879,-1.1073,0.52443,-0.60064,0.3451,-0.16377,0.91797,-0.73482,-0.071408,0.95823,0.0069955,0.2868,0.82673 -4.0989,1.0814,1.1343,-1.4531,1.1782,0.60402,1.5814,0.31667,-0.045806,-2.0411,0.8144,-0.83553,0.096251,-1.2019,-0.34205 -1.7785,1.1186,3.5335,-3.1665,0.40851,0.32577,1.2777,0.22376,-0.79355,-0.90643,-0.11517,-1.3663,-0.3229,-1.5684,0.55537 -0.27857,1.3736,4.115,-2.5689,-0.25342,0.21003,0.81636,0.57663,-0.22808,-0.0071867,-0.17295,-0.31014,-0.89501,-1.4375,0.21403 -3.3629,2.7516,1.5239,-0.91145,0.72952,1.2924,1.3734,0.11948,-2.0619,0.33161,0.74582,-0.041806,-0.91492,-0.77004,-0.18832 -4.2286,0.5726,0.25685,-1.4304,2.0755,1.535,1.3946,-0.8294,-0.94102,-0.34851,0.11693,-0.67465,-0.85223,-0.81622,-0.81042 -0.85552,1.0097,4.4347,-2.0827,0.35592,-0.32315,1.1091,0.21073,0.42371,0.17949,-0.65243,-0.11063,-1.2355,-1.1012,0.64106 -4.6143,1.6011,0.58985,-1.1261,1.8403,0.44909,1.8619,0.66917,-0.85437,-1.5639,0.22907,-0.83042,-0.69506,-0.50071,-0.95768 -4.2204,1.4525,-0.2021,-1.3103,0.74983,0.21098,1.0363,0.044642,-0.83952,1.5591,1.1056,-0.053084,-0.062284,-0.88709,-0.72488 -1.4155,2.5243,3.0035,0.00086566,1.5181,-1.2283,-0.70798,1.5135,0.24065,-0.85905,0.47664,0.67811,-0.52214,0.25099,0.22703 -3.7744,2.5054,2.0025,-0.7026,1.6544,-0.58536,0.82774,1.3552,-1.1504,-0.23082,0.22527,-0.08149,-0.78528,-0.23449,-0.063992 -2.7171,1.6072,2.9644,0.18254,1.773,-1.2449,0.83903,0.9132,-0.22836,0.54357,0.40153,0.37336,-0.8137,-0.66336,-0.066804 -4.308,1.8947,1.1815,-0.75862,1.6617,-0.85059,1.4795,0.9575,-0.60076,0.54648,0.38087,-0.049384,-0.492,0.034606,0.016692 1.4078,-0.76717,2.8179,0.90229,0.58288,0.9214,0.54747,1.6317,1.5709,-0.14533,-1.9587,0.19493,0.095585,-0.7625,0.36279 -0.20013,-0.87457,3.1699,-0.34757,-0.17027,1.1476,1.3298,-0.77073,1.7823,0.89539,-0.44865,-0.11613,-0.6077,-0.14023,1.335 -3.5066,0.70195,-0.44803,-0.97678,-0.29798,1.4143,1.6486,-1.4356,0.1446,-1.2002,0.8436,0.55866,0.43855,0.038053,-1.1231 -1.7896,1.0921,2.618,-0.81246,-0.5253,-0.34907,-0.27763,0.69322,1.2725,-1.7311,0.54139,0.27924,0.84645,-0.75074,1.1696 -1.6711,-1.7231,0.3811,-1.5652,0.45794,0.77539,-1.6452,-0.99968,-0.0054491,0.49584,-1.2397,0.4065,0.60889,2.1855,1.3818 0.092186,-4.9343,0.13732,0.15812,2.6288,1.6838,-0.43064,0.3548,-0.44093,-0.17244,-2.9735,-0.064322,1.6255,0.91786,0.52165 -0.93572,-2.5775,0.59509,-1.0128,1.0858,-0.048584,-2.0296,-1.0247,0.82866,0.86512,-2.5511,1.0182,-0.08997,-0.1504,1.9457 -2.5654,-0.51252,1.6799,-1.4394,-0.056922,0.32901,-0.33532,-0.29601,1.6794,0.097609,0.38855,-1.3049,1.5404,0.75742,-0.18968 1.1907,0.25082,0.98272,2.5239,2.5905,0.0035585,-1.1122,0.17957,1.1722,-1.6104,0.32383,0.58861,0.79297,0.41618,0.45617 3.0266,-1.0659,0.94824,0.52104,2.8364,1.9066,-0.58452,-0.0069821,0.14498,-1.6437,-0.59693,1.1266,1.9414,0.63438,0.13606 -1.6318,-3.0508,0.72831,-0.67037,0.97689,0.025742,-1.4146,0.52211,0.98724,1.542,-1.9631,-1.0813,0.78516,1.2299,1.463 -0.95783,-2.6678,0.83626,-0.60522,0.62331,1.5944,-0.78188,-1.0718,1.6114,1.1666,-1.402,-0.35489,0.44873,1.6533,0.42269 -1.859,-2.4842,1.8257,-0.44784,0.64012,0.5109,-0.79048,0.31493,1.9393,1.1199,-0.76089,-1.1562,1.0703,1.4676,-0.033234 0.58474,0.83603,2.4223,-2.3164,-0.52729,1.4197,1.2779,0.77707,0.5076,0.28634,-0.12901,0.046952,1.4516,2.5618,-0.47277 0.13272,-0.10065,1.9444,-1.0495,-0.65738,1.8164,1.5797,-0.314,0.88005,2.3897,-0.75975,-1.1935,0.026327,2.442,-0.3711 -1.1211,-2.2624,1.7722,-2.0071,-0.1167,0.40688,0.38905,0.48153,1.1312,1.1091,-1.7319,-1.1658,0.90165,0.75025,-0.22645 0.60407,-0.81956,2.4296,2.5789,1.5349,0.59152,0.36811,2.1407,0.89254,-0.11095,-0.40857,0.25655,0.94666,1.2564,0.74758 -2.1974,-1.6138,-0.27258,0.9669,0.35846,0.80197,-0.31052,-0.78342,1.6269,1.0755,0.36839,-0.88193,0.23304,2.2286,-0.31864 -1.6203,-1.3331,1.3188,2.0605,1.2691,1.487,0.71688,0.28829,1.3737,0.038821,0.86588,-1.0996,-0.10011,1.6834,0.14504 0.097397,-2.3041,0.64751,0.7121,1.1872,1.3816,2.0322,-0.11796,0.93131,0.96592,-1.5214,-0.96561,1.7277,0.86007,-1.3669 1.378,1.403,1.8923,-3.9132,0.43089,1.6755,0.94803,3.0985,-1.3212,-0.41014,0.10855,-0.14649,-0.54724,-0.33636,-0.21617 -2.2312,-0.77891,1.8313,-1.3351,-0.22032,0.34103,0.32901,1.3002,1.7577,0.30884,-0.093963,-1.3981,1.983,0.79023,0.26882 -3.8029,-0.41669,-0.107,-2.1095,0.39362,-0.65282,0.5107,-0.77197,-0.81445,-0.9649,-0.45727,-1.4019,0.97622,-1.3588,0.31652 0.37275,0.75682,4.0144,-2.1541,0.29904,0.49822,0.10869,1.4788,1.0993,-1.6342,-0.24785,0.8399,1.5692,0.47337,0.39316 -1.0596,-2.3172,3.7493,-1.7931,0.51206,-1.0171,0.30133,2.5578,0.48904,-0.057033,-0.40782,-1.4481,0.82668,-0.073635,0.11525 2.8302,0.45341,3.3625,-2.1883,1.1847,1.016,2.0844,1.9541,1.0216,0.0074322,-0.78284,0.86682,-0.61274,1.8387,-1.8669 2.4007,0.074096,3.2712,-0.91531,-0.26685,0.79636,0.682,1.4485,1.2553,0.28437,-1.1948,0.81469,-0.43419,1.4049,-0.68965 1.3846,1.5972,3.3672,-2.2783,1.3509,-0.45936,0.29301,2.559,-0.25064,-1.236,-0.58669,0.90697,1.4926,-1.1886,0.59411 -2.3999,-0.40982,0.94312,-2.0601,-0.63129,1.3953,-0.0057447,-0.10204,0.237,-1.1668,-0.47505,-1.6783,1.3506,-0.69153,0.74781 2.9914,-1.4099,1.4953,1.5747,1.9214,0.98341,0.9294,2.3848,-0.36853,-0.74681,-1.4219,0.74435,1.3457,0.6125,-0.59423 1.0543,0.039329,2.6128,-1.909,-0.55465,0.48182,0.25917,3.0546,0.63656,-1.1685,-0.78096,0.5742,1.3651,-0.12345,0.51436 0.91256,-0.012237,3.1886,-1.0768,-1.1857,1.6997,0.77527,0.35955,1.7887,-0.25517,-0.70932,0.62492,-0.53114,1.5033,0.098595 1.9431,0.51045,1.731,-3.8132,-0.52545,0.43897,1.1271,0.51901,0.36391,-0.62045,-0.4836,-0.35301,-1.5174,0.6413,-0.14067 4.5866,1.5704,0.45113,-1.4237,2.672,-0.99375,0.77734,0.20572,0.18932,0.56725,-0.76775,0.92408,-1.6242,-1.522,-0.77544 0.38333,0.2256,3.149,-2.4487,0.21967,-0.090469,1.564,-1.3051,0.77968,0.27773,-1.0444,-0.88393,-2.4639,0.93586,-0.73657 1.2235,3.9764,2.4608,-0.70751,0.87817,-0.83244,-1.0798,-0.89862,-0.28642,0.39318,-0.20451,0.31892,-1.0259,0.67755,-0.099238 -1.5651,3.1415,2.2466,0.25695,0.69221,1.4504,-0.47351,1.1179,-0.013014,0.063027,0.48513,0.43945,0.075704,0.97581,0.44404 -1.2004,3.591,1.2095,0.14477,1.0257,2.1429,-0.8105,1.2009,-0.097848,-1.4044,0.36268,0.7152,0.69675,1.3143,-0.10959 -1.4575,4.2476,1.4611,-0.33166,0.8457,0.35324,-1.3424,1.3757,-1.1187,0.080106,0.20461,0.65144,-0.16721,-0.37278,-0.38724 2.3808,3.2206,-0.074638,-1.4098,-0.76544,0.98155,-1.986,0.05845,-0.92037,0.036457,0.39291,-1.2386,-0.70758,0.46371,-0.46 1.8515,1.3508,1.2765,1.7008,3.3992,-0.32724,-1.5968,-1.6056,0.81769,-0.29331,0.94648,-0.038686,-0.097429,0.42441,-0.099908 1.7284,2.9548,0.74913,-0.14391,2.9643,-1.496,-2.0385,-0.17022,-0.35741,1.9151,0.7933,-0.99754,-0.69133,-1.0485,-0.52353 3.1275,-0.14,2.2621,-0.23577,1.8733,-0.49176,-1.4664,0.37973,1.8621,-0.92108,-0.84964,1.3141,0.79351,-0.66783,-0.85233 0.70152,2.2763,2.2577,1.5275,0.52741,0.28603,-0.34152,-1.246,0.97026,0.17659,0.11689,1.2322,-0.36473,0.94817,0.72002 -0.44756,1.7633,0.66715,2.8905,2.0419,-0.34335,-0.54703,-0.26152,0.82987,-1.1416,-0.017133,0.83025,-0.69178,0.83013,0.11056 1.86,1.5718,0.78887,1.693,1.8504,1.0933,-0.65523,-1.6045,-0.15514,-0.70812,-0.61703,0.41798,1.1411,0.11617,-0.098477 2.1886,0.65895,2.0083,-0.32243,-0.048386,0.41896,-1.9341,0.33434,1.6502,-0.46067,-0.74969,1.3338,0.92744,0.88963,-0.69167 0.77259,2.729,1.0056,1.5195,-0.59473,1.2149,-0.34331,-0.61193,0.69423,0.84215,-1.2369,0.66528,0.10066,0.064669,-0.012365 -0.68241,2.4559,0.75921,0.59837,-0.60057,1.0231,-1.0966,0.66436,1.3455,-1.0101,0.33947,0.92541,1.2143,0.64165,0.73927 1.3385,-0.068865,2.7659,1.4601,0.11813,1.7758,0.50218,-0.85867,1.5886,-0.73091,-1.0249,1.0166,-0.25368,-0.041324,0.57178 1.1034,2.0306,1.6175,0.4315,-1.2939,0.82933,0.69157,-0.61574,1.0267,0.053816,-1.0802,1.2465,-0.97484,-0.34037,-0.59169 1.3287,-0.28022,2.7263,0.91116,-0.4085,2.0171,1.6138,-0.50591,1.2015,-0.18953,-1.3784,-0.009775,-1.7586,0.76253,-0.13808 -1.7942,2.654,2.9324,-1.3003,0.061323,-0.029364,0.11925,1.1705,-0.2063,-0.35229,0.49939,0.43849,-0.13502,-1.6057,1.5754 -3.1352,2.5943,1.6408,-1.0264,-0.18949,1.1009,1.0915,0.21535,-0.54387,1.0935,0.87204,-0.11882,0.12171,-0.11763,-0.22218 -3.806,1.1013,0.95201,-1.1561,0.19579,-0.89816,1.3573,0.96623,0.49755,-0.88603,0.75563,-1.2706,0.6636,-1.0703,0.9134 -1.9518,-0.30692,2.8796,-0.047058,-0.23644,-1.3207,0.88013,0.85822,2.1444,-0.1807,0.10466,-0.32801,0.22469,-1.0459,1.3208 -1.6638,1.5814,3.1864,-1.6958,-0.64399,1.609,0.22245,0.47359,0.1961,0.52946,0.74326,-0.19225,0.061427,-0.086826,0.70533 -3.4474,1.7966,0.21531,-0.93517,-0.30262,0.94568,1.6129,-1.0508,-0.60864,0.57983,1.0861,0.98629,0.25479,-0.068028,-0.13539 0.73269,1.0558,4.2684,-1.401,1.1452,-0.43275,-1.1562,1.388,0.87767,-1.5005,-0.60791,0.93829,0.6586,0.33924,0.4099 -1.0446,2.0826,4.269,-1.7125,0.35642,0.18399,0.45699,-0.1224,0.070833,-0.47158,0.50977,0.63398,-0.20327,0.38751,0.54423 -4.5288,-0.54161,0.49686,-2.2465,1.5682,-1.121,0.029614,-1.2824,0.11594,-0.10297,0.15298,0.36628,0.028127,0.56118,-0.47984 -1.6742,0.63219,3.2732,0.089676,0.046227,0.2104,0.70075,-1.308,1.0091,1.1438,0.61991,0.45587,-0.78838,1.1413,0.048337 -1.0505,1.5747,3.4727,-1.599,-1.0715,1.582,0.56224,-0.76917,-0.088549,-1.0763,0.071972,0.4353,-0.92905,1.0862,0.56429 -1.2841,3.8985,2.7343,-0.98557,0.12193,0.40756,-0.14165,0.039881,-1.1418,-0.33577,0.49907,0.98201,-0.36517,-0.24089,0.53519 -0.46551,2.727,2.9811,-0.48896,-0.67854,0.68793,0.23733,-0.021459,0.38461,0.93595,-0.088662,0.6579,-0.57905,-0.042463,0.6447 -0.75521,1.4827,2.6983,-0.078013,0.65284,0.14883,-0.81436,2.0333,1.6991,-0.77163,0.83976,0.40009,0.84428,1.4713,1.1466 -2.6526,0.6422,2.0328,-0.81725,-0.31143,1.4662,0.24685,0.77022,1.3326,-0.60949,1.4823,-0.391,0.80717,1.7625,-0.057163 -3.8825,0.30188,1.3871,-1.6373,0.4164,0.53505,0.62721,-0.70577,0.38588,-0.56871,0.64186,-1.0113,1.1908,0.72972,0.090175 -1.9323,3.5252,2.189,-0.18443,0.44755,1.0778,0.56569,-0.28209,-1.3274,-1.4253,0.79667,0.55993,0.21014,0.15647,0.24668 -1.4065,-0.18983,3.5404,-2.0744,-0.50949,1.473,0.11766,1.2673,0.84788,-0.60789,-0.14669,-0.92648,1.4309,-0.17455,1.2027 -2.1495,2.1855,1.4943,1.029,0.74826,-0.70375,-0.096983,1.7508,0.95558,-0.8172,0.30804,0.75426,-1.4079,-0.3339,0.49638 -0.43328,1.591,2.696,1.2535,0.36192,-0.3604,-0.37648,-0.060994,0.44711,0.12602,0.41772,1.4566,0.13953,-0.46801,-0.42178 -0.96812,-1.1175,3.9925,-1.5759,-0.21742,0.80648,0.30686,0.273,1.6548,0.61721,-0.25109,-0.45991,0.99851,0.88524,0.073479 -2.9188,-2.3174,1.0918,-1.8771,0.84428,1.0755,-1.1676,-0.70715,1.1405,0.79343,0.12348,-0.056908,0.31357,2.4217,0.072926 -2.0953,-0.33465,2.8171,-0.8507,-0.03582,0.09371,0.15633,1.3775,1.7906,-0.58911,0.70557,-0.67708,0.88261,-0.8621,1.3568 -3.4353,-0.1528,1.4742,-1.0186,-0.046582,0.51741,0.46236,0.94485,1.4416,-0.4205,0.72069,-0.6533,0.75814,0.57083,0.91878 -3.6983,-2.0568,0.077639,-0.38208,1.0497,-0.48742,-0.17776,0.55473,1.5804,-0.25685,0.20159,-1.461,-1.0701,1.3092,-0.20498 -0.19152,-1.9053,1.9113,-1.2425,0.24225,0.73066,1.3586,-0.7845,2.4116,0.045743,-1.2665,-0.29522,0.52916,-0.34369,-1.2824 0.47808,-2.1459,2.3537,-1.2553,-0.62473,1.9946,0.70588,0.13522,1.8719,0.74001,-1.6437,-1.5669,1.1882,1.3588,-0.77473 -0.22773,-1.7727,2.0908,-1.7968,-0.72604,1.9894,0.10602,-0.40324,1.3688,1.4313,-1.3939,-1.1406,0.063388,2.0354,-0.89573 -0.64491,-0.45404,3.348,-0.64335,0.85002,-0.23538,1.1684,0.4904,1.8258,0.45457,-0.19716,-0.61098,0.87022,-1.9928,-0.0080455 -1.2384,-1.6834,2.6208,-1.9755,-0.21641,1.5192,-0.05848,0.083861,1.7158,0.89924,-0.84027,-1.1086,1.4647,0.42667,0.18823 -2.9088,-1.4052,1.2611,-1.2978,0.059109,0.59915,-0.41276,-0.082888,1.7102,0.57335,0.41936,-0.56628,0.59722,1.5893,-0.068954 -3.0919,-1.3771,2.0784,-1.9291,0.1376,0.10154,-0.50949,0.95047,1.1087,-0.22611,0.11229,-1.6312,0.69849,0.51544,0.64618 -3.4903,-1.043,-0.24553,-2.5609,0.85308,0.29339,-1.53,-1.6866,-0.51543,-0.55495,-0.72713,1.0186,0.37657,0.74242,0.5185 -2.5505,-1.4417,1.7421,-2.4508,0.24671,0.23394,-0.58422,-1.1857,1.3938,-0.16765,-0.13989,-0.15323,0.97117,1.2728,0.34748 -1.6985,-1.8463,2.0254,-0.56568,0.22917,0.23085,-0.0090764,0.57658,2.7189,0.20377,0.091603,-1.183,0.88987,0.6247,0.55716 -1.9498,-2.4954,-0.50252,-1.2214,0.64061,-0.18477,-1.9691,0.27454,1.2365,0.83433,-1.6417,-0.30226,0.73124,0.77335,1.8237 0.68282,-1.737,2.5196,-1.4581,0.36344,-0.016054,0.4872,3.8272,0.55904,-0.58949,-0.24396,0.37692,2.5655,-0.18117,-0.036638 -0.038099,-3.3253,1.8755,0.7394,1.4565,0.11017,0.99901,2.4496,0.54674,0.042416,-0.77556,-1.5143,2.0012,0.45711,-0.71544 -1.9874,-0.99545,2.0173,-1.9402,-0.24072,0.86688,-0.43646,1.5452,0.46198,-0.97891,-0.26419,-2.0597,1.8033,0.30509,0.77126 -3.3452,0.58307,-0.58775,-0.78395,0.81852,0.72566,1.113,-1.1754,-0.20066,-0.82589,0.22134,-1.5612,1.3178,-0.86418,0.090041 -1.7699,-0.36654,1.793,-1.8028,-0.4686,1.751,-1.1524,-0.8983,0.32857,-0.27718,0.11212,-0.37895,0.592,1.9921,-0.32299 1.0249,3.9789,1.949,-1.8077,1.1048,0.13638,-1.6585,0.1495,-1.4627,0.83238,-0.062339,-0.59459,-0.50907,-0.07207,-0.44767 5.0963,-1.2622,0.28889,-2.0599,2.4326,0.50767,1.4149,-0.19244,0.64802,2.3096,1.0877,1.4599,-0.45606,0.82958,0.2781 0.095342,4.1445,0.45868,-1.3085,1.2982,0.46426,-1.6249,-0.47569,-1.506,-0.57842,0.79402,-0.50855,0.43336,0.65232,-1.1832 2.4676,1.7502,1.4095,0.81748,3.383,0.059531,-1.9369,0.27338,-0.60132,1.458,0.6062,-1.2374,-0.6925,-0.34571,0.21731 2.7219,1.935,0.98272,-1.1897,3.3151,-1.0599,-1.4012,-0.24624,0.16461,2.164,1.2482,-0.78203,-0.37044,-0.96413,0.20379 -1.6755,2.4115,2.1348,1.0858,0.9464,-0.59813,0.16361,0.64498,0.38862,1.5749,-0.05398,1.5017,-0.70902,-0.89976,0.48459 -0.25244,2.337,2.2949,1.0677,1.4588,-0.56601,-1.4653,0.23217,1.4138,-0.15022,0.53584,1.4868,-0.72434,0.95237,0.13456 -3.6451,1.3412,0.28343,0.50687,0.40137,0.30138,1.1607,1.9025,0.88818,-0.22644,0.23644,0.50061,-0.74783,0.76924,-0.21952 -2.9594,0.68554,1.1697,1.6651,1.0536,-0.38573,1.0717,1.1903,1.4861,0.71915,0.15754,0.13936,-0.54331,0.66467,0.74028 -1.0381,2.3717,1.9685,1.2195,1.6426,-0.55558,-1.3094,1.681,0.75403,-0.33992,0.15129,0.14351,-0.61019,1.5407,-0.043916 -3.914,-2.4224,-0.015639,-1.7987,0.86507,-0.81398,-1.1979,-0.29166,0.9601,-1.3224,-0.51563,-0.3452,-0.28052,1.3454,0.77119 -1.6435,-1.9617,-0.27636,-1.3818,0.32277,0.43837,-2.6294,-1.2061,0.12678,0.89569,-1.7174,1.9284,0.2714,1.0372,1.9729 -0.46706,-2.9352,0.85042,-2.0665,-0.17044,0.87414,-1.7935,-1.2236,0.17021,1.5254,-2.9282,0.58477,-0.3225,1.5924,0.90055 -2.8719,-3.4551,-0.11884,-1.3486,0.24129,-1.3176,-2.242,0.51463,0.33397,0.18574,-1.4526,-0.63977,-0.54159,0.44322,1.4591 -2.914,-1.5429,-0.91317,-1.8597,1.4239,0.27095,-2.384,-1.0286,-1.0691,-0.91859,-1.1455,1.8221,0.29377,0.16017,2.2115 -3.6712,-2.2732,0.511,-2.3909,1.0543,-1.3624,-1.6639,-0.15378,0.25671,-0.96212,-1.1741,-0.089093,0.19989,0.72191,1.1235 -0.47725,-4.1922,0.53411,-0.16832,2.5996,-0.43914,-0.56973,-0.79293,-0.098125,0.043459,-2.6479,0.45802,0.61915,-0.54268,1.3793 -2.5744,-3.1233,0.92051,-1.8748,0.76701,-0.11058,-1.2378,0.21453,1.2866,-0.092291,-1.9386,-0.4663,1.2012,1.0901,0.70873 -1.6756,-4.1537,-1.1043,0.96907,1.8881,-0.61569,-1.7248,-0.031682,0.47818,-0.9196,-1.4476,-0.37633,-1.0487,0.49677,2.2189 -2.6795,-2.6917,-0.33563,-1.4538,0.59532,0.3313,-2.8598,-0.97824,0.51925,0.1547,-0.83058,2.0889,-0.36941,1.6872,0.99903 -1.6936,-2.6941,-0.51295,-0.16548,1.7972,-1.8992,-1.6448,-0.77295,0.76806,0.083503,-2.281,1.6862,0.23817,-0.34574,2.0907 -0.66539,3.8148,0.38265,-0.23329,-0.61434,0.7206,-1.1297,0.76329,-0.21567,0.82537,-1.2389,1.0255,0.56517,-0.3791,0.20412 -2.5665,1.7639,0.5173,-0.31877,-1.2503,1.8429,1.2117,-0.26461,0.32247,-0.4377,0.49064,0.33023,0.73143,-0.40953,0.54759 -1.7462,3.3187,1.1571,0.35514,-0.23685,0.86708,-0.46155,1.1454,0.2556,0.83643,0.29607,1.4791,0.11621,0.14657,0.016681 -3.0266,1.6715,-0.34369,-0.09462,0.082974,0.95225,1.4791,-0.43105,0.36001,2.1325,0.6869,1.1675,-0.034471,0.36478,-0.64613 -2.8953,2.0527,0.24383,-0.49007,-0.47111,0.82104,1.1274,0.56769,0.6748,0.0062143,0.64658,-0.068838,1.0695,-1.2645,1.1079 -0.67785,3.7984,-0.80322,-0.28663,0.029905,1.4215,-1.7171,0.454,-0.86634,-0.68494,0.36567,0.66898,0.81088,-0.66436,-0.81908 -3.2659,1.9375,-0.64629,0.1747,-0.13839,-0.37278,1.4193,1.9485,0.74168,-0.54948,0.098078,0.74802,-0.16414,-0.52055,0.43852 -2.402,1.2087,0.65924,0.44379,-0.66513,0.82533,0.71652,0.17426,1.822,1.2298,0.71103,0.098961,0.52758,-0.86721,0.55583 2.6181,0.19543,0.96482,-0.38128,1.4841,-0.49936,-1.6439,0.48652,2.1836,-0.087842,-1.2946,-0.1792,1.0776,-0.53549,-1.0106 -2.5693,2.3079,0.77709,-0.048081,-0.81719,1.2824,1.1532,0.40973,0.051657,-0.75061,0.18094,0.59473,0.929,-0.92051,1.142 1.3276,3.519,0.42843,-0.81226,-0.93098,0.84547,-0.97498,-1.2203,-0.53067,-1.3688,-0.90901,0.010707,-0.034095,0.89456,-0.76028 5.2037,0.8203,0.75095,-1.6696,1.8338,0.27344,0.28665,0.43571,0.8792,0.40852,-0.06863,0.87147,-1.6962,0.44112,-2.0909 4.2806,-0.86401,0.66103,-0.030482,2.6655,1.1169,-0.4366,-0.39876,1.2345,-0.17102,-0.46702,0.17838,0.71868,-0.41595,-0.75115 2.2682,1.4109,-1.1413,-2.3106,-0.16149,0.34024,-0.80738,0.038018,0.97434,1.5864,0.66066,-0.062691,0.31477,-1.5445,-0.42123 0.83135,2.6294,1.6897,-1.1414,0.56866,1.1621,-2.602,1.7349,-0.61692,0.45353,0.83066,0.40571,0.31831,0.5316,0.28151 2.068,0.62368,0.8126,0.41971,1.439,-0.057777,-1.8431,-0.79473,1.9124,-0.47128,-0.38471,0.42466,1.17,-1.0763,-1.0149 -2.8961,2.1174,1.3492,-0.27799,-0.002911,-0.34932,1.386,0.57368,0.19774,-0.94338,0.78223,-0.24472,1.2584,-0.29291,0.71466 -0.86501,1.8269,1.8864,0.82353,0.16481,-0.96009,-1.3262,1.3451,1.9519,-0.76493,0.00082201,1.0462,-0.017008,-0.27395,1.2726 2.8718,1.4545,0.28106,0.57411,1.8414,-0.15682,-0.89278,-2.1422,1.0469,0.89119,0.060694,-0.097027,0.36345,-0.71868,-1.2242 -3.3559,1.8717,0.61015,-0.33285,-0.039845,1.8987,1.1504,0.45523,-0.65273,-1.0452,1.118,-0.019043,0.42415,-0.044583,-0.56812 -2.996,2.3415,0.21198,-0.49739,0.1029,1.2252,1.2277,-0.71635,-1.5889,0.27889,-0.14811,1.5142,-0.094881,0.47981,0.012817 -4.0224,1.0896,0.12891,-0.93667,0.20576,0.69049,1.318,-0.90628,-0.44208,1.062,0.64491,0.58975,0.75091,0.69736,-0.35565 -3.5007,-1.5184,-0.43853,-1.0788,1.3891,-0.36047,-1.1897,-0.47265,1.1726,0.93503,0.032153,-0.34411,-0.74978,0.52841,0.33534 -3.8263,-1.2909,-2.2384,-1.5012,1.4405,0.084568,0.33689,-0.84492,0.18049,-1.4755,-2.0432,-0.12424,-0.79779,-0.044543,-0.19503 -3.4842,-0.75133,-2.4599,-1.3851,1.8223,-0.12463,-0.77209,-0.79595,-0.052669,-2.021,-0.73191,1.4756,-0.41105,-0.87432,0.31742 -2.5776,-1.8627,-0.49405,0.15865,1.4126,-1.8616,-0.65197,-1.1343,0.64698,0.68366,-0.25366,-0.57564,-0.4526,-0.62828,0.91966 -3.7444,-0.52045,-1.8675,-0.85838,0.79147,-0.76965,0.81113,0.20343,1.4115,-0.34014,-0.26873,-0.76802,-1.0675,0.5845,-0.74756 -3.341,-0.59836,-2.5112,-0.75202,2.6484,0.46357,-0.4529,-1.8496,-0.29648,-0.98578,-1.0745,1.8068,-0.78044,-0.064975,-0.17629 -4.1132,-0.89571,-2.1279,-1.7267,2.11,-0.2518,-0.27054,-0.62181,-0.076465,-1.861,-0.95164,0.14518,-0.40117,0.22883,0.074812 -2.1453,-0.54776,3.3375,-0.90011,0.39892,-0.65717,0.70097,-0.030767,1.2258,0.0633,-0.53717,0.10714,0.39898,0.1398,0.41594 -3.4938,0.023661,0.34402,-1.018,0.18906,2.2711,1.1881,-1.6172,-0.25957,-0.62471,0.94443,0.12468,-0.41241,-0.13294,-0.8534 -1.9773,0.29283,0.63014,1.7274,0.42017,-1.7682,0.27971,1.9008,0.73642,0.16976,0.17426,-1.1449,-1.2836,-0.36241,0.77719 -2.2843,-0.96421,-0.59103,-1.5172,0.0369,2.4449,-0.84172,-2.3391,-1.2469,-1.2648,-0.25407,0.29454,-0.35108,1.114,-0.065672 -3.1695,-0.073577,-0.96429,-0.13774,0.029562,0.44748,1.4495,-0.78462,0.56261,0.037327,-0.87851,-0.83766,1.3325,0.077843,-0.57623 -1.8185,-1.279,1.4715,-0.21822,0.95738,1.2472,1.0611,-1.6135,2.0707,-0.53438,-0.49977,-0.63268,0.72397,0.11466,-0.29703 -0.54063,-0.98249,-0.045974,-0.28466,0.87524,1.9532,0.6349,1.5228,1.713,-1.4045,-0.42569,-1.1943,1.6409,0.46734,0.45101 -3.9943,-1.3596,-1.0361,-1.5998,1.3461,-1.2571,-1.1807,-0.22728,0.44012,-0.62364,-0.53078,0.64638,-0.48915,0.445,0.15739 -0.97813,-0.32188,2.0756,-0.28429,0.075163,1.1563,0.99851,-0.6322,2.3207,-0.51852,0.12927,0.011175,1.2891,-0.78352,-0.61121 -2.3642,-1.5148,0.11577,-0.71296,0.37178,0.52326,-0.054643,-0.84834,1.8208,-0.31172,-1.1214,-0.2537,0.55918,0.021896,-0.11854 -2.1972,1.1697,-1.5239,0.096025,-1.0328,1.0201,1.9022,-0.20747,0.2413,-1.3117,-0.068932,-0.79054,-0.87267,-0.3315,0.033074 1.2546,1.2404,1.7042,1.1108,0.44044,1.7399,-0.89325,-0.99282,1.5456,-0.89038,-0.31705,0.82603,0.82422,-1.2735,0.59575 -2.8336,-1.8183,-1.8305,-0.83764,0.66451,-1.2547,-1.8173,-0.40679,1.194,-0.26874,-0.7881,0.98027,-0.35434,0.082918,1.0902 -1.9573,-3.0434,-0.70766,-0.57171,1.3643,-1.2486,-2.337,-0.56025,1.1614,0.30622,-1.7364,0.90619,-0.3903,0.21026,2.2565 -2.8545,-2.1217,-1.7472,-1.3617,0.68561,-0.0047559,-2.8023,0.017246,-0.31074,-0.43439,-1.0429,1.7894,-0.42421,-0.17825,1.8244 -1.7266,-4.3304,-0.81513,0.65403,1.3776,-0.5783,-1.8522,-0.43584,0.55876,0.10138,-1.869,-0.068701,-0.24769,-0.60039,1.2311 -1.4301,-4.1681,-1.4803,0.77045,1.6741,-0.40617,-1.5306,-0.055662,-0.46662,-0.80555,-1.77,0.049751,-0.33201,-0.96257,1.3536 -2.7362,-2.3935,-1.7561,-0.37403,-0.08823,-0.2278,-1.2316,0.51883,1.3788,-0.26421,-0.95026,-1.0154,-1.1106,0.68786,0.37534 -1.3913,-1.5908,-0.92157,-0.16464,0.84641,-0.14388,-1.9907,-1.7154,1.2922,0.44337,-1.0356,2.8953,-0.28978,0.3361,1.4347 -3.9142,-0.62806,-1.7662,-1.439,0.59107,-1.6017,0.24288,-0.37348,0.88683,-0.89681,-0.31823,-0.20309,-0.55469,0.03136,-0.63547 -3.2392,-1.1238,-0.26972,-0.93427,-0.30837,0.25175,-0.73072,-1.1564,1.3279,0.19097,0.099354,0.43451,0.42219,0.59775,-0.52166 -0.62083,0.73135,0.11727,1.9502,-0.37091,-1.716,-0.24272,2.0269,0.3626,-1.1781,0.26244,-0.50288,-1.7162,-0.64117,1.1202 -2.6309,0.87854,0.91886,-0.56711,0.056141,0.11841,0.19493,1.6324,1.7999,-1.0299,1.1299,-0.62806,0.52832,-0.34734,1.0966 -2.5938,0.16258,-0.63094,1.9203,1.5028,-1.1471,2.2087,1.0272,0.38655,-0.72723,-0.018204,-0.44712,-0.61792,-0.39501,0.82549 -2.7106,0.085592,-2.1126,-0.66042,-1.2387,-0.35817,0.47919,0.61198,1.1756,-1.0808,0.1625,-0.94281,-0.087617,-0.23679,-0.12374 -2.9478,-0.3404,-2.7512,-0.53628,-1.2905,0.34879,0.18903,0.99915,0.24221,-0.52982,-0.49457,-1.4575,-0.0015083,0.26942,-0.53117 -0.84654,-1.4454,-0.82308,1.9943,0.20211,0.62007,0.97051,1.4948,0.59485,-1.1922,-0.088994,-2.1221,-0.50059,0.59759,0.88198 -0.37925,-0.51026,-1.0147,1.2004,-0.64554,0.46209,1.0659,1.7502,1.6382,-1.0619,0.045449,-1.426,-0.73421,0.59165,0.61378 -2.5882,-0.4908,0.98389,-1.7383,-1.1343,0.044137,-0.28117,-2.3615,-0.51197,0.47151,0.63758,-0.0756,0.43625,0.4516,-0.65317 0.66076,-1.3992,2.5994,2.1511,0.37986,2.8806,0.24347,0.0059402,0.48218,-0.77682,-0.67118,-0.33663,0.97903,-0.18865,0.79989 -0.62747,-2.991,-0.3355,-1.1084,0.062889,0.77169,-1.1226,1.5887,0.53799,-0.088301,-1.8932,-0.15247,2.0151,-0.28583,0.19522 1.48,0.10466,2.2897,1.9531,1.9268,2.5669,-0.56326,-0.57487,-0.099415,-1.5401,-0.66864,0.9539,0.39909,-0.98877,1.1112 -2.2639,-1.307,1.7457,-0.46938,-0.29056,-1.3054,1.592,0.77643,0.5706,-0.88607,-0.55484,0.0031984,1.53,-2.3151,-0.58703 -1.6388,-3.2881,1.282,-0.39675,-0.014153,0.28994,-0.28392,0.1752,1.9978,0.9253,-1.3457,-1.4084,1.3361,-0.13068,-0.42214 -0.010707,-2.1069,3.173,0.74762,0.26396,-0.27128,0.57428,2.1955,1.6837,-1.1714,-0.21883,-0.30333,1.4453,0.016141,0.13631 ================================================ FILE: bayesian_ml/2/Xtrain.csv ================================================ 2.5666,-1.3258,-2.3719,-0.81289,-1.7141,0.7571,-1.3487,1.482,1.7461,-0.623,1.1981,-0.059047,0.71099,-0.091248,-0.80487 -1.4274,-3.2869,-1.7332,0.44458,-0.75227,-0.5145,-2.0378,0.84484,0.050713,-0.57453,-0.079848,-0.7359,-1.4958,-0.74878,-0.64043 3.9474,-1.4721,-1.0213,-1.7703,-0.25065,-2.9527,1.7425,0.74606,0.9182,-1.2281,1.0997,1.2411,0.59785,-0.0074702,0.094585 -1.4837,2.2081,-0.77793,0.50082,-2.4392,0.28392,1.1439,0.11527,-0.21909,0.023451,-0.15907,0.39537,0.59824,0.46849,0.88638 -2.1028,0.0073963,-3.9499,-0.90592,0.029504,-0.46591,-0.4158,1.562,-0.99494,0.11942,-1.2049,0.25491,0.14717,1.0847,0.36351 3.2991,2.085,1.0111,-1.9042,-0.35306,-3.4281,0.38001,0.18513,-0.35228,-1.5426,-0.84675,-0.88732,0.35325,0.90059,-0.002708 3.9044,-3.9422,-2.3386,0.81279,-1.009,1.4146,2.2834,1.6637,-1.0557,-0.053001,-1.1022,1.2403,-0.76104,0.95952,-0.77029 -1.4291,-0.48612,-3.2349,0.47944,-0.51728,-2.1262,-0.9337,0.77219,-0.30303,-0.36705,-0.40535,1.1524,-0.57521,0.56164,0.58526 2.0031,-1.4954,0.039513,2.421,0.77332,3.1976,-2.4499,1.0509,-2.5108,-0.37349,0.7136,-0.12783,1.4083,0.81521,-0.22435 -0.60036,-4.414,0.007589,0.70466,-0.1621,0.72591,-2.0855,0.66641,0.57493,1.3395,-0.54965,-0.46973,0.44359,-0.69514,-0.55196 1.7179,0.75064,-1.2877,0.85772,-1.3213,-1.1897,-1.3042,-1.2744,1.6145,-0.152,0.95318,-0.6178,0.74517,0.75639,0.14568 -1.6281,-2.4479,0.53035,-0.36875,-1.9385,-0.64237,-1.4168,0.54838,1.0992,-0.024745,0.84802,-0.82807,0.46048,-0.84405,-0.46906 -0.6593,-3.1599,-2.4268,1.351,0.13825,0.65404,-1.5812,0.72326,-1.5678,-1.0984,-0.78323,-1.3452,-1.1478,-1.1481,0.59698 -1.498,-3.3503,-0.99731,0.12317,0.68932,-1.7405,-2.0327,0.53733,-0.12443,0.41428,-0.31385,0.8485,-0.77796,-0.93799,0.093398 -1.4576,-2.7439,-1.258,2.0276,0.35579,-2.0092,0.61147,-0.40868,-0.94461,-0.7793,1.1164,-1.2663,-0.75425,0.064724,-0.63076 -0.84781,-0.21116,-0.30142,0.7907,-2.2064,0.19446,0.6592,-1.3174,-0.71913,0.93376,1.7115,-0.38937,-0.55148,0.19458,0.384 -1.224,-0.94238,-0.93723,1.6249,2.1838,-0.19948,2.2262,2.4887,-1.1045,1.5258,-0.67267,-1.2636,0.96224,-0.70839,-0.1442 -1.028,-1.5131,-2.1218,1.0892,0.33856,-2.9643,-0.99365,0.78363,-0.90871,0.49655,-0.24755,1.0852,-0.11857,-0.27876,0.88418 5.2585,-2.1407,-0.57161,-2.3591,-0.032307,-2.7486,1.3856,0.4939,0.29239,-1.1645,0.64149,0.22433,0.049199,0.41939,-0.057223 -2.1558,-1.5152,-0.68488,2.1007,-0.4805,-1.5174,0.81283,-1.166,-0.21387,0.13778,1.5727,0.39648,-0.62022,-0.51807,-1.0092 3.7349,-0.023733,1.521,0.35133,-0.79602,-1.9382,-1.6576,-1.7613,0.077399,-0.53543,0.15959,-0.51381,-0.49478,1.1553,0.54943 0.20717,-0.27514,0.71168,2.9795,-1.184,-1.1084,0.016145,0.1743,0.61814,-1.9038,0.97128,-0.084224,-0.25053,1.1475,0.43711 5.4473,-2.9775,-1.5332,-3.0821,-0.51306,-1.1809,2.2399,1.7428,-0.53312,0.34662,0.61248,1.6737,-0.18305,-0.91071,0.40647 1.184,-1.0546,1.4237,1.8429,-2.1997,-0.90696,1.0869,-0.85029,1.0056,-1.253,-0.89226,-0.71715,-0.26344,-0.18645,0.59489 -0.97227,-2.8043,0.47904,2.4952,-1.4571,-0.4924,-0.090191,0.50802,0.21962,-0.43352,1.264,-1.3102,-1.2058,-0.63794,-0.37302 -1.5136,-0.8645,-0.56241,2.5611,-1.1732,-1.7037,1.619,-0.33994,0.11018,-0.72254,1.0977,-0.54795,-0.79552,0.47613,-0.50755 0.9024,-0.85601,2.0661,-1.6653,-3.3576,1.922,0.92693,0.78273,-1.2559,-1.9008,-0.67077,-0.69521,-0.75881,-1.4099,-0.2555 0.18415,-1.9337,1.2181,2.1187,-2.1319,-0.35025,-0.1803,0.74236,0.42307,-1.0069,1.4134,-0.60593,-0.1402,0.23088,0.4159 -1.0765,-1.1542,-0.25369,2.7056,-1.8071,-0.95458,0.83963,-0.0033773,0.31273,-1.2728,1.208,-0.56309,-0.91292,-0.31662,-0.082002 -0.89224,1.183,-1.1264,2.426,0.91623,-0.043234,1.1426,1.7944,-0.58845,0.022043,0.094761,-0.31365,-1.8063,-0.042443,-0.46596 4.0583,-4.6325,-1.4341,-1.0587,-0.77341,-0.44916,2.1508,2.4637,0.32093,0.042096,-0.45045,2.8896,-0.4892,0.12917,-0.31792 -0.60275,-2.8662,0.3641,2.1928,-1.7319,0.13843,-0.37686,0.70954,0.49747,-0.27106,1.2875,-1.4579,-0.32867,-0.7328,-0.52658 2.4739,-0.45377,-0.35826,0.42376,-2.0159,0.64115,-1.9769,1.1494,-0.10567,0.707,0.40033,0.013749,1.0302,0.92312,0.63729 -0.48161,-2.9103,1.3007,2.254,-1.5728,-1.007,-0.12836,0.056697,0.26868,-0.29631,0.4027,-0.41905,0.16922,-1.244,-0.643 -1.6641,1.2497,0.41337,1.494,-2.0766,-1.3704,1.1414,-0.18155,-0.047323,0.95213,0.8817,0.66573,0.25333,0.92113,0.35961 0.32017,-0.53175,0.79099,2.3588,-2.1058,0.73878,0.060322,-0.87883,-0.029431,-0.012165,0.83372,0.38396,-0.19583,-0.65751,1.0288 -1.6968,1.2452,-1.3904,1.0975,-1.2042,0.26294,1.4819,1.784,-0.95436,-0.48598,-0.096861,-0.37737,0.38744,0.38708,0.36822 -1.0927,2.3295,-0.60209,0.50907,-2.0749,0.73825,-0.87317,-0.43482,-1.8318,0.4797,0.5682,0.73762,-0.25799,0.22791,-0.42733 -1.6931,-1.489,-2.084,1.4482,-0.86301,-2.6656,0.64257,-1.6774,-0.12551,0.56494,-0.48227,0.025421,-0.054858,0.32138,-0.59092 -1.2546,-0.52436,1.4641,1.4288,-2.3678,-1.2614,-0.28959,0.16469,0.35425,-0.33444,1.4309,0.56673,0.23215,-0.78027,0.07571 -0.051082,1.3105,-0.28171,0.042365,-2.7676,-0.89768,1.4622,0.27567,-0.017071,0.99035,-1.1688,-0.35072,-0.10222,0.79056,1.0775 -1.178,-2.2286,-0.63327,1.3714,-1.8697,-1.7996,0.60809,-1.2463,0.41965,0.24084,0.23568,-0.25144,0.45274,-1.0851,-0.84551 -1.9335,-1.5841,-2.279,0.95083,-1.4135,-2.1251,-0.14653,-0.87195,-0.040601,-0.14595,0.3721,-0.16178,-0.78291,0.07095,-1.1005 4.9072,-2.7373,-1.467,0.17534,-0.023292,1.2853,0.93602,-0.36855,-1.0098,-2.1563,-0.15353,-1.4884,-0.46082,-0.55703,-0.21821 -0.09049,-0.98698,1.408,1.4985,-2.3507,0.017958,-1.2745,1.9331,0.91643,-0.91427,1.0373,0.28992,0.68893,-0.43749,0.24988 -2.1153,0.97063,-2.212,-0.17078,-1.7802,1.2847,0.82146,0.032876,-0.79868,0.94457,0.73366,0.32157,0.82864,-0.22728,-0.35317 -1.7956,-1.9445,-0.42975,1.6172,-1.7036,-0.15429,-0.30391,0.68999,1.0712,-0.62799,1.3967,-1.2523,-1.0843,-0.83791,-0.50288 -0.13602,1.4693,-2.0637,1.8906,3.4686,-0.56487,0.18381,1.0167,-1.1047,-1.6469,-0.68725,-2.1896,0.16982,0.2881,-0.19383 1.9148,1.4018,1.3463,0.83892,0.18835,-2.7673,-1.4594,-0.90896,-0.39609,-0.30978,1.1105,-0.31123,0.38621,1.587,0.13939 -0.14067,0.54037,-0.13392,2.5173,-1.418,0.21568,0.74163,-1.358,-1.3675,0.7635,0.64238,0.11171,-0.28955,0.073564,0.99689 1.3237,-3.5597,1.3334,1.0871,-2.0141,1.3798,0.33039,-0.78677,-0.17521,1.1133,-1.047,-1.5283,-0.47551,-1.0973,-0.4167 -0.28035,-4.0092,-1.3861,1.8605,0.22043,1.7557,-1.3295,0.49124,-1.0604,0.085447,-0.56655,-1.583,1.1,-0.66394,0.61297 0.21368,-3.1158,-2.1461,2.2073,0.14427,0.59403,-1.3313,0.88124,-0.35175,0.27026,-0.53998,0.21976,0.22598,-1.1714,0.77108 -1.0166,-3.2667,-0.12276,0.56852,-0.27486,-0.56306,-0.98931,-1.0421,0.88377,1.1798,-0.34299,-0.001694,0.082409,-1.4975,-1.0426 1.5921,-0.17801,2.5668,1.6306,-1.8327,-0.097746,0.50572,-1.7207,0.18317,-0.14224,0.28249,0.15549,-1.1168,0.046315,0.58805 -1.1347,-3.6185,-1.839,1.7239,0.50775,-0.4158,-1.7734,-0.89965,-1.9145,-0.57742,0.03882,0.53525,-0.06948,-1.1813,0.31682 0.59604,3.3246,-1.8223,0.56996,-1.4795,0.69701,-0.043895,0.080974,-1.7393,-0.89464,-1.2018,-1.7577,-0.19857,-0.51169,0.39255 -0.90382,-2.4222,-0.59724,-0.28519,-1.093,0.51815,-1.7633,0.84509,0.91928,1.1377,-0.12593,-0.11628,0.97653,-0.59707,0.12359 -1.6771,0.42956,-1.0201,0.62022,-0.62309,-0.70351,1.1355,2.307,0.71181,1.2742,-0.41403,-0.12488,0.99092,0.098038,0.46437 -0.34234,-1.9643,-2.9346,1.9943,-0.37028,0.29518,-0.87861,0.80119,-1.0285,-0.73775,-0.089918,0.24317,-0.58777,-1.0115,0.67746 2.6051,-0.92159,-1.7228,-1.4855,0.053796,-2.4074,2.2838,1.3516,1.249,0.59761,0.50959,1.9912,0.11186,0.34758,0.61898 3.9177,-0.71261,1.2954,0.89062,1.2439,-1.0428,-1.1529,-2.2508,-0.43248,-0.13609,2.4281,-0.14408,-0.085173,-0.00013507,0.15235 -0.19914,-1.7868,-2.597,1.8229,-0.92322,0.3244,-1.5956,0.51236,0.87835,0.66833,-0.46095,0.67827,0.060283,-1.0663,1.0283 -0.79997,-3.7043,-0.47361,-0.058896,0.069918,0.056053,-2.4334,0.94605,0.62744,1.5999,-0.8482,0.79269,0.34854,-0.81134,-0.095845 -1.042,-0.89878,-2.8623,0.78586,-0.6769,-1.3624,-1.4054,1.3562,0.17608,-0.29823,-0.1895,0.84968,-1.8356,-1.128,0.83237 -0.30296,-3.4163,-1.9106,0.94467,-0.2134,-0.21524,-1.3562,2.1971,0.20623,0.9556,-0.56142,-0.23374,-0.23355,0.35989,-0.064807 0.58431,-0.90758,3.0188,-1.7167,-2.2041,2.7443,-0.70193,1.6148,-2.3475,0.64635,0.91465,-0.77638,0.4369,0.81035,-0.42788 -1.0039,-1.963,0.0052222,1.854,-0.40203,2.104,-0.0057943,1.5925,0.25679,-1.3444,1.2131,-1.7099,-1.4331,-0.94759,-0.49163 2.0678,1.0329,-3.1063,0.0018347,-0.71899,0.39154,0.29086,0.54552,1.8309,0.39993,-0.50748,-0.81857,0.53893,-0.42252,-1.0312 2.9569,1.1015,0.68876,-1.1064,-1.7379,-1.2214,-1.647,-1.0548,-0.61067,-1.8948,0.15579,-0.25334,1.3945,-0.90473,-0.54444 -0.83512,-2.1424,1.7888,-1.9024,-0.99522,3.2111,-0.75813,0.90826,-1.856,1.4747,0.50064,-0.99187,0.2428,1.2663,-1.1486 -1.8955,-1.5394,-0.56399,1.5167,-0.91211,2.0052,-0.66655,0.20579,-0.4557,-0.81203,1.7774,-0.95281,-0.65805,-0.90704,-0.13525 2.8958,1.0442,-2.2368,-1.8104,-0.52553,-2.0707,0.91278,0.52087,1.6822,-0.23851,0.5729,-0.35434,0.97513,-0.50094,-0.48639 0.37764,-4.4509,1.9258,0.59892,0.59262,1.8476,-1.027,0.79466,-0.86695,1.304,1.0031,-1.2106,0.78984,-0.18432,-0.97984 1.7551,2.2723,-1.1555,-0.45928,-1.7852,1.6395,-1.9195,-0.28268,-1.3354,-1.5406,-0.047214,-1.7376,0.080521,-0.22039,0.15479 0.79812,-1.2466,2.5228,-0.84433,-1.0154,2.9556,-0.030581,1.4243,-2.1482,2.019,1.22,-0.83603,0.29986,2.0591,-0.48053 2.0736,-1.5276,-0.85809,0.56074,0.074172,1.67,-1.7412,2.9442,0.78236,0.42935,0.77909,-0.48634,2.7315,0.4966,-0.62726 -2.2028,0.35948,-1.41,0.98498,-0.45345,0.65548,0.81435,1.8657,-0.072147,1.0547,0.41646,-0.37188,-1.6435,0.24652,-1.0062 -2.0718,-2.377,0.56849,-1.9131,1.1032,2.6226,-1.4933,0.66763,-0.51674,0.60793,-0.77021,-1.0296,0.76607,1.4713,-0.064303 -1.9391,0.76693,-2.432,0.70182,-1.7182,0.80853,0.3978,-0.0065292,0.55167,0.83636,1.1616,0.71894,-0.32775,-0.030678,-0.99064 -1.1555,-3.1263,1.2936,-1.677,-1.5877,-0.36256,-0.69357,-1.6448,-1.5034,1.1424,0.56746,0.57622,-0.075231,-0.37535,-1.2924 4.268,-2.0637,-1.2992,0.69422,-0.05619,-0.48563,0.16383,-0.037106,1.7334,-1.9584,0.64738,-0.58832,-0.62884,0.021444,-0.85042 2.3088,-1.9394,-4.5064,0.88051,-1.1777,3.0331,1.9604,1.8307,-1.4493,-0.23008,-0.2567,0.8073,0.69233,0.43409,0.28527 -0.47667,0.33495,0.17873,3.4077,-0.7183,-1.941,0.70386,0.42582,-0.045546,-0.72397,0.31829,0.16042,0.48918,0.55951,-0.26113 1.1634,0.22035,-1.7548,-1.189,0.47192,-0.49526,-0.53698,0.54518,-0.95889,-0.30556,4.3203,0.62033,1.2166,-0.70549,0.58195 1.017,-4.1124,1.9707,0.83513,-1.1396,1.5317,0.23781,-0.0062123,-0.89105,1.9502,-0.27653,-1.2386,0.58663,-0.52226,-0.39481 3.6189,-0.80455,-2.1323,-0.25292,0.47618,-1.2713,1.724,0.85992,2.0224,-0.55966,0.80628,0.45483,0.075673,1.0243,-0.91599 -1.0127,-0.79832,-1.5547,2.0107,0.69687,1.258,0.28349,-0.43246,-0.66437,-0.79528,1.4024,-0.14473,0.71993,-0.87564,0.030091 1.2796,-2.0509,2.4667,0.35449,-1.0757,2.6298,-0.016651,0.87147,-1.2007,2.0048,0.43319,-0.53993,-0.08404,0.97992,0.52057 0.015205,-2.4994,2.3813,-0.92325,-1.4613,2.2417,-0.64733,0.68646,-1.0356,2.2587,0.4853,-1.1326,-0.51822,1.0492,-0.55721 2.4685,-0.7813,2.1585,-0.019012,-2.5738,-0.5556,-2.2114,1.436,-0.14625,-1.069,-0.30143,0.41968,0.96779,0.17469,0.062845 4.1134,-2.9836,-1.3034,-0.31639,-1.3204,0.98078,0.59894,0.97041,-0.35239,2.254,0.22904,0.88263,0.91085,0.19175,1.1138 -2.2722,-0.78738,-0.1465,-0.69321,1.3104,-1.3789,0.89883,0.074397,-2.0967,2.7994,0.49581,-0.61653,-0.26925,1.5611,-0.15886 -1.2811,-2.8579,1.8636,-1.0523,1.011,0.94026,-1.939,0.093637,-1.1754,3.0418,-0.25739,-0.29216,-0.87119,1.2824,0.16342 0.56011,-2.0628,0.79698,1.7762,-1.6322,0.54891,-1.6937,2.7822,0.49362,0.75453,0.79124,-0.66334,0.88918,0.30447,0.000462 3.1448,1.0228,-1.8107,1.3116,0.94585,-0.41006,1.776,-0.4073,-1.5978,-0.43464,-2.5203,-1.8706,0.27936,0.32687,-0.29558 4.552,-1.299,0.61769,0.2723,-1.0302,-1.0449,-1.1519,-0.96044,0.66683,-1.1796,-0.54502,-0.41151,0.079975,-0.40818,-1.02 3.9149,-1.7565,-0.46084,-1.931,-1.0887,-1.6526,0.62801,-0.10258,0.68093,-0.12997,1.3237,1.0796,2.2905,0.53481,0.66925 -1.2543,-3.1467,-1.386,-0.13677,-1.1347,0.4282,-2.0989,1.2678,-0.029714,0.97426,-0.17348,-0.65155,0.62558,0.40772,0.11699 -2.2209,-2.1647,-1.3686,1.3778,-0.70191,-1.1488,-0.25341,-0.50711,0.71094,-0.017519,1.2555,-0.40106,-0.95275,-0.73372,-1.4403 -0.19627,-2.5326,1.3727,1.4291,-0.27632,1.1727,-1.2282,3.0829,0.67906,1.2825,0.86777,-1.01,0.92469,0.028555,-0.30541 -1.7142,-3.2043,0.72358,-0.39462,-1.4094,0.17758,-1.7084,1.7347,0.29003,0.70333,0.38815,-1.2182,0.80998,-0.47673,-0.84349 2.9546,-1.0211,0.8726,1.8031,-0.55403,0.35314,0.62894,-2.5016,-2.0173,-1.5764,-0.10353,-0.30256,0.011701,-1.1227,0.94631 2.7244,-2.1765,0.07514,-2.3565,-0.28579,-0.38315,-0.44495,1.43,0.52443,1.5272,2.4787,2.3271,1.1968,-0.68475,0.26315 -0.61798,0.78995,2.0458,-1.2103,-0.16018,2.4836,-0.79556,2.561,-1.4188,0.21217,1.8871,-0.37585,1.5873,1.0207,-0.27166 -0.050501,3.1561,-2.7968,-0.21125,-0.98091,0.90884,-0.59407,0.60008,-0.69468,-0.74247,-0.93326,-1.1196,1.2288,0.25505,-0.53101 0.9268,2.1877,-0.11814,2.3061,-0.64665,-1.2509,-0.38468,-1.2896,-0.33227,-0.74824,-0.88642,-0.34101,0.10452,1.4478,0.76054 0.43979,-1.5508,2.1605,-0.20705,-3.2917,-0.35835,0.90512,0.17239,0.38376,0.35329,-1.5106,0.046618,-1.4364,-2.014,0.1588 0.8698,-4.1633,0.37834,0.13004,3.5956,-0.87512,0.054241,2.7233,-2.274,-0.38879,1.4081,1.4363,0.58708,-0.060667,0.86885 -1.5901,-2.0265,-2.3551,1.4023,-0.45938,0.22853,-0.72196,0.44308,1.1338,-0.019531,0.21101,-0.98532,-1.9776,-0.60097,-0.37815 2.5,-0.903,-1.3952,1.7706,0.88267,0.8521,-0.075011,-1.497,-1.5007,-0.32372,3.5597,-0.30213,1.0742,-0.04583,1.2335 -1.3384,-3.2318,-1.6517,1.8196,0.42395,0.78874,-0.69208,0.68113,0.28134,-0.29684,0.33419,-1.8985,-1.2771,-0.83062,-0.073991 -1.5642,0.6342,-4.2356,-0.35536,-0.42885,0.30025,-0.32574,0.4888,-0.057569,0.094359,-1.9279,0.56601,-0.19651,0.14433,0.74665 0.17585,2.3651,-0.6429,1.8376,0.20685,-1.3338,-1.0212,1.9096,0.34156,0.58823,-1.1934,-0.60526,0.6333,0.096543,-1.2759 -0.34735,1.5843,-1.369,1.8843,-1.4486,-0.41379,-0.2522,0.73114,0.26946,-0.75376,-0.14186,0.33102,-0.03265,0.72752,-0.58101 -0.63308,-3.2961,-1.3843,1.6127,1.3038,-0.86911,-1.9691,0.5043,-0.065324,-0.17346,0.38447,1.4343,-1.1589,-1.0484,0.52382 -0.16931,3.0661,-0.88953,0.67687,-0.9082,-0.62183,-1.7161,1.0816,-0.27843,0.277,0.47727,0.16964,0.22303,0.90483,-0.74586 -1.5462,-2.2285,-2.4925,1.0772,0.0010264,-0.40798,-1.1852,0.4911,1.0398,0.10304,-0.67617,-0.071091,-1.6884,-0.63454,-0.34542 -0.91163,1.0006,-0.5208,0.37776,-1.0213,1.0618,-0.088308,2.7802,1.5458,-0.17277,-0.036158,-0.59752,-1.3356,0.96918,0.12467 1.482,-1.487,-2.0888,-0.76676,-1.8271,-0.17051,0.86463,2.1302,0.8514,-0.32404,-0.23781,1.8589,1.3791,0.086851,-0.77747 -0.73431,-3.0917,-2.0921,1.6943,0.639,0.33594,-1.6145,0.58507,0.57057,0.37105,-0.48961,-0.13432,-0.88002,-0.6472,0.42008 0.76391,1.376,-2.0391,0.81676,-2.2883,-0.12781,0.46419,1.0197,0.11927,0.31859,-0.79079,-0.095236,-0.25351,0.33552,-0.14898 -1.5601,-2.6856,-2.1592,1.3194,-0.61623,-0.010198,-1.9155,0.33322,0.64071,0.85273,-0.16717,0.2457,-1.0967,-0.31189,-0.18952 2.1873,0.78127,-2.0445,0.10727,-0.6181,-1.2477,0.38218,-1.6531,1.0084,0.45753,0.91364,-1.1976,-0.4494,0.66348,1.8932 4.8926,-2.7286,2.326,-0.08894,-0.69812,0.58774,-1.1423,1.6882,-1.9348,1.34,-0.28677,0.24012,0.58498,0.63331,-0.41709 -0.95137,-1.5883,0.45244,2.5161,0.68068,-2.3601,2.7001,1.3792,-1.0021,-1.2889,0.52742,-0.78137,-0.22866,-0.091482,-0.46083 2.1319,-3.3292,2.9684,1.1232,-1.8325,-1.0985,1.0648,-0.33812,-1.1632,-0.26638,-0.55124,-0.23727,-0.37329,-1.0212,-0.32787 2.0949,-1.8623,-2.3678,-0.84235,-2.1579,-0.055757,1.3597,2.196,1.2591,-0.22375,-0.17341,2.1426,1.1136,0.57608,-1.0247 2.738,1.6617,-1.287,0.82578,0.41376,-1.2973,-0.14018,-0.20267,0.80713,1.6096,-1.0647,-1.9625,0.54269,-0.1999,-0.041191 -0.52649,-2.3951,3.0864,0.33369,0.18849,-2.7446,1.6429,-0.98603,-2.1945,-0.11808,0.47657,-0.12795,1.0103,0.47973,-0.20947 2.4478,1.7026,-0.66879,-2.1557,-0.77776,-1.0137,-0.74774,-1.3083,0.10385,-0.20359,0.75612,-1.059,1.4702,0.27354,0.78082 0.99413,-4.6072,3.5988,-0.61979,0.35972,0.96658,-0.29325,1.5287,-2.7099,2.4471,0.32117,-0.17162,-0.08254,0.24539,-1.292 2.2087,-0.39613,-0.65388,2.4233,1.7092,-0.1027,0.47547,-1.3423,-1.5944,0.36724,1.8426,-0.22845,1.3836,0.25764,0.85164 -2.8729,-0.87481,-0.92001,-0.97578,2.0812,-2.4091,0.35801,0.14569,-1.9697,1.6841,-0.18478,-0.3961,0.35542,1.7225,0.51931 0.82654,1.2993,-1.7173,2.6835,0.75091,0.22999,-0.80297,-0.39236,-1.1593,0.5834,1.3311,-0.65816,-0.011326,0.19285,-0.072442 2.366,-2.2233,-0.50905,0.021228,-1.2526,1.3985,-1.1621,-1.4057,-0.73492,-2.3115,0.36357,-0.36938,2.1951,-1.4718,0.2287 2.1884,0.2458,3.5744,-1.943,-0.70992,-2.8376,1.9798,0.47809,-1.629,-1.1959,-1.3701,-0.56663,-0.90485,0.84555,-0.35395 4.1425,-1.0728,1.1273,0.36348,-2.1751,-0.0013193,-0.31094,1.2118,0.18348,-0.65526,-0.66941,-0.20747,-2.2926,1.3067,-0.43502 0.19413,0.95165,2.942,-1.495,-0.68173,-2.364,2.3422,0.98274,-2.4341,0.5966,-0.98484,-0.48214,0.18031,1.2102,0.64608 0.18976,-2.2853,4.0603,-1.4244,2.1402,-2.4065,1.3525,0.34608,-3.84,-0.4555,0.074191,-0.14579,-0.28701,0.62813,-0.51193 1.6047,-0.96552,3.9614,-1.8519,-0.098606,-2.5517,1.0609,0.40018,-3.3628,-1.0535,-0.42459,-0.4732,-0.20641,0.35528,-1.0105 -1.7483,-0.8693,4.112,-1.9237,-0.61551,-1.2673,-0.060875,0.19054,-2.4074,-0.78645,0.28667,-0.37088,-0.26325,0.45919,0.020823 -1.5222,-1.3027,-0.24873,2.2092,-0.71596,-0.49525,0.59004,-0.32931,1.2743,0.027553,1.7231,0.10522,-1.0214,-0.50816,-1.1103 2.9243,0.6274,-1.6911,0.17963,-0.98939,-0.72461,-0.47379,-1.6154,0.82411,0.71824,1.2645,-1.1079,-0.060284,0.84678,1.2828 0.047652,-2.7001,2.6148,-0.50972,-1.0862,-2.3807,1.6783,-0.43882,-2.0821,0.52377,0.7517,-0.13241,0.61271,0.19706,-0.40451 -1.09,-1.6488,2.0671,0.40548,0.24107,-3.2599,2.4206,-0.48087,-2.3012,0.4664,0.11177,-0.26564,0.70791,0.87668,0.16056 -0.38922,-1.8289,3.1346,0.60494,-2.2133,-1.8843,0.47075,0.58247,-0.33082,-0.49214,0.80938,0.36349,0.41763,0.38007,0.051963 2.6423,-2.0903,-2.7658,1.0927,1.2185,0.18777,3.2852,0.43135,0.37972,-0.98649,0.20778,1.7452,0.19727,1.2549,0.37539 3.825,0.37618,-0.21923,-1.1939,-1.9784,0.60532,-1.8231,0.95579,0.71189,0.44522,-1.2732,-0.82898,-0.07061,0.61672,-0.97147 -0.43494,-2.0196,-2.5562,1.8487,0.53284,-2.2415,-0.58741,1.3277,-1.2205,-0.077253,0.2135,1.8042,-0.14607,-0.74632,-0.27239 0.36769,-4.3093,-0.10209,0.090706,-1.7013,0.38776,-0.56564,0.11456,0.59606,0.98111,-1.6315,-0.4718,-0.033779,-0.71856,-1.1622 2.4413,-2.9669,-3.3929,1.0643,-1.2244,1.9725,1.4107,2.0561,0.58517,0.17232,0.24667,1.7241,-0.18879,0.3007,-0.14765 2.7991,2.3133,-0.080451,0.81658,0.60807,-1.7276,0.051801,-0.61391,0.47311,0.71155,-2.4074,-1.6155,-0.26658,-0.29005,-0.362 4.2067,-2.8569,-1.1875,0.31857,-1.0244,-0.1169,2.062,1.6687,-1.527,2.1412,-1.1146,0.0045832,-0.098438,1.0515,0.68316 3.2889,-2.9837,-2.3965,0.59798,-0.61743,0.55271,2.3885,0.73871,1.3599,-1.0525,0.3953,1.5609,0.13541,0.38978,0.075691 0.68859,-1.0468,-2.4185,1.8958,0.21705,-2.2479,0.98372,0.94935,-1.3339,0.62751,-0.42159,1.2438,1.721,0.16167,0.01713 -0.56644,0.39986,-3.1513,0.87388,-0.51386,-1.5785,0.0017829,1.1072,-0.06538,0.74614,-0.56803,0.56811,0.3395,1.4246,1.0907 -1.4613,-0.1158,-2.7089,-0.40962,0.077014,-1.7935,-0.60892,1.7036,-0.72815,-0.77499,0.085295,1.5247,0.1233,0.64139,1.0975 -1.8004,-2.5636,-0.79253,-1.3224,-2.187,-0.082674,-2.3683,-0.18984,-0.17207,1.2054,-0.46575,-0.30085,0.42729,-0.44825,0.42163 0.84069,2.7631,-1.0071,-0.29467,-2.2805,-0.77476,-1.6503,0.03724,-0.69511,1.0242,-0.50059,-1.1389,0.4777,0.22312,-0.019764 2.1483,0.62327,0.42912,-0.80516,-0.36124,-1.72,-2.1196,-0.82194,0.14076,-0.1963,3.0033,0.35585,1.147,0.62248,-0.23869 1.2316,-1.8331,-1.2566,1.4229,-0.31857,-2.2604,0.44864,0.43493,-1.2253,1.0005,-0.33517,1.5283,1.4893,-0.65917,-0.088454 0.20443,-2.2968,-1.2868,1.6572,0.41024,-2.4033,-0.40508,0.054035,-1.7354,0.72873,-0.32598,1.748,0.89209,-0.40852,0.50031 0.44118,-1.8469,-1.8666,1.6781,-0.59633,-2.0496,-0.026593,1.0484,-0.85409,0.15015,0.19927,1.0895,0.65752,-0.97828,-0.53334 -0.54293,-0.62769,-3.1088,1.0837,0.61094,-1.3572,-0.28112,1.2003,-0.44638,1.0169,-1.1532,0.43725,0.20037,1.4884,1.3217 3.8509,-0.25737,0.21072,-0.7805,-1.3209,-1.47,-1.8267,-1.1034,0.92495,0.2852,1.2777,-1.2314,-0.42101,0.34013,0.90588 -0.68999,1.7396,-2.1006,1.5197,0.80338,1.6352,0.18259,2.2761,-0.33577,-0.4751,-1.2887,-0.80372,-1.1321,0.065709,0.22629 0.27655,-3.4915,-2.0286,1.3385,-0.72817,-0.76046,-1.1779,0.3542,-0.38543,0.90147,-0.75326,0.98402,-0.10907,-0.78509,-0.32051 1.6533,1.2354,-0.17039,0.97479,1.0001,-0.39112,-1.0253,-1.4698,-1.5392,-0.36464,1.9067,-1.6118,0.67162,0.10776,0.89836 1.5445,2.342,-2.4744,-1.1048,-1.0528,-0.12723,-0.30333,0.17665,0.80579,0.1542,-0.99063,-1.5471,1.1499,-0.56377,-0.36506 1.6653,0.84546,-0.10425,-0.20387,1.68,-1.3588,-0.59687,0.79803,1.7078,0.73212,-0.21016,-0.30878,2.256,0.2734,-0.84643 3.3746,1.5432,-0.47876,-2.1726,0.62883,0.31839,-0.55131,-1.1602,1.5691,-0.17592,0.88256,0.48576,0.37741,0.36954,-0.9316 1.4038,-0.056191,0.18166,2.1279,-1.094,-0.43846,2.4932,-1.791,-1.579,0.13808,-0.95219,-0.045749,0.25769,-0.39142,0.45099 2.037,2.6788,0.89951,-1.578,-1.232,-2.4013,-0.66066,-0.6391,-0.75441,-0.44302,-0.9338,-1.0768,-0.1631,-0.1296,-0.17512 2.228,0.54584,-0.11582,-0.67619,-2.3568,-0.40996,-2.0404,-0.47723,0.70828,-0.98102,0.00024605,-0.047335,0.92003,0.30087,0.2942 2.154,-0.68896,-0.31087,2.1076,-1.0508,0.041355,2.7213,-1.4035,-2.2143,-1.5091,-1.0717,0.22166,-0.35722,-0.51495,-0.7574 5.6809,-2.1194,-0.56622,-0.97651,-0.58713,-1.7264,0.86316,-0.11279,0.74249,-1.2323,0.2266,0.0056224,-0.76592,0.48051,-0.96265 1.4257,-1.1445,1.5572,2.0536,-1.7386,1.1752,0.6935,-1.2527,-0.22169,0.21414,0.42924,0.006309,-0.48074,-0.7364,0.84409 -0.098685,0.36192,-0.80754,2.4867,-1.1163,-0.64961,2.2642,-1.5877,-0.3097,0.56578,-1.4638,0.011777,0.79515,-0.68159,0.63438 -0.97955,-0.79092,-1.8386,2.2424,-0.96755,-0.92632,1.7224,-1.505,0.29075,0.70886,-0.33193,-0.63416,0.80629,-0.10706,-0.25723 3.2719,-1.5334,-2.3222,-2.2484,-1.6787,-0.91942,1.4329,1.1637,1.786,-1.1809,1.5194,1.3288,0.58119,1.1332,0.14295 2.7204,-2.1946,0.55908,1.4932,-1.82,2.136,1.5808,0.091629,-1.0903,-2.1496,-0.96916,-0.70055,-0.8725,-1.4094,0.053999 3.201,0.74397,0.18583,1.1373,0.30385,-2.0404,-0.1537,-1.4605,-0.19908,0.77974,-0.70842,-1.2316,0.75433,1.1267,0.35706 -0.39555,-0.88091,0.52759,1.2538,-2.6735,0.21218,0.82991,-1.5808,0.51486,0.27449,0.46049,-0.85045,-1.0341,-0.4664,1.1635 -1.3134,1.0161,-2.3628,0.86286,-0.9408,0.22531,1.1369,2.2018,0.04158,1.2344,-0.60386,-0.71178,-0.87579,0.67896,0.22811 -0.77533,0.65239,0.0015903,-0.053886,-2.6326,-1.3989,1.9063,-0.91543,0.09699,0.61163,-0.84998,-0.059363,0.083211,0.31696,0.81744 0.87186,0.88015,1.2821,1.5855,-1.6315,-0.94744,-1.9159,-0.25788,0.56112,-0.88272,1.1401,1.1286,0.20427,0.68064,0.02669 0.51184,2.5571,-1.9224,-0.50409,-0.15528,0.6821,-1.1571,1.1432,0.426,0.56855,-0.72037,-1.1529,-0.39687,-0.066225,-0.80024 -0.10817,0.61946,-0.056781,2.7204,-1.2627,-1.178,-0.46684,0.57276,0.68721,-0.21697,0.8782,1.3408,0.12768,0.52122,-0.33379 -1.8044,-1.5009,-1.5468,1.1716,-1.3499,-0.83159,-0.015684,-0.64235,1.225,0.46837,1.0041,-0.31504,-0.13306,-0.23823,-0.92379 4.1102,-1.2296,-0.33837,-1.2476,-1.417,0.067172,-0.87912,-0.59503,0.038116,0.29811,1.3156,-1.5034,-1.127,1.1349,1.5265 -1.5063,-0.651,-1.4175,-0.044361,-1.7673,-0.86582,-0.48841,-2.5954,-0.4703,1.3185,0.16297,0.45754,-0.12028,0.28675,-0.37124 -2.1964,-1.8464,-1.6954,1.8486,-0.93298,-0.36728,0.35083,-1.7141,-0.22337,-0.12246,0.92333,-0.34241,0.14031,-1.1397,-0.46941 0.34755,1.4597,0.32675,2.2177,0.15775,-1.2072,-0.40888,1.5898,-2.4661,2.2052,0.47723,0.18689,-0.59827,0.94101,0.20971 -0.62336,1.6797,-1.1156,1.2333,1.689,-0.037711,-1.0675,3.0593,-0.89617,0.17771,0.37457,-0.75759,-1.8093,0.45,-1.2837 1.5789,-2.5241,-2.5357,1.3975,1.2315,0.39546,1.6023,1.3426,-1.8747,-2.3506,0.75909,-0.41075,0.98498,-0.10309,1.3203 -1.7221,-1.4124,-2.4825,1.5678,1.5564,-0.5449,0.7711,-0.50914,-0.96932,-0.56636,0.078098,-0.30977,0.70451,-0.11486,-0.41374 0.25773,-2.2789,-0.5215,1.547,-1.3594,1.5984,1.0475,-1.79,-1.1103,-0.35926,-0.27759,-0.92352,0.94713,-2.2534,-0.21787 2.2938,0.64523,-2.6314,-2.9126,-0.86708,-1.1344,0.81592,0.23857,0.57048,-2.1098,1.9722,0.46889,1.3908,0.61335,0.71482 1.9873,2.2094,-1.3515,0.13729,0.78501,-1.7114,0.29485,0.63098,-0.30234,1.1255,-1.1005,-2.0262,-0.44544,0.78811,0.4386 4.3051,-3.065,2.7913,1.6257,-0.75893,-0.074413,0.25583,0.33828,-2.5873,-0.34883,-0.68605,0.31353,-0.35526,-0.82142,-0.075535 -1.4903,0.67185,-0.56275,1.5112,0.72104,0.43575,1.8918,-0.6614,0.056619,2.3173,0.23082,-0.78737,0.088826,-0.1479,0.38164 1.083,-1.4816,1.9128,-0.35827,-0.82868,-2.579,1.7334,1.6651,-0.87869,-1.9173,-1.2234,0.50456,-0.45319,0.87711,-1.3982 0.88063,-0.8389,2.6748,0.87916,-2.4711,-1.324,-1.1675,0.30693,-0.12017,-0.37937,0.13161,0.68248,0.4268,-0.66532,0.10116 2.0117,-1.2987,1.791,0.95552,-1.9486,-1.988,2.5225,-0.57821,-0.22021,-0.24575,-1.3669,0.090415,-0.47412,0.18266,-0.16352 2.2692,0.95406,-0.1144,1.1556,-1.7961,-1.83,-0.76366,-1.2806,1.196,-0.84535,-1.3701,-0.16927,-0.26151,0.077783,-0.32673 -1.8024,2.5373,-0.83976,0.52905,-1.4733,0.73651,1.0339,0.36133,-1.8004,0.82422,-0.79342,0.57879,0.77292,0.66739,1.2117 2.5593,1.2488,0.049897,-2.4861,-0.87375,-1.8966,-0.85146,-1.5266,-0.44033,-1.0416,1.649,-0.29478,1.9502,0.070624,0.39897 1.2649,0.9203,-0.95664,2.354,-0.86192,-0.1196,-1.4338,-1.8696,-0.62224,-0.37835,0.43169,-0.35114,-0.33683,-0.19462,0.56454 -1.235,-1.0487,2.0255,-0.36212,-2.8807,-1.3688,0.10187,0.10239,-1.2452,-0.92504,0.44318,0.045185,0.96978,-1.7085,-0.46583 -1.1271,1.6218,1.7953,1.5045,-0.60623,-1.6278,-0.55892,0.67597,-0.036889,-1.0803,1.3515,1.2158,-1.0734,1.2298,-0.44855 3.1741,-0.73193,0.32623,0.47306,-2.2111,0.89493,-0.42131,1.4569,0.68946,-1.5678,-2.0044,0.49816,-0.953,-1.0691,-1.3058 4.1055,-1.3617,2.27,0.022046,-0.81594,-2.6903,-0.69897,-0.27526,-1.9837,-1.187,0.72043,0.13619,0.46283,0.075122,-0.70076 -2.0223,0.21341,-1.5825,1.1364,0.4377,0.76061,1.2266,0.47186,-1.7666,1.9928,1.0514,-0.75046,-0.22646,0.43989,-0.69212 -2.2218,-1.568,2.4738,-0.87233,-1.7093,-1.0937,0.21181,-0.92005,-0.49411,0.47711,1.721,-0.092743,-0.40988,-0.022038,0.1576 2.2724,0.95453,1.402,0.16612,0.029185,-2.3687,0.99307,0.80925,-0.87594,0.94812,-2.4707,-1.3989,0.39325,0.87109,0.03725 2.5976,-1.5347,-2.2729,-1.2663,-2.3942,0.19744,0.87393,1.8605,1.4898,0.36694,0.18204,1.2182,0.33692,-0.037075,0.18127 2.7209,0.2966,-0.26535,-0.13618,1.266,-0.48327,2.3339,-1.1419,-2.8006,-1.3989,-1.6521,-1.0815,1.8886,0.33474,0.8276 4.3409,-2.3755,-0.5353,-1.7346,0.068724,-1.806,2.3246,0.36333,0.75166,-0.19341,0.54439,1.1428,0.94146,1.0043,1.9875 -1.5207,-1.9032,1.899,2.2723,0.1879,-0.98652,0.62854,0.045818,0.63101,-0.54309,2.2172,-0.3244,-1.3076,0.11279,-0.6688 -0.88847,2.4855,-1.7047,1.6829,-0.54796,0.23199,-0.85589,1.3308,0.37972,0.36055,-0.43445,0.55291,-0.68558,0.90242,-1.0994 2.3301,0.99678,0.65168,2.4617,-0.81286,-0.10052,-0.19434,-2.2164,-0.13139,-1.031,-1.266,0.52451,-0.48828,-0.36518,-0.28061 1.9915,0.022799,1.8232,2.3677,0.2659,-2.6975,1.4187,-0.74717,-1.2539,-0.4805,-1.2054,-0.5937,1.3765,0.39645,-0.33395 -0.76301,-3.0776,3.6907,0.40447,-0.4892,-0.40959,-0.66572,2.7233,-1.5104,0.29846,1.0339,0.27205,0.14535,-0.94962,-1.3134 0.81337,3.0521,-2.1406,-1.7264,-0.44263,-0.34732,-1.3042,0.52641,-1.4363,0.067107,1.1648,-1.9798,0.62826,-0.34075,0.39624 -1.8862,-1.6722,1.9925,0.41985,-1.905,-0.25259,-0.67383,0.85688,0.39881,-0.43717,2.4397,-0.23851,-0.96097,0.14003,-0.70971 1.599,-1.215,2.5472,2.5618,-1.3967,-0.99625,0.66126,-1.2743,-1.2604,-1.179,-0.6511,0.020346,0.11996,-1.4478,-0.2762 1.0615,-1.0105,2.7313,1.1919,-0.87684,0.70766,-2.2248,2.5538,-0.28954,0.034132,2.1126,0.79727,-0.39436,0.40213,-0.20211 1.5099,-3.5678,2.0514,0.81032,-1.4527,1.5952,0.18615,0.52805,-0.42697,2.2852,-0.3443,-1.1631,0.81511,-0.47405,-0.40031 -0.62877,0.92039,1.5186,0.55298,-2.7643,0.012217,-1.2725,-0.12275,-0.27427,-1.4218,1.3327,1.1185,0.069258,0.18295,0.90141 2.9664,-1.8723,0.18221,1.8272,0.066828,3.1798,-2.0857,-0.019606,-2.1792,-0.20178,0.34727,0.11381,1.7463,-0.20754,-0.38821 -2.1952,-3.8268,0.25851,1.4673,1.2029,-0.70354,-0.12716,-0.24893,0.08705,-0.39046,0.52027,-1.2163,-0.76784,-2.2898,-1.1031 2.5562,1.339,-1.9514,-0.233,-1.5785,-1.0037,-0.17568,-1.4309,1.2192,0.15053,0.012104,-1.4401,0.05631,0.36235,0.3838 1.2149,0.56156,1.8371,0.62193,-2.9138,-1.6996,0.064966,-1.0386,-0.34082,-0.61097,-0.67592,0.20779,-0.62524,0.21447,0.71927 -1.744,0.35869,1.5779,0.65719,-0.59186,-0.57911,-0.58919,2.1533,0.11816,-1.2743,1.9099,0.38267,-1.3077,-0.40899,0.28481 3.1681,0.67492,0.66618,0.71157,-0.59868,-1.0674,-0.90511,-1.5255,1.0775,-0.54781,-0.048346,-0.13866,1.7535,0.7568,-0.48193 3.5339,-1.3544,-0.74406,-1.0575,-0.79283,-1.7275,1.1636,-0.42024,1.1117,-0.32286,1.1238,-0.73009,-0.99897,0.21498,2.1995 -1.9356,1.252,-0.075077,-0.67011,-1.1145,-0.13819,1.2665,0.86506,-1.4704,2.1266,0.091331,-0.43785,0.96194,1.3267,1.0285 -1.0665,-0.26696,-1.1842,-0.40513,1.6578,-0.22047,0.57721,-0.40673,0.07386,3.0768,-1.7171,-0.051849,1.4697,0.87588,-0.36477 -1.8671,-0.1408,0.23143,1.7344,-0.6743,-1.1247,1.4985,-0.86942,-0.27095,1.0369,1.6556,0.13106,-0.14122,0.1727,-0.00527 -0.5485,0.71107,-2.9802,1.6874,-0.41061,1.8122,-0.73232,0.92534,0.14792,-0.63894,-0.6133,-0.78136,-0.63998,0.21005,-0.26799 -0.84589,1.6613,0.49897,1.9945,-1.3482,-1.0542,1.3481,-0.48168,-0.14846,0.6882,-0.36056,1.3388,0.51619,0.19263,0.82184 -1.661,-1.1238,-0.089229,3.2318,-0.65815,-0.57892,1.2783,-0.075316,-0.14352,-1.2589,1.6507,0.29315,-0.84851,-0.81437,-0.33372 -0.074062,0.18608,1.2099,3.0326,-0.32144,-1.5402,-0.89062,-0.3451,-0.84748,-0.08446,1.0569,1.2285,-0.79842,-0.29309,-0.80214 3.4242,-2.4986,-2.4855,0.3808,-0.89001,3.1967,1.642,0.61504,-2.2853,0.75151,-0.71149,0.28915,1.5591,0.39745,1.4034 3.0371,2.2902,0.95802,-0.29279,-1.1156,-1.969,0.34055,-0.81268,0.86205,-1.2802,-2.2416,-0.39037,-0.5207,0.59199,-0.52453 -0.43002,2.2302,-0.24572,1.2038,-1.7491,0.020559,1.2804,-0.29003,-1.297,-0.083999,-0.50052,-0.78721,-0.95796,0.99054,1.3014 4.1885,-0.93811,2.1806,-2.564,-1.4612,-2.0659,-0.18989,1.958,-2.012,-1.7551,-0.58603,-0.41823,-0.50813,-0.044812,-0.93018 3.9663,-1.1969,-1.5747,-1.4351,-0.83274,-2.3978,1.3368,0.11204,1.6395,-0.4427,1.2113,-0.14833,0.74562,0.70771,0.72436 -2.1153,2.6371,1.2955,0.0004443,-1.2093,-1.1484,1.54,0.15002,-1.6412,-0.25849,-0.16677,-0.03511,-0.6763,0.95762,0.46845 -3.5531,0.45101,0.041509,-0.30507,-1.0521,-0.24068,0.71318,0.19636,-0.79177,-0.8977,2.3762,0.14878,-0.51744,-0.065789,-1.0075 1.2658,-0.64211,1.484,2.5841,-0.59925,-0.48622,-2.7281,0.55239,0.1866,-0.81631,1.4201,0.51979,-0.71103,-0.047505,-0.50552 0.63159,-2.0296,1.7373,-1.331,-2.878,0.99714,0.33487,0.38305,-0.54089,1.2289,-1.7458,-1.736,-1.0687,-0.2656,-0.70939 -2.5278,1.5763,0.018833,0.42097,-0.7628,-0.50545,1.0917,0.55482,-1.535,1.4075,0.67795,0.8313,-0.267,1.4545,-0.46971 0.56325,-0.50412,2.0648,1.8793,-2.2128,-1.2125,1.118,-1.4201,0.34598,-0.10836,-0.5341,0.29174,0.035038,-0.65662,0.6394 -1.1597,0.46736,1.4616,2.0066,-0.9938,0.27793,-0.8602,0.71741,0.73988,0.51063,2.246,0.67395,-1.2224,-0.22717,0.38353 -1.4189,2.5511,0.37442,0.57126,-0.92434,-1.456,1.0675,1.1776,-0.94025,0.6331,-1.3815,-0.87421,1.0943,0.065349,0.70222 1.0185,1.9044,-0.20492,0.19294,2.3566,-2.311,-0.91914,1.3197,0.93064,-0.14174,0.19306,-1.9026,1.7774,0.072177,-0.31014 -2.4756,-3.1739,0.70915,-0.66987,-0.40005,0.36872,-1.8754,1.7139,0.55262,0.93688,0.59757,-1.6573,-0.60803,-0.32626,-0.85507 2.0462,-0.62124,-2.4865,-0.18204,-1.5259,-0.91824,1.4518,0.011276,0.60395,1.2478,-0.55852,1.3766,-0.68546,-0.66468,1.3249 -1.9502,-2.7059,1.7099,-2.1543,-1.1481,0.98904,-2.2271,-0.59555,-1.383,1.1121,0.1369,-0.75557,0.2872,-0.43972,-0.34446 2.6815,0.38187,-2.6325,1.0245,0.34568,-0.20884,1.128,-0.88481,0.71753,-1.1131,-0.41969,-1.8547,0.48255,0.017484,-0.19006 -2.0902,0.17472,-1.6799,-0.20315,-1.9714,-0.70587,1.0929,-1.9121,-0.40995,0.71169,0.27715,-0.37816,0.4766,0.89235,-0.61835 0.98212,-0.17762,-3.0515,0.3768,2.3483,-0.68324,1.6289,0.4865,-0.50925,-2.2814,1.102,-1.0886,0.28759,0.45719,2.0458 -2.4153,-2.5743,0.4436,-1.6524,-0.093523,0.65465,-1.6983,2.3868,-0.39786,-0.42765,-0.19337,-2.0445,0.3243,-0.64032,-0.38196 0.91081,-0.30513,3.169,0.76684,-2.3768,0.42745,-1.2318,-0.037001,-0.28676,1.1599,0.06914,0.11279,-1.052,-0.35256,0.30367 3.6347,0.0092632,-1.2104,-3.4275,-0.72966,-1.9532,0.50921,1.394,-1.0607,-2.5402,1.5471,0.092018,0.98877,0.018202,-0.56873 2.1029,-0.55299,-2.9407,0.40955,-1.574,0.71713,1.0242,-0.41467,1.8255,0.16198,0.21679,-0.089094,0.48891,0.15426,1.257 -2.4666,-2.8842,-1.5219,0.50911,0.27979,-2.052,-1.7223,-0.59532,0.25388,0.09348,0.17437,1.0298,-1.0357,-0.95203,-0.70715 -3.4593,-2.2545,-0.86162,-1.4287,0.63885,-0.65061,-1.6055,0.39079,-0.98568,-0.29668,-0.18143,0.010294,-0.3086,-1.7244,-0.90661 -3.8708,-2.0083,-0.4368,-1.8273,0.15662,0.32854,-1.7674,0.96624,-0.13506,-0.58469,-0.1416,-1.2879,-0.79901,-0.63625,-0.029672 -3.2342,-2.0765,-2.7443,-1.4756,0.23326,0.15983,-2.635,0.95544,-0.85499,-1.1509,-0.96123,0.40285,-1.796,-0.88147,0.93258 -3.2866,-2.6613,0.34789,-1.551,-0.59596,-0.32552,-1.7992,0.80593,0.26378,0.24315,0.61781,-1.0158,-0.71167,-0.72437,-0.6324 2.5711,0.40023,0.97021,0.81919,-2.1185,0.00067918,-1.5857,-1.3518,0.63574,-0.85312,-0.26045,-0.47382,-0.65774,0.73013,0.90744 1.4482,2.0295,0.065046,0.17237,-2.2549,-1.1997,-0.26192,0.037783,0.6878,-0.38761,-1.8483,-0.096471,0.26115,0.52188,0.46537 2.5112,0.91198,1.1592,-0.1788,2.8741,-1.3537,-0.12855,1.5805,-0.49554,2.0963,0.5714,0.46049,1.2976,-0.42359,-1.5683 -3.0917,-2.9539,0.12577,-0.48672,-0.2068,-1.7889,-0.80739,-0.14203,-0.8798,-0.46018,1.0724,-0.018091,-0.020894,-1.6486,-1.5602 -0.99825,-2.8907,-0.040082,-0.67262,2.5613,-0.041312,-2.4587,1.683,-0.67874,1.2598,-1.4044,0.92414,0.0030584,-0.45094,1.6041 -3.1251,-2.3813,-0.016101,-0.84061,-0.94313,0.10762,-1.9457,0.34795,0.81987,0.49548,1.0138,-0.62805,-0.85948,-0.25798,-0.87091 0.98188,0.7936,1.6797,2.1889,1.1086,-0.7461,0.12305,0.90041,0.10482,1.4009,-0.71193,0.54626,0.50668,-1.0342,-0.17557 1.583,1.192,-1.9257,-0.76091,-0.60422,-2.0097,0.39317,0.57666,0.40768,1.4758,1.1655,-0.48319,-0.086866,-0.020999,1.7024 -2.1308,2.0541,1.1302,-0.408,-0.88293,-1.9217,1.773,0.26124,-1.8348,-0.6337,-1.4874,-0.22896,-0.97542,0.52843,0.6368 -3.0809,1.9647,-1.0331,-0.33484,-0.70604,0.68459,2.1471,0.31773,-1.5664,1.147,-0.018411,0.15336,-0.022399,0.29705,0.13456 2.042,-0.51554,-1.9822,-1.1346,-1.3066,-1.6522,0.57389,0.38163,1.8106,-1.291,1.7039,0.62613,1.2747,1.0794,0.32176 -0.57458,-0.014633,3.5836,0.39518,-1.7402,-1.0186,-0.22868,-0.46755,-0.69117,0.47298,0.7171,0.73044,-0.61331,-1.1003,-0.71643 0.85205,-0.70335,0.5679,2.5948,-0.74426,-1.6866,2.8624,-0.7064,-0.45516,-0.28886,-0.93132,0.062508,1.2532,-0.19346,-0.18021 -2.7157,-1.0497,-0.26958,0.44167,2.3783,-1.2338,0.66824,-0.91944,-1.3436,1.1246,1.2318,-0.12914,-1.0331,1.019,-0.55838 0.17629,-1.606,0.21832,2.0264,-0.083282,-1.6517,2.393,-2.0043,-0.979,0.59177,-0.51057,-0.15318,1.8396,-0.52151,-0.71964 1.6143,1.0421,-1.8558,1.4674,-0.10902,-1.3195,-0.30611,-0.64046,0.92337,0.54987,0.15755,-0.6722,0.22934,1.3342,0.12882 4.1768,-2.0042,0.10551,1.4287,-1.1935,3.3864,0.56845,1.8119,-1.6137,-1.3794,-1.9735,-0.77795,-1.1012,0.18435,-0.41416 -1.7987,-0.71309,-0.50413,0.37201,0.46053,-2.4517,0.45543,-1.0629,-0.96042,2.0258,0.4503,0.44571,1.1609,0.73324,-0.49383 1.4506,-2.1273,2.6029,2.3307,0.35341,-0.16991,-1.203,1.8745,-0.14851,-0.51647,1.8674,1.067,0.33372,0.51914,-0.73658 -0.48727,-0.18144,1.6668,0.87711,-1.3314,-2.0124,2.4006,-1.5172,-1.2069,1.8847,0.30589,-0.063215,0.37244,0.96284,0.21144 -1.2836,-0.79507,0.085202,2.6296,0.13137,-1.0148,1.519,0.55633,0.89103,-0.31148,1.0551,0.18849,-0.11458,0.24061,-0.43975 -1.4821,-1.6212,-1.5676,1.66,1.0986,-0.85383,1.6743,-0.35568,-1.3762,-2.1454,1.0574,-0.76799,-0.62713,-0.37211,-0.54333 -1.3718,0.10817,-0.94603,1.9585,-1.1555,-0.50553,0.70996,0.47384,-0.083399,-0.23161,1.2927,0.43836,0.1696,0.10371,-0.54875 4.6549,-5.2025,-1.0577,-0.036743,-0.9148,0.68281,1.5092,1.5656,-1.2679,0.88558,-1.3441,1.1882,-0.51761,-0.34934,0.45593 4.6129,-3.9052,-1.6121,-0.37736,-0.50924,0.29412,1.0348,1.7623,0.84436,1.0556,0.29019,-0.11851,-0.95713,0.23499,0.96078 0.039511,2.1458,0.76714,0.73202,-0.85727,-1.3035,-2.1183,-0.21437,0.68221,-0.91801,1.2002,1.0169,1.0632,1.0595,-0.58565 1.8408,1.5177,0.58071,1.0444,-1.8372,-1.7931,-1.2511,-1.8074,-0.25474,0.32632,-0.20481,-0.5697,-0.52457,1.0222,0.29877 1.108,0.95006,-1.9859,0.82498,1.1051,-1.5129,-0.57386,1.4349,0.97878,0.035293,0.65483,-1.778,0.67907,0.30485,-0.60194 5.1415,-3.1566,-2.3606,-0.19871,-0.19644,0.52223,1.862,2.7489,-0.19893,1.6747,0.08286,-0.33401,-0.37973,1.1107,0.44978 1.1133,-3.7186,0.81748,1.2665,-1.2671,1.2721,0.05769,0.34551,-0.055475,2.0387,-1.5647,-1.7207,0.58846,-0.33972,0.00085362 -0.016712,1.3088,-1.0939,2.2304,-0.59262,1.0339,-2.0563,1.1154,0.20906,0.0062066,1.2614,0.036969,-1.0371,1.4247,-1.0584 1.2752,-2.7394,2.1873,1.3896,1.6051,3.9289,-0.44338,0.20074,-1.987,0.35738,0.25112,-0.54256,1.1029,-0.6478,0.92388 2.3055,2.1472,-0.43994,-1.1654,-0.10038,-2.4227,-0.76785,-0.67186,0.12995,0.16455,0.11037,-1.4939,1.01,-0.32949,0.49164 1.2101,-1.2354,2.775,-0.2179,-3.0851,0.86368,-0.73492,0.84719,-0.21661,1.5468,0.032487,-0.68296,-0.61748,0.51755,0.80068 5.3504,-2.0853,0.70784,0.75869,-1.0853,1.2635,0.21503,2.4573,-0.85563,0.46557,-1.8908,-0.81112,-1.7207,1.2892,-0.77312 0.46586,-0.95414,2.27,-1.0013,-3.315,0.30066,-0.15858,0.86631,-0.4529,-1.4724,-0.71782,-0.66295,-0.83588,-0.89502,0.48787 3.1275,-0.71183,0.68347,0.98609,-1.6106,-1.4861,-0.53147,-0.96013,-0.047353,-1.1785,-1.1476,-1.4158,-2.0484,-0.60782,-0.19579 -0.064957,2.0599,0.24743,0.92533,-1.6949,-0.3443,-1.4881,-0.84681,-0.16829,-0.63589,0.50875,1.1657,0.81427,-0.0038469,-0.39052 -1.4122,-0.021907,1.7583,-1.2677,-2.0386,-0.047405,0.67263,-0.47889,-3.3625,-1.7962,-0.52364,-1.7921,-1.4786,-0.82598,0.78986 0.96316,-4.1383,2.4481,0.76982,0.053498,2.745,-0.050833,-0.04373,-3.214,1.2107,0.050525,-1.3854,0.46712,-0.21172,0.38034 2.4084,1.8283,-1.8645,-2.105,-1.5425,-0.61098,-0.77549,-0.19682,-0.12119,-2.1862,0.57468,-1.6872,-0.035502,-0.26515,-0.16078 -0.23585,-0.87232,-1.2752,0.72262,-0.52413,0.72701,-0.6554,1.7306,1.3854,-0.78482,0.38141,0.69329,-1.2767,-0.0090305,-0.66397 3.2744,-3.6023,2.1837,-0.54943,-1.9767,0.058092,1.2792,1.5639,-1.6253,0.8517,-0.91891,-0.88726,-2.3331,0.20026,-0.051128 -2.1486,-2.1246,0.45165,0.18882,0.60298,0.88241,-1.7252,0.70499,0.35956,1.3402,1.5065,-1.1734,-1.1952,1.4405,-0.48959 -0.30125,2.2064,-0.6563,1.0763,-2.6199,-0.41095,-0.056057,-0.38944,-0.63089,-0.28244,-0.48897,0.045004,-0.55677,0.68104,0.67963 -0.42569,1.7206,-1.8887,-0.12016,-2.5745,1.1145,1.0295,0.77038,-0.067838,0.44656,-1.0427,-0.056153,-0.22627,0.032654,0.94952 2.6774,0.26466,-1.862,0.40993,-1.2772,-0.13235,-0.60723,-2.1597,0.44588,-0.066921,0.42454,-2.0115,-1.0558,-0.47783,1.3284 -0.90382,-2.1612,-0.019577,-1.1191,-1.377,-2.0137,-0.18927,-2.3775,-0.91184,1.3744,-0.37947,1.0154,0.97065,0.21598,-0.70539 5.3154,-3.2426,-0.35035,-0.24195,0.32993,-1.7266,0.66701,-0.17833,0.38719,-1.1305,0.36237,-0.18765,0.10286,0.16521,-0.00042487 -1.4707,-4.0311,-0.33551,0.23269,-0.30735,-0.86367,-1.5027,0.32809,0.34765,1.0166,0.32207,0.44898,-0.2748,-0.98457,-1.0624 -0.8977,-3.7407,0.78836,-1.7129,-1.5837,0.63673,-1.8441,-0.50778,-0.65996,2.0452,-0.55354,0.37917,0.62228,-0.38978,-0.93209 0.017557,1.1762,-0.65979,3.0622,1.2171,-0.15613,0.33045,-0.38461,-2.1465,-0.29483,0.94958,0.077413,0.077206,1.3113,0.57199 -1.5951,-3.4837,-1.2606,0.52795,-0.27714,-1.077,-1.5095,0.2548,0.78107,0.17746,0.36817,0.34072,-0.68379,-0.59869,-1.0034 0.91291,1.5587,-1.6675,1.7304,0.92436,-1.4337,-0.57203,-1.208,-0.63093,0.23537,1.5517,-1.1825,-0.33208,1.3531,-0.016948 -1.2496,-4.1524,-0.12931,1.0326,0.63901,1.2052,-1.2828,1.1935,0.28825,1.8009,0.4463,-1.1951,-0.18115,0.28103,-0.84954 -1.3333,2.1067,-0.05388,-0.053295,-2.6766,0.047765,-0.57454,0.35481,-0.94602,-0.039201,1.3304,0.68929,-0.0089414,-0.11404,0.40425 -1.0369,-2.9902,-0.56549,-0.96104,-0.49562,-0.43622,-2.6398,-0.90852,-0.39637,0.90555,-0.22205,2.4047,0.39597,-1.0369,-0.36818 0.97048,2.3179,-2.6865,-0.36015,-1.3108,-0.30307,-0.40597,0.29603,-0.26082,1.0349,-0.23621,-1.57,-0.2538,-0.048564,0.58373 0.70902,1.3866,-2.8752,-1.9116,-1.4561,0.34062,0.12988,1.4291,-1.1763,0.70114,1.2148,0.050725,0.52434,-0.049215,1.396 -0.3015,-2.8288,-0.22823,-2.5135,-1.3904,1.594,-2.111,-0.57584,-1.1915,1.7349,-1.3507,1.2793,-0.13795,-0.28468,-0.042367 -3.0974,-2.2126,-1.6374,-1.3498,-0.25611,-1.2713,-1.3536,-0.112,-0.71592,-0.88872,0.62038,0.54567,-0.059249,-0.72586,-0.57136 -0.26764,1.2871,-1.9961,1.8377,0.39361,0.79267,-0.68775,0.46695,-0.2111,-0.96241,-0.48698,-1.056,-1.2656,-0.43919,-0.93463 0.18664,2.3268,-0.05361,0.51053,-1.7876,-1.3722,-0.65396,-0.080886,-0.35214,-0.11978,-1.0061,0.18811,1.8701,0.58705,-0.035414 -1.971,1.3556,-0.56085,1.7062,-1.4973,-0.59885,0.87209,0.34324,0.014144,1.0311,0.0023297,1.5628,0.49139,0.25893,0.42606 -1.8601,-3.6611,-1.3627,-0.43652,-0.11548,-2.0942,-1.7266,1.0501,-0.18243,-0.22781,-0.39121,0.13216,-1.266,-0.77027,-0.37633 1.6963,1.8708,-2.5813,-1.6661,-0.56987,-1.387,0.54282,0.74698,1.0468,1.5363,0.40707,-0.56907,-0.084102,0.17735,1.3328 0.24339,0.20875,1.6247,2.6646,0.72367,-0.91806,-1.6337,0.11293,0.86234,-1.2584,1.0973,1.0863,-1.0919,0.3821,-0.20207 -1.9573,-2.8805,-0.37906,0.14376,-1.244,-1.1827,-0.83435,-0.056024,0.85875,0.0061011,0.77451,-0.33847,0.033271,-1.2774,-0.97337 2.4754,1.2958,2.1374,-2.5068,-2.0567,-1.581,0.01238,0.81807,-1.6258,-2.1436,-0.51998,-1.2362,-1.0737,0.013498,0.41063 -0.63941,-3.4099,1.765,-0.12231,-0.82855,1.0458,-0.95851,1.0936,0.72877,2.42,0.14917,-1.0313,0.88041,0.27359,-0.91128 -0.20934,-3.216,-0.91225,-0.22899,-0.81843,0.4289,-2.088,0.79525,0.3751,1.5649,-0.93936,1.1528,1.0339,-0.73759,0.19087 3.4251,0.021935,-1.2949,-0.40968,-0.69552,-2.8384,1.1085,0.24955,1.2474,-1.0319,0.24101,-0.35508,-0.34547,1.0929,-1.0455 -1.5833,-3.4924,-1.0535,0.58968,0.61698,-0.35403,-1.7084,0.19772,0.88935,0.43218,-0.1311,0.60402,-0.71051,-0.77854,-0.73888 -1.8203,-0.41791,-1.2772,0.18614,-0.9098,-0.27163,-0.17816,-1.7829,-0.091556,1.7387,0.86629,1.0171,-0.031192,0.58093,-0.49128 -1.762,-0.57339,-0.097876,1.2987,-2.428,-0.68285,0.4816,-0.84728,1.0272,0.046045,1.5609,0.14581,-0.21315,-0.035109,-0.53942 -1.2091,-3.1045,0.23825,0.11128,1.4583,-0.41922,-1.4109,2.1104,0.040924,1.9852,-1.1205,-1.4392,0.37208,0.39756,0.97222 3.6214,-1.0417,-2.7232,0.39129,-0.23119,0.67967,1.4652,-0.71924,0.61388,-1.3775,0.37698,-0.65655,0.5172,0.35743,-0.21309 -0.46502,-2.8875,2.0382,0.81626,-1.296,-0.41907,-0.39573,-2.6433,-0.73527,1.0016,0.88597,-1.0441,-1.2245,-0.20027,0.39871 -3.1499,-2.9938,0.45586,-0.63228,-0.63259,0.15761,-1.9642,0.12461,0.040199,0.017602,1.1605,-0.62123,-1.4736,0.11927,-0.74801 1.2818,-0.087172,-0.36455,0.29014,1.2293,-0.29938,-0.85436,-1.7345,-1.7247,-1.5653,2.8001,-0.62026,0.70985,0.93771,1.3458 3.1744,0.88942,-0.4461,-2.5018,-1.9733,-0.5091,-1.8399,-0.44663,0.15107,-2.2185,0.42913,-1.5145,0.3857,-0.59304,0.19705 -2.9026,-1.0131,0.32449,0.75112,-0.97927,-1.0122,0.7094,-0.48966,0.56088,-0.64997,2.0832,-0.65496,-0.79176,0.32513,-0.8843 -3.297,-0.62457,0.034214,0.095855,-1.0929,-2.0365,0.72739,-0.52912,0.24627,0.20564,1.4861,-0.029893,0.19315,0.71172,-0.79081 1.1319,0.16642,0.86506,1.906,-2.1211,-1.0906,-1.6588,-0.613,1.0863,-0.57443,0.25113,0.38369,0.41826,0.23564,0.20237 0.54178,2.3488,0.46583,0.118,-1.7767,0.32866,0.87967,0.45658,-1.5167,-0.75862,-1.6672,0.53589,1.6925,-0.014251,0.48789 -2.5008,-2.0717,-0.00059083,-0.51308,-0.3425,-1.7342,-1.1673,-1.7313,-0.73571,0.99305,1.2411,0.59127,-0.38556,0.30486,-0.96118 2.2854,2.2002,-1.5545,-0.34964,0.25257,-1.9582,0.07549,0.48114,0.97978,-0.11117,-1.4319,-1.2027,0.97412,-0.35733,-0.94501 -0.3222,2.353,0.77238,-1.083,-2.6413,-1.1536,0.79235,0.11984,-1.9348,-1.4887,-1.1595,-0.49718,-0.57853,0.20223,0.94796 0.1582,1.807,-1.391,0.88288,0.98177,0.78381,-0.076071,-0.055848,-0.97193,0.039007,-1.1232,-1.5093,1.9423,-0.05844,0.53614 1.5994,1.3741,-2.0636,1.1779,-0.13781,0.56765,0.23327,-1.6446,-0.85004,0.18116,-1.026,-2.2276,1.4158,-0.22617,0.9867 -2.2703,-1.3305,-0.88719,0.6073,-0.21314,-2.8123,-0.3483,-1.8648,-0.34699,1.0858,0.40309,0.56449,0.20824,0.65061,-0.31122 1.5823,1.4188,-0.62156,-0.26995,-1.1722,-0.13299,-0.093572,0.11653,-0.11244,0.48666,-1.6865,0.29312,2.1321,0.1261,-0.62232 -1.1949,-2.3357,-2.203,1.2296,1.1354,-0.76058,0.49268,-0.33007,-0.43852,-1.3991,-0.46175,-1.0359,-1.3433,-0.98117,-0.034041 -1.5734,0.18323,-3.3596,-0.98092,-0.86741,0.59133,-0.64701,0.99124,0.52668,0.87455,-0.97332,-0.068419,-0.15868,0.96287,-0.0084137 -2.7098,-2.5776,-1.5293,0.34488,-0.071232,0.2367,-1.3511,-0.38904,0.40179,-0.63356,0.24655,-0.64774,-2.4207,-0.5218,-1.0345 1.5675,2.3876,-0.78261,-1.7744,-0.76812,-0.61811,-2.3047,-0.43296,-1.3423,-0.064335,3.165,-0.56784,0.59386,0.15332,0.0034814 -0.85853,2.2661,1.2866,0.63979,-0.8249,-1.665,1.1347,0.52743,-0.72371,0.6755,-1.9151,-0.026272,1.1413,0.67081,0.42889 4.5838,-5.2875,-0.003385,0.032819,0.21267,0.26175,2.3691,0.95049,-1.9638,-1.51,-0.53269,0.45678,1.0016,1.0654,1.0788 -0.90147,2.7219,0.20377,0.012201,-2.1098,-0.20341,1.663,-0.47569,-1.3513,-0.51031,-0.86755,-0.32836,0.1283,-0.38145,1.5078 -1.9896,-2.812,-1.8096,0.88572,-0.67659,0.30787,-2.2425,-0.097978,0.73149,0.60595,0.020434,-0.35206,-1.1686,-0.39606,0.53002 -1.5959,-2.0218,-2.1795,0.56077,-0.96496,0.67696,-2.7806,0.40442,0.54004,0.98992,-0.036531,0.41704,-0.39279,-0.033276,1.1595 2.7565,-1.0171,-1.7427,-1.2723,-2.3774,0.026191,0.90477,0.92924,0.68637,1.4236,-0.80093,1.0588,0.4621,-0.46516,0.72154 -2.186,-1.8649,-2.5698,0.22589,-0.01501,-0.30111,-2.7158,0.75001,0.36799,-0.2539,-0.20763,1.5366,-1.9333,-0.78529,0.76434 -0.47382,-2.8348,-0.87238,1.2384,-0.2647,2.0405,-1.2748,-1.2085,0.17338,0.31741,-0.2948,-0.30651,1.1683,-1.7438,0.25163 1.3177,2.1202,-1.3687,-0.14444,-0.76131,-0.71068,-1.5648,-0.97476,-0.40424,1.1772,2.3675,-0.58578,-0.19289,0.43494,-0.12752 -1.9656,-0.83818,-2.885,0.38028,-1.3507,-1.4721,-1.3914,-1.0176,-0.2544,-0.027289,0.063383,1.8656,0.020371,0.038236,0.48963 -2.0896,-0.49327,-3.3945,1.1221,0.097854,-1.5616,-0.38215,-0.6381,-0.088427,0.090298,-0.29306,1.3359,-0.11535,0.60047,0.13127 -0.647,2.8516,-0.612,1.9461,-0.75159,-0.63322,-0.44192,0.42149,-0.63908,1.0296,-0.79538,0.36107,-0.21161,1.3421,0.094585 -1.5288,-1.9849,0.94092,1.1046,-1.608,0.19894,-0.79816,-1.0164,0.84452,0.94045,1.2278,-0.46591,-0.44742,-0.90357,-0.061442 -2.8064,-2.0161,-1.5807,0.15652,-0.25506,-1.1514,-1.8783,-1.1106,0.51622,0.20416,0.52163,0.78458,-0.69417,-0.49832,-0.093407 -1.6265,-2.7365,0.29826,1.063,-1.1195,-0.17313,-0.78167,-1.7586,0.49457,1.2963,0.65427,-0.37447,-0.18284,-1.3818,-0.39771 -1.038,3.6952,0.045071,0.55293,-0.27034,-0.60435,-0.97709,0.55519,-1.5472,0.96632,-0.3266,0.29488,-0.34632,0.27031,-0.4335 3.3645,-0.61682,1.1041,-1.3237,-1.9571,1.3837,-2.3694,2.2547,-0.80031,1.1184,-0.5814,0.89252,1.6892,0.58395,-1.0176 -1.9965,-2.3827,-2.455,0.46097,-1.2479,-0.78577,-2.4746,0.20107,0.45993,-0.014824,-0.21887,0.39745,-1.4347,-0.33786,0.68001 -1.0532,2.2393,-1.4902,1.8108,-0.76808,1.0914,-0.086613,0.92945,-0.50935,1.3559,-0.36951,0.76745,-0.82236,0.8753,-0.37039 -1.8608,-2.9516,-1.8636,0.79391,0.43899,-0.13912,-2.7792,0.2446,0.58803,0.097752,-0.72469,0.12523,-1.6144,-0.79557,1.5322 0.43373,0.77089,3.3439,-0.73007,-0.91041,-0.35104,-1.2405,1.0064,-1.2577,-1.7561,0.83773,1.5695,1.0811,-0.6623,-0.6843 4.3219,-1.6875,0.7077,0.34108,-0.36349,0.62474,-2.2392,0.66115,-0.45726,1.9999,0.56909,0.092202,1.2351,0.23387,-1.2694 1.7356,0.052852,-0.78489,2.6432,1.3874,-0.24569,-1.3398,-0.86984,0.40947,-0.67486,2.3137,-0.36579,0.16367,-0.043014,-1.0157 4.6506,-0.89773,0.31765,-1.0732,-1.3767,0.45136,-1.5357,1.2713,-0.71681,2.3461,-0.24637,0.40389,0.41094,1.1528,-0.98739 0.15607,0.22808,2.1832,0.75971,-1.4939,1.1312,-1.9602,0.88112,1.1544,0.92583,0.62957,1.0542,-0.028204,0.0029624,0.69329 2.2877,0.34397,1.4377,-0.092111,-2.8346,-1.6721,-1.4897,-0.36067,0.15502,-1.0606,-0.97201,0.42487,0.17162,-0.54837,-0.40174 1.7606,-1.9389,-0.019003,3.2456,0.00109,1.1889,-2.2251,1.3161,-0.24132,-0.29995,0.42874,-0.23239,0.80506,-0.38883,0.023505 -0.34873,-0.70251,0.93478,0.64585,-2.8152,-0.99631,0.3204,-0.71688,0.97858,0.54681,0.12331,0.60132,0.61755,-1.2159,-0.046589 0.55357,2.4949,-0.61897,-0.40776,-2.1088,-0.38384,-1.2424,-0.58094,-0.28475,-1.1707,-0.44616,-0.55671,0.69739,0.83629,0.43793 -0.73112,0.895,0.23582,3.2017,0.20205,-1.1703,0.30756,0.56648,0.43217,-1.1709,0.70807,0.96635,-0.66952,0.572,-0.70566 -1.1735,-2.5636,0.73273,-1.4866,1.2891,0.56051,-2.3141,0.55475,-0.40916,2.6746,-1.2177,0.39373,0.033305,0.97125,0.71238 3.1051,0.98328,-0.6552,1.0737,1.3772,-1.6668,0.006623,-1.3371,0.061901,1.0919,0.41537,-1.802,0.73434,0.79852,0.99206 5.9704,-3.8081,-1.0076,-0.83151,0.050703,2.061,1.3096,-0.23879,-1.8506,-0.41629,0.73356,0.21108,-0.47105,0.33369,0.99809 -2.3871,0.068137,0.74258,0.031255,-1.9969,-0.42628,0.42176,-0.46789,0.51211,-0.57391,1.7762,0.45476,0.81125,-0.34619,-0.17616 4.7424,-2.5429,0.39041,0.44704,0.077089,-0.67031,-1.1675,-0.49074,-0.48084,0.40733,1.6152,0.015219,1.0519,0.38005,-0.1236 1.1132,0.68013,0.21986,1.2684,-2.9783,-0.36354,0.074194,-0.52257,0.94046,-0.37444,-1.093,0.19244,-0.41921,-0.035556,0.70317 2.1896,-0.55778,-1.3349,1.9693,1.8073,-2.5024,-0.043906,0.84721,0.25726,-1.9867,1.492,-0.97552,0.61464,1.0852,-0.80335 3.1791,-0.69396,-0.30954,1.5789,1.173,2.2185,-0.84468,1.0525,0.11345,1.096,-0.48568,0.22647,2.2581,0.49719,-1.3541 -1.5061,-0.30955,-1.1931,1.6631,-0.61963,-0.04151,0.96114,-1.561,-1.1442,0.62775,1.7609,0.20623,-0.18526,0.38042,-0.50578 3.2751,-0.51598,-2.7849,-2.3259,-2.3412,0.45648,0.57129,1.708,0.27632,1.7051,0.41365,-0.15505,0.4624,1.2588,1.5515 5.118,-2.943,0.071883,1.1726,0.14657,1.8871,-0.60499,-0.096895,-2.1278,0.91907,0.18085,-0.3132,0.69758,0.15553,-0.90437 4.2132,-1.5764,-0.96237,-0.087901,-1.1476,0.55763,-0.53167,1.3533,-0.75703,2.7446,-0.1329,0.51986,1.5633,0.37934,-1.5877 1.7296,-1.621,1.1015,2.3878,-0.34325,0.072976,-2.2533,0.64466,0.81854,-0.99391,0.74498,0.30976,0.87158,-0.76451,-0.77795 1.2999,-0.90556,1.8438,0.64784,-2.9196,0.14669,-1.3478,1.0247,0.61081,0.21979,0.061789,0.80785,0.5751,-0.20405,0.35758 -1.1196,-4.9398,1.6277,-0.89284,0.26771,-1.4691,-0.71179,-0.17281,-0.33038,0.92335,-0.21322,0.41147,0.46885,-0.67572,-1.1701 -0.92635,2.7497,-1.2868,0.39392,0.30884,0.25467,-2.2425,1.8785,-0.2778,0.44156,0.50311,-0.38642,0.44107,-0.066801,-1.1804 -0.96788,-3.2523,0.015533,0.17895,-0.36023,-2.4944,0.072825,-1.495,0.16024,0.75808,-0.26947,0.91415,1.5971,-0.192,-1.0533 -0.96231,1.5786,-1.1759,0.92713,-1.5399,0.92242,-1.454,1.6283,0.40701,-0.50778,1.1393,0.43751,-0.48211,0.70623,-1.0419 0.59997,-2.575,2.3785,2.1403,-1.1865,0.55961,1.0386,-0.57214,-0.29172,-0.10543,0.85351,0.3378,0.92262,-1.2529,-1.0229 2.0395,-2.5101,-1.0181,2.0363,1.5377,-0.31344,-1.2466,1.0902,-0.40914,-2.7171,1.9447,-1.8497,0.6966,-1.3479,0.27845 -0.59807,-4.6349,-0.076052,1.5253,-0.11147,0.15657,-0.54496,-0.66967,-0.58933,0.23439,0.24918,-0.71863,0.82144,-1.6558,-1.0764 -0.05763,-4.162,-0.07722,1.9721,0.48664,0.71797,-0.55023,-1.2771,-0.8923,0.43829,0.50244,-0.10152,0.80441,-1.2642,-0.55848 -0.53589,-3.9661,0.29753,0.88108,-0.43116,-0.28293,-0.8176,-0.94385,0.11802,1.3794,0.20611,0.49998,0.53876,-1.4967,-0.91601 -1.5674,-2.8531,-0.99841,1.119,0.22694,-1.9318,-0.43228,-0.86085,-0.11357,0.63301,1.1797,0.96045,-0.47757,0.49334,-1.424 -0.95093,-2.7619,-2.2269,1.5297,0.62649,-2.8883,-0.17984,-0.73039,-1.1298,-0.045326,-0.44652,1.2706,0.50436,0.017988,-0.47634 -0.90633,1.4419,2.0747,0.57309,1.4185,-0.52631,0.15886,3.0873,-1.0279,2.1733,-0.21306,0.7737,0.63103,0.37108,-0.61329 -1.4657,-2.5899,-0.31342,2.089,0.74462,-0.1388,1.257,0.826,-0.64028,-1.9758,1.5508,-0.94029,-1.2407,-1.1569,-0.29585 -1.678,-3.4326,-0.17437,1.9455,1.0471,-1.2061,0.45312,0.2252,-0.25208,-0.59606,0.91263,-0.55211,-0.84703,-1.2508,-0.81083 1.739,0.3773,-0.753,1.3325,0.30331,-0.42602,-2.0574,-1.5916,-0.61029,0.12119,2.9341,-1.0359,-1.3426,0.44439,0.22154 -0.076531,-0.57563,-0.93277,2.2369,0.23808,1.7246,0.65357,2.4922,0.52756,-0.68555,-0.49644,-1.848,-0.95398,1.0639,1.0991 3.2099,-0.33355,-1.8431,0.99126,1.4937,-0.67492,1.5753,-0.87638,0.19236,0.99279,-0.33219,-1.7637,-0.076776,0.024296,1.6555 0.25951,-3.4046,2.1058,1.2615,-1.0184,1.1807,-0.72547,0.46642,-0.13649,2.375,0.48614,-1.0861,0.26924,-0.58831,-0.46805 4.3267,-3.225,-0.9123,-0.775,-0.68055,1.5642,0.4738,0.11664,-0.87112,-3.1141,-0.46895,-1.239,0.4102,-0.82046,-0.45339 -0.44305,-3.502,0.60555,1.6985,-0.86996,0.70822,-0.67932,0.66897,0.23268,1.8769,0.094656,-0.8917,0.66689,-0.69469,-0.36892 0.094641,-3.6446,0.13084,1.4631,-0.12614,1.2943,-0.51336,0.19714,-0.33802,1.935,-0.34239,-1.1894,1.1339,0.089175,-0.090494 0.62997,-0.72169,3.2108,0.88192,-2.0502,1.2062,-0.87825,-0.13843,-0.59642,1.1132,0.83468,-0.10993,-1.5046,0.50737,1.3859 0.86623,-2.3204,2.25,1.4874,-1.5295,1.7412,-0.22208,1.4293,-0.33363,2.7257,0.2068,-0.81212,1.119,0.45764,-0.17139 -0.2967,-3.8256,-0.17999,-0.18046,-1.4775,-0.36572,-1.9066,-1.4565,-0.24369,1.4363,-1.6741,0.29514,-0.27687,-1.4368,0.17725 2.9391,-1.7629,0.043831,0.73747,-0.32508,0.89617,-2.4052,0.66896,0.65629,1.0984,1.2634,0.16591,1.3809,0.12717,-1.2648 -0.43589,-2.5571,0.64096,2.5421,0.18753,2.164,0.2354,2.3763,-0.38442,1.3885,1.4123,-1.5639,0.23442,0.80961,-0.76277 4.1029,-4.0136,-1.6489,-2.0658,-1.9031,-0.12849,1.5739,3.4828,0.39257,1.1739,-0.79408,2.448,-0.50721,0.086923,-0.36661 0.077864,-2.7455,1.9088,2.5847,0.26074,3.2469,-0.16731,1.1686,-0.90673,0.44976,1.2122,-0.69448,0.68557,-0.60655,0.36509 3.9162,-1.1511,-0.63635,-1.8489,-1.7825,-0.94043,-0.47197,-0.37671,0.3528,-1.0041,1.1739,-0.4419,1.1295,0.64475,0.18464 0.58766,-1.731,1.1336,3.0056,0.87835,2.9787,-0.83225,2.1547,-1.4409,-0.17453,1.6681,-0.56862,-0.10992,0.67704,0.58059 0.12437,-2.1089,3.6675,0.39941,-1.7832,1.6278,-0.56006,0.55186,-0.31348,2.069,0.46538,-0.83248,-0.60764,0.074298,0.5167 -0.6594,1.5,-1.7778,2.3672,-0.7681,1.1195,0.13408,0.4128,0.24349,-0.97284,0.012581,0.30293,-0.64285,0.61934,-0.25304 -1.9584,-2.8395,-0.45725,1.0389,-0.79594,-1.2039,-0.69918,-1.7348,-0.086107,1.4028,0.69406,0.4012,-0.62031,-1.2764,-1.4209 1.0839,-0.49275,0.22608,2.7395,0.14111,1.1398,-1.8741,-0.8205,-0.18053,-1.3525,1.5821,-0.075883,0.33,-0.55281,-0.81903 4.049,-2.1912,-1.7923,-1.1072,-1.5376,0.34444,0.63703,0.8997,1.4812,0.98465,0.60095,-0.45638,-1.1273,0.35122,1.6865 -2.2773,-1.1153,-3.0444,1.3875,-0.066014,-1.482,1.57,-0.5658,-0.19474,-0.27519,-0.32374,-0.82123,-0.56608,0.28502,-1.0481 -0.87031,2.4347,0.007268,0.33887,-2.4289,-0.14463,0.17714,-0.49552,-1.1134,-1.2411,0.25956,0.30924,1.1495,0.30899,1.2985 -0.30836,-3.1957,1.3004,-1.4942,-2.5181,0.51689,-0.50737,-0.91894,0.35552,1.8913,-1.3601,-1.5064,-0.6064,-0.81959,-0.43749 -0.55554,-3.9406,1.2801,1.7806,-0.22386,0.69817,-0.20002,0.36898,-0.23715,1.5582,0.47827,-0.90656,0.55149,-1.237,-0.70085 -1.8851,-0.17841,-3.5736,0.19433,-0.65305,-0.53975,-1.2238,0.88507,-0.92209,-1.4521,0.25291,1.7511,-0.17903,-1.036,0.51908 -2.4295,0.35751,-2.6533,0.17778,-0.62712,-0.44603,1.0638,0.75649,0.27493,0.15112,0.40951,-0.61614,0.13219,0.68991,-0.73053 3.9886,0.74175,-1.3563,-4.3589,0.54588,-2.0411,1.8051,1.8239,-0.33277,-1.1811,0.89933,0.19665,0.79072,0.52559,0.27185 1.2794,2.3969,-0.857,-0.77969,-0.51821,-2.0373,-0.50894,0.062114,-0.084424,-0.6738,-0.61541,-1.0239,2.8346,0.48109,-0.42014 2.4915,2.1253,-0.67317,0.43706,-0.036184,-1.8661,0.075672,-0.79388,0.3627,0.71916,-1.5637,-2.2621,-0.38477,0.74158,0.68083 0.0018756,1.1893,-1.7552,1.5379,-0.97698,1.529,-1.9411,1.0214,0.72773,-0.39814,1.2095,-0.56905,-0.37503,1.1903,-1.2045 2.4184,2.6526,-1.5615,-1.8162,-0.60367,-1.8025,-0.24067,0.047216,0.71768,-0.38647,-0.47181,-1.9122,0.23119,0.30908,0.14647 0.9,-1.4023,2.4077,0.22166,-2.8548,1.801,-0.72019,1.3384,-1.3153,1.4404,0.31816,-1.1088,0.15972,0.62663,0.49662 2.7043,0.71057,2.2586,-1.4443,-1.7941,0.067351,-2.1371,1.0898,-0.83603,-0.091854,-1.2886,-0.061645,0.088467,-1.1286,-0.7446 0.9226,-2.9584,1.41,1.2232,-0.72768,2.6289,0.088867,-0.047109,-0.77998,2.5958,0.039095,-1.4436,0.8725,0.29883,-0.21276 2.4048,0.55266,-0.38231,1.0024,-0.73282,0.59493,-2.1931,-0.53321,-0.69651,1.1774,1.9169,-1.6459,-0.46731,1.8492,0.68599 2.7165,0.80738,-2.1759,1.2446,1.0189,-0.47142,0.84213,-0.54682,1.0948,0.24703,-1.3858,-1.8817,-0.15348,-0.333,-0.42882 -0.31592,-0.43877,1.2908,2.0361,1.6237,0.016992,1.3631,1.7699,-1.3463,2.7747,-0.31614,0.38932,0.72117,-0.54325,-0.42789 0.44725,-2.8593,1.5427,-0.39699,-2.5924,0.96195,-0.45099,0.89929,-0.46029,1.9602,-0.2375,-1.7324,0.84713,0.10966,-0.55763 -2.1757,-2.4219,-1.138,-0.40471,0.12877,1.3411,-1.8667,1.2565,0.4903,0.80089,-0.12236,-1.092,0.0097507,0.61678,-0.26126 -1.2188,-1.5001,0.38773,1.2168,0.19664,1.959,0.12776,-1.0342,-0.52581,-0.3532,0.92818,0.1327,1.0353,-1.1606,0.13636 -0.32385,2.0012,-1.8093,-0.20342,-2.3926,1.102,1.0093,1.0144,-0.97893,-0.11016,-1.2509,-0.19584,-0.20742,0.36604,1.1347 3.3161,-1.4162,1.1414,2.1727,-0.8151,1.0402,0.039756,-1.3473,-1.9638,-1.3189,-0.10724,0.52826,0.44936,-0.33054,-0.24594 0.55734,-1.752,2.3083,-1.4222,-3.1757,1.9974,-0.22165,1.228,-1.3952,1.8208,-0.21944,-1.5114,-0.10249,0.74681,0.076659 3.6242,-2.3679,-2.0126,-2.1291,-2.0145,-0.089712,-0.26469,2.5055,1.0486,-0.71157,1.1365,0.82192,0.69099,0.34931,-1.0775 -0.30506,-2.4443,1.469,-0.51622,-2.5321,1.5459,-0.85961,0.46853,-0.14844,2.1299,-0.28662,-0.51702,0.20709,-0.17905,-0.46958 -0.72952,-3.8348,-0.17945,1.1515,0.76009,1.6908,-1.8021,0.4352,0.086056,1.5318,-0.041715,-1.0894,0.26207,-0.0035206,-0.31125 0.37269,-2.5754,1.5079,0.98712,-1.726,1.6676,-0.81869,0.52498,0.24069,2.4746,0.2565,-0.98617,0.7978,-0.14978,-0.58755 0.45814,-1.1249,0.60207,2.8626,-0.51101,0.69633,-1.192,1.0259,0.76257,-0.70908,1.387,1.0052,-1.0841,0.14302,-0.10664 -1.6802,1.9476,-0.12351,2.0143,1.1745,-1.5951,1.466,2.0138,-0.56143,-1.7026,-0.84476,-0.49735,-1.4471,-0.14753,0.85175 0.031272,-1.7399,2.1612,-0.62884,-2.5405,1.7475,-0.81857,0.93568,0.08422,2.0517,0.089621,-1.0993,0.75978,0.28698,-0.25772 -0.26871,-0.52619,2.2223,2.1863,-1.8855,-0.41273,0.20269,-1.5886,-0.30185,-0.64636,0.41962,-0.041133,-0.49224,-0.77586,1.1632 -3.2705,0.1361,-1.1027,-0.94121,-0.62361,1.0936,0.41258,-0.99229,-1.3303,-0.67364,1.8089,-0.84955,-0.28026,-0.95354,-1.2747 0.50576,2.5489,-0.6029,1.1343,-2.0054,-0.94472,-0.66027,-0.94647,-0.029784,0.01633,-0.59646,0.14516,-0.051409,1.4209,0.045239 4.0624,-2.1665,-2.0303,-0.41235,-0.01396,-2.0437,2.4154,0.68573,1.7147,-0.42656,1.0902,1.1593,0.14459,1.2442,-0.33227 0.27201,-0.97651,0.53529,-1.2011,-2.046,-2.0138,3.1408,0.55073,-0.07945,0.17245,-1.8873,0.23024,-0.13667,0.46282,-1.1122 2.8256,1.2317,1.6029,-0.065247,-1.6038,-1.5777,-0.62919,-0.63488,-0.095869,-1.3943,-1.1811,1.185,1.2217,-0.70394,-1.3101 -0.54245,2.6262,-1.8147,-0.098766,-1.7228,1.1402,-0.20859,0.89556,-0.63154,-0.10039,-1.5779,-0.49193,0.086944,0.099776,0.48973 1.5147,-0.3888,1.3226,0.079467,-1.998,-2.7827,3.0336,0.75264,-0.74322,-0.29679,-2.1153,0.37268,-0.92666,0.21002,-0.82346 0.18454,1.3153,-0.61234,1.6613,-1.4899,0.40464,-0.67705,0.15232,0.34887,-0.5129,0.83787,1.0144,0.77101,-0.88123,0.22476 2.6963,0.41679,-1.5097,0.68803,1.0784,0.61292,0.55523,-0.92421,-1.0605,0.92054,-1.0627,-2.0171,0.76777,0.16671,1.8199 2.0882,2.3365,-1.8613,-2.0178,-0.93654,-1.409,-1.1945,-0.22629,-0.81083,1.2688,2.121,-1.2064,0.44174,-0.18989,0.81109 0.47032,-1.4222,-0.77842,-0.94493,-0.87979,-2.1306,3.6246,0.0035487,-0.82253,1.8193,-2.2796,-0.7623,0.14917,0.89877,-1.5068 1.4935,0.2154,-1.8752,1.2881,2.3069,-1.3996,0.74955,1.1862,-1.1594,-1.7717,0.60927,-2.6032,1.1128,0.091255,0.41578 -1.8965,0.66189,0.68715,0.5556,-1.5304,-1.457,1.136,-0.53237,-0.21699,1.2021,0.79038,0.98053,0.32335,1.0997,0.67543 2.5562,-1.9446,2.2054,2.5609,-1.3233,0.82285,0.57585,-1.1262,-1.3933,-1.46,-1.0768,0.26017,-0.34102,-1.5716,0.2154 5.1381,-2.9214,0.26127,0.91467,-0.20099,0.14588,0.23006,-0.95295,-1.6055,-1.7165,-0.39933,-0.23667,0.046852,-0.48176,-0.41654 3.4105,-1.8065,-2.3428,-0.26879,-1.5848,0.4501,0.68885,0.23884,1.7396,-0.24378,0.34677,-0.24923,-0.61744,-0.38533,-0.010335 0.27739,-1.2982,-1.2367,-0.27164,0.0042966,-1.8728,1.6133,-1.1648,-1.1808,2.4895,-2.2664,0.3609,1.6426,0.64243,-0.90594 3.2157,-1.2746,-2.5516,0.53454,0.57371,-0.25155,3.1199,-0.089122,1.2055,-0.46216,-0.16476,0.26758,0.10377,0.041251,0.96108 2.1953,-1.4625,2.3967,-1.6217,-3.7756,-0.33439,0.97413,1.5465,-0.73977,-1.2597,-0.59481,-0.18657,-1.1257,-0.44893,-0.59422 -2.9293,-1.3806,-3.1029,-1.5259,0.72403,-0.45853,-1.4715,0.18486,-0.83189,-2.6466,-0.79006,1.1544,-1.1774,-0.84407,0.87878 3.1237,-2.3073,2.3659,1.6348,-1.2569,-1.9092,2.5945,-0.016502,-1.6697,-0.987,-1.442,0.82503,-0.57401,-0.85443,-1.178 1.1975,-3.6516,3.514,1.5373,-0.060059,0.80497,0.99973,-0.56877,-1.7692,0.74653,0.23118,1.2225,-0.34556,-1.5137,-1.3862 2.4434,-1.5158,2.505,0.1371,-3.1057,-0.40187,0.058191,0.82952,-0.036703,-0.48119,-1.4482,0.33118,-0.98073,-0.38339,-0.77759 4.2301,-0.20261,-1.3392,-1.2669,1.9932,-2.1072,1.992,0.78628,1.6235,0.34642,0.23725,-0.14991,-0.35015,0.29035,-0.35454 3.454,-0.60885,-1.6841,-1.5265,-1.2542,-1.5351,1.4072,-0.10133,0.16508,1.7679,0.78833,0.80885,-0.7201,-0.62261,2.3688 4.3325,0.26901,-0.96211,-1.1037,0.58628,-2.7276,1.4108,-0.71337,1.206,0.54515,0.25491,-1.3601,0.18447,0.46734,1.1568 1.1779,1.2982,-2.0042,1.4233,-0.30161,1.0801,-0.14665,-0.79748,-0.86471,0.77502,-0.65695,-1.8392,1.3817,0.5056,0.82813 4.6929,-1.6807,-1.1449,-2.4968,0.83221,-2.5274,2.9314,1.0246,1.1454,-0.65218,0.59835,1.3556,1.1192,0.52947,0.6509 4.8931,-1.8749,0.83389,-1.5177,-0.16049,0.94213,-1.5064,0.9855,0.63118,0.32475,0.17124,0.95228,0.18838,-0.4209,-2.524 -0.75588,2.7151,-2.0654,0.24676,-1.1704,1.0448,-0.41213,0.58127,-1.09,-0.55384,-1.097,-0.28975,0.63287,0.36527,-0.16375 4.0604,-0.53555,-0.39283,0.78571,0.91327,-1.6418,0.87705,-2.2643,-0.26956,-1.1107,0.45394,-1.9146,0.8595,0.50354,1.5889 -1.0659,1.8808,-1.3362,2.553,1.4163,-1.1398,0.91191,2.2809,0.28977,-0.16118,-1.7159,-0.20092,-1.0307,0.54321,-0.14523 4.7395,-1.806,-0.98156,-0.28171,0.87111,-1.9546,2.7999,-0.73811,-0.01522,0.0041498,1.0841,-0.26814,-0.059546,0.85864,2.7079 -0.24775,1.1581,1.2424,0.010451,-3.3723,0.73609,-0.78051,-0.30787,-0.26066,-0.80951,0.032253,0.82485,0.14589,-1.3559,1.0849 3.5071,-1.7825,-1.8315,-2.1975,-0.91087,-2.1938,2.4179,1.0524,2.041,-0.617,1.1389,1.8155,0.061976,0.97645,0.79712 3.6601,0.77666,-0.61795,0.71728,0.21535,-2.2757,0.66278,-0.87481,1.1574,-0.9563,-1.5166,-1.5779,-0.24147,0.33674,-0.99148 3.7994,0.051305,-1.3708,-2.6384,-0.8774,-2.2828,1.0897,-0.33647,1.6733,-0.58459,0.87128,-0.69951,0.27605,0.64356,1.2664 3.165,-0.1836,-2.3172,0.20716,-0.25339,-1.2926,1.9905,-0.28201,1.5291,0.57684,-0.37524,-0.47656,0.49706,-0.035234,0.51985 -0.029031,1.5207,0.30918,1.9664,-1.1995,-1.9051,-1.2695,0.011994,0.71327,-0.66517,0.56788,0.65606,0.2043,1.2597,-0.34997 0.83778,1.6293,-0.081775,1.5295,-1.548,0.13073,-0.48361,-0.94962,-0.22283,1.6757,0.041133,0.7497,-0.19936,-0.29811,-0.31652 -3.3015,0.98213,-1.2771,-0.61963,-0.64509,-0.30017,1.4483,0.8368,-0.048152,-0.0024778,0.78198,0.062539,-0.23051,0.48163,-0.83228 -1.5803,-0.076546,-1.4105,-0.55237,-1.8546,2.0326,0.49663,-0.32782,-1.0209,-0.089454,0.49158,-1.9682,0.029582,-0.10071,-0.1982 5.4211,-2.7801,-1.2504,-0.35085,2.0133,-0.95128,3.6268,-0.28954,-0.14552,-2.3009,-0.071707,-0.33433,0.40696,0.90945,0.51708 4.7819,-1.8323,0.19786,0.38264,0.61137,-1.5658,1.2601,-1.7397,-0.86267,-1.9961,0.51466,-1.5404,0.49237,0.50429,1.4326 3.3963,-1.4736,-1.6101,-1.5847,-0.11283,-2.3901,2.001,1.4851,1.7318,-0.39681,1.1084,1.8571,0.61648,1.2992,-0.37314 3.8576,-1.3748,-0.50877,1.1281,-0.60998,1.3648,-1.8372,0.00092965,-0.20619,1.2885,-0.28838,-0.74938,0.93005,0.35672,-0.013869 5.0893,-0.55422,-1.0314,-0.29815,1.301,-2.7816,2.2753,-0.43885,0.48578,0.0073702,-0.19174,-0.67089,0.35865,0.63294,0.29871 1.2203,2.9269,-0.54358,-0.72005,-2.032,-0.94478,-0.66348,-0.69349,-0.14812,-1.9441,-1.1054,-0.50918,0.098095,0.8377,0.061297 5.027,-2.4264,-0.89153,-0.21134,0.19991,-1.6517,2.2647,-0.79915,0.66904,-0.70799,0.68895,-0.61059,0.38623,0.76969,1.5669 1.5475,-1.3064,1.6528,1.0581,-2.9741,0.14291,0.043151,-0.15413,1.1829,-0.69957,-0.94245,0.0066809,0.05421,-1.2613,-0.32918 3.5808,1.2616,-0.37838,-1.7285,0.12286,-2.5397,0.3265,0.31593,0.31198,-1.6775,-0.62422,-0.92686,1.3264,0.65716,-0.95177 3.3908,-1.8738,2.9811,0.72617,-2.2393,0.89228,-0.53322,2.0554,-1.4056,1.3451,-0.94925,-0.45484,0.14219,0.27049,0.016501 -2.9926,-2.7906,-0.10559,-0.52381,-0.28993,-0.30453,-1.7327,-0.047679,0.30667,0.73547,1.2549,-0.1179,-1.7702,-0.30008,-1.4359 1.6698,-1.8954,-3.1276,1.5595,-1.2426,0.98667,1.4343,1.0029,1.3878,-0.30778,-0.043759,1.6611,0.45579,0.66725,-0.5885 4.2035,0.74292,-0.39421,-0.37767,1.5037,-2.4632,0.8988,-0.66502,-0.01202,0.85464,-0.30341,-1.907,-0.50143,0.98178,1.2406 -0.68715,-1.79,2.563,1.8485,0.23066,0.53445,-0.89748,2.3099,0.32903,0.2033,1.5935,-0.014237,-1.3994,-0.3066,-0.19763 -0.18389,2.0406,2.0103,-0.43225,-2.3085,1.7129,-1.5429,-0.21009,-1.8059,-1.1538,0.76819,0.77055,-0.73368,-0.5693,0.66116 0.8232,3.2361,-0.7012,-1.7486,-1.0454,-2.0857,0.64229,0.43986,-1.4429,-0.059469,-0.66799,-1.3877,0.17255,0.31792,1.2147 -3.1197,-0.81572,0.48339,-1.3708,-1.7142,0.65784,-0.60279,-0.92407,-0.69111,0.34727,1.9697,-0.10208,0.13815,-1.0492,-0.66678 -2.2863,1.9424,-0.61129,0.058353,-2.2716,0.2728,1.0817,-0.51407,-2.0169,-0.48474,1.069,0.84545,0.17753,-0.72891,0.63873 2.0477,0.51435,-0.13213,1.4265,-1.4469,0.49084,-2.2405,-1.1145,1.1383,-0.27803,0.7415,0.27663,0.71061,0.052057,-0.14102 -2.0745,-2.121,0.18292,1.4646,-0.26194,0.35238,0.053636,0.67681,1.4267,-0.15034,1.4524,-1.1407,-1.9054,-0.81852,-1.263 5.5708,-3.3788,-1.6253,-0.45595,-0.55319,0.33132,-0.22384,2.1924,0.64195,-0.42406,0.23343,-0.27084,-1.3363,0.31253,-1.3993 -3.0919,-2.8685,0.18338,-1.782,0.20886,0.61127,-2.4973,0.79108,-0.31722,0.51428,0.050271,-0.55091,-0.067132,-0.34378,-0.32689 -1.3304,-1.8422,2.3323,0.33362,0.037979,0.35987,-0.84799,3.2232,0.035871,0.72141,1.2404,-0.95068,-0.52637,-0.2856,-1.1184 -0.25118,-2.3432,1.3545,1.4108,0.49243,1.2303,-0.31531,3.1589,-0.28181,1.8789,1.4456,-0.76085,0.96961,1.1187,-1.2182 0.65822,-0.68096,2.7602,0.76439,-0.45313,0.979,-0.4341,2.2035,-0.42422,2.5243,1.4541,0.088939,1.1858,1.3841,-1.2285 -1.446,-0.65451,2.626,-0.94702,-1.7124,1.4632,-1.22,1.6768,-0.92105,1.0022,1.6275,-0.70564,0.60796,-0.19716,-0.31268 -2.2532,-2.0846,-0.75069,-1.9698,-0.24278,0.048453,-3.4726,-1.2676,-2.2684,0.67379,-0.28258,2.1053,-0.76157,-1.1048,0.85325 1.5795,-0.32241,2.3788,-0.38767,-3.1361,-0.83704,-0.41155,0.80298,-1.0048,-1.1272,-0.41861,0.10978,0.24425,-1.4932,0.15886 0.33044,-1.6169,1.2234,3.1025,1.075,1.9569,0.050891,2.5472,-1.4382,1.1362,1.8655,-0.83929,-0.70115,1.6428,-0.34888 1.4442,2.1352,1.0673,-1.3453,-1.2836,-2.6162,1.5198,-0.23216,-1.461,-0.68811,-1.4941,-1.6883,-0.42696,1.3355,-0.0046861 -1.5434,-0.47747,0.074066,0.66629,-2.2723,0.67261,-0.0011374,-1.2709,0.9389,1.2743,1.2444,0.067472,-0.73382,-0.64329,-0.045985 -1.0058,1.2754,-2.4358,1.6487,-0.22263,1.5861,0.20169,1.6901,-0.49311,-0.12547,-0.73837,-0.86712,-1.021,0.24469,0.083533 3.7392,1.0119,-0.23464,-0.03514,1.0263,-1.2716,1.5659,-1.1032,-1.9393,1.308,-1.104,-0.66777,-0.47116,0.051197,-0.74984 2.0936,-1.7131,-1.6058,1.9037,0.93283,1.7134,-0.25844,-0.3828,-0.5745,1.3271,2.8123,0.79983,0.85504,0.13903,1.502 -1.6796,1.4316,0.42338,0.2438,-1.0113,-1.287,1.6196,-0.47808,-0.16277,1.7526,-0.90477,-0.42193,-0.1927,0.50138,1.346 -1.0338,-0.012123,-3.1071,-1.0342,0.70413,-0.87749,-0.536,2.4054,-0.83073,0.50887,-1.6903,0.54152,0.57437,0.25069,1.2896 -0.5689,-0.037354,-2.6839,-0.66556,0.52938,-1.9929,0.020928,2.6393,-1.4564,0.12591,-0.90162,0.77566,1.198,-0.022596,1.0815 -0.57217,-0.59158,1.0327,1.7532,-0.56311,1.5859,-0.38641,1.2423,1.1706,1.8038,1.3716,-0.28534,0.20807,0.99784,-0.00011778 -2.1278,-1.259,-2.0173,-1.5328,0.15834,-1.9856,0.37816,0.63252,-1.2968,-1.1033,-0.98047,0.26999,0.72912,-0.070385,0.34075 2.649,-2.1371,-1.7922,-1.0364,-2.586,0.77789,0.19568,1.7362,0.18856,1.5052,-0.50708,0.85116,1.5781,0.080706,0.72374 -0.85156,-1.9328,-2.5036,0.20852,0.3307,-3.3655,0.6346,0.17707,-1.8562,-0.1367,-0.98509,1.0115,-0.31611,0.10699,-0.61067 -1.0779,-1.6835,-2.7278,-0.50019,-0.44017,-3.0348,0.41948,0.30997,-1.8021,-0.054421,-0.93535,1.1935,0.1327,0.021647,-1.1622 1.6114,0.75608,-2.522,0.84392,0.10457,0.99232,-1.7235,0.72715,0.72659,-0.037006,2.2114,-1.4316,-1.2523,0.80473,-0.84402 -0.68835,-1.0612,-2.8698,0.044545,0.4462,-2.7741,0.29281,1.1217,-1.2265,-0.44518,-1.2418,1.4228,0.20431,-0.41201,0.2873 -0.42646,-2.0632,-2.1227,-0.43279,-0.069004,-3.5424,-0.262,1.2912,-2.3522,-0.87701,-0.8796,1.8254,0.19492,-0.4247,0.23082 -0.37301,0.029512,-2.7267,-0.034047,0.70608,-1.7524,0.43104,2.6876,-1.0126,0.33852,-0.82565,0.42454,1.2255,0.48718,0.85998 -1.4954,-2.2477,-0.7656,-0.97694,0.29684,-2.8906,0.51182,0.98326,-0.53518,-0.94205,-0.84094,0.0035647,0.49988,0.082283,-0.27408 0.71754,1.1287,0.64275,1.3865,-1.7732,-0.72523,1.143,-0.55708,0.35228,1.3546,-1.8833,0.37373,0.15322,0.19326,0.80292 -1.6336,2.2216,-0.65961,0.0084454,-1.1611,0.89295,-0.55404,1.7104,-0.86816,0.35621,-0.6856,-0.1149,0.37564,0.2679,0.69954 -1.7536,-1.3408,-2.038,-0.70332,0.46636,-3.1919,1.5468,0.9287,-1.1963,-0.23521,-1.1062,-0.078371,0.43589,0.64309,-0.96978 -1.4781,0.028558,0.2791,0.66169,-2.8084,0.00052988,0.25285,-1.1777,-0.30014,0.97007,1.2496,0.25624,-1.4104,-0.14653,0.39922 -1.3494,-2.1585,-1.1931,2.1226,-0.61453,-2.3524,0.90094,-1.4802,-0.43507,-0.28386,0.6185,-0.75675,-0.36402,-0.032429,-0.97984 3.6163,-1.2838,-1.805,0.23256,-0.53066,-0.93573,0.80468,-1.3196,1.4693,-0.87049,0.20476,-1.0465,-1.0826,-0.5525,0.46067 -1.4851,-0.75001,-1.5888,0.58761,0.74314,-3.0722,0.22229,-1.1963,-1.3284,1.793,-0.85863,0.42716,1.0966,1.594,0.7085 -1.1376,-3.7291,0.0056872,1.0866,-0.025766,-2.1684,-1.2426,-1.2936,-0.94439,0.5045,0.15848,-0.12049,-0.11738,-1.084,-0.56433 4.2342,-1.7789,-0.031005,1.2314,-0.66625,0.092352,-0.56808,-1.2873,-0.26185,-1.8711,-0.56006,-0.60987,0.54429,-0.34196,-0.42442 2.1755,-1.6134,-1.0018,1.877,2.2478,-2.0398,0.34176,-0.23591,0.10022,-1.3255,3.3437,0.20831,1.2145,0.4175,0.15098 1.4323,1.7209,-0.34278,0.95037,-1.9942,-0.74669,-1.3258,-1.0528,0.077625,-0.77218,-0.012955,-0.55807,-1.1114,0.58398,0.6674 -2.6165,-0.59185,-2.0545,-0.33531,0.3506,-3.0825,-0.39763,-0.30691,-0.83233,0.9267,-0.24833,0.3294,0.78841,1.2899,0.16066 -1.2536,0.3372,-1.8118,1.4258,-0.88753,0.13929,0.8882,-1.075,-1.0476,0.84327,0.14716,0.42317,-0.60862,0.32014,0.60674 0.24458,1.6745,-0.12164,3.013,2.3035,0.27221,-0.021118,-0.28069,-0.80826,-0.70889,-0.18935,0.33261,1.1301,1.4383,0.1749 2.0165,1.3461,2.7663,1.8824,-0.57502,-1.8981,0.56716,-1.2655,-0.59598,0.04642,-0.65156,0.0085465,0.26159,0.51272,0.32761 -1.3557,-2.8924,0.50659,0.04648,-1.1264,-1.8537,0.86708,-0.17978,-0.6493,-0.12955,1.0228,-0.066755,-0.74318,-0.48326,-1.3861 -1.909,-2.5941,1.0286,-0.61235,-1.8931,0.38065,-0.60116,1.5778,-0.086885,0.42232,1.3515,-0.99862,-0.50371,-0.14013,-0.92029 -1.2841,-4.2509,-1.1833,0.30734,0.18765,-1.2433,-1.4975,1.4612,-0.61134,-0.42627,0.20652,-0.098346,-1.4946,-1.1234,-1.0602 2.048,-1.981,-2.108,0.85818,-0.19494,1.6067,0.79128,-0.68572,-1.4793,-0.80513,2.1601,0.40534,2.2016,0.91883,2.2752 -2.7303,-2.022,-0.23118,-0.51057,-1.4851,-1.0594,-0.1388,0.70474,-0.78538,-1.4643,1.3656,-0.48605,0.59296,-1.7636,-1.3679 0.94962,1.8692,-1.7891,-0.11974,-0.70975,-1.6333,-0.15496,-0.87579,-0.70179,0.93266,1.1422,-1.1423,-0.6198,0.61282,0.99568 -2.4929,-2.3094,-0.82613,-1.1702,-0.079258,-2.1797,0.51543,0.97485,-0.45034,-0.81115,0.60374,0.086009,-0.26722,-0.83107,-2.0699 -2.2897,-2.3991,-1.1739,-0.23256,0.033231,-2.8307,0.11393,0.17115,-0.047441,-0.16405,0.63902,0.27164,0.031446,0.63406,-1.0948 -2.4228,-2.4464,0.11814,-1.0952,-0.98913,-0.81834,-0.10483,1.3109,-0.44664,-1.7178,1.1719,-0.58563,0.080293,-1.1398,-1.7445 2.3787,-1.0705,1.9787,0.873,-2.027,-0.15798,-0.82325,1.0632,-0.53228,-0.10958,-1.7638,-0.4024,-0.63212,-1.2568,0.76811 -1.3369,-2.3627,0.83532,-0.36401,-0.98936,-2.7052,1.2028,-0.36015,-0.75772,-0.10016,0.64069,-0.017015,1.6204,0.79513,-1.0437 2.4125,-3.6996,-0.42081,1.8113,-0.48233,0.30787,0.10996,-1.046,-1.181,-1.7585,0.1288,-0.43005,0.75377,-1.6294,1.031 -0.40364,-3.3529,-1.1266,1.4295,0.71413,-2.5593,0.15782,-1.4198,-2.063,0.088931,0.15957,1.2761,1.1273,-0.27424,-0.56554 -1.0293,-1.6367,2.4039,-0.031528,-1.9597,-0.19108,-0.5168,1.6208,-0.0047383,-0.86533,2.1402,0.071275,0.89941,-0.43089,-0.51657 0.34691,1.1872,-2.5302,1.3505,2.4263,-1.2937,0.42849,1.1468,-0.35959,-1.0704,0.030047,-2.4557,-0.018,0.58496,0.67805 1.5402,1.0096,0.69842,-1.145,-3.0003,-0.51324,-0.33641,0.86076,0.38974,-2.9569,-0.9175,0.16111,-0.51447,-0.23758,0.44668 -1.5888,-1.6682,-2.5726,0.55671,-0.33604,-2.6037,-0.50948,0.23444,-1.2965,-0.41221,0.0054603,0.81212,0.37467,0.75428,-0.18687 -1.7234,-3.4199,-1.4098,0.73203,-0.74273,-1.0694,-1.2602,0.59844,-0.28185,-0.84935,0.51058,-1.1452,-1.2593,-0.88893,-1.0237 -1.4163,-0.2176,-3.0941,2.1509,-0.72765,0.17981,1.1576,-0.2442,-0.15672,-0.22514,0.137,-0.78844,0.55994,0.17978,-0.071814 -2.3384,-1.768,0.42567,1.0436,-0.54174,-1.6693,0.64319,1.139,-0.24926,-1.3003,1.6587,-0.30686,-1.1793,-0.81568,-0.86983 1.1991,-0.16953,-0.49524,1.2984,-1.0335,0.10985,-1.6101,0.65493,0.6421,-1.5424,1.5232,0.51023,0.76067,0.55991,-0.88314 3.5773,-2.4269,-0.97217,0.34134,-0.88593,0.42934,0.22285,-0.96117,0.23055,1.2933,1.4408,0.3429,0.076323,0.045784,2.0863 -2.0316,-1.1363,-2.4193,0.094013,-1.141,-1.6551,0.82522,0.013662,-0.69032,-0.46601,0.22948,-0.40307,0.26767,0.71299,-1.3957 -1.7282,-1.8507,1.3823,1.1361,-1.0127,-0.5218,-0.166,1.7626,-0.02835,-1.2417,2.041,-0.42255,-1.5161,-0.96238,-0.87296 -2.0087,-2.4011,-1.6996,1.191,0.40787,-1.9247,-0.60706,-0.42849,0.065606,-0.74779,0.72225,-0.46665,-1.604,-0.42307,-1.2929 2.5526,0.012938,0.82356,1.7351,-2.1262,0.98283,-1.1634,-0.16447,0.54489,0.2327,-0.60871,-0.18808,-0.41598,0.23364,0.88454 -1.2345,-1.1198,-0.30382,0.48198,-2.1528,-0.027209,-0.048334,2.2058,0.14302,-1.6207,1.1853,-0.44845,-0.27311,-0.82195,-0.69507 2.9983,0.9006,-1.6125,-1.916,0.0048938,-0.37374,0.60959,-0.30706,-1.3696,-0.085815,1.514,-1.0647,2.6188,-0.56072,1.4316 -2.6282,-1.1956,-0.40087,0.4211,-1.5101,-1.2055,0.53368,1.5595,-0.015303,-1.3463,1.2339,-0.95993,-0.7016,-1.3187,-1.2468 -0.32027,2.9296,-2.1384,0.16611,-0.82487,-0.37646,-1.0134,0.83694,0.20284,0.54676,-0.63425,-0.6307,0.78363,0.90198,-0.56296 -1.7772,-3.0005,-0.30197,-0.49974,-0.34563,0.91166,-0.72505,2.8188,-0.32115,-0.328,0.33712,-2.2733,-0.66316,-0.30772,-1.162 -1.4891,-2.2186,0.93371,1.4281,-1.2368,-0.40994,-0.38417,2.2795,0.15778,-1.5593,1.5414,-1.0383,-1.7225,-0.8124,-0.66367 -2.9905,1.1897,-2.1726,0.16182,-0.48942,1.7509,0.61751,2.329,-0.2661,-0.51841,0.424,-0.084844,-0.66532,-0.76197,0.16274 1.1806,2.2234,-0.80648,2.358,0.1859,-0.31976,-0.15871,-0.87884,-0.16834,0.24602,-1.8723,-1.0062,1.9807,0.14132,-0.23263 -2.3202,-2.0839,-2.1406,0.36065,-0.93617,-1.4162,-1.0154,0.43203,-0.90463,-0.81696,0.29354,-0.31632,-0.80467,-0.9086,-1.2408 -2.9832,-1.5179,-0.71141,-1.6729,0.31135,1.8558,-2.7446,-0.61373,-1.8619,0.37235,-0.15269,0.37873,-0.078253,0.045227,0.7748 -1.3879,-0.62478,-1.3568,1.1219,0.0037649,-0.38006,0.48616,-2.0588,-1.525,1.4106,1.1464,0.60852,0.40478,0.17795,-0.58391 0.3838,-4.6463,2.2431,1.5778,-0.95048,-0.36541,-0.19352,0.81704,-1.2332,-0.124,0.48809,-0.84018,0.13907,-0.46876,-0.51043 4.1345,-3.8249,-0.96017,-0.9005,0.037547,-2.4561,2.4934,1.3066,-0.60193,-1.1898,0.98281,1.9473,-0.32452,0.098243,-0.012269 0.017675,-3.8089,3.976,-0.25197,-0.33168,0.27775,-1.2089,1.3022,-2.1151,1.5043,0.43193,-0.51552,-0.94495,-0.32622,-0.77083 -2.0929,-3.6956,1.0613,0.30936,-0.70827,-2.5617,-0.46812,-1.008,-0.51572,-0.16976,0.2037,-0.25665,-0.1787,-0.55278,-0.96567 3.7803,-3.0046,3.169,0.56415,-0.60174,0.65932,-1.3317,2.1859,-2.3137,0.70024,0.4806,-0.20771,-0.03309,0.45485,-0.27522 2.2781,1.186,1.5014,0.28604,-0.11917,-3.2887,0.1118,-0.43949,-1.4914,0.36514,0.3007,-0.10217,1.4078,0.93873,-0.51577 -1.5939,-4.874,1.3556,0.99152,0.49944,-1.2496,-0.71695,-0.17184,-1.7075,-0.21494,0.15851,-0.77678,-0.18082,-1.7735,-0.94794 -1.6278,-4.4561,0.58449,1.1847,-0.50052,-1.7847,-0.22203,-0.37411,-0.66277,-0.41497,0.44178,-0.70918,-0.33896,-1.3904,-1.1188 0.21551,-2.9512,1.6197,0.19353,-2.5773,0.071041,-1.2456,1.4727,-0.44731,0.41008,-0.23915,-0.86338,0.38036,-0.61858,-0.12515 -1.7063,-2.028,3.3588,0.12581,-0.40653,0.79505,-0.89843,0.83122,0.75768,1.4387,1.1622,-0.71427,-0.9439,-0.45934,0.11179 -1.1497,-4.0444,0.2295,1.077,-1.5822,0.20738,-0.75499,1.0923,0.026144,0.68492,0.10348,-2.1221,-0.88411,-0.59926,-0.76304 -1.1778,-4.2363,3.0158,-1.1742,0.36163,0.60154,-1.1485,2.1403,-0.77171,0.80126,0.5219,-1.2563,-0.055963,-0.69708,-1.1447 -2.4188,-2.4158,-1.5944,-0.037918,-0.0038526,-2.2182,-2.3695,-0.73712,-0.56097,0.065029,-0.39558,1.6054,-0.70449,-1.2546,0.6437 5.2887,-2.8077,-0.67846,-0.68022,0.64879,-1.4262,2.7923,-0.81892,0.076615,-0.2993,0.42378,1.0368,0.82989,0.53873,0.94674 -1.8003,-4.3845,1.4565,-1.0478,-1.0067,-0.57972,-1.6905,0.77507,-0.6849,0.58877,0.093819,-0.58725,0.014338,-1.0302,-1.1891 2.0885,-3.8799,3.0866,1.53,-0.59116,1.6975,-0.19827,0.085128,-2.6057,1.2271,-0.39933,-0.58662,-0.22198,-0.53745,-0.39929 -0.57812,1.5364,0.054155,0.39643,-0.55602,-1.3001,0.32235,2.5436,0.16492,-0.53199,-1.1333,0.44339,1.5039,0.4692,0.36815 -1.702,1.3624,-0.90894,2.0061,-0.21925,0.43902,0.85796,0.9723,-0.4493,1.9798,-0.14562,0.20941,-0.66855,0.46313,0.3722 1.9791,-1.3806,-1.1057,-1.311,-1.8733,0.55081,-1.091,1.1303,-0.097142,1.5595,1.7161,1.1176,1.7938,-0.17487,0.3524 0.084889,-3.3218,2.6515,-0.23448,-2.648,0.36726,-0.31276,1.0621,-0.53678,0.17084,0.20258,-1.1835,0.0082347,0.032104,-0.33699 -0.55604,-4.7845,1.4447,2.0078,-0.45177,-0.34552,-0.53538,1.733,-1.3036,-0.81821,0.61037,-1.6692,-0.75666,-0.52521,-0.87357 2.4423,-0.39947,-1.8324,0.036712,-0.75875,-0.467,-0.21034,-0.99228,-0.13886,1.908,2.3799,-0.18919,-0.55019,0.31234,2.6319 -0.28297,-0.60668,1.3835,2.4386,0.88662,-2.9385,2.3877,0.4335,-2.0446,0.73756,0.13488,0.29794,1.6491,1.2249,0.38738 -0.007124,1.7723,-0.54561,0.67514,-1.1079,1.8654,-2.312,1.0121,-0.16804,-1.0984,1.9031,0.61407,0.15647,0.90148,-0.7557 -2.1278,0.58543,1.5129,1.4953,1.3622,-2.0017,0.89738,1.645,-0.1184,-1.1859,0.33804,0.030862,-1.4683,-0.28402,-1.0767 -1.8613,-1.0893,-0.13588,1.6061,1.4167,-3.16,2.3596,1.575,-1.7062,0.49732,0.59406,-0.21377,0.61722,1.2274,-0.2816 1.0553,-1.8333,2.9367,2.4466,-0.30882,-2.7165,1.1399,0.1852,-2.1992,-0.57854,0.48081,1.2137,0.94343,-0.20181,-0.22258 4.8293,-2.4344,-1.7331,-0.34035,-1.2698,1.4349,-0.16865,1.901,-0.23179,1.3033,-0.47516,-0.20332,-0.28822,0.9305,-1.5258 3.8145,-2.1495,-0.98183,1.5995,0.97899,2.3136,-0.98384,-0.084529,-1.5791,1.697,1.4169,-0.58957,1.8821,0.42658,0.34964 -1.512,1.4679,-1.0806,1.9517,0.90092,-0.30264,1.1653,2.6489,0.17008,0.62424,-0.914,-1.0734,-1.545,0.1776,0.43713 1.3125,2.0448,0.15765,0.24446,-1.713,-1.1502,-1.6912,-1.0399,0.49965,-0.40437,-0.092739,0.18973,1.213,0.78669,-0.19125 -1.4201,-0.73815,0.93577,2.3737,0.78216,-3.0279,1.6462,0.80249,-1.1483,-0.25864,1.0424,0.42073,0.11157,0.99117,-0.14737 -1.203,-1.0049,0.51728,0.82608,-0.46468,-3.1904,2.103,0.17985,-1.048,1.403,0.080246,-0.11376,1.9736,0.96451,-0.37728 0.89318,-0.86665,-3.0487,-1.1335,-2.3615,1.1243,0.79775,1.1999,1.0712,-0.91353,0.78169,1.7364,1.054,0.82818,1.1097 -0.38978,-1.2911,0.27967,2.7069,-1.5292,1.2146,0.52002,-0.93265,-0.18314,0.071791,0.2856,0.78394,0.091356,-1.9071,-0.25229 3.9253,-2.3535,-1.8135,0.51589,-0.0497,2.596,1.6428,-0.028068,-1.7879,2.1322,0.45508,1.4251,1.0834,0.3186,0.89362 -0.59034,-1.6125,-0.59341,-0.29413,-0.75267,-3.1934,0.76323,-0.19191,-1.3529,1.514,-0.070828,0.65649,1.7534,0.19901,-0.51412 -0.90748,-1.8412,1.2176,2.3638,0.42144,-2.556,1.5551,-0.10151,-1.2356,0.15491,1.9635,0.69313,0.63873,-0.14682,-0.64166 -0.19101,1.2317,0.1937,2.4656,-0.78286,-0.52281,1.5543,-1.486,-1.8139,-0.36598,-0.70468,1.3054,0.89486,-0.24445,0.85408 -2.045,-1.3313,-0.17586,0.43653,-0.64398,-2.8735,1.6648,0.4201,-1.1728,0.67035,1.106,0.47923,1.3535,0.8094,-0.65328 3.1109,-2.6433,-2.3844,0.61723,-0.42619,0.49072,2.8395,0.082022,0.15874,-2.2244,0.47768,0.97361,0.80485,0.037626,0.45818 -0.63322,-1.8495,1.2344,0.21921,-1.281,-2.7307,1.6026,-1.5213,-0.67249,1.324,-0.0014567,0.080877,1.1341,0.40928,-0.58838 -1.0866,-1.0042,-1.9546,1.0128,-0.1154,0.66641,0.98912,1.0592,-0.47081,-1.3832,-0.2719,-1.8639,0.58663,0.43941,0.67525 -1.0152,-4.0527,1.1995,1.2052,-0.44736,-0.60482,-0.43861,-0.086404,0.28775,1.2382,0.16221,-0.20877,0.079945,-1.6853,-1.0626 1.5299,1.643,2.8148,-0.69692,-2.1337,-2.0767,-0.02043,-0.71277,-1.0327,-1.1189,0.019542,-0.21637,-0.13231,0.74774,0.83902 4.1859,-2.2201,0.75978,0.8944,-0.51097,-0.49264,0.38093,-1.0385,-1.326,-1.8032,-1.8067,-0.35783,-0.3813,-0.17156,-0.3309 0.41647,-4.0616,0.93925,-0.82154,-1.5883,-0.39056,0.29229,-1.6104,-0.29053,1.5173,-1.4384,-0.24372,-0.7316,-0.96285,-1.4404 -3.1789,-0.37226,-2.6697,-0.80294,-0.3836,-1.2695,-0.28976,-0.36788,-0.18346,-0.25013,0.58223,0.50519,0.052326,0.79433,-1.007 3.2905,-0.59464,-0.83252,0.18811,-0.80553,0.87225,-1.4795,-0.44695,-0.15626,0.51039,1.294,-2.4792,0.077587,0.98315,1.9694 -1.7808,-0.26994,-1.7291,1.4015,-1.7932,-0.71144,0.88361,-1.2646,0.60978,1.2951,0.49289,0.16656,0.23916,-0.27263,-0.18498 1.8849,-1.5306,2.438,2.8202,-0.28665,-1.3531,1.0049,-0.91749,-1.5844,-0.51888,0.29716,0.90234,1.1657,-0.60083,-0.80632 0.50591,1.2658,-1.6788,2.428,-0.30916,0.15456,-1.1428,-0.91968,0.38457,-0.93203,1.1052,-0.096017,-0.29079,0.88686,-0.82974 2.6177,-0.53129,-2.2805,-0.94472,-1.5873,-1.1275,1.4237,0.34897,1.9599,0.38645,0.63831,0.74272,0.15957,-0.011781,1.2467 -2.0429,-1.849,-3.0762,0.1792,0.78106,0.0063338,-1.9286,0.13483,0.04601,-0.60169,-0.77432,1.2101,-2.7347,-0.7799,0.19615 3.2947,0.40822,-0.5385,0.8011,-1.2762,-1.5134,-0.17752,-0.35295,1.8112,-2.006,-0.82806,-0.55217,-0.96202,0.0838,-1.1521 1.9994,1.0182,-0.813,1.8411,3.1515,1.1326,-0.39737,0.064172,-1.4475,1.1368,-0.17936,-0.39213,1.9186,-1.0224,-1.5562 2.0377,1.9908,-2.3364,-1.2408,1.0894,-1.667,0.87098,0.99008,1.2472,1.6289,-0.6615,-1.1382,-0.67091,-0.61094,0.5432 4.5341,-1.8111,0.15718,-2.2911,-1.85,-0.58965,-0.64866,1.0658,-0.8496,-0.95368,0.25529,-0.24594,0.98979,-0.85991,-0.65352 2.9853,-2.9269,-2.6376,0.59871,-0.71572,-0.031239,2.2806,1.3335,1.3683,-0.37172,1.1827,2.1794,0.33586,1.0971,0.039407 0.37954,1.7414,-1.4911,2.0762,-0.49074,0.89124,-2.3745,0.3899,-0.12166,0.56738,1.3567,0.22021,-0.63905,1.1773,-1.3361 -1.4843,-1.7962,-0.16752,-1.1758,-1.0251,-2.3036,0.60041,-1.4069,-1.4642,1.7803,-0.080456,0.92943,1.8785,0.23408,-1.0209 1.5339,2.3069,-1.6343,-0.52848,-1.5924,-0.1567,-0.0058654,1.2715,-0.018434,0.036946,-2.2128,-0.62662,0.23794,0.37339,-0.78115 -0.38317,1.2261,-1.199,3.1444,0.57566,-0.4603,0.96102,0.97119,-1.1268,0.1568,-0.28853,0.16891,-0.035531,1.5679,0.059595 5.6022,-2.5682,-0.6512,0.41295,0.051388,-0.27667,0.74409,-0.56106,-0.075118,-2.2214,-0.65601,-0.31395,-0.45962,0.30167,-0.90984 -1.4129,0.25994,-1.4549,2.5222,-0.55776,-0.45889,2.0137,-0.15578,-0.49522,-1.2015,0.28393,-1.099,-0.1382,0.6752,0.060563 2.4583,-1.038,-0.2931,2.2545,-0.46383,-0.56292,2.6352,0.4702,-0.14128,-1.8821,-1.7297,1.2088,-0.3159,0.46235,-1.1152 -2.0862,1.719,0.55923,-0.061512,-1.3752,-0.37322,1.0243,0.019644,-1.9982,0.88879,1.6908,0.40758,0.69895,0.60719,0.3007 -0.778,-0.14615,-0.72947,2.1446,-0.41272,-1.1329,2.0073,0.041147,-0.2624,1.601,0.31116,-0.5825,1.1974,1.1516,0.15957 0.007992,1.9389,-0.19721,1.6443,-0.84563,-0.037936,-2.3881,0.039133,0.5909,1.0061,1.1999,0.63876,-0.27305,0.63144,-1.197 3.3276,-1.1615,-0.14295,1.2024,0.19955,-1.8666,-0.28316,-1.7058,0.49943,-0.16373,1.6834,-0.57116,1.2507,0.74117,0.67378 5.7958,-2.3123,1.3376,-1.3695,-0.53155,-1.302,0.36011,2.3339,-0.64981,-0.90383,-0.51048,0.33659,-0.62563,0.072085,-0.88132 -1.2043,-1.2349,-3.0553,2.0808,-0.30069,-0.67162,0.27004,-0.62439,0.015322,-0.4505,0.26187,-0.045099,-0.055548,0.20396,-0.6987 -1.3943,-0.8822,-1.3048,1.861,-0.81728,-1.1495,1.2111,-0.22811,0.26923,0.54084,1.3077,-0.18427,0.38311,0.84432,-0.82172 -0.33792,-2.4549,-2.2203,1.8441,-0.79989,0.13626,0.031939,-1.708,-1.2819,-1.1577,0.057677,0.3223,1.3687,-1.295,0.18314 -1.0345,-2.1211,0.25854,2.2818,-0.6195,-0.47524,1.0409,-1.5003,-0.052303,-0.073317,1.4376,-0.0014576,0.79094,-0.67683,-0.56817 0.15004,-1.0664,0.22009,1.7787,-1.6735,0.23041,1.0604,-1.7739,-1.1483,-1.6994,0.75811,-0.62693,1.8705,-0.70977,1.0479 -2.2615,1.1868,-1.3946,0.91314,-0.87493,-0.32851,0.98826,1.0391,0.64564,-0.4635,-0.063558,-0.095456,0.21567,0.27715,0.93775 1.2545,1.0306,-0.12888,-0.6332,-0.29513,-0.48394,-1.9463,-0.80255,1.314,-0.81317,1.3051,0.090995,1.9838,0.3454,-0.1666 -1.9608,-0.55454,-2.8849,1.5266,-0.49714,-1.3385,0.71944,-0.38848,0.064654,0.24037,0.10876,-0.27479,0.11962,0.85625,-0.84216 -0.025295,1.4006,-2.1694,0.97618,0.3615,0.46085,-1.248,1.4263,1.4227,0.85566,-0.42279,-0.80978,1.0645,-0.55748,-0.49666 3.0234,1.5897,1.2083,-0.61102,-1.3289,-1.7903,0.76275,0.61398,0.22655,-1.0885,-2.7406,0.049436,0.25868,0.55005,-1.0906 -1.1301,2.6411,-2.4593,0.63628,-1.8026,1.8473,-0.00023384,0.91162,-0.91557,-0.085152,-0.65368,0.44169,0.62198,-0.02004,0.31081 -1.7674,-0.31058,-1.3777,2.1624,-0.63854,-0.31142,1.4469,-1.3834,0.44617,0.75821,0.83987,-0.33258,0.17047,0.17553,-0.061763 -1.1678,-1.2936,-3.4192,1.3989,0.50741,-0.33393,0.16673,0.12017,-0.65182,-0.59902,-0.59246,0.34063,-0.3906,0.42822,-0.10897 -1.7699,-2.0091,-1.6585,2.0229,-0.33826,-1.2551,0.45905,-1.0465,0.33404,-0.29263,1.2752,0.090196,-0.21732,-0.44335,-1.0245 1.9458,-0.8321,3.01,-0.58039,0.051859,-2.8506,1.5893,0.6248,-3.2281,-0.13687,-0.83269,0.18558,0.31575,0.057551,-0.95882 -4.1067,-0.24187,-0.51542,-1.4465,1.2427,1.0325,0.20815,-0.36255,-1.5458,0.31616,1.311,-0.18805,-1.0359,-0.68948,-1.247 0.35206,-0.56492,4.1078,-0.0016458,0.25841,0.049211,-1.4384,1.6216,-0.884,-0.85595,1.2859,0.82944,-0.20529,-0.42864,-1.1525 3.9022,-3.0239,-2.1345,0.65142,-0.62417,1.945,0.6939,0.24662,-0.90519,-0.60437,-0.32865,-1.1124,0.62582,-0.46896,0.91573 -0.48977,1.6723,2.0776,1.0732,0.2816,-1.2377,-0.55453,1.422,-0.024461,-1.2573,1.4183,1.235,-0.25525,0.60777,-0.57779 4.6921,-2.2159,1.6053,1.4788,0.69586,0.8591,-2.1554,-0.41871,-1.6769,-0.32807,0.97397,0.43087,0.64957,-0.0029642,-0.35348 -2.3228,-1.3829,1.1426,-2.3167,-1.1481,-0.75289,-0.2527,-2.6482,-1.075,0.94422,0.79229,0.31767,-0.17739,0.46307,0.072268 0.68619,-0.34998,3.4631,1.1096,-1.3541,-1.2827,-0.671,0.34638,-1.1717,-0.99746,1.5358,1.096,-0.04361,-0.067118,0.046559 0.78463,3.8061,0.26813,-0.6502,-0.98843,-0.95047,-1.0049,0.091948,-1.5223,0.40278,-1.8148,-0.87608,0.81452,0.43204,-0.10689 -1.5288,0.50446,2.431,0.22841,-1.0862,-1.2,1.5246,-0.89476,-0.079832,0.74961,0.54787,0.090554,0.26388,0.94874,1.171 -0.37164,1.6651,-1.3835,1.4957,-0.040495,-0.48605,-0.57207,2.9476,0.25502,0.36234,-1.4245,-0.88275,-0.76313,0.47773,-0.29678 3.5878,-3.1701,-2.8843,0.6065,-0.81881,1.4103,1.2855,1.6756,0.81769,0.26881,0.66675,0.49319,-0.48353,-0.043256,0.34428 -3.2736,0.65903,1.2,-0.78279,-0.56828,0.5048,0.82918,-0.46317,-0.23361,-0.44947,2.3705,0.46867,-0.89261,-0.04302,-0.98479 -2.735,-0.55961,-2.5051,-0.59462,0.55286,0.44849,-0.75263,-1.2954,-0.78447,-0.75152,0.35111,1.4984,-0.34393,-0.12206,-0.59212 0.66794,-0.7388,1.7996,0.55311,-1.2486,1.6294,-1.1235,2.8115,0.66365,1.6568,0.88069,0.18473,1.4255,0.85415,-0.24216 -1.052,2.2879,-0.36035,2.185,1.6882,0.15491,0.10957,1.7373,-1.2031,0.85741,-0.24261,0.26143,-0.99305,0.055272,-0.34092 -2.4833,-2.0869,0.65172,-0.70994,-1.4835,1.4256,-1.406,0.56416,-0.35738,-0.59005,1.8082,-1.32,-0.12928,-0.50389,-1.0098 -2.7108,-1.6313,-2.4562,-0.53825,-0.61831,1.1384,-2.418,-1.0158,-1.3536,-0.81012,0.28261,1.617,-0.5455,-1.0109,-0.0078685 -1.3682,-1.7284,-2.222,-0.35349,-0.74521,1.768,-2.1948,0.99879,-0.85951,0.37147,-0.64524,0.27357,0.97806,0.41017,1.4805 4.0408,-2.6534,-3.2592,-0.1515,-0.5955,1.62,1.6116,1.6573,0.65157,0.4547,0.019053,0.54521,-0.30466,0.086372,-0.025694 2.4358,1.7331,-1.6108,0.68429,0.80053,-1.83,-0.192,-1.0719,0.443,1.3749,-0.61017,-2.0786,0.073323,0.31849,0.8196 4.1847,0.12022,0.36544,-2.3254,-0.48989,-3.2343,0.30625,-0.34221,-0.88127,-0.1429,1.1374,-0.0052467,1.1975,0.67887,0.024891 1.4837,1.3261,-2.7172,1.4699,-0.20463,0.8744,0.11407,-0.41427,0.69216,0.53266,-1.5328,-1.2283,1.138,-0.70367,-0.46498 -1.5568,-2.1799,-1.47,-0.7036,-0.86178,1.6682,-3.0853,-0.45044,-1.3165,0.35156,-0.49742,1.1209,0.20396,-0.81275,1.4511 2.9654,-0.75104,-0.4572,0.35751,0.40525,-1.3524,-1.871,-0.064216,-0.21578,0.51137,3.2776,-0.3533,-0.51501,0.37591,0.28286 2.6572,0.59626,-2.4539,-1.0637,-1.353,-1.2582,0.40683,0.51195,1.3787,0.9587,0.72499,-0.51037,0.73267,-0.52016,0.64756 0.26017,-0.81685,-0.29443,-0.22334,-2.9868,-1.254,2.2874,1.3601,0.55477,-1.2359,-0.26111,1.4931,-0.47716,-0.085869,-1.2528 3.0813,0.98044,-1.5313,0.0112,-0.74981,-0.32093,-0.20948,-1.5614,0.030471,1.8219,0.98186,-1.5458,0.32464,-0.45675,1.3078 -1.2677,-1.8561,-2.0515,2.0785,-0.98318,-0.77175,1.012,-1.4701,-0.62156,-0.43538,0.61743,-0.47283,0.247,-0.48061,-0.71961 3.0591,0.64158,1.0338,-0.3104,-1.2251,-1.7102,-0.25335,0.24109,-0.43937,0.12739,-1.1903,0.75573,1.2163,0.92389,-1.204 -1.0077,-1.9285,-3.0691,2.0816,0.069551,-1.3735,0.20801,-0.94498,-0.89084,-0.37191,-0.14688,0.62947,0.60219,-0.0052433,-0.42246 -0.66699,-1.5174,-3.2746,2.0295,-0.6597,-0.46683,-1.1223,0.3079,-0.28654,-0.51744,-0.31292,0.88409,-1.4893,-1.206,0.64829 2.5898,2.2888,-1.737,-1.4759,0.3054,-2.0427,0.43768,0.90103,1.1553,0.90675,-1.3789,-1.3766,-0.19736,0.048053,-0.80369 3.6697,-1.724,-0.26181,0.75459,-1.6473,0.5755,-1.8061,1.1302,0.24026,0.012328,-0.72335,-1.3181,0.41389,0.1362,0.1199 -0.48092,2.164,-0.32486,2.0181,2.3403,-0.61419,0.29836,0.25411,-2.3905,-0.037631,0.061877,0.16516,-0.31112,0.50081,0.47991 -0.55455,-1.9881,-3.0536,1.8018,-0.65745,-0.69612,-0.76736,-0.034379,-0.73986,-0.18318,0.0057055,1.1366,-0.29135,-0.69339,-0.19568 0.38605,0.97894,0.84835,0.19759,-3.6019,0.74906,-1.1929,-0.15502,-0.13174,-0.31734,-0.15653,0.092191,-1.0526,0.087599,1.2335 -1.3915,0.25001,-3.9644,0.14794,-1.1816,-0.94514,-0.11799,0.42485,-0.17752,0.059659,-0.96557,0.61821,0.2786,0.74572,-0.19014 -0.94311,-0.99861,-3.7049,1.8215,-1.0716,-0.55523,-0.17803,-0.71805,0.0097501,-0.29357,-0.34722,0.59102,-0.94649,-0.33017,-0.49298 -1.0707,-2.3383,-2.3306,1.938,-0.52996,0.18166,-0.74658,-1.19,-0.3487,-0.40558,0.73722,0.41698,0.33288,-1.0223,-0.36128 -0.87823,-1.9852,-2.7588,1.8249,-0.25626,-0.44762,-1.0254,-0.34317,0.18824,-0.099994,0.14685,1.2354,0.24304,-0.91843,-0.30773 -1.1316,-2.4823,-1.9399,1.4345,-0.83305,0.54528,-0.97215,1.1195,0.88601,0.83239,0.42088,-1.1592,-0.4115,0.0032876,-0.55727 -2.5648,-0.80018,-3.4103,-0.70912,0.087537,0.5129,-0.69796,-0.8906,-0.015252,-1.0052,-0.64336,0.93753,-0.56554,-0.37597,-0.84711 -1.2838,-2.0691,-2.0424,1.4281,-0.4642,1.7176,-1.1516,-0.66655,-0.61749,-0.32557,1.2155,-0.19317,-0.037414,-0.62789,-0.27358 -0.38061,1.4927,-0.46806,2.384,-0.54199,-2.0963,0.058965,1.1873,0.25138,-1.0656,-0.20538,0.41763,-0.28929,1.668,-0.62866 -1.9886,1.3254,-0.91668,0.15515,-1.5339,-0.22113,1.0119,0.81757,-0.40582,1.8217,-0.17618,-0.39645,0.75222,0.85415,0.95585 0.24357,2.2825,0.47642,0.80915,-2.2798,-0.85082,0.31195,0.1606,-0.25439,0.55821,-0.52472,-0.11916,0.66545,1.0281,1.3214 -0.91397,0.093979,-1.6293,2.0817,0.62228,-1.1417,2.8789,1.838,-1.22,0.54269,-0.86589,-1.2497,-0.10719,0.30256,0.0040812 0.34916,0.28777,-0.22584,1.8331,-1.5997,-0.25666,2.3103,-1.0655,0.051865,0.96534,-1.1349,-0.85523,-0.14165,0.29976,1.2974 -2.8209,0.4203,-2.3076,-0.742,-0.49063,-0.14602,0.30169,-0.94666,-1.1815,0.72899,0.53308,-0.05176,1.2882,0.52443,-0.32425 0.082921,2.4339,1.031,0.66783,-1.387,-0.3686,-0.58117,0.1658,-0.33124,1.3558,-0.97829,1.2204,0.86414,0.11747,0.011108 -2.9108,0.51353,-1.6015,-0.60029,-0.97371,-0.27453,0.98598,-0.57383,-0.94682,0.39997,1.0395,-0.24609,1.2715,0.32349,-0.53239 -3.1733,0.77213,-1.7961,-0.84477,-0.89734,-0.25294,0.70007,-0.6555,-0.99931,0.74567,0.47645,-0.51158,1.7641,0.40029,-0.27121 -1.6068,1.4587,1.3575,0.62712,-2.1374,-1.3558,0.51751,0.72827,-0.051582,-0.89292,1.2808,0.68408,0.20043,1.0585,0.52375 -0.89944,2.5861,0.0004318,0.028372,-2.3238,-0.37767,1.1422,0.02433,-0.83662,0.25372,-1.306,0.14732,1.1059,0.35315,1.3912 2.6595,2.3758,2.2161,-2.0574,-0.75471,-2.1782,-1.2649,-0.3743,-1.5075,-1.4399,-0.15535,-0.1888,0.32418,0.20647,0.3988 -2.3101,0.18217,-1.8007,-0.28856,-0.80897,-1.1324,0.5083,-0.47995,-0.44165,1.7697,0.10668,-0.36582,1.4791,1.2499,0.11241 2.1718,-0.38125,0.56192,1.5136,0.065723,0.31077,-2.6963,0.97835,0.5168,0.37754,2.287,-0.094084,0.61994,0.63842,-0.77311 -1.435,0.77688,-0.010133,0.15077,-2.6669,-0.53208,1.1473,-0.79209,0.060176,0.41767,0.40558,0.32761,1.4423,0.10861,0.72919 -0.45896,0.26063,0.34166,1.3936,-1.8903,0.48063,-1.8867,0.90382,0.12482,-1.5843,1.1941,1.3029,0.20746,-0.48522,-0.63918 -2.8625,0.46984,-1.8602,-0.30478,-1.0643,-0.78279,0.7946,-0.41323,-0.088494,0.932,0.74546,-0.012966,1.3444,0.83115,-0.35381 2.3452,-2.9296,-0.49712,0.36072,4.0843,-1.5706,1.0352,1.3873,0.73565,-0.93227,2.7379,1.3955,0.95053,1.2097,0.82845 -2.2805,1.5794,-1.1701,0.39315,-1.5535,-0.072486,1.0505,1.2794,-0.39676,0.34837,0.39486,0.55928,0.57081,1.0131,0.54119 -0.53434,-4.2681,-0.90091,1.4967,0.20341,-0.4775,-2.2088,1.04,-0.57972,0.72743,-0.23569,-0.39545,-0.24535,-0.75762,0.43003 0.68035,1.391,0.5163,2.3245,-2.0792,-1.0715,0.65186,-1.0035,-0.035806,-0.083843,-1.5245,0.77801,0.57605,-0.28509,0.32819 -1.0776,-3.0392,-2.2721,1.6907,-0.75579,-1.2857,-1.275,-1.1169,-0.51959,0.6069,-0.69604,0.90115,-0.048945,-1.4908,-0.37176 -0.71958,-2.6991,-2.1297,-0.31156,-1.603,0.20626,-2.1704,1.4013,-0.44752,0.47175,-0.54137,0.10483,-0.17387,0.19003,0.64259 0.37734,-4.9317,0.97555,1.3816,0.17268,2.1047,-0.77328,-0.7382,-1.5754,0.8271,-0.59502,-0.99201,1.0441,-1.3803,-0.39653 -0.62092,-2.8156,-0.89445,-0.31824,-1.931,-1.4132,-0.82576,-1.8162,0.20969,0.73325,-1.4212,0.6704,-0.33318,-1.4512,-0.46433 0.25975,3.0719,-0.84116,0.16332,-0.34866,-0.14679,-1.6758,-0.42621,-0.67653,-0.32873,0.56355,-0.33298,1.9697,0.27031,-0.63494 -1.2425,-4.5337,-0.67934,1.5988,0.79619,0.44302,-2.1878,-0.16417,-0.57836,0.050788,-0.045049,-1.3877,-0.55943,-1.0089,0.57423 -1.896,-2.9961,-1.9142,1.1752,-1.2418,-0.78453,-0.92883,-0.5664,0.35865,-0.13405,-0.00014253,-1.0526,-1.6677,-0.75792,-0.75703 -0.36084,-2.3364,0.97599,0.43314,0.69701,3.052,-0.43872,-1.498,-0.66647,0.76897,0.33525,-1.0134,0.85565,-1.0924,0.10193 0.075882,1.1395,-0.02401,2.5505,-1.6135,-0.68944,0.75249,-1.3687,-0.38204,-0.14904,-0.81166,0.61066,-0.33037,0.15858,1.3353 -1.1993,-3.7638,-0.56584,0.54129,-0.6953,0.48112,-2.4811,0.27848,0.17586,1.871,-0.24722,0.2631,0.25362,-0.44017,-0.30006 -0.79559,-3.3199,-1.9746,0.82602,-0.24075,-1.761,-1.3965,1.068,-0.81701,-0.21364,-0.24477,-0.036986,-1.3077,-1.1824,-0.24738 -0.19239,-3.1923,0.18401,2.0052,-0.29132,1.3952,0.12973,2.6368,0.0062969,-0.65026,0.7664,-2.1125,-1.0011,-0.74242,-0.31365 4.1147,-0.87153,-0.86341,-2.3148,-0.89722,-3.0067,1.0241,-0.2337,1.4431,-0.99475,1.1782,-0.19045,0.38599,0.55556,0.57861 -0.4074,-2.8965,-1.7391,1.3977,-0.56147,0.83858,-1.2662,1.4334,0.36404,1.1427,-0.22165,-1.2886,0.3718,0.43556,0.4475 0.16931,-0.3773,0.39652,3.7112,-0.036968,0.23565,-0.67296,-0.59579,-0.58494,-1.8823,1.3347,0.76968,-0.31015,-0.20317,0.27757 4.9519,-2.2467,-1.8197,-2.3988,-1.5204,0.28219,0.328,3.0336,0.14972,1.5593,-0.33924,0.12508,0.80029,0.93557,-0.94247 0.37742,1.0099,-1.1921,3.0891,1.7504,-0.55753,0.25586,0.223,-1.4253,-0.32742,0.5864,-0.21464,0.69473,1.1207,-0.71312 3.1635,-1.1508,-0.18231,-2.1967,-2.3172,1.5546,-1.0228,3.0692,-0.31774,-1.4841,-0.55684,-0.31376,0.23492,0.75678,-0.45026 3.2484,-0.050939,0.50712,1.4822,-1.7645,-0.4658,-1.1347,-1.8491,0.36524,-1.2165,-1.0184,-0.78321,-0.96974,-0.25069,0.53135 1.9315,-1.6449,2.2343,-2.474,-3.2101,0.93068,0.61923,2.7345,-0.98477,-0.8821,-0.94602,-0.97933,-1.3505,0.63514,-0.41671 3.0425,-0.26541,1.6837,-1.8388,-2.8076,-1.0138,-0.91412,0.97766,-0.28772,-3.032,-0.71231,-0.25245,-0.49121,0.098329,-0.54265 2.415,1.1718,-0.4545,0.29884,-1.8413,-1.6176,-0.34343,-0.40974,1.4683,-0.78745,-1.3081,-0.56036,0.24617,0.81771,-0.34793 2.6314,-0.67109,0.29827,-1.6073,-2.3668,0.6909,-1.202,2.8168,-0.68096,-3.1471,0.5251,0.40077,0.096631,0.78544,-0.22191 -1.054,-2.0594,2.3613,-2.8555,-3.1558,0.2812,-0.2516,-0.65624,-1.0953,0.31792,-0.31701,-1.4843,-0.97158,-0.79768,0.011913 1.607,-0.22823,-3.2315,-1.7676,-2.1174,0.46312,1.0018,1.5453,0.69093,-0.33038,1.0867,1.2055,0.88114,-0.36693,0.82434 5.1807,-1.1568,0.62961,-0.36958,-1.6062,0.5117,-0.0024578,2.471,-0.93135,1.7226,-1.1536,-0.34661,-0.21519,1.7439,-0.40352 1.0887,1.945,0.31225,-0.34696,0.27333,-2.6951,-0.88937,0.027185,-0.34333,-0.23519,-1.0516,-1.1339,0.072216,1.1225,0.68517 0.56812,3.7277,-1.6273,-1.6367,0.64011,0.030514,-0.46967,1.251,-1.4755,-0.37611,0.18347,-1.1076,-0.35427,-0.39017,-0.6363 5.8826,-2.4135,-0.22605,-0.41852,-0.87501,0.59871,-0.51261,2.459,0.32205,-0.049815,-1.0943,-0.75001,-1.1907,0.94058,-0.93131 1.9286,-1.5705,1.8929,1.4466,-1.2613,3.378,-0.51023,-0.48148,-1.5098,-0.037144,-0.13919,-0.85012,0.35607,-0.85766,0.96202 2.3506,-1.908,1.8635,-0.59251,-2.8919,0.94643,0.96872,2.0577,0.34117,-0.3637,-1.5867,-0.45833,-2.3491,0.16347,-1.1231 2.0003,0.86218,2.6254,-1.3369,-2.2048,0.26135,-1.9071,0.72315,-2.007,-1.3435,0.94567,0.011797,0.41532,-0.089152,0.70212 0.055157,-2.5324,1.2724,-2.2854,-3.4074,1.0297,0.8071,0.016044,0.15349,0.60235,-1.2585,-1.6268,-1.7723,-0.73972,-0.75435 0.46849,-0.77121,3.4988,-1.6128,-2.0353,2.3325,-0.7843,1.8666,-1.268,0.94803,0.58844,-0.33064,0.94732,0.21591,-0.21443 1.8133,-2.4027,2.9806,-1.7309,-2.9763,-0.43948,0.95345,2.1484,-0.37267,-0.7966,-1.2308,-0.70752,-2.3688,0.091727,-0.74373 0.72601,-2.4361,2.1578,-1.4475,-3.3183,-1.0907,1.274,0.81783,0.11347,-1.2758,-0.49945,-0.8438,-2.0452,0.11385,-0.31397 0.68539,1.1693,-0.23896,1.7433,-2.1557,0.35012,-0.55871,-1.7264,-0.2976,0.014034,-0.075949,0.079608,-1.7131,-0.33018,0.86184 -0.3257,-1.5455,2.1748,-0.33051,-2.4015,-0.92515,0.28164,-1.9347,-0.23345,1.1383,0.90002,-0.59331,-0.91705,-0.16135,-0.0038559 0.51184,-3.0317,0.778,0.16267,-1.5765,2.8524,-0.4916,-1.2119,-1.4485,0.69798,-0.65163,-2.5061,0.66367,-0.36007,1.0397 -1.677,1.5656,0.18597,0.6715,0.25707,-0.40532,0.40187,3.1564,-0.088554,0.3604,-0.97751,-0.10859,0.86038,0.20499,0.17566 -1.3084,-3.2154,-0.44334,1.8052,0.76328,2.2136,-0.42408,0.52234,-0.37094,0.27299,1.1873,-1.6822,-0.27089,-0.064262,0.069179 0.19351,-2.0813,-0.7043,1.6072,-0.93078,2.6751,-1.5426,0.76854,-1.2332,0.30907,0.57488,-1.0292,1.7915,0.18636,0.91585 -0.83356,1.6903,-0.019075,0.51968,0.35184,-0.73169,-0.56126,4.1389,-0.50757,-0.0051872,-1.4894,-0.31715,-0.099151,0.12186,-0.42705 -1.8405,-2.2661,-2.4883,0.69392,-0.68902,0.064252,-1.3942,0.27418,0.76957,-0.31275,-0.34005,-0.074134,-1.8444,-0.848,-0.54749 -0.84572,-3.5317,-1.6863,1.304,1.76,2.3071,-1.8076,0.59045,-0.57649,-0.015412,-0.84167,-0.33576,0.46484,0.13739,1.5692 -1.1628,-2.2448,-2.8883,0.86902,-0.87191,-0.10338,-2.2227,1.198,0.75979,0.27864,-0.74975,0.26837,-2.0526,-0.43651,0.86283 4.4551,-1.7575,0.44629,0.20966,0.032022,-0.34611,-0.17755,-1.3736,0.38872,-0.87046,0.58118,0.017108,0.97786,-0.22178,-1.0266 -2.5538,-2.2782,-1.7572,0.86289,-0.20051,0.39626,-1.4836,-0.63076,0.78565,0.35233,0.71662,-0.32474,-1.6941,-0.41628,-0.93957 -1.5973,-3.9205,-0.73466,1.0587,0.7287,-1.6756,-2.2639,0.0482,-0.60802,-0.13946,0.090689,-0.13558,-1.5406,-1.2845,0.46253 2.6862,-0.34574,0.71532,0.32152,0.54164,-1.8189,-1.7832,-0.52661,-0.67483,-0.068672,3.3073,-0.074879,-0.34177,0.57215,-0.078216 -1.1183,-2.531,0.37601,2.0901,0.42806,1.696,-0.55393,0.011764,-0.96237,0.15581,1.6578,-0.57771,-1.1875,-0.043651,0.35672 3.5016,-0.077751,-1.5528,-0.94396,-1.0339,-0.39148,-0.19529,-0.52147,0.91407,-1.5056,-0.042434,-0.81529,0.60894,-1.6687,-0.8527 -1.61,-2.1946,-1.2642,-0.24887,-0.19783,-0.16248,-3.5147,1.1248,0.02229,0.37729,0.21545,1.3623,-0.83273,-0.8776,1.7823 -0.90948,2.541,-0.40623,2.0505,2.8903,0.85609,-0.38397,1.3709,-1.689,0.52872,-0.0096699,0.067555,-1.3398,0.43683,-0.62508 -0.9304,-4.6628,0.26998,0.70034,-0.279,0.11325,-1.696,-1.1191,-0.63561,1.2148,-1.1648,-0.28551,0.18854,-1.6059,-0.64161 -1.5213,-2.8183,-2.3187,0.67867,-0.63463,-0.91868,-2.9038,1.0203,-0.31788,-0.11498,-0.57906,0.26728,-2.148,-0.86997,1.6124 0.60466,-3.9734,-0.42843,0.44245,-0.67697,0.078991,-2.5352,-1.1217,-0.33691,1.3329,-2.1263,0.85186,-0.43812,-1.2904,1.3561 -2.5137,-3.328,1.0188,-1.3349,-0.22585,0.47431,-2.0186,0.41631,-0.049892,1.275,0.57795,-0.085933,-0.30365,-0.31933,-0.46502 0.88364,0.08982,-0.08168,2.3256,-0.30191,-0.58111,0.57044,0.86157,-0.37202,1.9727,-0.398,1.3639,0.76673,-0.24994,-1.5275 3.6251,0.98006,-0.93098,1.3773,1.2165,-1.4442,1.1729,-0.48108,0.018545,0.076487,-1.5249,-1.4379,0.70496,0.23005,-0.52117 -1.8637,-1.1379,-1.2682,1.8707,0.067431,-0.28594,0.72805,0.37666,0.72158,-0.20682,0.23616,-0.45637,-1.6836,-0.79828,-0.56718 2.0199,0.00028387,-0.9951,-0.48262,-2.8417,1.5389,-1.1812,0.63461,0.25136,-1.5981,-0.6299,-0.046013,0.36658,0.33329,-0.011023 -0.94343,-4.0987,0.90622,0.672,-0.070082,-1.1247,-0.90907,-1.5602,0.24222,0.15702,0.1546,-0.22425,0.52059,-0.24881,-0.4058 -0.12521,-0.69344,-2.0428,2.0343,-1.9508,0.61539,0.99978,-1.8917,0.21944,-0.21886,-0.05078,-0.22197,-0.36121,-1.006,0.92334 0.1002,-1.7199,1.1295,2.4541,-0.74899,2.5494,-0.36331,0.35493,0.18632,1.3744,0.7446,-0.72902,0.26072,-0.13356,0.58204 -1.577,-1.3403,-2.2718,0.35745,-0.74456,-1.9428,-1.7739,-0.24398,-0.80899,-1.1289,0.77542,1.9862,-0.41234,-0.065125,1.127 -1.8766,1.7969,0.59816,0.041808,-2.6447,-0.45456,1.3243,-0.71501,-1.4123,0.75652,0.63421,0.027405,-0.76036,0.0060131,0.46822 4.1424,-0.44164,2.4385,-1.8591,-0.83377,-2.314,-1.2769,0.53157,-1.3967,-1.1708,0.73157,0.0027517,-0.39334,0.52081,0.10762 -0.23765,1.3755,-1.4955,1.4369,2.0971,1.4104,-0.64337,2.1264,-1.6013,0.21099,0.39466,-0.19275,-1.622,0.36394,-1.0343 4.8757,-1.5619,-1.4703,-0.84546,-1.4961,1.1956,-0.50849,1.378,0.20566,1.6804,-0.93425,-0.84063,0.044598,0.69969,-0.72403 2.4947,-3.1891,3.8784,0.71765,0.98864,-0.59586,-1.1613,2.4592,-2.4719,-1.3127,0.96069,-0.016596,0.071844,-0.31497,-0.81052 1.0506,-0.23495,3.1799,-1.4962,-0.82597,-3.0409,1.0564,-0.30985,-2.3868,-0.94485,-0.26903,-0.73297,-0.45032,0.61871,0.12422 3.9292,0.92173,0.089689,-1.8306,-0.46387,-2.7145,0.034471,-0.31273,-0.79003,0.33713,0.68987,-0.97681,0.67925,0.17118,0.10799 1.7921,0.09185,2.6884,-2.4966,-2.1282,-1.2578,0.99791,2.1142,-1.7026,-1.9779,-0.65624,-1.1082,-1.6054,-0.14646,-0.25312 4.3268,-3.0153,1.6117,0.2964,0.14385,-0.87415,-2.2752,1.1852,-1.5677,0.15143,0.88703,-0.47525,0.98293,0.055443,-0.48087 2.8484,0.54293,2.1611,0.59549,0.24946,-3.4323,-0.13246,-0.80888,-0.18121,-0.77035,-0.46893,-0.5992,0.67627,1.2739,0.33051 -0.68198,2.5963,-2.306,-0.24382,0.94733,0.0036079,-1.6789,2.25,0.57821,0.36176,0.74323,-1.0152,0.093072,-0.16914,-1.1445 4.0682,-2.701,1.5778,0.85353,-0.36053,-1.8281,1.4105,0.14617,-0.5863,-2.1205,-1.2345,0.071288,-0.26368,0.040245,-1.2953 2.8995,-0.52475,0.94686,1.925,-0.8969,-0.62716,-0.54918,-2.4734,-1.0744,-1.3739,-1.0249,-1.271,-1.1424,-0.58745,0.82413 -2.2834,-1.0866,1.7067,0.9367,-1.0727,-2.6952,1.3726,-1.3006,-0.25448,-0.10306,0.71638,-0.57205,0.086988,0.91954,0.028821 4.5938,-2.2108,0.9377,0.77995,0.19336,1.7034,-1.4031,-0.70562,-2.0224,0.035014,0.16157,-0.8867,0.6144,0.17372,0.64139 0.065406,-1.5125,4.6829,-1.2919,-0.81799,-1.6095,0.41805,-0.18642,-1.6585,-0.89894,0.60971,0.47328,0.085257,-0.16918,-1.8117 -0.80776,-1.7178,1.8816,-0.68222,0.78955,-2.7781,1.3945,-1.7517,-2.6817,0.98222,0.18066,0.033306,0.42131,-0.17469,-1.0677 -2.263,-0.14445,-3.238,0.92905,-0.038995,0.45933,0.75163,-0.45198,0.19725,0.041199,0.34674,0.028276,-0.83532,0.0091207,-1.076 0.83378,-2.1878,4.2643,1.3924,-0.51418,-0.93887,-1.0509,0.80345,-1.041,-0.47388,1.2811,0.4587,-0.23987,-0.64608,-1.0518 -0.86024,-0.56016,0.94162,0.58914,1.54,-2.2567,2.9284,2.6656,-0.25752,0.96968,-1.123,0.40696,1.5365,-0.011915,-0.33188 0.78673,0.62607,-0.81294,2.7657,1.1389,0.62336,-2.1651,-0.0367,0.41929,-0.58248,1.8553,-0.76194,-0.91044,0.27843,-0.98559 2.6164,1.337,-1.1917,-1.4025,-1.0776,-1.8393,-0.53418,-0.31361,1.7564,-0.75487,-0.32248,-1.0775,0.91553,0.14904,-0.55263 3.1635,1.4625,-0.70495,-1.2725,-1.0292,-2.195,0.18323,0.8487,0.41915,0.48381,-1.4145,-1.1069,0.49891,0.26653,-0.83606 -1.8301,0.38885,2.9573,0.041974,-1.1566,-2.5872,1.0399,-0.49409,-1.0305,-0.28561,0.49037,0.094985,0.40815,0.66084,0.19895 -1.0559,-2.161,2.1036,-0.44369,-2.4124,-2.0907,0.41674,-1.2671,-0.83628,0.50021,0.0026181,0.038673,0.18491,-1.3124,-0.80967 -2.9193,-2.8387,0.035906,0.021123,-0.80231,-2.4525,-0.75223,-1.1753,-0.35449,0.40603,0.88388,0.3479,-0.53105,-0.73707,-1.0621 4.1608,-2.4457,0.12915,1.6836,1.3537,0.50006,-1.4879,1.107,-2.8691,2.2707,1.2645,-0.014653,1.5166,1.3924,0.087401 2.5548,3.0733,-1.0737,-1.715,-0.85896,-1.5361,-1.3324,0.27383,0.36884,-0.1901,-0.43993,-2.0809,0.23551,-0.43426,0.175 -2.3179,-0.093888,-0.10335,1.7898,1.1454,-1.0991,1.8134,0.92441,-1.1747,0.3726,0.86858,-0.095359,-0.80577,1.1276,0.045891 2.4283,-2.9167,3.0645,0.25177,-2.0651,0.29161,0.84977,1.5153,-0.98557,0.70088,-1.4992,-0.83471,-0.75218,-1.0184,-0.40132 0.70948,-1.9532,0.79499,3.3206,-0.93197,1.6621,-0.22777,0.27201,-0.85058,0.18793,1.2386,-0.058915,-0.60571,-0.3708,0.90568 -1.4124,0.71017,1.4646,-0.61928,-2.7673,1.0685,-0.49059,0.83122,-0.59913,-0.2519,1.8619,-0.25384,0.070974,-0.54681,0.95479 0.44579,-1.5203,2.0317,-2.6466,-2.7197,1.0985,0.962,1.3828,-1.2031,0.39582,-0.88975,-1.9275,0.76054,-0.85838,-0.55156 5.3585,-1.8316,-0.91564,-0.089412,-0.20493,-1.4542,0.47454,-1.5988,0.63905,-1.0923,0.59875,-1.1618,-0.62595,-0.29493,0.43939 -0.35244,-2.0993,3.5174,-1.1079,-0.74028,1.4177,-0.82708,1.2419,-0.53601,2.6747,0.12244,-0.87485,0.12769,0.74742,-1.1856 -2.4146,-1.2766,2.2048,-1.2944,-0.91034,1.3545,-1.0669,1.0899,-0.020449,1.554,1.1707,-0.74724,0.16539,0.062946,-0.34092 -0.61558,-3.0391,3.3476,-1.4817,-0.95725,0.44364,-0.5276,0.017293,-2.1992,2.2353,0.050217,-0.4914,-0.50179,-0.3476,-0.68955 0.61509,3.4148,0.20055,-0.51122,-1.0658,-1.1649,-0.34669,-0.16498,-0.49101,0.41675,-2.2028,-0.74539,1.3432,0.57841,-0.00074542 0.33666,-3.0049,2.6222,-3.011,-2.6096,0.40857,-0.31428,-0.014591,-1.9413,1.6602,-0.70721,-1.3923,-1.9831,0.18461,-0.32012 -1.3159,0.74885,1.2426,1.4745,-1.1621,-0.47937,0.66213,-0.39099,0.15265,0.61508,1.4084,1.3633,-0.019973,-1.3167,0.27012 -1.4564,-1.5044,1.0147,-1.056,-1.9568,-2.0897,0.9928,-2.1184,-1.1098,0.4671,-0.38553,-0.62052,-0.98381,0.82114,0.61594 1.2478,0.96184,-0.90836,-0.54482,-1.9419,0.84065,-1.9707,0.2835,-0.19063,-0.69295,0.90113,-1.2337,-0.20548,1.0325,0.37025 -1.6854,-2.8529,-0.8966,1.2534,2.1271,-0.8066,-0.63972,-0.97315,0.69715,-1.4252,-0.27697,-0.92252,-0.68129,0.91054,1.0026 -4.3704,-0.57122,1.1256,-1.7,0.78789,-0.82786,0.072453,0.62751,-0.40302,-1.4224,1.0624,-0.90471,-1.5622,-0.39902,-1.0652 -1.1524,-3.4606,-0.36485,-0.69343,1.3666,-0.026895,-3.2267,1.6363,-0.58684,1.2808,-1.0673,1.3959,-0.38934,-0.50067,1.0892 2.2995,-0.2117,-1.8757,0.12732,0.38163,-0.3304,1.2586,2.3627,0.75537,0.76635,-1.5804,-0.99887,-0.40864,-0.02884,-0.45023 1.8796,0.59353,0.14401,1.8229,-1.4602,-1.7639,-1.0338,-0.90809,1.3615,-0.73518,-0.57929,-0.04892,0.18636,0.56461,0.407 -1.6531,-1.3891,3.0139,-0.97652,-1.1897,1.631,-1.0353,1.0657,0.43313,2.0597,1.021,-0.8855,0.33548,0.46769,-0.52438 -3.7783,-1.4578,-2.22,-1.3973,0.95229,1.079,-1.697,-0.16172,-1.4565,-0.94738,-0.088458,-0.031029,-1.2217,-1.0247,-0.45319 1.0674,2.3628,-1.9631,-0.01933,1.0515,-0.99692,-1.127,0.21867,-1.3352,0.42616,0.42162,-1.4635,-0.59576,0.3857,-0.11142 2.2061,1.5061,0.81854,-0.94516,-1.7393,-1.319,-2.3576,-1.0601,0.037533,-1.0685,1.0429,-0.0042984,0.95266,0.44862,0.33496 -0.64674,2.7074,-0.084959,-0.082507,-2.2168,-0.055451,1.75,-0.085189,-1.7791,-2.2118,-0.82545,-0.80723,-0.44511,-0.37493,1.2856 -0.53787,-0.70892,-0.93573,0.2114,-0.47095,-1.5225,1.3012,-2.7609,-0.99199,2.2017,-1.0538,-0.56455,0.43681,0.50788,-0.12109 -0.90174,0.65976,1.9383,1.3598,0.85212,-2.4226,1.3895,1.0611,-0.76349,0.30709,1.3334,1.0651,0.51165,0.76239,-0.33576 -2.5117,-1.1611,-0.93803,-0.24681,-0.97988,-1.587,0.13018,-1.7087,-0.63272,0.8452,1.3935,0.52935,0.25209,1.2156,-0.89145 1.9819,0.70848,-1.7201,1.4073,-1.4865,-0.66252,0.16476,-0.1546,1.5203,-1.0089,-0.87158,-0.46126,-0.047892,0.86728,-0.48776 2.4941,0.64295,-2.3765,-0.85355,-0.32125,-1.407,1.3048,0.36435,1.9557,0.64432,-0.34925,0.022895,1.1138,-0.031928,-0.36308 2.0538,0.79144,0.52239,2.2579,-0.24058,-1.7161,-0.75193,-1.7713,0.67524,-0.11005,-0.71893,-0.33,0.98749,0.46761,0.022871 0.81972,1.6796,-0.77686,1.7369,0.72808,-1.1407,-1.7604,0.51026,-0.31195,0.30636,2.4866,-0.12832,-0.92213,0.54845,-1.5656 3.8039,-1.0848,0.13999,-0.54752,0.83841,-3.0053,0.14221,-1.6572,-0.87059,-0.3786,1.443,-0.71256,-0.28482,1.2427,1.8673 -0.93826,-1.1525,1.0957,2.829,-0.6597,-1.2192,0.96598,-0.21413,0.062518,-0.13206,2.0274,0.73916,-0.62502,-0.27658,-0.29684 -1.6917,-1.2264,-0.88914,-0.42124,-1.5967,-0.85248,-0.77716,-2.1103,-0.95949,0.58041,1.4145,0.63784,-0.37558,0.5163,-0.83133 1.2636,3.0063,-1.9115,-1.5062,-1.0215,-1.3025,-0.76296,0.30386,0.17126,-0.60965,-0.13639,-1.4909,0.91509,0.3107,-0.34308 -1.9173,0.088089,-0.82751,1.4335,-0.20314,-1.313,1.8255,1.2074,-0.17912,2.1906,0.35558,-0.39714,0.32415,1.292,0.042068 4.5694,-0.66485,1.2468,1.4538,0.41093,-0.17141,-0.78117,-1.9262,-0.7489,-0.98284,0.38545,-0.32174,-0.094694,0.95707,1.0032 -2.4479,-0.33858,-1.8928,-0.20481,-0.5124,-1.5381,-0.40235,-1.5636,-0.69055,1.4558,0.66964,0.83743,0.060992,1.5963,-0.77743 -1.4827,1.8118,-1.3173,1.755,-0.76076,0.61138,0.1828,1.2241,-0.28124,0.84832,0.1991,0.80508,-1.3562,0.15648,-0.28613 4.2402,-0.63595,-0.29411,-0.16589,1.6047,-0.49716,2.0035,-2.057,-0.77766,1.2548,1.3661,0.31234,0.31411,-0.62108,1.4576 3.826,-2.834,2.6399,-0.44238,1.2192,0.33216,-0.98593,-0.91317,-3.46,-0.45294,0.77648,-0.58944,-0.8564,-0.067391,-0.39294 3.2868,0.73041,0.50141,1.6889,0.73298,-1.665,0.55401,-2.3489,-0.72758,-0.88224,-0.61643,-1.2184,1.5776,0.21118,0.10313 -0.76723,1.2071,0.78103,2.483,0.68968,-0.0092876,2.2921,-1.453,-1.6806,0.90757,-0.87729,-0.29458,0.93864,0.46663,1.3113 2.9951,-1.0671,-1.906,-1.3119,-1.2603,-1.7468,1.1385,0.25359,1.9294,-1.5507,1.361,0.61454,0.39395,0.71067,-0.37628 -3.7495,-0.0065141,-2.3551,-0.56973,0.15857,-0.30355,1.0475,-1.0451,-0.39398,0.067634,0.089572,0.23259,0.2998,0.69236,-1.6832 -0.48275,0.6185,1.2974,2.5436,-0.56199,-0.71387,0.97932,-1.1888,-1.4603,-0.17204,1.5787,0.74774,-0.58804,1.5211,0.62149 2.1124,-0.42815,-2.5659,-1.7564,-1.3602,-1.1574,1.5027,0.67794,1.9481,-1.0545,1.2628,1.3103,1.1424,0.71204,0.44834 -0.19989,-0.68533,0.81156,2.5423,0.15386,0.78473,-0.43317,-0.23355,-0.57728,-2.6657,2.1425,0.36902,-0.25159,-0.43634,0.40562 -1.3747,-1.5653,-0.052366,1.8196,0.99434,-0.66184,1.8384,-1.273,-0.08292,0.67033,2.2829,0.43649,-0.12174,-0.23289,-0.78212 -2.976,0.36062,0.29012,0.73064,-0.15652,-1.0471,1.6986,-0.29955,-0.13093,0.38364,1.606,0.51428,-1.1567,0.63333,-1.161 -2.0555,-1.6363,-0.75642,0.80757,0.571,-0.48834,-0.53628,-1.5393,-1.8781,-1.2467,1.8928,0.89807,-1.1552,0.18157,-1.1091 2.3881,-1.4296,-1.4499,1.1529,-1.1986,1.8789,-1.1558,-0.79717,-1.0626,-0.52873,-0.81548,-1.8088,0.59429,0.12451,1.3719 -2.1013,-2.0837,-1.649,1.393,-0.49487,-1.8647,0.46142,0.012553,0.026071,0.37339,0.94939,-0.28825,-0.77712,-0.19102,-1.3107 3.8814,-2.3317,-1.1468,-1.8168,-0.25918,-2.9981,2.24,1.4611,-0.0044887,-1.3809,1.5261,1.4674,0.13214,0.028865,0.12329 0.21714,2.9168,0.32418,0.2131,-1.8439,-1.1233,-0.61322,-0.50668,-1.0716,-0.16907,-0.95787,0.062079,0.89626,1.5208,0.3945 -0.60618,2.0733,-0.68192,1.5957,-0.50607,0.53931,0.65525,0.84264,-2.1367,1.197,-0.019648,0.30217,-0.28944,1.3123,0.63141 -1.4885,1.1245,-2.8611,1.5782,-1.0291,0.86717,1.2676,0.52883,-0.23775,1.0414,-1.0466,-0.09978,0.2881,0.34891,0.74897 -1.5063,0.091136,0.23023,2.6468,-0.93339,-0.13369,1.6566,-0.32318,0.23114,0.2295,1.1068,0.90697,-0.17056,0.033718,-0.15664 2.2601,2.2555,1.5256,-1.0246,-0.14037,-3.1433,-0.74206,-0.60878,-1.4541,-0.57306,0.90371,-1.0794,-0.11753,0.80627,0.68502 4.1064,-1.3525,0.73202,-0.020397,-1.9193,-1.829,-0.55435,0.41289,0.74072,-1.4802,-0.87148,-0.022569,-0.56505,-0.43072,-1.8436 5.029,-2.5369,2.4486,1.2605,0.51621,1.4771,-0.81707,-0.8065,-2.3827,-1.0541,0.2245,0.39824,-0.077215,-0.1917,-0.68628 2.3013,-2.7055,0.97329,0.035262,-1.5029,2.478,0.94533,-0.92324,-3.2811,-1.2306,-0.58295,0.14841,-0.75154,-1.1402,-0.83116 0.15509,-0.50048,1.8773,1.2869,-2.1549,-2.4064,1.3982,-0.14316,-0.10673,0.039251,-0.69281,0.74952,0.95151,-0.38653,-0.23966 -3.9168,-1.2472,0.63682,-1.1688,-1.2859,-1.727,0.35044,-0.18287,-0.70295,-0.94706,1.6479,-0.44505,-0.036194,-0.237,-0.27389 -1.7116,-0.96828,-1.7891,0.41621,1.8222,-1.0916,1.4183,2.4724,-0.83659,1.093,-0.76017,-1.5843,-0.75463,1.1769,-0.056596 2.6052,-1.3337,2.7794,1.3431,-1.8093,0.029891,-1.2149,0.033153,-0.93735,0.76815,0.7517,0.039024,-0.46843,-0.47404,0.20628 2.7807,0.16942,3.3029,-1.2756,-1.6871,0.18872,-2.3087,1.3819,-1.4549,-0.28116,0.23326,0.89401,-0.28742,-0.10307,-0.65034 1.8979,0.65398,2.3864,1.4838,-0.53468,-2.018,2.1535,0.21495,-0.97122,0.75062,-2.0669,0.79165,0.64683,0.78981,0.48765 0.014331,-3.213,3.3522,-0.35464,-0.76143,-0.95168,0.6433,-1.1497,-0.98753,1.0403,0.62477,0.21514,0.058366,-1.2283,-1.6563 3.896,-1.3371,-0.61561,-1.9925,-1.1062,2.0019,-0.97164,1.983,-0.034943,-0.033283,0.15136,0.25135,0.94444,0.20691,-1.1403 3.5647,-2.2445,-1.9457,-1.7121,-0.47105,-2.0455,2.7667,1.5031,2.1085,-0.44262,1.1257,2.3077,-0.093415,1.3789,0.68478 0.48553,-3.442,2.8445,-0.038079,-0.70782,0.33092,1.3992,-0.18514,0.36251,0.9867,-0.55455,-0.67619,-1.536,-1.8127,-0.53459 2.3963,0.51252,-0.26575,-1.1165,-2.7059,2.7254,-0.7487,2.5521,-0.82794,-0.53716,-0.30042,-0.070506,-0.62181,1.3108,0.57185 -1.8156,-0.85393,-0.14883,0.17604,2.746,0.10316,2.6642,0.24694,-1.135,1.6666,-1.3329,-0.50695,1.5835,-0.60302,-1.1707 -2.0039,-2.82,-1.2539,-0.047591,-0.4505,-2.4774,-0.085819,0.11804,-0.33053,-0.086966,0.46305,0.30124,0.27665,0.42183,-1.4968 -1.1782,0.53121,1.2569,0.9184,-1.4283,-1.9329,1.0921,0.72558,-0.41361,-0.8003,1.192,0.34484,1.8958,-0.32,0.052975 3.2808,1.2991,-1.3694,-1.7038,0.80878,-2.4227,1.0034,0.33616,0.4109,0.25848,-0.074346,-1.5579,1.0282,-0.18995,0.72515 2.4004,-1.2026,-1.7085,1.0547,-1.546,2.6109,-0.29058,0.42349,0.19861,-0.79347,-1.5118,-0.80594,-0.29214,-0.062903,-0.038232 1.5689,2.9729,-1.1191,-1.7632,0.91441,-1.1072,-0.46509,0.40009,-1.4182,1.3701,0.9952,-1.6139,0.49926,0.44585,1.0869 2.2622,-1.686,-1.2898,1.967,0.14101,0.87517,-1.414,1.5788,-0.21922,2.1373,1.3508,0.51249,1.5258,0.88837,-1.0015 -0.20856,3.1801,0.24267,1.1549,-0.37326,-1.2565,-0.67791,1.0022,-0.48307,1.1095,-1.7852,-0.31719,0.94047,0.58443,0.27034 -0.44561,2.3383,-1.114,2.6888,0.031757,-0.41417,0.60943,1.0658,-0.36456,0.62931,-2.0351,-0.72739,-0.49138,0.48549,0.76271 1.824,-1.1366,-0.97712,1.5756,2.6668,0.84647,-1.3214,1.3658,-0.14945,-1.3606,2.7899,-1.2246,-1.2736,0.039597,-0.62596 2.0348,-0.55775,-0.012166,3.0345,1.3785,0.36529,-0.72241,0.01776,-0.76394,-0.5045,2.0616,0.34473,0.76762,-0.033961,-0.72827 1.2546,2.4562,-2.3009,-1.5649,-0.62502,-1.4805,0.26815,0.42369,1.1233,-0.028302,-0.79254,-1.0843,1.0193,0.28139,-0.11755 1.6829,2.9773,-0.59345,-0.4863,-0.48063,-1.5196,-0.51173,-0.065619,-0.049224,-0.55838,-1.6579,-1.4013,1.2905,0.26461,-0.45533 1.7619,-0.53827,1.7385,0.27315,-1.0547,1.5499,-2.5616,2.919,-0.68113,0.73941,0.88596,0.85412,1.106,1.4107,-0.77747 0.97158,1.9791,-0.5283,1.7376,1.0098,-0.50414,0.85715,-0.27222,-0.95209,0.48562,-3.5064,-1.4159,1.1092,-0.37313,0.7187 2.632,2.0287,-1.0759,1.0501,0.85813,-0.89759,0.10064,-0.49606,0.81738,0.60178,-2.0646,-2.1221,0.59598,-0.045362,-0.0098888 1.2723,1.626,0.59026,0.59676,-1.1059,-1.7659,0.60887,0.76667,-0.72284,1.4178,-1.4932,-0.20944,2.0059,0.82122,0.12566 3.8195,1.0358,1.6028,0.85414,0.72022,-2.3173,0.014607,-1.1401,-0.4349,-0.8239,-1.8193,0.17824,0.63162,-0.4812,-0.64671 4.016,-2.8178,-1.9835,-0.43619,-0.58647,0.29583,1.8352,-0.36854,0.29225,-0.68977,0.15246,1.0969,-0.48327,-1.2998,1.265 3.1281,0.73824,-1.5343,0.3662,0.72554,-2.1575,0.86175,-0.89164,1.6314,-0.014985,-1.0408,-0.83919,0.86843,-0.53734,-0.94934 2.1435,1.7071,-1.2151,-1.1597,-1.2351,-2.0826,-0.44617,-1.1866,0.071481,-0.40086,0.42627,-1.3457,1.0662,-0.13248,0.38022 3.9002,0.037053,0.86775,0.63976,-1.4104,-1.6266,-0.86584,-1.4317,0.41055,-0.90518,-0.71324,0.028169,-0.61559,0.22177,-0.94892 4.3346,-1.2824,-0.079253,-0.90807,-0.50679,-1.7743,0.34369,-1.5411,0.60052,0.23816,1.8084,-0.030581,0.59537,-0.34515,1.4037 2.5375,0.25673,-3.0022,-1.808,-1.4722,-0.03098,1.1231,0.28807,1.1426,-1.3946,1.2821,-0.24817,0.6147,0.83386,0.52194 1.7313,1.6096,0.00025722,-0.44964,-1.5768,1.9575,-2.3224,-0.11273,-1.1289,-1.3799,0.99826,-0.038167,0.9324,0.086704,0.017853 -0.77999,-2.7076,0.99887,-0.43184,-2.3549,-0.93188,0.37981,-0.99044,-0.02115,1.3276,0.28886,0.20193,0.69652,-1.005,-1.1663 0.3366,2.3082,1.1657,1.1788,-1.5955,-0.038724,-1.4062,-0.7228,-0.18737,0.049962,0.34784,1.3729,0.3546,-0.14134,-0.15819 0.060683,-3.911,1.332,-0.15551,-1.9936,-0.48319,-0.43358,-0.87182,-0.68783,1.9131,0.15385,-0.42577,0.19008,-0.41702,-1.0018 0.85782,-3.379,-0.62832,-1.7368,-2.194,-0.55762,-1.7279,-0.72406,-1.1779,1.2524,-1.8608,1.1006,-0.49532,-0.61647,0.52291 -2.2367,-0.71138,-2.4887,-0.53916,-0.95971,-2.0133,-0.018961,-0.18612,-0.082375,0.76513,-0.045306,0.23974,0.65863,1.5809,-0.52619 0.046314,-2.6058,1.3079,-1.2513,-3.2785,-0.43974,0.41395,-0.52987,-0.25304,0.51077,-0.35395,-0.40068,0.4706,-0.91798,-0.57471 -1.4101,0.26185,-2.1483,-1.0804,-0.044433,-0.95483,-1.0101,-0.4791,-1.861,0.22333,-0.41977,2.1767,1.556,1.0057,1.8157 3.1365,-3.2186,-1.5315,-1.4485,-1.8929,0.15455,1.1556,3.0771,0.87426,0.91415,-1.1487,2.36,0.36177,-0.053751,-1.0091 -1.4144,-0.86538,-0.030424,-2.0722,-1.7675,-1.7923,1.2779,-1.7825,-1.9681,1.3816,-0.47218,-0.11383,1.3266,0.83943,-0.28578 -0.62933,-1.1531,-0.46677,-0.9087,-0.54068,-2.297,1.3752,-1.051,-1.6826,2.8841,-1.074,0.087129,1.9859,1.2994,-0.78854 0.65423,0.73229,-0.32784,2.1774,-2.2121,-0.95908,-0.25899,-0.66077,0.51253,-0.18923,-0.10881,0.17615,-0.06271,0.7397,0.63336 1.8162,-0.52973,3.1956,0.079782,-2.9049,0.49058,-1.013,0.71158,-0.39959,0.16317,0.3558,1.0041,-0.032991,-0.28283,0.30327 -2.8462,-0.7018,-1.7517,-0.5293,-1.1789,0.89291,0.55339,-2.4661,-0.43969,-0.98515,0.46889,-0.0020533,0.13302,-0.4161,-1.3069 -0.58951,-3.69,-0.99382,0.58631,-0.62596,-0.48103,-2.3766,0.1144,0.15238,1.4014,-0.49025,0.48414,0.014705,-0.49943,0.26273 -2.6914,-3.2967,-0.23518,-0.7495,1.4696,-0.45613,-1.2708,1.7241,0.12622,0.14363,-0.27532,-1.0769,-1.1481,-0.97963,-1.0318 3.6342,-2.1811,-1.6404,0.38934,-0.29479,1.1123,2.0033,-1.6195,-0.73985,-0.70041,0.79877,0.88822,0.96523,0.35414,1.1682 5.1222,-3.4313,-0.75522,-0.89434,-0.52305,-1.0139,1.8802,-0.17588,0.14278,0.34506,0.83426,1.0283,-0.044982,0.23708,1.8732 -1.9208,-1.3698,-0.56735,0.33027,-1.8108,-2.4006,0.65891,-1.29,0.63446,0.9036,0.37274,-0.26605,0.86865,0.017582,-0.61684 3.1804,-2.6892,1.7355,1.7905,-1.87,0.56936,-0.23335,1.6363,0.23692,-0.89407,-1.6972,-0.12348,-0.76869,-1.0968,-1.0034 -0.12649,2.9889,0.013095,1.4415,-0.076125,-0.65265,-1.0346,0.69196,-0.61206,1.659,-0.46433,-0.18403,-0.52808,1.0641,-0.12028 -0.83541,-1.8801,1.6927,0.72709,-2.5528,-1.3195,0.45526,-0.63615,0.042763,0.8664,-0.056246,-0.018024,0.19335,-1.931,-0.5119 -2.9408,-1.019,0.836,-0.73646,-0.72007,-0.22519,-0.23097,-0.35255,-0.71048,-0.32735,2.6749,-0.031924,-0.28986,-0.30084,-0.98493 -3.2151,-0.13433,-3.45,-0.9988,0.36314,-1.3913,0.037934,0.33583,-0.7603,-0.055381,-0.90442,-0.029271,0.15419,1.355,-0.45726 2.1813,0.19709,-1.5934,2.304,0.10473,-0.12183,-0.25436,-1.2427,0.090663,-0.32612,0.54012,-0.33232,1.8174,0.77734,-0.10224 -1.7729,2.826,-0.69631,0.67424,-0.30083,-0.19217,-0.28713,1.7447,-0.64932,-0.47034,0.0053728,1.0049,-1.8007,-0.39468,-1.442 -2.337,-1.7949,-1.9994,0.099581,-1.6975,-1.2254,-0.49319,-0.41545,0.56519,-0.62038,0.89868,-0.30838,-0.38989,-0.03348,-1.1733 0.55665,-0.63583,0.94473,2.3048,-0.60515,1.6132,0.71966,-1.5213,-1.0673,0.6014,0.74544,0.44121,0.11599,-1.4816,0.57889 -2.103,-1.4297,-1.42,-1.5081,-2.5843,0.30541,-0.52009,-1.4783,-1.026,-0.44696,-0.56839,-0.71794,0.32351,-1.373,-0.29294 0.0047673,-2.5249,-2.5094,2.0657,-0.53451,-0.97034,-1.2725,0.1687,-0.40769,0.48349,-0.56559,1.4553,-0.07753,-1.3634,0.16035 -1.4773,-0.60263,-3.5516,0.70236,0.20478,-0.71727,0.95152,-0.29828,-1.1493,-0.16134,-1.2478,-0.4263,-0.1562,1.2144,0.22473 -1.509,-2.6717,-2.1866,0.66505,-1.2906,-1.3405,-2.3072,-0.47012,0.016459,0.33594,-0.55544,0.7234,-1.0129,-0.81338,0.43136 -2.2657,-2.0822,-2.3877,-0.50248,-1.2746,-0.44194,-2.3136,0.066604,-0.98497,-0.68418,-0.099896,0.50775,-0.093127,-0.93598,0.28943 -1.9775,-0.39742,-3.597,0.23014,-1.2588,-1.2896,-1.1161,-0.2304,-0.2722,-0.19459,-0.33101,1.2552,0.14389,0.38644,0.21437 1.7582,-1.1802,-1.7566,0.78813,-0.23799,0.80915,-0.64794,1.1765,0.47518,2.3175,3.3604,0.91851,0.2765,1.3538,1.2211 -1.1185,-2.357,3.6629,-0.78575,1.4912,-2.6266,0.95134,-0.63669,-2.483,-0.54075,-0.60861,0.017147,-0.1804,0.49034,0.032862 4.074,-3.9561,-1.1087,-0.2526,-1.4193,0.024419,1.1902,2.525,-0.0059615,1.0097,-0.75801,0.83428,0.097114,0.68327,0.15746 0.69522,-1.3343,-0.41434,1.5713,1.3586,1.5238,-2.348,0.91917,-0.53365,-2.915,1.9263,-0.83975,-0.29567,-0.092775,-0.60491 -2.0969,-3.3012,2.3233,-2.0537,0.73941,-0.14637,-2.0988,-1.0032,-3.0457,1.2432,0.36775,0.36068,-2.29,-0.08599,0.37899 2.3476,-1.5939,4.289,1.3325,-1.1868,-0.28567,-0.67159,0.43776,-0.71047,-0.21095,0.94299,0.91998,-0.038551,-0.10784,-0.14341 -2.1337,-2.8619,3.3259,-1.8769,1.5562,-1.6125,-0.69444,-0.022718,-3.3666,-0.017289,-0.21186,-0.2213,-1.4454,0.11178,0.51976 -0.61384,-0.057027,0.83545,2.7699,-1.4529,-0.61099,0.7809,-1.3219,-0.62154,0.16078,0.88027,1.2021,-0.38372,-0.77469,0.26499 2.6179,0.62385,-1.2413,-2.7616,-0.68473,-2.3047,0.67037,-0.76524,-0.28665,-1.0767,1.5126,-0.536,1.418,0.075395,1.5803 0.097009,-4.9635,3.5477,-1.694,1.2037,-1.3409,0.093926,0.50574,-3.7152,0.48854,-0.80839,0.33637,-1.7172,-0.35288,-0.22098 4.1422,-2.8724,3.0916,0.038388,1.0543,0.51481,-0.82185,1.8429,-3.4427,1.0789,0.51598,-0.20991,-0.53408,1.0116,-0.34552 3.6907,0.10971,0.16479,0.94538,0.11411,-1.9748,-0.53938,-1.9126,0.10241,-0.19363,1.2276,-0.71277,0.87316,0.46869,0.093088 -2.5986,-0.84946,2.5389,-0.37032,-0.24006,-3.0325,0.95949,-0.99961,-2.0888,-0.055892,0.026757,-0.47407,-0.66988,-0.012706,0.39647 -0.82204,-0.029573,3.526,-1.0838,0.10445,-2.8308,0.54777,-0.87556,-3.1462,-0.57793,-0.74926,-0.50022,-1.5613,-0.1322,-0.19043 -1.516,-0.9532,-1.4633,-2.32,-1.8616,-0.55517,1.6589,-1.1433,-1.1897,-1.0831,-0.57941,-0.73347,0.26566,-0.018817,-0.85479 -0.35657,0.098215,2.6046,-0.17905,-0.58567,0.21903,-1.68,2.108,0.18712,-2.458,0.92938,0.55919,0.93521,0.081915,-0.091541 2.5521,-1.5162,3.1156,0.38615,-2.1905,1.8169,-0.54159,0.82778,-0.50673,1.6714,-0.74098,-0.89391,-0.58891,0.39345,-0.74765 3.4384,-5.0051,-1.1288,-0.67273,-0.95178,-0.66572,1.2794,2.8733,-0.037986,0.20784,0.39399,2.6431,-0.5131,0.24763,-0.17857 -0.49536,1.0595,0.7154,2.2242,1.4629,-1.8513,1.4695,3.0072,-0.083286,-0.33579,-0.75881,-1.2799,-0.68594,0.32341,0.033164 2.4889,-2.2825,2.8523,1.7282,0.12171,1.4836,-1.38,3.1115,0.082555,0.84458,-0.61275,0.78782,1.0944,-0.19996,-0.49586 -2.0671,-2.2327,-0.36322,0.85761,2.1918,-2.5707,2.0565,0.85178,0.02428,0.18191,-0.16906,-1.2004,0.038434,0.88404,-0.85511 1.0402,2.5481,-0.50958,-0.26552,-2.4938,-1.0592,-0.89843,-0.71308,-0.24836,-1.3956,-0.96761,-0.16557,0.90961,-0.3915,0.34568 -1.1033,-3.3846,2.7411,-0.12194,0.37831,-0.0036345,-0.42054,2.2817,1.044,0.59717,0.28716,-1.1842,0.03312,-0.26592,-0.89797 0.80593,-2.2485,1.67,2.5583,2.3107,-0.7605,0.17209,2.4844,-1.7543,-3.549,0.074819,-0.4865,0.29824,0.39175,0.65567 -0.14245,-2.5431,2.7317,2.5089,1.2986,-0.85569,0.36622,1.9577,-0.03592,-1.4072,0.38,0.018949,-0.60139,-0.87219,0.015709 -2.2781,-0.70459,-1.7741,0.821,0.75592,-1.0052,0.058549,-1.3074,-0.4486,1.0922,0.78367,0.63394,-0.71459,0.89932,-1.0184 -0.17374,2.4894,1.3952,-0.97559,-0.69385,-1.3758,0.78753,1.2703,-1.1011,-0.23814,-2.0431,-1.6899,0.44707,0.5861,0.55838 -1.1168,-3.2084,3.2615,-0.8344,0.079403,0.77648,-0.75273,2.4309,0.57251,1.1406,0.70328,-0.9184,0.56259,0.15362,-0.98681 -0.5097,0.17785,1.5152,2.5658,2.5098,-2.7463,1.9733,2.3405,-1.0059,-1.0266,-0.80937,0.26122,0.57902,0.89494,-0.58049 1.0888,0.61208,2.5594,1.433,1.813,-2.0526,0.23877,1.2309,0.6182,-0.9709,-0.23396,1.0373,1.3732,1.226,-1.015 3.8692,-0.43157,-0.22433,-1.0191,-2.5816,0.94048,-1.1568,2.6913,0.68083,-0.33555,-1.3563,-0.41692,-1.0084,1.4428,-0.37853 -1.5288,-0.66751,1.0485,0.96054,-0.32579,1.0879,-0.40705,2.6559,1.4864,0.77422,1.6965,-0.98739,-0.80204,0.99022,-0.30022 -0.81449,0.33029,2.4699,0.28461,0.15419,-2.5587,1.3057,2.6415,0.50238,-1.3337,-0.11425,-0.28993,0.51347,-0.13914,0.384 -0.49486,-2.0045,1.8679,2.2849,-0.19883,-2.3143,1.4236,1.9014,0.017217,-0.95907,0.66108,0.34032,0.035037,-0.58509,-0.46532 -1.2255,0.035046,0.86173,1.357,0.57642,-2.3403,2.6259,2.3716,0.10366,-0.97151,-0.23126,-0.60844,-0.84571,0.050632,0.031693 0.04575,0.98625,2.9541,0.63816,-1.4453,-0.087556,-1.825,-0.3234,-1.1261,-0.15994,1.6775,0.85878,-2.0521,0.83406,0.040916 0.38295,-0.6499,1.9553,1.6373,-1.521,-0.1355,-0.056016,-1.7002,-1.6923,-1.3146,-0.4121,-0.062837,-1.2787,-0.27017,2.0797 -2.3449,-1.954,-0.06206,-1.1233,-1.1189,0.42412,-1.8041,-0.44573,-0.73357,0.11429,1.3479,-0.054203,0.3781,-0.84617,-0.47884 0.7057,-3.4617,-0.40115,0.52732,-0.99876,0.097415,-1.4154,-1.6511,-0.86804,1.0604,-1.4844,0.13787,-0.25146,-1.6009,0.46937 2.1421,1.6536,0.84539,-1.1881,-2.3594,0.86055,-1.88,-0.73714,-1.4201,-2.6499,0.12421,0.050641,0.15865,-0.6022,0.17839 -1.3222,-2.8899,1.0048,-0.92332,-0.93511,1.0002,-1.5875,-0.50162,-0.12188,1.3143,0.24038,-0.7479,0.0031419,-1.0342,-0.78898 -0.86954,-0.32904,3.6151,-0.43917,-1.246,-0.4862,-0.62364,-0.21872,-1.9374,-0.5372,1.3568,0.12573,-2.3606,0.12698,0.26168 2.3797,0.65974,-2.5983,-0.35244,-0.47687,-1.4099,0.69753,-0.64979,1.153,1.1268,0.92198,-0.93147,-0.61824,-0.11416,1.9994 4.1192,-3.0924,-2.422,0.14107,-1.2919,1.5068,1.2971,2.4588,-0.0031714,1.9543,-1.1767,0.70486,0.69344,0.2418,-0.8075 -2.1771,-0.5328,-2.9905,-0.097539,-0.012522,-1.8876,0.81047,0.63491,-0.37017,0.68872,-0.59164,-0.87887,-0.39536,1.4825,-0.74362 -2.5434,-2.4097,0.33878,-0.63669,-0.36102,0.40306,-1.3398,-0.088453,-0.1134,-0.069796,1.6166,-0.64207,-0.16887,-1.1274,-1.3923 1.4734,2.5866,-0.007876,1.1912,0.29475,-2.0248,0.078402,-0.71899,-0.27711,0.78759,-2.5804,-0.97906,-0.49602,0.39435,0.45874 0.6824,2.9564,-1.587,-0.35867,-1.7716,-0.43977,-0.83052,0.16392,-0.32687,-0.60915,-1.4031,-1.1555,1.1276,0.54562,0.24552 -1.5386,-3.0632,0.12746,-0.39562,0.73868,1.0295,-2.3716,-1.0615,-0.34571,0.72488,-0.40201,0.22367,-1.0782,-0.52724,-0.21045 -2.2355,-1.1245,-3.0948,0.11344,-0.46246,-1.5274,-1.4678,-0.15843,-1.0458,-1.1235,-0.18724,1.3186,-0.033098,-0.43056,0.42969 1.4537,-0.26652,-0.47817,2.0473,3.1885,-1.0312,0.27395,0.41746,0.43568,-0.49138,0.65321,-0.06761,1.836,0.39398,-0.8128 0.13388,-1.8682,0.92658,1.221,-1.4321,1.7557,-0.77005,1.9486,-0.039675,1.4358,0.37,-1.4001,1.6102,0.62287,0.15344 3.0446,-0.94584,0.4046,-0.22389,-2.6068,1.0797,-0.25447,1.9849,0.32736,-0.87996,-1.3918,-0.05234,-0.13527,-0.85323,-0.48658 -1.7388,-1.1302,1.1294,-1.0796,-1.2131,0.62817,0.069601,-1.3369,-0.78477,-0.11011,1.3213,-0.015527,-0.075231,-1.1512,-1.6021 -2.6928,-0.82732,-3.0589,-0.0556,-0.025563,-1.2386,-1.2249,-0.23988,-1.3464,-0.99768,-0.25053,0.65753,0.33097,-0.33385,0.044337 1.3301,1.6503,-2.8441,-1.6093,-0.55193,-1.0092,0.73458,0.34324,0.066205,-2.0108,0.85437,-0.78335,1.6956,-0.044384,-0.097839 -1.5471,-3.5575,0.56964,0.19803,-0.32679,0.10294,-1.3883,1.834,0.72951,1.5631,-0.03912,-1.9233,0.13277,-0.46041,-0.34392 -2.9356,-2.3786,-0.8238,-0.66991,-0.73309,-0.89281,-1.5943,0.21734,0.77163,-0.40807,0.5612,-1.0644,-0.53298,-1.0762,-0.40999 3.7711,1.3032,-0.29875,0.28186,-0.45378,-2.0131,0.052101,-0.96727,0.87776,0.062965,-1.6314,-1.1957,0.25866,0.61264,-0.79042 2.7172,-1.0127,0.0706,1.3978,-0.047694,0.97861,-2.1034,-0.52661,0.774,1.3696,1.4307,-0.14756,0.52246,-0.0020372,-0.30339 2.7621,-2.5033,-2.4325,0.14712,-1.5806,2.6619,1.2685,1.1986,-2.0381,-0.0088381,-1.9474,-0.63419,1.3921,-0.2995,0.2596 -2.6133,-1.895,0.79004,0.31193,-0.41406,-0.21368,-0.36556,0.3483,0.68881,-0.27909,1.4407,-0.54932,-0.56624,-1.1783,-1.4692 0.054116,0.6393,-0.53404,3.4892,1.3752,-0.85235,0.014221,-0.13731,-0.2636,-1.2857,0.70947,0.24787,-0.48915,1.1458,-0.28642 4.3325,-3.3904,-2.0134,-0.59283,-1.1769,0.50108,2.2372,2.6625,-0.37332,1.0716,-0.73158,0.96571,-0.32454,0.66303,0.21396 1.1897,3.284,0.18164,-1.5343,-0.48714,-1.6737,0.50026,-0.085828,-0.84388,-0.71041,-2.0689,-1.46,-0.27237,0.49002,-0.039766 -3.7827,-1.2914,0.21897,0.068781,-0.6227,-2.232,0.49297,-0.10129,-0.010186,-0.68421,1.3143,-0.089645,-1.1989,-0.079181,-0.96342 -0.87242,-1.987,2.6527,0.4186,-2.2212,-2.3598,0.74783,-0.64584,-0.83655,-0.28439,-0.50772,0.13919,-0.14346,-0.96115,-0.42637 3.4256,0.29049,-0.36392,0.80487,-0.4137,-1.0778,-1.2623,-1.4927,-0.27956,1.1983,1.5565,-1.7956,-0.28538,0.042897,1.3464 -0.3237,-1.846,4.2569,-0.60949,-2.0912,0.27284,-0.93319,0.6587,-1.1441,0.5094,0.76243,0.026992,-0.79481,-0.50147,-0.18608 3.6638,-0.59483,-0.27162,-0.43444,-1.8797,-0.050507,-1.6565,-0.59192,1.0116,-0.5224,-0.043451,0.071828,0.19844,-0.26095,-1.4315 -3.4049,0.46259,1.3543,-0.26667,-1.3945,-0.12295,0.83298,-0.23993,-0.92003,-1.7977,2.0779,0.1395,0.099105,-0.41056,-0.60508 -0.28444,-0.42634,-1.0314,1.5063,2.0829,0.82162,1.5654,0.67291,-2.4027,1.3941,-0.511,0.47561,2.6004,-0.52542,-0.056028 1.495,2.2715,-1.4796,-0.71396,-0.32902,-0.81639,-0.48876,-0.34315,-0.33164,0.92815,1.0205,-1.3011,1.7209,-0.072074,0.9875 2.3306,-0.45922,0.63574,1.694,1.0646,-0.93148,-2.1275,0.21168,-0.47451,-0.34492,2.798,0.70011,-0.28536,0.65547,-0.40577 2.3601,-1.6369,3.593,0.10193,-2.4685,1.155,-0.39315,1.835,-0.84193,1.9209,-0.57747,-0.94142,-0.29719,0.76609,0.52087 1.3461,-0.74152,-0.70894,0.12037,-0.87443,-0.93965,-2.3314,0.28078,1.3617,0.55784,2.5359,0.05067,0.8449,0.44412,-0.065655 1.8445,-0.10354,0.40915,1.3325,0.26771,-1.8872,-1.583,-1.3911,-0.35563,-0.15219,1.5594,-0.52034,-0.59886,0.67758,0.38358 -1.8155,-1.8566,3.3424,0.067543,-0.18429,-0.73084,-0.0073588,1.1955,0.33172,-0.39754,0.71293,-0.31401,-1.207,-1.5162,-0.77545 0.16184,2.0851,-0.64912,2.3135,-0.9018,-0.67489,-1.1831,-0.46215,0.17812,0.46411,0.40511,0.17781,-0.31261,1.1198,-0.49236 0.098771,2.975,1.6939,0.097899,0.26973,-0.69968,0.029414,0.55658,-2.398,-0.51903,-0.98923,-1.5107,0.10391,-0.087798,0.75384 1.1032,-2.1333,-0.88493,-1.065,-0.95097,0.36868,-1.1504,1.8479,-1.2828,0.69735,3.0045,2.1653,1.0894,-0.082615,0.97547 -3.4913,-1.6137,-1.712,-1.0987,0.0021928,-1.0728,-1.9595,-1.402,-2.0479,-1.1768,0.60647,1.4966,-0.45435,-0.65149,0.16814 -0.28308,2.8574,-1.4427,1.1967,-0.8921,-0.4306,-1.0166,0.36484,0.27139,0.52282,-0.86213,-0.15339,0.76675,1.3396,-0.3997 -3.8044,-1.0025,-0.91146,-0.6671,-1.1102,-0.39207,0.26742,-1.1594,-1.1581,-1.2431,1.2955,-0.45325,0.5682,-0.9823,-0.87684 2.164,-0.22743,0.80948,2.0808,-1.4685,-0.26931,-1.2804,-2.203,-0.55847,-0.99655,-0.7698,-0.53231,-1.1699,-0.6522,0.59817 -0.9017,-0.42356,-2.8031,2.0597,-0.049262,-0.1044,1.1812,-0.17278,-0.077637,1.0214,-0.32526,-0.55322,1.2993,0.17871,-0.2561 3.0959,-2.8336,-3.3524,0.7895,-0.5609,2.2204,0.69078,1.4623,0.19268,-0.32035,0.9265,0.26502,0.65178,0.31573,0.0056402 -0.84603,-1.4146,1.8755,2.9181,-0.48808,-1.4536,0.97667,-0.91853,-0.61122,-0.59764,1.3177,0.26651,-0.37228,-0.060637,0.82643 -2.2237,-1.6763,-0.88734,-1.6032,-0.66385,-1.2945,-1.8374,-2.1301,-1.7503,-0.308,0.1949,1.8074,0.17792,-0.69522,0.58497 0.68513,3.4574,-0.46042,-0.30744,-1.2385,-1.1942,-0.0062018,0.15136,0.0046076,0.40474,-2.4006,-0.55652,0.64184,0.203,0.39675 -2.8715,-2.0466,-0.45489,-2.122,-0.76016,-0.41928,-1.3091,-2.1172,-2.6423,0.10959,-0.42978,0.032153,-0.36153,-1.3133,-0.24893 -1.6564,-3.8143,1.9808,-1.952,-0.32185,0.97515,-2.3118,0.23992,-0.77938,1.9342,-0.26201,-0.33016,-0.87404,0.22993,-0.41706 4.4438,-3.9071,-1.3528,-0.61246,-0.41132,-1.2297,1.5673,1.5788,0.64334,-0.34851,0.59944,1.0103,-0.23529,0.49136,-0.5003 -2.875,-2.0433,-0.73607,-1.6723,-0.97422,-0.53549,-2.2879,-2.2537,-1.5127,-0.026647,0.1353,1.0272,-0.25249,-0.45997,0.20694 0.17442,-1.1894,-1.1509,1.0252,-1.6256,0.81256,-0.18374,-1.8819,-0.25537,1.189,0.2899,-1.2578,-0.53786,-0.11807,0.75853 -1.2333,-2.1825,2.2067,-2.8603,-2.011,1.9221,-0.80236,-0.26324,-2.7377,0.49018,-0.029549,-1.4007,-0.21351,-0.94287,-0.53723 -0.20341,-3.6767,0.83013,0.51713,-0.28253,-0.41364,-1.4846,2.0538,-0.6476,1.3187,-0.3634,-0.30755,0.47404,-0.50698,-0.01744 -0.3179,0.44207,-0.56625,2.867,0.34705,-1.1982,2.1289,2.0098,-0.426,-0.39664,-0.94117,-0.73743,0.045716,-0.067976,0.35484 2.7886,0.45766,-3.5396,-2.5606,0.21771,0.036309,1.9391,2.1381,-0.66502,-0.68042,1.5009,-0.3305,0.52174,-1.5057,1.3714 3.0263,1.6639,-0.59176,-0.42373,-1.7171,-1.0848,-0.70261,-1.0932,1.1333,-1.0557,-0.87615,-1.2318,0.65171,0.13888,-0.52455 -2.0058,-0.89527,-0.82206,-0.74329,-0.41094,-1.5164,-0.12934,-1.7161,-0.38964,1.3981,0.43181,0.97796,1.483,0.69069,-0.67758 -2.7037,-2.144,-0.52246,-1.7435,-1.6929,-0.24292,-1.7839,-1.8816,-1.3026,0.41511,-0.35409,0.034532,-0.0023984,-0.99424,0.10406 2.2164,1.5431,-0.76661,-0.90563,0.11005,-2.2722,-0.77087,-0.055206,1.0232,0.97065,-0.11162,-1.4149,0.21237,0.90123,0.55265 -3.5913,0.3907,-2.1367,-0.76849,-0.27498,-0.44507,0.37625,-0.12138,-0.034684,-0.0088329,0.91798,0.22027,0.49212,0.1259,-1.1945 -3.4691,0.13888,-2.3936,-0.057594,-1.1948,-0.18292,1.595,-0.64619,-0.89504,-1.0875,0.82533,-0.44375,0.55856,-0.32499,-1.0534 -2.5809,-1.4271,-0.38835,-1.7624,-1.3295,1.4393,-1.6592,-1.5529,-0.95491,0.060845,0.36337,-0.48861,0.68853,-1.1038,0.14037 1.8932,1.3635,-0.16786,1.1486,-0.60274,-1.071,-1.3067,-2.2141,-0.4801,-0.9755,0.75689,-1.4315,-0.46309,1.2376,0.81455 0.37346,-0.1916,2.2221,-1.8488,-3.4799,2.0613,-0.083795,0.82926,-1.4327,-0.49171,-0.23466,-1.0151,-1.0878,-0.72271,0.89266 -2.6572,0.21849,-2.3271,-0.88684,-1.9361,-0.28742,0.92873,-1.8599,-1.2625,-0.057542,0.15013,-0.023455,0.99517,0.089769,-0.65119 -0.15655,-2.7068,0.17764,-2.0662,-2.8744,0.67262,-0.49343,0.39256,0.10976,0.99459,-1.415,-0.75297,-0.23792,-1.0035,-0.78745 -0.28727,-3.4173,1.8692,-0.68125,-0.17453,1.1168,-0.91519,-0.64167,0.1371,2.88,-0.46566,-0.88103,-0.26676,-0.0028576,-0.84185 -2.6005,-2.4982,1.022,-3.2885,0.38232,0.95846,-2.0522,-0.28513,-1.1155,1.2279,-0.63604,-0.7022,-0.48969,-0.58607,0.40043 0.41189,0.96766,2.2212,1.6136,-1.34,-2.6385,0.14271,-0.54576,0.10341,-0.77139,-0.37831,0.23415,0.31657,0.68749,0.73053 -0.90548,-2.1879,2.7059,0.32407,0.36288,1.0482,-0.20226,3.1649,1.5272,1.6303,0.59422,-1.7054,0.60415,0.23833,-0.08767 -2.1778,-2.2409,0.3528,-2.4353,-0.50909,0.67691,-2.4504,-1.7547,-0.50809,0.98375,-0.61941,1.0575,-0.33623,-0.96251,-0.19204 -2.5571,-2.3127,0.49823,-1.0206,0.41625,1.0056,-1.3,2.062,1.0091,0.56129,0.20043,-2.3393,0.11832,0.69472,-0.20542 0.84417,2.337,1.9675,-1.038,-1.395,-0.77691,-0.12541,-0.20384,-3.0682,-2.3015,0.30978,-1.5303,-0.58412,-0.39713,1.1515 1.1493,0.56425,-0.84104,1.1393,-2.1581,-0.18651,-1.8124,-0.022077,0.48385,-1.5176,0.83909,0.20356,0.82523,0.8668,0.14787 -2.647,-1.0132,-2.4107,-0.73958,-0.54945,0.57685,-1.4837,-2.1251,-1.7003,-0.56191,-0.11194,1.5808,0.025113,-1.1425,-0.2743 2.8173,-1.326,1.0563,1.8956,-1.9955,0.25597,-0.59764,-0.23778,0.74963,-1.0828,-1.3608,-0.41472,-0.35058,-0.3743,0.53116 1.6443,1.202,1.1238,0.55384,-1.8502,-2.0205,0.093676,-0.24045,-0.95681,0.97057,-0.45096,0.041128,-0.2151,1.2775,0.90909 -1.0005,0.85781,1.6631,-0.13308,-2.8864,-1.5717,0.47582,-0.36352,-0.19594,-0.74855,0.37125,0.42094,0.53351,0.41181,1.3757 0.37678,-3.4168,1.5322,1.3345,-1.937,0.66062,0.10235,-0.064216,0.17957,1.4789,0.0342,-1.4274,0.63568,-1.2747,-0.21181 -2.7082,-1.1457,-0.3523,1.0512,-0.50539,-2.607,0.9924,-0.62909,0.16123,0.94107,1.1323,-0.29395,0.19619,0.32277,-0.83926 -0.39281,-0.019864,1.3402,-1.6616,-2.2733,0.47806,1.8483,0.205,-2.0536,-1.8303,-0.1267,-2.7321,-1.6477,-1.4403,0.86933 -0.38713,-1.7749,3.4539,0.87473,-1.8389,-0.47351,-0.31621,0.32951,0.095259,0.28451,1.634,0.25867,0.10414,-0.43987,-0.42167 -2.8522,-1.3856,-0.16251,-0.08342,-1.7864,-1.4032,-0.29189,-0.17353,0.35901,-0.12278,1.829,0.17917,-0.34221,-0.64525,-1.1051 3.3396,-2.8957,-2.5649,1.3927,-0.30642,1.045,0.79999,0.81135,0.72418,-0.88314,0.88052,0.039835,0.34591,0.47731,-0.5938 -2.2336,-1.7178,-0.96515,0.89626,1.9949,-1.1498,0.87309,-0.51835,-1.1364,0.44492,1.39,-0.48872,-0.98363,-0.0044161,-0.9539 -2.215,-1.9673,0.91205,1.0187,-1.3373,-0.080817,-0.54455,0.092831,1.0954,0.63238,1.7705,-0.75179,-0.69785,-0.82899,-0.74756 5.1674,-2.318,-0.62424,-1.598,-1.4113,-0.8596,-0.50487,1.4005,0.81816,-1.4907,0.13391,0.12546,-1.0606,0.69271,-1.8263 1.9564,0.77117,-2.8387,0.12152,-0.69657,0.17418,0.14759,0.28173,1.8755,1.095,-0.38161,-1.1944,0.11417,-0.50065,0.036205 1.6549,-3.1164,0.304,1.2487,-0.74927,-0.10082,2.3298,-2.2795,-1.5137,-1.6711,-0.8598,-0.75941,0.36936,-1.4105,-0.2566 -2.0874,-1.2841,1.0248,-1.46,-2.1996,-0.49282,-0.23408,-2.2723,-0.22627,0.12367,0.93041,-0.57745,0.4823,0.20403,-0.19667 4.7722,-3.2635,0.53824,-0.053368,0.7474,0.7424,-0.14634,-0.55982,-1.052,0.58814,2.5141,0.52856,0.53498,-0.39522,0.45302 -3.7022,-0.54065,-2.7357,-0.91152,0.14532,-0.99583,-0.44842,-0.7429,-1.0645,-0.86201,0.30093,0.69479,0.28366,0.13148,-0.85571 -0.78512,0.4159,-2.5446,2.529,0.60138,0.62967,1.2106,1.2531,-0.64257,0.073387,0.0036532,-0.53842,-0.68316,-0.20482,-0.2589 -1.8325,-2.5768,0.60232,1.8436,-0.018472,-1.3675,0.096849,-0.2362,0.19473,-0.32547,2.0589,-0.41733,-1.2307,-0.86156,-1.3106 4.433,-3.3097,-0.79916,-1.0392,-0.84624,-0.60855,1.3363,1.6505,1.2386,-0.20464,0.213,1.4032,-0.54805,0.013465,-0.64294 -1.8452,-2.078,1.1927,-0.34614,-2.2009,-0.4435,-0.86657,-0.040391,0.35206,0.16036,1.8829,-0.65202,0.21748,0.51265,-0.28685 -1.964,-2.225,-0.96285,0.11624,1.1914,-2.378,-0.17512,-0.52066,0.25052,1.3779,-0.83709,0.33671,0.82958,-0.29684,-0.36326 -1.9564,0.8745,0.30482,0.36144,-1.0112,0.43546,-0.92031,2.046,0.72182,-0.31333,1.6016,0.20117,-1.2258,0.26487,-0.56057 1.0474,-2.669,1.2139,-0.19916,-2.8863,0.43426,0.24804,1.0859,0.50805,1.5325,-1.4619,-1.8522,-1.2626,-0.2732,0.14826 -0.30967,-3.5375,1.003,-1.5594,-1.3634,0.56697,-2.0196,-0.78242,-0.75464,2.6232,-0.75387,0.10152,-0.34225,0.18112,-0.26077 0.95121,-0.80935,-1.402,2.0067,1.6613,0.5892,-0.3858,0.42901,-0.054154,-2.5566,1.8358,-0.31897,-1.2697,-0.031841,-0.37415 -2.4872,-1.1652,0.83533,-2.3542,-1.6778,1.4639,-1.6253,0.073599,-1.8444,1.1471,0.52332,-1.6426,0.58542,0.52813,-0.060812 -2.5258,0.44591,-3.7276,-0.36079,1.3233,-2.1645,0.27965,0.52725,-0.66393,0.57678,-2.0323,-0.1593,-0.69628,1.0282,0.54124 4.3212,-1.4243,-0.57507,-3.0333,0.27493,-2.2897,1.1616,2.3071,0.49697,-1.1917,0.65521,1.0562,0.49352,-0.095406,-0.36661 -0.81051,-1.767,-1.068,-1.7879,-1.8624,0.66662,-2.4317,-0.27192,-1.7198,1.2079,-1.3412,-0.36066,-0.3979,0.87617,2.1798 -0.91612,-1.1971,0.71592,-1.9788,-2.9684,1.5823,-1.0195,-0.16042,-0.64073,0.77041,-0.2523,-1.9481,0.72911,-0.58187,0.67857 -1.6342,-2.6057,1.1742,-0.29217,-0.89471,0.60155,-1.8194,0.78953,0.15315,2.2026,0.94036,-0.68092,-0.17775,0.37287,-0.41649 4.9796,-0.62926,0.036404,-3.0168,-0.50333,-2.5261,0.98552,-0.23431,0.23693,-0.070993,1.0482,0.26744,0.51232,0.97426,0.47215 0.80356,-2.9987,0.88968,-2.4355,-2.2458,0.19422,-0.68489,0.82971,-1.5277,1.9803,-1.8273,-1.4275,-0.95622,0.67145,-0.014605 3.0305,-0.027516,-1.9309,-1.6499,-0.22662,-2.0451,1.7688,1.3311,1.9003,0.22822,0.52727,0.73171,0.46115,0.73079,0.078976 -2.5113,-1.8399,-1.6559,-0.32099,-0.99661,-0.023544,-1.8696,-0.54177,0.1614,-0.16304,0.86584,0.75863,-0.59633,-0.13803,-0.30955 -1.3265,0.35114,0.0020783,1.4772,-0.79295,1.2784,-0.85924,1.7823,1.1009,0.19445,2.0139,-0.072503,-1.1427,0.87092,-0.079951 1.7877,1.0527,1.5784,1.6761,-0.68237,-2.3885,-0.2244,0.044145,-0.32659,0.099385,-0.081183,-0.029308,0.35023,1.7981,0.58974 -2.4882,-2.5691,0.076891,-1.5813,-1.0323,-0.056879,-2.7353,-1.0201,-1.3782,1.763,0.37376,0.3112,-0.55151,-0.31425,-0.056136 3.2635,2.0652,0.95439,-1.2905,-0.30785,-2.908,-0.85174,-0.47701,-0.50065,0.018505,0.052198,-0.97406,0.42332,0.91873,0.19925 1.874,0.88127,-0.87918,-0.73317,-2.3217,0.10502,-1.0849,0.91206,0.12155,-3.263,-0.66724,-0.12824,-0.14253,-1.1974,-1.5672 -1.7204,-1.6096,-2.7469,0.045106,0.31791,-0.95362,-1.5473,0.60466,-0.44868,-0.33101,-0.49517,1.3561,-1.7994,0.44388,0.17041 -0.13315,-2.7675,-0.44726,-0.84644,-2.0295,-0.32439,-1.7874,-1.387,0.12871,2.0304,-1.7183,-0.31386,-0.99964,-0.8157,0.67341 0.085069,1.5729,0.16751,2.2327,2.6887,-2.0659,0.29746,1.8377,-0.59744,-0.38905,0.40265,0.17857,-0.52322,1.7139,-1.0583 0.69163,0.97757,-1.7947,0.87035,0.10906,0.70241,-1.2658,0.022686,-0.67957,1.1914,3.2283,-0.64996,-0.011174,0.76401,-0.059336 1.4473,2.204,0.84359,-0.15491,-2.1591,-1.5938,-0.41836,-0.61903,-0.0045975,-1.0508,-1.4606,-0.16826,0.51196,0.89841,0.037078 -1.649,-0.21768,-3.689,0.19531,0.32379,0.57131,-0.95748,-0.59801,-0.70194,-0.63485,-0.66595,2.5225,-0.68267,-1.145,0.0040325 -1.8236,0.61297,-1.0701,0.81045,-2.2314,-0.5777,1.166,-0.62186,-0.0022995,0.94487,0.76676,0.26673,1.1744,0.26641,-0.084289 -1.6348,-1.3474,-0.11185,2.5337,0.41668,-2.5922,1.8805,-0.27223,-0.64751,0.54364,0.43688,-0.88691,0.28877,0.81392,0.13759 -0.22907,1.2108,0.81762,0.83616,-1.6943,-1.9351,0.40393,0.3837,0.27079,0.8488,-0.66563,-0.16885,1.3348,1.3296,0.62858 -1.4124,-0.60222,-2.2389,1.0365,-0.016886,-1.9081,0.50489,0.41258,-0.085174,1.9442,-0.50867,-0.81291,0.55274,1.5799,-0.04935 2.1332,2.1044,0.74931,-1.5431,-0.64587,-2.5499,0.093753,-0.47243,-0.077733,-0.54662,-1.3201,-1.0259,-1.0874,-0.011559,0.24546 2.9252,0.52563,1.0954,-0.53396,-2.2223,-2.3306,-0.19361,0.51773,0.89007,-1.6281,-1.1936,0.059393,-0.48545,0.46721,-0.67592 5.6917,-3.5223,0.5695,1.0872,0.029546,1.5165,-0.43262,1.42,-3.7166,0.7296,-0.61811,-0.48691,0.72413,0.80542,0.69616 -0.51864,-1.6982,-1.8604,1.793,-0.8628,-1.7128,0.76037,0.64799,0.44272,0.54252,0.8363,-0.45794,-0.63167,0.6555,-0.90875 0.19742,-0.75451,-0.89246,3.7005,-0.26422,-1.0605,0.48084,-0.28221,-0.18017,-1.8471,0.82016,-0.55309,-0.50686,0.82306,0.2234 1.3666,1.7341,-0.01784,-0.086377,-0.96363,1.2881,-1.3717,-1.0053,-0.35971,-1.9327,0.76873,0.34926,0.9976,-0.53825,-0.70428 0.3511,0.37424,0.795,2.1851,-2.1299,-1.7866,0.49142,-0.28371,0.9332,0.16307,-0.69232,0.55677,1.111,0.087964,0.27005 -1.9476,-1.7477,-1.0697,2.1843,-1.0908,-1.6106,1.0336,-0.51875,0.25893,-0.52753,1.0925,-0.73268,-1.4937,-0.015021,-0.48769 3.3227,-1.7982,1.0234,1.6432,-1.0108,1.8418,-1.6035,-0.96816,-2.3543,-0.86552,-1.1272,-0.91374,-0.23504,-0.57256,1.1037 1.4752,-1.8211,-0.29238,-1.595,0.2533,-0.036058,-1.318,2.4875,0.46317,2.0464,2.1817,1.0821,1.0529,-0.13353,0.96759 -1.2976,-0.11842,-3.5634,1.0369,0.047666,-0.58279,0.78892,-0.25363,-1.0155,0.39142,-1.3516,-0.72108,-0.17229,1.176,0.15448 -1.6335,-0.043154,-1.004,2.0943,-0.34254,-1.888,1.457,0.9882,0.19738,0.50229,0.34324,-0.24599,-0.30307,1.3222,-0.59598 2.4991,-1.1408,0.08248,2.4084,-0.046928,1.9285,-2.4453,-0.53468,-0.92581,-0.023069,0.54804,-0.91925,0.61773,0.058855,0.49406 1.711,0.54557,-2.0261,1.2562,-0.16173,-0.4818,-0.99522,-1.7321,-0.15542,-0.026235,2.1326,-0.91647,-0.60975,0.25151,0.82285 -1.5857,-0.50643,-2.4512,1.9743,-0.40455,-1.6142,1.2082,-0.32663,0.3704,0.9733,-0.060536,-0.60542,-0.1479,0.9997,-0.59339 -1.6231,-0.34078,-3.117,1.9813,-0.31852,-0.71705,1.0988,-0.079834,-0.10471,0.97938,-0.47768,-1.1295,-0.58347,0.93755,-0.35032 3.4454,-2.3246,2.5799,0.41814,-2.1422,0.58608,-0.67685,1.1756,-0.39177,-0.14868,-1.0919,-0.84567,-0.55483,-0.17918,0.036187 -0.095846,-3.4271,-0.78948,0.85835,0.63376,2.477,-0.6878,-0.22245,-0.16451,0.43324,-0.62702,-0.60403,1.1727,-1.111,-0.34801 -1.7029,1.2688,-1.0103,0.70355,-1.7711,-0.41954,1.1881,-0.52031,-0.77478,1.4494,0.14908,0.010242,-0.54014,0.86454,0.43874 0.23211,-2.1328,3.1175,-1.7013,-2.9142,0.67368,-0.28034,0.80921,-1.2652,0.51301,-0.43157,-1.0991,-0.69363,-0.21018,-0.20441 -0.12687,-3.7358,1.09,1.5942,0.1172,1.2981,-0.99294,2.5898,-0.47143,0.65416,0.39116,-1.5994,0.51574,-0.27069,-0.21008 1.5693,0.21765,2.322,0.095079,-1.8528,1.5877,-2.1744,1.2903,0.76292,0.60668,-0.2686,1.0406,0.3893,-0.22389,0.72966 -3.2818,-1.4184,0.65109,0.0099208,-0.47706,-2.2914,0.63024,0.34447,0.21463,-0.86224,1.0567,-0.69111,-0.67237,-0.63411,-0.88855 0.56506,2.1081,0.45158,0.47339,-2.1454,-0.9678,-0.98126,-0.68016,0.21235,-0.3336,-0.66478,1.093,1.3343,0.38245,-0.38103 2.2662,-0.79659,-3.2143,0.68862,1.2576,0.13509,2.8507,0.9261,1.3576,0.26867,0.31965,1.6338,-0.17749,0.3344,0.1358 1.2835,1.0218,-0.51512,2.2571,3.0258,-0.61684,-0.14104,1.3169,-0.20597,-0.29907,-0.87341,-0.22931,1.8391,0.46236,-1.8013 -0.6509,-2.4065,2.0792,-1.5734,-2.36,1.643,-0.81654,-0.034903,-1.624,0.62257,0.25885,-0.86028,-0.37142,-0.15586,-0.2871 -0.04121,0.46285,1.9357,1.5629,-1.391,0.0001783,-1.2944,0.4145,0.4132,0.87404,0.8718,1.1754,-0.50118,-0.4376,-0.0016808 2.9186,0.88078,0.53987,-2.5789,0.041752,-2.2497,0.97564,2.6437,-0.95186,-2.4804,-0.96192,0.049145,0.19662,1.0612,-1.5441 0.64716,2.4122,-0.99595,-0.26479,-2.6468,0.29635,-0.65865,0.046503,-1.1564,-1.7823,-0.74273,-1.0026,-0.28332,-0.88426,0.70842 0.18709,-1.9933,3.5039,-0.52886,-2.3668,-0.52478,-0.039806,-0.45333,-1.1404,-0.30365,0.6625,0.0096921,-0.55911,-0.34125,-0.86594 -1.1414,-2.2783,2.8046,1.3973,-0.93113,-1.5658,-0.48988,1.558,-0.82459,-1.2828,1.217,0.41888,-0.46201,-0.83051,-1.706 -1.2372,-3.7394,-0.67586,1.5037,1.9727,-0.1849,-1.3862,-0.99255,-0.82,0.17364,0.19728,0.29394,-0.40212,-1.6478,-0.92648 2.682,1.2511,-2.1679,-0.61746,0.36844,-1.3703,0.57622,-0.030736,1.7366,0.06276,-0.10943,-0.92966,-0.3394,0.48673,-0.67929 -1.6992,-1.3297,2.6349,-0.52019,-2.4938,-0.90736,0.28163,-0.86084,-0.6123,-0.75646,1.1195,-0.074483,0.33834,-0.37304,-0.1952 -0.17292,-1.4951,2.9997,0.70233,-2.163,0.010873,-1.0657,1.2538,-0.86938,-0.95245,2.01,-0.12734,-0.14395,-0.38236,-0.6004 -0.32936,0.96498,-0.27074,3.3889,1.4633,-0.19552,1.0832,1.065,-1.4012,1.2327,0.10614,0.34491,0.056308,0.44052,0.27311 -1.0155,-3.5425,2.3533,-0.48909,-1.7552,-0.43911,-1.1811,-0.2859,-1.0271,0.93369,0.83802,-0.50391,-0.091042,-1.0007,-1.1666 -2.04,0.37899,1.9628,0.096385,-1.1038,-1.6838,1.4849,-0.51728,-2.6244,-1.1863,0.94155,-0.069071,1.0289,-0.25225,-0.58841 -1.4565,-3.2213,1.224,-0.83294,-2.2105,0.92406,-1.3918,1.2938,-0.41731,0.39492,0.25898,-1.8307,0.84984,-0.14999,-0.58319 3.9994,-2.7851,-1.6987,0.61365,-0.35682,0.39584,0.71912,-1.2054,0.49118,-2.0165,0.23533,-0.085017,0.22784,-1.2246,-0.07366 4.3268,-2.4872,-1.2477,0.60355,-0.079442,0.96053,0.53564,0.45376,-0.69475,1.0775,-0.5372,-2.2373,-0.33129,1.0292,1.5694 -0.13318,-1.5997,3.8706,0.85471,-1.2515,0.4882,-1.5637,1.6213,-0.66506,-0.3629,1.4605,0.038307,-0.8034,-0.27456,-0.029833 4.5553,-1.5407,1.7948,1.1626,0.97039,0.86698,-1.0255,-1.0021,-0.96509,-0.78161,0.38127,0.40923,0.20421,-0.23252,-1.0541 -0.22133,-4.3321,0.77157,-1.0668,-1.8151,-0.28922,-2.2132,-0.80688,-0.48807,1.6013,-1.6872,-0.63323,-0.30267,-0.5678,0.33483 -1.8026,-3.133,0.80878,-1.8354,-0.58497,0.59843,-3.1973,1.2269,-1.0156,1.5587,-0.44025,-0.55864,0.59309,0.37741,0.48263 5.0164,-2.5695,2.2032,-0.41707,-0.39764,-0.70089,-1.9362,1.4243,-2.2999,0.14558,0.76001,0.027424,0.72237,0.21002,-0.51752 -1.1879,-2.577,0.35772,-1.8314,0.37965,0.7744,-3.0206,1.1055,-1.732,1.8305,-0.56567,0.85585,0.067626,0.72968,1.2328 -2.2721,-4.6445,0.4496,0.78234,0.97634,-0.60021,-2.3335,-0.52598,-0.99003,0.84256,0.40463,-0.077539,-1.3971,-1.1855,-0.38173 -1.1264,-4.0944,-1.3978,0.79745,1.5008,0.033451,-2.5808,2.1875,-0.41377,0.55278,-1.0831,-0.42553,-1.5614,-0.14672,1.2188 -2.3294,-2.8315,-1.4758,-0.43212,0.52304,-0.057326,-3.2118,1.2132,0.53524,0.60779,-0.81124,0.45149,-1.7329,-0.30576,0.89958 -0.21881,2.8134,0.043465,1.2529,-1.6664,-0.97366,-1.0867,-0.038983,-0.60786,0.33263,0.4051,1.1924,0.30761,-0.11281,-0.10914 5.0937,-2.3298,-1.0056,0.5491,-0.25764,0.7922,0.44337,-0.96373,-0.70441,-2.3154,-0.023067,-0.62429,0.076175,0.44617,-0.3335 1.1619,1.3435,0.021508,1.2991,2.1526,-2.1633,-1.0186,1.0591,0.39467,-0.5632,1.7099,-0.085991,0.50304,1.6221,-1.5878 1.8805,-4.0824,1.5939,-0.36605,-1.3066,2.2053,0.34143,-0.51681,-2.1035,0.19979,-0.087459,-2.0741,0.8994,-1.3431,0.28573 -1.1297,0.7566,-0.76183,1.3713,-0.73032,-0.89291,0.85618,1.1894,0.4107,-0.95519,0.19722,0.085142,0.02534,-0.14317,-0.28661 3.6538,-4.0813,-2.2661,0.85157,0.27478,0.090031,3.2115,1.168,0.21354,-1.2641,0.17637,2.2402,0.089183,1.2249,-0.12791 -1.3667,-1.6387,-1.563,0.53042,0.28427,-0.85075,-2.4544,1.0356,0.15135,0.29698,0.06971,1.5979,-0.59826,-1.6477,1.5192 1.4848,2.4503,-1.2738,0.16009,-0.47478,-2.1091,-0.69614,-1.0711,0.60211,-0.001553,-0.38561,-1.1368,0.08336,1.0023,0.11562 2.5507,0.69614,-1.9543,-1.0675,0.90801,-2.2032,0.50414,-1.1078,-0.60655,-0.062231,1.2675,-0.50718,0.24486,0.22527,2.9089 -0.089874,-2.2877,-0.54764,0.068254,-0.50004,0.36134,-1.9475,1.1822,-0.42536,2.1923,-0.217,0.68226,1.2427,0.84671,1.1273 1.9224,-1.9869,1.6223,2.6899,-1.6334,1.2246,0.73657,-1.273,-1.0481,-1.7812,-0.58728,-0.73776,0.16602,-1.4063,1.1075 4.524,-3.9973,-2.4404,-0.45148,-0.58559,1.732,1.7986,1.2523,-0.13212,-0.74562,0.33398,-0.18192,-0.2876,-0.28964,1.2529 -2.2341,-3.8419,0.12072,-0.59089,1.0182,0.012746,-2.1048,2.409,0.346,1.2612,-0.99777,-1.8028,-0.9787,0.44578,0.10146 2.5736,-1.7178,-1.5175,1.6452,-0.36274,1.1762,-0.030422,-1.032,-0.53437,-0.1729,1.7106,-0.3097,1.3815,0.24703,1.7301 1.9068,0.83341,2.0616,1.2772,4.041,-1.9712,-0.13286,1.5942,-2.0085,0.28402,0.99968,0.90059,0.46746,0.22742,-1.3808 3.2996,-0.62183,-0.40955,-0.39036,-1.4329,-2.0615,-1.1605,-1.2919,1.0456,-0.062402,0.19129,-0.57808,-0.035991,-0.85612,-0.12415 -1.4951,-2.9371,-0.49673,1.0615,2.5849,-2.1463,1.4534,-0.22363,0.13449,0.074451,-0.4534,-0.64645,0.99883,0.51012,-0.80029 1.4,0.060544,0.98096,2.1117,-1.6168,-1.3885,-1.7069,-0.90324,-0.06718,-0.25606,0.17622,0.69079,0.39955,-0.67889,-1.3671 0.25451,-2.0622,-0.59294,1.6529,1.4452,-0.83703,0.98537,-1.0957,-0.959,1.5066,0.11126,1.3655,1.217,-1.1139,-1.3602 -0.24383,-3.0186,1.1006,-1.5426,-0.41458,-0.33261,-0.484,-2.0259,-0.61679,1.3306,0.043156,1.0021,-0.76597,-0.026868,-1.2506 -1.1039,-1.7412,-1.818,0.018995,3.0038,-2.0525,0.44333,1.2025,-0.42315,1.709,-2.3309,0.72448,1.8055,0.94831,-0.079446 3.4917,-1.2971,-1.9192,-0.30552,-1.5181,0.46779,0.24331,-0.43867,1.4363,0.40896,0.80942,-0.53634,0.14817,-0.42344,0.88032 1.0796,0.73133,-0.90772,2.3425,-1.7374,0.37161,0.69579,-1.2373,0.466,-0.44076,-0.97293,-0.10975,-0.0056633,-0.14517,1.1339 -1.2542,-2.0656,-0.89268,0.21239,1.4453,-1.9158,0.74219,0.64926,0.11392,1.6009,-0.75793,0.48789,0.8625,-0.51931,-1.3714 2.0208,-1.5438,-0.35891,1.7645,-1.8886,0.89402,1.1613,0.13355,0.61955,-3.2932,-0.5984,0.010753,-0.64523,-0.76403,-0.21128 -1.0086,-1.5119,-1.8515,1.6673,1.4077,-1.8896,1.2501,0.83835,-0.56769,1.1332,-0.67016,-0.96903,0.298,-0.90822,-0.2823 -0.78081,-0.44831,-1.4105,-1.2752,0.28795,-0.89265,-1.0209,0.097553,-1.685,0.6072,-0.2506,2.6475,1.5875,-0.57078,0.56925 -0.0064059,-4.0524,-0.44465,0.95309,0.283,-0.7002,0.96699,0.6881,-1.3378,-0.37741,-0.40578,-1.3357,-0.15779,-1.458,-1.0063 0.11907,-1.5048,-0.67995,-2.5221,-1.0227,-1.9353,-0.064488,-1.8863,-2.8374,1.6388,-1.2699,1.9196,0.027,0.63617,-0.53645 1.0054,3.2537,-0.074787,-0.98103,-1.4724,-1.6932,0.063156,-0.71308,-0.19347,-1.3274,-1.3693,-0.56771,0.63949,0.69553,0.64309 1.9451,1.1949,-0.17631,1.1894,1.9495,-2.7526,-0.64559,1.7681,-0.16388,-0.11146,-0.30906,-1.1366,1.837,0.76433,-1.421 0.15459,-3.4995,0.81035,-1.1768,0.90365,-0.20477,-1.5149,-0.80466,-0.61113,1.7374,-0.56953,1.7676,-0.33997,-0.791,-0.81089 2.5317,2.0892,-2.1802,-1.5555,-0.17319,-1.3167,0.10207,0.37876,1.2978,0.86549,-0.54474,-1.4183,0.6904,-0.90593,-0.19849 -2.3553,-1.3288,-1.8297,-0.85346,0.58377,-2.9575,0.12422,0.94923,-0.74565,1.0191,-0.98607,-0.6111,0.81839,1.0131,0.016572 3.0952,-2.1815,-1.7329,0.019758,-1.429,0.50378,0.43685,-0.7736,0.36077,-0.58039,0.71347,0.75662,0.48179,-0.93351,0.74216 -3.5685,-0.68304,-0.36139,-0.40459,-1.1047,-1.4684,0.86403,0.34434,0.59794,-1.5884,1.2788,-0.91502,-0.97409,0.13563,-0.92681 -1.6092,-1.5166,1.4808,-0.3488,-0.30934,-1.8681,1.0879,1.97,0.77187,-1.2982,0.10182,-1.8127,-0.072939,0.39774,-0.21612 -0.75775,-3.3856,-1.1586,0.78162,1.6801,-1.4569,0.35332,0.53543,-0.27182,0.12287,-0.95729,-0.77151,0.10588,-0.7459,-0.38341 0.54957,0.45923,-1.0028,3.3827,0.04818,-0.40471,1.1249,-0.19032,-0.50777,0.75455,-1.0505,-0.79373,1.1723,0.76698,1.0766 4.9593,-3.1723,-2.3855,-0.89158,-0.54146,1.2174,2.1356,1.5408,-0.36507,0.93626,-0.17988,1.0759,-0.49919,0.15098,0.75213 0.3097,0.29304,-0.75134,2.9335,0.14486,-0.62328,2.1056,-0.2108,-0.96778,1.2793,-1.0301,-1.0297,0.9464,0.34391,1.057 0.037769,-0.98164,-0.5423,1.2029,-1.0603,-2.2297,2.5837,-0.32216,-0.031579,1.4602,-1.2572,-0.50253,1.2416,0.58928,-0.61262 2.1779,-1.2903,-2.0672,1.7391,-0.96069,1.5315,1.3904,-0.46427,-0.89536,-2.9579,-0.44191,-0.031574,0.54223,-0.57948,-0.78407 1.1771,-0.43231,-1.4275,2.7399,1.3811,0.070177,-0.60269,0.50293,-0.051755,-1.4884,1.3322,0.055905,-0.92917,1.1151,-0.92945 -0.79345,-0.18819,-1.7643,2.7383,-0.34072,-0.27748,2.0087,-0.4619,-1.0391,0.37537,0.17929,-0.58231,1.6502,0.050517,0.37812 -0.3242,0.79377,0.12429,2.2581,-1.5903,-1.8652,1.4235,0.032121,0.56352,1.0588,-1.0912,-0.065688,1.0353,0.78835,0.69319 -3.7346,-2.0054,-0.82329,-1.7834,1.488,-0.021524,-1.6441,-0.733,-0.87171,-1.2706,0.54211,0.5952,-1.1822,-0.31905,-0.79119 -2.0293,-0.30497,1.045,-0.17787,-2.6553,0.68344,-0.39139,0.359,0.535,-0.91017,2.0711,-0.20308,0.49142,-0.53994,0.079063 -1.6572,0.9194,-0.78412,1.1506,0.94558,-0.3763,0.58594,3.1319,-0.067164,0.69566,-0.84348,-0.84339,-1.836,-0.0083359,-0.0069676 3.7415,-2.31,-0.6678,1.7731,-0.27918,0.47162,0.66099,-1.5504,-1.0022,-2.0703,-0.27332,-0.86375,0.63098,-0.11456,0.88057 -1.676,0.12883,-2.4208,0.088471,-1.0978,-0.14725,0.58343,0.42487,0.083523,2.2642,-0.75602,-0.82606,0.84965,1.2153,-0.0017429 -3.8663,-1.2447,-2.5279,-1.6228,-0.24604,-1.3427,-0.56512,0.042867,-1.1443,-1.8538,-0.23713,-0.43558,-1.0523,-1.0224,-0.60378 -1.5332,-0.70645,-1.1177,2.118,-0.29459,-2.0388,1.4635,-0.81102,-0.32543,1.5141,0.34598,-0.60935,0.88975,0.53701,-0.3232 -0.9343,2.8251,-1.8246,-0.23044,0.060448,0.35675,-1.7135,1.3728,-0.57323,0.36334,1.2639,0.046352,-0.17403,0.22305,-2.2321 -0.34659,-0.42228,-0.67721,1.3645,-1.7337,-1.4629,1.8512,-0.22241,0.50958,1.8282,-0.59501,-0.43852,1.2269,0.49388,-0.1686 4.7565,-1.9851,0.94271,0.066026,-0.76579,-1.9763,-0.71159,-0.25886,-1.4821,-0.80311,1.0138,-0.12958,0.53086,-0.3825,0.0023516 -0.70338,-0.52726,-3.0575,1.9942,-0.20367,0.1027,0.38265,0.1864,0.16118,1.2414,-0.33507,-0.88638,0.81591,0.85039,0.092138 0.60687,3.307,0.74492,-0.28309,-0.57173,-1.513,-1.0869,0.80799,-1.5803,0.80634,-0.60533,-0.32251,0.45609,1.2858,0.31775 -2.6166,-3.3568,-0.1392,-2.0195,0.74761,-0.97497,-3.2087,-0.022512,-1.2623,0.78578,-0.70272,1.241,-0.59728,-1.0594,0.7288 2.528,-1.5121,-4.0154,1.3102,-1.3618,1.8463,1.8564,1.581,0.17785,0.78288,-0.53408,0.4944,0.023835,0.1949,-0.52956 -1.4377,-2.2775,-1.134,-3.2754,-1.2516,-0.46034,-0.16068,-1.4992,-2.6382,-0.54317,-1.5788,-0.26106,-1.6292,-0.80871,0.383 0.6191,1.6006,-1.1148,2.882,1.4545,-0.11039,-1.2001,-0.082458,-0.86933,-0.90827,1.4326,-0.60823,0.14923,-0.24039,-1.2548 -0.75365,-3.7549,1.8535,-2.0616,0.58019,-1.0097,-0.85279,-0.59435,-2.7406,2.1197,0.08195,1.0233,-0.68245,-0.63946,-0.81615 -1.1788,-1.2783,-1.0444,0.54136,-1.512,0.21742,-0.64704,-1.7866,0.43941,1.5208,0.82465,0.32813,0.25474,-0.44742,-0.76292 3.2083,-1.7113,2.4898,-0.80797,-2.7051,-0.38339,-0.17327,2.4925,-0.43031,-0.9452,-1.8723,1.0503,-0.82094,-0.35213,-1.1501 2.4026,0.49749,-3.154,0.53222,1.8909,0.55115,2.3084,0.24097,-0.12597,-0.56477,-0.4198,-1.2342,0.51853,-0.53732,-0.35624 0.22867,-4.6528,2.7916,-0.3143,-0.97682,0.41351,0.45467,0.19842,-1.3918,2.0943,-0.827,0.38681,0.18019,-1.0354,-0.99806 1.2304,0.12415,-1.3346,1.9119,0.60842,-0.67646,-0.69189,-1.9195,-0.113,-1.0245,2.3294,-0.44182,-0.33592,0.413,0.60782 -0.68387,-3.6291,2.4749,-0.10111,-0.39755,0.10329,-0.43596,1.4488,-0.055457,1.9699,-0.18575,-0.98525,0.25492,-0.20349,-0.13516 -1.3269,-3.1222,2.1233,-2.1818,-1.9608,0.58431,-0.97644,1.2577,-1.2001,1.1077,0.13102,-0.74642,0.89436,-0.30983,-0.54918 2.3065,-0.29376,-2.3708,1.0595,0.22559,0.38893,1.321,-0.31552,0.2807,1.5203,0.71151,0.31572,1.1701,-0.013226,1.4118 -1.858,-1.7674,1.5909,-1.0891,-2.2254,0.099856,-0.85667,0.15019,-0.095476,1.2804,0.49312,-0.69207,0.61131,-1.3932,-0.14166 1.8415,2.296,-0.3563,-1.7529,0.93422,-1.1191,-0.6434,1.1984,-0.48827,1.295,0.15823,-0.7215,2.1108,0.12108,-0.33215 -0.62722,0.5148,-1.8634,2.3241,-0.36792,0.72443,1.613,1.2737,-0.64449,-1.4816,-0.47662,-1.1372,0.45005,-0.29796,0.48761 0.40562,-3.4162,-0.31848,0.063606,0.44626,-1.9021,-1.6465,1.2506,-1.2373,1.0692,-0.48157,1.9846,0.70637,-1.3268,0.27076 -1.0797,-3.9531,0.96178,0.46558,-0.01665,-0.70075,-0.81657,2.1694,-0.73872,1.4057,0.26427,-1.099,0.13049,0.31837,-0.15567 -1.2868,-2.5548,0.78712,-3.1521,-1.585,0.43784,-1.0381,-0.82975,-1.966,1.7109,-0.81925,-0.045391,-0.55178,-0.38854,0.13851 -0.88163,3.5714,1.1422,-0.26212,-0.31847,0.26749,-0.10101,1.2753,-2.689,0.13722,-0.42768,-0.048763,0.39648,0.77588,0.61576 0.055781,-4.0146,0.78767,-0.64375,-1.508,-0.86945,-0.72368,0.66468,-0.8661,1.7252,-1.0227,0.31107,0.592,-0.38156,-0.24513 -0.31382,-2.1265,2.0501,1.8278,-0.18687,-1.0021,1.5856,-2.2223,-1.8916,-0.15704,0.35371,-0.074177,0.058426,-0.65412,0.26861 0.83073,0.63489,0.538,2.4441,1.1529,-1.3273,-2.0132,0.54097,0.24685,-0.50704,1.9241,-0.213,-1.2017,0.45278,-0.82492 -0.60874,-4.5364,1.3021,-0.84429,-1.386,-0.47632,-1.3774,-0.44809,-0.81411,1.9633,-0.22776,-0.12167,0.43991,-0.53221,-0.60576 0.15548,-5.4315,1.2081,0.6148,1.593,-0.26546,-1.4658,-0.068477,-2.6938,1.4492,0.29461,1.4672,-0.0056483,-1.3379,-0.84397 -0.56355,-5.7166,0.47626,-0.11262,1.8082,-0.12213,-2.6302,2.149,-2.2888,1.6072,-0.84618,0.95296,0.12073,0.019609,0.061664 -0.46799,-4.2064,2.0984,1.1646,0.55632,0.68606,-1.2596,1.253,-1.398,1.6924,0.44975,-0.16214,0.13459,0.010689,-1.3807 1.9266,-1.2141,1.636,2.6527,-1.6734,0.23591,-1.4741,-0.28741,0.62473,-0.52014,-0.86405,0.34879,-0.14787,-0.91392,0.36405 -1.2456,-2.4742,-0.72763,-0.59274,-0.26116,-1.5757,-2.9409,-0.49674,-0.57309,0.34845,0.15851,2.4552,0.024489,-1.2243,0.97157 -0.12793,-5.6195,1.6507,0.19585,1.5716,-0.47446,-1.62,0.038473,-2.876,1.1215,0.48285,1.2634,-0.39404,-0.91066,-0.94638 4.7119,-1.0142,-0.78369,-1.0123,-1.1372,-0.23465,-0.91952,-0.41559,1.0803,-0.10094,0.0014087,-0.85902,-1.0924,-0.58101,-0.3009 -0.42124,-4.4099,0.29768,0.45981,2.4802,-1.9571,-0.93588,-0.68504,-2.3698,0.48395,-0.44165,2.1303,0.36708,-1.9378,-0.95475 1.2582,-4.2716,2.6302,-0.59293,-0.74114,0.6257,-0.48167,-0.36846,-1.6739,1.0815,-0.8841,0.77992,-0.54061,-0.69687,-2.255 -0.75797,-4.425,0.74265,-1.6595,1.228,-0.77666,-2.8271,0.1563,-1.5571,1.293,-1.0677,2.2964,-0.48675,-1.2579,0.1088 0.72231,-4.0189,-0.37314,0.20735,-0.33232,-0.14269,-1.7927,-0.0023223,-0.75612,1.7825,-1.4966,2.0303,0.38621,-1.2681,0.45956 2.0693,1.8111,-1.4888,-1.1813,-1.5116,-0.22342,-0.86111,-1.2722,0.5221,-0.18729,0.48914,-0.81881,1.3437,0.21663,-0.16773 -0.75075,-3.5617,0.60839,-1.465,-1.2818,0.066275,-2.0761,-0.27567,-1.5199,1.2517,-0.75488,1.2024,0.59009,-1.151,-0.096575 -2.5564,-1.2066,-1.5432,-0.53316,2.3422,-2.5968,0.83613,0.67668,-0.2457,1.263,-1.6453,-0.66578,0.68336,0.51944,0.27736 0.73694,0.85041,2.3808,-1.5859,-2.5534,1.562,-0.06642,1.0152,-1.433,0.50603,1.2229,-0.52295,1.1148,0.29373,0.97357 -0.56816,-4.493,-0.89029,1.6296,2.8566,0.26142,-1.3743,0.90083,-1.5853,-0.40272,-0.68891,-0.22884,-0.31274,-0.78353,0.57134 0.8187,-2.9372,1.154,1.6212,-0.519,1.7182,-0.74281,1.3879,-0.12455,2.3214,0.24999,-0.57102,1.339,0.2312,-0.59188 -2.1726,-2.3689,-2.0826,1.084,-0.56763,-1.9184,-0.58612,-0.21659,0.95963,0.079195,0.12096,-0.36672,-1.4416,-0.97653,-1.0999 4.5118,-2.3363,0.85957,1.5807,-0.8626,1.6466,-0.92394,1.0026,-0.70585,-0.65069,-1.5295,0.28765,-0.60688,-0.50294,-1.3011 0.34801,-3.4278,1.144,0.18372,-1.563,1.1101,-1.1324,-0.035745,0.085012,1.7932,-0.46104,-1.3333,0.85382,-0.50673,-0.14317 2.4702,1.0623,0.32773,-0.095779,-0.86285,-2.628,-1.2197,-1.8359,0.54535,-0.74747,-0.26222,-1.0591,-0.93629,0.70609,0.39232 -1.2226,1.7737,0.075817,1.677,-1.0368,-1.7376,0.88223,-0.030153,-0.24382,1.3765,-1.0484,0.24669,0.74545,1.1674,0.82907 0.62483,-3.2462,2.1828,1.7878,-1.2805,0.76466,-0.0085324,0.20231,-0.34701,2.0522,0.66863,-0.91409,0.12254,-0.54702,0.08607 -0.20095,-2.9956,0.75887,1.736,-1.0537,-0.3896,0.11378,-1.665,0.30101,1.3713,0.55258,0.019942,0.13959,-1.6706,-1.2433 1.5672,-0.028449,1.7633,1.7889,-2.0439,-1.9176,-0.20461,-0.88117,-0.97319,0.24348,-0.56219,0.30342,-0.95051,0.052896,0.66392 0.30001,-0.22562,2.4401,0.49755,-2.8111,0.50169,-1.9176,1.0033,-0.52355,0.03299,1.4592,0.76073,-0.034591,-0.071591,0.64132 1.1627,-1.367,-1.1134,0.0044635,-0.66065,0.093735,-0.87237,0.87933,0.71136,1.2155,3.2463,1.8525,-0.16196,0.59419,1.0389 -1.2729,-0.54176,0.37138,0.27232,-1.4407,-0.90982,1.6482,-2.3998,-0.70093,0.28406,0.77809,-1.3779,-0.5172,0.96213,0.54604 3.683,-2.5474,2.4765,2.643,0.54505,1.6872,-1.6372,1.2813,-3.1672,0.86727,0.58521,0.031464,0.43009,0.63871,0.38718 -0.9266,-0.14091,-0.28738,1.6536,-0.30312,-1.1545,2.6198,-2.5094,-1.2828,0.97255,-1.2972,-1.1362,1.0553,0.17348,0.84313 0.77501,1.8739,0.50604,1.6432,-1.4792,-1.6573,-0.77579,-0.5628,-0.2423,-0.46365,0.34754,0.69721,0.57917,0.71885,0.13923 -0.32468,-1.8609,3.7212,-0.21776,-1.7634,-0.049178,-0.95328,2.1562,-0.6728,0.68187,0.94426,-0.29053,0.077942,-0.76834,-0.029119 2.9077,-3.3864,-3.0354,0.74857,-0.80187,1.2245,2.327,1.045,0.41062,-1.588,0.33014,2.0066,-0.25181,0.81856,0.21501 2.2104,-2.8071,2.5803,2.904,0.88454,2.3612,-0.59276,2.2462,-2.5684,1.5313,1.0323,0.23782,0.86401,0.64896,-0.078442 -1.596,-2.5757,0.38747,-0.017157,-1.4204,-1.9688,-0.81244,-1.8041,-0.18483,1.2945,0.6854,0.41197,0.21455,-1.109,-0.81411 -2.1718,1.3229,0.25817,0.7214,0.68364,0.42486,-0.96331,2.6516,-0.88051,1.2908,0.70487,0.7257,-1.3578,0.95377,-0.48351 -1.8293,-3.9946,0.61489,-0.48162,-0.63706,-0.63549,-2.5493,0.12951,-0.13283,1.7653,-0.091757,-0.36509,-0.22478,-0.6641,-0.22495 0.89978,-1.9906,1.6213,0.59017,-0.79353,-0.95088,2.6905,-1.6794,-2.4925,0.92495,-1.0927,0.070049,-0.35619,-1.417,-0.31864 -3.4225,-1.3588,0.91411,-1.5179,-1.572,-0.029805,-0.085158,-0.2378,-1.0605,-1.4332,1.6045,-0.80571,0.63836,-0.73538,-0.044166 0.34499,0.09074,-0.57672,1.8821,-1.5216,-0.36668,1.527,-0.55258,0.14092,-0.074238,-1.6659,0.90581,1.0955,-0.52606,-0.31368 3.8994,-3.9054,0.41083,-2.8908,-1.0787,-0.73731,0.70091,2.5381,-3.041,0.48827,1.1457,2.2956,0.54624,-0.48655,0.49212 1.8932,-1.4081,0.46888,1.1718,-1.0004,3.3669,1.3098,0.88314,-0.0080498,1.6202,-0.37042,-0.54165,0.57871,0.18566,-1.0028 2.9678,-2.5992,-1.5329,1.4503,-0.34629,2.1775,0.38861,-0.64338,-1.5538,0.62465,1.2947,0.45529,1.6665,-0.12153,1.3454 0.11336,-2.1517,-1.1024,-1.7416,-2.4897,0.92137,-1.7075,-0.96211,0.0037156,1.2509,-1.7598,0.024915,-0.92784,-0.28301,0.52895 3.0742,0.45098,-1.5928,1.713,-0.46063,-0.51461,0.393,-1.559,0.89405,-1.5897,-1.1541,-1.4725,0.0028587,0.14208,-0.55517 -1.5639,2.7735,-1.3097,0.40925,-0.79418,1.2464,1.4221,0.95991,-1.8615,0.20645,-1.9462,-0.69388,-0.51145,-0.62199,0.77658 1.2637,-1.7363,1.0083,1.4099,-2.714,-0.17623,1.1211,-0.31362,1.1723,-0.81765,-0.90981,-1.0119,-2.0278,-0.92895,0.51798 3.4349,-2.1434,-0.081885,2.1213,-1.3069,1.8843,-0.18418,1.6943,0.20166,-1.2603,-1.8911,-0.43382,-0.8914,-0.86461,-0.96023 0.46901,1.9343,-1.0261,1.1999,3.8928,-1.238,-0.083589,1.2744,-0.65275,1.1039,1.1041,-0.48852,-0.49882,0.94975,-1.1487 2.275,-2.0326,0.54038,1.4394,-1.3224,1.8049,0.27109,0.38721,-0.15448,1.9471,-1.2704,-1.4958,-0.22705,0.27602,0.43289 0.74059,-3.0797,0.71248,0.222,-0.69193,1.166,-1.2763,-1.5841,-0.94211,2.5549,-0.9095,-1.754,-1.3007,0.3629,0.48215 0.30709,0.43645,0.037199,-0.7101,-2.8139,2.5762,-0.41403,0.74519,-0.27372,0.80485,0.51245,-0.86835,1.3989,0.78195,0.79791 -2.1782,-3.1476,-1.5308,0.055991,-0.61351,-1.3913,-1.5443,0.344,0.069711,-0.50336,-0.44599,-0.73462,-1.7977,-1.3883,-0.39513 3.4905,-2.2593,-2.3061,-1.9622,-1.7027,0.10342,0.68668,2.0385,1.1224,0.58568,0.15141,0.99606,-0.10216,-0.73541,-0.085797 0.78931,2.4209,0.17483,-0.27385,0.65837,-2.0282,-1.7497,-0.094318,-0.29533,-0.36601,1.0005,0.6026,0.93468,-0.00049269,-0.30592 -2.4986,2.2593,-0.27241,0.19644,-1.0673,0.14375,1.068,0.74708,-0.91107,-0.84804,0.58142,1.123,-0.48478,0.54032,-0.72939 0.65643,2.4504,-2.606,-0.61929,-1.3581,-0.34621,-0.40256,0.10712,1.1355,0.11147,-0.92574,-0.8969,0.77985,0.094378,-0.17887 -0.34288,-3.4283,-1.9044,1.2215,0.18382,-0.37314,-2.2722,1.3834,0.17441,-0.072632,-0.80449,0.63644,-1.2696,-1.506,1.0529 2.8897,-1.2422,3.2051,-0.23373,-2.2914,0.36316,0.98034,0.44807,0.10566,0.52812,-0.1789,0.40861,-1.1234,0.42392,-0.56981 4.1979,-1.9031,-1.9775,0.10867,0.37987,0.14182,3.1913,-1.2721,-0.12639,-1.7967,0.24096,-0.18557,0.36447,0.1725,1.4094 -1.7595,-0.10506,-0.03589,1.8178,2.2578,-1.1971,1.16,0.84362,-0.32885,1.0147,0.54219,-0.68061,-0.75308,-1.117,0.29097 -1.0775,1.3015,-2.1199,1.3539,-0.51203,1.8091,-0.59038,1.6533,1.2138,-0.69099,-0.72631,-0.23207,-0.84669,0.53638,-0.40842 -1.1694,-2.7368,-1.649,-0.38296,-1.3875,0.16297,-2.4362,1.084,-0.094814,0.48515,-0.47693,0.31055,0.34701,-0.56297,0.54688 2.7979,-2.0632,-2.0075,-2.9016,-2.1046,-0.84271,1.605,3.144,0.49341,-0.050466,0.66342,2.6259,0.1064,-0.077895,0.22705 -1.11,1.3859,-0.82077,2.8621,-0.37522,0.16385,-0.4709,0.84659,0.0083741,0.28767,0.7779,0.58024,-1.8065,0.29511,-0.76021 1.0855,1.8895,-2.9684,-1.8416,-0.037378,0.20626,0.25584,0.77882,0.26932,-0.41865,0.95912,-0.87469,0.82039,-0.16453,0.52596 -0.4668,-2.5462,-2.0447,-0.15018,-0.62107,0.64282,-2.2525,1.9424,0.58386,0.56647,-1.0083,0.57245,-0.13282,-0.18996,1.225 -0.44172,2.8105,-1.1818,-0.0073307,-2.3052,-0.2882,0.18154,-0.044648,-1.0567,0.093296,-1.3226,0.036655,0.51658,-0.30551,1.0324 0.036155,-1.633,-2.6481,1.0263,-1.4831,-0.045078,-1.2522,1.1672,0.20388,0.34792,-0.60947,0.48675,-0.91172,-0.89106,0.3327 4.5667,-2.9566,-1.1084,-0.23183,-0.37112,1.2171,-0.41754,0.93937,0.087707,-0.8817,0.39302,-1.538,-0.050071,-0.28102,0.70978 -0.74428,-2.4776,-2.194,1.0845,-1.2563,0.45583,-1.6837,0.8553,0.60961,0.96132,-0.41659,-0.25656,-0.02513,-0.23936,0.42995 1.9096,0.14108,-3.3319,0.62181,-0.68977,0.56979,1.2215,0.11018,1.7136,0.29038,-0.058532,-0.1426,0.58861,-0.18898,0.41123 3.8551,0.17361,-0.83477,-3.2451,1.1542,-2.8496,1.6719,1.5529,0.74869,-0.13004,0.61602,-0.14715,-0.15805,0.93778,0.88066 2.548,0.14252,0.82255,0.68054,0.41467,-1.9609,-0.87884,-1.9623,-1.1718,-1.6307,0.85252,-1.3686,-0.517,1.3079,1.0797 4.3737,-4.0945,-1.4423,-2.5606,-0.71988,-1.7631,1.603,2.8095,0.12006,-0.74649,1.3746,2.4261,-0.21754,0.087927,-0.59029 -1.5117,-1.0112,1.921,1.3593,-0.95267,-1.1792,0.82932,-1.922,-1.0005,0.55385,1.1787,-0.16676,-1.2583,-0.4442,0.71963 3.693,-0.47912,-1.8439,-2.4716,-0.9849,-1.9332,1.2784,0.080942,2.3228,-0.53219,1.0577,0.0018747,-0.36078,0.67347,0.70085 4.3513,0.45164,-0.088725,-2.4197,0.70337,-3.1671,0.85308,0.21696,0.58269,-0.48136,-0.18314,-0.92568,-0.27181,0.89041,0.27472 2.3437,-1.065,-2.8651,0.75327,-0.73731,-0.041583,1.971,0.91662,1.653,0.42099,0.13216,0.71384,-0.10569,0.65338,0.37954 3.6678,-0.021558,-0.10482,-2.1255,-0.60222,-3.0136,-0.13603,0.96217,1.2963,-2.0132,0.31685,-0.26748,-0.29251,0.81508,-1.3428 3.9278,0.43268,-0.76984,-3.1783,-1.5653,-1.6804,-0.48942,0.65429,0.22207,-2.9741,1.4067,-0.48137,-0.39137,1.0703,0.19352 -1.2477,-1.5538,-2.1763,1.6426,-1.1962,-1.0564,0.56906,0.18479,0.8764,-0.10218,0.84082,-0.61094,-0.67401,-0.35203,-0.6658 2.1087,0.31763,1.2073,0.85229,0.013555,-2.2034,-2.4697,-0.76625,-0.71474,-1.3673,1.7814,0.63578,0.74592,0.058887,-0.93585 3.7063,-0.27315,-0.9993,-2.6827,-0.10236,-2.8551,0.1946,1.2765,1.0144,-1.7176,1.4675,0.55271,0.60083,0.62878,-0.99736 2.1067,-2.1644,-0.86847,1.2313,1.6666,-0.99967,-0.066103,1.1094,0.82009,0.32745,2.5897,0.928,1.2382,-0.43455,-0.38918 3.7147,-0.2228,1.633,-2.1562,-1.6764,-1.5373,-2.3378,0.27453,-0.83418,-1.0382,0.17425,-0.47559,-0.69493,1.0415,0.36695 3.9919,-0.19772,0.52427,-3.0443,-1.4893,-1.9291,-1.2467,0.30465,0.10469,-1.8323,0.39733,-0.56921,-0.12432,-0.3527,-0.7514 1.9544,0.21065,-1.4179,1.3342,2.033,-1.3703,0.19216,0.27891,1.3053,-0.92993,-0.18493,-0.87564,1.3273,-0.31002,-0.82164 2.1248,2.814,-0.24177,-2.5302,-0.56429,-1.9308,0.0057977,0.49014,-0.98535,-2.8873,-0.68453,-1.5169,-0.1661,0.021644,-0.15888 1.2072,1.1058,-0.9073,1.3974,2.4068,-0.58393,-0.20234,1.1283,1.0446,1.5856,-0.46443,-0.12719,1.3916,-0.049199,-0.96929 -0.36012,-3.8014,2.4795,1.674,-0.15761,0.64974,-0.096763,-1.5187,-1.6874,0.77899,0.85712,-0.11605,-0.4114,-1.6166,-0.74983 -3.2455,-0.44371,-0.2114,-0.19872,0.22627,0.8503,-0.30155,0.49601,0.062879,0.43538,1.9208,-0.087082,-1.9436,-0.24568,-1.3251 3.7772,1.9928,-0.012217,-2.2927,0.32996,-3.2936,0.21674,0.41026,-0.31793,-0.35128,-0.57589,-1.1504,-0.47893,0.66558,-0.021058 2.5762,1.268,-1.5048,1.7292,1.2957,0.68206,1.4469,-1.4738,-2.6641,-0.047471,-1.4318,-1.1437,0.87169,0.52049,-0.18528 1.6684,2.1196,1.7489,-0.91937,-2.1712,-1.8451,-1.2748,-1.1668,-0.35129,-1.2351,-1.0808,0.45344,-0.43069,0.24194,0.16405 -0.21007,2.0072,1.2119,-0.81546,-2.2175,-0.93438,-0.37475,-0.28083,-2.0406,-2.8811,-0.39264,-0.090923,-0.70463,0.11563,0.82633 2.1397,2.2737,-0.86717,-2.1617,-0.76235,-2.1475,-0.76698,0.17265,0.69491,-1.1925,0.17339,-1.2827,-0.44033,0.73666,0.0045803 2.3824,-1.0003,-0.93443,0.66456,0.5594,-1.8634,1.0041,-2.7768,-0.94403,-1.4257,-0.17327,-1.2457,-0.12034,0.52353,2.53 0.16699,2.3871,0.79662,1.2477,-0.19648,-2.6877,-0.099109,0.32663,-1.1105,-1.068,-0.82895,0.003468,1.8277,0.37315,0.15348 3.4308,-1.9008,-1.7513,-1.2664,-2.0947,0.072832,0.10507,0.65193,0.91428,-0.11161,1.0681,-0.0094644,0.5508,0.35509,0.86272 -1.5533,-4.1117,-0.051803,1.0698,1.0084,-2.0958,-0.21547,0.6218,-0.6536,-1.6267,0.58282,-1.3198,-1.3391,-0.61736,-0.48194 1.1812,0.067323,-1.0849,1.8723,3.7808,0.26401,0.40679,1.1941,-1.3749,-0.67041,-0.48719,-1.4454,2.425,-0.49701,-0.052771 -0.67061,2.0037,-0.72221,-0.22732,-2.2496,-0.54271,2.176,1.1364,-0.50485,-1.8708,-1.1297,0.71163,-0.25928,-0.49628,-0.090369 4.5996,-2.1323,-1.5354,-0.2591,0.21297,-0.728,2.0294,-0.067826,0.9773,-2.2711,0.92309,-0.46419,-0.54382,0.95022,0.2314 3.3578,-4.0928,-1.4163,0.76441,-0.3344,2.2302,1.8062,2.2082,-1.3822,-0.31553,-1.1101,-0.58368,-0.78171,0.96442,-0.56644 1.5117,-2.9286,-0.083542,0.033341,-0.49359,-1.2899,1.2392,-3.0883,-2.1398,-0.70621,-1.3052,0.10267,-0.37575,-1.0956,0.32423 -1.1324,-3.928,-0.65135,0.67038,1.0428,-1.2633,-2.3596,-0.51747,-1.8307,0.72364,-0.97842,0.51652,-0.19489,-0.87495,1.0177 4.9611,-1.0802,0.27775,-0.079815,0.19152,-0.11253,-0.80691,-1.4741,-0.11184,1.2802,1.6982,-1.1855,-0.98541,0.11223,0.84849 -1.3184,-3.1634,-1.3228,-0.20164,-0.61672,-0.65579,-3.1876,0.51086,-1.6804,-0.2116,0.24102,1.3221,-0.82641,-0.16133,1.7814 -4.2626,-0.89559,-0.83265,-1.5125,-0.85836,-1.3669,0.02096,-1.285,-1.5231,-0.44991,0.83832,0.0091207,0.52225,-0.31226,-0.82903 -1.7103,-1.2008,1.3082,0.23847,-2.4484,-1.4387,0.42972,-1.6773,-0.44893,0.8462,1.2018,-0.18754,-1.0976,-0.020505,0.093409 0.69447,3.3804,-0.36511,-0.37938,-2.1865,-0.60863,-0.21265,-0.32585,-1.1884,-0.36317,-1.7152,-0.90501,-0.02064,0.37486,0.24526 -2.2082,1.197,-1.6537,-0.064465,-0.73091,-1.0531,1.2878,2.3685,-0.15031,0.43306,-0.52429,-0.71882,0.071935,0.51273,0.97339 0.28439,0.37437,-0.26674,2.6335,-0.89896,-2.0586,-0.9863,0.77922,0.34915,-2.4075,0.35182,-0.75304,-0.81256,0.45154,-0.31507 1.6906,-0.2968,0.74413,0.063134,0.37325,-1.8266,-0.85882,1.5868,1.5199,-1.6888,-0.3466,0.73118,1.561,0.63009,-0.47583 -2.9365,2.2949,-1.2786,0.41714,-0.073699,1.0789,0.68921,3.3084,-0.50185,-0.25605,-0.48563,-0.31145,-0.55131,-0.64246,0.78067 0.60563,0.037119,0.58313,2.2513,0.35817,-1.4664,0.72917,1.5991,0.96454,-1.5448,-0.50422,0.3061,1.0409,-0.017894,0.1273 -0.17998,-1.7043,1.589,1.4746,0.56718,-0.75882,1.8458,0.85725,1.37,-0.99354,0.077512,-0.44864,0.66949,-0.59049,0.54271 2.5968,-0.39328,-1.2596,-0.12735,-0.43921,-0.87492,-0.42377,-1.6631,0.42856,-0.38168,1.6215,-1.7193,-1.2722,0.44742,1.8699 2.4165,-0.74225,0.15744,1.6547,-1.6357,1.8253,-1.8272,0.29058,-0.24325,0.06409,-0.13602,-0.026746,1.1926,-0.22289,0.22988 -1.4628,0.33809,-0.27863,1.5708,-1.2398,-1.7397,1.4704,0.43667,-0.16535,-0.53577,-0.52371,-0.61604,-0.40149,-0.67123,0.32382 3.9202,-1.9055,-0.22005,0.89122,0.93197,-0.3155,1.0961,-2.4706,-1.9652,-1.7568,1.5006,-0.92806,1.8673,0.56555,1.7692 1.7098,0.63914,-1.9586,1.4334,-0.17538,1.7418,-1.2284,-0.66528,-0.93521,1.3803,2.3682,-1.0568,0.18026,1.4888,0.22171 0.72451,-2.2247,0.7755,1.0696,-0.87733,2.9028,0.19382,0.35438,0.27396,1.6304,0.50488,-1.066,0.95972,-0.42012,-0.42805 5.8222,-3.1773,0.040695,0.48379,-0.32809,1.4808,-0.36137,0.59571,-1.8843,-1.2961,-1.4197,-1.2708,-1.0052,0.038862,-0.12007 0.25836,-1.0991,0.61493,1.6751,-0.72674,0.51364,-1.0929,2.7409,0.95817,-0.88451,0.30982,-0.044813,0.1865,0.11423,0.44805 1.2099,1.0211,-0.22679,-0.13493,-2.5995,-0.70057,0.66667,-0.084867,0.3937,-1.7989,-1.7872,1.317,-0.92721,-0.96913,-1.5422 2.8149,-1.1129,-1.748,0.34671,-0.65581,2.67,-0.55283,-1.0423,-1.165,0.61707,0.99915,-1.3707,1.546,0.33836,1.8531 1.4905,2.2249,-1.6764,-0.00095299,-0.9943,-1.3697,-0.43387,-0.065092,1.6139,-0.86759,-1.2141,0.11493,0.6705,-0.024374,-1.2654 2.5739,1.6587,-1.8074,-2.4644,-0.5637,-2.0859,0.5314,-0.11104,1.2917,-1.5735,0.9727,-0.91313,0.81959,1.1122,0.6429 0.27694,-2.3011,-0.11698,1.2378,-0.92241,2.7312,0.4557,-1.8464,-1.0996,0.26313,0.45019,-0.69051,0.56101,-1.6418,-0.58196 1.9147,-0.76274,-0.5561,1.9195,-0.73903,-0.01363,-2.3151,-0.1326,0.47266,-0.27898,1.2967,0.24502,-0.15449,0.55611,-0.15736 -1.1956,0.073718,-1.723,0.78698,-1.2005,-0.67291,0.60921,-2.0783,-1.6229,1.0779,0.50325,0.12362,-0.01061,0.47917,-0.046014 1.6926,2.473,-0.84712,-0.19476,-0.80495,-1.3885,-0.74858,-0.37784,-0.84668,0.26044,-0.37983,-1.962,-0.53453,0.58495,0.5809 1.5715,1.2468,-0.52512,-0.56023,-2.4461,1.5761,-1.8613,-0.64439,-0.35365,-2.035,-0.18789,-0.12631,0.38881,-0.26121,0.37035 0.61342,3.1538,-1.927,-1.9742,0.12401,-0.14603,-0.86038,0.99057,-0.43558,0.46941,0.42824,-1.8422,0.39428,0.16369,0.20852 1.5783,2.1669,-2.1106,-0.25239,0.77446,-0.63633,-0.53179,0.37499,0.56402,1.7032,0.16506,-1.933,-0.6019,-0.073813,0.74415 -3.7332,0.01262,-2.3846,-0.95724,1.0453,0.80444,0.24364,1.436,-0.65425,0.50263,-0.22429,-1.7256,-0.45329,-0.24626,-0.40935 0.2606,1.0533,-1.0726,1.8086,-1.2077,-0.28446,-0.32489,-1.9257,-0.91281,-1.2764,-0.94048,-0.83993,0.14354,0.76292,0.8161 -1.4416,-2.2154,-1.4033,-0.4262,0.65171,-1.2045,-2.5587,2.042,-0.59553,0.023371,-0.41362,0.51119,-1.0701,-1.3862,2.0605 0.2358,2.5612,-0.54357,-0.10461,0.010309,0.067386,-1.3402,1.6947,-0.46092,0.6096,-0.98926,-1.3302,-1.0767,0.60398,-0.17717 1.8662,0.44887,-2.3846,-0.50427,-0.35267,-1.2767,0.73126,-0.22909,0.42916,0.32771,2.3068,-0.035067,-0.43931,1.1239,1.2332 -0.34786,3.3093,-1.0546,-0.017603,0.04892,0.11218,-1.4004,1.509,-1.0038,0.43893,-0.86963,-1.091,0.068673,0.94361,-0.75299 -1.372,3.0201,0.44256,0.50833,-0.29764,-0.33288,-1.3387,1.8259,0.070863,-0.54797,-0.43739,0.07905,0.85247,0.2241,0.53787 1.3486,2.4734,-2.0481,-0.51135,0.17138,-0.76005,-0.68752,0.2664,0.51447,1.5573,0.031988,-1.7112,-0.2853,0.31429,0.47845 3.6327,-2.4062,-0.49722,0.11778,1.2346,-0.57344,2.3527,-1.0034,-0.78537,-2.1731,-0.21483,-0.81325,0.82665,0.87441,1.8484 2.9626,-0.84218,1.341,2.1902,-0.42049,2.5615,-1.6412,-0.25571,-1.425,0.42783,0.25756,-0.12533,-0.11373,0.70949,0.88008 1.4653,2.5421,-0.53169,0.95214,1.4002,-1.2294,-1.1997,-0.48271,-0.50713,1.7057,-0.77028,-2.0273,0.13653,0.64735,0.50797 1.6401,-0.67115,-2.1108,1.2153,-0.3061,2.6374,-0.008492,-0.23765,-1.2855,1.1334,1.6487,-0.024875,2.2599,0.66214,0.94322 1.1252,2.4778,-2.7312,-2.3346,-0.17915,0.29952,-0.60434,1.5327,-0.015506,0.28339,0.8546,-1.3172,0.12863,-0.55453,0.17606 1.229,0.27658,-1.6219,2.3024,3.7004,-0.13581,0.49622,0.53745,-0.70974,-0.70947,0.45955,-1.4098,1.643,-0.13498,-0.48839 1.7401,2.452,-1.4649,-1.4551,-0.66478,-1.8901,-0.80072,0.091003,0.53389,0.32664,0.14056,-1.6193,0.19628,0.6829,0.36276 -1.2118,2.5109,-0.84564,0.43289,-0.55064,0.60226,-0.7978,2.0979,-0.82222,0.36303,-0.99919,-0.29347,-0.91181,0.56589,-0.43928 3.298,-1.338,-0.50805,-0.56286,-1.1841,0.17533,-1.6742,0.21799,0.55426,0.98263,1.4629,-0.095937,1.7367,0.56988,0.16179 0.94267,2.0681,-2.1296,-1.8901,0.26209,-1.1765,-0.17986,0.95743,-0.074956,1.4549,1.1452,-0.72589,-0.28135,0.2267,1.206 -0.35194,3.7804,-0.81138,-0.57277,-0.8429,0.38285,-0.66005,1.5707,-1.7844,-0.42168,-1.6632,-1.3569,-0.33974,0.34509,-0.049227 1.6609,-1.057,1.9641,2.0225,-0.113,1.037,-2.0896,3.0156,0.13734,0.67631,1.1389,0.59899,0.36952,1.0103,-0.75354 4.0254,-3.1927,-0.066938,-1.7389,-1.6168,-0.32689,0.39293,0.99135,-0.19318,1.8125,0.87617,1.437,0.44161,0.3762,1.6369 -0.46517,-2.1995,2.1316,-0.49429,-1.5093,1.4451,-1.2696,2.5179,-0.19868,1.1593,1.0183,-0.51549,1.206,0.28084,-0.87512 -1.8311,1.743,-1.9494,0.47326,-1.1869,1.5595,0.51127,1.0368,-1.3328,0.40407,-0.15599,0.27073,-0.0099783,0.10357,0.17837 0.19105,-0.89644,3.3268,0.7321,-1.3085,-0.40631,-1.53,1.7875,-0.23903,-0.54751,2.1303,0.52691,-0.27093,0.44787,-0.70853 1.8584,1.2987,1.401,-1.1184,-2.3142,-0.17866,-1.4111,-0.31418,-1.7627,-2.5912,0.52398,0.48282,1.2828,0.0022587,0.31679 -1.9791,-2.7983,0.094698,-0.17725,-0.90505,-0.5071,-0.41185,1.6336,0.55602,-0.69281,1.1734,-1.4726,-1.0453,-0.8472,-1.3578 -2.4791,-2.5106,0.55333,-1.6277,-1.9017,-1.0918,-0.70881,-1.1014,-1.1742,-0.85017,0.62633,-0.26522,0.77816,-0.46172,-0.61324 0.43635,1.1313,2.3803,-0.84771,-2.646,-1.3509,0.76851,0.024161,-2.2149,-1.7233,-0.18651,0.37342,0.53706,-0.23082,-0.20121 3.6479,0.11922,-0.21327,-1.0881,-0.080169,-3.5017,0.075689,-1.8928,0.27996,0.016838,1.0038,-0.87865,-0.17156,0.59778,1.2481 -0.89996,-1.4622,-0.18051,-2.5519,-1.2565,2.2498,-0.6668,-1.5743,-2.4519,0.052128,-0.92096,-1.5822,-0.90755,-0.50669,0.15624 -2.6416,-0.85031,1.9846,-2.1609,-1.3816,0.58136,-0.7496,-0.88617,-1.468,0.62774,1.5978,-0.93029,-0.043476,-0.6037,-0.37668 0.20357,-0.39465,3.1588,-0.78604,-2.3399,-0.19744,-0.16553,1.2719,-1.5177,-1.4661,1.6705,0.74628,0.99936,-0.39447,-0.18647 -0.02104,3.0902,-0.33415,0.56127,-1.0052,-1.5514,-0.93458,0.26723,-1.7961,0.96399,-0.085096,-0.70527,-0.58209,0.43176,-0.097564 0.47153,-0.53346,2.584,0.47912,-2.5427,-0.69532,-1.1496,1.3905,-0.6426,-1.6699,1.2553,0.86755,1.0306,0.098369,-0.15319 0.3138,0.43449,1.1097,0.72969,-1.0013,-0.84606,-1.6286,1.2744,0.45835,-2.0356,1.3141,1.1695,0.32989,0.33775,-0.69218 -1.5047,-0.36262,1.1468,-0.71765,-1.7776,-0.07065,1.6814,-0.55967,-1.0283,0.44967,1.1306,0.40003,1.8976,-0.15148,-1.0757 -1.6546,0.41778,2.6457,0.036961,-1.744,-1.1589,0.44993,0.31453,-0.68095,-0.77638,1.9678,0.85094,0.69482,-0.59434,-0.64419 1.0837,0.48847,-1.0075,0.32607,-0.40076,0.10657,-2.0934,-0.57702,1.7201,-0.056453,2.3223,0.009972,0.96847,0.051409,-0.52614 4.3954,-2.4428,-0.040411,1.3322,0.057805,0.24826,0.77262,-2.1037,-1.6881,-2.019,-0.090976,-1.2068,0.49449,-0.1441,0.55877 -1.6887,-1.5443,-1.2413,-0.59472,-1.8483,-2.287,-0.34163,-1.392,-0.21091,0.52648,-0.21417,0.46562,1.2985,-0.18146,-0.58102 3.2521,-2.7477,2.2541,1.0767,-1.1749,2.5408,0.86539,1.4818,-0.66781,0.14988,-1.0427,0.043757,-0.7838,-0.24306,-1.3433 2.4308,-0.55615,0.86551,-0.97972,-2.5261,0.057126,-1.7904,0.87868,-0.52207,-2.3728,-0.44814,-0.16772,1.7716,-0.61624,-0.26601 2.6699,0.26432,-0.049335,-2.9244,-0.054039,-1.118,-0.97475,-0.27603,-1.0947,-0.94257,2.9544,0.64121,2.3551,-0.17506,-0.32104 -0.44328,-0.51842,-3.0806,1.4837,0.57665,0.34959,-0.087019,0.46527,-1.0653,0.96849,-0.88887,-0.11285,1.4658,0.93694,1.5566 -0.49104,0.61872,-3.4823,0.46807,-0.55596,0.11317,-0.017056,1.8625,0.61017,0.49935,-0.83063,0.11069,0.10309,1.143,0.9648 -1.7469,-0.7599,-2.8528,1.484,1.1234,-0.5707,1.8426,0.68314,-1.7122,0.3335,-0.15811,-1.1102,0.55118,1.0632,-0.44561 -1.4469,-0.78157,-1.7421,1.7929,0.58283,-0.1985,1.5699,0.49928,-0.23687,1.6501,0.088836,-0.53697,1.526,0.48233,-0.68177 -0.1946,1.8221,-1.0432,1.5639,-0.86824,1.0283,-2.1116,1.5268,0.076833,-0.42843,1.2365,0.12011,-0.70903,1.2489,-1.4885 -0.034279,1.5311,-1.1303,3.2388,2.0676,0.23178,-0.58795,2.3394,-0.25749,0.01187,-0.71589,-0.98315,-0.864,-0.091367,-0.79455 -0.73872,-0.63966,-3.3579,0.86082,0.18829,0.45147,-0.94689,1.7673,0.47116,0.65459,-0.4862,-0.063899,-0.72604,0.82495,0.71926 -0.29601,-2.2888,1.2329,3.5516,-0.64413,-0.37403,-0.57049,0.98241,-0.25348,-1.5863,0.79161,-0.78861,-0.83713,-1.5207,0.3831 2.9757,1.0959,-1.142,-1.0041,0.4334,-2.4347,0.77206,0.23918,0.57824,1.7241,-0.063405,-0.90649,0.95909,0.11571,0.91794 -1.3046,-0.85637,-2.5808,1.5164,1.1804,-0.38267,1.0234,-0.36902,-1.979,0.95047,-0.16592,-0.10217,2.1356,1.2809,0.15143 3.2421,-0.50105,0.6914,1.0347,1.3252,-0.50051,-1.057,0.10159,0.43094,0.2533,0.9036,1.3851,1.3213,-0.57194,-2.2021 -1.5452,-1.5122,-1.0398,1.7016,-1.7281,-0.80329,0.41653,0.47871,1.1079,-0.84327,0.99815,-0.8939,-1.334,-0.56471,-1.0679 0.89341,0.79115,0.67503,0.8046,-2.8093,-1.308,0.27365,-0.060891,-0.60737,-0.56948,-0.33193,0.049226,-1.3427,0.75368,0.77594 0.97744,1.6808,0.85763,1.5719,1.6016,-2.2284,-0.86219,0.80096,-0.13709,0.50185,1.0581,-0.12263,0.96945,1.4688,-0.9881 -1.3956,-2.5801,-2.1051,1.588,-0.91505,-1.9772,-0.98026,-0.55078,0.11853,0.24148,0.020024,0.36216,-0.40833,-0.91647,-1.0109 3.984,-2.2359,-1.6732,0.3143,-0.65385,0.67108,1.3739,-1.3528,-0.25784,-0.25105,1.0157,0.62782,0.71728,0.020845,0.92265 -1.2153,-2.1693,-0.72381,2.2825,-0.93962,-0.52736,0.42731,-0.38086,0.63157,-0.10841,1.6205,-0.96577,-0.35493,-0.57275,-0.43196 -1.7002,-2.3737,-2.2053,1.9252,-0.58106,-1.3874,-0.36138,-0.39645,0.28962,-0.027632,0.58574,-0.23731,-1.1384,-0.49867,-1.1666 0.93961,-1.3511,-2.4837,1.6691,0.88704,2.1323,-0.078613,1.0082,-1.5279,0.37394,3.0019,0.3695,0.41618,1.2516,1.1431 -1.6047,-1.481,-1.0686,1.2256,-1.9708,-0.80372,0.31108,0.8499,0.88372,-0.66572,1.1117,-0.73563,-0.97443,-0.64282,-1.0859 -1.6499,-1.2182,-3.157,0.3727,-1.4007,-1.5436,-0.47953,-0.029917,0.35438,-0.43315,-0.16639,0.30224,-0.888,-0.013581,-0.77555 1.8114,-0.77163,-3.0613,0.67977,-1.1954,1.3247,1.3528,-0.8985,0.64347,-1.0066,0.20747,-0.24559,0.98477,-0.034305,2.0032 1.6171,1.9418,0.046727,1.7242,1.2202,-1.2054,0.49058,-2.0913,-1.9392,-0.23369,-1.6716,-1.7271,0.82973,1.0331,0.83242 1.0975,-0.2421,-0.70616,2.5585,-2.0043,1.075,-0.62534,-0.73231,0.22463,-0.81474,-0.059796,-0.24761,0.080866,-0.46781,1.2388 -1.1526,-2.8033,-1.383,0.42493,-1.5385,-0.092356,-1.7665,0.52897,0.73422,1.215,-0.18916,-0.30273,0.35369,-0.37693,-0.16662 -0.34098,1.2746,0.97411,0.52286,-3.0807,-0.34292,-0.63511,-0.50226,-0.4793,-0.27575,0.29845,0.85191,0.044727,-0.94415,0.87868 -0.82033,1.592,-0.36264,2.4657,0.3148,0.19817,-0.35241,0.2827,0.55989,-0.79605,0.65727,0.94659,-1.2062,1.1923,-0.61924 1.3964,-0.55231,1.1947,1.0408,-2.9346,0.10214,-0.22141,-0.26284,0.96293,-0.53278,-1.2541,0.66062,-0.064141,-1.2603,-0.45456 -2.0277,-0.9471,-2.7365,-0.1369,-0.61042,-1.8351,-1.42,0.036333,0.00077011,-0.14016,-0.17633,1.3918,0.49805,-0.16966,0.30942 3.296,-3.2088,-1.8852,-0.45636,-1.5007,-0.037725,1.4617,3.2889,0.59515,1.5134,-0.69422,1.4868,-0.55813,1.1648,-0.44949 2.5613,1.5535,-1.8161,-1.3569,-0.27404,-1.3468,0.90952,1.2788,1.0685,0.78724,-1.3845,-0.81753,0.44351,-0.91566,-0.85852 1.3321,-0.7973,1.0953,2.8978,-0.10262,-0.40422,1.2426,-2.2854,-2.0941,-0.52595,0.26429,0.27614,1.0353,-0.5897,0.50961 4.7509,-1.383,2.098,0.82335,-0.7381,0.12052,-1.3095,-1.112,-0.63189,-0.29063,-0.18148,-0.63034,-1.2268,0.099396,-0.18987 0.44169,-2.2603,-2.058,1.0972,0.34524,-1.3661,2.2311,-1.4115,-2.5543,-0.55029,-1.6085,0.30006,1.8159,-0.050258,-0.91228 0.46697,-3.493,2.5716,1.9977,-0.54651,0.8158,-0.25795,0.77045,-1.2379,1.774,1.7861,-0.65195,-0.34473,-0.43536,-0.43198 0.075023,-3.9088,1.2817,2.0285,-0.80423,0.17655,-0.98683,1.5127,-0.49772,1.2843,0.67979,-1.1618,0.31302,-0.21823,-0.3776 1.7094,-3.5801,-0.028576,0.52503,0.13199,1.0909,-1.3814,-2.0003,-1.5185,1.3639,-1.0795,0.86323,-1.4803,-1.1635,0.37552 3.0524,-0.74828,-2.1996,0.1847,-0.57587,0.11682,1.2329,-1.8763,0.27741,-1.4106,0.48531,-1.649,0.56318,0.25229,1.6187 -0.73511,-0.9181,-2.3121,1.392,-0.011634,-2.4984,-0.33044,-0.43158,-0.57743,1.0896,-0.44227,1.5935,0.63546,1.2302,0.69603 0.23554,-1.0393,-0.54941,1.9304,-0.18062,1.984,0.70872,1.8102,0.99246,1.1675,0.15465,-0.36049,1.8302,0.32965,-1.0706 0.99311,1.2374,-2.8637,1.8774,-0.52232,0.89952,-0.4389,-1.0406,0.12303,0.40956,0.022668,-1.3285,0.6924,0.18745,0.72268 3.5972,-1.4307,-1.3334,0.45777,-0.97347,0.79295,-0.85222,-0.60929,0.72116,1.1978,0.11628,-1.3146,-0.12198,0.020468,1.3076 0.49609,-3.5325,-0.061593,2.6704,0.92894,1.9177,-0.4216,1.5182,-1.974,-1.4408,1.782,-0.24187,-0.0062092,-0.69784,0.29715 -0.071526,-3.0177,-0.24044,-1.2437,-1.9313,-1.4129,-0.84755,-1.4729,-1.1368,1.6111,-0.89069,0.61086,0.35758,-1.0491,-0.78533 -0.47568,-3.1527,0.64797,1.2849,-0.19068,1.2352,-0.87484,0.30503,0.67483,2.3969,0.70341,-1.4707,0.35992,0.25029,-0.31227 2.8793,-0.12322,-1.9631,0.75335,-0.30847,-0.23412,1.2561,-1.6905,0.60503,0.31196,0.40375,-1.647,0.06487,0.32716,2.1989 0.058513,-2.0281,2.0833,-1.8619,-2.2983,1.3749,-0.30819,1.5891,-1.2564,2.3484,0.074215,-0.48083,1.5793,0.14494,-1.0164 2.4217,-0.91558,2.68,1.7187,-0.6475,0.22966,-1.72,-1.2294,-0.90903,0.1926,0.51974,-0.31017,-0.86022,-0.48984,-0.23688 -0.39346,3.4344,-0.6295,0.18495,-1.015,-0.4151,-0.97533,1.6572,-1.4724,0.33721,-0.96601,-0.67844,-0.41511,0.48389,-0.31671 -2.3428,-2.7014,-1.9313,-1.3049,-0.098449,-1.7124,-2.1369,0.59524,-0.50232,-1.2481,-0.040772,1.348,-1.2995,-0.30663,0.17136 -0.49909,0.85213,0.075804,2.7443,0.14132,-2.1914,-0.13561,0.35118,0.24243,-0.66306,-0.022976,-0.12625,0.59927,0.8858,-0.08662 -1.6478,-2.2617,-1.5902,-1.2822,-0.29673,1.6428,-2.3599,1.4453,-1.3488,-0.051864,-0.73143,0.039757,0.92402,-0.40727,0.64776 -0.18823,-3.3766,-1.9322,-0.032289,-0.58612,-0.19515,-2.1363,2.5097,-0.65104,0.3333,-0.60857,0.48548,-0.20031,-0.11793,0.94167 -1.7836,-1.1616,-1.3642,0.096724,-0.84386,-1.6058,-0.70263,-1.3451,0.077781,1.379,0.77917,1.1448,0.59968,0.82915,-0.50583 -1.3895,-2.8888,-1.5699,-0.55905,-1.0342,-0.42796,-2.6945,0.86254,0.15459,0.10598,-0.34014,1.0039,-0.027863,-0.58262,0.82072 -1.366,1.7264,0.56055,1.8063,-1.0702,-0.47595,0.756,0.48924,-0.47349,1.1508,0.57214,0.68138,-0.35095,1.1115,0.63671 -0.0061666,-1.9091,-1.404,0.39119,-0.22979,0.76436,-2.2363,1.1775,0.37661,1.454,0.054877,0.97513,0.39843,0.51383,2.1751 0.88551,-0.58459,-0.58295,0.75048,-2.3115,-1.3843,3.2209,0.60244,0.89457,-0.11963,-0.97106,0.42086,-0.79819,0.59428,-1.0236 -1.7777,-3.0891,-1.058,0.588,0.33992,-1.7062,-0.84194,-0.0076792,0.79086,-0.10748,0.41838,-0.14265,-0.70088,0.53292,-0.62451 -1.2695,-3.6975,-1.0377,0.15879,0.35381,-1.461,-1.9997,0.023501,-0.12442,0.090836,0.26152,1.8405,-0.24758,0.0019264,-0.6546 3.566,0.98129,-1.3992,-3.0693,0.7344,-2.5738,1.32,1.5856,1.0117,-1.3436,0.49962,-0.048325,0.58867,0.15788,-0.99525 -1.2928,1.8854,-0.9369,1.6281,-1.6824,0.30148,0.95193,0.089637,0.45913,0.93472,-0.24139,0.40897,0.25367,0.85996,0.71428 -1.1317,-1,-2.374,-0.19112,-0.17293,-1.6742,-1.3331,1.151,0.10333,-0.93312,-0.15876,1.4649,-0.39176,-0.80335,1.3221 -0.64692,0.051782,0.36526,3.0687,1.2536,0.059975,-0.33032,0.062145,0.40941,-1.4175,0.72961,-0.14815,-0.98329,-0.85808,0.59512 2.5712,-1.4208,-2.1786,-3.3403,-2.0009,-0.27206,1.386,1.4223,0.14846,-1.6631,1.5201,1.2768,0.42004,0.30518,1.4827 -2.254,-1.907,-0.96279,-1.7878,-2.5059,-0.2182,-1.4941,-1.6866,-1.3736,0.051606,-0.07627,-0.23464,-1.0109,-0.44594,-0.092538 0.20098,-1.8199,1.4317,2.2179,-1.09,-0.91847,-0.52658,3.0057,0.24911,-1.1275,0.12176,-0.15031,-1.3355,-0.75372,0.28485 -1.998,-2.3228,0.42305,-2.5984,-2.4399,0.065809,-1.9348,-1.1735,-2.0729,0.63815,-0.6257,-0.84158,-1.286,-0.14917,0.80605 2.4693,-0.65815,1.3537,1.3348,-1.966,0.39305,-0.90761,1.7707,0.067403,1.5471,-0.4481,0.16461,0.8687,1.2085,0.64762 -0.93502,-0.69356,2.6297,-2.0584,-3.064,-0.64129,-0.098469,-0.47417,-2.1367,-1.0061,0.37213,-1.446,-0.84989,-0.066584,0.37343 -2.7411,-0.2497,-1.1614,-0.83138,-2.2005,-0.92304,0.7522,-1.9329,-1.6199,-0.40125,0.33868,-0.32032,0.77207,-0.68022,-0.10731 -1.1604,1.9959,-1.5182,0.41962,2.8377,0.32702,0.72908,2.0961,-1.8413,-0.47509,-1.0236,-0.61867,-1.194,0.015182,-0.33223 -2.0375,-2.0388,-1.2807,-1.2552,-1.0496,-0.48832,-3.0136,-1.3506,-2.1129,0.61469,-0.55299,1.7736,-0.98667,-0.52825,1.323 -3.5596,-1.0015,-0.1908,-1.5472,-1.938,-0.30169,-0.15445,-1.0042,-1.4005,-0.32861,1.2962,-0.070298,-0.69831,-0.68166,-1.4782 -3.1932,-0.066602,-1.2314,-1.2655,-0.90698,-1.7018,0.48326,-2.2153,-1.9387,0.59046,-0.19276,0.1788,0.044224,1.3067,-0.31668 -2.0299,-2.7859,1.2481,-0.97496,-1.859,-0.012071,-1.7423,-1.3983,-0.28727,1.0087,0.45605,-0.43904,-0.019376,-0.93589,-0.53915 2.9798,1.0903,-1.52,0.2603,-0.87948,-1.2237,0.40689,-0.71049,1.2607,-0.50295,-1.2009,-0.85685,0.81685,0.37889,-1.1463 -3.1096,-1.3056,-1.6076,-1.455,-0.40294,-0.88854,-1.1277,-2.4517,-3.1737,-0.68533,0.025689,1.7449,-0.99093,-0.025867,-0.17085 2.1035,-0.40502,-3.1181,0.40022,-1.3031,0.29744,1.2917,-0.10832,2.1924,0.042393,0.36386,0.23339,0.59028,0.047599,0.8654 0.1639,-2.6576,0.43424,-0.78303,-2.0421,-2.0012,1.9286,-0.65729,0.048723,0.58387,-1.2144,0.14086,0.27852,-0.19547,-1.5143 2.687,-0.032947,3.3903,-2.4191,-1.9582,-1.2275,-0.47053,1.0109,-2.4459,-1.1376,0.055047,-0.62359,-0.52462,0.36928,0.25629 1.6951,1.0267,-1.0989,-0.42071,0.39195,-1.76,-1.3289,0.056147,-0.23976,1.1033,1.7999,-0.74353,0.18584,-0.03738,0.77851 -0.61588,-1.9443,-0.83939,1.0217,1.9229,-2.8617,1.7795,-0.66968,-2.7819,1.0422,-0.91834,-0.046357,2.3799,0.57085,-0.24988 -0.86956,-0.11105,-0.93688,-1.7411,0.40095,-1.289,0.046348,-1.2987,-1.8007,3.1117,-1.4581,0.71594,0.89453,1.6328,0.57186 -0.48893,1.8378,-0.56503,2.5141,2.0311,0.050881,-0.40904,1.8002,-0.34992,0.30702,-0.22098,0.0295,-0.75522,1.001,-0.95591 0.016816,2.0795,0.50326,2.5552,2.7216,-0.7872,-0.60764,1.4521,-1.8185,0.95614,0.94588,0.18243,-1.3708,0.53766,-0.69005 -2.1641,-0.98043,-1.8633,-0.85294,0.14541,-2.2947,-1.0878,-0.17538,-1.694,-0.14696,0.30809,2.2106,1.0155,0.78826,0.79713 -1.996,3.2178,-1.108,0.65194,-0.9368,0.052286,0.067299,1.6012,-0.65191,-0.40899,-0.63684,0.54863,0.27327,0.93845,-0.27714 1.8222,-0.47322,0.65431,0.016847,0.66031,-2.4883,-1.8166,0.77217,0.61899,-1.4594,2.1296,0.62851,2.1486,0.31674,-1.4167 2.4324,1.4893,-2.1982,-2.6852,-0.98761,-1.2386,1.1467,-0.25626,0.60944,-0.032899,0.31803,-0.62337,1.2592,-0.063061,1.4426 -1.1678,0.092644,1.7125,1.226,-0.65618,-2.5155,1.2686,1.1411,-1.5635,0.33263,1.2863,1.4534,0.98397,0.67399,-0.90683 -1.4533,-0.88164,-0.0097797,1.1936,-0.62965,-2.8191,2.1784,0.40264,-1.5144,1.1263,0.67344,0.28325,1.897,0.81486,-0.74396 -1.0217,-1.0702,-1.6655,0.7288,-0.12294,-1.9342,1.3289,0.081678,-0.67764,2.5277,-0.8572,-0.46554,2.0021,1.0406,-0.56561 -1.5138,1.3415,-0.10696,2.1378,2.1824,1.1677,1.1095,1.4132,-1.515,1.5437,0.78437,0.11989,-0.80617,-0.38798,0.48697 1.0067,0.94402,0.06533,1.3518,-1.3434,-1.9328,-1.4812,-0.59216,0.43822,-1.4019,0.85372,-0.078776,0.73765,1.4318,-0.069797 2.7484,-1.6722,1.0994,0.68381,2.5787,-0.060436,-0.24841,-2.6969,-1.6217,-1.7936,1.9284,-0.44475,1.7356,0.00078198,0.16552 -0.69726,2.2818,-1.0172,0.37375,-2.0282,0.82473,0.32425,0.64043,-0.57589,0.93676,-1.0225,0.1425,0.42369,0.95712,0.89727 -0.90522,2.9233,0.66911,1.0702,-1.4701,-0.94164,0.093803,0.59122,-0.42294,0.69887,-0.95055,0.79927,1.4295,0.73606,0.57207 2.8321,-0.7323,-2.9027,0.34418,0.83961,0.58816,2.9696,0.83901,0.80877,0.68461,-0.87044,0.65926,-0.63136,-0.054047,0.37294 -1.5229,1.2648,0.86285,1.5975,-1.8798,-1.4406,1.0437,-0.13542,-0.41108,0.28889,1.1024,0.88171,0.25239,0.83255,0.18366 -1.3451,-2.6846,1.6052,1.436,-0.51409,0.66644,-1.0254,1.6007,1.549,1.135,0.64222,-1.736,-0.64603,-0.70782,0.26631 -1.414,1.8775,-0.59882,1.4431,-2.2164,-1.1254,0.012644,0.57772,-0.20346,-0.81583,0.227,1.2015,0.64733,0.92595,0.11436 -2.5507,-0.20539,0.73605,0.50073,-2.1367,-0.94416,0.10019,0.42142,0.2029,-1.2551,1.9607,0.41396,-0.13055,-0.45136,-0.74365 -1.1374,-1.5093,1.777,2.311,0.1557,-0.38414,-0.83529,1.7694,0.38466,-1.3732,1.6417,0.08038,-1.9711,-0.63925,-0.75678 -3.091,-1.395,-0.34563,0.77099,-0.59986,-1.5796,0.75173,-0.21076,0.61464,-0.32329,1.7325,0.17075,-1.0684,-0.31757,-1.5966 -1.5515,-0.93776,1.3117,0.62042,-1.5488,-2.4477,1.6191,-1.5062,-0.40592,0.7709,0.66281,-0.50136,0.95828,0.44247,-0.36051 -2.6677,0.41256,-1.8675,0.20308,-1.1927,-1.3725,1.5045,-0.088606,-0.062154,1.6262,-0.04378,-0.28405,0.87601,1.126,-0.43715 -3.0051,-1.4055,-1.2429,-0.44148,-1.7156,-1.1633,-0.65609,-1.0157,-0.11937,-0.37018,1.3754,0.21506,0.57384,-0.53843,-0.9501 -2.7875,-1.0563,1.2648,0.57141,-0.20698,-0.53022,-0.088891,0.82938,-0.28197,-0.49782,1.9255,0.030473,-2.4756,-0.69746,-1.3908 0.0057834,-0.42802,-0.80351,1.1904,0.091015,0.40824,2.0209,-0.81044,-1.6941,1.8403,-1.0358,-1.3176,0.91461,0.74467,1.332 -2.4586,-0.92435,-0.035008,-0.91348,-2.3924,-0.46597,-0.22222,-1.6809,-0.58776,0.71689,1.0128,0.27786,0.77792,-1.2986,-0.59246 -1.4065,-4.4526,0.13855,1.2021,0.89801,-0.27594,-1.5142,0.78845,-0.68012,0.60412,0.94912,0.25107,-1.0158,-0.43565,-0.83878 3.764,-2.9751,-2.5077,-0.20092,-0.88988,0.66099,2.3,1.0547,1.1442,-0.29762,0.056647,1.5201,0.19095,0.37526,0.36329 -0.054347,0.35641,2.5849,0.047427,-2.6718,-0.80411,-1.1158,0.30928,-0.70042,-2.0029,0.80849,0.50676,0.92468,-0.34627,0.82243 -2.9087,-3.0606,-0.43339,-0.77408,-0.054545,-2.0771,-1.3598,0.10143,0.3053,-0.47012,0.75865,-0.29392,-1.0937,0.23657,-0.22668 0.90812,1.2007,0.86589,0.76446,-2.7479,-0.36312,-1.9004,-0.68102,0.62467,-0.61398,0.0099787,0.77817,-0.18516,-0.21898,0.4413 -4.0624,-1.5759,-0.93009,-1.2772,-0.52178,0.17305,-1.4698,0.048169,-0.79189,-0.27442,1.0062,-0.31334,-0.71159,-1.1046,-1.0708 0.31013,0.028754,0.51555,1.0276,-2.4296,-1.2012,2.2348,-0.5641,-0.026179,0.52965,-1.3056,-0.085766,0.76293,0.10167,-0.31186 1.3671,2.1762,-1.1617,1.5025,0.26824,-0.37523,-0.66073,-1.0223,-1.0632,1.2983,-0.55451,-1.7152,-0.30368,0.87679,0.66839 3.1061,0.083092,-0.18464,-0.48105,-2.4079,-1.3163,-0.074059,1.3384,0.61177,-2.7902,-0.060871,0.71795,-0.74672,0.44013,-1.8192 -0.44285,-0.13529,-0.22725,2.538,-1.324,-1.0085,2.1635,-1.8961,-0.3218,0.056514,-1.1432,-0.24876,0.64716,-0.55182,1.2405 4.2055,-0.90116,0.16674,-0.74525,-2.3002,-0.80098,-1.149,1.4683,0.97362,-1.3502,-0.62512,-0.23308,-1.0262,0.14659,-1.1345 1.6298,-1.5632,-2.2744,1.6844,-0.076118,2.9562,0.50095,-0.11713,-2.5866,1.5267,1.0827,1.0906,2.5362,0.12395,0.68566 1.6658,-0.00038332,-0.71804,2.486,2.9988,-2.4863,0.40415,1.3588,-0.86532,-1.2522,-0.11416,-1.3379,0.78411,-0.014811,-0.43994 2.1169,1.299,0.88582,-0.11203,-2.8132,-1.0796,-0.34203,-0.25035,0.48466,-1.8561,-1.1782,0.2232,0.39651,0.35205,-0.44262 3.7955,-0.85589,-0.44718,-1.3989,-2.1446,-0.89066,-1.2336,1.9249,1.1907,-2.3519,0.36835,0.44393,-0.20671,0.49299,-1.6757 -0.47051,2.3472,-1.4723,0.16333,0.5942,-0.69947,-1.0226,3.253,-0.10135,-0.30591,-1.2909,-1.4556,-0.12982,0.1838,-1.0018 0.94417,0.97818,1.7894,0.39693,-2.2454,-2.1768,1.4751,-0.31255,-0.71529,0.62067,-1.0768,0.092567,0.81284,0.84632,0.11634 3.9318,-0.68814,0.73242,-2.8439,-2.7228,-0.15139,-0.93598,2.4205,-0.91104,-2.139,-0.1855,-0.58846,-0.91735,-0.17592,-0.53176 2.9989,-1.9971,-1.5865,1.1198,-0.063705,2.9524,-0.57479,-0.35245,-2.3053,0.54153,1.1127,-0.70981,1.9072,0.59292,1.4261 4.0966,-1.8335,-0.40212,-0.84081,-1.7232,-1.5123,-0.78299,0.59466,0.48393,-0.58718,0.62006,-0.42927,0.059511,0.01256,-0.65303 -2.2533,-1.087,-2.2769,1.3008,1.0715,-0.92714,0.77951,-0.48991,0.14518,-0.64356,-0.040292,-0.6665,-1.7232,-0.17166,-1.087 0.63178,3.4049,-1.6936,-0.20112,-1.4348,0.16997,-0.64263,-0.59371,-1.3484,-1.2963,-1.0035,-1.3988,1.0273,0.37872,-0.038561 0.24757,-0.50351,0.88429,0.97845,-2.3676,-2.1521,2.0749,-0.4359,-0.18421,0.42107,-1.0594,0.6991,0.97167,-0.43611,-0.58231 -3.0795,1.3806,-1.4655,0.41217,-0.48506,1.0825,1.8293,0.46141,-0.18359,-0.23267,-0.042907,-0.87084,0.83311,-0.56516,0.3447 -0.41892,-0.99721,1.5943,-1.6956,-3.4862,-1.0656,1.8189,-0.069262,-0.97495,-0.66368,-0.047167,-0.43894,-1.8757,-0.19996,0.19835 -2.4161,0.092951,-2.2121,-0.079589,-1.2811,-0.42987,0.66152,-0.57133,-0.45886,0.86772,0.59661,0.15734,1.1911,1.0618,-0.80777 1.9938,1.6307,-1.2322,-2.1416,-1.552,-1.4871,-0.85682,-1.3244,0.2062,0.49085,2.1192,-0.40669,0.82087,-0.26921,1.416 -0.952,-2.9448,-1.949,1.5713,-0.047785,0.4901,-1.1162,1.627,0.5337,1.1641,-0.59753,-1.4923,-0.065281,0.20523,0.16676 4.1895,-3.3403,-2.7668,-0.2556,-1.0986,1.0528,1.7337,1.21,0.56187,-0.78985,1.0102,1.054,-1.1062,0.39393,0.031614 -0.88271,-2.0799,-2.7245,1.5812,-0.54514,-0.52303,-2.1611,0.31675,0.63245,0.22274,-0.40714,0.90441,-1.1782,-0.95117,1.3313 2.7054,-2.088,-0.77488,1.6484,1.6505,-0.25757,0.48595,0.017715,-1.3222,0.95799,3.914,0.96042,0.60941,-0.007565,1.2869 3.2039,-0.72773,0.40715,0.28117,-0.73303,0.26376,-2.6369,0.0033249,0.26323,1.2292,1.2802,-0.57431,0.45974,0.36614,0.17391 -2.775,-2.5609,-1.3657,-1.3743,-0.61537,0.74963,-2.9215,1.1958,-0.23475,-0.2594,-0.403,-0.58215,-0.32901,-0.040732,1.1521 4.8723,-2.7091,-0.41056,-2.7854,-1.6153,0.15579,0.98943,1.3555,0.12393,1.7675,0.84996,2.0216,-1.2066,0.34579,0.8116 -0.15167,-1.7996,-2.0053,1.7404,-0.53941,-0.22693,-1.638,0.21159,0.80321,0.77905,-0.48928,1.4406,0.42953,-1.938,0.86585 -1.3162,-0.944,-3.6058,0.72979,-1.2276,-0.20629,-1.654,0.80646,0.24789,-0.66968,-0.33476,1.3195,-1.5449,-0.82441,0.60653 3.8817,-3.8898,-1.204,0.80875,-0.2467,-0.35847,2.5136,-0.027906,0.094597,-1.3529,-0.070514,0.77093,0.22834,0.49423,1.0316 -1.1054,-2.4452,-0.79253,-0.14279,1.4585,0.2722,-2.5493,0.83619,1.1567,1.3922,-1.5997,1.1093,0.29931,0.7791,2.6313 0.41196,1.7066,-0.68204,0.93347,-1.296,-1.1933,-0.64601,1.2259,-1.0986,2.1732,0.23316,0.0036664,0.45552,1.0394,-0.17353 -0.8854,-1.4081,-1.7117,0.5595,-0.63164,-0.57394,-2.3654,1.0042,0.76778,0.58509,0.11602,1.3144,-0.07926,-1.2361,1.6055 0.13412,2.4553,-1.4391,-0.59326,-0.84792,-0.47104,-1.9732,-0.45837,-0.029088,-0.67982,1.8614,0.061548,1.9322,0.23371,-0.50283 0.24046,-3.4883,0.52526,0.55634,0.06466,2.2698,-1.5624,-1.7011,-0.39236,1.8899,-1.2087,-1.2997,0.1167,-0.44405,0.18096 -0.2917,-3.6805,-0.55057,-1.0635,-2.0729,-1.7917,1.5473,0.14272,0.091931,0.11512,-0.74954,0.58668,-1.0923,-0.73069,-2.6467 1.4162,1.6036,-0.16721,0.7552,-2.0582,-0.73871,-1.0597,-0.20049,0.13842,-0.79179,0.19077,-1.1241,-1.2717,0.68589,0.32977 -1.8409,-1.8225,-2.3068,0.36808,-0.22397,-2.1576,-1.5962,-0.34349,-1.2699,0.49179,-0.086365,0.99639,-0.69562,0.28405,0.23382 -1.7422,-0.40391,-3.3392,-0.48807,-0.53985,-0.74617,-0.89879,-0.013705,-1.1283,-0.5507,-0.83924,1.669,0.40418,0.38124,0.27725 -0.77742,-1.1226,-1.5205,0.56263,-1.0645,-0.97636,-1.8933,0.30788,-0.46881,0.3135,0.63743,1.7232,0.23573,-1.0105,1.0205 0.056907,1.59,-0.71057,2.7986,1.1617,-0.95909,-0.43872,-0.31716,-1.2559,-0.82114,0.39279,0.16453,-1.4986,0.29317,-0.47578 1.3617,-1.8803,-1.1145,0.28185,-1.4947,-1.1797,-0.9333,-0.70878,-0.11344,0.79236,-1.6397,1.1393,-0.86168,-1.6859,0.99318 -2.0142,-1.1884,-2.0311,-1.311,-0.71318,-1.2556,-1.5729,-1.4595,-1.7929,-0.046299,-0.2431,1.7136,-0.75509,0.1315,0.21965 1.1305,0.78582,-1.28,2.7409,0.16869,-0.50461,-0.60299,-1.4291,-0.94418,-1.4012,0.7437,-0.66769,0.43665,1.3578,0.56259 0.71895,-3.9263,0.053168,-0.4532,-1.1064,0.32297,-2.0819,-1.4606,-1.1996,2.3388,-1.833,-0.52438,-1.4438,0.4047,1.737 1.7181,0.74615,-1.1975,1.7201,-0.38732,-0.97972,-0.59542,-2.5813,0.43953,-0.72864,0.46575,-0.55036,0.34873,-0.012194,0.51031 -1.3373,0.78919,-0.31346,0.34115,-2.7895,0.070716,1.3195,-0.87985,-0.65414,-0.64051,0.17646,0.2449,0.96298,-0.30981,0.41704 -0.50808,-0.90194,-2.7102,-0.23172,-1.709,-1.0899,-1.1597,-0.40172,-0.71041,0.012334,-1.0071,1.6279,-0.72594,-0.66908,0.8562 -1.5121,-1.6545,-2.7543,-1.5375,-1.4517,-0.61952,-1.6325,-1.4275,-1.9167,-1.3892,-1.2285,1.4297,-1.2602,-0.91688,1.1413 -0.47114,-4.0219,0.53887,0.34817,0.024018,0.71093,-1.7126,-1.9821,-0.87834,1.317,-1.1532,-1.4664,-0.64754,-1.0254,0.58606 1.6517,-0.058363,-1.0108,-0.043153,1.6412,-1.6376,0.24126,-0.26529,0.9058,-1.0675,1.3643,-0.74249,1.5237,0.48071,0.097215 1.74,1.8902,-2.0255,-0.66229,-0.89247,-0.55842,0.28417,-0.2132,1.1029,1.483,-1.1188,-1.3272,0.75166,0.207,0.60595 -2.1344,0.6883,-3.317,-0.34856,-0.93103,0.13768,1.0639,-0.35508,-0.99881,0.26738,-0.95342,-0.14189,1.301,0.56558,0.091757 3.0954,-0.40747,-1.4123,0.3441,0.019988,-1.6602,0.74921,-1.4912,0.90219,1.1196,0.38982,-0.5631,0.21556,-0.060929,1.598 1.1055,-4.1176,2.2363,-0.042453,-1.0594,1.7078,-0.41434,-0.13465,-0.25249,2.2815,-1.2898,-1.2938,0.045312,-0.23152,-1.045 0.72474,-3.1265,1.9941,-0.37966,-1.4504,1.7111,0.19497,0.063025,0.18211,2.9951,-1.0567,-1.7259,0.21243,0.84942,-0.59831 4.4392,-0.64318,-0.9877,-2.0703,-1.2046,-1.8324,0.033108,-0.25199,1.3968,-0.28814,1.1294,-0.63677,-0.88166,0.40999,0.0070553 -1.3131,-1.8831,-1.2664,0.72612,3.2028,-1.0092,1.5844,2.0317,-1.3681,-0.55273,0.079381,-1.1095,0.41155,0.6994,0.14593 -0.17268,2.0721,-1.9943,1.551,2.0012,-0.48117,-1.2825,0.97133,0.28628,0.18067,0.52957,-2.0014,-0.32411,-0.24176,-0.34642 0.43479,-2.7313,0.69488,0.88875,0.44056,1.7502,0.13153,0.43717,0.38632,2.1851,-0.56983,-1.4916,1.4936,0.15971,-0.19082 -1.1441,-3.8137,-0.13122,0.5391,0.85981,0.33674,-1.2523,2.5977,-0.10977,1.2057,-0.68975,-2.0728,-0.023568,0.27844,0.094928 2.6021,0.068279,-0.12652,-0.35898,-1.4252,-1.0588,-1.9395,-0.78579,0.58755,-0.46831,1.3383,-1.2399,-1.1252,0.93467,1.0539 -1.4267,-2.9482,0.16721,1.3355,2.1228,2.2132,-0.23449,1.2818,0.085755,0.92035,0.33365,-2.5127,0.54557,-0.014852,0.38997 3.7174,-0.92753,-0.73268,0.10719,0.12093,0.91655,0.13803,-2.4783,-0.81122,-0.1335,2.3275,-1.004,0.578,-0.090941,2.2365 4.5098,-1.7343,1.8374,1.5691,-1.0038,1.4362,-1.1624,0.28802,-0.72024,0.0077422,-0.86648,0.31744,-0.22185,-0.1747,-0.60688 2.6831,-0.95005,-2.5886,-2.2296,-0.89542,-1.3423,2.5745,1.5363,1.4642,-0.83795,0.77899,2.1665,1.0955,0.54524,0.12839 1.4798,1.2675,-1.2531,2.3185,-1.1629,-0.44029,-0.19256,-1.6703,0.11618,-0.75739,-1.2131,-1.1815,-0.013607,0.42347,0.71508 0.0095699,2.4172,-1.3475,1.4304,-1.5586,-0.31732,-0.79484,0.21985,0.25646,0.6203,-0.6595,0.41811,0.50993,0.61146,-0.15119 1.3383,-4.4115,1.5884,0.59318,-0.56854,2.0933,-0.048971,-0.1977,-1.1561,2.5685,-1.4152,-1.4438,0.62143,0.1237,-1.0759 0.69465,-3.615,1.5186,-0.78856,-1.5325,1.6034,0.16827,-0.84987,0.38562,1.9705,-1.0489,-1.2739,-0.86248,-0.51633,-1.396 0.47196,0.43233,0.59318,2.1269,3.7354,-2.3951,0.33611,1.8379,-1.0969,-1.7912,-0.4384,-1.3562,-0.050654,-0.035788,-0.27161 0.29423,-3.7552,2.3915,1.4849,0.10471,2.3604,0.46674,-1.052,-0.63782,0.84291,-0.13659,-0.47373,-0.10119,-1.8885,-0.58014 -0.32232,-3.585,1.2119,-0.21418,0.18763,1.2713,-1.4409,0.63683,0.45641,2.8761,-1.0938,-1.1685,0.88561,0.44418,0.11945 -0.44355,-4.3589,0.19941,0.43094,2.6744,1.7803,-2.3754,0.64424,-2.0679,-1.0548,-0.378,0.018258,0.15371,-1.0074,0.61055 -2.1745,-1.0493,-1.7258,-1.1281,-1.6815,-1.4085,-1.4197,-2.1272,-0.6557,0.059773,-0.21363,1.2353,0.46674,0.033781,0.63228 4.7927,-0.85634,-0.16356,-2.2901,-1.3221,-2.4851,0.22603,-0.23201,0.4832,-1.3947,0.62949,-0.11565,0.1088,-0.046108,-0.99326 -1.5222,-1.5448,-2.1282,-0.16678,1.1005,-3.4506,-0.35332,0.56653,-0.13031,0.13533,-1.5187,1.1165,0.52376,1.1765,0.99372 -3.6071,0.96085,-2.8018,-1.0667,0.014388,-0.64723,1.4753,1.3408,-0.80816,0.53841,-0.81976,-1.7564,0.27954,0.59638,-0.14217 0.68866,2.3309,0.10792,-0.27341,-1.0237,-2.1857,-2.0632,-0.24701,-0.52519,-1.3712,1.1494,-0.38189,1.3817,0.25071,-0.39053 -0.8543,-1.9853,-1.4806,0.60043,0.52311,-2.5049,1.4641,0.47364,-1.1951,-0.35393,-0.3689,-0.35654,-0.6365,-0.14638,-0.53854 -0.33959,-2.8356,-1.0882,1.6195,0.030166,0.32151,1.3172,0.57829,-1.3941,-2.4524,0.4657,-1.5645,0.18055,-0.2442,0.23777 4.6737,-3.5477,-1.3822,-2.2452,-1.0475,-0.38132,2.2923,1.8466,-0.85242,-1.0017,0.047309,1.8108,0.53868,0.10193,0.23039 4.6188,-1.7759,2.7535,0.89194,-1.5185,1.4266,-0.46688,1.0545,-0.87593,-0.20084,-1.3454,0.50655,-1.1858,-0.4345,-0.93311 -1.7136,1.5299,-1.3634,0.78366,-1.7338,1.1899,-0.0090342,1.9928,0.76759,-0.25593,0.14613,0.38636,-0.84746,-0.031537,-0.65048 -0.57773,-0.81606,-2.4698,0.99548,0.78554,-2.5988,0.93853,1.0401,-0.019836,0.98403,-1.0052,0.26457,0.85286,0.23009,-0.10925 -1.2841,-1.5728,-1.2199,-0.1797,-0.55768,-2.7456,1.5612,0.6844,-0.29726,-0.19167,-0.35892,-0.34322,0.089514,0.41166,-1.1821 -1.0552,1.6309,1.5957,1.1166,-1.0918,-2.3185,0.51668,0.32665,-0.2958,-0.010475,0.040309,0.4585,0.58627,0.97484,0.762 0.24036,0.58147,0.57544,1.6909,3.8621,-0.10938,0.61403,-1.1333,-2.5056,-0.31552,0.15764,0.56938,0.91998,-0.25302,-0.17014 0.26923,0.72055,-2.2401,1.826,3.2296,-0.11477,0.18418,1.2227,0.53896,0.38241,0.97372,-1.6355,0.20313,-0.31602,0.36023 1.2171,-2.7828,-1.529,0.45145,-1.1905,-0.53063,-1.254,-0.9888,-0.10071,0.77123,-2.1153,0.90621,-1.449,-1.3934,0.55754 -1.492,-1.3857,-0.62301,2.9188,-0.70931,0.22672,0.59927,-0.69388,-1.0477,-1.7144,1.1618,0.086965,0.56364,-1.4498,0.41641 -0.22761,-2.8771,-1.0082,0.089405,-1.5917,0.89561,-1.2051,-0.41262,0.90631,1.8795,-1.5343,-0.66649,0.17879,-0.09347,-0.24119 -0.12951,-1.2435,-2.311,1.013,-1.0833,-0.51511,-1.4422,0.1346,0.25252,0.50326,-0.35134,1.3062,0.13878,-1.1587,0.86587 -2.4679,1.9114,0.36204,-0.059966,-1.7919,0.56708,0.76022,-0.29372,-1.06,-0.52946,1.8848,0.71755,0.4266,-0.24179,0.039966 0.83716,1.9855,-0.13222,1.1404,-1.3783,-1.5641,-1.7529,-0.84178,0.60244,-0.35062,0.66496,0.43673,0.80905,1.1243,-0.60188 0.96246,-2.3318,-2.1713,0.58356,-1.0954,-0.24087,-0.57049,-0.67438,-0.44107,0.56575,-1.8167,1.8704,-0.86377,-1.5955,-0.10514 -0.83368,-1.3988,-3.1312,1.8353,-1.1048,0.0041733,-1.6165,-0.26092,0.032863,0.097822,-0.50268,0.6719,-0.88307,-0.78556,0.96069 4.438,-1.5605,2.0213,1.6262,-0.074154,-0.29813,-0.99618,-1.5686,-1.3638,-0.87679,-0.24008,-0.18434,-0.46301,0.26389,-0.17421 -0.96342,-2.9811,-0.89443,0.91815,0.27296,1.6759,-1.6552,-1.5658,0.6338,1.6716,-1.152,-0.056323,-0.32351,-1.282,-0.10278 2.0669,-1.4421,-3.3797,1.1296,-0.95967,1.443,1.967,0.18197,0.81009,-0.88952,0.11145,0.83416,0.82248,0.30999,0.94901 -1.0031,-2.3737,-2.1393,1.6787,0.86368,0.65553,-1.2943,0.40149,0.60097,0.065406,-0.5668,-0.49715,-0.55384,-0.73705,-0.41769 -0.75506,-0.59555,2.3054,-0.1375,0.32803,-0.18961,-0.2263,2.3838,-0.95733,-2.5707,2.0114,0.62439,0.090504,-0.97906,-0.80778 -0.70295,-1.5273,2.3091,-1.5675,-1.9229,-1.3794,0.97925,1.6726,-1.4787,-1.7213,-0.98514,-0.085839,-0.92551,-0.34392,-0.12155 -0.18123,1.4222,1.1894,1.887,2.1358,-0.55529,-0.53735,3.0071,-0.44699,1.425,-0.8804,0.049328,0.41211,-0.038136,-0.82056 -0.00043981,-2.5492,-2.2479,1.8678,-0.31031,1.2046,-1.5468,-0.49993,-0.069244,0.32978,-0.89318,-0.34302,0.24931,-0.97426,0.97439 0.085015,-1.6954,-1.5437,0.59234,-1.2246,1.0121,-0.87351,-2.3303,0.012914,1.106,-0.8218,-0.012098,-0.52394,-1.3251,-0.19235 -0.51032,0.4325,1.7984,1.7166,0.25116,0.60185,-1.2692,2.3177,0.18361,0.79551,1.8845,0.36854,-1.2549,1.3602,-0.058152 2.6548,0.59136,0.89354,1.3311,0.57341,-1.3551,-1.0192,1.0747,-2.5453,2.1637,0.33931,-0.26232,0.86575,0.09655,-0.34841 2.7783,0.058038,-0.41659,-0.34171,-2.5472,0.19616,-1.5934,0.30729,0.74964,-1.0093,-0.41542,-0.065668,0.57255,0.1194,0.10691 -2.888,0.15163,-0.54581,-0.81499,-1.107,-2.088,1.4376,-0.15767,-1.1373,1.2477,0.30336,-0.48766,1.3413,1.3282,0.16288 -0.14939,2.92,-1.188,1.1717,-0.29223,-0.34842,-0.49927,0.42337,-0.16838,0.93776,-1.6003,-1.0108,0.33978,0.99468,0.17109 -0.71084,1.736,-1.5127,1.9979,-0.38128,0.01689,1.0957,0.41663,-0.48284,1.0949,-2.4395,-0.54057,0.25692,0.27882,1.3171 2.6713,-0.44197,2.5929,0.27897,0.58015,-1.3362,-0.47142,0.26526,-1.886,1.0961,2.6081,0.28883,-0.23339,0.41932,-0.098584 -1.5669,0.95699,-1.2823,1.1164,-2.0122,-1.1033,1.9738,-0.42109,0.38659,1.0218,-0.68417,-0.17724,0.38489,0.70216,0.82253 4.4047,-2.7348,-3.0073,-1.289,0.37518,-0.56428,2.3257,1.2694,-0.44452,-0.73763,0.29173,1.8494,-0.34198,-0.72459,-1.0237 -0.80057,1.2197,-1.3713,2.5178,0.84768,0.54523,-0.13375,1.44,-1.2682,0.74615,-0.8629,-0.85969,-0.0032366,0.32516,0.9384 -2.4437,1.4718,0.57958,0.83437,2.0933,-1.084,1.3284,3.1949,-1.0352,0.74635,-0.58345,-1.1879,-1.4945,0.74007,-0.45315 2.3983,-0.88323,-2.5668,0.13579,-1.1537,-0.30597,1.8759,0.51206,1.9012,-0.059427,0.16488,0.45919,0.55582,0.50007,0.51743 -1.4573,0.24004,-1.9587,1.5035,-1.4173,-0.63138,1.8817,-0.57798,0.40194,1.1269,-0.63046,-0.64616,1.4493,0.26477,0.093867 2.5705,-2.0591,1.9824,0.65597,-2.8466,0.48394,0.5689,0.6763,0.47752,-1.2561,-1.018,-0.2488,-1.256,-0.78739,-0.22461 -0.33073,-0.98136,1.2436,2.0365,-1.8174,0.47858,0.13438,-1.2441,0.45552,-0.50035,1.3294,-0.29182,0.045886,-0.72431,1.3746 5.0508,-1.0404,0.3163,-1.2923,-0.38514,-2.5769,0.14177,-0.87272,1.0121,-1.0847,0.081896,-1.1034,-0.95058,1.4165,1.0998 -0.68529,1.6563,-1.6753,2.8221,0.22748,0.079869,0.66335,0.12944,-1.1136,-0.438,-0.81438,-0.59572,0.87896,0.56052,1.1022 0.015481,-0.11504,-0.28108,1.9485,-0.7265,-0.0095767,-0.65306,1.391,0.92239,-2.7805,0.45286,0.15023,-1.3109,0.22477,-0.22456 -0.93607,2.4052,-1.4432,1.1766,-2.1059,1.6266,-0.57929,0.50374,-0.96249,0.52082,-0.076492,0.64874,0.70393,0.17165,-0.11543 0.40006,0.79573,0.46146,2.5721,-0.7612,-0.40815,1.3447,-1.7746,-1.0011,-1.2603,-0.91055,-0.45738,1.1848,0.05471,1.9195 -1.3807,1.5892,-1.293,2.0162,-1.3856,0.064386,1.4511,-0.30115,-0.65393,0.77679,-0.57818,-0.28525,0.50834,0.81845,1.37 4.6688,-2.5438,0.48726,0.055241,0.81754,-0.88178,0.4859,-1.229,0.15311,-0.67348,1.7229,0.94133,1.7582,-0.49954,-0.41907 -2.0134,1.119,-2.3966,0.12965,-1.7091,0.66388,0.58406,0.12461,-0.16913,1.1814,0.8061,0.96671,0.023621,-0.094159,-0.71525 2.2009,-0.6318,1.4493,2.4836,-1.1147,0.1518,0.5355,-2.5199,-1.7687,-1.8761,-0.65517,-0.24604,0.26305,-1.0079,0.58853 -0.3087,2.4705,-1.1085,1.7355,-0.6044,0.14075,0.77395,0.27336,-0.53114,1.2467,-2.414,-0.61652,-0.56479,0.1821,1.0764 0.71258,0.14683,-2.6974,1.5332,0.94453,0.82229,-0.70719,-0.20394,-0.55756,-0.94563,2.3534,-0.98172,0.23313,0.22299,-0.22226 -0.54875,1.7875,-0.65847,2.3708,-1.1941,0.1821,0.42057,-0.79138,-0.58663,-0.71599,-0.42367,-0.1111,0.53233,0.88437,1.4086 -0.16507,1.6298,0.38282,1.0896,-0.8969,-0.22251,-2.277,0.55512,0.36206,-0.53934,1.7557,0.94456,-1.3218,0.40108,-1.2143 4.3504,-4.661,-0.89125,0.32384,-0.23193,-0.011555,2.0451,1.8939,-0.39775,-0.4689,-0.66061,1.3002,-0.032074,0.96821,-0.09572 1.1766,-1.461,-0.54023,3.5362,0.27867,-0.54859,-0.99437,0.14981,0.34409,-2.242,0.98308,0.075277,0.80383,-0.12122,-0.36568 -2.5492,1.151,-0.56656,0.081097,-1.3599,0.61349,0.03028,1.3341,0.15397,0.040077,1.5536,0.33831,-1.0833,-0.21186,-1.2638 4.1934,-2.7794,-0.324,0.92839,0.90111,-0.29207,-0.29809,-1.6614,-0.69249,-0.66007,2.2468,0.19855,1.6375,0.070246,1.116 -1.0476,-3.2701,1.0686,2.4539,0.90452,-0.021543,-0.064668,-0.039449,-1.0451,-0.94467,2.4298,-0.69461,-1.2138,-0.76968,-0.93749 -1.8977,3.0075,-0.3718,0.79958,-0.22663,-0.36215,-0.53523,1.942,-0.054573,-0.449,-0.12774,0.78933,-0.63119,0.87028,-0.64886 2.5281,-0.46242,2.1467,0.17709,-2.8459,0.1175,-2.0171,0.60761,-0.36127,-0.5947,-0.57499,0.42494,0.66091,-0.58892,-0.60654 2.5066,-2.4914,-3.2596,0.49184,-1.7194,2.0476,1.2554,2.3269,0.66651,0.51012,-1.0051,1.4131,-0.083409,0.19701,-0.67825 0.25131,-3.7534,-1.7743,1.3571,-0.69603,0.15386,-0.058998,-2.1987,-1.6911,-0.59779,-1.3353,1.0837,0.97524,-2.5523,-0.17227 -2.3669,3.2207,0.83017,0.28066,-0.82475,-0.48525,0.89533,0.91227,-2.0484,0.078867,-0.11738,0.60909,-0.32171,0.44722,0.21781 2.0554,0.011629,-0.7867,0.87155,-2.5159,1.623,-0.14865,2.2324,0.34077,0.088982,-0.90128,-0.70717,-0.76957,1.7964,1.0264 3.7324,-0.1259,-1.5192,-1.8424,-1.3757,-1.3926,0.87932,-0.28361,1.5405,-0.48801,0.63409,-0.71985,-0.1008,0.89477,0.55967 -1.707,-1.949,-2.9505,1.6703,-0.44287,-1.3697,0.11075,-0.9399,-2.1588,-1.7035,-0.41345,0.33218,-0.62562,-0.63927,-0.50189 2.339,-1.4812,1.8342,2.6713,-0.42192,0.23643,-2.2329,-0.93366,-0.92455,-0.68645,0.76824,-0.35805,-0.15778,-0.07627,0.59284 1.6276,1.3757,-2.9783,0.70625,-0.56637,-0.2162,0.20651,-0.12004,1.8985,0.75294,-0.82856,-1.0075,0.29608,-0.06556,-0.30462 1.2129,-0.70817,1.8331,3.0777,-0.54865,1.6167,-1.8086,-0.10617,-0.40737,-0.1485,0.97553,0.076092,-0.74488,0.11386,0.70281 -1.6256,-2.444,-2.4581,0.77241,1.0226,-2.164,-1.3233,0.224,-0.46956,-0.52616,-0.56701,1.3525,-1.7272,-1.138,-0.60652 2.0302,-0.94488,-0.037825,2.0178,2.7161,-0.82939,-1.4017,0.68858,0.80986,-1.6363,0.95865,-0.87501,0.0044178,-0.44843,-0.63904 -1.1831,1.9451,-1.636,1.7675,0.53891,-0.018879,-0.47811,2.8762,0.063841,0.30312,-1.4352,-0.59154,-1.6312,-0.058528,-0.51036 -0.23246,-2.3932,1.8403,1.1023,-2.0194,0.25173,-0.042286,-0.3733,0.29611,0.8876,1.4908,-0.40172,0.56271,-1.3438,-1.0216 3.5004,-1.6938,-2.6929,-0.1005,0.32619,0.31338,2.7755,-0.35256,0.70341,-2.1894,0.79033,0.049746,0.85847,0.25649,0.80966 -0.48231,-0.81058,-3.4286,1.3238,0.20053,-1.4826,-0.11167,0.82286,-1.7132,-0.87803,-0.4693,0.53083,-0.88267,-0.67726,0.49426 0.37516,1.8323,-1.9173,1.647,0.52215,0.48603,-0.95291,0.25282,-0.33414,1.1278,-0.4806,-1.4876,0.02414,0.38537,0.25788 -0.066211,3.0118,-2.46,0.6489,-0.49764,1.51,-0.58857,0.60458,-0.84314,-0.31607,-1.3561,-1.4116,0.24953,-0.30718,-0.14946 3.4574,-0.93855,-0.10618,-1.155,-2.7753,0.97357,-1.2407,3.1029,0.17164,-0.38003,-0.9558,-0.16999,-0.73478,1.0964,-0.19877 -1.7583,-2.7615,-1.2466,0.82448,0.68211,0.33237,-1.4447,0.86732,1.276,0.10754,-0.6372,-1.8269,-1.5072,-0.7541,-0.16757 2.0397,2.4121,-1.6578,-2.0375,-1.4196,-1.3335,-0.89665,-0.94331,-0.0068923,-1.4301,0.13623,-1.5126,1.016,-0.16061,0.039556 0.11691,0.5073,-1.5315,3.2496,1.9741,-0.50722,0.24758,1.3252,-0.75083,-1.2056,-0.3147,-0.802,-0.52089,-0.073746,-0.11518 1.7071,-1.0577,1.8675,2.4828,-0.63618,0.085983,-1.1473,-2.2032,-2.3769,-1.8378,0.92578,-0.60131,-0.18201,-0.34473,0.97136 1.7393,0.41309,-1.6149,-1.085,1.9248,-2.5546,0.19817,3.1114,0.39412,0.28231,0.87105,-0.90413,1.3371,0.83566,-0.2329 0.95096,2.1508,0.67973,-0.59659,-1.6288,0.13414,-2.7168,-1.0421,-1.0868,-2.0656,1.3305,0.10132,0.99814,-0.27131,-0.25363 1.7047,1.3568,1.674,-1.3722,-3.2946,-0.51202,-0.77377,-0.031235,-0.94695,-2.3105,-1.0903,-0.2819,-1.0906,-0.624,-0.15996 2.0902,-1.2015,2.6634,2.7753,-0.40161,-0.51682,-0.15549,-1.3517,-1.3923,-0.65319,0.99222,0.24889,-0.15564,0.39029,0.66968 0.66841,1.4305,-0.87153,3.0658,-0.15991,-0.16317,0.50766,-0.7593,-0.7737,0.90347,-0.54896,0.19755,0.86572,0.86517,0.073377 0.24445,3.2974,0.30498,0.0060244,-1.6661,0.00043329,-1.1636,-0.93948,-2.1991,-2.3184,0.21165,-0.071259,0.65356,0.041887,0.3799 -0.56091,0.8943,0.38283,2.2308,-0.14989,-0.95999,-0.19818,0.48349,-0.10625,0.86323,0.82393,0.77986,-0.80813,0.94568,-0.3989 2.1379,1.8432,-0.56932,-1.0053,-1.187,-1.6596,-0.7584,-0.78175,-0.16585,1.4375,1.1615,-1.0315,0.0054363,0.34363,1.4215 4.032,-0.73952,2.0928,-0.91938,-1.8413,0.209,-2.5823,1.6172,-1.2834,0.52025,-0.75934,0.38824,0.72917,0.0098934,-0.32479 -0.88075,3.0647,-2.0279,-0.045288,0.51522,-0.18457,-0.47433,2.3941,-0.45517,-0.34437,-1.4782,-1.8188,-0.14016,0.46539,-0.2743 1.6015,2.808,-1.2505,-1.1839,-0.59896,0.18591,-0.1362,1.1153,-1.263,-0.83215,-1.8158,-1.6199,1.0902,0.043747,-1.0105 1.599,1.1183,-0.91718,-0.58702,2.4346,-1.1067,-1.7447,2.7316,0.11767,1.5562,1.7551,-1.015,0.85961,-0.77186,-1.3014 -0.092723,0.79509,2.9256,-0.56114,-2.5327,0.75485,-1.9902,0.63344,-1.9567,-1.0629,0.92687,0.72094,-0.18023,-0.83042,0.67246 -0.19261,1.2996,1.3736,0.75036,-0.77361,0.12177,-2.6426,1.0705,0.38912,-1.1024,2.0764,1.3265,-1.3155,0.82083,-0.90842 2.8089,1.426,-0.70842,-2.4533,-1.8987,-0.37343,-1.936,-0.54703,-0.37211,-1.8116,0.96611,-1.7984,0.42338,-0.42269,0.65263 -0.90611,0.89712,2.5217,-0.051918,-3.0558,0.11326,-1.2056,0.073142,-1.1366,-1.4197,1.1634,0.81919,-0.57318,-0.21928,0.85072 -1.2632,3.1945,-0.74637,-0.28218,-2.1642,-0.51516,0.94204,1.0093,-1.5537,-0.15333,-1.4054,0.056519,-0.012887,0.4343,0.82333 0.11659,0.87262,2.3643,-1.4558,-3.3669,-0.066243,0.10254,-0.41373,-2.515,-1.777,-0.18921,-0.4481,-1.2894,-0.89393,0.21371 0.95409,0.47515,2.2012,1.8038,-1.484,-0.43951,-1.7374,-0.62445,-0.01168,-0.020405,0.54219,1.2668,-1.1708,0.64502,0.51131 0.2451,3.4687,-2.1703,-0.52826,-1.0467,0.20517,-0.78884,0.95793,-0.82291,-0.36213,-1.4461,-1.1516,0.29267,0.27558,-0.42039 -3.6359,0.026477,-1.7137,-0.9916,-0.59194,-0.082274,0.48946,-0.63241,-0.84976,-0.37732,1.7018,0.47566,-0.60375,-0.27037,-1.6753 3.9619,0.1173,-1.1714,-0.20853,0.1982,-1.1115,1.0478,-1.5263,1.0673,0.50603,0.17069,-1.1261,0.40728,-0.0058424,0.31598 0.10519,2.3257,-1.9168,0.43962,-1.8966,0.37519,-1.9805,0.26859,-0.090943,-0.5954,0.99515,0.2325,0.49434,0.4295,-0.97381 -2.8699,-0.015096,-2.0549,-0.61369,0.74611,-1.0562,0.63572,0.31095,-1.0463,1.5548,-0.083724,-0.24769,0.22196,1.7461,-1.1091 -0.18722,0.35417,2.1511,-0.58398,-3.1665,0.59817,1.2223,-0.85434,-1.1129,-0.63199,0.44381,0.51148,0.33056,-0.6917,0.23259 -2.9879,-0.11513,-0.67865,-2.0516,-0.052489,-0.98025,0.9174,-0.99958,-1.3756,1.2971,-0.38642,-0.63278,-0.19768,1.3784,0.089358 2.8967,-2.1578,-0.67915,1.592,1.1141,1.481,-0.73739,1.6066,-0.57672,2.3589,1.2712,1.1279,2.15,0.83778,-1.0192 -3.2977,-0.042143,-1.3097,-1.5934,-0.86016,-1.0346,0.82737,-1.5876,-1.8485,-0.13041,0.35828,-0.035645,0.72913,0.94468,-0.39215 -3.1698,-0.28983,-0.27268,-0.51994,-0.04603,-1.3398,1.1386,-0.5193,-0.38726,1.2444,0.83105,0.11334,-0.39853,1.2154,-0.74545 1.1279,1.1628,-3.0567,-2.164,0.21424,1.0257,0.50441,1.7383,-0.90749,-0.031623,1.8663,-0.3585,0.016587,-1.2727,1.2047 0.068853,0.83488,-1.7049,2.0156,2.8596,0.8683,0.074941,1.3648,-1.524,-0.73774,-0.56291,-0.90171,1.8174,-0.48256,-0.63617 1.1468,1.2447,-1.5263,0.18247,1.0743,-0.80706,-1.101,0.61478,2.2578,0.80829,0.16892,-0.9108,1.7296,-0.26404,-0.47925 0.0018212,0.42698,-1.168,2.0086,-0.53842,0.86771,-1.2335,1.7756,1.0592,-0.63087,0.8116,-0.50026,-1.6203,1.0241,-0.32842 -3.2767,0.88315,-1.3362,-0.54235,-0.21657,0.047378,1.8741,0.56122,-0.099923,0.25511,0.045835,-0.017651,-0.14537,0.59529,-1.0224 -1.2049,-0.70236,-0.13542,-2.1151,-1.2801,-2.4821,1.5359,-1.5914,-0.98477,1.3769,-1.3038,-1.0767,-0.27057,1.4146,0.75397 -3.2312,-0.41734,-2.0569,-1.4601,0.11051,-0.033847,0.74657,-1.6331,-2.2914,-0.31612,-0.46347,-0.5318,-0.17855,0.30851,-0.32835 -0.35852,0.10006,1.4961,-0.0064729,-1.0893,-2.1585,2.7625,-1.0989,-0.23017,1.1871,-1.1433,-1.6418,-0.66579,1.3114,0.82805 4.5723,0.078871,-0.61601,-2.99,0.65024,-3.067,1.8012,1.1259,0.78491,-1.4319,0.31387,0.17799,0.57901,0.53353,-0.59177 -3.0292,-0.51038,-2.5084,-1.6713,1.5135,0.59869,0.089608,-1.1058,-1.5781,0.55762,-1.5803,0.39311,-0.3563,0.59315,-0.030732 0.91476,0.99904,-0.52189,1.828,3.0282,-1.8817,-0.039405,3.0593,-0.87059,-0.48815,-0.47484,-1.3795,-0.55851,0.84281,-0.46768 2.1246,2.3004,1.2805,-1.5129,1.2346,-1.4564,-0.82054,0.59169,-1.4059,2.1782,0.44992,-0.31118,0.69719,0.17049,-0.63183 -1.4734,0.0049567,-2.3208,-0.86803,2.0035,-0.54832,-0.59492,0.60206,-2.1269,0.075967,-0.076542,2.5673,-0.61591,0.73408,0.79204 0.86309,0.19107,-0.53952,1.098,-0.45414,2.1364,-2.0132,1.9655,-0.65224,-0.43305,0.038113,-0.21963,1.6065,-0.14507,-0.19943 4.1527,-2.4183,-2.2104,0.71637,0.20852,-0.16912,1.3379,-0.90953,0.2073,-2.8501,0.54405,-0.3386,-0.33625,-1.3612,-1.0974 -2.0165,-0.39571,-2.1993,-0.79908,1.3392,-1.8677,-0.43783,-0.18857,-2.4812,1.2663,-0.40873,1.3944,-0.15938,2.4099,0.33694 3.2692,-2.8075,-2.981,0.1972,-0.52196,0.11738,2.429,0.80522,1.6351,-1.2909,1.3945,1.9857,0.21345,0.8003,0.3545 1.5809,1.4799,-1.9162,-0.50137,-0.85472,-0.5592,-0.90318,0.55185,1.0117,1.642,-0.17567,-1.5403,0.45968,0.053222,0.61887 -0.2186,0.63133,1.7425,2.3502,-1.5985,-1.4001,-0.77217,-0.78505,-0.17387,-0.75693,0.59135,1.2678,-0.59999,-0.16416,0.50731 2.0135,2.6664,-0.17664,0.08622,-1.5293,-1.8434,-0.20025,-0.19793,0.27993,-1.0064,-1.4698,-1.0322,-0.64115,1.2816,0.34129 0.19187,0.29591,-0.092711,1.1426,-1.8402,-1.8865,0.78054,-0.65652,0.0037958,1.2172,0.6738,0.39798,0.39741,1.0422,0.84698 2.2965,1.5031,-1.6827,1.0142,0.35136,-0.076772,-0.09963,-0.75874,0.39649,0.801,-1.4024,-2.4209,0.9311,-0.60654,0.12548 4.533,-1.3072,-0.87727,1.1989,-1.3893,1.6339,0.7219,2.6164,-0.41853,0.32778,-1.475,-0.93584,-0.45927,1.33,-0.28422 4.7141,-1.5146,1.2202,1.2307,0.14054,-0.38853,-1.6058,-0.55396,-0.93011,0.37194,1.3781,-0.44289,0.037417,0.88436,0.094995 2.6195,-1.0317,-1.4996,0.7371,-0.23942,-0.95046,0.3151,-0.76582,0.44482,-0.018367,2.9499,0.33007,1.2473,0.78351,0.81061 -0.73623,-0.3711,2.0962,1.8218,-1.5558,2.2457,-1.0553,0.35268,0.47923,0.61649,1.6517,0.038075,-1.0381,-0.19053,0.85397 -0.62629,-1.3551,0.26105,2.8053,-0.67549,1.5138,-0.11407,0.63176,0.89313,-0.37525,1.1752,0.051216,-0.62843,-0.90016,0.41565 4.3744,-0.86252,-0.70494,0.46334,-1.6501,0.97812,-0.95422,0.74522,0.68352,-0.74648,-0.9494,-0.82869,-1.1696,0.39983,-0.53198 3.6817,-0.20948,-0.61688,-2.2056,-2.4186,-0.19559,-1.9569,0.29949,0.416,-1.2264,0.4627,-1.128,0.072103,0.77641,0.6201 0.24474,0.36391,0.24189,2.3193,-0.29073,-0.15295,-1.8967,1.3278,0.91553,-0.85526,1.5135,-0.12641,-1.6146,0.34196,-0.46801 3.6965,-1.5063,-0.79157,1.6125,-1.4591,2.5425,0.89779,2.6425,-0.58815,0.059722,-1.0569,-0.41618,-0.83178,1.4654,-0.74029 -2.6188,-1.2986,-0.82454,0.97,1.2791,-1.2572,1.1802,-0.66712,-0.047002,-0.58145,0.96687,-0.89321,-1.1961,0.27465,-0.87215 1.2614,-0.55244,-1.7952,0.72803,1.3276,1.7381,-1.2047,0.75579,-0.12675,-2.5972,2.1446,-0.85024,-0.94269,0.35635,-0.037681 -2.1911,1.5692,-1.4661,0.45715,-0.33074,-0.25784,0.22837,2.9396,0.71042,0.56873,-0.57124,0.038123,-1.0032,-0.28145,0.50948 0.24336,1.4323,0.59108,0.55624,-2.8385,-1.5306,1.4284,-0.42889,0.23558,0.063028,-1.2021,-0.056036,-0.10464,0.82908,1.3574 0.65304,-1.0359,1.0349,-0.88087,-3.8375,1.0029,0.82685,1.2769,0.80945,-0.77033,-0.58483,-1.4225,-1.6858,-0.39312,0.58075 1.2936,1.2947,-1.7456,0.53363,-1.0058,-0.7488,-0.88386,-1.0573,1.1997,0.96527,0.82988,-0.9452,0.67429,0.97064,0.85411 5.1212,-4.1377,-1.2186,-1.0524,-0.56889,0.58315,2.3674,2.3475,-0.82195,1.4289,-0.3135,1.9209,-1.028,0.65931,0.065583 0.95714,-0.35452,-0.29917,1.7203,-0.049653,-0.60066,-2.1685,1.0561,1.6726,-1.1845,1.3579,0.4169,-0.16906,1.075,-1.0311 1.7232,-0.012817,2.5552,0.85726,-2.2441,0.079514,-0.0072841,-0.71053,0.50212,-0.30224,-0.91754,1.2806,-0.87717,-1.2163,-1.287 4.7833,-1.0474,-0.8237,0.47212,-0.99504,2.2345,-0.56627,0.30542,-0.87866,0.15232,-0.88533,-0.56293,-0.12574,0.37738,-0.35357 1.3639,0.5343,2.0179,1.1129,-1.4728,-2.6166,1.0769,-0.29054,-1.635,0.00049046,-0.43753,0.12827,0.9468,1.3556,0.31047 -1.7962,-1.4277,-0.099935,0.68916,0.12937,-2.5084,0.91264,-1.5289,-0.69721,1.6144,0.8276,0.10026,0.94888,0.83899,-0.72712 -1.337,-3.9238,-0.9987,1.1632,0.52444,-1.7423,-1.9345,-0.076385,-0.86862,0.33124,0.36448,0.9455,-0.46334,-1.0318,-0.7044 -0.23377,-3.2746,2.1253,-0.75066,-2.3117,-0.41721,0.21484,-0.59727,-0.70947,0.65418,0.61971,-0.16728,1.0209,-0.85682,-1.0697 0.38821,-2.8362,-0.86507,1.1572,-0.6932,-1.3472,-1.8735,-1.2601,-0.92108,1.0783,-0.68952,1.465,-0.11486,-1.0109,1.3523 3.798,-3.2554,-2.0761,0.72795,0.71581,-0.15436,3.5165,0.37286,0.51998,-1.6803,0.13009,1.456,0.38755,0.95129,0.33531 3.8001,-0.71259,-1.386,-3.9551,0.76696,-2.6549,2.4737,2.7679,-0.40042,0.16441,0.60554,0.82746,0.52661,0.54845,0.60337 0.59276,1.583,0.0065776,-0.0035317,-3.2434,-0.15816,-0.18939,-0.18096,-0.057055,-1.0767,-1.0486,0.48755,0.056174,-1.3606,0.48393 0.7738,-1.5236,-0.66885,-1.0006,-0.91057,-2.4976,0.35601,-1.6074,-2.0769,0.72885,-0.92051,1.8537,1.2453,0.15485,-0.26736 0.8621,-4.8782,0.0047193,1.3684,0.033838,1.3498,-1.1219,0.21344,-1.4042,2.1668,-1.1489,-0.22044,1.4043,0.047489,-0.17654 3.7205,1.2652,-1.004,-0.14441,0.34724,-1.4801,0.80641,0.11773,-0.012257,1.7128,-1.382,-1.3995,0.64573,0.023082,-0.81781 -0.75439,2.8211,1.3513,1.0429,-0.88276,-2.0339,0.14251,0.54995,-1.4554,0.48182,-0.24175,0.021998,0.56021,1.4493,0.12587 1.7819,-2.8513,2.8461,1.0699,-2.3006,-0.44297,1.2458,-0.6023,-0.86094,0.71022,0.31333,-0.52513,-0.37061,-0.84589,-0.56846 -1.6918,-3.3902,0.09661,1.5148,-0.082234,-1.034,-0.50398,-0.64832,-0.42982,0.38201,1.5729,-0.37602,-0.47043,-0.8854,-1.3346 -1.4802,-1.9488,1.1321,-0.099707,-1.4681,-1.6592,0.72561,-1.144,-1.0455,0.81528,1.3428,0.25406,1.1869,-0.44045,-1.5581 -1.8847,-1.9381,-2.7124,-0.27795,0.2248,-1.9082,-1.1468,0.51089,-1.1534,-0.78295,-0.1585,1.4546,-0.79186,-0.1298,-0.47375 3.0833,-2.3843,-1.1418,1.2093,-0.27449,0.77512,1.4551,-1.3712,-0.24885,0.12032,1.2252,1.1479,1.2419,0.23368,1.5215 -1.0832,-3.6625,-0.19062,-0.1258,-1.5351,-0.40583,-1.7684,0.052028,0.34807,1.1902,-0.016095,0.045543,0.6899,-0.64215,-0.57902 0.72061,-0.70769,-1.6284,-0.51928,-0.91927,-2.0468,0.15244,-1.0716,-0.68395,1.6518,-2.4362,1.6022,1.0719,0.28851,0.6783 1.3502,0.51571,-0.154,3.1813,-0.32827,-0.57488,-0.38918,-1.5037,-0.81389,-1.1478,0.92971,-0.21181,0.55972,0.83906,0.45657 -0.19235,2.3771,-0.8659,0.75695,-1.0772,-1.0874,1.2658,1.1669,-0.17762,0.60614,-2.1867,0.041406,0.46004,-1.0707,0.46972 -2.6724,-2.4192,-0.02359,-1.0794,-0.63719,1.0507,-1.6876,1.3211,0.80575,0.72471,0.52145,-1.3431,-0.17816,0.081311,-0.65792 -1.9523,-2.8679,-0.0050854,-1.3688,-0.66625,1.0579,-2.8645,-0.9352,-0.07828,1.218,-0.46572,0.58713,-0.3448,-0.52851,0.028091 0.074327,2.592,0.33454,1.3146,-0.6659,-1.1801,1.1589,0.45753,-0.55596,1.0588,-2.4724,-0.94855,-0.98764,0.44082,1.1709 4.0262,-2.228,-1.7259,-0.026543,-0.88572,-0.48874,1.8076,-0.54399,1.3358,-0.35908,0.37273,0.30502,-0.096746,0.224,0.55565 -1.5184,-3.2397,-1.4716,0.039204,-0.34246,0.23246,-2.3893,1.8674,0.36444,1.3383,-0.90301,-0.78675,-0.1769,0.6546,0.61438 -0.26595,-2.9808,2.0487,-0.42439,1.5117,1.8322,0.18463,0.90284,0.2187,2.9885,-0.96935,-1.6263,0.49787,-0.52344,-1.1384 2.3936,-1.7718,-3.7321,1.7433,-0.74884,1.9834,2.2655,1.2834,-0.30129,0.156,-0.60679,0.49282,0.66129,-0.11894,-0.38667 -2.2527,-2.051,-2.4675,0.31408,-0.6894,-0.42122,-1.9188,-0.24189,0.63055,0.099676,-0.47493,0.16431,-0.79695,-0.96291,0.22497 -2.0251,-2.7221,-1.7587,-0.42715,-0.73798,0.3147,-2.7699,0.78645,0.26403,-0.08876,-0.32254,0.19367,-0.55669,-0.63752,0.39049 -0.95282,2.5618,-2.3328,-0.30372,0.72008,1.309,-1.762,1.3693,-0.16819,-0.07093,1.1288,-0.87626,0.75711,-0.57053,-0.66826 -0.52631,-0.19917,-1.8473,1.1391,-1.6176,-0.38539,-0.05062,1.7169,0.91941,-0.73351,0.7668,0.32894,-0.076217,-0.084484,-0.54708 -1.5848,1.4604,-1.0443,0.62909,-1.7459,0.78225,0.47683,0.83073,-0.10935,1.021,0.49279,0.87098,0.034781,0.75342,0.46523 -1.7444,-2.9672,1.049,-0.87628,-0.93565,1.5026,-1.8062,1.5821,0.36923,1.3443,0.58999,-1.6085,0.60696,0.3525,-0.71273 -3.395,-2.3997,-0.80899,-1.8148,-0.30829,1.4171,-2.1712,-0.25878,-2.0383,-0.0080821,-0.24125,-0.81121,0.13849,-1.1248,0.10897 -2.7257,0.4835,-0.13505,-1.294,0.02786,-0.27936,1.9564,0.55896,0.15641,0.15289,-0.41003,-0.35048,1.7194,-0.33523,0.91242 -0.99946,-2.1467,0.52004,-2.3053,-2.8582,1.8481,-1.2881,-0.78715,-0.63781,0.71469,-0.75606,-1.8465,-0.60385,0.42735,0.14921 -2.0128,-2.1902,0.30317,-0.72841,-2.2742,1.009,-1.8117,-0.19701,0.27362,0.46559,0.71267,-0.99629,0.55842,0.36989,0.039959 0.7596,3.3252,-2.8225,-0.17092,-0.12203,0.45285,0.11796,0.78558,-0.65923,-0.75305,-1.4865,-1.9314,0.12433,-0.32122,-0.58058 1.2725,-2.0591,2.3499,-2.1447,-3.5422,1.6395,0.7351,1.6514,-0.54958,0.4386,-0.59913,-1.7461,-1.3312,0.64697,0.041213 1.9352,2.5948,-1.4135,-1.7096,-1.6823,-0.20504,-1.4469,-1.131,-1.1896,-0.37356,1.4435,-1.5813,0.23704,-0.23604,0.27259 2.7937,1.8214,-1.5328,-0.74411,-1.2127,-0.8452,-0.11365,-0.87362,1.2824,-0.5042,-0.85366,-1.1463,0.30621,0.68531,-0.89152 3.8717,1.2456,-0.27909,-2.6779,-0.90005,-2.0275,-0.10161,0.61082,0.55678,-1.6963,-0.30107,-0.95596,0.57162,1.0365,-0.19558 3.4128,-2.2904,2.3434,0.92869,-1.3251,-2.292,1.3695,0.6233,-1.306,-1.5476,-1.0712,0.65377,-0.23448,-0.36828,-1.1039 -1.0041,-3.1494,1.8201,1.6324,-1.2381,-1.4661,0.15427,-0.28986,-0.48749,0.47511,1.2303,-0.16345,-0.25882,-1.1516,-0.27348 2.6145,-4.3394,2.4454,1.0345,-0.81848,0.80792,1.1719,-0.47243,-2.2709,0.71574,-0.6449,-0.28984,-0.392,-1.0611,-0.069663 -1.7777,-0.010318,-3.0888,0.80143,0.1333,0.65354,-0.01676,0.016589,-0.092171,0.30845,0.69378,0.43039,-0.72813,0.10067,-1.0461 2.0601,-2.6946,3.0597,1.0043,-1.6806,0.91215,-0.52646,1.9181,-0.89513,1.8812,-0.71539,-0.094911,0.89863,-0.26318,-0.27715 -1.4711,0.9153,-1.0961,3.0286,0.81941,0.845,0.27542,0.88059,-0.49468,-0.57287,0.46747,0.36376,-1.9224,-0.22859,-0.11995 1.2973,-4.3779,2.115,-0.24116,-1.6613,0.021716,0.59156,-0.87438,-1.1788,1.9878,-0.81309,-0.7427,-1.0182,-1.1933,-1.0624 2.8677,-1.039,-3.3354,-1.0599,-1.8814,1.4527,0.3972,2.1732,0.6412,0.96148,0.35063,-0.2389,0.23643,1.2175,0.15349 0.10466,-1.911,2.6902,-0.27589,-2.6625,-0.69757,0.39861,-1.267,-0.2805,0.66317,0.45301,-0.39324,0.018124,-1.1371,-0.83054 0.92988,-3.4626,0.99308,-0.81134,-1.8668,-1.3672,1.6723,-1.6546,-0.1178,0.79873,-1.0747,-0.58419,-1.0378,-0.65456,-1.4259 -0.40958,2.2637,-1.6289,1.2845,-1.3577,0.7589,-0.55038,0.64988,-0.36701,0.91763,-0.89426,0.083857,-0.19621,1.2082,-0.054239 2.0083,-1.8138,2.8216,1.7501,-1.6477,-0.82091,-1.2326,0.21548,-0.65381,0.040008,-0.07944,0.36515,0.047079,-0.73501,-0.093795 -1.7579,-4.0396,0.15463,0.48154,-0.23253,-0.16785,-1.1869,1.6862,0.61132,1.0536,0.97845,-1.375,-0.93384,-0.041854,-0.68869 2.424,1.6616,-0.89341,-1.1702,-1.1573,-0.88646,-1.6013,-1.3398,-0.37985,0.65594,2.2672,-1.1018,-0.37747,0.5923,0.67893 3.2184,-2.9894,-1.8683,-1.859,-1.5579,-0.75471,2.0571,2.6385,0.7706,-0.93624,0.93586,2.5193,0.63405,1.9173,-0.084763 0.98612,-3.6256,2.2902,-0.63952,-1.7488,-0.80246,0.76661,-1.0141,-1.1734,1.5522,-0.19635,0.344,-0.41943,-1.4588,-1.6074 3.3769,-2.702,1.4437,0.9476,-1.8161,-0.098112,0.060676,0.88316,0.071156,-1.011,-1.6099,0.18422,-0.27724,-0.68022,-1.382 2.0148,0.25455,-2.9894,-2.5647,-1.5472,0.36334,0.89657,1.1762,-0.28855,-1.5216,1.9868,0.13544,0.45166,-0.73657,1.6413 0.33116,-3.128,0.25323,-1.6503,-2.2625,-2.1503,1.8699,-0.70399,0.34646,-0.037419,-1.2087,-0.050088,-0.57074,-0.51844,-1.8052 3.4566,-2.5964,1.9602,0.68042,-2.3293,1.3123,0.61747,2.6009,0.1517,-0.15877,-2.054,-0.43453,-1.7733,0.26938,-0.8913 0.93764,1.7938,-0.47654,0.99461,0.9034,-0.14505,-0.17794,1.3919,0.89106,0.6673,-2.2869,-0.12376,1.187,0.40588,-0.75726 -2.5256,-1.7717,-1.9438,1.0811,0.77546,-0.78674,-0.54901,-1.903,-0.2197,0.72543,0.36968,1.2412,-0.3249,-0.91189,-1.0456 -1.0949,-0.61459,2.4177,1.2873,-0.42459,-3.0474,1.2893,-0.34804,-1.0203,-0.38755,1.0827,-0.3085,0.17687,0.67882,-0.0051852 1.8631,-2.0973,3.4511,-0.92093,-2.4437,-1.4054,-0.25156,1.0458,-1.3432,-0.74926,0.076291,-0.084299,-0.046839,-0.0019976,-0.59376 2.8269,-2.1051,3.8805,-1.8927,-2.0342,-0.067674,0.0016594,2.6353,-2.5902,0.7461,0.16403,0.0132,-0.67699,0.14674,-0.57833 -0.98438,2.4296,0.10377,-0.13523,-3.0479,0.13661,0.90023,-0.43833,-1.9549,-1.9832,-0.2404,0.099528,-0.41046,-0.55537,1.1922 -0.44464,1.1905,1.2227,1.013,-1.1217,-2.9584,0.25351,1.3296,-1.0014,-0.81233,0.30701,0.90434,1.5359,1.0177,-0.10816 -0.40702,1.0766,1.7748,0.55706,-1.7846,-0.020793,-0.83,-0.13697,0.96085,-0.22217,0.90548,1.6084,-0.043421,0.30588,0.79074 1.6351,1.0287,-0.85051,2.4901,-1.0263,-0.57367,0.27586,-1.2952,0.10627,-0.68308,-1.1996,-0.38347,1.0905,0.15703,0.042743 -0.88067,-2.1766,1.5396,-1.0736,-0.76271,-3.2098,1.836,-0.85163,-1.9787,1.0518,-0.12898,0.1878,1.3343,-0.28648,-1.3646 2.1358,1.8032,0.46836,-0.72626,-0.85917,-2.7334,-1.1516,-0.63378,-0.40252,-1.7038,0.22978,-0.59726,2.1814,0.55384,-0.12072 0.90781,-0.96657,-0.36404,3.0399,-1.4498,1.1009,-0.073572,-0.72432,-0.33931,-1.8258,0.046776,-0.13817,1.0159,-0.66679,0.93042 1.9484,-0.23111,3.4765,-0.17734,-1.4753,-2.6896,0.40795,0.58131,-2.6111,-0.99158,0.59526,1.4576,1.1713,0.33893,-0.82279 1.5718,0.6354,0.84128,-1.0846,-3.3161,1.834,-1.0738,1.0693,-1.0884,-1.9228,-0.93054,-0.41821,-0.3134,-0.43405,0.9186 -1.4814,-4.0944,1.0958,-2.294,-0.18406,-0.88449,-2.3974,0.20552,-2.1819,0.47513,-0.11316,1.0463,-0.25599,-0.66652,-0.27616 -0.97508,-3.4949,2.9468,-0.25997,-1.0978,-1.9919,-0.11092,0.52314,-1.1111,-0.22585,1.1186,-0.24646,0.54151,-0.69522,-1.5984 2.2335,-1.057,0.081476,1.8932,-1.7327,0.23343,-2.2397,0.28454,0.9862,-0.41764,-0.088457,-0.11782,1.0746,-0.64861,-0.35121 -2.9489,-3.5437,-0.51634,0.61506,0.22911,-1.7627,-0.95988,-0.0034348,-0.92364,-0.086614,0.43283,-0.75125,-1.8494,-1.4016,-0.80001 -0.059957,-1.4889,2.7133,1.9535,0.38704,-0.33781,0.80668,-1.444,-2.5186,-0.44094,1.5255,0.28065,-0.33162,-1.6722,0.28082 2.248,1.6196,1.6695,1.3981,2.0669,-2.4029,0.1641,-1.0935,-0.99107,0.16624,-0.1562,-1.3273,0.25149,0.89119,0.48443 1.4916,-1.9739,3.536,-0.35381,-2.3531,-0.38035,-1.1269,1.7899,-2.0128,-0.027935,0.30346,0.4496,0.32003,-0.87993,-0.46612 -0.34965,-2.5031,0.56842,2.6656,-0.30374,2.5458,0.028826,0.8168,-0.15314,1.4203,1.1992,-1.3781,0.45737,-0.0036338,-0.19204 -1.1813,-1.8193,-0.72975,-1.724,-1.0043,-2.9698,0.28975,-1.142,-1.9037,0.76398,-1.0389,0.89322,1.8206,0.1568,-0.58468 0.80729,-0.35263,2.0353,-0.56218,-2.3156,-2.066,2.6146,-0.10625,0.35358,-0.057359,-1.3829,-0.26056,-0.75825,0.91838,0.559 0.99428,0.48714,2.0631,-0.56893,-2.6811,1.4376,-0.87826,0.13368,0.88041,0.1586,-0.4079,0.70813,-0.63418,-0.96694,0.45245 3.3783,-0.64576,-0.64073,-0.54693,0.045864,-2.2981,0.077527,-0.68573,-0.21451,0.13611,3.2387,0.068628,1.4306,1.2097,1.1422 1.4027,-3.581,0.2582,-0.88189,-2.1492,-1.7694,2.3456,-0.66883,0.068069,-0.28578,-0.88907,-0.29099,-1.3131,-0.028124,-1.7747 -0.59526,-1.6994,1.5397,-1.6222,-3.1465,-1.5801,0.89439,-1.3255,-0.72234,0.14894,0.27324,-0.9074,-0.52228,0.47537,0.17515 1.5599,1.7688,-1.4449,0.37605,-1.5462,-1.3484,-0.91942,-0.55641,1.1588,-1.1655,-0.3168,-0.67644,-0.31067,1.3695,-0.28054 1.5773,-2.3626,1.6971,0.13635,-2.5987,-1.6569,2.9482,-0.20338,-0.075125,-0.19765,-1.2829,0.30685,-1.3781,-0.38249,-0.82999 1.3349,-0.056824,2.2168,-1.2907,-3.4447,0.30747,0.3774,0.63728,0.3076,-0.53894,0.3235,-0.87019,-1.2796,0.79131,1.0402 0.15188,-0.5887,2.1004,2.2455,-1.9158,0.67787,-0.68064,-0.73516,-0.70696,0.87709,1.0126,0.19158,-1.835,-0.49503,1.363 2.3647,-3.9327,1.3463,1.1649,-1.6983,0.47897,2.7417,-0.17467,-0.8961,-1.0867,-0.94564,-0.99554,-1.6644,-1.1452,-0.81238 0.066205,1.6989,-1.8036,2.2692,1.8816,-1.2163,-0.1087,1.5036,-0.97299,-0.20888,-1.3215,-2.1544,-0.12304,0.071631,0.06898 0.50417,-2.4926,-0.96132,0.079545,-1.2024,-2.3674,1.5572,-2.3524,-0.75366,0.82785,-1.5662,-0.48333,-0.62705,-0.10472,-0.44063 3.5578,-1.5631,2.3309,0.68016,-1.5893,2.1757,1.2805,1.3192,-1.2223,1.9464,-0.46427,-0.31007,-1.2035,1.1583,-0.35072 4.9357,-2.5222,0.39534,0.97413,-1.2005,0.10061,-0.4158,1.3676,-0.088378,-1.157,-1.4297,0.29461,-1.6366,0.085191,-1.746 -0.58087,-2.3885,-0.47602,-1.9566,-2.5028,-1.5838,-0.080795,-1.8097,-0.004942,0.36575,-1.2258,-0.066614,-0.32803,-0.085357,-0.14016 -0.022948,1.9558,-1.4332,2.5985,1.7897,-1.0005,0.58544,2.2038,-0.84399,-0.56392,-1.8786,-1.4301,-0.80999,0.31481,-0.38394 -0.7187,-1.1873,-0.36273,-0.26613,-2.5641,-1.5833,1.2621,-1.7376,0.27612,1.0125,-0.37715,-0.37958,0.069765,-0.093967,-0.1874 1.6564,-1.3408,2.6127,0.7605,-2.686,-1.1592,1.4862,-0.036052,0.068583,-0.20542,-1.3116,1.0713,-0.78295,-0.69565,-0.070583 0.21034,-1.2269,0.72006,-1.4113,-3.2945,-0.43375,0.21438,0.27188,-0.12335,0.2352,-0.91687,-0.5581,-1.3707,-0.38871,0.86265 2.9035,0.58336,-1.8753,-2.3944,-0.039855,-2.2561,0.83872,2.0308,-0.17547,2.0977,0.95951,-0.60522,0.05805,-0.23717,1.686 2.9409,-0.63031,0.60566,2.5265,-0.69274,0.92529,-0.90342,-1.5136,-1.0891,-2.0215,0.25064,0.073946,0.54669,0.29365,0.77571 1.8623,0.84734,-2.3274,-2.9814,-0.89023,-0.99258,0.12615,2.8053,-0.38928,0.64922,0.80604,-0.59546,0.81829,-0.10523,0.90196 3.965,-1.8899,-1.5734,-3.3509,-0.33708,-1.639,1.7375,2.0689,1.4203,-1.3279,1.4297,1.5891,0.97487,1.8429,-0.06401 2.8652,-0.77252,-1.9384,-0.20815,-0.43943,-1.8917,1.7748,1.2435,0.57186,1.669,0.32936,0.47689,-0.35603,-0.43285,0.90547 3.8467,-0.50166,-1.4833,-3.6107,-1.6088,-1.8978,0.58034,0.4691,0.079163,-0.80151,1.2149,-0.14272,0.16016,-0.95363,0.98617 4.0978,-0.90702,-1.7878,-1.766,1.2097,-2.8179,2.8071,1.506,0.34127,1.1499,0.5292,0.59331,-0.24005,-0.37048,0.49073 3.6275,-1.8189,-0.98247,-1.0319,0.36439,-2.4898,2.7318,0.85574,0.5653,0.59331,0.3695,1.1158,-0.42962,0.43572,1.6234 3.3457,-1.0949,-1.5851,-1.5367,1.3362,-2.2787,2.8048,2.4202,0.42198,0.92863,0.34054,1.5529,-0.098363,-0.041057,0.18016 2.5251,0.46242,-2.1997,-2.4436,-1.0445,-1.9572,1.1018,1.8817,0.23812,1.1653,0.53438,0.18231,0.72085,-0.045145,0.65289 -0.044581,0.61415,-0.64575,1.6507,0.82472,0.10063,0.47168,-0.027363,-1.0656,0.15672,-2.2794,-0.56862,0.5002,-0.38904,1.7836 1.7824,-0.16614,-1.9705,1.9475,0.10841,0.0066781,-0.62313,-1.5231,-0.092135,-1.1334,1.9136,-1.055,0.44496,1.1678,0.82614 3.5404,0.87174,-1.6171,-3.1041,0.08646,-2.5934,1.18,0.82135,0.66196,0.12556,0.96014,-0.4196,0.059411,0.80102,0.90557 2.5457,-0.74359,-2.312,-1.1835,-1.453,-0.22018,-0.030468,0.30576,1.8609,-0.96551,1.8115,-0.49844,0.097053,1.1435,0.97541 2.806,1.3414,-2.1394,-3.6229,-0.040331,-1.0025,0.66357,2.2004,-0.71719,-0.30263,0.7988,-1.0687,0.90948,-0.35971,0.73471 3.9168,-1.2201,-0.7722,-0.56955,-1.0345,-0.88433,-0.78872,-1.1867,1.3711,-1.0127,0.50933,-1.7064,-1.1459,0.26029,1.0788 2.4146,1.4883,-1.5085,-2.5815,0.86103,-0.82395,-0.17502,3.2006,0.05749,0.18397,0.040697,-0.67464,0.6761,-0.45486,-1.4629 1.1398,2.1227,0.3275,-0.81352,-0.56114,-0.88156,-0.679,2.3917,-0.91757,1.0337,-1.7508,-0.84059,-0.6417,0.50106,0.089785 2.1617,2.2754,-1.0785,-1.7283,-0.15603,-1.2828,-0.50778,1.8501,-0.18773,0.84893,-1.0877,-1.4425,0.50392,0.6784,-0.37942 -0.39402,0.91011,-0.97925,1.4756,0.44289,-1.6162,-0.023302,2.0147,0.97536,-0.76029,-0.81878,-0.35414,-0.79474,0.59011,-0.35378 -1.1616,3.8306,-0.43557,-0.1073,-0.985,0.39566,0.66124,0.50595,-2.1979,-0.43473,-1.7306,-0.13307,-0.039625,0.38013,0.46199 3.9283,-1.9675,-2.4751,0.39625,0.86846,-0.97205,3.3763,-0.34328,-1.1656,-2.1169,-0.22366,0.64862,0.89193,0.41229,-0.50534 2.906,-0.057299,-2.0388,-0.11278,-1.2386,1.1281,0.13612,0.023335,-1.1211,2.3505,2.08,-0.73785,-0.31558,1.9243,1.7097 1.7059,0.99455,-1.6475,1.3469,0.34081,-0.33698,-0.51439,-2.6768,-0.36202,-0.78016,1.0567,-1.6963,0.91577,0.73331,1.1535 2.0754,0.28891,2.3478,0.84725,-2.5085,-0.43094,-0.91268,-0.78543,0.45127,-0.29014,0.18787,0.26289,-0.94434,0.4084,1.2197 -0.30089,-0.78647,-1.2894,0.17761,-1.1212,-2.0463,-0.80047,-1.5118,-0.91329,1.3483,-0.18506,1.2589,0.64049,0.12097,0.63276 -1.7847,-2.747,-1.1508,0.35423,1.111,-1.6635,-1.1758,0.4599,-3.1054,-1.0377,-0.92698,0.3302,0.42202,-2.3264,-0.23037 -0.23408,0.55613,1.8149,1.2313,3.2118,-0.32881,2.1753,0.99747,-1.8542,1.6599,-1.4434,0.30763,0.83423,-0.278,0.66158 1.1671,3.3578,-0.89782,-1.3049,-1.1353,-0.92248,-0.5704,-1.0245,-1.7662,-1.5309,0.082389,-1.8363,0.72627,0.21362,0.61834 2.6015,0.92141,-1.2505,-1.5962,-0.84342,-1.0991,0.058834,-0.95965,0.86659,-0.016908,0.71643,-1.0252,1.3979,0.49674,0.99489 2.2706,-2.1655,0.64087,2.6669,0.55477,1.8128,-2.4783,1.2018,-0.54305,0.073061,0.97194,-0.11385,0.73269,-0.29755,-0.79649 -0.79498,-3.5653,0.49403,0.99155,0.84891,1.4148,-1.6211,-0.17178,-1.1421,-0.30703,-0.59652,-1.6421,0.95046,-1.5469,0.49925 -1.4969,-3.1715,-1.1377,2.1869,0.27779,-0.39758,0.0075474,-0.44696,-1.0918,-1.6394,1.1081,-1.1165,0.13769,-1.9478,-0.88174 3.1201,1.5494,-0.93942,-0.010158,0.022234,-1.7203,0.068392,-1.1144,0.40661,1.859,-0.77001,-1.8773,0.78457,0.068841,0.30867 -2.46,-1.9922,-0.0076495,0.40668,1.5655,-0.50574,-1.0615,-0.68727,1.0168,0.057658,-0.036755,-1.3957,-0.73783,-0.68642,0.31632 1.2092,-1.4972,-1.4447,1.0224,-0.97215,0.70248,-0.59962,-1.508,-0.66318,0.80131,-1.6138,0.81651,-0.50306,-2.0094,0.80901 0.68692,2.5279,-2.4452,-1.5438,0.36217,0.12375,-1.2373,1.2895,-0.45857,0.45474,1.5471,-1.1887,0.014546,-0.34871,-0.44884 2.5996,-0.46796,-2.8156,0.25184,-1.0512,0.31086,1.3489,-0.34597,1.6297,0.1697,0.22974,-0.0096317,0.95193,0.16976,0.39217 -0.73931,-2.0802,-0.58959,-0.094008,-0.41261,-0.034995,-0.90838,2.1775,0.25239,1.7973,-0.5396,-0.50618,1.2694,0.44801,0.23535 -2.4702,2.4816,-0.21133,-0.25861,0.22643,0.04867,-0.25038,3.4586,-0.2529,-0.87946,-0.23865,-0.32681,-1.1451,-0.8373,0.59089 -2.8047,-1.2458,-2.9428,0.97012,-0.18944,-1.3504,-0.64555,-0.98332,-0.60041,-0.32727,0.1385,1.0017,-0.57695,-0.060729,-0.38257 0.91345,-0.46536,-0.33114,1.7218,-1.8646,1.0614,0.04071,-1.1043,-0.0353,-1.6877,-1.1138,-0.49821,-0.53834,-0.19471,1.968 -1.7427,-0.76403,-0.030449,1.6125,-0.82584,0.89637,0.065591,0.83645,0.85297,1.1902,2.0099,-0.012856,-1.4232,0.15098,-0.25319 1.3913,-1.9324,0.18294,1.1238,2.1286,-0.99907,-0.95054,-1.8514,-1.5029,-1.5398,2.9184,-0.33387,0.53177,-0.639,0.97703 2.0354,-2.186,0.53189,0.61046,-0.45998,2.9829,0.077964,-0.65996,-1.0434,-0.12585,-0.93733,-1.1097,0.64621,-1.1848,0.26494 1.6542,-3.111,-1.3956,0.99068,-1.0665,2.4979,0.36756,-0.025563,0.038149,0.20541,-1.67,-1.5025,-0.056306,-0.78738,-0.50046 3.7876,-3.522,-2.5981,-0.18088,-1.7367,1.0846,1.7176,2.5978,0.37073,0.7045,-0.40353,1.4928,-0.75011,0.58318,-0.56901 0.69051,-3.0012,2.1852,0.88408,-0.10625,1.9283,-0.78251,0.64645,0.29795,2.3681,0.37977,-1.3041,0.39921,-0.40704,-0.064542 -1.1431,-2.276,0.33766,0.31051,-0.80517,1.8509,-1.6124,-1.8036,-0.25641,1.8117,0.46387,-1.4537,-0.63362,0.062907,0.17894 0.47041,-0.97701,-2.7646,-0.20849,-1.3613,-2.0108,0.19593,-0.41336,-0.40921,0.36852,-1.7555,1.8244,-0.12448,-0.15007,0.033038 -0.81322,0.38364,-1.4133,1.8119,-0.74178,0.27721,-0.15165,1.7124,1.6687,0.10751,0.24355,-0.35424,-0.98775,0.16927,0.34047 0.26395,-2.623,-1.6,1.0194,-0.35711,0.035776,0.57359,-1.9368,-1.0455,0.48489,-1.1353,1.2157,0.80965,-1.3869,-1.5015 -1.218,-1.4422,0.35775,-0.0037223,-2.0258,2.1386,-1.119,0.036836,0.6299,2.1993,0.90459,-1.0165,0.41427,0.65667,0.015823 -1.2029,-2.64,0.65521,-0.22931,-0.98289,-2.3898,-1.0135,-3.1458,-1.6024,1.1967,-0.20927,-0.04049,-0.90785,-0.40154,0.21945 -0.74433,-2.1699,0.57915,0.25351,-1.976,1.3175,-0.9313,0.66688,1.0153,2.1272,0.07699,-1.6454,1.0807,0.35718,0.10051 -0.41865,-4.1245,2.165,0.079955,0.57022,1.8671,-1.6965,-0.49867,-1.0157,2.8378,-0.026365,-1.3997,-0.47547,0.79768,0.10756 1.3544,-4.6415,0.3256,-0.74975,-1.6155,-0.066857,-0.11189,-0.15442,0.064715,0.59094,-2.0698,-1.7897,-2.4966,-0.46004,-0.61436 -2.4311,-1.6038,1.6249,0.85602,-1.6051,-0.97798,0.11453,-1.4173,0.058259,0.18494,1.932,-0.29198,-0.97973,0.26042,-0.46718 -2.9592,-2.3998,-0.10697,-1.5471,-1.0109,0.43695,-2.5819,-0.87864,-1.2759,0.16557,1.2275,0.36139,-0.78111,-0.33283,-0.68145 -1.6784,-2.7092,1.8746,-0.84147,-1.2046,0.96534,-1.9518,-0.16871,-0.21672,2.5775,1.105,-0.85729,-0.60697,0.4897,-0.42034 0.17273,-4.1895,1.2194,0.30305,0.10533,1.6872,-1.8379,-1.2338,-0.82097,2.9107,-1.0932,-0.52152,-0.6021,-0.061065,0.036801 -2.5367,-0.84743,0.57732,0.284,-1.1645,-0.63005,0.39684,-2.0088,0.59155,1.5989,1.5411,0.63195,-0.64804,-0.30906,-1.07 1.1715,0.28294,-1.0526,1.3029,-1.7137,1.6887,-2.2122,-0.14887,-0.32369,-0.60275,0.7861,-0.43946,-0.96572,0.93786,0.30822 -2.0873,-0.2018,-2.3276,-0.014088,-0.59062,-2.003,-0.8318,-1.3939,-1.1585,1.1425,-0.59822,1.4892,0.74018,0.93876,0.41695 -1.4534,-1.3995,-0.10239,2.2546,1.839,-0.22195,1.8736,0.29602,-0.2084,-2.0297,1.1622,-0.88952,-1.2926,0.091871,0.10018 2.5716,1.5566,-0.90836,-0.6571,0.59324,-2.18,0.156,-0.6898,1.0951,1.4731,-0.38518,-1.7672,0.64459,0.5685,1.0514 -1.1487,-0.80348,0.61677,1.5779,-0.87502,2.317,-0.35023,-0.1785,0.97535,1.321,1.6723,-0.70307,-0.43311,0.24034,0.46017 1.9936,2.6913,1.2109,-0.00075277,-1.7611,-1.8181,-0.42219,-0.20937,0.28954,-0.40475,-1.8813,-0.24186,0.53173,0.17685,0.24342 -2.3174,-2.3985,-1.189,-0.36583,0.016291,-1.2402,-2.3313,-0.54275,0.36477,0.39031,0.695,1.4717,-1.121,-0.012616,-0.39346 -2.8458,-1.8174,-2.1455,-0.73275,0.26051,0.33501,-2.4782,-0.66696,-0.54579,-1.0106,0.10407,2.019,-1.5656,-0.41222,-0.11832 -1.8958,-0.879,-2.6407,0.57721,0.30572,-0.3784,-1.4543,0.3299,-0.35644,-1.034,-0.067495,2.0811,-1.4342,-1.1497,0.026325 2.4619,-3.071,-1.0061,1.433,1.8368,-1.1922,0.37762,0.68243,0.23337,-1.2364,3.0432,0.14596,1.5339,0.14747,0.98978 -1.5855,-2.0407,-0.97115,-1.1329,1.1126,0.11161,-2.2793,1.9342,-0.049038,1.0294,-1.4731,-0.32067,0.49911,1.3947,2.1786 -2.1484,0.55603,0.44672,-0.79289,0.091687,-1.3646,1.7592,-1.4702,-2.6027,1.8851,1.0497,-0.21748,-0.56839,1.7791,-0.51 -0.71454,2.2442,1.137,0.71795,-1.3034,-1.2165,0.74254,0.089451,-2.3394,-0.46715,1.2749,0.29037,-0.85375,1.3506,0.3278 2.9474,1.6518,-0.18031,0.99371,0.33001,-1.7075,-0.59591,-1.3141,1.0619,0.63251,-0.71068,-1.3596,0.16069,0.94887,0.51821 0.69804,-1.9736,1.7575,-0.28411,-2.5688,-1.2105,1.5353,-1.1297,-1.1654,-0.10808,0.27717,-1.4012,-2.6745,-0.18214,0.59892 -1.9768,1.4032,-1.0645,1.981,-0.61386,0.17961,1.6935,-0.43876,-0.80555,0.95851,-0.3467,0.25602,0.86022,0.51724,1.4647 1.2277,-1.5748,-0.8619,1.938,3.4846,-0.2641,0.28419,0.50578,-0.7481,-2.5066,2.362,-0.5892,0.35615,0.82595,0.46514 -2.0105,1.3159,1.5778,0.72639,-0.86702,-1.2367,1.2586,-0.82646,-2.1285,0.40651,1.2289,0.32291,-0.97406,1.0432,-0.17815 -1.45,0.65459,0.97764,-0.85352,-2.8904,0.38609,0.64063,-1.2299,0.22681,-0.75962,1.138,0.10311,0.31039,-0.92913,0.46679 -2.8886,1.0292,0.3218,-0.55001,-0.58646,0.32196,2.313,0.0015708,-2.3389,0.12683,1.0564,-0.057264,-0.14728,0.52812,-1.1559 2.9252,1.2623,1.5125,0.15802,-0.46163,-2.7425,-0.20369,-0.93713,-0.35546,-0.40833,-0.4686,-0.023162,1.5766,0.51041,-0.59459 -3.3385,0.79451,-1.1862,-0.027711,-0.97132,-1.4428,1.8526,0.85932,-0.91081,0.026551,0.40482,-0.087548,0.6527,0.42851,-0.37434 0.66229,1.2746,-1.4302,2.3464,2.7566,-0.8141,-0.31428,2.2564,-0.2645,0.091306,-0.48717,-1.3764,-0.20569,0.37315,-1.1813 -3.0509,-0.22509,-2.3022,-0.18106,-1.7658,-0.71047,0.83733,0.078433,0.029552,-0.90161,1.0085,-0.22297,0.049693,-0.11814,-1.037 -2.4106,-0.40973,-1.8114,-0.86886,0.28217,-0.61576,-0.85724,-1.5547,-2.7443,1.0669,0.51645,0.9802,-0.80135,0.73608,-0.98694 4.5342,-1.2389,-0.94395,0.11854,-1.466,0.93458,-1.0533,0.81235,-0.30738,2.402,-1.2245,-0.58783,0.33232,0.87825,-0.14741 -2.1987,-1.129,2.1042,0.3283,-0.78099,-1.1195,0.75358,-0.24471,-0.42013,0.61348,2.3324,0.80802,-0.23848,-0.56036,-0.99077 2.8263,-2.5845,-2.0262,0.35968,-0.74691,-0.096725,1.2862,-0.94349,-0.37732,-0.29087,0.092187,1.2486,0.19073,0.22576,2.6803 4.9462,-1.1708,-0.17562,-2.888,-0.15742,-2.9219,1.0755,1.8082,0.33949,-2.1547,0.2779,0.85899,0.50766,1.0352,-1.4151 -1.4652,-1.8721,-0.86681,-0.53791,0.048761,-2.4748,-1.1273,-1.7734,-2.1389,1.5647,-0.39842,1.1487,0.23281,0.23473,0.37942 0.30849,3.1851,-0.083725,0.4331,-1.7023,-1.3675,-0.0088486,0.26218,-0.44559,-0.37528,-1.5322,-0.1375,-1.1192,0.40988,0.43952 2.0827,0.18776,-3.1045,-1.1431,-1.4835,0.24288,1.2814,0.78662,1.2781,0.049199,0.030404,0.36128,1.2601,0.22244,0.047373 0.091201,-1.4564,2.0503,1.7408,-0.34644,-0.60511,0.17713,-2.3443,-2.6323,-0.98761,1.5117,-0.1727,-0.11021,-0.50779,0.53689 3.0449,0.39488,1.5828,1.8111,0.64104,-2.401,-0.33933,-1.063,-1.1475,-0.77286,0.53195,0.041431,1.4945,0.57176,-0.27449 -3.0264,1.1432,0.66833,-0.58048,-0.019242,-0.73916,1.4231,0.17404,-1.6717,1.5868,1.3328,-0.35273,0.72614,0.76972,-0.15168 -0.33799,-2.4977,-2.735,1.7216,-0.67494,-1.1246,-1.4778,0.2523,-0.64134,-0.44321,-0.44334,0.89616,-1.7534,-0.88977,0.1572 3.187,-1.8099,0.50429,1.0524,-1.4766,-0.67096,-1.6482,1.839,1.0061,-1.7916,-0.66125,0.6557,-0.78311,-0.034328,-2.3045 -0.044102,-2.8425,-1.8604,1.8093,-0.64819,-0.3224,-1.7582,1.2025,-0.12172,0.2521,-0.38788,0.035012,-1.3268,-0.86015,0.78752 3.079,-3.7041,-0.20961,-0.12018,0.68977,0.55937,-0.39899,2.1465,-0.91968,2.1755,2.8596,1.9044,0.60937,0.47427,0.74006 -0.61549,-1.3999,-2.8507,1.7851,-0.47989,-2.0177,-0.36637,-0.39447,-1.4068,-0.47906,-0.87769,1.1172,-0.87893,-0.55939,0.010052 -0.85797,-2.3462,-2.4721,0.68566,-0.21798,-1.0176,-1.8966,1.8691,0.097747,-0.27398,-0.69718,0.83931,-1.4759,-1.7137,0.26334 2.755,-1.1006,-2.0979,1.4325,0.1756,0.68629,2.2351,-1.0194,-0.4108,0.0491,-0.79289,-0.34261,0.067321,0.074455,0.906 1.5002,-0.9657,1.3219,2.6808,1.4219,2.4164,0.58397,1.5603,-0.010803,1.3268,-0.2264,0.66837,1.172,0.46942,0.10476 4.0309,-2.5864,-2.161,0.12251,-0.59034,0.10957,0.90059,-0.029358,1.5564,-1.5297,1.1651,-0.32547,-0.76831,-0.061091,-0.20592 0.0039948,1.2122,-0.18612,1.4013,1.1181,-2.2736,-0.123,2.461,0.66613,-0.84758,-1.2268,-0.41228,0.42365,0.93806,-0.46491 2.3401,-0.95637,2.2181,2.7749,-0.86981,0.0055944,-1.5413,-0.45496,-0.42876,-1.1475,0.73544,0.8599,0.48359,-0.46496,-0.15428 -1.5664,0.20668,-0.16679,0.40751,-1.3926,-0.43098,2.3117,0.17942,-0.57213,-2.4022,-0.12931,-1.456,-0.38205,-0.35504,-0.1342 0.66234,0.85915,0.15003,1.8972,-1.4751,-0.87619,1.5404,-0.24831,0.044481,0.91251,-1.3044,0.35249,0.37551,0.94446,0.74823 -0.48768,-2.1902,-2.428,0.69291,-1.5039,-2.3325,-1.043,-0.016707,-0.26773,-0.042487,-0.29741,1.3651,-0.74756,-0.49147,-0.60962 -2.0182,-2.2728,-1.6753,-1.2652,0.72133,-1.3615,-1.6433,1.1273,0.37109,-0.46577,-0.70921,0.01525,-1.2666,-0.022873,0.62882 -1.1009,-0.42578,-2.3334,0.98113,-0.36015,-2.778,-0.79271,0.70997,-0.89288,0.013416,-0.053873,0.95698,0.013428,-0.25118,0.93398 1.8916,-1.0805,-0.97116,1.0017,0.55897,-0.66567,-1.0476,0.60942,1.5881,0.30578,2.1359,0.64143,1.258,0.10352,-1.363 -1.8381,0.28742,-1.3188,0.28741,-0.60559,-0.46418,0.99112,2.0739,0.15424,1.9928,0.30446,-0.38157,0.58475,1.2197,0.076204 -1.0856,0.10747,0.47222,1.55,-1.0652,-1.5086,0.99062,-0.17121,0.28376,1.6037,0.92733,0.12195,0.82164,1.0299,0.33887 2.1192,1.2616,-1.0721,-0.92446,-0.10609,-2.0529,-0.77868,-0.8922,-0.35778,0.38355,2.6416,-0.38619,0.17422,0.058071,1.1639 -0.31626,-1.1672,-2.6668,1.5356,1.1647,-1.1712,0.50956,-0.12565,-1.5603,1.2764,-1.1498,0.13214,2.1653,0.87074,0.73039 2.9706,-0.26396,-1.6809,-1.3923,-1.9312,-0.89288,-0.52398,-0.6515,1.851,-0.7204,1.0502,-0.80075,0.80925,0.52239,1.0092 1.1954,0.93224,0.7116,1.0621,-1.4175,-2.3203,-0.69785,0.27346,0.047899,0.17805,0.053232,0.55085,1.3626,1.6319,-0.1534 -2.0518,0.7587,-0.4124,0.81531,-1.627,-1.4827,1.4596,0.87573,0.12384,0.39761,1.0981,0.47924,0.54742,1.2601,-0.070237 1.0259,3.1834,0.21038,0.41109,1.1648,-1.6136,-1.3548,-0.13099,-2.4863,1.9161,0.5445,-1.1262,-1.1468,-0.059328,-0.073431 -1.5482,-1.212,-1.8257,1.7337,1.829,-1.3124,1.6718,0.46693,-1.1536,1.7689,0.030426,-0.9185,1.0699,0.8131,-0.42902 0.33268,-0.13632,-1.6441,0.76017,2.5861,-0.4966,-0.37625,0.044689,-0.40765,-2.9742,0.14537,-1.0233,-1.0162,1.3542,0.42961 5.4577,-3.3041,-0.90855,-1.7159,-0.98794,-1.0036,1.4017,1.0112,0.92116,-0.47529,0.2265,0.68283,0.074965,0.67171,-0.31926 6.0336,-2.7333,0.89234,-0.56653,-0.79316,-0.16583,-1.0742,0.82676,-0.27335,-0.11607,-1.0027,-0.96691,-0.70277,0.27382,-1.0049 -1.0076,0.83417,0.34949,1.2278,-1.8232,-1.4847,1.2968,-0.34026,0.32188,1.5419,-0.14519,0.23943,1.1928,0.72401,0.7637 -1.7787,-0.83118,-1.6572,1.6908,-0.004061,-1.3687,1.7466,-1.0503,-0.072961,0.89646,0.5121,-0.75067,0.98025,0.88834,-0.6331 2.5295,-0.053944,-0.50885,-0.99433,-1.6127,-1.0868,-1.2957,-1.089,1.0284,0.27129,1.451,0.18652,1.7713,0.29528,0.13306 -1.2744,-0.57418,-1.519,0.61607,0.58065,-0.77015,0.54564,0.68819,-0.21186,2.9065,-0.16594,-0.36486,1.2033,1.204,-0.068929 -1.0495,2.1194,-0.20404,2.0654,0.32585,-0.9323,-0.6521,1.6294,0.85724,0.52575,-1.0329,-0.201,0.07838,0.67751,0.43518 -1.1502,-0.67641,0.59969,0.99052,-2.5673,-1.4926,0.15432,0.061765,0.43476,-0.048519,1.3835,0.50623,0.074296,0.012377,0.08617 3.2385,-0.77292,-2.3334,0.37839,-0.32253,-0.51055,0.39972,-1.084,0.22899,0.68915,1.0306,-1.4611,-0.52056,-0.53914,2.389 -0.73876,-2.1336,-3.012,1.2759,1.0411,0.38316,-1.3536,0.66795,-0.20028,-1.0634,-1.3205,0.13841,-1.3392,-0.56355,1.9894 -0.43141,-0.15954,-0.022381,0.53065,-1.0437,-1.9281,1.9042,-0.36701,-0.090605,2.5386,-1.0209,-0.9449,1.1731,0.65864,0.36421 -0.031356,1.5481,0.60071,1.2235,-1.6266,-1.3022,0.48402,0.015073,-0.1561,1.2351,-1.0393,0.90171,1.4528,0.87404,0.50101 3.6487,-2.4523,-2.0385,-2.0238,-1.2998,-0.82332,2.0941,1.8615,1.6176,-0.061871,1.3026,2.5084,-0.056534,1.285,0.43539 1.3772,0.086628,-2.1689,2.1874,2.4455,-0.88724,0.33092,1.2875,-0.8251,-1.1817,0.47081,-1.6138,1.0786,-1.4608,0.096965 1.5553,-1.0293,1.0838,1.8325,-2.1377,1.6954,0.06756,-1.0685,-0.19703,0.17317,0.015725,-0.91655,-1.2492,-0.66231,1.4107 1.4038,-2.273,-2.0088,1.1183,2.9535,-0.42033,1.7171,1.1868,-0.39367,-2.5121,1.6016,-0.43891,1.7393,0.21436,1.8904 2.5805,-1.6895,-0.87082,1.8319,3.4535,-1.5088,0.079283,1.0805,-0.16433,-3.323,1.0079,-1.4927,0.65434,0.50738,0.25245 -0.70543,1.0144,-1.834,0.32202,-2.3662,0.78409,1.4986,0.40352,-0.089798,1.6071,-0.55145,-0.67075,0.15451,0.49391,0.86418 -0.80052,-0.21551,0.26941,1.0988,1.604,0.13112,1.4217,1.985,-0.64588,2.9337,-0.39805,0.52028,1.2417,-1.2736,-0.74097 1.0799,-0.13098,-0.98938,2.8043,2.0846,-0.62786,-0.30951,0.45883,0.24789,-3.5553,0.1308,-1.0221,-0.025311,0.9395,-0.11794 0.93546,2.2015,-0.5392,0.21553,-1.7262,-1.0104,-1.6309,-0.18829,0.21183,-0.61541,0.45593,0.051937,0.46806,1.6446,-0.19923 0.83821,-0.22662,-0.98584,2.641,1.7354,-0.84515,0.49454,0.9953,0.84893,-1.0355,-0.19749,-0.15864,1.7823,0.65039,-0.68694 -1.6662,1.1944,1.6079,1.1185,-2.0958,-1.0864,0.83284,-0.61904,-0.18052,-0.17619,1.2135,1.1964,-1.0841,0.40431,0.49877 -0.47853,0.045554,-0.51341,2.6802,1.9146,-0.7424,0.89571,3.6968,-0.87362,1.1202,-0.43528,-0.37186,0.19929,-0.35449,-0.30228 0.8265,0.3226,0.22391,1.9937,2.8181,-2.5962,0.30453,2.0327,-0.24842,-0.6538,0.24118,-0.040979,1.0867,1.4884,-1.3563 -0.39474,1.9085,-1.7437,1.4312,-0.78917,0.94081,-2.0066,1.4934,0.60142,-0.77032,0.846,-0.30916,-0.51979,0.74241,-1.4233 1.9067,-1.4264,-0.044405,2.4548,3.0196,-2.1592,-0.25801,0.80843,0.1449,-1.5207,1.0737,-0.026308,1.2273,0.71795,-1.0367 0.31833,2.0071,-1.7964,-0.046188,1.8624,-1.0261,-1.574,2.5718,0.77315,0.71503,1.1212,-1.7827,-0.22791,-0.16474,-0.82446 -1.6336,-1.5744,-1.2975,-1.036,0.17688,-3.0365,-0.74889,-0.49463,-0.92836,0.97769,-1.1735,1.2354,1.8343,0.69814,0.55914 -0.074566,0.14785,0.16806,3.2696,2.9723,-0.85144,1.5497,2.1238,-0.71434,0.79123,-0.34623,0.23792,1.05,1.2797,-0.069791 4.3692,-1.6773,-0.58635,1.0645,1.2344,-0.24899,1.4105,-2.3761,-1.6833,-0.39861,1.9851,-0.087831,1.7326,-0.092422,1.4395 2.7517,1.4173,-0.87724,-2.1597,-1.6079,-0.97331,-1.1847,0.86699,0.21736,-2.481,0.48622,-0.79892,0.21078,-0.9107,-0.81031 -1.4033,-1.2645,0.8291,1.9935,-1.4284,-2.1394,1.3507,-0.039042,0.17645,0.46934,1.4538,-0.061597,0.26361,0.37884,-0.47406 1.1634,1.0203,-1.1824,1.5613,2.2295,-3.3354,-0.12274,1.5504,-0.48371,-1.6117,0.28903,-1.6358,-0.28599,1.0057,-0.37207 -0.53478,-0.21357,-0.12516,0.50751,1.2612,-1.2773,0.035746,3.6938,-0.25581,1.9514,-0.27042,0.27703,1.3704,-0.30828,-0.61459 -1.45,0.80196,-1.1602,2.6301,-0.59934,-1.2414,1.0288,0.50286,0.74186,0.54729,-0.25732,0.21105,0.34273,0.50618,0.55838 0.36826,0.048327,-1.1961,2.4978,2.2405,-1.8556,0.60749,2.9768,-0.34595,0.71688,-0.67057,-0.56264,0.61911,0.35065,-0.50447 1.0815,-0.14077,-1.1806,2.4771,4.061,-2.0595,0.60634,1.728,-0.90199,-0.71187,0.472,-1.0502,0.6005,1.2817,-0.22305 -3.3662,-0.39535,-2.0808,-0.6388,-0.47477,-0.61998,0.096954,-1.3526,-0.95237,-0.59134,0.71061,-0.12732,0.9811,0.61572,-0.50396 -2.7166,-2.0381,-0.84998,-0.6811,-1.6925,-1.1155,-0.8103,0.44478,0.34332,-0.68507,1.1042,-0.60991,-0.29205,-0.025064,-0.80648 -2.8905,-0.91526,-1.1586,-0.59798,-0.6143,-1.8205,0.67143,-0.11218,-0.51792,0.12127,0.98025,-0.22973,1.4112,0.20266,-0.98905 -1.5955,-0.41307,-1.2576,2.4635,-0.99994,1.2675,0.81183,-0.4043,0.7857,-0.19662,1.3285,0.31426,-0.54219,-0.9239,0.081261 -2.6291,-0.46542,-1.8176,-1.0753,-1.2364,-0.14175,-0.13143,-1.5506,-1.1422,-0.33,0.71512,0.23925,1.3448,0.24468,-0.099373 -1.904,-0.05862,-0.61995,-0.64227,-2.0793,-0.54144,0.8287,-1.2633,-0.52404,0.86403,1.16,0.3948,1.4185,0.5051,-0.14759 -3.2367,-0.54403,-1.7656,-0.52936,-0.87612,-1.1008,0.083893,-0.20044,0.25375,-0.38599,1.1738,-0.35959,0.11086,-0.040833,-1.118 -0.6495,2.2121,-1.4974,2.2991,1.0314,-0.044145,0.82252,1.9601,-0.65054,-0.10723,-2.0199,-0.6043,-1.4971,0.034947,-0.17385 2.1178,0.66257,-1.5914,-2.0651,-0.83252,-1.9976,-0.051881,-0.22186,0.79507,0.59914,1.9609,-0.074293,1.2016,0.021375,1.7009 2.2244,-1.971,-1.2532,-2.5017,-0.55331,-2.5367,2.3214,2.6456,-0.19394,-0.8261,0.20525,2.7706,0.7571,0.67471,-0.56491 -1.5689,-1.2394,0.90024,0.17899,-2.1111,-0.85829,0.52527,-0.23979,0.17908,0.32394,1.2905,0.8685,1.3728,-0.69836,-0.43792 -2.0041,-0.37319,-0.88571,-1.1426,-1.7595,-0.85361,1.4182,-1.486,-1.2465,-0.10266,-0.20762,-0.79242,1.488,-0.53218,0.1922 2.3652,2.1003,0.59356,-1.3846,-0.31465,-3.2923,0.086152,0.33149,-0.02658,-1.6635,-0.70608,-0.92735,-0.50278,0.89405,-0.2575 -0.26638,-0.79577,-1.5645,-0.91901,-0.7571,-1.3511,0.45861,-1.5933,-0.45133,2.4537,-2.0579,0.51467,0.88348,1.0865,-0.14432 -2.2566,-0.65113,-2.398,-1.0655,-0.7983,-0.14893,-0.64487,-1.5234,-1.3903,-0.15758,0.34,1.6516,0.2683,0.80191,-0.82338 3.3703,-1.8321,-0.37262,0.42242,-0.41061,-0.77328,0.6403,-1.4332,-0.16654,-3.5001,-0.99184,-1.2481,0.16524,-0.83936,-0.74459 -1.1906,-1.0949,0.91288,0.84948,-2.1742,-0.67918,0.47167,-0.78891,0.52309,1.0344,1.43,0.61585,0.32381,-0.52546,-0.27311 1.2994,2.4677,-1.8283,-1.2111,-1.8099,-0.95087,-1.4246,-0.74692,-0.28141,-0.86291,1.1186,-1.0456,0.35522,0.091063,-0.040681 4.9381,-0.86947,-0.58131,-0.37538,-0.060799,-1.6915,0.357,-1.6553,0.3516,0.61127,1.0347,-1.0563,-0.8156,-0.84292,1.1177 3.5016,-1.9034,-1.3347,-1.8956,0.32,-2.317,2.5411,1.1866,0.74146,-0.56603,0.57741,1.7457,0.55458,0.6804,0.67787 1.2798,1.2491,1.9558,2.4402,0.61431,-1.3019,-1.2916,-0.54571,-2.0068,0.4057,1.6567,-0.33459,-1.4803,0.29253,0.007189 6.0134,-2.9524,-0.59075,-0.82346,0.19592,1.0247,1.426,0.55224,-1.0246,2.5992,0.98448,0.26301,-0.55834,0.76316,0.82611 3.2527,1.2023,2.1591,-0.93284,0.11354,-3.4614,1.2362,0.22052,-0.85625,-0.93361,-1.3561,-0.96397,-0.32228,0.97576,-0.13796 2.8357,1.9237,-1.7843,-2.4967,0.086294,-1.5867,-0.35705,0.9825,1.2226,-0.31622,0.7434,-1.125,0.57804,-0.40475,-0.13415 4.1912,-0.43071,2.1026,0.68185,-0.59575,-2.6328,-0.10461,-1.1621,-0.57308,-1.3223,-0.67521,-0.69496,-0.58537,0.40792,0.060545 3.4771,-1.12,-0.62851,0.16482,-0.73916,1.7358,-1.5463,0.10334,0.82454,1.397,0.093279,0.30833,0.86051,0.099447,-1.2202 -1.6948,0.28734,-2.2956,0.53403,-1.9343,-0.34558,0.87278,-1.4874,-0.14323,1.0564,0.34862,0.24231,0.081391,0.25071,-0.1313 3.7314,0.16502,1.3185,0.83574,-0.83984,-1.0895,-0.9552,-1.8595,0.09627,-0.10902,-0.29846,-0.82751,-1.0302,-0.30785,-0.10865 1.7512,2.6812,2.1083,-0.15932,-0.86257,-2.6516,-0.25746,-0.36997,-1.0882,0.13622,-0.39611,-0.60934,0.20824,1.6835,0.68371 2.3089,1.1031,-2.639,-1.6335,-1.1996,-1.5003,0.76859,-0.17373,1.7745,-1.5141,0.69213,-0.2731,1.125,0.41089,-0.38522 -0.081235,2.9427,2.2588,-1.2739,-0.90255,-1.3639,0.38879,-0.048578,-3.0371,-0.29369,0.22894,-1.2204,-0.42429,0.57262,0.43714 2.1154,0.56175,0.98279,2.0137,1.1676,-2.1729,-0.25438,-2.1887,-0.93459,-0.18965,-0.059124,-0.84647,0.48259,1.1572,0.93481 -0.45366,0.65466,3.4786,-0.024836,0.068768,-2.6077,0.60409,-0.32137,-2.4328,-0.15653,1.1313,0.29602,-0.43178,1.451,-0.03028 2.4604,-0.03043,3.5624,1.029,-0.42405,-2.159,-0.19092,-1.1059,-1.4901,-0.47271,0.444,0.0196,-0.78431,0.67865,0.23339 1.6471,1.6143,0.49889,1.9492,-0.081213,-2.1776,-0.93094,-1.1124,0.12503,-0.60585,-0.3074,-0.17634,0.17863,1.1552,0.64298 1.1894,0.77698,1.3779,1.6873,-0.49176,-2.5189,-1.5644,-1.4291,-1.1264,-1.2673,0.13024,0.76821,-0.65108,0.59783,0.37621 2.1509,1.5428,2.0198,0.59674,-0.8858,-2.6339,-1.2725,-0.98511,-0.59356,-0.86195,0.22448,-0.45971,-0.68661,1.1075,0.4933 3.6543,0.17424,-0.54707,-1.9186,-1.8261,-0.72011,-1.8995,-0.24574,1.1763,0.55779,0.56011,-1.2548,-0.69899,0.099573,0.43377 2.7511,1.4071,0.0067313,-1.8564,1.8126,-0.38498,-0.12689,0.030533,1.0744,1.9058,1.0422,0.59242,1.5317,-0.51199,-0.94877 1.3636,1.2074,-1.0116,1.4335,0.98784,-0.3352,-0.84482,-1.569,-1.0137,-0.37937,1.86,-1.249,0.68766,1.2296,0.41549 -0.76837,1.0926,-0.47375,2.0309,-0.29466,-1.902,1.6643,2.3796,0.18094,0.19971,-0.86668,-0.51198,-0.11909,0.35918,0.36393 2.9275,-0.50427,3.4826,-0.59517,-2.3283,-1.9395,0.41476,0.052953,-0.60751,-1.2178,-0.42146,0.06789,-0.39243,0.78892,-0.1308 5.8467,-1.9377,0.92296,-1.8567,-1.5708,-0.86703,-1.0482,0.99378,-0.40176,-0.15725,0.062304,-0.48206,-1.3496,0.89139,-0.20887 -1.6653,1.9629,-0.43153,1.7178,-1.3823,-0.716,0.73447,0.075096,-0.77222,-0.74254,0.17884,1.1934,-0.59946,1.1485,-0.35367 -1.5516,1.7924,0.15023,0.084841,-2.385,-0.67511,1.9294,-1.0405,-0.20753,0.7854,-0.40884,0.45627,0.76968,-0.23921,0.88328 4.9668,-1.7987,1.2334,-1.2632,-0.30829,-2.4053,-0.59816,-0.67575,-0.78746,-0.32732,1.1256,-0.54207,-0.35719,0.90633,0.80732 0.4368,0.67046,-0.81693,2.6733,2.7355,-2.0437,-0.32636,0.67242,-0.25809,-1.5667,0.70804,-1.1531,-0.39795,0.81536,-0.76378 -0.3889,1.2473,3.4591,0.13848,-1.1442,-2.124,0.34532,-0.63614,-1.6458,0.05199,1.1651,0.13949,-0.47064,0.7451,-0.10797 -1.7737,-2.1221,0.66616,-0.72065,0.30455,-1.0361,-1.1107,-0.04951,0.093763,1.5017,1.0247,0.73142,-0.12503,-1.3248,-0.22151 3.9071,-0.19659,-1.0905,-3.0925,-1.7011,0.50453,-0.92824,0.080646,-0.75421,-2.1767,0.97905,-1.2814,0.3614,-0.87743,0.24494 -1.1702,0.26095,0.97311,2.3912,-1.6237,-0.6232,1.2199,-1.9115,-0.65914,-0.084903,0.89647,0.27894,-0.57677,0.070756,1.0283 -1.0437,-0.39166,3.6983,0.47487,-1.4248,-1.7117,0.43658,-0.73207,-0.84206,0.12196,1.3193,0.39307,-0.61647,-0.26989,-0.12916 1.0571,1.0191,1.7624,0.74612,0.12123,-1.7155,-2.1993,-0.20548,0.49946,-0.22141,1.6404,1.0117,0.43366,0.73234,-1.1634 0.93619,0.27606,-0.48402,1.5281,-1.2628,-0.49084,2.8217,0.51636,-0.44362,1.6989,-2.2814,-0.63657,0.041896,0.66047,0.49414 2.5888,1.7381,-1.7594,-0.53081,0.0074959,-0.80167,-0.19359,0.25694,0.90468,1.8853,-0.70031,-1.975,0.093498,-0.51813,0.27745 2.8863,-0.3075,1.6855,-1.6927,-2.0134,1.5385,0.28048,2.37,-2.9826,-1.8959,-0.19289,-1.7465,-0.37669,-0.44327,0.12311 3.4774,-0.018102,-2.1425,-0.31149,0.41413,-0.89835,2.19,-0.52082,1.3221,0.70592,-0.089261,-1.2585,-0.74105,0.00049529,1.8815 2.4973,-2.5576,-0.92861,1.6112,0.82271,1.0658,-0.62623,-0.18685,-0.93387,0.0068244,3.1671,-0.12335,0.56592,0.87624,1.7569 3.338,-0.14285,-2,0.59263,0.72616,0.2952,1.9125,-1.1862,0.19411,0.47191,-0.27557,-1.3248,0.51333,-0.75141,1.5975 2.8656,-0.0245,-2.6242,-2.6364,-0.88024,-1.5118,2.3068,1.473,1.1645,-0.04898,0.89041,1.0465,0.39016,0.93171,0.65169 -1.419,1.0251,-0.93983,0.38903,-2.2641,-0.80817,1.4071,-0.70081,-1.0472,0.72338,-0.16373,0.11558,-0.36438,0.50561,0.44799 2.2001,-1.271,1.6683,1.4524,-1.1723,3.4018,-0.41594,0.83866,-0.63952,0.72615,-0.2012,0.63616,0.26481,0.563,-0.14 3.0046,-0.55908,-1.7817,0.54039,0.4455,0.18154,1.9267,-1.1423,0.25633,-0.29065,0.41737,-1.0398,0.74459,0.36615,2.576 1.6237,2.4478,-1.0495,-0.53441,-2.2068,-1.2897,-0.40679,0.0055225,0.7928,-1.3765,-1.3565,-0.71703,0.30753,0.72965,-0.30423 2.1334,1.1097,-1.9663,0.90895,0.94486,-0.32795,0.38991,-0.3072,0.099638,2.033,0.20738,-1.422,0.26264,-0.1449,1.3358 3.6753,0.56412,-2.0587,0.16475,1.0811,-0.44838,0.87721,0.12258,0.64537,1.3953,-0.80589,-1.4408,0.49887,-0.97845,-0.80226 2.7847,1.5579,-1.83,0.026129,0.3499,-0.44436,0.01778,0.70812,1.1702,1.242,-1.4315,-1.5781,-0.29972,-0.43076,-1.3112 -1.837,1.9293,1.4158,0.57573,-2.017,-0.6975,0.30947,-0.27097,-0.51395,-0.10683,0.9313,1.397,0.10194,0.44945,0.56035 0.99936,0.53779,1.4091,1.0251,-2.3146,-0.22552,-1.5537,-0.30309,-0.28931,-1.4452,0.96502,0.22559,0.29131,1.0133,0.96699 -3.0754,-1.6455,1.1012,-0.12622,-0.97829,-0.81401,-0.20837,0.26033,1.1917,-0.17087,1.7817,-0.65776,-0.81551,-0.48867,-0.71062 2.1132,1.7328,-2.0535,-0.81838,-0.012267,-0.74643,-0.068207,0.41816,1.5148,1.4197,-0.88233,-1.661,0.045684,-0.61088,0.061098 -2.628,-1.689,1.4131,-0.79876,-0.97293,0.94641,-1.084,0.46969,1.3488,0.82749,1.5141,-0.90526,-0.13478,-0.10881,-0.19067 1.8638,-1.2379,-3.4719,-1.376,-2.5731,1.4568,0.7086,2.8684,0.33936,0.90543,0.14894,1.2404,0.76475,0.74971,0.25643 -3.0635,-2.7941,-0.040694,-1.4248,-0.46069,-0.80355,-0.91734,0.62623,-0.037089,-0.89916,0.54152,-0.88018,-0.20901,-1.0865,-1.4299 -1.6279,-1.1503,1.7928,0.43036,-2.1027,0.3978,-0.29952,0.064955,0.6219,0.1843,2.2813,-0.22596,-0.24784,-0.11667,0.23877 -0.83489,-0.92536,1.7285,0.4727,-1.6936,1.0602,-1.6929,2.8029,-0.87496,-1.7492,1.25,0.52967,0.55125,-1.1586,-0.40034 0.35438,-3.0454,2.812,1.8967,-0.52439,1.3425,0.20863,1.0889,-0.056106,0.82102,1.5726,0.20297,0.37522,-0.893,-0.57773 -2.3381,-2.8465,0.56939,-0.14286,-0.51902,-0.33531,-0.90533,1.8337,0.55913,0.14047,0.60758,-1.514,-0.65972,-1.2677,-1.092 -2.508,-1.7439,0.040183,0.092868,-0.93584,-1.7585,-0.23525,-1.3625,0.34978,0.92013,1.5105,0.4606,-0.042131,-0.18503,-0.68684 -1.4569,-1.2948,2.1753,0.46163,-1.5201,-1.5506,0.71126,-0.4483,-0.57452,0.2422,1.984,0.91031,0.57979,-0.60805,-0.95533 -2.6624,-1.0689,0.19189,0.34655,-0.83522,-1.4706,1.3149,0.5516,1.3139,-0.80647,1.2895,-0.52309,-0.94811,-0.23694,-1.1123 -2.7776,2.062,-0.29105,-0.55722,-1.3273,0.10939,1.6451,-0.43764,-1.8615,1.1381,0.55885,0.25786,0.4171,0.54899,0.62878 1.2676,2.1749,-1.9285,-0.32404,-1.1222,-0.064497,-1.0788,0.66367,1.3102,0.67858,-1.261,-1.2136,0.2081,-0.38821,-0.66935 -3.1943,0.18297,-1.797,0.25571,-0.26057,0.19091,1.1443,-0.76951,0.12391,0.7338,1.2423,0.57719,-0.56246,0.37395,-1.7053 2.1826,-1.0442,3.1784,-0.55488,-2.3588,-1.2915,0.34118,1.1877,-0.7783,-0.82031,-1.566,-0.49851,-1.5406,-0.88298,0.23846 -0.59544,-4.1719,0.69095,2.003,1.0555,2.1706,-0.56542,0.74646,-0.4805,0.42149,0.93181,-1.7891,0.54301,-1.1028,-0.41321 -1.5208,-3.0256,0.72811,-0.53243,-0.85306,0.49585,-2.3334,-0.68799,0.40235,2.5618,0.059087,-0.052892,-0.1682,-0.58341,-0.58008 -2.009,0.42364,-1.679,0.3999,-0.078008,0.8551,0.44735,1.1365,0.076835,1.5302,0.43359,-0.62934,-0.040034,1.1063,-0.009473 -1.108,-0.99471,1.5956,-0.90934,-2.8998,-1.0326,0.83894,-1.6862,0.19711,0.9178,-0.13091,-0.57963,-0.97823,-0.9712,0.015232 1.4535,-0.79847,-0.23883,1.1688,-3.0503,0.4338,0.4289,0.30448,1.6307,-0.79977,-1.0142,0.035565,-0.60288,-0.74747,-0.29746 -3.1522,-2.3026,-2.0736,-0.11442,-1.1825,-1.6427,-1.5518,-0.88106,-0.31398,-0.28775,0.22041,0.30128,-1.0782,-0.19735,-0.52572 0.69611,1.8254,-1.4553,2.0551,-0.64792,-0.10791,0.1204,-0.52071,-0.2757,0.53759,-0.69728,-0.78203,0.4485,1.1378,0.69365 -1.6409,-3.2576,-0.53606,-0.76648,1.0876,0.43166,-3.2791,1.0541,-0.58332,1.5322,-0.72983,1.2886,0.0089452,-0.11545,0.99296 3.9693,-0.13088,-2.4441,-0.51621,2.1492,0.88424,2.4717,1.4065,-1.4988,0.824,-0.85378,-0.57075,-0.36254,-0.48353,-0.74975 2.888,-1.5866,-0.47942,2.4534,0.72627,2.1665,-1.8142,0.67091,-1.707,1.4393,0.91459,0.14504,1.5296,0.80754,-0.30507 -1.7379,-2.2236,-1.7459,-0.09079,-0.23882,-1.3441,-3.0673,0.55019,-1.0168,0.34943,-0.51724,1.7058,-0.70472,-1.1837,1.8415 -0.94649,1.3433,-0.02288,2.9142,1.0291,0.10207,0.57942,1.0409,-2.5099,1.2246,1.2457,0.15716,-1.028,-0.31688,-0.057537 -0.55117,3.3086,0.23038,-0.5494,-1.1863,-0.27312,1.8397,0.97383,-1.4329,-1.7598,-1.685,-0.59829,-0.77887,0.34994,0.6272 -0.32653,-2.1116,-2.1012,1.1428,0.40272,-0.16192,-1.8625,2.1205,-0.096533,0.90199,-0.76636,-0.8549,-1.006,0.49561,2.3241 -2.7215,-1.4986,-3.2857,-0.89969,-0.054121,-1.2537,-1.7659,0.67713,-1.5781,-0.98791,-1.0828,0.75839,-1.8111,-1.089,0.080373 -2.4052,-3.4422,-1.3506,0.047751,1.7888,-0.67622,-2.9219,0.65372,0.019445,0.2915,-0.73259,0.5117,-2.4625,-1.0376,0.60152 0.40691,-4.0953,-0.86137,0.9216,0.36758,0.64331,-2.1602,-0.51119,-1.8848,0.40581,-1.6265,1.4153,0.69423,-1.5875,1.5835 2.0842,0.65172,0.52,1.5595,1.9606,-1.8167,-0.18284,1.4753,0.33754,0.85231,-1.421,-0.42291,2.0178,-0.064957,-1.1537 -2.0624,-2.6931,-1.5649,-0.22039,0.74997,-0.59475,-3.3552,1.4687,-0.48334,0.14056,-0.28679,1.1981,-1.8141,-0.59654,1.8065 -0.97499,-4.1671,1.1731,0.90892,1.2452,1.0352,-0.93764,1.5255,-0.30636,1.9721,0.27878,-2.1561,0.51068,0.2656,-0.48827 -0.33513,-2.0722,0.15506,-1.8718,0.19121,0.80226,-2.875,-0.41841,-1.3505,1.5607,-0.49439,1.5378,-1.6971,-0.21492,1.6715 2.2577,-1.2895,1.285,2.1125,-1.7081,2.3241,-0.029328,0.24966,-0.35995,0.81792,-0.66798,-0.63813,0.23387,-0.44202,0.5118 -3.1217,0.61727,-0.044719,-0.83497,-1.9421,-0.94112,1.2599,-1.4396,-1.7135,-0.20292,1.1271,0.6313,-0.056425,0.83485,-0.34633 2.4325,-0.18096,0.044271,2.6464,-0.80673,0.34398,0.057472,-1.7896,-1.3271,-1.3875,-0.30164,-0.23752,0.25665,0.044413,0.62216 -0.23924,2.4709,-0.76705,0.87149,-2.0757,0.04272,-0.76251,0.32973,0.44058,-0.38598,-0.3126,0.61176,0.27165,0.8418,0.50522 -0.73502,2.4381,-2.8239,0.83783,-1.5243,1.853,0.30654,1.1871,-0.54378,-0.23147,-1.4179,-0.60895,0.15972,-0.31728,0.84235 0.30206,0.7196,0.38224,2.0375,0.6024,0.25177,1.8999,0.57324,0.96093,-0.15235,-1.1328,0.65905,1.0164,-0.50751,0.28813 -1.0494,-1.0672,-1.2192,0.075908,0.21881,0.13456,-2.2635,1.3258,0.74248,0.66473,-0.034312,1.0963,0.08835,-1.3136,1.7829 -0.45841,0.2936,-1.5575,2.4567,-0.83134,0.37492,-0.34017,1.1521,1.298,0.2551,0.75317,0.017766,-0.85874,0.23856,-0.035353 -1.1312,-0.50657,-2.8058,0.32158,-0.11322,-0.85327,-1.1876,1.5313,-0.35148,-0.22515,-0.29875,0.53121,-1.6252,-0.59149,1.514 0.70744,-0.42791,-0.056281,3.1132,0.51197,-0.76305,-1.1505,0.86948,0.54339,-2.6771,0.93976,-0.39893,-1.173,-0.38759,-0.10453 -0.36087,-0.86815,1.9329,0.91618,-2.3497,-1.8919,1.2561,-0.51009,0.26356,0.15118,0.37761,0.33626,1.0974,-0.24846,-0.16308 -0.44684,-4.0974,1.0519,0.1733,2.2351,-2.5404,-0.56314,0.03019,-3.4933,-0.46364,0.74445,0.48424,0.43626,-1.7401,-0.76633 1.9304,2.5077,-0.95089,-1.2492,-1.7921,-1.5827,-0.12684,-0.18831,-0.22296,-1.8938,-0.94364,-1.3761,0.037688,0.83195,-0.45667 3.7369,-1.4317,0.72893,1.1942,-0.49598,2.0837,-1.8959,0.59493,-0.74253,0.98386,-0.02486,0.6275,1.0375,0.282,-1.1637 1.0323,-0.61786,-2.2098,1.1351,0.014796,0.74949,-0.28357,0.017876,0.78296,-0.75555,1.2253,0.63116,1.0732,0.8486,0.18569 0.53019,0.84142,-0.066704,2.6443,3.4551,-0.11937,0.12899,-0.47126,-2.66,-0.24255,0.31085,0.24666,1.2653,-0.34867,-0.2914 4.2436,-0.19565,-0.39799,1.0347,-0.65552,-1.6853,0.76371,-0.72508,-0.28179,-0.10243,-0.85454,-1.1143,-0.85848,-0.080125,-0.58588 -1.0489,-3.8915,0.46196,-1.0842,2.4585,-2.6554,-1.6969,0.035829,-3.9233,0.38191,-0.3045,1.6661,0.012959,-0.84315,0.25071 -2.9837,1.1195,-0.79459,0.091997,-1.3748,-0.48586,1.5679,0.76932,-0.0011613,-0.98893,1.2237,0.19583,-0.10468,-0.45272,-0.26528 2.745,-3.1439,3.0161,-0.16162,-1.1403,-1.6215,0.14327,0.99087,-2.7282,-0.058528,0.091184,0.67656,0.14511,-0.22575,-0.52906 0.58451,-2.4559,0.81223,0.21979,1.9143,-3.347,1.8144,-0.79936,-3.2215,0.37057,-0.10081,0.22301,1.8015,0.0087704,-0.75954 2.93,0.84309,1.4211,0.44997,-1.8062,-1.1885,-1.7814,-1.4285,0.68353,-0.56489,-0.4392,0.26217,-0.49096,-0.029694,0.0045161 0.74335,2.6145,2.4699,-0.92682,-0.047212,-1.7343,1.0091,0.17203,-0.72688,0.050237,-2.6042,-0.52444,-0.60959,-0.19102,0.639 0.54383,-3.4138,0.65459,1.8808,1.5977,-0.99574,-0.46276,-0.27757,-2.3686,-2.5463,1.6479,-0.30993,0.89712,-1.8076,0.093027 -1.5895,3.4799,0.84964,0.078987,0.25727,-0.88058,-0.59241,2.1353,-2.117,0.68735,-1.2443,-0.79089,-0.84334,-0.28219,0.45738 -2.2571,-1.9749,-2.1186,0.61747,0.55971,1.0299,-0.58601,0.5264,1.4307,0.061579,-0.44275,-1.7001,-1.5116,0.81146,0.26859 0.19911,1.4658,2.9177,-0.40263,-1.675,-1.0147,-0.076256,-0.31759,-2.1103,-0.37887,1.2048,0.89611,-0.36412,-0.093916,0.082718 -1.5254,-1.1862,-0.24588,1.6187,1.4105,-3.03,2.0184,0.62478,-2.09,-0.057574,1.2567,-0.94726,0.49192,0.63615,0.018933 4.7348,-2.1739,-1.7259,-1.0307,-0.71576,0.13775,-0.55626,1.5173,1.9524,0.59169,0.69692,-1.0277,-0.83598,0.48039,0.35553 4.3574,-0.42403,-0.88493,-0.78187,-0.27902,-2.1699,0.40127,-1.2311,0.52079,1.2472,1.6569,-0.96417,-0.8074,-0.31257,2.0381 -2.5047,0.58703,-1.9273,-1.0957,-1.5145,-0.75563,1.1867,-1.7881,-0.64712,0.79952,-0.33752,-0.27374,0.52479,0.83925,-0.55045 2.9904,-2.4037,-0.4457,-1.8198,1.6926,-2.288,2.4614,1.9914,-0.47773,-0.44755,-0.4251,2.0004,0.45291,0.61075,0.089093 -1.6756,-2.5226,2.3067,0.68192,0.59981,-0.19708,-0.038426,1.8598,-0.55112,0.22738,1.7732,0.51011,-0.79806,-0.59801,-0.75499 -1.2037,-1.669,0.43745,2.1206,1.8101,-2.6996,1.4877,-0.16206,-1.7781,0.31949,1.3593,-0.24475,0.64121,0.01843,-0.60806 1.1267,-1.6669,3.468,-3.1686,-2.3186,1.569,0.29624,1.8807,-2.33,1.4349,0.11349,-1.1106,-0.83546,1.1066,-0.45451 -1.0315,-3.891,0.7983,-0.928,2.3075,0.44588,-2.7691,1.2419,0.044759,2.0541,-1.4656,0.11683,-0.098018,0.65765,1.096 0.65444,-3.0394,1.8836,-2.5886,-2.4535,0.47611,0.9224,1.7657,-1.7016,1.0382,-0.8954,-0.56263,-0.073531,0.12278,-0.39927 0.99314,-3.8162,3.2141,0.67014,-0.42568,1.3902,0.36707,2.2522,-0.51681,2.6291,0.12066,-0.54891,1.0328,0.051604,-0.98715 1.3736,-1.6836,2.8073,1.9866,-0.96254,-0.56432,-0.42959,-1.3166,-3.1409,-0.83735,-0.10554,0.53027,-0.7014,-1.0968,0.85262 1.4806,0.34609,-0.23373,-0.046395,-3.1823,-0.64864,-0.64253,1.1573,1.0143,-2.0229,-0.82293,0.69963,-1.1468,-0.67591,-0.83663 3.6916,-0.42024,-0.24105,-0.10688,-1.3987,-0.70941,-0.7947,-0.4447,1.1522,-0.0080358,-0.80004,-0.85033,-0.34895,-0.514,-0.52933 3.2492,-1.5501,1.1741,1.8549,0.35981,1.5884,-1.7396,2.0589,-1.3439,1.6501,0.61776,1.1524,1.5297,0.82047,-1.4693 4.2067,-3.3096,-0.93883,-2.2614,-0.67094,-1.162,0.31271,2.9611,-0.034125,0.042407,1.0894,1.3039,-0.4533,0.16444,-0.3127 0.90925,-1.5319,2.1759,-0.82384,-2.5076,1.4467,-0.59442,1.8,-0.081251,1.7846,-0.47231,0.11601,0.53263,0.21267,0.13464 1.9769,0.087455,-0.27111,-0.33371,-1.2576,-1.913,-0.33122,0.17422,0.94039,-1.1067,0.031197,0.40532,2.7376,0.60776,-0.86175 0.90725,-3.3078,0.69684,-2.986,-0.89112,0.93569,-1.3061,-0.70869,-1.4972,2.1208,-0.8286,0.20198,-1.8446,0.72179,0.064683 4.5076,-0.79173,-1.6784,-1.3114,-0.15113,-2.1695,1.8711,0.9906,1.0227,-0.79123,0.21576,0.2824,0.71946,1.0036,-1.6789 0.71047,-1.4051,1.9146,-2.3448,-3.5496,1.1713,0.63272,1.708,-1.6886,-0.2805,-0.76036,-1.2503,-0.87022,-0.69045,0.84874 -1.2496,0.28246,2.0996,-0.37679,-2.9738,-0.72838,-0.37737,-0.45168,-0.80214,-0.44729,0.44176,0.63575,-0.72291,-0.30761,1.0741 -0.58526,-2.6469,2.2339,-0.48741,-0.56699,0.82592,-0.59226,2.9737,-0.01158,2.1249,0.58394,-1.1193,1.1429,0.7497,-0.77562 2.8057,-2.1323,4.5929,-0.17852,-0.53582,-0.73085,-0.63203,1.3701,-2.7844,0.10413,0.73373,0.65131,-0.98648,-0.22432,-0.78895 2.621,-3.8259,2.7077,-0.18621,-2.1092,-0.26442,2.2271,1.0944,-0.80696,0.025315,-1.1204,-0.076525,-1.6741,-0.87004,-1.2901 0.90332,-3.2891,1.4174,0.65614,1.4125,1.5888,-0.13407,0.99822,-0.027124,2.5977,-0.15905,-0.68818,0.93619,0.30999,-0.821 -1.1076,-4.0679,3.0207,-1.7629,0.39907,0.029693,-0.49929,0.58128,-1.9069,1.6289,0.91438,0.27058,0.037154,-0.82537,-1.4734 -1.1403,-2.7785,3.2176,-0.65223,0.19965,0.83878,-1.0897,2.5049,-0.16223,1.4356,1.1974,-0.78117,0.15973,0.068364,-1.1816 2.1265,-1.6177,-1.3809,-0.50875,-1.9343,1.1731,-0.10345,1.1973,0.11711,2.1377,0.7336,1.6413,2.1592,0.19389,1.2751 1.9498,-0.23087,2.8011,0.16958,-1.9239,-1.7856,-1.5683,0.053172,0.053492,-1.0061,0.30032,0.51656,0.31642,1.1368,0.74626 2.5499,-0.83483,2.3418,1.0453,-0.99467,-3.124,-0.67164,-0.39816,-0.91289,-1.514,-1.5575,0.33291,-0.042493,-0.5955,-0.98069 -2.8739,-0.52391,-2.2408,0.40541,-0.8954,-0.42761,0.49627,-0.70262,0.66761,0.15748,1.1051,0.42076,-0.80109,0.63526,-1.4768 2.4272,0.35871,2.205,0.6698,-1.6912,-1.0498,0.57043,-0.6186,1.2867,-1.2804,-0.85528,0.46275,0.052973,0.56136,0.50848 2.3092,-0.29882,2.0467,0.76586,-3.023,-0.22933,-0.78999,0.036433,0.84351,-1.1309,-0.9676,0.24438,-0.091663,-0.40349,0.069599 -0.88869,1.1349,0.35698,-0.49946,-3.2255,-1.1083,1.8701,-0.47066,-0.87782,-0.61133,-1.1168,0.3989,0.60677,-0.71373,0.31225 -1.6921,2.306,1.1678,-0.45547,-0.40222,0.54121,1.244,0.77888,-2.964,0.6431,0.29105,-0.6088,0.93868,1.0247,0.71474 3.0521,0.21363,-0.15375,0.59017,-1.3123,0.21856,-2.3722,-0.44649,0.72965,0.99252,0.2673,-0.92205,-0.35329,0.8869,0.53125 4.3704,-4.6647,-1.5713,0.42851,-0.57437,0.90136,1.17,1.8174,-0.36895,0.9948,-0.53333,1.0225,0.30569,-0.6404,0.088486 -2.2022,3.1013,-0.0056155,0.14474,-1.354,0.5403,1.5973,0.5868,-2.1598,-0.5043,-0.29206,-0.69006,0.65408,0.37884,0.63467 1.0563,-0.2457,0.064597,2.8998,0.83346,-0.44046,0.3735,-1.7316,-2.474,-1.7344,1.7329,0.49272,0.47883,0.9338,0.75154 0.17319,-2.3063,1.4685,-0.54772,-1.3536,-3.2771,2.6141,-0.27724,-1.34,0.26249,-1.0142,0.57852,1.5435,0.34109,-1.312 0.49353,-0.40596,3.0235,-1.435,-3.4546,-0.4731,0.37805,0.18889,-0.053492,-1.7825,-0.23387,-0.69413,-0.38499,-0.57665,0.36501 -2.8127,-2.1679,0.72787,0.14722,-1.5176,-1.9579,-0.41022,0.36438,0.20349,-0.89782,1.5371,-0.86226,-1.0256,-0.29285,-1.1734 -1.6297,-1.7958,0.024204,0.50304,-1.1507,-3.0039,0.82547,-1.9588,0.092818,0.6539,-0.28817,-0.42319,0.33748,-0.13875,-0.11982 1.4623,1.3023,0.095349,1.3223,3.0233,-1.6762,-0.79398,1.5069,0.51372,0.95636,-0.72171,-0.67702,1.2943,-0.48508,-1.0222 3.8273,-0.65085,0.1542,-1.9066,-1.1254,-3.1346,0.031337,-0.12846,0.49154,-1.4311,-0.18846,-0.19718,0.48503,-0.11137,-1.2934 3.4686,-0.59116,-1.7462,0.17396,-0.57112,-0.48708,1.3181,-1.5182,0.9377,-0.37031,0.84261,-1.425,-0.36804,0.55876,1.939 0.61526,1.5258,-1.3379,2.3136,2.7886,-0.77346,-0.92987,1.0411,0.88058,0.50426,-0.32402,-1.4386,0.87844,-0.32644,-0.87404 -0.13286,2.4545,-1.7903,0.33829,-2.0175,0.8014,0.47619,1.122,-0.94866,-0.73289,-1.3073,0.11219,0.41382,0.53621,0.55374 1.6193,0.42124,0.23419,2.7838,-0.17142,-0.88272,0.81547,-0.8221,-2.4282,1.5144,-0.45697,0.59359,0.71385,-0.5386,-0.010735 0.19495,1.9335,2.3476,-0.49529,-1.1808,-1.527,1.9413,0.41071,-1.4777,1.8034,-1.568,-0.42188,-0.24312,0.99514,1.18 -1.5875,0.43525,1.2752,-1.6133,-2.3819,-1.2929,1.1252,-1.1929,-1.1412,0.16176,0.66882,0.1544,0.63328,-0.14397,0.67077 3.3593,-0.83169,-1.6586,0.69844,-1.1389,1.3611,-0.54626,-0.70894,0.8221,0.79037,-0.17385,-1.2912,-0.28188,0.017901,0.46231 -2.3238,0.3466,0.49295,2.2308,-0.47742,-2.4759,1.5551,0.80183,0.1845,-0.21149,0.70799,0.38749,-0.72318,0.27085,0.075828 0.63436,-0.39308,1.9226,3.3801,1.9401,-0.91054,0.96779,0.61301,-1.484,-0.54474,0.97517,1.3021,0.50667,0.049869,-1.0283 1.1833,1.7673,-0.70355,-0.1663,-0.083173,-1.5239,-0.89933,0.87497,0.54051,2.0871,-0.78293,-1.5485,0.99533,0.36779,0.35018 0.58331,1.4828,-0.83932,1.5922,0.65872,-0.046399,-0.80801,0.89305,-0.79429,1.7463,-0.15814,-1.1662,-0.014842,1.2799,0.51548 2.7779,0.86946,-0.30742,0.67008,0.12267,-2.9948,0.50286,-0.86664,0.086116,0.11139,-1.3281,-1.6687,0.10839,1.1033,-0.011583 -0.46049,0.48426,1.4292,1.9234,0.10894,-1.8184,1.5215,0.47765,-0.45671,1.8541,-0.12795,0.56075,1.3472,1.0298,0.075185 2.192,1.8648,-0.84018,-1.9282,-0.85532,0.87151,-2.0908,0.049988,-1.6768,0.29495,3.0178,-0.36952,1.1209,0.69611,0.48558 2.7721,2.1555,-0.50787,-0.67104,-0.15921,-2.2671,-0.33605,-0.038764,0.3472,1.4896,-1.2928,-1.7875,1.235,0.90424,-0.1475 -0.18833,1.563,-0.8772,1.9897,0.011634,0.18897,-0.59268,1.0825,-0.47284,0.92981,-1.5082,-1.3566,0.092651,0.27225,0.66593 0.93371,1.0071,-0.87913,0.69973,2.4157,-3.6353,-0.12336,2.0795,-0.13265,-0.55075,-0.51344,-1.5349,0.72695,-0.022698,-0.62394 -1.5112,-0.49691,-1.1611,1.9617,-1.2101,-0.13309,0.86713,-1.6076,0.63683,1.06,1.0466,0.51482,0.012869,-0.53648,-0.46281 -1.8254,2.5096,0.44782,-0.32007,0.63347,-0.73919,0.93191,3.3595,-1.1838,-0.63607,-1.2479,-0.70806,0.51497,0.12433,0.4889 0.4638,1.4356,-2.2002,0.3689,1.8789,-1.7262,-1.151,1.8612,0.97625,0.81916,0.71095,-2.2377,-0.18468,-0.20054,0.24685 2.3317,1.7341,-0.032979,0.72743,0.34729,-0.66467,0.54113,1.8662,-0.99725,1.4175,-2.0988,-1.2696,-1.1612,1.139,0.59445 -0.61363,-0.24724,-0.31795,2.0725,3.0127,-0.35485,-0.30043,0.54229,-1.2784,-2.9009,0.38724,-0.83231,-0.15591,-0.91574,0.045609 -0.097557,1.1952,2.2578,0.63674,-1.104,-1.68,-1.4996,-0.00038608,-0.47718,-1.4786,1.5856,1.1454,0.38027,0.29765,-0.67172 2.539,0.56061,-1.5556,-0.63193,0.63574,-0.67096,1.3167,0.047486,-1.2493,1.0376,1.0173,0.40975,1.7207,-0.40742,1.8652 1.9286,-0.45527,-0.54497,2.1004,1.5853,-2.7926,-0.73353,0.12854,0.85046,-1.1207,0.14587,-1.7824,0.39479,0.033247,-0.075815 4.0374,-1.9256,-1.3407,-1.0244,-0.87273,-0.81584,0.70925,-0.15695,1.4624,-0.34007,0.97771,-0.90515,-0.47686,1.2844,1.8564 -2.2128,-1.8723,-2.3141,0.18115,-0.57088,-2.3433,-0.65104,-0.054521,0.18773,-0.30884,-0.058472,-0.018241,-1.0986,-0.30721,-1.0615 -1.0112,-0.34534,0.53308,2.3964,0.14102,-1.5005,1.2956,0.63427,1.0664,-0.95342,0.48978,-1.6782,-0.39038,-0.40267,1.3191 -1.9066,-3.2558,-1.8273,-0.49502,-0.90012,-1.0019,-1.8514,0.80195,-0.065771,-0.372,0.01003,0.051081,-0.81874,-0.45604,-0.64686 -0.85603,-2.2255,-2.6869,0.34813,-1.1198,-1.0646,-2.3289,1.1156,0.053832,-0.39571,-0.57521,1.1697,-1.2498,-1.1238,0.66169 0.59434,3.4154,-1.2256,-0.31072,-1.138,-0.31956,0.28302,-0.075407,-0.90135,-1.718,-1.9229,-1.2814,0.79366,0.38534,-0.36016 -1.6798,-2.5196,-1.4824,-0.43097,-1.0169,-0.75503,-2.5627,-0.18253,0.47309,0.49557,-0.30495,0.87479,-0.131,-0.96259,0.22934 -1.3102,-2.5998,-1.9084,0.40787,0.81576,0.13511,-2.5253,1.2494,0.48392,0.28178,-0.38094,-0.036628,-1.8856,-0.15859,0.84742 -1.6888,1.8365,0.74219,1.1567,-1.5765,-1.4012,0.41553,-0.29574,-1.3608,0.30737,0.84948,1.6392,-1.0709,0.96406,-0.22194 -1.2439,-1.8085,-3.0584,-0.10683,-1.6469,0.011263,-2.1437,0.90284,-0.10717,-0.55134,-0.67793,0.26973,-1.065,-0.62854,0.6347 -0.10267,2.3574,0.14871,1.6924,-0.099514,-1.6712,0.10769,-0.16916,-1.5852,-0.55375,-0.72578,-0.48345,-0.64018,1.8217,0.15226 -0.57031,-2.5466,-2.197,0.88657,-0.93443,-0.42181,-2.3842,1.4035,0.20713,0.53735,-0.25133,0.75696,-0.54009,-0.3672,0.59951 -2.7287,-2.1609,-1.5729,-0.45701,-0.53658,0.7377,-2.8726,0.71522,-0.058806,0.064225,-0.31078,0.32409,-0.77339,-0.20613,0.54481 -1.7661,-1.6295,-3.033,-0.0025615,-1.4343,-1.4504,-1.7013,0.18632,-0.32659,-0.12822,-0.20016,0.59085,-1.1524,-0.07033,-0.014347 -2.6669,1.8329,-1.9025,0.3303,-0.017094,0.56734,0.8018,2.1353,0.41466,0.61674,-0.55619,0.030898,0.11514,0.093212,0.87111 -1.6694,-2.3496,-2.5311,-0.46171,-1.41,-0.66596,-2.1301,0.27091,-0.15853,-0.99512,-0.19667,0.77556,-0.50464,-0.70665,-0.041218 2.7328,0.63696,0.80728,0.064203,-1.3357,-1.3088,-2.357,-0.71092,-0.24349,0.77387,0.81603,-1.2754,-1.0308,0.72923,0.64568 -1.016,-2.2655,-2.5729,0.081367,-1.0059,-0.022573,-2.3005,1.506,0.098824,-0.25421,-0.34261,0.67513,-0.43902,-0.67934,0.62865 2.9725,-2.6781,-0.34456,-1.5612,-1.9925,-0.87562,0.15799,1.0326,0.061464,1.1667,0.5071,1.0899,0.43918,0.066986,1.1929 5.104,-1.9579,-0.2071,0.26064,-0.87183,1.0308,-0.62152,0.87808,0.0055111,-0.85766,-1.0933,0.060338,-1.0022,-0.016784,-1.1234 -0.11376,2.177,1.443,0.055398,-0.1599,-0.60212,-1.0961,1.9317,-0.98827,1.5804,-0.39524,0.66689,1.0024,0.51399,0.33488 -2.674,-0.20065,-2.8899,-0.63954,0.59227,-0.21868,0.28052,0.017112,-0.3415,0.046233,-0.25426,0.16793,-0.28406,0.58409,-1.4262 -0.15782,-2.1053,3.8735,0.3542,0.13632,0.84407,-1.0957,3.4778,-0.39861,0.91711,1.3935,-0.002172,-0.28393,0.007108,-0.44979 -2.7666,-2.0451,-1.4687,-1.5622,0.72838,2.3406,-2.0116,0.11068,-0.87793,0.016411,-0.56668,-0.07043,0.35532,0.08543,0.38747 4.2174,-1.779,-2.2921,0.22684,-0.54078,2.4165,0.86155,-0.34865,-0.39539,1.0808,0.2904,-0.81421,-0.48699,0.054056,0.51944 4.4117,-1.8978,-0.83902,-0.44811,0.013099,-0.63666,1.9745,-2.1514,-1.0797,-0.78231,1.2545,-0.50753,0.43449,0.42766,2.7486 -1.2755,-1.0634,-3.398,-0.18539,-1.804,-0.51804,-1.2741,-0.032797,-0.043152,-0.82648,-0.49735,0.76583,-0.74775,-0.38437,0.17917 1.1901,1.2854,-1.9729,2.3781,0.31206,0.36471,-0.62932,-1.7326,-0.94194,-0.3738,0.5668,-1.2237,1.0074,0.48752,0.4701 -0.16634,-3.3928,1.0377,0.73156,0.43042,-1.1141,0.48198,-1.9369,-1.0739,1.2722,0.72207,0.82298,0.45975,-1.6305,-2.2884 -0.28506,-1.5651,-0.80468,-0.45852,-0.52601,-2.319,0.13697,-1.746,-1.4569,1.4857,-1.1487,1.5988,1.5011,-0.64267,-0.54781 -1.1125,-2.8576,-0.099377,1.0433,0.84792,-2.5146,0.55971,-1.4962,-1.3487,0.82436,0.10649,0.91607,1.1677,-0.93732,-1.4291 1.5378,2.0361,-1.2454,-0.2319,-1.1518,-1.3792,-0.57998,-0.86436,1.1753,0.84098,-0.33912,-1.1839,0.90469,0.29756,0.67577 -0.07144,-1.5681,-1.6823,1.3322,0.97512,-0.033838,0.62024,-0.46322,-1.6037,1.9545,-1.0176,0.72662,2.1049,0.14827,-0.19407 0.47816,-2.9331,0.89293,2.1312,-0.46708,-0.12796,1.2869,-1.7049,-1.0898,-0.11593,0.90174,-0.22826,1.1206,-1.3844,-0.22359 1.8398,-3.3291,0.78728,1.9212,-0.99772,0.39207,1.1691,-1.4902,-2.0908,-0.78355,-0.34771,-0.66806,0.51029,-2.0784,-0.14293 2.2892,-0.3833,-2.0215,-1.5833,-2.3475,0.12849,-0.92205,0.24368,1.4701,0.47989,1.0588,-0.62226,0.39823,-0.22201,1.6312 2.903,-3.733,-0.11669,0.15364,-1.391,1.2475,0.87656,0.74545,-0.4264,1.2395,-1.3698,-0.41252,-1.1436,0.2374,-0.91675 1.9339,-1.4186,-1.9762,-2.571,-1.9024,-1.2455,1.6097,2.5338,0.57988,-0.54411,0.22713,2.5417,0.2461,-0.17244,-0.40985 1.0119,0.68028,-1.6297,2.4772,-1.8961,1.1837,-0.047429,-0.78171,-0.13937,0.07725,-0.36551,-0.46736,-0.038324,-0.078715,0.98579 -0.48566,-4.228,-0.80439,1.548,0.89154,0.19337,-1.067,-0.033466,-0.27732,-0.096367,0.24484,-0.56001,-0.45057,-1.3015,-0.40885 -0.51573,-1.6066,-0.65701,0.31785,0.57953,-2.5222,-0.8326,-0.82509,-1.7393,1.3583,-0.23528,2.5788,0.95224,-0.48333,0.37904 2.1452,-0.8223,-0.32512,2.0149,-0.31092,1.2656,-0.78156,-1.7468,-1.0411,-1.512,0.34385,0.047504,1.5393,-1.7116,-0.98917 0.98003,-2.7896,-1.6649,-0.58372,1.4227,-0.18801,1.4892,2.2718,-2.6047,-2.7865,-0.08559,0.21181,1.512,1.1781,1.46 -2.9689,0.034587,-2.5508,0.41092,-0.45879,-1.0908,1.6326,-0.017706,0.21906,0.46136,-0.48642,-1.0547,-0.53005,0.91738,-1.0197 1.3639,-0.65783,2.8266,1.5559,-2.2555,-1.2851,-1.0608,-0.81411,-0.82451,-0.074442,-0.14683,0.22136,-1.2746,-0.12865,0.61464 4.5526,-2.2006,3.2202,0.74885,-1.6533,0.30662,-0.72452,0.62022,-1.5766,0.10398,-1.0313,-0.39405,-1.4553,-0.36376,-0.58656 4.496,-0.52188,2.198,-1.3209,-1.952,-1.2583,-1.0436,0.49999,-0.12569,-1.5437,-1.2041,-0.037211,-0.46701,-0.18711,-0.80977 -0.42452,1.8488,-0.57546,0.5694,-2.7764,1.3429,-0.92595,0.078311,-0.20275,-1.4036,0.99872,0.90358,0.15193,-0.29185,0.54988 -0.93985,0.070467,2.8113,-0.90353,-3.0989,0.31936,-0.13135,-0.53593,-1.199,-0.48352,0.65765,0.24671,-0.91592,-0.26599,1.195 -1.1223,1.8021,-1.1918,2.4677,-0.092227,-0.84429,-0.18973,0.94525,0.48194,-0.12623,-0.66031,-0.21679,0.17278,0.73259,0.10867 -2.4701,1.1553,1.2589,0.3593,-1.4367,-1.5771,0.60724,0.48612,-0.5819,-0.3646,1.2206,1.1873,-0.179,0.80788,0.19736 -1.8726,-0.45513,1.0317,1.2493,-1.1394,-2.0827,0.63609,-0.37162,-0.026547,0.53545,1.1242,1.3194,-0.31643,0.020153,0.10079 -1.9682,2.0154,-0.072081,-0.63523,-1.9907,-0.5297,1.6211,-0.8256,-1.971,0.089967,-0.70075,0.35143,0.65702,0.20178,1.4264 -0.54369,-1.6299,-0.92832,-0.13117,0.022684,1.3099,-2.5615,-0.83837,0.93321,1.8794,-1.2001,1.4558,0.23196,-0.0057294,1.7831 3.5116,-1.2204,0.71607,-0.10172,1.562,-0.31975,0.33247,-2.8214,-2.5084,-1.225,0.80666,-0.84534,0.85881,0.06878,1.3366 -0.53868,-1.4336,-1.6573,1.9572,0.26995,2.3809,0.020187,-0.16283,0.049707,-0.30018,0.74417,-0.88948,0.89401,-0.38644,0.3506 -2.3514,1.2791,1.6416,-0.20162,-1.7505,0.63999,0.45409,-0.71886,-1.1598,-0.93113,1.7911,1.4575,-0.67109,-0.34722,-0.12007 -0.6033,-1.3484,2.8308,1.9699,-1.0369,-1.1435,-0.82929,0.86658,-0.6282,-0.25616,1.5564,1.0044,-1.4431,-0.32769,0.12608 2.4456,1.0928,2.7875,-0.074182,-1.9516,-2.0649,-0.66789,-0.83267,0.11422,-0.94449,-0.70377,0.4423,-0.57285,0.65204,0.7912 -0.64092,-1.733,3.0038,1.3356,0.50482,0.27879,0.5257,-1.7224,-2.1549,-0.31697,0.76456,0.33513,-0.28453,-1.8905,-0.68069 3.1839,-0.79116,0.16793,1.5377,-1.8561,0.29078,-0.42729,-0.9262,0.5306,-1.471,-1.5059,-0.098419,-0.53913,-0.57085,-0.35185 0.68706,-0.62535,0.80081,2.4044,1.2194,0.017265,-2.1206,-0.29646,-1.8155,-2.213,1.7585,0.44264,-1.7926,0.15511,-0.44394 0.3773,0.49914,1.9634,-1.3961,-2.6939,-2.0511,2.2934,-0.34364,-0.84779,-0.77046,-1.2556,-0.10008,-1.8064,0.50493,0.61339 -2.5821,0.88503,0.84717,0.92594,-0.852,-1.2808,1.207,0.23034,-0.13985,-0.2684,1.1903,1.2719,-1.2938,0.95428,-0.37653 3.3864,-0.96245,1.1902,0.42561,-1.164,1.8349,-2.173,1.7532,-0.045556,0.79574,-0.94709,0.90844,1.9123,0.065181,-1.5499 0.35981,3.2497,-0.10845,0.43087,-0.26829,-0.93314,-1.489,0.39531,-0.44795,0.64869,-0.41155,-0.36881,-0.87858,0.432,-0.053312 -3.1228,0.39737,-0.099439,0.38965,-0.80355,-1.6263,1.3414,-0.87307,-0.57048,1.3717,0.86067,0.88487,0.42156,0.26466,0.078875 -1.0625,-2.5746,-1.1531,-0.13384,0.010357,-1.2864,-2.5456,0.56064,-0.66076,0.45117,0.38626,2.6693,-0.005721,-1.0772,0.2948 4.3346,-3.0433,-1.8947,-0.01546,-0.65986,1.0672,1.3951,-0.32739,-0.02502,-0.43722,0.40539,0.093245,0.61776,-0.11798,1.2037 -0.88061,-3.2005,-0.65855,-0.099497,0.01401,-0.75842,-2.8543,0.54915,-0.059635,1.2861,-0.5115,1.6495,0.1205,-1.1832,0.81814 -1.1056,-0.9329,-1.4645,2.2129,0.93604,1.427,1.0713,0.13383,-0.5815,-0.77078,1.1137,-0.72902,0.83845,-0.6767,0.11652 -0.71713,2.1436,-1.7186,1.4068,0.46393,-0.42675,-1.2307,1.3604,1.2215,0.14705,-0.72346,-0.7863,0.064116,0.14426,-0.20813 2.0025,-0.046648,-1.5808,-0.60937,-0.4442,0.046643,0.8441,-0.31132,0.43157,0.94297,1.2111,1.2803,2.2609,0.38475,1.0817 -2.0536,-4.3244,-0.18851,-0.47501,0.41226,-0.2756,-1.9685,1.3284,0.42127,1.1513,-0.090856,-0.46226,-0.76081,-0.17987,-0.7914 1.9503,1.7375,1.9319,0.25038,1.4893,-0.25788,0.042414,1.7302,-0.52327,2.1024,-1.8561,1.4587,0.48254,-0.11494,-1.7577 1.3763,-0.66027,0.94239,2.5281,-1.6341,0.92545,0.76924,-1.5066,-0.6537,-0.13296,-0.29141,0.30996,-0.902,-1.4264,0.6273 -0.8233,-4.6881,0.37051,-0.19294,1.1004,-1.6608,-2.2752,-0.41114,-1.807,1.0361,0.010469,2.0484,0.00022073,-1.3092,-0.66513 -1.2743,0.38205,-3.8816,0.1363,-0.52143,0.14546,-0.051701,0.2991,0.13403,0.78743,-1.5194,0.0055631,-0.29193,0.81843,0.19507 -1.0697,-2.4771,-0.49008,-2.9688,-1.4932,-1.2543,0.63938,-1.6205,-2.502,-0.37253,-1.967,0.36107,0.22358,-0.45328,-0.16074 2.4877,-1.812,-2.513,-2.6865,-2.0998,0.25567,-0.20471,2.3706,1.1952,0.25996,1.1631,1.2077,0.67648,0.35881,0.51873 3.6221,-1.3433,-0.13611,-1.1695,-1.3236,-2.1984,-0.7094,0.58455,0.29167,-1.6005,0.76823,-0.26635,0.58683,-0.43731,-0.94133 -1.1144,2.5757,-1.8741,0.81776,-2.3154,0.85019,0.2462,0.4222,-0.81769,-0.36418,-0.28993,0.46352,0.59682,0.29097,0.48868 -2.0023,1.3616,-0.77594,1.1761,-2.1145,-0.16298,0.26919,0.59281,0.54508,-0.69625,0.9711,1.4995,0.029737,0.4535,-0.2106 -0.16034,-3.4947,2.2779,2.2987,-0.5679,0.55118,-0.47737,1.5863,-0.27767,0.98845,1.5692,-0.93729,-0.365,-0.53926,-0.4474 0.99769,-1.59,1.2396,3.0805,-0.80274,2.5541,-0.69871,0.3001,-0.88634,-0.38911,1.3802,0.10069,0.37691,-0.49177,0.52509 3.6124,-0.19004,-1.3004,-0.2498,-1.8078,-0.33563,-0.54875,-0.23047,1.8566,-1.288,-0.53844,-0.56162,-0.61578,-0.051196,-1.0882 -1.3316,-2.4369,-2.1358,-0.22485,-0.16791,-0.15744,-2.6664,1.9232,0.38572,0.21916,-0.42654,0.99659,-0.58818,-0.18181,1.404 -1.8935,-2.625,-0.86107,0.10867,-0.50243,-3.4446,-0.28861,-0.59475,-0.74788,0.37145,0.30994,0.50299,0.2305,0.23922,-0.47455 1.3589,-2.2216,-0.10387,0.41948,-0.14025,-1.3561,1.9775,-2.5423,-3.5479,-0.94075,-1.0209,0.38212,1.0806,-1.1194,0.30247 1.4776,1.052,1.8006,-1.4083,-1.7018,1.2468,-1.4905,0.71602,-1.3318,-1.2781,-0.77908,0.74992,0.30443,-1.7499,-0.61254 1.9766,-0.5192,1.5877,1.834,4.0538,-2.2511,0.13219,1.7266,-0.29571,-1.2611,0.7432,0.29786,0.94225,0.82118,-0.67475 -1.3373,0.65483,2.4449,1.3274,-0.51274,-1.6326,1.5143,-1.497,-1.2699,0.75899,0.37896,-0.061285,-1.0732,0.47877,1.1642 1.4571,0.19599,-0.28123,0.4073,1.8355,-1.5485,-0.52672,2.7728,0.15516,1.7406,-0.00056178,-0.16877,1.8169,-0.82582,-1.2869 3.9474,-2.9967,-1.1125,-2.4492,-1.7395,0.14337,1.4942,2.182,-1.1421,1.4457,-1.05,2.4532,0.49585,-0.85944,0.10408 -0.04024,0.83194,1.23,2.1854,0.97742,-1.7462,0.0023952,1.8858,-0.26526,0.46952,0.46808,1.0032,0.64972,0.2991,-1.4826 2.4424,-0.75988,2.6799,1.7109,-0.21851,-0.23717,1.5798,-1.6099,-0.73177,-1.1886,-0.87878,0.80569,-0.17133,-0.026596,-1.3822 -0.15981,0.99823,1.392,2.9464,1.9297,-0.97137,0.92929,1.1466,-1.5658,1.0891,0.35476,0.8099,0.22612,0.87761,-0.81044 0.60354,2.6892,-2.5757,-0.67488,-0.80421,0.06006,-0.92931,-0.18552,-0.10367,0.015171,0.1582,-1.483,1.5766,0.23966,0.49513 -0.69515,0.58635,0.50527,3.2351,1.9592,-0.1713,1.785,1.2918,-1.9952,1.097,0.77994,0.50331,0.12798,-0.45145,-0.22289 -2.1073,-1.4065,-1.0491,0.82372,-0.21298,1.2891,-1.0194,-0.65388,1.2001,1.428,1.2846,-0.41336,-0.711,0.40777,-0.57758 -0.2353,1.7903,0.22603,0.37355,-1.0562,0.52163,-1.9068,1.486,-0.26045,-0.039168,1.9268,0.94334,-0.33286,0.85753,-0.86314 -0.19489,0.19828,0.23947,3.0343,2.2445,-1.1823,1.0525,0.42579,-1.4022,0.31453,0.091294,0.78462,1.1485,-0.047269,-0.85398 1.6359,-0.40885,-0.12566,2.2956,3.5603,-0.54464,-0.13218,0.7359,-0.42967,-2.6851,0.18294,-0.65088,1.6395,0.1468,-0.13274 1.7971,2.1149,-0.46524,0.69171,-1.385,-1.4277,0.013118,-0.43717,0.21362,0.78786,-1.8318,-0.82806,0.060412,1.6041,0.36175 0.25792,1.1018,0.041398,4.7468e-05,2.3536,-1.7662,0.010851,2.9491,-0.15137,1.0445,-0.24377,-0.59236,1.9944,0.1605,-0.94862 3.1005,0.47505,-0.48171,1.7177,-0.25341,-1.1248,-0.13743,-2.0069,-0.02037,-0.2507,-0.25168,-0.85286,0.49396,0.62483,0.15944 1.8117,0.68248,2.2267,1.6291,0.7155,-2.0121,-1.4949,-1.002,-0.17586,-0.37283,1.7649,0.49879,-0.0084513,0.62637,-0.42275 -3.1383,-0.82174,-1.4648,-1.2949,0.65266,0.094599,0.47432,0.19057,0.046121,-0.17385,0.68909,-0.34003,-1.7432,-0.22085,-1.594 3.2868,-0.83689,-1.9553,0.75775,-0.34659,0.21313,1.1241,-2.1316,0.3355,-0.95504,0.51955,-0.87436,1.0854,-0.54147,0.85909 -2.6889,-0.28497,1.0097,0.51471,-0.14082,-0.56724,0.010686,0.56226,0.80693,-0.34608,2.0144,-0.48819,-1.4344,-0.081189,-0.92485 -2.8904,-1.1617,-1.4262,-1.1379,1.5349,-1.2335,-0.59717,-0.4398,-1.0845,0.72063,1.2097,1.3232,-1.3497,1.1032,-1.3471 -2.2275,2.037,-1.7948,0.80056,-0.58315,0.62369,1.7603,2.3697,0.095158,0.37851,-1.3491,-0.70486,-1.0793,-0.13044,0.59573 -3.5259,-0.89952,-1.6695,-1.8151,1.0703,-0.57518,-0.23217,-0.6318,-1.0316,-0.19114,0.80269,0.91163,-1.0358,0.71741,-1.1583 -3.0293,-1.4154,-1.8017,-1.9162,2.1626,-0.95989,-0.49889,-0.35308,-1.6742,-0.67233,0.19553,1.7441,-1.0939,1.2996,-0.92556 -2.5123,-0.93061,-1.6938,-1.2089,1.3735,-1.584,-1.6751,-0.45307,-1.139,0.79921,0.47409,2.4196,-0.68389,1.2462,0.19153 -3.2862,-1.613,-0.22374,-1.3316,2.319,-1.9079,-0.35569,-1.0349,-0.86133,0.83212,0.61077,0.77633,-0.84985,0.94493,-0.1021 3.0504,-1.62,-1.6491,0.42713,-1.0341,1.7737,-0.44085,-1.6936,-0.81914,-1.8797,-0.11498,-1.5134,0.77356,-0.43242,0.66676 -0.66707,2.1191,-0.0052294,2.3089,-1.6999,-0.89727,0.36902,0.075459,0.4247,0.552,-0.87739,0.39734,0.55395,1.0415,0.82218 -1.761,-3.6577,-0.12056,-0.20195,1.2622,-1.1961,-2.389,-0.44701,-0.89297,0.80823,1.1287,1.5572,-1.3278,-0.030886,-0.56474 2.3486,-1.47,-1.615,-2.2557,-2.0826,-0.72469,1.0423,2.3796,-0.6665,-0.30596,-0.21976,1.0823,0.77009,-0.5217,-0.06211 -3.2411,-0.26148,-2.5322,-1.4578,1.2835,-0.35872,-0.81839,-1.034,-0.99954,-0.032565,0.26384,1.3979,-0.91061,0.11592,-1.0365 0.37818,-1.6275,1.2327,3.0192,-0.72168,0.36801,-1.4349,2.1799,0.69686,-1.4449,0.94926,0.057699,-0.4464,-0.54646,0.017211 -2.7711,-0.10129,-3.2586,-1.3412,1.4119,-0.044131,-0.96054,0.016585,-0.1472,-0.78911,-0.56122,1.3165,-1.3483,-0.42446,-0.34997 -3.3646,-1.4592,-1.4965,-1.4859,0.43059,0.45214,-0.66204,-0.046669,-0.14951,-0.27055,1.1964,0.21439,-1.6306,0.045445,-1.5173 -3.5514,-0.91073,-1.3049,-1.5147,0.35017,-0.5669,0.041712,-0.32022,-0.53526,-0.045451,1.4836,0.68359,-1.1053,0.72166,-1.7063 2.2224,-3.5389,-0.16576,-1.6187,2.708,2.9154,2.5284,0.73131,-1.8821,-0.99019,-0.67978,2.7619,2.7979,0.40746,0.32214 3.4949,-1.5303,-0.78305,0.46855,0.60248,-0.72325,1.9592,-1.24,-0.42787,-0.030039,0.47444,-0.88747,1.1226,0.088506,2.027 -2.3762,1.6366,-1.9898,0.069989,-0.88487,0.054165,0.84513,2.8731,0.1843,0.29074,-0.70041,-0.40865,-0.48626,0.054039,0.90623 -1.5475,-1.6289,-1.7302,0.32621,2.5715,-2.1287,-0.82867,0.11956,-0.16036,0.48699,-0.014357,2.3639,-0.6651,0.96216,0.39326 4.9063,-1.8735,-1.1632,-0.1217,0.18164,-1.3623,2.0161,-1.021,0.58087,-1.0427,0.39323,-0.71682,-0.361,-0.3096,0.43198 2.7203,-2.3467,2.2229,1.1128,-1.3535,2.8109,-0.51461,0.083961,-2.1288,-0.31618,0.07295,-1.2951,0.80474,-0.60051,1.7631 -1.888,1.3248,0.51834,0.042268,-2.6608,0.14426,0.86146,-1.0066,-0.97456,-0.14826,1.1252,1.2094,-0.79883,-0.1274,0.074156 2.5704,-1.2105,-0.6913,1.6819,-0.34507,0.38196,-0.55517,-1.8204,-0.57641,-1.931,1.3265,-1.3389,1.3026,0.17791,1.44 1.0278,-2.221,0.91529,1.3384,-1.5563,-0.45957,2.1369,-1.9437,-0.82399,-1.1038,-0.7966,-1.3492,-0.88858,-1.9201,0.43747 1.1044,0.46489,-0.062436,2.5165,-1.3912,-0.53747,-0.45831,-0.83606,0.51485,-0.56,0.23514,0.070507,1.2436,0.52182,0.7446 0.020126,-2.8985,-0.40332,-0.62509,-2.1503,-1.6775,1.2012,-1.3717,0.32188,0.28526,-1.1606,-1.1347,-2.1353,-1.3431,-0.94281 -0.82365,-1.0627,2.3607,0.83692,-0.12368,0.19648,-1.1636,3.3538,0.8626,-0.79967,1.3125,0.023375,-1.6075,-0.27255,0.13002 2.2956,-0.076551,-2.8966,0.95971,-0.7986,0.87984,0.69714,-0.61709,0.68731,-0.80924,-0.51791,-0.4963,0.35708,0.32108,-0.23532 -0.66707,-0.76608,0.97504,1.5737,-2.3607,-0.34872,-0.24531,0.71935,0.40823,-0.48694,1.7418,0.63264,0.35533,-0.58446,-0.22613 -0.74987,-1.0589,1.5803,1.201,-1.9203,0.2282,-1.2368,1.4904,0.41808,-0.68257,2.1073,0.29482,-0.50434,-0.39149,0.1077 3.1735,-0.20837,-1.8234,0.80467,-0.87724,0.86749,0.46929,-1.7613,-0.61562,-1.744,-0.26661,-0.9231,0.49377,-0.50679,-0.61417 0.14813,-1.8033,0.63022,0.31085,-2.9545,0.76152,0.068038,-0.73722,0.12013,0.93693,0.3165,-0.57774,0.61977,-1.5749,-0.30197 -0.28921,1.2295,-1.0577,2.9871,2.3331,-0.40131,-0.091737,2.4574,-0.27422,0.22984,-1.4685,-1.3026,-0.3138,0.024528,-0.38723 -1.1049,2.242,1.7668,1.4365,-0.72708,-1.4577,0.052581,-0.16597,-1.5946,1.1537,0.83052,0.48899,-0.88721,0.83163,-0.078653 4.4365,-0.87274,-2.1324,0.41867,-1.2541,0.60171,0.42442,1.5971,0.033203,1.1425,-0.97492,-0.93072,-0.3531,1.5309,-1.048 -1.4418,-1.0245,-2.7595,1.7555,0.25634,-2.4341,1.455,-0.56274,-1.2799,0.11201,-0.45256,-0.5378,0.32705,0.31242,-0.85267 -0.70087,-2.9616,1.5742,2.0823,-0.89435,-0.31017,0.19018,0.54247,1.0128,-0.39901,0.96155,-0.67381,-0.08836,-1.1586,-0.11764 3.3052,-2.5413,-2.4215,0.26682,-0.49115,1.6053,2.3869,-0.63413,-0.35733,-2.6073,0.36864,0.41183,0.74426,0.12729,1.0737 -1.0646,1.4931,-0.0060837,1.5563,0.76756,-1.7433,1.9893,3.2002,-0.93638,0.33643,-1.3108,-0.93477,-0.61151,0.82932,-0.12901 -2.7267,-3.2391,0.38766,-2.5546,0.43916,-0.19892,-2.8238,-0.3178,-1.2404,0.15779,-0.35397,1.0564,-0.11023,-0.69349,0.27592 -1.9549,0.0040084,-1.4042,1.3018,-1.2665,-1.0234,1.6055,-1.9915,-0.32716,0.89865,0.0060077,-0.49053,0.98394,0.38276,0.4054 1.8023,0.3865,0.48692,0.0090127,-1.3245,-1.4195,-1.0376,-0.41311,1.2105,-1.5017,-0.47781,-0.20066,1.7601,0.75344,-0.19814 1.6597,1.4922,0.12677,0.62186,-2.1328,-1.7707,0.48875,-0.19389,0.92276,-0.81192,-2.0336,0.0042888,-0.31523,0.85515,-0.11471 4.6816,-0.22152,2.2156,-0.93022,-1.6154,-0.4983,-0.67033,-0.12775,0.071661,-1.1082,-0.44652,-0.025548,-2.3153,-0.63835,-1.8132 2.5762,-0.32125,1.7852,1.4212,-2.2394,-0.35062,-0.10588,-0.8622,0.71026,-1.059,-0.95259,-0.16914,-1.0464,0.099579,1.303 1.3987,0.10781,-1.8778,0.56098,0.34169,0.53859,-1.9782,1.1483,1.5502,0.71619,3.256,-0.43723,0.17064,0.86989,-0.57328 -0.52672,-1.8064,1.8533,1.6096,-2.1074,-0.87513,0.087309,-0.67265,0.26505,0.38368,1.7516,-0.67757,-0.6849,-0.50412,-0.28458 -1.1975,-0.58837,2.2901,1.6903,1.5222,-0.10825,-0.53708,1.5935,-0.46682,-0.61056,1.5555,0.47808,-2.5037,0.51749,-0.36968 0.39448,2.7271,-2.3814,0.28389,-1.9609,0.008134,-0.92517,-0.31771,-0.35646,0.37641,-0.47075,-0.76494,0.44958,0.21178,-0.30084 1.487,-1.5429,-1.2711,1.1687,-2.186,2.4063,1.4567,-0.21482,-0.51802,-1.2211,-0.73639,-0.51806,-0.55401,-0.47401,0.23575 -2.1919,-1.2706,0.033529,1.9215,-1.0279,-1.3127,0.76492,-0.27227,0.414,-0.83242,1.9177,-0.81616,-1.1249,-0.28918,-0.41157 4.175,-0.43274,0.22637,0.51422,-0.40928,-2.5866,0.47605,-0.74555,-0.18239,-0.091664,-0.48899,-0.39761,0.62488,1.0967,-0.44818 -1.8287,-1.4309,-0.19578,1.4455,-1.5094,-1.3829,0.76325,-0.6258,0.45321,0.41184,1.8026,-0.17332,-0.32579,-0.13291,-0.62707 -1.4106,-2.7584,1.2356,-0.48676,-1.6235,-0.025557,-0.96301,-0.42085,-0.11397,0.98151,1.6818,-0.1543,0.42374,-0.6591,-1.317 0.43833,0.064522,-1.4299,1.9358,1.6386,1.7688,-1.746,1.2481,-0.51273,-1.8462,1.3036,-1.5241,-0.86121,0.99107,-0.35852 4.4188,-1.0962,-2.3348,0.10739,1.4673,-0.41067,3.2287,-0.62844,-0.53795,-1.2962,-0.42616,-0.62602,-0.24371,-0.13823,0.641 2.6663,-1.8565,-1.616,0.23091,-1.5136,1.3651,0.053261,1.0855,0.26273,2.93,0.28467,1.3477,1.3035,-0.034208,-0.10427 -1.8267,-0.25659,0.98512,1.2091,-1.4058,-1.2455,0.010157,1.3901,-0.29207,-2.3453,1.3143,0.73117,-0.52521,-0.694,-0.46823 -1.3255,2.0764,-0.75626,2.0268,0.53711,-1.2791,0.19876,1.8575,0.95725,0.0053676,-1.3188,-0.090413,-0.35578,0.35547,0.63756 4.9576,-3.4201,-1.3334,-0.047821,-0.054273,-0.01933,2.0683,-0.31241,-0.27633,-1.8503,0.6974,-0.65315,-0.32091,-0.68899,0.8234 -0.73693,-0.78447,-2.3601,1.7675,0.7538,-1.7963,0.013132,-0.80735,-1.271,0.74063,-0.56743,0.96885,1.3929,0.055016,0.80592 3.0831,-2.8503,-1.3775,0.372,-0.50739,-1.1217,2.0484,0.8347,0.95285,-0.16836,-0.58592,1.4237,-0.093707,0.44206,0.052186 3.6994,-2.668,0.096253,0.7856,0.74795,3.4263,-1.3208,-0.098674,-2.9138,0.69568,0.68904,-0.8132,2.1331,0.34945,0.42435 1.5938,-1.705,1.2264,1.3887,-1.9628,0.12624,2.2949,-1.554,-0.042492,-0.40914,-0.25836,-0.93089,-1.1327,-1.3101,-0.18992 2.5166,0.73463,-2.0929,-1.3025,0.19161,-2.0364,1.441,0.34608,2.433,0.48352,-0.012938,0.061168,0.25235,0.90618,0.43948 -0.97276,-3.5286,-1.6525,1.8488,0.28958,0.32276,-1.8529,-0.50901,-0.43469,-0.044148,-0.41024,-0.24363,-0.40111,-1.3519,-0.017858 2.2098,1.3454,2.0817,-0.95012,0.59843,-1.3597,-1.5687,0.10978,-1.2574,-0.81798,1.3803,0.75873,1.7212,-0.16745,-1.5481 2.6038,-0.94563,2.6184,-0.2255,0.49737,-0.059484,-2.2346,1.4379,-1.2095,0.61148,1.3028,0.61443,-0.07061,0.40939,-0.97886 1.8638,0.70553,3.1728,0.91062,0.58064,-2.9903,-0.02537,-0.92693,-2.1718,-0.65787,0.61518,-0.28877,-0.18855,0.83949,0.048571 3.2836,1.137,1.9385,-1.3956,-0.62151,-2.8589,-0.85199,-1.015,-1.0558,-1.0049,0.99085,-0.24904,0.089518,1.0315,0.48451 4.6413,-0.35861,0.87789,-1.2441,-0.2805,-3.1178,0.54588,0.38891,0.39813,-1.854,-0.3922,-0.2013,0.7549,0.69197,-1.1772 1.5687,-0.93964,-2.9169,0.39022,-1.4071,1.2611,1.345,-0.50441,0.55481,-0.9336,0.34367,0.040774,0.64707,0.41098,2.0827 -1.0259,0.89602,1.9069,2.4222,0.5091,-1.7134,-0.78025,0.044913,-0.85201,-1.4903,1.1839,0.8906,-1.718,0.21267,-0.48557 -1.0124,3.3232,0.32818,1.035,-0.6901,-1.8718,-0.65096,0.56185,-0.81476,0.10286,-0.48718,0.47702,0.56709,1.4543,-0.14814 1.0982,2.3205,1.6408,0.45648,-0.94414,-2.8626,-1.2462,-0.88277,-0.88568,-0.63758,0.41208,-0.080199,0.60939,1.3524,-0.078285 -0.65916,0.24226,2.9486,1.9462,-1.2657,-0.62792,-0.85952,0.059873,0.28753,0.056202,1.3989,1.1782,-1.2081,-0.65822,-0.18342 0.096824,1.9539,1.2012,0.54005,-0.57971,-1.907,1.1587,1.1449,-0.65075,1.1144,-2.4082,-1.1474,0.89665,0.29687,0.16219 1.8023,-2.6078,3.031,1.8486,-1.1894,1.0239,-0.029237,-0.92433,-2.5246,0.012949,-0.098147,0.2392,-0.85936,-0.68446,0.36585 1.0027,1.5393,0.16004,1.7054,1.4921,-1.2134,-1.3945,-1.7363,-0.81009,-0.14428,1.8068,-0.92604,0.020701,0.22151,-0.079743 1.7454,3.491,0.55871,-0.72034,0.085646,-1.9076,-1.0157,0.093756,-0.57013,0.90913,-0.83898,-1.6608,0.73032,0.91828,0.55519 3.694,-0.16731,-1.2693,-2.4136,0.0065157,-2.4532,1.6904,0.42706,1.2403,-0.014656,0.65922,-0.45304,0.60031,0.79762,1.1889 1.5868,1.9634,2.2621,1.3315,0.91668,-2.5768,0.86593,-0.81857,-1.3414,0.48233,-1.8719,-0.93141,-0.2066,0.43128,0.66613 -0.32875,3.9396,0.69092,-0.051292,0.092372,-1.1278,-1.7471,1.2007,-2.3998,0.25923,0.91331,-0.36516,-0.455,0.14016,-0.74972 -0.36801,1.4965,-1.5743,2.5259,1.9297,0.28674,0.70914,0.93551,-0.67406,-1.9456,-0.58569,-0.6924,-0.4283,0.86567,-0.062 0.61098,0.55194,2.7714,1.796,-0.95291,-1.8991,-1.404,-0.30661,-0.24599,-1.1184,1.2121,0.34356,-0.7126,1.0158,0.39323 -1.8983,3.087,1.1903,0.63393,-0.40992,-1.3148,0.42755,0.6103,-1.6944,0.23187,0.2548,0.37454,-0.43902,1.6058,-0.20242 -0.73625,-2.5111,0.74452,1.6915,2.3029,0.070818,1.5058,0.63351,-1.3074,-2.4644,0.47385,-0.39455,1.447,-0.6528,0.38664 2.8004,1.7721,-1.0246,-0.95367,-1.2796,-1.3239,-0.64279,-1.4466,1.0816,0.63426,-0.22028,-1.153,0.89954,0.11261,-0.078651 2.476,1.4156,-1.041,0.46263,0.76391,-1.9811,0.48778,-1.5206,0.46187,1.7699,-0.23198,-1.6334,0.7169,0.35207,1.4083 -3.3016,-1.4681,-0.64599,-1.5736,1.5423,0.82679,-1.1544,-1.324,-0.60884,-0.3551,0.86499,0.38894,-0.6921,0.29917,-0.51842 2.4729,1.5212,1.6352,0.47407,1.2637,-3.2062,-0.69402,-1.1376,-0.94204,-0.41772,0.62204,-0.7004,0.24227,1.4434,0.44255 -1.9393,0.94531,1.2898,0.42329,-1.1806,1.0382,-1.1852,0.53181,-0.62142,-0.16006,1.9837,0.72327,-1.0965,0.24607,-0.71583 -0.14609,-0.66134,-0.77014,1.6048,-0.87355,0.12247,-0.73137,1.491,1.1937,-1.0101,0.41066,0.80918,0.39213,-0.67018,-0.85494 -1.0832,1.6779,0.79128,0.41766,-3.0879,-0.55319,0.43146,-0.6359,-0.60581,-0.59248,0.53157,0.58902,0.29403,0.66145,1.0971 5.3522,-1.3792,-0.18412,-1.3095,-0.92757,0.5803,-0.56608,0.9753,0.067151,1.1145,-0.039745,-0.45443,0.23607,0.28075,-0.86629 0.36892,-0.26416,1.7375,2.2342,-2.2578,-0.87037,-0.15589,-0.20228,0.96614,-0.56859,0.63057,0.2281,0.82433,-0.49148,0.55079 1.1126,1.4833,1.5742,0.20048,-2.598,-1.6558,-0.80961,-0.86766,0.090762,-1.4686,-0.9321,0.69162,0.971,-0.52484,-0.12935 0.20097,1.5231,-2.4175,0.47959,0.55687,-0.20645,-1.4664,1.412,0.11976,0.37512,2.3908,-1.0107,-0.88564,0.35149,-1.0409 0.041767,-1.1713,2.3279,0.12163,-3.2152,0.51281,-0.85935,0.22878,0.017028,0.78487,0.77849,-0.28418,0.0094671,-0.91337,0.50248 1.5606,0.96881,-2.2776,1.0988,-1.2719,-0.21183,-0.44116,-1.6996,1.0236,-0.23645,0.45775,-1.3257,0.3669,0.75939,0.85321 -3.5672,0.64762,-1.6507,-0.22605,-1.0561,-0.7466,1.2276,0.58444,0.016101,0.31289,1.0867,-0.28451,0.73965,0.51828,-0.50772 1.916,-1.9142,0.34906,-1.3253,0.38525,-1.0556,-1.8121,0.84186,0.087486,0.48875,3.2633,1.1901,1.2732,-0.18919,-0.1405 1.1798,-0.22314,1.6858,1.0655,-2.9489,0.77826,-1.2226,0.50153,0.50502,-0.030383,0.67542,-0.041206,0.72717,-0.48066,0.90364 -1.5208,1.0277,-0.61241,0.34356,-2.5313,-1.0896,1.9086,-1.0993,-0.2192,1.0677,-0.77877,-0.056726,0.34448,0.44701,0.62024 1.7134,-2.4792,-1.4791,0.78525,0.4165,0.94156,-0.64202,3.0439,-0.26141,2.1979,2.3407,1.4719,1.6895,0.63351,-0.14159 -0.92992,-0.495,1.3002,-0.15631,-3.1568,1.1706,-0.004056,-0.94529,0.1208,0.0099232,0.81286,-0.48214,0.79929,-1.3454,0.39927 -0.27846,2.5202,-0.51118,0.86594,-1.293,-0.70087,-1.132,0.09612,-0.586,-0.54628,0.8415,0.31841,-0.24261,0.92473,-0.63546 0.85156,0.34889,1.096,0.49463,-0.081728,-2.2505,-2.4284,0.81481,0.75346,-0.99849,1.1222,1.0702,1.0387,0.16914,-1.3783 2.5751,0.44191,-0.6918,-2.3007,-0.72933,-0.80894,-0.90136,0.38584,-0.17354,-3.7125,0.72919,-0.27719,0.98772,0.57762,-0.6048 3.3536,-1.4173,-1.8052,-0.50246,0.28336,-1.9493,2.5285,1.0277,0.83865,0.79986,0.36935,0.88007,-1.1053,-0.70898,0.8384 2.202,-0.88435,-2.8019,-1.0377,-2.1184,0.53983,-0.12072,0.96596,2.1832,-0.23103,0.58814,0.14481,0.12114,-0.65092,0.088243 2.1483,1.4641,0.63552,-0.63797,-1.5757,-1.2156,-2.1891,-1.1505,0.034459,-1.4815,1.1591,-0.34608,1.2203,1.0588,0.41157 -0.6855,-0.63398,1.3868,0.42109,-1.7841,0.75939,1.1094,-0.21587,-1.0782,-1.1455,1.1372,-0.74673,1.0363,-1.4542,0.19174 -1.4453,0.58243,-0.28358,1.3731,-2.1942,-0.86207,-0.72883,1.3013,0.60291,-1.2093,1.3753,0.9248,-0.5913,0.53035,-0.012538 -2.2187,-0.0056947,-0.095031,1.8474,-1.39,0.18536,0.71506,0.058234,0.83329,-0.73024,1.9015,0.099411,-0.98197,0.0057186,0.044497 -2.3104,0.9515,-1.2056,-0.090819,-1.9836,-0.68525,1.8428,-1.2256,-0.58955,1.1547,-0.14594,-0.29448,0.96745,0.91289,0.42764 3.14,-1.1864,-0.34952,2.3028,-0.42911,0.57881,-1.4419,-1.2466,-0.6778,-0.78601,0.79358,-0.57373,0.60212,0.25227,0.41724 -2.2491,0.75595,-0.66265,1.5758,-1.1901,0.86442,0.70298,-0.24105,0.11255,-0.31092,1.8997,0.52189,-0.56981,0.19677,-0.69396 2.4966,-0.56785,1.2726,1.8436,-1.9772,0.34186,-1.8548,-0.69087,-0.4115,0.25761,-0.56807,-0.59059,-1.9502,0.15623,1.2501 -1.7038,1.2018,-0.14429,0.74942,-0.98422,-1.3749,0.23716,2.0745,0.76573,-1.1864,0.64948,-0.62553,-0.77326,-0.14123,1.3797 1.7168,1.6604,-0.25042,1.2125,-1.2948,-1.5948,1.2954,-0.65385,-0.15177,0.77377,-2.2724,-0.58514,-0.053105,0.50444,-0.016685 1.2871,0.98778,-0.26092,0.1479,-2.5261,-1.7546,0.62521,-0.57964,0.56332,-0.28372,-1.7106,-0.15345,0.011933,-0.043537,-0.48866 2.0016,0.68069,-2.932,-0.7527,-1.2048,0.37164,0.85391,0.63058,1.3057,0.7277,-0.41238,-0.19013,0.98621,-0.091885,-0.12741 0.34487,-1.1063,0.7171,1.9703,-1.188,-0.14856,1.7726,-2.1572,-2.876,-0.32525,-0.3414,0.3801,0.44389,-1.5672,0.72488 1.3824,-0.35976,-2.0378,-3.1866,-1.4833,-0.86148,1.5477,1.6875,-0.3763,-1.4862,0.89915,1.7732,0.7971,-0.20102,0.87065 0.35747,2.0048,-0.078109,-0.052332,-2.7117,-1.256,0.043493,-0.48788,-0.55669,-0.7275,-1.48,0.00832,0.721,0.59729,0.13592 2.6513,0.6731,-1.0216,0.013507,-0.60316,-1.4814,-0.55389,-2.063,-0.014593,-0.12073,1.7772,-1.94,-0.5072,0.94404,1.5852 0.78682,0.41538,-2.0019,1.4542,0.38556,-1.4444,-0.89653,-0.044575,1.3932,-1.0901,0.87539,-0.22302,-0.64761,0.93362,-0.93183 4.7565,-1.0594,-0.12053,-3.0952,0.75007,-3.1684,1.0759,2.167,-1.5429,-0.55188,1.3166,0.23566,-0.49348,-0.25629,0.27447 -0.21773,1.7592,-0.25427,2.964,0.57817,-0.62786,0.15343,0.033611,-1.1594,-0.14175,0.26724,0.84982,-0.88421,1.2868,-0.013033 -0.53122,0.45724,0.17692,1.9125,-1.7678,-0.98862,0.87616,-1.1474,-0.4929,1.4365,0.35942,1.2523,0.21298,0.34377,0.26138 0.87299,-0.39662,0.29631,2.3864,-1.5991,-0.099466,1.4093,-1.6812,-2.2298,-0.51566,-1.1375,0.095575,0.24495,-0.61558,0.93544 2.4617,-0.89523,0.54423,2.4079,-1.1703,2.8286,-0.94391,0.4899,-0.70113,1.1003,-0.49668,0.04674,0.71106,0.023894,0.30842 2.9464,-1.3321,-1.3277,0.83106,1.1415,-1.6246,1.3881,-1.6033,-0.66064,0.3787,0.43623,-0.83545,-0.10843,0.92329,2.787 2.0731,1.0718,0.31855,1.3827,-1.6167,-1.9254,0.30326,-1.272,-0.25452,0.17962,-1.6772,-0.61635,-0.21994,0.70198,0.21302 0.04535,0.4393,1.3563,0.08833,-3.0261,-0.4796,1.111,-0.57698,-0.50289,-0.19065,0.28919,0.82991,1.0033,-0.25305,0.13963 3.3937,0.88169,-0.66007,1.5061,0.012048,-1.7419,1.3688,-1.2976,-0.49269,-0.16039,-2.0483,-1.1561,0.47348,0.1007,-0.68185 0.51621,2.5512,-1.2718,0.15826,-1.8728,-1.2926,-0.93342,-0.70931,0.13565,-0.2761,-0.87477,-0.52788,1.0114,0.64836,-0.29142 2.9004,1.3298,-1.184,0.59463,-1.0395,-1.6453,-0.41742,-1.4541,0.97722,0.41729,-0.7029,-1.5831,-0.16391,0.3091,0.13215 -0.78773,2.3496,-1.1104,2.9115,1.0411,-0.24697,0.052955,0.6666,-0.90229,0.94826,-0.87799,0.65961,-0.10893,-0.39299,-0.23997 -1.1847,-0.45383,-0.44004,2.348,0.8279,-1.6191,2.1818,1.5164,0.013935,-0.24709,-0.30804,-0.39426,0.0058214,0.021234,-0.21776 2.4317,-4.58,-0.50966,0.94873,1.4369,1.9615,-0.72949,1.5785,-2.3482,-1.3434,2.3261,0.56141,2.4668,-0.91027,0.70552 -1.1322,1.7095,-1.308,-0.65745,-1.3101,-0.034765,0.79656,-0.094449,-2.1867,-0.1358,-1.1537,-0.12288,0.42642,0.5225,0.85708 -1.4825,0.36033,-0.22743,2.2825,0.56223,-1.03,1.4427,1.2359,0.71574,-0.9948,-0.11257,-0.23985,-2.1209,-0.76492,0.25521 -1.9731,3.0266,0.13146,0.24052,-1.0469,-0.46116,0.49682,1.7935,-1.3693,0.74088,-1.035,-0.42274,0.6178,0.28889,0.90357 -1.6843,0.96936,-1.0042,0.91104,-1.7779,-0.010857,0.5324,0.28043,0.15432,1.3566,1.4096,1.1133,-0.15334,0.35902,-0.1746 3.2431,-1.6238,2.8339,0.053384,-1.5051,-1.2325,-1.777,1.2677,-0.93082,-0.91782,-0.64488,0.20613,0.11745,-0.11735,-0.47172 -0.88611,0.40175,1.1843,0.20044,-3.157,-0.75566,0.044285,-0.26677,0.72791,-0.2906,0.66561,0.51536,0.70235,-0.52183,1.1419 0.0018949,-0.32467,1.3403,2.004,-2.0287,-1.3049,0.29066,-1.1622,0.54241,-0.21396,-0.072244,-0.26603,-0.50842,0.28498,1.3918 4.3601,-0.80497,-0.18873,-2.847,0.25818,-3.1937,1.2774,1.6725,0.29205,-1.9602,0.74742,0.86728,-0.073969,1.3009,-0.36885 1.8865,-0.10625,1.4418,0.25359,-2.8419,2.2659,-0.53179,1.8242,-0.4939,1.4299,-0.65575,0.1501,1.125,0.85363,0.041441 2.6593,-2.5021,2.7383,1.8587,-1.2787,-0.42352,-1.4845,-0.077298,-0.99942,0.13801,-0.29062,-0.056471,-0.38012,-0.89102,0.45547 1.9678,-0.56391,1.5492,2.8166,-1.4799,-1.1375,0.04814,-1.0438,0.57641,-1.6806,-0.95313,0.21834,0.090674,-0.50797,0.32738 -3.4548,-0.037496,-2.2935,-0.53194,-1.004,0.22309,0.86399,-0.98709,-0.75644,-0.75349,0.95759,0.15372,0.61377,-0.19819,-1.4111 0.73535,0.59295,0.89932,2.6866,-0.77547,-2.0079,-0.77932,-1.5192,-0.22272,-0.63706,0.63121,0.2095,-0.49316,0.96974,0.24431 -1.5389,-0.74677,3.0557,0.86917,-0.69925,-1.87,0.68568,-0.20502,-0.75324,0.30307,2.198,0.36697,-0.51927,0.79639,-0.35716 1.2825,1.7794,1.3687,-0.76461,-2.0762,0.72596,-1.4619,0.33684,-1.9804,-1.4801,1.1288,-0.12952,-1.7443,0.90199,-0.090337 -1.6514,0.86951,1.4753,0.70344,-1.8462,-1.4047,0.32941,0.055237,-0.335,-0.65164,1.5575,1.3915,-0.71892,1.4315,0.32848 2.056,1.1775,-0.49835,-2.1329,-2.009,-1.7116,-0.44306,-0.090966,0.24985,-1.3442,-0.34295,-1.2535,-0.43755,-0.65326,-0.066248 -1.3829,-1.2665,0.19781,0.43294,-2.4129,0.63497,0.031908,-1.0969,0.95019,0.74512,0.75164,-0.20086,0.2041,-1.1472,-0.22026 2.4584,2.0175,-2.6531,-2.3388,-0.62228,-1.3876,1.0219,0.052911,0.4593,-1.0078,0.23418,-1.4311,1.1195,-0.40229,0.82511 -3.64,0.50626,-1.6776,-0.62828,-1.2799,-0.83104,1.2421,-0.13163,-0.9381,-0.023029,1.0321,0.35676,0.91407,0.60483,-0.99519 -1.733,0.86121,0.85359,1.5738,-2.0424,-2.0946,0.54714,0.036413,0.25016,0.26986,0.45494,0.83637,0.22609,0.92599,0.88411 -0.9801,-0.049237,-0.1216,2.3925,-1.0833,-1.1701,2.0453,-2.0782,-0.75381,0.69274,-0.71316,-0.82232,-0.066968,0.31349,1.0256 -0.36516,-2.6516,0.6728,2.0734,-1.3752,-0.32288,0.13627,-1.9375,-0.40015,0.73198,-0.15381,-1.4498,-0.30931,-0.8421,0.25147 0.15283,0.30732,-1.0182,2.9762,-0.64735,-1.1987,1.1599,0.57794,-0.088607,0.39933,-0.95408,-0.21568,0.709,0.62158,0.22441 2.2632,1.5408,-2.4435,0.45544,0.023278,-0.84965,0.19998,-0.66646,0.58911,1.3785,-0.55632,-1.9121,-0.56778,-0.593,1.1448 -2.609,-1.6837,-0.59715,1.4981,0.6124,-0.59039,0.59143,-1.04,0.50266,0.077055,1.8781,-0.308,-1.6842,-0.55498,-1.372 3.0154,-0.037,0.65131,1.2361,0.84988,-2.4791,-0.80547,-2.1058,-0.18202,-0.50187,1.523,-0.33728,0.71194,0.79055,0.61414 -3.0018,-0.24402,0.1609,0.020025,-1.16,0.88509,0.25699,0.36847,0.97927,-1.2759,2.1907,-0.36054,-1.1068,-0.14168,-1.1831 -3.7658,-0.81395,-1.4351,-0.80087,-0.53141,-0.018776,-0.48991,-1.0251,-0.50729,-0.47755,1.5118,0.43115,-0.43553,-0.10103,-1.3125 -2.4514,1.2237,-0.18773,0.77172,0.73827,-1.5278,2.1383,2.6827,-0.24533,0.029494,-0.89607,-1.211,-0.51817,0.45709,-0.14836 -2.8851,0.88684,-1.0014,0.11849,-0.67463,0.45474,1.8616,0.80973,0.89276,-0.80283,0.26351,-0.86449,-1.5896,-0.56202,-0.61748 0.54976,1.8658,-2.9337,0.26338,-1.799,0.85008,-0.49614,0.72667,0.65988,-0.17006,-0.80837,-0.25753,0.78695,0.32529,-0.22926 -1.0559,-0.5472,1.9769,0.463,-1.8352,0.7777,-0.88772,0.19164,0.91367,-0.25905,2.3078,0.085356,-0.0080365,-0.0064085,0.34888 -1.2282,-0.0091262,-0.15137,2.1278,0.11403,0.72015,1.2976,0.36452,0.048843,-1.8293,0.48024,-0.16333,-1.9127,-0.86019,-0.049389 0.24349,0.41925,0.46942,1.1899,0.14384,0.032558,-1.5176,2.2229,0.91728,-2.014,0.98429,0.47538,-2.5125,0.36352,-0.2172 0.093315,2.3171,-0.62778,1.1534,-1.5841,0.18138,-0.49389,0.49353,0.61032,0.56426,-1.4952,0.62584,1.7692,0.14349,0.2347 1.2017,1.6929,-1.8165,1.6397,-0.84298,-0.42594,-0.83607,-1.6672,0.16405,-0.068608,0.38092,-1.2807,0.31605,0.99905,0.45111 -1.533,-1.4459,1.5525,2.3249,-0.91904,0.28249,0.14145,-0.43401,0.50645,-0.5597,2.3523,-0.096896,-1.3127,-0.30984,-0.077073 -2.2566,-1.1646,-0.046053,1.4088,0.20219,0.26934,0.72945,-0.075972,0.68151,-1.0992,2.0091,-0.97861,-2.0736,-0.15306,-0.61725 0.34539,-0.15834,1.5338,1.2162,-2.7621,0.17212,0.60538,-1.112,0.091368,-0.23434,0.37187,0.084406,0.57949,-1.1771,0.42068 -2.9742,-0.5047,-2.3157,-0.18142,-1.4899,-0.34355,0.32958,-0.33737,-0.18943,-0.8707,1.2114,-0.43265,0.4027,-0.38461,-0.60799 3.0766,-1.4187,2.9861,-0.70886,-2.3448,-0.44953,-0.10246,1.7524,-0.36015,0.19428,-1.0332,-1.3151,-1.4463,0.8784,0.45726 0.084171,1.5916,-1.4442,1.1738,-1.4214,0.87775,0.67579,0.44839,0.56141,1.5138,-1.8514,-0.099009,-0.58986,-0.15551,0.99507 0.43986,-1.7648,1.3998,0.47952,-2.4081,2.1765,-0.12186,-0.50243,0.24707,0.66191,0.069474,-0.9388,0.54558,-1.3271,-0.19124 0.10323,0.72788,2.0347,0.32517,-3.0053,-0.76044,-0.78134,0.19505,-0.54401,0.31328,0.24029,0.42986,-0.98848,0.19478,1.3063 -0.16328,-0.98382,1.9292,2.7836,-1.189,1.2375,-0.78878,0.29838,0.60909,0.243,1.1255,0.65168,-0.85637,-0.6624,0.66074 -0.96309,-0.67797,-0.26327,1.873,-0.06355,1.2096,-0.18056,1.4661,1.2953,-0.24322,1.8008,-1.0787,-1.857,0.6813,-0.37464 -0.081945,2.4167,-0.786,0.10702,-1.7506,-0.11118,-1.2809,0.72061,-0.93862,1.7472,-0.17003,-0.18857,0.56966,0.5991,0.36823 -2.4317,1.417,1.3592,1.1825,1.8935,-1.6334,1.4643,1.4851,-1.588,-1.1912,0.93531,0.62702,-1.0502,0.027351,-0.22623 1.9975,-0.64054,-2.257,-3.7002,-0.70189,-1.6946,1.9868,2.5828,-0.66526,-0.80776,1.5769,2.1292,0.94707,-0.61473,1.0014 2.074,-0.92283,-1.0703,-1.9667,-0.76005,1.545,-1.9755,1.6725,-0.35171,1.606,2.1471,0.89103,2.3121,0.47752,-0.25198 1.7078,-0.41631,0.5975,0.72047,-2.0107,1.2975,-2.2911,1.9119,-0.6874,0.63564,0.203,-0.092012,1.7359,0.80555,0.53102 2.4601,-0.94008,1.1265,2.1728,-1.3417,1.1417,-1.5736,-0.59248,-0.36182,-0.3005,0.32411,-0.10444,0.54743,-0.080607,0.45667 -3.1544,0.61163,-2.0487,-0.25149,-1.0186,0.073282,1.0984,-0.11192,-0.3153,0.96981,1.1379,0.60642,0.00024946,0.32058,-1.5756 -1.9628,2.7905,-1.2786,0.5797,-0.49461,0.56872,-0.11677,2.8591,-1.2319,0.56489,-0.17093,0.75775,-1.1142,0.097627,-0.87408 0.20446,-0.80776,0.26777,2.5068,-1.3744,0.73469,-1.394,1.3289,0.79498,-0.70321,1.297,0.10339,-0.22105,-0.47547,0.34573 0.75776,-0.67295,-2.1298,2.1791,2.0626,0.42571,-1.0609,0.75598,0.6674,-1.067,1.5884,-1.8369,-1.3812,-0.17308,0.13488 1.4211,-0.33099,-0.40454,1.9247,-2.1748,0.67561,-0.91691,-0.61583,0.81653,-0.66291,-0.25061,-0.00589,1.1699,-0.6442,0.44552 2.0194,1.5173,-0.83442,1.4222,-1.011,-1.1309,-0.40598,-1.5188,-0.62114,0.065446,-0.36865,-1.8815,-1.4102,0.26718,0.76991 3.1187,-1.3753,-2.2389,0.27803,-1.2169,0.44917,-0.81295,0.51195,2.2469,-1.4763,0.45357,-0.11854,-0.034919,-0.085937,-1.6225 -0.72308,3.7663,0.61759,-0.2016,-1.4234,-0.87286,-0.33675,0.42256,-2.2168,-0.38081,-0.49502,-0.35871,0.34234,0.73363,0.73984 0.82461,1.4276,2.5989,1.1272,-1.3632,-2.4933,0.49023,-0.40142,-1.3621,0.47938,0.040343,0.089272,0.11246,1.3107,0.62855 -2.4644,1.1378,-0.64554,-1.0542,-0.93912,0.035743,1.7418,-0.23603,-2.8581,0.41312,-0.22752,-0.56249,-0.48827,0.092441,0.91483 -0.82077,3.5029,2.209,-0.90016,-0.26706,-0.85299,0.064908,-0.31559,-2.4109,-0.70204,-0.68444,-0.35284,-0.31151,0.87296,0.56281 -0.82423,2.4668,2.0587,0.6972,-1.3858,-1.7379,-0.37846,-0.202,-1.1772,-0.31831,0.84565,0.75234,0.072674,0.82375,0.078674 1.8506,-1.4706,-0.082801,1.2073,0.21457,4.0733,-1.3622,0.95478,-1.9343,0.06947,0.11371,0.47071,2.6557,0.60662,-0.347 3.1944,-2.2037,-3.122,0.46333,0.03286,0.86463,2.5493,-0.18323,0.73642,-2.2544,1.2783,0.67882,0.050624,0.53695,0.45789 -1.6511,2.8471,0.89862,0.37755,-1.4,-0.67728,0.070992,0.35636,-1.4343,-0.83887,0.985,0.96426,0.34004,1.4222,0.055997 -3.1323,1.4158,-0.25862,0.25436,-0.12456,-0.44827,1.6348,1.2721,-0.75028,1.3201,0.44888,-0.10286,-0.6053,0.95332,-0.67353 2.7583,-2.3612,1.7144,1.4128,0.22047,-0.016012,-1.8876,0.55307,-2.7823,-0.69554,2.0391,-0.0010659,0.219,0.91323,0.39209 0.147,0.00068322,0.63168,2.8921,0.40995,-0.50969,-1.1187,0.77284,0.85185,-1.3968,1.6717,0.39312,-1.3362,0.21825,-0.50603 -1.648,-0.59335,0.69198,-1.7636,-0.73347,-2.4434,1.3752,-2.0126,-1.1593,1.3539,-0.99089,-0.8489,0.86575,1.1899,0.3218 0.81546,1.0307,1.7101,-0.36252,-3.1609,-0.41811,0.29897,0.051626,0.11965,-0.39529,-0.68942,0.66284,0.10117,-0.63069,0.89082 2.8404,1.1578,-0.45928,1.0962,0.29746,-2.0192,-0.28118,-1.4416,0.3442,1.1133,0.39533,-1.4411,1.0137,0.35889,0.20886 0.32215,-1.0396,2.5362,2.6613,-0.1512,0.93543,-1.3328,0.10213,-0.51255,-0.77436,2.2523,0.31372,-1.5004,0.5365,0.52381 -3.1442,0.51791,0.027805,0.8249,1.2224,-1.685,1.894,1.3994,-1.068,1.0324,0.29886,-0.67622,-0.84488,0.96127,-0.077711 -1.9907,-2.014,1.7961,1.6082,1.0708,-0.48217,0.24088,0.40868,-1.118,-1.332,2.0759,0.091759,-2.7176,-0.14436,-0.52631 -0.54875,1.5421,-1.7458,1.1368,-2.6322,0.7397,-0.61534,-0.020687,0.6286,-0.36125,0.49878,1.1233,0.36057,0.17983,-0.0071353 -0.10229,2.2095,-0.88655,1.1134,-0.63037,-0.51352,-0.35006,0.27751,-0.72036,1.0794,-1.4875,-0.72153,-1.0223,-0.15336,1.0595 3.0555,0.52687,2.3678,0.28951,-0.74759,-2.3698,-1.136,-0.88387,-0.62289,-0.82231,1.028,0.077779,-0.076171,1.4604,0.39117 -2.2334,0.25361,-2.5556,0.41311,0.43565,0.57386,0.39254,0.40835,-0.37804,1.5835,0.67116,-0.49758,-0.5547,0.7145,-1.4142 -1.0004,-2.9984,3.289,-0.46892,-1.1348,1.0025,-1.5139,1.1474,-0.61965,1.6376,1.3522,-0.76919,0.033647,0.13524,-1.2401 0.8119,1.4914,-1.2094,0.7422,1.8002,-1.4366,-0.96477,0.51925,1.9878,0.15215,0.32719,-1.1664,1.3005,0.28645,-0.41112 -2.2343,-2.8064,-0.74847,0.37494,1.3847,-1.7163,-2.3046,-1.4525,-0.15408,0.58326,0.27152,1.3193,-1.4371,-0.76047,-0.28424 3.5624,-1.4582,0.34469,0.62638,1.1115,-0.095262,-0.78567,0.04666,0.015265,1.1359,2.1914,1.1114,1.603,-0.30339,-1.2754 -1.9704,0.30497,-1.0131,0.93015,0.68935,-0.9254,2.413,2.5344,-0.085122,1.2581,-0.45178,-1.7014,-0.7999,0.44395,0.048402 -2.0071,-1.1573,-1.29,0.56599,-0.53471,-1.456,1.0301,0.3815,1.4067,0.29578,0.35669,-0.75961,0.24741,0.39097,-0.72011 -1.3406,-2.108,-2.1027,1.1485,1.3871,-1.6988,1.7928,-0.12675,-0.24828,-0.63925,-0.85664,-0.8228,0.29217,0.61299,-0.85365 1.3982,0.5363,-0.514,0.96344,-0.15028,0.2409,-1.9455,-1.3115,0.48353,0.087426,3.1418,-0.80026,0.16601,-0.20729,0.57084 -2.1748,-0.83716,-2.707,0.56448,0.41053,-1.7404,0.11492,0.27822,0.38286,1.0082,-0.80447,-0.68319,-0.40309,1.0998,-0.49428 2.4362,0.5936,-0.8889,-0.37224,0.66717,-2.4629,-0.77739,-1.4967,-0.39353,0.40487,1.969,0.45776,1.0431,-0.19297,0.78412 -0.58925,0.47434,1.1099,-0.91824,-3.681,-0.6569,0.60244,-0.25447,-0.45151,-1.9057,-0.4792,-0.010431,-0.77238,-0.72751,0.72763 -0.51254,0.0021023,2.3752,1.229,-2.4191,0.23624,-1.6277,0.33815,0.0048445,-0.059606,1.5691,0.86805,-1.1794,0.49121,0.62168 -2.0588,-1.2358,-0.41032,1.7598,-0.4288,-1.7305,1.5277,-0.73592,0.70309,0.52266,0.69676,-0.95207,0.73667,-0.064227,-0.38325 0.9591,0.077623,-1.4614,1.5132,3.1189,-0.094941,0.24387,1.2478,-1.3966,-0.062784,-0.070808,-1.5381,2.2239,-0.394,0.16665 -1.1558,-0.076942,1.2166,-0.55585,-2.472,0.095687,0.46364,-1.126,0.047505,-0.45863,1.5057,-0.046136,1.2279,0.29751,-0.24495 0.065371,2.3988,-2.4848,0.30337,0.89116,-0.35549,-1.4294,1.8467,1.1239,0.072766,0.23743,-1.1716,-0.5964,-0.19629,-1.5734 2.4049,-2.9726,-2.0457,-2.3223,-2.1064,-0.41033,0.39672,3.3774,0.37444,0.041294,0.94993,2.2079,-0.062365,-0.79295,-0.19707 2.3774,-0.77237,1.5032,0.58796,-2.2016,-1.4032,-0.73348,-0.38027,1.1196,-1.0683,-1.4794,0.5081,-0.51307,-0.36661,0.25958 0.64742,1.4754,-1.2713,1.9478,-1.1449,-0.90225,-1.0472,-1.1176,0.7719,0.31377,-0.13252,-0.5212,0.65683,1.0229,0.15739 2.1489,-0.28595,-2.107,-2.5443,-1.8593,-2.0391,1.0104,0.54062,1.2866,-0.41202,1.3682,0.77051,0.018969,-0.13453,1.3826 -3.1606,0.78956,-0.20732,-0.043577,-1.7309,0.66244,0.55658,0.69078,-0.54896,-0.95177,1.8202,1.2412,-1.019,-0.95527,-0.88036 2.4509,-0.048569,-2.1172,-3.9847,-0.76225,-1.7801,1.5244,1.0562,-0.55876,-1.6185,1.8079,0.25233,0.61488,-0.53303,1.7031 0.26047,3.8438,-1.1001,-0.57155,-1.7782,-0.76031,-0.9781,0.43053,-1.6835,-0.12873,-1.2766,-0.88605,0.37822,0.3357,0.030708 3.252,0.19654,-1.8839,-2.15,-0.45063,-2.9498,1.8248,0.29356,1.0956,0.20688,0.45139,-0.27241,0.07542,0.5578,0.85683 2.5262,0.45542,-0.75887,0.69197,1.6297,-0.75086,0.29665,-0.17171,1.5833,-1.2952,-0.60504,-0.067155,0.96375,-0.33799,-1.4016 2.5562,0.25778,-1.8873,-0.27823,-1.1183,-0.94372,0.77992,-0.46054,0.97045,1.9117,-0.12661,-0.76224,-0.48515,0.68279,1.2075 1.7037,1.1593,-1.73,-2.1622,-1.7028,-2.0893,-0.60094,-0.47863,0.42277,-0.50503,1.1253,-1.1746,0.24192,0.78788,0.9898 -0.39933,-0.66621,1.9763,2.6205,-0.01183,0.1749,-0.62473,0.2751,0.17792,-0.15267,2.1261,0.70434,-1.5509,0.23898,0.3861 1.4489,1.8538,-1.7148,-1.7187,-1.3347,-2.1835,-0.72846,-0.60961,-0.14828,0.14317,1.0116,-1.2499,0.45124,0.78764,0.85967 -3.0096,1.5392,-1.1375,0.30332,-1.2448,0.37487,1.2133,1.0044,0.26223,0.89498,1.1636,0.39002,0.019906,0.076295,-0.62812 1.823,1.6203,-1.7266,-1.6913,-1.3425,-2.357,-0.66295,0.19538,0.70359,-0.65348,-0.064486,-1.076,0.50178,-0.042262,-0.73991 3.166,-0.24903,-1.8282,-2.1464,-0.59509,-2.5846,1.3076,0.49116,1.6334,-0.41436,0.99839,0.24364,0.44297,0.0723,0.10304 2.2192,1.3992,0.43711,-0.65788,-1.8455,-2.4378,-0.34322,-0.54384,-0.13639,-2.3617,-0.997,-0.97871,0.64687,0.18295,-0.70085 0.35244,2.0655,-1.5766,2.0909,-1.2456,-0.40254,-0.69079,-0.76719,0.27472,0.50248,-0.66137,-0.47726,0.46596,1.0925,0.11754 3.5624,-3.7004,-1.3993,0.041722,-1.5478,0.075,1.2608,2.5286,0.09219,1.6625,-1.3038,1.4298,0.32619,0.15795,-0.25524 4.0803,-3.3387,-1.8095,0.69356,-1.2383,0.3425,1.9006,2.138,-1.0233,2.0627,-1.5948,0.57415,0.42871,0.067693,-0.11753 4.3148,0.89113,-0.39629,-2.8859,-0.9219,-2.0785,0.07208,-0.49245,1.3839,-1.9688,0.086374,-0.68408,0.090385,0.71588,-0.39555 3.6411,-1.303,-0.52526,0.61065,-0.14766,-1.4933,-0.23325,-1.7415,0.38687,0.29169,1.7648,-1.1304,0.56208,0.58696,1.6455 -1.7116,1.2424,-0.7689,1.3936,-2.231,-0.60512,0.39007,0.79215,0.30684,-1.1908,0.95778,0.52471,0.23284,0.36146,0.3963 -1.8434,0.61942,0.47231,0.70398,-2.1288,-0.29107,0.59867,-0.014748,-0.15608,1.3782,1.5082,0.42309,-0.47923,0.22696,0.32017 3.9644,-1.083,-0.92836,-1.0251,-0.41552,-2.2485,1.2725,-0.74999,1.6643,0.16297,0.92894,-0.081521,0.84449,0.31412,1.212 -0.68083,1.4461,-0.82487,2.26,-0.44743,0.065489,-0.15579,1.207,-0.09586,1.7811,-0.976,-0.25777,-0.38577,0.47319,0.80541 1.7654,0.87861,-1.7024,-0.013376,-0.68273,-0.85539,-0.35192,0.18137,1.6044,0.94367,-0.8557,-0.91529,0.61079,-0.29401,0.065752 4.0115,0.40742,1.2052,0.83009,-0.50022,-1.9894,0.30996,-1.6227,-0.1841,-1.0009,-1.1121,-0.86021,-1.3565,1.1829,0.37067 0.13648,2.1637,-0.95982,1.4996,-1.0727,0.18107,-0.87865,0.68523,0.34271,1.6422,-1.1874,-0.26019,-0.12846,0.76695,0.044711 3.1871,-0.20183,-0.95736,-1.8299,-1.3762,-2.3218,0.33599,-0.75538,1.6382,0.25431,1.1542,-0.49321,0.057764,0.60581,1.8396 4.1552,-5.0761,-2.0707,1.0848,-0.30615,0.75862,2.4891,2.4424,-0.8409,-0.23534,-0.54873,1.9903,-0.0038329,0.4846,-0.88939 -2.4177,1.7912,-0.55866,0.65022,-1.8555,-0.54085,1.2034,0.66564,-0.41189,0.83407,0.75166,0.66383,0.81899,0.68602,0.25674 3.6151,-3.3407,-2.5155,0.75257,-0.78272,2.3638,1.6175,0.64206,-1.1108,-0.29168,-0.65198,-0.32626,0.26396,-0.55265,1.1805 3.8088,-0.14811,0.7539,-0.78648,-1.2536,-2.3889,-0.77508,0.21088,1.4701,-1.9404,-0.75847,-0.35642,-1.4678,0.34442,-0.72291 1.0118,2.5278,-0.21453,1.5648,-0.31516,-1.7231,-0.91583,-0.18257,-0.40106,1.4356,-0.8543,-0.97435,0.48136,1.4628,0.10794 2.4035,-0.5894,-1.9336,-2.6205,-2.4189,1.296,0.9759,1.6564,-2.2094,0.48342,-0.30042,0.99144,1.4987,-0.15552,0.42348 0.39644,2.5723,-0.60278,1.4027,-0.94702,-0.88292,-1.208,0.28851,0.43797,1.1658,-1.0137,-0.49329,0.55081,1.1648,-0.073347 -0.44527,0.98262,-0.70238,3.2,-0.16687,0.44568,0.083894,-0.48607,0.49202,-1.1273,0.70767,0.85235,-0.33365,0.25936,0.26926 4.4614,-1.649,0.353,-0.88647,-0.58973,0.60904,-1.9847,0.83987,-0.13736,1.6984,1.0938,0.27471,1.8917,0.31862,-0.82236 0.61691,-2.7579,0.5707,0.74189,-2.3859,1.3445,0.7025,0.31966,0.99112,0.8555,-0.96968,-0.65495,-0.34083,-1.3275,-1.033 1.5504,-2.8503,-0.080897,0.6156,-1.816,2.3365,1.1556,0.51384,0.48038,0.91465,-1.1329,-1.4976,-1.0303,-0.34642,-1.1501 1.8905,-1.5503,-0.68688,0.62033,0.64627,-0.16006,-2.2039,3.0976,0.33948,1.7099,0.88714,-0.080973,1.7646,0.55025,-1.1587 2.4559,1.3021,-1.2697,1.5405,1.7106,-0.84167,0.086034,-1.0401,-0.42839,1.1814,-0.40499,-1.7975,0.93896,-0.081636,1.1845 -1.6979,0.3873,-0.71123,2.2984,-1.3728,-0.022689,0.38437,0.53697,1.1994,-0.49313,0.87014,0.71235,-1.0127,-0.34592,0.045985 0.4044,-2.9312,-1.517,0.34662,-2.061,0.85268,0.093746,-0.22366,0.93264,0.43662,-1.4673,-0.015873,-0.75234,-1.4351,-1.4532 2.1858,2.7787,-1.5388,-1.455,0.038289,-2.0966,-0.27724,0.58122,0.74134,0.7855,-0.38789,-1.7361,0.77572,0.10698,0.35781 1.2196,-1.6845,2.2442,0.83369,-3.0626,1.1015,0.1388,0.57576,1.0259,0.54414,-1.1023,-0.39609,-0.65705,-1.3939,-0.12769 1.7849,-0.063535,0.11916,2.2076,-0.5954,0.72486,1.465,-1.2307,-0.67996,0.36507,-0.38415,1.0264,-0.25308,-1.1038,-0.86373 1.2233,-0.76007,0.33978,2.4708,1.5667,0.11948,-2.0728,0.79459,1.1521,-1.7962,1.1128,-0.65951,-0.48892,-0.42782,-1.1577 2.5077,-2.4602,1.1462,0.83718,-2.2337,2.3461,1.2732,1.9549,0.33797,0.9063,-1.446,-0.97291,-1.0913,0.14575,-1.0839 2.772,1.863,-0.22663,0.79958,0.56221,-1.1308,1.1621,-1.9561,-2.2595,1.2281,-1.0555,-1.049,-0.15468,0.3427,0.65879 0.37712,-2.8968,-1.803,0.93919,-1.6107,1.1208,0.37291,-0.91967,0.14802,0.38512,-1.662,0.0033878,-0.64145,-1.8223,-1.3942 2.4771,-1.5716,-1.8156,1.9278,-0.71388,2.6068,-0.17619,0.63079,-0.29414,0.67044,-0.7998,-0.64458,1.9044,0.16322,-0.043832 3.7329,-1.8326,-1.2557,1.2621,-1.1974,2.7273,0.4437,1.6857,-0.59511,-0.02265,-1.3734,-0.79766,-0.69,0.8051,-0.66326 3.1632,-1.3513,-0.3552,-1.7521,-0.80446,-1.3362,0.31264,-0.31304,-1.2958,-0.89817,2.4746,0.8624,2.4901,0.49319,1.4721 1.4384,-0.50479,-2.0251,1.3333,2.8247,-1.0473,1.0377,1.2115,0.028147,-1.2052,0.92865,-1.1571,1.549,-0.087573,0.84419 -1.6314,0.11161,-1.0788,2.1899,2.0048,-0.9185,3.1817,1.0939,-1.2658,-0.98979,-0.70779,-1.5295,-0.12639,0.26928,0.053967 2.5516,-0.94369,-2.5296,-0.80551,-1.3312,-0.48058,1.354,0.7613,2.3401,-0.41318,0.74859,0.71835,0.67213,0.83428,0.1805 2.9378,0.32558,-0.33223,0.35653,-1.8914,-1.6175,0.80397,0.88946,1.0802,-2.5013,-0.74805,0.63711,-0.59021,1.2504,-1.9748 1.6519,1.3508,-1.8541,0.8668,-1.4829,-0.8356,-0.82061,-1.6885,1.0729,-0.23758,0.20553,-1.3458,0.10437,0.61909,0.43805 -1.1081,-0.76997,-3.0749,1.4813,-0.28001,-1.31,-0.32083,-0.29882,-0.57265,0.74071,-0.34035,0.74453,0.90931,0.72607,0.26564 2.8162,-0.2427,-1.3313,-1.4554,-1.9678,-0.25629,-0.83453,-0.95277,1.301,0.61409,1.4775,-0.056442,0.67952,-0.15678,1.2368 -1.1959,-0.52098,-2.7614,1.7775,-0.039516,-0.29564,1.2262,-0.70551,-1.0772,0.33644,-0.28339,-0.58339,1.9016,0.55559,-0.12356 4.1507,0.64333,-0.76184,0.67547,0.082931,-1.3886,0.58008,0.33873,-0.1082,0.5833,-1.7294,-0.96841,0.43608,0.64508,-1.5736 2.4041,-0.64465,-0.57206,1.1938,0.25702,-0.70942,-1.8424,-0.81523,0.77928,0.5312,3.215,-0.63898,0.13816,0.34125,0.19287 -1.2039,-1.2447,-2.4267,1.7855,-0.32226,-1.7443,1.1308,-0.66049,-0.61731,0.51942,-0.10316,-0.20126,1.0936,0.58602,-0.6966 2.8961,0.50506,-2.6529,-0.46078,-1.1346,-0.30371,0.60717,0.33778,1.4137,-0.060264,-0.27911,-0.61629,0.89868,0.42176,-1.2067 -0.22756,-3.2221,2.9247,2.7078,0.73261,0.034703,0.052458,0.76197,-1.911,-1.2101,2.6783,0.20664,-1.2481,0.054529,-0.51598 -1.6669,1.4844,-1.1164,1.7578,-1.4322,-0.1196,0.74095,0.85521,0.16059,1.7041,0.51198,0.59554,-0.43694,0.59951,0.20881 0.99402,-0.75474,2.2058,2.5227,-0.27198,-2.9341,1.0975,-0.58903,-1.0517,-0.86371,0.21114,0.022298,0.87803,0.67242,0.12465 4.7946,-1.4536,-0.74286,-0.55025,-0.37959,-1.2625,1.0367,-0.13463,0.76906,-0.7234,-0.20213,0.38885,0.18126,0.98781,-1.3372 -0.47194,-0.070166,0.63065,2.0833,2.097,-1.7773,1.7352,1.3546,-1.5199,-2.4469,0.60692,-0.12099,-1.4692,0.66912,-0.53459 3.9697,-0.19327,-1.7695,-1.4698,-0.26438,-1.2602,1.639,-0.0079337,0.76521,0.53285,0.40437,0.19675,1.6647,-0.1897,-0.17613 -1.4766,2.3374,0.73623,1.7618,0.30016,-1.6719,0.61419,2.0477,-0.67022,0.41339,-0.54734,-0.27601,-0.32543,1.6538,0.015489 1.8928,0.69368,2.2206,1.4982,0.47926,-2.9513,0.21886,-0.40922,-1.3129,-0.63041,0.57491,-0.15775,0.52223,1.5896,0.41248 2.6558,0.30296,1.4747,2.2485,0.6741,-2.8874,0.069732,-1.0175,-1.9602,-0.28622,1.1031,0.027571,0.67277,1.3414,0.18507 1.7645,2.0411,1.8465,0.46033,-1.6436,-0.61593,-1.6588,-1.6391,-0.21462,-0.61306,0.23031,0.50564,-0.46459,0.43268,0.14262 -0.83057,-0.11736,-0.88332,1.5809,-0.34335,0.057272,0.44046,-1.4564,-0.73662,2.1575,1.6806,0.31361,0.018369,-0.20006,-0.38406 0.37319,-0.42127,-0.97039,3.0827,-0.87447,0.45346,-0.81201,-0.83214,-0.3892,-2.5187,0.6595,-0.3402,0.93512,-0.26915,0.51437 -0.85631,2.4168,0.53785,0.98762,-1.5528,-0.81486,-0.3464,0.35324,-0.75892,-0.50764,0.32966,1.3124,1.2077,0.14442,0.067392 3.3702,-1.0752,-1.5995,0.12239,-1.0669,0.00023734,-0.41091,-0.78496,1.15,1.1279,1.4757,-0.76588,0.32984,0.16788,1.7832 3.4207,-0.25453,-0.22135,1.6504,-0.95503,-0.92575,-0.43174,-1.6832,0.39173,-0.812,-0.35615,-0.43526,0.37712,0.14076,-0.70041 -2.6515,-1.0651,-0.75465,0.16078,-1.3358,-1.1751,0.025585,-0.89354,0.6365,0.74797,1.2417,0.22343,-0.11045,0.015781,-0.78806 -0.76186,0.91839,1.2426,0.27793,-1.9488,-2.1156,1.2562,-0.45812,0.27673,0.21272,-0.079394,-0.6744,1.424,0.90925,0.80627 -2.6376,0.94324,-0.15643,0.11186,0.50993,-1.1845,0.84315,2.7247,-1.2392,1.4184,-0.16089,-0.55866,0.10384,0.84757,0.278 0.11632,-0.091414,1.848,2.2516,1.4508,-2.1337,-0.64958,0.59028,-0.75424,-2.2312,1.8525,0.51684,-0.88096,0.88336,-0.84793 -2.4498,0.39758,-1.5106,-0.512,-0.95335,0.73303,0.3073,1.3976,0.21847,1.607,0.18611,-0.5933,-0.35485,0.18199,0.49239 0.77933,0.32723,2.9967,0.70125,-1.8984,-2.4453,0.0095464,-0.70024,-0.15534,-0.51015,0.37371,0.33365,0.77564,0.46364,-0.067402 1.5966,1.7152,-3.5387,-1.7616,-0.32158,0.070996,1.044,1.0134,0.65946,-0.64231,0.70278,-0.6507,1.0063,-0.63165,0.24126 3.6146,-1.0588,2.0495,1.8688,0.46142,-1.9038,0.1916,-1.6846,-1.4253,-1.1773,0.11262,-0.070859,0.82303,0.48286,0.22172 2.3673,-2.1377,2.9016,3.0096,0.16413,-0.69892,0.21644,-0.56419,-2.7537,-1.5365,1.5303,0.78165,0.39229,0.10848,0.27753 0.12177,0.76291,1.1769,0.11793,-2.8551,-0.81441,2.1495,-0.35932,-0.16382,0.54808,-1.2826,0.68083,0.81702,0.034826,0.20775 3.7448,-3.5419,-2.1381,0.56133,-0.47117,0.61748,2.7592,1.1536,0.65301,-0.55299,-0.80655,1.59,0.39808,0.96697,0.091965 -0.21725,1.1088,1.3921,2.2337,-0.57385,-1.4657,1.505,-1.3844,-1.1134,-0.45438,-0.31822,-0.95637,-0.8198,1.0112,1.6224 -2.9359,0.15236,1.2858,0.92543,0.55077,-1.0205,0.72533,-0.027255,-1.5212,-0.35173,1.6265,0.59391,-2.1646,-0.42763,-0.29829 4.2781,-2.9419,0.82802,1.7901,-1.1843,2.4519,1.3266,2.3324,-1.4832,-0.90671,-2.0575,-0.86703,-1.4636,0.13171,-0.45015 -1.133,0.43206,1.5868,2.4462,-0.36016,-2.3568,1.335,-0.44548,-0.43934,0.339,0.40344,0.34636,-0.16556,0.64007,0.89178 2.7843,0.072075,1.3565,0.30036,-2.2544,-0.43878,-1.3922,0.32749,-0.25655,-1.4272,-0.012936,-1.3976,-2.0806,1.2453,1.1383 -2.024,-0.77502,-2.6005,-1.5367,1.0504,-1.3259,-0.70894,1.6827,-0.94568,0.64202,-1.737,-0.23661,1.3539,0.64848,0.90581 -0.9203,-0.37358,1.9792,2.0651,0.6556,-2.8648,1.4677,-0.93104,-1.5621,-0.37509,0.048565,-0.54223,0.65072,0.52987,0.35329 1.7151,0.92338,0.63504,1.5832,0.57263,-2.7879,-0.95077,-1.1024,0.17584,0.007519,0.52262,-0.54367,1.2334,1.1694,0.16821 3.5997,-1.665,0.41495,0.86267,0.2946,-0.88684,-0.17613,-2.0105,-1.3042,-1.4828,1.0733,-1.5812,0.50472,1.3178,1.8549 -0.86564,1.7614,0.99651,0.97398,-0.46321,-1.8641,1.167,-0.35997,-1.3481,1.4586,-1.3667,-0.883,-0.35038,1.3121,1.1376 0.38237,-0.52134,0.86101,3.4918,-0.31811,-1.0385,0.03099,-0.27235,-0.53259,-1.2508,1.66,0.25643,-0.15918,0.31621,0.56391 -1.5397,-1.5012,0.84427,-0.82225,-1.9882,-2.0844,1.2876,-2.0772,0.53529,0.63305,-0.5558,-0.10857,-0.3761,-0.64279,0.53508 4.2483,-4.0485,1.1456,1.6021,1.0061,1.3957,-0.78224,1.3336,-3.2874,-0.002753,0.90998,0.26573,1.7418,0.32647,-0.20174 4.1836,0.31315,-1.0909,-3.2294,-0.026987,-2.5919,1.2866,0.55382,0.14898,-0.17201,0.50608,-0.12877,0.82939,0.57825,0.14913 0.90846,2.0708,-0.97949,1.2604,1.5005,-2.8342,-0.24978,1.6688,-0.08191,-1.0983,-0.71315,-1.763,-0.14361,0.48052,-0.88045 4.2053,-1.8529,1.4534,1.0278,2.1065,1.3553,-0.84002,-0.46963,-0.29349,-0.77223,-0.20116,0.64732,0.7664,-0.69287,-1.5442 0.73335,-0.41707,2.1816,1.9546,-2.3226,-0.83955,-0.49595,-0.84814,-0.26914,0.27944,0.10012,0.70099,-1.3269,-0.37306,1.0633 3.6948,2.1016,-1.0307,-3.2105,-1.178,-1.2773,-0.52442,0.44266,-1.8982,0.10053,1.3328,-1.3523,0.82994,-0.62559,0.3697 -1.0852,-1.2876,-0.74523,1.8226,-0.69079,-2.2324,1.0543,-1.6383,-0.072473,1.3774,0.11121,0.19941,0.78402,0.12335,-0.11477 -1.2996,-2.0817,-2.8689,2.0051,-0.14091,-1.2668,-0.84111,-0.84587,-0.72221,-0.23468,-0.11739,0.69338,-0.98039,-0.43548,0.16017 2.014,2.1659,-1.6826,-2.6871,-0.1771,-1.2454,-0.48066,-0.07676,-0.92585,-2.4359,1.6717,-1.4784,0.57433,-0.12804,0.523 1.0975,2.0228,0.84565,0.81015,0.58739,-2.4389,-0.67985,-0.92561,-1.3254,0.13425,-0.34594,-1.1359,-0.75281,1.4204,0.95548 3.8678,-3.3231,-0.69486,0.99761,0.83998,2.2883,0.2615,-0.31172,-2.3157,2.3696,0.75808,0.51807,1.2022,0.0089494,0.064066 1.4904,0.43749,-0.15992,0.81051,-0.7651,-2.3236,-1.6188,-0.80827,1.4269,-0.46254,1.2814,-0.061492,1.9313,0.20441,-0.4681 -0.80464,0.44197,-0.47738,0.88405,-2.1372,-2.0885,2.1597,-1.0096,0.6042,0.68561,-1.1929,0.10861,-0.13925,0.030043,0.48184 2.8504,-0.80649,1.9266,0.67905,-1.5907,-0.15759,-2.1265,1.0853,-0.72035,0.81541,0.06298,-0.96894,-0.72494,1.4783,1.4713 2.2461,-0.29582,1.9601,1.062,-2.0057,-2.0831,-1.2758,-0.79375,-0.13092,-1.2757,-0.55068,-0.25475,-1.357,0.64049,1.1045 3.0541,-3.3205,3.0901,1.0028,-1.6606,0.92361,-0.1268,0.71845,-1.097,1.0623,-1.0808,-0.49398,-0.83573,-0.69959,-0.41292 1.8676,1.2326,-2.2833,0.097083,-1.4884,-0.73449,-0.41799,0.076296,2.0512,-1.3456,-0.094617,-0.045962,0.89904,0.50617,-1.3077 4.046,-0.97545,-1.7453,0.94997,-0.37641,3.1677,-0.67902,-0.15786,-2.5572,0.49694,-0.82783,-0.76307,1.7638,0.46968,-0.56834 0.055249,2.5343,1.2043,-0.74551,-1.8772,-2.3464,-0.1848,0.087205,-1.6841,-1.6727,-0.61184,-0.23427,-0.51328,0.76814,0.72934 -1.0085,-0.17247,-2.0102,2.0686,-1.8465,1.5385,-0.061996,-0.48648,-0.16908,-0.99276,0.98333,0.29582,-0.5241,-0.26504,0.32143 1.7434,-0.4807,2.3853,-1.1055,-2.9712,-1.6609,0.023624,0.8861,-0.51526,-1.4364,-0.7378,-0.022925,-1.5213,-0.29002,0.59456 2.8889,-2.8597,0.44199,-0.013791,1.4372,-0.62928,-0.83687,1.3184,0.20613,1.0444,2.9311,1.4295,1.1941,-0.37012,-0.0089564 4.3796,-1.3577,0.028394,-0.70542,-0.36837,-3.1147,0.26671,0.074308,0.48549,-1.5619,0.25794,-0.56931,-0.97605,1.1273,-0.19786 2.2117,2.5798,-0.27587,-0.0022077,-0.74412,-2.2023,-0.57779,-0.63554,-0.036262,-0.32274,-0.94795,-1.447,-1.2607,0.53893,0.19471 5.706,-2.162,1.3244,0.30775,-0.31811,-1.1654,0.58793,0.21498,-0.38852,-1.7884,-0.75107,-0.48751,-1.228,0.5739,0.25284 0.02073,3.0419,-1.606,0.77227,-2.0087,0.74998,0.12465,-0.25832,-1.7183,-1.3268,-0.52821,-0.66943,-0.12489,-0.61382,0.057611 -1.8595,0.47206,2.3145,-0.066369,-1.8743,-1.6879,0.67599,-0.19998,-1.0814,0.141,1.5915,0.6001,0.50005,-0.47576,-0.43257 0.034082,-0.86712,-0.39635,0.75615,1.6939,0.19361,-0.5952,1.3343,-1.4369,-3.8804,0.44777,-0.8256,-0.79865,-0.12702,0.35072 3.2119,-0.029571,1.3859,-0.28094,-1.6935,-1.6891,-1.7392,-0.035831,0.13073,-0.98145,-0.69037,-0.82497,-1.2933,0.39515,0.40747 0.68025,0.51728,0.38355,3.4763,1.9778,-1.3462,-0.23045,-0.39407,-1.5377,-1.8591,1.2837,0.30862,-0.33287,1.3464,-0.48876 -2.7054,1.244,-0.040568,0.26523,-1.5917,0.28465,1.3386,0.14174,-0.1089,-1.2306,1.6268,0.38107,-0.2618,0.18957,-0.74992 3.4904,-0.33919,2.5518,-0.39025,-2.7133,0.05698,-1.7338,0.32667,-0.30275,-0.27369,-0.27922,0.12304,-0.59483,0.77921,0.25011 -1.707,0.63375,1.0136,-0.51706,-2.5876,1.544,-0.77274,0.60933,-1.5299,-0.57333,1.7329,-0.13985,-0.53769,-0.26032,0.60439 -2.8542,-0.15979,1.9132,0.15525,0.31303,-1.8176,1.0916,-0.046181,-0.23095,0.91826,1.0226,0.070553,-0.19223,1.1098,0.028603 3.5596,-1.5758,-2.051,-2.9756,-1.985,1.1185,0.11161,1.3748,-0.422,-0.56648,0.76158,-0.21951,1.0021,-0.84581,0.62585 3.9029,-0.068173,-1.1176,0.15156,-0.80267,-1.5913,-0.035162,-1.6105,1.4363,-0.45003,-0.13791,-1.3933,-0.11395,0.29782,-0.17333 -1.9025,-2.1564,-0.35337,-0.57572,0.011296,-2.522,0.9344,0.55753,-1.5471,0.29891,0.4468,0.86663,2.4251,-0.12439,-1.2652 -0.40775,-2.0842,2.3197,-0.99043,-0.92358,-1.2404,-0.060946,1.2103,-1.9576,-0.53881,1.5141,1.0827,1.568,-1.2292,-2.0942 4.4608,-0.87862,1.7661,0.21154,0.29465,1.9719,-0.25096,2.079,0.01987,0.24416,-1.0225,-0.17028,-2.5233,-0.19743,-0.51073 -1.8493,-2.9395,0.74479,-0.37973,-1.4019,-1.3181,0.13776,1.0826,-1.0871,-1.5245,1.7363,-0.18948,1.0412,-0.40333,-1.469 -0.54909,-4.3386,0.33055,0.023288,0.097179,-0.4532,-1.4459,0.017642,-0.5071,1.7916,0.16849,1.1904,0.5037,-1.302,-1.602 -2.4579,-2.7362,0.28805,-1.7157,-1.2372,-0.1508,-1.7947,-0.43152,-0.85016,0.07444,0.94343,0.23408,0.52539,-0.32767,-0.5819 -0.10607,-3.3048,0.5707,-0.060318,-1.3689,-1.6629,0.27798,-1.6625,-0.59681,1.439,-0.018131,0.8925,1.1019,-0.5132,-1.3991 -0.30245,0.63722,-0.85101,3.1096,2.1575,-1.158,1.2588,2.4316,-1.0011,0.0059602,-1.3811,-0.36697,-0.039489,0.2815,0.36316 -2.8241,-1.6894,-0.053404,-0.85223,1.901,-2.0508,0.98567,0.3896,-0.96328,0.080511,1.3719,0.46807,0.36311,0.83578,-1.6322 -1.2388,-2.3941,0.03745,0.31622,1.3918,-1.9927,0.9572,-0.92095,-0.87402,2.0342,-0.23794,1.1048,1.8301,0.95284,-1.3908 -0.78443,2.3402,-1.1085,1.0564,-0.22728,-0.93934,-1.4,1.2211,1.1941,0.079256,-0.46081,-0.0057208,0.65013,0.69854,-0.12686 -1.8429,-1.9051,0.98975,1.4502,0.77505,-2.5863,1.9931,1.4722,-0.10502,-0.215,1.0526,-0.43257,-0.2277,0.0068295,-1.2907 -0.48602,-0.36697,1.3554,0.73277,-0.96014,-1.8367,2.7005,-0.34248,-1.1492,2.4771,-0.33807,-0.31326,1.7439,0.94891,-0.55667 -2.3351,-1.6205,-1.7423,-0.21608,-1.1238,-1.7851,0.13173,-0.070985,-0.63405,-1.1392,0.83295,-0.18807,0.73699,0.061573,-1.3453 1.7679,2.7777,-0.22263,-1.6261,-1.1242,-1.5147,-0.37184,-0.26456,-0.42788,0.34477,-0.92442,-1.2876,0.65489,0.0053839,0.39916 0.58564,1.4745,-0.42794,0.44164,-0.79761,-2.532,0.10534,1.8686,-0.59594,-1.1512,-0.64649,-0.19764,1.1697,0.82452,-0.35782 0.4469,-1.9957,-2.4725,1.6988,-0.22387,-1.3961,1.1777,-1.3427,-1.0619,0.92615,-1.6547,0.29676,1.4811,0.090317,-0.38923 -1.3523,-3.8867,-0.72133,-1.2712,-0.37434,-0.71365,-2.7573,1.1465,-0.90023,0.40195,-0.7288,1.0857,0.46333,-0.96631,0.48144 2.0425,1.8704,-2.0145,0.10276,0.93675,0.18082,0.66163,-1.0912,-0.057368,0.2746,-0.69217,-2.6977,-0.062964,-0.66423,1.2914 -0.11297,-3.7471,-0.083915,-1.9378,0.079799,0.34248,-2.9497,1.2737,-2.2756,1.3779,-0.83715,2.5929,0.52807,-0.3701,0.9629 3.8359,-1.3549,-0.57094,-2.5634,-0.79882,-0.26237,0.50395,-0.51992,1.4558,0.31912,1.9373,1.8602,0.55726,0.2995,-0.21347 -0.80223,-2.2648,-1.4201,-0.19603,0.16638,-0.56946,-2.5795,1.8185,0.21243,0.30193,-0.5473,0.89972,-0.29719,-1.3255,1.6691 -0.022571,0.18981,-0.64326,2.1531,0.97955,1.8354,-1.6269,1.2438,0.36887,-1.5978,1.1273,-0.80771,-1.278,0.97185,-0.099275 -0.476,-4.6814,0.10315,-0.5982,0.88515,-0.96809,-2.2276,1.3734,-1.2121,1.6,-0.28431,1.1069,0.2403,-0.6857,-0.16075 -0.16093,-4.8348,0.39836,-0.32871,1.5799,-0.95593,-2.3689,0.96357,-1.4446,1.46,-0.61217,1.9239,0.00375,-1.3697,0.0031193 0.14698,1.1815,-0.037641,2.2565,2.6758,-2.1015,0.033026,2.6959,-0.29831,0.0035997,-0.69961,-0.87501,0.020978,0.67009,-0.5761 -2.3515,-0.022275,-1.4186,-0.58363,-2.0037,0.64926,0.38503,-1.9074,-0.76341,0.089587,1.2395,0.53317,0.37798,-0.3535,-0.78373 5.5785,-1.9638,-0.15025,0.58868,-0.49645,1.0572,-0.057019,0.2065,-0.7413,-1.7366,-1.0078,-1.1701,-1.1037,0.0088665,0.14303 -0.41211,-2.8791,-2.3114,1.0824,0.23661,-1.209,-2.098,1.338,-0.16432,0.16417,-0.65316,0.29772,-1.9402,-1.0745,1.3956 0.12362,2.5667,-1.4895,-0.12674,-1.1277,0.49457,-0.76744,0.44197,-0.34021,0.3024,-1.5993,-0.66214,2.1502,-0.4484,0.079862 -2.6596,-1.7687,-1.3962,0.10098,0.23197,0.35661,-1.6138,-0.50636,1.1028,0.2572,0.71588,-0.23107,-0.96824,0.11888,-0.18799 3.1541,-0.98809,-3.0664,0.19868,0.24607,-0.14052,2.8102,-0.88583,0.78856,-1.4009,0.067094,0.137,-0.074702,-0.36557,0.42456 -0.54585,-2.2535,-1.9135,0.31318,-0.73019,-1.5237,-1.5927,1.02,-0.28738,0.85365,-0.16008,1.6843,0.8885,-1.0248,-0.35424 -1.1218,-2.7812,-0.97659,-0.81916,0.17828,0.1697,-2.7916,0.97756,0.16673,1.2575,-0.61719,0.99537,0.18408,-0.13058,1.2109 1.2513,0.1818,0.53074,2.1799,-1.5917,-1.9256,0.65973,-0.84792,1.0128,-0.52544,-1.4224,0.24604,-0.2588,-0.3687,0.21066 1.5557,0.28146,-1.014,1.9124,1.6224,0.24463,-0.30652,1.2144,0.25048,1.3047,-0.94015,-0.36619,1.708,-1.4174,-1.0065 -0.56665,-2.2284,-1.6938,0.98454,-1.938,-0.36488,-0.71603,0.62751,0.95843,0.040771,0.43501,0.18985,0.14459,-0.52512,-0.65373 4.7641,-1.6699,-0.75994,0.35285,-1.3238,0.91279,-1.2502,1.5387,0.64246,-0.26444,-0.84926,-0.44052,-1.8689,0.57139,-1.8842 0.76064,-3.548,-0.39156,-0.34036,-1.9974,-1.0104,0.23742,-0.90346,0.0016655,0.35462,-1.7181,0.81645,0.073016,-1.3855,-1.6127 -1.7994,-1.9687,-1.4686,-1.0576,0.073769,-1.0134,-1.5427,-0.29976,-0.42335,0.0054727,0.060507,2.2197,0.99533,-0.81483,-0.64509 -1.4449,-2.6511,0.04204,0.27396,-0.50382,-1.444,-0.17601,-1.2979,-0.11388,1.1625,0.99938,1.1247,0.87357,-0.52257,-2.0416 -2.8591,-0.36837,-1.5524,0.88766,-0.23456,1.3228,0.98422,0.30335,0.96036,-0.58133,1.0087,-1.1784,-1.5389,-0.32121,-0.79591 -1.8973,-2.0918,0.29103,-0.038881,-0.82433,-0.55567,-0.75594,0.61369,1.5418,0.4113,1.1272,-0.8798,-0.62953,-0.0020792,-0.49282 -0.088327,1.1846,-0.85885,2.3786,3.6427,0.2741,-0.90977,1.9006,-2.1972,-0.14423,0.4393,-0.93084,-0.24433,-0.45971,-0.80292 -0.15295,-2.6948,0.98932,2.5154,-0.89104,-1.32,1.3377,-0.57808,-0.21669,0.38009,0.86791,0.095691,1.0468,-1.156,-0.88454 -0.42843,-3.1729,-1.0043,0.406,-1.2538,0.39269,-0.43168,1.7875,0.9872,0.59158,-0.50972,-0.79659,-0.14031,-0.75499,-0.90419 4.7333,-1.3323,2.8047,-0.082104,-1.0069,-1.0197,-0.87548,-0.50981,-0.66666,-0.92596,-0.78757,-0.1888,-0.71815,0.040517,-0.55011 -1.3702,-3.4909,-1.38,0.14269,0.036907,-0.2633,-1.7397,0.5633,0.70257,0.51615,-0.75348,0.41864,0.35496,-1.153,-0.63324 1.5369,1.0916,1.659,0.024684,0.19297,0.046514,-2.8198,1.3779,0.59369,-0.29484,2.1779,1.1169,0.55054,0.22329,-0.33019 -1.863,2.5501,-2.2404,0.2333,-0.0037278,1.5411,-0.86597,2.8499,-0.56352,-0.92188,-0.64632,-0.26623,-0.67217,-0.21825,-0.84081 -1.2525,-1.383,-1.5499,2.3024,-0.5703,-1.1697,1.6185,-0.21951,0.099097,0.090586,0.92221,-0.14085,1.0528,-0.13905,-0.84879 1.659,-0.44922,-2.965,-1.5249,-1.9931,-0.29946,1.4635,1.5203,1.5081,-0.26213,0.94164,2.0702,0.84633,0.094838,0.41863 3.2483,-2.0382,0.72445,-0.2747,1.1162,-2.1524,0.63631,-0.72855,-0.84064,0.26825,2.4198,1.3388,1.3481,1.0971,1.3008 -1.7837,-1.0586,-2.4521,-0.53959,-1.109,0.4062,-0.45351,-1.2013,-0.51443,-0.34368,-0.3887,0.57535,1.5158,-0.85184,-0.26037 2.3395,-0.5326,2.0552,-0.82226,-1.7772,-2.3125,-1.2279,0.76656,-0.27728,-1.4796,-0.053549,0.55295,1.0106,0.7338,-0.27767 -2.4108,0.30388,-1.9262,0.40233,-0.56563,-0.42711,0.22608,0.27907,0.23973,1.9361,1.2306,0.5967,-0.21797,0.11932,-1.0716 2.3146,1.4211,0.40191,1.0824,-1.0125,-0.96465,-1.4467,-1.8671,0.58029,0.11971,0.23348,0.15639,0.33419,0.03995,-0.9162 1.6619,-1.8838,-2.7315,1.4236,1.6761,0.89848,0.3746,1.119,-0.097206,-1.405,2.6563,-0.49294,-0.5438,0.19757,0.55966 1.7665,-0.79673,2.7998,0.24486,-2.3046,-1.7039,-1.3573,0.47619,-0.40292,-0.91826,0.026351,0.07334,0.14548,-0.33113,-0.04162 -2.1232,-0.54855,1.7212,-1.5854,-2.1613,-0.20087,0.89297,-0.6619,-1.9408,-1.7568,0.55774,-0.87116,0.42838,-1.0409,0.28662 3.1053,-3.1193,2.0506,2.627,-0.94772,0.0091098,-0.76833,1.0638,-1.0162,-0.097326,-0.15323,0.015518,0.71366,-0.47882,0.15919 1.241,-4.0367,4.4322,-0.52708,-0.92939,0.0059503,0.12318,1.7698,-2.6971,1.4165,0.40471,0.56897,-0.19717,-0.25017,-1.3963 0.75149,1.7416,0.30313,-0.79709,0.41721,-0.66023,-0.073494,2.293,-1.772,0.93826,-1.5847,-1.601,-1.1392,1.3243,0.65445 -1.9145,0.64341,-2.0675,2.3185,-0.082469,1.2101,1.069,0.75968,-0.23268,-0.047405,0.36305,-0.16639,-1.439,-0.43797,-0.16274 -2.5797,-3.0208,-0.67379,-0.7087,-0.91748,-1.9905,-2.6942,-0.77436,-0.79278,-0.0048392,0.12506,0.68728,-0.9498,-0.30152,0.53197 -0.26572,2.2789,-1.4416,2.7072,1.3774,0.44808,-0.81716,1.0014,0.3246,-0.19682,-0.2813,-0.067727,-0.45933,0.56554,-1.0222 -1.9924,-1.2451,1.3371,1.1994,-0.9423,-2.6537,1.3614,0.50283,-0.31455,0.19281,1.4954,0.0035507,-0.090557,0.90502,-0.18892 -0.078031,1.163,0.14888,2.6835,3.0377,-0.29628,0.81261,1.1981,-2.1457,-0.71099,1.0155,-0.28858,-1.3436,1.1852,-0.66499 -0.28007,-1.8278,1.4167,-0.65703,-1.2768,-2.6454,2.471,-0.69022,-0.27544,0.89639,-1.1468,-0.4492,0.60306,0.40437,-0.1141 0.19939,-3.5604,2.4921,0.27452,-1.9446,-0.47059,-0.56673,0.83695,-0.43058,1.3379,0.22605,-0.32888,0.51265,-1.1048,-0.60982 2.8327,-1.5111,-0.87933,0.27721,0.099281,-1.3165,0.12806,-0.96902,-0.4043,0.95022,2.3205,-0.26994,-0.67914,1.2587,2.6672 -0.45191,3.2412,-1.016,-0.29086,0.43345,-1.0598,-1.3968,0.8062,-0.8292,-0.187,-0.29465,-0.31419,-1.1444,-0.5217,-1.0556 -0.47133,-1.7855,2.4244,0.39023,-2.6765,-1.773,0.38364,0.25071,0.11984,-0.16027,0.1697,-0.096148,0.28828,-1.5488,-0.71589 -0.15254,-0.96792,2.558,-1.5117,-3.2074,1.0936,-0.26191,0.9998,-1.354,-0.07068,0.17354,-0.83186,0.7086,-0.80946,0.53965 1.5848,-2.9752,3.2887,2.3361,1.6811,1.4588,-1.7014,0.8406,-2.8187,-0.91252,1.0901,0.38759,-0.62791,-0.2871,0.17471 2.2093,1.8632,2.2357,-0.3596,-0.69495,-3.049,-0.18155,0.1439,-1.1137,-0.60456,-0.67565,-0.74871,0.46533,1.3296,0.44587 3.6404,-1.5932,-1.6913,-3.7716,-1.0505,-0.62103,-0.53262,2.3388,-0.97847,-2.41,1.9148,0.3378,1.0727,-0.79717,-0.50896 0.033021,-0.9311,1.8097,0.1818,-3.2877,-0.83349,0.64943,-1.1948,0.47879,-0.051669,-0.082278,-0.26733,-0.18489,-0.75543,0.14178 1.7535,-1.6415,-1.7299,-0.76493,1.2086,-0.47232,-0.053275,1.1721,0.064193,-1.2653,3.4941,1.7371,-0.54405,-0.23379,0.35196 -0.4418,0.10804,-0.36198,2.9418,0.41874,-1.2344,0.85676,1.2861,0.39448,-1.8308,-0.89854,0.24104,-0.24107,-0.092127,0.03974 2.5482,1.6831,-1.9048,-1.8689,-0.022603,-2.3359,1.1257,0.15165,0.65775,0.98981,0.059436,-1.2748,-1.2592,-0.68764,1.5412 -2.3386,0.47182,-1.1526,1.3178,-1.6915,-0.7838,1.3842,-0.35273,0.65171,1.2868,0.66262,-0.32902,0.20059,1.0352,-0.063629 -2.7055,0.88049,-2.3635,0.54209,-0.92727,-0.37027,2.0962,1.1153,0.33607,0.634,-0.68088,-0.7212,-0.30481,0.72259,-0.55279 2.0642,1.318,1.2728,0.75703,1.6596,-1.9569,-1.3992,-0.55745,0.22038,-0.012777,1.0482,0.43146,1.613,0.040427,-1.4364 -1.8054,0.35021,-1.0334,0.86401,-2.1522,-0.91752,1.1541,-0.53197,0.90434,1.2795,0.44457,-0.060251,1.1678,0.32531,0.012714 2.2404,0.25973,-1.0485,1.7012,-0.43838,-0.76299,-0.7516,-1.0863,0.94375,0.20593,1.0115,-0.6903,1.2904,0.92433,0.027135 -0.74155,0.99678,1.0764,-0.3877,-2.9938,-0.84785,0.78164,-0.56154,-0.36871,-0.8552,-0.31639,0.21768,0.45959,0.18227,1.2303 -0.59645,0.97319,0.61055,2.0953,-2.0191,-0.99404,0.3631,-0.59162,0.42569,0.63625,0.55515,0.56088,-0.089169,1.0755,1.0316 -3.2076,-0.59874,-0.39793,-0.82038,-1.5209,0.0028134,-0.3568,-1.1379,-0.31754,1.0198,1.8294,0.42305,-0.47184,-0.28028,-1.1079 -1.0927,-1.32,-1.9802,2.0221,0.68003,1.7606,-0.18159,-0.61106,-0.3656,0.58051,0.87409,-0.66597,0.67633,-0.0078441,-0.11376 -1.7735,1.071,-1.6281,0.75527,-1.255,0.19371,1.443,0.77084,-1.1564,0.86446,0.42261,0.50091,0.14072,1.1939,-0.097231 4.1652,-2.0927,-0.57615,1.9413,-0.41961,2.9998,-0.32922,0.28414,-2.538,0.23592,-0.98056,-0.86835,0.71974,0.18117,-0.074444 4.3894,-2.0944,0.63413,1.1178,2.065,-0.43383,0.67039,-1.9991,-1.6825,-0.46555,2.2065,0.10786,1.4119,1.0836,0.8922 0.14809,1.2229,-0.33656,2.5265,0.26342,0.48884,1.832,-0.63898,-1.2915,-0.43239,-1.7344,-0.20951,2.377,-0.37662,0.52377 -1.9684,-1.1644,-0.91088,1.4421,-1.1996,-1.2513,0.30703,-0.43888,1.371,0.59963,1.3135,0.10682,-0.40044,-0.22977,-1.0935 -2.6995,-1.3806,-2.9079,-0.25077,-0.71921,-1.1703,-1.297,-0.23914,-0.4517,-1.0556,0.19116,1.0167,-0.36722,-0.55225,-0.37553 -1.8681,-2.806,-1.9384,-0.56885,0.54399,-2.7788,-1.1494,0.084842,-0.81774,-0.0014208,-1.6142,0.53662,-0.98795,-0.59104,0.50263 -1.5704,-1.8045,-3.4535,1.4643,-0.89378,-0.35074,-0.064066,-1.0449,-0.51102,-1.1356,-0.23667,-0.15864,-1.2503,-0.61985,-0.40752 2.1632,0.18844,2.3526,0.6842,-2.7926,-0.86669,-0.88671,-0.51724,0.52762,-0.98793,-0.91254,0.24973,-1.2526,0.14364,0.87864 -1.5864,2.7219,-0.63955,0.60514,-0.97179,-0.46196,0.23096,1.4154,-1.2488,1.0311,-1.3273,-0.15472,-0.077942,1.3679,0.11411 2.0791,-0.82453,1.4335,2.6266,-0.62277,1.1817,-0.89668,-2.1669,-1.9599,-2.1925,-0.087572,0.38893,0.83592,-0.85698,0.074976 -1.4029,0.85754,0.23504,-2.1861,-2.3617,0.25664,1.4487,-0.42122,-1.5803,0.80104,-0.30945,-1.7126,0.0014694,-0.32013,0.84176 -1.8779,-1.9496,-1.1155,-0.18888,-0.021762,-1.6164,-1.7373,-1.5523,0.069515,1.0623,0.44898,1.7571,-0.40176,0.20184,-0.014121 -2.9946,-1.23,-2.3121,-1.1494,-0.38045,0.50967,-0.86376,-1.0426,-0.19727,-1.0056,0.63318,1.0609,-1.3014,-0.6794,-1.601 -1.7838,-0.5951,2.1456,-1.111,-2.3431,1.6307,-0.88153,-0.030898,-1.1395,-0.13983,1.3144,-0.30706,0.34508,-1.1077,-0.044615 2.9805,0.020593,-0.15881,-1.256,-1.4885,-1.7812,-1.3727,-1.073,0.49038,-1.052,1.2751,-0.68609,1.6382,0.26881,0.059634 -0.030232,1.174,-2.4174,0.52145,-1.1032,0.53434,-0.60431,0.89286,-0.65362,0.2742,0.67318,0.061895,1.2356,-0.29659,-0.51987 -0.73964,-1.3503,-1.3242,-0.89306,-1.4344,-0.6029,-1.8945,-0.47049,-0.33383,0.47781,-0.64292,1.9336,1.0462,-1.5895,0.54577 3.4629,1.0393,-1.1712,-0.87405,-0.66387,-2.6888,0.91357,-0.75531,1.3662,-1.1762,-0.50062,-0.76574,0.5347,-0.2465,-0.62648 -1.1864,-1.3128,0.43714,-2.5947,-2.1969,2.1254,-0.51603,-0.23823,-1.941,1.2327,-0.098858,-1.7872,0.5963,0.67353,0.42378 4.0788,0.52027,-2.7886,-4.6318,-0.73986,-1.352,2.1875,1.9075,-1.159,-0.62796,1.5867,0.28801,0.28721,-0.52637,1.1418 0.84566,-2.3332,-1.2734,0.060442,-0.99619,-0.1029,-1.7125,-1.3456,-0.73647,1.2911,-2.1028,0.89004,-0.93903,-0.73203,2.2517 0.43833,-3.4681,1.3584,2.0556,-0.89028,1.0465,0.32221,-0.68235,-1.6488,1.4123,0.70226,-0.16855,-0.15234,-0.70464,0.33201 -1.5644,0.05468,-2.8368,0.093354,0.78371,-0.66421,-0.81874,1.2565,0.24859,-0.373,-0.14775,1.5426,-0.44939,0.46208,0.56126 -1.4066,-0.7277,2.8397,-1.1886,-1.2691,1.4153,-0.34097,1.8105,-0.027978,-0.40395,1.8978,-0.42121,-0.69045,-0.25916,0.14897 2.0376,-0.30285,0.89546,-0.70297,-1.7688,1.1581,-3.0023,1.4447,-0.81776,0.0085235,0.99727,1.0978,1.6124,0.36242,-0.39443 0.057294,1.7397,-2.0005,2.2057,-0.70815,0.86328,-1.4769,0.65707,0.43364,-0.14357,0.92973,-0.40463,-0.26328,0.45212,-1.0964 -2.1261,0.47666,-1.3036,1.1288,-0.39863,1.6167,0.39579,0.40354,0.3685,0.035163,1.4064,-0.024778,-1.4183,0.014974,-1.0864 0.90387,0.37196,0.96324,2.2882,-0.99449,0.16366,-1.5931,-0.95178,-0.8323,-0.87066,1.1997,-0.11171,-1.4217,0.7991,1.1476 -2.3492,-0.92873,-3.6144,-0.18742,0.21386,-0.052113,-0.6961,-1.1941,-0.33572,-1.5812,-0.89966,1.9333,-0.55245,-0.91886,-0.17886 3.8322,-2.5787,-1.9899,-0.20172,-0.47991,-0.72832,1.5225,0.0051775,2.0292,-0.47382,0.77136,0.15716,-0.72734,0.15864,0.56177 -0.59391,0.06027,0.70867,2.1675,0.99038,-1.087,1.3771,2.5634,-1.2317,1.7914,0.078751,-0.20799,0.81019,0.86184,-0.41832 -0.68335,-0.073835,-0.18111,3.109,0.19907,0.13068,0.27867,0.80303,0.40333,0.98602,1.0892,-0.024548,-0.27418,-0.22343,-0.049432 -2.1557,-0.32744,-2.5907,-1.1566,-0.96163,-0.40014,-0.31849,-2.49,-1.9031,-0.67794,-0.36183,1.0079,-0.024131,-0.48971,0.052017 3.1258,-0.33745,-1.2518,-1.9065,-1.9841,-0.55847,-0.43162,-0.7616,1.3943,-0.47215,0.86613,-0.29709,1.2261,0.22232,0.56586 -1.915,-2.2932,-1.3599,-0.62823,-0.53074,0.35834,-2.5516,-1.1019,-1.0485,1.0902,0.45084,1.4191,-1.2854,0.7754,-0.25309 2.0351,2.2304,1.1327,-0.72472,0.79983,-2.8138,-1.5715,-1.1231,-0.69111,0.18534,1.5016,-0.56539,0.022307,0.9207,0.19101 0.81573,1.0056,0.63413,0.96392,-0.18144,-1.1772,-2.6212,0.39283,0.6802,-1.0343,2.2357,0.56041,-0.2398,0.43301,-1.1516 2.0942,-2.2821,-1.2826,1.8489,1.8262,1.2116,-1.0288,0.30915,-0.6037,-0.22462,3.7009,-0.11296,-0.049305,0.17064,0.87495 -1.4822,-0.58644,0.77045,0.24371,3.0421,0.24403,0.91085,0.1735,-1.8021,2.1284,-0.97583,-0.17546,0.80574,-0.53624,-0.42283 -1.4611,-2.5435,0.53092,-0.21782,-0.032275,1.8238,-1.6236,-0.047285,0.93148,2.7656,-0.15133,-0.64923,0.1285,1.348,0.10053 -0.81764,-0.61477,-3.0379,2.088,0.21346,-0.85788,-0.13607,-0.19308,-0.73266,-0.30581,0.22344,1.0905,0.43233,-0.31349,0.78634 1.6437,2.0049,-0.25084,0.19597,-0.49378,-1.965,-0.88888,-0.57003,0.91184,-0.2553,-0.32657,-0.79961,2.3858,0.71998,-0.11714 -0.60375,1.1084,-0.97936,2.4354,1.914,0.28057,0.35404,2.2173,-0.38682,0.53846,-0.82809,-0.4207,0.59468,-0.5087,-0.35153 -1.5931,0.34526,-0.9882,1.6683,3.8413,-0.96138,2.1612,1.8304,-2.4462,-0.9982,-0.20636,-0.64892,0.012702,0.76411,0.38383 1.456,-0.026835,-0.27236,-2.5063,0.77942,-1.3229,-1.8249,0.87408,1.0901,-0.82969,2.7979,0.31856,1.3395,-1.0419,-0.13678 -1.4536,-2.3093,-2.6656,1.1829,-0.36658,-0.56933,-1.9177,0.22209,0.49708,-0.17255,-0.21506,0.2276,-1.7515,-0.7716,0.5193 0.43071,3.0129,1.4489,-1.0126,-1.0701,-2.3332,-0.2755,-0.11634,-1.4924,-1.0313,-1.6722,-0.81244,0.12297,0.80787,0.72173 1.6405,-0.44313,-0.090048,0.89129,0.73792,1.1529,-1.665,0.45596,1.1244,-1.757,0.080524,-0.50338,1.1316,0.30809,0.80629 -1.6984,-1.9011,-2.3146,1.2291,-0.099754,-1.5182,-0.67736,-0.69889,0.26019,0.084898,0.094104,0.3289,-0.32364,0.0041056,-0.056019 3.9162,-1.3474,-1.8631,-2.59,-1.4065,0.70861,-0.56448,1.6681,-1.024,-1.8181,0.30161,-0.9377,0.99297,-0.97144,-0.45848 -0.86619,-3.2782,-0.13986,-1.9399,-1.9034,0.2422,-2.0867,-1.1338,-1.8906,0.7935,-1.3953,0.47694,0.060202,-1.1918,0.2879 1.7233,2.4271,0.59818,-2.2452,0.98676,-0.48801,-1.076,1.1746,-0.83454,1.5515,0.25531,0.064733,1.3867,0.10414,-1.0432 -2.4715,-2.6329,-0.69982,-1.4408,0.12961,0.11012,-3.4001,0.4049,-1.1408,0.99997,-0.5318,1.1121,-0.15555,-0.60865,1.2544 -1.7696,1.3541,0.38447,0.93998,-1.2438,-1.4332,1.2153,0.56216,-1.0617,1.3611,0.75542,0.84917,0.19777,1.6148,0.227 -0.93348,-4.2571,-1.2751,0.62668,-0.42009,-1.1895,-2.7276,0.13579,-0.59925,0.66655,-1.1422,1.1252,-0.47931,-1.1312,0.60527 -2.1389,-1.6183,-2.6724,-0.26928,-0.0048691,-0.15077,-2.6434,0.54458,-0.88817,-0.91852,-0.16064,1.8546,-1.2467,-1.5726,1.1039 2.9929,0.23738,-1.9947,0.39531,-1.1152,0.13271,0.50195,-1.7564,0.26071,0.14319,0.74043,-1.6019,0.0021239,-0.33064,1.5995 -1.3336,-1.7754,-1.9687,0.29933,0.28133,-0.40887,-2.4819,1.6727,0.47063,0.36982,-0.23365,1.0046,-0.96794,-0.8684,1.7241 4.6802,-4.2111,-2.1972,0.17363,0.72359,-0.033744,3.3832,1.4082,0.23741,-1.4365,0.91185,1.6832,-0.11463,1.3139,0.34675 -2.4059,-1.9822,-2.2627,-0.2188,-0.21674,-1.6439,-2.7902,0.18304,-0.22834,-0.24833,0.0029599,2.056,-1.6874,-0.88369,0.57863 -2.1455,-0.81127,-3.3321,-0.2918,-0.55804,-1.6424,-1.8071,0.9027,-0.81127,-1.0477,-0.37548,1.7733,-1.3179,-1.1726,0.65887 3.8569,-1.9239,3.2779,-0.23459,-2.4309,0.53006,-0.57112,1.5804,-1.3276,0.39196,-1.0491,-0.04584,-0.87366,-0.23528,-1.0649 4.7072,-3.6911,-1.1015,-0.56035,-0.59731,-1.1712,2.031,0.13853,0.99868,-0.60164,0.50041,1.1348,0.46195,0.3879,0.89321 -1.6658,0.018501,-2.0371,0.0081684,-2.1417,1.107,0.2064,-1.0044,0.51274,-0.12746,1.0933,0.015926,0.31776,0.61088,-0.71374 4.2354,-0.1941,-1.2681,0.16471,1.6336,-1.2397,1.5944,-1.3208,-0.65981,1.2829,0.5512,-1.6003,-0.32148,0.30349,2.1394 0.0053064,-0.24794,-1.9928,2.4804,-1.9749,2.0871,0.23829,-0.85415,-0.10961,-0.79584,0.27829,0.27868,0.41701,-0.79355,0.71198 1.7045,2.5481,-0.22298,-0.6409,-1.3701,-1.7325,-0.47483,0.73789,0.19603,0.44229,-2.0698,-1.1397,0.35288,1.1622,0.058166 1.6979,2.6398,-0.97417,-1.3782,-0.80899,-0.47089,-0.6013,1.8852,0.24071,0.14648,-2.1103,-1.4889,0.34368,0.56557,-0.50484 -2.4654,-0.84203,-0.22372,-1.0365,-1.7526,0.13266,-0.89081,-1.8157,-0.1591,1.2099,1.743,0.57935,-0.50719,-0.10212,-0.74958 1.4258,1.8637,-1.1004,1.0631,-0.34903,-1.2516,-1.3192,-0.5666,0.53256,1.3606,0.51276,-1.0837,-0.011054,1.5513,-0.009773 3.7018,0.56657,-0.79648,0.16868,-0.056928,-2.4033,0.2921,-0.81936,1.0602,0.30464,-0.75641,-1.4745,0.11018,1.2729,0.070384 1.6946,-0.3461,-3.7874,0.31813,0.96798,1.633,2.78,0.66872,-0.18078,-0.58145,-0.40159,1.1348,-0.28673,-0.26108,0.36106 2.3913,2.2232,-0.66597,-1.3515,-0.29682,-1.8919,-0.83095,-0.53256,0.013015,1.4892,0.52966,-1.3744,0.8222,1.3298,0.94613 0.26975,2.4241,-0.47896,0.68393,-1.8194,-0.91347,-1.9181,-0.10408,-0.49105,0.18781,0.95124,-0.18883,0.22537,0.070926,-0.38709 3.4603,-0.20336,0.27884,0.72693,-1.4072,-0.71329,-1.3824,-1.6002,1.0022,-1.0665,-1.0139,-0.44601,-0.76109,-0.73645,-0.7423 3.9387,-1.2486,-1.9369,0.72584,0.81509,-1.9846,2.3099,-1.0305,0.6198,-0.72944,0.053691,-0.57663,0.19557,0.16621,0.34619 4.2021,-0.57168,-0.64669,1.246,0.011861,-1.4284,0.34728,-2.05,0.12,-1.6109,-0.59137,-1.579,-0.051294,-0.14024,-0.084659 2.7805,-1.3192,-0.76577,-2.7433,-2.2527,1.2511,0.051524,1.4091,-1.0524,1.7997,1.0509,1.7777,1.6711,0.39599,1.1807 3.2759,1.0376,-0.7965,1.0105,-0.14917,-1.6814,0.41535,-0.35615,1.2681,-0.54704,-1.8809,-0.67788,-0.085312,0.42968,-1.1521 -0.34999,2.4376,1.2597,0.80724,-0.58906,-1.0269,-2.0804,0.22861,-0.79594,-0.45741,2.1333,0.54213,-1.1087,0.36805,-1.2745 2.4301,1.9432,-1.1962,-0.51732,-0.47427,-1.4824,-0.88734,0.43491,0.11292,2.0761,-0.52021,-1.8902,0.044842,0.34271,0.61923 0.85802,2.506,-3.2439,-1.2489,-0.23869,0.17386,-0.26024,0.35185,0.1008,-0.44723,0.33099,-1.3619,0.95321,-0.18082,-0.0058042 2.824,1.9131,-0.39705,0.68023,0.67371,-1.2855,-0.018462,-0.01179,-0.72759,1.9889,-2.1895,-1.8363,-0.48608,0.55037,0.26809 1.2901,1.3596,0.16362,2.1182,0.16068,-0.83814,-0.15745,0.47736,-1.202,2.4602,-1.1159,-0.32343,-0.14102,1.2773,0.88451 2.1466,1.853,-0.68908,1.3912,-0.60562,-1.7036,-0.32226,-0.20222,0.39836,1.1252,-1.7448,-1.1333,-0.02415,0.58674,0.18751 -0.60277,2.2273,-0.20206,0.056683,0.47187,-0.35322,-1.3468,2.8609,0.36616,0.35415,-1.1195,-0.60894,1.166,0.36352,-0.39501 -0.30988,-4.373,1.3975,1.7917,1.0925,-0.45614,-0.077755,2.0672,-1.4233,-0.24087,0.61152,-0.74467,-0.20188,-1.5819,-0.22818 -2.1106,-1.5678,-2.6371,1.3925,0.3735,-0.59555,-0.23862,-1.3106,-0.9183,-0.17521,0.39361,0.61533,-0.04434,-0.58837,-0.84588 1.0885,-2.8032,1.0167,2.6166,-0.6916,-0.62198,1.044,-1.3419,-1.424,-1.2021,-0.15736,0.26363,0.99019,-2.0476,-0.093154 -2.9581,0.97691,-2.3362,-0.81605,-1.1376,0.16605,1.3474,-0.33964,-1.4039,0.18268,0.91137,0.55646,0.25061,-0.32006,-1.1164 -1.3111,0.34478,1.7466,0.23979,-2.8358,-0.62098,0.44901,-0.70014,-0.26614,-0.225,1.2419,0.76281,0.7831,-0.72805,0.2512 -0.29399,1.3496,-0.66596,1.1131,-1.2695,-0.067759,-1.7794,1.2958,0.81797,-0.21254,1.1616,0.56755,-1.0201,0.81899,-1.099 2.7971,-0.23992,1.1611,1.7567,0.39699,-2.3465,1.398,-0.22209,-0.9291,-0.72026,-1.3295,0.43317,2.0088,0.57964,-0.99149 0.088456,1.5261,-1.7902,1.6692,-1.7663,0.90769,-1.6546,0.3012,0.31277,0.55713,0.71965,0.1971,-0.28187,1.0238,-0.94676 2.6312,1.0184,-2.0584,-1.4896,-0.75259,-1.6662,0.038069,-0.51891,2.066,-0.332,1.0976,-0.90067,0.1662,0.73721,0.84926 4.6083,-1.4075,-0.27844,0.82162,0.85084,-0.93213,1.4472,-1.7891,-0.87064,-0.011616,0.83708,0.21767,1.288,0.63712,-0.24942 -0.85447,0.63852,0.058752,0.53225,-2.888,-1.4102,1.7475,-1.0277,0.2004,0.27315,-1.0778,0.96339,0.52185,-0.39729,0.46965 -1.1968,-1.1014,-1.9476,2.2012,-1.4254,-1.3079,0.94765,-0.3637,0.43073,-0.23151,0.87456,-0.35083,0.1899,0.18198,-0.96937 1.3226,0.91791,-1.8649,1.8735,4.3916,-1.568,0.3967,2.0263,-1.3336,-0.43381,0.40843,-1.9707,0.27682,0.058973,-0.37573 0.6725,1.2636,-0.66793,1.8249,-1.5485,-0.46494,-0.54723,-0.36488,-0.069424,-0.4486,0.25251,0.014672,1.2942,1.0882,0.41766 -0.94308,-2.7187,-2.1157,2.1319,-0.56928,-0.39404,-0.53739,0.33703,0.13941,-0.30264,0.67637,-0.70512,-0.83644,-0.82192,-0.61516 0.70489,-1.1136,0.92233,3.3694,1.2421,1.562,0.30132,2.7612,-0.58289,0.89058,1.1727,-0.20294,0.77702,1.044,-0.59326 -1.0228,-1.759,-3.1564,1.0538,-1.2575,-0.96618,-1.2254,0.34228,-0.0057921,-0.20117,-0.061435,0.88077,-0.68413,-0.37028,-0.43823 -0.95932,-1.6851,-3.0345,1.0934,-1.5543,-0.65374,-0.45697,0.11957,0.28008,-0.0093042,0.016181,0.2137,-0.91313,-0.091983,-1.0382 -2.285,0.63825,-0.78264,0.73405,-1.3534,1.84,0.14689,1.6882,0.52313,0.41992,1.7364,-0.41634,-0.51664,0.85772,-1.1187 2.2703,1.0236,1.1306,-0.23645,-0.27675,-1.5643,-2.6826,-0.56223,-0.26667,0.071553,2.5233,0.20805,0.083103,0.43308,-0.4205 -1.6901,-0.4024,-0.32689,0.71763,-1.1148,-1.5653,1.2035,-0.65809,0.63615,1.389,0.62937,0.23348,1.3562,0.30442,0.022197 -0.4446,-2.7863,-0.43593,-0.21427,-2.4331,0.036524,-0.54092,-0.66614,0.20939,0.86934,-0.31603,-0.19335,1.1791,-0.93783,-0.91412 -1.5522,-2.1127,-2.2061,1.6422,-1.3642,-0.79317,-0.45992,-0.37413,0.7082,-0.15763,0.84422,-0.095912,-0.18754,-0.55087,-1.172 -1.1614,1.571,-1.4995,1.5762,-0.74818,-0.9407,0.95829,2.5397,0.31803,0.56415,-1.1731,-0.36263,-0.82262,0.34318,0.41302 -0.10171,-1.8933,4.5125,-0.76863,-0.19372,0.44817,-2.0583,1.1235,-0.99964,0.70648,1.1533,-0.55609,-1.1842,0.32842,-1.0922 -0.48805,-2.2307,-1.1971,1.7649,-1.5964,1.1551,-0.36585,1.9866,0.85156,0.90105,0.57584,-1.4246,0.21305,0.23688,-0.43478 -2.1882,0.92182,-2.2251,-1.1569,-1.2595,1.0751,0.39208,-0.29317,-1.0226,1.0366,0.02044,-0.56494,0.64742,-0.51612,0.56586 -1.6207,-2.6721,-0.97689,0.26465,-1.8059,0.40386,-1.1194,0.85754,0.7871,0.35218,0.95408,-0.919,0.076593,-0.090543,-1.0257 -0.67011,-3.2758,-1.6862,1.931,-0.24547,-0.23877,-0.96967,0.018455,0.23145,0.21828,0.42066,0.010587,0.24479,-1.1477,-0.7393 -1.1186,-2.1641,-1.3698,0.97292,-1.7671,0.8729,-0.58148,1.6784,1.1667,0.17606,0.45551,-1.7548,-0.44037,-0.14949,-0.80654 -0.57628,-1.1064,-3.4338,2.4216,-0.38317,-1.0072,0.022174,-0.17584,-0.58366,-0.60879,0.043807,0.77595,0.12858,-0.14939,0.010546 -0.92379,-0.34208,-3.698,1.2045,-0.96159,-1.1587,-0.36944,0.49856,0.29501,-0.2928,-0.5768,1.0099,-0.67928,-0.3028,0.14639 -0.41173,1.4566,-1.5531,1.1654,-2.4717,0.95487,0.2316,-0.023064,-0.53841,-2.4686,-0.66065,0.3695,-0.45143,-1.0704,0.11245 0.14829,1.4031,0.31155,3.2748,1.1317,-0.58792,1.0402,-0.14266,-2.7691,-0.17348,0.54277,0.23591,0.4593,1.0088,0.64528 -0.4532,1.0046,0.91039,2.2014,0.76505,-2.1508,1.2511,0.19818,-1.9626,1.4199,0.53919,0.59971,0.6434,1.4835,-0.2797 1.2311,-0.65336,3.2799,2.2247,-1.187,-1.2103,-0.064897,-1.4465,-0.79134,-0.26072,0.48395,0.61179,-0.62485,-0.59961,0.11863 -0.99372,1.1851,-0.42139,2.466,0.63669,-1.2695,1.1484,1.5866,-0.79769,0.071979,0.24854,0.85196,-0.46878,1.5654,-0.52565 1.8281,-0.49208,-1.6564,0.45466,2.6044,0.62019,1.5226,-0.98126,0.60932,-2.1423,0.82491,-0.22767,2.5272,-0.34637,0.54171 -1.3954,1.0968,-0.82698,1.899,0.5824,-0.10986,1.2382,2.0968,-0.63706,0.86858,0.46277,0.30603,-0.45095,1.4257,-0.42801 -2.0327,0.46224,-1.5757,0.93333,1.7154,1.081,1.9989,2.17,-0.89233,0.90165,0.016016,-0.82941,-0.99448,0.4431,-0.22737 -1.0781,1.2718,-0.76622,1.8683,-0.10424,-0.64695,1.132,2.3818,-0.26451,0.88411,-0.3774,0.37004,0.14148,1.3287,-0.36048 3.2665,-0.099668,0.53324,-0.28267,4.187,-1.5302,0.066626,1.4243,-0.023265,1.489,1.6304,0.5739,1.1461,-0.13396,-0.67584 0.28886,-0.64716,0.44794,2.9329,2.3732,-0.40732,1.1199,1.0733,-1.0597,-2.0111,0.16888,0.14353,1.1033,-1.0846,0.22746 -3.045,0.027052,-2.7199,-0.1324,0.3777,-1.0611,0.46743,0.23211,-0.23353,1.06,-0.3396,-0.10327,0.20098,1.0728,-0.71652 1.5272,0.51287,-1.641,1.5851,1.1973,-0.23646,-0.095195,-0.81027,-1.3319,1.3879,-0.21766,-1.6634,-0.27149,1.0392,1.5259 -0.59508,2.079,0.23114,-1.0597,-1.2993,0.091018,1.4245,2.4759,-1.3565,0.85271,-1.5363,-0.97558,-0.424,0.34547,0.99457 -1.3715,1.3516,-1.2472,1.5055,-0.70948,-0.57289,1.5586,1.7809,0.20594,-0.64701,-0.27761,0.11319,-0.66945,0.64609,0.059357 1.1655,3.2882,1.1748,0.3682,-0.10435,-1.8214,-1.0584,0.64908,-0.94457,1.0533,-1.398,-0.85544,-0.063942,0.46608,0.38608 -2.3361,-0.057373,-2.0522,0.58863,0.064271,-1.202,1.346,1.1373,0.13291,1.1604,0.3978,-0.46586,0.028051,1.1951,-0.76739 -1.84,-0.15986,-2.6305,0.82678,1.0641,-0.028479,1.9566,1.3229,-0.78157,0.69271,-0.49735,-1.3364,-0.23657,0.81651,-0.28892 -2.0406,-0.069552,-1.7021,1.2184,-0.16901,-1.1543,1.118,0.51597,0.62402,1.3848,0.46351,-0.30701,0.50153,1.137,-0.52792 0.35102,2.2583,-0.38825,2.8223,1.7765,0.091622,-0.66789,0.16546,-0.6376,0.10834,0.30071,-0.035147,-0.3796,1.3455,-0.72737 3.7809,-3.0539,-2.2336,0.73083,0.3256,-0.016971,2.7267,-0.26393,0.072991,-2.1543,0.71601,0.26977,0.25149,0.051885,0.087293 2.5289,0.82626,-2.4765,-2.9667,-1.367,-1.9333,1.3671,0.80701,0.48759,0.03824,1.4679,0.27829,-0.29819,-0.094663,1.7627 -1.9689,0.72302,-0.81392,1.9809,0.22327,-0.65529,1.7526,1.3624,-0.58662,1.1085,0.7292,0.24024,-0.24731,1.236,-0.094671 -1.7882,-0.89425,-1.8672,2.1694,0.99871,-1.047,1.665,-0.57951,-0.83753,0.81866,0.62374,-0.57648,0.60445,0.78911,-0.81608 2.1606,0.76828,-0.056504,-0.74192,-1.4942,0.87363,-2.8943,-0.11923,0.0015333,-0.043435,2.13,-0.44409,1.3616,0.59507,0.47388 1.0024,-0.092762,1.6544,-1.2194,-3.6111,-0.63829,0.37969,1.2175,0.16103,-2.5025,-1.0439,0.34949,-1.4755,-0.82619,0.19021 0.68343,-0.54921,0.074606,1.148,-1.5315,-1.9791,3.3358,1.1518,0.42931,0.058821,-1.0219,0.94676,-0.23905,0.71884,-1.3295 2.9262,-0.44268,0.84072,0.81589,-0.95627,1.1949,-1.9818,-0.80724,-0.61369,1.0984,0.49694,-1.8517,-1.1774,0.9836,1.2336 -1.7485,0.31705,-0.13717,-1.7004,-1.9984,-1.3048,1.8209,-1.3349,-1.4754,1.0929,-0.14154,-0.13992,0.59496,1.2011,0.30428 0.25842,-0.1581,1.2323,1.1304,-2.099,-1.8812,2.1331,-1.1532,-0.061537,0.89876,-0.84252,-0.22063,-0.061356,0.61316,0.50413 1.7457,-2.7751,-1.0254,1.2069,2.6303,1.8736,0.32612,0.37745,-1.0608,-1.7147,3.4323,0.82545,1.5704,0.21278,1.0322 2.0935,0.53131,-2.2587,0.31671,-1.8176,-0.036452,-1.1699,0.023635,0.91081,1.2497,1.0131,-1.5774,-0.482,1.3498,0.94534 4.2562,-2.1174,-1.4541,0.24273,-1.2079,0.29562,-0.36281,0.80713,1.0702,-0.82156,-0.15728,-0.36556,-0.9939,0.22555,-1.7693 -2.1349,-0.51031,-1.1187,0.43066,0.66865,-0.82144,0.4721,-0.3671,0.011493,2.4735,-0.20533,0.22256,0.82696,0.91394,0.020889 2.1791,-2.7716,-3.7936,0.95172,-1.176,2.7794,2.0016,1.4226,-1.2443,-1.3395,-0.59511,1.2437,1.0567,0.46529,-0.068342 -0.63948,-0.066726,-0.79536,0.81636,-0.6683,-0.86478,1.3435,-0.052615,-0.15313,2.286,-1.7166,-0.72784,0.72629,0.96015,1.0307 -2.0344,0.055495,-1.5109,-0.79051,-0.48512,0.33988,-0.0094944,-0.070509,-0.8474,2.0153,0.13827,-0.071284,0.43285,1.574,0.43711 -0.46063,0.36467,-0.37088,-0.38857,-3.2257,0.23316,0.45548,0.19999,0.17909,1.0266,-0.15296,-0.8391,-0.75209,0.38748,1.1127 -1.1987,-3.2554,0.66482,0.72514,-1.5974,-0.59254,-0.088811,-0.90619,0.14376,0.9052,0.7755,-0.22077,0.18158,-0.5455,-0.81089 0.58343,-0.41293,-1.5579,1.794,0.39076,0.25818,3.1189,0.82358,-1.3022,0.75097,-2.2606,0.026758,1.5602,0.074498,0.035808 -1.9052,2.0334,-0.41051,0.9505,-1.9141,-0.25194,1.4023,-0.023212,-0.33723,0.75768,-0.32902,0.38074,0.71203,0.84015,1.0154 -1.521,0.21758,0.63997,0.30988,-2.1138,-1.0595,1.2718,-1.0316,0.11132,1.4398,0.81133,0.40307,0.32846,0.9563,0.46617 1.1944,-0.45643,-0.31249,0.35246,-0.72195,1.4907,-2.4664,3.5283,-0.24361,-0.65663,0.70769,0.17615,1.2006,0.60062,-1.6823 -0.61047,-0.058361,0.40163,0.71666,-1.8915,-1.2368,2.1794,-1.1102,-0.23022,2.2504,-0.35567,-0.36632,0.35887,1.0995,0.39526 -1.2363,-0.64659,-0.72318,1.0601,0.19125,-1.4343,1.7273,-0.95177,-0.38442,2.6592,-0.37146,-0.41151,1.6683,0.83597,-0.26232 4.463,-3.0985,-1.8181,0.098745,0.12497,-0.7645,1.9109,-0.027205,0.8545,-2.1662,0.5715,0.58651,-1.2327,-0.637,-0.2224 -1.6041,-2.4727,0.74476,0.65551,-2.2753,-0.73414,-0.19216,0.61274,0.63929,-0.25627,1.4001,-0.79206,0.39505,-0.85177,-0.94342 -1.6082,-3.7793,-1.2308,-0.43362,0.017428,-0.31632,-3.0558,1.6844,-0.17861,0.81778,-0.71672,0.62615,-0.44444,-0.16896,0.65452 -1.6475,-2.495,-1.6276,0.0015085,1.1029,0.67995,-2.9942,1.8376,0.68355,0.80971,-0.73429,0.40716,-1.2758,0.63807,2.2936 1.1051,-3.7005,-0.99255,1.5457,0.18822,1.69,-1.5532,-0.34814,-0.90111,1.2869,-0.81954,1.284,0.54289,-1.056,0.3857 -1.0995,-3.0973,-1.5534,0.14624,-0.60003,0.40294,-2.3165,1.8873,0.1459,1.0339,-0.70269,-0.11407,-0.097019,0.0041004,0.21134 2.2959,1.168,-1.4094,1.5537,-0.441,-1.018,0.63205,-0.59896,0.62066,0.71735,-1.9637,-1.3146,0.80937,0.60256,-0.41391 2.8971,-1.1132,2.3933,1.4644,-2.3875,0.23349,0.29793,-0.52135,-0.21699,-0.28511,-0.72832,-0.65974,-1.8007,-0.030207,1.043 1.8346,2.6346,-0.43127,0.55139,-0.80265,-0.65554,-1.1171,-1.3542,-0.6921,0.92222,-0.82105,-1.5509,0.32282,0.41056,0.065007 -1.7767,-0.86386,-3.6303,1.0207,-0.39397,-1.6213,-0.27388,-0.33911,0.29366,-0.23754,-0.62196,1.1747,-0.74996,0.30778,-0.5805 1.0816,1.5539,-1.5211,1.8074,-0.9104,-0.17174,-0.98972,-1.6127,0.23389,-0.34688,0.2272,-1.1756,0.43209,1.0084,0.49273 -1.3548,-2.1084,-1.5375,-0.97866,-1.8816,-1.0267,-1.4585,-0.83002,-0.40411,0.53985,-0.51731,0.92989,1.0357,-0.7029,-0.092444 -1.126,-2.6442,-1.2682,-0.91178,-0.76022,1.0007,-2.72,0.97102,-0.69138,1.0154,-0.7911,1.2046,1.0171,-0.41115,0.90866 3.2847,-0.88076,-1.8729,-1.3309,-1.5182,-1.1977,0.18879,-0.12516,2.2678,-0.84554,1.3059,-0.42607,-0.62685,0.37024,0.70872 1.8563,1.5123,-0.28053,-0.10825,-1.5402,-1.2537,-1.331,-1.0692,0.61443,-0.7411,-0.30381,-0.41556,1.8162,0.79479,-0.20335 -1.2569,-2.5301,-1.9821,0.37182,-0.8405,0.085099,-2.9598,0.67535,0.73993,0.83844,-0.69235,0.80283,-0.50664,-0.64161,1.5553 -1.9748,-2.0582,-1.3781,0.13972,-1.4034,-1.0737,-1.0457,-1.0707,0.234,0.90114,0.23618,0.72948,0.81729,-1.3677,-1.1128 4.5726,-2.047,0.68821,0.0071682,0.96746,-2.1143,0.41171,-1.207,-0.12446,-0.22084,0.93084,0.5184,1.3826,-0.17076,0.16436 3.4109,-0.37255,-2.5497,0.033842,-0.38146,-0.35251,1.3035,-1.1695,1.4146,-0.65854,0.61357,-1.6097,-0.30679,-0.35743,1.3519 -0.0076306,0.55058,0.4944,2.4073,-1.9539,0.018044,-0.43629,-1.162,-0.21326,-0.37771,0.551,0.74214,-0.68049,0.14557,0.86087 -2.4291,0.70593,-2.2676,-0.78619,-1.4636,-0.96341,0.64397,-1.053,-0.50785,1.0452,-0.38275,-0.010373,1.9891,0.65465,0.04435 -1.1111,1.3474,-0.36629,1.515,0.80411,-1.0949,0.28776,3.4659,0.11341,0.75931,-1.4409,-0.44397,-0.48303,0.17488,-0.19428 -1.1632,-1.635,-0.19006,0.22128,-2.719,-0.58472,0.36531,-1.7794,1.0952,0.81574,-0.27007,-0.72353,0.012777,-1.2225,-0.45742 0.66402,1.7705,0.45237,2.1967,1.157,-2.1245,-0.25296,1.0807,-0.97345,0.51472,0.58969,-0.1405,0.52303,2.1145,-0.73626 -1.8389,0.21608,0.92108,0.66441,-2.3999,-0.93952,0.24593,0.30138,0.93156,-1.013,1.4691,0.7718,0.50068,-0.58015,0.33242 4.7324,-2.1039,-2.4845,-1.62,-1.0513,0.40558,0.33433,2.8328,1.6272,1.0393,0.57426,0.03601,-0.20934,1.022,-0.40769 -2.344,-1.8383,-1.2579,-0.48667,-0.44159,1.7963,-1.7227,-0.67086,-0.72529,-0.17141,0.069603,-0.69221,0.44512,-1.5644,-0.18618 0.56552,2.6294,-1.0966,1.3811,0.76943,-0.90687,-0.23928,-1.0711,-0.92201,0.59249,-1.5558,-1.5244,-0.65584,0.27762,0.66483 3.1151,0.14455,2.4585,-0.33497,0.07532,-0.74246,-1.5806,0.33987,-0.048197,0.14519,0.80093,1.8922,0.87963,0.029726,-2.065 -1.6597,-2.7495,-1.1355,1.6064,-1.5091,-0.050318,-0.13782,-0.21366,0.45959,0.13458,0.65847,-0.93987,-0.24885,-1.4106,-1.1446 3.3599,-1.1088,0.55009,1.6819,-0.60089,1.3178,-1.4038,1.8957,-0.66128,1.8848,-0.39948,0.49961,2.1452,0.80833,-1.0307 1.4816,-3.3929,1.7705,0.79873,-1.3022,2.3627,0.012449,-0.42979,-1.1848,0.91059,-0.90896,-0.57985,0.11481,-1.2781,-1.2818 2.7011,-1.7476,1.3534,2.1108,-1.5499,1.3359,-0.89042,2.0193,-1.0589,1.341,-0.067606,-0.58459,0.69304,0.6923,0.66114 -1.3659,1.7954,-1.8759,1.0452,-2.3047,0.38707,1.0857,0.8281,-0.23086,-0.47119,-0.71226,0.28245,1.0621,0.28547,0.54379 -2.2259,-2.4067,0.048742,-0.83473,-0.77945,-0.28444,-1.2217,-0.86727,-0.65769,0.72688,0.6032,0.46473,0.8085,-2.045,-1.4943 1.2441,1.1341,0.4883,0.94089,1.031,-1.6063,-1.8168,-0.55032,-0.071165,-0.69063,1.3453,0.44961,0.047196,1.5199,-0.42291 2.7357,-3.1757,-2.7407,0.91421,-1.2415,1.4039,1.9416,1.1023,0.53118,-0.91072,-0.13939,1.0907,-0.2944,-0.052162,0.16093 -1.8801,-1.489,-3.0524,-0.3218,-1.4659,-0.74429,-1.8854,-0.22715,-1.1493,-0.8831,-0.37614,1.3719,0.10727,-1.199,0.41039 3.1883,-1.7183,-1.4919,1.012,-0.10997,0.8625,-0.25952,0.31071,-0.41452,2.0774,3.0559,0.1867,0.7811,0.85587,1.8388 -2.1075,-1.7537,-1.7302,0.68464,-0.81561,-1.391,-1.0035,-0.91668,1.039,0.47165,0.6439,0.7697,-0.1034,-0.88611,-0.82855 -1.4977,2.4109,-0.49069,0.34468,-1.5854,0.78192,0.27971,1.324,-1.6711,0.49868,0.14344,1.0741,0.61584,1.3132,0.40874 2.4587,1.2051,-1.3996,-1.9585,-1.4398,-1.4059,-0.80947,-0.77782,-0.10305,-0.32121,2.1508,-1.051,0.92717,-0.29576,1.4597 1.4789,0.75618,-1.361,1.8148,3.5964,-1.3632,-0.084645,1.2187,0.054039,-1.2918,0.32733,-1.3747,0.19996,0.076527,-0.83793 -0.25739,0.90679,-1.7702,2.0793,1.3565,-0.32163,-0.10799,2.7452,-0.080264,0.686,-1.038,-1.0169,-0.12812,0.27941,-0.5868 2.1384,-2.0784,-0.97287,2.0726,0.24497,1.1003,-1.6261,-0.93991,-0.42934,-1.2413,1.569,-0.41383,1.6376,-0.46527,0.54816 1.4205,-0.69987,-2.5754,1.2673,-1.1181,0.026231,1.1084,-0.4549,-0.58468,0.24023,-1.2929,0.85583,0.64561,-1.3805,-0.4068 0.16681,-1.6238,-0.25509,2.1219,0.054869,1.0616,0.94903,1.1443,-0.17157,-3.1156,0.28283,-0.83024,0.97676,-0.47004,1.2005 3.3471,-1.0802,3.4679,-0.27138,-1.4872,1.6653,-1.1499,2.4185,-1.4041,1.9158,-0.31961,0.41436,0.37475,0.87425,-1.3871 -0.011103,-1.3667,-3.0432,1.4111,-1.0304,-0.61796,-0.29653,0.61052,0.14935,0.13531,-0.64707,1.0285,0.26642,-1.1229,-0.35934 4.574,-2.0222,-1.4382,0.31721,-1.4724,1.1331,-0.3202,2.2726,0.25407,0.32499,-1.1382,0.47795,-0.68244,0.81964,-1.7956 -1.1664,1.4741,0.43743,0.78314,1.9723,-0.97573,0.052663,3.7644,-1.3407,1.0708,-0.61855,-0.7461,-0.25286,0.295,0.012651 3.5794,0.45984,-0.99484,-1.4429,-1.3057,-1.9559,-0.42515,-1.1617,1.4487,0.032311,1.2058,-1.2896,-0.66119,0.44356,1.2935 2.9293,-1.9818,-2.6536,0.77771,-1.3176,0.21659,1.6709,1.2318,1.332,0.64784,0.02294,1.0407,-0.3028,-0.04388,0.053477 0.14332,0.8151,0.73488,2.166,2.9514,0.2055,-0.14039,2.4268,-1.6959,1.3102,0.058561,-0.036483,0.23081,-0.47351,-1.0069 3.4667,-1.0031,-0.0073845,0.11671,-0.74457,2.0411,-1.0636,1.5561,0.0693,1.293,-0.74268,1.5858,1.0481,0.62901,-1.7834 0.11233,2.2598,0.50138,1.8793,2.2603,-0.02456,0.027321,1.3917,-0.60516,1.7037,-0.63021,0.37196,0.60254,0.22464,-0.74633 3.4997,-2.7196,-0.69679,0.15496,-0.11931,-1.7611,1.2591,-0.6206,-0.13281,0.25069,1.219,0.46142,-0.069731,1.115,2.3673 0.49976,1.0821,0.34471,2.1267,3.136,-0.007042,0.15104,2.6939,-1.113,0.81504,-1.2178,-0.21079,1.0086,-0.45784,-0.63706 2.2884,0.098935,2.2672,1.3956,0.081962,-1.9756,-0.32699,0.3562,-1.1167,0.46595,0.55904,1.219,1.314,0.984,-0.71187 1.999,0.9017,-2.0254,2.0136,-0.80089,-0.14229,0.55806,-1.183,0.7167,-0.74117,-1.6939,-1.0666,0.21721,-0.13368,-0.29908 -1.2117,-1.4115,0.069314,2.9044,-0.79893,-1.9209,1.174,-0.47787,-0.19204,-0.30556,0.9699,-0.14622,-0.27462,-0.046266,0.5238 -0.75618,0.1806,0.80262,0.80931,0.68537,0.87652,0.4248,1.2254,-1.4937,2.7645,0.52019,0.23809,0.00734,-0.16776,0.16739 -0.62556,1.743,-0.44057,1.5729,1.3248,-1.0947,0.063241,3.7389,-0.52573,0.65292,-0.85991,-1.0879,-0.75665,0.53483,-0.47934 1.8077,0.98918,0.041757,1.6852,4.4258,-1.3584,-0.81483,1.8781,-1.1942,1.3687,0.99625,-0.70832,0.64819,0.095918,-1.189 -2.0268,0.65774,-0.80098,1.3421,1.6553,0.30285,1.1948,3.1155,-0.32449,1.3002,0.29222,-0.96944,-0.94274,0.4071,0.25035 1.4098,-2.3391,1.8643,0.55123,-1.776,1.3047,-0.94723,1.3029,-0.46463,1.9511,0.72101,-0.21287,1.0684,0.22022,0.008543 0.69686,-2.7411,-0.66514,1.9737,1.1515,1.1694,-0.36745,3.0681,-0.15665,-0.39641,0.46259,-1.8478,-0.74906,0.092995,0.59907 -0.40155,-4.3479,1.797,1.4239,2.0907,1.0076,-1.0089,1.2893,-2.4588,0.31642,1.4553,-0.60751,-0.60732,-0.079582,-0.4985 2.6309,-1.2333,0.25569,2.2543,0.37894,2.4803,-1.2229,-1.2793,-1.3466,-1.0153,0.73469,0.22005,0.91374,-0.55691,-0.32607 2.9431,-0.58293,-2.9121,0.54327,1.3465,0.37612,2.0494,1.2256,0.47045,1.4265,-0.11829,-0.19725,-0.65544,-1.0369,-0.048306 2.9021,-1.6112,3.4256,0.90359,-0.95587,0.62704,-2.257,1.7368,-0.96075,1.0896,-0.6185,0.24876,-0.1396,0.052282,-0.077461 0.52488,-2.6915,1.4615,2.5396,-0.056801,-0.93946,0.48302,-1.1832,-2.532,-0.3334,0.96381,-0.52689,0.12605,-1.016,-0.35751 -0.08559,0.76886,-0.72801,3.2479,2.3279,-0.040223,0.26458,0.67844,-0.55772,-1.7985,-0.2735,-0.39928,0.23198,0.22383,0.15707 -2.1068,-0.83293,1.2419,0.33494,-2.0013,-1.7158,0.85773,-0.61504,-0.17462,0.19649,1.8373,-0.085567,-0.3533,0.45089,-0.34367 -1.1093,0.5267,-1.2502,2.2825,0.37136,-0.22748,1.2546,0.94678,0.12865,-0.88958,-0.031611,-0.17475,-1.9433,-0.6998,0.0066588 -1.2845,-2.7987,-1.0495,1.965,0.53256,-2.8298,1.3064,-0.9031,-1.5321,-0.23888,0.77556,-0.3762,0.4774,0.29647,-1.0852 -1.5891,-0.15534,0.95917,2.0295,1.3649,0.46852,0.86482,-0.049139,-1.552,-1.5259,2.1513,-0.017788,-0.26161,-0.2584,-0.80395 -1.508,-3.2461,1.1209,1.191,1.414,-1.9621,0.70354,0.55951,-1.1094,-1.4543,1.9718,-0.15391,-0.88349,-0.47427,-1.704 -0.20318,-3.1256,1.1302,2.9318,0.18175,0.47785,-0.36345,1.9604,-0.8877,-2.1214,1.3855,-1.1197,-1.2565,-0.36077,0.052139 4.5048,-2.0494,-0.97534,-0.69447,0.85638,-0.49966,3.255,-0.5275,-0.13111,-0.9124,-0.1303,-0.65795,0.093865,0.93464,2.5007 -0.21364,-2.8895,-0.10508,1.2694,0.4447,-2.2808,0.55549,-2.399,-2.5871,0.67784,-0.08791,0.55872,0.99223,-0.46909,-0.72074 3.2512,-0.75833,-1.1765,-0.5914,-1.7469,-0.55458,-0.43927,-0.3412,0.8192,-1.6135,0.42223,-0.83135,1.2106,0.7025,-0.057907 -0.7556,-1.5682,0.099724,2.3938,1.4748,-0.73442,2.6562,0.020037,-0.50505,-0.11505,0.07966,0.078855,1.5997,-0.92448,-0.64252 -1.5063,-0.26988,1.5086,0.1752,-2.8944,-0.17192,-0.12625,-1.1448,0.11078,0.15331,1.0972,0.55089,0.11043,-0.92742,0.38553 -0.8667,-4.9186,1.5,0.97408,2.4798,0.72549,-0.96418,1.6379,-2.5089,-0.40295,1.7092,-0.50975,-1.6516,-0.1748,-0.45404 1.9569,-1.2403,-0.94242,0.57149,0.77447,3.0005,-0.85197,0.0022624,-0.81653,1.1568,2.1697,0.27489,1.8384,0.85178,1.0602 -0.97686,3.0954,-1.6935,-0.38815,1.2273,0.12354,-2.1363,2.1303,0.14809,0.17839,0.81373,-0.929,0.42676,-0.16132,-1.1013 1.6227,0.012369,0.46904,1.8336,-1.7127,-1.2404,-1.4986,-1.2073,1.1871,-0.4004,-0.066516,-0.12047,0.67637,0.0049621,-0.27492 -1.7276,-1.3091,-3.0468,0.44248,0.81517,-3.2932,0.23747,0.0069235,-1.1305,-0.1494,-1.3346,0.47451,-0.70271,1.0375,-0.078106 5.7985,-3.8902,-1.7366,-0.73866,-0.2923,2.574,0.86568,1.3258,-2.2151,-0.95067,-0.2786,-1.4577,0.058589,-0.099942,0.20152 -0.95389,-4.5944,-1.4791,1.1628,0.59153,0.011303,-2.432,1.5015,-0.40969,0.2505,-1.2825,-0.54662,-1.557,-0.92131,0.66753 2.715,-0.87262,-2.6997,0.85508,-0.29772,1.234,1.4156,-1.4442,-0.27104,-1.0567,0.4972,-0.70246,1.5362,0.10406,1.633 1.5284,0.97522,-2.9408,1.1215,-0.29902,1.1804,0.55609,-0.81623,-0.36135,-0.48524,-1.0555,-1.2882,2.1068,-0.19466,0.20286 0.79365,3.1231,-1.5867,-0.62647,-0.8954,-0.4841,-1.664,0.4115,-1.0642,-0.59193,0.67688,-1.1846,0.33684,0.46896,-0.59966 3.5273,-1.6964,-0.54189,-1.8474,-1.68,-1.5706,0.6124,-0.13823,0.43841,0.77339,1.7048,0.94605,-0.029844,0.40631,2.3971 1.2051,2.0998,2.2358,-1.1572,-2.3149,-0.91299,0.16174,-0.96992,-1.8195,-3.0195,-0.088583,-0.55889,0.25702,0.39307,0.83427 2.6974,0.83482,0.36429,0.1705,-1.8789,-0.75894,-1.781,-1.379,1.0121,-0.22418,-0.26094,-0.28681,-1.0442,0.55304,0.14346 -1.824,-3.5757,-0.90251,-0.41629,0.61544,0.2372,-2.9446,2.1381,0.23608,0.71935,-1.2436,-0.67969,-1.1762,-0.066073,1.1571 -0.4156,-2.319,-1.8586,0.99439,-0.34318,-1.0369,-1.9244,1.6033,-0.027619,-0.058163,-0.12892,0.58652,-1.042,-1.4973,0.8054 3.4497,-3.0194,-0.78743,-0.31029,-0.66231,-1.2461,1.2138,-0.35458,0.59036,0.075823,0.86875,1.4869,0.012541,0.41049,2.4709 5.2073,-2.7832,-1.8109,-0.089466,-0.69924,1.077,0.1247,1.9466,0.79005,0.72086,-0.53896,-1.1419,-0.81872,0.35945,-0.32934 0.10086,1.442,-0.059508,0.72273,3.4495,-1.7166,0.028745,3.3092,-1.1069,0.93592,0.21153,-1.1636,0.28896,0.42881,-1.4463 2.1434,-1.2552,2.3532,0.12152,-1.7608,1.4802,-0.64134,2.8758,-0.6971,1.4432,0.19706,-0.0068614,1.5872,1.3628,-0.0037875 1.3098,1.9346,0.5776,2.4874,0.18944,-1.2066,-1.2356,-0.67427,-0.57735,0.18156,1.0457,0.35805,-0.14103,2.0389,-0.39516 -1.2007,-2.5088,-0.88297,2.1373,-0.90003,1.6929,0.076739,1.6601,-0.15309,-1.1479,0.45366,-1.8663,-0.58917,-1.3997,-0.0039327 4.5424,-1.0948,1.0393,1.4149,0.70742,1.0759,-0.13204,1.2223,-2.9078,2.0468,0.27248,0.20733,0.41427,1.4844,-0.023947 -0.7483,2.2325,-0.27785,-0.78884,-1.4846,0.82518,-0.68607,1.5419,-1.1959,-0.48325,-1.2836,-0.54108,-0.9737,-0.22325,1.291 -1.7385,1.4561,-1.4837,0.33672,-2.3363,0.91158,1.973,-1.2633,-1.3775,-0.35842,0.18449,-0.32983,0.26873,-0.23133,0.62412 -2.1283,-1.3805,0.77868,-0.087448,2.2989,1.3015,-0.033436,2.4228,0.41148,0.058686,0.8724,-2.5747,-1.1737,1.9345,0.34731 0.65617,1.4861,-1.9221,0.94006,-1.3346,1.2571,-1.8456,-0.60191,0.28205,0.17151,1.6782,-0.44827,0.63931,0.60015,-0.59779 2.2403,1.6957,-0.44599,-1.4937,-1.6073,-1.201,-2.0579,-0.79112,-0.32012,-0.41924,1.5811,-1.347,0.30409,0.46636,0.81079 -1.3274,-2.4075,1.1377,-0.70178,2.0213,1.6649,-2.5121,0.36137,-1.1399,1.9865,0.49353,-0.88305,-1.3531,2.1578,0.64546 -2.8904,-1.4246,-1.061,-0.30425,0.84115,1.2035,-2.0293,0.29628,0.27813,0.30119,1.0099,-0.04094,-1.7344,0.93864,-0.33139 2.2871,-2.2503,-1.7394,-1.2645,-2.2216,-0.4961,0.89906,2.6257,1.2328,0.20546,-0.12092,2.0618,0.42971,0.38383,-0.83302 -0.82385,-2.9535,0.10221,0.87616,2.4479,1.3506,-1.8993,1.5202,-0.9005,0.4798,-1.1593,-1.4484,0.33745,-0.049017,1.7391 -1.6825,-2.4921,2.1277,0.45379,1.1185,1.1776,-0.95935,-1.2171,-0.69158,0.65413,1.6315,-1.3992,-1.4581,-0.3392,0.16723 -2.1158,-0.27253,-2.7133,0.44333,0.56759,-1.319,-0.38147,0.37988,0.76462,1.1494,-0.47986,0.10883,0.30163,1.218,-0.18899 -2.9156,-2.1672,-0.75454,0.02659,2.6979,1.2272,-1.0947,0.94872,0.4404,-0.42912,-0.52413,-1.7069,-0.98134,1.0798,1.1237 -1.4651,-1.9553,-0.63132,-0.48838,1.272,-0.086504,-0.049146,2.9018,0.28136,0.53541,-0.95351,-2.2794,-0.11812,1.9413,-0.27416 2.7981,0.15615,0.92277,-1.375,1.921,-2.3747,-0.72497,-0.063272,0.041534,0.5188,2.9431,0.76721,1.0818,0.73729,-0.63206 0.74563,1.7318,0.59931,-1.3033,-1.1699,-1.2179,1.6244,2.1379,-1.509,0.73547,-2.3014,-1.1738,-0.40652,1.023,0.55806 0.42728,2.2983,0.55027,-0.64267,-2.4383,0.20988,-0.40803,-0.092821,-1.8617,-2.2279,-0.34071,-0.51023,-0.35849,-0.50148,0.93471 0.71162,3.2717,-2.7122,-1.3854,-0.70767,-0.3941,0.34886,0.49272,-0.30157,-0.49248,-1.066,-1.2494,0.98806,0.18911,0.23585 -2.4351,-2.7807,-0.12088,0.59359,2.1947,1.5443,-0.95323,1.0583,0.77098,0.82079,0.064964,-2.0095,-1.2734,1.5142,0.3401 -1.7208,-2.6381,0.19942,-1.344,0.343,1.2949,-1.1695,2.4765,-0.40667,0.77935,0.32966,-1.4543,0.76073,0.58101,-0.91677 -1.9609,-2.9371,-0.73106,1.7225,-0.14678,0.65134,-0.8026,-1.0754,-0.1617,0.89544,0.78671,-0.45116,-0.62743,-1.5076,-0.017144 -1.8288,-2.0381,-2.1166,0.21389,2.1989,0.62424,-0.89152,1.4382,-0.3868,-0.88604,-1.6808,-0.91535,-1.5787,1.1716,2.0734 2.5767,-1.9719,-0.75447,-2.0007,-0.96308,0.8487,-1.1154,1.7494,-2.0598,0.65372,2.2494,0.76207,2.795,-0.36661,0.68802 -1.3002,-0.30865,0.6777,1.7964,1.3539,2.2624,-0.046182,2.2738,0.30884,-0.55736,1.4994,-1.789,-0.38204,0.63748,0.94519 -2.3726,-0.23666,-0.86845,1.5487,-1.0248,-0.46496,1.7765,-1.7284,-1.1535,0.50133,1.2461,-0.040568,-0.5244,0.29371,-0.088434 -0.75833,1.3626,-1.0467,2.5507,-0.87908,0.69529,0.68595,0.22314,-0.11504,-0.84708,0.5665,-0.30157,-1.1139,0.53011,0.48335 3.0692,1.4833,1.5793,-0.33674,-1.2607,-1.62,0.86293,0.43977,-0.89805,0.38612,-2.2474,0.52794,0.47806,0.95425,-1.3924 -2.1044,2.8214,-0.32851,0.65918,0.14813,-0.28747,0.036931,2.9113,-0.10637,-0.60892,-0.63693,-0.4018,-0.43107,-0.53102,0.46264 1.7896,1.406,-1.8962,1.6784,-0.48259,-0.058562,0.028939,-1.3356,-0.57074,0.36649,-1.0163,-2.235,0.72783,0.26444,1.1203 3.2866,0.75523,-0.4828,1.1949,-0.13451,-1.6253,0.40522,-1.6735,0.33635,0.13012,-0.84451,-1.1255,0.93625,0.70251,-0.15564 4.6986,-2.6619,-0.091082,-1.3252,-0.17501,-1.3641,1.5514,-0.56344,0.25,0.72476,1.2083,1.1111,0.83025,1.1124,1.6708 4.3558,-0.66016,-1.3185,1.3436,-0.018023,-0.7253,1.8046,-1.2205,-0.87478,-2.8753,-0.81802,-0.78348,0.20186,-0.028553,-1.1962 -2.1997,0.027635,-3.0775,0.065472,0.16139,-1.1917,0.15003,1.1606,-0.11225,0.53509,-0.61003,-0.40331,-0.09859,1.189,0.26176 0.59309,1.2382,-2.1439,0.81139,0.80225,-0.93604,-1.6274,0.77792,0.91753,0.65025,2.7069,-0.66204,-0.87805,0.1689,-1.1965 -0.51876,0.48264,0.031989,2.7211,-0.54338,-1.5314,1.345,-0.18633,-0.87275,0.29645,1.0206,0.99709,-0.77225,1.638,0.22191 -0.45559,-0.033887,0.2133,0.21308,-1.8574,-2.0029,1.8247,-0.11417,-0.65843,2.0658,0.22821,0.24288,1.1246,1.3139,0.44501 -1.6298,1.3574,-0.39837,2.1224,-0.17182,-1.0577,0.51416,1.4185,0.41847,1.1001,0.20892,0.72286,-0.41753,1.0373,-0.048885 1.1792,-0.036048,-1.256,2.2744,1.9927,-2.4527,0.62834,2.0045,0.15151,-0.34452,-0.35921,-0.84023,0.77439,0.44906,-0.7202 0.40796,0.17379,0.62802,2.1359,2.7071,-0.77367,0.16898,3.0108,-0.8307,1.8543,-0.92521,0.078659,0.96372,0.15486,-0.66829 3.4231,-1.0043,-1.5076,1.1459,0.18202,0.026494,1.086,-2.3198,-0.38239,-1.2067,0.77495,-1.4152,1.5653,0.09613,1.6069 2.4755,-1.0226,-0.66227,2.3863,-1.0039,0.8221,-1.7186,-1.0271,0.068268,-0.1052,0.039355,-0.82848,0.23484,-0.21442,0.28656 1.0018,1.8402,-0.8748,2.8309,0.093166,-0.5492,0.27035,-0.66627,-0.58435,0.60558,-1.5211,-1.1066,0.8224,1.0184,0.54292 -0.31199,-0.15291,0.10197,3.5149,-0.85015,-0.47015,0.21622,-0.59677,0.12724,-1.0294,1.0377,0.47747,-0.11166,0.11177,0.45546 0.060722,0.20155,-0.77571,2.4748,1.5373,-0.45755,0.85962,2.5481,-0.96439,1.4679,-0.5258,-0.3724,-0.077668,-0.41384,-0.21931 3.3748,-0.77311,-0.71216,-2.5621,-0.85753,-1.9604,-0.42266,0.087979,0.67798,-0.13614,1.6305,-0.095505,0.60671,0.40385,1.4215 1.392,-1.2317,-3.2545,-0.77463,-0.67869,1.2913,2.5979,0.68536,0.31647,-2.145,0.35033,1.5789,1.1766,2.0916,0.63312 -0.96859,0.096341,-1.7024,2.7486,1.3892,1.2484,0.91953,1.753,-0.76095,0.89362,0.26262,-0.19221,-0.41205,-0.38677,0.26186 2.1614,-1.5413,-0.24475,1.7487,1.1451,0.93012,-2.4912,1.9203,0.92055,0.24545,1.1739,-0.47411,0.55341,0.50559,-1.0761 0.34277,-0.22936,1.6462,2.059,-1.4248,-1.9411,0.90788,-0.64475,-0.67065,0.14487,0.70053,0.73437,0.93337,0.90397,0.08679 0.14161,2.5383,0.095083,0.53062,-2.148,-0.9348,-0.86462,-0.84804,-0.16656,0.08714,-0.15228,0.71285,0.50226,0.4405,0.24327 -0.9481,1.7536,0.086801,2.3704,0.86428,0.30402,1.5257,0.21502,-2.5054,0.67743,0.16538,-0.12847,-0.070338,1.3144,1.0585 -2.0264,1.1616,-1.0343,1.2559,1.4669,0.55782,1.6883,1.813,-2.3581,0.44341,0.41876,-0.33669,-0.5688,0.71354,-0.34535 -0.54718,2.216,-1.3561,1.0221,-2.3316,-0.11656,-0.34417,-0.14112,0.14955,0.5766,-0.028844,0.87517,0.64334,-0.0209,0.43548 3.5557,-0.0026232,-0.73419,0.6038,-0.85328,-1.969,-0.11153,-2.0792,0.97878,-0.66985,-0.40502,-1.1676,0.13171,-0.044942,-0.0051521 0.87733,-0.30841,-0.10515,2.9323,-1.1328,0.49736,0.51857,-0.96449,-0.10007,-0.53146,0.51372,0.59192,1.257,0.095563,0.1563 0.52313,0.39165,1.1745,3.203,-0.19528,-1.5976,1.2209,-1.0426,-2.3945,-0.36655,0.82841,0.30451,0.12894,1.4058,0.66504 1.2119,-0.013992,-0.41153,-0.27974,-2.9962,0.95343,-1.1766,2.0406,1.3149,-1.0637,-0.36174,0.40977,-0.52492,0.31265,0.50374 0.39102,-0.40758,0.47217,3.3815,-0.01164,-0.15457,0.013371,-0.76688,-1.7304,-2.1484,1.8692,0.81952,0.4857,0.47459,0.38402 -1.2154,-0.096678,0.33193,2.0467,0.60236,-0.94385,1.7259,0.66472,-0.70345,-0.96772,1.3269,0.47407,-1.3963,1.5949,-0.86981 -1.8637,-0.44958,-0.50421,2.4236,1.4581,-1.0875,2.4122,0.091678,-1.7082,-0.44284,1.4594,0.063734,-0.51922,0.93383,-0.7101 0.69217,-0.11965,-0.20058,1.551,0.24933,0.04234,3.6066,-0.58544,-2.8461,1.3668,-1.7233,-1.2036,1.4643,0.47522,1.0174 -0.77845,-0.58762,0.66966,2.2564,1.4006,-1.2323,2.5819,-1.4686,-3.4618,1.1051,0.7013,-0.2782,1.0932,1.1103,0.17544 3.8991,-3.4747,-0.33591,0.65468,0.72575,1.1463,-0.17216,0.61208,-1.7299,2.4911,2.2008,0.49456,0.76498,0.78951,2.1309 -1.0506,0.57576,-0.72005,2.3374,0.61167,0.19622,2.4003,-0.66223,-2.4546,0.97196,0.28422,-0.44568,1.1283,0.84281,0.96193 0.54631,0.034259,0.94264,3.1334,-0.059061,-0.81928,1.337,-1.3387,-2.5174,-1.3011,0.4725,0.13919,1.2362,1.067,1.177 -1.1685,-2.6411,3.5593,-0.19327,-1.062,0.36534,-1.0093,2.1141,-1.2832,0.53524,1.5713,-0.70245,-0.083226,-0.56642,-1.112 0.025587,-0.78029,2.3688,-0.78931,-1.2571,1.1853,-0.49074,3.8756,-1.9511,0.68816,0.81593,-0.42278,2.4206,0.36537,-0.69285 -1.5356,-2.8213,2.3713,-1.9813,-0.50506,1.5433,-1.4911,2.26,-1.2314,1.219,0.51707,-1.4177,1.5566,0.10894,-1.2596 2.6316,-3.9074,0.2527,1.4423,-1.5931,1.1697,2.0108,2.0211,-0.72504,-0.60924,-0.67381,-0.031918,-2.1771,-0.20234,-0.83291 -1.0688,0.93216,-1.6008,2.4804,-1.2435,0.64956,0.3309,0.9311,0.31748,0.83183,0.65585,0.64397,-0.48774,0.21057,-0.16363 -2.408,-3.2566,0.50247,-1.2875,-0.40363,-0.10247,-1.6594,1.9888,0.091858,0.25477,-0.33837,-1.6624,0.47537,-1.3795,-0.8006 4.5719,-1.4014,-2.353,0.24563,0.81237,-0.35286,2.9606,-0.60991,0.26999,-0.88898,0.33145,-0.42609,0.58971,0.095078,0.54986 -2.8349,-2.4234,0.45068,-1.5561,-1.0811,-0.10869,-1.5558,-1.1755,-2.5119,0.17977,0.74263,-0.43965,0.016624,-1.6845,-0.86488 1.0825,-1.6942,3.399,0.50754,-2.875,-0.058377,-0.77581,0.8447,-1.0693,0.26293,0.085723,-0.26812,0.13025,-1.0116,-0.52071 -1.3134,0.4498,2.5291,0.02142,-2.0215,0.71335,-0.31415,0.11172,-2.0905,-1.3059,1.3751,0.23726,0.2572,-1.5897,-0.20015 -2.378,-2.0843,1.0486,-1.295,-1.4753,0.48965,-0.51715,-0.58175,-2.0054,0.07554,0.72598,-0.72164,0.69827,-2.3388,-0.91136 -2.4836,0.43823,0.46163,0.60113,-2.0483,-0.19495,0.18882,0.82441,-0.76187,-2.0015,1.8912,0.14311,-0.1714,-1.2208,-0.017674 -1.0554,-1.3031,2.4548,-0.68136,-2.1242,0.68326,0.27254,0.13371,-2.6258,-1.2703,0.82642,-0.7013,0.82643,-2.2847,-0.77002 -1.9376,-2.9697,1.518,-1.4385,-1.5194,0.90087,-1.349,1.4016,-1.0081,0.79882,0.64231,-0.88757,1.6519,-1.0848,-1.2715 -0.78264,-1.8341,2.7073,-0.45059,-2.106,1.5059,-0.94731,2.4849,-0.86275,0.8158,0.72041,-0.64669,1.6736,-0.63476,-0.59778 -2.4036,-2.4835,1.2699,-1.0443,-0.15554,0.53291,-1.3146,1.4015,0.14669,0.046091,1.3059,-1.254,0.20173,-1.0667,-1.5196 4.3502,-0.83473,1.4882,-1.1798,-0.48189,-2.4717,-0.75077,-0.80467,-0.53217,-0.94586,0.49094,-0.16035,1.5149,0.83011,-0.42402 -2.286,0.63073,-0.64114,2.0131,0.9139,-1.0393,0.99308,1.2554,-0.2854,0.68162,0.78323,0.26733,-2.1724,-0.30526,-0.14791 2.0524,3.3234,-0.81504,-2.6427,0.12423,-1.8542,-0.80508,0.34802,-0.77219,-0.071979,0.13029,-2.4229,0.13557,-0.071954,0.992 -0.7,1.4738,-0.53774,2.4446,-0.71495,0.91518,-1.4692,0.69665,0.65656,0.39846,1.0263,0.61005,-1.1403,1.0786,-0.74637 -0.60152,0.078802,1.7117,1.6445,-2.356,-1.522,0.71097,-0.51403,-0.22554,0.72749,0.40087,0.80544,-0.16509,-0.42087,0.47631 0.027636,-1.821,2.1798,0.46882,-1.2063,0.39202,0.78738,-1.0372,-0.051734,2.1492,0.84438,0.41476,-0.32344,-0.14147,-0.88976 -3.2568,-2.0902,0.50256,-1.9212,-1.1229,0.77114,-1.2343,-1.3264,-1.4846,0.1093,1.3494,-0.033388,-0.16329,-0.68932,-0.62555 -2.5794,-3.0908,0.46209,0.24188,0.7164,-0.082993,-1.2897,-0.37824,0.54905,1.5115,0.38439,-0.21821,-1.1295,-0.67877,-0.17606 -1.1493,-1.6733,-1.01,-0.059299,1.7681,-0.14091,-1.8564,2.4843,-0.23999,0.77477,-0.12138,0.21068,-0.27867,0.57659,2.3907 5.1488,-2.3893,2.3769,1.2771,-0.81591,1.6559,-0.76828,0.027412,-2.2339,-0.38064,-1.3288,-1.0603,-1.5518,-0.050365,0.10321 -3.0707,-2.3315,-1.2581,0.21598,-1.0874,-1.3803,-0.87332,-0.076311,0.76977,-0.0068957,0.84508,-0.58152,-1.4444,-0.85449,-1.087 3.9642,-2.9143,-2.1501,-0.37515,-0.77982,0.56673,0.88817,0.21467,0.69307,0.33815,0.15301,-0.22625,-1.3584,-0.50965,1.6378 4.1231,-0.83243,0.94268,1.5974,0.39032,-1.1333,-0.24565,-1.9832,-0.99394,-1.0178,-0.10748,-0.83523,0.15942,1.3308,1.1799 -1.5978,-0.31027,1.4504,0.43855,-1.8624,-2.3776,0.98875,-0.28768,-0.008978,-0.13241,0.60382,0.52753,1.2694,-0.1382,-0.30854 -0.83814,-2.4467,-1.6599,1.1831,-0.45864,-0.80039,-2.4449,-1.0271,0.23405,0.64564,-0.9641,2.1117,-0.087659,-1.429,1.4841 -0.74021,-3.2376,-0.70868,-0.10263,0.03893,0.31009,-2.9619,-0.22326,0.41364,1.5757,-1.4394,1.7016,0.18095,-1.5287,0.73942 0.26523,-1.2754,-0.92846,0.2756,-2.6068,1.4719,0.14518,0.45983,1.0337,0.88447,-1.3992,-0.59371,0.0044408,-0.35994,-0.53215 -1.5941,-0.72214,-2.806,0.44222,-0.24017,-0.80108,-1.7035,1.6346,-0.045616,-0.49369,-0.059188,1.0349,-1.3988,-1.3898,0.81637 -3.2547,-0.93497,0.75086,-0.16443,-2.1492,-0.4882,-0.12634,-0.57019,-0.21207,0.15294,1.7404,0.40037,-0.18563,-0.91742,-0.64586 -3.1337,-1.3289,-1.6031,0.35213,-1.0201,-1.1956,0.34979,-0.56639,0.70574,0.047873,1.0542,-0.024262,-1.1153,0.094749,-1.6527 3.1583,-2.3039,-2.8022,-1.174,-1.4036,0.55036,2.1012,2.7575,0.39202,0.34497,-0.49023,2.4011,0.4196,-0.36713,-0.88 3.771,-0.51692,-0.77719,-2.2562,-1.6011,-1.0958,-0.19102,-0.86832,0.96189,-0.97236,0.97824,-0.47468,1.1398,0.95156,0.53787 -0.41114,-2.7796,1.0125,-0.35455,-1.5313,0.38923,-1.083,-1.957,-0.19142,2.0219,0.49599,-0.44131,-1.0473,0.43729,0.17469 4.4701,-2.1397,-0.042191,0.76717,-1.7587,1.1571,-0.84221,3.0999,0.16437,0.17572,-2.172,0.016108,-0.68505,0.84661,-1.9661 -1.8296,0.87882,-3.2119,0.84851,-1.4974,2.031,1.1692,0.76625,0.092843,0.64618,-0.2708,-0.38633,0.083415,-0.47117,-0.45244 2.3311,0.11453,-0.33656,0.40289,-1.9895,-0.93901,-0.24162,0.2525,1.9539,-2.2702,-1.2247,0.618,-0.063121,0.11498,-1.6081 -2.2789,1.1002,-0.60666,0.30286,-2.1756,-0.24232,1.222,-0.65096,-0.75737,-0.24613,1.1041,0.72307,1.2428,0.026229,-0.012174 3.4545,-0.37138,-0.54649,0.22959,-1.3972,-0.95768,-0.7997,-1.3256,1.1186,-0.94927,0.32316,-0.0063573,1.0846,0.12794,-0.29751 2.7641,0.16223,-0.17549,-0.42336,-2.9583,0.96844,-1.8929,0.57025,0.50123,-1.0584,-0.92527,-0.055089,-0.047887,-0.30614,-0.60161 1.7063,-0.51926,0.30175,0.60897,-0.7682,0.40434,-0.41513,1.8647,1.5842,-1.1047,-0.72277,0.59494,0.28645,0.23884,0.39573 2.6545,1.5192,0.03923,-0.43086,-1.5084,-2.4074,0.38924,-0.42245,1.3172,-1.4552,-1.7244,-0.70776,-0.2883,1.0717,-0.8339 -0.4205,0.85434,0.6345,1.4237,-2.8021,0.058169,-1.1183,-0.011887,0.66211,-0.56604,0.89709,1.0759,-0.49332,0.0068576,0.73396 0.0019522,1.1553,1.0233,0.53597,-2.6004,0.16665,-1.1377,-0.32744,-0.83969,-1.6519,0.85641,0.9397,1.1574,-0.92467,0.41815 0.54377,-0.38929,0.87275,1.6018,-2.5134,-0.96126,0.87584,-0.61618,1.0657,-1.1672,-0.53611,0.46171,-0.35942,-0.74248,0.79279 2.6064,-1.6767,-1.5401,-1.3444,-2.1907,-0.54445,0.38132,0.43194,0.79246,0.064403,1.1934,0.7895,0.74414,0.43737,2.1821 4.3328,-1.3831,-0.94279,-0.12604,-0.85659,1.7377,-0.86602,0.6367,0.20301,1.6638,-0.20552,0.14466,-0.5583,0.50023,-1.7378 -0.14643,0.48157,-2.2169,2.3896,0.39353,1.7277,-0.65955,1.5142,-0.10983,-0.8529,0.4667,-1.0102,-0.97582,0.80301,-0.19835 4.7047,-0.71135,0.57796,-2.7562,-0.89167,-1.2236,-0.74552,3.3389,-1.2051,-1.4218,-0.10048,0.30499,0.052786,-0.19101,-1.1511 1.8152,0.81065,0.43133,0.48074,-2.1397,-0.52755,-2.1763,-0.83365,0.61481,-0.89479,0.18897,0.42448,1.0219,0.18583,-0.34472 0.72219,3.2105,-0.41112,-0.020438,-1.3789,-0.75148,0.082994,0.10082,-1.252,-0.9204,-1.8055,-1.2821,-0.8425,0.93949,0.42274 -2.8659,-0.15185,-0.42698,-0.28346,-1.653,0.39621,0.84205,-1.6261,-1.0394,-0.8784,1.338,-0.5646,1.0836,-1.0744,-0.32743 3.2373,0.79132,-2.0067,-0.71182,-0.40449,-1.6205,0.86067,0.98661,1.6919,-0.61689,-0.72771,-0.60139,0.72192,1.2144,-1.8488 1.5006,2.0652,0.058302,-0.16794,-1.7698,-1.405,-0.15137,-1.1191,0.37777,-0.55751,-1.5019,-0.080481,0.71324,0.00032656,0.062365 -1.6303,-0.56152,-0.53529,0.33541,-2.1944,1.0703,-0.51333,0.42693,1.072,-0.10925,1.8314,-0.23031,0.31705,-0.32058,-0.40274 -2.4143,2.0605,-0.64398,1.0573,-0.67407,-0.6597,1.2299,1.5998,-0.81723,-0.052404,0.36427,1.3918,-1.5154,-0.29126,-0.70418 1.7967,-1.6175,3.0082,1.8638,-0.28319,-1.0038,-2.4118,0.71491,-1.4045,-0.41299,1.2377,0.38895,-0.54594,-0.067691,-0.61287 1.9619,1.7423,-0.7073,1.4615,0.3012,-1.2523,0.87616,-0.89804,0.21888,0.081419,-2.5,-1.4141,0.46284,-0.26737,-0.12714 -0.17591,-1.3697,-0.81968,2.4494,0.82091,1.3608,-0.35511,1.5156,-0.32943,-2.1932,0.19472,-0.73947,-0.52923,-0.51232,0.66152 0.26735,1.3329,-1.141,0.75204,-1.1616,0.42535,-0.53888,1.111,-0.46302,1.1835,-0.82452,0.27281,1.5721,-0.19135,-0.048932 0.081063,2.7165,-1.1989,1.0954,-1.553,-0.45847,-1.0622,-0.31133,0.04579,0.32832,-0.40277,0.02828,0.3805,1.3784,-0.16821 0.77513,-1.5982,2.8975,2.521,-0.49201,-1.0146,-0.52136,-0.01801,-1.4178,-0.031381,1.7358,1.1427,-0.81081,0.14424,0.27942 0.34814,1.9493,-0.24104,-0.73133,-1.4202,-2.2114,0.20602,1.5468,-0.4488,-1.3153,-1.3698,0.40135,-0.77785,0.40112,-0.26773 1.3786,-0.56795,3.7135,-0.0032337,-2.8526,-0.97554,0.031643,-0.14302,-0.1508,-0.4465,-0.34796,0.25938,-0.50412,-0.45588,0.39585 -0.51894,2.0705,1.9048,1.2647,-1.0909,-2.2464,-0.058641,-0.79221,-0.92156,0.45183,-0.42072,0.68447,-0.24047,0.75085,0.61442 0.60852,0.54264,2.5751,1.652,-0.85241,-1.6587,-1.7688,0.051889,-0.30662,-0.71577,1.2901,1.0285,-0.47589,0.28556,-0.17679 3.4979,1.4695,-1.8771,-2.1933,0.51485,-1.4883,0.87075,2.3908,0.10473,-0.085721,-0.48308,-0.39575,1.3169,0.32712,-2.0571 1.2873,0.21989,3.7003,0.12071,-0.039941,-2.32,-1.0228,-0.25933,-0.96871,-0.97971,1.216,0.30124,-0.10804,1.1893,-0.58539 0.16141,1.8917,2.7046,0.21238,1.0892,-1.9881,-1.2889,-0.24299,-0.81572,-0.82382,1.683,0.091962,-0.70531,1.5681,-0.39679 2.1691,0.51843,-0.44747,2.4874,-0.031279,-0.87286,-0.061306,-2.1222,-0.28149,-1.5863,-1.3713,-0.98999,0.79667,0.45413,0.93317 1.3367,-0.1935,-1.963,1.1405,0.99128,0.094082,-0.8824,0.67954,0.29303,-0.34448,3.2128,-0.56004,-1.2447,0.31432,-0.62899 1.3124,-2.0746,3.1246,2.407,-1.3187,1.1939,-0.65955,-0.29514,-0.89115,0.42774,0.20815,-0.54281,-0.76506,-0.64922,1.4148 3.0709,0.67939,0.20084,0.20715,-1.3421,-0.29822,-2.2876,0.059142,0.16596,1.308,0.46119,-0.39091,0.0087479,1.2444,0.42735 0.38778,-1.5531,4.3053,-0.1936,-2.0668,-0.65988,-0.52356,0.25937,-0.97115,0.20929,0.5012,-0.13082,-1.3078,-0.34388,0.20722 3.5304,-0.72064,-2.5412,0.35887,0.334,-1.0756,2.0307,-0.7742,1.5871,0.21826,0.083062,-0.56906,-0.43649,0.14544,0.95661 -1.056,1.2775,1.5664,1.9593,-0.60454,-1.78,-0.49813,0.52512,-0.1253,-0.86711,1.1848,1.5185,-0.69122,0.49566,-0.69739 -1.5669,1.7907,2.0572,-0.74278,-0.097285,-0.94504,1.1455,0.31629,-2.2146,0.49374,0.57867,0.4427,0.80822,0.019419,0.17399 2.3776,-2.0728,1.1167,2.3621,0.74245,1.1649,-2.2687,-0.18181,-1.5221,-1.9786,1.6551,-0.33407,1.2227,-0.35091,-0.16455 2.3262,-0.01124,0.97491,0.82617,-0.4759,-0.039214,-3.271,0.94505,0.068399,0.93732,1.7324,-0.46196,-0.084172,1.4196,-0.2385 3.4987,-0.43565,-0.84095,-2.0923,-0.94403,-1.607,-0.16457,0.18207,-0.9899,-1.8972,1.6618,-0.5426,2.3916,0.10205,0.13966 -3.1272,1.413,0.12427,0.6846,0.007347,-0.93119,1.3081,1.241,-0.52342,0.97078,0.55047,-0.6076,-0.11497,0.62648,-0.11253 1.8249,0.72133,-1.1773,0.73026,1.0359,-2.609,0.76446,-0.11952,-0.70303,0.35796,1.0896,-1.0244,0.85713,1.5037,0.90727 0.37664,-0.47481,3.6881,0.31666,-1.3735,1.1887,-1.0056,0.80011,0.40627,0.42294,0.71298,0.84757,0.069826,-0.23513,-0.81082 0.88972,-0.27629,3.6637,0.21215,-1.6142,-1.642,-0.40689,0.080003,-1.5905,-0.56348,0.93285,1.2396,0.45129,0.48085,-0.48166 2.0556,-1.8843,-0.089163,2.2743,0.79924,0.52358,0.37422,-0.35963,-0.77843,-1.2577,0.59976,0.74047,2.2015,-0.35094,-0.45019 -0.61353,-1.2081,3.171,0.87417,-1.9572,-0.72381,-1.1833,0.53243,-1.1214,-0.43069,1.374,0.71977,-0.647,-0.64316,0.0067118 -0.15032,0.8883,-0.61258,2.1966,0.56097,-2.034,0.09307,1.5019,0.78307,-1.7824,-0.34299,-0.26708,-1.0784,0.48006,-0.44715 -0.23853,1.5614,0.2029,1.0142,-2.3246,0.0833,0.20907,-0.35922,-0.31612,-0.80813,0.29731,1.0334,1.2075,-0.087267,0.22341 4.7609,-1.4153,0.44449,-1.8315,-1.4428,-0.74392,-1.3424,0.63616,0.18678,0.8617,1.1464,-0.85366,-0.13285,0.83404,1.292 -1.5721,-2.1161,-1.0014,0.49984,-2.1405,-0.42797,-0.83189,-0.15626,-0.10935,-0.17186,0.7638,0.29191,0.63507,-1.2584,-0.71954 -1.6882,2.4433,-0.50009,0.41283,-0.59529,-1.3687,0.15683,2.654,-0.068777,-0.91547,-0.89308,-0.29338,0.49655,-0.30288,0.88801 -0.75157,-2.8357,0.17123,-0.30366,-2.1883,-1.3615,-0.58971,-1.8598,0.23545,0.3328,-0.4632,0.029455,0.59168,-0.9411,-0.50887 -0.83046,-3.1978,-2.1784,1.0496,-0.96689,0.041868,-1.4893,1.3326,0.28277,0.45976,-0.18304,-0.75297,-0.96953,-0.10325,-0.32204 0.91816,1.6046,0.17957,1.0502,-2.4519,-1.024,0.43931,0.062234,0.7024,0.22059,-1.3989,0.40748,0.28519,0.31152,0.82917 0.51183,1.7973,-0.16421,0.16134,2.0237,-2.1904,-0.9624,2.2363,0.94318,0.037269,0.13141,-0.64641,0.89551,0.81114,-1.3019 -1.45,-2.5021,-1.6117,2.0105,-0.67337,-1.4918,0.54185,-0.46072,-0.56533,-1.0247,0.69375,-0.37026,-1.3536,-1.0778,-0.99582 1.0526,2.7497,0.81875,0.071698,-1.5747,-2.0518,-1.2146,-1.0098,-0.24045,-0.7495,-0.047839,-0.094011,0.71121,1.3678,0.097734 -0.84783,-1.3947,-3.4239,1.5616,-0.11759,-1.8167,0.17589,-0.82763,-1.5347,-0.68247,-0.67676,1.0945,-0.54655,0.0727,-0.0842 1.5474,1.5022,0.058397,-0.23572,0.20631,-2.3366,-0.61928,1.3572,0.075865,0.34821,-0.43396,-0.31651,2.8268,0.57557,-1.1816 -0.9502,-3.4564,-0.26147,-0.23889,-2.0182,0.082317,-1.6789,0.62331,0.38,1.1101,-0.49159,-0.92291,0.51127,-0.47916,-0.53841 -0.56876,-3.0179,1.6482,-0.34354,-2.6402,0.78987,-1.015,0.38167,-0.07979,0.93436,0.10502,-0.63504,0.96824,-0.86629,-0.70786 -0.60763,-2.6276,-2.2586,0.57898,-1.2936,-1.2096,-1.9302,0.35703,-0.16417,0.3023,-0.8034,1.4351,-0.32885,-1.5314,0.10982 -0.59051,-3.0305,-2.6045,0.75177,0.18149,0.70786,-1.7957,1.3449,-0.65013,0.045144,-1.4299,-0.61161,-1.7358,-0.33761,1.1178 -0.029234,-1.6598,-2.7996,1.042,-1.5602,-0.29645,-1.3687,0.66425,0.45309,0.059646,-0.49537,1.3818,-1.0822,-0.91456,0.19196 4.1356,0.41235,0.15739,-2.5973,0.9089,-3.3407,1.6961,1.6878,-0.52876,-0.93694,-0.40455,-0.025703,0.87866,0.65991,-0.96374 -0.63385,-3.0115,-2.2084,1.1273,-0.78444,-0.51436,-1.6907,1.2918,0.14216,0.24563,-0.245,-0.37832,-1.1,-0.70995,-0.18968 4.1544,-0.37025,-0.053183,-2.6349,-1.7471,-1.0143,-1.576,1.9747,0.27641,-1.5781,0.21236,-0.21563,-1.13,0.47143,-0.56212 -1.4663,-3.6397,-1.3299,0.1732,-0.84587,-0.38494,-2.2699,0.74791,-0.072216,0.38212,0.056934,0.41163,0.044183,-0.64015,-0.32446 -1.7717,0.44293,-1.726,1.9011,0.012508,-1.0567,2.1883,0.57556,-0.67329,0.97582,-0.19174,-0.76317,-0.074667,1.4868,0.10981 3.2331,1.0245,1.3716,-2.1642,0.067754,-3.1029,1.8676,2.268,-1.7722,-1.3912,-1.4116,0.15352,0.20892,1.5679,-0.77707 2.4256,0.4147,0.3796,0.7149,0.63798,-2.7453,-1.0901,-1.8133,-0.20068,-0.43525,0.32233,-0.69876,0.31687,1.1082,0.89671 1.1803,0.98698,1.6048,1.8628,-0.10389,-1.8908,2.2929,-0.092006,-1.1844,0.9693,-1.5056,-0.98042,0.0487,0.91348,1.1327 0.71644,-4.2065,2.9697,-0.046458,0.066998,1.6591,0.061783,0.49745,-0.26213,2.4925,-0.6299,-1.0314,0.029736,-0.28,-1.0304 0.99295,1.7899,0.57114,0.97219,-1.4433,-1.4808,1.9887,0.35144,-0.77246,1.3339,-2.4349,-0.88365,-0.404,0.98331,1.3416 2.434,-2.1201,3.0271,1.9218,2.1825,1.3468,-2.3253,-0.026735,-2.0001,-0.53561,1.409,-0.31221,-0.96893,-0.03044,0.3276 1.9413,-0.08494,-2.8822,0.53073,-0.33133,-0.72217,1.5591,0.83547,2.0977,1.0895,-0.25416,0.31852,-0.10975,0.39552,0.11531 2.0517,1.2818,-0.55737,2.0493,-0.51567,-0.77457,0.85173,-0.42944,0.13433,0.44337,-2.2877,-0.69509,0.93427,0.22754,0.019114 -0.862,2.3308,-0.47464,1.6708,0.20127,-0.85,-1.1697,1.6187,1.0629,-0.37394,-0.75955,-0.24116,-0.09569,0.15245,0.53351 0.44873,1.192,-1.8201,1.883,2.8191,0.038207,-1.2081,0.97711,0.17786,0.91494,0.77957,-1.4921,0.37479,-0.68865,-0.41557 3.2663,-0.55572,2.4927,0.52871,-2.7711,-1.4771,0.33495,0.16848,-0.042315,-0.91416,-1.1549,0.22098,-1.3993,0.054176,0.012298 1.4973,-0.030592,-3.1733,0.92982,-0.8913,1.1437,1.1755,-0.63795,0.50872,-0.049123,0.19926,-0.68384,0.83269,-0.16462,2.0531 -0.38068,1.3437,1.7086,-1.1003,-1.9118,-1.4817,2.0262,-0.34241,-1.2271,1.0769,-1.7952,-0.24761,0.1039,0.77711,0.78247 2.2368,0.37909,0.43895,2.3775,-0.75913,-0.86679,2.3392,-0.95736,-1.1952,-0.017424,-2.325,-0.42023,0.17408,0.5357,0.50142 0.27944,1.3576,1.0442,1.2237,-1.2818,-1.25,1.5806,-0.12921,-0.94516,2.0411,-1.3545,-0.14197,0.18311,1.029,0.93463 1.8191,0.88456,0.91826,-0.43998,-2.5513,-1.4469,0.043548,-0.077263,0.38005,-2.838,-1.318,0.24342,0.59928,-0.46754,-1.0116 1.7348,0.69756,-0.3741,1.9211,3.1683,0.56368,-0.14201,0.82667,-1.0901,1.6654,-0.34753,-0.23137,1.6411,-0.78639,-1.6611 -1.8191,1.5528,0.77736,-1.1968,-1.7371,-0.65348,1.454,-0.31682,-2.1048,0.55866,-0.87625,-0.45682,0.45823,0.69973,1.3929 -0.66893,0.66298,0.6385,2.1767,-0.7136,0.56309,-1.4876,0.52562,0.064342,0.18373,1.6556,0.7666,-1.9276,0.56201,-0.28315 3.5247,0.52278,-2.1763,-1.9664,-1.0918,-1.8751,1.176,0.71194,0.53456,1.445,0.90765,-0.33315,-0.016923,-0.93197,1.4495 0.037158,2.2801,0.24663,0.43356,-1.5207,-0.4831,-0.1105,1.2126,-0.021323,1.3686,-2.2702,-0.018029,1.0325,-0.014618,0.72708 -0.51443,3.3504,-0.32208,0.23445,-2.0463,-0.98944,0.13477,0.65493,-0.94734,0.31074,-1.4127,-0.040473,0.083566,1.0528,0.89544 0.35427,1.1587,1.4303,1.3585,-1.9366,-1.3901,1.5546,-0.28992,-0.79084,2.0284,-0.46186,0.097204,0.089128,0.57253,0.97728 2.8932,-0.88506,1.8041,2.3907,0.061726,-0.87094,-1.4483,-0.82954,-0.7933,-0.687,1.6906,1.1742,0.57723,0.3623,-0.60807 -0.84947,-0.33602,0.060044,0.14851,-1.254,-2.0618,1.8817,-1.2734,-1.1538,2.5467,-0.64606,-0.29374,0.7232,0.81558,0.3176 -0.2013,0.025675,1.8069,1.133,-1.2754,-1.9946,1.4805,-1.3789,-0.9615,1.229,-0.19034,0.44985,0.063294,1.0224,0.67258 0.31323,-1.7308,2.1722,3.0661,0.47716,2.3569,-0.98269,0.97141,-1.0549,-0.095416,1.8086,-0.077313,-1.3117,0.71451,0.66615 1.1882,-2.8045,-1.7111,-0.69144,2.0144,-0.35778,0.87613,0.98966,-1.2558,-2.756,1.3187,-0.14621,2.1232,-0.8836,1.9007 3.0237,-1.0742,2.5238,0.40631,-2.5901,0.15346,-1.311,1.6172,0.12586,0.1543,-2.0419,-0.21817,-1.1276,-0.34433,0.33516 2.972,1.0537,-1.4835,-1.2208,-1.3536,-1.928,-0.39571,-0.72146,1.1077,0.7732,1.0815,-1.2365,0.32534,-0.21227,1.0939 3.8015,-1.5556,0.87588,1.048,-1.8925,2.0353,0.96533,1.8008,-0.494,1.1231,-1.7083,-1.0396,-1.5596,1.2071,-0.19566 -2.0972,-1.1681,-0.48703,-0.82963,2.3622,-2.1808,1.1406,2.9493,-1.5969,1.8821,-0.52089,-0.87132,1.0728,0.065223,-0.27793 -2.5403,-0.41894,-0.87694,1.1712,0.21103,0.53053,1.5781,-0.63029,0.22636,-0.62693,0.90918,-0.4351,-2.025,-0.61164,-0.6444 -0.44523,0.16548,1.0491,2.9493,-1.5431,-0.13498,0.0054795,-1.1277,-0.21218,-0.35044,1.2122,0.81363,-1.3686,0.59011,0.729 1.2266,1.5869,-2.2734,1.0524,-1.1533,-0.40556,-0.73031,-1.3499,0.7138,0.45401,0.35527,-1.258,0.43057,1.2702,0.49759 2.7953,-2.3647,2.3999,2.8189,-0.35824,2.5511,-1.008,0.47374,-1.9953,0.26057,-0.20153,-0.093496,0.47752,-0.45414,0.52687 4.463,-4.2643,-1.5797,0.14622,-0.35181,1.3248,1.6041,-0.16737,-1.1869,-1.7627,-0.15751,-0.45074,0.75413,-0.58997,0.95338 5.2609,-2.7939,0.24317,0.60378,-1.2057,0.5948,-0.67405,2.1525,0.15157,-0.14066,-1.7394,-0.75718,-1.3706,0.12964,-1.2085 -0.35255,0.52606,-0.35032,2.6623,-1.807,-1.3233,-0.50774,0.46211,1.0093,-1.2091,0.47449,0.86557,-0.12884,0.38356,-0.20926 4.9127,-2.8697,-0.66602,0.31595,-0.44933,0.95842,-0.21442,1.5409,-0.69194,1.4999,-1.0918,-0.66295,0.73527,0.42073,-0.54366 1.2227,-1.5377,1.9146,2.8997,-0.97473,0.25368,0.47925,-0.2476,-0.71453,-0.5652,0.59076,1.3909,0.6538,-1.1716,-0.55821 0.84489,-3.365,0.65599,-1.0654,-2.6527,-1.2189,1.7243,0.46,0.18014,0.46096,-0.85907,-0.68193,-1.4511,-1.3105,-1.8042 1.6099,-2.5306,2.0427,1.2412,-2.3808,-0.2797,0.87829,-0.19796,0.037068,0.71335,-0.13729,-1.2138,-0.99121,-0.62874,0.28431 -1.5093,-1.3787,0.44015,-1.9706,0.96999,-0.49794,-1.1365,-2.7094,-1.6896,0.91375,0.78359,1.2749,-1.0601,0.5571,0.45828 -0.48042,1.7517,-0.53158,1.2042,-0.91003,-1.5864,-0.07601,2.4939,0.13145,-0.42625,-0.77458,-0.25595,0.49917,0.75188,0.3047 -0.1278,-1.8311,2.8321,0.8139,-2.5329,0.11444,-0.44787,-0.46227,-0.11687,1.4743,0.80815,0.014816,-0.73518,-1.0893,0.22469 2.8838,0.91461,-0.7931,0.45986,-0.49317,-2.4946,0.56665,-1.3871,1.2591,-0.28691,-1.2445,-1.1375,-0.58383,-0.12743,0.15538 3.2684,-2.5936,1.9734,1.7353,-1.7483,0.63841,-0.18762,0.56441,-0.91944,0.29018,-1.604,-1.1881,-1.3513,-0.43421,0.35688 2.2413,2.3271,-0.75217,-1.0025,-1.9533,-1.7932,-1.2338,-1.0712,0.21002,0.73039,-0.33059,-1.006,0.12549,-0.7869,-0.20192 -0.16954,1.9506,0.57521,0.8226,-2.3303,-0.85099,0.27661,0.12032,-0.14513,0.7087,-0.51042,0.57064,-0.19302,1.436,1.1574 -0.22242,-4.018,1.5954,-1.1973,-2.4293,-0.61597,-0.39226,-1.0709,-0.6858,0.19863,-1.6075,-0.89133,-0.68246,-1.0633,-0.72534 -1.1193,-1.748,0.35766,2.4392,-1.717,-0.63889,-0.019918,-0.091749,0.88175,-0.1632,1.3668,-0.055058,-0.06203,-0.96408,-0.23123 -0.85641,-2.3631,-3.2645,1.5497,-0.89672,-0.19251,-0.28078,-1.5137,-1.1565,-0.56551,-1.3653,0.99099,0.50676,-1.3885,-0.41859 -0.73187,-3.4691,0.25413,0.27026,-1.938,-0.1579,-0.70206,-1.2351,0.4554,0.97748,-0.52658,-0.77427,0.45797,-1.2422,-0.71391 1.2433,-2.4232,-1.9137,1.5012,-1.1119,-0.054957,0.3242,-0.48617,0.25897,-0.13839,-1.2997,0.51956,-0.61843,-2.0609,-1.0689 0.55876,-2.8041,0.58873,1.5054,-0.10783,2.5828,-0.40711,0.64745,0.15087,1.2484,0.081986,-1.4217,1.5353,-0.4177,-0.066714 -1.4922,-1.0664,0.053275,0.75916,-0.89285,-0.91199,1.02,0.55466,1.2846,-0.014854,0.71525,-0.017835,0.93032,-0.73532,-0.71741 -0.56109,2.1303,-1.0709,0.47854,-1.4014,0.33376,-0.94433,1.6114,-0.10068,0.77789,-0.34846,0.42116,0.25661,1.1851,0.061343 -0.74232,1.8148,-0.02799,1.2366,-0.78464,-0.030835,-0.47289,0.6212,1.622,-0.37906,-0.41078,0.65554,1.2858,-0.70651,1.0792 -0.4508,-1.6576,2.5591,1.0123,-1.6672,-1.2882,0.17444,1.2883,1.1017,-0.47686,1.0197,0.42546,0.63206,-0.92316,-0.19876 0.5245,-0.044323,-2.0451,1.9258,1.0702,0.35023,-0.40296,-0.54081,-0.61857,-0.087543,1.4508,0.58352,0.16452,1.3676,0.41354 2.7435,-0.54262,0.18248,-0.017964,-0.72942,2.1468,-2.2333,0.97149,-1.6316,0.40913,1.049,0.5007,0.97647,1.1481,-1.0166 -1.5164,-2.2633,-1.2685,-0.65223,-2.0693,-1.7286,-1.3731,-1.3889,-0.84765,0.32559,-0.79461,0.56426,0.71214,-1.0019,-0.21644 1.4281,1.6164,1.8753,1.0198,-1.3207,-1.4871,-2.0728,-1.4025,-0.23421,-0.52108,0.84314,0.14111,-0.50176,0.91083,0.011175 -2.1111,1.5396,-0.72203,0.9929,-1.4664,1.5437,0.71486,-0.099521,-0.62272,-1.207,1.7139,0.32321,0.57826,-1.1827,0.15295 0.1854,-2.9534,-1.2148,-0.05102,-1.7077,-0.33078,-1.7184,-0.81975,0.14528,1.1635,-2.196,0.47826,-0.78798,-1.3527,0.67717 2.5768,0.42997,-2.0087,1.0918,0.20411,-0.85316,0.76903,-2.0829,0.38321,0.24269,0.012651,-1.758,0.49512,-0.069519,2.0226 -3.065,-3.7331,1.2366,-0.51746,0.72058,-0.15567,-2.2217,1.1026,0.077249,0.67847,0.16494,-1.3184,-1.8584,-0.65679,-0.030399 -1.7355,0.26878,-0.82751,1.7261,-1.0374,-1.7078,1.7736,0.68999,1.3847,-0.28861,-0.10935,-0.50803,-0.98429,-0.011188,0.58495 -2.0415,-3.6762,-1.0835,0.51414,1.0419,-0.40168,-1.2633,0.52346,0.15156,-0.4074,-0.31146,-1.3987,-2.6809,-1.0253,-0.68636 0.86308,-1.5276,2.7673,1.179,0.9129,1.6061,-1.357,0.55454,-2.5872,-0.54003,1.2971,-0.61873,-0.38242,0.2265,1.0787 -2.5572,-3.6361,-0.21021,-0.49431,1.3171,0.24563,-3.2435,1.1139,0.3501,1.1266,-0.53294,-0.80259,-1.7147,0.48671,0.8637 -1.3229,-3.7753,0.036818,0.023532,0.94179,0.41554,-2.8354,0.3447,0.41206,2.1857,-0.8142,0.36946,-0.19594,-0.08234,0.42076 -2.122,-2.8861,-0.077037,0.23213,-0.20209,-1.6558,-1.0311,-0.62985,0.51971,1.0326,1.1072,0.21315,-0.50366,-0.61454,-1.1112 2.0232,-0.51354,-0.4091,0.54639,-2.381,2.1855,-0.37124,0.93562,0.88711,0.58565,-1.0558,0.44535,0.072737,-0.37043,-0.15943 -1.4582,-4.4346,-0.43468,0.69562,0.30695,-1.3309,-2.4133,0.71866,-0.94628,0.57899,0.50378,0.52854,-0.64327,-1.0959,-0.71933 -2.2012,-3.2992,-1.5568,-0.94679,0.021956,-1.1791,-2.7482,1.3851,-0.21071,-0.13388,-0.32273,0.22825,-1.5873,-0.96017,0.12132 -1.6651,-2.8806,-0.50404,0.74572,-0.68051,-0.21753,-0.7123,1.6541,0.78174,0.26282,1.2679,-1.311,-0.77658,-0.71744,-1.4047 -1.7606,-4.4539,-0.68833,0.24068,0.65417,-0.68008,-1.5587,1.5225,-0.38817,-0.012909,-0.2532,-1.4743,-1.7543,-1.043,-0.79125 2.0283,2.0374,0.22969,-2.4343,1.1961,-0.45299,-0.87864,0.57493,-0.16611,0.54863,0.51603,-0.28127,2.6054,0.34845,-0.7232 -0.83971,-3.7536,1.5075,1.1745,-0.56307,0.88027,-0.94148,0.69991,0.5394,2.1322,0.39087,-1.3468,0.21669,-0.45043,-0.87263 -2.081,-0.34656,1.5797,0.14557,-1.6978,1.233,-0.66766,1.6807,0.699,0.92691,1.6198,-0.14991,-0.44921,0.059192,0.040636 -1.6611,-2.9085,-1.024,0.78833,-0.52294,0.10295,-0.50113,1.3734,0.87415,0.14149,0.33447,-1.5319,-1.8399,-0.80122,-1.0659 -1.9127,-3.3898,0.19259,0.46458,-0.31785,0.2027,-1.0031,1.6385,1.2157,-0.31511,0.67404,-1.9996,-1.4709,-0.48264,-0.86706 -0.083386,0.43928,-0.77156,2.4383,-1.7668,0.45983,0.37301,-1.2414,-1.3277,-0.21639,0.80061,0.21362,-0.51982,0.098632,0.91492 -2.3387,-2.7146,-1.3601,0.41811,0.32281,-1.5061,-0.57825,-0.039803,0.52227,-0.91801,-0.0018306,-0.21845,-1.3058,-0.95397,-1.1903 -0.279,0.76889,-1.1974,2.3471,0.24804,-1.1336,1.6881,2.6036,-0.89555,0.58504,-1.2098,-0.793,-0.25838,0.36272,-0.091384 -1.3405,-3.9316,-2.0117,0.96272,0.039079,-0.41005,-2.353,1.0785,-0.53885,-0.14542,-1.0748,-0.66209,-1.8991,-1.006,0.62369 -2.2009,0.213,-1.0797,0.66152,-0.24458,0.88992,0.85739,1.3374,0.94208,-0.89614,0.10944,-1.9163,-1.6794,-0.085411,0.25564 2.4919,2.8954,-0.71139,-3.0343,0.47803,0.83504,-0.82291,0.17654,-1.9615,-0.13371,-0.15914,-2.197,-0.39883,-1.1172,0.17805 -1.7709,-2.5474,-2.5666,0.56968,-0.75628,-1.0973,-1.7338,0.36263,0.50016,-0.5732,-0.54376,0.14433,-1.7425,-1.0319,0.13089 2.2508,0.75365,1.2483,2.2336,3.5144,-1.7837,0.31493,0.4641,-1.5621,-0.10295,1.6701,0.91138,1.0073,0.96851,-1.4982 2.4664,-1.7739,-1.284,1.1635,-0.27257,1.3241,-0.0729,0.55801,-0.27419,2.2098,2.5617,0.75567,1.2883,0.45536,1.3041 0.88305,-2.2879,1.3995,-0.68346,-0.57135,1.524,0.29913,-0.44212,0.10322,2.6759,-1.0255,-0.64433,-0.56672,-0.0093556,-1.2159 -0.50729,3.9036,-0.92443,-0.2044,-0.60674,0.12986,-0.8967,0.33193,-1.557,0.31256,-1.2479,-0.55483,0.74707,0.23176,0.012286 -1.5784,-0.19352,-1.5017,1.8646,1.0195,0.34343,0.76774,0.4291,-0.29017,-1.7418,0.28614,-0.90735,-0.41699,-0.79013,0.5257 -1.0191,-2.4323,-0.36829,1.1025,-2.1961,0.9398,-0.649,2.3804,0.44369,-0.10805,0.72505,-2.2037,-0.48764,-0.07566,-0.50513 -1.9179,-2.0711,-0.6126,0.73031,-1.1205,0.072363,-0.8444,0.74821,1.391,0.039091,0.57183,-0.67143,-0.12561,-1.3034,-0.95373 -1.2789,-0.63153,-0.077375,1.355,-0.48689,0.88036,0.022998,1.7566,1.6922,-1.0034,0.59774,-1.0467,-2.2629,-0.30911,-0.15285 -1.8933,-1.543,-1.0124,2.0631,-1.3842,-1.6057,0.82227,0.10207,0.76016,-0.80417,1.1909,-0.52148,-1.4116,-0.25603,-0.82701 -1.4649,-4.0589,-1.0018,1.1765,0.89388,1.2864,-1.2344,1.2966,-0.091465,-0.41433,-0.59938,-2.2352,-0.8895,-1.0553,0.045624 -1.8962,-2.7804,-2.2958,1.7462,-0.018792,-1.6977,0.071081,-0.76883,-1.3121,-1.5769,0.25148,-0.69462,-1.1951,-0.95987,-0.87865 -0.2724,-0.7526,-3.0149,0.91534,0.17928,2.0751,-0.17202,0.76088,-0.62597,0.0029073,1.8786,-0.72825,-0.54184,0.81123,0.19062 4.1957,-3.4722,-0.39423,-2.5848,-1.5964,-0.73883,0.75199,2.4193,-0.9452,0.76896,0.39692,1.1928,0.37509,-0.013693,1.06 3.7968,-1.8731,0.93239,1.4438,-1.5413,2.398,0.76875,-0.26324,-1.7986,-1.9476,-0.5272,0.063217,-0.70801,-0.83887,-0.48787 0.68134,-0.77872,0.9168,2.6741,-0.081965,1.3826,-1.6581,1.1293,1.2863,-0.35844,0.80466,0.59124,-0.5171,-0.5749,0.42074 -1.9913,-2.7006,-1.4805,-0.069684,-1.8423,-0.12126,-1.7704,0.50887,0.080597,0.34401,0.047034,-0.33448,-0.14939,-0.6863,-0.83522 -2.3267,-1.6125,-1.8952,-0.28038,-0.96491,-1.2064,-0.32899,0.41866,0.95699,-1.0341,-0.011381,-0.95348,-1.2245,-0.70475,-0.80757 -1.4728,-2.4873,-2.469,0.19016,-1.3243,0.7473,-1.5828,1.37,0.44411,-0.07683,-0.61459,-1.1355,-0.66591,-0.57742,-0.21612 1.9858,0.7339,-0.22628,-0.72691,-2.4582,1.3546,-0.66121,1.1503,-0.13856,-3.6975,-0.15282,-0.21802,-0.60412,-0.030656,0.57329 4.3736,-2.702,-0.54626,0.58854,-0.62762,0.74364,0.18948,-1.4637,-1.5478,-3.0492,-0.36901,-1.527,0.26838,-0.85612,0.2048 4.6401,-1.0607,-0.44915,-0.75143,-0.42297,-2.7849,1.0103,-0.11108,1.7091,-1.6394,-0.087028,-0.18366,0.5051,0.8936,-1.2471 1.4586,-4.3422,0.38633,0.72559,-1.7051,0.070051,1.2646,0.23388,-0.068495,0.68275,-1.0268,-0.19579,-0.16185,-1.2604,-1.936 3.5831,-2.752,0.6532,-2.9442,1.8703,-1.5254,0.9671,1.6,-3.4521,0.58622,2.1486,0.59213,-1.7136,-0.39126,1.7144 -0.4992,-3.9148,-0.83086,1.5081,-0.26398,-0.072938,-1.2536,1.4602,-0.2656,1.2675,-0.20858,-1.336,-0.020929,0.25607,-0.59402 -2.6993,-1.9656,-0.31771,0.44409,-0.4456,-1.4206,-0.53688,-1.6358,-0.63599,1.0853,1.1926,0.37781,-0.88017,0.33082,-1.2194 -2.1426,-1.8409,-2.9891,0.35891,-0.39163,-1.9637,-1.2578,-0.16888,-0.19508,-0.38751,-0.64486,0.8128,-1.8992,-0.44019,-0.66757 -0.26626,0.03793,0.29829,0.75894,-3.2263,-0.052281,0.4121,-0.13161,0.35611,-1.0478,0.12572,0.32844,1.0043,-0.6709,0.0606 -0.6904,0.81138,0.93982,-0.46598,-2.5056,0.31675,0.36237,-0.65669,-0.3349,0.047383,0.18625,1.4359,0.45991,-1.6872,0.39207 1.3836,-0.1796,-1.1148,2.4402,0.32826,0.23329,-1.3896,-1.3542,-0.589,-1.7241,2.2319,-0.6381,0.61188,0.91008,0.12929 0.35768,-5.2645,1.0104,0.3522,-0.19169,0.38728,-0.99852,-0.20861,-1.2632,1.4557,-1.3534,-0.27045,0.18329,-1.0824,-0.79037 -1.7469,1.3726,-0.70064,-0.002322,-0.4638,-0.76553,1.2405,3.7311,-0.6881,0.4764,-1.1695,-0.49994,0.11215,0.47815,0.6032 -1.3743,-1.4331,2.6702,-2.0115,0.41254,1.2669,-0.88781,2.8257,-0.51061,1.4727,0.47111,-1.1231,0.5132,0.79077,-0.74426 -0.53143,-2.6644,-2.54,0.61776,-0.016941,-0.26328,-2.1703,1.6049,-0.55378,0.17929,-1.0646,0.17352,-2.4737,-0.44005,1.5167 3.9993,-3.415,-0.8666,-1.0538,-2.0322,0.63606,1.2331,1.575,-0.043343,1.0773,-0.38409,2.1846,0.078876,0.22562,-0.59411 -0.48267,-2.3013,-1.7085,1.8761,0.91677,-1.2222,-1.6438,1.6382,-0.5187,-0.13532,0.20814,0.56662,-1.2855,-1.725,0.16254 2.9541,0.70259,-2.0314,-2.0533,0.76416,-2.0795,1.4258,1.2928,1.8381,0.17387,0.76267,0.18677,0.23768,0.37108,-0.15914 0.58833,-0.23371,0.33491,1.7102,1.3433,2.0857,0.59945,2.4139,-0.42853,-0.69512,0.64635,-1.6395,-1.8469,1.1856,0.21297 -1.4599,1.7395,-1.9061,1.0485,-2.161,1.771,0.73863,-0.17614,-0.72307,-0.89526,0.94125,0.67464,0.020806,-0.95624,-0.089482 0.92485,-1.3775,1.4521,-0.72355,-2.7099,1.9493,-0.21853,1.5943,-0.69706,1.7143,0.054725,-1.3948,0.98476,1.0427,0.26612 -2.3825,-1.5233,0.9681,-1.206,-1.8512,1.7409,-0.86531,0.15604,-0.57743,0.30943,1.1025,-1.0325,0.71474,-1.1275,-0.6445 -1.7776,-1.8758,-1.3731,-0.48106,-0.20848,1.1366,-3.1073,-0.26883,-0.82755,-0.089781,0.20094,1.3439,-0.46936,-0.95847,1.0777 3.0259,1.3994,-1.4201,-1.3662,-1.0095,-2.5006,-0.041405,-0.62101,1.32,-0.53205,0.30549,-1.605,0.066382,1.232,0.45423 4.9838,-2.9235,-0.89316,-0.32178,-0.71472,0.62369,1.1238,-0.60119,-0.0082607,-1.01,0.68256,0.21477,0.35842,-0.29268,-0.31617 -3.2707,-1.8214,-1.1314,-1.1913,-1.4066,0.66639,-1.4973,-0.26258,-0.023787,-0.22352,0.97926,-0.24268,-0.68219,-0.52847,-1.0668 -1.9108,-3.89,0.84499,-1.0122,0.018228,-0.30452,-2.8212,-0.4906,-0.028798,1.3177,-0.48318,0.34574,-0.45608,-0.83806,-0.35425 -3.0936,-2.6157,-1.3325,-1.1507,0.20614,1.7669,-3.015,-0.31711,-0.8444,-0.24453,0.014534,0.61966,-1.0088,-0.25993,-0.051525 -1.2507,1.5774,0.081942,1.1967,-2.3341,-0.46596,0.25768,-0.2909,0.07972,-0.21025,1.0556,1.5494,-0.181,0.059129,0.089558 -2.0891,-3.1137,-1.0578,0.062317,0.80788,0.27482,-2.6478,0.7959,0.58046,0.46802,-0.56545,-0.3472,-2.1373,0.26403,0.25614 0.97654,0.5299,0.73957,1.6793,-1.7064,-2.0436,1.9766,-1.2529,-0.015101,-0.32222,-2.0345,0.040862,-0.3538,-0.43188,0.35632 -2.1345,0.18511,-2.141,0.78778,-0.91666,0.79732,0.98608,-0.46185,-0.10281,-0.22036,1.0775,-0.13381,-0.88276,-0.1897,-1.4355 1.0823,-1.9974,2.6687,-0.71382,-3.0342,0.88852,-0.18623,1.0833,-0.012076,0.73498,-1.1829,-0.24501,-0.13436,-1.0385,-0.83593 -2.6303,-2.7208,-1.264,-1.5219,0.53262,1.6423,-2.4781,0.20818,-0.9354,-0.38413,-1.0991,0.028258,-0.12401,-1.2163,0.12915 -0.65666,1.258,-1.5595,1.8572,0.11375,-1.103,0.81058,2.7828,-0.45908,0.62554,-1.4368,-0.77588,-0.65323,1.2324,0.44036 3.7841,-3.2113,-2.4885,-0.86101,-0.5143,0.57364,2.4432,0.16385,-0.90798,-0.81105,-0.65414,2.1554,0.075855,-1.0123,0.73438 -1.4119,-2.9883,0.66781,0.5702,0.2249,0.95797,-1.3864,1.4713,0.87647,2.2641,0.69083,-1.411,-0.045297,0.69665,-1.0089 -2.4031,-2.3743,-0.71903,-0.9085,-0.90731,1.1066,-1.508,1.168,0.09922,-0.47566,0.44799,-1.2705,-0.0012045,-1.0407,-0.947 -2.5408,1.0434,-2.9211,-0.37335,-0.69349,1.1709,1.093,0.0065574,-1.3467,0.74633,-0.20294,-0.33319,1.006,0.56311,-0.14831 4.0531,-0.92397,-0.43432,-2.3636,-1.8622,-1.4477,-0.43292,-0.2813,0.28102,-0.10929,0.64027,0.015622,0.61694,0.70031,-0.14075 -0.11914,-0.31871,0.059272,2.6119,-1.8211,0.37654,0.20154,-0.97574,-0.37497,-0.64667,0.27962,0.86874,-0.2366,-1.2862,0.76051 1.238,2.0699,-1.7962,-1.114,-1.0526,-1.128,-1.21,-0.71455,0.38218,0.079906,1.2916,-1.0865,0.95302,1.1438,0.59413 -2.3525,-2.4093,-1.8187,1.2121,0.73639,-2.8615,0.32398,-0.70502,-0.19431,-0.28907,0.07465,-0.18224,-0.68705,-0.18786,-0.75302 3.2685,-2.3828,-2.3186,0.33299,-0.98338,0.63679,1.8473,0.47404,1.3556,-0.21093,-0.12208,0.78948,-0.06006,0.15132,0.63752 1.6304,1.7037,-0.32578,-1.5641,-1.973,-1.5576,-1.2165,-0.082274,-0.23189,-2.4086,-0.26031,-0.87907,0.63467,0.95636,0.152 -0.84307,2.6256,1.678,0.11767,-1.618,-1.0396,-0.65302,-0.31943,-1.3259,-0.95265,0.73668,1.2832,0.6967,0.91687,0.27409 0.47377,2.1772,1.5058,-0.25734,-2.5501,-1.8219,0.3327,0.10179,-0.74613,-1.0524,-0.72511,-0.17897,0.12489,1.4069,1.0504 4.5402,-1.6499,-1.0912,0.028095,-0.66262,1.326,-0.89582,0.13973,-0.25328,1.0786,-0.25362,-0.35792,0.74443,0.25816,-0.41174 -1.8664,-1.1381,-0.68661,2.1704,-0.90068,-0.79479,0.41039,-0.31304,0.63873,0.082922,1.7903,-0.85379,-1.048,0.23013,-0.56932 -0.10014,2.6676,-1.5652,0.57181,-0.89917,-0.32614,-1.0299,0.53845,0.091888,1.6095,-0.9647,-0.72616,0.88782,0.67622,0.068025 3.8433,0.020547,1.0239,1.3399,-1.3471,-1.6782,0.31352,-0.81288,-0.065522,-0.69806,-1.3395,0.063529,-0.77217,0.81384,-0.64923 1.5666,1.7521,-0.3876,1.3736,-0.37966,-1.0138,-0.26941,0.021864,-1.3773,2.2484,-1.2069,-0.74759,0.6962,0.35997,0.20514 1.2953,-1.4265,2.1565,2.0617,-1.5878,0.71692,-0.51362,-0.31235,0.4557,0.020478,-0.12313,0.91725,-0.004178,-1.0731,-0.15409 1.4721,0.72342,0.69719,2.2161,-0.99356,-1.6491,-0.15218,-1.2962,-0.73309,-0.13606,0.37229,-0.12434,-0.21179,1.7177,1.1789 2.6539,1.5705,-1.383,-2.0718,-1.1624,-2.0393,-0.0094489,-0.67086,0.65392,0.023442,0.37445,-1.5952,1.0658,0.42444,1.0901 -1.3169,2.4875,0.35948,1.8059,0.45373,-0.87809,-0.68513,1.3673,-2.3109,0.7796,0.67348,0.34325,-1.8998,0.13461,-0.95259 0.14922,3.006,-2.039,-0.75976,-0.2528,0.22256,-1.5052,0.8486,-0.63408,0.4674,0.18047,-1.4477,0.45134,0.27026,-0.38686 2.5564,0.72822,-1.2401,0.80898,-0.1838,-0.91256,-0.29067,-2.2116,0.38104,0.16413,0.84218,-2.1131,0.18798,0.78697,1.5779 4.6563,-2.0465,0.15311,-1.9108,-0.76317,-2.0051,-0.24211,0.34324,0.044353,-0.074446,1.4613,-0.61383,-1.0283,0.57041,1.1748 0.27976,0.50996,1.141,2.4343,-1.3623,-1.327,-1.0167,-0.017386,0.83257,-0.61931,1.0486,0.86466,-0.33709,0.79983,0.27715 0.3489,-0.9481,-1.9834,1.1179,0.074997,0.14852,0.67645,-2.2889,-1.2311,1.8635,-0.69553,1.0782,0.32155,-0.53169,-1.0257 -0.91926,-0.54981,-1.8091,0.74401,-1.092,-0.5186,-0.02183,-0.98881,-0.77862,2.1347,0.97822,0.70279,0.46792,0.38877,-0.37511 2.9265,0.55307,1.3379,0.36855,3.1222,-2.4812,-1.3524,0.82515,-1.9708,0.86453,1.6678,0.42652,0.6025,-0.70966,-1.4106 0.5032,-1.0626,-2.2607,1.6092,-0.56053,0.45951,0.11279,-1.9027,-1.4836,1.217,-0.2246,0.61904,0.80005,-0.78785,0.13811 3.3462,-2.6055,-2.2837,0.52449,-1.0127,3.8732,1.4425,0.46511,-2.6943,0.67567,-0.86247,1.0974,0.85128,-0.19445,-0.2408 -0.30024,-1.4347,-1.6899,1.637,0.02131,0.30563,-1.0192,-1.3613,-0.8766,1.7054,0.64402,0.87767,-0.18269,-0.33665,0.26562 2.9442,0.72609,-1.0257,-3.1326,-2.0575,-0.72753,-1.6118,-0.0543,0.15205,-1.2563,0.91201,-1.4774,0.11611,-0.5361,0.62808 2.5629,0.11572,-2.7961,-1.301,-1.6743,-0.69017,1.1526,0.93811,1.2275,0.37496,0.44616,0.22744,0.63934,-0.54194,0.072953 0.15098,0.25962,1.0431,-0.95464,-2.3899,-1.2903,1.6793,1.0288,-0.43454,-2.6484,-0.23356,0.51372,0.059508,1.0569,-0.30738 -0.47494,-1.0914,-1.7226,1.2382,-1.3923,0.67336,-0.6851,-0.80836,-0.089628,2.0254,1.1018,-0.06223,-0.36778,0.67752,0.25067 -1.3889,0.13067,-2.8878,-0.92577,-0.97764,0.2172,-0.42283,-1.2922,-2.1073,0.17446,-0.29488,1.17,0.61326,0.2703,0.049764 -1.5713,-1.7898,-1.5711,1.861,0.63072,1.5074,-0.66401,-0.061291,0.030156,0.45936,1.2486,-0.91246,-0.95123,-0.12625,-0.35968 0.94897,-1.4947,-1.6181,0.97125,-1.0069,0.45205,-1.368,-1.1805,-0.3851,1.7748,-1.2128,0.47536,-0.37787,-0.38255,1.8284 -1.442,-1.0904,-2.2246,-0.88884,-1.9272,0.64718,-0.70104,-0.80067,-1.0971,0.40238,0.63533,0.13738,-0.46054,0.41063,-0.42529 1.0083,-1.6538,-1.8078,0.88097,-0.90314,1.3758,-0.85238,-1.6396,-0.93351,1.352,-1.0528,-0.84665,-0.12514,0.066652,1.9689 2.1886,0.1883,-1.6519,-0.46221,-1.687,-0.59847,0.016767,-0.66805,1.1093,1.4735,1.1985,0.23168,0.75497,0.046065,1.6857 0.028379,-1.6098,-0.62412,0.73986,-1.4194,0.37715,-0.20726,-1.7752,-0.51511,2.2182,0.81585,-1.0226,-0.84138,0.26707,0.6296 -1.5373,-1.4177,-1.8115,1.2326,-0.07494,1.51,-0.58256,0.06279,0.85714,0.99138,1.4532,-0.75069,-1.0445,0.55704,-0.58683 3.3992,0.19597,1.1075,1.3002,1.3081,-2.5206,1.8784,-0.085967,-2.1643,0.20833,-1.4643,-0.62674,1.3007,0.29242,-0.50761 1.7849,0.96205,-0.74859,1.7752,2.7954,-0.030644,0.064909,0.1624,0.12635,1.3417,-0.14484,-0.50478,1.9365,-0.23774,-1.1067 3.5411,2.1822,1.2806,-2.1113,1.1688,-2.7505,0.94604,1.6321,-1.6307,0.21723,-0.8158,-0.80593,0.63582,0.97751,-0.21476 -0.22229,-1.2909,-1.5097,1.2269,-0.14496,1.8416,-0.3168,-2.0464,-1.1466,0.26192,0.60526,0.27723,0.84225,-0.99606,0.09331 2.3867,-0.28777,0.24524,-0.71407,-0.20229,-0.49755,-2.529,0.30069,-0.49693,0.28106,2.8229,0.77711,0.97283,-0.032671,-0.60047 2.5034,-0.040664,2.2142,0.79727,-0.35215,-2.8037,1.7072,0.11016,-1.0239,-0.066964,-1.2719,0.37916,1.2463,0.61772,-0.34237 2.2886,-0.22947,-2.2729,0.24023,-0.72312,-0.62374,1.02,0.016421,1.8042,1.1357,0.61729,-0.32381,0.27691,0.68126,1.6151 0.7011,1.1031,-0.93128,1.8337,4.313,-0.74374,0.075896,0.42627,-1.1854,-2.2919,0.78887,-1.3473,1.083,0.67024,-0.22015 -1.1501,-0.61276,3.2155,0.30637,-1.9289,-1.8033,0.86188,-0.48815,-0.12634,-0.08429,1.3787,0.31222,-0.1508,0.29284,0.48941 -0.087001,1.6817,-1.4743,2.0001,-2.1492,0.66611,0.23512,0.24025,0.14214,1.0085,-1.1622,-0.11256,-0.15647,0.82554,1.1035 -2.9932,0.42173,-3.5966,-0.74904,0.2776,-0.25378,-0.32661,-0.022309,-0.85864,-0.10928,-0.26732,0.88219,0.90458,0.55228,-0.58863 -2.1481,1.9806,-0.21835,-0.46343,-1.9303,0.43722,1.7592,-0.41174,-1.3671,0.051528,-0.21901,-0.16601,0.97742,-0.071828,1.3373 0.91161,1.437,-2.3823,0.24564,-0.14041,0.6142,-0.98894,-0.1272,-1.0286,0.55522,1.6252,-1.5146,-0.3918,0.3482,0.046467 -0.086621,-1.8613,2.8174,-2.0554,-1.7098,1.5728,-0.067219,0.98818,-2.1963,0.17135,0.49688,-1.4118,1.7908,-0.89436,-0.66407 4.522,-0.70219,-0.62491,-0.70498,-0.98404,-1.846,0.09241,-0.78388,1.5689,-1.5079,-0.27085,-0.67765,-0.49338,0.11844,-1.1619 3.9908,-0.35477,1.7675,0.97974,-0.55504,-2.4793,1.1339,-0.84165,-0.65742,-0.95965,-1.1858,-0.27423,0.20572,0.75966,-0.29965 2.399,1.1312,1.3066,2.1871,0.88692,-2.49,0.049909,-0.7119,-1.3814,0.36885,-0.39021,-0.50907,0.72479,1.2605,-0.0043779 1.188,1.3111,0.29996,2.5688,-1.3165,-0.92122,0.44165,-0.9982,-0.24369,0.66892,-1.079,-0.071992,0.34165,1.0752,1.0448 -1.9137,0.10407,1.0849,0.88199,1.7759,-0.86649,1.5574,1.696,-1.9526,2.9141,-0.066805,-0.369,0.3365,0.11573,0.010366 2.4528,-1.0098,-2.9721,0.44879,-0.033922,-0.19601,2.2157,0.38859,2.1452,0.15056,0.45109,1.1821,0.0060983,0.48372,0.39377 1.6417,1.807,0.014376,-1.1595,-2.5013,0.0058284,-0.77794,0.74824,-1.054,-3.459,-0.46088,-0.70647,-0.7631,-0.92729,0.27506 3.5229,-3.0331,-2.0659,-0.031942,-1.5035,1.3049,1.6513,0.60306,0.32379,-0.038636,-0.64424,1.303,0.26587,0.10654,0.67796 -1.4043,-1.2549,-1.602,0.94267,0.74324,0.78439,-1.5246,-1.1273,-0.27996,0.70679,0.7781,1.0318,-0.74792,-0.05347,-0.0086865 2.7442,1.2294,0.26675,-1.7055,-2.4661,0.10576,-1.8374,0.50917,0.053073,-1.1582,-0.65901,-0.44018,0.42458,-0.11495,0.67619 1.9756,1.1146,-2.5451,0.65533,0.40824,-0.42237,0.94316,-0.17655,0.88341,0.59287,-1.2122,-1.8312,0.064111,-0.18029,0.083635 -0.013563,-3.2413,2.4634,2.2203,1.0077,0.67349,0.73283,0.6353,-1.6396,-1.0621,3.0394,-0.049133,-0.68295,0.40092,-0.69991 -1.2117,-0.94844,-1.9363,-1.7203,-2.0852,-0.84486,0.49145,-1.4404,-1.4104,-0.12299,-0.35342,-0.03904,-0.70799,0.066144,-0.13259 3.1405,1.1176,0.1043,-1.5712,-1.5578,-0.92769,-0.66565,-0.0052777,-0.45398,-2.7653,-0.35158,-0.52599,1.2089,0.098321,-0.0414 -0.20866,1.1487,0.49788,1.6516,-0.29665,-0.65839,-0.6928,1.2583,1.4552,-0.90384,0.80126,1.1779,0.167,0.56116,-0.0805 -1.8001,-2.8282,0.8407,0.018992,-0.55258,-1.3131,0.14232,-0.58599,0.22479,0.51626,1.437,0.35804,0.40717,-0.046489,-1.7318 0.97529,-1.2803,-0.41471,2.6503,0.40298,1.1903,-1.6341,1.6472,0.722,-0.99921,1.0504,-0.083399,-1.2696,0.71889,-0.48181 -0.46788,-3.1109,2.3079,-1.7586,-1.9052,1.094,-0.46048,-0.12258,-1.0797,1.4671,0.93474,0.11412,0.61496,-0.42573,-1.4966 4.0101,-1.5128,-0.80398,-2.7898,-1.1404,-1.4562,1.5987,0.77122,0.70357,-0.99529,0.73572,0.34557,1.0245,0.73235,0.89477 0.3506,1.2204,-0.050255,2.941,-0.64418,-0.17396,0.24026,-2.1051,-1.098,-0.61435,-0.33327,0.6927,0.38452,0.2416,1.0477 -1.8868,-2.4893,2.8094,-0.83724,-0.65985,-0.39208,0.17856,0.60199,-0.76238,-0.73649,1.5201,0.49833,1.0681,-0.8763,-1.482 2.4405,1.216,0.058329,1.6098,-0.39021,-1.1017,0.67127,-0.99759,0.52815,-1.0775,-2.016,-1.3316,-0.17048,0.68303,0.35137 -1.0722,-3.9719,-0.14171,-0.89717,0.76901,-0.038288,-1.9769,-0.23214,-0.015348,0.43019,-0.96983,1.1888,0.23929,-0.9463,-0.50666 2.7232,-0.78472,-1.7795,-0.59942,-1.1442,2.4802,-0.54924,1.3473,0.24259,1.254,-0.26638,1.1484,1.4581,0.52317,-1.3512 -1.3812,0.49813,-1.2936,1.712,1.4868,-0.018288,0.66977,2.7097,-0.65167,0.26636,-0.84027,-1.2856,-1.6311,0.5285,-0.063224 -0.97015,-2.1131,0.5408,0.92027,-0.026168,-1.4935,1.2267,-1.6739,-0.57611,1.3293,1.5018,0.5602,1.1251,-0.37755,-1.662 -2.1044,-1.7728,0.63512,-0.3263,-0.47597,-1.6629,0.75687,-0.14546,-0.92206,0.71363,2.0266,0.72218,1.0367,-0.12849,-1.7022 -1.5523,-4.0071,1.1137,-0.76839,0.025787,0.30473,-0.95986,1.0926,0.64543,0.86574,0.12521,-0.73582,0.56161,-0.60649,-0.94289 4.3212,-2.1766,1.1796,0.68689,2.272,-0.87761,0.089336,-1.4702,-1.4066,0.088365,1.9911,1.1344,1.035,0.13579,-1.3392 -1.7652,-1.0332,-3.0036,-0.32745,-0.43282,-1.2263,-0.68787,-0.032601,0.26847,-0.72453,-0.37053,0.24566,-1.0604,0.10781,-0.51044 -2.6621,-0.50267,-1.5708,-0.20511,-0.42643,-1.8164,0.1677,0.063376,0.82606,0.22383,0.62737,-0.75013,0.57734,0.69179,-0.13178 2.4344,-1.3122,3.1932,-1.0914,-2.8184,-0.13623,0.051945,1.5894,-0.6382,0.4525,-0.95978,-1.3128,-1.593,1.0698,0.6185 0.69517,-1.9363,3.4699,1.9671,0.6886,0.1666,-1.0199,2.6355,0.042424,-0.91532,0.84191,1.1707,-0.36779,-0.20904,-1.1503 1.3638,2.9136,-0.81599,-0.40064,-0.92089,-1.1226,-0.75431,-0.40281,0.47389,0.79818,-1.5935,-1.0951,1.4336,0.23819,-0.3134 2.6588,-0.28259,1.5353,0.74393,-1.637,0.0046479,-2.1331,-0.31142,0.92946,-0.3025,-0.19012,0.83474,0.88953,0.24902,-0.50955 -0.31917,1.5056,-1.7178,1.8906,2.377,-0.13326,-0.9243,0.38398,-1.6087,-0.80276,-0.45142,-0.71229,-1.2615,0.90411,-0.6736 4.5481,-0.70067,-0.83604,-1.4289,-1.1477,-1.4131,-0.34217,-0.38036,1.5004,0.41437,0.92838,-1.2927,-1.0454,-0.20036,1.0781 -0.038448,-2.8468,4.0906,-0.088493,-0.9469,-1.5253,0.69121,-0.16595,-2.1386,0.38582,1.1909,0.78187,0.14507,0.01246,-1.1409 -0.34337,-3.6946,3.7702,0.48628,0.83165,-1.2113,1.2721,0.47215,-0.88168,0.27387,0.34422,0.40988,0.11085,-1.4662,-1.1614 0.44516,1.7819,-0.39545,-0.35438,-2.1133,-0.69132,0.99126,1.1846,-0.11349,0.14009,-2.3908,-0.14388,0.69993,0.71404,0.70354 1.8637,0.28316,0.11075,2.4655,3.5859,-0.69961,0.26231,-0.02875,-0.006823,-0.62312,-0.21257,-0.13304,1.9021,0.083524,-1.0328 -0.94835,-2.4351,3.681,-1.0644,0.57896,-2.1126,1.0564,-0.40066,-2.6418,0.61653,0.75888,0.54433,-0.38252,0.24118,-0.79548 -1.3729,0.047462,3.4516,-0.53887,-0.85717,-1.9387,1.021,0.22739,-1.4617,-0.3898,1.6506,0.31336,-0.014867,0.99472,0.19221 1.8304,1.0666,0.22881,0.14676,-0.0055916,-2.2471,-1.0003,0.38455,0.75712,-0.28642,0.40295,-0.1576,2.935,0.68022,-0.89507 -2.7938,0.68046,0.69649,0.12713,-1.8746,-1.4319,1.08,-1.158,-1.715,0.91987,1.0651,0.5368,-0.79406,0.79138,-0.38351 -1.0458,0.61216,1.2073,1.162,-1.5795,-0.3851,-0.66226,1.2809,0.77856,-1.1255,1.9598,1.2275,-0.55004,-0.32923,-0.31751 0.31316,1.5257,-0.57445,2.706,-0.8491,-0.35071,0.56991,-0.37719,-0.55894,1.0374,-1.0107,0.15682,0.64803,0.7991,1.1675 -1.4295,-1.6131,2.3943,-1.0364,1.2335,-2.3444,1.5999,-0.59838,-2.3377,1.4353,0.64378,0.43175,0.48588,0.60251,-0.74993 -1.3509,-2.7313,3.503,-0.60484,-0.16621,-1.8989,0.68212,0.05638,-1.7655,0.63444,1.4375,0.1724,-0.062318,0.16145,-0.68959 -0.0025385,-2.9491,4.4645,0.10861,-0.49558,-1.1235,-0.3578,1.3212,-1.5906,-0.26955,0.88813,0.23978,-0.13457,-0.18143,-0.96482 -1.8455,1.4441,-2.6311,-0.034622,-1.878,0.91532,2.0148,-0.23885,-1.075,-0.028789,-0.3944,-0.42698,0.5635,-0.20887,0.51193 -0.97674,1.7298,-2.3186,1.8344,0.31965,1.032,-0.016452,1.0247,-0.81297,-0.43463,-0.7953,-0.28773,-1.2321,-0.46835,-0.39405 -0.98104,-2.8042,1.6791,2.2925,-0.35558,-1.0109,1.2028,1.1016,-0.41674,-0.21619,0.59711,0.036126,-0.14518,-1.6716,-0.49244 0.083023,-0.52272,3.8092,-0.66598,-0.27113,-2.2799,1.8051,-0.77068,-1.9991,0.77866,-0.42276,0.54903,0.36081,0.98334,-0.8125 2.2864,-1.315,-0.76856,1.2527,1.3289,0.59445,-1.7344,0.54052,0.81332,0.96585,3.6664,-0.75328,0.2476,0.28652,0.50231 -1.4675,0.25965,-0.67702,0.94046,-1.5364,0.11978,1.7141,-1.3312,-0.93203,1.2768,-0.72344,-1.1721,0.2554,0.40776,0.98713 1.0127,-0.47209,-0.76299,1.8827,0.11761,-0.12245,-2.1405,0.49967,1.5037,-1.5765,0.83907,-0.28621,0.27047,-0.75997,-0.87831 0.99666,-3.2187,4.3665,-1.8825,-1.1723,0.30693,-0.20862,1.3586,-2.0237,1.3289,0.35724,0.14252,-1.275,-0.12328,-1.1176 2.0067,1.2276,0.96031,1.6502,-1.7621,-0.92502,-0.81858,-1.5732,0.25269,-0.051122,-0.65278,-0.085421,-0.82536,0.23023,1.0562 -1.7515,-1.7934,1.4335,-2.4856,-0.86253,-2.0759,0.91075,-1.6426,-1.9539,1.1455,0.35587,0.34176,0.83085,0.55635,-0.6224 -1.517,0.6822,3.2484,-0.52919,-1.106,-1.8321,0.44763,0.27482,-1.2244,-1.0151,0.75153,0.43248,0.64336,0.76333,0.45332 -2.8008,-1.8301,0.83847,-0.71496,-2.1399,0.055894,-1.1338,-0.087624,0.33593,1.3024,0.81091,-0.79078,0.14521,-0.62494,-0.16685 -2.2976,0.090116,1.1226,-2.1417,-0.61503,-1.2782,1.6042,-0.6013,-2.2048,1.6587,0.35992,-0.38321,0.81704,0.99266,0.50126 -1.5926,-1.5208,0.82355,-2.6247,0.48148,-2.7372,0.79205,-1.5485,-2.6839,1.5349,-0.8596,-0.20791,0.40604,1.6891,0.86798 1.9539,1.0046,1.8282,0.13081,-0.076262,-1.3074,2.0228,1.8778,-1.0117,0.83009,-3.4711,-0.30633,0.29688,0.14132,-0.067556 -0.36065,-1.3348,-1.0012,0.78891,-1.8686,0.50178,-0.67299,-1.8043,-0.91832,0.51217,0.11116,-1.1125,-1.0578,-0.60511,1.1241 -1.9601,-1.2182,1.1389,0.96714,-0.096768,-2.1453,1.5528,0.12086,-0.82711,0.97919,1.0152,0.94145,0.79412,0.50218,-0.36911 -2.4009,0.20895,0.40565,1.1533,-0.15866,-1.2806,1.5221,0.9035,0.19834,1.0008,0.94234,1.0424,-0.33213,0.82452,-0.14322 -1.1548,-3.0115,2.4344,-0.76431,-1.057,-0.80048,0.18983,-0.52058,-1.6582,1.3216,1.3867,0.93079,0.76035,-0.83409,-2.1424 -0.97144,-1.0387,0.59934,0.73228,-0.50595,-1.5174,1.6657,-0.41048,-1.4479,1.6754,0.70839,1.7949,1.628,-0.061996,-0.94133 -1.3454,-0.17962,1.4179,0.89374,1.4362,-0.20698,2.3996,-0.22873,-1.3209,3.0877,0.4025,-0.083657,0.71584,1.319,-0.23477 -1.5895,0.27693,1.5701,0.9427,-0.38043,-1.3717,1.8762,0.035364,-0.46668,1.3393,0.69718,0.71128,0.23651,1.1728,0.73445 0.49331,-1.7123,-1.6345,-1.6833,-0.85931,-1.5009,2.1152,0.016626,-0.65452,0.94173,-2.6154,0.83171,0.97027,0.30645,-1.3923 3.3792,0.033852,-0.45877,1.141,0.12772,-0.13313,-0.57415,-2.8524,-0.6457,-0.85122,1.0171,-1.8747,0.31531,-0.096528,1.3187 3.8259,-0.27539,-2.1902,-0.055672,-0.93673,-1.3076,0.57882,0.19628,1.8331,-1.4153,0.57354,-0.23754,-0.29559,0.66358,-1.978 4.0307,-1.2623,-1.8243,-0.34984,-0.054144,-1.768,2.5523,-0.7147,1.1354,-0.94605,0.5756,-0.53392,-0.6468,0.38712,1.3021 -0.16327,-0.51113,1.9463,-1.0227,-1.046,-1.7016,2.9467,-0.14574,-1.7132,1.7167,-1.1311,0.15191,1.1287,-0.29451,-0.19958 1.5724,-0.39699,-0.019989,-1.5067,0.034251,-2.1569,-1.7039,-0.048141,0.61649,-0.47529,2.927,0.8023,1.7427,-0.5776,-0.71238 -1.8494,-1.2262,-2.3804,1.1772,0.056916,-2.1701,0.25031,-0.25272,0.60129,0.49115,0.16112,-0.0041742,0.10538,0.51374,-0.7403 4.4964,-0.58349,-0.85854,-3.8004,-1.2456,-0.73852,0.29308,0.65176,-0.98705,-0.078441,1.8403,-0.092511,0.67706,-1.077,0.9726 3.3396,1.0903,1.8845,-2.1252,-2.1316,-1.8377,-0.27292,0.68842,-0.33127,-2.9328,-0.67353,-0.2622,-0.67031,0.20359,-0.13971 -0.071622,-1.3837,-1.2713,-0.36201,0.01971,-1.3947,1.1981,-1.4437,-0.98755,2.4909,-2.2789,0.0036303,1.4709,0.82151,-0.14206 3.0765,-1.2789,-0.65418,-0.36598,0.012826,-1.5318,0.39402,0.086223,-0.25061,1.8754,2.8056,1.1165,0.73607,0.49402,2.068 2.2144,1.802,-1.4938,-1.6143,-0.46957,-1.493,-0.62006,0.060327,0.59888,-0.74109,0.93254,-1.8136,0.45022,0.17358,0.5549 0.11653,0.40426,1.9012,0.3765,-1.1231,-1.0114,2.4384,0.12851,-1.652,2.0078,-0.80235,0.91767,1.3677,0.1083,0.24027 -2.8226,-2.2392,1.443,0.7833,-0.089795,-0.71268,-0.40608,-1.7942,-0.62531,0.87907,1.3914,0.0024015,-1.5401,-1.0161,-0.69744 2.9509,-2.9989,-0.57753,-3.2031,-0.66133,-1.9629,0.84407,3.1112,-1.0282,-0.090221,1.6014,2.0669,0.32522,0.036512,0.50076 -1.0102,-0.06925,4.1552,-2.0698,-1.04,1.6252,-0.70868,0.98308,-1.1762,0.29187,0.50811,-0.45239,-0.15607,-0.92899,-0.12672 2.4625,-1.1698,-0.75081,1.8349,3.0727,-0.49564,0.22503,-0.84616,-1.4519,-0.93157,3.5825,-0.25765,1.0178,0.9018,0.52923 -2.7193,-3.768,-0.44685,0.29959,2.0136,0.12975,-2.7355,-0.51432,-0.61464,0.45684,-0.46659,0.14946,-1.7081,-1.1083,1.0744 -0.96421,-3.0121,0.39803,2.4202,0.4303,2.7556,-0.47371,1.0594,-1.1323,0.038718,1.306,-1.4003,0.027346,-0.56368,0.028805 3.2985,-0.2403,-1.4354,-1.9587,-0.87369,-2.299,1.5601,-0.20413,1.936,0.0016759,0.72789,-0.011384,-0.22739,0.464,1.6165 1.9654,-0.5394,-1.9717,1.6992,0.40786,-0.91838,0.62794,-0.95874,0.10083,-0.24536,2.2701,-0.60177,0.75336,1.2417,1.6325 1.6303,0.45828,1.1542,-0.055835,-0.18254,-0.89491,-2.8207,1.0513,-0.38694,-1.6779,2.5549,0.74956,0.72946,-0.0024495,-1.1939 0.49534,0.75525,1.0109,1.9446,-0.52494,0.33065,-1.424,-0.26003,-1.0864,-1.2624,2.2755,0.3362,-1.4623,1.3608,-0.29902 -0.28432,-4.4836,1.7445,-1.1355,0.56819,0.45552,-2.0555,-0.45434,-1.1793,2.3703,-1.0566,-0.72799,-1.1586,0.60723,0.87318 0.32467,1.6976,-0.20625,2.8705,-0.3521,0.34498,0.18704,-1.2489,-0.55555,0.89202,-0.41009,0.41485,-0.012249,0.60962,1.1304 -2.4977,-3.4652,0.48063,-0.29755,2.4245,0.49761,-2.6625,-0.64824,-0.59919,1.2761,-0.26525,0.24869,-1.8227,-0.23253,0.86214 1.2664,-4.4018,0.57178,-1.122,-0.20301,1.0846,-0.96828,-1.731,-1.1378,2.0714,-2.5115,0.10997,-2.2475,-0.57765,-0.14852 1.0721,-4.2795,2.1154,0.58174,-1.0256,0.17775,1.1669,-1.907,-1.9174,0.43696,-1.0619,-1.1317,-0.77929,-2.0096,-0.55636 -0.25814,0.12323,-0.34703,2.5437,1.9301,0.32863,-0.44191,0.78014,0.099544,-3.0346,0.8995,-0.19564,-1.5555,-0.20274,-0.36323 -2.2585,-2.6558,1.3437,-0.94089,-0.2126,1.3995,-2.0985,0.27978,-0.25718,1.6013,1.5378,-0.16658,-1.4857,1.3413,-0.93728 -2.0013,-3.3212,0.30221,-0.48541,1.135,-0.58675,-3.0282,-1.3547,-1.5213,1.3589,-0.15119,1.1951,-1.9015,-0.59015,0.95653 3.9893,1.0612,0.13482,1.2343,1.0643,-1.4093,0.48277,-1.6964,-2.0735,0.16366,-0.45774,-1.7482,-0.12939,-0.98815,0.78637 4.5133,0.0083848,-0.47182,-1.7204,-0.70956,-2.6681,0.13941,-0.94794,0.83142,-0.35084,0.6043,-0.89833,-0.10997,-0.46206,0.12416 0.96774,-0.23869,-0.75707,1.694,-0.051742,1.1362,-2.0767,2.0061,1.2055,-0.33747,1.1116,0.15522,-1.1169,1.1107,-0.86047 1.0437,-2.129,-1.2736,0.85574,-1.0777,-0.94132,-0.97993,-0.03386,0.14314,1.3846,-0.84727,1.336,0.42629,-1.2726,0.33235 0.18818,-0.45473,-0.77919,2.6451,-0.50787,0.0090828,0.12389,0.21643,0.51459,-0.44913,0.77078,1.3318,1.0481,0.12298,-0.80197 1.3684,-2.1045,-0.80213,0.44547,-0.8165,-1.7334,-0.40681,0.62545,-0.74351,1.4704,-0.42902,2.1286,1.3275,-1.6711,-0.25951 3.1263,-0.80143,-1.7967,-0.51549,-0.43586,-1.0196,1.4196,0.23718,1.8644,1.0263,-0.17037,0.10055,0.38036,0.27055,0.69774 1.7249,-3.1184,-0.72678,0.36755,-0.93904,-0.94966,-1.3118,0.40197,-0.67235,1.1919,-0.94939,1.0385,0.29083,-1.1237,0.82313 0.20822,0.42532,1.8777,1.4707,0.97738,1.0523,-2.0126,1.6469,-0.41186,0.35969,2.0116,0.50272,-1.7238,1.5658,0.2624 0.63447,-0.39657,-1.3326,-0.32933,-1.083,-1.7904,0.012113,1.3558,-1.3166,1.095,-0.37184,0.99842,2.3797,0.14379,0.79145 1.5827,-1.6747,0.066467,3.0144,0.39104,1.7825,-0.81082,2.1251,-0.42872,0.45931,-0.27129,0.035669,1.601,0.5494,0.32644 4.4811,-1.939,-0.30921,-1.3737,-2.1005,-0.18082,-0.25266,2.4329,0.68149,-0.88972,-0.34006,0.24206,-0.72038,0.90394,-1.1884 0.55664,-3.2669,-1.4151,1.8011,-0.80743,-0.52444,-1.3421,-0.024526,0.004667,1.1405,-0.2212,0.32087,0.26526,-1.127,0.090441 1.2658,-4.2201,0.3376,-0.71111,-0.13434,-0.58331,-0.76771,-1.3545,-1.4354,1.913,-1.3778,1.5452,-0.62324,-1.0395,-1.3241 2.1968,-0.25622,-0.83797,0.33689,1.2086,-2.3,0.017807,-0.07001,1.0101,0.058316,2.2793,0.025181,1.8346,1.1115,0.47569 -1.0722,0.048368,-0.26941,1.8798,0.88035,-0.13064,-0.15427,2.9663,0.055667,0.39092,0.25947,-0.64974,-1.3872,0.15522,-0.41244 -0.49797,-2.9969,-1.4403,1.5887,-0.49789,-2.589,0.2072,-0.74613,-0.97119,0.34085,0.65766,0.17157,0.14769,-0.70545,-1.0973 -2.4725,-0.37021,-3.1451,0.35722,-1.1892,-0.41771,-0.0042627,-0.46378,0.096242,0.013861,0.61862,0.37599,0.22138,0.27569,-1.053 1.6231,-2.6582,-0.66719,-1.1385,-1.3208,-2.3973,-0.27505,-0.75139,-1.685,0.82457,-1.3844,2.0832,-0.53593,-0.90481,-0.25286 -1.2317,-1.6212,-2.0995,1.7148,1.5305,-2.6678,-0.030821,-0.39268,-0.88093,0.16572,0.22574,1.0289,0.15025,0.26452,-0.023581 1.3552,-2.709,-1.5926,-1.5604,-2.0348,-1.9297,-0.050046,-0.1566,-1.0571,0.18186,-1.1898,1.887,-1.666,-0.26025,-0.62668 -0.46551,2.6475,-1.6683,0.65357,-0.94791,0.25027,1.1185,0.66674,-1.3446,-0.20175,-1.5279,-1.4681,-0.80474,-0.70482,0.74231 2.793,-1.9121,-0.69685,0.3768,0.22069,-2.4705,2.1489,0.087321,-2.8032,0.54135,-1.4204,1.4902,1.5905,-0.85519,-0.62144 0.14742,-2.5396,-0.80885,0.55271,0.3609,-2.6029,-1.3204,0.072414,-2.1051,0.53822,0.74236,2.7893,1.0024,-1.504,-0.012702 1.93,1.0682,-1.9164,-0.28569,-1.5237,-1.6623,-0.38562,-0.70993,2.0184,-0.20583,-0.29693,-0.76361,-0.50998,0.17219,-0.33385 1.7449,-0.49031,-1.4904,-0.70424,-1.1703,-0.45438,-0.72499,0.26258,0.62709,1.1069,3.0607,0.82,-0.07769,0.81315,1.7094 -2.9662,-0.75927,-1.4917,1.2411,0.32397,-0.78927,0.84578,-1.4735,-0.30578,-0.044358,1.2498,0.25511,-0.24547,-0.26157,-0.66905 3.0999,0.76218,-2.0558,0.71745,0.22237,-1.417,0.7681,-0.65464,1.0069,0.83562,-0.56205,-1.9809,-0.16831,0.48939,0.68509 -0.80213,3.1703,1.5022,-0.093802,-1.7468,-1.0687,0.44815,-0.63444,-1.8937,-1.4049,-0.572,0.086588,0.36844,0.89474,0.74202 0.5479,2.2603,-1.2231,0.17358,-1.4011,-0.50094,-1.0106,-0.32809,-0.34656,1.0618,0.073511,-0.20973,0.48879,1.39,-0.056306 0.95686,-0.008633,-1.1806,1.6358,-0.56319,-0.20631,-1.2217,0.65288,0.59479,-0.87462,1.788,0.80159,-0.58729,1.0632,-1.0261 -1.5707,0.27685,3.0294,-0.38552,-1.9255,1.2683,-1.1956,0.55198,-1.1315,-0.81075,1.6809,0.33896,-0.14162,-1.0569,0.030208 1.2742,1.5226,-0.7026,-0.75659,0.62149,-0.66238,-1.4011,-0.17726,1.9756,-0.4233,0.45992,-0.71813,1.9951,0.81778,0.20255 -1.2968,0.060218,0.75294,1.8186,-2.0767,-0.78067,0.6878,-0.045378,0.44407,-0.086291,1.5505,0.91971,0.089653,-0.1502,0.06645 -0.038475,1.8084,-1.5199,2.0553,-0.54323,-0.40253,-0.38663,0.84867,0.41364,1.3659,-0.95462,-0.45887,0.10516,1.0934,0.015282 3.7033,0.65706,0.08331,0.78513,1.3664,-1.6418,1.6575,0.24286,-1.1374,0.27204,-3.117,-1.4566,-0.038008,0.51009,-0.29772 1.9293,1.4056,-1.9404,0.50551,-0.50583,-1.2946,-0.24167,-0.20352,1.4756,1.3322,-0.46453,-1.4223,0.85128,0.5027,0.18291 1.5732,2.2619,-2.449,-1.0407,-1.855,-0.98513,-0.27875,-0.23159,0.74062,0.35848,-0.51006,-1.2914,0.31498,-0.3331,0.14652 1.1081,1.7253,-1.4817,1.0693,-0.38963,-0.40018,0.79041,1.106,0.6497,1.0999,-2.6469,-0.88923,-0.092143,0.33552,-0.65108 0.82848,2.0416,-2.2084,-0.50352,-1.5914,0.43286,-0.47827,0.84036,0.87121,0.64843,-1.7283,-1.0195,-0.15746,0.14325,-0.23875 3.7225,-1.7434,-0.11003,-0.67234,-2.2193,0.40527,-1.4437,2.7421,1.085,-1.1448,-0.75385,0.28777,-0.51489,0.15533,-1.8351 1.7807,1.4443,-0.82278,2.2594,-0.10119,-1.1615,-0.1654,-1.3127,0.18752,0.37805,-1.3674,-1.4143,1.0993,0.49648,0.10058 0.39259,-0.52767,-1.4797,2.1365,0.36147,0.44166,1.3664,0.67387,-0.34218,1.5263,-1.417,-1.1378,0.42713,0.11748,1.1656 -2.1252,1.6786,-1.7843,0.33308,-1.0288,-0.61519,2.3369,1.2768,0.48862,1.0072,-1.2166,-0.39228,-0.44799,0.18804,0.22681 -0.76862,1.5094,-0.60839,1.9886,-2.0003,-0.55387,1.1097,-0.2715,0.018089,0.42888,-0.58813,0.26312,0.31778,1.1614,1.1214 0.37363,1.5402,-0.97759,2.4408,-0.2905,-0.31076,0.76612,-0.52278,-0.5965,1.6177,-1.8807,-0.84321,0.072186,0.1782,0.99006 -2.1041,-1.4677,0.72549,-1.5654,1.886,-1.7015,-0.4529,-0.75082,-0.2949,-0.1267,-0.25537,0.39814,-0.21683,0.1859,0.52605 -0.55301,1.6075,-1.6941,2.8177,1.873,0.48657,-0.64036,1.8994,-0.49001,-0.37542,-0.99287,-1.2436,-0.57783,-0.50632,-0.42735 -0.36709,-1.7211,3.362,0.64097,-1.4155,-1.4344,0.43389,-1.4389,-1.2699,0.92634,1.1871,0.23466,-0.55415,0.14584,-0.8059 4.358,-2.8125,-0.64569,0.88757,-0.28595,1.2081,0.20595,0.93634,-0.42938,-1.7795,-1.3559,-0.42047,-1.2646,-0.21607,-1.347 0.60237,-2.0134,2.8418,-2.4792,-3.1412,-1.3601,1.3455,0.13468,-1.484,-0.9692,-1.1484,-0.84791,-1.5711,0.56949,-0.1041 3.1031,-3.3687,2.8337,0.80265,-1.2074,0.99754,1.7044,-0.46909,-2.251,0.073376,-0.53219,-1.0477,-1.3923,-1.0225,-0.73358 -2.2504,-3.9444,1.3993,-1.9739,0.35237,1.0751,-1.9824,1.8054,-1.318,1.2632,0.13527,-0.37412,0.68438,0.36671,-0.84503 -3.0783,-2.9416,0.36811,-2.2634,0.26691,1.1041,-2.2757,-0.95342,-1.4966,0.88399,0.35791,0.99289,-1.0859,0.34774,-0.13648 2.8643,-2.4482,-0.53895,-2.8363,-1.6684,0.89334,-0.066191,2.1509,-2.8866,1.1091,1.3367,1.9085,2.104,-0.50605,1.0379 -0.047028,-3.137,0.079029,-0.26231,0.023981,-0.11105,-2.9567,-1.0418,-1.0497,1.8702,0.095284,2.3476,-0.76425,-0.16387,1.1585 2.02,-0.9908,-0.94251,-0.73656,-2.3529,-0.30201,-0.11391,0.72644,0.15706,1.5009,0.16749,1.192,1.4349,-0.26108,0.48023 -1.6842,-2.5895,2.7961,0.5907,-0.4145,0.77921,-0.89199,1.6947,0.99414,0.92818,1.626,-0.96832,-1.0504,-0.067532,-0.73266 3.326,-0.65322,-0.89082,0.8466,-0.19014,-0.91728,0.041442,-1.9847,0.63734,-0.088308,1.8988,-1.1246,0.3046,-0.011389,1.9003 -1.2268,3.2937,-0.15438,0.024152,-1.3403,-0.26238,1.2803,-0.41925,-2.8282,-0.78248,-0.93703,-0.709,0.78124,0.81589,0.69417 2.0223,0.61157,-2.2355,-1.8064,-0.55207,-0.47111,0.49457,2.2546,1.4743,1.3229,-0.22493,-0.11806,0.28805,0.55353,0.27044 0.27155,-3.1228,2.2987,-2.6335,-2.8651,0.011709,0.12408,-0.43269,-1.885,0.88086,-1.174,-0.31633,-1.5252,-0.51008,-1.0321 4.9792,-2.8194,-0.73292,-0.0078563,-0.19052,0.88032,0.99992,-1.8526,-2.5363,-2.4505,0.59549,-0.72239,0.28222,-0.64242,-0.26961 0.0090766,2.768,-2.0804,0.67467,-1.1709,0.083789,-1.2792,0.34351,0.16654,-0.47578,0.082452,-0.17472,0.37335,1.0333,-1.0152 -0.38372,-3.8573,2.0316,-1.0174,0.26837,-0.41835,0.63408,-2.0423,-0.99169,1.7957,-0.65871,1.1666,-0.43331,-0.87403,-2.0627 -0.92004,-3.3493,0.41401,-0.24753,-0.59857,-1.1955,-0.6622,-2.0115,-0.197,1.7282,-0.12305,0.90252,0.18561,-1.119,-1.1922 1.8365,-3.7554,1.7981,-0.6692,0.72203,1.9093,0.75725,-1.5508,-2.1596,1.0539,-1.0668,0.036622,-2.1195,-0.6025,-1.9325 1.8616,1.8045,-0.99033,-0.90264,-0.7377,-1.6209,-0.69226,-0.59994,-0.23218,-0.43121,0.81668,-1.165,1.7103,0.82014,0.5498 2.0126,0.92794,1.6213,-0.76405,-3.0091,1.3078,-0.48638,0.30249,-0.80783,-1.8385,-0.205,-0.35351,-0.052579,-0.86878,0.57984 -0.84211,1.5421,0.16842,1.4121,-1.577,-1.0129,1.3465,0.012766,-0.47785,1.4838,-0.85257,0.079321,1.0451,0.75447,0.95907 -1.2409,1.4132,2.6212,-0.26486,-2.741,-0.75783,0.11962,-0.68934,-1.966,-1.6093,0.96605,0.15214,-0.44825,-0.31172,0.77464 -3.7005,0.1478,-1.8225,-0.29412,-1.2246,-0.96922,1.4543,-0.32908,-0.44214,-0.4968,0.88522,-0.079529,0.81924,0.75929,-1.1585 1.2789,2.4056,-2.0557,-1.6631,-0.28539,0.12834,-0.88629,1.5603,0.95063,0.44485,-0.65837,-1.5702,0.02502,-0.61659,-0.0070744 -2.0105,-0.16151,1.1843,0.23521,0.23859,-2.4037,1.817,1.505,1.1501,0.09632,0.016027,-1.3004,0.47398,0.0031327,0.128 -0.84791,1.4666,0.21289,0.65707,-2.6711,-1.4749,1.7413,-0.73165,-0.20349,0.25599,-1.1289,-0.25085,0.5502,0.7682,0.52992 1.5434,1.3346,-1.6549,0.66089,0.1373,-1.3779,-0.84512,-1.2373,-1.2695,0.98213,2.0734,-1.1431,-0.81074,0.34205,0.90087 3.094,-0.59416,0.86032,-1.0188,-2.8973,1.4425,-0.81935,2.6235,-0.27172,-1.0743,-1.6523,-0.10226,0.45589,-0.50584,0.020653 1.9017,0.89454,0.0084581,1.864,-1.913,-0.50499,-0.60112,-0.83079,0.77364,-0.82276,-0.69094,0.019931,-0.7693,-0.33328,0.86477 -2.8199,-0.25368,-2.1635,0.21806,-1.4971,-0.7255,0.75211,-0.72526,0.85539,0.24161,0.88538,0.22123,0.54058,0.50003,-1.1458 -1.7147,3.4078,-0.39967,0.22548,0.67709,0.85333,-1.8383,2.7601,-1.5436,-0.30547,0.42947,-0.0088779,-0.80315,-0.083362,-1.7122 -1.4176,0.57992,-1.4191,1.6715,-1.5182,0.71514,0.63184,-0.58867,0.31173,1.1523,1.0964,0.81047,-0.51042,-0.052561,0.15031 -1.9423,-1.1193,-1.5895,0.46087,-1.5176,-2.1801,0.3972,-1.9425,-0.23569,1.043,-0.1453,0.53181,0.74737,0.35677,-0.64132 -2.4244,-0.85112,-3.4466,0.05854,-1.1054,-1.481,0.27696,-0.87162,-0.01714,-0.30932,-0.80618,0.53154,-0.704,0.41174,-1.2424 -0.95012,-3.0643,0.76534,2.7162,0.38892,-0.40131,0.18228,-0.3277,-0.82083,-1.4762,1.9972,-1.1887,-0.13266,-1.2702,-0.52639 -0.8,1.425,0.93784,-1.3848,-1.4329,-0.53788,0.57746,2.0012,-1.3346,0.64394,-2.1144,-0.90159,-1.8303,-0.77461,2.1033 -1.8274,-2.5008,-1.7567,0.92146,1.9183,-2.5729,0.20147,-0.042858,-0.83287,-0.22841,0.40484,0.72623,-0.70045,0.71959,-1.1464 0.036364,-1.3386,1.6891,2.5915,-0.90013,0.46139,1.33,-1.3756,-1.518,0.18777,1.2995,0.19965,-0.2926,-0.70966,0.84926 -1.0627,-1.3184,-2.8751,-0.23256,0.73302,-2.058,-0.42886,0.61742,-0.35132,-1.1889,-0.71915,1.7461,-0.84159,-0.10348,0.33081 2.5394,-2.3038,-2.1343,-0.19322,-1.8296,0.9226,1.1332,1.2834,0.20465,0.34915,-0.97732,1.5558,1.2837,-0.27237,0.45386 -2.0007,-0.67093,1.8136,0.13133,-0.40979,1.7054,-0.60849,0.94225,0.29681,0.22824,2.5924,-0.32191,-1.2888,0.5583,-0.24885 0.77913,-1.9916,0.93976,1.1862,-1.4898,-1.0998,2.0139,-1.6564,-0.65647,0.10026,0.35932,-0.10901,1.6371,-0.52658,-1.1533 -1.6078,-1.0349,-2.1626,0.80679,2.0863,-1.8091,0.16874,0.43453,-1.4886,2.2254,-0.62893,1.1493,1.3429,1.2973,0.060598 -1.6585,-2.4156,-1.6162,1.8775,0.62798,-1.7265,0.4615,-1.3095,-1.542,-0.31658,1.3906,0.5024,-0.36153,0.2113,-0.95307 1.413,-0.88027,-0.67386,1.9863,0.56347,-1.6092,-0.35646,1.5188,-0.45337,1.9787,1.199,0.72147,1.78,-0.39086,-1.2594 -1.5121,-2.7484,0.81917,2.6053,-0.73401,-0.40431,0.019644,0.34117,0.46129,-0.455,1.4149,-0.39982,-0.68067,-1.2207,-0.58328 0.17494,-0.88006,1.1268,3.413,-0.47127,-1.6672,-0.11099,0.26855,-0.21709,-1.7881,1.3664,0.5075,-0.1122,-0.12332,-0.44491 -0.056749,-3.7134,-1.4384,1.9463,-0.16577,-1.1586,-0.58604,-1.92,-1.2772,-0.50858,0.31562,0.12816,0.29691,-0.63795,-0.032695 -1.4361,-2.4329,-1.7742,1.5548,2.1061,-1.4858,0.57151,-1.0829,-2.0873,-0.22295,1.2569,1.3992,-0.1427,0.70969,-1.171 -1.8374,-2.7994,-0.2907,1.6077,1.7889,-1.7309,0.96849,-1.315,-0.94013,-0.38004,1.4492,-0.064484,0.36105,-0.0073374,-1.1577 3.8908,-1.8568,-1.6778,-2.3382,-1.975,-0.70384,0.58879,0.58309,1.8011,-0.66934,1.0047,0.12645,0.12874,0.12741,0.73018 -1.4723,-3.2907,-0.69284,0.89762,1.9135,0.56578,0.044249,0.062537,-1.2494,-2.2547,1.8492,-0.9327,-0.9919,-0.60816,-0.60739 1.9304,-1.6312,-3.3889,1.4355,-0.7501,1.1259,1.992,0.48524,1.1106,-0.86233,0.63575,1.2655,0.56066,0.7906,0.1121 3.8457,-0.2761,0.37431,1.2043,-1.1305,-1.1209,-1.0771,-1.2639,0.31587,-1.4459,-0.59992,-1.5618,-1.7272,-0.30451,0.43508 4.6433,-2.6063,-2.0643,0.12615,0.17157,-0.39897,2.3891,-0.7047,0.79538,-1.853,0.50548,-0.44053,-0.032617,0.19754,0.67822 4.8098,-2.7875,-1.6411,-1.8886,-1.595,-0.38039,0.98763,1.5391,1.2037,0.092897,0.69824,0.47955,-0.42715,0.59565,-0.122 3.4289,-0.70322,0.36073,-2.2304,-0.97208,-1.7493,-0.95344,-0.58639,0.39541,0.56169,2.0354,0.41653,1.0319,-0.53556,0.24562 -0.20106,1.8678,-2.3652,1.4906,0.1628,-0.04134,-1.5485,1.2413,0.42726,0.071901,0.54881,-0.67651,-0.90947,0.39691,-1.187 -0.5465,-3.1095,0.84799,1.8963,0.48147,1.3095,-0.24483,2.5193,0.3692,0.21074,0.79743,-0.26448,-0.21568,0.1075,-0.72993 -0.98785,0.99523,0.05033,1.6034,-0.85211,-0.55211,0.55966,-1.6225,-2.1292,-1.1934,-0.13858,-0.019718,0.28261,1.441,0.84643 -0.34009,-0.3539,0.071837,1.4673,-2.0064,-1.5145,2.0059,-1.7417,0.72489,0.18422,-0.42788,-0.94113,-0.85534,-0.259,0.92362 5.756,-2.8786,-0.50868,0.10932,1.5009,-1.1465,2.3507,-0.10034,-0.493,-1.7734,-0.47761,-0.0803,0.50096,1.3083,-0.18296 -2.037,2.2442,-0.56478,-0.34767,-1.4666,-0.67938,1.7476,1.2232,-0.45794,1.487,-0.9666,-0.87414,-0.57791,-0.79712,0.79107 -1.4739,2.6402,-0.21523,0.6803,-1.2568,-1.0777,1.0787,0.30011,-0.24595,0.62851,-0.62221,0.61238,0.34953,0.14741,0.95341 -1.7136,0.39171,-2.1479,1.6019,-0.88655,2.0303,0.13888,0.9436,0.17743,0.035575,0.18298,-0.67043,-0.99333,0.31917,-0.9036 -2.5924,-0.95848,1.9328,-1.2936,-0.70861,0.97065,-0.085942,-0.026264,-1.8035,-0.28296,1.7182,-1.365,0.13673,-1.4398,0.024343 -1.0756,-1.3488,-0.97562,0.13662,-2.2872,-0.36188,0.52642,-2.7295,-0.17897,0.74818,-0.67046,-0.7945,-1.0149,-0.99646,-0.021673 -0.24262,-2.4384,-0.18614,0.9695,-0.9571,1.6712,-0.61295,-2.1992,-1.1784,0.66662,0.33417,-0.96405,0.33771,-0.74046,0.59153 -2.2449,0.43704,-3.1663,0.11903,-0.066931,-1.2903,0.0067043,-1.0962,-0.59303,1.0228,-1.2013,1.3418,0.6707,0.61777,0.31222 -0.23544,1.1012,-0.47592,0.3493,-1.6285,-0.73793,-0.12903,0.25546,-1.6136,2.0214,0.017304,-0.16319,-0.69005,0.99368,0.95996 2.6388,-0.58802,1.7553,-0.21737,-3.0091,1.4597,-1.411,1.4623,0.24827,0.1852,-0.93898,0.081877,-0.15457,0.27032,0.52473 3.3468,-1.6832,-1.2771,0.89736,-0.8808,2.7875,-0.66066,-0.077114,-1.6692,0.51885,-1.4207,-1.1127,1.486,0.053844,0.89669 -2.4669,-0.87334,-1.426,1.8654,-0.13531,-0.28923,1.057,-1.1068,0.30898,0.57799,1.1766,0.18561,-0.1292,-0.60753,-0.84606 -1.8946,-0.0084874,0.33559,-0.84647,-3.0517,0.2788,0.4021,-1.1766,-0.19184,-0.32844,1.0029,-0.79825,0.16801,-1.0981,0.45001 5.2911,-4.2614,-0.89158,-0.70234,0.095899,-0.60137,0.75666,1.1571,-0.67402,0.42872,0.90005,0.025896,-0.50637,0.20408,1.7017 0.99365,0.71047,-1.6612,2.8693,0.91931,0.39186,-0.98733,-0.37319,0.37263,-1.5924,1.2483,-0.41233,0.018058,0.57158,-1.0012 1.9985,2.4307,2.1803,0.44832,0.34684,-2.4226,-1.1506,-0.80064,-1.068,0.17694,0.52065,-0.42651,-0.42071,0.65389,0.1531 -2.0778,-0.70749,-0.83034,-0.69559,-2.4727,-0.89627,0.28249,-2.3632,-0.50884,0.29057,0.71472,-0.16436,-0.51611,0.084599,-0.17979 -1.8396,-2.0483,-0.28866,-1.2288,-1.6034,1.5172,-2.2368,-1.1141,-0.54068,1.0062,0.67352,-0.065322,-0.93077,0.5735,-0.078419 -0.92378,0.69869,-1.5881,1.658,-0.69177,1.14,0.46155,1.7842,-0.97006,1.1467,0.50006,0.034739,-1.0465,0.86207,-0.38319 -2.2916,-1.5375,-1.7707,-0.78692,2.0156,-0.35743,-2.0581,-0.26597,-0.98543,-1.3961,-0.14803,2.0849,-1.6634,-0.29842,0.13444 1.4768,-1.2936,2.9573,0.50857,-2.5228,1.0008,-0.41547,-0.40221,-1.0511,0.53085,0.87623,-1.2989,-2.1135,0.60169,1.2027 2.6431,-2.5277,1.3084,2.5954,-1.0839,1.9904,-0.53612,0.71843,-1.4514,0.55336,-0.46984,-1.1839,0.69921,-0.14334,0.88919 0.51421,-1.7134,-0.3427,2.4384,1.8427,3.0794,0.41955,2.2627,-1.3012,-0.51951,0.91584,-0.93255,2.1896,1.1204,0.17493 1.9566,1.6271,-0.018223,0.21066,-1.076,-2.4851,0.89389,0.42774,0.74562,-0.24537,-2.0098,-0.60318,-0.24051,1.3142,-0.44784 -0.21433,-1.76,1.19,2.1167,1.2188,-0.46265,2.2935,-1.8657,-3.3019,-0.6583,1.8127,0.30403,1.5659,-0.13512,-0.50145 -0.24191,-2.8331,-1.9132,1.7494,-0.19695,0.34746,-1.4894,1.5137,-0.019527,0.1633,-0.50224,-1.3166,-0.95824,-0.20775,0.2606 -1.8482,-3.4689,-0.30096,0.16748,0.69209,-2.6345,-0.37537,0.45435,-0.4728,-0.023257,1.1714,0.67905,-0.011606,-0.43121,-1.7042 -2.6595,0.33185,-0.22976,2.1802,1.183,-0.0628,1.6212,-0.48618,-1.067,-0.064202,1.3013,-0.62727,-0.67358,0.61107,-0.23259 -0.072891,-2.2784,3.0088,0.49548,-0.92237,-0.30587,-0.54978,-1.5804,-0.62263,0.70774,1.6716,-0.62176,-0.81979,0.023043,-0.61961 2.1881,2.5825,-0.49524,0.29084,0.018072,-1.9426,-0.11849,-0.20228,1.0018,0.64343,-2.3828,-1.4045,0.45067,0.24385,-0.73253 5.4043,-1.1659,-1.409,0.14798,0.95256,0.29341,1.8002,-0.79457,-0.21145,-1.4721,-0.41939,-1.4921,0.29615,-0.16052,0.11645 0.52092,-3.2057,-0.84663,1.6135,1.3445,0.39319,-0.60906,-0.77615,-1.2178,0.13178,-0.30813,1.4711,0.72894,-2.4494,-0.40393 0.66424,-3.1313,0.18074,2.6943,0.55037,1.9176,-0.58012,0.35238,-1.3297,0.37088,1.7834,0.044674,0.39968,-0.5213,-0.18331 0.46184,0.77943,0.87041,2.8886,1.9402,-0.66979,0.74749,1.6973,-1.8896,1.8259,0.13984,0.41796,0.55688,1.0361,-0.8667 3.1213,-0.079235,1.3981,1.2747,-0.89217,-0.0293,-2.8744,-1.3965,0.13805,0.29542,0.23811,-0.5226,-0.91858,-0.085838,0.092341 3.4222,-2.9699,0.034725,1.428,-1.6766,1.199,1.5976,1.0784,-0.57554,-0.83579,-1.0223,-0.30401,-1.8103,-0.69886,-0.96222 -2.6672,-0.02835,-1.9956,-1.2709,-0.60433,-1.6122,-0.14388,-2.0029,-1.8008,0.48112,-0.19065,0.95457,0.33212,0.66625,-0.10469 1.8183,-3.1217,-2.8122,2.313,-0.31734,0.96316,1.8764,0.25901,-0.14494,-1.2445,-0.029683,1.5011,0.81701,0.91479,-0.0013047 -0.60926,-1.663,-2.1333,2.1208,-0.15976,-1.985,0.98848,-1.6119,-0.60134,0.58112,-0.32974,0.058125,1.2794,0.22564,-0.42463 -1.7801,-1.9125,-2.0684,1.9384,-0.44977,-1.3105,0.7971,-1.5229,-0.79794,-1.1698,0.58255,-0.99372,-0.92653,-0.32394,-1.033 -1.4798,-2.0223,-0.95777,2.6,-1.2193,0.036247,1.1998,-0.88545,-0.38746,-1.6304,1.0419,-0.87493,0.50898,-1.2906,-0.32962 -2.1194,-0.68742,0.08652,1.8593,-0.42864,-1.9195,2.0135,-0.037932,0.42245,-0.30819,1.2826,-0.82583,-0.63673,0.87569,-0.69135 1.8116,-0.4418,0.39518,2.5376,-1.3915,-1.2496,1.3904,-1.2733,0.23923,-1.2617,-1.888,0.099878,0.04538,-0.54234,-0.36452 -1.1668,-1.1765,-1.1817,-1.1853,-0.88381,-2.6744,-0.52774,-2.1339,-1.4969,0.89171,-1.1313,1.3856,1.2405,0.80302,0.97438 1.6544,-3.2436,0.40031,1.5002,-1.2809,2.2408,0.068626,-0.66755,-1.3907,-1.276,-0.66412,-1.323,1.1467,-1.9221,0.1298 1.7857,3.2851,1.5435,-2.0875,-0.50788,-2.0338,0.54316,-0.15615,-1.6458,-1.0904,-0.47006,-1.6121,-0.73744,1.043,1.0817 -1.9257,-1.0385,-1.0165,1.1078,-0.72237,-2.125,0.77485,-1.6223,0.54069,1.1551,0.28116,-0.75145,0.86812,1.0352,-0.52002 1.859,0.55445,-0.6296,-0.038607,-1.7868,-0.36999,-0.30936,-0.15778,0.5316,-0.99974,-0.70408,0.13696,1.5931,0.47363,0.11335 1.7226,1.3431,-3.014,-0.66646,-1.177,-0.91332,0.46106,-0.15297,1.9235,0.13281,0.20784,-0.41028,0.97302,-0.061052,0.12549 -1.2903,1.1835,0.64903,1.8454,-1.3079,-2.0545,0.6724,1.1248,0.62788,-1.3546,0.50087,0.39128,-0.39857,1.3618,0.13209 -1.1942,-3.1138,0.85298,2.2655,0.12708,-1.3326,0.81175,-1.6964,-0.84909,-0.83783,0.58057,-0.57063,0.86096,-1.5598,-0.93769 0.074595,-1.3694,1.6563,1.5378,-1.4051,-2.3687,1.8374,-1.7026,-0.20736,0.56723,0.21387,-0.61884,0.65661,0.033272,0.074289 2.7309,1.5666,1.2863,-0.59946,0.16164,-2.5224,-1.5891,-0.93769,-1.1053,-0.34456,1.8946,-0.65107,0.032845,0.53633,0.44185 1.1038,-2.1525,1.0003,2.5381,-1.0602,-0.6025,1.3748,-1.5713,-0.48488,-0.55901,0.46846,-0.60939,0.77826,-0.99333,0.31474 3.7359,-1.3099,-0.061154,-0.73922,1.2811,-0.63163,2.2728,-2.1122,-2.4324,-2.1435,-0.19292,-0.55954,2.14,0.3777,1.3657 2.4812,1.7119,-1.7119,0.082333,0.6774,-1.9049,0.34158,-0.48996,1.4032,0.38404,-0.47543,-1.4255,-0.1303,0.45083,0.54642 -2.0811,-1.1732,-2.2131,1.4324,0.74409,-2.4378,0.16873,-0.92079,-0.47621,0.94555,-0.69038,0.22949,0.83068,0.68531,-0.29522 -0.31402,1.2834,-0.2791,2.0804,1.2462,-0.11489,-0.79576,-0.83,-1.048,-1.5192,0.52425,-0.42139,1.3375,1.0806,-0.12029 -0.82986,2.2135,-0.21587,1.8205,-1.3361,-0.79073,-0.10549,-0.16627,0.01497,1.0043,0.0047121,1.3759,0.063245,0.94972,0.018831 0.41539,0.41061,1.0744,0.31622,-2.8517,-1.5303,1.7518,-0.37785,0.12758,0.48904,-0.76555,0.35855,0.69015,0.35128,0.35751 3.2299,-2.7497,-1.2081,-1.8536,-1.1997,-1.3759,2.541,1.7696,0.76173,-1.1237,-0.85971,2.6886,1.1409,0.52165,-0.77919 0.82676,1.321,-1.0725,0.57069,-0.48877,-0.2056,-2.5346,0.25412,0.62825,-0.093833,2.8648,-0.47214,0.54643,0.31181,-0.92197 1.7011,-1.3031,-0.91806,0.64837,-0.1625,-0.045426,-2.3858,2.0639,1.5339,-0.5044,0.98874,-0.35768,0.82153,-0.04576,-0.59304 -0.78004,-2.4888,0.16749,1.3444,0.65416,2.7433,-0.62574,-1.0639,-0.71416,0.48813,1.5271,-1.0834,0.42648,-0.36202,-0.058146 2.4222,-1.467,-2.2145,-1.4448,-2.1856,-0.67118,1.4466,1.7387,1.5248,0.049227,0.23731,2.1408,0.45548,-0.10998,-0.33714 0.25709,-1.2512,-2.2306,0.27991,-0.93822,-1.2023,2.0776,-1.1849,-0.42567,1.3977,-1.8665,0.16955,0.70516,0.22939,-1.6255 4.5839,-2.5423,1.113,0.99724,-1.4281,1.558,0.37192,1.926,-0.86351,-1.4967,-1.9938,0.14083,-1.6608,-0.1057,-1.45 2.8335,1.6269,1.528,0.46971,-0.58228,-2.2069,1.3743,0.49351,-0.3379,0.2438,-2.7367,-0.57287,-0.20018,0.92963,-0.38897 0.12637,2.3073,1.4173,0.19654,-0.56982,-0.32098,-0.43862,1.4382,-1.853,2.1989,-0.62146,0.028575,-0.52127,1.7955,0.57172 -2.0259,-0.2838,0.12855,0.85752,0.73783,-2.0606,1.8721,2.1837,-0.78908,1.9087,0.23839,-0.73119,0.99613,0.57565,-0.51729 2.3861,0.4914,-0.1581,1.5396,-1.2992,-1.7835,-0.73104,-1.8673,0.7691,-1.1434,-0.74805,-1.1466,-0.59765,0.45047,0.23624 4.3819,-2.7727,-2.3701,-0.042686,-0.26583,2.8368,1.0445,-0.024877,-1.588,-1.3739,0.47406,0.021491,0.48405,0.40726,-0.26545 0.3032,1.9131,0.5114,1.1564,2.3332,-2.5908,-0.12187,2.8279,0.00054403,-0.94911,-0.36728,-0.73091,-0.31013,0.95651,-0.46662 0.45998,1.6248,0.51345,2.1833,2.8246,-1.2933,-0.48478,2.9272,-0.45124,0.19432,-0.25226,-0.62441,-0.58109,0.70776,-1.5469 4.3452,-3.6474,-1.095,-1.1744,-0.85668,-0.24362,1.2069,2.4599,0.25974,1.09,0.37443,0.47,-0.98331,0.91298,1.4239 -1.8766,-0.13175,0.49231,1.3272,1.8651,-0.66069,1.7607,3.1352,-1.3794,2.0131,0.50053,-0.57691,0.087445,0.90514,-0.21787 -1.2634,-0.75788,-0.35998,2.1711,3.033,0.049223,1.2094,3.1817,-2.0707,1.1446,0.45909,-0.35207,0.073388,0.073406,-0.43232 2.7926,-0.0093758,-2.462,-3.4061,-0.19031,-2.0276,1.9727,2.1569,0.93373,0.2247,1.5823,1.5538,0.57267,-0.6406,1.0579 -1.733,-2.6656,1.8442,0.89822,-0.045693,-2.8262,1.3059,1.0048,-0.96094,-0.9466,2.1268,0.086579,0.37596,0.065263,-1.3883 -1.3794,-0.65085,1.0125,0.76866,1.5464,-1.8701,2.985,1.9521,-0.29176,-1.7279,-0.091642,-0.63398,-0.68826,1.3957,-0.5771 3.3509,-0.81031,0.80987,-0.76217,-2.0495,1.1267,-2.11,2.4757,-2.5181,-0.60985,-0.094952,-0.28648,1.7617,0.25868,0.03393 -1.8581,1.9311,-0.28507,2.1118,0.78206,-0.60496,0.57683,2.1757,0.96623,0.72992,-0.8668,0.10555,-0.45574,0.5764,0.072706 4.2871,-3.3283,2.3325,1.4163,-0.79188,3.0933,0.51495,0.82221,-3.2578,-0.6029,-1.6483,-0.13249,-0.54455,-0.21582,-0.81526 -2.0292,-2.7516,-0.76208,0.49684,2.5327,-3.1438,0.25165,0.18368,-1.8568,0.023531,0.29213,0.71334,0.32251,-0.029727,-1.3576 5.0531,-3.4493,-2.1555,-0.036258,-0.45099,0.78503,0.56198,1.2917,0.57713,-0.26398,0.61652,-0.69606,-1.0642,-0.016351,-0.24767 -0.026213,-0.19109,1.0558,2.2146,1.4347,-2.4638,1.1587,2.3079,-0.31054,-2.4263,-0.0071104,-0.13022,-0.8409,0.999,-0.153 -2.757,0.94358,-0.49042,0.59537,0.0060258,-1.4812,1.5977,2.3663,-0.0049893,0.73609,-0.23648,-1.0356,0.16197,0.3707,0.2614 -1.9337,-0.20296,1.2138,0.68109,0.6378,-2.9146,1.85,2.02,-1.3676,0.089032,0.72061,0.28051,1.1155,0.90946,-1.018 -0.34292,2.1441,-2.3613,0.41596,-1.7887,1.0796,0.63673,1.4836,-0.77669,-0.028297,-0.89572,0.14559,0.46105,0.29063,0.58801 -2.4832,-0.7503,1.3468,-0.93459,-0.0059242,-2.8679,1.942,1.7838,-0.58116,-0.98931,-0.27463,-0.95028,0.02343,0.26711,0.39232 -1.7981,-3.6993,0.19388,0.1096,-1.1831,-1.529,-0.68998,0.78586,0.13497,0.44799,0.54011,-0.39622,-0.24458,-1.1897,-1.3564 -1.7018,1.7236,-0.33252,1.8443,-0.26692,-0.20328,0.42544,1.2651,0.14318,1.7435,0.14153,0.89017,-0.67082,0.64989,-0.068163 -2.5016,-3.7319,0.14288,-0.56825,-0.36781,-2.7679,-1.3675,-0.49389,-1.2092,0.2348,-0.0082758,0.31931,-0.056076,-1.6665,-1.0031 -0.11846,-0.41264,3.268,-0.86848,-2.4589,2.0101,-0.88561,1.0108,-0.23779,1.5219,0.80561,-0.23133,-0.21875,0.62759,0.75339 -0.39965,2.725,-0.0051175,0.86804,-2.0513,-1.3596,-0.013848,-0.48224,-0.84226,-0.9214,-0.66422,0.32611,0.029834,1.5626,0.40607 -0.12897,-1.5259,2.5607,1.1147,-0.89685,0.81086,-0.67747,3.0825,0.27491,1.5317,0.25585,-0.52355,0.54407,0.59881,0.10687 1.8325,-2.7944,-0.69029,1.4652,1.522,1.7498,0.091985,-0.13183,-1.5542,-1.8838,3.128,0.80872,2.0664,0.37276,0.86667 -0.20726,0.89674,-0.77001,0.31077,-2.577,-0.91966,2.6484,-0.0027976,0.42036,-0.83533,-1.4474,0.3923,-0.16544,-0.63529,-0.72756 -0.31662,-4.9757,0.12761,1.7524,0.37743,-0.71467,-0.68168,2.1182,-1.5145,0.18085,0.43775,-0.63379,-0.48913,-1.129,-0.42626 0.24827,-4.6279,0.96947,1.3738,1.4166,0.59529,-0.65587,-0.81369,-2.3655,1.1135,0.71612,0.75814,0.46482,-1.1062,-1.2198 -0.085709,-4.0392,0.55422,0.55237,-1.47,-0.34129,-0.60099,0.57815,-0.16462,1.4457,-0.26801,-0.11234,0.69494,-1.2187,-0.66588 0.059855,-4.0882,0.44553,0.8012,-0.41388,-0.84196,-1.054,1.2334,-0.36642,1.369,0.10855,0.26991,0.61667,-1.1124,-0.415 3.7058,-0.274,-0.24368,0.59368,-1.8495,0.10291,-1.1001,-0.37508,1.047,-0.69925,-0.51345,-0.95701,-0.36234,0.41009,0.0008416 0.04779,-3.1151,0.458,2.543,0.36064,-1.7511,-0.43276,1.6983,-1.8212,-1.5975,0.79483,-0.21874,-0.62812,-1.4375,-0.2549 1.6605,0.85419,-2.2667,-1.2479,-1.8465,-0.65791,-0.85519,-0.034895,0.92214,-2.2868,0.84883,-0.014745,1.2633,-0.21119,-0.79036 3.2935,0.39598,0.023212,-0.23461,1.8315,-2.668,1.1532,-1.1451,0.24359,-0.11629,-0.67957,-1.3258,0.44029,-0.0047858,1.0492 0.44392,1.6729,-0.88303,3.3071,2.522,-0.33746,-0.56737,1.0033,-0.65543,-0.049105,0.25788,-0.8251,-0.33079,0.78698,-1.377 0.82355,-2.8079,-0.4342,-0.24641,-0.4933,-0.61547,-1.9473,1.5228,-0.3238,1.3203,-0.38473,1.3472,0.64632,-0.57666,0.99022 3.7936,0.96341,0.34226,-0.75816,0.27156,-2.7974,0.36139,-1.2724,-1.7929,0.44493,1.0628,-1.3907,-1.1342,1.3737,1.5561 -1.5521,-4.2105,1.2743,-1.359,0.80353,0.30946,-2.3074,0.5352,0.19079,2.2017,-0.42443,-0.31625,-0.23442,-0.14068,-0.33493 -0.5097,-5.0826,-1.1291,0.51697,1.2441,-1.2069,-1.6308,1.1212,-1.6489,-0.15185,-0.9534,-0.077374,-0.60689,-1.2779,-0.080826 -0.50787,-3.5915,-0.78504,-0.024975,-0.31046,-2.243,-2.6567,0.2499,-1.3478,0.65898,-0.46972,1.8222,0.094173,-1.2211,0.56092 -0.9451,2.4691,1.3139,1.2567,-0.88316,-2.5273,-0.088137,0.19278,-0.3607,-0.011685,-0.39074,0.44382,0.81852,1.2821,0.10237 0.11141,0.16877,2.8835,-1.5185,-3.2605,-1.3605,0.90471,-0.68178,-1.5894,-1.5925,-0.74667,-0.19442,-0.66345,-0.49531,0.32958 4.6544,-2.796,-0.22478,-1.5525,-0.70356,-0.46977,1.4765,2.0194,-1.9193,2.0638,0.44916,0.9515,-0.072201,1.0867,0.6953 -1.965,-1.4756,2.9164,-1.2562,-1.9719,-0.65971,-0.1195,-1.2074,-1.1499,0.18469,0.56916,0.31285,-0.7129,-0.9717,-0.063359 -0.8339,0.065081,-0.72254,1.6688,-2.5948,0.75918,0.96703,-1.463,0.39112,0.75647,0.40369,0.1145,-0.58236,-0.71774,0.68667 -2.0113,-3.437,0.5456,0.0178,-0.39402,-1.2082,-1.3687,-2.2505,-0.33112,1.4979,-0.21851,0.14522,-0.60216,-1.3235,-0.20766 1.8342,1.727,-2.2735,-0.70554,-0.97151,-1.6518,0.065788,-0.87071,1.3563,0.85104,0.34979,-0.96542,0.080845,-0.003252,0.9851 3.8279,-3.0869,-1.3251,0.39099,-0.26757,-1.1965,2.5575,0.53218,1.0965,-1.2786,0.69857,0.89521,0.058024,0.61513,0.59563 -3.5769,-0.42431,-1.2846,-0.62362,-0.95855,-1.6067,0.51992,-1.794,-1.0712,0.26527,0.47429,0.48332,1.0961,0.75619,-0.71004 1.8168,-1.3657,3.2863,1.7573,-1.7432,-0.17833,-0.48802,-1.1197,-0.75062,-0.79751,-0.071686,-0.92622,-1.3333,-0.20934,1.0076 -1.4036,-1.2705,-0.94547,0.55236,2.0211,-1.3432,0.27781,-1.8077,-1.7504,1.5609,-0.58755,0.77382,1.3069,0.76498,0.1886 -2.1922,-1.1127,1.2244,-0.49234,-2.5784,0.14452,0.31856,-2.2097,-0.65677,-0.22086,1.0729,-0.17424,-0.52051,-0.299,-0.33387 2.4349,-2.7421,2.7411,1.195,-1.2954,1.6982,0.59557,1.3765,-0.72477,1.9312,-1.2241,-0.77685,-0.16754,0.28003,0.047339 3.2441,-3.1563,2.1112,0.74387,-2.0648,0.61499,0.36159,1.9123,0.0017075,-0.5786,-1.7816,0.022595,-1.0568,-0.82559,-1.5095 -1.3357,1.2832,1.6239,-0.032302,-0.92625,-2.3127,1.8759,-0.6402,-0.88017,-0.43835,-0.90838,-0.64939,-0.88359,0.94256,1.0582 -0.0054946,-2.6229,2.5293,1.9028,-1.0933,-1.4177,0.65249,-1.2376,-1.0362,0.19783,0.43169,0.3228,0.0735,-1.5703,-0.47601 4.2194,-2.042,-2.5698,0.061429,-0.089543,0.7325,2.216,-0.3237,0.73514,-1.1703,0.7111,-0.17936,-0.05767,-0.27403,0.72847 -2.1824,-0.7511,-0.87298,-2.2243,-1.2344,0.36608,-0.17132,-2.0721,-1.4769,0.14441,0.29522,0.34898,0.4355,-0.13778,-0.52597 -0.61117,-2.9595,2.6663,-1.0326,-2.6695,-0.44393,-0.12991,-0.92847,-0.20018,1.1855,-0.12254,-1.085,-0.88608,-0.64236,0.21995 0.9124,0.045238,-2.6425,1.9097,-0.18006,0.74246,0.28154,-0.078031,0.54161,0.7203,0.98947,0.33591,0.93853,0.5688,0.25234 -1.429,-0.078513,0.74405,-0.048489,-2.5334,-1.408,2.0467,-2.0765,0.039646,0.80378,-0.40509,-0.42994,-1.092,-0.24346,0.28203 -1.0212,0.25786,0.40702,0.85653,-3.1216,-0.32256,0.83125,-0.73968,0.35365,-0.75861,0.39966,0.026015,-1.1252,-0.15729,0.81486 2.491,0.36697,2.7871,-1.7218,-2.9653,-0.49619,-1.1817,0.78574,-0.8301,-2.0288,-0.87297,0.28801,-0.014573,-0.25219,0.41129 0.30602,-3.0525,3.1384,1.8841,-0.61378,1.0502,0.28291,-0.92962,-0.82539,0.853,0.95891,-0.38559,-0.62208,-0.95174,0.45007 -2.729,-0.30383,-1.6529,1.1508,-1.0296,-1.1955,1.0171,-0.80241,0.51412,0.72271,0.87109,0.13304,-0.3563,0.88778,-1.2871 0.80193,1.2487,-1.5647,2.5769,1.1979,-1.1009,-0.53038,0.36237,0.057654,-1.6084,0.57824,-0.37641,-0.72255,0.78232,-1.5678 1.5602,2.2833,-1.0934,0.80864,0.67371,-1.5832,-0.91617,-0.22284,0.21618,2.1745,0.15632,-1.6026,0.19155,0.4027,0.55128 -2.4832,0.99854,-2.7099,-0.63374,-1.3681,0.58115,1.6239,-0.95754,-1.4849,0.63925,-0.33823,-0.50674,0.83343,0.37498,-0.43639 -1.6996,-3.5288,0.85821,-0.72284,-0.743,0.43371,-2.6526,-1.5381,-0.77036,2.1533,-0.36749,-0.17718,-1.2843,0.29274,0.60465 0.25609,1.3956,0.51059,-0.12869,-3.677,-0.28436,-0.4397,-0.17263,-0.1238,-0.99156,-1.0173,0.63401,-0.75318,-1.0085,0.60176 3.0142,-0.42313,-0.38328,-1.468,-1.896,0.69055,-1.8706,0.93735,-0.58389,-3.0675,-0.61528,-0.75706,0.31259,-1.0973,-0.66854 4.1836,-0.8579,-2.1885,0.1702,-1.2316,1.0041,-0.41419,0.53941,0.1167,1.8857,-0.70439,-1.52,0.51236,0.73402,0.38713 0.77093,1.0627,-1.0099,1.6804,2.4911,-1.7301,-0.67367,3.122,-0.32784,0.43347,-0.57364,-1.3898,0.43705,0.020121,-1.2333 1.2042,-0.092003,1.7353,-0.45107,-3.2135,0.86596,-0.59777,0.22769,-0.087079,-2.004,-0.48376,0.14489,0.27077,-1.2247,1.1376 0.27742,-2.8424,1.0909,-2.059,-2.7872,2.1273,0.0076407,0.52292,0.034697,1.4926,-1.016,-1.4345,0.6076,0.29613,-0.64976 -2.4468,-1.479,-0.18308,-0.25428,-1.9591,0.68753,0.47823,-0.73522,-0.70732,-0.9852,0.71372,-0.31675,0.93484,-2.1444,-0.93344 -1.5189,-0.19315,-0.58339,0.0024905,-2.7085,0.64745,0.442,-1.0247,-0.10774,-1.4847,0.72222,-0.49244,1.3914,-1.3675,-0.071561 -0.99451,-1.5552,-0.043738,-1.4207,-1.8649,2.5231,-0.97978,0.63253,-0.6543,0.51033,-0.24978,-1.5395,2.19,-0.10523,0.0096388 0.082994,0.14721,1.1258,0.22535,-2.7624,1.7711,-0.62315,0.4337,-0.6819,-1.6131,-0.38961,0.21619,0.75424,-1.746,1.0388 5.0476,-2.9007,-1.7737,-1.4098,-0.61356,-1.113,3.1742,0.99756,0.88559,-0.25599,0.96047,1.5549,-1.0678,1.136,0.56297 0.045046,-0.70482,1.2429,-0.59058,-2.194,2.5282,0.076513,1.4678,-0.6397,0.6631,0.63077,-1.0095,2.3254,0.053088,-0.051758 3.4928,0.96307,-0.91368,-0.98937,0.19406,-1.6336,0.87209,1.315,-0.191,0.37421,-1.2715,-0.95022,1.5547,-0.025502,-1.3679 0.38886,2.2718,-2.2145,0.39058,-1.5706,-0.11563,-0.94417,-0.18197,0.96791,0.54235,-0.50671,-0.80543,0.80437,0.58252,0.0083791 -0.94109,-1.7845,-0.46798,-0.1891,-1.522,1.4355,-0.87453,2.5023,0.25525,0.70283,0.51177,-1.3293,2.2437,0.47247,-0.65804 -1.553,-1.8206,-2.2866,-0.81028,-0.080041,1.8991,-1.4919,1.1673,-0.78714,-0.56734,-1.0672,-0.8742,0.86592,-0.27615,0.82375 -1.5183,0.067071,-3.2723,1.6376,-0.18019,0.52751,1.0329,0.074054,-0.31722,0.80068,-0.18201,-0.89198,0.53482,0.59621,-0.034695 -1.8122,1.2585,-0.62959,-0.21894,-1.542,0.097815,3.0474,-0.97698,-1.4003,-0.78006,-1.1465,-0.20392,0.4426,-0.50844,0.4966 -2.2767,1.1571,0.11764,1.1936,-0.82244,-0.20553,0.67994,1.3492,-0.35575,-2.6968,1.0074,0.4881,-0.44522,-1.0343,0.0027493 -0.88616,1.308,-1.9748,-0.95582,-2.153,0.89027,1.7849,1.0554,-0.62596,0.63798,-0.80382,-0.73039,0.18295,0.54524,0.93023 -1.2048,-0.2449,-1.4219,2.4674,2.4642,0.62639,1.6379,2.9164,-1.9759,0.27323,-0.062037,-0.67034,-0.45513,-0.2042,-0.017767 1.3841,-2.9533,-1.315,2.0712,1.5565,0.57886,0.53817,1.4049,-0.22442,-0.3549,2.16,1.4082,1.137,0.49841,-0.090026 -1.3281,-1.4864,-1.4741,1.2355,3.7072,-1.5863,2.684,1.1739,-2.4839,-0.016406,-0.85191,-1.3831,1.4044,0.01746,-0.66975 -0.80293,0.68142,-1.1412,0.52722,-2.0132,-0.25942,2.4837,-1.0774,-0.2799,-0.0068939,0.16353,-1.1467,-0.3568,0.96094,0.69457 -0.94697,-1.6891,-0.87099,1.5751,2.199,-2.9072,2.8663,1.2289,-2.3578,-0.57261,-0.18293,-1.2092,0.68937,0.54281,-0.16005 1.2311,-0.027486,1.8246,2.2129,-0.20338,0.67986,0.04337,-2.5511,-1.6486,-2.0412,-0.10891,0.53573,0.80527,-0.65536,0.27864 -1.8638,-1.7184,0.19802,-0.92612,-1.0965,-0.73001,0.00048069,-1.0707,-2.0342,0.68913,1.9244,0.49003,0.87042,-0.15111,-1.4176 0.29837,-1.3105,-0.82596,-1.9657,-0.5046,-1.941,0.04875,-1.8199,-1.8222,2.2188,-2.2235,1.4941,0.71577,0.84115,0.093927 0.87444,2.5523,-0.34122,-1.5722,-0.90111,-0.01753,-0.84192,1.8803,-1.0892,-0.07186,-1.1902,-1.7547,-0.52906,0.90865,0.32932 1.0161,1.1395,1.7018,-0.13849,-2.7925,-1.2883,-0.73162,-0.56905,0.17572,-0.89881,-0.17686,0.64482,-0.046544,0.27435,1.1947 1.4163,-0.269,-2.4603,-0.949,-0.72056,1.2241,-0.11916,0.82442,-1.177,-0.067422,3.1152,0.73206,2.1423,-0.70108,1.0108 -2.3024,-1.4418,1.838,-2.3157,-0.99493,-1.1271,0.041285,-1.8131,-1.2943,0.59741,0.88589,0.2131,0.31553,0.97709,-0.30078 3.6196,-1.7914,-1.0198,1.3926,-1.0874,0.6706,-0.4122,-0.82026,0.29572,-0.26218,-0.53559,-0.83636,0.18636,-0.34789,0.15443 -0.97415,0.9352,-2.8241,-0.21311,-1.8567,1.5075,1.067,0.91993,-0.7037,0.62675,-0.52413,-0.40424,0.18772,0.003626,0.63558 0.86671,-1.7079,-1.433,0.15692,-0.79969,-0.84081,-0.14266,0.98708,0.37953,0.17371,2.3019,2.0084,0.084566,0.93305,0.78088 -1.394,-1.6672,0.42258,1.5484,-0.011229,-0.67909,0.71733,-0.72306,-0.8516,1.4008,2.7654,-0.22664,-1.0222,0.53895,-1.4539 0.97107,2.906,0.21813,-1.5319,-0.26493,-1.3548,1.0681,0.23418,-1.6456,-2.3507,-1.9315,-1.4385,-0.86497,-0.51093,-0.24854 -1.8222,-1.3769,-2.0866,0.80132,2.663,-3.3182,1.1988,0.54088,-1.6952,0.15608,-0.74733,-1.2225,-0.19962,0.92262,0.073149 2.1607,0.8671,-0.070561,0.35743,-0.62648,-1.2963,-2.0439,-0.7057,0.0084329,-0.50339,2.4024,-0.71941,-0.76616,1.2992,0.0004451 -1.0162,-1.0938,-0.73459,-0.16444,0.45389,-2.044,-0.83517,-1.3473,-2.2092,2.6564,0.098939,1.2408,0.22484,1.2199,0.073837 3.4327,-0.093305,-1.2568,-2.4802,-0.47239,-2.6008,0.62006,0.060913,-0.1378,1.0304,1.5412,-0.1998,-0.89342,-0.23557,2.2569 3.6527,-1.9458,1.018,1.229,-1.4739,2.7051,0.26808,0.40448,-1.6763,-0.74065,-1.6221,-1.8621,-1.3458,-0.18408,0.11155 -1.6941,-0.74467,0.13355,1.7264,3.5896,-1.1397,2.3682,0.6216,-2.081,0.0048498,0.38701,-2.0767,1.3036,-0.21576,0.71888 -0.38454,-3.1082,-0.32167,0.7354,-0.63565,-1.5826,1.0612,-2.4038,-0.0069009,0.71031,-0.85698,0.2046,1.2464,-0.086327,-1.0805 2.7732,-2.8009,-1.5101,-2.3128,-2.5717,0.093061,0.6835,3.207,-0.57148,-0.0020724,-1.2897,1.5805,0.84466,-0.77414,-0.9743 -1.1699,-3.9483,0.39633,1.3287,-0.4794,0.24265,-1.2832,0.96423,0.71504,1.1208,0.34555,-0.89364,0.11567,-1.2199,-0.9089 0.36914,1.2341,-0.98355,3.1283,2.1946,-1.5497,0.16694,1.2707,0.15132,-1.5357,-1.0121,-1.4247,-0.41322,0.88354,-0.14183 3.2642,-1.3196,-0.060623,1.691,0.84229,1.6191,-1.9801,2.0377,-0.84803,1.5932,1.1459,0.52381,2.2169,0.87358,-1.3178 1.5049,0.57678,1.4906,0.47176,-0.1303,0.075276,-1.0361,-1.5465,0.010429,-1.3942,-0.40653,0.49823,-0.60875,-0.321,-0.37198 -1.463,2.8294,-1.1989,0.88913,-1.7703,0.90928,0.25311,0.60579,-1.0445,0.28803,-0.26139,1.1483,0.45111,0.3025,-0.12276 -0.67691,-2.0437,-2.8808,0.38015,0.083069,-0.94813,-1.1207,0.88852,-0.69627,-0.0058491,-1.2411,0.37268,-1.513,-1.3717,0.096071 -1.4303,-1.9022,-2.7784,0.18371,-0.21041,-1.9639,-1.5354,0.7909,0.2265,-0.2663,-0.76691,0.78751,-1.2741,-1.0936,-0.11164 -2.0229,1.6234,-2.6612,0.49839,-1.6477,1.9583,0.75021,1.5483,-0.86025,0.38451,0.34871,0.41196,0.10223,-0.30408,-0.21462 -0.26677,-3.8871,0.70734,2.32,0.85984,1.8049,0.039611,2.2963,-0.24993,0.89698,0.90874,-1.4987,0.018524,-0.066516,-0.85566 -1.247,-2.3536,-2.7832,1.4616,1.0202,-1.8601,-0.37773,0.067503,-0.66301,-0.98417,-0.74978,0.23719,-1.3871,-1.0449,-0.25395 0.71036,1.2942,-1.5419,2.9923,-0.20312,0.21241,1.2097,-0.17502,-0.2212,0.13523,-2.5114,-0.73687,0.49254,-0.0068842,0.42166 3.2393,-1.0889,-1.3496,-0.39804,-1.0839,0.07199,0.040099,0.027372,-0.29118,2.8174,2.2983,0.23693,-0.32849,1.1984,2.8393 -0.51961,-2.0285,-3.2192,1.8441,0.83743,-1.7998,0.029569,0.60623,-1.6913,-0.72614,-0.65519,0.69791,-0.21047,-0.89306,-0.0067612 3.1975,-0.63076,-1.7998,-0.14344,-0.32434,-0.78008,1.6953,-0.16046,1.6824,0.93653,0.14112,-0.43092,-0.17662,-0.096571,1.9509 -1.5432,-2.8111,-0.11933,1.5241,-1.1166,-0.40941,0.11958,0.98994,1.1901,-0.52631,1.0949,-1.0782,-0.81365,-1.0051,-1.204 -1.3608,-1.936,-3.3856,2.0671,0.22165,-1.173,0.054328,-0.7088,-0.91072,-1.6504,-0.26006,0.25867,-1.0057,-0.81019,-0.042534 -1.8414,-1.1119,-2.8097,1.3158,0.63868,-1.5462,0.62105,-0.31152,0.10692,0.49329,-0.37722,-0.053269,0.12151,0.62546,-0.74571 -2.7124,0.47393,-2.0642,0.12958,0.51597,0.032175,0.69418,1.3968,0.28245,1.6788,0.046482,-0.61946,-0.47851,0.89632,-0.71185 -0.035734,1.1574,2.2491,1.2587,-1.291,-1.5518,0.69849,-0.34637,0.20803,-0.093398,-0.50422,1.084,1.4357,0.17127,-0.065768 0.31662,1.6998,-1.129,3.0932,-0.65477,-0.018054,-0.13665,-1.2373,-1.0398,-0.38467,-0.23477,0.19383,0.0044152,0.82027,0.64233 4.1049,-1.8844,-1.2824,-0.65025,1.9612,-1.9333,3.3778,1.1939,0.28076,-0.28075,0.14191,0.87943,-0.34674,0.6501,0.67149 -2.1293,-3.9159,1.4798,-2.4808,0.16319,0.090286,-2.7361,-0.025953,-2.4425,1.0821,-0.61032,-0.088169,-1.0318,-0.82901,0.32776 -3.3349,-0.60201,-0.17134,-1.2674,-0.13372,-1.1556,0.42343,0.06805,-0.58208,1.0031,1.5197,-0.080684,0.1443,0.34043,-0.94913 -0.42036,-4.097,0.82694,-1.0093,-0.3755,0.47846,-2.2977,-0.93113,-1.3256,2.0888,-1.3385,0.50571,-0.46833,-0.62675,0.27699 5.2648,-2.9956,-2.0309,-0.030521,-0.27607,2.064,0.76246,-0.14144,-1.2029,-0.59239,0.2322,-0.99125,-0.78727,-0.29027,0.13912 2.9479,0.76339,-0.21114,1.0453,-1.476,-0.98786,-1.4785,-1.658,0.88381,-0.65702,-0.46531,-0.74725,-1.1794,-0.17716,0.12995 -1.4356,-4.9093,0.43902,0.93293,1.8741,1.1143,-1.7382,1.407,-0.66999,0.76366,-0.23439,-1.9323,-0.34473,-0.071263,0.18574 -1.1903,-2.7214,1.0224,-2.2745,-0.99616,1.4761,-2.8058,-0.77375,-0.71934,2.3011,-0.82536,-0.1816,-0.50913,0.73937,0.46447 1.9189,-0.43999,-2.1398,1.3945,-1.338,1.6537,-1.1489,-0.77334,0.3212,0.11005,0.28971,-0.34685,0.56995,-0.18873,0.78119 1.2982,-1.0442,2.3303,-1.7145,-2.9531,1.5367,-0.36333,1.9307,-0.92724,1.3973,-0.76441,-0.94796,0.95151,0.74316,-0.21781 -1.7354,-4.1594,1.0453,-1.7563,-0.33441,0.1644,-2.8164,0.06737,-0.27675,1.1817,-1.064,-0.27079,-0.20075,-0.41642,0.35406 0.056779,-2.4283,3.7518,-1.2704,-1.677,2.1481,-0.87339,1.6187,-0.68506,2.1069,0.48409,-0.64899,0.4394,0.20746,-1.1445 -0.32294,2.909,-1.4937,-0.44698,-1.2439,0.78743,-0.79232,0.8936,-0.96067,0.25987,-1.5515,-0.9393,0.21069,-0.07185,0.56669 3.3452,-2.806,-3.0959,0.50616,-1.7368,1.3273,1.7139,2.4566,-0.059882,1.4207,-0.95671,1.0935,-0.4104,0.38902,-0.81085 -1.5,-2.77,-0.2456,-2.0723,-1.6852,0.73676,-1.5345,-1.3111,-2.1526,0.63023,-1.2586,-0.99138,-1.1657,-0.56036,0.80868 1.026,-0.096149,-2.2299,1.3887,3.3696,-0.088976,-0.56478,2.3852,-1.5222,0.23979,2.078,-1.3207,-0.61418,-0.24172,-0.25559 -2.9345,-2.3834,1.3118,-2.5012,0.42693,2.7081,-2.1881,0.27668,-2.3056,0.42807,0.32236,-1.0348,-0.48053,0.4927,-0.14118 3.2207,-1.0658,-1.6724,0.69462,-1.1644,0.42183,-0.35776,-1.0964,1.4328,-0.67722,-0.22537,-0.92714,0.16463,-0.065555,-0.20495 -2.7017,-3.0451,0.18722,-1.9289,-0.78147,0.98545,-3.1038,-0.73726,-1.5665,0.95473,-0.41583,-0.080296,-0.32776,-0.16671,0.63947 3.5776,-1.3419,-2.9154,0.44077,-0.047144,0.653,1.9406,-1.3109,0.03383,-1.9475,0.35381,-0.97461,0.13284,0.036691,0.48423 2.8053,1.8644,0.025925,-1.6106,-0.49398,-1.7346,1.0817,2.4088,-1.5985,0.39277,-2.0795,-0.93921,0.54607,0.88631,-1.0892 1.2551,-2.5366,0.64787,2.2132,-1.4122,-0.20817,2.3098,-1.1491,-0.35884,-0.85155,-0.38389,-0.16591,0.42778,-1.5338,-0.90338 1.2086,-3.6793,0.20742,1.113,-0.93068,1.3482,0.92516,-1.3011,-0.5327,-0.83106,-0.55909,-0.79787,0.24584,-1.8601,-1.1347 -1.7054,1.2354,-1.596,0.12967,-1.3095,2.3678,0.64669,0.83421,-0.46016,0.06652,-0.6014,0.23711,0.42587,-0.28494,1.0446 0.051249,-1.0159,-1.9029,2.0945,0.98672,-1.41,2.2923,-0.1814,-1.4222,1.3297,-1.2133,-0.75175,2.1403,0.29122,-0.26298 0.77087,1.4606,-0.0078944,0.97632,0.17082,-1.3556,-1.8033,0.36031,0.46826,-0.56349,1.6638,0.4908,1.2212,-0.30082,-1.5592 0.021253,-1.7295,-1.4626,2.3217,1.4491,-2.046,2.5166,-0.64427,-2.5657,-0.5991,-0.0080834,-0.40804,2.1768,0.1456,-0.078814 1.3877,0.86851,-1.2586,1.1952,-1.5521,0.36158,-1.542,-1.6071,0.19376,-0.56197,0.88698,-0.85859,-0.77911,0.39474,0.51473 -1.0999,-0.83772,-0.18206,-2.4009,-2.2526,1.6993,0.023325,-0.46686,-1.925,1.0821,-0.054299,-2.095,-0.24795,1.5686,0.093646 -0.93917,-2.4833,-1.8009,2.2706,-0.037762,-0.99574,0.69119,-1.1041,-1.6109,-1.3034,0.471,-0.31401,0.80628,-1.5333,-0.60246 0.35925,-3.4582,0.072548,3.1374,-0.75428,0.6107,0.078578,0.66746,-0.76211,-0.74915,0.73126,-0.84393,0.21938,-1.5385,-0.14484 1.0901,-3.9037,1.6681,1.9354,0.36435,2.9046,0.066069,0.19261,-1.8507,0.07452,0.84868,-0.5318,1.3387,-1.3961,-0.40019 2.7018,-3.8511,1.8783,1.7653,-0.24911,2.5518,0.67043,-0.33035,-2.0487,0.38279,-0.24864,-0.10328,0.11834,-1.3445,-0.47161 0.23488,-2.4395,-1.1392,1.5667,-0.20649,-0.55096,1.5044,-2.074,-1.995,-1.4214,-0.25271,0.17822,1.81,-1.4817,-0.55974 3.714,-3.4817,-2.5532,0.33948,-1.171,2.621,2.1871,1.0191,-2.0139,-1.8017,-1.2582,0.56827,0.69738,0.032143,-0.57778 -1.0014,-1.7648,-2.5145,1.8074,-0.11925,-1.0523,1.2973,-0.68316,-1.9224,-1.9177,0.53246,-0.47869,0.67012,-0.67811,-0.43057 1.0426,3.0568,0.10435,-1.1011,-0.47357,-1.3498,-0.40637,0.058948,-0.092268,0.61293,-1.7485,-1.1781,-0.37007,0.7217,0.58404 -1.2717,-1.2997,-3.1536,1.9238,-0.12681,-1.5081,0.77139,-1.0591,-1.1143,-1.1443,-0.12041,-0.43195,-0.5471,-0.029713,-0.23739 2.9973,1.153,1.307,1.5458,1.1291,-0.95738,-0.39289,-2.5231,-0.77534,-0.43657,-0.75913,-1.1912,-0.059964,0.29866,0.82506 0.24888,-0.6883,-0.64117,3.5541,-0.39162,-1.288,1.5361,-0.62051,-1.7584,-1.3398,-0.13725,0.16218,1.1363,-0.37505,0.21668 3.2013,-1.4992,-1.8227,-0.0083784,-0.41719,1.0097,0.15908,-2.0745,-0.90804,-0.67828,0.69787,-0.8687,0.84776,-0.31025,1.904 1.3128,0.29672,-0.42672,1.6371,3.8655,-0.14558,0.48514,-0.44109,-1.3028,-1.6756,0.011916,-0.59297,2.9026,0.34515,-0.78659 1.9065,1.8126,-1.7082,-0.31545,0.12121,-1.1574,-0.52322,-0.47176,1.4052,1.7235,0.19099,-1.3679,0.56388,0.17171,0.98252 1.9958,2.0391,-0.21107,1.753,0.78355,-0.89156,-0.10033,-0.54375,0.14311,0.74202,-1.9447,-1.4152,0.93918,-0.17999,-0.22054 -1.3227,2.3881,-0.2675,1.2255,-0.8998,0.22204,0.18311,1.3558,-0.4737,1.7852,-1.244,-0.30874,0.18994,0.50718,0.98481 3.9398,1.0174,-0.24292,-0.59182,0.49529,-2.3457,-0.53923,-0.86339,-0.26123,1.387,-0.32814,-2.0371,-0.56678,-0.6509,1.0142 -0.36415,-0.71365,2.4939,2.1226,-1.6987,-1.7621,1.0929,-1.3582,-0.20057,0.18149,0.34015,0.44422,-0.0091262,-0.43616,0.26787 0.06625,2.0364,0.23305,2.8839,0.4665,-1.5114,-0.70244,0.51999,0.13502,0.39161,-0.57112,0.00022643,0.84195,0.72892,-0.25291 0.083603,2.0521,-0.53573,2.2081,-0.082009,-1.7514,-1.4269,0.058794,0.59505,-0.15511,0.4138,-0.075188,0.85174,1.3204,-0.7817 0.13147,1.5892,-0.47265,2.9401,-0.6373,-1.2611,0.42657,0.18423,0.47782,0.72194,-1.4726,-0.38697,0.76536,0.78702,0.45205 1.0866,2.0117,-0.40862,1.3392,-0.68709,-0.69751,0.27248,0.77667,0.8223,1.4972,-2.6324,-0.89787,-0.086091,-0.0070833,-0.22786 1.2893,1.6243,1.528,-0.49243,-2.706,-0.68798,-1.9737,-0.4596,-0.67059,-1.4985,0.17851,-0.24288,0.49738,-0.12507,0.76928 -2.4402,0.37688,-0.077814,1.0562,-1.8525,-0.74342,1.0441,0.010972,0.45971,-0.364,1.3682,0.56462,-0.31451,0.33147,-0.31133 2.4448,-0.13884,-1.7461,0.13294,-1.0589,-1.5915,0.7822,-0.86473,1.7424,0.76683,0.81288,-0.37921,-0.19897,0.12885,1.7801 -0.94931,2.7651,-0.57461,1.7653,1.3222,-0.069008,-1.099,1.7605,-0.65206,0.62775,-0.23663,0.043741,-1.2138,0.75761,-1.0894 4.2415,-0.89127,-1.1953,1.1858,0.035131,-0.88214,0.46193,-1.1843,0.75926,-1.8759,-0.37559,-1.1935,0.44611,0.65949,-0.32043 2.7075,-0.30351,-1.1465,-0.59381,-1.3673,0.87762,-1.4855,0.48873,0.083987,1.5697,2.3282,-0.36528,1.7929,1.0677,0.99286 0.86033,-0.36609,2.0661,2.2359,-0.66171,0.80932,-1.9621,-0.41703,-0.74213,-0.56628,1.9585,0.5328,-1.4529,0.8549,0.63509 -1.0636,0.18182,0.98036,0.73473,0.98695,-0.15833,-0.13899,2.5274,-1.3862,2.6709,1.0421,0.75654,-0.077439,0.15624,-0.0085301 2.1429,1.4784,0.45195,-1.4649,-0.22666,-1.8916,0.7115,0.26753,0.14505,-2.5087,-0.788,-1.0266,-0.80065,0.91589,-0.34207 -1.9998,-1.1265,-3.033,0.66837,-0.77746,-2.015,0.14345,0.091756,-0.47612,-0.37707,0.0043109,0.21573,-0.16063,0.47598,-1.1127 2.9753,-2.9712,-0.38008,-2.5767,-1.0163,-1.641,1.2173,2.455,-0.58582,-0.32591,0.82519,1.6389,-0.20604,0.22344,0.35709 0.98103,2.7138,-1.3087,-0.21355,-0.70089,-1.1847,-0.31244,0.8159,0.79072,0.6515,-1.8387,-1.3492,0.064578,0.52008,-0.39241 -1.0022,2.1418,0.05175,1.6573,-1.214,-0.96528,1.106,0.64183,0.069005,1.818,-1.6711,-0.088817,0.54291,0.43735,1.2473 -1.9778,-1.906,0.47216,-1.9544,-1.2485,0.89818,-1.5375,-1.7729,-1.3039,1.9096,-0.51542,-0.64635,-0.30028,-0.91006,-0.067966 -1.3664,1.0419,0.1369,2.4424,2.1092,-1.1852,1.4709,0.44965,-1.8001,-1.4788,0.54718,-0.1192,-0.01566,0.8352,0.26384 1.3462,1.6705,-2.1542,1.4972,-0.48948,-0.46789,-0.33779,-0.095824,0.43848,-2.0432,-0.49949,-1.2739,-0.66079,1.055,-0.60799 -2.5057,1.5361,-1.55,0.39612,-1.2465,0.72616,0.44809,1.8389,-0.33888,1.1587,0.04979,0.13607,0.28339,0.36942,0.60722 1.6495,1.2949,-0.84772,1.2,-1.1391,-1.9807,-0.32342,-0.67336,1.5392,0.14108,-1.4168,-0.68645,0.701,0.60057,-0.18016 3.9637,-1.5024,1.9821,1.4347,-1.2833,0.91919,-1.4642,0.9437,-0.47184,1.078,-1.8339,-1.0984,-0.66341,0.42788,0.48041 -3.175,0.50319,-1.657,-0.39008,-0.93739,-0.48397,1.7036,-1.6383,-1.7731,0.31948,-0.15207,-1.047,0.87112,0.11751,-0.12605 0.18272,-1.8594,-1.0365,1.2206,-0.076338,-2.5737,1.5082,-1.1167,-0.91469,0.96404,-0.46845,0.93127,1.8827,0.36724,-0.58719 2.9599,-1.268,-1.6413,-0.66093,-1.9209,0.30354,0.44535,-0.13673,1.3562,0.75686,0.82052,0.76194,0.611,-0.032591,0.72993 -0.52697,-2.0052,-2.6312,0.56935,-0.84218,-2.462,-0.79453,0.80934,-0.72838,-0.80295,-0.13758,1.7988,-0.76947,-0.3202,0.039285 -1.2603,-4.4689,-0.58659,0.59598,-0.32244,-1.8249,-1.3821,0.28376,-0.4894,0.33508,0.30346,0.61296,-0.030345,-0.64669,-1.044 -1.8871,-2.5007,-0.99954,-0.033175,-1.5706,-1.9197,-0.74703,-0.59175,0.36556,0.1155,0.74044,0.2113,0.45713,-0.39885,-0.99047 -1.8973,-3.199,-0.98818,0.27482,-1.0305,-0.93794,-1.355,0.74532,1.0394,0.060216,0.39884,-0.63668,-0.90405,-0.75518,-0.82462 1.5868,1.9671,-1.7323,-0.65453,-2.0014,-0.60275,-0.64409,-0.18226,1.2122,-1.2971,-0.97792,-0.78371,0.8049,0.19267,-0.48613 -0.37794,-1.9011,-2.5847,1.263,-0.72728,-2.0825,-1.0047,0.68403,-0.24356,-0.25637,-0.096589,1.4005,-1.0952,-0.43737,0.38333 -1.2364,1.2562,-1.8811,1.8892,-1.4881,1.4864,-0.37752,1.2414,-0.054067,0.15793,0.19408,0.59812,-0.92217,0.4221,-0.70544 1.4895,-0.00029337,0.9043,2.5046,-1.2507,0.0030555,-1.5486,-0.62509,0.44987,-0.1762,0.74812,1.0212,-0.22334,0.26492,0.030762 3.4,-0.94495,0.61988,2.1249,0.009318,2.5231,-1.5164,0.69507,-0.89058,1.5215,-0.41207,0.3139,1.2515,0.7849,-0.8724 -0.075972,-1.8919,-2.6407,1.623,0.52775,-1.1471,-0.41011,1.2947,-1.4185,-0.67104,-0.49777,0.39367,-1.4289,-1.5643,0.58243 1.3416,1.3121,-2.8508,-0.71008,-0.86944,0.43834,-0.11177,0.76511,1.3348,0.93725,0.048011,-1.141,0.17118,0.18847,0.87254 0.48261,-3.8485,-1.8326,1.0032,0.27482,-1.7171,-1.3543,1.9254,-2.4035,-0.60528,0.08581,0.93446,-1.1787,-1.2583,0.28005 -0.92068,-1.4261,-1.5731,-0.41402,-0.64881,-0.26614,-1.9265,1.1621,-0.53533,-0.58897,0.35849,1.6626,0.72223,-1.836,1.0003 2.994,-0.064521,-1.6033,0.57004,0.035144,-1.2872,0.42783,-2.7746,0.40233,-1.4711,0.15653,-0.98671,0.70435,0.15859,1.2179 1.3541,3.0311,0.5392,-1.0112,0.066754,-2.7168,0.20942,0.99382,-0.99423,-0.2257,-1.3648,-2.0781,-1.3589,-0.23296,0.46823 -1.2392,-2.7069,-2.3607,-0.8449,-0.36583,-0.60804,-2.2434,2.0226,-0.59404,-0.41756,-1.071,0.4774,-0.92066,-0.73097,1.0254 0.1933,-1.3094,-2.7189,1.916,-1.3016,-0.074848,-0.86259,0.8526,0.60226,0.53532,0.13672,0.44507,-0.41355,-0.65389,0.32443 -0.45081,-1.9956,-2.4599,0.11685,-0.96295,0.047292,-1.3284,1.9006,-0.14354,1.0045,-0.86012,-0.51186,-0.49601,0.62282,0.65878 -1.4001,-1.9745,0.40656,0.8502,1.6348,-0.53369,-0.37429,0.042162,-1.3882,-2.5225,1.4771,0.2476,0.12291,-0.53964,-0.57636 -0.052436,0.79368,1.9204,-0.081285,-2.4292,0.68613,-1.1715,0.5952,-0.44363,0.50505,1.7636,0.60081,-0.5485,0.89514,0.59292 -0.52573,2.7822,-1.8115,0.91697,0.61991,-1.1943,-0.70363,2.2654,0.78699,-0.3243,-1.4797,-1.0663,-0.32049,0.57471,-0.87809 -0.63814,-2.5661,-2.3171,0.8648,0.2309,-3.6272,-0.43876,0.56591,-2.2984,-0.84937,-0.098606,1.9294,-0.05982,0.088403,-0.09183 0.62157,-0.24978,-1.9206,1.7177,0.50499,1.3036,-1.612,0.19659,-0.10729,-0.68821,2.2074,-1.1791,-0.91994,0.71586,-0.15953 -0.43318,-2.8325,-1.8444,-0.28439,-1.672,-1.4327,-2.0704,0.87757,-0.82407,0.021732,-0.037647,1.2784,-0.070129,-0.45433,0.14413 -2.4731,-0.47083,1.096,0.69559,-0.95414,-1.5971,0.88348,1.0136,-0.12331,-0.95386,1.7444,0.58059,-1.4091,-0.12336,-0.91008 -2.9277,-1.8782,-1.9673,-1.0007,0.79056,-0.43775,-0.26779,0.47928,-0.8547,-1.0438,-0.2531,-0.81962,-0.90884,-1.8942,-0.59811 -1.4705,-2.2834,-1.5751,-0.9863,-1.3661,0.60105,-1.86,1.3854,-0.78781,0.18255,-0.11703,-0.096145,1.3117,-0.68004,0.3242 1.8745,1.0868,2.5936,-1.1739,-1.124,0.49797,-2.3831,1.3869,-1.7422,-0.70841,1.2889,0.16384,1.1804,-0.17976,-0.40294 1.0713,-3.1613,0.32175,0.61063,-2.2587,0.6808,0.10752,0.80221,0.94883,1.3888,-1.4001,-0.84894,0.12144,-1.114,-0.87896 -2.2585,-1.1603,-2.949,0.46108,0.30942,0.12407,-0.56548,-0.059528,1.0672,-0.11936,-0.20859,-0.20497,-2.0019,-0.36331,-0.41324 -0.1763,-2.2847,-1.4134,-0.052932,-1.8231,0.056076,-1.9408,-0.01637,0.50036,1.8439,-1.5731,0.45716,0.65668,-0.61593,0.38275 -1.7553,-0.92811,0.12637,2.2233,-1.0381,-0.38514,0.50156,-0.0024651,1.1504,-0.72505,1.9106,-0.038796,-1.5637,-0.0066783,-0.68315 -2.0727,-2.0132,1.5808,-1.8702,-1.2833,2.1225,-1.2061,-0.9173,-1.5293,0.53482,1.2938,-0.67655,-0.50034,0.067563,-0.32777 2.759,-1.8117,0.47971,1.6665,-1.3432,2.9296,-0.11354,0.60872,-0.43722,0.30777,-1.5553,-0.90558,0.57201,-0.44739,0.58198 -1.3475,-2.333,-2.6161,0.94915,0.01802,-0.64282,-1.1851,0.20964,0.66459,0.1323,-0.67892,-0.67893,-2.2774,-0.82728,0.18344 -1.7409,-0.10384,-2.0154,1.6921,0.25918,1.0264,0.38438,-0.43237,-0.11141,0.026569,1.3379,-0.15662,-0.024489,-0.38078,-0.25891 1.2227,-0.7496,2.8777,2.2021,-0.60445,-1.2794,0.050977,-1.0053,-1.2366,-0.47694,0.98532,0.94312,0.24525,-0.24617,-0.029684 2.7815,-0.77166,-0.18045,2.2013,-1.2199,2.1116,-1.5455,0.60586,-0.29701,0.86546,-0.73698,-0.017435,1.0516,0.27622,-0.29501 -0.62544,-0.93309,-2.2117,2.196,-0.48476,-1.0445,1.2098,-0.88898,-0.59919,1.0709,0.15757,0.16923,1.4769,-0.069022,-0.48406 -0.12414,-0.74389,0.40635,1.4518,-2.1791,1.8567,-0.38641,1.1865,1.1683,1.6648,0.041693,-0.29724,0.96031,0.21979,0.60845 0.58852,1.5052,-1.9026,2.0618,-0.48318,0.62429,-0.51193,-0.967,-0.69188,0.66099,-0.066831,-0.70681,0.49916,1.0669,0.31295 4.4424,-1.3915,-1.7815,-0.89017,-0.72352,-0.11288,0.3445,-0.52153,0.89282,-0.50505,0.25458,-0.24995,-0.35486,-1.3281,-0.42813 1.646,-0.23862,1.8882,2.3377,-0.9615,0.066759,-1.377,-1.0276,0.062237,0.10019,0.84507,0.95729,-0.41543,-0.033562,0.21854 -1.8954,-1.0435,-1.2118,0.47327,-1.2981,1.4319,-0.83593,0.94912,1.3263,1.2793,1.1149,-0.6238,-0.30962,0.51347,-0.71397 0.18393,-3.5661,1.1358,2.1412,1.3811,1.4963,0.25067,2.5013,-1.5443,-1.3763,-0.66894,-1.5825,0.064933,-1.9895,0.73743 5.0699,-2.1545,-0.7526,-2.7818,-1.2601,-0.74336,0.45693,1.1547,0.32202,0.77093,0.60318,0.31201,-0.25042,-0.61785,0.98787 0.091758,0.88432,-0.32093,2.9079,3.6538,-0.35278,-0.03793,3.1777,-1.9752,-0.033986,-0.22637,-0.62725,-0.90719,0.43383,-0.6138 4.7448,-2.1313,2.0062,1.4059,-0.48249,0.45983,-0.85967,-0.012484,-1.3885,-0.3789,-0.18675,1.1014,0.07039,-0.53852,-1.1401 2.0808,-1.1663,-0.12625,1.3347,-2.2265,2.8688,0.73891,1.2683,0.040984,0.16046,-1.4614,-0.29124,-0.57024,-0.083029,-0.48315 0.066358,0.66852,-1.4911,3.1301,2.7247,-0.10847,0.36004,2.414,-1.4459,-0.24256,-0.68021,-0.98218,-0.27548,0.017595,-0.27646 -1.8546,-2.1288,-1.2177,1.5361,-0.58673,1.0882,-0.41248,0.54698,1.5251,0.53857,0.7007,-1.3794,-1.1399,-0.61357,-0.80905 2.273,1.5181,-0.41382,0.66293,-0.29878,-1.6127,0.17191,0.91429,0.86317,0.88393,-2.2526,-0.6975,0.58682,0.59603,-1.1046 2.3701,1.1594,-1.3249,-1.3635,-1.3232,-0.37796,-0.74686,-0.83086,0.87364,-1.2327,0.16357,-0.68238,1.9451,0.16215,-0.69909 1.0852,0.84409,0.48045,0.64712,1.029,-1.5477,-2.1651,1.1,0.21591,-1.5111,2.0138,0.30976,0.54176,-0.28957,-1.4226 0.67608,1.9796,0.33013,0.15386,-2.9881,-0.37132,0.93544,-0.19171,0.29307,-1.1331,-1.1547,-0.10792,-0.27047,-0.028385,0.82993 -0.41014,-1.8628,-1.4297,1.5338,-1.2238,2.6322,0.033561,-0.76987,0.22,1.1282,0.15921,-0.88187,0.96962,-0.64735,-0.35149 1.8898,-2.0246,-1.5077,1.5377,0.541,1.4552,0.40962,-0.91859,-0.50733,-0.199,2.6695,1.0064,1.2863,0.79608,1.6061 -2.2819,-3.9981,-0.21786,0.5148,1.5265,-2.4429,-0.93132,-0.64553,-1.9078,-0.38498,0.60905,0.86,-0.85711,-0.2277,-0.664 3.5458,-1.483,-2.0993,0.38734,0.87464,-0.97954,2.4268,-1.5487,0.5046,-0.67775,0.23138,-0.5381,0.18385,0.18557,2.4311 2.833,-0.32588,0.14249,0.11594,-2.6922,0.31699,-1.7751,0.35743,0.46011,-1.1007,-0.79276,-0.36861,0.40674,0.077431,-0.24072 -1.879,-1.0823,-1.1706,-1.25,-0.9432,-2.4358,-0.52051,-1.8735,-1.8906,1.0758,-0.71271,0.37861,0.38265,0.95581,0.29308 -0.0015336,1.3725,-1.0276,3.0835,0.11358,0.21333,-0.57004,-0.67528,-0.095952,-0.71804,0.35618,0.10725,0.41518,0.60935,0.097785 -0.09919,-3.3292,-0.26915,0.091916,0.35211,-2.7601,-1.5878,-0.29715,-1.7015,0.45592,0.0070156,2.7253,0.72863,-0.99148,-0.0013427 3.5483,-1.4916,1.0527,1.9624,-0.028148,1.8325,-2.3274,-0.15599,-1.0663,0.63286,0.41558,-0.039147,0.43571,0.19077,-0.060032 0.72845,1.5747,1.2158,2.2913,1.8926,-1.5171,-0.066986,2.1116,-1.5523,1.1738,0.26332,0.86298,0.69707,1.6164,-1.4213 -2.1538,-0.65091,-1.6269,-0.36584,1.3945,-2.7522,-0.69245,-0.1825,-1.573,1.4619,-0.34988,0.87789,0.75492,1.5318,0.78055 -1.5378,-1.8134,-1.7287,1.8835,0.16578,-2.8416,0.78577,-1.8813,-0.55023,0.5243,-0.32729,-0.094224,0.41693,0.42182,-0.16942 -1.4065,-2.7056,0.32775,-0.073437,-1.2767,-2.3407,-0.72125,-1.8027,-0.76629,0.70365,0.73695,0.29943,-0.18833,0.51842,-0.34326 -1.4962,-2.2675,-0.62298,-1.8189,-1.2724,-0.21019,-2.648,-1.2203,-2.3251,0.46961,0.36916,1.3633,-0.35806,0.076843,0.91295 -0.79408,-3.8539,-0.88683,1.0653,-0.1917,-2.3828,-1.4977,-0.21378,-0.79548,0.42331,0.49252,1.2613,-0.26097,-0.29197,-0.28664 3.4967,-0.025477,0.23709,0.50516,-1.0799,-1.0192,-1.0451,-2.3174,0.49501,-0.44063,0.58772,-1.277,-0.64179,0.54321,0.30493 0.050004,2.7874,-3.205,-0.35517,-0.49434,1.5175,-0.33057,0.9698,-0.92645,-0.24493,-0.53222,-1.4569,0.33977,-0.44634,-0.020906 0.18398,-0.0070392,0.6211,0.9178,-1.5524,1.3864,-1.8306,2.351,1.1306,0.26464,0.98012,0.50835,0.54542,0.63154,0.34272 -2.0863,-3.2791,0.82468,-0.16794,0.095969,-2.0163,-1.3811,-0.89948,-0.49842,0.41252,1.0389,-0.26852,-0.6479,-0.80678,-0.88715 -2.5572,-2.2565,-1.1365,-0.093739,-0.0089097,-3.0667,-0.72543,-0.87281,-0.81315,0.029913,0.51968,0.67862,-0.46677,1.3559,-0.19352 2.9195,-1.3792,-0.34628,1.587,0.46219,0.74283,-0.4521,-2.2729,-1.1891,-1.2126,2.5651,-0.73625,1.1275,0.017825,1.1972 -0.8323,-3.9838,2.6091,-0.43739,0.33032,-1.3562,-1.058,-0.73813,-1.432,0.64814,1.3217,0.094957,-0.57639,-0.094194,-0.80542 -2.5445,-1.1917,-2.4475,-0.32533,-0.26798,-2.5468,-1.098,-0.58072,-1.1607,-0.53171,0.44468,1.4666,-0.10152,0.66376,-0.094609 -1.1505,0.53859,0.23614,1.1729,-2.1424,0.91674,-0.66968,0.70624,1.1517,-0.21478,1.86,0.75465,-0.61867,0.10074,-0.16417 -3.2816,0.37751,0.33859,0.59411,0.36238,-1.4412,1.3392,-0.30575,-1.294,-0.38622,1.0485,0.22026,-1.0945,1.035,-1.0784 0.38323,-2.618,2.3282,-0.96291,-2.388,0.085513,-1.0316,0.43289,-1.4214,0.94258,0.9083,-0.70165,0.44945,-0.084295,-0.55682 0.78804,2.5409,-1.7032,-1.1521,1.1135,-0.56985,-0.47501,1.2181,-0.27417,1.6297,0.25083,-1.0844,-1.1723,-0.32628,0.037375 0.22586,1.8974,-1.9403,-1.4599,0.75619,1.4682,-1.0307,1.7313,-0.62146,0.03588,1.7045,-0.67199,-0.27424,-0.40147,-0.05284 -3.4676,-0.2301,1.6032,-1.0183,-0.30662,1.6199,-0.10376,1.7399,-0.17753,-1.8818,1.5979,-1.1139,-0.73947,-0.64589,0.070772 1.8541,2.1873,-1.5727,0.013057,-0.63813,-1.2521,-0.56423,-0.49132,0.91819,1.6014,-0.66257,-1.5762,0.21643,0.018006,0.30984 -0.019478,-1.7585,3.6589,-3.361,-0.51569,1.5397,-0.54158,2.2054,-2.5485,1.1462,0.45328,-0.78672,0.16983,0.93985,-1.1906 0.015251,2.3901,-1.1299,1.9451,-1.8068,-0.3833,-0.14976,-0.29192,0.07152,0.68184,-0.96338,0.16854,0.13865,1.2104,0.56874 -2.15,-2.129,0.42184,-2.8131,1.9453,2.4844,-2.042,0.27439,-2.2967,0.37855,-1.0233,-0.12308,-0.56519,0.45411,0.71668 -3.5251,-1.9283,0.96087,-2.2337,0.21084,0.90923,-1.8347,-1.2497,-1.2711,-0.33879,0.75354,-0.29102,-0.66841,-0.41698,-0.3029 -3.7333,-2.2479,-1.7773,-1.7003,1.6368,0.9524,-2.6448,0.2169,-0.97663,-1.1527,-1.1975,0.32354,-1.0575,-0.87045,0.93312 -0.10072,-0.3933,3.1749,0.20069,-0.36174,-0.48102,-1.7467,2.5217,-1.1264,-2.4221,1.582,0.84437,0.52628,-1.0539,-0.82148 3.4975,-1.3035,-1.3573,-0.94378,0.65836,-2.6753,2.0416,0.90009,1.4794,-0.9579,1.0321,1.2096,0.092156,1.1127,-0.039713 -3.4828,-1.6949,0.058186,-2.375,1.2392,0.62099,-2.212,-1.4663,-2.4429,-0.51218,0.50295,0.72095,-0.97701,-0.6813,0.30842 0.72392,0.60403,-2.3829,1.6475,3.4274,0.36068,-0.080518,0.66938,0.26251,-0.50108,1.8957,-1.576,-0.2122,-0.9337,0.35938 -3.9054,-1.6681,0.085959,-1.8538,1.3417,1.8669,-1.5295,-0.36361,-0.54401,-0.81959,0.086182,-0.77141,-0.64609,-0.48076,-0.19551 1.8557,1.551,0.22189,0.87398,-0.77738,-2.1458,-1.3181,-1.6616,0.23085,-0.20449,0.3478,-0.59136,-0.13492,0.18766,0.1555 -2.5663,-3.4038,0.19771,-2.7045,0.89667,1.092,-2.9267,0.49024,-1.9771,0.21132,-1.3164,0.16238,-0.18014,-1.3404,0.3424 -2.7829,-2.4928,0.2064,-2.3723,1.3942,1.7962,-1.9603,1.1542,-0.84478,-0.16041,-0.89056,-1.0811,0.39297,0.39483,0.58419 -1.6013,-1.8661,1.6022,-2.0586,-0.40511,2.8701,-0.96102,-1.1697,-2.6359,0.08057,0.31935,-1.1897,-1.0335,-0.21276,-0.47479 1.4633,1.656,-2.994,-1.7681,-0.73834,-0.96877,1.2455,1.0499,0.96027,-0.4017,0.18744,-0.022311,1.0227,0.12326,0.18173 0.13211,3.0769,0.52987,-0.2661,-2.3492,-0.18676,-0.78515,-0.82828,-1.8368,-1.5989,-0.15503,-0.11282,0.37042,0.13707,0.98533 2.1365,0.14228,2.5956,1.2343,-1.381,-2.116,0.22447,-1.3633,-0.92475,-0.63417,-1.2101,0.8511,0.0061347,-0.44352,-0.55695 2.809,2.5234,0.14734,-2.7488,-0.5779,-1.3776,-0.70932,0.54759,-1.8894,-1.5676,0.82026,-1.0307,-0.47902,0.80787,0.4755 2.8058,-0.95919,-2.9584,1.3535,0.75394,-0.030516,2.076,0.44303,0.8888,0.33599,0.076984,-0.3491,-0.057841,0.28316,0.22822 -2.8318,-2.0479,-0.57234,-1.9964,1.3002,0.90549,-1.9508,1.7857,-0.95862,0.25403,-1.2558,-1.3012,0.45456,1.4646,1.2871 4.4103,0.383,-1.4545,-0.99721,0.31263,-2.3064,1.8328,-1.3622,1.2331,-0.50471,-0.33174,-0.89802,0.64877,0.010406,-0.046555 -1.2943,-2.23,0.96068,-2.7124,0.81518,1.8569,-1.9406,0.8557,-1.633,1.1483,-1.0145,-0.058194,0.80257,1.0935,0.67167 2.2324,1.7266,-1.0638,0.028861,-0.73226,-1.4751,-0.090374,0.61455,0.86988,1.0228,-1.2385,-1.4569,0.30032,0.92405,-0.14038 1.4046,1.3538,-0.21149,-1.3361,-2.3432,-0.30029,-2.1449,-0.58821,-0.28534,-1.1152,1.3108,-0.72945,-0.437,0.21742,0.65444 4.2188,-0.21148,-1.5879,0.43656,0.80499,-1.4146,2.6564,-0.90057,0.29474,-1.2934,-0.80155,-0.9273,0.11442,0.094253,-0.7815 4.4791,-1.4159,0.88859,1.1659,-0.040488,-0.23664,0.89689,-2.1868,-1.4024,-1.2612,0.4251,0.19908,-0.03533,-0.73346,-0.96481 0.9648,-0.32813,1.5487,3.2281,-0.38109,0.046242,-0.79464,-1.8166,-2.2061,-1.9245,1.18,0.52009,-0.672,0.4807,1.1173 3.812,-0.39776,0.32019,-0.057135,-1.7797,-2.2488,-0.24829,-0.32107,-0.016456,-0.18163,-0.18287,0.16962,0.96262,0.75899,-1.1911 4.7461,-2.3415,-0.70115,1.2108,-0.7714,0.69853,-0.055165,-0.055937,-0.13141,-1.3044,-0.79967,-1.1925,-0.79114,-0.87475,-1.1825 3.3721,0.8985,0.49898,0.0060958,-0.10419,-2.8481,-0.44554,-1.0384,0.0080991,0.27598,0.61595,-0.89641,1.1867,1.255,0.14593 3.9551,-2.1597,-2.1386,-0.059476,0.1208,-1.0312,2.8333,0.43543,1.6123,-0.57887,0.63592,0.97371,0.31061,0.91106,0.0034301 -1.7519,1.9028,-1.3063,0.49092,-1.8412,-0.32414,0.087252,1.7965,-0.062514,0.74335,-0.064634,0.30856,0.47565,0.72456,0.35844 6.0862,-3.4928,1.1184,-0.65089,0.24871,0.32623,-0.12239,0.85015,-2.6988,1.2348,0.7031,-0.42842,-0.77479,0.85343,1.0279 2.5034,1.3387,-1.0635,-0.87723,-1.32,-1.9528,-0.048781,0.74758,0.92771,-0.36343,-1.3414,-0.35259,0.85504,0.84221,-1.3809 1.8984,-0.49245,3.1859,0.87784,-2.0335,-0.043434,-1.9886,0.48094,-0.49065,0.49615,-0.39273,0.57968,-0.82298,-0.45738,0.46232 -0.66261,1.257,-1.4061,2.4645,-1.1953,-0.92019,0.53316,1.1288,0.65433,1.2715,-0.54764,0.15421,0.076179,0.87625,0.39658 -1.9848,-0.86557,0.44083,1.3284,-0.62652,-2.0133,0.94346,0.80985,0.81869,0.15492,1.2691,-0.25526,0.12414,-0.69513,-0.4745 1.223,2.3725,-1.2085,-1.2462,-1.9176,-0.31371,-0.68002,0.14249,-1.4957,1.2186,-0.20231,-1.2506,0.7181,0.38505,0.6945 1.0933,0.063662,-0.31371,2.7251,-0.60888,0.17834,0.99499,-1.8296,-1.1962,-1.3395,-1.4971,-0.12828,1.4795,-0.77869,0.234 1.542,-0.16406,-0.35099,2.633,-1.237,-0.819,2.2227,-1.0291,-0.74787,-0.1909,-1.4367,-0.23166,0.10976,-0.18826,0.58767 0.1259,-2.6053,3.5269,-0.4822,-1.9806,0.42455,-0.67141,-0.16016,-1.2741,1.3551,1.0579,-1.1266,-0.88852,-0.02464,-0.16464 1.7872,1.7985,0.014101,0.8382,0.89872,-1.1228,-1.3975,-0.54882,0.74316,1.3309,1.1443,-0.36415,1.4139,0.47084,-1.1472 -0.067072,-1.8832,1.8164,-2.2712,-1.1977,1.9582,-0.43614,1.2011,-1.6006,1.863,0.74907,-1.1548,0.88722,1.307,-0.53469 -2.6105,-1.5499,0.80913,-1.0578,-0.15925,2.2981,-1.0836,0.3755,-1.0147,0.39203,1.9091,-1.4847,-0.13297,0.061855,-0.58695 2.1705,-1.0439,-0.46524,1.5475,0.53407,1.4184,-2.1407,-1.0537,-0.93185,0.11268,2.5994,-0.77163,-0.38115,1.1684,0.55573 1.3774,2.1456,-0.42127,1.541,0.086399,-0.98183,-0.074834,0.72918,0.26724,1.58,-2.7369,-1.0733,0.67697,-0.37897,-0.65619 0.95214,0.29041,-2.4312,2.0769,2.4547,-0.71376,0.56913,0.9389,-0.74521,-0.96904,0.24264,-1.6956,1.1174,-1.3171,0.49335 -0.21032,-2.3413,0.43572,-2.2236,-1.7551,1.6759,-1.0777,-1.0747,-1.8882,1.0506,0.093765,-1.6198,-1.0268,0.43367,-0.13455 4.9725,-1.9492,-0.84134,-3.2243,-1.4449,-1.0104,0.30845,0.55288,-0.30972,-1.0927,0.87652,0.26554,1.0108,-0.52657,-0.028594 4.8102,-0.91443,0.92247,0.71508,-0.91366,-0.15525,-0.49934,-0.65933,-0.062583,-0.76685,-0.6326,0.42927,-1.3744,0.51425,-0.97893 0.22023,-2.8837,1.0591,-1.0249,0.25253,1.7221,-2.5522,-0.23454,-1.0971,2.5509,-0.45354,-0.34281,-0.29481,1.9115,0.17334 2.1687,-0.18565,-1.3505,-1.54,-0.93636,-2.3437,0.67296,0.12771,0.64161,-0.42988,1.6011,0.31234,1.1017,0.16298,1.5263 -1.2487,-1.7169,-1.001,-1.0752,0.093846,1.2802,-1.2052,1.7259,-0.025498,0.52512,-1.0237,-1.4903,0.58731,0.56524,0.64916 -0.39086,0.61391,-1.1922,1.1754,-1.9864,1.6397,-0.88883,0.51406,-0.1644,-1.3164,0.92835,0.32491,0.65587,-1.0525,0.55476 -0.44314,1.7579,-0.14219,-0.32323,-2.6742,-0.5859,1.8964,-0.075524,-0.70372,-0.8748,-1.4695,-0.10235,0.72551,0.25366,0.78007 3.3073,0.37614,-0.41666,-2.1944,-2.5016,0.76473,-1.6709,1.8857,-0.13915,-1.5743,-0.87878,-0.83015,-0.19041,0.37221,-0.33157 -1.7439,1.1774,-0.32646,1.3392,-0.61106,-0.12798,0.26861,1.7101,1.1001,0.8438,0.58135,0.74063,-1.1572,0.48005,-0.27318 0.58751,3.6739,-0.65654,-1.003,1.1491,-1.1728,0.22366,0.6108,-1.7018,-2.3162,-0.93909,-2.0196,0.27875,0.45936,0.14666 -1.3555,-2.8511,0.81035,-0.82678,0.71657,1.2563,-1.9007,0.37078,0.35401,1.6401,0.3379,-1.2364,-0.21971,0.4529,-0.7866 -0.44718,-2.7702,-0.20489,0.33986,1.3697,1.2494,-0.67393,2.359,0.070568,0.76527,-0.19063,-2.6589,0.48304,1.3213,-0.45671 -0.58063,-1.0189,0.066253,0.67099,1.1391,1.0722,0.47236,2.4389,-0.31373,1.4092,1.1465,-1.5581,-0.29425,1.4259,-1.3227 -0.23783,-1.5564,2.2645,-1.4704,0.56455,2.4242,-0.18516,2.2347,-0.72116,0.73496,1.2888,-0.7497,1.122,0.73141,-0.56385 3.3401,-1.2871,1.8357,1.6922,-1.1088,-1.6684,1.4748,-1.163,-0.55396,-1.7375,-0.95004,-0.74528,-0.26317,-0.52501,-0.54699 1.9847,1.8142,-1.2044,0.329,-1.5303,-1.8332,0.16198,-0.11872,1.193,-1.074,-1.6223,-0.36787,-0.029915,0.72156,-1.4614 -2.1802,-0.010839,-1.3734,-1.0927,-2.343,0.48114,0.48432,-2.0063,-0.69564,-0.060186,0.51824,-0.37521,0.6268,-0.12664,-0.16033 -2.0574,-1.361,-2.3556,1.0122,-0.57551,-1.9214,0.10943,-0.31149,1.0249,0.27395,0.11977,-0.26125,-0.16394,0.22431,-0.76118 0.39797,-1.591,2.3059,0.17736,-2.0702,-2.3205,2.0215,-0.51198,-0.60842,0.058298,-0.71978,0.72603,1.1599,-0.396,-0.96495 -2.0233,-0.64821,-2.5061,-0.73644,0.046672,1.7366,-2.3344,-0.16684,-0.93922,0.3905,0.22694,2.3345,-0.77495,0.22575,-0.083121 -2.0325,-2.2912,-0.93308,0.9436,-0.057746,-1.1454,0.92916,0.40981,0.08087,-0.73313,0.96086,-1.0155,-1.7387,-0.93299,-1.6641 -0.56371,1.0534,-1.0558,2.6923,-0.5384,0.063186,1.5586,-0.070646,-1.2574,0.63465,0.40259,-0.32436,-0.56225,0.77649,0.99658 -2.0114,-1.7989,-0.62539,0.13292,-1.3293,-2.0639,-0.25343,-1.4695,0.19144,0.30925,0.90925,-0.12833,1.1255,0.042361,-0.77462 -2.1704,0.056353,-2.2205,0.85875,1.0365,-0.66921,-0.45747,-1.1284,-0.76124,0.65892,0.22333,1.4425,-0.10489,1.1722,-0.49482 3.1708,-1.8047,2.7142,-0.025993,-2.9384,0.2278,0.56794,1.0633,-0.11118,-0.82972,-1.0308,0.35188,-2.2096,-0.45049,-1.484 -2.1977,-0.81428,-3.0366,0.73027,1.3552,-0.087433,0.070548,-0.099052,-0.93969,-1.2889,-0.79064,0.39571,-0.80272,0.040136,-0.44845 0.40728,1.803,-0.92945,2.5768,0.72588,-0.53392,-1.0047,0.46878,-1.8028,0.50659,1.308,-0.70062,-1.1325,0.6201,-0.88391 -1.8315,-2.2046,-0.62129,0.70827,0.74346,1.8449,-0.91186,1.2911,-0.69915,-1.321,0.044435,-1.8228,-1.0074,-0.01657,-0.18106 -1.4838,-1.5956,-2.7169,1.2113,1.8809,0.57402,-0.64069,-0.074502,-0.37034,-1.3783,-1.1009,-0.85769,-1.1912,-0.075175,0.62482 -1.4595,-1.6391,-1.3759,1.0607,1.0295,-0.49246,-1.7827,-1.1011,0.16025,0.87334,-0.31466,1.1088,-0.49872,-0.81352,0.40734 4.3384,0.22348,-1.4552,-2.8656,0.081132,-3.2053,1.9585,0.8572,0.89117,-0.95606,0.64655,0.23139,0.34034,1.2792,-0.26076 -2.529,-0.2946,-3.1126,0.44482,0.22002,-2.0361,0.18833,0.20853,-0.039426,0.30536,-0.58472,-0.19306,-0.48579,0.90321,-0.59942 2.8709,1.5505,0.37913,-1.8589,-0.12268,-1.7512,-0.42153,0.11968,-0.87888,-2.2522,-0.34768,-0.57741,2.8397,-0.071638,-0.56969 -1.9032,-2.7465,0.15808,0.099776,-0.56166,-2.9273,-0.43452,-1.1181,-0.61602,0.78743,0.54475,0.51201,0.28853,-0.40612,-0.21287 3.614,-0.52628,-2.1384,-0.0010427,-1.2516,1.1403,0.36882,-0.050693,-0.72405,1.3968,0.83109,-1.8671,0.037406,1.4262,2.0503 -2.0734,-2.2004,-1.7081,1.1939,1.3456,0.20966,-0.97542,-0.47135,0.14773,-0.57325,0.26281,-0.54532,-1.4718,-0.55347,-0.35677 2.5663,0.017679,-0.87173,-1.211,-1.4238,-1.6857,1.2523,1.4113,0.29486,0.60665,-1.0466,0.33011,-1.2692,0.42418,-0.69901 -2.2102,-2.0531,-1.731,0.71269,1.506,0.20541,-0.31067,-0.68355,-0.65935,-1.6548,0.37282,-0.53472,-1.9927,-0.86383,-1.3047 0.88009,1.7587,0.30514,0.028957,2.6166,-2.0463,-1.2813,2.4989,0.44626,0.7164,-0.030662,-0.80141,1.2801,0.14213,-1.2853 1.9971,-3.6308,3.0939,-0.1744,-1.2443,2.1151,0.70906,0.056502,-1.0051,2.4119,-0.66188,-0.83529,-1.55,0.34521,-1.417 3.0817,0.53941,-1.7509,-1.6693,-0.65164,-1.884,1.3815,0.34448,1.2632,1.4482,0.047215,-0.37144,0.40498,-0.57799,1.5704 -1.655,-1.7889,-2.6688,1.0524,0.8533,0.1739,0.30348,-0.55633,-0.45307,-1.1003,-0.20799,-0.80006,-1.3438,-0.4553,-0.70353 -2.2895,-1.1605,-2.7167,0.98116,1.1444,-0.49968,-0.35419,-0.3759,-0.72593,-1.1163,-0.29223,0.12385,-0.80318,0.033676,-0.24925 2.257,0.30126,-2.4534,-0.76349,-2.0436,0.026941,-0.26152,-0.39316,1.974,-1.4771,0.10543,-0.62249,0.72348,0.3986,-0.38738 -0.23479,-2.5136,1.2679,0.44448,-1.7391,-2.3403,1.0912,-1.6157,-0.3352,0.86871,0.19184,-0.094124,0.76444,-0.35411,-0.55997 1.9356,-0.322,-0.0015005,2.1864,-0.46535,0.058926,-0.85814,-2.2688,-0.76301,-2.1468,0.34507,-1.1371,1.2412,0.18844,0.91582 3.8596,1.7721,-0.35989,-3.0148,1.3259,-3.139,0.54603,-0.46615,0.19812,0.81859,0.30796,-1.0292,-0.061956,-0.030888,1.2404 0.98515,-0.2965,-1.371,0.99578,-0.58655,0.4426,3.2058,0.93139,-0.099575,1.3142,-2.0514,-0.94843,-0.82951,0.77108,0.55188 -0.038632,-1.5822,-1.4369,0.23415,-0.085123,-2.7765,1.2413,-1.871,-0.39002,1.3192,-1.9833,-0.36771,0.67017,0.46071,-0.3391 -1.1492,-1.1732,-0.73058,-1.4491,-1.6561,-2.5255,1.0386,-1.2828,-0.46739,0.94012,-0.90144,-0.16919,1.2672,0.23672,-0.24365 -0.91952,-1.6522,-1.6775,-0.32094,-0.86585,-2.8865,-0.83016,-0.86727,-0.91002,1.0721,-0.82165,1.5664,1.332,0.57697,0.2971 -0.41103,-0.27547,1.4386,1.0269,-1.8079,-2.0364,1.3684,-0.71571,-1.0278,1.1008,0.58935,0.72672,1.0756,0.70849,-0.74596 -1.2384,1.6091,-1.3864,1.2506,-1.73,0.10688,1.1595,0.13972,-1.3658,0.08522,0.32088,0.74581,-0.045655,1.0019,0.11186 0.72317,-2.9247,0.85286,-0.3608,-1.6229,-2.6075,2.3204,-1.7482,-0.80546,0.5454,-1.2391,-0.17584,0.012064,-0.53729,-1.2125 -0.4315,-2.2968,0.49917,1.5118,-0.71455,-1.5898,1.7604,-2.5517,-0.61487,0.86091,0.15411,-0.61022,0.90727,-0.51115,-0.57772 0.97999,3.1904,-0.10972,0.34926,-0.11821,-1.7715,-0.33456,-0.12408,-0.40592,1.2947,-1.9807,-1.1944,-0.29832,1.1008,0.37145 1.6746,-1.2364,1.4113,2.1077,-2.0112,0.73673,-0.031696,-0.31732,0.49914,-0.77584,-1.3121,-0.32313,-1.4054,-1.4673,0.60784 -2.3667,-1.217,-1.1281,0.38713,-0.19594,-2.1981,0.81005,-0.55138,-0.30417,1.113,1.3283,0.34765,-0.071909,1.2309,-1.4326 3.9304,-1.7117,-1.3574,-0.071552,0.15485,0.76843,2.8953,-1.0597,-1.3135,-0.82769,-0.41869,-0.14471,0.67822,-0.26859,1.9845 -1.9057,-1.7594,0.083232,1.2753,-0.53246,-2.0377,0.9053,-1.2671,-0.2199,1.1063,1.2507,-0.46681,-0.20249,0.79432,-0.73807 -1.1978,-0.7024,-1.8589,0.88965,0.51518,-2.0077,-0.39506,-0.69196,-0.51653,2.2005,-0.7629,0.71253,0.85545,1.5848,0.714 2.5249,-0.7536,-1.0335,-0.00050668,-1.8072,0.011909,-1.8922,-0.31335,1.0107,0.51159,1.053,-0.69768,1.3539,0.49917,0.37518 0.20799,-4.6423,1.7834,-0.050142,-1.3251,0.55672,-1.168,-0.57835,-0.25573,1.5459,-1.1954,-0.883,0.22128,-0.72322,-0.91339 4.2902,-0.1087,-1.6668,0.53262,-1.6545,0.81916,0.077576,1.4818,-0.039783,1.1231,-1.2389,-0.37484,-0.46808,1.6114,-0.66641 1.1572,2.6394,0.89801,-0.68033,-1.4592,-0.59036,0.087161,1.1753,-1.4414,1.2655,-2.3897,-0.69465,0.24149,0.24929,0.98368 -0.035168,-4.1966,-0.11818,0.46756,0.94811,-1.0797,-2.2124,0.56645,-0.49113,0.8186,-0.41063,1.4198,-0.41917,-1.7111,0.52928 -0.99336,-4.0694,1.1659,0.57535,-0.95398,0.057526,-1.2089,-0.60715,0.25277,0.88048,-0.62373,-1.2422,-0.26515,-1.0654,-0.38497 1.184,2.7493,-1.0497,-0.51274,-2.415,-0.46466,-1.8884,-0.4339,-0.54112,-0.086678,0.016987,-1.0504,0.6266,0.020113,0.019222 -2.1842,-2.3456,-1.2798,1.9108,-0.49746,-1.0818,0.77356,-0.40788,0.1361,-1.0824,0.9438,-1.5147,-1.4272,-1.0756,-1.1885 -0.851,-1.1726,-2.7526,1.5203,-0.1607,-1.9879,0.028802,-1.4667,-0.67223,0.83269,-1.5084,1.5847,1.536,-0.0025192,0.59094 5.3942,-3.7169,-0.46431,-2.658,-0.29425,-2.5539,1.8112,1.3433,-0.93488,-1.0492,0.68874,1.3183,0.11721,0.57404,0.24595 -1.9452,-3.2464,-1.8656,0.97295,-0.30406,-2.3344,-1.3551,-0.11067,-0.74826,-0.60003,-0.39038,0.50497,-1.2038,-1.2933,-0.86485 -1.6469,-3.112,0.20685,1.4367,-1.1,-0.57975,-0.19293,0.518,0.4518,-0.46913,1.6013,-1.3266,-0.99255,-0.62048,-1.0045 -1.2503,-2.6952,-2.4701,1.8318,-0.15531,-1.7064,-0.93171,-0.76234,-1.1309,-1.3243,-0.12768,0.58185,-0.95361,-0.88652,-0.15826 -1.6148,-1.7954,-1.6867,1.1853,-0.35679,-2.8298,-0.21133,-2.1835,-0.5535,0.78596,-0.59471,0.59629,0.51939,-0.00059957,0.049162 -0.53299,-3.0989,0.54994,2.0128,-0.68947,-0.92364,1.2861,-2.0086,-1.1829,-0.51819,0.053455,-0.43147,1.2324,-1.8422,-1.11 1.758,1.075,-0.30251,0.89167,-0.71422,-0.95199,-1.8514,-1.7117,1.2495,0.63763,1.5019,-0.024635,0.41833,0.79478,-0.23814 1.8003,-1.6498,2.5805,2.087,-1.289,0.25207,-0.36452,0.38223,0.27414,-0.22052,0.76907,1.2447,0.57284,-0.38416,-0.28456 -0.95702,-3.4202,-2.18,1.8791,-0.35687,-1.2114,-0.58278,-1.0365,-1.1609,-0.58201,-0.28946,0.53037,-0.22115,-1.3324,-0.73313 -0.92855,-4.0807,-0.13627,1.2535,0.47327,0.97339,-1.5128,-1.2091,-0.50262,0.029219,0.025456,-0.64058,0.30397,-1.5421,-0.23591 0.99857,2.4772,-1.3113,0.24046,-1.9759,-1.1406,-1.1129,-0.78638,0.21214,-0.23654,-0.14346,-0.44343,0.39021,0.035064,0.035535 0.78943,-1.809,0.20711,-0.35199,-1.7663,-2.4113,3.3839,0.15384,0.023179,0.52177,-1.0174,-0.40485,-0.74782,1.0613,-1.3889 2.6301,-2.8706,-2.7136,1.5831,-0.68899,1.2566,1.624,0.92172,-0.075499,0.094349,-0.7499,1.0659,0.22188,-0.19574,0.16381 2.3646,-1.5922,-0.93101,-1.0297,-2.1686,-1.0456,-0.0039931,0.30711,1.0072,1.0674,0.99148,0.79642,0.68896,0.53701,1.6474 2.3714,2.7803,-0.32128,-1.6988,-1.3882,-1.7146,-2.0429,-0.62295,-0.77354,-0.89541,1.126,-1.0048,0.055266,0.072419,0.12991 2.4692,-1.61,-1.6106,1.6734,-0.79919,0.91124,-1.157,-0.60281,-0.10325,0.50236,0.63835,-0.68805,0.28426,0.13627,1.2679 -0.24766,0.31825,-0.040779,-0.21026,-2.0666,-1.3063,2.4332,0.011434,0.61338,1.1808,-1.7352,-0.69655,-0.26184,0.8633,0.27094 4.474,-1.9406,1.2219,1.37,0.20175,0.36025,-0.50406,-1.8836,-1.3718,-1.1664,0.43947,0.013835,0.78159,-0.0068154,-0.25724 3.0331,-1.128,-2.2287,-1.3077,-2.089,1.3692,1.5408,1.4711,0.17729,2.0358,-0.46527,2.5725,0.12062,0.22264,-0.95871 3.2021,-0.38505,-2.5986,-0.55645,-0.044526,-1.6375,2.0837,-1.0846,1.235,-1.0266,0.17054,0.19092,0.15465,-0.44686,0.46818 2.9556,-2.6055,-2.4459,-0.61327,0.019116,-0.8407,3.0323,0.84245,0.51493,-1.6997,0.2315,3.4442,0.846,0.3995,-0.13952 -1.409,-0.66065,2.3584,-1.2044,-1.0183,-2.4937,1.6648,-1.5625,-1.6206,1.4547,-0.60166,0.029001,0.20412,0.96479,0.4137 0.014862,0.87105,1.8643,0.0048266,-2.916,-1.9323,1.2565,-0.012558,-0.32928,-0.32703,-1.206,0.32258,0.26987,0.26488,0.37251 -1.8212,-1.5289,-1.7181,1.2392,0.06513,-3.0394,0.672,-1.3849,-0.66933,0.87511,-0.43642,0.013663,0.67981,0.17687,-0.19938 -0.12999,0.8955,-1.2797,2.8214,1.7218,-0.58514,0.53074,2.1161,-0.2995,-0.70292,-0.72839,-0.40226,-0.96693,0.26121,-0.40728 -0.087743,1.616,-1.9659,0.23885,-2.3457,0.077297,0.52607,0.62267,-0.46977,-1.1012,-0.67584,0.41472,0.49054,0.32876,-0.42893 1.5277,-2.5561,3.416,0.7396,-2.2824,-0.92822,0.18726,0.022593,-0.63052,0.12781,-0.48364,-0.19294,-0.43712,-0.2542,-0.098224 -0.64443,-2.0237,-1.1121,0.39485,-0.54042,-2.8891,0.97868,-2.0288,-0.77059,0.637,-1.4593,-0.054687,0.57448,0.013102,-0.39417 0.31809,-1.2759,-1.6105,0.7049,-0.31715,-2.1889,0.93681,-1.6013,-1.0764,2.0408,-1.9291,0.57539,1.4203,0.094819,-0.0035265 -2.3378,-1.9306,-2.1669,0.89099,-0.29419,-2.332,-0.20076,-0.40082,-0.28249,0.043657,0.39601,-0.13735,-0.91683,1.1237,-0.3901 2.8736,0.034682,1.229,1.3384,1.1672,-0.71989,-0.92981,-3.0238,-0.99644,-0.71692,1.7945,-0.89763,-0.1009,0.90093,0.61072 0.26873,-3.2949,1.8685,0.67369,-0.64282,0.94143,-0.20218,-1.6504,-0.99615,2.5461,0.31524,-0.69417,-0.89844,-0.93445,-0.31749 1.202,0.49615,0.11447,1.8254,3.2984,-1.8779,0.14681,2.0599,-0.55637,-0.52364,-0.97435,-0.3587,1.2542,-0.72496,-1.2885 2.4143,-0.61336,-1.7818,0.79602,-1.0037,-0.64717,0.66246,-0.64227,0.61721,1.1307,0.6809,0.35093,1.1588,0.20533,0.89207 -2.5113,-0.82221,-1.584,0.56134,-0.96475,-1.89,0.5721,-0.29039,0.30125,1.2599,0.52338,-0.54408,0.2922,1.4866,-0.46298 -1.434,-1.4752,-3.3398,1.8135,0.41139,-1.4561,-0.020044,-1.1936,-1.4823,0.28271,-1.3428,0.73459,1.086,0.15908,0.51038 -1.7869,-1.9497,-1.1513,1.2267,-0.25095,-1.6522,-0.54667,-0.68653,0.30185,1.5054,0.56314,0.30783,0.052912,-0.13626,-0.37506 -0.62319,-0.061014,2.3491,1.2764,-2.1926,0.65846,-1.2438,0.43919,0.38435,0.069496,1.8964,0.94998,-1.1846,0.17914,0.8497 -1.9998,-2.0656,1.4255,0.0041341,-2.4136,0.3025,-0.72307,1.2271,-0.21218,-0.22154,1.2107,-0.68337,0.64127,-1.4924,-0.17432 3.1247,0.53323,-2.111,-0.42332,0.11753,-2.4949,2.2753,-0.48212,1.0879,0.27876,-0.77292,-0.57746,-0.15455,0.43987,1.0634 -0.85453,-1.6183,0.040795,1.3105,-1.3118,-1.1621,1.3812,-1.9983,0.18521,1.2306,-0.090131,0.079063,1.0092,-0.74025,-1.03 1.1416,-1.0477,0.63075,1.322,-1.945,0.60152,1.7303,-1.7563,-0.69541,-0.10627,-0.44037,-0.22212,-1.417,-1.6071,0.56433 -1.2373,-0.53141,-0.59506,2.2231,-1.7748,-1.1594,1.1947,0.49299,0.8003,-0.16197,1.0498,0.44732,0.018349,0.19643,-0.2097 4.9542,-3.5369,1.5295,1.4121,0.13606,1.3178,-1.1049,-0.080892,-3.4401,0.14097,0.05408,-0.46348,0.29867,0.25251,-0.22924 -1.3781,-1.0472,-2.0749,0.62558,2.6865,0.070565,-0.31002,0.48141,-0.45558,2.4153,-1.2565,0.20016,1.0742,0.26069,0.11144 1.997,0.20421,1.7186,0.88176,-2.8242,-0.76011,-0.66556,-0.88327,0.44049,-0.47148,-1.3496,0.52648,-1.508,-0.46899,0.37805 -2.23,-0.99565,-2.7774,0.63475,-1.3222,-1.9661,-0.10839,-0.4492,0.3168,0.4476,0.24901,0.029507,-0.23295,0.26252,-0.9215 2.7535,1.8741,0.26941,-0.0048536,-1.6281,-1.7034,-0.33255,-1.3363,0.78419,-0.63829,-1.4833,-0.035844,-1.2869,0.60188,-0.89043 -1.7983,0.32387,-3.5477,-0.46444,-0.69623,-0.35293,-0.39676,1.0283,0.12496,0.74655,-0.77703,-0.27174,0.29459,1.163,0.33433 -0.15931,0.58381,0.87454,1.6993,-2.0828,0.38577,-1.4197,0.49813,0.306,-0.085178,1.2488,1.0973,-0.97125,0.36273,0.40953 2.3226,1.714,-1.7079,-0.69817,-0.74858,-2.2674,0.090347,-0.10654,1.752,0.11529,-0.90232,-1.1638,0.28148,0.60818,-0.62908 -2.7072,0.82721,-2.3049,0.13653,-1.382,0.030516,1.4426,1.0457,0.082052,-0.19529,0.3606,-0.36231,0.61294,0.51726,0.020981 -2.5083,-0.11654,-0.65896,0.3534,-1.989,0.17509,0.31071,0.30633,1.2216,-0.58653,1.4896,0.26503,-0.12677,-0.78999,-0.018263 0.65214,-1.9619,0.27761,1.0023,-1.1617,0.10513,-0.30268,-1.2117,-1.4227,-1.8795,0.79227,0.27446,2.2507,-1.3635,-0.10645 -1.3952,-0.73267,-0.67636,-0.089032,-0.99824,-1.4403,0.95463,-1.717,-0.020452,2.2899,-0.32864,-0.013385,1.3886,0.81273,-0.22437 -1.294,-1.9605,0.7123,-1.2349,-1.8907,-0.097911,-0.62364,-2.107,-0.027361,1.2017,0.51491,0.14758,-0.21968,-0.39982,-0.80528 1.6775,-0.30899,-1.5366,1.5767,3.8273,-1.4505,0.31512,1.6129,0.32732,0.62244,1.032,-0.9986,1.3474,-0.047906,0.095148 -1.4056,-2.6163,-1.3399,-0.12595,-0.39569,-1.1382,-2.6958,0.10839,-0.69683,0.28794,-0.073268,1.3337,-0.3553,-0.80943,1.4021 -1.956,-3.4454,0.72964,0.53155,0.48352,0.67013,-1.4795,-1.7115,0.28728,2.0364,-0.11251,-0.00023256,-0.70028,-1.1737,-0.84723 5.0781,-1.8999,-0.63294,-0.80785,-0.79197,-0.51975,-0.05733,-0.34312,0.81979,0.048387,1.0145,-1.3601,-2.2277,-0.090266,1.221 2.8114,0.034126,-2.7157,-0.72598,-0.99378,-0.60207,1.4329,0.18184,2.0484,-0.15735,0.12802,-0.1085,0.24561,0.19145,-0.36633 -1.8493,-2.0223,-1.2336,-1.4487,0.65848,2.1962,-1.1025,1.8038,-1.0566,-0.11983,-1.3136,-1.4529,1.1678,0.54847,0.51169 0.91392,3.0781,-1.5718,-1.7998,0.11631,0.023134,-1.2847,1.3941,-0.25338,0.53277,-0.51894,-1.9731,-0.32058,-0.5195,-0.21167 -2.026,-2.0982,-2.0356,-0.96459,0.24171,0.35296,-2.291,0.55082,-0.4452,-0.91842,-0.66051,0.5524,-0.16193,-0.9592,1.075 3.9109,-1.7433,0.48058,-0.36406,3.1409,0.12139,1.5999,-1.4754,-2.0695,-0.37382,2.0901,0.38886,0.55986,-0.41986,1.6708 0.24577,0.32658,2.8877,0.80311,-0.67386,-2.3916,0.93084,0.25136,-1.1164,0.023532,0.11784,1.4818,1.5331,0.38206,-0.60581 -1.7207,-2.5609,-1.4231,-0.9374,0.35636,-0.97654,-2.3906,0.46058,-0.3139,-0.22163,-0.79981,0.43009,-0.51409,-0.85699,1.6437 -1.1378,-2.9573,-1.9916,-0.25987,-0.43559,-1.6195,-2.3831,1.385,-0.81553,-0.088943,-0.39811,0.71572,-0.68721,-1.1052,0.74923 -1.3238,0.28409,-3.6437,0.012651,-0.192,-1.9459,-0.23274,1.1404,-1.2983,-0.26632,-0.71187,0.88396,-0.15874,0.55196,1.0885 -1.4238,-0.62141,-1.6431,-0.53634,0.097544,-0.76733,-1.4213,-1.1058,-1.5472,0.088148,0.17607,3.0229,0.27973,-0.26181,0.71174 -0.31154,1.7691,-0.77947,2.3252,-1.8634,-0.0096601,0.27068,-0.51718,0.33361,0.8542,-0.20409,0.80341,0.23936,0.63035,0.64231 -1.4702,-3.3863,0.14123,-0.0070761,1.4141,0.21703,-1.4681,1.8517,0.37685,1.7133,-1.9831,-1.5697,0.01248,0.92121,1.3084 0.68823,1.5763,-1.7536,1.4949,2.8476,-1.5852,-0.55509,2.1495,0.11945,-0.48282,-0.66767,-1.907,0.56208,0.10736,-0.76888 0.43361,-0.44304,2.9555,1.5686,0.58943,0.28241,-1.8517,1.9014,0.9406,0.10976,0.91039,0.7678,-0.71339,0.031538,0.45 -2.6219,-2.7336,0.11509,-2.0387,-0.78686,1.1411,-2.9208,-0.66363,-0.93948,1.1024,-0.24136,-0.16876,-0.0084259,-0.13337,0.35325 -0.09471,-2.4401,2.3927,0.59262,-0.1946,1.8488,-0.61886,2.0186,-0.30754,2.2213,1.694,-1.4161,0.24725,1.3256,-0.4916 2.8758,-0.57348,-1.6966,-1.8796,-0.66546,-1.2383,0.91535,0.60435,1.9805,-0.94372,1.4476,0.053543,0.0042029,1.3047,0.69534 3.1927,1.8582,-0.89895,-0.8488,-0.056776,-2.3908,0.25886,-0.57665,0.2077,2.0736,-0.53827,-2.0062,0.43477,0.50817,1.0895 -1.5498,-2.6552,-1.385,0.0028848,-1.0369,-1.1612,-3.1563,0.31084,-0.34827,0.34504,0.11815,1.4863,-0.77425,-0.6652,1.4699 -2.1295,-3.6236,-1.4348,-0.75573,-0.7003,-0.95111,-2.8217,1.1659,-0.13613,0.00058208,-0.46745,-0.52343,-1.8139,-0.23931,0.43132 -2.4026,-1.5387,-2.0011,-1.0907,0.99681,0.7166,-2.8605,0.94113,-1.0147,-0.75504,-0.2088,1.1443,-0.72237,-0.2606,1.8491 1.0235,2.2441,0.47438,1.4542,0.38529,-1.8942,-1.9157,-0.054677,-0.90622,-0.17503,1.8397,0.10521,-0.86497,0.79907,-0.90072 -2.0456,-2.3341,-0.56775,-1.3668,-0.95957,1.39,-2.1466,0.29861,-1.3348,0.42246,0.38936,-0.50615,0.8886,-0.56163,-0.3612 -2.6814,2.046,-1.1742,-0.036616,-0.41768,0.61395,1.1308,1.4831,-0.46819,1.7437,0.46455,0.94566,-0.3977,0.17272,-0.38595 -2.9089,-1.8727,-1.2766,-1.2441,-0.058161,2.2765,-2.535,-1.1865,-1.4739,0.024644,0.18658,0.37343,-0.31392,-0.5472,-0.062458 2.1764,1.9781,0.92688,-0.89233,-1.0278,-3.0889,-0.019584,0.41527,0.49336,-1.9338,-1.458,-0.052914,-0.52018,0.44247,-0.68105 0.7965,-0.77841,-1.2342,-0.59971,-0.34853,-1.121,0.46815,1.1282,-0.023146,-0.14367,1.2388,1.5934,0.83056,0.53436,1.011 -3.3184,-1.0859,-3.1059,-0.92609,0.18697,-0.99828,-1.903,-0.092882,-1.582,-1.5445,-0.16853,1.4505,-0.66875,-1.1937,0.5109 3.1142,0.33475,0.33293,1.0736,1.8556,-2.1108,-0.33528,-0.7158,-2.3976,1.2261,2.4246,-0.79589,-0.38035,-0.34393,0.86116 -2.9489,0.20509,-1.2881,0.76904,-0.63792,-0.25277,0.84876,-0.59417,-0.16567,1.369,1.5622,0.80738,-0.60032,0.524,-1.3235 -1.2349,-2.6041,-1.924,0.04318,-0.18559,0.14167,-1.7472,2.5251,0.072181,0.8612,-0.86233,-1.4528,-0.68308,0.61615,0.52625 2.0741,-0.93565,-1.8435,1.7557,0.80825,1.4652,-1.1223,-0.28222,0.17387,0.96358,2.8751,-0.50178,0.55503,0.3998,0.81711 -2.0996,-1.4853,-2.8328,-0.64437,-1.3189,0.37497,-2.5633,0.6545,-0.59576,-0.96556,-0.23181,0.61771,-0.67803,-0.84013,1.3957 -2.4462,-2.4751,-2.1412,-1.6811,0.95531,-0.81524,-2.8585,1.5147,-1.2227,-0.5678,-1.4365,0.44199,-2.0776,-0.56141,1.7435 -0.52004,-1.8448,-1.7714,0.56131,0.86662,-0.66955,-1.9422,2.1572,0.50903,0.79321,-0.8432,-0.24448,-1.1727,-0.11192,1.9952 1.2189,1.9931,0.5783,-0.12757,-2.1814,-1.5892,0.67484,0.35942,-0.6319,-0.49423,-1.4393,-0.088541,1.0378,1.16,0.63558 2.0103,0.042944,-2.1207,-1.5368,-1.7786,-1.1844,0.79244,-0.044433,2.0993,0.30809,0.38464,0.28372,0.016556,0.42566,1.3115 1.9692,-1.7669,-0.39731,-2.6895,-0.48071,-0.49312,0.45584,1.8666,-2.4856,0.24773,2.6119,2.563,1.7156,-0.93163,0.91097 3.2051,-0.98941,1.6796,1.0761,-1.4318,-1.1411,0.28149,-0.47001,0.21659,-1.2671,-0.5514,0.79413,0.76882,0.15936,-0.79201 2.2343,-1.3479,-2.2908,0.943,-0.1782,-1.0547,2.2886,0.71385,1.7167,-0.086547,0.10427,1.2836,0.2228,1.0074,-0.072886 4.1453,-1.2353,0.1685,-0.84863,-2.3345,-0.083394,-1.5435,1.9489,0.028972,0.047172,-0.83196,-0.62844,-0.78481,0.82763,-0.7797 1.9066,-0.62153,1.9717,0.36529,-3.1615,-0.39484,0.14942,-0.28824,0.30852,-1.2598,-0.73685,0.39442,0.52886,-0.54114,-0.3287 2.3764,-1.5064,2.1926,2.1977,-1.9543,-0.10013,-1.015,-0.18218,-0.25654,0.057248,-0.20344,0.22553,-0.33362,-0.42199,0.36602 -0.06025,1.1604,0.38014,1.1513,-2.7163,-0.86245,-1.3758,-0.17739,0.57547,-0.91001,0.36559,1.0254,0.69778,0.23025,0.26143 2.6531,-0.67401,-0.84946,1.9451,-1.8475,0.93143,-0.31019,0.035044,0.66718,-1.4358,-1.0151,-0.21297,-1.0642,-0.35091,-0.94163 -0.43737,0.70991,-1.3974,2.8964,-1.2309,0.68624,0.19921,-0.11269,0.86257,0.021732,0.7172,0.33198,-0.13017,0.45131,-0.01633 4.3324,-1.4314,0.046243,-1.0388,-2.471,0.99287,-1.1903,1.7806,0.2042,-0.46975,-0.97457,-0.050693,-0.26068,0.44322,-1.0649 4.5934,-0.50201,-0.7379,-2.6785,0.4062,-3.5334,1.5236,-0.44515,1.0322,-0.41289,0.51647,-0.22206,-0.68894,0.17897,1.1871 0.47597,0.28167,1.6767,0.65258,-2.1992,-0.33232,-2.4019,0.9865,0.57704,-1.1711,0.87756,1.2478,0.63305,-0.024409,0.074504 0.60535,0.16829,-0.90167,2.4271,-0.47881,1.1199,-1.8969,0.85941,0.63366,0.80133,1.4992,0.1496,-0.66718,1.3904,-0.24463 1.7424,1.1587,1.1157,2.045,-1.2101,-1.4027,0.73665,-0.98275,0.065126,-0.13605,-1.5629,0.23544,1.1025,0.30505,0.16393 3.0527,0.41898,0.58626,1.5245,-0.42138,-1.8067,-0.189,-2.004,0.13166,-1.0481,-0.49879,-0.8549,1.3336,0.56049,-0.064256 0.14633,2.8029,-0.054225,0.62688,-1.4115,-1.8277,1.3182,0.24137,-0.51532,0.33226,-2.4664,-0.49632,-0.85333,1.1336,0.82937 -1.6541,0.093798,0.58014,1.4148,-2.2211,-1.4746,0.9969,-0.7054,0.47683,0.28774,0.97,-0.043679,0.49495,0.37256,0.52254 0.85063,0.16779,-2.1673,2.7191,1.4222,0.52668,-0.068381,0.47668,-0.68075,-1.7466,0.80651,-0.85521,-0.59786,0.16984,-0.4214 4.5071,-2.1122,-1.6324,-1.3114,0.37883,-1.741,3.008,0.92085,1.292,-0.49983,0.53616,1.6384,0.80857,0.68483,-0.057664 -0.62394,0.46771,-1.023,1.7869,0.50763,-1.737,2.1776,2.2899,-0.83451,0.64194,-1.1263,-1.3177,0.31243,0.43626,-0.036927 2.4979,1.5712,-1.406,-1.9296,-1.0487,-2.3391,0.74917,-0.23395,0.33913,1.1067,0.69801,-0.56963,0.11843,0.25675,1.8459 0.70887,2.5432,0.55053,-0.16898,-2.17,-1.8242,1.1687,-0.33198,-0.13094,-0.14516,-2.0891,-0.26808,0.29529,0.6074,0.20487 1.0824,-2.488,1.2753,3.0027,0.04698,0.43569,-1.4827,2.8003,-0.13908,-0.48559,1.1273,-0.19651,-0.55673,-0.37827,-0.46328 3.2031,-0.71785,0.79698,0.068224,-2.2114,-1.9105,-1.0214,-0.17947,1.0195,-1.3828,-1.0846,-0.30016,-0.83817,-0.38748,-1.1646 -1.4102,-2.2187,0.10561,1.2869,-1.4048,-1.4067,0.27958,-1.2636,0.8314,0.70491,0.71696,-0.25766,0.33831,-1.0342,-0.93262 -0.50293,1.384,-1.6126,2.1709,0.13076,0.56773,-1.847,0.68814,0.19459,-0.47374,0.81618,-0.40545,-0.98837,0.62524,-1.1304 2.0264,1.6664,-1.3356,0.79974,-0.2815,-1.178,-1.1111,-1.7991,0.68568,0.77261,1.2552,-1.2036,0.44872,1.1076,0.59015 3.1078,-3.0467,-2.4945,1.3084,0.29061,0.0072772,2.6325,0.49421,0.82812,-0.80069,1.0692,1.5306,0.38332,0.88678,0.66497 3.0048,0.62383,-2.0132,-1.3781,-1.0013,-1.4544,0.48461,-0.59255,1.2307,-1.1392,0.85733,-1.0174,-0.14001,1.1386,0.53414 3.0786,0.11447,-0.26454,0.23508,-1.2099,-1.4678,-0.70958,-1.391,0.2474,-1.2421,0.17846,-1.1466,0.98803,0.4792,-0.050785 -0.8025,1.3267,-0.63145,2.743,0.33159,0.78567,0.3191,0.13394,-0.89606,-2.0625,0.76134,0.43203,-1.199,0.38855,-0.44858 -0.20759,-0.90891,1.139,2.8731,-1.222,0.75616,0.20496,-1.2861,-1.5164,-1.8259,1.3506,0.20216,0.8535,-0.85213,-0.15397 0.6815,-0.90336,0.51739,3.3489,0.37346,1.5458,-1.4589,0.48886,-0.88961,-2.0849,1.7474,0.29106,-0.71193,-0.3137,-0.16234 1.204,0.49587,-1.1417,0.6804,-0.22905,-0.64291,-1.54,-0.8905,-0.075108,-1.4717,2.9033,-0.73703,0.4895,0.93316,-0.61413 0.25527,-0.53296,-0.10622,2.3718,-1.0538,1.2752,0.44615,-1.3029,-0.2051,0.76783,0.96464,0.353,0.19378,-0.93344,0.26867 2.38,0.40935,-0.22623,1.1575,-1.055,-1.0378,-0.80515,-1.7213,0.26298,-0.65724,0.44734,-0.64617,1.235,0.47069,0.3938 5.2277,-1.3523,1.5482,-1.4561,0.13796,0.41111,-1.6162,1.4659,-1.029,2.1941,1.1778,-0.33178,0.0081487,1.0285,-0.30809 3.0005,-2.9178,-1.5672,0.47368,1.2962,2.5833,1.1772,1.4489,-0.22295,1.6879,0.19738,1.6667,1.2502,-0.28686,0.037957 -0.69202,-2.6075,0.095526,-3.0499,-2.1036,-0.88823,0.059918,-1.5744,-0.10533,-0.0058748,-1.5131,0.16457,-0.56439,-0.42153,-0.85981 0.28688,-1.5783,0.30013,0.062918,-3.1031,-0.2054,1.235,-0.61406,1.2157,-0.092289,-0.98547,-0.30985,-0.66619,-1.8108,-1.2188 -0.9516,-1.7615,1.577,1.1507,-1.598,-0.56571,0.51951,-1.2223,-0.074195,-0.035279,0.302,-0.26502,1.0446,-2.0943,-1.2126 0.47823,1.229,0.75763,2.4173,-0.23861,-0.95291,-0.6003,-1.3903,-1.2919,-1.285,0.042463,1.4521,0.48586,-0.58593,0.56053 -0.34541,1.4704,1.8888,-2.1602,0.34821,-0.99049,2.2145,1.4768,-1.5708,-0.78697,-2.8908,-1.077,-0.37898,0.53866,0.085012 -1.1636,1.7234,0.57562,0.2915,-2.0411,-0.34612,-1.4251,0.83312,-0.23522,-2.0722,1.6635,1.7155,-0.11578,-0.080857,-0.055259 -3.6121,-0.64787,-0.12541,-1.1897,-1.5494,-0.54541,0.13519,-1.5626,-1.2415,-0.41619,1.6706,0.43138,0.4646,-0.64836,-0.90765 0.6255,1.4959,-0.065314,0.70344,-2.1059,0.094977,-2.15,-0.24491,0.30469,-0.43492,0.91345,0.65947,-0.10273,0.007474,0.013692 -1.2539,-1.3,1.2911,-1.7776,-3.0156,-0.90097,1.0603,-2.0338,-0.36776,0.18798,-0.22048,-0.96572,-0.56577,-0.67466,0.072674 1.1213,0.456,-0.17083,2.1016,-0.37214,1.2099,-1.2966,-1.1905,-1.5361,-0.8472,1.8123,0.050438,0.66965,-0.13345,0.1912 0.28575,2.2315,-0.40268,1.2417,-1.3557,-0.65515,-0.48759,0.32158,-0.23379,1.1568,-0.92359,0.37461,0.085841,1.6929,0.71119 -1.0305,1.777,-1.6329,0.50214,-2.908,0.40143,1.085,-0.42815,-0.16463,-0.2803,-0.43459,0.50421,0.19791,-0.10293,0.7077 1.2085,-2.8436,2.581,-0.73329,-1.8675,1.9221,0.52787,0.93929,-0.20251,2.8748,-0.63776,-0.86732,0.19239,0.46351,-1.6604 0.59487,-2.7285,4.117,1.4498,0.16008,-0.13855,-1.1165,1.591,-1.4759,0.06469,1.7041,0.59813,-0.40839,-0.037123,-1.4045 -1.0828,1.3343,1.8486,2.438,-0.60333,-2.3744,0.21856,0.1338,0.22836,-0.26483,0.43163,1.0125,0.050791,0.78462,0.38562 2.9098,-3.8414,-3.716,0.97585,-0.49809,3.1349,2.3607,2.5269,-2.2155,-0.32588,-0.61572,1.0782,0.63351,0.41839,-0.17761 -0.81268,-4.0401,2.4874,-0.2944,-0.43002,-0.34995,-0.71063,0.44456,-0.71452,1.4355,0.89635,0.26345,0.073387,-1.1859,-1.5183 -3.8571,0.72312,-0.36748,-1.0514,-0.2801,-0.10113,1.8717,-1.0104,-1.8388,-0.52788,1.0151,-0.24594,0.17091,-0.19034,-0.25524 -1.4361,-1.9638,2.4408,-2.1123,-2.5378,0.3984,-0.35883,-0.62079,-1.3274,0.94969,0.50674,-0.20912,-0.10341,-1.2391,-0.50083 -3.3281,-1.1273,-1.265,-1.6555,-0.74247,0.1803,-1.0134,-2.1786,-1.1762,-0.58644,1.1062,1.0022,0.098933,-0.3326,-0.91918 -0.75026,0.6795,-1.3251,2.3098,0.86235,-1.1875,2.5413,1.3903,-0.84715,-0.52816,-0.96416,-0.53418,-0.58302,0.67973,0.4169 4.4306,-4.1453,-0.80169,-0.89292,-0.43239,1.1268,1.55,0.51786,-1.4826,-3.8071,-0.27802,-0.024924,1.045,0.42554,-0.6362 0.053096,2.3623,-0.80142,2.493,0.16222,0.057406,-0.35902,0.63836,-0.77631,1.4104,-0.82086,-0.098473,-0.47133,0.99479,0.15585 -0.88584,-1.9015,-1.8631,0.90798,-0.64759,-1.5624,0.5436,-1.7656,-2.1112,-1.222,-1.0068,0.6695,1.5697,-0.82822,-0.24959 -1.4927,-0.39734,2.5261,0.14062,-1.8418,-0.46411,-0.50126,0.6593,-0.057517,-0.23208,2.0327,0.88119,-0.16898,-0.98068,0.24615 -2.3151,-1.5659,-2.9469,0.55273,-0.57157,-2.0227,-0.87081,-0.66709,0.49566,-0.3528,-0.15038,0.98682,-1.1198,0.034371,-0.46004 -2.8611,-0.89309,-2.0849,-1.2189,0.97006,0.69163,-2.0765,-1.0181,-1.536,-0.81226,-0.11592,1.6885,-0.87037,-0.63397,0.64186 2.3243,2.7238,-0.91639,-1.9229,-0.23363,-1.5477,0.57177,0.79431,-0.15869,-2.3942,-0.68731,-0.99426,0.60396,1.2492,-0.72101 4.0588,0.35892,-0.18834,0.76526,0.20039,-1.6734,1.1062,-1.9186,-0.37628,-2.4889,-1.2711,-1.897,-0.38919,0.32831,0.033177 4.5431,0.013652,-1.1724,-1.7843,-0.64054,-2.1054,0.69606,-0.49146,1.6863,-0.87209,0.34749,-0.75515,-0.23317,0.71563,-0.23664 5.2171,-0.57062,1.3799,-0.9331,-1.1632,-0.45957,-1.2403,0.064305,-0.46531,0.70079,0.61898,-1.0746,-1.6053,0.83783,0.70733 2.9315,0.93606,-0.98083,-1.6006,-1.7194,-1.6396,-0.68271,-0.068557,1.79,-2.3617,-0.05816,-0.5009,0.15359,0.53382,-1.1986 0.58883,-1.0349,1.2356,3.0734,-0.29827,1.7878,-1.3682,1.5227,0.067258,0.39277,1.0339,0.22409,-0.80664,0.64688,0.47374 3.7976,-1.0879,-0.84172,-1.8862,-2.1696,-0.15002,-1.779,1.5685,1.4945,-1.3681,-0.34124,-0.32483,-0.37147,0.059123,-1.2554 4.5401,-2.5905,-1.7294,-0.15548,0.70481,0.042907,1.9444,-1.0325,-0.018947,-2.6341,0.25083,-0.85928,-0.14992,-0.3545,0.335 3.4436,-1.5638,-0.29379,1.4512,0.98525,-2.2389,0.81468,-2.0492,-1.7924,-0.34901,1.7965,-0.61822,0.82696,0.70934,1.4538 2.9714,1.3539,-0.45708,-0.89802,-1.5147,-2.5274,-0.18167,0.23156,1.4455,-1.7061,-1.2983,-0.13073,0.007666,0.56715,-1.5428 3.9843,-3.0963,-1.6642,-1.5191,-2.2111,0.76614,1.4231,2.0539,0.28992,1.4629,-0.55381,1.9953,-0.52985,0.45905,-0.16347 1.8732,1.701,-0.29019,0.63213,-1.8683,-1.7899,0.76999,0.33722,0.68839,-0.78982,-2.101,0.10227,-0.2232,0.87434,-0.61288 1.6625,2.8672,-0.55707,-0.73627,-1.3242,-2.1599,-0.16811,0.029333,0.45392,-1.1553,-1.4529,-0.97186,0.17543,1.4395,-0.28142 0.96896,0.51344,2.5642,1.8045,-0.85154,-2.2011,0.74093,-0.74514,-0.84298,0.089861,0.98045,0.56371,0.13314,1.4709,0.81941 1.782,-0.95204,1.5031,1.939,1.4431,2.1471,-0.50783,2.4134,1.1577,0.21627,-0.66957,0.767,1.1637,0.032619,0.22241 3.5826,1.0223,-0.62237,0.40918,-0.58101,-2.0299,0.065411,-1.128,0.98444,-0.86063,-0.94686,-1.3705,-0.48352,0.82125,-0.25336 -3.0958,1.0564,-0.56555,0.12329,-0.32188,-0.83968,1.6911,-0.72579,-0.70721,1.6047,-0.021957,-0.449,0.03732,0.94061,-0.098076 -1.1503,1.7946,-1.0606,1.8493,-1.9137,-0.013456,0.57757,0.28414,0.33719,0.7145,0.26058,0.89645,0.16973,1.0349,0.39723 -1.2645,-1.1065,-0.2976,0.30623,-2.3932,2.3656,-0.41156,-0.12231,0.059217,0.10311,0.82034,-0.86962,0.92164,-1.0138,-0.26822 1.8263,0.497,0.98701,0.67212,-2.4457,0.15586,-1.9659,-0.48162,0.71323,-0.081575,0.18657,0.25955,-0.21127,0.025448,0.67995 1.4659,1.2911,0.76459,0.88614,-2.3561,-1.9324,0.63312,-0.10679,0.70114,-0.20711,-1.5127,0.080218,-0.30238,1.0154,0.77243 -1.8961,1.6431,-0.022991,-0.292,-3.0423,-0.23951,1.4093,-0.77326,-1.6263,-0.78366,0.33273,0.42051,-0.24391,-0.13243,0.98397 3.2084,1.0214,0.85528,0.81353,-0.58924,-2.0847,-0.53737,-1.7887,0.082818,0.31103,0.03299,-1.1445,0.34838,0.50751,-0.31538 -0.81136,1.9463,0.77238,0.036398,-1.5304,-0.56758,1.2548,0.97445,-1.1524,2.0074,-1.0634,-0.12204,0.20861,1.2265,1.2997 4.1655,-2.0163,-1.5868,-0.58257,0.68299,-1.0677,3.4307,0.98646,0.7742,0.081636,-0.9143,1.4776,0.14775,0.50531,0.24243 1.1095,1.726,-0.93139,-0.93879,-2.2497,-1.1062,-0.36514,0.76341,0.43175,-1.5272,-1.0808,0.1657,0.58001,0.90859,-0.29386 3.058,-0.68704,-1.1041,-1.8096,-2.389,-0.68423,-1.7767,1.3069,1.0607,-0.90557,0.02966,-0.57555,-0.38304,0.060055,-0.70615 -1.0268,2.7373,-0.054965,0.039762,-2.7579,-1.1293,0.80728,0.34692,-1.7142,-1.623,-0.77151,-0.039051,0.05256,0.78981,0.74663 0.012071,-1.9848,-3.1304,2.3653,-1.0644,0.61041,-1.1325,-0.13913,-0.035809,-0.095889,-0.54375,0.61166,-0.71627,-1.163,0.73001 2.7753,-2.3159,-0.59307,-0.36172,-1.0343,0.50287,-0.83628,1.0867,0.10828,2.5524,1.7996,1.2059,1.593,0.024137,0.74722 4.7813,-1.8914,-0.074966,-3.1285,-1.1557,-1.889,-0.3139,0.9053,-0.25401,-0.51877,1.2386,0.0041067,0.21235,0.053188,-0.013698 1.0371,-1.035,-1.2912,0.40141,-0.039345,-0.039624,2.3903,-0.25999,-1.2023,1.6335,-1.8352,0.32956,0.62005,-0.72594,-1.0712 -0.81148,-2.7561,-0.98332,0.44492,-1.4151,1.0272,-1.6636,0.28605,0.73361,1.521,-0.29397,-0.29506,1.0728,-0.24548,-0.32366 -1.815,1.9031,-1.0612,2.0053,0.072304,-1.1343,1.0445,2.0267,0.86975,0.093201,-1.3493,-0.31763,-1.0901,1.2927,0.51263 0.26521,-2.4706,-2.7044,2.1061,-0.69786,1.4031,-0.60442,0.83368,-0.11599,0.4686,-0.34641,-0.82588,0.48939,0.15253,0.32894 0.52377,-3.2307,-2.2018,2.4224,-0.30135,1.1158,-1.2509,0.31945,-1.0608,-0.11136,-0.21666,0.0080692,0.56297,-1.0337,0.8014 -0.79163,0.34219,0.19503,0.70661,0.33228,-0.073415,0.61221,-0.15601,-1.4365,3.1521,-0.3358,-0.40856,-0.59906,0.89251,0.94966 3.4209,-0.98483,0.11063,0.80676,-1.1568,-0.48591,-0.41133,-1.629,-0.25812,-1.16,0.32966,-0.46723,0.78697,-0.69907,-0.014547 -0.91816,-3.4804,-0.12923,0.51942,-0.029237,1.6495,-1.859,-1.6578,0.39273,1.9909,-0.6789,0.20041,-0.56619,-0.55213,0.56275 -1.5797,1.6243,-1.6571,1.5535,-0.70693,0.61581,0.42375,1.633,0.42628,1.0267,-0.59676,0.50871,-0.73016,0.46622,-0.084703 -2.2987,0.53961,-0.87948,0.26662,-1.6165,-1.1231,1.693,-0.18404,-0.4313,1.3332,0.17907,-0.76066,1.2949,0.97123,0.31291 -2.3475,1.4176,-0.60884,1.1351,-0.73674,-0.41303,1.1711,1.3836,0.73838,-0.40265,-0.15941,-0.51616,-0.27126,-0.046046,1.0045 -1.0171,-0.41483,1.8838,2.1665,-0.89505,-0.66147,0.50903,-0.85743,0.06644,0.74496,1.6089,0.83414,-0.94453,0.72947,0.32549 -1.3419,1.9984,0.33664,0.1016,-2.26,1.5945,-0.90201,0.77398,-1.392,0.82582,0.8296,1.1156,-0.079327,0.57621,0.38364 0.41728,0.7533,-0.4378,2.0688,-0.80724,-0.4631,2.3498,0.050254,0.012548,0.92718,-2.3946,-0.30728,0.93948,-0.30921,-0.05422 -0.050947,1.4101,0.50507,2.5066,-0.67472,-1.6657,0.14556,0.67285,0.67856,0.74809,-0.5678,0.69632,1.1102,0.70702,0.32083 0.16295,-0.5554,2.1504,2.1458,-1.6113,0.75783,-1.4655,0.34512,0.6659,0.19488,1.5466,0.88033,-0.96597,0.15849,0.8922 3.2749,0.09596,-0.31809,0.24901,-1.5202,-1.6308,-1.1662,-1.3079,1.3646,-0.43991,-0.17392,-0.60008,-0.1313,0.37228,-0.11118 -0.33185,0.31944,-0.39286,1.5047,-0.72139,-0.69668,2.0973,0.62026,-0.59551,2.4193,-1.165,-0.5725,1.6621,0.5256,0.55823 -0.38615,1.9555,0.12839,0.47491,-2.4907,-1.3693,0.87653,-0.19037,-0.0025078,-0.10817,-1.7027,0.2055,1.3303,0.33334,0.53521 2.1746,-2.8609,2.0051,1.9833,-0.8391,2.8102,0.21015,-0.037336,-1.2663,0.018433,-0.60872,-0.68237,0.4005,-1.6493,-0.36299 3.4112,-0.82546,1.6839,1.4647,-2.1256,0.54481,-1.5263,0.063838,-0.059363,-0.33078,-1.5567,-1.1062,-1.5214,-0.029234,1.1059 1.5293,1.4959,-0.69191,-0.59371,-2.4418,-1.3686,0.091257,0.77449,0.87106,-1.7971,-1.084,0.36265,0.28251,0.77706,-0.53794 0.084173,-2.0852,1.3297,2.3797,-0.71209,2.0704,0.087766,0.83844,0.45844,0.32335,-0.12335,-1.5948,0.73396,-1.4623,0.70418 1.1251,1.3596,-0.018094,2.3655,3.5283,-0.59169,-0.2539,0.76916,-0.93233,0.66608,-0.98657,-0.78666,1.622,-0.84486,-0.79805 -1.2943,-2.081,0.76363,-1.6595,0.83808,1.3971,-1.4827,-0.90922,0.056106,1.3511,0.116,-0.57641,-0.77243,2.1146,0.56008 -0.23597,-2.9239,1.8412,0.18692,-1.4604,0.43563,0.27392,-1.818,0.61704,0.94551,-0.0080911,-0.67663,-0.19963,-1.4207,-1.3912 -1.4763,0.41135,-2.3,0.53889,-1.1374,-0.3865,1.7489,1.8033,-0.14373,1.2269,-0.53892,-1.0626,0.057276,0.66752,-0.032385 3.0028,-1.8271,0.92638,0.043895,0.27697,3.1251,2.6007,1.3178,-0.17626,1.5066,-0.6771,-1.34,-1.4823,2.0593,-1.0594 0.20003,-1.0124,1.1461,1.6163,1.7665,0.73882,0.26843,2.2089,0.8525,1.8,0.53493,-0.90233,0.97188,1.5213,0.22221 1.8898,1.8899,1.4225,-0.68994,-2.363,-1.4046,-1.5798,-0.70712,-0.22829,-1.9482,-0.41188,0.15505,0.83134,-0.32412,0.17229 -1.6353,-1.3862,0.53497,0.86753,-0.32821,0.76095,-0.60684,-0.46862,0.11594,1.1288,2.302,-0.077218,-1.0894,-0.014823,-0.2958 2.2918,1.4789,-1.4943,0.2024,0.22033,-1.9721,2.1159,1.2376,0.49411,0.71013,-1.9234,-0.77259,-0.075806,1.1103,-0.55146 -1.2482,-3.245,-0.77585,1.3539,1.1807,1.3175,-1.4127,-0.43039,0.40449,0.84847,-1.3475,-1.4119,0.2937,-1.5053,1.0429 1.4396,-2.8227,2.6666,2.1567,0.2368,2.077,-0.46454,1.8332,-0.24279,1.0766,0.016703,0.060715,0.53947,-0.72004,-0.38451 -2.313,-1.6978,-2.0507,1.2484,-0.86756,-0.75269,-0.91974,-0.42492,0.98179,0.67408,0.68855,-0.079906,-0.91997,-0.50509,-0.85314 -2.3457,1.7739,-0.34644,0.97748,-1.5514,0.66107,0.25245,0.75839,-0.5122,-0.34158,1.5245,0.92372,-0.23481,-0.54143,-0.084151 -2.0193,-1.8355,-1.0556,1.2858,-0.29114,1.4109,-0.50052,0.70449,1.602,1.1626,0.57972,-1.6765,-1.1046,0.5849,-0.55139 0.12998,2.6406,-0.25199,0.75352,-1.2022,-0.64439,-0.51547,0.22829,-0.282,0.28722,-1.4168,-0.0080742,1.2227,0.22046,0.1397 1.4852,0.82227,-0.56507,0.9884,5.0519,-1.257,-0.045119,0.64653,-1.9345,1.2026,2.4602,-0.47416,-0.25006,0.48354,-0.22191 4.2417,-3.5212,-0.80187,-0.62993,-0.194,0.11356,0.8311,1.2941,-1.33,2.1703,0.38993,1.3132,1.0987,-0.10074,1.6793 1.9076,-1.5775,-0.35015,1.8795,-0.91728,2.5659,0.39897,0.57328,0.065025,1.565,-0.47676,-0.50817,-0.3874,0.048161,-0.97118 1.3902,1.7796,-0.97978,0.12854,-0.42905,-1.6016,-0.82566,-0.18482,0.60022,-1.4088,-0.20674,-0.7981,2.5209,0.29146,-0.7098 1.7681,1.0945,-1.3387,-0.019459,-0.65546,-2.1046,0.12567,-0.56608,0.16233,0.25186,0.20776,-1.1436,2.0272,0.57172,0.32816 1.6254,1.6168,-1.4468,1.4265,0.37692,-0.68085,-1.2697,-0.6211,0.59703,1.3139,0.93016,-1.0766,0.90616,1.1727,0.054138 -2.6732,1.5937,-1.3374,0.50885,-2.0297,-0.28078,1.1559,0.29941,-0.92869,-0.50043,0.32863,0.73062,1.2139,0.54785,0.33884 -0.2448,-1.5448,-1.3146,0.80516,-0.75725,2.0188,-0.5838,0.99046,1.3353,1.2642,-0.45296,-0.19254,1.8371,-0.14617,-0.6196 2.1738,-3.6214,-1.5403,0.75919,2.7109,-0.50283,1.946,2.0693,-1.2664,-2.0117,0.7283,0.1376,1.2019,0.75354,1.8022 4.5746,-1.9744,0.43926,-1.6012,-0.47589,-1.2026,0.21177,-0.091696,-0.61208,0.72098,1.4786,1.2963,0.871,0.07725,-0.69459 2.7904,1.2623,-1.0918,-2.2492,-0.84008,-2.3515,-0.1037,-0.49093,1.4996,-1.3464,-0.07914,-0.89428,0.71457,0.21088,-0.64308 -2.6882,-1.1422,-3.3385,-1.2345,-0.17664,0.81234,-1.4783,0.26711,0.10403,-1.3047,-1.148,0.33039,-0.86079,-0.49575,0.018964 -2.3348,-1.7345,-1.4928,-1.2463,0.30719,0.58093,-2.6658,1.1382,-0.066742,0.66505,-0.80371,0.21111,0.57696,-0.065836,1.4931 -0.52499,2.0611,-1.6292,2.1413,-0.77706,-0.38202,-0.6243,0.71249,0.51213,0.97744,-0.6414,0.17754,0.28927,1.1189,-0.2941 2.1512,-1.2356,1.2791,2.115,1.2849,0.48935,-1.4988,-1.9244,-1.2749,-2.447,1.0203,-0.29515,1.4775,-1.1555,-0.14617 -2.594,-1.9043,-1.7054,-1.064,-0.092509,0.46316,-2.8415,1.2346,0.14325,1.0097,-0.41258,0.26885,-0.35909,0.83497,0.67238 -1.6206,-2.2841,-0.38277,-1.1165,-0.88003,0.48486,-2.6802,-0.6234,0.094425,1.9635,-0.31352,0.76991,-0.12051,-0.33506,-0.08173 -0.076004,-0.58017,-1.4996,-0.61368,-1.9852,2.1366,-0.62599,0.01841,-0.26857,1.063,-0.20555,-0.16926,1.7535,0.39891,-0.088218 4.0448,-0.1482,0.76002,-3.4855,2.997,-3.0664,2.2652,3.0278,-0.91237,-0.94785,0.55756,-0.21553,-0.32714,-0.21211,0.72707 -1.9544,-1.3418,1.435,1.9735,-0.95018,-0.55102,0.71456,-1.3609,-0.39578,-0.74574,1.5812,-0.50857,-0.70938,-0.46636,0.72887 -1.8599,2.2117,-0.58348,0.73175,-1.4947,-0.24023,0.42392,0.87249,-0.38309,-0.13418,0.5583,1.6429,-1.4066,-0.29314,-0.74774 2.2207,-1.3082,-2.8004,-0.5445,-1.7774,0.42133,-0.14281,0.32097,2.4131,-0.65471,1.3599,0.38781,-0.091156,-0.22635,0.38643 3.5496,1.0999,-0.89313,-3.3425,-0.44338,-0.66052,0.58022,0.010603,-0.5741,0.85714,0.84725,0.41384,1.7268,0.2599,-0.13972 -2.0502,0.31279,0.93235,0.76055,-1.3796,-0.99717,0.85389,-0.22288,1.1128,0.46436,1.3884,0.74393,0.79209,-0.47198,0.053964 3.2462,0.18036,-1.0534,-2.7122,-0.77889,-1.1907,0.31164,-0.35891,-0.26434,-3.2405,0.74081,-0.77614,1.7732,-0.19231,-0.26712 2.2802,1.7352,-1.8222,-1.5788,-0.55338,-2.2615,0.7546,0.77038,1.3151,0.1173,-0.51364,-0.86393,0.68064,-0.061238,-0.36312 2.198,1.8195,0.95983,-0.055105,0.31488,-2.6229,0.76274,-0.54735,0.51131,-0.85228,-2.6991,-0.92371,-0.19596,0.29739,-0.46387 2.7191,0.92467,1.2975,0.67786,-0.77056,-2.9574,-0.83607,-1.2343,0.040083,-0.43864,-0.057369,-1.0414,0.11565,0.95395,0.27017 0.3,0.56148,-0.10962,1.864,-1.5794,-0.75021,-1.165,0.1217,1.2903,-1.2473,0.10591,0.6828,0.81004,0.063977,-0.55788 3.9857,-1.4431,-0.91411,-2.5464,-1.5156,-0.6994,0.75477,1.203,-0.22229,2.2,1.0669,1.0665,0.66206,0.14767,1.8388 -0.011982,1.3702,-0.26764,1.5495,-2.0687,-0.24305,1.4873,-0.73109,-0.074266,1.5423,-0.92447,-0.48269,0.31838,0.51583,1.0331 -0.3184,-3.1703,-1.1147,2.2594,-0.3354,0.18256,-0.00031114,-1.6434,-1.165,-0.69979,0.8493,-0.094618,1.1191,-1.2339,-0.31831 0.016262,-2.0548,-1.3036,2.2798,-0.43545,-0.35733,0.82357,-2.0233,-1.4889,0.63965,0.62424,0.23377,1.332,-0.81098,-0.59119 -1.7497,-1.9747,-1.9831,1.0286,0.84183,-1.7971,-1.024,-0.94183,-1.2612,-0.48297,1.0207,1.8661,-1.8588,0.40724,-0.3575 -1.5565,-2.5659,-2.8701,0.96144,0.80821,0.74041,-2.0826,0.65666,-0.51748,-0.8305,-1.4512,-0.29546,-2.3136,-1.0153,1.5612 0.8683,1.4423,1.2554,2.3403,0.92359,-0.44591,-0.28142,0.29214,0.68488,0.84386,-0.67781,1.0705,0.65514,-0.018269,-0.38233 0.054451,0.60028,-0.94977,1.6517,0.50274,1.9429,-1.7491,0.88816,-0.01062,-1.7445,1.4545,-0.68399,-0.85306,0.74786,-0.86288 -0.6847,-2.8557,-1.8565,1.2542,1.1227,-0.50127,-0.31516,-1.2015,-2.3809,-0.76414,-0.55936,1.8343,1.7034,-1.9294,-0.37682 2.316,-3.2388,0.91729,0.33989,-1.1287,4.2154,1.3757,0.054072,-2.5588,0.14279,-1.0876,-2.0248,0.22936,0.034358,-0.75666 -0.26486,0.79931,0.83949,2.7441,0.8712,-0.8631,1.9172,-0.46026,-1.9109,1.67,0.1117,-0.17062,0.4568,0.48077,0.75315 -1.6262,-3.2628,-0.69924,0.90198,1.5585,-0.60549,-2.5707,-1.0166,0.41257,0.16906,-0.096361,1.5906,-1.2128,-0.11063,0.69955 -1.6061,-2.0821,-1.9163,1.4174,1.8174,-1.3326,-1.6523,0.077884,-0.63898,-0.24645,-1.2581,0.070636,-1.4045,-1.5739,1.7957 2.8874,1.589,-0.35144,-2.3871,0.16067,-1.0346,-0.93415,-0.79476,-1.8876,-1.4346,2.2777,-1.4707,1.08,-1.2307,0.709 2.3409,1.4979,0.95441,-1.8359,2.6681,-1.0555,-1.1252,1.6655,-0.32849,2.0485,0.86737,-0.30697,1.1682,-0.83829,-1.0392 4.701,-2.1584,-1.9209,0.78666,-0.44727,1.8854,0.15301,0.86673,-0.85682,0.42551,-1.3191,-1.3407,0.43505,0.495,-0.26256 -2.1891,-3.0346,-1.0067,0.091126,1.0266,-0.43573,-2.6257,0.19039,1.0637,0.64477,-0.55094,0.27914,-1.3135,0.019222,0.97295 -1.2698,-0.50296,1.5553,-1.2662,-3.5345,1.2677,-0.13777,-0.5002,-0.53732,0.99452,0.25355,-0.62182,-0.88117,-0.73404,0.62064 -0.77137,-3.0125,-1.7631,2.1538,1.0139,-0.17057,-1.973,-0.21292,-0.52277,-0.008645,0.19446,0.95952,-1.0363,-1.4638,0.76725 0.0071596,-4.5452,0.1718,0.15195,0.059401,-1.0721,-2.1245,-0.7374,-0.81071,1.2015,-0.67888,2.1131,0.29882,-1.1533,0.064149 1.1067,0.3157,0.87666,1.0818,-1.3968,-1.4699,2.3984,0.49068,0.69913,0.20129,-2.1082,0.21848,0.19068,0.6819,-0.060914 2.6658,0.21829,-1.6198,-1.05,-0.15709,-2.6104,1.3719,-0.99897,1.6152,0.54131,0.36403,-0.62264,-0.72587,0.67219,1.9883 2.808,0.20055,-1.3237,1.5252,-0.84082,-0.81586,0.71837,-0.1314,0.34905,-0.55546,-0.88958,0.27176,-0.15916,-0.26002,-1.8145 0.96376,0.90238,0.41537,1.0075,-0.31531,-0.24694,1.4145,1.554,0.78321,0.9691,-2.6765,-0.21261,-1.4233,-0.60881,0.5434 5.197,-2.3516,-2.9251,-0.041528,0.036381,2.6115,1.5382,1.1865,-1.0457,0.97372,0.29881,-0.84635,-0.70801,0.67395,-0.46547 2.4282,0.29784,0.90965,1.4285,-1.0378,-1.9897,-0.67345,-1.3212,1.2195,-1.0684,-0.8859,-0.45057,-0.13625,1.0864,0.63476 -2.0761,2.2522,-1.6402,0.56733,-1.6667,1.4206,0.61107,1.5073,-0.95544,0.64409,0.080517,0.51875,0.057572,0.21233,0.17229 -0.13443,1.9088,0.75097,-0.92479,-1.7808,-0.40736,1.3519,1.5291,-0.88058,0.49925,-2.2398,-0.61334,0.08538,0.55548,1.3628 1.6397,2.2664,-2.5487,-2.6128,0.023831,-1.2255,1.1893,1.7475,-0.1347,-0.56511,0.18488,-0.70934,1.0477,-0.21208,0.64278 3.077,-0.13626,-0.63282,-0.56277,-0.44675,-2.9761,0.030095,-1.0818,1.5448,-0.057322,0.37736,-0.53663,1.0313,0.68262,0.48671 2.7494,-0.95818,3.0283,0.39077,0.047597,-0.067969,-1.3302,-0.5364,-2.7611,0.4211,1.3122,-0.8491,-2.0895,0.91558,0.71495 2.5919,0.85641,-0.070745,0.47351,-0.58507,-1.6619,-0.43893,0.24394,1.3904,-0.013045,-1.4768,-1.0478,-0.24106,1.436,-0.24446 -1.8674,1.2602,-1.0709,1.3697,-1.9957,-0.38379,0.71583,0.48493,0.040249,0.012722,0.78007,0.93148,0.58141,0.45367,0.16714 2.6056,-0.8299,1.7252,1.6605,-1.3079,0.49501,1.2639,-1.1073,-0.12383,0.070295,0.020019,0.62906,-0.96074,-0.25935,-0.13133 0.46815,1.8892,-0.17538,1.0718,-1.1262,-1.529,0.82738,0.73219,0.9717,0.63617,-2.7155,-0.057178,0.12483,0.47838,-0.12318 0.010334,0.81988,0.14682,1.0525,0.069635,-1.421,2.6254,1.0716,0.4273,0.57452,-2.5993,0.0667,-0.5435,-0.36264,-0.65937 -1.5159,2.1317,0.31475,0.20025,-0.81114,0.67786,-1.1772,1.5615,-0.69234,-1.433,1.582,0.86954,-0.99435,-0.033948,-1.1397 -2.4714,1.4706,-1.1243,-1.4439,-1.6092,-0.64624,2.6393,-0.052421,-0.81407,0.39761,-1.121,-1.0733,-0.0036041,0.37506,0.16078 -0.98975,0.42116,-0.83073,0.82567,-2.2582,1.0099,0.36153,-0.56977,-0.28528,-0.046797,1.0579,0.61694,-1.0039,-0.10017,0.53425 -1.4224,0.74097,-0.25392,-1.352,-1.448,-1.5752,2.674,-0.0097767,0.74027,0.48794,-1.2667,0.043983,-0.83729,-0.72188,0.46118 1.3462,2.6471,0.85227,-0.68938,-0.78219,-0.47448,-1.1806,-0.7269,-0.7096,-1.0248,-0.07335,0.15956,2.0134,0.073352,-0.73517 4.1022,-1.5395,-1.498,0.55712,-0.60904,1.0593,-0.86291,-0.79205,0.087193,-0.34568,0.066416,-2.4024,-0.76637,-0.29822,1.7392 -0.16497,-0.70544,0.29117,-1.6599,-2.5891,-1.7004,2.48,-0.10343,0.4182,-0.058302,-1.0887,-0.2052,0.24414,-0.063298,-0.31021 3.9431,0.087318,0.28607,-2.5782,-0.79786,-3.3183,0.55827,0.57417,-0.1137,-2.1371,0.17692,-0.25694,0.80054,0.64061,-0.60079 4.4906,-2.6319,-1.4641,-3.5013,-1.413,-1.0104,0.50187,2.417,0.5025,-1.3443,1.461,1.099,1.0117,0.53443,-0.5212 0.80201,1.0926,0.26679,2.399,1.2966,-1.8161,-0.51852,0.4552,-0.60511,1.0274,0.93661,0.32993,0.43253,0.8038,-1.3927 -2.0646,-1.9987,-2.1796,-0.060662,-0.37549,-3.531,-1.5277,-0.48135,-1.0965,-0.95003,-0.24307,1.0804,-1.1086,0.37352,0.52003 3.4984,-1.1483,-1.9379,1.3233,0.82961,2.3717,0.37116,0.19183,-1.0536,1.9393,0.37111,0.86951,1.8092,0.81385,-1.4101 2.0973,2.0828,1.579,-0.93514,-0.88302,-1.8389,-1.4169,-0.91774,-1.2347,-1.55,1.234,-0.056035,1.4492,1.2073,0.075813 -1.2089,1.5806,-2.54,1.502,-0.049258,-0.64129,0.94717,0.91076,-1.5384,-1.0259,-2.0049,-0.53284,-0.17553,0.69327,-0.046811 2.7945,2.7531,-0.69554,-1.5993,-0.5253,-2.0466,-0.36835,0.12165,-0.072039,-0.99421,-1.4232,-1.4751,1.3357,-0.036024,-0.76273 3.1979,0.53942,1.0474,-1.2255,-1.4002,-2.6188,-0.81093,-0.13359,-0.89185,-1.4556,0.06474,-0.048295,1.9467,0.75056,-0.61733 2.2466,0.66632,-2.6168,-2.8516,-1.8969,-0.69788,0.72236,-0.48753,0.73407,-1.337,1.2927,-0.37202,0.63948,0.072894,1.6264 4.3665,-0.24554,0.40449,-2.4392,-2.12,-0.60105,-1.4072,0.45635,-0.19242,-2.1201,-0.033232,-0.32558,-0.45728,0.66011,-0.21668 3.7821,-2.0639,1.4308,1.9666,0.51049,0.46101,-2.6414,-0.29365,-1.1091,-0.11723,1.4352,-0.29553,0.5434,-0.081839,-0.56144 2.0133,0.69607,-1.736,0.50193,-0.13479,-1.0798,0.18865,-0.43852,0.86571,2.0328,0.48995,-1.1901,0.62241,0.60335,1.3905 3.0556,0.36787,1.197,-1.7552,-2.729,-0.75792,0.22083,1.0008,-0.78163,-3.123,-0.45881,0.20711,-0.10327,1.0812,0.14608 1.3703,2.4541,0.92677,-0.19601,-1.5376,-1.7936,1.4748,0.69193,-1.3647,0.20876,-2.0062,-0.20164,-0.27738,0.78291,0.67117 -3.3838,-0.71209,-2.3406,-0.11309,-0.15801,-1.7944,0.80769,-0.4871,0.1166,0.11145,0.005086,0.06064,-0.88924,0.69029,-1.5597 3.8394,-0.062186,-0.32562,-1.169,-2.4664,-0.75752,-1.0068,0.77564,0.69187,-1.3685,-0.71877,0.079902,-0.62379,1.03,-1.1137 2.825,-0.84793,2.2883,1.483,-1.0758,-0.80049,-1.2302,-0.77194,-0.55177,-0.94097,0.89148,0.53773,0.37018,0.32386,0.41902 5.3862,-1.3898,0.60718,-0.74022,-0.37801,-1.4625,-0.45941,-0.19602,-0.66092,-1.4795,-0.67179,-0.16811,-0.2451,-1.3453,-1.5242 -2.0865,2.3801,-0.71025,1.3712,-0.092832,-0.16768,-0.33636,2.4585,0.22683,0.037259,-0.73879,-0.056442,-0.27962,0.22937,0.82497 -2.4257,2.5766,0.354,0.035304,-1.7854,-0.45586,1.4947,-0.089284,-1.888,0.39993,-0.20476,0.46305,0.53357,0.61648,1.0054 4.0314,-0.77601,-0.98261,-2.5725,-1.6614,-1.5186,0.67613,-0.22579,0.63677,0.73401,1.7351,-0.065458,-0.1739,-0.3488,1.8272 3.2822,-0.58586,-2.652,0.060257,-0.42216,-0.16676,1.6128,-0.56578,0.92213,-0.13305,0.19454,-0.14992,1.062,0.3727,0.12702 1.4023,-0.20391,2.8565,-0.5063,-3.2075,-0.62091,0.68211,-0.19747,0.011422,-1.3,-0.8801,0.062692,-1.3312,0.4478,0.9301 -2.3933,-1.6301,-0.032894,0.0093566,1.014,-3.0059,0.74138,-0.24666,-0.44848,0.64107,0.90295,-0.23826,0.62752,0.10738,-1.1009 -0.4034,2.959,-0.74405,-0.97072,1.6662,-0.32511,-2.0311,2.1257,-0.19803,-0.043307,-0.027933,-1.5414,1.21,-0.30076,-0.41165 2.8313,-1.5692,0.58507,2.6445,-0.51,1.212,-2.2969,-0.094309,-0.75877,0.018526,-0.14416,-0.11718,0.56745,-0.275,0.20405 -0.24876,-1.5205,1.7828,2.2767,-0.33717,1.4914,-0.16145,-0.067416,0.66464,0.64695,1.0583,0.099568,-0.16074,-0.87008,-0.44381 0.70482,0.63852,1.9088,-0.64521,-3.5366,-0.0067275,0.51389,-0.27911,-0.15559,-1.6385,-0.50009,0.43488,-0.39006,-0.51307,0.57511 1.0653,1.1212,-1.5328,0.69074,-0.26011,-1.906,-0.5401,-0.22624,0.92699,-0.049279,1.2164,-0.66495,1.8907,0.99966,-0.021808 -2.1145,-0.24794,0.87282,0.051549,-1.7455,-2.1159,1.6024,0.49729,-0.49356,0.20087,1.0426,-0.27557,1.4589,0.98154,-0.11186 -1.726,-1.3397,0.91552,0.86138,-0.26994,-2.6993,1.4409,0.16643,-1.4146,0.52573,1.5297,0.67675,0.499,0.19264,-1.1311 1.0301,-0.618,2.7451,0.30569,-1.5043,-2.6827,2.3655,-0.10516,-0.94429,0.24726,-0.43954,0.4768,1.3689,0.41142,-0.8152 2.1655,-1.285,-0.79115,1.8734,1.1781,0.74371,-1.0031,1.6836,0.44737,2.0411,0.93612,0.39272,2.3405,0.29577,-0.90054 -0.033678,0.74834,-2.6918,1.6547,-0.015136,1.7361,-0.99355,0.66739,0.075982,-1.2255,-0.47456,-1.2679,-0.5242,0.088938,-0.16276 0.96474,-2.972,3.2392,1.523,-1.2016,0.58786,0.25881,0.47172,-0.95322,0.92123,1.3761,0.33801,0.28519,-0.76637,-0.88399 -1.1456,-3.4537,2.0497,0.51854,-1.2159,-0.86264,-0.30833,0.34631,0.43903,0.6449,1.36,-0.14018,0.49083,-0.63002,-1.5001 -1.7556,-3.0162,0.59723,0.046714,-1.1701,-2.7898,0.47836,0.50964,-0.86591,-0.17524,1.3678,0.31961,0.76078,0.027663,-1.7205 1.6117,2.2347,0.38805,-0.22756,-0.29628,-1.4245,-1.5634,-0.69667,0.23376,0.81274,0.37402,-0.018067,1.7998,0.34782,-0.84842 4.7008,-3.978,0.584,-0.27335,2.0224,1.5864,-0.43457,-0.9831,-2.9075,-0.56305,1.8408,0.34521,1.1025,-0.13341,0.094129 -0.55554,-1.6047,0.90343,-1.0092,-2.3945,-2.2181,1.6932,-0.78331,-0.99975,0.013685,-0.50996,0.45852,1.8375,-0.1825,-0.86606 -0.88247,-3.3931,0.97163,0.26404,-0.89217,-3.0438,0.67837,-0.93094,-0.91477,0.43538,0.78035,0.5435,1.5432,0.029938,-1.2699 2.8517,-0.37415,-1.2841,0.25129,-0.22986,-0.72874,0.77044,-1.561,1.5205,0.94055,0.82964,0.2707,0.98249,0.29964,0.58085 1.1955,1.3773,-1.3815,-1.0564,-1.2448,-1.254,-1.3416,-0.62341,0.58645,0.37609,1.4389,-0.2797,0.48663,1.106,0.62871 -0.044762,1.6366,0.69556,-1.1613,-2.1638,0.19462,0.30058,0.13816,-1.0352,-2.702,1.0964,-1.0091,-0.12793,-0.16617,0.28902 -3.1815,1.8275,-0.33949,0.37013,-0.80747,0.13231,1.3671,0.85132,-0.1836,-0.27464,0.97252,0.85691,-0.17205,0.26389,-0.60416 3.9075,-2.6532,-2.7389,0.21392,-0.29165,-0.22852,2.9352,0.21144,0.80097,-1.327,0.65836,1.3882,-0.15386,0.18285,0.070214 -0.99519,-0.82145,-1.9997,-1.2814,-0.24964,-2.3293,-0.31278,0.045908,-2.1662,0.94652,-1.3205,1.332,2.3636,0.82925,0.62723 2.2068,-0.1961,-2.2212,1.0773,-0.99901,0.26607,-0.42361,-1.5483,0.55293,-0.13922,1.1693,-1.3051,-0.18011,0.45906,1.4411 1.8517,0.96452,0.335,0.62803,2.9753,-1.8093,-1.3369,0.042441,1.002,0.90614,0.96138,-0.20128,1.0618,-0.69117,-1.0634 -2.6594,-0.21729,-0.063885,0.27141,-1.072,-1.6331,1.5795,0.33036,0.060183,0.47121,1.4386,-0.2834,1.1063,1.1569,-0.69958 -0.34259,-1.2307,-0.23454,0.62677,0.072067,-2.4535,2.3347,-0.86317,-1.088,2.6735,-1.198,-0.59064,1.9803,0.99592,-0.62857 1.9627,1.4481,0.9049,-1.0573,-2.7467,-0.19359,-1.1399,-0.1074,-0.90695,-2.5625,-1.122,-0.33339,0.0073747,-1.2852,0.39457 -0.020237,0.1046,-0.21826,2.2422,-0.5524,0.876,-0.25195,-0.72587,-0.96468,-0.89345,2.2346,-0.10386,-0.33016,0.12188,0.38176 -0.23586,0.13504,1.0667,2.0455,-1.1052,-0.66022,2.1323,-2.5866,-1.6016,0.12551,-0.5693,0.035039,-0.071214,-0.29411,1.2497 0.61913,2.8934,-2.2434,-0.35751,-1.351,0.13945,-0.95371,-0.82883,-0.75895,-1.6562,0.54518,-0.75975,1.2371,0.42801,-0.061274 2.1755,-0.58706,-0.63841,2.0522,-0.39906,2.5409,-1.9134,-0.61284,-1.2333,0.6423,0.35026,-1.2586,0.76429,0.98811,1.1001 1.0091,0.22134,-1.1032,0.75294,-1.3816,0.67371,1.9741,-0.72383,-1.6204,-0.67016,-1.3419,-0.48388,1.9571,0.78514,0.45103 0.38546,-0.032678,-1.1386,2.1859,0.029988,0.89258,0.56421,-0.21484,-0.79901,-1.9621,1.7238,0.27039,1.4542,0.62865,0.4011 2.3598,1.154,-1.6803,-2.6587,-0.82608,-1.789,-0.03161,-0.13883,0.50669,-2.9268,1.1427,-0.5722,1.2624,0.063728,-0.032909 2.4935,0.41053,-2.0156,-0.72767,-0.49318,-1.504,1.0059,-0.77963,1.0112,-0.17429,1.3295,-1.18,-0.24407,1.2819,2.0402 3.513,-1.2194,1.1431,2.3957,-0.65931,1.317,-0.47043,-0.81889,-1.5946,-0.54991,0.097647,-0.021345,0.38661,-0.11096,0.077898 2.637,0.86731,-2.6277,0.36803,1.1344,0.16334,0.60366,0.20222,0.70113,1.2799,-0.71653,-1.9865,-0.74798,-0.74792,0.72207 2.4809,-1.433,-1.2125,1.8157,-1.0209,2.7371,0.62043,0.71313,-0.37727,0.40686,-1.3701,-0.79794,1.3197,0.30206,-0.023455 0.28841,-0.89928,-1.5443,1.4696,-0.52621,0.13831,2.3149,-1.6997,-1.558,1.2837,-1.2529,-1.2904,1.063,-0.030392,0.25723 0.88691,-0.19755,-0.59029,3.2906,-0.71379,0.6019,-0.84149,-1.259,-0.29471,-1.0438,0.81201,0.58249,0.17567,0.021192,0.61051 -0.41313,1.1015,0.27713,1.0922,-0.084598,-1.6478,1.3211,2.7392,0.30513,0.23283,-1.4465,0.25322,1.2899,0.4997,0.35267 -0.31486,0.16155,0.38491,3.1402,-1.1625,-0.49503,-0.88515,-0.20167,0.71088,-1.0838,0.94368,0.79542,-0.66932,-0.042172,0.54302 3.7617,-0.47855,1.0189,1.0084,-1.6386,0.57551,-1.8145,-0.15935,0.0067293,0.42488,-0.39973,-0.56557,-1.5437,0.67251,0.82457 -0.44462,2.1582,-1.2843,0.94901,0.24786,-0.11954,-1.9044,1.6715,-0.053846,1.0653,0.96209,0.050636,-0.29562,1.2251,-1.893 0.44849,2.419,-0.16013,1.3025,-1.6529,-0.28848,0.31207,0.23,-0.274,0.95268,-1.2631,-0.63082,0.030119,1.0922,1.2469 0.59158,-2.2945,0.57361,1.2826,-1.8802,0.43485,-0.055495,1.6346,1.1541,0.12695,0.11312,-0.1384,0.6563,-0.80566,-0.44884 -0.43244,2.3526,1.6023,-0.040458,-2.0117,-1.291,0.62407,-0.0076584,-1.2618,0.72439,-0.58032,0.26127,0.65887,0.68061,1.2846 -0.59452,-4.3743,1.0781,0.19553,-0.37466,-0.074697,-1.3038,2.0745,-1.2191,1.8537,1.1459,-0.059952,0.95871,0.0051772,-1.2648 -1.356,0.19534,0.54089,1.1816,-1.152,-1.0856,2.0242,-1.5626,-0.33469,1.9014,-0.16082,-0.18009,0.37742,0.6072,0.67031 0.072963,-0.3476,1.5372,1.7934,1.6982,0.1016,0.99284,-1.4316,-2.3813,-2.0441,1.0178,1.1317,2.0082,-0.17087,-0.23453 6.1775,-3.5494,0.18727,-0.048209,0.30042,1.5019,-0.28236,0.13785,-1.9819,-1.5448,-1.0451,-0.89662,-0.22883,-0.587,-0.6212 0.12832,-4.018,-1.1677,1.9604,1.2139,-0.067717,-1.8303,1.5738,-0.55405,1.0953,-0.42241,-0.279,0.13408,-0.096932,1.1622 -1.5262,-1.9915,-2.0913,-0.72852,-0.34078,1.2794,-1.8507,1.6707,-0.77432,-0.093995,-0.84715,-0.25088,1.1436,-0.57311,1.2366 -0.43726,1.4803,1.7041,0.51499,0.022849,-2.2721,0.2678,2.0902,-0.82407,0.80554,-1.169,0.39884,1.005,0.37329,0.76406 -1.6026,-1.8913,-1.2221,-1.1441,-0.10902,0.81689,-1.7668,1.4422,-1.0567,0.84505,-0.44877,-0.17182,1.7109,-0.13902,0.65984 -0.9724,-3.4813,-1.319,-0.89626,0.059041,-0.59842,-2.7545,2.3487,-0.98732,0.052082,-0.23004,1.324,0.21818,-0.6915,0.52943 -1.1716,-2.558,-1.1885,-0.51958,-0.32819,0.25225,-1.7001,2.0643,-0.65796,0.67522,0.050165,-0.36636,0.97339,0.40467,0.5236 -2.2017,-1.3124,-0.73632,-1.3151,-0.78127,1.6524,-1.3176,1.8608,-0.091926,-0.16107,0.55218,-1.7162,1.2943,-0.28702,0.033714 0.87613,-0.18144,2.3615,-0.94974,-2.2749,2.0042,-1.3026,2.5065,-2.099,0.15831,0.6363,0.36805,1.5897,-0.080818,-0.060519 -0.11322,2.6207,1.4397,0.79776,-0.86398,-2.0543,-0.78294,0.76016,-0.2922,-0.4362,-0.058618,-0.079683,0.93388,1.315,0.29668 -1.6093,-2.8404,-1.1942,-1.1065,0.75481,-1.0254,-3.2122,1.8479,-0.51847,0.3551,-0.97839,0.87466,-0.76463,-0.70664,2.1269 2.0897,0.047211,-0.76803,0.58936,-0.049629,-0.3867,-1.572,-1.1897,1.3913,1.2255,2.8172,0.016624,0.60159,0.39717,0.15185 -1.9014,-2.0534,-2.3738,-0.70637,0.53893,-1.4362,-2.0401,1.4591,-1.0389,-0.86519,-0.65572,0.80552,-1.0582,-1.4628,1.2515 -0.1969,-3.626,-0.48728,-0.32093,0.1656,0.16716,-2.4868,1.3673,-0.3042,1.4485,-0.38158,1.5337,0.90921,-0.26834,0.64496 0.085547,1.5481,-1.2546,0.5053,-2.9327,0.88947,-1.2779,-0.16066,0.13311,-1.498,0.17237,0.28467,-0.13979,-0.16139,0.53024 -1.0887,-3.5841,-0.21453,0.40228,-0.37315,-1.9489,-1.4548,0.50345,-0.89965,0.79942,0.67253,0.64354,0.6036,-1.1686,-0.84446 3.803,0.4817,1.8996,-0.90527,4.218,-1.6674,1.3463,1.1123,-3.2513,1.3527,0.96569,0.76896,0.84408,0.24461,-0.3545 -1.4299,-0.77876,-0.74305,1.2186,-2.4598,-0.72661,0.6121,-1.2949,1.1917,0.094279,0.73586,-0.69487,0.70761,-0.16706,0.0054289 -0.59341,-3.7019,-1.5958,1.0049,-0.68772,-1.3302,-2.0757,0.62613,-0.44274,0.59879,0.025455,0.54201,-0.52866,-0.38088,-0.10934 -2.1192,-3.8481,-1.4464,-1.0192,0.0037668,-0.15518,-2.889,1.1526,-0.68908,-0.14399,-0.71779,0.19107,-1.1226,-0.23367,0.76217 0.59949,1.7088,0.69119,1.264,1.1974,-2.6386,-1.8389,0.10427,0.62168,-0.50205,1.4291,0.082975,0.083471,0.84826,-0.92517 3.4256,-2.6757,-2.4887,0.1858,-0.83231,0.076924,2.1377,0.2781,1.0402,-1.342,0.57748,1.4802,0.042498,0.26993,0.13903 4.0242,0.87773,-0.5732,-0.029913,2.3194,-1.0065,0.83388,-0.093454,-0.95718,2.1167,-0.084706,-1.5192,-0.037019,-1.0587,0.21577 2.3512,-4.8366,1.9694,0.91292,-0.19176,2.3361,1.0061,0.78161,-2.0456,1.1084,-1.2355,-0.092779,0.096817,-0.083986,-0.87424 -1.2731,1.6114,0.32492,2.3429,-0.076092,-1.8671,0.3039,1.2975,-0.23241,1.1304,-0.23532,0.45916,0.072737,0.91493,-0.0041222 0.37751,1.642,1.3451,2.7774,0.43326,-1.1137,0.9807,0.084689,-1.7122,1.984,-0.87838,0.35154,0.71048,0.92879,0.12151 4.0241,-3.8612,-2.065,-0.61259,-1.4143,0.17595,2.4788,1.9601,0.36196,-0.9635,-0.02138,2.2382,-0.61429,1.1073,-0.44734 2.851,-0.073004,1.1522,-2.1173,-2.7646,1.4972,1.2041,2.8331,-1.37,-1.2946,-0.38401,-0.31345,-0.17459,0.10083,-0.093138 -0.92624,1.4143,2.2902,0.69404,-0.4885,-1.2135,1.5927,0.75086,-0.37956,1.682,-0.38964,1.1417,1.2528,0.16589,0.27762 0.84803,-0.42382,1.5154,1.5082,0.62529,-0.79704,3.443,-0.4657,-1.7669,1.0345,-1.848,0.45763,1.2912,0.28606,0.017768 0.26397,1.5046,1.3431,3.0345,0.36059,-1.1375,0.43377,-0.037029,-0.8171,1.1552,0.064859,0.56215,0.18261,0.90104,0.39356 -2.7586,-0.57492,-2.7203,0.68551,-0.90682,-1.7033,1.2511,-0.3625,0.16653,0.21597,-0.28284,-0.79595,-0.98197,0.89981,-1.1122 -2.2215,1.0303,-0.68141,-0.024248,-0.31974,0.17615,-0.12651,3.0566,-0.099115,0.56454,-0.40893,-0.23838,0.51685,0.73494,1.1973 0.95524,1.1521,0.10474,2.4128,-1.1747,-1.2105,-0.89263,-1.4188,0.40468,0.10665,0.21219,0.26972,0.043617,1.0295,0.25377 1.4489,-0.83241,0.01453,-0.43028,-1.1312,1.1532,-3.2984,2.5107,0.18901,-0.62317,1.0704,-0.077163,1.4308,0.29424,-0.89105 3.0426,1.6306,1.0533,1.3877,-0.073849,-1.9241,-0.27102,-0.88438,-0.23742,0.79434,-1.0397,-0.27714,0.9986,0.88756,-0.33007 2.5255,0.24721,-0.93578,-1.677,-1.111,-1.324,-0.81858,-0.36651,-0.58064,-2.7967,1.1504,-0.93179,2.069,-0.22517,-0.34107 0.53139,1.9624,0.77508,0.91764,-0.61585,-0.81656,-0.35126,1.2805,-0.339,1.422,-1.1578,0.26579,2.0466,0.38508,-0.081799 0.85398,1.987,0.94216,1.0489,-0.4829,-1.2415,-0.50293,0.78413,-0.39957,1.2338,-1.3189,0.17325,1.9263,0.53894,-0.65442 -1.6611,-3.4098,2.0082,-0.45742,-0.38053,-1.7345,-0.075074,-0.88085,-1.2053,0.92674,1.7882,0.20974,0.034777,0.088234,-1.4772 2.6058,2.2018,0.72065,-1.1607,-0.44489,-2.1147,0.099103,0.62824,0.39517,-0.04291,-1.5905,-1.0404,0.16429,1.2822,0.063604 0.73591,-2.5193,3.4427,-0.93167,-2.762,-0.39819,0.70954,0.094562,-1.937,0.61593,0.8014,0.65659,-0.19552,-0.015886,-0.74996 -1.1215,2.7274,-0.13023,0.65809,-1.5208,0.18698,-1.1285,0.24753,-0.73784,-0.28822,0.79321,1.2215,0.74533,-0.701,-0.092343 -1.3777,-3.7878,1.2365,-1.0665,-1.0607,-0.050785,-1.0844,0.1853,-1.776,0.45869,1.2486,0.60168,0.88124,-0.42648,-1.6273 -1.3073,-2.0948,0.26633,-1.0938,-0.556,-2.2234,0.39008,-1.6746,-2.1088,1.471,0.37321,1.0949,1.4488,0.71335,-1.4444 1.4337,0.49516,0.63548,2.7153,1.1019,-2.5325,0.38542,-0.10928,-1.1259,0.23049,0.059893,-0.30994,1.6528,0.8432,-0.37365 0.42818,-4.1607,1.6352,-0.79684,-0.96509,-1.1641,-0.049929,-1.8497,-1.985,1.3001,0.18087,0.63784,0.00072423,-0.08446,-1.1932 -1.3105,-3.5013,1.451,-1.0613,-1.2355,-1.5463,-0.12972,-0.97676,-1.8146,0.66489,1.2282,0.6042,0.8501,0.10263,-1.4323 -0.36822,-3.3456,1.4445,2.1511,0.15653,-0.55288,0.46395,-1.3151,-1.593,-0.033992,2.2505,-0.21153,0.13914,-0.7977,-1.0791 -0.64571,-2.9463,1.5532,-1.2505,-1.8554,-1.3205,0.31995,-1.5572,-1.752,0.7278,0.74322,0.3749,0.73471,0.25371,-1.3569 -0.31364,-3.4769,1.6775,-0.049602,-1.354,-1.0784,0.36469,-1.1659,-1.1512,1.0334,0.87043,-0.023638,0.4841,-0.57983,-1.3043 1.6509,-0.44531,-1.7845,0.86207,0.39884,0.13799,-0.60262,-1.5551,-0.4353,1.2487,3.1191,0.73016,-0.46927,-0.26916,1.4631 -0.0047976,1.0767,-0.58168,2.8155,-1.3774,-0.22993,0.92747,-0.54616,-0.079801,-0.4756,0.38331,0.026959,-0.067211,0.86094,1.2082 0.23447,-3.0907,1.398,-1.5412,-2.1084,-1.6188,1.1707,-1.535,-1.5125,0.94412,-0.2971,0.25223,0.39162,0.29907,-1.1037 -1.6588,-3.037,-0.44732,-0.75067,0.72484,-1.5863,-1.2813,-0.61346,-1.6158,0.2719,0.90635,1.6865,0.17868,0.31866,-1.4825 4.3917,-0.2825,0.70664,-3.138,1.9863,-3.0537,1.4092,2.556,-1.2798,-1.3931,-0.029951,0.26953,-0.50183,1.046,-0.081394 -3.423,1.8122,-1.1109,-1.1419,-0.40852,0.15398,1.6539,0.25323,-1.0989,1.7516,0.227,-0.31447,0.66086,0.17472,-0.34576 -1.4492,0.40499,0.22088,-0.77498,-0.70824,-1.4842,1.74,-0.31749,-2.4432,2.361,0.63611,0.26458,0.32645,2.3022,0.47426 0.93305,1.1458,-3.523,1.1686,-0.014039,1.0208,0.47373,-0.61728,0.41326,0.52624,-0.55563,-1.2418,0.38131,-0.23585,1.3235 4.1898,-2.1643,-1.5011,-0.28579,-0.94358,2.0557,-0.41904,-0.88249,-0.75936,-1.5787,-0.089267,-2.0858,0.36191,-1.072,0.4855 -2.2332,-1.216,1.2481,-0.1403,-0.95796,-1.4286,0.57483,0.25866,-0.75678,0.8532,2.7487,0.89994,-0.6258,0.21003,-0.8431 2.1471,2.3759,-1.0237,-1.6871,-1.3974,-0.67032,-0.87975,-0.91887,0.22642,-1.2641,-0.50902,-1.1508,1.3069,0.0014602,-0.15491 -0.061884,-2.3992,3.503,-1.3307,-1.1439,0.38513,-1.3297,-0.74518,-1.6466,1.5761,0.25245,-0.83466,-2.0542,0.4749,-0.30087 -0.83788,-2.4715,1.5277,0.58747,1.5876,-1.8962,1.1201,-0.63948,-1.5894,1.3146,2.1353,0.61828,0.41872,-0.20381,-1.7412 -3.8553,-0.1417,-0.62008,-1.2752,1.0115,-1.1239,0.49938,-0.10787,-0.89397,1.0128,1.1686,0.13358,-0.24647,0.6927,-1.1171 3.7667,-1.9087,-1.314,-0.22556,-1.1642,-0.27985,1.2212,-1.1867,1.1665,0.4186,0.64945,0.18945,-0.21805,0.4399,1.6598 1.6775,-2.3823,3.9859,0.46267,-0.66682,-0.82302,0.41989,-0.14143,-2.2219,0.24616,0.94459,0.20721,-1.569,-0.82961,0.55575 3.2597,1.6803,-0.755,-1.9327,-1.9278,-1.4469,-0.60846,-0.74375,0.6908,-1.545,-0.169,-1.2752,-0.14277,-0.026854,-0.44897 -0.015472,1.54,-1.1594,3.3718,2.8292,-0.33183,-0.52485,0.95546,-0.40631,-0.61261,-0.75277,-1.0798,-0.60734,0.34348,-0.77476 2.1482,0.36774,1.6003,-0.12414,-1.9191,-2.7592,-0.2811,0.26383,0.061825,-1.1509,-1.3279,0.58698,-0.080778,0.37253,-0.26717 -1.2724,2.5037,-1.6897,1.4896,0.40425,-0.63873,-0.31251,1.9839,0.62997,-0.074477,-1.4781,-0.63475,-0.34889,0.46608,-0.06072 0.62812,2.1169,0.28754,-0.55782,-1.3343,-1.2106,1.8603,1.2591,-0.63301,-0.66226,-2.8428,0.24721,0.74026,0.78473,-0.54174 -1.6942,1.876,0.83743,-1.0414,-1.9057,-0.037389,1.4183,-0.35786,-2.1558,-0.68526,0.25562,-0.19261,-0.098563,0.2399,1.2875 3.2437,-3.1695,-0.20418,1.0922,2.1352,0.40113,-0.16532,0.54391,-0.70079,0.54986,3.3741,0.99636,1.232,-0.47545,0.23311 2.1771,0.3701,2.2958,-1.2368,-2.3141,-1.2983,-1.4814,0.80867,-1.4621,-0.96241,-0.28224,0.42391,-0.88539,0.73895,0.52212 4.573,-1.0866,-0.68297,-0.46198,-1.1535,-1.5774,0.45707,-0.83577,1.2705,-1.8076,-0.28775,-0.73159,-1.7813,-0.36622,-1.1514 0.65861,-0.39318,2.0815,2.0269,0.047254,-0.74525,0.91829,-1.0045,-1.1713,1.5891,0.2209,0.80147,0.23717,0.4519,0.19819 -1.4944,2.2304,0.65373,0.90732,0.16686,0.35596,-0.67443,1.9509,-1.504,1.5581,0.3181,0.73842,-1.127,0.70322,0.20647 2.5836,-0.38799,1.0247,1.1993,1.3421,0.59172,-1.4717,-2.3491,-1.5097,-1.5565,2.2611,-0.48488,0.95843,0.5253,0.3894 -2.115,2.0059,0.025815,1.0491,-0.20665,-0.97134,0.52937,1.7208,0.37465,-0.4114,-0.50803,0.32104,0.38537,-0.67417,1.3945 1.8101,-0.70945,-2.4392,-0.415,-2.1621,0.30594,0.096453,0.30887,1.0771,0.47542,1.1512,-0.36263,-0.38871,1.0113,1.9053 1.5507,-2.757,0.8086,1.3646,-0.80087,-1.3459,3.4054,-0.044343,-1.3742,-0.50312,-1.452,1.0081,0.369,0.15517,-1.2718 -0.45894,1.4531,1.167,2.0542,1.6073,-1.2725,0.059534,2.3411,-1.4066,1.785,0.5787,0.42223,-0.64516,0.82899,-0.5026 4.0093,-1.0037,-0.4461,-0.72776,-1.9285,-0.55728,-1.7704,1.3607,1.8656,-1.4455,-0.61567,-0.70747,-1.2051,-0.26282,-1.7211 0.22992,3.5657,0.20928,-0.78299,-1.1491,-1.1879,-0.20268,0.045687,-0.90592,-0.61777,-1.8264,-0.4002,0.18808,0.84942,0.34652 5.0164,-2.4581,-0.016572,0.7233,0.45725,0.13689,1.0045,-1.9615,-1.4689,-0.81776,1.0365,-0.39108,0.67233,-0.13293,0.84599 -0.89767,1.3948,-0.33574,0.73752,-2.2633,-0.69563,1.0979,0.22191,0.31474,1.0839,-0.62567,0.16648,0.19505,1.3121,1.1868 -1.8706,0.94171,-0.077223,-1.4741,-1.9852,-1.0114,2.6576,-0.16166,-1.3505,-1.2481,-0.59931,-1.0255,0.14036,0.46873,0.47519 2.5683,0.15454,2.0099,0.25242,-0.22752,-2.5192,2.5699,-0.71811,-1.1473,-0.99193,-1.8708,0.0096367,-1.407,0.42177,1.0137 1.392,1.7542,-0.95057,2.5484,0.045778,-0.54139,-0.48306,-0.33034,-0.42109,0.84297,-0.75129,-0.76396,0.41528,1.1252,0.07327 2.7175,0.1917,1.9521,-0.20928,-2.1106,-2.8606,0.30533,-0.38117,-1.1323,-0.74623,-1.2942,0.19188,-1.1023,0.8987,0.049126 0.27345,0.85634,0.64569,-0.9457,-1.5602,-1.2213,2.2697,1.8822,-0.56596,1.8854,-1.6434,-0.48745,-0.93559,0.23752,0.57862 -1.2494,1.43,1.263,-1.266,-1.6024,-1.2869,1.999,0.35265,-2.353,0.90491,0.20398,-0.1773,-0.086482,0.87368,1.203 2.5602,-0.52559,1.88,-0.14904,-2.5545,-1.0154,-1.9777,0.9848,-0.58892,-0.84504,-0.67741,0.31897,0.044346,-0.6055,-0.59979 1.131,1.6675,-1.3337,-0.29293,-2.2009,0.64336,-0.86942,-0.22575,0.050399,-2.3762,-0.014256,-1.0133,-0.47845,-0.55686,-0.008206 0.31058,0.027142,1.5286,-1.7177,-2.7985,-1.8519,2.3236,0.86847,-0.71376,-1.5134,-0.93432,0.12227,-0.24642,0.62114,0.13938 1.4735,2.1257,-0.32304,-0.092227,-1.4864,-2.194,0.18554,0.33766,0.57603,-0.97946,-2.3615,-0.018995,0.63859,0.44986,-1.4149 3.2047,-0.78661,-2.1443,-1.7058,-1.6547,-0.76883,-0.25391,0.47938,2.2414,-1.3254,1.0923,0.079881,0.042357,0.44818,-0.75941 -1.6631,0.46897,0.23796,-0.37083,-2.5904,0.65666,0.15643,-0.68771,-0.53046,1.0445,1.9201,0.6364,-0.20029,-0.21713,0.29703 0.14435,1.1063,-0.65642,1.8657,-1.1286,0.024679,-1.5437,-0.0088827,0.98069,-0.93689,1.2643,1.0888,-1.3925,0.24889,-0.41457 0.25191,-4.0267,1.8278,-0.93614,-2.2485,-0.79113,-1.4135,0.20024,-0.62204,0.28606,-1.0931,-0.67756,-0.07458,0.021778,-0.24859 0.25734,2.8251,-2.7822,-0.92405,-1.741,0.39046,-0.78641,0.39231,-1.3136,-0.35592,-0.31099,-1.5087,0.58242,-0.61172,0.17059 -1.2234,-1.1604,2.4851,-0.3148,-0.88122,0.29142,0.29505,1.13,-1.1857,-0.21629,2.4879,0.8331,0.80046,-0.74961,-1.0677 1.1896,-0.72241,3.4845,-0.639,-2.6006,-0.48733,-1.0257,0.97758,-1.2725,-0.92442,0.53002,-0.076818,-0.4016,-0.18428,0.34921 -1.6556,-0.36688,-2.7981,0.76873,0.092604,-0.056658,0.37267,1.4103,-0.0067848,1.7715,0.28519,-0.72305,-0.90382,0.52009,-1.1078 2.4773,0.52221,-2.523,0.25689,-0.073679,0.72135,0.33413,0.37938,0.31252,1.3561,-0.29159,-0.85527,1.1162,-0.63375,-0.1061 -2.4158,3.1141,-0.92111,0.39503,-0.26764,0.85305,-0.26862,2.0826,-1.7255,0.34553,0.15399,0.67892,-0.14334,0.10378,-0.92389 2.4359,-2.8471,2.4083,0.60033,-1.6055,1.2151,-1.2439,1.4558,-0.29032,0.43339,-0.41922,-0.75676,0.37757,-0.16606,0.15774 2.5445,-0.81041,-1.6317,-0.2642,-1.5078,-0.86437,0.57067,0.36587,0.85542,1.031,1.2393,0.45624,-0.54297,0.6268,2.1314 -2.4989,-0.4844,0.48623,0.75659,-1.6037,-2.838,1.5613,-0.5895,-0.12212,0.48452,0.62918,-0.20039,0.60135,0.33427,-0.25341 -2.2959,-0.72011,2.0263,1.1467,1.2701,-1.6509,0.63474,0.31152,-1.0306,-1.2334,1.7986,-0.48146,-2.0251,0.17326,-0.34793 1.1868,-0.34164,2.3535,0.16638,-2.9595,0.69669,0.08234,-0.86894,0.40321,-0.085071,0.59548,-0.44143,-1.2352,0.2164,0.59736 -1.2222,-1.276,0.99902,1.5535,-0.45072,1.6927,-0.057414,1.5645,1.8565,-0.026311,0.065234,-1.3705,-0.15532,-0.34445,1.5511 -1.9353,-1.3855,0.59244,-0.75934,-1.4104,-3.1046,1.2162,0.22373,-1.7594,-0.73949,0.6843,-0.49549,1.2085,-0.27066,-0.71998 -1.4531,1.8199,0.3084,0.16881,-0.21254,0.78193,1.2002,1.4284,-2.6408,1.4755,0.2165,-0.3054,-0.52256,2.0162,0.11 -0.64991,-3.8533,0.2807,0.0135,-0.46954,-1.8844,-1.6878,0.63165,-1.0036,0.43213,-0.065246,-0.4671,-0.058646,-1.3794,-0.8013 2.6666,1.0158,1.4294,0.40131,-1.3332,-2.2556,-0.40223,-0.62296,-0.72172,-0.84201,-1.1344,0.031355,-1.1264,-0.61598,0.70684 -1.1268,-2.7705,-0.092143,-1.6052,0.14456,0.1528,-2.6877,0.55304,-1.2857,0.073556,-0.039552,0.41452,0.097953,-0.9544,0.14762 3.8288,-0.20744,-0.62891,0.63888,-0.87372,-2.3174,0.14819,-1.2124,0.64244,-0.8318,-0.12185,-1.4809,-0.54807,0.94487,0.058928 -1.3422,-2.2873,2.4099,-2.3858,-2.7465,0.42931,-0.73432,-0.83157,-1.808,0.48687,0.3361,-0.90146,-0.37773,-0.83717,-0.29052 -2.4296,0.65185,-1.9328,1.6071,-0.54413,-0.92407,1.5679,1.5307,0.60317,0.56398,-0.097704,0.11246,-0.74777,0.64455,-0.028209 3.4646,-4.4516,-1.3095,-0.057799,-1.2128,0.12245,1.0239,3.2076,0.21623,1.1942,-0.96355,1.7576,-0.22024,0.46976,-0.96734 -0.33837,-1.2561,0.81662,-2.072,-2.669,-0.92372,1.5416,-1.204,-1.6971,-0.4448,0.41424,-0.94993,-0.13483,-1.0247,-0.51354 0.81792,3.3137,0.93066,-0.76277,0.42244,-1.3586,-1.8144,0.86967,-1.7638,0.71351,0.5755,-1.2551,-0.90538,0.52301,0.17735 0.14306,-4.4765,2.0889,-1.7168,2.3486,-0.39384,-1.4003,1.3992,-0.67322,0.71374,-0.83943,-0.67104,-0.69979,-1.133,-0.19741 0.52356,0.63672,0.20368,1.1436,-1.0412,1.4135,-1.9237,1.7714,0.2705,0.60474,2.1784,0.7573,-0.18463,1.8973,0.11382 0.15979,0.97045,1.2602,1.2556,-1.5494,-1.1452,-1.6529,0.33837,0.2774,-0.93441,1.64,1.4147,-0.47045,0.67586,-0.44304 5.9026,-3.0942,-0.52552,0.074326,-0.070294,1.751,-0.5007,0.3729,-1.7707,1.28,-0.05261,-1.2298,0.10823,-0.021583,-0.13256 0.89599,1.502,0.96283,1.5229,1.6962,-2.1346,-0.055417,1.6774,-1.3761,1.0831,0.95793,0.7047,1.3426,1.7227,-1.4993 3.8983,-2.3724,1.518,2.6402,-0.4693,1.3907,-1.7645,0.69945,-1.959,0.42927,-0.86279,-0.71361,0.5141,0.2678,0.50455 3.2383,-1.1263,-0.51061,-2.9723,-1.4673,0.14164,-0.13993,-0.44353,0.62504,0.17336,2.6154,1.879,1.1138,0.054363,0.69471 -1.2807,-3.1527,1.2001,0.30169,-0.45846,-2.8146,1.2237,-0.15546,-0.3128,0.67053,0.26731,0.043089,1.2276,-0.66519,-1.4486 1.4981,0.63237,-1.4555,1.6956,2.9327,-1.4189,-0.44368,1.7338,0.92011,-0.11879,0.44607,-1.3746,0.41343,0.5153,-1.0985 3.466,-0.63626,-0.66718,-2.9179,-1.8416,-0.74329,-1.563,1.0001,0.27968,-0.45959,0.76635,-1.3403,-0.4002,0.16783,0.54336 -1.2211,-0.13122,2.3905,0.62432,-2.4804,0.45682,-0.69685,-0.1723,0.64842,0.64952,1.3683,1.0109,-0.71248,-0.72226,0.49149 -1.1276,-0.74254,1.7396,2.3069,-1.4717,-0.76976,-0.64027,0.2602,0.29274,-0.16227,1.8191,1.1907,-1.4956,-0.34844,-0.029175 2.4353,1.3637,-1.1792,-0.070948,-1.2425,-2.0071,-0.54108,-0.98874,1.5594,-0.089003,-0.33017,-1.4499,-0.083193,0.76467,0.14362 4.3024,-1.6301,1.1945,-0.66743,-2.2642,-1.0629,-1.0158,1.3848,0.28638,-1.2036,-1.1495,-0.15271,-0.89931,-0.27522,-1.4744 0.68519,-2.1417,1.9735,1.7781,-0.41285,1.8647,-0.38321,2.7277,0.91102,1.3234,-0.2121,-0.30536,1.2817,-0.52822,-0.19267 5.8323,-3.4229,-0.66235,0.13645,0.13559,1.52,0.19601,0.97713,-1.7067,1.5987,-0.60678,-0.80459,0.41763,0.18181,-0.46405 -2.3158,1.2411,0.20974,0.061818,-1.4129,1.2032,-0.021703,1.1323,-0.46294,1.9377,1.4915,0.99245,-0.046176,0.48727,0.16675 2.5967,-3.3502,1.8607,2.2193,-0.65512,1.2829,-0.96124,0.0035707,-2.0747,0.13563,-0.1783,0.028515,-0.081789,-0.71691,0.38431 2.4724,-3.5416,3.6474,1.2667,-1.1577,0.80524,-0.5791,0.44908,-2.48,1.18,-0.058453,-0.16622,-0.63437,-0.27271,-0.47833 4.9823,-0.5821,0.08349,-0.71022,-0.60896,-2.6328,0.2352,-0.68701,1.0064,-1.1864,-0.65593,-0.66792,-0.48586,1.0206,-0.65588 5.8004,-3.5639,-1.4808,-0.052798,-0.39884,0.97926,0.65584,0.93626,-0.68169,0.64983,-0.48382,-1.2183,-0.14114,-0.23279,-0.16957 -2.5862,0.67096,0.72006,-0.62682,-2.7933,-0.55676,0.99494,-1.3693,-1.8562,-0.36006,1.2364,0.50227,-0.449,-0.00061609,-0.1027 4.2242,-1.3587,-1.255,-2.6954,-1.6589,0.99974,-1.0673,2.0723,-1.4327,-1.1287,0.17278,-0.93917,1.2997,-0.60749,-0.53725 -1.3598,-2.0251,2.3666,0.18944,-2.6797,-1.3233,0.036821,-0.79685,-0.86805,0.41064,1.0309,-0.55746,-1.0082,-0.95523,0.046575 -1.3102,-0.56662,-0.97295,1.6172,-0.023107,0.83093,0.8883,1.0165,1.0914,-0.82124,0.42086,-1.1602,-2.0403,-0.75083,-0.16135 -0.82864,0.88264,-0.93674,2.5237,-1.0491,-0.38474,0.57711,0.48101,0.56635,-0.29243,0.9091,0.74741,-0.86442,0.65476,-0.51401 -0.82661,0.4394,-0.17463,3.3688,0.060979,-0.20302,-0.028145,-0.40338,-0.37753,-1.8727,0.90045,0.50124,-0.82801,0.13502,-0.1265 3.3957,-0.95637,-2.0399,0.59792,-0.2124,2.0935,1.138,-0.0034088,-0.597,2.7633,0.83952,1.5125,0.96406,0.43693,-0.73104 4.1714,-2.8111,2.7998,1.6342,-0.12985,2.397,-0.72666,1.185,-2.501,0.96311,-0.39099,-0.13834,0.11627,-0.023512,-0.72026 -0.00060823,-0.064983,0.74641,1.4954,2.3368,0.72248,2.7786,-0.68423,-3.0547,1.6425,0.02875,0.37745,2.0006,0.2728,-0.33962 0.11936,2.8695,-1.0765,-0.37763,-1.8876,-0.59532,-1.2341,-0.10602,-0.80545,0.021146,-0.7647,-0.36946,1.7547,0.16472,0.24592 -0.26346,-1.2683,1.2193,0.58885,-2.1054,0.029355,0.61107,-0.7109,1.5244,0.79995,0.33503,0.061389,0.88207,-1.148,-0.10968 -1.9444,-0.21062,-0.70126,-1.8163,-1.4091,-0.5754,0.25757,-1.8801,-0.42786,1.1258,0.08316,0.61827,1.5601,0.1476,-0.3 1.1397,1.99,1.2401,-0.069342,-1.2955,-0.18249,-3.2187,0.15171,-0.41521,0.17299,1.523,0.59743,-0.40342,0.60297,-0.3198 2.9623,0.56418,0.46641,-0.28108,-1.8926,-1.6705,-1.7331,-1.1333,-0.078131,-1.1169,0.25932,-0.50699,1.0751,-0.021209,-0.89577 1.2846,-0.74005,2.1968,1.6702,-1.9337,0.99252,-0.14599,-0.69188,0.23909,0.99663,0.26768,0.95777,-1.1238,-0.63682,0.378 1.2845,1.7282,0.18359,0.027162,-1.932,-1.5811,-0.24191,-0.11166,0.68983,-1.6824,-1.2827,0.19623,1.88,0.52246,-0.60691 -1.7143,-0.022933,-2.2048,-1.0113,0.24497,0.023804,-1.6737,1.3522,0.29037,0.98674,-0.59996,0.59838,1.4438,0.51016,1.5144 -2.2025,-0.13077,-2.7279,-0.29616,-0.54649,-0.083218,1.0752,0.41175,1.0164,0.25016,-0.55931,-0.7454,-0.7024,0.20325,-0.63507 -2.0579,0.57233,-3.3817,-0.50841,-0.823,0.34061,-0.43833,-0.2772,-0.36928,0.11104,-0.14771,0.77836,1.4001,0.51417,0.13583 -0.45187,-1.1103,-0.41422,0.76632,-1.8637,-0.083241,1.1535,-1.6072,0.72416,1.1493,0.10173,-0.054449,1.0949,-0.33682,-0.49678 -1.6837,1.1553,1.2134,-0.59772,-1.3958,-1.8234,2.0062,-0.86108,-0.74944,1.5921,-0.88511,-0.37405,0.19104,0.89655,1.2606 3.7624,-0.80134,-1.8846,-4.3776,0.080367,-2.0935,2.0352,1.9995,0.3019,-1.769,1.6352,1.5859,1.2363,0.70287,0.025395 0.91394,1.6865,-1.4258,1.5822,1.1772,-0.63231,-0.59759,0.1999,-0.09773,1.5387,1.0816,-0.61915,0.10905,1.3494,-0.39454 3.2509,0.62087,-2.116,-1.2658,-1.6416,-1.1391,0.15164,-0.34576,1.6557,-0.98308,0.061161,-0.83214,0.14657,0.59022,-0.90244 -0.78749,-1.0037,-1.1101,-1.11,-0.68956,1.3934,-2.045,-0.682,-0.6347,1.5847,-1.0534,1.3428,0.57284,-0.41045,1.5533 0.71021,-1.5002,3.56,-0.27202,-1.7002,1.0772,-0.61897,-0.1785,-0.69287,1.4382,1.368,-0.48407,-1.3083,0.46176,0.65359 -0.9184,0.71731,0.59643,1.5683,-1.5373,0.0020073,-0.21679,-0.16977,1.2008,-0.29011,1.1932,1.6807,-0.059537,0.25465,0.19426 -2.8791,0.056737,-2.5387,-0.8704,-0.66953,-0.35108,0.91522,0.35902,0.67374,-0.23135,0.080577,-0.053983,0.29898,0.57227,-0.7602 -2.386,-0.53266,-1.2864,-0.073592,-0.11825,-1.1074,0.26733,-0.32678,0.56796,1.9214,0.55461,0.33776,0.83762,0.67267,-0.57077 -1.9221,0.21266,-2.0019,-0.48152,-0.87316,-0.45311,0.051,-0.50804,0.0080956,1.6,0.3009,0.54922,1.0838,1.2144,-0.2635 3.6249,0.30499,-1.9878,-4.0305,-1.7241,-0.77065,1.307,0.70223,-0.92858,0.26396,2.0995,1.1277,-0.53753,-0.48811,1.0514 3.9326,0.091885,-0.35831,-3.3489,-0.68578,-2.6888,0.41383,-0.39276,0.2459,-0.64603,1.3696,-0.52698,0.28989,-0.032224,1.6073 1.3245,1.4585,0.86224,0.7634,-1.3136,-0.33624,-2.6768,-1.4647,0.061495,-0.18787,1.2258,0.66164,-0.80078,0.61549,-0.70959 4.0784,-0.38039,0.79021,-0.17429,-1.0948,-1.8203,0.68211,-0.17682,0.41514,-2.4026,-1.1426,0.55953,0.48394,0.081886,-1.9077 1.6221,2.478,-2.1584,-1.8261,-0.24113,-1.6493,0.16979,0.64556,0.79082,0.96038,-0.035871,-1.4081,-0.0056862,0.35539,0.84152 -0.83147,-2.8276,1.1087,-0.27831,0.55624,0.67518,-0.743,3.8761,0.59526,1.3167,0.23217,-1.5134,0.88812,0.33901,-0.87162 0.27559,-1.6974,1.2686,1.6974,0.89893,0.70888,-0.5493,4.8416,-0.19501,0.64734,0.44764,-0.80736,-0.1364,1.164,-0.57179 4.8186,-2.6313,0.6343,-0.22168,0.41344,-0.48479,-1.5198,0.16416,-1.9884,0.6214,2.1093,-0.29576,-0.21142,0.96871,1.4997 4.2684,0.33404,-0.85091,-3.0977,0.82222,-3.1099,2.3504,2.091,0.19018,-0.91351,0.045353,0.37593,0.41056,1.1771,-0.852 1.0101,1.4134,-1.2186,0.61654,-1.1107,-0.21204,-0.70262,-0.084379,-0.14422,1.0285,-0.31177,-0.082933,1.7455,-0.31544,-0.17269 -0.56877,-3.3265,-0.2509,-0.43521,0.39635,0.089331,-1.5141,2.3307,0.64906,1.3075,-0.28392,0.27906,0.42103,0.046164,-0.43115 -0.37674,-1.4656,3.6018,1.7352,-1.0373,0.45322,-0.6407,0.67055,0.48713,0.88723,0.70749,0.77261,-0.52665,-1.7306,-0.19775 -1.1482,-3.782,1.3806,-0.55561,-1.0369,0.12702,-1.4179,0.78233,-0.087938,1.7499,0.94119,-0.23843,0.84516,-0.67432,-1.3222 -0.28167,-0.76373,-0.30357,-1.9528,-2.6459,0.43354,0.87611,-0.89769,-0.13243,1.277,-0.24833,0.35783,-0.6819,-0.71344,-0.82458 -1.2044,-3.5706,-0.062481,-1.5171,-0.61358,0.13798,-2.6812,0.71659,-1.1595,1.445,-0.43564,0.78345,0.83171,-0.36626,0.19288 1.9153,-3.3734,-1.461,1.0181,0.3854,0.64755,-0.23199,0.95587,-2.0902,-0.22975,2.8704,0.44252,-1.2518,1.3907,1.6524 -3.2719,1.5651,-0.63715,-0.10562,-1.1622,0.35777,1.4543,-0.066427,-0.54263,-0.027323,1.3867,-0.029623,1.2077,0.054097,-0.038418 -1.1066,-2.6194,-0.41157,-2.0414,-1.0902,0.98709,-2.2485,0.81542,-1.7415,1.293,-0.46865,0.76244,1.4103,0.057416,0.20723 -1.9096,-2.9757,0.32493,-1.3198,-1.0239,0.97495,-1.3049,2.6425,-0.60079,0.27889,-0.26394,-1.9995,1.1436,-0.32536,-0.43889 4.4321,-0.77864,-0.059107,-1.5914,-2.5098,0.48084,-1.84,1.9988,0.41137,-0.58715,-1.1606,-1.0373,-0.89613,0.71951,-1.1227 3.3664,0.014808,0.25347,-1.4694,-2.0795,0.74844,-1.9437,0.50351,0.59885,-1.0407,-0.017014,0.88784,0.042219,0.37617,-1.44 5.199,-1.2803,-0.93617,-0.7238,-0.95088,-0.11891,-0.029246,-0.43035,0.36306,-0.55192,0.70579,-1.5865,-1.106,0.89319,1.1865 1.664,2.2842,-0.14192,0.47213,-1.4155,-2.006,-0.052188,-1.1751,0.51642,0.056741,-2.2105,-0.26303,-0.058497,0.78408,-0.39014 3.9663,-0.26788,1.2639,-0.24578,-1.9052,-0.37549,-0.91371,-0.62758,-0.008469,-0.86666,0.24358,-0.04863,-1.3196,1.8872,1.2075 2.3346,-0.061301,1.9386,1.2717,-2.3743,0.33705,-1.407,-0.49543,0.55641,-0.072519,-0.56826,0.6739,-0.56434,-0.28333,-0.031524 -3.2136,-0.53642,1.2679,-0.28534,-1.0899,-0.11672,0.44731,-1.0217,-0.1851,-0.11303,2.2661,0.55833,-0.59205,-0.10938,-0.63244 0.025726,0.05434,2.6584,0.97455,-1.0925,1.0412,-0.83082,0.39286,1.4156,0.094251,1.5512,0.3299,-0.29099,-0.61665,0.38506 -0.10578,0.23064,1.7251,0.77378,-2.776,0.47069,-1.5756,0.16245,0.41447,0.19361,1.0803,1.0556,-0.33179,-0.30084,0.72917 -0.71883,-0.75062,2.4232,1.634,-1.556,0.72,-1.117,0.47363,1.1035,0.52149,1.0626,0.82869,-0.77001,-1.0716,0.55872 3.2886,0.40579,2.5363,0.09147,-2.4401,-0.27846,-1.4494,-0.28624,0.25566,-0.57873,-0.23279,-0.012264,-1.5085,0.8165,0.80935 -2.0741,0.84598,0.72191,0.59743,-1.3195,0.83969,0.013597,1.082,0.5303,-1.5112,2.3543,0.51655,-1.2561,-0.12851,-0.30612 2.4367,-0.26188,1.7555,2.7447,0.86973,-1.9256,-0.20805,-1.9645,-2.676,-1.0113,0.99848,-0.072319,0.056227,0.36729,-0.17564 -0.74878,1.6287,-2.2218,1.0641,-1.1894,1.7869,-1.4783,1.072,1.1431,-0.80024,0.19765,0.53489,-0.14499,0.29593,-1.1521 -0.16928,-1.743,2.6304,1.096,-1.3126,1.8033,-0.51129,0.38704,0.42478,2.2559,1.1701,-0.87414,-0.45907,0.57273,0.51268 -1.3003,-1.7664,2.0051,-1.9998,-2.6864,-0.24486,-0.36438,-2.0774,-0.76051,0.73098,0.20201,-0.79124,-1.0475,-0.39174,-0.17639 -0.75092,-4.8504,-0.66344,0.17143,-0.92432,-1.3447,-1.7496,1.5809,-1.1491,0.62396,-0.15134,-0.079049,-0.4273,-0.28819,-0.77962 -1.421,-0.20874,-2.9475,1.3025,-0.70941,-0.46697,0.6349,-0.19574,0.098242,1.3185,0.051002,-0.2311,0.59718,1.0526,-0.62455 0.47767,-2.2149,-2.882,1.9434,-0.36337,0.2642,-0.28321,1.104,-1.7836,-0.30201,-0.47098,0.18784,-0.17908,-1.3329,0.057206 -0.10282,-2.4044,-2.4239,-0.041686,-1.9815,-0.14478,-1.6912,1.2893,-0.28671,0.1511,-0.65033,0.87476,-0.70499,-0.31685,0.1589 -2.842,1.7088,-1.3745,0.2691,-0.38929,0.35376,1.0846,1.8903,0.61769,1.0824,-0.21603,0.053727,0.16137,-0.0021682,0.65253 -2.3933,-0.43515,-0.74828,0.34231,-0.90896,-1.4126,1.1481,0.83228,1.0776,-0.12968,1.3239,-0.14277,0.29814,0.36554,-0.34921 0.68236,2.7554,1.5749,-0.43371,-1.7915,-2.4185,-0.80018,-0.86868,-1.5904,-0.80077,-0.31334,-0.26804,0.28138,0.8196,0.2271 2.2111,0.17926,-2.5946,0.85204,-1.0065,0.077375,0.4923,-1.2193,0.74686,0.79034,0.90962,-1.002,0.39691,0.58759,1.9168 -0.098607,-0.8069,-2.6167,0.73524,-1.5454,-2.166,-0.24602,0.685,-0.35315,0.08035,-0.21555,1.5741,0.10578,-0.14059,0.019279 -0.9859,0.25265,0.15894,1.6714,0.64077,-2.4005,1.8109,2.2368,-0.42529,-1.1039,-0.30128,-1.043,-0.48243,0.60266,0.11965 -0.43371,-0.35539,0.92315,2.8635,2.161,-1.6774,2.0041,1.5959,-0.40824,-0.74866,0.0039647,-0.082147,0.8317,-0.00164,-0.059337 -1.5577,0.10692,-1.7486,0.8586,0.10069,0.6924,1.6108,0.46106,-0.070899,-0.88948,-0.025952,-1.9283,-0.99376,-0.53953,0.34939 -1.9233,-0.8137,-2.8186,-0.63088,1.7786,-2.1615,0.018839,1.5101,-1.3237,0.6605,-1.9217,-0.3287,0.37234,1.3817,0.45537 -1.6072,-1.5791,-2.7393,0.64665,-0.093126,-2.5885,1.0281,0.28923,-0.92091,-0.063622,-0.55587,-0.32212,0.10999,0.76692,-1.0595 0.63826,0.26935,0.93824,-0.18717,-3.7751,1.0875,-0.0092814,0.51255,0.49061,-0.72537,-0.67501,-0.21561,-1.3874,-1.0564,0.88543 -1.2652,-1.9359,-1.5051,0.79089,1.0969,-0.87758,2.1516,-0.64824,-0.84554,-2.2069,-0.18826,-1.9598,0.26306,0.53416,-0.2016 2.0099,2.2856,-0.62101,0.56914,0.83851,-1.2559,-0.71479,0.66066,-1.7377,1.4906,0.33459,-1.1036,0.79256,1.2832,0.19849 0.058374,2.0968,-1.2594,2.381,1.3862,-1.0056,0.61773,1.6511,-0.27102,-1.065,-2.0036,-0.94084,-0.54794,0.89832,-0.34231 1.1528,-3.2255,1.6015,1.0867,-0.525,3.1758,0.36829,-0.99581,-1.5087,1.7822,-0.083462,-1.4314,0.32816,0.019892,0.10181 -2.0166,-0.62905,-3.1579,-0.89186,-0.35232,-2.2967,-0.51901,-0.058006,-0.83984,-1.2047,-0.97727,0.66306,-0.090024,0.128,0.71118 0.63312,1.9421,-0.35811,1.8858,-1.3701,-0.97478,-1.0147,-0.72011,0.020304,0.34306,0.025756,0.56855,0.53959,0.61501,-0.063134 1.6154,2.2336,-2.6123,-0.8617,-1.4081,-0.0099815,-0.16101,-0.016396,0.80339,-0.49778,-0.9947,-1.4402,0.95042,-0.15578,-0.5676 -0.85983,0.064343,-1.9461,0.87715,-1.8624,-0.9142,1.3987,0.22202,0.38299,0.28946,0.12994,-0.35083,0.11219,-0.41431,-0.6629 -2.0662,-1.9257,-1.7324,0.23526,0.92949,-2.4803,0.82198,-0.26351,0.6855,-0.60097,-0.92405,-1.0453,-0.59429,0.2483,-0.54737 -1.1466,-1.4278,-3.0001,0.84412,-0.10544,-2.0773,0.65532,-0.33319,-0.58471,-0.47931,-0.82057,-0.098864,-0.39701,0.36892,-0.44077 -0.53128,0.026692,0.13773,2.4887,0.27856,-1.351,1.8276,1.3799,0.19215,-1.862,-0.16027,-0.9065,-0.67396,0.46713,0.5101 0.11338,1.7708,-1.0236,2.8007,-0.72447,-0.41092,0.22853,-0.77006,-0.38187,0.68982,-1.1146,-0.25428,0.42171,0.7632,0.92577 -1.5623,-0.49132,-3.205,0.2045,-0.25294,-1.9608,0.88713,-0.31917,-0.47244,0.34854,-1.2773,-0.24188,-0.17274,0.50643,-0.56994 0.20229,2.7869,-1.4767,0.81471,-0.23462,-0.59338,-1.1862,0.1478,0.089515,1.2301,-0.56348,-1.1624,0.25492,0.94578,-0.085034 1.7702,1.7183,-1.9232,1.447,0.036585,-0.71429,-0.25963,-1.0058,0.68543,1.0653,-0.64991,-2.098,0.40622,0.64411,0.62835 4.038,-0.93157,-1.8721,-3.6837,-1.6541,0.89958,-0.016822,0.60386,-0.54746,-1.6311,1.3998,-0.54462,-0.028158,0.31303,0.8081 2.813,0.94931,-2.726,-2.4642,0.079481,-0.65559,1.2486,1.6449,-0.40062,-1.4176,0.86578,-0.14693,1.7993,0.34235,-0.94586 0.45999,2.0218,-1.6782,0.28493,-0.20628,-0.91186,-1.5174,0.46502,-0.026418,0.21687,1.7496,-0.56437,0.38218,1.8641,-0.92512 -0.19949,-1.2137,2.0025,2.3975,-0.090399,0.68154,-0.27844,0.89494,-0.0026767,0.14414,2.7817,0.17333,-1.6262,0.56488,0.17306 -0.37162,1.6336,-2.1825,2.0352,-0.35119,0.2582,-0.19571,1.0996,-0.096438,1.099,-0.58231,-0.8015,0.13051,0.97647,0.014699 0.68523,1.7341,-1.9425,1.4351,-0.47515,-0.70861,-0.2699,-0.36418,0.62537,1.3716,-0.92008,-1.5803,0.26995,0.7611,0.59784 -1.7675,-0.4071,-1.7811,0.96315,-0.59846,-1.7268,1.695,0.53582,0.77142,-0.061289,0.061268,-1.2255,-0.62404,0.049414,-0.4973 2.754,-0.57642,-1.5933,1.3005,-0.15011,0.67652,-0.20685,-2.1154,-0.26144,-1.4938,1.1319,-1.3092,1.8364,0.019771,1.3349 0.17616,1.871,-1.7862,1.8837,-0.70076,0.23989,-0.96931,0.24636,-0.056471,1.2321,-0.92082,-0.89819,-0.22926,0.87103,0.034238 1.9855,-0.46436,3.311,0.037584,-1.9797,-0.86971,-0.97938,0.21657,-0.66072,-1.3705,0.91814,0.92074,1.2539,0.047367,0.0085798 3.6913,-1.7754,-2.3162,0.62424,-0.36704,0.52861,0.69989,-0.36288,0.92659,-2.0463,0.35312,-0.30437,0.1014,-0.30455,-0.75891 2.4536,0.34766,-1.2182,1.7696,0.43308,-0.61063,0.56853,-2.1127,0.16266,-0.1187,-0.18175,-2.0094,1.4028,0.31968,1.0127 -0.83598,1.7089,-1.4328,1.78,-0.83093,0.37217,-0.94354,1.2075,0.22442,1.2928,-0.40333,0.027754,-0.27153,1.0001,-0.43455 1.3954,-1.2748,2.3649,3.0593,-0.37712,1.8504,-1.5336,-0.099109,-0.71104,-0.47311,0.81625,0.34171,-0.11799,-0.99746,0.75334 1.8313,-0.46019,-0.39057,0.81373,-0.40081,-1.069,-2.1978,-0.17052,1.3462,-0.75349,2.1299,-0.03841,0.88108,-0.060864,-1.1628 -0.70142,1.9595,-1.3911,2.2969,1.7231,-0.38859,-0.40709,-0.10697,-1.0777,-1.1009,-0.41768,0.38343,-0.90659,1.0844,-0.75538 0.037957,1.7535,-1.7101,2.5309,1.0942,1.1949,-1.0477,-0.13267,-1.4726,0.65069,-0.16957,-0.94935,-0.020331,0.11387,-0.18771 -0.036642,1.7806,-1.7581,2.0973,0.36276,1.2217,-0.47152,0.27039,-1.3577,0.7486,-0.52462,-0.63253,-0.46838,0.84414,0.25066 -0.7808,0.61723,3.0227,2.0293,-0.091416,-1.354,-1.0366,-0.13035,0.23367,-1.0434,0.99991,1.0215,-1.007,-0.060133,-0.15615 0.80126,3.0975,0.52057,-0.80093,-2.6065,-1.2903,-0.7896,-0.46712,-1.4377,-1.3227,-0.60017,-0.28725,0.1879,0.31633,0.67136 1.1869,1.4536,-1.5729,1.9474,-0.26725,0.18274,-0.49656,0.034858,0.22037,1.3461,-1.5702,-1.6124,0.16791,0.1496,0.32709 -0.17466,1.0098,-1.8224,2.4211,-0.46772,1.2843,0.85137,0.1063,-0.70185,0.74782,-1.7173,-0.78773,0.26474,0.21947,1.1171 -0.045782,-0.11585,1.3246,3.5724,-0.83565,-0.86621,-0.1631,-0.26977,0.097287,-2.0602,0.72555,0.79366,0.19059,-0.22113,-0.25162 0.90557,0.43956,-0.95067,2.1835,1.1435,-1.1,-1.1261,-1.0906,-1.8079,-1.6657,1.683,-0.73671,-0.43253,1.1713,-0.13817 2.0715,0.16542,-0.356,0.27391,-3.0327,0.9527,-1.1907,0.67354,0.99631,-0.96427,-0.94491,-0.21373,-0.50878,-0.0043045,0.28126 5.7594,-2.914,0.066355,-0.6613,-0.99928,0.25389,-0.38206,2.1443,-0.062158,0.014943,-0.98086,-0.49194,-0.25281,-0.0082129,-0.94261 -0.17219,3.2045,-1.256,0.56269,-0.32547,-0.5984,-1.0397,1.6561,0.077368,0.85951,-1.7771,-0.49708,-0.21954,0.34742,-0.34357 0.68894,0.12454,-0.90986,1.8129,1.7744,-0.74542,-0.98916,-0.17515,-1.6932,-2.366,1.8921,-0.36867,-0.86133,0.5412,-0.77125 -2.4214,2.3469,-0.32427,1.0954,-0.84565,-0.96309,1.1946,1.0204,-0.2846,-0.29377,-0.27529,1.3911,-0.49409,0.61391,0.13968 3.0166,-2.2988,-0.085479,1.794,-0.27565,2.5553,-1.4709,0.39599,-3.4079,0.58339,-0.26452,-1.156,1.6498,1.0549,1.6554 1.2926,1.3407,-2.8601,1.2297,-0.37274,0.65288,-0.60152,-1.4198,-0.1428,-0.20514,0.37272,-1.7134,0.46321,0.87977,0.75032 3.9144,-0.40374,0.32831,0.097398,-0.43435,-0.14514,-0.99039,-2.1501,-0.24815,-0.32652,1.6998,-1.6089,-0.80272,1.0258,0.95028 2.9656,-0.73972,-0.096688,2.0223,1.1575,-0.53022,-0.74048,-2.1408,-1.7773,-1.6021,1.5655,-0.80602,0.83358,1.4786,1.3437 4.9518,-1.6109,0.76974,-1.1157,1.9649,-3.0328,1.3295,-0.5488,-1.0725,-0.21877,0.71458,0.00028298,0.48254,0.90456,0.9257 4.3346,0.15011,0.2619,0.59924,1.0342,-1.4177,0.33324,-2.0222,-0.81524,0.43882,0.1122,-1.4072,-0.46809,0.34957,1.3056 -0.30534,-1.2137,1.4995,2.9097,0.52495,0.1485,-0.26779,0.50763,-2.1037,-1.6342,2.1328,0.64616,-2.2371,0.16013,-0.10522 4.7051,-2.3136,0.11215,0.83366,-0.73865,1.851,-1.2604,1.3148,-0.62051,0.86795,-1.0306,-0.26345,1.1084,0.18484,-1.1027 0.33304,0.53124,1.218,0.6756,-1.5229,-0.28469,-2.0171,1.4571,-0.024907,-0.83487,2.1793,0.73004,-0.82404,1.065,-0.2813 -0.43005,-0.087939,1.1031,3.0439,0.87919,-1.6348,1.2672,0.042467,-2.3222,-0.085315,1.3034,0.84728,-0.2233,1.6465,0.046965 1.4572,0.10817,-1.5227,1.8952,-0.56323,0.086604,-0.6604,-0.65873,0.69303,-0.25517,0.77578,0.24265,1.3279,1.1177,-0.18343 -0.84215,-2.5305,0.95545,2.6414,-0.079779,-0.23997,1.3048,-1.6269,-1.4177,-0.72166,2.4082,-0.52,0.13386,-0.38152,0.024659 3.3182,-1.2282,0.18454,2.0628,0.326,-0.67843,-0.86375,-1.8505,-1.6664,-2.0138,1.0348,-0.84403,1.1241,1.1822,1.1681 3.1592,-1.159,1.4683,0.51871,0.51832,-0.73403,-1.7093,0.19605,0.39104,0.51157,1.4966,1.173,1.4022,-0.36098,-1.6241 -1.9388,-1.4208,1.0066,-1.0739,-0.36669,-1.5882,-0.15313,-3.0736,-1.5246,0.93104,0.54879,0.15406,-0.35925,0.3989,-0.43055 2.848,-0.013926,-0.35151,1.4271,-1.23,-1.3438,0.34043,0.0041336,1.7064,-2.3294,-0.84297,0.22161,-0.49007,0.63565,-1.813 0.2776,0.66839,-0.88088,1.8632,-2.7727,-0.404,0.80625,-0.58426,1.0439,-0.40645,-0.88893,0.051876,-0.77869,-0.013152,1.0531 3.7505,-2.6798,0.94637,1.1349,-1.0835,3.2633,0.36507,0.93882,-2.4216,-1.6185,-2.2535,-1.5735,-0.099342,-0.30335,0.61513 0.44413,-2.7727,1.3384,0.43043,-2.3325,1.1019,-0.083029,-0.74353,0.57512,2.0294,-0.72575,-1.4553,-0.65698,-1.0038,-0.26277 0.51015,-0.73575,1.8565,-2.1489,-2.6774,2.7,0.50131,1.3555,-1.9181,0.6738,-0.14681,-2.2273,0.91236,0.39002,0.20601 4.6844,-2.9915,-1.6378,-1.0266,-0.78304,-1.232,0.82421,1.0171,1.9218,-1.1807,1.06,0.60486,-0.74444,0.95653,-0.42779 3.8502,-2.5393,3.0945,0.10302,-1.5511,-0.3645,-0.26347,1.473,-2.3749,-0.24845,-0.57609,-0.17546,-0.063807,-0.50446,0.0089061 0.70595,-3.5922,0.21239,1.0787,-1.7006,1.0098,1.581,-1.6373,-0.71679,-0.32978,-1.3295,-0.80591,-1.3606,-2.1377,-1.2969 -2.5376,-3.0376,-0.85904,0.87346,0.73792,-0.14126,-0.95708,-0.88191,0.46987,0.2431,0.9468,-0.15915,-1.9672,-0.62117,-1.3649 2.2609,-0.61225,-0.8011,0.15186,-2.5175,1.5412,-1.7447,1.0347,0.5078,0.47442,-0.59849,0.01997,1.4708,0.11617,-0.12846 -2.484,-0.27297,-1.4639,1.4564,-0.32487,-0.9835,1.195,-1.3366,-0.27181,1.7327,0.65947,0.19578,0.036886,1.0186,-0.83742 -1.291,-3.4412,1.2424,1.4971,-1.1413,-0.14983,-0.50273,-0.24723,0.33846,0.99343,0.66761,-1.0044,0.17897,-1.6004,-0.65836 3.0202,1.3917,-0.27182,-1.1889,-0.11044,-2.3363,-0.72414,-1.4921,0.3697,1.2286,1.308,-1.2706,0.14859,-0.019566,1.3116 -1.2282,-1.9799,-1.0707,0.72155,-1.0042,-0.1252,0.24808,-2.95,-2.1623,-0.23143,-0.68713,0.25127,1.4852,-1.1321,-0.38875 -0.16451,0.39159,-0.40758,2.6611,-0.051697,0.050503,0.55262,-1.4664,-1.7349,0.10649,0.55547,0.52936,0.40795,0.68335,0.4496 3.4472,-2.3064,-2.3455,0.25557,-0.4805,-0.068763,1.4746,-0.32064,1.6684,-1.3092,1.3935,-0.070191,-0.29126,0.036304,0.8453 -0.8028,-3.9327,-1.2931,0.38528,-0.45342,0.52571,-1.6867,-1.9136,-2.0164,-0.17458,-1.7884,0.84122,0.42296,-1.8764,0.76208 -0.37547,1.6205,2.8167,-0.87182,-2.7284,-1.4851,1.0132,-0.80157,-0.85036,-1.0093,-0.37431,0.040716,-0.78203,0.40481,1.0832 1.0429,-1.8325,0.36758,2.8933,1.2897,0.26105,-1.236,0.33715,0.39993,-2.4201,0.78273,-0.078615,0.32575,-0.68498,-0.33655 3.5211,-1.4609,0.80106,-1.6194,-0.65132,-1.368,-1.348,0.19662,-0.12951,-0.80912,1.7472,0.98267,2.8292,-0.1547,-0.81185 -0.099266,-3.8035,-1.7739,-0.88538,-1.2044,-2.1379,0.16237,-0.61841,-0.13464,0.12484,-1.9092,1.0339,-1.547,-1.0307,-1.7826 3.0247,2.1414,-1.7342,-0.58489,0.43395,-1.0531,0.28832,0.65475,1.4157,0.7558,-1.8195,-1.7212,-0.011679,-0.013033,-1.3914 2.6376,2.7787,-1.1668,-0.52819,0.12354,-1.7201,0.083924,0.024139,0.77122,0.82739,-2.1499,-2.0307,0.15001,0.21681,-0.409 -0.84317,2.2106,-1.5336,1.7406,-1.0686,0.89376,-0.95877,1.3779,0.18772,-1.0134,0.52587,-0.19967,-0.81449,0.37859,-1.2121 2.6449,2.7203,-0.88502,-0.4093,-0.010566,-1.15,-0.30791,0.10727,0.86683,0.66929,-2.3842,-1.7168,0.49437,-0.34248,-0.92541 -0.51053,2.9362,0.25798,2.2597,0.58342,-0.4919,-0.58255,0.57472,-0.73369,1.2946,-1.0286,-0.43115,0.035665,0.44095,0.25598 -0.54942,2.1706,0.62625,1.5388,-0.5067,0.075579,0.95417,0.86604,-0.86895,2.0189,-1.909,-0.65154,-0.21338,0.34807,1.3262 -0.99691,3.0231,-0.16586,-0.15177,-1.7021,0.87643,1.1546,0.68406,-1.2622,1.017,-1.9718,-0.26004,0.08151,0.1924,1.1941 3.0781,1.387,-1.0086,0.74201,-0.59825,-1.3763,0.18114,-0.9873,1.2722,-1.1655,-1.6386,-1.1616,0.61161,0.55519,-1.1397 2.0545,-0.98341,-2.8804,-1.311,-1.8932,1.2672,0.46753,1.5625,0.055801,-0.039629,0.95339,0.061194,1.3139,-0.077759,1.4826 3.9224,-1.0246,1.038,1.6899,-0.99921,0.85444,-0.75884,-1.2022,-0.4672,-1.7738,-0.47388,0.15317,0.33441,-0.46473,-0.4899 1.0657,-2.0691,-1.808,1.7043,-0.047474,0.61911,-0.19074,1.149,0.13432,1.0937,2.5707,1.7393,-0.42669,1.0733,0.68704 3.1214,-2.9275,-2.8656,-0.24701,-1.2351,0.90806,1.2625,2.069,1.4732,1.0146,-0.14826,1.4917,-0.70866,-0.19497,0.29378 -0.74883,1.2795,0.73375,2.46,-1.5703,-1.0995,0.75805,-0.82841,0.22758,-0.23841,-0.21626,0.32807,0.84929,0.37463,1.2592 -1.9096,1.7245,-0.67838,0.61998,-1.6828,0.077654,0.84438,0.63163,-0.11357,0.43517,0.35118,1.2266,-0.05201,0.96143,0.23297 1.2733,2.5322,-0.79707,1.7388,1.0575,-0.68271,-1.1201,-0.50204,-0.47245,0.74967,0.063363,-1.4065,0.28624,0.89316,0.036598 1.6651,2.5381,0.18061,-1.0758,-2.0743,-1.025,-2.3413,-0.6248,-1.0532,-0.75747,0.89509,-0.74716,0.49689,-0.0054165,0.26616 0.1571,1.1629,-0.42229,2.5596,-0.21127,-0.66404,-0.066492,-1.1582,-0.9374,-1.5626,0.45953,-0.13549,1.174,0.69802,0.61281 2.5243,0.077026,0.8502,2.1884,-0.083562,-1.2536,0.62585,-1.7356,-0.32835,-0.98516,-2.1037,-0.69939,-0.25227,0.20234,0.91688 -1.1341,1.0828,1.7155,3.1368,0.70915,-0.83584,0.4927,-0.62453,-0.31408,0.032234,0.65947,0.8113,-0.57476,0.4589,0.76229 0.54074,1.8008,-0.0094108,2.1461,-0.92805,-0.99077,1.0309,-0.82919,-0.03061,0.38076,-2.0248,-0.31595,1.2784,0.58862,0.66962 -1.9829,2.7063,1.1177,0.72988,0.16082,-0.82018,-0.17873,1.9933,-0.54016,0.082368,0.75187,0.52214,-0.76459,0.8719,-0.66953 -2.1219,1.236,0.40693,0.91067,0.78285,-0.49135,0.884,2.8987,-0.51459,0.43428,-0.090093,-0.70671,-2.4151,0.0047263,-0.56088 -2.9244,1.8258,1.1164,-0.24076,0.43154,-0.30428,0.81685,2.1288,-1.4795,1.105,0.81102,0.012385,-1.0748,1.0383,-0.064029 -1.4541,2.2186,0.80234,0.88676,1.384,-0.33707,0.56627,2.9805,-0.65075,0.14574,-0.14645,-0.5449,-2.0049,0.64708,-1.0692 -3.6332,2.3792,0.51008,-0.46023,0.23016,0.16271,0.99082,1.053,-1.8633,1.2321,1.0552,0.41188,-0.52175,0.062591,0.019263 -2.7685,1.1724,0.10855,-0.53116,0.23487,0.30127,0.55524,2.2941,-1.1962,0.12132,0.06508,-0.6398,-1.6726,0.45156,-1.0803 -3.034,2.5134,0.34503,0.11265,1.0749,-0.65223,0.76156,1.9581,-1.5222,0.073988,-0.33152,-0.3749,-1.7306,0.86009,-1.3432 2.5665,-3.3343,-2.8367,0.66893,-1.0563,1.304,0.89079,1.0228,1.0127,0.18864,0.17352,1.3277,-0.57246,-0.75092,0.56564 2.1596,0.12555,-1.6629,0.074501,-1.9103,-0.16132,-1.5136,-0.01955,2.3209,-1.6399,0.25559,-0.12259,0.077072,0.41477,-0.72076 -4.1479,-1.958,-1.6212,-1.6482,-0.25922,-0.85933,-1.304,-0.66476,-1.0449,-1.6529,0.57972,-0.23838,-0.22213,-0.77661,-0.21693 -1.0717,1.1531,1.647,1.218,1.0103,-0.49193,-0.56532,1.8285,-0.83735,-0.39468,2.0184,0.23485,-2.6199,0.64498,-1.3246 -2.2691,2.3153,1.0075,0.32151,0.21271,-0.18898,0.068786,2.4218,-1.3885,0.31802,0.90277,0.14098,-1.8588,0.30448,-0.85891 1.3992,0.50444,-2.0583,0.75425,-0.20011,1.3222,-1.12,0.075154,-0.63393,1.6565,3.259,-0.40811,-0.2142,1.6006,0.23636 -1.6806,-1.571,1.509,1.7768,1.6869,-1.5767,1.9693,0.81429,-0.52605,-1.2088,1.3069,-1.3481,-0.041946,-0.58427,0.64038 -0.9665,-1.4106,1.5073,2.047,2.4287,-2.2783,2.2096,1.582,-1.9569,-1.5717,0.87213,-0.88265,0.33,-0.83158,0.96149 2.0881,1.5037,-1.0712,1.8587,0.71613,-0.64444,-0.049739,-1.4662,-1.9636,-0.44545,-0.74913,-1.7667,0.9286,0.54687,0.9036 -1.8236,-3.3859,-0.21111,-0.24491,3.3629,-3.5239,0.97583,0.75583,-1.7681,-0.7075,-0.49629,-0.26884,0.10671,-0.33187,-0.60822 1.6451,2.0601,-1.4028,-0.63987,-0.01901,-1.8088,-0.58117,0.20257,0.76613,1.0885,-0.47441,-1.3568,-0.059295,-0.61864,0.22362 -1.8737,-0.60604,-1.2277,1.2215,2.0842,0.34299,1.4928,2.6135,0.13606,1.6522,0.39226,-1.0147,-0.28459,0.022286,-0.60773 2.2376,-0.79311,-1.4824,-3.1115,-2.3703,-0.15495,0.4562,1.045,-0.13231,0.0064948,0.71158,0.97535,0.7619,-0.81683,1.6142 -2.2837,0.95666,0.35123,0.27757,0.080602,-0.10681,0.44392,3.6829,0.29948,0.92608,0.35667,-0.036564,-0.97349,0.053168,0.34113 0.0041035,0.86474,-0.20757,2.8779,-1.4363,-0.99127,-0.15042,-0.66563,0.75986,0.47915,0.22531,0.82324,0.22893,0.6687,0.39115 -1.0576,0.77324,-0.39415,2.0741,-1.9745,0.0022147,0.57291,-0.84795,-0.32573,0.14188,0.78788,0.8826,-0.82725,0.21632,0.63228 -1.6722,0.36621,2.4335,0.91857,0.27675,-1.4331,0.71466,-0.12753,-1.0349,-0.38656,1.387,0.19048,-1.2784,1.5944,0.18338 -1.4796,-0.020511,-0.51597,2.3272,2.7692,-0.40976,2.7522,1.6595,-1.2499,0.20351,0.010442,-1.2473,-0.058301,-0.36593,0.28173 -1.1686,0.6656,-0.1895,2.4212,1.8109,-1.3045,2.1739,3.1145,-0.407,0.40248,-0.91991,-0.48573,-0.69084,0.98235,0.084678 0.33741,1.6356,0.12325,1.1348,-1.9061,-1.7897,1.2926,-0.88221,-1.0433,-0.21875,-0.931,-0.80202,-0.92262,0.82922,0.94797 -0.44364,0.25939,1.2472,2.7886,2.3976,-0.89335,1.7888,2.445,-0.41578,0.63188,-0.82143,0.17142,0.8137,0.6577,-0.32386 -1.4734,-1.5511,-1.9968,1.7694,0.82288,0.29748,-0.25586,-0.89466,-0.19645,-0.25727,0.7912,0.27369,-0.53642,-0.63369,-0.22846 -0.22501,0.86841,1.0202,2.9609,2.576,-0.40799,2.0128,1.2462,-0.65272,0.29032,-0.85679,0.62025,1.1094,0.25624,-0.33971 -1.66,-0.79524,0.35559,2.4079,3.2181,-1.3003,3.0217,1.5281,-1.7165,-0.62024,-0.10071,0.087239,0.73823,-0.2812,0.53273 2.7376,-0.56009,1.348,1.3526,-0.79665,-0.58841,-1.33,-1.9991,-1.0856,-1.2937,-0.18763,-1.0255,-1.2593,0.14318,1.2783 -2.3525,-0.58966,1.2777,0.90115,1.9783,-2.0151,2.4199,1.8172,0.092801,-0.34495,0.99399,-0.00068855,0.16824,0.37595,-0.27363 3.0833,-2.4058,-0.89952,0.34228,-0.13622,-1.3952,0.44223,-0.061717,1.4728,-0.42993,2.0643,1.0397,2.2253,0.062239,0.097874 -2.1131,-0.88051,0.56543,0.579,1.6463,-0.66815,1.5976,0.69675,0.61784,2.449,-0.11131,-0.22551,1.0055,0.43077,-1.0449 1.7098,-4.9975,1.9779,-1.0184,-0.86397,-0.10671,0.4852,0.14038,-1.8582,2.0341,-1.2179,0.58056,-0.39735,-0.81358,-1.6663 2.4881,1.3704,2.4935,-0.48053,-0.95041,-2.2322,-0.45453,0.36999,-1.0212,-0.83111,-0.65751,0.74679,0.98186,0.83809,-0.040766 1.3703,-4.4665,0.40575,-0.17081,1.0614,-1.3762,-0.33572,-1.0339,-2.9545,1.1047,-1.1652,2.3288,0.48947,-1.8694,-1.0406 3.1099,-1.4758,-3.2891,0.66866,0.095198,0.56848,2.7038,-0.18862,1.1113,-1.1209,0.43911,0.42965,0.41091,-0.046472,0.73841 1.703,-5.023,0.55542,-0.51318,0.7834,-1.2577,-0.42982,-0.98395,-3.2003,0.99661,-1.4976,2.0954,0.48776,-1.5488,-0.81941 1.7605,2.111,-0.014714,-0.80304,-1.8117,-1.7987,-0.55811,0.59916,-0.72503,1.1003,-0.919,-1.3567,-0.21359,0.4912,0.74255 0.29865,-3.5961,-0.11382,0.72348,0.96117,-2.7232,-0.22853,-1.2117,-2.2579,1.2162,-0.62208,1.7306,1.4842,-1.1955,-0.85961 1.9677,-1.0276,-1.081,0.92731,-2.6015,1.3311,-0.66218,1.9807,1.4939,-1.2153,-0.33821,0.34449,-0.47178,0.6825,-0.38775 1.5147,-3.4444,-1.1104,-0.20901,-0.2944,-2.3534,1.8659,-1.5327,-1.8172,0.44462,-2.1608,1.3159,0.015872,-0.59973,-1.8522 -0.94112,-2.4637,-0.23974,-1.285,0.98497,-3.1737,-0.41275,-0.32402,-2.3788,1.2007,-0.72697,1.9333,1.6312,0.79119,0.054376 -0.49485,-3.0841,0.10131,-0.20927,1.002,-2.0865,-0.84779,-0.6411,-1.9857,1.7239,-0.44982,2.7393,0.95127,-0.84274,-0.71598 -0.27099,-1.7148,-1.5511,1.0093,1.8735,-2.7956,-0.22775,1.282,-2.1137,0.75027,-0.54853,0.86246,1.6991,0.51888,1.1788 -1.0175,-2.6532,-1.633,1.4684,1.4108,-3.2698,1.0016,0.6056,-2.0995,0.57861,-0.033732,0.6721,1.2709,0.76454,-0.51384 -0.897,-0.64454,3.0904,-2.158,-1.448,-2.1245,1.5984,-0.24595,-1.3798,-1.0159,-1.3661,-0.97529,-1.1953,0.5216,0.91691 1.4607,-0.071565,-0.67814,1.624,-2.001,1.2527,-2.0673,-0.60076,-0.1993,-0.89749,0.13344,-1.0979,-0.49295,0.45747,1.0733 3.3107,-3.0436,-2.3024,-2.044,-1.935,-0.36153,0.82972,2.4971,1.7418,-0.35814,1.5088,2.1677,0.29419,0.10639,-0.25834 0.14137,-2.9776,-0.54498,0.97576,0.90982,-2.5278,-0.62798,-1.8365,-2.108,0.90818,-0.59284,1.8837,0.9835,-0.55237,0.31724 -0.3144,-0.37568,-0.85559,2.9908,-0.93603,0.80807,-0.78198,-0.68054,-0.30543,-2.1003,0.96663,0.33477,0.35823,-0.66461,0.58515 -0.70576,-3.907,-1.1215,1.6702,0.38609,-2.5171,0.070935,-0.91699,-1.9732,0.40085,-0.18336,0.98012,1.0934,-0.56524,-1.04 -0.57305,-0.1571,0.28637,1.9814,-2.4272,-0.098128,0.70703,-1.263,0.45299,0.62754,0.59508,0.40358,-0.9946,-0.65659,0.72762 1.7703,-1.2798,-0.92792,0.55677,1.48,-1.5961,1.6582,-0.48048,-3.0672,0.54613,-1.6846,1.3666,2.5676,-0.49079,0.37647 2.4628,0.76853,-1.1701,-1.9799,-0.43079,-0.25514,-0.81501,-0.99733,-1.2139,-1.1389,2.671,-0.097223,2.3136,-1.0937,0.34987 4.4123,-3.8342,-2.5215,-0.18055,-0.42826,0.26911,1.4492,0.8759,1.2935,-1.1124,1.2139,0.7683,-0.95482,-0.4073,0.010191 -0.33516,-4.2461,-0.85108,1.9759,0.16081,-2.3936,1.1626,-0.91507,-2.213,-0.42628,0.23891,0.1834,0.62795,-0.49933,-1.3093 -0.81468,-2.7886,3.2589,0.097157,0.95904,0.97325,-0.45437,3.7971,0.070434,1.0376,0.42372,-1.6158,-0.10878,0.042911,-0.62671 1.5456,-1.5183,0.094255,2.9574,0.49342,1.5415,-2.4258,1.0938,-1.6518,-1.7677,1.5599,-0.12646,-1.1031,0.84268,-0.11197 -3.1416,0.4121,-1.2045,-0.70113,-1.0435,0.95776,0.5516,-0.0096949,-1.2401,0.8425,1.4681,0.25175,-0.0087205,-0.039703,-1.3617 -0.23351,1.8158,-2.135,1.7543,-0.96833,-0.36927,-0.40728,0.3346,0.44147,-0.10478,-0.076762,-0.32581,0.66924,1.117,-0.28636 1.5629,-1.2629,-1.6033,2.0806,1.1127,-1.2122,-0.85318,0.37336,1.6126,-1.2764,1.5305,-0.64836,-0.1576,-0.00079674,-0.85829 2.7454,0.71829,-1.9724,0.6923,-0.10807,0.12853,0.63243,-1.8665,0.21056,-0.36159,-0.30448,-2.3324,0.7356,0.11843,1.0999 1.7051,-0.26439,-1.1982,1.6663,0.79795,-1.6637,-0.76569,-0.31284,1.6645,-0.36792,1.0627,-0.47344,1.5551,0.29371,-0.94768 1.8478,-2.4314,-0.68346,1.3675,0.393,-0.73494,-0.52486,0.19843,0.80087,-0.10517,2.8715,0.32221,1.1728,0.37573,0.35221 1.4934,-0.68241,-0.080725,1.5589,1.4405,-1.5238,-1.8421,0.072883,0.92099,-0.94676,2.4087,-0.052058,0.15175,0.84233,-1.1784 0.89174,1.4434,-1.0026,2.0014,1.4028,-1.5051,-1.0061,0.93349,0.49531,0.46754,0.81105,-0.74372,-0.01069,1.2458,-1.2458 -0.08746,1.7557,-1.5991,2.2794,2.0783,-0.94267,-0.35774,1.6141,0.70205,-0.19631,-1.1856,-1.2557,-0.87034,0.51836,-1.223 -2.3986,-0.44671,-2.0224,0.24305,2.5692,-1.0411,0.15126,0.67158,-1.603,0.96586,0.2543,0.11936,-0.72998,1.134,-0.7497 5.0941,-3.9612,-0.81465,0.26991,-0.33822,-0.0081366,2.0287,0.017422,-0.37035,-1.0138,0.36444,-0.024388,0.51879,0.16241,1.1534 0.48876,0.53328,-1.8349,2.1295,0.99566,-1.326,-0.66611,0.88442,1.1753,-0.85223,0.47912,-1.3398,-0.42065,0.87839,-0.80275 -0.29464,1.7573,-0.79571,2.654,0.579,-0.67038,-0.36919,0.88909,0.25945,-0.67732,0.13429,-0.20729,-0.9779,1.2307,-0.47732 -1.3517,1.6019,-0.85651,1.5933,-0.99052,-0.90097,0.60889,2.3936,0.38345,0.11821,-0.22076,-0.54356,-0.38082,1.0476,0.51255 0.95223,0.94948,-1.9803,1.9899,1.3621,-1.3028,-0.55298,1.1416,0.55859,-0.63342,0.41339,-1.8883,-0.44515,0.75367,-0.51199 1.4801,0.66729,-0.34101,-0.33948,1.6024,-1.5027,1.0061,0.89435,0.52537,-0.71896,-1.4251,0.19113,-1.0289,-1.5284,-1.5027 0.32914,2.513,1.7874,1.1619,-1.409,-2.2883,-0.30727,-0.58797,-0.31249,-0.031785,-0.73294,0.47222,0.14453,0.87639,0.60688 1.4301,-1.9667,4.7303,-0.29419,-0.23791,0.55626,-0.5279,0.31153,-1.3206,0.72199,-0.29554,0.090873,-2.3271,-0.64725,-0.38149 0.82859,1.7727,-0.36911,1.9553,-0.034562,-1.7042,-0.73056,-0.029309,0.081321,0.74087,0.080166,-0.41415,1.1626,1.5114,-0.40785 -0.21698,-3.2072,-1.0953,2.1851,-0.78757,0.39849,-0.31437,-1.5812,-0.57558,-0.56148,-0.10393,-0.93633,0.45595,-1.8355,-0.20006 -0.54044,1.213,-0.71611,2.0865,0.6865,0.045533,-0.74335,-0.91464,-1.7326,-1.1351,0.61562,-0.20546,-0.74869,0.6136,-0.32141 0.028558,-3.2589,-0.67607,1.6185,0.20274,0.04149,-1.6774,-2.1614,-0.64307,0.95782,-0.73885,0.81057,-0.11329,-1.8332,0.53816 -0.52326,-3.4947,-1.5512,1.9776,0.065064,-0.38982,-1.2129,-1.7964,-0.59161,-0.34858,-0.92675,0.61978,0.16928,-1.9357,0.069483 1.2231,-0.92198,0.91275,2.4181,-1.4863,1.9933,-1.2743,-0.36337,-0.20657,0.12737,0.41942,-0.55848,-0.34179,0.10885,1.5456 -2.048,-2.5715,-0.11571,1.951,0.34771,-1.2243,1.1787,-0.11696,-0.42033,-0.30656,1.2915,-0.027782,-0.80363,-0.89469,-1.114 -1.9839,-1.4884,-2.8041,1.2993,-0.90671,-1.8413,-0.17491,-0.70544,0.36339,0.34547,0.13575,0.57038,-0.20752,0.053732,-1.0537 -1.642,-2.2892,-1.3127,2.0939,-0.94982,-1.0846,0.17571,0.13193,0.98285,-0.45129,1.0154,-0.82985,-1.4476,-0.88031,-0.74168 2.4333,0.94835,-0.19793,-0.0389,-1.2709,-2.2604,-1.5712,-1.2853,1.18,-0.13085,0.909,-0.84378,0.90713,0.70613,0.15628 -1.2431,-2.5954,-2.6795,1.8699,-0.26032,0.89162,-1.2161,-0.0040877,-1.2938,-1.4375,-0.30544,-0.70984,-0.58365,-1.1554,0.40105 1.7904,-0.15634,0.37471,1.9781,-0.64242,-1.1843,-1.8448,-1.1543,0.56314,-0.21589,0.83068,-0.15979,0.060577,0.88949,0.47642 -1.1125,1.8088,-1.2915,1.8539,1.0715,0.082788,1.9043,0.91287,-0.93964,-1.8549,-1.7164,-0.87308,-0.30978,0.51747,0.7104 -0.68915,-2.0032,-2.3347,2.2485,-1.0731,-0.025849,-0.25351,-1.2815,0.40574,0.12092,0.41991,-0.52008,-0.12081,-0.56671,-0.24183 0.89047,0.7115,0.625,-1.1286,-3.2013,1.1023,0.18958,0.46725,-0.70117,-1.26,-0.12071,0.68515,-1.9208,-0.31923,-0.068532 -0.82733,-2.6657,-1.9241,1.827,0.36115,-0.45346,-1.0793,-1.6109,-0.8676,0.050416,-0.22992,1.0275,0.49431,-1.2356,0.13811 3.4255,-1.169,-1.7538,-0.81993,-0.69911,-1.7898,1.5201,-0.6046,2.1967,0.15859,0.84043,0.44171,-0.38433,-0.022082,1.6715 -1.4012,-0.81763,-2.1198,0.16114,-0.73594,-2.3734,-0.48851,-0.67707,-0.11938,1.3442,-0.31595,1.0732,0.98501,1.3974,0.24298 2.7289,-1.4607,-1.4855,-2.8425,-1.7419,-1.3715,1.6932,1.8627,0.41008,-0.52183,0.39694,1.6545,0.63029,-0.077781,0.66028 -1.1094,-3.66,-1.4241,2.0887,0.39653,0.066549,-0.89778,-0.18271,-0.53846,-0.9821,0.72018,-1.8227,-1.0349,-0.78978,0.2651 -1.2328,2.7748,0.6975,1.6585,0.62719,-1.1458,-0.1849,1.0365,-1.528,1.5589,-0.54969,-0.03703,-0.45776,0.65123,-0.2083 0.8782,-3.2885,-0.62038,0.63193,-1.0641,-0.97348,-1.5404,-1.1128,-0.89941,1.8275,-1.1173,0.31277,-0.35701,-0.61679,0.49028 2.6141,-0.8102,-0.95368,0.70058,-1.8862,-0.60791,-1.3506,1.0979,1.7507,-1.5089,-0.66168,0.66791,-0.12093,-0.43439,-2.6145 0.017117,2.4621,-0.95495,1.0523,-1.3074,-0.70054,-0.14768,0.75147,0.29529,1.5158,-1.9818,-0.64028,0.3089,0.59708,0.23 -0.52668,-3.6058,-0.44475,1.0142,-0.21224,-1.7802,-0.6218,-1.6515,-0.40034,0.84409,0.19139,1.03,0.4472,-0.43073,-0.92411 -1.4211,-1.3742,-1.4629,2.1327,0.79105,-1.4593,1.392,-0.35868,-0.13435,1.0404,1.1457,-0.28142,0.39035,0.54767,-1.2366 1.015,2.2027,-1.6293,0.24231,-0.7577,0.013661,-1.0779,0.059753,0.91739,0.90452,-0.83971,-0.88612,1.957,-0.19617,-0.34158 2.1282,0.54636,0.64575,1.2444,-1.6267,-1.6347,-0.81632,-1.1902,0.54951,-0.86911,-0.64577,-0.56735,-1.6238,0.32089,1.0313 -0.87297,-1.4545,-1.3787,2.0147,-0.082599,-1.26,1.6941,-1.1203,0.053334,0.77894,0.44879,0.067097,1.2322,0.23917,-0.81631 -0.30762,-2.0674,2.5051,-0.70474,-2.1097,1.0104,-0.79903,2.4948,-1.3724,1.856,0.8331,-0.54594,1.5033,0.11148,-0.6675 1.8178,1.0818,-0.45885,0.54871,-0.99441,-1.1462,-1.1948,-1.3566,1.5891,-0.30095,0.068127,0.036402,1.987,0.2211,-0.6199 1.429,-1.179,1.1665,0.56379,1.1603,0.13116,-2.3259,4.3064,-0.048889,0.63236,-0.073981,0.44935,1.3564,0.52265,-0.72236 -1.1342,-2.5169,-2.2653,1.9597,-0.36727,-1.6496,0.4933,-0.65261,-0.83718,-0.83498,0.78534,-0.37402,-1.0432,-0.034505,-0.98957 -2.645,2.9073,0.017227,0.21987,-0.13431,1.6202,1.307,0.87747,-0.84218,-0.059449,-0.55611,0.17634,0.99778,-0.59239,0.66222 1.217,-2.2948,0.64826,0.99314,-1.3177,-1.8799,2.3057,-1.8891,-1.425,0.84251,-0.057023,-0.70674,-0.15455,-0.79774,-0.21263 -2.4205,1.5981,-0.028672,0.31634,-1.0797,-1.1673,1.1108,0.94462,-0.8459,1.8098,0.029489,-0.56758,0.47072,0.84486,0.35167 5.0721,-0.85018,-0.60186,-3.07,-0.93799,-1.683,0.77893,-0.041395,0.23399,-0.089775,1.3271,0.19767,0.55755,0.96984,0.17585 2.8279,0.027513,0.77975,-0.74413,-2.8576,0.99031,-1.0106,2.2709,-0.77731,1.3119,-0.99307,-0.051283,0.50863,1.2515,0.46062 -0.092622,-1.7626,-0.15498,0.78003,-1.399,-1.4121,0.85968,-1.5933,-0.16877,1.7727,0.30635,0.47561,1.2214,-0.3895,-1.2845 -1.6401,-1.4589,0.81744,0.4293,-0.46221,-2.3783,1.027,0.35533,0.27205,0.92598,1.8082,0.45271,0.62917,0.3873,-0.85145 2.9629,0.14886,-0.35217,-1.0113,-1.2852,-1.4948,-1.732,-0.71476,0.625,1.017,1.7933,-0.67341,0.024734,-0.0097774,1.2351 -1.8044,-1.4422,-0.61974,-1.1545,-2.5813,-0.18479,-0.71105,-0.47865,-0.34157,0.32356,0.91085,-0.23793,0.14208,-0.43607,-0.31676 2.0469,0.90806,-1.0049,-2.0921,-0.80449,-0.99436,-1.05,0.59879,-0.93323,1.5842,3.0597,0.23562,1.3089,-0.41798,0.97344 0.49723,-2.4513,-2.5384,1.1508,-0.33595,0.46619,-1.2255,2.0073,-0.68724,0.37296,-0.9238,-0.56078,-0.65552,-0.20636,0.81163 0.19836,-2.9043,-1.1976,-2.0179,-2.152,0.7923,-1.9141,-0.4126,-0.56501,1.1326,-2.6349,-0.26555,-1.4929,0.1446,1.1649 -0.75339,-1.7696,0.83735,2.6988,-0.81704,-0.99288,0.8232,-0.64046,0.40388,-0.57944,1.0828,0.043481,0.60723,-1.0729,-0.29192 2.0358,1.8252,-1.2467,1.1297,1.6855,-0.16136,-0.39389,-0.57053,-0.83325,1.7571,-0.94623,-2.4859,0.059259,0.066289,0.96673 -0.15269,-0.99553,-0.32571,0.38746,0.41511,0.1031,1.8366,-0.98557,-0.36492,1.5637,-0.65563,0.17534,0.090147,-1.9317,-0.93325 -0.58054,-3.3503,-1.5565,0.17766,-0.049263,0.15508,-2.5645,1.983,-0.30122,1.0115,-1.0263,-0.95764,-0.55758,0.76603,1.7264 -1.0201,-3.9755,0.75382,1.2672,1.2201,-0.45834,0.33873,-1.371,-0.86463,-1.2369,0.71392,-1.0406,0.86404,-1.4139,-0.54974 -0.032243,-2.2918,-1.914,1.1061,-1.4638,-0.79527,-1.955,-0.16701,0.24973,0.62319,-0.81067,1.449,-0.44621,-1.3909,0.92767 -1.5751,-1.6656,1.123,0.29956,-2.5881,-0.07356,-0.44329,0.026937,1.0058,0.28434,1.342,-0.19298,0.45829,-0.86362,-0.091743 3.06,-0.49736,-0.95533,1.7788,-0.25128,-0.23836,2.0301,-0.71879,-1.4498,-2.0713,-1.9283,-0.03735,-0.097216,-0.628,-0.78767 -0.19695,-2.2643,-0.52308,1.7413,-1.7729,0.44193,0.46165,-2.1054,0.24585,0.74233,-0.27674,-0.9892,-0.14373,-1.7549,-0.16281 1.175,0.97053,0.010493,1.0112,3.1397,-0.68613,-1.3247,1.7458,-0.21296,2.1404,1.1321,-0.85983,0.25177,-0.2825,-0.21926 -0.74258,-1.6621,0.70616,-0.80639,-3.1218,0.42981,-0.47458,-0.70818,0.77774,0.58448,-0.2083,-0.78116,0.50128,-1.1342,-0.13395 -1.507,0.17015,-2.9912,1.1866,-0.66736,-0.47383,2.1057,0.44949,0.43244,0.36449,-0.66089,-0.63012,-0.87114,0.4712,-0.42034 -1.4842,2.181,-1.3763,1.3799,-0.66271,0.084019,0.88266,1.1099,-0.54629,0.48932,0.307,0.23814,0.37947,0.74676,-0.12031 1.5533,0.58883,1.577,1.6018,-1.4817,-0.90903,0.047641,-1.8417,-0.71244,-1.0639,-0.62329,-0.45446,-1.4177,0.7536,1.8676 -1.8994,-1.2695,-2.4983,1.4134,-0.55359,-1.2819,-0.30597,-1.628,-0.033251,0.30332,0.058952,0.64743,0.42206,-0.038833,-0.31299 5.3979,-0.074862,-0.41897,-0.52896,2.2814,-1.7677,2.4589,-0.8553,-2.0102,0.35164,-0.042499,-1.3216,0.00082054,-0.91728,1.2055 -1.1041,-0.35022,-1.6787,2.5008,-1.1212,-0.81158,1.0006,0.45675,0.73254,0.37934,0.86621,0.15517,-0.18896,0.45564,-0.1971 -1.8986,0.56317,-3.6459,-0.043509,-1.0225,0.70525,0.15133,1.1345,0.77181,0.80985,-0.49697,-0.23509,0.40496,0.39887,-0.55152 -1.9602,-2.1686,-1.1355,1.2944,1.6066,-1.9457,0.42411,-0.97812,-0.10656,0.76618,0.55527,0.19479,-0.052329,1.0149,-1.1411 0.90373,-1.5745,3.3391,-1.0101,-2.955,1.2859,-0.57611,1.6666,-0.24951,1.529,-0.47745,-1.1428,0.68991,0.066458,0.067422 3.9553,-0.34992,-1.9737,-1.215,-0.017532,-2.3222,2.0024,0.21802,1.7883,-0.93964,0.19094,0.37604,0.36283,0.16672,-0.88064 -1.4774,-1.3775,-3.5675,1.3477,0.35207,-1.2285,-0.14695,-0.52988,-0.84671,-1.3849,-0.89929,0.47006,-1.2254,-0.74184,0.26858 -0.7552,-1.3181,-0.07385,2.8696,-0.83223,0.92673,0.79647,-0.52033,-0.079546,-1.1229,1.0742,-0.014778,0.64014,-1.478,0.63509 2.7724,3.034,-0.71825,-1.9277,-0.15004,-0.72873,0.26573,-0.34852,-0.50593,-2.1019,-1.3351,-1.4802,0.74339,0.37002,-0.50869 1.9472,0.44279,-1.8302,0.16908,-0.42517,-0.79842,-0.023717,-0.62867,1.2861,0.8924,1.4825,-0.21576,1.4438,0.32945,0.95041 0.84444,-0.72785,1.3708,-1.3827,-3.3752,1.9699,-0.082216,1.1519,-0.082422,0.012253,-0.16121,-0.55172,0.010867,-0.62142,-0.48236 3.7579,-1.2174,1.5063,0.86282,-1.6776,1.375,-0.32131,1.1888,-0.41186,-0.5465,-1.9716,0.19248,-0.50067,-0.67166,-0.060142 3.5929,-1.2073,-2.4128,-0.056248,-1.1382,-0.54573,0.52983,-0.23049,2.1741,-1.1235,0.42339,-0.27334,-0.5571,-0.030725,-0.94945 -0.71318,1.7596,-1.7957,3.0343,0.1927,0.89019,0.16349,0.47929,-0.82771,0.22378,-0.42884,0.18541,-0.17884,0.62244,-0.049887 1.0713,0.2952,2.4291,0.77511,-0.16075,-2.4899,2.7036,0.11791,-2.177,1.5114,-1.3086,0.61064,0.82579,0.57452,-0.053612 3.2286,1.1753,-0.079949,-0.66566,0.0077521,-1.4433,-0.62498,-1.7114,1.2857,0.27448,0.26457,-0.3291,1.1385,-0.13725,-0.76309 3.9204,-0.6474,2.3589,0.01529,-1.0829,-2.5736,1.3411,0.33908,-1.6836,-0.61015,-1.1043,0.86507,0.29258,0.37232,-1.0049 1.7157,1.309,-0.36079,0.39441,2.9188,-0.90879,-0.14998,-0.55162,1.0806,-0.62177,0.080188,-0.79173,0.7443,0.053571,-0.68595 2.1039,-0.31579,1.57,1.9442,-0.11754,0.50655,-3.0002,0.93858,-0.38861,-0.34458,1.8233,0.53293,-1.0471,0.99494,-0.24853 1.5391,-1.5469,3.572,-2.0419,-2.636,0.69838,-0.50876,1.8991,-2.6894,-0.31139,0.13042,0.37082,0.53955,-0.66357,-1.037 -1.5044,-1.2137,-0.38658,-1.0002,0.53052,-1.3329,0.38962,0.64153,-1.3879,2.8819,-0.34306,-0.10368,1.655,0.91357,0.15569 -0.897,-2.9016,1.3461,1.5337,-0.050985,-2.4906,1.6944,-0.17549,-0.52757,0.4197,1.2358,0.38429,1.0689,-0.7128,-1.8861 -1.3302,-2.9478,0.37584,2.0541,0.94992,0.092521,0.54544,-0.60233,-0.27686,0.11163,1.9983,-0.6052,-0.22552,-1.1259,-1.4402 -1.7372,-1.5871,0.6294,2.0735,0.777,1.0042,0.65879,-0.64932,0.17004,-1.1038,2.1191,-0.8341,-0.51691,-1.1899,0.092707 -3.2965,-1.8401,-1.3412,0.93533,0.6063,-0.6206,-0.054422,-1.2558,0.13478,-0.50984,0.91433,-0.44388,-0.98818,-0.83579,-0.98317 1.0837,0.62342,2.8781,-0.80458,0.055011,-0.42258,-1.2633,0.84397,-0.40646,-0.6197,1.3598,1.662,-0.23688,0.15835,-0.5234 0.88264,-0.10663,-2.0632,0.11955,-0.93855,-0.73865,-1.4683,0.91241,1.464,-0.26901,2.0684,0.1431,0.63951,0.94132,-0.78904 3.9484,-0.92927,-0.86559,-3.0992,0.16933,-2.7063,2.0242,1.4348,0.52009,-0.28675,0.67519,1.1922,-0.075618,-0.42229,0.6173 1.3361,-0.67444,-1.5202,-0.0044886,-1.2025,-1.118,2.2609,-0.32671,-1.1039,2.3403,-1.7222,0.07663,-0.19506,-0.79431,-0.87685 0.90911,2.3699,-0.096527,-0.04592,-2.3021,-0.84259,1.0549,0.51986,-0.80866,0.23868,-2.068,-0.028715,-0.13312,1.1577,0.36185 1.126,1.3047,0.15906,2.7333,1.0596,-1.0708,0.14894,-1.503,-1.03,-0.10687,-1.1887,-0.62944,1.9756,-0.058545,-0.17631 -0.69515,-0.19713,1.6594,-0.68815,-1.4566,-1.1895,1.5769,-1.2809,-0.92734,2.0254,0.45528,0.21221,0.84369,0.43059,-0.9797 1.8832,2.2636,-0.8564,0.49642,-2,-0.4836,-0.69465,-1.0507,0.73736,-0.14144,-1.2447,-0.15291,-0.20837,0.24851,-0.60878 -0.072638,1.6048,-0.34201,2.1376,1.1668,-1.096,-0.32492,2.3718,0.41526,0.51163,-1.4829,-1.0556,0.59343,0.50039,-0.13834 -0.68912,-0.80747,1.0139,-1.3853,-1.7628,-1.8666,1.5983,-1.5217,-1.5362,1.5597,0.33892,0.53517,0.60557,0.040624,-0.69506 1.6113,-1.7582,3.0653,3.0555,0.1942,-0.4396,-0.11143,0.078141,-1.4383,-0.75163,1.4749,1.5075,0.048775,-0.83786,-0.83757 4.0324,-1.8335,-1.8483,-1.3554,0.25655,-2.8474,2.6399,-0.018094,1.249,-0.50187,0.61062,1.3983,-0.26615,-0.022204,1.0692 4.3218,-1.2578,3.0767,-0.50418,-1.999,0.31923,-1.5004,1.9625,-1.2549,0.75352,-0.69816,-0.1387,-0.12888,0.47902,-0.52872 5.348,-3.1628,-1.3571,-0.52674,-0.21445,1.882,0.86291,0.40337,-0.78016,-0.31021,-0.18106,-2.0168,-0.57728,0.049654,1.2326 -1.5758,-2.1158,-0.98789,1.8965,-0.90929,0.48815,0.0045397,-1.9509,-0.14313,-0.52913,0.9751,-0.58579,0.77742,-1.3849,0.36532 -1.1458,-2.7424,0.32212,1.8581,-0.53586,2.385,-0.83126,0.057452,-0.38324,0.059532,1.1703,-1.5636,0.50044,-0.67142,0.58972 2.6632,0.25958,0.32111,1.2916,-0.28715,-1.7403,-1.2147,-1.5059,-0.79663,1.1055,1.3698,-0.75774,-0.49151,0.85932,0.78383 -1.7306,-1.7967,-1.3908,2.4361,-0.43502,-0.00079308,0.72441,-0.81994,-0.53078,-1.8457,1.3411,-0.70625,0.39011,-0.9736,0.1293 2.4409,-0.38012,-2.9346,-2.255,-1.4054,-0.60698,1.6478,1.8707,1.1138,-0.15454,1.1501,1.5101,0.83641,-0.31476,0.38001 2.0311,-2.1664,-0.27602,-1.3168,-1.5211,-0.52525,-0.11195,1.1062,-2.5668,0.43477,-0.47065,1.499,1.4858,-1.3009,0.29642 -1.3951,-1.0385,-3.2925,1.6857,0.86864,-1.4651,0.36086,-0.047723,-0.99765,-0.70821,-0.32194,0.11646,-0.4994,0.42056,0.10893 -1.0578,-3.1775,0.88814,0.92091,0.97352,1.799,-1.7001,-0.46442,-1.1643,-0.85951,1.2706,-0.47466,0.15272,-0.89655,-0.36243 -0.26476,-2.9059,0.897,1.0526,-0.36833,1.9051,-0.6074,-1.0753,-1.0551,-1.2165,0.72147,-0.39214,1.6697,-2.1581,-0.38381 0.045566,2.9203,-0.75063,-0.48397,-2.3634,-1.1467,0.27301,0.099469,-1.0817,-0.51959,-1.0098,-0.25364,-0.96386,-0.2929,0.47043 3.9849,-1.301,-1.7135,-0.9653,-0.76559,-1.3554,1.255,-0.67815,1.6769,0.078005,0.9361,0.09282,-0.38493,-0.43316,1.3442 -0.13715,1.538,-2.2578,2.1086,-0.82483,0.84826,-1.5456,1.0322,0.38698,0.18633,0.47666,-0.35743,-0.67132,0.72775,-1.4993 -2.2749,-1.9377,-2.5335,1.4797,-0.90772,-0.80708,-0.10766,-1.2056,-0.413,-0.93801,0.43979,-0.47482,-1.3685,-0.4194,-0.59981 -0.7498,-0.52878,-2.2949,1.7539,-0.15304,-0.638,0.33147,-2.2448,-0.99315,0.70852,-0.91882,0.64879,1.3602,-0.01573,0.75828 -1.7664,-1.341,-3.5253,1.7119,-0.3575,-0.92424,0.50524,-1.4759,-0.94841,-1.0548,-0.10737,-0.020052,-0.25268,0.19733,-0.16347 1.39,-1.0531,-2.1945,-2.1476,-2.212,0.55337,0.48585,2.538,-1.1441,-0.7355,-0.452,0.70494,1.5302,-0.85184,-0.35097 1.1119,0.34447,-0.74089,2.8949,2.612,-1.9462,0.74898,1.4394,-1.5039,-2.4468,-0.2264,-1.6726,0.20997,0.69808,0.40793 3.71,-1.2887,-0.59699,-1.9138,-1.6936,0.21406,-1.1775,2.7623,-0.9996,-2.8532,0.30087,-0.35178,0.16617,-0.56382,-1.9392 -0.60671,-0.47378,0.16723,-1.5491,-1.6931,-1.4029,-0.77219,-1.184,-2.6643,0.093625,-0.68385,1.2126,-0.1346,-1.1033,0.21764 0.28292,3.0292,0.86719,-1.1976,-0.79491,-0.24777,0.35244,1.3133,-2.6675,-0.64603,-1.9411,-0.96361,-0.14518,0.51809,1.0273 -1.3813,-2.4941,-0.21542,-0.9283,-1.0288,-1.0749,-1.4189,-1.4776,-1.1136,1.5747,-0.29742,1.3006,0.38775,-1.6147,-0.87812 2.7752,-0.65306,2.8967,-0.7624,-1.8179,0.74163,-2.5738,2.2949,-1.6579,0.34168,1.3213,-0.098463,0.60217,0.71355,0.11906 1.963,-1.3875,2.1987,-0.89756,-2.6469,-2.0563,0.77509,-0.086604,-0.72708,-0.93438,-1.0558,-0.58967,-0.77905,-0.94088,-1.0461 4.5379,-1.4037,-0.10643,1.0062,-0.49566,0.84265,-0.77763,-2.1597,-1.0167,-1.7865,-0.60402,-0.83974,-0.77311,-1.2404,-0.95808 1.3709,-0.33994,2.5869,-1.73,-2.7774,0.66939,0.2477,0.18899,-3.1271,-2.2348,-0.53858,-1.2241,-0.87445,-1.3198,-0.72288 -0.32315,-3.2695,1.117,-1.9399,-2.6706,0.014754,-0.35677,-0.056024,-1.7123,0.7854,-0.92898,-0.62203,0.4006,-1.1326,-0.47696 0.10369,0.25845,2.5164,0.14488,-1.6326,-1.2138,-0.41913,1.1141,-1.0819,-2.5817,1.7093,0.12552,0.45467,1.0682,0.33538 3.9683,-0.4529,-1.2179,-0.39745,0.23365,-2.5132,1.0152,-0.15863,1.9972,-1.1299,-0.31886,-0.22433,0.20961,0.52784,-1.4966 -1.8837,-0.17221,1.6038,1.8451,-1.5904,-1.702,0.77278,-0.25256,-0.82503,0.95463,0.82543,1.0755,-0.57579,-0.8177,0.16193 0.29652,-2.371,2.5947,-0.96076,-2.6868,-0.11474,-0.34832,-0.18439,-1.521,0.74076,-0.57734,-0.1778,-0.050275,-1.3991,-1.1361 -2.8354,-1.8641,1.6149,-0.28258,-0.23293,-1.5601,0.22544,0.66113,-1.6696,-0.6261,1.8351,0.67911,-0.53156,-0.60746,-1.7525 0.33887,1.4707,-0.50254,1.7231,-1.397,-0.8988,-0.97056,0.35272,0.38104,-1.0902,0.80787,0.85862,-0.34609,0.98406,-0.67501 -2.2185,0.31146,-0.92977,-1.0831,-1.5922,-0.61486,1.1289,-1.6908,-0.22272,1.6507,-0.10287,-0.44958,0.57039,0.69783,0.18236 0.58005,-2.5721,3.2219,-0.60035,-2.2584,1.1152,-0.681,0.66041,-1.2417,2.0889,-0.67747,-1.0396,0.23971,0.022728,-1.257 3.2589,-0.7356,2.1017,2.0673,-1.04,1.0332,-2.1153,0.97637,-0.83332,0.96901,-0.41942,-0.4433,-0.18342,0.53478,0.7938 -1.291,0.14142,-0.99385,1.516,-1.1748,0.92219,-0.21324,1.5609,1.5715,0.82227,1.3266,-0.57554,-0.98142,0.74882,-0.77473 -1.1884,0.99382,0.56324,0.94182,-1.9665,1.4946,-1.0719,0.56604,1.0241,-0.33229,1.5194,1.4631,-0.37026,-0.13638,0.50053 0.90871,0.51477,-0.8157,0.84463,1.8125,-0.46813,-2.1758,1.8137,0.5271,-0.16821,2.3015,-1.1209,-1.6492,0.26251,-1.3062 -2.8397,-0.52888,0.59418,0.37918,-0.52035,-1.866,0.89216,-1.178,-0.48279,1.4773,1.6197,-0.034527,-0.35967,0.81792,-0.55059 -0.3695,-3.7038,2.1729,-0.4619,-2.015,-0.089446,-1.4179,-0.041422,-0.2492,1.3323,-0.074782,-0.94277,0.24516,-0.91177,-0.55509 1.0791,-3.4589,0.38517,0.3144,-0.48328,-0.72963,-1.1328,-2.2176,-1.6295,1.28,-0.59136,0.93051,-0.41277,-1.8125,-0.62877 0.74869,-4.0104,0.080628,0.75059,-0.44333,-0.3175,-2.2628,-0.47531,-0.61632,1.3572,-1.0459,0.91098,0.12517,-1.5077,0.45505 1.9626,-0.073315,-2.0037,1.1022,2.1844,-1.4737,-0.27634,1.3089,1.4566,-1.0974,0.81454,-1.5622,0.72819,0.63727,-0.13715 -2.5775,-1.0667,-1.077,0.64321,-1.7314,-0.60605,0.68324,0.57824,1.3474,-0.96807,1.1171,-0.78195,-1.5334,-0.46474,-0.7848 -1.4741,-2.8516,-1.8854,1.257,-0.88415,-2.1851,-1.2941,-0.54206,-0.088424,-0.27624,0.28025,0.52766,-1.3622,-0.67126,-0.84138 -0.68442,-2.7436,0.14578,0.70149,-0.27137,-1.6096,-0.0061321,-3.4312,-1.688,0.58939,-0.46668,-0.11629,-0.14982,-0.53804,0.36299 -1.54,-2.3391,-2.3173,0.7271,-1.7309,-1.115,-2.2409,-0.54231,0.39832,0.54096,-0.22152,0.64611,-1.4092,-0.3533,0.43436 -0.84719,-5.2571,0.21381,1.6442,0.41939,0.23062,-1.6361,0.86994,-1.5523,0.48834,-0.13883,-1.1583,-0.070439,-0.7202,-0.62868 -0.95248,-3.8269,-0.5941,1.8891,-0.63303,-0.16674,-1.1418,-0.44547,-0.018628,0.69226,0.54169,-0.57865,-0.036462,-1.3221,-0.96381 0.15093,-3.085,-0.95401,2.08,0.058765,-1.1327,-1.947,0.48007,-0.026918,0.31712,0.18545,0.77618,-0.35602,-1.8805,0.59225 3.6105,-2.1626,-1.9124,-1.6711,-2.2663,0.49911,0.56358,1.2916,1.3402,0.35723,0.13205,0.39502,0.012716,-0.15197,0.57396 0.023583,-1.6686,-1.3854,1.6209,-0.67851,-2.5066,-0.13383,-1.3909,-0.71301,0.51603,-1.0209,1.7734,1.1905,-1.287,0.026017 -0.33138,1.5898,-0.099656,1.7783,-1.5932,-0.48478,0.86029,0.17093,0.007706,1.7096,-0.861,0.35969,0.99266,0.78935,0.96144 -1.9704,0.18755,-0.63744,-0.17095,-2.7737,-0.10655,0.86806,-1.5775,-0.28399,0.063954,1.315,0.094925,-0.0095903,0.39584,-0.21484 -1.4316,-1.186,-3.028,1.4415,-0.56121,-2.1195,-0.86182,-0.55987,-0.90245,-0.82697,-0.32533,1.2883,-1.5197,0.057079,0.47346 0.078175,3.4544,0.19362,-0.10829,-1.6346,-0.19137,-0.21355,-0.31868,-2.0476,-0.81961,-1.1933,-0.25471,1.2994,0.33958,0.25422 -0.64158,2.2052,-0.90009,2.0655,2.5179,-0.54453,-0.81133,1.1583,-1.6469,0.19826,0.82257,-0.64963,-1.3125,-0.077478,-1.2173 -0.72858,-3.4413,-1.4023,1.2833,-1.2111,-0.84704,-2.4658,-0.28827,-0.046682,0.90059,-0.63444,0.22146,-0.84546,-0.86485,0.64885 -1.17,0.56245,-2.2061,-0.36394,-1.6615,0.31293,1.1233,0.15866,-0.12052,1.8469,-0.80053,-1.0675,0.44508,0.96349,0.48602 -0.97019,-0.42562,-0.28944,1.0423,-1.1075,-0.36401,1.7644,-1.942,0.16356,2.0952,0.019307,-0.22532,0.8344,0.38,-0.14591 0.93922,-3.781,-1.3242,1.7949,-0.12317,-0.68077,-1.0301,-0.96764,-1.5921,-0.093588,-1.2697,1.4253,0.38037,-2.1364,0.079021 1.1936,0.60267,-1.8927,1.136,1.1626,-1.1906,-0.81017,1.1721,1.7308,-1.2676,0.82811,-1.1576,0.15934,0.96682,-0.93604 2.0123,1.3977,0.34317,0.22218,-2.2292,-2.6441,0.64157,0.19127,0.51702,-0.98149,-1.7914,-0.1211,-0.82168,1.0109,-0.46852 2.708,-0.28031,0.068706,2.3006,-0.78751,-0.71892,-0.10117,-2.0029,-0.73999,-2.3054,-0.95989,-1.0434,-0.14228,-0.78114,0.29658 -1.8504,1.0925,0.53196,1.2162,-1.8282,-0.87129,0.18111,0.65261,0.059511,-0.567,1.8021,1.317,-0.27913,0.060874,-0.3018 2.0244,-0.64853,1.405,1.5807,-2.7988,-0.66832,-0.0029364,-0.1678,0.84619,-1.3059,-1.3176,-0.38584,-1.945,-0.86255,0.379 0.56622,0.35157,-1.2656,1.8704,0.45528,0.018775,-1.9326,0.42896,0.0019891,-0.24699,2.2703,-0.43055,-1.4061,0.79382,-1.0702 5.0882,-3.3521,-2.4451,-0.098139,-0.11607,2.6382,0.48859,0.9822,-1.0718,-1.139,-0.20677,-1.117,-0.016952,-0.57034,-0.28532 0.072717,2.5615,-1.3142,1.753,1.0968,-1.1416,-0.94449,2.0011,0.96349,-0.51988,-1.2013,-1.3619,-1.0379,0.3317,-1.0121 3.4935,-3.5139,-2.0963,0.39384,-0.89395,0.70294,2.1004,1.5281,0.40863,-0.25568,-0.38835,1.2123,-0.078292,0.76444,0.64421 -0.93314,1.1873,-1.566,2.6791,1.7091,0.75209,0.84053,2.5178,-1.355,-0.52173,-1.2214,-0.62287,-0.72205,0.15981,0.4745 -3.308,-1.0536,0.34699,-0.060098,-1.5062,-1.0136,0.18739,0.4704,0.70434,-1.0547,1.9331,-0.28966,-0.77894,-0.59958,-0.85813 0.66165,-0.22847,0.92948,2.7334,-1.3378,-1.4681,2.2593,-1.8732,-0.7072,-0.31136,-1.4978,-0.55299,-0.14024,-0.50925,0.64358 1.7995,-2.5754,-2.0946,0.24879,-2.0513,-0.0039876,0.54744,2.2606,1.5631,0.71389,-0.28477,2.1024,0.56099,0.70347,-0.87559 -2.8746,-0.23043,-0.28631,0.42524,-0.76378,-1.1997,1.2101,0.83828,1.0089,-0.41262,1.5189,-0.12731,-0.86219,0.40502,-0.89267 0.14828,2.9575,-0.88887,0.27547,-0.47722,0.52056,-1.7375,1.245,-1.5569,0.41173,0.11897,-0.33693,0.0062386,0.91715,-1.2293 -1.1657,0.15031,0.33597,3.0746,-0.62824,-1.0323,0.81922,-0.27994,-0.12075,-0.26989,1.2143,0.3937,-0.32503,0.25138,0.61086 -1.3516,-0.03207,1.1502,2.3291,-0.67975,-1.7305,1.27,0.016862,-0.056952,0.8736,1.2145,0.56181,-0.13349,0.73728,-0.080491 3.0788,-1.1773,0.68153,0.46006,0.11097,0.81404,-3.1932,2.0197,0.12667,1.6761,0.94666,0.34912,2.0502,0.33235,-1.4443 1.8946,-1.2786,2.1293,-0.014512,-3.4422,0.81453,0.27939,1.4759,0.89939,-0.030968,-1.2866,-0.71881,-2.4163,-0.31735,0.75896 1.0474,-2.3831,1.8621,2.6302,-1.708,0.9643,-0.77486,0.95351,0.0014125,0.7416,0.094658,-0.57226,0.40717,-0.74352,0.30048 -1.5478,-2.3221,-0.059101,0.20806,1.0484,-0.88747,-2.2393,-2.1982,-1.483,1.0473,-0.10538,1.4707,-1.0062,-0.7331,0.17196 -2.5203,1.8751,-1.9715,0.57289,-0.65196,1.3702,2.4238,0.35155,-0.3161,0.2869,-0.29286,0.36944,0.26128,-0.32418,-0.3151 -1.2453,-3.0011,-0.64651,1.5678,0.36488,-1.8572,-0.71763,-1.6977,-1.1615,0.582,0.12258,0.9523,0.33078,-1.2492,-0.77989 -0.4399,2.7684,-2.0284,-0.34456,0.99625,-0.045598,-1.7652,1.7702,0.86253,0.13085,0.94725,-1.0584,0.21814,0.19681,-1.2184 -0.68211,-2.015,0.25391,1.6487,-0.18296,-1.0837,1.5368,-1.3002,-2.3861,-1.0392,0.057215,0.56881,1.9731,-1.8109,-0.57627 3.0477,-1.0972,0.90033,2.354,-0.73904,0.46386,-1.952,-0.96594,-0.19219,-0.73787,0.28598,-0.01182,0.78207,-0.66251,-0.59 2.4112,-0.19094,0.49145,-1.4429,3.8339,-2.3552,-0.44873,2.2488,0.64524,0.0021086,1.617,0.42905,1.5001,0.69822,-1.0904 -1.7981,2.2401,-0.099542,-0.80693,-1.6077,-0.56914,2.2707,0.46647,-1.0094,1.0091,-2.2347,-0.75666,0.49467,0.38456,0.98606 -1.6462,-3.1349,-0.45507,1.6485,0.11761,-0.35323,-1.7587,-1.6003,-1.485,-0.70772,0.79922,-0.10115,-0.60797,-0.98241,0.14259 -0.9341,-1.6622,-1.1146,1.0471,1.319,0.73007,-0.9015,-1.8482,-1.0028,0.80928,-0.30269,1.248,0.58259,-1.3036,-0.040959 -1.9204,-0.18519,-3.715,1.0366,0.054494,-0.6768,1.016,0.20618,-0.25538,0.92443,-1.2336,-0.60406,-0.30127,0.98936,-0.61928 0.50448,2.9325,-0.67958,1.2111,-0.36058,-1.1894,-1.3224,0.14336,-0.10616,1.4041,-0.60224,-0.66742,-0.11514,1.0079,-0.10075 -0.59984,2.1636,-1.9654,1.4329,-0.80388,0.31732,-0.60592,0.40154,-0.58982,0.49621,-0.22394,0.28317,0.61056,1.2165,-0.84424 0.14033,0.66457,2.0214,1.9108,-1.1548,-2.1502,1.1719,-1.3331,-0.62813,0.10958,-0.1076,0.44645,-0.070567,0.36927,1.0921 3.1523,0.25491,-0.42976,-0.89648,-2.4594,-0.22602,-1.9217,-0.012223,0.84708,-0.98057,0.00099462,-1.3097,-1.0882,0.61255,0.21612 2.5353,-2.0915,1.5436,1.7105,-1.3168,2.9065,0.77929,-0.26655,-1.8686,0.059271,-0.65219,-0.56744,0.0074378,-0.9646,0.79953 1.6329,-1.9691,0.50053,0.94613,-1.6368,2.8766,0.90376,-0.0031443,0.2005,1.85,-1.2408,-1.6084,-0.076984,0.01505,-0.44 0.44075,1.1529,0.31399,1.4421,1.0271,-1.0114,-1.399,-1.7379,-1.657,-0.46546,1.2348,-0.62296,-0.85033,1.307,0.27841 3.299,0.3586,-1.3196,-1.5362,-1.8918,-1.5851,-0.39005,-1.2309,1.3993,-1.3095,0.36766,-0.76709,0.18801,-0.65586,-0.41903 2.8628,-1.349,0.32049,0.77757,-2.6026,1.4317,0.65087,2.1412,0.17783,0.30201,-0.64025,-0.43142,-1.9336,0.93203,-0.70903 4.3022,-1.1926,1.0391,1.3045,-0.74085,2.4669,-1.5115,-0.08552,-1.2517,0.58874,-1.0122,-1.0591,-0.035107,0.28623,0.23768 -1.2419,-1.5258,-0.68521,-1.2944,-1.8854,-0.97654,-0.53509,-2.0458,-1.146,0.66888,0.02707,0.78026,0.37708,-0.34759,-0.30259 -1.4212,1.5679,-1.2254,1.8466,-0.83554,-0.2219,0.8021,0.91039,-0.12743,2.1021,-1.1348,-0.31556,0.29224,0.30249,1.1695 -2.4971,-0.96445,-0.090184,0.79224,-0.62581,-0.93925,0.52204,-0.089113,0.69784,0.66099,1.8659,0.039492,-0.43569,-0.25448,-0.88275 -0.81729,0.78814,-0.15345,0.84457,-0.64905,-0.42356,0.48685,2.1082,0.55427,-2.7675,0.024032,0.28638,0.45379,0.72796,-0.055458 2.6554,-0.29659,-0.92319,-0.20438,-0.5293,-2.9121,0.23686,-0.86988,0.57554,-0.74059,1.8785,-0.2308,0.55696,0.83035,1.1568 1.0442,0.26934,-0.08761,1.1725,0.16398,-1.4084,-0.84161,2.1316,0.42185,-3.0975,-0.43557,-0.12301,-0.40553,0.49406,-0.4045 2.7633,0.42075,-2.8706,0.80554,-0.047632,0.19931,1.7637,-1.0343,-0.21329,-0.23296,-0.9991,-1.6254,0.92981,-0.35432,0.38148 -1.7208,0.9724,0.13145,0.72117,-0.1767,-1.1305,1.5326,2.1068,-0.57445,-1.3693,-0.020931,0.69481,1.6362,0.53408,0.07885 1.2558,-0.83383,1.1821,1.9376,1.1934,0.4046,0.074736,1.4442,1.5484,-1.7993,-0.37102,0.67012,1.3781,0.83622,0.080623 2.654,0.65832,-1.1708,-2.6769,0.084384,-2.5236,1.1202,0.67688,-0.40517,0.25315,1.7344,-0.061361,0.33599,0.11705,2.2794 -1.2085,0.37024,-0.40324,0.90164,-1.2723,-0.20645,0.65783,1.6651,1.6032,-1.4564,0.38644,-0.33777,-0.06191,0.16775,0.36692 2.289,-1.649,-1.1353,1.6556,0.73069,-0.14696,-1.6149,3.0529,0.31138,-1.054,-0.35435,-1.0183,0.65857,1.0088,-0.55058 -0.04117,3.2802,-1.5112,-0.048052,-2.1168,0.24681,-1.1393,0.68877,-2.0212,-0.1517,-0.41934,-1.2221,0.62014,0.10421,-0.023207 -1.5015,1.3111,-0.7508,0.74435,-1.127,0.46437,0.64169,1.8008,0.47541,-1.4775,-0.20043,0.001287,0.69554,-0.60232,0.843 2.9221,-0.061031,0.13166,-1.37,-2.9539,1.1442,-1.6452,1.8802,0.071262,-1.1542,-1.3755,-0.038551,0.027199,0.088999,-0.19817 4.1714,-2.3193,-1.0413,-1.6524,-1.6775,0.70288,0.7347,1.1706,-0.029411,2.7206,0.37493,1.5281,0.39364,0.13649,0.80232 -0.4365,-0.83748,0.15688,2.6203,0.2572,-0.47255,1.9975,1.1465,0.8229,-1.6625,0.023889,-0.28715,0.20573,-0.57553,0.40654 -1.6324,0.65298,1.0848,1.9499,-0.0023392,-0.22009,0.22422,-0.13802,-1.348,-0.44937,1.7671,0.33181,-1.6748,-0.34527,0.41206 -2.5026,0.016805,-2.4075,-0.58595,0.089044,-1.1049,0.58364,1.1591,0.45647,0.54307,-0.10029,-0.62075,0.49527,0.2873,-0.31759 0.15644,3.5951,-1.0423,-0.22258,-1.7419,0.31958,0.32598,-0.11269,-1.7341,-0.91946,-1.9771,-0.67129,0.23973,-0.0071183,0.4045 0.73681,1.0183,-0.45396,2.0302,1.7436,-1.6619,-1.0359,0.12016,0.82098,-1.0279,1.3911,-0.23518,-0.53799,1.1647,-1.4697 -2.9027,0.26397,-2.8107,-0.15954,-0.90581,1.08,0.37632,0.1027,0.29669,-0.44178,1.1116,-0.11181,-0.29022,-0.37561,-1.3702 -0.92527,0.48633,1.1967,1.4231,1.8005,0.27858,2.5992,1.0555,-0.10128,1.8267,-0.52394,0.92283,1.3889,-0.24616,-0.46971 -0.2075,0.11315,0.53013,1.4322,1.2711,0.95164,1.965,-0.21213,-0.90319,-2.315,-1.205,1.1265,1.8856,-0.38767,0.13603 -1.8755,0.68071,0.86685,0.53869,0.29084,-1.0932,2.0778,1.9649,0.87784,-0.17358,0.10061,0.094034,1.0887,-0.12443,0.0087025 -0.40019,0.42853,2.0244,2.0978,-1.1831,0.087911,1.1384,-2.2235,-0.20104,0.20571,0.57699,0.37826,-0.56537,-0.23292,1.2418 2.6932,1.7894,0.12023,-1.7751,-2.1285,-1.5711,-1.9929,-0.54259,-0.11514,-1.1985,0.28061,-1.092,-0.22473,-0.21518,0.28463 -0.28086,2.1815,0.19846,-0.65187,-1.3694,0.48134,-0.91465,1.89,-1.3649,0.90536,-1.0658,-0.24661,-0.6243,0.8637,1.041 -0.29376,-4.3729,0.32802,1.1567,0.95726,0.68595,-0.64086,2.3595,0.35355,1.7735,-0.27683,-1.4576,0.49437,-0.063716,-0.57371 4.3236,-5.5901,-1.0631,0.76468,-0.28496,0.4232,2.0906,2.6933,-1.3069,-0.72619,-0.64728,1.6486,0.051844,0.931,-1.0668 -0.92846,0.88423,-0.9496,1.5207,-0.70256,-0.13182,1.4395,0.15104,0.29235,1.777,-1.5074,-0.33874,0.17474,-0.50902,1.2197 -1.294,-2.7816,2.0279,-1.0164,-1.9653,0.1209,-0.7814,1.1606,-0.58428,1.4029,1.1624,-0.092807,0.70935,-0.65402,-1.1987 0.28168,-3.6821,0.9128,-1.8915,-1.929,0.70409,-1.4122,-0.32473,-0.60906,2.2458,-1.4858,-0.094811,-0.36622,-0.10715,-0.28062 -3.2061,-0.051712,-0.71477,-0.85336,-0.41762,-1.706,0.28986,0.026383,0.28206,0.8012,0.38371,-0.29793,0.82073,0.43175,-0.51811 -2.1341,-1.2696,-1.6506,-0.50959,-0.31649,-0.36391,-2.7541,-1.2771,-1.0399,-0.3552,0.50946,2.7163,-0.44411,-0.73616,0.77765 0.32165,-0.57956,0.36909,1.8629,-2.3231,0.061275,0.6972,-1.638,-0.62111,-0.1481,0.3581,-0.43115,-1.003,-0.588,1.3536 0.31102,-3.2541,0.16253,-2.1889,-1.8874,1.0051,-1.9044,-0.38683,-0.75117,1.6214,-1.6001,-0.18267,-1.1734,0.21196,0.16195 -2.7308,-2.9904,0.9393,-1.8024,1.201,0.74329,-2.7012,0.70087,-0.06434,1.7485,-0.39705,-0.227,-0.65374,0.62025,0.38304 2.8035,-1.2901,-1.2252,-2.502,-1.1169,1.0482,0.28169,1.7665,-2.8785,0.85714,1.7653,0.82241,1.9787,-0.6889,1.5486 -2.3546,-1.1177,-3.0152,-0.017263,-0.52958,-2.0502,-1.4305,0.0068196,-1.2641,-0.63988,0.079901,1.6115,-0.36684,0.41059,0.21758 -1.8401,-1.8043,0.093696,-1.4922,-0.76823,1.0087,-1.2904,1.3878,0.12357,0.94748,0.063832,-0.78755,1.0871,0.8148,-0.23977 -2.5219,-2.4935,-1.9362,-0.84478,-0.84572,-0.16754,-2.2222,0.93995,0.24938,0.11159,-0.87319,-1.1633,-1.215,-0.61666,0.5196 -1.6546,-3.0699,-2.1461,1.0409,0.24677,-2.0687,-1.7777,0.10575,-0.2824,-0.41746,-0.69887,-0.19623,-2.0911,-1.0756,0.35062 2.8005,-0.38098,2.547,-0.18027,-2.1576,-1.1128,-0.69964,-0.40083,-0.88789,-0.30796,-1.5427,0.35904,-1.606,-1.1343,-0.67647 2.0417,0.11821,1.3659,0.91113,-1.319,0.037808,-1.6166,-0.62781,-0.48227,-0.18244,0.026808,0.31902,0.71169,-1.3158,-0.70181 -2.7732,0.79354,0.30221,0.048757,-0.48524,-0.8729,1.5715,-0.91893,-1.5133,1.4714,1.3261,0.014814,0.051057,0.98911,-0.63227 -2.613,-1.2555,-0.86648,-0.65762,0.38444,-0.85122,-1.8726,-2.2943,-1.4921,-0.1849,0.57398,1.9172,-0.87894,0.386,-0.24438 2.3371,1.5684,-0.91247,1.1,-0.87606,-1.9686,0.051956,-0.52354,1.5175,-0.4101,-2.0616,-0.63987,-0.39931,0.1994,-1.1732 -1.3943,-0.84892,-0.10211,-0.12189,-1.9386,-2.0259,1.2583,-1.8106,-0.87319,1.4352,0.37103,-0.50005,-0.57258,0.74676,0.42847 -1.5632,1.7546,-1.402,1.2699,-1.2356,0.58254,0.50528,1.2763,0.097391,1.5921,-1.0049,0.056944,-0.25507,0.4362,0.74257 6.0668,-1.8061,0.27379,0.27629,-0.72778,0.58559,-0.4504,1.669,-0.38082,-0.3489,-1.0028,-0.56321,-1.2517,0.54986,-1.3009 1.0166,0.24314,2.2179,-0.65413,-2.47,-0.35439,1.162,0.24232,0.64363,0.05352,-0.63772,0.23987,-0.57305,0.15939,0.66477 4.0694,-0.42656,2.2329,-0.55105,0.26517,-2.6143,0.19129,0.17712,-2.0612,0.19375,0.6647,0.95472,0.73398,0.4011,-1.1686 2.009,-0.5613,1.1266,0.69951,-2.7699,-2.0713,1.5359,0.99577,0.3644,-1.0078,-1.1337,0.69095,-1.533,-0.25901,-0.87425 2.2272,0.67493,-0.96363,-0.96532,-2.5083,-0.71792,-1.4398,-0.26354,1.1933,-2.0295,-0.005864,-0.84683,-0.024013,0.54124,-0.29879 -2.5207,0.084969,-0.50676,-0.11818,-1.6492,-0.88493,0.53486,-1.5462,-0.20833,1.5064,1.4274,0.81597,-0.098731,0.11813,-0.79131 -2.6544,0.025076,-2.0088,-0.63909,-1.3455,0.50411,-0.027091,-1.2344,-1.0451,0.39737,1.3142,0.68884,0.19758,-0.093783,-0.95835 3.802,-1.6781,-1.9476,-0.61703,-1.4886,0.64329,-1.1844,1.6246,1.7811,-0.3819,0.43779,-0.57141,-0.52226,-0.056986,-1.5 -0.18732,-1.6856,2.9643,1.4473,-1.6549,-1.2465,1.021,-0.054139,-0.72583,0.44468,1.4836,0.61836,-0.21482,0.079206,-0.31783 -1.3419,1.3302,-0.6992,-0.74248,-2.3691,0.038918,1.246,-0.2417,-0.58295,1.3438,-0.58039,-0.20149,0.72948,0.30983,1.4064 -2.4437,2.2765,-0.45989,0.78693,1.6569,-0.064559,0.11546,3.045,-1.29,-0.12195,-1.215,-1.3506,-0.5162,0.30594,-0.33414 -2.2367,-0.49051,-3.3411,0.48934,-0.18212,-0.29061,0.0066993,-0.23035,1.0017,0.14043,-0.19803,0.19442,-1.2528,0.021903,-1.0968 -0.36862,1.5936,0.45527,0.88554,-2.7103,-0.923,-0.40632,-0.78201,-0.56671,-0.081809,0.22898,0.8242,-0.24129,0.72872,0.67776 -1.7124,-1.8598,0.017803,2.783,-0.30961,-0.068337,0.59029,-0.47218,-0.16138,-1.5535,1.6557,-0.25376,-1.5365,-0.61411,-0.24576 1.7824,-1.6792,0.98343,2.3607,-0.83912,1.4765,-1.3353,0.9748,0.35389,-0.31583,-0.35993,0.64204,1.1689,-1.0656,-0.21482 -0.047771,0.21655,-0.14176,0.97856,-1.981,-1.7658,2.7873,-0.59573,0.17981,1.0201,-1.5758,-0.37472,-0.53975,0.23248,0.28522 -1.8935,-1.198,-2.5373,0.97667,-0.85748,-0.8394,0.095262,-0.36803,0.52443,-0.050322,0.090907,-0.50237,0.13095,-0.39131,-0.93716 -1.3567,-2.9816,-0.67544,1.4724,0.67427,1.1418,-0.8106,-0.22809,-0.11131,0.93898,1.5513,-0.45299,-1.5618,0.2572,-0.51954 -0.87504,0.68223,1.4381,0.98353,-2.0289,-0.054124,-0.69604,0.4463,0.5492,-0.23495,1.8354,1.3204,-0.57893,0.64918,0.52339 2.6917,2.3922,-0.40604,-2.1461,0.44696,-1.9209,-0.92051,0.83926,-0.1154,0.87169,-0.21171,-1.7267,0.30065,0.60147,0.34805 -0.79722,-3.7145,2.1254,1.9534,0.66668,1.8549,-0.68329,0.11066,-0.92806,0.52134,0.60904,-1.2375,-0.010433,-1.7006,0.85579 2.8433,1.4788,-1.9447,-1.4464,-0.82429,-2.0236,1.0099,-0.56898,-0.01141,0.69978,0.27427,-1.4748,-0.2057,1.3116,1.1195 2.8741,0.61585,-0.27205,-2.0512,-1.0221,-2.1292,-1.0762,-1.1682,0.29377,0.46769,1.3403,-0.41473,0.87318,0.15121,0.30085 1.3865,2.2379,1.3801,-0.025911,-1.0586,-2.3204,-0.67736,-0.42445,-0.58847,-0.1184,-0.42958,-0.090482,0.13138,1.8253,1.0287 -2.0542,-1.6494,-0.10142,2.3602,0.61047,0.032689,0.80766,-0.24098,-0.11446,-0.44916,1.3385,0.30919,-0.89906,-1.8574,-0.57173 -1.4003,-0.52411,-1.1973,2.392,0.89491,1.3992,0.90562,-0.15676,0.15433,-0.13095,0.95813,-0.7831,-0.050112,-1.0881,-0.13339 3.024,0.15968,-1.2617,-1.8585,-0.47531,-2.7524,0.46898,0.4773,1.3114,-0.89045,0.24277,-0.093568,1.0268,0.59168,-0.83877 2.3546,0.48172,-0.41715,-0.43736,-0.24719,-3.0542,-0.58277,-1.218,0.52379,-0.19476,1.0021,-1.1561,0.28686,1.3818,1.0623 4.0196,-1.0392,0.89567,0.74444,-1.0469,-1.2361,0.46192,-0.93182,0.61108,-2.5879,-1.4992,-1.2248,-0.91272,0.13523,-0.55771 0.41201,3.4061,-1.3618,-0.57437,-0.39758,-0.91229,-1.7069,0.4889,-0.29617,0.87777,-0.088566,-0.90087,0.6943,0.84947,-0.34699 3.8532,-0.14093,-0.28866,-1.0439,0.36457,-2.8591,0.49358,-1.1299,0.36928,0.39508,0.29649,-0.63835,0.99621,0.29062,0.36814 -2.5238,1.2666,0.28141,-0.62857,-2.3696,-1.3489,1.849,-1.0548,-1.6933,0.18565,0.50121,-0.42325,1.0673,0.20605,0.74672 -1.0483,2.3352,-2.6103,0.48341,-1.3994,1.9833,-0.20911,1.2951,-0.72683,-0.32092,-1.2082,-0.31055,0.56117,-0.37761,0.31133 2.2667,2.2094,0.21521,-0.02492,-0.33203,-2.6966,-0.43846,-0.14371,0.51927,0.36925,-1.3074,-1.3578,0.92983,0.69062,-0.095562 2.9257,-2.4269,-1.5626,-1.9988,-1.7185,-1.529,1.8375,1.6631,1.7379,-0.80745,0.7508,2.3958,0.34775,0.87028,0.27196 3.0553,-1.0671,-1.1683,-0.22008,-0.29993,-2.5829,0.70572,-0.28344,1.7893,-0.6365,0.47356,-0.31346,-0.20688,0.74253,-0.30786 -3.6397,-0.19464,-3.165,-0.97655,-0.3429,-1.0155,0.68813,-0.55015,-0.93041,-1.2962,-0.053083,-0.1878,0.24987,0.48926,-1.0949 -1.3647,-2.261,2.8965,0.19473,-1.8653,-1.106,0.11266,-0.37602,-0.12141,0.61023,1.534,-0.089105,0.014194,-0.96981,-0.78519 -2.7537,-0.89303,0.85294,-0.1019,-1.2425,-2.0913,0.64252,-0.83331,0.0090529,0.62905,1.8135,0.0058207,0.21355,0.54271,-0.9464 1.2771,0.27708,2.9588,-1.2318,-0.57065,-1.5965,1.5409,-0.69684,-1.3517,0.37136,-1.996,-0.52384,-1.7371,-0.085805,0.49238 2.9321,1.0855,1.8672,0.57552,-1.3871,-2.6186,-0.2664,-1.263,-0.22642,-0.93577,-1.2959,-0.38527,-0.99646,0.17826,0.44276 0.605,2.1096,1.5597,-1.3466,-2.7888,-1.3367,1.0768,0.16005,-1.291,-2.5199,-1.1254,-0.16944,-0.70947,0.0963,0.86332 -1.8143,2.6133,-1.1251,0.41271,-0.82986,1.6766,0.99085,1.7986,-1.6656,-0.13824,-1.4431,-0.3626,-0.48991,-0.30758,0.6996 0.58343,1.915,-1.512,1.199,1.534,-1.7448,-0.85144,2.5629,0.70953,0.25675,-1.1551,-1.7691,-0.1429,0.57225,-1.1495 0.37833,1.9438,2.0346,-0.36493,-3.0518,-0.42475,-0.88534,-0.7508,-1.0839,-1.2573,0.50669,0.66097,-0.41794,0.28744,0.88426 -3.3257,1.4472,0.357,-0.14777,-0.94627,-0.99667,1.4696,0.26957,-0.56378,0.6444,0.90176,0.64619,-0.069469,0.43401,0.35793 -0.92804,0.20782,2.3773,0.74594,-1.4676,-0.43142,-0.87466,1.0919,0.27344,-0.37226,2.6485,0.48836,-0.6479,0.013447,-0.37265 1.8407,2.2271,-1.2345,-0.3812,-0.56339,-1.8853,-0.12877,-0.2394,1.2818,0.72419,-1.2915,-1.0547,0.87504,-0.097318,-0.1161 2.9884,0.033739,1.2537,1.325,-0.43116,-1.4579,-2.2685,-1.6187,-0.47736,-0.7534,1.8501,-0.44941,-0.72874,0.96522,0.45916 2.5368,-1.0742,-1.4667,0.50368,1.3424,0.99589,1.3504,-0.14821,1.2378,1.059,1.1297,1.4651,1.1361,-0.90661,0.10659 3.6363,0.36184,0.71229,-1.0796,-2.7072,0.89409,-1.2635,0.43667,0.058368,-1.2675,-0.66398,0.15766,-0.052064,0.66978,-0.11933 -1.4901,0.30233,-0.96715,2.473,-0.22295,0.97707,0.56149,0.57121,-0.052933,-1.2655,0.58439,0.59494,-2.4804,-0.58648,0.005015 3.1875,-0.45372,2.4069,-0.53975,-2.4835,-0.90621,-2.0525,1.4043,-0.054629,-0.27567,-0.97975,-0.0081369,-1.0666,-0.25666,0.42202 -2.052,-0.58089,0.29545,0.076276,-1.022,-2.2041,1.145,1.2933,1.0437,-0.76497,0.45642,-1.3271,0.14599,-0.35901,-0.10907 -1.6668,2.5393,0.90707,0.41772,-2.1687,-0.74549,0.21949,-0.14118,-1.0738,-0.57091,0.62191,1.5007,0.65759,0.39911,0.86972 4.6682,-1.919,-2.2906,-0.094143,-0.38977,0.35047,1.4192,-0.25501,1.0232,-1.3337,0.63139,-0.60656,-0.14491,0.70542,-0.38276 -3.5446,-1.3784,0.52382,-1.4437,-0.95678,0.42522,-1.1914,-0.58444,-0.98363,-0.061812,2.0681,-0.091402,-0.71037,-0.55268,-0.88124 1.5737,-1.3756,1.5804,1.8728,-2.0746,-0.39235,0.038291,0.04489,0.19837,-0.60426,0.19584,0.87046,1.271,-0.81948,-0.70149 -2.8465,1.0195,0.051264,-0.1611,-1.2663,0.32872,0.49038,1.6404,0.5159,-1.673,1.6334,-0.10571,-1.3352,-0.73206,-0.47389 -0.22258,0.80417,-2.8797,1.2619,-0.21664,1.5979,-0.89199,0.37121,0.32744,-0.58117,0.38029,-1.1948,-0.54513,0.11914,-0.87819 -1.8176,0.55315,2.4365,-0.48379,-1.7042,0.28413,-0.29115,-0.34886,-1.0276,-0.27312,2.1307,0.45995,-0.48805,-0.31238,0.16903 -3.1357,-2.5141,0.58611,-0.17463,0.61029,-1.6705,-0.56757,-0.14585,-0.5645,0.37192,1.7,0.023797,-1.5416,-0.77126,-1.4932 -2.4372,2.0707,0.39203,-0.30639,-1.5948,0.32744,1.8731,-1.3353,-2.9385,-0.12286,0.42159,-0.24333,-0.14091,0.3617,0.046022 0.63872,-0.2834,3.0364,1.3859,-1.2669,-0.75615,0.45161,-1.3863,-0.18554,0.73937,1.6379,0.071577,-0.76778,0.1785,0.52283 1.5436,-0.96028,3.1093,-1.0603,-3.2182,-0.7707,-0.019997,0.059107,-1.0101,-1.0595,-0.26055,-0.095854,-0.75685,-0.4103,0.87555 0.63148,-1.0427,-2.0976,1.1228,2.3992,-0.71121,-0.091294,-0.083887,0.026338,-3.7783,0.90096,-1.5066,0.6386,0.36345,0.96114 -3.4694,-0.041842,1.1017,-0.76957,-1.1325,0.80439,-0.073943,-0.4394,-1.1583,-1.2091,2.4193,0.22075,-0.35709,-0.56581,-0.9033 -0.55071,-0.092999,-1.4554,2.5525,-1.758,-0.12345,1.1987,0.20347,0.38324,-1.3672,0.24654,-0.73389,-0.47234,-0.54976,0.0075562 -1.1196,-2.7647,-1.0526,1.2751,0.47447,1.6829,-1.5207,-1.238,0.67217,0.58352,-0.16184,-0.17825,0.04166,-0.75423,0.45961 -0.62203,-2.6525,-2.1468,0.96685,0.50715,0.30285,-2.2982,2.0707,0.27252,0.42357,-0.92268,-0.53146,-2.2432,-0.14425,1.5178 -0.52131,-3.0039,-2.4263,1.5119,-0.44992,-0.14082,-1.7388,0.93258,0.59195,0.078805,-0.37091,-0.4593,-1.5601,-0.48032,0.19008 -1.6683,3.1158,-1.0352,0.18916,0.45015,0.2617,1.0422,0.44971,-2.15,-0.47888,-1.3513,-0.31864,-0.21866,0.55184,-0.56802 -0.37278,-2.8648,-1.7883,0.80742,0.47909,-0.4803,-2.297,2.3781,0.48077,0.67559,-0.56879,0.30001,-1.2956,-0.22713,1.5755 -0.8226,-2.359,-1.518,1.9864,0.656,-1.0915,-1.9615,-0.12042,0.53598,0.16584,0.31868,1.217,-1.212,-1.1436,0.54262 -1.4395,-0.70407,-2.7983,0.83061,-0.89484,-2.1485,-1.1785,0.2746,0.050639,-0.22923,-0.15907,1.4593,-0.2971,-1.0262,0.67142 -1.1342,-2.3112,-2.765,0.95214,-1.1428,-0.10903,-1.4084,0.25535,0.26867,0.27614,-0.6953,-0.71323,-1.8575,-0.5049,-0.14644 4.5867,-1.2879,0.47966,-0.96415,-0.45378,1.4095,-1.6922,0.40129,0.58435,1.134,-0.25781,0.31612,-0.37857,-0.088139,-2.1543 -0.74908,-1.559,-2.7338,0.28759,-0.70069,0.012029,-1.4308,1.29,0.25924,0.40654,-1.324,0.060931,-1.3592,-0.72511,0.5211 -0.035604,2.2188,0.018336,1.0848,1.4043,-2.0524,-1.1491,2.4164,0.70339,-0.10716,-1.3611,-0.69537,0.33267,-0.41695,-0.85551 -0.48511,-1.8021,-1.2178,0.41624,0.40428,-2.0743,-1.4951,0.46202,0.62205,0.32509,-0.079744,2.0114,0.41818,-1.1275,0.71449 -2.2168,1.4315,-1.6225,1.0777,-0.55245,-0.26697,1.1945,2.8223,0.71271,0.95384,-0.82175,-0.29537,-0.711,-0.30244,0.76957 1.8723,-1.9582,-3.9383,1.1535,-1.2204,3.1176,1.5618,1.7063,-1.2241,-0.49644,-0.89021,0.56006,1.0533,0.3921,-0.49518 -0.72123,-2.0306,-2.3532,0.96492,-1.3184,-0.77856,-2.2165,1.0036,0.81959,-0.020829,0.011372,0.86193,-1.0284,-0.98498,0.74989 -0.59739,-0.2305,-0.39597,2.4238,0.16106,1.4869,-0.21864,0.5132,-0.11289,-2.0989,1.4423,-0.25757,-0.34445,-0.5809,0.46681 -0.72207,1.4007,1.0237,2.1674,-0.012273,-1.3597,-1.0775,0.27216,0.76619,-0.98278,1.0745,2.0331,-1.3401,0.46711,-0.9517 -1.8453,-0.0342,2.6703,-0.32448,-1.5715,-1.8386,1.1056,-1.7348,-0.61322,0.33545,0.48722,0.14519,0.074552,0.14899,-0.045076 -0.32975,-2.3459,-2.3046,2.1893,-0.22371,-1.0852,-1.4518,0.76043,-0.21721,-0.519,0.15013,0.20668,-1.854,-1.2922,0.60164 3.4564,0.57056,-1.9827,-1.8741,0.041319,-2.6231,2.2021,0.29735,1.6961,0.54865,-0.15542,-0.25729,-0.36984,0.49497,0.83267 -0.85931,-2.2159,-2.6998,1.0149,-0.75872,-0.65637,-2.3433,1.093,0.018066,0.027886,-0.51633,-0.015096,-2.3474,-0.5687,1.2361 2.6387,-0.20356,-0.89415,-2.0528,-1.0952,-1.3655,-0.9742,-0.10343,-1.0834,-1.3365,2.0065,-0.78189,1.9067,-0.52339,0.75309 3.849,-1.1326,0.15191,-0.69197,-1.9693,0.092534,-1.5892,2.7132,-0.26119,1.2532,-1.1716,-0.35612,1.6459,0.79778,-0.71432 0.41505,-0.56846,1.4444,0.22533,-1.3608,1.7634,-1.1842,2.5402,-2.4635,-0.4503,1.4503,-0.74914,1.4453,-0.51159,0.15856 2.7204,1.1849,-1.9049,0.61099,0.63847,-1.2506,0.33506,-1.1939,0.75376,0.98432,-0.20355,-1.8638,-0.12082,0.32349,1.27 1.4863,-0.5507,0.57666,3.064,-1.2701,-1.1804,-0.61969,-1.0707,-0.068969,-0.83935,0.45103,0.023458,0.3527,-0.033423,0.18774 -2.6195,-0.34295,0.54736,-0.090314,-1.8477,-0.27041,0.046128,1.2322,0.11772,-1.4788,1.7991,-0.25615,-1.0739,-1.057,-1.0735 1.1431,0.42871,3.1159,-1.5939,-2.9454,-0.19916,-0.19318,0.41517,-1.6227,-0.27847,0.49362,-0.42705,-0.68381,0.18982,0.96843 1.4027,-1.7118,2.8555,2.3277,0.037776,1.2703,-1.8938,1.0708,-0.54198,0.9992,1.2347,0.21805,-0.68544,0.20795,0.71088 3.6278,-1.0588,1.7231,1.5923,-1.2732,1.2579,-0.83699,2.0857,-1.2449,2.1328,-0.55149,0.48863,1.3883,1.0209,-0.50158 3.1451,-0.99648,-1.5868,1.2116,-0.61574,0.024023,0.22755,-0.70413,0.88413,-2.4078,0.016921,-0.98765,-0.50941,-1.054,-0.7409 1.369,0.30224,0.14529,2.0249,-2.5863,-0.26677,-0.73707,-0.70671,0.75323,-0.88214,-0.95209,-0.2628,-1.2725,-0.23848,1.0978 0.48531,-1.3735,1.9945,-1.1284,-3.0752,1.8363,0.18689,1.1984,-1.7996,-1.6194,0.072119,-1.7654,0.4199,-1.0041,0.22842 1.7135,2.04,1.0626,1.8507,-0.11324,-2.2012,-0.20352,-0.38682,-0.34307,0.012677,-0.91345,-0.76563,0.66988,1.7592,0.70686 3.0738,0.058867,-0.30814,0.3955,-0.32135,-2.1964,0.3738,-1.3875,0.60566,-1.7527,-0.16133,-1.4355,-0.81091,0.26044,0.49972 -1.762,-2.6488,0.026266,-2.7122,-1.4836,0.47141,-1.7906,-1.473,-2.5313,0.76741,-0.34884,-0.17232,-0.06827,-1.1779,-0.18597 -1.9276,-2.1759,1.2523,-1.0285,-1.1363,1.0091,-0.93062,2.3634,-0.39271,1.1211,1.0689,-1.5807,1.0022,0.42172,-1.2143 -0.34535,-0.73216,2.1373,-1.2811,-1.3532,2.3008,-0.339,2.508,-1.9663,0.57765,0.93621,-0.80427,1.8928,-0.015911,-0.49556 -2.0961,-1.9687,0.16625,-1.8756,-2.021,-0.90695,-1.0766,-1.5734,-1.7295,0.72317,-0.032123,-0.17877,0.2285,-1.6285,-0.52068 1.6246,-1.6886,-2.6573,2.3479,0.82353,2.1898,-0.36306,1.0765,-1.3829,0.9166,1.9075,0.13789,1.0925,1.3345,0.42644 0.3381,-2.5007,2.2091,2.1369,-0.24095,1.0583,-1.1103,3.3337,-0.34351,0.84771,1.604,-0.61763,-0.28596,0.48566,-0.65027 -2.1166,-0.57722,-0.73374,2.2725,-1.0524,-0.45639,0.46615,-0.4961,-0.14398,0.63615,1.4403,0.7013,-1.4695,0.36177,-0.40763 4.1781,0.55288,1.5811,-2.8372,-2.2118,0.032412,-1.2156,1.2903,-1.2628,-1.705,-0.50921,-0.7631,-0.95296,-0.013309,-0.33857 3.7422,-0.86046,-2.6276,-4.3551,-1.7249,0.45425,1.2153,2.1175,-0.84279,-0.81565,1.6232,0.30177,0.024098,-0.34614,1.7585 0.70653,-1.2477,0.45948,3.139,-1.3726,1.8519,-0.84833,2.2389,-0.002789,0.026815,0.17435,-0.5946,-0.48389,0.73172,1.1214 1.034,0.27286,0.51484,1.3312,0.038957,-0.48241,0.13545,0.53811,1.4017,-1.8251,-1.4623,0.60135,0.073759,-0.32376,0.17815 -1.6066,-2.9131,0.63066,1.6546,-0.74824,-2.0944,0.37291,-1.2497,-0.065904,0.13272,0.86709,-0.72836,0.084445,-0.97408,-0.91962 -0.29951,1.0068,-0.54646,2.6939,2.7692,-0.21329,-0.37285,2.6584,-0.87422,0.77095,-0.44528,-0.66988,-0.21764,0.12473,-0.66172 0.5835,1.309,-2.3795,1.0111,-0.11935,1.0078,-1.5559,0.98368,0.78545,-1.073,1.1412,-1.2164,-0.33217,0.070666,-1.3795 -2.1966,-0.96449,0.26415,0.47747,-1.8676,-0.57952,0.10334,0.084293,0.68433,-0.51191,1.7982,0.25787,0.23394,-0.79987,-0.72435 -0.081983,1.3336,0.64445,0.95474,-2.5199,-0.84656,-0.24494,-0.34167,0.65886,-0.34932,0.26662,0.95408,0.8307,0.41414,0.97784 4.2247,-2.638,-0.99862,0.64956,-0.27042,1.3952,0.054996,-0.014938,-0.56745,1.5499,0.19168,-0.93697,0.76367,0.28334,2.0319 -1.3771,0.2308,1.1148,0.77971,-2.6589,-1.7545,0.98806,-0.61247,0.26474,0.15219,0.58371,0.52377,0.94807,-0.072932,0.42022 -2.2573,-0.068752,0.072298,1.6084,-1.1966,-1.1735,0.53245,0.76068,0.47037,-0.82803,1.6462,0.3931,-0.48791,0.021845,-0.15225 -2.475,1.6802,-1.2093,0.17592,2.1019,1.2983,1.4554,1.9539,-1.2903,0.54155,-0.89906,0.36764,-1.705,0.09094,0.1934 -2.4204,-1.0686,1.1719,1.2218,0.93758,-1.6729,0.87647,0.075962,0.46955,-0.44513,2.0221,-0.52254,-0.85112,0.15676,-1.3135 -1.9212,-1.3092,-0.51762,2.298,-0.37814,-0.59539,1.0894,-0.44397,0.61743,-0.39262,1.5657,-0.9071,-0.49623,-0.33021,-1.3224 0.80551,-1.943,-0.31312,0.85213,-0.30491,-2.0166,1.4866,-3.3007,-1.5056,1.0864,-0.92705,-0.74089,0.16128,0.47304,0.16671 0.45626,2.9022,-2.4337,-0.41167,-1.4809,0.10307,-0.78986,0.2854,0.26586,0.05824,-1.2524,-0.94891,1.3286,0.23314,-0.15831 -1.7294,1.9335,-1.7416,0.87597,-2.0911,1.7652,0.91039,-0.062879,-0.96,-0.65312,0.76023,0.93229,-0.20354,-0.95466,-0.28212 -0.22083,-3.126,1.9012,2.3425,-0.028683,0.56674,-0.11918,0.15234,0.19866,0.79863,1.3923,-0.61185,-0.39323,-1.5969,-0.87853 -0.69606,-1.4423,-1.1997,2.3171,-1.4043,0.32117,-0.21483,1.1632,0.77148,-0.58337,0.93629,-1.0631,-1.8387,-0.40966,0.52318 -2.0953,1.2695,-0.81281,0.2865,-1.1014,-1.2156,1.0124,1.6602,0.44166,-0.31263,-0.23398,0.10171,0.43997,0.41236,1.1831 -0.79091,-2.9605,1.1171,2.0748,0.57723,0.50605,-0.14517,-1.4203,0.11021,0.54864,1.8766,-0.34556,-0.37909,-0.77493,-0.78411 -0.10969,-0.62316,0.67752,2.913,-2.1031,-1.0458,0.45304,-0.36668,0.35884,-0.67914,0.55728,0.40587,0.076231,-0.31989,0.7758 4.6354,-1.34,-2.6053,0.30321,-0.70328,2.8251,0.17402,1.7829,-0.48652,-0.18523,-0.87211,-0.41974,-0.52776,1.0087,-1.1231 -0.75738,-3.1827,0.6511,-0.15664,0.16582,-0.15843,-1.1464,3.2235,-0.29669,1.5845,0.31973,-1.5202,0.83606,0.33476,-0.57502 1.8709,1.1987,-2.3074,-2.3845,-0.8866,-1.5619,1.1309,0.24923,0.92079,0.25419,1.0959,0.096688,0.18381,0.69689,1.9726 1.4715,0.9729,-0.64329,1.2756,1.7298,-0.78515,-1.1912,1.6703,0.090107,2.1065,0.93154,-0.27575,1.5126,0.028485,-1.7215 -1.537,-3.1396,1.3755,-1.5951,-0.73445,0.51457,-1.5735,2.7991,0.13389,0.6941,0.26514,-1.7636,0.6005,-0.27914,-0.62851 -0.52984,1.8347,-0.17298,-0.13451,-1.8976,0.078139,0.29651,2.1191,-1.5644,1.0703,-0.99549,-0.57504,-1.0909,0.84966,1.257 -0.61837,-1.1321,-0.025297,2.338,-0.51995,1.8316,-1.0006,1.0542,-0.35477,-2.8476,0.92923,-0.14651,-0.57255,-0.98923,0.099201 4.5233,-1.3198,0.10425,-3.2853,-0.569,-1.4712,0.17224,0.052776,-1.7798,-1.1932,2.0744,0.85006,2.1314,-0.40331,0.0085262 0.88921,-2.133,2.4557,-0.51771,0.67283,0.32865,-0.11605,4.3256,-0.88684,1.8211,-0.3659,-0.9889,0.47923,0.062189,0.24926 1.3787,1.5807,-0.0023224,-1.0245,-1.3676,-0.22722,-2.4978,-0.88477,-0.20322,0.26157,2.2711,0.061713,0.38729,-0.073276,-0.1823 4.9272,-2.3055,-0.74437,-0.16071,1.7177,-0.97555,2.5511,-1.2415,-0.89434,-2.2084,0.18741,-0.51932,1.6648,-0.11268,0.60454 3.3539,-2.4183,3.8126,0.46146,-1.7107,-0.031016,-0.31159,1.6172,-1.3676,0.28944,-0.70129,1.3297,-0.36212,-0.21704,-0.52918 1.8409,-3.9966,2.9472,1.3867,-0.83531,0.41281,-0.1915,0.6809,-0.97201,0.78035,0.17138,-0.86775,0.45113,-0.92971,-0.59957 0.82142,-0.29144,2.802,-2.2141,-2.6349,2.0291,-0.03393,1.0834,-2.5167,-0.4547,0.16198,-0.16192,-0.91819,-0.42925,0.098014 -0.67237,-1.0701,2.7431,-0.92707,-2.4183,0.28508,-1.0493,2.7092,-1.1185,-0.73732,0.827,0.19042,1.0615,-1.1818,0.45946 -2.1318,0.70348,-0.96034,0.33049,-2.0039,2.6386,0.96199,-0.73625,-0.81299,-0.14571,1.3431,-0.42804,-0.34543,-0.82782,-0.52184 -1.6587,-1.2232,2.6959,-0.89405,-2.0387,0.81959,-1.2555,1.5537,-0.13324,0.48651,1.5781,-0.74311,0.37792,-0.37484,-0.0030086 -0.45674,-3.1142,2.4029,-1.2874,-0.62359,0.058576,-0.044471,3.7566,-1.2574,1.1695,0.7145,-0.68182,1.1718,-0.47904,-1.3217 1.8134,-0.092049,-2.0542,1.494,2.77,-0.64857,0.90162,0.98154,-0.34084,-0.97203,0.20196,-1.8817,2.238,-0.77128,0.34876 -1.0532,-3.0207,1.0276,-2.2915,-0.26684,0.28692,-2.0416,1.892,-1.882,1.4066,-0.30736,-0.40791,0.97792,-0.23559,-0.53477 2.8162,1.5063,1.5146,0.41747,0.87927,-2.6835,-0.86594,-1.4548,-1.7341,0.053703,0.53126,-0.4437,0.32223,0.93428,0.57445 0.46212,-2.5663,0.13097,0.17577,-1.4682,-0.067099,1.2773,-2.1227,-0.92045,0.81333,-0.88256,-1.0448,-1.2875,-0.95608,0.30128 0.59428,-4.265,1.829,1.1111,0.949,0.15556,-0.33418,3.7876,-1.6691,0.5144,1.3818,-0.72953,0.20065,-0.32779,-0.3203 0.4377,-2.0474,2.0201,0.42326,-0.72376,-0.33862,-1.4642,3.6199,-0.27431,-0.24386,1.2165,0.22475,0.25333,-0.92367,-0.19766 0.21076,-0.23984,-0.068257,1.6362,-0.99809,-0.67597,-0.66018,1.6364,0.31726,-2.0213,1.5452,1.1871,-0.083669,-0.062859,-1.3801 0.38439,0.96421,0.82796,2.5472,0.61483,-0.71467,-1.0885,0.54965,-0.515,0.25649,1.9935,1.1032,-1.222,0.82753,-0.55057 -2.5086,-1.7821,0.15821,-1.1256,-1.1513,-1.1855,-1.4895,0.67443,0.25789,-0.44478,1.2668,-0.79498,0.30884,-0.7689,-0.27313 -2.1259,-0.16577,-3.0525,1.7949,0.052573,-0.25105,1.4834,-0.28934,-0.08042,0.52621,-0.032499,-0.51842,0.33553,0.47298,-0.1997 1.5576,2.4493,-0.46311,-1.0563,-1.1016,-2.1896,-1.4657,-1.1196,-0.13051,-0.76101,1.1384,-1.0578,1.2568,0.96242,0.30044 0.54745,-3.7958,2.8248,1.6111,-0.62268,-0.79962,0.59514,-0.67732,-1.8193,0.037893,1.1315,-0.13003,0.084099,-0.039563,-0.50432 -0.4512,-3.737,1.5307,1.7991,-0.40038,-2.0294,1.3729,-0.908,-1.6737,0.22475,0.97256,0.46424,0.74291,-0.4053,-1.0824 3.7507,-4.3923,-2.626,0.85051,0.53664,1.0237,2.8719,1.1622,-0.034648,-1.6607,0.95485,1.9994,0.47681,1.2994,0.41998 1.4696,2.1423,-1.0535,-0.12704,-1.0385,-1.1702,-1.6678,-1.0902,-0.40378,1.6996,1.7648,-0.66555,0.15571,0.33291,0.10341 2.6174,0.95208,-0.98341,-1.2357,-1.8615,-1.5317,-0.47254,-0.45822,1.7023,-2.2043,-0.52688,-0.17176,-0.18145,-0.017132,-1.4585 -1.2949,-2.3179,0.2522,0.95121,-0.14374,-3.1867,1.3861,-0.73239,-1.3968,0.7739,0.20144,0.49291,1.5467,0.66351,-0.97128 0.33957,0.70082,-2.7749,1.7908,-0.31713,0.65648,-1.0591,-0.17776,-0.21208,0.6825,1.9405,-0.73916,-0.25603,0.41549,-0.077528 3.4471,0.14895,1.0249,-1.2365,-2.5116,0.39198,-2.0283,0.073775,0.39571,-0.51625,-0.753,-0.2906,-0.58958,0.14022,-0.4363 -1.4494,-0.40032,-1.2413,-1.0638,-0.11487,-1.7994,1.412,0.10012,-2.3378,1.4895,-0.71018,0.046124,2.6288,0.98693,-0.3079 -0.79279,2.9873,-1.0913,0.37155,-2.1531,0.63585,0.4523,0.44642,-1.3562,0.13496,-1.658,0.072113,1.1202,0.018403,1.3378 4.5917,-3.083,0.15915,-0.58009,-0.35049,-0.004602,-0.074819,-0.0027164,-0.55612,1.6604,1.6104,1.291,0.56971,-0.28744,-0.085991 -0.92284,-0.89137,-2.3944,0.20172,-1.7965,-0.13086,-1.6206,-1.8777,-0.27647,1.1497,-0.43257,1.3205,-0.84346,-0.35811,0.40717 -0.92938,-2.9286,1.1055,1.3321,-1.5687,-1.7565,0.57792,-0.021667,-0.27922,0.58322,1.2275,0.61586,0.63735,-0.25174,-1.3742 -2.6496,-0.91373,-1.5813,-0.68245,-0.89975,-2.0296,0.17437,-0.15947,-0.62193,0.67786,0.40403,0.12187,1.3947,1.4352,-0.26047 -2.2399,-1.5507,-2.0467,-0.083928,1.3173,-1.6391,0.67417,1.6734,-1.5605,1.431,-1.0574,-0.73104,0.59489,1.8428,-0.43055 1.2618,0.17091,-1.4886,1.8773,3.8992,-0.43405,-0.03943,1.9627,-0.96715,1.1888,0.67176,-0.98267,1.2637,-0.88269,-0.71812 3.0749,-0.062371,-0.87687,0.65862,-0.32432,-1.3079,0.13291,-2.2787,0.19855,-1.4989,0.6433,-2.1294,0.083366,0.47342,1.6457 -1.8057,-2.4624,-1.674,-0.23971,-0.15527,-2.3054,-0.98577,-0.37987,-1.1046,-0.74793,0.63328,1.193,0.23038,0.42165,-0.89824 -1.8823,-1.5582,-1.8437,-0.48668,-1.0147,-2.2991,-1.1717,-1.2821,-0.64265,-0.17134,-0.017002,1.5563,1.1273,0.22257,0.21367 3.2215,0.12059,0.93948,0.46864,-1.3006,-1.3284,-2.0063,-1.684,0.1202,-0.58081,0.91566,-0.97315,-0.57368,1.6821,0.83826 -2.1997,-1.125,-2.858,-0.19971,-1.7422,-1.3728,0.14875,-0.90167,-0.26251,-0.6343,-0.29219,-0.1101,-0.62015,-0.23369,-1.2355 -1.302,0.71329,0.066246,0.82176,-2.4238,0.27946,-0.39538,-0.22189,0.12402,0.50397,1.5599,1.0471,-1.1146,-0.12042,0.37833 1.331,0.82047,-1.8421,0.89385,1.0656,-1.2734,-0.87951,0.53022,2.0775,-0.059757,0.56103,-1.5697,0.91703,0.15659,0.0073536 2.5519,-1.7971,-0.60032,1.4616,1.6293,0.848,0.36112,-1.3032,-0.56851,-1.132,2.5977,0.88671,2.0507,-0.41962,0.21805 2.4321,-0.84859,-2.2733,-0.59266,-1.1687,-1.3857,0.93571,0.6172,2.4589,0.35537,0.79798,0.5656,0.46236,0.89597,0.31185 -2.3184,-0.88136,-2.1699,-0.23062,-0.26462,-2.2909,0.29844,0.16598,-0.78098,0.53821,0.42189,0.17093,1.1743,1.0795,-0.99884 -1.683,-2.8101,0.93757,1.5683,-0.87229,-1.9969,0.69081,0.76619,-0.15876,-0.6711,1.3903,-0.11606,-0.12237,0.094941,-1.5454 1.5961,-0.64963,0.60804,2.7987,-1.5394,1.1092,-1.1025,-1.0326,0.032293,-0.090948,-0.73389,0.12743,-0.99877,-0.74798,0.30522 -1.5498,-2.8822,-1.2467,-0.065,-1.5509,0.30062,-1.942,0.28137,0.23405,0.9481,-0.59629,-0.65456,-0.39213,-0.25459,0.099717 -0.29313,-2.542,-0.9768,-0.59214,-1.3311,-0.080485,-2.7,0.46275,-0.55998,0.74336,-0.53595,0.82458,-0.11274,-0.53608,1.3537 -1.3132,-0.87776,-3.0004,0.69349,-1.5022,-2.0547,-1.1923,-0.35119,-0.08744,0.18896,-0.32145,1.0186,-1.035,0.32247,0.17704 1.4872,0.63344,-1.3816,0.70987,0.57509,-1.3041,-0.52314,-0.89951,1.5,1.0185,2.0802,-0.16523,1.4948,0.4133,0.53152 3.3456,1.8526,-1.1695,-1.9263,-1.6503,-1.1467,-0.52122,-0.59875,0.78991,-2.4426,-0.27876,-1.2822,-0.021089,-0.011048,-0.76605 3.9808,-0.26413,-0.44065,-0.13658,0.47832,-2.4741,0.55776,-1.4488,0.5101,0.72125,1.0374,-0.86923,0.68215,-0.21759,1.3263 -2.9655,-2.0766,1.6347,-1.9417,-1.8821,-0.28855,-0.91599,-1.1085,-0.99392,-0.29909,0.92671,-0.68585,0.12355,-0.75683,-0.23218 3.4653,1.3313,-0.83539,0.68247,0.53019,-1.9595,1.4758,-0.64738,0.75387,-1.1806,-2.276,-1.3254,-0.11729,0.45247,-1.1085 -2.9164,0.2539,-1.7185,-0.53302,0.11291,-2.3371,1.6334,1.2315,-0.80016,0.54956,-0.61957,-1.1933,0.30954,0.55956,0.28318 0.68718,1.2319,-0.15823,-0.40148,-3.2226,-0.35319,-0.19293,0.20644,0.18253,-2.6404,-0.71824,0.27031,-0.49908,-0.68372,-0.11541 1.5407,-0.096457,-1.3374,1.7006,-1.4107,-0.40951,2.6479,-0.47876,-0.7661,0.095816,-1.3763,-0.017238,-0.91933,-0.41285,-0.84314 -0.38868,-1.7884,0.93786,0.51279,-1.8782,0.97326,-1.0611,3.2324,0.033329,0.58042,0.71022,-0.88154,0.97452,0.095028,-0.39523 -2.7491,-1.0708,-2.9179,-0.63275,-0.9407,-0.59209,-0.69627,0.10745,0.27874,-0.80248,0.017007,-0.1378,-1.0777,-0.65514,-0.60224 -0.66478,-3.1269,0.099523,0.33609,-0.82216,0.29486,-1.606,0.90331,0.16071,1.0843,0.43412,-1.1042,-0.013394,-0.61178,-0.72138 1.1179,0.23609,-1.497,2.4581,0.42868,-0.30246,-1.2102,0.14751,0.13078,-1.0009,2.0386,-0.62055,-0.70911,-0.18103,-1.5597 -0.27584,-1.9481,-2.1065,0.99223,-1.2601,-0.46712,-1.7443,0.82772,-0.38829,0.2888,-0.57873,-0.12365,-1.243,-0.84518,0.98874 -0.44043,-0.63055,-2.9807,1.2886,-1.2713,-1.7133,-0.44107,0.098362,-0.35121,-0.22732,-0.19155,0.73969,-0.78613,0.0087814,-0.030989 3.0917,-3.6298,-0.25418,1.1445,0.7883,1.4258,0.17591,1.3675,-1.3159,2.573,1.5531,1.8946,1.6535,0.22815,0.32516 -0.24239,-1.6323,-1.6188,1.1296,-1.3176,0.053737,-1.9213,0.39751,0.23015,1.0022,-0.56038,-0.40856,-0.42692,-0.1874,1.5173 2.4145,-1.5294,0.058693,1.2984,-1.3543,3.5371,1.6986,0.12688,-1.9272,0.18325,-1.2916,-1.1476,0.040066,0.41953,-0.21504 2.6017,-0.66662,-0.20797,0.6221,-0.77614,-2.1742,-0.76688,-0.83216,0.56777,0.30263,1.2401,-0.46596,0.74663,1.0822,0.79412 0.75802,-0.99751,-3.2267,-1.2302,-2.2634,2.2046,0.21929,2.3206,-0.2514,-0.24953,-0.057016,1.1977,1.0455,0.082569,0.28971 1.9953,0.63605,0.97846,0.3439,-1.9451,-2.6773,-0.60417,-0.16881,-0.19841,-0.26201,-0.5133,0.28945,1.04,1.0342,-0.10165 3.2277,-2.2236,-1.5156,-2.4531,-2.942,1.0102,0.81586,1.7579,-0.046591,0.4557,-0.3337,1.841,0.028568,0.17789,0.047624 1.6305,0.48968,0.57326,0.33791,-2.5875,-1.2328,-1.5249,0.041688,0.29537,-0.88797,0.50489,0.52651,0.44517,1.1399,0.56597 0.81075,1.097,-1.4799,1.5453,0.77317,0.25543,0.16466,-0.18249,-0.58538,-0.27985,-2.8792,-1.2711,0.59066,-0.16202,0.49627 2.3496,-0.35443,3.7033,-1.5549,-2.6781,-0.36405,-1.5485,1.2426,-1.8029,-1.1516,-0.012577,0.0894,-0.359,-0.19288,0.35514 0.5775,2.1515,-1.3162,1.7615,-0.2059,-0.23632,-0.72497,-0.49378,-0.31406,0.73676,0.18663,-0.32175,0.15229,1.3686,0.099062 -1.4979,-0.71466,0.33432,2.1209,-0.67633,-0.25627,0.16954,1.3598,1.0353,-1.3494,1.1056,-0.21306,-2.6891,-0.55619,-0.0061266 4.5337,-1.7242,0.016566,1.2666,-1.1595,-0.4906,-0.78958,0.2126,0.11119,-0.56669,-0.7999,-0.89015,-0.67484,0.0031128,-0.56677 -0.35415,-1.6093,1.0851,1.6331,-0.81489,2.4284,-1.0167,0.22521,-1.5605,-0.033529,2.0612,-0.87071,-1.1107,0.84651,0.86586 -2.2374,-0.060187,-3.2663,-0.028145,-1.2194,-0.99308,0.53481,0.51184,0.58124,0.60113,-0.3411,-0.097532,-0.16503,0.93529,-1.0656 -1.8302,-0.70304,1.3332,-0.39294,-0.033704,0.97055,-0.53951,3.0062,-0.59921,0.045239,1.2417,-1.0113,0.52993,0.097176,-0.4573 -1.8285,0.20464,-0.57862,1.9436,-0.95333,-1.5748,0.86257,1.2893,0.76024,-0.16617,1.2088,0.24154,-1.0605,0.45733,-0.27526 -2.3713,1.9428,-1.3723,0.79233,-1.493,0.19841,0.70406,1.2169,0.09057,-1.0385,0.20933,1.2643,-0.32054,0.015543,-0.3215 -2.1209,0.53213,2.7614,-0.86459,-1.5205,-0.95661,0.32643,-0.88127,-1.8895,-1.2215,1.1591,0.17752,-0.6171,1.0934,0.16932 -1.4688,-0.77446,-0.1108,0.64747,-1.3899,-1.4895,0.59335,-1.9278,-0.27968,1.3312,1.4919,-0.54244,-0.052851,0.87786,-0.59518 1.8079,-1.4874,1.2336,0.72898,0.37494,-1.2456,-0.92597,2.0392,1.279,-0.79152,-0.42742,1.1306,1.3161,-0.36739,-0.22007 3.531,-0.28685,-1.7172,-2.5758,-1.5867,-0.90256,0.50361,-0.45942,1.149,-1.8316,1.0281,-0.54949,0.69542,0.032161,0.31097 0.58146,1.0219,-0.35734,1.9711,1.4593,-0.34211,1.2014,2.1627,-0.11779,0.81532,-1.9351,-0.39079,0.48646,-0.57643,-0.79425 -1.5588,-0.66492,-0.64857,2.0315,-0.087792,-1.8246,1.3102,-0.69673,-0.56415,1.4238,1.4017,-0.1143,-0.029904,0.99587,-0.84839 -2.5975,0.004032,-0.36741,1.0661,-1.7848,-0.99431,0.9091,0.59802,1.127,-0.3506,1.4524,0.39219,-0.97994,-0.098448,-0.50007 -2.2878,0.10237,-2.1261,-0.59744,1.1926,0.054813,0.77953,1.9688,-0.41077,1.4592,0.1528,-1.0792,-1.0636,0.61092,-1.2035 -1.8042,1.9792,-2.0791,0.99277,-1.5346,2.1763,-0.23286,0.82781,-1.0844,-0.11273,0.35023,1.1882,0.098286,0.038492,-0.98425 -0.71556,0.13525,0.41079,1.009,-2.0542,-2.1397,1.0021,-0.026108,-0.03311,1.4225,0.30789,-0.58176,0.34916,0.18462,0.14067 -0.87873,1.4173,0.13944,2.3654,0.39098,-0.65319,-0.70676,-0.061514,-0.67171,-0.87056,1.0265,1.2753,-2.3426,0.36766,-0.69476 2.7254,-0.89368,-0.0023281,0.42632,-0.90116,-1.1629,-1.2625,-0.42891,0.78992,-0.01117,1.5282,0.84051,1.8873,0.57023,-1.0609 -0.48441,-1.2631,0.48748,2.2685,-1.1059,-0.82865,0.67183,-1.2541,-0.62691,0.71959,2.3387,-0.060005,-1.0597,0.4985,-0.10049 0.61304,-0.28406,-1.3952,3.0978,-0.27776,-1.2854,-0.54835,0.40862,-0.51416,-2.5175,0.36811,-0.74282,-0.51704,-0.40952,-0.74003 1.2562,-1.8538,-1.4862,-2.3322,-2.3528,-0.49283,-0.081543,3.1306,-0.34154,-0.3748,-0.29143,1.3439,1.0976,-0.23893,-0.81815 -1.7459,-0.92764,0.64753,0.90683,-1.1479,-0.45329,-0.31118,1.5777,1.0054,-0.54808,1.9825,0.1961,-1.5736,-0.52121,-1.0352 -2.4855,0.22169,-3.9697,-1.1653,0.92305,-1.0007,-0.076976,0.054888,-0.80686,-0.83462,-2.0668,0.51683,-0.44807,-0.4389,0.4923 2.7797,-2.6792,-1.5099,1.2399,-0.68416,-0.32117,1.7451,0.62985,1.1235,0.14132,-0.97049,0.51186,0.26606,1.0053,0.40071 3.9945,-1.4797,-1.9242,-0.30657,0.77375,-1.6826,2.6686,-0.46457,1.3525,-0.32717,0.019886,0.41933,-0.71095,-0.52587,0.84092 -1.118,-1.3182,-0.70334,0.72172,0.17548,-0.92096,-0.66357,-2.8916,-1.7108,1.4143,-0.07573,0.84865,-0.015574,-0.8119,0.004508 3.1117,-1.8585,-1.7529,-0.10389,-0.28226,-0.92561,2.4407,1.2682,1.6261,0.48606,-0.58407,1.3097,-0.63605,0.24055,0.080858 4.8822,-2.9348,-1.0035,-2.2252,-0.56075,-1.7301,2.2905,1.7131,-0.12099,0.64944,0.68974,0.88671,-1.3938,0.13786,0.94831 1.7389,1.7809,-2.4602,0.14586,-0.5074,-1.0466,0.0043194,0.22701,1.5917,0.99871,-1.0878,-1.2469,0.28289,0.23445,-0.52805 2.9107,-1.6537,-2.4514,-1.1787,-1.325,-0.59724,2.3952,1.1014,2.3898,-0.22117,0.17897,1.7711,-0.12335,1.0867,0.67147 2.3949,1.1781,-0.8198,-0.026373,-1.4728,-1.0638,-1.7427,-1.2599,0.87462,1.2208,1.2623,-1.1601,0.48241,-0.038028,0.47288 3.0483,-3.7055,-2.651,1.5478,-0.63568,0.84938,2.5126,1.9149,-0.00056124,-0.24043,-0.58446,1.6828,0.12829,0.85197,-0.74928 4.122,-3.0225,-1.4185,-0.30697,-0.39297,-0.45941,2.9522,0.92405,0.94522,0.23653,-0.93644,1.6099,0.20223,1.0379,0.66618 1.3495,0.061135,0.46132,0.71737,4.4689,-1.4678,0.10077,-0.82494,-2.2132,-1.455,1.3371,-1.0383,1.3417,-0.77369,0.63951 3.7778,-0.6795,-0.086606,1.6793,-0.67295,-0.20698,0.38231,-1.2694,0.45755,-2.4798,-1.2968,-0.54368,-0.067896,-0.096946,-0.73559 -2.1522,3.1525,0.71712,-0.29122,-0.91169,0.39123,1.0571,-0.53201,-2.9006,0.54239,0.04321,0.3966,-0.24447,0.28972,0.28225 2.885,0.90002,0.77192,0.37366,1.4564,-1.9871,0.048596,-0.0065256,-0.084094,1.121,0.59707,0.67237,2.3746,1.0483,-1.2758 -1.1762,1.527,0.55992,1.879,1.5818,-0.0090668,1.793,0.9824,-2.7119,1.7125,0.28534,-0.47012,-1.1033,0.96481,0.84039 -1.6601,-2.2699,-1.5594,-0.73432,0.81167,0.4327,-2.584,-0.78903,-1.8975,-0.95696,0.30679,2.6318,-1.378,-0.41309,0.30621 1.3305,-0.44828,-0.25763,1.3365,-2.1093,2.829,-0.84974,-0.40102,-0.70555,-0.57511,-0.069767,-0.27062,0.63303,-0.21001,0.84293 0.70173,0.092002,0.76165,1.6511,-1.0392,-0.88756,2.0554,0.30242,0.17739,1.3378,-2.6646,-0.10837,0.19119,-0.15031,0.32884 4.3351,-1.8868,-0.65069,-0.14249,0.12402,-0.69072,1.2754,-1.0408,0.76787,1.1941,0.80165,-0.0088907,0.41141,0.97316,1.5924 3.1573,0.28449,1.3684,-0.38658,-2.7006,-0.8703,-1.7662,-0.2759,0.33589,-1.0764,-1.0435,-0.94769,-1.0591,-0.43446,-0.31024 5.6783,-3.1366,0.17201,-1.0476,0.32529,2.0252,-0.47831,-0.2467,-2.8461,-0.23711,1.1879,-0.46274,0.77668,0.097318,1.039 3.5775,-3.1038,-2.1034,-2.0145,-2.1377,-0.33037,1.7817,2.4109,1.328,0.023942,-0.1126,2.0547,-0.05623,0.7727,-0.17856 1.8441,2.3014,-1.5064,1.5695,0.24939,-1.1692,-0.022661,-0.64188,0.29953,0.72596,-2.2995,-1.8005,-0.1529,0.43076,0.0962 2.8585,-1.2275,-1.9675,0.1429,0.87367,-1.6801,2.2611,0.37133,2.175,0.29019,0.38848,0.87476,-0.28189,0.7978,0.54421 -0.028687,3.9154,0.24987,-0.90795,-0.15267,-0.93197,-0.27869,0.68772,-2.2004,-0.74276,-1.5361,-1.8714,0.50487,0.18866,0.42615 -0.10752,0.63631,0.55217,0.5232,-2.8073,0.69772,-0.68738,0.27292,0.79614,-0.25074,1.253,0.59476,0.40736,0.80542,1.3458 3.1871,2.1324,1.1271,-1.8886,-0.43968,-2.7575,-0.28828,-0.056226,-0.018524,-1.4562,-0.8148,-1.0205,0.5559,0.89514,0.039702 0.75796,0.89454,-0.20881,2.5412,-1.5891,-0.78923,0.25989,-1.1096,0.34629,-0.19599,-0.80574,0.23318,0.94708,0.11177,0.46685 4.763,-0.036051,0.22998,-3.3005,-0.43986,-3.609,0.75181,0.39976,-0.22988,-1.6264,0.45681,-0.3841,-0.23624,0.88914,-0.086229 3.3743,-0.078641,-2.208,0.60335,0.23376,-1.3218,1.1646,-1.2558,0.1308,1.0496,0.75817,-1.2655,-0.40955,-0.74481,2.1895 -1.4874,0.38906,-1.9641,2.2444,-1.666,-0.44293,1.2212,0.59033,0.62661,-0.11684,0.41991,-0.56573,-0.1398,0.62756,-0.0093526 1.5361,2.3367,1.6813,-0.60029,-1.6775,-1.2169,-2.4847,-0.36641,-0.97502,-1.3879,1.3229,0.25544,0.17453,0.12785,0.19751 1.6336,2.7579,1.7289,0.069102,-1.4017,-2.3562,-0.37482,-0.39708,-0.48473,0.0063486,-1.5546,-0.48761,0.11569,0.59338,0.35111 -0.048878,2.4758,2.211,0.12029,-1.021,-2.024,-1.1422,-0.72564,-0.84059,-0.90466,0.6899,0.48687,0.574,1.0703,-0.17077 1.9011,-2.6024,-0.49618,2.1594,3.0353,-0.29817,-1.1832,1.1568,-0.3868,-2.5748,1.8766,-1.0263,0.12327,0.29647,-0.31055 -0.54877,2.569,-0.56581,1.4161,0.52879,-0.30605,-0.52851,-0.2062,-2.6396,1.1328,0.0073447,-0.57534,-0.51526,0.55645,0.14584 0.077585,0.44705,0.83427,1.7297,2.1875,-2.3093,-0.75216,1.9197,0.49571,-0.76827,-0.69891,-0.38863,-0.034257,0.40061,-0.8215 6.1482,-2.3963,-0.083332,-1.2326,-0.17783,-1.7877,0.85671,-0.50144,0.64949,-0.94409,0.12384,0.066356,-0.21951,0.54252,-0.4079 1.6889,3.5219,1.2934,-0.82669,-0.47255,-2.1856,-0.66048,0.241,-0.52813,0.19844,-1.9549,-0.73225,0.1178,0.055154,0.023489 0.020376,0.94271,0.28319,2.9395,1.3493,-2.6542,-0.5821,0.49702,-0.019036,-1.4432,0.59618,-0.41307,-0.3965,1.2148,-0.36683 6.2461,-3.6779,-0.99913,-1.165,-0.59683,-0.56998,0.17297,2.2262,0.27924,-0.41893,0.078369,0.1407,-1.0839,0.27025,-1.2737 0.10842,1.8313,1.2328,1.6655,-0.85166,-2.0264,-1.0265,0.13772,0.15481,-0.81836,0.74008,1.036,0.42768,1.4041,-0.32976 -1.756,3.2756,0.58431,0.98878,-0.6388,-0.94389,-0.090412,1.3777,-1.1682,0.37219,0.19736,0.70265,-0.033483,1.3145,-0.48049 5.898,-2.2347,-0.29581,-0.72498,-0.78196,1.1088,-0.85384,1.1665,-0.47316,1.0906,-0.56793,0.32569,0.45956,0.48458,-1.2924 2.1588,2.1477,-0.30635,1.2144,1.079,-1.9691,-0.77692,-0.86391,-0.82377,0.87866,0.31635,-1.3474,0.52191,0.79165,0.1634 -1.2405,2.3237,1.4729,0.17532,-1.0021,-0.81864,-0.94427,0.88031,-1.1205,-1.5855,1.6854,1.2991,-0.90313,1.013,-0.69089 2.1531,0.58106,-0.56994,2.1033,-0.001416,-1.5077,-0.8831,-1.925,-0.46009,-0.11006,0.6208,-0.76942,0.50698,1.1134,0.59794 3.1303,1.2699,0.55514,-2.1732,-1.7384,-0.94847,-1.6811,-0.76372,-0.88519,-2.1737,0.89624,-0.55943,1.033,0.85044,0.78154 3.0313,0.836,-2.5325,-2.5576,-1.4618,-0.50187,0.49827,-0.14445,0.54675,-1.7378,1.6853,-0.94837,-0.18615,0.2705,0.84592 2.8835,0.61899,-1.3844,-1.088,-1.7033,-0.29432,-1.4887,-0.93126,1.1364,0.81655,1.3187,-0.73834,-0.18677,-0.022651,0.65425 -2.3221,-1.6911,-1.0329,0.51464,-2.0859,-0.84141,-0.75651,0.08774,0.56605,-0.17307,1.1845,-0.65287,-0.49183,-0.64579,-0.81588 -0.55978,-3.4146,-0.58474,0.93807,-1.5898,-0.41887,-1.3063,-0.15384,0.54559,1.0808,0.29224,-0.7269,0.23038,-0.57465,-0.60536 2.5401,0.40807,-0.51792,-2.6615,-0.62254,-1.8331,0.13221,-0.54521,0.27291,0.71927,1.7011,0.67383,2.0844,-0.024294,1.0351 -0.45533,-2.9704,0.58023,1.5002,-1.4498,0.56784,-0.94315,1.2683,0.66557,0.99755,1.337,-1.4623,0.2872,-0.29423,-0.70971 0.53271,-0.97183,-1.6505,1.9435,-0.33589,-0.33558,2.435,0.82607,0.033061,1.2217,-1.8991,0.10577,0.77288,0.211,-0.61521 -0.97077,-2.565,-1.3811,2.1616,-1.1098,-0.77266,-0.58768,-0.46988,0.36693,0.34372,0.81571,-0.72634,-0.38784,-0.85971,-0.8732 -0.94725,-0.91973,-3.324,2.0885,0.060838,-0.92144,0.17532,-0.38669,-0.10453,0.427,-0.50481,0.52522,0.3745,0.71414,-0.52823 -0.49803,-0.95334,-2.7086,1.0429,-1.2996,-1.8085,0.059994,-0.91357,0.44433,1.0365,-1.2268,0.87689,0.83848,0.189,-0.3075 -1.4201,-1.5557,-2.2825,0.31561,-1.9025,-1.5485,-1.5987,-0.96767,-0.27673,0.46198,-0.43777,1.0342,0.6736,-0.65352,0.1483 -2.2378,0.68039,-3.8558,-0.67981,-0.56502,1.1291,0.60193,0.72138,0.10455,0.25016,-1.1764,-0.69856,0.34451,-0.031674,-0.53341 -3.1564,0.84597,-1.3608,0.25804,-0.33464,-0.40477,1.6873,0.82827,0.95927,0.49368,0.48739,-0.090106,-1.1819,0.11056,-0.89765 -1.0023,-0.056867,0.38408,3.1698,-0.65264,-0.40792,1.7217,-1.487,-0.67237,0.28948,0.916,0.12098,-0.060859,0.10331,0.59529 -0.64036,-1.3919,-1.8855,-0.46856,-2.0044,-2.0568,-0.25343,-1.4025,-0.14441,0.36761,-1.2254,0.85434,0.84352,-0.55538,-0.64419 -0.69547,3.2548,-0.62111,-0.044037,0.16574,-1.7838,-0.70083,0.26098,-1.0219,0.35586,-0.1248,-0.44234,0.19294,1.0798,-0.46451 -0.066415,-2.0062,0.76121,-0.94914,-3.0914,0.72139,-0.43372,0.033201,0.4465,1.2005,-0.32556,-0.84075,0.65181,-0.88072,-0.21867 -2.22,-2.549,2.7408,-2.1692,-0.84998,0.96216,-1.0097,1.3005,-0.15674,0.86463,0.39544,-1.1423,0.37712,-1.4497,-0.62164 0.54036,-1.3166,0.91348,0.84261,-2.8284,0.79167,0.051955,-0.12476,1.207,1.0109,-0.029495,-1.0381,0.15923,-0.33683,0.29253 -2.1409,-0.86354,-1.526,-0.65024,-1.7951,-1.7643,-0.63602,-1.2663,-0.16143,0.70405,0.34879,0.59332,1.1887,0.22234,-0.14507 2.0274,-0.78353,-2.0049,0.88459,2.4527,-0.096798,1.6698,0.49469,0.48252,-1.3285,0.80576,-0.89966,2.0294,-0.1856,1.1451 -2.6215,0.27687,-2.4163,0.99835,-1.1814,-0.40515,1.6065,0.34603,0.48315,0.77122,0.27427,-0.16935,0.051574,0.85943,-0.92053 -1.0324,-2.1266,-2.8295,2.2519,-0.5231,-0.92606,-0.67072,-1.7014,-0.25006,-0.11472,-0.58354,1.0258,-0.15629,-0.97182,0.046895 4.5575,-1.7783,1.7614,-1.7599,-0.9341,-1.0837,0.204,3.0682,-0.88367,-1.0136,-0.66676,-0.091512,-1.158,-0.13131,-1.6148 0.019106,1.7154,0.7091,-0.5435,-0.94548,0.4474,-0.029775,2.5844,-1.6252,0.66812,-1.3713,-1.1369,-0.97742,1.5243,0.7334 -0.96695,-1.825,1.9142,1.4371,-1.7936,1.0146,-0.52023,-0.14071,0.88916,0.782,1.1702,-0.14916,-0.49684,-1.1167,0.2201 0.27941,1.5044,-2.2201,1.6648,1.0612,-0.81863,-1.1777,1.0898,1.3857,0.04917,-0.24822,-1.8564,-0.22029,-0.38464,-0.069275 -0.59946,2.3791,-1.0981,1.4088,0.27072,-0.54488,-1.2751,1.2755,0.81133,0.067995,-0.97414,-0.55372,0.53929,0.45218,-0.12896 -1.9403,-3.2381,-0.357,0.99064,-0.030521,-0.092322,-0.98274,-0.61581,0.86477,0.54342,0.075714,-1.5121,-1.0633,-1.3015,-0.15897 1.4384,-0.95892,1.3334,2.0306,-1.6457,2.0282,-1.5729,1.9874,-0.69441,1.1301,0.082406,-0.11421,1.1987,0.69486,0.39921 -1.5898,-2.4324,0.34701,-1.5714,-2.2293,0.0002956,-0.76547,-1.6001,-1.0274,0.66788,0.032462,0.67981,0.2378,-0.94746,-0.84829 2.3217,0.19904,2.1889,1.6625,-1.0925,-0.64599,-1.5349,-1.2266,-0.61904,-0.90374,0.33309,-0.24589,-1.5928,0.73291,1.2045 -2.5421,-0.6403,0.086604,0.066116,-2.6891,-1.2277,0.34296,-1.3236,0.0052037,0.18071,1.0195,0.26152,0.51729,-0.32108,-0.27482 2.6825,0.5833,-0.79169,1.3104,-1.157,-1.0633,-0.7508,-1.9749,0.9237,-1.6389,-0.72155,-1.2114,-1.0341,0.3749,0.21511 -0.712,-2.6032,1.7534,0.46947,-1.9331,1.3121,-0.48768,0.77443,0.9328,1.8392,0.47262,-0.59033,0.50401,-0.60434,-0.39014 0.54355,2.8906,-1.9794,0.0006683,-1.2599,-0.46755,-0.70616,0.56516,0.67442,0.3089,-1.5636,-0.70408,1.2125,0.24958,-0.20497 1.4666,0.5017,-1.6268,1.8893,0.27772,0.24779,-1.2163,-1.5793,0.049317,-1.1693,1.9722,-1.0769,0.54524,1.035,0.35624 -2.41,-1.9231,-1.0665,1.3359,-0.6936,-1.4389,0.53255,-0.3166,0.72287,-0.33292,1.0208,-0.73795,-1.6369,-0.70456,-1.1611 -1.1651,-1.1008,1.1206,2.321,-1.3497,0.17286,-0.58486,1.239,1.1552,-0.44934,1.0692,0.028937,-1.5202,-1.0681,0.027414 4.0302,-1.9431,1.7711,1.616,-1.2366,1.8823,0.17002,-0.44961,-1.6299,-1.2296,-1.0786,-0.63762,-0.98125,-0.41227,0.38482 -1.2619,-3.2707,0.6214,-0.53733,-1.8626,0.40057,-1.039,-1.1569,0.65678,1.8485,-0.75724,-0.46786,-0.24388,-1.0276,-0.48152 -2.9191,-2.485,-0.46554,-0.9174,-0.31871,1.3654,-1.7787,1.0464,0.44364,-0.15968,0.29495,-1.3775,-0.227,-0.52119,-0.21162 2.9457,-0.93962,-2.0587,-0.21982,-1.2908,-0.45511,0.21082,-0.98662,1.5761,0.38587,0.84798,-0.3264,-0.99852,-0.58611,1.619 -2.1721,-3.5806,-0.53792,-0.99876,-0.9783,-2.2052,-1.0012,0.15878,-1.0742,-0.32473,0.49933,0.38437,0.65716,-0.56958,-1.3907 -0.55929,-2.2409,-1.7837,0.8981,0.96495,-3.7361,0.17845,-0.049162,-2.1407,0.76426,-0.90884,1.525,1.8079,0.55103,-0.1165 1.5773,1.0418,-0.2768,2.9235,-0.6777,-0.09602,0.67291,-0.58879,-0.68948,0.20338,-0.98283,-0.26214,0.40075,0.4967,1.234 3.2847,-1.5092,1.5293,2.2561,0.023504,0.49903,-0.094246,-1.3921,-1.5137,-1.0415,0.4974,1.1949,0.75216,-0.26488,-1.6003 0.034654,-3.7464,1.8726,1.61,-0.88623,1.3229,-0.45255,1.4352,-0.3445,1.7145,1.056,-0.96448,0.84958,0.049193,-0.97478 -1.74,-1.049,-1.5655,1.278,2.0538,-0.89843,1.8423,0.63204,-0.89772,-0.30612,0.24521,-1.5307,-1.6796,-0.4399,-0.21709 2.3576,0.50692,-1.9037,-0.73894,-1.2072,-2.147,0.27812,-0.37544,1.3661,0.98861,1.228,-0.63175,-0.55588,-0.034791,1.5326 0.49522,-2.4886,-0.85856,-0.62471,-0.96344,-1.7128,-0.38327,-1.9935,-0.42726,1.0398,-1.7548,2.2357,0.0015694,-0.82866,-0.63893 4.694,-0.38818,2.0051,-2.0827,-0.89702,-1.6975,-0.83754,0.93886,-1.6978,-1.1505,1.0516,0.87439,0.7283,0.69737,-0.5498 -0.23448,-0.022686,0.39178,0.9001,-1.5856,-1.739,2.2581,-0.65146,-0.048052,1.7011,-1.3325,0.10305,0.69756,0.047657,0.016757 4.1091,-0.53707,-0.55826,-2.0049,-1.359,-1.7612,-0.59015,-0.88657,1.423,-0.45567,0.76471,-0.72467,-0.10969,-0.7767,0.35632 0.18853,-3.3498,1.2887,2.0856,-0.79874,-1.1414,1.3825,-0.95352,-1.4498,0.13571,0.45826,0.14964,1.1362,-1.6863,-1.326 -0.8162,-2.7347,-1.6142,1.5195,-0.024109,-1.8163,-0.098675,-1.6036,-1.0029,0.65462,-0.36862,1.1289,1.0332,-0.46065,-0.56424 1.004,0.25705,3.3267,-0.1209,-2.1063,-2.0054,1.1508,-0.41431,-0.90028,0.072415,-0.55388,1.0923,-0.21265,0.29677,0.027527 1.2253,-1.6675,-1.9299,0.94352,-0.47966,-1.3572,0.72869,-1.1762,-1.2844,0.78187,-2.0071,2.3477,1.2461,-1.2354,-0.25674 -0.83542,-2.5955,-1.5247,1.2122,-0.34103,-2.6135,-0.020987,-1.4825,-1.0884,0.82833,-0.64419,1.0055,0.92246,-0.39604,-0.61355 0.14783,1.7417,-1.9248,1.8819,-0.7359,0.41418,-1.1615,-1.1666,0.21571,-0.43994,0.69429,0.40613,-0.1927,0.57051,-1.0467 -0.79426,1.33,0.97387,0.5529,-2.6878,-1.0936,1.3133,-0.54888,0.43563,0.56958,-0.14277,0.063763,0.49363,0.49569,1.5029 -0.81842,0.65981,0.08576,1.6253,-1.9027,-0.94173,1.1941,-0.32755,0.40374,1.2716,-0.18594,0.56867,1.1818,0.32982,1.0823 -1.7096,-0.54632,-3.386,0.16093,-0.65526,-0.56466,-0.83762,0.33231,-0.29982,-1.194,-0.02183,1.9271,-0.016696,0.051905,0.14208 0.77498,-2.3837,-0.48434,-0.47454,-2.2436,0.4815,1.4834,1.5848,0.56034,1.6239,-1.8434,-0.82685,-1.7493,0.28619,-0.94727 -0.29163,-4.1632,-0.43088,0.85273,0.11197,1.5914,-1.3373,-0.49682,-0.15231,1.5666,-1.3938,-0.37318,0.92866,-1.0042,-0.10803 3.7474,-2.8366,-1.2258,-2.682,-2.0675,-0.98577,1.7611,2.2638,-0.341,-0.52813,0.23478,2.2365,0.36055,-0.39825,0.15264 1.5489,2.8403,-2.41,-1.8765,-1.198,-1.1159,-0.79807,-0.098089,-0.65453,-0.30015,1.192,-1.5459,0.76535,-0.3435,0.49487 -2.2698,-0.32342,-1.0723,-0.15004,-1.0171,-1.2476,-0.14234,-1.2517,-0.24956,0.88532,0.34799,0.44225,0.77451,1.1354,-0.35179 1.5307,-0.0074525,2.3701,1.7494,-1.7251,0.025868,-2.2117,-0.37731,-0.012878,0.37907,0.66359,0.21389,-0.91386,0.2019,0.35192 -2.8433,-0.36688,-2.3703,-0.31544,-0.35755,0.87625,0.62972,0.019842,0.027522,-0.24417,0.30838,0.058978,0.4618,0.63522,-1.7405 -0.88362,0.4975,-0.38117,-0.26479,-2.0432,-1.1408,2.1053,-1.1147,0.17755,1.7063,-1.1744,-0.77351,0.47177,0.7772,0.74007 -1.4578,0.98065,-1.3325,-0.49044,-2.7847,0.10919,1.7147,-0.75633,-0.54549,-0.68283,-0.34676,-0.095688,0.43473,0.10877,-0.068173 1.3546,-1.1528,1.3271,0.83613,-2.9967,1.3733,-0.12871,0.22079,0.49853,0.46806,-0.31251,-1.3583,-1.1057,-0.29876,1.628 -2.7687,-1.8253,-3.0638,-1.0043,-0.88134,-0.42168,-1.4715,-0.25135,0.031717,-1.5986,-0.41683,0.34531,-1.4848,-0.69477,-0.47515 -0.63286,-1.911,0.72809,1.4859,-0.86996,1.6956,-0.56439,2.0653,1.3193,1.2435,1.0177,-0.75535,0.36064,0.049704,-0.70473 1.5221,1.084,-1.8427,1.7171,0.61549,0.12677,-0.20785,-1.5586,-0.23698,-0.57223,0.52058,-2.1648,1.2722,0.50191,1.1166 2.4588,0.75987,-1.4246,2.3214,0.55815,-0.1131,0.39587,-1.1592,0.22463,-0.9471,-1.3844,-1.636,0.97313,-0.23903,-0.12916 1.8604,1.5585,-1.696,1.8449,0.25497,-0.10887,0.017461,-0.82393,0.15052,0.4518,-1.6475,-2.0271,0.71009,-0.29854,0.22324 1.6463,2.5122,0.17327,1.7128,-0.031008,-1.1402,-1.109,-1.5133,-0.1277,0.67708,-0.24838,-0.88717,0.015494,1.1975,0.36415 0.84662,0.93964,-1.7657,2.6884,0.26802,-0.24149,-0.62501,-0.98471,0.31136,-1.0305,0.61473,-1.177,0.71838,0.93461,0.26182 -1.5253,-1.8533,0.047008,-0.4099,-1.4759,1.8897,-0.84838,0.11259,0.081997,0.88694,1.1192,-0.66727,1.1139,-0.8058,-0.9064 0.12855,1.6056,-0.97706,2.9946,-0.86521,-0.37814,0.32334,-0.1986,0.3065,0.53255,-1.3314,-0.4332,0.64402,0.42682,0.59145 -1.2614,1.9156,-1.4354,2.1192,-0.79135,0.37462,0.051759,2.0125,0.20521,0.90858,-0.5968,0.25175,-0.48277,0.56381,-0.068331 0.031778,1.9327,-0.35974,2.2308,-0.82141,-0.12468,-0.014212,0.82592,-0.42981,1.7572,-0.73027,0.4453,0.27161,1.2234,0.41504 -0.016391,1.4843,-0.80754,-0.079454,0.21801,-1.3916,-1.7006,2.2077,0.78193,-2.5783,0.26055,-0.3966,0.19461,-0.3661,-0.38159 0.91432,-0.54272,0.6071,3.4719,0.20333,-0.44504,1.0346,-0.50876,-1.1829,-2.1171,0.11894,0.54669,2.2226,0.11508,0.23313 0.20213,1.4276,-0.85847,3.3428,0.50502,-0.44081,0.98376,0.074953,-0.95558,0.067112,-0.88098,-0.93327,0.5268,1.0589,1.0233 -1.0713,-0.28086,-1.2998,2.8418,-1.4852,-1.0195,1.8486,-0.40558,0.35713,-0.82423,0.4758,0.051489,-0.28361,0.11161,-0.19658 -0.95056,0.96684,-1.0908,2.8559,-0.99082,-0.66462,0.83641,0.27214,0.1092,-0.10681,0.25768,-0.28141,0.13271,0.88176,0.46132 -0.10101,-0.33426,1.4279,1.7411,-2.5239,0.21605,0.44392,-1.6529,0.3567,0.39014,0.27942,-0.066014,-0.27958,-0.84555,0.29174 1.408,1.5604,-0.26919,2.2362,-0.86551,-0.55235,-0.47894,-1.0922,0.52338,0.43551,-0.69096,-0.004694,1.2007,0.6675,0.087034 2.9817,-2.9082,-0.32151,0.33302,2.738,1.9407,-1.0569,-0.093446,-0.90415,-1.4069,1.5803,0.2671,1.6542,-0.83164,-0.18333 1.2489,2.1814,0.72757,0.96659,-1.1521,-2.5606,0.65446,-0.96091,-0.38663,-0.026299,-2.0782,0.037336,0.77018,0.41923,-0.039111 -1.1245,-1.4961,1.5956,0.27441,-1.3655,-1.781,1.2572,-1.6853,-0.31865,1.317,0.86647,0.39416,0.87506,-0.52245,-0.89846 0.32973,2.3339,1.2189,-1.2925,-1.228,-1.5448,0.62494,-0.058692,-1.4816,-2.6025,-1.4446,-0.45632,-0.21338,0.092636,-0.03567 2.5674,0.78498,-1.249,1.0672,-1.3501,-0.68569,0.43928,-0.52078,1.6679,-1.5481,-1.4705,-0.50812,-0.10122,0.498,-1.2444 2.5418,-1.4291,-2.6888,0.092352,-2.0901,0.71771,1.1753,1.9172,0.98385,1.75,-0.33245,1.5776,-0.81788,1.0456,-0.99848 5.5501,-4.6338,-1.8363,0.8148,0.2655,0.78808,1.7246,2.0916,-2.2385,-0.32786,-0.68343,0.0067719,0.34684,0.76698,-1.2916 -1.1201,0.0001268,-0.8793,1.4088,0.046703,-0.62785,1.6095,0.95072,0.11629,2.3013,-0.54766,-0.94283,1.1376,0.70972,0.82378 3.0306,-2.6059,-1.7234,-3.0607,-1.9518,-0.49369,1.1119,2.4466,0.71371,-1.1339,1.651,1.6522,-0.16951,0.9085,1.0436 -1.329,-1.0367,-1.0669,2.6742,-0.71209,-1.6055,2.2627,-0.76804,-0.65507,-0.50688,0.67339,-0.80678,-0.17138,-0.27912,-0.11188 -0.14885,-1.0324,-0.51514,2.8246,-0.39125,-1.0905,1.8082,0.078189,0.27044,-0.20649,0.82692,0.074186,1.7629,0.35478,-0.25325 -1.1816,0.3288,-2.336,2.9346,-0.92596,-0.35195,1.8319,0.051845,-0.32949,-0.04207,-0.11172,-0.27756,-0.047282,0.30768,0.43142 -1.3804,-0.14008,-1.2465,0.25358,-0.77206,-0.98156,1.0812,-0.44538,0.46103,2.1867,0.022392,0.50689,2.0808,0.66804,-0.55275 -0.39626,-1.165,-0.50491,2.7525,-0.89642,0.94219,-0.090546,0.090155,-0.74933,-2.6394,1.1425,-0.082475,0.9681,-1.1335,0.69485 1.2488,0.5391,-1.4838,2.8915,-0.27177,-0.45461,-0.55381,-1.2759,0.34216,-1.154,0.46116,-0.83818,0.98721,0.8458,0.61281 -0.9175,0.37052,-4.0393,0.33307,-0.79257,0.22254,-0.21758,0.94674,0.16576,-0.10303,-1.3406,0.4948,0.14532,0.45874,0.77849 -1.4941,0.36931,-3.5244,0.35885,-0.3655,0.34415,-0.13135,0.7427,0.025737,0.79315,-0.8979,-0.64137,0.24737,1.3934,0.26574 -0.73824,-2.6316,-1.8046,2.2302,-0.78895,-0.67029,0.67998,-0.39987,-0.19838,-0.24146,0.53176,-0.61536,-0.046629,-1.164,-1.2928 0.013152,-1.2753,-1.8454,0.52021,-0.25765,-0.39951,-0.74971,-0.81828,0.025643,1.5197,-1.3219,1.9842,0.77604,-1.2325,0.015099 -0.31468,1.9313,-0.26557,0.58478,-1.1055,-0.61582,0.41241,1.8099,-0.72585,1.7611,-1.7338,-0.10263,0.18313,1.0428,0.85593 4.3134,0.17808,1.1909,-0.21864,-1.552,-1.7854,0.057786,-0.65293,0.034775,-1.2475,-0.70283,0.12641,-0.51224,0.8339,-0.99852 2.4853,0.13705,1.1991,0.44182,-2.7848,-0.97695,-1.2021,0.12384,0.57913,-1.2491,-1.1977,0.042953,-0.05765,-0.12586,-0.50289 2.3757,0.246,0.87331,1.671,-0.251,-1.8772,-1.7055,-0.27811,-0.21799,-0.44326,1.8432,0.53161,0.57666,0.96819,-1.1464 -1.1379,-0.057967,-0.51102,-0.52791,-2.1444,-1.1781,1.6937,-0.666,0.024306,1.7742,-0.54901,-0.32383,1.768,0.1535,-0.15742 1.563,-0.2636,1.4045,-0.049674,-2.7676,-1.2039,2.3543,0.59239,0.72639,-0.84198,-1.4918,0.36485,-0.49934,0.39892,-0.33978 1.988,-0.88991,2.5124,-1.139,-3.5533,-0.7654,0.73144,0.87608,-0.31753,-1.5746,-1.2613,0.4211,-1.3137,-0.26024,-0.59867 -0.55408,-0.37847,1.0459,-0.35123,-2.5698,-2.0768,1.6691,-0.87579,0.025273,0.5122,-0.35587,-0.11468,0.84481,0.12444,0.23649 3.5485,-2.6946,-0.61581,1.8131,-0.87555,1.501,-0.00042354,0.68967,-0.53803,-2.5714,-0.85647,-0.30719,-0.66552,-0.43539,-1.3758 1.6399,0.54889,0.91361,1.1026,-1.4527,-2.0388,-1.6748,-0.37889,0.24606,-0.89596,0.76582,0.56842,1.209,1.1366,-0.72894 -0.58185,-2.3921,1.3315,-0.71735,-2.1021,-1.4258,0.1497,-1.5207,-1.122,1.3949,0.76492,0.60446,0.26872,-0.68137,-1.0112 3.9422,-1.036,1.0154,0.88105,-1.2071,0.70899,-1.1127,1.6612,-0.99579,2.436,-0.046782,-0.53919,1.4276,1.6603,-0.12011 5.1584,-2.2041,0.28138,0.90373,-0.56286,-0.78321,-0.22485,-1.3053,-0.17602,-1.3348,-0.45405,-0.69234,-0.028763,-0.0259,-0.40153 -1.081,-3.0456,-0.53292,-0.22933,-0.95673,-1.9632,-1.5424,-0.59257,-0.60025,0.92055,0.22158,1.4973,0.85642,-0.77467,-0.89628 -1.0555,-3.6759,-0.6002,-0.19378,-1.1057,-0.27588,-2.1966,1.4183,0.020507,1.2668,-0.27717,0.015834,0.56778,-0.40025,-0.19349 -0.40422,-3.226,-1.8394,1.2843,-0.80824,0.24135,-1.3369,1.7912,0.099248,0.66393,-0.19545,-1.1802,-0.77415,0.37029,0.026033 -1.0946,-3.3447,-1.0501,-0.2029,-0.4956,0.18227,-1.8207,2.5514,0.27113,0.84436,-0.36013,-1.3779,0.087501,0.31706,0.074758 -0.10741,-4.0179,-1.1802,1.4743,-0.79806,-1.5801,-1.1342,-0.1446,-0.80776,0.53891,-0.092155,0.49208,0.0010183,-0.74409,-0.66347 -0.73171,-3.1278,-1.9108,0.53761,-0.84714,-0.72365,-1.5485,1.8341,-0.0789,0.47506,0.0081831,-0.3145,-0.58215,-0.19002,-0.29785 -0.69107,-2.7327,-1.4417,-0.062644,-1.4484,-0.26052,-2.1261,0.94375,0.074815,0.80333,-0.25265,0.57841,0.54135,-0.32382,0.45702 -0.66235,-3.6131,1.1125,1.058,-0.77949,-0.24824,-0.40776,0.53943,0.38087,1.3267,1.4549,0.20022,0.54522,-0.8286,-1.3478 -0.32928,-1.9671,-2.2861,1.5176,-0.17953,-2.1884,0.018303,-0.28681,-0.731,1.1527,-0.54694,1.501,1.6223,0.21667,-0.71599 2.5988,-0.94727,2.2656,-1.4423,-3.1768,-0.97049,0.81652,2.0988,-0.50852,-1.7688,-0.89922,0.5092,-0.33342,0.2138,-0.487 1.2427,-1.5461,0.98499,0.39597,0.96991,-1.5455,4.9454,-0.072607,-1.9757,0.31625,-2.0397,-0.048228,0.51989,0.72863,-1.192 -0.16407,-2.2731,0.61539,-1.4137,-2.2919,0.94226,-0.929,-0.16272,-0.37652,2.2059,-0.31464,-0.36238,0.77577,0.034937,0.10386 1.1631,-2.2948,1.0091,-1.0405,-3.4507,-0.3878,1.3382,1.526,0.15623,0.20906,-0.89969,-0.14953,-0.65356,-1.3819,-0.83723 1.064,-2.1219,2.0688,0.14476,-2.9704,0.96651,0.14316,1.0723,-0.26972,1.5964,-0.32034,-0.30078,0.61188,-0.67072,-0.036814 0.57895,-3.2356,1.5452,0.23638,-2.3033,1.0789,-0.25995,0.74621,-0.013317,2.5637,-0.67738,-1.0008,1.1374,-0.22891,-0.50889 1.2402,1.7552,1.5691,0.1917,-2.5462,-2.0078,0.81497,0.052499,0.36919,-0.95717,-1.2215,0.23596,-0.076815,0.64697,0.82281 0.12611,-0.16239,1.4505,0.85427,-2.4132,-2.1614,2.4945,-0.76325,-0.38507,0.83455,-0.47995,-0.10875,-0.43885,-0.10991,0.69626 -1.78,-1.4488,1.2391,-0.015335,-1.8665,-1.5357,0.99926,-1.2268,-0.27409,1.0797,1.7378,0.082838,0.24323,0.3369,-0.3847 2.8715,-2.3777,1.8881,1.7303,-2.1974,0.11029,0.40171,0.91944,-0.01399,-0.010619,-0.61083,-1.055,-0.8026,-0.11992,0.96599 0.24932,-3.5026,2.5672,1.6863,-0.96229,0.15059,-0.46822,0.35011,-1.4721,1.6142,1.5838,-0.25324,-0.40307,-0.34338,-0.58198 1.472,0.38628,2.4799,-1.8236,-3.1956,-0.89968,1.349,1.3018,-1.2343,-1.1046,-0.34302,-0.18815,-0.28906,-0.28452,-0.048262 0.033167,-3.81,-0.36379,1.4798,-0.17151,-0.88191,-0.5297,-2.328,-2.0388,0.50386,0.33012,-0.46201,-0.19905,-1.1421,0.059405 1.971,-1.3234,1.1189,3.0915,-0.94662,1.2451,-0.70893,-0.50957,-0.48826,-1.2362,0.50169,0.21109,0.73409,-0.51544,0.86629 -1.249,-0.13871,0.37659,2.4549,-1.329,-0.62291,1.1295,-0.88549,1.0126,1.0478,1.0118,-0.15604,0.037214,0.50014,0.49948 -0.82683,-0.57989,0.56465,1.8773,-1.6855,-0.036202,1.1972,-2.1713,0.58127,0.53808,0.83341,-0.89488,0.039376,0.25693,0.7865 0.37297,-2.0071,0.39252,3.1191,-0.65169,1.6732,-0.43175,0.79458,-0.28351,0.61138,1.3584,-0.73134,-0.1165,-0.056155,0.80669 -0.35162,-2.8668,0.87688,1.7744,-0.080942,2.536,-0.31515,-0.86978,0.23403,1.1318,0.68217,-1.1865,0.4621,-1.3,-0.45146 0.21595,-1.4786,-0.26463,1.6859,-0.039994,-1.1641,0.5206,-2.7806,-0.99052,1.2961,0.80282,0.040819,0.41228,0.21869,0.12438 -2.5365,-0.10984,-2.5697,0.91572,-0.72412,-0.072242,1.7586,-0.29824,0.63945,-0.30669,-0.08073,-0.79154,-0.43227,0.45964,-0.74992 1.8323,-0.21642,0.55858,2.5356,-1.564,1.0581,-0.041948,-1.3027,-0.16051,-1.9441,-0.10523,-0.15892,0.80318,-0.21579,1.2796 1.4616,-0.51134,0.47858,2.7092,-1.6675,0.58297,-1.3131,-0.25924,0.27546,0.64054,0.22312,0.0052521,-0.48105,0.50672,0.77626 0.63322,-0.71471,0.71964,3.0213,-1.5811,1.4232,-0.66241,-0.68945,0.14423,-0.31601,0.81315,0.17767,-0.41015,-0.76083,1.0185 -0.28936,-1.2662,-0.054176,3.5549,-0.30975,-0.2046,0.62909,-0.5183,-0.67664,-1.9052,1.8077,0.17146,0.052241,0.018952,0.7622 -1.9551,-1.769,-0.71984,1.4765,-0.90281,-1.0824,1.1299,-0.027984,0.42825,-0.51878,1.5084,-0.31965,-1.5374,-0.45173,-1.3842 -0.032824,-1.8012,1.2669,2.1368,-1.4888,-0.99132,1.3366,-1.1399,-0.34764,0.38293,0.83143,0.73526,1.1775,-1.1233,-0.7658 -2.0489,0.23129,-1.1416,0.74217,-1.3333,-1.6262,1.601,0.69565,0.4064,0.41942,0.72604,-0.266,0.25779,1.0235,-0.39519 -0.86739,-0.58345,-2.4613,1.0778,-0.44498,-1.8173,0.85432,-0.18253,-0.10168,1.5841,-0.58584,0.17247,1.4459,0.98125,-0.21304 -0.82641,-0.70879,-1.056,3.2341,-1.0207,-0.86908,1.8623,-0.67737,-0.25691,-0.79594,1.0754,-0.44672,0.079954,0.21662,0.18541 -1.2627,0.39674,-1.4461,2.4494,-0.94561,-0.90647,2.2528,0.41281,0.12487,0.25676,0.33636,-0.39237,-0.34262,0.66665,0.12438 -1.745,-0.18557,-2.5077,1.6224,0.041011,-1.1755,1.925,0.76227,-0.1909,0.89069,-0.15269,-0.98742,-0.26841,1.1603,-0.61644 -1.722,-0.26583,-1.4179,2.1501,-0.85551,-1.5883,1.7826,0.58255,0.42282,0.29485,0.91721,0.14613,-0.38351,0.80346,-0.4118 -2.1439,0.54817,-2.7475,0.18994,-1.2283,-0.51513,0.7673,0.97637,0.62928,0.88207,-0.0048654,-0.45097,0.37529,0.91603,-0.41475 -0.5924,0.059069,0.62472,2.4492,-1.6937,-0.12074,-0.34139,-0.70972,0.79936,-0.056946,0.94909,1.1513,-0.24747,-0.35213,0.48026 -2.3179,-0.014401,-0.64478,1.2336,-1.4497,-0.98921,0.99044,-0.82713,0.98141,0.87246,1.1734,0.15472,0.4419,0.28377,-0.28247 -0.59034,-1.1929,1.2059,0.4244,-2.6254,0.11349,0.58032,-1.7977,0.82549,1.1459,0.37467,-0.010703,-0.6984,-1.3124,-0.53861 -1.3388,-2.5384,-0.088892,0.685,-1.1709,-1.0817,0.10201,-0.90669,0.23094,1.3836,1.0779,0.52828,0.571,-1.0139,-1.644 1.2832,-2.4317,0.88281,1.3685,-2.174,2.1362,0.89694,-0.0051565,0.21771,0.81589,-0.49863,-1.0144,-0.14036,-1.2896,-0.44277 -1.8457,-0.79108,-1.8512,0.79418,-0.89274,-1.5914,0.59975,-0.049429,0.63698,0.8291,1.1252,0.19173,0.72091,0.55603,-1.1216 -1.3619,-1.8954,-1.2104,2.1162,-0.82719,-0.79283,0.74298,-1.7915,0.14069,0.29856,0.62304,-0.52977,0.48674,-0.92748,-0.9248 0.81059,-2.6217,1.2412,2.5128,-0.83905,2.3297,-0.17225,-0.70064,-1.1419,-0.16466,1.1053,-0.91482,0.67575,-1.3627,0.50547 -0.28522,-0.95509,-2.296,1.803,-1.6903,1.7662,-0.20973,1.0435,0.80637,-0.42435,0.40903,-1.2635,-0.96512,0.082081,0.58977 -1.1454,-1.4228,-3.4346,2.2442,-0.46076,-0.1876,-0.74977,-0.58829,-0.54799,-0.902,-0.36164,0.42213,-0.75681,-0.82957,0.27742 4.5807,-2.583,1.1894,1.9461,0.10319,0.51292,-1.2399,-0.59986,-2.8596,-0.68645,0.38038,-0.75256,0.44884,0.078072,0.59186 1.7771,-0.79626,0.60554,1.8114,0.35436,-0.95867,-1.0199,-0.023362,-0.69837,0.5002,3.0056,0.47496,-0.032506,0.1425,-0.3064 2.9737,-2.9452,0.08148,1.877,0.56499,1.5786,-1.2935,0.22007,-1.3201,1.5988,1.2867,-0.23605,0.94205,0.48636,1.261 1.6302,0.90459,0.92075,1.4624,-1.0576,-1.6942,-1.265,-0.40383,-0.63497,0.41711,1.5568,0.81469,0.44673,0.73886,-0.54636 3.1753,-0.6182,0.31189,0.82618,-1.2859,-0.24272,-2.3652,-0.38662,0.24876,0.31619,1.2469,-0.47176,0.6331,0.29837,-0.098035 1.4869,-0.90775,0.97797,3.067,0.34785,0.54552,-0.8736,-1.1087,-2.7919,-1.8668,1.9381,0.33048,0.49783,-0.10998,0.42911 5.0688,-2.5821,-1.3145,0.97982,-0.10948,2.2294,0.53795,0.62148,-2.0457,1.4197,-0.56329,-0.6671,1.3409,0.49986,0.088055 -0.79349,0.071471,0.949,1.3415,-2.0838,-0.16842,-0.4962,0.71735,-0.12569,0.83581,1.8871,1.0189,-0.77538,0.4949,-0.13958 2.6284,0.50015,0.35242,1.1511,-1.6273,-1.9097,0.17532,-0.38511,-0.55657,0.66906,-0.44256,-0.26433,0.72343,-0.021491,-0.1122 4.1674,-2.7964,-1.665,-0.14667,-1.4209,0.50378,0.91019,1.7136,-0.085671,1.9665,-0.080614,0.010361,0.47279,0.40054,1.0619 4.2678,-2.1509,0.14905,1.4977,-0.71609,1.3226,-0.91115,-0.070141,-0.63533,0.38318,-0.47728,-0.96257,0.51592,-0.4965,-0.32058 1.2702,-0.15329,0.54473,1.3029,-1.2911,-0.11523,-2.277,0.60788,-0.30582,-0.69761,2.1138,0.33972,0.20799,0.56462,-0.49479 2.0798,0.28468,-0.1119,2.6098,-0.53449,-1.0523,2.6925,-0.67676,-1.8975,0.16125,-2.1779,0.016265,0.77791,0.14775,-0.20044 0.40611,-1.1926,2.4039,0.071248,-1.9114,-1.3142,1.0701,-1.0611,-1.6457,-0.22788,0.69672,0.41302,0.31246,-0.076262,-0.72829 1.3783,-0.84325,2.4729,2.3377,-0.18287,-0.95514,0.53432,-0.83601,-1.063,-0.25493,0.71671,1.2013,0.66969,-0.82352,-1.1293 0.53478,-2.1436,2.8632,1.037,-0.53139,0.17629,-0.99303,1.9231,0.24357,-0.27294,1.0147,0.49113,0.090821,-0.93773,-0.78424 -1.6184,-1.0681,-3.2233,0.79271,1.6796,-2.4667,0.79173,1.0181,-1.4641,0.74314,-1.1658,-0.2249,0.043497,1.1742,0.014803 -3.1528,-1.2628,-1.5713,-0.72695,-0.19284,-2.6615,-0.2067,-0.42594,-0.53468,0.0064864,0.53336,0.064797,0.093587,0.51908,-0.39324 -1.525,-1.5384,1.8392,0.7315,-0.29393,-1.7859,0.77955,1.6483,-0.12285,-0.73061,1.4347,0.25126,-0.58811,-0.90945,-0.8486 -1.0243,-1.5457,1.4286,2.6097,0.62694,-1.2563,0.89377,0.94077,-0.56095,-1.1094,1.6777,0.16992,-1.2943,-1.0171,-0.83401 -1.6924,-1.6234,0.43299,0.58954,-1.6252,-2.3737,1.4424,0.1242,-0.30796,0.75067,0.95574,0.2304,0.93273,-0.18223,-1.0818 -3.5887,-1.7963,-0.41819,-1.6983,0.0456,-0.82566,-0.86907,-1.0513,-0.80679,-0.63109,0.92758,0.093961,0.019887,-0.54615,-0.67936 -1.472,-2.7307,1.5355,1.168,0.26504,-0.55284,0.39916,1.6714,0.21491,-0.39656,2.1186,-0.32742,-0.93822,-0.58366,-1.2337 -3.6838,-2.1838,-1.3032,-1.1673,0.26938,-0.96893,-1.6669,-0.5949,-0.56033,-0.38971,0.7025,0.74678,-1.0588,-0.46674,-0.71998 -2.3648,-0.25205,-0.99921,1.3247,0.58189,-1.6412,2.2656,1.4707,-0.76866,0.96481,0.26253,-0.7612,-0.45061,0.76949,-0.76774 -0.46113,0.46191,-0.19651,2.4027,-1.6329,-1.1385,1.5433,-0.49278,0.2968,0.084196,-0.12955,0.53475,1.2175,0.030315,0.43554 -0.71616,-1.0101,-0.86567,2.3862,0.17199,-0.47966,1.7,0.72439,0.7456,-1.3646,0.76846,-1.1929,-0.68354,-0.27885,-0.10059 0.7813,-2.868,1.1404,2.2561,-0.12894,2.5548,0.55845,2.4264,-0.092938,0.12814,0.12701,-0.60885,0.78298,-0.48909,-0.45071 1.2919,-2.8869,1.8017,2.3419,0.34992,0.60766,-0.432,3.0297,0.15497,-0.51006,-0.0059373,-0.21806,0.88342,0.15916,-0.052453 -1.9454,1.1739,-0.050627,0.47078,-0.37647,-1.0426,1.3921,2.1775,0.60711,0.28144,-0.28677,-0.05272,1.0153,0.90259,0.50353 0.11322,-2.9239,-0.24427,1.7553,-0.22612,0.61717,-0.090587,0.63164,0.68283,-0.40368,0.5921,-0.51001,0.72184,-1.8823,-0.56746 -0.89728,-1.0261,-0.32986,2.7004,1.6818,-0.415,2.634,0.46755,-0.78319,-1.6733,0.307,-1.198,0.69496,-0.4258,0.021597 -0.49049,0.13926,-0.15759,2.2186,0.28457,-1.8632,2.986,1.1732,-1.3125,-1.5401,0.18342,-1.1774,-0.11644,-0.39885,0.19765 0.045975,-1.4618,0.069639,1.2126,-1.3798,-0.019377,1.3454,-0.28743,1.0556,0.54312,0.43612,1.111,1.2251,-0.90558,-1.4563 0.82813,-1.3725,0.15964,2.9537,0.82072,-0.026749,0.43854,1.6271,-0.12837,-3.0799,0.21451,-0.90624,-0.12239,-0.1664,0.86134 -2.1237,-1.1293,-0.79565,0.14426,1.1025,-2.3442,1.4898,-0.21651,0.73394,0.19105,-0.2218,-0.96799,0.69622,0.87,-0.28929 -0.18508,-0.91471,0.78782,2.4686,0.38806,-1.5189,1.8165,1.4872,0.28712,-1.687,0.42081,-1.0704,-0.31718,-0.60397,0.38296 -2.0401,-2.2101,0.0071346,2.2593,-0.72714,-0.96145,0.4395,-0.30597,0.45495,-0.13061,1.7291,-0.69134,-1.6432,-0.69135,-0.87617 -1.0707,-3.2918,-0.46614,1.6767,-0.34237,-0.79569,-0.87665,-2.1296,-0.49206,0.77134,0.23878,0.4754,-0.04072,-1.6432,-0.82667 -1.7565,-2.2476,-1.3612,1.267,-0.41591,-1.8244,-0.9035,-2.1346,0.021534,1.1326,0.08647,1.0487,-0.11311,-0.836,-0.58779 -2.0138,-2.7998,-1.3406,1.7467,-0.46327,-1.3074,-0.7676,-0.84417,0.69572,0.35656,0.80898,-0.23933,-1.0107,-0.69592,-0.79128 -1.2788,-1.7945,0.025301,0.84799,-1.9484,-0.48762,-0.30905,-1.9838,0.82247,1.4335,0.81792,-0.17985,-0.42048,-0.65356,-0.71295 -1.7675,-2.692,-0.27157,-0.42445,-1.2359,0.10209,-2.7382,-0.012736,-0.076898,2.1605,-0.11973,-0.15495,-0.0081983,0.271,0.43551 -0.80738,-2.376,0.84226,0.82799,-2.6185,-0.47939,-0.1077,-0.72024,0.78803,1.3331,-0.0022663,-0.93517,-0.27878,-1.2043,-0.23393 -1.5431,-3.7036,-0.16421,1.4742,-0.11441,0.043189,-1.7452,0.60164,0.54298,1.4332,0.32078,-1.2107,-1.0379,-0.64685,-0.33644 -0.21128,-3.7691,-0.89353,1.3864,-0.92577,-0.97334,-1.3943,-1.4723,0.10456,1.1218,-1.1206,0.273,-0.11232,-1.59,-0.17633 -2.5364,-2.7339,-1.2939,-0.41346,-0.62952,-0.87446,-2.5553,0.76186,0.12775,0.6329,0.232,-0.025744,-1.3918,-0.4854,-0.29155 -1.8044,-3.3282,-0.8112,0.76827,-0.78666,0.079787,-1.4454,1.5682,0.71332,1.0762,0.27502,-1.8783,-1.1665,0.38799,-0.53695 -3.0657,-2.39,-0.77104,0.26574,-1.0482,-2.376,-0.75609,-0.65412,0.32659,0.10512,0.927,-0.12516,-0.8396,-0.35059,-0.99497 -1.0523,-2.8796,0.57259,0.48591,0.7845,-2.8666,0.7061,1.3264,-0.70213,-1.4475,-0.48184,-0.49025,-0.72862,0.35108,0.58862 -1.4222,-2.6206,-1.0144,0.41428,0.23548,-3.2958,0.58312,0.48516,-0.80246,-0.76996,-0.85736,-0.13111,-0.69916,-0.26965,-0.37409 -0.7148,-0.10006,-1.1207,-0.37914,0.086399,-2.541,0.75188,2.0012,-0.89769,-0.91681,-0.79873,-0.25177,1.4183,0.98556,-0.048041 -1.7439,-0.78212,-0.69292,0.22156,0.069735,-3.037,1.8257,1.3461,-1.2272,-0.75258,-0.85304,-0.73374,0.063368,0.68944,-0.91682 -0.2932,-2.2277,1.0749,0.16401,-0.61765,-1.4398,0.2261,2.7241,-1.1261,-1.4528,-0.76613,-1.058,-0.47762,0.75323,-0.81728 3.9346,1.5109,-0.54603,-2.0642,1.9496,-2.9428,1.4265,1.6966,0.15021,0.28529,-0.82974,-1.4563,-0.073074,0.16216,-0.13581 2.6103,3.2638,0.062119,-2.7536,1.3872,-2.0921,0.078021,0.77547,-0.84744,0.67337,-0.30712,-2.039,-0.038514,0.15907,0.98678 2.9918,1.2387,-1.0845,-3.0995,-0.92405,-2.6141,0.7556,0.24199,0.12868,-1.7311,0.75778,-0.84403,0.71971,0.48527,0.76865 1.5932,3.2167,-0.85121,-2.3762,0.2825,-0.14723,-0.94666,1.5183,-1.0902,0.35269,-0.51628,-2.2188,-0.11982,-0.66896,-0.063014 5.8173,-2.2482,0.88524,-0.59229,1.0271,-2.7727,1.4421,-0.43123,-1.0552,-1.1858,-0.11822,0.016886,0.14435,0.76115,0.26207 -2.24,3.0967,0.032454,0.38767,0.14629,1.4595,0.069839,1.6364,-2.3778,0.43388,-0.77593,-0.066004,-0.083277,0.064562,0.48678 4.8798,-0.2271,0.74674,-1.7124,1.0058,-2.8705,0.42055,-0.53884,-0.75287,0.31846,0.48611,-0.89635,-0.34091,0.50593,0.8744 2.7411,2.1887,-1.2608,-3.3268,-0.64056,-2.2179,0.32258,-0.22288,0.37937,-0.75237,0.17231,-1.5257,0.78054,0.04352,0.69395 2.8539,2.8278,0.36498,-1.7022,-0.13829,-3.3345,-0.075469,-0.16012,-0.15401,-0.34174,-1.234,-1.6315,0.14706,0.92476,0.0022836 5.0299,0.13003,-0.97043,-3.0479,0.79716,-2.9218,1.8558,0.41388,0.77485,0.53452,0.049628,-0.045903,0.018644,0.4113,0.41581 5.1396,-2.1888,-0.76895,-2.241,0.31732,-3.0327,1.5267,1.1932,0.62906,-1.8674,0.98878,0.97633,0.39637,0.59773,-1.1297 6.3702,-3.8691,0.0609,-1.6377,0.015637,-1.4938,1.6439,-0.035392,-1.4688,-0.23375,0.70452,1.365,0.12614,0.62555,0.1889 0.83087,-1.3765,2.2607,3.1029,-0.69699,0.37243,-0.8433,0.54017,-0.40839,-1.1071,2.0737,0.41049,-0.55221,-0.13383,-0.045152 -0.10106,-2.343,1.2638,2.9179,0.2684,1.7406,-0.29303,1.7007,-0.87142,-1.5124,1.9133,-0.80322,-1.1947,-0.84341,-0.16717 0.33725,-1.8908,2.0206,2.9714,-0.9519,-0.45295,0.42137,-0.34148,-0.50636,-0.43129,2.0732,0.3769,-0.05387,0.082201,-0.23122 0.052701,-2.3944,0.73357,1.3762,-1.1392,-0.73037,1.511,-2.0089,-1.2798,0.99265,0.82853,0.38132,0.85227,-1.0383,-1.6035 -1.7301,-1.7899,0.56279,0.19742,-1.943,-1.0435,0.27405,-0.73605,-0.27442,0.18976,1.5928,0.34252,1.2537,-0.4686,-0.9884 0.18455,-2.0148,0.99264,2.0585,-1.5615,1.1481,-0.40404,0.90816,0.31421,1.3183,1.6325,-0.56683,0.037974,-0.1112,-0.068522 -1.1719,-2.5004,0.27516,2.0082,0.18353,1.0723,0.64881,0.7751,-0.015989,-1.5616,2.222,-1.355,-1.8748,-0.91315,-0.4759 -2.0359,-1.6477,-0.49086,2.0218,0.65262,-1.1941,1.1846,-1.1912,-0.52691,0.28077,1.9699,-0.27884,-0.43796,-0.32808,-1.4877 1.235,-3.1188,0.41168,2.1367,0.16929,2.3544,-0.70537,1.4587,-0.40622,0.89305,0.74282,-0.77765,0.9782,-0.57157,-0.3438 -2.1349,-1.7276,-0.93297,1.0076,0.33893,-1.7953,0.44658,-1.1479,0.3678,0.61656,1.3798,0.044273,0.11108,0.24308,-1.5356 -1.0887,-3.1152,2.4575,1.7385,0.08646,0.78558,-0.82784,1.0622,0.23145,0.91501,1.8751,-0.80066,-1.2266,-0.095935,-0.31948 -0.37587,-0.3705,1.6855,0.58473,-2.5143,-1.6119,2.3655,-2.1412,0.03434,-0.15214,-1.0528,-0.65398,-1.188,-0.10782,0.60298 4.1734,-2.3329,1.993,0.37866,-2.3754,0.78615,0.12127,2.2144,-0.71051,-0.58672,-1.1035,0.67079,-2.4303,0.59221,-1.47 -2.6972,-2.0895,0.26562,-0.69567,-1.4191,0.60416,-1.8384,0.25123,0.25441,1.5108,1.0726,-0.41982,-0.15123,-0.58003,-0.54264 -1.9067,-1.2972,-1.3677,-0.89852,-0.88251,-1.4115,-2.3134,-1.7812,-0.94894,0.68511,-0.27613,2.0606,-0.19297,-0.42533,0.57351 0.62819,-2.8336,1.2008,2.1841,1.0099,2.2364,0.23514,3.4683,-0.11112,1.0405,-0.22818,-1.4472,1.3526,-0.048226,-0.82 -2.3292,-1.0456,-2.0872,0.32398,0.13727,-1.9704,-1.0456,-1.3637,-0.12323,0.89736,0.21006,1.7646,-0.17278,0.90099,-0.38714 -1.9141,-3.0842,0.16185,-1.1152,0.14248,0.28447,-1.8074,1.7058,0.69038,0.88124,-1.1664,-1.2338,1.0154,1.199,0.28541 0.67114,-3.0635,-1.468,-1.4997,-1.4544,-0.94704,-1.8993,0.8472,-0.70117,-0.51584,-1.3025,1.8395,-1.522,-0.51959,1.5613 1.2911,-4.1868,0.26547,0.58318,-0.20724,3.7687,-0.40353,-0.66036,-2.3676,0.67788,-0.80393,-0.32525,0.80416,-0.51764,-0.41806 1.5011,-4.0077,1.595,1.0422,-0.85646,0.070259,1.6696,-2.1774,-1.0383,-0.72466,-0.77796,-0.87612,-0.012026,-1.1234,-0.72382 -1.9443,-2.5904,-1.5411,1.51,-0.41145,-2.4372,-0.47609,-1.4021,-0.96017,0.28535,0.3508,0.40678,-0.78916,-0.86819,-0.60256 -2.633,-1.0227,-2.9738,-0.49801,0.55553,-1.942,-1.7189,0.46469,0.017604,-0.49485,-0.49899,1.6997,-1.5071,-0.78076,0.024658 -3.6194,-1.9548,-2.2192,-1.6567,0.84843,-0.56446,-2.4439,0.53903,-1.0379,-1.2704,-0.71528,0.79249,-1.6896,-1.168,0.55313 -2.0887,0.1692,-3.4256,0.06212,-0.6412,-1.8912,-0.51718,0.29181,-0.29291,0.54904,-0.43421,0.71777,0.50364,0.91189,0.081039 -1.5387,-3.1728,-0.38811,-0.27007,-1.5785,-1.5706,-1.6122,-0.71352,-0.32623,0.61611,0.073073,0.50004,0.62222,-1.1889,-0.69778 -2.3409,-1.5114,-3.3914,0.076496,-0.19545,-1.8745,-0.92178,-0.29795,-0.65908,-0.70671,-1.0214,1.1912,-1.8041,-0.74631,-0.46131 -2.6264,-1.6606,-3.2526,-0.73355,-0.99199,-1.0491,-2.3771,0.13635,-1.2766,-1.2494,-0.35109,1.3043,-1.3635,-0.65444,0.55096 -2.7068,-1.7822,-3.0662,-0.68798,-1.1707,-0.46137,-2.3444,-0.25344,-1.3307,-1.1351,-0.3293,0.89166,-1.0197,-0.58683,0.60133 -1.0676,0.80471,-2.8241,-0.43674,-0.41677,-1.1747,-0.3325,-0.14793,-1.2918,0.7989,-0.081245,1.8428,2.0141,0.48696,2.0644 -1.7912,-1.9328,-1.9244,0.42122,-1.9788,-1.1712,-1.3704,-0.89929,0.6651,0.65213,0.19054,0.11263,-0.39358,-0.68613,-0.40025 -1.5111,-1.4989,-3.2261,0.36366,-1.095,-0.55674,-2.3248,0.95623,0.29374,-0.45682,-0.4233,0.89922,-1.9118,-0.61285,1.0832 -0.85594,-2.8597,-1.2736,2.5511,-1.2194,0.85106,0.30021,-0.30189,-0.26242,-1.045,0.8817,-1.6123,-0.80345,-1.2558,-0.28309 -2.7986,-2.0181,-0.89595,0.35768,-1.5712,-1.5368,0.13765,0.7996,-0.29422,-1.1347,0.47184,-0.54868,-1.5783,-1.1328,-1.3879 0.099997,-3.1274,1.6296,0.64709,-2.2361,-0.66983,-1.0275,0.94036,-0.56611,-0.265,-0.095477,-0.902,0.83657,-1.1117,-1.0315 -1.9747,-2.1046,1.0868,0.043903,-2.3308,0.45344,-0.7373,1.6341,-0.66886,-0.67349,1.0527,-0.75895,0.77956,-1.6049,-0.28398 -2.5556,-2.2294,-1.7405,1.0853,-0.76732,-2.3769,0.97187,-0.67009,-1.0878,-0.80018,-0.12915,-0.12428,-1.6843,-0.43333,-1.2902 -2.8585,-2.0484,-1.2074,-0.16469,-0.65749,-2.6327,-0.14413,-0.36523,-1.0859,-0.57614,0.77126,0.29641,0.56125,-0.50145,-1.4364 -1.3433,-2.8475,0.95163,1.363,-1.3994,-0.4196,-0.89717,1.6763,0.62637,0.0403,0.89065,-1.4171,-0.40471,-1.2277,-0.75744 -1.3071,-3.9502,0.34939,0.61635,-1.5982,-1.2548,-0.623,0.24147,-0.058126,0.81281,0.40153,-1.0739,-0.37345,-1.1528,-1.1496 -2.4131,-2.3722,0.34912,0.0086391,-2.0722,-1.0756,-0.28585,0.99308,-0.71491,-1.2727,1.1563,-0.73775,0.017068,-1.5179,-0.90488 -2.354,-2.2409,-1.9676,0.66579,-0.98846,-2.8242,0.061934,-0.16867,-0.72367,-0.78932,-0.028005,0.42634,-0.48141,-0.3737,-1.2693 -2.3526,-3.0659,-1.3983,0.32636,-1.2774,-1.73,-1.4338,0.1133,-0.14157,0.30052,0.14456,-0.071128,-0.3552,-1.3294,-0.99651 -2.1693,-1.3349,-3.4603,-0.30957,-1.6221,-1.6888,-1.3585,-0.38874,-0.49297,-0.50084,-0.63947,1.1087,-1.1426,-0.12297,-0.37219 -1.095,-2.7394,-2.5194,2.4038,-0.70152,0.38467,-0.64063,-1.033,-0.66076,-0.62866,0.1223,-0.42166,-0.39482,-1.3121,-0.073216 -1.2296,-2.385,-1.0619,-0.36177,1.4625,2.1917,-1.2019,-0.7846,-0.059076,-0.79801,-1.7909,0.60617,-0.61906,0.23192,2.0259 0.75887,-2.8045,-1.8901,2.1189,-0.44135,1.2253,-1.07,-0.4257,-0.21713,0.34924,-1.0848,1.07,0.40879,-1.732,0.4394 -0.22665,-1.8146,-3.2994,1.8517,-0.94423,1.7737,-0.86215,0.48593,-0.76472,-0.80396,-0.48163,-0.45727,-0.46274,-0.53494,0.82101 -0.13832,-2.5318,-2.4368,2.5871,0.43593,0.63321,-1.1988,0.89047,0.097582,0.0095267,-0.43321,-0.11932,-0.4418,-1.2238,0.90404 -1.077,-0.6612,-2.8062,0.94184,-1.5262,-0.39926,-1.6534,0.48387,0.35618,-0.10288,0.38219,1.303,-0.18077,-1.0483,0.82809 -2.08,-2.6622,-1.1698,-0.98325,-0.79485,0.39035,-2.37,1.4552,0.5197,0.88992,-0.30053,-0.68495,-0.17159,0.37888,0.47689 -0.56134,-3.2571,-2.2572,2.0876,0.80169,1.0225,-1.4398,0.55277,-0.1499,0.19242,-0.34739,0.033515,0.077103,-1.1617,0.10749 -0.96044,-1.3801,-3.3043,1.9844,-0.7844,-0.4766,0.35811,-1.8751,-0.42821,-0.51223,-0.48321,0.12445,0.27431,-0.14802,0.026309 -1.8276,0.83313,1.0954,0.24854,-0.088972,-0.94241,0.94454,-0.066881,0.78211,0.35109,-0.80142,1.852,0.83696,-1.6968,0.0604 -3.475,-0.41904,-2.815,-1.4765,0.72598,0.23981,0.094065,-0.093827,0.67867,-1.3842,-1.0481,0.21777,-0.42027,-0.25343,-0.27503 -2.4138,-1.2339,-2.8911,0.53898,0.30453,-0.51248,-0.1332,-0.86335,1.4272,-0.84519,-0.52823,0.14934,-1.1867,0.57454,-0.45982 -3.0237,-1.2511,-2.544,-1.1858,1.1422,0.32286,-0.43099,-0.86952,0.11802,-2.4037,-1.5611,0.42314,-0.68138,-0.80567,0.62563 -3.8492,0.51388,-2.3952,-0.97818,1.0436,0.90781,1.1951,-1.1014,-0.047654,-0.60748,-0.50229,0.034603,0.71594,0.71676,-1.564 -2.2038,0.67754,1.9647,-0.5685,-0.11227,-0.39856,1.2929,-0.52342,1.7083,0.03022,0.30923,-0.16674,1.2993,-1.555,0.32703 -0.28114,2.4713,-1.8432,0.45359,-0.21084,2.3905,-1.3532,0.45147,-1.1656,-0.28093,0.1521,-0.80019,-0.17097,0.078292,-1.0032 -0.98073,-0.19455,0.97766,-2.2127,-2.2896,2.3935,0.59796,0.20236,-0.44303,-0.50575,0.18194,-0.75796,-1.5974,-1.5977,0.061492 -3.258,-0.43979,-0.77066,-0.75046,0.06936,-1.1253,-0.13668,-0.71913,1.6592,-0.1745,0.026729,-0.3169,0.26088,0.045517,0.064835 0.64233,-0.2594,-1.7537,0.042907,0.034977,1.3981,0.10965,-0.25702,-1.7444,-1.1284,1.779,1.0406,0.23812,0.63402,0.14881 -2.2657,-2.1743,1.1475,-0.047048,1.7202,-0.2652,-0.5694,-1.2694,1.4467,0.38533,-0.65471,-0.56119,-0.20155,-0.5683,0.64036 1.998,1.8143,-0.15568,-1.2702,1.7375,-0.71522,-0.3399,-1.4208,1.2406,0.9672,1.5252,0.41037,1.5893,-1.4279,0.2274 0.14845,1.5598,2.5596,0.45734,0.53704,-1.139,-1.0745,1.0135,1.642,-0.48573,-0.115,0.68813,0.4722,-0.82987,1.2486 -3.6745,1.3597,-1.2035,-0.52962,0.19225,0.63455,2.0524,0.76801,0.21556,-1.3426,0.37904,-1.1977,-0.044134,-1.4608,-0.23658 -3.4071,0.40753,-2.4301,-1.0787,0.28311,0.29221,-0.23099,-0.80925,0.13,-0.13801,0.081809,0.92988,0.55625,-0.033919,-0.55873 1.053,1.6899,0.70056,-0.83087,-1.8062,2.4411,0.29876,0.53853,-0.64309,-1.9518,-0.22339,-0.1589,-1.3722,-1.1722,0.75233 -0.46056,3.2956,1.4679,0.18124,-1.1879,0.34586,-0.62115,-0.59057,-0.25493,0.49797,-0.13422,1.5133,-0.90966,-0.0028369,0.40088 -2.6111,-1.3726,1.2203,-1.6363,0.088656,0.36054,-1.0643,0.8695,1.7309,-0.55689,0.089148,-1.3502,0.91919,0.85344,0.76733 0.30964,2.9041,1.463,0.2435,-0.029038,0.022731,-1.1119,-0.3434,0.81627,-0.13332,-0.70891,1.2841,0.85758,-1.7478,0.37035 -0.21276,0.51821,1.7972,-0.38863,-1.7589,1.2203,0.64218,0.63152,-0.84703,-2.1773,0.058416,-0.68193,-0.19693,-1.8899,1.181 -1.567,4.0736,-0.33611,0.31424,0.22798,0.85427,-0.64062,1.2399,-1.5027,-0.21649,-0.53159,0.62548,0.68403,-0.82527,0.024942 -2.2398,0.43629,1.8133,-1.5506,-0.26713,-0.099495,0.63894,-1.2961,1.6247,0.78876,-0.073674,-0.51459,0.32511,-1.0252,0.098136 -3.7463,-0.81891,-0.96523,-1.4333,0.90523,1.3224,-0.4086,-0.68624,0.19384,-2.1208,-0.33155,-0.23427,0.36417,0.3191,-0.5081 0.35906,4.0239,0.21713,-0.83613,-0.61118,-0.080635,-0.4325,0.24554,-0.55817,0.36342,-1.7899,0.16551,-0.59514,-0.5199,-0.099191 -3.5361,0.45833,0.63537,-0.52912,-0.25317,0.83533,1.4397,-0.93717,0.65724,-0.27636,1.3214,1.0777,-0.71343,0.47798,-0.66584 -3.3618,0.75366,-0.069077,-0.51293,-0.83475,1.4391,1.0839,-1.3342,-0.18147,0.19554,1.4086,0.21654,0.31061,0.52456,-0.98536 2.4884,0.65073,-2.3551,-0.25636,-0.1191,-0.13128,0.9567,-0.82406,0.46628,1.7229,0.51405,-1.1617,-1.4873,0.062606,1.6143 -2.5617,2.5462,0.59676,-0.56462,-0.79848,1.3648,1.8391,-0.96658,-0.32345,0.57583,0.51828,0.22227,0.34848,-0.26358,-0.077863 -2.8245,0.81078,-0.11055,-0.05914,-0.44202,-0.40365,0.79376,0.48213,1.5326,-0.080238,1.0475,-1.0823,0.65333,-0.79405,0.16231 1.8772,1.2623,-2.7297,-1.5988,-0.36969,0.76741,0.24629,0.54244,1.1016,1.0902,0.86111,-0.18776,0.37461,-0.4628,0.62104 -3.261,1.286,-0.29963,-0.52497,-0.16794,1.8043,1.1677,-0.88808,-0.25069,1.0756,1.0035,0.16879,-0.048125,0.77262,-0.89416 -0.21865,3.291,-1.1846,1.2627,-0.48592,2.3484,-0.38508,0.40644,-0.34859,-0.37107,-1.4969,0.083432,-0.082221,-0.54714,0.0030747 -3.6245,0.52433,-0.57886,-1.0235,0.4221,0.065654,0.95444,-1.7432,0.36223,1.365,0.60287,0.71617,0.44759,0.99069,-0.85138 -3.9996,-1.6031,-0.76491,-1.3597,0.29035,-0.52007,-0.75991,-0.39456,1.1076,-1.2179,-0.02697,-0.30572,-0.45506,0.94309,-0.59628 3.4823,0.45687,-0.83515,-0.20905,0.27219,0.70968,-0.61408,-1.5612,1.6786,-0.81172,-0.15261,0.25021,-0.58462,0.11527,-1.6384 2.7741,1.3136,0.56442,1.1941,0.65422,0.36966,-0.72942,-2.3781,-0.8884,-0.50898,-0.69607,-1.2775,-1.1373,0.504,0.56943 1.4557,1.8287,0.38154,-0.063693,-1.1383,0.44267,-2.5838,-1.0632,1.3827,0.62081,-0.20954,0.13821,-0.38451,0.26984,-0.86926 -2.5547,1.275,0.1751,-0.54867,0.19004,1.1497,0.38705,-0.61587,0.14434,-2.5453,0.99143,0.65266,0.68702,0.9525,-0.88516 0.34204,2.687,1.4161,2.0643,1.1503,0.029934,-0.6373,-1.2935,0.56221,0.88722,-0.68199,1.22,-0.6526,0.19026,-0.26791 -1.6861,1.3153,1.3753,1.4535,0.54325,0.87844,0.061845,0.4643,0.94327,-0.33129,0.72926,1.1544,-1.1449,1.1734,0.71704 -1.8861,0.58056,-0.6692,2.1422,0.047468,1.255,1.6195,-1.5801,0.096537,0.52488,0.77652,0.66748,-0.051965,0.17257,0.56077 0.77692,2.8208,1.2081,0.78027,1.9495,-0.88615,-2.2388,0.16009,-1.6308,1.4479,0.73828,-0.1566,-0.96251,-0.15993,-0.60351 -2.2192,-0.59825,1.8999,-1.6389,-0.026029,0.0144,0.0078879,-1.3388,1.8349,0.044976,0.25621,-0.36011,1.0628,0.83443,-0.23284 -3.8285,-0.76513,0.11595,-0.48563,0.21381,-0.57871,0.82831,-0.178,1.8736,-1.0387,0.69067,-0.76498,-0.67309,1.0982,-0.76207 -3.4458,-1.5931,-0.50313,-0.76525,0.55431,-0.63582,-0.63961,-0.68414,1.6868,-0.88814,0.16991,-0.40139,-0.59512,1.4942,-0.22216 -3.7329,-0.92182,0.30062,-1.4557,-0.26369,0.83386,-0.13128,-0.92515,0.44205,-1.7423,0.94337,-0.79525,0.73443,0.97937,-0.60061 -4.0061,-1.0507,-0.99979,-1.4616,0.59884,0.21031,-0.51466,-1.0093,0.7815,-1.233,0.29813,0.14443,0.20054,0.97138,-0.52999 2.1579,3.2265,-1.6403,-3.4836,1.7081,1.1384,0.62788,1.0203,-1.6545,0.72543,0.6158,-0.88072,-0.97259,-0.90686,0.34072 1.3584,4.1564,0.041116,-0.76415,-0.32589,-0.14675,-1.1435,-0.71758,-0.53965,1.0178,-1.2552,-0.37491,-0.79745,-0.14869,-0.89513 2.7259,0.83523,-2.5586,0.62491,-0.21769,0.4303,0.14263,-0.63104,1.2623,-0.81176,-0.26153,-0.85048,-1.1083,-0.33672,-1.0966 -3.3782,0.77942,-0.013875,-0.52331,-0.040203,1.8842,1.2804,-0.83662,0.62188,-0.98909,1.202,-0.30912,0.4764,0.24097,-1.0884 1.0724,0.54413,-0.38345,1.5391,2.358,0.52754,-2.1184,-0.32162,1.9288,0.56774,0.38887,-0.084387,0.13613,-1.4395,0.28335 -3.7831,-1.9643,-1.3633,-1.8792,1.2411,0.75586,-1.4084,-0.47347,0.082536,-2.4228,-0.72551,0.35452,-0.19975,0.77933,0.53973 -2.2093,0.81103,0.019632,1.8774,0.57532,-0.17711,1.7149,0.5971,1.1066,-0.35411,0.68331,0.075101,-1.1543,1.388,0.16444 -2.3066,-0.99025,-2.1226,-0.62957,0.82352,0.17115,-1.4869,0.15412,0.34307,-2.0842,-0.17579,1.4696,-0.148,-0.19977,2.1368 -1.808,-0.8905,-2.9509,-0.56753,0.46719,0.86594,-1.2026,1.1879,0.67144,-1.7362,-1.2304,0.84271,-0.59841,0.13467,1.6077 1.3893,2.813,2.2714,-0.11106,0.26225,-0.45564,-1.8598,-1.0328,0.41984,-0.038832,0.70521,1.117,-0.5079,2.231,-0.027406 -2.9294,-1.2521,-0.90369,-1.7141,0.9791,-0.50705,-1.8985,0.49085,0.5032,-0.84183,-0.60867,0.31516,0.20769,0.49417,2.084 -2.3406,-1.4023,-2.0644,-0.56145,0.867,-1.993,-1.5261,0.53632,0.56969,-1.5912,-0.75289,1.4466,-1.5624,0.097405,1.9077 1.2206,2.3281,1.4979,0.69875,0.82735,-0.1704,-2.169,-0.37358,1.1998,0.34129,0.63342,1.0686,0.40708,0.42889,-0.41994 -0.98126,3.4777,0.76113,0.63889,-0.92299,0.34611,-0.3077,-0.41785,-0.05661,-0.030232,0.08086,1.7031,0.45736,0.83066,-0.10912 -0.29617,2.5957,1.2652,0.60816,-0.10237,-0.206,-0.86159,0.045449,0.94253,-1.2375,-0.21256,1.1132,1.3676,-0.38529,0.12276 -2.671,-0.51679,-3.0874,-0.56039,1.0206,0.0094813,-0.5907,-0.29324,0.050882,-2.7029,-0.90141,1.392,-0.35411,-0.25421,1.1299 -2.571,-2.6629,-1.3958,-0.87789,0.85743,-0.33945,-1.2489,1.2078,0.96252,-1.1031,-1.3484,-0.64282,-1.4887,2.0592,0.85979 -2.8776,-0.091666,-2.7355,-0.94961,0.74789,-0.58437,-0.62756,0.020544,0.043268,-1.6649,-0.77198,0.74112,-0.091687,0.097704,1.1416 -3.3783,1.9607,-1.4749,-0.5197,-0.12341,0.841,1.1259,1.6934,0.2229,0.80802,0.49135,0.51208,0.48299,-0.85479,-0.2613 -1.7531,-1.8114,-2.5844,-0.14557,0.23711,0.76148,-1.7858,1.2123,1.2625,-0.77731,-1.2267,0.93157,-0.80083,1.4372,1.4354 -2.6233,-1.0037,-1.1148,-1.3458,0.4839,0.27994,-0.92018,1.364,1.5856,-0.96304,-0.11451,-0.67702,-0.24057,1.1633,0.40624 0.72291,-3.578,1.5448,0.0033095,0.61394,-0.25607,1.2152,2.5181,0.0017368,0.99288,-1.3519,-1.006,0.99266,0.49784,-1.3843 -1.6433,-1.9226,-2.5095,0.51576,0.41781,-0.27264,-1.4932,1.4085,0.89899,-0.59195,-1.3994,0.25791,-1.3857,1.1659,1.5921 -2.7301,0.70109,-3.2303,-1.1617,1.8413,-1.0323,-0.63448,0.87868,-0.29949,-1.1201,-1.211,1.5365,-0.9987,-0.38258,1.3003 -1.652,0.083568,2.7683,0.59012,1.0807,-0.75844,0.83268,0.92894,2.4539,-0.32109,0.65014,-0.59321,0.64224,0.81107,0.38496 2.3491,-1.0292,-1.4164,-1.2029,2.3736,1.4278,0.76667,0.41953,0.21064,0.4167,0.054503,1.3967,1.9616,-0.29326,1.0449 -3.7242,0.013696,1.0542,-1.6611,0.48022,-0.31065,0.46644,-0.93266,0.85857,-0.40684,0.57253,-0.77904,1.3404,0.65583,-0.1166 -2.6512,-0.59347,2.4402,-0.61104,-0.49768,0.18853,0.14923,0.66213,1.8076,-0.45596,0.60741,-0.85161,0.88802,0.76889,0.51203 -1.6496,-1.1141,1.9807,1.2375,0.97303,0.56914,0.63676,1.453,2.2479,-0.34127,0.99897,-1.5267,-0.072963,1.8397,0.42815 -1.3714,2.3656,-0.79346,1.4178,-0.67912,0.272,1.3089,0.031882,-0.90796,1.5282,-0.46514,0.90087,-0.50255,-0.92255,0.91652 -2.7864,-2.5899,1.6243,-1.4847,1.0834,-0.33406,-1.091,-0.46828,1.2939,0.53744,-0.80621,-0.81765,0.86707,1.0891,0.099806 0.061853,-1.0086,4.862,0.12922,1.2893,0.1002,0.49228,0.78279,1.447,-0.47523,-0.54862,0.2503,0.55746,0.44435,-0.46408 2.966,1.0452,-1.2332,-3.9203,1.2652,-0.14593,1.3105,0.77961,1.4548,0.5438,1.3589,1.3966,0.081705,-1.6626,0.10482 -0.35801,-3.593,3.8797,-1.8414,1.1019,-0.11141,1.5713,-1.4117,-0.54178,0.41873,-1.5488,0.68936,-0.53255,-0.14434,-0.85566 -0.03951,-0.25502,0.3152,2.5999,-0.24122,2.77,0.73359,-0.88315,0.034352,-0.52675,0.10559,0.39492,1.3043,0.36369,1.0122 -0.6487,-0.020611,-1.3754,1.4554,1.4719,0.014699,-1.552,-0.44858,0.135,-3.2694,-0.026569,-0.34457,-1.1312,0.95844,-0.82474 -1.7711,-0.55739,3.1385,-0.8472,0.17443,0.81746,0.394,0.5362,1.7405,-0.31988,0.75586,-0.78272,1.4624,1.877,0.42223 -0.89981,1.2048,2.1517,2.6297,1.166,-0.67711,-0.10837,-0.9211,0.03447,-1.3247,0.34087,1.6411,-1.0821,0.9758,0.15227 -0.65097,1.8744,3.3832,1.0634,0.7006,-0.5031,-0.25304,-0.63968,0.28031,0.37578,0.42154,0.90708,-1.2652,0.69253,0.1173 -0.41168,2.4106,0.56194,-0.24986,0.22942,-0.7059,-2.3002,0.57063,1.3172,-0.43822,-0.037741,0.39797,1.0501,-1.0864,0.20803 -3.4839,0.56277,-2.6859,-0.87313,0.37394,1.8987,0.68891,0.13973,0.47868,0.37304,-0.35986,-0.62011,0.40516,0.33884,-1.4341 3.7621,-1.7443,-1.0463,-0.29165,2.2867,2.4976,3.1633,-0.66038,-0.45499,0.27735,-0.52901,1.6483,-0.91163,-0.24453,0.39375 -3.4905,-1.8229,-0.72898,0.038503,0.57429,-1.427,0.11257,0.10974,1.6712,0.23258,-0.58079,-1.4876,-0.41147,0.99611,-0.31153 -2.6437,0.8131,-3.2785,-0.031911,0.46216,2.0617,0.97545,-0.59842,-0.015016,0.94899,-0.82218,-0.25638,0.59955,0.28572,-1.2197 -0.96028,-2.9529,2.9933,-2.2584,0.66861,0.74106,1.2345,-0.46603,1.4115,-0.04587,-1.8496,-0.14896,0.47562,-0.3644,-1.8011 -2.6152,1.8867,-1.8015,0.24057,-0.93228,1.2337,1.147,0.88094,0.18453,0.72599,0.32579,0.78666,0.8052,0.52646,-0.10272 2.3503,-1.1682,0.46497,0.011712,0.0082301,3.1397,-1.4831,0.037003,-1.0045,-0.68817,0.14098,0.92962,2.791,1.6143,-0.86393 -0.3773,-2.4006,1.922,0.38223,0.31561,2.9948,1.1711,-0.69087,0.98593,-0.0095025,-0.87788,-0.32759,1.0488,0.097051,-1.1795 -0.56242,-1.925,3.2065,-1.0417,0.56852,1.4966,-0.81252,0.043516,0.73936,1.3907,0.74852,-0.84043,0.18525,2.6773,-0.22522 2.0091,2.1224,-0.70853,-1.005,0.73328,-0.21783,-1.1575,-0.56504,0.76739,1.1988,0.26295,-0.4796,2.4564,-1.9111,-1.0763 2.3178,0.54463,0.053136,0.77709,2.1979,0.7681,-1.0254,-2.8186,0.30868,-0.26794,1.2104,-0.92611,0.66818,-0.18638,0.63611 0.95295,3.3173,-1.1313,-1.9886,2.0268,1.0569,0.6223,-0.67264,-2.6432,0.36402,0.9846,-0.61906,0.25023,0.030983,0.75597 -3.2086,2.3271,0.11179,-0.026932,-0.048358,0.41394,1.1992,0.90155,0.048102,-0.35571,0.54665,1.9277,-0.92823,0.012305,-0.60958 -1.9627,-2.943,2.2003,-1.0114,0.41079,-0.14352,-0.29331,1.7382,1.0321,-0.57347,-0.76019,-1.5606,1.6018,-0.25449,-0.53422 -3.2431,0.11245,-2.9485,-0.7132,0.11613,-0.62787,-0.23568,0.18402,0.47323,0.53689,-0.78297,0.22491,0.17895,0.35233,-0.50058 -2.2049,-1.8835,-1.4913,-0.89833,1.0904,-0.094652,-2.148,1.2205,0.25562,-1.511,-0.96169,0.24086,-1.0095,0.7917,2.2979 3.8438,1.1049,0.54186,-0.088644,0.46687,0.63489,-0.39565,-0.86889,0.98441,0.53815,-0.65771,0.66132,-1.376,0.82752,-0.22027 -0.94323,2.0871,0.43628,0.69982,-0.8463,0.23839,-0.53973,-0.097506,0.69356,0.8974,-1.0305,1.8936,-0.060108,0.046909,0.31475 -2.8533,-0.76149,-0.33228,-1.4949,0.18851,-0.0065843,-0.65418,-2.4916,0.12884,0.59442,-0.29037,0.73813,-0.31637,0.42056,-0.16414 -2.3421,-1.3422,-2.7933,-0.38322,0.96028,-1.3403,-1.4386,0.28813,1.1218,-0.84907,-1.2948,1.1484,-1.7605,0.66878,1.4436 1.6523,-3.1107,1.8714,1.3752,0.39949,3.6571,1.2157,0.077249,-0.54075,-1.0495,-0.95046,-0.091872,0.53919,1.0794,-0.97308 -1.3775,-1.3202,2.4549,-2.844,0.20075,-0.2361,0.27286,-2.2654,0.51058,0.67595,-0.94225,-0.27374,-0.66511,0.68172,-0.35685 -0.063246,2.8535,2.408,-0.79169,-0.77233,1.6256,-0.4495,-0.64763,-0.2468,-1.1796,-0.15667,0.79555,-0.79,1.0327,0.65011 3.2233,1.3247,2.2455,0.15572,0.34739,-1.4675,-0.12701,-1.8864,-0.6494,-0.024532,-1.2632,0.1045,-1.9941,-0.88805,-0.97939 -2.6323,1.6993,2.1335,-1.0319,0.47119,-0.23841,0.98626,1.4952,0.02488,-1.3306,0.87643,-1.5693,0.90773,-1.5972,1.1865 -3.1432,1.4419,-1.7273,0.02622,0.50725,2.0135,1.6033,0.066337,-0.30621,0.85442,0.39101,-0.74544,0.091073,-1.2893,-0.24616 -0.087958,-0.053965,1.3699,-0.84805,-0.57599,1.3097,-0.12483,0.10641,0.92375,0.82457,-1.92,1.6507,0.56334,-0.017527,-0.43866 0.46591,-2.1906,2.3789,-0.89286,-0.73435,1.5317,0.54644,-0.96933,2.0343,0.91946,-0.82342,-0.51297,-0.35325,1.1309,-1.3426 -2.394,-1.45,1.2736,-0.51088,0.41247,-0.1292,-0.21392,0.045968,2.5778,0.45375,0.34455,-0.74372,0.14879,0.38223,0.041444 -2.5648,-1.5964,0.64608,-1.5126,-0.1812,0.33023,-1.4,-0.73366,1.2219,0.27388,-0.020935,0.24199,0.23671,1.1806,-0.29635 -2.7008,-0.33252,0.57949,-1.397,-0.57543,0.86287,-0.30812,0.45429,1.5716,-0.90654,1.0218,-0.45091,0.38694,1.1276,-0.86141 -2.7067,0.12202,-0.76549,-1.4144,0.2521,0.024442,-1.1775,-1.2282,0.49045,0.955,-0.0072734,0.89181,-0.23047,-0.10288,0.20848 0.30009,-0.31977,2.478,0.29681,-0.3521,0.40314,1.1984,-1.8359,0.71643,1.186,0.28271,-0.672,-0.96774,1.6965,-0.60276 3.3206,-0.31597,-1.7775,-0.86152,0.66935,-0.19951,2.3214,-0.33334,0.86193,1.6977,0.48532,0.72874,-2.7425,0.1612,1.0973 -1.2717,-0.40824,3.8087,-1.0335,3.1426,-0.89376,0.59349,0.075184,-1.1915,1.2537,-0.084703,-0.72418,-1.4601,-0.31963,0.44306 -4.8643,-1.3223,0.052759,-1.8302,2.1986,-0.037452,0.038063,0.40439,-0.50486,-0.91554,-0.94179,-0.41762,-0.997,1.1596,-0.747 -3.6014,0.26325,-0.285,-1.0887,0.44285,1.4409,1.2702,-1.7166,0.32568,-1.2262,0.96773,-0.16416,-0.0072698,0.62432,-1.5789 -0.75959,1.6599,-0.3505,2.0909,-0.32862,1.6673,-0.49315,-0.50703,0.90749,-0.33521,0.35891,1.2454,-0.86676,1.156,-0.1486 1.843,-0.62816,2.0795,1.2647,0.48747,2.1163,1.6316,0.62139,0.99616,0.68135,-1.0746,0.52855,1.3574,0.99904,-0.31642 -2.648,-1.6541,0.082833,-2.2558,0.77865,1.8167,-1.9646,0.063157,-0.73532,-0.76056,-0.95656,0.10755,1.3436,1.3046,1.3467 -0.77378,3.6526,-0.82419,0.11779,2.0013,2.2053,-0.78486,0.35242,-2.233,-0.36554,-0.31145,-0.61131,-0.55345,0.29654,-1.2346 -2.9355,0.58717,-3.1452,-0.63222,0.0091589,0.60843,0.29539,-0.060805,0.77165,0.07718,0.041421,0.30798,0.35238,-0.23932,-1.0179 -1.2811,2.7235,1.0937,0.38812,-0.82429,0.16505,-0.20146,0.23758,0.39696,0.98368,-0.12628,1.6519,0.27203,-1.0858,0.69843 -1.2978,-0.59207,4.5825,-2.0681,1.3229,-0.60126,0.55116,-1.1517,-0.39918,-0.23383,-0.6189,0.21615,-1.1018,0.93964,0.16009 -4.4253,-0.15839,0.11375,-1.6935,1.068,-0.11433,0.48946,-0.9828,-0.11982,-0.99634,0.84322,-0.030183,0.11604,0.16843,-0.42667 -0.41576,-0.069772,4.174,1.0259,2.5396,-1.1458,1.2898,-0.12795,0.31338,0.091959,0.099563,-0.22361,-0.30709,0.21144,0.67872 -4.2473,-0.48195,1.308,-2.0999,1.8544,-0.05159,0.52147,0.35681,0.16482,-0.9793,0.51624,-0.85425,-0.38114,1.0678,-0.22591 -2.528,-1.0393,-1.6055,-1.2845,0.072819,-1.3543,0.12181,-1.0789,0.46888,-0.57602,-1.1285,0.42464,1.4644,-0.73667,-0.31859 -1.3011,-0.95973,3.8303,-1.9448,1.3756,-1.1915,0.85288,-1.731,-0.29095,0.3028,-0.6366,0.021213,-0.65045,1.1251,-0.15668 1.2489,1.783,-1.7801,-2.5559,1.5971,0.72683,1.5277,0.24094,-2.1184,-1.5037,0.64594,-1.1995,-0.40999,1.5117,1.6006 -3.7413,-0.20622,2.0336,-1.6268,1.1341,-0.55993,0.77654,0.60713,1.1319,-1.0163,1.1847,-0.51323,-0.34097,1.018,-0.23395 1.5411,-0.24094,0.087586,2.0669,1.3239,2.5098,-1.119,-0.029782,-0.026754,-1.3151,-0.26916,0.36035,2.186,1.1055,0.3286 2.1322,2.2224,1.8043,-2.1175,1.4332,-1.8652,0.11165,-0.74515,-1.3951,1.0203,0.088124,-0.30195,-0.93003,2.3772,0.61939 1.6538,4.4941,0.44929,-2.3083,1.2814,0.053034,-0.80852,-0.19665,-1.1271,0.75244,1.0972,-0.0307,0.10672,0.84646,0.31882 -3.697,0.65009,2.5848,-1.2354,1.988,-0.61009,0.77954,0.29752,0.04823,-0.21548,0.98054,-0.46033,-1.3174,0.44034,-0.38739 -1.7316,2.052,0.52849,1.1539,-0.28214,-0.10455,0.83272,0.0095769,0.51021,1.5567,-0.71277,1.7124,0.78393,0.17859,0.2495 -0.44704,2.4559,3.8124,-1.1042,1.515,-0.84404,-0.55531,1.0148,-0.27227,-0.61335,0.54859,0.12277,-0.70606,0.34062,0.41999 1.9804,1.2416,3.89,-0.58591,3.1063,-1.3276,0.89504,0.42257,-1.9715,0.84068,0.0061921,-0.14876,-1.2434,-0.2614,0.49538 -2.1411,-1.6032,-0.21478,1.645,0.52327,1.1234,0.2832,-1.2883,0.84639,1.0998,1.0638,-0.24102,-0.64218,0.59086,-0.44859 -3.0978,-0.38345,-3.1969,-1.0433,0.75232,-0.5777,-0.83841,-0.069192,0.055615,-1.5394,-1.0911,0.77197,-0.53071,-0.40034,0.63261 -1.5465,3.4611,-0.13046,0.17253,-0.63104,0.8943,-0.61442,1.135,-0.43681,0.42864,-0.14017,1.315,0.25577,-0.79859,-0.015117 -3.1573,0.099013,-3.1832,-0.49666,1.6033,0.090816,-0.22815,-1.177,-0.40951,-1.0822,-1.0993,1.2399,0.31913,-0.44261,0.41353 -1.8649,-0.42787,-3.2582,-0.52878,0.2467,-0.17222,-0.80359,0.59457,0.059516,-2.2527,-0.9776,1.1761,-0.86673,-0.79764,1.4769 -2.6932,-2.253,-1.7225,-0.9898,0.8693,-0.30697,-2.4209,0.70357,0.91567,-0.82971,-1.0522,1.0696,-0.98172,0.67916,1.6748 2.7514,0.1407,0.74961,-1.4173,1.3015,0.34791,-1.5302,-0.20543,2.5292,0.020822,0.11247,0.89766,1.7401,-0.07519,-1.1015 -2.8696,-0.89931,-1.9802,-1.2747,0.53989,0.56985,-1.9785,-0.7954,-0.69635,-1.0271,-0.75293,2.2317,0.13957,-0.16592,1.0062 -2.5523,1.0228,-1.0763,0.49848,-0.79361,2.2715,1.322,0.36225,0.94646,-1.4761,0.84185,0.13559,0.34601,-0.67524,0.12144 -2.9386,-1.5,-1.0652,-1.0317,0.75113,-0.46101,-2.1188,-0.79033,0.99794,0.23987,-0.46021,1.4028,-0.15322,1.1044,0.73758 2.3718,-0.34243,-2.2529,-0.78783,-0.23508,0.1891,1.5109,1.3259,0.020033,1.0881,-0.16263,1.7253,0.30868,-1.5003,-1.1354 0.71614,-1.1828,-2.8026,1.0909,-0.49985,0.93649,0.97779,1.228,0.51887,0.1814,-0.70542,1.319,0.59602,-0.6105,-0.011195 -0.76828,3.5728,-1.3773,-0.58344,0.74717,0.67745,-2.0838,0.86141,-0.39971,-0.3813,0.80385,-0.17839,1.2815,-0.41493,-1.1369 -3.6132,-1.0634,-1.0602,-1.7308,0.24946,1.095,-0.6439,-0.40269,0.6671,-1.4455,-0.038367,-0.53879,0.64896,-0.30649,0.1401 4.0528,0.76405,0.46824,-0.032176,1.47,0.39912,-1.0791,-0.69617,0.36198,0.78198,-0.62675,-1.2393,-2.4989,-0.78292,-0.60147 -2.8971,-1.7209,-1.3907,-1.36,1.2791,-0.39628,-2.5173,0.43302,0.19883,-1.2923,-0.70345,1.7546,-0.72247,0.49959,1.7445 2.0506,-1.2577,3.9433,-0.22196,0.22268,1.8604,1.1094,0.54448,0.91412,-0.15322,-1.9272,1.0916,-1.2227,0.74125,-1.7734 -3.5554,-0.30367,-3.1534,-1.0056,0.96082,-0.11609,-0.17787,-0.76468,-0.064302,-1.5102,-0.7569,0.57409,-0.027552,-0.3075,-0.031662 -2.433,-1.8104,0.56452,-2.3086,0.55619,1.1181,-1.9279,0.026175,0.29339,-1.2355,-0.46635,0.17167,1.2776,1.3177,1.2905 -3.3169,-1.9868,-1.8635,-1.8323,1.4061,0.15866,-1.922,0.55052,-1.2475,-2.1369,-1.3632,0.5318,0.017721,0.53233,1.9926 -2.8872,0.45038,-1.6593,-0.13455,0.33073,2.5448,0.32433,-0.036427,0.25922,-0.6154,0.58253,-0.12293,-0.10866,-0.62855,-0.60483 4.139,-1.0757,-1.977,-0.69728,1.0111,0.30035,2.2484,-0.12561,1.0345,-0.16869,1.5002,0.13283,-1.8023,0.09139,0.44481 5.5373,-1.124,0.08252,-0.51819,1.9835,1.0061,0.38058,0.19116,0.031418,0.10248,0.83877,-0.062901,-0.79746,-0.30469,-1.3201 -1.554,1.0391,-0.21507,-1.3319,-1.2008,1.3555,1.3903,-1.0937,0.27453,2.2019,-0.14552,0.03721,-0.46448,0.43445,-0.067551 2.9775,2.2525,-0.11326,-0.86745,-0.043363,-0.61299,-0.86492,-2.0512,1.3558,-0.086436,-0.30157,-0.56867,-0.52408,0.13445,-0.82647 -2.4862,0.13596,-0.042298,0.49661,0.3403,-0.37674,1.3535,-1.6396,1.6518,1.7684,-0.011127,0.19812,0.76257,0.29129,-0.67155 -3.4313,0.44609,-0.32121,-1.1719,-0.17885,0.057999,0.4381,-1.0797,0.89692,0.84063,0.33875,-0.048305,1.2843,0.78684,-0.61982 1.5827,-0.10939,0.21191,-2.6066,1.3138,2.39,1.7037,1.2745,-1.8193,-1.6699,-0.52842,-0.55318,-0.62012,2.5033,0.51653 -0.84163,-2.3013,2.5092,1.1999,1.6373,2.6478,0.44623,0.61087,-0.2655,-1.9452,-0.050637,-0.48929,1.5098,0.93587,1.6375 2.2607,1.647,1.4618,1.1398,4.2353,-1.1954,-0.80962,-1.5592,0.18694,-0.17364,-0.07044,0.0081633,0.40339,-0.44566,-0.10751 -0.26361,-0.37964,2.2364,2.3555,1.3242,1.1229,1.0282,-0.96657,1.0814,-1.5751,-0.27731,0.79494,0.36334,-0.39504,1.2472 0.60639,1.634,-0.17079,2.1004,0.72863,0.68789,-1.2188,-1.2248,1.4706,0.11934,-0.26086,0.51316,0.24758,1.3028,0.14148 -3.8306,0.52345,-1.5539,-1.4596,0.30995,-0.31362,0.57196,-0.98085,-0.12229,0.20733,0.12494,-0.35101,1.1655,-0.53197,-0.28423 2.9617,0.64967,-1.0963,0.96678,-0.4539,2.5801,-0.69448,-0.98174,0.20948,-1.2664,-1.0883,-1.0861,-0.25155,-0.16268,-0.36143 -1.0393,1.6992,1.098,0.8225,-0.35979,-0.11368,-0.028664,-0.084939,2.1524,-0.20895,-0.40567,1.5126,0.28331,-0.74657,1.1042 -2.6612,2.3393,-0.24881,0.52792,-0.5882,-0.10444,0.76863,1.2577,0.64063,-1.0158,0.13965,0.79563,0.22018,0.056716,0.60789 1.4629,0.82165,-1.7108,-0.16184,0.81721,1.6851,0.71818,-1.6399,-1.2381,1.3264,-0.17384,-1.5187,-0.44841,-1.5648,0.70939 -0.32263,1.2689,1.5215,2.1564,0.98941,0.025344,-0.5545,0.70257,2.0512,0.015853,-0.37799,0.55101,0.041189,-0.56339,1.6718 2.9733,0.44768,0.64106,0.80318,1.7963,0.57344,-0.93525,-0.91615,0.99435,-0.32315,-0.44244,0.64707,-0.042181,-1.0773,0.23981 -0.28156,0.034647,1.4827,1.9595,0.54102,0.37536,0.90861,-0.31162,2.209,-0.42932,-0.3464,0.26214,0.39729,-1.1402,1.2437 1.9042,-0.60037,2.2417,0.78475,1.7342,1.0482,0.18762,0.67481,1.7075,-0.83906,-0.89345,1.4708,0.73023,-0.60465,0.59187 2.1906,0.81547,0.75916,1.1536,3.3524,-0.9042,-1.2735,-1.6531,-0.14168,-0.0038646,-0.25125,-0.67763,0.017278,-2.205,0.14644 -1.9676,-0.44195,1.4579,0.65669,0.85701,-0.096408,1.2552,-1.4242,1.7941,0.92098,0.21197,-0.9369,-0.18622,-1.1424,0.80173 4.7252,0.21371,-0.68727,-1.2273,1.6768,0.77639,-0.13813,-0.54092,-0.70187,0.59154,0.13073,-2.0281,-1.5219,-0.39949,0.35809 3.4455,-0.8233,0.28023,-2.8218,1.9491,-1.5179,0.75624,1.2402,-2.0145,1.5509,2.1905,-0.22616,-1.405,-1.266,1.2314 -1.3509,1.8651,-1.9532,0.98856,-1.2174,0.76747,-0.6349,1.4683,1.2929,-0.71646,-0.29135,0.58491,0.21181,0.91628,-0.45681 2.1435,2.0182,0.78703,-1.3764,1.2269,-0.75866,-2.2588,-0.64304,1.3468,0.48992,0.8329,-0.10204,-0.15799,-0.34287,0.23912 -2.6023,0.082494,-2.4951,-2.187,2.4508,1.4802,-1.0722,0.97866,-1.9861,1.508,-0.62563,1.5517,0.56496,0.24578,0.9734 -0.16529,2.7491,-0.58286,0.49366,1.4981,-0.95267,-1.3763,1.1051,1.4914,-0.34566,0.10229,0.5881,-0.087885,-0.45732,-0.34865 0.62743,1.4284,0.84632,2.5898,0.9763,1.0529,-1.2086,-1.4177,0.98016,-1.0233,0.048199,0.50132,0.18236,0.78528,0.15694 2.0478,0.71368,0.90045,0.36461,1.9822,-0.49814,-1.5121,-1.0912,2.3143,0.43763,0.20692,-0.38358,0.37779,-0.56626,0.63904 -4.5496,-0.2776,-0.95808,-1.8119,1.3439,-0.33784,0.51504,-0.42775,0.32803,-1.427,0.16508,-0.72691,-0.043533,-0.42362,-0.43183 -2.117,2.1359,1.822,-0.79544,-0.95207,1.2303,0.78362,-0.20464,0.65311,0.25571,0.32665,0.49986,0.30047,-1.2525,1.2876 -3.0851,1.0989,2.7123,-2.5803,0.59877,-0.69868,1.4361,-0.092769,-0.33024,-0.30613,0.017313,-0.59718,-0.066252,-1.7848,0.70849 3.2557,0.44944,-0.46266,-2.901,1.0121,-1.071,0.40778,1.028,1.3503,0.0527,0.81885,0.34353,0.28934,-2.1316,-0.54811 0.27224,1.1231,2.591,0.87386,-0.017869,0.18785,-0.24329,1.2647,1.791,0.23404,-2.0152,0.52686,0.57164,-0.42095,0.91084 -3.9798,1.395,-1.158,-0.68818,0.22588,0.53544,2.1987,1.0068,0.0585,-1.1219,0.36868,-0.60405,-0.069168,-1.5294,-0.31167 -3.1894,1.7847,0.78085,0.57323,0.94073,-0.41978,1.0388,1.0329,0.48085,1.7775,0.84178,0.99801,-1.011,-0.40826,-0.11112 3.1683,3.2291,0.42867,-2.4137,-0.32727,0.16911,-0.82214,-0.024827,-3.0433,-1.3132,1.3662,-0.86432,-0.34669,-0.41222,0.014029 -2.4272,2.8143,1.8237,-0.40968,-0.10919,-0.095425,0.41946,0.91627,0.13889,-0.037173,0.21769,0.91684,0.45312,-1.6135,1.1936 2.0178,0.96511,-0.17832,-1.549,1.7408,-1.7067,-1.6013,1.7644,0.88151,-1.2921,0.80626,-0.74115,2.7197,-0.71289,-0.097314 0.8081,0.60598,-1.0369,1.6456,2.5345,-0.1838,-1.3454,-0.8581,1.3545,0.32563,0.75731,-0.55411,0.13664,-0.8828,0.74828 0.33595,1.8901,-1.6832,0.38823,1.1962,0.12291,-0.90484,-0.77964,-0.70703,2.336,1.7476,-0.40369,-0.78856,-0.38827,0.28838 -0.097802,2.6738,-0.68305,1.0178,-0.50241,1.1896,-0.74076,0.27557,-0.40784,-0.8091,-1.1042,-0.39288,0.68909,-1.5746,0.27605 2.9629,2.8595,0.44963,-1.359,2.4369,-1.2142,-0.62291,-0.96491,-0.26554,2.3973,0.58713,-0.69226,-0.21744,0.016613,0.061182 -3.0308,-0.031471,-0.91175,-0.36751,-0.97136,-0.20469,0.69251,0.58638,1.6142,-1.3013,0.71871,-0.49878,-0.13727,-0.1709,-0.015269 -2.1591,-0.28897,3.3261,0.55153,1.1006,-2.2376,1.0516,1.2957,0.90281,-1.1243,0.18157,-0.46307,-0.20714,-0.73472,0.78807 -1.8693,1.0107,1.1637,0.7771,-0.88838,0.8311,-0.26094,0.87401,2.0087,-0.3636,0.71576,1.2159,-0.27334,0.084395,1.1538 1.9717,1.7624,-1.02,-1.0915,-0.31063,0.53079,-1.0383,-1.5792,2.0368,0.16875,0.39844,-0.43745,-0.060354,-0.45069,-0.0070494 -3.5185,0.86983,0.88059,0.022667,-0.45021,-0.034699,1.0218,0.44243,1.0817,-0.85004,0.9734,1.1378,-0.24423,0.37406,-0.0072767 -2.5699,-0.21392,0.50781,-0.20694,-0.26247,-0.057913,0.89293,-1.5498,1.7374,1.1166,0.67367,0.42135,0.29887,-0.21585,-0.75014 -2.6608,0.36327,1.2132,-1.3439,-0.74972,0.08995,1.2497,-2.7366,0.28478,1.2185,0.59684,0.35682,-0.1896,0.58916,-0.59404 -1.4566,-2.4764,2.7695,2.1724,2.2888,0.45344,0.99659,1.0563,0.41799,-1.3408,-0.10821,-1.72,-0.045806,0.37798,1.1565 -2.4287,0.054446,0.085366,-2.1976,-0.51834,1.6587,0.92351,-2.1764,-0.11638,-0.87058,-0.335,-0.8867,0.37329,-1.0776,-0.36917 -2.4297,3.7652,-0.09096,0.0086163,0.13355,1.9924,0.63773,0.91193,-1.8627,0.55828,-0.05811,0.92815,-0.24704,-0.026967,-0.46342 0.92751,1.571,2.1839,1.1104,0.19228,0.80093,0.70658,-1.3982,0.050702,0.99275,-1.3607,0.50555,-1.9629,-1.4053,0.76197 -0.125,2.9852,1.3656,-0.89551,-0.71577,0.97914,-0.27171,0.18423,0.55386,-0.092356,0.24915,0.78927,0.63545,-0.78109,1.1732 -1.4705,1.2737,1.34,2.5407,1.2533,0.67571,1.6441,-1.2183,0.40125,0.31845,0.47056,0.69094,-0.31951,-0.56887,0.88492 -1.0789,2.7355,1.6189,1.8943,0.808,-0.45131,0.50057,-0.47102,-0.010862,1.2732,-0.54225,1.7467,-0.60225,-0.48827,0.15302 -1.1313,-2.2466,1.499,0.11904,1.6641,1.1365,1.1652,-3.8183,0.81046,0.22708,-0.58846,-0.30944,-0.086767,-0.16254,-0.1407 -0.28295,1.3952,3.1708,-1.5363,-1.281,1.3138,0.80895,-0.34943,0.79961,-0.19861,-0.055928,0.11074,-1.4019,-0.042424,0.55587 1.5339,1.9529,-1.4444,-0.65901,1.6589,0.3496,0.58327,-0.57242,0.37364,0.5245,-0.58989,-0.40852,2.3892,-0.91504,-0.264 3.3951,1.672,-1.9516,-1.9618,1.1055,-1.1528,0.83056,0.53918,0.75367,1.9739,0.66175,-0.96425,-2.2686,-0.84402,0.38396 1.0868,1.355,2.9085,1.224,-0.04003,0.074433,0.21486,-1.5513,1.0592,0.067322,-1.2344,1.5379,-0.93152,-0.29499,-0.20421 3.7673,0.61755,-1.3131,-1.1702,1.2423,0.15823,1.1007,-1.3338,1.5754,0.49119,0.84884,-1.1923,-1.3809,-0.080587,1.1913 0.43079,-0.0095202,2.6718,1.0596,0.18346,0.86428,1.6665,-0.94012,1.432,0.32041,-1.3145,0.56227,-1.1143,-1.4679,1.243 -1.562,1.5291,2.2444,-0.13929,-0.43772,0.60264,1.0656,-1.1211,0.69216,1.8187,0.77338,0.018712,-1.1139,-0.076725,0.56343 -3.775,-1.1757,-0.26156,-2.2749,1.0697,0.64475,-0.97037,-2.4619,-0.2309,-0.48088,0.22665,1.1519,-0.24371,1.248,-0.10569 1.9356,2.5789,-1.1355,0.54245,1.8237,0.051548,-0.95452,-1.8779,-1.4743,1.6661,-0.83746,-1.3222,-0.53984,-0.81266,-0.051335 -1.4907,-0.12817,0.20969,1.339,-0.79211,0.65204,-0.090938,1.524,2.4947,-0.69864,0.42702,-0.30342,-0.23249,-0.069929,1.1951 -2.8071,-1.8146,-1.9447,-1.3355,1.4696,1.6321,-1.5872,-0.082473,-0.092801,-2.2756,-1.1717,1.16,-0.31075,1.1948,0.95796 -2.9587,-2.133,-0.76777,-1.3379,0.64742,0.64577,-1.6764,0.85417,-0.25425,-0.8088,-0.841,-0.15025,1.0196,2.4961,1.0589 -0.049947,2.1297,-0.46136,-0.05636,-1.0062,1.1711,-2.0505,0.037781,1.2414,-0.027222,0.66548,1.2657,0.79791,0.70691,-0.072577 -1.937,3.0653,-0.20627,-0.35574,-0.61965,1.1605,0.66113,-0.39745,-1.7404,-0.10199,0.44348,1.2909,-0.61374,-1.0038,0.08031 -1.7561,2.0344,-1.0596,1.9053,-0.66758,1.5569,0.46729,0.73297,0.78265,0.27729,0.14238,0.93777,-0.34562,0.3997,-0.040862 -2.7046,-2.611,1.286,-1.6018,0.97257,-0.26558,-1.8079,-0.3,1.4488,0.44904,-0.96194,-0.38814,0.42,0.67079,1.0043 0.86055,-0.001437,2.9517,-0.92234,-0.73702,1.4733,1.2709,0.7886,1.7357,0.75936,-0.56027,0.35468,-0.28951,-0.22332,0.32806 -2.9998,-1.5559,-0.88259,-1.6746,1.3674,1.8363,-1.8823,-1.1057,-0.94489,-0.72777,-0.8125,0.71809,0.20145,1.4504,0.62513 -4.0409,-2.0588,-0.30079,-2.3812,1.4303,0.62944,-1.8554,-0.69968,-0.30348,-1.2619,-0.59937,0.45992,0.00051789,0.95336,0.49324 -4.2262,-1.7304,-0.6933,-2.1413,1.2503,0.52163,-1.3149,-0.63252,0.25889,-1.525,-0.22984,0.40181,-0.12501,1.2236,-0.14685 -3.2229,-1.0888,-0.35838,-1.9406,0.46934,1.6954,-1.6472,-0.92531,-0.083538,0.031404,-0.3213,0.3103,0.6241,2.0308,0.30813 -2.5873,1.4964,-0.7325,1.0107,0.38284,0.2214,1.3777,1.4964,1.3402,0.68706,0.33058,0.13218,-1.0856,-0.44969,-0.37359 -2.9403,-2.3705,0.78177,-2.0254,0.93057,1.3509,-2.1694,-1.0386,-0.081333,0.030562,-0.81858,0.78137,-0.20378,2.4961,0.82827 -2.9114,-2.6445,-0.51778,-1.3469,1.5505,0.70342,-2.427,1.2908,-0.13627,-0.13955,-1.2978,0.81009,-0.17399,2.5949,1.3412 -2.776,-1.7049,-1.2766,-1.2192,1.4627,1.6661,-2.3112,-0.59756,-1.006,-1.2182,-0.78142,2.0555,0.030325,0.99395,1.3258 0.75096,3.1763,1.0673,-0.87331,0.47742,-0.70655,-2.4506,-0.15751,0.36568,-0.25159,0.33541,0.2585,0.99797,-1.554,-0.31518 -1.4497,0.088189,2.4804,-2.687,-0.67055,2.6427,0.60874,-0.057297,0.20658,-0.61597,-0.06045,-1.1808,0.27562,-0.2812,0.65891 -3.5956,-1.9554,-1.8848,-1.7073,0.67822,0.83751,-0.67427,-0.33994,0.65383,-1.4982,-0.83736,0.11244,-0.26951,-0.40178,-0.47302 -3.2497,1.3838,-0.63637,0.81691,0.023189,1.3281,1.033,2.1901,0.03506,0.82062,0.58344,-0.33111,-1.1758,-0.4963,-0.95645 -3.1686,-1.2832,-1.1416,-1.7145,0.6836,1.1449,-1.633,-1.8176,0.11447,0.028226,0.064186,1.5378,-0.88496,0.94449,-0.47053 -1.0087,-2.9192,2.1867,1.4393,2.1113,2.3665,0.93487,0.13494,-0.12851,-0.26259,-0.23223,-1.8626,1.9953,0.94982,0.53217 2.9913,3.4273,-0.53018,-2.9872,0.89926,-0.72617,-0.35129,-1.0862,0.21063,1.0017,0.81886,-0.952,-0.78863,-0.33015,-0.064572 -2.4248,0.15574,2.4292,-1.9576,-0.44049,0.33813,1.0997,-0.22573,0.52961,-1.2426,-0.23786,-0.90208,1.2005,-1.9131,0.70001 -3.7266,-1.0438,-0.31231,-0.76837,1.0131,-0.86817,-0.010357,-1.489,1.3429,0.60558,0.25991,0.15937,-0.2944,-0.12019,-0.17939 -3.2074,-0.65791,0.64592,-2.114,0.5469,2.022,-0.59762,-0.78051,0.10738,0.18915,0.71911,-0.35185,0.41054,1.5304,-0.64424 1.4824,0.31157,-0.86156,-0.64305,2.9213,-0.46938,0.75432,0.17198,-0.99109,2.4537,1.6065,1.8286,0.3683,-1.9221,1.965 0.19117,-0.62626,2.9457,-2.0827,-1.2936,1.8916,0.92541,-0.2969,1.5958,0.078362,-0.52054,-0.38618,-0.038398,1.1398,-0.74454 4.2064,-1.0301,-0.7948,-3.9371,1.3512,0.42977,2.6024,0.84289,0.60057,1.005,1.0348,3.6063,-0.86843,-0.58515,-0.39421 -2.8535,-1.8653,-0.07046,-2.7265,0.92448,-1.0693,-0.69389,-1.6818,0.13222,-1.1925,-1.9331,0.60168,1.0487,-0.51527,0.74633 -1.6281,3.5353,1.0493,0.14852,0.69356,0.54634,-0.14684,0.11775,-1.3208,-1.2963,-0.40456,0.3239,0.42826,-1.3054,0.617 0.30064,3.5874,-1.0196,-0.79085,-1.3035,0.68093,-1.1449,-0.023728,-1.6788,0.13028,-0.98778,-0.64267,-0.023689,-0.95138,-0.50577 -0.3549,-2.8647,-1.437,0.76762,1.4882,-0.59391,-1.3445,0.64826,0.039051,-0.79351,-1.5997,1.4931,0.38361,-1.7978,1.6636 3.143,1.2147,1.2325,-1.8068,0.60014,-0.77981,-0.24678,1.2276,-0.094369,1.0764,0.36502,1.0347,-0.93145,0.25102,0.97222 -0.86938,3.3919,-0.2848,0.82871,1.0262,0.50984,-1.5221,1.1807,-0.66624,-0.2244,-0.93293,-0.91882,0.93319,-0.8065,0.21327 1.5449,0.18247,1.5218,-1.5844,-0.96739,1.3789,1.9991,2.3088,0.13316,1.2532,-0.21401,0.0035681,-0.60075,1.0516,-0.90153 3.0079,1.927,0.40125,-2.774,-0.3772,0.79361,-0.6505,1.8442,-0.50998,-0.62198,-0.0906,1.1359,-0.18632,0.71225,-0.54605 -1.2896,-1.6521,2.4586,-1.9525,0.66615,0.31929,0.41122,-0.31479,1.4397,1.1832,-0.99146,-0.94917,0.89025,1.8617,-0.13713 -1.3406,-2.0275,2.3641,0.27461,1.3174,-0.51754,0.085331,1.1973,1.1001,0.8417,-0.14469,-1.5563,0.86574,1.4803,0.34742 -3.1449,-0.47931,1.4478,-2.3051,0.39571,1.8421,-0.076423,-1.3295,0.099119,-1.6248,0.78555,-0.73267,0.84779,0.84051,-0.39833 4.1756,-1.7867,-3.0901,-0.78794,-0.22266,3.191,1.2751,0.60857,-1.3313,-1.256,0.68737,0.52924,0.65086,2.119,-0.46318 4.5603,0.53844,0.010718,-2.7282,0.73492,-0.20061,-0.20113,-0.45427,1.4307,0.88272,0.95433,0.55059,-1.429,1.3452,0.23197 3.3618,0.84892,1.3281,-1.9331,0.18377,0.29157,1.452,1.8571,0.48913,0.51371,0.36355,1.5693,-1.8523,1.6699,0.16176 0.313,0.81008,2.9432,-0.15236,-0.068673,0.90256,0.081418,1.1181,1.5524,0.7266,0.068624,1.0874,0.89965,1.9891,1.0733 -2.9955,1.5272,-1.5501,-0.055092,-0.26665,0.48272,1.3856,0.80181,-0.049573,0.24707,0.09382,-0.10319,1.4674,-0.5172,0.98043 -0.021961,1.1166,3.3795,-2.3233,0.3945,0.65946,-0.016849,0.60353,1.2407,-0.72595,0.7553,0.10308,0.944,0.6688,0.72392 -2.8602,-3.2781,0.3603,-1.4771,2.2429,-0.35583,-2.0833,-0.85955,0.77064,0.27958,-1.219,0.74441,-0.40587,1.349,1.3641 2.6767,-1.6764,-2.1285,-1.7693,0.016703,4.1059,1.6175,0.087451,-0.4456,-1.0136,0.6872,1.1082,-0.19228,2.1401,0.23539 -2.4715,-2.2324,0.18363,-0.48246,0.76644,1.075,-1.0059,-1.2103,1.5415,1.3043,-0.8654,-0.5856,-0.042676,1.0909,0.618 -2.2026,0.34452,0.64076,-1.497,1.7301,2.007,0.46913,-0.38946,-1.2289,-1.644,0.63131,-1.3701,-0.63349,0.73087,-0.51741 -3.0396,-0.76682,-0.15034,-1.459,-0.43964,0.63494,-0.37006,-1.5665,1.4077,0.19057,0.090246,-0.077939,0.5368,0.098306,-0.093074 -3.2807,-0.42773,-2.0132,-0.75274,0.0025124,0.95549,0.24293,-1.4741,0.9718,-0.78353,0.41096,0.38027,-0.18101,1.0432,-1.7037 -2.2136,-0.69576,-1.7543,-1.069,-0.29377,-0.14687,-1.812,-2.1125,0.084377,0.21407,-0.82903,2.4385,0.088793,0.62328,0.6694 2.4828,-1.4944,-0.37647,0.09923,1.5188,3.0228,-1.0191,-0.67147,-0.56702,-1.3218,-0.029421,0.028334,3.0171,0.96229,-0.28363 -1.1617,1.5273,1.5575,0.15857,-1.1016,1.574,0.32101,-0.028283,0.70376,0.22397,1.1003,0.48359,-0.41859,-0.96941,0.54567 0.57017,3.3406,2.0235,-0.28716,-0.50014,0.24439,-1.0204,-0.53428,0.3723,0.033045,0.12657,1.4042,0.14063,1.1324,0.31261 1.126,-0.39516,-1.5668,0.94027,0.42068,0.62711,0.23791,-0.26802,-0.38285,1.7497,1.9085,2.2979,1.2132,1.5119,1.136 0.42814,2.9962,-0.021692,0.67128,0.91945,0.30629,-2.3576,0.63278,-0.42025,0.63174,0.18568,-0.45948,1.0308,-1.2543,-1.043 -1.6942,-1.769,-0.4256,-0.17876,0.18778,0.65968,-1.3695,-2.333,1.1753,0.63919,-0.17484,1.2748,-0.49365,1.4871,0.45422 -0.9829,-3.209,0.059498,-0.79919,0.16862,0.027769,-1.8456,0.49353,1.0325,0.79928,-2.2047,-0.36352,0.51178,-0.47284,1.1102 -2.8118,-1.9997,-0.73708,-1.5988,0.053699,2.3045,-2.1423,-1.0386,-0.27093,-0.4461,-0.7882,0.82345,0.47867,1.9165,0.26466 -0.075766,-1.3946,1.8364,1.0831,0.60281,1.213,0.056955,0.13689,1.6922,1.461,-0.61066,-1.1818,1.5485,0.97374,-0.34212 -1.7156,-1.6676,1.4638,-1.0046,-1.0017,1.9942,-0.63444,-1.0487,1.1277,0.93122,-0.13805,-0.93349,0.31314,2.1661,-0.19971 -1.0707,1.8616,1.7177,2.3464,1.4942,0.11345,0.057775,0.77251,0.98583,0.12527,0.87975,-0.29085,-0.70101,0.056339,0.66436 4.1967,1.0919,2.8669,-2.206,2.2796,-1.4628,-0.2741,0.078024,0.67933,-0.62154,-0.051758,1.0585,-0.63782,0.20926,-0.59166 -2.6199,-0.79355,-2.3018,-0.52583,0.39424,1.6235,-1.6561,-0.438,-0.43495,-0.57645,-0.92518,1.1225,0.85082,0.62806,1.1185 -2.7204,-1.1645,-0.95164,-1.118,-0.48414,0.29878,-1.0633,-1.7521,1.2154,0.17518,-0.41078,0.60349,0.75325,0.28905,-0.11715 1.3446,1.5891,-0.81649,1.9587,-1.1665,2.1365,-0.10945,-0.5866,0.25124,0.297,-0.97603,-0.50207,-1.1763,0.50721,0.73488 -3.0687,-1.2521,-1.0015,-1.1918,-0.35399,1.4264,-1.4237,-0.75699,0.62073,-0.2313,-0.16039,-0.1719,0.87602,0.90395,-0.19975 -3.1549,-1.6214,-2.5727,-1.4566,2.0245,-0.66927,-1.4519,0.72418,-1.5984,-2.1186,-2.0571,0.62668,-0.97443,-0.42281,1.7593 2.6807,1.0948,-2.1085,-0.083706,-0.2962,0.7866,0.0028563,-0.94813,1.4157,-1.4723,0.28217,0.13012,-1.1888,-0.095534,-2.1639 -3.3294,-0.96898,-2.2431,-1.0528,0.54565,0.89581,-1.8983,-0.24049,-0.68596,-0.74953,-0.93405,0.9764,0.70745,0.74117,0.78199 -3.2925,-0.99887,-1.8215,-1.2908,0.29012,1.3719,-1.6001,-0.6021,-0.3894,-0.58572,-0.96391,0.6249,0.62861,0.63855,0.42372 1.7607,0.27792,-1.3328,0.2158,0.82455,0.6438,0.34398,-0.60296,1.0235,2.7795,0.51341,0.57707,-0.022573,-1.2354,1.4304 0.51201,3.2513,-0.19743,-0.090926,-0.518,0.86467,-0.59022,-0.71525,0.11321,0.044829,-1.6672,0.18718,1.3482,-0.11141,-0.63193 -3.4356,-0.28789,-2.6354,-1.1578,0.79071,0.65673,0.31576,-1.5471,0.13449,-0.83825,-0.37823,1.1687,-0.16218,0.57663,-1.5966 1.0498,3.5383,-1.6361,-1.184,-1.3143,0.098794,-1.3892,0.92632,-0.88602,-0.33834,-0.67883,-1.1876,-0.13707,-0.58139,-0.79173 -3.2622,-0.093177,-2.4669,-1.3096,1.008,0.27851,-0.99738,-1.6677,-0.44121,-0.65631,-0.32998,2.2061,0.43524,1.254,-0.16591 0.33922,0.96438,1.5403,2.2265,-0.072532,1.3105,0.49626,-1.9303,0.55232,-0.64937,-0.36804,0.87,-0.35612,0.14306,1.0958 3.2895,0.86664,0.42853,0.64023,0.4501,1.4312,0.29392,-0.89204,0.53317,-1.2277,-1.0765,1.4392,-0.33149,0.93342,-1.9798 2.6141,-0.29968,1.4213,1.1808,2.2116,0.80757,-1.5631,-1.5396,1.2169,-0.89672,-0.17811,0.78992,0.86031,0.051973,-1.1097 -3.6667,-0.74965,-0.82107,-1.939,0.99662,0.56087,-0.98599,-2.2832,-0.54837,-0.21157,0.000407,1.4539,-0.43484,1.3271,-0.57898 -2.5646,0.30336,1.3762,0.31176,0.070524,0.17798,1.0793,-1.4535,1.6454,1.5539,0.88941,0.60036,-0.20833,0.27674,-0.26843 -3.0207,1.2419,-0.19325,0.4793,-0.39082,0.66322,1.6907,0.49838,1.4422,-0.60498,0.6744,0.44667,-0.66058,1.0015,-0.92098 -3.1624,-0.17823,1.6483,-0.93754,0.52982,1.0664,0.65717,-1.2625,0.34147,-0.050474,1.7863,0.099661,-1.2727,1.0335,-0.92584 1.5344,1.4444,-2.2241,0.097407,-1.5315,0.88307,-1.3361,-1.226,0.87502,0.51461,0.8928,-0.42732,0.065538,0.55429,-0.12346 -2.0402,1.6447,2.0011,-3.1981,1.0169,1.0972,0.56458,-1.3437,-2.0602,-0.14176,0.36873,-1.5371,-0.78263,0.076994,0.054596 3.14,1.4252,2.8085,-1.293,3.4207,-1.6858,-0.30207,-1.0211,-0.62254,-0.18229,-0.35291,0.15116,-0.79254,-0.60802,-0.10695 3.7152,2.4492,-1.1124,-2.0377,1.2688,-0.22152,0.43846,-0.7314,0.817,0.9875,-0.044462,-0.81327,-0.67029,-1.2932,-1.2156 -3.365,-1.286,-0.75207,-1.2054,0.62473,-0.098894,-0.73356,-0.88413,1.4334,0.94123,-0.37054,0.49701,0.26812,0.55499,-0.095834 -2.3058,1.9998,-2.0764,0.23417,-1.0608,0.9902,0.90754,1.6191,0.58704,-0.6867,-0.41996,1.1442,0.12035,-0.17608,-0.055038 -2.3828,-1.1068,-1.9952,-0.6099,1.7505,-0.57202,-1.5789,0.046437,0.63107,0.87415,-0.95148,2.125,-0.61766,0.39675,1.1928 -2.1083,3.0643,0.15726,0.77347,-0.45362,0.61355,-0.61787,1.1435,-0.35638,0.8058,0.20614,1.6464,-0.17126,0.054436,-0.44749 2.1085,0.96814,0.57847,0.91697,2.473,1.0703,-1.6476,-2.3352,0.30801,-0.70215,1.1222,-0.3729,0.49636,0.12702,0.53591 2.7177,-2.789,-0.50095,-0.93318,3.2427,2.091,1.8742,-0.3607,-0.22765,-1.1436,-0.25832,0.65082,-0.012774,-1.5771,1.3436 1.45,3.0821,-0.48029,-0.94139,-1.052,0.67889,-0.54756,-0.49645,-0.76166,-1.0401,-0.76769,-0.42358,-0.29948,-1.2253,-0.59525 -3.5018,0.35082,-3.3086,-1.0286,1.6626,0.60288,1.1078,-0.60828,0.26365,-0.25268,-1.6947,-0.16238,0.021092,0.30536,-1.0044 -3.6768,0.55479,-2.4644,-0.90393,0.62989,1.0551,0.34975,-0.70402,-0.17257,0.5234,-0.027868,0.44304,0.3697,0.95081,-1.6303 -1.6961,-3.8352,1.2087,0.091956,1.9584,0.93816,-0.60519,-1.1999,0.66047,0.59832,-0.73708,-0.14546,0.66803,1.1727,-0.040168 0.056775,3.9984,-0.39259,-1.7364,1.1755,1.1184,-0.71756,-0.29346,-2.6387,-0.35215,-0.17464,-0.93931,-0.22328,0.97023,0.051313 2.4144,-1.4719,-2.5625,-2.5606,2.2532,1.7911,2.6151,2.2094,-1.1735,-0.52964,0.0038317,3.3442,-0.87056,-1.2925,0.45827 -2.2654,0.24347,0.70807,0.71795,-0.47042,0.51974,0.70944,-0.49516,2.1399,-0.27161,1.2266,-0.045352,0.25678,1.3621,-0.47685 0.24447,3.319,2.4144,-1.049,1.4607,-1.4476,-1.3445,0.15468,0.20836,-1.0238,-0.62643,0.4603,0.84183,-0.7776,0.0086539 1.751,3.1642,-0.21949,0.03297,-0.55004,-0.11058,-0.53585,-1.0218,0.70865,1.284,-1.3114,0.011008,-1.1757,0.27545,-0.68801 -3.3288,0.022797,-1.2402,-0.53344,0.55745,2.2521,0.22375,-0.21303,0.57672,-0.92466,0.19286,-1.1502,0.91875,0.65482,-1.1291 -2.1662,0.28348,-0.12482,-0.89536,-0.039435,-0.20869,0.20956,-2.752,0.67614,1.4098,-0.21184,0.36874,-0.070108,0.8395,-0.69417 -3.2612,-1.3858,-1.3971,0.044111,1.0161,-1.3616,-0.46845,-1.4291,0.9614,0.63935,-0.81546,0.70675,0.15503,0.56663,-0.34263 -2.2766,0.56415,0.68777,0.24182,0.74817,-0.48183,1.5938,-1.9798,0.087969,1.2924,0.35943,0.17048,0.22389,0.43802,-0.39388 2.0305,0.22795,-2.0211,-3.4528,0.078951,0.78714,2.1653,2.1258,-0.77056,0.048029,0.62764,2.3782,0.28172,-1.4831,0.52612 1.7293,3.3748,-1.4544,-0.84068,0.56636,1.3675,-1.505,0.72786,-1.4508,-1.0391,-0.1763,-2.2702,-0.70417,-1.069,-1.0252 -2.3327,0.1083,-3.5529,-0.89682,1.2673,-1.5081,0.407,-0.51967,-0.89112,-1.9387,-2.481,1.4428,-0.5673,0.18438,1.3157 -2.9601,-0.26198,-2.8113,-0.60337,0.54509,0.20688,-0.80697,-1.2849,0.32905,-0.6472,-0.32947,2.2749,0.012263,1.5482,-0.38654 -2.5041,3.0196,0.50456,-0.098471,-0.16387,1.6266,1.1136,0.56101,-0.83162,-0.44248,0.99084,0.94972,-0.43248,-0.39363,-0.64882 0.30359,-0.17077,2.4311,0.28918,0.20093,0.0045445,1.3089,0.73317,1.8609,-0.88429,-1.4468,1.156,-0.0098024,-1.6699,0.00075634 -2.7715,-1.8342,-0.43504,0.29729,0.97284,-0.35896,-0.11599,-0.0047216,2.2178,-0.42398,0.085531,-1.2665,-1.2598,0.43912,0.087563 4.2171,-1.1796,-0.46985,-1.9228,2.1916,-0.87629,2.3928,1.255,-1.5206,2.8246,0.97602,0.8797,-1.2531,-1.0906,1.6274 3.1798,0.05786,-1.1563,-0.78278,0.38281,1.0195,0.43552,-1.5283,2.0601,1.507,0.87594,0.34555,-0.44986,-0.15061,0.68453 0.77852,2.2145,1.0317,0.799,-0.22674,-0.30806,-0.58435,-1.058,1.6887,0.44827,-1.4114,1.2699,-0.44082,-0.39259,0.16489 1.8245,1.858,-1.388,1.957,-0.0083092,0.53646,-0.3979,-1.2639,0.51736,0.6417,-1.2827,-0.14516,-0.26725,-0.26063,-0.94582 3.4075,-0.67535,-2.1833,-1.5025,0.20161,0.22427,1.332,1.3813,1.3415,1.0726,1.5336,0.70055,-1.1023,-0.56777,0.85212 -4.0627,-1.0554,-2.2569,-1.7314,1.8662,-0.61798,-0.051083,-0.27536,-0.5997,-2.0573,-2.189,-0.046159,-0.88564,-0.24806,0.24604 -3.0205,0.49544,-2.7248,-1.3056,0.65407,-0.45167,-0.5369,-0.49544,0.66686,0.012019,-0.5512,1.4502,0.62632,-0.031004,-0.048739 2.253,2.2612,-2.165,-1.9952,0.33336,0.67985,-0.05276,0.7213,0.35619,1.4138,-0.15453,-1.4395,-0.081474,-1.6366,0.070598 4.0237,0.49519,1.624,0.060305,3.4818,0.22412,0.2336,-0.48322,0.032037,-0.40188,-1.4003,1.0768,-1.3079,-0.49495,-1.4068 -2.0878,2.0768,-0.74183,0.90059,-0.37445,0.089204,0.15778,1.6986,1.5923,0.097127,0.034267,0.96053,0.041588,-0.33765,0.63544 3.7235,-2.1234,0.90077,0.34901,3.6232,2.1581,0.012162,-0.4444,-0.27008,-0.73893,-1.1421,0.78948,0.81153,1.2555,-0.92533 -2.1547,1.0052,-3.3203,0.38397,-0.18212,2.2396,1.5486,0.66286,0.66319,0.7912,-0.74874,-0.79928,0.16534,-0.37666,-0.4757 -1.0912,3.8269,2.1055,-0.25037,-0.34408,0.037889,0.48863,-0.13289,-0.60953,0.77633,-0.27878,1.2111,-0.72952,0.014613,0.36142 -1.3925,2.6296,0.52874,2.2167,1.6844,-0.71947,-0.32704,1.7035,0.7591,-0.16199,-0.44984,0.5679,-1.1327,0.67372,-0.012273 -2.1283,2.1,-1.7299,0.7517,0.14369,2.5924,1.3696,0.7289,0.16259,0.85365,-0.48605,0.37236,-0.61722,-1.0275,-0.22124 4.5502,-1.4052,-1.6116,-1.2112,1.3472,1.5203,2.3232,0.23918,0.38202,0.64848,0.84188,0.029254,-1.9514,-0.62159,1.3564 1.7861,-0.38113,0.75966,-3.9743,-1.1038,0.45584,0.14809,-0.032278,-1.5243,-0.73518,0.17069,1.5811,-0.36468,2.8855,0.848 -2.1746,1.1863,-0.64365,1.3233,0.12682,-0.096335,1.0023,0.71993,2.0568,1.0121,0.36352,0.77917,0.0655,-0.98177,0.82828 0.49311,0.93393,0.21883,1.6246,0.15083,0.59652,-0.96609,1.6108,1.4128,-0.32862,-0.62573,-0.026201,1.2104,-1.4636,1.0354 4.1418,-1.0044,1.519,-0.043207,2.7819,-0.37707,-0.32561,1.6095,0.7188,0.058918,-1.0551,0.1378,0.5365,-0.29004,-0.966 -0.90419,4.6652,0.33845,-0.8908,2.5919,0.063499,-1.5363,1.4675,-1.528,-0.84783,0.20354,-0.77953,0.45776,-0.14872,-0.50601 -0.77032,0.52493,1.9034,0.33378,-0.60558,0.59517,1.32,-1.0495,2.1778,0.73562,-0.30434,0.97235,-0.07352,-0.27091,0.13406 1.0655,0.47927,2.0371,1.9082,1.2075,1.7184,1.202,-1.7221,0.59828,-0.34782,-0.97951,1.0266,-0.96901,-0.3579,1.1497 2.7358,-1.0732,-1.0179,-2.4296,0.54793,0.69275,0.42832,0.60758,2.8165,0.19095,0.49923,1.545,-0.030016,-0.36836,-0.050149 0.51333,1.3353,0.75085,2.4863,0.81751,0.78732,0.39506,-0.72273,1.2868,-0.44608,-0.91767,0.74036,0.16962,-1.0884,1.529 2.4101,1.6401,2.5487,0.39,0.69394,0.44684,-0.3623,-0.97487,-0.34232,0.10967,0.20416,0.068823,-2.2748,0.93012,1.4018 -2.8747,0.97735,0.40281,0.42686,0.22435,-0.84599,1.247,0.3274,1.6264,1.0821,0.70861,0.70781,-0.0046727,-0.79894,0.49793 1.8018,2.5981,0.14892,-2.198,0.7537,0.30181,-2.1693,-0.23864,0.21919,-0.46972,0.68624,-0.59902,1.6488,-1.7449,0.11764 3.5391,0.27773,-0.5442,-2.6303,2.1508,-0.13771,0.63897,-0.076006,2.0775,-0.51601,0.82691,1.1834,0.47259,-1.7039,-1.239 -3.0013,0.9766,-1.4172,-1.0872,0.41387,1.717,1.4802,-2.2825,-1.1355,0.83461,0.061593,-0.52279,-0.91498,-0.25747,-1.4627 -1.3282,2.1254,0.63512,0.40578,-0.73897,-0.2561,0.82876,-0.015078,0.45866,0.53611,-0.4122,1.2517,0.64261,-1.982,0.87693 -3.0637,0.96388,1.0044,-0.81276,-0.0032399,0.96063,1.067,0.71527,0.70739,-0.42246,1.3342,-0.05765,0.027905,-0.2339,0.10483 -1.5987,2.3317,0.67647,0.84324,-0.75191,1.216,0.19486,0.66193,0.70751,0.85164,0.76636,1.7565,-0.86822,0.44129,0.013392 -2.6234,0.88119,-0.26884,-1.2407,-0.85953,1.6305,1.3627,-1.3465,-0.52761,0.59582,0.39843,-0.37233,0.51562,-0.912,-0.079516 3.0026,3.0029,0.31862,-2.9432,1.1686,-0.68398,-1.0086,-0.094835,0.38249,-0.69657,0.078535,-0.88351,0.32853,-1.5826,-0.3339 2.4732,0.28287,-3.529,0.026763,1.4089,1.9188,2.7347,-0.26836,0.06349,0.22435,0.56053,0.72681,-1.1219,0.19588,0.57503 -3.5908,1.6278,-1.6388,-0.50811,0.26523,1.9321,1.3966,-0.080928,-0.97821,0.76426,0.82649,-0.53191,0.46517,-0.45935,-1.2605 -3.5052,0.27065,-0.066901,-1.2072,0.39381,1.2845,0.91954,-0.25996,1.1046,-2.0728,0.64271,-0.88756,0.9511,0.77644,-0.40852 -3.0942,0.25125,0.21563,-2.136,-0.47176,1.4359,0.38097,-1.7473,-0.4234,0.54292,0.49291,-0.39781,-0.02939,-1.0383,-0.1406 -2.5083,2.0206,2.2394,-1.2118,-0.27269,1.1323,1.3537,-0.97743,-0.33189,-0.96896,1.0999,-0.10771,0.71991,-0.0077802,0.38457 -1.1827,-0.30633,1.105,-1.7563,-1.15,2.1763,1.7478,-1.2472,-1.4406,-0.52467,0.37943,-2.1742,-0.77308,0.89887,0.55818 -2.5124,-0.54224,0.4496,-1.8998,0.042617,1.2829,-0.19432,-1.4213,0.51359,-0.47455,-0.039287,-0.97628,1.7425,0.53814,0.23957 -2.2038,-1.7281,2.2221,-3.5731,1.374,-0.44721,-1.0562,1.2689,-1.2391,-0.011159,-0.99251,-1.1444,0.55306,0.76017,0.94008 -3.7346,0.39581,-0.84599,-0.56313,0.18957,1.4374,1.3822,-1.8122,-0.76922,-0.36569,0.72493,-0.27519,0.40268,0.44057,-1.4387 -2.5098,2.358,-1.1459,1.2003,0.11484,-0.58488,1.351,2.7005,0.49934,0.33884,-0.89899,0.35316,-0.87834,-0.40336,0.78535 -2.6285,-1.316,-1.0684,-1.9422,0.47487,-0.068083,-2.0596,-1.4388,0.046436,-0.62728,-1.1633,1.7811,0.26073,-0.4782,1.56 -2.9083,-1.5572,-0.6016,-0.47219,0.40969,-1.0841,-0.35272,-1.4084,1.5475,0.38277,-0.036088,-0.14963,-0.2025,0.010392,0.28857 3.7764,-0.75266,0.37622,0.41764,1.703,1.4936,-0.81532,-2.2366,0.19699,-0.64715,1.199,-0.066946,0.17217,-0.9747,-0.89362 -2.643,-0.36522,0.30744,-1.1484,-0.18493,2.7683,0.16695,-1.7186,-0.017499,-1.1301,0.81229,-0.77997,0.52246,0.50472,-0.73795 -2.3736,0.075932,-0.65546,-1.6999,-0.81291,1.704,1.1465,-2.7249,-0.49216,0.11888,0.10931,-0.033536,-0.46302,0.37112,-0.74312 1.5982,1.7511,-0.57211,1.6354,0.57715,1.1037,-1.4167,-2.6014,-0.037785,0.090157,0.40706,-0.64416,-0.057562,0.18503,0.058837 2.0473,-1.447,1.4949,1.4338,2.4081,1.4047,-1.2029,-0.31261,-0.207,-2.4539,-0.86145,0.99349,1.6029,0.38059,0.11203 -3.6768,0.19709,1.286,-1.5711,0.41569,-0.054353,0.67362,0.025643,0.28145,-1.1269,0.80053,-1.2851,0.95472,-0.61505,0.60527 2.7994,-0.0071992,-2.1323,-0.54383,0.21688,0.97351,1.0348,-0.62312,0.49828,-1.3915,1.124,-1.7435,-0.56089,-1.1032,0.35822 2.6816,-0.46245,-0.50783,0.43493,0.84016,1.7581,-1.2425,-0.65096,1.7581,-0.36123,-0.55382,0.10089,1.3711,0.48642,-1.7893 0.75971,1.3246,-0.12374,2.7406,0.68103,1.1003,-1.2004,-1.8735,-0.12756,-0.55868,-0.027851,0.20559,0.16631,0.73783,0.31314 -1.6854,-1.3774,1.9395,-2.102,0.20487,0.0017445,-0.30658,1.1031,0.92044,-0.45963,0.18072,-1.1607,1.8604,1.1369,0.53342 -3.175,-2.4016,-0.60169,-2.1393,1.8754,1.1954,-1.8373,0.39971,-1.2705,-1.6545,-1.2904,0.025424,0.10295,0.54217,1.435 -2.7611,-0.16211,2.003,-1.4584,0.1761,0.11564,0.40847,-0.64629,1.4246,-0.52286,1.0393,-0.66665,1.409,0.4461,0.18504 -2.6871,2.7861,0.17231,-0.15964,-0.76818,0.69348,1.5862,0.086656,-0.78022,1.7053,0.65367,1.0703,-0.084697,0.19315,-0.11772 1.2055,-0.024806,3.5872,-0.071416,1.3721,0.68837,1.9609,-0.17161,0.8297,0.59605,0.31748,0.75859,1.2448,0.094742,-0.69423 -1.7188,0.95831,2.4239,-0.0056073,-0.25518,-0.72625,0.36678,1.2473,1.6009,-1.1647,0.44827,-0.61079,0.84443,-0.97265,1.3145 3.823,0.21781,-2.2219,-1.7689,0.067258,1.1128,1.0559,0.028727,1.9567,-0.091638,1.9152,0.18404,-1.3285,0.018045,0.2629 -4.5029,-1.1958,-0.48984,-1.6528,1.2067,0.37481,-0.3858,-1.0096,-0.45363,-1.6273,-0.32288,0.25926,-0.066667,0.4069,-0.30148 0.11067,3.3986,-0.37673,1.3325,0.17262,0.17441,-1.4245,-0.47742,-0.13949,1.5412,-0.22256,0.82668,-0.47772,-0.09161,-0.89109 -3.6073,-0.69529,0.78654,-1.5346,1.2619,0.61022,0.83578,-0.52718,-0.52222,-1.5431,-0.38607,-2.0663,0.2901,-1.7895,0.35259 2.2729,1.4634,-2.4076,-0.93025,-0.53548,-0.075151,0.13542,0.052718,0.8787,2.6193,0.18338,-0.71326,-0.4212,-0.36843,0.81984 -0.56607,-0.74453,3.7431,-1.1234,1.0959,-0.74892,0.22427,2.6326,1.2441,-0.81925,0.82678,-0.5845,1.0735,-0.4174,0.51424 1.1107,2.8387,-0.83924,-0.87078,-0.39165,-0.061192,-2.5212,-0.21668,-0.7729,1.6796,1.4454,-0.18782,0.51844,0.12909,-0.89768 -2.5707,0.083775,2.1013,-2.1121,0.86689,1.5411,0.20845,0.32744,-0.0012418,-2.1828,1.3023,-1.3839,1.2884,-0.11501,0.37476 1.4076,2.9162,-1.4482,0.46927,-0.71786,0.25287,-0.61519,-0.59504,0.064348,0.93237,-1.3903,-0.42195,0.32888,-0.90185,-0.93787 -3.4795,1.6738,-0.67335,-0.057778,0.35598,1.7993,1.5814,0.090433,-0.5308,0.52681,0.57886,-0.90592,0.74612,-1.3344,-0.10036 -0.018638,1.4464,2.704,-1.6751,-0.56727,2.0224,0.25477,-0.26678,-0.20988,-1.6343,1.158,0.06244,0.98607,1.0734,0.59138 0.092383,3.2324,-0.45833,0.13689,-0.14637,0.041246,-1.1881,-0.96738,0.27185,1.2731,-0.59428,0.54164,0.44015,-0.69326,-0.61748 -1.9316,-1.3065,2.5903,-1.9834,-0.066518,0.49998,0.10033,-1.001,1.2419,0.14837,-0.10507,-0.59302,1.31,-0.011963,-0.54597 1.0261,2.1659,-1.1574,-1.7172,-0.68714,0.13703,-1.5767,-1.3313,0.69496,0.46118,1.8711,0.19307,0.30586,0.34534,-0.058797 3.7994,-1.6036,-2.0344,-0.63977,1.5979,2.9486,1.5757,0.18394,0.34076,-0.33849,0.52369,-0.16497,-0.38083,-0.0012123,0.076978 -1.6468,-2.072,0.015391,0.58026,1.6877,0.47044,0.57972,-2.6885,0.10614,-0.40641,-0.57304,0.077824,0.91699,-0.141,-0.37089 0.060321,2.7812,1.8274,0.6873,-0.76173,0.46707,-0.03496,-1.3354,0.63872,1.1023,-1.0165,1.7041,-1.2137,-0.31132,-0.062856 -0.69375,-2.3193,0.76677,0.18748,1.1884,1.235,0.81589,-1.5473,0.11213,-0.49201,-0.98322,-0.31422,1.5705,0.11456,-0.66254 -0.91095,-2.0247,1.635,0.95127,1.2173,0.54572,1.059,-0.70125,1.2331,-1.3419,-0.068167,-0.75202,1.3246,-0.28267,0.33368 0.38334,-2.168,1.8509,1.5441,0.1495,3.8615,0.62475,-0.06378,-0.87981,-0.46746,-0.55855,-0.6267,1.8858,0.71098,0.19639 0.76141,3.5853,-1.2264,-0.92549,-1.3316,0.30752,-0.92816,0.28763,-0.63198,0.4758,-1.363,-0.55358,-0.37482,-0.68729,-0.90236 -0.97743,-2.1449,1.4915,1.5302,1.5251,0.42737,1.2272,-0.21236,0.76312,-1.6349,0.36167,-1.0715,1.0208,0.044712,-0.011731 -1.8599,-3.5053,-1.0744,0.78975,1.4075,-0.37973,-2.1109,-0.60772,0.99227,-0.44819,-0.96786,0.94955,-0.96306,0.57236,1.3938 -2.8629,-0.21662,-1.0352,-1.0311,0.28687,-0.51941,-0.67217,-1.1816,1.0686,0.30751,-0.13233,0.6748,0.4111,1.0265,0.0060348 2.4491,1.8495,-1.2922,0.27695,0.7413,0.035601,0.10935,-2.4462,1.0059,1.5098,0.42791,-0.47897,0.09395,-0.045391,-0.11828 1.3462,0.0080641,-2.2768,-0.045388,0.052938,3.5931,1.4606,-0.54893,-0.046562,-0.71048,-0.83007,1.3207,1.2544,-0.44295,-0.50407 2.5801,1.6143,-1.5634,-0.92211,1.6901,0.87934,1.1643,-0.3629,0.42148,2.1841,-0.16753,-0.50041,-1.2496,-0.99991,0.66875 -0.43907,-3.4448,0.92247,-0.21116,0.40856,1.1914,0.315,-1.87,0.53146,0.66798,-1.5139,0.28621,-0.044015,-0.33446,-2.0754 -2.9489,1.6284,-1.7448,-0.63011,-0.32226,1.3805,1.5788,-1.1173,-1.5317,1.3827,0.43041,-0.0017301,0.46393,-0.13548,-0.73146 -1.522,-2.2325,0.091186,-1.4275,0.71794,-0.17734,-1.1808,-1.6251,0.93916,0.63297,-1.8869,1.0624,0.76371,0.48134,0.55946 -2.3278,-1.9962,-1.5903,-0.049381,0.28442,-0.44222,-2.0447,-0.42227,1.3038,0.0098548,-0.80577,0.91814,-0.67175,0.18665,0.94445 -2.4119,-1.8331,-1.4773,0.26927,1.323,-0.55687,0.81338,-0.31339,0.070523,-1.5016,-0.47205,-1.5317,-0.59225,0.30628,0.29005 2.4044,-0.69572,0.78146,0.51987,1.6886,0.53692,-1.1064,0.0089737,1.3581,0.17143,0.43186,0.69956,0.8531,1.1666,0.9625 0.14178,-2.5637,2.1269,0.94526,0.38372,3.3732,0.4355,-0.33383,-0.81172,-1.7258,0.038114,-0.27564,1.7077,0.83471,-0.23531 3.2591,-1.5009,-1.611,-0.58854,0.94505,2.0611,1.9109,-1.9381,0.60339,-0.88982,0.70468,1.233,-0.70406,-0.017471,0.60653 2.9619,2.4258,-0.59784,-2.1536,0.25798,-0.83084,-1.1537,-1.0988,0.56953,1.3924,0.99613,-1.0953,-1.8343,-0.11299,0.0031416 -2.7478,2.5061,1.4622,-0.68512,-0.1846,1.8672,1.0589,0.54698,-1.1716,-0.58976,0.40592,0.76695,-0.22538,-0.93219,0.73061 -3.7924,0.9619,-1.3008,-0.60055,0.98232,1.3007,1.9728,-0.60874,0.078265,-0.33643,0.46833,-0.29657,0.0099038,-1.5528,-1.0072 1.5324,2.6243,-0.57077,-1.137,1.7717,-0.97294,-0.5586,0.37208,-0.97337,2.8051,2.0038,-0.23314,-0.073394,-0.10315,0.96769 -0.56385,-0.74859,4.5772,-1.637,0.11743,0.21708,1.1537,-1.0964,0.96994,0.6253,-0.54187,0.13325,-0.87269,0.78854,-0.0072232 -2.9513,2.1083,2.0828,-1.9974,0.19117,0.93243,1.1262,0.095432,-1.3358,0.25025,0.71136,-1.1977,-0.21788,-1.8305,0.59395 3.4542,1.9777,0.57136,-2.1054,1.3365,-1.0072,-1.0201,-1.3681,1.3453,1.5191,0.96112,-0.071754,-0.30066,-0.004357,-0.21425 -1.8849,2.6129,3.0411,-1.6575,0.32852,1.4898,1.063,-0.50236,-1.2471,-1.5338,0.45878,-0.2475,-0.38179,-0.63229,0.38492 0.73899,2.5142,-0.082279,0.49379,1.3757,0.10119,-2.1289,-0.46218,1.1571,2.1389,0.55289,-0.24732,0.0062104,0.594,-0.68251 4.8908,-2.1224,-0.63265,-1.501,2.2274,1.5371,2.3914,0.00016999,0.67349,1.1324,0.6411,0.98609,-1.6067,0.59413,1.18 1.8014,-0.60835,5.0371,-0.09923,1.5641,0.55317,0.21468,0.69276,0.84039,-0.010201,-1.2515,0.69954,-0.81001,0.98821,0.37416 -2.5588,1.3115,3.3222,-2.2785,0.3318,-0.1393,1.0357,-0.05966,0.29498,-0.19665,0.66176,-0.84816,0.52801,-0.9033,0.78093 2.3324,3.0355,-0.30508,-0.15869,-0.25086,-0.25682,-0.59725,-0.48041,-0.093495,0.07913,-1.3535,-0.24065,0.23976,-1.1209,-0.6671 -1.814,1.3706,3.3259,-1.8022,-0.15264,-0.39636,0.62254,1.9693,-1.2437,-0.9657,-0.22427,-0.78829,0.12508,-2.4216,1.3583 -4.3289,-0.066944,0.0045913,-1.9657,1.3163,1.0543,0.46374,-0.72931,-0.20604,-1.3032,0.49229,-0.78033,0.056116,-0.9414,-0.62918 3.6783,-0.94225,-1.7876,-0.36848,0.9459,1.5242,2.1646,-1.4841,1.1781,-0.51858,0.93928,1.1675,-1.3579,0.47349,-0.14296 -3.9821,-0.93432,1.2933,-2.0696,0.89331,1.4412,0.43658,-0.99121,0.10604,-1.1215,0.93922,-0.1346,-0.045366,1.0537,-0.71403 3.8936,-1.1504,-1.2073,-1.7609,1.5023,2.9382,2.3072,-0.32113,-0.48466,-0.75704,1.4917,0.67367,-0.1303,-0.75319,0.47042 0.073848,2.6414,2.5339,-1.5422,0.00344,1.463,0.57939,0.28486,-1.3723,-2.536,-0.36494,-0.12043,-1.1062,-1.5012,1.2734 -2.7387,1.6689,-0.092326,-0.59062,-0.0084353,1.8926,1.3382,-0.071666,-0.1247,1.0306,0.5625,-0.36374,-1.2573,-0.58208,-1.2905 -1.0716,-2.821,3.4329,-1.3126,1.8456,-0.1447,1.1353,-0.54821,0.66127,1.7026,-1.3161,-0.57002,-0.55753,-0.79835,0.44797 -1.2804,3.1781,2.2528,-0.4549,0.64365,1.575,0.11329,0.73201,-1.9957,-0.62736,1.1467,-1.2597,-0.15739,-0.95534,0.31506 2.8049,2.642,0.87279,0.60842,0.40657,0.036391,-0.54223,-1.2537,0.12101,0.68469,-1.3891,-0.98319,-2.1285,-0.29173,-0.42481 -1.0101,1.2786,0.68362,2.8638,0.65046,0.30274,1.3646,-1.0005,0.11796,0.42431,0.37353,1.0393,-0.12054,-0.13724,0.38512 4.6584,0.1379,-1.4396,-1.1738,2.1122,0.027565,1.1698,-0.74124,1.8715,0.19589,0.88354,0.024568,-1.752,-1.1281,-1.061 3.2738,2.218,-0.88107,-1.1641,1.039,-0.63557,-0.35734,-1.5603,0.88278,1.4242,0.52713,-1.6348,-1.7592,-0.32688,0.60035 4.0514,-0.25938,1.0965,-1.091,2.7731,-0.72006,-0.10614,-0.14627,1.8092,-0.039056,-0.24788,0.86028,-0.73702,-0.7099,-0.18923 2.2795,2.4725,-0.66891,-1.0813,0.20986,-0.22049,-1.5026,-1.6596,0.90923,1.3934,1.419,-0.86263,-0.26284,0.72179,0.11623 -4.3944,-0.88515,1.0535,-2.7715,1.8226,-0.43212,-0.081287,-0.12096,-0.24751,-1.5255,0.39715,-0.79359,0.10845,0.7815,0.058259 2.01,0.84375,0.94184,-0.49972,1.3304,0.61965,0.98032,0.65118,0.48644,0.48446,-0.49551,2.1515,1.475,-1.4304,0.22714 -0.4592,3.0963,-0.27607,1.4097,-0.79429,0.6302,0.19331,-0.49176,0.1706,0.73631,-0.5551,1.3446,-0.3665,0.49483,0.17823 0.71526,4.1706,1.5848,-0.48407,-0.50187,0.25896,-0.002533,0.20778,-0.89125,1.0553,-1.5903,0.28622,-0.69491,-0.57335,-0.12952 4.972,-1.2877,-0.38442,-1.9077,3.8541,2.019,2.8312,-1.2628,-1.5992,-1.4763,0.70215,0.19701,-0.76624,0.15231,-0.44176 4.3366,-0.86281,-0.51108,-1.9013,2.9571,2.5673,2.0466,-1.8796,-0.66945,-1.6388,0.77459,0.14639,0.54614,0.0014321,0.0068477 -1.5106,3.7448,1.7934,-0.11587,0.35655,-0.1248,-0.11018,0.050417,-0.99774,-1.3445,-0.23461,0.60277,0.83433,-0.19628,0.36596 4.3679,-0.5656,-1.2793,-2.2087,1.4583,0.07277,2.1307,0.049282,1.5294,1.3623,1.0934,0.96329,-2.5484,-0.74529,0.78182 5.0587,-0.75257,-0.7111,-1.149,2.8059,1.7441,1.9212,-1.6872,0.62825,-1.0058,0.91953,-0.20965,-1.349,0.063105,-0.4928 0.33553,2.7002,-1.2933,1.3492,0.33266,0.75076,-1.4181,-0.59705,0.48962,1.8638,-0.18782,0.41927,-0.58395,0.21723,-1.208 -0.71991,3.1609,0.50547,-0.21697,-0.34926,0.85258,-0.30356,-0.020001,-0.060298,-0.92264,-0.91434,0.77593,1.5403,-1.1886,0.7444 0.72036,2.7266,-0.68384,1.9108,0.8384,0.40709,-1.2001,-1.7851,-0.084754,0.39079,-0.13882,0.13274,0.30862,1.2099,-0.80191 1.0458,-2.4525,3.0324,0.94854,1.1973,3.6133,1.4953,-0.56731,-0.57405,-0.55748,-1.2116,-0.0059572,0.82358,0.94682,0.22536 -2.9577,-0.56717,-1.7133,-0.50645,-0.24208,1.0724,0.27119,-0.26939,1.9222,-0.15569,0.80188,0.13029,0.20218,0.47611,-0.56371 0.8276,2.687,1.0708,0.58319,2.4192,-1.981,-1.5956,0.42307,-0.16691,1.1928,-1.0221,-0.14319,0.61808,-1.9589,-0.51785 -1.4931,-2.9283,0.35351,0.030719,0.97853,0.12547,-1.1239,-1.1314,1.4706,0.96622,-1.7205,0.24186,0.92098,0.11554,0.28757 0.18113,2.7267,-0.87079,-1.7946,1.5172,1.2208,-0.14761,0.054667,-1.8489,-1.0248,1.7449,-0.15834,0.44401,1.0088,-0.015354 -2.2972,0.19536,0.44932,0.97227,0.41638,-0.0086484,1.2503,-1.2052,1.9579,1.3014,0.76964,0.88494,-0.22057,-0.20039,0.14185 -1.0921,0.30728,1.6199,1.3,0.18763,0.5585,2.2412,-1.9138,0.9988,0.92386,-0.47651,1.109,-0.33488,-0.61211,-0.43184 -1.8638,-2.3726,2.3694,0.94871,1.5328,1.3913,1.022,-1.4413,0.75813,-0.36381,-0.13166,-0.0696,0.38695,-0.052329,0.27576 -1.6318,-3.104,0.48894,0.22399,2.6313,0.25548,-0.025811,-2.7864,0.82321,0.16435,-1.6696,0.50336,0.46296,-0.40131,0.11689 1.8789,2.4554,-0.46421,-0.7733,-0.42167,0.0045353,-1.326,-1.2709,0.99729,0.64585,-0.12377,0.43932,1.1325,-0.71109,-1.4512 1.6609,-1.1674,3.1524,0.85581,1.7265,2.5336,0.94778,-0.7525,-0.46445,-1.8409,-1.5295,1.7756,-0.57249,0.42026,-0.25063 1.5834,2.2476,-1.7247,-1.0705,-0.91247,0.62286,-1.5286,0.17503,0.51735,1.4551,0.097566,-1.2354,0.18527,-0.50587,-0.10747 -2.3078,-2.9363,1.6188,-2.895,0.80067,-0.47339,-1.2283,0.49209,0.056388,0.7679,-1.8204,-0.72812,0.28342,0.52033,0.93263 3.3193,-1.4821,1.1712,0.75033,0.71548,3.8338,2.4103,0.90358,-1.7105,-1.4888,-1.9751,-0.082017,-0.57934,2.1486,-0.20976 4.8293,-0.024973,-0.41312,-1.5532,3.0408,0.78172,2.4269,-0.37997,0.12545,0.7963,1.093,-0.061039,-1.1659,0.87618,1.0342 -1.4707,-4.1819,-0.50635,0.36513,1.6309,2.5022,-0.66064,-0.36908,-0.4093,-0.47827,-1.9815,-1.5693,1.84,0.99595,0.84472 1.906,-1.8571,2.5735,1.0446,2.0813,3.1455,0.95986,-0.099121,-0.3962,-1.5739,-1.1184,1.1444,0.98168,1.0651,0.53969 4.302,-1.0469,-0.51887,0.80936,1.9879,2.3493,1.2561,0.67028,-0.77278,-0.59736,-1.3291,1.4081,-0.064343,1.7319,-1.8913 0.18161,-0.98381,1.9579,2.0469,1.307,2.3564,0.26965,-0.11497,0.49985,-0.88922,-0.55545,-0.12468,0.8392,-0.10254,2.585 2.2601,0.35338,-1.5947,0.038745,1.4758,0.44733,1.2913,-1.6149,0.67556,1.73,0.11091,0.51155,-0.64073,-1.9794,0.78212 0.67022,2.858,-1.3248,-1.2109,-0.3911,1.0111,-0.24852,-1.1438,-1.41,-0.92545,0.29008,-0.83005,0.82344,1.3284,0.36064 0.66075,-2.5142,2.5698,1.1771,1.0826,3.1192,1.7217,-0.29488,0.11848,0.07259,-1.207,-0.58351,1.1512,1.5693,-0.63209 -2.8512,0.88986,0.82707,-0.050646,-0.54919,0.12245,0.97777,-0.21392,1.6512,0.2971,1.1549,0.72552,-0.20906,-0.44446,0.27003 -3.3629,-3.4671,1.319,-1.6279,1.9214,-0.51233,-2.2383,0.023623,0.4802,0.12151,-1.1033,-0.26164,-0.94472,0.89065,1.2303 -0.070026,2.1742,2.2537,-0.16907,-0.51877,0.042608,-0.61227,0.42743,0.28256,-0.65812,-0.99401,1.1143,0.58814,-2.6142,0.45603 -2.6286,-1.2332,0.5347,-2.2517,0.3037,0.090343,-1.1388,-3.1626,0.2678,0.50258,-0.59393,1.1055,-0.5742,1.4536,0.33224 -3.9617,0.0039026,-0.57159,-1.373,0.4488,0.99204,0.80327,-1.3294,0.21211,-1.6928,0.76127,0.03619,0.075328,0.4877,-1.6829 0.38039,3.2583,-0.67441,-0.16147,0.81194,0.50373,-2.1932,0.52838,-0.6164,1.1606,1.3331,-1.064,0.56548,-0.41655,-0.72683 -3.3378,-0.29564,1.5534,-1.5097,-0.262,0.84007,0.068523,-1.0302,1.2156,-0.30332,1.0717,-0.24587,0.31193,1.1262,-0.5569 -2.1018,-0.64103,0.58131,1.513,0.52216,0.51311,1.7003,-1.8005,1.2289,0.28408,0.45413,0.21258,0.77998,-0.13304,-0.031717 -3.075,-0.77045,2.2759,-2.6088,0.35146,0.65977,-0.31918,-1.3782,0.12967,-0.82269,0.46176,-0.50244,0.62931,0.74793,-0.040529 -2.7951,1.5014,-2.2492,0.30134,-0.57255,1.8341,1.9898,0.61548,0.18822,-0.50874,0.11371,-0.06172,0.64008,0.14765,-0.65003 -3.5369,-2.4324,0.39558,-2.1901,0.61724,0.036296,-2.1107,0.42331,0.47612,-0.95162,-0.78269,-0.094144,-0.12068,0.71959,0.87865 -3.9993,-1.1316,-2.2352,-1.8253,1.6818,-1.334,-1.3081,-0.35129,-0.32358,-1.8841,-1.1217,1.4651,-0.7039,0.59578,0.79487 -2.7679,-1.3717,2.2373,-2.047,0.20307,1.1278,-1.0908,-1.0476,0.73753,0.26844,0.58638,-0.16041,-0.23393,2.3506,-0.28515 -0.61537,2.2328,0.59721,0.8273,-0.088829,0.10128,2.9041,-0.025209,0.32595,1.1181,-2.4201,0.78327,-0.79335,-0.72686,-0.24029 3.5747,0.83031,-1.8815,-3.0069,0.13098,0.34469,0.63611,0.16966,1.7388,1.0001,1.2001,0.29173,-1.0103,-0.90024,0.0045525 3.8938,-0.58466,-2.3541,-1.8888,-0.4001,-0.43864,2.3183,1.0431,0.55379,1.2274,1.516,2.2953,-1.5788,-0.61035,-0.49537 4.1951,-1.172,-0.73836,-2.2157,1.7086,-0.7754,1.9677,0.90363,0.91121,1.6637,1.2628,0.84628,-2.5132,-0.63586,1.7281 -3.3356,-1.402,-0.62718,-1.5677,0.71496,-0.37999,-1.974,-2.0467,0.17905,-0.066697,-0.12944,1.9889,-0.39503,1.3139,-0.04346 -3.9647,-1.0311,-1.612,-1.6026,0.83516,0.63828,-0.61082,-1.6767,-0.26055,-1.6213,-0.23931,1.0533,-0.11586,0.52713,-0.99421 2.2593,0.72198,0.0043665,-2.0829,1.6179,-0.95677,-0.81518,-0.24543,0.27854,0.6131,2.9564,0.74764,1.7701,-1.2033,0.21835 3.1476,0.052192,-1.1065,-0.94996,0.50412,-0.18149,-0.4857,-0.061935,1.2397,-0.24996,-0.32047,0.20511,0.19742,-2.1092,-1.7829 -2.0669,0.92006,2.9783,-1.8911,1.1665,-0.81766,2.1747,0.0092109,-0.5092,-1.026,-0.80707,-0.61391,0.95872,-1.0868,-0.42686 5.1719,-0.28761,0.87627,-2.2724,2.2183,0.020149,0.48366,0.21604,1.3943,-0.70515,-0.18244,0.6169,-1.9919,0.62986,-1.9889 -2.7423,0.8061,-3.4334,-0.17016,0.58222,1.4845,1.4449,0.33037,0.49147,0.66509,-1.0132,-0.78726,0.27943,-0.90175,-0.7015 -3.8617,-0.97258,1.0606,-2.0315,0.58509,-0.47475,0.18387,-0.091248,0.93929,-0.69263,0.41764,-1.1397,0.58035,0.45262,0.51359 2.9968,-0.70454,-2.1465,-0.49852,0.54396,3.8863,0.52371,-0.1939,-0.84799,-0.73261,-0.3646,0.26789,1.3445,1.8244,-1.6239 -2.4719,1.7768,-0.46525,1.7381,1.3854,-0.82001,1.0301,1.1847,-0.18516,-0.97331,-0.82104,1.0932,-1.9898,0.055473,-0.043548 -3.5532,-1.6514,1.01,-2.6253,1.8202,-1.1358,-0.79839,-0.98777,-0.14279,0.65831,-1.4412,-0.23605,0.24514,-0.1878,1.0376 -1.7468,2.6039,-0.34162,0.3904,-1.9974,0.68956,1.0017,-0.067647,-0.71683,0.74121,0.30579,0.92348,-0.32197,0.65732,0.081932 -3.2062,-1.8955,-2.1989,-0.98674,1.146,-1.201,-1.5662,-0.66757,0.69779,-1.6107,-0.79435,1.4963,-1.122,1.1152,0.8018 -2.2029,-1.6663,3.9628,-1.3357,0.3631,-1.2658,0.42407,0.26104,0.8714,-0.42313,-0.71967,-0.82459,0.23471,-0.84298,0.34388 -2.8169,-0.47751,1.9819,0.92208,1.4049,-2.4997,1.5828,1.026,0.90793,-0.76823,0.29737,-1.1383,-0.78061,-0.3585,0.39198 1.7527,-1.8738,2.7,1.2053,2.8481,0.67887,-0.45179,0.87622,0.61169,-0.37619,-1.3481,-0.18878,0.82618,0.61367,-0.18211 1.6477,1.935,-1.3528,0.34611,-0.2089,0.17822,-0.7637,-1.6775,0.9171,1.7624,0.73905,-0.55717,0.29463,0.28096,0.56483 -1.3684,-2.5904,3.3449,0.43353,1.4053,-1.3014,0.66811,1.8291,0.8384,-0.82408,-0.34273,-1.4985,0.43912,-0.20116,0.10068 -2.1568,-3.9558,2.8658,-1.272,2.0679,-0.91323,0.037352,-0.9229,0.91163,0.36328,-1.6885,-0.082881,0.61799,-0.14927,-0.059024 0.6273,2.6749,-0.56419,1.3965,1.1154,0.87491,-0.90186,0.36709,0.41223,1.4109,-2.0203,0.2665,0.97643,-0.97629,-0.90759 3.2856,2.5995,-1.0964,-1.5777,0.78842,-0.94625,-0.22838,-1.3403,0.30852,2.3035,0.37255,-0.90865,-0.77929,-0.36898,-0.022792 -3.6971,-1.6315,0.020146,-0.88161,-0.17106,-0.85909,-0.38178,0.63813,0.91268,0.046287,-0.49107,-1.6104,0.04884,0.09235,0.11442 3.4303,-1.2922,2.5428,0.82604,2.1318,1.7508,-0.91899,0.67749,0.878,-0.74722,-2.5572,0.57626,0.33542,0.81747,-1.1368 -2.2278,1.5657,-1.6047,0.63964,0.25782,1.8826,0.93372,0.59876,0.57898,-0.8903,-0.27512,-1.1942,0.01373,-0.17829,-0.53759 -3.6948,-1.214,-0.16621,-1.7066,0.013104,-0.42882,-0.39895,-0.74161,0.17459,-1.1511,0.080252,-0.90054,0.67333,-0.59257,0.40076 -0.78691,2.2905,-0.60102,2.7022,1.0373,0.087533,-0.43926,-0.30653,0.43666,0.015752,-0.39056,1.1372,-0.39153,0.9336,-0.39491 -4.4677,-0.87532,-1.3673,-2.3642,2.0226,-1.257,-0.61979,-0.051702,-0.17446,-1.2694,-0.76027,-0.091592,-0.73816,0.5329,0.35775 -2.241,-2.7062,-0.11113,-2.7475,0.4228,-0.83101,-1.6329,-0.94155,-0.23615,-0.37216,-2.7232,0.5725,0.24085,-1.2836,1.1273 4.6111,0.55155,-0.39676,-0.099617,1.4077,-0.436,0.39955,-2.1989,0.2877,0.82307,0.77583,-1.4738,-0.57747,0.91316,0.57995 -1.5061,-1.0649,2.2812,-3.4413,-0.052408,1.4942,1.3077,-0.78315,-0.07146,-1.725,-0.94072,-1.4092,-0.19636,-0.91182,-0.22228 -3.609,-1.1373,2.6283,-0.66015,0.79824,-1.7228,0.45984,-0.099137,0.94842,-0.55009,-0.3701,-0.45116,-0.35808,0.029189,0.40771 1.8043,1.101,1.1045,0.43106,0.0063876,0.28993,0.7392,-0.41447,1.5453,-0.59524,-1.8878,1.4806,-1.8834,-1.1642,-1.579 -3.5618,-1.147,-1.1583,-1.5925,0.15894,-1.098,-0.94677,-0.88823,0.14709,-0.5305,-0.84304,-0.0093046,0.64353,-0.36812,0.79175 -0.90511,-0.92662,2.2944,-2.2823,-1.4094,0.77066,1.3532,-2.0866,0.88002,-0.27451,-0.96565,-0.2059,-1.2843,0.41181,-1.1748 2.0215,3.1623,0.44797,-1.3137,3.1677,-1.1507,-1.8413,0.29579,-1.7566,1.7513,0.71794,-1.1952,-0.92094,-0.56091,0.078834 -2.3602,-1.4319,1.3014,-2.5468,0.4158,-1.1917,0.50031,-1.0641,0.59069,-0.47222,-1.2852,-1.0473,1.2957,-1.5681,0.06611 1.7323,2.1415,0.00028786,0.49115,0.74362,-0.053613,-0.49445,-1.5183,1.2252,0.1045,-1.1682,0.9222,1.3008,-0.37523,-1.9826 -3.6904,0.70518,-2.3892,-0.55591,0.78153,-0.16482,1.1641,1.0769,0.44941,1.0631,-0.10634,-0.44366,-0.46632,0.442,-1.0251 -0.35959,-0.33761,3.2645,-0.49883,-0.25892,0.26523,1.0608,0.56161,2.2596,-0.42599,-0.32896,-0.18436,1.2873,-1.1381,0.71524 2.5298,1.7121,-1.209,0.1864,0.81162,1.0967,-0.55157,-2.5361,0.41671,0.75753,0.7314,-1.679,-0.47321,-0.34753,0.67517 -1.5751,-0.96951,2.709,-2.7606,-0.61491,1.9826,-0.27519,-1.0668,0.29387,-0.15133,-0.60445,-1.0295,0.26153,1.5956,-0.16832 0.1334,0.95896,-0.3379,1.6288,-2.8226,1.5468,0.0221,-0.11831,-0.19564,0.30336,0.33417,-0.75396,-1.6564,0.85091,1.1521 -2.4576,-0.083838,0.31286,-2.207,0.10217,0.15171,1.1873,-2.6421,0.079363,-0.59982,-0.94452,-0.75946,0.89667,-0.11959,-0.29174 3.0753,0.36885,-1.4205,-0.51728,-1.3939,-1.4221,-0.27018,-0.51933,1.5121,-1.1281,-0.081779,0.45736,-0.97404,-0.93568,-2.3411 5.1664,-1.2977,-0.7482,-1.7548,2.2278,1.4734,1.3193,-0.048216,1.2575,0.26484,0.95291,0.82736,-1.8502,0.39862,-0.70879 -3.3983,-0.69195,1.7904,-2.1148,0.14616,0.63613,0.069051,-1.7903,0.65724,-0.36586,0.60819,-0.031327,-0.0063807,1.3211,-0.26209 2.9995,-2.8621,1.8986,-3.1609,1.3029,0.53169,1.3359,1.5442,-0.5376,0.072208,-1.1141,2.1383,-0.97034,2.7865,-1.4811 -3.4466,0.20405,-2.095,-1.7012,1.8693,0.22736,-0.86044,-1.7376,-1.4489,-0.65672,-0.46265,2.0417,-0.42038,0.20162,0.36924 -0.52762,2.6844,-1.7302,0.066755,-0.13515,0.66026,-1.576,0.43993,1.2418,1.4126,0.028171,0.5571,1.1229,-0.24319,-0.61694 -2.9308,0.25039,-1.2294,-2.2429,0.72531,-0.039229,-0.70555,-2.5527,-1.5528,0.0013756,-0.42452,1.9677,0.30378,0.41564,0.25585 2.2723,0.25895,-2.3171,-0.90732,-0.94921,0.41412,1.6077,-0.66701,1.4898,0.51443,0.24671,1.4649,0.0381,-0.1262,-0.066294 -2.5241,-0.91588,3.6331,-0.94147,0.49672,-0.14198,0.17085,0.18714,1.8192,0.43819,0.3833,-0.52447,-0.040702,-0.22426,0.60502 -3.2815,1.1308,2.1649,-1.6768,-0.081313,0.56526,1.0742,-0.16252,0.52521,-0.64938,1.2302,0.10965,-0.24014,-0.4653,-0.10997 -0.17943,1.9772,1.0014,-2.7647,-0.59555,1.7384,1.7238,0.79751,-1.7802,-0.34881,0.26111,-2.0554,-1.1713,0.65971,-0.56218 -3.0932,1.4444,2.2626,-0.74554,0.73439,0.28416,0.69355,0.53504,0.92387,0.029263,1.2844,-0.013224,-0.82751,0.081517,-0.316 -0.30436,-0.21574,2.8866,1.4238,1.0473,1.2025,-0.023399,-0.18049,0.87011,-0.18737,1.2473,0.59144,-0.90358,1.3476,1.4847 1.9136,-1.1687,-0.46844,0.040824,2.3638,0.22055,0.94128,-0.43238,2.2444,1.2022,0.46201,1.3278,0.39041,-1.4019,1.5311 -3.8479,1.3887,-1.1096,-0.37966,0.10073,1.2408,1.6526,1.5733,0.37037,-0.93927,0.45023,-1.4267,0.24347,-0.12318,-0.25537 -1.7245,0.36899,2.7735,0.29874,1.0675,0.67253,0.41193,0.14154,1.0045,1.4138,1.3833,-0.83311,-1.1282,0.21967,0.36538 4.2926,-0.84029,-0.85565,-1.8963,0.52681,2.7808,1.658,-0.84127,-0.61263,-1.0382,0.58276,-0.90772,0.29174,1.1206,0.054088 -1.4415,-1.9862,3.7254,-0.52039,0.27934,0.81894,-0.035242,-0.47132,1.6099,1.0636,0.10764,-0.64305,-0.21503,0.78057,0.2298 -2.9293,-0.80113,1.7828,-0.78044,0.85325,-2.4752,1.2747,1.5037,0.27193,-1.2177,0.46337,-1.7426,-0.1173,-0.54231,0.13264 -2.9194,-2.3464,-2.3963,-0.7329,0.050963,0.078097,-2.0623,0.40077,0.71387,-0.69943,-1.2308,-0.0019905,-0.94194,0.99387,0.5299 2.1428,2.0904,-0.68303,-1.9346,-0.07554,0.1753,-0.82646,-0.65128,1.7069,-0.7715,-0.34191,0.74199,0.71823,-0.62744,-0.83043 -3.6093,-0.71477,-0.52456,-1.2074,0.86565,-0.19825,-0.39,-1.2208,1.4077,0.11227,0.6376,0.21614,-0.3472,0.11378,-0.28551 -2.8742,0.057695,-3.5492,-0.4493,-0.27631,0.61437,-0.0044255,0.36109,0.31923,0.1255,-0.62631,0.12202,0.14118,0.76914,-1.1548 -4.1582,-0.48711,-1.3434,-1.983,1.0707,-0.13462,-0.42974,-0.36494,0.68947,-0.39488,-0.10419,0.68916,-0.37422,0.11955,-0.73123 1.6135,0.6278,-1.1796,1.1428,0.37007,2.2301,-1.1909,-1.9919,0.23424,-0.90402,-0.051215,-0.23015,1.3802,0.72117,0.023272 -2.4529,1.6787,-0.63795,0.54439,-0.86994,2.2424,0.91728,0.7268,0.62467,-0.58009,0.65603,0.94559,0.39842,-0.32786,0.043065 -3.6106,-0.67394,-0.19536,-1.2296,0.76207,0.20526,-0.15872,-1.4485,1.0808,-0.5221,0.5209,0.70163,-0.5915,1.403,-1.1498 -0.1379,3.4899,1.3652,-0.6355,-0.15527,-0.27867,-1.2151,-0.18734,-0.77196,-0.77178,-0.54785,0.41393,0.53263,-1.8421,0.2085 -1.1527,-2.3363,3.4686,0.7766,1.6712,0.86396,0.31486,-0.19873,1.3058,-0.089907,0.16887,-1.0192,-0.095081,1.0177,0.84281 1.9989,3.1319,-2.0856,-0.91492,0.041265,1.2744,-1.0404,-0.60514,-0.53313,-0.81709,0.090761,-1.8724,-0.493,-1.1174,-0.72891 -3.4198,1.3857,1.9896,-1.12,0.82201,1.2722,1.3281,-0.66507,-0.66652,-1.3888,1.0067,-0.26826,0.23884,1.0213,-1.1146 -0.071454,0.22285,0.86918,0.72937,-2.3252,1.4859,0.92782,-0.92852,1.1188,0.49196,-0.5557,0.091292,-1.519,0.60782,0.52245 -2.6866,-1.2923,3.4213,-2.917,1.0173,0.60701,-0.21031,-1.1474,-0.080761,-0.63745,0.2179,-0.38917,-0.2241,1.7349,0.13899 -2.5372,3.1171,0.075271,0.043999,-0.48327,1.1629,0.92103,0.64599,-1.0772,0.98683,0.36531,1.7236,-0.59651,-0.071507,-0.40534 -2.0604,-1.9711,3.7468,-1.9176,0.6538,-0.45028,-0.44671,-1.5305,0.059168,0.29946,-0.27046,-0.32085,-0.53134,1.3041,-0.19234 -2.0204,3.4335,-1.0071,0.35012,0.51142,-0.39809,-0.41299,2.4317,-0.11242,-0.72465,-1.005,0.0059627,0.48238,0.31756,0.18841 2.1522,-0.99892,-2.05,0.84981,1.267,1.6884,1.1753,-0.27633,1.4963,0.76084,-0.13939,0.50649,0.30735,-0.71297,0.49259 -3.6402,-0.64746,2.627,-2.4491,0.98635,0.44799,-0.11874,-0.93188,-0.66372,-0.92673,0.35948,-0.43753,0.16151,1.145,-0.16211 0.34723,-1.1033,5.3486,-0.85342,2.8641,-0.82259,1.2985,1.2888,-0.79227,-0.52697,-0.53087,0.23369,-0.13906,0.098717,-0.71469 -0.22395,1.271,4.1497,-0.025955,0.87598,-0.087072,0.59606,0.53844,1.4982,0.73098,-0.5813,0.046267,0.059648,0.49733,0.66328 -1.7629,0.64889,3.5949,-1.3088,0.11819,0.48016,0.33678,0.95579,0.67957,-0.8136,1.0864,-0.41161,0.34813,0.42139,1.0803 2.1516,3.0093,-1.5045,-0.1227,-0.12549,-0.075794,-0.44546,-0.22336,0.13687,1.5499,-1.6595,-0.98189,-1.1196,-0.4755,-1.5678 0.16077,1.8064,1.4435,1.2273,0.027794,0.48645,1.1597,-2.2488,-0.42188,0.94835,-1.0648,0.70079,-1.8612,-0.64115,0.88268 3.9983,-1.7523,-1.7552,-0.68201,-0.0048021,0.6982,1.9874,0.24185,1.2747,0.74544,0.37202,0.86361,-1.1589,0.966,0.35431 3.3873,-0.87573,1.6663,1.0687,1.3676,0.81798,-1.8913,-1.1356,1.1485,-0.35878,0.41659,0.39223,0.44699,-0.15335,-1.4173 -0.97998,1.1932,2.9044,-2.6698,2.3008,1.7607,0.60482,0.161,-2.0292,-1.7163,0.92477,-1.4818,-0.99063,0.38633,0.13465 -1.7034,1.5262,4.0042,-2.1891,-0.0291,0.43801,0.8067,-1.2511,-0.82166,-0.93782,0.2984,0.049362,-0.70823,1.2221,-0.12914 0.21497,1.6156,4.0921,-3.2769,0.13499,0.75983,1.027,0.064662,-0.62108,-0.76414,0.70514,-0.0018567,-0.53543,0.87345,0.24129 2.2668,1.4396,3.8044,-3.7949,0.78144,0.38128,0.44814,0.76402,-0.93199,-1.9498,0.85442,1.0284,-1.0184,1.8508,0.22894 -1.1765,1.3244,3.3824,-2.8248,0.30886,0.63947,1.3477,-0.050965,-0.64565,0.69519,-0.60682,-0.75023,-1.591,-0.23104,0.058084 4.1891,0.0076805,-1.6292,-2.1537,0.078854,-1.0873,1.5074,-0.50286,1.5201,0.89014,1.4788,-0.24997,-2.1626,-0.28905,1.264 1.9582,1.0208,-0.52526,0.39692,-0.34708,2.3232,-0.21491,-1.6038,-0.18234,-0.34765,-0.81927,-1.256,0.512,0.26847,-0.29756 2.0832,1.8234,0.5471,-0.32545,4.6665,-1.4746,-0.76014,-0.45016,-1.709,1.4941,0.29541,-0.89353,-0.051559,-1.5293,0.054254 1.2919,1.8005,0.99305,1.4432,-0.36355,0.10751,-0.70736,-0.78705,0.2036,-0.035427,-1.1509,0.82598,-0.89348,-1.8153,0.055831 1.7467,4.4106,-0.37974,-1.9661,2.7818,0.59967,-0.36183,0.50743,-1.4242,-0.59108,-0.13308,-1.2865,-0.51295,-0.66098,0.062079 -0.75207,-1.0373,4.5557,-0.90115,1.2659,0.27808,0.75069,0.048598,1.2761,0.60374,-0.078462,-0.46,-0.25323,1.2171,0.6384 -1.9734,-1.8789,3.5744,-2.4364,0.096351,1.0452,-0.48929,-0.79448,0.1878,0.50213,-0.47968,-0.72913,-0.15827,2.1388,-0.029529 -0.8686,0.48851,3.1642,1.2823,2.3109,-1.6212,1.2715,1.3708,0.030042,-0.99492,-0.90136,0.87322,0.68788,-1.5366,0.18321 4.2503,-0.71177,1.0192,-0.23528,2.2538,1.3499,-0.25077,-0.57337,1.0148,-1.0327,-1.2276,-0.40021,-1.2044,-1.1325,-1.1517 4.7661,-1.8061,-1.0206,-1.0284,2.355,2.3746,2.6032,-0.348,-0.088984,-1.0302,0.85134,0.20387,-1.4302,0.064516,0.57707 -3.4695,0.29833,1.6227,-1.1523,0.7824,-1.2579,1.3395,-0.61381,0.38712,0.75181,0.38305,0.37307,0.6569,-0.6968,-0.062726 -3.306,3.0221,-0.74481,0.64836,0.75763,0.94711,0.98008,3.0201,-1.3008,-0.81453,-0.63711,-0.28865,-0.21655,-1.3,0.76265 0.99646,-1.3542,3.9015,1.6518,2.4086,-0.29329,-0.22842,0.26787,-0.34936,-1.6238,-0.69175,1.3212,0.73375,0.037025,-0.44666 -3.4968,-0.038728,-0.70891,-0.54395,-0.25876,0.79322,0.89307,-0.52391,1.371,-0.46592,1.4079,0.42431,-0.50522,0.70314,-1.2602 0.11876,0.5931,3.0305,0.61914,1.5845,-2.1122,-0.52498,1.5385,0.88399,-1.8056,-0.53868,1.0103,0.7822,-0.42229,0.58217 2.4643,-1.186,2.8491,1.2482,4.2147,-0.96095,-1.0928,0.90131,-1.0393,-1.8654,-0.60956,0.75562,0.77183,-0.73975,-0.063173 3.8797,0.4103,-0.034599,-2.7877,3.1748,-0.63042,1.5658,0.23917,0.063101,2.0161,1.3797,1.4894,1.2115,-1.5555,0.42172 -0.57219,3.5435,-0.91676,0.40337,-0.5303,0.8473,-0.47213,-0.39187,-0.3261,1.2148,-0.87322,0.73071,0.53927,0.6203,-0.62079 -3.2828,1.1985,0.018044,-0.9809,-0.87682,1.0105,1.446,-1.3269,-0.91653,0.048011,1.1654,0.54715,0.2326,-0.45254,-0.84268 3.408,-3.2935,0.53401,-1.1942,3.9474,1.1087,-0.29171,-0.2716,-1.7394,-0.036986,0.60283,1.9596,1.465,0.46855,0.085516 1.6204,1.9087,-1.2586,-3.0567,-0.2983,1.567,0.32712,0.43904,-0.16688,-0.53908,0.37029,1.6965,0.07452,-0.90776,0.85286 3.605,1.0381,0.76851,0.30768,1.4254,0.92483,-1.0001,-2.0241,0.50666,0.28022,-0.27732,-0.081209,-1.1292,0.54985,0.26022 -0.4897,-0.25878,3.934,1.3318,1.7719,-1.0259,0.5799,0.42722,1.1655,-1.002,-0.17495,0.75915,0.38246,-0.53479,0.71968 -1.2693,3.205,-0.46253,0.69451,-1.242,1.2198,-0.12121,-0.31653,-0.57849,-0.32251,-0.34938,1.5644,0.68128,0.94842,-0.33495 2.8997,-0.1413,3.8094,-0.38711,2.6149,-0.45441,-0.18714,0.5824,-0.11901,-1.532,-1.5295,1.8726,0.73208,-0.52557,-1.3377 3.9442,2.872,0.33405,-3.3114,0.7295,-0.61229,-0.090396,-0.436,-0.2855,-1.0652,-0.15947,-0.36585,-0.7979,-0.75298,-1.353 -3.4383,1.4971,1.0843,-1.0217,-0.48507,-0.15612,1.8389,-1.0616,-0.42853,0.41289,0.43277,0.28451,1.032,-0.086001,0.25941 -3.4239,-0.49878,-1.3903,-1.3363,0.67322,0.71384,0.13437,-2.7035,-1.1626,-0.26055,-0.58388,0.21298,0.35404,-0.032958,-0.53592 -0.26847,3.8253,0.10348,-0.093278,-1.1871,0.80454,-1.015,0.48703,-0.80928,0.73982,-1.1612,0.75938,-0.4757,-0.31219,0.032886 -3.6396,0.51511,-0.07694,-0.5567,-0.30077,-0.25689,1.1657,0.45825,1.223,-0.86045,1.1247,-0.50565,-0.085541,-0.69494,-0.049164 -2.3032,1.5297,1.5669,0.06528,-0.90986,0.58332,0.7954,-0.045954,0.74481,0.073039,0.78225,0.1062,1.1256,-0.52388,0.66716 3.6794,1.8243,-1.3505,-4.4662,0.7578,0.32873,0.67137,0.51843,-0.56503,0.38806,2.1216,-0.19143,-0.45314,-1.407,0.8701 4.5135,-2.2112,0.82073,-1.9385,5.3115,-0.62647,2.0571,0.49362,-1.4082,0.66371,1.2291,1.1903,-0.7234,-0.7318,0.6205 2.5873,-0.53302,1.6365,-3.4733,0.6547,0.86929,2.2249,1.3236,0.35757,0.13008,-0.53486,2.6109,0.63221,0.6621,-1.4045 -2.4593,-0.38898,1.4864,-2.7825,-0.32111,1.1493,1.4239,-1.9501,0.3017,-0.60318,-0.64868,-0.54564,0.017065,-0.44597,-0.28193 -2.7892,1.5362,0.82906,-0.17994,-0.35637,0.17699,0.93366,0.74217,1.2466,-0.40251,1.2469,0.18352,0.65841,0.5349,0.20432 4.5993,1.3495,-1.2382,-3.6441,1.246,-0.16554,0.64651,1.0126,-0.21582,0.75513,0.99115,0.12761,-0.71754,-0.94314,-1.3127 0.1421,1.8477,2.8231,0.93154,0.22847,-0.31394,-1.049,-0.21847,1.7261,-0.30775,-0.39163,1.2863,0.50229,0.47172,0.46847 3.2093,1.0389,-0.8156,-0.26676,2.5201,0.078856,0.83351,-1.4841,-0.28937,0.75944,-0.48477,-1.5803,-0.57048,-2.428,0.27991 -3.5405,0.67642,0.01081,0.1222,-0.31554,0.061136,1.349,0.66091,1.6614,-0.11886,0.58171,-0.33695,0.20414,1.0651,-0.58866 -3.5304,0.77659,0.9663,-0.63496,-0.0002674,-0.50983,1.4483,0.10943,0.8195,-0.90486,0.93926,-0.52207,1.1228,-0.36058,0.37871 -2.6972,0.90933,1.1874,-0.28934,-1.0292,1.0647,0.39748,0.16955,0.90153,-0.85956,1.0868,-0.19438,1.2454,-0.17528,0.31973 -0.6255,1.181,1.501,0.37423,0.03445,2.0777,0.30947,0.035597,0.48983,-0.49155,2.1588,0.14717,-0.99557,1.7586,-0.089172 -2.2655,-1.5366,1.7866,-1.7725,-0.72316,1.095,-0.23911,-2.1119,0.8548,1.4173,-0.45242,-0.3682,-0.20584,1.0369,-0.53045 -3.0789,-1.908,-0.26503,-2.0018,0.24227,0.53524,-2.0897,-1.5351,0.39122,0.3158,-1.1124,0.68778,0.67558,0.69914,0.60823 -2.1052,2.1719,-0.88875,1.4787,-0.21975,-0.032515,0.74153,0.97224,1.024,0.25278,-0.17856,1.3486,-0.43122,0.66557,-0.065063 -1.8613,3.0892,-0.97985,0.24078,0.54787,1.9038,0.24989,0.95521,-0.73203,-1.0617,-0.21175,-0.13845,0.10134,0.38663,-1.3338 -2.6616,0.73385,-1.0386,0.60219,-0.2949,0.22468,1.4444,0.81049,1.0449,0.87064,0.20652,1.0498,-0.066878,0.59076,-0.17454 1.484,0.9215,-0.46053,1.23,2.7785,-1.7503,-0.76712,0.058858,0.030768,-1.8538,-0.45168,-0.37591,2.118,-1.0208,-0.61016 -2.5631,0.2625,-2.2346,0.64727,0.0043906,0.0048416,0.88977,-0.58368,1.5328,1.0497,0.22173,0.25434,0.3769,0.6959,-0.86059 -2.4828,0.72978,-1.7296,0.51129,0.46039,-0.092166,1.2682,-0.96176,0.86742,1.8992,0.078585,0.31444,0.68065,0.18013,-0.90818 1.8824,2.2986,1.4559,-0.76234,0.54244,-0.58352,-1.6602,0.4084,0.70271,0.51935,-0.68071,0.54283,1.0631,-1.7705,0.035751 -2.4731,0.20956,-0.40621,1.4019,0.6427,-0.19844,1.7775,0.1231,1.492,0.010325,0.85037,-0.082834,-0.33317,-0.53318,-0.38543 -1.4731,-1.2431,0.88132,1.8856,0.39897,1.5321,1.3375,-1.4475,1.5164,-0.612,0.39065,0.074933,0.48268,-0.42727,0.39485 -2.3809,0.80943,0.56292,1.6396,0.25765,0.21184,1.6317,-1.0642,1.331,0.94157,0.97002,0.81438,-0.56714,0.54542,-0.010168 -1.7666,2.057,0.30409,1.0934,-1.2526,-0.058315,1.498,-0.5223,0.22409,1.6147,0.63577,1.1314,-0.24138,0.51558,0.24598 -2.4782,0.1439,-0.6853,-0.76868,-0.42305,-0.10694,1.0359,-1.7325,1.4446,0.66732,0.1102,0.61789,1.4078,-0.10702,-0.54283 -1.9918,-0.26244,-0.29792,0.20014,-0.33861,-0.40731,1.0775,-0.67744,2.2325,0.24316,-0.079975,-0.30554,1.2953,-1.1891,-0.19037 0.36955,2.7661,1.9122,0.554,1.765,-1.4921,-0.69388,-0.093285,0.30038,0.096328,-1.3608,0.70428,1.2435,-0.56763,-0.97617 -2.2993,1.1712,-1.3328,1.6618,0.23826,0.79423,1.3244,0.11585,0.29321,1.8799,0.4143,0.57874,-0.6365,-0.32991,-0.036729 -0.79505,1.51,-0.5309,2.3686,1.3447,1.5646,-0.42732,-1.6764,-0.40355,-0.47559,-0.080988,1.1006,0.11577,-0.18043,0.42425 -1.0708,-1.1815,0.1266,1.7091,-0.2384,0.59491,0.53846,1.4374,1.7483,-1.552,0.30385,-1.108,-0.54952,-0.57545,1.2093 -0.01545,3.4954,2.493,-1.0293,1.6854,0.99729,0.30133,-0.60595,-1.9742,-2.0524,0.05258,-0.68338,-0.96721,0.24403,-0.28121 -0.41105,-1.327,0.46165,1.2624,0.0067039,1.9064,0.21163,0.63606,1.8894,-0.51058,-0.28328,-0.70678,1.403,-0.6588,0.81118 -1.3121,2.6285,0.35947,-0.50123,-1.5853,1.73,0.8671,-0.27915,-1.1025,-1.004,0.35377,0.33498,-0.71288,-1.8414,1.0173 4.167,-1.5846,-0.38285,-0.96535,2.5227,1.9456,1.0069,-0.38896,0.94174,-0.35182,-0.033112,-0.48527,0.2253,-1.2962,0.90016 -1.3473,-0.29901,1.6011,0.92927,-0.8301,-0.053091,1.0081,-0.14137,2.5005,-0.31859,-0.25759,0.34336,0.3052,-1.1238,1.151 -3.2806,-1.8022,-0.36083,-1.8386,1.6139,1.8019,-1.3464,-2.3855,-1.7424,-0.97257,-0.60984,0.97524,-1.0495,0.80474,-0.0883 1.6728,-0.91244,-2.973,0.22216,0.5784,2.403,1.6058,0.50381,0.56847,-0.26638,0.56629,0.94587,-0.11272,-0.2557,1.7183 -2.4246,-0.35015,-0.44417,1.9113,1.1872,0.24168,1.4898,-1.1836,0.77973,0.40164,0.83583,-0.39299,-0.28413,0.1598,0.014819 2.0542,-1.7524,-1.6012,-1.0612,0.72604,3.3117,1.9115,0.33512,-0.10887,-0.95242,-0.34414,1.5161,1.4365,0.14669,0.75685 0.48993,1.6836,0.060146,1.9707,1.7358,0.65373,0.83415,-1.514,-0.36954,-0.43186,-1.8725,1.1484,0.98313,-1.2901,0.3823 -1.9361,0.71078,3.7113,-1.9312,-0.4097,0.65454,1.0407,-1.5019,-0.3631,-0.45166,-0.25175,0.14015,-0.056809,0.3268,0.22398 -1.7469,2.0386,1.5245,1.4749,1.0066,-1.0925,0.54025,0.85879,0.96102,0.73731,0.10904,1.1344,-0.25833,-1.1015,1.1552 -2.596,-0.30592,2.5975,1.0739,1.2097,-0.48391,0.34119,1.3978,1.3253,-1.2533,0.53419,-0.20355,-1.726,1.2723,0.43428 -0.62858,0.14352,3.0513,1.9834,2.0416,0.43404,-0.15542,0.81337,0.62003,-1.0361,1.3997,0.074895,-1.4744,1.9366,0.27546 0.039999,1.1254,3.8308,-0.56924,-0.26086,0.23814,1.5941,-1.2383,0.97137,0.64627,-0.48548,0.17407,-1.7368,0.98548,0.41711 -0.81023,3.182,-0.60441,-0.71216,1.1704,1.5062,-0.33119,1.3279,-0.15285,-0.31741,1.0038,0.027799,-0.35616,-0.41561,-1.3862 2.8182,0.074944,2.0245,-0.74505,0.072879,1.3094,0.51574,0.31264,0.56595,-1.6882,-1.2075,2.1217,-0.50041,0.45469,-1.429 0.23438,3.1942,-0.079117,0.50667,0.76225,0.50841,-2.7109,0.43323,0.41748,0.50068,1.1014,0.78845,-0.15204,0.48657,-1.7241 -2.5728,-0.93176,1.6064,2.2279,1.3055,-0.02589,1.2029,0.24442,1.1165,0.013537,0.49338,-0.30373,-0.32327,0.548,0.08059 -3.0518,-0.47012,-1.368,-1.7814,0.77061,1.4181,-0.5576,-1.8086,0.075495,-0.81201,0.051457,0.50385,-0.065886,-0.1052,-0.21623 0.43466,3.5062,2.6631,0.11177,0.46638,-0.81832,-0.80646,-1.0019,-0.5572,0.67222,-0.073368,0.51653,-1.148,0.33143,-0.37055 -2.6852,0.049721,-3.1829,-0.47128,0.78153,1.2892,-0.60594,-1.3635,-0.22895,-0.95971,-0.62865,1.2461,-0.50471,-0.033069,-0.060998 -3.3051,1.4024,-0.11007,-1.7605,-0.01168,1.1891,1.1653,-2.2967,-1.0967,0.8472,0.68524,-0.28678,0.26719,0.15976,-0.7774 1.0023,0.46412,3.398,0.59671,0.25697,1.0875,-0.067616,0.70678,0.93066,1.1084,-0.78338,0.55963,-1.0023,0.26455,1.6957 -3.6019,-0.37166,-0.60818,-1.2976,0.61544,1.3824,0.31084,-1.9972,0.011935,-1.6166,0.59102,-0.21212,0.46687,0.35655,-0.91392 -3.2821,0.71094,-2.9955,-0.77377,0.90098,1.3365,0.23328,-1.2522,-0.42622,-0.36456,-0.35194,0.46908,0.21886,0.14489,-1.1373 0.431,3.6748,-0.56508,-0.48133,0.093714,0.15617,-1.7962,-0.046441,-0.17887,1.8167,-0.35764,-0.37075,0.50829,-0.1769,-0.85573 4.6308,-1.4486,-1.4663,-1.0438,1.7628,2.0709,2.8473,-0.43336,-0.01191,-0.14866,0.75998,0.36204,-1.4936,-0.50472,1.1617 1.2533,1.9258,-0.61027,-0.35413,1.1457,-0.82822,-1.7642,0.95123,0.63446,1.1631,0.42501,0.096051,1.7436,-1.7172,0.31193 0.49108,3.5928,0.0055953,1.1305,-0.48834,0.2917,-0.30496,-1.0495,-0.2198,0.67113,-1.1576,0.70158,-1.0532,0.76949,-0.034705 0.37609,4.3181,1.3908,-0.75344,-1.017,0.2273,0.032995,-0.27161,-1.261,0.64047,-1.511,0.77858,-0.2504,-0.36684,-0.055795 -0.90986,3.1118,0.10041,1.1243,1.336,0.23602,-0.84395,1.3482,-0.096998,1.6473,-1.0166,0.92261,0.62406,-0.77458,-0.38346 -3.3233,0.74829,-2.0407,-1.0743,0.65942,1.2809,-0.099598,-1.5637,-0.92577,0.53133,-0.16489,0.3255,0.11702,0.21549,-1.0003 -3.0566,-0.7298,-2.4722,-0.71897,0.86943,1.199,-0.36223,-1.9465,0.081324,-1.8817,-0.63627,1.1035,-0.3827,0.35387,-0.51604 -3.169,-0.42476,-0.83296,-1.1853,0.073574,0.30569,0.55953,-0.28257,1.7015,-1.6308,0.56675,-0.39313,-0.38446,1.193,-1.3683 -0.336,0.65901,2.4357,0.7449,-0.13932,-0.1695,0.54544,0.058363,1.7714,0.3731,-0.15082,0.6895,0.52293,-1.8646,0.84354 -1.5619,-1.9468,1.843,-1.1867,0.41876,0.46447,0.99684,-1.0605,2.4823,1.0614,-1.2044,-0.72099,0.13204,-0.9424,-0.32384 3.6816,1.7099,-0.21622,-2.0922,0.24113,0.72893,-1.2889,0.49779,1.4598,-0.055805,-0.061896,-0.46593,-1.0559,0.62459,-0.51052 -3.1587,2.8468,-0.45712,-0.36327,0.22743,1.5633,0.91214,1.2861,-0.99135,0.70154,0.17888,1.0673,-0.68226,-0.29356,-0.84862 -2.8877,0.28612,-2.3602,-0.51784,0.7712,0.090316,0.31033,-0.63538,0.83092,1.1237,-0.24737,0.73475,0.60064,1.2139,-0.76809 1.7099,1.8157,-3.3274,-0.935,-0.61733,0.94684,0.58878,0.47686,1.0562,0.41503,0.3484,-0.33968,0.17533,-0.84414,-0.65114 -3.0644,-0.14888,-3.31,-0.41186,0.62865,0.81713,0.1233,-0.98021,0.31876,-1.3013,-0.54385,0.16271,0.25987,-0.39732,-0.44226 -1.5429,-0.54779,-3.4957,-0.10334,-0.24396,0.16553,-0.55167,0.026704,0.63629,-2.1937,-1.4419,1.6956,-0.14562,-0.34474,0.99973 -2.5032,-1.1924,-2.5763,0.72547,0.32984,-0.47482,0.4837,-0.54301,1.2636,-0.50769,-0.34665,-0.58655,-1.5056,0.33736,-0.68994 -3.0601,-0.44216,-2.3095,-0.7343,-0.18869,-0.58478,0.40919,-0.20977,1.7283,-1.0782,-0.49045,-0.31279,-0.38121,0.84335,-0.65842 -2.4054,-1.207,-2.662,-0.10935,0.16515,-1.1325,-0.51998,-0.16545,1.1828,-0.60177,-1.0761,-0.25597,-1.3394,-0.20728,0.18063 -2.9442,-1.6093,-2.3754,-1.1194,0.14313,0.58092,-1.6625,0.59477,0.98142,-0.76618,-1.0356,0.15967,-0.47066,0.65488,0.71598 -1.5908,1.4871,1.4553,1.9105,0.23169,-0.056055,1.0331,-0.74445,0.93066,0.66431,0.64186,1.0796,-0.1141,-0.10693,0.29301 0.26365,1.5417,0.8453,1.9014,1.5295,0.768,-2.137,0.31931,-0.213,0.03171,1.2507,0.59274,-1.8284,0.99576,-0.36311 -0.83745,3.7248,1.1636,0.099988,-0.51623,1.561,0.38573,-0.90255,-1.4131,-1.539,-0.17808,0.80337,-0.26047,-0.047954,0.34951 -0.86424,3.7631,-1.2203,0.7594,-0.59971,1.1903,-0.49374,0.92953,-2.4065,-0.48502,-0.6809,-0.24027,-0.025403,-0.39371,-0.98843 -2.8615,-0.93206,-1.4139,0.34783,0.26556,-0.61135,0.52576,-0.22606,2.0244,-0.04332,0.27564,-0.2744,-1.2622,-0.1334,-0.5132 4.4191,-0.46773,-0.776,-0.37517,2.5318,0.96775,0.58902,-0.17381,0.65918,-0.16345,-0.32462,-0.86731,-1.7449,-1.1223,-0.88141 -2.0342,0.061693,2.0445,1.8686,1.7263,0.16512,0.3877,1.1574,1.0433,-1.4254,0.58015,-0.27093,-1.8543,0.45857,1.3289 -2.209,2.0249,-0.5288,0.48214,-1.2506,0.89817,1.4169,-0.2109,-0.003927,1.278,0.23161,1.247,0.85329,0.41101,0.25002 -2.1935,-1.2339,-2.8837,0.64422,0.39764,-1.2267,-0.42795,-0.62912,1.127,-0.88293,-0.87526,0.5044,-0.57005,0.18546,0.32963 -2.0535,-0.39253,-3.5368,0.75691,-0.00015222,-0.76033,-0.89503,-0.040006,0.95239,0.38041,-0.85187,0.99477,-0.27452,0.64404,0.24634 -2.3211,-0.45459,-2.7613,-0.6562,-0.66529,0.98028,-1.1738,-0.96429,0.27658,-0.36798,0.10915,1.5371,0.53436,0.63705,0.071425 -2.3787,0.74208,0.80085,-0.58304,-1.1128,0.90556,1.263,-1.5332,1.38,0.77698,0.81218,0.18164,-0.12715,-0.46988,0.12235 2.4281,2.3589,-0.58197,-1.3384,0.37032,-0.1584,-1.5856,-1.5225,0.46783,1.3702,1.6966,-0.95039,-1.2648,0.15,0.27271 1.2962,-0.045987,1.5265,-1.1778,0.46645,-0.18781,1.0802,1.6782,1.2983,0.92953,-0.19844,0.39915,1.3226,0.20624,0.23267 -2.4635,1.9806,0.084438,0.17208,-1.0842,0.86313,1.0085,0.046344,0.62285,1.3115,0.84793,0.6237,0.065689,-0.6064,0.34771 -1.0095,-1.1725,3.4623,1.7099,2.5346,-0.33466,0.32149,0.97668,0.70107,-1.4949,0.14427,0.29363,-0.54636,0.45463,0.87899 2.8044,1.7532,-0.15077,-0.45681,0.89627,0.19304,-0.55643,-0.85191,2.132,0.28527,-0.79976,-0.074871,-0.17713,-1.3655,-1.8004 -1.2088,3.0551,-1.0881,0.66668,-0.39886,1.6169,-0.84589,1.0264,-2.2948,0.46867,-0.81798,0.01804,0.11431,-0.67753,0.19111 1.3862,2.0493,-0.86476,-0.30319,1.1857,-0.92345,-0.31139,-0.56016,1.5174,1.6774,-0.81138,-0.27381,0.79464,-2.0983,-0.41756 -1.7591,1.8386,0.89079,0.79549,-1.2182,0.16494,0.48946,-0.34442,1.2071,-0.17047,0.72488,1.6139,0.38059,0.86221,0.54341 -0.21051,2.2137,1.3462,1.4195,0.055789,-0.26162,0.91001,-0.50291,0.72653,0.97842,-1.278,1.4917,0.098277,-1.3391,0.89922 -4.5048,-0.20049,-1.8825,-1.639,3.5329,0.013205,0.54037,-1.262,-0.97179,-0.64169,-1.221,0.46838,-0.68572,-0.08353,-0.55979 -1.0135,2.5911,1.8444,-0.088854,-0.90554,-0.17119,0.81843,-0.5827,0.63137,0.76718,-0.56806,1.5436,-0.12161,-1.1528,0.99381 1.2755,1.7213,-1.0387,1.212,2.3881,-0.84795,-0.60359,-1.0744,1.1086,0.31133,0.094212,-0.66182,1.4817,-1.5959,-0.11677 -0.5508,2.0603,-0.92327,-1.2335,-1.712,0.88501,2.9344,0.45161,-0.41081,0.76209,-1.1254,0.14656,-0.97334,-0.14572,0.51494 -0.9434,2.1225,1.3616,0.90634,-1.1251,0.44201,0.61138,-0.57592,1.1612,0.9652,0.050711,1.1414,-0.74664,-0.70064,1.1153 2.8406,0.64919,0.38022,-1.3006,2.6253,-2.2058,-1.5822,0.21362,-1.2699,0.97725,1.6535,-1.005,-0.80726,-1.4731,0.46295 -2.0384,2.1348,-1.8914,0.60177,-0.10799,2.359,1.0461,0.12828,-0.58364,-0.092453,-0.29225,-0.30283,0.25852,0.33549,-0.44051 0.8455,2.7077,1.2394,-0.12269,-1.3552,-0.0037057,0.26947,-0.63488,0.97652,-0.18813,-1.1521,1.148,-0.31853,-0.89121,0.52617 -0.14543,3.2193,0.91105,-0.61923,-1.4302,0.57865,0.93744,-0.34729,-0.18824,-0.21997,-1.1405,1.0516,-0.40108,-1.4112,0.87386 -0.11784,-3.6475,3.668,-1.4852,1.7343,0.81774,0.20409,0.19788,0.75438,1.3045,-2.1926,-0.599,0.45617,1.7933,-0.32665 -2.3296,-1.0929,2.4994,-0.27325,-0.16392,0.05296,-0.14131,-0.023058,2.3062,-0.62099,1.175,-0.53057,0.18349,1.1223,-0.14647 3.1955,0.99343,-2.6552,-1.6991,0.48886,0.17587,1.3275,-0.017007,1.3562,0.081247,0.86989,0.33781,-0.5201,-1.2365,-0.81429 -4.061,0.91249,0.49626,-0.87657,0.61483,0.78706,1.7599,-0.36355,0.020198,-0.7216,0.9837,0.5918,-0.58457,0.16951,-1.1652 -2.9898,0.2579,1.5947,-2.1081,0.17272,0.92692,1.0439,-2.708,-0.94364,-1.259,0.2675,-0.8811,0.46462,0.58575,-0.22328 -2.6185,3.1638,0.89858,-0.067561,0.7154,-1.1541,0.38446,2.9381,-0.11935,-1.5036,0.25104,-0.27993,-0.46402,-1.037,0.85511 -2.1107,0.06271,0.72632,2.498,0.47799,0.05471,1.6507,-1.0707,0.93157,-0.0038499,1.0829,0.68242,-0.60893,0.43869,0.35864 -1.8972,-3.9578,1.1698,-0.39395,1.4494,-0.33942,-1.7516,0.50099,1.2153,0.48507,-1.6055,-0.83784,0.36235,1.0724,0.69419 0.11617,2.1236,-0.83842,2.4079,0.85341,0.53071,-0.48393,-1.8689,-0.21459,0.15612,-0.40781,0.65189,0.045883,0.12542,-0.40911 -3.5124,0.038133,0.23228,-1.7985,0.52289,-0.068746,-0.16658,-1.1801,0.026788,-0.80567,0.8251,-0.30845,0.64115,0.5271,-0.42855 -2.6041,-2.8144,0.3033,-0.54037,0.31316,-0.63497,-0.81148,0.1524,2.1125,-0.57758,-0.62277,-1.3604,-0.15893,1.2283,0.17727 -2.3521,0.54476,1.3802,-1.7591,-0.086313,0.82436,1.2694,-1.534,0.1628,0.84576,0.87401,-0.086018,-0.048803,1.1761,-0.26494 -2.8753,-1.3961,0.64734,-1.033,-0.55847,-0.22971,-0.67054,-0.19869,1.9562,-0.74031,0.4253,-0.84079,0.64563,0.27169,-0.062253 -2.0333,2.5408,-1.75,0.76186,-0.70368,1.3152,0.28825,1.6402,-0.029304,-0.43577,0.18518,0.10813,0.54407,-0.75424,0.6991 -2.367,-1.5995,0.19137,-1.4666,0.47181,-0.70315,-0.98092,-1.6751,1.1701,-0.37811,-0.94919,0.92019,1.0956,-0.0348,0.1615 -2.6015,-3.1877,0.24898,-1.0438,0.55627,-1.0482,-1.9829,0.38024,0.1467,-0.12494,-1.1528,-0.070178,-0.0053646,-0.27655,0.42857 -1.6623,-0.0074098,3.7515,-0.75455,1.1351,-1.2181,1.1882,2.2822,-0.16654,-0.9795,-0.22101,-0.44014,1.0356,-2.053,0.3608 -2.4075,-2.5262,-1.2135,-0.44894,0.2938,-0.3985,-2.5713,0.41396,0.75113,0.042708,-1.0588,0.67824,-0.5543,0.22723,1.0906 -2.7985,3.365,1.5831,-0.090122,1.548,0.35095,0.41121,0.9702,-2.0272,-0.74605,-0.28102,0.2578,-0.76011,-1.6617,0.24356 -1.2346,-2.5725,2.6268,-2.3951,0.023512,0.37652,-0.67257,0.019916,0.71378,-0.77038,-0.94115,-0.45758,1.7542,0.17306,-0.54383 -1.7396,-2.3874,1.6748,0.45949,0.71685,0.43769,-0.18905,-0.89996,1.4852,1.0596,-0.79391,-0.76228,0.99401,0.37396,-0.80953 -3.0949,-1.5701,0.59519,-2.3907,0.1182,-1.1128,0.24952,-1.0871,0.39441,-0.67848,-1.0083,-0.47134,1.2807,-0.93928,-0.1956 0.30303,3.8709,0.66092,-1.2801,0.52128,-0.066739,-2.1882,0.08066,-1.1968,-0.44669,0.55748,-0.46369,0.26227,-1.377,-0.49846 1.0178,3.2196,1.4389,-1.4502,-0.15757,0.32319,-1.6538,0.9068,-1.1155,-0.064319,-0.49973,-0.59546,0.12669,-1.0783,-0.086335 1.3844,3.1419,2.7026,-1.9607,0.20447,1.4406,0.37929,-0.51499,-1.4574,-1.8152,-0.19454,-0.23326,-0.99407,0.41474,0.45514 1.7499,2.154,-2.481,-2.7545,-0.14873,1.2242,1.104,2.0578,-0.88676,-0.31662,1.656,-0.97706,-1.2067,-0.65225,1.2653 0.12199,1.3803,2.4628,0.9666,0.79892,0.25732,-0.81572,-0.039819,1.5355,-0.38281,-0.087972,1.3793,-0.41684,-1.027,0.97657 -0.15058,3.2432,3.3561,-1.8335,0.13353,1.2426,0.42967,-0.37826,-2.1445,-0.81166,0.59299,-0.56989,-1.1105,-0.60044,0.41896 3.2064,-0.65051,0.86158,-0.99849,1.2161,1.0882,-1.0187,-0.47084,1.2974,0.96843,-0.11338,0.83332,0.0015605,1.6833,0.81827 -0.99037,2.3136,-2.8113,0.41445,-0.73486,2.08,-0.66139,1.0733,0.27156,0.23504,-0.35074,0.39449,0.48617,0.098269,-0.98951 -4.5955,0.57878,-1.5803,-1.4539,1.9401,0.44932,1.2111,0.033308,-0.51717,0.048515,0.23791,0.03984,-0.58962,-0.43581,-1.2064 -3.2581,1.3657,1.374,-2.1948,0.63201,1.0053,0.50382,-0.38478,-0.83499,0.22781,1.0686,-1.3618,0.50994,-1.3134,-0.18382 4.5687,0.24861,-1.5655,-0.59571,2.3158,-0.045471,0.90705,-1.0255,0.58585,0.27253,0.68731,-1.2432,-2.4589,-0.88079,-0.38752 -2.7186,-0.34949,1.2985,-2.9662,0.18771,0.019214,1.4457,-2.8238,-0.36184,0.11359,-0.8449,0.45851,0.15281,0.0032268,-0.85463 2.9486,-0.47233,2.1091,1.2734,2.5756,3.5258,1.7412,0.33478,-0.90338,-1.2403,-1.0621,1.3777,0.71389,1.92,-0.23781 3.0821,1.6391,-0.28426,-1.0916,3.5028,-1.379,0.089248,-1.9786,-1.2404,2.344,1.2437,-0.80508,-0.92444,-0.6433,1.1663 -2.637,1.1328,2.2466,0.27371,1.1251,-1.5047,0.41549,1.8356,0.71644,-0.90855,0.7956,0.24309,-1.1044,-0.56524,0.87102 3.4519,-0.56192,2.3637,-1.0944,3.4235,-1.0042,-0.16191,2.5405,0.019316,-0.077402,-0.12452,1.8686,0.53156,-0.75497,-0.072106 3.785,-0.75783,3.6861,-1.1066,2.6883,-0.26659,0.23691,2.1054,-0.065344,-1.041,-1.0429,1.9144,-0.15,-0.64494,-1.0858 -3.1955,0.52788,2.3545,-1.4997,0.68598,0.08353,0.82371,-0.44118,0.63888,-0.60963,0.93287,-0.84428,1.2038,-0.070484,0.23015 -0.37876,1.2901,1.1519,2.5467,2.5658,0.25747,-0.79491,-0.75297,-1.4101,-0.7869,-0.23858,0.81716,-0.35438,-1.6382,0.43221 -0.1856,2.2876,2.6786,-1.0662,0.21714,0.54724,0.49732,0.51402,-0.43105,-2.3063,-0.57697,-0.20609,1.4428,-0.1709,0.26019 0.7554,2.3799,1.0701,1.4657,-0.37856,0.28274,-0.62846,-1.589,0.71432,0.51922,-0.74616,1.2353,-0.41223,0.0029848,-0.1854 3.3808,-0.67699,2.4268,-1.5196,3.7872,-1.1184,-0.8591,1.3482,0.04968,-0.45002,-0.10183,1.366,0.70226,0.41626,-0.37305 3.3034,0.64834,-0.74445,0.43173,3.3326,0.7711,0.81842,-1.5279,-0.10061,2.1699,0.89828,-0.87143,-0.065857,-1.2133,1.1006 -1.4249,2.0676,1.9575,-0.11263,-1.0534,0.99401,1.096,-1.0325,-0.31905,-0.22086,0.56753,0.59067,0.65029,-0.68017,0.88681 -0.11788,3.7221,2.0386,-0.92978,0.75394,0.28425,-1.3896,0.084369,-0.33612,-1.2094,0.21086,0.69513,1.1394,0.72091,0.10741 3.0105,-0.012932,3.8628,-2.0207,2.3905,-0.68237,0.52955,2.6873,-0.089173,-0.38981,-0.047892,1.7973,0.69035,-0.65822,-0.11252 -2.6038,0.1902,0.33395,2.0304,0.80475,0.65711,1.3737,-0.13758,1.4501,0.44233,0.87094,-0.26287,-0.71742,0.66311,0.00083872 -2.4165,-0.14799,-1.3984,1.2491,1.1546,0.50976,0.91353,-1.6922,1.0208,1.3637,0.44836,-0.2203,-0.58008,-0.0081627,-0.81105 -2.8399,-0.82149,-0.55444,0.78479,0.39918,0.4426,0.46279,-0.075327,2.3199,0.0053639,0.6579,-0.82036,-1.1439,0.72497,-0.54648 -0.20578,2.0702,1.8088,0.39516,-0.75615,0.76658,0.53629,-0.62529,0.82322,0.33512,0.24433,1.1464,0.40558,-1.1284,0.50062 -1.7905,0.13338,0.9983,0.63641,0.10968,0.47581,0.85944,-1.6445,2.2067,0.71279,0.71059,-0.081098,0.24971,0.42711,-0.42041 -1.5094,-2.7612,-0.35474,0.7639,0.81678,2.1789,-0.78636,-1.4141,0.89619,-0.022893,-0.94525,-0.87661,1.1186,0.78691,0.94292 3.1178,-1.2086,-3.4125,0.28105,0.19732,2.116,2.5599,-0.33072,-0.1855,-1.091,1.5552,1.1035,-0.99975,0.88742,0.41087 -3.1705,-2.5525,1.7028,-1.4615,0.74255,-0.64295,-1.0951,-1.9138,0.60194,0.81868,0.077483,0.16388,-0.74475,-0.48013,-0.24881 -1.6771,-2.7708,0.65894,0.52232,1.1935,0.99678,0.20687,-1.9881,2.0624,-0.016784,-0.81422,-0.685,0.46203,0.28718,0.24717 -1.4728,3.5,-1.2091,-0.17987,1.3673,-1.7612,-1.4135,2.7413,-0.2999,-0.45519,-0.37361,-1.4826,-0.098564,-0.6216,-0.79692 0.51892,1.0995,2.0266,1.0313,-0.11956,0.74354,1.265,-1.7441,1.0484,-0.018232,-1.3412,1.5218,-0.65636,-0.86105,-0.40012 -3.7014,-0.99926,-0.42754,-1.1535,0.63906,-0.47559,0.60507,0.3889,1.705,-1.5123,0.11018,-1.4447,-1.0653,0.94481,-0.48051 5.5651,-1.259,0.59974,-2.2358,3.4766,-0.40698,1.7455,-0.34166,0.77265,0.5081,0.62846,1.5726,-0.59659,-0.44357,-0.65658 -2.2737,-1.5817,-2.9129,-1.0668,0.44448,0.26442,-1.2127,-0.046174,0.25946,-2.399,-2.0949,0.87251,-1.1242,0.17473,1.6486 -2.606,-2.1613,-1.6244,-1.1851,1.2337,0.55515,-2.2547,0.99307,-0.47319,-1.3815,-1.3035,1.2541,-0.11109,0.54613,1.9716 2.7542,0.89895,-0.52335,-0.016161,2.7097,0.18992,0.022019,-2.4771,0.0097096,2.0793,1.1928,-0.41168,-0.18379,-1.0356,0.80101 -3.7027,-1.742,-2.1151,-1.966,0.68659,-0.18904,-0.95458,0.019798,0.6071,-1.8464,-1.6772,-0.0097723,-1.2103,0.82163,-0.074908 -1.1667,3.3768,-0.27049,1.0367,1.6891,-0.25851,-1.321,2.3408,-0.23718,-0.25713,-0.51487,-0.40011,0.49209,-0.45646,-0.45004 4.8201,-1.6039,-0.24243,-1.3898,2.6701,1.3986,1.5834,-0.82679,0.30402,1.9911,0.73876,1.0102,-1.208,-0.78017,1.1568 -3.2376,-2.0004,-1.7379,-1.4593,1.8058,-0.98992,-1.5185,-0.013005,0.28078,-1.7578,-1.2659,1.1235,-0.75762,1.3558,1.6356 -0.35566,1.4381,1.2655,2.1815,0.70227,-0.7858,-0.42677,0.68247,1.9268,-1.2166,0.10588,0.91625,0.40183,0.49951,0.21236 -3.5261,-1.127,-0.76629,-1.1422,0.9955,-0.046855,-0.97137,-1.7492,0.20443,-0.48392,-0.22419,0.92241,0.31423,1.8144,-0.090703 4.0822,0.5383,0.012141,-1.9,1.4801,0.19074,-0.49036,-0.43567,2.5321,-0.020356,0.33037,0.63558,0.11502,-1.0752,-1.2896 2.7677,-0.32954,1.8187,1.0378,1.5064,2.0971,-0.10529,-1.8508,0.24582,-1.268,-1.3747,0.82862,-0.77882,-0.29074,-0.80661 -2.1811,-3.8077,1.8293,-2.1943,1.5385,-1.2733,-1.3169,0.19332,0.50671,0.71003,-2.3119,-0.24198,0.15121,-0.19602,1.0922 -3.8615,0.14743,-2.1928,-0.27804,1.7405,-0.12522,0.46669,-0.24031,0.47089,1.1671,-0.40176,-0.44077,-0.76166,0.83845,-1.3206 -1.7188,1.8473,1.3889,2.4118,1.4589,0.26524,1.0977,-0.67058,-0.52474,1.0169,0.095484,1.2944,-0.78843,-0.31412,0.63923 -0.020942,1.7798,1.6129,0.39452,0.43799,-0.93073,-1.1673,1.1275,-0.13937,-1.4821,0.16118,0.71389,1.0822,-2.322,0.45513 -2.7161,-1.8322,0.12799,-1.9543,0.97342,1.8394,-2.0185,-1.5863,0.0018538,-0.20133,-0.35417,1.183,-0.40352,1.9111,0.71299 -3.0068,2.1703,1.4192,-0.1131,0.32884,-0.52267,0.2517,1.977,0.23661,0.083715,0.70082,0.25844,-0.52564,-1.081,0.74396 2.6313,0.49232,-1.817,0.33729,0.44019,2.3843,-0.52251,-1.7035,0.63109,1.1023,0.6761,-1.0392,-0.74277,-0.17825,0.46809 -2.0159,-2.3418,-2.301,1.2539,1.0412,0.38178,-1.8254,0.15087,0.86681,0.025556,-1.3272,0.0017055,-0.40363,1.227,1.5397 1.9886,0.34703,0.48989,1.1551,1.4826,1.1421,-1.549,-2.8142,-0.00085676,-1.2348,1.5361,-0.7211,0.77717,0.69993,0.049466 2.1502,0.4148,-1.0407,-1.958,0.48031,-0.99746,-0.61001,1.277,1.3916,1.2248,0.82457,-0.25106,1.5887,-2.0108,0.16812 2.6096,1.9492,-0.015012,0.91377,1.3725,0.41876,-1.2196,-2.3606,0.032294,1.2483,0.039726,-0.81424,-0.14929,-0.54842,-0.28298 0.53474,1.6832,3.9574,-0.43357,1.3007,0.019808,-0.81021,0.40173,-0.95699,0.97937,-1.0565,0.31973,-2.3301,-0.23375,0.75923 1.204,1.9232,1.198,-1.8792,-2.4087,-0.40186,0.46545,-0.71179,-1.5035,-0.9196,-0.059031,0.29071,-1.9216,-0.38374,-0.2698 1.5396,3.0828,1.7897,0.85544,0.26094,-0.78012,-0.2223,-1.2311,-0.89948,1.0641,-0.86465,-0.25862,-2.4326,0.6268,0.17436 0.50692,0.83176,4.4481,-1.1706,0.39935,-0.17735,0.78456,0.18248,-0.39556,0.77797,-1.179,0.79925,-1.9428,-1.1916,-0.18818 -2.9942,3.3237,2.4639,-0.65744,1.2355,-0.15497,0.35069,1.0441,-1.1142,-0.66891,0.41667,0.21144,-0.27441,-0.37315,0.048194 -1.1311,0.70512,4.6576,-1.617,1.1737,0.72114,-0.86811,0.31642,-0.66629,-0.16641,0.39467,-0.49652,-1.8275,0.87088,-0.16796 1.1727,0.03355,1.6253,0.19102,0.49592,0.44582,0.52044,0.73464,1.7522,-0.35235,-0.27944,1.4951,1.1946,-0.87677,0.41406 -1.8644,0.43671,1.0719,-2.7494,-0.39115,1.2754,2.1923,-1.702,-0.55082,-0.84456,-0.38133,-0.53658,-0.52764,-1.5772,0.040142 -1.2939,1.9219,-0.5286,2.1893,1.2138,0.58772,-1.1832,2.0114,1.0981,0.29134,-0.43055,0.33778,-0.86547,0.86487,0.18819 -3.9226,0.34046,1.509,-0.42122,1.8714,-1.5397,1.5107,-0.38119,0.4565,1.2515,0.2875,0.08657,-0.46233,-0.26344,0.31366 -3.7104,-0.35427,2.6684,-0.47119,2.3288,-1.1099,0.74782,-0.039983,0.094784,0.52938,0.37127,-0.2317,-1.3941,-0.33026,0.24666 -4.2307,-0.48302,-0.11813,-2.2257,2.1026,-0.6659,-0.79758,-0.51733,-0.88608,1.0272,0.50022,-0.055052,-1.2713,-0.83131,-0.22858 -2.6746,-0.98215,-1.5523,-0.66693,-1.3715,-0.7169,-0.81127,-0.26657,0.34309,0.21225,0.0055491,-0.6603,0.52038,-1.4255,0.0095693 -3.9349,0.86863,1.9614,-1.4871,1.0729,0.76223,1.0335,0.15428,-0.51613,0.21744,0.96626,0.62489,-1.1353,-0.16326,-0.0018513 -3.4182,0.53391,1.7602,-0.20571,1.3806,-1.0446,1.281,1.3354,1.3005,-0.38678,0.78769,-0.87419,-1.1672,0.096499,0.43401 -3.1245,-1.9327,2.7677,-0.9843,2.68,-1.0915,0.48318,0.3696,0.55347,0.521,-0.11265,-1.0787,-0.72485,0.67425,0.88681 3.4241,-2.4443,-0.66443,-2.2546,3.6239,0.32671,3.3116,1.1152,-1.881,0.4205,-0.80517,4.0515,-0.82758,-1.2091,0.37691 0.37711,3.0636,-0.46146,0.11508,0.103,-0.39377,-1.5765,-0.44165,1.2089,0.070738,-0.23749,0.64312,1.2757,-0.25816,-0.26587 -2.6215,0.81286,3.7615,0.029685,1.9376,-2.0246,1.0384,0.91688,0.1831,-0.60301,0.060662,-0.084757,-0.48674,-0.53476,0.79805 3.6441,0.63399,0.89515,0.99546,2.0956,1.0289,-0.98611,-2.1015,0.26615,0.2638,-0.004468,-0.54556,-0.76311,1.1513,0.43575 0.46915,1.8039,-0.01532,2.1469,2.5342,-0.49543,-0.77065,-1.7356,-0.097259,-0.0094493,1.0741,-0.11849,0.049165,0.81764,-0.59945 -1.897,3.1689,0.29219,0.48648,-0.12827,0.21463,-0.28872,2.0272,-0.59732,0.48088,-0.25264,0.093218,0.87192,-1.4448,1.2541 -0.58661,2.1505,-0.1585,2.2299,-0.40111,1.2207,-0.073139,-0.63162,0.81774,0.80588,-0.40361,1.2893,-0.61896,0.50966,0.5696 -2.5003,-1.6391,2.0394,0.8615,2.8521,-0.37108,1.3758,1.061,0.79656,-0.21057,0.74855,-1.752,-1.407,0.97794,0.79987 -0.69606,2.0213,-0.64395,1.7332,2.5309,-0.42956,-0.91868,-0.7102,-0.26142,-1.811,-0.15756,0.015808,0.30421,0.3667,-0.39102 -2.455,-1.909,1.8493,0.31834,4.1013,-0.0029592,1.0693,-0.3333,-0.75504,0.18167,0.36668,-1.5327,-0.59153,0.19116,0.7604 -3.355,-0.26903,3.8267,-0.64327,1.2158,-0.60027,0.29302,0.40972,0.87353,-0.76032,0.851,0.087683,-1.044,0.81302,0.08434 1.8696,-0.1121,-2.7441,-1.0842,1.4579,1.467,2.8265,-0.25324,0.38001,-0.14346,0.44534,3.1333,-0.21687,-0.21372,0.96449 3.9196,-2.1273,-1.7305,-1.0977,1.778,1.7236,2.6838,1.0021,-1.3634,-0.64562,0.59552,0.81548,-0.98651,-1.5972,0.62301 1.2328,-0.6785,-0.37559,-4.1811,-0.19213,0.31882,1.231,1.2838,-1.6111,-1.5284,0.46095,2.0643,-0.45781,2.097,-0.21745 -0.81091,-0.86153,2.7511,2.2294,1.6752,-1.4973,0.63229,1.716,0.48184,-0.84288,-0.33639,-0.47991,0.78644,-0.10559,0.05324 0.98655,4.1401,-0.80994,-2.6274,0.63748,0.57424,-0.32089,-0.87022,-1.1388,0.38712,1.567,-0.35079,0.43878,0.057399,0.13834 -3.3782,1.1155,-1.6797,-0.88318,-0.97837,-0.47381,2.1769,0.88291,0.2799,-1.37,0.10632,-0.67007,-0.22028,-0.72095,-0.14618 2.0258,0.87883,-0.41853,-2.2099,1.1381,-1.1777,-0.39988,-0.11332,1.351,2.2968,1.5111,0.62053,0.31753,-1.6549,1.3886 -4.2686,-0.3467,-1.1029,-1.7243,0.99247,-2.0965,0.8572,0.14849,-0.062473,-0.41308,-0.13979,-0.84508,-0.026322,-0.63392,-0.29659 -1.6589,2.2868,-0.64954,0.87222,-1.4434,2.0459,0.75523,-0.60442,-0.66178,-0.34837,0.87459,0.70961,0.26257,-0.59429,0.34325 -2.4039,0.588,0.94604,-1.0033,-1.0737,1.441,0.70721,-1.2124,0.84107,0.63877,0.99171,-0.27837,0.75121,-0.067655,0.15695 -4.3482,-0.75585,1.3638,-2.222,0.93724,-1.3706,0.38435,0.0045212,0.2108,-0.35544,0.010604,-0.94319,0.30629,-1.5159,0.20757 -4.3859,0.044664,-2.2086,-1.8591,0.75202,-1.9186,0.90914,0.59648,-0.8928,-1.1055,-0.87046,-1.3926,-0.16736,0.096707,-0.46601 -4.4095,-1.1858,-1.1216,-1.8456,0.79431,0.079266,-0.29698,-0.42458,0.12886,-1.5307,-0.12456,-0.57895,0.038727,0.21004,-0.49369 -4.2132,-0.96872,1.5777,-2.5197,1.1168,-0.49973,-0.13965,-0.82182,0.33505,-0.84425,0.23531,-0.54913,0.43683,0.40091,-0.082992 0.40064,2.7651,-0.94429,1.8717,0.84591,0.39104,-1.4259,0.086402,0.23759,1.6373,-0.12909,-0.23145,-0.63102,0.6871,-1.1361 -3.1449,0.52511,0.26131,-0.80732,-0.91048,1.2506,1.2754,-0.31853,0.70438,-1.7029,0.92098,-0.19163,0.27581,0.11216,-0.73508 4.5607,-1.0526,-1.7787,-1.1735,2.5961,0.62772,2.3322,0.058053,0.46573,0.13951,1.2639,1.1265,-2.377,-0.9941,-0.17891 -3.0198,1.2795,-0.55523,0.05051,-0.30044,2.267,1.9343,-0.89876,0.15542,-0.98826,1.0648,-0.12415,-0.016854,-0.11129,-1.345 1.6802,3.3921,-2.4969,-0.65718,0.14847,1.0611,-0.72812,0.20726,-0.86314,-0.68459,-0.33363,-2.5236,-0.63893,-0.72437,0.02226 -2.8007,3.3317,1.5269,-0.18903,0.1429,0.34556,0.79736,0.61962,-0.74437,-1.2549,0.62868,1.3405,0.4291,0.41993,0.085793 -3.19,-0.68902,-2.1018,-1.261,0.7046,0.67959,0.45953,-0.96917,1.4244,-1.9597,-1.2433,-0.59223,-0.37888,0.27751,-0.27266 -3.9465,0.015037,-2.2109,-1.3684,0.42408,0.42104,0.29227,-1.198,-0.25523,-1.2155,0.28182,0.29898,0.3412,0.36991,-1.3288 -2.7176,1.2426,-0.7471,-1.2093,-0.77195,2.1019,1.4637,-0.92773,-1.7316,1.3693,1.0795,0.046271,0.39037,0.20757,-0.71244 -3.4639,1.0747,0.54896,-0.7515,-0.28914,1.668,1.4749,-1.2739,-0.24613,-1.0839,1.6026,0.28573,0.3289,-0.027801,-0.78021 1.338,2.4063,-1.7285,0.093374,-0.37468,0.61546,-1.0759,-0.74657,0.87526,0.74948,-0.37314,-0.0083595,1.525,-1.3357,-1.0205 -0.060548,1.5835,1.5772,2.0757,1.2272,-1.0618,-1.0693,0.62677,1.7746,-0.62939,-0.068437,0.97025,-0.19938,-0.52645,0.75507 0.45829,4.0651,-1.1409,-0.0021826,-0.51848,0.78278,0.48855,0.25564,-2.0264,-0.8559,-2.2122,-1.0701,-0.86022,0.72272,-0.32837 -1.6717,2.861,-0.1653,0.32872,-0.62484,1.4032,-1.139,0.21718,-1.2333,0.0065169,0.57929,1.5508,-0.52803,-0.062102,-1.0332 2.9622,-0.60733,-2.3455,0.57536,1.6785,1.2615,2.6976,1.2092,-1.5573,1.1355,-0.26794,-0.28847,-1.4627,-0.63835,0.27161 -0.90479,2.4949,-0.92709,0.27967,-0.81712,2.3044,2.2001,0.18003,-1.3776,0.12336,-0.8048,-0.086074,-0.56802,0.54486,0.74824 -2.141,3.1718,-0.70521,0.65489,-0.38229,0.53607,-0.42383,1.5954,-0.2167,0.22369,-0.2467,1.3585,0.45033,-0.42085,-0.13638 -1.7676,3.0275,-0.58294,0.11171,-1.2376,1.8454,0.7573,0.78966,-1.0133,-0.26459,-0.64611,1.1725,0.65364,-0.42314,1.0956 1.6838,2.6519,1.625,-0.50107,0.84015,0.41702,-1.2005,-0.72158,0.50855,-0.32237,-0.9024,1.1687,1.4617,-0.85543,-1.6374 1.1661,3.4073,-0.73485,-0.53907,0.028208,-0.13152,-0.016718,0.13501,0.55947,0.37652,-2.4377,0.052797,0.063304,-0.50862,-1.583 -3.2214,1.3907,-1.4158,-0.032161,-0.54199,-1.1374,1.4533,1.6575,0.66131,0.21017,0.36718,-0.48746,-0.067361,-0.56192,0.38845 2.2497,3.7792,-0.33731,-2.0008,0.18953,-0.31887,-0.82336,0.14476,-0.63199,1.0529,-1.0745,-0.72436,-0.56486,-1.0707,-1.8867 2.8147,2.8772,1.1643,-1.4049,0.16967,-0.093366,-1.0536,-0.52218,0.68984,0.098723,-1.6319,0.030938,0.24284,-1.0354,-1.378 1.181,-0.014895,-0.011076,0.10035,2.8284,1.4767,-0.32391,-2.371,0.62264,0.096643,1.7431,-0.92146,0.38402,0.022425,1.8284 2.7809,1.5478,-1.8511,-0.50563,1.9723,-0.068432,1.4435,-1.248,0.28942,0.87208,-0.85836,-0.70845,-0.60753,-1.8544,-0.28473 0.096869,2.548,-0.30455,1.6593,1.2671,-0.60745,-1.0714,-0.44281,0.96257,0.65971,-1.0707,0.72571,0.87637,-0.33386,-0.55478 1.8629,2.8732,-0.10033,-0.025314,1.0236,-0.15189,-0.52146,-1.5389,1.3396,0.89611,-1.4688,0.23285,0.61303,-0.16699,-1.7042 0.62336,3.2442,0.11189,-0.32634,-0.31996,0.69932,-2.1228,-0.6035,-0.033322,-0.26209,0.42781,-0.19699,-0.13202,-0.38867,-0.60692 -0.18762,3.3899,0.74368,-0.47563,-0.46244,0.6612,1.2463,0.52042,-0.090278,-0.1412,-2.0444,1.1433,0.44829,-1.713,-0.056837 0.75589,2.7265,-0.24261,0.825,0.36157,0.28285,-0.069103,-0.31672,0.80976,1.0469,-2.1187,1.0149,0.99098,-1.2559,-0.83556 0.26358,1.7932,-0.89106,1.8952,2.2889,-0.36883,-0.73993,-0.50346,0.18037,-0.093919,-1.4128,0.29205,1.4466,-1.4494,-0.12052 1.3435,-0.77439,-0.60662,1.8796,4.4613,-0.79644,-0.38772,1.4047,-2.2305,-2.1244,0.40418,-1.3206,1.5997,1.042,0.49177 1.1875,3.5401,1.0194,-1.7611,1.9243,-0.80591,-1.3671,0.49871,-0.98572,-2.2339,-0.010531,-1.1099,1.232,-1.919,0.060346 3.7512,-1.6765,-1.5997,-1.7369,0.72176,1.8597,2.7038,0.73373,1.7346,0.97964,0.42534,2.7923,-0.79722,1.2584,0.1714 3.9284,1.75,-0.53649,-3.3535,0.35333,-0.12633,-0.02758,-0.2159,1.0833,0.26929,0.21033,-0.19136,-0.16219,-1.298,-0.80758 -1.7966,-0.4128,3.8598,-0.49874,0.51727,0.75874,-0.25243,0.35541,1.8656,0.093137,1.0423,-0.18793,-0.15543,1.3989,0.15467 3.7737,-0.076991,-2.7484,-3.6187,-0.19421,1.7743,0.99389,1.6278,-0.82359,0.19936,1.7704,1.2546,-0.27653,-0.35978,-0.99706 -1.383,-2.7535,2.6984,-1.799,0.79806,0.88254,0.11685,-1.358,1.7616,1.0742,-1.4028,-0.77133,0.3782,1.4457,0.098397 2.6616,-0.084309,3.9775,1.0086,1.5002,1.4898,1.4567,-0.23259,0.39622,0.38229,-0.62869,0.55425,-0.30834,0.66074,0.052904 -1.3602,2.8515,0.20175,-0.55351,0.082429,1.1418,-0.69963,-0.10824,-0.41396,0.064918,0.69285,0.61632,0.34898,1.5467,-0.6488 2.5027,-3.426,-0.2876,-1.4027,2.2069,2.4937,-0.75508,-0.70521,-0.82566,-0.2272,0.58992,1.4211,2.0114,1.2661,1.0717 2.856,1.6262,0.5415,-0.121,0.94729,-0.15102,0.036973,-0.36678,0.91371,0.044112,-1.5992,0.19328,-1.8994,-1.3659,-1.7125 -3.518,-1.0992,1.6904,-1.6353,0.72569,-0.50165,-0.17986,-0.58953,1.6304,-0.9132,0.73369,-0.59593,0.4724,1.0377,-0.06606 -2.9478,0.44103,1.8732,-0.53588,-0.024885,1.1537,0.63045,0.88777,1.5818,0.3031,1.1703,-0.29148,0.45385,1.4313,0.52758 1.9593,-1.142,0.98165,-4.0328,-1.2063,0.62736,0.19057,0.59111,-2.2213,-1.6344,-0.10542,0.38335,-0.25819,3.1811,0.17533 0.92402,-2.0523,3.0462,0.053541,0.71906,2.7125,2.0604,-1.0848,0.35505,1.4121,-1.0291,-1.1385,-0.39563,1.7535,-0.13096 -2.695,-2.1312,2.0145,-1.1197,0.32803,1.2772,-0.8212,-0.69599,1.413,1.0756,0.094794,-0.87003,0.47787,2.0247,-0.17901 -1.9179,3.4723,0.13435,-0.96431,1.9284,0.68331,-0.50778,0.37757,-1.2653,-1.3704,0.30879,0.65218,-0.020707,1.1298,-1.7325 -1.8468,-1.5931,0.71478,-2.2224,-0.16493,1.0122,-0.5544,-0.90146,1.2615,1.2841,-1.5811,-0.91881,0.77018,0.84742,0.51679 -0.98736,-2.2753,0.71938,-2.3746,1.1306,0.48042,-1.1007,-0.93126,0.10691,1.8708,-2.1761,0.17716,-0.10553,1.907,1.472 -1.2136,-1.6553,1.0912,-2.9547,0.93729,1.1948,-1.7096,-1.3769,-0.77992,0.91179,-1.8976,0.74913,0.28224,2.2767,1.4935 1.2943,4.1489,-1.3277,-1.8822,0.38129,0.83126,-1.3401,0.2699,-1.5172,0.021756,-0.61617,-1.7352,-0.28433,-1.1824,-0.53156 -2.8677,0.68742,-1.9995,-0.59378,0.23989,-0.045997,0.73521,0.74976,0.93414,-0.87796,-0.061465,-2.0184,-0.37172,-0.58774,0.023479 2.5067,-0.66283,-0.14299,-1.1395,3.7643,-1.4449,1.0396,0.23741,0.76733,1.3705,1.8567,1.7725,1.6391,-1.0822,1.1591 0.74441,4.0289,-1.5422,-1.3129,0.90734,1.2469,-1.323,-0.061886,-1.4626,0.19214,0.29343,-1.4246,0.19766,-1.192,-0.69446 3.3524,0.49868,-1.5678,-1.6064,2.2421,-0.10937,2.6904,-0.37796,1.0302,1.3292,0.025462,0.69088,-1.1865,-1.5004,1.1759 2.2069,2.4932,-1.1005,-3.3225,0.48706,-0.909,-0.89493,-0.11206,-0.25228,0.86671,1.8894,-0.74637,-0.61531,-1.6017,0.72648 -0.26396,3.8815,-0.90498,-0.97979,0.76575,0.95794,-2.2386,0.49699,-1.8651,0.74687,0.78279,-0.76445,0.47821,-0.75605,-0.80517 2.181,2.3744,-0.47057,-2.4213,1.5795,-0.97591,-0.10391,-0.5385,0.29904,2.0128,0.97184,-0.71599,-0.83919,-1.3259,1.3072 1.4038,2.9171,-2.4941,-1.9783,-0.3564,1.2788,-0.80478,0.57464,-1.2759,0.09823,0.35522,-2.1198,-0.63687,-0.74488,0.21976 2.0425,2.1559,-1.5184,-1.9641,1.4729,-0.050691,0.4273,-0.037515,1.348,1.2057,-0.023092,-0.012015,1.6881,-1.9673,-0.46794 1.8779,1.2317,-0.083303,1.1551,2.2126,0.41359,-1.1045,-2.8792,0.77663,0.58051,0.98501,-0.23426,-0.013879,-0.035236,-0.0069709 1.1034,3.7067,-0.53483,-1.8045,0.88378,-0.41828,-1.718,-0.2689,-0.52676,1.0803,0.62983,-1.05,0.55183,-1.1161,-0.16424 1.7225,2.8454,-1.3524,-1.5553,0.5656,-0.79947,-0.74445,-0.42199,0.14807,1.8599,0.50389,-1.2732,-0.35123,-1.3495,0.64339 1.1415,3.4615,-1.538,-1.9573,0.51795,0.6531,-1.5658,-0.46821,-0.45802,0.97186,0.85828,-1.1474,0.97341,-1.3156,-0.046328 -1.7097,4.0348,0.42254,-0.13206,1.6414,0.64526,-1.3787,1.5777,-1.2339,-0.96755,0.089229,-0.074088,0.39115,-0.20637,-0.53702 1.4221,4.4487,-0.95035,-1.9156,1.5979,1.04,-1.4233,-0.22721,-1.5087,0.28293,0.50525,-1.7355,0.34069,-0.60821,-0.11733 -1.3674,3.9676,1.3839,-0.13264,0.31181,1.1122,-0.90878,0.27313,-1.1887,-1.2207,0.55344,0.9297,0.43905,0.091792,-0.4003 2.861,1.9244,0.83528,-0.52196,3.59,-0.31866,0.042196,-1.2031,-1.2,-0.37364,-0.9895,-0.98399,0.29572,-2.5966,-0.57557 1.345,3.6,-2.245,-1.0154,0.57959,1.8755,-1.3738,-0.093382,-1.4445,0.025627,0.28178,-2.072,-0.41052,-0.57143,-0.47401 -3.5272,0.35576,0.31449,-0.92712,-0.75275,0.80007,1.1641,-1.0451,0.65405,-1.2965,1.2752,0.10666,0.52227,0.63839,-1.1371 0.93409,3.8283,-0.33418,-1.1264,-0.23449,0.17971,-1.063,-0.1336,0.15468,0.98786,-1.4521,0.025792,-0.0665,-0.4781,-1.1016 -1.9011,3.467,1.6106,-0.65525,-0.3784,1.0576,0.65071,-0.39666,-2.2713,-0.13937,0.39687,0.8704,-1.1729,-0.52851,0.1409 -2.1427,2.6219,-1.5152,0.31857,-1.0556,2.0484,1.28,0.66336,-1.8144,0.73862,0.07386,0.9303,0.15997,0.10378,0.3316 -1.5425,0.043925,2.224,-0.43992,-0.25444,0.42007,0.84517,-0.45505,2.09,0.69395,0.87456,-0.50593,0.40473,0.41265,0.55247 -2.5266,1.1305,-0.17057,-1.6627,-0.18965,1.4696,1.2299,-1.7157,-0.72064,0.34388,0.36342,-0.66621,-0.15322,-2.0299,0.12896 -2.84,-0.97523,-1.9997,-1.0254,0.48264,0.78379,-1.3795,-2.031,-1.0478,-1.6238,-0.5663,2.0927,0.1089,0.089994,0.56422 4.5914,-2.3471,-0.53276,-1.8048,0.81333,3.1309,2.0239,-0.72653,-1.2982,-1.3301,0.33696,-0.3011,0.26644,1.0583,0.56092 -4.045,-0.0011526,-1.3693,-1.5343,0.39271,0.35471,0.66454,-0.28875,0.73298,-0.89244,0.53797,-0.39353,-0.068839,-0.54783,-0.92659 -2.2704,0.2557,0.42068,-1.2873,-0.77836,0.15225,1.1719,-2.8088,0.9379,1.2062,-0.24417,-0.1506,-0.019085,1.074,-0.6311 -3.0619,0.83187,0.797,-0.60908,-0.85239,0.95085,0.81372,-0.082026,1.098,-1.2237,1.7682,0.39452,0.17665,0.17107,-0.55854 -3.1852,-1.2537,0.56343,-1.8155,-0.37002,0.32758,-0.76512,-2.4351,0.22486,0.54112,0.31417,0.60905,-0.14739,1.2672,-0.8156 -0.7506,1.1577,1.1163,2.845,1.9231,-0.68752,-0.14494,-0.05095,0.41959,-1.3924,-0.56494,0.40915,-0.034881,-1.1936,1.2512 2.0851,4.2356,0.3847,-1.6395,0.22696,0.51664,-0.97154,-0.86603,-1.2937,-0.30252,-0.492,-0.46535,0.21537,-0.32746,-0.76362 -0.82384,0.32258,2.2557,-2.6274,1.6556,2.4156,1.5259,-0.48088,-1.8054,-1.2447,0.73312,-1.3519,-0.57077,0.2736,-0.28571 2.6626,-1.6046,-3.6073,0.38033,-0.93155,2.7905,2.2028,0.43844,-0.98979,-1.2095,1.0177,0.97645,-0.33265,0.7708,0.5591 -1.0353,-1.0335,1.5467,-1.7241,-0.95294,0.53233,0.48397,-2.6693,1.3559,0.9435,-0.49325,-0.72111,-1.0073,0.99938,-0.40758 -1.492,1.1383,2.4584,-0.59248,0.12191,-0.4601,1.2919,-0.77196,1.5718,1.3343,-0.21025,-0.44616,-0.14912,-1.0804,0.44601 2.4541,2.3014,1.6174,-0.52428,-0.085022,0.48038,-1.3065,-0.66736,1.3448,0.50722,-1.0409,-0.050922,-0.74177,0.67137,-0.41564 -3.4154,-0.46351,0.39731,-1.2065,-0.1944,0.6289,-0.041233,-1.7306,0.93234,-0.25237,0.9122,0.3736,-0.17808,1.1624,-1.03 -2.3343,1.9421,-2.434,0.52175,-1.1618,1.345,0.82076,1.7425,-0.13214,-0.21124,-0.057366,0.029312,0.59336,-0.96825,0.63969 -0.9963,0.77769,1.2517,-1.4236,-1.5157,-0.3095,1.8588,-2.1442,0.69228,0.82152,-0.18592,-0.7946,-1.0961,0.43567,-0.41043 -2.0916,-2.4332,0.93205,-2.0758,0.24395,-0.87876,-0.9495,-1.4642,1.1399,-0.084742,-2.0143,0.62096,0.72359,-0.50843,0.01879 0.20417,2.2184,-0.76275,1.3184,0.013794,-0.33223,-1.1664,-1.3017,1.5571,0.39334,-0.16911,0.79849,0.85259,1.0334,-0.87765 2.8542,2.9599,1.143,-0.98413,-0.30352,-0.47594,-0.98305,-1.0192,0.73402,0.13179,-1.0398,0.051179,-1.6277,0.49802,-1.1389 -3.5562,-1.1654,-0.92668,-1.3747,0.31326,1.1498,-0.59162,-0.58259,0.4905,-1.8043,-0.15688,-0.20088,0.32555,-0.21447,-0.17729 -1.194,3.3356,0.62724,0.2451,-0.97568,0.22546,-0.25702,-0.46997,-0.31975,-0.40961,-0.44578,1.8394,0.58416,0.67368,-0.082408 -1.7644,2.8418,-0.44567,0.71857,-0.11113,-0.060715,-0.78946,2.1207,-0.70948,-1.0939,-0.54254,-0.6392,0.70635,-1.3453,1.1304 3.4074,1.3433,-0.83048,-1.9641,-0.19929,0.43681,-1.0335,0.28443,1.7813,-0.26441,0.30181,-0.34246,-0.84665,0.04877,-0.9578 -1.0413,1.8575,1.7945,-0.04422,-0.2003,-0.83398,-0.32839,2.2233,0.63056,-1.519,0.10342,-0.2759,1.0915,-0.81807,1.9735 3.7051,-2.1328,0.39811,-1.737,3.2804,2.2594,1.3765,-1.6173,-1.2407,-2.5378,0.18186,0.68243,0.62812,0.794,0.11206 2.8062,-1.1817,-1.5151,-2.009,1.4964,1.5692,2.153,0.42559,-1.737,0.81255,-0.63698,4.0119,0.31065,-1.6275,-0.2426 -3.4994,0.14354,0.42825,-2.2068,1.1697,1.4694,0.32771,-1.8108,-0.085246,-0.62266,-0.050232,-1.1164,0.86991,0.087552,0.18006 -0.7518,3.2572,0.66929,0.19117,0.84398,0.11622,-2.0479,1.2292,0.68262,-0.85321,0.53417,0.61014,0.72459,0.18364,-0.40701 -3.9145,-0.36472,-2.4449,-1.3604,0.66964,-0.32482,-0.22499,-0.72308,-0.33897,-1.3007,-0.15162,-0.38779,0.61311,-0.43097,0.082781 -3.1179,-0.081638,-2.6258,-0.91685,-0.60165,-0.041133,0.34244,-0.24395,0.56898,-1.4019,0.0077814,-0.73161,0.20243,-0.39601,-0.27539 2.0196,2.5835,0.49655,-3.8919,2.3643,-0.66713,0.28793,1.0188,-1.3651,-1.2525,1.1326,1.0791,-0.41583,-0.77328,0.95577 -2.7567,2.1285,0.3739,0.87431,0.98272,-0.28135,1.2056,0.52358,-0.54617,2.3515,-0.12822,1.2252,-0.50063,0.14897,0.53624 1.8356,2.6474,-0.17684,0.78963,0.79893,0.70461,-1.704,-1.5968,-1.1489,0.83652,-0.16849,-1.2031,-0.71949,-0.26656,-0.088237 4.0353,2.6149,0.58958,-3.054,1.6173,-1.0686,-0.32927,-0.38095,0.41891,0.8095,0.57516,-0.31943,-1.4108,-1.0922,-0.80219 -3.1468,1.3826,-0.44239,-0.44758,-0.36765,0.50844,0.94138,1.5149,0.88996,-1.3864,0.85936,-0.35407,0.16245,-1.1928,0.87175 -3.9666,0.3726,-3.0278,-1.0639,1.3827,-0.29031,0.12555,-0.23301,-0.80953,-0.59921,-0.59944,-0.73265,0.53298,-0.52723,0.12936 2.0031,1.9148,-2.7875,0.40943,-0.37609,0.64625,0.15754,-1.0008,0.56937,0.4795,-0.86764,-0.61114,0.069092,-0.85313,-1.1608 -0.9461,3.4269,-1.1743,0.18742,-0.61496,1.3306,-1.1755,0.3467,-0.70452,0.52759,-0.43541,0.53193,0.88098,-0.47025,-0.66224 -2.9583,2.1605,-1.124,-0.18656,-0.70155,0.77947,1.9557,0.70587,-0.73742,0.76905,0.40299,0.65029,-0.06944,0.48929,-0.87711 -3.223,-0.59636,0.58599,-1.4567,-0.14421,0.31828,0.23415,-0.55086,1.4375,-0.95111,0.91437,-0.78229,1.0107,0.0027849,0.012145 -2.3258,-0.69227,1.0235,-2.1668,0.11965,0.23097,0.67835,-0.66852,0.71554,-0.73209,-0.6606,-1.3526,1.8693,-0.88377,-0.25564 0.096729,0.12377,-1.1263,2.383,0.87241,0.54901,-0.5277,0.75162,1.1883,-2.7588,-0.49295,0.16578,-0.58778,0.7223,0.96174 -0.57526,-0.27272,2.2595,0.77861,0.63695,-0.38395,0.81777,1.6642,0.72775,-1.4361,0.030722,-0.26588,2.3644,-0.79924,-0.58169 4.4104,0.73565,1.2747,-1.1849,1.0557,0.93352,-0.52462,2.2021,0.48762,0.41891,-1.2995,0.75893,-2.4845,0.22813,-2.0436 3.0475,0.12653,0.31638,-0.15723,2.7081,-0.22491,0.26838,-0.024108,1.9244,-0.90636,-1.213,1.2168,0.0080983,-0.13562,-1.0171 -3.779,-0.13042,-2.5748,-1.6158,0.17457,-1.6143,0.083413,0.17899,-0.47773,-1.2284,-0.57181,-0.76128,-0.36251,-0.36241,-0.15048 -1.7193,2.8519,2.4899,-0.39276,0.52954,0.30134,-0.31288,-0.054791,-0.65959,-2.2531,0.40352,0.5162,0.48775,-0.04731,0.57811 -2.5466,-0.78523,1.0403,-0.76671,0.35485,-0.71546,0.50719,0.15088,1.8885,-0.10972,0.14311,-1.5121,1.233,-1.049,0.29481 -2.212,0.97055,1.1188,0.64699,-0.21178,-0.43387,1.4337,-0.076543,1.2384,0.84553,0.35673,1.0516,0.76579,-1.8504,0.33327 -0.84146,0.29842,4.8913,-1.8087,2.0636,-1.1177,0.80618,1.4971,-1.1826,0.14527,-0.24208,-0.73229,-1.3579,-0.81281,0.41197 0.30057,-0.68529,3.5057,-0.37626,0.82447,0.63185,0.22669,-0.50983,0.60326,0.33541,0.40366,-0.55632,-0.11178,1.5008,0.30538 -4.3781,-0.268,2.1651,-2.8133,2.4198,-0.5713,-0.015438,-0.029661,-1.4188,-1.2737,-0.079975,-0.65866,-0.68366,0.48464,0.17768 -2.6263,1.4396,3.8739,-1.3532,2.5017,-1.804,0.14178,0.34423,-1.2425,-0.69667,-0.45037,-0.58671,-0.98827,0.036602,-0.10891 -2.6968,2.1379,3.0512,-1.4583,2.4116,-0.83894,0.041178,0.76609,-1.962,0.53425,0.4819,-0.97758,-1.2558,0.66222,-0.41535 -0.47991,2.5797,-0.85436,1.6459,1.0891,0.7876,-1.3465,-0.22861,-0.12537,1.2151,0.4129,-0.1006,-0.72706,0.26683,-0.96429 3.4024,-0.0050217,-0.81863,-0.42365,0.75856,1.6558,-0.18639,-1.3491,0.93166,-1.0433,-0.24116,-2,-1.0496,0.39479,0.23682 -2.631,0.60446,3.7727,-2.4426,2.8631,-0.52168,0.34362,0.95715,-1.573,-0.0083668,0.53206,-0.71181,-1.3725,1.2432,0.127 1.4063,3.7857,-0.84832,-1.5007,-0.27083,0.49687,-1.3911,-0.41786,-0.1859,0.66811,-0.83475,-0.84863,0.64584,-1.1704,-0.96514 -0.079189,2.5334,-2.1082,0.088375,-0.062845,0.82371,-1.6706,0.048901,1.1947,0.60479,0.72531,0.41004,1.0738,0.65354,-1.1306 0.92155,-0.12832,3.945,0.078902,0.25767,0.43,0.21448,0.098328,1.6751,-0.70677,-0.78914,1.299,0.59207,-0.39588,-0.55855 0.60861,-2.549,3.2144,-0.0050079,0.49435,2.2215,2.3808,-1.2203,0.86599,-0.21081,-1.3526,0.27603,-1.0176,0.0033776,-1.5432 -1.2981,3.3492,0.78221,0.5799,-0.83973,0.72684,0.0042042,0.60106,-0.63205,1.7279,-0.080345,1.2951,-1.2215,-0.032929,0.081316 -0.043929,-2.2263,3.7145,-1.4177,0.16195,1.2198,0.7507,1.0027,1.8678,1.2022,-1.5661,-1.1074,0.63974,0.50565,-0.46351 -0.86319,0.54899,-0.21597,-1.5989,-1.8977,0.66629,0.5315,-1.579,-0.70538,0.62641,-0.46307,0.42766,-0.5744,-0.19874,-0.962 -1.3398,-2.6232,2.5586,-2.606,0.46523,-0.0071539,0.39728,-1.0941,1.19,0.15311,-1.8841,0.00040356,0.50258,-0.57952,-1.5683 -2.266,-1.9277,-2.1315,0.14218,-0.0018538,0.49146,-0.26325,0.35407,1.7766,-0.34571,-0.40669,-1.1645,-1.1745,0.48829,0.17116 1.6536,-0.55738,0.35402,1.5312,-1.3722,3.1881,0.86228,0.095977,0.38712,-0.28015,-1.0457,-0.74692,-0.54578,0.96595,0.59067 -0.6632,3.115,-1.4596,0.066385,1.2554,-0.41185,-1.6802,2.0384,0.39721,-0.021346,-0.12034,-1.5266,1.4952,-0.58931,-0.074925 0.62414,2.7049,-2.332,-1.8779,-0.78826,1.3388,0.15802,-0.23224,-1.4717,0.21754,0.49209,-1.3957,-0.12396,-0.055727,0.44072 1.7983,-1.9228,4.0984,0.17822,1.1773,1.6657,0.97873,1.1641,0.73522,-1.2534,-1.2935,1.5593,-0.20041,0.12152,-1.29 -1.2152,-0.60006,3.6657,-0.19908,-0.19149,-0.43008,1.0724,-0.91956,1.9347,0.073763,-0.29833,0.62605,0.107,-0.49463,-0.019168 0.53789,0.19771,3.58,-0.42826,0.17088,0.35988,1.6898,-1.1548,1.5089,0.40014,-0.63228,-0.011941,-0.73081,-1.0125,-0.072902 -2.0327,2.9818,-0.53243,0.95989,0.30508,0.051628,-0.47193,2.9453,0.11339,-0.022508,-0.33657,0.32799,-0.14307,-0.89376,0.32365 3.6078,-0.10661,-1.1396,-1.8413,0.24509,0.71586,0.83474,-0.66872,1.5133,1.4476,1.2392,-0.038438,-2.2811,0.13412,1.8012 -0.49035,0.60301,4.1073,-0.11174,0.1382,-0.64076,1.0748,-0.38443,1.3596,0.087819,-0.82561,0.77888,-0.52135,-1.3638,0.4634 -1.0042,0.94585,2.7336,1.4642,-0.0098904,-0.31802,0.79693,-0.98683,1.571,-0.20126,0.29947,1.2435,0.092609,0.12246,0.55951 -0.85747,-1.1564,3.709,-0.7405,0.60138,-0.068594,1.5666,-1.0918,2.016,0.64254,-0.76933,-0.32152,-0.47823,-1.1567,0.22117 -0.2908,1.4776,3.927,0.22512,0.48686,-0.9643,-0.22241,0.27102,1.437,-0.31492,-0.47794,0.96325,-0.30028,-0.82445,0.87167 2.7977,0.55524,-3.4711,-1.0948,0.35889,1.2345,1.7307,1.4451,0.51511,0.40885,1.0601,0.089104,-0.55545,-1.4965,0.28584 0.13234,0.29856,4.472,-1.1254,-0.074655,0.36729,0.50519,0.05292,1.8392,-0.5283,-0.39953,0.77839,0.091482,0.25198,0.54083 2.5462,-0.92729,3.9183,-0.098077,0.27525,1.0252,1.4809,-0.19953,0.6587,-1.0619,-1.3454,1.3891,-1.4164,0.28153,-1.4443 2.41,1.19,-3.0854,-0.92811,0.25259,0.012481,1.303,0.45653,1.2006,1.3749,0.29454,0.34456,-0.74711,-1.247,-0.81464 -3.0865,0.31881,1.4977,-1.8318,0.18804,1.1346,0.95462,-0.70319,0.021721,-1.508,0.80257,-0.97102,0.85988,-1.5022,0.96551 1.2918,2.2023,-0.40165,-0.42854,3.6307,-2.5047,-1.293,1.5865,0.31549,0.69658,1.0576,-1.3471,1.3419,-0.97596,0.16997 -3.3882,0.30233,-1.075,-0.64186,0.52286,1.2068,1.0749,-0.32471,0.86789,-2.013,0.61067,-1.1094,0.45366,-1.0156,-0.55908 -1.7236,0.75323,1.5766,-2.1161,-0.47187,1.7307,1.3718,-1.1759,0.61556,-1.612,0.24621,-1.0244,0.71853,-1.2067,0.55083 -0.078191,2.415,-1.2444,0.37852,0.013834,0.091622,-2.2716,0.5409,1.5371,0.77187,0.449,0.61395,0.90358,-0.30233,-0.62172 -3.4354,0.24379,-0.46192,-1.4714,-0.17877,0.03284,0.83709,-1.1333,0.37618,-0.42871,0.34367,-0.96361,1.1541,-1.2609,0.40812 0.22527,0.51889,2.6753,-0.93112,-1.2302,1.1222,1.4071,-0.20119,2.2429,-0.67493,-0.78629,0.5135,-0.47438,-1.1348,0.25747 -1.0284,-0.3796,-0.23593,1.0973,-0.85547,1.4511,0.29166,-0.095812,2.5053,0.42535,0.52524,-0.46741,1.1525,-0.37473,0.24045 -2.1646,0.17762,-0.0057035,1.4018,0.69929,0.25867,2.1378,-1.3196,0.81664,1.3146,0.35688,0.44651,-0.11613,-0.96287,-0.50911 -0.21711,1.4892,-0.7063,2.4854,0.38039,0.75242,-0.56554,-0.72126,0.84761,-0.35487,-0.40181,0.93056,0.47896,-0.83921,0.64707 -2.4006,-3.3201,-0.26184,-0.10565,0.79469,-1.6184,-1.0937,-0.34106,1.3032,0.088646,-1.0991,-0.60437,-0.058715,-0.73635,0.21445 -0.93753,-0.33112,2.7506,-0.66003,-1.007,0.88882,0.71396,-0.57584,2.5879,0.22308,-0.15781,-0.12984,0.12127,-0.42257,0.99732 1.1739,4.2052,-1.0052,-1.027,0.0062597,0.75592,-0.76483,-0.80208,-1.0826,-0.054129,-1.2446,-0.86454,0.31047,-0.57338,-0.87751 -1.4405,-0.080101,1.9499,-3.0284,-0.71809,1.2412,1.3865,-0.92076,0.79078,-1.1649,-0.27748,-0.92876,-0.17229,-0.96694,0.39379 -2.6442,-1.4643,0.84831,-0.23586,-0.12602,-0.10553,0.01888,0.69631,2.4461,0.012571,0.59385,-1.1886,-0.00075988,0.029901,0.71791 1.4731,0.091401,-1.6741,-0.56105,0.13497,1.2669,0.5821,0.68473,-0.19986,1.1933,0.70986,0.90332,0.86659,-1.6864,1.1785 -3.5196,-0.52324,-3.1016,-0.87565,2.0691,1.4603,-0.16901,-0.54665,0.33629,-0.53805,-1.4918,0.81974,-0.14336,0.84484,-0.59118 -0.70122,0.76346,1.8685,1.0255,0.23758,0.83663,-1.2176,1.5955,1.7016,0.15538,1.3111,0.96114,-0.83829,0.98086,0.3723 -1.9183,-2.7113,0.30153,-0.12137,0.17252,0.054527,-0.79344,0.11511,2.279,0.42926,-0.89097,-1.1269,0.5993,-0.11634,0.41542 -0.4069,1.5764,-2.701,1.1206,0.16578,1.7351,-0.4599,-0.7297,-0.028812,1.451,0.83141,0.14398,-0.12063,-0.059919,-0.33534 -0.40479,2.2316,-1.5356,2.1752,-0.49835,1.0874,-0.85514,-0.51988,-1.0171,0.24153,0.13214,0.30381,-0.82418,0.97042,-0.7166 -1.4712,1.5682,0.79273,-0.37868,-1.2874,1.3953,1.4348,-1.136,0.7853,0.49388,0.40122,-0.087172,0.524,-0.50968,0.31083 1.254,3.533,-1.3483,-1.852,0.10623,0.52695,-1.2717,-0.62127,-0.39603,1.467,0.68494,-1.0507,0.5898,-0.81481,-0.027422 -3.0201,3.4055,0.40385,-0.0088589,0.2405,1.6924,1.2872,0.82032,-2.2607,0.48121,0.25272,0.88608,-0.80862,-0.61649,-0.51058 4.3345,-1.5454,-0.095574,-3.2795,2.384,-0.57354,1.9121,-0.12474,1.0293,0.43662,1.1877,2.0111,-2.0352,0.90906,0.53768 0.47558,2.6951,-0.048241,1.2521,1.5181,-0.88456,-1.9914,0.031028,1.3417,0.53369,0.10784,0.22084,0.65243,-0.9929,-0.7831 -1.7841,3.9099,1.3551,-0.64709,-0.6986,0.73543,0.8785,0.063263,-2.1021,0.90142,-0.30567,0.79701,-0.824,-0.065947,0.44868 3.1372,0.15275,-1.5817,-0.79814,1.1145,-0.33447,1.2161,-0.56939,0.051294,2.1058,0.77055,-0.40658,-2.4297,-1.2532,1.6729 -3.9479,0.94601,0.55553,-1.6476,0.66546,0.18067,0.90129,-1.7454,-0.7951,1.4733,0.7083,0.24328,-0.34482,0.70933,-1.0747 -3.7879,1.2893,0.43656,-0.58954,0.23074,-0.96265,1.4757,1.819,0.50778,-0.83111,0.84477,-0.72572,-1.0773,-1.4292,0.095679 -3.742,2.0037,0.75056,-1.5101,0.35603,0.92471,1.7954,-1.1669,-1.5599,0.98464,0.89643,0.36012,-0.56081,-0.1934,-0.65992 0.56685,3.271,0.36386,-0.70577,-0.19316,0.63355,-2.0157,-0.87797,0.65412,-0.56018,0.22136,0.70442,0.90802,0.58447,-0.41801 -2.3613,1.0176,0.80914,-1.5262,-0.76712,1.2943,1.1182,1.3386,-1.8446,2.1693,0.3194,0.15135,-0.26257,-0.49275,0.92868 -3.4652,0.22661,2.0283,-2.8316,0.86139,1.151,0.59168,-2.0733,-1.3655,-0.72417,0.71786,-0.51821,-0.62188,0.6656,-0.38923 -3.4409,2.0327,1.1435,-0.092551,0.482,0.3015,1.2184,0.23032,-0.63599,1.9837,0.85423,0.76921,-1.3392,-0.18432,-0.3597 -1.0415,-1.8179,3.7255,1.3304,1.2124,0.027178,-0.013539,1.4527,0.46484,0.56092,-0.068852,0.35336,-0.8079,-1.7384,0.62168 -0.98237,3.4868,2.2378,-0.75202,-0.42371,0.37484,-0.18086,0.5062,-0.35997,-0.19955,0.56458,0.70061,0.38361,-1.4957,0.99699 -1.4824,2.8002,-1.3031,1.0858,-1.0861,2.6594,-0.35528,0.56154,-1.0437,-0.37071,0.0041461,1.1318,-0.0017342,0.19134,-0.80598 -2.4712,1.8264,0.51511,0.37627,0.54326,1.7551,0.49922,2.1739,0.8131,-1.5301,0.41984,-0.27045,0.54737,1.2441,-0.3527 -1.7327,-0.16205,3.6391,-1.4848,0.14467,0.084056,0.60677,-0.037188,1.4817,0.60385,0.17989,-0.78743,-0.15341,-0.39977,0.86343 -3.0237,-0.58347,2.9902,-1.2942,1.2049,-0.29118,0.57235,-1.2974,0.53099,1.1281,-0.065362,0.26532,-1.151,-0.19339,0.51724 -1.6427,1.8887,-1.1006,2.4404,0.46265,0.46536,1.278,-0.15652,0.22935,0.63846,-0.27696,1.377,-0.43057,0.68686,0.27338 -4.4957,-2.1116,0.55079,-1.9441,1.7445,-0.59533,-1.2279,-0.2295,0.12207,-0.3292,-0.69039,-0.14157,-0.58044,1.0776,-0.16569 -2.243,2.0516,2.7696,-1.8703,-0.015663,0.40397,0.65932,-0.17478,-0.12049,0.57951,0.86544,-0.75675,-0.19442,-0.90474,0.25216 -1.6739,3.1591,2.5935,-1.3751,-0.38536,0.64556,0.90481,-0.70868,-1.707,0.11099,0.22049,0.16792,-1.639,-0.59014,0.26794 4.4755,0.95859,0.88564,-1.7372,2.0091,-1.8604,-0.48593,-0.59423,-1.3016,0.91786,1.9707,0.0017541,0.42963,-1.0949,0.027682 1.5015,1.5775,-2.4303,-2.4612,0.60828,1.2924,1.3165,1.739,-0.96264,-0.17601,1.1384,-0.82328,-1.3549,-0.63677,0.98304 -1.1201,3.3313,-0.55115,0.14632,-1.0063,1.0839,0.30587,0.33844,-1.969,0.74281,-1.4515,0.22503,-0.23371,-0.54692,0.41779 -2.0796,1.3807,0.71853,-1.1938,-1.4273,0.53272,1.6414,-1.4375,0.095919,1.1817,0.44845,0.37207,0.59049,0.48498,0.12852 -1.4434,3.7008,1.1806,-0.32241,-0.58678,0.5788,-0.93062,0.74136,-1.221,0.05719,-0.24092,1.0008,-0.17874,-0.94474,0.279 1.9016,-0.81528,3.78,2.1412,2.1114,1.0309,0.75757,-0.24595,-0.24327,-0.61396,-0.76168,0.71657,0.60084,0.71997,-0.29168 -2.3788,1.2189,-1.0213,1.134,-0.89109,0.68799,1.0932,0.2578,1.3451,0.75393,0.51879,1.0408,0.096685,0.74043,-0.025431 -3.4275,-0.59378,-1.0223,-0.44964,-0.47446,0.06609,0.79682,-0.9016,1.4801,-0.49791,0.97021,0.013187,-0.25086,0.97851,-1.4207 -2.8805,-2.218,-1.597,-1.0593,0.50316,0.67273,-1.7149,-0.0020107,0.95097,-0.023158,-0.84532,0.466,-0.37154,1.3529,0.50155 -3.92,-0.92715,-1.0504,-1.6434,0.60319,0.2976,-0.03634,-1.1292,0.56509,-1.1173,0.41445,0.21616,-0.16276,0.9643,-1.0447 1.6386,3.2059,0.050838,0.024438,0.035842,0.31933,-2.2487,-0.61905,-0.14575,0.68564,0.40088,-0.77691,-1.0508,0.5878,-0.41834 -3.1072,-0.61708,-3.2051,-0.65491,1.1953,0.72174,-0.8573,-1.2556,0.0905,-1.4164,-0.96083,1.6898,-0.090676,0.57066,-0.065809 -3.359,-0.40224,-0.97285,-1.7617,1.3194,1.4425,-0.84822,-2.0562,-0.76303,-0.68712,0.053313,0.64699,-0.37309,0.84853,-0.80141 -2.5975,-0.94978,-0.49743,-2.0475,0.030516,0.013436,-1.1834,-2.7377,-0.47202,0.15978,-0.44161,1.1059,-0.28848,1.3593,0.092398 1.2403,0.85894,-1.6259,1.0448,1.7377,1.5948,-1.266,-1.9181,0.086451,0.16757,1.5024,-0.51858,0.6484,-0.6287,0.27161 -2.7619,1.7057,-0.2834,0.46177,-0.047588,-0.94345,1.2737,0.56389,0.86539,0.99555,-0.19952,1.2896,0.51434,-0.41982,0.62084 -1.148,0.0162,-0.072697,1.912,0.51194,1.5402,0.43101,0.93495,1.016,-2.903,0.51062,-0.44727,-0.389,0.5313,1.464 2.8501,-0.78176,-2.0905,0.16048,0.47698,2.0159,1.4731,0.5433,0.75116,2.1941,-0.1781,0.3617,-1.0024,-0.24849,0.78053 2.3202,0.40721,0.68428,-1.2757,3.7843,-2.5921,-0.5044,1.5389,-1.2298,-1.8756,1.0787,-0.70326,2.1251,-1.5587,-0.3509 -3.473,-0.93261,-1.9098,-1.1832,0.7169,0.023953,-1.4101,-1.676,-0.3907,-0.64783,-0.046671,1.8839,-0.46434,0.59955,-0.83909 2.2542,-0.2854,0.747,-4.1965,-0.92171,0.18197,0.25017,0.19507,-1.1356,-2.0433,0.091024,0.76253,-0.70207,2.1162,-0.41821 -2.9998,-0.35284,-1.9088,-1.0512,1.0183,0.51127,0.10902,-1.3926,0.90327,-0.0092449,-0.17926,0.43634,-1.3442,0.819,-1.4382 1.6892,0.028894,-0.88479,-3.8531,-0.47502,0.32039,2.0446,1.1279,-1.5642,-1.6615,0.16596,1.7097,-0.44493,2.3841,-0.43389 0.42276,1.5321,-0.65503,1.8063,2.5066,-1.0555,-1.7717,-0.19777,1.3715,-0.21428,0.48866,-0.80018,0.16042,-0.31503,0.14015 -3.3117,-1.4842,-1.1756,-1.36,0.54104,0.40425,-0.91438,-1.3379,0.44159,-1.5135,-0.06921,0.39594,-0.012674,1.4623,-0.37055 -2.5879,-1.1111,1.8638,-1.3691,-0.076567,1.8566,-0.025468,-0.80683,0.56521,-0.014792,1.1641,-0.42783,0.0031321,2.5521,-0.77937 0.42883,3.6503,-0.73787,-0.43228,-0.79239,1.954,-0.85717,-0.23757,-1.8952,-0.14717,-0.71874,-0.79634,-0.75744,-0.40615,-0.53187 -3.4497,-1.6716,-1.2424,-1.1525,0.56151,0.47637,-1.0023,-1.1735,0.89049,-1.0543,0.010451,0.56702,-0.48388,1.5322,-0.57154 -2.439,-2.1155,1.8936,-1.2453,0.67781,1.4141,-0.8792,-0.60935,-0.096843,-0.2043,0.38362,-0.65117,-0.057577,2.7241,-0.10523 -2.6493,-0.10683,0.96643,-1.0488,-0.53099,1.5646,0.21717,-0.62084,1.7156,-0.53194,1.1693,-0.44471,0.51982,0.039489,0.029985 -2.5081,2.5294,1.1079,0.28533,-0.098027,0.68799,0.84321,0.34498,0.13262,1.3427,1.1362,0.64544,-0.53541,-0.070022,-0.31913 0.46139,1.2659,0.29366,1.8313,0.75401,-0.48089,-0.92055,1.3016,1.0722,0.46663,-0.68763,-0.13855,0.097488,-1.4764,1.3798 1.1727,3.9776,-0.0016807,-1.2666,0.033779,0.17889,-0.81163,-0.03704,-0.42255,1.2902,-1.9411,-0.29282,-0.11785,-0.5669,-1.2465 -3.5942,-1.3793,0.57467,-1.3581,-0.21782,1.8733,-0.60538,-0.29521,0.41271,-0.20209,0.42728,-0.79279,0.57434,1.7419,-1.0935 3.9511,-1.6948,-1.7752,-1.2267,1.9915,2.3626,2.1123,-0.32766,-0.55746,0.016131,1.0802,2.0602,-1.8228,-1.018,0.22925 -2.8443,1.1958,0.11663,-1.8647,-0.19833,0.35179,1.0493,-2.0774,-0.27662,1.5084,0.13825,0.034994,0.40549,-0.39569,-0.63427 -2.4038,2.2536,1.8658,-0.65073,-0.27838,0.41373,0.44896,1.0718,0.10775,0.055269,1.0409,-0.2765,0.58771,-2.0643,1.076 -2.0287,1.6835,1.6297,-0.43881,-0.43779,0.83421,1.0664,-0.38237,0.70115,0.27435,0.54816,0.56539,0.81339,-1.2369,0.66512 -3.055,1.3133,-2.0196,0.1783,0.46503,2.0112,1.6754,0.43726,-0.048259,1.2891,-0.18776,-0.42607,0.0248,-1.4537,-0.79481 -0.61855,0.88977,2.3289,0.52651,0.99775,-1.974,0.39356,2.189,0.88075,-2.0444,-0.20035,0.15565,1.0305,-0.76806,0.58879 3.4397,0.54288,-2.8698,-1.3706,0.058708,-0.14789,0.57126,0.72163,1.6825,0.71324,1.6965,-0.44891,-1.2913,-1.1055,0.01649 -0.041567,-2.2408,2.7267,0.52353,1.9769,2.4979,2.3981,-1.429,0.044716,-1.1682,-0.54358,-0.28125,0.88093,0.44515,-0.064011 2.802,2.5488,-0.0056944,-0.62523,-0.21226,-0.30776,-0.53321,-1.324,1.2214,-0.46186,-1.1891,0.16857,-0.72144,0.14661,-1.9462 -3.6581,0.20798,0.21415,-1.4407,0.27416,0.80103,0.66952,-1.9237,-0.55967,-0.034904,0.43055,-0.51201,0.60338,-0.50493,-0.47128 4.325,-0.49926,-0.63719,-3.0741,1.1449,-0.78668,0.42705,2.343,-0.2203,1.7786,2.1249,0.049034,-1.3832,-0.031815,1.5125 -0.60737,0.18181,1.6756,0.92773,0.3208,-0.87377,0.060444,1.9931,1.7546,-1.6063,0.029457,0.077963,0.61958,-0.77465,1.095 -1.6998,1.8189,-0.015472,-0.05158,-1.4428,1.9163,-0.33449,0.70704,0.29806,-0.020337,1.6712,-0.26949,1.0256,-0.53855,0.056769 -1.6275,2.3764,2.4564,-0.90835,0.81775,1.1043,0.75782,0.70033,-0.4195,-1.3925,0.49163,-0.80531,0.4815,-1.6465,1.2439 2.6067,0.30758,-2.4386,-3.5234,0.47918,0.65469,1.9879,1.5622,0.34965,-0.28918,1.5915,1.6205,0.28138,-1.8215,0.99882 2.4859,1.9907,0.83428,-0.12621,0.63823,0.075104,-1.961,-1.0291,1.2667,1.2405,0.64236,0.68561,0.13176,0.18762,-0.13661 -1.9555,1.6405,-2.4602,1.3852,0.31859,1.1054,0.58233,1.8959,0.29632,0.72878,-0.95833,0.2835,-0.46535,-0.3832,0.38396 4.736,0.6864,1.9496,0.10726,2.2665,1.0939,1.3437,-1.0243,-1.1406,-1.4007,-1.2093,0.90812,-1.2192,0.18549,-0.64177 2.5168,2.0079,-0.51316,-0.24284,2.0986,-0.85558,-1.1081,-1.6867,0.16025,2.4364,1.5843,-0.38508,-0.44818,-0.45062,0.26915 -1.8506,0.98403,2.0644,-1.587,0.15002,0.65055,0.70025,0.49277,0.081137,-2.0245,1.2289,-1.3124,1.6365,-0.87581,1.1549 -3.3822,0.25198,2.0877,-1.9175,0.21727,-1.1165,0.43455,0.33658,0.26535,-0.49501,0.24149,-1.4236,0.96035,-1.1257,0.37706 -0.55857,2.0564,2.1577,-1.1731,-0.039583,0.2942,0.23655,0.58727,0.85386,-2.0689,-0.0060555,0.29105,1.6911,-1.37,1.5201 1.8055,0.1927,2.0116,-0.81444,0.96935,-0.68164,-0.73069,1.5914,2.1488,-0.64244,-0.45637,1.5437,1.3619,-0.59103,0.83524 -0.43818,-0.020055,0.0048766,2.2687,1.3454,0.19613,-1.9035,-1.0685,-0.71912,-2.6502,0.82876,0.54748,-1.0958,1.1175,-0.65363 0.22947,0.70809,-1.0395,2.0132,3.1861,-0.63232,-1.3537,-0.69288,1.0714,-0.39428,0.50875,-0.99507,-0.22449,-0.42179,0.64689 -3.737,-1.1058,-2.6405,-2.3613,1.2546,-1.312,-0.30977,-0.30775,-0.43417,-2.155,-1.7007,0.16201,-1.1078,0.057775,0.3595 -4.3448,0.38902,-0.66429,-1.4521,0.5638,-0.26684,1.2385,0.41611,0.39089,-1.2601,0.66826,-0.45752,-0.62641,-0.19481,-1.0035 3.732,-1.2911,-1.6789,-1.4648,0.89972,1.4,1.3468,-0.66419,1.6109,-0.52395,1.3935,1.7402,-0.9538,0.57879,-0.7511 2.4882,1.324,1.5389,-0.26812,2.09,-1.0919,-0.9349,0.045697,1.4025,-0.023192,-1.2952,0.28371,-0.10901,-2.0492,-1.5177 -4.151,0.28183,-1.3748,-1.1163,0.64773,-1.3058,1.3954,0.12732,0.87171,-0.073803,-0.088599,-0.4079,-0.18487,0.63543,-1.2096 -4.3336,-0.062345,-2.2226,-1.7877,1.3428,-0.36209,0.55067,-0.3426,-0.43609,-1.8667,-0.46685,-0.83287,-0.46971,-0.0045724,-0.42967 -2.9882,-0.66774,-3.349,-1.77,0.13607,-1.2556,-0.66783,0.026541,-0.72069,-2.0391,-1.7226,0.76732,-0.90325,-0.20677,0.57211 4.5537,-0.94119,-0.97601,-1.8784,1.5484,-0.54872,2.7364,-0.22538,0.47234,1.6703,0.73129,1.8632,-2.1814,-1.325,0.81692 2.1627,1.2782,-0.51525,0.28545,0.56624,0.28513,-1.1432,-1.316,1.4314,0.38123,0.056202,-0.19501,-0.17166,-0.14875,0.71304 -4.2151,0.15057,-2.0321,-1.7223,1.272,-0.40712,0.16164,-0.55732,-0.45583,-0.98222,-0.034607,0.1711,-0.42595,-0.0083396,-0.88684 -4.0624,-0.75192,-0.80541,-1.3493,1.5445,-2.8768,-0.054672,0.70805,-1.1631,-0.3121,-0.92923,-1.3501,-0.052183,-0.19393,0.16615 3.8918,-0.11017,1.1609,0.27341,2.1677,0.93072,-0.29013,0.044259,0.9173,0.72894,-1.5057,0.99131,0.28612,1.4809,-0.80146 -3.4961,0.87355,-0.20794,-0.83229,0.057714,-0.59288,1.1554,1.3039,0.76567,-1.1561,0.52393,-1.1956,-0.7646,0.13481,-0.9264 -1.9388,3.016,-0.99118,0.75565,-0.69408,1.2262,-0.047341,0.54991,-0.70228,-0.069953,-0.43334,1.2834,0.82703,0.7266,-0.48771 2.2343,2.2578,-1.6137,-1.5893,-0.446,-0.20753,0.14226,-0.33154,-0.4753,2.4353,0.57169,-0.34741,0.6674,-1.3147,0.52333 1.4342,3.3728,1.4085,-1.6989,-0.75337,-0.059547,-0.71612,1.0037,-1.0149,-1.5427,-0.81842,-0.37704,-1.5371,-1.5839,0.088825 0.32205,2.7204,1.3445,0.75392,1.2295,-1.0636,-1.3295,0.46025,-0.20131,1.3906,-1.4522,0.27258,-0.39346,-1.7141,0.33683 -3.3759,0.55438,-3.9652,-0.95854,2.0292,-0.082503,0.020865,0.45505,-0.86106,-0.58758,-1.3682,0.38784,0.030556,-0.40629,0.028681 3.837,-0.19242,-1.7689,-2.1078,3.1724,1.3862,3.0949,-0.34036,-0.95242,-0.27929,1.0772,0.20418,-1.2263,-1.1179,-0.083389 -2.0865,-2.013,1.6674,-0.42215,0.61647,-0.074054,-0.41028,0.96936,1.6435,0.79549,0.19132,-1.2245,0.83191,1.0055,-0.23285 -4.0188,0.60554,-2.2779,-1.3192,0.88057,-0.010194,1.5599,0.44542,-0.50175,-1.4746,-0.6165,-1.9649,-0.21403,-0.56967,-0.51839 3.5264,1.5911,-0.68806,-0.70195,0.42491,0.12192,-0.23856,-0.71664,1.591,-0.353,-0.41068,-0.27842,-1.5358,-0.40717,-2.1397 -1.1889,0.45313,-0.54315,1.6497,-0.98389,1.0659,0.17925,0.19849,2.195,-0.16818,0.61507,0.33626,0.11284,-0.42563,0.54206 1.462,1.759,-1.3192,1.2439,1.5651,0.6888,-1.4224,-1.343,0.6721,1.8161,1.3654,-0.91922,0.015547,0.1119,0.0869 -2.7261,0.24901,-0.52702,0.38695,-0.30694,-2.0948,1.5235,0.82404,0.97998,0.5247,0.12741,-0.54377,-0.37236,-1.0749,0.45799 1.8476,1.9409,-1.4162,1.2507,0.038969,1.4612,-0.67605,-0.24642,-1.3904,1.3758,-0.18647,-0.73763,-0.27712,0.75184,0.32065 -0.68476,3.0942,0.069411,0.58118,-0.95533,0.62274,-1.1804,-0.47646,0.47325,-0.51399,0.17604,1.6518,0.41645,0.95996,-0.50988 -1.8723,-0.42665,1.6921,1.5416,0.74879,0.37975,1.8637,-1.4528,1.1998,0.24115,0.76916,0.57506,-0.037642,-0.26374,0.056573 -2.2726,0.78328,-2.6099,-1.515,1.7863,0.29632,-0.34788,0.035,-0.76987,0.79144,-0.072344,1.7669,1.3614,1.3154,0.85572 -1.12,2.0931,0.23822,2.6258,0.45606,0.21591,0.038156,-0.0040747,0.84144,0.5809,-0.10242,1.4777,-0.62423,-0.52471,0.77317 4.722,-0.48059,-1.0751,-0.74279,1.4095,0.54378,1.0878,-1.1827,0.70585,-0.78369,0.99358,-1.0677,-1.908,0.35578,-0.10769 -1.1837,1.7164,2.1231,1.2653,2.2989,-2.8846,-0.29937,1.6429,0.085203,-1.5348,-0.53281,0.38298,-0.28949,-0.25592,0.11622 -3.8281,2.2429,-0.73417,-0.33921,0.21992,-0.42962,1.9745,2.5134,-0.23635,-0.63095,-0.23574,0.12808,-0.30515,-0.67854,0.42085 -0.53911,1.6744,-0.053083,2.5857,0.3753,0.8595,0.011616,-0.86756,0.44477,0.22073,-0.48044,1.0735,-0.03692,-1.3591,0.90026 -3.2611,3.3559,0.089381,-0.059473,0.47114,1.3663,0.92156,1.7987,-1.1338,0.2266,0.17501,1.0784,0.52409,0.1021,0.4452 3.0844,0.2069,-1.9869,0.054179,2.1225,1.2025,1.6116,-1.2961,0.92533,0.54119,-0.0067971,-0.019712,-0.11417,-1.3039,-0.33268 -2.6083,1.5985,2.0917,-0.050882,-0.22835,-0.62619,1.0271,-0.11651,0.71045,0.2097,0.64044,1.6285,0.11693,-0.34547,0.43766 0.70056,1.2742,-1.0332,2.0101,-0.97357,0.62518,-0.27957,-1.0741,1.5639,-0.0241,-0.67364,1.0197,-0.18157,0.26009,-0.01407 0.51874,1.9117,0.96396,1.0811,2.1336,-0.64818,-0.74633,0.50247,0.93035,-0.10892,0.45261,1.2065,0.39964,-0.90256,0.79225 -2.6898,2.0689,-1.0871,0.62926,0.14082,0.2386,1.4619,1.2528,0.70605,1.3386,-0.3661,0.92343,0.47373,0.11316,0.64406 -4.7928,0.047067,-1.6225,-1.6236,1.5984,-0.18546,1.3947,-0.078554,-0.29847,-1.4463,-0.1991,-0.942,0.013178,-0.12148,-0.69176 1.232,2.7754,-1.1932,-1.7284,-0.15509,0.44442,-1.4532,-0.45791,0.80448,0.2857,-0.054714,-0.71792,1.3001,-1.2518,-0.41181 -3.6535,2.2617,-1.401,0.042128,0.25631,0.94957,1.9335,2.1172,-0.92145,-0.49662,-0.28679,-0.032923,-0.0011215,-0.34222,0.20642 -1.2851,2.8336,3.3688,-0.87717,-0.21958,0.30878,0.21489,-0.31022,-0.45491,0.18294,0.51325,0.58708,-0.88168,-0.049566,0.48347 -0.47033,0.5017,0.23272,2.0053,-0.15818,1.6409,-0.025122,-0.99526,-0.86994,-0.8397,0.22422,0.85112,1.0202,0.18331,0.50948 -3.6531,-0.037914,2.7673,-1.4937,0.77747,-1.7141,0.80989,1.7376,-0.4311,-1.2033,0.096603,-1.2931,-0.54823,-1.163,1.0488 4.23,1.2214,-0.86634,0.016054,1.1424,0.41197,-0.20133,-1.8476,0.4016,0.04947,-0.23434,-1.4287,-1.5783,-1.1176,-0.70495 4.9377,-0.80307,-1.0692,-1.0552,1.6825,1.259,0.1747,0.013062,0.76323,-0.080019,0.32654,-1.1126,-1.6727,-0.98385,-0.36598 -5.0698,-0.13903,-0.35247,-2.0536,2.342,-1.7375,0.84176,0.073036,-0.50192,-0.35424,-0.13596,-0.31148,-0.62836,0.038314,-0.38053 -2.5948,0.78315,-3.4006,-0.10616,0.33606,1.709,0.74974,-0.63257,0.14466,0.34506,-1.2269,-0.2207,-0.024244,0.36744,-0.9317 2.0201,2.0557,-1.7812,-2.0766,0.2008,1.2649,-0.91971,-0.15667,-0.22965,0.5083,0.87614,-1.123,1.0428,-1.8781,0.38941 -2.4682,-3.4358,2.0116,0.7559,2.2929,0.89601,0.085969,-0.64595,0.68213,-1.0364,0.32863,-1.5016,-0.2286,1.015,0.58995 -2.8639,1.451,1.6048,1.3297,1.7205,-0.66362,1.4165,1.3453,-0.17556,0.59959,0.58223,0.34414,-0.38884,0.26554,0.08723 -3.4068,-2.1937,1.2469,0.62147,2.3252,-1.6675,0.96008,-0.11187,0.39523,-0.96081,0.31677,-1.3532,-1.5056,-0.30437,0.36287 -0.4911,-2.0072,2.9287,1.6891,2.3827,0.44844,0.73896,-1.0981,-0.91744,-1.6473,-1.066,-0.017908,0.83269,-0.18081,-0.47877 -1.6621,-4.0178,2.351,1.4658,2.5285,0.8115,0.56253,1.2705,-0.29154,-1.5912,-0.18905,-2.0274,0.096991,0.79446,0.58199 -4.9496,-0.96752,-0.45203,-2.0795,1.804,-1.0974,0.51041,-0.085058,-0.93289,-1.9635,-0.70145,-0.71952,-0.62107,-0.2357,-0.10631 3.7815,0.6128,-0.38049,-0.99039,1.8375,-0.22688,-0.16528,-1.3552,1.9367,-0.32437,-0.06909,-0.85932,-1.5085,-1.1302,-0.25048 -1.9374,0.83501,-2.5266,0.9463,-0.91859,-0.039216,0.7332,0.93493,1.322,0.05289,-0.34153,-0.049818,-0.6708,0.1603,-0.3819 2.2614,2.1851,-0.50397,-0.96478,-0.73482,0.72556,-1.1709,-0.32649,-0.12761,-1.6027,-0.085694,-0.24793,0.76361,-1.3485,-1.05 -2.7676,0.080137,2.5573,-1.1261,-0.075717,0.57351,0.52713,-0.67097,1.6411,-0.01923,1.0497,-0.20206,-0.21025,-0.20555,0.5043 0.44347,-3.4304,3.255,1.0254,2.4581,2.628,1.6473,1.574,-1.3984,-1.3613,-1.4776,-0.67922,1.8989,0.49813,0.5108 -1.285,-3.5621,3.4022,1.0618,2.7616,0.43441,1.4235,-0.70872,0.12198,-1.1093,-0.38687,-0.71501,0.57788,-0.91093,0.46245 -0.011953,1.5138,-1.7505,2.2269,1.3483,-0.23362,-0.35496,0.98912,1.4035,-1.3466,-0.89168,-0.20633,-0.098425,1.1175,0.10977 -3.2651,-0.62751,0.64407,-2.6142,1.0258,0.58818,0.67315,-2.9171,-1.1596,-1.0601,-0.90822,-0.36872,-0.15004,-0.19506,0.025075 -0.77856,0.98112,3.212,1.7914,1.1989,-0.90512,0.38342,0.10845,1.44,-0.37659,-0.070117,0.95037,-0.31579,-1.197,1.2075 -0.7597,3.4525,0.51866,0.87243,0.039559,-0.11028,-1.2747,-0.080413,0.64796,-0.030187,-0.1224,1.4891,0.29351,0.6438,-0.65957 1.652,-2.3157,3.8475,1.3869,2.507,2.2682,1.5439,0.7475,-0.23633,-0.2177,-1.0849,0.29646,1.3105,1.3357,0.1594 -0.77743,-3.7346,2.4093,1.3513,2.3529,1.7771,0.99106,0.53344,-0.15194,-0.66349,-0.67733,-1.6613,1.5831,1.0889,0.57959 1.0774,1.7269,-1.0806,1.3172,1.6615,0.20437,-1.0958,-1.2312,-0.16805,2.4877,0.18208,-0.80259,-0.36975,-0.51747,-0.11833 4.7648,-2.5395,-0.91196,-1.4481,1.7004,1.9373,2.4872,0.26858,0.60608,1.0214,0.5533,1.5562,-2.3109,0.26426,0.87735 -1.4184,-2.5179,3.5876,1.3517,2.075,0.54122,0.8765,-0.789,0.77663,-0.39884,-0.0012357,-0.2969,-0.20556,-0.30358,0.64494 -2.552,-3.2156,0.76229,-1.1138,1.0657,-1.6015,-1.3052,0.76403,0.77016,0.52303,-1.3841,-1.38,-0.10511,0.40318,0.92575 -2.8918,0.18251,1.4965,-1.0215,0.10192,-0.40959,0.5898,-0.025628,1.6944,-0.63688,0.54657,-1.0785,1.4362,-0.025118,0.29315 -1.0506,3.8779,0.12351,0.24987,0.63318,0.35622,-1.2676,1.5454,0.012905,-0.1896,0.39979,1.3253,-0.13057,0.4771,-0.9822 -0.22329,-3.4506,1.1025,-1.2659,1.5225,0.36521,-0.7419,0.24428,0.56158,1.5707,-3.3207,0.29035,0.12154,0.65597,0.52194 2.889,1.7169,-1.3136,0.30245,0.7484,-0.3613,-0.47135,-1.4295,-0.36671,2.7214,0.32389,-0.85889,-0.022613,-1.169,-0.052445 -1.9896,-2.0227,-1.8141,-0.88161,1.4229,0.12665,-1.6677,1.8989,-1.2701,-1.021,-1.0014,0.85322,-0.36788,0.493,2.0993 -4.062,-0.2443,-0.42345,-2.2599,1.1594,0.41447,0.1685,-1.8507,-1.1761,-0.22448,0.070853,0.14539,-0.12126,-0.96273,-0.25218 -1.3048,1.3298,1.1846,1.1488,-0.63977,-0.17555,0.57807,-0.34456,1.6288,-0.087735,-0.32238,1.7015,0.95392,-0.29256,0.32207 -1.0634,-3.7095,-1.4789,1.4387,2.3784,-1.2486,-1.3044,0.47898,-1.3313,-1.0282,-1.4352,0.13498,-0.53187,-1.2265,2.116 -2.4882,-2.4656,-0.60537,-1.636,1.0877,-0.25966,-2.7645,0.64748,-0.36677,-0.38925,-1.6826,1.0419,0.50973,0.53197,2.6522 -0.95688,-4.7461,-0.44463,0.66681,2.8945,0.15866,-0.96406,0.76674,-2.1915,-0.92379,-2.2731,-0.86082,1.2727,0.45606,1.382 -1.4953,-2.7601,2.5846,-1.0723,0.87279,-0.47142,0.99311,0.57284,1.4946,-0.44754,-0.93161,-0.73262,1.374,-0.59523,-0.60538 2.9826,0.68779,-2.1425,-2.4527,0.31983,-0.50167,1.3812,0.58128,1.6468,1.143,1.8267,1.0602,-1.7516,-0.31794,0.84938 4.1192,-1.4784,-0.7586,-2.2418,1.9416,0.62222,2.8138,1.362,0.61794,1.8058,0.39481,3.1048,-1.7304,-0.52307,0.013215 0.18041,0.64829,-1.2409,2.2769,2.2613,-2.1001,-0.97583,0.22438,-0.66467,-2.8867,-0.63276,-0.90493,-0.068027,-0.31646,0.12206 -1.883,3.535,-0.12079,0.29561,0.38706,-0.16308,-0.61461,1.4229,-0.55078,-1.2011,-0.23498,0.27507,0.82405,0.4317,-0.030877 -0.98552,-2.4293,0.49455,-1.8945,1.2445,-0.032381,-2.2215,-0.4105,-0.046741,0.1404,-1.8549,2.0588,0.05623,0.52429,2.7279 1.9729,0.3353,1.4134,1.3103,2.2688,1.3272,-1.3598,-2.472,-0.9072,-0.67474,0.74075,-0.59387,-0.0089913,-0.12652,0.28754 -0.90215,-2.551,3.049,-1.0161,1.318,-0.50073,0.99374,0.28222,1.5175,0.014484,-0.97226,-0.90943,1.1817,-1.1143,-0.63218 -1.4234,-4.6242,1.5405,0.75666,2.8723,-0.3204,-0.01271,1.4333,-0.95496,-0.50433,-1.2866,-2.0986,0.35879,0.97212,0.63201 -0.67279,-3.3753,3.5188,-2.4313,2.2376,-1.0048,0.74191,0.48768,0.36533,0.48207,-1.7995,-0.76188,0.059507,-0.33304,-0.54101 -2.8509,-1.5397,-1.8357,-1.1987,1.2884,-1.089,-2.0814,0.72316,-0.16443,-1.9005,-0.88536,1.675,-0.70189,0.046224,2.1697 -2.7535,-1.4452,-2.4985,-0.17165,0.67653,0.15697,-0.71496,-0.66474,1.6406,-0.88228,-0.55767,0.039758,-1.2024,1.1219,-0.27303 2.3409,0.75348,-2.3865,0.48918,-0.81795,0.16357,0.09421,-0.41138,1.6748,-0.36394,0.31263,-0.80309,-0.2774,-0.18691,-1.171 0.24812,1.7498,1.6344,-0.79681,0.13118,1.4385,0.80843,0.35492,1.1127,-0.97513,0.33769,-0.16504,1.6728,-0.84326,1.4201 -1.6416,-3.5136,-0.39868,0.58221,2.4539,-0.50372,-2.252,0.055469,0.51009,0.089978,-1.6592,1.0062,-0.43103,0.8837,2.4571 -0.093832,0.89838,2.6616,-1.2708,-1.681,0.54638,1.2304,-0.18348,1.0038,-0.31612,-1.3054,1.1581,-1.1792,-1.1582,0.1278 -1.4592,0.47134,2.41,-2.3556,-0.85003,0.86046,1.1072,-0.97621,1.2886,0.47844,0.21571,-0.76808,-0.98689,-0.40578,0.56863 -0.36625,2.8284,-0.3947,0.94724,0.46997,0.14075,-1.8575,0.24706,1.1623,0.15951,0.13784,0.74193,0.021342,0.016075,-0.38659 -0.94606,-1.4064,3.4235,0.62097,0.42591,0.38504,0.59525,1.0425,2.0353,0.69681,-0.68054,-0.47765,0.063223,-0.4608,1.5194 -2.0101,-2.0996,2.9592,-1.0822,0.24148,0.18216,-0.15213,0.66448,2.1274,0.54521,-0.55252,-1.5679,0.64796,0.42883,0.6635 -3.0458,-0.65691,2.2638,-2.5706,-0.020817,0.98455,0.059105,-1.0199,0.97015,-0.12737,0.49723,-0.68287,0.38765,0.26482,0.43241 -0.16752,-1.5052,3.7547,-3.0877,-0.31756,1.0623,0.86307,0.25235,0.95998,0.89106,-1.0407,-0.96167,-0.465,1.0121,-0.10898 -1.4262,0.65757,0.54686,-1.2082,-0.98734,0.57036,0.99293,1.5286,0.12023,0.86313,-0.35529,0.50702,0.30349,-1.253,1.5712 -2.6688,-2.9783,-0.4107,-0.61666,1.6546,-2.1831,-1.6598,-0.94747,0.97405,-0.3323,-1.5111,1.1909,-0.017777,-0.032092,0.80695 0.37669,2.5035,0.12219,1.556,1.3578,0.16222,-1.3478,-1.4174,0.020277,0.70486,-0.13454,-0.052121,-0.47616,0.010485,-0.41062 -2.5022,-2.3652,-1.8396,1.2456,0.99807,-0.98073,0.13771,-0.74186,0.93427,-0.38822,-0.44,-1.1307,-0.85724,-0.55582,0.060437 -1.3764,-1.5321,3.5961,-1.3345,-0.0040897,0.65714,0.53681,0.92966,1.9353,0.77005,-0.30461,-0.89257,0.45524,0.38345,0.92951 1.918,-0.29809,0.6135,0.80499,1.164,3.3504,1.9455,1.2804,-2.1614,-1.398,-1.4377,0.45094,-0.45215,1.9737,-0.29554 -2.758,-2.8897,-1.2546,-0.9876,0.86246,-0.74403,-2.4481,1.1901,0.62098,-0.12458,-1.6681,-0.14173,-0.91016,1.074,1.8718 2.642,-0.17826,0.27288,0.89384,-0.69602,1.9322,-1.3759,-0.45173,1.1996,-0.69495,-1.3263,1.0046,-0.76664,-1.1846,-1.9928 -0.74817,-0.83536,-1.352,-0.89022,0.70019,2.6983,-0.32918,-0.73274,-0.92364,-0.84623,-0.36881,0.30305,-0.85705,0.84871,0.77808 -1.1651,-2.6345,0.73855,-2.0882,-1.0353,1.2299,-1.5991,-0.33467,-2.685,0.064049,-0.41644,-0.060647,-1.0938,4.3914,0.38358 -2.8987,-1.2064,2.3764,-2.0931,-0.12133,0.39054,-0.13791,-0.11628,1.6238,0.07558,0.029233,-0.96348,0.75859,-0.36611,0.59108 -0.80827,0.4444,2.8191,-2.7179,-0.15448,1.3194,1.2105,0.072381,0.092311,0.15955,0.18405,-0.8043,-0.84555,0.91477,-0.1935 3.0482,0.34433,-1.4415,-0.97603,1.0945,-0.39368,0.75104,-0.82842,-0.82495,2.7085,0.78549,-0.86195,-1.6617,-1.222,1.5526 0.36408,-0.13197,4.7686,-0.60414,0.6367,-0.40974,0.86269,-0.79165,0.48584,-0.1271,-0.90582,0.59339,-1.2228,0.076665,-0.89078 1.6883,-0.11449,0.12078,1.6029,2.069,0.35433,-0.96341,-1.4188,1.7298,0.042775,-0.68499,-0.47309,1.1155,-0.96444,-0.093295 -4.0538,-1.3336,-0.70683,-1.1044,1.288,-2.3173,0.51758,0.16823,0.82897,-0.54033,-0.19522,-0.91898,-1.0775,0.31313,-0.364 0.78271,0.021052,0.32046,2.7735,0.9488,1.2764,-0.089968,0.23556,0.63374,-0.40011,-2.4983,0.91848,0.95597,-0.84988,-0.1696 3.3256,-1.6689,-2.2572,0.4446,1.0821,2.1681,2.4916,-0.22261,0.33269,0.54863,-0.050523,0.84913,-0.48364,1.2866,-0.19969 3.2255,-0.9349,-1.2435,-0.35621,2.2038,2.8807,1.0034,-0.95349,-0.56127,-2.4811,0.13769,0.70941,0.73761,1.5799,-0.72422 2.3989,-0.1337,-3.9148,0.20926,0.69698,2.1082,3.1338,0.24196,-0.32077,-0.49274,0.70043,1.0898,0.03533,0.40494,0.001302 -1.551,1.1002,0.5332,2.2224,0.40558,-0.42029,0.67659,1.5995,1.8215,0.23421,-0.48489,-0.20385,-0.1274,-0.68716,1.7202 0.5436,0.38033,1.1837,2.9437,1.1618,1.5079,-0.33992,-1.2012,0.61688,-0.5919,-1.2925,0.76668,0.5552,0.20934,0.59286 2.3961,1.4192,0.9948,0.1187,0.91521,-0.020368,-0.95595,-0.17058,1.1114,0.50739,-1.6432,0.75668,-0.91047,-1.1759,-0.94907 -0.80935,2.7562,0.62153,-0.20926,-1.4408,1.9946,0.25871,-0.81261,-2.0546,-0.081019,0.1431,-0.58789,-1.102,1.0166,-0.22902 2.8103,1.979,0.082732,0.35908,2.7447,0.29274,-0.69186,-1.8365,-0.46528,0.9317,-0.037488,1.2596,0.42145,-0.26622,-0.16705 1.5964,1.2951,2.9612,-1.6947,3.1871,-1.4061,-0.29357,1.1776,-2.8831,0.54367,1.3239,-1.3759,-2.2554,-0.0050142,0.74503 -0.80592,1.8089,-1.2787,1.2681,0.13015,-0.036276,-1.4313,1.2458,2.3709,-0.51787,-0.58883,0.60056,0.59345,1.462,-0.30666 2.7393,0.044338,-2.2556,-2.389,-1.3238,0.61348,1.5631,1.8232,-0.73536,0.71817,0.18291,1.3345,-0.18261,-0.83652,-1.0473 -1.4256,1.1987,1.2727,-0.18574,-1.217,0.71444,0.96386,-0.2119,1.58,0.72367,-0.58018,0.47886,0.46787,-0.89106,1.0211 0.016777,2.3873,0.36909,2.2259,1.9313,-0.53993,-0.51245,0.50213,0.46851,0.21805,-0.82858,0.97913,0.95482,-0.48725,-0.4624 -0.89879,2.2908,0.25335,1.6283,1.344,0.84468,-1.5564,0.78709,0.90107,0.18576,0.40594,0.14065,-0.16907,1.9576,-0.81261 -2.5508,1.1626,-1.5004,2.1517,0.96519,0.25302,1.5379,1.3859,-0.1846,-0.093755,-0.52112,-0.24354,-1.1602,-0.34812,0.88852 -1.0487,0.92967,-0.54368,3.0109,1.4765,-0.88436,0.13636,1.0773,1.4619,-0.77067,-0.94325,0.35934,-0.52978,0.89159,0.83417 -0.41988,-1.382,1.7227,0.19428,0.093204,0.71459,1.5554,-0.59076,1.4912,1.5985,-1.1302,-0.76882,-0.38819,-2.4037,0.5259 -1.8605,1.6692,-0.69344,0.26506,-0.75343,2.4173,2.4206,-0.74766,-0.75117,0.44296,-0.34295,-1.2412,-1.3148,0.015018,-0.14495 3.828,-1.2524,-2.4522,0.53667,1.5783,2.8879,1.3237,-0.1822,-0.76042,-0.23396,0.46085,-0.017694,-0.11318,2.3866,-1.0782 -1.1453,1.2861,2.4497,1.8349,0.25951,-0.36513,-0.10402,-0.3687,0.86554,0.15432,0.60832,1.6994,-1.1159,0.62395,0.6866 -2.4835,2.6034,-0.88949,0.76658,-0.61201,1.1059,0.94965,1.2602,-0.31275,1.184,0.16481,1.4587,-0.49393,0.40672,-0.43277 -4.0552,-0.59579,-0.29582,-2.0703,1.4871,-1.6463,0.018823,-1.2347,0.19287,-0.26413,-0.2292,-0.088701,0.7623,0.19997,0.13137 -3.2773,-0.87909,1.8617,-2.5179,1.0697,0.57104,0.01888,-1.1642,-0.72514,-1.2054,0.7174,-0.877,1.0543,1.4039,-0.21618 2.1567,0.99022,-2.0679,-1.1694,-1.4049,2.4147,-0.16638,0.61528,-0.64316,-0.25096,-0.0028409,0.58154,0.16121,-0.30275,0.26356 -2.331,-1.2918,0.17678,-1.4183,1.755,-1.5399,-1.4274,-0.94117,-0.1946,0.029668,-0.97281,1.1759,0.46645,1.5574,1.8304 -1.5296,-4.1089,2.7181,-1.5804,2.9493,-1.755,-0.7379,1.5534,-1.8786,-0.36452,-1.3691,-0.8909,0.4779,0.9693,0.41793 -1.6639,-5.3465,0.64891,0.55369,2.8956,-0.3174,-1.2782,0.56084,-0.57947,-0.44508,-1.8274,-1.2836,0.092957,0.1672,1.0221 -3.1433,0.47804,-3.3051,-0.06104,0.40437,1.4703,0.75662,1.0159,-0.45218,0.27766,-0.39243,-0.17658,0.12498,-0.26523,-0.47519 0.8801,2.9993,-0.25702,0.33096,-0.77083,-0.025617,0.19206,-0.33263,-0.79839,1.106,-0.91252,-0.87273,-2.2847,0.5922,0.55553 -0.72529,1.7012,2.7962,0.45961,-0.64379,0.57413,-1.257,-0.11549,0.77824,-0.29642,-0.66457,1.4275,-0.20462,1.229,0.50153 1.3935,2.1217,-1.0623,-0.029982,1.5449,-0.39655,-1.304,-0.8916,0.54479,1.3377,1.5696,-0.84725,-0.19812,-0.20737,-0.15234 -2.2422,-0.32996,0.70945,0.041052,1.0899,1.1089,0.083299,0.20638,1.2772,1.2846,1.3036,-0.80277,-0.1277,1.1689,-0.56138 -4.5042,-1.6873,0.94321,-2.5072,1.3318,-0.40945,-0.80768,0.064461,-0.37489,-1.499,-0.15564,-0.61977,-0.25301,0.70766,-0.074438 -3.9372,-0.13765,-2.6734,-1.0532,2.8425,-0.93831,-0.62153,-0.5638,-1.3832,-1.4213,-1.1469,0.61349,-0.17476,0.44393,1.2211 -2.7905,1.3373,-2.5794,0.19633,0.11908,1.8415,1.9643,0.50996,0.47803,0.59207,-0.31693,-0.40504,0.17203,-1.1307,-0.54734 -2.1607,-4.1449,2.074,-0.79854,2.2605,-1.6245,-1.4732,0.71683,-0.19628,-0.15132,-1.5138,-0.69122,0.10532,0.39519,0.6464 -3.2345,-3.0112,2.1722,-2.4433,2.2335,-1.3255,-1.5377,0.88474,-0.90377,-0.71948,-0.95812,-0.59077,-0.097987,1.0712,0.75215 1.2203,0.79145,2.5281,1.6156,2.4851,-1.3678,-0.70781,0.51942,-0.048052,-1.4247,-0.88231,0.83691,0.35975,-2.0627,0.48911 -3.1862,2.1715,0.83068,-0.12449,0.062159,-0.93837,1.0573,2.3443,0.53585,-2.0465,0.30285,0.14274,-0.73399,-0.79555,0.61047 -0.10997,-0.28815,0.73751,-2.9152,-0.3037,3.0032,-0.20066,0.87666,-2.0406,-0.36202,-0.61641,-0.46637,0.52188,2.9347,-0.2036 0.019309,3.7763,-0.074114,-1.1257,-0.31894,0.016208,0.50355,-0.034854,-0.85059,1.5967,-1.6927,0.51515,-0.69495,-0.36921,0.10813 -1.5696,-1.9934,3.8049,-2.2625,0.67624,-0.5341,0.463,-0.12596,-0.64093,-0.48716,-0.26328,-0.079083,1.0667,0.54586,-1.3285 -2.3539,-3.4701,-0.042863,-1.3773,1.4059,-2.1051,-2.1701,0.052085,0.061912,-0.047531,-2.2613,0.60287,0.12818,-0.74186,1.4514 0.65166,2.8878,-1.4546,-0.75255,-0.49079,0.19934,-1.6311,-0.36658,0.8392,1.2704,0.069395,-0.50683,0.096603,-0.52128,-0.52774 3.0377,-1.1039,-1.7469,-0.32735,0.84109,1.7299,2.0861,-2.2703,-0.059477,-0.80701,0.62268,1.8127,-0.089208,0.40352,0.36066 -2.0186,-0.62616,-1.4892,-0.7627,2.3124,0.78397,-0.99433,-1.5468,-0.77802,-1.3539,-0.7005,2.8916,-0.8083,0.31597,1.2069 -2.9997,-2.2047,-0.096048,-2.8245,2.1726,0.61011,-1.8736,-1.8158,-1.6304,-0.89225,-1.8253,1.2859,-0.34082,0.63721,1.7221 -0.2959,2.7062,-0.55486,1.0423,-0.70821,0.72211,-0.08763,0.18444,0.72239,1.235,-1.138,1.2356,0.83614,-0.61379,-0.099543 -2.3742,-2.209,-0.62841,-1.9596,2.4482,0.87031,-1.6785,-0.79677,-1.5518,-1.2863,-1.8702,1.2111,-0.3861,0.010678,2.2925 -1.0818,3.1757,-0.27008,1.3247,0.53678,-0.33266,-1.236,1.3418,-0.27289,0.68558,-0.1728,0.56622,0.51264,-0.31337,-0.54169 -3.7086,-1.6771,-0.75633,-2.2935,1.1972,-0.21524,-1.7562,-0.9993,0.28687,-0.94917,-0.98866,0.38738,0.75758,0.43901,1.257 -1.0593,-3.8194,1.1363,-2.931,1.0249,0.90525,-0.031275,-0.61099,0.75122,-0.30523,-2.5253,1.3409,0.17714,0.66432,-1.2441 -3.4934,-2.15,-0.35399,-2.4782,1.4463,-1.9054,-1.3826,0.075813,-0.16961,-0.0076765,-1.4156,-0.26568,0.096826,-0.96156,0.8939 -2.503,-1.9512,-1.0893,-1.7686,0.43261,1.3772,-2.4257,-1.7378,-0.5699,-0.58268,-1.4323,2.006,0.12439,0.74857,1.3936 -1.7913,-4.1836,2.5097,-1.9252,2.9155,-1.2358,-0.54898,0.19001,-0.21618,-0.061689,-1.9675,0.29026,0.51233,0.41987,0.24941 1.9143,2.6119,-0.032651,0.16133,-0.48841,-0.16446,-0.74099,-0.84875,1.4209,0.24578,-1.658,0.71882,-0.31008,-0.80082,-1.1186 -0.27304,3.1666,0.11035,0.81574,0.95709,-0.86566,-0.95937,0.75377,0.42162,1.0435,-1.6655,0.40343,1.574,-1.3833,-0.099576 -3.0582,-2.0823,-0.27536,-2.2092,0.5072,0.29102,-2.1213,0.49045,-0.15521,-1.4207,-0.79369,-0.37444,0.74452,0.50505,1.7432 3.1588,0.44055,-2.2666,-0.030856,0.58437,0.9985,0.75715,-1.9847,0.64056,-0.56461,0.26777,-0.43307,-0.6603,-0.77569,-0.30311 -1.0324,3.0448,-1.3844,1.7978,-0.85161,2.229,0.25074,0.69947,-1.2849,0.10869,-0.66262,0.57757,-0.77418,-0.20269,-0.62318 -3.757,-1.8895,2.3665,-2.7018,1.1707,0.64091,-0.86195,-0.52758,0.20054,-0.24637,-0.23951,-0.28537,0.056066,1.2742,0.19811 5.3032,-0.97793,-2.0126,-0.60909,1.296,1.4232,0.57911,0.10377,0.94138,-0.33176,0.91743,-0.62416,-1.9119,0.022466,-0.88385 0.54751,3.8617,-1.3309,-0.94046,0.69146,1.4109,-1.7805,-0.54051,-0.93029,-0.052321,0.80996,-0.65298,1.3848,-0.11663,-0.75452 2.9063,0.36956,1.116,1.2802,0.84581,2.8447,-0.074261,-1.0676,0.013197,-0.40285,-1.5009,-0.028152,-0.13142,1.0818,0.48603 -2.6608,-1.8547,0.2022,-2.8964,0.8602,-0.26455,-1.587,-0.52259,0.36224,-0.58166,-1.5636,0.10078,0.77723,-0.51976,1.6317 -2.9903,-0.80442,-2.1874,-1.2833,1.5773,0.28383,-1.41,-0.45133,-0.2548,-2.2007,-0.90881,2.1099,-0.05914,0.10104,1.4615 1.0344,1.8353,2.6976,1.293,1.0196,-0.77229,-1.088,-1.2407,0.80555,-0.46281,-0.0061451,0.63365,0.10081,0.63663,-0.39054 -3.6657,-0.72201,1.3886,-0.80714,-0.10345,-0.88822,0.79054,-0.37582,1.5157,-0.084679,0.51791,-0.23215,-0.15179,-0.4834,0.33895 -4.0907,0.16596,1.3147,-1.7341,1.0441,0.31325,0.92412,-1.0701,0.22242,-1.5267,0.54164,-0.51948,0.68509,0.68089,-0.42031 3.1925,1.5365,-0.83216,-1.6392,0.27717,-0.31623,-0.19294,-1.7498,1.3752,0.47993,1.0098,-1.0935,-2.0288,0.26554,0.5093 0.70056,-2.3995,4.5654,-1.1801,1.5241,0.36605,1.4755,1.2436,0.79675,0.80381,-1.4214,-0.70119,0.059496,0.16607,-0.27811 2.8176,-0.024926,-1.264,-1.7432,-0.9177,0.41902,1.1458,1.083,-2.2001,1.4993,0.50672,1.1579,1.2039,-1.32,-0.40817 -2.8839,-0.38066,-1.4287,0.087806,0.48308,-0.97589,0.97693,0.37319,2.1001,0.019263,0.13473,-1.0213,-1.4363,-0.32537,-0.17492 -2.4348,-1.8746,-0.42912,0.20001,1.1398,-1.4765,0.44492,-0.4768,2.1554,0.42884,-0.39993,-0.76651,0.055763,-0.95679,0.16538 -3.3859,-0.86859,-0.091115,0.33789,1.5989,-2.2079,1.4353,-0.29969,1.6853,0.35545,0.099733,-0.6698,-0.26544,-0.13712,0.092187 -3.0573,-1.0561,0.92401,-0.48086,1.0307,-1.4162,0.51336,-0.88117,2.3524,0.36333,-0.19351,-0.43282,0.65459,-0.070236,-0.15882 -1.7659,3.2361,-0.19457,0.6643,-0.062911,0.74922,-0.49548,0.82195,-1.2613,1.4531,-0.23445,1.3876,-0.94422,0.072697,-0.94052 0.21251,-0.13052,3.7194,0.22782,1.1375,-0.29678,0.79224,1.5506,2.011,-0.061912,-0.36753,-0.27304,0.26515,-0.96747,1.0276 1.1621,1.9368,-0.044597,1.8317,0.66161,0.31025,-1.1722,-2.1557,1.0532,0.0022108,-0.48145,0.698,-0.40596,0.30688,-0.43081 -1.0439,0.47127,3.7464,0.31195,0.54723,1.131,0.18973,0.074692,1.0192,1.1805,-0.41289,0.48764,-0.55806,0.72008,0.54973 -2.3342,2.0323,-0.61301,-0.001254,0.14107,0.47591,1.4873,0.71208,0.94474,2.2468,-0.4216,-0.10843,0.88869,-0.76631,0.27972 2.5911,-0.5828,0.82263,0.93414,1.2209,0.85607,-1.1798,0.74387,1.9208,-0.3132,-1.6465,0.9165,1.0909,0.061452,-0.87733 -1.995,0.73199,2.8647,-1.7946,0.056187,-0.73306,0.74822,0.58523,0.80772,-0.73497,0.48867,-0.8169,1.1174,-1.7091,1.1319 -0.78119,3.5736,0.26246,-0.57228,-0.60561,0.1055,-0.70304,-0.081844,-1.8707,-0.47663,0.45393,0.42202,0.54733,1.5136,-0.23746 4.4857,-1.4516,-1.8523,-0.76088,-0.48584,0.66765,0.89323,0.31384,1.2586,0.44457,0.55356,0.27435,-1.1429,1.8514,-0.97298 -0.95567,-2.4009,1.2604,-2.6615,-0.65379,1.2241,-0.6626,-2.5057,0.08521,1.1115,-1.8907,-0.17968,-1.8378,1.4873,-0.28565 -2.8414,-2.477,1.8792,-0.73178,0.99405,0.52148,-0.55265,-0.37632,2.1313,0.28416,-0.48156,-1.2559,0.3122,1.4178,0.47323 -3.3247,-1.1646,-0.65132,-0.70974,0.63778,0.57842,-0.29569,-1.7931,1.1861,0.5242,0.34948,0.22604,-0.28887,0.45881,-0.34677 -4.3873,-0.8254,0.96125,-2.1779,0.98657,0.39958,0.25006,-1.4384,-0.20265,-0.97034,0.41778,0.076782,-0.058522,0.39794,-0.53242 2.4423,1.4082,-1.1586,0.44051,-0.046034,0.69466,0.2581,-1.3658,0.075754,-1.4552,-0.74269,1.0521,0.072771,-0.25714,-1.8612 2.6573,1.9521,0.36747,-0.14169,-0.85857,0.48576,-0.60047,-0.83618,1.4301,-0.25054,-1.299,0.52808,-1.32,0.36459,-1.3196 0.12573,2.4394,3.3264,-0.048342,-0.34047,-0.76276,-0.96445,-0.58329,0.15475,-0.12714,0.0091569,1.5804,-0.63224,-0.073952,0.0096046 2.181,-0.8992,-1.001,0.78138,1.3826,3.0928,1.8745,-1.8589,-1.1454,-0.22826,-0.46385,0.81179,0.41901,0.57838,0.2286 4.6813,-1.2335,-1.7987,-1.654,-0.62187,-0.33024,1.289,0.084508,0.44507,1.0496,1.3012,0.74537,-1.0873,-0.58244,0.15 -1.3704,-0.40375,0.53651,2.4361,-0.085528,0.8245,1.4402,-0.75341,0.96849,-1.1592,0.51874,0.61642,0.50894,-0.57001,0.43389 -3.2558,1.6191,1.7144,-0.23344,-0.099187,-0.41035,1.3476,-0.40452,0.30411,0.26936,0.57662,1.5013,0.49711,0.075308,0.52161 2.7304,2.3215,-1.1466,-3.1222,0.39414,-0.025763,-0.81346,0.71755,0.66212,-0.65526,0.97097,-1.2459,-0.50315,-0.97635,-0.04218 -3.1627,0.2519,-1.1945,-0.57908,-0.0080137,1.7952,0.52961,-0.18841,0.86886,-1.0635,0.47834,-0.5409,0.59529,-0.38413,-0.39217 3.0278,0.39612,0.73481,0.99578,0.84803,1.8672,-0.73753,-0.90761,1.2853,-0.88652,-1.436,0.062596,-0.35669,-0.81351,0.053894 -0.33372,-0.90275,1.6961,1.1171,-0.11288,0.66664,0.0053882,0.84415,2.5912,-0.061816,0.38761,-0.8714,1.0431,0.30409,0.94033 0.81035,2.1279,0.19835,-0.54999,-1.5345,2.3299,0.27745,0.5313,-0.59797,-1.1439,0.21216,-0.61366,-0.7331,-0.72789,1.5209 -0.99474,1.3027,0.65921,0.086684,-1.5632,2.2504,0.42802,0.094945,0.16592,0.028738,1.5996,0.2064,0.96638,1.7001,0.15347 2.7198,-0.91369,-0.74683,-0.46643,2.4035,2.6022,0.46562,-1.2462,0.3139,-0.97889,-0.089245,-0.73188,0.97991,-0.75465,0.5857 -2.4356,2.368,-0.91472,0.77734,0.43332,-0.65292,0.28787,2.1655,0.51453,1.0064,-0.21347,1.098,-0.51369,-1.0428,0.33004 -1.4416,1.3774,2.2021,-0.69306,-1.5034,1.3428,-0.15598,-0.038808,0.61358,-0.42002,1.0066,0.74348,0.59726,1.1743,0.49506 2.4476,0.08055,0.14569,-3.7366,-0.33357,0.614,-0.18666,0.31019,0.40457,0.32673,0.6663,0.41782,-2.2785,1.3709,0.98418 -1.1352,3.2573,-0.51181,-0.20311,2.2033,0.54495,-0.55161,0.2735,-2.7226,-0.83791,0.84737,-0.32667,0.41087,0.51696,-1.3466 -3.094,0.79735,-3.3138,-1.2944,0.44426,-0.1761,-0.12425,-0.30841,0.066937,-0.22064,-0.82157,1.2001,0.79714,1.2403,-0.33815 -1.3195,0.42187,2.069,0.97887,-0.60066,0.35916,-0.085795,0.69476,2.2206,0.04947,0.24185,0.65925,0.29537,1.0038,0.55829 4.029,-1.7075,-1.368,-0.75863,2.1653,2.2105,2.2996,-1.3516,0.73519,-0.52109,1.2415,1.6705,0.074628,0.25566,0.33054 -3.418,-0.086294,-2.7413,-1.1513,0.35534,0.043557,-0.48626,-0.16705,0.051167,-1.7352,-0.2662,-0.2778,0.3278,-0.27415,0.4519 -2.694,-0.9098,-0.30818,0.90121,1.0393,0.77909,1.0276,-0.45045,1.6519,-1.3701,1.0099,-1.2305,-1.278,0.66934,-0.18298 -2.9127,0.50295,0.30075,-0.10754,-0.068016,1.4915,0.74801,-0.074755,1.2783,-0.099922,1.5076,0.11053,-0.62428,1.3427,-1.2083 -0.8717,1.4395,0.68657,-0.24029,-2.0191,2.7402,-0.26373,0.3492,-0.10251,-0.3381,0.84759,0.20292,0.032556,1.0131,0.72516 0.39224,3.3435,-0.48207,1.1525,-0.77869,0.77695,-0.75982,-0.51096,-0.55554,1.6267,-1.2531,0.11258,-0.99993,0.88309,-0.28122 -3.8935,-1.5516,-1.2282,-1.6453,0.66088,0.79935,-0.99902,-1.2304,0.46026,-1.3518,-0.16664,0.65275,0.085788,0.90686,-0.54563 -2.9186,-2.2889,-0.72806,-1.838,0.88238,1.2817,-2.7316,-0.11746,-0.39446,-0.3086,-1.2581,0.87917,0.59104,1.2629,1.6171 -0.81372,-3.1491,1.4387,-1.8153,0.66317,1.0932,-1.3471,-1.5035,1.1243,0.89758,-2.3661,0.4457,0.11107,1.9868,0.97171 -3.2376,-3.1043,0.12539,-0.76385,0.92481,-0.71695,-1.5275,0.11847,1.5925,-0.11556,-0.74646,-0.8692,-0.40947,1.2187,0.50341 -0.98727,-4.4232,0.82004,-0.37144,1.7901,-0.035438,-1.5666,0.73727,0.51068,1.1992,-2.6578,-0.34651,0.94846,1.5332,0.91194 -2.1614,-3.4625,-0.79996,0.58344,1.0194,-0.2223,-0.85898,-0.0618,1.1825,-0.91765,-0.98767,-1.5677,-1.1644,0.95214,0.85915 1.3158,2.2599,1.2536,0.11366,0.21594,0.31536,-0.45751,-0.74429,0.679,0.26026,-1.4047,1.2579,0.88096,-0.10053,-1.688 4.1246,-1.0218,-1.6509,-2.0457,-0.22739,0.86261,1.857,-0.1648,-0.45521,0.27905,1.4025,2.0272,-0.2103,-0.98762,-0.31613 3.27,1.622,-1.7537,-1.7069,1.3154,-0.27656,1.0966,-0.57656,0.66839,2.4532,0.51899,-0.32249,-1.5218,-0.78134,0.97099 2.8405,-0.83857,-1.9983,-0.76636,2.0735,1.3444,2.0257,-0.13763,0.61502,0.14535,1.1645,1.5595,-1.0305,-2.0392,0.57909 -0.8476,-3.8701,0.19438,0.2663,1.2102,0.1537,-1.9679,0.70492,0.65835,1.39,-2.3435,-0.24892,0.91497,1.7083,1.6753 -2.8269,-2.792,-0.022801,-2.4685,1.3207,0.18034,-2.8736,0.24772,-0.41132,-0.16154,-1.8609,0.75028,0.22217,0.92014,2.5597 -1.4967,-4.4219,-0.42455,1.0403,1.7447,-0.52777,-1.0873,0.43974,0.059446,-0.72662,-1.6739,-1.1751,-0.49194,0.60092,1.4123 -2.4576,0.94668,-2.0177,0.79293,-1.308,2.2374,1.133,0.40006,0.61679,-0.76438,0.74693,0.10782,-0.0068412,-0.71663,-0.37039 0.91819,2.7401,-1.7592,-2.0494,-1.0008,1.3435,-0.30275,0.36597,-1.6368,0.13478,1.7772,-0.48356,-0.34755,0.28387,0.12 -0.71385,-3.714,-0.57175,1.0038,1.1095,0.57386,-1.2809,0.477,0.65326,0.67298,-2.0989,-0.26836,0.88662,0.90414,1.5018 1.9551,-2.4883,-1.7734,0.63129,0.75979,0.99889,1.3427,2.3817,0.3875,1.1073,-0.83707,1.4827,0.655,-0.39057,0.30713 2.4632,1.3151,-0.3392,0.14287,1.1324,2.1559,0.11463,-2.1136,-0.9815,-1.8965,-0.94096,0.082891,0.10106,-0.61628,-1.7841 -1.175,-2.1641,-0.45531,-0.87369,0.74589,0.41498,-2.2058,0.47892,0.44669,1.4027,-1.94,1.0306,1.0104,1.2886,2.3967 3.084,1.3445,1.7279,-3.0182,1.621,-0.73056,-1.9242,1.1046,0.66083,-0.16674,0.21371,-0.25455,-0.093798,-0.47982,-0.016543 2.2987,2.0038,-2.0243,-1.5049,-0.68578,1.5171,-1.3788,0.40794,-0.3081,-1.6149,0.78308,-1.6702,-0.17529,-0.43788,-0.2343 3.2542,1.6074,0.993,-3.7135,1.672,-1.756,-0.71728,0.36847,0.43471,-0.032022,1.0829,-0.46701,-0.35772,-0.82513,0.50161 3.6113,2.6855,1.1227,-2.442,1.6719,-2.1288,-0.066921,-1.0993,0.11836,0.44375,0.31755,-0.69067,-0.68336,0.64941,0.7011 2.9283,2.3493,1.7094,-3.5484,1.612,-1.326,-1.092,0.78011,-0.35104,-0.67386,0.65343,-0.44471,-1.1985,-1.1114,-0.047904 -1.8667,0.95582,0.40087,0.043824,-0.68774,-0.30014,0.23811,1.5279,2.0467,-1.2291,0.78408,-0.44324,0.51726,-0.43224,0.89246 1.4367,1.9106,-1.8536,-2.5258,-0.22038,1.0681,-0.36067,-0.36153,0.83197,1.1673,1.1898,0.40048,0.40304,-0.3007,0.88953 3.6403,0.1534,0.66117,-0.63986,2.6596,-0.019195,0.17125,-1.6063,1.421,-0.96363,-0.071203,0.93855,0.29694,-0.25267,-2.2077 -0.99292,0.6985,-0.20439,-1.2261,-0.028051,1.7582,-0.15085,0.047341,-1.388,-2.1088,1.5783,0.61368,0.51012,1.5042,-0.56063 2.87,-3.1276,0.30528,-2.2928,2.4064,-1.8289,1.8009,2.6022,0.023119,0.56573,0.090443,2.7588,0.99673,-1.3238,0.9174 -0.57395,2.1271,-2.1029,0.045553,0.0318,1.8576,-2.1477,0.73167,0.11103,-0.61678,1.354,-0.49297,1.4483,-0.53487,-0.94909 0.62521,1.9859,-1.7813,-0.60186,-0.77717,1.2952,-1.5337,-0.62516,0.57329,0.31095,1.3532,-0.11561,1.6794,-0.69744,0.16408 2.6223,-0.14739,0.37683,-0.38289,3.9506,-1.441,-0.03613,-0.34966,0.035081,-0.22382,-0.49822,-0.10103,1.0878,-2.1677,-0.48679 3.6103,-3.0956,-2.443,-1.5434,1.1737,2.424,2.5454,0.26081,-0.85961,-2.0337,0.83452,0.83319,-0.63503,1.9172,0.45388 -2.0005,1.3934,-0.75096,2.2064,0.80612,-0.023031,0.89498,0.1326,0.40611,0.7556,-0.01577,0.95438,-0.60194,-1.1723,0.99783 -0.22909,3.5249,-0.033762,-0.35685,2.3868,-0.3596,-2.2138,1.5115,-0.68708,1.3304,0.48786,-0.88132,0.43474,-0.64363,-0.76229 -2.0957,-1.0547,-0.73253,0.14971,-0.61359,0.21582,0.50555,-1.2976,2.1079,0.4291,0.025132,0.031216,1.1148,-0.21514,-0.70992 4.414,-1.7362,0.86087,-3.1515,3.0495,-1.359,0.51707,1.8441,0.62628,0.80892,0.58749,0.77818,0.73069,-0.55414,0.36405 -2.8002,0.65128,0.36443,1.5383,0.86505,-0.06988,1.0446,2.7113,0.18434,-0.93348,-0.5213,-0.28823,-1.5346,0.32276,0.97771 3.6833,-2.9987,0.3837,-2.4015,3.1176,-0.8323,2.336,2.3916,0.063326,1.1292,0.16024,2.5843,0.55482,-0.67547,1.1065 2.3852,0.051013,0.09019,-2.0781,1.6173,-2.2424,-1.2081,1.3052,0.91011,1.2042,1.6648,-0.45224,1.0052,-1.203,0.91087 2.1011,2.8562,-1.0393,-1.1552,-0.64499,0.68466,-1.2369,-0.71741,0.4158,0.22274,-0.47827,-1.0627,0.55956,-1.0378,-0.55744 4.2428,0.42013,1.5511,-3.5849,2.8328,-1.6812,-0.20892,1.1802,-0.0017524,0.39669,0.78516,0.0031266,-1.1551,-0.34783,0.10814 4.3227,-0.099525,0.32841,-4.7231,2.023,-1.4359,0.49513,1.3588,0.50173,0.81862,1.563,0.95575,-0.80319,-0.020683,0.30651 -2.4391,1.2496,-2.9074,0.25664,-0.22027,0.81183,0.49341,2.0149,0.5198,0.90447,-0.55366,0.37046,-0.38872,-0.78943,0.00057694 -1.1143,0.45598,2.2532,-1.7991,-1.2171,2.1021,0.92601,-0.30692,0.18632,0.21185,-0.18104,-1.1903,-0.015962,1.7994,-0.37536 -1.1799,-0.89706,2.709,-3.6014,-0.34858,0.60674,1.2841,-1.3617,0.51283,-0.63822,-0.57016,-0.71853,-2.2921,1.4399,-0.069324 -4.1195,-0.32648,-2.2155,-1.8387,1.8967,-2.1296,0.20579,-0.08432,0.14418,-0.55429,-0.87401,0.13018,-0.62773,0.53592,-0.12036 4.4204,-2.2591,-2.0729,-0.66251,1.1025,1.7734,2.7684,-0.74662,-0.20472,-1.2095,0.93154,0.45367,-1.8508,0.62828,0.83025 -3.5622,-0.37886,1.4872,-2.7627,1.221,0.99065,-0.22796,-0.85906,-1.0413,-1.3382,-0.537,-0.84593,0.015927,-0.35966,0.34745 4.0483,-1.7181,-1.6835,-0.16099,1.1307,1.5722,2.5504,0.20192,0.2816,0.67199,0.9019,1.7711,-1.6643,-0.56393,-0.012345 -2.4931,0.088451,-1.1689,-3.2502,2.4784,0.84662,-0.18401,-2.2883,-2.0066,-0.095959,-0.60966,1.0394,-1.7543,0.27773,1.1005 3.0084,-0.7584,-0.94827,0.50774,0.69356,1.4986,0.29462,-1.9942,0.3805,1.5383,0.73716,-0.62181,-0.10887,0.78783,1.6983 -0.85417,-2.8895,1.521,-0.48737,0.59019,0.49488,0.85284,0.097169,2.0994,1.5764,-1.8617,-1.358,1.2405,0.50329,-0.97847 -3.1175,-1.3712,-0.56048,-1.0376,1.9026,2.3433,-0.38754,-0.79181,-0.44412,-0.92405,-0.87029,-0.9827,0.19502,1.3836,-0.59593 1.8431,-0.2767,-1.1312,0.19531,0.96975,1.0172,1.3489,-1.1899,-0.64776,1.6799,-0.67485,1.1592,0.0027659,-2.1876,1.2625 -3.4955,-2.6491,0.69919,-2.3789,0.7932,0.17408,-1.7529,0.68477,-0.089852,-1.4451,-1.046,-0.71129,0.26354,1.2564,1.366 -1.615,-1.4796,0.56052,-3.2414,-0.096623,2.4523,-0.80958,-1.4643,-0.96006,-0.2022,-1.1605,-0.69289,-1.09,2.8011,0.15394 0.33157,2.4307,3.1498,-1.4879,-0.73883,1.6249,0.32939,-0.13405,0.52073,-0.26679,0.016458,0.50178,-1.3505,0.76794,0.97343 -2.2422,1.4428,2.0819,-2.7782,-0.26535,0.80229,1.7333,-2.0549,-1.0292,-0.70743,-0.15531,-1.1536,-0.77593,0.87789,0.2522 -0.096988,3.1572,-1.6901,0.71265,-1.4431,1.9113,-0.047362,0.044192,-1.0651,-0.17096,-1.0386,-0.19809,-0.0039706,-0.58971,0.68113 1.5331,-0.18904,-0.5511,0.45062,0.9973,2.0734,-0.34502,-2.6243,0.76421,-1.4568,0.16122,-0.64657,1.5125,0.14145,0.064261 -1.9198,3.5529,1.5164,0.65139,1.8517,-0.77759,-1.0717,2.0103,-0.87233,0.45174,-0.081454,0.27581,-1.241,-0.30805,-0.33263 -0.59758,-0.77717,2.843,0.26752,-0.34353,0.27989,0.66819,0.87019,2.5958,0.27739,-0.84079,-0.93536,0.64645,-0.71643,0.93002 -2.0815,-1.126,0.81817,-1.3966,-0.49848,0.8313,-0.47084,0.014751,2.0462,0.49835,-0.19159,-1.3133,1.5806,0.2691,0.55374 -0.70156,-1.8557,0.6182,-0.75622,-0.21041,0.53675,-0.16356,0.34426,1.8123,1.3851,-1.6706,-1.2856,1.2279,0.41197,-0.17956 0.32278,-2.0429,2.0604,0.85486,0.32052,1.8474,1.2302,1.2338,1.819,0.53195,-1.3033,-1.2161,1.2585,-0.16133,0.032772 -0.82879,-2.2093,1.096,0.67845,0.063882,1.9898,0.5094,-0.29398,1.9798,1.3542,-0.88583,-1.1878,1.2232,0.36968,-0.13747 2.0206,0.33685,-3.3891,-0.88565,-0.76584,1.0997,1.3087,0.84717,1.5407,0.68547,0.79034,0.98122,-0.54912,-0.71382,-0.12021 -2.51,3.1319,0.13579,0.56186,-0.31213,0.086276,0.67782,1.484,-0.60832,0.30949,-0.049507,0.82164,0.11741,0.84698,-0.60166 -1.2316,0.51486,1.5165,-0.31755,-1.4113,1.9332,-0.088023,0.49541,1.8173,0.43492,0.37123,0.059105,1.1683,0.35397,0.94867 2.0825,2.7278,1.2357,0.35739,2.8561,-1.2778,-0.74606,-1.8113,-1.5065,1.3527,0.50769,-0.86397,-1.3153,0.44624,0.27717 -1.468,3.4785,1.1859,0.75905,0.47706,-0.41224,-0.26722,0.19287,0.066178,0.8869,-0.57201,1.5446,0.06998,0.16415,0.070823 1.6668,0.76986,1.0309,-0.67281,-0.83975,1.7398,-0.24972,1.4924,0.96271,0.63678,-0.43438,1.3401,1.8454,1.3866,-0.31899 1.6242,2.1627,-1.1004,-3.1184,1.2434,-0.30433,1.0923,-0.10042,-1.6509,-1.2041,0.61647,-0.50765,-0.43376,0.80941,1.1133 4.0825,0.21697,0.0042072,0.28746,-0.10539,-1.517,1.1228,-1.9311,0.33979,-0.66502,-0.94964,-1.0252,-1.6937,-0.54663,-0.53569 -1.9078,-4.037,-1.0474,0.51329,1.5079,-0.64594,-1.9274,1.0688,0.741,0.75595,-1.7208,-0.413,-0.021413,1.2027,0.99976 1.6031,3.3742,-2.1655,-1.4359,-0.36435,1.3314,-1.429,0.12324,-1.7975,-0.1692,0.50731,-2.2509,-0.40129,-0.38799,-0.30753 2.1264,3.0821,-2.2073,-2.7777,-0.29307,0.39399,-0.69457,0.24002,-1.281,0.52818,0.90952,-1.943,0.14878,-0.69235,0.48809 -0.15623,3.4284,1.74,0.46958,0.43004,-1.0777,-0.9085,-0.81654,-0.22402,0.40008,-0.48187,1.4098,0.4042,0.15595,-0.59182 0.98183,3.7652,-2.1462,-0.68769,0.81056,1.7156,-1.3426,-0.32388,-1.855,0.23636,0.76976,-1.7326,0.031246,-0.72459,-0.80876 -1.9984,2.0527,0.06367,0.86533,-0.54871,-0.31279,0.96675,0.98173,0.7927,-0.54237,0.047818,0.63274,1.1581,-0.91255,1.1069 1.0322,3.0938,-2.0638,-1.9135,-0.77077,0.90543,-1.6046,0.2708,-1.1059,0.82343,0.96175,-1.4906,0.21133,-0.42294,0.039113 1.0327,2.7249,-1.8161,-1.8679,-0.75994,0.10295,-1.5427,0.48249,-0.42558,0.99807,0.30942,-1.4264,0.31172,-0.88058,-0.097228 3.3473,-0.6887,0.61253,-0.3319,1.6335,1.0346,-0.81312,-0.66038,2.2051,-0.2638,-0.67042,0.8628,1.0308,0.75898,-1.3208 1.4005,2.4073,-2.9811,-2.6965,-0.82603,1.0831,0.31665,0.3363,-1.4552,0.77297,1.6045,-0.5429,-0.063312,-0.81989,1.5546 3.2561,1.0759,-0.78148,1.0161,1.153,0.26958,0.52041,-0.62942,0.40147,-1.7395,-0.16912,0.026954,-1.7338,0.1922,-1.0295 -3.4845,2.7036,-0.1438,-0.0079188,1.0797,0.84882,0.57423,2.968,-1.0149,0.51036,-0.31957,0.26192,-0.90679,-0.10042,-0.34973 1.3191,2.6866,-1.4159,-1.8373,-0.65958,0.054303,-1.9357,0.37554,-0.44542,1.5144,0.77967,-1.2672,0.70142,-0.7278,0.2065 0.64889,3.2859,-2.2109,-1.4303,0.13127,1.8911,-1.6711,-0.1038,-1.2351,0.4922,1.2085,-0.88134,0.67939,-0.56853,-0.97407 -4.6497,0.58376,-1.0956,-1.6576,2.0626,0.67157,0.3745,-0.74378,-0.85344,-0.32059,-0.097653,-0.67506,0.45326,-0.10869,-0.63751 2.0712,0.72733,0.071676,1.1592,0.1179,1.7262,-1.6942,-0.1903,-0.7084,1.1638,1.4049,-1.0874,-0.40532,1.5819,0.66914 -2.5392,-0.24061,0.24539,1.3476,0.25973,-0.15179,1.3582,-1.1473,1.2494,0.71276,1.0997,1.0121,-0.73522,-0.36965,-0.44103 0.57771,3.1151,-1.525,-1.9578,-0.13156,0.38468,-2.1423,0.45773,-1.1029,1.1887,1.3012,-1.0229,0.8259,-0.76852,-0.16247 2.1107,-0.75809,-3.6302,-0.095214,-0.80023,3.1542,2.1052,1.0858,-1.1506,-0.6022,-0.9438,0.27456,0.4024,0.80392,-0.93395 -2.9783,1.5899,-1.0491,0.7804,-0.55723,0.57818,0.94201,2.8054,0.24797,0.47441,-0.10791,0.15477,-1.0244,0.12109,-0.45622 -0.071887,2.1769,-2.2908,-1.5672,0.22632,0.8561,-1.3832,1.0527,-0.15193,1.7431,2.4005,0.36034,0.41014,-0.4488,0.055819 -3.595,2.415,1.9175,-0.51535,1.2403,-0.87959,1.3826,1.0105,-0.35905,0.57973,0.40124,0.3888,0.012332,-0.26164,0.45309 1.0604,2.3015,-1.1193,1.2349,0.013043,0.35146,-1.5742,-1.381,0.65891,0.91011,0.64966,-0.0095586,-0.17339,0.99368,-0.67602 -3.199,-0.54118,-0.48442,-1.6323,0.42661,2.4838,-0.045572,-1.4082,0.087467,-0.3471,0.15233,-0.50932,-0.012129,-0.90697,-0.61492 2.3121,3.0924,-1.8103,-2.7633,-0.28908,0.15546,-0.75881,-0.15438,-0.79301,1.8384,0.95872,-1.2568,0.055091,-0.9661,0.50519 1.4784,3.7868,-0.55379,-1.5026,1.2763,1.2985,-1.8156,-0.24451,-1.3054,0.073837,0.32805,-1.6925,0.94456,-1.1364,-0.53076 1.1563,2.364,-1.9757,-2.1033,-0.69648,0.58882,-1.1725,0.50173,-0.49403,1.5599,0.78491,-0.97397,-0.012918,-0.65672,0.51059 4.2629,-1.7609,-0.69479,-2.0417,2.3221,3.6289,1.5884,0.26203,-0.79896,-1.0451,-0.20963,0.3596,1.428,0.30107,-0.38853 -1.6693,0.6349,2.4576,-1.4832,-0.98227,2.4401,0.15136,0.18943,0.7824,-0.63575,0.7286,-0.49143,0.52868,0.15881,0.95497 3.2709,1.2272,-1.3863,-1.4628,-1.2275,0.68459,-0.82948,0.56668,0.1898,0.34052,-0.2027,0.41281,-0.34057,0.29179,-0.99729 0.54811,0.84668,-1.6758,2.2974,0.23151,1.1452,-1.7045,0.09582,1.5939,0.18136,0.7907,-0.58795,0.4929,0.90566,-0.30633 5.168,-1.0819,-0.098154,-1.6273,1.405,1.2184,-0.048721,-0.1375,1.643,0.36048,0.087185,-0.034297,-1.6976,0.59355,-1.1957 -2.0523,-1.9605,-0.24193,-3.0681,0.29408,1.406,-1.8483,-1.8021,-0.19874,-0.20238,-1.8246,0.99994,0.13306,0.27745,1.3015 -2.5941,-0.99443,-0.33344,-2.7828,0.40847,1.7003,-0.87708,-1.7662,-0.18482,0.13582,-0.80182,-0.1155,-0.028702,-0.31848,0.59696 3.3232,0.32099,-1.6906,0.40972,0.75395,1.722,-0.080297,-1.6486,0.68501,-0.36273,-0.31403,-1.0358,-1.0313,0.71241,0.025637 1.5979,1.664,2.6917,-1.4278,0.201,0.1057,-1.2198,1.0552,1.2091,-1.8157,-0.76422,0.78434,1.2404,-1.2734,0.69561 1.1984,1.6398,0.44396,1.6782,1.4348,0.32311,-1.5933,-1.9765,-0.58784,-0.18974,-0.18996,1.0443,0.15549,0.45456,-0.17369 0.81943,2.0895,2.3311,-0.94772,-0.078792,0.224,1.069,0.88503,0.66693,-0.32724,-1.2228,0.93477,0.097084,-2.4819,-0.47958 -1.4853,1.3336,3.2114,-0.48847,0.32885,-0.35208,0.30079,-0.011711,0.42577,-0.76776,0.14515,0.84324,0.69999,-0.27663,-0.069748 -2.357,1.4804,1.4671,-1.4827,-0.5167,1.1633,1.881,-1.0762,-0.4593,-1.1389,0.18508,-0.34044,0.032387,-1.8415,0.67639 -1.8598,2.2256,-1.7171,1.3261,0.86221,0.38376,-0.37846,2.3542,0.11797,0.57232,-0.84064,1.0025,-1.3726,-0.087819,-0.59876 -1.9824,0.96186,0.93807,1.3281,0.49107,-0.77354,1.8976,-1.8441,-0.98981,2.0609,-0.48304,-0.20662,-0.74483,1.0726,-0.41111 -0.20147,2.9091,0.45572,-0.28411,1.3805,-1.0336,-1.7649,1.3168,0.082929,-1.2836,0.68391,-0.27217,1.3178,-1.0585,0.84506 -1.6949,0.92348,1.4184,-1.3211,-0.97927,0.80374,1.4708,-0.70192,1.6039,0.48145,-0.28684,0.040419,0.28821,-1.7355,0.40245 2.6277,1.1224,-0.73895,-0.26881,-0.70946,1.1311,-1.2903,-0.67818,1.6347,0.57259,-0.59052,0.27736,0.97841,1.5162,-1.0408 -1.3927,3.0191,-1.4546,1.3278,-0.83453,2.1522,0.4074,0.081743,-1.1466,-0.37359,-0.44656,0.94306,0.11387,0.3144,-0.60185 -1.6968,-0.26896,2.1054,0.80049,0.10803,-0.326,0.53674,1.3309,2.5601,-0.3924,0.90626,-0.3658,-0.36041,0.29929,1.3661 -0.5067,1.8621,-1.7129,1.8924,-0.51739,1.0035,-0.67134,0.3835,1.3021,-0.1813,-0.04411,0.85284,0.54439,-0.43157,-0.23809 0.24407,2.63,0.68777,1.9336,0.11127,0.19163,-0.87172,-0.28168,0.50021,1.5956,-1.0894,0.94753,0.041563,-0.96325,0.18496 1.5066,2.7751,0.73725,-0.30989,1.09,-0.74358,-1.5742,-0.91088,0.81176,0.021739,0.28114,0.67382,1.2885,-0.21631,-0.70111 -1.7908,0.67982,1.6872,-2.5067,-0.94016,1.7145,1.4614,-1.2282,0.25116,-0.84843,0.066181,-0.77691,-0.01255,-1.3032,0.37271 1.1766,0.68518,3.4312,-0.85228,-0.30698,0.9237,0.59771,-0.19939,1.4217,-0.93243,-0.23491,1.2109,0.92565,0.095029,-0.50274 2.6668,0.21784,-1.5125,1.0033,-0.79164,3.4675,0.4838,0.34403,-1.0017,-0.25803,-0.42641,1.0012,0.24917,1.6731,-0.44209 -1.9107,0.72204,2.0514,-2.0617,-0.96425,1.1826,1.4044,-0.88203,1.1905,-0.41501,-0.050666,-0.38481,0.043013,-1.2579,0.6098 -2.1784,0.017224,1.7649,-1.5317,-1.0747,0.94158,0.72528,-1.8403,1.2361,0.084016,0.38303,-0.12076,0.88809,-0.022652,-0.31889 1.7563,1.5644,-2.3894,0.39108,0.092872,1.3854,-0.1571,-1.5727,-0.46634,-0.37035,-0.71721,0.46962,0.46675,-0.77225,-0.84748 -1.9703,-0.055845,0.32229,0.81993,-0.79455,1.176,0.80721,-0.77184,1.9778,0.25274,1.0227,0.098955,-0.3937,-0.22645,0.64024 2.8092,0.9847,-0.42116,-1.2989,2.3986,-1.1292,-0.39606,-1.285,0.22891,2.0021,1.6308,0.3729,-0.77948,-1.6854,0.81405 0.16488,1.7862,-0.79689,2.3704,-0.64141,0.70627,-0.64007,-1.5656,0.30373,0.067605,-0.39084,0.63405,-0.48208,0.7208,-0.11409 -2.9131,-1.2115,-1.3655,-0.7251,-0.80954,-0.23231,-0.38284,-0.23899,1.2947,0.094606,0.26566,-0.69484,0.55214,-0.19586,0.36879 -2.9684,1.9695,-1.6562,-0.42161,0.2051,0.64036,0.991,1.27,0.27515,1.3921,0.079044,0.94363,0.5726,-0.54319,0.19912 -1.9934,-1.5879,-0.32853,-2.115,-0.86963,1.8457,-0.68773,-1.5485,0.73782,0.29015,-1.0486,-0.25856,0.80038,0.61274,0.21636 -0.055061,3.491,-0.24746,-0.17787,2.586,-1.431,-2.2699,0.75813,0.13072,0.64531,1.1366,0.055239,-0.44787,-0.75842,-1.2198 -3.1641,0.61532,0.59606,-1.0135,-0.28904,1.8899,1.1339,-1.5502,0.052897,-1.4861,0.59685,0.47495,0.4705,0.12569,-0.13288 -2.4992,-0.28867,-3.5854,-0.17227,0.39622,0.89144,-0.75846,-1.1992,-0.71893,-0.85525,-0.59853,1.9682,0.50406,0.68217,-0.54107 -2.4757,0.90872,-2.0045,1.1251,-0.15492,1.2198,1.2114,-0.19974,0.50311,1.5312,0.46431,0.15842,-0.33598,-0.56828,-0.46701 0.2095,0.17493,1.6369,0.93863,-1.2253,1.6699,1.4114,-1.513,1.7236,0.26666,-0.25492,0.34829,-0.58185,0.044472,0.43225 -2.9717,1.0347,-0.8115,-0.46944,-0.34104,0.36646,0.71037,-0.4482,1.0743,1.0989,0.67336,0.51261,0.56803,-0.49844,0.071594 -2.3039,0.65381,0.99907,-0.61514,-1.5484,0.31226,1.6222,-1.4626,1.027,0.11865,-0.086779,0.52734,1.0821,-0.10155,0.060644 -1.44,1.7052,0.6199,2.088,0.29674,-0.79176,0.038082,0.57719,1.345,-0.043192,-0.37798,1.6248,-0.15643,-0.60893,0.34867 -3.2761,2.1013,-0.44891,-0.69592,-0.22314,0.79729,1.486,-0.36141,-0.98085,1.6167,0.75052,1.1929,-0.0056555,0.39544,-0.47907 -1.1319,-1.7265,0.82481,1.1087,-0.47149,1.4288,0.52797,-1.7014,1.5907,0.63274,-0.24594,-0.90944,0.23412,-0.81319,0.52338 -1.111,-3.2049,-0.36098,0.45249,1.1726,0.57126,0.69363,-0.65742,0.21073,0.046292,-1.342,-1.1752,1.3763,-1.3664,-0.50188 -1.854,-0.24243,2.14,-1.8703,0.88118,0.94446,0.5927,0.96261,-0.37286,-1.0615,0.41147,-2.4146,1.1854,-2.051,0.56792 -2.8935,1.0655,0.2201,-0.79112,-0.032768,1.8952,1.3621,-1.2057,-0.35366,-0.31254,0.088061,0.83026,0.14091,-0.62241,0.36166 4.0466,0.94756,-0.45216,-0.72628,2.912,1.6001,0.72734,-1.9833,-1.0981,-0.26076,-0.20657,-0.96104,0.42907,-1.131,-0.61846 0.79962,3.502,0.3368,-1.0516,-0.61532,1.0494,-0.070166,0.62988,0.04303,-0.56817,-0.90085,0.55466,-0.11965,-1.534,0.55814 -1.2692,0.69753,-2.8328,-1.3763,1.1211,1.239,-0.20347,-1.342,-2.2635,1.0474,-1.4411,1.6851,-0.16791,0.79805,0.95194 -1.2212,1.5959,-1.3055,1.6437,-0.42304,1.3775,-0.67288,0.82635,1.8735,0.33722,-0.17817,0.66559,-0.057979,1.2188,-0.34518 -3.0467,0.66268,0.012991,-0.72788,-0.74941,1.1014,0.8504,0.22165,1.2576,-1.3495,1.1109,-0.13055,0.81782,-0.763,0.74335 0.48897,1.2773,1.0217,0.33524,-0.49728,1.4986,2.1236,-1.0297,0.87887,0.09261,-0.71043,0.65785,-0.21128,-0.31062,-1.2866 -2.7457,-1.3363,-0.1564,-1.7043,-0.44547,0.70096,-1.2765,-1.5232,1.3107,0.16328,-0.38872,0.33127,0.87793,0.48218,-0.15291 -3.3306,0.76668,-1.9041,0.22319,0.59503,1.1438,1.8496,-0.54476,0.35401,-0.92491,-0.49823,-0.69071,0.20663,0.7184,-1.2289 -2.7631,-1.0151,-1.3866,-0.10275,0.43512,-1.5577,0.050832,-0.72625,1.7328,0.42732,-0.39952,-0.31209,0.15245,-0.44723,-0.045016 0.96679,1.9737,-2.2346,-0.77509,0.057815,1.3581,-0.43749,0.19097,0.47934,1.1139,0.06511,-0.90798,1.7506,-1.7672,0.44318 -2.5703,-1.6906,-1.6747,-0.64807,-0.00094942,-0.56691,-1.9584,-0.94516,1.3266,-0.34111,-0.799,1.4787,0.15062,0.60329,0.76844 -2.4282,-1.0962,-2.9787,-0.77017,-0.22765,0.0011897,-1.7735,0.45422,0.55162,-1.324,-1.0182,0.94161,-0.34187,0.39774,1.2105 -2.6147,-2.2836,-0.73594,0.60058,0.5938,0.97581,0.60544,-0.75838,1.0178,-2.1159,0.39583,-1.001,0.74348,-0.072689,0.47654 -1.7465,-2.7698,-0.63619,0.75073,0.20606,0.15323,-0.21643,0.14044,1.8551,-0.20764,-0.67252,-1.6422,-0.16244,0.19692,0.15376 -1.782,-2.8357,0.19446,-0.12711,0.011074,0.35067,-0.64368,-0.91641,2.21,0.25268,-0.6935,-0.50729,0.63467,0.18767,-0.16809 -3.3735,0.169,-2.1103,-1.1079,-0.029171,-0.2855,0.022943,-0.30792,1.0507,-0.42353,0.041392,-0.22641,0.39042,-0.040827,-0.45791 2.5281,3.6913,-0.056615,-2.8075,1.5575,-0.1022,-0.60604,0.69867,-1.7603,-0.9857,0.58286,-2.3018,-0.93922,-1.0234,0.59733 1.7512,-1.7926,1.837,1.1413,0.84777,3.3199,0.58324,0.80107,0.19828,-0.53139,-1.0295,0.45992,1.5347,0.70189,0.052839 -2.9162,0.88342,1.4473,-0.39173,0.058041,-0.57479,1.3135,-1.326,0.36574,1.5613,0.71908,0.95478,0.014738,-0.33389,-0.12413 1.4331,0.62901,0.81697,0.97181,0.74671,0.38543,-1.263,0.78433,2.3394,0.0067774,-0.76945,0.71378,1.2792,0.44187,0.98396 2.2737,0.19877,1.0153,0.11343,0.60967,0.60977,-1.79,-1.3146,2.3294,-0.47899,-0.27704,-0.30575,0.58138,0.035854,0.41434 2.977,-0.52784,1.9347,0.46974,0.51094,2.0441,1.1017,0.9323,0.84341,0.027146,-1.4432,1.9732,-0.32995,1.3207,-1.1769 3.2043,0.40511,0.83064,0.35841,1.3836,2.6694,-0.64225,-1.3179,-0.59518,-1.8146,-1.7526,0.42691,0.99545,1.0936,-1.3238 0.20485,0.19277,2.7253,-2.0252,-1.2344,1.637,1.1031,0.6155,1.7409,-0.25377,-0.24348,-0.27635,-0.59251,-0.34939,0.44423 -3.7543,0.27259,0.67741,-0.53907,1.1552,-0.86886,1.0683,-0.14088,1.6147,0.94234,0.70492,-0.10615,-0.088334,-0.19929,-0.088304 -1.2386,-3.4255,0.69553,0.15464,1.2052,0.18589,-0.41319,0.14886,1.4061,0.82779,-1.8486,-1.7219,0.65019,-0.095572,0.40873 -1.5805,-1.45,-0.66368,0.75799,2.4677,0.064355,0.39092,-2.0322,0.87237,0.47357,-0.16345,0.14125,0.42008,-0.64332,-0.14538 1.3706,0.81549,2.215,-4.4906,1.2878,0.38908,0.39581,-0.040034,-1.3083,-0.29243,0.42194,2,0.41871,1.478,0.13087 -1.716,0.38995,-1.4525,2.0136,0.41603,-0.20842,1.4235,-0.53146,1.3642,0.4595,-0.3051,0.56527,0.11185,0.34459,0.15369 2.4751,-0.71814,-3.3894,0.61108,0.14079,3.6678,2.1582,0.72958,-1.2366,0.25699,-0.46114,1.0222,-0.28697,0.075246,-0.94615 -2.3485,-1.8865,1.3183,0.58806,1.4503,0.99321,0.45032,0.092815,2.1826,0.73931,0.75168,-1.2966,-0.17646,1.8524,0.18433 -2.1659,-2.9139,-1.7788,0.61329,1.8779,-0.6914,-1.6902,-0.10261,0.61305,0.73252,-1.8479,0.6146,0.051861,1.0095,1.12 -0.18463,3.1197,0.031562,-0.93984,-1.2201,1.0927,2.0711,-0.17032,-1.1761,-1.1693,-0.55516,-0.5507,-1.9223,-0.39013,0.17897 -2.0053,-1.3131,1.6783,-1.403,0.29087,1.4624,-0.31978,-0.28514,1.784,1.0198,0.27806,-0.67387,1.0982,2.3419,-0.13775 1.4761,0.90016,1.6266,-0.73883,0.19234,1.5021,0.72418,0.92926,1.3394,-1.8233,-0.91231,1.7886,1.0688,-1.0409,-0.13284 1.4355,2.1307,-2.1571,0.28102,-1.3092,1.0589,-0.87521,-0.7737,0.58818,0.56282,-0.46206,-0.38312,0.7607,-1.0662,-1.0336 -2.2666,-2.0177,1.2503,-0.94385,0.34731,-0.20138,-1.0268,0.59082,1.9153,0.74996,-0.66029,-1.2365,1.0985,0.31119,0.11409 -3.0871,-0.908,0.31901,-2.5567,1.4077,0.036707,-0.093198,-1.3999,-0.838,-0.66129,-0.72084,-1.4183,0.74096,-1.3811,1.0529 -2.7777,0.17922,0.99016,-0.68875,0.055716,0.016598,1.0397,-0.40421,1.4997,-1.3786,0.74033,-1.1116,1.4727,-0.35245,0.54494 1.8524,2.6678,0.26067,0.12416,0.94086,-0.42114,-0.95,-1.9354,1.3938,0.85854,-0.6381,0.1614,0.34147,-0.3474,-1.1297 -4.058,-0.074852,-1.0806,-1.0916,1.2564,-0.57634,0.50071,0.10788,1.3396,0.084134,0.25786,-0.32592,-0.64448,0.27701,-0.77059 -0.38562,1.6221,-0.069737,2.3618,-0.55745,0.52308,1.5735,-2.0815,-0.75206,0.21965,-0.77908,1.0955,-0.25846,0.068133,1.0019 3.8938,0.92033,-1.6105,-3.4929,0.18867,-0.2808,0.80526,0.2432,0.93395,0.96655,1.5229,0.71762,-1.2614,-1.1624,-0.54602 2.0877,-1.1404,2.9512,0.36695,0.13024,1.1935,0.31981,1.0408,1.7661,-0.14252,-0.96954,0.10794,0.11285,-0.020512,0.98706 -0.96236,-1.4945,0.7056,-2.9513,-0.26188,0.60155,-0.47896,-0.41923,0.42448,-1.5605,-1.1028,-0.25577,1.3847,-0.42996,0.55901 -0.4164,-0.0099335,0.53,-1.9378,-0.014022,0.54303,1.0987,0.66004,-0.26948,-1.871,0.045768,-0.87781,2.1444,-0.29397,0.39668 -2.0536,0.3909,-4.401,-0.4103,-0.46519,0.99896,0.016571,-0.011494,-0.024674,-0.21519,-1.6881,0.056396,0.37457,-0.0058464,-0.13637 -0.95335,-3.5342,0.98051,-0.51201,0.28684,-0.6985,-1.1811,1.2971,1.3623,-0.26362,-0.92034,-0.91084,1.004,0.21784,-0.47921 -0.091634,-3.5972,0.62466,-2.3741,-0.13437,0.73097,-1.157,1.891,-0.0768,-0.39143,-2.0999,0.22049,2.0136,-0.30095,0.01983 -2.6032,1.8893,-1.2423,-0.54113,-0.96801,1.4096,1.8667,-0.73123,-0.99518,0.89456,0.24248,0.36048,1.0466,-0.34701,0.22905 -1.5766,-1.6331,0.1875,-0.29374,-0.88265,-1.009,0.53834,1.1632,0.59734,-1.8192,0.214,-1.7196,0.39768,-0.53909,-0.64394 -1.2427,-2.4407,-0.21031,-2.3919,-0.028272,0.034216,-0.83879,-0.19794,0.52022,-1.2783,-1.6466,0.24674,1.4941,0.02854,0.89979 1.1385,-0.8862,-2.6727,-0.26428,0.84739,2.0423,1.5699,0.48848,0.16128,-0.23229,-0.076066,1.8243,0.42573,-0.90705,1.6526 -2.0387,-1.9407,0.3534,-0.37117,-0.23659,-1.0172,0.16796,1.1468,1.1517,-1.6512,-0.076724,-1.5449,0.18808,-0.29894,-0.50493 1.9382,0.56322,0.5363,1.1793,1.1601,0.65421,-1.7442,-1.0687,2.029,-0.35404,-0.67253,0.094362,1.0838,-1.0807,-0.22521 0.2202,3.9137,0.20201,-0.31727,-0.37684,0.93554,0.75925,-0.27794,-2.0352,-0.41439,-1.8882,-0.29308,-0.26819,0.15647,-0.20823 -2.9544,1.4033,-2.4633,0.35954,0.26255,1.9082,1.678,0.60598,-0.082549,0.82313,0.077319,-0.21416,0.40375,-1.18,-0.43458 -3.2545,0.38161,-0.41633,-1.5644,0.35543,0.59083,0.49862,1.1955,1.0605,-1.5322,0.25378,-1.7444,0.52226,1.0918,-0.68411 -0.094528,2.4249,-2.4899,0.31856,-0.74395,2.4414,-0.7333,0.44103,-0.89169,-0.1595,0.41592,-0.9603,-0.018652,-0.13366,-0.41214 -2.8474,-1.4451,-1.5169,-1.3258,1.6058,1.2763,-1.2155,-0.081088,-1.3384,-1.7538,-0.52178,0.94877,-0.54725,1.0939,0.51243 0.13275,2.4526,-0.90812,-0.060943,2.5657,0.014268,-1.2009,0.19569,-1.0722,1.9012,1.4845,-1.2357,-0.71477,-0.35526,0.21174 -1.2449,-1.5042,-2.3073,-1.0327,1.2569,-0.42944,-0.52263,0.36831,0.12689,-1.4338,-2.3568,0.9818,-1.1194,0.90526,2.2438 -0.66674,0.99494,0.15733,1.9648,0.15001,-0.48654,-0.22689,1.3004,1.9978,-1.229,-0.20519,0.55739,-0.34996,-0.86132,0.62409 -3.1147,1.4982,-1.6005,-0.25119,-0.22627,1.8201,0.91212,0.48397,0.16485,0.33142,0.77192,-0.66412,1.2497,-0.86649,-0.27858 2.2078,3.3754,0.012661,-1.2786,-0.53761,-0.010976,-1.188,0.56648,0.0743,0.79414,-1.5598,-0.71448,-1.0449,-0.053069,-1.2648 -4.0596,-0.031603,-3.3374,-1.6312,2.8471,-1.2935,0.22232,-0.15437,-1.2262,-1.4404,-2.1278,0.60925,-0.56501,0.58175,0.3595 -2.9808,-0.67158,-3.372,-0.70387,2.3311,-0.58755,0.040512,-0.80066,-0.18669,-1.9839,-2.4709,0.71376,-1.2004,-0.29661,1.1014 -4.2369,-0.35081,-1.2297,-2.0296,1.1261,-0.45775,0.62552,0.13847,-0.22169,-2.3359,-0.42455,-1.6012,-0.4436,0.073473,-0.1968 3.6353,-0.18161,-0.73407,-0.52143,1.7709,1.5702,2.2291,-1.4532,0.29232,1.0502,0.45354,0.317,-1.0948,-0.8363,1.0649 -4.1475,-0.076079,-2.0227,-1.8454,2.0802,-0.62883,-0.24351,-1.2852,-0.61223,-0.37761,-0.61032,1.2738,0.12698,0.40561,-0.37431 2.7254,1.6995,1.0498,-0.37947,1.2053,-0.85563,-0.96988,-1.875,1.9079,0.70709,-0.02741,0.019419,0.42251,-0.22444,-0.82356 -2.9662,1.8274,2.3829,-1.2275,0.92796,-0.44354,0.86878,1.1574,0.28402,-0.66477,1.1704,-0.86251,0.67082,-0.87757,0.69918 -3.9864,-0.25787,-2.5905,-1.5575,2.1296,-1.2494,-0.82258,0.030784,-0.94307,-0.56605,-1.1497,1.0842,-0.81257,1.0447,0.26517 -4.5474,-1.2764,-0.21552,-3.0175,2.9379,0.22982,-1.0553,-0.37694,-1.7731,-0.89858,-1.1594,0.37324,-0.94758,0.098882,0.58436 -4.0337,-0.42144,-0.43622,-2.5869,1.5902,-0.78954,0.5362,0.77416,-0.1912,-1.8927,-1.0957,-1.6859,-1.2844,0.15937,-0.15362 -2.2308,1.6021,2.0837,-1.1568,0.83964,0.23638,0.33926,1.9466,0.36207,-1.203,1.8821,-0.69298,-0.22701,0.15565,-0.23509 -3.8009,1.0704,1.4363,-1.984,1.2015,0.20215,1.1014,0.2571,-1.1073,-0.93347,0.44473,-2.1008,0.18308,-1.7664,0.65242 -0.34986,2.8105,2.0313,0.60373,-0.3588,0.06544,-1.136,0.091121,0.92467,0.044226,0.13737,1.414,-0.2,-0.23538,0.82914 2.025,1.2452,0.016663,-0.2366,0.36116,-0.45921,-1.3979,-0.8057,2.4068,-0.019296,-0.7855,0.18142,0.62361,-0.55823,-0.045235 -3.2622,0.42538,-0.62034,-2.5016,1.9437,-0.50249,1.288,-0.69939,-0.63844,1.3586,-0.61008,0.51451,1.1715,-0.37539,0.36074 -0.82119,3.4049,-0.049807,-0.26009,0.40487,-0.15586,-2.1126,1.7096,-0.17738,-0.92587,0.35712,0.49521,0.84681,-1.3596,0.08579 -4.0448,1.4461,-0.28823,0.21229,1.1909,1.477,2.5527,0.48823,-0.16094,-1.0286,-0.14462,-0.52996,0.1723,0.015039,-0.5504 2.99,2.1557,-0.25087,-0.7874,2.8003,-1.0423,-0.26397,-2.2631,0.35532,2.1596,0.84237,-0.44168,-0.60548,0.19102,0.46668 -3.6751,-0.2318,-1.7635,-1.955,1.4794,0.20587,0.023357,-1.3365,-1.236,0.24446,-0.67935,0.41306,0.95107,-0.44621,0.20239 -4.4523,-0.22364,-2.0552,-1.6353,1.2618,-0.42129,0.69604,-0.7939,-0.21059,-1.0715,0.014818,0.20603,0.40545,0.46794,-0.88152 1.5148,0.7663,3.2895,1.68,2.3897,-0.15263,0.21964,-0.25618,1.043,-0.7923,-0.63816,1.3218,0.63847,-0.22899,0.22165 3.6047,-0.81197,-1.4866,-2.1379,1.3716,1.0134,2.1786,0.15107,1.6733,-0.12976,1.3781,2.5953,-1.2395,0.22293,-0.50702 4.4917,-0.57193,-0.87989,-1.7989,1.3879,2.0295,1.4739,-1.1101,-0.16019,-1.1342,0.7842,-0.97279,-0.4727,-0.38778,0.49466 -3.3531,-1.503,-0.64041,-0.65551,2.0492,-3.2769,0.78349,-0.0082978,0.083193,-0.13949,-0.78961,-1.2646,-0.56116,0.24558,0.11275 -3.6812,-0.60609,1.2335,-0.59488,0.41213,-2.1814,1.1271,1.0816,0.94236,-0.92193,0.44176,-1.1985,-0.44695,-0.15971,0.069723 0.74323,-0.75613,2.5513,1.9636,2.4713,-1.1349,-0.92565,1.0474,0.65815,-2.5599,0.17506,0.78764,0.036832,0.49394,0.97938 -3.3818,-0.59947,0.81686,0.4098,0.04805,-1.5895,1.3585,1.0672,1.2672,-1.3103,0.33011,-1.0168,-1.8293,0.21189,0.33565 4.836,-1.2138,-0.60489,-2.4751,2.9456,-0.53766,2.2981,0.68908,0.454,1.2936,1.3172,0.67548,-2.6442,-0.73694,0.8209 -2.6741,-0.44296,2.0997,0.089413,0.73919,-1.6954,1.6046,-0.34515,1.8205,0.32052,-0.073343,-0.064229,0.59098,-0.89424,0.22294 0.69314,1.2903,0.64839,2.3647,0.5027,1.4698,-1.5871,-0.19857,0.57412,-0.081798,0.64681,0.42013,-1.0518,0.44136,0.59177 -2.4461,-0.33149,1.9902,0.25467,0.81063,-1.1302,1.4512,-0.55315,2.1462,0.54401,0.061436,-0.18487,0.42633,-0.80708,0.19846 -1.7101,1.1929,0.45605,-0.98097,-1.9156,0.78284,1.5557,-0.78673,0.20775,-0.56181,0.12944,0.33611,0.33208,-1.877,0.40171 -0.39883,2.485,1.7762,0.031674,-0.99326,0.74295,-0.40537,-0.48579,0.99567,-0.097004,-0.21385,1.516,-0.032853,-0.50208,0.35741 -0.24221,3.0558,1.9876,0.52118,0.099542,-0.47928,-0.26705,-0.38773,0.44016,-0.05678,-0.68793,1.1086,-1.1215,-0.45764,0.97326 2.5635,1.5022,0.4212,-0.53357,1.4861,0.019146,-0.16875,-2.9612,0.87987,0.54,1.6244,-0.36911,-0.59355,0.35021,0.80898 -2.1522,3.5322,1.2402,-0.53646,-0.63272,0.59492,1.147,0.30065,-1.0346,0.38261,-0.31296,1.1061,-0.1724,-1.225,0.84912 0.3607,3.5814,0.23769,-1.5569,1.0982,-1.0119,-1.5667,-0.44697,-0.34777,-0.7856,0.097735,-0.036224,1.78,-0.119,-0.6474 -0.01325,0.64227,0.059011,1.1237,2.4362,0.86163,-1.162,-1.1321,-0.40621,-1.4532,-1.6987,1.0135,1.3616,0.10484,-0.12615 4.5152,-0.42017,-0.98595,-0.14801,2.847,2.217,1.0729,-0.82996,-0.34902,1.5332,0.26735,-0.48216,0.4676,-0.53283,0.057314 0.96565,4.1086,-0.34411,-0.7972,-0.14579,1.3604,-0.44344,0.28334,-0.91883,-0.027735,-2.0095,-0.63437,-0.35346,-1.6126,-0.45017 -4.0741,-0.11858,-0.086319,-1.0184,0.08042,-1.3813,1.2368,0.39593,0.6118,-0.35335,0.80309,-0.66518,-0.43881,-0.77586,0.092092 -3.524,1.0888,0.56294,-0.096081,0.09265,-1.345,1.611,1.5399,1.2036,-0.99936,0.6088,-0.31284,-1.0374,-0.64355,0.10482 -3.8807,0.53891,0.39635,-0.67919,-0.097464,-0.88574,1.4125,0.38262,0.88995,-0.39822,0.84725,-0.22819,-0.11128,-0.71103,-0.27983 -3.0793,1.0332,-1.8121,-0.21199,-0.87743,1.533,1.238,0.18845,0.61927,-0.065302,0.78325,0.15908,0.43378,-0.30571,-0.96913 -0.89076,3.5049,-1.7223,0.17579,1.2957,2.0917,-0.71457,0.61584,-1.3562,-0.21077,-0.19752,-0.32473,0.045376,0.12222,-1.7444 -3.3865,2.347,0.28734,-0.54606,-0.11792,0.28375,1.2193,0.96249,-0.21874,1.4127,0.65972,0.63133,0.2501,-1.3843,0.47604 0.97527,1.8209,2.1488,0.79535,1.7091,-1.2865,-1.1663,0.20438,1.254,-0.30817,-0.63066,1.3708,0.27387,-1.616,0.39368 2.5002,1.1738,-0.40972,-0.32045,1.7028,-0.7434,-1.2171,-0.81394,-0.24326,2.1066,1.0733,-1.7891,-0.77456,-1.0576,1.0449 1.8568,2.2194,0.07953,0.69436,0.018404,0.87206,-0.60875,-0.79743,1.174,0.74588,-1.7516,0.25396,-0.91185,-0.6239,-1.3669 -2.1327,1.3687,2.1344,-1.4771,-0.88441,-0.027778,1.7692,-1.2475,0.9415,0.26773,-0.12531,0.55937,0.20912,-1.0694,0.61566 1.3367,1.4867,1.2444,2.4935,1.1251,0.59392,-0.95779,-1.8541,0.70729,-0.18566,-0.2883,0.97312,-0.26411,0.17141,-0.30804 -3.2258,0.25771,1.4825,-1.0449,-0.41248,-0.22956,0.95969,-0.45275,1.3332,-0.49388,0.97762,-0.09821,0.14638,-0.72914,0.51433 2.5709,0.28747,-0.80671,1.5597,0.92725,1.8012,-0.82709,-1.0413,-2.0113,1.2221,1.7926,-0.86025,1.5913,1.996,0.51987 -3.6783,0.68796,1.3194,-1.6015,0.063806,0.58239,0.91025,-0.056165,0.5481,-0.40853,0.98222,-0.56201,0.2826,-1.5131,0.33375 -4.0346,1.3457,-0.34878,-1.1198,0.34651,0.025101,1.7534,0.043523,0.5998,-0.33553,0.74785,-0.11215,0.36828,-0.3076,-0.90515 1.3103,3.0802,1.0487,-0.040179,-0.081047,0.83585,-0.16041,-0.51951,-0.29749,-1.3834,-1.2153,0.46422,0.99748,-0.30201,-0.50259 -0.10954,2.037,1.1483,1.6785,-0.28287,0.71259,-0.74797,-0.49297,1.6094,0.45535,-0.50923,1.2804,-0.21979,-0.62818,0.90859 -1.9172,1.4167,1.9398,-1.4605,-0.95049,1.4359,1.5246,-1.0152,0.55613,-0.34439,0.40173,-0.22945,-0.39776,-1.1107,1.0089 1.9747,2.4313,-0.36258,-0.04515,0.047652,0.46485,-1.2926,-0.69895,1.2988,0.58581,-1.0229,-0.14447,0.9686,-1.5393,-1.2954 0.42525,3.0216,-0.2972,1.4924,-1.271,1.7867,-0.43649,-0.18814,-0.6254,1.1883,-1.5488,0.25965,-0.78354,0.10865,-0.0056019 -1.7391,4.4251,-0.067359,0.085671,0.91945,1.5535,-0.46991,1.2512,-1.9126,-0.51094,-0.33601,0.71129,-0.20719,-0.56146,-0.89549 -2.7064,1.7444,-1.4851,0.39789,-0.076767,2.25,2.1325,-0.66937,-0.68566,0.81139,0.10673,0.70218,0.12988,0.4232,-0.67216 2.8722,1.6343,0.94664,0.8596,-0.18045,-0.65947,-0.50814,-1.8958,0.44399,-0.16976,-0.27497,-0.79949,-1.776,1.546,0.57982 3.6724,1.2822,1.5253,-1.5705,0.1424,-0.58945,-0.75287,1.3186,0.68476,-0.52632,-0.37453,1.0595,-2.1412,-0.694,-1.1775 0.7875,1.5194,2.5605,-1.2323,-1.4609,1.4085,0.56291,0.31807,1.3948,-0.91136,-0.55144,0.77572,-1.2508,1.301,0.13665 -1.3684,3.326,1.4328,-1.1642,-0.32866,0.77644,0.59081,-0.51678,-0.69961,0.61077,-0.54403,0.41439,0.17164,-0.39032,0.38316 -3.3744,2.1463,-0.52469,-0.16115,0.24605,0.73736,1.7058,0.44841,-0.35578,1.0554,-0.059637,1.0046,0.4328,0.54921,-0.020371 -1.6963,-1.1911,0.96888,-2.0453,0.50961,2.8639,-0.80419,-0.98878,-1.3058,-1.6301,-0.3217,-0.59365,-0.43274,2.195,-0.34325 -1.2524,2.2108,0.1875,0.07844,-1.529,1.9462,1.2613,-0.93824,0.27827,-0.093842,0.23273,-0.10221,-0.4005,0.038357,0.53304 3.6859,2.8414,0.27643,-2.1121,0.083567,-0.1489,-1.057,-0.81635,0.86297,-0.086859,-0.29022,-0.034518,-0.95248,-0.22738,-1.5025 3.7991,1.1182,-0.8886,0.38261,0.19022,1.9447,-0.37945,0.61637,0.76947,-0.39916,-0.76341,0.15421,-2.0066,1.0675,-1.791 2.7963,0.51341,2.7922,0.77922,1.2466,-0.053849,-0.21863,-1.8211,0.90824,-1.0442,-1.5179,0.90536,-0.93407,0.041216,-1.4946 1.1642,-0.013492,2.9144,0.19879,-0.020954,1.3665,1.3973,-0.43505,1.8832,0.0041233,-0.5178,-0.043827,-0.94399,-0.86069,0.75797 0.34027,1.2989,2.2351,1.3257,-0.093467,1.2602,-0.68968,0.39186,2.2369,0.14754,-0.40599,0.81093,0.53585,0.53291,0.79632 1.582,1.1662,1.4616,0.27998,-1.5106,1.1737,0.18039,-0.50769,1.4401,-0.94893,-1.2457,1.6333,-0.48246,0.041551,-0.96849 3.51,0.52077,-0.56338,-2.3024,1.834,-0.72135,0.35536,0.75462,0.069444,2.7249,1.2495,0.57044,0.90034,-2.3016,0.17968 -0.89143,1.016,2.5508,-2.2288,-0.6334,2.1594,1.5868,-0.036456,-0.2417,-0.45415,-0.86436,-0.27328,-0.68144,-1.0216,-0.15383 4.6465,0.75479,-0.7238,-0.097628,1.0928,0.91202,0.62605,0.05883,0.8731,0.16103,-0.65883,0.62574,-0.77657,2.4826,-2.0484 1.3156,1.0231,2.1282,0.61341,-1.32,1.7582,0.41975,-0.40606,1.6499,-0.32874,-1.2459,0.59564,-0.84597,1.4412,0.23567 -1.9821,3.2171,-0.45781,0.69526,-0.11703,0.90658,-0.1614,1.8502,-0.041416,-1.1755,-0.04067,0.98542,0.63941,-0.11488,0.33286 -3.5209,-1.615,-1.698,-1.1223,0.47504,-1.1969,-0.9546,-0.63855,1.1257,-1.3589,-0.66297,0.66528,-0.92613,0.99639,-0.13791 0.57562,4.0753,-0.4604,-1.6876,1.2089,0.32047,-0.38095,-0.4731,-1.598,-0.34993,-0.4058,-1.3388,0.13112,-1.3941,-0.24809 3.3908,-0.33307,-1.6289,-0.21724,0.37303,2.5227,0.40214,-1.6925,-0.34188,-0.70187,-0.12434,-0.97356,0.9399,0.8677,0.082382 -1.677,-0.8385,-3.1356,-0.26451,0.090626,0.80635,-1.1001,0.94014,0.1962,-1.5944,-1.1508,1.186,-0.50685,-0.51935,0.8435 -2.2486,-0.52367,0.25811,-1.4875,-0.91996,1.0384,-0.34809,-1.6774,1.4433,-0.32114,0.55214,-0.0093129,0.89717,0.72386,-0.24389 1.5789,3.2233,0.84437,-0.33928,-1.0195,1.7252,-0.39886,-0.60799,-1.8359,-2.2139,0.12682,-0.80091,-1.806,-0.23189,0.090039 -1.6092,2.948,-0.63803,0.81838,-0.7362,2.4219,-0.3363,1.166,-0.78291,-0.35774,0.094539,0.64057,0.6062,-0.80962,0.21061 2.0702,-0.27275,-2.8174,-0.38727,-0.36747,2.6723,1.6109,-0.35263,-0.0038338,0.57232,-0.54153,1.9654,-0.089479,-0.1587,-0.29279 -2.9726,-0.53843,1.5705,-1.7608,0.60611,-0.38796,-0.24353,0.23679,1.04,0.59047,0.87159,-1.0196,-0.023555,-0.35057,0.32894 -2.5502,-1.4572,-1.6876,-0.93397,-0.060817,-0.54932,-2.0239,-0.4587,0.30391,-0.62819,-1.0928,0.91638,0.47198,-0.56693,1.4353 1.2945,0.069208,-0.65213,0.36401,3.3424,-1.4302,-0.84885,0.1057,0.93956,-1.7766,1.2602,-0.34005,1.4341,-0.60128,0.13372 -3.9805,-0.94618,-0.013527,-2.3272,0.51468,-0.085793,-0.46488,0.3747,0.10353,-1.728,0.32047,-1.3082,0.28528,-0.48086,0.26291 -3.6316,0.071088,-0.033791,-1.3705,0.018527,0.14573,0.59326,0.48813,0.7518,-1.879,0.87942,-1.2177,0.17141,-0.87472,-0.090235 0.6693,-0.33683,2.8744,0.068587,-0.63428,1.3983,0.28731,0.44559,2.3859,0.52935,-0.85984,0.40364,0.15383,-0.19476,1.2063 0.59312,1.4355,1.0796,1.9419,1.1295,1.583,-1.7182,-0.2863,0.72531,0.52001,-0.10142,-0.26295,-0.48582,0.80872,0.59082 -2.3724,-1.3288,-0.70226,-1.4958,0.88506,-0.28721,-2.0457,-0.71859,1.0003,0.65751,-1.3339,1.3166,0.11314,-0.34159,1.9477 1.6149,1.5831,0.73266,1.7448,-0.57753,2.4429,-0.30159,-1.364,-0.42601,-0.081097,-0.52546,-0.34184,-0.077026,0.6563,1.1594 -2.7868,-1.5232,-2.1403,-0.92098,0.22386,-1.13,-1.031,0.10164,1.2886,-0.77954,-1.0539,0.158,-1.3159,0.27446,0.53762 0.039002,-2.8873,0.16892,-0.80891,0.14821,1.3927,-1.017,-0.97887,0.81562,1.397,-2.846,0.64688,0.16157,1.0149,-0.28243 2.7518,0.93115,0.47011,-0.48041,1.1003,-0.055578,-1.3,-2.3373,1.8866,0.5729,0.7412,-0.28244,-0.19195,0.49437,0.10729 -2.2994,-1.2588,-0.22424,-1.0296,-0.53307,0.89981,-1.282,-1.1291,1.5342,-0.018421,-0.355,-0.064632,1.1247,0.63937,0.19102 2.0592,0.65606,-2.6147,-1.5706,-1.0278,0.5904,0.47446,1.0101,0.74725,2.0988,0.69823,0.15136,-0.46544,-0.073776,0.92431 -0.7009,2.0878,-2.2953,2.1241,-0.0041322,1.4865,-0.45714,0.47257,-0.84113,0.71336,-0.58506,0.53268,-0.38746,0.79991,-0.43017 -2.6587,0.080923,-0.77762,-1.9091,-0.61078,2.1442,0.91544,-1.6998,-0.80015,0.35046,-0.62368,-0.90903,0.11877,-0.01835,-0.48913 3.4603,0.4901,-1.8889,-0.78376,1.3191,0.5018,0.56028,-0.47435,1.6309,0.95422,0.48901,-0.36454,-1.0793,-1.6581,-0.6122 -0.9011,1.5019,0.74667,-0.56966,-1.5895,2.2826,1.4129,-0.28859,0.40813,-0.50886,0.53184,-0.72144,-1.0649,-0.21582,0.75952 -0.64674,2.7169,-0.20855,0.47397,-1.2498,2.6089,-0.023089,0.88455,-1.7553,-0.70652,-0.26236,-0.37537,-1.2648,-0.66878,0.67869 -3.4091,-0.4145,0.34402,-1.2868,0.46813,2.5624,1.0445,-1.4599,0.23088,-0.87971,0.79566,-0.25351,-0.13864,1.1347,-1.1017 0.66495,3.2061,0.84103,1.347,1.1229,-0.35635,0.012254,-1.0295,-0.89092,1.9536,-1.1038,0.45457,-0.22891,0.18167,-0.65347 -3.6371,-2.0392,-0.60882,-2.044,0.7176,-0.28044,-1.9052,-0.14303,0.29327,-0.43626,-0.69409,-0.15593,0.32729,0.48794,0.9763 -3.376,-0.69801,1.013,-0.41788,-0.098643,2.5384,0.66907,0.22544,0.49869,-0.053846,0.51261,-0.33125,0.22334,1.8004,-0.84186 3.173,-0.85012,-2.4253,0.41909,1.8236,1.4833,3.4373,0.54827,-0.58763,1.0664,0.10739,1.9754,-0.65364,-0.92146,-0.49051 -2.3156,0.38021,0.86026,-2.2184,0.64484,1.7194,0.090642,-0.84212,-0.13343,-0.59782,0.93885,-0.48974,1.3991,0.95911,-0.068576 -3.3989,0.55211,-1.835,-0.3195,1.1617,1.9269,1.6124,-1.2849,-0.018907,0.84355,-0.65824,-0.4995,0.084327,0.86353,-1.6771 -3.4684,1.5025,0.44904,-0.70539,0.81726,2.1622,1.037,1.7479,0.095738,-0.6907,0.70764,-0.74919,0.14171,-0.45978,0.23038 3.0157,1.7377,-0.013247,0.35353,-0.26772,0.95262,-1.0489,-1.1187,0.95259,-0.094149,-0.54152,-0.43039,-1.2631,1.6061,0.16151 0.40209,0.046622,3.3394,1.1053,0.94573,-1.5129,-0.53873,1.2469,0.78706,-1.0906,-0.9225,0.83258,0.46343,-1.9543,0.10115 -1.2463,3.6361,0.0055419,0.62615,0.055196,1.9295,-0.55482,1.2745,-0.52068,-0.4683,-0.40251,1.0781,-0.19982,-0.47803,-0.44414 -2.4771,1.7603,0.33733,-0.18811,-0.090044,2.2598,1.763,-0.25148,0.18369,-0.64097,1.127,-0.13053,-0.61045,-0.058318,-0.89653 0.41756,1.9828,1.9005,-0.44331,-1.7322,-0.096491,-0.10661,0.23216,0.23935,-0.20158,-0.24524,0.58023,-0.49874,-1.831,0.62496 -2.8743,-1.8861,-0.084895,-2.5042,0.68853,1.1756,-2.1693,-2.0253,-1.8709,-0.29955,-1.2048,0.77826,0.15471,0.6449,0.93235 0.45031,1.7726,-0.7739,-0.22925,2.4448,-2.1392,-1.5591,0.84342,0.72808,-0.096334,2.1298,-0.65306,0.61929,-1.289,0.04214 -0.36453,1.591,3.0383,-1.378,-0.52643,0.40086,0.55947,-1.0958,0.51543,0.62229,1.3224,-0.51743,-0.84387,0.99737,0.29615 -3.1286,-2.5043,1.0582,-2.0238,0.94609,0.24778,-1.8529,-0.40298,0.99958,0.54781,-0.44872,-0.31567,0.2351,1.0702,0.8561 -1.6835,-1.751,1.2068,-3.1366,0.21146,2.4667,-0.59903,-2,-1.8429,-1.0062,-0.85043,-0.86058,0.0075038,1.59,0.2171 3.7052,-0.0087503,-1.3002,1.023,0.40469,2.4401,-0.67005,-0.15196,-0.30293,0.35899,-1.1964,-1.4696,-0.3824,0.29616,-0.083224 -2.2295,2.4202,-0.98527,0.98921,0.30332,2.9084,1.0474,1.587,-0.52712,0.53494,-0.63388,0.96247,-0.86029,-0.22899,-0.23346 -3.5647,-2.237,-0.62162,-1.3026,0.5462,-0.44665,-1.5143,0.26962,1.1926,-1.1402,-0.68423,-0.41624,-0.99086,1.5334,-0.24347 -2.9067,-2.9545,1.1471,-2.2537,0.95914,-0.49599,-2.1593,-0.84924,0.62411,-0.18472,-0.93308,0.32293,0.2379,1.1357,1.0974 -1.3015,3.0234,-0.19177,1.2298,-0.91327,2.6499,0.6658,0.62176,-1.0067,-0.45112,0.52724,0.11815,-0.18514,-0.80768,-0.061161 -3.5291,1.6104,0.46152,-0.20942,0.55823,1.383,1.1835,1.1998,-0.4706,-0.70244,0.59163,-0.093047,0.25934,-0.98877,1.1175 0.16929,-4.0141,2.0569,-0.71678,1.4878,1.1688,-0.2464,0.1446,0.64706,1.2204,-2.8357,-0.52249,1.0921,0.44705,-0.3938 -1.7345,-3.8256,1.8001,0.67852,2.2832,-0.075052,-0.57248,0.95509,0.67731,0.50389,-0.92211,-2.0842,0.43417,1.4014,0.10428 1.2969,-1.2811,-2.1614,-0.31426,0.39264,2.9588,1.5067,0.41592,0.20768,-1.3434,0.469,1.3697,0.57179,-0.25603,1.3356 -3.6965,-1.6393,0.6468,-1.9644,0.42428,0.27738,-1.3774,-0.25143,0.25989,-0.13475,-0.52237,-0.75042,1.1647,1.2397,0.6881 0.82612,2.3423,0.66852,1.4221,0.22247,0.16894,-1.1162,-2.363,0.87057,-0.18499,-0.1715,0.63266,-0.39856,1.0268,-0.37225 1.2782,-1.4429,4.2621,0.094555,0.51335,1.16,0.25687,1.0424,1.2064,0.19255,-0.94226,0.77338,0.90652,0.33053,0.14322 -0.14106,-3.0121,3.2844,-1.0863,0.46337,1.3186,0.063429,-0.32708,1.1576,1.7258,-1.4726,-0.85321,0.9241,1.0705,-1.0282 -3.564,-1.3613,0.68173,-2.0415,0.15996,0.17125,-0.61924,0.73008,0.79462,-1.291,0.34279,-1.7923,0.87016,0.15839,0.57034 -1.5248,-3.6188,2.1775,-0.55123,1.3152,-0.61726,-0.68425,1.1091,0.99575,0.87765,-1.5662,-1.7325,1.0957,0.4471,0.13526 3.419,1.6842,-0.54459,0.76708,1.0514,0.63215,-0.0065788,-2.2208,0.058879,-0.43438,-0.95666,-0.49315,-1.0994,-1.0622,-1.5329 3.7063,-0.80865,-2.0763,-0.5498,0.60001,1.3673,2.1635,-0.67301,1.4547,0.19022,0.96167,0.77398,-1.3839,1.3922,0.24087 -4.0396,-0.68876,-2.315,-1.4437,1.1113,-0.0021259,0.11374,-1.3978,-0.17762,-1.7543,-0.31646,0.62613,-0.35649,0.40278,-1.1429 -2.7988,-0.51652,-1.4176,-1.5554,-0.17768,0.50311,-0.23896,-2.1185,0.0041216,-0.71452,-0.51144,-0.096062,0.94311,-0.58117,0.41969 -3.2462,-1.5,-2.45,-1.4265,1.0805,0.70578,-0.92457,-0.90129,-0.0077888,-2.133,-1.1564,0.39514,-0.65282,-0.28252,0.56186 -3.2953,0.10658,-2.1345,-0.094601,-0.47729,1.8177,0.9105,0.34983,1.1899,-0.33545,0.38378,-0.62369,0.90955,1.0551,-0.94501 -3.1425,-0.48487,-0.56264,-1.0639,-0.35664,1.1566,0.22305,-0.29933,0.15077,-0.65126,0.53907,-1.5626,0.92276,-1.4698,0.64087 1.8333,-1.2665,-1.485,0.42794,2.0705,1.5052,0.37241,-1.4314,0.87193,-0.64919,0.60142,-0.08529,2.3139,-0.31762,1.2376 -3.9685,-0.3145,-1.0584,-1.8754,0.59413,-0.095139,0.13585,-0.75225,-0.35576,-0.07192,0.37853,0.31419,0.41511,-0.46617,-0.58918 -1.8242,-1.7913,2.8177,-0.82929,0.28389,0.63837,0.10472,-1.4747,1.6391,1.3597,0.37985,-0.4188,-0.42429,0.88432,-0.046515 -1.2023,-2.3268,2.2639,1.7145,1.5529,0.84027,0.80802,0.23206,1.6518,-0.40929,0.39942,-1.3573,0.078689,-0.37224,1.3095 -2.3679,-2.7757,0.25489,-0.32689,0.29568,-0.28434,-0.84227,-1.4226,1.6489,0.98519,-0.17135,0.46083,0.085206,0.59575,-0.60063 -2.2248,-1.5868,1.9684,0.13033,-0.17598,0.080185,0.38669,-0.67885,2.1555,0.33739,0.69354,-0.19333,0.26166,0.48314,-0.43389 -3.0479,-1.058,0.26379,-1.3712,-0.40803,0.59502,-0.20649,-2.1196,0.4339,0.49624,1.0911,0.95237,-0.37813,1.2344,-0.52671 -3.2826,-0.65068,0.15138,-0.63957,-0.66577,0.7393,0.18786,-0.11715,1.8502,-0.62526,1.2591,-0.39702,-0.018196,1.0195,-0.65455 1.1719,-1.5732,1.0156,-0.99466,0.10036,1.453,1.5017,0.79364,1.3368,1.2057,-1.3543,-0.58394,0.19425,0.92067,-1.6415 -0.17916,-2.7064,0.64514,-1.9405,0.58155,1.2022,0.36519,0.010179,1.2749,1.6511,-2.636,-0.73269,-0.21658,1.23,-0.14895 -0.79307,-1.1379,-0.79438,-2.2149,-1.0665,2.3372,0.43586,-0.40349,-0.44273,-0.83428,-0.60969,-1.1323,-0.21396,3.1369,-0.3577 -0.91328,-0.60331,1.1756,0.73866,0.37396,1.2179,1.0156,-1.2101,2.4527,0.57929,-0.2498,-0.69234,0.0097063,-0.85192,0.32078 0.02203,0.41946,1.4547,-2.0288,-0.22334,2.4275,1.0573,0.3839,1.5754,-0.040596,-0.093423,-0.8497,0.44896,0.14432,-0.10123 -4.1748,0.82847,0.076998,-1.2685,0.26978,0.35844,1.7521,-0.96105,-0.70477,-0.77873,0.53516,0.33268,-0.15224,0.26547,-1.0567 0.30003,-0.83463,-0.43272,-0.16429,0.18537,2.7062,2.0124,1.1318,-0.0023234,-0.53737,-0.37239,-0.76636,1.3261,0.24273,-0.71417 1.6171,3.043,-1.8506,-2.1499,0.1596,0.68085,-0.56888,-0.54316,0.083059,1.4037,0.58705,-1.0181,1.0018,-1.6065,0.58937 -3.487,-0.41096,-1.3521,0.2562,0.79775,-0.91229,1.9261,0.32157,1.0479,-0.35141,-0.42294,-0.95922,-1.036,1.0399,-0.74692 0.38203,1.1471,1.5543,-0.25142,-0.39133,1.2358,0.79604,0.60228,2.1485,1.1709,-0.28774,-0.38299,0.0070568,-0.1176,0.54519 -1.581,-1.0107,-0.43852,-0.81705,-0.30461,2.2886,-0.13412,-0.56029,1.7572,-0.39818,-0.87406,-1.2412,1.5198,0.55068,0.4578 0.32221,-0.10382,1.1893,-0.080386,-0.99585,2.0097,1.2707,0.75493,2.2772,0.24513,-0.82112,0.17104,-0.05478,0.45327,1.0581 0.68423,1.8574,-2.1324,1.041,-0.81115,1.2169,-1.0027,-0.74538,1.42,1.1627,-0.12432,-0.10872,0.33911,-0.17702,-0.27007 3.723,1.3806,1.0938,-0.89813,0.031657,0.40618,-0.11958,0.86473,1.2888,-0.51664,-0.42946,0.87532,-2.4451,1.3449,-0.73938 3.5547,2.1728,-0.49315,-2.4556,-0.39759,0.46594,-0.6694,0.82742,-0.70112,-2.2448,0.057854,-0.41546,-1.303,-1.1323,-1.1235 -0.13847,1.751,3.2815,0.65884,2.4857,-2.2538,-0.65318,1.9143,0.45398,-1.1629,-0.010101,0.014968,-0.073384,-0.081911,0.5392 -1.2738,-0.28664,2.9642,-3.3233,2.1874,2.0979,0.77051,0.37776,-2.1416,-1.5076,0.32516,-1.2195,-0.46836,1.1407,0.3095 0.7097,-2.5973,0.21895,-1.8138,-0.20932,1.4751,0.81862,0.041743,1.2978,0.73402,-1.6505,-0.69478,-2.0441,2.9446,-1.4627 1.2088,-0.040159,1.5023,-0.018288,0.5291,0.37364,-1.928,1.63,0.78664,-0.27486,0.31059,1.7497,2.1175,0.4262,0.0010962 2.1671,1.1873,0.54943,-1.5876,3.0826,-1.5953,-0.89388,1.0151,0.070642,-1.7447,1.4136,-0.86215,2.6919,-0.94892,-0.11305 -0.80753,-1.2559,-0.47526,-2.3134,-0.24822,2.6226,-0.72838,-0.91417,-0.85618,-0.24754,-1.638,-0.41634,0.46077,1.9451,0.51984 -1.9211,0.21672,0.2513,-0.013465,-1.0687,0.00097278,1.3389,-2.0699,1.6604,1.0861,0.3847,0.44925,0.37079,-0.28736,-0.61363 -0.86182,3.5516,-0.12108,-1.5675,1.3785,1.3061,-1.4652,0.93913,-2.2599,0.67736,1.3632,-1.0248,0.041823,0.21777,-1.0549 3.2189,-0.29841,1.5123,1.5082,1.1211,1.2915,-0.38296,-2.0214,0.069016,-1.7057,-1.0157,0.87655,-0.47045,0.30365,-0.96417 -2.1536,3.1697,0.33334,0.77806,0.56268,2.2159,-0.15878,1.8448,-0.11291,-1.5323,-0.29175,0.40371,0.59715,0.29042,-0.078681 2.0325,1.4991,-1.079,0.85387,1.3276,-0.021236,-0.92484,-2.298,0.81878,1.3,1.1074,-0.31791,-0.12294,-0.77578,-0.041559 -2.5745,0.95297,0.54556,0.84301,0.30831,1.2776,0.99688,0.5299,1.2416,-0.081185,1.6833,-0.29711,-1.7401,0.32714,-0.7708 -1.6196,3.4221,0.49109,0.72856,0.13429,1.4504,-0.21067,1.7366,0.10398,-0.60799,-0.010297,0.86577,0.57206,0.90626,-0.24631 -1.0961,2.4823,-0.27523,2.2546,1.2131,-0.70708,-0.60504,1.6573,1.3268,-0.21068,-0.85166,0.5577,-0.77922,0.67374,-0.16456 -2.4307,2.4349,-1.2492,0.15223,-0.68211,1.5484,1.1626,0.94203,-0.076721,0.99994,0.093449,1.3041,0.81157,0.40173,0.32099 -1.065,3.0247,-0.94078,1.8014,0.43542,0.73636,-0.62533,0.64167,0.40129,0.10442,-0.35383,1.1125,-0.73715,0.06082,-0.96312 2.8869,-1.903,-1.6444,-1.653,-0.37669,2.2213,1.6288,-1.6763,-0.6534,-1.8641,0.68516,0.70934,-0.28119,0.94507,0.52708 -0.79409,3.6063,2.0577,-0.032224,-0.052503,0.066813,0.12648,-0.37617,-0.38789,0.46129,-0.67627,1.4989,-0.40159,-0.42649,0.12531 -1.7551,3.0739,-0.23718,0.28657,-0.0413,1.777,-0.25381,1.3982,-0.579,0.17173,0.64063,1.5401,0.14887,1.2356,-0.13727 0.56673,-0.12786,1.587,-0.55486,2.6172,1.5539,-0.45342,0.26017,-0.63387,-0.61294,2.2452,0.87536,-0.57294,2.519,1.0101 -0.32559,1.2087,-1.5221,2.4042,-0.68426,1.0719,0.35784,-1.4241,-0.6624,-0.67639,-0.47198,1.1694,0.55443,0.69988,0.39166 0.81649,3.2653,-0.68331,-1.7599,1.0861,0.27724,-0.80322,0.24691,0.24369,0.78352,-0.75599,-1.0869,1.4853,-1.8671,-0.2132 0.20564,3.9383,0.65455,-0.35508,-0.45475,1.4881,-1.9859,0.14364,-1.5982,0.61814,-0.21882,-0.29611,0.20211,0.39463,-0.43219 0.65024,2.1052,-0.59593,1.9227,1.2226,0.2251,-2.0281,-0.22277,1.1632,0.49845,0.9242,0.40814,-0.11875,1.3927,-1.3366 2.883,2.4267,-0.99916,-1.7989,0.80882,-1.2178,-0.42695,-1.4802,0.6329,2.1558,1.1151,-0.74324,-1.0402,-0.58891,0.76744 3.565,0.40549,-2.3836,-0.3883,-0.21481,0.10243,0.10184,-0.4172,0.46197,0.55702,0.41627,-0.66691,-0.15273,0.0057911,0.050679 -1.1497,2.4046,-1.6902,2.0603,0.79199,0.32241,-0.34423,0.41812,0.43989,0.38253,-0.81453,0.4444,-0.14327,-0.34738,-0.1342 -1.3237,3.2466,-0.53971,0.80553,-0.84629,2.2977,-1.0107,1.0561,-0.80926,-0.55003,0.081969,1.2156,0.35618,-0.33534,-0.58924 -2.8831,1.9827,0.078311,0.65527,-0.2485,1.6289,0.26657,2.1867,0.55225,0.49154,0.15433,0.33761,0.30099,-0.35694,0.89268 -0.71654,4.542,1.4726,-1.3092,1.0002,-0.10832,-0.69606,0.22936,-1.9488,0.60163,-0.99169,0.16605,-0.28428,-0.2547,-0.4009 -2.8973,1.8597,-0.25878,0.76423,0.32678,2.2821,2.2268,0.20591,0.88567,-1.3892,0.39284,0.19414,0.49524,0.2044,-0.54758 -3.4572,-0.11839,0.41164,-0.23239,0.65989,-0.73357,1.2826,0.24492,2.2706,-0.78369,0.97066,-0.40058,-0.84109,0.41892,-0.27029 2.699,2.3251,-1.9096,-2.2039,0.2128,-0.77164,0.48234,0.061594,1.2391,0.96218,0.060594,-0.2577,-0.51295,-1.0413,-1.1892 -1.5905,1.2157,2.718,0.34758,0.27894,-0.89626,0.16327,1.3586,1.7692,-0.96749,0.34862,0.24447,0.20278,-0.96256,1.5976 1.2415,1.7064,-1.6623,-1.5741,-0.17619,0.46211,2.172,1.1447,-3.5175,-0.46141,0.91267,-2.3178,-0.55797,1.7219,-0.20592 -3.8966,0.13718,0.060456,-2.2013,1.3934,-0.33368,0.23498,-2.166,0.06862,0.11476,-0.23106,0.1221,0.98408,0.29446,-0.07594 4.3076,-1.6456,-1.4077,-1.4563,2.8138,1.9948,2.9859,-1.4126,-0.44538,-0.34944,0.9017,2.0939,-1.0153,0.0041708,0.54569 4.2819,-0.026971,0.25637,-0.12666,2.2879,2.67,0.15987,-1.4096,0.1772,-1.1907,-0.73741,-0.029993,-0.24672,0.30618,-0.88426 -3.4888,2.517,0.76646,-0.21647,0.44545,0.060074,1.3058,1.3486,-0.095054,-1.2353,0.6214,-0.058146,0.59824,-1.2189,1.2428 -3.3506,-2.0313,-0.57567,-0.93641,1.1015,-1.3882,-0.31069,0.17529,1.7076,-1.1288,-0.55541,-1.1326,-1.3794,0.81756,0.043861 1.3823,1.2347,0.8143,0.34606,0.49136,1.0929,-0.45672,1.7001,0.86934,0.91431,-0.71064,0.95883,1.7793,-1.3121,0.29603 -2.3662,-2.1259,-0.4658,0.097192,2.6044,-0.75066,-0.14679,-2.0513,1.3846,-0.095402,-0.62725,0.29124,0.43885,-0.10466,0.39941 -3.9102,-0.051153,-1.2011,-1.7023,0.65668,-0.29703,0.56857,0.25947,0.97635,-1.1562,0.437,-0.97912,-0.57604,-0.82087,-0.61748 -3.8213,-1.1273,-1.0496,-1.6007,0.68431,-0.8291,-0.0097422,-0.18987,1.1403,-1.9558,0.0089217,-1.0445,-0.29592,0.86512,0.080861 1.3826,2.3415,1.1501,1.0028,-1.1452,0.918,-1.3062,-0.97313,0.90396,0.75582,-0.71809,0.42439,-0.88841,0.46426,0.32974 -3.459,-0.99501,-1.119,-2.0552,1.4262,-0.92353,-0.89222,-1.4317,0.26103,-0.97352,-0.63699,0.80962,1.0951,-0.080936,0.64819 -3.6992,-0.036893,-2.6534,-1.4525,1.9015,-0.46477,-0.67361,-1.222,-0.34591,-1.5021,-0.76131,1.8383,-0.022991,0.61565,0.25713 -2.7108,-0.64633,-2.4623,-1.7287,1.3523,-0.48215,-1.2415,-0.83365,0.34166,-1.929,0.017916,1.1536,0.14038,0.52849,1.4149 -3.6566,-0.28443,-2.7612,-1.4216,1.9585,-1.6939,-0.74732,-0.20587,0.17878,-1.1837,-1.2454,1.3087,-0.80313,0.62642,0.75026 4.4398,0.81241,-0.67155,-1.3114,2.0845,-0.053127,0.11475,-1.1979,-0.65418,0.54664,0.0044852,-1.1512,-1.4359,-1.9949,-0.65235 -3.9684,0.083174,1.5732,-2.7215,0.87371,-0.94807,0.78646,-0.91798,-0.43428,0.19866,-0.20554,-0.8157,0.31885,-1.3654,0.47446 -3.4352,2.4525,-0.42862,-0.49036,-0.045971,1.4087,1.8996,0.39101,-1.1996,0.80594,0.35096,0.45624,0.78243,-0.61117,0.48675 1.9481,2.3893,-1.5647,-0.79838,-0.060524,-0.21946,0.62779,-0.21212,1.0158,-0.41294,-0.85841,0.4181,-0.65759,-0.9898,-2.3032 -3.2991,2.1713,0.65958,-0.5036,-0.32568,0.94946,1.7885,-0.83115,-0.80922,-0.15228,0.94523,0.75488,0.59653,0.10443,0.10755 1.777,1.3434,0.5938,2.1416,0.61185,-0.18547,-1.4487,-2.5469,0.22342,-0.40211,0.16759,0.80681,-0.024722,0.2263,-0.38365 -1.358,3.4344,1.8333,0.048816,-0.16117,0.76917,-0.23282,-0.61444,-1.2393,-1.9037,0.25855,1.1075,0.63559,0.44325,0.14203 -3.8163,1.1441,1.6469,-1.0552,0.72449,-0.75193,1.1489,0.59209,0.76668,0.46725,1.0926,-0.37941,0.1445,-0.18905,-0.20822 -3.8198,1.0113,-1.1125,-0.15573,0.44988,-0.44789,1.684,2.0581,0.37089,0.47238,0.05292,0.027974,-0.29129,-0.092906,0.2376 -0.27635,1.7099,2.5216,0.61361,0.90315,0.32738,-0.67999,0.69068,0.68075,-0.94298,0.80617,0.57588,-0.96267,0.37447,1.5986 -2.4133,3.8578,0.59074,0.15277,0.27371,1.0531,0.52087,0.51382,-1.1763,-0.31326,-0.022748,1.4671,0.37559,0.080067,0.095849 -1.1312,3.166,0.11154,-0.64646,3.0539,1.2786,-0.14456,0.026847,-0.81041,-1.6165,0.56289,-0.4216,-0.29334,0.41996,-0.99213 -2.4663,3.7466,1.414,0.40512,0.88311,-0.46218,0.068918,2.1066,-0.19517,-0.093716,-0.11677,0.79505,-0.054946,0.2978,-0.16921 -3.7156,2.8715,-0.42905,-0.055912,0.88233,1.2298,1.0746,2.726,-1.2605,0.052765,-0.12258,0.2563,-0.59109,-0.51105,-0.015063 -3.4215,2.8845,0.44825,0.040521,0.22324,0.63144,0.83997,1.5624,-0.39928,0.16188,0.23473,1.0752,0.12164,0.014536,0.17992 -1.4836,2.9948,1.2153,1.507,0.95992,-0.6881,-0.69636,0.45393,0.80078,-0.32757,0.0069412,1.5895,-0.51261,1.3485,-0.20797 4.1145,-2.5071,-0.76447,-1.3984,0.70446,1.3811,1.2622,0.010658,0.54453,0.98703,1.2449,3.0395,-0.69354,-1.3126,-0.57888 -4.5818,0.94251,-1.6398,-1.1587,2.0158,0.26,2.1038,0.40678,-0.67067,-0.21053,-0.17406,-0.40124,0.07478,-0.34299,-0.64629 -2.5213,4.0174,0.93525,0.055173,1.06,1.2752,0.48386,0.96424,-1.4187,-0.99211,0.034149,1.0414,-0.20733,-0.38837,-0.22861 -4.4119,0.81301,1.574,-1.1303,0.81842,-0.5732,1.3825,-0.034988,-0.11417,-1.0249,0.53716,0.44185,0.060362,0.071608,0.27579 -0.68307,2.2319,0.68166,1.9279,0.10347,-0.81043,-0.37107,-0.1098,1.147,0.23147,-0.57119,1.5777,0.33303,-0.5381,0.18447 -2.0451,3.5269,0.0086065,0.27846,-0.37047,0.94669,0.25626,0.70677,-0.51237,-0.96754,0.032593,1.3524,1.2344,0.46493,0.31243 0.59995,2.3237,2.9414,-1.8425,-1.0941,1.3188,0.43843,-0.46664,0.26835,-1.2441,-0.090359,0.86446,-0.76891,0.05288,0.34342 0.45263,-1.8071,4.3896,0.41199,1.1876,0.27268,1.2864,0.27065,1.4063,-0.28587,-1.1369,0.37855,-0.011803,-0.28211,0.28951 -0.58366,3.5986,1.6035,0.2698,0.39982,-0.11298,-1.1129,0.65611,0.2691,0.35227,0.58429,1.5012,0.15906,-0.31106,-0.15164 -2.4284,1.7712,-1.3961,0.32429,-0.66075,0.49464,1.2274,2.2213,0.53119,-0.77971,0.02597,-1.2283,-0.79104,-0.92241,0.60106 -0.20457,3.08,0.31933,0.5444,1.7514,-0.56675,-2.5765,1.6412,0.31035,0.27407,0.77081,0.5365,-0.21519,-0.11949,-0.86195 0.37846,1.9302,2.9373,-2.4485,0.57903,0.88406,1.3608,0.53689,-0.078876,-1.321,0.35587,-0.2907,1.1477,-0.41979,-0.49404 2.5922,-1.8482,0.92484,0.97925,3.2407,2.6029,0.77494,0.66927,-1.24,0.47867,-0.61515,-0.32131,1.6077,-0.36533,0.51692 1.9298,1.5246,0.67543,0.57561,2.3015,-0.51195,-1.6364,-1.5843,1.389,0.57963,0.93958,0.74304,0.32539,-0.34957,-0.47987 0.026058,4.2086,0.37357,-0.31769,-0.65897,1.8245,-0.34675,0.074867,-1.3892,-0.12706,-0.7549,0.3053,0.30109,-0.12371,0.19392 -0.51762,0.9263,2.2457,0.9101,-0.58837,0.55442,0.060336,0.12427,2.4688,0.14242,0.09376,0.45979,0.5517,0.74532,0.91373 4.7996,-0.04127,-1.0797,-1.4177,2.2856,-0.35317,2.5892,-0.0051573,0.19555,0.89336,0.79484,0.088115,-1.6977,1.2639,0.14592 2.0915,2.1705,-1.7696,0.77817,0.50305,1.0984,-0.010022,-1.5615,0.16518,0.75285,-1.1005,-0.41576,0.27533,-0.7604,-1.3617 -1.6044,3.5463,1.644,-0.12136,0.30876,0.87923,0.59255,1.0078,-0.51319,0.74148,-0.63529,0.13923,0.92966,-0.77312,0.83483 3.4393,0.67757,-2.3232,-0.8245,1.8175,0.82,1.8644,-2.2843,-0.75688,-0.56057,0.1302,-0.35516,-0.72813,-0.56326,-0.75398 4.3693,-0.04434,-1.4118,-3.8025,1.562,1.212,0.42769,1.5349,-1.3506,-0.80758,1.9478,0.18555,-0.36068,-1.5143,-1.1171 -1.7955,2.5777,-1.5591,1.0928,-0.06261,1.155,0.23872,0.65104,-1.2786,1.2799,-0.34213,1.1325,-1.0018,0.080741,-0.83374 0.37218,0.21142,3.5874,-2.3776,0.69095,-0.092259,0.6319,0.77353,1.2281,-0.45437,0.079107,-0.0094954,1.6811,0.67484,-0.35198 -2.5866,-0.88597,-0.3173,-2.0047,0.75153,1.239,-1.4856,-0.19514,0.20591,-0.045715,-0.29246,0.25425,0.55715,1.1174,1.0362 -2.412,-0.55595,-1.7628,-0.24165,-0.99675,0.78054,-0.21945,-0.83709,1.6277,-0.067109,0.15152,-0.40994,0.94423,0.40082,-0.045645 -1.8049,1.9828,2.2706,-1.2471,-0.46839,1.3595,0.72289,0.56084,-0.72496,-0.3172,0.36586,-0.71516,0.29098,-2.3864,1.4006 -2.1715,-2.1994,3.1868,-2.2642,0.32588,-0.40035,0.52538,-0.50538,0.6772,-0.43553,-1.0308,-0.54294,1.0896,-1.2152,-0.71122 2.2787,2.6718,-0.31466,-1.4427,0.25932,-0.24412,-2.1887,-0.39354,-0.17128,1.0413,0.78674,-1.4309,-0.82525,-0.18898,-0.086043 2.2602,0.10499,-1.3785,-1.9543,0.61904,0.07005,0.19646,1.1848,1.1065,0.62719,-0.070096,1.754,1.9769,-1.8216,-0.77915 -3.4599,0.36248,-1.2676,-0.61757,-0.16962,1.2701,0.92835,-0.83003,-0.49375,0.62327,0.78832,0.44473,0.6008,-0.35559,-0.62959 3.1116,-4.0559,-0.30864,-0.072015,0.26695,0.17066,1.5682,2.2057,-0.84853,-0.21658,-0.66509,1.1906,-0.65051,4.1494,-1.3211 1.6911,1.813,0.03037,1.9215,1.3152,0.11322,-1.1182,-2.7069,-0.30722,-0.052152,0.35593,-0.01681,-0.0102,0.83323,-0.031649 -1.8531,3.7985,0.066979,0.050795,-0.11998,2.0312,-0.17514,1.1937,-2.6351,0.6068,-0.68174,0.49854,-0.52623,-0.18227,0.11077 0.23286,2.3988,-0.48727,1.1896,-0.2142,0.52442,1.9861,-0.98172,-0.94375,0.88156,-2.3115,0.68849,-0.96641,-0.32549,0.38787 3.3585,-2.3152,-0.87139,-1.4694,3.4059,-0.0033751,2.8053,1.4017,0.20798,0.39891,0.58959,3.1117,0.75147,-1.5199,0.78433 0.64638,-0.45244,3.008,-1.2945,-1.4807,1.9053,1.0144,0.50356,1.5088,-0.57237,-0.99194,0.23823,-0.33578,0.54161,-0.574 -0.073483,1.5947,1.5817,2.0729,0.30913,0.41486,-0.24916,-0.20512,1.558,0.19334,0.53549,1.0399,-0.17608,-0.23388,0.20988 3.6219,0.052539,-0.5125,-4.0644,2.2031,0.031894,0.5481,1.7732,0.44725,0.3175,1.4087,1.2078,2.0859,-1.3136,-0.085805 1.8794,0.19303,1.4139,0.5848,0.89042,2.6892,-0.36894,-0.58062,0.39656,-2.6435,-1.6392,0.77225,1.2282,-0.74091,0.51771 2.9357,2.4633,-0.75311,0.19644,1.3063,0.82898,-0.72145,-1.7074,0.51339,1.205,-0.12686,-0.95169,-0.33899,0.44279,-0.10533 3.2308,-0.44206,-0.4974,0.14518,0.70085,0.93731,0.40878,-2.8296,-0.33442,-1.0567,0.97228,-1.8154,0.12775,1.1611,1.116 2.4606,0.80193,-1.6037,-3.1979,0.74406,-0.70716,1.1862,2.2289,-0.24245,0.36336,0.97053,0.64268,1.3649,-2.5528,0.55847 2.975,2.8836,0.01238,-2.0386,0.40777,-0.37827,-1.2497,-0.62357,1.1891,0.14571,-0.729,-0.13416,-0.085218,-1.5487,-1.4125 0.25378,0.94638,3.6965,-0.48721,-0.64399,0.55054,1.1534,-1.0064,1.6227,-0.45173,-0.56853,0.73795,-0.77612,0.54862,0.47836 -2.5084,1.358,-1.0985,-1.0568,-0.70797,0.44391,1.3583,-1.9051,-0.31462,1.161,0.092949,-0.18608,0.9728,-0.21161,-0.46368 -2.7438,-0.75637,-3.0668,-0.97812,0.60857,-1.0703,-1.199,-0.066443,0.91468,-1.3135,-0.83174,1.3311,-0.80768,0.078685,0.64967 3.0238,2.2746,0.084471,-0.66858,1.4212,-0.42956,-0.72529,-1.1944,1.7694,0.42583,-1.1421,0.24182,-0.12945,-1.5806,-1.5079 2.8615,-0.80537,-0.36938,-2.0552,2.0834,-0.43385,1.2592,-0.12929,1.6917,0.26048,0.98471,2.0911,1.354,-1.9907,0.19934 -1.209,0.81006,0.42277,-1.4856,1.0752,2.2084,0.52205,-1.0048,-1.5371,-1.4733,0.67213,-1.2793,-0.25885,1.5171,-0.12744 0.82154,1.0421,1.6419,0.5162,-0.31885,1.0551,-0.94123,0.71937,2.2499,-0.58551,0.017356,1.1447,1.0742,0.22536,1.4284 0.45233,3.2707,0.52364,0.1193,-1.3694,1.1465,0.35975,-0.29389,0.41163,0.24728,-1.1879,1.1359,0.19397,0.68538,-0.036519 -0.94159,-0.68031,0.68652,2.6733,1.2854,1.3038,-0.73701,0.36404,0.50713,-2.3841,-0.54613,0.17008,-0.17453,0.10948,1.5963 1.1971,2.3871,-0.27371,1.1718,1.0913,0.36003,-1.3715,-1.8399,0.21071,0.55482,-0.047186,-0.43014,-1.0986,0.12556,0.060179 -0.24044,2.0292,-0.77732,0.45512,0.55803,-0.33308,-2.1275,0.75115,2.0932,0.015363,0.68365,0.29263,0.87973,0.1683,-0.22101 -0.25019,1.5956,1.9548,2.0427,0.28117,1.2067,1.3423,-1.7056,0.92294,0.34905,-0.28968,0.59547,-0.76672,0.059942,1.2661 -1.1358,-1.6109,2.9179,-0.26652,0.57538,0.43457,2.4443,-1.7231,0.80705,0.083902,-2.0025,0.78083,-0.4977,-0.8274,-0.4897 1.0199,2.3484,-2.8652,-0.3729,-1.4387,1.268,-0.69142,0.19739,0.84551,0.18671,-0.67413,-0.63659,-0.0066134,-0.37439,-0.86614 -3.5201,1.4104,-0.70566,-1.0867,-0.081243,1.4082,1.6345,-1.8918,-1.2352,0.49363,0.81444,-0.20556,0.40351,0.40443,-1.2692 1.9806,2.091,-0.96285,0.16236,1.9181,1.0253,-0.52649,-1.1016,0.73034,0.12269,0.33133,-0.45345,2.298,-0.88106,-1.065 -3.2104,0.2535,1.0072,-1.5551,-0.28204,0.045554,0.46541,-1.335,0.76883,0.40086,0.80227,-0.42424,0.39179,-0.21335,-0.25101 -4.0737,-0.86804,-1.7075,-1.3211,0.82083,0.43169,-0.1533,-2.0476,-0.83874,-1.3887,0.048898,0.91294,-0.075842,0.47769,-1.2939 3.5329,-0.079418,-2.1646,-0.39208,1.3427,1.6681,1.4569,-1.863,0.79374,-1.4666,0.45064,-0.19478,-1.1708,-0.31825,-0.51025 1.3176,2.4636,-1.3287,0.17711,1.2143,-0.13992,-0.48783,-0.62392,1.3736,0.99005,-0.53109,-0.56056,1.9377,-0.80802,-0.46981 1.7613,0.90834,-2.7033,0.45168,0.29039,1.1863,0.5251,-1.5548,0.277,1.2153,0.65413,0.13168,0.19261,-1.0714,0.84388 -0.157,0.11671,4.2722,-2.3884,-0.15377,0.89204,1.1232,-0.22543,0.57492,0.30018,-0.079293,0.17033,0.46031,0.65012,-0.021649 -2.5967,1.3666,-1.0494,0.34425,-0.32968,0.73904,1.0624,1.6125,1.4179,-0.061053,0.35542,-0.60661,-0.74278,-0.91371,-0.14345 -1.1479,1.6122,2.6612,-2.037,-0.78513,0.95921,0.86835,0.36737,0.37599,0.02258,-0.27809,-0.21315,0.26711,-0.63045,0.98144 -2.2892,1.3858,-0.95091,0.67764,-1.6103,1.3584,0.27854,0.89078,0.96577,-0.049291,0.64442,0.43395,0.73648,0.10751,0.5368 -0.90028,-0.77633,3.4239,0.56136,0.15788,0.7037,1.1285,-1.5247,2.042,0.61284,0.13144,-0.015479,-0.36167,0.41369,0.64088 -3.1372,-0.95746,2.7448,-1.3816,0.47533,-0.13419,0.33015,-0.3631,1.645,0.15413,0.60295,-0.62765,-0.10348,-0.02229,0.62805 -0.43551,2.5107,-0.20184,2.4775,1.4391,-0.21925,-0.86813,-0.68869,0.50673,0.14623,-0.28779,0.87937,-0.040852,1.2658,-0.72038 -2.1876,3.4944,-0.20467,0.49906,0.2078,1.3241,-0.29959,1.6282,-1.1769,0.63865,-0.16052,1.3754,-0.6386,-0.60319,-0.42682 -1.9146,3.7734,-0.31589,0.29351,1.2301,-1.0123,-0.63607,2.5866,-0.18342,-0.27437,-0.92907,0.042746,-0.33154,-0.142,-0.37525 -1.3449,1.5331,2.439,-2.0786,-0.53637,2.096,1.2271,-0.30869,0.11706,-1.1985,0.5483,-0.85121,-0.36267,-0.92427,1.0033 1.5998,1.4713,-0.7477,1.106,-0.4647,1.2719,-0.9995,-1.197,1.1785,-0.6127,-0.81863,-0.83297,-1.142,0.40704,0.40926 -3.2934,-0.86117,1.66,-1.4255,0.34992,0.3559,0.0072387,0.56064,1.7793,-0.32372,0.6802,-1.4709,0.47492,0.21018,0.80936 -2.9327,-0.75493,1.3989,-1.2269,-0.40876,0.99437,0.10216,0.25782,1.942,-0.40455,0.98123,-0.93243,0.67439,0.3347,0.51477 -0.45175,1.3741,-0.77647,1.0367,0.10126,1.5863,1.6205,-0.50796,1.0255,-1.3913,-0.95985,1.8908,0.69579,-1.5762,0.24528 1.6095,2.8336,-0.13533,-2.9896,0.23391,-0.083449,-0.81247,-0.19469,-1.45,1.4605,0.85921,-0.52464,-0.47137,0.17821,0.69842 -3.053,-1.4756,1.3058,-2.9,0.32467,0.59494,-1.2279,-2.5549,-0.48541,-0.25406,-0.54789,0.56152,-0.041972,1.1809,0.14038 1.6582,3.1575,0.022837,-1.1363,-0.8639,-0.38321,-0.073883,-0.437,0.62788,-1.4663,-0.39807,0.23663,-1.105,0.95583,-0.079379 -2.708,-0.21669,-2.5223,-1.095,1.2304,-0.29441,-0.86727,-1.0198,-0.23091,-1.5463,-0.84286,2.4218,0.10471,0.57086,1.2692 3.0692,0.97039,0.76347,-0.83811,2.4968,-0.086258,-0.50664,-0.9423,0.68735,-0.74042,0.37108,1.0345,1.506,-0.85958,-2.2415 1.6057,2.4591,-1.6422,-1.5027,-0.60914,0.94639,-1.3521,-0.92378,1.0102,0.066395,0.24564,-0.72197,0.52657,-1.2475,-0.43773 4.1925,-0.63969,-0.86122,-2.1385,2.1247,1.5444,1.794,-1.296,-0.95114,-2.0151,0.29238,-0.65029,-1.2884,-0.55268,-0.95564 -3.3032,-1.0459,-2.3472,-1.6404,0.93556,0.379,-1.5266,-0.70068,0.35565,-1.6106,-0.83702,1.8414,-0.32967,0.92478,0.50257 -3.4789,-1.7482,-1.1797,-1.869,0.49429,0.25644,-1.8921,-0.51054,0.52655,-1.3802,-0.4304,1.0291,-0.114,1.0235,0.50046 -3.6723,-2.1736,0.11462,-1.9033,0.60442,-0.26348,-1.3889,-0.60139,0.92569,-0.78179,0.13133,0.24912,-0.1802,1.5975,-0.023566 2.0165,-0.98787,-2.9034,-1.0412,-1.9332,1.5664,0.77578,1.4363,1.6832,0.94539,0.54778,1.4852,-0.91978,0.99118,0.61207 -2.531,-3.0811,-1.2398,-0.33617,1.2907,-1.4251,-1.8373,-0.002301,0.72562,-0.94062,-1.1933,0.82178,-1.6086,1.0591,1.3819 -2.8398,-1.4083,-1.7704,-1.2449,0.29893,0.57658,-1.9021,-0.37222,0.9509,-0.042385,-0.7877,1.2859,-0.27119,1.8027,0.56188 0.19492,0.43348,2.9442,0.36618,-0.79786,0.8072,2.0815,-1.9817,1.0861,0.27979,-0.41869,0.19118,-1.3346,0.55053,0.051618 4.1073,0.33664,-0.17061,-0.86372,2.319,0.92869,0.50787,-2.2374,0.073943,-1.3789,0.082538,0.63391,0.085053,-0.4864,-1.5057 3.9667,-0.48473,-1.6485,-0.49,1.6473,1.8723,0.75008,0.20656,0.80683,1.2419,0.021281,-0.19661,-0.50147,-0.9724,-0.9137 -0.59286,-1.8382,1.235,-0.041219,-0.033974,0.76751,1.4996,-3.1087,1.4427,0.33735,-0.79867,-0.34883,-0.35494,-0.0067149,-1.2373 -2.949,2.1254,0.22363,-0.52522,0.054183,1.9753,1.1964,0.51246,-0.69031,-0.059223,1.4892,-0.36113,-0.4897,-1.1675,-0.86115 0.39486,1.7336,0.8913,0.82699,1.3243,-1.1132,-1.748,1.257,0.89286,-0.88765,0.68996,0.29586,1.4566,1.3384,-0.82466 -2.7447,-1.6588,0.1259,0.038977,-0.051419,0.27909,-0.37941,-2.0455,1.5661,0.64376,0.38034,0.081083,-0.46551,0.87992,-0.58537 -2.9992,0.65151,-2.6868,-1.4021,1.1924,0.79685,0.34153,-2.0508,-2.3283,0.73215,-0.94092,1.0362,-0.11185,0.59227,-0.75099 3.5077,-0.0053758,-1.8367,-1.5737,2.1506,-0.25171,1.7576,0.64881,0.14714,2.0704,0.58351,0.41888,-0.97821,-2.2896,0.67658 -1.0779,-2.8034,0.45179,-0.38673,1.1358,0.23635,-2.128,-1.2709,0.62383,0.99499,-0.85493,1.8124,-0.17849,2.1082,1.6123 3.1488,-1.4466,-1.3491,-0.59387,1.2392,2.0273,2.0873,0.14548,-2.023,1.4011,-1.3137,1.9404,-0.97614,-1.2018,-0.38798 1.8856,1.8878,1.9915,-2.6691,1.1497,2.8266,1.4373,0.94774,-2.1039,-1.4077,1.5254,-0.38666,-0.8885,1.0407,0.23469 -1.3194,2.1237,-1.2805,2.4068,-0.40616,1.0022,0.92067,0.28958,-0.35258,0.45396,-0.2823,0.80546,-1.0173,0.48841,0.045179 1.7508,2.1731,2.8323,-1.6236,0.38205,0.025032,0.38134,2.2606,-1.0575,0.95621,0.16118,0.063568,-0.92241,0.35861,1.0734 0.078219,-0.61983,0.96113,-2.1718,-0.9029,1.0555,-1.481,0.55274,-2.5303,0.98249,1.3145,1.262,0.55163,3.1208,-0.2467 0.014023,2.4347,-0.37596,0.72768,1.6983,0.2906,-1.1542,0.0055369,-0.58085,1.8827,1.1026,-0.29952,-0.74806,0.70806,-0.75922 -3.2794,-0.26318,-0.30054,-1.6205,0.92677,2.2273,0.51279,-1.8397,-1.1649,0.38455,0.50341,0.21312,-1.167,-0.59859,-0.50847 -1.1356,-0.11451,2.9834,-0.51086,-0.29116,0.17826,1.6008,-1.8645,1.2502,1.1418,-0.23513,0.35755,-1.1635,-0.041164,-0.086295 3.13,0.88605,-0.38843,-2.0436,1.5455,0.4415,-0.067253,-0.25868,1.0214,-0.35422,0.20074,1.0023,2.0252,-1.7053,-1.2177 -1.6819,1.1501,2.8545,-1.3676,-0.85008,2.2273,0.62934,-0.42521,0.046359,-0.54101,0.1499,-0.3656,0.24645,1.1582,0.52336 0.4849,0.43763,4.1055,-1.4608,-0.28561,1.3081,0.42807,0.50235,1.4317,-0.271,-0.40073,0.64489,-0.23756,1.4709,0.45905 2.3718,-0.66604,2.844,0.31165,4.2502,0.82014,0.69071,0.93827,-2.1146,-2.1042,-1.4503,1.14,0.90869,0.25134,-0.10995 -1.0584,3.2181,0.71316,1.5205,0.15915,0.7719,-1.1963,0.96943,-0.43435,1.4249,-0.016511,0.92156,-0.76039,0.25825,-0.44909 0.93819,-1.7837,3.5763,-0.40581,1.3141,1.7537,2.2443,-0.32129,1.204,0.66552,-1.2292,-0.82487,-1.2883,0.81521,0.20884 -0.11676,3.2131,-0.52238,0.59337,0.10615,0.40202,-0.49011,-0.077631,-0.79316,2.637,-1.1112,0.23507,-0.51678,-0.24939,-0.33175 0.023056,3.7223,-1.226,-1.0395,0.32965,0.93365,-1.613,0.49192,-1.1528,1.2011,0.60686,-0.10371,-0.17742,-0.57353,-0.51892 -1.787,1.3043,3.1336,0.93712,1.0649,-0.85911,0.62784,0.69454,1.0646,0.69734,0.36415,0.02322,-0.88959,-0.9156,1.5377 0.70281,0.88369,4.0828,-0.43965,0.6583,0.69411,0.61417,-0.024035,1.8242,0.60314,-0.013742,0.15169,-0.58668,0.94761,0.62482 -2.468,-0.29125,2.4984,-3.1845,0.32149,0.83027,0.75321,-0.79338,0.10433,0.38005,0.1013,-1.1568,-0.46955,-0.18681,0.91004 -1.1658,-1.448,3.4877,-1.3511,0.6833,0.67429,0.68178,0.47593,0.88751,1.769,-0.12284,-0.95494,-0.15298,0.6876,0.93994 -0.94638,2.2846,2.9921,-1.8353,-0.19321,1.1013,0.90815,-0.46327,0.26521,0.063078,0.56028,-0.44918,-0.38393,0.28233,0.56422 -1.3307,3.2452,-0.098793,0.52993,0.2184,0.31004,-2.2127,2.4321,-1.9097,0.24785,0.4553,-0.09751,-0.52234,-0.13919,-1.1778 -2.3398,0.19347,0.69867,-2.4376,0.34462,2.1212,1.0658,-1.6818,-0.41973,-0.61805,0.053935,-1.5952,-0.42117,-0.86281,0.13147 2.6507,-1.3563,-1.0563,-1.9093,1.5014,4.0457,0.58491,-0.24521,-0.11711,-0.68252,0.081539,1.0825,1.1136,-0.027161,-0.46484 1.0313,2.7243,3.6149,-1.0343,0.032456,-0.035174,-0.48176,-0.47185,0.32604,-0.039754,-0.56603,0.99209,-1.1496,0.53262,0.32428 -1.5942,-0.72995,4.3107,-0.56814,0.94073,-0.20771,-0.2177,1.1013,1.4287,-0.26503,-0.12519,-0.57418,0.29304,0.55048,0.38619 -1.4365,0.59123,4.3034,-1.6924,0.074246,0.10616,0.819,-1.4482,0.89272,0.60468,0.02696,0.031919,-0.72269,0.42164,-0.32965 -3.2698,2.2987,-1.2382,0.40547,0.47857,0.83462,1.2635,2.7206,-0.71274,-0.059924,-0.58287,-0.64581,0.048826,-0.59006,1.315 1.4698,2.2971,-1.6836,0.74773,1.1376,0.13941,-0.32344,-1.7623,0.2659,1.6859,-0.065987,-0.85491,0.12575,-1.0541,0.50613 -4.0657,0.16834,-0.7191,-1.2505,0.28949,-1.1279,1.3567,1.2664,0.75001,-0.76551,0.29907,-1.0911,-1.0342,-0.54975,-0.23695 -2.0464,1.6304,2.6394,0.71546,0.90192,-0.82762,0.19686,0.6615,0.90325,0.22095,0.65388,1.1424,-0.88204,0.30627,0.46873 -0.10457,0.83986,3.099,2.4516,2.8132,-0.22824,0.67864,-0.62736,0.099045,-0.52668,-0.30562,0.67445,-0.25444,-0.23844,1.1108 1.7712,-1.7617,1.7302,2.1147,3.606,-0.44778,-0.7015,1.8522,-0.97903,-3.0267,-0.21175,-0.27057,0.72013,0.74493,1.3471 0.23549,0.63971,2.3371,0.69294,0.37802,-2.083,-0.73102,2.9009,-0.026689,-0.79256,-0.41993,-0.45187,0.10706,-1.3128,0.74167 3.1047,-0.24754,-1.0194,0.43647,0.28295,3.9328,0.31239,0.023136,-1.0368,-0.8701,-0.96798,1.742,1.7282,1.2678,-0.83393 -3.0771,-0.49346,-2.6807,-1.0026,0.35201,0.99668,0.70573,-1.0123,1.1289,-1.5392,-0.79743,-0.41229,-0.25773,-0.84566,-0.59927 -1.7691,-2.9951,2.3433,1.2478,2.4655,-0.13746,1.2492,-1.0275,0.076661,-0.85763,-0.046347,0.044594,0.61225,-0.30803,-0.047661 0.17834,-0.16667,1.6891,1.6646,-0.54349,1.598,-0.3324,-1.1237,-1.2415,-1.0297,0.79485,0.6374,0.098015,1.0745,0.70622 -0.93843,-0.41075,2.3881,2.6388,2.4053,-0.40797,0.84544,0.80916,0.98263,-1.5946,0.35902,-0.42634,-0.73168,0.42169,1.7101 1.0476,1.4553,1.0502,-2.083,-1.298,-0.12936,-1.01,-2.1679,-0.82175,-1.7767,0.5662,-0.15323,-0.084182,1.8402,0.11417 3.9814,-0.30434,-0.37991,0.15156,0.58303,0.95823,-0.71864,-2.2691,0.41211,-0.86078,-0.18893,-0.15513,-1.3052,-0.47534,-0.99256 -4.4487,0.6584,-0.85946,-0.76556,0.93968,-0.17062,2.1111,0.64365,-0.67097,-1.6551,0.13981,-1.5338,-0.13307,-1.2774,-0.16815 -0.4384,3.3636,0.7403,-0.25869,0.93399,0.44415,-2.0437,1.4378,-1.6938,-0.5863,-0.43345,-1.1047,0.86491,-1.8209,-0.36731 -2.3984,0.098249,2.1466,1.7948,2.3973,-0.79678,1.2508,1.1695,1.1395,0.59655,0.60177,-1.4618,-0.87779,0.23496,0.38762 -3.7303,-0.13189,0.9701,-0.67307,0.8311,-1.6491,1.3968,1.137,1.335,-1.0336,0.59177,-1.1879,-1.0767,0.57039,0.23691 1.0474,-2.1743,3.6264,1.8679,2.6906,1.306,1.1156,1.1225,0.36778,-0.8778,-0.348,-0.30849,1.1604,0.95239,0.54727 -3.5037,1.8645,-0.21018,-0.53972,0.62447,1.7799,1.4933,0.11227,-0.90706,0.50994,0.57176,-1.5067,0.58094,-1.7611,-0.040304 0.86121,3.9396,-0.29179,-0.83772,0.60775,1.6963,-1.334,0.358,-1.5244,-0.85464,-0.87865,-1.1188,-0.29227,-1.3535,-0.023283 -0.80833,4.2168,-0.14217,0.40767,0.52842,2.2912,-0.54174,0.88238,-1.6699,-0.58075,0.15584,0.42667,0.32293,-0.37053,-0.091279 5.7957,-0.99508,-1.3384,-1.3415,2.8909,2.0542,2.3484,-0.37978,-0.37328,-0.8829,0.99902,0.1283,-1.1212,-0.095703,-0.63874 0.91556,2.4034,-2.0414,-0.44322,-1.5411,1.2491,-0.78457,-0.79449,0.75827,-0.50723,-0.65844,-0.038239,0.69889,-0.079274,-0.3402 -3.3614,1.771,1.2759,-0.45874,0.14748,-0.57533,1.0276,1.4892,0.6076,-1.0974,0.99875,-0.37749,0.15348,-0.90982,1.0202 -0.25902,3.9541,1.1954,-0.99643,-0.18727,1.1067,-0.30566,0.59348,-1.7495,-1.26,-0.79539,0.26396,-0.77689,-1.3318,0.87434 2.1898,-0.18527,-0.28081,-1.3193,1.7332,-0.91872,-0.16194,-0.51037,2.7678,1.0909,1.146,0.77723,1.1212,-1.4037,1.1195 1.5274,2.5307,1.7212,-0.53054,-0.79264,0.42207,-1.5948,-0.38949,1.1476,-0.45941,-0.71732,0.63385,-0.7977,0.37268,0.37754 1.8681,2.2105,3.1882,-0.72613,0.0085247,0.1523,-0.47343,-0.019072,0.70669,0.56067,-0.45716,1.1009,-1.0155,-0.81923,0.33576 2.7504,0.84435,2.1131,0.1726,1.2959,-0.388,-1.8461,0.047044,1.3372,-0.3246,-1.0079,0.46894,0.36743,-1.9067,-0.5687 3.5868,2.0085,0.81041,-2.9344,1.0881,-0.34399,-1.107,-0.67898,0.66338,0.30115,0.80678,0.513,-0.81369,1.0114,-0.038346 -3.0542,2.7264,-0.18228,-0.035062,-0.14923,2.2735,1.1884,1.3473,-0.44021,0.066882,0.28283,0.77368,0.74644,-0.5773,0.47875 1.4647,0.19512,-0.0010402,-0.18204,3.378,-1.5683,0.77614,-0.01515,-0.82095,2.1192,1.6625,-0.14139,-1.2472,-0.68103,2.137 2.285,0.92435,2.2343,-0.25297,1.5839,-0.1931,-1.7139,0.37364,0.82508,0.17178,-1.8101,1.015,1.3149,0.44474,-1.514 1.6838,-0.67027,4.2488,-0.2017,0.84737,1.5883,1.4153,-0.0054518,1.3168,0.67472,-0.63629,0.46251,-0.4038,1.0086,-0.64271 2.5896,1.052,-0.67461,-4.6941,2.3209,-0.96341,1.0919,1.2189,-0.17137,-0.84853,1.8329,0.39745,0.54436,-1.6131,1.3529 -2.9701,1.9128,0.87316,-0.81912,0.05106,1.1918,1.6145,0.15918,-0.74702,-0.40285,0.41722,0.62452,0.29052,-1.431,1.1864 -1.4854,1.0144,2.194,0.39612,-0.53999,1.47,0.4373,0.23441,1.5944,0.76007,0.47866,0.42408,-0.2637,0.36991,1.051 2.9826,0.9946,0.36673,-2.8914,1.1758,-0.15258,-0.66307,-1.3518,2.3205,0.64534,1.5877,0.40644,0.17615,0.14692,0.76527 1.0001,2.7648,-1.4611,-2.8162,1.5741,0.68651,0.72235,-0.96075,-2.3479,-0.60934,1.7185,-0.21817,0.5916,1.3127,1.015 1.8991,-1.0455,-0.36504,-3.5961,-0.73744,0.6759,0.91021,0.6553,-0.054354,-0.70454,-0.52689,2.3809,-1.397,2.3807,-0.59098 0.88863,-1.0526,-2.3442,0.8642,0.10841,1.7708,1.0413,0.86246,1.3855,0.26791,-1.2653,1.2566,0.67543,-0.24752,-0.18692 -1.6509,3.6043,0.078725,-0.22509,0.95865,0.49313,-0.75721,0.50581,-0.49665,0.62758,-0.033199,0.67077,-0.70118,0.0091215,-1.0223 -3.14,0.31646,-0.20712,-1.4521,0.33871,2.2571,0.34021,-1.8626,-0.47244,-0.45502,0.76735,-0.22066,-0.071955,0.5896,-1.2992 -1.4039,3.0608,0.30473,0.024992,-0.53664,2.3184,0.011668,1.0991,-0.92339,-0.38375,1.133,-0.3398,0.81322,-1.1232,0.44421 1.9875,1.12,2.3407,1.1112,2.7829,-1.0129,-1.3574,-1.0877,1.0181,-0.90282,-0.21651,0.93791,0.55635,-0.29701,-0.73905 4.4354,-0.15448,-1.676,-1.1938,1.6192,-0.43053,1.8963,-0.35663,0.52952,1.6335,1.0496,-0.70399,-2.4346,-1.174,1.1924 1.2076,4.166,0.64719,-1.5938,1.1697,0.0033136,0.28391,0.23038,-2.5986,-0.35237,-0.98723,-2.1748,-0.929,0.18502,-0.17601 3.7366,-0.97691,-1.1906,-1.7754,0.92031,-0.16045,1.7834,0.42829,1.0482,1.5957,1.4273,0.80577,-2.7618,-0.38726,1.9944 2.9751,-0.67057,-3.4016,-0.49314,-0.81251,0.3905,2.7451,0.99221,-0.78036,-0.2196,0.020195,1.8703,-0.27294,-0.82317,-0.58554 -0.3487,-1.6259,1.1284,-0.42926,-1.231,2.2844,0.94024,-0.43074,1.4554,0.37831,-0.79719,-0.023523,0.82482,-0.79878,-1.3786 3.829,0.46464,-1.1577,-2.9439,0.80061,-0.96654,1.2688,-0.16291,1.392,1.5642,1.6372,0.52692,-2.3916,-0.056334,1.3292 3.6904,1.8556,-1.0636,-0.35389,2.0373,-0.50516,0.39378,0.046939,-0.43373,2.3091,-0.87816,-0.7167,-1.9952,-0.56705,-0.62551 3.3734,-1.3666,-0.79262,-2.4547,2.4045,1.5783,1.3694,0.61017,-0.36977,0.62318,0.48257,3.1115,1.5948,-0.48539,-0.74065 1.2517,2.8684,-0.59943,0.23653,2.2977,-0.52412,-1.9294,0.5719,0.41383,0.84418,1.5003,-1.1038,0.56135,-0.62311,-0.68834 3.1243,2.1913,-2.0177,-3.4335,0.25941,-0.83059,0.42243,0.10889,0.29124,1.6038,1.5435,-0.61774,-0.98868,-0.52576,1.3811 4.1216,0.43118,-2.0362,-1.5883,1.0994,-0.86721,1.5064,0.0084442,0.21585,2.0627,0.65927,-0.47975,-1.7682,-1.6318,1.0607 -2.8381,3.0236,-0.35953,0.27719,-0.29905,1.3089,1.1301,0.74384,-0.89658,0.23223,0.10927,1.0753,0.71419,-0.32388,0.43304 3.5699,0.3082,-1.5217,-0.070055,1.955,0.69927,0.70473,-1.1083,0.85688,0.75211,0.41179,-1.438,-1.2924,-1.6877,0.10638 2.6945,-2.4962,-0.36985,-0.080138,1.7865,2.6572,0.97725,-0.68001,-2.1913,1.6041,-0.45341,2.0928,0.20875,-0.25947,0.42036 -2.7322,2.543,-1.6795,0.26006,0.28085,0.18818,0.66605,3.3509,-0.39008,-0.17825,-0.92323,-0.1875,-0.58485,-0.88999,0.63108 3.0261,0.94254,-0.17214,-0.70957,2.6595,-0.60023,0.71756,-2.6238,0.36697,1.4328,0.94133,-0.80268,-1.737,-0.49108,1.3744 1.34,2.4563,-0.10739,0.46714,2.0819,-1.2925,-1.7472,-0.88772,0.17594,1.8424,0.23743,-0.59338,-0.33261,-1.594,-0.16339 1.2393,3.3787,0.83275,-0.45857,-0.48514,-0.024524,-1.7284,-0.86359,0.17425,-0.056204,-0.050721,0.41483,-1.1688,0.68727,-0.1332 -0.60917,3.4548,-0.38464,-0.018103,-0.25393,0.35023,-1.7963,1.2138,-0.16709,0.90812,-0.95903,0.070763,1.4273,-0.84666,-0.16605 2.6916,2.0613,-1.4708,-1.7584,0.49258,-0.80489,-0.18933,-0.39943,0.36047,2.3342,0.92889,-1.3041,-1.9082,-0.57493,0.82972 2.215,3.3621,-0.8041,-2.3914,0.58735,-0.87225,-1.1864,-0.32794,-0.26139,1.6512,0.6585,-1.4142,-1.4161,-0.52811,-0.027935 -4.1806,-0.72862,-0.77778,-0.97656,-0.16062,1.0609,-0.085115,0.63686,-0.18471,-0.39801,-0.14915,-1.4347,0.89845,0.38695,-0.59605 2.7047,2.1136,-0.62186,-0.64656,1.7877,-0.97255,-0.47743,-1.1122,0.32207,2.1721,-0.27581,-1.2613,-1.2845,-1.7302,-0.14666 -0.84386,-2.5206,0.045065,-0.18736,0.086014,2.3798,0.22109,-1.36,1.7022,1.1847,-1.7965,-0.86699,0.77566,-0.21943,-0.6859 3.2004,1.2657,-0.84192,-1.6717,1.2081,-0.48455,0.15402,-1.2467,1.1814,2.0785,1.3634,-0.67243,-2.133,-0.35512,1.246 1.851,-0.15692,-1.3957,0.81442,0.93302,2.0359,-0.72042,-2.497,0.3616,-0.80406,1.1043,-0.35025,1.2008,0.53565,0.39586 -0.43551,-0.44511,1.9915,-2.6029,0.42754,2.2136,0.3099,-0.21337,-0.67411,-0.80064,1.1538,-0.37826,-0.85423,2.821,-0.23555 -1.4108,-2.7996,1.9851,-1.0418,0.43809,-0.13197,1.0712,0.28778,2.0222,0.23394,-1.1079,-0.66267,0.88752,-0.95222,-0.66719 0.62291,0.054372,3.3172,0.25812,-0.32072,1.4875,-0.02945,0.56938,1.2165,1.2898,-0.23356,-0.078518,-0.87542,-0.28705,1.8553 1.6648,-0.32645,0.59222,-4.4747,0.020451,1.2204,0.61964,0.56633,-2.3598,-1.3366,-0.21273,1.1659,-0.35962,2.5303,0.43845 -1.9845,2.0758,-0.93367,1.287,0.26923,0.82879,1.2002,-0.088238,-0.97571,1.5502,0.017358,1.1543,-0.84958,-0.29733,0.70034 -2.1057,1.0435,-1.7482,1.4162,-0.18884,0.97473,1.0197,0.68646,0.64852,0.68773,0.43895,0.37809,-0.99811,0.19529,-0.19151 -4.0123,-1.1374,0.083657,-1.7052,0.31259,-0.35569,0.24481,-0.5607,0.56882,-1.0251,0.40155,-0.62968,0.15341,-0.65338,0.18906 -4.3285,-0.37837,-2.0123,-1.4725,2.4637,-0.84287,0.45748,-0.43963,-1.1007,-2.0801,-1.1851,-1.052,-0.2987,-0.27185,-0.018388 1.6626,0.69401,-0.87165,-1.0232,2.3124,-1.051,0.51706,0.083186,1.1662,2.2696,0.47004,0.97536,0.8851,-2.3495,1.0855 -3.5304,-0.46541,0.50191,-1.2227,-0.21874,0.5179,0.42827,0.95853,1.2904,-1.0356,0.80121,-1.2183,0.33032,-0.16723,0.42241 -0.35118,0.73187,-1.056,2.5232,0.34395,0.61476,-0.26584,0.27649,1.6398,-1.6082,0.047689,0.28787,-0.27553,-0.36031,1.2614 -0.68108,3.1803,2.1246,0.91943,1.7189,-1.6247,-0.28516,-0.55515,-0.15108,0.30353,-0.23108,0.97019,0.14923,1.0554,-0.57709 -3.5357,-0.26447,-2.5119,-1.2533,0.35524,0.22438,-0.12745,-1.0465,0.1266,-0.89118,0.045553,0.59253,0.32975,0.37779,-0.94044 -2.8255,-1.7275,-2.6278,-0.67225,0.75154,-0.095367,-1.7343,0.19713,1.2947,-0.54692,-1.1418,0.58597,-0.84611,1.3164,0.87745 2.6251,0.93205,-1.5726,0.58666,-0.17072,0.31267,-0.22167,-1.9962,1.2382,0.11617,-0.19952,0.052735,0.21705,-0.34188,-1.0254 1.2919,-0.027292,-0.78042,-1.8309,2.826,-0.58776,0.5638,1.245,-1.5349,1.8521,1.5608,0.29311,-0.25751,-1.9344,2.03 -3.7866,0.67569,-1.5587,-0.85719,0.83374,0.3313,1.0266,0.50996,0.67091,-0.36586,-0.6044,-1.2559,-0.76722,0.12955,-1.2309 -0.20309,-1.8045,1.8308,-0.32688,0.032621,1.3204,1.3113,0.84052,2.6154,0.39794,-1.0916,-0.83215,0.72418,-0.10911,-0.47441 2.2545,1.8033,0.31141,-0.87252,2.0494,-0.6925,-1.4315,-1.8468,0.0274,1.4927,0.82164,-0.83735,-1.7883,-1.0251,0.28942 3.2041,2.9354,1.0302,-1.5061,2.8749,-1.1854,-0.13129,-0.36215,-0.48454,1.4915,-0.89644,-0.77111,-0.71359,-1.126,-1.1512 2.9581,1.2172,-1.2171,-0.041973,1.3843,0.079533,0.50764,-1.7602,0.66459,-0.45409,-0.59426,0.70185,0.17228,-0.53005,-1.6578 0.28007,-1.3168,3.6739,-0.82182,-0.037966,1.1968,1.4097,0.1226,1.6496,0.091495,-1.0733,0.27172,-0.016315,0.28305,-1.2522 -1.7645,-2.1059,1.3663,1.5918,1.8314,0.086703,1.1,1.3457,1.1889,-0.69044,-0.36189,-2.1799,-0.80676,0.19619,0.95345 1.0307,2.5251,-0.45925,1.0093,-1.1525,0.76241,-0.11277,-0.91669,0.66091,0.21745,-1.5101,1.0218,0.60598,-0.089583,-0.69772 -0.9679,-0.85325,1.6558,2.113,2.5876,1.3853,0.85066,1.0508,-0.075868,-1.8556,0.62087,-0.70043,0.29121,1.1844,1.9577 -0.78937,-4.752,-0.051365,0.010768,2.8173,0.62645,-1.3754,-0.46942,0.022594,-0.16472,-2.7853,0.69759,0.93905,0.22815,1.3011 -2.4979,-2.3419,0.40409,-1.3111,0.30962,0.53201,-1.5414,-1.0364,1.6056,0.58964,-1.1497,0.17707,0.38433,1.3094,0.68524 -2.5442,-2.244,-1.1888,0.21784,1.0479,-0.66064,-0.84442,-0.85991,2.0285,0.70558,-0.6746,-0.31475,-0.048981,0.48361,0.32555 3.0148,1.1284,1.315,-0.8179,3.1249,-1.662,-0.93155,-0.63332,0.69697,1.1911,0.18945,-0.43774,-0.0055358,-1.6743,-0.30084 3.7972,-0.97044,-2.0399,-1.2165,1.4489,3.0429,2.8098,-0.5404,-0.75451,-0.81902,0.69576,0.1421,-0.20557,1.069,-0.14942 -1.238,2.3143,-0.048424,-0.15061,-1.4578,-0.22726,-0.20118,-0.77881,-0.37895,0.039841,-0.034439,0.55657,0.035661,2.083,-0.11346 0.019603,3.7124,0.97177,0.49209,0.71704,-0.10766,-0.78887,-1.3016,0.28505,0.39626,0.054842,0.9112,-0.7558,1.3865,-0.84583 -3.4497,-0.66948,2.1793,-2.8367,0.69434,1.0615,0.11333,-1.1007,0.039914,-0.6461,0.41818,-0.37656,0.281,1.1715,-0.051244 2.6567,-1.6733,-0.062938,1.1905,4.1635,-0.60011,-0.81786,1.405,-0.44826,-0.72845,0.40708,-0.93043,1.9797,0.42914,0.00943 -1.2865,3.0381,0.66574,1.0933,-0.16041,0.36773,-0.24034,-0.1995,0.56941,0.69021,0.18923,1.6407,-0.62599,1.0253,-0.55383 -3.9364,-0.81059,0.30119,-2.122,1.5605,1.359,0.37376,-0.7624,0.20494,-1.6052,0.40986,-0.50576,0.13618,1.0826,-0.72065 0.29256,3.801,-0.22858,0.03906,-1.6668,0.71254,-0.95993,0.2582,-1.4894,0.80537,-1.3652,-0.079452,-0.60424,-0.0063306,-0.070216 -2.7949,1.2429,-2.8476,-0.66556,-0.13879,1.5,0.98915,0.24292,-0.50701,0.70599,0.49082,0.59187,0.038291,-0.41184,-1.3918 -0.59351,2.0869,2.9753,-0.24351,-0.50677,0.92426,-1.334,0.94409,0.066193,0.047749,1.3526,1.051,-0.94853,-0.17362,0.44319 -2.7691,-0.94246,-1.4401,-1.7966,0.45772,0.90424,-1.898,-1.8036,-0.13524,-0.60127,-0.77648,1.9176,0.45959,0.52782,0.88401 -1.9524,-1.2338,2.9914,-0.99682,1.4923,-0.20017,0.040931,-0.0054703,1.8042,0.656,0.65432,-0.88052,0.13013,1.7245,0.25477 -2.3234,2.1825,-1.2413,0.28537,-0.74489,1.5356,1.2043,0.74137,0.74964,0.70361,0.11648,0.99122,0.18519,-0.55468,-0.06345 -1.1207,-0.18231,2.826,1.2554,0.88324,1.0256,0.54221,-0.060952,1.387,0.72684,1.5259,0.144,-1.4504,0.67824,0.62335 -1.513,1.3431,2.3795,0.56826,0.36433,0.48336,0.53016,-0.56981,0.45714,2.4393,0.93303,-0.40727,-0.82518,0.92222,-0.22415 -3.951,0.94909,-1.6765,-1.1394,0.069151,-1.1776,2.2808,1.3112,0.047648,-0.57024,-0.43687,-1.2027,-0.2418,0.066219,-0.36976 -1.8426,-1.4962,2.1009,-0.53177,0.11713,0.26609,-0.21646,0.28132,2.6333,0.59071,0.047062,-0.89071,0.89085,0.89894,0.0063284 4.3335,-0.36118,-0.28456,-2.7679,0.54692,-1.3254,1.396,0.042727,-0.11477,1.7736,1.265,1.6295,-0.98203,-1.4203,0.63465 -1.042,0.68081,0.71556,-2.4083,-0.41338,2.333,0.21155,-0.74061,-0.18142,0.92622,0.083502,-0.84606,0.74183,1.894,-0.015643 3.0407,1.1409,-0.054167,-0.28519,2.0784,0.59569,-0.75345,-0.93873,1.6635,0.68462,-0.37763,0.43593,0.99698,-0.92174,-1.6842 2.5016,1.8789,-0.50233,1.053,0.056794,0.60243,-0.88767,-1.8451,0.76791,0.3733,-0.78422,-0.82481,-1.0198,-0.98609,-0.80233 2.6973,1.1103,-0.97594,-0.87158,-1.4498,1.2913,-1.3251,-0.3969,1.236,-1.9331,-0.58952,-0.65029,-0.22102,0.8502,-0.80096 -0.15158,-0.88469,2.1528,-0.11665,-0.10789,1.2712,0.82881,-1.4011,1.1666,1.8538,-0.21786,-1.0696,-0.18355,2.2944,-0.58012 -1.9608,-1.9608,2.6933,0.86936,2.3146,-1.1939,1.2383,0.46325,1.682,-0.41602,0.7482,-1.1528,-0.5857,0.91622,0.95192 -3.2231,-1.9444,-0.038771,-0.67243,1.5235,-0.13085,-0.48526,1.014,1.58,-0.77733,-0.64611,-1.5048,-0.99921,2.3075,-0.35155 2.9145,2.29,-0.33872,-1.9447,0.52251,-0.65358,-1.131,-1.6259,0.6081,1.4129,1.133,0.11148,-0.91521,0.87255,0.036902 -3.3395,0.032644,-1.1414,-0.57605,0.66513,2.2723,1.397,-1.1179,0.87436,-0.49841,0.077989,-1.0327,-0.46156,0.42039,-1.5681 3.121,-0.79198,-1.7729,-3.7274,0.7876,-0.93083,1.637,3.0945,-0.35283,0.84918,1.6166,1.8149,0.62828,-1.3876,-0.049302 1.6747,1.8318,2.5817,-0.38487,-0.7531,0.59089,-1.0858,-1.042,0.71893,-0.81312,-0.76697,0.32397,-1.6238,1.8019,0.17161 0.1919,-1.2663,2.9784,0.10287,0.49984,1.4079,0.42274,-1.4611,-1.4254,0.069908,1.2943,-1.0077,-0.81561,3.0215,0.24448 -2.6817,1.5521,-0.45761,-0.23958,-0.5098,0.099656,1.1624,-0.79873,-0.13303,2.2864,0.89583,0.44858,0.056713,-0.62729,-0.43423 -3.5014,-0.021185,0.64552,-0.0076419,-0.051758,-0.049013,0.95023,1.3323,1.9124,-0.82917,0.9444,-0.6834,-0.73157,0.005918,0.26422 1.6982,3.8613,0.52696,-1.8217,-0.38959,0.68078,-0.17186,1.0002,-0.80456,-1.6416,0.2889,-1.205,-1.617,-0.047535,0.52887 -4.4245,0.65908,-0.99687,-0.98166,1.0061,0.59716,1.9704,-0.75133,-0.34608,-1.0882,0.4269,-0.54899,0.35542,-0.0436,-1.2957 -2.5641,-2.7015,1.9853,-1.3401,0.91712,-0.33345,-0.36688,-2.1123,1.0244,0.77948,-0.61845,-0.13187,-0.22637,0.87654,0.37523 -2.6698,-0.73834,-2.6329,0.66621,0.73925,-0.94964,0.57758,-0.51497,1.5215,-0.20027,-0.16332,0.18637,-0.60851,0.77087,-0.65894 -3.8994,-0.54422,0.70987,-2.0164,0.35007,1.1514,0.27402,-1.9174,-0.32144,-0.85895,0.9667,0.14342,0.010306,1.2632,-1.0756 3.8327,-0.20584,-2.1066,-1.6332,2.3811,0.50724,3.4355,0.16734,-0.62201,0.92995,0.067219,2.3018,-1.6016,-0.99718,-0.11486 3.3359,1.6204,0.62116,-0.3603,1.5354,-0.20544,-1.719,-1.599,0.17402,1.3113,0.67653,-1.2104,-1.4618,-0.44795,0.57907 4.2032,-0.32345,1.7562,-0.024403,3.3761,-0.14232,-0.70177,-1.7802,0.063695,-0.3612,0.46575,-0.27009,0.084091,0.14003,0.29623 3.0349,1.8193,0.3773,0.5264,0.44968,0.48326,-0.33434,-0.42662,0.97272,-0.70938,-1.0896,-0.33172,-2.1485,-0.92485,-0.27191 0.7375,-2.9998,2.9188,0.40427,2.8213,2.3565,1.0235,0.86819,-1.9223,-1.4652,-0.36874,-0.25039,2.5455,1.2767,-0.020575 -3.4602,1.9396,-1.3256,-0.23482,-0.088044,1.2274,1.3884,2.0939,-0.36111,0.84242,0.47944,0.25599,-0.23276,-0.50566,-0.67148 -3.742,-0.3843,-1.6647,-1.6847,1.3877,0.60902,-0.33973,-2.7831,-1.0361,-0.8689,-0.35066,1.3979,0.25394,0.81046,-0.74877 -3.6088,-0.9871,-2.5944,-1.0297,2.0091,0.47761,0.20702,-1.874,0.13165,-1.3975,-1.5003,0.81426,-0.87137,-0.016194,-0.7125 -2.5132,-0.22874,-3.6763,-0.65096,0.98447,0.13734,0.75685,-1.8865,0.44344,-0.68898,-2.0933,0.45488,-0.52684,0.49353,-0.32844 0.1593,1.3991,0.83083,2.7627,1.6378,0.39429,-1.1252,-0.68489,1.0524,-0.61115,0.14158,0.77418,-0.59914,0.12556,0.49628 -2.0209,0.056979,0.34572,0.79921,-0.17382,0.32723,0.88103,-0.39632,2.0953,0.10921,1.3125,-0.21406,-0.58655,-0.47848,-0.17571 0.42527,-0.17107,-0.27918,-2.9958,0.53577,1.478,1.0358,1.6946,-1.4297,-0.83527,-1.0171,0.97695,1.7184,-0.27565,-0.036549 -3.0832,1.6722,-0.86609,0.096747,0.18809,2.195,2.5667,-1.1077,-0.8322,0.71749,0.18513,-0.4535,-0.186,0.12656,-1.2525 1.211,2.6034,-2.7753,-0.79343,-0.62573,1.6952,-0.39634,-0.62516,0.38716,-0.48092,-0.1868,-0.93362,0.14976,-0.76767,-0.6451 2.5298,-1.9944,-0.13952,-2.7112,-0.77353,0.64423,0.77925,1.2629,-0.83668,0.33024,-1.6157,1.3763,-1.2677,3.5557,-0.93618 -3.1962,0.52791,-2.0652,-0.80399,0.96399,1.3885,1.1679,-2.1977,-0.72368,0.65276,0.12192,0.80352,-0.063199,0.48198,-1.5737 2.9385,1.2282,-0.65713,-0.23567,1.3158,0.67938,0.28872,-2.3965,0.29881,-0.21588,-0.30839,-1.7262,-0.6119,-0.61552,-0.088216 2.7903,-0.8382,-0.44226,-0.53315,0.79392,-0.65216,1.6334,-0.045868,-0.66619,1.6837,0.479,-0.15334,-1.937,-0.64377,2.3078 -4.3432,-1.2463,0.052217,-2.7501,1.8689,0.087287,-1.2223,-0.5507,-0.76176,-1.1358,-0.32623,-0.067154,0.076749,0.73497,0.098385 -1.7091,-2.7764,1.4022,-2.8305,1.7374,0.18087,-1.7924,-0.41448,-0.5009,1.0731,-2.4014,0.59543,0.23764,2.1333,1.4367 -2.9883,0.99984,0.35903,-0.0072982,0.27563,0.76934,0.37015,-0.54822,0.56329,1.1894,1.1014,-0.69287,-0.44604,0.7152,-1.2322 -2.8498,-1.7003,-1.2994,-1.8477,2.3098,1.6259,-1.9448,0.023309,-0.53368,-1.4402,-1.2592,1.8058,-0.16144,1.3035,1.6485 -4.0067,-0.26488,-1.6976,-1.5343,1.6631,0.43445,0.078813,-1.8809,-0.5483,-1.3392,-0.43731,0.40912,0.29576,0.00076802,-0.42943 -3.3337,-0.26021,1.1177,-2.9253,3.0286,1.2873,0.02697,-1.0868,-2.2103,-0.79557,-0.26063,-1.1354,-1.1068,0.11968,0.35438 0.6283,2.3808,-1.028,1.49,0.69536,0.7971,-0.52186,-1.9775,-1.5498,1.2417,-1.2487,-0.6011,-0.38583,-0.3812,0.024047 -2.3136,-2.1591,-0.23652,-0.95481,0.059047,-0.12929,-1.1958,0.22499,2.0031,0.68995,-1.1415,-0.69602,0.81702,0.26319,0.41411 -1.7306,-1.4882,3.749,-0.7209,2.1563,-0.8106,0.92716,0.18513,0.96554,0.49383,-0.22227,-0.89525,-0.33465,0.039309,0.62406 -0.66757,2.2357,-0.0042189,1.328,0.32967,0.014891,-2.2208,0.6212,-0.60722,0.83089,1.1887,0.66606,-1.247,0.97922,-1.6528 2.0863,2.625,-0.86385,-1.0763,-0.85754,0.99439,-1.2704,0.33211,0.22047,-0.97702,-0.23887,-0.65682,-0.78261,-0.14213,-0.32451 -3.3122,-1.7938,0.81785,-2.4458,1.966,-2.0844,-0.82328,1.128,-0.2414,-1.0819,-0.58034,-1.012,-0.50579,1.0423,0.84128 -1.8201,-2.0468,0.55159,-1.9343,0.022037,0.17625,-1.0291,-1.0701,1.2781,0.28402,-1.4908,0.55109,1.1661,0.1792,-0.19274 -0.098076,2.706,0.77536,2.1784,2.1688,-0.52769,-1.4502,-0.45649,-0.49393,1.4018,-0.033587,0.078857,-0.69624,-0.12514,-0.74033 3.6032,0.052903,2.0515,0.78679,1.9293,2.1049,1.1224,-1.3613,-2.1055,-1.12,-1.3982,0.061668,0.51212,2.027,0.24498 -0.067476,-1.3972,4.0244,-0.99175,1.6454,-0.78547,0.21973,1.9154,0.59397,0.71522,-0.1521,-0.99947,0.5882,0.33521,0.56629 -3.3477,-1.7901,1.8577,-3.3765,2.252,-0.58165,-1.0207,0.35228,-1.3751,-1.3361,-0.59744,-0.65937,0.21885,0.96372,0.77999 0.0048311,3.0751,0.41845,-0.45272,-1.8182,0.56791,0.18455,0.18976,-0.36533,0.37245,-1.3484,0.48442,-1.0098,-1.4131,0.3561 0.27331,4.3239,0.13559,-0.25247,-0.99028,0.34175,-0.39415,-0.31821,-1.5772,0.74901,-1.2712,0.16905,-1.2289,0.78137,-0.36539 1.8013,0.22337,0.2203,-3.6292,0.80576,0.93094,1.5697,1.8695,0.0034619,0.7606,-0.84691,2.2755,-0.41226,1.3317,-0.89485 -1.1783,0.46893,0.54819,1.2765,1.0773,0.39732,2.3203,-0.54701,1.1449,1.9806,-0.91835,0.4937,0.18346,-1.8312,0.56133 -0.12814,1.8523,0.6656,0.98507,-1.5184,0.72877,1.3845,-1.1731,1.0274,1.0193,-0.66956,0.75664,-1.1508,0.14421,0.25692 1.5984,2.3386,-0.84305,0.8049,0.90011,0.47512,0.063192,-2.2379,-0.34848,0.52261,-1.1246,0.042902,0.53205,-0.51332,-0.82832 -3.4907,0.73045,0.84458,-0.62382,-0.4525,1.1962,1.1575,-0.41392,0.5426,-1.4701,1.4932,0.38834,0.3411,0.17232,-0.22798 -1.0289,1.8893,2.4701,0.86273,-0.14225,-0.16605,0.10852,0.18097,1.43,0.79204,0.24305,1.2075,-0.5772,-0.84292,1.1963 -1.1052,3.5992,-0.37018,0.36876,0.26838,-0.20077,-1.2347,0.5698,0.33269,-0.25789,-0.47517,0.60574,1.3127,-0.13771,-0.42457 4.1905,-1.0978,-2.5397,-1.1893,0.98104,0.98783,1.277,-0.6963,-0.30118,-1.1003,0.90822,0.3296,-1.2597,-0.51668,0.16363 0.62503,-1.4234,3.007,0.23405,0.27994,2.2495,2.0237,-0.87922,1.4077,0.78216,-0.57187,-0.045153,-0.55509,0.55463,-0.82138 -3.0016,1.8799,-1.7223,0.39576,-0.34333,2.3041,1.7304,0.87574,-0.79415,0.74262,0.35427,0.046812,0.24796,-0.23351,-0.52912 1.8833,2.6908,-0.54294,0.40766,-0.34388,-0.05799,-0.59737,-1.3049,0.81676,0.70422,-1.4231,0.30741,0.00092788,-0.80245,-1.4916 1.5612,-0.17677,2.3357,1.5402,0.79375,1.8109,0.62958,-0.68199,1.2336,-1.0281,-1.0429,1.2069,0.027854,-0.76866,0.80428 -1.2451,-0.81941,1.7378,1.6708,0.16796,1.5361,0.77363,-1.4559,1.5221,0.54247,0.74122,0.10501,-0.44609,0.63969,0.58113 -2.8433,2.9256,0.022241,-0.42297,-0.24559,1.8956,1.6462,0.26669,-1.3951,1.0439,-0.0018653,-0.011152,0.52322,-0.98331,0.60014 4.0334,-0.030124,2.1446,-2.7728,3.7759,-2.1024,-0.087287,1.8091,-0.78047,-0.46649,0.26648,0.5374,-0.022131,-1.1689,-0.49333 2.5432,1.2801,1.9212,0.51558,-0.3914,0.45378,-0.13843,-0.71944,1.4674,-0.33047,-1.1237,0.69762,-2.0859,0.93795,0.45317 0.081336,0.34031,1.666,1.6262,-0.36411,1.7039,1.1196,-1.1165,1.7189,0.80708,0.0034458,0.51291,-0.45242,0.025245,0.60495 -1.916,1.2029,-0.96323,2.2811,0.65524,1.5409,1.0385,0.47587,0.55495,-0.036441,0.47074,-0.28414,0.19234,-0.62196,1.1829 4.764,-1.8696,-1.935,-1.4071,1.485,1.8939,2.3047,0.42849,-0.38948,1.4259,0.41799,1.8015,-1.4691,-0.14287,0.10073 -0.017487,-0.34109,1.9135,1.9058,1.2239,1.8769,1.6376,-1.1887,0.71992,-0.63307,-0.70592,0.57804,-0.14379,-1.5499,1.4709 -1.8707,0.95334,0.69916,1.6096,0.085677,-0.09707,1.1223,0.42343,2.1272,0.88058,0.14686,0.85633,-0.11405,-0.99735,1.0922 -1.5264,1.2461,1.7824,0.40394,-0.69747,0.14139,0.33082,0.41438,1.8764,0.65434,0.48477,1.0348,0.2338,-1.0882,0.98758 -1.1682,-2.111,-2.1291,1.0369,1.9645,-0.57693,-0.34998,-0.35366,0.12276,-2.3162,-0.87348,0.3862,-0.66739,-0.63927,2.1432 1.3745,0.068826,3.2973,-0.31168,-0.14777,1.1849,1.6107,0.096226,0.84021,-0.43802,-1.3687,1.6401,-1.4219,-1.1767,-1.3186 -2.7948,1.6096,-2.405,-0.10587,-0.54767,1.893,0.98011,2.5057,-0.16373,-0.1287,-0.397,0.048366,-0.31894,-0.90437,0.0050715 -1.8588,-1.9658,-1.3059,0.65503,1.5089,-0.26444,0.16807,-0.30813,1.4538,-1.3661,-0.19765,-1.3941,-1.114,-0.20192,1.0317 -1.926,3.0821,-1.1709,0.82161,-0.61838,1.4774,0.51518,0.84308,-0.79972,-0.50723,-0.046836,0.62806,0.59949,-0.77783,0.30131 -2.6116,0.43325,-2.0695,0.55357,1.0269,-0.5396,1.0526,-0.81486,0.81782,1.559,-0.17269,0.06747,0.46666,-0.53975,-0.11502 -1.6243,-0.48443,-2.871,0.53374,0.94491,0.35222,0.42215,-1.8203,0.76974,-1.2454,-0.92435,0.54078,0.2213,0.10681,0.44325 -0.41493,-0.34212,0.62166,-3.0544,0.22811,2.0489,-0.2545,-1.3693,-1.7787,-1.1969,-0.45767,0.33309,-0.69306,2.1458,0.84112 -1.9407,-0.84414,-2.4124,0.28172,1.0757,-0.46028,0.086301,-0.96586,0.43436,-1.8981,-0.85416,-0.12616,0.39883,0.26744,1.2688 -2.3815,-1.9595,-1.4329,0.7908,0.36317,0.67332,0.99434,-0.43521,0.76753,-2.2486,-0.058791,-1.829,-1.1545,0.071426,0.55861 -3.4439,-0.66379,-1.0629,0.49461,2.7187,-1.1644,1.9052,-0.38534,-0.13196,-0.65517,-0.24537,-1.3984,-0.71276,-0.17184,-0.033212 2.2739,0.90199,1.0202,0.93682,-1.6139,0.99784,0.24105,0.06649,1.545,-1.0206,-1.2858,0.18229,-1.99,1.414,0.26628 0.95795,0.75558,-1.4892,1.2435,1.7642,1.7816,0.094053,-2.3544,-0.061693,0.7756,0.81674,-0.74879,0.86854,-0.49723,0.76929 -0.71613,2.2523,-1.4121,2.0828,1.7922,0.35708,-0.68971,-0.3391,-1.1567,0.33912,-0.23377,0.66397,-0.47477,-0.13704,-0.54412 -3.1402,-1.4298,-0.037021,-0.59522,2.9172,-1.9393,1.2978,0.35953,-1.063,-1.8563,-0.47303,-1.4765,-1.0137,0.79483,0.31593 -2.1062,-2.9954,1.0469,1.0133,2.2172,0.65781,0.72995,-1.5704,0.046476,-0.96968,0.27097,-0.6029,0.47751,0.44396,0.0064167 -1.4017,-2.7377,1.4573,1.7466,1.9391,1.4886,1.0196,-0.54208,0.32608,-1.4518,1.0341,-1.1403,0.23004,1.2918,0.77306 -2.6813,-2.0675,-0.19284,1.3938,2.3628,0.37771,0.79722,-1.7154,0.027858,-1.2694,0.70973,-0.5987,-0.26116,0.47857,0.082015 -0.43763,0.98397,-1.3204,2.2316,2.3616,-0.040687,-0.88326,-1.3731,-0.1067,-1.4813,0.54752,-0.22371,0.064477,0.9877,-0.42468 -2.9174,0.83063,0.7879,1.0705,2.5736,-1.1941,1.9197,1.254,0.058569,-0.7438,-0.016546,-0.10755,-1.9404,-0.17865,0.34772 -2.693,2.1964,0.94665,-0.34177,-0.083564,-0.73663,0.7181,1.2738,0.20153,-0.31769,0.90285,0.68627,0.73111,-2.0165,1.3674 3.1186,1.327,-1.0966,-2.1452,-1.8308,-0.41758,-1.5761,0.48435,0.19503,-1.1721,0.63562,-1.1589,-0.11092,0.13472,-0.26151 -3.3802,-0.52269,-3.0076,-1.0292,0.87773,-0.042103,-0.80315,-0.77453,0.021661,-1.4585,-0.72146,1.4215,0.26289,-0.012998,0.13063 -1.9538,0.8933,2.938,-0.61541,0.72257,-0.50859,0.10898,2.1832,0.32349,0.24833,0.78266,-0.33635,-0.24194,-1.8569,1.1381 -3.1195,-1.0818,-1.9547,-1.1332,-0.051838,0.89147,-0.37794,-0.12256,1.5895,-1.4699,-0.13332,-0.53897,-0.15034,0.2961,-0.34209 -3.122,-0.84158,-2.8342,-0.94641,-0.3147,0.25621,-0.084791,-0.06783,1.0826,-1.1029,-0.95016,-0.66469,-0.35936,0.071138,-0.61472 -2.6662,2.318,-1.1894,-0.086914,-0.84916,1.3841,1.3744,0.6176,-0.55235,1.0494,0.48001,0.38617,0.89014,-1.0372,0.32771 -3.1727,0.82712,-0.32145,-0.83458,-0.35875,-0.56615,1.8373,0.56694,1.3396,-0.79852,0.1153,-0.532,-0.58056,-0.60436,0.037917 2.4057,0.97655,-1.8316,-0.83025,0.69166,0.30449,0.46678,-0.37934,0.32354,3.0559,0.80558,0.46999,-0.11281,-1.0762,0.98461 -3.6352,-0.41127,-2.2745,-1.1312,-0.016003,-0.38187,-0.42038,-0.43929,0.73086,-0.59993,-0.18888,0.021387,0.5215,0.10944,-0.27728 -3.735,-1.4565,-1.7241,-0.77667,1.1174,-1.1401,-1.2004,-0.59169,1.0625,-0.15019,-0.58815,0.56349,-0.64192,1.1255,-0.23899 -2.1287,-1.906,0.85998,1.3492,0.40484,0.56248,0.44338,0.43135,2.2412,-0.14323,0.67742,-1.6382,-0.56031,0.36318,0.58258 2.7634,-0.61605,-0.028714,-0.20482,2.36,0.71216,-0.92559,-0.5144,2.1991,1.2539,1.2269,0.70491,1.0432,-0.47624,-0.056757 -3.5319,-0.34312,-1.1391,-1.5137,0.45228,-0.84182,-0.39433,-1.6056,0.49049,0.58856,-0.48577,0.7386,1.1498,0.41193,-0.32749 -3.5362,-0.69896,-0.97818,-0.29511,0.31795,-0.96308,0.84424,0.064767,2.0307,-0.82283,0.27228,-0.78173,-0.9365,0.68284,-0.812 2.2019,-0.97104,-0.75643,-1.2444,1.8577,3.2816,1.8506,-0.11159,-0.52902,-0.8632,-0.21509,1.3082,1.0176,-0.56721,0.79674 1.1192,2.5636,-0.81482,1.6538,-0.032072,0.58872,-0.79951,-1.9558,0.53502,0.52191,-0.82825,0.38964,-0.035911,0.35934,-0.76399 0.60846,2.2984,-1.2241,-0.59974,1.3815,-0.38675,-1.0425,-0.30175,0.92031,2.6881,1.9296,0.6183,0.25448,0.056094,0.11714 -2.3756,1.573,3.6447,-1.2644,1.1402,-0.88343,0.74788,0.035433,-0.26607,-0.18391,0.58806,-0.33695,-0.38723,0.44309,0.031364 -2.1622,-1.199,1.9558,-0.76483,-0.1592,-0.22376,0.8584,1.049,1.4019,-0.88501,0.26891,-1.0817,1.6625,-0.92931,0.068328 -3.1358,-1.1997,-1.7584,-0.89714,-0.66274,0.39881,-0.34403,0.39218,1.3535,-1.1108,-0.056211,-1.1845,-0.30915,0.060626,-0.25278 0.84368,2.6255,1.0239,1.402,-0.19335,0.11346,-1.4171,-1.974,0.39878,-0.1865,-0.071721,0.71399,-1.1397,1.4295,-0.42591 -1.7645,-3.0658,0.55897,0.13574,1.3243,0.84705,-2.2222,-0.86389,0.23254,0.66539,-0.57298,0.58789,-0.47855,2.3137,1.3047 -0.49412,3.3668,2.8413,0.33463,1.2515,-0.33148,-0.94976,0.3982,0.40529,-0.11032,0.54292,0.81675,-0.8905,0.91889,-0.048881 -0.62046,3.4157,2.3621,0.44618,0.013891,0.36281,-0.78374,0.64788,-0.83983,1.3289,0.26875,0.21039,-1.5591,0.53935,0.077997 -1.6156,2.7445,2.3322,1.6087,1.0521,-0.13286,0.14045,0.41216,-0.30353,1.2667,0.36573,0.57864,-1.4793,0.38971,0.054956 1.3724,1.701,2.413,1.9233,2.119,-0.24602,-0.7108,-1.2077,-0.038346,0.12677,0.9505,0.30773,-0.8189,1.8158,0.42143 1.6086,0.42517,0.93835,2.2091,1.9276,1.2207,-1.8344,-0.52437,0.76343,0.074032,-0.6303,0.064096,0.77378,1.2985,0.37843 -1.1246,-1.8265,1.8908,0.010615,0.97729,-1.2313,1.1726,2.1153,-0.28466,0.39536,-1.8552,0.68104,0.5606,-1.5869,0.45042 1.9938,3.5919,2.2302,-1.7913,0.44498,0.39367,-1.1245,0.37175,-0.68999,-0.22528,0.14451,-0.47496,-1.6459,1.1461,0.39643 1.8728,1.2922,3.3506,0.70771,3.4133,-1.0836,-0.90104,-0.025027,0.23948,-0.37276,0.21655,0.23119,-0.95581,0.61383,0.51606 -0.45562,2.1302,-1.2733,2.2559,0.47805,-0.12691,-0.68523,-0.41461,0.94678,0.32965,-0.47615,0.42278,0.18293,1.0029,-0.61459 3.8732,0.39359,0.50625,-1.849,3.3993,0.03237,0.91369,-0.2044,0.17161,-0.51635,0.84967,0.99849,1.4282,-1.5959,-0.63302 1.2085,2.6212,0.50678,0.55059,2.1369,-0.80523,-0.90114,-0.19754,1.2027,1.0331,-1.266,0.32274,1.7076,-0.96479,-1.7336 1.2129,1.3303,3.5888,0.67953,2.1031,-0.087671,-0.45437,-0.18759,0.44069,-0.14639,0.82987,0.87188,-1.1192,1.5244,1.2026 4.3825,0.55822,1.118,-0.54911,2.1935,0.01674,-0.84504,-1.7112,0.029529,0.73413,0.7266,-0.93422,-1.5274,0.55575,0.97674 2.0896,0.052675,4.094,0.89661,2.9716,-0.22455,-0.11116,-0.089476,0.01956,-0.72274,-0.1247,0.55808,-0.50954,0.84175,0.85306 -3.6173,0.6104,1.673,-1.3311,0.69016,-1.2039,1.3231,0.58667,0.48776,-0.63889,0.66922,-1.1658,0.75512,-1.6358,0.63818 1.3599,3.0854,2.4004,-0.486,1.3569,-0.36025,-1.9113,-0.62019,0.00397,-0.036675,0.87151,0.45223,-1.5406,1.1702,-0.017521 3.6302,0.47196,3.1626,0.69972,3.096,0.67999,-0.28539,-1.5569,-0.062183,-0.64544,-0.68978,-0.16005,-0.9758,0.73815,0.45484 -1.0302,-0.48487,4.0583,1.044,2.7867,-0.57053,1.6209,-0.82973,0.14024,0.12472,-0.43756,-0.29322,-0.84031,-0.40311,0.88677 0.23266,1.8781,4.1719,-0.0042305,1.2323,-0.042033,0.041295,0.25121,0.27185,0.92318,1.0108,-0.087851,-1.058,1.3143,0.48225 -0.84691,2.5249,3.1003,0.34534,0.14246,0.045592,0.31006,-0.74769,0.14504,0.31734,0.79053,0.97478,-1.2855,1.0502,0.62699 3.2273,-0.89405,-1.9419,-2.0041,-0.30294,0.763,1.8437,1.1967,1.8867,1.1575,0.92495,1.7042,-1.9729,0.99638,0.96537 -0.87631,2.294,-2.3953,1.0261,-1.2684,1.8875,-0.67045,0.98796,-0.11555,0.63083,-0.28471,1.0283,-0.23952,0.28737,-1.0604 2.875,0.8015,-2.2166,-2.9871,0.18824,0.35424,0.52739,1.1388,1.7074,0.95129,1.331,0.1695,-1.1105,-0.98111,0.66301 -1.616,2.683,-0.40367,1.8283,-0.59448,0.86034,0.32911,0.13315,-0.57768,1.0178,0.26578,1.5584,-0.76376,0.55321,-0.48247 -0.72477,1.9959,-0.60311,1.6055,-1.4061,1.575,0.31228,-0.45749,0.514,1.0817,0.062765,0.73911,-0.41865,0.40828,0.77566 1.4689,1.1647,1.4806,1.6672,0.018814,1.5872,-0.1241,-1.3712,0.80072,-0.27072,-1.4421,0.51345,-1.0756,-1.3562,0.70073 2.4013,2.1708,-1.5874,-1.2447,0.10535,-0.11964,-1.0328,-0.87939,1.2154,0.10624,0.9823,-1.2871,-1.4451,-0.20142,-0.22503 5.4257,-0.45428,-0.012344,-2.2532,3.8494,-0.44971,1.6663,-0.20004,-0.02055,1.5702,1.0522,0.96325,-1.3229,-0.98226,0.097397 -2.1941,2.4946,-1.6415,0.73076,-0.71535,0.98066,0.45329,0.98477,-0.11729,-0.87543,-0.037515,0.82608,0.73814,-0.44467,0.45011 -0.035446,2.3054,-0.97611,1.7632,-0.44665,0.32875,-0.6032,-0.94514,0.30878,0.39713,-0.49141,1.2707,0.027757,0.64014,-0.40818 1.1942,1.8636,-1.2522,0.355,1.2584,-0.057969,-0.49729,-0.83819,1.1364,0.38744,-0.024903,0.068945,2.2567,-1.5748,-0.94892 0.7956,1.9755,-0.83423,1.597,0.51092,0.50327,-1.3681,-0.54747,1.5361,0.48238,0.045345,0.16551,0.57962,0.94253,0.029493 3.9264,1.047,-1.4687,-0.4683,2.0374,0.23404,0.66087,-1.7214,0.61142,0.9622,-0.14756,-0.76783,-0.82582,-2.0863,-0.65066 3.6618,1.1041,-1.8255,-0.4081,2.1096,0.36932,1.0675,-0.88849,0.057938,-0.010919,-0.18763,-1.3437,-1.5635,-2.0604,-0.97937 3.3671,-0.82723,-2.1182,-1.0999,1.3174,1.1942,2.2655,-0.15725,-0.26907,0.090961,0.81157,-0.72082,-1.3444,-1.6504,2.0641 -0.76194,1.8478,1.4268,-0.13653,-0.27601,2.6352,1.2065,0.25222,-0.22022,-1.2686,0.16345,-0.81001,-1.1017,-1.8357,1.2216 3.3268,-0.26867,-1.7517,-0.53624,1.8704,1.505,1.7978,-1.8225,0.81022,0.11724,0.34312,0.29615,-0.39883,-0.68146,0.79982 3.0571,2.4722,-1.9868,-2.569,0.037428,-0.40463,0.41811,-0.50786,0.90008,1.0569,0.64058,-0.73779,-0.85297,0.3576,-0.41022 -2.8908,1.3677,1.3883,-1.2378,-0.31433,0.22597,0.96804,-0.81594,-1.2123,0.51508,1.1069,-0.69678,-0.099101,-1.855,0.50331 -1.206,3.5504,1.8664,1.1473,1.4574,-0.62115,-0.82808,0.99508,-0.43979,0.72299,0.37238,1.0216,-1.4876,0.13976,-0.51679 4.0351,-0.19687,-0.44342,-0.97939,1.603,1.4363,0.045169,-1.0481,1.3163,0.0037956,0.45707,-1.6156,-0.99989,-0.70972,0.81055 3.5778,1.641,0.26302,-0.90561,2.09,-0.73759,-0.058775,-1.6535,0.88483,0.95868,-0.28413,0.37923,0.28267,-0.99925,-1.8572 1.785,3.623,-0.5726,-2.1125,-0.010846,-0.0088665,-0.78015,-1.4499,-0.25371,0.18109,0.017511,-0.56678,0.39733,-0.28921,-0.46884 2.2255,0.74368,1.6342,0.32093,0.66404,-0.40832,-1.2526,-1.2475,1.4976,-0.5915,-0.88977,0.57255,0.15086,-1.6483,-1.4858 -3.3401,1.776,-1.4269,-0.25333,0.52658,1.8655,1.9534,-0.44465,-1.1134,1.2404,0.28361,-0.11566,0.095396,-0.66423,-0.81445 0.036774,2.1479,-2.4287,0.5219,-0.78942,1.276,-1.6822,0.21616,0.79053,0.93578,0.55037,0.068143,1.0119,-0.2978,-0.80356 -0.43725,4.6095,0.76143,-1.3854,2.6757,-0.56562,-1.8398,1.1375,-1.5189,-0.50212,0.91019,-0.43524,-0.45664,-0.0020477,-0.78799 -4.1272,-0.5522,-1.6046,-1.885,0.70704,-0.12433,0.20983,0.72804,-0.049889,-0.54496,-0.18967,-1.1047,-1.0634,-1.3948,-0.67955 -2.1447,0.28984,-3.9076,0.23838,1.4929,-0.11244,-0.031912,-0.57288,0.068775,-1.2752,-1.694,2.1303,0.085755,0.35824,0.70344 0.033301,2.3366,-1.672,0.55501,-1.0904,0.95274,-1.2042,-0.55779,0.9497,0.64242,-0.18328,0.4645,-0.11373,-0.28622,-0.31558 -2.2322,0.044443,0.13598,-1.733,-0.85078,-0.0009795,0.48314,-2.7329,0.57344,1.0157,0.42494,0.3932,-0.16132,0.52382,-0.53271 -3.28,-0.65332,0.35725,-0.84882,-0.62316,0.39097,0.31152,-0.46542,1.7709,-0.88399,0.98917,-0.61755,0.55989,0.61265,-0.098758 0.41435,2.6515,-2.5392,0.066959,-1.0332,1.9928,-0.81913,-0.29536,-0.083678,0.10403,-0.58557,-0.68278,0.86352,-0.85633,-0.26668 -3.1056,0.026659,-3.1747,-0.83578,2.1261,-0.24599,-0.77851,0.31273,-0.70935,-1.9443,-1.1451,1.3556,-0.53964,-0.56379,1.3003 -3.7758,0.31042,-1.582,-0.67619,0.55405,0.98919,1.4065,-1.6212,-0.035495,-1.066,0.41078,-0.16676,0.53482,0.020715,-1.209 -2.2112,-0.34275,2.1414,0.40356,1.0287,-1.3158,1.134,0.25914,1.5116,0.23047,0.48206,-0.45834,0.41597,-1.5442,-0.05146 0.0050815,0.78849,1.2027,1.8995,-0.080602,0.36796,0.76046,-0.22724,1.1544,-0.69046,-1.0202,1.5251,1.1893,-0.5886,-0.40494 1.4634,2.1262,1.1425,0.76924,-0.16381,1.5075,-1.3212,0.19449,0.016293,1.3538,-0.88013,0.38035,-0.71714,-0.19464,0.55253 0.62745,3.5399,0.14455,0.27468,-0.14632,0.12566,-1.6205,-0.48269,0.065153,1.9256,-0.85932,0.17908,0.18915,-0.33356,-0.85103 4.3422,0.94816,1.3375,-2.7135,1.8064,-1.9392,-0.46296,0.75415,-1.6807,1.004,0.85526,-0.45436,-1.5712,-0.71643,0.34754 -4.2322,1.0557,-1.854,-1.0885,0.96202,0.64831,1.0674,0.32938,-0.30699,0.28586,0.30066,-0.7344,0.37561,-0.18783,-0.97474 3.258,1.4274,-1.1241,-1.4303,1.0742,0.079398,0.26298,-0.55163,0.054927,2.8841,-0.22246,0.3123,-0.079562,0.75582,-0.2315 4.0193,-0.099545,0.45714,-3.3492,2.0064,-0.87223,0.46583,-0.32098,1.5008,-0.091763,0.62451,1.3653,-0.092696,-0.031473,-1.3098 0.98609,2.3552,1.5177,-0.83689,-1.5153,0.15767,-0.12702,-0.099665,0.78661,-0.37005,-1.175,0.86505,-1.8317,-1.2782,0.46219 -3.4049,0.073616,-3.4555,-0.93162,1.9261,-0.25783,-0.45307,-0.74529,-0.68945,-1.4688,-1.2309,1.2162,-0.093993,0.081797,0.6071 -3.6274,-1.2759,-1.6339,-1.8155,0.97793,0.14312,-1.165,-1.0639,0.14366,-1.8534,-0.15206,1.137,-0.22033,0.6938,-0.095322 -3.1231,-0.40045,-3.5518,-0.76027,1.0411,-0.15901,0.19814,-0.98759,0.095123,-1.9134,-1.3919,0.27903,-0.37318,-0.0089849,-0.072938 -3.3816,-1.0156,-3.1099,-0.64037,0.94329,0.19481,0.21635,-1.1845,0.29067,-1.8922,-1.1464,-0.096467,-0.37843,-0.1905,-0.5519 -0.77013,-0.34437,-0.59187,0.26356,0.22138,1.2719,1.1381,-2.8012,1.2994,1.3795,-0.46905,-0.43362,-0.68951,-0.76099,-0.30497 -2.7865,0.79332,-3.2202,-0.14493,-0.44059,1.1607,1.5308,-0.23247,0.43612,-0.58942,-0.38519,-0.97567,0.50138,-0.29406,-0.89409 -3.6189,-1.0131,-1.1583,-1.6118,1.0639,-0.88589,-1.0627,-0.78286,0.21372,-0.14762,-0.73542,0.42072,0.65439,0.058565,0.70865 -3.4157,-1.4987,-1.501,-1.5584,0.5794,-0.7417,-1.4252,-0.52214,-0.11532,-0.89626,-0.62047,-0.082968,0.16266,0.10748,1.135 -1.7222,-2.242,-0.1643,-2.1297,0.85927,-0.74519,-2.3486,-0.16961,-0.68416,-0.51252,-1.9576,0.8692,0.013959,-0.50977,2.9294 -0.83923,-4.8781,-0.46857,0.80699,1.9929,0.29124,-0.47457,0.33589,-0.34963,-0.4801,-2.2414,-0.69865,0.97179,-0.21849,0.31248 -2.8462,-1.5309,-3.3929,-0.94742,0.13172,-0.72628,-1.8772,0.41097,-1.6184,-1.1528,-1.4666,0.35253,-1.2533,-0.40986,1.2502 2.9032,-0.50158,-2.0346,-1.6682,-0.050378,0.27288,1.3463,1.0766,1.893,0.54005,1.5609,1.019,-1.046,-0.63153,1.4579 0.28735,-4.0098,1.4065,-0.95629,1.525,1.1841,2.0649,-0.56545,-0.30998,-0.33026,-1.6769,-0.2501,-0.87151,-0.27363,-1.5509 -0.030697,-4.6825,-0.015299,-0.070289,1.0924,0.55694,0.26093,1.1512,-0.54485,0.33662,-2.196,-0.77668,0.09149,0.46971,-0.81305 3.6891,0.92758,0.4146,-3.0896,3.0809,-1.7327,-0.25629,1.2531,0.41429,1.2445,1.2984,-0.1037,0.072131,-2.127,-0.31388 -3.4151,-1.9528,-1.2043,-1.9866,0.77253,-2.0114,-1.9291,0.50574,-1.181,-0.71265,-0.90967,0.057524,-0.85398,-0.75473,1.387 2.2666,0.53477,-3.418,-0.099438,0.13118,1.5653,1.3381,-0.54484,1.1102,0.021024,0.60362,0.46688,-0.47762,-0.80281,-0.39569 -4.182,0.074149,-2.8639,-1.4187,1.5919,0.13324,1.3064,-0.32904,-0.089265,-0.73981,-1.4735,-0.77199,-0.11917,0.091279,-0.87144 -2.4075,-1.1414,-3.1935,-0.6693,0.55824,-0.90469,-1.4498,1.135,-1.1909,-1.4611,-1.7083,0.72294,-1.0166,-0.12828,1.4704 1.3752,3.0118,2.0606,0.43821,0.98608,-0.65207,-1.7164,-0.22334,-0.7029,1.1096,1.1576,0.68293,-0.93259,0.60527,-0.26274 -0.18387,0.78551,1.7485,-3.2227,1.7745,0.02446,-1.5666,-0.70191,-1.1362,-0.78171,1.6669,1.2158,-0.11646,2.5063,0.46229 -4.5481,0.42805,0.50842,-2.0769,1.9643,-0.16465,0.98732,-0.25705,-0.58996,-1.1269,0.68446,-0.69936,0.21899,0.19939,-0.44643 -0.92501,3.6738,0.17207,-0.64029,1.5442,0.63011,-0.37713,-0.87355,-2.7432,-1.2295,-0.023492,-0.072119,-0.34746,0.58365,-1.0463 -3.582,1.9622,-1.3354,0.34575,0.085026,0.32847,1.4993,1.868,-0.91309,-1.1255,-0.30361,0.096945,0.28636,-0.068155,0.60191 -0.48919,4.2589,1.8761,-0.49995,0.84363,-0.22138,-1.1443,0.6955,-1.7072,1.0058,-0.56493,0.36403,-0.20785,-0.5549,-0.39297 2.4822,-0.45823,-0.95086,0.062216,1.1361,1.9756,-0.24286,-2.9263,0.2734,-0.68613,1.2427,-0.35552,0.9167,-0.12851,0.88977 -4.0893,-1.4647,-1.5292,-2.2001,2.4297,0.090246,-0.87657,-0.66691,-0.81443,-2.3317,-0.89823,0.70512,-0.14091,0.34609,0.59033 1.0601,3.6256,-0.80866,-1.5673,-0.42653,0.56724,-1.2021,0.21319,-2.1232,0.79628,0.11534,-1.6225,-0.40566,0.52363,-0.091147 -3.7481,-0.19144,0.65448,-1.4869,0.73379,-2.6099,1.3472,0.9542,-0.41621,-1.0581,0.010941,-2.0542,0.45815,-0.74902,0.069393 -1.1314,2.3722,0.59811,0.62797,0.85856,-1.677,-0.30489,3.1833,0.78934,-1.4833,-0.24779,-0.56846,-0.86974,0.90339,0.67849 3.5963,0.55961,1.3106,-0.66942,1.2232,0.8124,-1.2957,0.11362,2.2669,0.42154,-1.1715,-0.020531,-0.2646,0.36413,-0.90046 -1.4061,2.3466,3.0813,-0.38707,0.9294,-0.010058,-0.33742,1.3283,0.00071147,0.32554,1.0015,-0.063386,0.36991,0.41721,0.031215 4.9056,-1.7598,-0.27895,0.73389,1.3979,2.7452,0.17388,-0.74971,-1.5794,-1.7454,-0.71992,-0.59308,-0.22438,2.4047,-1.7957 -3.3514,1.856,-0.70046,-0.80677,-0.10722,1.8401,1.1119,-0.29534,-0.72221,1.4283,1.0097,0.085146,0.45808,-0.67976,-0.63999 -2.2724,-2.799,2.1866,0.45726,1.405,-1.3842,0.7248,0.52426,1.5871,-0.51423,-0.051582,-1.492,-0.13166,-0.28205,0.30482 -0.61421,1.5397,3.8962,-0.98409,1.3949,-1.5495,0.079017,1.6675,0.60341,-0.92249,0.35526,0.23743,0.3821,0.19863,1.1324 -1.6476,-2.4632,1.7192,0.88005,1.9921,-1.5931,0.91157,1.9945,-0.052498,-0.76946,0.10493,-2.3329,-0.58835,0.9209,0.4577 -3.6219,0.081884,-0.61398,-0.87265,1.9569,1.5054,1.3788,-2.0531,-0.021125,-0.35351,-0.14868,-0.47598,-0.86678,-0.068977,-1.2467 1.2732,-0.16392,1.3073,-4.4552,1.8889,-0.41219,1.3474,1.8203,-0.60103,-0.071934,-0.72536,2.6618,0.63368,-0.93209,-0.52006 -0.74031,1.5178,2.59,-1.0344,1.1538,-1.1956,-0.45308,2.5211,0.81597,-1.7276,0.755,0.16102,1.1828,0.26726,1.1977 -0.87768,3.1429,-0.13494,-0.17972,-1.2862,2.3924,1.3749,0.42819,-1.3966,0.065126,-0.35731,-0.92388,-0.3215,-1.0385,0.57602 -1.6786,3.3413,1.039,1.0615,0.15999,0.026597,-0.86448,1.4746,-0.064153,0.88645,0.25695,1.4877,-0.81932,-0.16879,-0.28788 -4.1384,-1.142,-0.50545,-1.863,1.9918,0.034986,0.037505,-0.34508,-0.65234,-2.29,-0.44115,-1.4427,0.2545,0.11957,0.69181 -3.0955,-2.3527,1.4773,-1.9358,0.74196,-0.22709,-1.2333,-0.010562,1.2026,-0.00808,-0.39724,-0.7838,0.55906,1.3377,0.53336 1.7052,2.6591,-1.2672,-0.61497,0.41762,-0.16254,-1.8295,-0.71141,0.20348,1.9649,0.91567,-1.1073,-1.1247,0.0048933,-0.41321 -3.068,-1.9411,-1.6278,-1.5012,1.398,-0.1821,-2.3693,0.77997,-0.98056,-1.5283,-1.4032,0.48091,0.10234,0.46276,2.3764 2.693,-1.565,0.71819,1.2411,2.7345,1.085,-1.2426,0.68682,0.70179,-1.5785,-1.124,-0.074435,1.7504,-0.025345,-0.28344 -0.55128,3.0447,1.9539,1.2624,-0.30531,-0.012881,-0.63562,-0.015481,0.037143,1.2937,0.50271,1.4253,-1.3173,-0.023835,0.06193 -2.6909,-3.2172,-0.79561,-1.3267,1.0893,-0.69162,-2.2765,1.871,-0.080854,-0.38337,-1.5054,-0.58731,-0.99847,1.9049,1.7097 -3.2683,-1.1234,1.6834,-2.7796,1.3157,-0.42826,-0.45966,-0.56472,0.1137,-0.56751,0.18742,-1.0803,0.86782,-0.58729,0.69734 -1.964,-3.0048,1.8947,-1.5455,1.1493,0.34037,-0.50838,0.22428,1.4617,-0.082781,-1.2103,-1.1552,1.9859,0.65178,-0.18977 -2.0923,-2.0817,2.0441,0.61932,2.1903,-1.4122,1.3176,-0.41837,1.4851,-0.4694,0.013312,-1.1993,0.62149,-0.3929,-0.25697 1.7259,1.5495,0.12429,0.69072,1.2537,0.51066,-1.7763,-1.4211,1.9383,0.93226,0.58967,-0.24895,0.55985,0.8527,-0.36434 -2.152,-0.073845,3.8916,-1.7757,1.771,-1.0039,0.90932,1.237,0.12544,-0.38424,-0.43449,-0.68669,0.6772,-0.78828,0.016651 -2.0552,1.497,1.854,-0.5835,0.79264,-0.13544,0.68632,1.9251,0.68667,-1.6959,1.2435,-1.1297,1.2128,0.11759,0.92361 -1.1984,-1.4822,3.5452,-1.3396,0.70594,-0.18934,0.40126,0.60661,2.0755,-0.037089,-0.21523,-0.80242,1.296,-0.6083,0.049138 -1.1749,1.3987,0.6577,2.4691,2.8069,-1.2586,-0.16272,0.62082,-2.0082,-1.2367,-1.0168,-1.3454,0.13576,0.015965,0.90787 -1.3522,1.896,3.3284,0.036869,1.473,-2.4336,0.29728,1.724,0.39708,-0.97916,0.092851,-0.11562,0.24177,-0.20641,0.67081 4.289,-1.7631,2.9447,-0.86182,2.8552,0.97153,0.534,0.13292,-0.84874,-0.72943,-1.548,1.0329,-1.6968,0.30413,-1.5955 0.67851,-2.2001,4.7522,-2.1877,2.3499,-0.068787,1.5318,0.65997,-0.16056,-0.021266,-0.78657,0.33936,0.8444,0.35329,-1.4499 -1.9943,0.71841,3.3221,-1.8279,0.80316,0.070359,0.33126,1.5717,0.34854,-0.85627,1.4215,-0.65638,0.69552,-0.90558,1.0439 1.0205,0.12177,-0.56613,2.1243,0.37572,2.2891,-1.6982,-0.69163,0.63626,-1.4113,-0.25611,-0.016429,1.4427,0.59969,0.43563 0.9909,3.3453,1.0466,-0.61235,0.53797,-0.39533,-2.3168,0.53151,-0.096471,1.446,-0.53876,-0.21667,0.57905,-1.2045,-0.67029 2.7569,0.42741,-1.7262,-1.0066,-1.0948,0.58633,-0.74781,-1.0405,1.8944,0.12015,0.75187,-0.57699,-0.76164,-0.32101,0.13003 2.0778,3.0233,-1.3351,-3.5134,0.55054,0.58792,0.86497,0.58189,-1.3756,0.58109,1.028,-1.5122,-0.81111,-0.58496,1.1807 2.0798,-2.0557,3.4491,-2.7385,-0.039404,0.21657,0.96512,1.9728,1.0282,-0.21207,-0.41656,0.9823,0.27097,1.1814,-0.46338 5.5062,-1.1163,0.11493,-3.1413,3.6088,-0.79452,2.0858,1.1275,-0.0033325,0.82775,1.1434,2.3221,-1.196,0.32224,-0.78035 -3.4106,0.34101,-0.16503,-1.0826,0.8766,1.3927,-0.090772,0.77204,-0.16194,1.1184,1.1789,-0.9452,-0.56502,0.19977,-1.2687 0.76908,3.2355,1.6042,-0.9621,-0.060392,1.004,-1.5788,0.30674,-0.21003,-0.61898,0.66171,0.95736,0.58575,-0.29975,0.66338 -1.3371,2.8736,2.1591,-1.1429,-0.69815,1.1129,0.31147,0.77136,-0.75632,-0.17701,0.10998,0.051811,-0.06173,-1.7181,1.3513 -3.0355,2.1514,-0.88683,-0.15065,-0.58976,0.47803,1.2821,0.80568,0.18022,0.81973,0.45416,0.70881,1.0652,-0.53999,0.48821 2.6327,2.4641,1.044,-1.1726,1.0181,-0.33177,-0.40615,-1.0857,0.76285,-0.78638,-0.94696,0.73512,0.86579,-0.49969,-2.6024 2.4197,0.65874,-3.1314,0.82319,-0.90347,0.43071,0.73355,-0.4648,0.2539,0.68978,0.38307,-1.5117,-0.89133,-0.37331,0.35244 0.99845,2.1098,3.2226,-0.39045,0.26175,-0.48017,-0.69943,0.1528,1.1396,0.011174,-0.83849,1.0754,-0.95437,-0.40596,0.82333 0.099914,1.2852,-0.38924,1.4209,0.66427,1.6755,-0.79896,-1.6698,0.42112,-0.41407,0.010109,-0.26248,1.2694,0.19105,-0.31101 0.98521,1.0668,-2.4852,0.18141,0.99056,0.62809,0.56645,-1.4929,-0.17476,0.88728,-0.26824,-0.9119,1.0295,-1.6636,1.0581 -3.1617,0.1696,2.805,-2.4414,0.33557,1.3953,0.4333,-0.96485,-0.4325,-0.36829,1.0478,-0.063111,-0.66275,0.043173,-0.15967 3.768,-0.73427,-1.2359,-0.99342,2.5728,0.50961,3.2248,0.27501,-1.724,0.8406,-0.20068,0.56467,-1.7257,-2.2766,0.67345 -0.93729,2.4321,0.47077,1.5647,-0.96168,0.4417,0.14328,-0.49684,0.69133,0.59609,0.41683,1.9092,-0.065407,0.46388,0.081476 -0.90914,2.5081,2.0829,-1.3627,-0.18031,1.827,0.48368,0.27889,-0.646,-1.5546,-0.11126,0.25464,-0.4385,-1.8626,1.3803 0.66455,2.7321,-0.31504,0.65023,-1.1864,0.78304,-1.6715,-0.59006,0.30232,0.5285,-0.22269,0.54253,-0.62544,-0.21118,0.11922 1.3935,0.55544,3.5092,1.2797,1.6312,-0.0013091,0.55822,0.55988,0.99442,0.59838,-0.87841,0.092263,-0.87247,-1.2043,1.2259 -3.2504,0.25621,1.6035,-1.6637,0.60673,0.20021,0.68815,-0.40381,0.95871,0.90475,0.66627,-0.60095,-0.17642,-0.73098,0.12455 -2.763,2.2846,-1.4917,-0.19923,-0.34998,2.0053,1.8049,0.23519,-1.0502,0.85622,0.18142,0.45025,-0.049917,-1.3136,-0.43506 -2.1894,1.6678,1.308,-2.2576,-1.0562,0.79352,1.3025,-1.3786,-2.0164,0.55537,0.80626,-1.003,-1.2132,-1.0589,-0.26286 -3.9795,0.41205,-2.2726,-1.3617,2.0522,0.74731,0.63147,-0.9013,-0.50946,-0.21365,-0.38437,-0.050419,-0.55044,-0.85276,-1.2807 5.9076,0.47971,-0.22482,-1.1626,1.5264,0.15374,0.3662,0.42925,0.18478,1.1661,-0.24796,0.18634,-2.148,0.33193,-1.2448 2.1548,3.9147,-0.10428,-1.4231,-0.35081,-0.49481,-0.89326,-0.85832,-0.1668,-0.031434,-0.5578,-0.56552,-1.1538,0.51249,-1.316 -3.7113,0.70469,-2.3336,-0.34972,1.7416,0.81031,1.1771,-0.40904,-0.71494,1.2637,-0.17402,-0.094279,0.18967,-0.52264,-1.0667 0.32425,2.8659,-0.79257,0.98975,-0.598,0.0012657,-1.1256,-0.55574,0.90092,0.015266,-0.4173,0.69333,0.74843,-0.29428,-0.37696 1.4835,2.2135,2.8267,-0.60311,-1.0065,1.0919,-0.7734,-0.68684,0.65889,-0.91943,-0.23983,1.006,0.12296,0.66372,0.12429 0.85795,3.8643,-0.88358,-1.6803,0.12355,0.62396,-0.71459,0.12635,-2.0457,0.72296,-0.59703,-1.3984,-0.69815,-0.96943,-0.54794 1.6366,2.2854,0.74141,0.69126,1.9864,-0.37844,-0.93559,-1.7909,0.6401,1.4341,-0.60519,0.027226,-0.36165,-0.11398,-0.67054 -2.0834,2.8398,1.6799,0.75556,0.67361,-0.22855,0.85937,0.62594,0.69858,1.4299,0.43322,1.0238,-0.59555,-0.052526,0.28841 3.4459,2.1297,-0.16182,0.31063,2.12,0.19778,-0.81874,-1.7253,0.13583,1.6414,-0.80142,-0.74362,-1.0658,-0.78118,-1.2872 2.5808,2.1595,-1.447,-1.8775,-0.69445,0.37657,-1.4812,-0.61101,-0.085493,0.9547,1.737,-1.4101,-0.98664,1.6625,0.11142 2.8399,2.675,-1.4501,-2.6994,-0.15144,-0.20232,-0.69668,-0.39,0.91771,0.041034,0.72368,-1.0547,-0.90003,0.54028,-0.78174 -0.2501,3.4425,0.19721,-0.32894,0.17245,-0.1022,-1.5329,0.99913,0.41089,0.86977,-1.4003,0.41368,1.3777,-0.91288,0.051652 -2.1246,3.6607,-0.29512,1.1303,0.5504,2.2023,0.84516,1.023,-1.3993,-0.34508,-0.57825,0.87987,-0.39379,-0.54457,-0.59714 3.4272,-0.15288,1.0416,-0.69031,1.8804,0.76479,0.24859,-0.11145,1.5325,-0.95213,-0.95161,2.1314,-0.61307,-0.65114,-0.71572 2.3596,1.5786,0.23984,1.2829,1.5733,0.71392,-1.5965,-2.4434,0.8887,0.73815,0.27588,-0.77578,-0.6055,0.20528,-0.14271 -2.4353,2.2014,0.64696,-0.62206,-1.7884,0.83302,1.6474,-1.0165,-1.7039,0.51876,0.26292,0.42051,-0.37547,1.5386,-0.31026 -3.0035,-2.8977,-1.2255,-0.70166,0.4794,0.22795,-1.2017,0.5654,1.5344,-0.036616,-0.70994,-1.0254,-1.0043,1.196,0.2777 0.090556,1.5232,-0.96856,0.82691,0.22596,-0.35589,-2.2044,0.84125,2.2248,0.76534,0.2237,-0.053244,0.78796,-0.49359,-0.0038803 1.5642,3.7709,1.2687,-2.5268,1.7016,-1.1862,-0.74744,-0.84851,-0.13889,0.24555,0.065092,-0.28264,-0.097845,-0.43904,-0.50468 0.43559,3.5784,2.486,0.082086,0.9846,-0.63384,0.28111,-0.034771,-0.49543,0.8308,-1.6142,1.1471,0.37443,-0.84886,-0.10296 -2.3853,-1.9761,-1.2555,-1.3999,0.50445,-0.046026,-2.8555,-0.2643,0.18026,-0.024249,-1.2883,2.0468,0.36492,0.72957,1.8133 2.5257,2.3336,-0.67146,0.66124,0.88578,0.8966,-0.099874,-2.4172,-1.0351,-0.20897,-1.4598,-1.5606,-0.40357,-0.92774,-0.66561 -3.0716,-2.0656,-1.9091,-1.2525,0.83899,1.0617,-2.3555,-0.018603,-0.52899,-1.5535,-1.181,1.2868,-0.013234,0.14236,1.3971 -1.771,-2.099,-0.6923,-1.6133,-0.21654,0.993,-2.5292,-1.2168,0.57653,0.99417,-1.7315,1.3611,0.50274,0.70232,1.0601 -2.8591,-1.1926,-2.1621,-1.1516,0.62559,-0.47597,-1.7341,-1.0082,-0.17005,-1.318,-0.78294,2.0598,0.3603,0.073773,1.3721 -2.4125,-1.4191,-0.5865,-0.60603,1.5819,-1.2066,-0.87911,-2.0372,0.76324,1.0304,-1.4295,1.5285,0.16608,0.52152,0.95139 2.1857,-0.19764,-0.15652,1.1676,3.5892,-0.39212,-1.4803,0.076901,0.47823,-0.5552,1.2616,0.067091,0.98523,-1.2496,0.33147 -3.6081,-0.63019,-2.5367,-1.1242,0.24514,-0.073878,-0.2542,-0.94221,0.25409,-1.3459,-0.23078,0.79328,0.40262,0.56677,-0.77399 -2.1396,-1.0963,0.39009,1.8801,0.18973,0.92685,0.70932,0.61705,1.8104,0.04171,0.3698,-0.077612,-0.38796,0.60238,0.67601 -1.9831,-1.5115,-0.83315,-2.0127,-0.38171,1.1339,-2.1439,-1.549,-0.25839,0.048292,-1.5549,0.98057,0.68593,0.34662,1.2615 -1.4487,-2.2911,-1.1974,-0.41554,0.42105,0.84079,-2.4778,0.4181,1.0218,1.0693,-1.6428,1.1305,0.66708,1.6585,2.1369 3.7071,-1.1587,-1.9328,-2.0623,0.63889,1.2997,1.475,1.4341,1.8279,0.97006,1.5206,1.1325,-0.89765,-0.0082483,0.92695 -2.2257,2.1733,-1.5069,0.2576,-1.0448,1.2688,0.5717,1.0337,-0.5447,1.0648,-0.14103,1.1183,0.92978,0.4235,0.38011 -2.093,-2.09,-1.0626,-0.8444,0.32851,-0.27956,-2.1039,-1.1553,1.3196,0.087205,-1.3603,1.3639,0.32669,0.067162,1.3479 -1.9466,-1.2161,-2.427,0.024024,0.33046,-0.7265,-1.7266,-0.033931,1.5029,-1.1638,-0.39482,1.9681,-0.75762,0.66708,1.6328 -2.4918,2.7821,-0.022748,0.82454,1.6701,-0.27363,0.14643,2.2597,-0.50665,1.1479,-0.43026,0.8031,-0.84974,0.18397,-0.12135 4.5415,-0.38124,-1.1982,-1.7091,2.1024,1.4864,2.0871,-1.5187,-1.0287,-1.5199,0.59052,-0.59533,-0.9275,0.38798,-0.56704 -1.8391,-1.7988,-2.5997,-0.12129,-0.14075,0.59334,-2.2363,0.96459,1.1695,0.24505,-1.3479,0.83088,-0.26839,1.089,1.3346 -0.75203,4.6288,0.32794,-0.3534,0.35201,0.72224,-1.1727,-0.32129,-1.7578,-0.46474,0.038558,0.88231,0.038398,0.070479,-0.9349 -1.8812,-2.9526,-1.7809,0.7251,0.91476,0.18106,-2.1427,0.69359,0.94487,0.29712,-1.441,0.24245,-0.5375,1.4185,1.7557 -1.7053,1.3372,-0.63936,1.8971,0.28716,0.24942,1.0105,1.3685,1.7024,0.13193,-0.25884,-0.24841,-0.68322,0.21065,0.53762 4.0591,-1.1841,-0.12674,-0.64762,1.149,1.6666,-1.073,0.85511,1.6347,0.13104,-0.71759,0.2219,0.35403,0.72411,-1.716 2.651,0.54415,-1.276,-0.80521,1.192,-0.40366,1.1477,-0.81589,-0.099371,2.6996,0.82505,-0.13068,-2.1075,-0.83343,2.1645 0.92327,0.47807,1.8212,-1.7889,-1.4997,2.1186,0.7344,1.7375,0.63513,-1.6647,-0.29409,0.32045,-0.49056,0.13849,0.35632 3.7707,-0.3518,-0.69245,0.30212,0.82511,2.3823,-0.60114,-1.1707,0.56769,-2.4608,-0.36664,0.046939,-0.81398,0.75061,-1.8329 4.0847,1.3003,-0.868,-3.09,1.5188,-1.7621,0.99943,0.86802,1.1831,0.29938,0.80176,0.21418,-1.2107,-1.8477,-1.0016 3.4955,-2.013,-1.3921,-1.3441,0.72103,1.8406,1.9649,0.82096,1.8243,0.48083,0.9041,2.1639,-1.5538,0.15745,0.58684 -2.1877,0.60021,1.8617,-0.56938,-0.23439,-1.0208,0.53104,1.611,0.79505,-1.3037,0.48674,-0.54359,0.42221,-1.3499,1.6169 4.4455,-1.6066,-0.85679,0.64856,1.2837,1.5957,1.5246,0.95155,-0.85375,-0.24764,-0.41792,1.1506,-1.0143,3.6687,-1.7753 -4.0836,0.93832,-1.698,-0.99256,0.79092,0.57534,1.0714,0.60832,-0.18351,1.0818,0.33914,-0.33286,0.17738,-0.99981,-1.1081 4.3612,-1.263,1.152,-0.11583,1.5131,1.3222,0.89789,1.2759,0.97588,-1.1478,-0.36671,2.0701,-1.1633,1.1416,-0.89816 -1.0236,1.625,-0.67603,-0.86982,-1.2758,1.2415,-0.16394,0.36586,-1.5171,0.097552,-0.40397,-0.69619,-1.1637,0.76564,0.24081 2.0742,1.4106,-0.021468,1.1323,0.26852,1.9792,0.21497,-0.73628,1.105,-1.0757,-1.4044,0.22746,-0.6803,-0.37887,-0.19958 2.8125,0.32652,-2.4755,-0.69487,-0.95366,-0.05373,1.1533,-1.1006,0.73748,1.335,0.80725,0.71538,-1.1873,-0.77049,0.958 3.8435,-2.3956,-2.6917,-0.28166,1.015,2.6016,2.2285,0.71903,-0.12261,-0.13925,0.85489,1.2807,-0.83477,2.136,0.0056401 3.0383,-0.96256,-0.56889,-0.17018,1.4159,2.0505,0.41251,0.65716,1.0219,-0.36892,-0.28359,1.7801,0.7849,0.54862,-0.43317 1.0605,1.1928,-0.70784,2.2589,-0.63733,2.1111,-0.71834,-1.6366,9.4421e-05,-0.28862,-0.77007,-0.085162,0.42302,0.99384,0.60215 0.66806,-1.2545,1.955,-1.0024,-0.93982,1.9737,0.58956,1.2774,1.9269,-0.35614,-0.82529,-0.38,1.0836,0.2788,-1.1251 0.51601,0.59682,2.083,0.99802,-0.17179,0.11233,0.29498,0.11463,1.4401,-0.75231,-0.94946,1.5387,0.69049,-2.0713,0.30338 -0.46495,3.2625,0.58173,1.1845,0.093502,-0.74807,-0.65182,-0.56156,0.58729,0.29945,-0.84992,1.4884,0.54522,0.58908,-0.33442 -2.1936,0.31668,2.275,-0.15436,1.1352,-0.83549,1.5357,-1.2173,0.4706,1.1583,-0.72741,1.1522,-0.27178,-1.2392,0.30433 1.1686,-1.2347,-1.8258,-0.55628,0.9232,3.1799,0.73548,-0.13194,0.3157,-0.80056,0.43569,1.411,2.2259,0.94338,0.68134 -3.756,-1.3438,-1.2654,-1.5128,0.76472,-0.87569,-0.91286,-0.11008,1.1474,-0.55833,-0.23724,-0.023489,-0.17213,1.2079,-0.015448 -4.2464,-0.14563,-2.0362,-1.234,2.0328,-0.1619,1.774,-0.59046,-0.083581,-1.5436,-1.4345,-1.513,-0.65322,-0.35123,-0.46788 -3.0556,-0.40974,2.1389,-1.3478,0.95154,-0.46435,0.53354,-1.3626,0.69815,1.0863,0.11391,0.32431,-0.049577,-0.0093197,0.21345 -4.5469,-0.59428,-0.69275,-1.8126,1.106,-1.3689,1.0133,0.42995,-0.38757,-1.2162,0.052614,-1.1452,-0.98373,-0.69828,-0.05065 -3.9784,0.15256,0.71806,-0.36498,1.1619,-2.1811,1.7774,0.57049,0.079215,-0.061645,0.051875,-0.025986,-0.31695,-0.39346,0.22899 -1.5362,1.083,0.10426,2.4526,-0.66895,0.63203,0.77271,-0.2874,1.2307,0.088856,0.86556,0.90682,-0.74856,0.6991,0.61071 0.032254,3.1207,2.6107,-0.69364,0.30352,-0.71695,0.035112,0.51288,-0.14185,0.2413,-1.4865,1.014,0.20902,-2.0819,0.055348 -3.6791,1.7828,1.8813,-1.6275,0.37591,-0.090601,1.2057,0.072088,-1.0073,0.46599,0.81963,-0.10406,-0.23689,-1.6462,0.45758 -1.7173,2.4221,0.62157,-0.39885,0.56498,0.011705,-0.79054,-0.096566,-0.44093,-2.1991,0.85491,1.187,-0.68849,1.6721,-1.8117 -1.1136,2.5315,2.2941,1.2791,1.1934,-0.77425,0.27147,-0.057753,0.45177,0.22367,-0.037262,1.4944,-0.44976,0.42266,0.24876 -2.9519,1.3867,-0.42425,-0.39407,-1.0365,1.1398,1.3169,-0.21677,-0.45829,-1.1446,1.3969,0.305,0.45964,-1.7285,0.062384 -3.084,1.6636,-0.75712,-0.27776,0.56007,2.4332,0.7989,0.044339,-1.1765,0.31676,0.55997,-1.4308,-0.37289,-0.74675,-1.0213 -4.1632,1.8165,0.16468,-0.63052,0.58439,0.35601,2.1376,0.30789,-0.65063,-0.89704,0.54711,0.48874,0.25254,0.081387,-0.59417 4.195,1.1865,-1.3135,-0.81755,1.1833,0.042305,0.55232,-0.94422,0.9807,0.78295,0.056899,-1.4877,-2.5104,-0.72659,-0.5243 -3.2493,-0.076143,-3.4231,-1.2353,0.84617,-0.0097926,1.2082,-1.0102,-0.035842,-0.66068,-2.2513,-0.32229,0.078059,0.45803,-0.45773 1.751,1.3484,2.0406,1.7018,1.0034,0.89175,-0.77021,-1.7518,1.0002,-0.51471,-0.74756,0.61359,-1.1614,1.0023,0.94547 -0.67733,3.7908,1.9235,-0.42153,0.93493,0.005359,-1.4206,0.84806,-0.51819,-0.89576,0.79179,1.0137,0.24843,-0.35285,0.17209 -0.86326,-0.20601,1.9276,2.0919,3.1594,0.055643,-0.23405,0.86193,-0.58047,-2.2689,-0.21377,-0.50342,-0.28659,0.99597,1.6021 -2.6805,-1.2965,-1.6351,-0.93159,1.3542,-2.1049,-1.8931,-0.13291,0.56398,-1.0521,-0.8834,2.2105,-0.51492,0.04154,1.6543 -1.3577,2.2366,1.5282,0.50975,-1.2697,-0.16758,0.49427,-0.34911,0.43554,0.57887,-0.19976,1.8392,-0.0017232,-1.2031,0.51298 -3.4778,1.3546,-2.1081,-0.55478,0.50303,1.4542,2.138,-0.47606,-0.57744,0.18663,0.16693,0.44084,0.11547,0.068694,-1.3663 2.8639,-1.0326,-2.2058,-1.2168,-1.8404,0.078795,1.0248,0.83296,0.62987,1.4022,0.17964,-0.19395,-0.15121,2.0134,1.7256 -1.6355,1.171,2.8325,0.52449,1.7697,-2.2105,0.007136,2.6914,-0.52534,-1.4811,0.078815,-0.25117,-1.1742,-0.61973,1.4612 2.3565,-0.37631,-2.3387,0.68281,0.64259,2.2427,1.5408,-0.19033,0.60455,1.6668,-0.35004,0.4366,-0.45316,-0.31837,0.53568 -3.1673,-1.1937,-1.0141,-1.7209,0.81793,0.53035,-1.1405,-0.21166,0.57153,-0.98878,-0.31578,0.37464,0.41869,1.1011,0.74503 1.684,1.8421,0.40175,1.8893,1.3988,0.97317,-0.33092,-1.8189,-1.1694,-0.24501,-1.2053,0.39252,0.24231,-1.5059,-0.53689 -2.2997,-1.1778,-3.0431,-0.32298,1.4487,0.95145,-0.91146,-0.86211,0.51606,-1.8559,-1.9549,1.7648,-0.99026,-0.24793,0.91085 -3.3378,2.6551,0.90017,-0.082626,-0.050538,0.82156,0.7869,1.1637,-0.41533,1.0887,0.50735,0.93331,0.044947,-0.15489,0.19389 -3.8763,-0.66988,-2.3254,-1.3511,2.1988,0.43616,-0.62331,-1.823,-0.42708,-1.451,-0.89014,1.8472,-0.2986,0.67344,-0.19536 1.9446,-0.48933,-0.067101,0.48437,0.77589,1.3347,-1.0311,-3.1931,-0.86345,-1.6496,-0.49837,-0.13224,0.83933,0.3609,-1.0143 -3.6535,-1.929,-1.4094,-1.9646,1.4426,1.4413,-1.3941,-1.1875,-0.34926,-1.5045,-1.1735,1.1555,0.11909,0.87998,0.12258 -4.3949,-0.74549,-1.2363,-2.3387,1.7474,-0.0031198,-0.34056,-0.99292,-0.53357,-1.0318,-0.4157,0.22715,-0.039578,-0.70084,-0.082851 -2.3637,-0.31414,2.1464,-1.3975,-0.083571,1.5816,-0.2374,-0.28564,1.3341,0.59151,1.2269,-0.53257,0.11659,1.1546,-0.03145 -3.4314,-1.1132,-1.5743,-1.2838,1.0234,0.90889,0.032627,-0.49103,0.013807,-1.9862,-0.32268,-1.1848,0.12666,-0.57116,0.075554 -3.4157,-1.1202,0.14379,-1.8385,0.66927,0.39616,-0.8738,-2.0231,0.91196,0.37538,0.41834,0.87354,-0.11247,1.7542,-0.30494 -3.3011,0.74948,0.72052,-1.0881,-0.17812,2.2111,1.0835,-0.86539,0.20025,-0.47936,1.5078,0.31384,-0.084208,0.40378,-0.41058 -0.81375,4.2669,1.4254,-0.60752,1.3262,0.41239,-1.5803,1.7183,-1.6246,0.1139,0.43755,0.2727,-0.67753,-0.27959,-0.48757 -2.8559,-2.1064,-1.2255,-0.91433,1.3481,0.12362,-2.2492,-0.67293,1.1989,-0.53734,-0.59875,1.9489,-1.1753,1.4938,0.75831 -2.8182,-0.098818,1.9211,-1.5505,-0.23064,1.2136,0.19409,-0.28538,1.514,-1.0023,1.1928,-0.64208,0.77965,0.11378,0.3775 3.9514,1.5061,0.57312,-0.95258,1.7452,-1.2472,-0.24788,-2.2846,0.82354,0.56587,0.3601,-0.49296,-0.73302,-0.48539,-0.010248 -1.9606,1.6442,2.9798,-0.035294,0.59247,-1.0597,0.53155,1.213,0.85697,0.29811,0.73552,-0.48785,0.013927,-0.42193,1.1017 -2.3836,0.21032,1.1883,-1.8155,0.12378,2.5163,0.48487,-0.37961,-0.097145,-0.68558,1.0317,-1.162,1.0134,0.63898,-0.34509 1.7873,-2.0794,3.9903,-0.82537,1.3764,1.4641,1.8639,0.95205,0.35292,1.0001,-1.5285,0.082367,-0.0036466,1.9098,-1.9295 -2.5186,0.92209,0.20303,-0.53402,-1.0735,0.3969,0.6882,0.41279,1.0993,-1.0641,0.68665,-0.536,1.3997,-1.264,1.0623 2.1851,3.4101,-1.6195,-2.2777,-0.092795,0.68476,-0.60088,-0.3483,7.9674e-05,-0.050875,-0.32716,-1.303,-0.041768,-0.826,-0.81979 1.5123,0.38164,3.0511,0.48872,0.43842,0.45935,-0.17281,1.0418,1.2779,0.13911,-2.2463,0.97138,0.36099,0.1199,-1.2987 0.27952,1.7121,0.016612,2.0646,2.6384,0.24847,-0.94336,-0.85864,-0.3254,-2.1603,0.43581,-0.12781,1.3423,0.47797,0.047314 -0.12876,4.1978,0.9521,-0.38276,0.0073005,0.35813,-0.4509,0.89274,-0.57482,0.41248,-1.9283,0.22809,0.61333,-1.4202,0.41588 3.3636,-0.075838,0.73428,1.1028,2.0483,0.63171,-0.27648,0.54819,0.92744,0.15536,-1.5837,0.51561,1.0135,0.34827,-0.94255 1.0123,1.5363,2.9556,-1.4573,-0.8502,1.547,0.68485,0.51559,0.84167,0.087036,-0.099258,0.55091,0.40657,1.6763,0.6612 0.10138,1.0611,2.9865,-1.1378,0.31031,-0.51749,-0.90934,2.7657,0.49123,-1.8803,-0.34263,0.092975,1.3882,-0.54807,1.4881 2.8546,-0.76715,-3.1057,-0.3198,-0.11025,3.1998,0.88524,-0.23997,0.0511,-0.094033,-0.097522,0.396,-0.2785,1.4559,-0.50169 -0.25838,2.2858,1.3302,0.94338,-0.36694,0.10775,1.2678,-0.59016,0.6554,0.70597,-1.1878,1.3598,0.69165,-0.66981,-0.20185 -1.5775,-2.1821,1.8174,-1.3553,-0.17011,0.26089,0.72157,0.76144,1.6254,0.8997,-1.2288,-1.09,1.6861,0.21088,-0.10891 -0.48407,-2.368,2.2241,-0.96594,0.62246,0.3179,1.5339,0.19429,1.699,1.3616,-1.4758,-0.8551,1.134,0.89286,-1.0094 -0.69057,2.4265,2.5196,-1.3261,-1.1524,0.44239,-0.079195,0.64568,-0.71671,-0.32053,0.85945,0.023197,0.19084,-1.7992,1.2269 3.0172,1.293,-2.4631,0.18499,1.1994,1.1269,0.60165,-1.6997,-0.30566,-0.41125,-0.47157,-0.935,-1.1621,-1.2716,-1.089 -0.20082,0.54317,0.096641,0.9289,-0.18616,-0.59232,-0.69841,1.7904,2.2419,-0.99864,-0.051016,0.32864,0.9278,-0.074795,1.209 -3.8924,1.4385,0.91192,-0.78067,-0.24527,1.4134,0.69083,0.45404,-0.2909,0.31697,1.4572,0.15558,-0.013917,-0.034392,-0.33158 2.0668,2.1116,0.91845,-1.9822,0.66678,0.066993,-1.8663,0.46754,1.4962,-0.62942,-0.67671,0.063621,1.0267,-0.12535,-0.17658 4.5298,-1.3967,0.23817,-2.543,2.0382,0.14158,1.9246,-0.53533,1.7714,0.89348,1.2457,2.1901,-1.1738,0.76803,0.57416 1.7381,2.8974,0.25676,-1.7944,-0.099015,2.5169,-0.071349,0.57841,-0.89498,-0.69213,0.27569,0.56525,0.45561,1.392,0.56038 2.8831,-2.1145,-2.8903,-1.109,-0.07218,1.7463,1.6221,-0.99852,-0.6969,-2.4324,1.9714,0.34454,-1.0827,2.2419,0.95792 -1.3103,0.95828,2.3669,-0.35882,0.85151,-2.0652,0.078313,1.8778,1.1795,-1.9451,0.8752,-0.043836,0.73864,0.14346,0.58496 1.112,-1.0443,4.3213,-0.61901,1.2992,-0.63047,-0.5837,2.811,-0.1216,-1.3366,-0.56857,1.125,1.5493,-0.13167,-0.21069 -2.7088,1.4547,-1.946,0.60492,0.37347,2.4723,1.3305,1.3825,0.43333,0.83722,0.021269,0.076856,0.60308,-1.0711,0.20084 -0.9466,1.8945,0.46824,1.3801,-1.1175,0.56802,0.083508,-0.40968,1.0475,0.56545,-0.70681,1.8258,0.39225,-0.25572,0.49332 -3.8753,-1.1374,0.87561,-1.6857,0.74862,-2.0981,0.41222,0.66613,0.48278,-1.5949,0.14001,-1.6733,-0.12033,-0.21199,-0.055156 3.5461,0.014656,-0.75693,0.62483,1.376,2.3646,-0.11961,-2.2239,-0.015886,-0.36533,0.036882,-1.0376,0.40888,0.50578,-0.99344 0.80698,-0.023611,-0.81967,2.1699,1.869,0.52685,-1.746,0.10541,1.3313,-2.2701,0.18747,-0.39855,0.98945,0.50886,0.2073 1.3246,1.5616,-1.1155,1.7344,-0.033678,1.6607,0.07098,-1.2159,0.78906,-0.17588,-1.6324,0.51965,0.07502,-0.85234,-0.77851 -2.748,-0.38394,2.8987,-0.027165,1.3695,-2.0763,1.3185,0.72263,0.87608,-0.90756,0.16285,-0.55978,0.47313,-0.84465,0.018193 -1.2347,2.2485,0.033856,2.8338,1.0921,0.22285,-0.62294,0.67233,-0.38418,0.17344,0.23748,0.77445,-1.555,0.49223,-0.48234 -3.1213,1.0199,0.45844,-0.29333,0.80138,-2.0164,1.8212,2.0054,0.36195,-0.66617,0.42996,-1.8774,-0.48977,-1.0773,0.14584 -2.7832,-0.2745,2.7006,-1.3779,0.92752,-2.0792,1.0384,0.7836,0.55577,-1.0268,0.044408,-0.97746,1.2078,-0.83422,-0.18037 -3.2446,-1.2904,2.5866,-0.89941,0.41041,-1.5694,0.73647,1.2849,0.39624,-1.4786,-0.088187,-1.0318,0.33711,-0.96132,0.11217 -3.0786,-2.8733,-0.7408,-0.97883,1.5478,-2.3361,-0.8668,0.42784,-0.33388,-0.48639,-1.3816,-1.04,-0.9289,-0.85457,0.45971 -3.7758,-1.9889,1.7967,-2.481,0.94063,-1.5548,-0.33395,0.49214,0.057242,-1.3512,-0.29206,-1.3678,0.60519,-0.12749,0.21935 -3.4645,-0.52559,1.6623,-1.5951,1.8417,-2.0859,1.2907,0.086041,0.20382,-0.24987,-0.20874,-1.3294,1.3509,-0.53712,-0.27089 2.1759,-0.35298,-2.4502,-1.3156,-0.61926,-0.049415,0.89995,1.5807,0.90489,1.1217,1.5685,0.80714,-0.73663,-0.49388,1.0778 -1.3208,1.9978,3.0438,-1.0738,-0.32049,0.78824,-0.21394,0.46278,0.011281,-2.4584,0.25183,0.59954,0.67745,-0.90026,1.5493 2.6492,0.35692,-2.1743,-2.8093,-0.2353,-0.044805,1.3694,0.71618,1.5298,0.62248,2.0496,1.953,-0.83761,-0.85612,0.74103 4.1812,-2.1838,-1.2266,-1.7326,2.0417,2.6455,1.8777,-0.84556,-0.83069,0.441,0.16643,1.9585,-1.1496,-0.18408,0.67346 -4.1256,0.61797,-1.2858,-1.2686,0.9447,0.41535,1.1894,-1.0741,-0.50991,0.037102,0.019898,-0.53291,0.92808,-0.85266,-0.4618 -2.6437,1.4225,-2.8532,-0.26218,0.061673,2.2304,0.91531,0.57863,-0.092108,0.81507,0.24215,0.091948,0.70022,-0.90172,-0.60164 0.16385,2.4046,-1.1181,1.7916,-1.4456,1.4738,-0.8005,-0.5809,-0.043757,0.36932,-0.48699,0.29377,-0.86491,0.36277,0.0093039 -4.1549,0.24912,-1.7127,-0.54528,1.1886,0.61918,1.7246,-1.1036,-0.094872,-0.80314,0.12558,-0.29725,0.39096,-0.092041,-1.241 -2.7816,1.3372,0.39953,0.63425,-0.37654,0.055882,1.8123,-0.93941,1.0479,1.1158,0.60849,0.38146,0.51989,0.22619,-0.1055 -3.393,1.6287,0.26065,-0.90156,0.88145,0.99951,2.632,-1.0892,-1.188,0.43162,-0.28368,-0.41083,0.010642,-1.0229,0.040098 3.4038,-0.1901,-1.1556,-1.9044,3.2928,-0.50858,1.2159,-0.27414,-1.2354,2.0398,1.1468,0.45212,0.12817,-2.7298,1.9981 0.010957,3.2366,-1.3256,1.3883,-0.14912,0.040764,-0.87875,-0.28654,0.13747,0.7326,-0.34643,0.65327,0.24353,0.45061,-1.0527 0.50517,4.1248,0.29173,-0.51147,-1.1844,1.7552,-0.73495,-0.07323,-1.6696,-0.48875,-0.41284,0.13597,-0.27796,0.81274,0.25174 -3.9753,1.5303,-1.2938,-0.7057,0.27942,0.65885,1.6056,0.67363,-0.56383,0.16493,0.63869,-0.35886,0.65489,-1.3491,-0.44308 -4.2316,1.2849,-1.586,-0.81006,1.1228,0.5566,1.9537,0.59575,-0.48155,0.30677,0.039825,-0.76554,0.85602,-0.78763,-0.27645 -1.4658,1.2876,1.3071,1.3256,0.33933,-1.0304,0.13749,1.791,1.5814,-1.1293,0.35684,0.32174,-0.2687,-1.2854,1.1883 -3.9512,0.97372,-1.2019,-0.47552,0.57993,0.41333,2.1422,0.073074,-0.38997,-0.66787,0.3552,-0.15562,0.75331,-0.83804,-0.073067 -3.0628,0.66469,-1.9853,0.20365,0.40269,1.6301,1.6175,-0.69587,0.79493,-0.61432,0.2976,-0.85352,0.061871,-0.72325,-1.416 -3.8188,0.39997,-1.2821,-0.70485,-0.32529,-0.25106,0.97525,0.78209,0.79829,-0.7109,0.53992,-1.0503,-0.4269,-0.1661,-0.92478 3.9979,-1.1612,-0.23571,-2.0139,1.7358,2.8086,0.8064,-1.9304,-0.38545,-1.1107,0.81673,-0.086424,0.78684,0.67275,0.072773 -3.826,0.36327,-0.45853,-0.82637,0.39734,1.1731,1.1511,-0.40669,0.31559,-1.4576,1.0807,-0.91841,0.23135,-1.2565,-0.58692 -1.5488,0.43791,3.0214,-0.22759,-0.13141,-1.1897,0.63366,0.66506,1.7572,-0.46858,0.069258,0.045952,0.81779,-1.2923,0.97671 -3.0981,1.1438,-1.8528,0.15492,-0.76245,1.0155,0.76846,1.3409,0.30789,-0.98389,-0.035641,0.46388,0.3133,0.6324,0.16395 -0.040504,4.155,1.311,-1.1161,0.90603,-0.58371,-1.6169,0.77063,-1.4849,0.19421,-0.38162,-0.60822,0.588,-1.368,-0.31036 -4.0295,0.98003,-0.82499,-1.4851,1.3177,0.40454,1.395,-0.92702,-1.2668,0.48013,-0.10963,-0.60237,0.57123,-1.2432,-0.27117 0.32662,1.8772,1.2644,1.8965,-0.44318,0.94501,-0.29498,-0.93286,0.71382,0.32262,0.47591,0.78761,-1.3291,0.90994,1.0599 -1.0124,-0.32626,0.50856,-2.3137,-1.7074,0.7852,0.82761,-1.853,0.91831,-0.33657,-0.45558,-1.1878,-1.297,1.1171,-0.53574 -0.92672,-0.25002,1.2044,-1.1688,-1.2331,1.1585,0.94774,-1.3799,1.9581,0.94668,-0.107,-1.0192,-0.87723,0.12394,0.33049 3.0421,0.0025331,0.10745,0.79117,1.3609,1.951,0.055903,-0.97161,0.49977,-2.3319,-1.2924,0.48679,-1.1646,-0.87299,-0.92354 -0.62944,2.7698,2.1574,-1.2456,1.5835,-0.15534,-0.67618,1.223,0.12125,-0.77455,2.3655,0.91821,-0.67139,0.71559,-0.045844 -1.8912,2.7916,-0.49689,-0.48218,1.1051,0.94045,-0.50281,0.88771,-0.099685,-1.5576,0.65824,-0.015246,0.48927,0.40631,-0.73098 2.408,0.65794,1.5217,1.838,0.26151,1.7924,0.35452,-1.5083,0.30676,-1.0391,-0.72392,0.0027032,-0.80132,0.94791,0.73203 -1.2329,-0.35376,0.36786,2.6532,0.47325,-0.14186,0.21816,1.3441,1.2489,-1.3766,0.10064,-0.27595,-0.5331,-0.14781,0.91732 -0.03018,2.3612,0.67637,-0.99332,1.0824,0.31402,-0.77907,0.40536,0.96684,-1.0435,1.4207,-0.034867,1.7118,-0.11845,0.86628 1.3363,-0.53804,1.7671,-0.31067,-1.0762,1.5322,1.6618,-0.59746,1.5183,0.083811,-0.41371,-0.44153,-1.7204,0.90771,-0.82874 2.2118,-1.4747,2.2367,0.71475,0.69306,2.8411,1.5366,-0.57083,0.072116,-1.526,-0.83692,0.63887,-0.043268,0.56019,-0.58951 1.4972,0.16109,1.9451,1.2115,0.83721,2.0218,1.9559,-1.4845,0.56788,0.40586,-0.49878,-0.7855,0.32843,0.90998,0.33784 -0.67824,-0.17369,1.1113,-0.95408,-1.3859,1.2403,0.62112,-1.9638,1.6601,0.55545,-0.0024942,-0.74881,-0.73096,1.2568,-0.35744 -0.79834,1.3816,1.463,0.060833,-1.2926,0.38829,0.6293,-0.53071,1.2853,-0.30683,-0.15321,1.5411,1.0245,-1.5339,0.60127 1.2287,2.4559,0.4289,-1.0357,1.7535,-1.5426,-2.2769,-0.3915,1.1582,1.076,1.2219,-0.11951,0.28121,-0.55171,-0.11245 -1.9872,-0.47651,-0.033905,1.0647,0.26937,0.84539,1.367,-2.8149,0.48333,0.98987,0.4717,0.12514,-0.079963,0.42917,-0.47879 0.26428,-3.0106,0.40936,-1.4729,0.038224,1.734,0.16107,-0.27641,1.0229,0.47963,-2.1999,0.43265,-0.2365,1.3948,-1.9313 -0.78478,-0.74534,1.6413,-1.7744,-1.3291,1.9758,-0.72653,-1.0473,1.0409,0.20982,0.27048,-0.72461,0.34857,1.8837,-0.22074 2.8286,2.2548,-0.30027,-1.6902,1.8713,-0.2256,-0.68388,-0.41631,-0.32599,0.93944,1.1421,-1.1565,0.86016,-2.3301,-0.15869 -2.074,3.1137,-0.19754,0.69421,-0.014394,2.1234,1.7089,0.51449,-1.0828,0.54581,-0.9131,0.032492,-0.089395,-1.1882,0.89853 2.2488,3.202,3.1392,-1.5549,0.88462,-0.93094,0.18021,-0.33608,0.20077,-0.053131,-1.0778,0.40603,-2.2,0.013796,-0.26862 2.4799,3.2037,3.187,-2.1318,1.0185,-0.912,-0.052522,-0.28557,0.11191,-0.47826,-0.56322,0.19862,-1.5432,0.095364,-0.26972 4.2391,-0.35566,3.1792,-0.66175,3.1765,-0.85712,-0.90235,-0.31161,0.42882,-0.39094,0.13481,0.88948,-0.063945,0.32396,-0.29675 3.8166,1.3652,2.1282,0.32249,2.0086,0.027017,0.26517,-1.3508,-0.33175,0.30742,-1.0103,-0.9073,-2.0379,-1.2123,-0.56402 4.5885,0.3029,1.0944,-0.94557,3.3282,-0.505,-0.18187,-1.3311,1.0164,1.0587,0.58332,-0.31942,-0.43392,-0.60488,0.48041 2.547,1.2514,3.3222,0.36864,1.5064,-0.92719,0.28221,-1.6795,0.10103,-0.45186,-1.786,0.61888,-1.6097,0.11376,-0.65734 2.436,1.2557,3.5101,0.39307,1.6624,-1.2088,-0.90516,-0.40935,1.3347,-0.62057,-1.0726,0.78908,-0.20305,-1.2933,-0.22668 1.4969,2.5751,-1.914,-1.071,-0.20022,0.85044,-0.90043,-0.69185,0.17734,0.60174,0.36305,-0.62191,1.7274,-1.6842,-0.51983 0.56923,2.9812,1.8736,0.3708,3.1609,-1.4491,-1.3959,-0.98937,-0.10517,0.45369,0.22578,-0.17568,-0.92626,0.754,-0.18811 -0.5459,-0.60106,1.1693,2.5752,0.37861,2.1946,-0.28882,-0.14354,-0.04567,-1.5293,-0.80387,0.69241,1.0697,-0.20078,1.3111 2.9456,1.9519,-0.91159,-1.6114,0.59092,-0.33765,-0.40666,-1.6996,1.5084,1.5568,1.1494,-0.0063132,0.34227,-0.61506,-0.15201 1.1241,1.2525,-1.0412,-1.2509,0.88202,-0.69019,-0.52312,0.47544,0.49034,2.437,1.3176,0.64927,1.525,-2.2487,0.54498 1.7637,3.1941,1.1463,0.06001,3.034,-1.4508,-2.0157,-0.55006,0.057429,1.4338,0.90323,-0.37369,-0.41258,-0.60751,-0.45508 4.0095,1.0087,0.64704,-0.71638,1.4984,0.38692,-0.43158,-2.1358,0.86039,0.065839,0.10938,-0.72857,-1.8434,1.05,0.033853 -3.2787,1.3665,-2.0041,-0.38306,-0.094582,2.414,1.3651,1.2415,-0.85455,0.67312,0.61468,0.14582,-0.42223,-0.36043,-0.85265 4.2968,0.032764,0.97253,-2.1353,4.418,-1.5959,0.43168,0.40997,-1.2955,1.0882,1.4375,-0.17285,-1.7077,-1.4289,0.68623 2.8663,0.10963,1.9471,-0.5128,4.133,-1.2268,-0.69308,-1.8077,-0.19315,-0.31258,0.84701,-0.55274,-0.65383,0.45287,0.85676 0.56257,2.288,-1.1502,0.67234,-0.41687,0.24606,-1.764,-0.73504,1.2009,0.91156,0.7103,0.019364,1.1323,0.58731,-0.83637 0.75775,2.2174,2.5695,1.5196,3.0356,-0.89664,-0.6039,-1.3348,-1.1282,-0.12135,-0.24313,0.096111,-0.88211,-0.60417,0.7024 1.7031,1.8885,-1.2953,-2.1335,-1.0255,1.5625,0.47998,-0.16538,0.13437,-1.7698,0.38907,-0.51308,-0.3925,1.2716,-0.1064 -1.2532,-0.73572,3.049,0.9543,0.4996,-0.24067,1.2377,-0.93375,1.8538,0.097234,-0.72688,0.71352,-0.13745,-0.64,0.12662 -2.6,0.78851,-2.6626,0.10502,0.55103,1.7378,0.96962,-0.98434,0.62333,0.81609,-0.66437,-0.57874,0.73149,-0.56269,-0.73894 -2.6267,2.9931,-0.011419,0.19083,-0.04675,0.43738,0.16035,1.9655,0.2147,-0.52169,0.17939,0.98139,0.32479,-0.86086,0.77722 -3.4151,0.6268,-1.0071,-0.082296,-0.27358,-0.68591,1.5073,1.4079,1.2458,-0.35809,0.32493,-0.18913,-0.46715,-0.39424,0.13576 -1.8211,3.7039,-0.70717,-0.045743,0.49233,0.31091,-1.2878,1.9143,-0.60253,-0.64322,-0.21161,0.68978,0.64362,-0.99867,-0.46889 -3.0303,1.4227,0.49862,-0.81707,0.85717,1.3179,0.81937,0.32825,0.28458,-1.6542,0.44052,0.033099,-0.48115,0.73431,-1.1887 -2.5387,0.37126,1.3418,0.85758,0.88472,-1.1499,1.0286,0.45003,2.031,0.48186,0.85276,-0.39999,-0.45334,-0.50225,1.0486 2.9232,2.5645,0.22087,-1.6095,-0.13129,-0.50861,-0.55819,0.25363,1.0724,-0.6304,-0.88013,0.83567,-1.2057,-0.92406,-1.1452 2.6038,1.3521,-0.031365,0.33736,2.0563,1.0867,-0.29014,-2.4488,-1.6073,-0.79371,0.027411,-0.605,1.7176,0.45002,-0.53208 -0.8954,2.7884,2.1422,-0.02364,-0.097783,-0.66412,-0.26711,0.43576,1.0278,-0.44411,-0.57555,1.254,0.79686,-1.1987,1.274 4.7426,-1.4253,-0.63097,-1.5472,3.1537,2.6713,2.1911,-0.80527,-0.19499,-1.3771,0.99807,0.45501,-0.26107,0.24229,0.038348 2.5782,1.5726,1.767,0.65399,0.73603,0.30741,-0.85563,0.041751,1.0262,0.94004,-1.1728,0.54678,-0.88017,-1.4311,0.18664 -2.2951,2.575,0.38696,0.3685,-1.1118,-0.0044042,-0.78033,1.7789,-0.86637,-0.35212,1.1617,0.90299,0.27567,-0.9852,0.28894 3.2349,1.56,-0.17846,1.1806,0.4395,-0.14424,-1.4601,-2.4281,-0.40035,0.5999,0.34996,-0.84726,-0.9922,-0.45042,-0.37413 0.83653,1.6249,2.0551,0.64365,1.6673,-1.3451,-1.6346,1.0539,1.5742,-0.49112,-0.018591,0.84889,0.25505,-0.85825,1.0901 4.1143,-0.87516,1.4879,-0.14495,2.5796,0.70044,-0.98852,1.2932,0.12395,-0.51276,-1.4763,0.6689,-0.44707,-1.1492,-1.6524 -1.2839,1.2433,1.7807,2.2528,1.8646,-0.097123,1.033,0.32785,0.19226,1.1446,-0.41532,0.1003,-0.57522,-2.1553,1.6506 -1.4765,1.8178,-1.0752,2.1154,-0.84784,0.86833,1.0177,-0.026198,0.17883,1.6036,0.070681,1.4563,-0.36156,0.60583,0.25772 0.39741,0.37684,0.87515,2.3216,2.8297,-1.2308,-1.0178,-0.19033,1.4979,-1.0288,-0.39924,-0.017083,0.081964,0.15941,1.051 3.4151,0.58558,-1.3974,-2.5258,-1.1651,1.1604,-1.3644,-0.062093,1.2219,0.092648,1.0858,-1.4027,-1.2145,0.55775,0.56796 -1.1632,-0.42223,0.50636,0.94898,-0.61061,0.85597,1.6548,-1.78,1.4205,0.89783,0.2894,1.0108,0.12013,-1.0859,-0.47538 -3.5259,2.2388,0.65791,-0.97272,0.05345,0.11648,1.7176,0.3677,-0.34491,-0.10464,0.40199,0.15382,0.96331,-1.1959,1.0073 -1.1111,1.3,-0.94972,0.93492,-0.92334,0.33091,1.2167,1.2968,1.3464,-1.5603,-1.0386,0.37851,-1.3985,-0.14317,0.43526 2.3406,0.79865,1.2507,1.646,1.5571,2.0248,-0.3604,-1.8699,-0.2647,-1.311,-1.2346,0.42119,-0.42274,-0.38371,0.71059 -2.6545,0.99794,-1.3582,0.27319,-0.66523,1.0064,0.83204,-0.50079,0.69926,1.4056,0.91608,1.0204,-0.12416,0.55829,-0.63619 -2.4834,1.6167,-1.4865,0.27281,-1.4505,1.1261,0.72051,0.33212,-1.2063,1.7306,0.51174,0.56372,-0.25712,0.43205,-0.74376 -2.1507,2.9909,0.11741,1.2048,-0.29793,2.1387,0.80072,0.40882,-0.71815,-0.95804,0.45936,0.66157,0.22942,-0.18962,0.09124 -3.2745,1.4961,-0.76205,0.10454,-0.69379,0.86129,1.7064,-0.088219,-0.070891,-0.62084,0.71739,0.47918,0.99368,0.39314,-0.13578 4.3184,-0.046793,-0.40412,-0.48845,1.8716,2.8911,-0.51156,0.37063,0.14593,0.46898,-0.80671,0.56683,0.03457,0.67112,-1.6112 1.6972,2.2691,0.14103,-0.83278,-1.1204,1.2617,-1.0438,0.31789,0.93856,-0.18042,-1.2409,0.37675,-0.62983,-0.21933,-0.49415 -2.1129,1.5288,0.21106,2.0251,0.58639,0.42474,0.90765,0.6581,1.0209,1.2426,0.49345,0.28935,-0.77651,-1.1675,1.1655 -2.5329,0.80818,-2.8873,0.26979,0.047872,2.4319,1.2532,-0.0015605,0.11755,1.4607,-0.21747,-0.34059,-0.11592,-0.37944,-1.2653 0.35752,1.4848,0.78175,2.354,0.8016,1.4866,0.13783,-1.7443,0.52823,-0.4931,-0.66342,0.82212,0.17903,-0.25153,1.2193 -2.0387,1.8088,-1.9132,1.2093,-0.97246,1.5837,0.93539,0.82889,0.26077,-0.76543,0.51614,0.0029349,0.7565,-1.1378,0.77691 0.43021,0.96226,1.7295,2.494,0.33329,1.5312,0.66107,-1.5715,-0.19515,0.075552,0.36193,0.46178,-0.48215,0.98811,1.4789 -0.47558,2.145,-0.31101,2.5061,1.4139,1.7792,-0.48434,0.0011917,-1.0974,-0.25554,-0.32239,0.32789,0.97168,0.55486,0.39615 0.35399,2.3719,-0.68627,2.2433,0.78011,0.92617,-0.69935,-0.54556,-0.057803,1.514,-0.95446,0.50494,0.68033,-0.16722,-0.6974 -1.054,2.5862,-0.90449,-0.10941,-1.0498,0.72955,0.14165,-0.95615,-1.132,-1.6474,-0.2543,0.21095,0.7459,1.8965,-0.031767 -2.2393,2.5096,-1.1243,1.0159,-0.093121,1.2675,0.27246,1.4929,0.024983,0.75328,-0.40213,1.3002,-0.85535,0.30477,-0.85021 -1.7405,2.8174,0.50493,0.45629,-0.91845,0.64383,-0.10645,-0.017807,0.46271,-0.20567,0.048116,1.8021,0.41007,0.57788,0.38181 -2.4532,2.6003,0.70229,-0.16851,-0.32225,0.59865,0.85344,0.55639,-0.5427,1.3151,-0.34448,1.488,0.75135,0.28361,0.4764 -0.68394,2.5735,0.81177,-0.27696,0.89023,-1.2828,-1.8393,1.7052,0.90488,-1.8692,0.28946,0.32632,0.88317,-0.65267,1.0211 1.7094,2.1714,-2.8186,-2.2216,-0.69606,0.87397,-0.18374,0.052298,0.27496,0.083325,1.1654,-0.94646,-0.22567,-1.1946,0.52838 -1.5278,2.2248,2.2376,-0.25056,-0.7839,0.99881,0.61677,-0.52695,0.51698,-0.59751,-0.038385,0.85413,0.74099,0.23667,0.95557 -0.73484,-0.80166,1.228,2.6304,0.34413,1.4622,0.13805,0.33435,1.002,-1.1824,0.64958,0.13385,-0.1724,0.17806,1.1241 -0.094604,3.7047,-0.070119,0.24124,-0.94433,0.90434,-1.0984,-0.71219,-0.65523,-0.71822,-0.13765,1.0735,0.86393,1.3479,-0.51791 2.6259,1.8157,-2.6842,-0.13168,0.91378,0.97753,0.61785,-0.2771,0.87291,1.2816,-0.57784,-0.93475,-0.75962,-1.3617,-1.2466 2.6324,1.7207,1.8915,-1.5303,-0.87097,0.95698,-1.1921,1.1211,0.25354,0.41425,-0.56642,0.27672,-0.83068,-0.60412,0.49501 -3.0102,-2.2544,1.4868,-1.2385,0.40863,-1.3759,-0.38887,0.055561,1.5573,-0.32456,0.15159,-1.2677,0.16065,0.5243,0.41378 2.3491,2.3356,-1.0065,0.12192,1.906,-0.0036698,-0.22675,-0.33004,-0.51582,-0.043965,-1.5937,-0.8265,0.84359,-1.8522,-0.85081 0.42203,1.2782,1.7656,0.022841,-1.9367,1.9237,0.084714,-0.38644,1.1958,0.42781,-0.2772,0.36082,-0.82232,0.18935,0.77374 -3.4839,2.5151,-0.053593,-0.030246,0.1889,0.553,1.2115,1.4032,-0.53727,-0.42943,0.42434,0.53055,0.43878,-1.3361,0.7957 -0.92769,2.9438,2.1349,-0.43476,0.33612,-0.75446,-1.4793,1.4765,-0.08876,-0.34379,0.25997,0.8858,0.2766,-1.6979,0.99227 -1.1544,0.041616,3.4588,1.2271,1.3181,0.55027,0.98858,-1.3373,1.1584,0.078941,-0.32401,0.73829,-1.2648,0.6724,1.0709 -3.7181,-0.85626,0.48026,-0.67449,0.52711,-1.2604,0.63786,0.64443,1.5011,-0.28985,0.84494,-1.0954,-0.75363,-0.41879,0.25551 -0.4751,0.7813,1.2869,2.0767,1.5461,0.5773,-1.426,1.6206,2.0789,-0.24434,0.059715,0.64399,-1.0314,0.96323,1.0537 1.0034,1.0356,2.7123,0.31871,0.27479,1.1688,-1.0565,0.8818,1.8584,0.40403,-0.86538,0.94439,0.48445,-0.95009,0.98299 3.6838,-0.88597,1.8813,0.56693,2.8132,0.04669,-0.19234,-3.17,-0.70544,-1.1538,-0.52823,0.23964,-0.36826,0.38886,-0.96015 1.4363,2.1677,-2.1164,-3.439,0.9607,0.71842,1.4025,1.7636,-1.3483,0.065689,0.44765,-1.5405,-1.6283,-0.67733,0.74284 2.8374,0.1822,1.0124,-1.1387,2.2588,-0.56617,-1.5419,0.25612,2.1429,0.64841,-0.23528,0.065737,0.5414,0.22942,0.36111 -2.4772,2.2708,-0.52979,0.92496,-0.62164,-0.15417,0.52768,1.5978,0.52589,0.078395,0.19822,0.8947,-0.17623,-0.68432,0.50691 1.5048,0.60723,3.952,-0.45517,1.3382,1.1428,-2.1007,2.263,0.72516,1.0585,-0.54348,0.60325,-0.26394,1.312,0.77825 -0.42525,3.4103,2.9489,-0.47069,2.3447,-1.7943,-1.3681,0.48171,-0.069805,-0.36097,0.18123,0.38199,-0.45242,-0.055846,-0.18224 3.1834,0.67409,2.1664,0.14384,0.89749,1.6554,0.59024,1.3927,1.1703,-0.29857,-1.3666,1.0829,1.3296,1.5067,-0.71616 -0.19416,0.71365,1.9252,1.5945,0.23781,1.5897,0.091134,0.74874,1.9473,1.068,0.73389,0.29869,0.2288,1.0643,0.83722 -2.5698,1.6151,0.079002,0.18623,-0.75273,1.3557,1.2159,-0.74268,0.61847,1.0583,1.2837,0.020887,-0.057099,0.62079,-0.70539 -1.3459,2.3871,1.0751,0.97797,0.20911,0.34215,0.13891,0.80028,1.2199,-1.4386,0.77093,0.46661,0.80044,-0.745,1.0929 -1.4558,3.2123,-0.09009,0.19386,-0.64692,1.9326,0.72236,0.046107,-1.0172,-0.086703,-1.3404,0.8248,0.51293,-0.68738,0.55858 1.2524,3.6205,-1.2147,-1.6943,0.43861,0.64905,-1.0911,-0.34634,-0.26811,1.9839,0.13808,-1.0548,0.44141,-0.55787,-0.012018 2.3368,2.451,-1.1466,-0.64952,1.583,-0.18861,-0.24069,-1.0656,0.80653,2.7952,0.29291,-0.41829,0.191,-0.82385,0.059662 0.74322,3.3295,1.1225,-0.92726,-0.86828,0.27904,-0.48986,1.1407,-0.58495,-0.057865,-0.85465,0.18206,-1.263,-0.84657,-0.57772 -1.9322,2.2194,1.7666,-0.1771,0.017411,0.074754,0.26311,0.89642,1.1533,-0.39746,0.23328,0.654,0.60321,-0.68823,1.2031 -2.2751,0.67441,1.2168,-1.1135,-0.42332,1.6394,0.26116,0.85325,1.0906,-0.21482,0.5373,-1.1293,1.2902,-0.83497,0.99056 3.2455,-0.73866,-2.3146,-1.6741,0.12821,1.3091,1.6072,1.1882,1.8366,1.462,0.93474,1.5368,-0.85388,0.32231,0.061097 2.899,0.89748,-0.56087,-0.72154,-0.18643,-0.91327,-0.98805,-1.5173,1.5393,-0.2108,0.17618,-0.26365,-0.43512,-1.465,-0.83768 -3.071,2.4557,-0.021916,-0.55071,0.30814,2.4807,0.95972,0.37141,-1.7308,0.56091,0.98976,-1.2231,-0.060531,-0.59868,-1.0623 -3.6843,0.30083,-1.6747,-0.77152,-0.28813,-0.74001,0.84183,1.0184,0.64005,-0.088015,-0.069963,-1.833,0.10059,0.30586,-0.42079 -2.9438,-0.75218,-0.46184,-1.0783,-0.41922,1.6432,-0.15919,-2.1286,0.76808,-0.61171,0.43324,-0.097362,0.88666,0.82191,-0.26304 -3.7847,-0.055983,-1.9608,-0.96168,-0.30323,-0.18161,1.2399,-0.19677,0.87846,-1.3971,0.09338,-0.90579,0.052314,0.72693,-0.99687 -3.1948,1.2753,1.5634,-0.058836,-0.10934,-0.45252,1.0553,0.70215,1.1857,-0.89345,0.89631,-0.23635,0.31655,-0.60748,0.74834 5.1396,-1.0156,-0.47708,-2.0454,4.4469,2.8396,2.4308,1.511,-2.4652,0.26987,0.38697,0.21582,1.3661,0.2751,-0.053328 3.0228,2.7357,0.81454,-0.88802,2.3664,-1.5622,-0.97908,-0.41916,-1.097,1.684,-0.080853,-1.4762,-0.89542,-1.697,-0.050838 1.2813,-2.3384,0.37345,0.4987,3.9309,-0.78521,-1.8496,1.0086,-1.2943,-2.3738,0.76119,1.0536,0.70646,1.1019,0.15633 2.5393,0.015342,-1.0236,-1.2135,1.5171,-1.292,0.94416,-0.13674,1.3451,1.1283,0.65385,0.95977,0.65236,-2.8033,0.59958 0.75111,3.5817,0.93521,0.67304,1.0324,-0.52313,-1.3856,-0.26984,-1.458,2.1316,-0.84777,-0.29695,-1.3859,-0.59874,-0.31374 -2.0758,1.2875,-0.34776,1.9726,1.1584,0.37767,1.2046,0.33949,0.35609,-0.43951,0.13583,-0.33587,-0.57462,-1.2317,1.3715 -0.1622,2.9164,-1.004,1.6042,-1.0085,1.4072,-0.65387,0.29437,-0.58427,1.3523,-0.85275,0.62377,-0.25933,0.31748,0.16564 0.74319,3.0296,0.34553,-1.29,-0.56921,1.4462,-0.29448,0.8766,-0.96825,-0.37125,0.59747,0.45086,0.47839,-0.65607,1.0599 3.6521,0.97779,0.82574,-0.4082,1.0956,-0.72829,-0.64458,-2.6705,0.67892,-0.32396,0.20663,-1.0279,-1.741,1.1811,0.12855 -0.028749,0.93223,1.6481,0.58414,-0.94385,0.45118,-0.8552,0.62029,2.3323,-1.0017,-0.78843,0.71959,0.88086,-0.44206,1.5028 -1.7929,2.927,0.55043,0.89117,-0.47555,0.78598,0.85138,0.058307,-0.68303,2.202,-0.0074711,1.4274,-1.1796,-0.26996,0.18777 2.3162,0.83176,-1.3891,0.54932,-0.022471,1.8536,-0.39276,-2.6011,0.28669,-1.1247,-0.13293,-1.1527,0.12067,-0.11423,-0.15195 -1.3227,0.5468,-2.0593,1.7051,0.361,1.3169,0.81062,1.3223,1.4025,-0.36636,0.18094,-1.5762,-0.11711,-1.2281,0.8908 3.7266,1.039,1.3393,-1.0251,1.1114,0.12344,-1.7141,-0.91388,1.9584,0.14576,-0.84594,-0.76766,-1.4983,2.9487e-05,-0.3829 -1.5457,0.7372,-0.47958,1.4753,0.30793,0.96571,0.46542,1.7655,2.1231,-0.50159,0.35536,-0.69255,-1.0601,-0.8368,0.97116 3.0986,-0.45123,-1.0562,-1.5451,1.6087,3.1677,0.28517,0.11728,0.039044,-1.4246,-0.70175,0.81982,0.46043,0.57922,-0.051866 1.5028,0.59185,0.051054,1.8532,-0.94589,2.5419,0.31179,-1.3149,-0.18394,-1.4977,-1.0143,0.38541,-0.039256,0.61046,0.2066 2.0668,0.8063,-2.423,-0.39233,0.3702,0.5631,1.0551,-0.72793,2.1084,1.0353,0.1511,0.53453,-0.22541,-1.1346,0.26235 4.7145,-1.6541,-1.0196,-1.265,0.56927,0.66344,1.7192,-0.48976,0.97513,1.2862,0.99998,1.7062,-0.56158,0.88182,-0.40855 -2.1501,0.48397,-0.23816,1.0232,0.12862,0.9879,0.42185,0.27698,2.2805,0.78835,0.88439,-0.72245,0.19612,-1.1359,-0.0061087 0.03359,3.7011,-1.8548,0.92895,-0.53074,2.107,-0.26234,-0.52708,-1.3681,-0.1984,-0.70371,0.054231,-0.23443,0.22596,-1.0758 -1.9074,1.6909,-1.4882,1.4174,-0.045751,0.90739,0.90432,0.92229,0.98663,1.4835,0.17184,0.45071,-0.77469,-0.67325,0.3417 1.0028,-1.4607,1.0294,1.907,1.1361,2.3397,0.7556,0.77294,1.0456,-1.1838,-1.2787,0.40793,1.4954,-0.63839,1.2577 -4.804,-0.0052165,-0.50266,-2.1067,1.9754,-1.4833,0.67883,0.32467,-0.42518,-0.80028,-0.32681,-1.0936,-0.23165,0.55321,-0.29213 0.70939,0.53018,1.3115,1.7648,0.40613,2.012,-0.026941,-0.31504,1.6629,0.46231,0.13049,0.8294,-0.49418,0.61276,1.096 -1.2903,1.255,0.18906,-1.4245,1.9905,2.0567,0.17712,0.019855,-0.96797,-1.7398,0.89357,-0.18004,-0.39372,0.9534,-0.65874 -1.6576,0.072164,1.79,-0.45949,-0.30525,0.23393,1.2499,-0.042118,2.0449,-0.39753,-0.12705,0.0010913,1.102,-2.1185,0.2835 -2.9827,2.6101,-0.65866,0.2722,-0.028053,2.4524,1.6028,0.89784,-1.614,0.94478,0.23873,0.85811,-0.50474,-0.76996,-0.55394 2.4555,0.77273,2.4064,1.6072,1.7197,1.6108,-0.58015,-1.459,-0.09219,-0.2055,-1.2505,0.082042,-1.2587,-0.5997,0.8143 -1.4912,3.2927,1.1721,-0.13475,-0.70615,2.0551,0.86785,-0.62253,-1.365,-0.35387,0.027991,0.72557,-0.70391,-0.6217,0.37962 -0.61217,3.6154,-0.40436,0.4895,-0.64089,1.8062,-0.26369,0.48434,-2.4345,-0.28729,-1.0123,-0.10895,-0.91208,-1.0765,-0.14109 2.5531,-0.47621,-3.2123,-2.4981,-0.48889,0.32847,1.8685,1.673,-0.16899,-1.8291,1.9635,0.20969,-0.22634,-0.36533,1.8629 0.69442,-2.0572,3.2863,1.3748,1.8049,0.88732,-1.1713,1.0399,-1.2443,1.2767,0.7068,-0.28522,-0.52158,0.90505,-0.43108 -0.98529,2.285,-0.5458,2.128,0.43143,0.78034,0.57383,-0.76711,0.246,0.43596,-0.62005,1.1843,0.0094194,-0.4036,0.73381 -1.0757,3.2199,1.7296,-0.56863,-1.6752,0.75814,0.5514,-0.44782,-2.4783,-0.27501,0.20521,-0.19123,-1.2995,-0.86082,0.62485 -3.0841,1.0914,1.9235,0.31623,1.1598,-2.1185,1.5244,1.8139,0.35425,-0.30587,0.3496,-0.3528,-0.37474,-1.2626,0.95435 -1.6393,2.4491,1.7756,0.45412,-0.5941,0.77573,-0.45946,0.5835,-0.82635,1.5051,0.31878,0.74738,-1.5293,-0.31715,0.52437 0.73469,2.7555,0.5839,0.95417,-0.63566,-0.63132,-0.56892,-0.48401,0.71256,1.0204,-1.2952,1.2823,0.72457,-0.80086,-0.189 -2.0947,2.0671,-0.46823,0.48595,-1.1264,2.4754,0.74576,-0.11707,-0.14794,-0.57857,1.1084,0.13747,0.63776,-0.50005,0.062739 3.5778,0.88165,-0.88419,-2.5643,1.7579,-0.89625,1.3053,-1.3069,0.92618,1.7412,1.5815,0.28184,-1.7524,-0.063698,1.7395 2.6544,-0.69229,0.54463,-0.37543,-0.074882,1.5395,0.75317,0.76548,-1.1713,0.27853,0.02744,0.50058,-0.66227,2.1159,1.0582 1.6354,3.7744,0.1931,-1.4555,0.22357,0.091566,-1.5776,-1.6405,-0.1233,0.44519,0.28591,-0.44899,0.2923,-0.031253,-0.77791 0.82446,3.215,1.5994,0.33898,0.30043,0.30627,-2.0368,-0.98779,0.62025,-0.070981,0.50094,0.61697,-0.53265,0.83568,-0.55447 -3.2417,0.51224,-2.5093,-0.67207,0.27106,-0.055523,0.62643,-0.50258,0.41881,-0.10238,-0.22598,-0.74825,1.023,-0.55866,0.028205 -1.5935,4.0504,1.4413,0.094642,0.24135,1.0929,-0.21626,0.091449,-1.0599,-0.50601,0.52666,1.3433,-0.43391,0.53062,-0.23892 -2.3401,2.4324,1.6411,0.78376,0.31656,0.39287,0.93794,0.32199,-0.47355,2.2467,0.59141,0.46708,-1.5056,-0.60961,0.16408 -1.3161,3.3036,-0.82072,-0.0010607,-0.30398,1.2578,-0.82474,0.5259,-0.93648,0.038448,0.13595,0.38274,0.43974,1.1201,-1.1474 -4.1985,0.3531,1.1937,-1.5493,1.0755,1.3203,1.0703,-0.91678,-0.26949,-1.1428,1.1868,-0.3004,-0.17822,-0.020086,-0.59769 -0.35653,2.4856,-1.5366,0.33244,0.016375,0.082897,-1.8588,0.85222,1.6028,0.35482,0.17211,0.70834,0.49913,-0.15893,-1.0102 -4.4246,0.064519,-1.0236,-1.3626,1.8603,-0.84133,1.072,-0.0022021,0.44854,-0.31421,0.04472,-0.64435,-1.0504,0.52894,-1.0719 -3.6102,1.8221,0.98864,-0.065829,1.2358,0.49191,1.0299,1.191,0.018196,1.9073,0.72492,-0.71304,-0.84554,0.29634,-0.84793 -3.7515,1.781,0.36871,-0.69367,0.73554,-0.26662,0.79539,1.7675,0.27064,0.22209,0.77779,-1.0754,-0.16283,-0.92358,-0.25743 0.9045,3.2974,-0.99038,0.75234,-0.98038,0.42847,-0.9825,-0.54582,-0.11005,1.4853,-1.4158,-0.13606,-0.52115,0.82777,-0.64126 -1.8199,1.9436,1.0499,-1.0434,-1.0148,1.1876,1.7187,-1.1559,-0.15132,-0.42567,0.035263,0.45081,0.51167,-1.5937,0.84032 -2.4829,2.154,1.0229,0.37582,-0.75729,0.0065091,0.84482,0.54883,1.01,0.57491,0.77522,0.89331,0.54966,-0.85448,0.71492 0.26748,1.2344,2.3401,0.21789,-0.60101,0.39816,-0.27509,0.29239,2.1685,-0.94082,0.057667,1.4704,0.92593,-0.81269,0.81152 3.6252,0.10675,-1.728,-0.36823,0.42343,-0.027946,0.33109,-0.77355,1.4686,-0.38053,0.73941,-1.3057,-1.5257,-1.1378,-0.38837 1.9488,1.4461,0.36682,0.54502,0.7752,0.19312,-0.94387,-1.5136,1.6478,-0.35898,-0.73367,0.8438,1.6507,-0.037,-1.8801 -2.3831,-0.81293,0.43296,-2.028,0.058672,0.027489,-0.53001,-1.4556,0.42677,1.6634,-0.59143,-0.38191,0.37585,-1.4949,0.2827 -0.51786,-0.12918,2.8267,-0.8573,-1.1019,1.361,0.49513,0.11367,1.4627,-0.56555,0.10157,0.36409,1.2734,-1.6919,0.439 -0.53307,-3.2624,2.5179,-0.4,0.51116,0.78658,0.20894,2.1878,1.6155,0.12669,-1.1433,-1.1178,1.5911,0.057611,-1.2775 3.0494,1.6788,-1.2717,-0.96686,0.016392,-0.18425,-0.36432,-1.755,1.7975,0.6763,0.30808,-0.55717,-0.9597,0.47057,-0.92605 -0.20139,-1.6247,2.6462,1.4522,0.19585,0.78897,0.022602,1.4023,1.6323,-1.4157,0.1808,0.75835,1.224,-0.22082,-0.1916 1.1499,0.63109,2.7295,-0.14687,-0.41786,0.73266,-0.64718,0.86313,0.97709,-0.7916,-0.36706,1.6894,1.201,-2.0418,0.047861 0.66616,1.1045,0.3314,3.0416,-0.61775,1.0265,-0.058463,-0.95739,-0.045385,0.11164,0.053632,0.44278,-0.013114,0.36466,0.76692 0.13832,3.1276,1.5795,-0.36466,-1.2665,0.92861,-0.7271,-1.0361,-0.49389,-1.6015,0.36545,1.1274,0.30285,0.3576,0.72201 -4.1272,-1.2031,0.34748,-1.4894,1.8662,-2.137,-0.64261,-0.22822,0.44455,-0.94617,-0.46933,-0.2405,-0.81474,0.93665,0.30035 -1.8532,-0.14095,-0.51536,1.6367,0.77218,1.0563,1.1873,0.87497,1.1655,-0.29156,0.055637,-1.4557,-0.48833,-0.048093,0.8577 0.48051,2.0602,0.93744,0.62937,-0.32323,0.090685,0.18638,-0.53289,1.351,0.71389,-1.7375,1.4305,-1.9577,-1.0043,0.20679 0.42173,2.0779,0.21986,0.75072,-1.111,0.32173,-0.49477,-0.072108,0.7147,0.78237,-0.99585,1.1475,-2.0255,-1.0202,-0.21353 2.6788,1.8306,1.7075,-0.32739,1.2334,-0.72708,-1.2191,-2.2296,0.95857,0.035806,-0.31616,-0.15257,-1.1918,0.33798,-0.28787 1.9802,0.53896,1.1324,-0.81105,1.665,0.052806,0.80239,1.5811,0.53562,-0.18245,-0.18489,1.0753,-0.89997,-1.1806,-0.19133 0.96432,2.9822,-0.36138,1.7494,0.61567,1.1709,-0.3507,-1.2054,-0.89486,1.052,-1.7012,0.1015,-0.19301,-0.83552,-0.4778 0.43563,2.4276,1.3182,1.1248,1.1921,-1.8395,-1.3155,-0.47783,1.0839,0.39795,-1.5591,0.36886,0.32253,-0.90763,-0.083128 5.7038,-1.9799,-0.63828,-2.8073,3.3646,0.44755,2.4332,0.95226,0.29052,0.32522,1.0241,2.6378,-1.2383,1.3394,-0.88608 0.32488,1.9127,-0.1886,0.76386,2.6666,-2.0229,-1.4516,0.41521,1.0159,1.2277,0.8345,-0.28589,0.039982,-1.7198,-0.062411 2.1239,0.14495,-1.2013,-3.515,1.3978,0.41338,2.1656,1.6084,-0.5601,0.063885,1.0845,2.1821,1.613,-1.0334,0.96414 3.6883,-1.2256,0.91966,0.45123,2.1025,1.7573,-0.49632,-2.4416,0.37372,-1.4814,-0.41624,-0.66471,0.29091,0.29542,-0.55581 -1.4639,2.6012,0.2006,0.23517,-0.48032,-0.90641,-0.62112,0.82853,-0.43319,1.5629,-0.2279,1.4547,-0.42454,-1.4488,0.44547 2.2825,-0.353,-3.9723,0.015185,-0.17329,3.341,2.0374,0.28265,-0.5378,-0.38989,0.51013,0.68286,0.4958,1.3897,-0.38828 3.1771,3.0256,1.0529,-2.2487,-0.029042,0.26518,-0.42275,0.28639,-1.1806,-1.6002,-0.54974,-0.69123,-1.1958,-1.527,-0.74999 -0.50171,2.7734,0.34985,0.33933,1.7508,-1.6015,-1.7618,0.57534,0.85645,1.3385,-0.29228,0.27608,0.37575,-1.2464,-0.3295 2.6701,2.8435,1.2017,-0.44227,2.0611,-1.1889,-0.78827,-2.0743,-0.09298,1.0982,-0.43182,-0.41245,-1.9077,-0.40673,-0.15477 -0.27762,3.038,0.36932,0.80083,1.0405,-0.87055,-1.8358,1.0529,0.8711,1.5044,-0.94593,0.77663,0.42443,-0.92901,-0.31838 -0.2229,3.893,0.32084,0.04796,-0.51851,0.69062,-0.75822,0.2048,-0.66164,0.44016,-1.0753,0.66176,1.2894,-0.21902,0.014932 2.4519,-0.87208,-1.2548,-0.18328,1.8653,0.8591,1.0975,0.45303,0.41058,2.2098,0.14362,0.66883,-0.83442,-1.4234,0.44501 3.341,0.77492,-1.0003,-1.7361,1.5575,-0.79761,-0.12746,0.13037,1.1214,1.4725,0.39797,-0.14396,-1.6931,-1.8809,-1.2127 0.57545,2.6695,-1.0858,-0.97085,-0.2392,-0.59113,-1.0579,-0.057614,0.64494,1.6838,-0.71819,0.31333,-0.067297,-1.8621,-0.88497 -3.2733,-0.52809,-0.58732,-0.34846,-0.26731,0.30967,0.29553,-0.057331,2.0523,-0.45243,0.64304,-0.59377,0.25868,1.0714,-0.73536 3.3582,1.9794,-1.502,0.48208,1.2887,0.1988,-0.11873,-0.83546,0.4196,1.2969,-0.79347,-0.39821,-1.5569,-0.8043,-2.4465 2.2625,2.9141,1.8861,-1.0226,1.1639,-0.4821,-1.8353,-0.56001,0.33525,0.73904,0.65487,0.50457,-0.026254,-0.39532,-0.43574 1.0838,1.6369,2.2786,-1.6782,0.48113,-0.35952,-1.5203,-0.68566,0.73659,-0.69448,-0.35471,-0.13282,0.43486,-0.27152,-0.48614 3.171,-1.1346,-2.6294,-0.3241,0.63882,0.95592,1.8041,0.40776,1.2189,0.14923,1.6417,0.57482,-1.0813,-0.28977,1.013 0.25585,1.5178,0.46113,2.0853,1.3007,0.44634,0.27836,-0.99862,0.91421,-0.03494,-1.7974,1.6559,0.41806,-1.4232,-0.046619 -2.995,0.98184,-0.04731,0.075779,0.56069,-0.091016,0.57794,1.6899,0.99877,1.031,1.0449,-0.64868,-1.1568,-0.95906,-0.46097 2.358,0.77151,-3.1973,-1.0444,-1.5131,-0.44041,0.47598,0.30208,1.6252,-0.2412,1.3317,-0.070451,-0.27772,-0.0231,-0.39496 1.8673,2.703,0.65313,0.29434,1.2119,-0.98694,-1.4244,-1.0903,0.28165,1.7694,-0.97909,-0.58502,-0.61761,-1.3963,-0.50025 3.5662,1.7927,-0.89411,-0.26243,0.70223,1.1611,-0.26138,-1.6035,1.5359,-0.29594,-0.52004,-0.32232,-1.0164,-0.078789,-2.1904 2.363,-0.10438,0.32638,0.59042,2.2477,0.38026,-1.442,-1.4282,1.9727,-0.21999,0.26777,-0.31659,0.87495,-0.97955,0.61321 1.3726,2.0858,0.81177,-1.1092,2.002,-0.20817,-2.061,-0.53213,1.7818,-0.92306,0.73898,-0.09648,2.0598,-0.57796,-0.36605 4.1812,-0.18953,-1.2131,-0.66481,2.1071,1.4784,1.0641,-1.6496,0.40557,-1.811,0.69849,0.080057,-1.954,0.19612,-1.2046 -4.3124,-1.0038,-0.3233,-1.9506,1.5014,1.2419,-0.29839,-1.3153,-0.67875,-0.57458,-0.22986,0.16246,0.53249,0.73948,0.001198 -2.5145,-0.59332,-1.8053,0.90327,1.2851,-1.3898,1.2132,1.2601,-0.43222,0.39732,0.30249,-0.84896,-1.2802,-1.6427,0.472 0.46964,3.4314,-0.89079,-0.39428,1.2176,0.058721,-1.4774,-0.044007,0.37851,1.4404,0.63902,-0.49919,1.3644,-0.47261,-0.58353 -3.0265,1.0237,-0.10437,0.81563,-0.70065,-0.11458,0.92556,1.0928,1.1898,-0.88108,0.3845,1.1209,-0.41307,0.84358,-0.11217 1.7324,2.7199,-0.45101,-0.54283,0.13212,-0.12343,-0.92522,-1.0588,1.5359,0.76507,-1.1716,0.33854,0.50599,-1.4767,-1.4761 4.3643,-0.35012,-0.65096,-0.65974,2.842,2.0098,0.6634,-2.0675,-0.11478,-0.66373,0.1919,0.075572,-0.88542,-0.22294,-0.78269 1.5215,0.30107,-0.19823,0.90277,2.0317,1.0263,-1.3009,-2.5545,1.4294,0.34497,1.2483,-0.077499,0.22197,-0.0030951,0.65468 1.3915,0.62568,0.22315,1.8827,2.8682,0.37625,-1.6591,-0.8468,0.84307,-0.49045,-0.37142,-0.89809,0.84959,-0.91121,1.0003 -0.22579,3.5864,1.43,-0.10798,0.92555,-0.08008,-1.962,-0.37057,0.60125,-0.29188,0.25768,1.1289,0.56521,-0.024308,-0.55774 1.7681,0.56608,0.21799,1.1936,2.8708,0.28212,-0.57728,-2.6067,0.72886,-0.59904,-0.049683,0.20032,1.4038,-0.27512,-0.40169 -3.6416,-1.252,-0.14426,-0.64424,-0.43204,-0.22178,0.32993,-0.29572,1.76,-0.73707,0.8006,-0.44497,-0.28482,0.59111,-0.6937 4.2593,-0.0046774,-0.73776,-2.4154,1.4516,-0.52662,1.3132,-0.10637,0.33599,0.81726,0.91983,0.90288,-0.2954,-2.7885,-0.42261 -2.8675,0.42242,0.37458,-1.049,-0.087578,1.9231,0.97678,-1.5453,-0.048721,-1.1501,1.3924,-0.89834,0.94354,0.29777,-0.41291 -3.2704,0.13052,-1.7266,-0.61952,0.48443,1.1941,1.4776,-2.3826,-0.25561,-0.20827,0.065648,0.04924,-0.44475,0.42675,-1.8747 -1.8256,0.77152,1.1322,1.6159,0.29576,-0.47466,1.1747,0.61169,1.7938,-0.9269,0.64825,0.50528,-0.061696,-0.012328,0.25687 -2.9752,-1.4529,-2.3673,0.10691,0.58839,-1.0403,-0.18384,-1.0012,1.6291,-0.60863,-0.40938,0.076106,-0.95085,1.1021,-0.48385 -2.2433,-2.9383,-0.43389,0.3536,1.709,-0.026532,-0.30713,-0.57381,1.1275,0.39683,-0.55337,-0.81412,0.14974,0.9056,0.060163 -2.4059,1.4319,-0.0039508,-1.7298,-0.88512,0.9773,0.94625,-1.687,-0.50067,1.3249,0.48959,-0.50816,-0.0072214,-0.92314,-0.1777 0.46499,0.19838,2.9077,1.8109,1.1077,1.0378,0.92671,-0.54123,1.4809,-0.09418,-0.44539,0.1217,-0.19304,-1.0383,1.9106 -3.1876,1.1405,-1.6802,0.074351,-1.2634e-05,0.68265,2.4142,0.12989,-0.73605,-1.0333,0.7223,0.14152,0.63716,0.13615,-1.1793 -3.198,0.21251,0.54045,0.043957,0.19698,-0.86039,1.5956,-0.73054,1.506,1.0702,0.53214,0.40902,0.663,-0.16487,-0.43788 3.152,0.36795,0.68678,-1.8651,0.40759,0.75648,-1.4355,0.3322,2.2268,-1.1176,-0.68527,0.8341,1.1442,-0.073977,-1.6635 0.8818,0.72321,1.3578,0.4209,-0.62475,0.9124,-0.0058151,-0.23662,1.5049,-0.77746,-2.2253,2.0336,-0.57743,-1.2217,-1.1003 0.2434,2.8685,-0.36684,0.75032,3.0169,-0.86946,-1.9638,1.0902,0.16522,0.58162,0.74511,-0.2408,-0.15492,-0.60706,-1.1102 -3.7581,0.5799,-2.2374,-1.0102,-0.072921,-0.44092,1.6382,0.17714,0.41023,-0.87702,-0.12558,-0.68583,0.32486,0.26849,-1.0098 -1.8153,1.7163,2.1909,1.7832,1.1512,-0.44052,0.99734,-0.21906,0.51695,1.2083,0.60197,1.075,-0.77908,0.46373,0.3673 -2.8391,-1.1057,-2.5835,0.49444,0.33903,-0.80948,0.079689,-0.8265,1.2074,-0.13013,-0.21292,0.31554,-0.8588,1.2089,-1.0506 -0.57273,1.8655,-1.9915,2.1536,0.051762,1.9298,-0.73913,-0.69856,-0.64502,0.29786,-0.0018982,0.77029,-0.42032,0.12604,-0.38201 -2.967,-1.7941,-2.7433,-0.90347,-0.0035558,0.30607,-1.3026,0.11164,1.076,-0.97627,-1.2927,0.50654,-0.81832,1.1714,-0.089055 1.6092,-0.70739,1.6321,1.3206,0.34612,2.1143,-0.30085,1.4525,-0.78266,0.7812,-1.5067,0.27832,0.93824,-1.2331,-0.0923 0.71212,2.5184,-0.98127,1.6779,-0.15085,0.55689,-1.2392,-0.61618,0.76199,1.4009,-1.0595,0.37561,0.47922,-0.50554,-0.59523 0.40605,3.1927,0.57207,-0.062998,-0.47321,0.17444,-1.1306,0.059509,0.60281,0.64065,-1.3525,0.66049,0.53427,-1.077,-0.29479 -4.6052,-0.052298,-1.7443,-1.8581,1.8602,-0.13279,0.58011,-0.62113,-0.23403,-0.73861,-0.080137,0.12736,-0.45831,0.35889,-0.88386 -1.6316,1.5501,1.994,-0.28849,-1.8251,0.76071,1.1015,-1.1776,0.4291,0.047279,0.12575,0.70465,0.43366,0.26508,0.50038 2.8222,1.4923,1.8108,0.68189,0.2249,0.55242,-0.61971,-1.0019,1.1091,-0.3502,-1.0095,0.76454,-0.2384,1.2065,0.046174 0.51158,3.4989,-0.7988,-0.23416,-0.60216,0.36318,-1.5314,0.10518,0.16163,1.2867,-1.2674,0.38042,0.7614,-1.1113,-0.5623 2.0037,0.717,2.097,-0.29542,-0.43798,0.40494,-1.1207,0.52934,2.1598,-1.4126,-1.4461,0.99728,0.53244,-0.32002,-0.050974 -2.7016,1.4093,-0.41605,-0.58214,0.58673,0.15709,0.85108,0.87507,0.66372,-1.434,0.23426,-0.32099,-0.22134,0.98225,-0.99308 -2.1908,0.094721,0.91275,-1.8084,-1.3372,0.1514,1.4199,-2.7051,0.26004,0.19329,0.019745,-0.1017,0.36542,0.24566,-0.8089 -1.7726,-2.33,-0.21972,0.7113,0.5587,-0.19572,0.30482,-1.2024,2.0036,0.30648,-1.0437,-0.71271,0.91317,-0.45072,-0.50743 1.0995,-1.0855,2.4053,1.9601,0.3644,2.9122,1.1761,-0.97823,-0.54249,-0.96633,-0.53046,0.19474,0.17428,0.53794,-0.21608 -0.44121,-1.2498,2.9933,-0.31579,-0.22612,1.2173,1.6397,-1.8858,1.5233,0.74975,-0.55735,0.43527,-0.58286,-0.43102,-0.73336 2.2752,2.63,-1.9248,-1.3718,1.149,1.2674,-1.5313,0.16927,-0.52321,-0.83423,1.3326,-1.792,-0.2683,-1.1641,0.13815 2.0464,1.6366,-2.267,-2.5576,-0.76304,1.0289,0.459,-0.021592,0.71327,0.48353,0.83851,0.13927,0.16297,-1.0683,0.88316 0.11275,1.0851,3.0428,-0.87845,-1.5039,0.44436,1.3692,-0.53373,0.70498,-0.41884,-1.2768,1.0442,-0.58982,-0.27394,-0.6891 0.30358,-2.3179,1.9703,0.63748,-0.51032,2.8656,1.7686,-1.764,0.13773,0.45638,-1.0127,-1.2405,-0.42566,0.6123,-0.14759 -1.4026,3.0245,-0.071091,1.1511,-0.81223,1.014,0.26654,-0.04776,-0.060172,0.70481,0.081993,1.7383,-0.62904,0.38108,-0.10582 2.3814,0.85225,-1.408,-0.13978,1.8024,1.1326,1.0927,-2.3165,-0.38304,-1.7261,-0.97772,-0.9445,0.15909,-0.16859,-1.4556 0.43047,0.41753,1.2401,1.5289,0.77451,2.1545,-0.66348,-1.3007,0.28825,-2.1396,-0.34672,0.9972,1.6071,-0.12792,0.351 0.27082,0.24729,-0.48754,2.2007,1.1203,1.7311,-0.80257,-1.8564,0.51104,-1.7788,-0.27398,0.033052,0.8719,-0.1514,0.49067 -2.0654,2.4309,-1.2884,0.085889,-0.67759,2.3908,-0.13956,1.5269,-0.70036,0.21765,0.34453,0.30829,-0.01942,0.35485,-0.90905 -3.2554,-0.57247,2.9891,-1.6245,0.32613,-0.44027,0.56144,-0.65027,0.95333,0.46302,0.42701,-0.29388,0.082576,-0.63808,0.53277 4.5033,-0.45661,-0.1124,-2.4751,2.9904,-0.73879,0.83572,0.37347,0.85766,0.53898,1.0551,1.3452,0.01231,-2.1361,-1.0613 -3.2385,2.0553,2.4266,-1.5988,0.77951,-0.17629,1.6923,-0.87058,-0.21191,1.1134,0.23871,-0.050885,0.015553,0.012547,0.28412 -2.0039,2.2564,1.3076,1.0587,0.050364,-0.78427,0.003475,0.14278,0.49462,-0.24719,-0.013074,2.309,-0.85279,-0.14346,0.14971 -3.959,1.2648,1.7861,-1.4767,0.74317,-0.88905,1.4198,-0.097005,-0.22202,0.70655,0.24877,-0.27067,0.27971,-1.3176,0.70906 -0.3559,2.3623,1.6673,1.8013,2.5558,-2.0336,-1.2338,0.6577,1.0784,-0.78356,-0.26615,0.1959,-0.66352,0.37897,0.24274 -2.3396,2.3145,-1.0518,0.34448,0.30702,1.5935,0.69255,0.21246,-0.98045,-1.3753,0.095435,0.30972,0.1171,0.45031,-0.84324 -2.2249,1.5527,-2.7692,0.75788,-0.53317,0.9911,1.2009,2.054,0.15958,0.69395,-0.71665,-0.02554,-0.24203,-0.57036,0.42434 -0.95624,3.3904,2.2234,0.24465,1.7914,-1.2658,-1.086,1.2162,0.38916,-0.88557,0.65096,0.97436,-0.30539,1.0216,-0.17261 -2.9441,2.2547,2.902,-0.76023,0.52846,-0.1723,0.96411,-0.20035,-0.41934,0.48276,0.58633,0.41,-0.36012,-0.3192,0.11464 2.9496,1.3188,3.2831,-1.4056,1.4132,-0.77101,-1.4718,0.40462,1.5524,-0.58203,-0.93276,0.93942,0.12328,-0.68328,0.079345 -2.6185,3.5578,1.5827,-0.24301,0.62299,1.4892,1.4498,0.231,-1.5869,-0.35481,0.085825,0.40842,0.43528,0.48494,0.076381 -4.8095,0.7545,0.38357,-1.4265,1.3928,-0.85044,1.6025,-0.15215,-0.22384,0.054219,0.34252,-0.16033,0.37561,0.16952,-0.29547 0.4939,1.3568,4.435,0.012543,1.696,-0.92249,-0.53918,0.12135,0.84312,-0.54519,0.24409,0.88871,-0.49694,0.51304,0.32447 -0.28465,-3.6778,1.5517,-2.5829,1.3048,-0.056776,-1.1958,0.66695,-0.28745,1.2589,-3.1131,0.68017,-0.26532,1.3373,0.84944 1.1987,2.7684,0.1596,-0.35968,-0.57687,1.2194,-0.97394,0.12021,0.75389,-0.6965,-0.8949,0.85716,1.4161,-0.79978,-0.29258 1.2127,0.81761,3.0457,0.45026,1.5104,-1.4957,-1.6329,1.1889,1.5617,-1.5109,-0.53166,0.72388,0.92178,-1.0164,0.18676 -1.8852,2.1692,-0.3773,0.78697,-1.3381,0.13143,1.0966,-0.28777,-0.74393,2.1316,0.56612,0.91115,-0.036584,0.43167,-0.22996 -3.0567,-0.77607,3.2489,-2.0817,1.961,-1.2212,0.24756,-0.57378,-0.078309,0.073606,-0.02178,-0.69795,-0.59739,0.64427,0.55295 -2.5071,3.4681,2.4369,-0.87855,0.98307,0.69267,0.97387,0.2919,-1.0808,-1.2801,0.48541,-0.038954,0.43539,-0.1474,0.21641 2.246,0.013267,1.7168,1.1888,-0.017711,2.9174,0.24631,-1.4603,-0.65507,-2.2054,-1.0069,0.77378,0.25026,0.96497,0.35787 -4.2029,2.317,1.1783,-0.92592,1.0746,0.48523,1.9262,0.049064,-0.96334,-0.15454,0.49601,0.036287,0.54858,0.21377,-0.22675 -2.0344,1.6465,3.1091,0.24412,0.64936,0.010634,-0.38945,1.8246,-0.17217,0.45065,-0.62741,0.61638,-0.40375,-0.084329,0.79415 -2.7734,1.6858,-0.22023,-1.4303,-0.88221,0.68253,1.9445,-1.7129,-1.1097,0.54079,0.40447,-0.57403,0.58538,-0.92093,-0.15847 -2.2216,-0.96074,0.44818,1.6166,0.22738,-1.407,1.219,1.1968,0.98807,0.20748,-0.36403,-0.66664,-0.37316,-1.4012,0.72962 -4.2477,-0.47354,1.3705,-1.7423,1.0611,1.2957,0.51541,-1.006,-1.1976,-0.72683,-0.83765,-0.40516,0.036588,0.77757,-0.55193 0.68471,2.0563,-0.53987,-2.8206,0.58689,1.1153,-0.4098,-0.59389,-2.2445,-0.68653,1.7672,0.65577,-0.28251,1.5042,0.5613 -3.461,-1.0869,-3.0391,-1.2291,1.1439,-0.3685,-1.1752,-0.29293,-0.63203,-1.9885,-1.3433,0.79756,-0.55609,-0.50013,0.49798 5.1408,-1.0333,-0.97015,-0.66934,2.7966,-0.043493,1.4716,1.3338,0.059228,0.81007,0.27222,1.0402,-1.002,-0.58846,-1.0673 2.9285,-0.12869,3.748,-0.27711,1.6974,0.24537,-0.12559,0.95496,1.2995,-0.16573,-1.2343,1.0647,-0.37912,-0.14725,0.25071 0.87007,2.4883,1.9292,-1.8897,-0.46948,2.0487,1.2866,0.74627,-1.6269,-1.7977,0.49537,-1.3918,-1.8868,-0.16268,0.45935 -0.062484,3.8962,1.2297,-0.6245,0.36484,1.7015,1.0854,0.56044,-2.5986,-0.51256,-0.34385,-1.6822,-1.864,-0.78249,-0.14997 -1.8234,2.5613,2.795,-0.0031659,0.17496,-0.11642,0.59468,0.69919,0.49348,0.58544,-0.54261,0.53423,0.5462,0.43742,0.13808 -1.9569,1.8853,-0.33743,2.0042,0.39467,0.69518,0.96944,0.58285,0.6328,1.0374,0.19293,1.0112,-0.88539,-0.41592,0.24142 -1.8211,0.051789,-2.4987,1.0634,-0.54363,1.3814,1.2416,0.33694,1.4598,-0.63925,-0.34425,-1.136,-0.80116,0.15804,0.65867 -1.1763,2.601,-0.93661,1.9858,-0.71281,2.0087,-0.40781,0.65514,-1.0763,-0.77547,0.5314,-0.043686,-0.085716,0.0057122,-0.54556 -1.4509,1.1918,2.8665,-2.6132,-0.10968,1.3652,0.38007,-0.21997,-1.2505,-0.515,0.83565,-0.56044,0.092111,1.5368,-0.13078 -0.34888,-1.5637,4.4232,-1.0384,2.0797,-0.30949,1.117,-0.72037,0.34904,0.61026,0.041042,0.0023597,-0.41019,0.71448,-0.34251 -1.9954,-1.0898,2.5585,-2.8791,0.060955,1.7329,-0.83703,-0.64684,0.11137,-0.58655,0.21094,-0.50737,0.43548,2.4673,-0.090252 0.088328,1.8176,2.2824,2.3227,1.7628,0.23142,-0.44099,-0.55764,0.78893,0.22963,-0.097595,1.5765,-1.0132,-0.52757,0.7403 4.5589,-1.4599,0.028183,0.074595,3.1327,2.6987,0.54638,-1.1028,-0.98057,-0.59965,-1.2518,-0.23702,0.4577,1.5144,-1.047 -0.60087,3.0231,-0.14367,-0.75162,1.1976,-0.25394,-2.0835,2.4426,-0.57364,-1.4893,1.0854,0.060637,0.88498,-1.3249,0.7088 0.58592,-0.80847,4.0182,-1.3595,0.75007,0.36209,1.2994,1.1488,0.99254,0.99776,-0.83688,-0.4693,-0.92364,-0.15568,0.25905 -0.47637,1.8345,-2.4451,1.1021,1.0655,-0.3871,-1.2375,1.2074,1.8315,0.43844,-0.19694,-0.28865,-0.3665,-0.11929,-0.64511 -0.8612,-1.221,0.45779,0.32205,-1.0335,1.7953,0.02962,0.21208,2.2178,0.85643,-0.22843,-0.85069,1.6216,-0.03133,-0.18387 1.3931,1.7699,-2.7203,-1.154,-0.83527,0.97415,0.020872,-0.35714,1.3412,1.0269,0.38714,-0.33642,0.36825,-0.94418,0.53133 -0.068234,0.036176,-0.9554,-0.76169,-1.5045,2.5719,0.025399,0.59855,-0.6657,-1.574,-0.39388,-1.4899,0.098925,2.4104,0.12246 -0.69136,1.3213,3.132,-0.42349,-0.3142,-0.24364,0.70782,0.19973,0.90152,0.98264,0.47523,0.0085522,-0.8948,-0.46373,1.0447 4.4548,-1.9116,-1.6279,-0.88673,0.7431,1.6321,1.6654,0.15548,0.42812,1.4419,0.59655,0.12213,-2.2056,0.13426,1.8739 4.6491,-0.73303,-1.3656,-1.2463,1.3737,0.68075,0.74073,0.0020228,1.7131,0.022279,1.5068,-0.084553,-1.758,0.48352,-0.39698 2.6567,1.718,-2.8336,-3.4264,-0.60865,-0.98768,1.5244,0.63111,-0.022499,-0.54483,1.1047,-0.87899,0.61639,-0.52177,2.0429 4.1818,-1.0733,1.2123,0.36699,2.3739,1.7325,-0.39835,-0.35994,0.96908,-0.93043,-0.90518,0.80888,0.59204,0.69558,-1.7053 0.35491,-0.65002,4.1768,-0.48611,0.83973,-0.17049,1.4272,-0.58243,1.268,0.031975,-1.0172,0.27887,-0.80804,-0.18188,-0.21973 3.5719,1.1772,-0.12285,-0.599,1.465,-0.13193,-0.55591,-2.3173,0.34686,1.4456,1.3954,-1.4455,-1.5456,0.086565,1.0216 1.4548,2.0519,-0.42342,2.3577,-0.056191,0.93205,-0.21464,-1.6982,-0.33298,0.608,-1.3881,-0.017601,-0.23055,0.2296,-0.44628 0.098814,1.4971,-1.9878,0.28767,0.24394,-1.0323,-1.4311,0.76884,2.3541,0.0091015,0.40732,-0.3291,1.1133,-0.13521,-0.063222 -0.65878,2.7049,0.38517,1.2478,1.6096,-0.051734,-1.4734,2.4352,-0.10037,0.43575,0.6542,0.48066,-1.1763,0.42475,-0.46367 -3.0589,1.821,1.4008,-1.6457,0.57085,1.471,0.71545,0.39116,-1.9373,0.93797,1.3143,-1.103,-0.55352,-0.40061,-0.95731 -0.73554,-0.76025,3.427,0.2763,0.92723,0.81611,0.97696,-0.67667,2.096,1.3378,0.080478,-0.44519,-0.298,0.3525,0.67029 1.4133,2.8611,2.2403,-1.1209,-0.25787,0.35595,0.18386,0.13724,-0.54183,0.13416,0.62148,0.30389,-1.7735,1.307,0.91466 -2.8073,3.1637,-0.2088,0.10618,0.91609,0.31202,-0.90792,2.9524,-1.1042,-0.11284,-0.10804,0.27266,-0.91199,-0.61647,-0.84245 -2.7594,0.042789,-1.1376,-0.46426,-0.32553,2.1618,0.70028,0.19983,0.99838,-0.81359,1.3003,0.43697,0.71719,-0.078842,0.59785 -1.2417,3.4226,0.1225,0.085547,1.2504,-0.88098,-2.1256,2.883,-0.48287,-0.16406,0.2768,0.4382,-0.38022,-0.64775,-0.20708 -2.8014,0.74954,1.6336,-1.0713,0.74515,-0.62261,0.80848,-0.26722,1.4066,1.7364,0.24579,-0.58824,0.64761,-0.24889,0.15325 -2.9607,0.90727,-3.239,-0.81886,0.78476,1.2215,0.4467,-0.11664,-0.3999,0.23053,-0.00094585,0.81253,0.63177,0.35368,-1.1686 1.7346,2.6578,-0.71238,0.21108,-0.98663,-0.50172,-0.28275,-0.66477,0.25934,0.1129,-1.8863,0.2475,1.3005,-0.94073,-1.0572 0.90792,4.2055,1.3351,-1.4358,0.46061,-0.10256,-1.9197,0.22432,-1.4577,-0.050138,0.88424,0.58581,-0.42208,-0.26198,-0.086345 1.33,2.2976,-2.7224,-2.3843,0.022072,1.459,1.1045,1.0866,-1.1916,-0.098854,0.84136,-1.3728,-0.89598,-0.42882,1.2759 -0.55915,-1.225,2.7057,-0.0025961,1.8213,-0.042637,0.53266,-0.76959,1.6848,1.1181,-0.15011,-1.6802,-0.24103,-0.30827,0.81616 1.3012,2.9091,0.010433,0.8496,-0.08198,0.18481,-0.56831,-0.50509,0.22317,1.2312,-1.6443,0.74623,0.78375,-0.6919,-0.94095 -2.1101,2.145,1.3855,0.16722,0.38381,0.74578,0.81045,0.39039,0.43842,1.3864,1.3954,-0.0535,-0.64886,0.87366,-0.36428 -1.7369,2.2152,1.9272,-0.1462,-0.45204,-0.22442,-0.58951,1.8013,0.00044952,0.40244,0.27652,0.26481,0.50247,-1.697,1.2602 -2.43,3.3194,-0.20542,-0.18138,-0.69645,1.5724,0.88358,0.87696,-2.2216,0.88293,0.43093,1.3021,-0.42077,-0.68402,0.0083419 -0.58059,0.94177,3.6014,0.1692,0.64022,-1.0378,-0.40747,0.87754,1.8591,-0.53289,-0.14132,0.9181,-0.0059653,-1.2067,1.3436 -2.7387,0.4928,1.2584,-3.0215,0.71822,0.98519,1.3429,-1.5012,-0.80227,-0.39439,-0.62613,-1.2565,-0.14401,-1.6651,-0.078154 -1.4749,-0.58961,3.5659,-2.698,0.012785,-0.10333,1.559,-0.70357,0.44002,-0.85228,-1.2276,0.15732,0.12921,-0.43933,-1.1543 -0.83851,-2.3715,3.528,-0.29628,-0.25467,0.85367,0.85983,0.68754,1.7489,-0.0064899,-0.78721,0.38241,1.0757,-0.13877,-1.0768 -0.25385,3.7048,0.189,-0.25699,-1.0995,1.2569,1.027,0.64648,-2.6301,0.054053,-1.4929,-0.48488,-1.6572,0.19131,0.16462 2.4708,1.4823,-1.6701,-0.2277,-0.79516,0.040401,-0.34171,-1.9789,1.4762,0.37014,0.42912,-0.53515,-0.67767,-0.43683,-0.29013 -0.28561,-2.1717,4.1561,0.099136,1.1767,0.35118,0.94209,0.4205,1.5158,0.44695,-0.42136,-0.24581,0.53648,-0.72146,0.48122 -2.282,-2.6616,2.2759,-0.021178,0.82157,-1.1864,0.19197,0.98777,2.0037,-0.71013,-0.017381,-1.6308,0.0082829,0.26416,0.23405 1.6181,-1.7125,3.8289,0.19904,0.70161,2.0294,1.9518,-0.61863,1.3544,-0.46043,-1.3,0.41641,-0.63359,0.60282,-0.83819 -0.14823,-0.54908,3.2905,-0.93573,-0.31069,0.10576,2.0284,-1.822,1.7402,-0.051863,-0.74008,0.43257,-0.057586,-0.025322,-1.384 3.627,0.085296,-2.5014,-0.27041,0.93477,0.64591,0.86843,-1.0818,0.80739,-0.1719,0.51589,-0.32754,-2.0369,-0.42965,-0.73887 -0.87431,-2.274,2.1667,-0.90741,1.2484,-0.16513,1.4079,-1.5033,1.5852,0.67719,-1.7754,-0.55836,-0.16863,-1.5868,-0.27992 3.8919,0.41542,1.2832,0.33094,2.1081,1.8676,0.02941,-2.0476,-0.25853,-1.3853,-1.0613,-0.59401,-1.1823,0.10585,-0.30024 -0.33988,-3.1586,3.471,0.30301,1.3164,1.1436,1.7179,-0.23839,1.5327,-0.64169,-1.0738,-0.28034,0.64333,-0.58296,-0.82356 1.2606,2.317,0.81028,-1.8192,1.277,-1.2802,-1.0537,-1.1051,0.79653,-0.33559,0.32742,0.17593,1.5755,-0.95062,-0.69399 0.70854,-1.6834,3.3833,-0.0009865,0.73283,1.4509,2.6712,-1.4722,0.82564,-0.76689,-1.1944,0.71613,-1.0374,-0.29125,-1.4787 -1.3593,-4.6917,1.2389,0.3819,2.0929,0.9792,0.38748,0.17248,0.53819,-0.46826,-1.5694,-1.3489,1.1752,0.47978,0.06525 -3.5899,1.735,0.53663,-0.64811,0.0080995,0.24513,1.4222,0.45895,-0.067493,-0.59473,1.2168,-0.73834,0.70616,-1.4605,0.43662 -2.5661,-0.08969,1.2908,-3.2514,0.26464,-0.43583,0.77436,-2.269,0.60584,0.70545,-1.1847,-0.089889,-0.1931,-0.96384,-0.19873 -3.8089,2.8727,0.78167,-0.032896,1.511,0.92952,1.7176,1.0225,-1.3007,-0.86845,0.20046,-0.25779,0.007616,-0.50347,0.15927 -2.8718,-0.98043,1.8132,-1.2668,0.26523,-0.38824,-0.10316,-0.36235,1.8021,0.4206,0.76339,-0.47131,0.14295,-0.60777,-0.057145 5.2045,-2.8798,-0.6572,-2.0976,2.5612,1.1305,2.3761,1.0478,0.43566,0.56459,1.0065,2.7562,-0.87147,1.8791,-0.8341 0.049111,-4.1374,0.83512,-1.4638,0.55891,1.6148,-0.47892,-0.52408,0.50762,1.1759,-3.1938,0.2734,-0.34611,1.8684,-0.72186 -2.9398,-1.3126,1.4566,-2.8327,0.59484,1.6507,0.17087,-1.7798,-0.80627,-1.3982,-0.68582,-0.83092,0.3465,0.093854,0.37906 -0.49866,-0.16375,3.9361,-2.7141,-0.76715,1.1992,0.44719,-0.40833,0.019093,0.18378,0.43659,-0.50226,-0.22023,1.8362,0.1295 4.1359,-1.6311,-1.3814,-1.1971,0.51291,0.20003,1.656,-0.80613,1.3794,0.4337,1.5633,0.73963,-2.7094,-0.52342,0.83028 -1.0312,-2.3928,1.8262,-3.9033,0.019907,1.0599,-0.43894,-1.5111,0.031559,-0.26696,-1.6878,0.1767,-1.1342,2.4163,-0.15005 -2.121,-1.4688,2.4465,-2.0518,0.676,-0.32816,0.0044206,-2.4385,0.70257,1.2246,-0.61657,0.11025,-0.24794,0.47621,-0.25005 2.5221,-0.95194,2.0653,0.84702,0.44574,2.3716,2.278,-0.022364,-0.65085,-1.8677,-1.3654,0.47108,-1.5293,-1.1157,0.26281 -2.9208,-1.2301,1.2491,-2.5214,1.3534,-0.78706,-0.52886,-2.4708,0.54251,0.69904,-1.3516,0.73555,0.11607,0.46315,0.32743 -3.4385,2.5374,0.27685,-0.16842,0.37084,0.4582,1.4763,1.6597,-0.23075,-1.5156,0.95826,-0.84658,0.46424,-1.1396,0.67275 1.2449,-0.38376,-3.1929,0.95971,-1.0656,2.697,1.0525,0.48156,-0.010633,0.11725,-0.94663,0.12809,1.2064,-0.84257,-0.32853 -1.7518,-1.5259,0.17238,-0.95535,0.25496,-0.66684,-0.076607,-2.5727,1.1643,1.0359,-0.93335,0.9011,0.37093,0.20552,-0.84012 -3.3853,-0.53723,-0.73415,-1.7836,0.99014,1.9422,0.019149,-2.745,-0.82676,-1.0765,-0.17988,0.271,-0.46586,0.51359,-0.91657 -1.2776,-1.0073,2.6358,-1.9813,-0.86815,0.099354,1.7004,-1.2943,1.1565,-0.20227,-0.85745,0.21113,0.52807,-0.87779,-1.2691 -1.9464,2.2405,-0.87635,1.9783,1.2334,0.77262,-0.046617,2.0424,-0.54804,0.3099,-0.44378,0.25752,-1.0043,-0.56322,0.33285 0.18435,1.5867,1.2149,-0.095262,0.16271,1.8733,-0.36474,0.35347,1.2795,-1.0373,1.1741,-0.18915,0.59708,-0.51223,1.2801 -1.1033,3.6921,1.458,-0.46156,0.42302,0.33695,-0.98268,1.0121,-0.05119,-0.36396,-0.040384,1.0528,0.71297,-0.99079,0.94821 -2.9692,-2.0606,0.67683,-3.0009,1.0159,0.77038,-2.0877,-1.4088,-0.78661,-0.43887,-1.3007,0.59739,0.55125,1.1756,1.2253 1.8687,1.2494,0.24794,1.1038,-0.25315,2.3175,-1.3985,-0.98243,0.57,0.039066,-0.38125,-0.15557,-0.23515,1.548,0.56722 0.99184,3.1659,2.149,-1.5798,-0.14956,0.69554,-1.4804,1.0659,-0.34138,-0.12248,-0.71594,0.47807,0.29058,-1.4878,0.54596 -3.0191,1.8947,0.1939,-0.034956,-0.27726,1.0217,1.5112,-0.37039,-0.63084,2.3644,0.84725,-0.0018153,-0.62003,0.39803,-0.82585 0.94013,0.49816,1.0169,1.5642,0.11808,1.7078,0.38551,-0.84417,-0.29918,-0.0013684,-1.638,0.82553,-0.93898,-2.4845,0.31071 -1.8467,-0.30241,-0.92059,1.0507,-0.35384,0.17263,0.73627,0.018613,2.2981,-0.53524,0.6303,-1.1142,-0.15166,-0.35151,0.49024 -1.6656,-2.1315,-1.9968,1.3078,-0.41402,0.81792,0.15645,-0.20651,0.72091,-1.0172,-0.25526,-1.2577,0.39687,-0.60701,0.10182 2.8,2.1356,-1.0536,0.81259,0.76743,0.50093,-0.21544,-2.1226,0.22673,0.48058,-1.2196,-0.97832,-1.1274,-0.59101,-0.97002 0.48314,2.8116,-0.72773,1.1909,2.9885,-0.44436,-1.7906,-0.36498,-0.72988,1.503,0.54756,-0.53509,-0.65502,-0.30185,-0.74649 -0.80901,-1.2344,0.25071,-1.033,-1.4138,1.6642,0.62509,-0.51243,1.8096,-0.72192,-0.70165,-0.55863,1.3342,-0.53815,-1.0535 -0.36458,-2.58,0.25455,-0.65513,-0.73042,2.2491,1.3493,0.22209,2.0048,0.54789,-1.6052,-0.89923,-0.11452,1.0606,-1.8017 2.2376,0.71567,1.9724,0.84542,0.28732,2.4355,0.41859,-1.9187,-0.74002,-2.08,-0.67172,0.23315,0.14935,0.49519,0.67496 0.089103,3.6923,0.60578,1.5132,1.6177,-0.82492,-1.176,-0.20856,-1.0715,1.5212,-0.16414,0.51463,-0.72283,0.83036,-0.69059 -1.8062,-0.030663,-0.40475,-0.7573,-1.6149,1.1546,-0.054724,-0.90155,1.1981,-0.61117,0.51238,-0.62744,1.291,-0.63814,0.41549 -0.0037579,2.8125,-1.5598,0.36565,0.10899,0.42478,-1.2722,-0.12106,0.59539,1.9395,-0.15561,0.13605,0.61889,-0.31193,-0.58291 1.5231,-1.0378,2.1458,-0.056149,-0.47651,1.2977,-0.0076557,2.0375,1.8682,-0.79759,-0.93214,0.50154,1.3457,-0.7858,0.12707 -2.485,-0.56885,1.4915,-0.08965,-0.75023,-1.1042,0.6643,0.22657,1.8269,-0.57024,0.41524,-0.88081,0.53244,-1.0764,0.68824 3.1947,-1.233,0.52781,0.31066,2.4864,1.4592,-1.2091,0.085715,0.47593,-1.1448,-1.216,0.2115,1.9259,-0.1946,-0.55132 -3.2898,3.1552,1.6465,-0.43559,0.73012,0.30447,1.118,0.93254,-0.92139,-0.5163,0.52737,0.37502,0.35453,-0.6882,0.67412 -2.3457,-1.4417,-2.3138,-1.3311,0.57162,-1.8187,-2.2527,0.85379,-0.71124,-1.1586,-1.3325,1.1761,-0.75067,-0.92423,2.3577 -0.92526,-2.2897,-0.95891,0.22182,-0.24988,0.81377,-0.52437,-0.19238,1.5616,0.25551,-1.5662,-0.56343,1.3123,-0.93847,-0.2033 -0.87504,0.43027,-3.0948,0.76809,0.21231,-1.2404,-0.407,0.088602,0.65785,0.48211,-0.67105,1.0113,0.3199,-1.1902,1.6141 1.05,-1.3977,1.7424,0.19117,-0.13769,2.8111,1.7577,0.64024,1.6557,0.56724,-1.5336,-1.2328,-0.33842,0.42053,-0.52874 -1.6316,1.5873,2.0421,-0.831,-0.68221,-0.047508,1.2617,-0.22529,0.81024,-0.075413,-0.37824,1.0988,0.76721,-1.8988,0.94219 -3.119,0.86685,-2.2816,-0.14254,0.066733,0.65613,0.94208,1.6374,0.52423,1.4047,-0.10858,-0.3211,-0.54392,-0.66808,-0.83614 -0.16695,2.2769,3.9894,-1.9321,1.1939,-0.86624,-0.21485,2.0848,-1.2408,-0.21674,0.92402,-0.65655,-0.99056,-1.3303,0.77215 -1.637,-0.093888,3.9284,-0.64966,1.1351,-0.35574,-0.11548,1.1484,0.90383,0.14413,0.64846,-0.82846,-0.82597,-0.25185,1.137 -4.3879,1.5277,-0.97952,-0.84229,0.98932,0.69405,2.387,2.0381,-0.48663,-0.50236,-1.0784,-1.2944,-0.62654,-0.021028,-0.43171 3.3281,-0.29322,0.093154,0.79498,-0.83474,0.89366,-1.3114,-0.4586,1.0228,-1.1783,-1.1857,0.53152,-1.7427,-1.0428,-2.0737 2.7667,1.5759,3.5459,-2.3769,1.9215,-1.1652,0.41855,2.4229,-0.97443,0.53956,0.17935,0.88354,-0.83632,-0.90799,0.34392 0.59791,3.0607,1.8994,1.2616,1.5844,-0.36171,-1.5836,-0.23628,-0.20594,1.1928,-0.40179,0.14968,-1.119,-0.16448,0.25198 2.4412,1.7091,4.2225,-1.0595,1.4389,-0.2919,0.62008,0.37274,-0.41168,1.0339,-0.62174,0.044742,-2.2234,0.11749,0.44676 -1.419,3.8802,1.0175,-0.22572,-0.69492,1.0426,0.016032,0.34279,-0.99973,-0.13347,0.54104,0.97989,0.30519,0.15484,0.45241 -2.1777,2.8384,-1.388,0.1589,-0.042687,1.2414,-0.37194,2.4095,-0.24444,0.56984,-0.46616,1.4068,0.21631,-0.56918,-0.19918 4.5739,-1.1131,1.962,-1.1227,4.3332,-0.95591,0.058338,-0.99468,-1.7737,-0.54816,0.65664,1.0384,0.38572,0.70842,-0.32759 -2.9859,2.6742,0.61636,-0.3986,-0.48208,0.85479,1.3858,-0.12909,-1.0586,1.3814,0.9322,1.1491,-0.51243,-0.23073,-0.2336 -2.2018,-0.023071,-0.20605,0.72732,-0.16252,1.1687,0.80222,-0.63703,1.618,0.79258,1.183,-0.17217,-0.53135,-0.3694,0.45202 -0.70082,1.4613,4.0833,-1.2505,0.84864,-0.48191,1.0239,-0.17607,0.055241,1.3567,0.1838,-0.18798,-0.92219,-0.73681,0.41628 3.3777,0.99074,2.4749,-0.75653,1.764,0.63508,-1.31,0.35976,0.6722,1.3827,-0.67541,1.3249,0.17093,1.6097,0.15399 -2.934,1.0926,2.5005,-2.3087,0.28975,-0.46399,1.0501,-0.40118,-0.40271,0.57129,0.56842,-0.89141,-0.081423,-1.7092,0.60064 -2.8558,1.3524,-0.089233,-0.18654,-1.0567,-0.70224,-0.10328,1.4566,-0.99317,0.40841,0.52732,-1.1669,0.71703,-1.0196,0.42009 5.1438,-3.9466,0.61222,-1.0797,3.9346,1.8871,2.4369,0.65852,-1.5692,-0.027862,0.21046,1.3133,0.52001,1.5567,0.16857 0.36547,1.4428,3.5474,-0.67277,0.18711,-0.30857,0.88618,0.84294,0.50169,1.4085,-0.49103,-0.54539,-1.6738,-1.353,1.1262 2.5023,-1.6691,-3.0595,0.22066,0.37576,3.2396,2.5816,0.78099,-0.40588,-0.66991,0.19833,1.694,-0.33394,1.0783,0.063958 -1.745,-0.82054,1.9784,0.64044,1.3946,-1.2653,1.1183,-0.022836,1.6399,0.056562,-0.83912,0.25584,0.073602,-1.3001,0.081363 -1.9414,3.3632,2.4905,-1.1659,0.60779,0.4092,-0.026587,1.4847,-1.3484,-0.57136,0.79187,0.13647,-0.34692,-1.6016,1.1979 1.7512,2.6966,0.24091,0.30441,1.3889,-0.97065,-1.0305,-0.42779,0.48439,0.94821,-1.0621,0.30847,1.3161,-1.9471,-0.99552 -0.17308,2.3367,3.4178,-0.46364,0.8478,-1.0346,0.2801,1.2282,0.30276,1.0371,-0.13856,-0.15151,-0.57983,-1.143,1.154 -2.9137,1.7548,3.0001,-2.0882,0.58962,-0.29607,1.0405,0.074524,-0.22244,-0.27088,0.52341,-0.80953,0.1166,-1.3343,0.44866 2.2707,1.0372,-2.4498,-1.4947,0.18561,-0.55758,1.551,1.3942,0.86005,1.8731,-0.42509,1.6804,-1.5836,-1.3835,-0.03122 -0.19897,2.134,3.9004,-2.6408,0.29035,-0.10361,0.69978,1.4806,-1.0739,-0.18883,0.20684,-0.4476,-1.0508,-1.3374,0.70326 1.087,3.438,0.046035,0.51967,-0.077298,-0.21475,-0.68563,-0.66734,0.28947,1.8351,-1.7818,0.35431,-0.57439,-0.16069,-0.66048 2.0468,2.1989,-1.2527,-2.9397,0.22121,-0.042141,0.011636,-0.91189,1.1023,-0.61946,0.53284,-0.21314,0.42684,-1.5761,-0.17514 -0.98948,2.4724,2.6454,0.41944,0.24903,-0.50494,-0.82315,-0.56576,0.72388,-0.45547,-0.0066953,2.0207,-0.68945,1.1113,0.32472 2.2747,2.6876,1.4612,-1.1935,3.0009,-1.7709,-1.015,-0.79424,0.76382,0.68091,-0.27349,0.022007,0.86733,-0.46566,-0.87267 2.4338,1.4142,2.8445,0.85693,1.5025,-0.054108,0.99025,-1.1182,0.48631,-0.6513,-1.9047,1.3617,-1.7205,-0.47057,-1.0025 0.85258,1.1832,2.67,1.324,-0.59203,-0.1265,-0.2057,-1.5408,1.0712,-0.36968,-1.2342,1.8359,-0.81313,0.48404,-0.074974 2.5118,2.0607,0.71019,-0.34697,-0.57873,-0.48001,-1.3272,-1.2125,1.2582,0.12117,-0.73413,1.1197,-0.14219,-1.1266,-1.6696 -0.19212,1.8879,0.75981,1.9056,0.12813,0.084078,-0.58283,-0.10952,1.7882,0.22754,-0.50844,1.0295,-0.26204,-0.40297,1.1369 -1.9185,2.1483,-0.05256,-0.53572,-1.2577,1.4935,2.0539,-0.67767,-0.17588,-0.25473,-0.46102,0.16187,0.88448,-0.31253,0.45908 -0.48822,1.0131,-0.087227,2.1505,-0.19525,0.50751,0.13,-0.21234,2.2234,0.12263,-0.27117,1.0643,0.1068,-0.50672,1.127 1.1457,0.66159,1.5065,2.1507,-0.10259,0.82346,-0.083882,-1.3326,1.6045,0.022416,-0.53307,1.1627,-0.49451,0.79778,0.72673 1.2275,3.3972,1.2584,0.17069,-0.096472,-0.23227,-0.44019,-0.88677,-0.19036,1.1451,-1.3011,-0.21277,-2.0312,0.20995,-0.041223 2.8924,-1.373,0.33641,0.8701,1.4447,2.5061,-0.70914,-2.4215,-1.0462,-1.9691,-0.66885,-0.28214,0.67363,1.2554,-0.35585 -2.6395,0.5699,0.44013,0.20786,-0.75517,-0.55092,1.0026,-1.0174,0.85213,1.6246,0.95958,0.27698,0.57377,0.71152,-1.1528 0.43779,2.5273,-0.020331,0.93892,-1.313,0.15177,-1.3766,-1.1298,0.89151,0.04261,-0.051993,1.4504,0.15953,0.12707,-0.71223 -3.1947,-1.7384,-0.72371,-0.040273,1.7262,-1.6309,-0.8223,-0.79373,1.1922,0.17526,-0.32678,0.41138,-0.68384,1.0252,-0.19293 -2.1286,-1.0602,-2.9168,-0.28454,1.8163,-0.24302,-0.62362,-1.0007,-0.07395,-2.2186,-1.7713,2.0071,-1.2734,0.15884,0.80298 -2.4384,1.9709,-0.34596,1.5087,0.057184,-0.13559,0.6691,1.3748,0.7727,0.8601,0.039648,1.1342,-0.46504,-0.41027,0.65578 -1.7723,3.8562,1.4021,-0.23724,-0.5009,0.56273,0.32805,-0.11783,-1.6117,-0.12386,-0.039286,1.1228,-0.75243,0.0015817,-0.15953 2.8735,1.9683,1.4665,0.87416,2.0658,0.068956,-1.48,-1.6905,-0.44096,0.97665,0.091001,-0.80412,-1.5509,0.27691,0.46955 -3.1303,0.93264,-2.5043,-0.29933,0.17432,1.5188,1.7816,0.91364,0.47162,-0.17118,-0.63361,-1.2522,0.38502,-0.65117,-0.32592 -1.7982,2.2738,0.66642,-0.62603,-0.30807,1.7485,1.708,-0.55473,-0.28207,-0.60353,0.18698,-0.7838,0.88282,-1.3342,0.80594 -1.8519,3.1682,-0.2968,-0.39891,-1.0487,1.9167,1.388,0.93042,-1.4714,0.52689,-0.64371,-0.38915,-0.21562,-1.2754,0.97224 -3.0423,-1.3638,0.54395,1.0963,0.75102,-1.1583,0.99225,-0.42262,1.9036,-0.15199,0.54482,-0.39058,-0.64489,0.0094555,0.095078 -1.4325,1.6904,-0.026265,2.1215,0.13889,0.5827,0.073178,0.94078,1.4191,0.46274,0.73992,0.66594,-1.1109,0.32281,0.23358 1.3329,0.65143,-0.14236,1.0821,0.89953,1.7515,-1.146,-2.8751,-0.21183,-1.4548,-0.28062,-0.0095154,1.0582,0.050854,-0.47253 -3.0387,1.3081,-2.5689,-0.36653,-0.27672,1.8032,0.88775,0.50547,-0.4899,0.80422,0.72341,0.15626,0.31346,-0.25253,-0.98624 -0.2911,2.8698,1.4691,0.1156,1.4664,-1.0184,-1.2002,1.7343,0.46936,-1.602,0.4013,0.17874,0.79477,-0.16413,0.44712 -1.6418,3.2078,-0.78906,0.71624,0.35953,2.0049,0.13,1.3703,-0.13777,-1.1792,-0.43945,1.0304,1.1483,0.8334,-0.26593 -0.7494,-0.0894,1.4508,1.211,0.01722,2.2387,1.6528,-2.3205,-0.006519,-1.0829,-0.19369,0.73082,0.62342,-0.57474,0.69711 0.55341,3.7761,0.27326,-0.27324,-0.28691,0.60388,-1.6826,0.66174,-0.2382,1.2838,-1.5074,-0.088046,0.21265,-0.73176,-0.13809 -2.7728,1.9044,-0.21004,0.52,0.16929,1.6314,1.4698,0.44813,0.16884,-0.85601,0.88204,-0.83889,0.61793,-1.5188,0.84636 -1.0278,1.2241,-0.41901,1.9852,-0.75702,2.0926,0.25447,0.024502,0.94293,-0.2846,0.86412,0.90675,-0.62739,1.0932,0.43754 -0.9117,0.62717,1.0913,2.5413,0.29001,0.30636,0.49313,-0.19925,1.438,0.26925,0.63218,0.68545,-0.013944,0.91458,0.56781 0.86599,-0.2851,1.7334,0.60361,2.7348,0.44862,1.2135,0.65216,-0.73314,-1.4459,-0.43026,0.45878,0.46685,-1.6196,1.6195 -1.803,-0.34369,-0.33564,1.8514,0.41746,0.66822,1.2435,-1.7747,1.2333,0.41456,0.47825,-0.68424,0.98163,0.43541,-0.11861 -3.5016,1.0342,-1.701,-1.5333,0.36947,0.75376,0.19066,-0.6491,-0.55102,0.74591,-0.061066,-0.5727,1.0848,-0.58849,-0.4398 -3.5618,-0.8047,-2.6335,-0.97926,0.11791,1.0943,-0.35152,0.1006,0.27293,-1.3364,-0.76894,-0.82542,0.54444,0.35488,-0.86821 -1.9629,0.31051,-3.8813,-0.48792,-0.22063,0.55267,0.12824,-0.018917,0.77874,-0.61937,-1.1459,0.67975,0.76157,0.6245,-0.37154 -1.9906,1.0736,-1.4728,-0.29465,-1.0899,2.3348,1.0617,-0.91812,0.32596,0.27711,0.78929,0.24219,0.66642,-0.50338,0.35368 0.43862,2.2639,-1.0209,-1.1483,0.99107,-0.86725,-1.7613,-0.053956,1.8547,1.1816,1.1643,-0.019831,1.2599,-1.2332,0.16345 -2.6457,-0.52463,-2.8821,-0.2349,0.052791,0.74306,-0.60879,-0.35786,0.68781,-1.4375,-0.66464,0.73747,0.24616,1.3317,-0.041632 -1.6277,-1.0732,0.51049,-1.1182,-0.71993,0.58116,-0.66532,1.1052,1.6185,-0.5166,-0.28492,-1.7318,1.8923,-0.12616,0.50599 -2.5472,-0.84654,-1.2137,-1.648,-0.094505,0.85085,-0.96381,-1.6002,-0.049854,-0.84877,-1.0732,-0.059054,1.3193,-0.34111,0.93015 -1.6388,-0.51223,0.48394,-0.7223,-0.15175,2.7581,-1.2936,1.367,-0.15778,-2.5078,0.73253,-0.020049,0.1999,1.2262,-0.82876 -0.98712,-0.41276,0.11131,-2.3588,-0.21607,2.3819,0.33743,-0.18478,0.30422,0.010356,-1.0405,-0.77424,1.8943,1.7408,0.11481 -0.71982,-0.33423,0.82955,-0.41117,-0.23396,1.5638,0.5634,-0.33425,2.5933,0.53443,-0.53005,-0.69874,1.9812,1.0889,-0.35233 2.4051,1.8053,1.6215,0.96673,3.7206,-0.37959,-0.39591,-2.3224,-0.69391,0.08101,-0.55947,-0.040209,-0.25245,-0.51382,-0.2867 -1.3051,0.33425,-0.78734,-0.4681,-0.57462,3.0894,0.29875,-1.6541,0.2949,-0.043547,0.18755,-1.2814,-0.28354,-0.1134,-0.48015 -1.9641,-1.4072,-0.24768,0.23084,-0.54031,-0.85507,-0.52127,1.0066,1.6099,-0.36113,-0.32727,-1.8298,0.58228,0.17369,0.11234 0.027577,-1.3014,0.95323,-0.76724,-0.42682,1.0231,0.76483,1.863,1.6785,0.040751,-0.54779,-0.50842,2.5066,0.15887,-0.47366 -1.0575,3.6279,0.51866,0.9073,1.1952,0.61863,-1.1125,1.3433,-0.33309,1.7263,-0.73218,1.1522,-0.18515,-0.1835,-0.14387 -3.052,0.7015,-2.0916,-0.060229,0.087236,1.5294,1.5081,-0.92102,0.53641,-0.2803,0.37445,0.095736,0.49335,-0.8131,-1.0462 1.5762,1.3689,-1.2594,-1.3121,-1.4915,2.6572,1.2662,1.2004,0.096284,-0.56724,0.14066,0.81113,0.031415,1.913,-0.083771 -0.40571,-0.19921,1.4746,1.1705,-0.54688,2.4146,0.69526,-1.3228,0.29772,-2.0214,-0.24096,1.1838,1.214,-0.32726,0.58947 3.1483,-0.12168,-0.094652,-0.19242,-0.30577,2.4879,0.6629,1.1039,0.65884,-0.50889,-0.96058,2.2406,-0.54983,2.0108,-1.5112 -2.169,2.3272,-1.2284,0.58821,-0.61621,1.5547,0.97969,0.71131,0.51817,0.87987,-0.076288,1.0662,0.27219,-0.64957,0.34657 -2.5834,-1.2362,-2.3402,-0.91018,0.63897,1.1627,-0.65458,-0.39372,1.0221,-2.7114,-1.4424,0.13905,-0.24437,0.22239,0.90037 1.8667,0.91424,-0.47233,-0.80184,-0.57656,-0.14298,-1.0388,2.1511,0.8758,-0.79154,-0.87806,0.46657,1.159,-0.36867,0.031382 -3.3067,-1.7395,-2.621,-1.2448,1.2929,0.44907,-1.9713,-0.58041,-0.53428,-1.7261,-1.1385,2.133,-0.60512,0.15982,0.41438 -2.2632,-1.5759,-3.2354,-0.70992,0.73913,0.5392,-1.6888,0.40542,-0.042395,-1.9413,-1.858,1.8087,-0.87324,-0.28452,1.0728 -1.7972,1.7702,-3.3159,-0.78993,1.9456,-0.33499,-1.1215,0.24402,-0.40881,0.0041269,-0.22101,1.8762,0.47831,0.68297,0.21804 2.6311,2.0643,0.62963,0.032804,0.35208,0.10259,-2.0075,-1.9433,1.2341,0.33909,0.65474,-0.16091,-0.50494,1.998,-0.30633 -2.8479,-3.348,-1.3377,-0.19451,1.5052,-1.5862,-1.8597,0.59885,0.70094,-0.70035,-1.5608,-0.33263,-1.8263,0.9743,1.2244 -0.98239,-4.7176,0.21513,0.84297,2.433,0.81743,-1.8325,-0.40189,0.18961,0.17509,-1.9262,0.2307,0.51331,0.65224,1.5811 -0.21058,-1.0505,3.5981,1.2268,0.70587,1.4609,0.56393,-0.48015,1.2788,0.59207,-0.75503,0.1195,-0.83663,-1.7843,1.3391 -3.2521,-3.271,-0.90257,-0.62559,1.1496,-0.96441,-1.4258,0.49625,0.94334,-0.57779,-1.3644,-1.0628,-1.7056,1.4525,0.6408 -3.0666,1.5405,-1.0021,-0.56258,-0.3862,1.244,0.85514,-0.013771,0.010501,1.1201,0.8204,-0.74175,1.0158,-1.4461,-0.064715 1.9457,-1.8114,1.2541,-3.3133,-0.84152,2.5519,0.39102,0.88537,-1.8471,-0.26077,-0.97096,0.99467,1.4504,2.862,-1.1591 -2.7702,-1.0741,-3.6473,-0.31857,1.2626,-0.022136,-0.85452,-0.4685,-0.088997,-1.7412,-2.0561,1.0891,-0.74799,-0.43278,0.7021 2.8106,-1.8881,-3.7381,-0.66329,-1.3559,3.4111,0.1676,1.1051,-1.0175,-0.084135,0.51556,-0.29393,-0.17876,1.0248,0.4003 2.2082,-0.38392,-1.3148,-1.4374,0.32053,0.25389,0.84039,-0.49024,1.382,0.79502,0.84158,1.1796,-0.97627,0.41102,1.1954 3.417,-0.30084,-1.4921,-0.50118,1.6803,1.2211,1.1423,-1.0789,-0.29121,1.5588,0.78709,-0.62855,-0.2909,-1.7878,1.4627 -2.5326,1.423,1.8792,-0.93722,-0.83069,0.41157,0.74723,-0.86884,0.16439,-0.054078,0.2686,1.2025,0.14232,0.098599,0.58684 1.8297,0.78559,-0.30941,0.81638,2.3386,0.5186,-1.4948,-1.4494,1.2327,0.91543,1.2355,-0.69204,0.10881,-0.75864,1.0734 2.6164,2.9785,-1.7433,-2.7687,-0.16788,-0.21384,-1.0026,-0.32496,-0.093411,0.1127,0.8717,-1.5682,-0.74226,-0.51857,-0.095278 2.9683,1.5582,-0.89624,0.098067,1.2025,0.035084,-0.8907,-2.003,0.11811,1.9984,0.62718,-1.5236,-1.1752,-1.1251,0.31325 0.92288,1.6135,-0.63641,0.91267,2.12,-0.0055844,-1.8385,-0.93219,0.87208,2.085,1.3649,-0.54361,-0.3402,-0.29351,-0.17684 0.93805,3.8425,1.187,-0.79389,-0.099051,0.038887,-1.7724,-0.78487,-0.34294,-0.25506,0.19992,0.74267,-0.81033,0.33579,-0.19876 0.24959,0.91681,0.78433,2.4565,1.2528,1.0709,-1.2535,-1.245,-0.15561,-1.3579,-0.075579,1.3511,-0.026124,0.6869,0.20932 -0.26378,0.34772,-0.25944,-1.5909,-0.44359,1.4292,-0.45073,-0.22175,-1.3632,-1.5354,2.0004,1.382,0.723,2.5874,-0.47 0.82828,2.9771,-0.088271,0.036063,0.41348,-0.39132,-2.2604,-0.64275,1.0183,1.5809,0.094563,0.17391,0.21401,-0.65307,-0.72001 3.3527,0.80221,-0.15981,-0.71822,2.1495,0.47999,-0.46408,-1.6561,0.68443,0.66823,1.0151,0.51539,1.0156,-1.1692,-0.67853 -2.6485,0.0052994,-1.2959,1.249,-0.111,1.0609,0.58924,0.71383,1.4426,-0.29727,0.094268,0.16802,-1.0217,0.88049,-0.3354 2.4922,2.7396,-2.44,-2.3586,-0.22783,0.066145,-0.46839,0.74641,-0.77189,-0.30788,0.40681,-2.0359,-0.16835,-1.4721,-0.70014 2.119,1.0709,2.0383,-1.406,-1.495,1.1686,0.4657,1.8289,-0.0029041,-0.58839,-0.78024,0.20399,-1.2583,-1.4457,-0.11718 -2.4942,3.0656,0.031049,0.85293,0.94948,-0.36088,-0.055419,1.9329,-0.029344,0.7116,-0.6365,1.4722,-0.38832,0.5522,-0.26119 4.9094,-2.8947,-0.11161,-0.96161,2.9442,1.9795,0.98456,-0.6518,-0.010523,0.66768,1.0025,1.518,0.55226,0.74594,-0.038136 1.7794,3.0168,0.36994,-1.8278,1.5767,-0.46588,-2.1092,-0.91528,0.91968,1.0991,1.153,-0.29764,-0.40209,0.19786,-0.25529 0.71373,2.6897,0.88645,0.91802,1.7399,-0.96612,-0.16361,-0.35712,0.64582,0.68764,-2.4383,0.68187,0.93821,-1.5108,-0.69636 2.7839,2.1191,-0.14622,0.56057,1.9733,0.31951,-1.4454,-1.7993,0.049756,1.8873,0.57733,-1.1062,-0.32295,-0.38151,-0.023452 1.5554,2.8877,-1.5482,-1.6424,-0.56321,1.0102,-1.081,-1.0402,0.47565,-0.59549,0.091282,-0.66516,0.52219,-0.43923,-0.67994 3.1634,1.2249,-0.86049,-1.4404,0.58298,-0.048071,-0.55533,-1.2432,0.83173,2.0408,1.2342,-0.9934,-1.7424,-0.076909,1.0649 -3.2089,0.93693,0.25611,-1.5209,0.14771,0.27511,0.98376,-1.5296,-0.016248,0.92518,0.37034,0.1064,0.68347,-0.67334,0.08922 -4.9268,-0.57996,-0.71622,-1.9272,2.2318,-2.1186,0.80763,0.2239,-0.64311,-0.88091,-0.62922,-0.81717,-1.0038,0.3479,0.14135 2.15,0.63162,-1.3317,0.0056115,0.45585,0.23142,-0.054289,-0.70276,-0.070614,2.0839,1.6932,0.91489,1.5188,-1.0121,0.081686 -3.3618,0.090405,-2.8507,-0.59605,1.6412,0.6838,-0.0090612,-1.0776,-0.29953,0.18676,-0.56674,0.37931,-0.19934,-1.258,-0.75304 0.61978,0.19465,3.1348,-3.1168,-0.092507,1.8199,1.949,0.78423,0.37099,-0.032792,-0.82637,-0.38537,0.33445,0.77135,-0.74233 2.5472,-1.3963,-2.5713,0.0014885,1.0496,3.3921,1.8902,-0.37323,-0.36224,-0.065908,0.097641,1.229,0.57635,1.7316,0.23792 0.99738,-0.8302,4.2961,-0.98692,0.6138,1.1109,1.3899,0.29576,0.054113,0.1866,-1.3579,1.5756,-0.53248,-0.74743,-1.4181 -2.4538,0.78448,2.3282,-0.7904,0.36831,-0.65517,0.72471,0.50403,1.1757,-0.79705,0.89958,-0.30914,1.0637,-0.49991,0.7778 3.4278,-1.0777,-1.9015,-1.1787,0.44265,2.4467,2.2049,1.3456,1.0356,2.1688,0.091492,2.5196,-1.2152,1.1026,-0.38138 3.0068,0.97587,0.28364,0.41342,3.3993,-0.37106,-0.76104,-1.7007,-1.4546,1.4028,1.1542,-1.1317,-0.50167,-1.382,0.50656 -0.099247,-1.872,3.4868,0.44315,1.1292,0.97831,1.5119,-0.54535,1.3847,-0.099784,-1.0794,1.1679,0.27493,-0.51732,-0.72426 -0.53251,-3.0146,2.3178,-0.91097,1.6086,-0.36626,1.5739,1.0707,1.2264,0.77387,-1.0456,-0.82701,1.2956,-0.52673,-0.9127 -0.099363,3.6421,0.20234,0.4523,1.0219,-0.32883,-1.803,1.0941,-0.52908,0.67701,-0.3833,-0.28322,0.94236,-1.0161,-0.73585 1.5822,0.10502,3.8548,-1.9381,-0.33026,1.931,0.64716,0.99246,0.62753,-0.98811,-1.055,1.4775,0.53949,0.5093,-0.85825 -1.2341,-1.8474,3.9689,0.11935,1.366,-0.86085,0.30154,2.2743,-0.29558,0.044051,-0.3522,-0.35298,-0.064263,-2.4797,-0.10605 -2.1081,1.4246,0.92538,2.1638,0.78424,0.75817,1.253,-1.2533,-0.097607,0.37612,0.47263,1.2589,-0.64514,0.15127,0.91467 -0.85993,-0.32107,1.4133,1.1058,-0.59949,0.91647,0.9326,-0.23719,2.4199,-0.55632,0.24994,0.24374,1.29,-0.37456,0.27835 -1.7437,2.6063,-2.0593,0.66002,-0.42731,2.0046,-0.13114,1.9988,0.1794,-0.11761,-0.89073,0.86779,-0.0061409,0.057719,-0.54902 -2.1217,-1.0374,-0.72019,-1.0236,-0.75286,0.74194,-0.47394,-1.8431,1.3552,0.18495,-0.53875,0.22531,1.4,0.14482,-0.26048 -1.7926,3.9151,1.4763,0.19565,-0.24495,0.42041,-0.14028,0.82253,-1.0176,0.86169,0.4226,1.3252,-0.63523,0.076841,-0.31131 -1.7219,-1.8471,-1.6551,-0.38357,-0.38396,0.36727,-1.503,-0.69014,1.4598,-0.00045511,-1.4143,0.49435,1.0126,-0.54524,0.82407 -2.5726,-0.46833,-0.17928,0.42656,-0.79041,-0.17416,0.73109,0.5666,2.248,-0.75319,0.63871,-0.87016,-0.058286,-0.70552,0.23591 -3.0468,-1.1016,-1.3503,-0.7778,-0.53553,0.21302,-0.70174,-0.54983,1.2135,-1.147,0.019228,-0.5415,0.81898,0.15425,0.22827 -2.2505,-1.0716,-1.7618,0.58288,-0.05754,-0.44746,0.41218,-1.1727,1.8161,-0.50983,-0.14455,-0.090674,0.84697,0.087067,-0.65186 1.2068,0.96827,-0.41029,1.4904,2.409,0.60541,-0.87842,-0.76692,0.34473,-0.76629,0.25846,-0.67271,1.2278,-1.1628,1.3551 4.0831,-1.7443,-2.0747,-2.2158,1.7109,3.3454,3.3248,1.2041,-1.2075,-1.4176,0.76242,1.98,-0.56636,0.71696,0.076707 1.3124,1.8307,-2.135,-1.6212,-0.86864,0.63329,0.66736,1.2685,-0.032299,0.5346,0.43743,-0.85273,-0.14625,-0.67467,0.64599 -2.1589,0.64539,-2.1043,-0.70505,-1.0592,1.2614,1.0509,-2.4516,-1.2241,0.26607,0.2951,-0.45419,-0.22624,-0.3083,-0.97634 -2.3452,-1.0148,-1.2838,0.41202,0.16865,-0.34897,0.29445,-1.618,1.7464,-0.21265,-0.053177,0.061618,1.0036,0.13713,-0.45388 2.7156,2.4176,-0.41621,-3.4436,1.6333,-1.2543,0.00106,-0.68233,0.15179,1.1153,1.2274,-0.21172,-1.1563,-0.3761,-0.035452 2.424,-0.37852,-2.0092,-1.4309,0.32303,1.565,1.6444,1.2981,-0.023933,0.86011,0.5515,1.8859,-0.46009,-1.4489,-0.1052 -1.8137,0.986,0.65732,-1.4073,1.1586,1.7718,-0.43849,-0.5988,-0.75553,-2.5677,1.2889,0.58561,0.12308,1.7273,-0.82172 -2.928,-0.56085,-2.5225,-0.58494,-0.28577,0.035817,-0.55725,-0.34072,0.81602,-0.20449,-0.58372,-0.19179,0.9662,0.057858,0.13494 3.2146,0.82667,-2.9864,-1.5425,1.1935,-0.035265,2.2602,1.3276,0.6742,1.1738,0.80879,1.0237,-1.2921,-1.2169,-0.36233 -3.2172,2.9083,0.22366,-0.33558,-0.024069,1.9058,0.66831,1.9672,-1.5488,0.86361,0.79611,0.58585,-0.61524,-0.67247,-0.24025 -2.5632,-0.87769,-1.7367,0.25014,-0.61514,-0.7057,0.2443,-0.62166,1.8998,-1.0519,0.17052,-0.55922,0.13133,0.26213,-0.38737 0.64165,0.79514,0.61457,-1.8958,0.78293,-0.0204,1.0991,1.0189,0.45153,1.5325,-1.3035,0.77388,0.84607,-0.45817,0.066667 -2.7286,-1.5175,-1.93,-0.4865,-0.20249,-0.93327,-1.0387,-0.76952,0.81737,-0.90472,-0.67363,0.13936,0.6396,-0.3956,0.36566 -4.27,0.53684,-2.781,-1.5229,1.3061,-0.23716,1.0547,-0.021164,-0.81902,-0.64184,-0.37402,-0.47987,0.40149,-0.090309,-1.0312 1.2495,-0.34715,0.90256,1.5945,2.3052,-0.40383,-0.98934,-1.6703,-0.10705,-2.7859,-0.79673,0.70959,1.9323,-0.63285,-0.33254 2.4037,-0.29127,-3.1189,-0.85745,-1.2827,0.045627,2.2754,1.5181,-0.067548,0.40007,-0.45279,1.332,0.14613,-0.98541,-0.1199 -1.818,-0.24038,1.7249,0.43016,1.5164,0.95093,1.2873,-1.7145,-0.92585,1.4566,0.47366,0.077735,-1.0326,-1.8527,0.91413 4.0373,-1.3808,-0.91278,-2.4759,2.078,0.020753,3.1259,1.8785,-0.33341,1.9987,0.1703,3.3973,-1.8173,-0.83637,-0.53599 -0.92412,-1.482,0.096677,-0.51838,-0.6465,1.501,0.25823,-0.88563,2.0045,-0.18707,-0.93599,-0.22962,1.4429,-1.0773,-0.79232 -2.4723,1.9212,1.6928,-0.032339,0.56795,0.31987,0.20361,0.38478,1.4429,0.34848,1.3836,0.13168,-0.11325,1.0085,-0.62208 -3.6401,0.68327,0.25702,-0.54118,-0.30645,1.477,1.3454,-0.38272,0.33843,-1.424,1.1162,0.25569,0.3976,0.044194,-0.32509 0.085757,1.982,1.5537,1.1903,-1.0391,0.9923,-0.33363,-0.73459,1.4046,0.65573,0.0042546,1.1045,-0.65656,0.58167,0.79391 -0.20372,3.8663,-0.032455,-0.13589,-0.40115,-0.42317,-0.67102,-0.9447,-0.28554,0.22605,-0.83957,0.8233,0.70543,0.7107,-0.53566 -2.113,0.78728,2.8968,-0.99273,-0.49645,0.69049,0.11467,0.47368,0.59526,-0.5208,-0.1692,0.7321,-0.12432,-0.79682,1.8595 -1.1364,1.7002,0.24363,2.8375,0.59832,1.0028,0.12754,0.075638,0.71787,-0.80565,0.53687,0.57341,-0.87597,0.51194,0.77125 0.18256,0.31759,3.3759,0.86693,0.97042,0.13611,1.1772,-1.1774,1.5903,-0.10829,0.1881,0.36465,0.22288,0.045662,0.55708 0.10607,3.0551,-1.9079,-0.68101,1.1505,1.983,-0.58277,-0.081906,-1.8561,0.5222,0.68147,-1.4868,-0.48453,-0.25981,-0.76402 -4.0556,0.95795,-0.68261,-0.57367,0.11619,0.37757,1.8754,0.77529,0.29784,-1.3781,0.61033,-0.88406,0.43935,-0.8462,-0.17514 0.50191,3.3384,1.2972,1.1128,0.25013,-0.30716,-0.63247,-0.48763,0.11947,1.932,-1.5609,0.88676,0.022799,-0.24558,-0.871 -0.3273,2.2754,2.3818,0.21596,0.078501,-0.64524,-1.5135,-0.12994,1.2954,-1.0417,-0.17443,1.4663,0.85887,0.47591,0.17784 -0.49736,0.79695,2.262,2.3043,1.776,0.39015,1.1831,-0.78834,0.21352,0.043171,-0.23291,0.41677,-0.16716,-2.0153,2.0106 -0.29939,-0.28688,2.1251,2.2819,0.80918,0.12955,-0.070926,0.66646,1.9597,-1.0308,-0.32812,0.22834,0.015864,-1.2314,1.9937 -2.8321,0.32152,0.96677,-0.032391,-0.60552,-0.036369,0.47608,1.0636,2.0744,-1.1553,1.3046,0.1879,-0.23441,-0.47595,1.0037 2.4515,3.4114,-1.3419,-2.1487,-0.40518,-0.045731,-0.75143,-0.16823,-0.12448,0.050769,-0.33946,-1.2458,-0.95211,-0.80449,-1.0872 -1.7849,0.23975,1.6129,0.59109,0.44556,-0.46399,0.89529,-0.21458,0.91431,1.9084,0.30377,-0.052826,-0.63145,-2.133,0.9305 -0.83198,3.1499,0.46267,0.27065,-0.10021,1.9225,-0.83949,-0.016048,-0.41407,-1.5321,0.26092,0.53705,0.80834,-0.68983,0.44302 -0.12392,-1.6972,1.5146,0.065179,-0.1495,1.144,1.0742,1.2815,1.8746,1.327,-0.89361,-0.87047,2.0177,0.58504,-0.85451 -2.5615,3.0714,-0.049242,-0.068648,-0.62306,1.3854,1.4917,0.056101,-1.2518,0.2416,0.24245,1.2475,0.48598,-1.0562,0.70702 -2.5329,2.8324,0.10086,-0.26191,-1.0353,1.6307,0.95489,0.33396,-1.7841,0.98321,0.60107,0.63368,-0.35964,-0.89078,0.24718 -3.4539,1.8719,-1.0958,-0.71885,-0.22278,1.4534,1.5417,0.257,-0.91677,1.0635,0.76587,0.40363,0.69392,-0.9821,-0.34944 0.79809,1.52,2.5211,0.90944,0.14687,0.31225,-1.518,-0.4087,2.0752,-0.4909,-0.27215,1.2767,0.13696,1.1871,0.53852 -2.7696,1.7462,2.6854,-1.0097,0.08627,0.20917,0.84257,-0.54406,0.10299,1.1895,0.98875,0.018375,-0.15298,0.021415,0.034011 -2.6484,2.3348,0.7673,0.23199,-0.71961,0.3007,0.86716,0.29848,0.39557,0.74598,0.37929,1.4777,0.31272,-0.42994,0.9068 -3.7933,0.83733,-1.3403,-0.58566,0.13098,0.091036,1.6606,0.33079,0.6447,-0.27586,0.7152,-0.49688,-0.281,-0.82844,-0.9398 -2.1811,2.6674,0.57905,0.29814,-0.33727,2.1253,1.7204,-0.788,-0.80427,-0.8511,0.73987,0.21555,-0.065298,-0.53273,0.068103 -1.4346,2.3127,0.3137,-0.58188,-1.1733,2.0689,1.7872,-0.60742,-0.70337,-0.58052,0.2701,-0.52808,-0.4379,-1.3069,0.88437 4.7992,-1.3317,-2.0693,-0.8998,1.2567,1.2732,2.239,-0.78675,-0.072008,-0.02143,1.1336,-0.52311,-2.0411,-1.1838,1.2086 -2.8776,1.0713,-2.1592,0.32952,0.057803,1.0778,1.1788,0.38487,0.55073,1.7484,0.19389,-0.1327,-0.17664,0.56141,-1.318 -0.77031,2.0204,-0.76457,-0.015041,-1.3567,3.1103,0.7966,0.5003,-0.79204,-0.21051,0.51219,-1.5264,-0.12143,-0.10398,0.36345 3.08,-1.0992,0.98569,0.25889,0.94601,2.9175,-0.78042,-1.5136,-0.46154,-2.4671,-1.2429,0.92914,0.80373,0.38739,-0.61681 -1.3186,1.6691,-1.2525,0.56145,-0.85615,3.0401,0.9114,0.50189,0.16706,-0.30046,0.7392,-0.98681,0.44586,-0.065112,-0.37379 2.1232,-1.6679,-0.75658,-1.8984,2.124,1.449,0.63574,-2.4496,-0.3167,-1.1013,0.86313,1.6407,0.82606,-0.18071,0.71045 -2.7685,1.9811,-0.50024,0.85803,-0.48665,1.0633,1.3661,0.63632,0.13764,1.6836,0.65839,0.96748,-0.59096,0.41712,-0.48706 -2.8683,2.0477,0.52927,-0.81951,-0.7686,0.96393,1.7082,-1.268,-0.5386,0.41308,0.5522,0.96764,0.24229,-0.18253,0.15757 -0.81806,2.8855,0.84166,0.88737,-1.3252,-0.4223,-0.085221,-0.69343,-0.55895,0.46282,0.43551,1.3708,-0.23249,1.4699,-0.27886 3.2271,-0.8334,2.58,0.96246,2.6337,0.81008,-1.0128,-0.87763,0.98797,-1.6604,-1.3988,0.54044,0.43578,-0.11615,-1.177 3.1105,0.80916,-1.3795,-0.5112,-0.17859,1.092,-0.24907,-0.50182,1.7461,0.012904,-0.27688,0.7589,-0.53642,1.2808,-1.8184 4.6897,-0.29598,-1.2147,0.12632,0.80545,0.92705,0.526,-1.6938,0.097105,-1.1373,0.28918,-0.58169,-1.4275,0.80455,-1.7689 -2.2308,3.2892,-0.38893,0.20855,-0.51269,1.0102,0.031808,1.6199,-0.49871,0.05476,0.3033,1.4168,0.56254,0.46214,-0.063781 -2.1804,3.7712,1.1234,0.17434,1.038,-0.53703,-0.38823,1.481,-0.062179,-0.72364,-0.22841,0.95523,0.38451,0.84703,-0.14027 -2.4321,3.2998,0.10826,0.16833,-0.67296,1.8906,0.37458,1.5074,-1.2343,0.71292,0.43063,0.86688,0.28893,-0.075445,0.36098 -2.732,3.0384,-1.4446,0.38405,-0.057969,1.2054,0.75531,2.2151,-0.66735,-0.78295,-0.48874,0.60168,0.13523,-0.35798,-0.0016798 -1.1857,1.9805,-0.06121,2.0602,-0.41637,0.19667,-0.08195,-0.042868,1.2567,0.43938,0.31845,1.7497,-0.51398,0.85514,0.016724 1.254,3.8157,0.45597,-0.20976,0.36006,-0.46192,-1.2854,-0.75206,-0.14702,1.7329,-1.4982,0.1956,-0.13658,-0.30037,-0.95442 3.07,-2.0171,-2.6168,0.91675,-0.50098,2.866,1.9824,0.52111,-1.1673,-0.38338,-0.070979,0.1846,-0.49036,0.86393,-0.46197 2.2817,-1.787,-2.1698,-0.66561,0.045799,3.9241,2.0257,0.88006,-1.0592,-1.0755,0.19905,1.8527,0.1458,1.763,-0.14483 -0.81696,-0.58185,1.6174,-2.0842,-1.7315,0.85928,1.9118,-1.6147,0.99878,-0.087482,-0.80205,-0.31624,-0.91348,0.0091882,-1.025 -3.9859,0.52292,-1.986,-1.1156,-0.019327,0.2793,1.6975,0.3427,0.45369,-0.87818,0.071086,-0.59258,0.45645,0.43891,-1.1897 0.27295,-0.92483,2.1507,-1.8896,-0.83871,1.983,1.4097,1.4425,1.9677,0.11235,-0.93366,-0.33462,0.48015,0.22973,-0.56214 -1.9524,2.6265,0.58001,1.1332,0.023797,0.19136,0.72494,1.7342,0.38861,0.79527,0.28295,0.79342,0.14263,0.91292,0.40598 -2.2093,1.6006,-1.9173,1.0872,-1.0704,2.0937,1.3061,-0.056232,0.1341,-0.47439,0.43388,0.99994,0.095003,-0.5556,-0.23337 0.14805,2.2414,0.76273,0.76117,0.38231,0.047645,-1.8013,0.031196,1.6835,-0.32814,0.20345,1.0905,1.2003,0.72531,-0.25007 1.3031,0.98557,1.0884,1.2327,-0.22265,1.1379,0.7829,-0.22376,-0.116,1.2239,-2.0306,0.37339,-1.7094,-0.61633,0.39232 -2.6938,0.11172,-0.28351,-0.55017,-0.45873,0.4268,0.63084,0.2702,0.48973,-1.9749,0.54928,-2.021,1.05,-0.88665,0.71653 2.8341,2.2507,-0.18337,-3.0969,0.99988,-0.18653,-0.911,-0.05756,1.1283,-0.24082,0.45887,0.61485,0.19328,-0.58575,-0.51236 -1.9654,-1.4173,0.50736,-2.1617,-0.11911,0.69372,-0.25339,1.4784,0.60943,0.57523,-1.1771,-2.2903,1.5948,-0.51842,0.2756 -2.2743,0.38523,-0.65402,-0.83381,0.70888,2.0428,0.82774,-2.3708,-0.38986,-0.080761,-0.24489,-1.3651,-0.58351,0.35116,-0.4244 -1.9841,-2.3005,-0.60114,-2.7447,0.27863,1.0624,-0.98495,-1.9806,-1.2341,-0.47233,-2.464,1.3655,0.25428,-0.37254,-0.069364 -0.99046,-3.4902,1.1269,-2.3609,0.89404,0.90852,-0.86108,-0.33676,1.0306,0.76891,-2.9203,0.58636,0.094966,0.80322,-0.70527 2.8834,-2.6441,-0.61328,-0.063236,2.3373,1.7037,-0.030239,0.58872,0.38372,-0.13784,0.46842,1.3677,2.372,0.78439,-0.13928 -1.7777,1.4268,-1.0522,2.1959,-0.42553,1.0354,0.96226,-0.43256,0.13391,1.2227,0.53645,1.3909,-0.61025,0.4435,0.15734 -2.9884,-1.5531,-1.1189,-1.7061,0.077386,-0.42482,-1.4835,0.13806,0.8253,-0.88514,-0.82858,-0.29778,0.37746,-0.091517,1.067 3.3038,2.6301,-0.43689,-0.70073,0.40234,-0.2964,0.014692,-0.90055,1.1501,0.14325,-0.82477,-0.1156,-1.2722,0.27234,-2.5644 -3.622,-0.84158,-1.3674,-0.13991,-0.11923,-0.73015,0.55691,-0.78739,0.69501,-0.59026,0.51142,0.029537,-0.85848,1.1027,-1.5717 -1.5545,-2.0633,2.7873,-2.2229,-0.12176,-0.37594,-0.44865,1.7919,0.82133,-0.31351,-0.44338,-1.8873,0.99354,0.22901,0.73061 -2.6018,0.29884,-1.2112,-0.38283,0.79582,2.0403,1.0184,-1.5758,0.15844,-0.52614,0.088576,-1.3337,-0.686,0.53043,-0.98263 -1.5834,-2.0856,1.9293,-0.1837,-0.046373,0.0024303,0.41805,0.25206,2.409,-0.62194,-0.12618,-0.7412,1.0943,-0.19895,-0.58864 -2.453,0.51752,0.23162,1.9085,0.59634,-0.13157,1.2827,-0.37169,1.0229,0.09792,0.48824,1.1211,-0.99311,-0.76356,1.0019 3.0595,0.6617,-0.57541,-0.95491,1.516,-0.034882,0.44772,-1.1288,1.7462,0.34194,0.076845,0.6188,1.2057,-1.2777,-1.041 0.98774,2.0199,2.2198,-1.1869,1.4297,-0.86061,-1.783,-0.46816,1.2818,-0.28851,0.62249,0.087819,0.8084,-0.08461,-0.20111 -4.391,0.49913,-0.35811,-2.2594,1.3703,0.42624,0.34694,-0.55204,-0.78294,0.06645,0.20792,-0.47932,0.19719,-1.1376,-0.50195 4.8184,-0.70465,0.47804,-0.80154,2.5601,2.8644,0.73284,-1.6052,-1.0252,-1.5145,-0.59286,-0.47333,-0.34869,0.80182,-0.44061 -2.2154,-0.074994,1.1826,-1.7961,-0.77401,0.32078,0.46172,-0.30122,1.7547,-0.51257,-0.22784,-0.82029,1.4048,-1.0432,0.30516 -0.28092,-2.8109,1.1502,-2.4151,0.46409,1.6537,0.33404,0.28326,1.0469,0.27192,-2.505,-0.095103,0.76004,1.7656,-1.0597 -4.1364,-0.81007,-2.6061,-1.9917,0.98556,-1.3973,0.20977,-0.70562,-0.04174,-1.4781,-1.223,0.4803,-0.37047,0.4198,-0.68308 -2.7,-1.0582,-3.0915,-0.75717,0.26604,0.8217,-0.55183,-0.16412,0.11361,-2.3314,-1.0196,-0.55692,-0.39612,-0.28265,0.78065 2.3894,-1.1793,-0.017095,-2.4482,1.927,1.5778,2.1718,0.87309,0.72327,0.81447,-1.2633,3.1453,-0.36497,1.123,-1.9361 4.2939,-0.44632,-0.99825,-2.1075,1.6061,-0.5736,2.3843,-0.67228,1.487,0.80043,1.1565,1.9353,-1.7897,0.049527,-0.45356 3.0467,2.2598,-0.6321,-0.53142,-0.050323,-0.44981,-0.71743,-0.03975,0.50347,0.66794,-1.2671,-0.1193,-0.23465,-1.3645,-1.2712 -2.8886,0.19481,-0.49353,0.083448,-0.84182,0.3247,0.93129,0.57309,2.1869,-1.1543,0.72076,-0.45953,-0.39394,0.53856,-0.52479 -0.77633,-0.44126,1.9951,0.74939,0.56024,0.041661,0.93209,0.54507,1.8221,-1.312,0.28224,0.15133,1.9292,-0.21277,0.35199 -3.1361,1.0752,-1.3366,-0.090264,-0.86757,0.87523,1.5084,-0.25555,0.50898,0.11211,0.90351,0.85836,0.26236,0.56495,-1.2701 2.42,0.13709,2.2418,-0.23567,0.3236,1.6839,-0.44387,0.70967,1.2751,0.30675,-0.61596,2.0279,1.076,0.45085,-0.61878 1.1146,2.0219,1.0674,1.6576,0.45287,-0.24289,-0.77481,-1.481,0.65513,0.22068,-1.2159,1.1472,-0.42397,-1.6376,-0.07274 -3.3511,-1.116,-2.2861,-1.1836,0.0028392,-0.55838,-0.82671,-0.17737,0.72021,-1.53,-0.62306,-0.15016,-0.15925,0.31947,0.12945 -4.2452,-0.1226,-1.3549,-1.22,0.39512,0.77682,0.3878,-0.30768,-0.011289,-0.7996,-0.065119,-0.75934,1.2499,0.21001,-0.80722 -2.5548,-0.24715,-0.24205,0.4079,-0.65846,0.16767,0.19329,0.93783,2.3434,0.0038234,0.64825,-1.1151,0.27949,0.6161,0.038797 -3.1678,-0.00025892,-0.51209,-0.89993,-0.41714,0.6957,-0.39671,-0.21839,1.5139,-0.0011259,0.3982,-0.65074,1.3823,1.0964,-0.47273 3.4802,-2.7914,-1.9721,-1.3031,2.2777,3.4291,3.0984,0.16238,-1.2975,-0.99262,0.96586,2.2019,-1.4113,2.0366,1.1707 -3.1154,1.4714,-2.1498,0.64352,0.70924,1.9655,1.5092,1.6653,0.14409,0.63048,-0.2439,-0.28837,-0.043739,-1.2946,-0.11256 -3.0947,-0.39416,-2.7891,-0.52326,0.8346,1.328,-0.42963,-1.4423,0.30417,-1.0626,-0.59446,0.43021,0.49072,0.024298,-0.319 -2.9191,-0.81999,-1.9056,-0.68971,0.2596,1.6466,-0.13896,-0.69209,0.69039,-1.5053,-0.43509,-0.9254,0.7047,-0.58428,-0.057314 0.15482,3.2734,-1.1199,1.0145,-0.57148,1.8762,-0.0072608,-0.34743,-0.27475,-0.86771,-1.0828,0.20775,-0.23857,-0.33756,-0.17417 -0.55583,2.6204,0.47359,1.3594,-0.58016,-0.053095,-0.30045,-1.1771,-0.31895,0.9595,-0.16154,1.3412,-1.071,1.107,0.047219 2.5448,2.357,-2.7303,-2.3705,-0.3898,0.10149,0.16898,-0.011101,0.70954,0.18031,0.74858,-0.77605,-0.05498,-0.90572,-0.46328 0.20682,3.247,-0.00054505,0.342,-0.025107,0.82345,0.40743,0.28203,-0.028133,1.1938,-2.5161,1.0536,0.37475,-0.85653,-0.79849 -1.7915,3.0969,-0.1969,0.97872,0.70951,-1.6191,-0.46003,1.9664,0.35328,-0.20134,-1.0257,0.79297,0.032113,-0.52502,0.25628 -0.27885,2.926,-1.2277,1.406,0.86524,0.76689,-1.251,0.35805,0.34676,1.7313,-0.65476,0.32278,-0.34178,0.36777,-0.92093 0.59671,0.36134,0.049441,-2.4762,-0.58647,2.4531,1.3684,0.55817,0.61275,-1.4067,-0.20152,0.24216,0.54388,0.52301,-0.15883 0.18299,-0.73425,0.84797,-2.0136,-1.2439,2.3083,1.098,1.144,1.7002,0.087973,-0.76869,-0.51401,0.29571,0.75823,-1.0212 3.8831,-1.7538,-2.3244,-0.51341,1.9145,1.8446,2.7926,0.74872,-0.18328,-0.42933,1.3707,1.1373,-1.8573,-0.60864,0.63147 -1.6786,1.0067,0.42717,-1.34,-1.0113,0.48845,1.7806,-1.6017,1.031,0.62127,-0.39518,0.12396,0.30756,-1.3865,-0.18554 1.0117,3.0669,0.63512,0.92599,0.25828,-0.28482,-1.2143,-1.6559,-0.63472,0.54148,0.47616,0.14053,-1.016,2.1517,-0.65896 4.4424,0.15255,-1.1893,-0.45691,1.6997,1.3585,0.82974,-1.8986,0.28399,-0.36211,0.095823,-0.37074,-1.2343,-0.20136,-1.1683 2.6807,-0.73635,0.69328,1.2068,2.6007,0.048746,-1.2915,1.2912,1.1794,0.61685,0.21203,0.18,2.0652,1.7601,-0.082271 -0.77599,2.8515,-1.7769,1.0331,-1.2816,2.5329,0.042347,0.55603,-1.2331,0.33624,-0.89768,0.22991,-0.34825,-0.31363,0.49881 0.79181,2.1891,0.23228,0.88678,1.6181,-0.61188,-1.321,-1.329,1.6863,0.62119,-0.030853,-0.38298,1.0512,0.93726,-0.35559 2.2722,1.8781,0.43921,1.3376,1.8846,0.38285,-1.7243,-2.5036,0.3004,0.61563,0.60797,-0.57777,-0.26035,0.24701,-0.17769 2.965,1.428,-2.3352,-2.3686,1.2565,0.35838,1.5265,0.3084,0.5476,0.97246,0.65716,0.62608,-0.17928,-2.135,-0.88885 2.2243,2.3859,-2.0738,-2.1955,-0.23444,0.37439,-1.1132,0.1494,0.72447,0.17377,1.1592,-1.4781,-1.0422,-0.20152,-0.14882 -3.0039,-0.49065,1.8833,-0.21691,0.13369,0.35949,0.78194,-0.83049,1.6973,-0.16331,1.4992,0.22886,-0.56828,1.4326,-0.31954 3.9181,0.62017,-1.8482,-0.75641,0.13506,0.20345,0.92255,-1.0527,1.3317,1.6258,0.63305,-0.72613,-1.1093,0.50491,0.48499 -0.80193,0.7534,2.6694,-0.747,-0.94312,1.2318,0.80228,0.1215,1.5496,-0.71611,-0.2915,-0.080564,1.3873,-0.23605,0.43916 2.3336,0.5563,0.50902,-1.7497,1.0381,-1.5675,-1.9566,0.52337,-0.69136,-0.09987,2.1123,-0.11558,1.6011,-1.6514,-0.5463 4.4341,0.78257,-0.23322,-0.64992,1.3046,-0.8213,-0.067702,-1.8676,0.034976,1.2417,0.28058,-0.15265,-0.17469,0.99368,-0.97399 -2.7174,0.7831,-1.2662,-0.42276,-0.49623,1.731,0.99391,-0.88922,0.84336,-0.86819,0.8579,-0.65459,1.2149,-0.12904,-0.28802 1.9632,2.9399,2.1224,-2.6752,1.9034,-1.035,-0.3452,2.0212,-2.6141,0.14964,0.51541,-1.0163,-1.3895,-0.23109,0.16718 0.94016,-0.17702,0.68864,2.2649,-0.85346,1.7758,-1.219,-0.84969,0.65473,0.28256,-0.12594,0.58331,-0.51689,-0.27361,-0.057144 -0.65875,2.955,-1.6509,0.086465,-1.1446,2.1858,-0.91131,0.55548,-1.6201,0.45221,-0.47983,0.21396,0.035492,0.10748,0.031697 5.1489,1.192,-0.31362,-3.679,1.2392,-1.5614,0.94169,0.033802,0.41914,0.14016,1.181,0.5096,-1.34,-0.021024,-0.96163 2.433,1.1913,1.9856,-1.6971,0.17579,0.72346,-1.1953,1.506,1.5237,-1.0469,-1.3804,1.2382,1.0544,0.13674,-0.2321 2.9936,2.5841,-0.87679,-1.8935,0.68527,-0.57186,-0.28048,-1.472,0.7463,1.8425,0.78534,-0.88374,-0.70336,0.98369,0.18383 -1.2574,2.4959,0.76296,0.71954,-0.92618,0.34449,-0.21802,-0.19656,-0.23958,-0.10993,0.59279,1.8937,-1.7637,0.069314,-0.10044 1.116,1.6077,-1.6864,-0.58033,-0.16658,0.40945,-0.96468,-0.36192,0.8083,1.957,2.7397,0.40242,0.65254,1.6159,0.55577 0.73066,2.1044,-0.29803,2.1974,0.55566,0.93501,-1.1182,-2.1011,0.14213,-0.23481,-0.17569,0.36736,-0.38655,0.40761,-0.21009 0.80528,1.9418,-0.76284,1.8086,0.33943,0.15231,-2.0369,-0.68612,0.46674,1.5259,1.1295,-0.14782,0.45086,1.5339,-1.1768 0.82031,2.5133,0.74454,0.067614,0.037119,0.23983,-2.3571,-0.68244,1.4146,0.13024,0.13626,0.71775,1.1,1.2941,-0.9391 1.3469,2.594,1.0098,1.3917,-0.75034,-0.43456,-1.4702,-1.2215,0.18687,0.55434,0.040893,0.27539,-0.81917,1.663,-0.17875 -1.9307,1.6377,-2.3151,1.3325,0.071938,0.92882,0.8491,2.3464,0.5016,0.48671,-1.3255,0.29796,-0.80868,-0.093249,0.51366 -1.0863,3.0865,-0.45996,1.1187,-0.72613,1.4833,0.32983,0.49809,-2.3291,-1.0022,0.18914,1.2483,0.65512,0.94245,-1.2848 3.3558,-0.4638,-2.5715,0.19355,0.48336,1.0443,1.874,-1.071,-0.5815,0.37715,-0.063856,-0.21072,-1.2545,-1.1459,0.94289 -2.0858,-0.69281,1.2817,-2.0817,-1.0323,1.696,-0.12429,-1.4464,-0.13906,0.48606,-0.72202,-1.3726,0.30293,1.8681,-0.45702 -3.3263,1.7632,-1.5968,-0.27122,-0.19862,0.9779,1.5296,0.66234,-0.38724,0.32716,0.42799,0.11767,0.8823,-0.9216,0.14493 -1.9278,-0.22708,2.1223,-1.148,-1.3016,0.65477,1.1912,-1.0577,0.80957,0.96079,-0.88863,-0.24167,-0.21777,0.26213,-0.0010595 2.1795,-1.5554,1.2609,-1.6028,0.96285,-0.3561,0.70564,1.6945,0.31227,0.97833,-0.648,0.36866,-0.47835,-0.45653,-0.06249 -3.062,0.92749,2.1423,0.34101,0.3554,-0.23363,0.80539,0.60113,1.2036,0.7882,0.40505,0.17884,-0.043754,0.40004,0.26151 -3.2185,1.6887,0.97347,-0.053412,0.036905,0.78582,0.83426,1.318,0.82481,-0.65951,0.88265,0.4605,-0.46197,0.44433,-0.56517 -2.7191,2.8467,1.4873,-0.32135,-0.28792,1.4044,0.98081,0.20492,-0.57935,-0.072788,0.15382,0.85165,0.43954,0.08137,0.46247 0.48231,-1.1644,2.5457,1.7332,2.3498,2.1106,-1.0526,0.22898,-1.5454,-1.6643,0.78667,-0.24848,0.71004,1.6689,0.8415 -2.9523,-0.39945,0.93151,0.32858,0.12359,-0.40076,0.12805,1.1215,1.8328,-0.33414,0.88982,-0.95963,-0.4427,1.3475,-0.77321 -3.5619,1.9654,1.0864,-0.81584,0.36714,0.061268,0.94019,0.77863,-0.38196,0.93622,1.4907,-0.15285,-0.083619,-1.228,-0.22529 -3.2199,1.1056,-1.9758,0.47903,0.31379,1.5729,2.4231,0.49029,0.73786,-0.068203,-0.61252,-1.1055,0.32143,-0.19425,-0.71693 -2.2687,1.0892,2.5032,-1.8925,-0.91949,0.80333,1.2116,-1.9953,-0.057619,0.50666,0.86777,-0.22634,-0.93722,0.80638,-0.024333 -1.8627,-1.8348,2.107,-0.5181,1.592,-0.18871,-1.1233,1.1943,1.4765,-0.4752,0.67403,-0.5908,-0.28215,2.8564,0.18839 -2.8911,-0.98954,2.6748,-2.1536,0.31322,-0.39515,0.32835,-0.74756,1.337,0.35045,-0.40458,-0.73301,0.19056,-0.93137,0.53738 2.0413,2.1964,-1.8019,-0.90692,0.061112,1.2527,-0.84646,-1.3766,-0.080712,-0.35182,1.3439,-1.3362,0.48428,-0.94161,-0.095767 -3.0944,0.013213,2.2831,-0.46914,-0.21892,0.60508,0.45931,0.13706,1.7012,-0.54054,1.2104,0.06693,-0.22923,0.84236,-0.00044411 -3.9009,-1.1996,0.15424,-1.8224,0.38675,0.43613,-0.69402,-1.8323,0.57621,0.33839,0.42788,0.60904,0.056851,1.1314,-0.75643 0.37655,0.98681,0.95603,1.713,-0.50689,0.95055,0.59961,-1.4739,0.93034,-0.45951,-0.70099,1.1475,-0.5756,-0.95179,1.0991 -2.3127,-0.94637,2.7258,-1.7506,-0.053528,-0.22042,0.67612,-0.99367,1.5463,-0.71603,0.035805,-0.77611,1.3818,-0.19711,0.064484 -2.7532,-0.1681,-2.7351,-0.54021,0.17633,0.99434,0.20704,0.35518,1.1812,-0.37282,-0.75043,-0.36859,-0.11208,-0.21526,-0.46553 -3.0069,-1.5621,-1.6196,-0.877,0.92972,0.8748,-2.0764,-0.61088,-0.99723,-1.5191,-0.62028,0.46578,0.21901,0.080683,1.5978 -3.3582,-1.8796,0.049553,-2.025,0.16933,1.3747,-1.5925,-1.1998,-0.62627,-1.2424,-0.50648,-0.32258,0.70041,0.53814,0.48478 -2.6309,0.66435,0.68352,0.77191,0.79059,-0.27639,1.9063,-0.45959,1.542,1.3736,-0.27093,0.59911,0.85535,-0.016318,0.10127 -3.3286,-1.5427,-1.0051,-1.5764,0.97347,0.93165,-1.8511,-1.1178,-0.50529,-1.6798,-0.54381,0.56829,0.5401,0.67064,1.3417 -1.5767,-3.3825,-1.6642,0.78361,1.1304,-1.4963,-1.7955,0.20894,-0.053572,-0.34378,-1.8329,0.22825,-1.0836,-0.26603,1.7444 -3.0503,-1.8669,-1.4847,-1.3461,0.85813,-1.3421,-1.6846,0.58953,0.67526,-1.5863,-1.0476,0.43778,-1.0525,0.87057,1.3512 -3.1043,-0.23039,-1.2592,-1.4562,0.67239,-0.61547,-1.0727,-1.5279,0.21045,-0.97051,-0.41551,1.0401,0.95968,0.42774,1.135 -2.3651,-3.4895,-0.36238,-0.57483,0.90189,-1.7049,-1.6524,1.2536,0.42038,-0.75726,-1.3752,-0.78534,-1.0507,0.85778,0.99755 -2.1405,1.5227,-2.4286,1.0198,-0.7208,2.4719,1.4409,1.1201,0.77122,-0.11151,-0.52324,-0.19524,-0.076257,-1.2241,0.05313 2.1474,2.463,0.0046047,-1.4766,1.5656,-0.34913,-0.36645,-0.55729,0.56533,-0.4371,-0.76456,-0.26664,2.2985,-1.8666,-1.3869 -2.5177,-3.4474,1.0215,-1.1097,0.72423,-0.73276,-1.4773,0.29031,1.1833,-0.064606,-1.4958,-0.96295,0.63279,0.2146,0.60804 1.3117,2.2205,-0.47585,-0.062277,1.6249,-0.51174,-1.8555,-0.62729,-0.28129,0.72602,0.57432,-0.068845,0.34558,-1.0223,-0.051233 -3.5656,-1.8074,-0.33774,-2.1659,2.0681,-1.1435,-1.6395,0.15031,0.39869,-0.39487,-0.38774,0.086817,-0.54735,0.66714,1.3709 2.0727,3.0758,1.8034,0.93741,0.604,-0.40665,-0.21872,-1.1072,0.14431,1.2643,-1.8581,0.37183,-1.0651,0.42299,-0.62536 -2.5354,-2.5402,0.6035,-2.1016,1.7365,0.067355,-2.3021,0.43695,-0.35502,0.29044,-1.4113,0.75845,0.62142,2.2123,1.8249 -0.3542,1.2349,0.80888,2.1545,0.3089,0.74578,1.475,-0.91884,-0.048852,0.42846,0.32047,1.4686,0.16384,0.32926,0.097844 -1.2283,2.0984,-0.14882,2.1892,0.33435,0.25815,0.12149,0.76557,1.3364,0.029325,-0.26783,0.5823,-0.48677,-0.66053,1.1884 -2.3704,-2.8422,-0.88814,-1.4765,2.4771,-1.2783,-2.1002,1.7111,-0.72728,-0.6217,-1.4027,0.95491,-1.0732,1.105,2.483 1.2099,0.46535,0.22242,1.6828,0.053814,2.2894,-0.10261,-1.0668,0.86462,-1.4637,-1.3509,0.58875,0.85485,-0.98,0.32929 -1.3145,0.89966,0.079419,2.0076,0.85837,1.7297,-0.2082,0.79937,1.3128,-1.5069,0.27755,0.44514,-0.43657,0.33613,1.294 0.81075,-0.42587,1.0514,1.5019,0.80113,2.3351,-0.68198,-0.74364,0.45016,-2.5557,-1.2663,0.80314,1.4653,-0.77601,1.1222 0.19995,2.7772,1.5193,1.5517,0.31425,0.48712,-1.1599,-0.21213,-0.63174,1.2512,-0.3287,0.5218,-1.2545,-0.83693,0.45533 -1.3418,2.1468,0.26335,0.45107,-1.1997,1.622,0.097468,0.022787,0.23928,-1.201,0.68949,0.59542,1.0986,-0.23749,1.0546 -3.0336,-0.56131,3.0408,-1.6696,1.0135,0.39137,-0.0053269,0.78216,1.1054,-0.87798,0.9486,-0.82328,0.19604,1.4171,0.46945 4.2165,0.55076,1.0094,-2.2481,0.54637,0.093887,-0.78162,-0.45204,1.3683,-0.44493,-0.02409,1.6385,-0.74997,0.41201,-1.7807 3.6383,-0.54217,1.1503,-1.068,1.433,4.1238,0.97164,0.34587,-1.2828,-2.5526,-1.3636,1.7037,0.44088,2.1942,-1.1851 -2.5178,-2.0764,3.9932,-1.8451,1.649,-0.1232,0.0039649,1.1777,0.47632,0.59083,-0.24586,-0.42289,0.1885,1.8487,0.18899 -4.0579,0.65722,-0.5505,-0.59995,1.0326,-0.14493,1.3184,-0.42563,-0.057943,-0.18233,0.1335,-0.97193,0.58343,-0.56804,-0.43808 -2.1843,-3.0078,0.080225,-2.7048,2.2853,-1.8151,-2.1299,1.1332,-2.0898,-0.32141,-2.2386,0.40779,-0.21332,-1.0457,2.1081 -3.5878,-2.8627,2.7491,-2.2485,2.1491,-1.224,-0.63693,0.72629,-0.28184,-0.28307,-0.74656,-1.0063,-0.32338,0.63518,0.70768 -2.2149,-3.3773,2.1172,-1.7163,2.1064,-0.43698,-0.81328,-1.5794,1.0915,0.94386,-1.3768,0.37288,0.093849,0.25268,0.083646 -0.81927,-3.7148,1.1561,-1.682,2.7342,-0.28055,-2.2239,-0.88693,0.1645,1.0012,-2.7592,1.6903,0.083928,0.51012,1.4869 -2.2215,-3.8532,2.0309,-2.4766,3.0985,-0.67388,-2.1093,0.063598,-1.1121,0.65837,-2.0213,0.5454,-0.12755,1.5186,1.1386 -3.7687,-2.8255,0.52592,-2.5061,1.9402,-2.3588,-1.321,0.41244,-0.69323,-1.1732,-1.6197,-0.74627,-0.477,0.06634,1.1126 -1.7355,-1.7867,3.7082,-1.8723,2.4652,-2.1496,0.86716,1.5746,-0.63783,-0.87312,-0.73669,-1.1454,0.39833,0.33393,-0.36454 -2.8643,-1.129,1.5964,-2.7881,1.286,1.522,-0.4152,-0.61148,-0.48894,-0.72034,-0.27602,-1.3904,0.66753,-0.054707,1.0005 2.5734,0.62932,-0.66692,-0.69526,1.0544,0.57313,0.85343,-1.0431,-2.2887,-2.4449,-1.842,-0.3155,-1.0413,0.35382,-1.5766 -3.4241,1.6076,-0.81847,0.011345,-0.54127,1.9854,1.2908,-0.0015138,-0.91613,0.23757,0.83454,0.34674,0.32501,0.020384,-0.70526 2.3076,1.696,-2.3437,0.34228,0.48815,0.62804,0.081414,-1.1191,-0.39911,0.79291,-0.77366,-2.1278,-1.2376,-1.2295,0.05734 2.5548,-0.60707,-0.81137,-0.27032,2.4556,2.3291,0.62871,-1.4888,0.0043455,0.049498,0.90899,-0.45052,1.1654,-1.1616,1.8556 2.0723,1.9622,1.7145,-0.34997,-0.16307,0.12923,-0.20074,0.14091,1.759,-0.4432,-1.6073,1.5387,-1.9316,-0.7647,-0.97776 -3.0467,0.00018276,-0.66664,-0.94974,-0.40104,0.42028,0.071028,-1.8895,0.40642,1.0701,0.89188,1.2605,0.070769,0.76288,-0.92609 -3.5765,1.7381,0.28877,-0.39034,0.48915,1.0963,1.6313,0.38644,-0.31273,0.76933,0.86265,0.21236,-0.79818,-0.028375,-0.93748 -0.91456,0.40193,0.2425,1.0326,-1.0401,0.50816,2.0029,-2.3583,0.74556,1.1567,0.0040784,0.21434,-1.1921,0.052682,0.022709 0.65828,0.6684,-0.31869,-1.2827,-0.70123,0.65889,-0.78452,-0.89707,-2.3592,-2.9516,1.3779,0.12349,0.3476,1.3207,-0.16224 -0.34963,1.9865,0.60415,1.7283,-1.537,1.5816,0.39585,-0.56496,-0.19497,1.0565,0.21412,0.057813,-1.6759,0.023443,0.93925 -0.80715,3.156,-1.5563,0.78989,-0.37584,0.86955,-0.92879,0.25049,0.10849,0.28466,-0.21296,0.90578,0.73557,0.94371,-1.3392 3.1106,-1.3325,-1.1814,-1.0777,2.1217,2.5483,1.0474,-0.97977,-0.078676,0.041815,0.31411,1.0534,-0.38062,-0.95322,0.69433 0.40357,1.2306,1.3997,2.3849,2.6917,-0.18314,-0.82455,-1.2967,-0.20905,-1.9056,-0.22406,0.95219,0.35917,-0.012861,0.13159 1.1746,2.9234,0.2438,-0.21966,-0.18357,0.25273,-1.0354,0.1783,1.1162,0.32022,-1.7548,0.80136,0.35112,-1.8132,-1.0098 -0.23259,3.396,0.66451,-0.90773,-0.81848,0.30283,1.1598,0.25956,-0.76233,-0.43034,-2.2372,1.1179,0.12101,-0.67836,-0.24129 0.35848,1.2448,-0.82576,1.8629,1.425,0.014019,-1.7559,-0.35476,2.191,-0.64017,0.14371,0.26859,0.29269,-0.35489,0.089772 3.0561,-0.044603,-0.18413,0.39683,2.5826,1.3914,-0.84442,-1.2639,0.78002,-0.30813,0.16485,-0.433,0.99352,-1.4924,-0.075611 -0.71375,0.95791,1.0814,2.7959,1.283,1.1677,-0.18248,0.32331,1.3076,0.15975,-0.1162,0.19885,-0.35917,1.2029,1.2537 -0.96712,0.53292,-0.44608,2.8326,1.0329,-0.0058783,-0.12639,-0.23548,0.90117,-0.38527,-1.0185,1.1354,-0.4801,0.3313,0.67221 0.50698,1.8866,0.1987,1.1055,-1.0926,-0.0040365,-1.2698,-1.0284,1.2365,0.10573,-0.65813,1.5028,-0.8961,0.16968,-0.27042 3.1342,1.549,-1.7191,-1.227,0.20154,0.29971,-0.51143,-0.57668,1.596,0.8528,0.027848,-0.44309,-0.88189,-1.1559,-1.6157 -0.49027,2.7808,-0.45591,0.56777,-0.053423,0.062248,-1.8869,0.44764,0.97801,0.86981,0.16454,1.2239,0.18419,-0.50802,-0.38008 0.6606,1.2081,-0.13352,0.8905,1.1593,0.027433,-1.9374,-0.17997,2.9316,-0.032266,0.28362,0.45094,0.66491,0.17827,-0.16899 3.3755,-0.018361,-1.8999,-0.23783,2.3583,2.9485,1.144,-1.433,-0.05332,-0.75286,0.69002,0.10448,-0.031732,0.19875,-0.70738 -3.0524,-0.65456,2.8385,-2.5068,1.6211,-0.0787,0.047811,-1.0632,-0.21683,-0.28164,0.45898,-0.29665,-0.74142,1.6864,0.11518 -0.86941,2.448,1.1269,1.8647,-0.38794,0.30278,0.36394,-0.81665,0.67699,0.71485,0.1006,1.7793,-0.59246,0.58083,0.26933 -2.6724,0.32327,-0.096644,2.0412,0.63812,-0.0849,1.719,0.030424,1.4405,-0.58908,0.5138,0.32011,-1.0762,0.3923,0.53358 -1.6217,2.4467,0.6924,1.8434,0.13332,0.34287,1.0525,-0.22635,-0.0015768,1.7291,0.092989,1.594,-0.71759,0.58322,0.23016 -0.22484,1.3731,1.421,2.7094,1.7726,-0.18349,0.5047,-0.55913,0.17356,-0.2978,-1.0622,1.0409,0.39844,-1.9526,1.1451 0.97536,2.7223,-2.2253,-1.0854,-0.57988,0.22338,-0.55455,0.85308,0.31263,1.1524,-1.26,-1.6747,-0.051261,-0.22397,0.14415 4.3048,1.1076,0.6866,-1.9414,1.2754,1.0209,-0.32231,1.1592,-0.46396,0.86016,-1.366,-0.12718,-0.78658,-0.043788,-2.1576 -3.2932,3.0492,0.62627,-0.19294,0.39315,0.92881,1.1373,1.5264,-0.74294,1.2288,0.54921,0.53556,-0.2698,-0.6738,0.10388 -1.1297,1.8592,1.4215,0.22787,-1.6511,0.7023,-0.68639,-0.22234,-0.5052,-0.24923,0.53653,0.78768,-0.8607,1.4908,0.097588 2.8128,-0.58145,0.54312,1.4661,0.96545,1.9741,-0.25994,0.86884,1.1381,-0.50545,-2.0057,1.1069,0.50064,0.51671,-0.82106 1.4061,2.3771,-2.0095,-3.1158,-0.45854,0.54141,1.5426,0.42244,-0.32847,0.78884,0.80609,0.98359,-1.0867,-0.42548,0.88761 1.2331,1.1575,1.7382,2.0785,0.71381,1.7102,0.16384,-2.1309,-0.91127,-0.91714,-0.46476,0.25571,-0.20935,0.27951,1.0932 3.6257,1.1544,-0.84707,-2.0987,0.41184,0.4834,0.15899,-1.7796,1.6516,1.2689,1.4245,-0.13982,-0.81037,0.23168,0.73226 -2.403,0.44057,-0.83462,0.56444,0.4247,1.3101,1.0085,-0.72991,0.82085,0.93958,1.0524,-0.83495,-1.466,0.45514,-1.1104 2.7245,-0.20908,-2.6737,-2.3613,0.44687,1.1123,1.9683,2.546,0.86495,2.2885,0.81825,2.1738,-0.78776,-0.38263,0.37932 -1.9537,0.78262,0.94919,2.2551,1.2362,0.61495,1.8634,-1.6487,-0.1348,0.51896,0.40926,1.0724,-0.27645,-0.17263,0.95469 -2.8744,1.4893,1.2794,1.1098,0.78745,-1.3756,1.5772,1.5002,1.1856,-0.19651,0.33616,0.51298,-1.0546,0.025848,0.41291 0.12198,1.2833,0.66185,2.7635,2.1521,-0.26841,-1.1292,-0.19267,1.242,-1.7961,0.086153,0.40852,-0.42107,0.60617,0.38919 -2.9369,-1.2108,-0.84487,0.47446,0.5606,1.2015,0.062583,-0.83405,1.7151,0.39485,0.85986,-0.69073,-0.51955,1.7768,-0.82208 -0.44115,2.0268,-0.90744,2.1817,-0.15122,0.5747,-0.78935,-0.85417,0.16384,0.35183,-0.31714,0.70242,0.19586,1.0991,-0.6417 1.9284,1.6381,0.8109,1.4575,1.6604,0.50281,-1.184,-2.5303,0.35652,-0.48998,-0.45345,0.50225,0.029449,0.0046901,0.1747 -0.42828,4.1408,-1.3033,-0.76835,0.94262,0.74,-1.846,0.5532,-1.0951,-0.22131,0.32478,-0.32501,0.84652,-1.1356,-1.0562 1.3091,-0.50343,4.4291,1.2332,1.9252,0.77162,0.37876,-0.66081,1.3521,-0.36764,0.34714,0.85782,-0.14653,0.84133,0.61116 -2.2006,-4.1286,1.305,-0.47209,2.2263,-0.40478,-0.90591,0.47195,1.2504,0.45871,-1.3062,-0.85835,0.33615,1.7939,0.38174 0.83537,3.5677,2.087,-0.39549,-0.1801,0.24437,-1.1773,-0.89184,0.18294,-0.31798,-0.19075,0.79101,-0.79942,0.87607,0.15032 -0.95943,-2.3019,3.6742,-3.7147,1.6331,0.12302,-0.30452,-0.44804,-0.50236,-0.16026,-0.90171,0.27596,0.53696,1.6893,-0.476 -2.0387,-1.0415,-1.0829,-0.87306,-0.21102,0.94864,-1.032,-1.3155,1.4771,1.0488,-0.77138,0.58131,0.43542,0.86847,0.55523 5.0302,-0.68918,-0.46289,-2.9612,3.7381,0.67989,1.8303,-0.74009,-1.1353,-0.63741,0.85592,2.1134,-0.90196,-0.38883,-0.34863 -2.7565,-2.2494,-0.011767,-0.65966,1.7192,-1.1916,-0.86629,-2.3057,1.3568,0.30783,-0.62463,1.2403,-0.25159,0.8569,0.043578 0.7048,2.6397,-0.40191,-1.6762,0.21186,0.46527,-2.0307,0.60983,-1.6149,0.87865,2.0269,-0.79795,0.56239,-0.16356,-0.18145 0.7616,-3.5732,2.8091,-1.2025,1.22,1.6514,0.97309,-1.8555,0.15079,1.4708,-1.4109,-0.60045,-0.66699,1.5784,-1.0583 2.6769,1.9924,-0.27858,-0.57067,2.613,-1.3068,-1.5039,-0.48076,-1.8157,2.223,1.2809,-1.3816,-0.86189,-1.1665,0.47248 -1.7764,-1.5943,3.3513,-0.42245,1.3125,0.096826,0.29903,-0.91591,0.88755,0.93341,0.89529,-0.30095,-0.24815,0.66326,-0.47709 -3.8913,-1.4081,-0.1919,-1.7614,1.596,-1.0241,-0.6465,-0.023094,1.1339,-0.75878,-0.10473,-0.30402,-1.1749,1.167,-0.098136 -1.5235,0.12916,1.1957,0.64055,-0.70396,0.77235,-0.10999,1.881,2.1147,-0.085912,1.249,-0.52685,0.59445,1.5599,0.39865 1.747,1.5773,-1.1787,0.54243,0.89328,0.19773,-0.80341,-1.646,1.5411,1.3348,0.39379,-0.99658,-0.30973,-0.50282,0.39308 0.69023,1.5377,2.0236,-1.9484,1.1503,0.81714,-1.2231,0.53278,0.75403,-1.1283,0.94382,0.53533,-1.1745,1.4051,0.61547 -1.7955,-3.0097,2.3299,0.89524,2.2068,0.41055,0.35488,-0.25823,1.3503,-0.43158,0.62471,-0.87893,-0.14949,1.4087,-0.11825 -2.6861,-0.46993,2.2514,-1.1187,-0.10483,0.6085,0.012403,0.21972,1.0753,-0.68179,1.7858,0.0019847,-0.02501,2.0001,-0.64774 -1.3341,-3.6946,0.97796,0.4281,1.3436,0.77866,-0.15386,0.16511,1.5682,-0.17594,-1.2119,-1.1582,1.2984,0.54793,-0.54024 1.7657,1.6047,2.5988,0.7843,-0.51196,-0.27827,-0.74345,-1.4115,0.13449,0.36868,-0.58052,1.343,-1.8348,-0.43817,-0.26827 -3.4486,-2.1602,-0.18458,-1.5867,0.68407,-0.2502,-1.5814,-0.4513,1.4966,-0.59894,-0.29525,-0.036454,0.064618,1.1753,0.32801 1.1374,1.8954,-0.73862,0.21642,0.85977,0.58493,-0.30644,-1.532,0.74844,1.2439,0.28403,-0.44291,-0.17309,0.94522,0.33243 -3.1029,0.4768,-2.6493,-0.79134,-0.26361,0.74313,0.6819,-0.46345,0.8849,-0.45214,0.36307,0.34792,0.42419,-0.26231,-1.2519 0.22685,2.0531,2.647,-1.5513,-1.3281,-0.050297,0.86253,-0.28379,-1.4752,0.9181,0.56024,-0.9727,-1.2695,1.262,0.013758 3.9832,-0.38761,0.17763,-3.0004,3.2166,-1.5221,0.83921,1.5856,-2.3769,1.5235,1.9289,-0.23513,-1.7407,-1.4295,1.1828 -0.97131,-4.3338,1.4013,-1.3077,1.5672,0.4465,-1.3918,-0.66013,1.0206,0.72188,-2.5925,0.88317,0.90514,0.97134,-0.16196 3.6183,-1.6323,-0.81742,-1.7563,1.4694,3.3781,1.3247,-1.3879,-0.33983,-2.1392,0.67546,-0.1671,-0.39574,0.81031,-0.16531 -2.7679,-1.5353,1.8972,-2.9177,0.73698,1.4487,-1.4663,-0.46992,0.20903,-0.1445,-0.34512,-0.6231,1.267,1.5306,0.24138 0.97674,1.8618,0.045387,2.2972,0.27195,1.8797,-0.63135,-1.8244,-0.25603,-0.23435,-0.50771,0.18981,-0.028104,0.025719,0.60879 -2.9793,-1.5445,-0.54454,-0.93594,0.044137,0.37644,-0.87801,-1.6583,1.6984,0.05789,0.15764,0.50158,-0.017341,0.92806,-0.19106 -1.6326,2.6844,-0.88695,0.64291,-0.59495,1.3938,-0.61622,1.5167,0.088353,-1.1504,0.073487,0.27555,0.85914,-0.99446,0.62678 -1.1169,-1.32,1.5469,-2.4789,-0.97187,1.0588,0.25735,-0.90677,1.7918,-0.14504,-1.1316,-0.76101,-0.013647,0.10029,-0.22569 -2.9155,-1.3551,-0.042031,-0.84597,-0.7088,0.73394,-0.36251,-0.51794,1.6928,-0.024881,0.60119,-0.46134,0.80383,0.83849,-0.0588 -2.2676,-1.3239,0.53764,0.65896,-0.062813,0.98784,0.13518,-0.50352,2.266,1.0867,0.23637,-0.31818,0.22534,0.60944,0.43057 -2.3524,-1.2886,0.68536,-2.1427,-0.40366,1.6477,-0.86523,-1.3219,0.81936,0.20091,0.049055,-0.32768,-0.03649,1.1991,-0.0092381 0.68022,-2.3138,3.6723,1.0405,1.6516,1.5811,1.6214,0.57832,1.2297,-0.40605,-1.0962,-0.26677,0.19183,-0.87758,1.0702 -0.11861,-2.674,0.90621,-2.0014,-0.025144,1.3508,0.50713,0.85064,1.5319,1.0294,-2.4365,-0.57523,0.59955,1.225,-1.2991 4.7858,0.68035,0.13185,-0.88524,2.1412,0.074614,0.78458,-1.7285,1.1258,-0.72064,-0.30265,0.25181,-1.6048,-0.38622,-1.7174 0.096317,-2.9848,2.4546,1.0172,1.706,2.8303,2.0395,-0.13753,-0.46594,-0.32868,-0.87144,-0.66823,2.0293,0.78058,-0.22469 3.6063,-1.9623,-1.5277,-0.024632,1.9991,0.28983,2.7277,1.5783,-1.1247,1.019,0.5579,0.69081,-1.5604,-1.0651,0.58339 -1.6782,4.0026,-0.52683,0.23316,0.59081,-0.056557,-0.83047,1.8419,-1.3803,-1.2099,-0.71325,-0.069429,1.0703,-0.75881,0.23714 0.33202,3.4039,2.0674,-0.61314,2.1145,-1.5624,-0.504,0.36287,-0.54575,0.60719,-1.5128,-0.08084,0.23953,-1.2259,-0.90984 1.8333,1.0113,3.4115,-0.52962,1.0949,-0.29524,-1.5626,0.33586,0.86423,-0.19038,-0.53311,0.65033,0.66429,0.81255,-0.74227 -1.4204,-1.4088,2.2374,0.73352,1.5717,-0.004207,1.6836,-1.7715,1.6666,0.34197,0.077368,-0.27471,0.60451,-0.56599,-0.20303 -3.5274,-2.2961,-0.55914,0.26663,2.8127,-0.92696,0.056866,-1.5121,0.50831,-0.89746,0.32302,0.64239,-1.158,0.26094,-0.076883 2.7198,1.1491,-2.3737,-1.1841,-0.068395,0.3707,0.46096,-0.1942,1.9346,1.2849,0.75686,-0.69751,-1.2354,-0.53218,0.43123 -2.4325,0.39525,-3.1171,0.3037,-0.5809,1.2462,1.2586,-0.70374,0.29307,-0.77354,-0.77044,-0.46279,0.35821,0.3242,-0.90241 -2.9403,0.5445,-2.6317,-0.82254,-0.08462,0.50428,0.034446,-1.388,-1.4239,0.11039,-0.082377,1.5048,0.78468,1.1369,-0.7566 -1.7439,-4.1713,0.59167,0.52602,1.6456,0.6279,-0.34672,-0.61233,1.07,1.0028,-1.5589,-0.92605,1.0228,0.74749,-0.25239 5.2283,-2.704,-0.84538,-1.3592,1.523,1.1694,1.8046,-0.68558,0.13052,-0.068832,0.82139,1.7944,-2.1209,0.41699,-0.47138 0.12356,4.1061,-0.33371,-0.092354,-0.8319,1.4714,0.010218,0.055421,-1.1585,-0.87251,-1.3741,0.0093633,-0.030728,-0.58791,0.55667 -2.1561,1.0527,0.65595,-0.31855,-1.3362,-0.13369,1.3068,0.18996,1.4005,-0.029624,-0.28429,-0.22498,1.2998,-1.2275,1.0508 1.3861,3.6203,1.2664,-1.2317,1.6008,-1.3339,-1.3386,0.58741,-0.48413,0.52249,-1.0926,-0.35494,0.67997,-2.3244,-0.99948 0.025994,3.5852,-0.83911,-1.0864,-0.0083599,0.31006,-0.23419,-0.18767,-0.81147,0.55956,2.1163,0.98101,0.5704,1.2016,-0.87161 -1.5012,2.8319,-1.27,0.4047,-1.1173,1.9232,2.2611,0.1877,-1.8379,0.57174,-0.88362,-0.49496,-1.1114,0.19069,0.52046 0.62031,3.7439,0.22583,-1.2716,0.082276,0.87527,-1.9608,-1.2419,-0.98969,-0.81355,0.72899,-0.18842,0.50411,-0.46458,-0.84632 -2.38,-0.13155,1.5654,-0.56564,-1.1011,0.98047,0.27076,0.12603,2.1374,-0.21136,0.90338,-0.40446,0.60949,-0.05816,0.72656 -1.7741,-0.41937,1.1263,-1.9609,-0.78818,0.53754,0.80133,-2.1206,1.6001,0.75651,-0.56594,-0.48262,-0.10786,-0.7528,-0.17567 0.28297,2.6976,-1.2276,0.060623,-0.3246,0.037414,-1.7963,-0.7844,0.37522,1.417,0.90471,0.75774,0.13186,0.85781,-1.267 2.6094,-0.93398,-2.0792,-0.72544,0.41309,2.4366,2.062,1.1978,0.94074,1.5929,-0.61291,2.9604,-0.52988,0.21747,-1.0235 -3.0662,1.1788,0.031368,-0.67525,-0.1966,-0.4372,1.7275,-0.39673,0.65411,0.42327,-0.56804,0.10722,1.8307,0.1725,0.24363 4.976,-1.7176,-0.73194,-0.54238,2.5691,2.3304,1.2328,-0.43752,0.34854,-1.0778,0.75026,-0.21254,-1.7852,0.69491,-0.60701 -0.49477,0.40002,1.1072,1.3295,-0.61352,-0.072365,0.75238,0.67218,2.0987,-0.35185,-1.2794,0.92543,0.81606,-1.281,0.46582 -2.7858,2.0834,-0.96286,-0.57581,-0.3311,1.7754,2.0171,-0.7579,-1.1493,1.0216,-0.26966,-0.026464,0.98887,0.51001,-0.048188 0.13047,4.1616,0.63013,-0.84843,0.1068,0.73554,-1.4998,-0.56111,-1.9418,-1.4237,0.21709,0.12719,-0.15031,-0.82725,-0.50567 1.8465,1.5577,-0.56754,0.88767,1.5965,0.00029302,-0.87918,-0.54537,1.6551,0.67171,-1.1948,-0.82557,0.51011,-2.0856,-0.73516 0.41085,-0.36977,3.8483,0.14444,0.12311,-0.38904,-0.16725,0.92163,1.626,-1.718,-0.32533,1.125,1.4181,-0.64665,-0.027968 -0.96113,2.8195,1.0226,-0.076462,-1.353,0.27561,1.05,-0.10371,0.54381,0.64832,-1.1553,1.3147,-0.22864,-0.81566,0.93634 -0.63137,1.0551,1.8762,-0.33616,-2.3712,0.95921,0.36267,-0.30026,0.6117,0.1714,-0.95986,0.77906,-0.14896,0.068061,0.57937 1.7962,2.3266,-1.9304,-0.66924,-0.41372,0.10983,-0.45219,-1.0882,1.158,1.8636,-0.082432,-0.7071,-0.02475,-0.11033,-0.096695 -3.2086,2.4244,1.4108,-0.60719,-0.12631,1.1005,1.0235,0.53519,-0.26721,1.4963,0.54717,0.50426,0.11932,0.79785,-0.16914 -2.626,2.7451,0.074444,-0.69495,-0.51062,1.3498,0.93835,-0.50456,-2.1316,0.1531,0.55828,0.27573,0.1926,0.75877,-0.3209 0.78873,3.2631,0.28964,-0.24212,-1.7092,-0.033243,-0.73441,-0.94808,-0.35131,-0.50019,-0.82936,0.08362,-1.3319,0.63132,-0.10458 -2.1824,1.8085,-1.887,-0.13686,-1.0739,2.4404,1.4556,-0.050917,-0.49895,0.8115,0.13639,-0.4454,0.10684,-0.42528,-0.50819 -1.2922,3.2968,-1.6193,0.39695,0.71715,-0.21473,-1.4727,1.9223,0.28347,0.15019,-0.62833,0.52412,0.095393,-0.0006279,-1.4912 -1.7494,-0.086949,3.1296,0.83422,1.0074,-0.60714,1.55,-1.2063,1.3557,1.0137,0.16839,-0.064831,-0.18189,0.12172,0.82649 0.1797,1.7949,1.033,2.0162,2.1302,-0.97318,-1.5217,-0.20407,1.0478,-0.3834,-0.06343,0.010913,-0.15983,0.019481,0.62885 -2.7565,0.57338,-2.757,-0.7857,0.35767,0.058605,-0.26856,-0.87353,0.46892,0.5862,0.026136,1.2512,0.073831,-0.31851,-0.82063 -1.5021,-0.99298,-0.96775,-0.83361,1.2159,2.7285,0.19329,0.10962,0.31183,-0.75369,-0.95401,-0.24731,0.5698,0.88691,0.28929 -1.5091,1.8638,1.0652,2.0065,1.769,-1.7155,-0.49605,1.4492,0.54445,-0.81471,-0.69983,0.99633,-0.9601,-0.31685,0.70897 2.1039,1.9732,-0.60508,-0.65539,0.92682,-1.2868,-1.7064,-0.66412,-1.498,2.184,1.198,-1.214,-0.52761,-0.58437,0.47471 -1.8754,0.64851,3.0202,1.5368,2.7876,-1.8254,0.90163,0.70182,-0.15976,-0.6578,-0.21,0.08563,-0.79037,-0.38702,1.2522 -0.055525,-0.95695,3.507,1.7583,3.4573,-0.23935,0.429,0.48867,-0.48564,-1.2849,-0.45949,0.065515,-0.53728,0.49661,1.8322 -1.4784,0.30192,0.17351,-0.52786,-0.62732,2.7628,1.1936,-1.5623,-0.5346,-0.77029,0.70226,-1.0406,-0.19248,1.0729,-0.13968 -1.731,-2.3299,1.6375,-0.024189,0.72918,0.6819,0.65394,-2.3099,1.5376,0.63035,-0.87702,-0.80524,-0.33665,-1.0727,-0.0042115 1.7787,1.5884,3.3714,0.94573,3.2211,-0.34679,-0.35171,-0.45097,-0.15549,0.087213,-0.96867,0.47747,-0.44297,-0.54303,0.032828 3.0987,0.70479,2.6641,-0.44616,3.457,-1.283,-0.6684,-0.00023727,0.69351,-0.46407,-0.83124,1.2867,0.75684,-0.12341,-0.62855 1.8374,0.45374,0.30002,-0.69166,2.1571,-1.5936,-1.5286,2.4272,-0.50561,-2.6593,0.72883,-0.60099,2.3551,-1.5508,-0.092002 1.2006,1.7307,-1.355,-0.2723,2.2412,-0.15962,-0.57237,0.32881,-0.17654,1.7651,2.4306,-0.085266,0.78621,-1.5149,0.9169 -2.8836,1.4705,0.38244,1.806,1.2163,0.29341,1.1386,1.6099,0.67547,0.51709,-0.043224,-0.27232,-1.3924,0.10646,0.51353 -0.75834,0.22639,2.6035,0.77181,-0.52066,1.3314,0.60212,-1.1545,1.0192,0.90056,1.152,0.074544,-1.1455,1.4684,0.42757 -1.0755,0.26013,2.7142,1.5852,1.3872,0.28758,1.3394,-1.2895,-0.067311,0.72548,-0.010903,0.51049,-0.87029,-1.8451,0.91528 -2.5693,-0.83235,3.1915,0.14201,1.7508,-1.0408,1.0737,0.2129,1.1242,-0.32349,0.69444,-0.061801,-0.26644,-0.036675,0.13642 -2.0829,0.29371,-0.57343,1.4781,-0.52999,0.64891,1.1023,0.25996,2.1486,0.35621,0.98617,-0.2634,-0.67663,0.36576,-0.16357 2.6193,0.74141,0.17012,-2.3419,0.69832,-1.3876,-1.4787,0.89001,1.5023,-0.86519,0.16907,0.049799,1.2961,-1.9269,-0.72742 -3.4541,-0.038003,-2.3996,-0.98999,0.24451,-0.28159,-0.88817,-1.2596,-1.122,0.24267,0.36653,1.0239,0.026106,0.4651,-0.81388 -2.7308,0.58277,-2.6654,-0.29097,-0.89362,0.11901,1.0759,1.991,0.89054,-0.0001645,0.022762,-0.96179,-0.016373,0.19571,0.054777 3.7382,-2.3031,0.44803,-1.6669,2.417,1.0697,1.921,0.61239,-0.97164,1.7692,0.16311,3.7784,0.074633,-0.74105,-0.018792 -3.9471,0.51411,-1.2413,-1.3469,-0.037038,0.35713,1.5457,0.98913,0.61599,-1.0965,-0.15117,-1.7105,-0.35196,0.1836,-0.63012 1.6229,2.0102,0.69932,1.553,2.0845,0.54031,-1.5022,-2.1294,-0.26421,0.17346,0.23631,-0.74345,-0.36828,-0.51667,0.18487 -2.8888,-0.53434,-3.0586,-0.48978,0.54458,0.15906,-1.0512,-1.0827,-0.64197,-1.7509,-0.64302,1.5297,-0.048249,-0.40692,0.92332 -3.5457,-0.043034,-1.9639,-0.86833,0.36434,-0.80624,0.034053,-0.75811,0.81148,0.55212,0.056159,0.60718,0.22578,0.79152,-0.9598 -1.6858,-0.036153,2.6509,-0.70973,-0.60657,-0.5869,0.9907,0.4722,1.7664,-0.38821,0.15693,-0.4501,1.1288,-1.612,0.88798 -3.1852,0.1759,0.36678,-0.50791,-0.35994,0.0061858,0.75758,0.68301,1.3115,-0.97386,1.3318,-0.82901,-0.027199,0.16968,-0.40604 1.0405,3.5706,0.75352,-0.87319,0.024112,-0.017198,-1.3866,0.3201,0.15302,0.42222,-1.7131,-0.14099,0.82623,-1.5099,-0.62407 2.8338,-1.5247,-1.115,-0.60052,0.8166,0.89922,1.8598,0.61647,-0.37195,1.3314,-0.71844,2.9859,0.1466,-1.9086,-1.1399 -4.4848,0.059403,-0.76127,-1.2712,0.99957,0.13059,1.0929,-1.334,-0.63815,-0.87237,0.75506,-0.12271,0.19533,0.32765,-0.82126 -0.35863,0.97315,1.5232,-1.0012,-0.17568,0.87514,1.0231,0.46462,0.98075,-1.3676,0.54711,-0.0066175,2.3767,-1.3621,0.35673 0.068799,3.1958,0.97038,0.42695,0.49505,-0.35087,-1.4132,-1.0122,0.49399,0.20613,-0.44162,0.83319,-0.47338,0.22649,-0.12223 -3.9296,-0.06645,-2.7703,-1.3563,3.1189,-0.28955,-0.11022,-0.83105,-1.0672,-0.70586,-1.3353,1.4307,-0.61803,0.2684,-0.10547 -2.7823,-3.4074,0.36642,0.77259,1.6696,-0.49016,-0.38306,-1.0368,1.157,-0.45383,-0.56177,-1.2232,-0.29741,0.052001,0.53405 0.24399,1.0853,1.2758,1.4332,2.8665,0.026895,-0.93728,-1.6315,-0.2072,-1.88,-0.58665,-0.18107,1.105,-0.31216,0.65654 -2.8865,-1.7226,1.7987,-1.738,0.61137,-0.32442,-1.018,-0.23559,1.0981,0.44947,-0.56262,-1.0727,1.0208,0.45984,0.29521 -2.0045,-2.1984,-0.013406,-0.57419,1.5546,-1.8929,-0.58944,-0.25975,0.3533,0.60197,-1.3236,-0.78115,-0.59395,-1.5771,0.90635 1.2694,2.4094,2.3627,-1.6531,0.14465,0.80776,-1.3769,0.59418,-0.47144,-0.79594,0.84083,1.2824,1.3023,1.2329,0.18642 -2.5221,-2.6593,0.31888,-1.3768,0.18026,-0.80044,-1.6543,0.9029,1.1581,-0.083892,-0.76052,-1.4065,0.52356,0.71435,0.66663 4.5822,-0.67299,-1.4607,-0.61377,0.86584,0.73743,1.4848,-0.14179,0.2162,2.6837,0.69429,-0.57682,-1.4995,0.22262,1.6714 1.0842,3.0923,0.43099,0.66984,1.5739,-1.0833,-1.7025,-1.1395,-0.32804,1.2633,0.20288,0.53719,-1.1034,0.34674,-0.5487 -0.88916,3.1812,-0.75422,0.42341,0.40389,0.20642,-1.4576,0.83319,-0.0014147,-1.3207,-0.54302,-0.45368,2.0902,0.5643,0.0017098 0.64289,1.2687,-0.24205,0.72259,0.38951,0.68396,-0.92483,0.92228,1.2021,-0.8142,-0.063362,1.026,1.7749,-0.91436,0.25781 -2.938,1.8392,-0.5615,0.66711,-0.55698,0.25276,1.0159,1.9876,-0.27458,-0.81798,-0.093249,-0.45653,0.74319,-0.62605,1.6395 3.3236,1.4832,-0.028632,-0.33291,1.4567,-0.19782,0.010115,-1.4474,0.099264,0.56239,-1.1138,-0.096021,-0.56426,-0.5466,-1.8534 -1.9681,1.2212,0.95619,0.39336,-1.1485,0.32005,0.078414,1.3167,1.6488,-1.0025,0.32245,0.10375,1.1238,-0.50648,1.6978 -2.538,2.8238,-1.3562,0.45035,-0.49156,1.7646,0.71417,1.7947,-0.8392,-0.053515,-0.079608,1.1161,0.18216,-1.0909,-0.031098 0.36486,1.927,0.17323,2.5426,-0.47244,1.9532,-0.18402,-0.82437,-0.64113,0.50515,-0.26774,0.027939,-0.92258,-0.26146,1.1928 -1.0452,0.27085,1.7814,0.48818,-0.35513,0.31392,0.84426,0.25215,1.9649,0.032561,0.21954,0.60905,0.9958,-1.9455,0.5403 -3.1541,1.1779,-1.5498,-0.1107,-0.4272,1.9304,1.1901,0.32301,0.75706,0.43391,0.83955,-0.093243,0.63776,0.59678,-1.037 1.5959,3.7019,-0.62967,-0.86172,-0.50309,-0.82072,-1.2255,-0.52158,0.057193,0.64048,-0.8192,-0.79996,-0.8162,0.26885,-0.54188 -1.3292,1.8128,-2.5128,1.8336,0.28782,1.1102,0.42457,1.2286,0.49913,0.24117,-0.75383,0.77739,-0.60849,-0.054574,0.13701 3.0187,1.616,1.7524,-0.37805,1.9107,-0.24534,-1.6351,-0.067325,1.4793,0.20562,0.39719,1.1206,1.3227,-0.60308,-0.75706 -2.5712,2.5813,-0.98354,0.62372,0.58011,1.7199,0.89183,1.3972,-0.010891,-1.2,-0.97511,-0.11025,0.20388,-0.040522,-0.45397 0.85892,3.0019,0.55016,-1.2555,0.79364,0.14623,-2.395,-0.54621,0.68469,-0.58365,1.0868,0.60589,1.474,0.17509,-0.40749 -2.5629,-0.24156,-0.41833,0.69452,-0.40945,1.6664,0.4655,-0.31674,0.94303,-0.15299,0.98849,-0.37782,-0.74524,2.1464,-1.2558 4.7419,-2.1117,-1.689,-0.40781,0.86925,2.5736,0.8319,-0.66068,-0.54278,-0.43292,-0.080728,-1.669,-0.76751,1.06,0.55708 3.2414,2.2593,1.2245,-1.1562,1.4218,-0.094519,-0.94448,-0.5934,0.34765,-0.31904,-0.051627,1.0061,1.7784,-1.1274,-1.8223 -3.3957,-0.062584,2.842,-1.4506,0.50577,-0.93321,0.057836,-0.23908,-0.94407,-0.41086,0.30297,0.20954,-0.25955,-0.92604,-0.34287 5.1396,0.36572,-0.21068,-2.877,0.96773,1.2374,-0.33655,1.2033,0.49208,0.96877,0.023918,1.0363,-0.51867,0.23509,-1.6393 3.4901,1.3887,2.3122,-0.53325,1.6763,0.56284,-1.909,0.50236,1.2637,1.1988,-0.13841,0.57509,-0.33748,0.032928,-0.084225 -0.66883,2.9806,1.6551,0.99259,-0.41805,0.86563,-0.8754,-0.14005,0.71615,0.61806,-0.4002,1.5698,-0.11824,1.26,0.28867 0.017347,2.7644,2.5958,-0.10248,-0.33153,-0.17905,-1.4551,-0.29255,-0.074843,-0.41915,0.74315,1.1169,0.37412,-0.12427,-0.50713 -1.4343,3.2852,3.2977,-1.3465,0.003397,-0.026677,0.55692,-0.31306,-1.6947,0.033978,0.66284,0.056332,-1.0714,-0.69068,0.44362 -2.8716,-0.45986,-3.1215,-1.1216,0.76826,0.82138,-0.037959,-0.74012,0.86291,-1.3431,-1.0881,0.16894,-0.50279,-0.95651,-0.20243 -0.98434,1.6796,1.3308,-1.7355,1.8051,-2.0548,1.0279,-0.9803,-2.0195,0.34722,-0.37734,1.1834,-0.62143,0.025102,0.39577 -3.6095,0.56127,-0.60147,-1.6812,0.59661,0.74889,1.4334,-0.85269,0.29695,0.25824,1.0186,0.73933,-0.48684,-1.0603,-0.8852 -0.37564,2.1756,0.15405,1.745,1.0382,1.1414,-0.15128,-1.5372,-1.1094,-0.37468,-0.50795,0.80305,0.042384,-1.1543,0.53667 0.59648,0.45719,1.9696,-1.108,0.65054,0.44382,0.41401,-0.11386,0.78001,1.9388,0.471,0.43611,-0.56233,0.50693,0.15381 2.1935,0.49258,-0.70959,0.069747,-0.033781,-0.84182,-0.073766,0.062137,1.2976,-0.88191,-0.69339,0.50065,-1.0718,-1.7894,-2.2064 3.1983,1.8343,-0.53901,-0.19661,1.2414,0.16193,0.52567,-1.996,-0.87403,0.25149,-1.1304,-1.7309,-1.7866,-1.5204,-0.4755 1.4473,3.6825,1.1334,-1.1892,-0.85907,-0.039156,-0.48631,-0.046308,-0.41073,-0.65635,-0.63051,0.47503,-0.59159,0.55072,-0.53766 -1.195,4.0243,1.55,-0.80316,-0.19845,0.26416,-0.22531,0.27065,-0.99592,-0.54728,-0.34699,1.1551,-0.38333,-0.99766,0.60406 3.5697,1.5445,1.1642,-1.0173,0.29977,-0.18221,-1.4536,0.37959,1.2095,0.16922,-0.79086,-0.086657,-2.0588,-0.58947,0.36686 2.1544,0.86484,-1.2915,-1.0398,0.72712,0.46867,0.14718,-0.69312,1.2883,1.8016,1.2614,-0.025303,0.010918,0.25187,1.5766 4.3292,-0.94969,-1.6847,-0.91101,2.3427,1.9072,2.9756,0.53446,-0.41108,0.52268,0.42503,-0.1947,-1.2692,-0.53436,1.254 0.61563,2.2217,1.634,0.25298,-0.1846,0.0044616,0.86636,0.12888,1.8455,0.012988,-1.5438,1.4629,-1.0342,-1.4289,0.023473 -3.3568,1.4726,0.95256,0.06887,-0.15987,-0.91152,1.0658,1.159,0.8051,-0.058736,0.71319,-0.0050964,-0.072468,-0.77724,0.81931 1.5107,1.3077,1.9719,1.5788,0.38366,0.10746,-0.42255,-0.37206,0.5669,0.51486,-1.0427,0.92613,-1.0062,-1.8369,0.53808 -2.1973,0.5084,1.6846,0.77175,0.70573,0.023325,0.82274,0.2447,1.223,0.86287,1.1697,0.78633,-1.6698,-1.0249,0.99624 -1.7845,-1.9095,1.9363,-0.34949,0.85711,-0.2452,0.48808,0.36091,0.67497,1.1443,0.44512,-1.7592,-0.53245,-0.34891,1.3141 -1.5777,3.7773,-0.14513,0.55437,-0.48529,0.94792,-0.94509,1.0172,-1.3365,-0.024517,0.31016,1.3252,0.089012,-0.15988,-1.1958 2.4842,3.1808,1.0292,-1.2754,0.35411,-1.0664,-1.2575,0.0020754,0.47264,0.76286,-1.3435,-0.10951,-0.77765,-1.1644,-1.1101 -2.6973,1.8774,0.52015,-0.73865,-0.1117,0.02316,1.0655,-0.024711,0.56593,1.759,0.44814,0.61282,-0.12556,-1.4658,0.50666 3.6492,-1.9647,-1.847,-1.3283,0.21234,2.6026,3.118,-0.412,-0.99948,-2.0784,0.55025,1.301,-0.4905,1.1476,-0.5073 0.19617,0.027116,1.6008,1.8972,0.58947,-2.2141,-0.25934,2.0857,0.86563,-1.3686,-1.0087,0.80535,-0.13672,-1.6721,0.29552 3.524,0.22319,-2.791,-3.0708,-1.2813,0.61557,1.7911,1.2826,-0.72964,0.82781,1.5459,1.364,-0.37842,-0.33999,-0.38283 -3.8541,-0.88147,1.4152,-1.6607,0.21813,1.2057,0.30315,-0.99312,0.30335,-1.4487,0.68291,-0.61047,0.48208,0.47951,-0.36491 -2.595,-1.7075,0.31918,-2.3446,-0.24743,1.9421,-0.92283,-1.8415,0.042229,-0.35506,-1.0027,-0.56771,0.50423,0.75917,0.17012 -0.95829,-0.43401,-3.6826,0.43423,-0.86349,1.8532,-0.5484,-0.34264,-0.38592,-1.6197,-0.80151,0.77768,-0.057263,0.25305,1.1483 -4.5753,0.0034049,-1.1805,-1.1075,2.218,-2.3209,1.1368,0.59728,-0.1602,0.56703,-0.50619,-0.94081,-0.5607,0.33812,-0.23391 2.2686,-1.1675,-3.0989,0.64172,-0.35801,2.927,1.659,1.3164,-0.11948,0.29403,-0.11917,0.56144,-0.23972,-0.18284,-0.10642 -3.5493,-0.45047,-0.52759,-1.3994,0.44191,1.0778,0.23106,-0.076939,0.73528,-1.5896,0.34801,-1.3511,0.82688,-0.13588,-0.22249 -2.8243,-3.2972,0.72761,-0.49393,2.7113,-1.5374,-0.42309,1.0222,-0.25419,-1.2468,-0.73646,-1.1978,-1.0281,0.9732,0.22729 -3.0717,-2.2313,1.6594,-0.91695,1.2929,-0.12866,-0.27478,-1.7735,1.4387,0.91235,0.0035512,0.43063,-0.70475,0.31905,-0.59383 -2.0573,-3.4383,1.3351,-1.811,0.90216,-0.67956,-1.5978,-0.90319,1.174,0.34848,-2.0042,0.49738,0.67456,0.16083,0.31065 -3.0054,-0.51963,-3.4165,-0.74112,2.5117,-0.61347,-0.19933,-0.5322,-0.54147,-2.0951,-2.2511,1.7752,-0.60781,-0.21922,0.98698 -2.9659,-1.6448,-1.8064,-1.2386,1.2941,1.8067,-1.8531,-1.8113,-1.3837,-1.3575,-0.98206,2.1905,-0.71181,0.1693,0.18131 -0.933,-1.9226,1.5836,-1.7058,-0.60563,1.5576,-0.09249,-0.69668,1.4753,1.4094,-1.5602,-0.98299,0.57585,1.5275,-0.76197 -2.2562,-2.513,1.093,0.16659,0.42211,-0.17164,-0.31929,0.42678,1.4044,1.3471,-0.32814,-1.4276,0.63436,1.4466,-0.24434 1.346,3.3835,0.043414,0.49805,-0.19828,0.041257,-0.63486,-0.088063,0.11248,1.6683,-2.1294,0.19585,-1.1149,-0.62342,-0.90768 -3.6716,-1.8583,-0.12354,-1.8405,0.66684,-2.0067,-1.0435,-0.68948,0.53094,-0.35418,-0.70332,-0.37865,0.2468,0.0416,0.71069 5.1426,-1.969,-0.10556,-0.89791,1.9762,1.3401,2.0124,-1.0922,0.04908,-0.70462,0.62006,-0.45072,-1.5242,0.64167,0.86916 3.9507,-0.24795,-1.4891,-2.0631,0.13846,1.1046,1.3262,-0.12342,1.5041,1.8936,0.99808,1.023,-1.7852,0.23734,0.48268 -1.4831,-3.5861,2.8981,-0.2609,1.4397,0.62196,0.031392,-0.68527,1.4569,0.64801,-1.6443,-1.2293,0.21645,0.46755,0.28117 -2.1776,-0.57567,2.6781,-1.9388,0.93973,-0.21095,0.94504,-2.0584,0.96185,1.373,-0.28361,0.09415,-0.16943,-0.72186,-1.1962 4.1614,-1.1892,-0.80021,-1.1374,2.1563,1.9795,1.7374,-1.1503,1.3982,-0.34294,1.2231,1.6156,-0.75632,0.66595,-0.45533 1.3785,0.5553,-1.1062,-3.523,-0.018679,0.49326,0.29632,1.1915,0.29889,1.5319,0.8271,1.59,0.56705,-1.8496,1.6748 0.68582,-1.0569,3.1451,-2.7349,-0.086742,1.5833,0.60657,0.6848,-0.86567,-0.11054,-1.5066,0.18269,-2.2582,2.3805,0.18521 -1.6265,1.0281,0.77297,0.46398,-0.77593,0.19069,1.386,-1.41,1.6755,0.9827,0.18367,1.1656,0.37913,-0.60265,0.041563 3.991,-0.99056,-0.56603,-0.47397,1.2451,1.7563,-0.37063,-0.77426,1.2749,-0.43404,-0.47192,0.23502,-0.45053,-0.71335,-1.1857 -2.0832,1.0078,0.37793,0.40593,-0.64308,0.45625,0.67647,-0.27269,1.8206,0.40211,1.2192,0.17171,0.90816,-0.0093175,-0.32998 -0.64665,-2.1968,2.9051,-0.034689,0.96504,-0.012751,1.2443,0.12875,1.6263,-0.54067,-0.50145,-0.26527,1.2875,-1.5399,-0.71929 -3.7868,0.96415,-0.3651,-1.2055,1.7347,0.92696,0.23195,0.30276,-0.34185,-1.7488,0.18866,-1.1368,0.26547,0.2267,-0.05231 -2.2721,2.3512,-0.43735,1.0604,-0.2114,0.71883,0.46209,1.8426,0.88124,1.5028,-0.12945,0.80516,0.20927,-0.30142,0.52701 -1.6986,-4.1807,0.90422,-0.82517,1.3846,-0.58336,-1.5213,-1.2895,0.91234,0.67173,-2.7802,0.46,0.20025,-0.36463,0.078846 3.9745,-0.51705,-1.4339,-3.0735,0.90602,-0.033684,2.4805,0.077755,1.4882,0.96245,1.2887,2.7602,-1.5995,0.83329,-0.50976 4.032,0.3642,-1.3999,-1.1716,1.0461,1.1991,0.066931,-0.42991,2.1853,0.3438,0.23242,-0.25374,-0.87491,-0.62759,-1.0362 -3.7407,-2.0008,-0.45822,-1.4053,0.75729,-2.4841,-0.99432,-0.37981,0.71135,-0.80297,-0.77105,-0.096097,-0.46847,0.17568,0.41213 0.86742,-1.2583,-3.0059,1.6014,-0.63185,1.7563,0.76914,1.0638,-0.45663,-0.30478,-0.33037,0.35223,1.2655,-0.52103,-0.086002 -2.7193,2.1745,-1.2951,0.86281,-0.69068,2.5151,1.2465,1.3694,-1.6866,0.32596,0.38747,0.25087,-0.43545,-0.6009,-0.4068 -3.3852,1.5553,-0.89756,0.070473,1.1985,-0.0097418,1.7223,1.1448,0.90078,1.7006,0.11352,0.61206,-0.19659,0.48822,-0.32254 3.5931,-2.758,-0.33972,-1.8625,0.45233,-0.43673,1.3844,2.4421,-0.71166,1.5285,0.48312,0.87554,-0.71541,-0.72617,1.2923 -0.24326,0.38727,4.384,-0.39352,0.24387,0.32129,-0.27785,-0.066595,0.51215,0.13973,-0.61779,0.95241,-0.3281,0.22006,0.45255 -1.9669,-1.4931,1.8139,0.76477,1.4485,-0.7696,1.3358,-1.3106,2.2672,0.13657,0.072564,-0.57866,0.31217,-0.19313,-0.053334 0.5528,2.5001,-1.7802,-0.33522,0.86638,0.94441,-1.7202,0.086412,0.79078,2.0469,0.97141,0.16576,0.55545,-0.37166,-0.562 -3.1723,-2.0448,0.0018359,-0.57122,1.4952,-2.9265,0.54093,-0.37966,0.80528,-0.33682,-1.1265,-0.49913,0.67011,-0.63424,-0.64168 -3.5046,-1.2246,-0.41722,-0.58072,2.2461,-2.5513,0.28395,-0.34552,0.99872,0.080189,-0.70272,-0.58021,-0.60665,0.2077,-0.17579 -2.4159,-0.3964,1.9522,-0.049255,1.6354,-1.2334,1.6678,-1.5351,1.6377,0.92983,-0.16169,-0.35544,0.64123,-0.39316,-0.47108 -1.2804,1.4267,3.3007,1.1411,1.2393,-0.49037,1.084,-0.72628,0.44951,1.0965,0.27278,0.9633,-1.1723,-0.28168,0.85449 1.0588,3.5336,2.1506,-1.4987,2.3066,-1.5726,-1.0453,0.8244,-1.7775,0.62904,-0.21668,-1.0968,-1.2578,-1.2258,-0.71113 -3.2648,-0.74264,-0.55111,1.0467,2.2611,-1.5702,1.7727,-0.47644,0.77058,-0.026649,-0.1734,-1.6007,-0.83898,0.22582,-0.1262 0.076873,4.0591,-0.57963,0.35133,-0.11276,1.8859,-1.0261,0.17198,-1.9209,-0.14372,-1.3004,-0.6693,-0.014558,-1.047,-0.43443 -1.364,-2.6141,2.6752,0.41471,2.024,-0.44396,0.67353,-0.74659,2.2208,-0.24446,-0.20927,-0.7645,0.56797,0.30204,-0.30419 -3.2088,2.0774,-0.69664,0.24367,-0.086913,1.7599,1.517,1.3631,-0.097272,0.92138,0.45884,0.36815,-0.42718,-0.29873,-0.85469 -0.52386,2.9334,0.51155,0.0076991,-0.93757,2.5485,-1.1215,0.6654,-0.75628,-0.72016,0.68309,0.38812,0.57091,-0.42683,0.59797 -2.3838,-2.0361,1.1606,-0.24931,0.093422,-0.16221,0.11496,-1.0413,2.1031,-0.57409,0.5021,-0.49552,0.58467,0.30778,-0.93903 -3.3155,-2.3042,-1.4573,-0.73383,0.56378,-1.5438,-0.76412,-0.60687,1.2646,-1.0618,-0.93766,-0.33959,-1.0782,0.57478,0.17318 -1.7074,2.0464,-1.0504,1.4732,0.13348,0.86452,-0.30486,2.066,0.21118,0.16051,-0.6711,0.56411,-1.6671,-0.34415,-0.81958 3.9312,-2.2996,-1.3431,-0.9934,2.7203,2.2581,2.5081,0.58919,0.59926,-0.065591,0.22715,1.276,0.54044,0.44684,0.38713 -2.5012,0.68641,-1.5926,0.31735,-0.71054,-0.18578,0.6056,0.73237,0.97523,0.72161,0.46561,0.15667,0.66084,-1.2217,0.88856 2.4419,-1.5016,2.9304,0.64579,2.66,-0.43213,0.026951,0.14602,-0.17659,-1.2278,-1.8158,0.56944,0.27599,-1.2248,-1.0082 -2.9952,-0.95321,1.6133,-2.4901,0.69059,0.051909,0.41731,-1.2408,-0.21488,-1.2838,-0.17075,-1.3823,1.3691,-0.61252,0.41593 -1.2157,1.2007,-2.034,-1.1845,1.0232,0.010589,0.039354,-1.3314,-0.87667,0.44869,-0.80385,2.663,1.2539,-0.012696,1.3254 1.4095,1.3927,2.9782,-2.7343,0.66103,1.4215,1.3891,1.8004,-0.82735,-0.37428,-0.094358,1.2218,1.6759,0.58717,-0.19304 -3.1619,-1.6615,-1.6916,-1.4686,0.86821,-1.2115,-2.4077,-0.041533,-0.70323,-1.3398,-1.2514,1.2267,-0.051147,-0.69333,2.0568 -2.4244,0.29246,1.2262,1.2232,1.0903,-1.6403,1.6493,0.55752,1.8548,-0.57255,0.41428,-0.20415,0.11652,-0.49716,0.28608 -2.3194,-1.2692,1.7062,1.3426,0.60935,-0.87992,0.98326,0.58231,2.351,-1.0154,0.71435,-0.69668,-0.50363,-0.075701,0.28258 -2.2341,1.4685,-2.0111,0.63789,-0.74829,2.7468,1.3917,0.30511,-0.20134,0.4584,0.15959,-0.49909,-0.33296,-0.73121,-0.21154 -1.1777,-1.3836,2.1476,-1.2305,-0.58021,0.55403,0.2467,1.0307,1.6009,-0.13455,-0.30949,-1.3879,1.3036,-1.9698,0.45797 1.816,3.7247,-0.72508,-1.53,-0.037851,0.291,-1.6689,0.018189,-0.54832,0.61494,-0.86456,-1.0528,0.9149,-1.5686,-0.68753 0.43245,3.5543,0.11793,0.38045,-0.51399,-0.26208,-0.89329,0.11087,-0.69549,1.5342,-1.5202,0.034901,-0.69953,-0.58445,-0.1898 -1.3863,-2.178,0.14079,1.0728,0.46134,0.45764,0.50552,1.2337,1.9434,-0.54077,-0.01068,-2.0146,0.25714,0.17478,0.36602 -2.3513,-1.6607,-0.34384,-0.2542,-0.45823,-0.36628,-0.2199,0.85689,2.0901,-0.47543,-0.080943,-1.633,0.013054,0.09513,0.036741 -2.605,2.2491,0.51656,0.74216,-0.0087802,0.10401,1.3816,0.75879,0.39308,2.1781,-0.019434,1.1112,-0.033142,-0.47223,0.79405 -0.62071,2.0784,-0.048068,2.4885,1.5583,0.14908,-0.85858,-0.32441,0.25537,0.50269,-0.43925,0.75512,-0.78494,-0.88043,0.69476 -3.3879,-0.52967,-2.1433,-1.3946,0.44476,-1.7371,0.26304,0.28168,0.73454,-0.81403,-0.70988,-0.51008,-1.1798,-0.37133,-0.41638 -3.7766,-0.16367,-2.0021,-1.1489,-0.11331,-1.4124,0.95462,0.092298,0.7206,-1.1257,0.11359,-0.36411,0.006338,0.23768,-0.7185 -2.4691,-2.4454,-0.64078,-0.55321,0.75538,-0.56464,-2.2847,-0.37107,1.3488,0.20457,-1.2815,1.0366,0.14613,0.40268,1.332 -2.5442,-2.266,-0.44767,0.20213,1.1873,-0.93621,-0.78571,-0.042591,1.7897,0.054534,-0.67941,-0.38137,0.35749,-0.051642,-0.090525 -1.9624,-1.2911,-0.49231,0.28922,0.017748,-1.0648,0.6983,0.70784,1.5879,-0.97578,-0.0096026,-1.3961,-1.3796,-0.44864,-0.0036316 -1.271,3.8423,0.41531,0.23555,0.84666,0.099895,-1.0376,1.3063,-0.55183,-1.8477,0.077815,0.053202,0.86809,-0.75356,0.50323 1.9116,2.752,-2.547,-1.5701,-0.36508,-0.31449,-0.76598,0.1151,0.53672,1.1905,0.38378,-1.4279,-0.4622,-0.45179,-0.13027 -0.82745,-0.73624,3.2087,-1.8001,-0.57423,1.0963,1.1343,0.051667,1.6766,0.26793,-0.35861,-0.21245,0.17201,1.0818,0.059821 0.82567,3.6668,-0.060728,-0.74935,1.1761,-0.62359,-2.1746,0.5292,-0.21164,1.2433,0.49751,0.33026,0.68933,0.0044824,-0.46462 -2.7475,-0.012928,-3.4556,-1.236,-0.053534,-0.10586,0.40183,-0.68013,0.64648,-0.87408,-1.7062,-0.11828,0.12135,0.4384,-0.35826 -2.9478,-1.9577,-0.53932,-1.0016,1.383,-1.4759,-1.7075,-0.9366,1.0965,0.33876,-0.99258,0.64336,-0.58421,0.030867,1.3089 -2.3882,-1.344,2.1817,-1.3061,-0.056272,0.45902,-0.31043,0.32436,1.7338,0.15743,-0.16345,-1.1055,1.1843,1.8627,0.25779 3.4171,-0.67831,-1.6014,-0.56484,1.4339,1.1219,0.20014,-1.7958,-0.84239,0.52283,1.0381,0.45048,0.1649,-1.0352,1.0635 0.74497,0.3122,2.5616,-0.40133,-0.26357,0.90412,1.3574,0.85714,1.7545,0.94589,-1.0043,-0.28802,-0.70423,-1.15,0.40014 0.4998,1.8893,0.38186,1.7112,0.37784,0.33993,-1.3129,-0.73423,1.9025,0.33038,-0.51066,0.88173,-0.27266,-0.34184,0.27193 2.8157,1.6212,-0.93475,0.66406,1.0219,1.2901,-1.3675,-2.1224,0.38933,0.80996,0.21088,-0.95759,-0.61255,-0.20937,0.32136 2.473,1.8398,-0.67449,-1.8286,-0.84085,0.61173,-1.2512,0.082695,0.15478,-1.8968,-0.51283,-0.3285,-0.51294,-1.7994,-1.4345 -0.95875,-3.3545,0.13168,-0.048104,1.408,-0.052119,-1.5282,-1.1687,1.4261,0.86609,-2.3958,0.6746,0.55148,0.2407,1.0412 -2.0042,-1.5518,1.8643,-2.0798,-0.11214,-0.29111,-0.11043,0.48717,0.81366,0.62312,-1.0606,-1.6599,1.1034,0.071236,0.47086 -0.74324,-2.4926,1.5855,-2.7078,-0.061292,-0.2856,-1.1099,0.15848,1.3494,0.031412,-1.4879,-0.16815,0.93038,-0.092254,0.65581 -1.6537,-3.0655,0.29621,0.95677,1.8034,0.25979,0.43885,-0.063171,0.25902,-0.25138,-0.86977,-2.5947,0.49307,-0.45615,1.0804 -1.9936,1.8936,-0.53307,2.2961,0.65597,-0.23943,1.1703,0.60286,0.67021,0.56156,-0.34753,1.0862,-0.58288,-0.4744,0.78521 -3.2397,-1.6872,-0.88212,0.29279,1.168,-0.66109,-0.63883,-0.45973,1.9237,0.77392,-0.49914,-0.57153,-0.18419,1.3563,-0.043635 2.4094,0.13621,-0.70059,-2.178,1.4909,-0.64072,2.3152,-1.0545,-0.80544,1.1442,-1.1268,2.0843,-2.1689,1.304,-0.15733 -1.8952,-2.9916,-1.6888,0.8264,1.6939,-1.6529,-1.6764,0.12167,0.67933,-0.47164,-1.4871,0.13868,-1.1719,0.11617,1.7233 -1.0193,-2.3039,1.6637,1.2308,0.92158,1.8386,0.75743,0.24135,1.5297,0.24353,0.033265,-1.6378,0.9809,0.41253,1.0682 0.14964,1.5838,-2.9032,0.75715,-1.3928,1.9881,-0.34899,0.60162,-0.054273,-0.209,-0.56837,-0.85289,-0.29782,-0.019985,-0.17419 -3.4286,-0.33081,-2.0569,-0.56336,0.46174,0.86543,0.63527,-2.42,-0.53037,-0.55506,0.096201,0.235,0.011917,0.38091,-1.6259 -2.3003,-2.8986,2.4293,-2.9071,0.59879,-0.74468,-1.0829,1.3008,-0.21216,-0.22644,-1.1745,-1.6811,1.282,0.14694,0.59242 -3.4089,-0.62879,-2.6841,-0.70634,1.1014,0.53039,-0.64519,-1.447,-0.88417,-0.62483,-1.1334,0.89429,0.416,0.036093,0.076463 1.6733,1.9135,-2.1602,0.36611,0.76053,0.88968,-0.47149,-2.3461,0.075681,1.137,0.51604,-0.91058,-0.65663,-0.29654,0.26367 2.1491,1.3309,1.492,0.22643,1.1403,-1.0313,-0.9725,-1.3258,0.60448,-1.5267,-0.43289,1.3957,1.6416,-0.20721,-1.8113 -3.776,-1.3839,-1.6187,-0.88789,1.7842,0.68548,-0.056693,-1.7097,0.4385,-1.75,-0.67888,-0.0069196,-0.5333,0.38221,-0.53887 2.0741,2.8903,-0.58655,-0.83771,0.38099,-0.20267,-1.7037,-0.68016,0.0081087,1.9555,0.60639,-1.5843,-0.9786,-0.26682,0.070539 -3.097,-0.63586,0.019105,-2.0868,0.71965,1.0822,-0.25369,-3.4571,-0.73947,-0.27586,-0.32282,0.74769,-0.65146,0.77099,-0.29997 2.3346,2.3276,0.45547,0.7714,1.453,-0.47708,-1.2255,-1.0438,0.64013,1.5119,-1.1908,-0.046196,0.39257,-0.58298,-1.6134 -3.0482,-1.4106,-0.22102,-2.5125,0.77617,2.3201,-1.2488,-1.1314,-0.41331,-0.59723,-0.34339,0.27306,0.41322,1.743,-0.13006 -3.2948,-0.21014,-0.50602,-0.85815,0.067005,2.1134,0.59448,-1.5158,0.13154,-1.1173,0.46999,-1.0922,0.55366,0.74882,-0.73439 -2.5978,-0.57599,-0.65356,-2.2497,-0.21063,0.77278,-1.1225,-2.6117,-0.38691,-0.072924,-0.86195,0.71478,-0.0031584,1.0214,0.20319 -2.7325,-0.59501,-2.439,-0.89061,0.42324,1.6876,-0.70959,-2.3535,-0.30613,-0.60881,-0.3815,1.2988,-0.5133,0.502,-0.65206 -3.7651,-0.36436,-1.8733,-1.3187,0.82115,0.65647,0.28682,-0.98058,0.28852,-1.7686,0.0038309,-0.31683,0.39425,-0.22194,-0.35718 3.6247,0.03006,-1.0319,-0.30414,1.63,1.6643,0.04538,-2.1273,0.62974,0.71953,0.68377,0.082979,0.33642,-0.25911,0.58103 -0.10761,1.5577,2.6289,0.55726,0.087289,-0.093603,-2.1615,1.6148,0.28182,-0.15235,1.1594,0.83818,-0.411,-0.77403,0.45051 -1.7174,0.18811,3.8506,-1.1896,0.65029,-0.72284,0.8148,0.54771,1.269,-0.58778,0.37505,-0.1388,0.73709,-0.77293,0.32769 -3.7793,-1.4273,-1.7509,-1.8603,0.64161,0.56633,-0.79415,-0.60878,0.62136,-1.8932,-0.65995,0.17132,-0.063509,0.83362,-0.15339 -3.5365,-0.42197,-1.4588,-1.5877,0.67604,1.0744,-0.44819,-1.5839,0.047814,-1.6781,0.24248,0.64467,0.221,0.43144,-0.57015 0.52602,3.6877,-1.2624,-2.0419,-0.64382,0.18797,-0.17198,0.46266,-1.3597,1.0281,0.11042,-1.1328,-0.26358,0.45698,0.042821 -3.8724,0.095298,-1.8852,-0.89455,0.90809,0.70749,1.0079,-0.79364,0.24629,-1.3391,-0.23948,-0.99264,0.47902,-0.52803,-0.80869 -1.0886,3.483,-0.53101,0.14319,0.11901,1.4303,-1.5349,1.2902,-0.46127,-0.74603,-0.24543,0.84216,0.5503,-1.1271,-0.60652 -1.0828,0.034393,1.125,2.1475,0.42024,1.0673,1.1792,-1.4935,0.48406,0.29247,-0.34525,0.61393,0.051259,-1.489,1.6026 0.659,0.22391,1.719,1.1481,0.68115,2.9003,0.20245,-1.5949,0.060401,-1.9025,-1.377,0.8612,0.99597,-0.11174,0.65183 0.92535,3.0808,0.83971,-0.03865,-0.81233,0.020143,-1.395,0.15223,0.61977,0.78289,-1.2002,0.41301,-0.62549,-0.39527,0.03282 1.2422,3.0824,-0.28338,-0.82544,0.16718,-0.4265,-1.6205,-1.524,0.87261,1.0999,0.36343,0.38891,-0.32019,0.39087,-1.0522 1.4792,1.903,-0.30693,0.0028347,1.7922,-0.83009,-2.0094,-0.49336,1.6008,1.9158,0.87989,-0.24641,0.31799,-0.74653,-0.16556 -3.7,1.1692,-0.47537,-0.91233,0.080805,0.32674,0.9278,0.69507,0.18271,0.98169,0.93037,-0.4546,-0.4608,-1.2194,-1.3583 2.5618,1.5529,-0.9919,-1.2479,0.47263,0.18574,-1.3207,-0.45329,1.1676,2.3844,0.86153,-0.45826,-0.37168,-0.12411,-0.11633 2.1246,0.29522,-1.5636,0.10475,0.2007,1.2553,0.18143,-1.1,1.8273,1.3352,0.4044,-0.15187,-0.16102,0.28342,0.78172 -1.0761,1.6799,2.4504,1.6302,0.97809,0.3417,0.57229,0.044753,0.92749,1.3207,1.1362,0.055115,-0.96539,0.25254,0.41057 -0.2219,3.7277,-1.0439,-0.45857,-1.5155,0.3237,0.77512,0.66082,-1.9224,-0.42811,-1.9229,-0.26387,-0.66389,0.75289,0.027511 -0.8571,0.47088,2.184,1.5346,0.8151,1.5482,0.63423,-0.32497,-0.067516,1.6487,1.5117,-0.45256,-1.5425,0.06427,0.81345 -0.81063,2.8231,-2.3804,0.15447,0.23776,0.8696,-1.6833,1.7668,0.19504,-0.23806,-0.14717,-1.0733,1.3217,-0.88903,-0.30035 -1.8537,-2.214,-0.064818,1.7032,1.0156,1.4578,0.69244,-0.5623,1.0462,-0.23865,0.13122,-1.4101,0.99492,-0.21583,0.97409 2.7064,0.58613,-1.1896,-3.7063,0.53251,-0.38453,2.0425,1.4583,-0.62582,0.48716,0.83021,1.7521,1.0428,-1.9107,0.78359 -1.1087,3.4793,0.52271,0.63898,0.83187,-0.73221,-1.3217,0.74802,0.53778,0.30678,-0.45786,0.80235,0.37889,-0.13184,-0.32515 3.0504,-1.0511,-1.2274,-0.082507,1.4877,1.747,1.0207,-2.8578,-0.075515,-0.70891,0.72805,0.42799,-0.10113,0.14569,0.19091 1.5554,-0.3132,-2.6712,-0.19747,0.024609,1.6517,1.7166,0.60962,2.0423,0.54979,0.2368,2.3229,-0.42438,-0.061535,0.039395 0.82796,3.5763,-0.7736,-0.70879,-0.98611,0.40056,-1.7849,0.16236,-0.40807,1.2305,-1.0865,-0.24322,0.12416,-0.23228,-0.85572 -2.5006,1.3357,1.5761,-1.9329,-0.58071,0.37369,1.0977,-0.63278,0.052644,-0.70039,0.60631,-1.1481,0.95942,-0.83703,0.23907 -1.0672,2.7073,0.67166,1.3805,-0.59812,1.1232,0.61669,-0.5916,-0.53874,1.0663,0.1373,0.95219,-1.6659,0.22504,0.72303 -0.84337,1.1507,-0.35629,-0.016057,-1.0119,0.83776,-0.30668,1.2663,0.86924,-1.545,0.64796,-0.23666,1.656,-0.4012,1.9687 4.5892,-1.0327,-0.27078,0.25761,1.2613,0.76863,-0.1585,0.28152,0.099306,-1.0934,-0.66762,-0.66102,-2.1929,-0.13614,-1.2106 -3.1112,-0.24941,-1.9351,-0.74758,-1.3086,-0.85978,0.45116,0.41479,-0.43787,-0.66059,0.42383,-1.1214,-0.051076,-0.99476,0.095849 3.5067,-0.31721,-0.99414,-1.2708,0.83646,2.079,1.4468,-0.38418,-1.8531,1.1041,0.71881,-1.1537,0.091737,-0.53893,2.6043 -4.1317,-0.51192,-0.44991,-0.95029,0.19097,-2.7199,1.2571,0.87468,-0.26826,-0.65027,-0.33238,-1.5764,-0.89871,-0.14462,-0.63226 2.7375,1.6667,-0.81043,1.5813,0.5448,0.35606,0.0044588,-2.4824,-0.16171,-0.66405,-0.86013,-0.61511,-0.78879,0.1038,-1.4213 -3.3156,0.099877,-2.1092,-1.2106,-0.43103,-0.64398,-0.084683,-0.26227,-0.1561,-0.43318,-0.18512,-0.84647,1.2236,-0.49945,0.35569 -2.7079,-0.89963,-2.929,-0.85706,-0.64147,0.024968,-0.83179,-0.35866,-0.6687,-1.8185,-0.2174,-0.42709,-0.30623,-0.87859,0.27292 -3.6349,1.1137,-1.0016,0.28595,0.92287,1.9172,1.525,-0.32135,-0.37287,0.85938,0.4173,-0.63559,0.0020452,-0.99864,-0.70805 -0.4664,-1.6803,0.079147,1.5046,-0.15491,0.36465,0.42579,1.3608,1.2512,-0.71011,0.23822,-1.381,0.11921,-1.2715,0.56548 -2.5129,-0.23559,-0.80997,-0.30244,-1.6397,-0.34139,0.32422,0.96649,0.69668,-0.85602,0.60498,-1.3224,0.23167,-0.91721,0.80188 -1.5347,-0.76975,1.1689,0.50447,-0.84971,0.33147,0.72512,0.58918,2.4183,0.17998,-0.35558,-0.095831,0.68885,-1.0654,1.1922 0.66655,3.8723,0.17864,-0.84758,-1.2621,1.1606,-0.46537,0.71719,-0.90577,-0.68582,-1.0355,0.25768,-0.47665,-0.81068,0.26806 4.0698,-1.9754,-1.7463,-0.56272,1.3022,1.0863,2.9846,0.023944,0.62262,-0.078845,0.8107,1.1437,-2.282,0.11819,0.8511 -1.6958,2.1082,1.238,1.9534,0.91861,0.28727,1.1682,-0.0012187,0.083729,1.5062,-0.83677,1.7021,0.22282,0.71754,0.19749 -0.67311,0.7209,0.49386,2.5396,-0.42154,0.78868,0.81687,-1.2277,0.76564,-0.59799,0.38567,1.286,0.40412,-0.24859,0.7411 3.9222,-0.69035,-1.4705,-1.4436,0.83896,0.31642,0.94006,-0.11156,2.0386,0.51614,1.5376,-0.0063282,-2.2281,-0.65662,0.88307 4.1719,-1.0076,-2.0032,-2.8575,-1.3661,0.12026,1.0918,0.79805,1.1719,0.7878,1.499,1.032,-1.4257,-0.096212,0.42458 -2.3605,0.16558,-1.2474,-0.58172,-0.88259,-0.70701,0.31841,-0.1474,0.81512,-0.16268,0.055148,-0.97789,1.3045,-1.5227,0.18883 3.7983,0.38828,-0.85812,-0.79577,1.6088,-0.37206,0.89448,-2.2789,0.44084,1.755,1.6065,0.27558,-0.95477,-0.80832,1.5051 -2.6524,-0.17966,0.54525,-0.21672,0.20371,1.5146,1.1154,-0.96148,-0.025553,-1.2564,0.77781,-1.4146,-0.64622,-1.2416,-0.30722 3.5024,-2.2354,-1.7312,0.059568,1.9647,0.48429,0.62245,2.1122,-0.068096,0.51166,0.49861,0.24463,1.1098,-0.43179,-0.3948 3.6807,-3.0321,-0.0020536,-1.5726,3.9223,1.1908,2.507,0.93661,-0.32542,1.116,0.050049,3.3706,0.50511,0.026921,0.46328 3.443,0.56495,1.0791,-0.9171,1.0578,0.00063337,-1.1058,-1.8764,2.2452,0.36402,-0.084688,-0.17376,-0.6998,0.29582,-0.79937 0.64887,3.4397,2.4014,-1.9924,0.58942,-0.063613,0.87716,0.44092,-1.8526,0.98657,-0.681,0.41778,-1.6469,-0.36251,-0.11923 -3.6848,0.40159,1.6424,-2.2092,1.2768,-0.79987,0.79154,-1.4127,-0.42285,0.63545,0.47529,-0.50138,0.51945,0.30001,-0.30004 -1.7327,1.7204,-2.0701,1.8772,-0.4557,0.72206,0.95291,1.9991,0.59556,0.44789,-1.0178,0.27305,-0.35719,0.20429,0.8389 2.0157,0.77721,5.0223,-1.4088,1.9143,-0.39214,-0.034518,0.35698,0.17097,-0.1268,0.098268,0.16117,-1.7104,0.79674,0.0056017 2.624,-1.6613,-0.020791,0.10014,3.8247,0.54494,1.1349,-0.40878,0.3158,1.3784,1.3329,1.3834,0.99946,0.11232,1.2098 2.7894,1.1398,-0.27776,-0.09762,2.3909,-0.5533,-0.75585,-1.6172,-0.069411,2.4191,0.83298,-0.72987,-1.0297,-0.82338,0.78553 -2.8401,-0.21317,1.6224,1.4813,0.60044,-0.013043,0.81819,0.7027,1.6304,-1.6021,0.9365,0.030074,-1.6225,0.73152,0.80857 -1.9213,2.7162,2.9753,-0.39752,0.46789,0.20155,0.26284,-0.11473,-1.1114,1.0362,0.45861,0.24613,-1.8081,-0.21567,0.031848 2.6031,0.69076,3.575,0.7727,2.5583,-0.57687,0.20677,-0.62326,-0.14186,-0.43525,-1.659,0.48395,-0.78099,-1.1339,0.29614 0.76336,2.2461,4.0032,-1.5674,0.11649,0.39653,-0.69244,-0.51845,-0.14964,-1.1591,0.30543,0.80427,-0.57083,1.2725,0.27579 -0.34748,1.4916,4.4628,0.060463,2.181,-1.0436,0.072906,0.32298,-0.36323,0.26142,-0.029063,0.56183,-1.2976,-0.43488,0.45002 2.3751,-0.64439,4.2493,1.148,1.9903,0.64885,-0.17058,0.72364,0.55361,-0.41753,-1.0688,0.28045,-0.19791,-0.5429,1.2686 -2.8576,2.1574,2.0949,-1.1414,-0.27417,0.74682,0.93671,0.15742,-1.4466,0.48434,0.46568,0.19575,-0.46522,-2.0144,0.90274 -4.5704,1.3858,-1.6921,-1.0799,1.7316,0.099875,1.8915,1.6999,-0.87412,0.17025,-0.090204,-0.81396,-0.1123,-0.26263,-0.095238 1.3117,3.9774,0.6728,-1.5234,-0.24439,-0.47774,-1.2523,-0.22125,-1.295,0.51489,-0.75752,-0.84625,-0.28865,-1.2025,-0.37214 0.77895,1.1699,4.5716,-0.40821,0.70808,-0.46659,0.27007,0.43494,1.5402,-0.19052,-0.82253,0.81498,-0.445,-1.0769,0.60901 -4.3616,-0.24036,0.79134,-2.6983,2.1865,-0.89468,-0.18508,-0.46523,-0.51791,-0.17063,-0.13141,-0.65819,0.016668,-0.037255,0.34811 -4.0195,-0.62665,-1.4503,-1.2629,3.5836,-0.053516,0.17754,-1.4447,-0.90632,-0.5599,-1.2791,0.75552,-1.3383,-0.09575,-0.4508 -1.3644,-2.9731,0.89336,-0.33759,0.99364,0.67523,0.2103,-0.72685,1.7351,1.8553,-1.7297,-0.61868,0.99823,0.67941,-0.08269 1.7646,1.9491,-0.8253,1.0569,1.9752,0.47764,-0.22763,-1.9624,-0.079158,0.59364,-0.75784,-0.014987,1.3995,-0.8497,-0.95429 -3.0801,-1.6322,-1.0777,-1.5065,0.4508,0.17025,-1.5901,-0.95004,1.1029,-0.17709,-0.48172,0.99734,-0.16286,0.82067,0.61875 -2.7015,0.74324,-2.8084,0.056284,-0.04777,0.84129,1.1013,1.0549,0.63588,1.4274,-0.38222,-0.29451,-0.71239,-0.17787,-1.104 -1.8513,-1.1353,0.32157,-3.3487,1.7348,-0.097013,-1.3175,-1.5796,-1.0861,0.12264,-1.7384,1.173,-0.95064,0.054339,2.177 -0.80725,-0.58548,1.7223,-0.35687,-1.0674,0.66059,1.2888,-1.7192,2.163,0.84472,-0.12299,-0.15904,-0.36755,0.45563,-0.42938 -1.8273,-0.8669,-3.2266,0.34233,0.043647,-1.7545,-0.95849,0.24626,0.42016,-0.10425,-1.1601,0.82316,-0.75705,-0.15706,0.71454 -1.4332,0.10653,1.9345,0.64849,1.6859,-1.5323,0.88883,-0.78689,0.41401,0.59458,-0.92308,1.7661,0.16806,-1.4387,-0.41215 -0.030244,3.3998,-0.36698,-0.24684,-1.2383,1.2078,-1.3302,0.027888,-0.84105,-0.6712,-0.48345,0.36981,0.10967,-1.2116,0.049974 1.4626,2.4451,0.16509,0.35143,-0.90584,1.0486,-1.7588,-0.78253,0.59703,0.16113,0.027662,-0.15057,-0.08743,-0.02514,-0.26741 3.8911,0.2483,-1.7897,-1.0136,1.5251,2.2671,1.3974,-0.87254,-1.0213,0.61101,0.40828,-1.6265,-0.45202,-1.1311,0.58689 0.33415,1.4962,-2.094,0.88406,0.81283,0.44722,-1.5605,0.22662,1.9853,0.84417,0.88787,-0.14156,0.61099,-0.80969,-0.56048 -1.6463,-1.0755,0.92874,-0.57532,0.3275,0.64194,-0.14358,-2.2433,1.1376,1.7544,0.57549,-0.3122,-1.1602,1.228,0.04851 4.1489,0.5592,-2.1649,-2.3441,1.5106,0.43072,1.9464,0.73676,0.54398,2.1325,0.69434,1.086,-1.3154,-0.5369,-0.97038 2.568,2.4679,-0.3064,-2.0247,0.11038,0.037002,-1.3366,-0.018485,0.85037,-0.50162,0.47951,-0.93534,-1.332,-0.82769,-0.70449 -2.9987,-0.83748,-1.4042,-0.79033,-0.013485,0.68395,-0.59859,-2.2416,0.80105,-0.2542,0.19298,1.1393,-0.15238,1.4206,-0.88499 -2.2834,-2.5097,0.074503,-0.742,1.312,0.19113,-1.4127,-1.9441,1.2184,0.66274,-0.55955,1.1438,-0.17875,1.5906,0.25213 -0.4643,0.14821,2.1382,-2.989,-0.27443,1.908,-0.25221,-0.74718,0.19366,-1.766,0.31706,-0.039713,-0.49419,2.3758,0.073985 -1.6905,-0.53024,0.119,-1.1465,-0.40677,1.0342,-0.20042,-2.9229,0.82256,0.38336,-0.17404,-0.18641,-0.68497,1.4007,-0.1915 -2.6592,-1.7705,-0.020592,-0.55629,-0.36403,1.6338,-1.0308,-0.95495,1.4715,0.52445,-0.28811,-0.24668,0.47186,1.7492,-0.12147 -1.2332,1.6533,1.1599,-0.018508,-0.27062,2.0372,0.77911,0.13987,0.30556,-1.0535,0.42593,-0.45094,0.81778,-1.1029,1.7604 -2.7386,-0.48056,-2.004,-1.102,0.57162,-0.24831,-1.2735,-1.4804,1.0587,-0.55949,-0.10327,2.0399,-0.16321,1.0989,0.048066 -1.922,3.0967,0.92156,0.86518,-0.078114,0.81473,0.39851,1.0129,-0.13799,1.053,0.68307,0.94695,-0.60375,0.25518,-0.30129 -3.1414,-0.95465,-1.659,-1.259,-0.1853,0.85408,-0.93464,-1.2221,0.93384,-0.87475,0.28655,0.87241,0.02021,1.1469,-0.75415 0.64079,3.4217,-1.5253,-0.30108,-1.1368,0.9859,0.65625,0.13674,-1.4517,-0.32481,-1.8201,-0.97997,-0.85691,-0.071966,-0.6985 -2.5107,3.0892,1.5878,0.77034,0.73375,-0.34016,-0.013468,1.2903,-0.47162,0.81378,0.22539,1.1715,-0.96732,0.43715,-0.39816 2.5152,0.72729,-3.4449,-1.3173,0.044376,1.1629,1.6131,1.1694,0.47108,0.46166,1.6864,0.58433,-0.087118,-0.6888,0.92407 2.5318,0.034102,4.952,-0.88008,2.0112,-0.22411,0.50624,0.59047,0.5141,-0.26912,-0.66715,0.81702,-0.52776,1.004,-0.30942 -0.99604,-3.1236,4.1739,-0.87806,1.9774,0.19339,0.32609,0.33768,0.0039141,1.0992,-1.0791,-0.812,0.039352,1.6592,0.23152 -0.29553,3.9565,0.82419,-0.6637,2.6559,-0.37057,-0.69531,1.1604,-1.5011,-0.61874,-1.0579,-1.4771,0.50749,-0.36049,-0.12614 -0.96414,-3.2323,3.5014,-1.6981,1.6735,-0.43561,1.2185,-0.28344,1.0552,0.78207,-1.6339,-0.50859,0.0062432,-0.7337,-0.40141 -2.7476,-0.50295,2.9593,-0.8653,1.8636,-1.5398,1.1939,0.33387,0.29311,1.1153,-0.21926,-0.70989,-0.42398,-1.5473,0.82219 -2.3904,0.4049,3.1564,0.65794,1.1842,-0.8269,0.6425,0.95484,1.0046,0.08541,0.48435,0.070469,-0.48991,0.3497,0.84465 -4.1458,0.66503,0.0098779,-1.6843,1.3643,0.73886,0.84387,-0.22739,-0.64219,-0.99869,0.52314,-0.9258,0.25812,0.58144,-1.0201 1.8955,3.8808,-0.21591,-2.5389,0.51113,-1.0069,-0.93038,0.29197,-1.838,1.469,-0.24259,-1.8562,-0.77746,-1.1171,0.017993 1.9582,2.85,-0.2405,-1.2681,-0.14611,0.033406,-0.94191,-0.65161,0.78023,-0.85287,-1.0367,0.03934,0.54402,-1.6566,-1.0586 0.60135,1.8845,4.5694,-2.3846,1.2397,-0.44019,0.32428,0.086344,-0.87868,-0.73568,-0.61571,0.44818,-1.1167,0.095325,-0.46108 -0.76271,2.0026,1.4245,2.1459,1.6206,-1.2384,-0.91092,0.73748,0.82566,0.5915,-0.5106,1.0138,-0.58374,-0.82931,0.69389 -2.2399,-3.3116,3.5983,-2.5302,2.2342,-0.50097,-0.81136,-0.13612,-0.026313,0.46595,-1.3447,-0.38958,-0.30391,1.8177,0.90795 2.9281,-0.24804,2.5118,0.85634,1.9356,0.89231,1.3412,1.4904,-0.84292,-0.50558,-1.4678,0.45501,-2.2249,-1.457,-0.39685 -3.1668,0.22893,2.5319,0.43295,1.1358,-0.46453,1.0628,-0.1536,1.515,0.14956,1.049,0.37709,-1.0918,0.62534,0.28247 -1.142,-1.1804,4.8017,-0.40809,1.2815,-0.32859,0.6268,-0.25207,1.1423,0.057552,-0.51442,-0.049395,-0.23152,0.16121,0.3469 -1.4282,-2.3425,4.2252,-0.25718,2.1208,-1.146,0.85074,1.1893,0.12581,0.048405,-0.5398,-1.0643,-0.30787,-0.69566,0.80115 0.50108,4.1168,0.27584,-0.51627,-0.21719,-0.35399,-1.4017,-0.57726,-1.5966,1.1466,0.37838,-0.48855,-0.16635,0.71971,-0.80564 -2.0128,-1.5221,2.8616,1.0353,1.9018,-0.2219,0.94027,0.69636,1.347,-0.21696,0.57663,-1.0901,-1.0065,-0.074959,1.6557 -1.7807,-0.97502,4.258,-1.9342,0.26392,0.68132,0.099743,-0.39049,0.50624,-0.24037,0.10972,-0.52274,-0.3282,1.2535,0.49984 -1.0187,0.50724,3.5315,-2.5816,1.4347,0.58543,0.90352,2.1151,-0.97873,-1.7261,0.50678,-1.7134,0.50083,-0.83048,0.8254 -2.6074,1.6712,1.0055,-0.27464,-0.7888,0.90977,1.0494,0.36394,0.81248,-0.5148,0.69576,0.95466,-0.25714,-0.64479,0.6484 4.206,-0.85533,-0.9988,-0.7167,2.1078,0.67609,1.157,-1.0114,1.6022,-1.1708,0.78858,0.29708,-0.89496,-0.94613,-0.89899 2.1076,1.7836,-1.8033,0.038799,2.1536,0.5453,0.48876,-2.124,-0.98419,1.0285,0.28123,-0.14625,0.96575,-0.78958,0.55366 -2.5518,0.4145,0.89528,-1.5352,-0.84161,1.5495,0.51615,-1.1937,0.7221,0.54568,0.89001,-0.44414,0.19782,-0.4002,0.13044 1.1243,3.8352,-1.428,-1.1063,-0.12362,0.49311,-1.4346,-0.97317,-1.1874,-0.17271,0.73907,-1.0483,0.96482,-0.23422,-0.32093 -2.5549,1.4784,1.0248,-0.39641,-0.681,2.17,1.7911,-1.4201,-0.41109,-1.2859,1.0256,0.17932,-0.26821,0.17281,-0.24661 1.5926,2.1691,-0.6533,0.73685,0.15784,0.52531,-0.15754,-1.3945,0.06794,-0.38546,-1.4819,0.73201,0.8915,-0.91356,-1.1332 -0.30299,1.7682,-1.7701,1.9362,-2.2845,0.7994,-0.39459,-0.16634,0.21878,0.50551,-0.34676,0.44311,-0.4085,0.92024,-0.13331 -2.2159,1.5114,0.88021,-2.5896,0.7125,1.5173,0.0085834,-0.677,-2.1236,0.18536,0.67903,-1.6617,-0.63795,-0.039183,-0.20928 -0.27737,1.6499,-0.37149,1.6929,2.4256,-1.943,-0.47859,0.12212,1.1793,-1.2395,-0.40111,0.089147,0.4907,-0.20664,-0.99781 -2.1178,1.9599,1.0264,-0.24955,-1.0189,0.55764,0.93095,-0.26034,0.031344,0.28554,1.0597,0.087865,1.0093,-1.4172,0.33602 -1.7799,2.094,0.18667,0.65156,-0.61663,0.49281,0.79793,-0.22424,0.28696,1.9937,-0.084076,1.3505,-0.30246,-0.95427,0.72034 -1.0234,2.3916,-1.8119,1.2005,-2.4751,1.6934,0.85438,0.19398,-1.2268,-0.48597,0.012978,0.25276,-0.0167,-0.22191,0.088222 -3.6271,0.73685,-0.99088,-0.62246,0.54032,0.39098,1.2985,0.52074,1.2667,0.31068,0.73839,-0.082721,-0.34999,-0.88059,-0.44488 -4.2459,1.4853,-0.10191,-1.1834,0.86481,-0.45115,1.3088,1.0245,0.13714,0.77002,0.64166,-0.71113,0.33782,-1.3152,0.24186 3.4653,0.19908,2.3128,0.3132,1.6072,0.59785,0.31358,1.247,0.79059,-0.055415,-2.0168,0.80033,-1.421,-0.76935,-1.0052 -3.5508,2.0567,-0.038701,-0.36096,-0.021671,1.0679,2.0928,0.089567,-0.015522,-0.54136,0.73765,0.73284,-0.085384,0.075945,-0.82946 -3.6559,0.080379,-2.4442,-0.89171,1.0627,0.93987,1.2128,-1.4092,0.50218,-1.0798,-0.44509,-0.12056,0.12711,-0.049937,-1.3115 -2.8152,-0.36028,0.88173,-1.6254,-0.72561,2.19,0.36812,-1.8627,0.2326,-0.47203,1.1028,-0.27121,-0.010674,1.1951,-0.85345 -0.61453,4.4896,0.7264,-0.631,1.3116,-0.551,-1.8081,0.29752,-0.71162,0.31765,0.17656,0.70936,0.019706,-0.18612,-0.985 -3.4966,1.565,0.714,-0.92052,-0.080078,0.12187,1.3033,0.090236,0.32419,-0.10608,1.1131,-0.48108,0.84084,-1.2305,0.49512 -3.1425,-0.43076,1.2914,-1.1894,-0.43116,-0.12962,0.30354,0.20728,1.8212,-0.77549,0.97825,-0.9632,0.66676,-0.32781,0.71324 3.3088,1.5802,-0.098323,-1.8923,0.71978,0.061618,-1.3521,-1.1216,1.743,0.93163,0.61154,-0.18272,0.077272,-1.2162,-0.15183 -2.7119,-0.25586,1.1327,-0.0692,-0.033599,-0.70933,1.5087,-0.37664,1.8423,0.84492,-0.10339,0.18864,0.50615,-1.4898,0.3989 -4.0621,0.25249,-1.7906,-1.5961,0.84711,-0.41975,1.027,-0.020411,0.2649,-0.82317,0.057451,-0.86644,-0.23569,-0.95987,-0.63416 -2.0993,2.7537,-1.2672,0.48571,1.2454,2.7733,0.27036,1.3835,-0.48488,-0.54109,-0.74018,-0.3447,-0.15806,-0.025094,-1.0917 -1.742,0.96796,2.3037,-1.2305,-0.5522,0.336,1.028,-0.89878,1.5808,0.7738,0.2379,-0.38231,0.12341,-1.1528,0.16986 1.1308,2.7619,-1.9343,-1.2023,-0.55481,1.0453,0.24749,-0.71693,-0.017372,-0.65639,-0.45889,-0.46607,-0.16701,-1.0904,-0.92112 3.4099,-0.1248,-2.0739,-0.48031,-0.13098,1.1042,1.1564,0.13323,-0.28794,2.6746,1.2227,-0.25169,-1.4161,1.1076,1.4575 -2.9605,2.377,-1.4536,0.44494,0.35782,2.4119,1.2235,2.6062,-0.79248,-0.39768,-0.81646,0.088779,-0.49868,-0.87788,-0.061388 -1.1385,-1.8897,-2.7736,-0.042121,-0.30348,0.68899,-0.96653,-0.31943,0.064279,-1.659,-1.9768,0.3913,-0.79317,0.35821,1.702 0.46215,-1.8347,3.9434,0.44794,2.504,-0.44914,0.9335,1.2429,0.025549,0.51824,-0.37347,-1.2064,0.13133,0.088287,0.78108 -1.1714,1.7197,-1.0827,2.3739,0.80777,0.35692,0.30329,0.63009,0.43843,-0.05678,-0.38193,-0.0099128,-0.30701,-1.4146,1.4361 -2.0202,0.56546,3.3913,-2.4628,1.1336,0.32724,0.42306,0.09729,0.22255,-0.28048,1.1996,-0.58664,0.21779,1.8486,-0.03843 -0.9971,2.5221,2.8835,0.86542,0.27292,-0.88538,-0.29528,-0.78775,0.38176,0.037977,0.16019,1.7178,-0.63635,0.72198,0.00088817 -0.63329,-2.5106,2.0038,-2.3456,1.614,-0.39224,-0.25909,-0.93639,0.27608,1.7079,-2.1016,0.01561,-0.4858,0.74294,0.17742 -2.4781,-1.5594,2.4009,0.90712,2.1877,-0.77401,0.85598,1.2511,0.86046,-0.88845,0.61874,-1.6943,-1.1379,1.2883,0.89568 -4.0406,-0.95425,1.6169,-1.5389,2.3214,-2.2833,0.29052,0.20476,-0.13145,-0.49012,0.050454,-0.94759,-0.65131,0.27552,0.078048 -2.4906,3.0019,0.084846,0.19704,-0.70361,1.5381,1.1608,0.27249,-1.2663,0.31043,0.19234,1.372,0.043775,-1.2647,0.24695 -1.2792,-0.1897,3.9367,-1.1163,1.2892,-0.77901,0.5095,-0.024063,1.6561,0.13835,0.63316,-0.42469,0.59653,0.050337,-0.25195 0.33583,3.1501,-1.1079,0.09077,0.67667,0.61204,-2.5205,0.50086,-0.82459,-0.35149,1.7107,-1.0132,0.53278,-0.43883,-0.82025 -0.039947,2.2128,-0.070975,1.9154,2.7962,-1.0976,-1.2939,0.31233,0.9768,-0.94003,0.036171,0.26438,-0.54919,0.62155,-0.93224 -4.0523,0.40023,-1.4622,-0.8913,0.64495,1.3183,1.217,-1.0165,-0.18162,-0.2387,0.83855,0.12998,-0.025784,-0.07224,-1.5102 -3.951,0.90609,0.30092,-1.5189,0.28387,0.79235,1.064,-1.7436,-0.45504,0.20946,1.1411,0.17928,0.49799,0.3069,-0.76041 -1.989,-1.417,3.6836,-0.53938,2.0656,-0.82048,0.43999,0.90317,0.7643,0.014264,0.59482,-1.0281,-0.51582,1.2844,0.85947 -3.3633,-3.0195,0.70018,-1.8007,2.4255,-1.3436,-1.7948,0.48483,-0.19158,-0.20726,-1.2068,-0.30619,-0.65687,1.5414,1.3565 1.5553,1.0786,0.63935,1.5909,1.2987,1.8801,-2.3456,-0.88319,1.0102,0.21923,0.42487,-0.17515,-0.19484,1.0033,0.22113 -3.29,-2.1624,-0.28823,-1.167,2.0226,-1.7404,-2.2339,-0.1318,-0.39467,0.42813,-1.7408,0.50313,-0.081115,0.61598,1.6604 -2.1173,-1.1229,3.8508,-1.3576,1.2597,-1.5945,0.15698,1.7947,0.23081,-0.50513,0.32768,-1.4921,-0.19055,-0.0072829,0.76776 -3.5102,-1.6856,0.38539,-2.8814,2.8052,0.16741,-1.6654,-0.64575,-1.711,-1.3718,-0.75162,1.2242,-0.60485,1.427,1.168 3.708,1.2347,-0.67886,-0.11199,2.1546,0.59138,0.2102,-2.1842,0.036208,0.30092,-0.28293,-0.23827,-0.45275,-1.3763,-1.6574 -0.90605,2.7553,2.3512,-0.44011,-0.19764,2.4972,-0.37776,0.011091,-0.17063,-1.6385,0.71513,1.0998,-0.39668,0.74882,0.23303 -0.66185,-0.27963,3.6128,-0.15119,0.21373,0.70173,1.152,-0.30278,1.4862,1.4283,-0.82547,-0.75479,-0.44786,0.016218,0.62786 3.7262,1.575,-0.29164,0.023955,2.7805,-0.16516,0.47871,-2.0484,-1.1651,2.0864,0.030559,-1.4554,-1.1255,-1.1289,0.24798 2.1058,-0.91975,0.96663,0.65226,0.89116,4.1969,0.81004,1.0138,-0.60913,-2.0025,-2.1221,0.77834,0.03793,0.52205,0.13284 2.0732,-0.71361,2.859,1.637,2.3132,1.7414,0.72871,-0.51053,0.11194,-1.076,-1.7143,0.45666,-0.7394,-1.0923,1.3693 5.281,-0.38531,-0.80356,-0.3968,1.8034,-0.15352,2.0541,-0.50175,-0.97392,-1.9449,0.12523,0.064399,-1.2675,1.9989,-1.5784 -1.0155,-0.81669,2.7888,-0.084391,-0.15312,0.62921,1.1177,0.26939,2.6871,0.66914,-0.45478,-0.029065,0.53818,-0.91195,0.77651 -1.3906,0.62429,3.1995,-0.93232,-0.45961,0.32448,0.67889,0.016196,2.1472,-0.27342,0.19173,0.20118,0.66137,-1.0576,1.4126 -0.59926,1.5159,0.156,2.191,1.1634,0.15794,-0.28601,-0.91242,0.37917,-0.24046,-0.69369,0.58731,0.21709,-1.5381,0.94074 2.8048,-0.78789,3.326,0.22761,2.1482,0.73909,0.94361,1.6501,0.86732,-0.33258,-0.8855,0.90453,0.53832,-0.43261,-0.0171 3.7774,0.28032,-2.1567,-2.4391,-1.8623,0.25941,-0.63499,0.89294,0.63354,0.12182,1.3119,-0.87526,-0.43217,1.0502,0.089133 2.8196,1.3102,2.7421,-0.29701,0.77548,0.40255,-1.1001,-0.47169,1.7935,-0.32599,-1.0127,0.80726,-0.62411,0.99593,0.0044319 1.1286,2.6997,1.4729,-0.061001,2.1354,-1.3497,-2.4288,-0.19768,1.2025,0.49769,0.61017,0.023185,0.029577,-0.41868,-0.055641 0.50547,1.3521,2.6841,-2.3947,-1.0165,2.1195,1.656,0.020807,-0.042501,-1.0265,0.10121,-0.17011,-0.51663,-0.048451,0.10849 0.94238,3.8464,0.43385,-1.8773,1.8807,-0.89246,-1.5636,-0.37441,-0.087662,1.4041,0.67791,-0.54965,0.70381,-0.601,-0.43056 -1.4768,1.2485,3.5095,-0.19886,0.33858,0.27553,-0.37232,1.7945,0.81161,0.060391,0.19324,0.41854,0.068739,0.31769,1.392 -0.033936,2.911,-0.81121,0.93061,-1.2546,0.20918,-0.1479,-0.8486,-0.35184,1.5292,-1.0141,0.13386,-0.65174,0.66818,-0.25085 -2.6466,-0.68751,-1.4192,-2.0065,1.0112,1.3892,-0.99729,-2.072,-0.635,-0.37381,-0.8705,1.4382,-0.37135,-0.25322,0.64121 3.5435,-1.1968,-0.77687,-0.49599,2.0283,0.62625,1.5814,0.10384,-0.65234,2.4958,-0.048144,0.61786,-1.6473,-1.0299,0.85338 0.52669,-1.6182,2.8738,1.4548,1.1079,2.7637,1.5111,-0.17767,0.75759,-0.27855,-1.0137,-0.074272,0.71918,0.22415,-0.29283 0.9251,0.092156,2.7226,-0.059185,0.26849,0.695,0.15634,1.6329,2.4429,-0.43644,-0.72438,0.65963,1.2923,-0.50112,0.94675 -1.6882,3.0526,-0.067393,0.91617,0.34113,0.35387,-0.62251,2.2936,-0.47616,-0.56688,-0.44105,-0.41253,0.90824,-1.0949,0.98655 -1.7217,4.2047,1.488,0.03855,0.66401,-0.14764,-0.54747,0.9119,-0.94725,0.18214,-0.067253,1.3169,-0.065238,0.38153,-0.37717 1.0669,3.124,-0.068594,-0.50035,-0.11194,0.34532,-2.224,-0.44335,0.76691,0.55406,-0.052571,0.051652,1.0604,-0.5036,-0.42233 -0.57212,2.8769,-0.66078,1.7112,0.30636,0.65006,-0.88006,0.3201,0.38397,1.5136,-0.80003,1.0702,0.46725,0.33723,-0.53694 2.3801,1.3798,-1.676,-1.4043,-0.47641,-0.16445,-0.50954,-0.30712,1.1239,1.8137,1.2616,-0.79059,-1.759,0.028684,0.96036 1.0823,3.0451,-1.7906,-0.3549,0.12033,1.0009,-0.15504,-1.323,-1.583,-1.3477,0.074559,-1.4412,-0.47012,1.0563,-0.50325 2.4857,1.0065,-1.256,-1.0255,0.42773,0.55036,-0.58102,-0.78367,2.6374,1.0606,0.67708,-0.065224,0.57004,-1.0264,-0.090617 3.2406,1.8563,-0.55609,-0.70692,0.17171,0.26904,-0.92466,-0.47543,1.9754,0.86148,-0.64471,-0.817,-0.3825,-0.19663,-1.1906 -0.0072213,3.6184,-0.15862,-0.38155,-0.2114,1.3651,-1.7069,0.27548,-0.57175,0.77702,-1.0468,0.032329,0.95154,-0.55612,-0.68812 -0.026489,1.6661,-0.62361,1.5526,2.2712,-1.0522,-1.3882,1.5892,0.91539,-0.99423,-0.014638,-0.051353,0.80106,0.49421,-0.46529 1.299,3.7203,-0.21316,-1.2262,-0.17607,0.57136,-1.3377,-0.79538,0.17815,-0.33554,-1.0825,-0.4534,0.35155,0.41958,-1.0848 1.4736,3.5175,-0.85474,-0.37061,-1.0946,0.15125,-0.88987,-0.46952,-0.53741,-0.014945,-1.2678,-0.83769,0.19709,0.33843,-1.1895 0.67253,2.5709,-0.82099,-0.12037,1.1972,-0.52235,-1.6099,-0.81658,1.11,1.7451,0.83002,0.096733,0.7435,-0.50118,-0.48667 1.1249,0.71207,-0.72359,0.33804,2.0849,1.6862,-0.87201,-2.7579,-0.05331,0.16586,0.72401,-0.62151,0.88177,-0.3712,0.28667 0.030839,2.8353,-1.2916,-0.73193,-0.67335,0.72661,-1.457,-0.40063,0.70413,1.1705,-0.17693,0.7341,0.34999,-0.44519,-0.62937 4.3205,-0.20712,-1.5737,-0.73153,1.7974,1.4637,1.6888,-1.5813,0.72587,0.52313,0.47191,0.37266,-0.54954,0.71314,-0.50881 -2.1156,3.1575,0.13322,0.56568,0.53797,-0.26592,0.14717,0.35822,-0.060707,0.8351,-0.36506,1.6742,-0.17524,0.16009,-0.20753 0.83676,1.1231,2.2305,1.1122,-0.31353,0.92988,-1.0359,-1.0713,2.0306,-0.69317,-0.87827,1.2364,0.028872,0.54234,0.091807 1.8243,0.12918,1.1659,1.4666,1.2013,-0.63641,-1.3728,0.32564,1.4913,-0.56183,-2.0401,0.041456,0.88675,-0.92648,-0.86309 3.8981,0.67592,-1.1409,-1.3009,0.48036,-0.15541,-0.078741,0.47883,1.7311,0.81274,0.89651,-1.2596,-1.9872,-0.15348,0.20428 0.69455,0.86073,-0.94159,2.1826,2.9823,0.073425,-1.8814,0.034189,0.92007,0.2183,0.6583,-0.52702,0.7788,1.0607,-0.29961 0.48859,2.9556,1.5793,-2.6253,-0.36264,0.022323,0.66136,-0.22606,-1.1692,-0.48373,1.666,0.14594,-0.40438,0.92759,0.13424 -2.8862,-2.5832,1.284,-3.4387,1.18,0.9112,-1.5976,-1.9387,-1.6531,0.057221,-1.5093,0.31631,-0.45577,1.3957,0.83845 3.1059,0.3994,0.93701,-0.52361,2.3895,-0.054266,-1.3083,-2.3332,1.617,1.4023,1.2035,-0.54961,-0.95465,0.59226,0.54143 -1.8405,0.44353,0.99554,-0.085556,-0.081931,-0.65373,1.8511,-1.2521,0.86029,1.5055,-0.35546,1.1112,0.5124,-1.9811,-0.098702 -1.7116,-1.5314,1.0558,-3.9412,0.0059599,0.22117,0.62764,-2.313,-0.88115,0.16585,-2.0147,-0.30493,-1.7024,1.0543,-0.19698 -3.0253,1.2405,-0.79318,0.17498,0.32886,1.2186,1.6435,-0.25884,-0.23057,0.82343,0.63857,-0.84174,-0.39788,-1.4371,-0.63467 -3.4176,1.5005,-0.65382,-1.2297,0.51797,0.98158,1.6215,-1.3362,-0.89943,0.37778,-0.035556,-0.79575,0.76496,-0.91585,-0.33415 -2.0025,-1.8189,-1.8886,-0.59982,1.1597,2.0475,-1.7024,-1.5132,-0.72229,-1.1856,-1.201,2.2661,-0.89783,0.7672,0.80474 -3.5551,-1.6856,0.56811,-2.8997,1.2477,-0.0067397,-0.57207,-2.6322,-1.0951,-0.78363,-1.1439,0.38153,0.17431,-0.07005,0.53347 -4.0448,-1.6881,0.40312,-2.0262,1.4158,-0.86609,-1.0678,-1.6693,-0.084814,-0.39935,-0.78972,0.80268,-0.015061,0.6273,0.55256 2.127,1.6508,-0.052745,-1.2417,-0.48862,1.7017,0.66917,1.562,0.51081,-1.3037,-0.87653,1.1094,0.069081,-0.42194,-0.38882 0.37624,2.7488,0.47652,1.6149,0.63064,-0.5984,-0.74487,-1.1801,0.75062,0.5568,-0.4493,1.1246,0.55103,0.88772,-0.71784 -2.1868,-2.7522,1.0707,-3.4046,0.77455,1.2595,-1.8306,-0.79561,-0.63941,-0.1599,-2.4805,-0.045366,0.49772,0.82192,1.1946 -2.7616,-2.6798,-1.4371,-1.2822,0.83526,-0.057811,-2.7731,1.0289,-0.42749,-0.95651,-1.4705,0.72047,-0.52597,0.59906,2.2661 -2.7152,-1.4534,-0.89173,-1.4358,2.1947,0.48855,-1.3843,-2.3411,-1.3836,-1.4989,-1.3724,1.2294,-0.30275,0.31652,1.762 -2.2984,-1.714,-1.0508,-2.1975,1.1544,0.92033,-1.4887,-1.8328,-1.2511,-1.0436,-2.2914,1.0693,0.15297,0.03179,1.7686 -1.1025,-1.9201,0.055231,-3.3632,0.71597,1.4852,-0.58203,-1.6776,-1.4055,-0.68178,-2.0899,0.84497,-0.83676,1.7561,1.2037 -3.3918,-0.81103,-2.8891,-0.32239,0.12494,0.46514,-0.42389,-0.59368,0.10932,-0.83262,-0.67639,-0.0945,0.16364,1.0614,-0.45894 -0.57297,-1.2269,1.1098,-3.8968,-0.15487,1.1654,0.53687,-1.0182,-0.57401,0.11992,-0.94258,-1.0502,-1.6897,2.3441,0.018753 -2.3632,3.8745,-0.073391,0.25681,1.2636,0.55825,-0.48879,1.8464,-1.2856,-1.1638,-0.28495,0.78636,-0.20036,-0.5525,-0.79588 3.061,1.1694,-1.4055,-0.19826,0.59839,1.3098,0.74844,-1.7944,-0.72591,0.27453,0.42838,-1.8418,0.73302,0.52575,0.83583 -1.8092,0.47064,2.4568,-0.14631,-0.19228,-0.022411,1.5906,-0.99177,1.3806,1.5299,-0.080414,0.30639,-0.076998,-0.67292,0.61518 -1.8581,0.36783,1.343,1.8535,0.61259,-0.943,2.0775,0.32046,0.58291,-0.47349,-0.70988,1.2185,0.62649,-1.8674,0.33799 3.0423,0.68227,3.0542,-1.4485,0.76039,1.4526,-0.5821,1.3219,1.2194,-0.74601,-1.723,1.6636,0.11118,0.44261,-1.3333 3.042,0.17121,1.025,0.6812,2.7247,1.5566,-1.54,-1.687,0.13525,-0.097538,0.74415,-0.65282,0.39774,-0.89987,0.49717 -0.84308,1.4833,2.3018,1.7392,0.67554,-0.76093,0.53409,0.022351,1.7434,0.17502,-0.7281,1.4994,-0.023468,-1.496,0.93559 0.93911,2.9572,1.7294,-0.25449,0.70428,-0.3352,0.18133,0.21653,0.15161,-0.34954,-2.3487,1.0591,0.79879,-2.067,-1.3697 3.1341,0.7547,1.2682,-1.5613,-0.08602,0.87056,-0.64342,1.2513,1.9464,-1.1736,-0.91648,1.5497,-1.6612,0.46833,-0.52197 2.0803,1.0129,1.4214,-0.69075,0.28799,0.80315,-2.1253,0.20509,2.3736,-0.33757,-1.1694,0.68165,0.24018,0.080193,0.21678 2.4016,2.291,-0.91901,-1.7628,-0.97374,0.27914,-1.0232,-0.69527,0.8239,-2.1129,0.15757,-0.22123,-0.74954,0.86535,-1.0457 3.2313,1.5896,0.32457,-2.6043,2.2105,-0.79829,-0.023128,-1.2023,0.85354,-0.5485,0.53315,0.52819,1.7672,-0.9583,-0.96222 0.93172,2.2399,0.084843,1.1534,0.57996,0.16988,-1.4976,-1.4854,1.4811,1.0693,-0.22533,0.46385,0.57133,0.10653,-0.75524 2.3452,1.5965,-1.5389,-0.58036,1.9355,-0.30349,-0.8546,-0.73184,-0.96472,2.1699,0.92871,-1.1831,-0.15035,-1.4325,0.91015 1.2603,2.6756,0.57479,1.0982,2.2295,-0.10384,-0.66743,-0.87107,0.092787,-0.36024,-1.1984,1.0112,1.6139,-0.95814,-0.99307 2.3735,-1.9324,-2.1683,0.13241,1.0483,1.7177,1.7379,1.4468,1.0024,0.62723,0.48459,1.2416,-0.27506,-0.39267,1.2516 1.7619,-1.7476,-2.5277,0.22699,-0.18364,1.775,1.3919,1.1764,-0.15422,-0.72211,0.15561,1.7844,1.1656,-0.9966,0.016915 -2.3999,-0.048756,1.5333,1.1021,-0.18457,-1.1125,1.2099,0.30452,1.9643,-0.2994,0.50764,0.26033,-0.16265,-0.98477,0.85919 1.4982,1.9263,0.8866,1.3594,0.57485,-0.57674,-0.97418,-2.6862,0.13256,0.18287,0.021122,0.37043,-1.1787,0.19678,0.0084286 -3.5091,-1.0829,-0.1595,-2.0458,1.4704,-0.61563,-1.6057,-1.9018,-0.067013,0.21496,-0.45009,1.8875,-0.68476,0.94523,0.33688 -3.5243,-1.5016,0.10482,-0.91434,2.0124,-0.98179,0.72415,0.42306,0.57214,-0.42025,-0.21699,-1.2793,-1.5051,0.037047,-0.1539 -2.8742,-1.4273,2.0361,-1.468,0.96293,-0.088505,0.30421,-0.62201,1.8574,0.25511,0.041436,-0.63475,0.60091,0.57405,-0.063817 3.0753,-2.3824,-1.0604,-0.35003,1.7314,2.9095,1.0045,-0.15225,0.57226,0.091079,-0.36614,0.49049,0.44264,-1.0093,0.93531 1.7365,2.7494,-0.94111,-3.555,0.38942,0.82517,0.075605,0.41421,-1.0591,1.0692,0.82638,-1.4794,-0.81822,-0.39741,0.40471 -2.8197,-0.57251,0.33868,-1.6974,1.1078,0.54423,-0.50562,-0.49171,0.53403,1.6154,-0.54406,-0.46818,0.21044,1.5915,-0.045674 2.5506,2.3219,0.96718,-1.0783,0.015935,0.68653,-1.8014,-0.89753,1.6964,-0.58739,-0.56229,0.21222,-0.27197,-0.3629,-0.31826 -2.4032,-0.49244,1.2236,-0.9437,0.46215,-0.76517,0.51404,-0.97926,1.7901,-0.26389,0.33593,-1.1177,1.0806,1.1824,0.064701 0.355,2.6984,-2.9514,-1.4537,0.66349,1.2127,-1.7374,1.474,-0.80568,-0.039535,1.8105,-1.529,0.29238,-0.31574,-0.19609 -4.2945,-0.38435,-1.9515,-1.3768,1.4111,-0.13963,1.0235,-1.2276,0.10227,-1.6828,-0.43093,-0.15356,0.30295,0.2368,-0.72893 -1.0822,-2.1252,0.65071,-0.97352,0.32585,0.85191,-0.89237,-1.7301,1.404,1.4061,-0.79411,-0.61237,-0.64089,0.1035,0.92835 -1.2987,1.794,-1.143,1.1452,-1.382,1.0182,0.47534,-0.10837,1.2333,1.1727,-0.14981,1.5491,0.13047,0.21235,0.4491 -2.0759,-1.4286,-0.59675,-0.070692,1.8514,0.31093,-1.2388,-1.6725,1.0124,0.91799,0.066431,0.70039,-1.3706,0.80826,0.36858 -1.8722,-1.1453,2.3859,-1.6498,-0.40235,0.79143,0.82925,-2.2837,1.4135,0.83357,-0.25425,-0.15286,-0.0013312,0.45229,-0.62262 -0.19939,3.2743,-0.508,-0.53336,-1.7923,0.63186,0.87131,0.24724,-1.0787,-0.69771,-0.33607,-0.15189,-1.0348,-0.70992,0.51945 -3.4032,-1.3697,-0.39931,-1.7369,1.3304,-0.60312,-0.9169,-1.9784,0.82783,-0.054886,-0.00031132,1.1895,-0.078312,1.4374,0.22659 3.6727,-0.67221,0.48025,-2.5118,3.17,-1.3822,1.0384,0.5861,-2.2548,2.1114,2.0877,0.26694,-1.3213,-1.4416,1.5951 0.96858,3.2612,0.57348,0.36325,-0.012143,0.082083,-0.7517,-0.23829,1.3188,0.59174,-1.9378,0.95672,0.13822,-0.87786,-0.5642 0.31619,3.7824,-1.626,-0.30567,-0.52258,1.2256,-1.2909,-0.87765,-0.79337,-0.071013,-0.029105,-0.30237,0.75857,0.4381,-1.0954 -0.8622,2.8089,1.4874,0.15143,-0.53922,0.31354,-0.71776,0.75684,0.99172,-0.65333,0.024443,0.94897,0.86349,-0.92052,1.0607 3.5496,2.25,-0.73448,-0.39067,0.38437,0.43287,0.3899,-0.56672,1.0025,-1.3177,-0.22613,-0.23776,-1.372,0.72006,-2.1211 -2.7865,2.88,-0.60482,0.41478,0.03686,1.62,0.57629,2.301,-0.67488,-0.57904,-0.41315,0.44722,0.67668,-0.5585,0.92717 0.71451,3.4056,0.70387,-0.27498,-0.56052,1.8934,0.5087,-0.45371,0.32774,0.1676,-0.90542,0.67631,0.31322,-0.25009,-0.157 -2.2099,2.4444,-0.93575,0.5144,-0.6072,0.45722,0.050258,2.2701,-0.51679,-0.26354,0.095237,-0.72487,1.212,-1.5921,1.4561 0.90035,3.4826,1.4061,-1.3498,-0.34865,0.36149,-1.8662,0.1448,-1.3978,-0.71181,0.52841,-0.10822,-1.8501,-0.10575,-0.32992 0.061848,-0.74291,2.282,2.1395,1.3183,-0.086078,0.72317,0.53172,1.8093,-1.5653,-0.16237,-0.029554,0.23797,-1.3965,1.4927 1.9592,1.6599,1.2876,1.3019,-0.074966,0.45773,-0.99301,-2.1138,1.1913,-0.18843,-0.80152,0.49462,-0.88439,0.18657,-0.24179 -2.6807,-0.0019068,-1.6932,-0.093508,-0.51396,-0.25384,1.192,0.23253,0.84352,-0.19218,-0.16629,-0.79393,1.0866,-0.94698,-0.13208 2.6051,0.52512,0.13264,-0.074981,1.297,1.6591,-0.65248,0.41089,1.5849,-0.59169,-0.66026,1.2878,0.67685,-1.0665,-0.91994 -0.91386,1.9326,-0.34145,2.4589,1.6822,-1.3729,-0.0052652,1.7006,0.35515,-0.8943,-0.93688,0.53168,-0.77652,-1.1085,0.34598 3.6832,-0.37539,-0.63145,-0.067791,2.85,2.2217,0.22837,-0.40475,0.18459,-0.86519,-0.17184,0.95744,0.48171,-0.21732,-0.71988 -1.5508,0.33583,0.21722,-1.2108,-0.68651,2.0533,0.68656,-1.8945,0.5843,-0.89832,-0.33318,-1.0022,1.1573,0.080387,-0.51544 -2.832,-2.5564,2.7041,-0.40611,1.2674,0.049387,0.075261,0.73127,1.7794,0.37699,-0.11377,-1.0636,-0.18898,1.5675,0.41222 0.051687,3.613,2.5481,-0.19491,1.8016,-1.5324,-0.8786,-0.50212,-1.2318,0.80403,-0.2485,0.19398,-1.0624,-0.25144,-0.4092 -1.3071,0.71141,0.40575,-0.32245,-1.5755,1.2199,0.51183,-0.054192,1.2591,-0.13002,0.55678,-0.64104,1.1472,-1.5892,1.2311 -1.1224,-4.6636,0.60831,0.65411,2.3926,0.85277,-0.2639,1.0804,-0.81259,-0.050148,-2.1135,-1.5075,1.4005,0.48524,0.037163 4.6739,0.4767,0.46593,-0.43064,1.751,1.3742,0.28371,-0.56927,0.35737,-2.0939,-0.5277,1.1672,-2.1191,0.51887,-2.0954 -1.3421,-3.5287,2.9442,-2.9107,1.3149,-0.16057,0.17278,-0.59267,0.64669,0.89658,-2.2626,0.11862,0.41988,-0.45106,-0.32876 -0.83788,-3.0301,2.167,-0.96768,0.71735,1.6213,-0.036292,0.12066,0.62966,0.005643,-0.99101,-0.0089738,1.9282,0.43971,-1.7554 1.6499,2.9441,1.4897,-0.40357,0.5423,-0.3251,-2.1233,-1.4937,1.0425,0.27677,0.21893,0.36531,-0.3368,0.13127,-0.49258 -0.55811,0.78967,2.0175,1.2115,-0.1625,-0.19951,0.046022,0.70172,1.9249,-1.5123,0.27566,0.98262,1.0341,-0.22991,0.64707 -0.61013,-4.5845,0.46557,-0.20814,1.8309,1.1456,-0.41312,0.25345,0.44199,0.73403,-2.7104,-0.0044715,1.6247,1.3026,-0.63259 0.37031,-2.8984,2.2121,-1.9469,0.64295,1.563,1.5523,1.4944,0.82842,0.7613,-1.7009,0.037907,0.21593,1.3403,-2.2433 -1.0932,-4.1163,1.0703,0.23299,1.3383,0.10765,-0.23087,1.2912,-0.033586,-0.21703,-1.6759,-1.2076,1.5286,-0.19339,-0.71454 -0.96262,0.97435,1.168,1.081,-0.31217,0.63752,-0.60439,1.4591,1.7338,0.47389,0.72346,0.063514,0.86572,-1.1442,1.0536 -2.719,2.1095,-0.69393,1.5537,0.92094,0.81907,1.0561,1.8306,-0.81782,0.96473,-0.45434,0.84231,-1.1962,0.45486,-0.011403 2.0292,2.3291,0.73815,-1.3487,0.40899,1.4062,-1.2385,-0.027815,-0.79038,-2.3442,-0.79855,-0.90029,-1.0703,-1.8595,-0.51114 0.55072,-2.681,2.7387,-0.72898,1.2097,1.4657,1.4982,0.80199,1.0023,-0.21417,-0.34054,0.53001,1.3408,0.10514,-1.5604 -0.10744,2.8238,0.8279,0.98278,0.77158,-0.99698,-0.85573,-0.041301,0.66146,0.72037,-1.1022,0.8527,0.79585,-1.4784,-0.55244 -1.9899,1.1355,2.8477,-0.36192,-0.37464,-0.47067,1.5869,-0.83616,1.4073,0.27867,0.046239,0.85516,0.43939,0.04527,0.42088 -3.6711,1.4238,-0.066244,-0.57695,0.75427,-0.4959,1.4611,-0.35632,-0.009337,2.0134,0.68107,0.26488,0.22276,0.42327,-0.68083 -1.3265,-0.83794,-1.5431,-2.1861,-0.3472,-0.65212,-0.63341,-2.9989,-1.4801,0.23416,-1.2757,1.9613,-1.0544,1.2753,0.32365 4.7832,-0.57553,-0.29754,-2.2201,2.7379,-0.52463,1.6265,-0.78301,1.5475,-0.34002,0.7694,1.8687,-0.75236,0.32454,-1.5983 2.3995,0.56603,-1.1024,-2.5829,0.15518,-0.87999,1.995,1.147,0.33101,1.4984,0.15049,1.8131,-2.6022,0.95775,0.31269 -1.9933,-2.712,0.70576,-1.1318,0.6187,0.97207,-1.2989,-0.80752,1.3533,1.2008,-0.98026,-0.2202,0.79771,2.5069,0.49896 -0.61892,3.6617,0.77559,-0.14037,-0.35077,1.2771,-0.66279,0.13828,-0.47012,-0.58419,0.79435,1.0496,0.91863,0.70253,0.22848 -1.4182,0.87303,3.7535,-1.398,-0.18708,0.64373,0.67279,-0.571,0.69489,0.72928,0.53602,0.25258,-0.70705,-0.6178,0.29488 -2.8182,0.20191,-1.6021,0.09648,0.026782,1.6277,1.2378,-1.8794,0.55349,-0.5832,0.38029,-0.4477,-0.010178,0.11156,-1.5559 -4.1147,1.8157,-1.0632,-1.0293,0.41435,0.39295,1.6104,1.717,-0.20725,0.76795,0.43393,-0.4187,0.52673,-0.90786,-0.19238 -1.1346,0.99344,1.5838,-1.4075,-1.345,3.0632,0.52158,-0.4846,-0.17749,-1.0912,0.58006,-0.83007,-0.0001563,0.30942,0.44726 -2.7478,0.31181,0.58373,-0.85308,-0.68434,2.8006,1.0647,-1.4714,0.098763,-0.62278,0.90706,-0.73813,0.22894,0.39263,-0.77177 -2.8721,-0.70485,0.57957,-1.5768,-1.1019,1.2919,-0.31997,-1.9916,-1.1232,0.39059,1.5293,0.013991,-0.83025,0.47481,-0.87766 -2.3244,0.70575,-2.9561e-05,1.2297,-0.10179,-0.044557,1.3164,-0.34564,1.2516,0.34675,0.97078,0.89245,-0.60143,-1.0374,0.044696 -3.216,1.9572,-0.43482,-0.77355,-0.73979,1.5555,1.2195,-0.45887,-0.84595,0.7294,1.2939,0.71463,0.13434,-0.56663,-0.54311 -3.6049,-0.22781,-1.4551,-1.2279,0.54368,2.1236,-0.17523,-1.7594,-0.41936,-0.30678,0.48985,-0.22999,-0.022078,-0.19119,-1.2382 -2.7248,0.15657,0.80684,-1.0328,-1.4158,2.2459,0.63444,-1.6857,-0.22681,-0.54843,1.5805,-0.12843,-0.23004,-0.36183,-0.77891 -0.34792,2.0516,3.5609,-0.65285,-0.20681,0.88408,-0.47284,-0.14058,0.3121,-0.56668,-0.15595,0.70472,0.31646,0.098916,0.66462 -1.4966,1.9216,2.5316,0.18387,-0.90876,0.67556,0.19263,-0.32931,1.0355,0.31985,0.62041,0.94685,0.23533,-0.24649,0.5543 -0.50085,4.3001,0.86244,-0.42816,0.26877,0.64652,-1.2512,-0.66114,-1.1014,-0.98574,0.011731,0.94555,0.46352,0.53044,-0.80877 -2.3746,0.35865,-0.064736,-1.8575,-0.42265,0.030324,1.2623,-1.8767,0.46298,1.4281,-0.068821,0.51628,0.56939,-0.20162,-0.32223 2.4296,1.0872,1.9362,1.7728,1.7556,0.44499,-1.3048,-1.3659,0.90088,-0.31498,-0.2201,0.3874,0.011569,1.3089,0.35584 -2.9889,0.28293,-2.9574,-1.2696,0.16977,0.43671,0.23856,-1.2551,-0.15774,-0.017866,-0.13497,1.1162,0.57616,1.134,-1.4205 1.9631,2.1219,0.88073,1.0402,0.56152,-0.072445,-1.5212,-2.068,0.83927,0.058421,-0.012456,-0.36279,-0.71372,0.33785,-0.03294 -3.2327,-0.52742,-2.3094,-0.69018,0.15284,-1.299,-0.097324,-0.41422,1.3123,-0.35332,-0.4041,0.054872,0.49743,0.89191,-0.1213 -3.4742,0.23997,-2.0718,-0.98704,0.90629,-1.1873,0.45579,-0.45199,0.79471,0.49955,-0.14697,0.37817,0.75919,0.69084,-0.54998 3.1295,1.9918,-1.7626,-1.3784,-1.1534,-0.52383,-0.93636,-0.79937,1.1892,-0.038883,0.51334,-1.0542,-0.65816,-0.17381,-0.92798 5.2915,-1.0977,-1.393,-0.62231,1.7307,3.2767,1.09,-0.64617,-1.1674,0.415,0.33914,-0.40407,0.2806,2.0207,-0.69271 -3.151,-1.3669,-2.3685,-0.97294,0.59279,-1.3389,-1.3431,-0.40485,0.87316,-0.68095,-0.90167,0.92916,-0.55925,0.11334,0.53007 1.3503,3.1619,-1.8613,-0.99525,-1.3894,0.81727,-0.86277,-0.57698,-0.44804,0.25015,-0.51887,-0.85125,-0.2349,-0.069438,-1.1172 2.8682,1.3304,-1.1755,-1.2812,2.7439,0.22992,0.24618,-1.3745,-1.8004,1.8548,0.19573,-1.5176,-0.74529,-1.8973,0.87418 -0.64656,1.2205,1.048,-0.0039454,-0.61687,0.70218,-1.3607,2.4506,0.4566,-0.68249,1.0358,0.13993,0.89597,-1.1449,1.6862 -1.4389,2.9296,2.1629,0.48672,0.017984,-0.22051,0.10038,0.59549,0.24631,1.2704,-0.1538,1.0075,-0.96295,-1.0828,0.9742 -4.662,1.129,-1.5596,-1.2628,1.3358,0.31538,1.3102,1.2025,-1.0593,0.24216,0.35555,-1.1792,-0.12526,-1.6353,-0.486 0.62911,2.4247,2.6221,0.63458,-0.029745,-0.51196,-0.59093,-0.83677,1.1726,0.22906,-1.0647,1.5604,-0.55794,-0.73423,0.43119 2.8233,0.85401,0.03041,0.63447,-0.43414,0.99231,0.53275,-0.90217,0.73984,-0.25257,-0.66296,-0.54664,-1.0657,1.8155,-0.82941 -2.1443,0.0089435,1.9881,1.9412,1.741,-0.19189,2.2998,-1.6716,0.31486,0.2484,0.028018,0.70086,0.24583,-0.33042,0.36851 -2.5172,1.8236,-1.9414,0.54633,-1.1231,1.6597,1.6489,0.46014,0.1466,-0.35172,0.46522,-0.029923,0.70415,0.13294,-0.035079 -0.71172,-0.91712,3.6398,1.5515,0.95959,-0.69768,-0.028029,-0.16599,0.047467,-0.41628,1.1556,0.46912,-0.50704,-0.10604,0.0046134 2.1173,2.5394,-2.5543,-2.8399,-0.088477,1.0821,0.21647,0.29508,-0.36134,1.0819,0.53542,-0.99663,-0.12309,-1.5033,0.65245 -1.3185,3.933,0.25224,-0.23499,1.3835,-0.2184,-1.5016,1.2738,-2.0043,0.67635,0.40032,-0.12462,-0.98331,-0.53804,-1.4961 1.267,2.4262,-0.81585,-2.4056,1.8854,-1.0626,-0.60949,0.48864,1.054,1.2616,0.88805,-0.54932,2.1324,-2.0209,0.70419 1.7966,-1.8643,3.9698,0.95904,2.5482,2.966,0.91988,-0.50091,-1.093,-2.2608,-1.3013,0.58642,0.63479,0.31489,0.50142 -1.5386,3.2008,-0.23495,0.16286,-1.6137,1.222,1.0016,-0.51455,-1.3536,0.083067,0.054266,0.99958,0.016437,0.024187,0.58686 -2.514,-2.6498,2.4244,-0.13021,1.9199,-1.5633,0.73339,-0.75663,1.0739,-0.21911,-0.90831,-0.65372,0.30757,-0.76829,-0.30141 -4.0625,-0.71252,0.82182,-1.102,1.1325,-0.94458,0.45944,-0.99598,1.4143,0.032004,0.69131,0.044092,-0.37456,0.76685,-0.59617 0.97927,-0.74331,4.1589,0.83928,1.2891,0.93682,0.87157,-0.29573,0.12427,0.53525,-0.81422,-0.62118,-1.3812,-1.8711,1.3523 -2.0092,-1.4006,3.7165,0.68837,1.6968,-0.57476,0.60217,0.21193,1.1316,-0.43853,0.51372,-0.18694,-0.42134,0.1979,0.43874 -2.7731,-0.035898,-3.0988,-0.17993,-0.18193,0.94678,0.99333,-1.1777,0.85689,-0.69066,-0.57452,-0.20545,0.15151,0.33939,-1.2316 -3.9812,1.4371,-0.19741,-1.2424,0.67208,0.081654,1.2882,-0.62929,-0.045256,1.7276,0.60685,0.16119,0.65715,0.44544,-0.85213 -2.2634,-0.024477,3.9657,-0.79787,0.11543,-0.022209,0.34904,-0.6597,1.2821,-0.28567,0.72232,0.36058,-0.46618,1.0968,0.15981 2.529,0.73935,-1.6575,-3.1371,1.4613,-0.19202,1.7754,0.88383,-0.31417,-1.0167,1.6092,0.19381,0.9979,-1.822,1.7888 1.9838,-2.2749,3.5301,0.012366,3.7454,-0.87805,1.4355,2.5956,-1.4094,-0.36384,-0.056867,0.09746,1.1969,1.7219,-1.0871 -4.8274,-0.12535,-0.85071,-1.4838,1.4208,0.53643,0.90991,-0.2632,-0.15227,-1.724,0.19546,-0.88816,0.19742,0.21698,-0.7264 -4.5477,-0.75933,-1.5258,-1.5695,1.6336,-1.109,-0.16751,0.56281,0.22475,0.02876,-0.63621,-0.17496,-0.064999,1.0705,-0.5493 -4.12,-0.16434,-1.1809,-2.2072,0.63055,-0.81444,1.165,0.36735,-0.52148,-2.04,-0.81804,-1.7169,-0.66379,0.17539,-0.07874 -3.054,0.21988,0.75674,-0.80127,-0.51329,-0.70565,0.56755,1.984,0.60265,-1.652,0.36655,-1.989,0.58423,0.25104,0.35909 2.0459,0.62932,-0.28319,1.2438,-0.16374,2.4615,-0.77973,-1.8083,-0.050142,-1.3486,-0.39655,-0.2508,0.70673,0.97483,0.40817 -2.4351,0.094217,3.1307,-2.3399,1.4649,-0.42648,0.044212,1.0946,-1.4843,-0.66783,-0.54811,-1.0089,0.6872,1.2742,-0.073996 1.5581,2.1735,-2.1581,1.0064,0.51784,1.7875,0.10193,-1.2534,-0.91287,0.030433,-1.9088,-0.8623,-0.32527,-0.29816,-1.3068 -2.5995,-1.6721,0.017406,-2.2126,3.6877,0.85162,-0.45998,-1.5936,-1.8355,-0.47617,-1.9869,1.2228,-2.2181,0.51723,1.3118 -3.565,-1.4592,-1.7365,-1.2246,3.098,0.0069772,0.0516,-1.567,-0.2414,-1.4061,-2.238,0.8692,-1.3536,-0.082893,0.35007 -3.328,0.039365,-2.1381,-0.8393,-0.2309,0.20104,-0.067517,-0.058148,0.74111,0.70185,0.69623,0.23244,-0.14038,-0.77368,-1.0986 -2.0842,-0.27492,2.5915,-0.14603,1.4834,-0.26451,0.54908,1.8392,1.2315,0.10605,1.4666,-1.0057,-0.42552,1.5797,0.46011 0.84063,1.5652,-0.60912,1.1985,0.46367,-0.048318,-1.812,-0.88837,1.0503,1.7618,0.35385,-0.1611,-0.21046,-0.355,0.1812 -3.4245,0.2348,-0.44501,0.26792,-0.27935,0.68529,1.0705,0.85507,1.3988,0.35016,0.64747,0.84817,0.13011,1.5408,-0.083149 0.48891,3.8289,-0.36305,0.054559,0.73607,0.04287,-1.2941,-0.59453,0.14441,1.9226,-0.63184,0.11298,0.29793,0.30431,-0.93856 2.1305,-1.3394,-1.6466,0.015335,0.65865,0.17927,1.5389,0.53253,-0.85213,0.78672,-1.0956,1.963,0.75534,-2.2265,-0.54521 -4.0335,1.1219,1.1451,-1.315,0.72994,-0.58185,1.2522,1.1898,0.1337,-1.2276,0.94738,-1.1035,-0.16341,-0.82025,0.052177 -3.0321,1.9621,0.80266,-2.1236,-0.1233,0.81563,1.4991,-1.6718,-1.7364,1.2783,0.49872,-0.65135,-0.66624,-0.12002,-0.58476 -4.6125,-1.0387,0.48125,-2.6814,1.9282,0.70028,0.01824,-0.90578,-0.603,-1.6005,0.023813,0.16806,-0.65936,0.57782,-0.91912 -1.6448,1.8531,2.9535,-1.3757,-0.75431,0.014589,1.7061,-1.2756,-0.43558,0.25014,-0.77189,1.2855,-0.42043,-0.18641,-0.106 -4.5254,1.0929,-1.3602,-1.3104,1.2958,0.38041,2.1948,0.87207,-0.072159,-0.45793,-0.67004,-1.1395,-0.0638,-0.086051,-1.1123 -3.1651,1.7582,-0.77549,0.35574,-0.44464,0.61286,1.602,0.13359,-0.94174,-0.9451,0.28711,1.0613,0.76553,-0.63273,0.21631 -2.9707,2.5952,0.84348,-0.55909,0.66935,1.7472,2.0951,-0.56659,-1.9956,0.18704,0.57941,-0.58439,-1.15,-1.3153,-0.3249 -4.4092,1.2038,0.67401,-0.91038,1.0698,-0.22203,1.1397,1.3386,-0.045674,0.97781,0.049116,-1.0471,0.17983,0.55402,-0.33536 -4.4064,0.25463,-0.50577,-1.5309,0.91503,0.55082,1.1137,-0.52775,-0.26776,-1.1716,0.16925,-0.79737,0.14189,-0.24483,-1.019 -3.4446,2.9181,-0.58216,-0.13617,0.57854,1.8311,1.5237,1.6549,-1.5805,0.56847,0.10428,0.80598,-0.75179,-0.55821,-0.57798 -0.059839,3.0688,0.35864,0.69662,0.48508,0.36677,-1.8263,1.1527,0.097921,1.2423,-0.94051,0.14513,0.37949,-0.71573,-0.88731 3.3686,0.92364,-0.039701,-0.41529,2.1592,0.22079,-0.22332,-1.5564,1.1438,0.30663,0.33388,0.76011,1.5219,-0.59649,-1.5942 -4.324,-0.022544,-2.3677,-1.8406,2.1804,-0.56985,-0.35373,-1.0693,-1.6275,-0.54595,-1.3628,0.93865,0.58907,0.91809,0.15311 -2.4183,0.54385,0.70059,1.3424,0.096725,-0.88557,1.407,-0.41753,1.2322,0.97101,0.11763,-0.39834,-0.37175,0.68851,-0.25368 -3.4938,0.4126,2.2619,-0.31001,1.4699,-1.4134,1.2725,0.89415,0.85221,-1.0781,0.81099,-0.3241,-1.1828,0.60374,-0.17286 -3.1372,0.35559,0.21178,-0.72704,-0.94951,0.66556,0.068628,1.2991,1.0563,-1.0045,1.3692,-0.33758,-0.14558,-1.4988,0.79222 -3.8752,1.0546,0.90503,-1.1671,0.39259,0.87869,1.5299,-0.58583,0.34387,-0.58305,1.3262,0.47301,-0.41653,0.17595,-1.2813 -0.80833,0.99574,3.9935,-0.75143,0.62194,-0.016513,1.0645,-0.73329,0.83783,1.1443,0.18914,0.20206,-1.1861,-0.54847,0.23883 3.7258,0.66413,-0.1627,-2.5287,1.05,0.73096,0.041231,1.2636,0.90268,-0.76458,-0.31531,2.3363,-0.4086,-0.16076,-1.8923 2.6792,-0.68642,-0.35229,0.396,1.4991,2.0392,-0.91249,-2.3093,-0.032923,-1.3727,0.22581,-0.067645,1.5877,0.30629,-0.37158 3.3556,0.90386,-2.0759,-2.0422,0.23693,-0.2191,0.05827,0.70581,2.0422,1.2324,1.3731,-0.69954,-1.3062,-0.36923,0.54837 -2.4099,3.167,1.1642,0.48676,0.9184,-0.78475,-0.56082,1.4247,-0.66066,0.74285,-0.012402,0.89382,-0.80639,-0.44889,-0.19552 -3.0585,2.8023,1.3668,-1.356,0.47562,1.4693,1.9446,-0.97364,-2.0832,0.25442,0.28847,-0.38427,-0.64136,-0.53193,-0.4942 1.5017,3.8461,-0.72885,-2.1276,0.48697,0.3782,-0.90968,-0.88184,-0.87932,-0.59219,-0.1301,-1.2446,0.30883,-1.6244,-0.49629 2.0097,0.044618,1.5889,-0.7658,1.6124,-1.1047,-1.9133,1.1752,1.6492,-1.2886,0.063038,0.68618,1.5348,-0.98669,-0.067638 0.88857,0.60715,-1.556,0.97965,1.3545,1.2201,0.17276,-2.0195,0.85562,1.4798,1.5402,0.39593,-0.16317,-0.038024,1.5423 -0.47739,2.6152,-0.90909,0.57559,-0.75964,1.8811,-1.4288,0.56428,-0.21605,0.25689,0.12245,0.27924,0.18592,-0.18388,-0.46966 -3.7137,-0.1577,-2.8668,-1.3563,1.8366,0.030096,-0.80423,-0.99056,-0.70363,-1.0056,-0.81959,1.9677,-0.11758,0.83854,-0.24763 -3.1224,1.733,0.90121,-0.19247,-0.097965,-0.39988,1.5643,-0.16198,0.13486,1.7238,0.37405,1.2152,0.18103,-1.1576,0.33131 -2.2558,-1.0211,2.5419,-0.26102,1.1326,-0.33611,1.657,-1.6935,0.84777,0.76385,-0.064567,0.47192,0.44821,-0.78371,-0.93012 1.9225,2.3985,-2.4033,-1.2814,-1.2447,-0.074695,-0.018108,0.58554,-0.0045866,1.4318,-0.66896,-1.3568,-0.45984,-0.14067,0.11345 0.38487,0.41938,1.8828,-1.7611,-1.5604,1.8999,1.1503,0.038257,1.7449,-0.81409,-0.19627,-0.19092,-0.52729,-0.052082,0.085728 2.7894,-0.23203,-2.1719,-0.67369,0.10715,1.5258,1.3404,-0.075367,2.0344,0.36483,0.90166,0.84278,-1.5227,-0.18402,0.3103 -2.069,-1.0565,-1.7533,-1.0446,0.2249,2.3887,-1.2265,-1.6787,-0.31742,-0.68051,-0.87436,0.43251,0.10444,0.048536,0.55652 0.54669,2.3905,0.48238,0.97961,-0.62791,0.65178,-0.85269,-1.1447,0.60127,0.81877,-1.1451,1.1253,0.48422,0.52876,-0.70384 -0.4498,0.87522,0.46611,1.9257,-0.96171,1.8241,1.1247,-1.3541,0.93087,0.48934,0.51718,0.18318,-0.084091,0.97371,1.2096 -1.1388,-1.7553,1.4009,-1.3737,-0.18082,0.293,-0.19482,1.9825,1.1681,-0.37325,-0.11371,-1.9076,2.0878,0.037221,0.63674 -0.56119,-1.4648,0.68394,0.23409,0.20961,1.6341,0.12191,-0.87988,2.5146,0.35075,-0.58905,-0.73682,1.1403,-0.42887,0.22195 -0.93595,-2.8785,0.91875,0.82373,0.71237,0.7575,0.52107,0.54305,1.6189,-0.074585,-1.1526,-1.9155,1.2516,-0.048558,-0.10079 -2.483,-1.5778,0.45216,0.759,0.93079,0.50916,0.57115,-0.72358,2.2242,0.89828,0.61486,-0.32921,-0.42136,0.72546,0.15343 1.4452,-0.44351,-0.48117,1.3488,-0.58479,3.0145,-0.55105,-0.78472,-0.087627,-1.5217,-0.66064,0.51724,1.2003,0.51694,0.47675 -0.77447,2.8282,-1.4667,-0.42245,-0.86969,1.0909,2.0585,0.57012,-0.92397,-0.24563,-1.5126,0.27529,-0.78395,-0.10194,0.67756 -2.3241,-1.1411,-1.1927,-1.6448,-0.42065,1.2063,-1.0583,-1.579,0.26519,-0.6917,-1.2121,-0.081582,0.67807,-0.2547,0.80762 -4.6569,0.18351,-1.6197,-1.9074,1.2146,-1.1232,1.4948,0.14462,-0.51729,-1.85,-0.62858,-1.3475,-0.16466,0.068647,-0.58399 -0.061663,4.0309,0.10613,0.15889,-1.0332,0.78281,-0.69973,0.15533,-0.80571,1.1845,-1.2861,0.72816,-0.025576,0.38214,0.0016213 -2.2834,-1.4835,-1.4503,0.4574,0.4339,-1.2944,-0.12153,-0.79126,1.2604,-0.28234,-0.64843,-0.29067,0.05261,-1.1493,0.17264 -1.5426,-0.66045,1.1748,-1.8592,-1.0824,1.545,0.39814,0.089141,1.0895,-0.47557,-0.19748,-1.2324,1.0818,-1.411,0.9832 -2.7197,-0.89868,-0.17006,-1.6863,-0.49819,1.181,-0.37487,-0.84235,0.59019,-0.91421,-0.3353,-1.3913,1.2525,-0.96518,0.81371 -2.2196,-0.72461,0.022237,-0.83383,-1.1261,0.24309,0.26517,-0.24151,1.483,0.23707,-0.17238,-0.76752,0.84891,-1.7697,0.47216 2.0447,4.0828,-1.0956,-1.9256,-0.050248,-0.3887,-0.48571,0.040063,-0.51578,-1.2351,-0.65661,-1.3278,-0.68804,0.22887,-0.66803 0.13256,-0.92735,0.45987,-1.4755,-1.0699,2.0083,-0.037316,-0.21203,1.4176,0.98333,-1.0516,-0.85861,0.78617,1.4256,-0.010584 -2.3129,0.97254,1.0316,0.29069,-0.2713,-0.73955,1.5607,-0.66027,1.1358,1.6958,0.060406,0.93494,0.42634,-1.3704,0.3655 -1.4967,-2.8439,1.064,0.71849,1.4175,1.6519,0.62368,-1.3164,-0.27819,-1.4861,0.60452,0.24184,1.4055,0.4295,0.52911 -2.6843,0.2979,2.4681,-0.71976,-0.2593,-0.978,0.42377,1.2249,1.2342,-1.2997,0.73447,-0.40177,0.47075,-1.0537,0.98103 -2.4548,0.36539,1.8871,-0.64763,0.48229,-1.1013,1.2347,-0.90893,1.4536,0.85849,0.075875,-0.59436,0.5511,-0.99608,0.35803 0.28584,1.6846,-0.87766,-0.062669,2.8435,-1.2262,-0.79766,0.63385,-0.20453,2.8197,0.88099,-0.66828,-0.33873,-1.4359,1.0875 -3.6353,0.013007,1.7125,-2.0412,-0.07618,0.5618,0.03939,-1.2004,0.23915,-1.1909,1.3296,-0.18329,0.41563,0.75691,-0.60673 -2.0425,-1.4832,3.0092,1.0972,1.9705,-0.70248,0.80425,1.0114,0.94945,-0.76647,0.56712,-0.82682,-1.2477,-0.36526,1.3039 3.9339,2.377,1.2627,-2.9169,0.84489,-1.676,-0.091766,-0.11439,-0.23171,-0.75789,-0.0046199,-0.0081107,-0.23316,-0.59882,-1.1759 4.7694,1.7139,0.29415,-1.4088,2.5277,-0.83301,0.81523,-1.2862,0.17966,0.42921,-0.32509,-0.145,-1.9049,-0.5639,-1.5447 0.28717,2.6051,-1.3674,1.7475,0.99017,0.051846,-1.4868,-0.13429,-0.49786,1.499,-0.14628,-0.34538,-0.25048,0.53275,-0.71315 0.54686,1.5435,-1.7582,0.80907,1.7993,-0.31162,-1.4362,0.39625,1.7439,1.3954,1.2026,-0.53628,1.0505,-1.1951,0.069308 -3.5987,-0.78508,1.2845,-0.48133,0.56438,-1.0863,1.1646,-0.42937,1.8468,-0.053757,0.45831,0.30869,-0.2577,0.22102,0.25615 -3.2123,-0.070159,-3.6523,-1.0959,0.04491,-0.35139,0.29668,0.24518,-0.32886,-0.91355,-0.72896,-0.47713,-0.082167,-0.027291,-0.34591 -4.2269,0.68941,-0.97923,-1.7849,1.1887,-0.36893,0.80921,-1.1511,-0.62597,0.15325,-0.061808,-0.39898,1.2321,-0.031337,-0.16212 -3.0435,1.0533,1.9188,0.11297,0.80104,-1.2775,1.1557,0.82851,1.0554,0.50125,0.91242,-0.43059,-0.2815,0.046903,0.19628 -3.7992,-1.0457,0.52575,0.070462,1.3573,-1.3835,1.1313,-0.25356,1.6945,0.19028,0.17597,-0.44826,-0.68068,0.23705,-0.35318 -0.89045,0.49481,1.3499,0.16769,-1.1833,1.1953,0.55276,-0.022433,2.246,0.99447,0.3301,-0.063765,0.59444,-0.86999,0.84197 -3.6487,-0.38136,0.44889,-1.2316,0.67753,-0.81525,0.40991,-2.0705,0.82985,0.50467,0.44333,0.77704,-0.15517,0.95983,-0.85283 -2.1089,-0.58023,2.2748,-3.4029,-0.065371,1.9256,1.1739,-1.928,-1.7687,-1.0573,-0.44607,-0.71852,-1.2357,0.88925,-0.1977 1.8351,0.92677,2.3459,-0.96307,-1.446,1.7386,-0.60564,0.75396,1.0241,-1.1165,-1.2754,0.99471,-0.85538,-1.0604,-0.19505 2.9,-1.4748,-3.3294,-0.22809,0.38118,2.6054,2.1361,0.78761,-0.019346,-1.0419,1.6219,0.89133,-0.10271,-0.34567,0.814 -3.1753,-1.4484,1.7007,-1.5426,-0.22852,-0.92795,0.54135,-1.6866,1.1369,0.28278,0.023675,0.31184,0.50771,-0.21784,-0.096988 -3.6014,-1.7472,-0.090346,-1.9513,0.22404,-0.12466,-0.73369,-2.4233,-0.2603,-0.36102,-0.1745,0.78137,0.086425,1.4719,0.15902 1.0689,2.8546,-1.0539,0.62167,1.1055,0.12108,-0.61778,0.45569,0.63887,0.72899,-2.2537,-0.92024,0.94909,-1.2623,-0.63297 -3.8041,-0.57645,-0.56288,-1.9963,0.72172,0.50691,0.023469,-2.7887,-2.0061,-0.13369,-0.54706,0.52556,-0.16153,0.72195,-0.69315 -3.6174,-0.021594,-1.2929,-0.36595,0.51398,-1.5387,1.2633,-0.048857,1.0813,0.5445,0.2345,-0.27411,0.22172,0.50902,-0.83749 -2.29,-2.0525,-0.87563,-0.87321,0.47328,-1.348,-0.087517,-0.73788,1.3372,-0.24541,-0.82034,-0.058903,0.66608,-1.336,0.19493 -1.8408,-2.2575,-0.56711,-2.5648,0.21965,0.70631,-2.1885,-1.0086,0.28254,0.27103,-2.3547,0.94709,0.81579,-0.45493,1.1153 -0.77519,2.4304,1.8979,1.393,0.33125,0.24567,-1.2934,0.36914,1.0656,0.79413,0.068939,1.4937,-0.51702,0.44225,0.19554 1.6119,2.0444,-2.7255,-2.4994,-0.97625,0.92329,0.79809,1.373,-0.37309,0.68377,0.98515,-0.41766,-0.3364,-0.89316,1.417 -2.2045,-1.7375,-0.98588,-0.3559,-0.14292,-1.9962,-0.0071249,0.078948,0.58259,-1.2364,-0.55762,-1.0032,0.52502,-0.7098,-0.50149 2.1244,0.54323,-1.0325,-3.5275,0.65905,-0.53555,1.4186,0.71091,1.4986,0.5734,0.789,2.02,0.86246,-1.7607,1.1181 -2.5227,-2.5945,-0.055477,0.52983,0.7577,-0.082054,-0.48368,-0.54311,2.0254,0.56619,-0.34342,-0.83942,-0.083417,0.68721,-0.11293 -4.5609,0.03185,0.18369,-2.1394,1.1547,0.22246,0.64668,-1.008,-0.92765,-0.48802,0.32268,0.086414,-0.34955,-0.24209,-0.86521 -3.3631,-0.17352,0.64437,-1.0483,-0.17043,-1.2557,0.73571,0.4629,1.6772,-0.60331,0.88886,-1.3585,0.26138,-0.23868,0.42031 -2.323,-2.0343,0.39047,-0.73933,0.61076,-1.9166,0.2722,1.1848,0.33594,-0.91779,0.04516,-1.9817,-0.99598,-0.30854,-0.056717 0.32436,2.3929,-1.8365,1.7654,-0.39696,1.4047,-0.13042,-0.014183,-0.47246,1.2534,-1.5877,0.31064,0.18637,0.011032,-0.10004 1.9471,1.6633,1.409,-1.0216,2.5651,-1.2646,-1.4204,-1.0249,1.3479,0.59999,0.31869,-0.0448,0.67469,-1.0479,-0.47179 -2.0219,-2.0962,1.2129,0.78643,-0.15496,0.25391,0.13455,-0.54805,2.1025,0.4995,0.20608,-0.823,0.20153,-0.36296,-0.12711 0.056299,-0.96807,2.894,1.3549,0.23961,1.8508,0.88367,-0.34007,1.6795,-0.46232,-0.26577,0.72044,0.63038,-0.069047,0.33683 2.3097,3.2046,1.892,-1.7747,-0.67286,-0.16475,-0.041488,-0.29696,-0.40329,-1.3092,-0.96418,0.22902,-1.4205,0.1804,-0.34226 -0.10884,3.2821,-0.56645,0.81333,-0.31162,0.33344,-1.7128,-0.66809,0.57922,0.18389,0.21988,0.87857,0.33346,1.0065,-1.3936 -2.6681,-1.677,-0.87814,0.6299,0.56204,-1.0565,0.49788,-0.66988,1.5683,-0.25241,-0.16063,-0.89898,0.27979,-0.56083,-0.44823 -1.7629,-1.7649,0.10601,1.6118,0.42559,0.49723,1.3524,0.096827,1.5604,-1.7684,0.50551,-0.94936,0.15833,-0.51076,0.3463 0.22674,2.18,2.188,-0.5156,0.08201,-0.30992,-0.9751,0.46741,0.80738,-2.3754,-0.94298,0.48988,1.4723,-1.1811,0.73194 -1.8476,-2.7964,-0.53781,-0.075067,0.10325,-0.068809,-0.58392,0.96196,0.81541,-0.1837,-0.94895,-1.5221,1.0922,-0.29765,-0.45569 -4.5368,-0.67136,-0.93684,-1.9601,1.7727,-0.92017,0.17375,-0.41763,-1.1451,-1.6255,-0.31003,-1.0914,-0.2659,-0.77976,0.25137 0.49105,1.181,2.011,1.4046,0.33201,1.3405,0.6272,0.13835,0.58641,1.0463,-0.95206,1.0542,0.059157,-1.7559,0.21957 0.48664,-0.2409,0.020248,2.3992,-0.17558,1.4475,-1.2493,1.4668,1.7537,-0.55445,-0.36549,0.24138,0.90409,0.57843,0.82565 -0.5207,2.1303,3.41,-1.2321,0.66596,-1.0315,-0.37375,0.32539,-0.61394,-0.0024072,-0.921,0.43143,-1.5651,-1.5623,0.40227 -2.6996,0.041079,3.2408,-1.026,0.58364,-1.8465,0.5732,1.7255,0.53164,-0.79812,0.32343,-1.2601,0.31555,-1.3408,0.79751 4.1398,0.71347,-0.83253,-3.0338,0.33528,-1.9063,1.6594,0.44936,-0.67641,1.6336,1.1231,0.29232,-2.0448,-1.1042,0.96823 -3.7443,-1.5664,-0.60822,-2.4729,2.2279,-1.7719,-1.9511,-0.11323,-1.1467,-0.56344,-1.3501,0.90372,-0.65374,-0.47588,1.8 -3.0019,-1.604,2.8313,-2.1383,1.315,-2.4724,0.26083,-0.30786,0.21557,-0.23408,-1.3027,-1.0133,0.38833,-0.68236,0.25233 -3.648,-1.3487,1.8557,-2.6616,1.7724,-1.5101,-0.033962,-0.99035,-0.24656,-0.044226,-0.71146,-0.44893,0.20339,0.057705,0.67337 -0.47633,-4.1301,3.0387,0.3756,2.0347,-0.61019,0.81706,2.2144,-0.73089,0.5619,-1.1002,-1.8373,0.91947,0.75174,-0.12046 -3.8831,-1.1503,-1.731,-1.8393,1.3025,-2.0551,-1.3023,-0.49977,-0.34006,-1.1749,-1.0253,0.90936,-0.046346,0.089216,0.92775 -1.3723,-4.0317,1.5444,-1.5429,2.3944,-0.82948,-0.28977,-0.15209,-0.4637,0.50519,-3.0688,-0.20386,0.31391,-1.3957,-0.58879 -2.7743,-1.2439,-2.5596,0.29067,2.0304,-1.2888,-0.442,-1.1237,0.9739,-0.9429,-0.76876,1.0269,-1.0373,0.44353,0.2127 4.2045,-0.37179,-1.9308,-2.3717,0.34047,0.91559,1.4405,0.24946,2.005,0.65599,1.2866,0.94542,-1.3855,0.44279,-0.46048 2.6817,-0.56047,-0.095606,-1.518,1.6707,-0.59575,0.29979,0.56805,1.6075,2.0389,1.0095,1.3825,0.75845,-2.2436,0.68401 -2.9124,-0.89939,1.8169,-1.5559,0.95668,-2.1958,0.93403,-0.46754,0.86697,-0.39515,-0.8143,-0.98046,1.4681,-0.71562,-0.23014 -1.8175,-3.0805,3.3424,-2.7436,2.0721,-1.4861,-0.62058,1.4505,-0.95173,-0.19278,-0.90726,-0.94043,0.50895,0.47987,-0.15788 0.48719,3.6483,-0.53209,-1.586,1.7786,-1.7459,-1.9636,1.2864,-0.407,0.25285,0.13991,-1.5422,1.3053,-0.93268,0.038419 -2.3717,-3.5337,0.54226,-1.4934,0.96196,-1.0867,-2.6449,-0.7166,0.52047,0.2794,-1.6495,0.74256,-0.14949,0.19927,1.7191 -3.1586,0.78071,0.27252,0.79311,-0.088708,0.62909,1.3485,0.06311,1.1794,-0.37312,0.9406,1.0849,-0.77275,0.68126,-0.14534 0.53132,3.509,-0.59947,0.48144,-1.4324,0.42833,0.011655,0.11055,-0.56574,1.0927,-1.7758,0.17511,-1.1842,0.6076,0.077262 -3.1843,-1.1194,0.32598,0.40679,0.24539,-0.13982,0.35456,-1.1212,1.7779,1.1968,0.46601,-0.14023,0.29986,0.86084,-0.7244 -3.8067,-1.514,0.81819,-2.0991,1.4243,0.058491,-1.0775,0.14867,0.44381,-0.74655,0.20267,-0.59964,-0.35064,1.3601,0.11104 -0.81462,-2.4255,2.356,-0.96114,1.0692,0.70407,-0.65827,-0.18886,1.7291,0.8822,-0.90349,-0.46969,1.524,2.1782,0.16125 -1.4014,3.3834,-1.3916,0.54413,0.29643,0.75741,-1.1656,1.7378,-0.17697,0.35823,-0.64462,0.79281,0.33885,-0.26613,-1.1208 -2.1289,1.7442,1.6316,-2.0154,-0.25625,0.5712,1.271,0.3176,-0.9477,-0.26949,0.53373,-1.1682,-0.38645,-2.609,0.67022 -2.6248,-1.521,-1.161,-1.2201,0.43152,0.90319,-2.4655,-0.77731,-0.33896,0.28439,-0.55161,1.3915,0.42513,1.8552,0.94555 3.9162,1.318,0.66411,-1.1094,3.5926,-1.3099,-0.68614,-0.54578,-1.4302,1.6674,1.5406,-0.47527,-0.58919,-1.8807,0.41265 0.73841,-0.88198,2.5026,1.6007,0.99261,0.89383,0.034874,1.8852,1.7079,-0.15519,-0.17609,-0.34802,1.4902,0.75569,0.63069 -3.622,-1.6876,-0.27287,-0.82823,0.83151,-0.76642,-0.81143,-0.82307,1.7952,-0.14103,-0.052851,-0.23571,-0.056985,0.8767,-0.11042 -2.951,-2.5737,-1.2383,-0.27272,0.58576,0.39506,-0.93812,0.98831,1.2556,-0.43767,-1.1391,-1.6579,-1.1987,1.7806,0.18995 1.3282,1.81,-0.35227,1.3622,2.7673,0.0096692,-1.0146,-1.5357,0.40867,0.25479,0.75915,0.79692,0.033196,-0.11493,-0.081473 3.4539,-0.32646,-0.32148,-1.2656,2.4361,-0.63776,0.94815,-0.7409,0.9341,2.114,0.7645,0.092859,-1.0535,-2.0788,1.8123 4.2678,0.40597,-0.69552,-1.3335,1.2458,0.10393,0.25876,-1.977,1.6592,1.297,1.1893,0.084523,-0.92707,0.046416,0.35911 -2.9161,0.68344,0.58358,1.6274,0.54577,0.75517,1.2563,1.0534,1.5349,-1.0563,0.4809,-0.35156,-0.85305,0.99079,0.31421 2.7338,-0.010301,-0.94399,-0.94924,2.2787,2.1957,0.16383,-1.1333,-0.16055,-1.6898,-0.083816,-0.035873,0.11702,-0.80886,-0.46511 -3.4789,-1.2814,-0.50555,-1.8185,0.21297,1.5467,-1.1828,-1.8533,-0.22164,-0.9129,-0.12648,0.57393,0.30851,0.66721,-0.22082 -2.1059,2.5638,-1.1715,0.81909,-0.85626,1.7107,1.1466,0.5473,-0.08974,-0.74516,0.09754,0.7748,1.1658,-0.3249,0.5386 -2.5919,1.6882,-2.7047,0.34664,-1.1102,0.42584,1.0285,1.9575,-0.40312,0.29543,-0.076192,-0.30905,0.18444,-0.89504,0.52005 -1.884,-0.35322,1.6443,-0.62793,-0.9498,1.5312,-0.090094,-0.29065,2.0227,0.017643,0.38191,-0.91279,1.2536,0.76314,0.35491 -2.945,-2.1642,0.14701,1.4322,1.2856,-0.27536,0.91857,-1.1693,0.91256,-0.32392,0.083847,-1.5423,0.10122,-0.54414,0.23756 -3.8655,0.65717,0.1854,-0.98257,0.46475,-0.15534,0.91144,-1.0514,0.48504,0.84924,0.89852,-0.21314,0.41382,0.56009,-0.90821 -3.3425,-1.9936,-0.26704,-0.64562,0.50052,-0.41218,-1.5141,-1.0327,1.0553,0.8011,-0.78431,-0.15898,0.15361,0.64606,0.27985 -3.4631,-2.0419,-1.3579,-1.084,0.37148,0.85744,-1.4196,-0.03588,1.2947,-1.0761,-0.67853,-0.20861,-0.39919,1.7468,-0.31622 3.869,-1.205,-1.199,-0.011819,1.2074,1.1859,2.3062,-0.97303,1.2084,-0.17857,0.096138,0.34008,-1.6169,0.55285,0.32686 -0.30565,3.3386,0.47612,1.4687,-0.43048,0.17479,-0.20938,-0.78951,-0.13057,1.2429,-0.92131,1.4503,-0.62462,0.64999,-0.066901 1.5344,1.3253,-2.7696,-3.0577,-0.34793,0.96842,0.96873,1.65,-0.2251,0.91878,0.92884,0.41151,-0.45835,-1.5021,1.3814 0.50319,3.3263,1.5374,0.11486,-0.26631,-0.26047,-0.22883,0.17457,0.90017,0.53546,-1.9235,0.9661,-0.47535,-1.0472,-0.034216 1.7999,2.9622,-0.53893,-0.68286,0.55811,1.5787,-1.0816,-1.2407,1.3259,-0.30099,-1.1614,0.26746,0.43102,-1.097,-0.91021 0.53133,2.7511,-1.1553,1.433,1.6169,0.3583,-1.3278,-1.0505,0.27884,1.6116,0.55454,-0.56027,0.12432,0.70013,-0.64778 1.6003,0.83129,1.3802,2.1865,3.9059,0.83603,-1.6463,0.021535,-1.0042,-0.31419,0.26354,-0.41771,0.30218,-0.27777,0.40178 3.0104,0.39787,-0.38498,0.48758,1.8125,1.3455,-0.022,-1.4148,1.4057,-1.4245,-0.59765,0.51834,0.14134,-0.83897,-1.5639 1.0314,3.7232,0.53369,0.089977,-0.95972,0.96972,-0.67353,-0.16541,-0.41286,0.70087,-1.6199,-0.077519,-1.1897,0.047477,-0.37569 -1.1024,3.372,-0.15159,0.022105,-1.048,1.778,0.13209,0.47326,-0.83348,0.71206,-1.1506,0.84615,0.0068066,-0.87039,0.78307 0.77011,2.2272,1.7235,-0.12281,3.2023,-3.1315,-1.1219,0.91484,-0.31135,-0.55326,0.54834,-0.88888,0.54723,-0.57225,0.11704 1.153,2.5504,0.32544,1.9761,1.1205,0.67004,0.57114,-1.1707,0.23944,0.78621,-2.3362,0.83307,-0.42243,-0.5305,-0.5439 0.60312,4.0308,0.88091,-0.39738,-0.87262,0.60219,-0.63887,-0.45264,-0.52782,0.47471,-1.2647,0.67437,-0.21641,0.079753,-0.38386 0.78832,3.8433,-1.1206,-0.27279,-0.66812,1.6214,-1.3394,-0.77089,-0.65545,-0.43659,-0.71194,-0.3306,-0.20134,0.069637,-0.86174 4.8151,-0.44259,-0.86236,-0.91479,2.5639,1.8408,0.84266,-0.91539,0.14848,0.22433,0.20288,-0.78255,-0.55154,-1.1968,-0.087748 -2.0202,3.3122,-0.49536,0.60525,-0.34616,0.98402,0.33886,0.94887,-0.61022,-1.0078,-0.10342,0.88026,0.93481,-0.95605,0.76931 1.2945,3.5509,-0.68746,-1.1751,-0.45999,1.0695,-1.2064,-1.0684,-0.074543,-1.4212,-0.63719,-0.17838,0.035645,-0.84107,-0.62218 0.52223,2.2503,-0.50273,0.014018,1.7252,-0.82114,-2.3888,-0.00047794,1.9535,1.0703,1.0477,0.021947,0.46639,-0.5234,-0.45832 3.8587,-0.22057,-0.19118,-0.34783,1.7415,1.4973,0.25699,-2.3727,0.42078,-0.1494,0.61944,-1.4775,-0.64649,-0.12678,1.0007 -1.2366,3.2979,-0.29257,0.21239,-0.80963,1.4134,0.00538,0.40426,-0.63328,0.88733,-1.378,1.2273,1.0354,-0.85352,0.55453 -3.7931,-2.6683,0.15218,-1.0905,1.0594,-2.0868,-0.93629,-0.14792,0.1066,0.31885,-0.31287,-0.27334,-0.77998,-1.3228,0.095484 -0.87224,2.1363,1.0965,1.3485,-0.15288,0.25186,-0.92781,0.37061,1.9611,0.070089,-0.39121,1.4134,0.13869,-0.010647,0.80607 -0.25075,0.82702,-0.3874,2.7794,0.67018,0.50183,-0.85492,-1.0543,-0.42456,-1.5529,0.71654,1.0384,0.064711,1.3037,0.28161 1.3034,2.1222,1.9909,-0.48365,0.503,0.021283,-2.4173,-0.2872,1.4414,-0.26282,0.66498,1.3045,0.47807,1.5828,0.093871 0.59451,2.7025,-1.2916,0.86154,-1.1839,1.573,-1.4497,-0.59743,0.57575,0.22771,-0.25919,0.43783,-0.19319,1.6556,-0.50993 0.32518,2.7454,-0.33265,1.7,2.4824,-0.23452,-1.1711,-0.22336,0.0067423,1.2832,-0.50707,0.47796,0.88272,-0.6584,-1.0896 -3.7307,0.053734,-2.9848,-0.81611,0.48774,0.50973,-0.053255,0.24416,-0.2048,-0.93191,-0.49685,-0.62006,0.67019,0.21113,-0.10511 -3.8364,-0.64469,-1.8709,-1.6393,0.41906,-0.36196,-0.50941,-0.55623,0.074934,-1.4881,-0.20643,-0.10859,0.37308,-0.46081,-0.014287 -0.66244,1.4376,1.6689,0.95562,-0.53408,0.11997,0.83854,-0.67906,1.264,1.0553,-0.57152,1.6383,-0.44339,-1.3623,0.96488 -2.8304,-0.93735,0.30569,-1.8711,0.20139,1.2354,-0.85982,0.50237,1.0337,-1.1318,0.30257,-0.83263,1.1142,0.76216,0.64141 3.1097,1.685,1.9301,-0.8806,2.2577,-1.0374,-1.4033,-1.7813,1.0492,0.48604,0.1897,-0.18859,-0.92123,0.30502,-0.12974 0.45385,0.052561,-0.028713,1.6104,2.8819,-1.165,-1.3135,-1.0292,-0.24818,-2.9938,-0.07135,0.62384,1.3474,0.34092,-0.42257 -2.9064,-0.87163,0.23178,-1.0183,-0.23137,-0.56871,-0.90061,0.77082,1.007,-0.76525,-0.7426,-1.4502,1.3129,0.62364,0.59155 -1.5792,-1.3675,1.4641,0.78661,-0.063417,0.47356,-0.069667,0.54094,2.5157,0.17057,0.31818,-1.1891,0.69902,0.35367,0.20178 -2.9701,0.99333,0.9534,-1.1622,-0.57308,0.80203,0.7487,-1.345,0.56026,0.19581,1.1643,-0.057678,0.94781,0.24373,-0.32904 -0.70851,-2.7819,1.546,0.67,1.4742,0.73327,-0.47185,-0.61402,0.76389,1.8175,-1.535,-0.83992,0.7442,1.037,-0.025348 -1.8606,-1.5062,1.8463,0.085819,-0.065934,-0.0031705,-0.3799,0.55526,2.3488,0.75774,-0.079129,-1.1329,0.89537,0.23733,-0.0047487 1.1625,2.4086,-2.2396,-2.6624,-0.25579,1.3302,1.2114,-0.20312,-0.27242,-0.42171,1.078,-0.30032,-0.48793,0.20835,0.20387 0.6084,3.4368,-0.96326,-0.38923,-0.18773,2.5684,-2.2373,-0.37328,-0.89962,-0.25587,0.4353,-0.067921,1.002,0.45904,-0.77157 1.953,0.68703,-0.72406,0.98597,-0.7172,3.1644,0.91578,-0.63152,-0.5324,-0.90303,-0.78287,0.64883,0.51597,0.5153,0.17293 0.018743,-2.9865,2.8088,-0.16176,0.73123,2.0157,1.2613,-0.90878,1.4159,0.75214,-1.5662,-0.54869,0.17903,0.46467,-1.3869 -2.4203,-0.32995,2.073,-0.50517,-0.35942,-0.17024,0.30829,-0.11072,1.7124,0.92893,-0.46561,-0.69594,1.199,0.14736,-0.351 1.1381,-0.98547,0.53688,2.9033,2.0096,1.3898,0.27226,1.0399,-0.48002,-0.65555,0.15325,-0.51715,2.1566,0.86506,0.86057 -1.4444,-2.4576,1.233,0.022789,0.76738,0.81082,-0.3454,-2.4518,0.57192,0.81519,-0.24466,-1.3265,-0.71546,-0.56602,0.95192 -3.4349,0.16623,0.77161,-0.77571,1.5084,-0.99811,0.45272,-0.68604,0.50393,1.8608,0.41407,-0.45225,-0.098612,0.20043,-0.87176 -3.1484,0.27224,1.7318,-2.6498,1.2787,-0.011751,-0.020978,-0.2919,0.34802,-0.9244,0.4123,-0.49577,1.1726,1.1447,0.14759 1.4576,2.2753,-1.1683,-0.076114,0.4877,0.53866,-1.0462,-0.30014,1.6123,1.3005,-1.1528,-0.30612,0.97587,-1.5012,-1.3208 -2.1361,-0.88442,-2.6088,-0.55783,0.21494,0.89842,-1.3731,-0.016436,0.23201,-1.9634,-0.2671,0.87266,0.13279,-0.045424,2.0005 -0.46609,1.9162,-1.6634,0.057832,0.30874,2.2878,-0.074689,-0.33071,-1.9859,-0.46832,0.23227,-0.96404,-0.21276,0.74182,-0.49804 1.909,-1.4616,-1.0882,1.5074,0.55717,0.42506,0.17022,2.0477,0.11151,-0.51341,0.45419,0.057713,1.5722,-0.40087,0.16791 -2.837,0.36044,-0.084303,-1.2031,-0.42363,0.43574,0.6148,-1.0448,0.87616,0.64707,0.57774,0.74448,0.022799,-0.99718,0.22336 -1.6392,-1.2072,-2.9603,-0.6174,-0.035629,0.39584,-1.4425,1.3994,-0.66314,-1.7697,-1.1,0.32866,-0.91299,-0.35442,1.6879 -1.8723,-1.912,-2.5468,0.23666,0.63945,-1.8349,-1.4588,0.19183,0.96725,-0.8238,-1.2461,1.1963,-1.51,0.41488,1.0794 -1.5015,-1.8803,-3.0533,0.52875,0.24087,-1.5602,-1.2496,0.1491,0.31953,-0.79211,-1.468,1.0021,-1.8663,-0.057282,0.96669 -2.4268,-2.1886,-1.4095,-1.2729,0.13872,-0.30738,-2.0474,1.35,0.38306,-0.085017,-1.3768,-0.36026,0.20168,1.0183,1.8202 -1.8344,-1.082,-3.1229,-0.95597,-0.67732,0.98034,-1.4116,1.5561,-0.97587,-1.4462,-1.0475,-0.36168,-0.27073,0.071731,1.477 3.6838,-0.6004,-1.5759,-1.0186,1.1662,1.4618,1.177,-0.38151,2.159,0.0099982,0.97579,0.92402,-0.73604,-0.6751,-0.5636 -2.75,-0.2847,-3.1454,-0.3428,1.1733,0.21206,-0.89093,-0.62975,-0.42058,-1.9853,-0.73349,1.8098,-0.16553,-0.18258,1.078 0.7676,0.83806,0.80699,-4.46,0.91628,-0.39586,1.1313,0.53158,-0.81574,-0.16393,-0.75129,1.9802,-1.6587,1.503,0.020621 1.6121,1.3922,1.0603,1.5886,0.44103,0.91884,-1.0005,-2.3158,1.0249,-0.3401,-0.73111,0.41557,-0.4924,0.77866,0.20993 -2.9275,-0.80172,-2.2752,-1.4343,0.99202,-1.2473,-1.4594,0.21108,-0.48402,-2.1664,-0.67101,1.4224,-0.6164,-0.49378,2.0086 -2.742,-1.2169,-0.17942,-3.2562,2.5089,-0.40225,-1.4084,-0.35048,-1.9693,-1.0151,-2.2047,0.53527,-0.44501,-1.0989,2.2947 -3.4477,0.20856,-2.9976,-1.9476,0.16866,-1.2003,0.95213,-0.25577,-0.64631,-1.3569,-1.095,-0.7575,-0.53331,-0.79346,-0.57217 0.45582,2.1135,2.1522,2.0918,2.2648,-0.84165,0.70663,-1.1957,-0.70842,0.24707,-1.0326,0.6826,0.22959,0.19704,0.39373 -4.2697,-0.53915,-0.90191,-1.9793,0.92539,-0.98372,0.16185,-0.67618,0.45094,-1.2059,-0.034694,-0.45998,0.43994,0.13263,-0.015751 2.24,-0.12978,-2.8018,-0.062921,0.1873,1.8173,1.9903,-1.3345,-0.51383,0.30148,0.17168,1.3192,-0.37077,-1.2292,0.59402 -1.944,-0.26663,-2.2244,1.2269,0.15458,-0.055596,1.643,-0.25064,0.72302,-0.607,-0.37147,-1.2703,-1.3499,-0.72675,0.22137 -1.9079,-0.94637,-1.8677,-0.078017,-0.95388,-1.0166,-0.34341,0.40276,1.2529,-0.38592,0.4279,-0.85121,-1.2227,-0.35049,0.17628 -2.8074,-1.0172,0.085651,-2.5176,1.2301,-1.1337,-0.51719,-1.2435,-0.11216,-0.29077,-1.2332,-0.13377,1.1464,-1.4304,0.80519 -2.4912,-2.3123,-1.0723,-0.83531,-0.03271,-1.9308,-1.0936,0.036959,0.75072,-0.38488,-1.0781,-0.40539,-0.23018,-0.89612,0.2135 4.0592,-0.95007,-0.86873,0.69797,-0.41969,-0.71814,0.23945,0.87632,-0.15766,-0.25931,-1.1766,-0.42994,-1.394,0.36417,-2.1162 -2.9339,-1.278,0.65321,-1.8032,-0.18481,-0.55819,-0.31673,0.23385,1.1903,-1.1235,0.090694,-1.1504,0.88867,-1.166,0.59998 -3.0314,-0.59395,0.04199,-0.14387,-0.21201,-1.8547,1.2837,0.79672,1.6504,-0.78209,0.29184,-1.3446,-1.3933,-0.54563,-0.053397 -3.7876,-0.80852,-0.85875,-2.0015,0.53756,-1.3007,-0.64113,-0.10019,0.35392,-1.0148,-0.03175,-0.46304,0.24274,-0.66257,0.54935 -3.2204,-1.1386,-2.6927,-1.8704,1.0757,-1.2598,-1.1705,0.47699,-1.1899,-2.2975,-1.2629,0.6817,-1.2852,-0.96296,1.1115 3.0195,2.2401,-1.7248,-0.66872,-0.27318,0.31381,-0.40862,0.6072,0.26008,-0.9607,-0.74023,-0.91466,-0.32837,-1.1155,-1.4861 -1.2941,-0.34397,3.4493,-2.6371,0.5135,-0.14557,0.58451,1.0516,0.72747,-1.4182,-0.10095,-0.85416,1.8538,-1.4185,0.33989 -1.9657,0.41839,0.59057,-1.1725,-1.0997,0.14329,2.1164,-1.2766,1.3985,-0.014951,-0.76816,0.13199,0.63088,-1.2617,-0.067114 -2.5734,0.40362,-0.31275,-0.59111,-1.3688,1.5727,0.6707,-0.51431,1.0842,-0.42289,0.473,-0.42239,1.2081,-0.70725,0.45699 -1.2024,3.0671,0.94613,0.12578,-1.1916,1.2124,0.92165,-0.026298,-1.2909,1.2684,-0.39113,0.73855,0.3027,-1.3418,0.1217 -1.2946,-0.95554,0.23605,0.74731,-0.80272,1.3458,1.8168,-1.4655,1.6334,0.24069,-0.43188,0.35437,0.37599,-1.2756,-1.008 -2.8334,-0.16773,0.13599,1.0192,0.22695,-0.63322,1.5964,-0.13315,1.7059,-0.46869,0.78115,-0.3048,-0.21754,-0.011696,-0.51244 -1.1264,3.4306,-0.41128,0.89732,0.091827,0.42928,-1.7437,1.4088,-0.92773,0.79482,0.076921,1.1034,-0.88136,0.15992,-1.718 3.3269,-0.18271,-2.0808,-2.3983,0.11872,0.72755,0.60296,1.3415,1.8824,1.1277,1.6163,0.7132,-0.72427,0.49817,0.49933 -1.0876,0.74458,0.75081,0.71801,-1.8453,1.0718,0.65413,-0.95477,1.5867,0.56117,0.20003,0.67046,0.4881,-0.049906,0.5703 -1.325,2.3558,-0.95271,0.82931,-1.8986,1.6933,0.26981,-0.070792,-0.025762,-0.21509,0.66572,0.92323,0.68864,0.24226,0.35994 3.3154,1.3144,-0.13785,-1.8158,2.3954,0.66254,0.077852,-0.39739,-0.19538,-0.10523,0.94929,0.2104,2.3539,-1.1093,-0.91305 -1.5089,1.4263,-0.23382,0.66603,-1.1947,0.8808,-0.3041,1.4215,0.84727,-1.6193,0.30747,0.20861,1.0078,0.16611,0.93027 -2.3901,-1.2656,-1.1623,-0.34911,-0.91653,0.58864,-0.91077,0.53958,1.8169,-0.15824,-0.15292,-1.4834,0.58886,0.40378,0.41291 -2.6149,-0.18378,-1.9169,-0.12281,-0.82413,-0.080196,0.049203,-0.98501,0.935,0.84894,-0.011809,-0.022015,1.3672,0.017879,-0.63691 -2.5534,0.25801,-0.64841,-0.32203,-1.199,0.89176,0.32373,-0.42935,1.155,-1.2952,1.1145,-0.58124,1.1017,-0.8147,0.3292 2.6743,2.3018,-1.2346,-0.63321,1.9146,0.13101,-0.61356,-1.5001,-1.0898,2.3342,0.66044,-1.8458,-1.709,-0.53824,0.72125 -3.122,0.29718,-3.2889,-0.78713,0.30505,-0.23594,0.1947,-0.043147,0.35808,-0.21702,-0.66365,0.40249,0.90632,0.89067,-0.5122 -2.7318,0.024253,0.33393,-0.16424,-1.3389,0.65234,0.50598,0.41047,0.94038,-1.7014,1.1491,-1.1795,0.74843,-1.2572,0.90714 -3.1164,0.23048,-2.0168,-0.59932,-0.48322,-0.033326,0.72648,-0.26537,1.4353,-0.76296,0.38447,-0.22605,0.37577,-0.17567,-0.57267 -1.1061,1.0586,0.015186,0.44013,-1.5488,0.89298,0.14065,0.68071,1.379,-1.4513,-0.19489,0.3214,1.189,-1.3678,1.3582 3.6202,1.051,0.50193,-2.2557,0.71061,0.080067,-0.5415,-0.92364,1.762,0.31255,0.63678,0.62572,0.8536,-0.15387,-1.0816 -2.9368,-2.9481,1.9461,-1.4976,1.0616,0.21718,-1.204,-0.15828,1.2557,0.30671,-0.51225,-1.1453,0.30336,1.6727,0.5238 -3.0494,0.22911,2.0832,-1.6578,0.03249,-1.2568,0.53509,1.3429,0.72178,-1.555,0.97382,-1.6653,0.60953,-0.71503,0.90061 -1.3074,-2.0338,3.2024,-1.1984,1.8875,0.0059122,0.35288,1.6045,1.1173,1.1158,-0.49867,-1.3228,0.6823,1.4778,0.029084 -2.8542,-0.64308,1.2586,0.4263,0.85787,-0.43218,0.60488,1.5307,2.0757,-0.5002,0.74507,-1.031,-1.1086,0.83759,0.32227 -3.035,-0.20228,0.72677,1.2678,2.0969,-1.17,1.6019,0.21076,0.8858,0.99966,0.27838,-0.82528,-0.74974,-0.75013,0.23362 1.7588,2.821,-1.5777,0.38581,-0.65944,-0.057011,-1.0617,-0.075338,0.45251,0.80839,-1.5202,-0.76632,-0.46321,-1.0257,-1.1495 1.8303,-0.49909,-3.4345,0.53602,0.13185,3.2776,2.4576,0.92895,-1.1065,-0.48128,-0.15712,0.97275,0.36646,1.5634,-0.42697 -2.2619,-1.3084,-1.6782,0.80487,0.043123,0.31533,-0.28222,-0.60712,1.9511,0.52592,0.13916,-0.39646,-0.15894,-0.059534,0.37048 3.4918,-0.6383,-2.2881,0.027883,0.69207,0.028256,1.2596,-0.78553,1.5702,-0.89702,1.1151,0.090743,-1.3237,0.26226,-0.99773 -1.0233,2.5296,0.025033,1.3813,-0.19047,0.024909,-0.87389,0.12065,1.3681,-0.15975,0.03945,1.5032,0.29769,0.65914,-0.25458 -3.304,-0.88716,2.5978,-2.3565,0.81256,-1.224,-0.21806,0.91851,0.247,-1.1414,0.0035945,-1.7492,0.42151,-0.77588,0.48351 2.934,-0.6366,-0.3442,-1.7379,0.60619,-0.67197,1.629,0.80673,1.6597,0.3957,0.46683,2.2487,-2.3154,-0.78796,0.28983 1.0491,-0.71762,2.8379,1.6336,1.0211,1.4523,1.1438,-0.95657,-0.39803,1.2897,0.48955,-0.31953,-0.093961,2.7719,0.50216 -0.0089556,1.0442,-2.003,-1.0167,1.0313,-0.4316,-0.71176,1.753,-0.15685,2.1799,2.2353,0.74999,0.74011,-1.1948,1.6455 -3.2699,-0.26498,1.2109,-1.1623,2.0775,-0.78762,0.013543,-0.42029,0.58974,0.82136,0.53514,-0.16784,-0.78845,1.0924,-0.46365 -3.9155,-1.625,0.67228,-0.59568,1.4959,-1.3339,0.35338,-0.65567,1.2881,-0.42428,0.31618,-0.35455,-1.1739,0.92252,-0.53984 -2.2611,-1.0482,1.5044,0.91112,0.064522,-0.027207,0.25394,-0.074271,1.4116,0.1487,1.3903,-0.48538,-0.62516,1.9657,-0.59795 2.3382,-0.87292,-1.2066,-2.4572,1.2357,3.8112,1.9717,0.34255,-0.67184,-0.26283,0.80812,1.1468,-0.81652,0.039755,0.47245 -0.59396,-3.8685,3.1785,0.89206,2.3385,0.74068,0.82875,-0.63051,0.74255,-0.07643,-0.50272,-0.80205,0.53864,0.55904,0.14677 -0.95627,3.2142,-0.21054,1.2803,1.5356,-0.98653,-1.1986,1.6838,0.74979,-0.48901,-0.48934,0.42048,-0.69227,0.73755,-1.0329 2.5756,1.0245,-3.2297,-0.60994,0.53997,2.0003,1.8153,0.26391,0.22673,0.55335,0.84731,0.42985,-0.52189,-0.38583,-0.0055549 -1.0129,-1.0779,2.0315,0.015362,-0.99242,0.35861,-0.009278,-1.4884,0.030168,1.3014,0.15314,-0.97301,-0.54499,2.7505,-0.59942 -0.20189,-1.4856,2.9356,2.1085,1.3834,0.6046,0.75894,0.51926,1.8231,-0.53952,0.019314,-0.43434,0.58597,0.47142,0.60214 -3.3612,1.6009,-1.8081,-1.0573,0.44163,1.6929,1.7066,-0.70208,-1.5856,1.3047,0.2316,-0.073906,-0.0052813,-0.2266,-1.1308 1.3428,1.3362,1.9289,1.6888,2.9536,-0.90552,-0.69868,-0.43565,0.84482,-0.92768,-0.65087,0.79936,0.92445,-0.68621,-0.81554 2.1217,0.10323,-3.0588,-0.2375,-0.071421,0.71602,1.1773,0.33504,0.6717,1.21,0.1905,0.43243,-1.5,-1.0588,0.90447 -3.8883,1.7939,-0.58062,-1.2941,0.67977,1.9944,1.3173,-0.20647,-1.7607,1.2122,0.57516,-0.81659,-0.37771,-0.8199,-1.4907 -3.3379,1.8795,-1.3244,-0.12797,0.037544,1.1768,1.2396,0.82235,-0.362,0.21524,0.51761,-0.49339,0.7158,-1.321,0.098011 2.0894,3.5481,-0.017495,-0.71032,-0.24088,-0.2494,-1.6495,-0.83625,0.0011133,1.4024,-0.95661,-0.65345,-0.02307,-0.3602,-0.92811 -4.2023,1.4126,-0.1131,-1.0176,1.2468,0.80977,1.8931,0.74505,-0.25361,-0.61272,0.011104,-0.89299,-0.94616,-0.81336,-1.3212 1.7876,0.31595,2.9349,1.4788,1.5852,2.6702,0.079349,-1.2363,-0.29214,-1.4508,-0.53057,0.31205,0.30428,0.37141,1.2966 -4.3309,0.4838,-1.3905,-1.4198,1.4085,0.96393,1.2172,-1.6773,-0.6834,-0.31043,0.28787,0.17878,-0.1756,0.16022,-1.8402 3.1851,0.93821,-1.1114,-2.5121,0.358,-0.00025084,0.84526,-1.1271,1.5956,1.8006,1.4039,0.80981,-0.95005,0.094996,1.2607 -3.7285,0.80191,1.2416,-2.1368,1.6463,0.87188,0.20973,0.24712,-1.5242,-0.3464,1.0777,-0.8837,-1.202,-0.53299,-1.1225 -3.163,0.65236,0.20304,-1.5146,0.70336,1.4274,0.50753,-0.96002,-0.50672,-0.4168,1.2109,-0.33192,-0.28624,0.99687,-1.6996 -1.5402,3.2569,-0.65795,0.79686,-0.67137,0.87846,0.085269,0.23604,-0.89642,1.134,-0.35771,1.6211,-0.37116,0.14423,-0.35101 -3.6419,0.027385,-2.6592,-0.81317,1.0649,1.6561,0.66812,-1.1892,-0.57487,-0.18739,-0.77531,0.0042104,-0.39912,0.62019,-1.6587 -0.65962,-1.331,2.0914,1.5649,1.5675,-0.04934,0.87767,2.0933,1.1804,0.38999,0.16635,-1.2992,0.1223,0.25975,1.6517 -2.3644,1.5865,-0.60138,0.3177,-0.44416,2.3181,1.2861,0.16322,0.29609,0.26504,0.85586,0.43032,-0.64143,0.21483,-0.35534 2.2139,0.73755,-0.23756,-0.16699,1.976,1.5706,0.48628,-3.1182,-0.97251,-0.7621,-0.25242,-0.68997,0.33394,-1.1863,-0.61815 -3.3109,0.2214,0.78749,-1.3515,0.45762,1.0732,0.12623,-0.90618,0.69276,0.17696,1.2294,-0.23324,-0.4793,0.83945,-1.3409 3.6923,-0.85045,-0.48299,-0.43654,0.93953,2.8218,0.32305,-1.8469,0.14856,-1.5389,0.216,-0.72896,0.32198,0.51237,-0.70972 -3.4768,-1.5615,0.19548,-2.5114,0.64294,0.42068,-0.84394,-2.0267,-0.31182,0.60253,-0.61243,1.0064,-0.19626,1.4912,-0.13506 -3.315,-1.5123,-0.90957,-1.5573,0.7619,1.2668,-0.50502,-0.71965,1.1348,-1.844,-0.32651,0.061952,-0.58266,1.4028,-0.80189 -4.2156,0.38474,-0.39677,-1.6404,0.68991,0.6309,1.2014,-1.0761,0.2021,-1.1539,0.79299,-0.19181,-0.076986,0.43997,-1.6444 -3.1727,-0.36551,-0.96956,-1.6452,1.3312,1.7971,-0.72603,-0.85558,0.051255,-0.8528,-0.13261,0.44251,-0.27007,1.1019,-0.39696 2.2339,-0.25019,2.1769,0.29164,0.62123,2.2863,0.55203,1.199,0.66992,-0.65994,-1.5273,1.6225,-0.26259,-1.0418,-0.087549 -1.0393,-0.11163,0.14959,1.5323,-0.96251,0.55212,0.40002,0.79781,2.0453,-1.2135,0.13732,0.23369,0.77096,-0.82965,0.45264 -3.333,-0.89999,-1.1447,-1.3663,0.98086,1.8563,-0.081985,-0.54183,1.0922,-1.1549,-0.25238,-0.44337,-0.29098,1.3244,-1.005 -3.1027,-0.50043,-1.923,-1.3216,1.2236,0.77799,-0.63348,-0.9645,0.091758,-1.4152,-0.67041,1.2424,-0.7095,1.3711,-0.33327 0.86193,2.7762,1.5426,-0.37682,-0.47001,-0.0017433,-1.1209,-0.27734,1.4406,-0.37315,-1.0951,1.08,0.61087,-0.51906,0.099777 1.2326,-1.4119,-2.0547,0.57708,0.70789,1.6745,1.5108,1.1008,1.1549,-0.52802,-0.4784,1.1484,1.2006,-0.12617,0.53918 2.1937,-1.6094,-2.2557,-1.0285,0.84226,2.8471,1.9346,0.54091,0.73276,-0.44437,-0.13727,2.8677,-0.057184,-0.19577,0.35661 1.5172,-0.28324,0.28209,1.3473,0.45693,2.3224,-0.5407,-2.097,0.37121,-1.8337,-0.42113,0.21291,0.98351,-0.30687,-0.21997 3.2769,1.1857,-2.1508,-1.7559,-0.41819,0.4766,-0.23501,-0.21358,1.5054,-0.092207,1.5932,-1.1207,-0.82885,1.3736,0.22886 -4.6325,-0.32451,0.85698,-1.9987,2.4244,-1.0694,0.65035,-0.53538,-0.29986,-0.16325,0.30032,0.037323,-1.0077,0.11904,-0.13352 3.7215,0.48952,-1.7873,-1.8104,0.50389,0.10786,1.0301,-0.49126,2.3091,1.0468,0.95388,0.43323,-1.4128,0.7646,-0.67946 1.2602,1.1211,-0.76283,0.58257,1.0293,-0.24348,-1.7374,-0.50345,1.6828,0.95267,1.4584,0.24926,1.2341,-0.12263,-0.83578 1.3323,1.1565,2.0372,1.4234,1.6884,-1.1271,-0.08726,-2.2624,-2.7852,-0.63383,-0.71461,0.9348,-0.40925,0.82108,0.61106 2.397,1.5542,-1.5652,-1.8457,-1.1951,0.0035321,-1.4243,-0.18077,0.13178,0.24672,1.7975,-1.2907,0.31548,1.7339,0.16059 0.33078,2.4007,-1.5826,0.057239,1.3983,0.99398,0.093069,-0.52723,-1.5419,-0.83273,0.63822,-1.2497,0.33623,1.0805,-0.45466 3.5142,-1.2644,-2.2665,-0.14792,1.6062,2.7736,1.9217,-1.0829,0.44065,-0.20614,0.71988,0.45789,-0.41207,1.4601,0.11957 -1.6598,0.97337,0.46622,1.1134,-0.33584,0.97499,-0.12391,1.338,2.2932,-0.51289,0.85325,0.24263,0.084702,1.1147,0.43056 2.35,1.0774,-1.0516,1.3023,0.88425,1.3533,-0.13551,-1.8411,1.3242,0.93136,-0.93504,-0.2029,0.39136,0.78794,-1.4283 1.1397,3.0261,-0.39146,-0.43842,-0.50798,1.0652,-1.7291,-0.59839,1.0512,0.7732,-0.96832,0.29886,0.99446,0.83505,-1.2247 4.5301,-1.1983,-0.62768,-1.9388,1.2338,0.54097,-0.24381,0.29241,-0.14807,-0.01635,1.2667,0.74031,-0.58087,-1.1188,-1.4467 1.4219,2.5207,-1.5175,0.48173,0.35127,0.31595,-0.63038,-0.91592,-0.051918,2.5191,-0.90839,-0.51894,-0.74439,-0.096321,-0.58911 2.6949,-1.8153,-1.3289,-0.18339,2.0332,2.3351,2.1772,0.60954,0.85504,0.53562,-0.12392,2.1317,-0.27344,-0.13703,0.64397 1.0585,4.1452,1.7801,-0.64256,0.48819,-0.37161,-1.9903,-0.047469,-0.74798,0.90037,0.42079,0.39913,-0.55198,0.0071655,-0.25909 -1.7792,1.4327,-0.46349,1.4228,-0.70331,1.4642,1.1632,-0.24142,1.4989,0.8615,0.59481,0.63129,-0.02085,-0.11994,0.82047 -3.425,1.9716,-0.34105,0.13141,-0.33614,-0.47403,1.3876,1.6989,0.58331,-0.19054,0.080952,0.63099,0.23205,0.13065,0.71601 3.2391,-0.44434,-1.2491,-1.1891,2.8376,-0.070471,1.2618,0.10258,1.2832,0.31803,0.99112,1.252,0.1834,-1.9602,-0.14279 2.0035,-1.0002,-0.36833,1.5008,2.6478,1.3055,-0.39902,-0.11246,0.63577,-0.87937,-1.3273,-0.12469,1.6102,-0.46847,-0.32597 0.10501,4.4801,0.85478,-0.76831,0.18069,1.503,-1.2589,0.19377,-1.4567,-0.64744,-0.0017393,0.47139,0.54391,-0.02811,0.10475 3.6328,-0.23042,-0.83131,-1.8602,0.48155,0.92251,-0.34234,-0.66921,1.8223,-1.1701,0.66382,0.73539,-0.50054,0.62833,-2.1426 3.308,-0.75735,-0.85076,-0.46733,1.4813,0.85133,0.90135,-0.47079,1.2272,2.0678,0.17889,0.64678,-0.59503,-0.98982,0.34202 2.9041,0.34495,0.40958,-1.528,1.1218,-1.2565,-1.7985,1.6844,1.1117,0.76883,-0.19135,0.11539,1.1136,-1.0604,-0.53915 0.95195,2.4282,2.7645,0.78181,0.20474,-0.22028,-0.9777,-0.23662,0.31089,1.1352,-0.60835,0.6689,-1.3499,-0.67916,0.81547 2.9108,0.70311,-0.62827,-1.0975,-2.1109,-1.9242,-0.96565,-0.15577,1.3331,-1.5735,0.11808,-0.67916,-0.82545,0.11175,-0.37362 -2.4546,2.554,1.8359,-0.15895,0.55783,1.2824,0.0077604,1.5703,0.52144,-1.6744,1.0177,-0.14223,0.72215,1.0635,-0.043077 1.4582,2.7016,3.1367,-3.3611,0.039345,0.45237,0.65257,1.1546,-1.0945,-0.53763,0.14093,-0.91767,-2.0684,0.063747,0.33014 -1.3899,3.0209,1.5517,0.94827,0.053504,-0.26726,-0.10134,-0.040742,0.56913,0.34607,-0.40543,1.7545,0.41613,0.29798,0.13252 -3.0962,0.30436,0.42918,-1.1931,0.033987,0.26644,0.064925,-1.2023,0.62343,1.2692,1.2987,0.39878,-0.37166,-0.67751,-0.69921 1.1414,-1.5291,-2.1782,1.0024,0.13006,1.2695,0.83979,1.6372,0.91576,0.58348,-1.1084,1.0538,0.91985,-0.52039,-0.15974 -2.5592,-1.0466,1.8566,-1.9722,0.69954,0.29593,-0.04272,-0.55573,0.70861,1.744,-0.057734,-1.0226,-0.065203,-0.16652,0.50604 -3.1485,-0.79893,0.19205,-2.0441,0.93226,2.1366,0.54827,-2.5268,-0.56955,-0.7656,0.22373,-0.15695,-1.0165,0.7894,-0.86235 -1.2026,-0.56671,3.2982,-1.4574,0.17015,0.45291,1.2329,-1.7974,0.80763,1.5414,-0.50818,0.38444,-1.4852,0.012347,0.35608 -0.82846,2.1777,-1.341,2.3806,-0.23055,1.4621,-0.50737,-0.49738,-0.82537,0.64287,-0.17152,0.61228,-0.62692,0.48525,-0.49715 -3.8266,0.12394,-2.7481,-2.0093,2.0681,-1.6308,0.32649,0.057421,-0.074572,-0.86702,-1.4343,0.23011,-1.0601,0.20494,-0.24159 -0.58302,-1.6261,3.2114,1.3838,1.5904,1.4675,1.1979,-0.59336,0.28979,0.6183,0.53895,-0.18174,0.14453,2.0853,0.53643 -1.5489,-2.749,1.8543,-0.20573,2.1802,1.4205,-0.091145,-0.72599,-0.12257,1.1217,-0.10905,-0.79669,0.37457,2.7507,0.6268 -2.9582,0.06836,-2.5887,-0.21573,-0.77104,0.87586,0.4138,0.037594,1.3172,0.0044842,0.23194,-0.053852,0.48981,0.41656,-1.0923 1.7947,-0.74468,3.8407,-0.0012872,0.8302,1.7574,2.3149,-0.55311,1.1913,-0.184,-1.2856,0.28886,-2.1766,0.42407,-0.342 -2.002,-1.406,-0.67284,-0.95068,1.6204,0.20425,-1.6636,-2.1551,0.57361,0.078253,0.17841,2.1873,-0.94989,1.7748,1.3605 2.2823,2.9396,1.6305,-1.0308,-0.37075,0.7207,-0.14633,-0.31198,0.82535,-0.76746,-1.5956,1.0033,-0.52708,-0.84586,-0.69739 -1.9683,1.8146,-0.94506,0.7297,-1.4965,2.1786,0.28282,0.81902,0.41317,-1.0367,0.90345,0.78266,0.0093712,-0.20029,-0.18522 -4.2479,-0.86698,0.30524,-1.6513,1.2348,1.3173,0.14759,0.12829,0.65751,-0.80448,0.29467,-0.62755,-0.095432,1.0636,-0.89728 -2.9417,-0.91504,-0.76716,-2.514,1.7201,2.0046,-0.55575,-1.9162,-1.3212,-0.092157,-0.46153,0.89007,-1.0405,1.0801,0.21892 -2.9522,-1.5132,2.0898,-1.7032,0.81151,0.90237,-0.094689,-0.87149,1.2896,0.56744,0.59994,-0.2715,-0.066393,1.655,0.14877 3.5345,0.67019,0.11339,0.64891,1.4315,1.4226,-0.77366,-2.5736,-1.1104,-0.32324,0.56732,-1.6322,0.42704,0.97722,0.60317 -3.5648,-2.0826,0.76844,-2.4946,1.9483,-1.3148,-1.6123,0.61504,-1.049,-0.79351,-1.1489,-0.72078,-0.052928,1.1242,1.2925 -2.3293,1.4443,2.4418,0.080296,-0.032396,0.17058,0.18983,1.2961,0.81273,-0.34164,0.98058,0.52123,-0.44176,-0.25568,0.98994 -0.7516,3.2271,2.6596,-1.7756,-0.23901,1.6353,1.1832,-0.086501,-1.3472,0.15193,-0.36061,-0.62853,-0.64221,-0.92999,0.41134 -3.2304,-0.16093,-2.7934,-0.56906,1.5572,0.68282,0.89308,-1.8926,0.48459,-0.084707,-1.1249,0.58195,-0.307,0.28068,-1.2167 -1.7135,1.3062,-0.18755,2.0854,2.8001,-1.1755,0.14832,-0.25258,-1.3718,-1.4065,-1.4174,1.0557,0.93751,0.30996,0.6733 -2.1368,2.2981,1.9115,-1.402,-0.83685,1.1943,1.6562,-1.1299,-0.92445,0.6739,0.19825,-0.094261,-0.42146,-1.0113,0.36409 0.13642,0.07283,3.9231,-0.36071,-0.18153,0.71818,1.5104,-1.2645,1.3936,0.40825,-0.74001,0.59427,-0.86163,0.26518,-0.3641 -1.4321,-1.3066,2.5259,-1.5049,-0.11639,0.76549,1.1276,-1.4703,1.5135,0.87412,-0.52182,0.78982,0.2077,0.24738,-0.39506 -3.0908,0.58516,1.8892,-1.1434,-0.40438,0.12533,1.1749,-1.3042,1.1089,0.076169,0.83163,0.20963,0.88206,-0.050644,0.096796 0.72921,3.193,-0.86277,-2.8174,0.10046,-0.27205,-0.223,-0.34836,-1.3479,0.79106,0.091994,-1.0932,-0.8516,0.58498,0.13448 -1.0196,3.3131,0.40976,0.89873,-0.046229,0.10292,-0.45656,0.50562,0.34402,-0.036121,0.057218,1.3859,0.44659,0.0061157,-0.19142 -4.1423,1.2822,1.1153,-0.77752,0.44435,0.14564,1.3897,0.54008,0.12223,-1.7706,0.9698,0.18319,0.059624,-0.19978,0.20807 -2.1332,3.5234,0.91546,-0.28154,-0.053401,-0.55798,0.029699,1.6735,-0.98056,-0.22228,-1.1601,0.55819,0.70923,-1.2419,1.0196 2.6428,0.4785,-2.2003,-0.85419,0.78457,0.24782,1.1735,-0.53405,1.6909,1.0851,0.39084,0.44699,-1.2489,-1.5032,-0.085484 3.0444,-1.827,-1.8929,-0.58936,1.8472,2.328,2.6927,0.033871,-0.36508,-0.49846,0.2329,2.0276,-0.44151,-0.27258,-0.18537 -1.5063,-2.6787,1.9403,1.3956,1.2878,0.18686,1.0929,0.75833,1.9556,-0.94392,0.31873,-1.275,0.71956,0.32946,0.25806 -2.8799,0.32489,-3.4835,-0.45309,0.33582,0.95493,1.1327,-0.56033,0.4246,-0.73374,-1.1214,-0.51908,0.039143,-0.63777,-0.8281 -2.9796,0.42504,-2.3083,-1.6078,0.79715,1.2943,-0.23041,0.60259,-0.96164,1.7753,1.0913,0.36533,0.031348,0.38218,-0.34504 0.4419,3.7294,-1.4274,-0.053332,-1.2303,1.2493,-0.56443,0.02748,-0.88466,-0.36247,-1.3411,-0.055493,0.27384,-0.80654,-0.17973 -2.6408,-1.8508,-1.1148,1.597,1.6842,0.02892,1.3909,-0.62507,0.20607,-0.88174,-0.34145,-2.0192,0.27579,0.76271,0.33664 -3.527,0.21264,-2.477,-1.6442,-0.46688,-0.5479,1.6621,-0.24451,0.36122,-1.0587,-0.93749,-0.77116,0.030079,0.35263,-0.90531 1.3648,3.518,-1.2857,-1.8518,0.75117,0.69192,-1.7683,0.19249,-2.0793,-0.21046,1.2104,-2.0591,-0.036413,-1.2117,-0.47172 -2.5235,1.4162,-1.5807,0.40441,-0.47333,0.81191,1.3259,2.1979,1.2549,0.053993,-0.25119,-1.3263,0.044706,0.68187,0.084569 0.99896,4.1078,-0.83533,-0.70177,-1.1799,0.10553,-1.2936,0.35677,-1.0671,0.19032,-1.0922,-0.67073,-0.7007,-0.039882,-0.5837 -0.4512,2.5134,-2.3574,-0.31348,-0.57663,1.6459,-1.8745,0.75186,-0.43157,-0.097829,1.8333,-0.086453,0.95916,0.93167,-1.4855 -2.8186,-1.2841,-2.1396,0.46988,1.47,-0.898,0.87066,-1.2306,0.81155,-0.90287,-0.44067,-0.40602,-1.6344,0.7638,-0.53829 -3.3562,-0.16426,-2.8694,-0.54048,1.7599,-1.6772,-0.035416,-0.093849,0.76536,0.33401,-1.4302,0.19568,-0.86246,1.0699,-0.13466 -2.5436,2.0756,-1.406,0.35035,-0.58051,1.0347,0.98394,1.7374,0.63137,0.15254,-0.1148,0.95091,-0.67974,-1.1127,-0.38447 0.40261,-0.45798,2.1853,1.3096,2.9772,0.23307,0.34454,0.68241,-1.2663,-0.98818,-1.9607,0.3946,1.1284,-1.3588,0.4951 -3.34,0.37572,-2.9624,-1.3786,1.1119,-0.90495,-0.59938,0.034281,0.0078236,0.16168,-1.2489,0.68294,-1.0081,0.53093,-0.37922 -3.3581,1.3796,-1.7472,-0.40171,0.20736,0.18934,1.8139,0.84044,0.62869,0.47696,0.10108,0.12346,-0.81002,-0.60492,-1.2299 -3.1284,0.72443,-2.6345,-0.46914,0.57528,-0.023167,1.3145,1.3423,0.86008,1.3276,-0.86094,-1.0581,-0.41633,0.24792,-0.88912 -1.4919,-1.0905,-0.42981,-0.72328,0.12756,0.70911,-0.73048,-2.3785,1.9411,1.2071,-0.63417,0.71794,-0.40385,-0.22923,0.57094 -3.9623,-0.88448,-1.1623,-0.99527,1.9618,-0.81601,0.18615,-0.91217,1.0452,0.12063,0.17295,0.22451,-1.5857,0.22924,-0.8115 -0.1585,1.0962,2.9992,0.83709,2.0373,-1.527,0.45825,1.2978,0.50882,-1.5566,0.045942,0.60581,0.61245,-0.50367,1.1665 2.1746,3.5048,-0.40124,-3.2912,1.4365,0.11644,-0.96804,0.76765,-0.55989,1.0971,0.37954,-1.2132,-0.0092499,-1.1269,-0.19278 -4.3176,-0.16607,-2.0561,-2.0481,2.0777,-0.44457,-0.019374,-0.52937,0.30618,-0.94344,-1.0434,0.33574,-0.56233,0.53552,-0.78782 -0.33305,0.51245,2.3701,1.7254,0.17779,1.7471,1.2989,-2.1278,0.52,0.33317,0.0056654,0.23291,-1.243,-0.025159,1.3934 -3.9531,-1.4642,-1.9207,-1.8786,1.9375,-0.94391,-1.4989,-0.79169,-0.33657,-1.9449,-1.077,1.9684,-0.65752,0.58183,0.57084 -2.5544,1.0151,-2.0936,0.69398,-0.19504,2.8758,1.2451,0.43007,0.20406,1.0214,0.20456,-0.32162,-0.26406,-0.8924,-0.8611 -3.3751,-0.89823,-0.82546,-2.3056,2.3437,0.019224,-1.9558,-1.3075,-0.99507,-0.53072,-0.87976,1.9274,-0.52046,0.71181,1.3436 -2.9964,1.068,-0.82424,1.5339,1.0095,-0.23682,1.918,0.79706,0.43587,0.84898,0.24354,-0.67553,-1.4119,-0.76406,-0.11844 -4.3782,-1.2845,-1.2064,-2.2212,1.6462,-0.77185,-1.1096,-1.1849,-0.13831,-1.2953,-0.47216,0.9675,-0.086378,0.67683,0.052857 -3.8647,0.06366,-1.2081,-0.87914,0.2171,-1.0118,1.1814,0.069198,0.28985,-1.1561,-0.43167,0.12185,-0.75251,0.75963,-1.1291 3.5308,2.4643,-0.72807,-3.1911,0.3194,-0.65796,-0.55882,0.96463,-0.018234,-1.3881,0.85659,-0.62599,-0.68042,-1.4436,-1.0186 -3.2712,-0.65051,0.76009,-1.2685,0.50974,-0.97569,0.57431,-2.0098,0.8374,1.1089,0.635,0.78298,0.40388,0.16886,-0.79329 -1.0356,-1.9527,4.1055,-0.97966,0.30145,0.90106,0.0070144,-0.0023174,1.4675,1.1222,-0.57805,-0.62563,0.41252,1.0514,-0.20429 0.49985,2.7546,-0.91737,-3.1822,1.0244,1.3582,0.26368,0.099023,-2.4524,1.1056,1.683,-0.50059,-0.089883,0.559,1.0513 -3.5809,-0.38263,-2.9693,-1.3888,1.1326,-0.32719,-0.83885,-0.64868,0.21042,-1.2214,-0.87527,1.4221,-0.046589,0.66798,-0.064545 -4.0426,0.72798,-0.1171,-0.69704,0.19247,-0.42296,1.8387,0.31593,1.5015,-0.56296,0.57742,0.39582,-0.36346,0.70974,-0.80762 -1.3732,3.4176,0.97341,-0.23278,-0.10295,0.093792,-0.53224,-0.61413,-0.89345,-0.19268,0.29278,1.4729,-0.58054,1.531,-0.26917 -0.067267,-3.3218,0.65419,-0.42927,1.05,3.6388,0.29357,-0.89764,-0.52011,-0.020495,-1.5229,-1.0806,2.6486,1.3311,-0.42545 -3.2906,2.4893,-0.66718,0.0032694,-0.070113,1.0282,1.1024,1.6356,-0.24025,0.0775,0.59839,0.35397,0.11707,-0.73504,0.15631 -3.3014,-0.64594,-2.1299,-1.313,1.0754,1.3729,-0.4583,-2.2159,-0.47989,-1.1216,-0.23724,1.1697,-0.6273,0.18184,-0.97738 -3.279,-2.2594,-0.39658,-1.2034,0.99403,-0.81897,-1.5461,-0.38697,1.6625,-0.38531,-0.46235,0.25206,-0.69596,1.38,0.32753 2.4294,1.4995,-1.6206,-0.48494,1.3432,-0.30213,0.87775,-0.93007,0.63925,3.1768,0.46014,0.32078,-0.067059,-0.46149,0.87251 -1.419,-2.8492,0.25298,-1.7902,0.43186,0.73331,-0.9755,-1.5679,1.425,1.6575,-2.5269,0.19217,0.42018,0.17764,0.31601 -3.0579,-1.6842,0.23274,-0.75066,0.133,0.6406,-1.2437,-0.59614,1.1152,1.0934,-0.39286,-0.80636,0.80631,1.71,0.18532 0.67055,4.4811,1.5689,-1.4656,0.0869,0.016573,-0.54231,-0.30861,-2.2603,-0.80718,0.28931,-0.69756,-0.95121,-0.095513,0.42459 -1.446,-2.9864,0.74601,0.078018,0.58852,1.5459,-0.038975,-1.7736,1.4159,1.0252,-1.4107,-1.3607,0.72151,-0.71812,0.31 -3.6259,1.1492,-0.76561,-0.21649,0.45403,2.3126,1.8394,0.094394,0.13594,-0.21941,0.91132,0.57242,0.1609,0.21921,-0.72275 -1.876,-2.974,1.5586,-0.44064,0.50261,0.69912,-0.49197,-1.1404,1.2734,1.4081,-1.5597,-1.2345,0.62515,0.26749,0.14814 -1.7447,-2.6555,1.8898,-0.61386,0.47776,0.86247,-0.79127,-0.63905,1.1418,1.5958,-0.95659,-0.72572,0.91999,1.5565,-0.2676 2.1832,-1.3511,2.1778,0.11459,0.96509,3.3089,2.807,0.12098,-0.6482,-1.8191,-1.1547,0.50266,0.17301,0.79097,-1.0434 -0.47607,-2.262,2.106,-2.4609,-0.52449,1.5606,0.47928,-0.89339,1.6655,1.161,-1.627,-1.1807,-1.0828,0.75106,-0.37352 -2.3372,-1.8158,0.68508,-3.8804,0.62415,1.3491,-0.79495,-1.1957,-1.1761,0.31353,-1.6824,-0.89776,-0.27187,-0.59785,0.81096 -1.8745,-2.4767,0.75609,-1.6325,0.17335,0.96119,-0.92311,-2.1158,1.048,1.5348,-2.111,-0.32439,0.059877,0.91426,0.01082 3.0095,2.543,-0.97294,-1.8332,0.9678,-0.64324,-0.24242,-1.2486,0.15072,2.5242,0.81467,-0.98442,-1.2884,-0.35255,0.63838 0.36863,4.4812,-0.31342,-1.1402,0.64875,0.86723,-1.9573,-0.2736,-1.6954,-0.35926,0.39863,-0.78275,0.16063,-0.55092,-0.71807 -1.743,-0.76004,2.2145,0.045448,-0.76193,0.72681,0.94333,-1.3302,1.8378,0.76367,-0.26434,-0.59606,-0.15729,-0.83183,0.54714 -0.45762,2.2374,-0.19319,1.2796,-0.056287,-0.82015,-0.85505,0.85838,0.79109,-1.0866,-0.30221,0.44459,1.2687,-1.5436,0.46577 -1.1058,-2.4384,2.2477,-1.9194,-0.19429,0.86832,-0.25476,-0.026891,1.5028,0.88508,-1.9134,-0.8716,1.1738,0.25981,-0.70637 1.566,0.21448,-2.4029,0.2001,1.3497,1.9478,1.985,-0.0035617,-0.57438,-0.0033162,-0.77825,0.40519,0.22603,-1.8452,-0.10361 -3.3576,0.87852,0.29797,0.21696,0.073243,-1.0959,1.7362,-0.088235,1.3038,0.1486,0.85699,0.71441,-0.082372,0.47601,-0.50872 -2.1728,-1.5141,1.2588,-1.4033,-0.5699,1.1927,-0.205,-1.4724,1.8308,0.93055,-0.83957,-0.86331,0.30297,-0.19243,0.30584 -0.20926,-2.0034,3.1117,1.4313,0.6219,2.3985,0.79534,-0.57297,1.0433,0.52653,-0.51257,-0.97568,0.67688,0.50053,0.83723 -0.93928,1.5002,2.086,-0.85249,-0.3085,-0.41572,2.503,-0.65084,-0.38938,0.72206,-1.7331,0.84383,0.16854,-0.41003,-0.47004 -1.0517,1.7778,3.4678,-0.97143,0.26342,-0.63405,-0.40488,1.5847,0.44209,-0.98731,0.1502,0.82553,0.18364,-1.1339,1.7083 2.5766,0.33514,-1.2307,0.024863,2.1196,0.82673,0.19629,-1.5542,0.25109,1.3322,0.64275,0.40085,0.33553,-2.0961,0.91961 0.66949,1.173,-0.74682,2.1724,0.008526,2.138,-1.09,0.076249,-0.30255,-0.27906,0.90802,0.119,0.2091,2.0736,0.24487 -1.5831,0.86881,3.1828,-2.9577,-0.55417,0.8187,1.543,-1.2197,-0.42146,-0.51763,-0.36553,-0.46372,-0.78783,0.032594,-0.018603 -1.4869,-2.3453,1.9024,-0.44949,0.37934,0.64345,0.015739,-2.1696,1.3542,1.6316,-0.92603,-0.59656,-0.30919,1.3296,-0.41842 -3.8626,-0.65253,-0.58089,-1.7616,0.31849,0.66901,-0.098272,-2.2062,-0.098707,-0.7021,0.86177,0.74091,-0.23921,0.98253,-1.3493 -1.4862,2.8212,3.2106,-1.2628,-0.58708,0.57117,0.69582,-0.83796,-0.89424,-0.041483,0.58794,0.19973,-0.32611,-0.28636,-0.055389 -0.12538,3.6449,1.6194,-0.39566,0.092657,-0.23915,-1.223,-0.01061,-0.34701,-0.48743,-0.3689,0.77184,0.54428,-1.3825,0.3701 1.2049,2.0051,2.0657,0.061807,1.1878,-0.71316,-1.943,0.2591,1.4691,0.1108,-0.30597,1.3056,0.48281,0.17262,0.51668 -3.3472,1.6437,-0.63679,-0.67326,-0.050033,1.1608,1.2693,1.3051,0.87953,-0.98212,0.51598,-0.062647,-0.19493,-0.57123,-0.36171 0.59659,1.6773,3.1038,-1.3421,-0.57937,2.0419,-0.40963,0.15117,0.004196,-1.9247,-0.50568,0.65398,0.53204,0.33726,0.6488 -1.4715,-1.1527,3.2882,-2.0519,-1.0146,1.2929,0.17443,-0.61343,0.66681,0.57551,-0.44235,-0.70413,0.40782,0.70715,-0.20436 -2.6055,0.50372,0.4117,-2.2319,-1.1678,1.198,1.2563,-2.3515,-1.0944,0.048411,0.066473,-0.86572,-0.44302,0.30598,-0.72382 -2.4866,-0.4725,0.36995,0.66756,0.72875,0.47073,0.70783,-0.55652,2.6522,0.98175,0.38318,-0.45614,-0.072268,1.5877,-0.31177 -3.27,1.3549,1.0887,-1.7249,-0.13161,1.0617,1.0852,-1.2242,-0.73524,0.30276,0.94229,-0.20483,0.3819,-1.1388,-0.18339 -1.6423,2.0166,1.9001,0.026561,-1.2816,1.0401,0.70983,-0.5298,0.80995,1.0125,0.63206,1.0827,-0.23067,0.063523,0.16231 -1.9541,-0.045927,3.1884,-0.86091,0.84042,-0.65976,0.82894,-0.27618,2.0271,0.34756,0.42786,-0.67376,0.54811,0.32195,0.058804 -0.082062,3.7638,0.68175,-0.40755,-0.32394,0.54958,-1.6685,1.0501,-0.51944,0.58954,-1.1718,0.29923,1.0747,-1.2093,-0.023612 -1.2895,-1.98,0.56978,1.331,0.065961,1.6996,1.0627,-1.3629,1.3213,-0.11283,0.17825,-0.36956,0.71421,-0.59267,-0.32373 3.9599,-1.4876,-1.5638,-1.0384,1.5142,0.64783,2.2284,-0.38848,0.72684,0.20655,0.80806,1.7046,-1.7157,-1.8829,0.51169 -3.4979,-0.14702,-1.1751,-0.42878,-1.1226,-0.30209,0.75546,0.54524,0.0755,-0.5085,0.41966,-1.7985,0.49509,-0.55401,0.058777 2.3698,0.83656,3.0591,-1.7161,-0.74735,1.7918,0.25358,0.5838,0.39964,-1.4415,-1.1035,1.0969,-0.44069,0.66659,-1.0591 -2.8756,0.63627,0.86163,-1.0091,-0.60262,-0.12708,1.5425,-1.2933,0.65766,-0.13801,0.38026,-0.28265,1.612,-0.66297,0.30476 1.3071,3.0449,-0.35391,1.1959,-0.7483,1.3828,-0.74629,-0.3891,0.60005,0.73481,-1.705,-0.14615,-0.78152,0.53676,-0.23409 -3.1499,-0.55716,-0.14307,-0.17724,-0.90015,-0.26569,0.40203,0.53059,1.6043,-0.0094679,0.38153,-1.3949,0.55967,-0.3234,0.26245 -0.26089,1.5608,-0.87113,2.1316,-0.24941,0.93587,0.69685,-0.7989,0.5577,0.35326,-1.4565,0.94672,0.56067,-1.3235,0.29898 1.8808,0.99094,-2.9485,0.65513,-0.50656,1.4979,0.19291,-0.87201,1.1413,-0.22621,-0.2017,-0.68825,-0.72855,-0.93639,-0.81392 -1.7214,-0.25239,1.0191,2.9803,1.1266,-0.45444,1.3566,0.40716,0.72163,-1.6347,0.052431,0.48339,-0.36935,-0.38039,0.94987 0.089145,1.8802,1.0108,1.7811,-0.1029,0.5305,-0.40943,-0.55767,1.4492,0.41585,-0.6488,1.6622,0.059665,-1.2444,0.33836 -2.5501,0.93074,0.81513,-0.51433,-0.73171,0.2971,1.5162,-0.010988,1.0634,0.93886,-0.1903,-0.14157,1.651,-0.85504,0.13906 -2.3026,-0.13724,0.43889,2.4356,1.4366,-0.34325,1.6175,-0.1199,0.93327,-0.95777,0.66324,0.59888,-0.41763,-0.093198,0.53526 0.35471,0.42894,0.85699,2.979,0.79541,0.34708,-0.49428,0.22773,0.40773,-1.5436,-0.12739,0.92121,1.0958,-0.43812,-0.52207 -2.5671,1.026,-1.6315,1.4921,0.56719,0.44968,1.947,0.20631,0.15033,1.2073,0.37596,0.3686,-1.0236,-0.21965,-0.603 -1.4808,2.8521,2.3501,0.16413,-0.029098,-0.71173,-0.077068,0.259,0.72454,-0.52864,-0.36678,1.3044,0.61573,-0.066013,0.47225 3.2832,0.94518,-1.2272,0.18655,1.3834,1.5723,-0.13585,-2.5243,-0.013397,0.48698,0.36249,-1.8994,-0.53502,-1.1204,0.75058 1.3181,1.8553,-1.9891,-1.4509,0.31394,1.2182,1.122,0.54671,-1.8284,-0.51347,0.71457,-1.6431,-0.77897,1.0111,1.2078 -2.6804,-0.91679,-2.3124,0.34298,0.21303,-1.2328,0.89069,0.40134,0.67911,0.28875,-0.47454,-0.74475,0.22458,-0.30898,-0.85981 -1.3304,1.4186,1.1712,2.6737,0.28807,0.24366,1.2103,-0.89365,0.71861,0.66933,0.28877,1.2983,-0.55326,0.17025,0.56196 -1.6693,0.80447,2.0423,-1.7778,-0.78755,1.6739,0.68465,-0.97278,0.46074,1.3108,0.50135,-0.73876,0.023032,0.62242,0.12342 -0.80409,2.4888,-0.45833,2.0945,1.4063,0.49794,-1.181,1.7477,0.1668,0.82437,-0.31268,0.61053,-0.49165,0.044295,-0.16265 -0.53711,0.67784,1.5883,-2.4274,-1.3532,1.2159,1.4102,0.091611,0.86669,-0.63978,0.04898,-1.1014,-1.2868,-1.1356,0.39564 -0.69254,0.21574,1.1543,2.2614,-0.46522,0.28716,0.075873,0.92144,1.8556,-1.2164,-0.030563,0.66122,1.1218,-0.1,0.546 0.10454,-0.1739,3.0616,0.67885,-0.36613,0.39746,-0.14259,0.57183,2.3538,-0.59263,-0.773,0.27236,0.69197,-1.2383,1.1727 -1.0457,1.0797,-0.29874,1.4194,-0.56999,1.0614,-0.022965,-0.8464,-0.40093,-1.1831,0.49114,0.98802,-0.034587,0.78057,0.52283 -1.3622,-0.34618,1.3175,0.46363,0.017322,0.37699,0.41944,0.35621,2.4837,-0.38274,0.86147,-0.083156,1.2816,-0.27491,0.054799 0.030068,0.98714,0.35736,2.408,0.25043,2.0403,-0.33229,-0.96343,0.52014,-1.0482,0.33649,0.5607,0.82116,0.32408,0.80351 2.5521,2.2534,-1.2697,-3.3636,1.0142,0.48726,-0.011334,0.29847,0.67857,0.45434,0.49941,-0.56443,0.91861,-2.0943,-0.26011 -2.9885,-0.10993,0.39061,0.31119,0.037473,-0.9974,1.5907,-0.39222,1.5726,0.43787,0.4811,0.3717,0.89481,-0.31451,-0.35542 2.879,2.8249,-1.0729,-2.2333,-0.036853,-0.43667,-0.91652,-0.4977,0.71923,0.46055,0.16194,-1.2718,-0.92168,-0.80482,-0.46387 -3.6564,1.1014,-1.9527,-0.69751,0.52293,1.8209,1.2843,1.3763,0.2552,0.93315,0.030367,-0.56388,0.019725,0.074871,-1.1089 -1.3448,-1.7418,1.8269,-1.3403,-0.6,0.9974,1.547,0.30264,1.4078,-1.2361,-0.64094,-0.28576,1.2096,-1.4132,-0.73776 3.4105,1.3893,0.16682,-0.76636,2.0334,1.4688,0.032323,-0.68558,-2.3259,-1.4852,-1.3102,-0.59039,-1.2011,-1.6456,-1.4312 3.2722,2.4325,0.31876,-2.8942,0.59463,0.46208,-0.81378,-0.72651,0.50002,-0.3082,0.23237,0.18838,0.50035,-0.23595,-1.5074 -1.1042,-3.2067,0.30063,-1.8159,0.17343,1.2057,0.032139,-0.21752,1.4513,0.62078,-2.0027,0.10597,0.82414,0.31304,-1.2907 -0.59898,3.3633,-0.78511,0.43857,0.10554,0.12441,-1.4313,0.78353,0.41412,0.95193,-0.34578,0.38364,0.88241,0.57829,-0.95296 -2.0309,-2.2306,-0.001067,-1.6628,0.057268,-0.01041,-0.17915,-0.36792,0.82379,-0.98494,-1.1716,-0.58863,1.4996,-1.6595,-0.26865 -0.21126,-3.799,1.5635,-0.8777,0.37229,0.49146,0.57362,1.7932,0.16576,-0.238,-0.98032,-1.154,1.2775,-0.19909,-1.0183 -2.5297,-3.0625,-0.13978,-1.1812,0.24617,-1.1277,-1.3921,-0.369,1.3325,0.16148,-1.3235,-0.3032,0.062356,-0.41791,0.7099 1.3086,2.0613,1.8417,1.3898,1.8107,0.22954,-0.81519,-2.3936,-1.2544,-0.39707,-0.7786,0.39139,-0.9134,-0.89862,0.30342 0.49212,-0.0003903,2.7005,-1.0801,-1.0315,1.1525,0.14222,1.5005,1.6047,-1.7856,-1.039,0.67357,0.82675,-0.94765,0.61921 -2.8474,-1.8085,-0.28422,-1.7538,-0.01745,0.42885,-1.8805,-1.1647,0.51294,-0.77038,-0.67279,0.29349,0.79858,0.10867,0.73883 0.93357,1.3815,1.6635,0.83728,1.3045,-1.1541,0.12943,0.47476,0.11685,-2.6599,-0.91573,0.66866,2.6249,-0.53433,-1.1077 -0.60772,-3.038,0.87209,-1.7457,0.23996,0.59821,-0.38931,1.7266,1.1949,-0.22805,-1.7014,-0.91374,2.2534,0.65448,-0.59959 1.7105,0.71894,-0.94249,0.95844,2.306,1.3694,-0.63772,-2.216,0.45371,0.10364,2.0143,-0.88071,0.96403,0.022419,0.98666 -1.9424,-2.4079,0.001519,-1.4737,0.47063,-0.55778,-0.80803,-0.47332,1.0583,-0.60904,-1.3434,-0.1743,1.2708,-0.92007,0.366 2.1013,2.6886,-0.044549,-0.40587,-0.24972,0.49669,0.047431,0.0017385,0.30585,-0.96831,-1.5376,0.7325,-0.25407,-1.4321,-1.7321 -2.0556,-2.6178,0.16486,-0.84648,-0.041964,-0.39924,-1.1179,0.026447,1.7823,-0.35021,-0.77595,-0.888,0.62045,-0.37672,0.57116 1.6959,1.5239,1.1494,1.5314,1.5553,1.223,-0.21858,-2.0189,-0.27335,-1.0611,-0.74427,1.1737,-0.1051,-0.45572,0.24904 -1.9485,-2.7986,0.3121,-1.7976,0.17242,-0.15491,-1.371,0.35932,0.68164,-0.63883,-1.2397,-0.7332,1.2912,-0.23275,1.0344 3.1291,2.3948,-0.58097,0.54797,1.6484,-0.029759,-0.44132,-1.7259,-1.3233,1.1509,-1.151,-1.1783,-0.3627,-0.71937,-0.55078 -2.7743,-1.1794,-0.73836,-2.0249,0.33845,1.5874,-0.55546,-2.8734,-1.2078,-0.81518,-0.97206,-0.068196,-0.47186,-0.5332,0.0070173 -2.7559,-1.1185,1.1035,-2.4445,0.67452,1.0666,-0.41411,-1.2449,-0.26306,-2.1848,-0.46872,-0.50461,0.73057,0.21147,0.5403 3.429,0.12133,-2.6645,-0.20681,0.97044,1.5189,0.98117,-1.3571,-0.19315,-0.86536,0.56532,-1.2649,-0.89192,-0.67956,-0.39888 1.4557,-1.2637,-2.2121,-0.84671,-0.21769,3.9218,1.631,0.34983,-0.40227,-0.53305,-0.31678,1.1303,0.17967,2.5442,0.33994 -0.05622,2.7403,-0.80851,-0.30828,-0.92895,1.3347,-0.42598,-0.93977,-1.4493,-1.2499,0.90408,0.037663,0.68502,1.2565,-0.10413 -1.8179,1.5443,0.044376,2.2938,0.95661,0.83732,1.0818,-0.18642,-0.41889,0.95471,0.0070718,0.90747,-0.44957,-0.16574,0.79477 -1.8307,0.67374,-3.0288,-0.40149,1.1635,1.3341,-0.74255,-0.83777,-1.3664,0.23556,-1.0734,2.2498,0.62638,1.1233,0.4904 -3.0671,-1.8519,-1.6929,-1.6675,0.18114,-0.29774,-1.8881,0.56057,0.46286,-0.25526,-1.3705,0.14865,0.29791,0.61454,1.0972 -1.5087,1.9311,0.62708,-1.3259,0.47846,1.5122,-0.043869,-0.08195,-2.1376,-0.78528,0.62986,-0.28459,-0.74027,1.2962,-0.60887 -2.9977,0.13183,-2.4387,0.018379,0.3773,1.5839,1.5845,0.16542,1.2056,-0.24217,-0.15136,-0.54635,0.3403,-0.90748,-0.29996 3.6947,0.54928,2.0792,0.60754,3.7212,0.04656,-0.56283,-1.4866,0.13837,0.20197,0.36424,-0.45701,-0.2201,-0.14162,0.15829 -2.8345,-1.6635,-1.7866,-0.53662,0.74604,-0.87779,-1.0191,0.50431,1.5521,-0.08091,-1.0292,0.31809,-1.0455,0.3609,0.4841 -1.5069,-2.0875,0.51416,-0.9838,0.22247,0.49133,-0.92914,0.33407,1.5331,1.1607,-1.4405,-0.98606,1.1452,1.1251,0.953 -2.8703,-1.4234,-2.9643,-1.7959,0.76932,-0.12529,-1.3013,0.54966,0.0025839,-2.0583,-2.3346,0.91272,-0.70623,0.40449,1.1304 -2.6224,-0.76575,-1.1348,-1.6721,0.51025,0.030193,-1.6842,-0.69396,0.90567,0.44481,-0.87651,1.742,0.11795,0.71466,1.01 -0.59386,2.861,-0.19622,0.36319,-1.0086,0.56122,0.28312,0.45951,0.74667,0.62235,-1.416,0.60633,1.403,-0.53722,0.87353 -1.5829,3.1359,0.33441,0.89758,0.10451,1.5421,0.40107,0.75651,-0.20556,-1.4173,0.018703,0.38272,0.99594,-1.0694,0.89239 1.3527,2.4079,-0.49508,1.9036,-0.10672,0.96968,1.0494,-1.4868,-0.35762,0.082511,-2.2544,0.65412,-0.80674,-0.10916,-0.69275 -0.2891,4.2958,1.5226,-0.49932,0.86697,0.27879,-0.9778,0.10777,-0.96909,-1.0221,0.23291,0.56634,0.8075,0.032787,0.27317 -3.9372,1.6156,-0.24456,-0.80668,0.47182,1.268,1.0801,-0.10816,-1.0358,1.252,1.3103,-0.45509,-0.088061,-1.0232,-0.64073 -2.6571,-0.96127,-0.056512,-1.1338,0.54293,0.12957,-0.97185,-0.45771,1.8174,-0.11919,-0.26241,-0.38059,0.503,-0.20267,0.77331 -3.3085,0.25504,-3.1819,-1.3255,0.90574,0.43106,0.025068,-0.58442,0.34569,-1.6497,-1.0299,0.47476,0.1077,0.20382,-0.27047 -2.6058,-2.1219,-2.2982,0.073819,0.34193,-1.1255,-1.8233,0.96624,0.58496,0.48846,-1.5799,-0.19638,-0.84991,1.4169,0.86843 -0.16773,-3.5605,0.35543,-0.50152,1.1061,1.2684,-0.9853,-0.93647,0.93736,1.435,-2.9449,0.69274,0.39865,1.4441,0.31272 -2.9643,-2.1638,-1.698,-1.6245,0.46056,0.27512,-1.6096,0.57042,1.1034,-0.8542,-1.245,0.37809,-0.58374,1.7549,0.317 0.41894,1.9647,-1.7174,1.5637,0.039076,2.1607,-0.56774,-1.2639,0.47327,1.2013,-0.22839,-0.12167,0.2961,-0.066864,-0.078238 -0.78681,4.599,0.74703,-0.27719,1.2163,1.0693,-0.75287,-0.24888,-1.8337,-1.2908,-0.42808,0.47919,0.5269,0.9594,-1.0803 -2.8092,2.4005,-1.2663,0.15453,-0.67316,1.6607,1.3849,0.57544,-0.38252,0.14581,0.60067,0.63088,0.87225,-0.15608,-0.065813 2.9495,1.4207,1.9542,0.37318,-0.087181,0.73859,-1.2228,-1.2016,1.4119,-0.6184,-0.90013,0.25522,-0.98194,1.5291,-0.37552 2.2138,1.8792,2.5231,1.0459,2.3547,-0.40186,0.69298,-1.3178,0.38435,-0.22825,-1.9819,0.86779,-0.33377,-0.69778,-1.6089 -1.9108,1.0595,1.6648,-0.6845,-1.2401,0.2131,2.055,-1.8678,0.084944,1.2786,-0.3563,0.2612,-1.0763,0.67973,-0.41357 2.6982,0.1193,2.2002,1.1338,0.03164,1.6632,-0.89436,-0.6644,1.1011,-0.40318,-1.3558,0.39235,-0.84667,1.6316,0.48476 -0.16312,3.3127,-1.6901,-1.0046,1.9626,2.4608,-0.59069,0.25325,-1.5708,0.32238,0.8419,-0.71131,0.010372,0.19749,-0.52154 1.672,-0.0082664,3.2358,1.6005,0.48876,1.7641,0.4185,-1.229,0.55262,-0.7601,-0.41113,0.18766,-0.076987,0.59376,0.70925 0.089832,1.7815,1.8645,1.3418,0.69507,-0.98392,-1.3482,-0.50646,1.9196,-0.61228,-0.74869,1.2201,0.44088,0.39065,0.072438 2.6002,1.1062,0.87194,0.73069,0.11022,0.24516,-1.4549,-1.9986,1.536,-0.39077,-0.19974,0.67699,-0.12232,0.709,-0.49033 3.5184,-0.25396,1.2822,1.2358,2.2813,2.1485,-0.66047,-1.3032,0.67454,-0.60581,-1.0827,0.23512,0.34548,0.98838,-0.72157 -0.43747,2.7526,1.2876,0.39421,-1.2402,1.1278,-0.73603,-0.59382,0.51376,-0.34884,0.37397,1.5068,-0.32827,1.2144,0.23681 1.3819,3.5069,-1.9563,-0.68778,-0.065377,1.6744,-1.007,0.14303,-1.5178,-0.27494,-0.75737,-2.0653,-0.9906,-0.5799,-0.96956 -1.9611,1.2905,-0.36884,1.8581,-0.19818,-0.087535,0.82632,0.25461,1.6109,0.56665,0.29482,1.4185,-0.42583,-0.41734,0.77791 0.78449,2.1569,-0.90407,1.0765,0.011508,0.30036,-1.6936,-0.84203,1.5273,0.49499,0.63115,0.77015,0.54903,0.49264,-0.81962 0.021209,1.0286,2.8463,1.7776,0.93912,0.42861,0.56499,-1.2034,0.12789,1.1237,-0.051469,0.58556,-0.99637,-0.21079,0.52504 -3.4773,2.2151,0.0034946,0.32524,0.66218,-1.5389,1.2878,2.3009,-0.36006,-0.36101,-0.57213,0.17329,-0.48184,0.39106,0.64828 1.7522,0.12577,2.7993,1.9602,1.6761,1.0908,-0.49144,-0.66317,1.3768,-0.77371,-0.52476,0.78969,0.29846,0.63141,0.83172 -0.76817,0.73133,2.957,0.7768,-0.41516,0.77282,0.82555,-0.85593,2.0009,0.65175,-0.15195,0.48504,-0.66196,0.39912,0.95639 0.21376,-2.3664,2.763,0.081869,0.099222,2.4345,1.0772,1.7729,1.6266,-0.3,-1.8083,-1.234,1.0746,0.66052,-1.0875 4.4776,-0.071128,-0.63799,-1.1938,1.5129,0.64044,0.40786,-1.1865,1.0352,0.033824,-0.23944,0.58774,-2.0707,-0.31357,-0.82143 -1.128,-0.80851,2.0723,1.0255,0.52871,0.86766,1.313,-1.3946,2.198,1.0404,0.017616,-0.47034,0.24216,0.32687,0.076407 -3.271,0.7809,0.6559,-0.42244,-0.83872,1.4119,1.0757,-0.45963,0.81282,-0.34567,1.1321,0.22602,0.41125,1.0176,-0.51905 2.86,2.2409,-1.406,-0.82468,-0.25245,-0.029321,-1.0136,-1.2321,1.2139,1.2758,-0.15926,-1.2905,-1.195,0.080537,-0.70844 2.5015,1.7458,0.72007,0.45972,1.2414,0.35301,-1.451,-1.8512,1.1437,0.18287,-0.79287,0.10579,-0.40627,-0.59918,-0.78686 3.5055,-1.4211,-2.481,-2.1826,-1.2582,0.66351,1.55,1.2238,0.64681,0.36769,2.0159,2.576,-1.3912,-0.26619,-0.33252 1.3017,0.7778,0.13591,1.9374,1.8625,1.1956,-1.3214,-2.2219,0.15016,-1.2581,0.49573,-0.017246,0.77729,0.89692,0.17657 -0.55187,0.56955,1.7891,2.4773,-0.19797,0.20704,0.93226,-1.8879,0.17797,-0.0089561,0.44612,1.1157,-0.90357,0.66877,0.79296 1.1504,-0.38934,2.6247,1.729,0.44203,2.8155,0.77929,-1.7801,-0.48213,-1.8706,-0.96401,0.73362,-0.044693,-0.45311,0.84633 3.4327,1.8408,-0.1347,-0.70938,0.76967,0.097065,-1.1133,-0.76409,1.4155,1.8266,-0.38958,-0.69635,-1.0474,-0.83611,-1.2016 -1.1663,-1.2341,2.9586,-0.95047,1.2901,0.16388,1.0171,0.54518,1.1006,1.7675,-0.52695,-0.15942,0.19434,-0.60397,0.045249 4.0626,-1.9617,-0.69814,-2.3322,2.9522,0.2895,2.1576,1.3972,0.82674,1.6431,1.0843,2.7771,-0.68641,-1.2178,0.21533 -2.6754,0.53489,-2.5282,-0.20661,-0.55126,0.051084,1.5485,1.4243,1.3303,0.51935,-0.76019,-0.95384,-0.13964,0.91225,-0.13311 -2.7814,2.0514,0.42521,-0.24082,-0.64956,1.3467,1.1031,0.37685,0.42745,-0.042269,0.69707,-0.10158,1.193,-0.5383,0.77405 -0.053404,0.97689,1.0003,2.8908,1.1904,0.66448,-0.35959,-0.69456,1.1476,-1.4419,-0.07268,1.2697,0.45066,0.26596,0.62216 -2.5597,-0.85582,0.073837,0.31603,0.086054,-0.16994,0.92517,-1.3633,1.8478,0.79315,-0.014347,-0.020517,1.118,-0.11362,-0.99796 -2.2037,2.5817,-1.5055,0.63096,-0.26367,0.042276,1.1217,1.985,0.059895,-0.0052328,-1.2062,1.0877,-0.73084,0.20724,-0.31516 -1.1075,1.2261,-0.38766,2.6918,0.048596,1.1674,1.1487,-1.0581,0.24039,-0.67607,-0.22513,1.02,0.69161,0.06404,1.0703 -3.0431,0.79543,-1.6146,0.34432,-0.28135,0.79433,1.1994,-0.27519,1.0194,1.5912,0.5989,-0.10569,0.17864,0.52119,-1.1736 0.28143,2.9337,-0.53289,-0.44686,0.83635,0.36859,-1.5718,-0.016499,-0.44659,2.082,0.51648,0.061046,-0.14651,0.34745,-0.72031 5.1965,-3.2425,-0.41606,-1.6971,3.674,2.9636,2.4353,-0.28932,-1.0863,-0.85463,0.67331,1.4155,0.17656,0.90401,0.51399 0.9244,4.4713,0.2234,-0.97618,-0.28706,-0.06354,-1.1311,-0.015395,-1.7196,0.7869,-1.0155,-0.80751,-1.5039,0.058331,-0.47594 0.47113,3.3414,0.79053,-0.02064,-0.39236,-0.51145,-0.94974,0.29129,-0.17141,1.0233,-1.6156,0.63442,0.57449,-1.6702,-0.57915 0.29496,2.3659,1.0191,2.1773,2.0988,-0.30316,-1.1536,-1.0538,0.53716,0.38912,-0.0077219,1.0592,-0.39572,0.058287,-0.086117 -0.45347,-1.0443,2.5558,1.6961,0.62108,1.8621,1.5145,-1.3178,1.1131,-0.63592,-0.090778,0.25236,0.72458,-0.95283,0.23734 -2.9323,2.0699,-1.3742,-0.21504,-0.57871,1.209,1.2432,1.123,-0.34467,-0.25743,0.3408,1.0273,-0.69808,-1.3478,-0.80973 3.8093,-1.8385,-1.6386,-0.8205,1.7896,3.0632,1.7142,-0.20264,0.40384,-0.82756,0.55145,0.32816,-0.015369,0.10525,0.021867 -0.14521,3.5506,0.47773,-0.67386,-0.37726,0.86096,-1.4497,0.4763,-0.47412,-0.33977,0.20781,0.74682,0.494,-1.0871,0.47558 -2.1462,3.393,2.2432,-0.2952,0.51444,-0.25655,0.54742,-0.20957,-0.78642,-0.37415,-0.40417,1.041,-0.13943,0.92999,-0.0034709 1.0915,1.1621,1.4476,1.9507,-0.17362,1.8649,1.2896,-1.6954,-0.031997,-0.12455,-0.93983,0.24535,-1.1545,0.24453,0.85653 -2.5388,0.689,0.072123,-1.185,-1.4711,0.31348,0.48594,-0.2794,-0.43651,-0.45747,0.5478,-0.72272,0.86001,-2.3432,0.41543 4.1091,-0.12388,-2.4737,-0.9233,0.52383,1.3429,1.6931,0.79031,0.32229,1.7968,1.1791,-0.97905,-1.7542,0.99415,1.3349 -1.6771,-0.88199,0.099962,0.28965,0.55905,0.50488,1.1017,-2.1586,1.3654,0.64215,-0.058015,-0.12923,0.8362,-0.65547,-0.90318 1.5015,-1.0847,3.5905,1.7773,2.2179,2.1194,0.083965,-0.91486,-0.45,-1.4457,-0.46419,0.59176,0.37847,1.0071,1.3489 -0.1415,3.0465,-1.1644,-0.48855,-0.013115,1.029,-0.57596,-0.46723,-0.11631,-0.19649,0.55314,0.13247,0.10969,0.63271,-0.64838 -2.7651,1.8337,1.9814,0.1169,0.48635,-0.033381,0.74314,0.54717,0.57342,0.22205,1.2754,1.1167,-1.1132,-0.11809,0.029777 -0.61144,3.4958,-1.0009,-0.16209,-0.65472,1.6009,-0.29766,-0.074074,-0.94251,0.1898,-1.2782,0.36682,0.25992,-1.0807,0.15684 -1.3222,1.5543,0.10311,0.82519,-0.60926,0.71087,1.1551,-0.33153,2.1714,0.17202,0.034874,0.89834,0.61649,-1.3165,0.91578 -3.0141,0.82313,0.28568,-2.0933,0.1856,0.63115,0.25368,-1.8102,-0.098807,0.84882,0.73962,-0.17861,0.13806,-0.058476,-0.587 -1.1297,3.0943,-0.84457,1.3733,0.51976,0.60269,-1.1236,1.6125,0.5984,-0.15069,-0.56425,0.66681,-0.11236,1.6537,-1.3431 0.42782,-0.19578,3.3251,0.21314,-0.21758,0.97537,1.7037,-1.6875,1.0859,0.29042,-0.78518,0.37551,-1.5408,0.21579,-0.054323 2.1241,3.0463,-0.71652,-0.51355,-0.11685,-0.30654,-0.98417,-1.3572,0.37773,1.6072,-0.33476,-1.2667,-1.2214,-0.32827,-0.28714 1.9199,-4.5949e-05,-1.7656,-0.22526,1.6526,0.48975,0.70296,-1.6494,-0.12444,-1.9785,-0.44959,-0.12547,0.87001,-1.4673,-0.14066 1.0573,2.25,2.5382,0.41917,0.45542,-0.3097,-1.2491,0.55696,0.4333,1.1208,0.11609,0.93583,-0.50966,-1.2251,0.98446 -3.3776,1.4421,0.39364,-1.4406,0.14636,0.038485,0.37401,0.14905,0.29048,1.362,0.98981,-0.44219,0.43224,-1.4159,-0.12657 -1.9918,3.1543,-1.3703,0.34686,-0.80708,1.7621,-0.22529,1.2153,-1.1002,-0.047083,-0.14263,1.6019,0.024097,-0.12561,-0.93944 2.886,0.37164,-1.7901,-0.19959,0.49276,0.079625,-0.3247,-1.5422,1.1041,0.61555,0.95324,-1.2366,-1.6838,-1.1613,1.2096 1.5929,0.76502,2.5465,-0.16642,-0.62611,1.1416,0.14714,0.44508,2.1549,-0.21102,-1.7328,1.1351,-1.4715,-0.32881,0.38215 -2.1363,-1.9498,0.65787,0.9687,1.7592,0.6139,0.37973,-0.98488,2.0014,0.52094,0.54476,-0.4824,-0.55055,0.87917,-0.28441 -0.9211,3.8524,0.32856,0.024978,-0.82038,1.0496,-0.35567,0.35743,-1.197,1.4383,-1.0557,1.0176,-0.35139,-0.0066332,0.063158 -1.5118,0.72085,1.2783,-0.52647,0.2712,0.53053,0.076977,1.1889,2.1682,0.55313,1.1773,-0.86788,0.5444,0.021528,0.4944 -4.1861,0.48596,1.5123,-1.3488,1.5762,-0.88396,0.59293,0.085656,-0.16942,0.999,0.90328,-0.21563,-0.98657,-0.57583,-0.12422 3.5061,-0.085914,0.57733,0.62912,-1.1236,2.2199,-1.1261,0.39311,0.83968,-0.56636,-1.4812,0.48462,-0.70295,0.89106,-1.6248 -0.33953,3.4946,-0.82031,-0.14038,-0.95545,1.879,0.19829,0.0072416,-1.3062,-0.58247,-1.8114,0.38841,-0.36354,-0.52933,-0.053604 -0.92676,2.6701,1.4941,-0.28066,0.22141,-0.40322,-1.0585,-0.60193,0.12266,-1.1864,1.3068,1.577,-0.61059,1.3174,-1.2109 -1.0663,-0.069704,2.6531,-0.88901,0.52872,1.2236,-0.56174,0.44993,1.4632,-0.86138,1.9808,0.51364,-0.12887,2.7117,0.10312 2.5386,1.1546,-2.1164,0.54294,0.059263,1.6212,0.16685,-1.3784,0.51216,-0.74975,-0.49607,-1.4656,-0.65652,-0.45951,-0.78487 0.93411,3.8857,-1.131,-0.23828,-0.74354,1.4059,-0.55081,-1.103,-1.6481,-1.2285,-0.95569,-0.64108,-0.95142,0.16536,-1.1448 2.3642,3.1976,-2.6377,-1.1784,-0.21779,0.29262,-0.1652,0.2664,-0.96145,-1.2481,0.40522,-1.9682,-0.6963,-0.83195,-0.70799 2.4308,1.616,-0.98284,-2.5493,-0.12909,1.037,-1.2126,-0.78629,1.6494,0.92713,1.0701,-0.11312,0.62383,-1.0014,0.030525 -3.1788,2.3872,1.0859,0.080973,0.33668,-0.019306,1.3757,0.5759,-0.13163,0.36558,0.76465,0.43746,0.43626,-0.20435,0.00064392 -0.39189,3.4739,0.8906,0.69753,-0.42566,0.37803,-1.1738,-0.4643,-0.51228,0.78652,-0.21474,1.0907,-0.8813,0.26975,-0.56858 2.8182,2.3342,0.30385,0.2851,0.78166,-0.58564,-1.1963,-0.9056,0.86624,0.82821,-1.2039,-0.65571,-1.6791,-1.1243,-0.43239 1.8455,0.84578,-2.7149,0.18012,0.059081,1.518,-0.24049,-1.7023,-0.4697,0.41947,0.20578,-0.20077,0.49678,-0.79023,-0.043261 1.9297,2.3718,-0.42652,-1.2664,-0.6606,1.2497,-2.1756,-0.81447,1.0048,-0.44241,0.45951,-0.23264,0.51044,0.48295,-0.31707 1.7847,1.2388,0.8346,-0.06352,1.2281,-0.59012,-2.1359,-0.31125,2.7649,0.10453,-0.24165,0.30878,1.0678,-0.19721,-0.047569 3.3268,-0.39486,1.6937,1.9331,-0.1856,1.6803,-0.33758,-1.8513,-0.91565,-1.1952,-0.88543,-0.54827,-0.9108,0.84458,-0.076804 -2.511,0.58687,-0.50348,0.58018,-0.58493,-0.45014,1.111,1.1046,1.9046,-0.5886,0.61076,-0.83376,0.32332,-0.75062,0.55764 0.71983,2.9586,1.8614,0.4769,0.36482,-0.49351,-0.99463,-0.85017,0.58368,0.98548,-1.0172,1.3148,-0.72853,-1.0232,-0.34299 1.9647,2.3681,0.082385,-1.3936,-0.27659,0.40866,-1.9977,-0.45624,1.5483,0.6234,-0.30784,-0.55288,0.133,-0.63123,-0.90403 2.4868,1.0872,0.76602,-1.2439,0.95807,-0.041094,-1.4018,0.31207,2.527,-0.094743,-1.0132,0.64815,0.64562,-0.5042,-1.356 0.91415,3.5041,0.024462,-1.1861,-0.67437,0.57208,-1.1407,0.095848,0.023892,-0.5795,-1.284,0.26286,-0.056853,-1.0694,-0.70153 0.24864,2.9629,0.55538,-0.45216,-0.59345,0.57117,-1.4257,0.17755,1.1104,0.062524,-1.1407,0.88346,0.95936,-0.96981,-0.060186 -2.2337,2.3373,-0.91028,1.5967,0.18225,1.4403,0.4885,1.6027,0.20383,0.19308,-0.26292,0.74611,0.36554,-0.9326,0.60886 2.8008,0.5171,0.41,-0.53055,2.1076,-0.07401,-1.4043,-0.87382,2.2729,1.3604,0.38725,-0.46259,-0.15373,-0.53057,0.28861 0.080433,2.4133,0.85523,-0.9007,-0.056835,0.43566,-2.1195,0.30176,1.1206,-1.7098,-0.55318,0.42634,1.6399,-0.37291,0.59179 -0.96459,2.7248,-0.15577,1.8485,0.10486,0.98666,-0.57781,0.18925,-1.0923,1.1489,-0.092384,0.81436,-1.7337,0.21928,-0.007984 -1.6369,4.1381,-0.2494,0.0055469,0.54306,0.97163,-0.53157,1.2793,-1.8501,0.16089,-0.75417,0.96761,-0.084535,-0.58061,-0.74792 -3.2931,-0.81468,-0.47407,-0.35631,0.22697,-0.28576,-0.52728,-1.1718,1.3166,1.1635,0.31815,0.14894,0.43219,1.3659,-0.88052 0.7875,2.5549,1.0102,0.55345,1.2081,-0.45349,-1.2733,-2.0171,1.1261,0.93867,-0.10764,0.23925,-0.21641,0.6884,-0.52283 -2.3195,-0.51434,-1.4146,-1.3341,0.8389,1.4008,-1.7932,-1.231,-0.75249,-0.7923,-0.46118,1.8606,0.37823,0.3514,1.5075 -2.3469,-0.26492,-1.1817,-0.020784,-0.661,0.78264,-0.16771,0.33789,2.3716,-0.70244,0.61553,-0.71869,-0.092677,0.81438,-0.63845 -2.5999,-0.95716,-0.96208,-0.92649,-0.41907,0.63523,-1.4277,-1.7731,0.54325,0.29693,-0.11107,1.3356,0.15636,1.0325,-0.3909 -2.2559,1.4935,0.96952,-0.62351,0.68629,2.1489,1.5052,-1.8393,-0.66099,-0.6151,0.52813,-1.0938,-0.31415,0.24131,-1.0226 -1.8895,-1.0815,-0.40236,-1.8862,0.024338,2.0855,-1.6924,-0.60307,-0.48946,-0.45216,-0.54858,0.20872,1.5365,0.6837,1.3818 -2.2932,-1.3824,-2.2061,-0.61273,0.018009,0.9615,-1.582,0.9772,1.1625,-0.70084,-0.81669,0.16332,-0.07927,1.6475,0.70396 2.4636,1.9586,1.7787,-0.056922,-0.79498,1.3804,-0.88081,-0.30816,1.1377,-0.20746,-0.84175,0.23651,-2.4239,1.1869,0.45178 -2.3106,-2.2441,-0.39124,-0.4189,0.57402,-0.048236,-1.8251,0.20645,1.7682,0.60775,-0.86757,0.020675,0.16898,1.3287,0.44385 0.83001,-2.1409,1.1714,-0.80814,-0.60813,2.6472,1.5018,-0.17862,1.2294,0.8221,-1.4925,-0.81674,-1.0581,1.8752,-2.4643 -3.204,0.368,-1.6904,-0.91363,-0.15526,0.86534,0.4317,0.31872,0.67248,-1.8784,0.48901,-1.2351,0.44249,-0.37948,-0.20777 -2.0589,-0.80237,0.92024,1.0317,1.2766,0.61766,0.64445,0.71517,1.9767,-0.82355,1.1165,-1.0357,-0.7408,1.3472,-0.53627 -2.1981,-1.0491,0.12895,1.2032,1.1685,1.3776,0.34859,-0.32136,1.6902,0.070761,0.9867,-0.8526,-0.77626,1.1093,-0.43138 3.8633,-0.10897,0.90014,-2.1117,3.5828,-2.0101,0.29281,0.93953,-3.1177,1.1,1.7545,-0.48793,-1.2956,-1.1169,0.97231 -0.82334,3.7427,0.25851,0.92159,0.91223,0.66928,-1.0801,1.0236,-0.79265,-1.0691,-0.85293,-0.58076,1.0938,-1.0565,0.74528 1.301,3.0325,1.1729,0.17782,0.18385,1.8226,0.087093,-0.52328,-0.23602,-2.1189,-0.76068,-0.14187,-0.62823,0.34955,0.23333 0.88886,2.5691,1.141,-0.016454,0.33538,1.0942,-0.57962,0.34423,-0.67862,-1.338,-0.89269,-0.015608,0.29827,-1.7008,0.072588 -0.13041,2.8586,0.94362,0.46184,1.3099,-1.6599,-1.5646,1.2466,0.8898,-1.6732,0.10771,0.080751,0.84266,-0.7981,0.1896 -1.8856,2.2115,1.7637,-0.1064,-0.24938,0.69536,0.93106,0.17339,-0.27875,-1.6837,0.30169,-0.16449,0.76495,-1.7016,1.6049 2.1579,2.1256,1.5857,-0.31334,1.6241,-0.53389,-0.65578,-0.0090647,0.5637,-1.5682,-0.78396,0.98175,2.085,-1.941,-0.98388 1.0743,2.4776,1.4707,-0.3422,0.27895,-0.21201,0.26339,0.25481,0.65018,-1.5041,-2.0339,1.1099,0.96808,-1.9634,-1.263 2.1497,0.48499,2.0646,1.4066,1.1877,1.3265,-0.89225,-1.8278,0.63692,-0.89922,-0.097051,0.888,-0.29494,0.68314,1.174 -1.5911,0.32041,-2.2137,2.207,-0.21131,0.34458,1.0712,0.7921,0.97002,-0.063569,-0.36802,-0.37219,-0.55909,0.046405,0.12913 -1.3614,3.8331,0.19412,0.4281,0.72267,0.064138,-0.81052,1.329,0.28799,-0.9015,-0.16878,0.80379,0.82081,0.25098,0.079279 4.9712,-2.5447,-1.1899,-1.0198,2.8248,1.2576,3.3527,1.9328,-0.85916,2.204,0.20249,2.3609,-0.62,-0.045715,0.68266 -2.3612,1.9506,0.38109,0.63301,-0.67951,-1.1856,1.1487,1.7099,0.48201,-1.4742,0.045052,-0.24205,0.40253,-0.98497,1.4587 -3.3441,0.64969,0.45785,-1.432,-0.42546,1.2187,0.81595,-1.044,-0.32021,-0.13583,0.9029,-0.25515,0.39679,-1.8417,-0.020296 0.46705,2.6324,-0.56537,-0.002671,-1.5237,0.95199,-0.49851,-0.09375,0.2487,-0.72076,-0.42363,0.76904,1.247,-1.1637,0.25116 -0.44467,3.5004,1.6267,-0.73441,-1.0538,0.68992,-0.053707,-0.26722,-0.38872,0.095644,0.5163,0.81531,-0.25451,0.52635,0.46853 -1.7615,1.3338,2.7685,-1.1036,-0.58338,-0.30829,1.0339,-0.44541,1.2949,0.24018,0.33098,0.77888,0.45818,-1.2324,0.84555 -0.66444,-1.0867,-1.5675,0.40642,0.8254,-0.45645,-0.81925,-2.3534,1.5127,-0.045423,-1.4177,2.164,-0.76687,0.35647,1.2797 -2.5357,1.8673,-0.29876,0.87012,-0.31995,-0.24235,1.4203,0.97099,0.96872,1.1008,0.30452,0.67496,0.36923,-0.87627,0.40474 -2.3767,3.1408,-0.91212,0.35915,-0.51134,1.4235,0.38792,1.2054,-0.88885,0.10637,-0.069559,1.2967,0.55092,-0.77726,0.031582 -0.13934,-3.1144,1.4758,0.4063,1.2013,1.6802,1.637,-0.31674,1.4563,-0.1181,-0.68561,0.3499,0.28584,1.1622,-1.1566 -0.56212,-0.30472,0.17043,-1.1423,0.31312,2.6407,-0.66253,-0.021955,-0.53551,-2.5023,0.95906,1.2374,0.097653,2.8615,-0.3976 2.3296,-0.971,2.1928,1.0505,1.3453,2.017,1.7816,-0.62948,-0.74752,-1.3938,-1.3153,0.97673,-0.73946,0.20127,-0.039488 -0.96333,-2.8965,0.29649,-1.3448,0.77319,0.71537,0.97117,-1.2318,1.1143,0.1315,-1.1733,0.72513,-0.49653,0.47614,-1.9872 0.34691,0.42978,2.9437,-0.67738,-0.17111,1.3765,0.97019,0.43756,2.1986,-0.78796,-0.27032,0.23499,0.13582,-0.62311,0.70037 3.2999,-2.8632,-0.12481,-2.8618,2.9517,2.6897,2.2496,-0.60789,-2.032,-1.1542,0.16735,2.0562,-0.7404,0.97969,1.0878 -0.23294,3.7801,-0.94697,-0.20203,0.10895,1.2918,-2.3221,0.83348,-1.6121,-0.70306,0.9374,-0.25838,0.85936,-0.19304,-1.6546 -0.01142,1.9476,-1.6449,2.3975,-0.029241,0.51419,-1.1699,-0.35314,0.48321,0.23835,0.15956,0.08264,-0.22794,1.4138,-1.0477 -2.1682,3.7157,0.10106,0.38265,0.2706,0.49147,-0.15613,0.88066,-0.66873,-0.49602,-0.32164,1.3921,0.85394,0.65974,-0.14736 0.43134,-2.7734,1.982,0.14441,1.126,1.4363,1.4974,1.4054,1.0963,0.8389,-1.1371,-0.56751,0.63082,-0.76805,-0.84524 1.0386,-0.94892,-2.7528,1.2165,-0.58472,1.4257,1.0766,0.93172,0.67167,0.30424,-0.74016,0.93316,0.81643,-0.28703,-0.17534 -1.051,-3.7586,-0.83949,0.060656,0.16287,0.47824,-0.99573,-0.38062,1.2848,0.31365,-2.1684,0.34013,0.31032,-0.080098,-0.34003 -1.3769,-1.4373,-0.015545,-2.3968,-0.14092,-0.24294,0.35205,-1.6367,0.83715,0.02693,-2.0683,0.29276,0.60642,-0.01598,-0.67913 -2.719,0.51979,0.024513,-1.2867,-1.4699,1.7153,0.75334,-1.2551,-0.43863,-0.89159,0.98415,-1.0218,-0.13164,0.23921,-0.71881 -1.5279,2.217,-0.41391,0.30826,1.8331,1.0113,-1.287,1.5524,-0.15865,0.16995,0.67498,-0.080426,-0.92975,1.4262,-1.5137 1.6834,2.84,1.8977,0.066863,0.063305,0.37404,-0.88243,-0.50893,0.6865,0.61789,-0.62695,0.63907,-0.71484,0.13096,0.25157 -0.1365,-0.94267,-1.5486,0.59968,0.94441,-0.43467,0.48083,-0.065459,1.6005,-0.85222,-0.60636,1.8714,0.12799,-1.1713,0.19451 1.4965,1.9175,2.7159,0.96719,2.383,-1.4962,-1.3041,-1.4047,0.37757,-0.16783,-0.097294,1.0198,-0.28706,0.45943,-0.21806 -0.79434,-1.3764,-0.86862,-1.7329,-1.6222,1.0082,-1.7276,-1.1588,-1.0137,1.2389,-1.0406,0.16092,-0.38488,1.7534,0.98915 -1.0096,0.49134,1.1606,1.4143,1.9971,-0.38547,0.14117,-1.6561,-2.0202,-1.798,-0.71894,1.5653,0.97132,0.10578,-0.068635 -1.7824,-0.8982,1.1095,-0.79051,-0.38244,1.0446,-0.023139,-0.56908,2.6521,0.98116,-0.076289,-0.61646,0.36698,0.2344,0.3402 -3.0375,2.0117,-1.5869,0.14797,-0.56124,0.26668,1.4762,2.1891,-0.14836,0.77095,-0.032928,0.33437,-0.73404,-0.52293,-0.47192 -0.79509,3.2096,-0.095971,0.77386,1.3271,-0.29209,-1.5732,0.23116,-1.0194,1.9505,0.29537,0.33126,-0.81383,-0.21747,-0.88356 2.6703,3.0801,-0.90302,-0.68772,-0.16657,-0.85612,-1.1252,-0.63848,0.42903,1.3326,-0.73275,-1.311,-1.407,-0.077772,-0.7552 -3.6483,1.9247,1.7536,-0.6421,1.0931,0.73815,0.95667,1.0226,-1.2786,-1.188,0.3732,-0.4836,0.0010021,-0.8534,0.51249 0.80653,-1.7867,-1.8585,1.7397,0.055709,-0.0058996,-0.27887,1.3139,0.81072,0.53957,-0.37143,-0.90387,0.45039,-0.20754,0.54048 -1.2465,-0.75688,-2.4679,-0.43167,-0.96712,1.9135,-1.2995,0.90065,1.3638,0.21735,-0.87116,-0.1397,1.6609,0.72198,1.3032 -1.8229,-1.7082,2.6304,-1.1894,0.95223,-1.0971,0.66268,2.5305,0.10818,-0.2258,-0.037137,-1.8319,0.97224,-1.2562,0.072315 -3.2775,1.8583,-0.78732,-1.095,0.38707,1.1785,2.3017,-0.66327,-1.2871,1.0865,-0.42325,-0.48247,1.0991,-0.1159,0.31617 -2.0235,3.7033,0.15535,0.22053,1.0056,-0.84753,-1.1625,1.8247,-0.74944,0.53428,-0.3659,1.0563,-0.33278,-0.93412,-0.44821 0.29432,1.2145,1.127,-0.5976,-1.531,1.5616,0.24809,0.3503,2.1307,-0.29563,-0.30972,0.4684,0.14982,-0.088976,0.89649 -0.81174,3.2081,-0.85823,0.67042,-1.7912,1.3012,0.061653,-0.65054,-1.6745,-0.69299,0.05839,0.90352,0.33228,-0.38033,0.14796 -2.0246,-0.061343,-3.6116,-0.58399,-0.43362,1.2243,-0.89233,0.13541,0.75667,-1.8232,-0.8038,0.86733,0.36004,0.021009,0.78791 -2.3348,-0.85138,-1.1608,-0.12562,-0.53345,-0.062146,-0.036744,0.27742,2.6048,0.070804,0.027494,-0.63581,0.28582,0.015389,0.26227 -0.38991,2.6411,0.23657,1.9808,-0.56717,1.2838,-0.21049,-0.3298,-0.075621,1.0003,0.25522,0.78311,-1.0777,0.62681,0.38113 -3.4191,-0.81094,-1.0217,-0.91789,0.29855,-0.77922,0.97697,-0.35434,1.6971,-0.56636,0.13974,-0.66913,-0.86657,0.45241,-0.4018 1.0327,0.89109,2.6555,-0.16276,0.39665,0.96161,-0.25244,0.6958,1.7736,-1.0853,-1.9237,1.4947,0.68558,-0.48122,-0.37075 -0.06031,3.5148,1.6626,0.19085,1.0842,1.9975,-0.37862,0.6228,-0.92542,-1.4567,-0.56199,-0.79966,-0.57382,-1.2485,0.58085 2.8125,-0.54315,-2.626,-3.1816,-1.2024,1.8699,2.0861,1.7597,-1.339,0.48799,1.0089,2.8032,-0.25548,-0.71874,-0.39503 -2.3661,-1.7555,-0.18642,1.8055,1.8864,-0.073834,1.9914,-0.72645,0.50753,-1.6355,0.49664,-1.1204,-0.078856,-0.21767,0.41369 2.1422,0.92467,-0.70526,-0.081008,1.0608,-0.67489,0.15264,-2.8748,0.55201,1.6728,0.72977,0.33321,-0.65926,0.24352,0.38382 0.45268,2.8679,1.4491,1.0404,2.3196,-1.3785,-1.9873,0.059845,1.116,0.30519,0.019469,0.66753,-0.24939,-0.052317,-0.17757 -0.024289,-0.58159,2.7261,0.92013,1.5984,2.0016,1.4876,-0.2573,-0.055268,-0.98359,0.10888,-0.19387,1.0066,-1.7788,1.3693 -1.0067,-1.3794,2.0192,2.4416,1.5462,0.42382,1.5681,0.36328,1.7748,-1.557,0.18432,-0.28782,0.4418,-0.30887,1.1321 -1.697,1.4041,1.392,2.579,2.4871,-1.3983,0.59113,-0.085954,-0.33727,-0.31678,-1.0169,1.0329,-0.28781,0.15845,0.15361 1.9238,0.024457,-0.45681,-0.75675,1.1929,-1.0438,-1.0043,0.09063,2.5074,0.66851,1.2925,0.1276,1.928,-0.82383,0.71891 0.68897,-2.1053,1.5098,2.1913,1.1147,1.743,-0.15465,1.7155,0.13214,-2.0891,-0.24779,-0.75251,1.4761,0.039919,0.77026 0.098752,-2.1035,2.0584,1.8559,0.5782,2.6625,1.5503,-1.0884,0.12092,-0.89267,0.1727,-0.19073,1.4182,0.43884,0.084287 1.3056,-0.10751,2.2275,0.3142,-0.28997,1.3455,-0.29977,0.77685,1.2231,-1.0331,0.2499,1.7656,1.8518,0.69954,-0.90763 -0.94608,-1.1663,1.5047,1.3825,-0.20673,0.41996,0.36432,1.4309,2.519,-0.99386,0.040069,-0.68483,0.79776,-0.19125,0.69906 3.2011,-2.1066,1.6844,0.88793,3.4565,0.7597,-0.47633,1.0563,-0.56049,-2.4819,-0.33259,0.87421,1.9497,1.2736,0.18656 -0.080799,-1.8262,1.7132,1.7989,0.013263,2.6007,1.1488,-0.65241,0.25045,-1.1007,-1.2981,0.51783,0.52176,-1.4273,0.70899 1.5031,-1.8312,-2.3157,0.42752,-0.067155,1.1895,1.0132,1.6054,0.53157,-0.32204,-0.063818,1.2952,1.0313,-1.1494,0.51741 -1.5047,-0.17347,-0.8668,-2.1837,0.63046,0.69027,-0.56666,-2.0535,-0.74732,0.81272,-1.1746,0.98211,0.5433,1.8563,0.93756 2.6588,1.2748,-0.6825,-0.62444,-2.3155,-0.35133,-1.1292,-0.1148,1.1199,-1.63,-0.41189,-0.3542,-1.2052,-0.21287,-1.5324 -3.0702,-1.7441,-1.4075,-1.1244,0.23443,0.77317,-2.0274,0.196,0.437,-0.35662,-0.42569,0.31934,0.36595,1.9288,-0.094958 -0.093075,1.3753,0.35045,3.0449,2.2891,-1.1302,0.20264,1.185,0.18523,-1.4137,-1.1697,0.11672,0.098592,-0.52888,0.15975 -2.0064,-0.026747,-1.0979,-1.0227,0.82837,0.24299,-0.95288,0.53632,0.58252,-0.67446,0.22068,0.83572,1.2503,2.4284,0.7664 -3.2076,1.9136,-2.2619,0.22376,0.63165,1.8312,0.86617,2.8439,-0.87034,-0.43851,-0.69417,-0.32279,-0.66305,-0.76505,0.20298 0.54426,-0.66258,1.1763,1.4939,0.062158,2.1902,0.57904,0.28597,1.8369,-0.64954,-0.0052972,0.67735,1.239,0.062372,0.2815 0.054788,3.2376,-2.0245,0.10368,-1.6598,1.1074,-1.353,-0.19186,-2.0106,-0.17761,0.2992,-0.80979,0.7305,0.11578,-0.77546 -3.2949,-1.627,-1.9714,-1.4065,0.54748,-0.23947,-1.579,0.23119,0.88334,-1.8767,-1.0196,0.39963,-0.539,1.1555,0.4932 -2.0274,-3.5052,-1.0125,0.74824,1.8796,0.33752,-0.73177,0.037484,1.1791,-0.1823,-1.1823,-1.2325,-0.16956,1.8961,1.0173 4.2133,-0.033964,-0.52131,-2.6415,1.6337,0.38719,1.083,-0.48843,1.9797,1.8432,1.1395,1.0043,-1.0491,0.069446,0.47361 -1.0133,-2.9382,1.4634,-0.43475,1.621,3.0144,0.90884,0.55083,-0.12622,-0.5699,-0.95479,-1.2564,3.2623,1.4465,0.56895 -2.2979,-3.1819,-1.4551,0.48113,1.1325,0.76714,-0.90962,0.47321,1.3431,-0.28308,-0.74714,-1.0881,-1.2393,1.6628,0.072412 -2.4456,-0.18833,-1.062,-0.42352,-0.25567,0.78269,-1.2253,-0.75613,-0.047185,-0.6785,0.77087,0.96812,0.65304,2.2733,-0.53698 -2.3533,-1.4342,-1.2888,-0.015859,0.87344,0.16442,-2.2513,0.8117,-0.18979,0.57673,-0.33458,0.93638,0.20321,1.948,1.086 -1.3707,2.0135,-1.6942,1.6375,-0.31833,0.86095,-0.36985,0.95404,0.82612,0.50968,-0.44165,1.1553,-0.22708,0.028075,-0.23831 0.073147,-0.30479,3.0421,0.99682,0.17002,0.25193,0.39312,-0.2754,1.4867,-0.24358,-0.12183,1.185,0.86145,-0.66269,-0.22769 -0.86147,2.6109,0.20299,0.9355,0.042417,-1.1141,-0.50775,0.59153,1.6158,-0.79343,-0.56487,1.4959,0.5995,0.43923,-0.19909 -0.85629,0.95973,1.8082,-0.83124,-0.95577,0.95084,0.48261,0.033977,2.0737,-0.33996,0.26452,0.020826,1.1897,-0.91268,0.7675 4.7692,-0.22945,-0.73909,-0.36895,1.4012,1.4543,0.9883,-1.8864,-0.26582,-1.1542,0.68768,-0.97498,-0.58413,-0.23361,-0.68036 -3.1209,2.0985,-0.54222,0.21781,-0.39983,0.63024,2.0674,-0.080789,-0.6722,-0.064172,0.46461,0.10086,0.57323,0.13315,0.39098 -2.2191,2.4484,-0.082631,0.72392,0.19047,0.51083,0.74841,1.6982,-0.21855,2.1785,-0.11073,1.5084,0.048702,-0.54241,0.38562 -0.18998,1.1079,-1.2172,2.595,1.5404,0.020055,-0.091268,-1.0728,0.6576,-1.8545,-0.95499,1.0548,0.89719,0.067433,-0.055154 -1.1193,2.9047,-1.4796,1.2308,0.95125,0.22916,-0.80964,1.7445,0.97005,0.26773,-0.95546,0.72223,-0.17805,0.019305,-0.82152 -3.0399,1.5013,-1.8326,0.0078012,-0.20735,0.98029,1.8072,0.54457,0.27607,-0.062291,0.2245,0.89679,0.29456,-0.71269,-0.33687 1.1759,2.6139,-0.10434,0.58908,-0.53079,-0.14891,-0.62379,-0.92965,0.62746,0.2351,-0.99072,1.0027,1.4199,-0.40859,-0.68817 -1.2999,2.8504,-0.14806,1.3055,-0.040161,0.45266,-0.55142,1.535,0.22924,1.4475,-0.55134,1.2661,0.38181,-0.47017,-0.15331 -2.4119,2.9141,-0.9017,0.55313,-0.48913,2.1604,0.24963,1.3781,-1.0877,0.067103,0.041746,1.618,-0.3825,-0.064085,-1.1042 -1.9015,2.176,-0.765,1.2132,0.07596,-0.81466,0.87452,2.0653,0.76837,0.62942,-1.0791,0.6056,0.43623,-1.0969,0.84029 1.6172,2.0666,0.34715,-0.17605,2.3909,-0.86992,-1.4511,0.045139,0.99525,0.45241,0.083227,0.50516,1.6853,-1.9565,-1.6846 -0.86382,4.2723,0.68073,-0.23482,0.57771,0.24038,-1.8344,0.53123,-0.71672,0.36644,-0.1077,0.60646,0.96807,-0.22352,-0.71139 -0.31814,2.6803,-0.67518,1.096,2.812,-0.98132,-1.2027,0.75585,0.54016,1.1157,0.19497,-0.094669,0.34102,0.30631,-0.91188 -0.19171,2.1708,-0.095459,2.2905,1.0913,0.17762,-0.41101,0.41419,0.412,0.66455,-1.3032,0.87594,0.90003,-1.4785,-0.26413 -1.6981,2.2829,0.23205,2.0649,1.4696,0.43874,-0.051305,-0.31439,-1.0048,1.1741,-0.28001,0.91291,-0.87368,-0.41257,0.14591 0.15983,3.3622,0.74027,1.6199,1.8062,-0.76492,-1.4198,-0.39594,0.12854,1.51,-0.37168,0.68002,-0.27052,-0.084131,-0.83721 -2.5266,1.4482,-0.16862,-1.2792,0.83621,1.8764,0.45002,-0.9196,-0.86223,-0.88429,0.68202,-0.4287,-0.58101,0.50429,-1.3099 1.8395,2.3123,2.0843,-1.5257,-1.0839,0.25668,-0.40081,0.63242,0.30084,-0.85348,-0.78228,0.01367,-2.7052,0.62114,0.44433 4.3504,0.50367,1.0154,0.29986,1.8356,1.6587,-0.090803,-2.1847,-0.37705,-0.74124,-0.51251,-1.1405,-0.36107,0.94081,-0.21146 1.3315,0.13866,-1.0166,-1.2443,0.55997,0.12418,0.6877,1.5554,-0.22947,1.1527,0.10647,1.2211,2.3966,-2.4665,0.09351 0.67201,3.0336,1.699,-0.21461,-1.0396,0.47345,-0.35921,0.39701,-0.53989,0.79549,-0.87311,-0.14593,-2.3188,-0.41793,0.88257 1.408,3.2872,0.25387,-1.0945,0.016573,0.11117,-2.4,-0.56429,0.49141,0.30682,-0.014587,-0.28786,-0.38263,-0.54125,-0.23648 2.9271,-0.14542,1.1877,0.74664,0.12056,0.58629,-1.8705,0.066357,1.3536,0.77138,-0.33171,0.99052,0.75696,0.7031,-1.032 -3.1176,-0.17529,1.0361,-0.967,-0.5885,-1.4901,1.0499,0.072383,0.2987,-0.61586,-0.10965,-0.43075,0.54967,-1.9367,0.77884 2.3359,2.5442,1.8591,-1.7735,-0.6993,0.73696,-1.1621,0.26778,0.16864,-0.91208,-0.18241,0.33703,-1.5959,0.58554,0.90996 -2.8922,-1.1782,-0.37602,0.50544,1.8438,-1.693,1.8158,-1.6184,0.54086,0.81568,-0.69414,0.29047,0.77688,-0.43976,-0.56919 0.52908,2.6025,-0.7953,0.3911,-0.58923,0.48582,-1.7577,-1.1105,0.7654,1.0749,0.70712,-0.13608,0.17069,0.5436,-0.89542 2.2402,-0.64933,0.82169,0.20589,0.7022,3.5446,-0.85049,-1.2335,-0.3185,-2.2864,-1.5496,0.46408,0.72248,0.35269,-0.96399 2.1404,1.2427,-1.0102,0.24919,2.4805,0.40476,0.66088,-2.7889,-0.29985,1.2013,1.1469,-0.13973,0.31511,-0.68039,1.3032 3.9549,1.7619,0.36435,0.45362,1.2639,0.34757,-0.022544,-1.3094,0.4136,1.2466,-0.51946,-0.42596,-0.85796,1.1408,-0.65042 -3.2906,1.67,-0.12957,0.52505,0.41311,1.4427,0.50957,2.3915,-0.48585,-1.2325,0.13469,0.34023,-0.073158,-0.49516,1.2249 3.059,0.50213,3.4343,-0.75059,0.20413,0.90755,1.2854,0.54424,0.8696,-0.15497,-1.4662,1.2913,-2.1428,0.79147,-0.9854 -0.15422,3.7929,0.62647,-0.21334,-0.84252,1.1033,-0.72783,-0.59236,-0.80505,-0.926,-0.1339,1.0187,-0.40406,-0.048344,-0.060229 3.6558,2.3449,0.13354,-1.9265,2.1384,-0.6239,0.15355,-0.52861,1.1331,1.1501,-0.49391,0.75208,0.79361,-0.2278,-1.9459 2.4033,1.3194,-0.44261,0.31581,2.5265,0.6578,-0.34571,0.13437,0.36256,-0.18654,-0.51743,1.1675,1.1427,-1.6451,-0.61567 0.016129,3.5874,2.0853,-0.97563,-0.9164,0.68046,-0.56858,-0.064216,-1.1319,-0.34189,-0.016104,0.51106,-1.1744,-0.98324,0.83092 2.7306,2.1423,1.9539,-0.42228,-0.060333,0.30873,-0.91012,-0.37038,0.97132,-0.31315,-0.44213,0.069309,-2.6386,1.0287,0.9765 1.564,3.0259,1.0906,-1.4505,-1.3196,0.69211,-0.2066,0.5947,-0.13184,-0.56647,-0.26868,-0.1662,-1.6303,0.61156,0.71266 0.86514,0.87511,3.2561,-1.544,-0.97669,1.2424,0.48398,0.53319,1.9349,-0.78067,-0.75063,0.45806,-1.2317,0.15475,0.82333 -4.3398,1.189,-0.77116,-0.77124,0.74948,1.2232,1.8118,0.22724,-0.16262,-0.76784,0.52908,-0.84923,0.57148,0.41001,-1.1358 3.497,-0.75046,-2.1415,-0.2721,0.81227,3.0203,0.1692,0.061857,-0.25354,-1.5416,0.10415,-0.80485,-0.59871,-0.54859,-0.93176 -1.4648,2.5692,-1.6795,0.80999,-0.28721,2.5391,-0.35562,0.71238,-1.0431,-0.32301,-0.24023,0.38494,0.26303,0.7203,-0.97388 -4.2164,0.84559,0.064368,-1.2803,1.2452,1.4038,1.1914,-1.4292,-1.0578,0.19577,0.59047,-0.62928,0.24401,0.56574,-0.93335 -2.2988,2.152,0.16713,1.0055,0.26627,-0.37436,0.58439,2.2434,0.5164,0.58566,0.56364,-0.077306,-0.092511,-1.2212,0.69599 1.5182,2.3125,0.020857,-0.36847,-0.41216,-0.29502,-0.97926,-1.2484,1.3276,0.24193,-1.1553,0.3434,-0.96938,-1.3389,-0.81809 -4.0258,1.4485,-0.24954,-0.73716,0.75906,0.96122,1.8877,-0.43242,-0.47202,-0.82712,0.71495,-1.1833,0.9687,-0.11356,-0.53866 -0.027638,2.8342,3.0375,-1.9206,-0.44571,0.35124,1.3955,0.23271,-0.31888,-0.060116,-0.59901,-0.20825,-1.2033,-0.63505,-0.34579 -0.94138,1.6824,2.8543,1.0207,-0.15884,-0.71251,0.056086,0.016482,1.4304,0.12495,0.40824,1.2364,0.10366,1.1158,0.66399 -2.0477,2.198,1.4972,0.30315,-0.15782,-0.57155,0.50992,1.148,1.487,-1.1043,0.49486,0.54166,0.7824,0.16214,0.93254 -2.4419,0.96556,3.2956,-1.8158,0.33886,-0.74781,0.98734,-0.065394,-0.25992,-0.026888,0.15633,-0.80339,-0.04049,-1.0325,0.66224 -3.325,1.4633,0.42198,-1.4515,0.025421,0.64572,0.89341,-0.35821,-0.087286,1.5716,0.50388,-0.86181,0.7912,-0.59674,-0.29265 -0.93571,1.756,-0.92619,1.3295,-0.99047,-0.70886,-0.032203,1.2916,1.0004,-1.6694,-0.27191,0.3446,0.62558,-0.75025,0.99964 -2.5628,-2.4278,1.7464,0.043377,1.0651,0.04309,-0.12652,-0.1113,1.7088,0.41144,0.091327,-1.2553,-0.15934,0.75362,0.66235 2.8769,-0.91395,-2.2241,-0.74279,1.7035,2.8733,2.1347,-0.40982,-0.14318,-0.39951,0.45626,1.3382,-0.8847,0.29881,0.54059 -1.9632,1.5761,-0.65281,-0.13202,-1.4403,0.63716,1.2415,-0.76116,1.0483,0.68374,0.32176,0.38908,1.0751,-0.31478,0.21283 -3.3907,-2.2078,0.072412,-0.52687,1.4553,-0.55672,-0.70253,-1.2077,1.8596,0.25943,0.16417,0.18426,-0.82666,1.1047,-0.17271 -2.7878,1.1707,1.4589,-1.1707,-0.13591,-0.063502,0.83502,-0.55365,1.2501,0.80781,0.97226,-0.45516,0.77338,0.38389,-0.22585 -3.5168,-0.70656,0.034898,-1.629,0.52333,-0.29256,-0.064411,0.049363,1.7838,-0.72213,0.73877,-0.55836,0.091881,1.5543,-0.52694 2.0697,0.85605,0.51037,1.4516,2.1399,-0.20247,-1.5663,-1.8655,1.2218,0.13826,0.22115,-0.14467,0.40287,-0.23103,0.55816 -3.2096,1.4013,1.0688,-1.4788,0.38549,2.0552,0.97029,-0.53354,-0.79809,0.38085,1.1348,-0.81706,-0.22599,-0.1829,-0.71403 -2.6345,-1.6119,-1.7661,0.71548,0.82891,-0.28725,0.41886,-0.897,1.6138,-0.74255,0.35332,-0.36574,-1.316,0.38489,-0.37511 2.8354,2.1188,-1.4627,0.13346,1.6635,0.55489,0.587,-0.89231,-0.038511,0.23176,-1.1763,-0.30026,-1.1775,-1.8756,-1.4771 -1.4057,2.4495,1.5991,0.0694,-1.1101,0.3912,0.24392,-0.46887,0.56287,0.084407,0.56675,1.5699,0.5903,-0.59795,0.53499 0.67096,-0.34834,2.1631,-0.035265,0.65326,0.38203,0.48992,1.6601,1.2781,-1.8816,-0.51392,0.71888,1.6982,-1.271,-0.20132 -0.59765,4.3622,0.43486,-0.086612,0.42803,0.61615,-2.0929,1.4618,-1.3502,0.21436,0.55212,0.53844,0.06629,-0.24532,-0.99674 -1.2086,-1.4434,-0.33467,-2.6007,-0.6663,1.9149,-0.86241,-1.978,-1.0789,-1.0539,-1.2633,-0.35635,-0.57049,1.1731,0.28876 0.45264,2.9145,1.0781,2.1916,0.77902,0.49654,0.443,-0.92095,-0.77553,1.6857,-1.7637,0.78115,-0.61181,0.012164,0.5646 -0.04562,3.8658,0.81674,0.12737,1.2008,1.0765,-0.42936,0.20334,-1.344,-0.87734,-1.1617,-0.18718,-0.87053,-1.7023,0.079698 0.10339,3.4013,-0.90659,-0.10638,1.0144,0.38778,-1.7413,0.77483,-0.87668,-0.97527,-0.78458,-1.0134,0.79477,-2.003,-0.51647 0.66113,4.2338,1.0634,-1.3626,1.0438,-1.4851,-1.7124,1.2144,-1.8658,0.05768,-0.29149,-1.1946,-0.8471,-0.90751,0.021778 -1.3563,2.0589,-0.34701,0.54411,-0.77862,1.9422,0.61383,0.34069,1.168,-0.75974,0.067044,0.11242,1.3613,-0.51887,1.1135 2.9935,1.4706,0.45077,-2.4597,1.3058,0.51476,-0.67055,1.1765,-0.40263,-2.8399,-0.19876,0.28442,0.45489,-1.408,-0.36901 -2.6972,1.1587,-2.0455,0.12356,0.22572,2.6556,1.7924,0.17768,-0.12746,1.6576,-0.15975,-0.3931,-0.61744,-0.57406,-0.82959 -1.816,2.5138,-0.99653,1.1943,-0.24984,0.89327,1.5336,1.005,0.089608,0.13489,-0.55512,0.87227,0.54997,0.71331,0.081452 -1.8567,2.9812,1.2318,0.09277,0.10259,-0.77061,0.061097,1.1843,0.62633,-0.86819,0.021655,1.0133,1.0507,-0.92731,1.1852 0.50058,1.264,3.7847,1.0106,3.2204,-1.4984,0.32995,-0.68674,-0.6588,-0.44289,-0.81635,0.6712,-0.409,-0.59503,0.26902 -1.457,0.59031,0.64713,-0.17216,-0.8079,0.35459,0.33257,0.61312,2.0678,-1.3523,0.53072,-0.25114,1.1903,-0.97441,1.0414 -3.1548,0.88227,-1.4358,-1.2644,-0.34733,0.66211,0.61465,-1.6964,0.1137,-0.047759,0.2503,-0.095364,1.446,0.53451,-0.5187 -3.2165,-0.79846,-2.3254,-1.3524,0.93889,-1.3414,-1.1406,-0.15982,0.95442,-0.93957,-0.75284,1.1316,-0.18053,0.57689,0.40091 -1.595,1.984,1.8423,0.061213,-0.35672,0.41535,0.37831,0.020445,1.0432,-1.1056,0.7551,0.75383,1.1036,-0.29688,0.83828 0.1925,2.9373,3.0534,0.11587,1.3077,-1.3378,-1.1264,0.85291,0.14033,0.48721,-0.15117,0.67832,-0.49324,-1.214,0.73173 -3.2474,0.2303,-2.3877,-1.769,-0.4703,-0.8748,1.2452,-0.28399,0.24009,-1.1502,-0.75014,-0.95652,-0.48337,-0.58307,-0.59392 -1.6042,-1.3398,-2.8267,-0.35853,-0.31542,0.51245,-1.313,1.3177,-1.3248,-1.4941,-0.88248,-0.27255,-0.81955,-0.16293,1.8198 -3.6014,-1.8572,-0.53619,-1.7905,0.2256,-1.2583,-1.1082,-0.69588,1.1127,-1.085,-0.52379,0.14781,0.049411,0.49761,0.44363 -1.1933,-3.6132,-1.0859,-0.43278,1.4505,-2.0045,-1.1949,1.5191,-1.6238,-0.19831,-2.0726,-0.18143,-1.2578,0.24342,1.6742 -2.4273,3.0367,-0.6558,0.61326,-0.80091,1.0176,0.38476,1.7897,-0.63541,0.061765,0.14858,1.4027,0.069494,0.022111,-0.55512 -3.0927,-3.2799,1.8183,-0.20306,1.3711,-0.59824,-0.59961,0.34514,1.2325,-0.033377,-0.33352,-1.0379,-0.80387,0.81249,0.074861 -2.7487,-2.8921,-0.48274,-1.2016,1.0063,-1.5771,-1.9155,-1.2465,0.88657,0.21085,-1.5885,1.0277,0.082854,-0.21777,0.81797 -0.29234,0.21163,3.5537,1.416,2.2672,-1.2578,-0.12227,0.65919,0.92344,-1.0972,-0.26917,1.2929,-0.053259,-0.33667,0.62751 -3.6871,-0.72606,0.14395,-1.5543,0.43018,-1.8853,0.33184,0.7493,0.6897,-1.6435,0.22277,-1.6306,-0.24539,0.036416,-0.0057021 -3.6633,2.872,0.12017,-0.18964,0.49204,0.27728,1.1669,3.3401,-0.49965,-0.92721,-0.51552,-0.56785,-0.39148,-0.096755,0.2497 -3.2657,-1.349,-1.0326,-0.35251,0.96968,-0.78686,-0.28857,-1.1709,1.5056,0.11748,0.24668,0.69613,-1.1521,0.85704,-1.2659 -2.3182,1.6188,1.933,-0.88396,-0.67759,0.71556,1.3093,-1.424,0.35284,0.81724,1.0516,0.48401,-0.37881,0.88055,0.097137 3.0986,-0.011972,-0.15363,-0.98792,3.018,-0.050734,0.48328,-2.6627,0.17184,1.3323,0.95767,0.26638,-1.4953,-0.35477,1.514 0.37616,3.8004,1.2604,-1.6082,0.65031,-0.7615,-1.014,-0.096439,-0.3105,-0.38409,-1.1398,-0.1945,0.46229,-1.6222,-0.11631 0.73233,4.5718,1.7395,-1.4904,0.45071,-0.011409,-0.79522,-0.073846,-1.1251,0.028376,-1.2599,0.56824,0.098,-0.50438,-0.70196 1.7653,2.822,1.9881,0.78377,1.805,-0.72574,-0.76448,-1.5067,0.18131,1.0753,-1.3438,-0.000781,-1.3582,-0.62166,-0.32018 3.4604,0.74252,1.939,0.31527,4.1265,-0.52441,-0.25801,-0.99385,-0.28081,-0.46254,-0.59789,0.65144,0.8016,-1.0989,-1.3342 3.1227,1.3373,1.7917,-0.80063,3.0777,-0.73298,-0.30913,-1.0467,0.80794,1.0341,-0.33068,0.30887,-0.57842,-1.4156,-0.2464 1.5902,0.23957,-1.7595,-3.1897,-0.93631,1.5296,0.80964,1.5434,-0.17671,0.31466,0.68516,2.0941,-0.19163,-0.87113,0.085618 1.0364,1.3136,-1.8957,-0.018707,-0.27864,0.99724,-1.1091,-1.097,1.8475,1.6466,1.4898,0.2157,0.84807,0.67374,0.24206 2.0026,0.53471,1.1189,0.61525,2.9466,1.3,-1.1325,-2.4451,-0.14923,-1.6201,0.057917,-0.50267,0.72817,0.25566,0.65886 0.44628,3.081,0.92895,1.4431,0.91078,0.32169,-0.39443,-0.71671,-1.5459,1.5504,-1.1691,0.25814,-1.2962,-0.722,0.47164 -0.7347,2.0914,3.3567,0.70008,1.246,-0.75158,0.19754,0.21094,0.32015,0.6403,-0.65834,1.2797,-0.69788,-1.4993,0.68799 2.6126,2.6008,0.014568,-1.9263,0.91142,-0.52291,-2.1671,-0.81463,-0.2378,0.97706,2.2281,-0.59138,-1.1789,-0.022265,0.0030061 1.5821,2.7156,-0.17536,0.96234,1.8124,-0.32607,-1.5167,-1.2754,-0.073298,0.85353,-0.26264,-0.54911,-0.45881,-1.2937,0.23222 4.5649,-1.2175,0.48366,-0.479,3.3985,1.1223,0.070813,-0.071397,0.85812,-0.48887,-0.42372,-0.55386,0.76212,-1.0108,-0.11833 -3.2155,0.76236,-2.1355,-0.52952,-0.35946,1.1724,1.2909,-1.2965,-1.7277,0.72517,1.0662,0.63368,-0.0064899,0.059522,-1.7986 -0.86629,4.2192,-0.18838,-0.041339,0.62472,0.73195,-1.2344,0.9195,-1.4651,-0.69759,-0.86942,-0.30892,1.5311,-1.135,0.21365 0.11674,3.4827,0.82681,0.67873,2.8733,-1.1167,-1.4829,0.70458,-0.16571,1.342,-0.54075,0.0088186,0.16922,-0.96078,-1.0262 -2.7046,-1.9574,1.8421,1.2411,2.7567,-1.8634,1.7591,0.29711,0.26401,-1.1201,0.30243,-1.2211,-0.64665,-0.33804,0.96421 -2.4985,1.5846,2.491,-1.5705,-0.72004,0.39528,1.4486,-1.8862,-0.13813,0.24208,0.8187,0.22236,-0.31304,0.46105,-0.032656 -1.9166,-2.5222,2.5493,-0.90859,1.3475,-0.4229,0.63714,-2.5802,1.3152,0.75368,-0.85937,0.097825,0.20403,-0.038279,-0.45593 -3.6483,1.0729,-1.6822,-0.28653,0.45657,1.9682,1.3969,0.22774,-0.13227,0.38765,0.52018,-0.6231,0.9265,-0.55766,-0.46801 -3.4334,-2.207,0.75153,-0.22085,0.70216,-0.55547,-0.051258,-0.76864,2.1797,-0.18124,0.39335,-0.58846,-0.54988,0.94127,-0.358 -3.4754,-0.16387,0.32032,0.096399,1.488,-0.76876,1.3702,-0.99997,1.2104,1.5434,0.48354,0.020823,-0.25703,0.5673,-0.65753 -3.1992,-1.2725,0.16336,0.79611,1.0557,0.048706,0.7573,-1.3647,1.0008,-0.21122,1.2489,-0.19455,-1.4429,1.4745,-0.83219 1.7055,0.27338,-3.0533,-0.94598,-0.90487,0.68362,1.0861,1.7448,0.49287,0.66401,0.69145,0.93196,0.60546,-0.80705,0.15925 -0.32721,0.73878,1.5624,1.4323,0.56783,0.95456,-0.61553,0.28281,2.3872,-0.16475,1.1005,0.95408,0.14491,-0.20769,0.78837 -0.88234,3.8157,0.68485,0.30056,-0.85638,1.1868,-0.29628,0.70577,-0.82153,0.50196,0.042943,1.0475,-0.09607,0.40649,-0.077412 -0.92601,-3.6758,2.4126,1.8248,1.6561,2.3536,0.20685,-0.15716,-0.64187,-0.23496,0.46962,-1.2526,0.85112,1.0673,-0.042929 -3.5482,-0.42898,1.5306,-1.5796,0.71741,-1.0444,0.77542,0.67454,0.52899,-0.30718,0.51777,-1.2462,0.40523,-1.5555,0.69397 -1.3343,-1.5774,2.9468,2.0404,1.4765,0.68249,0.38278,-0.8645,-0.14727,-0.92411,1.4572,-0.03635,-1.0099,1.636,0.31645 -2.9448,-2.9376,0.85101,0.81479,2.076,-0.30006,0.72035,-0.36906,1.0145,-1.4008,0.39912,-1.4875,-1.2344,0.77125,0.35321 -1.0102,-2.4827,2.5502,1.9131,0.70576,1.9827,0.30035,-1.1357,0.19518,-0.097333,0.67497,-0.79453,0.22495,1.2651,0.34552 -2.8473,0.27252,-2.7507,-0.50783,1.4378,0.82919,0.1591,-1.8608,-0.18529,0.28571,-0.79884,0.8621,-0.3331,-0.81425,-0.62602 -2.6756,-1.4958,2.437,0.68134,1.7191,0.0029323,0.70109,0.55813,1.4703,-1.3464,1.0302,-1.1632,-1.6117,1.2422,0.46546 -1.5417,2.1778,2.0125,-0.20565,-1.0679,-0.77944,0.74966,0.28752,-0.68625,-0.0028409,0.51123,0.51343,0.5549,-1.6427,0.97098 -3.1638,1.6306,-1.5148,-0.087543,-0.29278,1.4876,1.2366,0.75071,-0.5159,0.57902,0.22913,0.012481,1.1723,-0.59547,0.53385 -1.7049,-1.79,2.4138,1.3924,1.89,1.4994,0.70251,0.13093,0.52373,-1.664,0.89192,-0.83641,0.18856,0.92327,1.1754 2.2995,-1.3012,2.6666,-2.955,1.8931,0.57401,0.59098,0.92749,1.1849,-0.55558,-0.11695,2.2355,0.89572,1.2003,-1.5997 -3.3022,1.6782,1.3889,-0.13828,0.64155,0.15632,0.78826,0.67895,0.73733,1.0324,0.82878,-0.56296,0.33048,0.96686,-0.41146 -0.3784,1.9232,-0.80582,1.9934,-1.2921,1.6349,0.41287,-0.83331,-0.029784,0.68109,-0.12871,0.24909,-0.78441,0.089368,1.0059 -3.7435,-0.088011,-2.6289,-1.3148,1.1124,-0.12767,1.3782,-0.91631,0.47062,-0.8468,-0.94963,0.080038,-0.21426,0.33169,-1.1875 3.7466,0.55495,0.60281,-0.83823,3.896,-0.40772,0.81546,-2.9208,-1.3921,-0.0075902,0.53766,-0.92189,-0.61952,-1.1043,0.92044 -3.5095,1.3981,-1.6422,-0.50792,0.28361,0.71511,2.2454,1.0579,0.56653,-0.076757,-0.51586,-0.20203,-0.6099,-0.5876,-0.54061 -3.4813,0.58476,1.7048,-1.2161,0.20811,0.20442,1.3921,-1.2204,0.59383,0.02012,0.93478,0.84999,-0.83919,0.82207,-0.223 -4.5877,1.3166,-0.30789,-1.1077,1.1747,-0.41021,2.1557,0.89934,-0.17276,-0.53504,0.30822,0.2469,-0.70833,-0.075109,-0.61568 -2.6054,2.8844,-0.85087,0.10115,0.081249,1.6577,0.8835,1.4283,-1.1475,0.93202,-0.55999,1.2644,-0.33327,-1.1825,-0.21649 -0.95872,0.81741,1.3953,1.3039,0.61815,0.9732,0.42217,0.91693,1.2073,1.209,0.18343,-0.29575,0.20215,-1.1152,1.3596 -1.3535,1.7924,-0.94769,0.58152,0.11268,1.5853,0.39804,-0.84983,-0.87235,-1.6367,0.36061,0.0093395,0.0067506,1.2781,-0.68234 0.55963,3.1369,2.2789,1.3764,1.9449,-0.65177,-0.7907,-1.3527,0.026138,0.60327,-0.6012,0.82287,-1.2215,0.62119,-0.06766 0.84504,2.0845,3.4431,1.6461,2.176,-0.62133,-0.32237,-1.1464,-0.45161,0.59345,-0.25529,0.57446,-1.6489,0.016976,0.63129 -3.4759,1.2632,0.97228,-0.29206,0.86177,0.17277,1.4925,0.83058,0.83713,-0.49532,0.77272,0.5818,-1.5039,-0.030727,-0.34401 -0.14529,3.3881,-0.60942,-0.73091,1.5565,-0.59787,-2.2543,1.077,0.68022,0.078561,0.70487,-0.49051,1.5471,-0.82313,-0.4464 -2.1038,3.0063,0.95096,0.31074,-0.19835,-0.44076,0.77325,0.63059,0.050107,0.24417,-0.41731,1.2111,0.32191,-0.33795,0.47278 -0.06372,2.0283,1.7033,0.58626,1.9803,-1.8315,-0.98334,1.7282,0.47643,0.23531,-0.40589,0.66603,0.29054,-2.0156,1.046 0.16357,1.5671,-0.08935,0.32986,0.30058,-0.70603,-1.4704,0.94012,1.7944,-1.3925,0.13682,0.58552,1.2629,-1.0332,0.50463 -2.4497,1.3582,-2.5942,0.016857,-0.78605,0.37711,1.616,1.3486,1.0182,0.12818,-0.63642,-0.58215,-0.037939,-0.44246,-0.18738 -2.0227,2.1142,0.82346,-1.0577,-0.17693,1.5731,1.0185,0.80325,-1.0353,-0.14352,0.59799,-0.65227,0.76573,-2.2204,1.1117 3.4662,0.48296,-1.9106,-1.9386,0.60872,-0.10334,0.88908,0.79485,1.8296,1.4557,1.3874,-0.17735,-1.6456,-0.61049,1.0164 2.7436,1.6688,0.58147,-0.51289,1.7249,-0.10244,-1.4803,-1.8752,0.25278,0.79668,0.99987,-1.4528,-1.6586,-0.48695,0.75805 0.30083,0.72955,2.5778,0.29272,2.0382,-0.93068,0.3023,2.0814,1.1877,0.90991,0.16106,0.61814,0.55993,-0.10927,0.59795 0.8371,2.4366,0.43795,-1.3041,1.65,-1.219,-2.43,0.4696,0.75776,0.72659,0.67736,0.30731,0.69889,-1.6398,-0.060808 0.40244,4.006,1.0204,-0.53292,-0.14386,0.5203,-0.68514,-0.18152,-0.58889,-0.087691,-0.98174,0.97947,0.90709,-0.78853,-0.42737 1.7523,2.2924,0.97304,0.091496,1.8236,-0.97813,-2.0396,-0.9632,0.21238,0.60198,0.54591,0.87846,-0.29314,-1.0777,-0.36721 0.97803,2.4009,-2.303,-2.1405,-0.63697,1.0792,0.60605,1.4579,-0.22492,0.60763,0.74948,-0.99498,-0.26868,-0.48056,0.71616 -2.9319,-0.054011,-2.52,-0.45601,0.59335,-0.6007,-0.045101,-0.48171,1.1058,0.1432,0.0041765,0.62124,-0.63641,-0.58971,-0.65322 -1.6993,1.7483,0.80792,1.2553,1.7433,-1.4663,0.50606,2.0226,-1.268,1.4102,-0.22093,0.62647,-0.86112,-1.6141,1.846 -1.5354,0.79569,0.16139,2.4691,0.063541,0.11603,0.97491,-0.18773,0.52533,-1.0406,0.42271,0.89272,0.3232,-0.36599,0.63329 -1.8506,1.494,-1.438,0.79139,-2.1582,2.189,1.0022,-0.041026,-0.79006,-0.65072,0.77247,-0.045877,-0.15446,-0.57382,-0.076325 -2.0442,-0.52199,-3.3712,-0.22647,0.8945,-0.94405,-0.22734,-0.1507,0.23467,-2.4008,-1.5753,1.4342,-0.99942,-0.18551,1.3829 2.5381,0.3651,0.1815,0.68468,3.0984,-0.75482,-1.1559,1.3666,1.2746,0.4544,0.52052,0.42483,1.2945,-0.93063,0.3388 -2.0873,3.6001,0.72729,-0.14936,0.6262,0.69965,-0.31399,2.1535,-0.93067,-1.446,0.55624,-0.01977,0.60399,-1.4944,1.0548 1.8142,-0.64068,1.0833,-4.488,-0.13786,0.64428,1.2667,0.71835,-2.4646,-2.2778,-0.42812,0.35976,-0.50239,2.7106,-0.47584 -0.71207,0.88001,-0.8376,2.3532,0.10001,1.5027,-0.022,0.61373,0.88953,-1.4878,0.51185,0.36008,-0.065835,1.5322,0.51223 1.4276,1.6873,0.12614,0.70165,1.9966,-1.5948,-1.2762,0.30085,1.521,0.40497,-0.79166,-0.21319,1.422,-1.8209,-0.5115 -0.02494,1.2166,1.1469,0.74193,-0.26269,0.13559,-0.9741,0.772,1.9087,-1.8505,0.3588,0.50969,1.5793,0.38496,0.86437 2.3642,1.0823,2.9811,-1.9539,0.5882,0.17794,-0.48265,1.1876,1.0978,-0.22344,0.013949,0.84492,-1.1076,0.51251,1.2246 2.0782,0.50343,3.2262,0.66306,1.2428,-0.1214,-0.13655,0.57951,1.2186,0.32087,-0.32537,0.58907,-0.7937,-0.33084,1.5353 3.4427,-0.29509,-0.018224,0.010634,2.4489,1.2567,-0.066251,-2.4917,0.96712,0.31941,0.51548,-0.42753,-0.3866,-0.55927,0.38798 1.3232,1.3014,-0.10435,1.1922,0.19231,0.64014,-0.26123,-3.4428,-0.91596,-0.9548,-0.79842,-0.28805,0.027904,-0.092262,-0.15494 0.70147,-0.53669,1.8554,-1.6413,2.188,0.10993,0.63981,0.98922,-1.5026,0.55492,-0.81546,1.159,2.31,1.4894,-0.46392 1.7906,2.8778,-2.3526,-1.4569,-0.75115,1.5452,-1.2952,-0.24496,-0.58864,-0.6707,0.27663,-1.5954,0.087682,-0.89118,-0.52744 1.8383,2.3689,1.2773,-2.4688,1.2133,-0.53464,-0.52137,-0.50517,-0.21647,0.88155,0.17232,0.23719,0.44275,0.25071,-0.52406 2.5345,2.7385,-0.22154,-1.2551,1.2088,-0.76041,-0.94644,-1.4255,0.14759,1.8051,0.72256,-1.195,-1.7014,-0.17847,0.18996 -2.2973,2.2664,1.8875,-0.99807,-0.57469,0.27,0.57545,0.21294,0.31773,-0.59385,0.53914,0.99921,0.17719,-1.2873,1.5089 -1.7261,-1.3411,0.91444,-3.1587,0.42691,1.1183,-0.99342,-0.079525,-0.97349,0.80262,-1.4256,-0.21712,0.37897,1.4997,0.96691 1.3136,2.8956,0.073587,0.16361,-0.78344,0.35357,-0.88334,-0.43887,1.1429,0.76117,-1.701,0.62077,-0.66379,-0.20152,-0.53968 -0.34802,0.74371,-0.32533,1.9651,1.277,0.088019,-0.62504,-0.18628,0.26126,-2.61,-0.48979,-0.3997,1.0673,-1.1126,1.2593 -2.672,-0.75477,1.9998,-1.9128,0.17862,-0.088681,-0.089598,1.2275,1.2857,-0.98041,0.81321,-1.5533,0.89448,0.70923,0.84247 -2.5396,0.017058,2.8338,-3.5134,1.2337,-0.12356,0.6833,-0.14561,-0.76031,0.38523,0.30993,-1.4276,-0.37171,-0.74756,0.47741 0.62445,-0.26411,2.8947,-1.6395,-0.77668,0.73113,1.2318,0.32436,0.9994,0.3686,-0.56262,-0.71814,-0.60745,1.9816,-0.50948 0.48292,0.23414,2.788,-1.9746,-1.6406,2.3103,0.98519,-0.25872,0.83711,-0.85553,0.1037,-0.2407,-0.92065,2.1918,0.20195 -2.3052,1.0552,2.1299,-1.6506,2.4778,1.923,0.93443,0.19796,-1.1234,-1.4137,0.72647,-1.5399,-0.055149,-0.40681,-0.048869 1.4589,2.8068,-0.6638,-1.0007,-0.46776,1.424,-2.6888,0.17347,-0.30411,-0.01294,0.65004,-0.59668,0.41144,0.11673,-0.40036 0.86193,3.3452,0.69262,-0.23665,-0.27461,-0.0060005,-1.2418,0.13199,-0.2282,1.1509,-1.6354,0.25212,0.4899,-1.8729,-0.82663 -1.1104,-1.2195,0.11952,-1.4208,-0.31267,1.4361,-0.91095,-1.2408,0.66038,1.3779,-0.85777,-0.73261,-0.46491,1.327,0.45785 3.9298,0.10388,-1.0233,-1.2319,1.737,-0.65674,1.1768,-0.65664,0.12533,2.4884,0.76077,-0.68767,-2.2198,-1.0274,1.6135 -2.816,1.3592,-2.5591,-0.19205,-0.50643,2.0518,1.2649,0.50452,-0.063635,0.47918,0.19792,-0.43534,0.93051,0.083848,-0.65616 -2.9463,1.7081,0.65967,-1.0137,0.18575,1.2928,0.87478,-0.26225,0.4051,-1.158,0.93391,-0.46162,1.1481,-0.47066,0.041847 -2.1487,0.074562,-2.2966,1.356,0.010768,1.1308,1.4506,0.52539,1.2261,-0.59959,-0.30163,-1.209,-0.98077,-0.3874,0.75549 0.38468,2.584,-0.11642,-1.9707,1.9267,-0.31888,-2.2176,-0.03112,1.0109,-0.65488,1.5318,0.37026,1.3962,0.26097,0.12068 -3.066,-1.656,-1.792,0.087105,0.76004,-1.3436,0.44005,-0.060266,0.53983,-0.59792,-0.86809,-1.9045,-1.64,0.69494,0.033392 -1.4398,0.23619,2.6131,0.32245,1.8446,0.25815,-0.77959,0.99061,1.1107,-1.1146,0.9254,0.30489,-0.91829,1.6345,0.87063 2.0713,-1.1889,1.6424,1.3279,1.6891,2.804,0.39459,1.1891,-0.53768,-2.1198,-1.9039,0.22524,1.0616,-0.48726,0.99582 2.8428,-0.99577,1.1209,-0.064942,3.3086,-1.1387,-0.87029,0.87838,1.1583,0.072853,-0.42444,0.10866,0.56176,-1.0811,0.37053 2.3069,1.4694,0.051853,-0.30596,1.6909,-0.77844,-1.211,-0.51303,1.7401,1.4896,0.36948,0.39517,0.20869,-0.99488,0.23439 4.5312,-0.28366,-0.35103,0.7089,1.5085,1.1617,-0.010234,-1.5328,0.012962,-0.55181,-1.1273,-0.19202,-0.96081,1.3934,-1.7182 -0.30416,2.8961,1.2992,0.027312,1.0964,-0.78122,-2.1286,1.0322,0.90885,-0.45706,0.027183,0.98643,0.8552,0.52532,-0.23098 0.48091,-0.5072,3.4716,-2.7947,1.0767,2.2653,0.84292,2.5616,-1.473,-1.9607,0.021498,-0.24243,1.5341,1.1887,-0.034653 0.58898,0.94785,2.429,1.3757,2.2087,-1.3411,-1.7313,1.3784,1.3996,-0.64919,-0.13011,0.16738,-0.35405,-0.038069,1.3369 -2.7198,-0.31857,1.9081,-2.3069,1.4068,0.81749,-0.34725,-0.54179,0.27566,-0.67024,1.1744,0.075605,-0.57045,1.847,-1.0863 1.0767,1.2521,2.333,0.44998,0.064611,0.79751,1.1956,-0.45071,1.157,-0.53326,-1.3179,1.2867,-0.50922,-2.078,-0.2007 1.852,2.0345,-1.2942,-1.6151,1.8005,-0.34248,-0.83858,-0.04134,0.11848,2.844,1.6982,-0.23423,0.2342,-1.3924,0.84286 1.9222,1.6497,0.63145,1.3896,1.1766,2.682,-1.1462,-1.6566,-0.16546,-0.35495,-0.022826,-0.27107,-0.27228,0.36938,0.32619 4.7901,0.38121,-0.21296,-1.652,1.8653,-0.84864,-0.021957,0.37314,0.98064,0.73602,0.27138,0.1778,-1.8765,-0.87595,-1.3659 -2.8533,-0.35082,0.21277,-0.2568,-0.85086,1.7219,0.31274,-0.19096,1.6523,-1.5774,1.6079,-0.66057,0.63237,0.76692,-0.47122 2.5688,0.80267,-3.1905,-2.8579,-0.61383,0.58098,0.94999,1.5795,0.50699,0.52281,1.8447,0.30736,-0.01355,-1.0464,0.73468 2.1661,0.68385,-0.57454,0.12626,1.6096,1.151,-0.56294,-2.7608,0.18011,-1.4529,-0.12139,0.44876,1.2266,-0.34702,-0.55717 0.35062,3.8252,-0.66081,-0.54082,0.16557,-0.029103,-1.8124,-0.30979,0.10959,0.75145,0.22899,-0.18947,1.139,0.17459,-0.85759 -1.5801,-1.1314,-2.7321,-0.37121,0.53881,1.3555,-1.3337,1.3714,0.84371,-1.4993,-0.97405,1.1626,-0.35638,0.28161,1.5213 -0.94018,-1.5917,0.93007,0.77125,-0.27817,3.1828,0.94926,-0.37368,0.16653,-0.99837,-0.83843,0.32741,1.7462,-0.23402,0.71834 3.4451,0.65095,-0.78545,-1.5855,2.7211,-1.225,0.69147,-0.16254,-0.38335,2.7477,0.45303,-0.29307,-0.72789,-2.1891,0.73225 1.4887,2.7135,0.7286,1.9941,0.84963,0.30398,-1.0943,-0.62631,-0.36998,1.0758,0.1995,-0.08315,-0.35604,-0.10594,0.91708 3.5148,-1.451,-0.074191,-3.6864,3.3671,-1.2186,2.2713,2.6183,-0.75256,-0.10195,1.7222,2.0197,1.391,-1.5803,1.0789 -2.809,1.747,-0.10883,-0.48099,0.17447,-0.60342,0.96749,2.6769,0.4902,-0.69397,0.38166,-1.3329,-0.61716,-0.7385,0.13602 -3.4481,0.23212,-2.52,-1.2002,0.54361,-0.2657,0.16293,-0.11399,0.868,-0.32008,0.0013494,0.16219,0.028008,-0.35356,-0.57545 3.7717,1.9728,0.97905,-1.349,0.83236,-0.49425,-0.036401,-0.33758,1.2466,-0.34896,-0.76193,0.11385,-2.353,0.44079,-2.2244 -2.9563,0.35439,-1.4734,-0.4841,-0.68582,0.85694,0.68575,-0.32984,1.5033,-0.43599,0.86529,0.35383,0.47038,-0.14057,-0.58094 -3.0454,0.49861,-2.6209,-0.92761,0.19407,0.19548,0.23504,-0.11731,0.80609,-0.25489,0.39014,0.70012,0.39944,-0.5037,-0.48865 -3.9357,1.1778,-1.7081,-0.30674,1.1535,1.9637,1.0646,0.68472,-0.93614,0.53363,0.16231,-1.1056,-0.58227,-0.76444,-1.2112 -2.6934,1.9284,2.7684,-1.0538,0.12406,0.20669,0.49886,0.48986,0.1171,-0.064154,0.27424,0.02653,0.18484,-0.53936,0.82732 -2.2888,0.0085252,-3.5607,-0.43904,-0.094329,-0.80305,-0.96985,0.29228,0.289,-1.0469,-1.0008,1.6123,0.059982,0.24646,1.0199 -2.991,0.2395,-2.6446,-0.29129,0.46514,-1.0063,1.9197,0.22756,0.71087,0.11728,-0.88293,-0.67649,-0.82474,0.17227,-0.47928 -2.2997,0.31876,-1.6376,1.7891,0.41746,0.68516,1.0502,0.26416,1.1764,0.53652,0.17048,-0.050232,-0.38596,-0.73303,0.92972 -1.4314,-2.3854,0.59581,-1.5008,0.50838,1.5734,-0.29792,0.28178,0.59703,-0.1586,-1.6964,-1.3506,2.482,1.4967,0.43664 1.2014,1.1626,-3.533,-1.7414,-1.3328,1.0229,1.3283,1.2458,-0.040432,0.23743,0.45854,0.56628,0.13722,-1.11,1.0124 3.5656,0.012441,-1.5576,-0.90122,1.0945,1.7031,1.1367,-1.8573,-0.71469,-2.7607,0.34858,-0.64364,-0.2637,0.56156,-1.7306 -1.298,-1.5792,-0.026093,-0.54171,0.44966,2.5814,-0.32052,0.34896,1.1441,-0.16068,-1.2311,-1.0831,2.3673,1.2641,0.18405 -0.72713,-2.901,1.2067,-1.4339,-1.3476,0.32086,0.14678,1.3111,1.0042,0.060296,-1.3906,-0.59847,2.1501,0.50536,-0.5888 -1.6425,-2.802,0.012089,-0.98915,1.2076,-0.19238,-1.516,0.46797,1.3466,0.75225,-2.3429,0.22721,1.2594,0.80036,0.98508 3.4658,-1.6951,-1.7757,-1.1128,1.2762,3.5806,2.1113,-0.81676,-0.62075,-1.2734,0.47363,0.93786,0.80541,1.1057,-0.34466 2.7251,-0.75856,-2.56,-0.95116,-0.86504,0.91826,1.4474,0.5339,1.81,0.99041,1.6994,2.1443,-1.4013,0.61759,-0.10942 -1.5225,-3.5335,-1.3462,0.2018,1.1817,-1.3611,-1.9,1.1028,0.2196,0.083615,-2.1502,0.64275,-0.15501,-0.50787,1.401 -2.0469,-3.2834,-0.80302,-0.11673,1.1971,-1.5967,-1.2239,1.3022,0.1172,-0.45773,-1.6969,-1.0069,-1.4129,1.0138,1.0449 -1.6231,-4.3063,1.0458,0.14088,1.6898,-0.54094,-0.16995,1.3496,0.28521,-0.22895,-1.6861,-1.6548,0.77775,-0.18165,-0.40111 0.75518,2.5089,-0.71635,-1.9662,0.81832,0.27151,-1.2189,-1.5515,-1.3086,-1.8857,0.89159,-0.063397,-0.26309,1.7909,-0.037527 -2.4666,-1.714,-1.0813,-1.0606,-0.81254,-1.1194,-0.75605,1.1672,0.1661,-0.44895,-0.69848,-1.7247,-0.79904,0.19563,0.15563 3.2803,1.5645,0.47874,-2.2437,-0.42618,1.0148,0.037279,1.2364,0.46068,-2.2043,-0.18943,1.7798,-0.39013,0.60589,-1.0654 0.63183,3.4631,-0.91057,-0.31687,-1.5826,1.2992,-0.98993,-0.67407,-0.78712,-0.21922,-1.0083,-0.28721,-0.14866,0.87624,-0.75421 -0.53976,2.6106,-1.0206,0.91144,0.20505,-0.22179,-1.5937,0.7077,1.3653,-0.018073,-0.41306,0.35561,1.4548,0.11661,-0.56599 -0.96751,-1.0484,0.21478,-0.68378,-1.2082,0.5619,1.0602,-2.6877,1.6223,0.42435,-0.57979,-0.13797,-0.092935,-0.3278,-1.3556 -0.64572,-1.1758,3.374,-0.46607,-0.85291,0.79998,1.1206,-0.61733,2.2032,-0.10912,-0.72828,0.50459,0.30515,-0.67545,-0.52162 -2.7396,-0.16728,1.2333,-0.92129,-0.12863,0.3015,0.20922,-0.37915,1.3435,-0.65959,0.82351,-0.64728,1.1409,-0.29057,-0.1315 -1.7638,-2.1773,-0.32022,-3.0052,-0.53854,1.5744,-0.68349,-2.0408,-2.4307,-0.55429,-1.8883,-0.72187,-2.0833,0.80254,-0.31829 2.0482,-0.71616,2.1197,1.2158,1.0875,2.5657,-0.34777,0.1003,0.99058,-0.62963,-1.2388,1.684,-0.21757,0.13497,-0.63755 -1.4543,2.7882,1.9301,1.1848,0.74721,-0.043132,0.47367,0.2539,-0.60134,1.9534,0.23427,0.8002,-1.2869,-0.60072,0.53607 2.212,-0.71078,3.3355,1.5723,3.7493,0.062174,0.04858,0.95815,-0.096438,-1.5532,-0.84864,1.2141,0.75505,-0.06484,-0.01403 -1.7556,2.5496,1.9432,-0.89987,-0.78652,1.3361,0.75226,-0.69674,-0.67972,-0.56934,1.4173,0.3024,0.16569,-0.083165,0.40922 -2.1015,0.68898,-1.3424,1.1428,-0.57025,0.20237,0.72359,1.0258,1.9093,0.2547,0.19471,-0.23618,-0.089633,-0.59127,0.71746 2.096,2.209,1.4085,0.92426,1.1979,0.56606,-1.48,-1.6005,-0.21885,0.80477,-0.061353,-1.0658,-1.3296,-0.28305,0.46669 4.2205,0.63613,1.411,-0.047335,1.4578,0.20547,0.082013,-0.21168,1.4668,-1.4054,-1.279,0.99114,-1.5541,-0.68403,-2.032 -3.4707,1.714,-1.738,-0.50737,0.18306,0.22659,1.7278,2.4141,0.47702,0.79252,-0.24397,-0.63444,-0.23676,-0.60246,-0.098759 0.58931,0.56602,3.1941,-0.9941,0.89922,0.43598,-0.36898,1.9602,0.83108,-1.4784,0.15422,0.47279,1.9297,-0.37803,0.91668 -2.5645,0.47112,1.0862,-1.5099,0.13397,1.3952,1.0795,-1.4084,0.20707,-0.65872,0.48713,-1.4336,0.75009,-1.3583,0.65298 2.6042,1.4251,-0.51897,-0.55957,-0.89838,1.3664,-1.3484,-0.77047,1.7553,-0.27938,-0.53826,-0.68627,-0.62713,0.80455,-0.15698 -3.7969,0.74879,-2.6715,-1.0578,1.3843,1.0751,0.62284,1.7819,-0.3732,0.94076,-0.40242,-0.59784,-0.36793,-0.50346,-0.79064 0.31921,3.07,-1.3979,0.14994,-2.0709,0.8263,-1.248,-0.68707,-1.2624,-1.4398,0.30464,-0.094923,0.13221,-0.17457,-0.46234 0.14064,2.398,0.63619,0.73378,-1.0094,0.71788,1.1506,-0.12011,0.78783,0.55622,-1.6591,1.3741,-0.64754,-1.6795,-0.1962 -1.1696,-2.4413,2.4457,-2.2807,0.96412,1.2698,-0.62361,-0.4771,0.90186,1.5553,-1.6439,-0.59391,0.42188,2.3266,0.45601 -1.8167,-1.6224,-2.8245,-0.67973,-0.015464,-1.3004,-1.7538,0.87854,-0.41853,-0.92041,-1.44,0.94275,-2.0047,-0.020737,1.63 3.1039,1.2955,-0.12902,-1.5604,0.86412,0.26454,-0.57724,-0.59643,0.84644,0.62096,0.3554,0.32371,1.1534,-1.4114,-1.6875 -2.5491,-1.3408,-2.2335,-0.8903,1.6111,0.61371,-1.4673,0.52741,-0.22012,-2.1383,-1.1149,1.2129,-0.49801,-0.64813,1.8013 -1.2163,-1.5349,1.3192,1.0932,0.22254,2.126,0.43489,-0.47662,0.82135,-2.1303,0.81585,0.099582,1.6276,-0.2122,0.68786 -2.345,-1.2518,-2.6398,-0.53292,1.0005,0.50589,-1.4637,0.64868,-0.27636,-1.7625,-1.1969,1.0156,-0.35477,-0.6734,1.5995 -0.58708,-2.9834,-0.79003,-0.62099,0.25478,-1.6455,-2.2029,1.8069,-0.47802,0.072593,-1.358,0.9985,0.054761,-1.2082,1.7651 3.9103,1.5107,-0.26551,-2.175,1.0471,0.1432,-0.76389,0.54782,0.42566,1.713,0.41372,-1.0679,-0.61954,0.41825,0.16446 -2.306,-2.5135,0.26561,-2.6578,0.99455,-0.72666,-1.5099,-0.34971,0.12595,-0.33442,-2.2272,0.32801,0.48505,-0.95635,1.2422 -0.59871,-3.9915,-0.77657,-0.32381,0.94145,-0.56113,-1.1243,0.96033,-0.29526,-0.18732,-2.4211,0.084269,-0.16989,-0.93206,0.65668 2.4613,-0.756,1.8812,1.6046,1.1668,2.6838,0.25833,-0.75912,0.17408,-1.7853,-1.319,1.5316,0.40005,0.68936,-0.43669 0.62057,4.0693,-0.97098,-0.85745,-0.71834,0.72225,-1.7712,0.70308,-1.4029,0.54877,-0.90485,-0.75788,-0.39655,-0.18189,-0.51224 -1.7189,-1.4269,-0.41792,-1.631,0.45264,0.31251,-2.1665,-0.33286,0.794,-0.41452,-1.1831,1.1759,1.0026,-0.32411,2.4849 5.3631,-0.95939,0.65411,-0.93145,1.1646,1.1566,-0.88868,0.45127,-0.20037,-0.26553,-0.79123,-0.67518,-2.0797,-0.91548,-2.0546 -0.43751,-2.823,1.8778,-1.9124,0.43439,1.407,1.1613,0.91783,1.2858,0.50273,-2.0804,0.046446,0.7764,1.6669,-1.562 -1.8167,-1.4116,-1.5996,-0.5817,0.12551,-0.090055,-2.0257,0.46189,-0.024283,-1.1944,-0.46885,1.1467,0.036939,-0.75167,2.4098 -1.0191,2.3186,0.64199,-0.46918,-1.5391,1.4107,0.46555,-0.12477,0.68722,0.36781,-0.45076,0.89624,-0.45754,-1.1532,1.2934 -1.9783,0.22163,1.6821,0.5369,-0.67713,0.3795,1.2429,-1.3838,1.765,1.095,0.32333,0.23305,0.88932,0.66794,-0.27436 -1.1941,3.3763,-1.6818,0.11488,-0.02271,1.2618,-1.3788,0.48481,-0.34264,-0.29343,0.16067,0.73397,0.9092,-0.43761,-1.14 -1.9212,-1.7063,-1.3987,-1.2933,0.13703,0.7222,-2.1935,-0.053137,0.65045,-0.17656,-1.7343,1.0811,0.80422,0.10902,2.3446 1.3656,-0.26699,0.077199,-2.691,-1.6569,0.92666,-1.2729,-0.71221,-1.3078,-0.87851,1.5479,0.99041,-0.31013,2.0596,0.45577 -2.7331,-1.9402,-1.7243,-0.11044,1.2107,-0.45516,-1.5539,-0.64323,1.6083,-0.49055,-0.63465,1.0915,-0.89573,1.3859,0.73398 -3.0081,-1.2098,0.44712,-0.81333,0.051972,-1.0516,-0.078888,-0.85401,2.1165,-0.14232,0.28047,-0.28981,0.69975,0.24654,-0.57133 -2.5822,-0.96977,-0.52171,-1.7603,0.55761,0.12405,-1.4887,-2.6188,0.46741,0.78636,-0.46984,1.7428,-0.45999,1.1263,0.33996 -2.7067,1.8415,-2.156,0.68707,0.1518,1.8643,2.285,1.0184,0.32648,0.36587,-0.53589,-0.35685,-0.16277,-1.3983,-0.057922 3.965,-0.10496,0.77298,-1.5052,1.874,0.46937,-0.92277,-0.40396,1.6811,1.5619,0.34095,0.22557,-0.015002,-0.85167,-0.54093 -3.3103,-1.5255,-0.35225,-1.2439,0.23365,0.28472,-0.86792,-0.56142,1.5272,-0.39348,0.50478,0.16186,-0.35707,1.678,-0.8191 4.4286,0.10402,-1.3581,-0.16044,1.027,0.73297,1.2877,-0.95006,0.21419,-0.5985,0.53126,-1.3172,-1.5326,0.14359,-0.77224 1.168,1.9363,3.0582,-0.97933,-1.0606,-0.052882,-1.4466,-0.43056,-1.4168,-0.23708,1.0535,-0.069233,-1.8027,1.6786,0.11605 -0.57,3.3567,1.3623,0.8633,0.024684,0.42209,-1.4277,-0.21865,0.094272,0.5402,0.43066,1.2428,-1.1918,1.026,-1.0824 2.005,0.56081,-0.96143,-0.6275,2.1426,0.68272,0.95335,-1.427,-1.2892,2.0624,1.5471,-0.36997,-0.34448,-1.2824,2.29 3.925,0.91127,-0.023653,-0.78442,0.56144,0.34459,0.64379,1.8896,0.98173,-0.0041752,0.14688,0.99046,-1.6513,0.2091,-0.11044 -1.0543,1.649,1.0092,2.0805,0.37442,-0.53285,-0.17681,0.93248,1.7904,-0.90112,0.22564,1.3896,-1.3251,0.84933,-0.082828 1.4465,2.1993,3.559,-0.19597,1.6422,-0.96521,-0.1719,0.19046,0.54208,0.29709,-0.73716,0.81941,-0.34174,-0.69347,0.066644 -0.53199,-0.23163,1.6825,2.4193,2.2463,-0.30123,-0.989,-0.86364,-0.70861,-2.3713,-0.14197,1.1398,-0.24322,-0.42146,0.82033 -0.78584,-2.4402,0.61709,-0.13275,0.42466,1.1488,-1.0945,-0.12763,0.82308,2.0471,-1.7171,-0.057575,1.579,2.2406,0.051842 -1.9757,-1.4076,0.85964,-2.8823,-0.83759,0.91583,-1.4013,-1.6499,-0.18367,0.70583,-0.66348,0.15166,0.23341,1.8012,0.14837 0.36974,3.1553,1.0331,-0.38621,-0.72696,0.81908,-0.93917,-0.35803,-0.6387,-1.0092,-0.42175,0.021174,0.28357,-1.7887,0.59975 -1.4148,0.098181,3.2084,1.0976,0.76798,-0.27558,0.1194,0.10648,0.38011,-0.99371,1.3361,1.0413,-1.4883,1.4454,0.42877 2.7894,0.73047,-0.22758,1.2742,1.0837,0.72742,-0.27979,-2.4673,0.88291,-0.20046,-1.2214,-0.38359,-0.25979,0.26604,-0.75586 2.1924,3.1394,-1.1434,-1.6484,0.23764,-0.47801,-1.4941,-0.90683,-0.006761,1.9872,0.94513,-1.1033,-0.18652,-0.26792,-0.047731 -0.29207,2.4757,2.0394,-0.71733,-0.82137,0.86726,-1.4745,-0.45832,-1.5121,-0.17815,0.79959,0.048885,-1.3224,0.61175,-0.75018 -2.307,-2.2837,-0.823,-0.36697,0.91729,1.0299,-1.2099,-0.13495,1.5614,0.58955,0.076775,0.081073,-0.75347,1.1518,0.18375 4.0469,0.60532,-0.57857,-2.5624,2.6554,-0.55571,1.6171,-0.69131,0.46361,-0.18169,0.83596,1.3516,-0.91168,-0.58613,-1.5727 1.6009,2.9274,-1.2519,-0.51324,-0.13501,0.15057,-1.3698,-1.2836,0.76879,1.2086,0.44459,-0.67014,-0.39169,0.8804,-0.41136 4.9505,-1.7451,-1.2317,-0.82608,2.5641,3.3974,1.6307,0.38457,-1.2831,-1.4127,-0.21452,0.35565,0.012615,2.2938,-1.4101 2.1422,1.7639,-0.34556,-0.015827,1.8176,-0.37739,-1.2264,-1.4655,1.4754,1.9524,1.573,0.086087,0.84746,0.12216,-0.49934 2.1586,0.58335,4.035,-1.8814,-0.14714,1.2482,-1.2544,1.2777,-1.2283,-0.17883,0.30813,0.44938,0.29474,-0.68824,-1.0745 -0.19438,1.8558,-1.9579,2.397,0.96519,1.7635,-0.92309,-0.35631,-0.3788,1.0883,-0.49058,0.057585,-0.44463,-0.35012,-0.4758 -1.1995,3.1802,-1.275,0.56982,0.23878,1.8166,-1.6057,1.9724,-0.90912,-1.4612,0.25577,0.00071103,0.61957,-0.99688,-0.68036 -0.061203,3.0559,-1.1757,-0.10968,-0.54101,0.92608,-2.4207,0.88803,-0.7033,0.92308,0.50997,0.019497,-0.13808,0.39736,-1.2073 1.931,3.9596,-0.3952,-1.3952,-0.38938,-0.68662,-0.86828,-0.12355,-0.04091,-0.042154,-1.2345,-1.2043,-0.49431,-0.63975,-0.48365 0.90802,2.6761,-1.1243,0.45087,-0.27689,-0.26478,-0.93959,0.19286,0.42943,1.4121,-1.7026,-0.43488,-1.3308,-1.0835,-0.5323 1.7559,1.3615,-1.8724,0.55339,1.0908,2.0787,0.034715,-1.6165,-0.6712,0.82323,0.19907,-1.7181,0.014169,-0.94451,0.35156 2.6184,2.0572,1.684,0.94004,2.6028,0.0055872,-0.46449,-1.2994,-0.10451,-0.44629,-0.74653,1.1657,1.2825,-0.6806,-1.5225 -1.0518,0.46853,2.0247,1.0103,0.64915,1.0598,0.34376,0.22662,1.2465,0.4961,1.926,0.13202,-1.3026,1.688,-0.071817 1.9402,1.8724,-0.42876,0.76389,0.90958,0.32059,-1.229,-1.3438,1.1554,1.0024,-0.4819,-0.97413,-0.55111,-1.3162,-0.11455 -3.3745,0.50689,-1.3527,-0.81535,0.56357,1.0516,1.1154,0.122,1.3418,-0.75801,0.20922,-1.0072,-0.007443,-1.1356,-0.79117 2.2781,0.84215,-1.3498,0.39862,1.9943,0.32646,0.37923,-1.9258,0.35824,1.1483,-0.50421,-1.2234,-0.90684,-1.8259,1.0593 -0.38822,2.0413,2.1153,1.4053,0.61698,-0.10688,1.0241,-1.0903,-0.66513,1.2786,-0.44938,0.39131,-1.7187,-1.1918,1.6499 0.63724,1.6429,-1.7383,1.9043,1.3378,1.1345,-0.93889,-1.0861,0.30921,1.5737,-0.23027,-0.87072,0.41999,-1.1609,0.16786 2.8491,1.3903,-1.8993,-0.81168,1.0727,-0.10776,0.49852,0.096185,1.394,2.3687,-0.048705,-0.72919,-1.3277,-1.1403,-0.3138 -0.23144,0.075326,1.0619,-1.7675,0.18544,1.463,-1.3617,-0.18676,-0.52646,-1.3006,1.7169,1.0212,-0.37507,3.607,0.11206 -0.78047,2.7036,1.7733,-0.047778,-1.2569,1.0636,0.071588,0.020846,-1.1172,0.13419,0.312,0.022395,0.79964,-0.34884,0.054629 3.8704,0.072487,-1.3902,-2.6332,0.10684,-0.016529,0.17025,0.24962,1.7667,0.74502,1.9887,-0.40558,-2.2551,0.33826,1.3451 -2.5534,-0.087126,-3.5764,-0.59723,1.7854,-0.3608,0.01184,-0.77765,0.32488,-1.7387,-2.2086,1.3123,-0.73292,0.021772,1.1745 -1.0955,0.9967,2.1719,-1.0102,-0.40537,2.9382,1.2881,-1.0645,-0.65173,-0.82825,0.62948,-1.5739,-0.64161,-0.24191,0.25792 -3.9605,0.5975,-0.23842,-1.686,0.41585,0.45843,0.60769,0.27694,0.40898,-0.4902,1.082,-0.85723,0.31416,-0.9854,-0.45467 -4.3638,0.70677,-0.18495,-1.2831,0.86015,-0.45086,1.6967,0.71783,0.41611,-1.3414,0.50166,-0.33465,-0.57828,-0.19101,-0.39752 -2.6353,2.9181,1.606,-0.017535,0.076866,0.35623,1.0541,0.94426,-0.74601,-0.50016,-0.30038,-0.32263,1.5634,-0.061509,1.1534 2.9122,1.3608,-0.9521,-1.3987,-1.0034,0.61972,-0.9979,-0.025573,0.83478,-2.792,0.18398,0.13917,-0.5277,0.70782,-1.7314 -0.39587,3.3172,-0.65209,0.1778,1.3595,-0.73143,-2.1013,2.1095,0.53265,-0.40102,0.19765,-0.36868,0.62919,-0.99231,-0.40934 -1.9672,-2.5979,0.59569,2.2454,1.4158,1.1892,0.63904,0.51267,0.15197,-1.7852,0.70326,-1.3499,-0.74975,0.10047,0.50776 -0.44454,1.632,3.042,-0.30458,-0.31099,1.1036,-0.57459,1.1418,1.1254,-0.089202,0.64455,0.28401,0.99492,-0.18742,0.77209 -1.509,1.4492,2.4732,1.0529,0.035699,-0.031564,1.1962,-1.1127,1.0452,1.1244,0.39687,1.0662,-0.36888,0.13201,0.013565 0.70933,2.057,2.6215,-0.36308,-1.0175,0.13789,0.93662,-0.3336,0.84635,0.081898,-1.3032,1.3326,-0.37874,0.24519,-0.18955 -3.7897,1.4459,0.85799,-0.95707,1.768,1.3663,1.8224,-0.99781,-1.0615,-0.1725,0.54484,-0.92281,-0.37786,-1.0278,-0.42346 0.43841,1.8217,1.6213,-1.1387,-2.666,1.7069,0.47379,0.054628,-1.3468,-0.92747,0.0040569,-0.75495,-1.3334,0.057305,0.1821 1.3839,3.3745,0.31813,-0.57778,-0.1668,-1.0488,-1.7866,-0.33983,-1.1119,1.0441,0.55951,-0.64123,-1.1478,-0.21973,-0.201 -3.1731,-0.5874,2.6138,-1.9644,0.21076,0.47412,0.30768,-0.55865,-0.40251,0.49393,-0.16465,-0.35586,0.39675,0.74528,-0.10662 -3.6872,1.1878,0.51791,-1.6268,0.28094,0.92172,1.2502,-1.3739,-0.23036,0.53516,0.45782,-0.40601,0.73278,-0.26378,-0.22031 -0.97935,0.14722,2.5412,-0.25676,-1.0955,1.1297,1.0073,-0.56358,2.2743,0.42822,-0.30124,-0.50083,0.88097,0.38779,-0.23221 0.66903,2.7497,-0.080433,1.7673,2.3922,-0.0090535,-1.2653,-1.0784,-0.41386,1.1654,-0.046978,-0.076215,0.33372,-0.32649,-0.51267 2.508,-0.9508,1.6419,1.0317,2.4946,1.9107,0.49678,-0.14289,-1.6687,-2.3297,-0.41284,0.79818,3.1248,1.6001,-0.62073 2.2185,-1.5143,-1.0137,-2.0323,2.1368,3.2206,2.129,-0.057672,-0.80101,-0.89441,-0.59246,1.7578,1.8236,1.4067,0.21516 0.82247,0.84095,2.426,1.6794,-0.41453,1.6871,1.0335,-1.022,1.3643,0.59018,-0.7423,0.35405,-1.0294,0.35278,0.99616 2.6485,-0.60736,-2.5617,-0.7359,0.5633,2.7866,0.93318,-1.5612,0.58821,-1.139,1.0345,0.86517,-0.44108,0.44476,-0.043883 -2.4968,0.69307,0.91924,0.49227,-0.93686,1.4072,0.2371,0.82577,1.23,-0.37596,1.5819,0.26202,-0.77742,1.0428,-0.63752 3.0715,0.22487,-1.2102,-4.6586,0.99314,0.30782,2.0914,1.4948,0.092543,0.017051,1.6674,2.6034,0.044849,-1.3071,0.74942 0.55477,3.6521,1.3121,-0.28936,-0.81362,1.5969,0.05268,-0.80385,-0.68584,-1.9327,-0.20005,0.20668,-0.30354,0.67383,0.37767 -1.7053,-1.5914,-0.015409,1.0829,1.147,1.8238,0.17551,-0.49858,1.1758,0.4232,1.318,-1.106,0.05699,-0.48406,0.80171 -0.080014,-0.32148,1.53,-1.6022,-0.4054,3.5287,1.7776,-0.23989,0.84345,-1.4856,-0.19666,-1.4497,-0.62872,0.52686,0.083051 -1.3154,0.045306,-0.014321,-1.7196,1.1619,2.9533,0.95715,-0.75965,-0.69198,-0.2882,-1.0674,-0.90169,1.4562,2.338,0.147 2.4879,2.333,0.12175,0.10535,1.7345,-0.84695,-1.0642,-2.6379,0.57611,1.0532,0.66089,-0.40174,-0.77435,0.83337,-0.033426 -0.42493,1.0099,2.6191,-0.089342,0.30932,0.84627,0.71075,0.37188,1.9234,-1.4144,0.094221,-0.18455,1.4276,-1.5306,1.1954 1.6411,1.2455,-0.24296,1.6719,1.5545,0.68051,-1.7107,-2.2214,0.87897,-0.25198,1.0533,-0.096254,0.13871,0.70619,-0.14292 -2.1004,2.8239,0.12401,0.95389,0.16842,0.17228,1.1905,0.81885,0.86474,1.2417,-0.048598,1.0061,-0.011313,0.182,0.2945 3.9672,0.40003,-1.3271,-2.4172,-1.0367,0.55026,-0.65492,2.0071,-0.99938,-2.0144,0.32212,-0.56016,-0.14352,0.56156,-0.81114 1.5577,2.2256,-0.55624,-0.84085,0.11859,0.69195,-2.2893,-0.51175,1.2135,1.2181,1.0581,-0.039146,1.7667,1.4405,-0.56355 0.77512,1.593,-1.3691,-2.0625,-0.62759,0.83407,0.57563,-0.83566,-2.3326,-0.41372,1.1978,0.2719,1.0183,1.5564,1.258 0.11749,4.1184,-0.25013,0.12522,-0.94526,1.4225,0.076858,-0.23942,-1.8476,-0.15016,-1.6781,0.028951,-0.45955,-0.58005,-0.48667 -1.4937,2.4447,2.5498,0.2241,0.14934,0.30261,0.30323,0.17014,1.6493,-0.3698,0.31959,1.0399,0.63569,-0.031278,0.73422 -0.19861,0.23199,1.2724,1.8437,-0.57449,2.0309,1.5016,-2.5607,-0.53628,-0.077309,0.09968,-0.13599,-0.75061,0.44997,0.73762 1.7961,1.4569,0.74057,1.6517,1.68,0.25913,-1.7101,-0.64257,1.2011,0.20007,-0.018908,0.35338,0.64483,-1.2035,-0.13029 0.37009,-1.0435,-0.53844,0.65949,-0.55494,3.3913,1.1138,-0.15562,0.66691,-0.29884,-1.0516,0.87806,-1.2715,0.019544,-0.60755 1.8724,0.51798,2.4194,0.96577,0.55607,2.7381,0.9395,-0.087118,1.7466,-1.5784,-0.38951,0.38709,0.73878,0.63507,-0.072732 1.3828,2.752,0.29397,1.3999,-0.86327,2.415,-0.69064,-0.51497,0.36575,-0.15861,-0.021538,0.21077,-0.98363,0.45863,0.64905 0.87791,2.8234,-1.2012,1.3543,0.83771,0.41332,-0.6363,-1.8274,-0.44867,0.89112,-0.64739,0.026123,-0.15917,-0.74252,-0.5222 -1.9367,1.5571,0.6554,0.42984,-1.4204,2.0261,1.1482,-0.47359,0.91502,-0.091089,0.34838,0.92176,0.24878,1.0553,0.084211 -0.78648,-0.74194,1.0041,-0.39385,-0.78699,2.3611,0.43406,-1.1681,2.2078,0.83928,0.19372,-1.0386,0.87592,1.5311,0.11606 -1.4209,1.3495,-2.5395,0.9229,-1.2734,1.3672,0.9335,-0.92659,-1.3682,0.38749,0.12082,0.84279,-0.54425,-0.23471,-0.77694 2.4171,-0.93499,0.28675,0.37202,2.9524,1.0016,-0.91707,-1.1325,0.43562,-2.315,-0.31656,-0.97506,1.93,-1.0183,0.52256 3.8546,1.4278,-1.7517,-0.92227,1.3512,1.4868,0.10505,-0.55829,0.91417,-0.49631,0.063382,-1.3092,-0.62053,-1.8159,-1.2846 1.7406,0.57379,-1.2425,0.31247,0.88629,-0.25691,-0.87124,-1.3606,0.73908,1.7225,2.0232,0.15157,0.17774,-1.3888,0.93599 2.632,2.749,-0.58131,-0.43385,0.8721,0.57179,-1.3204,-1.1437,1.0361,0.15279,-0.30969,-1.2166,-0.4323,-1.3574,-0.334 2.32,3.2129,0.61031,-1.1143,-0.39734,-0.64196,-0.12421,-0.92598,0.24651,-0.26061,-1.636,0.41685,-1.2498,-0.21296,-1.7773 -2.2917,-2.4704,0.5092,1.6438,2.0759,0.62484,1.1589,-0.86236,0.41342,-0.97013,0.11088,-1.6144,1.2141,1.0187,0.71198 -2.6039,2.9545,-0.071156,0.17593,0.023361,2.1282,1.9086,0.50113,-1.3654,0.099663,0.36799,-0.43272,-0.48369,-0.17234,-0.89523 2.3229,2.186,1.2207,1.1101,2.9974,0.73872,0.087624,-1.6814,-0.55362,-0.46429,-1.8703,0.13607,-0.75619,-1.4518,-0.82525 3.4299,0.0080489,-2.5068,-1.3543,0.77862,2.0582,1.6816,-0.091488,0.18711,-0.12118,0.88638,-0.3518,-0.4004,-1.4786,0.28853 3.0715,0.93752,0.30209,0.028004,2.487,1.7133,-0.58987,-2.2043,0.72134,-0.59521,0.30971,-0.25996,1.2865,-0.3672,-0.16442 -3.3234,2.6793,0.050851,0.023169,0.56,2.0795,1.3298,1.3338,-1.3544,0.89079,0.24454,-0.2524,0.19783,-1.1373,0.54939 2.7543,0.9076,-1.5253,-0.64241,-0.29536,1.0175,0.61882,-1.2721,-0.31117,-0.7075,0.16756,-1.5411,0.59431,-0.22061,0.39237 3.307,1.4604,-0.34429,0.39798,1.8681,1.4256,-0.20265,-1.2865,0.37071,-0.97469,-1.0505,-0.46864,-0.17299,-1.8094,-1.6287 4.0573,0.47948,-1.6834,-1.351,1.7461,2.8619,0.98382,-0.96347,0.13975,-1.7023,0.64913,-0.38821,-0.59258,0.37895,-1.0338 1.4598,1.5477,1.4635,-0.12828,-1.2196,-0.35406,0.25038,-0.95244,0.99305,-0.62625,-1.984,0.7223,-2.3699,-0.78381,-0.041281 -3.9764,0.3735,2.1197,-1.0499,1.7488,-2.1523,1.5754,0.98027,-0.38339,-0.7451,-0.053027,-1.2584,0.34159,-0.80333,0.20712 -2.8051,1.8551,-0.95763,0.46152,-0.89278,0.89446,1.2568,0.59981,0.41165,0.83846,0.84709,1.0155,0.31422,0.37844,-0.31484 -0.96656,2.0941,2.7373,0.87556,2.3177,-1.1753,0.39554,-1.8563,-1.2207,0.65389,0.050149,-0.075386,-1.0919,1.881,-0.48719 3.0204,0.53083,-0.87757,0.40748,0.30874,0.62108,0.21255,0.35635,-0.16524,-0.6287,-1.0809,-0.92552,-1.9354,-0.71002,-1.002 -1.9072,2.7859,1.2499,-0.57311,-0.95313,1.0141,0.98305,-0.51778,-0.96883,-0.182,-0.031527,0.75338,-0.14967,-1.5131,1.2925 1.5237,3.7245,-1.3814,-2.0226,-0.25372,0.11768,-1.4994,-1.2659,-1.345,-0.16382,1.4684,-0.98651,0.035965,-0.39345,-0.3916 -2.4651,1.9986,1.7903,0.26386,2.1614,-1.2708,0.10639,0.59014,0.065101,0.16423,0.24233,-0.091371,-0.61078,1.4845,-0.49267 3.9336,-1.0764,-1.3229,-3.3257,0.49795,0.84541,1.2986,1.7422,1.2207,1.7772,0.69394,1.9684,-0.508,-1.1812,0.031959 -1.6582,0.51941,3.1105,0.37086,1.438,-0.92466,0.95565,-2.4869,-0.67124,0.98201,-0.3439,0.22271,-1.2016,1.4405,-0.23959 0.7649,1.8317,-0.17458,2.0769,0.11358,0.63354,-0.04744,-2.6689,-0.42127,-0.27741,-0.88297,0.53545,-0.19588,-0.062318,-0.03867 4.0639,-2.0583,-0.82913,-2.4836,2.8567,0.62805,2.5193,0.97425,0.22977,0.77171,0.93775,3.5842,-0.39545,-1.1786,0.12568 -1.1215,1.8656,2.0704,1.5326,2.4821,-1.0146,0.39088,-0.38062,0.95689,0.12369,0.37543,-0.0018652,-0.25026,0.61266,-0.15997 4.567,-0.22089,-1.6371,-1.7023,1.9839,0.94835,1.5771,-0.15157,0.95107,0.55632,1.3033,0.8946,-1.992,-0.41886,-1.0181 -2.7714,0.96908,-0.089631,-1.2932,-0.72472,1.3785,1.538,-1.5365,-0.26022,-0.17096,0.50781,0.3795,0.07938,-1.429,0.28257 -0.16522,3.2183,2.5204,0.58342,1.4569,-1.5595,-0.8146,-0.36025,0.37376,0.17378,-0.68098,1.1203,-0.11523,0.050831,0.27296 0.17269,2.6589,2.2261,2.3996,3.113,-0.31433,0.079562,-0.69516,-0.98708,0.67799,-1.2042,0.40628,-0.30392,-0.41546,0.41525 -0.66176,2.8823,2.7944,1.6342,2.427,-0.9946,0.11105,-0.55864,-0.81806,0.23417,-0.13356,1.0423,-1.2322,0.76961,0.10537 -0.25493,3.7637,1.2928,0.4477,-0.117,0.46809,-1.2877,-0.31232,-0.39342,0.27551,-0.22161,0.79556,0.23905,-0.55083,-0.16223 -1.6192,2.248,1.7125,2.0821,2.673,-1.2036,0.11813,0.58955,-0.50299,-0.29579,-0.3276,0.43156,-0.82198,0.53622,0.80802 -0.011203,2.3393,2.6091,2.1355,2.5257,-0.74161,-0.44792,-0.77181,-0.26485,-0.07015,0.11999,1.1089,-1.011,0.45334,0.26919 1.661,2.8199,3.257,-1.6087,1.8114,-0.63937,-1.4428,1.2215,-0.48154,0.67068,-0.75441,-0.052935,-0.58805,-0.8637,-0.05525 2.8435,0.4952,-2.0868,-1.8778,-1.6356,0.8336,0.71312,-0.0041118,-0.2655,1.4658,0.93157,0.58646,0.92051,-1.0688,0.4561 2.207,0.20466,1.4931,-4.6621,1.4587,-0.48432,1.2405,0.27986,-0.37853,0.27904,-0.17793,2.2056,-1.6366,1.7237,-0.31479 -1.0967,0.225,1.7468,0.70841,-0.20404,0.76412,1.1012,-0.70092,2.1562,1.5437,0.28472,-0.15673,-0.1084,-1.1853,1.1505 -2.3158,0.98749,0.50784,0.069621,-0.91289,1.2494,1.0459,-0.71909,0.92137,-0.023151,1.4017,-0.027096,0.24404,1.736,-1.1289 -2.4115,0.39105,1.0892,-0.20786,-0.69403,1.2489,0.11662,1.0263,2.1055,-1.1667,1.3777,-0.32994,0.44545,0.15546,0.67191 -0.61585,2.1053,1.4214,2.0297,0.65164,0.0093423,-0.78139,0.26706,1.5107,-0.11641,0.25317,1.1516,-0.69627,0.080363,0.90835 -1.8889,-1.4778,1.1636,-0.49369,-0.15366,0.054344,0.24172,-2.1436,1.852,0.89363,-0.94727,-0.16,0.67495,-0.043277,-0.94143 -0.18213,-0.72061,1.5512,2.34,0.74453,1.3322,0.44672,0.044454,1.3768,-1.5101,0.45085,0.71628,0.56762,-0.22414,1.1904 0.21655,3.0805,-0.25207,1.3825,1.6188,-0.38465,-1.732,-0.4373,-0.023077,1.1724,-0.059539,0.28246,0.19093,0.29454,-0.98307 -0.15142,2.9552,0.10715,0.59741,2.081,-0.66543,-1.3103,-0.95646,0.07522,0.96578,0.80586,0.37426,-0.5644,0.62315,-0.66794 -2.0747,0.73654,-0.28096,1.7436,0.71191,0.55933,1.9891,-1.5743,0.81974,1.3932,0.38715,0.79659,-0.30469,0.055413,0.13948 -1.2146,-0.40408,1.6892,1.2072,0.22359,0.81487,1.5148,-2.364,0.86387,0.95542,0.44013,0.48267,-0.90558,0.16203,0.57095 0.90239,2.9001,1.0083,-1.0825,1.9824,-1.9709,-2.2242,1.0125,-0.30495,0.078217,0.45937,-0.75975,1.0647,-2.1063,-1.049 2.4293,1.9561,2.3084,-0.81264,-0.31439,0.89354,-1.5074,-0.19548,1.2473,-0.01526,-1.3234,0.83569,-1.6537,-0.40157,-0.32848 -2.4321,0.67133,2.1636,-0.035679,-0.48096,0.21438,0.44594,-0.36104,1.827,-0.50232,1.4894,0.61683,0.15853,0.84793,-0.061807 -1.4816,-1.1227,2.193,1.4284,0.84391,0.21758,1.888,-1.7117,1.3955,-0.10133,0.076952,0.25612,0.58154,-0.67773,0.045598 -1.1442,-0.24464,2.1147,0.34925,-0.67565,0.73115,1.3417,-2.0215,1.9352,0.94727,0.2617,0.5319,-0.36121,0.25144,-0.17153 -1.7543,1.5006,2.1787,-1.249,-0.32892,0.62219,0.92047,-1.0204,1.351,0.20659,0.64638,-0.44211,1.4107,0.55164,0.15342 -1.1983,2.124,0.21657,0.77779,-0.15623,-1.0555,0.75305,1.5479,0.3153,-0.62662,-1.2099,0.75034,1.6529,-1.6004,0.70912 -1.5407,2.8497,-0.97417,0.56275,-1.4677,1.1274,0.42103,0.4467,-0.56328,1.0302,-0.37739,1.363,-0.13487,-0.70393,0.38379 -3.641,-1.0173,-1.4478,-2.2209,2.8042,-0.084362,-1.4145,-0.82823,-0.4624,-1.5052,-0.76262,1.9467,-0.76072,0.93551,0.84141 1.6233,0.49077,-2.386,1.005,-0.34618,2.2098,-0.7332,-1.7238,0.51514,0.22612,0.7313,-0.93006,0.51288,0.5048,0.55837 -2.3105,-0.96815,0.62199,-3.5027,1.7626,0.71173,-0.95657,-2.3635,-1.8643,-0.61503,-1.1619,0.45114,-0.82462,1.3784,1.339 -0.163,1.8124,1.165,-0.70451,-1.2482,0.66544,-0.45113,1.3023,-0.036011,-0.97945,-0.70085,0.052278,0.66013,-2.1022,1.4169 -3.2001,-1.5922,-0.98386,-2.0921,1.8976,0.41138,-1.5472,-1.2827,-0.014802,-1.6604,-0.53256,1.8649,-0.45381,1.2041,0.57252 1.7593,2.0607,-0.89068,0.45329,0.70198,-0.12531,0.75654,-1.4316,0.34897,1.0071,-2.1397,0.29736,0.17363,0.061465,-1.3468 -0.25112,2.8127,-0.7997,-0.22525,0.39662,1.2312,-0.44766,-1.2097,-1.1602,-1.6455,0.90764,0.16738,1.0175,1.3747,-0.51041 -2.6195,1.0337,-2.1765,0.35502,-0.094311,1.3641,0.83058,2.0137,1.0431,1.0112,-0.13137,0.33172,-0.55839,-0.048898,-0.18192 -4.1537,-1.7158,0.9143,-2.0331,1.2242,-1.0503,-0.19987,0.34767,1.0974,-0.72482,0.62911,-1.0473,-0.59444,0.29486,0.30806 -3.7923,-1.8718,-0.49113,-2.7896,3.2416,0.50586,-1.4145,-1.4553,-1.7869,-1.0567,-1.3986,1.5306,-0.76579,0.8591,0.98511 -2.2072,3.1565,-0.74932,0.47172,-0.64079,1.5187,0.49443,0.33327,-1.9367,-0.35496,-0.26173,0.7174,0.40921,0.62485,-0.75167 5.0584,-2.359,-0.68305,0.016789,0.15738,0.28844,0.978,-1.8406,-0.28358,-0.5563,0.78156,-1.0634,-0.219,0.22364,1.1707 -4.3886,-1.7469,1.8824,-2.6038,1.8866,-0.081888,-0.90795,0.50089,-0.53583,-1.1074,-0.51681,0.24756,-0.97641,1.3245,0.31716 -4.3947,-1.4784,0.56405,-2.532,1.6192,-0.3679,-1.0487,-1.3073,0.18187,-0.39509,-0.23483,0.4795,-0.04568,1.0497,0.19816 -0.72405,-3.218,3.1325,0.055194,2.0567,1.4568,0.59873,-1.1102,0.99845,1.1851,-0.5181,-0.80692,0.51872,1.2049,-0.20615 -1.7456,1.5318,-2.4279,1.5251,-0.69251,1.145,0.62637,1.8592,-0.21927,0.83928,-0.64115,0.54326,-1.0635,-0.17873,-0.32764 -2.3529,-1.2027,3.3615,-2.6321,0.21848,0.5266,0.099323,-0.87089,0.8747,0.52389,-0.45971,-0.56529,0.27088,1.0704,0.15543 3.6091,-1.0054,0.036309,-3.4398,1.8119,-0.81636,1.8092,0.9936,1.3363,1.4399,1.1944,1.7931,-1.0594,-0.62645,1.6078 -3.109,-1.7187,0.68783,-2.6199,1.7349,-0.39925,-1.7948,-2.2524,-0.17259,-0.033629,-0.4511,1.4358,-0.65094,1.645,0.93256 -0.44642,0.21724,2.964,-0.69238,-0.25879,0.66643,0.96842,-1.1311,1.2098,1.854,0.56104,-0.5251,-0.77876,0.074663,0.23166 2.7601,2.7133,-0.57147,-0.68511,-0.51167,-0.27746,-1.1157,-0.86249,1.0915,0.45329,-0.98459,-0.56137,-0.81311,0.12848,-0.91047 1.3146,0.1282,-0.75783,1.5252,1.7425,-0.052744,-1.5654,-0.048686,2.2825,-0.63155,0.3435,-0.41136,1.3831,-0.12855,-0.00061345 -3.8266,-1.5276,2.7719,-2.6151,1.3253,-0.2269,-0.23831,0.29362,0.16323,-0.91918,0.37348,-0.77167,0.27349,0.81147,0.10712 1.3463,2.0841,2.3223,1.3194,3.7641,-1.2425,-0.85058,-0.94879,-0.69181,0.073654,-0.37939,0.45917,-0.47056,-1.0647,0.015922 3.6482,0.88838,-0.1625,-0.71594,2.3305,-0.6302,0.25875,-0.53629,1.2977,-0.75701,-0.85837,1.102,-0.026944,-1.3032,-2.452 -0.58013,1.9263,1.7734,1.7006,0.3174,-0.60364,-0.43383,-0.49492,1.3154,0.26494,-0.63787,1.3563,-0.47604,-0.37131,1.0964 -0.41953,3.4837,0.039887,0.096321,-0.42674,0.53536,-1.5587,-0.23656,-0.0095627,-0.58966,-0.38371,0.60236,1.4216,-0.33173,-0.38588 -2.1232,3.5095,-0.36935,0.31902,-0.25632,1.0418,0.18141,1.1509,-2.2114,0.4168,-0.50054,0.81436,0.21505,0.26427,-0.33587 4.3102,-0.53709,-0.90879,-1.2716,3.239,0.65037,1.8617,-1.921,-0.23106,0.060746,0.57509,1.117,-1.026,-0.25481,-0.519 1.0248,1.2069,1.4039,-1.0805,0.43952,0.75112,-2.4578,1.2503,1.5854,-0.90498,-0.73648,0.57808,0.97325,-0.28369,-0.33273 1.1839,1.7882,-1.2056,0.7252,2.2111,-0.010623,-0.30142,-1.4986,-0.32685,2.6257,1.2163,-0.73831,-0.49027,-0.017357,0.20002 5.2609,-0.13924,0.94001,-0.47289,1.8015,0.82645,0.84143,-0.41504,-0.64969,-1.0303,-0.91519,-1.1031,-2.6511,-0.64355,-8.1178e-05 -2.5298,2.3013,1.4835,-0.73174,-1.0858,0.35078,1.8242,-1.3734,-1.4649,-0.48065,0.46471,1.1018,-0.4042,0.93596,-0.039749 1.7381,2.6191,1.1569,0.20405,1.1472,-0.96657,-0.39617,-0.42303,1.126,0.44193,-2.317,0.98451,-0.15307,-1.627,-1.4761 0.78957,2.091,-0.048552,2.0053,1.4388,0.6029,0.60176,-1.6956,-0.40393,0.5917,-2.1496,1.4565,0.10562,-0.24424,-0.69044 1.8633,-0.37868,-0.36749,1.2701,2.8445,0.44951,-0.95524,-1.6176,1.7816,-0.09754,0.47601,-0.62556,0.59791,-0.66009,0.9534 0.6705,3.1461,1.0879,-0.40621,0.10431,-0.91577,-1.158,-0.21307,1.067,0.59591,-1.6055,0.86435,0.576,-1.1129,-0.69616 3.1199,1.8354,0.47661,-0.76875,0.97952,1.6291,0.29388,-1.9258,-0.9606,-1.1098,-1.1502,-1.0714,-0.14115,-0.31365,-1.7528 -1.6259,2.7773,0.63772,0.12255,0.60164,-1.3016,-1.5975,2.4759,0.082936,-1.0232,-0.17718,0.95501,-0.23613,-0.80565,0.31099 -0.029808,1.4145,2.3911,1.862,0.09897,0.0087645,0.26511,-1.4551,1.0872,-0.056347,-0.50018,1.7458,-0.49229,0.18111,0.57508 -1.5525,1.5334,0.3982,2.4788,1.5681,-0.36636,0.084975,-0.44535,-0.21557,-1.3136,-0.54772,1.8767,-0.83367,0.54864,0.25422 -0.26768,2.5453,-0.1817,1.2975,-0.42075,0.066841,-1.8589,-0.28071,0.042379,0.741,0.73655,0.88997,-0.1707,1.1782,-1.185 2.889,-2.07,-0.818,-0.7123,2.7529,2.4216,2.1754,0.52078,-0.06911,1.1346,-0.37711,2.9571,0.79607,0.35545,0.51206 -0.099257,0.22376,0.69132,1.8696,1.4041,2.1177,-1.0441,-1.0421,0.43367,-2.1247,-0.81787,0.38944,1.2388,0.32584,0.96947 -0.54895,-1.8238,1.582,-2.095,-0.14151,0.84386,-0.99396,-0.69428,1.0057,-0.13384,-1.3555,0.39626,0.91243,1.7364,-0.074763 2.3489,-0.38862,0.96916,0.80008,3.3274,0.25328,-0.93203,-1.5656,-0.085137,-1.3743,-1.2116,-0.087459,1.3041,-1.2559,-0.083707 3.5711,-0.22969,-0.63894,0.072686,2.2457,1.3791,0.35002,-2.8728,-0.20759,-0.91419,-0.13195,0.002183,-0.28763,-0.12353,-1.0538 1.6374,2.4214,1.7004,0.69329,0.47124,-0.36002,0.12291,-0.30807,1.1867,0.2173,-2.2524,1.2502,-0.34582,-1.6291,-0.67372 4.6422,-0.93416,0.20703,-1.2212,2.9645,0.99487,-0.094718,-1.1428,0.83402,0.18259,0.4821,0.55515,-0.16776,-1.1539,-0.11076 -2.1089,3.3805,-0.17264,0.41731,0.079177,0.54764,-0.34912,1.7101,-1.5453,1.3443,-0.12867,1.199,-0.55588,0.25601,-0.66344 -3.3217,0.88186,-0.56071,-2.1879,0.60993,1.226,0.47923,-2.4964,-1.4086,0.41029,0.1087,-0.2049,-0.12798,-0.26613,-0.61287 -4.0041,-1.0998,1.0861,-2.5357,0.81742,0.14895,-0.26148,-1.8028,0.17431,-0.63526,0.48552,0.48316,0.33682,0.60982,-0.10996 -2.684,-1.6317,0.42812,-1.7378,0.59837,0.06494,-1.2577,-0.51494,0.92502,-1.197,-0.65992,-0.30152,1.1476,0.51585,0.97846 -2.4799,1.6372,0.39762,0.25294,-0.68387,1.0157,1.1639,-0.23807,0.1956,1.9381,0.82834,-0.12961,-0.85592,-0.31254,-0.27789 2.6399,-1.7569,-2.6023,-0.82129,1.2395,3.3052,1.4181,0.019606,0.65316,-1.0596,0.77771,1.1086,-0.33996,0.40346,0.78691 -1.8241,-0.58898,1.4559,-1.7056,-0.54542,1.9312,-0.56255,-1.3078,1.0814,0.18449,0.44138,-0.17485,0.20981,2.2232,-0.60623 0.080709,-0.52858,3.8391,0.30285,0.45973,-0.11773,0.15635,0.30491,1.7099,-0.49148,-1.2665,0.85081,0.32328,-0.40706,-0.33799 5.036,-2.9628,1.908,-0.61014,4.4821,0.26893,0.30842,0.68359,-1.0061,-0.84307,-0.19461,0.57725,0.66773,0.93565,-0.30149 -0.75179,-1.3263,1.1641,-1.012,-0.35438,0.87204,0.29862,-0.70161,2.4312,0.15115,-0.71528,-0.4866,1.1905,0.41363,-0.77764 2.1916,-2.026,2.938,-0.43871,0.082885,1.5413,1.894,-0.11121,0.34796,0.37094,-1.1042,-0.27249,-1.3469,2.489,-2.1337 1.6785,1.7484,-1.6661,-0.46803,-0.19024,1.6913,-0.8681,-0.2825,0.81161,-0.50688,-0.064152,-0.071533,1.6569,-1.1116,-0.32498 -1.0399,-0.39803,2.4208,-1.0874,0.33348,0.82721,0.77916,-1.9223,2.1803,0.61185,-0.063781,-0.51721,0.37262,0.69672,-0.65949 -0.82374,1.3917,2.515,-0.3116,-1.2058,0.40805,1.0708,-0.30835,1.0713,-0.88493,-0.59753,0.96952,0.61244,-1.7594,0.42412 0.7251,-2.2348,0.66372,-0.76802,0.14293,3.1693,1.0403,0.25044,1.1064,0.57022,-1.6539,-0.45561,0.43027,2.1957,-2.1281 0.4853,-0.20945,-0.6673,1.1841,1.4264,0.80876,-0.82866,-2.143,0.86084,-2.4617,0.052191,-0.23939,2.0485,-0.47446,0.085482 -1.4847,-2.8807,1.8858,-0.16346,1.1653,-0.018374,0.47189,-0.9504,1.5855,0.80856,-1.342,-0.90187,0.46356,-0.86473,-0.21571 -3.2519,0.28524,-3.038,-0.75203,0.56348,0.8867,1.6237,-0.58572,0.67076,-0.56596,-1.1897,-0.58584,0.29176,0.51839,-1.0492 3.188,-1.2843,-1.814,-1.5687,0.90884,2.5706,1.6001,-0.90656,0.20819,-2.8504,1.0951,0.0012922,-0.31238,1.0318,-0.34967 -1.5902,-0.66302,0.77424,-0.36683,-1.2894,0.90368,0.049607,-0.65174,2.2906,0.71307,-0.12922,-0.51119,0.74461,0.46886,-0.48367 -1.6374,-1.4586,-2.4374,-1.4384,-1.4276,-0.77697,-0.52157,-1.7737,0.019559,-0.7938,-1.4113,0.97273,-0.66871,0.13803,-0.13911 2.5806,-0.41421,1.3058,1.2506,2.7947,2.9,-0.76973,0.070762,-0.5044,-0.87065,-1.5315,-0.41192,1.222,-0.48597,-0.55214 -1.1459,1.204,1.5412,-0.18827,-0.70098,-0.11837,0.77654,-0.18771,1.5637,1.0329,0.67974,0.467,-0.026856,-1.114,0.5914 -1.6718,1.8414,0.8993,-0.055546,-1.4205,0.70683,1.1038,-0.58262,1.1118,0.82939,0.353,0.66799,0.20109,0.73411,0.10424 0.77214,2.486,1.6487,0.20394,0.33129,0.27901,-0.028496,-0.22429,-0.38116,1.7308,0.45695,-0.075065,-0.4302,-0.33536,0.48567 2.9239,2.8718,0.56207,-2.5538,1.3951,-0.11633,-1.115,-0.35761,-0.29706,-0.49181,0.33428,-0.60015,0.97324,-2.258,-0.39953 -4.3858,2.0161,-0.81792,-0.58708,1.3269,0.59194,2.1407,1.8164,-0.73871,-0.57108,0.10082,-1.3278,-0.11486,-0.92222,-0.14639 -2.0556,-0.011738,0.74352,-1.5771,-1.9163,0.70847,0.11534,-0.3412,0.53135,0.15517,0.78244,-0.26205,-0.81717,-0.24126,-0.15754 4.3518,-0.29426,-1.1592,-1.538,1.7499,0.29103,1.3348,-1.3586,1.2086,-1.1311,0.7567,1.0516,-0.8132,0.57642,-1.9274 -1.6625,-2.1097,-0.31145,0.13031,0.43954,0.11707,-0.038577,-1.4426,2.5764,0.53408,-1.0883,-0.44506,0.63301,0.34681,-2.6568e-05 2.8816,0.46533,-1.5958,-1.1652,0.089279,0.67949,0.45286,-0.44402,1.7036,2.1793,0.65022,0.16187,-1.594,-0.24688,0.58081 -1.2124,-2.5609,-0.47547,-0.46073,0.16619,-0.024603,-0.82943,-1.1084,1.8244,1.6823,-1.6693,-0.0090346,0.36441,-0.10651,0.088559 -2.4647,1.2145,-0.091474,0.41317,-0.74141,0.11809,1.9186,-0.28778,1.5804,0.73092,0.33312,0.59739,0.037484,0.11444,-0.55969 -0.25437,-0.19245,1.9079,0.62119,0.38305,0.9016,2.1504,-1.1852,1.8502,0.15976,-1.1244,0.051723,-1.3488,-1.4545,0.6996 -2.6539,1.0221,-1.5808,0.45958,-1.0689,2.1449,1.5428,-0.2322,0.49163,-0.7159,0.72004,0.02449,0.23213,-0.29901,-0.83196 2.3055,1.0608,0.75488,0.56263,0.35773,0.2621,-0.19958,-0.85169,1.8325,-1.0887,-1.493,1.5921,-0.83753,-0.77813,-1.7137 -2.3392,2.8494,0.07681,0.75044,-0.049371,2.912,1.2321,0.7286,-1.2987,0.21898,0.57513,-0.068378,-0.53449,-0.87712,-0.46732 -0.33387,1.251,0.6688,0.61688,-0.55418,1.125,0.22923,0.047057,2.5385,0.65385,0.042501,0.3784,0.1224,-0.66524,1.2279 -2.2586,0.51516,-1.5118,1.866,0.7749,1.6735,0.99472,0.92837,0.88366,-0.7419,-0.19886,-0.37232,-0.9379,0.64492,0.53118 0.07118,0.91947,0.64287,1.7554,-0.11653,1.0534,-0.63619,1.0161,1.5613,0.87797,0.6278,0.66112,-0.91219,0.042049,0.92595 -1.1217,-3.0704,-1.4228,1.058,0.72086,-0.29675,-2.1059,0.50404,0.93197,0.017426,-1.1887,0.47037,-0.82719,0.64027,2.1109 3.7978,0.17979,-0.47673,-0.3356,4.5103,0.74373,1.189,-0.98158,-0.93519,0.0081988,-0.021059,-0.59531,0.27289,-1.8601,-0.8198 -1.7021,-2.2951,-1.5599,-0.090274,-0.051833,0.15646,-2.6771,0.42127,0.49192,-0.26356,-0.59601,1.6147,-0.37382,0.40039,1.7786 -1.1706,-3.7946,-1.2485,1.0701,1.7872,0.53755,-1.8328,0.14455,0.24859,-0.51224,-1.6487,0.12216,-0.027502,0.64681,2.0739 -0.61994,-2.5718,-1.5612,1.4007,1.2328,0.048368,-1.2052,-0.19309,0.88681,-1.0895,-0.91964,1.3283,-0.032824,-0.83558,1.7642 -0.17893,2.8119,-1.5531,0.77643,-0.6817,1.9653,-0.71964,0.9975,-1.1165,-0.23394,-1.301,-0.53031,-0.69041,-0.55866,-0.48609 -1.3247,-4.1879,-1.1771,1.2851,1.9349,-0.2724,-1.9574,0.41272,-0.051955,-0.16446,-1.9071,0.031669,-0.27532,0.15042,1.8788 4.6757,-1.4258,-0.25751,-2.7242,2.9055,-0.46063,1.921,1.4271,0.62323,2.3125,1.2859,1.6698,-0.67587,-1.152,0.68376 -0.51006,-3.8011,-0.80956,1.1305,1.7051,0.74716,-1.5287,0.49796,0.17931,0.89709,-2.0847,0.12968,0.9508,1.0797,2.0814 -1.9417,1.9046,-1.2985,1.933,-0.091681,0.81464,0.65017,1.0511,0.45197,0.36809,-0.11741,0.7925,-1.1188,0.20132,-0.28353 3.7989,2.3943,-1.0526,-2.8474,1.6469,-1.3839,0.83765,0.40508,1.0393,1.1062,0.32601,-0.068844,-1.1465,-1.0474,-1.3044 -3.7196,0.43224,-3.3444,-0.94288,1.0421,0.26282,0.85407,-0.23047,-0.32897,-0.5269,-0.93865,-0.52176,0.41461,-0.5398,-0.73051 0.039253,3.7038,-1.3659,0.56681,-0.94607,1.9373,-0.33693,0.52499,-1.5795,-0.20561,-1.2867,-0.57559,-0.44328,-0.30539,0.38753 -1.6515,1.1392,0.28896,2.1993,0.76458,0.7412,0.63026,-0.37973,0.44005,-0.33423,0.77132,1.0349,-1.1903,0.23572,0.6178 -3.3248,-0.52819,-2.8839,-1.3094,0.74592,-0.43431,0.56466,-1.0535,0.083841,-2.2472,-1.8477,0.085257,-0.28116,0.63578,0.074761 1.9007,0.061802,-2.3273,0.336,0.97444,1.2998,2.4199,0.4995,0.81782,1.4706,-0.60144,2.1451,0.48298,-0.26212,-0.90943 -3.8303,1.7409,-0.43512,-1.5653,0.66644,0.91542,1.9164,-1.2109,-1.1135,0.80902,0.27809,-0.21539,0.79004,-0.2986,-0.55634 0.9033,3.2778,0.78904,-0.49921,-0.066491,0.16012,-2.2855,-0.46049,0.10614,0.18794,1,0.9762,0.1832,1.195,-0.3907 -1.5187,4.0587,1.5429,-0.53457,0.97379,0.41484,-0.0091712,1.3306,-2.526,0.069391,-1.2981,-0.58757,-0.67663,-1.2445,0.51022 4.2549,-0.26333,-2.3285,-0.71975,1.691,1.4188,1.6444,-0.28787,0.020352,0.16421,0.95328,-0.90022,-1.0962,-1.3627,0.073551 -3.6083,0.87052,-2.1626,-1.035,0.16071,0.22429,2.0361,0.19302,-0.19118,-1.2128,-0.65537,-1.8805,-0.18439,-1.2324,-0.72538 -0.89718,-0.46279,3.6734,-0.29434,1.5335,-0.49423,1.0871,1.6904,0.59506,0.93123,-0.65729,-0.81682,0.15568,-2.4706,0.15053 -2.3048,0.8814,-0.4848,1.0632,1.0778,-0.61484,1.7898,1.7618,0.10797,-0.96279,-0.30174,-0.73042,-2.0137,-2.011,0.8831 0.83201,1.3583,0.77228,-2.0307,0.56068,2.5327,2.5148,1.5232,-1.2124,-1.1467,0.55105,-0.33196,-0.52984,-0.72988,0.61472 -1.6665,1.7477,-0.93016,2.0129,-0.55413,1.1164,0.43111,0.52176,0.75509,1.2378,0.19401,0.95117,-0.82061,0.37289,0.049302 -3.1164,-0.274,-0.41175,-1.5793,-0.059559,-0.70441,0.88595,-2.3117,0.87004,-0.023365,-0.54959,0.2674,1.4128,0.28845,-0.52942 -2.5522,2.0683,-0.8743,0.3785,-0.13617,0.95568,1.1956,1.6874,0.90447,-0.14602,-0.070492,0.23649,-0.73775,-1.0156,-0.20797 -2.6529,-0.22807,2.3258,0.35133,0.3759,-0.77134,1.0658,-0.23,1.6085,-0.63365,0.71841,0.16424,0.18297,-0.37125,0.077212 -2.2722,-1.7214,0.22639,1.7107,1.1365,-0.97243,2.1432,-0.28043,0.49796,-1.5177,0.19668,-1.1346,-0.25272,-1.1768,0.41596 2.0744,2.5044,-1.0069,-1.141,0.37439,-0.79278,-1.1053,-1.0342,1.0848,1.8746,0.61041,-0.70432,-0.22577,-1.4573,0.052062 -1.8036,0.43337,2.3129,0.97948,0.45471,-0.77489,1.4047,-0.199,2.2434,-0.32638,0.48865,0.79394,0.23479,-0.15445,0.2719 -3.7406,1.9593,0.11139,-1.0799,0.30974,0.82798,1.5108,0.26223,-0.47828,0.23582,0.55802,-1.0388,0.94714,-1.6462,0.16486 3.9261,0.22139,-1.355,-0.19699,1.7643,0.57237,1.498,-1.5362,-1.364,-1.0778,-0.76598,-1.06,-1.0988,0.21759,-1.689 -3.9337,0.20225,-0.056906,-0.52759,2.1991,-1.4353,1.6784,0.43163,1.0101,0.34393,0.018063,-1.0451,-0.97401,0.054421,-0.36922 -2.1716,3.1124,-0.55358,-0.12861,0.12223,0.48694,-0.76842,0.36527,-0.2418,-0.11595,0.27618,1.7201,-0.076208,0.17597,-0.82473 3.0246,1.6524,3.1539,-1.1912,0.74305,-0.34439,-0.52427,-0.059889,1.3054,-0.53527,-1.1069,1.1795,-0.0080074,0.25,-0.87375 1.3377,-0.51396,4.5552,-0.63025,0.67043,0.54908,0.42593,0.79948,1.3278,-0.79891,-1.0262,0.7592,0.12258,-0.098713,-0.74181 1.6915,2.5545,-2.6268,-1.8972,0.19885,0.041332,1.7026,0.84142,0.35593,0.64715,-0.4893,0.30681,-0.58002,0.59531,-0.81002 0.59095,2.0845,4.2306,-2.2151,-0.10766,0.55736,0.24759,-0.31398,-0.043159,-1.3132,-0.25931,0.56663,-0.45936,0.37452,0.44746 -1.2165,0.50098,0.53922,-0.75671,-0.34237,2.3772,0.41574,-1.1768,-1.0448,-1.8871,0.76651,-0.95536,-0.47451,1.4234,-0.094088 -2.4409,1.0193,2.4352,0.56547,-0.065746,-0.82235,1.0065,-0.20654,1.625,-0.51174,0.5843,1.0401,0.49146,0.17375,0.40415 3.3586,2.8494,0.42907,-1.4799,1.5968,-1.6885,-0.09356,-1.7113,-0.21526,1.8253,0.0040459,-0.84823,-0.66878,-0.72039,-0.1688 0.65128,1.1306,0.53465,1.6826,0.9866,-0.46728,-0.97443,-0.96084,1.0941,-1.7762,-0.47502,1.5254,1.6787,-0.16735,-1.4305 -1.1212,3.0459,0.74128,0.92144,1.8637,-1.4894,-0.90543,2.1878,-0.26466,0.4632,-1.0015,-0.46714,0.70568,-0.65272,-0.14631 -2.1313,2.1254,2.0526,0.084101,-0.64882,0.082627,0.82192,-0.098374,0.48017,1.1395,0.4709,1.003,-0.5671,-1.4114,1.04 4.8871,-1.0257,-1.6747,-0.74028,1.7621,2.0896,1.9722,-0.71963,-0.29204,0.48091,0.63635,-0.62199,-1.1997,0.68087,0.49947 0.60008,2.7474,-0.11317,-0.87828,-0.81119,0.78543,-0.79224,-0.99511,0.1781,-0.99261,1.0603,0.64611,-0.079799,1.3259,-0.038581 0.37831,4.1415,1.536,-0.66703,-0.89519,0.72242,0.18341,-0.25898,-0.93111,0.6179,-1.4408,0.53592,-0.20786,-0.06962,-0.14134 -0.96883,2.5569,2.3958,-0.040953,-0.76827,0.26202,0.22195,-0.62608,1.129,-0.39642,-0.36461,1.5371,0.4629,0.26001,0.91184 2.2231,3.027,2.1645,-2.5346,0.32592,-0.58653,-1.2281,0.73988,-0.70098,-1.0971,-0.19437,-0.2534,-0.75123,-1.4226,0.063857 -2.5116,0.76195,-1.9368,0.58975,-0.41573,1.2406,1.5063,0.40642,1.6861,-0.014515,0.48044,0.59405,-0.61076,0.53965,-0.6708 -0.77479,3.2454,0.06148,0.34714,0.32991,-0.50975,-2.245,1.3799,-0.70973,1.4916,0.092046,0.18662,0.33224,-0.57151,-0.95376 3.5791,2.1417,1.229,-0.66862,0.75614,-0.062527,-0.79084,0.34355,1.2605,0.21393,-1.5514,0.22968,-1.7316,-1.291,-1.6149 0.27618,-0.45238,3.5731,-0.31891,-0.083587,0.9426,1.0947,0.89797,2.0799,-0.59006,-1.3711,0.87195,-0.09637,-1.3889,-0.23928 -2.2607,2.4039,0.65988,-1.2109,-1.0872,1.5982,1.9663,-1.3516,-1.3119,0.73457,0.44925,-0.73184,-0.82315,-0.45308,0.0018335 0.48568,2.751,1.2301,1.4766,0.69293,0.37755,-0.53935,-1.6024,-0.5399,0.63352,-0.66093,0.23999,-0.80842,0.4315,0.49012 -3.4356,0.92922,1.2503,-0.39878,-0.41469,0.81653,1.249,-0.80297,0.62767,-0.61843,1.5489,1.3526,-0.33385,0.66061,-0.37833 -1.9855,2.8081,0.61321,-0.19362,0.36928,0.49033,-0.36648,0.38743,-0.12878,0.60706,0.44528,0.71823,0.097987,1.0676,-0.87029 -0.14537,1.0436,0.70272,1.7133,2.9516,0.18735,-1.0025,-1.287,-0.20757,-1.9764,0.7164,-0.38049,0.45168,1.1464,-0.093828 0.59332,0.2842,2.7651,2.0514,0.69111,1.1105,-0.091476,-0.5958,1.3147,-0.56511,-1.4797,0.72524,0.1716,-0.12738,0.4294 -2.2201,1.7359,1.7192,-1.8627,-0.50819,0.88485,2.3259,-1.0135,-0.38048,-0.042772,-0.64693,0.066114,-0.1391,-1.4954,0.6884 2.7115,2.9271,-1.1075,-1.6303,-0.32181,0.60016,-0.45379,-0.32463,-0.097567,-1.9899,-0.39159,-1.1018,-0.824,-1.0052,-1.0544 -2.1229,-0.49354,0.31324,-0.18703,0.90738,-0.015694,-0.41778,-2.1457,1.0804,1.9926,0.60345,0.49398,-0.65108,0.44667,-0.35444 3.4924,0.80715,-2.2969,-1.7275,2.7197,0.80613,1.7371,-1.5513,-0.99583,0.81787,0.14646,-0.15411,-1.4824,-1.1958,-0.17766 1.2672,3.5199,-1.2174,-0.64114,0.40548,0.10814,-1.4718,0.2024,-0.030802,0.58237,-0.47615,-0.80934,-0.51682,-0.69001,-0.6737 1.3108,3.3238,0.38077,0.1501,-1.8314,-0.8835,-1.8399,-0.52804,-0.82758,0.63646,-0.2658,0.31244,-0.25989,-0.31036,-0.26249 -2.0478,-1.4513,1.139,1.9938,1.1198,0.27688,0.73341,-0.48056,1.232,0.42796,1.0916,-0.92517,-0.3505,0.38021,-0.4815 -2.935,-0.40831,-3.5391,-1.3163,1.2239,0.24356,-0.55186,-0.59896,-0.051615,-1.9516,-1.8016,0.76031,-0.80206,-0.331,0.31189 -3.5737,0.20121,-2.2812,-0.67597,1.166,1.2714,0.46228,-1.9752,-0.60053,-0.23464,0.20718,0.27404,-0.082739,0.08396,-1.3805 2.6425,2.3386,-0.96266,-1.4435,-0.97527,0.93368,-1.7642,-0.69382,-0.36399,0.27521,0.57873,-0.49037,1.1999,-0.65487,-0.97705 -0.34921,2.4637,-0.87008,1.4893,-0.31658,0.30519,-1.1354,-0.27538,1.3997,0.16919,-0.49913,0.88511,0.29068,0.35684,-0.2393 -2.728,0.41853,-1.0842,0.50655,-0.078793,0.39479,1.9793,0.98877,1.5907,-0.26212,-0.22924,-0.64445,-1.0422,0.86554,-0.5759 1.0948,1.6059,-2.444,0.06227,2.0044,2.0739,0.76257,0.6201,-1.5878,0.092892,0.35924,-1.3676,-0.60843,-0.11868,0.90168 0.20684,-1.1899,2.1796,2.8113,1.7772,1.7664,-0.44883,0.69736,-0.30696,-1.0733,1.2891,-0.43283,0.066639,1.6598,0.66681 1.0591,2.0339,1.1985,-2.0529,-0.1027,0.41979,0.032794,-0.91921,-1.061,-0.46275,0.33,0.37337,0.48201,1.7464,0.80991 -2.9928,1.0267,-0.67992,0.31552,-0.82056,0.93907,1.0167,1.4616,1.0122,-0.74921,0.54474,-0.42902,-0.45851,0.84707,-0.93539 -3.4466,-0.40727,-2.3561,-1.0436,0.13992,-0.17124,-0.31372,-0.0038652,0.93198,-0.89708,-0.3437,-0.37273,-0.1623,1.2356,-0.88055 -0.24875,0.86306,0.22492,2.0366,1.2411,1.2418,0.037228,1.7633,1.6486,-0.13703,0.7874,-0.3797,-0.18989,1.3015,1.1288 -0.2943,1.2784,1.125,2.2096,0.97423,0.98531,-0.89168,-0.72715,0.98668,-0.63549,-0.59124,0.47544,-0.19512,-0.69856,1.4138 -1.7788,2.843,2.0902,-1.2253,-0.41854,1.0314,0.89963,-1.5126,-1.19,-0.67277,0.46998,0.012565,-0.17719,-0.17554,-0.14285 1.1752,-0.24327,3.27,0.94002,0.674,0.52819,0.20151,-1.6363,1.3647,-0.25526,-0.45954,0.68141,-0.57291,-0.19027,-0.21765 3.1532,-0.57202,-1.2776,-1.187,0.97609,3.9383,0.16012,0.083603,-0.83952,-0.47105,-0.75729,0.69937,1.8224,2.0479,-1.2555 2.1083,-0.24106,3.3851,-2.7816,-1.2277,1.8105,-0.1117,1.8907,0.066785,-0.23085,-0.18667,0.59678,-0.95502,-0.14071,-1.38 0.26439,-2.0105,4.2131,0.30707,2.0302,1.1009,1.9406,-0.55614,0.72493,-0.92885,-1.7821,0.50607,-0.22089,0.23078,-1.4423 2.3686,-0.12582,4.642,-2.0303,0.23216,0.98969,0.51697,0.80648,1.297,-0.5983,-1.3414,0.81992,-1.1313,1.5596,-0.89892 0.94093,2.8134,-2.6023,-0.21441,-1.1804,0.99075,-0.044403,0.49874,0.17816,-0.06762,-1.4007,-0.055789,0.21959,-0.62188,-1.6645 -1.8381,0.17154,2.6602,-0.053337,0.3573,-0.87781,1.3844,0.47712,1.8153,-0.1452,0.018408,-0.30248,0.9211,-1.436,0.14228 -0.70957,-0.85972,3.8722,0.73053,0.65682,-0.2642,1.3704,-1.6032,1.1968,0.71536,-0.3611,0.39551,-0.32641,0.45377,-0.16234 0.85825,0.35304,1.3777,0.56342,1.5773,1.0924,0.97001,-0.49331,0.039078,-0.84019,-0.51464,0.50967,0.6333,-2.0917,1.1529 2.7129,2.7307,1.168,-2.3358,1.2645,-1.5288,-1.6035,-0.45642,-0.96556,0.82712,1.8689,-0.6496,-1.2198,-0.35693,0.57898 3.1231,-1.3296,-2.2079,0.30029,0.52902,2.9043,1.3883,0.62156,0.6077,0.94595,0.77275,0.45898,-1.4968,0.21588,0.3563 1.0012,2.109,-0.8153,-0.99545,0.11691,2.2097,0.052982,-0.49893,-0.23146,-0.48066,0.77541,-1.1477,-0.0046805,0.23217,1.0892 0.54483,-2.0634,3.5704,-2.5595,-0.099763,1.5231,1.4606,-0.06408,1.4896,0.89622,-1.3561,-0.56097,-0.67442,1.1039,-1.0971 -0.076354,-0.61487,3.7519,-1.9516,-0.70715,1.5716,-0.016577,0.63338,0.99491,0.11989,0.0347,-0.077423,0.61306,-1.2318,-0.65402 -1.6301,-0.41485,2.2964,1.5,0.3267,1.0446,0.21954,0.83344,1.976,0.41376,1.2545,-0.16596,-0.77555,0.9695,0.58293 2.072,2.1576,-1.4325,1.3907,-0.1878,0.72956,0.00073465,-1.4896,0.09327,0.54428,-1.7247,-0.671,-0.81631,-0.57982,-1.2622 2.0509,1.9142,-0.10439,-0.32803,2.4259,-1.236,-0.28246,-2.1027,0.80022,1.2191,0.14511,-0.073442,0.34036,-1.2958,0.067629 2.0036,4.3623,-0.21613,-2.2519,0.46882,-0.17121,-1.4361,-0.84848,-0.61155,-0.30762,-0.039898,-1.0252,-0.34805,-0.27143,-0.62327 -3.1248,0.49789,-0.28462,-0.36432,-0.77633,-0.99409,1.4053,1.0979,0.72212,-1.1773,1.1885,-1.1227,-0.40098,-1.0531,-0.16066 -3.8042,-1.6249,-0.39384,-1.93,1.3471,-0.64837,-1.1993,-0.098327,1.0989,-0.9845,-0.38994,0.17462,-0.60085,1.5593,0.40249 0.739,2.886,0.73481,0.5605,1.0151,-0.73518,-0.7271,-0.057594,0.43141,0.31742,-1.6526,0.53736,1.4951,-1.7456,-0.96517 -0.26232,1.7355,3.9181,-1.1981,0.79822,0.52177,-0.62727,1.0412,-0.79392,-0.29582,1.0424,0.50284,-1.0298,1.8699,-0.018087 -0.082301,-0.27636,1.5462,-2.5856,-1.3227,2.6592,1.6326,1.0256,0.46567,-1.0528,-0.40675,-1.1557,-0.18012,1.097,0.21621 -3.6339,0.75447,-2.4887,-0.94965,0.70216,0.80879,2.0282,0.3123,0.28453,-0.039588,-1.3722,-1.1392,0.57579,0.70508,-1.1769 -0.51753,0.60713,3.6953,-0.5408,1.013,-0.95455,0.67089,1.7335,0.30487,0.046045,0.42336,-0.013505,0.69431,-2.2882,0.51576 3.3898,3.1728,-0.49273,-3.6071,1.3026,-0.028352,0.32989,-0.32056,-1.7297,-0.60412,1.1781,-1.4846,-1.3207,-0.66322,0.029165 -4.1488,-1.055,-2.112,-1.6319,1.2334,-0.6479,-0.88641,-0.042077,0.039175,-0.64104,-1.1563,0.3087,-0.19891,1.0778,-0.035441 2.2679,-0.63314,-0.3743,-0.18892,0.40589,3.3192,-1.1634,0.37315,-1.2268,0.15969,-0.75631,0.81932,3.2391,1.6686,-1.3979 -2.1187,-3.4362,0.15187,-0.046089,1.7781,-0.2266,-1.3546,0.20588,1.5477,0.33459,-1.6994,-0.87368,0.10128,1.6938,1.4473 2.5427,0.26582,0.039735,0.55076,1.5391,0.75486,-1.147,-2.2139,1.2753,-1.2997,-0.36354,0.34053,0.89682,-1.0778,-0.48138 -2.6928,-2.5714,0.84581,0.216,1.9686,-0.54068,-0.4885,-1.8789,1.3919,0.26546,-0.77002,-0.42836,-0.02968,0.4515,0.42196 -3.9097,0.21298,-1.4977,-1.3632,1.1451,1.2797,0.014684,-1.5787,-0.5491,-0.59414,0.43516,0.29689,-0.036694,-0.011184,-1.1351 -1.6742,-3.7242,0.1903,0.63173,1.9502,1.2188,-0.63111,-0.091983,1.1559,0.34024,-1.1897,-1.2299,0.6092,1.7677,0.6952 -2.4954,-1.8049,0.72207,-0.29223,0.64797,-0.0019153,-0.50968,-0.61105,2.57,0.14618,-0.26126,-0.52541,0.30161,0.74418,-0.007227 -2.4695,-2.827,0.20147,-0.42053,0.71476,-0.30644,-1.1284,-1.1634,2.0435,0.55399,-1.262,-0.28885,0.24776,1.0342,0.24046 -3.2272,1.1165,-0.12089,-0.53903,0.21959,1.9632,1.4895,-1.0237,0.52851,-1.0729,1.0721,-0.15399,0.12729,0.22611,-1.5496 -3.7837,-0.36831,0.068498,-1.7915,0.58523,0.55465,0.11836,-1.6989,0.20734,-1.1718,0.19901,-0.48545,0.85473,0.080457,0.067906 3.8752,-0.77427,-1.6931,-2.7962,-0.25375,0.095326,2.7215,1.8232,-1.9668,0.36319,0.7671,1.968,0.25017,-1.8101,-0.054077 -3.3851,1.3818,0.045852,-0.43121,-0.38244,0.84569,1.0619,1.0141,0.88125,-1.2844,1.1141,0.061878,-0.2095,-0.384,-0.33426 0.055768,4.0743,-1.3052,-0.48746,0.74731,1.1329,-1.2947,0.58226,-2.3934,-0.10985,-0.21398,-1.3092,-0.50768,-1.0575,-0.72308 -1.6354,1.5005,1.7825,-0.099054,-0.53964,1.4627,-0.14289,1.0016,1.3896,0.73084,0.96852,0.29655,1.1132,1.1376,0.16526 1.6709,1.8112,-2.1412,1.1239,0.26567,1.8326,0.18469,-1.9235,-0.088631,-0.98028,-1.181,-0.37812,-0.23817,0.0049489,-0.99153 -3.3698,0.51391,0.18117,-0.17717,-0.25421,0.68884,0.65752,0.11978,1.712,1.0207,0.66761,-0.48092,0.9663,0.91351,-0.2571 -0.79669,1.2319,2.3879,-0.26164,0.18463,0.0020984,-0.094661,1.1202,1.5167,-0.88396,0.99042,0.70666,1.3005,-0.085809,0.81993 2.4791,-1.1235,-2.5815,-0.68708,-0.020262,3.0494,1.3647,-0.51786,0.23927,-0.81396,0.24006,0.66375,-0.32185,-0.85726,0.81819 2.9881,-0.97784,0.70347,1.5968,1.6219,1.8319,0.019544,0.74834,-0.27999,0.11144,-0.75167,1.695,1.7134,1.33,-1.0614 3.0609,0.0015046,0.2038,-0.14739,3.0112,0.69549,-0.77517,-1.966,0.25721,-0.55469,0.84594,0.9925,1.4493,-0.45009,-0.086572 -2.8036,2.1994,1.6458,-0.10151,0.48047,1.5326,1.1662,0.68094,-0.52668,-1.4,0.4175,-0.67658,0.75788,-1.0339,1.1816 -2.7917,0.78314,0.14049,0.50166,0.86312,-1.9746,1.6091,1.9737,1.145,1.2623,-0.29529,-0.95232,0.19391,0.0020269,0.61149 0.078304,1.4973,0.84023,0.96971,0.64152,-0.68929,-1.341,1.7132,1.6617,-0.88536,-0.77277,0.70663,2.0086,0.10401,0.088021 -1.9303,0.93318,1.2066,1.0818,0.31976,-0.23375,0.47923,1.7346,1.9421,-0.13066,0.64628,-0.60466,0.39524,0.07458,0.29892 0.43111,0.10967,1.9792,1.4605,0.72941,0.36014,-0.38831,1.9874,1.9105,-0.41685,-0.031788,0.49636,1.2955,0.2894,0.61629 -1.5481,1.9728,-0.08483,1.49,-0.065474,0.37498,0.91934,-0.455,-0.15917,1.1133,0.12034,1.5014,-0.37681,-0.80743,0.61074 -0.32936,0.13905,1.4969,0.48328,-0.78887,1.4352,0.069887,1.2287,2.3979,0.28913,0.097963,0.23651,1.4071,0.56788,1.1692 1.6983,1.7561,-1.4513,1.3251,0.11119,1.5942,-0.83227,-2.0572,0.2572,0.11419,-0.038205,-0.60125,0.31382,0.38615,0.080699 -3.2319,1.7889,-1.2317,0.32082,-0.23436,1.6202,2.3744,1.7134,0.11863,-0.79326,-0.62358,-0.45842,0.03924,0.25675,-0.24078 3.1343,2.0193,1.0979,-2.8662,0.24261,-0.010804,-0.85948,0.06693,0.39519,-2.0997,-0.53064,0.73674,-0.21204,-0.85657,-1.3926 0.51523,2.6557,1.1483,-0.4142,0.25037,0.027581,-1.7864,-0.20836,1.2653,-0.85434,-0.1885,0.93709,1.6412,0.47451,0.2422 0.43389,2.9003,0.43846,0.51842,0.61767,-0.60382,-1.5244,-0.61864,1.55,0.043975,-0.16116,0.96633,1.3006,0.86174,-0.52847 3.9207,-0.64874,-0.66935,-1.4243,1.5345,2.6031,2.0372,-1.6105,-0.91404,-0.32117,0.87111,-0.045772,-0.0086856,-0.83103,1.1055 3.1378,1.3738,-0.049132,-0.62913,1.4538,0.30745,-0.8954,-2.3157,1.0868,0.94204,1.1162,-1.3118,-1.3807,-0.12125,0.93971 3.3965,1.1075,-0.0078608,0.18324,0.53368,0.95059,-0.37659,-0.67897,1.401,-0.088218,-0.97957,0.0026243,-1.8553,0.50261,-1.6891 2.8782,0.84634,-2.2612,-4.4197,0.25858,0.6123,1.2862,1.9106,0.13014,1.1987,1.4087,1.1376,-0.20706,-1.1827,1.1062 -2.9901,0.24206,1.6134,-2.7117,0.42893,0.080151,0.7809,-2.1578,0.005473,-0.18768,-0.12546,-0.73237,0.93953,0.41012,-0.031798 0.63728,2.5454,2.2727,-1.2608,0.92484,1.0845,0.47539,1.1109,-0.27679,-1.7433,-0.21641,0.03033,1.0286,-1.8356,1.2745 1.9254,2.6024,-1.5297,0.19806,0.23748,0.11808,-1.2838,-1.4908,0.58658,2.2196,0.35687,-0.98769,-0.49922,-0.021106,-0.28968 -1.1506,-2.2981,2.7428,-1.6244,-0.28609,0.56864,1.1786,-1.0587,1.6433,0.0079894,-1.4273,0.45584,0.48702,-0.71668,-1.9127 -2.3102,2.5821,0.43412,0.2311,-0.21475,1.1766,0.62493,1.3556,0.52953,-0.30943,1.2843,0.20385,0.17786,-0.11904,0.09619 -1.6185,0.26834,-2.5104,-1.2379,0.70906,1.514,0.96625,-2.2331,-0.99797,0.61477,-0.72387,-0.31308,-1.5475,-0.0092721,0.0019432 -3.5128,-0.2658,0.067947,-0.93248,1.0123,1.2702,1.0657,-1.309,0.39276,-1.4042,0.39763,-1.379,0.37102,-0.81543,-0.25352 0.73182,3.6471,0.78576,-1.1009,0.33484,0.12983,-1.7446,0.0032658,0.037893,-0.60795,-0.45165,0.30325,1.0682,-1.2364,0.42268 0.98409,1.8913,0.28561,0.12495,0.95455,-1.0379,-1.4125,1.1282,0.96088,-1.3448,-0.29562,0.01595,2.332,-1.5601,-0.76915 -0.49653,2.548,-0.54746,1.3137,-1.5376,1.9499,0.36491,0.025757,-0.92541,0.033322,-0.64966,0.053326,-0.13611,-1.1695,0.57446 1.9893,1.8045,-2.0663,-0.99253,0.17583,1.3518,-0.86124,-0.71536,0.54037,-0.59873,0.99949,-1.4206,0.87167,-1.3031,0.11153 -3.1061,1.6659,-0.13164,-0.19303,-0.86761,0.78335,1.6023,-0.093775,0.29221,-0.34404,0.70513,0.83722,0.77764,-0.84216,0.52419 -1.4771,1.7437,1.6017,-0.66187,0.73599,1.0152,0.1006,0.7471,-0.19189,-0.015379,2.1836,-0.011291,-0.54066,1.5139,-1.0844 0.026801,0.87775,2.2644,0.94582,0.88603,0.48007,-0.92844,-1.8767,-0.80393,-1.4277,1.1791,0.64112,-1.1527,1.8746,0.74148 -2.7149,1.7,-0.21314,-0.075565,-0.48141,2.104,1.8918,-1.0928,-0.043331,-0.26257,0.5567,-0.52358,0.58304,-1.0208,-0.1415 -2.5979,1.0605,-1.6855,-0.77283,0.10468,1.2447,1.7237,-2.061,-0.58063,0.76666,-0.29988,-0.30981,0.43323,-0.80603,-0.45743 -1.5137,1.1613,2.0625,0.009187,-0.98087,0.11065,0.80837,0.49768,1.4565,-0.40202,-0.50009,0.39451,1.3223,-1.4135,1.2278 -2.9973,1.5082,1.075,-0.97665,-0.017135,0.84998,1.7622,-0.99979,-0.58704,-0.31045,0.60694,-1.1584,0.68147,-1.7671,0.58068 -3.254,-0.27721,-4.0899,-0.96293,1.5338,-0.98842,0.395,-0.29833,-1.0397,-1.1559,-2.6485,0.23579,-0.32455,0.020011,0.44504 -2.2212,3.2016,-0.53384,0.20375,-0.35765,1.7919,1.5053,0.44692,-0.59298,0.032708,-0.20226,1.0891,0.59517,-0.93783,0.46796 -2.2742,2.8091,1.5108,0.79248,0.25507,0.46047,0.89815,0.0046805,-0.3591,1.0653,0.37433,1.1633,-0.77181,0.55593,0.1718 0.036389,2.4098,-0.15669,1.583,0.018151,0.13912,-1.0966,-0.65814,1.3706,-0.11849,-0.053973,1.4109,0.59987,0.27143,-0.74455 1.133,3.1256,0.054735,0.94419,1.1321,0.55724,-1.2539,-0.33168,-1.3223,1.0152,-1.3835,-0.79048,-1.4948,-0.70098,0.17397 -3.1896,0.26232,0.12602,-0.72184,-0.8953,0.47024,0.68868,-0.20233,1.1672,0.49722,0.37448,-0.38446,1.1401,-0.61892,0.24893 3.0342,2.0287,2.2302,0.38614,2.4363,-0.68252,-0.93741,-1.2262,0.46709,0.60927,-0.71369,0.45084,-0.3629,-0.97596,-0.92032 2.4887,-1.3024,0.69021,1.1404,2.1429,1.8306,-1.6477,-0.017744,0.68609,-1.5337,-0.34788,0.87055,1.8557,0.57002,-0.24357 -0.22041,-1.6732,1.837,1.6678,0.13769,1.9183,0.69623,0.55927,1.3977,-0.93529,-0.57043,-0.016496,1.1205,-0.82623,0.14312 -2.2602,0.27912,1.3573,-1.0093,-0.15199,-0.46504,2.3712,-0.79958,0.76201,0.62025,-1.1383,0.17846,1.6874,-1.362,-0.62442 0.68977,0.48854,1.3305,2.0624,0.85581,-0.38652,-2.0407,0.76998,1.841,-1.0147,-0.85975,0.39493,1.0268,0.16482,-0.22183 -1.6639,-0.3102,2.1319,-0.64437,-0.86249,0.7465,1.2063,-0.85964,1.7709,-0.43105,0.010763,0.30697,1.2676,-1.0653,-0.45493 1.5822,-1.1289,3.379,1.4011,1.402,2.4515,0.8724,0.19693,0.85292,-1.0579,-1.0417,0.63422,0.88377,0.30583,0.20786 0.41073,2.1965,-1.2933,1.3318,3.2587,-0.9448,-1.4085,0.58868,0.14721,-0.048101,0.74295,-0.37493,-0.20908,-0.48843,-0.98291 1.0783,2.3392,-0.49793,-2.6535,1.0933,-0.40677,-1.7655,-0.026174,-0.16895,1.0354,2.7914,-0.12271,1.0821,-1.4551,0.40642 -3.6311,0.51722,-0.61758,-1.2581,-0.17336,0.69498,1.1405,-0.4472,-0.068988,0.68483,0.1827,-0.12213,1.499,-0.61089,0.084438 -2.1197,-1.4577,-0.34704,-2.3548,-0.27105,1.1713,-1.9447,-1.5023,0.035213,0.19578,-1.5118,0.96102,0.29959,1.5756,1.167 -3.333,0.11101,0.92051,-2.5303,0.40035,0.26375,0.22326,-0.99313,0.065224,-1.2225,0.17229,-1.1175,1.2336,-1.0276,0.48014 1.8738,1.9249,1.5902,-0.7246,1.008,-0.36853,-2.2739,0.0055819,1.8884,-0.35181,-0.34376,0.3776,1.3629,-1.07,-0.41739 -1.3156,2.2448,-0.47189,2.448,0.4033,1.0086,0.012765,0.33194,0.67096,0.15672,-0.19221,1.0129,-0.74197,0.29182,0.20539 -3.2582,-1.508,-2.3512,-1.6427,1.5024,0.10237,-1.6306,0.34186,-0.22,-2.3827,-1.3379,1.3055,-0.7247,0.32689,1.3222 1.1727,0.70665,2.0212,0.52049,1.3173,-1.7979,-1.2802,1.7136,0.34262,-1.0458,-1.547,0.49243,0.74177,-2.5795,-0.79793 2.7632,-2.7595,1.5998,-3.0179,0.84526,0.77404,0.85123,0.61908,-2.4132,0.79059,-1.3215,1.8525,-1.0732,3.561,-1.2045 0.043785,1.9934,1.8343,0.12257,0.5051,-1.6096,-0.97469,-1.1274,-0.12658,0.28986,0.81339,0.63069,-0.088837,2.2923,-0.3714 -3.9668,-0.61061,-2.1496,-1.7563,0.32659,-0.89761,-1.0194,0.061183,-0.2447,-0.68099,-0.67162,0.071454,0.4121,-0.1332,0.17898 2.16,-0.58318,-1.7737,-1.2415,1.1564,2.3054,2.5254,-0.23927,-1.3099,-0.043149,-0.45939,1.3546,-0.57381,-1.7268,0.47838 -1.7909,-2.0745,1.9911,-1.0781,0.16241,0.31434,-0.41425,0.23705,2.1877,0.19204,-0.99325,-1.0451,1.4311,0.4299,-0.056071 -2.5222,0.45608,-1.7871,0.53842,-0.60128,2.3636,0.84322,0.88012,1.1216,0.27479,0.50643,-0.22861,-0.71249,-0.14356,-0.79616 2.8715,-1.5475,-3.0329,-0.45286,0.035175,3.0119,0.93138,0.81941,0.1964,-1.5752,1.5552,0.0090882,-0.17622,-0.40181,0.15805 -3.7186,0.29355,-2.5105,-1.5101,0.72695,-0.069735,0.20748,-0.5085,-0.12831,-1.1878,-0.42659,0.26568,1.1069,0.4167,-0.051978 2.3091,-0.52641,-0.034045,1.5114,1.236,1.6473,-1.2853,-1.5197,1.356,-1.0491,-0.37117,0.075733,1.171,0.5065,-0.55813 -3.505,0.58245,-1.8175,-0.59874,-0.3462,1.1059,0.67268,0.099763,0.66803,0.12292,0.39658,-0.4816,1.0892,0.30444,-0.14371 -1.7806,-2.697,1.2754,-0.96746,0.49842,-1.1315,-0.92211,1.0681,1.4872,0.47308,-0.94047,-1.0997,0.59477,0.070725,0.47937 -1.4859,-2.8765,-0.77911,0.39948,1.0045,-1.3336,-0.79667,-0.32785,1.0808,0.4385,-1.8541,-0.2187,0.69869,-0.64615,0.18601 3.5755,1.0016,-0.43843,-0.096297,0.56345,-0.36067,-0.1221,-1.2778,2.0399,-1.4382,-0.65289,-0.28265,-0.8849,-0.7333,-1.9449 -3.8783,-0.57659,-1.1851,-1.4159,0.76514,-0.94369,-0.25326,0.39592,1.2976,-0.61496,-0.48898,-0.6089,-0.49982,0.3912,-0.54498 -2.727,1.3183,0.17867,0.98678,0.0090779,0.43315,1.1039,1.2928,1.1132,0.15987,0.38875,0.82704,0.58517,0.67053,-0.023362 1.1443,-0.99218,1.8035,-2.8218,0.38535,1.1253,1.5087,1.962,1.2211,-0.20384,-0.69452,1.3353,0.15676,0.39167,-1.5137 -2.098,-1.7089,-0.18295,-1.6039,0.10955,-0.74303,-0.97865,0.2616,1.1922,0.60315,-1.1511,-0.54612,1.2112,-0.64081,0.77974 0.26455,1.7959,0.58513,1.9062,2.8569,-0.85613,-1.5013,0.71121,0.19044,-0.38431,0.022551,0.49813,0.49796,-0.16975,-0.42686 1.4118,3.166,-0.83466,-0.69196,-0.49598,1.5894,-1.3767,-1.1557,-0.50539,-1.4477,0.039903,-0.46504,0.53527,-0.20296,0.13929 1.4877,1.9404,1.5237,0.98141,0.40345,0.39105,-1.2269,-1.637,1.0451,0.00041494,-0.22084,1.4293,-0.28887,0.44004,-0.23362 2.7133,2.5329,0.23799,-1.897,0.26127,-0.8939,-1.2003,-0.6685,1.5795,0.19026,-0.76953,-0.19433,-0.67758,-1.2374,-0.91656 -2.1036,4.0502,0.33867,0.27862,0.64852,0.03321,-0.19655,2.0321,-0.57261,-0.33945,-0.26919,0.73773,-0.094008,-0.15568,-0.44205 2.0979,2.9261,-1.6601,-2.8463,0.033271,-0.088049,-0.83342,-0.15537,-0.09235,-0.26403,1.0088,-1.3052,-0.92127,-1.4377,-0.11917 0.33286,2.4256,-1.7728,0.096576,-1.0143,1.6434,-2.057,-0.19848,0.42803,0.033607,0.59192,-0.068699,0.39448,0.1113,-0.92973 2.9574,0.67173,-0.049807,0.4517,1.8782,0.41768,0.89177,-2.0771,1.0873,-0.72704,-1.0428,0.76556,-0.63943,-0.34498,-1.842 -1.324,4.361,0.52049,-0.29801,0.49558,0.93558,-0.37374,0.094858,-2.416,0.23097,-0.32126,0.70348,-0.0071102,0.53245,-0.87424 -2.4649,-1.3707,-0.031913,1.9931,0.52431,0.96717,0.77223,0.67039,0.61366,-1.5568,0.22884,-1.0844,-0.9606,0.71327,0.9903 1.2224,0.67403,1.0126,-0.016312,-1.0271,1.6856,-0.20978,1.0099,2.3854,-1.0025,-1.1248,1.3512,0.24799,-0.059097,0.18772 -0.85878,2.003,-1.4408,2.383,0.80662,0.89289,-0.62803,0.41249,0.44394,-0.34096,-0.32158,0.95109,-0.13006,-0.57398,-0.023809 -0.87905,1.6468,-0.19127,2.8725,0.53802,0.035562,0.37642,1.081,1.513,-0.54965,-0.30437,0.22512,-0.10934,1.1047,0.73307 -2.2978,1.0312,-0.3641,1.9571,0.44311,1.2162,1.4696,-0.53664,0.066152,0.63403,0.2676,-0.18421,-0.021387,-0.1162,0.98656 -2.8941,-0.98616,-1.4213,1.5213,0.65095,-0.27395,1.0501,0.37649,1.1659,0.63353,0.012467,-0.67195,-0.24461,0.61071,-0.21812 2.0493,-1.9057,2.9828,0.93656,1.9685,2.9468,1.6482,1.1074,0.13857,-1.9638,-1.6844,0.30054,0.13699,-0.81542,0.65823 -0.32815,3.1949,0.46192,0.18126,-1.6708,1.8254,-0.041363,-0.06078,-0.32248,0.45063,-0.67392,0.54968,0.28241,1.0517,0.51475 -0.66835,3.9402,0.16095,-0.0011026,-0.822,1.7946,-0.96037,0.51043,-1.5326,0.18224,-0.92371,0.28162,0.76349,-1.082,0.39664 -2.267,0.097948,0.71726,1.1919,-0.37316,-0.20028,0.73055,0.49656,2.2825,-0.29703,0.8479,-0.0404,-0.66428,-0.28556,0.68661 -3.1751,-0.82244,-2.0625,0.53837,0.55442,-1.3024,1.0438,-0.1649,1.0191,0.24541,-0.041672,-0.15279,-0.55311,0.79564,-1.1938 1.5102,2.1965,-2.6091,-1.3633,-0.77772,0.79045,0.3126,-0.0785,1.0121,1.6067,-0.41792,-0.31454,0.45476,-0.47492,0.067277 -2.9383,0.75987,-0.68153,0.40073,-1.1078,0.64254,0.61878,1.5087,0.97382,-0.95706,0.5097,1.2097,0.050253,0.65099,0.28051 -1.1509,2.7739,-0.67691,1.019,-0.28122,-0.38514,-0.88246,1.9118,1.0807,-0.51209,-0.38749,0.37285,0.425,0.00090582,0.56948 -2.2257,1.1106,0.64047,-0.67134,-0.3541,2.3901,0.47352,0.54769,1.093,-0.74211,0.87149,-0.29388,1.4233,-0.077252,0.51988 -2.5935,2.3671,-1.0261,0.62488,-0.61154,1.9687,1.0119,1.019,-0.42105,0.086672,0.44376,0.375,0.73766,-0.88202,0.66234 -3.1885,-0.96695,1.4958,-2.066,1.4603,-0.91385,0.24755,-0.70476,0.63258,1.5473,-0.10084,0.0080782,-0.093469,-0.77171,0.2536 1.9392,0.65956,-1.6458,0.77044,0.59793,1.679,-0.76387,-2.215,0.78733,0.46836,1.0325,-0.51884,0.35607,-0.72003,0.69868 -2.7179,3.2627,0.23767,0.25819,1.1624,-0.086244,0.68383,2.0201,-0.39052,-0.75484,-0.49461,1.1278,-1.2555,-0.0848,-0.77545 -3.0351,1.0833,2.6797,-0.74651,1.0183,-1.6326,1.4631,0.47537,0.097012,0.4661,0.17497,0.38762,-0.065645,-1.647,0.86079 -2.149,-1.0277,2.3299,2.046,1.7645,-0.49206,1.1168,0.51401,1.0629,-0.88093,0.11273,-0.44511,-1.1835,-1.2426,1.7571 0.62159,2.9326,2.1088,0.13831,2.6553,-1.8156,-0.88611,0.8992,-0.11267,-0.0011245,-1.3575,0.22535,0.7905,-0.90777,-0.46688 -2.1733,3.1821,1.1203,0.263,0.77294,-0.96465,-0.71454,2.0091,-0.11297,-0.73018,-0.18324,1.0332,-0.32917,-0.67451,0.55367 -1.1237,3.0857,1.0044,1.4541,2.5223,-1.6253,-0.91816,0.89682,0.26412,0.18295,-0.63808,1.1653,-0.67447,0.096873,-0.23285 -3.1928,1.8509,1.8347,-0.62181,0.56281,-0.51397,1.1451,0.68131,0.39024,-0.6103,0.81663,-0.51869,1.0687,-0.18537,0.6613 -3.5007,1.2029,-1.8577,-0.16997,0.61861,2.2537,1.4489,-0.47535,-0.68701,1.1095,0.44789,-0.33037,0.095692,-0.72778,-1.6208 3.5113,-0.10485,0.241,0.42091,2.0403,0.43694,-0.26803,-1.2162,1.2685,-0.74078,-0.50361,-0.5818,-0.51097,-1.2305,-0.74411 1.3055,0.83152,2.4986,1.7469,1.4454,0.66598,-0.75106,-0.024025,1.6619,-0.54858,-0.60706,0.41838,0.023966,-0.74964,1.6595 0.94298,2.2708,-1.468,-2.5309,-0.69457,0.50925,0.8743,0.22607,-0.72955,1.2705,0.69741,0.46371,-0.82795,0.69832,0.57871 0.91551,1.8264,0.87033,-1.0414,1.4588,-0.35094,-1.2335,0.93376,1.417,-0.26824,1.0356,1.2612,1.0512,-0.89236,1.2378 -0.46798,2.6584,-0.40335,0.59414,-0.66316,0.35137,-1.2303,-0.91105,0.76117,0.78212,0.11873,1.0497,0.25942,0.35302,-0.66407 -1.6944,2.6779,-0.45139,-0.059465,-1.4902,1.0052,1.2533,-0.29603,-0.036731,0.14277,0.35217,0.56196,1.1245,-0.43071,0.64418 1.8071,0.91819,2.4966,1.8508,2.296,0.3671,-0.47262,-1.889,0.73024,-0.68596,-0.94846,0.80202,-0.51609,-0.072297,0.71446 0.099016,0.68386,3.0139,2.0698,1.4272,-0.43644,0.34865,-0.43952,1.2841,-0.2252,-1.0781,0.78142,-0.51701,-1.4255,1.652 2.3327,1.2569,-0.6987,-0.66638,0.51796,-0.96244,-1.0255,-1.2186,1.5567,1.377,1.188,-0.65487,-0.79495,-0.9022,0.58412 4.7586,0.95532,0.31051,-0.49151,3.8104,0.04169,1.257,-2.1483,-0.84298,-0.88568,-0.96698,0.087818,-1.2816,-0.88545,-1.6982 -2.9163,0.7696,-2.721,0.12287,0.46127,1.6214,1.7491,-0.1024,0.36364,0.53055,-1.4487,-1.0219,0.20056,0.67042,-0.7247 4.0571,0.58233,-0.55609,-3.4609,1.5577,-1.1879,0.70728,0.60039,1.9592,0.35491,0.83131,0.52025,-1.1258,-0.29098,-0.099032 -0.18238,3.7088,0.35545,0.14476,0.09342,-0.32963,-1.3998,0.59138,-0.56233,1.9378,-1.2353,0.78808,0.1558,-0.8614,-0.35847 -0.73984,2.1989,0.96348,2.4038,1.8801,-0.91212,-0.48856,0.19911,0.35895,0.73519,-1.0147,1.3272,-0.47204,-1.253,0.75737 -2.0359,3.4845,0.78426,0.49095,0.00211,-0.34752,-0.49684,1.4339,0.029011,-0.23187,-0.052387,1.4748,0.29466,-0.48177,0.24351 -3.2224,2.3209,-0.30978,0.32251,0.29128,1.8499,2.3892,-0.54854,-1.1641,0.42377,-0.0027949,0.47741,-0.099313,-0.052731,-0.61639 -0.026808,2.6783,1.2719,-0.48838,-2.3322,0.48675,0.062186,-1.4113,-1.8462,-1.7578,-0.21586,0.17897,-0.83653,-0.23202,0.38001 0.96199,2.1045,3.9003,-1.5986,-0.65802,0.38679,0.19673,-0.34292,0.38948,-0.24033,-0.2029,0.52755,-1.1944,0.054197,0.77665 1.0233,1.8919,2.2071,1.5004,1.8483,-0.94113,-1.6788,-0.46186,1.3874,0.07863,-0.40873,0.63478,-0.16805,-0.91634,0.27077 -1.1942,2.4322,2.7844,-0.97754,-0.72589,-0.0041422,0.3721,0.25837,-0.35968,1.1668,0.4021,-0.16214,-1.0069,-1.5876,0.95782 -4.1251,0.026269,1.4562,-1.5696,0.65754,-0.69058,1.015,0.23283,0.61975,-1.2726,0.59313,-0.67482,0.42833,-0.17159,0.55512 2.7056,1.8708,1.926,-0.60025,2.9829,-1.4371,-1.0523,-0.51219,0.22606,0.97106,-0.28079,-0.37038,0.064547,-1.2321,-0.47905 2.3788,1.8373,-2.2774,-0.82693,-0.69018,-0.23785,-0.20522,-0.88774,1.0937,0.75364,0.072924,-1.1455,0.45638,-0.33311,-0.10321 -0.57546,2.9576,1.9015,1.0797,1.344,-1.3449,-1.2459,1.2648,1.0465,-0.57002,0.23052,0.90394,-0.23608,-0.44155,0.23506 0.68982,3.7303,-2.1647,-0.33864,-0.73362,1.6443,-0.64722,-0.62094,-0.90651,0.33122,-0.75281,-0.71675,0.52873,0.61679,-0.54063 -3.4871,1.4988,1.3763,-0.59796,-0.22467,0.64106,1.0166,0.64552,0.33175,0.3605,0.88798,1.1118,0.045441,-0.26141,0.5608 -4.4106,-1.3404,-0.38974,-2.0917,0.97328,0.55376,-0.074734,-0.77728,0.67199,-1.5415,0.27906,0.10021,-0.60797,0.77715,-1.1202 4.2088,1.0591,2.2768,-2.1468,2.4339,-0.84957,-0.034673,-0.6379,0.80418,-0.27457,-0.064018,0.97454,-0.0030214,-0.19122,-1.4732 -3.8224,0.83878,0.99492,-1.4911,0.16035,0.63033,0.79866,-0.31964,0.62811,-0.09239,1.4937,-0.22578,-0.03641,-0.7975,-0.52367 -4.3028,0.28094,-1.074,-1.9268,1.4999,0.37857,0.69612,-1.8288,-0.3756,-0.49839,0.50926,0.63782,0.031148,0.68061,-1.3355 -2.2709,1.3752,3.1694,-2.79,0.093493,1.5524,0.61632,-0.24142,-1.5848,0.42238,0.40856,-0.87699,-0.81821,-0.36918,0.32832 -0.91583,1.99,-1.8536,1.7281,-0.43532,0.42515,-0.89601,0.68309,1.3488,0.18905,-0.066565,0.77749,-0.00040948,0.060382,-0.87882 4.0416,-2.3215,0.050948,-2.4346,3.045,0.33581,2.1627,0.37895,1.4853,0.31235,0.82632,3.1655,0.081756,-0.18564,0.032553 -1.091,2.9467,-1.1945,0.41073,-1.512,1.5022,-0.87114,0.8943,-0.55664,0.93747,-0.46968,1.2725,0.68833,-0.02775,-0.083726 -1.1436,-2.4991,0.40909,-2.5119,-0.46195,0.56752,-1.2272,-0.65577,1.0919,-0.35943,-2.2504,0.49703,0.66636,-0.11802,-0.22303 3.3129,1.4973,1.0312,-1.312,2.4951,-0.90944,-0.94999,0.20881,-1.3296,1.2659,1.9851,-0.089207,0.52948,-0.57136,-0.62018 -3.1134,-1.7378,0.58547,-2.293,-0.073771,-0.47181,-1.7188,-1.1883,0.37181,-0.57413,-0.21155,0.50717,0.44629,0.50145,0.24346 -1.0127,-2.0336,1.7999,-1.6895,-0.24687,0.51327,0.09452,-0.30909,2.6462,-0.31631,-1.0693,-0.67756,0.8709,0.45749,-0.34375 0.59168,3.0463,0.34992,0.29582,-0.35993,0.11138,-1.7519,-1.1584,0.96605,-0.21497,-0.3511,0.61624,0.31193,0.059143,-0.43706 -1.4955,-3.1349,0.80835,-1.6317,0.46511,-0.46776,-0.89138,-1.0903,1.7996,0.1224,-2.1906,0.55947,0.62423,-0.12104,-0.22306 0.6257,3.0772,1.2451,1.7294,1.7945,-0.02354,-0.22565,-0.6333,-0.75502,1.7395,-1.8135,0.82977,-0.058089,-0.65093,-0.64577 -2.7359,-2.3128,1.0512,-2.0008,-0.010823,-0.40017,-1.5992,1.0714,1.1128,-0.46197,-0.65013,-1.3401,0.99597,0.27623,0.74843 -2.5445,-2.2809,-1.8751,-1.0806,-0.60561,-0.66341,-1.4602,0.5375,0.67844,-0.9982,-0.93999,-0.448,-1.4064,0.61396,0.57152 -0.72376,-2.3331,1.3624,-4.3657,0.23082,1.492,0.099249,-0.35558,-1.3714,-0.45664,-1.901,-0.17953,-0.39244,1.6857,-0.5983 -1.8191,-2.6659,1.4397,-1.2778,0.13095,0.24367,-1.486,1.0998,1.3711,0.57449,-0.92684,-1.2353,0.74438,1.6814,1.0793 -2.6204,-1.4959,0.83531,-1.1117,-0.27139,-0.16857,-0.63659,0.28199,2.207,-0.17917,0.070998,-1.0667,0.32696,0.2657,0.64182 -2.7275,0.61363,1.0643,-1.7732,-0.73281,1.6488,0.36158,-0.78057,0.64903,-1.096,0.76243,-0.44153,0.57026,-0.55377,0.078965 4.1274,-0.50263,0.46209,-0.71465,0.20611,0.79127,1.3834,1.6731,-0.83514,0.23081,-0.71402,1.463,-1.4401,2.8843,-1.3148 2.0132,1.4477,-0.80867,-1.3668,1.2359,0.48027,-0.00049922,1.4174,0.923,-0.44876,-0.69552,1.5492,0.89258,-1.3102,-1.2793 3.5181,-0.20024,0.33624,0.61502,3.2663,1.1151,0.029969,-1.7691,0.45567,-0.20486,0.10161,-0.16426,0.91197,-0.14518,-0.50328 -1.3688,2.21,-0.76677,1.6605,-1.1124,0.90482,0.0012964,0.263,0.30966,1.4558,-0.14172,1.5744,-0.5199,0.69311,-0.16008 2.2508,1.2213,1.6735,-1.3168,0.96163,-0.23201,-1.949,-0.094727,2.1495,-0.12904,-0.61879,0.76379,0.57708,-0.12271,-0.058165 3.5578,-1.9685,-0.055861,0.71312,2.1764,1.9486,-1.0664,-1.6855,-0.92453,0.16129,1.6246,-0.037521,0.89505,0.017308,0.39261 -3.7837,-0.063843,-0.30435,-1.5922,0.56059,0.18721,0.24614,-2.1956,0.14675,-0.055667,0.20129,-0.17627,1.102,0.83481,-0.34346 0.48403,2.9033,0.3268,0.59167,2.2112,-1.1045,-1.6695,-0.52924,1.1552,0.41816,0.19765,0.78591,0.14778,-0.21089,-0.63129 -3.0615,1.2204,1.3938,-0.70274,0.20004,-0.1444,1.0618,0.67358,0.89675,-0.77944,1.0483,-1.0243,1.0699,-1.5738,1.1039 -3.2203,0.88492,-2.153,-0.94349,-0.34765,0.95018,0.82898,-1.2382,-0.41324,0.34847,0.27958,0.13853,1.4682,0.56833,-0.86145 -2.6441,0.98048,2.0756,-1.2879,0.27455,-1.0544,0.93506,0.675,1.4431,0.033829,0.47473,-0.78701,0.85332,-1.6072,0.81692 1.9835,-1.3841,3.295,1.3104,2.5694,1.074,0.63794,1.2431,0.47696,-1.4571,-1.4092,0.77488,0.37,-0.93869,0.76512 0.27862,3.4926,0.083657,-0.32011,2.4665,-1.8576,-2.1682,1.294,0.33667,0.64736,0.31415,-0.78854,0.99526,-1.247,-0.56761 -1.1459,1.8434,2.4668,-0.64699,0.54827,-1.2943,-0.37907,2.5305,0.60829,-0.95325,0.24633,-0.16918,0.40958,-1.6879,1.5107 0.95369,-0.85043,2.8546,1.4114,1.9944,1.4633,0.69798,1.4858,1.1896,-1.0918,-1.0224,0.42329,0.68178,-1.0036,1.3236 -2.9997,1.304,-1.3348,0.58821,-0.31673,-0.3954,1.7095,0.92001,1.1434,0.55691,0.19003,-0.3488,-0.090997,-0.23311,-0.14794 -0.39608,-0.089357,3.7464,-1.8947,-0.49278,0.45808,1.02,-0.53574,1.7512,-0.50046,-0.29533,0.058695,-0.049351,0.44579,0.043956 -1.5991,2.1356,-2.008,0.50049,-1.0962,0.36931,-0.74897,2.1504,0.73342,-0.4005,-0.31511,0.19745,-0.1365,0.026461,-0.30526 -2.6432,-0.94383,1.3995,-1.5786,-0.027411,-0.18361,0.19206,0.08978,1.5917,-0.7509,0.2058,-1.8016,1.3853,-0.73951,0.79389 -0.036618,-0.66214,2.7585,0.31206,1.0569,1.3617,1.603,0.19447,1.6354,-0.69956,-0.46443,-0.86913,0.838,-1.3224,0.60026 -0.58067,1.374,2.4011,-0.82569,-0.10575,0.53479,0.3647,0.34437,1.2558,1.4265,0.26935,-1.046,-0.33271,-0.66761,0.5806 -1.9073,0.9151,2.826,-1.7286,-1.0914,0.62912,0.63605,-0.2318,0.89199,-0.25191,0.18779,0.38766,-0.27146,-0.93283,1.2394 -2.1841,0.31946,-3.6423,-0.44439,-0.32953,0.43475,0.31658,-0.0099418,1.0173,-0.56756,-0.62282,0.34036,0.50632,0.74443,-0.82193 -0.96543,-0.0066832,3.6682,-0.44968,0.27857,-0.78798,0.57765,0.72992,1.099,-0.059346,-1.1254,0.9549,-0.066855,-1.4739,1.2541 -1.9115,-0.092715,2.1642,-0.24666,-0.30753,0.44739,0.15656,0.15456,2.3283,0.40409,1.2167,-0.10115,-0.1499,0.48789,0.51448 -2.5684,-0.91958,1.9821,-1.1896,0.57622,0.00043844,0.0046608,-0.2066,1.7895,0.74869,1.0512,-0.36647,-0.45519,0.075327,0.4294 0.85677,0.93803,-2.2063,1.2139,1.2599,0.55513,-0.89353,-0.99616,1.2539,0.54284,1.3779,-0.25108,0.86171,-1.3537,0.33166 -2.0883,0.67775,3.0476,-1.021,0.26495,-1.1809,0.83441,0.52663,1.4083,-0.12459,0.61939,-0.22322,0.57272,-1.0811,1.1356 0.42928,2.7214,0.43244,0.22885,0.11566,-0.11194,-1.7972,-0.55504,1.5512,-0.33702,-0.47116,0.80137,1.3532,-0.64467,-0.053341 -0.40509,1.098,2.0428,2.2925,1.243,-0.74016,0.14977,-0.79642,1.0119,-0.46775,-1.1467,1.4467,-0.43755,-1.1288,1.3952 -0.49585,2.0436,1.5373,1.7368,0.89207,-0.99208,-0.22842,-0.096311,1.6869,0.0008527,-0.019207,1.7049,0.071563,0.30277,0.32256 -1.0501,2.6051,-0.73437,1.5898,0.5119,-0.3061,-1.3685,1.8481,0.96601,0.46797,-0.77976,-0.052834,-0.18521,-0.48139,0.06437 -2.3165,1.6624,1.4967,0.45147,-0.25645,-1.3579,-0.11167,2.1159,0.61065,-0.41782,-0.64911,0.95265,0.34741,-0.83605,1.2123 -1.1049,0.3213,2.3095,0.93116,0.32961,0.27413,-0.02881,0.38014,2.2636,-0.049957,0.96281,0.72102,-0.67323,0.34143,1.246 -0.17132,3.6967,-0.92927,-0.46066,-1.2981,1.2538,-0.08673,0.32203,-1.2043,0.91443,-1.79,0.2366,-0.1475,-0.21583,0.11123 2.6391,2.4169,0.29445,-1.6244,0.47492,-0.23427,-1.9544,-1.4832,1.1037,0.6692,0.86153,-0.18914,0.22263,-0.73499,-0.3487 -2.0638,1.7691,2.2589,0.55397,0.68901,-1.5634,-0.2512,1.3773,1.0208,-0.62749,-0.23788,1.6971,-0.64639,-0.8516,1.2133 2.9875,-0.59104,-1.2794,0.34258,1.8143,2.1765,0.025405,-0.88527,-0.59457,-0.45343,0.32755,0.014022,-0.30834,-0.63987,0.39671 3.7882,-0.33507,1.7068,-0.5934,2.1892,-0.020559,-0.98528,0.27217,1.6516,0.34107,-0.91534,1.4716,0.60626,-0.67231,-0.49219 -1.0952,0.45683,2.6898,0.48117,0.19056,0.00061086,-0.54168,1.1572,2.2369,-0.13906,0.35399,0.84215,-0.21371,-0.2829,1.5899 1.2469,2.1308,1.9315,-1.5462,-0.78618,0.32237,-0.95421,0.18537,1.2489,-0.93149,-0.76412,1.0249,-0.66462,-0.57589,0.6545 2.4453,-1.1529,-1.8073,-1.8764,0.60264,0.81842,2.2811,-0.093782,-2.2369,0.54927,-1.8161,3.2706,0.30699,-0.75743,0.47121 2.738,-0.85236,0.3911,1.1664,-0.037503,3.09,0.98237,0.68248,0.56439,-0.096138,-0.9582,1.3942,0.41533,1.3932,-0.71064 -2.2432,0.94225,1.3851,-0.80696,-0.84462,-0.039335,0.73272,0.91373,-0.052615,0.75998,0.22574,0.7751,0.00061294,-1.9234,1.41 -2.4455,-0.81716,1.9866,-0.16225,0.60622,1.0909,0.45806,0.46302,2.1547,-0.035635,1.2747,-0.84556,-0.2185,0.48327,0.78842 1.3141,1.6128,3.9469,-1.1466,1.7468,-0.35293,-0.19076,0.71893,0.35972,0.090073,-1.5075,0.7842,0.21905,-0.20084,-0.53057 0.45429,2.5797,3.2701,-0.84589,0.55277,-0.12522,-0.84645,0.18831,0.92165,-0.49775,0.026443,1.1184,-0.075767,0.83204,0.74754 1.998,1.5501,-0.050948,1.4591,3.3032,-0.0015281,-0.71333,-1.0616,0.38528,0.87877,-0.53471,-0.17253,1.3741,-1.2225,-0.8965 0.65546,2.6892,2.2379,0.3451,0.024731,-0.50421,-0.30733,0.26636,0.86102,1.1164,-0.72603,0.61646,-0.89781,-0.94802,0.9307 -1.1526,1.9325,1.3085,0.4905,-0.82269,1.148,-0.66093,0.55943,0.91557,-0.23971,-0.36728,1.5891,0.0036869,0.69723,0.91616 0.85215,1.6438,2.9416,-0.52846,0.046009,0.19143,-1.2539,0.72001,0.73115,-0.35433,-0.30376,0.51669,-0.5582,0.76445,1.3815 -0.6337,0.37528,3.4992,1.01,1.3587,-0.27074,-0.13161,0.82728,1.3557,-0.12839,0.73714,0.63837,-1.0709,0.096029,1.876 3.6352,2.4307,-0.66802,-1.5661,0.62796,-1.0429,-0.48393,-0.40588,1.205,0.76732,-0.42543,-0.64142,-1.1687,-1.396,-1.5503 -0.38287,2.6614,1.8345,-2.568,0.15879,0.23606,-0.66733,-0.31377,-1.8302,-0.70436,0.97275,-0.24758,-0.89049,2.0249,0.21929 3.5033,0.17647,2.4274,0.80347,2.3186,0.61218,-0.52633,-0.0029718,0.36507,-0.12924,-1.4322,0.17877,-0.77052,-0.85366,0.19546 -1.1217,3.3214,0.54711,-0.50996,-0.40286,1.2718,-0.23229,0.56522,-0.38508,1.3406,0.85392,0.14493,0.75054,0.20394,-0.62332 3.1246,-1.343,-2.5758,-0.38689,-1.1765,0.92039,1.5863,-0.52312,0.86793,0.59397,0.81213,0.99455,-1.7993,-0.43281,1.0633 2.6587,-1.0481,-2.4149,-1.2542,0.58057,1.0174,0.88374,-1.7943,-1.0504,-0.25216,0.60281,1.9711,0.63317,0.5354,0.31605 -0.48467,-0.10256,0.47926,-0.23887,-1.1085,0.74601,1.4003,-1.3748,1.7699,1.4703,-0.40356,-0.26758,-1.6305,-1.6691,0.13117 -0.96944,2.3639,1.8432,-0.19923,-0.046191,-1.526,-1.0696,1.7085,0.21006,-0.36247,-0.078583,0.55476,0.10756,-1.7059,1.4839 -3.5992,1.2046,0.85889,-2.1683,0.71125,0.89093,0.61945,-0.76824,-0.65993,0.024753,0.92495,-1.0208,0.24462,-1.1067,-0.29962 -1.2371,-2.2828,1.5462,1.8917,1.1784,2.4383,0.54895,1.0218,0.15657,-1.8227,0.1183,-0.67155,1.0378,0.83449,1.7102 -1.2725,0.11557,2.6665,-0.31989,1.1414,-1.1199,0.99181,-0.098752,1.6285,1.2949,0.039282,-0.66195,-0.23615,-1.7024,0.68456 0.20978,2.4858,-0.50444,0.75013,1.3487,-1.1713,-2.7342,0.81736,-0.33187,0.48718,1.4562,-0.13529,0.041208,-0.51208,-1.3527 -2.3662,1.5986,2.4242,0.14452,1.006,-0.41594,0.84603,0.31002,-0.14922,0.30844,1.566,0.33756,-1.0134,1.7606,-0.81711 1.944,0.57821,2.3878,0.15175,0.90754,-1.3014,-1.5786,-0.22412,1.8499,-0.74833,-1.0495,0.19419,0.23333,-1.2988,-0.49097 0.073277,3.3313,-0.99211,0.084164,-0.91062,1.2665,-0.90295,-0.13575,-0.34055,0.85757,-0.84689,0.1614,-0.20416,0.13165,-0.4129 -1.8813,0.65304,2.6746,0.13581,0.64394,-0.30546,0.155,1.7046,1.8326,-0.95297,1.5015,0.25497,-0.81171,1.0957,0.49489 -1.7098,2.6942,-0.77374,0.59993,0.021558,1.5381,1.199,-0.2307,-1.3508,-0.44889,-1.0399,0.14613,-0.87598,1.2617,-0.63722 -2.1414,1.4367,2.1625,-0.89353,-0.85595,0.55351,1.2282,-0.99561,-0.21968,1.6135,0.71947,0.60708,-0.3433,0.48221,0.15145 -1.0023,2.7588,2.2803,-0.80635,-0.87143,0.30606,0.94965,-0.35062,-0.055768,1.4067,0.63237,0.60749,-0.49915,-0.27792,0.66788 -2.0341,-2.0546,-2.2789,1.5454,0.53868,0.36906,-0.2942,-1.0734,0.6632,-0.29504,0.13205,-0.11825,-0.30031,-0.68393,-0.15381 -0.022566,1.7138,3.3687,1.6894,1.1632,-0.16779,0.3775,-0.77756,1.0582,0.80467,-0.12652,0.84106,-0.72249,0.27775,0.64321 -2.8712,-1.9861,-0.66749,-1.5585,1.6046,1.4048,-1.0633,-0.2794,-0.63459,-3.1534,-0.42171,0.30367,-0.10175,0.88586,0.075833 -0.99048,1.4683,2.8162,1.3328,1.2979,-0.34378,0.36091,0.11605,1.3518,0.26845,1.1321,0.53767,-0.81304,0.29271,0.64007 -1.9616,0.093635,2.519,0.23191,0.52479,-0.051542,1.0108,-1.9737,0.75181,1.1469,0.83112,0.13413,-0.92398,0.44414,0.49676 -2.7937,-0.015439,1.4148,0.15556,0.4347,0.41702,0.7196,0.75009,1.8037,-0.80702,1.3603,-0.233,-1.2696,0.955,0.050469 -3.2402,0.42221,-3.5747,-0.69926,-0.11224,-0.044484,0.85489,0.034966,-0.44628,-0.94038,-0.40256,-0.48394,0.61148,0.38112,-0.67169 -1.3363,-1.9798,2.3214,1.9191,1.7635,1.2447,0.25169,0.97991,-0.11961,-2.9838,0.15554,-0.721,0.075097,-0.078193,1.7072 -1.8857,-0.46783,2.0436,0.45506,0.69003,0.32166,0.84993,-2.4047,1.2126,1.4102,0.75685,-0.47946,-0.58817,0.45926,-0.33361 4.1581,0.14751,-1.3057,-0.22314,0.95652,2.0043,0.37749,-2.122,0.21716,-1.088,0.24509,-1.3115,-0.28557,0.080733,-0.68314 -3.348,0.79001,0.89561,-0.57798,0.045688,-0.14897,0.53747,-0.080108,0.69022,0.63815,1.5797,-0.20237,-0.13736,0.72073,-0.9787 -3.3826,0.056313,0.85751,0.64594,1.6617,-0.60106,1.0011,-0.89887,1.0165,1.556,0.84389,-0.47936,-0.81832,0.67157,-0.68825 -1.0469,2.0867,3.8716,-1.2144,1.8988,-0.85571,0.16154,1.4858,-1.0192,0.050479,0.5262,0.038359,-0.74284,0.55965,0.41965 -3.1712,-1.7707,1.0827,-0.42611,0.38064,0.68587,-0.25855,-0.62146,1.9635,0.53019,0.7449,-0.45211,-0.47083,1.9555,-0.41783 -2.2699,-0.1841,1.1164,1.2446,0.88433,0.52376,1.3227,-1.866,1.2043,1.4692,1.25,-0.044512,-0.80251,0.21375,-0.022715 3.9536,-1.1015,-0.59544,-3.7303,0.19001,0.11273,-0.22058,1.804,0.15406,2.0654,2.2643,0.7963,-0.75993,0.061806,0.7387 -0.98019,1.531,-0.75945,2.7429,0.51521,0.040407,0.22807,-0.63233,0.26026,-0.68579,-0.045903,1.3226,-0.37565,0.83435,-0.21543 1.3401,3.9981,-1.0819,-1.958,1.2324,0.86114,-1.4835,-0.38085,-1.4396,0.30067,1.152,-1.538,0.91655,-1.1584,-0.05898 -1.7798,1.0653,2.2856,-1.8695,0.043321,1.6217,0.68702,-0.22414,0.095187,0.43389,1.2293,-0.59308,0.3868,2.0862,-0.31403 1.7645,2.8046,-1.4052,-0.26522,-0.64249,0.37703,-0.83945,0.12958,0.55063,0.47299,-1.4128,-0.7501,-1.3822,-0.98469,-1.1872 -1.4522,1.6511,0.54774,-1.6576,-0.59157,2.5564,1.2894,-0.56676,-1.0077,0.073145,0.58216,-1.8397,-0.16483,0.44711,-0.1487 -3.4693,0.13096,-1.7729,-1.2929,1.2894,1.4359,-0.12814,-2.1707,-0.93962,-0.63114,-0.50033,0.81242,0.037205,0.72629,-0.50139 -1.2151,0.68944,2.751,-0.94243,-0.33216,0.55279,0.42178,-0.71328,1.6189,0.52327,0.68352,-0.060386,-0.12307,1.1071,0.52209 1.0825,3.3486,-0.31484,-0.55491,-0.15139,1.7945,-2.1727,-1.6683,-0.62224,-0.99339,0.88148,-0.44699,0.66195,0.068006,-0.74318 0.71873,0.20796,2.6644,-0.48081,0.66995,-1.294,0.32818,1.4095,1.9387,-0.17993,0.27671,0.45978,1.0009,-0.052362,0.82886 4.1758,-0.27671,-1.6638,-0.93721,2.1773,1.4941,1.6874,-2.0043,-0.51234,-0.36131,0.30206,-0.92412,-1.1425,-0.92689,0.49091 -4.2437,1.3705,0.24478,-1.7983,1.2221,0.21291,0.65709,-0.28598,-0.39085,-0.35715,0.72799,-0.87334,0.82395,0.065543,-0.6798 -1.2996,2.7445,-1.5536,1.7606,-0.68136,2.2014,0.25136,0.97745,-0.82252,-0.13771,-0.3484,0.58594,-0.60336,-0.54762,-0.64545 0.17946,0.9694,1.4575,0.46028,-1.9153,1.9388,-1.2253,-0.28925,0.892,-0.18259,-0.67628,0.93156,-0.32235,1.0806,0.81491 2.2904,1.2431,0.82177,0.28902,1.0895,-0.3652,-0.68862,-0.46875,2.2315,-0.71722,-1.4314,0.94525,0.62125,-1.05,-1.5682 -0.72634,3.1956,-0.55131,0.62285,-1.3168,2.35,0.62819,0.43728,-1.3314,-0.33474,-0.64321,0.0013372,-0.68586,-1.1996,0.56654 -3.1289,-2.2272,-0.17902,-1.4671,0.88074,0.16159,-1.841,0.34865,1.194,-0.21376,-0.90704,0.2393,-0.20342,2.1365,0.47442 -2.9341,-0.73419,1.506,-1.5781,0.44262,0.10404,-0.7256,0.6471,1.5754,-0.13841,0.28324,-0.85904,0.43661,0.93872,0.45202 -3.4233,-0.43208,-2.3196,-0.67065,0.44037,2.0117,0.34152,-0.27907,0.34881,-0.81314,-0.23686,-1.3322,0.15479,0.33733,-1.21 2.8564,-0.17168,3.291,-3.6234,3.009,-0.59002,1.7444,3.4566,-1.6498,0.060791,0.93835,1.4552,-0.21756,0.20675,-0.90194 -2.2206,-0.99756,2.5413,-3.9452,0.90076,1.1496,-0.81722,-0.26738,-0.73584,-0.67513,-0.79392,-0.8834,0.43694,0.63625,0.43936 -3.8972,0.813,-0.17613,-1.1626,1.2663,-0.47201,0.55562,-0.68521,0.58441,1.1665,0.3805,-0.41019,0.57242,0.32741,-0.90912 1.8678,2.0286,3.0937,-1.5231,-0.33905,0.94001,-1.3358,0.75638,0.73144,-0.77281,-1.1777,0.34905,-0.15077,-0.91294,0.96583 -3.1495,-0.27791,0.86056,-2.1713,0.23679,1.934,-1.4252,0.2859,-0.43102,0.010197,-0.41747,-0.30916,1.2385,2.2297,-0.66992 -2.084,-0.69858,2.3376,-1.8237,0.71063,0.88654,-0.58462,0.33829,1.228,-0.2383,0.99685,-0.4195,0.32374,2.2432,-0.26992 -2.756,-2.0159,1.5789,-1.1291,1.1074,-0.79575,-0.92805,0.54998,1.8346,-0.19972,-0.17334,-0.86535,-0.10183,1.5825,0.26395 3.5131,-0.17263,-1.5746,-1.8347,1.6139,-0.32678,2.3766,1.4187,0.17771,2.6726,0.26147,2.11,-1.3224,-1.3092,-0.2907 1.1003,1.5812,2.1937,-0.49836,-1.2897,1.2652,-1.5895,0.30743,1.1832,-0.18878,-1.0459,0.79851,-0.47652,1.254,0.65666 2.785,2.5421,0.60721,-0.066734,1.1544,-0.19377,-1.2998,-0.59927,0.78235,1.1839,-1.2155,0.15461,0.40832,-1.6108,-1.27 -1.9459,1.6719,-1.5333,0.76098,-0.38879,-0.32884,0.53211,2.1304,1.0116,-0.65058,-0.00052614,0.074139,-0.07705,-0.6702,1.2845 0.10888,2.1013,2.9077,-1.5492,-1.0265,0.4977,1.6254,-0.66631,0.19076,-0.56551,-1.0763,0.67906,-0.82367,-0.78644,0.21536 -1.4866,-0.96784,-1.3938,0.71931,-0.20859,0.78623,0.0384,-1.9992,1.568,0.2609,-0.047384,0.49677,0.92972,-0.21203,-0.52659 -2.6548,1.525,-0.94967,0.62224,-0.72453,-0.47553,0.98139,1.8522,1.1842,-0.12175,0.10066,-0.016163,0.0013189,-0.48062,1.1156 3.057,1.6338,-1.1494,-1.7865,0.50711,-0.113,-0.34611,-0.019554,0.87399,1.5275,0.40851,0.26387,-0.50235,-0.10252,-0.17185 -2.7466,0.52739,-3.696,-0.69009,-0.64811,0.70129,1.1141,0.53335,-0.19669,-0.60259,-0.59543,-0.75998,0.93827,0.47141,-0.67767 -3.5362,0.47977,-1.6703,-0.9113,0.36936,-0.76111,1.8788,1.214,1.0338,-0.2119,-0.61835,-1.0211,-0.42812,0.2822,-0.69429 -1.7467,0.99088,-3.5168,1.042,0.076786,1.0656,0.93343,1.7276,-0.34912,0.2562,-1.1222,-0.38353,-0.34006,-0.6677,1.1468 3.0163,-0.72494,-2.8737,0.21339,-0.22859,3.0818,2.4123,0.14329,-1.3938,0.55771,-0.98516,0.35175,0.1731,0.38908,-0.026221 -3.5994,0.55844,-1.9324,-0.99091,0.59953,-0.68008,1.6934,1.7535,0.80976,0.068344,-0.44783,-0.85891,-0.31166,0.53303,-0.46347 2.4624,1.3656,-2.3676,-0.49036,0.34516,-0.067375,0.26842,-1.521,-0.017412,2.047,1.1507,-1.0698,-1.4351,-0.45444,1.5662 -1.1727,2.8036,-0.82809,0.97623,0.26157,0.3853,-1.4522,1.3149,0.50529,0.16122,0.42578,1.4483,-0.05849,-0.24787,-1.0009 -2.2801,-0.10811,-0.85971,1.7176,1.2723,0.45794,1.4936,1.2019,0.0066085,-1.9483,-0.75606,-0.64299,-1.5544,0.097705,1.9438 1.0143,-0.21854,1.9313,1.067,1.693,0.029511,-0.21545,0.87829,2.1156,-0.86436,-1.5052,1.2721,1.0289,-0.068684,0.67615 3.0541,0.78077,-1.261,-4.8866,2.3436,-0.1638,2.779,1.8367,-0.25573,0.20605,1.5768,1.8785,0.11149,-0.60119,1.5572 0.23989,-0.27823,0.12307,1.8144,2.5779,1.3782,-1.415,-0.86337,0.1895,-2.611,-0.65899,-0.097022,1.6464,0.41996,0.74595 2.8985,0.92632,2.674,-0.75865,2.1079,-0.25725,-1.2141,0.1136,1.0698,-0.52099,-0.49404,1.2291,0.99332,-0.53098,-1.0788 -1.2529,2.5682,-0.77399,0.734,0.34004,-0.47569,-1.5122,2.2691,1.2768,-0.48895,-0.038996,0.49559,-0.098992,-0.89834,-0.091336 1.7024,-0.3371,1.6841,-2.0074,-0.93112,1.0512,1.3742,3.1432,0.58086,-0.27817,-0.25149,1.228,0.52939,0.48379,0.02045 -3.248,-0.26551,-0.25932,0.1829,0.6251,-1.1472,1.2109,1.2418,1.8098,-0.1949,0.14137,-0.59201,-0.70703,0.45014,-0.0057838 -0.60784,2.1559,0.15192,2.0479,0.81349,0.2134,-0.78941,-0.05368,1.8285,0.44736,-0.25466,1.6681,-0.35809,0.3907,0.056505 -2.0015,1.5157,0.17484,1.8751,0.27391,0.73621,1.4537,-0.96319,0.40294,1.4713,0.52201,1.0928,-0.88339,0.47587,0.76776 -2.4653,0.75238,-1.1357,-0.037272,0.26586,-0.65491,1.2267,2.5001,0.13327,0.83704,0.27108,-0.91845,1.1146,-0.64577,0.84561 -1.9952,2.6878,0.52452,-0.048457,-1.535,1.5762,1.6875,-1.0138,-1.2208,-0.1628,0.33443,0.49979,0.29294,0.54299,0.40937 -0.0090319,1.4155,0.85891,-1.4735,-0.83247,-0.78024,0.21017,-1.7666,-0.88958,-0.51937,-0.039073,-0.41398,-1.2391,2.909,-0.080522 -2.3216,3.2569,0.53869,1.0083,1.6774,-0.46619,0.14564,1.3953,-0.66673,1.208,-0.26222,1.5031,-1.3213,1.5758e-05,-0.50073 3.688,-0.38171,-1.9644,-1.9329,0.49539,-0.19889,2.2481,0.097683,0.87779,1.0872,0.76051,1.5574,-1.6963,-1.6398,0.65196 0.73542,0.9911,-1.4364,-0.68505,0.12593,2.6492,0.38907,0.84628,-0.4728,-0.44778,0.57912,-0.67904,-0.36119,0.28795,0.81726 -2.501,1.9854,0.69159,0.098892,-0.21408,0.14933,0.88351,0.49631,1.4736,-0.11767,1.0588,0.14809,0.34958,0.2364,-0.41417 0.90861,2.3256,-2.9581,-2.6324,-0.013405,1.4285,0.036879,0.48459,-1.4201,0.65615,1.8271,-0.54011,0.37048,-1.2274,1.2844 -2.9882,0.31092,-3.4213,-0.9691,1.0608,-0.34913,0.86064,-0.80735,0.071059,-1.3706,-2.3717,0.073705,-0.077854,0.093844,0.36967 0.6366,2.8931,-2.1267,-1.743,0.061583,1.5499,-1.5452,0.27393,-1.2292,0.24231,0.98225,-1.5406,0.972,-1.2516,0.25337 1.2147,2.2818,-2.4257,-2.27,-0.66319,0.46004,-0.83705,0.073726,-0.18594,1.4962,1.6886,-0.35988,0.55713,-0.73452,0.69111 -0.82299,3.5136,1.2271,-0.38764,0.027975,0.65366,-1.0633,0.76712,0.22545,0.2496,0.010795,1.0462,0.69457,-0.51551,0.44472 -3.8084,1.6571,0.15709,-0.90092,0.42054,0.0020777,1.4176,0.12709,-0.77442,1.2549,0.72007,0.54051,0.14067,-1.1216,0.10515 0.82453,2.2625,-1.6046,0.093811,0.53232,-0.26272,-1.3898,-0.11522,0.50627,2.2331,0.5019,-0.36347,0.84498,-1.4228,-0.20563 -0.15125,3.4792,-1.2108,-0.21316,-0.8576,0.9905,-1.7437,0.11126,-0.70267,0.95303,-0.21311,0.34783,-0.2304,0.26424,-1.0511 -0.68618,2.8447,-1.4545,-0.33433,0.13349,0.3691,-2.3493,1.1696,0.57264,0.75399,0.52585,0.32912,1.0525,-0.65978,-0.9564 0.87799,2.2594,1.3634,-0.46905,-1.0755,-0.25894,-1.1592,-1.1365,0.51336,-0.93066,-1.0476,0.31796,-0.37709,-1.0136,0.04438 3.2186,0.37894,-3.1713,0.085172,0.7304,1.9894,1.3777,-0.26106,-0.94344,-0.22337,0.16255,-0.60096,-0.3182,0.4987,-1.2247 4.1382,0.6502,-0.4589,-3.3348,1.4974,-1.143,1.4972,-0.63277,0.52206,2.4406,1.3907,1.0466,-1.5481,0.25606,0.80943 1.5467,1.832,-2.0005,-1.0511,-0.48231,0.29459,-0.15704,-1.234,2.0306,0.25197,0.054945,0.11584,0.66609,-0.74622,-0.6097 1.7475,2.209,-1.5807,-2.8008,0.088732,0.8389,-0.92036,0.16553,0.46282,2.0367,1.2918,-0.46674,0.26141,-0.87397,0.95764 0.83245,2.5714,-1.571,-1.043,-0.5236,0.31877,-1.7718,-0.35725,0.23713,1.9752,0.90086,-0.29795,0.67809,-0.43202,-0.24127 4.195,-1.5215,1.8855,-0.02983,3.6292,1.2321,-0.81309,-0.94576,0.47083,-1.0139,-0.25771,0.29238,0.32802,-0.22306,-1.0798 2.534,0.45345,-0.16258,-2.3341,0.83964,0.3577,-1.0261,-0.13843,2.4329,-0.32669,0.18465,0.84588,1.5386,-0.99215,0.0026428 0.18519,1.3682,0.83499,2.5558,0.044178,1.9411,-0.67451,-0.88429,0.45106,1.3227,0.16619,0.090251,-0.70866,0.60689,0.43172 0.66846,2.3886,-1.5556,-2.5121,0.1469,0.56126,-0.96319,0.073206,0.37475,1.7629,1.4928,0.13528,1.1596,-0.9595,0.91347 -0.83026,1.5791,-0.14629,-0.15562,-2.2984,0.97856,1.7258,-1.1995,0.19126,-0.14887,-0.13369,0.14049,0.43208,-0.79539,0.14597 1.7304,2.8901,-1.3795,-2.5504,0.27864,0.76645,-1.2205,0.037301,-0.47302,0.67879,0.69942,0.0023022,0.78981,-0.75349,0.33225 4.0915,-1.2552,0.24168,0.02983,1.9773,3.2136,0.32803,-0.04025,-1.3219,-2.4508,-1.4957,0.3325,-1.4507,1.9611,-1.4671 1.8891,4.3015,0.54971,-1.49,-0.044328,-0.26331,-1.6002,-0.40291,-0.78906,0.75766,-0.7497,-0.49294,-0.44817,-0.6484,-0.57213 2.5245,-1.0965,0.79033,-2.1573,4.8319,-1.8575,0.79776,-0.60286,-2.4312,0.63386,1.9876,0.52887,-0.9499,0.15071,2.1503 1.1675,4.2569,0.035543,-1.4071,0.054428,0.7108,-1.4927,-1.5008,-1.4041,-0.94175,0.20772,-0.51024,-0.17668,-0.067319,-0.43809 1.1853,2.6868,-0.48896,-1.5416,1.5115,-1.0935,-1.5522,0.46578,-0.3818,1.5302,1.5969,-0.86896,1.4045,-2.0755,-0.051313 -0.6972,3.8333,-0.23071,0.63929,0.17162,1.5967,0.93855,0.96429,-1.8784,0.046566,-1.5824,-0.62227,-1.7608,-0.033265,-0.0037553 -0.3056,2.1844,-1.2023,0.5441,-2.0948,0.29782,0.33092,-0.94073,-0.18768,1.249,-0.72096,1.2821,0.25632,-0.02522,-0.0921 4.0641,0.21421,-1.9213,-0.63201,0.92066,0.21485,0.8896,-1.3386,1.6026,0.22787,0.65361,-0.64475,-1.9834,-0.016466,-0.20744 2.8699,0.24927,1.4322,1.0424,1.5168,1.4625,0.97179,-0.15668,0.29015,-1.9085,-1.9504,0.7487,-2.3113,-1.2749,-0.62269 -0.20464,2.1253,-2.4741,1.1378,0.26979,1.98,-0.30641,0.42951,0.082385,-0.62355,-0.43322,-0.83875,0.35913,0.27698,-0.57093 0.40541,4.0076,0.77343,0.03486,-0.40334,-0.053512,-1.6174,-0.72792,-0.37462,0.36272,-0.29595,0.81284,-0.8047,0.12068,-0.55721 4.5376,-0.72926,-0.66124,-0.70973,2.4012,2.2334,1.0773,-2.1358,-0.5375,-0.28729,0.52193,-0.79208,-0.041954,-0.24297,0.66502 4.6467,-1.6895,-1.7579,-1.5712,1.4394,3.0733,1.7371,-0.25243,-1.4024,-1.8696,0.26394,-0.22413,-0.40719,2.0844,-0.48797 -0.15086,4.2555,0.05618,-0.13299,0.38912,0.5286,-1.8831,0.033434,-0.56544,-0.1317,0.39917,0.81272,0.22083,0.52804,-1.3867 2.9627,1.5137,0.77609,0.017009,0.093036,0.25807,-0.69393,0.10457,1.3402,0.0065242,-1.8003,0.20454,-1.8602,-1.1194,-0.84936 4.047,2.3842,0.26955,-2.1794,0.35015,-0.41344,-0.29624,-0.29127,0.96849,-0.90007,-0.56052,0.36259,-1.3249,0.48769,-1.7016 -0.29693,3.9197,0.80283,-0.33256,-1.0514,0.83914,-0.23789,-1.1585,-1.0853,-1.2331,-0.47119,1.095,-0.37763,0.65991,0.016303 3.9027,-0.83403,0.033225,-2.0958,2.6756,-1.0529,1.0058,0.57072,0.3745,2.0408,1.0438,0.40114,-1.313,-2.0054,1.1741 4.0034,0.035824,-0.35904,-0.28624,1.5668,0.94327,0.030539,-2.5105,0.60219,0.4871,0.66053,-1.158,-0.42377,-0.35569,0.6807 1.5793,3.2448,1.4002,0.035276,0.25933,-0.26506,-1.326,-0.9299,0.19259,0.62857,-0.73164,0.47666,-0.074537,-0.18384,-0.2649 1.1966,3.1465,1.6286,-0.083254,-0.17772,-0.47999,-1.3962,-0.58919,-0.062417,0.95774,-0.68163,0.3956,-1.9128,-0.37862,0.1588 1.0072,4.2689,-0.048895,-0.96036,-0.44347,0.87007,-0.46783,0.36753,-2.2526,-0.97029,-1.2317,-1.5177,-1.658,-0.56882,-0.16997 3.3518,2.2931,0.195,-1.1154,0.74718,-0.25788,-1.2955,-1.1972,0.56147,0.96364,0.61846,-0.41687,-1.5565,0.73746,0.39924 3.5178,2.0593,0.87784,0.44363,2.517,-0.19005,-0.52868,-2.3137,-0.26648,0.054799,-0.89257,0.38065,0.1495,-0.82757,-1.4385 -1.5342,2.2697,0.42131,2.0101,0.035274,0.15788,0.88968,-0.44204,0.30685,0.54241,-0.029575,1.7941,-0.058535,0.58366,0.26209 2.0204,2.7811,-0.078222,0.23923,0.56766,0.32164,-1.4746,-1.8428,1.2216,1.2888,-0.25384,-0.026598,-0.047488,-0.02959,-1.0249 -1.7965,-1.1239,1.3545,-2.1788,-0.50591,1.0491,0.35162,-0.74268,1.5998,-1.1951,-0.48673,-1.1908,1.0248,-0.75175,0.02918 -2.4265,1.1419,-1.5604,1.0387,-0.60874,1.0349,1.6083,0.32289,1.1958,-0.14088,0.43235,0.51477,-0.80254,0.24157,-0.57047 -0.57168,2.1219,3.2108,-0.50454,-0.78253,0.91647,-1.374,0.42687,-0.22413,-0.57636,0.38822,0.8252,0.17309,1.6095,-0.057731 -0.67088,1.5026,0.14365,2.1265,-0.63806,1.236,0.44394,-0.97835,1.0177,0.090958,0.33081,0.97711,-0.23242,0.41134,0.9308 1.0686,-1.297,1.9954,0.75336,1.002,3.1124,0.83658,1.686,0.023253,-1.1888,-1.2233,-0.63117,1.9356,0.41886,0.55183 0.19245,0.10574,0.93969,0.84338,0.30667,0.94133,1.1173,-2.0789,-1.339,1.1653,0.27278,0.049676,-0.95812,-0.59452,1.1477 -2.0456,1.931,1.0675,-0.68278,-0.53329,0.15707,1.0316,-0.26485,1.302,0.57092,0.55381,0.20205,0.96957,-1.4319,0.57243 -3.2781,0.16769,-1.2851,-1.5,-0.13027,0.45051,0.23435,0.10018,1.0704,-1.5223,0.59512,-0.78345,0.69403,-0.67224,0.095406 -2.5972,0.83301,0.13622,0.0048237,-0.50774,0.0041558,0.91959,0.41738,2.324,-0.16787,0.59724,-0.12778,0.70199,-0.72924,0.40447 1.9339,2.192,0.78098,1.2738,1.427,0.81196,-1.5274,-1.3852,1.2475,0.22371,-0.091612,-0.17526,0.379,0.84044,-0.075743 1.5972,3.2909,1.4817,-0.25094,2.0965,-1.2887,-1.6635,-0.60694,-0.42482,0.74498,0.63315,0.16235,-0.12722,0.77637,-0.34764 0.321,2.0379,-0.73821,1.7366,-0.76637,0.79746,-0.7202,-0.80817,1.1017,0.88597,-0.4398,1.0569,-0.15988,-0.61153,0.38411 -2.6294,0.97609,-0.31175,-1.1574,-0.44929,1.2528,0.52459,-0.86087,0.74564,-0.13336,0.58847,-1.0886,0.76528,-0.30399,-0.3279 -2.4849,-0.63831,-2.7709,-0.8561,-0.29146,1.7884,-0.70835,-1.4462,0.43791,-0.979,-0.67445,0.65335,-0.14047,0.72752,-0.22936 2.1334,0.15687,-1.0678,-2.1595,1.4522,0.91822,0.34133,0.36076,1.329,0.22776,1.3097,0.27163,1.7704,-1.6471,1.5424 -0.66638,0.7554,2.7105,1.1486,1.6858,-1.033,0.7597,1.4766,1.267,-0.30855,-0.08193,0.46502,0.4433,-1.8986,0.9141 -3.1574,0.77712,0.3082,-1.5215,0.32854,0.021904,1.1206,-0.49008,0.11201,-0.45321,0.25712,-1.1965,1.5295,-1.717,0.74829 4.4756,-1.642,-1.564,-1.3337,1.4854,0.56826,3.1321,-0.966,0.99175,-0.20005,1.1257,1.7767,-2.2223,0.53618,0.29563 -1.3828,1.1523,1.3441,-1.0259,-0.94086,2.1999,1.0359,-0.61589,-0.24098,-0.29049,0.41278,-0.72775,1.0222,0.59125,0.54649 3.7368,-2.1564,3.2624,0.28848,3.4579,0.13901,0.63986,1.5471,-1.0368,-1.1018,-1.2287,1.3763,0.70202,1.0583,-0.58648 -1.0804,0.8856,0.54883,-0.68348,-1.5725,2.0085,0.96016,-0.79476,1.6778,-0.28321,0.010062,-0.53789,0.63501,-0.60404,0.25401 -3.7215,0.14877,0.24346,-1.6524,0.038033,1.0975,0.64247,-0.96567,0.55076,-1.2674,1.2311,-0.39085,0.67949,0.033167,-0.6228 -1.5982,1.571,2.2609,-1.809,-0.54449,1.7234,0.92971,-0.16084,0.31762,-0.93749,0.79265,-0.65311,0.76088,-0.87893,1.1705 -1.1485,0.23972,2.5922,-1.8956,-0.87923,0.41654,1.1152,-0.85854,1.3322,-0.61088,0.40857,-0.15859,0.94397,-0.22077,-0.10232 4.6215,-1.6986,-1.5382,-0.78431,2.0098,2.2483,2.5059,-1.0408,0.17972,-1.0629,0.90491,-0.17327,-1.1906,0.91561,0.2154 -1.6317,-0.73528,-1.0052,-2.7031,-0.65567,0.76792,-1.1124,-2.63,-1.7033,-1.0308,-0.83712,0.24352,-0.59824,0.89364,1.0493 -1.3289,-0.59422,2.5093,1.9063,1.4688,-0.56743,0.68327,1.3739,1.7945,-0.70158,0.66001,-0.5858,-0.095419,0.71514,0.62075 -3.2719,0.071335,-1.838,-0.95193,0.17745,1.4242,0.60685,-1.3194,0.65034,-0.83033,0.53641,0.41922,0.69144,-0.32363,-0.97659 -2.1561,-1.6734,1.6579,-1.7371,-1.0784,1.0438,-0.72662,-1.029,1.0752,0.71303,-0.057124,-0.61667,0.29328,1.8808,-0.29173 -3.848,-1.0422,-0.35952,-1.816,-0.45628,-0.39143,-0.13861,-1.2663,0.30313,-0.35051,0.3427,0.18365,0.77815,-0.093569,-0.45597 -2.3448,2.5405,0.21167,0.48473,0.18747,1.1172,0.97037,0.85484,0.13034,2.0543,-0.53031,1.2424,0.5622,0.44971,0.51395 -2.3922,-2.6533,1.0421,-2.2319,-0.49199,-0.20372,-0.36079,-1.3538,0.86591,0.61338,-1.4214,0.052668,0.84508,-0.34683,-0.66881 5.448,-0.66676,0.59944,-1.3693,1.2107,-1.2525,-0.085537,-1.4472,-0.44882,0.43429,0.99892,-0.38018,-1.9622,0.34078,0.47031 -2.4989,0.81642,2.2937,-1.0747,-0.14104,1.0881,0.047761,0.38871,0.85789,-1.1796,1.0637,-0.5711,1.5804,0.72832,0.089347 2.1419,-2.5779,2.6199,1.5258,1.3303,0.83955,0.86391,2.7718,0.043982,-0.31865,-1.5086,0.11776,1.4848,1.062,-0.068081 -2.6052,-0.34993,0.26575,-2.2205,-0.49488,-0.31218,0.036272,-2.5221,0.31883,0.53601,-0.09903,0.37974,0.1673,0.62872,-0.66714 -3.3691,-1.5764,0.82048,-0.75287,1.295,-1.2783,0.94367,0.39402,0.73135,-1.1556,-0.31554,-0.78219,-1.2632,-0.20174,0.11352 -1.681,-1.1469,2.5892,-0.70791,1.6367,-0.080024,1.0066,0.033135,0.5214,-0.26711,0.14552,-0.72696,0.71208,-1.739,-0.96112 -1.4015,3.6315,0.93142,-0.17555,-0.089569,2.0046,0.54334,0.11764,-1.8229,-0.065859,0.058796,-0.23943,-0.47628,-1.0245,0.34784 1.2721,2.0358,0.68225,0.44564,-1.0539,1.3216,-0.3556,-0.29159,1.179,0.66021,-0.022944,1.0046,0.58364,1.5848,0.38819 -2.5699,-1.0955,-1.156,-2.2652,-0.24355,0.59842,-1.7332,-2.5778,-1.9618,-0.64896,-1.1576,1.1268,-0.2119,-0.48207,0.56177 -3.2123,-1.9629,-0.073994,-2.3027,-0.081774,0.36086,-2.1229,-1.1533,0.04643,0.029715,-1.0202,0.55997,0.70471,0.64508,0.61853 -2.917,1.5893,-1.0887,-0.3935,0.095426,0.97899,1.8349,-0.63183,-0.6223,0.57073,0.096885,-0.10297,0.93637,-1.1206,0.59057 -2.3506,3.8908,1.8468,-0.61749,0.70449,1.0398,0.55052,0.75021,-1.5211,-0.66008,0.7649,0.45713,-0.16944,-0.70985,0.19746 3.3443,0.42137,1.7252,0.42144,1.4057,1.0434,0.15942,-0.23663,1.1643,-0.57731,-1.0251,1.8986,0.092567,-0.36346,-0.22804 -3.0738,0.60948,-0.39658,-1.7459,-0.34248,0.43213,1.2392,-2.6958,-0.51073,0.34446,-0.058995,-0.086802,0.85677,0.13933,-0.54401 -2.4285,3.0852,-1.1094,-0.022553,0.17199,2.3466,0.6059,1.1675,-0.42416,-0.0054815,-0.1422,1.1489,0.086233,-0.4007,-0.98287 -2.3715,-1.0545,1.3163,-2.1556,-0.094173,0.19135,0.4054,-2.3431,0.94569,0.3753,-0.78154,-0.19627,0.89499,-0.25664,-0.61035 -3.472,-0.50054,-3.0457,-0.57059,1.4865,-0.31514,-0.39935,-0.18035,0.63374,-0.58624,-0.96783,0.57992,-0.75006,0.81226,-0.49568 -1.3687,-1.5273,2.709,-1.1886,-0.028108,0.11884,1.6471,-1.4051,1.4172,0.34107,-1.0294,0.15327,0.53442,-0.92399,-0.99743 -0.61407,-3.6227,2.0966,1.4761,1.3231,1.227,1.1345,0.50153,0.54811,-1.0158,-0.79691,-1.4755,0.89903,-0.68866,-0.10427 -2.0116,-1.9066,0.9099,-2.7064,-0.64808,0.37843,-0.47755,-1.4162,1.1056,0.052997,-1.4861,-0.28772,0.85017,-0.20206,-0.48585 -1.9854,-2.3517,1.3696,-0.37553,-0.37198,0.18617,-0.41545,1.6275,2.0141,0.29867,-0.13124,-2.1318,0.5008,0.60512,0.66366 -1.4366,-1.8419,1.8838,-0.65381,-0.035828,0.53421,0.50148,-0.91582,2.6962,0.20068,-0.62455,-1.1107,0.72007,-0.5284,0.19645 -2.8202,-2.4776,-1.226,-0.055384,0.2336,-1.5428,-0.54544,-0.024106,0.90165,-0.10723,-0.93998,-0.99447,-0.49821,-0.39712,-0.2815 -0.44551,-2.8908,1.9425,-0.69148,-0.051626,1.6259,1.5935,-0.88474,1.9619,-0.25822,-1.281,-0.31972,0.50946,-0.29569,-1.631 -1.6043,-2.4156,1.1549,-1.3706,0.93123,0.13625,0.97241,-0.062824,1.2713,0.0954,-1.4233,-0.43711,1.1816,-1.4144,-1.3621 2.0402,0.68398,-0.66796,1.2332,1.6771,1.6811,-0.83828,-2.623,-0.56503,0.52314,0.81635,-0.99865,-0.68423,-1.0066,0.45792 -3.0579,-2.2476,0.49786,-2.0828,0.19534,-1.1246,-1.4463,-0.33606,0.30563,-0.026861,-1.2304,-0.72497,0.78198,-0.75932,0.5996 -0.4617,-2.1093,2.453,-1.6371,-0.63503,0.84111,0.8243,-0.18947,2.0014,-0.41318,-0.94478,-0.4698,0.88071,-0.4234,-0.97539 -0.85829,2.7478,3.0053,-1.5405,-0.3347,0.13661,0.35333,-0.54366,-1.7455,-1.02,-0.44984,0.5442,-1.1254,0.24248,-0.33044 4.5563,0.48962,-0.86687,-0.54001,1.9376,0.32526,-0.013309,0.1286,1.0629,-0.093964,0.16758,-0.65889,-1.8621,-1.0283,-1.2059 -2.8501,-0.65042,-0.9282,-1.8915,0.90584,1.6996,-1.1266,-1.608,-0.52284,-1.0433,-0.53246,0.79413,0.11768,-0.44657,0.74264 -2.6806,-1.0516,-2.69,-0.70443,1.2402,1.7288,-0.46187,-0.77224,0.80441,-1.5627,-1.3103,-0.3322,-0.8552,-0.29016,0.16172 5.0772,-1.6974,-0.98746,-1.3697,3.3609,0.52829,1.9778,0.96432,0.62968,0.38758,1.4847,0.84,-1.7316,-0.54596,-0.066397 -3.1342,0.93089,1.1673,-1.2445,0.17492,1.8716,0.75262,-0.075742,-0.84195,0.13928,1.0061,-1.0172,-0.17481,-1.7962,0.49234 0.33338,1.8501,1.5192,-1.3183,-1.1554,3.0921,0.083669,0.061845,-0.44059,-0.77867,0.84994,-0.22083,0.45399,1.9902,0.54876 0.42748,0.77063,-0.92215,-0.1323,-1.7177,3.0689,0.70355,-0.068506,-0.58778,-0.69476,0.6252,-1.8696,-0.36749,1.4117,-0.16272 -1.8849,-0.18453,2.8994,-0.47175,-0.28129,0.92691,0.38664,0.90912,1.9679,0.39461,0.61851,-0.33058,1.1251,0.38006,0.65302 0.77895,-0.51109,1.8567,-0.51028,-1.123,2.1149,2.0063,-0.22994,2.0436,0.35359,-0.96314,-0.58337,-1.5988,1.0668,-0.9664 1.7851,0.32359,-1.724,-2.9952,0.94048,1.8684,1.9882,0.42105,-2.1712,-1.2527,0.25407,1.1917,-1.2911,1.4017,0.99728 -1.4815,0.72293,-1.4044,-1.1117,-1.1477,2.1223,1.5808,-1.8872,-1.0387,0.057144,0.29715,-1.3701,-1.6059,-0.81934,-0.88834 1.3024,3.4867,-0.67967,-1.1878,0.18329,1.4656,0.97486,0.96309,-1.9707,-1.3427,1.4706,-0.22626,-0.54948,0.73817,0.28761 -0.41206,-0.34151,1.6175,2.4487,0.24365,2.1094,-0.59891,0.72423,1.2925,0.71306,0.82123,0.21506,-0.63651,0.31459,1.436 -3.1961,-0.11906,-2.4788,-1.2836,1.269,1.1908,-1.1011,-1.3098,-0.3151,-1.1283,-0.37377,1.7216,-0.18732,0.14096,0.079545 -1.1891,0.35873,2.0837,-2.5866,-1.522,1.4858,1.1944,-1.2552,0.25035,-0.19705,-0.066606,-0.63025,-1.9579,-0.40635,-0.43011 2.6512,2.2158,-0.96524,-2.5646,1.13,-1.4946,0.42848,0.51064,1.0874,0.87093,-0.074457,-0.34173,0.68163,-1.4823,-0.55481 -0.85341,2.0745,0.43534,0.10305,-1.9108,0.90025,0.91825,-0.58745,0.53069,0.27158,0.28802,0.41047,-1.1936,-0.76527,0.98068 -0.62109,-0.16247,1.4316,0.96128,0.035235,2.1199,0.74519,0.3769,2.5136,1.6794,-0.34221,-0.39907,-0.029129,-0.3716,0.88339 0.26745,1.8479,-0.27635,0.65153,-1.7312,1.0884,-1.1354,-0.13656,0.46795,-0.84219,0.36953,0.88072,1.1935,-1.0818,0.428 -2.1783,4.0344,0.69475,0.337,0.19695,0.71859,0.050531,1.214,-1.185,0.19314,-0.22353,1.1548,0.45107,0.272,-0.059229 3.0292,2.1467,-1.3429,-3.648,0.83737,0.35805,-0.070627,0.2745,0.89672,0.70952,0.88469,-0.28147,0.61816,-1.5067,-0.17117 0.56152,2.0171,0.13901,-0.57354,-1.5376,2.6347,0.17289,0.33331,0.61682,-1.4454,-0.33012,0.46435,-0.18996,-0.12768,0.9463 3.7117,-0.78969,-1.4786,-3.3409,1.6706,-0.12971,0.93855,2.8145,-1.0486,0.3123,1.5292,0.38179,0.5477,-2.0485,0.15625 3.0208,0.22098,-2.2131,-0.38872,0.29589,1.9084,0.80286,-2.2023,-0.10994,-0.93618,0.43656,-0.9658,-0.15389,-0.21998,-0.14644 -0.31547,0.28459,-0.15212,2.1846,-0.76569,1.2972,-0.68557,0.3961,2.1035,-0.88295,0.2317,0.65888,0.10478,-0.10582,1.0633 2.5257,0.91291,-0.48577,0.95892,0.097737,0.9393,-0.15049,-2.7072,-0.6224,-2.1597,-1.2249,-0.11314,-0.49446,0.27534,-0.89296 2.0396,1.2961,-1.1299,0.78414,-0.34605,1.3849,-0.90479,-2.1912,0.77075,-0.58518,-0.29528,-0.95284,-0.33928,0.26323,-0.10086 -3.6726,1.3018,-0.088033,0.02744,1.2768,0.097736,1.1962,0.093714,0.14307,2.4362,0.67081,-0.21394,-0.77711,0.33818,-1.0473 2.4164,1.3542,0.27475,-0.13536,2.7102,-0.8782,-2.0292,-0.080183,0.53322,1.3336,0.55507,-0.32179,0.86365,-1.9503,-0.2368 -2.9986,1.0004,-2.5955,-0.41678,-0.57094,0.94746,0.89479,0.75795,0.74396,1.0335,0.20397,-0.2931,0.35526,0.20704,-1.1418 -3.6553,0.57798,-1.7625,-0.67191,-0.25597,0.98457,1.2318,-0.28677,0.070167,-0.42441,0.5857,-0.30519,1.1033,-0.53326,-0.60727 -2.0599,1.3456,-0.9067,1.3883,-0.88946,-0.90262,0.72372,1.5603,0.90659,0.2326,0.1619,0.25776,-0.22719,-1.342,0.91141 -0.043738,2.0668,-0.52809,2.44,-0.089565,0.78961,-0.97757,-1.0808,0.15308,0.42301,0.0022273,0.59746,-0.65054,1.0839,-0.12827 -3.1597,5.3428e-05,-0.14701,-0.90692,-0.11604,1.6605,0.52207,0.45592,1.6887,-0.83464,0.7637,-0.83332,-0.37811,0.48198,-1.2017 -3.2296,-0.59511,-1.6603,-1.2783,-0.38514,-0.89476,-0.58021,-0.073866,0.89844,-0.31103,0.059197,-0.065508,0.21237,-0.9269,0.19251 -2.5826,-0.34251,-3.2152,-0.61839,-0.58174,-0.86837,-0.92868,0.24489,0.6137,-0.30416,-0.57954,0.15709,-0.079043,-0.12482,0.31772 4.8397,-1.2506,-1.1845,-1.1454,2.0545,1.3034,2.0524,-1.5282,-0.40035,0.28832,0.9499,-0.62985,-1.4525,-0.45659,1.4794 -2.6607,0.29076,-1.7143,-1.4085,-0.3904,0.56174,0.24627,-1.683,0.52331,0.1462,-0.25015,0.41681,0.96876,-0.81796,-0.20602 -2.4113,0.32642,0.90657,1.4374,0.18507,-0.39883,1.3918,-0.17511,2.1658,0.85402,0.59656,0.49424,-0.21566,-1.2295,0.93936 2.2968,1.7707,0.36142,0.7957,-0.47994,1.0957,-0.95852,-0.35746,0.7571,0.39199,-1.4746,-0.41263,-2.4655,0.12845,0.20914 -2.6521,-1.016,-1.3648,-1.4091,0.072614,0.76847,-1.2135,-0.95026,1.4917,0.12455,-0.77384,0.40217,0.63291,0.053699,0.7016 -3.0376,-0.11304,-0.89361,-0.41007,-0.63922,-0.19794,0.95317,0.941,1.6732,-1.3071,0.36355,-1.2998,-0.80991,0.096664,-0.29065 -2.2801,-0.83286,-3.4477,-0.2366,0.96486,0.76269,-0.9515,-0.31375,0.19935,-1.9921,-1.6605,1.412,-0.50467,-0.037812,1.1697 -2.9953,-0.55796,-2.207,-0.44955,-0.30965,0.71076,-0.11541,-0.55358,1.638,-0.33521,0.090617,-0.084676,-0.19727,1.1165,-1.0517 -2.4798,0.35512,-3.2754,-0.4319,0.30731,1.2513,-0.80365,-1.1695,-0.23572,-0.50726,-0.52573,1.755,0.20581,0.74184,-0.085602 -1.81,-0.059284,-3.9656,0.18475,0.22676,0.83274,-0.20879,-0.64104,0.44689,-1.5308,-1.5929,1.1206,-0.3003,-0.33859,0.74377 2.0147,2.8465,0.64631,-1.2501,0.5412,-0.84477,-0.70872,-0.1856,1.0395,-0.69704,-1.5604,0.51624,0.84695,-1.1466,-1.7505 3.2154,0.83822,-0.75384,-2.3706,0.58385,-0.18784,-0.23411,-0.91112,2.6379,-0.16514,0.73328,0.2844,-0.066993,-0.87191,-0.61785 -2.6762,1.4958,-1.028,-0.42085,-0.30202,1.6297,2.0147,-1.1055,-0.71455,0.7065,0.087226,-0.27658,0.53147,-0.86711,0.11304 1.9482,0.74401,1.9922,-0.21601,-0.97331,0.44676,-0.071966,-0.18971,1.9377,-1.7979,-1.4355,1.5693,-1.1186,0.25914,-0.71044 3.3012,1.1196,0.64792,0.24489,1.1397,0.17051,-0.12643,0.15324,1.3446,0.2051,-1.5287,1.0797,0.19908,-0.28633,-1.0981 2.1712,0.24675,-0.52641,1.1746,2.717,-0.93517,-1.1464,-0.13075,1.0491,0.53612,0.82951,-0.9853,1.1305,-1.1622,0.81434 4.2273,0.82032,-0.61597,-2.4518,0.31703,-0.021897,0.18177,-1.2195,1.3496,-0.36571,0.55218,0.69108,-0.34504,0.74704,-1.6471 3.4082,-0.064352,1.1037,-0.1971,1.3494,0.60757,-1.4243,-1.7714,1.9289,-0.4509,-0.52814,0.65846,0.2273,0.48803,-1.1801 2.8646,1.4517,1.6266,0.21793,0.23357,0.79287,-0.12885,0.036251,1.7991,0.12524,-1.326,1.3358,-0.45767,-0.20868,-0.28004 3.0841,0.51842,1.0357,1.344,1.2024,2.4556,0.41337,-1.3586,-0.32464,-2.488,-1.2862,1.0977,-0.47955,0.7127,-1.423 -0.23911,2.1659,0.61058,-0.48246,-1.8914,1.2511,1.2287,0.29107,0.6643,0.6075,-1.1469,1.1604,-0.80159,0.07927,0.80584 -3.1221,0.50909,0.80056,-0.87503,0.23444,-1.6039,1.082,0.57289,1.2718,0.081563,0.45884,-1.2217,0.99519,-0.63108,0.55531 -3.0872,1.8427,0.029091,-0.89717,0.33172,0.87487,1.3255,0.20268,-0.38244,-0.59487,0.77874,-1.3223,1.3931,-1.2087,0.73019 -2.0906,-2.3891,0.54064,-0.69336,0.8913,-1.56,-0.031498,-0.92109,1.9671,0.23164,-0.6483,-0.604,0.50934,-0.7444,0.078061 -2.7056,-1.1805,-2.3859,-1.8768,-0.35501,-0.86277,-0.63908,0.063262,0.26637,-1.5126,-1.2626,-0.049591,-1.2928,0.12362,0.40657 -2.1837,-1.5771,-2.7767,-0.58534,-0.070015,-1.5983,-1.7415,0.68345,0.41743,-0.9703,-1.3783,0.97399,-1.4578,-0.025706,1.1952 -2.9399,-0.4836,-2.2814,-0.84299,1.1942,-2.438,-0.89719,-0.116,0.7357,-0.39937,-1.1006,0.95846,-0.05027,0.5789,1.1953 -2.8502,-0.31758,-3.2772,-0.88778,0.43051,-2.068,-0.84337,0.51939,-0.41784,-1.0231,-1.4749,0.68789,-1.0332,0.57126,1.0009 -3.3203,-0.91255,-0.60797,-0.80449,0.78651,-1.3567,0.95558,0.14368,1.7293,-0.81907,-0.077742,-1.0035,-1.4101,0.62187,-0.43738 -3.2984,-0.89238,-0.29342,-1.4972,-0.090531,-0.22526,-0.28412,0.76884,1.6191,-1.3064,0.58423,-1.2287,0.078134,0.053211,0.20414 -1.6953,-1.8509,1.7495,-1.1221,0.80818,-0.084637,0.46962,-1.3117,2.2016,0.54503,-0.56956,-0.0026679,1.1303,-0.17639,-0.80545 -3.2678,-1.8002,-1.3249,-1.9804,0.91778,-0.14247,-2.4888,0.22341,-0.00098723,-1.0178,-1.1434,1.0182,0.17823,0.70106,1.6971 -2.4659,-2.7902,-1.1188,-0.95447,0.44842,-1.5102,-1.9079,0.70585,0.93133,-0.22941,-1.3935,-0.15832,-0.79804,0.10907,1.1666 -3.4367,-0.34126,-2.9868,-1.352,0.45104,-1.116,-0.44598,0.10771,0.51593,-0.87464,-0.8367,0.17717,-0.65665,0.2345,0.0062696 1.9603,1.9633,2.3014,-0.86032,0.80854,-0.035514,-0.84105,-0.65698,1.2073,0.62864,0.69592,1.0901,-0.78705,1.0925,0.62898 4.6639,-0.84404,-1.325,-0.81188,2.7261,0.54287,1.926,0.597,0.1552,0.41566,0.6331,0.85587,-2.4431,0.026049,-0.24989 4.0041,-0.12995,-0.4975,1.1957,1.0451,1.9527,0.3296,-1.4382,-1.6513,-0.11778,-0.34662,-0.73248,0.24593,0.91375,0.46967 0.51945,1.8314,1.9562,-0.65965,-0.81302,0.38936,-0.20236,-0.93443,0.47841,0.37441,0.55538,-0.045459,-1.3216,1.9882,0.54881 0.090132,1.005,1.1809,-2.7646,-0.38651,1.5255,-0.38783,-0.5521,-1.1207,-1.7571,0.91219,0.33057,-0.60527,2.4981,0.8631 3.5253,-1.4654,-1.1772,-1.8827,1.0235,-0.086403,1.4531,1.0777,0.88414,1.5443,0.35541,1.387,-1.8192,0.99398,0.15375 3.9895,1.3322,1.4581,0.20049,1.8832,0.23659,-0.034341,-0.84663,0.10839,1.0566,0.14431,-0.70818,-1.7263,-0.32451,0.645 1.7721,-0.13255,1.5496,0.59109,-0.30644,0.92831,-0.2088,-1.8089,0.35715,0.50716,0.44155,-0.29816,-0.72885,2.0123,0.61427 1.7803,-2.0573,2.9959,-0.70322,1.2121,1.2077,0.90712,-0.76829,0.20954,1.5277,-0.34792,0.14215,-0.31569,2.937,-0.97195 1.1617,-1.987,2.7592,-0.49331,0.16032,1.2495,-1.1279,0.42853,-0.75595,2.3241,0.32371,0.022567,-0.04157,2.7762,-0.45316 2.1689,-0.53178,0.019616,-2.4991,0.087512,0.00058455,0.016507,-1.0394,1.1737,1.4947,0.59974,0.93595,-1.4864,1.7068,1.1954 -1.0005,-0.80666,0.68534,-0.77095,-0.2826,1.3302,0.98043,-1.8653,2.3241,1.6091,-0.97651,-0.66182,-0.53079,1,-0.4186 -0.1432,0.23143,0.30586,1.6527,0.40889,-0.7555,-0.73975,1.8364,2.2836,-0.41418,0.23707,0.23882,-0.15348,0.60165,1.5201 0.92854,-1.9083,1.3888,0.53174,0.017904,2.3404,2.0592,-0.38356,1.0897,1.1655,-1.1899,-0.76106,0.27559,2.0681,-1.6099 0.96929,0.13216,1.1219,1.6916,0.95462,1.6544,-0.85431,1.4997,2.0627,1.0664,0.11677,0.44382,0.30982,1.2948,0.97002 1.2006,1.3227,-1.136,0.61645,0.86471,2.7838,-1.3613,0.4722,1.509,1.1842,-0.21088,0.87227,0.76007,0.51018,-0.20372 1.1342,-0.10858,2.0507,0.075031,0.89109,1.7615,0.86282,1.0958,2.4868,1.1047,-1.415,0.14676,-0.69849,-0.1353,-0.11122 -1.4599,-0.53805,1.5263,0.16666,-0.12214,1.1549,0.26878,-0.32949,2.7783,1.6584,0.075938,-0.33208,0.30908,0.34434,0.23559 1.5547,0.51829,0.90852,0.21832,-1.2831,1.6256,-0.48331,0.10993,1.757,0.0037709,-0.76153,1.4508,-0.11888,-0.21573,-0.59427 2.3589,-0.48367,-1.8482,0.71617,2.1145,3.0768,1.1825,-0.85197,-0.54024,-0.33115,-0.23201,0.83449,1.8956,1.2439,-0.43465 2.6708,-0.028534,-0.18424,1.3327,0.4734,3.3725,2.0696,0.89397,-0.06749,-0.87093,-0.67599,0.73699,0.38946,1.9616,-0.64449 -3.2896,0.6622,-0.54809,0.0098268,-1.008,0.31092,1.1128,0.63795,1.1473,-0.68272,0.905,-0.18158,0.75872,0.37639,-0.24794 -2.9744,1.6582,-0.40311,0.20263,-0.41699,0.60788,1.1405,1.3363,1.1448,-0.50236,0.66896,-0.51208,0.72828,-0.6217,0.76913 -0.85083,1.4467,2.3108,0.27711,-0.98628,0.74719,0.5979,-0.78599,1.2432,0.11608,-0.47875,1.3325,0.39679,-0.31509,0.4012 -2.8163,0.71314,0.14403,-0.25913,-1.1687,1.3508,0.6532,0.46411,0.92177,-1.2874,1.2425,-0.011911,0.75411,-0.53122,0.55415 -1.3044,-0.41635,0.9794,2.5346,0.21159,0.15186,0.60675,0.73948,1.8028,-0.8531,0.054902,-0.24383,-0.40122,-0.55619,1.8769 -3.1692,0.86256,-0.091301,0.098426,-0.59832,0.58088,1.1722,0.98027,1.5394,-0.28592,0.53671,0.38484,0.59259,-0.25891,0.65291 -2.1999,-1.1938,-0.85534,0.81729,0.90939,-1.0228,1.8918,0.18731,0.34744,-0.98717,-0.23532,-0.56094,0.25995,-1.7593,0.064063 -1.4968,-0.15683,1.0059,2.318,0.066591,0.63236,0.22184,0.49412,2.0383,-0.92629,0.36115,0.10098,-0.40036,0.33546,1.5656 -2.9763,-0.10823,-0.4881,0.36895,-0.27173,-1.2058,1.273,0.67662,2.0271,-0.50774,0.68157,-0.57517,-0.66187,-0.47557,0.035957 -2.1102,0.10015,0.43069,1.0459,-0.089474,-0.34371,1.1071,-0.22611,2.3795,0.23496,0.55792,-0.56943,0.6441,-0.80117,0.522 -1.9011,-0.93105,1.8625,0.19073,-0.33293,-0.66109,0.49142,0.3258,2.6058,-0.12398,0.46035,-0.94891,0.4578,-0.96122,0.91877 -3.4112,-0.35829,-1.6741,-0.69865,-0.71658,-0.15421,0.52167,0.43486,1.3546,-0.63075,0.28139,-0.9023,0.03184,-0.10073,-0.37438 -2.2164,-1.7162,-0.38292,-1.8482,0.33873,-0.096973,-2.1323,-1.3878,1.0592,0.2016,-1.4529,1.1771,0.52308,-0.12253,1.6303 -3.7713,0.41868,-1.3916,-0.63192,-0.46529,-0.25131,1.3235,0.99116,0.92026,-0.67797,0.30323,-0.94005,0.20259,0.23049,-0.42699 1.0141,-1.2264,1.6042,0.91118,-0.24665,1.6417,0.5328,1.6392,2.2122,-0.42244,-1.1955,0.075474,0.65781,-0.22701,0.42229 -1.3053,-1.3492,0.88664,-1.0253,-1.1342,1.0014,0.49725,0.28241,2.1772,-0.67343,-0.56412,-0.85089,1.5214,-1.3828,-0.12206 1.3295,-0.85858,1.4718,-0.74129,-0.6627,1.6009,0.81695,2.0446,1.9828,0.5749,-1.0719,-0.33093,0.8225,0.75251,-0.27537 -1.716,-3.2085,-0.41375,0.44353,0.64883,0.10489,-1.0143,-0.0094214,1.3636,0.93911,-1.8663,-1.1335,0.58353,0.20168,0.6176 -2.4127,0.24779,0.98905,0.030288,-0.23682,-0.45763,0.6217,0.43791,2.2362,-0.78014,1.204,-0.44623,0.66334,0.40548,0.03708 -2.9829,-1.9743,-2.2816,-0.61069,0.14814,0.14763,-1.4599,0.31059,1.3379,-0.93966,-1.0643,-0.22679,-0.99545,1.3284,0.49055 1.3149,2.5227,1.0515,0.83452,-0.34821,0.97189,-1.3334,-1.051,0.89167,0.0016899,-0.073949,1.1901,-0.54888,1.7961,-0.041006 0.68846,2.5715,2.0449,-0.53005,-0.6734,1.0115,-0.9011,0.21425,0.81538,-0.93658,-1.2286,1.1281,0.18483,-0.24466,0.60739 -0.36967,3.5607,0.91055,-0.16028,-1.1827,1.7716,0.42456,0.15248,-1.0735,-0.65439,0.46001,0.10531,0.0017119,0.68085,0.67095 0.65099,2.6165,1.4819,-0.71422,-1.9308,1.8339,-0.38721,-0.27622,-0.99011,-2.0092,-0.72855,0.4809,-0.66437,1.4375,0.35678 -0.2837,3.7399,0.98698,-0.02472,-1.2032,1.3418,-0.60568,-0.21,-0.9687,-0.066119,-0.2118,1.0984,-0.20588,0.099924,0.72084 0.74471,3.2222,0.90661,-0.37477,-0.78234,0.47347,-0.87844,-0.33691,0.6182,-0.48304,-0.77503,1.2396,0.056965,-0.54912,0.67298 0.36391,3.7064,-0.72341,-0.11057,-0.06005,0.76353,-2.144,0.76696,-1.3391,0.67946,0.41149,-0.046918,-0.26922,0.42535,-0.66263 1.2706,3.3177,-0.61611,-1.3295,-0.1872,0.50318,-2.0672,-0.93794,0.31732,-0.15053,0.76318,0.2633,0.60366,-0.074724,-0.28643 1.1228,4.2084,-0.87686,-1.4127,-0.36431,1.113,-1.3329,0.4325,-1.2579,-0.33958,-1.0001,-0.23735,-0.26311,-1.0238,-0.64236 3.0782,1.1032,-0.23453,-0.98032,0.47467,0.65571,-1.3618,-0.99535,1.8681,1.2156,0.049919,0.24285,0.12018,-0.90914,-0.18002 -1.5334,2.4908,0.28515,0.63479,-1.4717,0.94816,1.0457,-0.49061,-0.31993,1.4221,0.58143,0.95162,-0.9849,0.0065279,0.51969 0.31401,3.702,-1.0207,-0.056868,-0.77763,1.0868,-1.6948,0.10675,-0.65346,0.16795,-0.14366,0.34888,0.58909,-0.2913,-0.4525 -0.65615,2.8794,1.2518,-0.88882,-1.2837,1.628,0.57873,-0.7597,-0.57617,-0.41492,1.2035,-0.03763,-0.29365,0.070195,0.40623 -3.1587,0.64206,-2.8558,-0.85779,0.90792,0.97415,1.0987,-2.0464,-0.75599,0.33271,-0.39858,0.55761,-0.2215,0.18125,-1.6235 -1.3888,-1.8736,1.5237,-0.037431,0.40793,1.6016,1.1852,-2.4851,1.8808,0.57297,-0.25158,-0.32788,0.28012,-0.0038222,-0.52307 -1.9414,-0.73953,2.0372,1.4682,0.11557,1.3849,0.83139,-0.533,1.8683,-0.11486,1.0008,0.032935,-0.62686,0.85113,0.88638 0.037125,-2.2078,2.6253,0.92764,0.63628,3.3941,1.6463,-0.77307,0.58919,-0.5078,-0.67263,-0.68484,1.065,0.51968,-0.099117 -1.8013,-0.0013296,0.77971,0.58384,-0.12227,0.9123,1.8667,-2.3429,1.1444,0.80786,0.47172,0.35543,0.58822,-0.44885,-0.87395 -1.7865,0.88583,1.4079,-1.285,-1.6388,1.0479,1.7254,-2.212,0.43897,-0.18308,0.37872,-0.028209,-0.11696,0.24335,-0.29196 -3.9226,-1.0198,-0.80401,-1.9107,0.60241,0.91601,-0.37793,-2.2361,-0.083707,-1.138,0.17628,0.85034,0.11339,0.81992,-1.0914 -1.1837,0.76809,2.8638,0.52905,-0.22426,0.34482,1.6056,-1.2348,1.545,0.22141,0.08462,1.0195,0.43765,-0.40173,0.10511 -2.0194,1.0693,0.67227,-0.62985,-1.6376,0.82879,2.0015,-2.2376,0.31314,0.66927,0.52764,-0.038264,-1.0581,0.55346,0.0068495 -2.5778,-0.13229,-0.77555,-1.7381,-0.60831,1.7207,-0.36783,-1.6812,0.47097,0.32861,-0.052086,-0.34983,0.81401,-0.36206,0.11839 -2.3475,0.49919,-0.054157,-1.8781,-0.45383,1.4238,0.42308,-1.8651,-0.32844,0.12836,-0.046679,-1.104,0.37271,-1.0943,0.13735 -3.202,0.035623,-3.6448,-1.2097,0.66249,0.29905,0.4058,-0.73798,0.1645,-1.3175,-1.3421,0.4401,0.2769,0.23933,-0.68413 -2.2585,-2.8664,0.6988,0.87159,1.1702,0.60739,-0.10744,-1.4434,1.6955,0.14548,0.21798,-0.7748,-0.069386,0.98103,0.11898 -1.2977,-3.1967,1.7121,0.84895,1.259,1.7578,0.45476,-1.3152,1.0864,0.63531,-0.83286,-1.1345,0.96156,0.90512,-0.090955 -4.0811,1.0123,-0.884,-1.0026,0.82194,-0.7337,1.1096,0.33621,-0.14092,1.2544,0.1566,-0.63045,0.42066,0.2528,-0.9535 -1.1354,-2.2148,2.1696,-0.49937,-0.16314,0.56914,0.65055,-1.9264,1.5986,0.64697,-0.54298,0.11578,0.40485,-0.000597,-1.1977 -2.2727,-0.61774,1.172,-0.674,-0.52017,-0.045397,0.49411,-0.81669,2.3806,0.48486,0.476,-0.3423,0.5552,-0.82909,0.43942 -2.8834,0.65497,0.78644,0.14698,-0.89445,0.20152,0.8855,-0.17084,1.6784,-0.69436,1.2702,0.70204,0.23317,0.32799,-0.26312 -1.3342,0.58784,1.742,-0.71377,-0.57996,0.28233,-0.22545,1.6661,1.5307,-1.3213,0.49871,-0.69553,1.8251,-0.43437,1.3653 0.43918,-2.8334,2.77,-0.7022,0.44923,1.9281,0.87981,0.2774,1.3778,0.29098,-1.1743,0.0065404,0.89212,0.31512,-1.9408 -3.2727,-1.0178,-0.53582,-1.7596,0.45024,-0.25174,-1.0799,-0.69538,1.1989,-0.67948,0.019018,0.30404,0.17923,0.46129,0.32569 -3.3645,-0.18646,-0.29499,-2.7797,1.0519,0.69023,-0.70213,-2.6028,-1.0889,-0.18122,-0.24857,0.83712,-0.21677,0.91103,0.072663 -3.1966,1.2251,0.69565,-2.1279,0.17278,0.047656,0.62337,-1.0458,0.29171,0.95495,0.44766,-0.64511,0.67001,-0.96979,-0.2349 -3.8899,1.0619,-0.36184,-1.7654,0.3532,0.33398,0.36231,-0.5437,0.24429,0.2237,0.79827,-0.46383,0.88451,-0.34704,-0.46349 -3.5422,-0.39656,0.10632,-1.7444,0.71618,-0.068662,-0.19621,0.54278,1.1884,0.065192,0.75007,-0.82366,-0.21595,-0.02119,-0.10363 -2.4996,0.2555,0.29846,-0.59488,0.21089,-0.549,0.45798,1.541,2.3746,-0.43802,0.7524,-1.2755,-0.22161,0.53382,0.092156 -4.0016,-0.097359,-1.1356,-1.9445,1.5237,0.37071,-0.33767,-1.3258,0.15567,-0.67263,0.27591,0.74792,-0.28319,0.58484,-0.84132 -2.8631,1.4179,1.4715,-1.9261,0.36717,-0.09618,1.0545,-1.1692,0.26697,1.7824,0.36,-0.33982,0.0039319,-0.60918,-0.21888 -3.9833,0.029459,-2.2999,-1.9545,0.96354,-0.264,0.3196,0.078658,0.219,-1.2873,-0.57344,-0.65695,-0.17966,-0.44615,-0.49715 -0.21707,-0.8795,2.2425,0.97986,1.4276,0.15378,0.6776,0.89999,1.7781,0.76393,0.3775,-0.72775,0.60085,0.90341,0.92022 -1.5559,-0.44864,2.6011,-1.641,-0.14993,1.2275,-0.21977,-0.5243,1.7494,0.36701,0.64791,-0.33762,0.55407,2.0956,-0.057499 -3.0786,-0.36491,0.41145,-1.496,1.1932,0.14945,-0.80956,-0.10816,1.3086,1.344,-0.095605,-0.40092,0.072049,1.2322,-0.0020903 -3.5909,2.9543,1.0215,-1.0358,0.72525,1.0403,1.0811,1.1882,-0.65199,0.48567,1.1014,-0.14361,0.13425,-0.28018,-0.45459 -4.2164,0.47717,-1.0877,-2.1074,1.3999,-0.017736,-0.36316,-1.0145,-0.17481,-0.15787,-0.14418,0.24483,0.73405,0.64033,-0.19365 -1.5445,-1.5962,0.99034,-1.9344,-0.16282,1.9468,-1.7475,0.14471,-0.92278,0.86169,-0.25083,0.26594,0.95203,3.7915,0.27781 -2.4862,-1.7334,-0.82651,-1.0952,0.15396,1.641,-1.6569,0.50024,0.90638,-0.92979,0.028993,0.51858,-0.074313,2.7483,-0.052704 -0.6425,-2.8012,0.019974,1.8587,1.0353,1.3352,-1.056,0.45815,-0.76941,1.8594,-0.2069,-0.28548,0.82385,2.8108,-0.075035 -2.5437,-0.91519,-0.68758,-0.50973,0.42111,0.14329,-1.4929,-0.061237,1.5227,-0.74675,0.79367,0.61389,-0.46601,1.9635,0.24622 -2.5252,-1.0167,-0.56544,-0.4899,0.053374,1.2947,-1.0864,-0.42983,1.1729,-0.90288,1.1058,0.519,-0.63586,2.4088,-0.49902 -1.2587,-0.96806,-0.63387,-0.77984,-1.0528,2.1344,-1.6869,1.0251,-1.2059,0.85864,0.66236,0.63686,1.4072,3.385,-0.58792 1.6293,4.5276,-0.60021,-2.559,1.9618,0.58594,-1.1071,0.076536,-2.2517,0.14274,0.9853,-1.0918,-0.86806,-0.76653,-0.11722 1.7689,3.7891,0.8239,-2.8245,1.856,0.59486,-1.901,0.04072,-2.1532,-0.92584,1.4316,-0.9661,-1.007,-0.97624,-0.134 1.1807,3.9353,-0.92364,-2.6828,1.1586,1.0572,-0.82899,-0.06423,-1.3935,1.2481,0.52381,-1.2622,0.013096,-0.53387,0.021909 3.1452,2.5669,1.4859,-1.1873,3.549,-1.6707,0.024321,-0.78714,-0.94838,1.6124,0.074441,-0.63534,-1.0248,-0.68125,-0.12033 2.156,3.049,1.8456,-2.1543,2.9648,-1.6007,-0.97173,-0.42534,-0.64748,0.71698,1.0627,-0.63258,-1.2618,0.19074,0.21218 1.6383,2.5569,-0.16047,-3.2166,2.3986,-0.26239,-1.711,0.84921,-0.60029,1.6152,2.4509,-0.51515,0.54705,-0.25881,0.40928 4.0777,-0.60869,0.84194,-2.8893,4.6512,-1.4932,1.0754,0.88406,-1.4398,1.3948,1.8346,0.96308,-0.72464,-1.1454,0.77334 3.686,1.1407,0.80599,-1.8906,3.4036,-1.359,-0.19754,-0.63549,0.30185,2.0081,1.3519,-0.44764,-0.91441,-0.8685,0.34625 2.3872,3.2131,-0.23833,-3.1271,1.2071,-0.52697,-1.1746,0.8755,-1.5703,1.5026,1.5305,-1.027,-0.372,-1.086,0.047975 2.4846,2.3087,0.93962,-1.2473,1.6849,-1.0522,-1.5302,0.15236,-0.069056,2.242,0.33458,-0.70279,-0.14049,-1.0366,-0.3202 2.8712,0.97631,0.5207,-1.7152,3.473,-1.517,-0.30432,0.53398,-1.5996,2.1693,2.0787,-0.42598,-1.0036,-1.3726,0.86509 1.1079,3.4944,1.1566,-0.40531,1.4683,-0.7112,-2.4376,0.03558,0.22007,1.3738,0.96859,-0.045042,0.1358,0.26831,-0.8841 0.13954,1.5859,1.9573,-0.60427,-2.2064,2.0621,0.70664,-0.42521,0.56877,-0.26408,0.18389,-0.35845,-1.3181,1.2522,0.9065 -0.50503,0.13444,1.9475,0.88809,-0.69158,1.1039,1.3886,-1.9,1.0064,1.337,0.42843,-0.51994,-0.83409,0.51843,0.64189 1.2003,0.12027,2.8145,1.0958,-1.0676,1.5475,0.75708,-1.1756,1.4236,-0.075795,-0.28824,0.36078,-0.7748,0.79759,0.60926 -1.0975,-0.63526,1.7708,1.1485,-0.13851,1.2654,1.5995,-1.9212,1.9441,0.5053,0.33788,-0.050851,-0.011933,-0.07779,0.32587 -2.4074,0.40932,1.0581,0.083151,-0.87563,0.21587,1.2185,-1.5935,1.3928,1.18,1.159,0.51043,0.25603,0.29616,-0.44371 -0.99513,-1.5752,0.2075,1.0424,0.29787,2.5733,0.21577,-0.57694,1.2696,0.144,0.16333,-1.5539,1.1258,0.3693,1.3714 0.70384,-0.70877,1.6032,2.2865,-0.94945,1.7626,1.1941,-1.8413,-0.4262,-0.53409,0.25382,-0.1709,-0.17228,-0.01404,1.0004 -1.648,0.22327,1.6412,-0.52334,-1.146,0.5149,1.4125,-2.3362,1.4294,1.0253,0.37004,0.13459,-0.39543,0.12975,-0.01775 0.028787,-1.7517,1.9139,0.058782,-0.51782,2.3901,1.3224,-1.5177,1.3938,0.74673,-0.83325,-1.679,-1.2501,1.0808,0.23999 -1.1576,0.86803,2.7128,0.51759,-0.59808,-0.10683,1.6587,-1.8075,1.4339,0.75073,0.31149,0.56679,-0.015906,0.40294,0.12174 -3.3557,0.25716,0.072183,-1.4746,-0.18102,0.51878,0.5539,-0.18569,1.2607,0.066842,0.8022,-0.043918,0.34464,-1.0587,0.20358 -0.24844,0.55793,2.8218,1.084,0.57273,1.3958,-0.24938,0.84315,0.57681,0.45005,1.796,0.41191,-0.70099,2.3779,0.37048 -1.6353,-0.28412,1.0791,-0.0053575,0.19456,0.5982,-0.16811,0.88048,2.5314,-0.24361,1.158,-0.6806,0.56981,1.23,-0.4213 -1.5482,0.72995,0.77668,0.62277,-1.1175,0.70789,0.14963,0.022555,1.6846,0.9218,1.0566,-0.13013,0.76615,0.40605,-0.25907 0.95561,0.58846,1.0535,0.38081,-0.30675,0.90444,-0.58385,1.0578,2.5344,0.096769,-0.59706,0.85602,1.224,0.16505,1.0344 -1.7575,1.7019,1.6023,-1.704,-0.53182,2.0095,0.93342,-1.1873,-1.1285,-0.3885,1.2568,-1.3931,0.38235,-0.32176,-0.27483 1.7821,-1.2689,3.909,-0.23324,2.3708,0.63382,1.5356,0.90857,1.025,-0.60872,-0.55817,0.52837,0.62441,0.42472,-0.28822 -0.50136,-1.6394,1.4154,-1.0351,-0.21638,0.93853,0.010422,-0.16923,1.8844,1.0124,-1.1504,-1.1136,1.6999,1.3248,-0.88751 0.62915,1.2517,2.9099,-1.6836,-0.14533,0.48485,0.33117,0.7022,1.8623,-0.057267,0.29125,0.18375,0.28661,-0.78679,0.76897 -1.4683,-1.9497,-0.54703,1.8648,1.3782,1.4116,0.58023,0.76056,-0.81816,-1.335,-0.2391,-2.2389,2.503,-0.19565,0.21321 -1.9792,-1.2515,0.94148,0.53975,-0.21616,-0.78323,0.6725,1.5383,1.4933,0.20876,-0.19252,-2.0413,0.83638,-0.82798,0.060837 -0.51067,0.028018,3.1893,0.47417,1.0322,-0.39077,-0.078098,1.8968,2.0608,-0.24565,0.79953,0.14745,0.17607,-0.32799,1.6636 -3.9494,-0.65429,-0.84353,-1.8513,1.0095,0.64986,-0.56265,-1.1181,0.78401,-0.67825,0.34365,0.40068,0.3322,0.86838,-0.63091 -2.7601,0.65037,1.1647,-1.1299,0.088305,0.78145,0.16021,1.0871,1.1993,-1.3556,1.441,-1.2018,0.67257,-0.56771,0.58463 -2.0302,-0.42459,1.2436,-2.4052,-0.12528,-0.010035,0.42007,-1.116,1.4495,0.072658,-0.44407,-0.64332,0.80154,-1.3731,0.23347 2.4741,2.2545,0.29933,-1.4894,0.27213,0.9274,-1.7194,-0.63558,0.78123,0.18668,0.1224,0.59813,1.051,-0.26173,-0.87989 0.87224,1.4833,2.2474,-1.1949,-0.17681,0.89284,0.0038537,1.3304,1.059,0.14387,-0.020942,0.85052,1.489,-1.073,0.73611 -2.4822,0.22936,0.18743,-0.32501,-0.49603,-0.16499,0.37154,2.1742,1.7382,-0.96736,0.7363,-1.6878,-0.014577,0.43129,0.37208 -1.2545,-0.97717,1.6001,-0.72235,0.54767,0.69105,-0.22069,0.32841,1.8741,0.83213,0.017644,-0.94282,1.3775,1.4132,0.36698 -3.0983,-0.55126,-0.22251,0.094539,-0.73066,-0.56379,0.72553,1.2106,1.7061,0.066325,0.18447,-1.2879,-0.044157,0.053816,0.37502 -4.0725,1.2195,-0.39915,-1.6724,1.0472,0.62845,1.4239,-1.0101,-0.80734,0.4353,0.53477,-0.37295,0.6239,-1.188,-0.081675 -3.4676,-0.796,-2.8672,-1.8067,1.3801,-0.55145,-0.96443,0.058398,0.52063,-1.5413,-1.1735,0.70318,-0.67923,-0.041355,0.49925 1.9334,-0.29478,2.3251,2.0716,2.7862,2.4223,0.4495,-0.029801,-0.029477,-1.3309,-0.7474,0.9125,1.193,0.20497,0.82723 -1.4874,-1.5139,2.1591,1.7292,1.1417,-0.17584,1.1095,1.4209,1.5597,-0.23111,-0.012189,-0.96294,-0.45018,-1.0046,1.7353 -0.15928,-0.18978,3.3728,1.8179,2.69,1.0752,1.7763,-0.60453,-0.084359,-1.1578,-0.9258,0.44,-0.2627,-0.92011,0.92918 -4.3082,-0.29095,-1.098,-1.5904,0.84163,-0.63402,0.71184,1.0418,0.10144,-0.081221,0.1629,-0.7167,0.22019,-0.28333,0.072374 -3.7304,0.98452,1.4461,-0.71581,0.099413,-0.52307,1.1656,0.36865,0.96444,-0.4254,0.91102,0.10761,0.68936,0.23966,0.30848 -3.9019,-0.96718,-0.95242,-1.0812,0.70043,-1.7655,-0.097167,-0.36234,0.64107,0.73424,-0.37472,0.02413,0.88537,0.19002,-0.32446 -3.6377,-0.11524,0.22216,-1.4145,1.4846,-1.4785,0.84057,-1.4927,1.0633,1.135,-0.10588,0.46041,0.77243,0.12377,-0.44409 -3.4264,1.5059,1.139,-0.6112,0.5221,-1.1104,1.5495,1.3499,0.72282,-0.22459,0.42378,-0.12763,-0.1292,-1.1343,0.98985 -1.695,-3.6906,0.58147,0.47004,2.454,-0.56253,1.1748,0.47573,0.44499,-0.49939,-0.57136,-1.8374,0.15731,-0.89349,0.20193 -3.0507,-1.2956,-1.6691,-1.4194,0.5129,0.36311,-1.4334,-0.60235,0.41229,-1.9675,-0.29582,0.30957,0.26316,-0.03379,0.78652 -3.1384,-1.9205,-1.8359,-1.5583,1.1638,1.0038,-1.4861,0.30843,0.47555,-1.4681,-1.4656,0.34139,-0.42305,0.44757,0.87923 -2.6533,-1.6315,-2.5949,-0.68357,0.76346,2.1294,-1.1561,-0.55532,0.25017,-1.2454,-1.6974,0.36847,-0.18314,0.68786,0.23761 -0.83746,-0.96006,-0.9514,-1.29,-0.64656,2.0835,-0.99411,-0.84631,0.022955,-0.55621,-0.86837,0.69627,1.367,1.5034,0.87398 -2.8452,-0.57388,-2.6382,-0.19688,-0.13348,0.93657,0.040835,-0.39971,0.46478,-1.675,-0.29827,-1.0589,0.43039,-0.71133,-0.15874 -2.3371,-0.58789,-2.3648,-0.026632,0.2275,2.34,-0.3747,-0.87236,0.71903,-1.3137,-0.1337,-0.19942,0.95104,0.80286,-0.32855 -2.35,-0.76406,-0.47972,-1.0338,0.085147,1.6397,-0.83987,0.1465,0.79905,-0.95084,0.16913,-0.83299,1.9207,1.796,0.54669 -2.7514,-1.028,0.21153,-1.3997,0.28374,1.6727,-0.25639,-0.44063,1.1628,-1.2411,0.42992,-1.607,1.5005,0.49365,0.73299 -2.3512,-1.0148,-1.8745,-0.96903,0.43199,1.8583,-1.3756,-0.43813,0.056795,-1.0012,-0.76345,0.024682,1.1742,0.91184,1.5851 -2.307,-0.97455,-2.5102,-0.35901,0.24727,1.7813,-0.99627,-1.243,0.34366,-1.7268,-0.61829,0.75832,0.54855,0.43315,0.77306 ================================================ FILE: bayesian_ml/2/em.py ================================================ # expectation-maximization for the model: # x(n) ~ N(Wz(n), sigma**2 I) (observed variables) # z(n) ~ N(0, I) (latent variables) # W ~ N(0, 1/lambda) import numpy as np import matplotlib.pyplot as plt from scipy.stats import multivariate_normal as mvn from scipy.stats import norm N = 1000 lam = 1.0 sigma = 1.0 D = 2 K = 3 sigmaI = sigma * sigma * np.eye(D) # generate the data Z = np.random.randn(N, K) W0 = np.random.randn(D, K)*lam X = np.zeros((N, D)) for i in xrange(N): X[i] = np.random.multivariate_normal(mean=W0.dot(Z[i]), cov=sigmaI) def loglikelihood(X, Z, W): ZW = Z.dot(W.T) LL = 0 for i in xrange(N): ll = mvn.logpdf(X[i], mean=ZW[i], cov=sigmaI) LL += ll LL += norm.logpdf(W.flatten(), scale=1/lam).sum() return LL # do EM W = np.random.randn(D, K) / np.sqrt(D + K) costs = [] for t in xrange(50): # E-step R = np.linalg.solve(W.dot(W.T) + sigmaI, W).T # test = W.T.dot( np.linalg.inv(W.dot(W.T) + sigmaI) ) # print "R:", R # print "test:", test # diff = np.abs(R - test).sum() # print "diff:", diff Ez = X.dot(R.T) # M-step xzT = X.T.dot(Ez) toinvert = N*(np.eye(K) - R.dot(W)) + Ez.T.dot(Ez) + sigma*sigma*lam*np.eye(K) W = np.linalg.solve(toinvert, xzT.T).T # test = xzT.dot( np.linalg.inv(toinvert) ) # print "W:", W # print "test:", test # diff = np.abs(W - test).sum() # print "diff:", diff # likelihood cost = loglikelihood(X, Ez, W) costs.append(cost) plt.plot(costs) plt.show() print "actual W:", W0 print "predicted W:", W print "log-likelihood given real W:", loglikelihood(X, Z, W0) print "log-likelihood found:", costs[-1] ================================================ FILE: bayesian_ml/2/probit.py ================================================ # probit regression import numpy as np import pandas as pd import matplotlib.pyplot as plt from scipy.stats import norm # from scipy.stats import t from sortedcontainers import SortedList class ProbitRegression: def fit(self, X, Y, sigma=1.5, lam=1, show_w=set(), Q=None): # setup N, D = X.shape self.w = np.random.randn(D) / np.sqrt(D) # does not work if you don't scale first! Eq = np.zeros(N) idx1 = (Y == 1) idx0 = (Y == 0) A = lam*np.eye(D) + X.T.dot(X) / sigma**2 costs = [] for t in xrange(100): # calculate ln(p(Y, w | X)) cdf = norm.cdf(X.dot(self.w) / sigma) cost = -lam/2 * self.w.dot(self.w) + Y.dot(np.log(cdf)) + (1 - Y).dot(np.log(1 - cdf)) costs.append(cost) # E step Xw = X.dot(self.w) pdf = norm.pdf(-Xw / sigma) cdf = norm.cdf(-Xw / sigma) Eq[idx1] = Xw[idx1] + sigma*(pdf[idx1] / (1 - cdf[idx1])) Eq[idx0] = Xw[idx0] + sigma*(-pdf[idx0] / cdf[idx0]) # M step b = X.T.dot(Eq) / sigma**2 self.w = np.linalg.solve(A, b) if show_w and t in show_w: plot_image(self.w, Q, "iteration: %s" % (t+1)) plt.plot(costs) plt.show() self.sigma = sigma self.lam = lam def predict_proba(self, X): N, D = X.shape return norm.cdf(X.dot(self.w) / self.sigma) def predict(self, X): return np.round(self.predict_proba(X)) def score(self, X, Y): return np.mean(self.predict(X) == Y) def confusion_matrix(self, X, Y): P = self.predict(X) M = np.zeros((2, 2)) M[0,0] = np.sum(P[Y == 0] == Y[Y == 0]) M[0,1] = np.sum(P[Y == 0] != Y[Y == 0]) M[1,0] = np.sum(P[Y == 1] != Y[Y == 1]) M[1,1] = np.sum(P[Y == 1] == Y[Y == 1]) return M def get_3_misclassified(self, X, Y): P = self.predict(X) N = len(Y) samples = np.random.choice(N, 3, replace=False, p=(P != Y)/float(np.sum(P != Y))) return X[samples], Y[samples], P[samples] def get_3_most_ambiguous(self, X, Y): P = self.predict_proba(X) N = len(X) sl = SortedList(load=3) # stores (distance, sample index) tuples for n in xrange(N): p = P[n] dist = np.abs(p - 0.5) if len(sl) < 3: sl.add( (dist, n) ) else: if dist < sl[-1][0]: del sl[-1] sl.add( (dist, n) ) indexes = [v for k, v in sl] return X[indexes], Y[indexes] def plot_image(x, Q, title): im = Q.dot(x) plt.imshow(im.reshape(28,28), cmap='gray') plt.title(title) plt.show() if __name__ == '__main__': Xtrain = pd.read_csv('Xtrain.csv', header=None).as_matrix() Xtest = pd.read_csv('Xtest.csv', header=None).as_matrix() Ytrain = pd.read_csv('ytrain.csv', header=None).as_matrix().flatten() # print "Ytrain.shape:", Ytrain.shape Ytest = pd.read_csv('ytest.csv', header=None).as_matrix().flatten() model = ProbitRegression() model.fit(Xtrain, Ytrain) print "train accuracy:", model.score(Xtrain, Ytrain) print "test accuracy:", model.score(Xtest, Ytest) # confusion matrix M = model.confusion_matrix(Xtest, Ytest) print "confusion matrix:" print M print "N:", len(Ytest) print "sum(M):", M.sum() # plot 3 misclassified Q = pd.read_csv('Q.csv', header=None).as_matrix() misclassified, targets, predictions = model.get_3_misclassified(Xtrain, Ytrain) for x, y, p in zip(misclassified, targets, predictions): plot_image(x, Q, 'misclassified target=%s prediction=%s' % (y, int(p))) # ambiguous ambiguous, targets = model.get_3_most_ambiguous(Xtrain, Ytrain) for x, y in zip(ambiguous, targets): plot_image(x, Q, 'ambiguous target=%s' % y) # show w model.fit(Xtrain, Ytrain, show_w=set([0, 4, 9, 24, 49, 99]), Q=Q) ================================================ FILE: bayesian_ml/2/ytest.csv ================================================ 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 ================================================ FILE: bayesian_ml/2/ytrain.csv ================================================ 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 ================================================ FILE: bayesian_ml/3/X_set1.csv ================================================ 1,1,0.99994,0.99458,0.97123,0.95636,0.9371,0.83213,0.82584,0.79677,0.78811,0.78538,0.76095,0.71788,0.67846,0.66621,0.4768,0.47489,0.43842,0.3802,0.28259,0.192,0.11584,0.033385,0.029036,0.026622,0.0092808,0.007057,0.0054038,0.0016108,0.00023337,3.9558e-05,1.5103e-05,1.1417e-05,9.5855e-06,5.8908e-06,3.7498e-06,2.1644e-06,2.0829e-06,1.1151e-06,1.0749e-06,9.0939e-07,5.9111e-07,4.4512e-07,2.2396e-07,6.0794e-08,2.9038e-08,7.5041e-09,5.4369e-09,1.54e-09,1.4155e-09,1.1726e-09,5.9348e-10,4.0901e-10,6.7382e-11,2.4142e-11,2.1997e-11,6.7969e-12,5.4743e-13,5.4639e-13,1.1446e-13,8.4005e-15,9.6667e-16,2.6855e-16,2.3244e-16,3.5202e-17,3.3081e-17,2.0446e-17,1.6207e-17,1.1135e-17,2.7956e-18,1.1561e-18,8.0243e-19,6.6141e-19,5.5988e-19,2.7651e-19,8.7405e-20,8.0844e-20,4.0485e-20,3.2558e-20,2.5209e-20,6.0441e-22,3.253e-22,3.1832e-25,5.2825e-26,5.0236e-26,3.5083e-26,4.6524e-28,2.4588e-29,2.2999e-30,3.7531e-31,2.4473e-31,2.8218e-33,1.4317e-33,7.9972e-36,4.0863e-36,1.1378e-37,3.9719e-39,3.5106e-42,7.0672e-43,3.7324e-43 1,0.99994,1,0.99564,0.97372,0.9594,0.9407,0.83756,0.83134,0.80255,0.79397,0.79126,0.76701,0.72419,0.68492,0.6727,0.48309,0.48118,0.44453,0.38594,0.28748,0.1958,0.11846,0.034338,0.029883,0.027408,0.0095926,0.0073011,0.0055957,0.0016744,0.00024392,4.1531e-05,1.5892e-05,1.2021e-05,1.0097e-05,6.2116e-06,3.9579e-06,2.2873e-06,2.2013e-06,1.18e-06,1.1376e-06,9.6274e-07,6.2633e-07,4.7191e-07,2.3777e-07,6.4703e-08,3.0947e-08,8.017e-09,5.8119e-09,1.6498e-09,1.5166e-09,1.2567e-09,6.3681e-10,4.3914e-10,7.2557e-11,2.6038e-11,2.3727e-11,7.3448e-12,5.9376e-13,5.9263e-13,1.2443e-13,9.1645e-15,1.0576e-15,2.943e-16,2.5477e-16,3.8676e-17,3.6349e-17,2.2478e-17,1.7824e-17,1.2251e-17,3.081e-18,1.2755e-18,8.8568e-19,7.3019e-19,6.1823e-19,3.0558e-19,9.6723e-20,8.947e-20,4.4841e-20,3.607e-20,2.7936e-20,6.7259e-22,3.6224e-22,3.5707e-25,5.9362e-26,5.6455e-26,3.944e-26,5.2525e-28,2.7837e-29,2.6097e-30,4.2656e-31,2.7826e-31,3.2213e-33,1.6354e-33,9.1759e-36,4.6912e-36,1.3102e-37,4.5862e-39,4.0764e-42,8.2164e-43,4.3415e-43 1,0.99458,0.99564,1,0.99061,0.98127,0.96771,0.88162,0.87609,0.85015,0.84231,0.83983,0.81746,0.77724,0.73969,0.72788,0.53837,0.53641,0.49851,0.43714,0.33173,0.23078,0.14306,0.043577,0.038111,0.035061,0.012698,0.009745,0.0075274,0.0023284,0.00035552,6.2916e-05,2.455e-05,1.8672e-05,1.5737e-05,9.7729e-06,6.2803e-06,3.6665e-06,3.5312e-06,1.9143e-06,1.8467e-06,1.5675e-06,1.0275e-06,7.7803e-07,3.9663e-07,1.1029e-07,5.3378e-08,1.4122e-08,1.0288e-08,2.9758e-09,2.739e-09,2.2759e-09,1.1646e-09,8.0742e-10,1.368e-10,4.9777e-11,4.5416e-11,1.4278e-11,1.1918e-12,1.1896e-12,2.546e-13,1.9341e-14,2.2879e-15,6.4578e-16,5.5994e-16,8.6765e-17,8.1598e-17,5.0721e-17,4.0318e-17,2.7824e-17,7.0993e-18,2.966e-18,2.0672e-18,1.7077e-18,1.4483e-18,7.21e-19,2.3087e-19,2.1372e-19,1.0785e-19,8.6944e-20,6.7508e-20,1.6848e-21,9.1272e-22,9.5815e-25,1.6181e-25,1.5395e-25,1.0789e-25,1.4904e-27,8.0924e-29,7.7329e-30,1.2823e-30,8.3933e-31,1.0058e-32,5.1328e-33,2.9938e-35,1.5381e-35,4.4087e-37,1.5804e-38,1.4744e-41,3.0042e-42,1.5942e-42 1,0.97123,0.97372,0.99061,1,0.99837,0.99296,0.93569,0.9314,0.91073,0.90432,0.90228,0.88357,0.84881,0.81522,0.80446,0.6214,0.61941,0.58072,0.51674,0.40301,0.28924,0.1858,0.060882,0.053634,0.049562,0.018877,0.014663,0.011458,0.0037213,0.00060887,0.00011404,4.5795e-05,3.5114e-05,2.9743e-05,1.8727e-05,1.2186e-05,7.2214e-06,6.962e-06,3.8374e-06,3.7054e-06,3.159e-06,2.094e-06,1.597e-06,8.283e-07,2.3774e-07,1.1709e-07,3.1951e-08,2.3445e-08,6.9713e-09,6.4283e-09,5.363e-09,2.7844e-09,1.9455e-09,3.4201e-10,1.2701e-10,1.161e-10,3.7338e-11,3.2672e-12,3.2611e-12,7.1791e-13,5.7077e-14,7.001e-15,2.018e-15,1.7539e-15,2.8009e-16,2.6367e-16,1.6514e-16,1.3175e-16,9.1453e-17,2.3837e-17,1.0093e-17,7.0736e-18,5.8603e-18,4.9826e-18,2.5067e-18,8.1643e-19,7.5667e-19,3.8571e-19,3.1192e-19,2.4309e-19,6.3963e-21,3.495e-21,4.0247e-24,6.9551e-25,6.6216e-25,4.6616e-25,6.7962e-27,3.8238e-28,3.7581e-29,6.3652e-30,4.187e-30,5.2792e-32,2.7146e-32,1.6762e-34,8.6743e-35,2.5828e-36,9.5885e-38,9.6062e-41,1.9886e-41,1.0619e-41 1,0.95636,0.9594,0.98127,0.99837,1,0.9981,0.95381,0.95011,0.93198,0.92627,0.92444,0.90756,0.87559,0.84415,0.83398,0.65592,0.65395,0.61534,0.55088,0.43454,0.31595,0.20599,0.069575,0.061478,0.056916,0.022136,0.017282,0.013568,0.004497,0.00075724,0.00014522,5.9015e-05,4.5403e-05,3.8539e-05,2.4404e-05,1.5963e-05,9.5186e-06,9.1807e-06,5.0954e-06,4.9221e-06,4.2038e-06,2.7995e-06,2.1415e-06,1.1187e-06,3.2535e-07,1.614e-07,4.4613e-08,3.2834e-08,9.8761e-09,9.1138e-09,7.6162e-09,3.9781e-09,2.7886e-09,4.978e-10,1.8644e-10,1.7055e-10,5.5372e-11,4.9409e-12,4.9319e-12,1.0985e-12,8.9004e-14,1.1083e-14,3.2226e-15,2.8035e-15,4.5337e-16,4.2696e-16,2.6826e-16,2.1434e-16,1.4914e-16,3.922e-17,1.67e-17,1.173e-17,9.73e-18,8.2813e-18,4.1846e-18,1.3726e-18,1.2727e-18,6.5149e-19,5.2755e-19,4.1177e-19,1.1075e-20,6.0732e-21,7.268e-24,1.2681e-24,1.2076e-24,8.5176e-25,1.2699e-26,7.2515e-28,7.2106e-29,1.2321e-29,8.1213e-30,1.0459e-31,5.3948e-32,3.4109e-34,1.7705e-34,5.356e-36,2.0175e-37,2.082e-40,4.3384e-41,2.3228e-41 1,0.9371,0.9407,0.96771,0.99296,0.9981,1,0.97025,0.96722,0.95201,0.94712,0.94555,0.9308,0.90219,0.87338,0.86395,0.69287,0.69093,0.6527,0.58819,0.46971,0.34634,0.22945,0.080083,0.070996,0.065859,0.026201,0.020567,0.016231,0.0054988,0.00095516,0.00018791,7.7355e-05,5.973e-05,5.0815e-05,3.2377e-05,2.1298e-05,1.2785e-05,1.2337e-05,6.8985e-06,6.6667e-06,5.7051e-06,3.8183e-06,2.9304e-06,1.5427e-06,4.551e-07,2.2754e-07,6.3778e-08,4.7091e-08,1.4341e-08,1.3245e-08,1.1089e-08,5.8298e-09,4.1009e-09,7.4433e-10,2.8134e-10,2.5757e-10,8.4484e-11,7.7002e-12,7.6862e-12,1.7338e-12,1.4338e-13,1.8148e-14,5.3269e-15,4.639e-15,7.6044e-16,7.1646e-16,4.5168e-16,3.6148e-16,2.5219e-16,6.6956e-17,2.8683e-17,2.0197e-17,1.6775e-17,1.4293e-17,7.2568e-18,2.3985e-18,2.2251e-18,1.1442e-18,9.2786e-19,7.2543e-19,1.9981e-20,1.0999e-20,1.3722e-23,2.4191e-24,2.3044e-24,1.6287e-24,2.4878e-26,1.4435e-27,1.4536e-28,2.5076e-29,1.6566e-29,2.1826e-31,1.1297e-31,7.3281e-34,3.8162e-34,1.1744e-35,4.4939e-37,4.7884e-40,1.0049e-40,5.3957e-41 1,0.83213,0.83756,0.88162,0.93569,0.95381,0.97025,1,0.99992,0.9977,0.99649,0.99606,0.9912,0.97861,0.963,0.95741,0.8298,0.82813,0.79469,0.73513,0.6165,0.48064,0.3394,0.13498,0.12123,0.11336,0.049348,0.039586,0.03189,0.011789,0.0023175,0.00050463,0.00021869,0.00017133,0.00014707,9.6044e-05,6.4612e-05,3.9837e-05,3.8512e-05,2.2183e-05,2.1475e-05,1.8521e-05,1.2645e-05,9.8314e-06,5.3379e-06,1.6666e-06,8.5963e-07,2.5467e-07,1.9048e-07,6.095e-08,5.6475e-08,4.7624e-08,2.5694e-08,1.8328e-08,3.5538e-09,1.3931e-09,1.2796e-09,4.3717e-10,4.335e-11,4.3274e-11,1.0267e-11,9.2102e-13,1.244e-13,3.7909e-14,3.3152e-14,5.7358e-15,5.4135e-15,3.4594e-15,2.7866e-15,1.9646e-15,5.4185e-16,2.3776e-16,1.6908e-16,1.4116e-16,1.2082e-16,6.2505e-17,2.1297e-17,1.9798e-17,1.0366e-17,8.4538e-18,6.6534e-18,2.0144e-19,1.1261e-19,1.6578e-22,3.0457e-23,2.9046e-23,2.0697e-23,3.4814e-25,2.1528e-26,2.2797e-27,4.0844e-28,2.7223e-28,3.9283e-30,2.0611e-30,1.4804e-32,7.8101e-33,2.5732e-34,1.0482e-35,1.2688e-38,2.7395e-39,1.4875e-39 1,0.82584,0.83134,0.87609,0.9314,0.95011,0.96722,0.99992,1,0.99846,0.99745,0.99708,0.99276,0.98106,0.96621,0.96084,0.83604,0.83439,0.80133,0.74226,0.62401,0.48787,0.34562,0.13836,0.12435,0.11632,0.050867,0.040849,0.032942,0.012232,0.0024195,0.00052955,0.00023008,0.00018039,0.00015492,0.00010129,6.8221e-05,4.2119e-05,4.0721e-05,2.3491e-05,2.2743e-05,1.9623e-05,1.3411e-05,1.0433e-05,5.6735e-06,1.7764e-06,9.1774e-07,2.7265e-07,2.0406e-07,6.5458e-08,6.0661e-08,5.1173e-08,2.7644e-08,1.9734e-08,3.8391e-09,1.5077e-09,1.3851e-09,4.7418e-10,4.722e-11,4.7138e-11,1.1212e-11,1.0099e-12,1.3685e-13,4.1784e-14,3.6549e-14,6.3407e-15,5.985e-15,3.8272e-15,3.0839e-15,2.1753e-15,6.0112e-16,2.6408e-16,1.8789e-16,1.5691e-16,1.3433e-16,6.9561e-17,2.3738e-17,2.2069e-17,1.1566e-17,9.4348e-18,7.4279e-18,2.2597e-19,1.2641e-19,1.8767e-22,3.455e-23,3.2951e-23,2.349e-23,3.9703e-25,2.463e-26,2.6148e-27,4.6938e-28,3.1299e-28,4.5372e-30,2.3822e-30,1.7199e-32,9.0794e-33,3.0016e-34,1.2267e-35,1.4943e-38,3.2311e-39,1.7554e-39 1,0.79677,0.80255,0.85015,0.91073,0.93198,0.95201,0.9977,0.99846,1,0.99987,0.99978,0.99788,0.99023,0.97886,0.97452,0.86292,0.86138,0.83017,0.77353,0.65752,0.52057,0.37413,0.15425,0.13904,0.1303,0.058149,0.046926,0.038018,0.014397,0.0029285,0.0006558,0.00028826,0.00022674,0.00019512,0.00012829,8.684e-05,5.3938e-05,5.2171e-05,3.0297e-05,2.9344e-05,2.5363e-05,1.7412e-05,1.3586e-05,7.4394e-06,2.3594e-06,1.2275e-06,3.6925e-07,2.7716e-07,8.9907e-08,8.338e-08,7.0453e-08,3.8283e-08,2.7414e-08,5.4134e-09,2.1436e-09,1.9707e-09,6.8087e-10,6.9105e-11,6.8985e-11,1.6596e-11,1.5226e-12,2.0937e-13,6.4469e-14,5.6445e-14,9.9123e-15,9.36e-15,6.0036e-15,4.8447e-15,3.4255e-15,9.5476e-16,4.2172e-16,3.0072e-16,2.5143e-16,2.1546e-16,1.1205e-16,3.85e-17,3.5811e-17,1.8844e-17,1.5391e-17,1.2136e-17,3.7715e-19,2.1172e-19,3.2628e-22,6.0629e-23,5.7838e-23,4.1307e-23,7.1353e-25,4.4905e-26,4.8216e-27,8.7296e-28,5.8325e-28,8.6305e-30,4.5452e-30,3.3579e-32,1.7778e-32,5.9686e-34,2.4738e-35,3.1016e-38,6.7494e-39,3.6762e-39 1,0.78811,0.79397,0.84231,0.90432,0.92627,0.94712,0.99649,0.99745,0.99987,1,0.99999,0.9988,0.99233,0.98198,0.97795,0.87035,0.86884,0.83822,0.78237,0.66716,0.53013,0.38259,0.15909,0.14352,0.13457,0.060407,0.048817,0.039603,0.015083,0.0030928,0.00069721,0.00030749,0.00024209,0.00020845,0.00013728,9.306e-05,5.7902e-05,5.6012e-05,3.2591e-05,3.1569e-05,2.73e-05,1.8766e-05,1.4655e-05,8.0409e-06,2.5596e-06,1.3344e-06,4.0286e-07,3.0264e-07,9.8488e-08,9.1358e-08,7.723e-08,4.2036e-08,3.013e-08,5.9753e-09,2.3717e-09,2.1808e-09,7.5549e-10,7.7101e-11,7.6968e-11,1.8577e-11,1.7135e-12,2.3662e-13,7.3037e-14,6.3964e-14,1.1272e-14,1.0645e-14,6.8341e-15,5.5173e-15,3.9037e-15,1.0907e-15,4.8254e-16,3.4431e-16,2.8797e-16,2.4685e-16,1.2853e-16,4.4251e-17,4.1165e-17,2.1687e-17,1.772e-17,1.3978e-17,4.3709e-19,2.4561e-19,3.8262e-22,7.1289e-23,6.8013e-23,4.8599e-23,8.4479e-25,5.3387e-26,5.7512e-27,1.0438e-27,6.9783e-28,1.0387e-29,5.4753e-30,4.072e-32,2.1577e-32,7.2763e-34,3.0282e-35,3.8282e-38,8.3462e-39,4.5492e-39 1,0.78538,0.79126,0.83983,0.90228,0.92444,0.94555,0.99606,0.99708,0.99978,0.99999,1,0.99903,0.99294,0.9829,0.97897,0.87263,0.87114,0.84071,0.7851,0.67016,0.53312,0.38524,0.16062,0.14494,0.13592,0.061126,0.049421,0.040109,0.015303,0.0031459,0.00071062,0.00031373,0.00024708,0.00021279,0.0001402,9.5087e-05,5.9196e-05,5.7265e-05,3.334e-05,3.2296e-05,2.7933e-05,1.9209e-05,1.5005e-05,8.2381e-06,2.6254e-06,1.3695e-06,4.1394e-07,3.1105e-07,1.0133e-07,9.3996e-08,7.9472e-08,4.328e-08,3.103e-08,6.162e-09,2.4476e-09,2.2508e-09,7.8038e-10,7.9778e-11,7.964e-11,1.9242e-11,1.7778e-12,2.4582e-13,7.5934e-14,6.6507e-14,1.1733e-14,1.1081e-14,7.1159e-15,5.7455e-15,4.066e-15,1.137e-15,5.0324e-16,3.5915e-16,3.0042e-16,2.5754e-16,1.3415e-16,4.6214e-17,4.2993e-17,2.2658e-17,1.8516e-17,1.4607e-17,4.5766e-19,2.5725e-19,4.0211e-22,7.4983e-23,7.1539e-23,5.1127e-23,8.9047e-25,5.6348e-26,6.0763e-27,1.1037e-27,7.3797e-28,1.1005e-29,5.8026e-30,4.3244e-32,2.2921e-32,7.7401e-34,3.2253e-35,4.088e-38,8.9177e-39,4.8619e-39 1,0.76095,0.76701,0.81746,0.88357,0.90756,0.9308,0.9912,0.99276,0.99788,0.9988,0.99903,1,0.99719,0.99002,0.98695,0.89207,0.89067,0.86198,0.80876,0.69643,0.55958,0.40902,0.17457,0.1579,0.14828,0.067772,0.055007,0.044809,0.017366,0.0036499,0.00083963,0.00037412,0.00029541,0.00025481,0.00016864,0.00011483,7.1831e-05,6.9511e-05,4.0686e-05,3.9424e-05,3.4146e-05,2.3565e-05,1.845e-05,1.0186e-05,3.2794e-06,1.7203e-06,5.2513e-07,3.9552e-07,1.2999e-07,1.2066e-07,1.0215e-07,5.5886e-08,4.0169e-08,8.0719e-09,3.2273e-09,2.9695e-09,1.0371e-09,1.0764e-10,1.0745e-10,2.6198e-11,2.456e-12,3.4358e-13,1.0685e-13,9.3653e-14,1.6683e-14,1.5761e-14,1.0146e-14,8.2013e-15,5.8148e-15,1.6372e-15,7.2775e-16,5.2029e-16,4.3561e-16,3.7374e-16,1.9534e-16,6.766e-17,6.2967e-17,3.3293e-17,2.7234e-17,2.1511e-17,6.8548e-19,3.8637e-19,6.2213e-22,1.1687e-22,1.1153e-22,7.9822e-23,1.4145e-24,9.0534e-26,9.8512e-27,1.8016e-27,1.2065e-27,1.8288e-29,9.6663e-30,7.3367e-32,3.8977e-32,1.3324e-33,5.6148e-35,7.2812e-38,1.5965e-38,8.7214e-39 1,0.71788,0.72419,0.77724,0.84881,0.87559,0.90219,0.97861,0.98106,0.99023,0.99233,0.99294,0.99719,1,0.99778,0.99621,0.92204,0.92082,0.89543,0.84688,0.74023,0.60499,0.45091,0.20027,0.18187,0.17121,0.08043,0.065715,0.053868,0.02144,0.0046797,0.0011104,0.00050258,0.00039861,0.00034477,0.0002299,0.00015762,9.9404e-05,9.6247e-05,5.6848e-05,5.5113e-05,4.7849e-05,3.3224e-05,2.6115e-05,1.4554e-05,4.7675e-06,2.5248e-06,7.8387e-07,5.9272e-07,1.9777e-07,1.8375e-07,1.559e-07,8.5973e-08,6.2058e-08,1.2725e-08,5.1444e-09,4.7383e-09,1.6755e-09,1.7843e-10,1.7813e-10,4.4102e-11,4.2386e-12,6.0482e-13,1.9026e-13,1.6697e-13,3.0239e-14,2.8582e-14,1.8475e-14,1.4964e-14,1.0644e-14,3.0318e-15,1.3576e-15,9.7353e-16,8.1637e-16,7.0137e-16,3.6869e-16,1.289e-16,1.2003e-16,6.3815e-17,5.2292e-17,4.1387e-17,1.3575e-18,7.6874e-19,1.302e-21,2.4769e-22,2.3644e-22,1.6965e-22,3.096e-24,2.0205e-25,2.2325e-26,4.1303e-27,2.7736e-27,4.3226e-29,2.2942e-29,1.7963e-31,9.5809e-32,3.3441e-33,1.4364e-34,1.9366e-37,4.2831e-38,2.3479e-38 1,0.67846,0.68492,0.73969,0.81522,0.84415,0.87338,0.963,0.96621,0.97886,0.98198,0.9829,0.99002,0.99778,1,0.99979,0.94503,0.94398,0.92187,0.8781,0.77777,0.64535,0.48938,0.22519,0.20522,0.19361,0.093202,0.076599,0.063141,0.025733,0.0058082,0.0014167,0.00065019,0.00051771,0.00044888,0.00030132,0.00020785,0.00013203,0.0001279,7.6156e-05,7.3867e-05,6.4267e-05,4.4865e-05,3.539e-05,1.9889e-05,6.6159e-06,3.5334e-06,1.1136e-06,8.45e-07,2.8575e-07,2.6573e-07,2.259e-07,1.2545e-07,9.0898e-08,1.8975e-08,7.7476e-09,7.1422e-09,2.5537e-09,2.7823e-10,2.7777e-10,6.9718e-11,6.85e-12,9.9481e-13,3.1613e-13,2.7776e-13,5.1044e-14,4.8271e-14,3.1316e-14,2.541e-14,1.8125e-14,5.2164e-15,2.3511e-15,1.6904e-15,1.4196e-15,1.2211e-15,6.4516e-16,2.2742e-16,2.119e-16,1.1321e-16,9.2908e-17,7.3665e-17,2.479e-18,1.4097e-18,2.4972e-21,4.8041e-22,4.5874e-22,3.2987e-22,6.1795e-24,4.103e-25,4.5959e-26,8.5903e-27,5.7825e-27,9.2368e-29,4.9205e-29,3.9607e-31,2.1199e-31,7.5374e-33,3.293e-34,4.5958e-37,1.0243e-37,5.632e-38 1,0.66621,0.6727,0.72788,0.80446,0.83398,0.86395,0.95741,0.96084,0.97452,0.97795,0.97897,0.98695,0.99621,0.99979,1,0.95135,0.95036,0.92931,0.88712,0.78897,0.65769,0.5014,0.23324,0.21278,0.20088,0.09743,0.080219,0.066238,0.027191,0.006201,0.0015253,0.00070305,0.00056047,0.00048632,0.00032712,0.00022607,0.00014393,0.00013945,8.3236e-05,8.0745e-05,7.0297e-05,4.9156e-05,3.8817e-05,2.187e-05,7.3096e-06,3.914e-06,1.2393e-06,9.4136e-07,3.1964e-07,2.9733e-07,2.5292e-07,1.4076e-07,1.0211e-07,2.1432e-08,8.7776e-09,8.094e-09,2.9038e-09,3.1861e-10,3.1808e-10,8.0172e-11,7.9306e-12,1.158e-12,3.6914e-13,3.2445e-13,5.9892e-14,5.6646e-14,3.6791e-14,2.9868e-14,2.1324e-14,6.1565e-15,2.7804e-15,2.0007e-15,1.6809e-15,1.4464e-15,7.654e-16,2.7049e-16,2.5207e-16,1.3487e-16,1.1074e-16,8.7853e-17,2.9798e-18,1.6967e-18,3.0473e-21,5.8824e-22,5.6176e-22,4.0423e-22,7.6334e-24,5.0953e-25,5.7313e-26,1.0746e-26,7.2392e-27,1.1652e-28,6.2139e-29,5.0444e-31,2.7029e-31,9.6649e-33,4.2445e-34,5.987e-37,1.3375e-37,7.3611e-38 1,0.4768,0.48309,0.53837,0.6214,0.65592,0.69287,0.8298,0.83604,0.86292,0.87035,0.87263,0.89207,0.92204,0.94503,0.95135,1,0.99999,0.99775,0.98504,0.9329,0.83546,0.69133,0.38035,0.35284,0.33653,0.18324,0.15514,0.13153,0.060403,0.016148,0.0045256,0.0022283,0.0018098,0.0015886,0.0011029,0.00078448,0.0005169,0.00050201,0.00031129,0.00030264,0.00026614,0.00019093,0.0001533,8.9866e-05,3.2307e-05,1.8006e-05,6.1216e-06,4.7277e-06,1.7106e-06,1.5979e-06,1.3719e-06,7.8933e-07,5.8296e-07,1.332e-07,5.717e-08,5.294e-08,2.0013e-08,2.4471e-09,2.4432e-09,6.5704e-10,7.2163e-11,1.1454e-11,3.8315e-12,3.3858e-12,6.6989e-13,6.3502e-13,4.1967e-13,3.4356e-13,2.486e-13,7.5377e-14,3.5108e-14,2.5585e-14,2.1639e-14,1.8727e-14,1.0153e-14,3.7311e-15,3.4861e-15,1.9091e-15,1.5789e-15,1.2633e-15,4.8388e-17,2.8101e-17,6.2438e-20,1.2709e-20,1.2154e-20,8.8383e-21,1.8891e-22,1.3685e-23,1.642e-24,3.2325e-25,2.2025e-25,3.9844e-27,2.1624e-27,2.0011e-29,1.0902e-29,4.2554e-31,2.0254e-32,3.3653e-35,7.7976e-36,4.354e-36 1,0.47489,0.48118,0.53641,0.61941,0.65395,0.69093,0.82813,0.83439,0.86138,0.86884,0.87114,0.89067,0.92082,0.94398,0.95036,0.99999,1,0.99797,0.9856,0.93404,0.8371,0.69328,0.38208,0.35451,0.33816,0.18435,0.15612,0.1324,0.060873,0.016301,0.0045746,0.002254,0.001831,0.0016074,0.0011164,0.00079427,0.00052353,0.00050846,0.00031541,0.00030666,0.0002697,0.00019353,0.00015542,9.1146e-05,3.2792e-05,1.8284e-05,6.2207e-06,4.805e-06,1.7398e-06,1.6251e-06,1.3954e-06,8.0316e-07,5.9329e-07,1.3568e-07,5.8263e-08,5.3954e-08,2.0407e-08,2.4981e-09,2.4942e-09,6.712e-10,7.3797e-11,1.1723e-11,3.9237e-12,3.4675e-12,6.8654e-13,6.5081e-13,4.3019e-13,3.522e-13,2.5489e-13,7.7323e-14,3.6026e-14,2.6258e-14,2.2209e-14,1.9222e-14,1.0424e-14,3.8321e-15,3.5806e-15,1.9613e-15,1.6223e-15,1.2981e-15,4.9783e-17,2.8916e-17,6.4392e-20,1.3114e-20,1.2542e-20,9.1211e-21,1.952e-22,1.4153e-23,1.6993e-24,3.347e-25,2.2807e-25,4.1311e-27,2.2423e-27,2.0779e-29,1.1323e-29,4.4236e-31,2.1072e-32,3.5072e-35,8.1295e-36,4.5399e-36 1,0.43842,0.44453,0.49851,0.58072,0.61534,0.6527,0.79469,0.80133,0.83017,0.83822,0.84071,0.86198,0.89543,0.92187,0.92931,0.99775,0.99797,1,0.99434,0.95437,0.8678,0.73071,0.4166,0.38784,0.37072,0.20689,0.17619,0.15023,0.07065,0.019537,0.0056291,0.0028108,0.002292,0.0020167,0.0014096,0.0010088,0.00066956,0.00065059,0.0004067,0.00039559,0.00034862,0.00025146,0.00020262,0.00011978,4.3734e-05,2.4583e-05,8.485e-06,6.5761e-06,2.4118e-06,2.2548e-06,1.9397e-06,1.124e-06,8.3327e-07,1.9386e-07,8.4037e-08,7.7888e-08,2.9773e-08,3.7253e-09,3.7195e-09,1.0141e-09,1.1388e-10,1.8399e-11,6.2182e-12,5.5012e-12,1.1046e-12,1.0476e-12,6.9489e-13,5.6988e-13,4.1354e-13,1.267e-13,5.94e-14,4.3405e-14,3.6762e-14,3.1855e-14,1.7359e-14,6.4323e-15,6.0134e-15,3.3094e-15,2.7413e-15,2.1973e-15,8.6363e-17,5.0364e-17,1.1708e-19,2.4101e-20,2.3057e-20,1.6804e-20,3.6873e-22,2.718e-23,3.3064e-24,6.5765e-25,4.4918e-25,8.3304e-27,4.5377e-27,4.3178e-29,2.3607e-29,9.3877e-31,4.5452e-32,7.8195e-35,1.8259e-35,1.0227e-35 1,0.3802,0.38594,0.43714,0.51674,0.55088,0.58819,0.73513,0.74226,0.77353,0.78237,0.7851,0.80876,0.84688,0.8781,0.88712,0.98504,0.9856,0.99434,1,0.98038,0.91325,0.79055,0.47695,0.44655,0.42831,0.24854,0.21367,0.18381,0.089776,0.026193,0.0078865,0.0040266,0.0033041,0.0029186,0.0020619,0.00149,0.0010005,0.00097292,0.00061607,0.00059969,0.00053028,0.00038581,0.00031262,0.0001873,7.0088e-05,3.9932e-05,1.4118e-05,1.1003e-05,4.1227e-06,3.8598e-06,3.3309e-06,1.9518e-06,1.4559e-06,3.4854e-07,1.535e-07,1.4247e-07,5.5428e-08,7.1936e-09,7.1824e-09,2.0016e-09,2.3285e-10,3.8693e-11,1.3291e-11,1.178e-11,2.4213e-12,2.2981e-12,1.5333e-12,1.261e-12,9.1925e-13,2.8633e-13,1.3564e-13,9.9541e-14,8.4497e-14,7.3359e-14,4.0304e-14,1.5133e-14,1.416e-14,7.8539e-15,6.5217e-15,5.2425e-15,2.1468e-16,1.2603e-16,3.1478e-19,6.5965e-20,6.3139e-20,4.6178e-20,1.0565e-21,8.0059e-23,9.9536e-24,2.0126e-24,1.3799e-24,2.6621e-26,1.4586e-26,1.4507e-28,7.9761e-29,3.2669e-30,1.6253e-31,2.9549e-34,6.9852e-35,3.9315e-35 1,0.28259,0.28748,0.33173,0.40301,0.43454,0.46971,0.6165,0.62401,0.65752,0.66716,0.67016,0.69643,0.74023,0.77777,0.78897,0.9329,0.93404,0.95437,0.98038,1,0.97458,0.88839,0.59577,0.56371,0.54418,0.33967,0.29719,0.25995,0.13627,0.043947,0.014367,0.0076468,0.0063489,0.0056491,0.0040714,0.002996,0.0020557,0.0020021,0.0012986,0.0012658,0.0011264,0.00083287,0.00068199,0.00041895,0.00016414,9.5909e-05,3.5464e-05,2.793e-05,1.0893e-05,1.0225e-05,8.8757e-06,5.3112e-06,4.0066e-06,1.0119e-06,4.5901e-07,4.2716e-07,1.7176e-07,2.3868e-08,2.3832e-08,6.9183e-09,8.5968e-10,1.5057e-10,5.3317e-11,4.7415e-11,1.0181e-11,9.6771e-12,6.528e-12,5.3971e-12,3.9678e-12,1.2746e-12,6.1568e-13,4.5544e-13,3.8824e-13,3.3829e-13,1.8872e-13,7.2624e-14,6.8067e-14,3.831e-14,3.1958e-14,2.5828e-14,1.1419e-15,6.7874e-16,1.9386e-18,4.2005e-19,4.0243e-19,2.9628e-19,7.3293e-21,5.8477e-22,7.5727e-23,1.5789e-23,1.0903e-23,2.2643e-25,1.2544e-25,1.355e-27,7.5285e-28,3.2588e-29,1.7055e-30,3.4381e-33,8.3166e-34,4.7236e-34 1,0.192,0.1958,0.23078,0.28924,0.31595,0.34634,0.48064,0.48787,0.52057,0.53013,0.53312,0.55958,0.60499,0.64535,0.65769,0.83546,0.8371,0.8678,0.91325,0.97458,1,0.96687,0.73147,0.70047,0.68121,0.46206,0.41246,0.36769,0.20892,0.07553,0.027118,0.015135,0.012735,0.011426,0.0084242,0.0063286,0.004451,0.0043422,0.0028947,0.0028261,0.0025331,0.0019077,0.0015809,0.00099924,0.00041255,0.00024809,9.655e-05,7.6948e-05,3.1412e-05,2.9575e-05,2.5844e-05,1.5839e-05,1.2104e-05,3.2493e-06,1.5243e-06,1.4228e-06,5.9405e-07,8.9229e-08,8.91e-08,2.7099e-08,3.6302e-09,6.751e-10,2.4748e-10,2.2094e-10,4.9865e-11,4.7472e-11,3.2427e-11,2.697e-11,2.002e-11,6.6618e-12,3.29e-12,2.4559e-12,2.1036e-12,1.8406e-12,1.0448e-12,4.1351e-13,3.883e-13,2.2222e-13,1.8635e-13,1.5153e-13,7.3105e-15,4.4075e-15,1.4668e-17,3.3016e-18,3.1665e-18,2.3489e-18,6.3513e-20,5.3743e-21,7.2903e-22,1.5742e-22,1.096e-22,2.4754e-24,1.3887e-24,1.6481e-26,9.2672e-27,4.2721e-28,2.3689e-29,5.3718e-32,1.3339e-32,7.6555e-33 1,0.11584,0.11846,0.14306,0.1858,0.20599,0.22945,0.3394,0.34562,0.37413,0.38259,0.38524,0.40902,0.45091,0.48938,0.5014,0.69133,0.69328,0.73071,0.79055,0.88839,0.96687,1,0.8684,0.84312,0.82686,0.61683,0.56336,0.51325,0.31978,0.13175,0.052657,0.031027,0.026511,0.024011,0.01817,0.013977,0.010112,0.0098839,0.0067988,0.0066498,0.0060098,0.0046223,0.0038833,0.0025357,0.0011116,0.00069081,0.00028505,0.00023029,9.9049e-05,9.3577e-05,8.24e-05,5.19e-05,4.025e-05,1.1586e-05,5.6488e-06,5.2909e-06,2.3061e-06,3.7865e-07,3.7812e-07,1.2129e-07,1.7708e-08,3.5269e-09,1.3451e-09,1.2062e-09,2.8821e-10,2.7489e-10,1.9047e-10,1.5951e-10,1.1972e-10,4.1474e-11,2.1008e-11,1.5847e-11,1.3648e-11,1.1998e-11,6.9473e-12,2.8394e-12,2.6721e-12,1.5587e-12,1.3149e-12,1.0767e-12,5.7404e-14,3.5175e-14,1.3944e-16,3.2783e-17,3.1479e-17,2.3553e-17,7.0512e-19,6.3816e-20,9.129e-21,2.0517e-21,1.4419e-21,3.5851e-23,2.0403e-23,2.6966e-25,1.5372e-25,7.6158e-27,4.5117e-28,1.1705e-30,2.9952e-31,1.7395e-31 1,0.033385,0.034338,0.043577,0.060882,0.069575,0.080083,0.13498,0.13836,0.15425,0.15909,0.16062,0.17457,0.20027,0.22519,0.23324,0.38035,0.38208,0.4166,0.47695,0.59577,0.73147,0.8684,1,0.9986,0.99636,0.90298,0.8643,0.82322,0.61937,0.3334,0.16595,0.10927,0.096337,0.088963,0.071002,0.057329,0.043941,0.043123,0.031627,0.03105,0.028539,0.022916,0.019799,0.01382,0.0068484,0.0045527,0.0021175,0.001759,0.00084193,0.00080101,0.00071645,0.00047723,0.00038146,0.00012665,6.6814e-05,6.3024e-05,2.9997e-05,5.91e-06,5.9026e-06,2.1115e-06,3.6756e-07,8.424e-08,3.4843e-08,3.1528e-08,8.4654e-09,8.1047e-09,5.7824e-09,4.9112e-09,3.7704e-09,1.4183e-09,7.5668e-10,5.8306e-10,5.0783e-10,4.5077e-10,2.7186e-10,1.1866e-10,1.1216e-10,6.803e-11,5.8096e-11,4.8259e-11,3.1567e-12,1.9995e-12,1.1338e-14,2.914e-15,2.8051e-15,2.1361e-15,7.8764e-17,8.1803e-18,1.3046e-18,3.1821e-19,2.2796e-19,6.8994e-21,4.0436e-21,6.6618e-23,3.9054e-23,2.2422e-24,1.5208e-25,5.197e-28,1.414e-28,8.4139e-29 1,0.029036,0.029883,0.038111,0.053634,0.061478,0.070996,0.12123,0.12435,0.13904,0.14352,0.14494,0.1579,0.18187,0.20522,0.21278,0.35284,0.35451,0.38784,0.44655,0.56371,0.70047,0.84312,0.9986,1,0.99947,0.92355,0.88814,0.84968,0.65143,0.36013,0.18323,0.12198,0.10788,0.099819,0.08009,0.06498,0.050093,0.04918,0.036301,0.035652,0.032824,0.02647,0.022933,0.016115,0.0080839,0.0054102,0.0025465,0.0021214,0.0010262,0.00097704,0.00087526,0.00058627,0.00047003,0.0001583,8.4168e-05,7.945e-05,3.8149e-05,7.6537e-06,7.6443e-06,2.7644e-06,4.8974e-07,1.1382e-07,4.7461e-08,4.2984e-08,1.1677e-08,1.1183e-08,8.0023e-09,6.8061e-09,5.237e-09,1.9862e-09,1.0652e-09,8.2251e-10,7.172e-10,6.3722e-10,3.8587e-10,1.6953e-10,1.6032e-10,9.7617e-11,8.3464e-11,6.9431e-11,4.6351e-12,2.9458e-12,1.731e-14,4.4888e-15,4.322e-15,3.2971e-15,1.2412e-16,1.3069e-17,2.107e-18,5.1815e-19,3.7191e-19,1.1479e-20,6.7472e-21,1.1363e-22,6.6802e-23,3.892e-24,2.6756e-25,9.3983e-28,2.5728e-28,1.5346e-28 1,0.026622,0.027408,0.035061,0.049562,0.056916,0.065859,0.11336,0.11632,0.1303,0.13457,0.13592,0.14828,0.17121,0.19361,0.20088,0.33653,0.33816,0.37072,0.42831,0.54418,0.68121,0.82686,0.99636,0.99947,1,0.93508,0.9018,0.8651,0.67093,0.37702,0.1944,0.1303,0.11546,0.10696,0.086099,0.070062,0.054201,0.053226,0.039442,0.038745,0.035709,0.028873,0.025057,0.017679,0.0089353,0.0060046,0.0028471,0.0023757,0.0011568,0.0011018,0.00098799,0.00066404,0.00053337,0.00018121,9.681e-05,9.1423e-05,4.4134e-05,8.9536e-06,8.9427e-06,3.2555e-06,5.8298e-07,1.3666e-07,5.7265e-08,5.1892e-08,1.4197e-08,1.3601e-08,9.7494e-09,8.2991e-09,6.3947e-09,2.4375e-09,1.3113e-09,1.0139e-09,8.847e-10,7.865e-10,4.7746e-10,2.1062e-10,1.9922e-10,1.2159e-10,1.0404e-10,8.6625e-11,5.8556e-12,3.729e-12,2.2396e-14,5.8394e-15,5.6233e-15,4.2945e-15,1.6374e-16,1.7386e-17,2.8215e-18,6.9735e-19,5.0112e-19,1.5654e-20,9.2177e-21,1.5734e-22,9.2654e-23,5.447e-24,3.7757e-25,1.3487e-27,3.706e-28,2.2139e-28 1,0.0092808,0.0095926,0.012698,0.018877,0.022136,0.026201,0.049348,0.050867,0.058149,0.060407,0.061126,0.067772,0.08043,0.093202,0.09743,0.18324,0.18435,0.20689,0.24854,0.33967,0.46206,0.61683,0.90298,0.92355,0.93508,1,0.99611,0.98532,0.87034,0.58812,0.35281,0.2553,0.23117,0.21703,0.18123,0.15249,0.12276,0.12089,0.093632,0.092214,0.085985,0.071618,0.063367,0.046813,0.025748,0.018126,0.0093338,0.0079398,0.0041618,0.0039833,0.0036105,0.0025221,0.0020684,0.00077546,0.00043743,0.00041511,0.00021293,4.8985e-05,4.8929e-05,1.9203e-05,3.8825e-06,1.0026e-06,4.4431e-07,4.0514e-07,1.2013e-07,1.1538e-07,8.4395e-08,7.2541e-08,5.6774e-08,2.2906e-08,1.2772e-08,1.0021e-08,8.8122e-09,7.8865e-09,4.9239e-09,2.2728e-09,2.1564e-09,1.3521e-09,1.1667e-09,9.8103e-10,7.6358e-11,4.9753e-11,3.8249e-13,1.0605e-13,1.023e-13,7.9081e-14,3.4811e-15,4.0644e-16,7.1094e-17,1.8592e-17,1.3538e-17,4.8432e-19,2.9102e-19,5.7829e-21,3.4719e-21,2.2595e-22,1.7195e-23,7.4275e-26,2.1291e-26,1.2934e-26 1,0.007057,0.0073011,0.009745,0.014663,0.017282,0.020567,0.039586,0.040849,0.046926,0.048817,0.049421,0.055007,0.065715,0.076599,0.080219,0.15514,0.15612,0.17619,0.21367,0.29719,0.41246,0.56336,0.8643,0.88814,0.9018,0.99611,1,0.9965,0.90823,0.64161,0.3992,0.29424,0.26782,0.25225,0.21252,0.18026,0.14652,0.14437,0.11302,0.11138,0.10415,0.087368,0.077663,0.058013,0.032565,0.023183,0.012178,0.010407,0.0055529,0.0053209,0.0048354,0.0034094,0.0028102,0.0010788,0.00061658,0.0005858,0.00030492,7.2301e-05,7.2221e-05,2.8863e-05,6.0085e-06,1.5883e-06,7.1338e-07,6.5147e-07,1.9695e-07,1.8929e-07,1.3913e-07,1.1987e-07,9.4165e-08,3.8515e-08,2.1661e-08,1.7056e-08,1.5027e-08,1.347e-08,8.4668e-09,3.9511e-09,3.7515e-09,2.3675e-09,2.0471e-09,1.7254e-09,1.3894e-10,9.1027e-11,7.4268e-13,2.0899e-13,2.0168e-13,1.5636e-13,7.1255e-15,8.5119e-16,1.516e-16,4.0189e-17,2.9358e-17,1.0851e-18,6.5524e-19,1.3506e-20,8.1463e-21,5.4331e-22,4.2285e-23,1.9121e-25,5.5375e-26,3.3774e-26 1,0.0054038,0.0055957,0.0075274,0.011458,0.013568,0.016231,0.03189,0.032942,0.038018,0.039603,0.040109,0.044809,0.053868,0.063141,0.066238,0.13153,0.1324,0.15023,0.18381,0.25995,0.36769,0.51325,0.82322,0.84968,0.8651,0.98532,0.9965,1,0.93891,0.69182,0.44558,0.33422,0.30572,0.28882,0.24538,0.20973,0.17203,0.16962,0.13413,0.13226,0.124,0.10473,0.09351,0.070589,0.040397,0.029065,0.015559,0.013355,0.0072467,0.0069516,0.0063329,0.0045047,0.0037307,0.0014648,0.00084764,0.00080623,0.00042551,0.00010383,0.00010372,4.217e-05,9.0256e-06,2.4392e-06,1.1096e-06,1.0148e-06,3.1248e-07,3.005e-07,2.2189e-07,1.9159e-07,1.5105e-07,6.2588e-08,3.5489e-08,2.8039e-08,2.4746e-08,2.2216e-08,1.4054e-08,6.6267e-09,6.2964e-09,3.998e-09,3.4636e-09,2.9259e-09,2.4332e-10,1.6025e-10,1.3833e-12,3.9477e-13,3.8111e-13,2.963e-13,1.3953e-14,1.7033e-15,3.0861e-16,8.2874e-17,6.0721e-17,2.315e-18,1.4044e-18,2.9969e-20,1.8157e-20,1.2394e-21,9.8539e-23,4.6536e-25,1.3607e-25,8.3314e-26 1,0.0016108,0.0016744,0.0023284,0.0037213,0.004497,0.0054988,0.011789,0.012232,0.014397,0.015083,0.015303,0.017366,0.02144,0.025733,0.027191,0.060403,0.060873,0.07065,0.089776,0.13627,0.20892,0.31978,0.61937,0.65143,0.67093,0.87034,0.90823,0.93891,1,0.88102,0.65708,0.53083,0.49585,0.47455,0.41779,0.36883,0.31445,0.31087,0.2566,0.25365,0.24051,0.20907,0.19019,0.15012,0.093246,0.070178,0.040696,0.035589,0.020741,0.01999,0.018403,0.013589,0.011483,0.0049603,0.0030256,0.0028914,0.0016185,0.00044611,0.00044567,0.00019489,4.6918e-05,1.3927e-05,6.6883e-06,6.1538e-06,2.0486e-06,1.9751e-06,1.4872e-06,1.2962e-06,1.0375e-06,4.5423e-07,2.6665e-07,2.1369e-07,1.9001e-07,1.7169e-07,1.1161e-07,5.4991e-08,5.2404e-08,3.4154e-08,2.9832e-08,2.5444e-08,2.4258e-09,1.6335e-09,1.7911e-11,5.4252e-12,5.2462e-12,4.1271e-12,2.2338e-13,2.9897e-14,5.8251e-15,1.6523e-15,1.2262e-15,5.3315e-17,3.2984e-17,8.1558e-19,5.0344e-19,3.7924e-20,3.3006e-21,1.8739e-23,5.7089e-24,3.5526e-24 1,0.00023337,0.00024392,0.00035552,0.00060887,0.00075724,0.00095516,0.0023175,0.0024195,0.0029285,0.0030928,0.0031459,0.0036499,0.0046797,0.0058082,0.006201,0.016148,0.016301,0.019537,0.026193,0.043947,0.07553,0.13175,0.3334,0.36013,0.37702,0.58812,0.64161,0.69182,0.88102,1,0.91821,0.82406,0.79297,0.77299,0.71573,0.66154,0.59573,0.59118,0.51856,0.5144,0.49563,0.44877,0.41922,0.35247,0.24592,0.19728,0.12814,0.11506,0.074203,0.071994,0.067265,0.052374,0.045544,0.022522,0.014803,0.014242,0.0086653,0.0028386,0.0028361,0.0013752,0.00039112,0.00013261,6.8773e-05,6.3821e-05,2.3729e-05,2.296e-05,1.7774e-05,1.57e-05,1.2838e-05,6.077e-06,3.7472e-06,3.0642e-06,2.7538e-06,2.5112e-06,1.6967e-06,8.8966e-07,8.5138e-07,5.7579e-07,5.0878e-07,4.3987e-07,5.0901e-08,3.5371e-08,5.4444e-10,1.7944e-10,1.7392e-10,1.3913e-10,9.1739e-12,1.3988e-12,3.0211e-13,9.2607e-14,6.9986e-14,3.6661e-15,2.3321e-15,7.1053e-17,4.5038e-17,3.9013e-18,3.8599e-19,2.8451e-21,9.1866e-22,5.8499e-22 1,3.9558e-05,4.1531e-05,6.2916e-05,0.00011404,0.00014522,0.00018791,0.00050463,0.00052955,0.0006558,0.00069721,0.00071062,0.00083963,0.0011104,0.0014167,0.0015253,0.0045256,0.0045746,0.0056291,0.0078865,0.014367,0.027118,0.052657,0.16595,0.18323,0.1944,0.35281,0.3992,0.44558,0.65708,0.91821,1,0.9784,0.96472,0.95469,0.92136,0.88429,0.83292,0.82912,0.76446,0.76052,0.74246,0.69516,0.66368,0.58772,0.45107,0.38131,0.27185,0.24944,0.17481,0.17053,0.16128,0.13116,0.11677,0.064525,0.045091,0.043619,0.02842,0.010727,0.010719,0.0056573,0.001845,0.00069769,0.00038538,0.00036015,0.00014662,0.00014229,0.00011269,0.00010063,8.3749e-05,4.2264e-05,2.7134e-05,2.2559e-05,2.0452e-05,1.8791e-05,1.3104e-05,7.2317e-06,6.9443e-06,4.8412e-06,4.3187e-06,3.7756e-06,5.1221e-07,3.6523e-07,7.4261e-09,2.6232e-09,2.5475e-09,2.066e-09,1.6019e-10,2.7185e-11,6.3889e-12,2.0872e-12,1.601e-12,9.7721e-14,6.3599e-14,2.2999e-15,1.4899e-15,1.4474e-16,1.5909e-17,1.4529e-19,4.9205e-20,3.1931e-20 1,1.5103e-05,1.5892e-05,2.455e-05,4.5795e-05,5.9015e-05,7.7355e-05,0.00021869,0.00023008,0.00028826,0.00030749,0.00031373,0.00037412,0.00050258,0.00065019,0.00070305,0.0022283,0.002254,0.0028108,0.0040266,0.0076468,0.015135,0.031027,0.10927,0.12198,0.1303,0.2553,0.29424,0.33422,0.53083,0.82406,0.9784,1,0.99826,0.99545,0.98102,0.95967,0.9247,0.92193,0.87175,0.86853,0.85356,0.81283,0.78462,0.71328,0.5745,0.49868,0.37268,0.34573,0.25269,0.24719,0.23522,0.19555,0.17617,0.10298,0.074228,0.072005,0.048567,0.019695,0.019681,0.010842,0.0037893,0.0015143,0.00086355,0.00080991,0.00034521,0.00033551,0.00026878,0.00024135,0.00020266,0.00010564,6.9223e-05,5.8035e-05,5.2848e-05,4.874e-05,3.4539e-05,1.956e-05,1.8815e-05,1.332e-05,1.194e-05,1.0497e-05,1.5434e-06,1.115e-06,2.6098e-08,9.5477e-09,9.2812e-09,7.5796e-09,6.3786e-10,1.1427e-10,2.8029e-11,9.4567e-12,7.3089e-12,4.8199e-13,3.1734e-13,1.2515e-14,8.1973e-15,8.4386e-16,9.7827e-17,9.9564e-19,3.4544e-19,2.2632e-19 1,1.1417e-05,1.2021e-05,1.8672e-05,3.5114e-05,4.5403e-05,5.973e-05,0.00017133,0.00018039,0.00022674,0.00024209,0.00024708,0.00029541,0.00039861,0.00051771,0.00056047,0.0018098,0.001831,0.002292,0.0033041,0.0063489,0.012735,0.026511,0.096337,0.10788,0.11546,0.23117,0.26782,0.30572,0.49585,0.79297,0.96472,0.99826,1,0.99933,0.9907,0.97436,0.9449,0.94249,0.89756,0.89462,0.88085,0.84284,0.81613,0.74744,0.61027,0.53371,0.4042,0.37613,0.2782,0.27235,0.25962,0.21717,0.19631,0.11658,0.084776,0.082301,0.056058,0.023197,0.023181,0.012926,0.0046068,0.0018699,0.001076,0.0010102,0.00043619,0.00042411,0.00034086,0.00030656,0.00025806,0.00013576,8.9471e-05,7.5188e-05,6.8554e-05,6.3293e-05,4.5055e-05,2.5702e-05,2.4736e-05,1.7588e-05,1.5787e-05,1.3901e-05,2.0908e-06,1.5161e-06,3.6926e-08,1.3643e-08,1.3266e-08,1.0855e-08,9.3492e-10,1.7007e-10,4.2223e-11,1.4376e-11,1.1134e-11,7.5047e-13,4.9571e-13,2.0034e-14,1.3163e-14,1.3775e-15,1.621e-16,1.7011e-18,5.9424e-19,3.9038e-19 1,9.5855e-06,1.0097e-05,1.5737e-05,2.9743e-05,3.8539e-05,5.0815e-05,0.00014707,0.00015492,0.00019512,0.00020845,0.00021279,0.00025481,0.00034477,0.00044888,0.00048632,0.0015886,0.0016074,0.0020167,0.0029186,0.0056491,0.011426,0.024011,0.088963,0.099819,0.10696,0.21703,0.25225,0.28882,0.47455,0.77299,0.95469,0.99545,0.99933,1,0.99499,0.98185,0.95595,0.95377,0.91231,0.90956,0.8966,0.86045,0.83478,0.76804,0.63239,0.55563,0.42427,0.39556,0.29473,0.28868,0.27547,0.23133,0.20954,0.12567,0.091876,0.089237,0.061151,0.025623,0.025606,0.014385,0.0051894,0.0021268,0.0012306,0.0011561,0.00050321,0.0004894,0.00039413,0.0003548,0.00029914,0.00015826,0.00010467,8.8094e-05,8.0382e-05,7.4263e-05,5.3012e-05,3.0379e-05,2.9246e-05,2.085e-05,1.873e-05,1.651e-05,2.5183e-06,1.8302e-06,4.5686e-08,1.6984e-08,1.6517e-08,1.3532e-08,1.1822e-09,2.1711e-10,5.4304e-11,1.8593e-11,1.442e-11,9.8514e-13,6.5204e-13,2.6754e-14,1.7612e-14,1.8618e-15,2.2115e-16,2.3651e-18,8.2968e-19,5.4596e-19 1,5.8908e-06,6.2116e-06,9.7729e-06,1.8727e-05,2.4404e-05,3.2377e-05,9.6044e-05,0.00010129,0.00012829,0.00013728,0.0001402,0.00016864,0.0002299,0.00030132,0.00032712,0.0011029,0.0011164,0.0014096,0.0020619,0.0040714,0.0084242,0.01817,0.071002,0.08009,0.086099,0.18123,0.21252,0.24538,0.41779,0.71573,0.92136,0.98102,0.9907,0.99499,1,0.99585,0.98021,0.97871,0.94757,0.94537,0.93488,0.9045,0.88217,0.82192,0.69259,0.6163,0.48135,0.45115,0.34299,0.33639,0.32195,0.27323,0.24891,0.15335,0.1138,0.11068,0.077113,0.033442,0.03342,0.019166,0.0071472,0.0030078,0.0017673,0.001663,0.00073998,0.00072018,0.00058319,0.0005264,0.00044572,0.0002395,0.00015996,0.00013517,0.0001236,0.0001144,8.229e-05,4.7745e-05,4.6003e-05,3.3038e-05,2.9749e-05,2.6293e-05,4.1683e-06,3.0483e-06,8.1412e-08,3.0778e-08,2.9946e-08,2.4615e-08,2.2368e-09,4.2157e-10,1.0763e-10,3.7426e-11,2.913e-11,2.0654e-12,1.3746e-12,5.8797e-14,3.8911e-14,4.2293e-15,5.1536e-16,5.8056e-18,2.0603e-18,1.362e-18 1,3.7498e-06,3.9579e-06,6.2803e-06,1.2186e-05,1.5963e-05,2.1298e-05,6.4612e-05,6.8221e-05,8.684e-05,9.306e-05,9.5087e-05,0.00011483,0.00015762,0.00020785,0.00022607,0.00078448,0.00079427,0.0010088,0.00149,0.002996,0.0063286,0.013977,0.057329,0.06498,0.070062,0.15249,0.18026,0.20973,0.36883,0.66154,0.88429,0.95967,0.97436,0.98185,0.99585,1,0.9941,0.99326,0.97231,0.97067,0.96268,0.93832,0.91955,0.86661,0.74579,0.67136,0.53524,0.50406,0.39031,0.38327,0.3678,0.31515,0.28859,0.18221,0.13706,0.13346,0.094402,0.042241,0.042214,0.024666,0.0094804,0.004087,0.002435,0.002295,0.0010418,0.0010146,0.00082575,0.00074714,0.00063509,0.00034612,0.00023324,0.00019781,0.00018122,0.00016801,0.00012171,7.1416e-05,6.8862e-05,4.9788e-05,4.4925e-05,3.9803e-05,6.5356e-06,4.8069e-06,1.3651e-07,5.2405e-08,5.101e-08,4.2057e-08,3.9609e-09,7.6436e-10,1.9882e-10,7.0114e-11,5.4753e-11,4.0153e-12,2.6859e-12,1.1931e-13,7.9341e-14,8.8447e-15,1.1031e-15,1.3028e-17,4.6726e-18,3.1018e-18 1,2.1644e-06,2.2873e-06,3.6665e-06,7.2214e-06,9.5186e-06,1.2785e-05,3.9837e-05,4.2119e-05,5.3938e-05,5.7902e-05,5.9196e-05,7.1831e-05,9.9404e-05,0.00013203,0.00014393,0.0005169,0.00052353,0.00066956,0.0010005,0.0020557,0.004451,0.010112,0.043941,0.050093,0.054201,0.12276,0.14652,0.17203,0.31445,0.59573,0.83292,0.9247,0.9449,0.95595,0.98021,0.9941,1,0.99997,0.99181,0.9909,0.98614,0.96969,0.95577,0.91312,0.80579,0.73544,0.60088,0.56911,0.45044,0.44294,0.42643,0.36959,0.34055,0.22139,0.16924,0.16503,0.11886,0.055206,0.055172,0.032965,0.013135,0.0058275,0.0035301,0.0033332,0.0015497,0.0015104,0.0012367,0.0011221,0.00095828,0.00053114,0.00036174,0.00030813,0.00028295,0.00026284,0.00019199,0.00011418,0.0001102,8.0315e-05,7.2651e-05,6.4559e-05,1.1054e-05,8.1852e-06,2.5013e-07,9.7788e-08,9.5233e-08,7.8802e-08,7.7449e-09,1.5373e-09,4.0887e-10,1.4662e-10,1.1495e-10,8.7761e-12,5.9059e-12,2.7446e-13,1.8356e-13,2.109e-14,2.7042e-15,3.3791e-17,1.2272e-17,8.1873e-18 1,2.0829e-06,2.2013e-06,3.5312e-06,6.962e-06,9.1807e-06,1.2337e-05,3.8512e-05,4.0721e-05,5.2171e-05,5.6012e-05,5.7265e-05,6.9511e-05,9.6247e-05,0.0001279,0.00013945,0.00050201,0.00050846,0.00065059,0.00097292,0.0020021,0.0043422,0.0098839,0.043123,0.04918,0.053226,0.12089,0.14437,0.16962,0.31087,0.59118,0.82912,0.92193,0.94249,0.95377,0.97871,0.99326,0.99997,1,0.99274,0.99187,0.98735,0.97147,0.9579,0.91603,0.80975,0.73976,0.60543,0.57365,0.45471,0.44719,0.43062,0.37352,0.34431,0.22429,0.17164,0.1674,0.12071,0.056211,0.056177,0.033617,0.013428,0.0059694,0.0036202,0.0034187,0.0015921,0.0015518,0.0012711,0.0011536,0.00098546,0.00054684,0.00037271,0.00031757,0.00029166,0.00027097,0.00019804,0.00011789,0.00011379,8.2975e-05,7.5071e-05,6.6722e-05,1.1457e-05,8.4879e-06,2.6069e-07,1.0205e-07,9.9385e-08,8.2258e-08,8.1084e-09,1.6126e-09,4.2955e-10,1.5422e-10,1.2094e-10,9.2589e-12,6.2334e-12,2.9058e-13,1.9442e-13,2.2384e-14,2.8756e-15,3.6074e-17,1.3113e-17,8.751e-18 1,1.1151e-06,1.18e-06,1.9143e-06,3.8374e-06,5.0954e-06,6.8985e-06,2.2183e-05,2.3491e-05,3.0297e-05,3.2591e-05,3.334e-05,4.0686e-05,5.6848e-05,7.6156e-05,8.3236e-05,0.00031129,0.00031541,0.0004067,0.00061607,0.0012986,0.0028947,0.0067988,0.031627,0.036301,0.039442,0.093632,0.11302,0.13413,0.2566,0.51856,0.76446,0.87175,0.89756,0.91231,0.94757,0.97231,0.99181,0.99274,1,0.99998,0.99925,0.99284,0.98522,0.95654,0.86946,0.80656,0.67831,0.64679,0.52529,0.51743,0.50002,0.43927,0.40772,0.27435,0.21375,0.2088,0.1536,0.074553,0.07451,0.045707,0.019002,0.0087212,0.0053874,0.005098,0.002438,0.0023783,0.001961,0.0017855,0.0015331,0.00086681,0.0005978,0.00051182,0.00047127,0.0004388,0.00032369,0.00019559,0.00018897,0.00013902,0.00012613,0.00011247,2.0231e-05,1.5102e-05,5.0314e-07,2.0098e-07,1.9585e-07,1.6275e-07,1.682e-08,3.4515e-09,9.4239e-10,3.4469e-10,2.7149e-10,2.1735e-11,1.473e-11,7.2196e-13,4.8612e-13,5.7875e-14,7.6673e-15,1.024e-16,3.7745e-17,2.5329e-17 1,1.0749e-06,1.1376e-06,1.8467e-06,3.7054e-06,4.9221e-06,6.6667e-06,2.1475e-05,2.2743e-05,2.9344e-05,3.1569e-05,3.2296e-05,3.9424e-05,5.5113e-05,7.3867e-05,8.0745e-05,0.00030264,0.00030666,0.00039559,0.00059969,0.0012658,0.0028261,0.0066498,0.03105,0.035652,0.038745,0.092214,0.11138,0.13226,0.25365,0.5144,0.76052,0.86853,0.89462,0.90956,0.94537,0.97067,0.9909,0.99187,0.99998,1,0.99949,0.99365,0.98639,0.95852,0.87267,0.81025,0.68249,0.65101,0.52947,0.52159,0.50415,0.44323,0.41155,0.27746,0.21639,0.21139,0.1557,0.075751,0.075707,0.046508,0.01938,0.0089111,0.0055106,0.0052152,0.0024979,0.0024368,0.0020101,0.0018305,0.0015722,0.00088988,0.00061414,0.00052596,0.00048436,0.00045104,0.0003329,0.00020133,0.00019452,0.00014319,0.00012993,0.00011588,2.09e-05,1.5608e-05,5.2246e-07,2.0895e-07,2.0362e-07,1.6924e-07,1.754e-08,3.6056e-09,9.8589e-10,3.61e-10,2.844e-10,2.2827e-11,1.5477e-11,7.6075e-13,5.1244e-13,6.1127e-14,8.1125e-15,1.0874e-16,4.0114e-17,2.6928e-17 1,9.0939e-07,9.6274e-07,1.5675e-06,3.159e-06,4.2038e-06,5.7051e-06,1.8521e-05,1.9623e-05,2.5363e-05,2.73e-05,2.7933e-05,3.4146e-05,4.7849e-05,6.4267e-05,7.0297e-05,0.00026614,0.0002697,0.00034862,0.00053028,0.0011264,0.0025331,0.0060098,0.028539,0.032824,0.035709,0.085985,0.10415,0.124,0.24051,0.49563,0.74246,0.85356,0.88085,0.8966,0.93488,0.96268,0.98614,0.98735,0.99925,0.99949,1,0.99672,0.9911,0.96694,0.88682,0.82672,0.70138,0.67014,0.54853,0.54059,0.52301,0.46134,0.42915,0.2918,0.22865,0.22347,0.16546,0.081384,0.081338,0.050294,0.02118,0.0098208,0.0061027,0.0057787,0.0027871,0.0027197,0.0022473,0.0020483,0.0017616,0.001002,0.00069368,0.00059484,0.00054816,0.00051075,0.00037789,0.00022944,0.00022174,0.0001636,0.00014856,0.00013261,2.4213e-05,1.8118e-05,6.1961e-07,2.4912e-07,2.428e-07,2.0203e-07,2.12e-08,4.3942e-09,1.2093e-09,4.4499e-10,3.5098e-10,2.8505e-11,1.936e-11,9.6427e-13,6.5061e-13,7.8297e-14,1.0476e-14,1.4275e-16,5.2855e-17,3.5532e-17 1,5.9111e-07,6.2633e-07,1.0275e-06,2.094e-06,2.7995e-06,3.8183e-06,1.2645e-05,1.3411e-05,1.7412e-05,1.8766e-05,1.9209e-05,2.3565e-05,3.3224e-05,4.4865e-05,4.9156e-05,0.00019093,0.00019353,0.00025146,0.00038581,0.00083287,0.0019077,0.0046223,0.022916,0.02647,0.028873,0.071618,0.087368,0.10473,0.20907,0.44877,0.69516,0.81283,0.84284,0.86045,0.9045,0.93832,0.96969,0.97147,0.99284,0.99365,0.99672,1,0.99861,0.98424,0.91973,0.86626,0.74846,0.71818,0.59751,0.5895,0.57168,0.5086,0.47529,0.3303,0.26195,0.25629,0.19233,0.097265,0.097211,0.061117,0.026438,0.012524,0.0078795,0.0074715,0.0036683,0.0035816,0.0029728,0.0027153,0.0023434,0.0013498,0.00094185,0.00081027,0.00074797,0.00069796,0.00051961,0.00031866,0.00030818,0.00022874,0.0002081,0.00018616,3.5067e-05,2.6373e-05,9.5256e-07,3.8823e-07,3.7853e-07,3.1581e-07,3.421e-08,7.2412e-09,2.0262e-09,7.5494e-10,5.9719e-10,4.9978e-11,3.4097e-11,1.7563e-12,1.1901e-12,1.4648e-13,2.0007e-14,2.8433e-16,1.0627e-16,7.1704e-17 1,4.4512e-07,4.7191e-07,7.7803e-07,1.597e-06,2.1415e-06,2.9304e-06,9.8314e-06,1.0433e-05,1.3586e-05,1.4655e-05,1.5005e-05,1.845e-05,2.6115e-05,3.539e-05,3.8817e-05,0.0001533,0.00015542,0.00020262,0.00031262,0.00068199,0.0015809,0.0038833,0.019799,0.022933,0.025057,0.063367,0.077663,0.09351,0.19019,0.41922,0.66368,0.78462,0.81613,0.83478,0.88217,0.91955,0.95577,0.9579,0.98522,0.98639,0.9911,0.99861,1,0.99215,0.93848,0.88984,0.77802,0.74861,0.62947,0.62146,0.60361,0.54,0.50615,0.35676,0.28516,0.27919,0.21135,0.10883,0.10878,0.069132,0.030431,0.014618,0.0092712,0.0087991,0.0043704,0.0042687,0.0035534,0.0032501,0.0028113,0.0016326,0.0011451,0.00098717,0.00091228,0.0008521,0.00063693,0.00039317,0.00038041,0.00028344,0.00025818,0.00023129,4.4461e-05,3.3548e-05,1.2555e-06,5.1625e-07,5.0347e-07,4.2078e-07,4.6534e-08,9.9851e-09,2.8243e-09,1.0609e-09,8.4079e-10,7.1751e-11,4.9094e-11,2.5847e-12,1.7563e-12,2.1935e-13,3.0366e-14,4.435e-16,1.6677e-16,1.128e-16 1,2.2396e-07,2.3777e-07,3.9663e-07,8.283e-07,1.1187e-06,1.5427e-06,5.3379e-06,5.6735e-06,7.4394e-06,8.0409e-06,8.2381e-06,1.0186e-05,1.4554e-05,1.9889e-05,2.187e-05,8.9866e-05,9.1146e-05,0.00011978,0.0001873,0.00041895,0.00099924,0.0025357,0.01382,0.016115,0.017679,0.046813,0.058013,0.070589,0.15012,0.35247,0.58772,0.71328,0.74744,0.76804,0.82192,0.86661,0.91312,0.91603,0.95654,0.95852,0.96694,0.98424,0.99215,1,0.97371,0.93806,0.84372,0.81719,0.70471,0.6969,0.67939,0.61588,0.58141,0.42387,0.34517,0.33851,0.26164,0.14066,0.14059,0.091683,0.042072,0.020892,0.013506,0.012846,0.0065588,0.0064119,0.0053744,0.0049321,0.004289,0.0025397,0.0018033,0.0015625,0.0014478,0.0013554,0.0010229,0.00064132,0.00062115,0.0004671,0.0004267,0.00038356,7.7383e-05,5.8849e-05,2.3968e-06,1.0065e-06,9.8216e-07,8.2429e-07,9.5757e-08,2.1227e-08,6.1602e-09,2.3592e-09,1.8782e-09,1.679e-10,1.1569e-10,6.4163e-12,4.3887e-12,5.6756e-13,8.1123e-14,1.2645e-15,4.8245e-16,3.282e-16 1,6.0794e-08,6.4703e-08,1.1029e-07,2.3774e-07,3.2535e-07,4.551e-07,1.6666e-06,1.7764e-06,2.3594e-06,2.5596e-06,2.6254e-06,3.2794e-06,4.7675e-06,6.6159e-06,7.3096e-06,3.2307e-05,3.2792e-05,4.3734e-05,7.0088e-05,0.00016414,0.00041255,0.0011116,0.0068484,0.0080839,0.0089353,0.025748,0.032565,0.040397,0.093246,0.24592,0.45107,0.5745,0.61027,0.63239,0.69259,0.74579,0.80579,0.80975,0.86946,0.87267,0.88682,0.91973,0.93848,0.97371,1,0.992,0.93988,0.92141,0.83235,0.82565,0.81039,0.75271,0.71997,0.55848,0.47063,0.46297,0.37178,0.21635,0.21625,0.14786,0.073243,0.038658,0.025888,0.02472,0.013277,0.013001,0.011037,0.010191,0.0089496,0.0054925,0.0039888,0.0034883,0.003248,0.0030535,0.0023456,0.0015132,0.0014685,0.0011232,0.0010315,0.00093298,0.00020572,0.00015872,7.5519e-06,3.2966e-06,3.2203e-06,2.7235e-06,3.4636e-07,8.151e-08,2.4799e-08,9.8413e-09,7.9005e-09,7.6926e-10,5.3683e-10,3.2766e-11,2.2686e-11,3.1279e-12,4.7415e-13,8.331e-15,3.2643e-15,2.2442e-15 1,2.9038e-08,3.0947e-08,5.3378e-08,1.1709e-07,1.614e-07,2.2754e-07,8.5963e-07,9.1774e-07,1.2275e-06,1.3344e-06,1.3695e-06,1.7203e-06,2.5248e-06,3.5334e-06,3.914e-06,1.8006e-05,1.8284e-05,2.4583e-05,3.9932e-05,9.5909e-05,0.00024809,0.00069081,0.0045527,0.0054102,0.0060046,0.018126,0.023183,0.029065,0.070178,0.19728,0.38131,0.49868,0.53371,0.55563,0.6163,0.67136,0.73544,0.73976,0.80656,0.81025,0.82672,0.86626,0.88984,0.93806,0.992,1,0.97492,0.96214,0.89161,0.8859,0.87278,0.82156,0.79151,0.63525,0.54549,0.53752,0.44081,0.26792,0.26781,0.18794,0.097089,0.052989,0.036179,0.034621,0.01912,0.01874,0.01602,0.014841,0.013104,0.008202,0.0060307,0.0053009,0.004949,0.0046634,0.0036173,0.0023705,0.0023028,0.0017778,0.0016375,0.0014861,0.00034407,0.00026758,1.3867e-05,6.1834e-06,6.0438e-06,5.133e-06,6.8607e-07,1.6685e-07,5.2096e-08,2.1082e-08,1.7002e-08,1.735e-09,1.2193e-09,7.8437e-11,5.4672e-11,7.808e-12,1.2224e-12,2.2938e-14,9.1206e-15,6.3069e-15 1,7.5041e-09,8.017e-09,1.4122e-08,3.1951e-08,4.4613e-08,6.3778e-08,2.5467e-07,2.7265e-07,3.6925e-07,4.0286e-07,4.1394e-07,5.2513e-07,7.8387e-07,1.1136e-06,1.2393e-06,6.1216e-06,6.2207e-06,8.485e-06,1.4118e-05,3.5464e-05,9.655e-05,0.00028505,0.0021175,0.0025465,0.0028471,0.0093338,0.012178,0.015559,0.040696,0.12814,0.27185,0.37268,0.4042,0.42427,0.48135,0.53524,0.60088,0.60543,0.67831,0.68249,0.70138,0.74846,0.77802,0.84372,0.93988,0.97492,1,0.99863,0.96834,0.96502,0.95705,0.92252,0.90024,0.76764,0.68158,0.67363,0.57346,0.37656,0.37643,0.27667,0.154,0.089208,0.06304,0.060556,0.035141,0.034497,0.029859,0.027827,0.024807,0.016079,0.012086,0.010719,0.010056,0.0095143,0.0075086,0.0050597,0.0049244,0.0038652,0.0035786,0.0032677,0.00082511,0.00065077,3.9255e-05,1.8179e-05,1.7787e-05,1.522e-05,2.2223e-06,5.7294e-07,1.8734e-07,7.849e-08,6.3817e-08,7.0787e-09,5.037e-09,3.5579e-10,2.5096e-10,3.8153e-11,6.3264e-12,1.3343e-13,5.4453e-14,3.8044e-14 1,5.4369e-09,5.8119e-09,1.0288e-08,2.3445e-08,3.2834e-08,4.7091e-08,1.9048e-07,2.0406e-07,2.7716e-07,3.0264e-07,3.1105e-07,3.9552e-07,5.9272e-07,8.45e-07,9.4136e-07,4.7277e-06,4.805e-06,6.5761e-06,1.1003e-05,2.793e-05,7.6948e-05,0.00023029,0.001759,0.0021214,0.0023757,0.0079398,0.010407,0.013355,0.035589,0.11506,0.24944,0.34573,0.37613,0.39556,0.45115,0.50406,0.56911,0.57365,0.64679,0.65101,0.67014,0.71818,0.74861,0.81719,0.92141,0.96214,0.99863,1,0.97996,0.97728,0.97071,0.94087,0.92088,0.79639,0.71264,0.70482,0.60524,0.40465,0.40451,0.30053,0.17021,0.099975,0.071216,0.068471,0.040195,0.039473,0.034264,0.031977,0.028571,0.01867,0.014105,0.012537,0.011774,0.01115,0.0088351,0.0059924,0.0058347,0.0045974,0.0042617,0.003897,0.0010041,0.0007945,4.965e-05,2.3196e-05,2.2702e-05,1.9459e-05,2.9003e-06,7.5796e-07,2.5051e-07,1.0581e-07,8.6192e-08,9.7481e-09,6.9567e-09,5.0219e-10,3.552e-10,5.4793e-11,9.2077e-12,1.9956e-13,8.1934e-14,5.7382e-14 1,1.54e-09,1.6498e-09,2.9758e-09,6.9713e-09,9.8761e-09,1.4341e-08,6.095e-08,6.5458e-08,8.9907e-08,9.8488e-08,1.0133e-07,1.2999e-07,1.9777e-07,2.8575e-07,3.1964e-07,1.7106e-06,1.7398e-06,2.4118e-06,4.1227e-06,1.0893e-05,3.1412e-05,9.9049e-05,0.00084193,0.0010262,0.0011568,0.0041618,0.0055529,0.0072467,0.020741,0.074203,0.17481,0.25269,0.2782,0.29473,0.34299,0.39031,0.45044,0.45471,0.52529,0.52947,0.54853,0.59751,0.62947,0.70471,0.83235,0.89161,0.96834,0.97996,1,0.99991,0.99909,0.98911,0.97924,0.89392,0.82414,0.81728,0.72561,0.51978,0.51963,0.40233,0.24358,0.15088,0.11083,0.10692,0.065601,0.064516,0.056626,0.053129,0.047877,0.032277,0.024869,0.022284,0.021016,0.019977,0.016075,0.011177,0.010902,0.0087176,0.0081186,0.0074642,0.002078,0.0016651,0.00011916,5.7582e-05,5.6409e-05,4.8675e-05,7.8504e-06,2.1614e-06,7.4438e-07,3.2431e-07,2.6611e-07,3.2423e-08,2.3397e-08,1.836e-09,1.3125e-09,2.1409e-10,3.7868e-11,9.1096e-13,3.8282e-13,2.7058e-13 1,1.4155e-09,1.5166e-09,2.739e-09,6.4283e-09,9.1138e-09,1.3245e-08,5.6475e-08,6.0661e-08,8.338e-08,9.1358e-08,9.3996e-08,1.2066e-07,1.8375e-07,2.6573e-07,2.9733e-07,1.5979e-06,1.6251e-06,2.2548e-06,3.8598e-06,1.0225e-05,2.9575e-05,9.3577e-05,0.00080101,0.00097704,0.0011018,0.0039833,0.0053209,0.0069516,0.01999,0.071994,0.17053,0.24719,0.27235,0.28868,0.33639,0.38327,0.44294,0.44719,0.51743,0.52159,0.54059,0.5895,0.62146,0.6969,0.82565,0.8859,0.96502,0.97728,0.99991,1,0.99957,0.99096,0.98181,0.89945,0.83087,0.8241,0.73327,0.52765,0.5275,0.40953,0.24903,0.15479,0.11393,0.10994,0.06765,0.066537,0.058443,0.054853,0.049459,0.033411,0.025777,0.023109,0.021801,0.020727,0.016696,0.011628,0.011342,0.009079,0.0084577,0.0077787,0.0021766,0.0017456,0.00012604,6.1039e-05,5.9799e-05,5.1624e-05,8.3692e-06,2.3122e-06,7.9844e-07,3.4858e-07,2.8616e-07,3.5036e-08,2.5301e-08,1.9964e-09,1.4281e-09,2.338e-10,4.1495e-11,1.0051e-12,4.2301e-13,2.9917e-13 1,1.1726e-09,1.2567e-09,2.2759e-09,5.363e-09,7.6162e-09,1.1089e-08,4.7624e-08,5.1173e-08,7.0453e-08,7.723e-08,7.9472e-08,1.0215e-07,1.559e-07,2.259e-07,2.5292e-07,1.3719e-06,1.3954e-06,1.9397e-06,3.3309e-06,8.8757e-06,2.5844e-05,8.24e-05,0.00071645,0.00087526,0.00098799,0.0036105,0.0048354,0.0063329,0.018403,0.067265,0.16128,0.23522,0.25962,0.27547,0.32195,0.3678,0.42643,0.43062,0.50002,0.50415,0.52301,0.57168,0.60361,0.67939,0.81039,0.87278,0.95705,0.97071,0.99909,0.99957,1,0.99447,0.98694,0.91132,0.84552,0.83896,0.75014,0.54527,0.54512,0.42577,0.26144,0.16377,0.12109,0.1169,0.072401,0.071225,0.062662,0.058858,0.053137,0.03606,0.0279,0.025042,0.023639,0.022487,0.018154,0.01269,0.012381,0.0099321,0.0092587,0.0085222,0.0024118,0.0019377,0.00014272,6.9459e-05,6.8057e-05,5.881e-05,9.6449e-06,2.685e-06,9.3279e-07,4.0909e-07,3.3618e-07,4.1612e-08,3.0099e-08,2.4041e-09,1.7224e-09,2.843e-10,5.0837e-11,1.2503e-12,5.2801e-13,3.7394e-13 1,5.9348e-10,6.3681e-10,1.1646e-09,2.7844e-09,3.9781e-09,5.8298e-09,2.5694e-08,2.7644e-08,3.8283e-08,4.2036e-08,4.328e-08,5.5886e-08,8.5973e-08,1.2545e-07,1.4076e-07,7.8933e-07,8.0316e-07,1.124e-06,1.9518e-06,5.3112e-06,1.5839e-05,5.19e-05,0.00047723,0.00058627,0.00066404,0.0025221,0.0034094,0.0045047,0.013589,0.052374,0.13116,0.19555,0.21717,0.23133,0.27323,0.31515,0.36959,0.37352,0.43927,0.44323,0.46134,0.5086,0.54,0.61588,0.75271,0.82156,0.92252,0.94087,0.98911,0.99096,0.99447,1,0.99838,0.94836,0.89374,0.88805,0.80801,0.60894,0.60879,0.48589,0.30894,0.19899,0.14951,0.1446,0.091652,0.090231,0.079845,0.075208,0.068202,0.047046,0.036776,0.033149,0.031361,0.02989,0.024326,0.017228,0.016823,0.0136,0.012709,0.011731,0.0034573,0.002796,0.00022107,0.00010951,0.00010736,9.3094e-05,1.5911e-05,4.552e-06,1.6158e-06,7.2024e-07,5.9414e-07,7.6465e-08,5.5632e-08,4.6419e-09,3.3442e-09,5.6836e-10,1.0439e-10,2.7116e-12,1.1592e-12,8.2488e-13 1,4.0901e-10,4.3914e-10,8.0742e-10,1.9455e-09,2.7886e-09,4.1009e-09,1.8328e-08,1.9734e-08,2.7414e-08,3.013e-08,3.103e-08,4.0169e-08,6.2058e-08,9.0898e-08,1.0211e-07,5.8296e-07,5.9329e-07,8.3327e-07,1.4559e-06,4.0066e-06,1.2104e-05,4.025e-05,0.00038146,0.00047003,0.00053337,0.0020684,0.0028102,0.0037307,0.011483,0.045544,0.11677,0.17617,0.19631,0.20954,0.24891,0.28859,0.34055,0.34431,0.40772,0.41155,0.42915,0.47529,0.50615,0.58141,0.71997,0.79151,0.90024,0.92088,0.97924,0.98181,0.98694,0.99838,1,0.96453,0.91668,0.91153,0.83722,0.64339,0.64323,0.51941,0.33653,0.22005,0.16677,0.16145,0.10362,0.10205,0.090588,0.085455,0.077683,0.05406,0.042495,0.03839,0.036364,0.034694,0.028359,0.020226,0.01976,0.016041,0.01501,0.013876,0.0041799,0.0033925,0.00027871,0.00013939,0.00013668,0.00011875,2.0753e-05,6.0253e-06,2.1639e-06,9.7301e-07,8.043e-07,1.0571e-07,7.7154e-08,6.5913e-09,4.7629e-09,8.2235e-10,1.5325e-10,4.0998e-12,1.7641e-12,1.2586e-12 1,6.7382e-11,7.2557e-11,1.368e-10,3.4201e-10,4.978e-10,7.4433e-10,3.5538e-09,3.8391e-09,5.4134e-09,5.9753e-09,6.162e-09,8.0719e-09,1.2725e-08,1.8975e-08,2.1432e-08,1.332e-07,1.3568e-07,1.9386e-07,3.4854e-07,1.0119e-06,3.2493e-06,1.1586e-05,0.00012665,0.0001583,0.00018121,0.00077546,0.0010788,0.0014648,0.0049603,0.022522,0.064525,0.10298,0.11658,0.12567,0.15335,0.18221,0.22139,0.22429,0.27435,0.27746,0.2918,0.3303,0.35676,0.42387,0.55848,0.63525,0.76764,0.79639,0.89392,0.89945,0.91132,0.94836,0.96453,1,0.98905,0.98702,0.94783,0.79875,0.79861,0.68144,0.48262,0.3388,0.26752,0.26018,0.17713,0.17479,0.15747,0.14961,0.13756,0.099806,0.080541,0.07355,0.070066,0.067176,0.056053,0.041329,0.040468,0.033507,0.031546,0.029376,0.0098135,0.0080997,0.00079753,0.00041726,0.00040966,0.0003591,6.9736e-05,2.1707e-05,8.2362e-06,3.8602e-06,3.2219e-06,4.6777e-07,3.4651e-07,3.3094e-08,2.4255e-08,4.5121e-09,9.0043e-10,2.7692e-11,1.2291e-11,8.8781e-12 1,2.4142e-11,2.6038e-11,4.9777e-11,1.2701e-10,1.8644e-10,2.8134e-10,1.3931e-09,1.5077e-09,2.1436e-09,2.3717e-09,2.4476e-09,3.2273e-09,5.1444e-09,7.7476e-09,8.7776e-09,5.717e-08,5.8263e-08,8.4037e-08,1.535e-07,4.5901e-07,1.5243e-06,5.6488e-06,6.6814e-05,8.4168e-05,9.681e-05,0.00043743,0.00061658,0.00084764,0.0030256,0.014803,0.045091,0.074228,0.084776,0.091876,0.1138,0.13706,0.16924,0.17164,0.21375,0.21639,0.22865,0.26195,0.28516,0.34517,0.47063,0.54549,0.68158,0.71264,0.82414,0.83087,0.84552,0.89374,0.91668,0.98905,1,0.99991,0.98411,0.87262,0.8725,0.7675,0.57096,0.41683,0.33667,0.32827,0.23089,0.22808,0.20716,0.19759,0.18284,0.13574,0.11114,0.1021,0.097566,0.093794,0.079158,0.059446,0.05828,0.048784,0.046087,0.043089,0.01524,0.012696,0.0013815,0.000741,0.00072801,0.00064131,0.000132,4.2698e-05,1.67e-05,8.0083e-06,6.7201e-06,1.0307e-06,7.6981e-07,7.8188e-08,5.7755e-08,1.1196e-08,2.3203e-09,7.7064e-11,3.4797e-11,2.5305e-11 1,2.1997e-11,2.3727e-11,4.5416e-11,1.161e-10,1.7055e-10,2.5757e-10,1.2796e-09,1.3851e-09,1.9707e-09,2.1808e-09,2.2508e-09,2.9695e-09,4.7383e-09,7.1422e-09,8.094e-09,5.294e-08,5.3954e-08,7.7888e-08,1.4247e-07,4.2716e-07,1.4228e-06,5.2909e-06,6.3024e-05,7.945e-05,9.1423e-05,0.00041511,0.0005858,0.00080623,0.0028914,0.014242,0.043619,0.072005,0.082301,0.089237,0.11068,0.13346,0.16503,0.1674,0.2088,0.21139,0.22347,0.25629,0.27919,0.33851,0.46297,0.53752,0.67363,0.70482,0.81728,0.8241,0.83896,0.88805,0.91153,0.98702,0.99991,1,0.98637,0.87862,0.87851,0.77489,0.579,0.42419,0.34331,0.33482,0.23618,0.23333,0.21209,0.20236,0.18736,0.13938,0.11427,0.10503,0.1004,0.096539,0.081558,0.061349,0.060152,0.0504,0.047628,0.044546,0.015836,0.013203,0.0014497,0.0007793,0.00076568,0.0006748,0.00013962,4.5318e-05,1.7774e-05,8.5404e-06,7.17e-06,1.1051e-06,8.2601e-07,8.4361e-08,6.2358e-08,1.2133e-08,2.523e-09,8.4376e-11,3.8158e-11,2.7766e-11 1,6.7969e-12,7.3448e-12,1.4278e-11,3.7338e-11,5.5372e-11,8.4484e-11,4.3717e-10,4.7418e-10,6.8087e-10,7.5549e-10,7.8038e-10,1.0371e-09,1.6755e-09,2.5537e-09,2.9038e-09,2.0013e-08,2.0407e-08,2.9773e-08,5.5428e-08,1.7176e-07,5.9405e-07,2.3061e-06,2.9997e-05,3.8149e-05,4.4134e-05,0.00021293,0.00030492,0.00042551,0.0016185,0.0086653,0.02842,0.048567,0.056058,0.061151,0.077113,0.094402,0.11886,0.12071,0.1536,0.1557,0.16546,0.19233,0.21135,0.26164,0.37178,0.44081,0.57346,0.60524,0.72561,0.73327,0.75014,0.80801,0.83722,0.94783,0.98411,0.98637,1,0.94286,0.94277,0.86034,0.67911,0.5198,0.43146,0.42198,0.30869,0.30533,0.28007,0.2684,0.25026,0.19103,0.15916,0.14727,0.14126,0.13625,0.11657,0.089506,0.087881,0.074535,0.070705,0.066425,0.02517,0.021203,0.002603,0.0014387,0.0014147,0.0012536,0.0002768,9.3785e-05,3.805e-05,1.8756e-05,1.5841e-05,2.5961e-06,1.9582e-06,2.1422e-07,1.5974e-07,3.2541e-08,7.0586e-09,2.5724e-10,1.1858e-10,8.6945e-11 1,5.4743e-13,5.9376e-13,1.1918e-12,3.2672e-12,4.9409e-12,7.7002e-12,4.335e-11,4.722e-11,6.9105e-11,7.7101e-11,7.9778e-11,1.0764e-10,1.7843e-10,2.7823e-10,3.1861e-10,2.4471e-09,2.4981e-09,3.7253e-09,7.1936e-09,2.3868e-08,8.9229e-08,3.7865e-07,5.91e-06,7.6537e-06,8.9536e-06,4.8985e-05,7.2301e-05,0.00010383,0.00044611,0.0028386,0.010727,0.019695,0.023197,0.025623,0.033442,0.042241,0.055206,0.056211,0.074553,0.075751,0.081384,0.097265,0.10883,0.14066,0.21635,0.26792,0.37656,0.40465,0.51978,0.52765,0.54527,0.60894,0.64339,0.79875,0.87262,0.87862,0.94286,1,1,0.97912,0.86587,0.72562,0.63469,0.62437,0.49249,0.48832,0.45647,0.44144,0.41766,0.33622,0.28968,0.27174,0.26256,0.25482,0.22384,0.17932,0.17656,0.15357,0.14684,0.13923,0.060204,0.051815,0.008015,0.0046925,0.0046215,0.0041423,0.0010463,0.00038746,0.00016863,8.7639e-05,7.4939e-05,1.3944e-05,1.0719e-05,1.3519e-06,1.0265e-06,2.3e-07,5.4446e-08,2.3706e-09,1.137e-09,8.468e-10 1,5.4639e-13,5.9263e-13,1.1896e-12,3.2611e-12,4.9319e-12,7.6862e-12,4.3274e-11,4.7138e-11,6.8985e-11,7.6968e-11,7.964e-11,1.0745e-10,1.7813e-10,2.7777e-10,3.1808e-10,2.4432e-09,2.4942e-09,3.7195e-09,7.1824e-09,2.3832e-08,8.91e-08,3.7812e-07,5.9026e-06,7.6443e-06,8.9427e-06,4.8929e-05,7.2221e-05,0.00010372,0.00044567,0.0028361,0.010719,0.019681,0.023181,0.025606,0.03342,0.042214,0.055172,0.056177,0.07451,0.075707,0.081338,0.097211,0.10878,0.14059,0.21625,0.26781,0.37643,0.40451,0.51963,0.5275,0.54512,0.60879,0.64323,0.79861,0.8725,0.87851,0.94277,1,1,0.97917,0.86599,0.72577,0.63484,0.62453,0.49264,0.48847,0.45661,0.44158,0.4178,0.33634,0.2898,0.27185,0.26267,0.25493,0.22394,0.1794,0.17665,0.15365,0.14691,0.1393,0.06024,0.051847,0.0080213,0.0046964,0.0046253,0.0041458,0.0010473,0.00038785,0.00016881,8.7735e-05,7.5022e-05,1.396e-05,1.0732e-05,1.3537e-06,1.0279e-06,2.3032e-07,5.4526e-08,2.3744e-09,1.1388e-09,8.482e-10 1,1.1446e-13,1.2443e-13,2.546e-13,7.1791e-13,1.0985e-12,1.7338e-12,1.0267e-11,1.1212e-11,1.6596e-11,1.8577e-11,1.9242e-11,2.6198e-11,4.4102e-11,6.9718e-11,8.0172e-11,6.5704e-10,6.712e-10,1.0141e-09,2.0016e-09,6.9183e-09,2.7099e-08,1.2129e-07,2.1115e-06,2.7644e-06,3.2555e-06,1.9203e-05,2.8863e-05,4.217e-05,0.00019489,0.0013752,0.0056573,0.010842,0.012926,0.014385,0.019166,0.024666,0.032965,0.033617,0.045707,0.046508,0.050294,0.061117,0.069132,0.091683,0.14786,0.18794,0.27667,0.30053,0.40233,0.40953,0.42577,0.48589,0.51941,0.68144,0.7675,0.77489,0.86034,0.97912,0.97917,1,0.94662,0.83754,0.75592,0.74624,0.61579,0.61146,0.57809,0.5621,0.5365,0.44586,0.39193,0.3707,0.35974,0.35045,0.31272,0.25697,0.25346,0.2238,0.215,0.205,0.095937,0.083636,0.014858,0.0090039,0.008876,0.0080102,0.0021931,0.00085653,0.00038878,0.00020856,0.00017966,3.607e-05,2.8045e-05,3.8519e-06,2.9564e-06,7.013e-07,1.7493e-07,8.473e-09,4.1614e-09,3.1286e-09 1,8.4005e-15,9.1645e-15,1.9341e-14,5.7077e-14,8.9004e-14,1.4338e-13,9.2102e-13,1.0099e-12,1.5226e-12,1.7135e-12,1.7778e-12,2.456e-12,4.2386e-12,6.85e-12,7.9306e-12,7.2163e-11,7.3797e-11,1.1388e-10,2.3285e-10,8.5968e-10,3.6302e-09,1.7708e-08,3.6756e-07,4.8974e-07,5.8298e-07,3.8825e-06,6.0085e-06,9.0256e-06,4.6918e-05,0.00039112,0.001845,0.0037893,0.0046068,0.0051894,0.0071472,0.0094804,0.013135,0.013428,0.019002,0.01938,0.02118,0.026438,0.030431,0.042072,0.073243,0.097089,0.154,0.17021,0.24358,0.24903,0.26144,0.30894,0.33653,0.48262,0.57096,0.579,0.67911,0.86587,0.86599,0.94662,1,0.9657,0.91678,0.91017,0.80773,0.80395,0.77406,0.75927,0.73498,0.643,0.58382,0.55958,0.54685,0.53594,0.49054,0.41995,0.41536,0.3758,0.36379,0.34997,0.18605,0.16559,0.036772,0.023557,0.023259,0.021222,0.0066163,0.0028156,0.0013676,0.00077208,0.0006731,0.00015276,0.00012097,1.9062e-05,1.4888e-05,3.8717e-06,1.0508e-06,6.0434e-08,3.0839e-08,2.354e-08 1,9.6667e-16,1.0576e-15,2.2879e-15,7.001e-15,1.1083e-14,1.8148e-14,1.244e-13,1.3685e-13,2.0937e-13,2.3662e-13,2.4582e-13,3.4358e-13,6.0482e-13,9.9481e-13,1.158e-12,1.1454e-11,1.1723e-11,1.8399e-11,3.8693e-11,1.5057e-10,6.751e-10,3.5269e-09,8.424e-08,1.1382e-07,1.3666e-07,1.0026e-06,1.5883e-06,2.4392e-06,1.3927e-05,0.00013261,0.00069769,0.0015143,0.0018699,0.0021268,0.0030078,0.004087,0.0058275,0.0059694,0.0087212,0.0089111,0.0098208,0.012524,0.014618,0.020892,0.038658,0.052989,0.089208,0.099975,0.15088,0.15479,0.16377,0.19899,0.22005,0.3388,0.41683,0.42419,0.5198,0.72562,0.72577,0.83754,0.9657,1,0.98842,0.98571,0.92703,0.92444,0.90311,0.89207,0.87331,0.79597,0.74159,0.71838,0.70597,0.69522,0.64933,0.57438,0.56934,0.52522,0.51153,0.49562,0.29169,0.26393,0.070031,0.046898,0.04636,0.042674,0.014757,0.0067247,0.0034478,0.0020273,0.0017844,0.00044657,0.00035884,6.3094e-05,4.997e-05,1.3983e-05,4.0593e-06,2.6775e-07,1.4087e-07,1.0883e-07 1,2.6855e-16,2.943e-16,6.4578e-16,2.018e-15,3.2226e-15,5.3269e-15,3.7909e-14,4.1784e-14,6.4469e-14,7.3037e-14,7.5934e-14,1.0685e-13,1.9026e-13,3.1613e-13,3.6914e-13,3.8315e-12,3.9237e-12,6.2182e-12,1.3291e-11,5.3317e-11,2.4748e-10,1.3451e-09,3.4843e-08,4.7461e-08,5.7265e-08,4.4431e-07,7.1338e-07,1.1096e-06,6.6883e-06,6.8773e-05,0.00038538,0.00086355,0.001076,0.0012306,0.0017673,0.002435,0.0035301,0.0036202,0.0053874,0.0055106,0.0061027,0.0078795,0.0092712,0.013506,0.025888,0.036179,0.06304,0.071216,0.11083,0.11393,0.12109,0.14951,0.16677,0.26752,0.33667,0.34331,0.43146,0.63469,0.63484,0.75592,0.91678,0.98842,1,0.99985,0.97239,0.97072,0.95633,0.94846,0.93457,0.8722,0.82483,0.80391,0.79258,0.78268,0.73962,0.66672,0.66172,0.61731,0.60334,0.58699,0.36637,0.33467,0.098421,0.06762,0.066892,0.061885,0.02272,0.010771,0.0056978,0.0034301,0.0030357,0.00080388,0.00065143,0.00012203,9.7425e-05,2.8442e-05,8.584e-06,6.1285e-07,3.2816e-07,2.5531e-07 1,2.3244e-16,2.5477e-16,5.5994e-16,1.7539e-15,2.8035e-15,4.639e-15,3.3152e-14,3.6549e-14,5.6445e-14,6.3964e-14,6.6507e-14,9.3653e-14,1.6697e-13,2.7776e-13,3.2445e-13,3.3858e-12,3.4675e-12,5.5012e-12,1.178e-11,4.7415e-11,2.2094e-10,1.2062e-09,3.1528e-08,4.2984e-08,5.1892e-08,4.0514e-07,6.5147e-07,1.0148e-06,6.1538e-06,6.3821e-05,0.00036015,0.00080991,0.0010102,0.0011561,0.001663,0.002295,0.0033332,0.0034187,0.005098,0.0052152,0.0057787,0.0074715,0.0087991,0.012846,0.02472,0.034621,0.060556,0.068471,0.10692,0.10994,0.1169,0.1446,0.16145,0.26018,0.32827,0.33482,0.42198,0.62437,0.62453,0.74624,0.91017,0.98571,0.99985,1,0.97617,0.97462,0.96107,0.9536,0.94031,0.87988,0.83347,0.81289,0.80172,0.79195,0.74936,0.67693,0.67194,0.62764,0.61368,0.59732,0.37527,0.34317,0.10208,0.070337,0.069585,0.064414,0.023807,0.011337,0.0060176,0.0036322,0.0032165,0.00085715,0.00069526,0.00013116,0.00010481,3.0743e-05,9.3188e-06,6.7121e-07,3.6012e-07,2.8039e-07 1,3.5202e-17,3.8676e-17,8.6765e-17,2.8009e-16,4.5337e-16,7.6044e-16,5.7358e-15,6.3407e-15,9.9123e-15,1.1272e-14,1.1733e-14,1.6683e-14,3.0239e-14,5.1044e-14,5.9892e-14,6.6989e-13,6.8654e-13,1.1046e-12,2.4213e-12,1.0181e-11,4.9865e-11,2.8821e-10,8.4654e-09,1.1677e-08,1.4197e-08,1.2013e-07,1.9695e-07,3.1248e-07,2.0486e-06,2.3729e-05,0.00014662,0.00034521,0.00043619,0.00050321,0.00073998,0.0010418,0.0015497,0.0015921,0.002438,0.0024979,0.0027871,0.0036683,0.0043704,0.0065588,0.013277,0.01912,0.035141,0.040195,0.065601,0.06765,0.072401,0.091652,0.10362,0.17713,0.23089,0.23618,0.30869,0.49249,0.49264,0.61579,0.80773,0.92703,0.97239,0.97617,1,0.99997,0.99807,0.99608,0.99143,0.95985,0.92894,0.91401,0.90565,0.89819,0.86431,0.80227,0.79782,0.75734,0.74425,0.72872,0.4982,0.46188,0.15931,0.11388,0.11278,0.10517,0.042365,0.021355,0.011856,0.0074028,0.0066077,0.00191,0.0015681,0.00032404,0.00026196,8.1667e-05,2.6179e-05,2.1131e-06,1.1628e-06,9.1454e-07 1,3.3081e-17,3.6349e-17,8.1598e-17,2.6367e-16,4.2696e-16,7.1646e-16,5.4135e-15,5.985e-15,9.36e-15,1.0645e-14,1.1081e-14,1.5761e-14,2.8582e-14,4.8271e-14,5.6646e-14,6.3502e-13,6.5081e-13,1.0476e-12,2.2981e-12,9.6771e-12,4.7472e-11,2.7489e-10,8.1047e-09,1.1183e-08,1.3601e-08,1.1538e-07,1.8929e-07,3.005e-07,1.9751e-06,2.296e-05,0.00014229,0.00033551,0.00042411,0.0004894,0.00072018,0.0010146,0.0015104,0.0015518,0.0023783,0.0024368,0.0027197,0.0035816,0.0042687,0.0064119,0.013001,0.01874,0.034497,0.039473,0.064516,0.066537,0.071225,0.090231,0.10205,0.17479,0.22808,0.23333,0.30533,0.48832,0.48847,0.61146,0.80395,0.92444,0.97072,0.97462,0.99997,1,0.99849,0.99668,0.99233,0.96179,0.93146,0.91676,0.90851,0.90114,0.86763,0.80606,0.80164,0.76136,0.74832,0.73285,0.5024,0.46598,0.1615,0.11559,0.11447,0.10677,0.043131,0.021781,0.012111,0.00757,0.0067586,0.0019588,0.0016088,0.00033343,0.00026966,8.4233e-05,2.7051e-05,2.1915e-06,1.207e-06,9.4959e-07 1,2.0446e-17,2.2478e-17,5.0721e-17,1.6514e-16,2.6826e-16,4.5168e-16,3.4594e-15,3.8272e-15,6.0036e-15,6.8341e-15,7.1159e-15,1.0146e-14,1.8475e-14,3.1316e-14,3.6791e-14,4.1967e-13,4.3019e-13,6.9489e-13,1.5333e-12,6.528e-12,3.2427e-11,1.9047e-10,5.7824e-09,8.0023e-09,9.7494e-09,8.4395e-08,1.3913e-07,2.2189e-07,1.4872e-06,1.7774e-05,0.00011269,0.00026878,0.00034086,0.00039413,0.00058319,0.00082575,0.0012367,0.0012711,0.001961,0.0020101,0.0022473,0.0029728,0.0035534,0.0053744,0.011037,0.01602,0.029859,0.034264,0.056626,0.058443,0.062662,0.079845,0.090588,0.15747,0.20716,0.21209,0.28007,0.45647,0.45661,0.57809,0.77406,0.90311,0.95633,0.96107,0.99807,0.99849,1,0.99965,0.99762,0.9752,0.94955,0.93662,0.92928,0.92267,0.89211,0.83447,0.83028,0.79175,0.77918,0.7642,0.53512,0.49804,0.17913,0.1294,0.12818,0.11977,0.049441,0.025326,0.014242,0.0089778,0.0080315,0.0023756,0.0019571,0.00041499,0.00033659,0.00010676,3.4769e-05,2.8985e-06,1.6065e-06,1.2671e-06 1,1.6207e-17,1.7824e-17,4.0318e-17,1.3175e-16,2.1434e-16,3.6148e-16,2.7866e-15,3.0839e-15,4.8447e-15,5.5173e-15,5.7455e-15,8.2013e-15,1.4964e-14,2.541e-14,2.9868e-14,3.4356e-13,3.522e-13,5.6988e-13,1.261e-12,5.3971e-12,2.697e-11,1.5951e-10,4.9112e-09,6.8061e-09,8.2991e-09,7.2541e-08,1.1987e-07,1.9159e-07,1.2962e-06,1.57e-05,0.00010063,0.00024135,0.00030656,0.0003548,0.0005264,0.00074714,0.0011221,0.0011536,0.0017855,0.0018305,0.0020483,0.0027153,0.0032501,0.0049321,0.010191,0.014841,0.027827,0.031977,0.053129,0.054853,0.058858,0.075208,0.085455,0.14961,0.19759,0.20236,0.2684,0.44144,0.44158,0.5621,0.75927,0.89207,0.94846,0.9536,0.99608,0.99668,0.99965,1,0.99909,0.98066,0.95733,0.9453,0.93841,0.93219,0.90315,0.84757,0.84349,0.80592,0.79361,0.7789,0.55099,0.51366,0.18808,0.13646,0.1352,0.12644,0.052737,0.0272,0.015378,0.0097341,0.0087164,0.0026035,0.0021481,0.00046051,0.00037403,0.00011951,3.9184e-05,3.3116e-06,1.8412e-06,1.4539e-06 1,1.1135e-17,1.2251e-17,2.7824e-17,9.1453e-17,1.4914e-16,2.5219e-16,1.9646e-15,2.1753e-15,3.4255e-15,3.9037e-15,4.066e-15,5.8148e-15,1.0644e-14,1.8125e-14,2.1324e-14,2.486e-13,2.5489e-13,4.1354e-13,9.1925e-13,3.9678e-12,2.002e-11,1.1972e-10,3.7704e-09,5.237e-09,6.3947e-09,5.6774e-08,9.4165e-08,1.5105e-07,1.0375e-06,1.2838e-05,8.3749e-05,0.00020266,0.00025806,0.00029914,0.00044572,0.00063509,0.00095828,0.00098546,0.0015331,0.0015722,0.0017616,0.0023434,0.0028113,0.004289,0.0089496,0.013104,0.024807,0.028571,0.047877,0.049459,0.053137,0.068202,0.077683,0.13756,0.18284,0.18736,0.25026,0.41766,0.4178,0.5365,0.73498,0.87331,0.93457,0.94031,0.99143,0.99233,0.99762,0.99909,1,0.98805,0.96857,0.95803,0.95191,0.94633,0.91984,0.86779,0.86392,0.82803,0.81618,0.80198,0.57669,0.53905,0.20312,0.14843,0.14709,0.13775,0.058423,0.030468,0.017376,0.011071,0.0099289,0.0030128,0.0024916,0.00054367,0.00044257,0.00014309,4.7428e-05,4.0978e-06,2.2895e-06,1.8115e-06 1,2.7956e-18,3.081e-18,7.0993e-18,2.3837e-17,3.922e-17,6.6956e-17,5.4185e-16,6.0112e-16,9.5476e-16,1.0907e-15,1.137e-15,1.6372e-15,3.0318e-15,5.2164e-15,6.1565e-15,7.5377e-14,7.7323e-14,1.267e-13,2.8633e-13,1.2746e-12,6.6618e-12,4.1474e-11,1.4183e-09,1.9862e-09,2.4375e-09,2.2906e-08,3.8515e-08,6.2588e-08,4.5423e-07,6.077e-06,4.2264e-05,0.00010564,0.00013576,0.00015826,0.0002395,0.00034612,0.00053114,0.00054684,0.00086681,0.00088988,0.001002,0.0013498,0.0016326,0.0025397,0.0054925,0.008202,0.016079,0.01867,0.032277,0.033411,0.03606,0.047046,0.05406,0.099806,0.13574,0.13938,0.19103,0.33622,0.33634,0.44586,0.643,0.79597,0.8722,0.87988,0.95985,0.96179,0.9752,0.98066,0.98805,1,0.99524,0.99055,0.98745,0.98444,0.96832,0.93123,0.92827,0.8999,0.8902,0.87837,0.67047,0.6328,0.2647,0.19854,0.19688,0.18534,0.083532,0.045347,0.026696,0.017421,0.015711,0.0050488,0.0042114,0.00097998,0.00080428,0.00027147,9.3606e-05,8.7649e-06,4.9856e-06,3.9727e-06 1,1.1561e-18,1.2755e-18,2.966e-18,1.0093e-17,1.67e-17,2.8683e-17,2.3776e-16,2.6408e-16,4.2172e-16,4.8254e-16,5.0324e-16,7.2775e-16,1.3576e-15,2.3511e-15,2.7804e-15,3.5108e-14,3.6026e-14,5.94e-14,1.3564e-13,6.1568e-13,3.29e-12,2.1008e-11,7.5668e-10,1.0652e-09,1.3113e-09,1.2772e-08,2.1661e-08,3.5489e-08,2.6665e-07,3.7472e-06,2.7134e-05,6.9223e-05,8.9471e-05,0.00010467,0.00015996,0.00023324,0.00036174,0.00037271,0.0005978,0.00061414,0.00069368,0.00094185,0.0011451,0.0018033,0.0039888,0.0060307,0.012086,0.014105,0.024869,0.025777,0.0279,0.036776,0.042495,0.080541,0.11114,0.11427,0.15916,0.28968,0.2898,0.39193,0.58382,0.74159,0.82483,0.83347,0.92894,0.93146,0.94955,0.95733,0.96857,0.99524,1,0.9992,0.99813,0.99685,0.9879,0.96161,0.95934,0.93671,0.9287,0.91878,0.72818,0.69148,0.30892,0.23553,0.23367,0.22069,0.10335,0.057543,0.034559,0.022894,0.02072,0.0069037,0.0057898,0.001403,0.0011574,0.00040138,0.00014189,1.3976e-05,8.0401e-06,6.4353e-06 1,8.0243e-19,8.8568e-19,2.0672e-18,7.0736e-18,1.173e-17,2.0197e-17,1.6908e-16,1.8789e-16,3.0072e-16,3.4431e-16,3.5915e-16,5.2029e-16,9.7353e-16,1.6904e-15,2.0007e-15,2.5585e-14,2.6258e-14,4.3405e-14,9.9541e-14,4.5544e-13,2.4559e-12,1.5847e-11,5.8306e-10,8.2251e-10,1.0139e-09,1.0021e-08,1.7056e-08,2.8039e-08,2.1369e-07,3.0642e-06,2.2559e-05,5.8035e-05,7.5188e-05,8.8094e-05,0.00013517,0.00019781,0.00030813,0.00031757,0.00051182,0.00052596,0.00059484,0.00081027,0.00098717,0.0015625,0.0034883,0.0053009,0.010719,0.012537,0.022284,0.023109,0.025042,0.033149,0.03839,0.07355,0.1021,0.10503,0.14727,0.27174,0.27185,0.3707,0.55958,0.71838,0.80391,0.81289,0.91401,0.91676,0.93662,0.9453,0.95803,0.99055,0.9992,1,0.99978,0.99923,0.9933,0.97168,0.9697,0.94963,0.94237,0.93332,0.7512,0.71513,0.32824,0.25195,0.25001,0.23643,0.11247,0.063278,0.038317,0.02554,0.023149,0.0078282,0.0065797,0.0016211,0.0013402,0.00046997,0.00016784,1.688e-05,9.7556e-06,7.8228e-06 1,6.6141e-19,7.3019e-19,1.7077e-18,5.8603e-18,9.73e-18,1.6775e-17,1.4116e-16,1.5691e-16,2.5143e-16,2.8797e-16,3.0042e-16,4.3561e-16,8.1637e-16,1.4196e-15,1.6809e-15,2.1639e-14,2.2209e-14,3.6762e-14,8.4497e-14,3.8824e-13,2.1036e-12,1.3648e-11,5.0783e-10,7.172e-10,8.847e-10,8.8122e-09,1.5027e-08,2.4746e-08,1.9001e-07,2.7538e-06,2.0452e-05,5.2848e-05,6.8554e-05,8.0382e-05,0.0001236,0.00018122,0.00028295,0.00029166,0.00047127,0.00048436,0.00054816,0.00074797,0.00091228,0.0014478,0.003248,0.004949,0.010056,0.011774,0.021016,0.021801,0.023639,0.031361,0.036364,0.070066,0.097566,0.1004,0.14126,0.26256,0.26267,0.35974,0.54685,0.70597,0.79258,0.80172,0.90565,0.90851,0.92928,0.93841,0.95191,0.98745,0.99813,0.99978,1,0.99983,0.99551,0.9764,0.97459,0.95589,0.94905,0.94047,0.76314,0.72746,0.33869,0.2609,0.25891,0.24502,0.11753,0.066487,0.040434,0.02704,0.024526,0.0083592,0.0070343,0.0017484,0.001447,0.00051042,0.00018327,1.8635e-05,1.0796e-05,8.6656e-06 1,5.5988e-19,6.1823e-19,1.4483e-18,4.9826e-18,8.2813e-18,1.4293e-17,1.2082e-16,1.3433e-16,2.1546e-16,2.4685e-16,2.5754e-16,3.7374e-16,7.0137e-16,1.2211e-15,1.4464e-15,1.8727e-14,1.9222e-14,3.1855e-14,7.3359e-14,3.3829e-13,1.8406e-12,1.1998e-11,4.5077e-10,6.3722e-10,7.865e-10,7.8865e-09,1.347e-08,2.2216e-08,1.7169e-07,2.5112e-06,1.8791e-05,4.874e-05,6.3293e-05,7.4263e-05,0.0001144,0.00016801,0.00026284,0.00027097,0.0004388,0.00045104,0.00051075,0.00069796,0.0008521,0.0013554,0.0030535,0.0046634,0.0095143,0.01115,0.019977,0.020727,0.022487,0.02989,0.034694,0.067176,0.093794,0.096539,0.13625,0.25482,0.25493,0.35045,0.53594,0.69522,0.78268,0.79195,0.89819,0.90114,0.92267,0.93219,0.94633,0.98444,0.99685,0.99923,0.99983,1,0.99707,0.98012,0.97846,0.96097,0.95449,0.94633,0.77329,0.73798,0.34782,0.26875,0.26673,0.25257,0.12202,0.069352,0.042335,0.02839,0.025768,0.0088418,0.0074478,0.0018652,0.0015451,0.00054781,0.00019761,2.0283e-05,1.1776e-05,9.4598e-06 1,2.7651e-19,3.0558e-19,7.21e-19,2.5067e-18,4.1846e-18,7.2568e-18,6.2505e-17,6.9561e-17,1.1205e-16,1.2853e-16,1.3415e-16,1.9534e-16,3.6869e-16,6.4516e-16,7.654e-16,1.0153e-14,1.0424e-14,1.7359e-14,4.0304e-14,1.8872e-13,1.0448e-12,6.9473e-12,2.7186e-10,3.8587e-10,4.7746e-10,4.9239e-09,8.4668e-09,1.4054e-08,1.1161e-07,1.6967e-06,1.3104e-05,3.4539e-05,4.5055e-05,5.3012e-05,8.229e-05,0.00012171,0.00019199,0.00019804,0.00032369,0.0003329,0.00037789,0.00051961,0.00063693,0.0010229,0.0023456,0.0036173,0.0075086,0.0088351,0.016075,0.016696,0.018154,0.024326,0.028359,0.056053,0.079158,0.081558,0.11657,0.22384,0.22394,0.31272,0.49054,0.64933,0.73962,0.74936,0.86431,0.86763,0.89211,0.90315,0.91984,0.96832,0.9879,0.9933,0.99551,0.99707,1,0.99237,0.99132,0.9791,0.97422,0.96788,0.81458,0.78111,0.38766,0.30341,0.30123,0.28596,0.14237,0.082541,0.051182,0.034731,0.03161,0.011158,0.0094392,0.0024402,0.0020297,0.00073507,0.00027038,2.8878e-05,1.6915e-05,1.3636e-05 1,8.7405e-20,9.6723e-20,2.3087e-19,8.1643e-19,1.3726e-18,2.3985e-18,2.1297e-17,2.3738e-17,3.85e-17,4.4251e-17,4.6214e-17,6.766e-17,1.289e-16,2.2742e-16,2.7049e-16,3.7311e-15,3.8321e-15,6.4323e-15,1.5133e-14,7.2624e-14,4.1351e-13,2.8394e-12,1.1866e-10,1.6953e-10,2.1062e-10,2.2728e-09,3.9511e-09,6.6267e-09,5.4991e-08,8.8966e-07,7.2317e-06,1.956e-05,2.5702e-05,3.0379e-05,4.7745e-05,7.1416e-05,0.00011418,0.00011789,0.00019559,0.00020133,0.00022944,0.00031866,0.00039317,0.00064132,0.0015132,0.0023705,0.0050597,0.0059924,0.011177,0.011628,0.01269,0.017228,0.020226,0.041329,0.059446,0.061349,0.089506,0.17932,0.1794,0.25697,0.41995,0.57438,0.66672,0.67693,0.80227,0.80606,0.83447,0.84757,0.86779,0.93123,0.96161,0.97168,0.9764,0.98012,0.99237,1,0.99997,0.99666,0.99452,0.99135,0.87504,0.8456,0.45615,0.36451,0.3621,0.34517,0.18039,0.10799,0.068679,0.047502,0.043428,0.016048,0.013669,0.0037199,0.0031143,0.0011673,0.00044311,5.0464e-05,2.9984e-05,2.4308e-05 1,8.0844e-20,8.947e-20,2.1372e-19,7.5667e-19,1.2727e-18,2.2251e-18,1.9798e-17,2.2069e-17,3.5811e-17,4.1165e-17,4.2993e-17,6.2967e-17,1.2003e-16,2.119e-16,2.5207e-16,3.4861e-15,3.5806e-15,6.0134e-15,1.416e-14,6.8067e-14,3.883e-13,2.6721e-12,1.1216e-10,1.6032e-10,1.9922e-10,2.1564e-09,3.7515e-09,6.2964e-09,5.2404e-08,8.5138e-07,6.9443e-06,1.8815e-05,2.4736e-05,2.9246e-05,4.6003e-05,6.8862e-05,0.0001102,0.00011379,0.00018897,0.00019452,0.00022174,0.00030818,0.00038041,0.00062115,0.0014685,0.0023028,0.0049244,0.0058347,0.010902,0.011342,0.012381,0.016823,0.01976,0.040468,0.05828,0.060152,0.087881,0.17656,0.17665,0.25346,0.41536,0.56934,0.66172,0.67194,0.79782,0.80164,0.83028,0.84349,0.86392,0.92827,0.95934,0.9697,0.97459,0.97846,0.99132,0.99997,1,0.9973,0.99536,0.99241,0.87878,0.84965,0.46092,0.36883,0.36641,0.34937,0.18318,0.1099,0.070013,0.048487,0.044341,0.016437,0.014006,0.0038248,0.0032035,0.0012035,0.00045783,5.2366e-05,3.1144e-05,2.5259e-05 1,4.0485e-20,4.4841e-20,1.0785e-19,3.8571e-19,6.5149e-19,1.1442e-18,1.0366e-17,1.1566e-17,1.8844e-17,2.1687e-17,2.2658e-17,3.3293e-17,6.3815e-17,1.1321e-16,1.3487e-16,1.9091e-15,1.9613e-15,3.3094e-15,7.8539e-15,3.831e-14,2.2222e-13,1.5587e-12,6.803e-11,9.7617e-11,1.2159e-10,1.3521e-09,2.3675e-09,3.998e-09,3.4154e-08,5.7579e-07,4.8412e-06,1.332e-05,1.7588e-05,2.085e-05,3.3038e-05,4.9788e-05,8.0315e-05,8.2975e-05,0.00013902,0.00014319,0.0001636,0.00022874,0.00028344,0.0004671,0.0011232,0.0017778,0.0038652,0.0045974,0.0087176,0.009079,0.0099321,0.0136,0.016041,0.033507,0.048784,0.0504,0.074535,0.15357,0.15365,0.2238,0.3758,0.52522,0.61731,0.62764,0.75734,0.76136,0.79175,0.80592,0.82803,0.8999,0.93671,0.94963,0.95589,0.96097,0.9791,0.99666,0.9973,1,0.99973,0.99875,0.90977,0.88365,0.50369,0.40805,0.40551,0.3876,0.20917,0.1279,0.082716,0.057936,0.053123,0.020235,0.017313,0.004874,0.0040982,0.0015713,0.00060905,7.2367e-05,4.3407e-05,3.5322e-05 1,3.2558e-20,3.607e-20,8.6944e-20,3.1192e-19,5.2755e-19,9.2786e-19,8.4538e-18,9.4348e-18,1.5391e-17,1.772e-17,1.8516e-17,2.7234e-17,5.2292e-17,9.2908e-17,1.1074e-16,1.5789e-15,1.6223e-15,2.7413e-15,6.5217e-15,3.1958e-14,1.8635e-13,1.3149e-12,5.8096e-11,8.3464e-11,1.0404e-10,1.1667e-09,2.0471e-09,3.4636e-09,2.9832e-08,5.0878e-07,4.3187e-06,1.194e-05,1.5787e-05,1.873e-05,2.9749e-05,4.4925e-05,7.2651e-05,7.5071e-05,0.00012613,0.00012993,0.00014856,0.0002081,0.00025818,0.0004267,0.0010315,0.0016375,0.0035786,0.0042617,0.0081186,0.0084577,0.0092587,0.012709,0.01501,0.031546,0.046087,0.047628,0.070705,0.14684,0.14691,0.215,0.36379,0.51153,0.60334,0.61368,0.74425,0.74832,0.77918,0.79361,0.81618,0.8902,0.9287,0.94237,0.94905,0.95449,0.97422,0.99452,0.99536,0.99973,1,0.99964,0.91868,0.8936,0.51732,0.42072,0.41815,0.39998,0.21781,0.13398,0.087057,0.061194,0.056157,0.021573,0.018481,0.005253,0.0044222,0.0017064,0.00066531,8.0002e-05,4.8114e-05,3.9194e-05 1,2.5209e-20,2.7936e-20,6.7508e-20,2.4309e-19,4.1177e-19,7.2543e-19,6.6534e-18,7.4279e-18,1.2136e-17,1.3978e-17,1.4607e-17,2.1511e-17,4.1387e-17,7.3665e-17,8.7853e-17,1.2633e-15,1.2981e-15,2.1973e-15,5.2425e-15,2.5828e-14,1.5153e-13,1.0767e-12,4.8259e-11,6.9431e-11,8.6625e-11,9.8103e-10,1.7254e-09,2.9259e-09,2.5444e-08,4.3987e-07,3.7756e-06,1.0497e-05,1.3901e-05,1.651e-05,2.6293e-05,3.9803e-05,6.4559e-05,6.6722e-05,0.00011247,0.00011588,0.00013261,0.00018616,0.00023129,0.00038356,0.00093298,0.0014861,0.0032677,0.003897,0.0074642,0.0077787,0.0085222,0.011731,0.013876,0.029376,0.043089,0.044546,0.066425,0.13923,0.1393,0.205,0.34997,0.49562,0.58699,0.59732,0.72872,0.73285,0.7642,0.7789,0.80198,0.87837,0.91878,0.93332,0.94047,0.94633,0.96788,0.99135,0.99241,0.99875,0.99964,1,0.9286,0.90477,0.5334,0.43576,0.43315,0.41471,0.22823,0.14138,0.092368,0.065198,0.059889,0.023238,0.019937,0.0057306,0.0048311,0.0018782,0.00073733,8.9912e-05,5.4242e-05,4.4241e-05 1,6.0441e-22,6.7259e-22,1.6848e-21,6.3963e-21,1.1075e-20,1.9981e-20,2.0144e-19,2.2597e-19,3.7715e-19,4.3709e-19,4.5766e-19,6.8548e-19,1.3575e-18,2.479e-18,2.9798e-18,4.8388e-17,4.9783e-17,8.6363e-17,2.1468e-16,1.1419e-15,7.3105e-15,5.7404e-14,3.1567e-12,4.6351e-12,5.8556e-12,7.6358e-11,1.3894e-10,2.4332e-10,2.4258e-09,5.0901e-08,5.1221e-07,1.5434e-06,2.0908e-06,2.5183e-06,4.1683e-06,6.5356e-06,1.1054e-05,1.1457e-05,2.0231e-05,2.09e-05,2.4213e-05,3.5067e-05,4.4461e-05,7.7383e-05,0.00020572,0.00034407,0.00082511,0.0010041,0.002078,0.0021766,0.0024118,0.0034573,0.0041799,0.0098135,0.01524,0.015836,0.02517,0.060204,0.06024,0.095937,0.18605,0.29169,0.36637,0.37527,0.4982,0.5024,0.53512,0.55099,0.57669,0.67047,0.72818,0.7512,0.76314,0.77329,0.81458,0.87504,0.87878,0.90977,0.91868,0.9286,1,0.99805,0.76259,0.66456,0.66176,0.64173,0.41071,0.2811,0.1987,0.14883,0.13862,0.062022,0.054357,0.018329,0.015768,0.0068213,0.0029537,0.00043976,0.00027736,0.00023024 1,3.253e-22,3.6224e-22,9.1272e-22,3.495e-21,6.0732e-21,1.0999e-20,1.1261e-19,1.2641e-19,2.1172e-19,2.4561e-19,2.5725e-19,3.8637e-19,7.6874e-19,1.4097e-18,1.6967e-18,2.8101e-17,2.8916e-17,5.0364e-17,1.2603e-16,6.7874e-16,4.4075e-15,3.5175e-14,1.9995e-12,2.9458e-12,3.729e-12,4.9753e-11,9.1027e-11,1.6025e-10,1.6335e-09,3.5371e-08,3.6523e-07,1.115e-06,1.5161e-06,1.8302e-06,3.0483e-06,4.8069e-06,8.1852e-06,8.4879e-06,1.5102e-05,1.5608e-05,1.8118e-05,2.6373e-05,3.3548e-05,5.8849e-05,0.00015872,0.00026758,0.00065077,0.0007945,0.0016651,0.0017456,0.0019377,0.002796,0.0033925,0.0080997,0.012696,0.013203,0.021203,0.051815,0.051847,0.083636,0.16559,0.26393,0.33467,0.34317,0.46188,0.46598,0.49804,0.51366,0.53905,0.6328,0.69148,0.71513,0.72746,0.73798,0.78111,0.8456,0.84965,0.88365,0.8936,0.90477,0.99805,1,0.79693,0.7018,0.69905,0.6793,0.44554,0.30991,0.22189,0.1678,0.15665,0.071726,0.063079,0.021828,0.018841,0.008293,0.0036486,0.0005611,0.00035646,0.00029675 1,3.1832e-25,3.5707e-25,9.5815e-25,4.0247e-24,7.268e-24,1.3722e-23,1.6578e-22,1.8767e-22,3.2628e-22,3.8262e-22,4.0211e-22,6.2213e-22,1.302e-21,2.4972e-21,3.0473e-21,6.2438e-20,6.4392e-20,1.1708e-19,3.1478e-19,1.9386e-18,1.4668e-17,1.3944e-16,1.1338e-14,1.731e-14,2.2396e-14,3.8249e-13,7.4268e-13,1.3833e-12,1.7911e-11,5.4444e-10,7.4261e-09,2.6098e-08,3.6926e-08,4.5686e-08,8.1412e-08,1.3651e-07,2.5013e-07,2.6069e-07,5.0314e-07,5.2246e-07,6.1961e-07,9.5256e-07,1.2555e-06,2.3968e-06,7.5519e-06,1.3867e-05,3.9255e-05,4.965e-05,0.00011916,0.00012604,0.00014272,0.00022107,0.00027871,0.00079753,0.0013815,0.0014497,0.002603,0.008015,0.0080213,0.014858,0.036772,0.070031,0.098421,0.10208,0.15931,0.1615,0.17913,0.18808,0.20312,0.2647,0.30892,0.32824,0.33869,0.34782,0.38766,0.45615,0.46092,0.50369,0.51732,0.5334,0.76259,0.79693,1,0.98602,0.98524,0.97908,0.83637,0.69271,0.56928,0.47763,0.45685,0.26843,0.24503,0.11213,0.10029,0.053217,0.027797,0.0060628,0.0041634,0.0035745 1,5.2825e-26,5.9362e-26,1.6181e-25,6.9551e-25,1.2681e-24,2.4191e-24,3.0457e-23,3.455e-23,6.0629e-23,7.1289e-23,7.4983e-23,1.1687e-22,2.4769e-22,4.8041e-22,5.8824e-22,1.2709e-20,1.3114e-20,2.4101e-20,6.5965e-20,4.2005e-19,3.3016e-18,3.2783e-17,2.914e-15,4.4888e-15,5.8394e-15,1.0605e-13,2.0899e-13,3.9477e-13,5.4252e-12,1.7944e-10,2.6232e-09,9.5477e-09,1.3643e-08,1.6984e-08,3.0778e-08,5.2405e-08,9.7788e-08,1.0205e-07,2.0098e-07,2.0895e-07,2.4912e-07,3.8823e-07,5.1625e-07,1.0065e-06,3.2966e-06,6.1834e-06,1.8179e-05,2.3196e-05,5.7582e-05,6.1039e-05,6.9459e-05,0.00010951,0.00013939,0.00041726,0.000741,0.0007793,0.0014387,0.0046925,0.0046964,0.0090039,0.023557,0.046898,0.06762,0.070337,0.11388,0.11559,0.1294,0.13646,0.14843,0.19854,0.23553,0.25195,0.2609,0.26875,0.30341,0.36451,0.36883,0.40805,0.42072,0.43576,0.66456,0.7018,0.98602,1,0.99999,0.99928,0.91168,0.78864,0.67074,0.57751,0.55573,0.34745,0.32012,0.15705,0.14171,0.078782,0.042947,0.010219,0.0071547,0.00619 1,5.0236e-26,5.6455e-26,1.5395e-25,6.6216e-25,1.2076e-24,2.3044e-24,2.9046e-23,3.2951e-23,5.7838e-23,6.8013e-23,7.1539e-23,1.1153e-22,2.3644e-22,4.5874e-22,5.6176e-22,1.2154e-20,1.2542e-20,2.3057e-20,6.3139e-20,4.0243e-19,3.1665e-18,3.1479e-17,2.8051e-15,4.322e-15,5.6233e-15,1.023e-13,2.0168e-13,3.8111e-13,5.2462e-12,1.7392e-10,2.5475e-09,9.2812e-09,1.3266e-08,1.6517e-08,2.9946e-08,5.101e-08,9.5233e-08,9.9385e-08,1.9585e-07,2.0362e-07,2.428e-07,3.7853e-07,5.0347e-07,9.8216e-07,3.2203e-06,6.0438e-06,1.7787e-05,2.2702e-05,5.6409e-05,5.9799e-05,6.8057e-05,0.00010736,0.00013668,0.00040966,0.00072801,0.00076568,0.0014147,0.0046215,0.0046253,0.008876,0.023259,0.04636,0.066892,0.069585,0.11278,0.11447,0.12818,0.1352,0.14709,0.19688,0.23367,0.25001,0.25891,0.26673,0.30123,0.3621,0.36641,0.40551,0.41815,0.43315,0.66176,0.69905,0.98524,0.99999,1,0.99945,0.9135,0.79117,0.67353,0.58033,0.55854,0.34981,0.32237,0.15846,0.14302,0.079612,0.043452,0.010364,0.0072601,0.0062825 1,3.5083e-26,3.944e-26,1.0789e-25,4.6616e-25,8.5176e-25,1.6287e-24,2.0697e-23,2.349e-23,4.1307e-23,4.8599e-23,5.1127e-23,7.9822e-23,1.6965e-22,3.2987e-22,4.0423e-22,8.8383e-21,9.1211e-21,1.6804e-20,4.6178e-20,2.9628e-19,2.3489e-18,2.3553e-17,2.1361e-15,3.2971e-15,4.2945e-15,7.9081e-14,1.5636e-13,2.963e-13,4.1271e-12,1.3913e-10,2.066e-09,7.5796e-09,1.0855e-08,1.3532e-08,2.4615e-08,4.2057e-08,7.8802e-08,8.2258e-08,1.6275e-07,1.6924e-07,2.0203e-07,3.1581e-07,4.2078e-07,8.2429e-07,2.7235e-06,5.133e-06,1.522e-05,1.9459e-05,4.8675e-05,5.1624e-05,5.881e-05,9.3094e-05,0.00011875,0.0003591,0.00064131,0.0006748,0.0012536,0.0041423,0.0041458,0.0080102,0.021222,0.042674,0.061885,0.064414,0.10517,0.10677,0.11977,0.12644,0.13775,0.18534,0.22069,0.23643,0.24502,0.25257,0.28596,0.34517,0.34937,0.3876,0.39998,0.41471,0.64173,0.6793,0.97908,0.99928,0.99945,1,0.92598,0.80891,0.69333,0.60046,0.5786,0.36685,0.33871,0.1688,0.15261,0.085741,0.047194,0.011452,0.0080533,0.0069794 1,4.6524e-28,5.2525e-28,1.4904e-27,6.7962e-27,1.2699e-26,2.4878e-26,3.4814e-25,3.9703e-25,7.1353e-25,8.4479e-25,8.9047e-25,1.4145e-24,3.096e-24,6.1795e-24,7.6334e-24,1.8891e-22,1.952e-22,3.6873e-22,1.0565e-21,7.3293e-21,6.3513e-20,7.0512e-19,7.8764e-17,1.2412e-16,1.6374e-16,3.4811e-15,7.1255e-15,1.3953e-14,2.2338e-13,9.1739e-12,1.6019e-10,6.3786e-10,9.3492e-10,1.1822e-09,2.2368e-09,3.9609e-09,7.7449e-09,8.1084e-09,1.682e-08,1.754e-08,2.12e-08,3.421e-08,4.6534e-08,9.5757e-08,3.4636e-07,6.8607e-07,2.2223e-06,2.9003e-06,7.8504e-06,8.3692e-06,9.6449e-06,1.5911e-05,2.0753e-05,6.9736e-05,0.000132,0.00013962,0.0002768,0.0010463,0.0010473,0.0021931,0.0066163,0.014757,0.02272,0.023807,0.042365,0.043131,0.049441,0.052737,0.058423,0.083532,0.10335,0.11247,0.11753,0.12202,0.14237,0.18039,0.18318,0.20917,0.21781,0.22823,0.41071,0.44554,0.83637,0.91168,0.9135,0.92598,1,0.96699,0.89807,0.82624,0.80751,0.59197,0.55853,0.32752,0.3023,0.18936,0.11518,0.034253,0.025204,0.022239 1,2.4588e-29,2.7837e-29,8.0924e-29,3.8238e-28,7.2515e-28,1.4435e-27,2.1528e-26,2.463e-26,4.4905e-26,5.3387e-26,5.6348e-26,9.0534e-26,2.0205e-25,4.103e-25,5.0953e-25,1.3685e-23,1.4153e-23,2.718e-23,8.0059e-23,5.8477e-22,5.3743e-21,6.3816e-20,8.1803e-18,1.3069e-17,1.7386e-17,4.0644e-16,8.5119e-16,1.7033e-15,2.9897e-14,1.3988e-12,2.7185e-11,1.1427e-10,1.7007e-10,2.1711e-10,4.2157e-10,7.6436e-10,1.5373e-09,1.6126e-09,3.4515e-09,3.6056e-09,4.3942e-09,7.2412e-09,9.9851e-09,2.1227e-08,8.151e-08,1.6685e-07,5.7294e-07,7.5796e-07,2.1614e-06,2.3122e-06,2.685e-06,4.552e-06,6.0253e-06,2.1707e-05,4.2698e-05,4.5318e-05,9.3785e-05,0.00038746,0.00038785,0.00085653,0.0028156,0.0067247,0.010771,0.011337,0.021355,0.021781,0.025326,0.0272,0.030468,0.045347,0.057543,0.063278,0.066487,0.069352,0.082541,0.10799,0.1099,0.1279,0.13398,0.14138,0.2811,0.30991,0.69271,0.78864,0.79117,0.80891,0.96699,1,0.97929,0.93767,0.92502,0.74635,0.71435,0.46643,0.43643,0.29376,0.19087,0.064926,0.049225,0.043952 1,2.2999e-30,2.6097e-30,7.7329e-30,3.7581e-29,7.2106e-29,1.4536e-28,2.2797e-27,2.6148e-27,4.8216e-27,5.7512e-27,6.0763e-27,9.8512e-27,2.2325e-26,4.5959e-26,5.7313e-26,1.642e-24,1.6993e-24,3.3064e-24,9.9536e-24,7.5727e-23,7.2903e-22,9.129e-21,1.3046e-18,2.107e-18,2.8215e-18,7.1094e-17,1.516e-16,3.0861e-16,5.8251e-15,3.0211e-13,6.3889e-12,2.8029e-11,4.2223e-11,5.4304e-11,1.0763e-10,1.9882e-10,4.0887e-10,4.2955e-10,9.4239e-10,9.8589e-10,1.2093e-09,2.0262e-09,2.8243e-09,6.1602e-09,2.4799e-08,5.2096e-08,1.8734e-07,2.5051e-07,7.4438e-07,7.9844e-07,9.3279e-07,1.6158e-06,2.1639e-06,8.2362e-06,1.67e-05,1.7774e-05,3.805e-05,0.00016863,0.00016881,0.00038878,0.0013676,0.0034478,0.0056978,0.0060176,0.011856,0.012111,0.014242,0.015378,0.017376,0.026696,0.034559,0.038317,0.040434,0.042335,0.051182,0.068679,0.070013,0.082716,0.087057,0.092368,0.1987,0.22189,0.56928,0.67074,0.67353,0.69333,0.89807,0.97929,1,0.98819,0.98207,0.85472,0.82738,0.58808,0.55622,0.39626,0.27125,0.1026,0.079645,0.071781 1,3.7531e-31,4.2656e-31,1.2823e-30,6.3652e-30,1.2321e-29,2.5076e-29,4.0844e-28,4.6938e-28,8.7296e-28,1.0438e-27,1.1037e-27,1.8016e-27,4.1303e-27,8.5903e-27,1.0746e-26,3.2325e-25,3.347e-25,6.5765e-25,2.0126e-24,1.5789e-23,1.5742e-22,2.0517e-21,3.1821e-19,5.1815e-19,6.9735e-19,1.8592e-17,4.0189e-17,8.2874e-17,1.6523e-15,9.2607e-14,2.0872e-12,9.4567e-12,1.4376e-11,1.8593e-11,3.7426e-11,7.0114e-11,1.4662e-10,1.5422e-10,3.4469e-10,3.61e-10,4.4499e-10,7.5494e-10,1.0609e-09,2.3592e-09,9.8413e-09,2.1082e-08,7.849e-08,1.0581e-07,3.2431e-07,3.4858e-07,4.0909e-07,7.2024e-07,9.7301e-07,3.8602e-06,8.0083e-06,8.5404e-06,1.8756e-05,8.7639e-05,8.7735e-05,0.00020856,0.00077208,0.0020273,0.0034301,0.0036322,0.0074028,0.00757,0.0089778,0.0097341,0.011071,0.017421,0.022894,0.02554,0.02704,0.02839,0.034731,0.047502,0.048487,0.057936,0.061194,0.065198,0.14883,0.1678,0.47763,0.57751,0.58033,0.60046,0.82624,0.93767,0.98819,1,0.99935,0.92082,0.899,0.68118,0.64953,0.48297,0.34384,0.14088,0.11133,0.10105 1,2.4473e-31,2.7826e-31,8.3933e-31,4.187e-30,8.1213e-30,1.6566e-29,2.7223e-28,3.1299e-28,5.8325e-28,6.9783e-28,7.3797e-28,1.2065e-27,2.7736e-27,5.7825e-27,7.2392e-27,2.2025e-25,2.2807e-25,4.4918e-25,1.3799e-24,1.0903e-23,1.096e-22,1.4419e-21,2.2796e-19,3.7191e-19,5.0112e-19,1.3538e-17,2.9358e-17,6.0721e-17,1.2262e-15,6.9986e-14,1.601e-12,7.3089e-12,1.1134e-11,1.442e-11,2.913e-11,5.4753e-11,1.1495e-10,1.2094e-10,2.7149e-10,2.844e-10,3.5098e-10,5.9719e-10,8.4079e-10,1.8782e-09,7.9005e-09,1.7002e-08,6.3817e-08,8.6192e-08,2.6611e-07,2.8616e-07,3.3618e-07,5.9414e-07,8.043e-07,3.2219e-06,6.7201e-06,7.17e-06,1.5841e-05,7.4939e-05,7.5022e-05,0.00017966,0.0006731,0.0017844,0.0030357,0.0032165,0.0066077,0.0067586,0.0080315,0.0087164,0.0099289,0.015711,0.02072,0.023149,0.024526,0.025768,0.03161,0.043428,0.044341,0.053123,0.056157,0.059889,0.13862,0.15665,0.45685,0.55573,0.55854,0.5786,0.80751,0.92502,0.98207,0.99935,1,0.9338,0.91349,0.7026,0.67123,0.50412,0.36221,0.15121,0.11999,0.10909 1,2.8218e-33,3.2213e-33,1.0058e-32,5.2792e-32,1.0459e-31,2.1826e-31,3.9283e-30,4.5372e-30,8.6305e-30,1.0387e-29,1.1005e-29,1.8288e-29,4.3226e-29,9.2368e-29,1.1652e-28,3.9844e-27,4.1311e-27,8.3304e-27,2.6621e-26,2.2643e-25,2.4754e-24,3.5851e-23,6.8994e-21,1.1479e-20,1.5654e-20,4.8432e-19,1.0851e-18,2.315e-18,5.3315e-17,3.6661e-15,9.7721e-14,4.8199e-13,7.5047e-13,9.8514e-13,2.0654e-12,4.0153e-12,8.7761e-12,9.2589e-12,2.1735e-11,2.2827e-11,2.8505e-11,4.9978e-11,7.1751e-11,1.679e-10,7.6926e-10,1.735e-09,7.0787e-09,9.7481e-09,3.2423e-08,3.5036e-08,4.1612e-08,7.6465e-08,1.0571e-07,4.6777e-07,1.0307e-06,1.1051e-06,2.5961e-06,1.3944e-05,1.396e-05,3.607e-05,0.00015276,0.00044657,0.00080388,0.00085715,0.00191,0.0019588,0.0023756,0.0026035,0.0030128,0.0050488,0.0069037,0.0078282,0.0083592,0.0088418,0.011158,0.016048,0.016437,0.020235,0.021573,0.023238,0.062022,0.071726,0.26843,0.34745,0.34981,0.36685,0.59197,0.74635,0.85472,0.92082,0.9338,1,0.99847,0.89539,0.87226,0.72597,0.57318,0.2899,0.2401,0.22202 1,1.4317e-33,1.6354e-33,5.1328e-33,2.7146e-32,5.3948e-32,1.1297e-31,2.0611e-30,2.3822e-30,4.5452e-30,5.4753e-30,5.8026e-30,9.6663e-30,2.2942e-29,4.9205e-29,6.2139e-29,2.1624e-27,2.2423e-27,4.5377e-27,1.4586e-26,1.2544e-25,1.3887e-24,2.0403e-23,4.0436e-21,6.7472e-21,9.2177e-21,2.9102e-19,6.5524e-19,1.4044e-18,3.2984e-17,2.3321e-15,6.3599e-14,3.1734e-13,4.9571e-13,6.5204e-13,1.3746e-12,2.6859e-12,5.9059e-12,6.2334e-12,1.473e-11,1.5477e-11,1.936e-11,3.4097e-11,4.9094e-11,1.1569e-10,5.3683e-10,1.2193e-09,5.037e-09,6.9567e-09,2.3397e-08,2.5301e-08,3.0099e-08,5.5632e-08,7.7154e-08,3.4651e-07,7.6981e-07,8.2601e-07,1.9582e-06,1.0719e-05,1.0732e-05,2.8045e-05,0.00012097,0.00035884,0.00065143,0.00069526,0.0015681,0.0016088,0.0019571,0.0021481,0.0024916,0.0042114,0.0057898,0.0065797,0.0070343,0.0074478,0.0094392,0.013669,0.014006,0.017313,0.018481,0.019937,0.054357,0.063079,0.24503,0.32012,0.32237,0.33871,0.55853,0.71435,0.82738,0.899,0.91349,0.99847,1,0.91756,0.89648,0.75766,0.60668,0.31578,0.26321,0.244 1,7.9972e-36,9.1759e-36,2.9938e-35,1.6762e-34,3.4109e-34,7.3281e-34,1.4804e-32,1.7199e-32,3.3579e-32,4.072e-32,4.3244e-32,7.3367e-32,1.7963e-31,3.9607e-31,5.0444e-31,2.0011e-29,2.0779e-29,4.3178e-29,1.4507e-28,1.355e-27,1.6481e-26,2.6966e-25,6.6618e-23,1.1363e-22,1.5734e-22,5.7829e-21,1.3506e-20,2.9969e-20,8.1558e-19,7.1053e-17,2.2999e-15,1.2515e-14,2.0034e-14,2.6754e-14,5.8797e-14,1.1931e-13,2.7446e-13,2.9058e-13,7.2196e-13,7.6075e-13,9.6427e-13,1.7563e-12,2.5847e-12,6.4163e-12,3.2766e-11,7.8437e-11,3.5579e-10,5.0219e-10,1.836e-09,1.9964e-09,2.4041e-09,4.6419e-09,6.5913e-09,3.3094e-08,7.8188e-08,8.4361e-08,2.1422e-07,1.3519e-06,1.3537e-06,3.8519e-06,1.9062e-05,6.3094e-05,0.00012203,0.00013116,0.00032404,0.00033343,0.00041499,0.00046051,0.00054367,0.00097998,0.001403,0.0016211,0.0017484,0.0018652,0.0024402,0.0037199,0.0038248,0.004874,0.005253,0.0057306,0.018329,0.021828,0.11213,0.15705,0.15846,0.1688,0.32752,0.46643,0.58808,0.68118,0.7026,0.89539,0.91756,1,0.99861,0.94694,0.84276,0.54394,0.47564,0.44937 1,4.0863e-36,4.6912e-36,1.5381e-35,8.6743e-35,1.7705e-34,3.8162e-34,7.8101e-33,9.0794e-33,1.7778e-32,2.1577e-32,2.2921e-32,3.8977e-32,9.5809e-32,2.1199e-31,2.7029e-31,1.0902e-29,1.1323e-29,2.3607e-29,7.9761e-29,7.5285e-28,9.2672e-27,1.5372e-25,3.9054e-23,6.6802e-23,9.2654e-23,3.4719e-21,8.1463e-21,1.8157e-20,5.0344e-19,4.5038e-17,1.4899e-15,8.1973e-15,1.3163e-14,1.7612e-14,3.8911e-14,7.9341e-14,1.8356e-13,1.9442e-13,4.8612e-13,5.1244e-13,6.5061e-13,1.1901e-12,1.7563e-12,4.3887e-12,2.2686e-11,5.4672e-11,2.5096e-10,3.552e-10,1.3125e-09,1.4281e-09,1.7224e-09,3.3442e-09,4.7629e-09,2.4255e-08,5.7755e-08,6.2358e-08,1.5974e-07,1.0265e-06,1.0279e-06,2.9564e-06,1.4888e-05,4.997e-05,9.7425e-05,0.00010481,0.00026196,0.00026966,0.00033659,0.00037403,0.00044257,0.00080428,0.0011574,0.0013402,0.001447,0.0015451,0.0020297,0.0031143,0.0032035,0.0040982,0.0044222,0.0048311,0.015768,0.018841,0.10029,0.14171,0.14302,0.15261,0.3023,0.43643,0.55622,0.64953,0.67123,0.87226,0.89648,0.99861,1,0.96223,0.86794,0.57571,0.5065,0.47968 1,1.1378e-37,1.3102e-37,4.4087e-37,2.5828e-36,5.356e-36,1.1744e-35,2.5732e-34,3.0016e-34,5.9686e-34,7.2763e-34,7.7401e-34,1.3324e-33,3.3441e-33,7.5374e-33,9.6649e-33,4.2554e-31,4.4236e-31,9.3877e-31,3.2669e-30,3.2588e-29,4.2721e-28,7.6158e-27,2.2422e-24,3.892e-24,5.447e-24,2.2595e-22,5.4331e-22,1.2394e-21,3.7924e-20,3.9013e-18,1.4474e-16,8.4386e-16,1.3775e-15,1.8618e-15,4.2293e-15,8.8447e-15,2.109e-14,2.2384e-14,5.7875e-14,6.1127e-14,7.8297e-14,1.4648e-13,2.1935e-13,5.6756e-13,3.1279e-12,7.808e-12,3.8153e-11,5.4793e-11,2.1409e-10,2.338e-10,2.843e-10,5.6836e-10,8.2235e-10,4.5121e-09,1.1196e-08,1.2133e-08,3.2541e-08,2.3e-07,2.3032e-07,7.013e-07,3.8717e-06,1.3983e-05,2.8442e-05,3.0743e-05,8.1667e-05,8.4233e-05,0.00010676,0.00011951,0.00014309,0.00027147,0.00040138,0.00046997,0.00051042,0.00054781,0.00073507,0.0011673,0.0012035,0.0015713,0.0017064,0.0018782,0.0068213,0.008293,0.053217,0.078782,0.079612,0.085741,0.18936,0.29376,0.39626,0.48297,0.50412,0.72597,0.75766,0.94694,0.96223,1,0.96808,0.74153,0.67364,0.64612 1,3.9719e-39,4.5862e-39,1.5804e-38,9.5885e-38,2.0175e-37,4.4939e-37,1.0482e-35,1.2267e-35,2.4738e-35,3.0282e-35,3.2253e-35,5.6148e-35,1.4364e-34,3.293e-34,4.2445e-34,2.0254e-32,2.1072e-32,4.5452e-32,1.6253e-31,1.7055e-30,2.3689e-29,4.5117e-28,1.5208e-25,2.6756e-25,3.7757e-25,1.7195e-23,4.2285e-23,9.8539e-23,3.3006e-21,3.8599e-19,1.5909e-17,9.7827e-17,1.621e-16,2.2115e-16,5.1536e-16,1.1031e-15,2.7042e-15,2.8756e-15,7.6673e-15,8.1125e-15,1.0476e-14,2.0007e-14,3.0366e-14,8.1123e-14,4.7415e-13,1.2224e-12,6.3264e-12,9.2077e-12,3.7868e-11,4.1495e-11,5.0837e-11,1.0439e-10,1.5325e-10,9.0043e-10,2.3203e-09,2.523e-09,7.0586e-09,5.4446e-08,5.4526e-08,1.7493e-07,1.0508e-06,4.0593e-06,8.584e-06,9.3188e-06,2.6179e-05,2.7051e-05,3.4769e-05,3.9184e-05,4.7428e-05,9.3606e-05,0.00014189,0.00016784,0.00018327,0.00019761,0.00027038,0.00044311,0.00045783,0.00060905,0.00066531,0.00073733,0.0029537,0.0036486,0.027797,0.042947,0.043452,0.047194,0.11518,0.19087,0.27125,0.34384,0.36221,0.57318,0.60668,0.84276,0.86794,0.96808,1,0.87417,0.81785,0.79364 1,3.5106e-42,4.0764e-42,1.4744e-41,9.6062e-41,2.082e-40,4.7884e-40,1.2688e-38,1.4943e-38,3.1016e-38,3.8282e-38,4.088e-38,7.2812e-38,1.9366e-37,4.5958e-37,5.987e-37,3.3653e-35,3.5072e-35,7.8195e-35,2.9549e-34,3.4381e-33,5.3718e-32,1.1705e-30,5.197e-28,9.3983e-28,1.3487e-27,7.4275e-26,1.9121e-25,4.6536e-25,1.8739e-23,2.8451e-21,1.4529e-19,9.9564e-19,1.7011e-18,2.3651e-18,5.8056e-18,1.3028e-17,3.3791e-17,3.6074e-17,1.024e-16,1.0874e-16,1.4275e-16,2.8433e-16,4.435e-16,1.2645e-15,8.331e-15,2.2938e-14,1.3343e-13,1.9956e-13,9.1096e-13,1.0051e-12,1.2503e-12,2.7116e-12,4.0998e-12,2.7692e-11,7.7064e-11,8.4376e-11,2.5724e-10,2.3706e-09,2.3744e-09,8.473e-09,6.0434e-08,2.6775e-07,6.1285e-07,6.7121e-07,2.1131e-06,2.1915e-06,2.8985e-06,3.3116e-06,4.0978e-06,8.7649e-06,1.3976e-05,1.688e-05,1.8635e-05,2.0283e-05,2.8878e-05,5.0464e-05,5.2366e-05,7.2367e-05,8.0002e-05,8.9912e-05,0.00043976,0.0005611,0.0060628,0.010219,0.010364,0.011452,0.034253,0.064926,0.1026,0.14088,0.15121,0.2899,0.31578,0.54394,0.57571,0.74153,0.87417,1,0.99335,0.98708 1,7.0672e-43,8.2164e-43,3.0042e-42,1.9886e-41,4.3384e-41,1.0049e-40,2.7395e-39,3.2311e-39,6.7494e-39,8.3462e-39,8.9177e-39,1.5965e-38,4.2831e-38,1.0243e-37,1.3375e-37,7.7976e-36,8.1295e-36,1.8259e-35,6.9852e-35,8.3166e-34,1.3339e-32,2.9952e-31,1.414e-28,2.5728e-28,3.706e-28,2.1291e-26,5.5375e-26,1.3607e-25,5.7089e-24,9.1866e-22,4.9205e-20,3.4544e-19,5.9424e-19,8.2968e-19,2.0603e-18,4.6726e-18,1.2272e-17,1.3113e-17,3.7745e-17,4.0114e-17,5.2855e-17,1.0627e-16,1.6677e-16,4.8245e-16,3.2643e-15,9.1206e-15,5.4453e-14,8.1934e-14,3.8282e-13,4.2301e-13,5.2801e-13,1.1592e-12,1.7641e-12,1.2291e-11,3.4797e-11,3.8158e-11,1.1858e-10,1.137e-09,1.1388e-09,4.1614e-09,3.0839e-08,1.4087e-07,3.2816e-07,3.6012e-07,1.1628e-06,1.207e-06,1.6065e-06,1.8412e-06,2.2895e-06,4.9856e-06,8.0401e-06,9.7556e-06,1.0796e-05,1.1776e-05,1.6915e-05,2.9984e-05,3.1144e-05,4.3407e-05,4.8114e-05,5.4242e-05,0.00027736,0.00035646,0.0041634,0.0071547,0.0072601,0.0080533,0.025204,0.049225,0.079645,0.11133,0.11999,0.2401,0.26321,0.47564,0.5065,0.67364,0.81785,0.99335,1,0.99895 1,3.7324e-43,4.3415e-43,1.5942e-42,1.0619e-41,2.3228e-41,5.3957e-41,1.4875e-39,1.7554e-39,3.6762e-39,4.5492e-39,4.8619e-39,8.7214e-39,2.3479e-38,5.632e-38,7.3611e-38,4.354e-36,4.5399e-36,1.0227e-35,3.9315e-35,4.7236e-34,7.6555e-33,1.7395e-31,8.4139e-29,1.5346e-28,2.2139e-28,1.2934e-26,3.3774e-26,8.3314e-26,3.5526e-24,5.8499e-22,3.1931e-20,2.2632e-19,3.9038e-19,5.4596e-19,1.362e-18,3.1018e-18,8.1873e-18,8.751e-18,2.5329e-17,2.6928e-17,3.5532e-17,7.1704e-17,1.128e-16,3.282e-16,2.2442e-15,6.3069e-15,3.8044e-14,5.7382e-14,2.7058e-13,2.9917e-13,3.7394e-13,8.2488e-13,1.2586e-12,8.8781e-12,2.5305e-11,2.7766e-11,8.6945e-11,8.468e-10,8.482e-10,3.1286e-09,2.354e-08,1.0883e-07,2.5531e-07,2.8039e-07,9.1454e-07,9.4959e-07,1.2671e-06,1.4539e-06,1.8115e-06,3.9727e-06,6.4353e-06,7.8228e-06,8.6656e-06,9.4598e-06,1.3636e-05,2.4308e-05,2.5259e-05,3.5322e-05,3.9194e-05,4.4241e-05,0.00023024,0.00029675,0.0035745,0.00619,0.0062825,0.0069794,0.022239,0.043952,0.071781,0.10105,0.10909,0.22202,0.244,0.44937,0.47968,0.64612,0.79364,0.98708,0.99895,1 ================================================ FILE: bayesian_ml/3/X_set2.csv ================================================ 1,1,0.99977,0.99944,0.99721,0.99195,0.99179,0.98993,0.98053,0.95135,0.94458,0.94179,0.94169,0.93015,0.90749,0.90432,0.88707,0.82734,0.76156,0.75238,0.70851,0.68277,0.66189,0.65432,0.62629,0.62458,0.59772,0.55791,0.52321,0.50869,0.44448,0.44194,0.39225,0.36515,0.35821,0.32919,0.31324,0.31297,0.30473,0.19798,0.12023,0.10577,0.10534,0.1053,0.091154,0.071267,0.068661,0.066943,0.04397,0.04182,0.040702,0.025647,0.017268,0.013391,0.011258,0.0090864,0.0039491,0.0028982,0.0027909,0.0018025,0.0010823,0.00085359,0.00085282,0.00060397,0.00049566,0.000432,0.00036189,0.00031115,0.00025142,0.00022944,0.00017535,0.00010826,8.7012e-05,6.1149e-05,2.9568e-05,2.7442e-05,2.0546e-05,1.7286e-05,1.0306e-05,4.0707e-06,3.1421e-06,1.5115e-06,8.2868e-07,5.9353e-07,3.2702e-07,3.0166e-07,2.7983e-07,1.9073e-07,1.5339e-07,1.5268e-07,1.2734e-07,1.1091e-07,8.7548e-08,8.583e-08,8.5086e-08,8.1038e-08,7.086e-08,5.6641e-08,5.0373e-08,2.9198e-08,2.9168e-08,1.4946e-08,1.4813e-08,1.2816e-08,1.1666e-08,1.0979e-08,9.0034e-09,7.3174e-09,3.7642e-09,3.4198e-09,2.5067e-09,6.3098e-10,4.1057e-10,3.5498e-10,1.4302e-10,1.281e-10,1.1332e-10,4.4043e-11,3.8446e-11,2.5608e-11,2.1695e-11,2.0488e-11,1.8344e-11,8.8923e-12,4.1702e-12,3.8552e-12,3.1436e-12,2.1843e-12,7.1521e-13,6.8059e-13,6.2866e-13,8.9625e-14,2.3542e-14,1.3306e-14,1.0432e-14,5.2974e-15,3.8006e-15,3.2359e-15,1.7633e-15,5.4882e-16,2.9012e-16,2.5436e-16,2.2234e-16,2.1784e-16,1.616e-16,1.21e-17,7.6057e-18,6.8644e-18,5.3679e-18,2.686e-18,1.9071e-18,6.6476e-19,5.8076e-19,4.8232e-19,4.4136e-19,3.3309e-19,2.1539e-19,1.7592e-19,1.4952e-19,8.5859e-20,7.0127e-20,3.7685e-20,3.2009e-20,1.925e-20,1.6954e-20,1.4029e-20,1.3899e-20,1.2077e-20,8.0954e-21,3.4955e-21,3.4373e-21,1.6991e-21,1.1654e-21,8.3864e-22,1.3773e-22,7.7149e-23,7.2844e-23,1.7001e-23,1.2112e-23,1.1673e-23,5.4979e-24,5.3949e-24,2.8697e-24,1.2224e-24,3.7829e-25,3.1211e-25,1.97e-25,7.8439e-26,5.2596e-26,3.672e-26,2.495e-26,7.9597e-27,4.3884e-27,4.3623e-27,3.2047e-27,2.0102e-27,1.8665e-27,9.7683e-28,7.5879e-28,6.051e-28,3.2694e-28,2.7726e-28,2.0022e-28,1.4034e-28,7.1537e-29,3.9314e-29,4.8127e-30,3.795e-30,2.9157e-30,1.8441e-30,1.0018e-30,9.3053e-31,3.7552e-31,3.5665e-31,2.7336e-31,1.9744e-31,1.2526e-31,4.8133e-34,3.1855e-34,2.6257e-34,1.8439e-34,1.6116e-34,1.0711e-34,2.4045e-35,1.9631e-35,1.3739e-35,9.1386e-36,6.9819e-36,1.9786e-36,1.7809e-36,5.6604e-37,1.4909e-37,4.7094e-38,4.2658e-38,1.1811e-38,3.7812e-39,3.5321e-39,2.1451e-39,7.6206e-40,7.4463e-40,7.0726e-40,1.9836e-40,1.7574e-40,8.405e-41,5.8415e-41,2.5773e-41,2.0618e-41,7.0166e-42,5.7797e-42,1.8972e-42,1.4072e-42 1,0.99977,1,0.99993,0.99859,0.99444,0.99431,0.99274,0.9845,0.95763,0.95126,0.94863,0.94853,0.93759,0.91594,0.91289,0.89627,0.8382,0.7736,0.76454,0.72114,0.69559,0.67482,0.66729,0.63934,0.63764,0.6108,0.57093,0.53609,0.52148,0.45674,0.45418,0.4039,0.37641,0.36936,0.33986,0.32363,0.32335,0.31496,0.20577,0.12566,0.11069,0.11025,0.1102,0.095537,0.074871,0.072158,0.070369,0.046394,0.044144,0.042975,0.027182,0.018358,0.014263,0.012007,0.0097053,0.0042419,0.0031192,0.0030044,0.0019457,0.0011718,0.00092545,0.00092462,0.0006561,0.00053904,0.00047015,0.00039424,0.00033924,0.00027443,0.00025056,0.00019176,0.00011868,9.5494e-05,6.7226e-05,3.2621e-05,3.0285e-05,2.2706e-05,1.9119e-05,1.1425e-05,4.5313e-06,3.5016e-06,1.6896e-06,9.2863e-07,6.6602e-07,3.6783e-07,3.3942e-07,3.1495e-07,2.1499e-07,1.7305e-07,1.7224e-07,1.4376e-07,1.2528e-07,9.8978e-08,9.7042e-08,9.6204e-08,9.1645e-08,8.0175e-08,6.414e-08,5.7068e-08,3.3145e-08,3.3111e-08,1.7007e-08,1.6857e-08,1.4592e-08,1.3288e-08,1.2507e-08,1.0264e-08,8.3479e-09,4.3043e-09,3.9118e-09,2.8704e-09,7.259e-10,4.7299e-10,4.0915e-10,1.6533e-10,1.4813e-10,1.3109e-10,5.1103e-11,4.4628e-11,2.9763e-11,2.5228e-11,2.3829e-11,2.1343e-11,1.0369e-11,4.8736e-12,4.5065e-12,3.6769e-12,2.5577e-12,8.4018e-13,7.9962e-13,7.3878e-13,1.0591e-13,2.7921e-14,1.5805e-14,1.24e-14,6.3081e-15,4.5297e-15,3.8582e-15,2.1058e-15,6.5741e-16,3.4809e-16,3.0529e-16,2.6695e-16,2.6156e-16,1.9417e-16,1.4634e-17,9.2086e-18,8.313e-18,6.5046e-18,3.2603e-18,2.3167e-18,8.0956e-19,7.0748e-19,5.8782e-19,5.3801e-19,4.063e-19,2.63e-19,2.149e-19,1.8272e-19,1.0506e-19,8.585e-20,4.6199e-20,3.9256e-20,2.3635e-20,2.0822e-20,1.7238e-20,1.7079e-20,1.4845e-20,9.959e-21,4.3083e-21,4.2367e-21,2.0976e-21,1.4399e-21,1.0369e-21,1.7097e-22,9.5881e-23,9.0541e-23,2.1197e-23,1.5112e-23,1.4565e-23,6.871e-24,6.7425e-24,3.5912e-24,1.5324e-24,4.7538e-25,3.9237e-25,2.4789e-25,9.8884e-26,6.6359e-26,4.6361e-26,3.1525e-26,1.008e-26,5.5639e-27,5.5308e-27,4.0657e-27,2.5526e-27,2.3704e-27,1.2421e-27,9.6534e-28,7.7015e-28,4.166e-28,3.5342e-28,2.5537e-28,1.7912e-28,9.1421e-29,5.0298e-29,6.1817e-30,4.8766e-30,3.7486e-30,2.3728e-30,1.2905e-30,1.1988e-30,4.8461e-31,4.603e-31,3.5297e-31,2.5509e-31,1.6197e-31,6.2855e-34,4.1629e-34,3.4324e-34,2.4119e-34,2.1086e-34,1.4023e-34,3.1563e-35,2.5777e-35,1.8051e-35,1.2016e-35,9.184e-36,2.6082e-36,2.3481e-36,7.4772e-37,1.9739e-37,6.2466e-38,5.6592e-38,1.5701e-38,5.0361e-39,4.705e-39,2.8597e-39,1.0176e-39,9.9438e-40,9.4454e-40,2.6546e-40,2.3523e-40,1.1263e-40,7.8325e-41,3.4602e-41,2.769e-41,9.4395e-42,7.7778e-42,2.5576e-42,1.8978e-42 1,0.99944,0.99993,1,0.99915,0.99562,0.99551,0.9941,0.98652,0.96094,0.9548,0.95225,0.95216,0.94156,0.92048,0.9175,0.90124,0.84412,0.7802,0.77122,0.72809,0.70267,0.68197,0.67446,0.64657,0.64487,0.61805,0.57816,0.54326,0.52861,0.4636,0.46103,0.41043,0.38273,0.37563,0.34587,0.32947,0.3292,0.32071,0.21018,0.12875,0.11349,0.11305,0.113,0.098039,0.076933,0.074159,0.07233,0.047787,0.04548,0.044281,0.028067,0.018988,0.014768,0.012441,0.010065,0.0044126,0.0032483,0.0031292,0.0020295,0.0012244,0.0009677,0.00096684,0.0006868,0.00056461,0.00049266,0.00041333,0.00035583,0.00028803,0.00026305,0.00020147,0.00012486,0.00010053,7.0841e-05,3.4441e-05,3.1982e-05,2.3996e-05,2.0214e-05,1.2096e-05,4.8081e-06,3.7177e-06,1.797e-06,9.89e-07,7.0985e-07,3.9256e-07,3.623e-07,3.3623e-07,2.2971e-07,1.8498e-07,1.8412e-07,1.5373e-07,1.3401e-07,1.0593e-07,1.0386e-07,1.0297e-07,9.8097e-08,8.5843e-08,6.8707e-08,6.1146e-08,3.5553e-08,3.5517e-08,1.8267e-08,1.8107e-08,1.5679e-08,1.4279e-08,1.3442e-08,1.1036e-08,8.9792e-09,4.6358e-09,4.2138e-09,3.0939e-09,7.8442e-10,5.1153e-10,4.426e-10,1.7914e-10,1.6054e-10,1.421e-10,5.5486e-11,4.8467e-11,3.2346e-11,2.7426e-11,2.5906e-11,2.3208e-11,1.1289e-11,5.3127e-12,4.9132e-12,4.0101e-12,2.7911e-12,9.1851e-13,8.7424e-13,8.0783e-13,1.1616e-13,3.0687e-14,1.7385e-14,1.3644e-14,6.9483e-15,4.9919e-15,4.2529e-15,2.3233e-15,7.2653e-16,3.8503e-16,3.3775e-16,2.9539e-16,2.8944e-16,2.1496e-16,1.6258e-17,1.0237e-17,9.2429e-18,7.2345e-18,3.6295e-18,2.5802e-18,9.0291e-19,7.892e-19,6.5587e-19,6.0037e-19,4.5356e-19,2.9376e-19,2.4009e-19,2.0418e-19,1.1748e-19,9.6027e-20,5.1717e-20,4.3953e-20,2.6481e-20,2.3332e-20,1.9321e-20,1.9142e-20,1.6641e-20,1.117e-20,4.8372e-21,4.7569e-21,2.3571e-21,1.6189e-21,1.1662e-21,1.9271e-22,1.0815e-22,1.0213e-22,2.3951e-23,1.7083e-23,1.6465e-23,7.774e-24,7.6289e-24,4.0663e-24,1.7369e-24,5.395e-25,4.4539e-25,2.8153e-25,1.1242e-25,7.5477e-26,5.2752e-26,3.5886e-26,1.1489e-26,6.3457e-27,6.308e-27,4.6386e-27,2.9138e-27,2.706e-27,1.419e-27,1.1031e-27,8.8024e-28,4.7647e-28,4.0427e-28,2.9222e-28,2.0504e-28,1.0473e-28,5.7654e-29,7.1012e-30,5.6033e-30,4.3084e-30,2.7285e-30,1.4848e-30,1.3795e-30,5.5814e-31,5.3017e-31,4.0666e-31,2.9399e-31,1.8675e-31,7.2871e-34,4.8282e-34,3.9817e-34,2.7988e-34,2.4471e-34,1.6281e-34,3.6698e-35,2.9976e-35,2.0999e-35,1.3983e-35,1.069e-35,3.0396e-36,2.7367e-36,8.7241e-37,2.3059e-37,7.305e-38,6.6187e-38,1.8385e-38,5.9029e-39,5.5151e-39,3.3536e-39,1.1945e-39,1.1672e-39,1.1088e-39,3.1196e-40,2.7647e-40,1.3247e-40,9.2146e-41,4.0737e-41,3.2607e-41,1.1126e-41,9.1688e-42,3.0179e-42,2.24e-42 1,0.99721,0.99859,0.99915,1,0.99863,0.99856,0.99772,0.9924,0.97136,0.96603,0.9638,0.96372,0.95432,0.93527,0.93255,0.91757,0.8639,0.80252,0.79381,0.75177,0.72682,0.70643,0.699,0.67139,0.6697,0.64302,0.60316,0.5681,0.55334,0.48751,0.48489,0.43328,0.4049,0.3976,0.36697,0.35005,0.34977,0.341,0.22586,0.13984,0.12358,0.12311,0.12306,0.10706,0.084393,0.081405,0.079433,0.052858,0.050348,0.049042,0.031312,0.021308,0.016633,0.014045,0.011396,0.0050503,0.0037318,0.0035966,0.0023448,0.0014228,0.0011275,0.0011265,0.00080319,0.00066168,0.0005782,0.00048599,0.00041903,0.00033993,0.00031073,0.00023863,0.00014859,0.00011989,8.4763e-05,4.1486e-05,3.855e-05,2.8999e-05,2.4465e-05,1.4706e-05,5.8916e-06,4.5652e-06,2.2198e-06,1.2275e-06,8.8329e-07,4.907e-07,4.5315e-07,4.2079e-07,2.8829e-07,2.3253e-07,2.3146e-07,1.9352e-07,1.6886e-07,1.3371e-07,1.3112e-07,1.2999e-07,1.2389e-07,1.0852e-07,8.6995e-08,7.7487e-08,4.5228e-08,4.5182e-08,2.3347e-08,2.3143e-08,2.0059e-08,1.828e-08,1.7216e-08,1.4153e-08,1.1532e-08,5.9801e-09,5.4391e-09,4.0018e-09,1.0237e-09,6.6936e-10,5.7969e-10,2.3594e-10,2.1159e-10,1.8743e-10,7.3604e-11,6.4345e-11,4.3047e-11,3.6534e-11,3.4522e-11,3.0946e-11,1.5116e-11,7.145e-12,6.6107e-12,5.4018e-12,3.7674e-12,1.2476e-12,1.1878e-12,1.098e-12,1.5956e-13,4.2449e-14,2.4121e-14,1.8954e-14,9.6857e-15,6.9703e-15,5.9432e-15,3.2565e-15,1.0243e-15,5.4454e-16,4.7797e-16,4.183e-16,4.0991e-16,3.0487e-16,2.3345e-17,1.4731e-17,1.3307e-17,1.0427e-17,5.2479e-18,3.7366e-18,1.3138e-18,1.1491e-18,9.5574e-19,8.7521e-19,6.6203e-19,4.2961e-19,3.5144e-19,2.991e-19,1.7252e-19,1.4113e-19,7.6217e-20,6.4822e-20,3.9139e-20,3.4505e-20,2.8596e-20,2.8333e-20,2.4646e-20,1.6571e-20,7.2021e-21,7.0831e-21,3.5203e-21,2.4215e-21,1.7469e-21,2.9082e-22,1.636e-22,1.5454e-22,3.6455e-23,2.6036e-23,2.5098e-23,1.1886e-23,1.1665e-23,6.2332e-24,2.6714e-24,8.3361e-25,6.8871e-25,4.3611e-25,1.7477e-25,1.1751e-25,8.2245e-26,5.6032e-26,1.8016e-26,9.9731e-27,9.9141e-27,7.2987e-27,4.5927e-27,4.2664e-27,2.2426e-27,1.745e-27,1.3936e-27,7.5607e-28,6.419e-28,4.6453e-28,3.2637e-28,1.6711e-28,9.2195e-29,1.1441e-29,9.0354e-30,6.9539e-30,4.4109e-30,2.4056e-30,2.2355e-30,9.0736e-31,8.6204e-31,6.6183e-31,4.79e-31,3.0476e-31,1.2118e-33,8.0401e-34,6.6348e-34,4.6692e-34,4.0843e-34,2.721e-34,6.1632e-35,5.0377e-35,3.5331e-35,2.3558e-35,1.8027e-35,5.1464e-36,4.6352e-36,1.483e-36,3.9364e-37,1.2516e-37,1.1344e-37,3.1637e-38,1.0194e-38,9.5261e-39,5.8015e-39,2.073e-39,2.0258e-39,1.9247e-39,5.4364e-40,4.8196e-40,2.3144e-40,1.6117e-40,7.1431e-41,5.7212e-41,1.9585e-41,1.615e-41,5.3333e-42,3.962e-42 1,0.99195,0.99444,0.99562,0.99863,1,1,0.99989,0.99747,0.98236,0.97809,0.97627,0.9762,0.96841,0.95206,0.94969,0.93645,0.88752,0.82977,0.82146,0.78106,0.75685,0.73696,0.7297,0.70257,0.70091,0.67456,0.63492,0.59983,0.585,0.5184,0.51574,0.46303,0.43387,0.42635,0.3947,0.37715,0.37686,0.36774,0.24689,0.15495,0.13737,0.13686,0.1368,0.11944,0.094693,0.091417,0.089254,0.059938,0.057152,0.055701,0.035893,0.024609,0.019298,0.016346,0.013312,0.0059805,0.0044404,0.0042821,0.00281,0.0017177,0.0013657,0.0013645,0.00097757,0.00080749,0.00070691,0.00059557,0.00051453,0.00041856,0.00038306,0.00029518,0.00018491,0.00014959,0.00010621,5.2426e-05,4.8757e-05,3.6798e-05,3.1105e-05,1.8804e-05,7.609e-06,5.912e-06,2.8963e-06,1.6112e-06,1.1633e-06,6.4997e-07,6.007e-07,5.582e-07,3.8383e-07,3.1023e-07,3.0881e-07,2.5863e-07,2.2596e-07,1.7931e-07,1.7587e-07,1.7438e-07,1.6626e-07,1.4581e-07,1.1713e-07,1.0444e-07,6.1259e-08,6.1198e-08,3.1809e-08,3.1534e-08,2.7367e-08,2.496e-08,2.352e-08,1.9368e-08,1.5809e-08,8.2446e-09,7.5048e-09,5.5359e-09,1.4322e-09,9.3971e-10,8.1476e-10,3.34e-10,2.9978e-10,2.6581e-10,1.0514e-10,9.201e-11,6.1743e-11,5.2467e-11,4.9599e-11,4.4499e-11,2.1853e-11,1.0386e-11,9.6151e-12,7.8684e-12,5.5021e-12,1.8364e-12,1.749e-12,1.6177e-12,2.3825e-13,6.3955e-14,3.6477e-14,2.871e-14,1.4736e-14,1.0627e-14,9.0707e-15,4.9895e-15,1.581e-15,8.4381e-16,7.4127e-16,6.4927e-16,6.3632e-16,4.7414e-16,3.6879e-17,2.3335e-17,2.1092e-17,1.6551e-17,8.364e-18,5.9672e-18,2.1109e-18,1.8476e-18,1.5384e-18,1.4095e-18,1.0679e-18,6.947e-19,5.6894e-19,4.8465e-19,2.8041e-19,2.2966e-19,1.2445e-19,1.0594e-19,6.4147e-20,5.6591e-20,4.6948e-20,4.6519e-20,4.0497e-20,2.7289e-20,1.1914e-20,1.1718e-20,5.8461e-21,4.0295e-21,2.912e-21,4.8943e-22,2.7615e-22,2.6093e-22,6.2017e-23,4.437e-23,4.2779e-23,2.0337e-23,1.9961e-23,1.07e-23,4.6055e-24,1.4455e-24,1.1954e-24,7.5868e-25,3.054e-25,2.0575e-25,1.4425e-25,9.8462e-26,3.1833e-26,1.7672e-26,1.7568e-26,1.2952e-26,8.1682e-27,7.5905e-27,4.002e-27,3.1177e-27,2.4926e-27,1.3562e-27,1.1523e-27,8.3514e-28,5.8773e-28,3.0186e-28,1.67e-28,2.0923e-29,1.6541e-29,1.2746e-29,8.1013e-30,4.4303e-30,4.1184e-30,1.6783e-30,1.5949e-30,1.2259e-30,8.8853e-31,5.6644e-31,2.307e-33,1.5333e-33,1.2663e-33,8.9251e-34,7.8115e-34,5.2131e-34,1.1882e-34,9.72e-35,6.827e-35,4.5598e-35,3.493e-35,1.0024e-35,9.0321e-36,2.9033e-36,7.7481e-37,2.475e-37,2.244e-37,6.2904e-38,2.036e-38,1.9032e-38,1.1613e-38,4.1664e-39,4.072e-39,3.8695e-39,1.0984e-39,9.7422e-40,4.6917e-40,3.2718e-40,1.4546e-40,1.1661e-40,4.0082e-41,3.3075e-41,1.0969e-41,8.1579e-42 1,0.99179,0.99431,0.99551,0.99856,1,1,0.9999,0.99756,0.98259,0.97834,0.97653,0.97646,0.96871,0.95243,0.95006,0.93686,0.88805,0.83039,0.82209,0.78173,0.75754,0.73767,0.73041,0.7033,0.70163,0.67529,0.63566,0.60057,0.58574,0.51913,0.51647,0.46373,0.43455,0.42703,0.39536,0.37779,0.3775,0.36838,0.2474,0.15531,0.13771,0.13719,0.13714,0.11974,0.094944,0.091662,0.089494,0.060112,0.057319,0.055865,0.036007,0.024691,0.019364,0.016403,0.01336,0.0060039,0.0044583,0.0042994,0.0028218,0.0017252,0.0013718,0.0013706,0.00098203,0.00081122,0.00071021,0.00059838,0.00051698,0.00042058,0.00038492,0.00029664,0.00018585,0.00015036,0.00010677,5.2711e-05,4.9023e-05,3.7002e-05,3.1279e-05,1.8912e-05,7.6543e-06,5.9476e-06,2.9142e-06,1.6214e-06,1.1707e-06,6.5422e-07,6.0464e-07,5.6187e-07,3.8639e-07,3.1231e-07,3.1089e-07,2.6037e-07,2.275e-07,1.8054e-07,1.7707e-07,1.7557e-07,1.674e-07,1.4682e-07,1.1794e-07,1.0517e-07,6.1692e-08,6.163e-08,3.2038e-08,3.1761e-08,2.7565e-08,2.5142e-08,2.3691e-08,1.9509e-08,1.5925e-08,8.3063e-09,7.5611e-09,5.5778e-09,1.4434e-09,9.4714e-10,8.2123e-10,3.3671e-10,3.0222e-10,2.6797e-10,1.0602e-10,9.2777e-11,6.2263e-11,5.291e-11,5.0018e-11,4.4876e-11,2.2041e-11,1.0477e-11,9.6991e-12,7.9374e-12,5.5507e-12,1.853e-12,1.7648e-12,1.6324e-12,2.4048e-13,6.4567e-14,3.6829e-14,2.8988e-14,1.488e-14,1.0732e-14,9.1602e-15,5.0392e-15,1.597e-15,8.5244e-16,7.4887e-16,6.5594e-16,6.4286e-16,4.7903e-16,3.7273e-17,2.3586e-17,2.1319e-17,1.673e-17,8.4551e-18,6.0325e-18,2.1343e-18,1.8681e-18,1.5555e-18,1.4252e-18,1.0798e-18,7.025e-19,5.7535e-19,4.9011e-19,2.836e-19,2.3228e-19,1.2588e-19,1.0716e-19,6.4888e-20,5.7246e-20,4.7492e-20,4.7058e-20,4.0967e-20,2.7607e-20,1.2054e-20,1.1856e-20,5.9154e-21,4.0775e-21,2.9468e-21,4.9539e-22,2.7954e-22,2.6413e-22,6.2788e-23,4.4923e-23,4.3313e-23,2.0593e-23,2.0212e-23,1.0835e-23,4.6642e-24,1.4642e-24,1.2108e-24,7.6851e-25,3.0939e-25,2.0845e-25,1.4615e-25,9.9761e-26,3.2257e-26,1.7908e-26,1.7803e-26,1.3126e-26,8.2783e-27,7.6929e-27,4.0563e-27,3.16e-27,2.5265e-27,1.3747e-27,1.1681e-27,8.4662e-28,5.9583e-28,3.0604e-28,1.6932e-28,2.1219e-29,1.6775e-29,1.2926e-29,8.2166e-30,4.4937e-30,4.1773e-30,1.7025e-30,1.6179e-30,1.2436e-30,9.0139e-31,5.7467e-31,2.3418e-33,1.5565e-33,1.2855e-33,9.0606e-34,7.9302e-34,5.2926e-34,1.2064e-34,9.8697e-35,6.9324e-35,4.6304e-35,3.5472e-35,1.0181e-35,9.1733e-36,2.9491e-36,7.8711e-37,2.5145e-37,2.2799e-37,6.3918e-38,2.069e-38,1.934e-38,1.1802e-38,4.2347e-39,4.1387e-39,3.9329e-39,1.1165e-39,9.9031e-40,4.7695e-40,3.3262e-40,1.4789e-40,1.1855e-40,4.0755e-41,3.3631e-41,1.1155e-41,8.2961e-42 1,0.98993,0.99274,0.9941,0.99772,0.99989,0.9999,1,0.99843,0.98505,0.98109,0.9794,0.97933,0.97201,0.95647,0.9542,0.94148,0.89399,0.83737,0.82919,0.78931,0.76535,0.74563,0.73842,0.71147,0.70982,0.68359,0.64406,0.609,0.59416,0.52741,0.52473,0.47174,0.44238,0.4348,0.40287,0.38515,0.38486,0.37565,0.25319,0.15952,0.14156,0.14103,0.14097,0.1232,0.097841,0.09448,0.092259,0.06212,0.05925,0.057755,0.037316,0.02564,0.020133,0.017068,0.013915,0.0062761,0.0046664,0.0045007,0.0029591,0.0018127,0.0014426,0.0014414,0.001034,0.0008548,0.00074872,0.00063122,0.00054564,0.00044422,0.00040668,0.0003137,0.00019685,0.00015937,0.00011329,5.6059e-05,5.2148e-05,3.9395e-05,3.3319e-05,2.0176e-05,8.1875e-06,6.3664e-06,3.1257e-06,1.7419e-06,1.2588e-06,7.0451e-07,6.5125e-07,6.0529e-07,4.1665e-07,3.3695e-07,3.3542e-07,2.8105e-07,2.4564e-07,1.9505e-07,1.9132e-07,1.897e-07,1.8089e-07,1.587e-07,1.2756e-07,1.1377e-07,6.6827e-08,6.6761e-08,3.476e-08,3.4459e-08,2.9916e-08,2.7293e-08,2.5721e-08,2.1191e-08,1.7306e-08,9.0401e-09,8.2308e-09,6.076e-09,1.577e-09,1.0358e-09,8.9836e-10,3.6903e-10,3.313e-10,2.9384e-10,1.1647e-10,1.0196e-10,6.8478e-11,5.8211e-11,5.5035e-11,4.9388e-11,2.4291e-11,1.1564e-11,1.0707e-11,8.7655e-12,6.1341e-12,2.052e-12,1.9545e-12,1.8081e-12,2.6732e-13,7.1944e-14,4.1078e-14,3.2346e-14,1.6623e-14,1.1996e-14,1.0242e-14,5.64e-15,1.7909e-15,9.5695e-16,8.4086e-16,7.3667e-16,7.2201e-16,5.3827e-16,4.2056e-17,2.6633e-17,2.4076e-17,1.8901e-17,9.5627e-18,6.8263e-18,2.4191e-18,2.1178e-18,1.7639e-18,1.6163e-18,1.2251e-18,7.9758e-19,6.5342e-19,5.5675e-19,3.2242e-19,2.6415e-19,1.4329e-19,1.2201e-19,7.3934e-20,6.5238e-20,5.4138e-20,5.3644e-20,4.671e-20,3.1495e-20,1.3769e-20,1.3543e-20,6.7636e-21,4.6647e-21,3.3727e-21,5.6842e-22,3.21e-22,3.0334e-22,7.2251e-23,5.1718e-23,4.9866e-23,2.3733e-23,2.3294e-23,1.2498e-23,5.3862e-24,1.6934e-24,1.4008e-24,8.896e-25,3.5857e-25,2.4171e-25,1.6955e-25,1.1579e-25,3.7494e-26,2.0831e-26,2.0709e-26,1.5275e-26,9.6389e-27,8.9582e-27,4.7272e-27,3.6839e-27,2.9462e-27,1.6043e-27,1.3634e-27,9.8859e-28,6.9605e-28,3.5781e-28,1.9811e-28,2.4889e-29,1.9683e-29,1.5172e-29,9.649e-30,5.2809e-30,4.9095e-30,2.0031e-30,1.9036e-30,1.4637e-30,1.0613e-30,6.7699e-31,2.7764e-33,1.8462e-33,1.5251e-33,1.0753e-33,9.4132e-34,6.2852e-34,1.4351e-34,1.1743e-34,8.2513e-35,5.5137e-35,4.2252e-35,1.2143e-35,1.0943e-35,3.5223e-36,9.4145e-37,3.0113e-37,2.7306e-37,7.6657e-38,2.4843e-38,2.3224e-38,1.418e-38,5.0932e-39,4.9779e-39,4.7306e-39,1.3447e-39,1.1929e-39,5.7494e-40,4.0111e-40,1.7849e-40,1.4312e-40,4.9253e-41,4.0652e-41,1.3498e-41,1.0042e-41 1,0.98053,0.9845,0.98652,0.9924,0.99747,0.99756,0.99843,1,0.99312,0.99033,0.9891,0.98906,0.98353,0.97107,0.96919,0.95847,0.91658,0.86443,0.85677,0.81903,0.79611,0.77711,0.77014,0.74396,0.74235,0.71669,0.67774,0.64293,0.62812,0.56102,0.55832,0.50448,0.47444,0.46666,0.4338,0.41548,0.41518,0.40564,0.27738,0.17731,0.15789,0.15732,0.15726,0.13795,0.11023,0.10654,0.1041,0.070777,0.067583,0.065918,0.043013,0.029791,0.023508,0.019995,0.016365,0.00749,0.0055976,0.0054022,0.0035768,0.0022084,0.0017638,0.0017623,0.0012707,0.0010535,0.00092456,0.00078141,0.0006769,0.00055271,0.00050664,0.00039223,0.00024771,0.00020112,0.00014362,7.1713e-05,6.6772e-05,5.0619e-05,4.2902e-05,2.6138e-05,1.072e-05,8.3601e-06,4.1376e-06,2.3206e-06,1.6829e-06,9.4773e-07,8.7681e-07,8.1557e-07,5.6358e-07,4.5677e-07,4.5472e-07,3.8169e-07,3.3407e-07,2.6588e-07,2.6084e-07,2.5866e-07,2.4677e-07,2.1678e-07,1.7462e-07,1.5593e-07,9.2067e-08,9.1976e-08,4.8191e-08,4.7779e-08,4.1536e-08,3.7926e-08,3.5763e-08,2.9518e-08,2.4152e-08,1.2693e-08,1.1566e-08,8.5619e-09,2.2493e-09,1.4827e-09,1.2876e-09,5.3298e-10,4.7893e-10,4.252e-10,1.6985e-10,1.4885e-10,1.003e-10,8.5375e-11,8.0754e-11,7.2532e-11,3.5879e-11,1.7181e-11,1.5918e-11,1.3052e-11,9.1594e-12,3.0901e-12,2.9444e-12,2.7254e-12,4.0875e-13,1.1106e-13,6.3669e-14,5.022e-14,2.593e-14,1.8755e-14,1.6031e-14,8.8645e-15,2.837e-15,1.5224e-15,1.3388e-15,1.174e-15,1.1508e-15,8.5962e-16,6.8297e-17,4.3377e-17,3.9239e-17,3.0853e-17,1.5677e-17,1.1215e-17,4.0001e-18,3.5049e-18,2.9225e-18,2.6794e-18,2.0344e-18,1.3279e-18,1.0892e-18,9.2901e-19,5.3979e-19,4.4277e-19,2.4107e-19,2.0546e-19,1.2488e-19,1.1027e-19,9.1613e-20,9.0782e-20,7.9112e-20,5.3468e-20,2.3489e-20,2.3105e-20,1.1586e-20,8.008e-21,5.8009e-21,9.8765e-22,5.5956e-22,5.2893e-22,1.27e-22,9.1076e-23,8.7833e-23,4.1973e-23,4.1202e-23,2.2182e-23,9.6032e-24,3.0381e-24,2.5156e-24,1.6015e-24,6.4863e-25,4.3814e-25,3.0791e-25,2.107e-25,6.8629e-26,3.8246e-26,3.8022e-26,2.8088e-26,1.7767e-26,1.6518e-26,8.7452e-27,6.8237e-27,5.4635e-27,2.9842e-27,2.5381e-27,1.8434e-27,1.3002e-27,6.7059e-28,3.7238e-28,4.7264e-29,3.742e-29,2.888e-29,1.8408e-29,1.0104e-29,9.3967e-30,3.8504e-30,3.66e-30,2.8178e-30,2.0463e-30,1.3081e-30,5.5038e-33,3.6666e-33,3.0316e-33,2.1409e-33,1.8753e-33,1.2544e-33,2.8833e-34,2.3614e-34,1.6619e-34,1.1125e-34,8.5355e-35,2.4667e-35,2.2239e-35,7.1941e-36,1.934e-36,6.2165e-37,5.6395e-37,1.5919e-37,5.1839e-38,4.8474e-38,2.9658e-38,1.0699e-38,1.0458e-38,9.9405e-39,2.8407e-39,2.5212e-39,1.2189e-39,8.5161e-40,3.8023e-40,3.0516e-40,1.0548e-40,8.713e-41,2.9062e-41,2.1647e-41 1,0.95135,0.95763,0.96094,0.97136,0.98236,0.98259,0.98505,0.99312,1,0.99976,0.99953,0.99953,0.99791,0.99224,0.99124,0.98502,0.95604,0.91471,0.90833,0.8761,0.85594,0.83894,0.83265,0.80874,0.80725,0.78342,0.7466,0.71308,0.69867,0.63221,0.62949,0.57485,0.54389,0.53582,0.50149,0.48218,0.48185,0.47175,0.33252,0.21912,0.19653,0.19586,0.19579,0.17311,0.14012,0.13568,0.13274,0.092123,0.088172,0.086108,0.057365,0.040401,0.032211,0.027586,0.022767,0.010744,0.0081168,0.0078436,0.0052701,0.0033082,0.0026621,0.0026599,0.0019385,0.0016167,0.0014247,0.0012105,0.0010533,0.00086537,0.00079532,0.00062045,0.00039714,0.00032438,0.00023385,0.00011901,0.00011102,8.479e-05,7.2176e-05,4.4541e-05,1.8681e-05,1.4657e-05,7.3773e-06,4.1939e-06,3.0639e-06,1.7479e-06,1.6199e-06,1.5092e-06,1.0514e-06,8.5608e-07,8.5231e-07,7.1816e-07,6.3036e-07,5.0416e-07,4.9481e-07,4.9075e-07,4.6867e-07,4.1285e-07,3.3409e-07,2.9903e-07,1.7851e-07,1.7834e-07,9.4682e-08,9.3888e-08,8.1852e-08,7.4875e-08,7.0687e-08,5.8568e-08,4.8114e-08,2.5607e-08,2.3377e-08,1.7406e-08,4.6899e-09,3.1156e-09,2.7126e-09,1.141e-09,1.0272e-09,9.1395e-10,3.7107e-10,3.2593e-10,2.2114e-10,1.8876e-10,1.7872e-10,1.6082e-10,8.0512e-11,3.9035e-11,3.621e-11,2.979e-11,2.1028e-11,7.221e-12,6.8858e-12,6.3818e-12,9.8628e-13,2.7341e-13,1.5807e-13,1.2512e-13,6.5247e-14,4.7419e-14,4.0625e-14,2.2661e-14,7.373e-15,3.9918e-15,3.517e-15,3.0897e-15,3.0295e-15,2.2723e-15,1.8699e-16,1.195e-16,1.0824e-16,8.5385e-17,4.3782e-17,3.146e-17,1.1375e-17,9.9843e-18,8.3451e-18,7.6597e-18,5.8368e-18,3.831e-18,3.1505e-18,2.6925e-18,1.5754e-18,1.2956e-18,7.1085e-19,6.0708e-19,3.7132e-19,3.284e-19,2.7347e-19,2.7102e-19,2.3658e-19,1.6068e-19,7.1312e-20,7.0163e-20,3.5484e-20,2.4636e-20,1.7916e-20,3.1163e-21,1.7775e-21,1.6814e-21,4.1055e-22,2.9557e-22,2.8516e-22,1.3745e-22,1.3495e-22,7.3175e-23,3.1985e-23,1.0252e-23,8.5069e-24,5.4433e-24,2.227e-24,1.5109e-24,1.066e-24,7.3249e-25,2.4154e-25,1.3546e-25,1.3468e-25,9.9822e-26,6.3454e-26,5.9041e-26,3.1473e-26,2.4623e-26,1.9762e-26,1.0864e-26,9.2558e-27,6.7451e-27,4.775e-27,2.4801e-27,1.3857e-27,1.7968e-28,1.426e-28,1.1035e-28,7.0661e-29,3.9023e-29,3.6319e-29,1.5017e-29,1.4282e-29,1.1024e-29,8.0319e-30,5.1574e-30,2.2899e-32,1.5315e-32,1.2686e-32,8.9887e-33,7.8832e-33,5.2935e-33,1.2339e-33,1.0124e-33,7.149e-34,4.8039e-34,3.6948e-34,1.0802e-34,9.7483e-35,3.1867e-35,8.6707e-36,2.8162e-36,2.557e-36,7.301e-37,2.4017e-37,2.2471e-37,1.3809e-37,5.0272e-38,4.9148e-38,4.6738e-38,1.3505e-38,1.1999e-38,5.838e-39,4.0919e-39,1.8399e-39,1.4795e-39,5.1613e-40,4.2704e-40,1.4379e-40,1.0738e-40 1,0.94458,0.95126,0.9548,0.96603,0.97809,0.97834,0.98109,0.99033,0.99976,1,0.99996,0.99996,0.99908,0.99472,0.99388,0.98853,0.96209,0.92296,0.91686,0.88579,0.86622,0.84967,0.84353,0.82014,0.81868,0.79528,0.75899,0.72583,0.71154,0.64542,0.64271,0.58808,0.55703,0.54893,0.5144,0.49495,0.49462,0.48444,0.3434,0.22756,0.20438,0.20369,0.20362,0.1803,0.14628,0.1417,0.13867,0.096601,0.092498,0.090354,0.060426,0.042689,0.034101,0.029243,0.024172,0.011472,0.0086839,0.0083937,0.0056552,0.0035608,0.0028694,0.002867,0.0020936,0.001748,0.0015416,0.0013111,0.0011417,0.00093913,0.00086354,0.00067463,0.0004329,0.00035397,0.00025564,0.00013056,0.00012184,9.318e-05,7.9382e-05,4.9105e-05,2.0681e-05,1.6244e-05,8.2019e-06,4.6744e-06,3.4196e-06,1.9555e-06,1.8129e-06,1.6895e-06,1.1788e-06,9.6063e-07,9.5643e-07,8.0646e-07,7.0824e-07,5.6697e-07,5.5649e-07,5.5195e-07,5.2721e-07,4.6466e-07,3.7633e-07,3.3698e-07,2.0158e-07,2.0138e-07,1.0718e-07,1.0629e-07,9.2709e-08,8.4836e-08,8.0109e-08,6.6422e-08,5.4606e-08,2.9131e-08,2.6603e-08,1.9829e-08,5.368e-09,3.5712e-09,3.1108e-09,1.3124e-09,1.182e-09,1.052e-09,4.2843e-10,3.7647e-10,2.5576e-10,2.1842e-10,2.0683e-10,1.8618e-10,9.342e-11,4.5398e-11,4.2122e-11,3.4675e-11,2.4503e-11,8.442e-12,8.0514e-12,7.4637e-12,1.16e-12,3.2276e-13,1.8689e-13,1.4803e-13,7.7336e-14,5.6256e-14,4.8216e-14,2.6939e-14,8.7917e-15,4.7678e-15,4.2021e-15,3.6929e-15,3.6211e-15,2.7182e-15,2.2514e-16,1.4404e-16,1.3051e-16,1.0301e-16,5.291e-17,3.8051e-17,1.3793e-17,1.211e-17,1.0127e-17,9.2969e-18,7.0891e-18,4.6577e-18,3.8322e-18,3.2764e-18,1.9195e-18,1.5793e-18,8.6777e-19,7.4138e-19,4.5399e-19,4.0164e-19,3.3459e-19,3.316e-19,2.8957e-19,1.9684e-19,8.7528e-20,8.612e-20,4.3623e-20,3.0313e-20,2.2061e-20,3.8524e-21,2.2002e-21,2.0814e-21,5.0982e-22,3.673e-22,3.544e-22,1.7109e-22,1.6799e-22,9.1211e-23,3.9939e-23,1.2833e-23,1.0653e-23,6.8227e-24,2.7966e-24,1.8989e-24,1.3407e-24,9.2196e-25,3.0472e-25,1.711e-25,1.7011e-25,1.2616e-25,8.027e-26,7.4699e-26,3.987e-26,3.1208e-26,2.5057e-26,1.3792e-26,1.1754e-26,8.5711e-27,6.0719e-27,3.1577e-27,1.7664e-27,2.2996e-28,1.8258e-28,1.4136e-28,9.0593e-29,5.0088e-29,4.6623e-29,1.931e-29,1.8367e-29,1.4184e-29,1.034e-29,6.6452e-30,2.98e-32,1.9946e-32,1.6527e-32,1.1718e-32,1.0279e-32,6.9073e-33,1.6142e-33,1.325e-33,9.3616e-34,6.2951e-34,4.844e-34,1.4192e-34,1.281e-34,4.1957e-35,1.1442e-35,3.7234e-36,3.3814e-36,9.6752e-37,3.1887e-37,2.9838e-37,1.8352e-37,6.692e-38,6.5428e-38,6.2224e-38,1.8017e-38,1.601e-38,7.7992e-39,5.4696e-39,2.4626e-39,1.9809e-39,6.9225e-40,5.7293e-40,1.9326e-40,1.4438e-40 1,0.94179,0.94863,0.95225,0.9638,0.97627,0.97653,0.9794,0.9891,0.99953,0.99996,1,1,0.99941,0.99557,0.9948,0.9898,0.96437,0.92614,0.92014,0.88954,0.87022,0.85385,0.84777,0.82459,0.82315,0.79993,0.76386,0.73086,0.71662,0.65065,0.64794,0.59333,0.56225,0.55414,0.51954,0.50004,0.49971,0.4895,0.34776,0.23097,0.20755,0.20686,0.20678,0.18321,0.14878,0.14415,0.14107,0.098423,0.09426,0.092083,0.061677,0.043627,0.034877,0.029922,0.024749,0.011773,0.0089185,0.0086212,0.0058148,0.0036658,0.0029556,0.0029532,0.0021582,0.0018027,0.0015904,0.0013531,0.0011787,0.00096997,0.00089206,0.00069731,0.0004479,0.0003664,0.0002648,0.00013543,0.0001264,9.6719e-05,8.2424e-05,5.1035e-05,2.1529e-05,1.6918e-05,8.5527e-06,4.8792e-06,3.5713e-06,2.0443e-06,1.8954e-06,1.7666e-06,1.2334e-06,1.0054e-06,1.001e-06,8.4429e-07,7.4163e-07,5.939e-07,5.8295e-07,5.782e-07,5.5233e-07,4.8689e-07,3.9447e-07,3.5329e-07,2.115e-07,2.113e-07,1.1257e-07,1.1163e-07,9.739e-08,8.9131e-08,8.4172e-08,6.9811e-08,5.7409e-08,3.0654e-08,2.7998e-08,2.0878e-08,5.6626e-09,3.7693e-09,3.284e-09,1.3871e-09,1.2494e-09,1.1122e-09,4.5349e-10,3.9856e-10,2.709e-10,2.314e-10,2.1914e-10,1.9729e-10,9.9081e-11,4.8192e-11,4.472e-11,3.6822e-11,2.6031e-11,8.9804e-12,8.5653e-12,7.9409e-12,1.2368e-12,3.4466e-13,1.9969e-13,1.5822e-13,8.2718e-14,6.0192e-14,5.1598e-14,2.8847e-14,9.4259e-15,5.1151e-15,4.5088e-15,3.963e-15,3.886e-15,2.9179e-15,2.4231e-16,1.551e-16,1.4054e-16,1.1096e-16,5.7028e-17,4.1026e-17,1.4887e-17,1.3072e-17,1.0933e-17,1.0038e-17,7.656e-18,5.0323e-18,4.1411e-18,3.5411e-18,2.0757e-18,1.7081e-18,9.3906e-19,8.0241e-19,4.9159e-19,4.3495e-19,3.6241e-19,3.5917e-19,3.1368e-19,2.1331e-19,9.4923e-20,9.3398e-20,4.7339e-20,3.2906e-20,2.3955e-20,4.1897e-21,2.394e-21,2.2649e-21,5.5546e-22,4.0029e-22,3.8624e-22,1.8658e-22,1.832e-22,9.9525e-23,4.361e-23,1.4026e-23,1.1645e-23,7.4609e-24,3.0605e-24,2.0787e-24,1.4681e-24,1.0099e-24,3.3408e-25,1.8768e-25,1.8659e-25,1.3842e-25,8.8101e-26,8.199e-26,4.3784e-26,3.4278e-26,2.7527e-26,1.5158e-26,1.292e-26,9.424e-27,6.6779e-27,3.4747e-27,1.9445e-27,2.5355e-28,2.0135e-28,1.5592e-28,9.9961e-29,5.5292e-29,5.147e-29,2.1332e-29,2.029e-29,1.5673e-29,1.1428e-29,7.3468e-30,3.3078e-32,2.2145e-32,1.8352e-32,1.3015e-32,1.1418e-32,7.6749e-33,1.7954e-33,1.4739e-33,1.0417e-33,7.0065e-34,5.3924e-34,1.5813e-34,1.4274e-34,4.6787e-35,1.277e-35,4.1589e-36,3.7771e-36,1.0817e-36,3.5675e-37,3.3385e-37,2.0539e-37,7.4948e-38,7.3278e-38,6.9692e-38,2.0196e-38,1.7948e-38,8.7471e-39,6.1359e-39,2.764e-39,2.2237e-39,7.7762e-40,6.4366e-40,2.1727e-40,1.6235e-40 1,0.94169,0.94853,0.95216,0.96372,0.9762,0.97646,0.97933,0.98906,0.99953,0.99996,1,1,0.99943,0.99559,0.99483,0.98984,0.96445,0.92625,0.92025,0.88967,0.87036,0.854,0.84792,0.82475,0.8233,0.80009,0.76403,0.73104,0.7168,0.65083,0.64813,0.59351,0.56244,0.55432,0.51973,0.50022,0.4999,0.48968,0.34792,0.23109,0.20767,0.20697,0.2069,0.18331,0.14887,0.14423,0.14116,0.098488,0.094323,0.092145,0.061721,0.04366,0.034904,0.029947,0.024769,0.011783,0.0089269,0.0086294,0.0058205,0.0036695,0.0029587,0.0029563,0.0021605,0.0018047,0.0015921,0.0013546,0.00118,0.00097108,0.00089309,0.00069813,0.00044844,0.00036685,0.00026513,0.00013561,0.00012657,9.6847e-05,8.2534e-05,5.1104e-05,2.156e-05,1.6943e-05,8.5654e-06,4.8866e-06,3.5769e-06,2.0475e-06,1.8984e-06,1.7694e-06,1.2354e-06,1.007e-06,1.0026e-06,8.4567e-07,7.4284e-07,5.9488e-07,5.8391e-07,5.7915e-07,5.5324e-07,4.877e-07,3.9513e-07,3.5388e-07,2.1186e-07,2.1166e-07,1.1276e-07,1.1182e-07,9.756e-08,8.9288e-08,8.432e-08,6.9934e-08,5.7511e-08,3.071e-08,2.8049e-08,2.0916e-08,5.6733e-09,3.7765e-09,3.2903e-09,1.3898e-09,1.2519e-09,1.1144e-09,4.5441e-10,3.9937e-10,2.7146e-10,2.3188e-10,2.1959e-10,1.9769e-10,9.9288e-11,4.8295e-11,4.4815e-11,3.69e-11,2.6087e-11,9.0001e-12,8.5842e-12,7.9584e-12,1.2397e-12,3.4546e-13,2.0016e-13,1.5859e-13,8.2916e-14,6.0336e-14,5.1723e-14,2.8917e-14,9.4492e-15,5.1279e-15,4.5201e-15,3.9729e-15,3.8958e-15,2.9253e-15,2.4294e-16,1.555e-16,1.4091e-16,1.1125e-16,5.718e-17,4.1136e-17,1.4927e-17,1.3108e-17,1.0962e-17,1.0065e-17,7.677e-18,5.0461e-18,4.1525e-18,3.5509e-18,2.0814e-18,1.7128e-18,9.417e-19,8.0467e-19,4.9298e-19,4.3618e-19,3.6344e-19,3.6019e-19,3.1457e-19,2.1392e-19,9.5197e-20,9.3667e-20,4.7477e-20,3.3002e-20,2.4025e-20,4.2022e-21,2.4012e-21,2.2717e-21,5.5715e-22,4.0152e-22,3.8743e-22,1.8716e-22,1.8377e-22,9.9833e-23,4.3747e-23,1.407e-23,1.1682e-23,7.4846e-24,3.0703e-24,2.0854e-24,1.4728e-24,1.0132e-24,3.3517e-25,1.8829e-25,1.8721e-25,1.3887e-25,8.8392e-26,8.2262e-26,4.3929e-26,3.4392e-26,2.7619e-26,1.5209e-26,1.2964e-26,9.4558e-27,6.7005e-27,3.4865e-27,1.9512e-27,2.5443e-28,2.0205e-28,1.5646e-28,1.0031e-28,5.5486e-29,5.1651e-29,2.1407e-29,2.0362e-29,1.5729e-29,1.1469e-29,7.373e-30,3.32e-32,2.2228e-32,1.842e-32,1.3064e-32,1.1461e-32,7.7036e-33,1.8022e-33,1.4795e-33,1.0456e-33,7.0332e-34,5.4129e-34,1.5874e-34,1.4329e-34,4.6968e-35,1.282e-35,4.1752e-36,3.7919e-36,1.086e-36,3.5817e-37,3.3518e-37,2.0622e-37,7.525e-38,7.3573e-38,6.9973e-38,2.0278e-38,1.8021e-38,8.7828e-39,6.161e-39,2.7754e-39,2.2328e-39,7.8083e-40,6.4633e-40,2.1818e-40,1.6303e-40 1,0.93015,0.93759,0.94156,0.95432,0.96841,0.96871,0.97201,0.98353,0.99791,0.99908,0.99941,0.99943,1,0.9982,0.9977,0.99408,0.97273,0.93809,0.93253,0.90386,0.88555,0.86993,0.8641,0.84181,0.84042,0.81795,0.78283,0.7505,0.73649,0.67123,0.66854,0.61408,0.58294,0.5748,0.53998,0.5203,0.51997,0.50964,0.36528,0.24477,0.22041,0.21969,0.21961,0.19501,0.15897,0.1541,0.15087,0.10589,0.10148,0.099171,0.066826,0.0475,0.038088,0.032743,0.027147,0.013029,0.0099014,0.009575,0.0064858,0.0041085,0.0033198,0.0033171,0.0024317,0.0020347,0.0017972,0.0015314,0.0013357,0.0011012,0.0010135,0.00079403,0.00051203,0.00041958,0.00030408,0.00015638,0.00014604,0.00011199,9.5555e-05,5.9386e-05,2.5216e-05,1.985e-05,1.0084e-05,5.7756e-06,4.2366e-06,2.4342e-06,2.2581e-06,2.1056e-06,1.4736e-06,1.2028e-06,1.1976e-06,1.0112e-06,8.8899e-07,7.1293e-07,6.9986e-07,6.9419e-07,6.6332e-07,5.8521e-07,4.7475e-07,4.2549e-07,2.5554e-07,2.553e-07,1.3653e-07,1.354e-07,1.1823e-07,1.0826e-07,1.0227e-07,8.4916e-08,6.9912e-08,3.7468e-08,3.424e-08,2.5576e-08,6.988e-09,4.6621e-09,4.0649e-09,1.7249e-09,1.5546e-09,1.3848e-09,5.6729e-10,4.9892e-10,3.3979e-10,2.9048e-10,2.7517e-10,2.4786e-10,1.2492e-10,6.0977e-11,5.6605e-11,4.6653e-11,3.3037e-11,1.1456e-11,1.0929e-11,1.0136e-11,1.5926e-12,4.4641e-13,2.5928e-13,2.0565e-13,1.0782e-13,7.8569e-14,6.7397e-14,3.7775e-14,1.2403e-14,6.7479e-15,5.9513e-15,5.2336e-15,5.1324e-15,3.8585e-15,3.2371e-16,2.0757e-16,1.8816e-16,1.4869e-16,7.6627e-17,5.5197e-17,2.0108e-17,1.7666e-17,1.4785e-17,1.3579e-17,1.0368e-17,6.826e-18,5.6213e-18,4.8097e-18,2.825e-18,2.3264e-18,1.2819e-18,1.096e-18,6.727e-19,5.9546e-19,4.9649e-19,4.9207e-19,4.2996e-19,2.9281e-19,1.3068e-19,1.2859e-19,6.5339e-20,4.5477e-20,3.3145e-20,5.8332e-21,3.3397e-21,3.1602e-21,7.7883e-22,5.619e-22,5.4225e-22,2.626e-22,2.5786e-22,1.4037e-22,6.1681e-23,1.9913e-23,1.6543e-23,1.0615e-23,4.3671e-24,2.97e-24,2.0999e-24,1.4463e-24,4.8016e-25,2.7024e-25,2.6869e-25,1.995e-25,1.2717e-25,1.1837e-25,6.3339e-26,4.9626e-26,3.988e-26,2.2002e-26,1.8763e-26,1.3699e-26,9.7177e-27,5.0666e-27,2.8405e-27,3.727e-28,2.9618e-28,2.2953e-28,1.4735e-28,8.1648e-29,7.6021e-29,3.159e-29,3.0052e-29,2.3231e-29,1.6955e-29,1.0914e-29,4.9915e-32,3.3456e-32,2.774e-32,1.9692e-32,1.7282e-32,1.163e-32,2.7316e-33,2.2438e-33,1.5872e-33,1.0688e-33,8.2316e-34,2.422e-34,2.1869e-34,7.1902e-35,1.9695e-35,6.4333e-36,5.8442e-36,1.6792e-36,5.5547e-37,5.199e-37,3.2027e-37,1.1718e-37,1.1457e-37,1.0898e-37,3.1683e-38,2.8165e-38,1.3752e-38,9.6556e-39,4.3585e-39,3.5084e-39,1.2302e-39,1.0188e-39,3.4483e-40,2.5786e-40 1,0.90749,0.91594,0.92048,0.93527,0.95206,0.95243,0.95647,0.97107,0.99224,0.99472,0.99557,0.99559,0.9982,1,0.99997,0.9988,0.98479,0.95672,0.95198,0.92693,0.91052,0.89633,0.891,0.87044,0.86915,0.84816,0.81496,0.78402,0.77052,0.70693,0.70429,0.65043,0.61936,0.6112,0.57617,0.55627,0.55593,0.54546,0.39707,0.27023,0.24424,0.24346,0.24338,0.21699,0.17805,0.17277,0.16926,0.12004,0.11518,0.11264,0.076708,0.054992,0.044329,0.038242,0.031841,0.015523,0.011862,0.011479,0.0078339,0.0050046,0.0040594,0.0040561,0.0029897,0.0025093,0.0022211,0.0018976,0.001659,0.001372,0.0012645,0.00099451,0.00064572,0.00053076,0.00038652,0.00020073,0.00018763,0.00014442,0.00012351,7.7263e-05,3.3183e-05,2.6204e-05,1.3427e-05,7.7433e-06,5.7013e-06,3.2976e-06,3.0617e-06,2.8573e-06,2.008e-06,1.6429e-06,1.6358e-06,1.3839e-06,1.2184e-06,9.7958e-07,9.6182e-07,9.5412e-07,9.1216e-07,8.0587e-07,6.553e-07,5.8802e-07,3.5514e-07,3.548e-07,1.9103e-07,1.8947e-07,1.6567e-07,1.5185e-07,1.4353e-07,1.1941e-07,9.8513e-08,5.3139e-08,4.8605e-08,3.6414e-08,1.0079e-08,6.7508e-09,5.8939e-09,2.5217e-09,2.2749e-09,2.0286e-09,8.3796e-10,7.3783e-10,5.0427e-10,4.3171e-10,4.0915e-10,3.689e-10,1.8706e-10,9.1892e-11,8.5358e-11,7.047e-11,5.0053e-11,1.7515e-11,1.6716e-11,1.5513e-11,2.4751e-12,7.009e-13,4.0885e-13,3.2487e-13,1.7119e-13,1.2505e-13,1.074e-13,6.0463e-14,2.002e-14,1.0942e-14,9.6592e-15,8.5025e-15,8.3393e-15,6.2825e-15,5.3662e-16,3.4518e-16,3.1312e-16,2.4785e-16,1.2832e-16,9.2646e-17,3.3986e-17,2.9885e-17,2.5042e-17,2.3013e-17,1.7603e-17,1.1622e-17,9.5837e-18,8.2085e-18,4.8386e-18,3.9898e-18,2.2072e-18,1.8891e-18,1.1632e-18,1.0305e-18,8.6019e-19,8.5259e-19,7.4564e-19,5.0906e-19,2.2839e-19,2.2476e-19,1.147e-19,8.0017e-20,5.8435e-20,1.0397e-20,5.9732e-21,5.6541e-21,1.4055e-21,1.016e-21,9.8069e-22,4.7701e-22,4.6846e-22,2.5595e-22,1.1302e-22,3.6732e-23,3.0549e-23,1.9653e-23,8.1273e-24,5.5395e-24,3.9244e-24,2.7087e-24,9.0497e-25,5.1098e-25,5.0806e-25,3.7788e-25,2.4147e-25,2.2487e-25,1.2074e-25,9.4731e-26,7.622e-26,4.2189e-26,3.601e-26,2.6337e-26,1.8718e-26,9.794e-27,5.5082e-27,7.3067e-28,5.8136e-28,4.5115e-28,2.903e-28,1.6137e-28,1.503e-28,6.2746e-29,5.9707e-29,4.6218e-29,3.3787e-29,2.1799e-29,1.0247e-31,6.882e-32,5.7115e-32,4.0614e-32,3.5667e-32,2.4048e-32,5.6892e-33,4.6776e-33,3.3146e-33,2.2362e-33,1.7245e-33,5.1042e-34,4.611e-34,1.5241e-34,4.2007e-35,1.3794e-35,1.2537e-35,3.6234e-36,1.2048e-36,1.128e-36,6.9642e-37,2.5598e-37,2.5032e-37,2.3816e-37,6.9631e-38,6.1934e-38,3.0339e-38,2.1336e-38,9.6656e-39,7.788e-39,2.7437e-39,2.2741e-39,7.7348e-40,5.7915e-40 1,0.90432,0.91289,0.9175,0.93255,0.94969,0.95006,0.9542,0.96919,0.99124,0.99388,0.9948,0.99483,0.9977,0.99997,1,0.99916,0.98612,0.95893,0.95431,0.92975,0.9136,0.89961,0.89435,0.87403,0.87275,0.85198,0.81905,0.78831,0.77489,0.71156,0.70893,0.65518,0.62413,0.61597,0.58093,0.56102,0.56068,0.55019,0.40133,0.27368,0.24748,0.2467,0.24661,0.21999,0.18067,0.17533,0.17178,0.122,0.11708,0.1145,0.078087,0.056044,0.045207,0.039018,0.032506,0.01588,0.012143,0.011752,0.0080282,0.0051344,0.0041667,0.0041634,0.0030709,0.0025786,0.002283,0.0019512,0.0017063,0.0014117,0.0013013,0.001024,0.00066549,0.00054723,0.00039877,0.00020735,0.00019385,0.00014928,0.0001277,7.9955e-05,3.439e-05,2.7168e-05,1.3937e-05,8.0446e-06,5.9261e-06,3.4306e-06,3.1856e-06,2.9732e-06,2.0905e-06,1.711e-06,1.7036e-06,1.4417e-06,1.2695e-06,1.021e-06,1.0025e-06,9.9449e-07,9.5081e-07,8.4018e-07,6.834e-07,6.1333e-07,3.707e-07,3.7035e-07,1.9958e-07,1.9795e-07,1.7312e-07,1.5869e-07,1.5002e-07,1.2484e-07,1.0302e-07,5.5616e-08,5.0876e-08,3.8131e-08,1.0572e-08,7.0847e-09,6.1865e-09,2.6497e-09,2.3907e-09,2.1322e-09,8.8171e-10,7.7647e-10,5.3092e-10,4.5461e-10,4.3088e-10,3.8854e-10,1.9718e-10,9.6944e-11,9.0058e-11,7.4366e-11,5.2841e-11,1.8512e-11,1.7669e-11,1.6398e-11,2.6217e-12,7.4341e-13,4.3389e-13,3.4485e-13,1.8184e-13,1.3287e-13,1.1413e-13,6.4293e-14,2.1312e-14,1.1655e-14,1.029e-14,9.0587e-15,8.885e-15,6.6955e-15,5.7324e-16,3.6888e-16,3.3465e-16,2.6496e-16,1.3726e-16,9.9129e-17,3.6398e-17,3.201e-17,2.6826e-17,2.4655e-17,1.8864e-17,1.2459e-17,1.0275e-17,8.8022e-18,5.191e-18,4.2811e-18,2.3695e-18,2.0283e-18,1.2494e-18,1.107e-18,9.2423e-19,9.1606e-19,8.0124e-19,5.472e-19,2.4567e-19,2.4176e-19,1.2345e-19,8.6148e-20,6.2928e-20,1.1212e-20,6.4447e-21,6.1006e-21,1.5182e-21,1.0978e-21,1.0596e-21,5.1571e-22,5.0647e-22,2.7685e-22,1.2233e-22,3.9792e-23,3.3098e-23,2.13e-23,8.8145e-24,6.0097e-24,4.2587e-24,2.9403e-24,9.8312e-25,5.5535e-25,5.5218e-25,4.1078e-25,2.6259e-25,2.4454e-25,1.3137e-25,1.0308e-25,8.2954e-26,4.5937e-26,3.9214e-26,2.8686e-26,2.0393e-26,1.0675e-26,6.0063e-27,7.9789e-28,6.3495e-28,4.9282e-28,3.1722e-28,1.764e-28,1.6431e-28,6.8636e-29,6.5314e-29,5.0567e-29,3.6975e-29,2.3863e-29,1.1258e-31,7.5627e-32,6.2772e-32,4.4646e-32,3.9212e-32,2.6445e-32,6.262e-33,5.1492e-33,3.6496e-33,2.4629e-33,1.8996e-33,5.6268e-34,5.0834e-34,1.6815e-34,4.6381e-35,1.5241e-35,1.3853e-35,4.0068e-36,1.3332e-36,1.2482e-36,7.7089e-37,2.8353e-37,2.7726e-37,2.6379e-37,7.7185e-38,6.8657e-38,3.3647e-38,2.3667e-38,1.0727e-38,8.6441e-39,3.0472e-39,2.5259e-39,8.5968e-40,6.438e-40 1,0.88707,0.89627,0.90124,0.91757,0.93645,0.93686,0.94148,0.95847,0.98502,0.98853,0.9898,0.98984,0.99408,0.9988,0.99916,1,0.99208,0.96959,0.96555,0.94364,0.92891,0.916,0.91111,0.89211,0.8909,0.87128,0.83988,0.81028,0.79728,0.73546,0.73288,0.67982,0.64898,0.64084,0.60583,0.58585,0.58551,0.57497,0.42387,0.29214,0.26484,0.26402,0.26393,0.23609,0.19477,0.18914,0.18539,0.13261,0.12737,0.12462,0.085603,0.061799,0.05003,0.043284,0.036165,0.017857,0.013707,0.013271,0.0091129,0.0058619,0.0047696,0.0047659,0.0035284,0.0029689,0.0026324,0.002254,0.0019741,0.0016369,0.0015102,0.0011916,0.00077803,0.00064111,0.00046873,0.00024536,0.00022954,0.00017722,0.00015183,9.5489e-05,4.1394e-05,3.277e-05,1.691e-05,9.8069e-06,7.243e-06,4.2119e-06,3.9135e-06,3.6547e-06,2.577e-06,2.1125e-06,2.1035e-06,1.7824e-06,1.5711e-06,1.2657e-06,1.243e-06,1.2331e-06,1.1794e-06,1.0432e-06,8.4987e-07,7.6336e-07,4.6315e-07,4.6272e-07,2.5051e-07,2.4847e-07,2.1753e-07,1.9953e-07,1.887e-07,1.5723e-07,1.2993e-07,7.0458e-08,6.4494e-08,4.8436e-08,1.3549e-08,9.1039e-09,7.9569e-09,3.4271e-09,3.0942e-09,2.7616e-09,1.1485e-09,1.0122e-09,6.938e-10,5.9465e-10,5.6381e-10,5.0873e-10,2.5926e-10,1.2802e-10,1.1898e-10,9.8361e-11,7.0035e-11,2.4688e-11,2.357e-11,2.1885e-11,3.5357e-12,1.0096e-12,5.9102e-13,4.7031e-13,2.4886e-13,1.8215e-13,1.5659e-13,8.8474e-14,2.9497e-14,1.6181e-14,1.4295e-14,1.2593e-14,1.2353e-14,9.3222e-15,8.0798e-16,5.2107e-16,4.7294e-16,3.7487e-16,1.9482e-16,1.4092e-16,5.1988e-17,4.5748e-17,3.8372e-17,3.528e-17,2.7027e-17,1.7885e-17,1.4764e-17,1.2656e-17,7.482e-18,6.176e-18,3.4276e-18,2.9361e-18,1.8126e-18,1.6068e-18,1.3426e-18,1.3308e-18,1.1647e-18,7.968e-19,3.5901e-19,3.5333e-19,1.8095e-19,1.2648e-19,9.2513e-20,1.6607e-20,9.5682e-21,9.0595e-21,2.2678e-21,1.642e-21,1.5852e-21,7.7383e-22,7.6001e-22,4.1649e-22,1.8464e-22,6.0337e-23,5.0225e-23,3.238e-23,1.3447e-23,9.1819e-24,6.5155e-24,4.505e-24,1.5128e-24,8.5647e-25,8.516e-25,6.3425e-25,4.0614e-25,3.7834e-25,2.0373e-25,1.6001e-25,1.2887e-25,7.1526e-26,6.1095e-26,4.4746e-26,3.185e-26,1.6714e-26,9.4242e-27,1.2613e-27,1.0046e-27,7.8044e-28,5.0316e-28,2.804e-28,2.6125e-28,1.0947e-28,1.042e-28,8.0743e-29,5.9106e-29,3.8206e-29,1.8366e-31,1.2355e-31,1.0261e-31,7.3069e-32,6.4203e-32,4.3358e-32,1.0317e-32,8.4893e-33,6.0239e-33,4.0705e-33,3.1422e-33,9.3456e-34,8.446e-34,2.804e-34,7.767e-35,2.5616e-35,2.3289e-35,6.7633e-36,2.2583e-36,2.1148e-36,1.3081e-36,4.8265e-37,4.7201e-37,4.4916e-37,1.3193e-37,1.174e-37,5.7662e-38,4.0604e-38,1.8448e-38,1.4877e-38,5.2612e-39,4.3637e-39,1.4901e-39,1.1169e-39 1,0.82734,0.8382,0.84412,0.8639,0.88752,0.88805,0.89399,0.91658,0.95604,0.96209,0.96437,0.96445,0.97273,0.98479,0.98612,0.99208,1,0.99254,0.99044,0.97726,0.96729,0.95805,0.95445,0.94002,0.93909,0.92355,0.89768,0.87239,0.86105,0.80547,0.80309,0.75347,0.72396,0.7161,0.68193,0.66218,0.66185,0.65136,0.49608,0.35324,0.32271,0.3218,0.3217,0.2902,0.24274,0.2362,0.23185,0.16953,0.16323,0.15993,0.11233,0.082562,0.067584,0.058904,0.049656,0.025339,0.019676,0.019077,0.013308,0.0087137,0.0071472,0.0071418,0.0053483,0.0045292,0.0040336,0.0034734,0.0030566,0.0025513,0.0023606,0.0018779,0.001244,0.0010316,0.00076199,0.0004071,0.00038163,0.00029699,0.00025563,0.000163,7.2375e-05,5.7672e-05,3.0303e-05,1.783e-05,1.3273e-05,7.8265e-06,7.2855e-06,6.8155e-06,4.848e-06,3.9937e-06,3.9772e-06,3.3838e-06,2.992e-06,2.423e-06,2.3805e-06,2.3621e-06,2.2616e-06,2.0063e-06,1.6426e-06,1.4792e-06,9.0807e-07,9.0724e-07,4.9819e-07,4.9423e-07,4.3399e-07,3.9886e-07,3.7769e-07,3.1602e-07,2.6227e-07,1.4416e-07,1.3222e-07,9.9917e-08,2.8719e-08,1.9458e-08,1.7054e-08,7.4728e-09,6.7609e-09,6.0481e-09,2.5595e-09,2.2614e-09,1.5615e-09,1.3423e-09,1.274e-09,1.1518e-09,5.9462e-10,2.9754e-10,2.7691e-10,2.2974e-10,1.6461e-10,5.9142e-11,5.6509e-11,5.2539e-11,8.7664e-12,2.5577e-12,1.5108e-12,1.2069e-12,6.454e-13,4.7484e-13,4.0921e-13,2.3338e-13,7.9199e-14,4.3863e-14,3.8827e-14,3.4272e-14,3.3629e-14,2.5491e-14,2.2942e-15,1.4893e-15,1.3537e-15,1.0768e-15,5.6507e-16,4.1069e-16,1.5375e-16,1.3555e-16,1.1398e-16,1.0492e-16,8.069e-17,5.3715e-17,4.4463e-17,3.82e-17,2.2753e-17,1.8832e-17,1.0539e-17,9.0473e-18,5.6232e-18,4.9932e-18,4.1827e-18,4.1464e-18,3.6356e-18,2.5003e-18,1.139e-18,1.1212e-18,5.7945e-19,4.0697e-19,2.9895e-19,5.4909e-20,3.1866e-20,3.0194e-20,7.6959e-21,5.5956e-21,5.4045e-21,2.6626e-21,2.6157e-21,1.4444e-21,6.4699e-22,2.1441e-22,1.7888e-22,1.1595e-22,4.8679e-23,3.3396e-23,2.3797e-23,1.6528e-23,5.6241e-24,3.2059e-24,3.1879e-24,2.3826e-24,1.5338e-24,1.43e-24,7.7572e-25,6.1102e-25,4.9337e-25,2.7572e-25,2.3595e-25,1.7344e-25,1.2394e-25,6.553e-26,3.7195e-26,5.0938e-27,4.0675e-27,3.169e-27,2.0532e-27,1.1517e-27,1.0739e-27,4.5441e-28,4.3273e-28,3.3628e-28,2.4702e-28,1.6045e-28,8.171e-31,5.5197e-31,4.5934e-31,3.2826e-31,2.8882e-31,1.9585e-31,4.7308e-32,3.9006e-32,2.7776e-32,1.8845e-32,1.4587e-32,4.3927e-33,3.974e-33,1.3342e-33,3.7441e-34,1.2486e-34,1.1363e-34,3.3407e-35,1.1276e-35,1.0567e-35,6.5668e-36,2.4467e-36,2.3932e-36,2.2785e-36,6.7727e-37,6.0335e-37,2.9839e-37,2.1082e-37,9.6516e-38,7.799e-38,2.7856e-38,2.3145e-38,7.9842e-39,6.0008e-39 1,0.76156,0.7736,0.7802,0.80252,0.82977,0.83039,0.83737,0.86443,0.91471,0.92296,0.92614,0.92625,0.93809,0.95672,0.95893,0.96959,0.99254,1,0.99987,0.99577,0.99086,0.98559,0.9834,0.97405,0.97341,0.96251,0.94312,0.92307,0.9138,0.86648,0.86439,0.81999,0.79284,0.78553,0.75335,0.7345,0.73417,0.72408,0.56916,0.41832,0.38504,0.38404,0.38393,0.34919,0.29603,0.28863,0.28368,0.2119,0.20453,0.20065,0.14401,0.10771,0.089122,0.078234,0.066525,0.035047,0.027522,0.02672,0.018928,0.012609,0.010423,0.010415,0.0078866,0.0067206,0.006011,0.0052045,0.0046013,0.0038655,0.0035864,0.0028759,0.0019319,0.0016122,0.0012026,0.00065536,0.0006156,0.00048275,0.00041741,0.00026974,0.00012259,9.8303e-05,5.2566e-05,3.1368e-05,2.3531e-05,1.4063e-05,1.3115e-05,1.2289e-05,8.8161e-06,7.2974e-06,7.2678e-06,6.208e-06,5.5056e-06,4.4815e-06,4.4048e-06,4.3715e-06,4.1899e-06,3.7276e-06,3.0664e-06,2.7682e-06,1.7189e-06,1.7174e-06,9.5612e-07,9.487e-07,8.3552e-07,7.6935e-07,7.2941e-07,6.1275e-07,5.1065e-07,2.8441e-07,2.6134e-07,1.987e-07,5.8639e-08,4.005e-08,3.5197e-08,1.5682e-08,1.4217e-08,1.2746e-08,5.4861e-09,4.8589e-09,3.379e-09,2.9132e-09,2.7677e-09,2.5071e-09,1.3106e-09,6.6432e-10,6.1907e-10,5.1538e-10,3.7153e-10,1.3597e-10,1.3003e-10,1.2105e-10,2.0839e-11,6.2083e-12,3.6995e-12,2.9663e-12,1.6027e-12,1.185e-12,1.0237e-12,5.8916e-13,2.034e-13,1.137e-13,1.0084e-13,8.918e-14,8.7531e-14,6.6635e-14,6.2204e-15,4.0642e-15,3.6994e-15,2.9525e-15,1.5641e-15,1.1421e-15,4.3368e-16,3.8303e-16,3.2289e-16,2.9758e-16,2.2971e-16,1.538e-16,1.2765e-16,1.099e-16,6.5938e-17,5.4721e-17,3.0871e-17,2.6558e-17,1.6615e-17,1.4778e-17,1.2409e-17,1.2303e-17,1.0807e-17,7.4699e-18,3.4391e-18,3.3862e-18,1.7656e-18,1.2459e-18,9.1898e-19,1.7259e-19,1.0087e-19,9.5641e-20,2.4808e-20,1.8111e-20,1.75e-20,8.699e-21,8.5475e-21,4.7553e-21,2.1514e-21,7.2273e-22,6.0433e-22,3.9381e-22,1.6708e-22,1.1514e-22,8.2383e-23,5.7469e-23,1.9807e-23,1.1366e-23,1.1303e-23,8.4767e-24,5.4851e-24,5.1181e-24,2.7962e-24,2.2086e-24,1.7878e-24,1.0058e-24,8.6227e-25,6.3608e-25,4.5631e-25,2.4301e-25,1.3882e-25,1.944e-26,1.5562e-26,1.2158e-26,7.9153e-27,4.4684e-27,4.1697e-27,1.781e-27,1.697e-27,1.3224e-27,9.7462e-28,6.36e-28,3.4255e-30,2.3234e-30,1.9372e-30,1.3892e-30,1.2239e-30,8.333e-31,2.0423e-31,1.6872e-31,1.2056e-31,8.2121e-32,6.3728e-32,1.9425e-32,1.7591e-32,5.9705e-33,1.6967e-33,5.7196e-34,5.2099e-34,1.5501e-34,5.2875e-35,4.958e-35,3.0954e-35,1.1642e-35,1.1391e-35,1.0849e-35,3.2624e-36,2.9095e-36,1.4485e-36,1.0268e-36,4.7354e-37,3.834e-37,1.3827e-37,1.1508e-37,4.0092e-38,3.0212e-38 1,0.75238,0.76454,0.77122,0.79381,0.82146,0.82209,0.82919,0.85677,0.90833,0.91686,0.92014,0.92025,0.93253,0.95198,0.95431,0.96555,0.99044,0.99987,1,0.99713,0.99291,0.98819,0.9862,0.97756,0.97696,0.96672,0.94825,0.92897,0.92001,0.87394,0.87189,0.82832,0.80156,0.79434,0.76252,0.74383,0.74351,0.7335,0.57899,0.42733,0.39373,0.39272,0.39261,0.35747,0.30359,0.29608,0.29106,0.21803,0.21051,0.20655,0.14867,0.11145,0.092351,0.081146,0.06908,0.036548,0.028743,0.02791,0.019811,0.013227,0.010946,0.010938,0.0082946,0.0070741,0.0063308,0.0054854,0.0048526,0.0040801,0.0037868,0.0030399,0.0020459,0.0017087,0.0012763,0.00069733,0.00065519,0.00051432,0.00044498,0.00028807,0.00013132,0.0001054,5.649e-05,3.3772e-05,2.536e-05,1.5184e-05,1.4163e-05,1.3275e-05,9.5337e-06,7.8964e-06,7.8645e-06,6.7212e-06,5.9631e-06,4.8572e-06,4.7743e-06,4.7384e-06,4.5421e-06,4.0425e-06,3.3275e-06,3.0049e-06,1.8688e-06,1.8671e-06,1.0414e-06,1.0333e-06,9.104e-07,8.3851e-07,7.951e-07,6.683e-07,5.5725e-07,3.1091e-07,2.8576e-07,2.1744e-07,6.4394e-08,4.4028e-08,3.8707e-08,1.7284e-08,1.5673e-08,1.4056e-08,6.0635e-09,5.372e-09,3.7394e-09,3.2252e-09,3.0645e-09,2.7767e-09,1.4539e-09,7.3823e-10,6.8807e-10,5.7308e-10,4.1346e-10,1.5169e-10,1.4507e-10,1.3508e-10,2.3351e-11,6.976e-12,4.1618e-12,3.3386e-12,1.8063e-12,1.3365e-12,1.1549e-12,6.6547e-13,2.3027e-13,1.2888e-13,1.1432e-13,1.0114e-13,9.927e-14,7.5615e-14,7.0931e-15,4.6383e-15,4.2228e-15,3.3717e-15,1.7885e-15,1.3067e-15,4.9712e-16,4.3916e-16,3.7033e-16,3.4136e-16,2.6363e-16,1.7665e-16,1.4666e-16,1.2631e-16,7.5856e-17,6.2973e-17,3.5565e-17,3.0604e-17,1.9163e-17,1.7048e-17,1.432e-17,1.4198e-17,1.2474e-17,8.6282e-18,3.978e-18,3.9169e-18,2.0447e-18,1.4438e-18,1.0655e-18,2.007e-19,1.1741e-19,1.1133e-19,2.8945e-20,2.1143e-20,2.0431e-20,1.0168e-20,9.9911e-21,5.564e-21,2.5206e-21,8.4828e-22,7.0952e-22,4.6268e-22,1.9657e-22,1.3555e-22,9.7037e-23,6.7731e-23,2.3384e-23,1.343e-23,1.3355e-23,1.0021e-23,6.4887e-24,6.0552e-24,3.3112e-24,2.6164e-24,2.1186e-24,1.193e-24,1.023e-24,7.5498e-25,5.4189e-25,2.8887e-25,1.6516e-25,2.3197e-26,1.8575e-26,1.4517e-26,9.4573e-27,5.3434e-27,4.9868e-27,2.1327e-27,2.0322e-27,1.5842e-27,1.1681e-27,7.6272e-28,4.1386e-30,2.8087e-30,2.3424e-30,1.6805e-30,1.4809e-30,1.0088e-30,2.4771e-31,2.0469e-31,1.4634e-31,9.9728e-32,7.7418e-32,2.3635e-32,2.1407e-32,7.2763e-33,2.0712e-33,6.9922e-34,6.3698e-34,1.8982e-34,6.484e-35,6.0804e-35,3.7984e-35,1.4305e-35,1.3996e-35,1.3332e-35,4.015e-36,3.5812e-36,1.7845e-36,1.2655e-36,5.8419e-37,4.7312e-37,1.7084e-37,1.4222e-37,4.9613e-38,3.74e-38 1,0.70851,0.72114,0.72809,0.75177,0.78106,0.78173,0.78931,0.81903,0.8761,0.88579,0.88954,0.88967,0.90386,0.92693,0.92975,0.94364,0.97726,0.99577,0.99713,1,0.99906,0.99694,0.99588,0.99063,0.99024,0.98315,0.9692,0.95366,0.94622,0.90642,0.90461,0.86529,0.84061,0.83389,0.804,0.78626,0.78595,0.7764,0.62497,0.4704,0.43543,0.43438,0.43426,0.39741,0.34033,0.33231,0.32695,0.24817,0.23998,0.23566,0.1719,0.13027,0.10866,0.095904,0.082083,0.044294,0.035078,0.03409,0.024429,0.016485,0.013708,0.013698,0.01046,0.0089551,0.0080354,0.0069861,0.0061979,0.0052321,0.0048643,0.0039241,0.002664,0.0022335,0.0016785,0.00092846,0.00087344,0.00068892,0.00059771,0.00039016,0.00018044,0.00014539,7.8777e-05,4.7508e-05,3.5845e-05,2.1641e-05,2.0209e-05,1.8961e-05,1.3689e-05,1.1372e-05,1.1327e-05,9.7039e-06,8.6254e-06,7.0479e-06,6.9295e-06,6.8782e-06,6.5976e-06,5.8823e-06,4.8562e-06,4.3922e-06,2.7509e-06,2.7485e-06,1.5461e-06,1.5343e-06,1.3543e-06,1.2488e-06,1.1851e-06,9.9853e-07,8.3475e-07,4.6956e-07,4.3207e-07,3.3001e-07,9.9343e-08,6.8263e-08,6.0113e-08,2.7123e-08,2.4625e-08,2.2114e-08,9.6402e-09,8.5536e-09,5.9805e-09,5.1674e-09,4.913e-09,4.4569e-09,2.3518e-09,1.2037e-09,1.1229e-09,9.3721e-10,6.7874e-10,2.5188e-10,2.4101e-10,2.2459e-10,3.9584e-11,1.198e-11,7.1859e-12,5.7778e-12,3.146e-12,2.3349e-12,2.0208e-12,1.1709e-12,4.095e-13,2.3051e-13,2.0472e-13,1.8132e-13,1.7801e-13,1.3595e-13,1.3045e-14,8.5645e-15,7.8041e-15,6.2443e-15,3.3317e-15,2.4413e-15,9.3694e-16,8.2863e-16,6.9984e-16,6.4556e-16,4.9972e-16,3.3604e-16,2.7947e-16,2.41e-16,1.4539e-16,1.2089e-16,6.8618e-17,5.9124e-17,3.7172e-17,3.3102e-17,2.7847e-17,2.7611e-17,2.4286e-17,1.6852e-17,7.8209e-18,7.7017e-18,4.0426e-18,2.8629e-18,2.1181e-18,4.045e-19,2.3767e-19,2.2547e-19,5.9259e-20,4.3394e-20,4.1944e-20,2.099e-20,2.0628e-20,1.1541e-20,5.2608e-21,1.7854e-21,1.4954e-21,9.7837e-22,4.1838e-22,2.8932e-22,2.0764e-22,1.4532e-22,5.0572e-23,2.9164e-23,2.9004e-23,2.1808e-23,1.4167e-23,1.3227e-23,7.265e-24,5.7503e-24,4.6633e-24,2.637e-24,2.2637e-24,1.6743e-24,1.2046e-24,6.4503e-25,3.7026e-25,5.2728e-26,4.2289e-26,3.3107e-26,2.1632e-26,1.227e-26,1.1457e-26,4.9283e-27,4.6976e-27,3.6682e-27,2.7104e-27,1.7749e-27,9.9711e-30,6.7839e-30,5.6644e-30,4.0727e-30,3.5917e-30,2.4527e-30,6.0774e-31,5.0282e-31,3.6023e-31,2.461e-31,1.9135e-31,5.8858e-32,5.3341e-32,1.8254e-32,5.2366e-33,1.7797e-33,1.6222e-33,4.8702e-34,1.6744e-34,1.5708e-34,9.8408e-35,3.7278e-35,3.6478e-35,3.4757e-35,1.0543e-35,9.4099e-36,4.7083e-36,3.3458e-36,1.5515e-36,1.2581e-36,4.57e-37,3.8086e-37,1.3367e-37,1.0093e-37 1,0.68277,0.69559,0.70267,0.72682,0.75685,0.75754,0.76535,0.79611,0.85594,0.86622,0.87022,0.87036,0.88555,0.91052,0.9136,0.92891,0.96729,0.99086,0.99291,0.99906,1,0.99939,0.99888,0.99561,0.99534,0.99012,0.97886,0.9656,0.95908,0.92317,0.9215,0.88491,0.86159,0.8552,0.82662,0.80954,0.80924,0.80001,0.65123,0.4957,0.46008,0.459,0.45888,0.42116,0.3624,0.35411,0.34856,0.26658,0.25801,0.25348,0.18632,0.14207,0.11896,0.10526,0.090369,0.049321,0.039215,0.038129,0.027472,0.018653,0.015553,0.015542,0.011914,0.010223,0.0091873,0.008003,0.0071117,0.0060173,0.0055998,0.0045303,0.0030908,0.0025971,0.0019586,0.001091,0.0010271,0.00081233,0.00070592,0.00046298,0.0002159,0.00017435,9.5057e-05,5.7613e-05,4.3587e-05,2.6442e-05,2.4708e-05,2.3196e-05,1.6798e-05,1.3978e-05,1.3923e-05,1.1944e-05,1.0628e-05,8.7002e-06,8.5553e-06,8.4925e-06,8.149e-06,7.2729e-06,6.0145e-06,5.4445e-06,3.4238e-06,3.4208e-06,1.9337e-06,1.9191e-06,1.6957e-06,1.5647e-06,1.4855e-06,1.2534e-06,1.0494e-06,5.9307e-07,5.4609e-07,4.18e-07,1.2701e-07,8.7525e-08,7.7149e-08,3.5016e-08,3.1814e-08,2.8593e-08,1.2539e-08,1.1135e-08,7.8056e-09,6.7512e-09,6.4212e-09,5.829e-09,3.0895e-09,1.5886e-09,1.4826e-09,1.2389e-09,8.992e-10,3.3588e-10,3.2148e-10,2.9971e-10,5.3415e-11,1.6285e-11,9.7993e-12,7.8895e-12,4.3114e-12,3.2056e-12,2.7767e-12,1.6141e-12,5.6795e-13,3.2076e-13,2.8506e-13,2.5266e-13,2.4807e-13,1.8975e-13,1.8445e-14,1.2137e-14,1.1065e-14,8.864e-15,4.7453e-15,3.4829e-15,1.3434e-15,1.1889e-15,1.005e-15,9.2744e-16,7.1887e-16,4.844e-16,4.0323e-16,3.48e-16,2.1047e-16,1.7518e-16,9.9716e-17,8.5983e-17,5.4185e-17,4.828e-17,4.065e-17,4.0308e-17,3.5476e-17,2.4661e-17,1.1489e-17,1.1314e-17,5.9575e-18,4.226e-18,3.1312e-18,6.0271e-19,3.5501e-19,3.3687e-19,8.9091e-20,6.5332e-20,6.316e-20,3.1708e-20,3.1164e-20,1.7481e-20,7.9968e-21,2.7272e-21,2.286e-21,1.4984e-21,6.4316e-22,4.4547e-22,3.2017e-22,2.2443e-22,7.8457e-23,4.5352e-23,4.5103e-23,3.3954e-23,2.2097e-23,2.0637e-23,1.1364e-23,9.0036e-24,7.308e-24,4.1424e-24,3.5582e-24,2.6351e-24,1.8984e-24,1.0192e-24,5.8637e-25,8.4167e-26,6.7563e-26,5.2946e-26,3.4653e-26,1.9701e-26,1.84e-26,7.9415e-27,7.5711e-27,5.9178e-27,4.3778e-27,2.8716e-27,1.6456e-29,1.1212e-29,9.368e-30,6.7439e-30,5.9502e-30,4.0691e-30,1.0135e-30,8.3908e-31,6.0188e-31,4.1176e-31,3.2046e-31,9.8992e-32,8.9745e-32,3.0831e-32,8.8842e-33,3.031e-33,2.7637e-33,8.3322e-34,2.8754e-34,2.6981e-34,1.693e-34,6.435e-35,6.2973e-35,6.0013e-35,1.8278e-35,1.632e-35,8.1854e-36,5.8234e-36,2.7075e-36,2.197e-36,8.0079e-37,6.6778e-37,2.352e-37,1.7776e-37 1,0.66189,0.67482,0.68197,0.70643,0.73696,0.73767,0.74563,0.77711,0.83894,0.84967,0.85385,0.854,0.86993,0.89633,0.89961,0.916,0.95805,0.98559,0.98819,0.99694,0.99939,1,0.99992,0.99826,0.99809,0.99439,0.98534,0.97395,0.9682,0.93556,0.93402,0.89975,0.87761,0.87151,0.84408,0.82759,0.82731,0.81836,0.67219,0.51629,0.48022,0.47912,0.479,0.44066,0.38062,0.37212,0.36643,0.28196,0.27308,0.26839,0.1985,0.15211,0.12776,0.11328,0.097489,0.053692,0.042828,0.041658,0.030146,0.020569,0.017188,0.017177,0.013209,0.011354,0.010216,0.0089134,0.0079312,0.006723,0.0062614,0.005077,0.0034777,0.0029273,0.0022139,0.0012402,0.0011682,0.00092596,0.0008057,0.00053044,0.000249,0.00020144,0.00011038,6.7168e-05,5.0928e-05,3.1014e-05,2.8995e-05,2.7233e-05,1.9769e-05,1.6473e-05,1.6408e-05,1.4093e-05,1.2551e-05,1.0289e-05,1.0119e-05,1.0045e-05,9.6415e-06,8.612e-06,7.1315e-06,6.4602e-06,4.0758e-06,4.0723e-06,2.311e-06,2.2937e-06,2.0283e-06,1.8727e-06,1.7785e-06,1.5024e-06,1.2593e-06,7.1438e-07,6.5814e-07,5.0464e-07,1.5449e-07,1.0671e-07,9.413e-08,4.2927e-08,3.9024e-08,3.5095e-08,1.5465e-08,1.3743e-08,9.6531e-09,8.3561e-09,7.9498e-09,7.2206e-09,3.8408e-09,1.9821e-09,1.8506e-09,1.548e-09,1.1254e-09,4.2261e-10,4.0458e-10,3.7733e-10,6.7849e-11,2.081e-11,1.2553e-11,1.0117e-11,5.5451e-12,4.1287e-12,3.5787e-12,2.0857e-12,7.3749e-13,4.1761e-13,3.7134e-13,3.2931e-13,3.2335e-13,2.4763e-13,2.4324e-14,1.6035e-14,1.4624e-14,1.1727e-14,6.2948e-15,4.6263e-15,1.7917e-15,1.5864e-15,1.342e-15,1.2388e-15,9.6125e-16,6.488e-16,5.4049e-16,4.6673e-16,2.8287e-16,2.3562e-16,1.3443e-16,1.1598e-16,7.3226e-17,6.5276e-17,5.4999e-17,5.4537e-17,4.8025e-17,3.3433e-17,1.5622e-17,1.5386e-17,8.122e-18,5.7691e-18,4.2795e-18,8.2898e-19,4.8928e-19,4.6437e-19,1.2342e-19,9.0613e-20,8.7611e-20,4.4095e-20,4.3341e-20,2.4363e-20,1.1177e-20,3.8265e-21,3.2095e-21,2.1069e-21,9.0707e-22,6.2908e-22,4.5266e-22,3.1769e-22,1.1147e-22,6.4554e-23,6.4202e-23,4.8379e-23,3.1531e-23,2.9455e-23,1.6252e-23,1.2887e-23,1.0467e-23,5.9445e-24,5.1087e-24,3.7872e-24,2.7314e-24,1.4694e-24,8.4696e-25,1.2235e-25,9.8281e-26,7.7079e-26,5.0517e-26,2.8772e-26,2.6878e-26,1.1632e-26,1.1091e-26,8.6759e-27,6.4243e-27,4.2196e-27,2.4569e-29,1.6759e-29,1.4011e-29,1.0096e-29,8.9111e-30,6.1009e-30,1.5258e-30,1.264e-30,9.0757e-31,6.2158e-31,4.8411e-31,1.5006e-31,1.3608e-31,4.6895e-32,1.3562e-32,4.6411e-33,4.2329e-33,1.2805e-33,4.4323e-34,4.1597e-34,2.6136e-34,9.9607e-35,9.7481e-35,9.2912e-35,2.8391e-35,2.5358e-35,1.2742e-35,9.0739e-36,4.2277e-36,3.4325e-36,1.2545e-36,1.0467e-36,3.6968e-37,2.7961e-37 1,0.65432,0.66729,0.67446,0.699,0.7297,0.73041,0.73842,0.77014,0.83265,0.84353,0.84777,0.84792,0.8641,0.891,0.89435,0.91111,0.95445,0.9834,0.9862,0.99588,0.99888,0.99992,1,0.99893,0.99879,0.99564,0.9874,0.97669,0.97123,0.93979,0.9383,0.9049,0.88319,0.87721,0.85022,0.83395,0.83367,0.82484,0.67972,0.52377,0.48755,0.48645,0.48633,0.44777,0.3873,0.37873,0.37299,0.28763,0.27865,0.2739,0.20303,0.15586,0.13105,0.11628,0.10016,0.055346,0.044198,0.042996,0.031163,0.021301,0.017814,0.017802,0.013706,0.011789,0.010612,0.0092638,0.0082468,0.0069952,0.0065168,0.0052884,0.0036277,0.0030555,0.0023132,0.0012985,0.0012234,0.00097044,0.0008448,0.00055694,0.00026207,0.00021215,0.00011646,7.0969e-05,5.3852e-05,3.284e-05,3.0708e-05,2.8847e-05,2.0959e-05,1.7473e-05,1.7405e-05,1.4955e-05,1.3322e-05,1.0927e-05,1.0747e-05,1.0669e-05,1.0241e-05,9.1505e-06,7.5811e-06,6.8693e-06,4.339e-06,4.3352e-06,2.4637e-06,2.4453e-06,2.1631e-06,1.9974e-06,1.8972e-06,1.6033e-06,1.3445e-06,7.6374e-07,7.0376e-07,5.3995e-07,1.6575e-07,1.1458e-07,1.011e-07,4.6185e-08,4.1994e-08,3.7775e-08,1.6675e-08,1.4822e-08,1.0419e-08,9.0215e-09,8.5837e-09,7.7979e-09,4.1532e-09,2.1462e-09,2.004e-09,1.6769e-09,1.22e-09,4.5897e-10,4.3943e-10,4.0989e-10,7.3941e-11,2.2727e-11,1.3722e-11,1.1063e-11,6.07e-12,4.5219e-12,3.9205e-12,2.287e-12,8.1011e-13,4.5916e-13,4.0837e-13,3.6222e-13,3.5568e-13,2.7251e-13,2.6868e-14,1.7724e-14,1.6167e-14,1.2968e-14,6.9681e-15,5.1235e-15,1.9872e-15,1.7598e-15,1.489e-15,1.3748e-15,1.0671e-15,7.2069e-16,6.0054e-16,5.1871e-16,3.1461e-16,2.6212e-16,1.4967e-16,1.2916e-16,8.1603e-17,7.2756e-17,6.1316e-17,6.0802e-17,5.3552e-17,3.73e-17,1.7448e-17,1.7185e-17,9.0799e-18,6.4526e-18,4.7885e-18,9.297e-19,5.4912e-19,5.212e-19,1.3878e-19,1.0193e-19,9.8556e-20,4.9649e-20,4.8801e-20,2.7454e-20,1.2608e-20,4.3224e-21,3.6262e-21,2.3818e-21,1.0265e-21,7.1225e-22,5.1272e-22,3.6e-22,1.2648e-22,7.3299e-23,7.2899e-23,5.4952e-23,3.5834e-23,3.3478e-23,1.8485e-23,1.4662e-23,1.1912e-23,6.7695e-24,5.8189e-24,4.3152e-24,3.1135e-24,1.6762e-24,9.6678e-25,1.3998e-25,1.1247e-25,8.8233e-26,5.7856e-26,3.2973e-26,3.0805e-26,1.3344e-26,1.2725e-26,9.9565e-27,7.3751e-27,4.8465e-27,2.8382e-29,1.9368e-29,1.6195e-29,1.1674e-29,1.0305e-29,7.0584e-30,1.768e-30,1.4649e-30,1.0522e-30,7.209e-31,5.6161e-31,1.743e-31,1.5808e-31,5.4536e-32,1.5792e-32,5.4103e-33,4.935e-33,1.4947e-33,5.1794e-34,4.8612e-34,3.0558e-34,1.1657e-34,1.1409e-34,1.0874e-34,3.3268e-35,2.9718e-35,1.4943e-35,1.0645e-35,4.9633e-36,4.0306e-36,1.4746e-36,1.2305e-36,4.3504e-37,3.2913e-37 1,0.62629,0.63934,0.64657,0.67139,0.70257,0.7033,0.71147,0.74396,0.80874,0.82014,0.82459,0.82475,0.84181,0.87044,0.87403,0.89211,0.94002,0.97405,0.97756,0.99063,0.99561,0.99826,0.99893,1,1,0.99889,0.99365,0.98552,0.98111,0.95425,0.95293,0.92286,0.90287,0.89731,0.87204,0.85666,0.85639,0.848,0.70722,0.55154,0.51486,0.51374,0.51362,0.47437,0.4124,0.40358,0.39766,0.30914,0.29976,0.2948,0.22031,0.17025,0.14374,0.12788,0.11052,0.061811,0.049571,0.048248,0.035173,0.024199,0.020298,0.020284,0.015683,0.013521,0.012191,0.010664,0.0095103,0.0080867,0.0075414,0.0061384,0.0042332,0.0035739,0.0027159,0.001536,0.0014482,0.0011521,0.0010047,0.00066572,0.00031603,0.00025644,0.00014171,8.6819e-05,6.6071e-05,4.0498e-05,3.7895e-05,3.5621e-05,2.5964e-05,2.1684e-05,2.1601e-05,1.8588e-05,1.6577e-05,1.3623e-05,1.3401e-05,1.3304e-05,1.2777e-05,1.1428e-05,9.4851e-06,8.6026e-06,5.4574e-06,5.4527e-06,3.115e-06,3.0919e-06,2.7381e-06,2.5303e-06,2.4044e-06,2.0351e-06,1.7092e-06,9.7578e-07,8.9978e-07,6.9193e-07,2.1454e-07,1.4876e-07,1.3139e-07,6.0404e-08,5.4965e-08,4.9484e-08,2.1985e-08,1.9559e-08,1.3786e-08,1.195e-08,1.1375e-08,1.0341e-08,5.5337e-09,2.8736e-09,2.6846e-09,2.2493e-09,1.6402e-09,6.2139e-10,5.9512e-10,5.5538e-10,1.0138e-10,3.1408e-11,1.9026e-11,1.5362e-11,8.4614e-12,6.3154e-12,5.4804e-12,3.208e-12,1.1437e-12,6.5055e-13,5.79e-13,5.1394e-13,5.0472e-13,3.8733e-13,3.8722e-14,2.5605e-14,2.3369e-14,1.8769e-14,1.0121e-14,7.455e-15,2.907e-15,2.5762e-15,2.1818e-15,2.0153e-15,1.5666e-15,1.0603e-15,8.8442e-16,7.6453e-16,4.6498e-16,3.8779e-16,2.2211e-16,1.9183e-16,1.215e-16,1.0839e-16,9.1431e-17,9.0669e-17,7.9911e-17,5.5767e-17,2.6192e-17,2.5799e-17,1.3677e-17,9.7369e-18,7.2371e-18,1.417e-18,8.3917e-19,7.9672e-19,2.1355e-19,1.5709e-19,1.5191e-19,7.6789e-20,7.5484e-20,4.2584e-20,1.963e-20,6.7647e-21,5.68e-21,3.7382e-21,1.6176e-21,1.1243e-21,8.1057e-22,5.7008e-22,2.0126e-22,1.1693e-22,1.163e-22,8.7779e-23,5.7352e-23,5.3597e-23,2.9675e-23,2.3561e-23,1.916e-23,1.0917e-23,9.3899e-24,6.9727e-24,5.0383e-24,2.7199e-24,1.5726e-24,2.2962e-25,1.8467e-25,1.4503e-25,9.527e-26,5.4428e-26,5.0864e-26,2.2112e-26,2.1089e-26,1.6519e-26,1.2252e-26,8.0653e-27,4.8244e-29,3.2973e-29,2.7591e-29,1.9915e-29,1.7589e-29,1.2065e-29,3.0388e-30,2.5197e-30,1.8122e-30,1.2435e-30,9.6968e-31,3.0233e-31,2.743e-31,9.5022e-32,2.7647e-32,9.5106e-33,8.678e-33,2.6404e-33,9.1856e-34,8.6233e-34,5.4301e-34,2.0789e-34,2.0348e-34,1.9398e-34,5.9606e-35,5.3267e-35,2.6852e-35,1.9152e-35,8.9547e-36,7.2774e-36,2.6721e-36,2.2312e-36,7.9182e-37,5.9965e-37 1,0.62458,0.63764,0.64487,0.6697,0.70091,0.70163,0.70982,0.74235,0.80725,0.81868,0.82315,0.8233,0.84042,0.86915,0.87275,0.8909,0.93909,0.97341,0.97696,0.99024,0.99534,0.99809,0.99879,1,1,0.99902,0.99396,0.98599,0.98165,0.95506,0.95376,0.9239,0.90402,0.89849,0.87332,0.858,0.85774,0.84937,0.70888,0.55323,0.51653,0.51541,0.51529,0.476,0.41395,0.40511,0.39918,0.31048,0.30108,0.2961,0.2214,0.17115,0.14454,0.12861,0.11117,0.062223,0.049915,0.048584,0.03543,0.024385,0.020458,0.020445,0.01581,0.013633,0.012294,0.010755,0.0095925,0.0081577,0.0076081,0.0061939,0.0042728,0.0036079,0.0027423,0.0015517,0.0014631,0.0011641,0.0010153,0.00067294,0.00031962,0.0002594,0.0001434,8.7884e-05,6.6893e-05,4.1015e-05,3.838e-05,3.6079e-05,2.6302e-05,2.1969e-05,2.1885e-05,1.8834e-05,1.6798e-05,1.3806e-05,1.3581e-05,1.3483e-05,1.2949e-05,1.1583e-05,9.6146e-06,8.7205e-06,5.5336e-06,5.5289e-06,3.1595e-06,3.1361e-06,2.7774e-06,2.5667e-06,2.4391e-06,2.0647e-06,1.7342e-06,9.9035e-07,9.1326e-07,7.024e-07,2.1792e-07,1.5113e-07,1.335e-07,6.1394e-08,5.5868e-08,5.03e-08,2.2356e-08,1.989e-08,1.4021e-08,1.2155e-08,1.157e-08,1.0519e-08,5.6308e-09,2.9248e-09,2.7325e-09,2.2897e-09,1.6698e-09,6.329e-10,6.0615e-10,5.6569e-10,1.0334e-10,3.203e-11,1.9407e-11,1.5671e-11,8.6334e-12,6.4445e-12,5.5928e-12,3.2745e-12,1.1679e-12,6.6443e-13,5.9138e-13,5.2496e-13,5.1554e-13,3.9567e-13,3.9589e-14,2.6183e-14,2.3897e-14,1.9194e-14,1.0353e-14,7.6264e-15,2.9749e-15,2.6364e-15,2.233e-15,2.0626e-15,1.6035e-15,1.0854e-15,9.0542e-16,7.8272e-16,4.7613e-16,3.9711e-16,2.2749e-16,1.9649e-16,1.2446e-16,1.1104e-16,9.3673e-17,9.2893e-17,8.1874e-17,5.7144e-17,2.6845e-17,2.6443e-17,1.4021e-17,9.9829e-18,7.4207e-18,1.4537e-18,8.6103e-19,8.1748e-19,2.1921e-19,1.6126e-19,1.5595e-19,7.8847e-20,7.7507e-20,4.3733e-20,2.0165e-20,6.951e-21,5.8367e-21,3.8419e-21,1.6628e-21,1.1558e-21,8.3341e-22,5.862e-22,2.0701e-22,1.2029e-22,1.1964e-22,9.0308e-23,5.9012e-23,5.5149e-23,3.0539e-23,2.4249e-23,1.9721e-23,1.1238e-23,9.6664e-24,7.1786e-24,5.1875e-24,2.801e-24,1.6197e-24,2.3662e-25,1.9031e-25,1.4947e-25,9.8197e-26,5.6108e-26,5.2435e-26,2.28e-26,2.1746e-26,1.7034e-26,1.2635e-26,8.3184e-27,4.9822e-29,3.4055e-29,2.8497e-29,2.0571e-29,1.8169e-29,1.2464e-29,3.1403e-30,2.604e-30,1.873e-30,1.2853e-30,1.0024e-30,3.1261e-31,2.8363e-31,9.8278e-32,2.8603e-32,9.8418e-33,8.9804e-33,2.7331e-33,9.5106e-34,8.9285e-34,5.6229e-34,2.1532e-34,2.1075e-34,2.0092e-34,6.1753e-35,5.5187e-35,2.7824e-35,1.9847e-35,9.2812e-36,7.5431e-36,2.7703e-36,2.3133e-36,8.2113e-37,6.2188e-37 1,0.59772,0.6108,0.61805,0.64302,0.67456,0.67529,0.68359,0.71669,0.78342,0.79528,0.79993,0.80009,0.81795,0.84816,0.85198,0.87128,0.92355,0.96251,0.96672,0.98315,0.99012,0.99439,0.99564,0.99889,0.99902,1,0.99784,0.99238,0.98908,0.96703,0.9659,0.9394,0.92128,0.91619,0.89281,0.87843,0.87818,0.87029,0.73469,0.57998,0.54298,0.54185,0.54172,0.5019,0.4386,0.42954,0.42346,0.33192,0.32215,0.31697,0.23886,0.18582,0.15754,0.14055,0.12187,0.069001,0.055578,0.054122,0.039689,0.027487,0.023126,0.02311,0.017944,0.015508,0.014006,0.012278,0.010968,0.0093497,0.0087285,0.0071265,0.0049411,0.0041816,0.0031898,0.0018179,0.0017153,0.0013686,0.0011956,0.00079628,0.0003814,0.00031025,0.00017261,0.00010632,8.1152e-05,5.0001e-05,4.6819e-05,4.4038e-05,3.2204e-05,2.6945e-05,2.6842e-05,2.3134e-05,2.0656e-05,1.7008e-05,1.6733e-05,1.6614e-05,1.5961e-05,1.4292e-05,1.1884e-05,1.0789e-05,6.8744e-06,6.8685e-06,3.9447e-06,3.9156e-06,3.4715e-06,3.2104e-06,3.0522e-06,2.5873e-06,2.1765e-06,1.2489e-06,1.1524e-06,8.8829e-07,2.7824e-07,1.9352e-07,1.7111e-07,7.9169e-08,7.2095e-08,6.4962e-08,2.905e-08,2.5869e-08,1.8283e-08,1.5866e-08,1.5108e-08,1.3745e-08,7.391e-09,3.8571e-09,3.6052e-09,3.0248e-09,2.2108e-09,8.4355e-10,8.0813e-10,7.5454e-10,1.394e-10,4.3536e-11,2.6463e-11,2.1397e-11,1.1832e-11,8.8482e-12,7.6855e-12,4.5145e-12,1.6202e-12,9.2486e-13,8.2374e-13,7.3173e-13,7.1868e-13,5.5244e-13,5.601e-14,3.7129e-14,3.3905e-14,2.7267e-14,1.4757e-14,1.0889e-14,4.2695e-15,3.7862e-15,3.2097e-15,2.966e-15,2.3089e-15,1.5662e-15,1.3078e-15,1.1314e-15,6.9005e-16,5.7608e-16,3.3098e-16,2.8609e-16,1.8165e-16,1.6216e-16,1.3692e-16,1.3578e-16,1.1975e-16,8.3736e-17,3.949e-17,3.89e-17,2.0693e-17,1.4758e-17,1.0987e-17,2.1696e-18,1.2884e-18,1.2235e-18,3.3017e-19,2.4325e-19,2.3528e-19,1.1934e-19,1.1732e-19,6.6376e-20,3.0716e-20,1.064e-20,8.9418e-21,5.897e-21,2.562e-21,1.7838e-21,1.2881e-21,9.0746e-22,3.2195e-22,1.8753e-22,1.8652e-22,1.4097e-22,9.2286e-23,8.6271e-23,4.7896e-23,3.8069e-23,3.0988e-23,1.7701e-23,1.5236e-23,1.1329e-23,8.1984e-24,4.4383e-24,2.5725e-24,3.7885e-25,3.0499e-25,2.3977e-25,1.578e-25,9.0371e-26,8.4478e-26,3.6859e-26,3.5161e-26,2.757e-26,2.0474e-26,1.3503e-26,8.2528e-29,5.6495e-29,4.7306e-29,3.4192e-29,3.0214e-29,2.0757e-29,5.2573e-30,4.3625e-30,3.1417e-30,2.1591e-30,1.6853e-30,5.2791e-31,4.7915e-31,1.6668e-31,4.8733e-32,1.6834e-32,1.5366e-32,4.6967e-33,1.6406e-33,1.5405e-33,9.7177e-34,3.734e-34,3.655e-34,3.4851e-34,1.0756e-34,9.6166e-35,4.8602e-35,3.4708e-35,1.6274e-35,1.3236e-35,4.8781e-36,4.0759e-36,1.452e-36,1.1007e-36 1,0.55791,0.57093,0.57816,0.60316,0.63492,0.63566,0.64406,0.67774,0.7466,0.75899,0.76386,0.76403,0.78283,0.81496,0.81905,0.83988,0.89768,0.94312,0.94825,0.9692,0.97886,0.98534,0.9874,0.99365,0.99396,0.99784,1,0.99833,0.99661,0.98152,0.98066,0.95944,0.94411,0.93973,0.91924,0.9064,0.90617,0.89906,0.77198,0.61987,0.58267,0.58153,0.58141,0.54105,0.47623,0.46689,0.46061,0.3652,0.35492,0.34946,0.26642,0.20921,0.1784,0.15977,0.13918,0.080168,0.064963,0.063307,0.046808,0.03272,0.027643,0.027626,0.021578,0.018712,0.016938,0.014892,0.013337,0.011408,0.010666,0.0087458,0.0061096,0.0051878,0.0039784,0.0022916,0.0021646,0.0017343,0.0015187,0.0010188,0.00049412,0.00040331,0.00022651,0.00014058,0.00010774,6.6869e-05,6.2674e-05,5.9005e-05,4.3346e-05,3.6361e-05,3.6224e-05,3.1286e-05,2.7979e-05,2.3102e-05,2.2733e-05,2.2573e-05,2.1699e-05,1.946e-05,1.6223e-05,1.4747e-05,9.4545e-06,9.4466e-06,5.4655e-06,5.4259e-06,4.8181e-06,4.4602e-06,4.2432e-06,3.6047e-06,3.0392e-06,1.7562e-06,1.6223e-06,1.2545e-06,3.9856e-07,2.7841e-07,2.4653e-07,1.1509e-07,1.0492e-07,9.4652e-08,4.2713e-08,3.8085e-08,2.7021e-08,2.3486e-08,2.2375e-08,2.0378e-08,1.1032e-08,5.7971e-09,5.4224e-09,4.5578e-09,3.3422e-09,1.288e-09,1.2344e-09,1.1534e-09,2.167e-10,6.8441e-11,4.1797e-11,3.3863e-11,1.883e-11,1.4119e-11,1.228e-11,7.2483e-12,2.6255e-12,1.5062e-12,1.3429e-12,1.1941e-12,1.173e-12,9.0377e-13,9.3449e-14,6.2162e-14,5.6807e-14,4.5768e-14,2.4896e-14,1.8417e-14,7.2762e-15,6.4589e-15,5.4827e-15,5.0697e-15,3.9545e-15,2.6908e-15,2.25e-15,1.9488e-15,1.1932e-15,9.9759e-16,5.7563e-16,4.9813e-16,3.174e-16,2.8359e-16,2.3976e-16,2.3779e-16,2.0992e-16,1.4719e-16,6.9811e-17,6.8777e-17,3.676e-17,2.6284e-17,1.961e-17,3.9191e-18,2.3361e-18,2.2194e-18,6.0456e-19,4.4638e-19,4.3185e-19,2.201e-19,2.164e-19,1.2292e-19,5.719e-20,1.9957e-20,1.6791e-20,1.1105e-20,4.8521e-21,3.3866e-21,2.4508e-21,1.7306e-21,6.1825e-22,3.614e-22,3.5946e-22,2.7217e-22,1.7868e-22,1.6711e-22,9.3131e-23,7.4133e-23,6.0424e-23,3.464e-23,2.9845e-23,2.2235e-23,1.6123e-23,8.7628e-24,5.0965e-24,7.5962e-25,6.1235e-25,4.8212e-25,3.1811e-25,1.8281e-25,1.7096e-25,7.4969e-26,7.1537e-26,5.6176e-26,4.1793e-26,2.7631e-26,1.7404e-28,1.194e-28,1.0009e-28,7.2474e-29,6.4087e-29,4.4124e-29,1.1263e-29,9.3562e-30,6.7505e-30,4.6489e-30,3.6339e-30,1.1457e-30,1.0404e-30,3.6407e-31,1.0717e-31,3.7234e-32,3.4003e-32,1.046e-32,3.6745e-33,3.4516e-33,2.1827e-33,8.4297e-34,8.2522e-34,7.8705e-34,2.4443e-34,2.1866e-34,1.1091e-34,7.9341e-35,3.7349e-35,3.0409e-35,1.1265e-35,9.4214e-36,3.374e-36,2.5614e-36 1,0.52321,0.53609,0.54326,0.5681,0.59983,0.60057,0.609,0.64293,0.71308,0.72583,0.73086,0.73104,0.7505,0.78402,0.78831,0.81028,0.87239,0.92307,0.92897,0.95366,0.9656,0.97395,0.97669,0.98552,0.98599,0.99238,0.99833,1,0.9997,0.9909,0.99028,0.97392,0.96122,0.9575,0.93976,0.9284,0.9282,0.92185,0.80346,0.65488,0.61777,0.61663,0.6165,0.57594,0.51017,0.50063,0.49421,0.39581,0.38511,0.37943,0.29223,0.23138,0.19831,0.1782,0.15588,0.09115,0.074255,0.072409,0.053928,0.038004,0.032227,0.032206,0.025289,0.021994,0.01995,0.017585,0.015784,0.013542,0.012678,0.010435,0.0073378,0.0062491,0.0048147,0.0027995,0.0026468,0.0021284,0.0018678,0.0012609,0.00061831,0.00050619,0.00028665,0.0001791,0.00013776,8.6046e-05,8.0718e-05,7.6053e-05,5.6094e-05,4.7161e-05,4.6986e-05,4.0656e-05,3.6411e-05,3.0136e-05,2.9662e-05,2.9456e-05,2.8328e-05,2.544e-05,2.1256e-05,1.9345e-05,1.2469e-05,1.2459e-05,7.2556e-06,7.2035e-06,6.4056e-06,5.9351e-06,5.6496e-06,4.8085e-06,4.0621e-06,2.362e-06,2.1838e-06,1.6936e-06,5.4482e-07,3.8202e-07,3.3871e-07,1.5938e-07,1.4543e-07,1.3134e-07,5.9745e-08,5.3332e-08,3.7966e-08,3.3044e-08,3.1497e-08,2.8711e-08,1.5635e-08,8.2666e-09,7.7371e-09,6.514e-09,4.7905e-09,1.8623e-09,1.7855e-09,1.6693e-09,3.1832e-10,1.0153e-10,6.2263e-11,5.0534e-11,2.8236e-11,2.1222e-11,1.8479e-11,1.0954e-11,4.0003e-12,2.3049e-12,2.0569e-12,1.8307e-12,1.7986e-12,1.3886e-12,1.4608e-13,9.7468e-14,8.9131e-14,7.1925e-14,3.9301e-14,2.9137e-14,1.1589e-14,1.0296e-14,8.75e-15,8.0955e-15,6.3259e-15,4.3161e-15,3.6137e-15,3.1331e-15,1.925e-15,1.6113e-15,9.3334e-16,8.0849e-16,5.1675e-16,4.6207e-16,3.9109e-16,3.879e-16,3.4273e-16,2.4089e-16,1.1483e-16,1.1314e-16,6.0725e-17,4.3516e-17,3.253e-17,6.5699e-18,3.9293e-18,3.7341e-18,1.0257e-18,7.5874e-19,7.342e-19,3.7578e-19,3.6951e-19,2.1063e-19,9.8461e-20,3.4581e-20,2.9126e-20,1.9311e-20,8.4796e-21,5.9312e-21,4.3005e-21,3.0431e-21,1.0937e-21,6.4134e-22,6.3792e-22,4.838e-22,3.1838e-22,2.9788e-22,1.6657e-22,1.3277e-22,1.0834e-22,6.2309e-23,5.3729e-23,4.0095e-23,2.9127e-23,1.5885e-23,9.2668e-24,1.3958e-24,1.1266e-24,8.8813e-25,5.8734e-25,3.3854e-25,3.1671e-25,1.395e-25,1.3315e-25,1.047e-25,7.8014e-26,5.1694e-26,3.3434e-28,2.2982e-28,1.9281e-28,1.3985e-28,1.2374e-28,8.5358e-29,2.1939e-29,1.8241e-29,1.3183e-29,9.0956e-30,7.1185e-30,2.2572e-30,2.0508e-30,7.2131e-31,2.1359e-31,7.4589e-32,6.8147e-32,2.1083e-32,7.4429e-33,6.9934e-33,4.432e-33,1.7194e-33,1.6833e-33,1.6058e-33,5.0145e-34,4.4881e-34,2.2836e-34,1.6362e-34,7.7289e-35,6.2988e-35,2.344e-35,1.962e-35,7.0592e-36,5.3657e-36 1,0.50869,0.52148,0.52861,0.55334,0.585,0.58574,0.59416,0.62812,0.69867,0.71154,0.71662,0.7168,0.73649,0.77052,0.77489,0.79728,0.86105,0.9138,0.92001,0.94622,0.95908,0.9682,0.97123,0.98111,0.98165,0.98908,0.99661,0.9997,1,0.99388,0.99338,0.97912,0.96757,0.96414,0.94762,0.93692,0.93673,0.93071,0.81633,0.66959,0.6326,0.63146,0.63133,0.59076,0.5247,0.5151,0.50863,0.4091,0.39824,0.39246,0.30358,0.2412,0.20717,0.18643,0.16336,0.096136,0.078493,0.076562,0.057196,0.040446,0.034351,0.03433,0.027016,0.023525,0.021357,0.018846,0.016931,0.014546,0.013624,0.011232,0.0079205,0.0067537,0.0052139,0.0030436,0.0028788,0.0023184,0.0020364,0.0013784,0.0006791,0.00055666,0.00031634,0.0001982,0.00015269,9.5628e-05,8.9739e-05,8.458e-05,6.2489e-05,5.2589e-05,5.2395e-05,4.5372e-05,4.0658e-05,3.3686e-05,3.3158e-05,3.2929e-05,3.1676e-05,2.8462e-05,2.3804e-05,2.1674e-05,1.4003e-05,1.3991e-05,8.1704e-06,8.112e-06,7.2177e-06,6.6901e-06,6.3699e-06,5.4259e-06,4.5875e-06,2.6746e-06,2.4737e-06,1.9208e-06,6.2115e-07,4.3625e-07,3.87e-07,1.8271e-07,1.6679e-07,1.5069e-07,6.878e-08,6.1427e-08,4.3791e-08,3.8137e-08,3.6358e-08,3.3155e-08,1.8101e-08,9.5948e-09,8.9826e-09,7.5677e-09,5.5722e-09,2.1742e-09,2.0849e-09,1.9497e-09,3.7412e-10,1.1983e-10,7.3613e-11,5.979e-11,3.3477e-11,2.5187e-11,2.1941e-11,1.303e-11,4.7748e-12,2.7563e-12,2.4606e-12,2.1909e-12,2.1526e-12,1.6633e-12,1.7627e-13,1.1776e-13,1.0772e-13,8.6982e-14,4.7618e-14,3.5336e-14,1.4094e-14,1.2526e-14,1.0651e-14,9.8565e-15,7.7077e-15,5.265e-15,4.4104e-15,3.8256e-15,2.3538e-15,1.9714e-15,1.1437e-15,9.9115e-16,6.3434e-16,5.6739e-16,4.8047e-16,4.7656e-16,4.2122e-16,2.9636e-16,1.4157e-16,1.3949e-16,7.5003e-17,5.3798e-17,4.0249e-17,8.165e-18,4.8902e-18,4.648e-18,1.2811e-18,9.485e-19,9.1791e-19,4.7064e-19,4.6281e-19,2.6421e-19,1.2375e-19,4.3582e-20,3.6723e-20,2.4374e-20,1.0725e-20,7.5089e-21,5.4489e-21,3.8591e-21,1.3905e-21,8.1648e-22,8.1213e-22,6.1635e-22,4.0603e-22,3.7994e-22,2.1276e-22,1.6968e-22,1.3853e-22,7.9778e-23,6.8818e-23,5.1391e-23,3.7362e-23,2.0405e-23,1.1919e-23,1.8034e-24,1.4562e-24,1.1487e-24,7.6036e-25,4.3883e-25,4.1059e-25,1.812e-25,1.7297e-25,1.3608e-25,1.0147e-25,6.7295e-26,4.4015e-28,3.0279e-28,2.5413e-28,1.8445e-28,1.6325e-28,1.127e-28,2.9052e-29,2.4165e-29,1.7476e-29,1.2067e-29,9.4489e-30,3.0034e-30,2.7293e-30,9.6204e-31,2.8559e-31,9.9949e-32,9.1334e-32,2.8324e-32,1.002e-32,9.4162e-33,5.9729e-33,2.3215e-33,2.273e-33,2.1685e-33,6.7872e-34,6.0761e-34,3.0957e-34,2.2195e-34,1.05e-34,8.5605e-35,3.1918e-35,2.6725e-35,9.6346e-36,7.3271e-36 1,0.44448,0.45674,0.4636,0.48751,0.5184,0.51913,0.52741,0.56102,0.63221,0.64542,0.65065,0.65083,0.67123,0.70693,0.71156,0.73546,0.80547,0.86648,0.87394,0.90642,0.92317,0.93556,0.93979,0.95425,0.95506,0.96703,0.98152,0.9909,0.99388,1,0.99999,0.99553,0.9894,0.98737,0.97668,0.96918,0.96905,0.96468,0.87066,0.73491,0.69905,0.69793,0.69781,0.65782,0.59141,0.58163,0.57502,0.47151,0.46,0.45387,0.35801,0.28897,0.25063,0.22701,0.20048,0.12144,0.10016,0.097818,0.074095,0.05322,0.04552,0.045493,0.036162,0.031668,0.028862,0.025595,0.023091,0.019953,0.018736,0.015558,0.011111,0.0095276,0.0074215,0.0044107,0.0041794,0.0033894,0.0029893,0.002048,0.0010305,0.00084953,0.0004905,0.00031125,0.00024146,0.00015308,0.00014389,0.00013582,0.00010112,8.5468e-05,8.516e-05,7.401e-05,6.6501e-05,5.5351e-05,5.4506e-05,5.4138e-05,5.2127e-05,4.6961e-05,3.9443e-05,3.5996e-05,2.3497e-05,2.3478e-05,1.3882e-05,1.3785e-05,1.2298e-05,1.1419e-05,1.0885e-05,9.3051e-06,7.897e-06,4.6593e-06,4.3167e-06,3.3702e-06,1.1162e-06,7.8968e-07,7.0224e-07,3.3659e-07,3.0782e-07,2.7867e-07,1.2916e-07,1.156e-07,8.2946e-08,7.2426e-08,6.911e-08,6.3132e-08,3.4858e-08,1.8695e-08,1.7523e-08,1.4809e-08,1.0964e-08,4.3502e-09,4.1747e-09,3.9086e-09,7.7151e-10,2.5183e-10,1.5594e-10,1.2708e-10,7.182e-11,5.4279e-11,4.7388e-11,2.8374e-11,1.056e-11,6.1474e-12,5.4974e-12,4.9034e-12,4.8189e-12,3.7381e-12,4.0947e-13,2.7515e-13,2.5201e-13,2.0412e-13,1.1271e-13,8.3988e-14,3.3934e-14,3.0208e-14,2.5743e-14,2.3848e-14,1.8712e-14,1.2849e-14,1.079e-14,9.3769e-15,5.8076e-15,4.8756e-15,2.8494e-15,2.474e-15,1.5928e-15,1.4268e-15,1.2108e-15,1.2011e-15,1.0634e-15,7.5162e-16,3.6253e-16,3.5728e-16,1.9364e-16,1.3949e-16,1.0475e-16,2.1681e-17,1.3069e-17,1.2429e-17,3.4806e-18,2.5864e-18,2.5039e-18,1.2943e-18,1.273e-18,7.3165e-19,3.4581e-19,1.2329e-19,1.041e-19,6.9423e-20,3.0841e-20,2.1681e-20,1.5791e-20,1.1228e-20,4.0929e-21,2.4177e-21,2.405e-21,1.8308e-21,1.2118e-21,1.1347e-21,6.3956e-22,5.1132e-22,4.184e-22,2.4242e-22,2.0945e-22,1.5691e-22,1.1448e-22,6.2934e-23,3.6975e-23,5.7085e-24,4.6199e-24,3.6533e-24,2.4289e-24,1.4099e-24,1.3201e-24,5.8755e-25,5.6113e-25,4.4255e-25,3.3099e-25,2.2046e-25,1.5168e-27,1.0473e-27,8.8055e-28,6.4113e-28,5.6812e-28,3.9363e-28,1.0281e-28,8.567e-29,6.2149e-29,4.3067e-29,3.3802e-29,1.0862e-29,9.88e-30,3.5171e-30,1.056e-30,3.7322e-31,3.4133e-31,1.07e-31,3.8216e-32,3.5933e-32,2.2888e-32,8.9725e-33,8.7865e-33,8.3863e-33,2.6524e-33,2.3768e-33,1.2183e-33,8.7607e-34,4.1721e-34,3.4076e-34,1.2816e-34,1.0748e-34,3.9095e-35,2.9803e-35 1,0.44194,0.45418,0.46103,0.48489,0.51574,0.51647,0.52473,0.55832,0.62949,0.64271,0.64794,0.64813,0.66854,0.70429,0.70893,0.73288,0.80309,0.86439,0.87189,0.90461,0.9215,0.93402,0.9383,0.95293,0.95376,0.9659,0.98066,0.99028,0.99338,0.99999,1,0.99594,0.99004,0.98806,0.97762,0.97026,0.97013,0.96583,0.87271,0.7375,0.7017,0.70058,0.70046,0.66052,0.59413,0.58434,0.57773,0.4741,0.46258,0.45643,0.36031,0.29102,0.2525,0.22876,0.20209,0.12256,0.10113,0.098767,0.074856,0.053801,0.04603,0.046002,0.036582,0.032043,0.029208,0.025907,0.023376,0.020205,0.018974,0.01576,0.011261,0.0096588,0.0075263,0.0044763,0.0042419,0.003441,0.0030354,0.0020806,0.0010477,0.00086397,0.00049916,0.00031691,0.00024592,0.00015598,0.00014662,0.00013841,0.00010308,8.7142e-05,8.6829e-05,7.5471e-05,6.7822e-05,5.6461e-05,5.5599e-05,5.5225e-05,5.3175e-05,4.791e-05,4.0248e-05,3.6733e-05,2.3989e-05,2.3969e-05,1.418e-05,1.4081e-05,1.2563e-05,1.1666e-05,1.112e-05,9.5081e-06,8.0704e-06,4.7639e-06,4.4139e-06,3.4469e-06,1.1427e-06,8.0867e-07,7.192e-07,3.4493e-07,3.1547e-07,2.8562e-07,1.3246e-07,1.1857e-07,8.5097e-08,7.4312e-08,7.0912e-08,6.4783e-08,3.5786e-08,1.9202e-08,1.7999e-08,1.5213e-08,1.1266e-08,4.4729e-09,4.2926e-09,4.0191e-09,7.9425e-10,2.5945e-10,1.6071e-10,1.3099e-10,7.4054e-11,5.5978e-11,4.8876e-11,2.9274e-11,1.0902e-11,6.3486e-12,5.6777e-12,5.0647e-12,4.9775e-12,3.8617e-12,4.2357e-13,2.8469e-13,2.6076e-13,2.1124e-13,1.1668e-13,8.6962e-14,3.5153e-14,3.1296e-14,2.6672e-14,2.471e-14,1.9391e-14,1.3318e-14,1.1185e-14,9.7209e-15,6.0223e-15,5.0563e-15,2.9559e-15,2.5666e-15,1.6528e-15,1.4806e-15,1.2567e-15,1.2466e-15,1.1037e-15,7.8027e-16,3.765e-16,3.7105e-16,2.0117e-16,1.4494e-16,1.0885e-16,2.255e-17,1.3596e-17,1.2931e-17,3.6234e-18,2.6929e-18,2.6071e-18,1.348e-18,1.3259e-18,7.6225e-19,3.604e-19,1.2856e-19,1.0855e-19,7.2409e-20,3.218e-20,2.2626e-20,1.6482e-20,1.1721e-20,4.2746e-21,2.5257e-21,2.5124e-21,1.9129e-21,1.2663e-21,1.1858e-21,6.6852e-22,5.3453e-22,4.3743e-22,2.5351e-22,2.1905e-22,1.6412e-22,1.1975e-22,6.5853e-23,3.8699e-23,5.9795e-24,4.8397e-24,3.8275e-24,2.5451e-24,1.4777e-24,1.3836e-24,6.1605e-25,5.8836e-25,4.6407e-25,3.4713e-25,2.3124e-25,1.5944e-27,1.101e-27,9.2574e-28,6.7412e-28,5.9739e-28,4.1397e-28,1.0818e-28,9.0151e-29,6.5407e-29,4.5332e-29,3.5583e-29,1.144e-29,1.0406e-29,3.7057e-30,1.1132e-30,3.9356e-31,3.5995e-31,1.1289e-31,4.0334e-32,3.7925e-32,2.4161e-32,9.4748e-33,9.2785e-33,8.8561e-33,2.8022e-33,2.5111e-33,1.2874e-33,9.259e-34,4.4106e-34,3.6027e-34,1.3555e-34,1.1368e-34,4.1365e-35,3.1536e-35 1,0.39225,0.4039,0.41043,0.43328,0.46303,0.46373,0.47174,0.50448,0.57485,0.58808,0.59333,0.59351,0.61408,0.65043,0.65518,0.67982,0.75347,0.81999,0.82832,0.86529,0.88491,0.89975,0.9049,0.92286,0.9239,0.9394,0.95944,0.97392,0.97912,0.99553,0.99594,1,0.99868,0.9979,0.99251,0.98797,0.98789,0.98506,0.91104,0.78805,0.75395,0.75288,0.75277,0.71414,0.64874,0.63899,0.63238,0.52716,0.51528,0.50892,0.40819,0.33395,0.29206,0.266,0.23649,0.14683,0.12216,0.11943,0.091542,0.066633,0.057336,0.057304,0.045943,0.040429,0.036968,0.032923,0.029808,0.025887,0.024359,0.020352,0.014693,0.01266,0.0099372,0.0059971,0.0056914,0.004643,0.0041094,0.0028447,0.0014573,0.0012073,0.00070657,0.00045326,0.00035372,0.0002266,0.00021329,0.00020159,0.00015108,0.00012816,0.00012771,0.00011133,0.00010027,8.3787e-05,8.2534e-05,8.1989e-05,7.9006e-05,7.1334e-05,6.0137e-05,5.4986e-05,3.6212e-05,3.6183e-05,2.1623e-05,2.1475e-05,1.9202e-05,1.7856e-05,1.7036e-05,1.4609e-05,1.2438e-05,7.4139e-06,6.8788e-06,5.3958e-06,1.8239e-06,1.2984e-06,1.157e-06,5.6179e-07,5.1456e-07,4.6663e-07,2.1912e-07,1.9649e-07,1.4177e-07,1.2406e-07,1.1848e-07,1.0839e-07,6.0429e-08,3.2733e-08,3.0713e-08,2.6025e-08,1.936e-08,7.7916e-09,7.482e-09,7.012e-09,1.418e-09,4.7037e-10,2.9325e-10,2.3967e-10,1.3653e-10,1.0358e-10,9.0603e-11,5.4631e-11,2.0605e-11,1.2081e-11,1.0819e-11,9.6647e-12,9.5004e-12,7.3941e-12,8.3317e-13,5.6265e-13,5.1589e-13,4.1895e-13,2.3303e-13,1.7428e-13,7.1189e-14,6.3461e-14,5.4184e-14,5.0243e-14,3.9537e-14,2.727e-14,2.2946e-14,1.9975e-14,1.2441e-14,1.0466e-14,6.1548e-15,5.3526e-15,3.4635e-15,3.1065e-15,2.6413e-15,2.6203e-15,2.3231e-15,1.6485e-15,8.0169e-16,7.902e-16,4.3123e-16,3.1177e-16,2.3486e-16,4.9456e-17,2.9973e-17,2.8521e-17,8.096e-18,6.0348e-18,5.8444e-18,3.0419e-18,2.9924e-18,1.7298e-18,8.2392e-19,2.9686e-19,2.5108e-19,1.6813e-19,7.5301e-20,5.3122e-20,3.8813e-20,2.769e-20,1.0195e-20,6.053e-21,6.0214e-21,4.5961e-21,3.0541e-21,2.8618e-21,1.6219e-21,1.2994e-21,1.0653e-21,6.2046e-22,5.3683e-22,4.0327e-22,2.9509e-22,1.6314e-22,9.6325e-23,1.513e-23,1.2268e-23,9.7224e-24,6.4879e-24,3.7846e-24,3.5457e-24,1.5897e-24,1.5188e-24,1.2004e-24,9.0011e-25,6.0169e-25,4.3231e-27,2.9944e-27,2.5212e-27,1.8407e-27,1.6327e-27,1.1348e-27,2.9975e-28,2.5015e-28,1.8195e-28,1.2647e-28,9.9463e-29,3.2262e-29,2.9367e-29,1.0543e-29,3.1965e-30,1.1392e-30,1.0426e-30,3.2986e-31,1.1877e-31,1.1173e-31,7.142e-32,2.8204e-32,2.7624e-32,2.6375e-32,8.4168e-33,7.5487e-33,3.8892e-33,2.8038e-33,1.3429e-33,1.0985e-33,4.1623e-34,3.4952e-34,1.2811e-34,9.7859e-35 1,0.36515,0.37641,0.38273,0.4049,0.43387,0.43455,0.44238,0.47444,0.54389,0.55703,0.56225,0.56244,0.58294,0.61936,0.62413,0.64898,0.72396,0.79284,0.80156,0.84061,0.86159,0.87761,0.88319,0.90287,0.90402,0.92128,0.94411,0.96122,0.96757,0.9894,0.99004,0.99868,1,0.99991,0.99746,0.99459,0.99453,0.99256,0.93024,0.8154,0.78259,0.78155,0.78144,0.74389,0.67959,0.66993,0.66337,0.55797,0.54595,0.53951,0.43666,0.35987,0.31615,0.2888,0.2577,0.16215,0.13555,0.13259,0.10229,0.074994,0.064742,0.064706,0.05212,0.045985,0.042124,0.037601,0.03411,0.029703,0.027982,0.023457,0.017035,0.014716,0.011599,0.0070585,0.0067043,0.005487,0.0048656,0.0033871,0.0017522,0.0014554,0.00085811,0.00055373,0.00043351,0.00027929,0.00026309,0.00024884,0.00018715,0.00015908,0.00015853,0.00013842,0.00012483,0.00010453,0.00010299,0.00010231,9.8635e-05,8.9164e-05,7.5318e-05,6.8939e-05,4.5619e-05,4.5583e-05,2.7398e-05,2.7213e-05,2.4363e-05,2.2673e-05,2.1643e-05,1.8591e-05,1.5856e-05,9.5034e-06,8.8244e-06,6.9397e-06,2.3719e-06,1.6942e-06,1.5115e-06,7.3903e-07,6.7747e-07,6.1494e-07,2.9082e-07,2.6104e-07,1.8891e-07,1.6552e-07,1.5813e-07,1.4479e-07,8.1146e-08,4.4194e-08,4.1489e-08,3.5207e-08,2.6258e-08,1.065e-08,1.023e-08,9.5927e-09,1.9655e-09,6.5773e-10,4.1156e-10,3.369e-10,1.9275e-10,1.4654e-10,1.2831e-10,7.7659e-11,2.9502e-11,1.7365e-11,1.5564e-11,1.3914e-11,1.368e-11,1.0666e-11,1.2204e-12,8.2638e-13,7.5815e-13,6.1657e-13,3.4431e-13,2.58e-13,1.0602e-13,9.4582e-14,8.084e-14,7.4996e-14,5.9108e-14,4.0868e-14,3.4427e-14,2.9996e-14,1.874e-14,1.5782e-14,9.3125e-15,8.1059e-15,5.2596e-15,4.7206e-15,4.0178e-15,3.9861e-15,3.5366e-15,2.515e-15,1.2286e-15,1.2111e-15,6.6336e-16,4.8054e-16,3.6261e-16,7.7075e-17,4.685e-17,4.4594e-17,1.2752e-17,9.5213e-18,9.2227e-18,4.8183e-18,4.7403e-18,2.7488e-18,1.3148e-18,4.7643e-19,4.0332e-19,2.7068e-19,1.2177e-19,8.6066e-20,6.2991e-20,4.5022e-20,1.6665e-20,9.9221e-21,9.8706e-21,7.545e-21,5.0245e-21,4.7097e-21,2.6772e-21,2.1474e-21,1.7624e-21,1.0293e-21,8.9126e-22,6.7052e-22,4.9143e-22,2.7251e-22,1.6134e-22,2.558e-23,2.0764e-23,1.6474e-23,1.1015e-23,6.4429e-24,6.0381e-24,2.7178e-24,2.5972e-24,2.0551e-24,1.5432e-24,1.0336e-24,7.6029e-27,5.2752e-27,4.4451e-27,3.25e-27,2.8844e-27,2.0081e-27,5.3367e-28,4.4573e-28,3.2469e-28,2.2606e-28,1.7798e-28,5.8022e-29,5.2838e-29,1.9056e-29,5.8082e-30,2.0793e-30,1.9037e-30,6.0534e-31,2.1893e-31,2.0601e-31,1.3194e-31,5.2309e-32,5.1238e-32,4.8931e-32,1.5691e-32,1.4079e-32,7.2739e-33,5.2511e-33,2.5227e-33,2.0654e-33,7.8576e-34,6.6031e-34,2.4302e-34,1.8584e-34 1,0.35821,0.36936,0.37563,0.3976,0.42635,0.42703,0.4348,0.46666,0.53582,0.54893,0.55414,0.55432,0.5748,0.6112,0.61597,0.64084,0.7161,0.78553,0.79434,0.83389,0.8552,0.87151,0.87721,0.89731,0.89849,0.91619,0.93973,0.9575,0.96414,0.98737,0.98806,0.9979,0.99991,1,0.99833,0.99589,0.99584,0.99411,0.93493,0.82237,0.78993,0.7889,0.78879,0.75157,0.68762,0.67798,0.67145,0.56609,0.55404,0.54759,0.44426,0.36682,0.32264,0.29497,0.26345,0.16635,0.13923,0.13621,0.10526,0.07732,0.066808,0.066771,0.053849,0.047542,0.043572,0.038917,0.035321,0.030779,0.029005,0.024336,0.0177,0.015302,0.012074,0.0073633,0.0069954,0.0057301,0.0050837,0.0035441,0.0018381,0.0015279,0.00090255,0.0005833,0.00045705,0.00029489,0.00027784,0.00026284,0.00019786,0.00016828,0.0001677,0.00014649,0.00013214,0.00011072,0.00010909,0.00010838,0.0001045,9.4492e-05,7.986e-05,7.3116e-05,4.8444e-05,4.8406e-05,2.9139e-05,2.8943e-05,2.592e-05,2.4127e-05,2.3034e-05,1.9795e-05,1.689e-05,1.0138e-05,9.4156e-06,7.4096e-06,2.5399e-06,1.8157e-06,1.6204e-06,7.9375e-07,7.2779e-07,6.6078e-07,3.1308e-07,2.811e-07,2.0358e-07,1.7844e-07,1.7049e-07,1.5613e-07,8.7626e-08,4.7791e-08,4.4872e-08,3.8093e-08,2.8429e-08,1.1554e-08,1.1099e-08,1.0409e-08,2.1402e-09,7.1783e-10,4.496e-10,3.6818e-10,2.1089e-10,1.6042e-10,1.405e-10,8.5121e-11,3.2398e-11,1.9089e-11,1.7113e-11,1.5302e-11,1.5045e-11,1.1736e-11,1.3482e-12,9.1358e-13,8.3828e-13,6.8199e-13,3.8123e-13,2.8582e-13,1.1763e-13,1.0496e-13,8.9738e-14,8.3262e-14,6.565e-14,4.5419e-14,3.8272e-14,3.3354e-14,2.0855e-14,1.7568e-14,1.0376e-14,9.0334e-15,5.8656e-15,5.2655e-15,4.4828e-15,4.4475e-15,3.9467e-15,2.8082e-15,1.3734e-15,1.3539e-15,7.423e-16,5.3801e-16,4.0616e-16,8.6542e-17,5.2645e-17,5.0114e-17,1.4358e-17,1.0725e-17,1.039e-17,5.4332e-18,5.3454e-18,3.1022e-18,1.4854e-18,5.3908e-19,4.5647e-19,3.0653e-19,1.3805e-19,9.7626e-20,7.1483e-20,5.1116e-20,1.8947e-20,1.1289e-20,1.1231e-20,8.588e-21,5.7223e-21,5.3643e-21,3.0516e-21,2.4486e-21,2.0101e-21,1.1748e-21,1.0175e-21,7.6576e-22,5.6147e-22,3.116e-22,1.8461e-22,2.9342e-23,2.3824e-23,1.8908e-23,1.2649e-23,7.4038e-24,6.9392e-24,3.1266e-24,2.9881e-24,2.3651e-24,1.7766e-24,1.1906e-24,8.8115e-27,6.1165e-27,5.1551e-27,3.7705e-27,3.3469e-27,2.3311e-27,6.2051e-28,5.1837e-28,3.7774e-28,2.6311e-28,2.0721e-28,6.7642e-29,6.1605e-29,2.2244e-29,6.7894e-30,2.4334e-30,2.2282e-30,7.0945e-31,2.5688e-31,2.4173e-31,1.5489e-31,6.1475e-32,6.0217e-32,5.751e-32,1.8465e-32,1.657e-32,8.5673e-33,6.187e-33,2.9747e-33,2.436e-33,9.2774e-34,7.7977e-34,2.873e-34,2.1977e-34 1,0.32919,0.33986,0.34587,0.36697,0.3947,0.39536,0.40287,0.4338,0.50149,0.5144,0.51954,0.51973,0.53998,0.57617,0.58093,0.60583,0.68193,0.75335,0.76252,0.804,0.82662,0.84408,0.85022,0.87204,0.87332,0.89281,0.91924,0.93976,0.94762,0.97668,0.97762,0.99251,0.99746,0.99833,1,0.99946,0.99944,0.9987,0.95337,0.85122,0.82054,0.81956,0.81946,0.78381,0.72168,0.71223,0.70581,0.60109,0.58897,0.58248,0.4774,0.39745,0.35135,0.32231,0.28905,0.18529,0.1559,0.15262,0.11879,0.087974,0.076294,0.076252,0.061818,0.05474,0.05027,0.045016,0.040946,0.03579,0.03377,0.028441,0.020823,0.018054,0.014312,0.0088106,0.0083783,0.0068878,0.0061239,0.0042963,0.0022528,0.0018782,0.0011187,0.00072783,0.00057237,0.00037165,0.00035046,0.0003318,0.00025078,0.00021377,0.00021303,0.00018645,0.00016842,0.00014146,0.0001394,0.00013851,0.00013361,0.00012098,0.00010248,9.3934e-05,6.2574e-05,6.2526e-05,3.7884e-05,3.7632e-05,3.3748e-05,3.1442e-05,3.0036e-05,2.586e-05,2.2109e-05,1.3353e-05,1.2413e-05,9.7963e-06,3.4e-06,2.4399e-06,2.1802e-06,1.0764e-06,9.8792e-07,8.9789e-07,4.2884e-07,3.8547e-07,2.8012e-07,2.4585e-07,2.3501e-07,2.1542e-07,1.2162e-07,6.6734e-08,6.2698e-08,5.3312e-08,3.9901e-08,1.6358e-08,1.5721e-08,1.4753e-08,3.0783e-09,1.0427e-09,6.558e-10,5.3798e-10,3.0964e-10,2.361e-10,2.0701e-10,1.2596e-10,4.8332e-11,2.8602e-11,2.5664e-11,2.297e-11,2.2586e-11,1.7654e-11,2.0635e-12,1.4025e-12,1.2878e-12,1.0493e-12,5.8921e-13,4.4272e-13,1.8343e-13,1.6382e-13,1.4022e-13,1.3017e-13,1.0282e-13,7.1327e-14,6.0179e-14,5.2499e-14,3.2938e-14,2.7782e-14,1.647e-14,1.4354e-14,9.3493e-15,8.3992e-15,7.1589e-15,7.1028e-15,6.3084e-15,4.4995e-15,2.2116e-15,2.1804e-15,1.2005e-15,8.7202e-16,6.5959e-16,1.4203e-16,8.6684e-17,8.2544e-17,2.3846e-17,1.7847e-17,1.7292e-17,9.0808e-18,8.935e-18,5.2037e-18,2.5035e-18,9.144e-19,7.7508e-19,5.2179e-19,2.3617e-19,1.6737e-19,1.2279e-19,8.7983e-20,3.2811e-20,1.9611e-20,1.951e-20,1.4943e-20,9.981e-21,9.3601e-21,5.3427e-21,4.2925e-21,3.5279e-21,2.0685e-21,1.7929e-21,1.3517e-21,9.9286e-22,5.5291e-22,3.2857e-22,5.2775e-23,4.2901e-23,3.4092e-23,2.286e-23,1.342e-23,1.2583e-23,5.6948e-24,5.4438e-24,4.3144e-24,3.2461e-24,2.1801e-24,1.6567e-26,1.1522e-26,9.72e-27,7.1209e-27,6.3249e-27,4.4135e-27,1.1829e-27,9.8914e-28,7.2197e-28,5.0381e-28,3.9725e-28,1.3042e-28,1.1884e-28,4.3131e-29,1.3243e-29,4.7708e-30,4.3704e-30,1.3994e-30,5.0921e-31,4.7932e-31,3.078e-31,1.2271e-31,1.2021e-31,1.1483e-31,3.707e-32,3.3284e-32,1.7263e-32,1.2486e-32,6.0242e-33,4.9378e-33,1.8891e-33,1.5891e-33,5.8823e-34,4.5052e-34 1,0.31324,0.32363,0.32947,0.35005,0.37715,0.37779,0.38515,0.41548,0.48218,0.49495,0.50004,0.50022,0.5203,0.55627,0.56102,0.58585,0.66218,0.7345,0.74383,0.78626,0.80954,0.82759,0.83395,0.85666,0.858,0.87843,0.9064,0.9284,0.93692,0.96918,0.97026,0.98797,0.99459,0.99589,0.99946,1,1,0.99984,0.9626,0.86682,0.83727,0.83632,0.83622,0.80161,0.74074,0.73144,0.7251,0.62107,0.60895,0.60245,0.49665,0.41542,0.36831,0.33851,0.30429,0.19674,0.16604,0.1626,0.12709,0.094553,0.082171,0.082127,0.066781,0.059233,0.054459,0.048839,0.044479,0.038945,0.036775,0.031038,0.022811,0.019811,0.015746,0.0097454,0.0092722,0.0076384,0.0067995,0.0047875,0.0025261,0.0021097,0.0012626,0.00082452,0.00064974,0.00042343,0.00039948,0.00037838,0.00028664,0.00024465,0.00024382,0.00021361,0.00019312,0.00016242,0.00016008,0.00015906,0.00015348,0.00013908,0.00011796,0.0001082,7.2298e-05,7.2243e-05,4.3935e-05,4.3644e-05,3.9171e-05,3.6513e-05,3.4891e-05,3.0073e-05,2.574e-05,1.5601e-05,1.451e-05,1.147e-05,4.0093e-06,2.8834e-06,2.5784e-06,1.2787e-06,1.1742e-06,1.0679e-06,5.1234e-07,4.6083e-07,3.3553e-07,2.9471e-07,2.818e-07,2.5844e-07,1.4639e-07,8.0609e-08,7.5761e-08,6.4479e-08,4.8339e-08,1.9916e-08,1.9144e-08,1.7972e-08,3.7816e-09,1.2882e-09,8.121e-10,6.6687e-10,3.8489e-10,2.9387e-10,2.5783e-10,1.5726e-10,6.0624e-11,3.5965e-11,3.2288e-11,2.8914e-11,2.8433e-11,2.225e-11,2.6264e-12,1.7882e-12,1.6425e-12,1.3396e-12,7.5413e-13,5.6734e-13,2.3597e-13,2.1083e-13,1.8058e-13,1.677e-13,1.3259e-13,9.2126e-14,7.7783e-14,6.7896e-14,4.2681e-14,3.6025e-14,2.1404e-14,1.8664e-14,1.2178e-14,1.0945e-14,9.3351e-15,9.2624e-15,8.2303e-15,5.8784e-15,2.8977e-15,2.8569e-15,1.5767e-15,1.1468e-15,8.6837e-16,1.881e-16,1.1503e-16,1.0955e-16,3.1797e-17,2.3824e-17,2.3086e-17,1.2153e-17,1.1959e-17,6.9785e-18,3.3664e-18,1.2341e-18,1.0467e-18,7.0564e-19,3.2029e-19,2.2726e-19,1.6691e-19,1.1974e-19,4.4807e-20,2.6829e-20,2.6692e-20,2.0462e-20,1.3687e-20,1.2838e-20,7.3419e-21,5.9031e-21,4.8549e-21,2.8518e-21,2.473e-21,1.8661e-21,1.3722e-21,7.6564e-22,4.5578e-22,7.3647e-23,5.9909e-23,4.7643e-23,3.1988e-23,1.8811e-23,1.7641e-23,8.0042e-24,7.6526e-24,6.0694e-24,4.5706e-24,3.0735e-24,2.3712e-26,1.6509e-26,1.3934e-26,1.0218e-26,9.0787e-27,6.342e-27,1.7065e-27,1.4277e-27,1.043e-27,7.2862e-28,5.7491e-28,1.8937e-28,1.726e-28,6.2825e-29,1.9356e-29,6.9931e-30,6.4077e-30,2.0583e-30,7.5111e-31,7.0715e-31,4.5466e-31,1.8172e-31,1.7803e-31,1.7008e-31,5.5078e-32,4.9467e-32,2.5703e-32,1.8607e-32,8.995e-33,7.3769e-33,2.8295e-33,2.3813e-33,8.8382e-34,6.7739e-34 1,0.31297,0.32335,0.3292,0.34977,0.37686,0.3775,0.38486,0.41518,0.48185,0.49462,0.49971,0.4999,0.51997,0.55593,0.56068,0.58551,0.66185,0.73417,0.74351,0.78595,0.80924,0.82731,0.83367,0.85639,0.85774,0.87818,0.90617,0.9282,0.93673,0.96905,0.97013,0.98789,0.99453,0.99584,0.99944,1,1,0.99985,0.96275,0.86708,0.83755,0.8366,0.8365,0.80191,0.74106,0.73176,0.72543,0.62141,0.60929,0.60279,0.49698,0.41572,0.3686,0.33879,0.30455,0.19694,0.16622,0.16277,0.12723,0.094668,0.082274,0.08223,0.066868,0.059312,0.054533,0.048906,0.044541,0.039001,0.036828,0.031084,0.022846,0.019842,0.015772,0.009762,0.0092881,0.0076517,0.0068115,0.0047962,0.002531,0.0021138,0.0012651,0.00082626,0.00065113,0.00042437,0.00040036,0.00037922,0.00028729,0.00024521,0.00024437,0.0002141,0.00019357,0.0001628,0.00016046,0.00015944,0.00015384,0.00013941,0.00011824,0.00010846,7.2475e-05,7.242e-05,4.4045e-05,4.3754e-05,3.927e-05,3.6605e-05,3.498e-05,3.015e-05,2.5806e-05,1.5642e-05,1.4548e-05,1.1501e-05,4.0205e-06,2.8916e-06,2.5857e-06,1.2825e-06,1.1777e-06,1.071e-06,5.1388e-07,4.6222e-07,3.3655e-07,2.9562e-07,2.8266e-07,2.5923e-07,1.4685e-07,8.0866e-08,7.6004e-08,6.4686e-08,4.8496e-08,1.9982e-08,1.9208e-08,1.8032e-08,3.7948e-09,1.2928e-09,8.1504e-10,6.693e-10,3.8631e-10,2.9496e-10,2.5879e-10,1.5786e-10,6.0857e-11,3.6105e-11,3.2413e-11,2.9026e-11,2.8544e-11,2.2337e-11,2.6371e-12,1.7955e-12,1.6493e-12,1.3452e-12,7.5728e-13,5.6972e-13,2.3697e-13,2.1174e-13,1.8136e-13,1.6842e-13,1.3316e-13,9.2526e-14,7.8122e-14,6.8192e-14,4.2868e-14,3.6184e-14,2.1499e-14,1.8747e-14,1.2233e-14,1.0994e-14,9.3771e-15,9.3041e-15,8.2674e-15,5.905e-15,2.9109e-15,2.87e-15,1.584e-15,1.1521e-15,8.7242e-16,1.89e-16,1.1558e-16,1.1008e-16,3.1953e-17,2.3941e-17,2.3199e-17,1.2213e-17,1.2018e-17,7.0132e-18,3.3833e-18,1.2404e-18,1.052e-18,7.0925e-19,3.2195e-19,2.2844e-19,1.6778e-19,1.2036e-19,4.5044e-20,2.6972e-20,2.6834e-20,2.0571e-20,1.376e-20,1.2907e-20,7.3815e-21,5.9351e-21,4.8812e-21,2.8673e-21,2.4865e-21,1.8763e-21,1.3797e-21,7.6987e-22,4.5831e-22,7.4064e-23,6.0248e-23,4.7914e-23,3.217e-23,1.8919e-23,1.7742e-23,8.0504e-24,7.6968e-24,6.1045e-24,4.5971e-24,3.0914e-24,2.3856e-26,1.661e-26,1.4019e-26,1.028e-26,9.1344e-27,6.381e-27,1.7171e-27,1.4366e-27,1.0495e-27,7.3318e-28,5.7852e-28,1.9057e-28,1.7369e-28,6.3226e-29,1.948e-29,7.0385e-30,6.4494e-30,2.0718e-30,7.5607e-31,7.1181e-31,4.5767e-31,1.8293e-31,1.7922e-31,1.7122e-31,5.5449e-32,4.98e-32,2.5876e-32,1.8733e-32,9.0563e-33,7.4272e-33,2.849e-33,2.3976e-33,8.8993e-34,6.8208e-34 1,0.30473,0.31496,0.32071,0.341,0.36774,0.36838,0.37565,0.40564,0.47175,0.48444,0.4895,0.48968,0.50964,0.54546,0.55019,0.57497,0.65136,0.72408,0.7335,0.7764,0.80001,0.81836,0.82484,0.848,0.84937,0.87029,0.89906,0.92185,0.93071,0.96468,0.96583,0.98506,0.99256,0.99411,0.9987,0.99984,0.99985,1,0.96723,0.87504,0.84615,0.84522,0.84512,0.81112,0.75101,0.74179,0.73551,0.63196,0.61985,0.61335,0.50724,0.42536,0.37772,0.34753,0.31279,0.20318,0.17177,0.16824,0.13179,0.0983,0.085526,0.08548,0.06962,0.061809,0.056863,0.051036,0.046511,0.040763,0.038507,0.032538,0.023962,0.02083,0.01658,0.010292,0.0097947,0.0080779,0.0071955,0.0050763,0.0026877,0.0022467,0.001348,0.00088214,0.00069594,0.00045443,0.00042884,0.00040629,0.00030817,0.00026321,0.00026232,0.00022996,0.00020799,0.00017506,0.00017254,0.00017145,0.00016546,0.00015,0.00012731,0.00011682,7.8187e-05,7.8128e-05,4.7609e-05,4.7296e-05,4.2467e-05,3.9596e-05,3.7844e-05,3.2638e-05,2.7952e-05,1.6975e-05,1.5792e-05,1.2494e-05,4.3844e-06,3.1569e-06,2.824e-06,1.404e-06,1.2896e-06,1.1732e-06,5.6428e-07,5.0772e-07,3.7006e-07,3.2518e-07,3.1097e-07,2.8528e-07,1.6189e-07,8.9313e-08,8.3959e-08,7.1491e-08,5.3644e-08,2.2162e-08,2.1306e-08,2.0004e-08,4.2287e-09,1.4449e-09,9.1208e-10,7.4938e-10,4.3316e-10,3.3097e-10,2.9049e-10,1.7742e-10,6.8566e-11,4.0732e-11,3.6577e-11,3.2764e-11,3.2221e-11,2.523e-11,2.9942e-12,2.0405e-12,1.8747e-12,1.5297e-12,8.6235e-13,6.492e-13,2.7058e-13,2.4182e-13,2.072e-13,1.9245e-13,1.5225e-13,1.0587e-13,8.9423e-14,7.808e-14,4.9135e-14,4.149e-14,2.468e-14,2.1527e-14,1.406e-14,1.264e-14,1.0784e-14,1.07e-14,9.5104e-15,6.7977e-15,3.3561e-15,3.309e-15,1.8286e-15,1.3309e-15,1.0084e-15,2.1915e-16,1.3415e-16,1.2778e-16,3.7183e-17,2.7876e-17,2.7013e-17,1.4239e-17,1.4012e-17,8.1857e-18,3.9545e-18,1.4526e-18,1.2324e-18,8.315e-19,3.78e-19,2.6839e-19,1.9723e-19,1.4158e-19,5.3082e-20,3.1814e-20,3.1652e-20,2.4277e-20,1.625e-20,1.5245e-20,8.7274e-21,7.02e-21,5.7755e-21,3.3959e-21,2.9456e-21,2.2239e-21,1.6362e-21,9.1392e-22,5.4456e-22,8.8282e-23,7.184e-23,5.7155e-23,3.8401e-23,2.2604e-23,2.12e-23,9.6323e-24,9.2099e-24,7.3074e-24,5.5057e-24,3.7048e-24,2.8818e-26,2.0076e-26,1.695e-26,1.2435e-26,1.1051e-26,7.7245e-27,2.0829e-27,1.7431e-27,1.2741e-27,8.9057e-28,7.0297e-28,2.3196e-28,2.1145e-28,7.709e-29,2.3794e-29,8.6104e-30,7.8908e-30,2.5391e-30,9.2801e-31,8.7376e-31,5.6216e-31,2.25e-31,2.2044e-31,2.1061e-31,6.8319e-32,6.1368e-32,3.1918e-32,2.3117e-32,1.1188e-32,9.1777e-33,3.5252e-33,2.9675e-33,1.103e-33,8.457e-34 1,0.19798,0.20577,0.21018,0.22586,0.24689,0.2474,0.25319,0.27738,0.33252,0.3434,0.34776,0.34792,0.36528,0.39707,0.40133,0.42387,0.49608,0.56916,0.57899,0.62497,0.65123,0.67219,0.67972,0.70722,0.70888,0.73469,0.77198,0.80346,0.81633,0.87066,0.87271,0.91104,0.93024,0.93493,0.95337,0.9626,0.96275,0.96723,1,0.96713,0.95012,0.94954,0.94948,0.92716,0.8831,0.8759,0.87094,0.78275,0.77172,0.76574,0.66277,0.57659,0.52376,0.48922,0.44843,0.31157,0.26971,0.26492,0.21434,0.16579,0.14663,0.14657,0.1222,0.10992,0.10205,0.092655,0.085267,0.075753,0.071976,0.061851,0.046914,0.041319,0.033584,0.021735,0.020773,0.017412,0.015659,0.011363,0.0063186,0.0053528,0.0033327,0.0022466,0.0018013,0.0012101,0.0011463,0.0010899,0.0008416,0.00072609,0.0007238,0.00063981,0.00058235,0.00049545,0.00048878,0.00048587,0.00046992,0.0004286,0.00036744,0.00033892,0.00023238,0.00023221,0.00014567,0.00014477,0.0001308,0.00012245,0.00011733,0.00010205,8.8167e-05,5.5051e-05,5.1418e-05,4.1205e-05,1.5286e-05,1.1195e-05,1.0072e-05,5.1868e-06,4.7844e-06,4.3728e-06,2.1796e-06,1.9711e-06,1.4585e-06,1.2895e-06,1.2358e-06,1.1383e-06,6.6324e-07,3.7598e-07,3.5443e-07,3.04e-07,2.3106e-07,9.9247e-08,9.5577e-08,8.9984e-08,2.0319e-08,7.2551e-09,4.6653e-09,3.8633e-09,2.282e-09,1.7622e-09,1.5545e-09,9.6772e-10,3.878e-10,2.3492e-10,2.118e-10,1.905e-10,1.8746e-10,1.4812e-10,1.8988e-11,1.3116e-11,1.2086e-11,9.933e-12,5.7123e-12,4.3427e-12,1.865e-12,1.6731e-12,1.4411e-12,1.3418e-12,1.0699e-12,7.5314e-13,6.3973e-13,5.6111e-13,3.5856e-13,3.0445e-13,1.8421e-13,1.614e-13,1.0688e-13,9.6411e-14,8.2679e-14,8.2056e-14,7.321e-14,5.2894e-14,2.6707e-14,2.6344e-14,1.4832e-14,1.0903e-14,8.3326e-15,1.8978e-15,1.1791e-15,1.1248e-15,3.3962e-16,2.568e-16,2.4908e-16,1.3379e-16,1.3172e-16,7.8167e-17,3.8567e-17,1.4579e-17,1.2427e-17,8.4786e-18,3.9409e-18,2.8251e-18,2.0939e-18,1.517e-18,5.8434e-19,3.5516e-19,3.5339e-19,2.7301e-19,1.8475e-19,1.7361e-19,1.009e-19,8.1632e-20,6.7513e-20,4.0262e-20,3.5056e-20,2.6665e-20,1.9778e-20,1.1218e-20,6.7752e-21,1.1513e-21,9.418e-22,7.5367e-22,5.1152e-22,3.0517e-22,2.8668e-22,1.3287e-22,1.2718e-22,1.015e-22,7.7013e-23,5.2337e-23,4.5813e-25,3.2191e-25,2.7287e-25,2.0167e-25,1.7972e-25,1.2669e-25,3.5225e-26,2.9601e-26,2.1795e-26,1.5361e-26,1.2191e-26,4.1266e-27,3.7697e-27,1.4063e-27,4.4575e-28,1.6502e-28,1.5152e-28,5e-29,1.8684e-29,1.7615e-29,1.1443e-29,4.6723e-30,4.5796e-30,4.3798e-30,1.4558e-30,1.3107e-30,6.9133e-31,5.0418e-31,2.4781e-31,2.0414e-31,8.002e-32,6.7605e-32,2.5656e-32,1.9781e-32 1,0.12023,0.12566,0.12875,0.13984,0.15495,0.15531,0.15952,0.17731,0.21912,0.22756,0.23097,0.23109,0.24477,0.27023,0.27368,0.29214,0.35324,0.41832,0.42733,0.4704,0.4957,0.51629,0.52377,0.55154,0.55323,0.57998,0.61987,0.65488,0.66959,0.73491,0.7375,0.78805,0.8154,0.82237,0.85122,0.86682,0.86708,0.87504,0.96713,1,0.99812,0.998,0.99799,0.99154,0.97159,0.96771,0.96495,0.90719,0.89905,0.89456,0.81038,0.73146,0.67971,0.64456,0.60172,0.44723,0.39642,0.3905,0.32634,0.26177,0.23537,0.23527,0.20081,0.18304,0.17147,0.1575,0.14636,0.13182,0.12597,0.11009,0.08601,0.076754,0.063702,0.042991,0.041262,0.035151,0.031916,0.023822,0.013914,0.011946,0.0077188,0.0053599,0.0043677,0.0030191,0.0028709,0.0027392,0.0021535,0.0018767,0.0018712,0.001668,0.0015278,0.0013139,0.0012973,0.0012901,0.0012506,0.0011475,0.00099373,0.00092141,0.00064718,0.00064675,0.00041769,0.00041526,0.00037752,0.00035485,0.00034091,0.00029902,0.00026062,0.00016732,0.0001569,0.00012736,4.9956e-05,3.7211e-05,3.367e-05,1.7962e-05,1.6638e-05,1.5279e-05,7.8927e-06,7.1741e-06,5.3892e-06,4.794e-06,4.604e-06,4.258e-06,2.5475e-06,1.484e-06,1.4029e-06,1.212e-06,9.3318e-07,4.1677e-07,4.0204e-07,3.7956e-07,9.1558e-08,3.4167e-08,2.2381e-08,1.868e-08,1.1276e-08,8.8e-09,7.8026e-09,4.9512e-09,2.0574e-09,1.271e-09,1.1505e-09,1.0391e-09,1.0231e-09,8.1581e-10,1.1297e-10,7.9105e-11,7.3111e-11,6.0516e-11,3.5504e-11,2.7258e-11,1.2062e-11,1.0863e-11,9.4054e-12,8.7795e-12,7.056e-12,5.0277e-12,4.2947e-12,3.784e-12,2.4554e-12,2.0966e-12,1.2903e-12,1.1356e-12,7.6246e-13,6.9018e-13,5.9492e-13,5.9059e-13,5.2892e-13,3.8628e-13,1.9947e-13,1.9685e-13,1.1292e-13,8.3837e-14,6.4629e-14,1.5428e-14,9.7293e-15,9.2946e-15,2.9122e-15,2.2209e-15,2.1562e-15,1.1802e-15,1.1625e-15,7.0081e-16,3.5315e-16,1.3739e-16,1.1766e-16,8.1177e-17,3.858e-17,2.7923e-17,2.0875e-17,1.5264e-17,6.0408e-18,3.7234e-18,3.7053e-18,2.8833e-18,1.9725e-18,1.8569e-18,1.0955e-18,8.9153e-19,7.4119e-19,4.4833e-19,3.9184e-19,3.0028e-19,2.2454e-19,1.2933e-19,7.9176e-20,1.4103e-20,1.1598e-20,9.3357e-21,6.4008e-21,3.8703e-21,3.6417e-21,1.7217e-21,1.6499e-21,1.3244e-21,1.012e-21,6.9459e-22,6.8434e-24,4.8503e-24,4.1279e-24,3.0733e-24,2.7465e-24,1.9524e-24,5.5982e-25,4.7239e-25,3.5036e-25,2.4899e-25,1.987e-25,6.8997e-26,6.3163e-26,2.4112e-26,7.8485e-27,2.9726e-27,2.7348e-27,9.2549e-28,3.536e-28,3.3381e-28,2.1896e-28,9.1209e-29,8.9439e-29,8.5623e-29,2.9162e-29,2.6317e-29,1.4078e-29,1.0338e-29,5.1605e-30,4.2692e-30,1.7078e-30,1.4481e-30,5.6112e-31,4.3504e-31 1,0.10577,0.11069,0.11349,0.12358,0.13737,0.13771,0.14156,0.15789,0.19653,0.20438,0.20755,0.20767,0.22041,0.24424,0.24748,0.26484,0.32271,0.38504,0.39373,0.43543,0.46008,0.48022,0.48755,0.51486,0.51653,0.54298,0.58267,0.61777,0.6326,0.69905,0.7017,0.75395,0.78259,0.78993,0.82054,0.83727,0.83755,0.84615,0.95012,0.99812,1,1,1,0.99762,0.98416,0.98119,0.97905,0.93034,0.92312,0.91911,0.84169,0.76638,0.71601,0.68143,0.6389,0.48252,0.43012,0.42398,0.35705,0.28888,0.26077,0.26066,0.22373,0.20456,0.19205,0.17689,0.16476,0.14887,0.14246,0.125,0.098345,0.088036,0.073429,0.050051,0.048085,0.041121,0.037422,0.02812,0.016617,0.014312,0.009329,0.0065239,0.0053367,0.0037139,0.0035348,0.0033755,0.002665,0.0023281,0.0023214,0.0020733,0.0019019,0.0016398,0.0016195,0.0016107,0.0015621,0.0014355,0.001246,0.0011568,0.00081718,0.00081664,0.00053106,0.00052802,0.00048075,0.0004523,0.00043481,0.00038214,0.00033377,0.0002157,0.00020246,0.00016484,6.5517e-05,4.9e-05,4.4397e-05,2.3883e-05,2.2146e-05,2.0359e-05,1.0607e-05,9.6525e-06,7.277e-06,6.4827e-06,6.2289e-06,5.7664e-06,3.4716e-06,2.0355e-06,1.9255e-06,1.6664e-06,1.2869e-06,5.801e-07,5.5984e-07,5.2887e-07,1.2959e-07,4.8868e-08,3.2153e-08,2.6885e-08,1.6314e-08,1.2763e-08,1.133e-08,7.2224e-09,3.0272e-09,1.8788e-09,1.7023e-09,1.5389e-09,1.5155e-09,1.211e-09,1.708e-10,1.1998e-10,1.1097e-10,9.2009e-11,5.4238e-11,4.1738e-11,1.8602e-11,1.6767e-11,1.4536e-11,1.3576e-11,1.0932e-11,7.8118e-12,6.6819e-12,5.8936e-12,3.8383e-12,3.2817e-12,2.0279e-12,1.7866e-12,1.2035e-12,1.0903e-12,9.4095e-13,9.3416e-13,8.3737e-13,6.1312e-13,3.183e-13,3.1415e-13,1.8101e-13,1.3471e-13,1.0406e-13,2.5119e-14,1.5897e-14,1.5192e-14,4.8019e-15,3.6694e-15,3.5633e-15,1.9592e-15,1.93e-15,1.1678e-15,5.9144e-16,2.3167e-16,1.9862e-16,1.374e-16,6.5646e-17,4.762e-17,3.5674e-17,2.6142e-17,1.0412e-17,6.4392e-18,6.4082e-18,4.9952e-18,3.4261e-18,3.2266e-18,1.9104e-18,1.5568e-18,1.2959e-18,7.8652e-19,6.8804e-19,5.282e-19,3.9573e-19,2.2876e-19,1.405e-19,2.5307e-20,2.0839e-20,1.6797e-20,1.1544e-20,7.0027e-21,6.5916e-21,3.1311e-21,3.0013e-21,2.4125e-21,1.8466e-21,1.2704e-21,1.2872e-23,9.1419e-24,7.7878e-24,5.8082e-24,5.1941e-24,3.6998e-24,1.0686e-24,9.0262e-25,6.7061e-25,4.7752e-25,3.8157e-25,1.333e-25,1.2209e-25,4.6863e-26,1.535e-26,5.8454e-27,5.3802e-27,1.8317e-27,7.0353e-28,6.6437e-28,4.3679e-28,1.8281e-28,1.7928e-28,1.7167e-28,5.8809e-29,5.31e-29,2.85e-29,2.0963e-29,1.0503e-29,8.6978e-30,3.4961e-30,2.967e-30,1.1554e-30,8.9698e-31 1,0.10534,0.11025,0.11305,0.12311,0.13686,0.13719,0.14103,0.15732,0.19586,0.20369,0.20686,0.20697,0.21969,0.24346,0.2467,0.26402,0.3218,0.38404,0.39272,0.43438,0.459,0.47912,0.48645,0.51374,0.51541,0.54185,0.58153,0.61663,0.63146,0.69793,0.70058,0.75288,0.78155,0.7889,0.81956,0.83632,0.8366,0.84522,0.94954,0.998,1,1,1,0.99775,0.98449,0.98155,0.97943,0.931,0.92381,0.91982,0.84262,0.76743,0.71712,0.68255,0.64004,0.48362,0.43117,0.42503,0.35801,0.28974,0.26157,0.26147,0.22446,0.20525,0.19271,0.17751,0.16535,0.14941,0.14299,0.12548,0.098746,0.088403,0.073746,0.050282,0.04831,0.041318,0.037604,0.028262,0.016707,0.014391,0.009383,0.0065631,0.0053694,0.0037375,0.0035573,0.0033971,0.0026824,0.0023435,0.0023367,0.0020871,0.0019147,0.001651,0.0016305,0.0016216,0.0015727,0.0014453,0.0012547,0.0011649,0.00082302,0.00082248,0.00053497,0.0005319,0.00048431,0.00045566,0.00043805,0.00038501,0.0003363,0.00021738,0.00020405,0.00016615,6.6063e-05,4.9414e-05,4.4773e-05,2.4092e-05,2.234e-05,2.0538e-05,1.0703e-05,9.7405e-06,7.3442e-06,6.5428e-06,6.2867e-06,5.8201e-06,3.5046e-06,2.0553e-06,1.9442e-06,1.6827e-06,1.2997e-06,5.86e-07,5.6554e-07,5.3426e-07,1.3098e-07,4.9406e-08,3.2512e-08,2.7187e-08,1.6499e-08,1.2909e-08,1.146e-08,7.3063e-09,3.0632e-09,1.9014e-09,1.7229e-09,1.5575e-09,1.5338e-09,1.2258e-09,1.7298e-10,1.2152e-10,1.124e-10,9.3198e-11,5.4946e-11,4.2287e-11,1.885e-11,1.6992e-11,1.4731e-11,1.3759e-11,1.1079e-11,7.918e-12,6.773e-12,5.9742e-12,3.8912e-12,3.3271e-12,2.0562e-12,1.8116e-12,1.2205e-12,1.1057e-12,9.5427e-13,9.4738e-13,8.4924e-13,6.2186e-13,3.2289e-13,3.1868e-13,1.8365e-13,1.3668e-13,1.0559e-13,2.5497e-14,1.6138e-14,1.5422e-14,4.876e-15,3.7263e-15,3.6186e-15,1.9899e-15,1.9602e-15,1.1862e-15,6.0086e-16,2.3541e-16,2.0184e-16,1.3963e-16,6.6724e-17,4.8406e-17,3.6264e-17,2.6576e-17,1.0588e-17,6.5483e-18,6.5168e-18,5.0801e-18,3.4846e-18,3.2817e-18,1.9432e-18,1.5837e-18,1.3183e-18,8.002e-19,7.0002e-19,5.3743e-19,4.0267e-19,2.3279e-19,1.43e-19,2.5765e-20,2.1216e-20,1.7102e-20,1.1755e-20,7.1312e-21,6.7127e-21,3.1891e-21,3.0569e-21,2.4573e-21,1.881e-21,1.2941e-21,1.3124e-23,9.3215e-24,7.941e-24,5.9228e-24,5.2966e-24,3.7731e-24,1.09e-24,9.2073e-25,6.841e-25,4.8716e-25,3.8929e-25,1.3602e-25,1.2458e-25,4.7828e-26,1.567e-26,5.968e-27,5.4931e-27,1.8705e-27,7.1854e-28,6.7855e-28,4.4614e-28,1.8675e-28,1.8315e-28,1.7538e-28,6.0089e-29,5.4257e-29,2.9124e-29,2.1423e-29,1.0735e-29,8.8899e-30,3.5738e-30,3.033e-30,1.1813e-30,9.1712e-31 1,0.1053,0.1102,0.113,0.12306,0.1368,0.13714,0.14097,0.15726,0.19579,0.20362,0.20678,0.2069,0.21961,0.24338,0.24661,0.26393,0.3217,0.38393,0.39261,0.43426,0.45888,0.479,0.48633,0.51362,0.51529,0.54172,0.58141,0.6165,0.63133,0.69781,0.70046,0.75277,0.78144,0.78879,0.81946,0.83622,0.8365,0.84512,0.94948,0.99799,1,1,1,0.99776,0.98452,0.98159,0.97947,0.93108,0.92389,0.9199,0.84272,0.76755,0.71723,0.68267,0.64017,0.48374,0.43129,0.42514,0.35812,0.28984,0.26166,0.26156,0.22454,0.20533,0.19278,0.17758,0.16542,0.14947,0.14305,0.12553,0.098789,0.088443,0.073781,0.050307,0.048334,0.041339,0.037623,0.028278,0.016717,0.0144,0.0093889,0.0065673,0.005373,0.00374,0.0035597,0.0033994,0.0026843,0.0023451,0.0023384,0.0020886,0.0019161,0.0016522,0.0016317,0.0016228,0.0015739,0.0014464,0.0012556,0.0011657,0.00082365,0.00082311,0.00053539,0.00053233,0.0004847,0.00045603,0.0004384,0.00038532,0.00033657,0.00021757,0.00020422,0.00016629,6.6122e-05,4.9459e-05,4.4814e-05,2.4115e-05,2.2361e-05,2.0558e-05,1.0713e-05,9.7501e-06,7.3515e-06,6.5494e-06,6.293e-06,5.8259e-06,3.5082e-06,2.0574e-06,1.9463e-06,1.6845e-06,1.301e-06,5.8664e-07,5.6616e-07,5.3485e-07,1.3113e-07,4.9465e-08,3.2551e-08,2.722e-08,1.6519e-08,1.2925e-08,1.1474e-08,7.3155e-09,3.0671e-09,1.9038e-09,1.7251e-09,1.5596e-09,1.5358e-09,1.2274e-09,1.7322e-10,1.2169e-10,1.1255e-10,9.3327e-11,5.5024e-11,4.2346e-11,1.8877e-11,1.7016e-11,1.4752e-11,1.3779e-11,1.1095e-11,7.9296e-12,6.783e-12,5.983e-12,3.897e-12,3.3321e-12,2.0593e-12,1.8143e-12,1.2223e-12,1.1074e-12,9.5572e-13,9.4882e-13,8.5054e-13,6.2282e-13,3.2339e-13,3.1917e-13,1.8394e-13,1.3689e-13,1.0576e-13,2.5538e-14,1.6164e-14,1.5447e-14,4.8841e-15,3.7325e-15,3.6246e-15,1.9932e-15,1.9635e-15,1.1883e-15,6.0189e-16,2.3582e-16,2.0219e-16,1.3988e-16,6.6842e-17,4.8492e-17,3.6329e-17,2.6624e-17,1.0607e-17,6.5602e-18,6.5287e-18,5.0894e-18,3.491e-18,3.2877e-18,1.9468e-18,1.5866e-18,1.3208e-18,8.0169e-19,7.0133e-19,5.3844e-19,4.0343e-19,2.3324e-19,1.4327e-19,2.5815e-20,2.1258e-20,1.7136e-20,1.1778e-20,7.1453e-21,6.7259e-21,3.1954e-21,3.063e-21,2.4622e-21,1.8848e-21,1.2967e-21,1.3152e-23,9.3411e-24,7.9578e-24,5.9353e-24,5.3079e-24,3.7811e-24,1.0924e-24,9.2271e-25,6.8558e-25,4.8821e-25,3.9013e-25,1.3632e-25,1.2486e-25,4.7934e-26,1.5705e-26,5.9814e-27,5.5055e-27,1.8747e-27,7.2018e-28,6.8011e-28,4.4717e-28,1.8719e-28,1.8357e-28,1.7578e-28,6.0229e-29,5.4383e-29,2.9192e-29,2.1474e-29,1.076e-29,8.911e-30,3.5823e-30,3.0403e-30,1.1841e-30,9.1933e-31 1,0.091154,0.095537,0.098039,0.10706,0.11944,0.11974,0.1232,0.13795,0.17311,0.1803,0.18321,0.18331,0.19501,0.21699,0.21999,0.23609,0.2902,0.34919,0.35747,0.39741,0.42116,0.44066,0.44777,0.47437,0.476,0.5019,0.54105,0.57594,0.59076,0.65782,0.66052,0.71414,0.74389,0.75157,0.78381,0.80161,0.80191,0.81112,0.92716,0.99154,0.99762,0.99775,0.99776,1,0.994,0.99211,0.99069,0.95279,0.9467,0.94329,0.87441,0.80404,0.75576,0.72217,0.68041,0.5232,0.46934,0.463,0.39329,0.32131,0.29132,0.29121,0.25151,0.23078,0.21719,0.20066,0.18739,0.16993,0.16287,0.14355,0.11383,0.10226,0.08577,0.05912,0.056863,0.048838,0.044559,0.033736,0.020199,0.017459,0.011494,0.0081015,0.006656,0.0046674,0.0044468,0.0042505,0.0033719,0.0029536,0.0029452,0.0026364,0.0024225,0.0020947,0.0020692,0.0020582,0.0019972,0.0018383,0.0016,0.0014875,0.0010576,0.0010569,0.00069266,0.00068876,0.00062814,0.00059161,0.00056912,0.00050131,0.00043888,0.00028575,0.0002685,0.00021935,8.849e-05,6.6481e-05,6.0328e-05,3.2761e-05,3.0412e-05,2.7992e-05,1.4723e-05,1.3417e-05,1.0156e-05,9.0624e-06,8.7124e-06,8.0742e-06,4.8955e-06,2.8913e-06,2.7371e-06,2.3734e-06,1.8393e-06,8.3774e-07,8.0884e-07,7.6466e-07,1.907e-07,7.2764e-08,4.8113e-08,4.0315e-08,2.4605e-08,1.9304e-08,1.716e-08,1.0995e-08,4.6532e-09,2.903e-09,2.6332e-09,2.3831e-09,2.3472e-09,1.8802e-09,2.7071e-10,1.9085e-10,1.7666e-10,1.4675e-10,8.6969e-11,6.7102e-11,3.0146e-11,2.7201e-11,2.3613e-11,2.207e-11,1.7808e-11,1.2767e-11,1.0937e-11,9.6584e-12,6.316e-12,5.4082e-12,3.3571e-12,2.9612e-12,2.0021e-12,1.8155e-12,1.5689e-12,1.5577e-12,1.3977e-12,1.0264e-12,5.3604e-13,5.2911e-13,3.064e-13,2.2863e-13,1.7702e-13,4.3269e-14,2.7492e-14,2.6284e-14,8.3904e-15,6.4262e-15,6.2419e-15,3.4494e-15,3.3983e-15,2.065e-15,1.0517e-15,4.1513e-16,3.5636e-16,2.4725e-16,1.1883e-16,8.6424e-17,6.4891e-17,4.7669e-17,1.9125e-17,1.1871e-17,1.1815e-17,9.2274e-18,6.3473e-18,5.9804e-18,3.5551e-18,2.9017e-18,2.4188e-18,1.4736e-18,1.2904e-18,9.9258e-19,7.4526e-19,4.3258e-19,2.6665e-19,4.8637e-20,4.0105e-20,3.2378e-20,2.2313e-20,1.3583e-20,1.2792e-20,6.1086e-21,5.8572e-21,4.7152e-21,3.6161e-21,2.4942e-21,2.6085e-23,1.8568e-23,1.5834e-23,1.1833e-23,1.0589e-23,7.5599e-24,2.2015e-24,1.8616e-24,1.3858e-24,9.8897e-25,7.9141e-25,2.7837e-25,2.551e-25,9.8521e-26,3.2502e-26,1.2452e-26,1.1467e-26,3.9303e-27,1.5186e-27,1.4346e-27,9.4558e-28,3.9788e-28,3.9024e-28,3.7378e-28,1.2888e-28,1.1644e-28,6.2731e-29,4.6228e-29,2.3257e-29,1.9281e-29,7.7922e-30,6.6194e-30,2.5921e-30,2.0153e-30 1,0.071267,0.074871,0.076933,0.084393,0.094693,0.094944,0.097841,0.11023,0.14012,0.14628,0.14878,0.14887,0.15897,0.17805,0.18067,0.19477,0.24274,0.29603,0.30359,0.34033,0.3624,0.38062,0.3873,0.4124,0.41395,0.4386,0.47623,0.51017,0.5247,0.59141,0.59413,0.64874,0.67959,0.68762,0.72168,0.74074,0.74106,0.75101,0.8831,0.97159,0.98416,0.98449,0.98452,0.994,1,0.99987,0.99963,0.97994,0.97582,0.97345,0.91999,0.85927,0.81551,0.78427,0.74468,0.58923,0.53392,0.52734,0.45413,0.37679,0.34401,0.34389,0.29998,0.2768,0.26151,0.24279,0.22768,0.20766,0.19952,0.17711,0.14223,0.12848,0.10872,0.076283,0.073502,0.063565,0.058231,0.044618,0.027278,0.023712,0.015857,0.011319,0.0093636,0.0066459,0.006342,0.0060711,0.004853,0.0042692,0.0042574,0.0038245,0.0035238,0.0030608,0.0030248,0.0030091,0.0029228,0.0026971,0.0023576,0.0021967,0.0015778,0.0015769,0.0010462,0.0010405,0.00095145,0.00089765,0.00086448,0.00076421,0.00067154,0.00044243,0.00041642,0.00034205,0.00014129,0.00010692,9.7256e-05,5.361e-05,4.9856e-05,4.5981e-05,2.4555e-05,2.2425e-05,1.7083e-05,1.5283e-05,1.4706e-05,1.3653e-05,8.371e-06,5.0014e-06,4.7403e-06,4.1231e-06,3.2128e-06,1.4877e-06,1.4375e-06,1.3605e-06,3.4895e-07,1.3566e-07,9.041e-08,7.601e-08,4.682e-08,3.6898e-08,3.2871e-08,2.1232e-08,9.1254e-09,5.7407e-09,5.2161e-09,4.7287e-09,4.6588e-09,3.7462e-09,5.5734e-10,3.952e-10,3.6627e-10,3.0519e-10,1.8241e-10,1.4132e-10,6.4303e-11,5.8115e-11,5.0563e-11,4.7308e-11,3.8301e-11,2.7601e-11,2.3701e-11,2.0971e-11,1.3803e-11,1.1847e-11,7.4075e-12,6.5462e-12,4.4521e-12,4.043e-12,3.5015e-12,3.4769e-12,3.1248e-12,2.3051e-12,1.2154e-12,1.1999e-12,7.0039e-13,5.2482e-13,4.0784e-13,1.017e-13,6.5027e-14,6.2206e-14,2.0172e-14,1.5506e-14,1.5067e-14,8.3932e-15,8.2707e-15,5.0592e-15,2.5999e-15,1.0388e-15,8.9354e-16,6.229e-16,3.0222e-16,2.2069e-16,1.6631e-16,1.2265e-16,4.9776e-17,3.1082e-17,3.0935e-17,2.4235e-17,1.6748e-17,1.5791e-17,9.4473e-18,7.7303e-18,6.458e-18,3.9581e-18,3.4716e-18,2.6789e-18,2.0183e-18,1.1792e-18,7.3106e-19,1.3604e-19,1.1243e-19,9.0988e-20,6.2974e-20,3.8557e-20,3.6334e-20,1.7498e-20,1.6786e-20,1.3547e-20,1.042e-20,7.2176e-21,7.9365e-23,5.6701e-23,4.8437e-23,3.6308e-23,3.2532e-23,2.3309e-23,6.8768e-24,5.8252e-24,4.3498e-24,3.1152e-24,2.4987e-24,8.8844e-25,8.1492e-25,3.1781e-25,1.0604e-25,4.1019e-26,3.7806e-26,1.3097e-26,5.1083e-27,4.8284e-27,3.1957e-27,1.3561e-27,1.3304e-27,1.2748e-27,4.4412e-28,4.0165e-28,2.1768e-28,1.6088e-28,8.1475e-29,6.7668e-29,2.7583e-29,2.3468e-29,9.2714e-30,7.2255e-30 1,0.068661,0.072158,0.074159,0.081405,0.091417,0.091662,0.09448,0.10654,0.13568,0.1417,0.14415,0.14423,0.1541,0.17277,0.17533,0.18914,0.2362,0.28863,0.29608,0.33231,0.35411,0.37212,0.37873,0.40358,0.40511,0.42954,0.46689,0.50063,0.5151,0.58163,0.58434,0.63899,0.66993,0.67798,0.71223,0.73144,0.73176,0.74179,0.8759,0.96771,0.98119,0.98155,0.98159,0.99211,0.99987,1,0.99994,0.98301,0.97918,0.97697,0.92596,0.86683,0.82385,0.79305,0.75387,0.59902,0.5436,0.53699,0.46338,0.38534,0.35218,0.35206,0.30756,0.28402,0.26848,0.24944,0.23406,0.21366,0.20536,0.18249,0.14682,0.13274,0.11247,0.07912,0.076255,0.066013,0.06051,0.046446,0.028483,0.02478,0.01661,0.011878,0.0098362,0.0069938,0.0066755,0.0063918,0.005115,0.0045026,0.0044902,0.0040358,0.0037199,0.0032334,0.0031955,0.003179,0.0030882,0.0028509,0.0024935,0.0023241,0.0016719,0.0016708,0.0011106,0.0011046,0.0010104,0.00095351,0.00091843,0.00081233,0.00071422,0.00047137,0.00044376,0.00036481,0.00015121,0.00011455,0.00010423,5.7584e-05,5.3565e-05,4.9417e-05,2.6448e-05,2.4162e-05,1.8424e-05,1.6489e-05,1.5869e-05,1.4735e-05,9.0499e-06,5.4162e-06,5.1343e-06,4.4679e-06,3.4842e-06,1.6174e-06,1.5629e-06,1.4795e-06,3.8103e-07,1.4854e-07,9.9109e-08,8.3364e-08,5.142e-08,4.0549e-08,3.6136e-08,2.3369e-08,1.0067e-08,6.3404e-09,5.7625e-09,5.2255e-09,5.1483e-09,4.1422e-09,6.1924e-10,4.3946e-10,4.0737e-10,3.3958e-10,2.0322e-10,1.5755e-10,7.1818e-11,6.4922e-11,5.6504e-11,5.2874e-11,4.2829e-11,3.0888e-11,2.6533e-11,2.3483e-11,1.5471e-11,1.3284e-11,8.3145e-12,7.3498e-12,5.003e-12,4.5442e-12,3.9369e-12,3.9092e-12,3.5142e-12,2.5941e-12,1.3697e-12,1.3523e-12,7.9025e-13,5.9252e-13,4.607e-13,1.1522e-13,7.374e-14,7.0548e-14,2.293e-14,1.7635e-14,1.7137e-14,9.5577e-15,9.4184e-15,5.7669e-15,2.9675e-15,1.1878e-15,1.022e-15,7.1296e-16,3.4639e-16,2.531e-16,1.9084e-16,1.4082e-16,5.7246e-17,3.5778e-17,3.5609e-17,2.7909e-17,1.93e-17,1.82e-17,1.0898e-17,8.9209e-18,7.4551e-18,4.5733e-18,4.0121e-18,3.0974e-18,2.3348e-18,1.3654e-18,8.4723e-19,1.5812e-19,1.3072e-19,1.0583e-19,7.3294e-20,4.4913e-20,4.2328e-20,2.041e-20,1.9581e-20,1.5808e-20,1.2165e-20,8.4313e-21,9.3399e-23,6.6763e-23,5.7046e-23,4.2782e-23,3.8339e-23,2.7484e-23,8.1242e-24,6.8837e-24,5.1425e-24,3.6848e-24,2.9566e-24,1.0529e-24,9.6592e-25,3.7725e-25,1.2607e-25,4.884e-26,4.502e-26,1.5621e-26,6.1011e-27,5.7673e-27,3.8195e-27,1.6228e-27,1.5921e-27,1.5256e-27,5.3232e-28,4.8148e-28,2.6118e-28,1.9311e-28,9.7893e-29,8.1325e-29,3.3192e-29,2.8247e-29,1.1174e-29,8.7111e-30 1,0.066943,0.070369,0.07233,0.079433,0.089254,0.089494,0.092259,0.1041,0.13274,0.13867,0.14107,0.14116,0.15087,0.16926,0.17178,0.18539,0.23185,0.28368,0.29106,0.32695,0.34856,0.36643,0.37299,0.39766,0.39918,0.42346,0.46061,0.49421,0.50863,0.57502,0.57773,0.63238,0.66337,0.67145,0.70581,0.7251,0.72543,0.73551,0.87094,0.96495,0.97905,0.97943,0.97947,0.99069,0.99963,0.99994,1,0.98494,0.98132,0.97922,0.92988,0.87186,0.82942,0.79892,0.76004,0.60564,0.55016,0.54354,0.46968,0.39117,0.35776,0.35764,0.31274,0.28897,0.27326,0.25401,0.23844,0.21779,0.20938,0.1862,0.14998,0.13567,0.11506,0.081085,0.078164,0.067711,0.062092,0.047717,0.029323,0.025525,0.017136,0.01227,0.010168,0.0072382,0.0069099,0.0066172,0.0052994,0.0046669,0.0046541,0.0041846,0.003858,0.003355,0.0033158,0.0032988,0.0032048,0.0029593,0.0025894,0.002414,0.0017384,0.0017373,0.0011562,0.0011499,0.0010522,0.00099309,0.00095666,0.00084645,0.00074449,0.00049192,0.00046319,0.00038099,0.00015829,0.00012,0.00010922,6.0427e-05,5.622e-05,5.1876e-05,2.7807e-05,2.5408e-05,1.9387e-05,1.7355e-05,1.6704e-05,1.5513e-05,9.5383e-06,5.7151e-06,5.4184e-06,4.7165e-06,3.6801e-06,1.7111e-06,1.6536e-06,1.5655e-06,4.0432e-07,1.5791e-07,1.0544e-07,8.8723e-08,5.4775e-08,4.3214e-08,3.8519e-08,2.493e-08,1.0756e-08,6.7801e-09,6.1631e-09,5.5897e-09,5.5073e-09,4.4328e-09,6.6484e-10,4.7209e-10,4.3767e-10,3.6495e-10,2.1858e-10,1.6953e-10,7.7379e-11,6.996e-11,6.0902e-11,5.6996e-11,4.6183e-11,3.3324e-11,2.8633e-11,2.5346e-11,1.671e-11,1.435e-11,8.9885e-12,7.9471e-12,5.4127e-12,4.9171e-12,4.2609e-12,4.231e-12,3.8041e-12,2.8093e-12,1.4848e-12,1.4659e-12,8.5733e-13,6.4308e-13,5.002e-13,1.2534e-13,8.0271e-14,7.6801e-14,2.5001e-14,1.9235e-14,1.8693e-14,1.0434e-14,1.0282e-14,6.2998e-15,3.2446e-15,1.3003e-15,1.119e-15,7.81e-16,3.798e-16,2.7763e-16,2.094e-16,1.5458e-16,6.2912e-17,3.9342e-17,3.9158e-17,3.0699e-17,2.1239e-17,2.003e-17,1.2002e-17,9.8267e-18,8.2139e-18,5.0418e-18,4.4238e-18,3.4163e-18,2.5761e-18,1.5075e-18,9.3593e-19,1.7502e-19,1.4472e-19,1.172e-19,8.1201e-20,4.9787e-20,4.6924e-20,2.2645e-20,2.1726e-20,1.7544e-20,1.3505e-20,9.3641e-21,1.0425e-22,7.4548e-23,6.3709e-23,4.7793e-23,4.2835e-23,3.0718e-23,9.092e-24,7.7051e-24,5.7579e-24,4.1272e-24,3.3123e-24,1.1809e-24,1.0834e-24,4.2354e-25,1.417e-25,5.4949e-26,5.0655e-26,1.7595e-26,6.8785e-27,6.5025e-27,4.3081e-27,1.832e-27,1.7973e-27,1.7224e-27,6.0159e-28,5.4419e-28,2.9537e-28,2.1846e-28,1.1081e-28,9.2075e-29,3.7612e-29,3.2013e-29,1.2675e-29,9.8836e-30 1,0.04397,0.046394,0.047787,0.052858,0.059938,0.060112,0.06212,0.070777,0.092123,0.096601,0.098423,0.098488,0.10589,0.12004,0.122,0.13261,0.16953,0.2119,0.21803,0.24817,0.26658,0.28196,0.28763,0.30914,0.31048,0.33192,0.3652,0.39581,0.4091,0.47151,0.4741,0.52716,0.55797,0.56609,0.60109,0.62107,0.62141,0.63196,0.78275,0.90719,0.93034,0.931,0.93108,0.95279,0.97994,0.98301,0.98494,1,0.9998,0.99953,0.97879,0.94076,0.90879,0.88432,0.85172,0.71023,0.65556,0.64892,0.5731,0.48916,0.45237,0.45223,0.40175,0.37453,0.35634,0.33383,0.31544,0.29077,0.28064,0.25242,0.20742,0.18929,0.16281,0.11802,0.11409,0.09992,0.092221,0.072232,0.045882,0.040302,0.02774,0.020264,0.016976,0.012319,0.011791,0.011318,0.0091746,0.0081346,0.0081136,0.0073362,0.0067926,0.0059499,0.005884,0.0058553,0.0056971,0.0052821,0.0046534,0.0043535,0.0031864,0.0031845,0.0021613,0.0021501,0.0019756,0.0018697,0.0018043,0.0016055,0.0014205,0.00095639,0.00090294,0.00074913,0.00032316,0.0002478,0.00022641,0.00012828,0.00011969,0.00011079,6.0832e-05,5.5775e-05,4.2993e-05,3.8647e-05,3.7249e-05,3.469e-05,2.1712e-05,1.325e-05,1.2586e-05,1.101e-05,8.6652e-06,4.1363e-06,4.0019e-06,3.7957e-06,1.0249e-06,4.1238e-07,2.7882e-07,2.3585e-07,1.4775e-07,1.174e-07,1.0501e-07,6.8845e-08,3.0437e-08,1.9441e-08,1.772e-08,1.6116e-08,1.5885e-08,1.2864e-08,2.0325e-09,1.4565e-09,1.353e-09,1.1336e-09,6.8818e-10,5.3729e-10,2.5024e-10,2.2683e-10,1.9816e-10,1.8576e-10,1.5132e-10,1.1009e-10,9.4951e-11,8.4307e-11,5.616e-11,4.8411e-11,3.0673e-11,2.7201e-11,1.87e-11,1.7027e-11,1.4806e-11,1.4705e-11,1.3255e-11,9.86e-12,5.2906e-12,5.2251e-12,3.0946e-12,2.3369e-12,1.8283e-12,4.7287e-13,3.0589e-13,2.9295e-13,9.7774e-14,7.5659e-14,7.3572e-14,4.159e-14,4.0998e-14,2.5388e-14,1.3263e-14,5.4192e-15,4.6783e-15,3.2899e-15,1.624e-15,1.1948e-15,9.0645e-16,6.7331e-16,2.7907e-16,1.7617e-16,1.7536e-16,1.3815e-16,9.6286e-17,9.0909e-17,5.5029e-17,4.5233e-17,3.7942e-17,2.3513e-17,2.0684e-17,1.6054e-17,1.2172e-17,7.1967e-18,4.5092e-18,8.7042e-19,7.2231e-19,5.8725e-19,4.0966e-19,2.5346e-19,2.3915e-19,1.1697e-19,1.1231e-19,9.1046e-20,7.0421e-20,4.9153e-20,5.9263e-22,4.2624e-22,3.6525e-22,2.7537e-22,2.4726e-22,1.7833e-22,5.3887e-23,4.5795e-23,3.439e-23,2.4789e-23,1.9968e-23,7.2425e-24,6.6541e-24,2.642e-24,8.9991e-25,3.5436e-25,3.271e-25,1.1557e-25,4.586e-26,4.3392e-26,2.8937e-26,1.2472e-26,1.2239e-26,1.1737e-26,4.1675e-27,3.7757e-27,2.0688e-27,1.5373e-27,7.8798e-28,6.566e-28,2.7191e-28,2.32e-28,9.3155e-29,7.2914e-29 1,0.04182,0.044144,0.04548,0.050348,0.057152,0.057319,0.05925,0.067583,0.088172,0.092498,0.09426,0.094323,0.10148,0.11518,0.11708,0.12737,0.16323,0.20453,0.21051,0.23998,0.25801,0.27308,0.27865,0.29976,0.30108,0.32215,0.35492,0.38511,0.39824,0.46,0.46258,0.51528,0.54595,0.55404,0.58897,0.60895,0.60929,0.61985,0.77172,0.89905,0.92312,0.92381,0.92389,0.9467,0.97582,0.97918,0.98132,0.9998,1,0.99994,0.98265,0.94716,0.91658,0.89295,0.86125,0.72192,0.66758,0.66096,0.58519,0.50089,0.4638,0.46366,0.41266,0.38509,0.36664,0.34379,0.3251,0.29999,0.28966,0.26087,0.21486,0.19628,0.16909,0.12297,0.11892,0.10428,0.096314,0.075603,0.048206,0.042386,0.029259,0.021423,0.017969,0.013069,0.012512,0.012014,0.0097517,0.0086531,0.0086309,0.0078089,0.0072338,0.0063417,0.0062719,0.0062415,0.0060738,0.005634,0.0049672,0.004649,0.003409,0.003407,0.0023175,0.0023056,0.0021195,0.0020065,0.0019367,0.0017245,0.0015268,0.0010302,0.00097289,0.00080796,0.00035004,0.00026876,0.00024567,0.00013957,0.00013027,0.00012063,6.6417e-05,6.092e-05,4.7013e-05,4.2281e-05,4.0758e-05,3.797e-05,2.3814e-05,1.4564e-05,1.3836e-05,1.211e-05,9.5408e-06,4.568e-06,4.4201e-06,4.1934e-06,1.1381e-06,4.5947e-07,3.1111e-07,2.6332e-07,1.6524e-07,1.314e-07,1.1758e-07,7.72e-08,3.4227e-08,2.1895e-08,1.9963e-08,1.8161e-08,1.7902e-08,1.4508e-08,2.3059e-09,1.6541e-09,1.537e-09,1.2885e-09,7.834e-10,6.1209e-10,2.8574e-10,2.5908e-10,2.2643e-10,2.123e-10,1.7305e-10,1.2602e-10,1.0873e-10,9.6578e-11,6.441e-11,5.5548e-11,3.5241e-11,3.1263e-11,2.1515e-11,1.9596e-11,1.7046e-11,1.693e-11,1.5265e-11,1.1365e-11,6.1087e-12,6.0332e-12,3.5784e-12,2.7043e-12,2.1171e-12,5.4958e-13,3.5591e-13,3.4091e-13,1.141e-13,8.8353e-14,8.5922e-14,4.8643e-14,4.7952e-14,2.973e-14,1.5556e-14,6.3706e-15,5.5016e-15,3.8722e-15,1.9148e-15,1.4098e-15,1.0702e-15,7.9553e-16,3.3042e-16,2.0881e-16,2.0785e-16,1.6384e-16,1.1429e-16,1.0792e-16,6.5401e-17,5.3783e-17,4.5133e-17,2.8e-17,2.4638e-17,1.9134e-17,1.4516e-17,8.593e-18,5.3897e-18,1.0442e-18,8.6685e-19,7.0509e-19,4.9225e-19,3.0488e-19,2.877e-19,1.4093e-19,1.3533e-19,1.0976e-19,8.4938e-20,5.9332e-20,7.2192e-22,5.1957e-22,4.4537e-22,3.3596e-22,3.0173e-22,2.1776e-22,6.5958e-23,5.6071e-23,4.2131e-23,3.0389e-23,2.4489e-23,8.8997e-24,8.178e-24,3.2528e-24,1.1103e-24,4.3796e-25,4.0433e-25,1.4313e-25,5.6896e-26,5.3839e-26,3.593e-26,1.551e-26,1.5222e-26,1.4598e-26,5.1931e-27,4.7058e-27,2.5812e-27,1.9191e-27,9.8485e-28,8.2091e-28,3.4049e-28,2.906e-28,1.1687e-28,9.1516e-29 1,0.040702,0.042975,0.044281,0.049042,0.055701,0.055865,0.057755,0.065918,0.086108,0.090354,0.092083,0.092145,0.099171,0.11264,0.1145,0.12462,0.15993,0.20065,0.20655,0.23566,0.25348,0.26839,0.2739,0.2948,0.2961,0.31697,0.34946,0.37943,0.39246,0.45387,0.45643,0.50892,0.53951,0.54759,0.58248,0.60245,0.60279,0.61335,0.76574,0.89456,0.91911,0.91982,0.9199,0.94329,0.97345,0.97697,0.97922,0.99953,0.99994,1,0.98456,0.95046,0.92064,0.89747,0.86626,0.72816,0.67401,0.6674,0.59169,0.50721,0.46998,0.46984,0.41856,0.39082,0.37224,0.3492,0.33035,0.30501,0.29458,0.26548,0.21892,0.20011,0.17254,0.12569,0.12157,0.10668,0.098569,0.077463,0.049493,0.043542,0.030103,0.022068,0.018523,0.013487,0.012915,0.012402,0.010075,0.0089433,0.0089205,0.0080737,0.0074811,0.0065614,0.0064894,0.006458,0.0062851,0.0058315,0.0051435,0.0048151,0.0035343,0.0035323,0.0024056,0.0023933,0.0022007,0.0020837,0.0020114,0.0017916,0.0015868,0.0010719,0.0010125,0.00084128,0.00036532,0.00028069,0.00025664,0.00014601,0.0001363,0.00012624,6.9612e-05,6.3864e-05,4.9316e-05,4.4363e-05,4.2769e-05,3.985e-05,2.502e-05,1.5319e-05,1.4556e-05,1.2743e-05,1.0045e-05,4.8172e-06,4.6616e-06,4.423e-06,1.2037e-06,4.8685e-07,3.299e-07,2.7932e-07,1.7544e-07,1.3957e-07,1.2491e-07,8.2081e-08,3.6446e-08,2.3334e-08,2.1278e-08,1.9361e-08,1.9085e-08,1.5472e-08,2.4671e-09,1.7708e-09,1.6455e-09,1.3799e-09,8.3968e-10,6.5633e-10,3.0677e-10,2.782e-10,2.4319e-10,2.2804e-10,1.8594e-10,1.3547e-10,1.1692e-10,1.0387e-10,6.9316e-11,5.9792e-11,3.7961e-11,3.3682e-11,2.3194e-11,2.1127e-11,1.8382e-11,1.8257e-11,1.6464e-11,1.2263e-11,6.5977e-12,6.5163e-12,3.8679e-12,2.9243e-12,2.2902e-12,5.9566e-13,3.86e-13,3.6974e-13,1.2394e-13,9.6008e-14,9.337e-14,5.29e-14,5.215e-14,3.2354e-14,1.6944e-14,6.9472e-15,6.0008e-15,4.2254e-15,2.0914e-15,1.5404e-15,1.1698e-15,8.6989e-16,3.6171e-16,2.2872e-16,2.2767e-16,1.7952e-16,1.2528e-16,1.1831e-16,7.1741e-17,5.9011e-17,4.9531e-17,3.0746e-17,2.7059e-17,2.102e-17,1.5953e-17,9.4494e-18,5.9302e-18,1.1511e-18,9.5586e-19,7.7767e-19,5.4315e-19,3.3659e-19,3.1765e-19,1.5573e-19,1.4954e-19,1.2132e-19,9.3913e-20,6.5628e-20,8.0244e-22,5.7773e-22,4.9531e-22,3.7374e-22,3.3571e-22,2.4236e-22,7.3505e-23,6.2497e-23,4.6974e-23,3.3893e-23,2.7319e-23,9.9388e-24,9.1337e-24,3.6364e-24,1.2425e-24,4.9061e-25,4.5297e-25,1.6052e-25,6.3866e-26,6.0438e-26,4.0351e-26,1.7433e-26,1.7109e-26,1.6408e-26,5.843e-27,5.2952e-27,2.9063e-27,2.1614e-27,1.1099e-27,9.2531e-28,3.8411e-28,3.2788e-28,1.3198e-28,1.0337e-28 1,0.025647,0.027182,0.028067,0.031312,0.035893,0.036007,0.037316,0.043013,0.057365,0.060426,0.061677,0.061721,0.066826,0.076708,0.078087,0.085603,0.11233,0.14401,0.14867,0.1719,0.18632,0.1985,0.20303,0.22031,0.2214,0.23886,0.26642,0.29223,0.30358,0.35801,0.36031,0.40819,0.43666,0.44426,0.4774,0.49665,0.49698,0.50724,0.66277,0.81038,0.84169,0.84262,0.84272,0.87441,0.91999,0.92596,0.92988,0.97879,0.98265,0.98456,1,0.98991,0.97383,0.95917,0.93743,0.82506,0.77616,0.77005,0.69794,0.61332,0.57472,0.57458,0.52012,0.49003,0.46963,0.44405,0.42289,0.39409,0.38213,0.34837,0.29312,0.27034,0.23644,0.17724,0.17192,0.15254,0.14187,0.11366,0.075095,0.066671,0.047273,0.035364,0.030013,0.022283,0.021392,0.020593,0.016934,0.015136,0.0151,0.013745,0.012791,0.011301,0.011184,0.011133,0.010851,0.01011,0.0089784,0.0084351,0.0062943,0.0062908,0.00437,0.0043488,0.0040158,0.0038129,0.0036871,0.0033032,0.0029432,0.0020262,0.0019191,0.0016086,0.00072558,0.00056399,0.00051768,0.00030171,0.00028246,0.00026244,0.00014829,0.00013651,0.00010651,9.6214e-05,9.289e-05,8.6791e-05,5.5485e-05,3.4608e-05,3.2947e-05,2.8988e-05,2.3052e-05,1.1353e-05,1.0999e-05,1.0455e-05,2.9765e-06,1.2407e-06,8.514e-07,7.2473e-07,4.6199e-07,3.7021e-07,3.3248e-07,2.2134e-07,1.0075e-07,6.5367e-08,5.9772e-08,5.454e-08,5.3785e-08,4.3874e-08,7.3742e-09,5.3421e-09,4.9744e-09,4.1919e-09,2.5858e-09,2.0348e-09,9.7069e-10,8.8258e-10,7.7427e-10,7.2728e-10,5.9621e-10,4.3801e-10,3.7949e-10,3.3817e-10,2.2805e-10,1.9747e-10,1.2683e-10,1.1288e-10,7.8467e-11,7.1644e-11,6.2554e-11,6.2138e-11,5.6182e-11,4.2155e-11,2.303e-11,2.2753e-11,1.3679e-11,1.0412e-11,8.2028e-12,2.203e-12,1.4421e-12,1.3828e-12,4.7538e-13,3.7039e-13,3.6044e-13,2.0686e-13,2.0399e-13,1.2792e-13,6.7965e-14,2.8418e-14,2.4625e-14,1.7472e-14,8.7802e-15,6.5095e-15,4.9726e-15,3.721e-15,1.5761e-15,1.0062e-15,1.0016e-15,7.937e-16,5.5802e-16,5.2759e-16,3.2323e-16,2.6694e-16,2.2486e-16,1.4094e-16,1.2435e-16,9.7095e-17,7.4099e-17,4.4353e-17,2.8093e-17,5.6314e-18,4.693e-18,3.8334e-18,2.696e-18,1.6861e-18,1.593e-18,7.9164e-19,7.6077e-19,6.1961e-19,4.8197e-19,3.3909e-19,4.4945e-21,3.2549e-21,2.7983e-21,2.122e-21,1.9097e-21,1.3867e-21,4.2947e-22,3.6619e-22,2.7661e-22,2.0072e-22,1.6239e-22,6.0116e-23,5.5326e-23,2.2376e-23,7.7857e-24,3.1223e-24,2.8866e-24,1.0407e-24,4.2038e-25,3.9817e-25,2.6759e-25,1.172e-25,1.1505e-25,1.1042e-25,3.998e-26,3.6289e-26,2.0109e-26,1.5026e-26,7.798e-27,6.5198e-27,2.7443e-27,2.3483e-27,9.5878e-28,7.5381e-28 1,0.017268,0.018358,0.018988,0.021308,0.024609,0.024691,0.02564,0.029791,0.040401,0.042689,0.043627,0.04366,0.0475,0.054992,0.056044,0.061799,0.082562,0.10771,0.11145,0.13027,0.14207,0.15211,0.15586,0.17025,0.17115,0.18582,0.20921,0.23138,0.2412,0.28897,0.29102,0.33395,0.35987,0.36682,0.39745,0.41542,0.41572,0.42536,0.57659,0.73146,0.76638,0.76743,0.76755,0.80404,0.85927,0.86683,0.87186,0.94076,0.94716,0.95046,0.98991,1,0.99614,0.98934,0.97671,0.89214,0.8503,0.84493,0.77957,0.69893,0.66091,0.66076,0.60591,0.57501,0.55384,0.52702,0.50461,0.47379,0.46087,0.42407,0.36268,0.33693,0.29809,0.22867,0.22232,0.19902,0.18608,0.15141,0.10278,0.091928,0.066525,0.050586,0.043317,0.032669,0.031429,0.030314,0.025175,0.022628,0.022576,0.020644,0.019279,0.017135,0.016966,0.016892,0.016484,0.015409,0.013761,0.012966,0.0098044,0.0097992,0.0069171,0.0068849,0.0063795,0.0060706,0.0058787,0.0052913,0.0047374,0.0033118,0.0031436,0.0026537,0.0012343,0.00096841,0.00089168,0.00052987,0.00049722,0.00046318,0.00026691,0.00024641,0.00019386,0.00017571,0.00016984,0.00015904,0.00010316,6.532e-05,6.2281e-05,5.5017e-05,4.4062e-05,2.2171e-05,2.15e-05,2.0469e-05,6.0432e-06,2.5808e-06,1.7893e-06,1.5297e-06,9.8685e-07,7.954e-07,7.1634e-07,4.8195e-07,2.2379e-07,1.4678e-07,1.3451e-07,1.2301e-07,1.2135e-07,9.9487e-08,1.7448e-08,1.2735e-08,1.1878e-08,1.0049e-08,6.2671e-09,4.9583e-09,2.4048e-09,2.1911e-09,1.9277e-09,1.8132e-09,1.4929e-09,1.1042e-09,9.5963e-10,8.5727e-10,5.8303e-10,5.064e-10,3.2833e-10,2.9292e-10,2.0518e-10,1.8769e-10,1.6434e-10,1.6327e-10,1.4793e-10,1.1166e-10,6.1761e-11,6.1033e-11,3.7072e-11,2.8374e-11,2.246e-11,6.1899e-12,4.0854e-12,3.9205e-12,1.3756e-12,1.0768e-12,1.0484e-12,6.0799e-13,5.9971e-13,3.7934e-13,2.0391e-13,8.6619e-14,7.5252e-14,5.3723e-14,2.7329e-14,2.0369e-14,1.5634e-14,1.1758e-14,5.0551e-15,3.2522e-15,3.2378e-15,2.5759e-15,1.8219e-15,1.7242e-15,1.0651e-15,8.8247e-16,7.4549e-16,4.7093e-16,4.1638e-16,3.2645e-16,2.5025e-16,1.5106e-16,9.6401e-17,1.9832e-17,1.6575e-17,1.3583e-17,9.606e-18,6.0524e-18,5.7232e-18,2.8755e-18,2.7651e-18,2.2593e-18,1.7643e-18,1.248e-18,1.7655e-20,1.2847e-20,1.1069e-20,8.4279e-21,7.5964e-21,5.5417e-21,1.7456e-21,1.4918e-21,1.1314e-21,8.2474e-22,6.6928e-22,2.5127e-22,2.3152e-22,9.4828e-23,3.3482e-23,1.3597e-23,1.2584e-23,4.6002e-24,1.8811e-24,1.7831e-24,1.2047e-24,5.3348e-25,5.2385e-25,5.0302e-25,1.8459e-25,1.6777e-25,9.3688e-26,7.0271e-26,3.6782e-26,3.0825e-26,1.312e-26,1.125e-26,4.6461e-27,3.6641e-27 1,0.013391,0.014263,0.014768,0.016633,0.019298,0.019364,0.020133,0.023508,0.032211,0.034101,0.034877,0.034904,0.038088,0.044329,0.045207,0.05003,0.067584,0.089122,0.092351,0.10866,0.11896,0.12776,0.13105,0.14374,0.14454,0.15754,0.1784,0.19831,0.20717,0.25063,0.2525,0.29206,0.31615,0.32264,0.35135,0.36831,0.3686,0.37772,0.52376,0.67971,0.71601,0.71712,0.71723,0.75576,0.81551,0.82385,0.82942,0.90879,0.91658,0.92064,0.97383,0.99614,1,0.99829,0.99169,0.92682,0.8905,0.88573,0.82626,0.75001,0.71319,0.71305,0.65909,0.62829,0.60702,0.5799,0.55709,0.52549,0.51217,0.47398,0.40946,0.38209,0.34045,0.26491,0.25793,0.23217,0.21778,0.17892,0.1235,0.11096,0.081317,0.062461,0.053782,0.040955,0.039452,0.038098,0.031833,0.028711,0.028647,0.02627,0.024585,0.021931,0.021721,0.02163,0.021124,0.019787,0.017731,0.016736,0.01276,0.012753,0.0090916,0.0090504,0.0084039,0.0080079,0.0077616,0.0070061,0.0062915,0.0044401,0.0042203,0.0035781,0.001696,0.0013384,0.0012348,0.0007426,0.00069784,0.0006511,0.00037979,0.00035122,0.00027774,0.00025227,0.00024401,0.00022882,0.00014976,9.5708e-05,9.1342e-05,8.0887e-05,6.5067e-05,3.3177e-05,3.2192e-05,3.0676e-05,9.2624e-06,4.0154e-06,2.8014e-06,2.4014e-06,1.5607e-06,1.2625e-06,1.1389e-06,7.7128e-07,3.6258e-07,2.3939e-07,2.1969e-07,2.0119e-07,1.9852e-07,1.6325e-07,2.9392e-08,2.1552e-08,2.0122e-08,1.7064e-08,1.0715e-08,8.5059e-09,4.1676e-09,3.8022e-09,3.3512e-09,3.1548e-09,2.6045e-09,1.9343e-09,1.6843e-09,1.507e-09,1.0303e-09,8.9653e-10,5.8465e-10,5.224e-10,3.6764e-10,3.367e-10,2.9533e-10,2.9343e-10,2.662e-10,2.0167e-10,1.124e-10,1.1109e-10,6.791e-11,5.2152e-11,4.1403e-11,1.1594e-11,7.6914e-12,7.3846e-12,2.6238e-12,2.0599e-12,2.0062e-12,1.1709e-12,1.1552e-12,7.3461e-13,3.9771e-13,1.7061e-13,1.4845e-13,1.0639e-13,5.453e-14,4.0775e-14,3.1387e-14,2.3681e-14,1.0275e-14,6.642e-15,6.613e-15,5.2739e-15,3.7441e-15,3.5453e-15,2.2014e-15,1.8275e-15,1.5466e-15,9.8169e-16,8.6911e-16,6.8313e-16,5.2512e-16,3.1864e-16,2.0428e-16,4.2704e-17,3.5755e-17,2.9359e-17,2.0835e-17,1.3187e-17,1.2477e-17,6.3114e-18,6.0714e-18,4.9705e-18,3.8908e-18,2.7616e-18,4.067e-20,2.968e-20,2.5607e-20,1.9546e-20,1.7635e-20,1.2902e-20,4.1066e-21,3.5145e-21,2.672e-21,1.9533e-21,1.5881e-21,6.0141e-22,5.5454e-22,2.2892e-22,8.1562e-23,3.338e-23,3.0914e-23,1.1398e-23,4.6962e-24,4.4534e-24,3.0189e-24,1.3459e-24,1.3218e-24,1.2697e-24,4.6982e-25,4.2733e-25,2.3979e-25,1.8028e-25,9.4861e-26,7.9611e-26,3.412e-26,2.9292e-26,1.2184e-26,9.6266e-27 1,0.011258,0.012007,0.012441,0.014045,0.016346,0.016403,0.017068,0.019995,0.027586,0.029243,0.029922,0.029947,0.032743,0.038242,0.039018,0.043284,0.058904,0.078234,0.081146,0.095904,0.10526,0.11328,0.11628,0.12788,0.12861,0.14055,0.15977,0.1782,0.18643,0.22701,0.22876,0.266,0.2888,0.29497,0.32231,0.33851,0.33879,0.34753,0.48922,0.64456,0.68143,0.68255,0.68267,0.72217,0.78427,0.79305,0.79892,0.88432,0.89295,0.89747,0.95917,0.98934,0.99829,1,0.9975,0.94657,0.91437,0.91006,0.8552,0.78268,0.74704,0.7469,0.69405,0.66359,0.64244,0.61535,0.59245,0.56057,0.54708,0.50822,0.44199,0.41367,0.37034,0.29091,0.28351,0.25613,0.24078,0.19908,0.13895,0.12522,0.092541,0.071561,0.061843,0.047399,0.045698,0.044166,0.037053,0.033495,0.033422,0.030707,0.028779,0.025735,0.025494,0.025388,0.024807,0.023269,0.020898,0.019749,0.015139,0.015132,0.010858,0.01081,0.010052,0.0095871,0.0092977,0.0084087,0.0075661,0.0053733,0.0051119,0.0043466,0.0020865,0.0016529,0.0015268,0.0009256,0.00087063,0.00081319,0.00047819,0.00044273,0.0003513,0.00031952,0.00030921,0.00029022,0.0001911,0.00012288,0.00011734,0.00010408,8.3971e-05,4.3196e-05,4.1929e-05,3.9979e-05,1.2253e-05,5.3653e-06,3.7589e-06,3.2279e-06,2.1082e-06,1.7094e-06,1.5439e-06,1.0501e-06,4.9771e-07,3.3007e-07,3.0317e-07,2.7791e-07,2.7425e-07,2.2599e-07,4.1406e-08,3.0454e-08,2.8452e-08,2.4168e-08,1.5245e-08,1.2128e-08,5.9829e-09,5.4631e-09,4.8207e-09,4.5408e-09,3.7555e-09,2.7968e-09,2.4384e-09,2.1839e-09,1.4983e-09,1.3054e-09,8.5459e-10,7.6436e-10,5.3961e-10,4.9459e-10,4.3432e-10,4.3155e-10,3.9184e-10,2.9757e-10,1.667e-10,1.6478e-10,1.0115e-10,7.7856e-11,6.1931e-11,1.7528e-11,1.1667e-11,1.1205e-11,4.0147e-12,3.158e-12,3.0764e-12,1.8032e-12,1.7791e-12,1.1354e-12,6.1765e-13,2.6668e-13,2.323e-13,1.669e-13,8.5976e-14,6.4428e-14,4.9691e-14,3.7569e-14,1.6401e-14,1.0636e-14,1.059e-14,8.4591e-15,6.0201e-15,5.7028e-15,3.5531e-15,2.9535e-15,2.5025e-15,1.5936e-15,1.412e-15,1.1117e-15,8.5616e-16,5.2132e-16,3.3525e-16,7.0832e-17,5.9378e-17,4.8819e-17,3.4725e-17,2.2046e-17,2.0866e-17,1.0603e-17,1.0202e-17,8.3631e-18,6.557e-18,4.6643e-18,7.0554e-20,5.1589e-20,4.455e-20,3.4062e-20,3.075e-20,2.254e-20,7.2247e-21,6.1889e-21,4.713e-21,3.4518e-21,2.8099e-21,1.0703e-21,9.8733e-22,4.0971e-22,1.4685e-22,6.0413e-23,5.5974e-23,2.0756e-23,8.5949e-24,8.153e-24,5.5388e-24,2.4806e-24,2.4364e-24,2.3409e-24,8.7097e-25,7.9261e-25,4.4617e-25,3.3597e-25,1.7741e-25,1.4903e-25,6.4166e-26,5.5131e-26,2.3039e-26,1.8227e-26 1,0.0090864,0.0097053,0.010065,0.011396,0.013312,0.01336,0.013915,0.016365,0.022767,0.024172,0.024749,0.024769,0.027147,0.031841,0.032506,0.036165,0.049656,0.066525,0.06908,0.082083,0.090369,0.097489,0.10016,0.11052,0.11117,0.12187,0.13918,0.15588,0.16336,0.20048,0.20209,0.23649,0.2577,0.26345,0.28905,0.30429,0.30455,0.31279,0.44843,0.60172,0.6389,0.64004,0.64017,0.68041,0.74468,0.75387,0.76004,0.85172,0.86125,0.86626,0.93743,0.97671,0.99169,0.9975,1,0.96659,0.93979,0.93609,0.88748,0.82035,0.78652,0.78639,0.73545,0.70571,0.68492,0.65812,0.63531,0.60338,0.58979,0.55042,0.48258,0.45328,0.40813,0.32428,0.3164,0.28712,0.27062,0.22548,0.15951,0.14428,0.10771,0.08397,0.072889,0.056301,0.054338,0.052567,0.044318,0.040173,0.040088,0.036916,0.034657,0.031083,0.030799,0.030675,0.029991,0.028178,0.025377,0.024016,0.018532,0.018523,0.013398,0.01334,0.012426,0.011864,0.011514,0.010437,0.0094139,0.0067366,0.0064159,0.0054745,0.0026682,0.0021236,0.0019647,0.0012026,0.0011325,0.0010591,0.00062893,0.0005831,0.0004646,0.00042328,0.00040986,0.00038512,0.00025542,0.00016546,0.00015814,0.00014055,0.00011379,5.9161e-05,5.7454e-05,5.4822e-05,1.7109e-05,7.5823e-06,5.3392e-06,4.5947e-06,3.0188e-06,2.4548e-06,2.2203e-06,1.518e-06,7.2669e-07,4.8451e-07,4.4552e-07,4.0884e-07,4.0354e-07,3.3336e-07,6.238e-08,4.605e-08,4.3059e-08,3.6647e-08,2.3243e-08,1.8541e-08,9.2217e-09,8.4292e-09,7.4488e-09,7.0211e-09,5.8193e-09,4.3483e-09,3.7969e-09,3.4048e-09,2.3457e-09,2.0469e-09,1.3463e-09,1.2056e-09,8.5433e-10,7.8379e-10,6.8924e-10,6.8489e-10,6.2252e-10,4.7415e-10,2.6726e-10,2.6421e-10,1.6302e-10,1.2582e-10,1.0032e-10,2.876e-11,1.9221e-11,1.8468e-11,6.6842e-12,5.2702e-12,5.1352e-12,3.0255e-12,2.9855e-12,1.9136e-12,1.047e-12,4.5562e-13,3.9739e-13,2.8638e-13,1.4843e-13,1.1152e-13,8.6213e-14,6.5345e-14,2.874e-14,1.8708e-14,1.8628e-14,1.491e-14,1.0642e-14,1.0086e-14,6.3101e-15,5.2537e-15,4.4578e-15,2.8497e-15,2.5277e-15,1.9942e-15,1.5392e-15,9.4115e-16,6.0748e-16,1.3001e-16,1.0915e-16,8.9882e-17,6.411e-17,4.0852e-17,3.8683e-17,1.9763e-17,1.9022e-17,1.5618e-17,1.2269e-17,8.751e-18,1.3672e-19,1.0021e-19,8.6631e-20,6.637e-20,5.9962e-20,4.4054e-20,1.424e-20,1.2212e-20,9.3184e-21,6.8403e-21,5.5765e-21,2.1389e-21,1.9743e-21,8.2446e-22,2.9767e-22,1.2322e-22,1.1423e-22,4.2651e-23,1.7769e-23,1.6862e-23,1.1485e-23,5.1721e-24,5.0806e-24,4.8827e-24,1.8289e-24,1.6654e-24,9.4108e-25,7.0997e-25,3.7649e-25,3.1663e-25,1.3709e-25,1.179e-25,4.9554e-26,3.9263e-26 1,0.0039491,0.0042419,0.0044126,0.0050503,0.0059805,0.0060039,0.0062761,0.00749,0.010744,0.011472,0.011773,0.011783,0.013029,0.015523,0.01588,0.017857,0.025339,0.035047,0.036548,0.044294,0.049321,0.053692,0.055346,0.061811,0.062223,0.069001,0.080168,0.09115,0.096136,0.12144,0.12256,0.14683,0.16215,0.16635,0.18529,0.19674,0.19694,0.20318,0.31157,0.44723,0.48252,0.48362,0.48374,0.5232,0.58923,0.59902,0.60564,0.71023,0.72192,0.72816,0.82506,0.89214,0.92682,0.94657,0.96659,1,0.9958,0.99473,0.97436,0.93431,0.91078,0.91068,0.87206,0.848,0.83057,0.80743,0.78717,0.75794,0.74521,0.70738,0.63897,0.60818,0.55925,0.46353,0.45418,0.41895,0.3987,0.34179,0.25408,0.23292,0.18051,0.145,0.12794,0.1017,0.098535,0.095664,0.082122,0.075202,0.07506,0.069705,0.065859,0.059711,0.05922,0.059005,0.057817,0.054655,0.049724,0.047306,0.037403,0.037386,0.027847,0.027737,0.025998,0.024924,0.024252,0.022172,0.020176,0.014849,0.014199,0.012273,0.0063275,0.0051229,0.004767,0.0030235,0.0028594,0.0026868,0.001654,0.0015414,0.001247,0.0011431,0.0011092,0.0010466,0.00071285,0.00047465,0.00045492,0.00040729,0.00033406,0.00018065,0.00017574,0.00016815,5.6092e-05,2.5989e-05,1.8646e-05,1.6173e-05,1.0861e-05,8.927e-06,8.1157e-06,5.6567e-06,2.8089e-06,1.9101e-06,1.7635e-06,1.625e-06,1.605e-06,1.338e-06,2.7066e-07,2.0255e-07,1.8997e-07,1.6285e-07,1.0539e-07,8.4906e-08,4.3524e-08,3.9937e-08,3.5479e-08,3.3526e-08,2.8009e-08,2.1188e-08,1.8607e-08,1.6762e-08,1.1728e-08,1.0292e-08,6.8861e-09,6.1944e-09,4.4512e-09,4.0979e-09,3.6222e-09,3.6003e-09,3.285e-09,2.5294e-09,1.4584e-09,1.4424e-09,9.0691e-10,7.07e-10,5.6866e-10,1.7093e-10,1.1597e-10,1.1159e-10,4.1923e-11,3.334e-11,3.2517e-11,1.9526e-11,1.9277e-11,1.2553e-11,7.0159e-12,3.1429e-12,2.7542e-12,2.0073e-12,1.064e-12,8.0716e-13,6.2944e-13,4.8153e-13,2.1764e-13,1.4369e-13,1.431e-13,1.1537e-13,8.3261e-14,7.9047e-14,5.0209e-14,4.2051e-14,3.5869e-14,2.326e-14,2.071e-14,1.6463e-14,1.2811e-14,7.9555e-15,5.2057e-15,1.1683e-15,9.8604e-16,8.1681e-16,5.8859e-16,3.8018e-16,3.6059e-16,1.8795e-16,1.8111e-16,1.4957e-16,1.1834e-16,8.5254e-17,1.5007e-18,1.1095e-18,9.6304e-19,7.4329e-19,6.7341e-19,4.99e-19,1.6637e-19,1.4328e-19,1.1013e-19,8.1525e-20,6.6831e-20,2.6302e-20,2.433e-20,1.0398e-20,3.8564e-21,1.6335e-21,1.5173e-21,5.8109e-22,2.4758e-22,2.3525e-22,1.6181e-22,7.4351e-23,7.3068e-23,7.0292e-23,2.6984e-23,2.463e-23,1.4117e-23,1.0724e-23,5.7767e-24,4.8789e-24,2.1561e-24,1.8612e-24,7.9883e-25,6.365e-25 1,0.0028982,0.0031192,0.0032483,0.0037318,0.0044404,0.0044583,0.0046664,0.0055976,0.0081168,0.0086839,0.0089185,0.0089269,0.0099014,0.011862,0.012143,0.013707,0.019676,0.027522,0.028743,0.035078,0.039215,0.042828,0.044198,0.049571,0.049915,0.055578,0.064963,0.074255,0.078493,0.10016,0.10113,0.12216,0.13555,0.13923,0.1559,0.16604,0.16622,0.17177,0.26971,0.39642,0.43012,0.43117,0.43129,0.46934,0.53392,0.5436,0.55016,0.65556,0.66758,0.67401,0.77616,0.8503,0.8905,0.91437,0.93979,0.9958,1,0.99994,0.99077,0.96239,0.94365,0.94357,0.9111,0.89011,0.87463,0.85376,0.83523,0.80811,0.79617,0.76029,0.694,0.66364,0.6148,0.51719,0.50753,0.47086,0.44962,0.38933,0.2945,0.27127,0.21301,0.17292,0.15345,0.12322,0.11955,0.11621,0.1004,0.092265,0.092098,0.085781,0.08123,0.073929,0.073344,0.073089,0.071673,0.0679,0.061995,0.05909,0.047121,0.047101,0.035447,0.035311,0.033171,0.031846,0.031016,0.028441,0.025962,0.019297,0.018478,0.016044,0.0084369,0.006872,0.0064076,0.0041152,0.0038977,0.0036686,0.0022872,0.0021353,0.0017367,0.0015955,0.0015494,0.001464,0.0010066,0.00067674,0.00064924,0.00058277,0.00048017,0.00026328,0.00025628,0.00024546,8.3821e-05,3.9449e-05,2.849e-05,2.4781e-05,1.6771e-05,1.3836e-05,1.2601e-05,8.8427e-06,4.4479e-06,3.0457e-06,2.816e-06,2.5987e-06,2.5671e-06,2.1471e-06,4.4637e-07,3.3567e-07,3.1515e-07,2.7084e-07,1.7652e-07,1.4271e-07,7.3939e-08,6.7937e-08,6.0465e-08,5.7188e-08,4.7912e-08,3.64e-08,3.203e-08,2.89e-08,2.0331e-08,1.7877e-08,1.2034e-08,1.0842e-08,7.8295e-09,7.2169e-09,6.3908e-09,6.3527e-09,5.8041e-09,4.4862e-09,2.6073e-09,2.5791e-09,1.6324e-09,1.2771e-09,1.0304e-09,3.1492e-10,2.1479e-10,2.0678e-10,7.8713e-11,6.2789e-11,6.1259e-11,3.7032e-11,3.6567e-11,2.3945e-11,1.3483e-11,6.1021e-12,5.3563e-12,3.9193e-12,2.0938e-12,1.5939e-12,1.2467e-12,9.569e-13,4.3668e-13,2.8974e-13,2.8855e-13,2.3324e-13,1.6898e-13,1.6052e-13,1.0251e-13,8.6029e-14,7.3518e-14,4.7915e-14,4.272e-14,3.4048e-14,2.6572e-14,1.6591e-14,1.0909e-14,2.4895e-15,2.1051e-15,1.7474e-15,1.2637e-15,8.2017e-16,7.7834e-16,4.0857e-16,3.9386e-16,3.2595e-16,2.5854e-16,1.8691e-16,3.431e-18,2.5443e-18,2.2117e-18,1.7114e-18,1.5521e-18,1.1536e-18,3.8882e-19,3.3534e-19,2.5844e-19,1.9187e-19,1.5759e-19,6.2587e-20,5.7938e-20,2.4965e-20,9.3466e-21,3.9912e-21,3.7097e-21,1.4336e-21,6.1561e-22,5.8523e-22,4.0392e-22,1.8692e-22,1.8372e-22,1.768e-22,6.8464e-23,6.254e-23,3.6025e-23,2.7435e-23,1.486e-23,1.2569e-23,5.5946e-24,4.8356e-24,2.0909e-24,1.6693e-24 1,0.0027909,0.0030044,0.0031292,0.0035966,0.0042821,0.0042994,0.0045007,0.0054022,0.0078436,0.0083937,0.0086212,0.0086294,0.009575,0.011479,0.011752,0.013271,0.019077,0.02672,0.02791,0.03409,0.038129,0.041658,0.042996,0.048248,0.048584,0.054122,0.063307,0.072409,0.076562,0.097818,0.098767,0.11943,0.13259,0.13621,0.15262,0.1626,0.16277,0.16824,0.26492,0.3905,0.42398,0.42503,0.42514,0.463,0.52734,0.53699,0.54354,0.64892,0.66096,0.6674,0.77005,0.84493,0.88573,0.91006,0.93609,0.99473,0.99994,1,0.9922,0.96527,0.94714,0.94706,0.91539,0.8948,0.87958,0.85901,0.84071,0.81389,0.80207,0.76647,0.70052,0.67026,0.62148,0.52374,0.51405,0.47723,0.4559,0.39524,0.2996,0.27612,0.21716,0.17651,0.15675,0.12602,0.12228,0.11889,0.10279,0.094505,0.094334,0.087895,0.083255,0.075807,0.07521,0.074949,0.073505,0.069652,0.063622,0.060654,0.048419,0.048398,0.036468,0.036329,0.034136,0.032778,0.031928,0.029288,0.026744,0.019902,0.019061,0.01656,0.0087285,0.0071146,0.0066355,0.004268,0.0040431,0.0038062,0.0023766,0.0022192,0.0018062,0.0016598,0.0016119,0.0015233,0.0010485,0.00070578,0.00067719,0.00060804,0.00050127,0.00027531,0.00026801,0.00025672,8.7913e-05,4.1453e-05,2.996e-05,2.6069e-05,1.7659e-05,1.4575e-05,1.3277e-05,9.3247e-06,4.6976e-06,3.2194e-06,2.9771e-06,2.7478e-06,2.7145e-06,2.2712e-06,4.7374e-07,3.5646e-07,3.347e-07,2.8774e-07,1.8769e-07,1.5181e-07,7.8752e-08,7.2371e-08,6.4426e-08,6.094e-08,5.1073e-08,3.8822e-08,3.4169e-08,3.0836e-08,2.1707e-08,1.9092e-08,1.2861e-08,1.159e-08,8.3741e-09,7.7199e-09,6.8377e-09,6.797e-09,6.2111e-09,4.803e-09,2.7941e-09,2.7639e-09,1.7508e-09,1.3703e-09,1.1059e-09,3.387e-10,2.3115e-10,2.2255e-10,8.485e-11,6.7708e-11,6.6061e-11,3.9968e-11,3.9466e-11,2.5861e-11,1.4575e-11,6.6044e-12,5.7983e-12,4.2447e-12,2.2698e-12,1.7286e-12,1.3526e-12,1.0386e-12,4.7448e-13,3.1501e-13,3.1372e-13,2.5366e-13,1.8386e-13,1.7467e-13,1.1161e-13,9.3696e-14,8.0088e-14,5.2228e-14,4.6573e-14,3.7131e-14,2.8988e-14,1.8112e-14,1.1915e-14,2.7247e-15,2.3045e-15,1.9134e-15,1.3844e-15,8.9898e-16,8.5319e-16,4.4824e-16,4.3212e-16,3.577e-16,2.8381e-16,2.0526e-16,3.787e-18,2.8093e-18,2.4425e-18,1.8906e-18,1.7148e-18,1.275e-18,4.303e-19,3.7118e-19,2.8615e-19,2.1252e-19,1.7459e-19,6.9414e-20,6.4263e-20,2.7718e-20,1.0389e-20,4.4406e-21,4.1278e-21,1.5968e-21,6.8637e-22,6.5253e-22,4.5056e-22,2.0868e-22,2.0511e-22,1.974e-22,7.6518e-23,6.9905e-23,4.0291e-23,3.0693e-23,1.6635e-23,1.4073e-23,6.2696e-24,5.4199e-24,2.3456e-24,1.8731e-24 1,0.0018025,0.0019457,0.0020295,0.0023448,0.00281,0.0028218,0.0029591,0.0035768,0.0052701,0.0056552,0.0058148,0.0058205,0.0064858,0.0078339,0.0080282,0.0091129,0.013308,0.018928,0.019811,0.024429,0.027472,0.030146,0.031163,0.035173,0.03543,0.039689,0.046808,0.053928,0.057196,0.074095,0.074856,0.091542,0.10229,0.10526,0.11879,0.12709,0.12723,0.13179,0.21434,0.32634,0.35705,0.35801,0.35812,0.39329,0.45413,0.46338,0.46968,0.5731,0.58519,0.59169,0.69794,0.77957,0.82626,0.8552,0.88748,0.97436,0.99077,0.9922,1,0.99015,0.97933,0.97928,0.95733,0.9418,0.92985,0.91321,0.89799,0.87509,0.8648,0.83319,0.77248,0.74382,0.6967,0.59917,0.58928,0.55139,0.52918,0.46509,0.36103,0.3349,0.26816,0.22112,0.19791,0.16132,0.15683,0.15273,0.1332,0.12307,0.12286,0.11494,0.1092,0.099952,0.099208,0.098883,0.097081,0.092263,0.084687,0.080942,0.065373,0.065347,0.049936,0.049756,0.046894,0.045116,0.044,0.040527,0.037166,0.028032,0.026899,0.023515,0.012733,0.010465,0.0097871,0.0064035,0.0060786,0.0057354,0.0036437,0.0034108,0.0027963,0.0025773,0.0025056,0.0023725,0.0016541,0.0011282,0.0010839,0.00097668,0.00081022,0.00045347,0.00044181,0.00042377,0.00014984,7.2175e-05,5.2635e-05,4.5974e-05,3.1471e-05,2.6108e-05,2.3842e-05,1.6901e-05,8.6651e-06,5.995e-06,5.5545e-06,5.137e-06,5.0763e-06,4.2659e-06,9.2372e-07,6.9961e-07,6.5787e-07,5.6751e-07,3.7379e-07,3.0377e-07,1.5989e-07,1.472e-07,1.3137e-07,1.2442e-07,1.0467e-07,8.0035e-08,7.0636e-08,6.3885e-08,4.5308e-08,3.9956e-08,2.7139e-08,2.4509e-08,1.7828e-08,1.6463e-08,1.4618e-08,1.4533e-08,1.3304e-08,1.0342e-08,6.0822e-09,6.0178e-09,3.8466e-09,3.0251e-09,2.4518e-09,7.6815e-10,5.2803e-10,5.0875e-10,1.9747e-10,1.5823e-10,1.5445e-10,9.4302e-11,9.3138e-11,6.1496e-11,3.5016e-11,1.6089e-11,1.4157e-11,1.042e-11,5.6325e-12,4.3093e-12,3.386e-12,2.6115e-12,1.2089e-12,8.0804e-13,8.0478e-13,6.53e-13,4.7581e-13,4.5241e-13,2.912e-13,2.4515e-13,2.1007e-13,1.3794e-13,1.2323e-13,9.8604e-14,7.7282e-14,4.8646e-14,3.2214e-14,7.5365e-15,6.3904e-15,5.321e-15,3.8687e-15,2.5287e-15,2.4018e-15,1.274e-15,1.2289e-15,1.0201e-15,8.1215e-16,5.902e-16,1.1531e-17,8.5895e-18,7.4824e-18,5.8125e-18,5.2791e-18,3.9411e-18,1.3501e-18,1.1669e-18,9.0279e-19,6.7319e-19,5.5452e-19,2.232e-19,2.0686e-19,9.022e-20,3.4253e-20,1.4804e-20,1.3774e-20,5.3938e-21,2.3435e-21,2.2294e-21,1.5466e-21,7.2328e-22,7.1108e-22,6.8466e-22,2.6855e-22,2.4561e-22,1.4253e-22,1.0894e-22,5.949e-23,5.0432e-23,2.2689e-23,1.9649e-23,8.5898e-24,6.878e-24 1,0.0010823,0.0011718,0.0012244,0.0014228,0.0017177,0.0017252,0.0018127,0.0022084,0.0033082,0.0035608,0.0036658,0.0036695,0.0041085,0.0050046,0.0051344,0.0058619,0.0087137,0.012609,0.013227,0.016485,0.018653,0.020569,0.021301,0.024199,0.024385,0.027487,0.03272,0.038004,0.040446,0.05322,0.053801,0.066633,0.074994,0.07732,0.087974,0.094553,0.094668,0.0983,0.16579,0.26177,0.28888,0.28974,0.28984,0.32131,0.37679,0.38534,0.39117,0.48916,0.50089,0.50721,0.61332,0.69893,0.75001,0.78268,0.82035,0.93431,0.96239,0.96527,0.99015,1,0.99797,0.99796,0.98812,0.97909,0.97145,0.96009,0.94912,0.9318,0.92375,0.89818,0.84625,0.8207,0.7775,0.68407,0.67432,0.63656,0.61412,0.54809,0.437,0.40833,0.33361,0.27957,0.25244,0.20899,0.20359,0.19865,0.17495,0.16253,0.16227,0.1525,0.14539,0.13386,0.13293,0.13252,0.13026,0.12421,0.11463,0.10988,0.089915,0.08988,0.06978,0.069542,0.065764,0.06341,0.061929,0.057304,0.052802,0.040434,0.038884,0.034229,0.019106,0.015848,0.014868,0.0099162,0.0094347,0.0089248,0.0057813,0.0054268,0.0044858,0.0041483,0.0040375,0.0038315,0.00271,0.001876,0.0018052,0.001633,0.0013642,0.0007799,0.00076056,0.00073058,0.00026777,0.00013212,9.7328e-05,8.5374e-05,5.9137e-05,4.9342e-05,4.5185e-05,3.2365e-05,1.6925e-05,1.1835e-05,1.0989e-05,1.0186e-05,1.0069e-05,8.5037e-06,1.9204e-06,1.4652e-06,1.38e-06,1.1951e-06,7.9578e-07,6.5018e-07,3.4784e-07,3.2092e-07,2.8722e-07,2.7238e-07,2.3014e-07,1.7714e-07,1.5682e-07,1.4218e-07,1.0168e-07,8.9946e-08,6.1662e-08,5.5822e-08,4.0912e-08,3.785e-08,3.3702e-08,3.351e-08,3.0741e-08,2.4037e-08,1.431e-08,1.4162e-08,9.1452e-09,7.2311e-09,5.8883e-09,1.8926e-09,1.3116e-09,1.2647e-09,5.0087e-10,4.0321e-10,3.9378e-10,2.4291e-10,2.3997e-10,1.5981e-10,9.2047e-11,4.296e-11,3.7899e-11,2.8065e-11,1.5355e-11,1.1809e-11,9.3225e-12,7.2263e-12,3.3947e-12,2.2864e-12,2.2774e-12,1.8552e-12,1.3598e-12,1.2942e-12,8.3986e-13,7.0928e-13,6.0954e-13,4.0334e-13,3.6107e-13,2.9009e-13,2.2837e-13,1.4495e-13,9.6703e-14,2.3211e-14,1.9738e-14,1.6487e-14,1.2054e-14,7.9364e-15,7.5448e-15,4.0457e-15,3.9047e-15,3.2516e-15,2.5987e-15,1.8987e-15,3.9561e-17,2.9609e-17,2.5849e-17,2.016e-17,1.8338e-17,1.3753e-17,4.7908e-18,4.1503e-18,3.2236e-18,2.4147e-18,1.995e-18,8.1424e-19,7.5547e-19,3.3365e-19,1.2852e-19,5.6238e-20,5.2382e-20,2.0796e-20,9.1455e-21,8.7064e-21,6.0718e-21,2.8706e-21,2.8228e-21,2.7194e-21,1.0809e-21,9.8985e-22,5.7883e-22,4.441e-22,2.4456e-22,2.078e-22,9.4526e-23,8.2021e-23,3.6266e-23,2.9127e-23 1,0.00085359,0.00092545,0.0009677,0.0011275,0.0013657,0.0013718,0.0014426,0.0017638,0.0026621,0.0028694,0.0029556,0.0029587,0.0033198,0.0040594,0.0041667,0.0047696,0.0071472,0.010423,0.010946,0.013708,0.015553,0.017188,0.017814,0.020298,0.020458,0.023126,0.027643,0.032227,0.034351,0.04552,0.04603,0.057336,0.064742,0.066808,0.076294,0.082171,0.082274,0.085526,0.14663,0.23537,0.26077,0.26157,0.26166,0.29132,0.34401,0.35218,0.35776,0.45237,0.4638,0.46998,0.57472,0.66091,0.71319,0.74704,0.78652,0.91078,0.94365,0.94714,0.97933,0.99797,1,1,0.99588,0.98998,0.98446,0.97572,0.96689,0.95244,0.94556,0.92321,0.87619,0.8525,0.81179,0.72164,0.7121,0.67491,0.65266,0.58654,0.47336,0.44376,0.36588,0.30886,0.28001,0.23345,0.22762,0.2223,0.19664,0.18314,0.18286,0.1722,0.16443,0.15179,0.15076,0.15032,0.14783,0.14117,0.13062,0.12536,0.1032,0.10316,0.080663,0.080396,0.076144,0.073491,0.071821,0.066596,0.061497,0.047416,0.045643,0.040307,0.022809,0.018999,0.017849,0.012008,0.011437,0.010832,0.0070785,0.0066527,0.0055197,0.0051121,0.0049781,0.0047289,0.0033666,0.0023462,0.0022592,0.0020473,0.0017158,0.00099037,0.00096622,0.00092876,0.000346,0.00017258,0.00012772,0.00011225,7.8169e-05,6.5391e-05,5.9957e-05,4.3149e-05,2.2767e-05,1.5997e-05,1.4869e-05,1.3796e-05,1.3639e-05,1.1545e-05,2.6572e-06,2.0342e-06,1.9173e-06,1.6634e-06,1.113e-06,9.1157e-07,4.913e-07,4.537e-07,4.0659e-07,3.8582e-07,3.2662e-07,2.5216e-07,2.2354e-07,2.029e-07,1.4566e-07,1.2902e-07,8.8821e-08,8.0497e-08,5.9198e-08,5.4814e-08,4.8868e-08,4.8593e-08,4.462e-08,3.4981e-08,2.0942e-08,2.0727e-08,1.3446e-08,1.0658e-08,8.6975e-09,2.828e-09,1.967e-09,1.8974e-09,7.5833e-10,6.1176e-10,5.9758e-10,3.7035e-10,3.6592e-10,2.4463e-10,1.4163e-10,6.6573e-11,5.8798e-11,4.3661e-11,2.4018e-11,1.8516e-11,1.4648e-11,1.138e-11,5.3819e-12,3.6374e-12,3.6232e-12,2.9567e-12,2.173e-12,2.069e-12,1.3477e-12,1.1398e-12,9.8077e-13,6.5127e-13,5.8356e-13,4.697e-13,3.7051e-13,2.3606e-13,1.5801e-13,3.8369e-14,3.267e-14,2.7329e-14,2.003e-14,1.3232e-14,1.2584e-14,6.7811e-15,6.5466e-15,5.4593e-15,4.3708e-15,3.2012e-15,6.8672e-17,5.1505e-17,4.5009e-17,3.5168e-17,3.2011e-17,2.4058e-17,8.4441e-18,7.3226e-18,5.6978e-18,4.2768e-18,3.5381e-18,1.4532e-18,1.349e-18,5.9918e-19,2.3232e-19,1.0223e-19,9.5265e-20,3.8057e-20,1.6828e-20,1.6025e-20,1.1203e-20,5.3224e-21,5.2345e-21,5.044e-21,2.0169e-21,1.8481e-21,1.0844e-21,8.3344e-22,4.6073e-22,3.9188e-22,1.7916e-22,1.5559e-22,6.9151e-23,5.5615e-23 1,0.00085282,0.00092462,0.00096684,0.0011265,0.0013645,0.0013706,0.0014414,0.0017623,0.0026599,0.002867,0.0029532,0.0029563,0.0033171,0.0040561,0.0041634,0.0047659,0.0071418,0.010415,0.010938,0.013698,0.015542,0.017177,0.017802,0.020284,0.020445,0.02311,0.027626,0.032206,0.03433,0.045493,0.046002,0.057304,0.064706,0.066771,0.076252,0.082127,0.08223,0.08548,0.14657,0.23527,0.26066,0.26147,0.26156,0.29121,0.34389,0.35206,0.35764,0.45223,0.46366,0.46984,0.57458,0.66076,0.71305,0.7469,0.78639,0.91068,0.94357,0.94706,0.97928,0.99796,1,1,0.9959,0.99001,0.9845,0.97577,0.96695,0.95251,0.94564,0.9233,0.8763,0.85261,0.81192,0.72178,0.71224,0.67505,0.6528,0.58669,0.47349,0.44389,0.366,0.30898,0.28012,0.23354,0.22772,0.2224,0.19673,0.18322,0.18294,0.17228,0.1645,0.15186,0.15083,0.15039,0.1479,0.14124,0.13068,0.12542,0.10325,0.10321,0.080706,0.080439,0.076186,0.073532,0.071861,0.066633,0.061532,0.047444,0.04567,0.040331,0.022824,0.019012,0.017861,0.012017,0.011445,0.010839,0.0070838,0.0066578,0.005524,0.0051161,0.004982,0.0047326,0.0033693,0.0023481,0.0022611,0.0020491,0.0017173,0.00099125,0.00096708,0.00092959,0.00034633,0.00017275,0.00012785,0.00011236,7.825e-05,6.546e-05,6.0021e-05,4.3195e-05,2.2792e-05,1.6015e-05,1.4886e-05,1.3811e-05,1.3655e-05,1.1558e-05,2.6604e-06,2.0367e-06,1.9197e-06,1.6654e-06,1.1144e-06,9.1272e-07,4.9194e-07,4.5428e-07,4.0712e-07,3.8632e-07,3.2705e-07,2.5249e-07,2.2384e-07,2.0317e-07,1.4585e-07,1.2919e-07,8.8943e-08,8.0607e-08,5.928e-08,5.489e-08,4.8936e-08,4.8661e-08,4.4682e-08,3.503e-08,2.0971e-08,2.0757e-08,1.3466e-08,1.0674e-08,8.7102e-09,2.8323e-09,1.97e-09,1.9003e-09,7.5951e-10,6.1271e-10,5.9852e-10,3.7093e-10,3.6649e-10,2.4502e-10,1.4186e-10,6.6682e-11,5.8894e-11,4.3733e-11,2.4059e-11,1.8547e-11,1.4673e-11,1.14e-11,5.3912e-12,3.6438e-12,3.6295e-12,2.9618e-12,2.1768e-12,2.0726e-12,1.3501e-12,1.1418e-12,9.8252e-13,6.5244e-13,5.8461e-13,4.7055e-13,3.7118e-13,2.3649e-13,1.583e-13,3.8441e-14,3.2732e-14,2.7381e-14,2.0068e-14,1.3257e-14,1.2608e-14,6.7942e-15,6.5593e-15,5.47e-15,4.3794e-15,3.2075e-15,6.8814e-17,5.1612e-17,4.5103e-17,3.5241e-17,3.2078e-17,2.4109e-17,8.462e-18,7.3382e-18,5.71e-18,4.2859e-18,3.5457e-18,1.4563e-18,1.3519e-18,6.0049e-19,2.3283e-19,1.0246e-19,9.5479e-20,3.8143e-20,1.6866e-20,1.6062e-20,1.1228e-20,5.3348e-21,5.2466e-21,5.0557e-21,2.0217e-21,1.8524e-21,1.087e-21,8.3541e-22,4.6182e-22,3.9281e-22,1.7959e-22,1.5597e-22,6.9319e-23,5.575e-23 1,0.00060397,0.0006561,0.0006868,0.00080319,0.00097757,0.00098203,0.001034,0.0012707,0.0019385,0.0020936,0.0021582,0.0021605,0.0024317,0.0029897,0.0030709,0.0035284,0.0053483,0.0078866,0.0082946,0.01046,0.011914,0.013209,0.013706,0.015683,0.01581,0.017944,0.021578,0.025289,0.027016,0.036162,0.036582,0.045943,0.05212,0.053849,0.061818,0.066781,0.066868,0.06962,0.1222,0.20081,0.22373,0.22446,0.22454,0.25151,0.29998,0.30756,0.31274,0.40175,0.41266,0.41856,0.52012,0.60591,0.65909,0.69405,0.73545,0.87206,0.9111,0.91539,0.95733,0.98812,0.99588,0.9959,1,0.9987,0.9963,0.99148,0.98589,0.97582,0.97075,0.95343,0.91434,0.89373,0.85733,0.77343,0.76434,0.72856,0.70691,0.64164,0.52685,0.49623,0.41451,0.35359,0.32239,0.27149,0.26507,0.2592,0.23073,0.21564,0.21533,0.20338,0.19463,0.18035,0.17919,0.17868,0.17587,0.1683,0.15627,0.15025,0.12474,0.1247,0.09851,0.098197,0.093208,0.090088,0.088121,0.081953,0.075913,0.059107,0.056976,0.050542,0.029167,0.02444,0.023007,0.015672,0.014948,0.01418,0.0093841,0.0088355,0.0073698,0.0068403,0.0066659,0.0063413,0.0045566,0.0032061,0.0030902,0.0028076,0.0023637,0.0013832,0.0013502,0.0012991,0.00049536,0.00025094,0.00018692,0.00016473,0.0001156,9.7064e-05,8.9158e-05,6.4596e-05,3.4521e-05,2.4424e-05,2.2733e-05,2.1123e-05,2.0888e-05,1.7737e-05,4.1948e-06,3.2267e-06,3.0445e-06,2.6479e-06,1.7843e-06,1.4664e-06,7.987e-07,7.3856e-07,6.6309e-07,6.2977e-07,5.3463e-07,4.1452e-07,3.682e-07,3.3474e-07,2.416e-07,2.1442e-07,1.485e-07,1.348e-07,9.9614e-08,9.2348e-08,8.248e-08,8.2023e-08,7.5416e-08,5.9349e-08,3.5812e-08,3.5451e-08,2.3149e-08,1.8414e-08,1.5072e-08,4.9824e-09,3.4837e-09,3.3621e-09,1.3613e-09,1.1015e-09,1.0763e-09,6.715e-10,6.6357e-10,4.4607e-10,2.6019e-10,1.2354e-10,1.0929e-10,8.1477e-11,4.5173e-11,3.4942e-11,2.7727e-11,2.1611e-11,1.0318e-11,7.008e-12,6.9808e-12,5.7112e-12,4.2135e-12,4.0143e-12,2.6287e-12,2.2278e-12,1.9205e-12,1.2816e-12,1.1499e-12,9.2799e-13,7.3411e-13,4.7026e-13,3.1628e-13,7.8083e-14,6.6609e-14,5.5834e-14,4.1068e-14,2.7259e-14,2.5939e-14,1.4075e-14,1.3594e-14,1.136e-14,9.1173e-15,6.7008e-15,1.4985e-16,1.1273e-16,9.8651e-17,7.728e-17,7.0412e-17,5.3076e-17,1.8831e-17,1.6354e-17,1.2758e-17,9.6042e-18,7.9609e-18,3.2992e-18,3.0649e-18,1.3724e-18,5.3711e-19,2.3825e-19,2.2218e-19,8.9546e-20,3.9906e-20,3.802e-20,2.6669e-20,1.276e-20,1.2551e-20,1.2098e-20,4.8795e-21,4.4746e-21,2.6387e-21,2.0329e-21,1.1299e-21,9.6252e-22,4.4319e-22,3.854e-22,1.7254e-22,1.3904e-22 1,0.00049566,0.00053904,0.00056461,0.00066168,0.00080749,0.00081122,0.0008548,0.0010535,0.0016167,0.001748,0.0018027,0.0018047,0.0020347,0.0025093,0.0025786,0.0029689,0.0045292,0.0067206,0.0070741,0.0089551,0.010223,0.011354,0.011789,0.013521,0.013633,0.015508,0.018712,0.021994,0.023525,0.031668,0.032043,0.040429,0.045985,0.047542,0.05474,0.059233,0.059312,0.061809,0.10992,0.18304,0.20456,0.20525,0.20533,0.23078,0.2768,0.28402,0.28897,0.37453,0.38509,0.39082,0.49003,0.57501,0.62829,0.66359,0.70571,0.848,0.89011,0.8948,0.9418,0.97909,0.98998,0.99001,0.9987,1,0.99938,0.99682,0.99311,0.98561,0.98161,0.96731,0.93307,0.9144,0.88079,0.80118,0.79242,0.75775,0.73662,0.67234,0.55743,0.52642,0.44296,0.38007,0.34765,0.2944,0.28766,0.28148,0.25145,0.23549,0.23515,0.22246,0.21316,0.19794,0.1967,0.19616,0.19316,0.18507,0.17218,0.16572,0.13824,0.13819,0.1098,0.10946,0.10402,0.10062,0.098475,0.091735,0.085121,0.066641,0.064289,0.057173,0.033359,0.028046,0.026431,0.01813,0.017308,0.016433,0.010952,0.010322,0.0086355,0.0080247,0.0078235,0.0074484,0.0053802,0.0038059,0.0036704,0.0033395,0.0028186,0.0016621,0.0016231,0.0015625,0.0006036,0.00030845,0.0002306,0.00020354,0.00014345,0.0001207,0.00011098,8.0708e-05,4.3441e-05,3.0854e-05,2.8741e-05,2.6727e-05,2.6433e-05,2.2485e-05,5.3994e-06,4.1644e-06,3.9316e-06,3.4242e-06,2.3165e-06,1.9075e-06,1.0451e-06,9.6715e-07,8.6922e-07,8.2595e-07,7.0226e-07,5.4581e-07,4.8536e-07,4.4164e-07,3.1972e-07,2.8407e-07,1.974e-07,1.7934e-07,1.3289e-07,1.2328e-07,1.1022e-07,1.0962e-07,1.0086e-07,7.9543e-08,4.821e-08,4.7728e-08,3.1282e-08,2.4931e-08,2.0442e-08,6.8203e-09,4.7827e-09,4.6172e-09,1.8832e-09,1.5264e-09,1.4918e-09,9.3413e-10,9.2319e-10,6.2253e-10,3.6463e-10,1.7412e-10,1.5418e-10,1.1519e-10,6.4146e-11,4.9712e-11,3.9513e-11,3.0854e-11,1.481e-11,1.0087e-11,1.0048e-11,8.2321e-12,6.0864e-12,5.8006e-12,3.8097e-12,3.2324e-12,2.7894e-12,1.8667e-12,1.6761e-12,1.3546e-12,1.0733e-12,6.8965e-13,4.6507e-13,1.1589e-13,9.8962e-14,8.3049e-14,6.1208e-14,4.0735e-14,3.8775e-14,2.1123e-14,2.0405e-14,1.7071e-14,1.372e-14,1.0104e-14,2.3127e-16,1.7428e-16,1.5264e-16,1.1974e-16,1.0916e-16,8.2423e-17,2.9422e-17,2.5572e-17,1.9978e-17,1.5064e-17,1.25e-17,5.2064e-18,4.8387e-18,2.1765e-18,8.563e-19,3.8155e-19,3.5594e-19,1.4417e-19,6.4533e-20,6.1499e-20,4.322e-20,2.0761e-20,2.0423e-20,1.969e-20,7.9797e-21,7.3209e-21,4.3292e-21,3.3398e-21,1.862e-21,1.5875e-21,7.3387e-22,6.3864e-22,2.871e-22,2.316e-22 1,0.000432,0.00047015,0.00049266,0.0005782,0.00070691,0.00071021,0.00074872,0.00092456,0.0014247,0.0015416,0.0015904,0.0015921,0.0017972,0.0022211,0.002283,0.0026324,0.0040336,0.006011,0.0063308,0.0080354,0.0091873,0.010216,0.010612,0.012191,0.012294,0.014006,0.016938,0.01995,0.021357,0.028862,0.029208,0.036968,0.042124,0.043572,0.05027,0.054459,0.054533,0.056863,0.10205,0.17147,0.19205,0.19271,0.19278,0.21719,0.26151,0.26848,0.27326,0.35634,0.36664,0.37224,0.46963,0.55384,0.60702,0.64244,0.68492,0.83057,0.87463,0.87958,0.92985,0.97145,0.98446,0.9845,0.9963,0.99938,1,0.999,0.9966,0.9909,0.98766,0.97549,0.94475,0.92751,0.89595,0.81961,0.81112,0.77733,0.75664,0.69326,0.57862,0.54743,0.46295,0.39883,0.36561,0.31082,0.30385,0.29747,0.26638,0.24981,0.24946,0.23627,0.22659,0.21071,0.20942,0.20886,0.20572,0.19727,0.18377,0.17701,0.14814,0.14809,0.11813,0.11777,0.11202,0.10841,0.10614,0.098985,0.091958,0.072267,0.069753,0.062141,0.036532,0.030785,0.029035,0.020011,0.019115,0.018161,0.012162,0.011471,0.0096159,0.0089433,0.0087215,0.0083079,0.0060226,0.0042761,0.0041255,0.0037573,0.0031768,0.0018832,0.0018395,0.0017715,0.00069047,0.00035496,0.00026604,0.00023507,0.00016616,0.00014001,0.00012882,9.3929e-05,5.0807e-05,3.6181e-05,3.3722e-05,3.1376e-05,3.1034e-05,2.6431e-05,6.4139e-06,4.9559e-06,4.6808e-06,4.0807e-06,2.7681e-06,2.2824e-06,1.2556e-06,1.1626e-06,1.0456e-06,9.9387e-07,8.4595e-07,6.5857e-07,5.8608e-07,5.3361e-07,3.8711e-07,3.4421e-07,2.3974e-07,2.1794e-07,1.618e-07,1.5017e-07,1.3435e-07,1.3362e-07,1.2301e-07,9.7153e-08,5.9063e-08,5.8476e-08,3.8424e-08,3.0664e-08,2.5172e-08,8.4523e-09,5.9392e-09,5.7347e-09,2.3508e-09,1.9075e-09,1.8645e-09,1.1706e-09,1.1569e-09,7.8181e-10,4.5924e-10,2.2015e-10,1.9506e-10,1.4596e-10,8.1525e-11,6.3263e-11,5.0343e-11,3.9359e-11,1.8962e-11,1.2939e-11,1.289e-11,1.0571e-11,7.8271e-12,7.4613e-12,4.9104e-12,4.1696e-12,3.6007e-12,2.4143e-12,2.1689e-12,1.7547e-12,1.3918e-12,8.9616e-13,6.0545e-13,1.5184e-13,1.2975e-13,1.0898e-13,8.0426e-14,5.3622e-14,5.1053e-14,2.7887e-14,2.6944e-14,2.2559e-14,1.8149e-14,1.3382e-14,3.1128e-16,2.3485e-16,2.0579e-16,1.6161e-16,1.4738e-16,1.1141e-16,3.9934e-17,3.4729e-17,2.7158e-17,2.0501e-17,1.7024e-17,7.1155e-18,6.6149e-18,2.9848e-18,1.1785e-18,5.2676e-19,4.9153e-19,1.9978e-19,8.9691e-20,8.5491e-20,6.016e-20,2.8976e-20,2.8506e-20,2.7487e-20,1.1177e-20,1.0257e-20,6.077e-21,4.6926e-21,2.6218e-21,2.2364e-21,1.0367e-21,9.0265e-22,4.0693e-22,3.2852e-22 1,0.00036189,0.00039424,0.00041333,0.00048599,0.00059557,0.00059838,0.00063122,0.00078141,0.0012105,0.0013111,0.0013531,0.0013546,0.0015314,0.0018976,0.0019512,0.002254,0.0034734,0.0052045,0.0054854,0.0069861,0.008003,0.0089134,0.0092638,0.010664,0.010755,0.012278,0.014892,0.017585,0.018846,0.025595,0.025907,0.032923,0.037601,0.038917,0.045016,0.048839,0.048906,0.051036,0.092655,0.1575,0.17689,0.17751,0.17758,0.20066,0.24279,0.24944,0.25401,0.33383,0.34379,0.3492,0.44405,0.52702,0.5799,0.61535,0.65812,0.80743,0.85376,0.85901,0.91321,0.96009,0.97572,0.97577,0.99148,0.99682,0.999,1,0.99929,0.99592,0.99365,0.98428,0.95815,0.9428,0.91402,0.84223,0.8341,0.80161,0.78157,0.7196,0.60574,0.57441,0.48889,0.42335,0.38917,0.33248,0.32525,0.31861,0.2862,0.26886,0.2685,0.25467,0.2445,0.22779,0.22643,0.22584,0.22253,0.21361,0.19935,0.19218,0.16152,0.16146,0.12944,0.12905,0.12288,0.11901,0.11657,0.10887,0.1013,0.07999,0.077261,0.068982,0.040947,0.034607,0.032672,0.022656,0.021657,0.020592,0.013876,0.013099,0.011009,0.01025,0.0099996,0.0095322,0.0069417,0.004952,0.0047799,0.0043588,0.0036935,0.0022044,0.0021538,0.0020752,0.00081815,0.00042381,0.00031866,0.00028196,0.00020005,0.00016887,0.00015552,0.00011377,6.1927e-05,4.4249e-05,4.1271e-05,3.8427e-05,3.8012e-05,3.2425e-05,7.9742e-06,6.1761e-06,5.8362e-06,5.0942e-06,3.4677e-06,2.8641e-06,1.5838e-06,1.4674e-06,1.3209e-06,1.2561e-06,1.0706e-06,8.3525e-07,7.4404e-07,6.7796e-07,4.9314e-07,4.3891e-07,3.0661e-07,2.7893e-07,2.0758e-07,1.9278e-07,1.7262e-07,1.7169e-07,1.5816e-07,1.2515e-07,7.6378e-08,7.5625e-08,4.9853e-08,3.9854e-08,3.2765e-08,1.1092e-08,7.8138e-09,7.5468e-09,3.1134e-09,2.5301e-09,2.4735e-09,1.558e-09,1.5399e-09,1.0435e-09,6.1518e-10,2.9637e-10,2.6281e-10,1.9703e-10,1.1048e-10,8.5872e-11,6.8437e-11,5.3591e-11,2.5939e-11,1.7743e-11,1.7676e-11,1.4514e-11,1.0767e-11,1.0267e-11,6.7745e-12,5.7583e-12,4.9772e-12,3.3455e-12,3.0074e-12,2.4362e-12,1.9351e-12,1.2493e-12,8.46e-13,2.139e-13,1.8295e-13,1.5381e-13,1.1372e-13,7.5994e-14,7.2374e-14,3.967e-14,3.8335e-14,3.2128e-14,2.5879e-14,1.9115e-14,4.5382e-16,3.429e-16,3.0069e-16,2.3642e-16,2.1572e-16,1.633e-16,5.8848e-17,5.1215e-17,4.0101e-17,3.0315e-17,2.5197e-17,1.0578e-17,9.8376e-18,4.4566e-18,1.7678e-18,7.9327e-19,7.4046e-19,3.0227e-19,1.3623e-19,1.2988e-19,9.1547e-20,4.4247e-20,4.3533e-20,4.1984e-20,1.7143e-20,1.5739e-20,9.3476e-21,7.2268e-21,4.0485e-21,3.456e-21,1.6077e-21,1.4007e-21,6.3372e-22,5.1211e-22 1,0.00031115,0.00033924,0.00035583,0.00041903,0.00051453,0.00051698,0.00054564,0.0006769,0.0010533,0.0011417,0.0011787,0.00118,0.0013357,0.001659,0.0017063,0.0019741,0.0030566,0.0046013,0.0048526,0.0061979,0.0071117,0.0079312,0.0082468,0.0095103,0.0095925,0.010968,0.013337,0.015784,0.016931,0.023091,0.023376,0.029808,0.03411,0.035321,0.040946,0.044479,0.044541,0.046511,0.085267,0.14636,0.16476,0.16535,0.16542,0.18739,0.22768,0.23406,0.23844,0.31544,0.3251,0.33035,0.42289,0.50461,0.55709,0.59245,0.63531,0.78717,0.83523,0.84071,0.89799,0.94912,0.96689,0.96695,0.98589,0.99311,0.9966,0.99929,1,0.99861,0.99718,0.99021,0.9681,0.95442,0.92811,0.86046,0.85269,0.82141,0.802,0.74146,0.62863,0.59729,0.51112,0.44452,0.40961,0.3514,0.34395,0.3371,0.30361,0.28563,0.28526,0.27089,0.26031,0.24291,0.24149,0.24087,0.23742,0.2281,0.21319,0.20568,0.17347,0.17341,0.13961,0.1392,0.13267,0.12857,0.12597,0.1178,0.10975,0.087015,0.084095,0.075224,0.045017,0.038141,0.036039,0.02512,0.024026,0.022862,0.015486,0.014629,0.012323,0.011483,0.011206,0.010689,0.007814,0.0055965,0.0054041,0.0049333,0.0041882,0.0025139,0.0024569,0.0023681,0.00094269,0.00049148,0.00037055,0.00032824,0.00023363,0.00019752,0.00018204,0.00013354,7.3077e-05,5.2366e-05,4.8869e-05,4.5529e-05,4.5041e-05,3.8473e-05,9.5688e-06,7.4258e-06,7.0202e-06,6.1341e-06,4.1877e-06,3.4637e-06,1.9238e-06,1.7834e-06,1.6066e-06,1.5284e-06,1.3042e-06,1.0193e-06,9.0871e-07,8.2855e-07,6.0403e-07,5.3804e-07,3.7679e-07,3.4301e-07,2.5578e-07,2.3766e-07,2.1297e-07,2.1183e-07,1.9525e-07,1.5474e-07,9.4746e-08,9.3818e-08,6.2015e-08,4.9649e-08,4.0869e-08,1.393e-08,9.835e-09,9.5009e-09,3.9409e-09,3.2066e-09,3.1352e-09,1.9802e-09,1.9574e-09,1.3294e-09,7.8618e-10,3.8035e-10,3.3751e-10,2.5345e-10,1.4257e-10,1.1097e-10,8.8553e-11,6.9436e-11,3.3742e-11,2.3128e-11,2.304e-11,1.8939e-11,1.4072e-11,1.3422e-11,8.8757e-12,7.5508e-12,6.5315e-12,4.3993e-12,3.957e-12,3.2088e-12,2.5519e-12,1.6511e-12,1.1204e-12,2.8522e-13,2.4415e-13,2.0544e-13,1.5211e-13,1.0185e-13,9.7021e-14,5.3335e-14,5.1549e-14,4.3239e-14,3.4864e-14,2.5789e-14,6.2295e-16,4.7128e-16,4.135e-16,3.2548e-16,2.9709e-16,2.2519e-16,8.1513e-17,7.0983e-17,5.5638e-17,4.2111e-17,3.5031e-17,1.4761e-17,1.3732e-17,6.2418e-18,2.4856e-18,1.1191e-18,1.0449e-18,4.2811e-19,1.9357e-19,1.8458e-19,1.3029e-19,6.3158e-20,6.2142e-20,5.994e-20,2.4562e-20,2.2558e-20,1.3425e-20,1.039e-20,5.8336e-21,4.9829e-21,2.3249e-21,2.0266e-21,9.1971e-22,7.4382e-22 1,0.00025142,0.00027443,0.00028803,0.00033993,0.00041856,0.00042058,0.00044422,0.00055271,0.00086537,0.00093913,0.00096997,0.00097108,0.0011012,0.001372,0.0014117,0.0016369,0.0025513,0.0038655,0.0040801,0.0052321,0.0060173,0.006723,0.0069952,0.0080867,0.0081577,0.0093497,0.011408,0.013542,0.014546,0.019953,0.020205,0.025887,0.029703,0.030779,0.03579,0.038945,0.039001,0.040763,0.075753,0.13182,0.14887,0.14941,0.14947,0.16993,0.20766,0.21366,0.21779,0.29077,0.29999,0.30501,0.39409,0.47379,0.52549,0.56057,0.60338,0.75794,0.80811,0.81389,0.87509,0.9318,0.95244,0.95251,0.97582,0.98561,0.9909,0.99592,0.99861,1,0.99975,0.99617,0.97981,0.96856,0.94588,0.88445,0.87721,0.84783,0.82941,0.77123,0.66046,0.62923,0.54255,0.47471,0.43887,0.3787,0.37095,0.36384,0.32888,0.31005,0.30965,0.29456,0.28342,0.26506,0.26356,0.2629,0.25925,0.24939,0.23355,0.22557,0.19118,0.19112,0.15479,0.15435,0.14729,0.14285,0.14004,0.13118,0.12243,0.097624,0.094425,0.084685,0.051258,0.04358,0.041225,0.028942,0.027706,0.026388,0.018005,0.017026,0.014387,0.013423,0.013105,0.01251,0.009195,0.0066222,0.0063983,0.0058494,0.0049791,0.0030125,0.0029451,0.0028403,0.001146,0.00060288,0.00045625,0.00040481,0.0002894,0.0002452,0.00022621,0.0001666,9.1843e-05,6.6076e-05,6.1715e-05,5.7545e-05,5.6936e-05,4.8723e-05,1.231e-05,9.5797e-06,9.062e-06,7.9297e-06,5.4357e-06,4.505e-06,2.5175e-06,2.3355e-06,2.1063e-06,2.0047e-06,1.7134e-06,1.3424e-06,1.1982e-06,1.0935e-06,7.9968e-07,7.1313e-07,5.0114e-07,4.5663e-07,3.4147e-07,3.1749e-07,2.8481e-07,2.833e-07,2.6132e-07,2.0756e-07,1.2767e-07,1.2643e-07,8.3894e-08,6.7301e-08,5.5497e-08,1.9098e-08,1.3525e-08,1.3069e-08,5.462e-09,4.452e-09,4.3537e-09,2.7604e-09,2.7289e-09,1.8593e-09,1.1043e-09,5.3739e-10,4.7732e-10,3.5926e-10,2.0301e-10,1.5833e-10,1.2656e-10,9.9425e-11,4.8582e-11,3.3395e-11,3.3269e-11,2.7388e-11,2.0395e-11,1.9459e-11,1.2908e-11,1.0994e-11,9.5201e-12,6.4308e-12,5.7887e-12,4.7014e-12,3.7451e-12,2.4308e-12,1.6539e-12,4.2511e-13,3.6429e-13,3.0689e-13,2.277e-13,1.5288e-13,1.4568e-13,8.041e-14,7.7735e-14,6.5281e-14,5.2714e-14,3.9071e-14,9.668e-16,7.3269e-16,6.434e-16,5.0719e-16,4.6323e-16,3.5171e-16,1.2811e-16,1.1166e-16,8.765e-17,6.6453e-17,5.5341e-17,2.3441e-17,2.1816e-17,9.963e-18,3.989e-18,1.8043e-18,1.6854e-18,6.941e-19,3.1526e-19,3.007e-19,2.1268e-19,1.0351e-19,1.0186e-19,9.8268e-20,4.0469e-20,3.7185e-20,2.2193e-20,1.72e-20,9.6877e-21,8.2822e-21,3.8803e-21,3.3849e-21,1.5427e-21,1.2491e-21 1,0.00022944,0.00025056,0.00026305,0.00031073,0.00038306,0.00038492,0.00040668,0.00050664,0.00079532,0.00086354,0.00089206,0.00089309,0.0010135,0.0012645,0.0013013,0.0015102,0.0023606,0.0035864,0.0037868,0.0048643,0.0055998,0.0062614,0.0065168,0.0075414,0.0076081,0.0087285,0.010666,0.012678,0.013624,0.018736,0.018974,0.024359,0.027982,0.029005,0.03377,0.036775,0.036828,0.038507,0.071976,0.12597,0.14246,0.14299,0.14305,0.16287,0.19952,0.20536,0.20938,0.28064,0.28966,0.29458,0.38213,0.46087,0.51217,0.54708,0.58979,0.74521,0.79617,0.80207,0.8648,0.92375,0.94556,0.94564,0.97075,0.98161,0.98766,0.99365,0.99718,0.99975,1,0.99788,0.98401,0.97382,0.95274,0.8941,0.88711,0.8586,0.84065,0.7836,0.67391,0.64279,0.55602,0.48775,0.45157,0.39061,0.38275,0.37552,0.33997,0.32078,0.32038,0.30499,0.29362,0.27485,0.27331,0.27264,0.26891,0.25881,0.24259,0.23441,0.19909,0.19903,0.16159,0.16114,0.15385,0.14927,0.14637,0.13721,0.12815,0.10243,0.099111,0.088986,0.054122,0.046082,0.043614,0.030713,0.029412,0.028025,0.019181,0.018146,0.015353,0.014333,0.013995,0.013365,0.0098457,0.0071076,0.0068689,0.0062837,0.0053547,0.0032507,0.0031785,0.0030661,0.0012442,0.00065704,0.00049804,0.00044219,0.00031672,0.00026859,0.00024791,0.00018288,0.00010113,7.2885e-05,6.8097e-05,6.3519e-05,6.285e-05,5.3826e-05,1.3691e-05,1.0667e-05,1.0093e-05,8.8372e-06,6.0682e-06,5.0335e-06,2.8202e-06,2.6172e-06,2.3614e-06,2.248e-06,1.9227e-06,1.5079e-06,1.3466e-06,1.2294e-06,9.0028e-07,8.0322e-07,5.6529e-07,5.1527e-07,3.8579e-07,3.5881e-07,3.2202e-07,3.2031e-07,2.9557e-07,2.3497e-07,1.4482e-07,1.4342e-07,9.5318e-08,7.6532e-08,6.3156e-08,2.1823e-08,1.5474e-08,1.4955e-08,6.2701e-09,5.1144e-09,5.002e-09,3.1766e-09,3.1405e-09,2.1427e-09,1.2749e-09,6.2197e-10,5.5267e-10,4.1637e-10,2.3574e-10,1.84e-10,1.4719e-10,1.1573e-10,5.6681e-11,3.9009e-11,3.8863e-11,3.2012e-11,2.3862e-11,2.277e-11,1.5124e-11,1.2888e-11,1.1165e-11,7.5514e-12,6.7995e-12,5.526e-12,4.405e-12,2.8629e-12,1.9503e-12,5.0333e-13,4.3151e-13,3.6371e-13,2.7009e-13,1.8156e-13,1.7303e-13,9.567e-14,9.2497e-14,7.7716e-14,6.2794e-14,4.6582e-14,1.1645e-15,8.832e-16,7.7584e-16,6.1199e-16,5.5907e-16,4.2479e-16,1.5515e-16,1.3527e-16,1.0625e-16,8.0613e-17,6.7165e-17,2.8512e-17,2.6541e-17,1.2145e-17,4.8738e-18,2.2089e-18,2.0636e-18,8.5173e-19,3.876e-19,3.6975e-19,2.6173e-19,1.2761e-19,1.2557e-19,1.2116e-19,5.0002e-20,4.5953e-20,2.746e-20,2.1294e-20,1.201e-20,1.0271e-20,4.8207e-21,4.2065e-21,1.9206e-21,1.5558e-21 1,0.00017535,0.00019176,0.00020147,0.00023863,0.00029518,0.00029664,0.0003137,0.00039223,0.00062045,0.00067463,0.00069731,0.00069813,0.00079403,0.00099451,0.001024,0.0011916,0.0018779,0.0028759,0.0030399,0.0039241,0.0045303,0.005077,0.0052884,0.0061384,0.0061939,0.0071265,0.0087458,0.010435,0.011232,0.015558,0.01576,0.020352,0.023457,0.024336,0.028441,0.031038,0.031084,0.032538,0.061851,0.11009,0.125,0.12548,0.12553,0.14355,0.17711,0.18249,0.1862,0.25242,0.26087,0.26548,0.34837,0.42407,0.47398,0.50822,0.55042,0.70738,0.76029,0.76647,0.83319,0.89818,0.92321,0.9233,0.95343,0.96731,0.97549,0.98428,0.99021,0.99617,0.99788,1,0.99348,0.98645,0.97019,0.92014,0.91392,0.88817,0.8717,0.81834,0.71255,0.68195,0.59542,0.52624,0.48919,0.42621,0.41804,0.41051,0.37333,0.35315,0.35273,0.33649,0.32446,0.30454,0.30291,0.3022,0.29822,0.28747,0.27014,0.26137,0.22334,0.22327,0.18261,0.18212,0.17415,0.16913,0.16596,0.15591,0.14594,0.11747,0.11377,0.10248,0.063212,0.054053,0.051231,0.036399,0.034895,0.033287,0.022989,0.021777,0.018495,0.017293,0.016894,0.01615,0.011977,0.0087058,0.0084194,0.0077161,0.0065968,0.0040443,0.0039561,0.0038189,0.0015757,0.0008414,0.00064077,0.00057004,0.00041054,0.00034908,0.00032261,0.00023914,0.00013346,9.6657e-05,9.04e-05,8.4409e-05,8.3533e-05,7.1703e-05,1.8597e-05,1.4538e-05,1.3767e-05,1.2076e-05,8.3338e-06,6.9299e-06,3.9121e-06,3.634e-06,3.2832e-06,3.1275e-06,2.6802e-06,2.1085e-06,1.8856e-06,1.7235e-06,1.267e-06,1.132e-06,8.0009e-07,7.3012e-07,5.4855e-07,5.1063e-07,4.5887e-07,4.5646e-07,4.216e-07,3.3608e-07,2.0831e-07,2.0632e-07,1.3777e-07,1.109e-07,9.1714e-08,3.2068e-08,2.2824e-08,2.2066e-08,9.3384e-09,7.6337e-09,7.4675e-09,4.765e-09,4.7114e-09,3.2272e-09,1.9305e-09,9.4863e-10,8.4393e-10,6.376e-10,3.6302e-10,2.8404e-10,2.2771e-10,1.7945e-10,8.8491e-11,6.1117e-11,6.0891e-11,5.0248e-11,3.7557e-11,3.5855e-11,2.3905e-11,2.0401e-11,1.7697e-11,1.2012e-11,1.0827e-11,8.8153e-12,7.0415e-12,4.5941e-12,3.1403e-12,8.2015e-13,7.0406e-13,5.943e-13,4.4246e-13,2.9844e-13,2.8454e-13,1.5811e-13,1.5291e-13,1.2866e-13,1.0415e-13,7.7451e-14,1.9948e-15,1.5162e-15,1.3332e-15,1.0536e-15,9.6317e-16,7.334e-16,2.6994e-16,2.356e-16,1.854e-16,1.4096e-16,1.1761e-16,5.0248e-17,4.6799e-17,2.1539e-17,8.7019e-18,3.9666e-18,3.7075e-18,1.54e-18,7.0474e-19,6.725e-19,4.772e-19,2.3384e-19,2.3014e-19,2.221e-19,9.2225e-20,8.4807e-20,5.0858e-20,3.9507e-20,2.2369e-20,1.9151e-20,9.0346e-21,7.8907e-21,3.6217e-21,2.9379e-21 1,0.00010826,0.00011868,0.00012486,0.00014859,0.00018491,0.00018585,0.00019685,0.00024771,0.00039714,0.0004329,0.0004479,0.00044844,0.00051203,0.00064572,0.00066549,0.00077803,0.001244,0.0019319,0.0020459,0.002664,0.0030908,0.0034777,0.0036277,0.0042332,0.0042728,0.0049411,0.0061096,0.0073378,0.0079205,0.011111,0.011261,0.014693,0.017035,0.0177,0.020823,0.022811,0.022846,0.023962,0.046914,0.08601,0.098345,0.098746,0.098789,0.11383,0.14223,0.14682,0.14998,0.20742,0.21486,0.21892,0.29312,0.36268,0.40946,0.44199,0.48258,0.63897,0.694,0.70052,0.77248,0.84625,0.87619,0.8763,0.91434,0.93307,0.94475,0.95815,0.9681,0.97981,0.98401,0.99348,1,0.99871,0.99137,0.95781,0.95311,0.93293,0.91951,0.87407,0.77781,0.74882,0.66462,0.59516,0.55724,0.49166,0.48304,0.47508,0.4355,0.41381,0.41335,0.39577,0.3827,0.36092,0.35913,0.35835,0.35398,0.34213,0.32293,0.31318,0.27048,0.27041,0.22403,0.22345,0.21427,0.20847,0.20479,0.19311,0.18146,0.14788,0.14348,0.12997,0.082167,0.070791,0.067266,0.048543,0.046624,0.044569,0.031271,0.029689,0.025384,0.023798,0.023271,0.022286,0.016722,0.012302,0.011912,0.010952,0.0094171,0.0058738,0.0057501,0.0055574,0.002361,0.0012856,0.00098711,0.00088121,0.00064076,0.0005474,0.00050702,0.00037903,0.00021496,0.00015704,0.00014713,0.00013763,0.00013624,0.00011742,3.1511e-05,2.4783e-05,2.3498e-05,2.0677e-05,1.4397e-05,1.2023e-05,6.8782e-06,6.4001e-06,5.7955e-06,5.5268e-06,4.753e-06,3.7594e-06,3.3703e-06,3.0868e-06,2.2846e-06,2.0462e-06,1.4572e-06,1.3324e-06,1.0072e-06,9.3902e-07,8.4574e-07,8.414e-07,7.7845e-07,6.2351e-07,3.9033e-07,3.8667e-07,2.6035e-07,2.1049e-07,1.7475e-07,6.2383e-08,4.4694e-08,4.3238e-08,1.86e-08,1.5262e-08,1.4936e-08,9.6108e-09,9.5047e-09,6.5559e-09,3.9585e-09,1.9701e-09,1.7563e-09,1.3335e-09,7.6671e-10,6.0245e-10,4.8482e-10,3.8363e-10,1.9146e-10,1.3305e-10,1.3257e-10,1.0975e-10,8.2426e-11,7.8752e-11,5.2855e-11,4.5225e-11,3.9322e-11,2.6858e-11,2.4248e-11,1.9808e-11,1.588e-11,1.0431e-11,7.173e-12,1.9128e-12,1.6459e-12,1.3929e-12,1.0417e-12,7.0681e-13,6.7437e-13,3.7805e-13,3.6579e-13,3.0858e-13,2.5056e-13,1.8715e-13,5.0792e-15,3.8753e-15,3.4137e-15,2.7065e-15,2.4773e-15,1.8934e-15,7.0643e-16,6.1769e-16,4.8765e-16,3.7213e-16,3.1123e-16,1.3448e-16,1.2537e-16,5.8292e-17,2.3829e-17,1.0972e-17,1.0264e-17,4.3113e-18,1.9924e-18,1.9024e-18,1.3557e-18,6.7024e-19,6.5975e-19,6.37e-19,2.6738e-19,2.4612e-19,1.4852e-19,1.1572e-19,6.5976e-20,5.659e-20,2.6937e-20,2.3565e-20,1.0916e-20,8.8769e-21 1,8.7012e-05,9.5494e-05,0.00010053,0.00011989,0.00014959,0.00015036,0.00015937,0.00020112,0.00032438,0.00035397,0.0003664,0.00036685,0.00041958,0.00053076,0.00054723,0.00064111,0.0010316,0.0016122,0.0017087,0.0022335,0.0025971,0.0029273,0.0030555,0.0035739,0.0036079,0.0041816,0.0051878,0.0062491,0.0067537,0.0095276,0.0096588,0.01266,0.014716,0.015302,0.018054,0.019811,0.019842,0.02083,0.041319,0.076754,0.088036,0.088403,0.088443,0.10226,0.12848,0.13274,0.13567,0.18929,0.19628,0.20011,0.27034,0.33693,0.38209,0.41367,0.45328,0.60818,0.66364,0.67026,0.74382,0.8207,0.8525,0.85261,0.89373,0.9144,0.92751,0.9428,0.95442,0.96856,0.97382,0.98645,0.99871,1,0.99674,0.97096,0.96699,0.94954,0.93764,0.89627,0.8053,0.77733,0.69496,0.62598,0.58796,0.52167,0.51292,0.50482,0.46439,0.44213,0.44166,0.42358,0.41009,0.38758,0.38572,0.38491,0.38038,0.36809,0.34812,0.33796,0.29327,0.29319,0.24429,0.24369,0.23396,0.22781,0.2239,0.21147,0.19907,0.16311,0.15838,0.14384,0.091934,0.079471,0.075598,0.054935,0.052807,0.050526,0.035701,0.033928,0.029095,0.02731,0.026717,0.025606,0.019313,0.014285,0.01384,0.012743,0.010984,0.006904,0.0067609,0.0065378,0.0028138,0.0015455,0.001191,0.0010649,0.00077761,0.00066569,0.00061721,0.00046314,0.00026454,0.000194,0.00018191,0.0001703,0.0001686,0.00014556,3.9663e-05,3.1277e-05,2.9673e-05,2.6147e-05,1.8277e-05,1.5294e-05,8.8007e-06,8.1951e-06,7.4287e-06,7.0877e-06,6.1048e-06,4.8403e-06,4.3441e-06,3.9821e-06,2.9562e-06,2.6506e-06,1.894e-06,1.7333e-06,1.3138e-06,1.2257e-06,1.1051e-06,1.0994e-06,1.0179e-06,8.1707e-07,5.1376e-07,5.0899e-07,3.4397e-07,2.7863e-07,2.3172e-07,8.3488e-08,5.999e-08,5.8053e-08,2.5156e-08,2.0676e-08,2.0238e-08,1.3071e-08,1.2927e-08,8.9444e-09,5.4231e-09,2.7143e-09,2.422e-09,1.8429e-09,1.0643e-09,8.3785e-10,6.754e-10,5.3539e-10,2.6862e-10,1.872e-10,1.8652e-10,1.5463e-10,1.1638e-10,1.1123e-10,7.4877e-11,6.4141e-11,5.5827e-11,3.8238e-11,3.4547e-11,2.8263e-11,2.2694e-11,1.4952e-11,1.0309e-11,2.7748e-12,2.3901e-12,2.025e-12,1.5174e-12,1.0323e-12,9.8528e-13,5.5451e-13,5.3665e-13,4.5323e-13,3.6853e-13,2.758e-13,7.6611e-15,5.855e-15,5.1617e-15,4.0983e-15,3.7533e-15,2.8734e-15,1.0786e-15,9.4385e-16,7.4622e-16,5.7037e-16,4.7754e-16,2.0739e-16,1.9341e-16,9.0338e-17,3.7122e-17,1.717e-17,1.6068e-17,6.7827e-18,3.1483e-18,3.0068e-18,2.1468e-18,1.0655e-18,1.049e-18,1.013e-18,4.2723e-19,3.9345e-19,2.3808e-19,1.8576e-19,1.0623e-19,9.1191e-20,4.3581e-20,3.8152e-20,1.7746e-20,1.4447e-20 1,6.1149e-05,6.7226e-05,7.0841e-05,8.4763e-05,0.00010621,0.00010677,0.00011329,0.00014362,0.00023385,0.00025564,0.0002648,0.00026513,0.00030408,0.00038652,0.00039877,0.00046873,0.00076199,0.0012026,0.0012763,0.0016785,0.0019586,0.0022139,0.0023132,0.0027159,0.0027423,0.0031898,0.0039784,0.0048147,0.0052139,0.0074215,0.0075263,0.0099372,0.011599,0.012074,0.014312,0.015746,0.015772,0.01658,0.033584,0.063702,0.073429,0.073746,0.073781,0.08577,0.10872,0.11247,0.11506,0.16281,0.16909,0.17254,0.23644,0.29809,0.34045,0.37034,0.40813,0.55925,0.6148,0.62148,0.6967,0.7775,0.81179,0.81192,0.85733,0.88079,0.89595,0.91402,0.92811,0.94588,0.95274,0.97019,0.99137,0.99674,1,0.98697,0.98423,0.97138,0.96209,0.92778,0.84652,0.82054,0.74214,0.6747,0.63695,0.57019,0.56129,0.55304,0.5116,0.48863,0.48814,0.46938,0.45533,0.43178,0.42984,0.42899,0.42423,0.4113,0.39022,0.37944,0.33176,0.33168,0.27888,0.27823,0.26764,0.26093,0.25666,0.24306,0.22943,0.18963,0.18436,0.1681,0.10933,0.095012,0.090544,0.066525,0.064033,0.061357,0.043841,0.04173,0.035954,0.033813,0.033101,0.031765,0.024157,0.018021,0.017474,0.016126,0.013957,0.0088798,0.0087004,0.0084205,0.0036997,0.0020603,0.0015969,0.0014313,0.0010523,0.00090386,0.00083937,0.00063362,0.00036605,0.00027009,0.00025357,0.00023769,0.00023537,0.00020379,5.6883e-05,4.5047e-05,4.2777e-05,3.7779e-05,2.6573e-05,2.2304e-05,1.2955e-05,1.2078e-05,1.0967e-05,1.0472e-05,9.0416e-06,7.1961e-06,6.4699e-06,5.9391e-06,4.4302e-06,3.9793e-06,2.8585e-06,2.6196e-06,1.9943e-06,1.8625e-06,1.6819e-06,1.6735e-06,1.5513e-06,1.2493e-06,7.911e-07,7.8388e-07,5.3283e-07,4.3297e-07,3.6104e-07,1.3201e-07,9.5296e-08,9.2262e-08,4.0444e-08,3.3331e-08,3.2634e-08,2.1201e-08,2.0972e-08,1.4582e-08,8.8998e-09,4.4946e-09,4.0164e-09,3.0668e-09,1.7834e-09,1.4082e-09,1.1382e-09,9.0489e-10,4.5787e-10,3.2048e-10,3.1933e-10,2.6534e-10,2.0039e-10,1.9162e-10,1.296e-10,1.1122e-10,9.6963e-11,6.6708e-11,6.0341e-11,4.9481e-11,3.9831e-11,2.637e-11,1.8259e-11,4.9873e-12,4.3029e-12,3.6524e-12,2.7456e-12,1.8757e-12,1.7911e-12,1.0143e-12,9.8201e-13,8.3087e-13,6.7708e-13,5.0828e-13,1.4651e-14,1.1227e-14,9.9101e-15,7.8865e-15,7.2288e-15,5.5488e-15,2.1029e-15,1.8427e-15,1.4602e-15,1.119e-15,9.3846e-16,4.1082e-16,3.8339e-16,1.8036e-16,7.4734e-17,3.4814e-17,3.26e-17,1.387e-17,6.4828e-18,6.194e-18,4.4359e-18,2.2155e-18,2.1813e-18,2.1071e-18,8.955e-19,8.2528e-19,5.0159e-19,3.9221e-19,2.2538e-19,1.9373e-19,9.3174e-20,8.166e-20,3.8231e-20,3.1178e-20 1,2.9568e-05,3.2621e-05,3.4441e-05,4.1486e-05,5.2426e-05,5.2711e-05,5.6059e-05,7.1713e-05,0.00011901,0.00013056,0.00013543,0.00013561,0.00015638,0.00020073,0.00020735,0.00024536,0.0004071,0.00065536,0.00069733,0.00092846,0.001091,0.0012402,0.0012985,0.001536,0.0015517,0.0018179,0.0022916,0.0027995,0.0030436,0.0044107,0.0044763,0.0059971,0.0070585,0.0073633,0.0088106,0.0097454,0.009762,0.010292,0.021735,0.042991,0.050051,0.050282,0.050307,0.05912,0.076283,0.07912,0.081085,0.11802,0.12297,0.12569,0.17724,0.22867,0.26491,0.29091,0.32428,0.46353,0.51719,0.52374,0.59917,0.68407,0.72164,0.72178,0.77343,0.80118,0.81961,0.84223,0.86046,0.88445,0.8941,0.92014,0.95781,0.97096,0.98697,1,0.99987,0.99688,0.99329,0.97496,0.91738,0.89669,0.83007,0.76881,0.7332,0.66817,0.65931,0.65106,0.60908,0.58542,0.58492,0.56538,0.55064,0.52569,0.52362,0.52271,0.51764,0.50376,0.48096,0.46922,0.41651,0.41641,0.35657,0.35581,0.34361,0.33584,0.33088,0.31501,0.29899,0.25147,0.24509,0.22528,0.15172,0.13326,0.12745,0.095732,0.09239,0.088789,0.064879,0.061952,0.053885,0.05087,0.049865,0.047974,0.037094,0.028147,0.027342,0.025347,0.022115,0.014419,0.014143,0.013711,0.0062788,0.0035945,0.0028186,0.0025388,0.0018922,0.001636,0.0015241,0.0011644,0.00068814,0.00051401,0.00048379,0.00045466,0.00045039,0.00039218,0.0001149,9.1766e-05,8.7304e-05,7.7449e-05,5.5163e-05,4.6587e-05,2.7573e-05,2.5768e-05,2.3473e-05,2.2448e-05,1.9479e-05,1.5622e-05,1.4095e-05,1.2976e-05,9.7725e-06,8.8084e-06,6.3955e-06,5.8774e-06,4.5133e-06,4.2242e-06,3.8268e-06,3.8082e-06,3.5385e-06,2.8692e-06,1.8425e-06,1.8262e-06,1.256e-06,1.027e-06,8.6101e-07,3.2422e-07,2.3625e-07,2.2893e-07,1.0271e-07,8.5099e-08,8.3369e-08,5.4806e-08,5.423e-08,3.8079e-08,2.355e-08,1.2109e-08,1.0853e-08,8.3453e-09,4.9211e-09,3.9092e-09,3.1767e-09,2.5401e-09,1.3073e-09,9.2307e-10,9.1985e-10,7.6778e-10,5.8382e-10,5.5889e-10,3.8157e-10,3.2866e-10,2.8747e-10,1.9954e-10,1.8092e-10,1.4905e-10,1.206e-10,8.061e-11,5.6293e-11,1.5836e-11,1.3709e-11,1.1679e-11,8.8352e-12,6.0871e-12,5.8185e-12,3.3363e-12,3.2323e-12,2.7448e-12,2.2467e-12,1.6971e-12,5.2678e-14,4.0586e-14,3.5915e-14,2.8713e-14,2.6365e-14,2.0345e-14,7.8605e-15,6.9055e-15,5.4971e-15,4.2346e-15,3.5637e-15,1.5852e-15,1.4813e-15,7.07e-16,2.9787e-16,1.4075e-16,1.3197e-16,5.7039e-17,2.7034e-17,2.5851e-17,1.8626e-17,9.4197e-18,9.277e-18,8.967e-18,3.8696e-18,3.5714e-18,2.1898e-18,1.7197e-18,9.9786e-19,8.6e-19,4.1891e-19,3.6798e-19,1.7454e-19,1.4284e-19 1,2.7442e-05,3.0285e-05,3.1982e-05,3.855e-05,4.8757e-05,4.9023e-05,5.2148e-05,6.6772e-05,0.00011102,0.00012184,0.0001264,0.00012657,0.00014604,0.00018763,0.00019385,0.00022954,0.00038163,0.0006156,0.00065519,0.00087344,0.0010271,0.0011682,0.0012234,0.0014482,0.0014631,0.0017153,0.0021646,0.0026468,0.0028788,0.0041794,0.0042419,0.0056914,0.0067043,0.0069954,0.0083783,0.0092722,0.0092881,0.0097947,0.020773,0.041262,0.048085,0.04831,0.048334,0.056863,0.073502,0.076255,0.078164,0.11409,0.11892,0.12157,0.17192,0.22232,0.25793,0.28351,0.3164,0.45418,0.50753,0.51405,0.58928,0.67432,0.7121,0.71224,0.76434,0.79242,0.81112,0.8341,0.85269,0.87721,0.88711,0.91392,0.95311,0.96699,0.98423,0.99987,1,0.99804,0.99504,0.97841,0.92349,0.90343,0.83826,0.77785,0.74258,0.67794,0.66911,0.66089,0.61898,0.59531,0.5948,0.57524,0.56046,0.53544,0.53336,0.53245,0.52735,0.51341,0.49049,0.47867,0.42554,0.42545,0.36497,0.3642,0.35186,0.34398,0.33896,0.32288,0.30662,0.25835,0.25186,0.23168,0.15658,0.13768,0.13172,0.099162,0.095726,0.092022,0.067393,0.064373,0.056044,0.05293,0.05189,0.049936,0.038675,0.029397,0.028561,0.026489,0.023131,0.015118,0.01483,0.01438,0.0066127,0.0037962,0.0029803,0.0026857,0.0020044,0.0017342,0.0016161,0.0012362,0.00073224,0.00054763,0.00051556,0.00048465,0.00048011,0.0004183,0.00012315,9.8439e-05,9.3671e-05,8.3134e-05,5.9287e-05,5.0101e-05,2.9709e-05,2.7771e-05,2.5306e-05,2.4205e-05,2.1014e-05,1.6866e-05,1.5223e-05,1.4018e-05,1.0568e-05,9.5284e-06,6.9257e-06,6.3664e-06,4.8931e-06,4.5807e-06,4.1511e-06,4.131e-06,3.8394e-06,3.1152e-06,2.0034e-06,1.9857e-06,1.3673e-06,1.1187e-06,9.384e-07,3.5441e-07,2.5849e-07,2.5051e-07,1.1265e-07,9.3388e-08,9.1495e-08,6.0219e-08,5.9588e-08,4.1883e-08,2.5937e-08,1.3361e-08,1.1978e-08,9.2171e-09,5.4428e-09,4.3262e-09,3.5175e-09,2.8143e-09,1.4508e-09,1.0253e-09,1.0218e-09,8.5325e-10,6.4926e-10,6.216e-10,4.2478e-10,3.6602e-10,3.2025e-10,2.2249e-10,2.0178e-10,1.6632e-10,1.3464e-10,9.008e-11,6.296e-11,1.7765e-11,1.5383e-11,1.311e-11,9.9243e-12,6.8433e-12,6.542e-12,3.7559e-12,3.639e-12,3.0913e-12,2.5314e-12,1.9134e-12,5.9836e-14,4.6126e-14,4.0829e-14,3.2656e-14,2.9991e-14,2.3155e-14,8.9637e-15,7.8768e-15,6.2731e-15,4.8349e-15,4.0703e-15,1.8134e-15,1.6948e-15,8.1009e-16,3.4188e-16,1.6178e-16,1.517e-16,6.5673e-17,3.1169e-17,2.9808e-17,2.149e-17,1.0882e-17,1.0717e-17,1.036e-17,4.4776e-18,4.1331e-18,2.5365e-18,1.9929e-18,1.1575e-18,9.9783e-19,4.8667e-19,4.276e-19,2.0309e-19,1.6626e-19 1,2.0546e-05,2.2706e-05,2.3996e-05,2.8999e-05,3.6798e-05,3.7002e-05,3.9395e-05,5.0619e-05,8.479e-05,9.318e-05,9.6719e-05,9.6847e-05,0.00011199,0.00014442,0.00014928,0.00017722,0.00029699,0.00048275,0.00051432,0.00068892,0.00081233,0.00092596,0.00097044,0.0011521,0.0011641,0.0013686,0.0017343,0.0021284,0.0023184,0.0033894,0.003441,0.004643,0.005487,0.0057301,0.0068878,0.0076384,0.0076517,0.0080779,0.017412,0.035151,0.041121,0.041318,0.041339,0.048838,0.063565,0.066013,0.067711,0.09992,0.10428,0.10668,0.15254,0.19902,0.23217,0.25613,0.28712,0.41895,0.47086,0.47723,0.55139,0.63656,0.67491,0.67505,0.72856,0.75775,0.77733,0.80161,0.82141,0.84783,0.8586,0.88817,0.93293,0.94954,0.97138,0.99688,0.99804,1,0.99931,0.98937,0.94503,0.9275,0.86837,0.81161,0.77786,0.71507,0.70641,0.69833,0.65689,0.63332,0.63282,0.61325,0.59841,0.57319,0.57109,0.57016,0.56501,0.55088,0.52757,0.51551,0.46099,0.46089,0.39817,0.39737,0.38448,0.37624,0.37098,0.35411,0.337,0.28586,0.27895,0.2574,0.17633,0.15569,0.14916,0.11325,0.10944,0.10532,0.077806,0.074412,0.065022,0.061499,0.060323,0.058108,0.045294,0.034657,0.033694,0.031305,0.027421,0.018092,0.017755,0.017228,0.0080502,0.0046711,0.0036837,0.0033259,0.0024953,0.0021644,0.0020196,0.001552,0.00092744,0.00069691,0.00065675,0.00061798,0.00061228,0.00053463,0.00016037,0.00012862,0.00012248,0.00010889,7.803e-05,6.6097e-05,3.9481e-05,3.6939e-05,3.3703e-05,3.2256e-05,2.8058e-05,2.2586e-05,2.0413e-05,1.8818e-05,1.4239e-05,1.2857e-05,9.3835e-06,8.6351e-06,6.659e-06,6.2391e-06,5.661e-06,5.6339e-06,5.241e-06,4.2636e-06,2.7569e-06,2.7329e-06,1.8903e-06,1.5503e-06,1.3032e-06,4.9783e-07,3.6441e-07,3.5329e-07,1.603e-07,1.3317e-07,1.305e-07,8.6283e-08,8.5388e-08,6.0247e-08,3.7501e-08,1.9453e-08,1.7459e-08,1.3471e-08,7.9979e-09,6.372e-09,5.1918e-09,4.1631e-09,2.1603e-09,1.5319e-09,1.5267e-09,1.2771e-09,9.7435e-10,9.3323e-10,6.4008e-10,5.5231e-10,4.8386e-10,3.3731e-10,3.062e-10,2.5284e-10,2.0508e-10,1.3772e-10,9.6578e-11,2.7563e-11,2.3898e-11,2.0396e-11,1.5478e-11,1.0708e-11,1.024e-11,5.9075e-12,5.7253e-12,4.8704e-12,3.9952e-12,3.027e-12,9.7417e-14,7.5253e-14,6.6675e-14,5.3425e-14,4.9097e-14,3.7985e-14,1.4814e-14,1.3031e-14,1.0396e-14,8.029e-15,6.7683e-15,3.0342e-15,2.8372e-15,1.3637e-15,5.7924e-16,2.7562e-16,2.5857e-16,1.1263e-16,5.3743e-17,5.1412e-17,3.7153e-17,1.8904e-17,1.8621e-17,1.8004e-17,7.8275e-18,7.2293e-18,4.4518e-18,3.5035e-18,2.0426e-18,1.7627e-18,8.6395e-19,7.5975e-19,3.6268e-19,2.9731e-19 1,1.7286e-05,1.9119e-05,2.0214e-05,2.4465e-05,3.1105e-05,3.1279e-05,3.3319e-05,4.2902e-05,7.2176e-05,7.9382e-05,8.2424e-05,8.2534e-05,9.5555e-05,0.00012351,0.0001277,0.00015183,0.00025563,0.00041741,0.00044498,0.00059771,0.00070592,0.0008057,0.0008448,0.0010047,0.0010153,0.0011956,0.0015187,0.0018678,0.0020364,0.0029893,0.0030354,0.0041094,0.0048656,0.0050837,0.0061239,0.0067995,0.0068115,0.0071955,0.015659,0.031916,0.037422,0.037604,0.037623,0.044559,0.058231,0.06051,0.062092,0.092221,0.096314,0.098569,0.14187,0.18608,0.21778,0.24078,0.27062,0.3987,0.44962,0.4559,0.52918,0.61412,0.65266,0.6528,0.70691,0.73662,0.75664,0.78157,0.802,0.82941,0.84065,0.8717,0.91951,0.93764,0.96209,0.99329,0.99504,0.99931,1,0.99406,0.95622,0.94028,0.88502,0.8307,0.79801,0.73659,0.72807,0.7201,0.67912,0.6557,0.65519,0.63569,0.62087,0.59562,0.59351,0.59259,0.58741,0.57322,0.54976,0.5376,0.4824,0.4823,0.41841,0.4176,0.40441,0.39597,0.39058,0.37326,0.35567,0.30291,0.29575,0.27341,0.1888,0.1671,0.16022,0.12227,0.11822,0.11386,0.084541,0.080912,0.070855,0.067075,0.065812,0.063432,0.049632,0.038124,0.03708,0.034487,0.030264,0.02008,0.019711,0.019133,0.0090253,0.0052701,0.0041672,0.0037667,0.0028348,0.0024626,0.0022995,0.0017719,0.0010644,0.00080207,0.00075628,0.00071205,0.00070555,0.00061688,0.0001871,0.00015035,0.00014323,0.00012747,9.1607e-05,7.7707e-05,4.6615e-05,4.3638e-05,3.9845e-05,3.8148e-05,3.322e-05,2.6788e-05,2.4231e-05,2.2352e-05,1.6951e-05,1.5317e-05,1.1206e-05,1.0319e-05,7.9735e-06,7.4744e-06,6.7868e-06,6.7546e-06,6.287e-06,5.1224e-06,3.3229e-06,3.2941e-06,2.2846e-06,1.8764e-06,1.5793e-06,6.0736e-07,4.4553e-07,4.3203e-07,1.9707e-07,1.6391e-07,1.6065e-07,1.0651e-07,1.0541e-07,7.454e-08,4.6538e-08,2.4241e-08,2.1771e-08,1.6825e-08,1.0021e-08,7.9946e-09,6.5219e-09,5.2365e-09,2.7279e-09,1.9383e-09,1.9317e-09,1.6176e-09,1.2361e-09,1.1842e-09,8.1395e-10,7.0294e-10,6.1628e-10,4.305e-10,3.91e-10,3.2321e-10,2.6246e-10,1.7665e-10,1.2411e-10,3.5662e-11,3.0944e-11,2.6431e-11,2.0087e-11,1.3923e-11,1.3318e-11,7.705e-12,7.4686e-12,6.3587e-12,5.2213e-12,3.9615e-12,1.2967e-13,1.0029e-13,8.8913e-14,7.1318e-14,6.5567e-14,5.0789e-14,1.9895e-14,1.7511e-14,1.3985e-14,1.0813e-14,9.1226e-15,4.1046e-15,3.8393e-15,1.8514e-15,7.8941e-16,3.7686e-16,3.5364e-16,1.5459e-16,7.4004e-17,7.0808e-17,5.124e-17,2.6147e-17,2.5756e-17,2.4907e-17,1.0867e-17,1.004e-17,6.1948e-18,4.8801e-18,2.8514e-18,2.4622e-18,1.2103e-18,1.0649e-18,5.0986e-19,4.183e-19 1,1.0306e-05,1.1425e-05,1.2096e-05,1.4706e-05,1.8804e-05,1.8912e-05,2.0176e-05,2.6138e-05,4.4541e-05,4.9105e-05,5.1035e-05,5.1104e-05,5.9386e-05,7.7263e-05,7.9955e-05,9.5489e-05,0.000163,0.00026974,0.00028807,0.00039016,0.00046298,0.00053044,0.00055694,0.00066572,0.00067294,0.00079628,0.0010188,0.0012609,0.0013784,0.002048,0.0020806,0.0028447,0.0033871,0.0035441,0.0042963,0.0047875,0.0047962,0.0050763,0.011363,0.023822,0.02812,0.028262,0.028278,0.033736,0.044618,0.046446,0.047717,0.072232,0.075603,0.077463,0.11366,0.15141,0.17892,0.19908,0.22548,0.34179,0.38933,0.39524,0.46509,0.54809,0.58654,0.58669,0.64164,0.67234,0.69326,0.7196,0.74146,0.77123,0.7836,0.81834,0.87407,0.89627,0.92778,0.97496,0.97841,0.98937,0.99406,1,0.9821,0.9712,0.92853,0.88253,0.85362,0.79746,0.7895,0.78203,0.74313,0.72056,0.72008,0.70111,0.6866,0.66167,0.65958,0.65866,0.65352,0.63937,0.61581,0.60352,0.5471,0.547,0.4804,0.47954,0.46561,0.45668,0.45095,0.4325,0.41365,0.35645,0.34861,0.32402,0.22908,0.20421,0.19627,0.15203,0.14726,0.1421,0.10712,0.10274,0.090545,0.085937,0.084394,0.081482,0.06447,0.050095,0.048781,0.045509,0.040155,0.027084,0.026605,0.025856,0.012541,0.0074609,0.0059458,0.0053922,0.0040956,0.0035738,0.0033442,0.0025978,0.0015846,0.001204,0.0011372,0.0010726,0.001063,0.000933,0.00029236,0.00023628,0.00022538,0.00020118,0.00014581,0.0001242,7.5453e-05,7.0748e-05,6.4742e-05,6.205e-05,5.4215e-05,4.3944e-05,3.9844e-05,3.6824e-05,2.8107e-05,2.5458e-05,1.876e-05,1.7308e-05,1.3452e-05,1.2628e-05,1.1491e-05,1.1438e-05,1.0663e-05,8.7276e-06,5.7156e-06,5.6672e-06,3.9616e-06,3.2674e-06,2.7601e-06,1.0827e-06,7.9926e-07,7.7552e-07,3.5932e-07,2.9994e-07,2.9408e-07,1.9653e-07,1.9455e-07,1.3849e-07,8.7239e-08,4.5995e-08,4.1391e-08,3.2139e-08,1.9322e-08,1.5478e-08,1.2673e-08,1.0215e-08,5.3824e-09,3.8472e-09,3.8342e-09,3.2206e-09,2.4723e-09,2.3703e-09,1.6396e-09,1.4195e-09,1.2472e-09,8.7649e-10,7.9733e-10,6.6118e-10,5.3876e-10,3.6496e-10,2.579e-10,7.559e-11,6.5736e-11,5.6289e-11,4.2961e-11,2.9947e-11,2.8666e-11,1.6724e-11,1.6219e-11,1.3842e-11,1.14e-11,8.6859e-12,2.9887e-13,2.32e-13,2.0602e-13,1.6577e-13,1.5258e-13,1.1861e-13,4.7071e-14,4.1502e-14,3.3248e-14,2.5798e-14,2.1814e-14,9.9214e-15,9.2885e-15,4.523e-15,1.9503e-15,9.4005e-16,8.8286e-16,3.9007e-16,1.8849e-16,1.8045e-16,1.3111e-16,6.7474e-17,6.6477e-17,6.4312e-17,2.8349e-17,2.6217e-17,1.6273e-17,1.2857e-17,7.5617e-18,6.5411e-18,3.2431e-18,2.8578e-18,1.3804e-18,1.1351e-18 1,4.0707e-06,4.5313e-06,4.8081e-06,5.8916e-06,7.609e-06,7.6543e-06,8.1875e-06,1.072e-05,1.8681e-05,2.0681e-05,2.1529e-05,2.156e-05,2.5216e-05,3.3183e-05,3.439e-05,4.1394e-05,7.2375e-05,0.00012259,0.00013132,0.00018044,0.0002159,0.000249,0.00026207,0.00031603,0.00031962,0.0003814,0.00049412,0.00061831,0.0006791,0.0010305,0.0010477,0.0014573,0.0017522,0.0018381,0.0022528,0.0025261,0.002531,0.0026877,0.0063186,0.013914,0.016617,0.016707,0.016717,0.020199,0.027278,0.028483,0.029323,0.045882,0.048206,0.049493,0.075095,0.10278,0.1235,0.13895,0.15951,0.25408,0.2945,0.2996,0.36103,0.437,0.47336,0.47349,0.52685,0.55743,0.57862,0.60574,0.62863,0.66046,0.67391,0.71255,0.77781,0.8053,0.84652,0.91738,0.92349,0.94503,0.95622,0.9821,1,0.99866,0.98116,0.95313,0.93296,0.89002,0.88361,0.87753,0.84494,0.82538,0.82496,0.80817,0.79514,0.77236,0.77043,0.76958,0.76481,0.75159,0.72926,0.71747,0.66204,0.66193,0.5939,0.593,0.57842,0.569,0.56294,0.54327,0.52296,0.45996,0.45117,0.42331,0.31179,0.28142,0.27163,0.21592,0.2098,0.20315,0.15722,0.15135,0.13488,0.12859,0.12648,0.12248,0.098811,0.078332,0.076434,0.071689,0.063857,0.044324,0.043595,0.042452,0.021616,0.013283,0.010731,0.0097884,0.0075543,0.0066432,0.0062398,0.0049158,0.0030797,0.0023738,0.0022488,0.0021273,0.0021094,0.0018638,0.00061814,0.00050457,0.00048235,0.00043283,0.00031834,0.00027312,0.00016963,0.00015949,0.00014652,0.00014068,0.00012364,0.00010111,9.2061e-05,8.5366e-05,6.5899e-05,5.9933e-05,4.4722e-05,4.1395e-05,3.2501e-05,3.0589e-05,2.794e-05,2.7816e-05,2.6004e-05,2.1453e-05,1.4283e-05,1.4167e-05,1.004e-05,8.3418e-06,7.0916e-06,2.8796e-06,2.1491e-06,2.0875e-06,9.9388e-07,8.3486e-07,8.1911e-07,5.5505e-07,5.4963e-07,3.9581e-07,2.5323e-07,1.3636e-07,1.2314e-07,9.6401e-08,5.8913e-08,4.7525e-08,3.9158e-08,3.1778e-08,1.7081e-08,1.2336e-08,1.2295e-08,1.0383e-08,8.0342e-09,7.7125e-09,5.3944e-09,4.6903e-09,4.137e-09,2.9377e-09,2.6799e-09,2.2345e-09,1.8317e-09,1.2549e-09,8.9562e-10,2.7176e-10,2.3725e-10,2.0403e-10,1.5689e-10,1.1045e-10,1.0585e-10,6.2664e-11,6.0821e-11,5.2131e-11,4.3159e-11,3.3122e-11,1.2432e-12,9.7117e-13,8.6499e-13,6.9973e-13,6.4539e-13,5.0484e-13,2.0492e-13,1.8123e-13,1.4597e-13,1.1395e-13,9.6746e-14,4.4835e-14,4.204e-14,2.0821e-14,9.1548e-15,4.4873e-15,4.2204e-15,1.8996e-15,9.33e-16,8.9408e-16,6.5428e-16,3.4169e-16,3.3675e-16,3.2602e-16,1.4631e-16,1.3554e-16,8.5005e-17,6.7504e-17,4.0156e-17,3.4844e-17,1.7535e-17,1.5494e-17,7.5993e-18,6.2749e-18 1,3.1421e-06,3.5016e-06,3.7177e-06,4.5652e-06,5.912e-06,5.9476e-06,6.3664e-06,8.3601e-06,1.4657e-05,1.6244e-05,1.6918e-05,1.6943e-05,1.985e-05,2.6204e-05,2.7168e-05,3.277e-05,5.7672e-05,9.8303e-05,0.0001054,0.00014539,0.00017435,0.00020144,0.00021215,0.00025644,0.0002594,0.00031025,0.00040331,0.00050619,0.00055666,0.00084953,0.00086397,0.0012073,0.0014554,0.0015279,0.0018782,0.0021097,0.0021138,0.0022467,0.0053528,0.011946,0.014312,0.014391,0.0144,0.017459,0.023712,0.02478,0.025525,0.040302,0.042386,0.043542,0.066671,0.091928,0.11096,0.12522,0.14428,0.23292,0.27127,0.27612,0.3349,0.40833,0.44376,0.44389,0.49623,0.52642,0.54743,0.57441,0.59729,0.62923,0.64279,0.68195,0.74882,0.77733,0.82054,0.89669,0.90343,0.9275,0.94028,0.9712,0.99866,1,0.98978,0.96723,0.94983,0.9113,0.90542,0.89983,0.86952,0.85111,0.85071,0.83479,0.82237,0.80053,0.79867,0.79785,0.79326,0.78049,0.75883,0.74734,0.69294,0.69283,0.62525,0.62435,0.60976,0.60031,0.59423,0.57443,0.55393,0.48992,0.48093,0.45239,0.33694,0.30517,0.29488,0.23607,0.22957,0.2225,0.17342,0.16713,0.14938,0.1426,0.14031,0.13599,0.11029,0.087909,0.085827,0.080616,0.071994,0.050363,0.049552,0.048279,0.02491,0.015443,0.012522,0.01144,0.0088675,0.0078145,0.0073475,0.0058107,0.0036668,0.0028375,0.0026901,0.0025469,0.0025258,0.0022357,0.00075305,0.00061636,0.00058956,0.0005298,0.00039122,0.00033631,0.00021012,0.00019772,0.00018183,0.00017467,0.00015375,0.00012605,0.00011489,0.00010663,8.257e-05,7.5178e-05,5.629e-05,5.2148e-05,4.1058e-05,3.8669e-05,3.5356e-05,3.5201e-05,3.2933e-05,2.7228e-05,1.821e-05,1.8063e-05,1.285e-05,1.0697e-05,9.1096e-06,3.734e-06,2.795e-06,2.7157e-06,1.3026e-06,1.096e-06,1.0756e-06,7.3159e-07,7.2452e-07,5.2339e-07,3.3627e-07,1.8213e-07,1.6461e-07,1.2916e-07,7.9284e-08,6.4082e-08,5.289e-08,4.3001e-08,2.324e-08,1.683e-08,1.6776e-08,1.4186e-08,1.1002e-08,1.0565e-08,7.4116e-09,6.4517e-09,5.6966e-09,4.0567e-09,3.7035e-09,3.0926e-09,2.5392e-09,1.7449e-09,1.2488e-09,3.825e-10,3.3428e-10,2.8781e-10,2.2176e-10,1.5654e-10,1.5007e-10,8.9197e-11,8.6592e-11,7.4306e-11,6.1605e-11,4.7372e-11,1.8206e-12,1.4247e-12,1.2699e-12,1.0288e-12,9.4945e-13,7.4395e-13,3.0384e-13,2.6893e-13,2.1692e-13,1.6963e-13,1.4417e-13,6.7155e-14,6.2996e-14,3.1343e-14,1.3855e-14,6.8222e-15,6.4188e-15,2.9037e-15,1.4325e-15,1.3731e-15,1.0068e-15,5.2789e-16,5.2031e-16,5.0383e-16,2.2722e-16,2.1058e-16,1.3244e-16,1.0532e-16,6.2847e-17,5.4579e-17,2.7579e-17,2.4385e-17,1.201e-17,9.9282e-18 1,1.5115e-06,1.6896e-06,1.797e-06,2.2198e-06,2.8963e-06,2.9142e-06,3.1257e-06,4.1376e-06,7.3773e-06,8.2019e-06,8.5527e-06,8.5654e-06,1.0084e-05,1.3427e-05,1.3937e-05,1.691e-05,3.0303e-05,5.2566e-05,5.649e-05,7.8777e-05,9.5057e-05,0.00011038,0.00011646,0.00014171,0.0001434,0.00017261,0.00022651,0.00028665,0.00031634,0.0004905,0.00049916,0.00070657,0.00085811,0.00090255,0.0011187,0.0012626,0.0012651,0.001348,0.0033327,0.0077188,0.009329,0.009383,0.0093889,0.011494,0.015857,0.01661,0.017136,0.02774,0.029259,0.030103,0.047273,0.066525,0.081317,0.092541,0.10771,0.18051,0.21301,0.21716,0.26816,0.33361,0.36588,0.366,0.41451,0.44296,0.46295,0.48889,0.51112,0.54255,0.55602,0.59542,0.66462,0.69496,0.74214,0.83007,0.83826,0.86837,0.88502,0.92853,0.98116,0.98978,1,0.99343,0.98437,0.95946,0.9553,0.95126,0.9284,0.91384,0.91352,0.90058,0.89029,0.87184,0.87025,0.86955,0.8656,0.85454,0.83547,0.82521,0.77544,0.77534,0.71107,0.71021,0.696,0.68675,0.68077,0.66118,0.64069,0.57547,0.56616,0.53636,0.41201,0.37669,0.36515,0.29809,0.29056,0.28235,0.22447,0.21693,0.19554,0.18729,0.1845,0.17922,0.1475,0.11935,0.11671,0.11006,0.098998,0.070767,0.069694,0.068006,0.036398,0.023123,0.018943,0.017382,0.013636,0.012088,0.011397,0.0091095,0.0058654,0.0045884,0.0043598,0.0041371,0.0041042,0.0036512,0.0012836,0.0010585,0.0010142,0.00091499,0.00068318,0.00059051,0.00037512,0.00035373,0.00032624,0.00031384,0.00027746,0.00022901,0.0002094,0.00019483,0.00015215,0.00013896,0.00010504,9.7548e-05,7.7394e-05,7.3029e-05,6.6964e-05,6.6678e-05,6.2514e-05,5.1994e-05,3.5209e-05,3.4934e-05,2.511e-05,2.1019e-05,1.7986e-05,7.5669e-06,5.7111e-06,5.5535e-06,2.7189e-06,2.2987e-06,2.2569e-06,1.5513e-06,1.5367e-06,1.1198e-06,7.2793e-07,4.0058e-07,3.63e-07,2.8659e-07,1.781e-07,1.4472e-07,1.2002e-07,9.8077e-08,5.3807e-08,3.927e-08,3.9146e-08,3.3237e-08,2.5932e-08,2.4926e-08,1.7633e-08,1.5399e-08,1.3636e-08,9.7875e-09,8.954e-09,7.508e-09,6.1923e-09,4.2917e-09,3.0946e-09,9.7295e-10,8.5279e-10,7.3663e-10,5.7076e-10,4.0592e-10,3.895e-10,2.3407e-10,2.2738e-10,1.9575e-10,1.6292e-10,1.2597e-10,5.1695e-12,4.0646e-12,3.6311e-12,2.9537e-12,2.7301e-12,2.1492e-12,8.9285e-13,7.921e-13,6.4149e-13,5.0395e-13,4.2962e-13,2.0297e-13,1.9062e-13,9.606e-14,4.3093e-14,2.1489e-14,2.0241e-14,9.2851e-15,4.6376e-15,4.4485e-15,3.2793e-15,1.7386e-15,1.714e-15,1.6607e-15,7.5911e-16,7.0444e-16,4.4651e-16,3.5644e-16,2.1453e-16,1.8674e-16,9.543e-17,8.4551e-17,4.2127e-17,3.4931e-17 1,8.2868e-07,9.2863e-07,9.89e-07,1.2275e-06,1.6112e-06,1.6214e-06,1.7419e-06,2.3206e-06,4.1939e-06,4.6744e-06,4.8792e-06,4.8866e-06,5.7756e-06,7.7433e-06,8.0446e-06,9.8069e-06,1.783e-05,3.1368e-05,3.3772e-05,4.7508e-05,5.7613e-05,6.7168e-05,7.0969e-05,8.6819e-05,8.7884e-05,0.00010632,0.00014058,0.0001791,0.0001982,0.00031125,0.00031691,0.00045326,0.00055373,0.0005833,0.00072783,0.00082452,0.00082626,0.00088214,0.0022466,0.0053599,0.0065239,0.0065631,0.0065673,0.0081015,0.011319,0.011878,0.01227,0.020264,0.021423,0.022068,0.035364,0.050586,0.062461,0.071561,0.08397,0.145,0.17292,0.17651,0.22112,0.27957,0.30886,0.30898,0.35359,0.38007,0.39883,0.42335,0.44452,0.47471,0.48775,0.52624,0.59516,0.62598,0.6747,0.76881,0.77785,0.81161,0.8307,0.88253,0.95313,0.96723,0.99343,1,0.99804,0.98517,0.98255,0.97994,0.96404,0.95318,0.95293,0.94293,0.93478,0.91979,0.91848,0.9179,0.91463,0.90537,0.88913,0.88026,0.83608,0.836,0.77666,0.77584,0.76243,0.75365,0.74794,0.72915,0.70932,0.64503,0.63572,0.60569,0.47692,0.43934,0.42696,0.35405,0.34576,0.33668,0.27195,0.26341,0.23903,0.22957,0.22637,0.22028,0.18343,0.15024,0.14709,0.13917,0.12589,0.091565,0.090245,0.088167,0.048593,0.031481,0.026004,0.023944,0.018966,0.016891,0.015963,0.012867,0.0084196,0.0066439,0.0063242,0.0060122,0.005966,0.0053289,0.0019388,0.0016085,0.0015432,0.0013966,0.0010521,0.00091336,0.00058799,0.0005554,0.00051342,0.00049446,0.00043867,0.00036405,0.0003337,0.00031111,0.00024462,0.00022397,0.00017058,0.00015873,0.00012671,0.00011975,0.00011005,0.0001096,0.00010292,8.6015e-05,5.8831e-05,5.8384e-05,4.2315e-05,3.5578e-05,3.0561e-05,1.3128e-05,9.9743e-06,9.7055e-06,4.8304e-06,4.0993e-06,4.0264e-06,2.7908e-06,2.7652e-06,2.0292e-06,1.3315e-06,7.4213e-07,6.7391e-07,5.3471e-07,3.3559e-07,2.7385e-07,2.2798e-07,1.8706e-07,1.0387e-07,7.6279e-08,7.6043e-08,6.4772e-08,5.0781e-08,4.8848e-08,3.4788e-08,3.046e-08,2.7036e-08,1.9528e-08,1.7895e-08,1.5055e-08,1.2461e-08,8.6956e-09,6.3079e-09,2.0252e-09,1.7792e-09,1.5409e-09,1.1993e-09,8.5805e-10,8.2392e-10,4.9953e-10,4.8549e-10,4.1903e-10,3.4987e-10,2.717e-10,1.1751e-11,9.2748e-12,8.3006e-12,6.7741e-12,6.269e-12,4.9537e-12,2.0862e-12,1.8542e-12,1.5065e-12,1.1879e-12,1.0152e-12,4.8506e-13,4.5599e-13,2.3214e-13,1.0538e-13,5.3084e-14,5.0043e-14,2.3215e-14,1.171e-14,1.1239e-14,8.3207e-15,4.4508e-15,4.3888e-15,4.254e-15,1.9658e-15,1.8261e-15,1.1647e-15,9.3261e-16,5.6519e-16,4.9291e-16,2.5417e-16,2.2556e-16,1.1343e-16,9.4286e-17 1,5.9353e-07,6.6602e-07,7.0985e-07,8.8329e-07,1.1633e-06,1.1707e-06,1.2588e-06,1.6829e-06,3.0639e-06,3.4196e-06,3.5713e-06,3.5769e-06,4.2366e-06,5.7013e-06,5.9261e-06,7.243e-06,1.3273e-05,2.3531e-05,2.536e-05,3.5845e-05,4.3587e-05,5.0928e-05,5.3852e-05,6.6071e-05,6.6893e-05,8.1152e-05,0.00010774,0.00013776,0.00015269,0.00024146,0.00024592,0.00035372,0.00043351,0.00045705,0.00057237,0.00064974,0.00065113,0.00069594,0.0018013,0.0043677,0.0053367,0.0053694,0.005373,0.006656,0.0093636,0.0098362,0.010168,0.016976,0.017969,0.018523,0.030013,0.043317,0.053782,0.061843,0.072889,0.12794,0.15345,0.15675,0.19791,0.25244,0.28001,0.28012,0.32239,0.34765,0.36561,0.38917,0.40961,0.43887,0.45157,0.48919,0.55724,0.58796,0.63695,0.7332,0.74258,0.77786,0.79801,0.85362,0.93296,0.94983,0.98437,0.99804,1,0.99395,0.99223,0.99044,0.97861,0.96996,0.96976,0.96153,0.95468,0.94183,0.94069,0.94018,0.93734,0.92921,0.91477,0.90679,0.86634,0.86626,0.81047,0.80969,0.7969,0.78848,0.783,0.7649,0.74568,0.68268,0.67349,0.64367,0.51372,0.47519,0.46244,0.38676,0.3781,0.36859,0.30032,0.29124,0.26525,0.25513,0.25171,0.24518,0.20548,0.16941,0.16598,0.15731,0.14275,0.10481,0.10334,0.10103,0.056582,0.037052,0.030743,0.028361,0.022584,0.020165,0.01908,0.015452,0.0102,0.0080871,0.0077054,0.0073325,0.0072774,0.0065145,0.0024149,0.0020101,0.0019299,0.0017497,0.0013244,0.0011525,0.00074737,0.00070661,0.00065403,0.00063025,0.00056022,0.00046629,0.000428,0.00039947,0.00031527,0.00028904,0.00022105,0.00020592,0.00016493,0.000156,0.00014355,0.00014296,0.00013438,0.0001126,7.7434e-05,7.6853e-05,5.5954e-05,4.716e-05,4.0594e-05,1.7638e-05,1.3449e-05,1.3091e-05,6.5742e-06,5.5908e-06,5.4927e-06,3.8246e-06,3.7898e-06,2.7917e-06,1.8412e-06,1.0334e-06,9.3951e-07,7.4746e-07,4.7166e-07,3.8579e-07,3.2183e-07,2.6466e-07,1.4792e-07,1.09e-07,1.0867e-07,9.2724e-08,7.2887e-08,7.0143e-08,5.0136e-08,4.3961e-08,3.9068e-08,2.8316e-08,2.5972e-08,2.1889e-08,1.8154e-08,1.2716e-08,9.2544e-09,3.0053e-09,2.6437e-09,2.2928e-09,1.7889e-09,1.2841e-09,1.2335e-09,7.5146e-10,7.3054e-10,6.3142e-10,5.2811e-10,4.111e-10,1.8298e-11,1.4472e-11,1.2964e-11,1.0599e-11,9.8154e-12,7.772e-12,3.2976e-12,2.9339e-12,2.3879e-12,1.8867e-12,1.6145e-12,7.7621e-13,7.3006e-13,3.7376e-13,1.7076e-13,8.6496e-14,8.1579e-14,3.8077e-14,1.931e-14,1.854e-14,1.3758e-14,7.3949e-15,7.2927e-15,7.0704e-15,3.2866e-15,3.0547e-15,1.9551e-15,1.5681e-15,9.539e-16,8.3275e-16,4.3152e-16,3.8329e-16,1.9372e-16,1.6125e-16 1,3.2702e-07,3.6783e-07,3.9256e-07,4.907e-07,6.4997e-07,6.5422e-07,7.0451e-07,9.4773e-07,1.7479e-06,1.9555e-06,2.0443e-06,2.0475e-06,2.4342e-06,3.2976e-06,3.4306e-06,4.2119e-06,7.8265e-06,1.4063e-05,1.5184e-05,2.1641e-05,2.6442e-05,3.1014e-05,3.284e-05,4.0498e-05,4.1015e-05,5.0001e-05,6.6869e-05,8.6046e-05,9.5628e-05,0.00015308,0.00015598,0.0002266,0.00027929,0.00029489,0.00037165,0.00042343,0.00042437,0.00045443,0.0012101,0.0030191,0.0037139,0.0037375,0.00374,0.0046674,0.0066459,0.0069938,0.0072382,0.012319,0.013069,0.013487,0.022283,0.032669,0.040955,0.047399,0.056301,0.1017,0.12322,0.12602,0.16132,0.20899,0.23345,0.23354,0.27149,0.2944,0.31082,0.33248,0.3514,0.3787,0.39061,0.42621,0.49166,0.52167,0.57019,0.66817,0.67794,0.71507,0.73659,0.79746,0.89002,0.9113,0.95946,0.98517,0.99395,1,0.99989,0.9996,0.99523,0.99069,0.99057,0.98566,0.98128,0.97253,0.97172,0.97137,0.96934,0.96342,0.95252,0.94632,0.91345,0.91338,0.86521,0.86452,0.85312,0.84556,0.84061,0.82414,0.80645,0.74713,0.73831,0.70949,0.57986,0.54026,0.52704,0.44747,0.43823,0.42807,0.35413,0.34418,0.31549,0.30424,0.30043,0.29315,0.24846,0.20724,0.20328,0.19326,0.17634,0.13165,0.1299,0.12714,0.073236,0.048867,0.040868,0.037828,0.030403,0.027268,0.025858,0.021112,0.014154,0.011316,0.0108,0.010296,0.010221,0.0091848,0.0035187,0.0029459,0.0028319,0.0025753,0.0019661,0.001718,0.0011284,0.0010686,0.00099129,0.00095627,0.00085287,0.00071357,0.00065656,0.00061397,0.00048774,0.00044823,0.00034528,0.00032226,0.00025965,0.00024594,0.00022681,0.0002259,0.00021269,0.00017903,0.00012431,0.0001234,9.056e-05,7.6651e-05,6.6224e-05,2.9356e-05,2.2526e-05,2.1941e-05,1.1193e-05,9.5537e-06,9.3898e-06,6.591e-06,6.5324e-06,4.8444e-06,3.2239e-06,1.8318e-06,1.6686e-06,1.3339e-06,8.497e-07,6.9785e-07,5.8429e-07,4.824e-07,2.7274e-07,2.0219e-07,2.0158e-07,1.7253e-07,1.3625e-07,1.3122e-07,9.4394e-08,8.2975e-08,7.3905e-08,5.3889e-08,4.9508e-08,4.1859e-08,3.4837e-08,2.456e-08,1.7979e-08,5.9568e-09,5.2519e-09,4.5661e-09,3.5781e-09,2.5831e-09,2.4831e-09,1.5256e-09,1.4838e-09,1.2857e-09,1.0786e-09,8.4315e-10,3.9467e-11,3.133e-11,2.8115e-11,2.3057e-11,2.1378e-11,1.6988e-11,7.3031e-12,6.509e-12,5.3143e-12,4.2137e-12,3.6141e-12,1.7566e-12,1.6537e-12,8.5495e-13,3.9506e-13,2.0206e-13,1.9074e-13,8.9988e-14,4.607e-14,4.4257e-14,3.2978e-14,1.7877e-14,1.7634e-14,1.7103e-14,8.0333e-15,7.474e-15,4.8122e-15,3.8711e-15,2.3705e-15,2.0731e-15,1.0836e-15,9.6398e-16,4.9156e-16,4.1014e-16 1,3.0166e-07,3.3942e-07,3.623e-07,4.5315e-07,6.007e-07,6.0464e-07,6.5125e-07,8.7681e-07,1.6199e-06,1.8129e-06,1.8954e-06,1.8984e-06,2.2581e-06,3.0617e-06,3.1856e-06,3.9135e-06,7.2855e-06,1.3115e-05,1.4163e-05,2.0209e-05,2.4708e-05,2.8995e-05,3.0708e-05,3.7895e-05,3.838e-05,4.6819e-05,6.2674e-05,8.0718e-05,8.9739e-05,0.00014389,0.00014662,0.00021329,0.00026309,0.00027784,0.00035046,0.00039948,0.00040036,0.00042884,0.0011463,0.0028709,0.0035348,0.0035573,0.0035597,0.0044468,0.006342,0.0066755,0.0069099,0.011791,0.012512,0.012915,0.021392,0.031429,0.039452,0.045698,0.054338,0.098535,0.11955,0.12228,0.15683,0.20359,0.22762,0.22772,0.26507,0.28766,0.30385,0.32525,0.34395,0.37095,0.38275,0.41804,0.48304,0.51292,0.56129,0.65931,0.66911,0.70641,0.72807,0.7895,0.88361,0.90542,0.9553,0.98255,0.99223,0.99989,1,0.99991,0.99656,0.99258,0.99248,0.98803,0.98399,0.97581,0.97506,0.97472,0.9728,0.9672,0.95681,0.95087,0.9191,0.91903,0.87201,0.87133,0.86015,0.85272,0.84786,0.83164,0.8142,0.7555,0.74676,0.71813,0.58879,0.54911,0.53586,0.45587,0.44656,0.43632,0.3617,0.35163,0.3226,0.31121,0.30734,0.29997,0.25462,0.21271,0.20868,0.19848,0.18124,0.1356,0.13381,0.13099,0.07574,0.050665,0.042416,0.039279,0.031608,0.028366,0.026907,0.021992,0.014774,0.011825,0.011289,0.010764,0.010686,0.0096081,0.0036972,0.0030977,0.0029783,0.0027095,0.0020709,0.0018107,0.0011913,0.0011284,0.0010471,0.0010102,0.0009014,0.0007547,0.00069462,0.00064973,0.0005166,0.0004749,0.00036619,0.00034186,0.00027565,0.00026116,0.00024091,0.00023995,0.00022597,0.00019032,0.00013232,0.00013135,9.65e-05,8.1725e-05,7.0643e-05,3.1399e-05,2.4114e-05,2.349e-05,1.2009e-05,1.0255e-05,1.0079e-05,7.0825e-06,7.0198e-06,5.2105e-06,3.4717e-06,1.9758e-06,1.8003e-06,1.4401e-06,9.1851e-07,7.5477e-07,6.3226e-07,5.2228e-07,2.9575e-07,2.1941e-07,2.1876e-07,1.8731e-07,1.4802e-07,1.4256e-07,1.0264e-07,9.0256e-08,8.0415e-08,5.8683e-08,5.3923e-08,4.5612e-08,3.7978e-08,2.6798e-08,1.9632e-08,6.5221e-09,5.752e-09,5.0026e-09,3.9224e-09,2.8339e-09,2.7244e-09,1.6757e-09,1.63e-09,1.4128e-09,1.1857e-09,9.2739e-10,4.3704e-11,3.4711e-11,3.1155e-11,2.5562e-11,2.3704e-11,1.8846e-11,8.1158e-12,7.235e-12,5.9095e-12,4.6878e-12,4.0221e-12,1.9578e-12,1.8432e-12,9.5421e-13,4.4159e-13,2.2616e-13,2.135e-13,1.0087e-13,5.1709e-14,4.9678e-14,3.7038e-14,2.0101e-14,1.9828e-14,1.9232e-14,9.0459e-15,8.4172e-15,5.4238e-15,4.3648e-15,2.6752e-15,2.3402e-15,1.2246e-15,1.0896e-15,5.563e-16,4.643e-16 1,2.7983e-07,3.1495e-07,3.3623e-07,4.2079e-07,5.582e-07,5.6187e-07,6.0529e-07,8.1557e-07,1.5092e-06,1.6895e-06,1.7666e-06,1.7694e-06,2.1056e-06,2.8573e-06,2.9732e-06,3.6547e-06,6.8155e-06,1.2289e-05,1.3275e-05,1.8961e-05,2.3196e-05,2.7233e-05,2.8847e-05,3.5621e-05,3.6079e-05,4.4038e-05,5.9005e-05,7.6053e-05,8.458e-05,0.00013582,0.00013841,0.00020159,0.00024884,0.00026284,0.0003318,0.00037838,0.00037922,0.00040629,0.0010899,0.0027392,0.0033755,0.0033971,0.0033994,0.0042505,0.0060711,0.0063918,0.0066172,0.011318,0.012014,0.012402,0.020593,0.030314,0.038098,0.044166,0.052567,0.095664,0.11621,0.11889,0.15273,0.19865,0.2223,0.2224,0.2592,0.28148,0.29747,0.31861,0.3371,0.36384,0.37552,0.41051,0.47508,0.50482,0.55304,0.65106,0.66089,0.69833,0.7201,0.78203,0.87753,0.89983,0.95126,0.97994,0.99044,0.9996,0.99991,1,0.9976,0.99415,0.99406,0.99004,0.98632,0.97868,0.97797,0.97765,0.97585,0.97053,0.96062,0.95492,0.9242,0.92413,0.8782,0.87753,0.86655,0.85926,0.85448,0.83851,0.8213,0.76322,0.75454,0.72611,0.59709,0.55735,0.54406,0.46371,0.45435,0.44405,0.3688,0.35863,0.32928,0.31776,0.31385,0.30638,0.26043,0.21788,0.21378,0.20341,0.18586,0.13935,0.13752,0.13464,0.078125,0.052383,0.043898,0.040668,0.032763,0.029419,0.027913,0.022838,0.015372,0.012316,0.01176,0.011216,0.011135,0.010017,0.0038701,0.0032449,0.0031204,0.0028398,0.0021728,0.0019008,0.0012526,0.0011867,0.0011014,0.0010628,0.00094873,0.00079484,0.00073179,0.00068466,0.00054482,0.00050098,0.00038665,0.00036105,0.00029134,0.00027607,0.00025473,0.00025372,0.00023898,0.0002014,0.00014019,0.00013917,0.00010234,8.6719e-05,7.4994e-05,3.3416e-05,2.5684e-05,2.502e-05,1.2816e-05,1.0949e-05,1.0762e-05,7.5702e-06,7.5033e-06,5.574e-06,3.7181e-06,2.1193e-06,1.9315e-06,1.5459e-06,9.8718e-07,8.1161e-07,6.8019e-07,5.6214e-07,3.1878e-07,2.3668e-07,2.3597e-07,2.0213e-07,1.5982e-07,1.5394e-07,1.1092e-07,9.7567e-08,8.6953e-08,6.3502e-08,5.8363e-08,4.9387e-08,4.1138e-08,2.9052e-08,2.1299e-08,7.0934e-09,6.2576e-09,5.444e-09,4.2708e-09,3.0878e-09,2.9687e-09,1.828e-09,1.7781e-09,1.5417e-09,1.2943e-09,1.0129e-09,4.8035e-11,3.8167e-11,3.4265e-11,2.8124e-11,2.6084e-11,2.0747e-11,8.9492e-12,7.9798e-12,6.5204e-12,5.1746e-12,4.4411e-12,2.1646e-12,2.0382e-12,1.0564e-12,4.8959e-13,2.5104e-13,2.3702e-13,1.1214e-13,5.7549e-14,5.5293e-14,4.1245e-14,2.2408e-14,2.2104e-14,2.1441e-14,1.0098e-14,9.3972e-15,6.0598e-15,4.8784e-15,2.9924e-15,2.6183e-15,1.3716e-15,1.2207e-15,6.2389e-16,5.2086e-16 1,1.9073e-07,2.1499e-07,2.2971e-07,2.8829e-07,3.8383e-07,3.8639e-07,4.1665e-07,5.6358e-07,1.0514e-06,1.1788e-06,1.2334e-06,1.2354e-06,1.4736e-06,2.008e-06,2.0905e-06,2.577e-06,4.848e-06,8.8161e-06,9.5337e-06,1.3689e-05,1.6798e-05,1.9769e-05,2.0959e-05,2.5964e-05,2.6302e-05,3.2204e-05,4.3346e-05,5.6094e-05,6.2489e-05,0.00010112,0.00010308,0.00015108,0.00018715,0.00019786,0.00025078,0.00028664,0.00028729,0.00030817,0.0008416,0.0021535,0.002665,0.0026824,0.0026843,0.0033719,0.004853,0.005115,0.0052994,0.0091746,0.0097517,0.010075,0.016934,0.025175,0.031833,0.037053,0.044318,0.082122,0.1004,0.10279,0.1332,0.17495,0.19664,0.19673,0.23073,0.25145,0.26638,0.2862,0.30361,0.32888,0.33997,0.37333,0.4355,0.46439,0.5116,0.60908,0.61898,0.65689,0.67912,0.74313,0.84494,0.86952,0.9284,0.96404,0.97861,0.99523,0.99656,0.9976,1,0.99924,0.99921,0.9974,0.99534,0.99049,0.99001,0.98979,0.98854,0.98476,0.97733,0.9729,0.94771,0.94766,0.9076,0.90701,0.89716,0.89056,0.88623,0.87164,0.85576,0.8012,0.79294,0.76569,0.63911,0.5993,0.58591,0.50413,0.49451,0.4839,0.40577,0.39512,0.36426,0.35209,0.34795,0.34004,0.2911,0.24533,0.24089,0.22965,0.21057,0.15953,0.15751,0.15433,0.091148,0.061841,0.052083,0.048353,0.039182,0.035283,0.033522,0.027568,0.018738,0.015092,0.014426,0.013773,0.013677,0.012333,0.0048647,0.0040937,0.0039397,0.0035924,0.0027634,0.0024238,0.0016101,0.0015269,0.0014193,0.0013704,0.0012259,0.0010304,0.00095012,0.00089,0.00071114,0.00065491,0.00050775,0.0004747,0.00038448,0.00036466,0.00033694,0.00033563,0.00031645,0.00026746,0.00018729,0.00018595,0.00013744,0.00011677,0.00010121,4.567e-05,3.5243e-05,3.4346e-05,1.7769e-05,1.5215e-05,1.4959e-05,1.0576e-05,1.0483e-05,7.8208e-06,5.2464e-06,3.0135e-06,2.75e-06,2.2076e-06,1.4182e-06,1.1689e-06,9.8191e-07,8.1351e-07,4.6469e-07,3.463e-07,3.4528e-07,2.9634e-07,2.3499e-07,2.2646e-07,1.6384e-07,1.4433e-07,1.2881e-07,9.4431e-08,8.6877e-08,7.3663e-08,6.1494e-08,4.3606e-08,3.2085e-08,1.0822e-08,9.5601e-09,8.3301e-09,6.5528e-09,4.7547e-09,4.5734e-09,2.8311e-09,2.7548e-09,2.3921e-09,2.0122e-09,1.5789e-09,7.7286e-11,6.1551e-11,5.5318e-11,4.5494e-11,4.2224e-11,3.3662e-11,1.464e-11,1.3069e-11,1.0699e-11,8.5102e-12,7.3145e-12,3.5897e-12,3.382e-12,1.7638e-12,8.2324e-13,4.2472e-13,4.012e-13,1.911e-13,9.866e-14,9.4826e-14,7.0917e-14,3.8736e-14,3.8215e-14,3.7079e-14,1.7577e-14,1.6368e-14,1.0595e-14,8.545e-15,5.2633e-15,4.6105e-15,2.4285e-15,2.1633e-15,1.1119e-15,9.2965e-16 1,1.5339e-07,1.7305e-07,1.8498e-07,2.3253e-07,3.1023e-07,3.1231e-07,3.3695e-07,4.5677e-07,8.5608e-07,9.6063e-07,1.0054e-06,1.007e-06,1.2028e-06,1.6429e-06,1.711e-06,2.1125e-06,3.9937e-06,7.2974e-06,7.8964e-06,1.1372e-05,1.3978e-05,1.6473e-05,1.7473e-05,2.1684e-05,2.1969e-05,2.6945e-05,3.6361e-05,4.7161e-05,5.2589e-05,8.5468e-05,8.7142e-05,0.00012816,0.00015908,0.00016828,0.00021377,0.00024465,0.00024521,0.00026321,0.00072609,0.0018767,0.0023281,0.0023435,0.0023451,0.0029536,0.0042692,0.0045026,0.0046669,0.0081346,0.0086531,0.0089433,0.015136,0.022628,0.028711,0.033495,0.040173,0.075202,0.092265,0.094505,0.12307,0.16253,0.18314,0.18322,0.21564,0.23549,0.24981,0.26886,0.28563,0.31005,0.32078,0.35315,0.41381,0.44213,0.48863,0.58542,0.59531,0.63332,0.6557,0.72056,0.82538,0.85111,0.91384,0.95318,0.96996,0.99069,0.99258,0.99415,0.99924,1,1,0.99945,0.99834,0.99509,0.99474,0.99458,0.99366,0.99077,0.98479,0.9811,0.95918,0.95914,0.92263,0.92208,0.91292,0.90677,0.9027,0.88898,0.87394,0.82167,0.81369,0.78724,0.66265,0.62297,0.60958,0.52729,0.51756,0.50681,0.42728,0.41639,0.38474,0.37223,0.36797,0.35983,0.30928,0.26172,0.2571,0.24537,0.22542,0.17179,0.16966,0.1663,0.099201,0.067755,0.057223,0.053187,0.043241,0.039,0.037083,0.030585,0.020902,0.016885,0.01615,0.015429,0.015322,0.013835,0.0055213,0.0046557,0.0044826,0.0040919,0.0031571,0.0027732,0.0018506,0.001756,0.0016335,0.0015779,0.0014132,0.00119,0.0010982,0.0010294,0.00082445,0.00075989,0.00059067,0.00055259,0.0004485,0.0004256,0.00039355,0.00039204,0.00036985,0.0003131,0.00021999,0.00021844,0.0001619,0.00013776,0.00011956,5.4335e-05,4.2024e-05,4.0964e-05,2.1311e-05,1.8272e-05,1.7967e-05,1.2738e-05,1.2628e-05,9.4431e-06,6.3549e-06,3.6661e-06,3.3479e-06,2.6921e-06,1.7352e-06,1.4324e-06,1.2048e-06,9.9952e-07,5.7328e-07,4.2813e-07,4.2688e-07,3.6677e-07,2.9132e-07,2.8082e-07,2.0362e-07,1.7954e-07,1.6036e-07,1.1781e-07,1.0845e-07,9.2058e-08,7.6945e-08,5.4689e-08,4.0322e-08,1.3697e-08,1.211e-08,1.0561e-08,8.3205e-09,6.0497e-09,5.8204e-09,3.6139e-09,3.517e-09,3.0567e-09,2.5739e-09,2.0227e-09,1.0079e-10,8.0378e-11,7.2283e-11,5.9511e-11,5.5258e-11,4.4109e-11,1.9273e-11,1.7215e-11,1.4109e-11,1.1237e-11,9.6658e-12,4.7619e-12,4.4878e-12,2.3486e-12,1.1006e-12,5.6979e-13,5.384e-13,2.5743e-13,1.3335e-13,1.2819e-13,9.6011e-14,5.2601e-14,5.1896e-14,5.0362e-14,2.3962e-14,2.2321e-14,1.4479e-14,1.169e-14,7.2174e-15,6.3262e-15,3.3424e-15,2.9791e-15,1.536e-15,1.2853e-15 1,1.5268e-07,1.7224e-07,1.8412e-07,2.3146e-07,3.0881e-07,3.1089e-07,3.3542e-07,4.5472e-07,8.5231e-07,9.5643e-07,1.001e-06,1.0026e-06,1.1976e-06,1.6358e-06,1.7036e-06,2.1035e-06,3.9772e-06,7.2678e-06,7.8645e-06,1.1327e-05,1.3923e-05,1.6408e-05,1.7405e-05,2.1601e-05,2.1885e-05,2.6842e-05,3.6224e-05,4.6986e-05,5.2395e-05,8.516e-05,8.6829e-05,0.00012771,0.00015853,0.0001677,0.00021303,0.00024382,0.00024437,0.00026232,0.0007238,0.0018712,0.0023214,0.0023367,0.0023384,0.0029452,0.0042574,0.0044902,0.0046541,0.0081136,0.0086309,0.0089205,0.0151,0.022576,0.028647,0.033422,0.040088,0.07506,0.092098,0.094334,0.12286,0.16227,0.18286,0.18294,0.21533,0.23515,0.24946,0.2685,0.28526,0.30965,0.32038,0.35273,0.41335,0.44166,0.48814,0.58492,0.5948,0.63282,0.65519,0.72008,0.82496,0.85071,0.91352,0.95293,0.96976,0.99057,0.99248,0.99406,0.99921,1,1,0.99948,0.99839,0.99517,0.99482,0.99467,0.99375,0.99088,0.98493,0.98126,0.95941,0.95937,0.92294,0.92239,0.91325,0.9071,0.90304,0.88934,0.87432,0.8221,0.81412,0.78769,0.66315,0.62348,0.61008,0.52779,0.51806,0.50731,0.42774,0.41685,0.38518,0.37267,0.36841,0.36026,0.30967,0.26207,0.25745,0.24571,0.22574,0.17206,0.16993,0.16656,0.099379,0.067886,0.057337,0.053295,0.043331,0.039083,0.037162,0.030652,0.02095,0.016925,0.016189,0.015466,0.015359,0.013869,0.0055362,0.0046685,0.0044949,0.0041032,0.0031661,0.0027812,0.001856,0.0017612,0.0016384,0.0015826,0.0014174,0.0011936,0.0011016,0.0010326,0.00082704,0.0007623,0.00059257,0.00055438,0.00044997,0.000427,0.00039485,0.00039333,0.00037108,0.00031415,0.00022075,0.00021919,0.00016247,0.00013824,0.00011999,5.4536e-05,4.2181e-05,4.1117e-05,2.1394e-05,1.8343e-05,1.8037e-05,1.2789e-05,1.2678e-05,9.4811e-06,6.3809e-06,3.6815e-06,3.3619e-06,2.7035e-06,1.7427e-06,1.4386e-06,1.21e-06,1.0039e-06,5.7585e-07,4.3007e-07,4.2881e-07,3.6843e-07,2.9265e-07,2.821e-07,2.0457e-07,1.8038e-07,1.6111e-07,1.1837e-07,1.0896e-07,9.2496e-08,7.7313e-08,5.4953e-08,4.0519e-08,1.3766e-08,1.2171e-08,1.0615e-08,8.3629e-09,6.0808e-09,5.8503e-09,3.6327e-09,3.5353e-09,3.0727e-09,2.5875e-09,2.0334e-09,1.0137e-10,8.0836e-11,7.2695e-11,5.9852e-11,5.5575e-11,4.4363e-11,1.9386e-11,1.7316e-11,1.4193e-11,1.1303e-11,9.7233e-12,4.7906e-12,4.5149e-12,2.363e-12,1.1075e-12,5.7336e-13,5.4178e-13,2.5906e-13,1.3421e-13,1.2902e-13,9.6632e-14,5.2945e-14,5.2236e-14,5.0692e-14,2.4121e-14,2.2469e-14,1.4576e-14,1.1768e-14,7.2661e-15,6.369e-15,3.3652e-15,2.9995e-15,1.5466e-15,1.2942e-15 1,1.2734e-07,1.4376e-07,1.5373e-07,1.9352e-07,2.5863e-07,2.6037e-07,2.8105e-07,3.8169e-07,7.1816e-07,8.0646e-07,8.4429e-07,8.4567e-07,1.0112e-06,1.3839e-06,1.4417e-06,1.7824e-06,3.3838e-06,6.208e-06,6.7212e-06,9.7039e-06,1.1944e-05,1.4093e-05,1.4955e-05,1.8588e-05,1.8834e-05,2.3134e-05,3.1286e-05,4.0656e-05,4.5372e-05,7.401e-05,7.5471e-05,0.00011133,0.00013842,0.00014649,0.00018645,0.00021361,0.0002141,0.00022996,0.00063981,0.001668,0.0020733,0.0020871,0.0020886,0.0026364,0.0038245,0.0040358,0.0041846,0.0073362,0.0078089,0.0080737,0.013745,0.020644,0.02627,0.030707,0.036916,0.069705,0.085781,0.087895,0.11494,0.1525,0.1722,0.17228,0.20338,0.22246,0.23627,0.25467,0.27089,0.29456,0.30499,0.33649,0.39577,0.42358,0.46938,0.56538,0.57524,0.61325,0.63569,0.70111,0.80817,0.83479,0.90058,0.94293,0.96153,0.98566,0.98803,0.99004,0.9974,0.99945,0.99948,1,0.9997,0.99782,0.99758,0.99748,0.99683,0.9947,0.98997,0.98692,0.96787,0.96783,0.93447,0.93396,0.92542,0.91965,0.91583,0.90289,0.88861,0.83845,0.83073,0.80504,0.6825,0.64302,0.62966,0.54713,0.53732,0.52648,0.4459,0.43481,0.40254,0.38977,0.38541,0.37708,0.3252,0.27615,0.27138,0.25924,0.23855,0.18271,0.18048,0.17697,0.10647,0.073128,0.061908,0.0576,0.046959,0.042411,0.040352,0.033363,0.022907,0.018551,0.017753,0.016969,0.016852,0.015235,0.0061404,0.0051868,0.0049958,0.0045645,0.0035308,0.0031054,0.0020802,0.0019749,0.0018383,0.0017763,0.0015925,0.0013431,0.0012404,0.0011634,0.00093356,0.00086108,0.00067078,0.0006279,0.00051052,0.00048467,0.00044847,0.00044676,0.00042168,0.00035747,0.00025189,0.00025013,0.00018583,0.00015832,0.00013757,6.2893e-05,4.8736e-05,4.7515e-05,2.4837e-05,2.1318e-05,2.0965e-05,1.49e-05,1.4772e-05,1.1068e-05,7.4689e-06,4.3247e-06,3.9516e-06,3.1822e-06,2.0569e-06,1.7e-06,1.4314e-06,1.189e-06,6.8433e-07,5.1198e-07,5.1049e-07,4.3901e-07,3.4919e-07,3.3667e-07,2.446e-07,2.1584e-07,1.9291e-07,1.4198e-07,1.3076e-07,1.111e-07,9.2958e-08,6.6201e-08,4.8895e-08,1.6709e-08,1.4783e-08,1.2902e-08,1.0178e-08,7.4132e-09,7.1337e-09,4.4406e-09,4.3222e-09,3.7593e-09,3.1685e-09,2.493e-09,1.2613e-10,1.0069e-10,9.0597e-11,7.466e-11,6.9348e-11,5.5417e-11,2.4309e-11,2.1725e-11,1.7823e-11,1.4209e-11,1.2231e-11,6.0454e-12,5.6991e-12,2.9913e-12,1.4066e-12,7.3032e-13,6.9026e-13,3.311e-13,1.72e-13,1.6538e-13,1.2402e-13,6.8118e-14,6.721e-14,6.5231e-14,3.1134e-14,2.901e-14,1.8852e-14,1.5234e-14,9.4242e-15,8.265e-15,4.3781e-15,3.9041e-15,2.0183e-15,1.6901e-15 1,1.1091e-07,1.2528e-07,1.3401e-07,1.6886e-07,2.2596e-07,2.275e-07,2.4564e-07,3.3407e-07,6.3036e-07,7.0824e-07,7.4163e-07,7.4284e-07,8.8899e-07,1.2184e-06,1.2695e-06,1.5711e-06,2.992e-06,5.5056e-06,5.9631e-06,8.6254e-06,1.0628e-05,1.2551e-05,1.3322e-05,1.6577e-05,1.6798e-05,2.0656e-05,2.7979e-05,3.6411e-05,4.0658e-05,6.6501e-05,6.7822e-05,0.00010027,0.00012483,0.00013214,0.00016842,0.00019312,0.00019357,0.00020799,0.00058235,0.0015278,0.0019019,0.0019147,0.0019161,0.0024225,0.0035238,0.0037199,0.003858,0.0067926,0.0072338,0.0074811,0.012791,0.019279,0.024585,0.028779,0.034657,0.065859,0.08123,0.083255,0.1092,0.14539,0.16443,0.1645,0.19463,0.21316,0.22659,0.2445,0.26031,0.28342,0.29362,0.32446,0.3827,0.41009,0.45533,0.55064,0.56046,0.59841,0.62087,0.6866,0.79514,0.82237,0.89029,0.93478,0.95468,0.98128,0.98399,0.98632,0.99534,0.99834,0.99839,0.9997,1,0.99913,0.99898,0.99891,0.99848,0.99691,0.99312,0.99055,0.97365,0.97361,0.94264,0.94216,0.93409,0.92862,0.925,0.91265,0.89897,0.85046,0.84294,0.81787,0.69704,0.65778,0.64445,0.56185,0.55201,0.54111,0.45984,0.44862,0.41592,0.40296,0.39853,0.39007,0.33724,0.28712,0.28223,0.26979,0.24856,0.19108,0.18878,0.18516,0.11209,0.077312,0.065565,0.061048,0.049872,0.045087,0.042919,0.035549,0.024492,0.019872,0.019024,0.018191,0.018067,0.016347,0.006637,0.0056134,0.0054083,0.0049447,0.0038322,0.0033735,0.0022662,0.0021523,0.0020044,0.0019373,0.0017381,0.0014676,0.0013561,0.0012724,0.0010226,0.00094367,0.00073631,0.00068953,0.00056136,0.00053312,0.00049353,0.00049166,0.00046423,0.00039394,0.00027818,0.00027624,0.0002056,0.00017533,0.00015247,7.0016e-05,5.4332e-05,5.2978e-05,2.779e-05,2.3872e-05,2.3479e-05,1.6716e-05,1.6573e-05,1.2437e-05,8.4089e-06,4.8822e-06,4.4631e-06,3.5978e-06,2.3305e-06,1.9279e-06,1.6246e-06,1.3506e-06,7.7935e-07,5.8385e-07,5.8216e-07,5.0098e-07,3.9889e-07,3.8466e-07,2.7986e-07,2.4709e-07,2.2095e-07,1.6283e-07,1.5002e-07,1.2756e-07,1.0681e-07,7.6175e-08,5.6333e-08,1.9337e-08,1.7117e-08,1.4947e-08,1.1803e-08,8.6074e-09,8.2841e-09,5.1664e-09,5.0292e-09,4.3767e-09,3.6912e-09,2.9071e-09,1.4873e-10,1.1883e-10,1.0696e-10,8.8206e-11,8.1952e-11,6.5541e-11,2.8834e-11,2.5779e-11,2.1163e-11,1.6885e-11,1.4542e-11,7.2053e-12,6.7938e-12,3.5737e-12,1.6847e-12,8.7658e-13,8.2866e-13,3.9844e-13,2.0742e-13,1.9946e-13,1.4971e-13,8.2385e-14,8.129e-14,7.8904e-14,3.7747e-14,3.518e-14,2.2891e-14,1.8511e-14,1.1468e-14,1.0061e-14,5.3399e-15,4.7634e-15,2.4674e-15,2.0673e-15 1,8.7548e-08,9.8978e-08,1.0593e-07,1.3371e-07,1.7931e-07,1.8054e-07,1.9505e-07,2.6588e-07,5.0416e-07,5.6697e-07,5.939e-07,5.9488e-07,7.1293e-07,9.7958e-07,1.021e-06,1.2657e-06,2.423e-06,4.4815e-06,4.8572e-06,7.0479e-06,8.7002e-06,1.0289e-05,1.0927e-05,1.3623e-05,1.3806e-05,1.7008e-05,2.3102e-05,3.0136e-05,3.3686e-05,5.5351e-05,5.6461e-05,8.3787e-05,0.00010453,0.00011072,0.00014146,0.00016242,0.0001628,0.00017506,0.00049545,0.0013139,0.0016398,0.001651,0.0016522,0.0020947,0.0030608,0.0032334,0.003355,0.0059499,0.0063417,0.0065614,0.011301,0.017135,0.021931,0.025735,0.031083,0.059711,0.073929,0.075807,0.099952,0.13386,0.15179,0.15186,0.18035,0.19794,0.21071,0.22779,0.24291,0.26506,0.27485,0.30454,0.36092,0.38758,0.43178,0.52569,0.53544,0.57319,0.59562,0.66167,0.77236,0.80053,0.87184,0.91979,0.94183,0.97253,0.97581,0.97868,0.99049,0.99509,0.99517,0.99782,0.99913,1,0.99999,0.99999,0.99991,0.99932,0.99713,0.99539,0.98221,0.98218,0.9554,0.95497,0.94775,0.94281,0.93952,0.92824,0.91562,0.8701,0.86296,0.83903,0.72151,0.68274,0.66953,0.58704,0.57714,0.56618,0.48392,0.4725,0.43913,0.42586,0.42133,0.41265,0.35829,0.30638,0.30129,0.28835,0.26622,0.20594,0.20352,0.1997,0.12219,0.084878,0.072196,0.067308,0.055179,0.049969,0.047606,0.039553,0.02741,0.022309,0.021371,0.020449,0.020312,0.018405,0.0075661,0.0064133,0.0061819,0.0056585,0.0043995,0.0038791,0.0026185,0.0024883,0.0023194,0.0022425,0.0020145,0.0017044,0.0015763,0.0014801,0.0011924,0.0011014,0.00086175,0.00080758,0.00065894,0.00062613,0.00058012,0.00057794,0.00054603,0.00046416,0.00032896,0.00032669,0.00024388,0.0002083,0.00018139,8.3933e-05,6.5288e-05,6.3677e-05,3.3601e-05,2.8904e-05,2.8432e-05,2.0304e-05,2.0132e-05,1.5146e-05,1.0275e-05,5.9936e-06,5.4832e-06,4.4281e-06,2.8786e-06,2.385e-06,2.0126e-06,1.6757e-06,9.7113e-07,7.2917e-07,7.2707e-07,6.2642e-07,4.9964e-07,4.8195e-07,3.5149e-07,3.1062e-07,2.78e-07,2.0535e-07,1.893e-07,1.6115e-07,1.3512e-07,9.6602e-08,7.1596e-08,2.4764e-08,2.1939e-08,1.9176e-08,1.5167e-08,1.1085e-08,1.0671e-08,6.6764e-09,6.5003e-09,5.6621e-09,4.7808e-09,3.7712e-09,1.9665e-10,1.5734e-10,1.4171e-10,1.17e-10,1.0876e-10,8.7095e-11,3.8506e-11,3.445e-11,2.8315e-11,2.2621e-11,1.95e-11,9.7013e-12,9.1504e-12,4.8312e-12,2.2873e-12,1.1945e-12,1.1295e-12,5.4532e-13,2.849e-13,2.7402e-13,2.06e-13,1.1373e-13,1.1222e-13,1.0895e-13,5.2324e-14,4.8784e-14,3.1816e-14,2.5756e-14,1.5996e-14,1.4044e-14,7.478e-15,6.6746e-15,3.469e-15,2.9091e-15 1,8.583e-08,9.7042e-08,1.0386e-07,1.3112e-07,1.7587e-07,1.7707e-07,1.9132e-07,2.6084e-07,4.9481e-07,5.5649e-07,5.8295e-07,5.8391e-07,6.9986e-07,9.6182e-07,1.0025e-06,1.243e-06,2.3805e-06,4.4048e-06,4.7743e-06,6.9295e-06,8.5553e-06,1.0119e-05,1.0747e-05,1.3401e-05,1.3581e-05,1.6733e-05,2.2733e-05,2.9662e-05,3.3158e-05,5.4506e-05,5.5599e-05,8.2534e-05,0.00010299,0.00010909,0.0001394,0.00016008,0.00016046,0.00017254,0.00048878,0.0012973,0.0016195,0.0016305,0.0016317,0.0020692,0.0030248,0.0031955,0.0033158,0.005884,0.0062719,0.0064894,0.011184,0.016966,0.021721,0.025494,0.030799,0.05922,0.073344,0.07521,0.099208,0.13293,0.15076,0.15083,0.17919,0.1967,0.20942,0.22643,0.24149,0.26356,0.27331,0.30291,0.35913,0.38572,0.42984,0.52362,0.53336,0.57109,0.59351,0.65958,0.77043,0.79867,0.87025,0.91848,0.94069,0.97172,0.97506,0.97797,0.99001,0.99474,0.99482,0.99758,0.99898,0.99999,1,1,0.99995,0.99944,0.99738,0.99572,0.98285,0.98282,0.9564,0.95597,0.94882,0.94393,0.94067,0.92948,0.91695,0.87169,0.86459,0.84075,0.72354,0.68482,0.67161,0.58915,0.57925,0.56828,0.48595,0.47452,0.44109,0.4278,0.42325,0.41456,0.36007,0.30802,0.30292,0.28993,0.26773,0.20722,0.20479,0.20095,0.12306,0.085536,0.072774,0.067853,0.055642,0.050396,0.048015,0.039904,0.027667,0.022524,0.021578,0.020648,0.02051,0.018587,0.0076487,0.0064845,0.0062508,0.0057221,0.0044501,0.0039243,0.00265,0.0025184,0.0023476,0.0022699,0.0020394,0.0017256,0.0015961,0.0014988,0.0012077,0.0011156,0.00087307,0.00081824,0.00066776,0.00063454,0.00058795,0.00058575,0.00055343,0.00047053,0.00033357,0.00033127,0.00024736,0.00021131,0.00018403,8.5206e-05,6.6291e-05,6.4657e-05,3.4135e-05,2.9366e-05,2.8888e-05,2.0635e-05,2.046e-05,1.5396e-05,1.0448e-05,6.0967e-06,5.5778e-06,4.5052e-06,2.9296e-06,2.4275e-06,2.0488e-06,1.706e-06,9.8905e-07,7.4276e-07,7.4063e-07,6.3816e-07,5.0909e-07,4.9107e-07,3.5822e-07,3.1659e-07,2.8336e-07,2.0935e-07,1.93e-07,1.6432e-07,1.3778e-07,9.8529e-08,7.3038e-08,2.5278e-08,2.2396e-08,1.9578e-08,1.5486e-08,1.132e-08,1.0898e-08,6.8203e-09,6.6405e-09,5.7847e-09,4.8848e-09,3.8537e-09,2.0128e-10,1.6106e-10,1.4507e-10,1.1978e-10,1.1135e-10,8.918e-11,3.9444e-11,3.5291e-11,2.9009e-11,2.3178e-11,1.9982e-11,9.9444e-12,9.38e-12,4.954e-12,2.3462e-12,1.2257e-12,1.159e-12,5.5975e-13,2.9253e-13,2.8136e-13,2.1154e-13,1.1682e-13,1.1528e-13,1.1191e-13,5.3766e-14,5.013e-14,3.2699e-14,2.6474e-14,1.6446e-14,1.4439e-14,7.6906e-15,6.8647e-15,3.5688e-15,2.993e-15 1,8.5086e-08,9.6204e-08,1.0297e-07,1.2999e-07,1.7438e-07,1.7557e-07,1.897e-07,2.5866e-07,4.9075e-07,5.5195e-07,5.782e-07,5.7915e-07,6.9419e-07,9.5412e-07,9.9449e-07,1.2331e-06,2.3621e-06,4.3715e-06,4.7384e-06,6.8782e-06,8.4925e-06,1.0045e-05,1.0669e-05,1.3304e-05,1.3483e-05,1.6614e-05,2.2573e-05,2.9456e-05,3.2929e-05,5.4138e-05,5.5225e-05,8.1989e-05,0.00010231,0.00010838,0.00013851,0.00015906,0.00015944,0.00017145,0.00048587,0.0012901,0.0016107,0.0016216,0.0016228,0.0020582,0.0030091,0.003179,0.0032988,0.0058553,0.0062415,0.006458,0.011133,0.016892,0.02163,0.025388,0.030675,0.059005,0.073089,0.074949,0.098883,0.13252,0.15032,0.15039,0.17868,0.19616,0.20886,0.22584,0.24087,0.2629,0.27264,0.3022,0.35835,0.38491,0.42899,0.52271,0.53245,0.57016,0.59259,0.65866,0.76958,0.79785,0.86955,0.9179,0.94018,0.97137,0.97472,0.97765,0.98979,0.99458,0.99467,0.99748,0.99891,0.99999,1,1,0.99996,0.99949,0.99749,0.99586,0.98313,0.9831,0.95683,0.95641,0.94929,0.94442,0.94117,0.93002,0.91754,0.87239,0.8653,0.84151,0.72443,0.68572,0.67253,0.59007,0.58017,0.5692,0.48684,0.4754,0.44195,0.42865,0.4241,0.4154,0.36086,0.30874,0.30363,0.29063,0.26839,0.20778,0.20535,0.2015,0.12344,0.085825,0.073028,0.068094,0.055846,0.050585,0.048196,0.040058,0.02778,0.022619,0.02167,0.020736,0.020597,0.018667,0.0076852,0.006516,0.0062812,0.0057502,0.0044725,0.0039443,0.002664,0.0025318,0.0023601,0.002282,0.0020503,0.0017351,0.0016049,0.0015071,0.0012145,0.0011219,0.00087809,0.00082296,0.00067167,0.00063827,0.00059142,0.00058921,0.00055671,0.00047335,0.00033561,0.0003333,0.0002489,0.00021264,0.0001852,8.5771e-05,6.6737e-05,6.5092e-05,3.4372e-05,2.9572e-05,2.909e-05,2.0781e-05,2.0606e-05,1.5507e-05,1.0525e-05,6.1424e-06,5.6198e-06,4.5395e-06,2.9523e-06,2.4465e-06,2.0648e-06,1.7195e-06,9.9702e-07,7.4881e-07,7.4666e-07,6.4339e-07,5.1329e-07,4.9512e-07,3.6121e-07,3.1925e-07,2.8574e-07,2.1113e-07,1.9465e-07,1.6572e-07,1.3897e-07,9.9387e-08,7.3679e-08,2.5508e-08,2.26e-08,1.9757e-08,1.5629e-08,1.1425e-08,1.0999e-08,6.8844e-09,6.703e-09,5.8393e-09,4.9311e-09,3.8905e-09,2.0334e-10,1.6272e-10,1.4656e-10,1.2103e-10,1.125e-10,9.0111e-11,3.9863e-11,3.5667e-11,2.9319e-11,2.3427e-11,2.0197e-11,1.0053e-11,9.4825e-12,5.0088e-12,2.3726e-12,1.2396e-12,1.1722e-12,5.6621e-13,2.9594e-13,2.8465e-13,2.1402e-13,1.182e-13,1.1664e-13,1.1324e-13,5.4411e-14,5.0732e-14,3.3095e-14,2.6795e-14,1.6647e-14,1.4616e-14,7.7858e-15,6.9498e-15,3.6135e-15,3.0306e-15 1,8.1038e-08,9.1645e-08,9.8097e-08,1.2389e-07,1.6626e-07,1.674e-07,1.8089e-07,2.4677e-07,4.6867e-07,5.2721e-07,5.5233e-07,5.5324e-07,6.6332e-07,9.1216e-07,9.5081e-07,1.1794e-06,2.2616e-06,4.1899e-06,4.5421e-06,6.5976e-06,8.149e-06,9.6415e-06,1.0241e-05,1.2777e-05,1.2949e-05,1.5961e-05,2.1699e-05,2.8328e-05,3.1676e-05,5.2127e-05,5.3175e-05,7.9006e-05,9.8635e-05,0.0001045,0.00013361,0.00015348,0.00015384,0.00016546,0.00046992,0.0012506,0.0015621,0.0015727,0.0015739,0.0019972,0.0029228,0.0030882,0.0032048,0.0056971,0.0060738,0.0062851,0.010851,0.016484,0.021124,0.024807,0.029991,0.057817,0.071673,0.073505,0.097081,0.13026,0.14783,0.1479,0.17587,0.19316,0.20572,0.22253,0.23742,0.25925,0.26891,0.29822,0.35398,0.38038,0.42423,0.51764,0.52735,0.56501,0.58741,0.65352,0.76481,0.79326,0.8656,0.91463,0.93734,0.96934,0.9728,0.97585,0.98854,0.99366,0.99375,0.99683,0.99848,0.99991,0.99995,0.99996,1,0.99973,0.99806,0.99659,0.98464,0.98461,0.95923,0.95882,0.95187,0.94711,0.94394,0.93302,0.92076,0.87626,0.86925,0.84571,0.72938,0.6908,0.67764,0.59525,0.58534,0.57436,0.49183,0.48036,0.44678,0.43342,0.42885,0.42011,0.36527,0.31279,0.30765,0.29455,0.27212,0.21094,0.20848,0.20459,0.12561,0.087461,0.074466,0.069452,0.057001,0.051648,0.049218,0.040934,0.028421,0.023156,0.022187,0.021234,0.021092,0.019121,0.0078924,0.0066946,0.006454,0.0059098,0.0045997,0.0040577,0.0027433,0.0026075,0.0024311,0.0023509,0.0021128,0.0017886,0.0016547,0.0015541,0.001253,0.0011577,0.00090663,0.00084983,0.00069392,0.00065948,0.00061119,0.0006089,0.00057539,0.0004894,0.00034725,0.00034486,0.0002577,0.00022022,0.00019186,8.8995e-05,6.9279e-05,6.7575e-05,3.5727e-05,3.0746e-05,3.0246e-05,2.1621e-05,2.1438e-05,1.6142e-05,1.0963e-05,6.4045e-06,5.8605e-06,4.7356e-06,3.0821e-06,2.5548e-06,2.1569e-06,1.7967e-06,1.0427e-06,7.8351e-07,7.8126e-07,6.7336e-07,5.3739e-07,5.1841e-07,3.7838e-07,3.3449e-07,2.9944e-07,2.2135e-07,2.041e-07,1.7381e-07,1.4579e-07,1.0432e-07,7.737e-08,2.6827e-08,2.3773e-08,2.0786e-08,1.6449e-08,1.203e-08,1.1582e-08,7.254e-09,7.063e-09,6.1542e-09,5.1983e-09,4.1026e-09,2.1526e-10,1.7231e-10,1.5522e-10,1.2821e-10,1.1919e-10,9.5493e-11,4.2287e-11,3.784e-11,3.1113e-11,2.4868e-11,2.1443e-11,1.0682e-11,1.0077e-11,5.3267e-12,2.5254e-12,1.3204e-12,1.2487e-12,6.0366e-13,3.1575e-13,3.0371e-13,2.2843e-13,1.2625e-13,1.2458e-13,1.2095e-13,5.8162e-14,5.4233e-14,3.5396e-14,2.8664e-14,1.7817e-14,1.5646e-14,8.34e-15,7.4454e-15,3.8738e-15,3.2495e-15 1,7.086e-08,8.0175e-08,8.5843e-08,1.0852e-07,1.4581e-07,1.4682e-07,1.587e-07,2.1678e-07,4.1285e-07,4.6466e-07,4.8689e-07,4.877e-07,5.8521e-07,8.0587e-07,8.4018e-07,1.0432e-06,2.0063e-06,3.7276e-06,4.0425e-06,5.8823e-06,7.2729e-06,8.612e-06,9.1505e-06,1.1428e-05,1.1583e-05,1.4292e-05,1.946e-05,2.544e-05,2.8462e-05,4.6961e-05,4.791e-05,7.1334e-05,8.9164e-05,9.4492e-05,0.00012098,0.00013908,0.00013941,0.00015,0.0004286,0.0011475,0.0014355,0.0014453,0.0014464,0.0018383,0.0026971,0.0028509,0.0029593,0.0052821,0.005634,0.0058315,0.01011,0.015409,0.019787,0.023269,0.028178,0.054655,0.0679,0.069652,0.092263,0.12421,0.14117,0.14124,0.1683,0.18507,0.19727,0.21361,0.2281,0.24939,0.25881,0.28747,0.34213,0.36809,0.4113,0.50376,0.51341,0.55088,0.57322,0.63937,0.75159,0.78049,0.85454,0.90537,0.92921,0.96342,0.9672,0.97053,0.98476,0.99077,0.99088,0.9947,0.99691,0.99932,0.99944,0.99949,0.99973,1,0.99924,0.99825,0.98844,0.98841,0.96547,0.96509,0.95864,0.9542,0.95122,0.94094,0.92931,0.88663,0.87986,0.85703,0.74289,0.70468,0.6916,0.60946,0.59955,0.58855,0.50562,0.49405,0.46015,0.44663,0.44201,0.43316,0.37752,0.32408,0.31883,0.30546,0.28253,0.21978,0.21726,0.21326,0.13172,0.09208,0.07853,0.073295,0.060274,0.054666,0.052118,0.04342,0.030247,0.024688,0.023663,0.022655,0.022505,0.020419,0.0084872,0.007208,0.0069509,0.0063689,0.004966,0.0043847,0.0029725,0.0028263,0.0026364,0.00255,0.0022933,0.0019436,0.001799,0.0016903,0.0013648,0.0012616,0.00098949,0.00092788,0.0007586,0.00072118,0.00066867,0.00066619,0.00062974,0.00053615,0.0003812,0.00037859,0.00028339,0.00024239,0.00021134,9.8449e-05,7.6742e-05,7.4864e-05,3.9714e-05,3.4204e-05,3.365e-05,2.4095e-05,2.3893e-05,1.8015e-05,1.2259e-05,7.1803e-06,6.5732e-06,5.3169e-06,3.4674e-06,2.8767e-06,2.4306e-06,2.0264e-06,1.1789e-06,8.8695e-07,8.8442e-07,7.6277e-07,6.0935e-07,5.8792e-07,4.297e-07,3.8006e-07,3.4039e-07,2.5195e-07,2.3239e-07,1.9804e-07,1.6624e-07,1.1911e-07,8.8452e-08,3.0801e-08,2.7308e-08,2.3889e-08,1.8922e-08,1.3855e-08,1.3342e-08,8.371e-09,8.1515e-09,7.1063e-09,6.0063e-09,4.7446e-09,2.5163e-10,2.0157e-10,1.8166e-10,1.5014e-10,1.3961e-10,1.1194e-10,4.971e-11,4.45e-11,3.6613e-11,2.9286e-11,2.5264e-11,1.2615e-11,1.1902e-11,6.3049e-12,2.9964e-12,1.5699e-12,1.485e-12,7.1951e-13,3.771e-13,3.6277e-13,2.7309e-13,1.512e-13,1.4921e-13,1.4487e-13,6.9821e-14,6.5119e-14,4.2555e-14,3.4483e-14,2.1465e-14,1.8856e-14,1.007e-14,8.9923e-15,4.6875e-15,3.9341e-15 1,5.6641e-08,6.414e-08,6.8707e-08,8.6995e-08,1.1713e-07,1.1794e-07,1.2756e-07,1.7462e-07,3.3409e-07,3.7633e-07,3.9447e-07,3.9513e-07,4.7475e-07,6.553e-07,6.834e-07,8.4987e-07,1.6426e-06,3.0664e-06,3.3275e-06,4.8562e-06,6.0145e-06,7.1315e-06,7.5811e-06,9.4851e-06,9.6146e-06,1.1884e-05,1.6223e-05,2.1256e-05,2.3804e-05,3.9443e-05,4.0248e-05,6.0137e-05,7.5318e-05,7.986e-05,0.00010248,0.00011796,0.00011824,0.00012731,0.00036744,0.00099373,0.001246,0.0012547,0.0012556,0.0016,0.0023576,0.0024935,0.0025894,0.0046534,0.0049672,0.0051435,0.0089784,0.013761,0.017731,0.020898,0.025377,0.049724,0.061995,0.063622,0.084687,0.11463,0.13062,0.13068,0.15627,0.17218,0.18377,0.19935,0.21319,0.23355,0.24259,0.27014,0.32293,0.34812,0.39022,0.48096,0.49049,0.52757,0.54976,0.61581,0.72926,0.75883,0.83547,0.88913,0.91477,0.95252,0.95681,0.96062,0.97733,0.98479,0.98493,0.98997,0.99312,0.99713,0.99738,0.99749,0.99806,0.99924,1,0.99979,0.99357,0.99355,0.97474,0.97441,0.96881,0.9649,0.96227,0.95308,0.94255,0.90303,0.89667,0.87509,0.76493,0.72744,0.71456,0.63304,0.62314,0.61214,0.52872,0.51702,0.48264,0.46889,0.46419,0.45517,0.39829,0.34331,0.3379,0.32407,0.30033,0.235,0.23236,0.22818,0.14234,0.10017,0.085668,0.080052,0.066046,0.059996,0.057244,0.047828,0.0335,0.027423,0.026301,0.025196,0.025032,0.022742,0.0095635,0.0081386,0.0078518,0.0072021,0.0056326,0.0049807,0.0033918,0.0032268,0.0030123,0.0029147,0.0026244,0.0022283,0.0020643,0.0019409,0.0015707,0.0014532,0.0011427,0.0010723,0.00087847,0.00083557,0.00077533,0.00077248,0.00073064,0.00062306,0.00044449,0.00044148,0.00033139,0.00028388,0.00024783,0.00011627,9.0835e-05,8.8631e-05,4.728e-05,4.0772e-05,4.0118e-05,2.8808e-05,2.8569e-05,2.1592e-05,1.474e-05,8.6705e-06,7.943e-06,6.4357e-06,4.2111e-06,3.4988e-06,2.96e-06,2.4711e-06,1.4435e-06,1.0883e-06,1.0853e-06,9.3701e-07,7.4977e-07,7.2358e-07,5.3006e-07,4.6923e-07,4.2059e-07,3.1197e-07,2.8792e-07,2.4564e-07,2.0644e-07,1.4826e-07,1.1032e-07,3.869e-08,3.433e-08,3.0058e-08,2.3844e-08,1.7495e-08,1.6851e-08,1.0604e-08,1.0328e-08,9.0118e-09,7.625e-09,6.0321e-09,3.2566e-10,2.6122e-10,2.3555e-10,1.949e-10,1.8131e-10,1.4556e-10,6.4937e-11,5.8167e-11,4.791e-11,3.837e-11,3.3129e-11,1.6606e-11,1.5673e-11,8.3309e-12,3.975e-12,2.0899e-12,1.9773e-12,9.6171e-13,5.0573e-13,4.8661e-13,3.6684e-13,2.0372e-13,2.0105e-13,1.9524e-13,9.4442e-14,8.8112e-14,5.7702e-14,4.6807e-14,2.9204e-14,2.5671e-14,1.3751e-14,1.2286e-14,6.4247e-15,5.3966e-15 1,5.0373e-08,5.7068e-08,6.1146e-08,7.7487e-08,1.0444e-07,1.0517e-07,1.1377e-07,1.5593e-07,2.9903e-07,3.3698e-07,3.5329e-07,3.5388e-07,4.2549e-07,5.8802e-07,6.1333e-07,7.6336e-07,1.4792e-06,2.7682e-06,3.0049e-06,4.3922e-06,5.4445e-06,6.4602e-06,6.8693e-06,8.6026e-06,8.7205e-06,1.0789e-05,1.4747e-05,1.9345e-05,2.1674e-05,3.5996e-05,3.6733e-05,5.4986e-05,6.8939e-05,7.3116e-05,9.3934e-05,0.0001082,0.00010846,0.00011682,0.00033892,0.00092141,0.0011568,0.0011649,0.0011657,0.0014875,0.0021967,0.0023241,0.002414,0.0043535,0.004649,0.0048151,0.0084351,0.012966,0.016736,0.019749,0.024016,0.047306,0.05909,0.060654,0.080942,0.10988,0.12536,0.12542,0.15025,0.16572,0.17701,0.19218,0.20568,0.22557,0.23441,0.26137,0.31318,0.33796,0.37944,0.46922,0.47867,0.51551,0.5376,0.60352,0.71747,0.74734,0.82521,0.88026,0.90679,0.94632,0.95087,0.95492,0.9729,0.9811,0.98126,0.98692,0.99055,0.99539,0.99572,0.99586,0.99659,0.99825,0.99979,1,0.99565,0.99564,0.97902,0.97872,0.97356,0.96994,0.96749,0.95888,0.94894,0.91115,0.90501,0.88411,0.7762,0.73914,0.72638,0.64529,0.63541,0.62443,0.54085,0.52909,0.49449,0.48063,0.47589,0.4668,0.40931,0.35357,0.34806,0.33401,0.30986,0.2432,0.2405,0.23622,0.14813,0.1046,0.089586,0.083764,0.069226,0.062938,0.060074,0.050268,0.03531,0.028949,0.027773,0.026615,0.026443,0.024041,0.010171,0.0086648,0.0083614,0.0076739,0.006011,0.0053194,0.0036309,0.0034553,0.003227,0.003123,0.0028138,0.0023913,0.0022163,0.0020846,0.001689,0.0015633,0.0012309,0.0011555,0.00094766,0.00090162,0.00083696,0.0008339,0.00078896,0.00067337,0.00048123,0.00047799,0.00035932,0.00030804,0.00026911,0.00012671,9.9113e-05,9.6719e-05,5.1744e-05,4.4652e-05,4.3938e-05,3.1599e-05,3.1337e-05,2.3713e-05,1.6215e-05,9.5597e-06,8.7608e-06,7.1045e-06,4.6569e-06,3.872e-06,3.278e-06,2.7386e-06,1.6032e-06,1.21e-06,1.2066e-06,1.0424e-06,8.3479e-07,8.0574e-07,5.9094e-07,5.2337e-07,4.693e-07,3.4849e-07,3.2172e-07,2.7464e-07,2.3096e-07,1.6607e-07,1.2371e-07,4.3544e-08,3.8652e-08,3.3859e-08,2.688e-08,1.9744e-08,1.9019e-08,1.1988e-08,1.1676e-08,1.0193e-08,8.6289e-09,6.8316e-09,3.7226e-10,2.9879e-10,2.6952e-10,2.2313e-10,2.0762e-10,1.6679e-10,7.459e-11,6.6835e-11,5.5082e-11,4.4142e-11,3.8129e-11,1.915e-11,1.8077e-11,9.6263e-12,4.6027e-12,2.4242e-12,2.294e-12,1.1179e-12,5.8891e-13,5.667e-13,4.2755e-13,2.3781e-13,2.347e-13,2.2793e-13,1.1047e-13,1.0308e-13,6.758e-14,5.4849e-14,3.4263e-14,3.0128e-14,1.6164e-14,1.4447e-14,7.5668e-15,6.3587e-15 1,2.9198e-08,3.3145e-08,3.5553e-08,4.5228e-08,6.1259e-08,6.1692e-08,6.6827e-08,9.2067e-08,1.7851e-07,2.0158e-07,2.115e-07,2.1186e-07,2.5554e-07,3.5514e-07,3.707e-07,4.6315e-07,9.0807e-07,1.7189e-06,1.8688e-06,2.7509e-06,3.4238e-06,4.0758e-06,4.339e-06,5.4574e-06,5.5336e-06,6.8744e-06,9.4545e-06,1.2469e-05,1.4003e-05,2.3497e-05,2.3989e-05,3.6212e-05,4.5619e-05,4.8444e-05,6.2574e-05,7.2298e-05,7.2475e-05,7.8187e-05,0.00023238,0.00064718,0.00081718,0.00082302,0.00082365,0.0010576,0.0015778,0.0016719,0.0017384,0.0031864,0.003409,0.0035343,0.0062943,0.0098044,0.01276,0.015139,0.018532,0.037403,0.047121,0.048419,0.065373,0.089915,0.1032,0.10325,0.12474,0.13824,0.14814,0.16152,0.17347,0.19118,0.19909,0.22334,0.27048,0.29327,0.33176,0.41651,0.42554,0.46099,0.4824,0.5471,0.66204,0.69294,0.77544,0.83608,0.86634,0.91345,0.9191,0.9242,0.94771,0.95918,0.95941,0.96787,0.97365,0.98221,0.98285,0.98313,0.98464,0.98844,0.99357,0.99565,1,1,0.99368,0.99351,0.9905,0.98825,0.98668,0.98089,0.9738,0.94446,0.93944,0.922,0.82591,0.79132,0.77926,0.70113,0.69145,0.68065,0.5972,0.58529,0.55,0.53578,0.5309,0.52151,0.46167,0.40274,0.39687,0.38185,0.35589,0.28329,0.28031,0.2756,0.17699,0.12699,0.10949,0.10267,0.085515,0.078044,0.07463,0.062881,0.044752,0.03695,0.0355,0.034071,0.033858,0.030884,0.013435,0.011502,0.011111,0.010224,0.0080663,0.0071636,0.0049429,0.0047104,0.0044074,0.0042693,0.0038575,0.0032928,0.003058,0.002881,0.0023472,0.002177,0.0017247,0.0016215,0.0013366,0.0012732,0.0011841,0.0011799,0.0011178,0.00095777,0.00069005,0.00068551,0.00051881,0.00044637,0.00039118,0.00018734,0.00014732,0.00014384,7.799e-05,6.7508e-05,6.6452e-05,4.8116e-05,4.7725e-05,3.632e-05,2.5025e-05,1.4908e-05,1.3685e-05,1.1143e-05,7.3627e-06,6.1431e-06,5.2168e-06,4.3729e-06,2.585e-06,1.961e-06,1.9555e-06,1.6938e-06,1.3618e-06,1.3153e-06,9.6987e-07,8.6079e-07,7.7333e-07,5.772e-07,5.3359e-07,4.5672e-07,3.8522e-07,2.7853e-07,2.0849e-07,7.4647e-08,6.6388e-08,5.8277e-08,4.6436e-08,3.4274e-08,3.3034e-08,2.0971e-08,2.0435e-08,1.7876e-08,1.5172e-08,1.2055e-08,6.8554e-10,5.5196e-10,4.986e-10,4.1388e-10,3.855e-10,3.1064e-10,1.4047e-10,1.2605e-10,1.0416e-10,8.3723e-11,7.2461e-11,3.673e-11,3.4698e-11,1.8632e-11,8.9945e-12,4.7764e-12,4.5232e-12,2.2244e-12,1.1812e-12,1.1372e-12,8.6097e-13,4.8235e-13,4.7612e-13,4.6256e-13,2.2616e-13,2.1122e-13,1.3918e-13,1.1324e-13,7.1136e-14,6.2647e-14,3.3858e-14,3.0301e-14,1.599e-14,1.3464e-14 1,2.9168e-08,3.3111e-08,3.5517e-08,4.5182e-08,6.1198e-08,6.163e-08,6.6761e-08,9.1976e-08,1.7834e-07,2.0138e-07,2.113e-07,2.1166e-07,2.553e-07,3.548e-07,3.7035e-07,4.6272e-07,9.0724e-07,1.7174e-06,1.8671e-06,2.7485e-06,3.4208e-06,4.0723e-06,4.3352e-06,5.4527e-06,5.5289e-06,6.8685e-06,9.4466e-06,1.2459e-05,1.3991e-05,2.3478e-05,2.3969e-05,3.6183e-05,4.5583e-05,4.8406e-05,6.2526e-05,7.2243e-05,7.242e-05,7.8128e-05,0.00023221,0.00064675,0.00081664,0.00082248,0.00082311,0.0010569,0.0015769,0.0016708,0.0017373,0.0031845,0.003407,0.0035323,0.0062908,0.0097992,0.012753,0.015132,0.018523,0.037386,0.047101,0.048398,0.065347,0.08988,0.10316,0.10321,0.1247,0.13819,0.14809,0.16146,0.17341,0.19112,0.19903,0.22327,0.27041,0.29319,0.33168,0.41641,0.42545,0.46089,0.4823,0.547,0.66193,0.69283,0.77534,0.836,0.86626,0.91338,0.91903,0.92413,0.94766,0.95914,0.95937,0.96783,0.97361,0.98218,0.98282,0.9831,0.98461,0.98841,0.99355,0.99564,1,1,0.9937,0.99353,0.99053,0.98828,0.98671,0.98092,0.97384,0.94451,0.9395,0.92207,0.826,0.79141,0.77935,0.70124,0.69156,0.68075,0.5973,0.58539,0.55011,0.53588,0.531,0.52162,0.46177,0.40283,0.39696,0.38194,0.35598,0.28337,0.28039,0.27568,0.17705,0.12703,0.10953,0.1027,0.085549,0.078075,0.07466,0.062907,0.044771,0.036967,0.035516,0.034086,0.033873,0.030898,0.013442,0.011508,0.011117,0.010229,0.0080707,0.0071675,0.0049458,0.0047131,0.00441,0.0042717,0.0038597,0.0032948,0.0030598,0.0028827,0.0023487,0.0021783,0.0017257,0.0016225,0.0013374,0.001274,0.0011849,0.0011806,0.0011185,0.00095839,0.00069051,0.00068597,0.00051916,0.00044668,0.00039145,0.00018748,0.00014743,0.00014395,7.8049e-05,6.756e-05,6.6502e-05,4.8153e-05,4.7763e-05,3.6349e-05,2.5045e-05,1.492e-05,1.3696e-05,1.1152e-05,7.369e-06,6.1484e-06,5.2212e-06,4.3766e-06,2.5873e-06,1.9627e-06,1.9573e-06,1.6953e-06,1.3631e-06,1.3164e-06,9.7076e-07,8.6158e-07,7.7405e-07,5.7774e-07,5.3409e-07,4.5715e-07,3.8559e-07,2.788e-07,2.0869e-07,7.4721e-08,6.6455e-08,5.8336e-08,4.6483e-08,3.4309e-08,3.3068e-08,2.0993e-08,2.0456e-08,1.7895e-08,1.5188e-08,1.2068e-08,6.8631e-10,5.5259e-10,4.9917e-10,4.1435e-10,3.8594e-10,3.11e-10,1.4063e-10,1.262e-10,1.0428e-10,8.3823e-11,7.2548e-11,3.6775e-11,3.474e-11,1.8655e-11,9.0057e-12,4.7824e-12,4.5288e-12,2.2273e-12,1.1827e-12,1.1387e-12,8.6209e-13,4.8298e-13,4.7675e-13,4.6317e-13,2.2646e-13,2.115e-13,1.3936e-13,1.1339e-13,7.1232e-14,6.2732e-14,3.3904e-14,3.0342e-14,1.6013e-14,1.3483e-14 1,1.4946e-08,1.7007e-08,1.8267e-08,2.3347e-08,3.1809e-08,3.2038e-08,3.476e-08,4.8191e-08,9.4682e-08,1.0718e-07,1.1257e-07,1.1276e-07,1.3653e-07,1.9103e-07,1.9958e-07,2.5051e-07,4.9819e-07,9.5612e-07,1.0414e-06,1.5461e-06,1.9337e-06,2.311e-06,2.4637e-06,3.115e-06,3.1595e-06,3.9447e-06,5.4655e-06,7.2556e-06,8.1704e-06,1.3882e-05,1.418e-05,2.1623e-05,2.7398e-05,2.9139e-05,3.7884e-05,4.3935e-05,4.4045e-05,4.7609e-05,0.00014567,0.00041769,0.00053106,0.00053497,0.00053539,0.00069266,0.0010462,0.0011106,0.0011562,0.0021613,0.0023175,0.0024056,0.00437,0.0069171,0.0090916,0.010858,0.013398,0.027847,0.035447,0.036468,0.049936,0.06978,0.080663,0.080706,0.09851,0.1098,0.11813,0.12944,0.13961,0.15479,0.16159,0.18261,0.22403,0.24429,0.27888,0.35657,0.36497,0.39817,0.41841,0.4804,0.5939,0.62525,0.71107,0.77666,0.81047,0.86521,0.87201,0.8782,0.9076,0.92263,0.92294,0.93447,0.94264,0.9554,0.9564,0.95683,0.95923,0.96547,0.97474,0.97902,0.99368,0.9937,1,1,0.99967,0.99915,0.99869,0.99649,0.99308,0.9749,0.97141,0.95871,0.87989,0.84929,0.83843,0.76606,0.75687,0.74657,0.66531,0.65348,0.61814,0.60377,0.59881,0.58927,0.52769,0.46583,0.4596,0.44361,0.41577,0.33663,0.33334,0.32813,0.21687,0.15862,0.13788,0.12972,0.10908,0.10001,0.095848,0.081434,0.058879,0.049031,0.04719,0.04537,0.045099,0.041301,0.018581,0.016002,0.015478,0.014286,0.01137,0.010141,0.0070894,0.0067671,0.0063463,0.006154,0.0055796,0.0047882,0.0044577,0.0042079,0.0034513,0.0032088,0.002561,0.0024126,0.0020006,0.0019086,0.001779,0.0017729,0.0016824,0.0014483,0.0010537,0.001047,0.00079887,0.00069031,0.00060724,0.00029683,0.00023494,0.00022954,0.00012647,0.00010988,0.00010821,7.8998e-05,7.8373e-05,6.0053e-05,4.176e-05,2.5191e-05,2.3172e-05,1.8959e-05,1.2649e-05,1.0598e-05,9.0337e-06,7.6028e-06,4.5477e-06,3.471e-06,3.4616e-06,3.0077e-06,2.4297e-06,2.3484e-06,1.7431e-06,1.551e-06,1.3966e-06,1.0489e-06,9.712e-07,8.34e-07,7.0593e-07,5.1384e-07,3.8691e-07,1.414e-07,1.2604e-07,1.1093e-07,8.8779e-08,6.5911e-08,6.3573e-08,4.0709e-08,3.9688e-08,3.4806e-08,2.9632e-08,2.3646e-08,1.4158e-09,1.1442e-09,1.0354e-09,8.622e-10,8.0405e-10,6.5031e-10,2.9802e-10,2.6792e-10,2.2209e-10,1.7917e-10,1.5544e-10,7.9671e-11,7.5333e-11,4.0858e-11,1.9954e-11,1.0702e-11,1.0143e-11,5.0434e-12,2.7042e-12,2.6049e-12,1.9805e-12,1.1193e-12,1.105e-12,1.074e-12,5.3073e-13,4.9616e-13,3.2895e-13,2.6845e-13,1.6978e-13,1.498e-13,8.1676e-14,7.3211e-14,3.8988e-14,3.2909e-14 1,1.4813e-08,1.6857e-08,1.8107e-08,2.3143e-08,3.1534e-08,3.1761e-08,3.4459e-08,4.7779e-08,9.3888e-08,1.0629e-07,1.1163e-07,1.1182e-07,1.354e-07,1.8947e-07,1.9795e-07,2.4847e-07,4.9423e-07,9.487e-07,1.0333e-06,1.5343e-06,1.9191e-06,2.2937e-06,2.4453e-06,3.0919e-06,3.1361e-06,3.9156e-06,5.4259e-06,7.2035e-06,8.112e-06,1.3785e-05,1.4081e-05,2.1475e-05,2.7213e-05,2.8943e-05,3.7632e-05,4.3644e-05,4.3754e-05,4.7296e-05,0.00014477,0.00041526,0.00052802,0.0005319,0.00053233,0.00068876,0.0010405,0.0011046,0.0011499,0.0021501,0.0023056,0.0023933,0.0043488,0.0068849,0.0090504,0.01081,0.01334,0.027737,0.035311,0.036329,0.049756,0.069542,0.080396,0.080439,0.098197,0.10946,0.11777,0.12905,0.1392,0.15435,0.16114,0.18212,0.22345,0.24369,0.27823,0.35581,0.3642,0.39737,0.4176,0.47954,0.593,0.62435,0.71021,0.77584,0.80969,0.86452,0.87133,0.87753,0.90701,0.92208,0.92239,0.93396,0.94216,0.95497,0.95597,0.95641,0.95882,0.96509,0.97441,0.97872,0.99351,0.99353,1,1,0.99971,0.99921,0.99877,0.99661,0.99326,0.97523,0.97176,0.95912,0.88054,0.85001,0.83917,0.76688,0.7577,0.74741,0.6662,0.65437,0.61904,0.60466,0.59971,0.59017,0.52858,0.46668,0.46045,0.44445,0.41659,0.33736,0.33407,0.32885,0.21744,0.15907,0.13828,0.13011,0.10942,0.10033,0.096155,0.081705,0.059087,0.04921,0.047363,0.045538,0.045266,0.041455,0.018659,0.01607,0.015545,0.014348,0.011421,0.010187,0.0071224,0.0067988,0.0063762,0.0061831,0.0056063,0.0048114,0.0044794,0.0042286,0.0034686,0.0032249,0.0025741,0.002425,0.0020111,0.0019187,0.0017884,0.0017822,0.0016913,0.0014561,0.0010595,0.0010528,0.00080334,0.00069422,0.00061071,0.0002986,0.00023637,0.00023093,0.00012727,0.00011058,0.00010889,7.9507e-05,7.8879e-05,6.0447e-05,4.2039e-05,2.5363e-05,2.3331e-05,1.909e-05,1.2738e-05,1.0673e-05,9.0984e-06,7.6576e-06,4.5813e-06,3.4968e-06,3.4874e-06,3.0302e-06,2.4481e-06,2.3662e-06,1.7564e-06,1.5629e-06,1.4074e-06,1.057e-06,9.7879e-07,8.4056e-07,7.1151e-07,5.1794e-07,3.9003e-07,1.4258e-07,1.271e-07,1.1186e-07,8.9531e-08,6.6474e-08,6.4117e-08,4.1062e-08,4.0032e-08,3.5109e-08,2.9892e-08,2.3854e-08,1.4292e-09,1.1551e-09,1.0453e-09,8.7048e-10,8.1179e-10,6.566e-10,3.0096e-10,2.7057e-10,2.243e-10,1.8095e-10,1.5699e-10,8.0479e-11,7.6098e-11,4.1279e-11,2.0163e-11,1.0815e-11,1.0251e-11,5.0976e-12,2.7335e-12,2.6333e-12,2.0022e-12,1.1316e-12,1.1172e-12,1.0859e-12,5.3667e-13,5.0172e-13,3.3266e-13,2.7149e-13,1.7172e-13,1.5151e-13,8.262e-14,7.4059e-14,3.9444e-14,3.3295e-14 1,1.2816e-08,1.4592e-08,1.5679e-08,2.0059e-08,2.7367e-08,2.7565e-08,2.9916e-08,4.1536e-08,8.1852e-08,9.2709e-08,9.739e-08,9.756e-08,1.1823e-07,1.6567e-07,1.7312e-07,2.1753e-07,4.3399e-07,8.3552e-07,9.104e-07,1.3543e-06,1.6957e-06,2.0283e-06,2.1631e-06,2.7381e-06,2.7774e-06,3.4715e-06,4.8181e-06,6.4056e-06,7.2177e-06,1.2298e-05,1.2563e-05,1.9202e-05,2.4363e-05,2.592e-05,3.3748e-05,3.9171e-05,3.927e-05,4.2467e-05,0.0001308,0.00037752,0.00048075,0.00048431,0.0004847,0.00062814,0.00095145,0.0010104,0.0010522,0.0019756,0.0021195,0.0022007,0.0040158,0.0063795,0.0084039,0.010052,0.012426,0.025998,0.033171,0.034136,0.046894,0.065764,0.076144,0.076186,0.093208,0.10402,0.11202,0.12288,0.13267,0.14729,0.15385,0.17415,0.21427,0.23396,0.26764,0.34361,0.35186,0.38448,0.40441,0.46561,0.57842,0.60976,0.696,0.76243,0.7969,0.85312,0.86015,0.86655,0.89716,0.91292,0.91325,0.92542,0.93409,0.94775,0.94882,0.94929,0.95187,0.95864,0.96881,0.97356,0.9905,0.99053,0.99967,0.99971,1,0.99988,0.99967,0.9983,0.99575,0.98022,0.97709,0.96554,0.89104,0.8615,0.85097,0.78022,0.77119,0.76104,0.68061,0.66885,0.63362,0.61926,0.61431,0.60476,0.54298,0.48062,0.47433,0.45815,0.42995,0.34945,0.34609,0.34077,0.22671,0.16654,0.14502,0.13655,0.11507,0.10561,0.10127,0.086201,0.06255,0.052188,0.050249,0.048331,0.048045,0.044038,0.019965,0.017216,0.016658,0.015386,0.012269,0.010954,0.0076802,0.0073338,0.0068813,0.0066745,0.0060562,0.0052035,0.004847,0.0045774,0.0037601,0.0034978,0.0027964,0.0026355,0.0021884,0.0020885,0.0019477,0.001941,0.0018427,0.0015879,0.0011579,0.0011505,0.0008795,0.00076073,0.00066976,0.00032891,0.00026072,0.00025476,0.00014088,0.00012251,0.00012065,8.8246e-05,8.7552e-05,6.7191e-05,4.6821e-05,2.8324e-05,2.6066e-05,2.1351e-05,1.4276e-05,1.1973e-05,1.0214e-05,8.604e-06,5.1604e-06,3.944e-06,3.9334e-06,3.4201e-06,2.7658e-06,2.6737e-06,1.9875e-06,1.7695e-06,1.5942e-06,1.1989e-06,1.1106e-06,9.5439e-07,8.0848e-07,5.8937e-07,4.4438e-07,1.6316e-07,1.4552e-07,1.2814e-07,1.0266e-07,7.6316e-08,7.3621e-08,4.7236e-08,4.6056e-08,4.0414e-08,3.4431e-08,2.7502e-08,1.666e-09,1.3475e-09,1.2199e-09,1.0166e-09,9.4829e-10,7.6761e-10,3.5285e-10,3.1734e-10,2.6325e-10,2.1254e-10,1.8449e-10,9.4802e-11,8.9659e-11,4.8739e-11,2.3866e-11,1.2829e-11,1.2161e-11,6.0619e-12,3.2574e-12,3.1383e-12,2.3883e-12,1.3524e-12,1.3352e-12,1.2979e-12,6.4291e-13,6.0117e-13,3.9912e-13,3.2594e-13,2.0646e-13,1.8223e-13,9.956e-14,8.9274e-14,4.764e-14,4.0234e-14 1,1.1666e-08,1.3288e-08,1.4279e-08,1.828e-08,2.496e-08,2.5142e-08,2.7293e-08,3.7926e-08,7.4875e-08,8.4836e-08,8.9131e-08,8.9288e-08,1.0826e-07,1.5185e-07,1.5869e-07,1.9953e-07,3.9886e-07,7.6935e-07,8.3851e-07,1.2488e-06,1.5647e-06,1.8727e-06,1.9974e-06,2.5303e-06,2.5667e-06,3.2104e-06,4.4602e-06,5.9351e-06,6.6901e-06,1.1419e-05,1.1666e-05,1.7856e-05,2.2673e-05,2.4127e-05,3.1442e-05,3.6513e-05,3.6605e-05,3.9596e-05,0.00012245,0.00035485,0.0004523,0.00045566,0.00045603,0.00059161,0.00089765,0.00095351,0.00099309,0.0018697,0.0020065,0.0020837,0.0038129,0.0060706,0.0080079,0.0095871,0.011864,0.024924,0.031846,0.032778,0.045116,0.06341,0.073491,0.073532,0.090088,0.10062,0.10841,0.11901,0.12857,0.14285,0.14927,0.16913,0.20847,0.22781,0.26093,0.33584,0.34398,0.37624,0.39597,0.45668,0.569,0.60031,0.68675,0.75365,0.78848,0.84556,0.85272,0.85926,0.89056,0.90677,0.9071,0.91965,0.92862,0.94281,0.94393,0.94442,0.94711,0.9542,0.9649,0.96994,0.98825,0.98828,0.99915,0.99921,0.99988,1,0.99995,0.99909,0.99706,0.98315,0.98025,0.96941,0.89762,0.86876,0.85842,0.78873,0.7798,0.76976,0.68989,0.67817,0.64304,0.6287,0.62375,0.61421,0.55234,0.48971,0.48338,0.46709,0.43868,0.35738,0.35399,0.34861,0.23284,0.1715,0.14951,0.14085,0.11884,0.10914,0.10469,0.089214,0.064878,0.054195,0.052193,0.050213,0.049918,0.04578,0.020851,0.017995,0.017415,0.016092,0.012848,0.011477,0.0080616,0.0076998,0.0072271,0.0070109,0.0063645,0.0054724,0.0050992,0.0048169,0.0039605,0.0036854,0.0029494,0.0027804,0.0023107,0.0022057,0.0020576,0.0020506,0.0019471,0.001679,0.001226,0.0012182,0.0009323,0.00080688,0.00071076,0.00035004,0.00027771,0.00027139,0.00015042,0.00013086,0.00012889,9.4377e-05,9.3638e-05,7.193e-05,5.0187e-05,3.0412e-05,2.7996e-05,2.2947e-05,1.5364e-05,1.2892e-05,1.1004e-05,9.275e-06,5.5719e-06,4.2622e-06,4.2507e-06,3.6976e-06,2.9922e-06,2.8929e-06,2.1524e-06,1.917e-06,1.7276e-06,1.3003e-06,1.2048e-06,1.0358e-06,8.7789e-07,6.4056e-07,4.8338e-07,1.7798e-07,1.5879e-07,1.3987e-07,1.1213e-07,8.3423e-08,8.0484e-08,5.1702e-08,5.0414e-08,4.4253e-08,3.7718e-08,3.0145e-08,1.8392e-09,1.4884e-09,1.3477e-09,1.1236e-09,1.0483e-09,8.49e-10,3.9099e-10,3.5173e-10,2.919e-10,2.3579e-10,2.0474e-10,1.0537e-10,9.9666e-11,5.4254e-11,2.6609e-11,1.4323e-11,1.3579e-11,6.779e-12,3.6476e-12,3.5145e-12,2.6762e-12,1.5172e-12,1.498e-12,1.4562e-12,7.224e-13,6.7559e-13,4.4891e-13,3.6676e-13,2.3252e-13,2.0529e-13,1.123e-13,1.0072e-13,5.3814e-14,4.5463e-14 1,1.0979e-08,1.2507e-08,1.3442e-08,1.7216e-08,2.352e-08,2.3691e-08,2.5721e-08,3.5763e-08,7.0687e-08,8.0109e-08,8.4172e-08,8.432e-08,1.0227e-07,1.4353e-07,1.5002e-07,1.887e-07,3.7769e-07,7.2941e-07,7.951e-07,1.1851e-06,1.4855e-06,1.7785e-06,1.8972e-06,2.4044e-06,2.4391e-06,3.0522e-06,4.2432e-06,5.6496e-06,6.3699e-06,1.0885e-05,1.112e-05,1.7036e-05,2.1643e-05,2.3034e-05,3.0036e-05,3.4891e-05,3.498e-05,3.7844e-05,0.00011733,0.00034091,0.00043481,0.00043805,0.0004384,0.00056912,0.00086448,0.00091843,0.00095666,0.0018043,0.0019367,0.0020114,0.0036871,0.0058787,0.0077616,0.0092977,0.011514,0.024252,0.031016,0.031928,0.044,0.061929,0.071821,0.071861,0.088121,0.098475,0.10614,0.11657,0.12597,0.14004,0.14637,0.16596,0.20479,0.2239,0.25666,0.33088,0.33896,0.37098,0.39058,0.45095,0.56294,0.59423,0.68077,0.74794,0.783,0.84061,0.84786,0.85448,0.88623,0.9027,0.90304,0.91583,0.925,0.93952,0.94067,0.94117,0.94394,0.95122,0.96227,0.96749,0.98668,0.98671,0.99869,0.99877,0.99967,0.99995,1,0.99947,0.99778,0.98492,0.98217,0.97179,0.90177,0.87335,0.86316,0.79417,0.7853,0.77533,0.69584,0.68416,0.6491,0.63477,0.62983,0.6203,0.55839,0.49559,0.48924,0.47289,0.44435,0.36255,0.35913,0.35371,0.23686,0.17475,0.15246,0.14367,0.12133,0.11147,0.10694,0.0912,0.066416,0.055522,0.053479,0.051459,0.051158,0.046933,0.021441,0.018514,0.017919,0.016562,0.013234,0.011826,0.0083164,0.0079444,0.0074581,0.0072357,0.0065706,0.0056523,0.005268,0.0049772,0.0040948,0.0038112,0.0030521,0.0028777,0.0023929,0.0022844,0.0021314,0.0021242,0.0020173,0.0017403,0.0012718,0.0012638,0.00096787,0.000838,0.00073842,0.00036432,0.00028921,0.00028264,0.00015688,0.00013653,0.00013447,9.854e-05,9.777e-05,7.515e-05,5.2477e-05,3.1836e-05,2.9311e-05,2.4035e-05,1.6107e-05,1.3521e-05,1.1545e-05,9.7337e-06,5.8536e-06,4.4801e-06,4.4681e-06,3.8877e-06,3.1474e-06,3.0431e-06,2.2655e-06,2.0182e-06,1.8191e-06,1.37e-06,1.2695e-06,1.0918e-06,9.2564e-07,6.7581e-07,5.1024e-07,1.8821e-07,1.6795e-07,1.4798e-07,1.1867e-07,8.8339e-08,8.5233e-08,5.4795e-08,5.3431e-08,4.6912e-08,3.9996e-08,3.1978e-08,1.96e-09,1.5867e-09,1.4369e-09,1.1983e-09,1.1181e-09,9.0586e-10,4.1767e-10,3.758e-10,3.1196e-10,2.5208e-10,2.1893e-10,1.1278e-10,1.0669e-10,5.8128e-11,2.8538e-11,1.5375e-11,1.4578e-11,7.2847e-12,3.9231e-12,3.7801e-12,2.8795e-12,1.6338e-12,1.6131e-12,1.5682e-12,7.7866e-13,7.2828e-13,4.8418e-13,3.9568e-13,2.5101e-13,2.2165e-13,1.2134e-13,1.0884e-13,5.8203e-14,4.9182e-14 1,9.0034e-09,1.0264e-08,1.1036e-08,1.4153e-08,1.9368e-08,1.9509e-08,2.1191e-08,2.9518e-08,5.8568e-08,6.6422e-08,6.9811e-08,6.9934e-08,8.4916e-08,1.1941e-07,1.2484e-07,1.5723e-07,3.1602e-07,6.1275e-07,6.683e-07,9.9853e-07,1.2534e-06,1.5024e-06,1.6033e-06,2.0351e-06,2.0647e-06,2.5873e-06,3.6047e-06,4.8085e-06,5.4259e-06,9.3051e-06,9.5081e-06,1.4609e-05,1.8591e-05,1.9795e-05,2.586e-05,3.0073e-05,3.015e-05,3.2638e-05,0.00010205,0.00029902,0.00038214,0.00038501,0.00038532,0.00050131,0.00076421,0.00081233,0.00084645,0.0016055,0.0017245,0.0017916,0.0033032,0.0052913,0.0070061,0.0084087,0.010437,0.022172,0.028441,0.029288,0.040527,0.057304,0.066596,0.066633,0.081953,0.091735,0.098985,0.10887,0.1178,0.13118,0.13721,0.15591,0.19311,0.21147,0.24306,0.31501,0.32288,0.35411,0.37326,0.4325,0.54327,0.57443,0.66118,0.72915,0.7649,0.82414,0.83164,0.83851,0.87164,0.88898,0.88934,0.90289,0.91265,0.92824,0.92948,0.93002,0.93302,0.94094,0.95308,0.95888,0.98089,0.98092,0.99649,0.99661,0.9983,0.99909,0.99947,1,0.99942,0.99002,0.98775,0.97889,0.91479,0.88786,0.87813,0.81155,0.80292,0.7932,0.7151,0.70355,0.66877,0.65451,0.64959,0.64009,0.57813,0.51488,0.50846,0.49192,0.46299,0.37962,0.37613,0.37057,0.25023,0.18565,0.16235,0.15314,0.12968,0.1193,0.11453,0.09791,0.07163,0.060029,0.05785,0.055693,0.055372,0.050857,0.023461,0.020293,0.019648,0.018177,0.014561,0.013028,0.0091967,0.0087895,0.008257,0.0080133,0.007284,0.0062756,0.0058531,0.0055332,0.004561,0.0042481,0.0034094,0.0032164,0.0026791,0.0025589,0.002389,0.002381,0.0022623,0.0019543,0.0014323,0.0014233,0.0010926,0.00094719,0.00083555,0.0004147,0.00032982,0.00032239,0.00017978,0.00015663,0.00015429,0.00011333,0.00011245,8.6607e-05,6.0638e-05,3.6921e-05,3.4013e-05,2.7931e-05,1.877e-05,1.5775e-05,1.3484e-05,1.1382e-05,6.8686e-06,5.2662e-06,5.2521e-06,4.5741e-06,3.7082e-06,3.5862e-06,2.6749e-06,2.3846e-06,2.1508e-06,1.6227e-06,1.5044e-06,1.2951e-06,1.0991e-06,8.0398e-07,6.0806e-07,2.2564e-07,2.0148e-07,1.7765e-07,1.4265e-07,1.0637e-07,1.0265e-07,6.6158e-08,6.4521e-08,5.6691e-08,4.8376e-08,3.8726e-08,2.4093e-09,1.9526e-09,1.7692e-09,1.4768e-09,1.3785e-09,1.1179e-09,5.1747e-10,4.6583e-10,3.8706e-10,3.1309e-10,2.721e-10,1.4063e-10,1.3306e-10,7.2711e-11,3.5818e-11,1.9353e-11,1.8354e-11,9.2008e-12,4.9689e-12,4.7886e-12,3.6522e-12,2.0774e-12,2.0513e-12,1.9944e-12,9.9336e-13,9.2935e-13,6.1896e-13,5.0627e-13,3.218e-13,2.8431e-13,1.5604e-13,1.4004e-13,7.5079e-14,6.3487e-14 1,7.3174e-09,8.3479e-09,8.9792e-09,1.1532e-08,1.5809e-08,1.5925e-08,1.7306e-08,2.4152e-08,4.8114e-08,5.4606e-08,5.7409e-08,5.7511e-08,6.9912e-08,9.8513e-08,1.0302e-07,1.2993e-07,2.6227e-07,5.1065e-07,5.5725e-07,8.3475e-07,1.0494e-06,1.2593e-06,1.3445e-06,1.7092e-06,1.7342e-06,2.1765e-06,3.0392e-06,4.0621e-06,4.5875e-06,7.897e-06,8.0704e-06,1.2438e-05,1.5856e-05,1.689e-05,2.2109e-05,2.574e-05,2.5806e-05,2.7952e-05,8.8167e-05,0.00026062,0.00033377,0.0003363,0.00033657,0.00043888,0.00067154,0.00071422,0.00074449,0.0014205,0.0015268,0.0015868,0.0029432,0.0047374,0.0062915,0.0075661,0.0094139,0.020176,0.025962,0.026744,0.037166,0.052802,0.061497,0.061532,0.075913,0.085121,0.091958,0.1013,0.10975,0.12243,0.12815,0.14594,0.18146,0.19907,0.22943,0.29899,0.30662,0.337,0.35567,0.41365,0.52296,0.55393,0.64069,0.70932,0.74568,0.80645,0.8142,0.8213,0.85576,0.87394,0.87432,0.88861,0.89897,0.91562,0.91695,0.91754,0.92076,0.92931,0.94255,0.94894,0.9738,0.97384,0.99308,0.99326,0.99575,0.99706,0.99778,0.99942,1,0.99422,0.99246,0.98522,0.92746,0.90217,0.89295,0.82909,0.82072,0.81128,0.73485,0.72346,0.68906,0.67492,0.67003,0.66058,0.59871,0.53513,0.52865,0.51194,0.48265,0.39777,0.3942,0.38852,0.26464,0.19748,0.17311,0.16346,0.13882,0.12789,0.12285,0.10529,0.077396,0.065028,0.062701,0.060396,0.060052,0.055222,0.025735,0.022299,0.021599,0.020001,0.016064,0.014391,0.010199,0.0097524,0.0091678,0.0089001,0.0080985,0.0069886,0.0065229,0.0061701,0.0050962,0.0047501,0.0038208,0.0036066,0.0030097,0.0028758,0.0026868,0.0026778,0.0025456,0.0022021,0.0016187,0.0016087,0.0012379,0.0010746,0.000949,0.00047392,0.00037766,0.00036922,0.0002069,0.00018046,0.00017778,0.00013091,0.00012991,0.00010026,7.039e-05,4.302e-05,3.9657e-05,3.2613e-05,2.1981e-05,1.8497e-05,1.5829e-05,1.3377e-05,8.1013e-06,6.2227e-06,6.2063e-06,5.4102e-06,4.3923e-06,4.2487e-06,3.1753e-06,2.8329e-06,2.557e-06,1.9328e-06,1.7927e-06,1.5447e-06,1.3124e-06,9.6196e-07,7.2883e-07,2.7213e-07,2.4317e-07,2.1457e-07,1.7253e-07,1.2887e-07,1.2439e-07,8.0382e-08,7.8405e-08,6.8942e-08,5.8885e-08,4.72e-08,2.9825e-09,2.4198e-09,2.1938e-09,1.833e-09,1.7115e-09,1.3896e-09,6.4581e-10,5.8169e-10,4.8379e-10,3.9176e-10,3.4072e-10,1.7668e-10,1.6723e-10,9.1654e-11,4.5307e-11,2.4554e-11,2.3292e-11,1.1715e-11,6.3453e-12,6.1162e-12,4.6706e-12,2.6637e-12,2.6304e-12,2.5577e-12,1.278e-12,1.196e-12,7.9805e-13,6.5335e-13,4.1613e-13,3.6785e-13,2.0244e-13,1.8176e-13,9.7716e-14,8.2689e-14 1,3.7642e-09,4.3043e-09,4.6358e-09,5.9801e-09,8.2446e-09,8.3063e-09,9.0401e-09,1.2693e-08,2.5607e-08,2.9131e-08,3.0654e-08,3.071e-08,3.7468e-08,5.3139e-08,5.5616e-08,7.0458e-08,1.4416e-07,2.8441e-07,3.1091e-07,4.6956e-07,5.9307e-07,7.1438e-07,7.6374e-07,9.7578e-07,9.9035e-07,1.2489e-06,1.7562e-06,2.362e-06,2.6746e-06,4.6593e-06,4.7639e-06,7.4139e-06,9.5034e-06,1.0138e-05,1.3353e-05,1.5601e-05,1.5642e-05,1.6975e-05,5.5051e-05,0.00016732,0.0002157,0.00021738,0.00021757,0.00028575,0.00044243,0.00047137,0.00049192,0.00095639,0.0010302,0.0010719,0.0020262,0.0033118,0.0044401,0.0053733,0.0067366,0.014849,0.019297,0.019902,0.028032,0.040434,0.047416,0.047444,0.059107,0.066641,0.072267,0.07999,0.087015,0.097624,0.10243,0.11747,0.14788,0.16311,0.18963,0.25147,0.25835,0.28586,0.30291,0.35645,0.45996,0.48992,0.57547,0.64503,0.68268,0.74713,0.7555,0.76322,0.8012,0.82167,0.8221,0.83845,0.85046,0.8701,0.87169,0.87239,0.87626,0.88663,0.90303,0.91115,0.94446,0.94451,0.9749,0.97523,0.98022,0.98315,0.98492,0.99002,0.99422,1,0.99988,0.99789,0.96144,0.94186,0.93446,0.88045,0.87311,0.86475,0.79503,0.78436,0.75178,0.73823,0.73352,0.7244,0.66383,0.6001,0.59352,0.57651,0.54644,0.45772,0.45393,0.4479,0.31359,0.23835,0.21056,0.19947,0.17093,0.15817,0.15226,0.13154,0.098167,0.083154,0.080313,0.077493,0.077072,0.071141,0.034236,0.029834,0.028933,0.026872,0.021763,0.019577,0.014048,0.013454,0.012675,0.012318,0.011246,0.0097537,0.0091252,0.0086479,0.0071887,0.006716,0.0054405,0.0051451,0.0043183,0.0041322,0.0038688,0.0038563,0.0036717,0.0031906,0.0023673,0.0023531,0.0018249,0.0015907,0.0014099,0.00071798,0.00057571,0.00056319,0.00032049,0.00028053,0.00027648,0.00020519,0.00020365,0.00015821,0.00011206,6.9311e-05,6.4017e-05,5.2891e-05,3.5979e-05,3.0398e-05,2.6106e-05,2.2148e-05,1.3565e-05,1.048e-05,1.0453e-05,9.14e-06,7.4541e-06,7.2155e-06,5.4265e-06,4.8531e-06,4.39e-06,3.3379e-06,3.101e-06,2.6803e-06,2.2849e-06,1.6855e-06,1.2843e-06,4.8902e-07,4.3793e-07,3.8738e-07,3.1279e-07,2.3496e-07,2.2695e-07,1.4787e-07,1.443e-07,1.2719e-07,1.0896e-07,8.7696e-08,5.8211e-09,4.7399e-09,4.3042e-09,3.6073e-09,3.3722e-09,2.7476e-09,1.2934e-09,1.167e-09,9.7352e-10,7.9107e-10,6.8958e-10,3.6141e-10,3.4236e-10,1.8945e-10,9.4694e-11,5.1808e-11,4.9186e-11,2.5e-11,1.3667e-11,1.318e-11,1.0106e-11,5.8115e-12,5.7399e-12,5.5836e-12,2.8185e-12,2.6402e-12,1.772e-12,1.4549e-12,9.3267e-13,8.2591e-13,4.5837e-13,4.1217e-13,2.2352e-13,1.8959e-13 1,3.4198e-09,3.9118e-09,4.2138e-09,5.4391e-09,7.5048e-09,7.5611e-09,8.2308e-09,1.1566e-08,2.3377e-08,2.6603e-08,2.7998e-08,2.8049e-08,3.424e-08,4.8605e-08,5.0876e-08,6.4494e-08,1.3222e-07,2.6134e-07,2.8576e-07,4.3207e-07,5.4609e-07,6.5814e-07,7.0376e-07,8.9978e-07,9.1326e-07,1.1524e-06,1.6223e-06,2.1838e-06,2.4737e-06,4.3167e-06,4.4139e-06,6.8788e-06,8.8244e-06,9.4156e-06,1.2413e-05,1.451e-05,1.4548e-05,1.5792e-05,5.1418e-05,0.0001569,0.00020246,0.00020405,0.00020422,0.0002685,0.00041642,0.00044376,0.00046319,0.00090294,0.00097289,0.0010125,0.0019191,0.0031436,0.0042203,0.0051119,0.0064159,0.014199,0.018478,0.019061,0.026899,0.038884,0.045643,0.04567,0.056976,0.064289,0.069753,0.077261,0.084095,0.094425,0.099111,0.11377,0.14348,0.15838,0.18436,0.24509,0.25186,0.27895,0.29575,0.34861,0.45117,0.48093,0.56616,0.63572,0.67349,0.73831,0.74676,0.75454,0.79294,0.81369,0.81412,0.83073,0.84294,0.86296,0.86459,0.8653,0.86925,0.87986,0.89667,0.90501,0.93944,0.9395,0.97141,0.97176,0.97709,0.98025,0.98217,0.98775,0.99246,0.99988,1,0.99877,0.96549,0.94678,0.93966,0.88721,0.88003,0.87185,0.80326,0.79273,0.76048,0.74705,0.74238,0.73333,0.67306,0.60943,0.60285,0.58582,0.5557,0.46656,0.46274,0.45667,0.32099,0.24462,0.21633,0.20503,0.17593,0.16289,0.15686,0.13567,0.10146,0.086048,0.083127,0.080228,0.079795,0.073694,0.035629,0.031072,0.030139,0.028004,0.022707,0.020438,0.014692,0.014074,0.013264,0.012892,0.011775,0.01022,0.0095648,0.0090669,0.0075439,0.0070502,0.005717,0.005408,0.0045427,0.0043479,0.0040719,0.0040588,0.0038654,0.0033611,0.0024971,0.0024822,0.0019272,0.0016808,0.0014905,0.00076118,0.0006109,0.00059767,0.00034086,0.00029851,0.00029422,0.0002186,0.00021697,0.00016871,0.00011964,7.4131e-05,6.8488e-05,5.6623e-05,3.8569e-05,3.2605e-05,2.8015e-05,2.3781e-05,1.4588e-05,1.1281e-05,1.1251e-05,9.8421e-06,8.032e-06,7.7757e-06,5.853e-06,5.2364e-06,4.7381e-06,3.6057e-06,3.3505e-06,2.8973e-06,2.471e-06,1.8245e-06,1.3913e-06,5.3126e-07,4.759e-07,4.2112e-07,3.4023e-07,2.5578e-07,2.4708e-07,1.6118e-07,1.573e-07,1.387e-07,1.1886e-07,9.5726e-08,6.399e-09,5.2131e-09,4.7351e-09,3.9702e-09,3.7121e-09,3.026e-09,1.427e-09,1.2879e-09,1.0749e-09,8.7384e-10,7.6198e-10,3.9996e-10,3.7893e-10,2.0997e-10,1.0512e-10,5.759e-11,5.4681e-11,2.7835e-11,1.5236e-11,1.4695e-11,1.1274e-11,6.4911e-12,6.4112e-12,6.237e-12,3.1529e-12,2.9539e-12,1.9842e-12,1.6298e-12,1.0457e-12,9.2627e-13,5.1469e-13,4.6292e-13,2.5135e-13,2.1326e-13 1,2.5067e-09,2.8704e-09,3.0939e-09,4.0018e-09,5.5359e-09,5.5778e-09,6.076e-09,8.5619e-09,1.7406e-08,1.9829e-08,2.0878e-08,2.0916e-08,2.5576e-08,3.6414e-08,3.8131e-08,4.8436e-08,9.9917e-08,1.987e-07,2.1744e-07,3.3001e-07,4.18e-07,5.0464e-07,5.3995e-07,6.9193e-07,7.024e-07,8.8829e-07,1.2545e-06,1.6936e-06,1.9208e-06,3.3702e-06,3.4469e-06,5.3958e-06,6.9397e-06,7.4096e-06,9.7963e-06,1.147e-05,1.1501e-05,1.2494e-05,4.1205e-05,0.00012736,0.00016484,0.00016615,0.00016629,0.00021935,0.00034205,0.00036481,0.00038099,0.00074913,0.00080796,0.00084128,0.0016086,0.0026537,0.0035781,0.0043466,0.0054745,0.012273,0.016044,0.01656,0.023515,0.034229,0.040307,0.040331,0.050542,0.057173,0.062141,0.068982,0.075224,0.084685,0.088986,0.10248,0.12997,0.14384,0.1681,0.22528,0.23168,0.2574,0.27341,0.32402,0.42331,0.45239,0.53636,0.60569,0.64367,0.70949,0.71813,0.72611,0.76569,0.78724,0.78769,0.80504,0.81787,0.83903,0.84075,0.84151,0.84571,0.85703,0.87509,0.88411,0.922,0.92207,0.95871,0.95912,0.96554,0.96941,0.97179,0.97889,0.98522,0.99789,0.99877,1,0.97705,0.96124,0.95505,0.90787,0.90125,0.89368,0.82902,0.81895,0.78791,0.7749,0.77037,0.76157,0.70254,0.63945,0.63289,0.61587,0.58564,0.49538,0.49149,0.4853,0.34546,0.2655,0.23563,0.22367,0.19272,0.1788,0.17234,0.14961,0.11267,0.09591,0.092726,0.089562,0.08909,0.082422,0.040442,0.035362,0.03432,0.031933,0.025991,0.023439,0.016946,0.016245,0.015325,0.014902,0.013632,0.01186,0.011111,0.010542,0.0087969,0.00823,0.0066956,0.0063391,0.005339,0.0051134,0.0047936,0.0047783,0.0045539,0.0039679,0.0029607,0.0029433,0.0022934,0.002004,0.0017801,0.00091728,0.00073828,0.00072249,0.00041498,0.00036402,0.00035884,0.00026759,0.00026561,0.00020715,0.00014751,9.1898e-05,8.4979e-05,7.0408e-05,4.8163e-05,4.079e-05,3.5107e-05,2.9853e-05,1.8409e-05,1.4273e-05,1.4236e-05,1.247e-05,1.0198e-05,9.876e-06,7.4554e-06,6.6775e-06,6.0482e-06,4.6152e-06,4.2917e-06,3.7164e-06,3.1745e-06,2.3509e-06,1.7974e-06,6.9253e-07,6.21e-07,5.5013e-07,4.4533e-07,3.3566e-07,3.2434e-07,2.1238e-07,2.0732e-07,1.83e-07,1.5705e-07,1.2672e-07,8.6648e-09,7.0706e-09,6.4272e-09,5.3965e-09,5.0484e-09,4.1221e-09,1.9554e-09,1.7661e-09,1.4761e-09,1.2019e-09,1.0492e-09,5.534e-10,5.2452e-10,2.9193e-10,1.469e-10,8.083e-11,7.6777e-11,3.9271e-11,2.1588e-11,2.0827e-11,1.6008e-11,9.2519e-12,9.1389e-12,8.8923e-12,4.5162e-12,4.2331e-12,2.8511e-12,2.345e-12,1.5091e-12,1.3378e-12,7.4625e-13,6.7165e-13,3.6615e-13,3.11e-13 1,6.3098e-10,7.259e-10,7.8442e-10,1.0237e-09,1.4322e-09,1.4434e-09,1.577e-09,2.2493e-09,4.6899e-09,5.368e-09,5.6626e-09,5.6733e-09,6.988e-09,1.0079e-08,1.0572e-08,1.3549e-08,2.8719e-08,5.8639e-08,6.4394e-08,9.9343e-08,1.2701e-07,1.5449e-07,1.6575e-07,2.1454e-07,2.1792e-07,2.7824e-07,3.9856e-07,5.4482e-07,6.2115e-07,1.1162e-06,1.1427e-06,1.8239e-06,2.3719e-06,2.5399e-06,3.4e-06,4.0093e-06,4.0205e-06,4.3844e-06,1.5286e-05,4.9956e-05,6.5517e-05,6.6063e-05,6.6122e-05,8.849e-05,0.00014129,0.00015121,0.00015829,0.00032316,0.00035004,0.00036532,0.00072558,0.0012343,0.001696,0.0020865,0.0026682,0.0063275,0.0084369,0.0087285,0.012733,0.019106,0.022809,0.022824,0.029167,0.033359,0.036532,0.040947,0.045017,0.051258,0.054122,0.063212,0.082167,0.091934,0.10933,0.15172,0.15658,0.17633,0.1888,0.22908,0.31179,0.33694,0.41201,0.47692,0.51372,0.57986,0.58879,0.59709,0.63911,0.66265,0.66315,0.6825,0.69704,0.72151,0.72354,0.72443,0.72938,0.74289,0.76493,0.7762,0.82591,0.826,0.87989,0.88054,0.89104,0.89762,0.90177,0.91479,0.92746,0.96144,0.96549,0.97705,1,0.99784,0.99615,0.97518,0.97149,0.9671,0.92426,0.9169,0.89333,0.88308,0.87947,0.87237,0.82268,0.766,0.75991,0.74396,0.71509,0.62486,0.62084,0.61442,0.46213,0.36847,0.33211,0.31731,0.2784,0.26058,0.25224,0.22248,0.1727,0.14943,0.14495,0.14049,0.13982,0.13033,0.068203,0.060314,0.058682,0.054926,0.045458,0.04133,0.030638,0.029464,0.027917,0.027203,0.025049,0.022015,0.020722,0.019735,0.01668,0.015678,0.012937,0.012294,0.010475,0.010061,0.009472,0.0094438,0.0090288,0.007938,0.0060351,0.0060018,0.00475,0.0041852,0.0037444,0.0020065,0.0016351,0.0016021,0.00094904,0.00083846,0.00082718,0.0006266,0.00062222,0.00049167,0.00035632,0.00022737,0.00021108,0.00017652,0.00012301,0.00010502,9.1032e-05,7.8007e-05,4.92e-05,3.8594e-05,3.85e-05,3.3928e-05,2.7999e-05,2.7154e-05,2.0757e-05,1.8682e-05,1.6995e-05,1.3123e-05,1.2242e-05,1.0667e-05,9.1735e-06,6.8808e-06,5.3205e-06,2.1321e-06,1.9203e-06,1.7095e-06,1.3956e-06,1.0637e-06,1.0293e-06,6.8524e-07,6.6952e-07,5.9386e-07,5.1265e-07,4.1706e-07,3.1473e-08,2.5867e-08,2.3593e-08,1.9931e-08,1.8688e-08,1.5367e-08,7.479e-09,6.7785e-09,5.6997e-09,4.6734e-09,4.0981e-09,2.2081e-09,2.0965e-09,1.1895e-09,6.1194e-10,3.4318e-10,3.265e-10,1.7055e-10,9.5509e-11,9.2243e-11,7.1472e-11,4.2003e-11,4.1505e-11,4.0418e-11,2.0949e-11,1.9674e-11,1.3407e-11,1.1091e-11,7.2304e-12,6.4321e-12,3.6492e-12,3.2944e-12,1.8274e-12,1.5594e-12 1,4.1057e-10,4.7299e-10,5.1153e-10,6.6936e-10,9.3971e-10,9.4714e-10,1.0358e-09,1.4827e-09,3.1156e-09,3.5712e-09,3.7693e-09,3.7765e-09,4.6621e-09,6.7508e-09,7.0847e-09,9.1039e-09,1.9458e-08,4.005e-08,4.4028e-08,6.8263e-08,8.7525e-08,1.0671e-07,1.1458e-07,1.4876e-07,1.5113e-07,1.9352e-07,2.7841e-07,3.8202e-07,4.3625e-07,7.8968e-07,8.0867e-07,1.2984e-06,1.6942e-06,1.8157e-06,2.4399e-06,2.8834e-06,2.8916e-06,3.1569e-06,1.1195e-05,3.7211e-05,4.9e-05,4.9414e-05,4.9459e-05,6.6481e-05,0.00010692,0.00011455,0.00012,0.0002478,0.00026876,0.00028069,0.00056399,0.00096841,0.0013384,0.0016529,0.0021236,0.0051229,0.006872,0.0071146,0.010465,0.015848,0.018999,0.019012,0.02444,0.028046,0.030785,0.034607,0.038141,0.04358,0.046082,0.054053,0.070791,0.079471,0.095012,0.13326,0.13768,0.15569,0.1671,0.20421,0.28142,0.30517,0.37669,0.43934,0.47519,0.54026,0.54911,0.55735,0.5993,0.62297,0.62348,0.64302,0.65778,0.68274,0.68482,0.68572,0.6908,0.70468,0.72744,0.73914,0.79132,0.79141,0.84929,0.85001,0.8615,0.86876,0.87335,0.88786,0.90217,0.94186,0.94678,0.96124,0.99784,1,0.99976,0.98752,0.98483,0.98155,0.94663,0.94031,0.91966,0.91052,0.90728,0.90089,0.8553,0.8019,0.7961,0.78083,0.75299,0.66453,0.66054,0.65416,0.50035,0.40343,0.36534,0.34976,0.30857,0.28959,0.28069,0.24878,0.19491,0.16948,0.16457,0.15967,0.15893,0.1485,0.079247,0.070322,0.068472,0.064205,0.053408,0.04868,0.036362,0.035003,0.033208,0.03238,0.029876,0.026338,0.024828,0.023672,0.020086,0.018906,0.015669,0.014907,0.012745,0.012252,0.01155,0.011517,0.011021,0.0097163,0.0074293,0.0073892,0.0058759,0.0051903,0.0046539,0.0025238,0.0020645,0.0020236,0.00121,0.0010713,0.0010572,0.00080468,0.00079915,0.00063401,0.00046194,0.00029693,0.00027598,0.00023145,0.0001622,0.00013881,0.00012059,0.00010358,6.5781e-05,5.1785e-05,5.166e-05,4.5609e-05,3.7743e-05,3.662e-05,2.8101e-05,2.5329e-05,2.3073e-05,1.788e-05,1.6695e-05,1.4575e-05,1.2561e-05,9.4581e-06,7.3386e-06,2.9762e-06,2.6842e-06,2.393e-06,1.9586e-06,1.498e-06,1.4501e-06,9.703e-07,9.4831e-07,8.4239e-07,7.285e-07,5.9416e-07,4.6205e-08,3.8058e-08,3.4747e-08,2.9409e-08,2.7595e-08,2.274e-08,1.1154e-08,1.012e-08,8.5251e-09,7.0048e-09,6.151e-09,3.3358e-09,3.169e-09,1.8085e-09,9.367e-10,5.2837e-10,5.0294e-10,2.6441e-10,1.489e-10,1.4386e-10,1.1174e-10,6.6002e-11,6.5227e-11,6.3535e-11,3.3136e-11,3.1137e-11,2.1295e-11,1.7647e-11,1.155e-11,1.0286e-11,5.8657e-12,5.3003e-12,2.9556e-12,2.5257e-12 1,3.5498e-10,4.0915e-10,4.426e-10,5.7969e-10,8.1476e-10,8.2123e-10,8.9836e-10,1.2876e-09,2.7126e-09,3.1108e-09,3.284e-09,3.2903e-09,4.0649e-09,5.8939e-09,6.1865e-09,7.9569e-09,1.7054e-08,3.5197e-08,3.8707e-08,6.0113e-08,7.7149e-08,9.413e-08,1.011e-07,1.3139e-07,1.335e-07,1.7111e-07,2.4653e-07,3.3871e-07,3.87e-07,7.0224e-07,7.192e-07,1.157e-06,1.5115e-06,1.6204e-06,2.1802e-06,2.5784e-06,2.5857e-06,2.824e-06,1.0072e-05,3.367e-05,4.4397e-05,4.4773e-05,4.4814e-05,6.0328e-05,9.7256e-05,0.00010423,0.00010922,0.00022641,0.00024567,0.00025664,0.00051768,0.00089168,0.0012348,0.0015268,0.0019647,0.004767,0.0064076,0.0066355,0.0097871,0.014868,0.017849,0.017861,0.023007,0.026431,0.029035,0.032672,0.036039,0.041225,0.043614,0.051231,0.067266,0.075598,0.090544,0.12745,0.13172,0.14916,0.16022,0.19627,0.27163,0.29488,0.36515,0.42696,0.46244,0.52704,0.53586,0.54406,0.58591,0.60958,0.61008,0.62966,0.64445,0.66953,0.67161,0.67253,0.67764,0.6916,0.71456,0.72638,0.77926,0.77935,0.83843,0.83917,0.85097,0.85842,0.86316,0.87813,0.89295,0.93446,0.93966,0.95505,0.99615,0.99976,1,0.99074,0.9884,0.98551,0.95335,0.94739,0.92778,0.91905,0.91594,0.90981,0.86572,0.81356,0.80787,0.79286,0.76544,0.67777,0.6738,0.66745,0.5134,0.41552,0.37688,0.36106,0.31913,0.29977,0.29068,0.25805,0.2028,0.17664,0.17158,0.16653,0.16577,0.155,0.083268,0.073976,0.072048,0.0676,0.056327,0.051384,0.038481,0.037054,0.03517,0.034301,0.031669,0.027948,0.026358,0.025141,0.02136,0.020115,0.016695,0.015889,0.013601,0.013079,0.012335,0.0123,0.011774,0.01039,0.0079595,0.0079168,0.0063055,0.0055746,0.0050021,0.0027236,0.0022307,0.0021868,0.0013117,0.0011623,0.001147,0.00087445,0.00086847,0.00068993,0.00050359,0.0003245,0.00030172,0.00025329,0.00017784,0.00015232,0.00013243,0.00011383,7.2459e-05,5.7111e-05,5.6974e-05,5.0332e-05,4.169e-05,4.0455e-05,3.1084e-05,2.8032e-05,2.5546e-05,1.9821e-05,1.8513e-05,1.6173e-05,1.3947e-05,1.0516e-05,8.1688e-06,3.3263e-06,3.0013e-06,2.677e-06,2.193e-06,1.6792e-06,1.6257e-06,1.0896e-06,1.0651e-06,9.4656e-07,8.1909e-07,6.686e-07,5.2522e-08,4.3294e-08,3.954e-08,3.3487e-08,3.1429e-08,2.5918e-08,1.2746e-08,1.1569e-08,9.7516e-09,8.0183e-09,7.0443e-09,3.8286e-09,3.6378e-09,2.0801e-09,1.0798e-09,6.1029e-10,5.8101e-10,3.0611e-10,1.7272e-10,1.6689e-10,1.2973e-10,7.6761e-11,7.5863e-11,7.3901e-11,3.8623e-11,3.6299e-11,2.4856e-11,2.061e-11,1.3507e-11,1.2033e-11,6.874e-12,6.2133e-12,3.471e-12,2.9675e-12 1,1.4302e-10,1.6533e-10,1.7914e-10,2.3594e-10,3.34e-10,3.3671e-10,3.6903e-10,5.3298e-10,1.141e-09,1.3124e-09,1.3871e-09,1.3898e-09,1.7249e-09,2.5217e-09,2.6497e-09,3.4271e-09,7.4728e-09,1.5682e-08,1.7284e-08,2.7123e-08,3.5016e-08,4.2927e-08,4.6185e-08,6.0404e-08,6.1394e-08,7.9169e-08,1.1509e-07,1.5938e-07,1.8271e-07,3.3659e-07,3.4493e-07,5.6179e-07,7.3903e-07,7.9375e-07,1.0764e-06,1.2787e-06,1.2825e-06,1.404e-06,5.1868e-06,1.7962e-05,2.3883e-05,2.4092e-05,2.4115e-05,3.2761e-05,5.361e-05,5.7584e-05,6.0427e-05,0.00012828,0.00013957,0.00014601,0.00030171,0.00052987,0.0007426,0.0009256,0.0012026,0.0030235,0.0041152,0.004268,0.0064035,0.0099162,0.012008,0.012017,0.015672,0.01813,0.020011,0.022656,0.02512,0.028942,0.030713,0.036399,0.048543,0.054935,0.066525,0.095732,0.099162,0.11325,0.12227,0.15203,0.21592,0.23607,0.29809,0.35405,0.38676,0.44747,0.45587,0.46371,0.50413,0.52729,0.52779,0.54713,0.56185,0.58704,0.58915,0.59007,0.59525,0.60946,0.63304,0.64529,0.70113,0.70124,0.76606,0.76688,0.78022,0.78873,0.79417,0.81155,0.82909,0.88045,0.88721,0.90787,0.97518,0.98752,0.99074,1,0.99987,0.99941,0.9852,0.98167,0.96904,0.96303,0.96084,0.95646,0.92288,0.87984,0.87497,0.86202,0.83788,0.75733,0.75358,0.74756,0.59542,0.49324,0.45178,0.4346,0.38856,0.36703,0.35685,0.32002,0.25636,0.22561,0.21961,0.21361,0.2127,0.19984,0.11182,0.10005,0.0976,0.09192,0.077404,0.070978,0.054001,0.052105,0.049592,0.04843,0.0449,0.039881,0.037724,0.036068,0.030893,0.029178,0.024436,0.023311,0.020101,0.019364,0.018312,0.018262,0.017517,0.015545,0.012051,0.011989,0.0096437,0.0085706,0.0077257,0.0043121,0.0035596,0.0034922,0.0021361,0.0019012,0.0018772,0.0014454,0.0014359,0.0011502,0.00084897,0.00055542,0.00051771,0.00043717,0.00031057,0.00026736,0.00023349,0.00020169,0.00013023,0.0001034,0.00010316,9.1485e-05,7.6214e-05,7.4024e-05,5.733e-05,5.1861e-05,4.7393e-05,3.7047e-05,3.4673e-05,3.0409e-05,2.6336e-05,2.0019e-05,1.5662e-05,6.5381e-06,5.9157e-06,5.2929e-06,4.3591e-06,3.3616e-06,3.2572e-06,2.2063e-06,2.1578e-06,1.9236e-06,1.6708e-06,1.3709e-06,1.1463e-07,9.4916e-08,8.6871e-08,7.3857e-08,6.9421e-08,5.7504e-08,2.8742e-08,2.6144e-08,2.2122e-08,1.827e-08,1.6097e-08,8.8675e-09,8.435e-09,4.8821e-09,2.5702e-09,1.4702e-09,1.4011e-09,7.4807e-10,4.2706e-10,4.1293e-10,3.2264e-10,1.9293e-10,1.9072e-10,1.8588e-10,9.8404e-11,9.2598e-11,6.3879e-11,5.316e-11,3.5125e-11,3.1362e-11,1.8109e-11,1.64e-11,9.2628e-12,7.9425e-12 1,1.281e-10,1.4813e-10,1.6054e-10,2.1159e-10,2.9978e-10,3.0222e-10,3.313e-10,4.7893e-10,1.0272e-09,1.182e-09,1.2494e-09,1.2519e-09,1.5546e-09,2.2749e-09,2.3907e-09,3.0942e-09,6.7609e-09,1.4217e-08,1.5673e-08,2.4625e-08,3.1814e-08,3.9024e-08,4.1994e-08,5.4965e-08,5.5868e-08,7.2095e-08,1.0492e-07,1.4543e-07,1.6679e-07,3.0782e-07,3.1547e-07,5.1456e-07,6.7747e-07,7.2779e-07,9.8792e-07,1.1742e-06,1.1777e-06,1.2896e-06,4.7844e-06,1.6638e-05,2.2146e-05,2.234e-05,2.2361e-05,3.0412e-05,4.9856e-05,5.3565e-05,5.622e-05,0.00011969,0.00013027,0.0001363,0.00028246,0.00049722,0.00069784,0.00087063,0.0011325,0.0028594,0.0038977,0.0040431,0.0060786,0.0094347,0.011437,0.011445,0.014948,0.017308,0.019115,0.021657,0.024026,0.027706,0.029412,0.034895,0.046624,0.052807,0.064033,0.09239,0.095726,0.10944,0.11822,0.14726,0.2098,0.22957,0.29056,0.34576,0.3781,0.43823,0.44656,0.45435,0.49451,0.51756,0.51806,0.53732,0.55201,0.57714,0.57925,0.58017,0.58534,0.59955,0.62314,0.63541,0.69145,0.69156,0.75687,0.7577,0.77119,0.7798,0.7853,0.80292,0.82072,0.87311,0.88003,0.90125,0.97149,0.98483,0.9884,0.99987,1,0.99984,0.98785,0.98463,0.97289,0.96723,0.96516,0.96101,0.92882,0.88703,0.88228,0.86962,0.84595,0.76652,0.7628,0.75684,0.60533,0.50285,0.46112,0.44381,0.39733,0.37557,0.36528,0.32797,0.26333,0.23203,0.22592,0.2198,0.21888,0.20576,0.1157,0.10361,0.10109,0.095249,0.080309,0.073687,0.056169,0.054209,0.051612,0.050411,0.04676,0.041565,0.039331,0.037614,0.03225,0.03047,0.025545,0.024376,0.021037,0.020271,0.019176,0.019123,0.018348,0.016294,0.012649,0.012585,0.010135,0.0090126,0.0081286,0.0045504,0.0037599,0.0036891,0.0022618,0.0020142,0.0019888,0.0015332,0.0015232,0.0012213,0.00090266,0.00059162,0.00055161,0.00046613,0.00033161,0.00028564,0.0002496,0.00021573,0.00013953,0.00011089,0.00011063,9.8152e-05,8.1825e-05,7.9483e-05,6.1616e-05,5.5759e-05,5.0972e-05,3.988e-05,3.7333e-05,3.2758e-05,2.8385e-05,2.1597e-05,1.6912e-05,7.0806e-06,6.4087e-06,5.7362e-06,4.7272e-06,3.6486e-06,3.5357e-06,2.3979e-06,2.3453e-06,2.0915e-06,1.8175e-06,1.4922e-06,1.2571e-07,1.0415e-07,9.5344e-08,8.1097e-08,7.624e-08,6.3186e-08,3.1644e-08,2.8791e-08,2.4373e-08,2.014e-08,1.7751e-08,9.794e-09,9.3177e-09,5.4009e-09,2.8481e-09,1.6315e-09,1.555e-09,8.3157e-10,4.7539e-10,4.597e-10,3.5941e-10,2.1518e-10,2.1272e-10,2.0734e-10,1.0994e-10,1.0346e-10,7.1438e-11,5.9476e-11,3.9338e-11,3.5132e-11,2.0312e-11,1.8399e-11,1.0406e-11,8.9257e-12 1,1.1332e-10,1.3109e-10,1.421e-10,1.8743e-10,2.6581e-10,2.6797e-10,2.9384e-10,4.252e-10,9.1395e-10,1.052e-09,1.1122e-09,1.1144e-09,1.3848e-09,2.0286e-09,2.1322e-09,2.7616e-09,6.0481e-09,1.2746e-08,1.4056e-08,2.2114e-08,2.8593e-08,3.5095e-08,3.7775e-08,4.9484e-08,5.03e-08,6.4962e-08,9.4652e-08,1.3134e-07,1.5069e-07,2.7867e-07,2.8562e-07,4.6663e-07,6.1494e-07,6.6078e-07,8.9789e-07,1.0679e-06,1.071e-06,1.1732e-06,4.3728e-06,1.5279e-05,2.0359e-05,2.0538e-05,2.0558e-05,2.7992e-05,4.5981e-05,4.9417e-05,5.1876e-05,0.00011079,0.00012063,0.00012624,0.00026244,0.00046318,0.0006511,0.00081319,0.0010591,0.0026868,0.0036686,0.0038062,0.0057354,0.0089248,0.010832,0.010839,0.01418,0.016433,0.018161,0.020592,0.022862,0.026388,0.028025,0.033287,0.044569,0.050526,0.061357,0.088789,0.092022,0.10532,0.11386,0.1421,0.20315,0.2225,0.28235,0.33668,0.36859,0.42807,0.43632,0.44405,0.4839,0.50681,0.50731,0.52648,0.54111,0.56618,0.56828,0.5692,0.57436,0.58855,0.61214,0.62443,0.68065,0.68075,0.74657,0.74741,0.76104,0.76976,0.77533,0.7932,0.81128,0.86475,0.87185,0.89368,0.9671,0.98155,0.98551,0.99941,0.99984,1,0.99049,0.98761,0.97688,0.97161,0.96967,0.96578,0.93517,0.89479,0.89018,0.87785,0.85473,0.7766,0.77293,0.76703,0.61633,0.51358,0.47157,0.45411,0.40718,0.38516,0.37474,0.33692,0.2712,0.2393,0.23307,0.22681,0.22587,0.21247,0.12012,0.10767,0.10507,0.099054,0.083634,0.076791,0.058658,0.056627,0.053934,0.052687,0.048899,0.043503,0.041181,0.039397,0.033814,0.03196,0.026827,0.025607,0.022121,0.021321,0.020176,0.020121,0.01931,0.017161,0.013344,0.013276,0.010706,0.009527,0.0085977,0.004829,0.0039942,0.0039194,0.0024092,0.0021468,0.0021199,0.0016364,0.0016258,0.001305,0.00096594,0.00063437,0.00059167,0.00050037,0.00035652,0.00030731,0.00026869,0.00023238,0.00015059,0.00011979,0.00011952,0.00010609,8.8509e-05,8.5986e-05,6.6728e-05,6.041e-05,5.5244e-05,4.3266e-05,4.0513e-05,3.5567e-05,3.0837e-05,2.3487e-05,1.8409e-05,7.7333e-06,7.002e-06,6.2698e-06,5.1707e-06,3.9946e-06,3.8714e-06,2.6292e-06,2.5718e-06,2.2945e-06,1.9948e-06,1.639e-06,1.3922e-07,1.1541e-07,1.0568e-07,8.9939e-08,8.4569e-08,7.0131e-08,3.5198e-08,3.2033e-08,2.7132e-08,2.2433e-08,1.9779e-08,1.0933e-08,1.0403e-08,6.0395e-09,3.1908e-09,1.8307e-09,1.7452e-09,9.349e-10,5.353e-10,5.1768e-10,4.0501e-10,2.4283e-10,2.4006e-10,2.34e-10,1.2428e-10,1.1699e-10,8.0854e-11,6.7349e-11,4.4593e-11,3.9837e-11,2.3065e-11,2.0899e-11,1.1837e-11,1.0157e-11 1,4.4043e-11,5.1103e-11,5.5486e-11,7.3604e-11,1.0514e-10,1.0602e-10,1.1647e-10,1.6985e-10,3.7107e-10,4.2843e-10,4.5349e-10,4.5441e-10,5.6729e-10,8.3796e-10,8.8171e-10,1.1485e-09,2.5595e-09,5.4861e-09,6.0635e-09,9.6402e-09,1.2539e-08,1.5465e-08,1.6675e-08,2.1985e-08,2.2356e-08,2.905e-08,4.2713e-08,5.9745e-08,6.878e-08,1.2916e-07,1.3246e-07,2.1912e-07,2.9082e-07,3.1308e-07,4.2884e-07,5.1234e-07,5.1388e-07,5.6428e-07,2.1796e-06,7.8927e-06,1.0607e-05,1.0703e-05,1.0713e-05,1.4723e-05,2.4555e-05,2.6448e-05,2.7807e-05,6.0832e-05,6.6417e-05,6.9612e-05,0.00014829,0.00026691,0.00037979,0.00047819,0.00062893,0.001654,0.0022872,0.0023766,0.0036437,0.0057813,0.0070785,0.0070838,0.0093841,0.010952,0.012162,0.013876,0.015486,0.018005,0.019181,0.022989,0.031271,0.035701,0.043841,0.064879,0.067393,0.077806,0.084541,0.10712,0.15722,0.17342,0.22447,0.27195,0.30032,0.35413,0.3617,0.3688,0.40577,0.42728,0.42774,0.4459,0.45984,0.48392,0.48595,0.48684,0.49183,0.50562,0.52872,0.54085,0.5972,0.5973,0.66531,0.6662,0.68061,0.68989,0.69584,0.7151,0.73485,0.79503,0.80326,0.82902,0.92426,0.94663,0.95335,0.9852,0.98785,0.99049,1,0.99981,0.99696,0.99483,0.99397,0.99213,0.97436,0.94597,0.94251,0.93307,0.91478,0.84866,0.84543,0.8402,0.6994,0.59671,0.55335,0.53511,0.48541,0.46176,0.45049,0.40919,0.33584,0.29944,0.29227,0.28505,0.28397,0.26842,0.15814,0.14279,0.13957,0.13207,0.11271,0.10403,0.080751,0.078114,0.074608,0.072981,0.06802,0.06091,0.057833,0.055461,0.047994,0.045499,0.03854,0.036875,0.032092,0.030988,0.029404,0.029329,0.028204,0.02521,0.019839,0.019743,0.01608,0.014386,0.013043,0.0075121,0.0062633,0.0061507,0.0038563,0.003452,0.0034104,0.0026594,0.0026427,0.0021392,0.0016014,0.001068,0.00099858,0.00084955,0.00061256,0.00053072,0.00046616,0.00040516,0.00026638,0.0002135,0.00021303,0.00018982,0.00015929,0.00015489,0.00012117,0.00011004,0.00010092,7.9636e-05,7.4721e-05,6.5859e-05,5.7349e-05,4.4041e-05,3.4771e-05,1.4979e-05,1.3601e-05,1.2216e-05,1.013e-05,7.8821e-06,7.6457e-06,5.248e-06,5.1365e-06,4.5968e-06,4.0116e-06,3.3134e-06,2.9982e-07,2.497e-07,2.2915e-07,1.9578e-07,1.8436e-07,1.5358e-07,7.8355e-08,7.147e-08,6.0772e-08,5.0469e-08,4.4629e-08,2.5008e-08,2.3822e-08,1.4001e-08,7.5033e-09,4.3578e-09,4.1585e-09,2.258e-09,1.3083e-09,1.2661e-09,9.9571e-10,6.034e-10,5.9666e-10,5.8192e-10,3.1313e-10,2.9511e-10,2.055e-10,1.7181e-10,1.147e-10,1.027e-10,6.0113e-11,5.4572e-11,3.1255e-11,2.69e-11 1,3.8446e-11,4.4628e-11,4.8467e-11,6.4345e-11,9.201e-11,9.2777e-11,1.0196e-10,1.4885e-10,3.2593e-10,3.7647e-10,3.9856e-10,3.9937e-10,4.9892e-10,7.3783e-10,7.7647e-10,1.0122e-09,2.2614e-09,4.8589e-09,5.372e-09,8.5536e-09,1.1135e-08,1.3743e-08,1.4822e-08,1.9559e-08,1.989e-08,2.5869e-08,3.8085e-08,5.3332e-08,6.1427e-08,1.156e-07,1.1857e-07,1.9649e-07,2.6104e-07,2.811e-07,3.8547e-07,4.6083e-07,4.6222e-07,5.0772e-07,1.9711e-06,7.1741e-06,9.6525e-06,9.7405e-06,9.7501e-06,1.3417e-05,2.2425e-05,2.4162e-05,2.5408e-05,5.5775e-05,6.092e-05,6.3864e-05,0.00013651,0.00024641,0.00035122,0.00044273,0.0005831,0.0015414,0.0021353,0.0022192,0.0034108,0.0054268,0.0066527,0.0066578,0.0088355,0.010322,0.011471,0.013099,0.014629,0.017026,0.018146,0.021777,0.029689,0.033928,0.04173,0.061952,0.064373,0.074412,0.080912,0.10274,0.15135,0.16713,0.21693,0.26341,0.29124,0.34418,0.35163,0.35863,0.39512,0.41639,0.41685,0.43481,0.44862,0.4725,0.47452,0.4754,0.48036,0.49405,0.51702,0.52909,0.58529,0.58539,0.65348,0.65437,0.66885,0.67817,0.68416,0.70355,0.72346,0.78436,0.79273,0.81895,0.9169,0.94031,0.94739,0.98167,0.98463,0.98761,0.99981,1,0.99829,0.99663,0.99593,0.99439,0.97855,0.95201,0.94872,0.93974,0.92222,0.8581,0.85494,0.84984,0.71098,0.60863,0.5652,0.5469,0.49692,0.47309,0.46173,0.42,0.34566,0.30866,0.30136,0.29401,0.29291,0.27706,0.16419,0.14841,0.14509,0.13737,0.11741,0.10845,0.084375,0.081643,0.078009,0.076323,0.071178,0.063796,0.0606,0.058134,0.050366,0.047768,0.040514,0.038778,0.033783,0.032629,0.030974,0.030895,0.029718,0.026585,0.020957,0.020857,0.017011,0.015231,0.013818,0.0079868,0.0066666,0.0065475,0.0041167,0.0036874,0.0036433,0.0028451,0.0028273,0.0022914,0.001718,0.0011483,0.0010741,0.00091454,0.00066054,0.0005727,0.00050337,0.0004378,0.00028843,0.00023142,0.00023091,0.00020587,0.0001729,0.00016815,0.0001317,0.00011965,0.00010977,8.6718e-05,8.1389e-05,7.1777e-05,6.2541e-05,4.8084e-05,3.8002e-05,1.6429e-05,1.4924e-05,1.3411e-05,1.1129e-05,8.6684e-06,8.4094e-06,5.781e-06,5.6586e-06,5.0663e-06,4.4237e-06,3.6566e-06,3.3386e-07,2.7822e-07,2.5541e-07,2.1833e-07,2.0564e-07,1.7142e-07,8.7662e-08,7.9984e-08,6.8049e-08,5.6548e-08,5.0026e-08,2.8086e-08,2.6758e-08,1.5755e-08,8.4601e-09,4.9221e-09,4.6976e-09,2.5556e-09,1.4833e-09,1.4356e-09,1.1298e-09,6.857e-10,6.7806e-10,6.6137e-10,3.5653e-10,3.3608e-10,2.3428e-10,1.9597e-10,1.3099e-10,1.1732e-10,6.8777e-11,6.2455e-11,3.5826e-11,3.0847e-11 1,2.5608e-11,2.9763e-11,3.2346e-11,4.3047e-11,6.1743e-11,6.2263e-11,6.8478e-11,1.003e-10,2.2114e-10,2.5576e-10,2.709e-10,2.7146e-10,3.3979e-10,5.0427e-10,5.3092e-10,6.938e-10,1.5615e-09,3.379e-09,3.7394e-09,5.9805e-09,7.8056e-09,9.6531e-09,1.0419e-08,1.3786e-08,1.4021e-08,1.8283e-08,2.7021e-08,3.7966e-08,4.3791e-08,8.2946e-08,8.5097e-08,1.4177e-07,1.8891e-07,2.0358e-07,2.8012e-07,3.3553e-07,3.3655e-07,3.7006e-07,1.4585e-06,5.3892e-06,7.277e-06,7.3442e-06,7.3515e-06,1.0156e-05,1.7083e-05,1.8424e-05,1.9387e-05,4.2993e-05,4.7013e-05,4.9316e-05,0.00010651,0.00019386,0.00027774,0.0003513,0.0004646,0.001247,0.0017367,0.0018062,0.0027963,0.0044858,0.0055197,0.005524,0.0073698,0.0086355,0.0096159,0.011009,0.012323,0.014387,0.015353,0.018495,0.025384,0.029095,0.035954,0.053885,0.056044,0.065022,0.070855,0.090545,0.13488,0.14938,0.19554,0.23903,0.26525,0.31549,0.3226,0.32928,0.36426,0.38474,0.38518,0.40254,0.41592,0.43913,0.44109,0.44195,0.44678,0.46015,0.48264,0.49449,0.55,0.55011,0.61814,0.61904,0.63362,0.64304,0.6491,0.66877,0.68906,0.75178,0.76048,0.78791,0.89333,0.91966,0.92778,0.96904,0.97289,0.97688,0.99696,0.99829,1,0.99972,0.99949,0.99887,0.98884,0.96796,0.96523,0.95766,0.94255,0.88478,0.88186,0.87714,0.74486,0.64401,0.60057,0.58216,0.53157,0.50728,0.49567,0.45283,0.37575,0.33702,0.32934,0.32161,0.32044,0.30373,0.18317,0.16607,0.16246,0.15407,0.13228,0.12246,0.095917,0.092891,0.088863,0.08699,0.081271,0.073044,0.069472,0.066714,0.058001,0.055077,0.046894,0.044929,0.039265,0.037953,0.03607,0.03598,0.034639,0.031063,0.024612,0.024496,0.020064,0.018005,0.016367,0.0095608,0.0080073,0.0078669,0.0049878,0.0044763,0.0044237,0.0034692,0.003448,0.0028044,0.0021127,0.0014213,0.0013308,0.001136,0.00082463,0.00071653,0.00063101,0.00054996,0.00036455,0.00029342,0.00029278,0.00026146,0.00022013,0.00021416,0.0001683,0.00015312,0.00014064,0.00011146,0.0001047,9.249e-05,8.0736e-05,6.2289e-05,4.9379e-05,2.1577e-05,1.9623e-05,1.7657e-05,1.4686e-05,1.1474e-05,1.1135e-05,7.6892e-06,7.5283e-06,6.7492e-06,5.9025e-06,4.8899e-06,4.5856e-07,3.8289e-07,3.5181e-07,3.0124e-07,2.8391e-07,2.3711e-07,1.221e-07,1.1151e-07,9.5029e-08,7.9117e-08,7.0078e-08,3.9571e-08,3.7719e-08,2.2324e-08,1.206e-08,7.0527e-09,6.734e-09,3.6844e-09,2.1492e-09,2.0807e-09,1.6411e-09,1.0005e-09,9.8949e-10,9.6534e-10,5.2328e-10,4.9351e-10,3.4512e-10,2.8914e-10,1.9395e-10,1.7388e-10,1.024e-10,9.3061e-11,5.3635e-11,4.6239e-11 1,2.1695e-11,2.5228e-11,2.7426e-11,3.6534e-11,5.2467e-11,5.291e-11,5.8211e-11,8.5375e-11,1.8876e-10,2.1842e-10,2.314e-10,2.3188e-10,2.9048e-10,4.3171e-10,4.5461e-10,5.9465e-10,1.3423e-09,2.9132e-09,3.2252e-09,5.1674e-09,6.7512e-09,8.3561e-09,9.0215e-09,1.195e-08,1.2155e-08,1.5866e-08,2.3486e-08,3.3044e-08,3.8137e-08,7.2426e-08,7.4312e-08,1.2406e-07,1.6552e-07,1.7844e-07,2.4585e-07,2.9471e-07,2.9562e-07,3.2518e-07,1.2895e-06,4.794e-06,6.4827e-06,6.5428e-06,6.5494e-06,9.0624e-06,1.5283e-05,1.6489e-05,1.7355e-05,3.8647e-05,4.2281e-05,4.4363e-05,9.6214e-05,0.00017571,0.00025227,0.00031952,0.00042328,0.0011431,0.0015955,0.0016598,0.0025773,0.0041483,0.0051121,0.0051161,0.0068403,0.0080247,0.0089433,0.01025,0.011483,0.013423,0.014333,0.017293,0.023798,0.02731,0.033813,0.05087,0.05293,0.061499,0.067075,0.085937,0.12859,0.1426,0.18729,0.22957,0.25513,0.30424,0.31121,0.31776,0.35209,0.37223,0.37267,0.38977,0.40296,0.42586,0.4278,0.42865,0.43342,0.44663,0.46889,0.48063,0.53578,0.53588,0.60377,0.60466,0.61926,0.6287,0.63477,0.65451,0.67492,0.73823,0.74705,0.7749,0.88308,0.91052,0.91905,0.96303,0.96723,0.97161,0.99483,0.99663,0.99972,1,0.99997,0.99971,0.99208,0.97356,0.97106,0.96409,0.95,0.89497,0.89216,0.8876,0.75832,0.65831,0.61495,0.59652,0.54577,0.52134,0.50964,0.46641,0.38831,0.34891,0.34109,0.3332,0.33202,0.31496,0.19129,0.17365,0.16992,0.16125,0.1387,0.12852,0.10094,0.09779,0.093594,0.091643,0.085679,0.077092,0.073361,0.070477,0.061359,0.058296,0.049712,0.047649,0.041695,0.040314,0.038332,0.038237,0.036825,0.033056,0.026245,0.026122,0.021433,0.019251,0.017513,0.010275,0.0086169,0.0084669,0.0053864,0.0048379,0.0047814,0.0037563,0.0037334,0.0030409,0.0022953,0.0015482,0.0014503,0.0012393,0.00090142,0.00078394,0.00069092,0.00060268,0.00040049,0.00032276,0.00032206,0.0002878,0.00024255,0.00023601,0.00018573,0.00016906,0.00015536,0.00012328,0.00011585,0.00010241,8.9462e-05,6.9118e-05,5.4861e-05,2.4076e-05,2.1906e-05,1.9722e-05,1.6419e-05,1.2844e-05,1.2466e-05,8.6241e-06,8.4446e-06,7.5746e-06,6.6287e-06,5.4964e-06,5.2106e-07,4.3542e-07,4.0022e-07,3.4292e-07,3.2328e-07,2.702e-07,1.3954e-07,1.2748e-07,1.0871e-07,9.0576e-08,8.0269e-08,4.5432e-08,4.3314e-08,2.569e-08,1.3912e-08,8.1528e-09,7.7858e-09,4.2697e-09,2.4956e-09,2.4165e-09,1.9076e-09,1.1651e-09,1.1523e-09,1.1243e-09,6.1081e-10,5.7619e-10,4.0346e-10,3.3823e-10,2.272e-10,2.0376e-10,1.2022e-10,1.093e-10,6.3113e-11,5.4438e-11 1,2.0488e-11,2.3829e-11,2.5906e-11,3.4522e-11,4.9599e-11,5.0018e-11,5.5035e-11,8.0754e-11,1.7872e-10,2.0683e-10,2.1914e-10,2.1959e-10,2.7517e-10,4.0915e-10,4.3088e-10,5.6381e-10,1.274e-09,2.7677e-09,3.0645e-09,4.913e-09,6.4212e-09,7.9498e-09,8.5837e-09,1.1375e-08,1.157e-08,1.5108e-08,2.2375e-08,3.1497e-08,3.6358e-08,6.911e-08,7.0912e-08,1.1848e-07,1.5813e-07,1.7049e-07,2.3501e-07,2.818e-07,2.8266e-07,3.1097e-07,1.2358e-06,4.604e-06,6.2289e-06,6.2867e-06,6.293e-06,8.7124e-06,1.4706e-05,1.5869e-05,1.6704e-05,3.7249e-05,4.0758e-05,4.2769e-05,9.289e-05,0.00016984,0.00024401,0.00030921,0.00040986,0.0011092,0.0015494,0.0016119,0.0025056,0.0040375,0.0049781,0.004982,0.0066659,0.0078235,0.0087215,0.0099996,0.011206,0.013105,0.013995,0.016894,0.023271,0.026717,0.033101,0.049865,0.05189,0.060323,0.065812,0.084394,0.12648,0.14031,0.1845,0.22637,0.25171,0.30043,0.30734,0.31385,0.34795,0.36797,0.36841,0.38541,0.39853,0.42133,0.42325,0.4241,0.42885,0.44201,0.46419,0.47589,0.5309,0.531,0.59881,0.59971,0.61431,0.62375,0.62983,0.64959,0.67003,0.73352,0.74238,0.77037,0.87947,0.90728,0.91594,0.96084,0.96516,0.96967,0.99397,0.99593,0.99949,0.99997,1,0.99988,0.99307,0.97537,0.97295,0.96619,0.95246,0.89839,0.89562,0.89112,0.76292,0.66322,0.6199,0.60148,0.55068,0.5262,0.51448,0.47112,0.39268,0.35306,0.34519,0.33725,0.33605,0.31888,0.19415,0.17631,0.17255,0.16378,0.14096,0.13066,0.10272,0.099524,0.095269,0.09329,0.087242,0.078528,0.07474,0.071812,0.062552,0.05944,0.050715,0.048617,0.042561,0.041156,0.039138,0.039041,0.037604,0.033767,0.026828,0.026704,0.021923,0.019697,0.017924,0.010531,0.0088363,0.0086829,0.0055303,0.0049685,0.0049106,0.0038601,0.0038366,0.0031265,0.0023615,0.0015943,0.0014937,0.0012768,0.00092938,0.0008085,0.00071276,0.00062191,0.00041362,0.0003335,0.00033277,0.00029744,0.00025076,0.00024402,0.00019212,0.00017491,0.00016076,0.00012763,0.00011994,0.00010605,9.2669e-05,7.1631e-05,5.688e-05,2.4999e-05,2.275e-05,2.0486e-05,1.706e-05,1.3351e-05,1.2959e-05,8.9707e-06,8.7843e-06,7.8808e-06,6.8982e-06,5.7217e-06,5.4444e-07,4.5508e-07,4.1834e-07,3.5854e-07,3.3803e-07,2.826e-07,1.4608e-07,1.3348e-07,1.1385e-07,9.4885e-08,8.4102e-08,4.764e-08,4.5422e-08,2.696e-08,1.4612e-08,8.5691e-09,8.1839e-09,4.4916e-09,2.6272e-09,2.5439e-09,2.0089e-09,1.2278e-09,1.2143e-09,1.1848e-09,6.4416e-10,6.0769e-10,4.2571e-10,3.5696e-10,2.399e-10,2.1518e-10,1.2704e-10,1.1551e-10,6.6744e-11,5.758e-11 1,1.8344e-11,2.1343e-11,2.3208e-11,3.0946e-11,4.4499e-11,4.4876e-11,4.9388e-11,7.2532e-11,1.6082e-10,1.8618e-10,1.9729e-10,1.9769e-10,2.4786e-10,3.689e-10,3.8854e-10,5.0873e-10,1.1518e-09,2.5071e-09,2.7767e-09,4.4569e-09,5.829e-09,7.2206e-09,7.7979e-09,1.0341e-08,1.0519e-08,1.3745e-08,2.0378e-08,2.8711e-08,3.3155e-08,6.3132e-08,6.4783e-08,1.0839e-07,1.4479e-07,1.5613e-07,2.1542e-07,2.5844e-07,2.5923e-07,2.8528e-07,1.1383e-06,4.258e-06,5.7664e-06,5.8201e-06,5.8259e-06,8.0742e-06,1.3653e-05,1.4735e-05,1.5513e-05,3.469e-05,3.797e-05,3.985e-05,8.6791e-05,0.00015904,0.00022882,0.00029022,0.00038512,0.0010466,0.001464,0.0015233,0.0023725,0.0038315,0.0047289,0.0047326,0.0063413,0.0074484,0.0083079,0.0095322,0.010689,0.01251,0.013365,0.01615,0.022286,0.025606,0.031765,0.047974,0.049936,0.058108,0.063432,0.081482,0.12248,0.13599,0.17922,0.22028,0.24518,0.29315,0.29997,0.30638,0.34004,0.35983,0.36026,0.37708,0.39007,0.41265,0.41456,0.4154,0.42011,0.43316,0.45517,0.4668,0.52151,0.52162,0.58927,0.59017,0.60476,0.61421,0.6203,0.64009,0.66058,0.7244,0.73333,0.76157,0.87237,0.90089,0.90981,0.95646,0.96101,0.96578,0.99213,0.99439,0.99887,0.99971,0.99988,1,0.99479,0.97868,0.97642,0.97007,0.95703,0.90484,0.90214,0.89777,0.7717,0.67266,0.62943,0.61102,0.56015,0.5356,0.52383,0.48024,0.40117,0.36112,0.35316,0.34512,0.34391,0.32652,0.19973,0.18154,0.17769,0.16874,0.14541,0.13485,0.10621,0.10293,0.098563,0.096531,0.090315,0.081355,0.077457,0.074444,0.064904,0.061696,0.052695,0.050528,0.044271,0.042819,0.040733,0.040632,0.039146,0.035175,0.027985,0.027856,0.022895,0.020582,0.018739,0.011042,0.0092732,0.0091131,0.0058173,0.0052291,0.0051684,0.0040674,0.0040428,0.0032977,0.002494,0.0016867,0.0015807,0.0013521,0.00098553,0.00085785,0.00075666,0.00066059,0.00044007,0.00035512,0.00035436,0.00031687,0.00026732,0.00026016,0.00020501,0.00018671,0.00017166,0.0001364,0.00012822,0.00011342,9.9158e-05,7.6718e-05,6.097e-05,2.6873e-05,2.4464e-05,2.2037e-05,1.8363e-05,1.4382e-05,1.3962e-05,9.6764e-06,9.476e-06,8.5043e-06,7.4472e-06,6.1807e-06,5.9237e-07,4.954e-07,4.5552e-07,3.9057e-07,3.683e-07,3.0807e-07,1.5954e-07,1.4582e-07,1.2443e-07,1.0375e-07,9.1993e-08,5.2191e-08,4.9767e-08,2.958e-08,1.6058e-08,9.4303e-09,9.0075e-09,4.9512e-09,2.8999e-09,2.8083e-09,2.2189e-09,1.3578e-09,1.3429e-09,1.3104e-09,7.135e-10,6.732e-10,4.72e-10,3.9595e-10,2.6635e-10,2.3897e-10,1.4126e-10,1.2846e-10,7.4325e-11,6.4141e-11 1,8.8923e-12,1.0369e-11,1.1289e-11,1.5116e-11,2.1853e-11,2.2041e-11,2.4291e-11,3.5879e-11,8.0512e-11,9.342e-11,9.9081e-11,9.9288e-11,1.2492e-10,1.8706e-10,1.9718e-10,2.5926e-10,5.9462e-10,1.3106e-09,1.4539e-09,2.3518e-09,3.0895e-09,3.8408e-09,4.1532e-09,5.5337e-09,5.6308e-09,7.391e-09,1.1032e-08,1.5635e-08,1.8101e-08,3.4858e-08,3.5786e-08,6.0429e-08,8.1146e-08,8.7626e-08,1.2162e-07,1.4639e-07,1.4685e-07,1.6189e-07,6.6324e-07,2.5475e-06,3.4716e-06,3.5046e-06,3.5082e-06,4.8955e-06,8.371e-06,9.0499e-06,9.5383e-06,2.1712e-05,2.3814e-05,2.502e-05,5.5485e-05,0.00010316,0.00014976,0.0001911,0.00025542,0.00071285,0.0010066,0.0010485,0.0016541,0.00271,0.0033666,0.0033693,0.0045566,0.0053802,0.0060226,0.0069417,0.007814,0.009195,0.0098457,0.011977,0.016722,0.019313,0.024157,0.037094,0.038675,0.045294,0.049632,0.06447,0.098811,0.11029,0.1475,0.18343,0.20548,0.24846,0.25462,0.26043,0.2911,0.30928,0.30967,0.3252,0.33724,0.35829,0.36007,0.36086,0.36527,0.37752,0.39829,0.40931,0.46167,0.46177,0.52769,0.52858,0.54298,0.55234,0.55839,0.57813,0.59871,0.66383,0.67306,0.70254,0.82268,0.8553,0.86572,0.92288,0.92882,0.93517,0.97436,0.97855,0.98884,0.99208,0.99307,0.99479,1,0.99446,0.99327,0.98964,0.98133,0.94224,0.94006,0.93652,0.82632,0.73294,0.69088,0.67276,0.62207,0.5973,0.58535,0.54072,0.45822,0.41567,0.40716,0.39854,0.39724,0.37851,0.23871,0.21813,0.21377,0.20357,0.17681,0.16462,0.1312,0.12734,0.12219,0.11979,0.11242,0.10176,0.097101,0.09349,0.082007,0.078125,0.067178,0.06453,0.056849,0.055059,0.052483,0.052359,0.050519,0.045588,0.036593,0.036431,0.030165,0.027225,0.024872,0.014931,0.012613,0.012402,0.0080337,0.0072458,0.0071643,0.0056804,0.0056471,0.0046351,0.0035348,0.0024179,0.0022702,0.0019505,0.0014342,0.0012531,0.0011091,0.00097181,0.00065437,0.00053099,0.00052987,0.00047517,0.0004026,0.00039208,0.00031082,0.00028373,0.0002614,0.00020887,0.00019664,0.00017446,0.00015301,0.0001191,9.5164e-05,4.2733e-05,3.8983e-05,3.5196e-05,2.9446e-05,2.3186e-05,2.2523e-05,1.5733e-05,1.5414e-05,1.3865e-05,1.2176e-05,1.0145e-05,1.0188e-06,8.5497e-07,7.874e-07,6.7709e-07,6.3918e-07,5.3644e-07,2.8121e-07,2.5744e-07,2.2031e-07,1.8431e-07,1.6377e-07,9.3856e-08,8.9573e-08,5.3726e-08,2.9474e-08,1.7466e-08,1.6696e-08,9.2692e-09,5.4769e-09,5.3066e-09,4.2089e-09,2.596e-09,2.568e-09,2.5067e-09,1.3782e-09,1.3015e-09,9.1762e-10,7.7187e-10,5.2242e-10,4.695e-10,2.7976e-10,2.5479e-10,1.4863e-10,1.2855e-10 1,4.1702e-12,4.8736e-12,5.3127e-12,7.145e-12,1.0386e-11,1.0477e-11,1.1564e-11,1.7181e-11,3.9035e-11,4.5398e-11,4.8192e-11,4.8295e-11,6.0977e-11,9.1892e-11,9.6944e-11,1.2802e-10,2.9754e-10,6.6432e-10,7.3823e-10,1.2037e-09,1.5886e-09,1.9821e-09,2.1462e-09,2.8736e-09,2.9248e-09,3.8571e-09,5.7971e-09,8.2666e-09,9.5948e-09,1.8695e-08,1.9202e-08,3.2733e-08,4.4194e-08,4.7791e-08,6.6734e-08,8.0609e-08,8.0866e-08,8.9313e-08,3.7598e-07,1.484e-06,2.0355e-06,2.0553e-06,2.0574e-06,2.8913e-06,5.0014e-06,5.4162e-06,5.7151e-06,1.325e-05,1.4564e-05,1.5319e-05,3.4608e-05,6.532e-05,9.5708e-05,0.00012288,0.00016546,0.00047465,0.00067674,0.00070578,0.0011282,0.001876,0.0023462,0.0023481,0.0032061,0.0038059,0.0042761,0.004952,0.0055965,0.0066222,0.0071076,0.0087058,0.012302,0.014285,0.018021,0.028147,0.029397,0.034657,0.038124,0.050095,0.078332,0.087909,0.11935,0.15024,0.16941,0.20724,0.21271,0.21788,0.24533,0.26172,0.26207,0.27615,0.28712,0.30638,0.30802,0.30874,0.31279,0.32408,0.34331,0.35357,0.40274,0.40283,0.46583,0.46668,0.48062,0.48971,0.49559,0.51488,0.53513,0.6001,0.60943,0.63945,0.766,0.8019,0.81356,0.87984,0.88703,0.89479,0.94597,0.95201,0.96796,0.97356,0.97537,0.97868,0.99446,1,0.99994,0.99924,0.99607,0.97171,0.97014,0.96756,0.87701,0.79201,0.75222,0.73484,0.68552,0.66106,0.64918,0.60437,0.51979,0.47531,0.46633,0.45723,0.45585,0.43596,0.28374,0.26071,0.25581,0.24431,0.21394,0.19998,0.16134,0.15684,0.15082,0.148,0.13936,0.12676,0.12124,0.11694,0.10322,0.098563,0.085342,0.082127,0.072761,0.070569,0.067407,0.067255,0.064992,0.058906,0.047719,0.047516,0.039644,0.035926,0.032937,0.020154,0.017129,0.016853,0.011083,0.010031,0.0099216,0.0079273,0.0078824,0.0065113,0.0050086,0.0034664,0.0032608,0.0028144,0.0020883,0.0018318,0.0016269,0.0014309,0.0009742,0.00079504,0.00079341,0.00071361,0.0006073,0.00059185,0.00047208,0.00043196,0.00039881,0.00032052,0.00030221,0.00026895,0.00023666,0.00018537,0.00014893,6.8174e-05,6.2326e-05,5.6406e-05,4.7386e-05,3.7517e-05,3.6468e-05,2.5682e-05,2.5172e-05,2.2697e-05,1.9989e-05,1.6722e-05,1.7623e-06,1.484e-06,1.369e-06,1.1807e-06,1.1159e-06,9.3976e-07,4.9884e-07,4.5745e-07,3.9265e-07,3.2959e-07,2.9352e-07,1.6997e-07,1.6236e-07,9.83e-08,5.4515e-08,3.2606e-08,3.1193e-08,1.7497e-08,1.0432e-08,1.0113e-08,8.0532e-09,5.0076e-09,4.9545e-09,4.8383e-09,2.6866e-09,2.5396e-09,1.8008e-09,1.5191e-09,1.0346e-09,9.3144e-10,5.5964e-10,5.1044e-10,3.0031e-10,2.6032e-10 1,3.8552e-12,4.5065e-12,4.9132e-12,6.6107e-12,9.6151e-12,9.6991e-12,1.0707e-11,1.5918e-11,3.621e-11,4.2122e-11,4.472e-11,4.4815e-11,5.6605e-11,8.5358e-11,9.0058e-11,1.1898e-10,2.7691e-10,6.1907e-10,6.8807e-10,1.1229e-09,1.4826e-09,1.8506e-09,2.004e-09,2.6846e-09,2.7325e-09,3.6052e-09,5.4224e-09,7.7371e-09,8.9826e-09,1.7523e-08,1.7999e-08,3.0713e-08,4.1489e-08,4.4872e-08,6.2698e-08,7.5761e-08,7.6004e-08,8.3959e-08,3.5443e-07,1.4029e-06,1.9255e-06,1.9442e-06,1.9463e-06,2.7371e-06,4.7403e-06,5.1343e-06,5.4184e-06,1.2586e-05,1.3836e-05,1.4556e-05,3.2947e-05,6.2281e-05,9.1342e-05,0.00011734,0.00015814,0.00045492,0.00064924,0.00067719,0.0010839,0.0018052,0.0022592,0.0022611,0.0030902,0.0036704,0.0041255,0.0047799,0.0054041,0.0063983,0.0068689,0.0084194,0.011912,0.01384,0.017474,0.027342,0.028561,0.033694,0.03708,0.048781,0.076434,0.085827,0.11671,0.14709,0.16598,0.20328,0.20868,0.21378,0.24089,0.2571,0.25745,0.27138,0.28223,0.30129,0.30292,0.30363,0.30765,0.31883,0.3379,0.34806,0.39687,0.39696,0.4596,0.46045,0.47433,0.48338,0.48924,0.50846,0.52865,0.59352,0.60285,0.63289,0.75991,0.7961,0.80787,0.87497,0.88228,0.89018,0.94251,0.94872,0.96523,0.97106,0.97295,0.97642,0.99327,0.99994,1,0.99961,0.99697,0.97418,0.97268,0.9702,0.88184,0.79785,0.75836,0.74107,0.69196,0.66757,0.65571,0.61095,0.52625,0.48161,0.47259,0.46344,0.46206,0.44207,0.28865,0.26537,0.26041,0.24878,0.21804,0.2039,0.16471,0.16014,0.15402,0.15116,0.14238,0.12958,0.12396,0.11959,0.10563,0.10088,0.087415,0.084137,0.074585,0.072348,0.069122,0.068966,0.066657,0.060442,0.049009,0.048802,0.040749,0.036942,0.033881,0.020773,0.017666,0.017383,0.011448,0.010365,0.010253,0.0081987,0.0081524,0.0067388,0.0051882,0.003595,0.0033824,0.0029208,0.0021693,0.0019036,0.0016913,0.0014881,0.0010143,0.00082823,0.00082654,0.00074363,0.00063314,0.00061708,0.00049251,0.00045077,0.00041626,0.00033475,0.00031567,0.00028101,0.00024736,0.00019388,0.00015586,7.1486e-05,6.5367e-05,5.9173e-05,4.9732e-05,3.9397e-05,3.8298e-05,2.6993e-05,2.6459e-05,2.3862e-05,2.1021e-05,1.7593e-05,1.8633e-06,1.5697e-06,1.4482e-06,1.2495e-06,1.181e-06,9.9494e-07,5.2881e-07,4.8502e-07,4.1644e-07,3.4968e-07,3.1148e-07,1.8057e-07,1.7249e-07,1.0454e-07,5.8039e-08,3.4747e-08,3.3244e-08,1.8667e-08,1.114e-08,1.08e-08,8.6037e-09,5.3544e-09,5.2977e-09,5.1737e-09,2.8758e-09,2.7187e-09,1.9289e-09,1.6276e-09,1.1093e-09,9.9883e-10,6.0064e-10,5.4792e-10,3.2264e-10,2.7974e-10 1,3.1436e-12,3.6769e-12,4.0101e-12,5.4018e-12,7.8684e-12,7.9374e-12,8.7655e-12,1.3052e-11,2.979e-11,3.4675e-11,3.6822e-11,3.69e-11,4.6653e-11,7.047e-11,7.4366e-11,9.8361e-11,2.2974e-10,5.1538e-10,5.7308e-10,9.3721e-10,1.2389e-09,1.548e-09,1.6769e-09,2.2493e-09,2.2897e-09,3.0248e-09,4.5578e-09,6.514e-09,7.5677e-09,1.4809e-08,1.5213e-08,2.6025e-08,3.5207e-08,3.8093e-08,5.3312e-08,6.4479e-08,6.4686e-08,7.1491e-08,3.04e-07,1.212e-06,1.6664e-06,1.6827e-06,1.6845e-06,2.3734e-06,4.1231e-06,4.4679e-06,4.7165e-06,1.101e-05,1.211e-05,1.2743e-05,2.8988e-05,5.5017e-05,8.0887e-05,0.00010408,0.00014055,0.00040729,0.00058277,0.00060804,0.00097668,0.001633,0.0020473,0.0020491,0.0028076,0.0033395,0.0037573,0.0043588,0.0049333,0.0058494,0.0062837,0.0077161,0.010952,0.012743,0.016126,0.025347,0.026489,0.031305,0.034487,0.045509,0.071689,0.080616,0.11006,0.13917,0.15731,0.19326,0.19848,0.20341,0.22965,0.24537,0.24571,0.25924,0.26979,0.28835,0.28993,0.29063,0.29455,0.30546,0.32407,0.33401,0.38185,0.38194,0.44361,0.44445,0.45815,0.46709,0.47289,0.49192,0.51194,0.57651,0.58582,0.61587,0.74396,0.78083,0.79286,0.86202,0.86962,0.87785,0.93307,0.93974,0.95766,0.96409,0.96619,0.97007,0.98964,0.99924,0.99961,1,0.99876,0.98007,0.97874,0.97654,0.894,0.81273,0.77406,0.75707,0.70857,0.68437,0.67259,0.62798,0.54306,0.49805,0.48893,0.47968,0.47829,0.45804,0.3016,0.27769,0.27259,0.26062,0.2289,0.21429,0.17367,0.16892,0.16256,0.15958,0.15044,0.1371,0.13123,0.12667,0.11207,0.1071,0.092971,0.089528,0.079483,0.077129,0.07373,0.073566,0.071132,0.064576,0.052489,0.052269,0.043733,0.039691,0.036436,0.022453,0.019126,0.018822,0.012447,0.01128,0.011159,0.008941,0.008891,0.0073619,0.0056809,0.0039488,0.0037172,0.0032137,0.0023926,0.0021017,0.0018691,0.0016462,0.0011253,0.00092032,0.00091845,0.00082697,0.00070494,0.00068718,0.00054936,0.00050312,0.00046487,0.00037441,0.00035322,0.0003147,0.00027726,0.00021767,0.00017524,8.0789e-05,7.3917e-05,6.6955e-05,5.6335e-05,4.4692e-05,4.3453e-05,3.0693e-05,3.0089e-05,2.7153e-05,2.3939e-05,2.0056e-05,2.1517e-06,1.8143e-06,1.6747e-06,1.446e-06,1.3672e-06,1.1528e-06,6.1478e-07,5.6412e-07,4.8474e-07,4.074e-07,3.6311e-07,2.1108e-07,2.0169e-07,1.2254e-07,6.823e-08,4.095e-08,3.9186e-08,2.2064e-08,1.32e-08,1.2799e-08,1.0206e-08,6.3655e-09,6.2985e-09,6.1517e-09,3.4285e-09,3.242e-09,2.3037e-09,1.9453e-09,1.3281e-09,1.1964e-09,7.2101e-10,6.5799e-10,3.8833e-10,3.3691e-10 1,2.1843e-12,2.5577e-12,2.7911e-12,3.7674e-12,5.5021e-12,5.5507e-12,6.1341e-12,9.1594e-12,2.1028e-11,2.4503e-11,2.6031e-11,2.6087e-11,3.3037e-11,5.0053e-11,5.2841e-11,7.0035e-11,1.6461e-10,3.7153e-10,4.1346e-10,6.7874e-10,8.992e-10,1.1254e-09,1.22e-09,1.6402e-09,1.6698e-09,2.2108e-09,3.3422e-09,4.7905e-09,5.5722e-09,1.0964e-08,1.1266e-08,1.936e-08,2.6258e-08,2.8429e-08,3.9901e-08,4.8339e-08,4.8496e-08,5.3644e-08,2.3106e-07,9.3318e-07,1.2869e-06,1.2997e-06,1.301e-06,1.8393e-06,3.2128e-06,3.4842e-06,3.6801e-06,8.6652e-06,9.5408e-06,1.0045e-05,2.3052e-05,4.4062e-05,6.5067e-05,8.3971e-05,0.00011379,0.00033406,0.00048017,0.00050127,0.00081022,0.0013642,0.0017158,0.0017173,0.0023637,0.0028186,0.0031768,0.0036935,0.0041882,0.0049791,0.0053547,0.0065968,0.0094171,0.010984,0.013957,0.022115,0.023131,0.027421,0.030264,0.040155,0.063857,0.071994,0.098998,0.12589,0.14275,0.17634,0.18124,0.18586,0.21057,0.22542,0.22574,0.23855,0.24856,0.26622,0.26773,0.26839,0.27212,0.28253,0.30033,0.30986,0.35589,0.35598,0.41577,0.41659,0.42995,0.43868,0.44435,0.46299,0.48265,0.54644,0.5557,0.58564,0.71509,0.75299,0.76544,0.83788,0.84595,0.85473,0.91478,0.92222,0.94255,0.95,0.95246,0.95703,0.98133,0.99607,0.99697,0.99876,1,0.98869,0.98768,0.98598,0.91421,0.8382,0.80118,0.78478,0.73759,0.71385,0.70225,0.65809,0.5731,0.52759,0.51833,0.50893,0.50751,0.48688,0.32539,0.30038,0.29503,0.28247,0.24905,0.23359,0.19041,0.18534,0.17854,0.17536,0.16556,0.15123,0.14492,0.14001,0.12423,0.11885,0.10351,0.099766,0.088809,0.086236,0.082517,0.082338,0.079672,0.072479,0.059169,0.058926,0.049481,0.044993,0.041373,0.025727,0.021978,0.021635,0.014409,0.01308,0.012942,0.010407,0.01035,0.0085962,0.0066604,0.0046553,0.0043862,0.0038003,0.0028415,0.0025007,0.0022276,0.0019654,0.0013506,0.0011075,0.0011053,0.0009966,0.00085132,0.00083015,0.00066558,0.00061025,0.00056443,0.00045584,0.00043036,0.00038397,0.00033882,0.00026679,0.00021535,0.00010018,9.1756e-05,8.3208e-05,7.0146e-05,5.5794e-05,5.4264e-05,3.8476e-05,3.7728e-05,3.4085e-05,3.0091e-05,2.5259e-05,2.7723e-06,2.3415e-06,2.163e-06,1.8702e-06,1.7692e-06,1.4943e-06,8.0162e-07,7.3615e-07,6.3345e-07,5.3324e-07,4.7578e-07,2.7794e-07,2.6568e-07,1.6213e-07,9.0742e-08,5.4701e-08,5.2365e-08,2.9628e-08,1.7801e-08,1.7264e-08,1.3793e-08,8.6358e-09,8.5456e-09,8.348e-09,4.6745e-09,4.4221e-09,3.1509e-09,2.6643e-09,1.8243e-09,1.6447e-09,9.9512e-10,9.0878e-10,5.385e-10,4.6769e-10 1,7.1521e-13,8.4018e-13,9.1851e-13,1.2476e-12,1.8364e-12,1.853e-12,2.052e-12,3.0901e-12,7.221e-12,8.442e-12,8.9804e-12,9.0001e-12,1.1456e-11,1.7515e-11,1.8512e-11,2.4688e-11,5.9142e-11,1.3597e-10,1.5169e-10,2.5188e-10,3.3588e-10,4.2261e-10,4.5897e-10,6.2139e-10,6.329e-10,8.4355e-10,1.288e-09,1.8623e-09,2.1742e-09,4.3502e-09,4.4729e-09,7.7916e-09,1.065e-08,1.1554e-08,1.6358e-08,1.9916e-08,1.9982e-08,2.2162e-08,9.9247e-08,4.1677e-07,5.801e-07,5.86e-07,5.8664e-07,8.3774e-07,1.4877e-06,1.6174e-06,1.7111e-06,4.1363e-06,4.568e-06,4.8172e-06,1.1353e-05,2.2171e-05,3.3177e-05,4.3196e-05,5.9161e-05,0.00018065,0.00026328,0.00027531,0.00045347,0.0007799,0.00099037,0.00099125,0.0013832,0.0016621,0.0018832,0.0022044,0.0025139,0.0030125,0.0032507,0.0040443,0.0058738,0.006904,0.0088798,0.014419,0.015118,0.018092,0.02008,0.027084,0.044324,0.050363,0.070767,0.091565,0.10481,0.13165,0.1356,0.13935,0.15953,0.17179,0.17206,0.18271,0.19108,0.20594,0.20722,0.20778,0.21094,0.21978,0.235,0.2432,0.28329,0.28337,0.33663,0.33736,0.34945,0.35738,0.36255,0.37962,0.39777,0.45772,0.46656,0.49538,0.62486,0.66453,0.67777,0.75733,0.76652,0.7766,0.84866,0.8581,0.88478,0.89497,0.89839,0.90484,0.94224,0.97171,0.97418,0.98007,0.98869,1,0.99998,0.99985,0.96349,0.90641,0.87579,0.8618,0.8203,0.79881,0.78817,0.7469,0.66435,0.61862,0.60919,0.59957,0.59811,0.57685,0.40329,0.37525,0.3692,0.35495,0.31663,0.29869,0.24776,0.2417,0.23355,0.22972,0.21789,0.20045,0.19272,0.18667,0.16713,0.16041,0.14111,0.13635,0.12236,0.11905,0.11426,0.11403,0.11058,0.10123,0.083733,0.083411,0.07081,0.064762,0.059852,0.038252,0.032963,0.032476,0.022101,0.020162,0.019961,0.01623,0.016145,0.013532,0.010615,0.0075447,0.0071281,0.0062164,0.0047086,0.0041671,0.0037307,0.0033093,0.0023103,0.00191,0.0019064,0.0017262,0.0014839,0.0014485,0.0011716,0.0010779,0.00099997,0.0008143,0.00077048,0.00069043,0.00061213,0.00048634,0.00039568,0.00018921,0.00017382,0.00015817,0.00013413,0.00010753,0.00010468,7.5087e-05,7.3675e-05,6.6787e-05,5.9206e-05,4.9985e-05,5.878e-06,4.9895e-06,4.6199e-06,4.0118e-06,3.8013e-06,3.2265e-06,1.7622e-06,1.6222e-06,1.4018e-06,1.1858e-06,1.0614e-06,6.2934e-07,6.0232e-07,3.7255e-07,2.1176e-07,1.2936e-07,1.2398e-07,7.1187e-08,4.3327e-08,4.2054e-08,3.3789e-08,2.1403e-08,2.1185e-08,2.0707e-08,1.1761e-08,1.1141e-08,8.004e-09,6.7951e-09,4.6952e-09,4.2434e-09,2.598e-09,2.3776e-09,1.4261e-09,1.2426e-09 1,6.8059e-13,7.9962e-13,8.7424e-13,1.1878e-12,1.749e-12,1.7648e-12,1.9545e-12,2.9444e-12,6.8858e-12,8.0514e-12,8.5653e-12,8.5842e-12,1.0929e-11,1.6716e-11,1.7669e-11,2.357e-11,5.6509e-11,1.3003e-10,1.4507e-10,2.4101e-10,3.2148e-10,4.0458e-10,4.3943e-10,5.9512e-10,6.0615e-10,8.0813e-10,1.2344e-09,1.7855e-09,2.0849e-09,4.1747e-09,4.2926e-09,7.482e-09,1.023e-08,1.1099e-08,1.5721e-08,1.9144e-08,1.9208e-08,2.1306e-08,9.5577e-08,4.0204e-07,5.5984e-07,5.6554e-07,5.6616e-07,8.0884e-07,1.4375e-06,1.5629e-06,1.6536e-06,4.0019e-06,4.4201e-06,4.6616e-06,1.0999e-05,2.15e-05,3.2192e-05,4.1929e-05,5.7454e-05,0.00017574,0.00025628,0.00026801,0.00044181,0.00076056,0.00096622,0.00096708,0.0013502,0.0016231,0.0018395,0.0021538,0.0024569,0.0029451,0.0031785,0.0039561,0.0057501,0.0067609,0.0087004,0.014143,0.01483,0.017755,0.019711,0.026605,0.043595,0.049552,0.069694,0.090245,0.10334,0.1299,0.13381,0.13752,0.15751,0.16966,0.16993,0.18048,0.18878,0.20352,0.20479,0.20535,0.20848,0.21726,0.23236,0.2405,0.28031,0.28039,0.33334,0.33407,0.34609,0.35399,0.35913,0.37613,0.3942,0.45393,0.46274,0.49149,0.62084,0.66054,0.6738,0.75358,0.7628,0.77293,0.84543,0.85494,0.88186,0.89216,0.89562,0.90214,0.94006,0.97014,0.97268,0.97874,0.98768,0.99998,1,0.99994,0.96521,0.90906,0.87877,0.8649,0.82372,0.80235,0.79177,0.75068,0.66833,0.62264,0.61322,0.6036,0.60214,0.58086,0.4069,0.37874,0.37267,0.35835,0.31982,0.30177,0.25052,0.24441,0.2362,0.23234,0.22042,0.20285,0.19505,0.18895,0.16924,0.16246,0.14297,0.13817,0.12403,0.12069,0.11585,0.11561,0.11213,0.10268,0.084977,0.084651,0.071897,0.065773,0.0608,0.038905,0.033539,0.033045,0.022509,0.020539,0.020334,0.016541,0.016455,0.013798,0.010829,0.0077026,0.0072781,0.006349,0.0048118,0.0042595,0.0038142,0.0033842,0.0023642,0.0019554,0.0019516,0.0017674,0.0015198,0.0014836,0.0012005,0.0011046,0.0010249,0.00083491,0.00079005,0.0007081,0.00062793,0.00049909,0.0004062,0.00019447,0.00017868,0.00016261,0.00013794,0.00011062,0.00010769,7.7288e-05,7.5836e-05,6.8757e-05,6.0963e-05,5.1481e-05,6.0724e-06,5.1556e-06,4.7742e-06,4.1466e-06,3.9293e-06,3.3359e-06,1.8233e-06,1.6787e-06,1.4509e-06,1.2276e-06,1.0989e-06,6.5203e-07,6.2407e-07,3.8623e-07,2.1969e-07,1.3428e-07,1.287e-07,7.3946e-08,4.5032e-08,4.371e-08,3.5128e-08,2.2263e-08,2.2036e-08,2.154e-08,1.2242e-08,1.1597e-08,8.3346e-09,7.077e-09,4.8919e-09,4.4217e-09,2.7085e-09,2.479e-09,1.4877e-09,1.2965e-09 1,6.2866e-13,7.3878e-13,8.0783e-13,1.098e-12,1.6177e-12,1.6324e-12,1.8081e-12,2.7254e-12,6.3818e-12,7.4637e-12,7.9409e-12,7.9584e-12,1.0136e-11,1.5513e-11,1.6398e-11,2.1885e-11,5.2539e-11,1.2105e-10,1.3508e-10,2.2459e-10,2.9971e-10,3.7733e-10,4.0989e-10,5.5538e-10,5.6569e-10,7.5454e-10,1.1534e-09,1.6693e-09,1.9497e-09,3.9086e-09,4.0191e-09,7.012e-09,9.5927e-09,1.0409e-08,1.4753e-08,1.7972e-08,1.8032e-08,2.0004e-08,8.9984e-08,3.7956e-07,5.2887e-07,5.3426e-07,5.3485e-07,7.6466e-07,1.3605e-06,1.4795e-06,1.5655e-06,3.7957e-06,4.1934e-06,4.423e-06,1.0455e-05,2.0469e-05,3.0676e-05,3.9979e-05,5.4822e-05,0.00016815,0.00024546,0.00025672,0.00042377,0.00073058,0.00092876,0.00092959,0.0012991,0.0015625,0.0017715,0.0020752,0.0023681,0.0028403,0.0030661,0.0038189,0.0055574,0.0065378,0.0084205,0.013711,0.01438,0.017228,0.019133,0.025856,0.042452,0.048279,0.068006,0.088167,0.10103,0.12714,0.13099,0.13464,0.15433,0.1663,0.16656,0.17697,0.18516,0.1997,0.20095,0.2015,0.20459,0.21326,0.22818,0.23622,0.2756,0.27568,0.32813,0.32885,0.34077,0.34861,0.35371,0.37057,0.38852,0.4479,0.45667,0.4853,0.61442,0.65416,0.66745,0.74756,0.75684,0.76703,0.8402,0.84984,0.87714,0.8876,0.89112,0.89777,0.93652,0.96756,0.9702,0.97654,0.98598,0.99985,0.99994,1,0.96788,0.91322,0.88347,0.86981,0.82912,0.80797,0.79748,0.75668,0.67468,0.62906,0.61964,0.61002,0.60856,0.58728,0.4127,0.38435,0.37824,0.36381,0.32496,0.30675,0.25496,0.24879,0.24048,0.23658,0.22451,0.20671,0.19881,0.19263,0.17264,0.16576,0.14598,0.1411,0.12674,0.12334,0.11842,0.11818,0.11464,0.10502,0.086995,0.086663,0.073662,0.067416,0.06234,0.039968,0.034475,0.03397,0.023175,0.021153,0.020943,0.01705,0.016961,0.014232,0.011179,0.007961,0.0075238,0.0065663,0.004981,0.004411,0.0039513,0.0035072,0.0024528,0.0020298,0.0020259,0.0018353,0.0015789,0.0015414,0.0012479,0.0011486,0.0010659,0.00086884,0.00082229,0.00073722,0.00065397,0.00052011,0.00042354,0.00020316,0.00018671,0.00016996,0.00014423,0.00011573,0.00011267,8.093e-05,7.9414e-05,7.2017e-05,6.3873e-05,5.396e-05,6.3957e-06,5.4321e-06,5.031e-06,4.3709e-06,4.1424e-06,3.518e-06,1.9253e-06,1.7728e-06,1.5328e-06,1.2973e-06,1.1616e-06,6.8992e-07,6.604e-07,4.0909e-07,2.3295e-07,1.4252e-07,1.3661e-07,7.857e-08,4.7892e-08,4.6488e-08,3.7376e-08,2.3707e-08,2.3466e-08,2.2938e-08,1.305e-08,1.2364e-08,8.8905e-09,7.5512e-09,5.223e-09,4.7218e-09,2.8948e-09,2.6499e-09,1.5916e-09,1.3873e-09 1,8.9625e-14,1.0591e-13,1.1616e-13,1.5956e-13,2.3825e-13,2.4048e-13,2.6732e-13,4.0875e-13,9.8628e-13,1.16e-12,1.2368e-12,1.2397e-12,1.5926e-12,2.4751e-12,2.6217e-12,3.5357e-12,8.7664e-12,2.0839e-11,2.3351e-11,3.9584e-11,5.3415e-11,6.7849e-11,7.3941e-11,1.0138e-10,1.0334e-10,1.394e-10,2.167e-10,3.1832e-10,3.7412e-10,7.7151e-10,7.9425e-10,1.418e-09,1.9655e-09,2.1402e-09,3.0783e-09,3.7816e-09,3.7948e-09,4.2287e-09,2.0319e-08,9.1558e-08,1.2959e-07,1.3098e-07,1.3113e-07,1.907e-07,3.4895e-07,3.8103e-07,4.0432e-07,1.0249e-06,1.1381e-06,1.2037e-06,2.9765e-06,6.0432e-06,9.2624e-06,1.2253e-05,1.7109e-05,5.6092e-05,8.3821e-05,8.7913e-05,0.00014984,0.00026777,0.000346,0.00034633,0.00049536,0.0006036,0.00069047,0.00081815,0.00094269,0.001146,0.0012442,0.0015757,0.002361,0.0028138,0.0036997,0.0062788,0.0066127,0.0080502,0.0090253,0.012541,0.021616,0.02491,0.036398,0.048593,0.056582,0.073236,0.07574,0.078125,0.091148,0.099201,0.099379,0.10647,0.11209,0.12219,0.12306,0.12344,0.12561,0.13172,0.14234,0.14813,0.17699,0.17705,0.21687,0.21744,0.22671,0.23284,0.23686,0.25023,0.26464,0.31359,0.32099,0.34546,0.46213,0.50035,0.5134,0.59542,0.60533,0.61633,0.6994,0.71098,0.74486,0.75832,0.76292,0.7717,0.82632,0.87701,0.88184,0.894,0.91421,0.96349,0.96521,0.96788,1,0.98556,0.97108,0.96351,0.93837,0.92403,0.91663,0.88634,0.81916,0.77867,0.77007,0.7612,0.75984,0.73988,0.56116,0.52967,0.52279,0.50641,0.46136,0.43974,0.37649,0.36876,0.35829,0.35335,0.33796,0.31494,0.30459,0.29645,0.26975,0.26043,0.23324,0.22645,0.2062,0.20136,0.1943,0.19396,0.18885,0.17486,0.1481,0.1476,0.12779,0.11811,0.11016,0.073981,0.064761,0.063904,0.045219,0.041626,0.04125,0.034214,0.034052,0.029019,0.023276,0.017053,0.016191,0.014287,0.011079,0.0099046,0.0089479,0.0080149,0.0057574,0.0048309,0.0048223,0.0043998,0.0038261,0.0037416,0.0030747,0.0028463,0.0026552,0.0021948,0.002085,0.0018831,0.0016839,0.0013597,0.0011222,0.00056395,0.00052099,0.000477,0.00040886,0.00033245,0.0003242,0.00023748,0.00023329,0.00021278,0.00019004,0.00016212,2.1599e-05,1.8501e-05,1.7203e-05,1.5055e-05,1.4307e-05,1.2253e-05,6.9123e-06,6.3911e-06,5.5655e-06,4.7493e-06,4.2757e-06,2.6044e-06,2.4982e-06,1.5831e-06,9.2548e-07,5.7913e-07,5.5617e-07,3.2795e-07,2.0434e-07,1.9861e-07,1.6121e-07,1.043e-07,1.0328e-07,1.0106e-07,5.8894e-08,5.5927e-08,4.0778e-08,3.4873e-08,2.4494e-08,2.2236e-08,1.3908e-08,1.2777e-08,7.8341e-09,6.8664e-09 1,2.3542e-14,2.7921e-14,3.0687e-14,4.2449e-14,6.3955e-14,6.4567e-14,7.1944e-14,1.1106e-13,2.7341e-13,3.2276e-13,3.4466e-13,3.4546e-13,4.4641e-13,7.009e-13,7.4341e-13,1.0096e-12,2.5577e-12,6.2083e-12,6.976e-12,1.198e-11,1.6285e-11,2.081e-11,2.2727e-11,3.1408e-11,3.203e-11,4.3536e-11,6.8441e-11,1.0153e-10,1.1983e-10,2.5183e-10,2.5945e-10,4.7037e-10,6.5773e-10,7.1783e-10,1.0427e-09,1.2882e-09,1.2928e-09,1.4449e-09,7.2551e-09,3.4167e-08,4.8868e-08,4.9406e-08,4.9465e-08,7.2764e-08,1.3566e-07,1.4854e-07,1.5791e-07,4.1238e-07,4.5947e-07,4.8685e-07,1.2407e-06,2.5808e-06,4.0154e-06,5.3653e-06,7.5823e-06,2.5989e-05,3.9449e-05,4.1453e-05,7.2175e-05,0.00013212,0.00017258,0.00017275,0.00025094,0.00030845,0.00035496,0.00042381,0.00049148,0.00060288,0.00065704,0.0008414,0.0012856,0.0015455,0.0020603,0.0035945,0.0037962,0.0046711,0.0052701,0.0074609,0.013283,0.015443,0.023123,0.031481,0.037052,0.048867,0.050665,0.052383,0.061841,0.067755,0.067886,0.073128,0.077312,0.084878,0.085536,0.085825,0.087461,0.09208,0.10017,0.1046,0.12699,0.12703,0.15862,0.15907,0.16654,0.1715,0.17475,0.18565,0.19748,0.23835,0.24462,0.2655,0.36847,0.40343,0.41552,0.49324,0.50285,0.51358,0.59671,0.60863,0.64401,0.65831,0.66322,0.67266,0.73294,0.79201,0.79785,0.81273,0.8382,0.90641,0.90906,0.91322,0.98556,1,0.99743,0.9948,0.98283,0.97458,0.97004,0.94989,0.89917,0.86584,0.85855,0.85095,0.84979,0.83243,0.66436,0.63271,0.62572,0.60898,0.56217,0.53932,0.47096,0.46246,0.45088,0.4454,0.42822,0.40227,0.39051,0.3812,0.35041,0.33955,0.30754,0.29945,0.27518,0.26933,0.26077,0.26035,0.25413,0.23698,0.20371,0.20309,0.17802,0.16562,0.15535,0.10761,0.095132,0.093964,0.068134,0.063074,0.062542,0.052525,0.052292,0.045028,0.036622,0.027345,0.026044,0.023152,0.018218,0.01639,0.014891,0.01342,0.0098139,0.0083109,0.008297,0.0076063,0.0066622,0.0065224,0.0054134,0.0050306,0.0047091,0.0039292,0.0037419,0.0033963,0.0030534,0.0024906,0.002074,0.0010752,0.00099673,0.00091611,0.00079051,0.00064851,0.00063308,0.00046987,0.00046193,0.00042293,0.0003795,0.00032587,4.6936e-05,4.0433e-05,3.7697e-05,3.315e-05,3.1561e-05,2.718e-05,1.5648e-05,1.4508e-05,1.2695e-05,1.0892e-05,9.8415e-06,6.0965e-06,5.856e-06,3.7679e-06,2.2416e-06,1.424e-06,1.3693e-06,8.2096e-07,5.1907e-07,5.0496e-07,4.125e-07,2.7041e-07,2.6786e-07,2.6226e-07,1.5532e-07,1.4772e-07,1.0871e-07,9.3395e-08,6.6272e-08,6.033e-08,3.8245e-08,3.522e-08,2.1893e-08,1.9259e-08 1,1.3306e-14,1.5805e-14,1.7385e-14,2.4121e-14,3.6477e-14,3.6829e-14,4.1078e-14,6.3669e-14,1.5807e-13,1.8689e-13,1.9969e-13,2.0016e-13,2.5928e-13,4.0885e-13,4.3389e-13,5.9102e-13,1.5108e-12,3.6995e-12,4.1618e-12,7.1859e-12,9.7993e-12,1.2553e-11,1.3722e-11,1.9026e-11,1.9407e-11,2.6463e-11,4.1797e-11,6.2263e-11,7.3613e-11,1.5594e-10,1.6071e-10,2.9325e-10,4.1156e-10,4.496e-10,6.558e-10,8.121e-10,8.1504e-10,9.1208e-10,4.6653e-09,2.2381e-08,3.2153e-08,3.2512e-08,3.2551e-08,4.8113e-08,9.041e-08,9.9109e-08,1.0544e-07,2.7882e-07,3.1111e-07,3.299e-07,8.514e-07,1.7893e-06,2.8014e-06,3.7589e-06,5.3392e-06,1.8646e-05,2.849e-05,2.996e-05,5.2635e-05,9.7328e-05,0.00012772,0.00012785,0.00018692,0.0002306,0.00026604,0.00031866,0.00037055,0.00045625,0.00049804,0.00064077,0.00098711,0.001191,0.0015969,0.0028186,0.0029803,0.0036837,0.0041672,0.0059458,0.010731,0.012522,0.018943,0.026004,0.030743,0.040868,0.042416,0.043898,0.052083,0.057223,0.057337,0.061908,0.065565,0.072196,0.072774,0.073028,0.074466,0.07853,0.085668,0.089586,0.10949,0.10953,0.13788,0.13828,0.14502,0.14951,0.15246,0.16235,0.17311,0.21056,0.21633,0.23563,0.33211,0.36534,0.37688,0.45178,0.46112,0.47157,0.55335,0.5652,0.60057,0.61495,0.6199,0.62943,0.69088,0.75222,0.75836,0.77406,0.80118,0.87579,0.87877,0.88347,0.97108,0.99743,1,0.99954,0.99348,0.98802,0.98481,0.96949,0.92701,0.89751,0.89094,0.88406,0.883,0.86714,0.70705,0.67591,0.66899,0.65238,0.60558,0.58255,0.51296,0.50423,0.49232,0.48667,0.46893,0.44201,0.42975,0.42004,0.38775,0.37632,0.34245,0.33387,0.30798,0.30172,0.29255,0.2921,0.28542,0.26696,0.23092,0.23023,0.20287,0.18925,0.17794,0.12488,0.11086,0.10954,0.080246,0.074463,0.073854,0.062351,0.062083,0.053692,0.043926,0.033061,0.031528,0.028114,0.022259,0.02008,0.018287,0.016522,0.012174,0.010349,0.010333,0.0094914,0.0083384,0.0081675,0.0068071,0.0063359,0.0059397,0.0049754,0.0047433,0.0043141,0.0038873,0.0031843,0.0026617,0.001398,0.0012979,0.0011948,0.0010339,0.00085137,0.00083149,0.00062054,0.00061024,0.00055962,0.00050314,0.00043322,6.4479e-05,5.5679e-05,5.1969e-05,4.5793e-05,4.3633e-05,3.7664e-05,2.1869e-05,2.0299e-05,1.7798e-05,1.5306e-05,1.3851e-05,8.6411e-06,8.3051e-06,5.3779e-06,3.2231e-06,2.0605e-06,1.9824e-06,1.1969e-06,7.6144e-07,7.4101e-07,6.0696e-07,4.001e-07,3.9637e-07,3.882e-07,2.3147e-07,2.2028e-07,1.6275e-07,1.4008e-07,9.983e-08,9.0986e-08,5.8004e-08,5.347e-08,3.343e-08,2.9454e-08 1,1.0432e-14,1.24e-14,1.3644e-14,1.8954e-14,2.871e-14,2.8988e-14,3.2346e-14,5.022e-14,1.2512e-13,1.4803e-13,1.5822e-13,1.5859e-13,2.0565e-13,3.2487e-13,3.4485e-13,4.7031e-13,1.2069e-12,2.9663e-12,3.3386e-12,5.7778e-12,7.8895e-12,1.0117e-11,1.1063e-11,1.5362e-11,1.5671e-11,2.1397e-11,3.3863e-11,5.0534e-11,5.979e-11,1.2708e-10,1.3099e-10,2.3967e-10,3.369e-10,3.6818e-10,5.3798e-10,6.6687e-10,6.693e-10,7.4938e-10,3.8633e-09,1.868e-08,2.6885e-08,2.7187e-08,2.722e-08,4.0315e-08,7.601e-08,8.3364e-08,8.8723e-08,2.3585e-07,2.6332e-07,2.7932e-07,7.2473e-07,1.5297e-06,2.4014e-06,3.2279e-06,4.5947e-06,1.6173e-05,2.4781e-05,2.6069e-05,4.5974e-05,8.5374e-05,0.00011225,0.00011236,0.00016473,0.00020354,0.00023507,0.00028196,0.00032824,0.00040481,0.00044219,0.00057004,0.00088121,0.0010649,0.0014313,0.0025388,0.0026857,0.0033259,0.0037667,0.0053922,0.0097884,0.01144,0.017382,0.023944,0.028361,0.037828,0.039279,0.040668,0.048353,0.053187,0.053295,0.0576,0.061048,0.067308,0.067853,0.068094,0.069452,0.073295,0.080052,0.083764,0.10267,0.1027,0.12972,0.13011,0.13655,0.14085,0.14367,0.15314,0.16346,0.19947,0.20503,0.22367,0.31731,0.34976,0.36106,0.4346,0.44381,0.45411,0.53511,0.5469,0.58216,0.59652,0.60148,0.61102,0.67276,0.73484,0.74107,0.75707,0.78478,0.8618,0.8649,0.86981,0.96351,0.9948,0.99954,1,0.99648,0.99224,0.9896,0.9764,0.9376,0.90986,0.90362,0.89708,0.89607,0.88092,0.72483,0.69401,0.68715,0.67065,0.624,0.60097,0.53104,0.52224,0.51022,0.50451,0.48657,0.45929,0.44686,0.43698,0.40412,0.39246,0.35786,0.34907,0.32253,0.3161,0.30668,0.30622,0.29935,0.28034,0.24313,0.24243,0.21408,0.19995,0.18819,0.13281,0.11809,0.11671,0.085874,0.079765,0.079122,0.066946,0.066662,0.057759,0.04737,0.035774,0.034134,0.030478,0.024194,0.02185,0.019919,0.018016,0.013317,0.01134,0.011322,0.010409,0.0091561,0.0089701,0.0074893,0.0069757,0.0065435,0.0054904,0.0052365,0.0047669,0.0042994,0.0035282,0.0029539,0.00156,0.0014492,0.0013351,0.0011567,0.00095395,0.00093185,0.00069707,0.00068559,0.00062915,0.00056613,0.00048801,7.3651e-05,6.3663e-05,5.9449e-05,5.243e-05,4.9973e-05,4.318e-05,2.5162e-05,2.3367e-05,2.0506e-05,1.7652e-05,1.5984e-05,1.0002e-05,9.6154e-06,6.2431e-06,3.7535e-06,2.4059e-06,2.3153e-06,1.402e-06,8.9427e-07,8.7042e-07,7.1377e-07,4.7161e-07,4.6724e-07,4.5766e-07,2.7367e-07,2.6051e-07,1.9279e-07,1.6608e-07,1.1857e-07,1.0812e-07,6.9091e-08,6.3718e-08,3.9935e-08,3.5208e-08 1,5.2974e-15,6.3081e-15,6.9483e-15,9.6857e-15,1.4736e-14,1.488e-14,1.6623e-14,2.593e-14,6.5247e-14,7.7336e-14,8.2718e-14,8.2916e-14,1.0782e-13,1.7119e-13,1.8184e-13,2.4886e-13,6.454e-13,1.6027e-12,1.8063e-12,3.146e-12,4.3114e-12,5.5451e-12,6.07e-12,8.4614e-12,8.6334e-12,1.1832e-11,1.883e-11,2.8236e-11,3.3477e-11,7.182e-11,7.4054e-11,1.3653e-10,1.9275e-10,2.1089e-10,3.0964e-10,3.8489e-10,3.8631e-10,4.3316e-10,2.282e-09,1.1276e-08,1.6314e-08,1.6499e-08,1.6519e-08,2.4605e-08,4.682e-08,5.142e-08,5.4775e-08,1.4775e-07,1.6524e-07,1.7544e-07,4.6199e-07,9.8685e-07,1.5607e-06,2.1082e-06,3.0188e-06,1.0861e-05,1.6771e-05,1.7659e-05,3.1471e-05,5.9137e-05,7.8169e-05,7.825e-05,0.0001156,0.00014345,0.00016616,0.00020005,0.00023363,0.0002894,0.00031672,0.00041054,0.00064076,0.00077761,0.0010523,0.0018922,0.0020044,0.0024953,0.0028348,0.0040956,0.0075543,0.0088675,0.013636,0.018966,0.022584,0.030403,0.031608,0.032763,0.039182,0.043241,0.043331,0.046959,0.049872,0.055179,0.055642,0.055846,0.057001,0.060274,0.066046,0.069226,0.085515,0.085549,0.10908,0.10942,0.11507,0.11884,0.12133,0.12968,0.13882,0.17093,0.17593,0.19272,0.2784,0.30857,0.31913,0.38856,0.39733,0.40718,0.48541,0.49692,0.53157,0.54577,0.55068,0.56015,0.62207,0.68552,0.69196,0.70857,0.73759,0.8203,0.82372,0.82912,0.93837,0.98283,0.99348,0.99648,1,0.99917,0.99817,0.99099,0.96291,0.94037,0.93515,0.92962,0.92876,0.91575,0.77264,0.74305,0.73642,0.7204,0.67467,0.65183,0.58162,0.5727,0.56047,0.55465,0.5363,0.50824,0.49539,0.48516,0.45092,0.4387,0.40224,0.39293,0.36469,0.35783,0.34773,0.34724,0.33987,0.3194,0.27904,0.27827,0.24723,0.23166,0.21865,0.15667,0.13999,0.13842,0.10308,0.096013,0.095267,0.081103,0.080772,0.070343,0.058087,0.044279,0.042314,0.037919,0.030319,0.027467,0.02511,0.02278,0.016986,0.014531,0.014508,0.013369,0.011802,0.011569,0.0097065,0.009058,0.0085112,0.0071744,0.0068511,0.0062518,0.0056536,0.0046627,0.0039209,0.0021027,0.0019567,0.001806,0.0015698,0.0013004,0.0012709,0.00095688,0.00094146,0.00086558,0.00078067,0.00067512,0.00010588,9.1779e-05,8.5816e-05,7.5864e-05,7.2374e-05,6.2708e-05,3.6909e-05,3.4322e-05,3.0191e-05,2.606e-05,2.3639e-05,1.4915e-05,1.4349e-05,9.3863e-06,5.6921e-06,3.6757e-06,3.5395e-06,2.161e-06,1.3883e-06,1.3519e-06,1.1121e-06,7.3958e-07,7.3284e-07,7.1804e-07,4.3278e-07,4.1229e-07,3.0651e-07,2.6463e-07,1.8989e-07,1.7339e-07,1.1153e-07,1.0298e-07,6.4982e-08,5.7394e-08 1,3.8006e-15,4.5297e-15,4.9919e-15,6.9703e-15,1.0627e-14,1.0732e-14,1.1996e-14,1.8755e-14,4.7419e-14,5.6256e-14,6.0192e-14,6.0336e-14,7.8569e-14,1.2505e-13,1.3287e-13,1.8215e-13,4.7484e-13,1.185e-12,1.3365e-12,2.3349e-12,3.2056e-12,4.1287e-12,4.5219e-12,6.3154e-12,6.4445e-12,8.8482e-12,1.4119e-11,2.1222e-11,2.5187e-11,5.4279e-11,5.5978e-11,1.0358e-10,1.4654e-10,1.6042e-10,2.361e-10,2.9387e-10,2.9496e-10,3.3097e-10,1.7622e-09,8.8e-09,1.2763e-08,1.2909e-08,1.2925e-08,1.9304e-08,3.6898e-08,4.0549e-08,4.3214e-08,1.174e-07,1.314e-07,1.3957e-07,3.7021e-07,7.954e-07,1.2625e-06,1.7094e-06,2.4548e-06,8.927e-06,1.3836e-05,1.4575e-05,2.6108e-05,4.9342e-05,6.5391e-05,6.546e-05,9.7064e-05,0.0001207,0.00014001,0.00016887,0.00019752,0.0002452,0.00026859,0.00034908,0.0005474,0.00066569,0.00090386,0.001636,0.0017342,0.0021644,0.0024626,0.0035738,0.0066432,0.0078145,0.012088,0.016891,0.020165,0.027268,0.028366,0.029419,0.035283,0.039,0.039083,0.042411,0.045087,0.049969,0.050396,0.050585,0.051648,0.054666,0.059996,0.062938,0.078044,0.078075,0.10001,0.10033,0.10561,0.10914,0.11147,0.1193,0.12789,0.15817,0.16289,0.1788,0.26058,0.28959,0.29977,0.36703,0.37557,0.38516,0.46176,0.47309,0.50728,0.52134,0.5262,0.5356,0.5973,0.66106,0.66757,0.68437,0.71385,0.79881,0.80235,0.80797,0.92403,0.97458,0.98802,0.99224,0.99917,1,0.99981,0.99562,0.97297,0.95314,0.94845,0.94345,0.94267,0.9308,0.79498,0.76617,0.75969,0.74401,0.69898,0.67638,0.60639,0.59744,0.58517,0.57932,0.56085,0.53253,0.51953,0.50916,0.47438,0.46193,0.42469,0.41515,0.38616,0.37909,0.3687,0.36819,0.36059,0.33945,0.29761,0.29681,0.26448,0.24821,0.2346,0.16935,0.15168,0.15001,0.11236,0.1048,0.104,0.088806,0.088449,0.077221,0.06398,0.048993,0.046853,0.042061,0.03375,0.030621,0.028031,0.025467,0.019071,0.016351,0.016325,0.015061,0.013319,0.013059,0.010983,0.010259,0.0096472,0.0081502,0.0077876,0.0071148,0.0064422,0.0053261,0.0044883,0.002425,0.0022585,0.0020865,0.0018165,0.0015079,0.0014742,0.0011134,0.0010956,0.0010083,0.00091037,0.00078852,0.000126,0.00010936,0.00010232,9.0562e-05,8.6435e-05,7.4991e-05,4.4353e-05,4.1271e-05,3.6346e-05,3.1414e-05,2.852e-05,1.8067e-05,1.7387e-05,1.1415e-05,6.9518e-06,4.5054e-06,4.3398e-06,2.6602e-06,1.715e-06,1.6704e-06,1.3762e-06,9.181e-07,9.0979e-07,8.9157e-07,5.3944e-07,5.1409e-07,3.8304e-07,3.3107e-07,2.3814e-07,2.176e-07,1.4042e-07,1.2973e-07,8.2129e-08,7.2603e-08 1,3.2359e-15,3.8582e-15,4.2529e-15,5.9432e-15,9.0707e-15,9.1602e-15,1.0242e-14,1.6031e-14,4.0625e-14,4.8216e-14,5.1598e-14,5.1723e-14,6.7397e-14,1.074e-13,1.1413e-13,1.5659e-13,4.0921e-13,1.0237e-12,1.1549e-12,2.0208e-12,2.7767e-12,3.5787e-12,3.9205e-12,5.4804e-12,5.5928e-12,7.6855e-12,1.228e-11,1.8479e-11,2.1941e-11,4.7388e-11,4.8876e-11,9.0603e-11,1.2831e-10,1.405e-10,2.0701e-10,2.5783e-10,2.5879e-10,2.9049e-10,1.5545e-09,7.8026e-09,1.133e-08,1.146e-08,1.1474e-08,1.716e-08,3.2871e-08,3.6136e-08,3.8519e-08,1.0501e-07,1.1758e-07,1.2491e-07,3.3248e-07,7.1634e-07,1.1389e-06,1.5439e-06,2.2203e-06,8.1157e-06,1.2601e-05,1.3277e-05,2.3842e-05,4.5185e-05,5.9957e-05,6.0021e-05,8.9158e-05,0.00011098,0.00012882,0.00015552,0.00018204,0.00022621,0.00024791,0.00032261,0.00050702,0.00061721,0.00083937,0.0015241,0.0016161,0.0020196,0.0022995,0.0033442,0.0062398,0.0073475,0.011397,0.015963,0.01908,0.025858,0.026907,0.027913,0.033522,0.037083,0.037162,0.040352,0.042919,0.047606,0.048015,0.048196,0.049218,0.052118,0.057244,0.060074,0.07463,0.07466,0.095848,0.096155,0.10127,0.10469,0.10694,0.11453,0.12285,0.15226,0.15686,0.17234,0.25224,0.28069,0.29068,0.35685,0.36528,0.37474,0.45049,0.46173,0.49567,0.50964,0.51448,0.52383,0.58535,0.64918,0.65571,0.67259,0.70225,0.78817,0.79177,0.79748,0.91663,0.97004,0.98481,0.9896,0.99817,0.99981,1,0.99727,0.97728,0.9588,0.95437,0.94964,0.9489,0.9376,0.80551,0.77713,0.77073,0.75523,0.71061,0.68814,0.61834,0.6094,0.59712,0.59126,0.57276,0.54435,0.53128,0.52086,0.48584,0.4733,0.4357,0.42606,0.39673,0.38957,0.37904,0.37852,0.37081,0.34937,0.30683,0.30602,0.27307,0.25647,0.24256,0.17573,0.15757,0.15585,0.11707,0.10926,0.10844,0.092726,0.092357,0.080729,0.066994,0.051414,0.049186,0.044193,0.03552,0.032251,0.029543,0.026859,0.020156,0.017299,0.017272,0.015943,0.01411,0.013837,0.011651,0.010887,0.010243,0.0086625,0.0082795,0.0075685,0.0068573,0.0056758,0.0047881,0.0025962,0.002419,0.0022357,0.001948,0.0016187,0.0015826,0.0011971,0.0011781,0.0010847,0.00097989,0.00084937,0.00013695,0.00011895,0.00011133,9.8586e-05,9.4112e-05,8.1704e-05,4.8438e-05,4.5086e-05,3.9727e-05,3.4358e-05,3.1206e-05,1.9808e-05,1.9065e-05,1.2539e-05,7.6516e-06,4.9675e-06,4.7856e-06,2.9391e-06,1.8981e-06,1.8488e-06,1.5243e-06,1.0185e-06,1.0093e-06,9.8916e-07,5.9961e-07,5.7153e-07,4.2629e-07,3.6865e-07,2.6549e-07,2.4266e-07,1.5684e-07,1.4494e-07,9.1902e-08,8.1277e-08 1,1.7633e-15,2.1058e-15,2.3233e-15,3.2565e-15,4.9895e-15,5.0392e-15,5.64e-15,8.8645e-15,2.2661e-14,2.6939e-14,2.8847e-14,2.8917e-14,3.7775e-14,6.0463e-14,6.4293e-14,8.8474e-14,2.3338e-13,5.8916e-13,6.6547e-13,1.1709e-12,1.6141e-12,2.0857e-12,2.287e-12,3.208e-12,3.2745e-12,4.5145e-12,7.2483e-12,1.0954e-11,1.303e-11,2.8374e-11,2.9274e-11,5.4631e-11,7.7659e-11,8.5121e-11,1.2596e-10,1.5726e-10,1.5786e-10,1.7742e-10,9.6772e-10,4.9512e-09,7.2224e-09,7.3063e-09,7.3155e-09,1.0995e-08,2.1232e-08,2.3369e-08,2.493e-08,6.8845e-08,7.72e-08,8.2081e-08,2.2134e-07,4.8195e-07,7.7128e-07,1.0501e-06,1.518e-06,5.6567e-06,8.8427e-06,9.3247e-06,1.6901e-05,3.2365e-05,4.3149e-05,4.3195e-05,6.4596e-05,8.0708e-05,9.3929e-05,0.00011377,0.00013354,0.0001666,0.00018288,0.00023914,0.00037903,0.00046314,0.00063362,0.0011644,0.0012362,0.001552,0.0017719,0.0025978,0.0049158,0.0058107,0.0091095,0.012867,0.015452,0.021112,0.021992,0.022838,0.027568,0.030585,0.030652,0.033363,0.035549,0.039553,0.039904,0.040058,0.040934,0.04342,0.047828,0.050268,0.062881,0.062907,0.081434,0.081705,0.086201,0.089214,0.0912,0.09791,0.10529,0.13154,0.13567,0.14961,0.22248,0.24878,0.25805,0.32002,0.32797,0.33692,0.40919,0.42,0.45283,0.46641,0.47112,0.48024,0.54072,0.60437,0.61095,0.62798,0.65809,0.7469,0.75068,0.75668,0.88634,0.94989,0.96949,0.9764,0.99099,0.99562,0.99727,1,0.99019,0.97692,0.97353,0.96984,0.96926,0.9602,0.84337,0.81681,0.81078,0.7961,0.75336,0.73159,0.66305,0.65417,0.64195,0.63611,0.6176,0.58901,0.5758,0.56524,0.52956,0.51671,0.47799,0.46801,0.43752,0.43005,0.41903,0.4185,0.41042,0.38788,0.34285,0.34198,0.30681,0.28897,0.27398,0.20118,0.18116,0.17926,0.13609,0.12732,0.12639,0.10866,0.10825,0.095045,0.079352,0.061401,0.058819,0.053018,0.042885,0.039045,0.035855,0.032683,0.024717,0.021299,0.021267,0.019672,0.017464,0.017135,0.014489,0.013563,0.012779,0.010851,0.010383,0.0095114,0.0086376,0.0071809,0.0060813,0.0033422,0.0031187,0.0028873,0.002523,0.0021046,0.0020587,0.0015661,0.0015418,0.0014218,0.0012871,0.0011188,0.0001866,0.00016247,0.00015223,0.0001351,0.00012907,0.00011232,6.7178e-05,6.2604e-05,5.5278e-05,4.7921e-05,4.3593e-05,2.7873e-05,2.6844e-05,1.7772e-05,1.0928e-05,7.1409e-06,6.8833e-06,4.258e-06,2.7674e-06,2.6966e-06,2.2294e-06,1.4982e-06,1.4848e-06,1.4556e-06,8.8854e-07,8.4749e-07,6.3468e-07,5.4995e-07,3.9782e-07,3.6405e-07,2.3666e-07,2.1893e-07,1.3965e-07,1.237e-07 1,5.4882e-16,6.5741e-16,7.2653e-16,1.0243e-15,1.581e-15,1.597e-15,1.7909e-15,2.837e-15,7.373e-15,8.7917e-15,9.4259e-15,9.4492e-15,1.2403e-14,2.002e-14,2.1312e-14,2.9497e-14,7.9199e-14,2.034e-13,2.3027e-13,4.095e-13,5.6795e-13,7.3749e-13,8.1011e-13,1.1437e-12,1.1679e-12,1.6202e-12,2.6255e-12,4.0003e-12,4.7748e-12,1.056e-11,1.0902e-11,2.0605e-11,2.9502e-11,3.2398e-11,4.8332e-11,6.0624e-11,6.0857e-11,6.8566e-11,3.878e-10,2.0574e-09,3.0272e-09,3.0632e-09,3.0671e-09,4.6532e-09,9.1254e-09,1.0067e-08,1.0756e-08,3.0437e-08,3.4227e-08,3.6446e-08,1.0075e-07,2.2379e-07,3.6258e-07,4.9771e-07,7.2669e-07,2.8089e-06,4.4479e-06,4.6976e-06,8.6651e-06,1.6925e-05,2.2767e-05,2.2792e-05,3.4521e-05,4.3441e-05,5.0807e-05,6.1927e-05,7.3077e-05,9.1843e-05,0.00010113,0.00013346,0.00021496,0.00026454,0.00036605,0.00068814,0.00073224,0.00092744,0.0010644,0.0015846,0.0030797,0.0036668,0.0058654,0.0084196,0.0102,0.014154,0.014774,0.015372,0.018738,0.020902,0.02095,0.022907,0.024492,0.02741,0.027667,0.02778,0.028421,0.030247,0.0335,0.03531,0.044752,0.044771,0.058879,0.059087,0.06255,0.064878,0.066416,0.07163,0.077396,0.098167,0.10146,0.11267,0.1727,0.19491,0.2028,0.25636,0.26333,0.2712,0.33584,0.34566,0.37575,0.38831,0.39268,0.40117,0.45822,0.51979,0.52625,0.54306,0.5731,0.66435,0.66833,0.67468,0.81916,0.89917,0.92701,0.9376,0.96291,0.97297,0.97728,0.99019,1,0.99714,0.99585,0.99428,0.99402,0.9896,0.90642,0.88436,0.87926,0.8667,0.82911,0.80946,0.74566,0.7372,0.72549,0.71987,0.70192,0.67388,0.66079,0.65026,0.61431,0.60123,0.56134,0.55096,0.51894,0.51104,0.49934,0.49876,0.49015,0.46594,0.41691,0.41596,0.37698,0.35699,0.34006,0.25615,0.23254,0.23028,0.17837,0.16766,0.16652,0.14464,0.14412,0.12763,0.10778,0.084711,0.081356,0.073778,0.060403,0.055281,0.051002,0.046724,0.035859,0.031135,0.031091,0.028872,0.025785,0.025322,0.021588,0.020271,0.019154,0.016391,0.015715,0.014455,0.013185,0.011053,0.0094298,0.0053167,0.0049756,0.004621,0.0040602,0.0034117,0.0033402,0.0025686,0.0025302,0.0023407,0.0021271,0.0018589,0.00033061,0.00028921,0.00027158,0.00024197,0.00023152,0.00020241,0.0001231,0.00011497,0.00010192,8.8757e-05,8.0981e-05,5.2501e-05,5.0622e-05,3.3935e-05,2.117e-05,1.4006e-05,1.3515e-05,8.4757e-06,5.5754e-06,5.4366e-06,4.5185e-06,3.0696e-06,3.043e-06,2.9847e-06,1.8462e-06,1.7632e-06,1.3305e-06,1.1572e-06,8.4419e-07,7.7431e-07,5.0895e-07,4.7175e-07,3.0435e-07,2.7041e-07 1,2.9012e-16,3.4809e-16,3.8503e-16,5.4454e-16,8.4381e-16,8.5244e-16,9.5695e-16,1.5224e-15,3.9918e-15,4.7678e-15,5.1151e-15,5.1279e-15,6.7479e-15,1.0942e-14,1.1655e-14,1.6181e-14,4.3863e-14,1.137e-13,1.2888e-13,2.3051e-13,3.2076e-13,4.1761e-13,4.5916e-13,6.5055e-13,6.6443e-13,9.2486e-13,1.5062e-12,2.3049e-12,2.7563e-12,6.1474e-12,6.3486e-12,1.2081e-11,1.7365e-11,1.9089e-11,2.8602e-11,3.5965e-11,3.6105e-11,4.0732e-11,2.3492e-10,1.271e-09,1.8788e-09,1.9014e-09,1.9038e-09,2.903e-09,5.7407e-09,6.3404e-09,6.7801e-09,1.9441e-08,2.1895e-08,2.3334e-08,6.5367e-08,1.4678e-07,2.3939e-07,3.3007e-07,4.8451e-07,1.9101e-06,3.0457e-06,3.2194e-06,5.995e-06,1.1835e-05,1.5997e-05,1.6015e-05,2.4424e-05,3.0854e-05,3.6181e-05,4.4249e-05,5.2366e-05,6.6076e-05,7.2885e-05,9.6657e-05,0.00015704,0.000194,0.00027009,0.00051401,0.00054763,0.00069691,0.00080207,0.001204,0.0023738,0.0028375,0.0045884,0.0066439,0.0080871,0.011316,0.011825,0.012316,0.015092,0.016885,0.016925,0.018551,0.019872,0.022309,0.022524,0.022619,0.023156,0.024688,0.027423,0.028949,0.03695,0.036967,0.049031,0.04921,0.052188,0.054195,0.055522,0.060029,0.065028,0.083154,0.086048,0.09591,0.14943,0.16948,0.17664,0.22561,0.23203,0.2393,0.29944,0.30866,0.33702,0.34891,0.35306,0.36112,0.41567,0.47531,0.48161,0.49805,0.52759,0.61862,0.62264,0.62906,0.77867,0.86584,0.89751,0.90986,0.94037,0.95314,0.9588,0.97692,0.99714,1,0.99988,0.99951,0.99943,0.99763,0.93467,0.91556,0.91107,0.89993,0.86595,0.84787,0.78793,0.77986,0.76865,0.76324,0.74594,0.7187,0.7059,0.69557,0.66009,0.64708,0.60718,0.59672,0.56433,0.55629,0.54437,0.54379,0.53499,0.51018,0.4595,0.45851,0.41783,0.39683,0.37897,0.28941,0.26388,0.26143,0.2047,0.19289,0.19163,0.16737,0.1668,0.14839,0.12609,0.099942,0.096115,0.087448,0.072062,0.066137,0.061171,0.056192,0.043468,0.037897,0.037845,0.035219,0.031553,0.031002,0.026548,0.024971,0.023631,0.020306,0.019491,0.017967,0.016428,0.013833,0.011849,0.0067733,0.0063485,0.0059062,0.0052049,0.0043908,0.0043009,0.0033266,0.003278,0.0030376,0.0027661,0.0024244,0.00044638,0.00039146,0.00036803,0.00032861,0.00031468,0.0002758,0.00016924,0.00015827,0.0001406,0.00012274,0.00011216,7.3263e-05,7.0684e-05,4.7705e-05,2.9992e-05,1.9976e-05,1.9287e-05,1.2185e-05,8.0676e-06,7.8699e-06,6.5594e-06,4.4822e-06,4.444e-06,4.3601e-06,2.7163e-06,2.5959e-06,1.967e-06,1.7143e-06,1.2562e-06,1.1537e-06,7.6281e-07,7.0781e-07,4.5944e-07,4.0887e-07 1,2.5436e-16,3.0529e-16,3.3775e-16,4.7797e-16,7.4127e-16,7.4887e-16,8.4086e-16,1.3388e-15,3.517e-15,4.2021e-15,4.5088e-15,4.5201e-15,5.9513e-15,9.6592e-15,1.029e-14,1.4295e-14,3.8827e-14,1.0084e-13,1.1432e-13,2.0472e-13,2.8506e-13,3.7134e-13,4.0837e-13,5.79e-13,5.9138e-13,8.2374e-13,1.3429e-12,2.0569e-12,2.4606e-12,5.4974e-12,5.6777e-12,1.0819e-11,1.5564e-11,1.7113e-11,2.5664e-11,3.2288e-11,3.2413e-11,3.6577e-11,2.118e-10,1.1505e-09,1.7023e-09,1.7229e-09,1.7251e-09,2.6332e-09,5.2161e-09,5.7625e-09,6.1631e-09,1.772e-08,1.9963e-08,2.1278e-08,5.9772e-08,1.3451e-07,2.1969e-07,3.0317e-07,4.4552e-07,1.7635e-06,2.816e-06,2.9771e-06,5.5545e-06,1.0989e-05,1.4869e-05,1.4886e-05,2.2733e-05,2.8741e-05,3.3722e-05,4.1271e-05,4.8869e-05,6.1715e-05,6.8097e-05,9.04e-05,0.00014713,0.00018191,0.00025357,0.00048379,0.00051556,0.00065675,0.00075628,0.0011372,0.0022488,0.0026901,0.0043598,0.0063242,0.0077054,0.0108,0.011289,0.01176,0.014426,0.01615,0.016189,0.017753,0.019024,0.021371,0.021578,0.02167,0.022187,0.023663,0.026301,0.027773,0.0355,0.035516,0.04719,0.047363,0.050249,0.052193,0.053479,0.05785,0.062701,0.080313,0.083127,0.092726,0.14495,0.16457,0.17158,0.21961,0.22592,0.23307,0.29227,0.30136,0.32934,0.34109,0.34519,0.35316,0.40716,0.46633,0.47259,0.48893,0.51833,0.60919,0.61322,0.61964,0.77007,0.85855,0.89094,0.90362,0.93515,0.94845,0.95437,0.97353,0.99585,0.99988,1,0.99987,0.99983,0.99858,0.93991,0.92144,0.91709,0.90626,0.8731,0.85537,0.79633,0.78835,0.77726,0.77192,0.75478,0.72774,0.71503,0.70476,0.66942,0.65645,0.6166,0.60614,0.57371,0.56566,0.55371,0.55313,0.5443,0.51939,0.46844,0.46744,0.42644,0.40525,0.38721,0.29654,0.27062,0.26814,0.21042,0.19838,0.1971,0.17234,0.17175,0.15294,0.13013,0.10332,0.09939,0.090489,0.074667,0.068568,0.063452,0.058319,0.045187,0.039429,0.039375,0.036659,0.032865,0.032294,0.027679,0.026045,0.024655,0.021204,0.020357,0.018774,0.017174,0.014475,0.012408,0.0071134,0.0066693,0.0062069,0.0054732,0.0046209,0.0045267,0.0035055,0.0034545,0.0032023,0.0029173,0.0025584,0.00047441,0.00041626,0.00039144,0.00034966,0.0003349,0.00029367,0.00018054,0.00016887,0.00015009,0.00013109,0.00011983,7.8392e-05,7.5643e-05,5.1122e-05,3.2192e-05,2.1471e-05,2.0732e-05,1.3118e-05,8.697e-06,8.4845e-06,7.0758e-06,4.8409e-06,4.7997e-06,4.7094e-06,2.9383e-06,2.8083e-06,2.1298e-06,1.8569e-06,1.3621e-06,1.2512e-06,8.2829e-07,7.6873e-07,4.996e-07,4.4476e-07 1,2.2234e-16,2.6695e-16,2.9539e-16,4.183e-16,6.4927e-16,6.5594e-16,7.3667e-16,1.174e-15,3.0897e-15,3.6929e-15,3.963e-15,3.9729e-15,5.2336e-15,8.5025e-15,9.0587e-15,1.2593e-14,3.4272e-14,8.918e-14,1.0114e-13,1.8132e-13,2.5266e-13,3.2931e-13,3.6222e-13,5.1394e-13,5.2496e-13,7.3173e-13,1.1941e-12,1.8307e-12,2.1909e-12,4.9034e-12,5.0647e-12,9.6647e-12,1.3914e-11,1.5302e-11,2.297e-11,2.8914e-11,2.9026e-11,3.2764e-11,1.905e-10,1.0391e-09,1.5389e-09,1.5575e-09,1.5596e-09,2.3831e-09,4.7287e-09,5.2255e-09,5.5897e-09,1.6116e-08,1.8161e-08,1.9361e-08,5.454e-08,1.2301e-07,2.0119e-07,2.7791e-07,4.0884e-07,1.625e-06,2.5987e-06,2.7478e-06,5.137e-06,1.0186e-05,1.3796e-05,1.3811e-05,2.1123e-05,2.6727e-05,3.1376e-05,3.8427e-05,4.5529e-05,5.7545e-05,6.3519e-05,8.4409e-05,0.00013763,0.0001703,0.00023769,0.00045466,0.00048465,0.00061798,0.00071205,0.0010726,0.0021273,0.0025469,0.0041371,0.0060122,0.0073325,0.010296,0.010764,0.011216,0.013773,0.015429,0.015466,0.016969,0.018191,0.020449,0.020648,0.020736,0.021234,0.022655,0.025196,0.026615,0.034071,0.034086,0.04537,0.045538,0.048331,0.050213,0.051459,0.055693,0.060396,0.077493,0.080228,0.089562,0.14049,0.15967,0.16653,0.21361,0.2198,0.22681,0.28505,0.29401,0.32161,0.3332,0.33725,0.34512,0.39854,0.45723,0.46344,0.47968,0.50893,0.59957,0.6036,0.61002,0.7612,0.85095,0.88406,0.89708,0.92962,0.94345,0.94964,0.96984,0.99428,0.99951,0.99987,1,1,0.9993,0.94505,0.92726,0.92304,0.91255,0.88023,0.86288,0.8048,0.79693,0.78597,0.78068,0.76371,0.73691,0.72429,0.71408,0.67892,0.66599,0.62621,0.61576,0.58331,0.57525,0.56327,0.56268,0.55383,0.52884,0.47761,0.47661,0.43531,0.41393,0.39571,0.30393,0.27762,0.27509,0.21637,0.2041,0.20279,0.17752,0.17692,0.1577,0.13435,0.10686,0.10282,0.093678,0.077404,0.071123,0.065852,0.060559,0.047001,0.041047,0.040991,0.03818,0.034251,0.033661,0.028877,0.027181,0.025739,0.022156,0.021276,0.01963,0.017966,0.015157,0.013004,0.0074763,0.0070118,0.006528,0.0057599,0.004867,0.0047682,0.003697,0.0036435,0.0033787,0.0030793,0.0027021,0.00050471,0.00044309,0.00041677,0.00037246,0.00035679,0.00031303,0.0001928,0.00018039,0.0001604,0.00014016,0.00012817,8.3979e-05,8.1044e-05,5.485e-05,3.4596e-05,2.3106e-05,2.2314e-05,1.4141e-05,9.3879e-06,9.1593e-06,7.6431e-06,5.2354e-06,5.191e-06,5.0937e-06,3.1828e-06,3.0425e-06,2.3094e-06,2.0143e-06,1.4789e-06,1.3588e-06,9.007e-07,8.3613e-07,5.441e-07,4.8454e-07 1,2.1784e-16,2.6156e-16,2.8944e-16,4.0991e-16,6.3632e-16,6.4286e-16,7.2201e-16,1.1508e-15,3.0295e-15,3.6211e-15,3.886e-15,3.8958e-15,5.1324e-15,8.3393e-15,8.885e-15,1.2353e-14,3.3629e-14,8.7531e-14,9.927e-14,1.7801e-13,2.4807e-13,3.2335e-13,3.5568e-13,5.0472e-13,5.1554e-13,7.1868e-13,1.173e-12,1.7986e-12,2.1526e-12,4.8189e-12,4.9775e-12,9.5004e-12,1.368e-11,1.5045e-11,2.2586e-11,2.8433e-11,2.8544e-11,3.2221e-11,1.8746e-10,1.0231e-09,1.5155e-09,1.5338e-09,1.5358e-09,2.3472e-09,4.6588e-09,5.1483e-09,5.5073e-09,1.5885e-08,1.7902e-08,1.9085e-08,5.3785e-08,1.2135e-07,1.9852e-07,2.7425e-07,4.0354e-07,1.605e-06,2.5671e-06,2.7145e-06,5.0763e-06,1.0069e-05,1.3639e-05,1.3655e-05,2.0888e-05,2.6433e-05,3.1034e-05,3.8012e-05,4.5041e-05,5.6936e-05,6.285e-05,8.3533e-05,0.00013624,0.0001686,0.00023537,0.00045039,0.00048011,0.00061228,0.00070555,0.001063,0.0021094,0.0025258,0.0041042,0.005966,0.0072774,0.010221,0.010686,0.011135,0.013677,0.015322,0.015359,0.016852,0.018067,0.020312,0.02051,0.020597,0.021092,0.022505,0.025032,0.026443,0.033858,0.033873,0.045099,0.045266,0.048045,0.049918,0.051158,0.055372,0.060052,0.077072,0.079795,0.08909,0.13982,0.15893,0.16577,0.2127,0.21888,0.22587,0.28397,0.29291,0.32044,0.33202,0.33605,0.34391,0.39724,0.45585,0.46206,0.47829,0.50751,0.59811,0.60214,0.60856,0.75984,0.84979,0.883,0.89607,0.92876,0.94267,0.9489,0.96926,0.99402,0.99943,0.99983,1,1,0.99938,0.94581,0.92812,0.92393,0.91349,0.8813,0.864,0.80607,0.79822,0.78728,0.782,0.76506,0.7383,0.72569,0.71549,0.68035,0.66744,0.62767,0.61722,0.58477,0.57671,0.56473,0.56414,0.55528,0.53028,0.47901,0.47801,0.43666,0.41525,0.39701,0.30506,0.27869,0.27616,0.21728,0.20497,0.20366,0.17832,0.17771,0.15843,0.135,0.1074,0.10335,0.09417,0.077827,0.071518,0.066222,0.060905,0.047281,0.041297,0.041241,0.038415,0.034466,0.033872,0.029062,0.027358,0.025907,0.022303,0.021418,0.019763,0.018089,0.015263,0.013096,0.0075328,0.0070652,0.006578,0.0058046,0.0049054,0.0048059,0.0037269,0.003673,0.0034063,0.0031046,0.0027246,0.00050947,0.0004473,0.00042075,0.00037604,0.00036023,0.00031607,0.00019473,0.0001822,0.00016202,0.00014159,0.00012949,8.4859e-05,8.1895e-05,5.5438e-05,3.4975e-05,2.3364e-05,2.2564e-05,1.4303e-05,9.4972e-06,9.2661e-06,7.7329e-06,5.2979e-06,5.253e-06,5.1546e-06,3.2215e-06,3.0796e-06,2.3378e-06,2.0393e-06,1.4975e-06,1.376e-06,9.1221e-07,8.4684e-07,5.5118e-07,4.9087e-07 1,1.616e-16,1.9417e-16,2.1496e-16,3.0487e-16,4.7414e-16,4.7903e-16,5.3827e-16,8.5962e-16,2.2723e-15,2.7182e-15,2.9179e-15,2.9253e-15,3.8585e-15,6.2825e-15,6.6955e-15,9.3222e-15,2.5491e-14,6.6635e-14,7.5615e-14,1.3595e-13,1.8975e-13,2.4763e-13,2.7251e-13,3.8733e-13,3.9567e-13,5.5244e-13,9.0377e-13,1.3886e-12,1.6633e-12,3.7381e-12,3.8617e-12,7.3941e-12,1.0666e-11,1.1736e-11,1.7654e-11,2.225e-11,2.2337e-11,2.523e-11,1.4812e-10,8.1581e-10,1.211e-09,1.2258e-09,1.2274e-09,1.8802e-09,3.7462e-09,4.1422e-09,4.4328e-09,1.2864e-08,1.4508e-08,1.5472e-08,4.3874e-08,9.9487e-08,1.6325e-07,2.2599e-07,3.3336e-07,1.338e-06,2.1471e-06,2.2712e-06,4.2659e-06,8.5037e-06,1.1545e-05,1.1558e-05,1.7737e-05,2.2485e-05,2.6431e-05,3.2425e-05,3.8473e-05,4.8723e-05,5.3826e-05,7.1703e-05,0.00011742,0.00014556,0.00020379,0.00039218,0.0004183,0.00053463,0.00061688,0.000933,0.0018638,0.0022357,0.0036512,0.0053289,0.0065145,0.0091848,0.0096081,0.010017,0.012333,0.013835,0.013869,0.015235,0.016347,0.018405,0.018587,0.018667,0.019121,0.020419,0.022742,0.024041,0.030884,0.030898,0.041301,0.041455,0.044038,0.04578,0.046933,0.050857,0.055222,0.071141,0.073694,0.082422,0.13033,0.1485,0.155,0.19984,0.20576,0.21247,0.26842,0.27706,0.30373,0.31496,0.31888,0.32652,0.37851,0.43596,0.44207,0.45804,0.48688,0.57685,0.58086,0.58728,0.73988,0.83243,0.86714,0.88092,0.91575,0.9308,0.9376,0.9602,0.9896,0.99763,0.99858,0.9993,0.99938,1,0.95637,0.94021,0.93634,0.92666,0.89643,0.88001,0.82436,0.81674,0.80613,0.80099,0.78448,0.75829,0.74591,0.73588,0.7012,0.68841,0.6489,0.63848,0.60605,0.59797,0.58595,0.58536,0.57648,0.55132,0.49954,0.49852,0.45656,0.43476,0.41615,0.32181,0.29459,0.29197,0.23088,0.21805,0.21669,0.19021,0.18958,0.16937,0.14473,0.11559,0.11131,0.10157,0.084199,0.077474,0.071821,0.066137,0.051532,0.045096,0.045035,0.041991,0.03773,0.037088,0.031887,0.03004,0.028467,0.024555,0.023593,0.021791,0.019968,0.016883,0.014513,0.0084013,0.0078854,0.0073475,0.0064925,0.0054968,0.0053865,0.0041885,0.0041285,0.0038317,0.0034958,0.003072,0.00058372,0.00051309,0.00048289,0.00043201,0.00041401,0.00036367,0.000225,0.00021064,0.00018749,0.00016403,0.00015012,9.8726e-05,9.5304e-05,6.4717e-05,4.0977e-05,2.7459e-05,2.6525e-05,1.6871e-05,1.1237e-05,1.0965e-05,9.1627e-06,6.2945e-06,6.2416e-06,6.1255e-06,3.841e-06,3.6729e-06,2.7936e-06,2.4392e-06,1.7948e-06,1.6501e-06,1.097e-06,1.0189e-06,6.6505e-07,5.9273e-07 1,1.21e-17,1.4634e-17,1.6258e-17,2.3345e-17,3.6879e-17,3.7273e-17,4.2056e-17,6.8297e-17,1.8699e-16,2.2514e-16,2.4231e-16,2.4294e-16,3.2371e-16,5.3662e-16,5.7324e-16,8.0798e-16,2.2942e-15,6.2204e-15,7.0931e-15,1.3045e-14,1.8445e-14,2.4324e-14,2.6868e-14,3.8722e-14,3.9589e-14,5.601e-14,9.3449e-14,1.4608e-13,1.7627e-13,4.0947e-13,4.2357e-13,8.3317e-13,1.2204e-12,1.3482e-12,2.0635e-12,2.6264e-12,2.6371e-12,2.9942e-12,1.8988e-11,1.1297e-10,1.708e-10,1.7298e-10,1.7322e-10,2.7071e-10,5.5734e-10,6.1924e-10,6.6484e-10,2.0325e-09,2.3059e-09,2.4671e-09,7.3742e-09,1.7448e-08,2.9392e-08,4.1406e-08,6.238e-08,2.7066e-07,4.4637e-07,4.7374e-07,9.2372e-07,1.9204e-06,2.6572e-06,2.6604e-06,4.1948e-06,5.3994e-06,6.4139e-06,7.9742e-06,9.5688e-06,1.231e-05,1.3691e-05,1.8597e-05,3.1511e-05,3.9663e-05,5.6883e-05,0.0001149,0.00012315,0.00016037,0.0001871,0.00029236,0.00061814,0.00075305,0.0012836,0.0019388,0.0024149,0.0035187,0.0036972,0.0038701,0.0048647,0.0055213,0.0055362,0.0061404,0.006637,0.0075661,0.0076487,0.0076852,0.0078924,0.0084872,0.0095635,0.010171,0.013435,0.013442,0.018581,0.018659,0.019965,0.020851,0.021441,0.023461,0.025735,0.034236,0.035629,0.040442,0.068203,0.079247,0.083268,0.11182,0.1157,0.12012,0.15814,0.16419,0.18317,0.19129,0.19415,0.19973,0.23871,0.28374,0.28865,0.3016,0.32539,0.40329,0.4069,0.4127,0.56116,0.66436,0.70705,0.72483,0.77264,0.79498,0.80551,0.84337,0.90642,0.93467,0.93991,0.94505,0.94581,0.95637,1,0.99863,0.99795,0.99581,0.98584,0.97882,0.94922,0.94461,0.93799,0.93471,0.92384,0.90566,0.89669,0.88927,0.86252,0.85226,0.81931,0.81032,0.78156,0.77421,0.76316,0.76261,0.75433,0.73046,0.67926,0.67823,0.6347,0.61138,0.59109,0.48258,0.44942,0.44619,0.36824,0.35123,0.34941,0.31347,0.3126,0.28439,0.24902,0.20561,0.19906,0.18401,0.1565,0.14561,0.13633,0.12689,0.10201,0.090723,0.090615,0.085198,0.077522,0.076357,0.066799,0.063358,0.060405,0.052963,0.051111,0.047617,0.044044,0.037906,0.0331,0.020232,0.019106,0.017923,0.016024,0.013779,0.013528,0.010764,0.010623,0.009926,0.0091302,0.0081154,0.0017678,0.0015694,0.001484,0.0013389,0.0012872,0.0011418,0.00073197,0.00068856,0.00061807,0.00054596,0.00050283,0.00034057,0.00032957,0.00022983,0.00015006,0.00010324,9.9956e-05,6.5455e-05,4.4728e-05,4.3714e-05,3.694e-05,2.5969e-05,2.5764e-05,2.5314e-05,1.6327e-05,1.5654e-05,1.2102e-05,1.0651e-05,7.9792e-06,7.3717e-06,5.017e-06,4.6794e-06,3.1287e-06,2.8065e-06 1,7.6057e-18,9.2086e-18,1.0237e-17,1.4731e-17,2.3335e-17,2.3586e-17,2.6633e-17,4.3377e-17,1.195e-16,1.4404e-16,1.551e-16,1.555e-16,2.0757e-16,3.4518e-16,3.6888e-16,5.2107e-16,1.4893e-15,4.0642e-15,4.6383e-15,8.5645e-15,1.2137e-14,1.6035e-14,1.7724e-14,2.5605e-14,2.6183e-14,3.7129e-14,6.2162e-14,9.7468e-14,1.1776e-13,2.7515e-13,2.8469e-13,5.6265e-13,8.2638e-13,9.1358e-13,1.4025e-12,1.7882e-12,1.7955e-12,2.0405e-12,1.3116e-11,7.9105e-11,1.1998e-10,1.2152e-10,1.2169e-10,1.9085e-10,3.952e-10,4.3946e-10,4.7209e-10,1.4565e-09,1.6541e-09,1.7708e-09,5.3421e-09,1.2735e-08,2.1552e-08,3.0454e-08,4.605e-08,2.0255e-07,3.3567e-07,3.5646e-07,6.9961e-07,1.4652e-06,2.0342e-06,2.0367e-06,3.2267e-06,4.1644e-06,4.9559e-06,6.1761e-06,7.4258e-06,9.5797e-06,1.0667e-05,1.4538e-05,2.4783e-05,3.1277e-05,4.5047e-05,9.1766e-05,9.8439e-05,0.00012862,0.00015035,0.00023628,0.00050457,0.00061636,0.0010585,0.0016085,0.0020101,0.0029459,0.0030977,0.0032449,0.0040937,0.0046557,0.0046685,0.0051868,0.0056134,0.0064133,0.0064845,0.006516,0.0066946,0.007208,0.0081386,0.0086648,0.011502,0.011508,0.016002,0.01607,0.017216,0.017995,0.018514,0.020293,0.022299,0.029834,0.031072,0.035362,0.060314,0.070322,0.073976,0.10005,0.10361,0.10767,0.14279,0.14841,0.16607,0.17365,0.17631,0.18154,0.21813,0.26071,0.26537,0.27769,0.30038,0.37525,0.37874,0.38435,0.52967,0.63271,0.67591,0.69401,0.74305,0.76617,0.77713,0.81681,0.88436,0.91556,0.92144,0.92726,0.92812,0.94021,0.99863,1,0.99993,0.99923,0.99324,0.98814,0.96411,0.96016,0.95444,0.95159,0.94203,0.92578,0.91766,0.9109,0.88626,0.87671,0.84573,0.83721,0.80976,0.80271,0.79208,0.79155,0.78356,0.76042,0.71035,0.70934,0.66633,0.64315,0.6229,0.51342,0.47959,0.47628,0.39603,0.3784,0.3765,0.33908,0.33817,0.30863,0.27141,0.2254,0.21843,0.20238,0.1729,0.16118,0.15117,0.14096,0.11395,0.10163,0.10151,0.095585,0.087165,0.085885,0.075365,0.071567,0.068304,0.060062,0.058006,0.054123,0.050143,0.04329,0.037905,0.023392,0.022114,0.02077,0.018607,0.016044,0.015757,0.012588,0.012426,0.011624,0.010708,0.0095367,0.0021279,0.0018924,0.0017908,0.0016181,0.0015566,0.0013831,0.00089219,0.00083998,0.00075511,0.00066814,0.00061603,0.00041941,0.00040605,0.00028448,0.00018675,0.00012908,0.00012502,8.2288e-05,5.6485e-05,5.5219e-05,4.6753e-05,3.3002e-05,3.2745e-05,3.2179e-05,2.0858e-05,2.0008e-05,1.5511e-05,1.3671e-05,1.0274e-05,9.4999e-06,6.4921e-06,6.0597e-06,4.0688e-06,3.6538e-06 1,6.8644e-18,8.313e-18,9.2429e-18,1.3307e-17,2.1092e-17,2.1319e-17,2.4076e-17,3.9239e-17,1.0824e-16,1.3051e-16,1.4054e-16,1.4091e-16,1.8816e-16,3.1312e-16,3.3465e-16,4.7294e-16,1.3537e-15,3.6994e-15,4.2228e-15,7.8041e-15,1.1065e-14,1.4624e-14,1.6167e-14,2.3369e-14,2.3897e-14,3.3905e-14,5.6807e-14,8.9131e-14,1.0772e-13,2.5201e-13,2.6076e-13,5.1589e-13,7.5815e-13,8.3828e-13,1.2878e-12,1.6425e-12,1.6493e-12,1.8747e-12,1.2086e-11,7.3111e-11,1.1097e-10,1.124e-10,1.1255e-10,1.7666e-10,3.6627e-10,4.0737e-10,4.3767e-10,1.353e-09,1.537e-09,1.6455e-09,4.9744e-09,1.1878e-08,2.0122e-08,2.8452e-08,4.3059e-08,1.8997e-07,3.1515e-07,3.347e-07,6.5787e-07,1.38e-06,1.9173e-06,1.9197e-06,3.0445e-06,3.9316e-06,4.6808e-06,5.8362e-06,7.0202e-06,9.062e-06,1.0093e-05,1.3767e-05,2.3498e-05,2.9673e-05,4.2777e-05,8.7304e-05,9.3671e-05,0.00012248,0.00014323,0.00022538,0.00048235,0.00058956,0.0010142,0.0015432,0.0019299,0.0028319,0.0029783,0.0031204,0.0039397,0.0044826,0.0044949,0.0049958,0.0054083,0.0061819,0.0062508,0.0062812,0.006454,0.0069509,0.0078518,0.0083614,0.011111,0.011117,0.015478,0.015545,0.016658,0.017415,0.017919,0.019648,0.021599,0.028933,0.030139,0.03432,0.058682,0.068472,0.072048,0.0976,0.10109,0.10507,0.13957,0.14509,0.16246,0.16992,0.17255,0.17769,0.21377,0.25581,0.26041,0.27259,0.29503,0.3692,0.37267,0.37824,0.52279,0.62572,0.66899,0.68715,0.73642,0.75969,0.77073,0.81078,0.87926,0.91107,0.91709,0.92304,0.92393,0.93634,0.99795,0.99993,1,0.99962,0.99451,0.98984,0.96706,0.96327,0.95775,0.95499,0.94573,0.92992,0.922,0.91539,0.89124,0.88186,0.85135,0.84293,0.8158,0.80882,0.79829,0.79777,0.78985,0.76689,0.71712,0.71611,0.67325,0.65012,0.62989,0.52028,0.48631,0.483,0.40227,0.38451,0.3826,0.34486,0.34394,0.31412,0.2765,0.22993,0.22286,0.20658,0.17667,0.16476,0.15459,0.14421,0.11671,0.10416,0.10404,0.097999,0.089411,0.088104,0.077364,0.073485,0.07015,0.061725,0.059622,0.055649,0.051576,0.044558,0.039039,0.024142,0.022828,0.021446,0.019222,0.016584,0.016288,0.013024,0.012858,0.012031,0.011086,0.0098778,0.0022157,0.0019712,0.0018657,0.0016864,0.0016224,0.0014422,0.00093157,0.00087722,0.00078884,0.00069824,0.00064395,0.00043892,0.00042497,0.00029805,0.00019589,0.00013553,0.00013128,8.6507e-05,5.944e-05,5.8111e-05,4.9223e-05,3.4777e-05,3.4506e-05,3.3911e-05,2.2004e-05,2.111e-05,1.6376e-05,1.4438e-05,1.0858e-05,1.0042e-05,6.8684e-06,6.412e-06,4.3093e-06,3.8708e-06 1,5.3679e-18,6.5046e-18,7.2345e-18,1.0427e-17,1.6551e-17,1.673e-17,1.8901e-17,3.0853e-17,8.5385e-17,1.0301e-16,1.1096e-16,1.1125e-16,1.4869e-16,2.4785e-16,2.6496e-16,3.7487e-16,1.0768e-15,2.9525e-15,3.3717e-15,6.2443e-15,8.864e-15,1.1727e-14,1.2968e-14,1.8769e-14,1.9194e-14,2.7267e-14,4.5768e-14,7.1925e-14,8.6982e-14,2.0412e-13,2.1124e-13,4.1895e-13,6.1657e-13,6.8199e-13,1.0493e-12,1.3396e-12,1.3452e-12,1.5297e-12,9.933e-12,6.0516e-11,9.2009e-11,9.3198e-11,9.3327e-11,1.4675e-10,3.0519e-10,3.3958e-10,3.6495e-10,1.1336e-09,1.2885e-09,1.3799e-09,4.1919e-09,1.0049e-08,1.7064e-08,2.4168e-08,3.6647e-08,1.6285e-07,2.7084e-07,2.8774e-07,5.6751e-07,1.1951e-06,1.6634e-06,1.6654e-06,2.6479e-06,3.4242e-06,4.0807e-06,5.0942e-06,6.1341e-06,7.9297e-06,8.8372e-06,1.2076e-05,2.0677e-05,2.6147e-05,3.7779e-05,7.7449e-05,8.3134e-05,0.00010889,0.00012747,0.00020118,0.00043283,0.0005298,0.00091499,0.0013966,0.0017497,0.0025753,0.0027095,0.0028398,0.0035924,0.0040919,0.0041032,0.0045645,0.0049447,0.0056585,0.0057221,0.0057502,0.0059098,0.0063689,0.0072021,0.0076739,0.010224,0.010229,0.014286,0.014348,0.015386,0.016092,0.016562,0.018177,0.020001,0.026872,0.028004,0.031933,0.054926,0.064205,0.0676,0.09192,0.095249,0.099054,0.13207,0.13737,0.15407,0.16125,0.16378,0.16874,0.20357,0.24431,0.24878,0.26062,0.28247,0.35495,0.35835,0.36381,0.50641,0.60898,0.65238,0.67065,0.7204,0.74401,0.75523,0.7961,0.8667,0.89993,0.90626,0.91255,0.91349,0.92666,0.99581,0.99923,0.99962,1,0.99702,0.99338,0.97362,0.9702,0.96518,0.96266,0.95413,0.93941,0.93197,0.92573,0.90279,0.89382,0.86446,0.85633,0.82999,0.82319,0.81292,0.81241,0.80467,0.78218,0.73317,0.73217,0.68974,0.66674,0.6466,0.53676,0.50252,0.49917,0.41739,0.39933,0.39738,0.3589,0.35797,0.32748,0.28891,0.24098,0.23369,0.21688,0.18592,0.17357,0.16301,0.15221,0.12354,0.11042,0.1103,0.10397,0.094969,0.093598,0.082321,0.078242,0.074733,0.065857,0.063639,0.059446,0.055143,0.047718,0.041868,0.026022,0.02462,0.023144,0.020766,0.017942,0.017625,0.014123,0.013944,0.013056,0.012039,0.010738,0.0024393,0.0021722,0.0020568,0.0018606,0.0017906,0.0015931,0.0010324,0.00097262,0.00087531,0.00077547,0.00071559,0.00048908,0.00047365,0.00033301,0.00021949,0.00015223,0.00014749,9.7447e-05,6.7115e-05,6.5625e-05,5.5645e-05,3.9398e-05,3.9093e-05,3.8423e-05,2.4997e-05,2.3987e-05,1.8636e-05,1.6442e-05,1.2386e-05,1.146e-05,7.8555e-06,7.3364e-06,4.9416e-06,4.4414e-06 1,2.686e-18,3.2603e-18,3.6295e-18,5.2479e-18,8.364e-18,8.4551e-18,9.5627e-18,1.5677e-17,4.3782e-17,5.291e-17,5.7028e-17,5.718e-17,7.6627e-17,1.2832e-16,1.3726e-16,1.9482e-16,5.6507e-16,1.5641e-15,1.7885e-15,3.3317e-15,4.7453e-15,6.2948e-15,6.9681e-15,1.0121e-14,1.0353e-14,1.4757e-14,2.4896e-14,3.9301e-14,4.7618e-14,1.1271e-13,1.1668e-13,2.3303e-13,3.4431e-13,3.8123e-13,5.8921e-13,7.5413e-13,7.5728e-13,8.6235e-13,5.7123e-12,3.5504e-11,5.4238e-11,5.4946e-11,5.5024e-11,8.6969e-11,1.8241e-10,2.0322e-10,2.1858e-10,6.8818e-10,7.834e-10,8.3968e-10,2.5858e-09,6.2671e-09,1.0715e-08,1.5245e-08,2.3243e-08,1.0539e-07,1.7652e-07,1.8769e-07,3.7379e-07,7.9578e-07,1.113e-06,1.1144e-06,1.7843e-06,2.3165e-06,2.7681e-06,3.4677e-06,4.1877e-06,5.4357e-06,6.0682e-06,8.3338e-06,1.4397e-05,1.8277e-05,2.6573e-05,5.5163e-05,5.9287e-05,7.803e-05,9.1607e-05,0.00014581,0.00031834,0.00039122,0.00068318,0.0010521,0.0013244,0.0019661,0.0020709,0.0021728,0.0027634,0.0031571,0.0031661,0.0035308,0.0038322,0.0043995,0.0044501,0.0044725,0.0045997,0.004966,0.0056326,0.006011,0.0080663,0.0080707,0.01137,0.011421,0.012269,0.012848,0.013234,0.014561,0.016064,0.021763,0.022707,0.025991,0.045458,0.053408,0.056327,0.077404,0.080309,0.083634,0.11271,0.11741,0.13228,0.1387,0.14096,0.14541,0.17681,0.21394,0.21804,0.2289,0.24905,0.31663,0.31982,0.32496,0.46136,0.56217,0.60558,0.624,0.67467,0.69898,0.71061,0.75336,0.82911,0.86595,0.8731,0.88023,0.8813,0.89643,0.98584,0.99324,0.99451,0.99702,1,0.99928,0.98822,0.98588,0.98231,0.98048,0.97409,0.96256,0.95655,0.95143,0.93212,0.92439,0.8986,0.89133,0.8675,0.86128,0.85184,0.85137,0.84421,0.82327,0.77689,0.77593,0.73506,0.71267,0.69292,0.58335,0.54858,0.54516,0.46092,0.4421,0.44007,0.39971,0.39872,0.36648,0.32536,0.27373,0.26582,0.24753,0.21361,0.19999,0.1883,0.17631,0.14427,0.12949,0.12935,0.12219,0.11198,0.11042,0.097552,0.092881,0.088854,0.078634,0.076072,0.071218,0.066223,0.05757,0.050717,0.03197,0.030295,0.028528,0.025675,0.022273,0.02189,0.017645,0.017428,0.016345,0.015104,0.013513,0.00318,0.002839,0.0026915,0.00244,0.0023502,0.0020962,0.0013711,0.0012932,0.0011664,0.0010359,0.0009575,0.00065943,0.00063902,0.00045238,0.00030055,0.00020988,0.00020346,0.00013544,9.3907e-05,9.1858e-05,7.8114e-05,5.5638e-05,5.5215e-05,5.4285e-05,3.5575e-05,3.4161e-05,2.6652e-05,2.3564e-05,1.7832e-05,1.652e-05,1.1393e-05,1.0652e-05,7.2197e-06,6.4997e-06 1,1.9071e-18,2.3167e-18,2.5802e-18,3.7366e-18,5.9672e-18,6.0325e-18,6.8263e-18,1.1215e-17,3.146e-17,3.8051e-17,4.1026e-17,4.1136e-17,5.5197e-17,9.2646e-17,9.9129e-17,1.4092e-16,4.1069e-16,1.1421e-15,1.3067e-15,2.4413e-15,3.4829e-15,4.6263e-15,5.1235e-15,7.455e-15,7.6264e-15,1.0889e-14,1.8417e-14,2.9137e-14,3.5336e-14,8.3988e-14,8.6962e-14,1.7428e-13,2.58e-13,2.8582e-13,4.4272e-13,5.6734e-13,5.6972e-13,6.492e-13,4.3427e-12,2.7258e-11,4.1738e-11,4.2287e-11,4.2346e-11,6.7102e-11,1.4132e-10,1.5755e-10,1.6953e-10,5.3729e-10,6.1209e-10,6.5633e-10,2.0348e-09,4.9583e-09,8.5059e-09,1.2128e-08,1.8541e-08,8.4906e-08,1.4271e-07,1.5181e-07,3.0377e-07,6.5018e-07,9.1157e-07,9.1272e-07,1.4664e-06,1.9075e-06,2.2824e-06,2.8641e-06,3.4637e-06,4.505e-06,5.0335e-06,6.9299e-06,1.2023e-05,1.5294e-05,2.2304e-05,4.6587e-05,5.0101e-05,6.6097e-05,7.7707e-05,0.0001242,0.00027312,0.00033631,0.00059051,0.00091336,0.0011525,0.001718,0.0018107,0.0019008,0.0024238,0.0027732,0.0027812,0.0031054,0.0033735,0.0038791,0.0039243,0.0039443,0.0040577,0.0043847,0.0049807,0.0053194,0.0071636,0.0071675,0.010141,0.010187,0.010954,0.011477,0.011826,0.013028,0.014391,0.019577,0.020438,0.023439,0.04133,0.04868,0.051384,0.070978,0.073687,0.076791,0.10403,0.10845,0.12246,0.12852,0.13066,0.13485,0.16462,0.19998,0.2039,0.21429,0.23359,0.29869,0.30177,0.30675,0.43974,0.53932,0.58255,0.60097,0.65183,0.67638,0.68814,0.73159,0.80946,0.84787,0.85537,0.86288,0.864,0.88001,0.97882,0.98814,0.98984,0.99338,0.99928,1,0.9933,0.9915,0.98868,0.98719,0.9819,0.97201,0.96674,0.96221,0.94481,0.93775,0.91387,0.90707,0.88461,0.87872,0.86974,0.86929,0.86247,0.8424,0.79757,0.79664,0.75675,0.73478,0.71533,0.60639,0.57149,0.56805,0.48289,0.46375,0.46169,0.42051,0.4195,0.38647,0.34418,0.29079,0.28258,0.26356,0.22819,0.21394,0.20169,0.18911,0.15536,0.13973,0.13958,0.132,0.12116,0.1195,0.10581,0.10083,0.096532,0.085606,0.082864,0.077662,0.072301,0.062995,0.055608,0.035296,0.033472,0.031548,0.028435,0.024716,0.024297,0.019642,0.019404,0.018214,0.016849,0.015095,0.0036147,0.0032312,0.0030651,0.0027817,0.0026804,0.0023938,0.0015727,0.0014844,0.0013402,0.0011918,0.0011024,0.00076209,0.00073874,0.00052474,0.00034999,0.00024522,0.00023779,0.00015889,0.00011052,0.00010813,9.2083e-05,6.5781e-05,6.5285e-05,6.4194e-05,4.222e-05,4.0556e-05,3.1707e-05,2.8061e-05,2.1284e-05,1.973e-05,1.3648e-05,1.2767e-05,8.6796e-06,7.8204e-06 1,6.6476e-19,8.0956e-19,9.0291e-19,1.3138e-18,2.1109e-18,2.1343e-18,2.4191e-18,4.0001e-18,1.1375e-17,1.3793e-17,1.4887e-17,1.4927e-17,2.0108e-17,3.3986e-17,3.6398e-17,5.1988e-17,1.5375e-16,4.3368e-16,4.9712e-16,9.3694e-16,1.3434e-15,1.7917e-15,1.9872e-15,2.907e-15,2.9749e-15,4.2695e-15,7.2762e-15,1.1589e-14,1.4094e-14,3.3934e-14,3.5153e-14,7.1189e-14,1.0602e-13,1.1763e-13,1.8343e-13,2.3597e-13,2.3697e-13,2.7058e-13,1.865e-12,1.2062e-11,1.8602e-11,1.885e-11,1.8877e-11,3.0146e-11,6.4303e-11,7.1818e-11,7.7379e-11,2.5024e-10,2.8574e-10,3.0677e-10,9.7069e-10,2.4048e-09,4.1676e-09,5.9829e-09,9.2217e-09,4.3524e-08,7.3939e-08,7.8752e-08,1.5989e-07,3.4784e-07,4.913e-07,4.9194e-07,7.987e-07,1.0451e-06,1.2556e-06,1.5838e-06,1.9238e-06,2.5175e-06,2.8202e-06,3.9121e-06,6.8782e-06,8.8007e-06,1.2955e-05,2.7573e-05,2.9709e-05,3.9481e-05,4.6615e-05,7.5453e-05,0.00016963,0.00021012,0.00037512,0.00058799,0.00074737,0.0011284,0.0011913,0.0012526,0.0016101,0.0018506,0.001856,0.0020802,0.0022662,0.0026185,0.00265,0.002664,0.0027433,0.0029725,0.0033918,0.0036309,0.0049429,0.0049458,0.0070894,0.0071224,0.0076802,0.0080616,0.0083164,0.0091967,0.010199,0.014048,0.014692,0.016946,0.030638,0.036362,0.038481,0.054001,0.056169,0.058658,0.080751,0.084375,0.095917,0.10094,0.10272,0.10621,0.1312,0.16134,0.16471,0.17367,0.19041,0.24776,0.25052,0.25496,0.37649,0.47096,0.51296,0.53104,0.58162,0.60639,0.61834,0.66305,0.74566,0.78793,0.79633,0.8048,0.80607,0.82436,0.94922,0.96411,0.96706,0.97362,0.98822,0.9933,1,0.99989,0.99939,0.999,0.99718,0.99254,0.98966,0.98702,0.97587,0.971,0.95353,0.94833,0.9306,0.92583,0.91848,0.91811,0.91245,0.89554,0.85647,0.85565,0.81964,0.7994,0.78126,0.67638,0.64172,0.63828,0.55167,0.53184,0.52969,0.48655,0.48548,0.45042,0.40494,0.34656,0.33749,0.31636,0.27664,0.26049,0.24652,0.2321,0.19301,0.17468,0.17451,0.16556,0.15271,0.15074,0.13437,0.12838,0.1232,0.10995,0.10661,0.10025,0.093675,0.082181,0.072986,0.047315,0.044977,0.042503,0.038484,0.033652,0.033106,0.027003,0.026689,0.025118,0.023309,0.020976,0.0052964,0.0047528,0.0045166,0.0041126,0.0039677,0.0035569,0.0023693,0.0022404,0.0020294,0.0018114,0.0016797,0.0011745,0.0011396,0.00081789,0.00055205,0.00039077,0.00037926,0.0002563,0.00018006,0.00017627,0.00015077,0.00010867,0.00010787,0.00010612,7.0561e-05,6.785e-05,5.3381e-05,4.739e-05,3.6196e-05,3.3617e-05,2.3466e-05,2.1987e-05,1.5088e-05,1.3629e-05 1,5.8076e-19,7.0748e-19,7.892e-19,1.1491e-18,1.8476e-18,1.8681e-18,2.1178e-18,3.5049e-18,9.9843e-18,1.211e-17,1.3072e-17,1.3108e-17,1.7666e-17,2.9885e-17,3.201e-17,4.5748e-17,1.3555e-16,3.8303e-16,4.3916e-16,8.2863e-16,1.1889e-15,1.5864e-15,1.7598e-15,2.5762e-15,2.6364e-15,3.7862e-15,6.4589e-15,1.0296e-14,1.2526e-14,3.0208e-14,3.1296e-14,6.3461e-14,9.4582e-14,1.0496e-13,1.6382e-13,2.1083e-13,2.1174e-13,2.4182e-13,1.6731e-12,1.0863e-11,1.6767e-11,1.6992e-11,1.7016e-11,2.7201e-11,5.8115e-11,6.4922e-11,6.996e-11,2.2683e-10,2.5908e-10,2.782e-10,8.8258e-10,2.1911e-09,3.8022e-09,5.4631e-09,8.4292e-09,3.9937e-08,6.7937e-08,7.2371e-08,1.472e-07,3.2092e-07,4.537e-07,4.5428e-07,7.3856e-07,9.6715e-07,1.1626e-06,1.4674e-06,1.7834e-06,2.3355e-06,2.6172e-06,3.634e-06,6.4001e-06,8.1951e-06,1.2078e-05,2.5768e-05,2.7771e-05,3.6939e-05,4.3638e-05,7.0748e-05,0.00015949,0.00019772,0.00035373,0.0005554,0.00070661,0.0010686,0.0011284,0.0011867,0.0015269,0.001756,0.0017612,0.0019749,0.0021523,0.0024883,0.0025184,0.0025318,0.0026075,0.0028263,0.0032268,0.0034553,0.0047104,0.0047131,0.0067671,0.0067988,0.0073338,0.0076998,0.0079444,0.0087895,0.0097524,0.013454,0.014074,0.016245,0.029464,0.035003,0.037054,0.052105,0.054209,0.056627,0.078114,0.081643,0.092891,0.09779,0.099524,0.10293,0.12734,0.15684,0.16014,0.16892,0.18534,0.2417,0.24441,0.24879,0.36876,0.46246,0.50423,0.52224,0.5727,0.59744,0.6094,0.65417,0.7372,0.77986,0.78835,0.79693,0.79822,0.81674,0.94461,0.96016,0.96327,0.9702,0.98588,0.9915,0.99989,1,0.9998,0.99955,0.99817,0.99423,0.99166,0.98927,0.97895,0.97438,0.95777,0.95279,0.93572,0.93111,0.92398,0.92362,0.91813,0.90167,0.86344,0.86263,0.82721,0.80724,0.78932,0.68518,0.65063,0.6472,0.56056,0.54067,0.53852,0.49518,0.49411,0.45885,0.41301,0.35405,0.34487,0.32349,0.28323,0.26684,0.25266,0.238,0.19822,0.17955,0.17937,0.17024,0.15712,0.15511,0.13839,0.13227,0.12696,0.1134,0.10998,0.10347,0.096721,0.084928,0.075484,0.049066,0.046656,0.044104,0.039956,0.034967,0.034402,0.028093,0.027767,0.026141,0.024269,0.021852,0.0055549,0.0049873,0.0047404,0.0043182,0.0041668,0.0037371,0.0024938,0.0023586,0.0021374,0.0019087,0.0017705,0.0012398,0.0012031,0.00086459,0.00058445,0.00041425,0.00040209,0.00027212,0.00019142,0.0001874,0.00016037,0.00011573,0.00011488,0.00011302,7.5255e-05,7.2373e-05,5.6985e-05,5.061e-05,3.8689e-05,3.5941e-05,2.5118e-05,2.3539e-05,1.6173e-05,1.4613e-05 1,4.8232e-19,5.8782e-19,6.5587e-19,9.5574e-19,1.5384e-18,1.5555e-18,1.7639e-18,2.9225e-18,8.3451e-18,1.0127e-17,1.0933e-17,1.0962e-17,1.4785e-17,2.5042e-17,2.6826e-17,3.8372e-17,1.1398e-16,3.2289e-16,3.7033e-16,6.9984e-16,1.005e-15,1.342e-15,1.489e-15,2.1818e-15,2.233e-15,3.2097e-15,5.4827e-15,8.75e-15,1.0651e-14,2.5743e-14,2.6672e-14,5.4184e-14,8.084e-14,8.9738e-14,1.4022e-13,1.8058e-13,1.8136e-13,2.072e-13,1.4411e-12,9.4054e-12,1.4536e-11,1.4731e-11,1.4752e-11,2.3613e-11,5.0563e-11,5.6504e-11,6.0902e-11,1.9816e-10,2.2643e-10,2.4319e-10,7.7427e-10,1.9277e-09,3.3512e-09,4.8207e-09,7.4488e-09,3.5479e-08,6.0465e-08,6.4426e-08,1.3137e-07,2.8722e-07,4.0659e-07,4.0712e-07,6.6309e-07,8.6922e-07,1.0456e-06,1.3209e-06,1.6066e-06,2.1063e-06,2.3614e-06,3.2832e-06,5.7955e-06,7.4287e-06,1.0967e-05,2.3473e-05,2.5306e-05,3.3703e-05,3.9845e-05,6.4742e-05,0.00014652,0.00018183,0.00032624,0.00051342,0.00065403,0.00099129,0.0010471,0.0011014,0.0014193,0.0016335,0.0016384,0.0018383,0.0020044,0.0023194,0.0023476,0.0023601,0.0024311,0.0026364,0.0030123,0.003227,0.0044074,0.00441,0.0063463,0.0063762,0.0068813,0.0072271,0.0074581,0.008257,0.0091678,0.012675,0.013264,0.015325,0.027917,0.033208,0.03517,0.049592,0.051612,0.053934,0.074608,0.078009,0.088863,0.093594,0.095269,0.098563,0.12219,0.15082,0.15402,0.16256,0.17854,0.23355,0.2362,0.24048,0.35829,0.45088,0.49232,0.51022,0.56047,0.58517,0.59712,0.64195,0.72549,0.76865,0.77726,0.78597,0.78728,0.80613,0.93799,0.95444,0.95775,0.96518,0.98231,0.98868,0.99939,0.9998,1,0.99995,0.99919,0.99619,0.99406,0.99201,0.98284,0.97868,0.96329,0.95861,0.94246,0.93807,0.93126,0.93092,0.92566,0.90983,0.87279,0.872,0.83742,0.81784,0.80022,0.69721,0.66282,0.6594,0.57278,0.55284,0.55067,0.50711,0.50603,0.47049,0.4242,0.36446,0.35514,0.33341,0.29243,0.27571,0.26123,0.24626,0.20553,0.18637,0.18619,0.17682,0.16333,0.16126,0.14404,0.13773,0.13227,0.11827,0.11474,0.108,0.10103,0.088815,0.079023,0.051556,0.049044,0.046382,0.042054,0.036841,0.036251,0.029649,0.029308,0.027604,0.025641,0.023105,0.0059282,0.005326,0.005064,0.0046156,0.0044548,0.003998,0.0026743,0.0025302,0.0022942,0.00205,0.0019024,0.0013348,0.0012955,0.0009327,0.00063181,0.00044862,0.00043551,0.00029532,0.0002081,0.00020376,0.0001745,0.00012612,0.0001252,0.00012318,8.2179e-05,7.9046e-05,6.2308e-05,5.5367e-05,4.2378e-05,3.9381e-05,2.7565e-05,2.584e-05,1.7783e-05,1.6075e-05 1,4.4136e-19,5.3801e-19,6.0037e-19,8.7521e-19,1.4095e-18,1.4252e-18,1.6163e-18,2.6794e-18,7.6597e-18,9.2969e-18,1.0038e-17,1.0065e-17,1.3579e-17,2.3013e-17,2.4655e-17,3.528e-17,1.0492e-16,2.9758e-16,3.4136e-16,6.4556e-16,9.2744e-16,1.2388e-15,1.3748e-15,2.0153e-15,2.0626e-15,2.966e-15,5.0697e-15,8.0955e-15,9.8565e-15,2.3848e-14,2.471e-14,5.0243e-14,7.4996e-14,8.3262e-14,1.3017e-13,1.677e-13,1.6842e-13,1.9245e-13,1.3418e-12,8.7795e-12,1.3576e-11,1.3759e-11,1.3779e-11,2.207e-11,4.7308e-11,5.2874e-11,5.6996e-11,1.8576e-10,2.123e-10,2.2804e-10,7.2728e-10,1.8132e-09,3.1548e-09,4.5408e-09,7.0211e-09,3.3526e-08,5.7188e-08,6.094e-08,1.2442e-07,2.7238e-07,3.8582e-07,3.8632e-07,6.2977e-07,8.2595e-07,9.9387e-07,1.2561e-06,1.5284e-06,2.0047e-06,2.248e-06,3.1275e-06,5.5268e-06,7.0877e-06,1.0472e-05,2.2448e-05,2.4205e-05,3.2256e-05,3.8148e-05,6.205e-05,0.00014068,0.00017467,0.00031384,0.00049446,0.00063025,0.00095627,0.0010102,0.0010628,0.0013704,0.0015779,0.0015826,0.0017763,0.0019373,0.0022425,0.0022699,0.002282,0.0023509,0.00255,0.0029147,0.003123,0.0042693,0.0042717,0.006154,0.0061831,0.0066745,0.0070109,0.0072357,0.0080133,0.0089001,0.012318,0.012892,0.014902,0.027203,0.03238,0.034301,0.04843,0.050411,0.052687,0.072981,0.076323,0.08699,0.091643,0.09329,0.096531,0.11979,0.148,0.15116,0.15958,0.17536,0.22972,0.23234,0.23658,0.35335,0.4454,0.48667,0.50451,0.55465,0.57932,0.59126,0.63611,0.71987,0.76324,0.77192,0.78068,0.782,0.80099,0.93471,0.95159,0.95499,0.96266,0.98048,0.98719,0.999,0.99955,0.99995,1,0.99953,0.99699,0.99506,0.99318,0.98457,0.9806,0.96579,0.96126,0.94556,0.94127,0.93462,0.93428,0.92914,0.91361,0.87715,0.87638,0.84221,0.82283,0.80536,0.70292,0.66862,0.66521,0.57862,0.55865,0.55648,0.51283,0.51174,0.47608,0.42958,0.36948,0.36009,0.3382,0.29688,0.28,0.26539,0.25026,0.20908,0.18969,0.1895,0.18002,0.16635,0.16426,0.1468,0.1404,0.13486,0.12065,0.11706,0.11022,0.10313,0.090719,0.080757,0.052781,0.050219,0.047504,0.043087,0.037765,0.037163,0.030416,0.030068,0.028327,0.026319,0.023725,0.0061142,0.0054948,0.0052253,0.0047639,0.0045984,0.0041283,0.0027646,0.002616,0.0023727,0.0021208,0.0019685,0.0013825,0.0013419,0.00096692,0.00065564,0.00046593,0.00045236,0.00030703,0.00021654,0.00021203,0.00018165,0.00013138,0.00013043,0.00012833,8.5691e-05,8.2431e-05,6.501e-05,5.7783e-05,4.4253e-05,4.113e-05,2.8811e-05,2.7012e-05,1.8603e-05,1.682e-05 1,3.3309e-19,4.063e-19,4.5356e-19,6.6203e-19,1.0679e-18,1.0798e-18,1.2251e-18,2.0344e-18,5.8368e-18,7.0891e-18,7.656e-18,7.677e-18,1.0368e-17,1.7603e-17,1.8864e-17,2.7027e-17,8.069e-17,2.2971e-16,2.6363e-16,4.9972e-16,7.1887e-16,9.6125e-16,1.0671e-15,1.5666e-15,1.6035e-15,2.3089e-15,3.9545e-15,6.3259e-15,7.7077e-15,1.8712e-14,1.9391e-14,3.9537e-14,5.9108e-14,6.565e-14,1.0282e-13,1.3259e-13,1.3316e-13,1.5225e-13,1.0699e-12,7.056e-12,1.0932e-11,1.1079e-11,1.1095e-11,1.7808e-11,3.8301e-11,4.2829e-11,4.6183e-11,1.5132e-10,1.7305e-10,1.8594e-10,5.9621e-10,1.4929e-09,2.6045e-09,3.7555e-09,5.8193e-09,2.8009e-08,4.7912e-08,5.1073e-08,1.0467e-07,2.3014e-07,3.2662e-07,3.2705e-07,5.3463e-07,7.0226e-07,8.4595e-07,1.0706e-06,1.3042e-06,1.7134e-06,1.9227e-06,2.6802e-06,4.753e-06,6.1048e-06,9.0416e-06,1.9479e-05,2.1014e-05,2.8058e-05,3.322e-05,5.4215e-05,0.00012364,0.00015375,0.00027746,0.00043867,0.00056022,0.00085287,0.0009014,0.00094873,0.0012259,0.0014132,0.0014174,0.0015925,0.0017381,0.0020145,0.0020394,0.0020503,0.0021128,0.0022933,0.0026244,0.0028138,0.0038575,0.0038597,0.0055796,0.0056063,0.0060562,0.0063645,0.0065706,0.007284,0.0080985,0.011246,0.011775,0.013632,0.025049,0.029876,0.031669,0.0449,0.04676,0.048899,0.06802,0.071178,0.081271,0.085679,0.087242,0.090315,0.11242,0.13936,0.14238,0.15044,0.16556,0.21789,0.22042,0.22451,0.33796,0.42822,0.46893,0.48657,0.5363,0.56085,0.57276,0.6176,0.70192,0.74594,0.75478,0.76371,0.76506,0.78448,0.92384,0.94203,0.94573,0.95413,0.97409,0.9819,0.99718,0.99817,0.99919,0.99953,1,0.99889,0.99763,0.99627,0.98943,0.98609,0.97316,0.9691,0.95483,0.95089,0.94474,0.94443,0.93965,0.92513,0.89057,0.88983,0.85703,0.83829,0.82134,0.72085,0.68689,0.6835,0.59714,0.57711,0.57494,0.53101,0.52992,0.49391,0.44678,0.38558,0.37599,0.3536,0.31122,0.29386,0.2788,0.2632,0.22059,0.20047,0.20027,0.19041,0.17618,0.174,0.15579,0.1491,0.1433,0.12842,0.12465,0.11747,0.11002,0.096956,0.086448,0.056815,0.054091,0.051202,0.046497,0.040819,0.040176,0.03296,0.032587,0.030721,0.028567,0.025781,0.0067377,0.0060613,0.0057668,0.0052622,0.005081,0.0045661,0.0030689,0.0029054,0.0026374,0.0023597,0.0021917,0.0015439,0.001499,0.001083,0.00073669,0.00052494,0.00050976,0.00034703,0.00024539,0.00024031,0.00020612,0.00014944,0.00014836,0.00014599,9.7762e-05,9.4069e-05,7.4312e-05,6.6105e-05,5.0719e-05,4.7163e-05,3.3117e-05,3.1062e-05,2.1446e-05,1.9403e-05 1,2.1539e-19,2.63e-19,2.9376e-19,4.2961e-19,6.947e-19,7.025e-19,7.9758e-19,1.3279e-18,3.831e-18,4.6577e-18,5.0323e-18,5.0461e-18,6.826e-18,1.1622e-17,1.2459e-17,1.7885e-17,5.3715e-17,1.538e-16,1.7665e-16,3.3604e-16,4.844e-16,6.488e-16,7.2069e-16,1.0603e-15,1.0854e-15,1.5662e-15,2.6908e-15,4.3161e-15,5.265e-15,1.2849e-14,1.3318e-14,2.727e-14,4.0868e-14,4.5419e-14,7.1327e-14,9.2126e-14,9.2526e-14,1.0587e-13,7.5314e-13,5.0277e-12,7.8118e-12,7.918e-12,7.9296e-12,1.2767e-11,2.7601e-11,3.0888e-11,3.3324e-11,1.1009e-10,1.2602e-10,1.3547e-10,4.3801e-10,1.1042e-09,1.9343e-09,2.7968e-09,4.3483e-09,2.1188e-08,3.64e-08,3.8822e-08,8.0035e-08,1.7714e-07,2.5216e-07,2.5249e-07,4.1452e-07,5.4581e-07,6.5857e-07,8.3525e-07,1.0193e-06,1.3424e-06,1.5079e-06,2.1085e-06,3.7594e-06,4.8403e-06,7.1961e-06,1.5622e-05,1.6866e-05,2.2586e-05,2.6788e-05,4.3944e-05,0.00010111,0.00012605,0.00022901,0.00036405,0.00046629,0.00071357,0.0007547,0.00079484,0.0010304,0.00119,0.0011936,0.0013431,0.0014676,0.0017044,0.0017256,0.0017351,0.0017886,0.0019436,0.0022283,0.0023913,0.0032928,0.0032948,0.0047882,0.0048114,0.0052035,0.0054724,0.0056523,0.0062756,0.0069886,0.0097537,0.01022,0.01186,0.022015,0.026338,0.027948,0.039881,0.041565,0.043503,0.06091,0.063796,0.073044,0.077092,0.078528,0.081355,0.10176,0.12676,0.12958,0.1371,0.15123,0.20045,0.20285,0.20671,0.31494,0.40227,0.44201,0.45929,0.50824,0.53253,0.54435,0.58901,0.67388,0.7187,0.72774,0.73691,0.7383,0.75829,0.90566,0.92578,0.92992,0.93941,0.96256,0.97201,0.99254,0.99423,0.99619,0.99699,0.99889,1,0.99976,0.99923,0.99514,0.9928,0.98282,0.97953,0.96754,0.96415,0.95881,0.95854,0.95435,0.94145,0.91,0.90932,0.87879,0.86114,0.84505,0.74805,0.71474,0.7114,0.62573,0.60568,0.6035,0.55932,0.55822,0.52178,0.4738,0.41105,0.40117,0.37805,0.33409,0.31601,0.30029,0.28395,0.23917,0.21791,0.2177,0.20725,0.19215,0.18982,0.17042,0.16328,0.15708,0.14113,0.13709,0.12937,0.12134,0.10723,0.095846,0.063535,0.060547,0.057374,0.052199,0.045937,0.045226,0.037238,0.036824,0.034752,0.032358,0.029255,0.0078121,0.0070389,0.0067018,0.0061235,0.0059157,0.0053244,0.0035987,0.0034096,0.0030992,0.0027771,0.0025819,0.0018273,0.0017748,0.0012877,0.00088015,0.00062978,0.00061179,0.0004184,0.00029706,0.00029099,0.00025002,0.00018193,0.00018063,0.00017778,0.00011958,0.00011511,9.1169e-05,8.1203e-05,6.2479e-05,5.8143e-05,4.0978e-05,3.8461e-05,2.6655e-05,2.414e-05 1,1.7592e-19,2.149e-19,2.4009e-19,3.5144e-19,5.6894e-19,5.7535e-19,6.5342e-19,1.0892e-18,3.1505e-18,3.8322e-18,4.1411e-18,4.1525e-18,5.6213e-18,9.5837e-18,1.0275e-17,1.4764e-17,4.4463e-17,1.2765e-16,1.4666e-16,2.7947e-16,4.0323e-16,5.4049e-16,6.0054e-16,8.8442e-16,9.0542e-16,1.3078e-15,2.25e-15,3.6137e-15,4.4104e-15,1.079e-14,1.1185e-14,2.2946e-14,3.4427e-14,3.8272e-14,6.0179e-14,7.7783e-14,7.8122e-14,8.9423e-14,6.3973e-13,4.2947e-12,6.6819e-12,6.773e-12,6.783e-12,1.0937e-11,2.3701e-11,2.6533e-11,2.8633e-11,9.4951e-11,1.0873e-10,1.1692e-10,3.7949e-10,9.5963e-10,1.6843e-09,2.4384e-09,3.7969e-09,1.8607e-08,3.203e-08,3.4169e-08,7.0636e-08,1.5682e-07,2.2354e-07,2.2384e-07,3.682e-07,4.8536e-07,5.8608e-07,7.4404e-07,9.0871e-07,1.1982e-06,1.3466e-06,1.8856e-06,3.3703e-06,4.3441e-06,6.4699e-06,1.4095e-05,1.5223e-05,2.0413e-05,2.4231e-05,3.9844e-05,9.2061e-05,0.00011489,0.0002094,0.0003337,0.000428,0.00065656,0.00069462,0.00073179,0.00095012,0.0010982,0.0011016,0.0012404,0.0013561,0.0015763,0.0015961,0.0016049,0.0016547,0.001799,0.0020643,0.0022163,0.003058,0.0030598,0.0044577,0.0044794,0.004847,0.0050992,0.005268,0.0058531,0.0065229,0.0091252,0.0095648,0.011111,0.020722,0.024828,0.026358,0.037724,0.039331,0.041181,0.057833,0.0606,0.069472,0.073361,0.07474,0.077457,0.097101,0.12124,0.12396,0.13123,0.14492,0.19272,0.19505,0.19881,0.30459,0.39051,0.42975,0.44686,0.49539,0.51953,0.53128,0.5758,0.66079,0.7059,0.71503,0.72429,0.72569,0.74591,0.89669,0.91766,0.922,0.93197,0.95655,0.96674,0.98966,0.99166,0.99406,0.99506,0.99763,0.99976,1,0.99985,0.99705,0.99517,0.98659,0.98365,0.97274,0.96962,0.96466,0.96441,0.9605,0.94838,0.91845,0.91779,0.88838,0.87126,0.85561,0.7604,0.72746,0.72415,0.63893,0.61891,0.61673,0.57249,0.57138,0.53479,0.48649,0.42308,0.41308,0.38964,0.34497,0.32657,0.31055,0.29388,0.2481,0.22631,0.2261,0.21537,0.19986,0.19747,0.17752,0.17016,0.16377,0.14732,0.14314,0.13517,0.12687,0.11226,0.10046,0.066858,0.063742,0.060431,0.055027,0.048481,0.047737,0.039372,0.038937,0.036764,0.034252,0.030993,0.0083593,0.0075375,0.0071789,0.0065635,0.0063423,0.0057124,0.003871,0.0036688,0.0033369,0.0029921,0.0027831,0.001974,0.0019176,0.001394,0.00095496,0.00068463,0.00066518,0.00045588,0.00032428,0.00031768,0.00027318,0.00019912,0.00019771,0.0001946,0.00013116,0.00012629,0.00010014,8.9244e-05,6.8756e-05,6.4007e-05,4.5189e-05,4.2426e-05,2.9455e-05,2.6688e-05 1,1.4952e-19,1.8272e-19,2.0418e-19,2.991e-19,4.8465e-19,4.9011e-19,5.5675e-19,9.2901e-19,2.6925e-18,3.2764e-18,3.5411e-18,3.5509e-18,4.8097e-18,8.2085e-18,8.8022e-18,1.2656e-17,3.82e-17,1.099e-16,1.2631e-16,2.41e-16,3.48e-16,4.6673e-16,5.1871e-16,7.6453e-16,7.8272e-16,1.1314e-15,1.9488e-15,3.1331e-15,3.8256e-15,9.3769e-15,9.7209e-15,1.9975e-14,2.9996e-14,3.3354e-14,5.2499e-14,6.7896e-14,6.8192e-14,7.808e-14,5.6111e-13,3.784e-12,5.8936e-12,5.9742e-12,5.983e-12,9.6584e-12,2.0971e-11,2.3483e-11,2.5346e-11,8.4307e-11,9.6578e-11,1.0387e-10,3.3817e-10,8.5727e-10,1.507e-09,2.1839e-09,3.4048e-09,1.6762e-08,2.89e-08,3.0836e-08,6.3885e-08,1.4218e-07,2.029e-07,2.0317e-07,3.3474e-07,4.4164e-07,5.3361e-07,6.7796e-07,8.2855e-07,1.0935e-06,1.2294e-06,1.7235e-06,3.0868e-06,3.9821e-06,5.9391e-06,1.2976e-05,1.4018e-05,1.8818e-05,2.2352e-05,3.6824e-05,8.5366e-05,0.00010663,0.00019483,0.00031111,0.00039947,0.00061397,0.00064973,0.00068466,0.00089,0.0010294,0.0010326,0.0011634,0.0012724,0.0014801,0.0014988,0.0015071,0.0015541,0.0016903,0.0019409,0.0020846,0.002881,0.0028827,0.0042079,0.0042286,0.0045774,0.0048169,0.0049772,0.0055332,0.0061701,0.0086479,0.0090669,0.010542,0.019735,0.023672,0.025141,0.036068,0.037614,0.039397,0.055461,0.058134,0.066714,0.070477,0.071812,0.074444,0.09349,0.11694,0.11959,0.12667,0.14001,0.18667,0.18895,0.19263,0.29645,0.3812,0.42004,0.43698,0.48516,0.50916,0.52086,0.56524,0.65026,0.69557,0.70476,0.71408,0.71549,0.73588,0.88927,0.9109,0.91539,0.92573,0.95143,0.96221,0.98702,0.98927,0.99201,0.99318,0.99627,0.99923,0.99985,1,0.99824,0.99673,0.98927,0.98663,0.9766,0.97369,0.96905,0.96881,0.96513,0.95365,0.92495,0.92432,0.89583,0.87916,0.86387,0.77019,0.73756,0.73428,0.64949,0.6295,0.62732,0.58306,0.58196,0.54527,0.49673,0.43282,0.42272,0.39904,0.35383,0.33517,0.31891,0.30199,0.25541,0.23319,0.23298,0.22204,0.2062,0.20376,0.18335,0.17582,0.16928,0.15242,0.14814,0.13996,0.13144,0.11642,0.10428,0.069621,0.0664,0.062976,0.057384,0.050604,0.049833,0.041155,0.040704,0.038448,0.035838,0.03245,0.0088224,0.0079596,0.007583,0.0069365,0.0067039,0.0060416,0.0041025,0.0038894,0.0035392,0.0031754,0.0029547,0.0020993,0.0020396,0.001485,0.0010191,0.00073176,0.00071106,0.00048816,0.00034776,0.00034072,0.00029318,0.00021398,0.00021247,0.00020914,0.0001412,0.00013597,0.00010792,9.6226e-05,7.4213e-05,6.9107e-05,4.8856e-05,4.5881e-05,3.1898e-05,2.8913e-05 1,8.5859e-20,1.0506e-19,1.1748e-19,1.7252e-19,2.8041e-19,2.836e-19,3.2242e-19,5.3979e-19,1.5754e-18,1.9195e-18,2.0757e-18,2.0814e-18,2.825e-18,4.8386e-18,5.191e-18,7.482e-18,2.2753e-17,6.5938e-17,7.5856e-17,1.4539e-16,2.1047e-16,2.8287e-16,3.1461e-16,4.6498e-16,4.7613e-16,6.9005e-16,1.1932e-15,1.925e-15,2.3538e-15,5.8076e-15,6.0223e-15,1.2441e-14,1.874e-14,2.0855e-14,3.2938e-14,4.2681e-14,4.2868e-14,4.9135e-14,3.5856e-13,2.4554e-12,3.8383e-12,3.8912e-12,3.897e-12,6.316e-12,1.3803e-11,1.5471e-11,1.671e-11,5.616e-11,6.441e-11,6.9316e-11,2.2805e-10,5.8303e-10,1.0303e-09,1.4983e-09,2.3457e-09,1.1728e-08,2.0331e-08,2.1707e-08,4.5308e-08,1.0168e-07,1.4566e-07,1.4585e-07,2.416e-07,3.1972e-07,3.8711e-07,4.9314e-07,6.0403e-07,7.9968e-07,9.0028e-07,1.267e-06,2.2846e-06,2.9562e-06,4.4302e-06,9.7725e-06,1.0568e-05,1.4239e-05,1.6951e-05,2.8107e-05,6.5899e-05,8.257e-05,0.00015215,0.00024462,0.00031527,0.00048774,0.0005166,0.00054482,0.00071114,0.00082445,0.00082704,0.00093356,0.0010226,0.0011924,0.0012077,0.0012145,0.001253,0.0013648,0.0015707,0.001689,0.0023472,0.0023487,0.0034513,0.0034686,0.0037601,0.0039605,0.0040948,0.004561,0.0050962,0.0071887,0.0075439,0.0087969,0.01668,0.020086,0.02136,0.030893,0.03225,0.033814,0.047994,0.050366,0.058001,0.061359,0.062552,0.064904,0.082007,0.10322,0.10563,0.11207,0.12423,0.16713,0.16924,0.17264,0.26975,0.35041,0.38775,0.40412,0.45092,0.47438,0.48584,0.52956,0.61431,0.66009,0.66942,0.67892,0.68035,0.7012,0.86252,0.88626,0.89124,0.90279,0.93212,0.94481,0.97587,0.97895,0.98284,0.98457,0.98943,0.99514,0.99705,0.99824,1,0.99977,0.99618,0.99453,0.98756,0.98539,0.98185,0.98167,0.9788,0.96955,0.94524,0.94469,0.91951,0.90446,0.8905,0.80254,0.77118,0.76801,0.68512,0.66534,0.66318,0.61907,0.61796,0.5811,0.53194,0.46658,0.45618,0.43173,0.38477,0.36528,0.34825,0.33047,0.28124,0.25761,0.25738,0.2457,0.22875,0.22613,0.20419,0.19607,0.189,0.17073,0.16608,0.15717,0.14788,0.13145,0.1181,0.07971,0.076115,0.072287,0.066022,0.058401,0.057533,0.047732,0.047221,0.044663,0.041699,0.037842,0.010572,0.0095569,0.0091131,0.0083502,0.0080754,0.0072917,0.0049865,0.0047319,0.0043132,0.0038771,0.0036122,0.0025815,0.0025093,0.0018367,0.0012682,0.0009154,0.00088991,0.00061449,0.00043999,0.00043122,0.00037188,0.00027267,0.00027077,0.00026659,0.000181,0.00017439,0.00013886,0.00012401,9.5981e-05,8.9464e-05,6.3543e-05,5.9723e-05,4.1721e-05,3.7865e-05 1,7.0127e-20,8.585e-20,9.6027e-20,1.4113e-19,2.2966e-19,2.3228e-19,2.6415e-19,4.4277e-19,1.2956e-18,1.5793e-18,1.7081e-18,1.7128e-18,2.3264e-18,3.9898e-18,4.2811e-18,6.176e-18,1.8832e-17,5.4721e-17,6.2973e-17,1.2089e-16,1.7518e-16,2.3562e-16,2.6212e-16,3.8779e-16,3.9711e-16,5.7608e-16,9.9759e-16,1.6113e-15,1.9714e-15,4.8756e-15,5.0563e-15,1.0466e-14,1.5782e-14,1.7568e-14,2.7782e-14,3.6025e-14,3.6184e-14,4.149e-14,3.0445e-13,2.0966e-12,3.2817e-12,3.3271e-12,3.3321e-12,5.4082e-12,1.1847e-11,1.3284e-11,1.435e-11,4.8411e-11,5.5548e-11,5.9792e-11,1.9747e-10,5.064e-10,8.9653e-10,1.3054e-09,2.0469e-09,1.0292e-08,1.7877e-08,1.9092e-08,3.9956e-08,8.9946e-08,1.2902e-07,1.2919e-07,2.1442e-07,2.8407e-07,3.4421e-07,4.3891e-07,5.3804e-07,7.1313e-07,8.0322e-07,1.132e-06,2.0462e-06,2.6506e-06,3.9793e-06,8.8084e-06,9.5284e-06,1.2857e-05,1.5317e-05,2.5458e-05,5.9933e-05,7.5178e-05,0.00013896,0.00022397,0.00028904,0.00044823,0.0004749,0.00050098,0.00065491,0.00075989,0.0007623,0.00086108,0.00094367,0.0011014,0.0011156,0.0011219,0.0011577,0.0012616,0.0014532,0.0015633,0.002177,0.0021783,0.0032088,0.0032249,0.0034978,0.0036854,0.0038112,0.0042481,0.0047501,0.006716,0.0070502,0.00823,0.015678,0.018906,0.020115,0.029178,0.03047,0.03196,0.045499,0.047768,0.055077,0.058296,0.05944,0.061696,0.078125,0.098563,0.10088,0.1071,0.11885,0.16041,0.16246,0.16576,0.26043,0.33955,0.37632,0.39246,0.4387,0.46193,0.4733,0.51671,0.60123,0.64708,0.65645,0.66599,0.66744,0.68841,0.85226,0.87671,0.88186,0.89382,0.92439,0.93775,0.971,0.97438,0.97868,0.9806,0.98609,0.9928,0.99517,0.99673,0.99977,1,0.99783,0.99655,0.99071,0.98882,0.98569,0.98552,0.98295,0.97453,0.95188,0.95136,0.92746,0.91304,0.8996,0.81392,0.78308,0.77996,0.69794,0.67827,0.67612,0.63214,0.63104,0.59417,0.54486,0.47906,0.46857,0.44387,0.39632,0.37655,0.35926,0.34117,0.29101,0.26687,0.26663,0.25469,0.23733,0.23465,0.21214,0.20381,0.19654,0.17776,0.17297,0.1638,0.15422,0.13726,0.12346,0.083654,0.079916,0.075935,0.069412,0.061468,0.060562,0.050329,0.049795,0.04712,0.044019,0.039981,0.01128,0.010204,0.0097339,0.0089244,0.0086328,0.0078005,0.0053482,0.0050769,0.0046304,0.0041652,0.0038823,0.0027805,0.0027032,0.0019824,0.0013719,0.0009921,0.00096464,0.0006675,0.00047883,0.00046933,0.00040508,0.00029751,0.00029545,0.00029091,0.00019792,0.00019072,0.00015205,0.00013586,0.00010529,9.8176e-05,6.9849e-05,6.567e-05,4.5955e-05,4.1727e-05 1,3.7685e-20,4.6199e-20,5.1717e-20,7.6217e-20,1.2445e-19,1.2588e-19,1.4329e-19,2.4107e-19,7.1085e-19,8.6777e-19,9.3906e-19,9.417e-19,1.2819e-18,2.2072e-18,2.3695e-18,3.4276e-18,1.0539e-17,3.0871e-17,3.5565e-17,6.8618e-17,9.9716e-17,1.3443e-16,1.4967e-16,2.2211e-16,2.2749e-16,3.3098e-16,5.7563e-16,9.3334e-16,1.1437e-15,2.8494e-15,2.9559e-15,6.1548e-15,9.3125e-15,1.0376e-14,1.647e-14,2.1404e-14,2.1499e-14,2.468e-14,1.8421e-13,1.2903e-12,2.0279e-12,2.0562e-12,2.0593e-12,3.3571e-12,7.4075e-12,8.3145e-12,8.9885e-12,3.0673e-11,3.5241e-11,3.7961e-11,1.2683e-10,3.2833e-10,5.8465e-10,8.5459e-10,1.3463e-09,6.8861e-09,1.2034e-08,1.2861e-08,2.7139e-08,6.1662e-08,8.8821e-08,8.8943e-08,1.485e-07,1.974e-07,2.3974e-07,3.0661e-07,3.7679e-07,5.0114e-07,5.6529e-07,8.0009e-07,1.4572e-06,1.894e-06,2.8585e-06,6.3955e-06,6.9257e-06,9.3835e-06,1.1206e-05,1.876e-05,4.4722e-05,5.629e-05,0.00010504,0.00017058,0.00022105,0.00034528,0.00036619,0.00038665,0.00050775,0.00059067,0.00059257,0.00067078,0.00073631,0.00086175,0.00087307,0.00087809,0.00090663,0.00098949,0.0011427,0.0012309,0.0017247,0.0017257,0.002561,0.0025741,0.0027964,0.0029494,0.0030521,0.0034094,0.0038208,0.0054405,0.005717,0.0066956,0.012937,0.015669,0.016695,0.024436,0.025545,0.026827,0.03854,0.040514,0.046894,0.049712,0.050715,0.052695,0.067178,0.085342,0.087415,0.092971,0.10351,0.14111,0.14297,0.14598,0.23324,0.30754,0.34245,0.35786,0.40224,0.42469,0.4357,0.47799,0.56134,0.60718,0.6166,0.62621,0.62767,0.6489,0.81931,0.84573,0.85135,0.86446,0.8986,0.91387,0.95353,0.95777,0.96329,0.96579,0.97316,0.98282,0.98659,0.98927,0.99618,0.99783,1,0.99985,0.9975,0.99647,0.99462,0.99452,0.99288,0.98709,0.96968,0.96926,0.94942,0.93703,0.92527,0.84723,0.81824,0.81528,0.73645,0.71726,0.71515,0.67186,0.67077,0.63412,0.58463,0.51781,0.50707,0.48171,0.43256,0.41199,0.39392,0.37497,0.32205,0.29639,0.29614,0.2834,0.26482,0.26194,0.23773,0.22873,0.22087,0.20048,0.19527,0.18527,0.17479,0.15618,0.14097,0.096671,0.092475,0.087999,0.080648,0.071664,0.070637,0.059,0.058391,0.055336,0.051787,0.047155,0.013711,0.012431,0.01187,0.010903,0.010554,0.0095575,0.0066043,0.0062759,0.0057346,0.0051694,0.0048251,0.0034783,0.0033834,0.0024959,0.0017389,0.0012649,0.0012305,0.00085693,0.00061821,0.00060615,0.00052446,0.00038716,0.00038452,0.00037871,0.00025925,0.00024998,0.0002,0.00017903,0.00013929,0.00013002,9.2986e-05,8.7504e-05,6.156e-05,5.5976e-05 1,3.2009e-20,3.9256e-20,4.3953e-20,6.4822e-20,1.0594e-19,1.0716e-19,1.2201e-19,2.0546e-19,6.0708e-19,7.4138e-19,8.0241e-19,8.0467e-19,1.096e-18,1.8891e-18,2.0283e-18,2.9361e-18,9.0473e-18,2.6558e-17,3.0604e-17,5.9124e-17,8.5983e-17,1.1598e-16,1.2916e-16,1.9183e-16,1.9649e-16,2.8609e-16,4.9813e-16,8.0849e-16,9.9115e-16,2.474e-15,2.5666e-15,5.3526e-15,8.1059e-15,9.0334e-15,1.4354e-14,1.8664e-14,1.8747e-14,2.1527e-14,1.614e-13,1.1356e-12,1.7866e-12,1.8116e-12,1.8143e-12,2.9612e-12,6.5462e-12,7.3498e-12,7.9471e-12,2.7201e-11,3.1263e-11,3.3682e-11,1.1288e-10,2.9292e-10,5.224e-10,7.6436e-10,1.2056e-09,6.1944e-09,1.0842e-08,1.159e-08,2.4509e-08,5.5822e-08,8.0497e-08,8.0607e-08,1.348e-07,1.7934e-07,2.1794e-07,2.7893e-07,3.4301e-07,4.5663e-07,5.1527e-07,7.3012e-07,1.3324e-06,1.7333e-06,2.6196e-06,5.8774e-06,6.3664e-06,8.6351e-06,1.0319e-05,1.7308e-05,4.1395e-05,5.2148e-05,9.7548e-05,0.00015873,0.00020592,0.00032226,0.00034186,0.00036105,0.0004747,0.00055259,0.00055438,0.0006279,0.00068953,0.00080758,0.00081824,0.00082296,0.00084983,0.00092788,0.0010723,0.0011555,0.0016215,0.0016225,0.0024126,0.002425,0.0026355,0.0027804,0.0028777,0.0032164,0.0036066,0.0051451,0.005408,0.0063391,0.012294,0.014907,0.015889,0.023311,0.024376,0.025607,0.036875,0.038778,0.044929,0.047649,0.048617,0.050528,0.06453,0.082127,0.084137,0.089528,0.099766,0.13635,0.13817,0.1411,0.22645,0.29945,0.33387,0.34907,0.39293,0.41515,0.42606,0.46801,0.55096,0.59672,0.60614,0.61576,0.61722,0.63848,0.81032,0.83721,0.84293,0.85633,0.89133,0.90707,0.94833,0.95279,0.95861,0.96126,0.9691,0.97953,0.98365,0.98663,0.99453,0.99655,0.99985,1,0.99857,0.99777,0.99625,0.99617,0.99478,0.98969,0.97369,0.9733,0.95457,0.94274,0.93144,0.85556,0.8271,0.82419,0.74634,0.72731,0.72522,0.68218,0.68109,0.64455,0.59508,0.52808,0.51729,0.49178,0.44226,0.42149,0.40324,0.38408,0.33047,0.30443,0.30417,0.29122,0.27233,0.2694,0.24474,0.23557,0.22755,0.20675,0.20142,0.1912,0.18049,0.16143,0.14584,0.10033,0.096007,0.091395,0.083817,0.074547,0.073487,0.061461,0.060832,0.057671,0.053998,0.049201,0.014419,0.013081,0.012494,0.011482,0.011116,0.010072,0.0069742,0.0066292,0.0060604,0.0054661,0.0051039,0.0036855,0.0035855,0.002649,0.0018489,0.0013469,0.0013104,0.00091417,0.00066048,0.00064765,0.00056073,0.00041448,0.00041167,0.00040548,0.00027803,0.00026813,0.00021472,0.00019229,0.00014977,0.00013984,0.00010014,9.4261e-05,6.6407e-05,6.0405e-05 1,1.925e-20,2.3635e-20,2.6481e-20,3.9139e-20,6.4147e-20,6.4888e-20,7.3934e-20,1.2488e-19,3.7132e-19,4.5399e-19,4.9159e-19,4.9298e-19,6.727e-19,1.1632e-18,1.2494e-18,1.8126e-18,5.6232e-18,1.6615e-17,1.9163e-17,3.7172e-17,5.4185e-17,7.3226e-17,8.1603e-17,1.215e-16,1.2446e-16,1.8165e-16,3.174e-16,5.1675e-16,6.3434e-16,1.5928e-15,1.6528e-15,3.4635e-15,5.2596e-15,5.8656e-15,9.3493e-15,1.2178e-14,1.2233e-14,1.406e-14,1.0688e-13,7.6246e-13,1.2035e-12,1.2205e-12,1.2223e-12,2.0021e-12,4.4521e-12,5.003e-12,5.4127e-12,1.87e-11,2.1515e-11,2.3194e-11,7.8467e-11,2.0518e-10,3.6764e-10,5.3961e-10,8.5433e-10,4.4512e-09,7.8295e-09,8.3741e-09,1.7828e-08,4.0912e-08,5.9198e-08,5.928e-08,9.9614e-08,1.3289e-07,1.618e-07,2.0758e-07,2.5578e-07,3.4147e-07,3.8579e-07,5.4855e-07,1.0072e-06,1.3138e-06,1.9943e-06,4.5133e-06,4.8931e-06,6.659e-06,7.9735e-06,1.3452e-05,3.2501e-05,4.1058e-05,7.7394e-05,0.00012671,0.00016493,0.00025965,0.00027565,0.00029134,0.00038448,0.0004485,0.00044997,0.00051052,0.00056136,0.00065894,0.00066776,0.00067167,0.00069392,0.0007586,0.00087847,0.00094766,0.0013366,0.0013374,0.0020006,0.0020111,0.0021884,0.0023107,0.0023929,0.0026791,0.0030097,0.0043183,0.0045427,0.005339,0.010475,0.012745,0.013601,0.020101,0.021037,0.022121,0.032092,0.033783,0.039265,0.041695,0.042561,0.044271,0.056849,0.072761,0.074585,0.079483,0.088809,0.12236,0.12403,0.12674,0.2062,0.27518,0.30798,0.32253,0.36469,0.38616,0.39673,0.43752,0.51894,0.56433,0.57371,0.58331,0.58477,0.60605,0.78156,0.80976,0.8158,0.82999,0.8675,0.88461,0.9306,0.93572,0.94246,0.94556,0.95483,0.96754,0.97274,0.9766,0.98756,0.99071,0.9975,0.99857,1,0.99991,0.99945,0.99942,0.99881,0.99592,0.98439,0.98409,0.96889,0.95885,0.94906,0.88026,0.8536,0.85086,0.77641,0.75795,0.75592,0.71384,0.71277,0.67673,0.62753,0.56019,0.54928,0.52341,0.47287,0.45157,0.43278,0.41301,0.35735,0.33015,0.32988,0.31631,0.29645,0.29337,0.26735,0.25764,0.24915,0.22703,0.22136,0.21045,0.19899,0.17855,0.16176,0.11237,0.10765,0.1026,0.09429,0.084095,0.082927,0.069643,0.068945,0.065442,0.061364,0.056027,0.016827,0.015292,0.014618,0.013454,0.013034,0.01183,0.0082436,0.0078426,0.0071805,0.0064875,0.0060644,0.0044023,0.0042848,0.0031807,0.0022323,0.0016339,0.0015903,0.0011152,0.00080944,0.00079394,0.00068876,0.00051123,0.00050781,0.00050027,0.00034477,0.00033265,0.00026717,0.0002396,0.00018722,0.00017496,0.00012582,0.00011852,8.3856e-05,7.6366e-05 1,1.6954e-20,2.0822e-20,2.3332e-20,3.4505e-20,5.6591e-20,5.7246e-20,6.5238e-20,1.1027e-19,3.284e-19,4.0164e-19,4.3495e-19,4.3618e-19,5.9546e-19,1.0305e-18,1.107e-18,1.6068e-18,4.9932e-18,1.4778e-17,1.7048e-17,3.3102e-17,4.828e-17,6.5276e-17,7.2756e-17,1.0839e-16,1.1104e-16,1.6216e-16,2.8359e-16,4.6207e-16,5.6739e-16,1.4268e-15,1.4806e-15,3.1065e-15,4.7206e-15,5.2655e-15,8.3992e-15,1.0945e-14,1.0994e-14,1.264e-14,9.6411e-14,6.9018e-13,1.0903e-12,1.1057e-12,1.1074e-12,1.8155e-12,4.043e-12,4.5442e-12,4.9171e-12,1.7027e-11,1.9596e-11,2.1127e-11,7.1644e-11,1.8769e-10,3.367e-10,4.9459e-10,7.8379e-10,4.0979e-09,7.2169e-09,7.7199e-09,1.6463e-08,3.785e-08,5.4814e-08,5.489e-08,9.2348e-08,1.2328e-07,1.5017e-07,1.9278e-07,2.3766e-07,3.1749e-07,3.5881e-07,5.1063e-07,9.3902e-07,1.2257e-06,1.8625e-06,4.2242e-06,4.5807e-06,6.2391e-06,7.4744e-06,1.2628e-05,3.0589e-05,3.8669e-05,7.3029e-05,0.00011975,0.000156,0.00024594,0.00026116,0.00027607,0.00036466,0.0004256,0.000427,0.00048467,0.00053312,0.00062613,0.00063454,0.00063827,0.00065948,0.00072118,0.00083557,0.00090162,0.0012732,0.001274,0.0019086,0.0019187,0.0020885,0.0022057,0.0022844,0.0025589,0.0028758,0.0041322,0.0043479,0.0051134,0.010061,0.012252,0.013079,0.019364,0.020271,0.021321,0.030988,0.032629,0.037953,0.040314,0.041156,0.042819,0.055059,0.070569,0.072348,0.077129,0.086236,0.11905,0.12069,0.12334,0.20136,0.26933,0.30172,0.3161,0.35783,0.37909,0.38957,0.43005,0.51104,0.55629,0.56566,0.57525,0.57671,0.59797,0.77421,0.80271,0.80882,0.82319,0.86128,0.87872,0.92583,0.93111,0.93807,0.94127,0.95089,0.96415,0.96962,0.97369,0.98539,0.98882,0.99647,0.99777,0.99991,1,0.9998,0.99978,0.99937,0.99703,0.98663,0.98635,0.97205,0.96247,0.95307,0.88612,0.85995,0.85725,0.78374,0.76544,0.76342,0.72163,0.72056,0.68468,0.6356,0.56824,0.5573,0.53136,0.4806,0.45917,0.44027,0.42035,0.36422,0.33673,0.33646,0.32274,0.30265,0.29953,0.27318,0.26333,0.25472,0.23228,0.22652,0.21544,0.2038,0.183,0.16591,0.11553,0.11071,0.10555,0.097051,0.086618,0.085422,0.071811,0.071096,0.067504,0.06332,0.057842,0.017478,0.015891,0.015193,0.013989,0.013554,0.012308,0.0085901,0.008174,0.0074868,0.0067671,0.0063276,0.0045994,0.0044771,0.0033274,0.0023385,0.0017136,0.0016681,0.0011712,0.00085109,0.00083485,0.00072461,0.0005384,0.00053481,0.0005269,0.00036357,0.00035083,0.00028197,0.00025297,0.00019782,0.00018491,0.00013311,0.00012541,8.8831e-05,8.0919e-05 1,1.4029e-20,1.7238e-20,1.9321e-20,2.8596e-20,4.6948e-20,4.7492e-20,5.4138e-20,9.1613e-20,2.7347e-19,3.3459e-19,3.6241e-19,3.6344e-19,4.9649e-19,8.6019e-19,9.2423e-19,1.3426e-18,4.1827e-18,1.2409e-17,1.432e-17,2.7847e-17,4.065e-17,5.4999e-17,6.1316e-17,9.1431e-17,9.3673e-17,1.3692e-16,2.3976e-16,3.9109e-16,4.8047e-16,1.2108e-15,1.2567e-15,2.6413e-15,4.0178e-15,4.4828e-15,7.1589e-15,9.3351e-15,9.3771e-15,1.0784e-14,8.2679e-14,5.9492e-13,9.4095e-13,9.5427e-13,9.5572e-13,1.5689e-12,3.5015e-12,3.9369e-12,4.2609e-12,1.4806e-11,1.7046e-11,1.8382e-11,6.2554e-11,1.6434e-10,2.9533e-10,4.3432e-10,6.8924e-10,3.6222e-09,6.3908e-09,6.8377e-09,1.4618e-08,3.3702e-08,4.8868e-08,4.8936e-08,8.248e-08,1.1022e-07,1.3435e-07,1.7262e-07,2.1297e-07,2.8481e-07,3.2202e-07,4.5887e-07,8.4574e-07,1.1051e-06,1.6819e-06,3.8268e-06,4.1511e-06,5.661e-06,6.7868e-06,1.1491e-05,2.794e-05,3.5356e-05,6.6964e-05,0.00011005,0.00014355,0.00022681,0.00024091,0.00025473,0.00033694,0.00039355,0.00039485,0.00044847,0.00049353,0.00058012,0.00058795,0.00059142,0.00061119,0.00066867,0.00077533,0.00083696,0.0011841,0.0011849,0.001779,0.0017884,0.0019477,0.0020576,0.0021314,0.002389,0.0026868,0.0038688,0.0040719,0.0047936,0.009472,0.01155,0.012335,0.018312,0.019176,0.020176,0.029404,0.030974,0.03607,0.038332,0.039138,0.040733,0.052483,0.067407,0.069122,0.07373,0.082517,0.11426,0.11585,0.11842,0.1943,0.26077,0.29255,0.30668,0.34773,0.3687,0.37904,0.41903,0.49934,0.54437,0.55371,0.56327,0.56473,0.58595,0.76316,0.79208,0.79829,0.81292,0.85184,0.86974,0.91848,0.92398,0.93126,0.93462,0.94474,0.95881,0.96466,0.96905,0.98185,0.98569,0.99462,0.99625,0.99945,0.9998,1,1,0.99988,0.99836,0.98965,0.9894,0.97646,0.96757,0.95876,0.89463,0.86919,0.86657,0.7945,0.77646,0.77447,0.73313,0.73208,0.69646,0.64758,0.58022,0.56927,0.54323,0.49218,0.47058,0.4515,0.43138,0.37455,0.34665,0.34638,0.33244,0.312,0.30883,0.28199,0.27195,0.26316,0.24023,0.23434,0.22301,0.21109,0.18978,0.17223,0.12036,0.11538,0.11006,0.10128,0.090482,0.089244,0.075139,0.074397,0.070669,0.066326,0.060633,0.018489,0.01682,0.016087,0.014821,0.014363,0.01305,0.0091299,0.0086904,0.0079642,0.0072032,0.0067382,0.0049075,0.0047777,0.0035572,0.002505,0.0018389,0.0017902,0.0012595,0.00091676,0.00089936,0.00078119,0.00058132,0.00057746,0.00056897,0.00039333,0.00037962,0.00030544,0.00027417,0.00021465,0.00020071,0.00014471,0.00013638,9.6752e-05,8.8173e-05 1,1.3899e-20,1.7079e-20,1.9142e-20,2.8333e-20,4.6519e-20,4.7058e-20,5.3644e-20,9.0782e-20,2.7102e-19,3.316e-19,3.5917e-19,3.6019e-19,4.9207e-19,8.5259e-19,9.1606e-19,1.3308e-18,4.1464e-18,1.2303e-17,1.4198e-17,2.7611e-17,4.0308e-17,5.4537e-17,6.0802e-17,9.0669e-17,9.2893e-17,1.3578e-16,2.3779e-16,3.879e-16,4.7656e-16,1.2011e-15,1.2466e-15,2.6203e-15,3.9861e-15,4.4475e-15,7.1028e-15,9.2624e-15,9.3041e-15,1.07e-14,8.2056e-14,5.9059e-13,9.3416e-13,9.4738e-13,9.4882e-13,1.5577e-12,3.4769e-12,3.9092e-12,4.231e-12,1.4705e-11,1.693e-11,1.8257e-11,6.2138e-11,1.6327e-10,2.9343e-10,4.3155e-10,6.8489e-10,3.6003e-09,6.3527e-09,6.797e-09,1.4533e-08,3.351e-08,4.8593e-08,4.8661e-08,8.2023e-08,1.0962e-07,1.3362e-07,1.7169e-07,2.1183e-07,2.833e-07,3.2031e-07,4.5646e-07,8.414e-07,1.0994e-06,1.6735e-06,3.8082e-06,4.131e-06,5.6339e-06,6.7546e-06,1.1438e-05,2.7816e-05,3.5201e-05,6.6678e-05,0.0001096,0.00014296,0.0002259,0.00023995,0.00025372,0.00033563,0.00039204,0.00039333,0.00044676,0.00049166,0.00057794,0.00058575,0.00058921,0.0006089,0.00066619,0.00077248,0.0008339,0.0011799,0.0011806,0.0017729,0.0017822,0.001941,0.0020506,0.0021242,0.002381,0.0026778,0.0038563,0.0040588,0.0047783,0.0094438,0.011517,0.0123,0.018262,0.019123,0.020121,0.029329,0.030895,0.03598,0.038237,0.039041,0.040632,0.052359,0.067255,0.068966,0.073566,0.082338,0.11403,0.11561,0.11818,0.19396,0.26035,0.2921,0.30622,0.34724,0.36819,0.37852,0.4185,0.49876,0.54379,0.55313,0.56268,0.56414,0.58536,0.76261,0.79155,0.79777,0.81241,0.85137,0.86929,0.91811,0.92362,0.93092,0.93428,0.94443,0.95854,0.96441,0.96881,0.98167,0.98552,0.99452,0.99617,0.99942,0.99978,1,1,0.99989,0.99841,0.98979,0.98954,0.97666,0.96782,0.95903,0.89504,0.86964,0.86702,0.79503,0.777,0.77501,0.73369,0.73264,0.69704,0.64817,0.58081,0.56985,0.54381,0.49275,0.47114,0.45206,0.43193,0.37506,0.34715,0.34687,0.33292,0.31247,0.30929,0.28242,0.27237,0.26357,0.24063,0.23473,0.22338,0.21145,0.19011,0.17254,0.12061,0.11562,0.11028,0.10149,0.090675,0.089435,0.075305,0.074562,0.070828,0.066476,0.060773,0.01854,0.016867,0.016132,0.014863,0.014403,0.013088,0.0091572,0.0087165,0.0079883,0.0072253,0.006759,0.0049231,0.004793,0.0035688,0.0025134,0.0018452,0.0017965,0.001264,0.00092011,0.00090264,0.00078407,0.00058351,0.00057964,0.00057111,0.00039485,0.00038109,0.00030664,0.00027525,0.00021551,0.00020151,0.00014531,0.00013694,9.7158e-05,8.8545e-05 1,1.2077e-20,1.4845e-20,1.6641e-20,2.4646e-20,4.0497e-20,4.0967e-20,4.671e-20,7.9112e-20,2.3658e-19,2.8957e-19,3.1368e-19,3.1457e-19,4.2996e-19,7.4564e-19,8.0124e-19,1.1647e-18,3.6356e-18,1.0807e-17,1.2474e-17,2.4286e-17,3.5476e-17,4.8025e-17,5.3552e-17,7.9911e-17,8.1874e-17,1.1975e-16,2.0992e-16,3.4273e-16,4.2122e-16,1.0634e-15,1.1037e-15,2.3231e-15,3.5366e-15,3.9467e-15,6.3084e-15,8.2303e-15,8.2674e-15,9.5104e-15,7.321e-14,5.2892e-13,8.3737e-13,8.4924e-13,8.5054e-13,1.3977e-12,3.1248e-12,3.5142e-12,3.8041e-12,1.3255e-11,1.5265e-11,1.6464e-11,5.6182e-11,1.4793e-10,2.662e-10,3.9184e-10,6.2252e-10,3.285e-09,5.8041e-09,6.2111e-09,1.3304e-08,3.0741e-08,4.462e-08,4.4682e-08,7.5416e-08,1.0086e-07,1.2301e-07,1.5816e-07,1.9525e-07,2.6132e-07,2.9557e-07,4.216e-07,7.7845e-07,1.0179e-06,1.5513e-06,3.5385e-06,3.8394e-06,5.241e-06,6.287e-06,1.0663e-05,2.6004e-05,3.2933e-05,6.2514e-05,0.00010292,0.00013438,0.00021269,0.00022597,0.00023898,0.00031645,0.00036985,0.00037108,0.00042168,0.00046423,0.00054603,0.00055343,0.00055671,0.00057539,0.00062974,0.00073064,0.00078896,0.0011178,0.0011185,0.0016824,0.0016913,0.0018427,0.0019471,0.0020173,0.0022623,0.0025456,0.0036717,0.0038654,0.0045539,0.0090288,0.011021,0.011774,0.017517,0.018348,0.01931,0.028204,0.029718,0.034639,0.036825,0.037604,0.039146,0.050519,0.064992,0.066657,0.071132,0.079672,0.11058,0.11213,0.11464,0.18885,0.25413,0.28542,0.29935,0.33987,0.36059,0.37081,0.41042,0.49015,0.53499,0.5443,0.55383,0.55528,0.57648,0.75433,0.78356,0.78985,0.80467,0.84421,0.86247,0.91245,0.91813,0.92566,0.92914,0.93965,0.95435,0.9605,0.96513,0.9788,0.98295,0.99288,0.99478,0.99881,0.99937,0.99988,0.99989,1,0.99913,0.99177,0.99154,0.97968,0.97135,0.96301,0.90115,0.87632,0.87375,0.80289,0.78506,0.78309,0.74214,0.74109,0.70571,0.65702,0.58971,0.57873,0.55264,0.50137,0.47965,0.46045,0.44017,0.38281,0.3546,0.35433,0.34021,0.31951,0.31629,0.28906,0.27887,0.26994,0.24664,0.24065,0.22911,0.21697,0.19525,0.17734,0.12429,0.11919,0.11372,0.10471,0.09363,0.092357,0.077854,0.077091,0.073254,0.068781,0.062915,0.019322,0.017588,0.016825,0.015508,0.015031,0.013664,0.0095775,0.0091187,0.0083604,0.0075654,0.0070793,0.0051639,0.005028,0.0037487,0.0026441,0.0019437,0.0018925,0.0013335,0.00097193,0.00095355,0.00082874,0.00061746,0.00061338,0.00060439,0.00041844,0.00040391,0.00032526,0.00029208,0.00022889,0.00021407,0.00015454,0.00014567,0.00010348,9.4333e-05 1,8.0954e-21,9.959e-21,1.117e-20,1.6571e-20,2.7289e-20,2.7607e-20,3.1495e-20,5.3468e-20,1.6068e-19,1.9684e-19,2.1331e-19,2.1392e-19,2.9281e-19,5.0906e-19,5.472e-19,7.968e-19,2.5003e-18,7.4699e-18,8.6282e-18,1.6852e-17,2.4661e-17,3.3433e-17,3.73e-17,5.5767e-17,5.7144e-17,8.3736e-17,1.4719e-16,2.4089e-16,2.9636e-16,7.5162e-16,7.8027e-16,1.6485e-15,2.515e-15,2.8082e-15,4.4995e-15,5.8784e-15,5.905e-15,6.7977e-15,5.2894e-14,3.8628e-13,6.1312e-13,6.2186e-13,6.2282e-13,1.0264e-12,2.3051e-12,2.5941e-12,2.8093e-12,9.86e-12,1.1365e-11,1.2263e-11,4.2155e-11,1.1166e-10,2.0167e-10,2.9757e-10,4.7415e-10,2.5294e-09,4.4862e-09,4.803e-09,1.0342e-08,2.4037e-08,3.4981e-08,3.503e-08,5.9349e-08,7.9543e-08,9.7153e-08,1.2515e-07,1.5474e-07,2.0756e-07,2.3497e-07,3.3608e-07,6.2351e-07,8.1707e-07,1.2493e-06,2.8692e-06,3.1152e-06,4.2636e-06,5.1224e-06,8.7276e-06,2.1453e-05,2.7228e-05,5.1994e-05,8.6015e-05,0.0001126,0.00017903,0.00019032,0.0002014,0.00026746,0.0003131,0.00031415,0.00035747,0.00039394,0.00046416,0.00047053,0.00047335,0.0004894,0.00053615,0.00062306,0.00067337,0.00095777,0.00095839,0.0014483,0.0014561,0.0015879,0.001679,0.0017403,0.0019543,0.0022021,0.0031906,0.0033611,0.0039679,0.007938,0.0097163,0.01039,0.015545,0.016294,0.017161,0.02521,0.026585,0.031063,0.033056,0.033767,0.035175,0.045588,0.058906,0.060442,0.064576,0.072479,0.10123,0.10268,0.10502,0.17486,0.23698,0.26696,0.28034,0.3194,0.33945,0.34937,0.38788,0.46594,0.51018,0.51939,0.52884,0.53028,0.55132,0.73046,0.76042,0.76689,0.78218,0.82327,0.8424,0.89554,0.90167,0.90983,0.91361,0.92513,0.94145,0.94838,0.95365,0.96955,0.97453,0.98709,0.98969,0.99592,0.99703,0.99836,0.99841,0.99913,1,0.99623,0.99608,0.98713,0.98031,0.97325,0.91765,0.89452,0.8921,0.82465,0.80746,0.80555,0.76575,0.76473,0.73007,0.68201,0.61498,0.60399,0.5778,0.52608,0.50407,0.48456,0.46391,0.40522,0.37621,0.37592,0.36137,0.33998,0.33665,0.30841,0.29782,0.28853,0.26422,0.25796,0.24589,0.23317,0.21034,0.19147,0.13521,0.12977,0.12394,0.11431,0.10243,0.10107,0.085468,0.084646,0.080508,0.075678,0.069335,0.021704,0.019783,0.018938,0.017475,0.016946,0.015426,0.010866,0.010352,0.0095026,0.0086105,0.0080644,0.0059067,0.0057532,0.0043054,0.0030498,0.0022502,0.0021916,0.0015505,0.0011342,0.001113,0.0009688,0.00072413,0.0007194,0.00070897,0.00049278,0.00047584,0.00038406,0.00034527,0.00027125,0.00025386,0.00018386,0.00017342,0.0001236,0.00011278 1,3.4955e-21,4.3083e-21,4.8372e-21,7.2021e-21,1.1914e-20,1.2054e-20,1.3769e-20,2.3489e-20,7.1312e-20,8.7528e-20,9.4923e-20,9.5197e-20,1.3068e-19,2.2839e-19,2.4567e-19,3.5901e-19,1.139e-18,3.4391e-18,3.978e-18,7.8209e-18,1.1489e-17,1.5622e-17,1.7448e-17,2.6192e-17,2.6845e-17,3.949e-17,6.9811e-17,1.1483e-16,1.4157e-16,3.6253e-16,3.765e-16,8.0169e-16,1.2286e-15,1.3734e-15,2.2116e-15,2.8977e-15,2.9109e-15,3.3561e-15,2.6707e-14,1.9947e-13,3.183e-13,3.2289e-13,3.2339e-13,5.3604e-13,1.2154e-12,1.3697e-12,1.4848e-12,5.2906e-12,6.1087e-12,6.5977e-12,2.303e-11,6.1761e-11,1.124e-10,1.667e-10,2.6726e-10,1.4584e-09,2.6073e-09,2.7941e-09,6.0822e-09,1.431e-08,2.0942e-08,2.0971e-08,3.5812e-08,4.821e-08,5.9063e-08,7.6378e-08,9.4746e-08,1.2767e-07,1.4482e-07,2.0831e-07,3.9033e-07,5.1376e-07,7.911e-07,1.8425e-06,2.0034e-06,2.7569e-06,3.3229e-06,5.7156e-06,1.4283e-05,1.821e-05,3.5209e-05,5.8831e-05,7.7434e-05,0.00012431,0.00013232,0.00014019,0.00018729,0.00021999,0.00022075,0.00025189,0.00027818,0.00032896,0.00033357,0.00033561,0.00034725,0.0003812,0.00044449,0.00048123,0.00069005,0.00069051,0.0010537,0.0010595,0.0011579,0.001226,0.0012718,0.0014323,0.0016187,0.0023673,0.0024971,0.0029607,0.0060351,0.0074293,0.0079595,0.012051,0.012649,0.013344,0.019839,0.020957,0.024612,0.026245,0.026828,0.027985,0.036593,0.047719,0.049009,0.052489,0.059169,0.083733,0.084977,0.086995,0.1481,0.20371,0.23092,0.24313,0.27904,0.29761,0.30683,0.34285,0.41691,0.4595,0.46844,0.47761,0.47901,0.49954,0.67926,0.71035,0.71712,0.73317,0.77689,0.79757,0.85647,0.86344,0.87279,0.87715,0.89057,0.91,0.91845,0.92495,0.94524,0.95188,0.96968,0.97369,0.98439,0.98663,0.98965,0.98979,0.99177,0.99623,1,1,0.99726,0.99369,0.9894,0.94774,0.92847,0.92643,0.8671,0.85146,0.84972,0.81288,0.81192,0.77923,0.73312,0.66749,0.65659,0.63048,0.57836,0.55595,0.53598,0.51473,0.45372,0.42322,0.42292,0.40754,0.38482,0.38127,0.35107,0.33967,0.32966,0.30333,0.29652,0.28335,0.26943,0.24431,0.2234,0.16028,0.15411,0.14747,0.13648,0.12285,0.12128,0.10325,0.10229,0.097483,0.091853,0.084434,0.027502,0.025141,0.024099,0.022293,0.021638,0.019754,0.014059,0.013413,0.012342,0.011215,0.010523,0.0077737,0.0075772,0.0057143,0.0040842,0.0030365,0.0029595,0.0021116,0.0015561,0.0015277,0.0013342,0.001004,0.00099755,0.00098342,0.00068917,0.00066599,0.00054008,0.00048666,0.00038433,0.0003602,0.00026267,0.00024805,0.00017803,0.00016275 1,3.4373e-21,4.2367e-21,4.7569e-21,7.0831e-21,1.1718e-20,1.1856e-20,1.3543e-20,2.3105e-20,7.0163e-20,8.612e-20,9.3398e-20,9.3667e-20,1.2859e-19,2.2476e-19,2.4176e-19,3.5333e-19,1.1212e-18,3.3862e-18,3.9169e-18,7.7017e-18,1.1314e-17,1.5386e-17,1.7185e-17,2.5799e-17,2.6443e-17,3.89e-17,6.8777e-17,1.1314e-16,1.3949e-16,3.5728e-16,3.7105e-16,7.902e-16,1.2111e-15,1.3539e-15,2.1804e-15,2.8569e-15,2.87e-15,3.309e-15,2.6344e-14,1.9685e-13,3.1415e-13,3.1868e-13,3.1917e-13,5.2911e-13,1.1999e-12,1.3523e-12,1.4659e-12,5.2251e-12,6.0332e-12,6.5163e-12,2.2753e-11,6.1033e-11,1.1109e-10,1.6478e-10,2.6421e-10,1.4424e-09,2.5791e-09,2.7639e-09,6.0178e-09,1.4162e-08,2.0727e-08,2.0757e-08,3.5451e-08,4.7728e-08,5.8476e-08,7.5625e-08,9.3818e-08,1.2643e-07,1.4342e-07,2.0632e-07,3.8667e-07,5.0899e-07,7.8388e-07,1.8262e-06,1.9857e-06,2.7329e-06,3.2941e-06,5.6672e-06,1.4167e-05,1.8063e-05,3.4934e-05,5.8384e-05,7.6853e-05,0.0001234,0.00013135,0.00013917,0.00018595,0.00021844,0.00021919,0.00025013,0.00027624,0.00032669,0.00033127,0.0003333,0.00034486,0.00037859,0.00044148,0.00047799,0.00068551,0.00068597,0.001047,0.0010528,0.0011505,0.0012182,0.0012638,0.0014233,0.0016087,0.0023531,0.0024822,0.0029433,0.0060018,0.0073892,0.0079168,0.011989,0.012585,0.013276,0.019743,0.020857,0.024496,0.026122,0.026704,0.027856,0.036431,0.047516,0.048802,0.052269,0.058926,0.083411,0.084651,0.086663,0.1476,0.20309,0.23023,0.24243,0.27827,0.29681,0.30602,0.34198,0.41596,0.45851,0.46744,0.47661,0.47801,0.49852,0.67823,0.70934,0.71611,0.73217,0.77593,0.79664,0.85565,0.86263,0.872,0.87638,0.88983,0.90932,0.91779,0.92432,0.94469,0.95136,0.96926,0.9733,0.98409,0.98635,0.9894,0.98954,0.99154,0.99608,1,1,0.99739,0.99388,0.98965,0.94827,0.92909,0.92705,0.8679,0.8523,0.85056,0.81378,0.81283,0.78018,0.73412,0.66853,0.65764,0.63153,0.5794,0.55699,0.53701,0.51576,0.45471,0.42418,0.42388,0.40848,0.38574,0.38219,0.35195,0.34054,0.33051,0.30414,0.29732,0.28413,0.27018,0.24502,0.22407,0.16082,0.15462,0.14797,0.13695,0.12328,0.12171,0.10363,0.10267,0.097847,0.092201,0.08476,0.02763,0.025259,0.024213,0.0224,0.021742,0.019849,0.01413,0.013481,0.012406,0.011273,0.010578,0.0078157,0.0076182,0.0057462,0.0041077,0.0030545,0.002977,0.0021244,0.0015659,0.0015373,0.0013426,0.0010104,0.001004,0.00098977,0.00069373,0.00067042,0.00054372,0.00048996,0.00038698,0.00036269,0.00026452,0.00024981,0.00017932,0.00016393 1,1.6991e-21,2.0976e-21,2.3571e-21,3.5203e-21,5.8461e-21,5.9154e-21,6.7636e-21,1.1586e-20,3.5484e-20,4.3623e-20,4.7339e-20,4.7477e-20,6.5339e-20,1.147e-19,1.2345e-19,1.8095e-19,5.7945e-19,1.7656e-18,2.0447e-18,4.0426e-18,5.9575e-18,8.122e-18,9.0799e-18,1.3677e-17,1.4021e-17,2.0693e-17,3.676e-17,6.0725e-17,7.5003e-17,1.9364e-16,2.0117e-16,4.3123e-16,6.6336e-16,7.423e-16,1.2005e-15,1.5767e-15,1.584e-15,1.8286e-15,1.4832e-14,1.1292e-13,1.8101e-13,1.8365e-13,1.8394e-13,3.064e-13,7.0039e-13,7.9025e-13,8.5733e-13,3.0946e-12,3.5784e-12,3.8679e-12,1.3679e-11,3.7072e-11,6.791e-11,1.0115e-10,1.6302e-10,9.0691e-10,1.6324e-09,1.7508e-09,3.8466e-09,9.1452e-09,1.3446e-08,1.3466e-08,2.3149e-08,3.1282e-08,3.8424e-08,4.9853e-08,6.2015e-08,8.3894e-08,9.5318e-08,1.3777e-07,2.6035e-07,3.4397e-07,5.3283e-07,1.256e-06,1.3673e-06,1.8903e-06,2.2846e-06,3.9616e-06,1.004e-05,1.285e-05,2.511e-05,4.2315e-05,5.5954e-05,9.056e-05,9.65e-05,0.00010234,0.00013744,0.0001619,0.00016247,0.00018583,0.0002056,0.00024388,0.00024736,0.0002489,0.0002577,0.00028339,0.00033139,0.00035932,0.00051881,0.00051916,0.00079887,0.00080334,0.0008795,0.0009323,0.00096787,0.0010926,0.0012379,0.0018249,0.0019272,0.0022934,0.00475,0.0058759,0.0063055,0.0096437,0.010135,0.010706,0.01608,0.017011,0.020064,0.021433,0.021923,0.022895,0.030165,0.039644,0.040749,0.043733,0.049481,0.07081,0.071897,0.073662,0.12779,0.17802,0.20287,0.21408,0.24723,0.26448,0.27307,0.30681,0.37698,0.41783,0.42644,0.43531,0.43666,0.45656,0.6347,0.66633,0.67325,0.68974,0.73506,0.75675,0.81964,0.82721,0.83742,0.84221,0.85703,0.87879,0.88838,0.89583,0.91951,0.92746,0.94942,0.95457,0.96889,0.97205,0.97646,0.97666,0.97968,0.98713,0.99726,0.99739,1,0.99926,0.99742,0.96835,0.95273,0.95103,0.8996,0.88554,0.88397,0.85022,0.84934,0.81882,0.77504,0.71148,0.70081,0.6751,0.62324,0.60074,0.58059,0.55904,0.49662,0.4651,0.46479,0.44881,0.42511,0.4214,0.3897,0.37768,0.36709,0.33915,0.33189,0.31783,0.30292,0.27589,0.25326,0.18417,0.17734,0.17,0.15778,0.14257,0.14081,0.12056,0.11949,0.11406,0.10769,0.099271,0.033449,0.030653,0.029416,0.027269,0.026488,0.02424,0.017404,0.016625,0.015329,0.013962,0.013122,0.0097646,0.0095236,0.0072297,0.0052068,0.0038965,0.0037997,0.0027307,0.0020253,0.0019891,0.0017419,0.0013183,0.00131,0.0012919,0.00091165,0.00088159,0.0007178,0.00064809,0.00051409,0.0004824,0.00035383,0.00033448,0.0002415,0.00022113 1,1.1654e-21,1.4399e-21,1.6189e-21,2.4215e-21,4.0295e-21,4.0775e-21,4.6647e-21,8.008e-21,2.4636e-20,3.0313e-20,3.2906e-20,3.3002e-20,4.5477e-20,8.0017e-20,8.6148e-20,1.2648e-19,4.0697e-19,1.2459e-18,1.4438e-18,2.8629e-18,4.226e-18,5.7691e-18,6.4526e-18,9.7369e-18,9.9829e-18,1.4758e-17,2.6284e-17,4.3516e-17,5.3798e-17,1.3949e-16,1.4494e-16,3.1177e-16,4.8054e-16,5.3801e-16,8.7202e-16,1.1468e-15,1.1521e-15,1.3309e-15,1.0903e-14,8.3837e-14,1.3471e-13,1.3668e-13,1.3689e-13,2.2863e-13,5.2482e-13,5.9252e-13,6.4308e-13,2.3369e-12,2.7043e-12,2.9243e-12,1.0412e-11,2.8374e-11,5.2152e-11,7.7856e-11,1.2582e-10,7.07e-10,1.2771e-09,1.3703e-09,3.0251e-09,7.2311e-09,1.0658e-08,1.0674e-08,1.8414e-08,2.4931e-08,3.0664e-08,3.9854e-08,4.9649e-08,6.7301e-08,7.6532e-08,1.109e-07,2.1049e-07,2.7863e-07,4.3297e-07,1.027e-06,1.1187e-06,1.5503e-06,1.8764e-06,3.2674e-06,8.3418e-06,1.0697e-05,2.1019e-05,3.5578e-05,4.716e-05,7.6651e-05,8.1725e-05,8.6719e-05,0.00011677,0.00013776,0.00013824,0.00015832,0.00017533,0.0002083,0.00021131,0.00021264,0.00022022,0.00024239,0.00028388,0.00030804,0.00044637,0.00044668,0.00069031,0.00069422,0.00076073,0.00080688,0.000838,0.00094719,0.0010746,0.0015907,0.0016808,0.002004,0.0041852,0.0051903,0.0055746,0.0085706,0.0090126,0.009527,0.014386,0.015231,0.018005,0.019251,0.019697,0.020582,0.027225,0.035926,0.036942,0.039691,0.044993,0.064762,0.065773,0.067416,0.11811,0.16562,0.18925,0.19995,0.23166,0.24821,0.25647,0.28897,0.35699,0.39683,0.40525,0.41393,0.41525,0.43476,0.61138,0.64315,0.65012,0.66674,0.71267,0.73478,0.7994,0.80724,0.81784,0.82283,0.83829,0.86114,0.87126,0.87916,0.90446,0.91304,0.93703,0.94274,0.95885,0.96247,0.96757,0.96782,0.97135,0.98031,0.99369,0.99388,0.99926,1,0.99944,0.97712,0.96349,0.96198,0.91499,0.90184,0.90036,0.86842,0.86758,0.83836,0.79603,0.73389,0.72338,0.698,0.64652,0.62407,0.60391,0.5823,0.51936,0.48742,0.4871,0.47086,0.44672,0.44294,0.41053,0.39822,0.38735,0.35863,0.35115,0.33665,0.32124,0.29324,0.26974,0.19754,0.19036,0.18263,0.16976,0.1537,0.15185,0.1304,0.12925,0.12349,0.11671,0.10775,0.03695,0.033905,0.032556,0.030213,0.02936,0.026902,0.019404,0.018546,0.01712,0.015613,0.014684,0.010969,0.010702,0.008152,0.0058944,0.004426,0.0043173,0.0031144,0.0023175,0.0022765,0.0019964,0.0015155,0.0015061,0.0014854,0.001052,0.0010177,0.00083035,0.00075048,0.00059668,0.00056025,0.00041218,0.00038985,0.00028236,0.00025875 1,8.3864e-22,1.0369e-21,1.1662e-21,1.7469e-21,2.912e-21,2.9468e-21,3.3727e-21,5.8009e-21,1.7916e-20,2.2061e-20,2.3955e-20,2.4025e-20,3.3145e-20,5.8435e-20,6.2928e-20,9.2513e-20,2.9895e-19,9.1898e-19,1.0655e-18,2.1181e-18,3.1312e-18,4.2795e-18,4.7885e-18,7.2371e-18,7.4207e-18,1.0987e-17,1.961e-17,3.253e-17,4.0249e-17,1.0475e-16,1.0885e-16,2.3486e-16,3.6261e-16,4.0616e-16,6.5959e-16,8.6837e-16,8.7242e-16,1.0084e-15,8.3326e-15,6.4629e-14,1.0406e-13,1.0559e-13,1.0576e-13,1.7702e-13,4.0784e-13,4.607e-13,5.002e-13,1.8283e-12,2.1171e-12,2.2902e-12,8.2028e-12,2.246e-11,4.1403e-11,6.1931e-11,1.0032e-10,5.6866e-10,1.0304e-09,1.1059e-09,2.4518e-09,5.8883e-09,8.6975e-09,8.7102e-09,1.5072e-08,2.0442e-08,2.5172e-08,3.2765e-08,4.0869e-08,5.5497e-08,6.3156e-08,9.1714e-08,1.7475e-07,2.3172e-07,3.6104e-07,8.6101e-07,9.384e-07,1.3032e-06,1.5793e-06,2.7601e-06,7.0916e-06,9.1096e-06,1.7986e-05,3.0561e-05,4.0594e-05,6.6224e-05,7.0643e-05,7.4994e-05,0.00010121,0.00011956,0.00011999,0.00013757,0.00015247,0.00018139,0.00018403,0.0001852,0.00019186,0.00021134,0.00024783,0.00026911,0.00039118,0.00039145,0.00060724,0.00061071,0.00066976,0.00071076,0.00073842,0.00083555,0.000949,0.0014099,0.0014905,0.0017801,0.0037444,0.0046539,0.0050021,0.0077257,0.0081286,0.0085977,0.013043,0.013818,0.016367,0.017513,0.017924,0.018739,0.024872,0.032937,0.033881,0.036436,0.041373,0.059852,0.0608,0.06234,0.11016,0.15535,0.17794,0.18819,0.21865,0.2346,0.24256,0.27398,0.34006,0.37897,0.38721,0.39571,0.39701,0.41615,0.59109,0.6229,0.62989,0.6466,0.69292,0.71533,0.78126,0.78932,0.80022,0.80536,0.82134,0.84505,0.85561,0.86387,0.8905,0.8996,0.92527,0.93144,0.94906,0.95307,0.95876,0.95903,0.96301,0.97325,0.9894,0.98965,0.99742,0.99944,1,0.98363,0.97178,0.97044,0.92747,0.91514,0.91375,0.8835,0.88269,0.8547,0.81377,0.75304,0.74271,0.71769,0.66667,0.64432,0.62419,0.60258,0.53934,0.50708,0.50676,0.49032,0.46585,0.462,0.42903,0.41648,0.40539,0.37602,0.36836,0.35349,0.33766,0.30885,0.28459,0.20969,0.20221,0.19414,0.1807,0.16389,0.16195,0.13943,0.13823,0.13216,0.12503,0.11557,0.040243,0.036968,0.035516,0.032991,0.032071,0.029419,0.021304,0.020373,0.018824,0.017185,0.016175,0.012122,0.01183,0.0090383,0.0065577,0.0049387,0.0048187,0.0034874,0.0026025,0.0025569,0.0022452,0.0017087,0.0016982,0.0016751,0.0011901,0.0011516,0.00094135,0.00085156,0.00067841,0.00063734,0.00047013,0.00044487,0.00032307,0.00029627 1,1.3773e-22,1.7097e-22,1.9271e-22,2.9082e-22,4.8943e-22,4.9539e-22,5.6842e-22,9.8765e-22,3.1163e-21,3.8524e-21,4.1897e-21,4.2022e-21,5.8332e-21,1.0397e-20,1.1212e-20,1.6607e-20,5.4909e-20,1.7259e-19,2.007e-19,4.045e-19,6.0271e-19,8.2898e-19,9.297e-19,1.417e-18,1.4537e-18,2.1696e-18,3.9191e-18,6.5699e-18,8.165e-18,2.1681e-17,2.255e-17,4.9456e-17,7.7075e-17,8.6542e-17,1.4203e-16,1.881e-16,1.89e-16,2.1915e-16,1.8978e-15,1.5428e-14,2.5119e-14,2.5497e-14,2.5538e-14,4.3269e-14,1.017e-13,1.1522e-13,1.2534e-13,4.7287e-13,5.4958e-13,5.9566e-13,2.203e-12,6.1899e-12,1.1594e-11,1.7528e-11,2.876e-11,1.7093e-10,3.1492e-10,3.387e-10,7.6815e-10,1.8926e-09,2.828e-09,2.8323e-09,4.9824e-09,6.8203e-09,8.4523e-09,1.1092e-08,1.393e-08,1.9098e-08,2.1823e-08,3.2068e-08,6.2383e-08,8.3488e-08,1.3201e-07,3.2422e-07,3.5441e-07,4.9783e-07,6.0736e-07,1.0827e-06,2.8796e-06,3.734e-06,7.5669e-06,1.3128e-05,1.7638e-05,2.9356e-05,3.1399e-05,3.3416e-05,4.567e-05,5.4335e-05,5.4536e-05,6.2893e-05,7.0016e-05,8.3933e-05,8.5206e-05,8.5771e-05,8.8995e-05,9.8449e-05,0.00011627,0.00012671,0.00018734,0.00018748,0.00029683,0.0002986,0.00032891,0.00035004,0.00036432,0.0004147,0.00047392,0.00071798,0.00076118,0.00091728,0.0020065,0.0025238,0.0027236,0.0043121,0.0045504,0.004829,0.0075121,0.0079868,0.0095608,0.010275,0.010531,0.011042,0.014931,0.020154,0.020773,0.022453,0.025727,0.038252,0.038905,0.039968,0.073981,0.10761,0.12488,0.13281,0.15667,0.16935,0.17573,0.20118,0.25615,0.28941,0.29654,0.30393,0.30506,0.32181,0.48258,0.51342,0.52028,0.53676,0.58335,0.60639,0.67638,0.68518,0.69721,0.70292,0.72085,0.74805,0.7604,0.77019,0.80254,0.81392,0.84723,0.85556,0.88026,0.88612,0.89463,0.89504,0.90115,0.91765,0.94774,0.94827,0.96835,0.97712,0.98363,1,0.99834,0.998,0.97893,0.97174,0.9709,0.95129,0.95074,0.93081,0.89948,0.84933,0.84045,0.81853,0.77232,0.75148,0.73242,0.71165,0.64919,0.6164,0.61608,0.59912,0.57359,0.56955,0.53453,0.52103,0.50903,0.47687,0.4684,0.45186,0.4341,0.40135,0.37337,0.28436,0.27524,0.26535,0.24874,0.22775,0.2253,0.1967,0.19516,0.18736,0.17813,0.16581,0.06274,0.057982,0.055863,0.052159,0.050805,0.046881,0.03469,0.033272,0.0309,0.028374,0.026809,0.020456,0.019993,0.015524,0.011476,0.0087821,0.0085804,0.0063208,0.0047912,0.0047116,0.0041655,0.0032149,0.0031962,0.0031549,0.0022803,0.0022101,0.0018245,0.0016585,0.0013358,0.0012586,0.00094175,0.00089344,0.00065841,0.00060616 1,7.7149e-23,9.5881e-23,1.0815e-22,1.636e-22,2.7615e-22,2.7954e-22,3.21e-22,5.5956e-22,1.7775e-21,2.2002e-21,2.394e-21,2.4012e-21,3.3397e-21,5.9732e-21,6.4447e-21,9.5682e-21,3.1866e-20,1.0087e-19,1.1741e-19,2.3767e-19,3.5501e-19,4.8928e-19,5.4912e-19,8.3917e-19,8.6103e-19,1.2884e-18,2.3361e-18,3.9293e-18,4.8902e-18,1.3069e-17,1.3596e-17,2.9973e-17,4.685e-17,5.2645e-17,8.6684e-17,1.1503e-16,1.1558e-16,1.3415e-16,1.1791e-15,9.7293e-15,1.5897e-14,1.6138e-14,1.6164e-14,2.7492e-14,6.5027e-14,7.374e-14,8.0271e-14,3.0589e-13,3.5591e-13,3.86e-13,1.4421e-12,4.0854e-12,7.6914e-12,1.1667e-11,1.9221e-11,1.1597e-10,2.1479e-10,2.3115e-10,5.2803e-10,1.3116e-09,1.967e-09,1.97e-09,3.4837e-09,4.7827e-09,5.9392e-09,7.8138e-09,9.835e-09,1.3525e-08,1.5474e-08,2.2824e-08,4.4694e-08,5.999e-08,9.5296e-08,2.3625e-07,2.5849e-07,3.6441e-07,4.4553e-07,7.9926e-07,2.1491e-06,2.795e-06,5.7111e-06,9.9743e-06,1.3449e-05,2.2526e-05,2.4114e-05,2.5684e-05,3.5243e-05,4.2024e-05,4.2181e-05,4.8736e-05,5.4332e-05,6.5288e-05,6.6291e-05,6.6737e-05,6.9279e-05,7.6742e-05,9.0835e-05,9.9113e-05,0.00014732,0.00014743,0.00023494,0.00023637,0.00026072,0.00027771,0.00028921,0.00032982,0.00037766,0.00057571,0.0006109,0.00073828,0.0016351,0.0020645,0.0022307,0.0035596,0.0037599,0.0039942,0.0062633,0.0066666,0.0080073,0.0086169,0.0088363,0.0092732,0.012613,0.017129,0.017666,0.019126,0.021978,0.032963,0.033539,0.034475,0.064761,0.095132,0.11086,0.11809,0.13999,0.15168,0.15757,0.18116,0.23254,0.26388,0.27062,0.27762,0.27869,0.29459,0.44942,0.47959,0.48631,0.50252,0.54858,0.57149,0.64172,0.65063,0.66282,0.66862,0.68689,0.71474,0.72746,0.73756,0.77118,0.78308,0.81824,0.8271,0.8536,0.85995,0.86919,0.86964,0.87632,0.89452,0.92847,0.92909,0.95273,0.96349,0.97178,0.99834,1,0.99998,0.98899,0.9836,0.98295,0.96716,0.9667,0.94976,0.92211,0.8763,0.86804,0.84751,0.80364,0.78362,0.76521,0.74504,0.68376,0.65126,0.65093,0.63404,0.6085,0.60444,0.56918,0.55553,0.54336,0.51065,0.50201,0.48508,0.46686,0.43312,0.40415,0.31105,0.30142,0.29097,0.27337,0.25106,0.24845,0.21787,0.21622,0.20784,0.19792,0.18463,0.071728,0.066416,0.064046,0.059897,0.058379,0.053971,0.040211,0.038602,0.035909,0.033035,0.031251,0.023981,0.023449,0.018301,0.013609,0.010468,0.010232,0.0075799,0.0057741,0.0056799,0.0050323,0.0039013,0.003879,0.0038297,0.0027831,0.0026988,0.0022349,0.0020348,0.0016445,0.0015509,0.0011657,0.0011068,0.00081946,0.00075536 1,7.2844e-23,9.0541e-23,1.0213e-22,1.5454e-22,2.6093e-22,2.6413e-22,3.0334e-22,5.2893e-22,1.6814e-21,2.0814e-21,2.2649e-21,2.2717e-21,3.1602e-21,5.6541e-21,6.1006e-21,9.0595e-21,3.0194e-20,9.5641e-20,1.1133e-19,2.2547e-19,3.3687e-19,4.6437e-19,5.212e-19,7.9672e-19,8.1748e-19,1.2235e-18,2.2194e-18,3.7341e-18,4.648e-18,1.2429e-17,1.2931e-17,2.8521e-17,4.4594e-17,5.0114e-17,8.2544e-17,1.0955e-16,1.1008e-16,1.2778e-16,1.1248e-15,9.2946e-15,1.5192e-14,1.5422e-14,1.5447e-14,2.6284e-14,6.2206e-14,7.0548e-14,7.6801e-14,2.9295e-13,3.4091e-13,3.6974e-13,1.3828e-12,3.9205e-12,7.3846e-12,1.1205e-11,1.8468e-11,1.1159e-10,2.0678e-10,2.2255e-10,5.0875e-10,1.2647e-09,1.8974e-09,1.9003e-09,3.3621e-09,4.6172e-09,5.7347e-09,7.5468e-09,9.5009e-09,1.3069e-08,1.4955e-08,2.2066e-08,4.3238e-08,5.8053e-08,9.2262e-08,2.2893e-07,2.5051e-07,3.5329e-07,4.3203e-07,7.7552e-07,2.0875e-06,2.7157e-06,5.5535e-06,9.7055e-06,1.3091e-05,2.1941e-05,2.349e-05,2.502e-05,3.4346e-05,4.0964e-05,4.1117e-05,4.7515e-05,5.2978e-05,6.3677e-05,6.4657e-05,6.5092e-05,6.7575e-05,7.4864e-05,8.8631e-05,9.6719e-05,0.00014384,0.00014395,0.00022954,0.00023093,0.00025476,0.00027139,0.00028264,0.00032239,0.00036922,0.00056319,0.00059767,0.00072249,0.0016021,0.0020236,0.0021868,0.0034922,0.0036891,0.0039194,0.0061507,0.0065475,0.0078669,0.0084669,0.0086829,0.0091131,0.012402,0.016853,0.017383,0.018822,0.021635,0.032476,0.033045,0.03397,0.063904,0.093964,0.10954,0.11671,0.13842,0.15001,0.15585,0.17926,0.23028,0.26143,0.26814,0.27509,0.27616,0.29197,0.44619,0.47628,0.483,0.49917,0.54516,0.56805,0.63828,0.6472,0.6594,0.66521,0.6835,0.7114,0.72415,0.73428,0.76801,0.77996,0.81528,0.82419,0.85086,0.85725,0.86657,0.86702,0.87375,0.8921,0.92643,0.92705,0.95103,0.96198,0.97044,0.998,0.99998,1,0.98981,0.9846,0.98397,0.96856,0.96811,0.95148,0.92421,0.87885,0.87066,0.85028,0.80665,0.78672,0.76839,0.74828,0.68715,0.65469,0.65436,0.63748,0.61195,0.60789,0.57262,0.55896,0.54678,0.51402,0.50536,0.4884,0.47014,0.43631,0.40725,0.31376,0.30408,0.29358,0.27588,0.25344,0.25081,0.22004,0.21838,0.20994,0.19995,0.18657,0.07267,0.0673,0.064904,0.06071,0.059175,0.054717,0.040795,0.039166,0.036439,0.033529,0.031722,0.024357,0.023817,0.018598,0.013838,0.010649,0.010409,0.0077157,0.0058804,0.0057846,0.0051262,0.0039759,0.0039531,0.003903,0.0028379,0.0027521,0.0022798,0.0020759,0.0016783,0.001583,0.0011903,0.0011303,0.00083721,0.00077182 1,1.7001e-23,2.1197e-23,2.3951e-23,3.6455e-23,6.2017e-23,6.2788e-23,7.2251e-23,1.27e-22,4.1055e-22,5.0982e-22,5.5546e-22,5.5715e-22,7.7883e-22,1.4055e-21,1.5182e-21,2.2678e-21,7.6959e-21,2.4808e-20,2.8945e-20,5.9259e-20,8.9091e-20,1.2342e-19,1.3878e-19,2.1355e-19,2.1921e-19,3.3017e-19,6.0456e-19,1.0257e-18,1.2811e-18,3.4806e-18,3.6234e-18,8.096e-18,1.2752e-17,1.4358e-17,2.3846e-17,3.1797e-17,3.1953e-17,3.7183e-17,3.3962e-16,2.9122e-15,4.8019e-15,4.876e-15,4.8841e-15,8.3904e-15,2.0172e-14,2.293e-14,2.5001e-14,9.7774e-14,1.141e-13,1.2394e-13,4.7538e-13,1.3756e-12,2.6238e-12,4.0147e-12,6.6842e-12,4.1923e-11,7.8713e-11,8.485e-11,1.9747e-10,5.0087e-10,7.5833e-10,7.5951e-10,1.3613e-09,1.8832e-09,2.3508e-09,3.1134e-09,3.9409e-09,5.462e-09,6.2701e-09,9.3384e-09,1.86e-08,2.5156e-08,4.0444e-08,1.0271e-07,1.1265e-07,1.603e-07,1.9707e-07,3.5932e-07,9.9388e-07,1.3026e-06,2.7189e-06,4.8304e-06,6.5742e-06,1.1193e-05,1.2009e-05,1.2816e-05,1.7769e-05,2.1311e-05,2.1394e-05,2.4837e-05,2.779e-05,3.3601e-05,3.4135e-05,3.4372e-05,3.5727e-05,3.9714e-05,4.728e-05,5.1744e-05,7.799e-05,7.8049e-05,0.00012647,0.00012727,0.00014088,0.00015042,0.00015688,0.00017978,0.0002069,0.00032049,0.00034086,0.00041498,0.00094904,0.00121,0.0013117,0.0021361,0.0022618,0.0024092,0.0038563,0.0041167,0.0049878,0.0053864,0.0055303,0.0058173,0.0080337,0.011083,0.011448,0.012447,0.014409,0.022101,0.022509,0.023175,0.045219,0.068134,0.080246,0.085874,0.10308,0.11236,0.11707,0.13609,0.17837,0.2047,0.21042,0.21637,0.21728,0.23088,0.36824,0.39603,0.40227,0.41739,0.46092,0.48289,0.55167,0.56056,0.57278,0.57862,0.59714,0.62573,0.63893,0.64949,0.68512,0.69794,0.73645,0.74634,0.77641,0.78374,0.7945,0.79503,0.80289,0.82465,0.8671,0.8679,0.8996,0.91499,0.92747,0.97893,0.98899,0.98981,1,0.99945,0.99933,0.99401,0.9938,0.98527,0.96827,0.93552,0.9292,0.91308,0.87696,0.85985,0.84381,0.82594,0.76991,0.73924,0.73893,0.72276,0.69801,0.69404,0.65924,0.6456,0.63336,0.60011,0.59124,0.57376,0.55479,0.51927,0.48833,0.38616,0.37535,0.36356,0.34357,0.31798,0.31496,0.27938,0.27745,0.26758,0.25585,0.24003,0.099819,0.092885,0.089778,0.084318,0.082313,0.076469,0.05799,0.055803,0.052127,0.048186,0.045727,0.035609,0.034862,0.027571,0.020819,0.016225,0.015877,0.011934,0.0092075,0.0090641,0.0080755,0.006333,0.0062984,0.0062219,0.0045855,0.0044526,0.0037172,0.0033978,0.0027706,0.0026194,0.001992,0.0018953,0.0014201,0.0013133 1,1.2112e-23,1.5112e-23,1.7083e-23,2.6036e-23,4.437e-23,4.4923e-23,5.1718e-23,9.1076e-23,2.9557e-22,3.673e-22,4.0029e-22,4.0152e-22,5.619e-22,1.016e-21,1.0978e-21,1.642e-21,5.5956e-21,1.8111e-20,2.1143e-20,4.3394e-20,6.5332e-20,9.0613e-20,1.0193e-19,1.5709e-19,1.6126e-19,2.4325e-19,4.4638e-19,7.5874e-19,9.485e-19,2.5864e-18,2.6929e-18,6.0348e-18,9.5213e-18,1.0725e-17,1.7847e-17,2.3824e-17,2.3941e-17,2.7876e-17,2.568e-16,2.2209e-15,3.6694e-15,3.7263e-15,3.7325e-15,6.4262e-15,1.5506e-14,1.7635e-14,1.9235e-14,7.5659e-14,8.8353e-14,9.6008e-14,3.7039e-13,1.0768e-12,2.0599e-12,3.158e-12,5.2702e-12,3.334e-11,6.2789e-11,6.7708e-11,1.5823e-10,4.0321e-10,6.1176e-10,6.1271e-10,1.1015e-09,1.5264e-09,1.9075e-09,2.5301e-09,3.2066e-09,4.452e-09,5.1144e-09,7.6337e-09,1.5262e-08,2.0676e-08,3.3331e-08,8.5099e-08,9.3388e-08,1.3317e-07,1.6391e-07,2.9994e-07,8.3486e-07,1.096e-06,2.2987e-06,4.0993e-06,5.5908e-06,9.5537e-06,1.0255e-05,1.0949e-05,1.5215e-05,1.8272e-05,1.8343e-05,2.1318e-05,2.3872e-05,2.8904e-05,2.9366e-05,2.9572e-05,3.0746e-05,3.4204e-05,4.0772e-05,4.4652e-05,6.7508e-05,6.756e-05,0.00010988,0.00011058,0.00012251,0.00013086,0.00013653,0.00015663,0.00018046,0.00028053,0.00029851,0.00036402,0.00083846,0.0010713,0.0011623,0.0019012,0.0020142,0.0021468,0.003452,0.0036874,0.0044763,0.0048379,0.0049685,0.0052291,0.0072458,0.010031,0.010365,0.01128,0.01308,0.020162,0.020539,0.021153,0.041626,0.063074,0.074463,0.079765,0.096013,0.1048,0.10926,0.12732,0.16766,0.19289,0.19838,0.2041,0.20497,0.21805,0.35123,0.3784,0.38451,0.39933,0.4421,0.46375,0.53184,0.54067,0.55284,0.55865,0.57711,0.60568,0.61891,0.6295,0.66534,0.67827,0.71726,0.72731,0.75795,0.76544,0.77646,0.777,0.78506,0.80746,0.85146,0.8523,0.88554,0.90184,0.91514,0.97174,0.9836,0.9846,0.99945,1,0.99999,0.99707,0.99693,0.99035,0.9759,0.94636,0.94053,0.92554,0.89145,0.87513,0.85975,0.84253,0.78811,0.75807,0.75777,0.74186,0.71746,0.71354,0.67907,0.66551,0.65334,0.62016,0.61128,0.59378,0.57475,0.539,0.50776,0.40396,0.39292,0.38086,0.36038,0.33411,0.33101,0.29437,0.29237,0.28219,0.27005,0.25368,0.1071,0.099772,0.096484,0.090701,0.088576,0.082377,0.062716,0.060383,0.056458,0.052244,0.049613,0.038762,0.037958,0.030109,0.022812,0.01783,0.017452,0.01316,0.010183,0.010026,0.0089434,0.0070316,0.0069935,0.0069095,0.0051082,0.0049615,0.0041496,0.0037963,0.0031018,0.0029341,0.0022371,0.0021295,0.0015999,0.0014805 1,1.1673e-23,1.4565e-23,1.6465e-23,2.5098e-23,4.2779e-23,4.3313e-23,4.9866e-23,8.7833e-23,2.8516e-22,3.544e-22,3.8624e-22,3.8743e-22,5.4225e-22,9.8069e-22,1.0596e-21,1.5852e-21,5.4045e-21,1.75e-20,2.0431e-20,4.1944e-20,6.316e-20,8.7611e-20,9.8556e-20,1.5191e-19,1.5595e-19,2.3528e-19,4.3185e-19,7.342e-19,9.1791e-19,2.5039e-18,2.6071e-18,5.8444e-18,9.2227e-18,1.039e-17,1.7292e-17,2.3086e-17,2.3199e-17,2.7013e-17,2.4908e-16,2.1562e-15,3.5633e-15,3.6186e-15,3.6246e-15,6.2419e-15,1.5067e-14,1.7137e-14,1.8693e-14,7.3572e-14,8.5922e-14,9.337e-14,3.6044e-13,1.0484e-12,2.0062e-12,3.0764e-12,5.1352e-12,3.2517e-11,6.1259e-11,6.6061e-11,1.5445e-10,3.9378e-10,5.9758e-10,5.9852e-10,1.0763e-09,1.4918e-09,1.8645e-09,2.4735e-09,3.1352e-09,4.3537e-09,5.002e-09,7.4675e-09,1.4936e-08,2.0238e-08,3.2634e-08,8.3369e-08,9.1495e-08,1.305e-07,1.6065e-07,2.9408e-07,8.1911e-07,1.0756e-06,2.2569e-06,4.0264e-06,5.4927e-06,9.3898e-06,1.0079e-05,1.0762e-05,1.4959e-05,1.7967e-05,1.8037e-05,2.0965e-05,2.3479e-05,2.8432e-05,2.8888e-05,2.909e-05,3.0246e-05,3.365e-05,4.0118e-05,4.3938e-05,6.6452e-05,6.6502e-05,0.00010821,0.00010889,0.00012065,0.00012889,0.00013447,0.00015429,0.00017778,0.00027648,0.00029422,0.00035884,0.00082718,0.0010572,0.001147,0.0018772,0.0019888,0.0021199,0.0034104,0.0036433,0.0044237,0.0047814,0.0049106,0.0051684,0.0071643,0.0099216,0.010253,0.011159,0.012942,0.019961,0.020334,0.020943,0.04125,0.062542,0.073854,0.079122,0.095267,0.104,0.10844,0.12639,0.16652,0.19163,0.1971,0.20279,0.20366,0.21669,0.34941,0.3765,0.3826,0.39738,0.44007,0.46169,0.52969,0.53852,0.55067,0.55648,0.57494,0.6035,0.61673,0.62732,0.66318,0.67612,0.71515,0.72522,0.75592,0.76342,0.77447,0.77501,0.78309,0.80555,0.84972,0.85056,0.88397,0.90036,0.91375,0.9709,0.98295,0.98397,0.99933,0.99999,1,0.99734,0.9972,0.99084,0.97667,0.94749,0.94171,0.92684,0.89298,0.87675,0.86145,0.84431,0.79006,0.7601,0.7598,0.74392,0.71956,0.71565,0.68122,0.66767,0.65551,0.62234,0.61346,0.59596,0.57693,0.54116,0.50989,0.40592,0.39485,0.38276,0.36223,0.33589,0.33279,0.29603,0.29402,0.2838,0.27163,0.25519,0.10792,0.10054,0.097237,0.091419,0.089279,0.083041,0.063249,0.060899,0.056947,0.052703,0.050052,0.039119,0.038309,0.030397,0.023039,0.018013,0.017632,0.0133,0.010294,0.010136,0.0090427,0.0071117,0.0070732,0.0069883,0.0051682,0.00502,0.0041993,0.0038422,0.0031399,0.0029703,0.0022653,0.0021565,0.0016206,0.0014998 1,5.4979e-24,6.871e-24,7.774e-24,1.1886e-23,2.0337e-23,2.0593e-23,2.3733e-23,4.1973e-23,1.3745e-22,1.7109e-22,1.8658e-22,1.8716e-22,2.626e-22,4.7701e-22,5.1571e-22,7.7383e-22,2.6626e-21,8.699e-21,1.0168e-20,2.099e-20,3.1708e-20,4.4095e-20,4.9649e-20,7.6789e-20,7.8847e-20,1.1934e-19,2.201e-19,3.7578e-19,4.7064e-19,1.2943e-18,1.348e-18,3.0419e-18,4.8183e-18,5.4332e-18,9.0808e-18,1.2153e-17,1.2213e-17,1.4239e-17,1.3379e-16,1.1802e-15,1.9592e-15,1.9899e-15,1.9932e-15,3.4494e-15,8.3932e-15,9.5577e-15,1.0434e-14,4.159e-14,4.8643e-14,5.29e-14,2.0686e-13,6.0799e-13,1.1709e-12,1.8032e-12,3.0255e-12,1.9526e-11,3.7032e-11,3.9968e-11,9.4302e-11,2.4291e-10,3.7035e-10,3.7093e-10,6.715e-10,9.3413e-10,1.1706e-09,1.558e-09,1.9802e-09,2.7604e-09,3.1766e-09,4.765e-09,9.6108e-09,1.3071e-08,2.1201e-08,5.4806e-08,6.0219e-08,8.6283e-08,1.0651e-07,1.9653e-07,5.5505e-07,7.3159e-07,1.5513e-06,2.7908e-06,3.8246e-06,6.591e-06,7.0825e-06,7.5702e-06,1.0576e-05,1.2738e-05,1.2789e-05,1.49e-05,1.6716e-05,2.0304e-05,2.0635e-05,2.0781e-05,2.1621e-05,2.4095e-05,2.8808e-05,3.1599e-05,4.8116e-05,4.8153e-05,7.8998e-05,7.9507e-05,8.8246e-05,9.4377e-05,9.854e-05,0.00011333,0.00013091,0.00020519,0.0002186,0.00026759,0.0006266,0.00080468,0.00087445,0.0014454,0.0015332,0.0016364,0.0026594,0.0028451,0.0034692,0.0037563,0.0038601,0.0040674,0.0056804,0.0079273,0.0081987,0.008941,0.010407,0.01623,0.016541,0.01705,0.034214,0.052525,0.062351,0.066946,0.081103,0.088806,0.092726,0.10866,0.14464,0.16737,0.17234,0.17752,0.17832,0.19021,0.31347,0.33908,0.34486,0.3589,0.39971,0.42051,0.48655,0.49518,0.50711,0.51283,0.53101,0.55932,0.57249,0.58306,0.61907,0.63214,0.67186,0.68218,0.71384,0.72163,0.73313,0.73369,0.74214,0.76575,0.81288,0.81378,0.85022,0.86842,0.8835,0.95129,0.96716,0.96856,0.99401,0.99707,0.99734,1,1,0.99804,0.98965,0.9679,0.96327,0.95106,0.92209,0.90778,0.8941,0.87859,0.82846,0.8002,0.79991,0.7848,0.76143,0.75766,0.72428,0.71106,0.69913,0.66642,0.65762,0.6402,0.62118,0.5852,0.5535,0.44653,0.43501,0.42239,0.40088,0.37314,0.36986,0.33086,0.32872,0.31782,0.30479,0.28715,0.12556,0.11726,0.11353,0.10696,0.10454,0.097469,0.074885,0.072187,0.067641,0.062747,0.059684,0.046984,0.046039,0.036768,0.028078,0.022095,0.021639,0.016439,0.012804,0.012612,0.011283,0.0089234,0.0088762,0.0087721,0.0065323,0.0063491,0.0053323,0.0048883,0.0040124,0.0038002,0.0029149,0.0027777,0.0020998,0.0019464 1,5.3949e-24,6.7425e-24,7.6289e-24,1.1665e-23,1.9961e-23,2.0212e-23,2.3294e-23,4.1202e-23,1.3495e-22,1.6799e-22,1.832e-22,1.8377e-22,2.5786e-22,4.6846e-22,5.0647e-22,7.6001e-22,2.6157e-21,8.5475e-21,9.9911e-21,2.0628e-20,3.1164e-20,4.3341e-20,4.8801e-20,7.5484e-20,7.7507e-20,1.1732e-19,2.164e-19,3.6951e-19,4.6281e-19,1.273e-18,1.3259e-18,2.9924e-18,4.7403e-18,5.3454e-18,8.935e-18,1.1959e-17,1.2018e-17,1.4012e-17,1.3172e-16,1.1625e-15,1.93e-15,1.9602e-15,1.9635e-15,3.3983e-15,8.2707e-15,9.4184e-15,1.0282e-14,4.0998e-14,4.7952e-14,5.215e-14,2.0399e-13,5.9971e-13,1.1552e-12,1.7791e-12,2.9855e-12,1.9277e-11,3.6567e-11,3.9466e-11,9.3138e-11,2.3997e-10,3.6592e-10,3.6649e-10,6.6357e-10,9.2319e-10,1.1569e-09,1.5399e-09,1.9574e-09,2.7289e-09,3.1405e-09,4.7114e-09,9.5047e-09,1.2927e-08,2.0972e-08,5.423e-08,5.9588e-08,8.5388e-08,1.0541e-07,1.9455e-07,5.4963e-07,7.2452e-07,1.5367e-06,2.7652e-06,3.7898e-06,6.5324e-06,7.0198e-06,7.5033e-06,1.0483e-05,1.2628e-05,1.2678e-05,1.4772e-05,1.6573e-05,2.0132e-05,2.046e-05,2.0606e-05,2.1438e-05,2.3893e-05,2.8569e-05,3.1337e-05,4.7725e-05,4.7763e-05,7.8373e-05,7.8879e-05,8.7552e-05,9.3638e-05,9.777e-05,0.00011245,0.00012991,0.00020365,0.00021697,0.00026561,0.00062222,0.00079915,0.00086847,0.0014359,0.0015232,0.0016258,0.0026427,0.0028273,0.003448,0.0037334,0.0038366,0.0040428,0.0056471,0.0078824,0.0081524,0.008891,0.01035,0.016145,0.016455,0.016961,0.034052,0.052292,0.062083,0.066662,0.080772,0.088449,0.092357,0.10825,0.14412,0.1668,0.17175,0.17692,0.17771,0.18958,0.3126,0.33817,0.34394,0.35797,0.39872,0.4195,0.48548,0.49411,0.50603,0.51174,0.52992,0.55822,0.57138,0.58196,0.61796,0.63104,0.67077,0.68109,0.71277,0.72056,0.73208,0.73264,0.74109,0.76473,0.81192,0.81283,0.84934,0.86758,0.88269,0.95074,0.9667,0.96811,0.9938,0.99693,0.9972,1,1,0.99815,0.98991,0.96835,0.96375,0.95161,0.92276,0.90851,0.89488,0.87941,0.82938,0.80117,0.80088,0.7858,0.76246,0.75869,0.72534,0.71213,0.70021,0.66752,0.65872,0.64131,0.62229,0.5863,0.5546,0.44757,0.43603,0.4234,0.40187,0.3741,0.37082,0.33176,0.32962,0.3187,0.30565,0.28798,0.12602,0.11771,0.11397,0.10738,0.10495,0.097853,0.075197,0.07249,0.067928,0.063017,0.059943,0.047197,0.046248,0.036941,0.028215,0.022207,0.021749,0.016526,0.012873,0.01268,0.011344,0.0089736,0.0089262,0.0088216,0.0065702,0.0063861,0.0053639,0.0049176,0.0040368,0.0038234,0.0029331,0.0027952,0.0021133,0.001959 1,2.8697e-24,3.5912e-24,4.0663e-24,6.2332e-24,1.07e-23,1.0835e-23,1.2498e-23,2.2182e-23,7.3175e-23,9.1211e-23,9.9525e-23,9.9833e-23,1.4037e-22,2.5595e-22,2.7685e-22,4.1649e-22,1.4444e-21,4.7553e-21,5.564e-21,1.1541e-20,1.7481e-20,2.4363e-20,2.7454e-20,4.2584e-20,4.3733e-20,6.6376e-20,1.2292e-19,2.1063e-19,2.6421e-19,7.3165e-19,7.6225e-19,1.7298e-18,2.7488e-18,3.1022e-18,5.2037e-18,6.9785e-18,7.0132e-18,8.1857e-18,7.8167e-17,7.0081e-16,1.1678e-15,1.1862e-15,1.1883e-15,2.065e-15,5.0592e-15,5.7669e-15,6.2998e-15,2.5388e-14,2.973e-14,3.2354e-14,1.2792e-13,3.7934e-13,7.3461e-13,1.1354e-12,1.9136e-12,1.2553e-11,2.3945e-11,2.5861e-11,6.1496e-11,1.5981e-10,2.4463e-10,2.4502e-10,4.4607e-10,6.2253e-10,7.8181e-10,1.0435e-09,1.3294e-09,1.8593e-09,2.1427e-09,3.2272e-09,6.5559e-09,8.9444e-09,1.4582e-08,3.8079e-08,4.1883e-08,6.0247e-08,7.454e-08,1.3849e-07,3.9581e-07,5.2339e-07,1.1198e-06,2.0292e-06,2.7917e-06,4.8444e-06,5.2105e-06,5.574e-06,7.8208e-06,9.4431e-06,9.4811e-06,1.1068e-05,1.2437e-05,1.5146e-05,1.5396e-05,1.5507e-05,1.6142e-05,1.8015e-05,2.1592e-05,2.3713e-05,3.632e-05,3.6349e-05,6.0053e-05,6.0447e-05,6.7191e-05,7.193e-05,7.515e-05,8.6607e-05,0.00010026,0.00015821,0.00016871,0.00020715,0.00049167,0.00063401,0.00068993,0.0011502,0.0012213,0.001305,0.0021392,0.0022914,0.0028044,0.0030409,0.0031265,0.0032977,0.0046351,0.0065113,0.0067388,0.0073619,0.0085962,0.013532,0.013798,0.014232,0.029019,0.045028,0.053692,0.057759,0.070343,0.077221,0.080729,0.095045,0.12763,0.14839,0.15294,0.1577,0.15843,0.16937,0.28439,0.30863,0.31412,0.32748,0.36648,0.38647,0.45042,0.45885,0.47049,0.47608,0.49391,0.52178,0.53479,0.54527,0.5811,0.59417,0.63412,0.64455,0.67673,0.68468,0.69646,0.69704,0.70571,0.73007,0.77923,0.78018,0.81882,0.83836,0.8547,0.93081,0.94976,0.95148,0.98527,0.99035,0.99084,0.99804,0.99815,1,0.99667,0.98158,0.978,0.96822,0.94379,0.93131,0.91919,0.90526,0.85922,0.83273,0.83246,0.81817,0.79591,0.7923,0.76016,0.74733,0.73573,0.70372,0.69507,0.67788,0.65903,0.62317,0.59136,0.48255,0.4707,0.45769,0.43545,0.40665,0.40323,0.36245,0.3602,0.34875,0.33503,0.31639,0.14236,0.13324,0.12912,0.12187,0.11919,0.11135,0.086192,0.083171,0.078071,0.072568,0.069117,0.054747,0.053674,0.043105,0.03313,0.026215,0.025686,0.019634,0.015374,0.015148,0.013584,0.010795,0.01074,0.010616,0.0079523,0.0077337,0.0065172,0.0059847,0.0049308,0.0046748,0.0036034,0.0034368,0.0026112,0.0024237 1,1.2224e-24,1.5324e-24,1.7369e-24,2.6714e-24,4.6055e-24,4.6642e-24,5.3862e-24,9.6032e-24,3.1985e-23,3.9939e-23,4.361e-23,4.3747e-23,6.1681e-23,1.1302e-22,1.2233e-22,1.8464e-22,6.4699e-22,2.1514e-21,2.5206e-21,5.2608e-21,7.9968e-21,1.1177e-20,1.2608e-20,1.963e-20,2.0165e-20,3.0716e-20,5.719e-20,9.8461e-20,1.2375e-19,3.4581e-19,3.604e-19,8.2392e-19,1.3148e-18,1.4854e-18,2.5035e-18,3.3664e-18,3.3833e-18,3.9545e-18,3.8567e-17,3.5315e-16,5.9144e-16,6.0086e-16,6.0189e-16,1.0517e-15,2.5999e-15,2.9675e-15,3.2446e-15,1.3263e-14,1.5556e-14,1.6944e-14,6.7965e-14,2.0391e-13,3.9771e-13,6.1765e-13,1.047e-12,7.0159e-12,1.3483e-11,1.4575e-11,3.5016e-11,9.2047e-11,1.4163e-10,1.4186e-10,2.6019e-10,3.6463e-10,4.5924e-10,6.1518e-10,7.8618e-10,1.1043e-09,1.2749e-09,1.9305e-09,3.9585e-09,5.4231e-09,8.8998e-09,2.355e-08,2.5937e-08,3.7501e-08,4.6538e-08,8.7239e-08,2.5323e-07,3.3627e-07,7.2793e-07,1.3315e-06,1.8412e-06,3.2239e-06,3.4717e-06,3.7181e-06,5.2464e-06,6.3549e-06,6.3809e-06,7.4689e-06,8.4089e-06,1.0275e-05,1.0448e-05,1.0525e-05,1.0963e-05,1.2259e-05,1.474e-05,1.6215e-05,2.5025e-05,2.5045e-05,4.176e-05,4.2039e-05,4.6821e-05,5.0187e-05,5.2477e-05,6.0638e-05,7.039e-05,0.00011206,0.00011964,0.00014751,0.00035632,0.00046194,0.00050359,0.00084897,0.00090266,0.00096594,0.0016014,0.001718,0.0021127,0.0022953,0.0023615,0.002494,0.0035348,0.0050086,0.0051882,0.0056809,0.0066604,0.010615,0.010829,0.011179,0.023276,0.036622,0.043926,0.04737,0.058087,0.06398,0.066994,0.079352,0.10778,0.12609,0.13013,0.13435,0.135,0.14473,0.24902,0.27141,0.2765,0.28891,0.32536,0.34418,0.40494,0.41301,0.4242,0.42958,0.44678,0.4738,0.48649,0.49673,0.53194,0.54486,0.58463,0.59508,0.62753,0.6356,0.64758,0.64817,0.65702,0.68201,0.73312,0.73412,0.77504,0.79603,0.81377,0.89948,0.92211,0.92421,0.96827,0.9759,0.97667,0.98965,0.98991,0.99667,1,0.99384,0.99168,0.98523,0.96714,0.95725,0.94736,0.93572,0.89575,0.87199,0.87174,0.85873,0.83825,0.8349,0.80485,0.79273,0.78172,0.75106,0.74271,0.72606,0.70768,0.67242,0.64083,0.53076,0.51858,0.50518,0.48218,0.4522,0.44863,0.4058,0.40343,0.39132,0.37676,0.35692,0.16671,0.15645,0.15181,0.14361,0.14058,0.13169,0.10293,0.099449,0.093565,0.087199,0.083196,0.066432,0.065173,0.052722,0.040863,0.032567,0.03193,0.024602,0.0194,0.019123,0.0172,0.013756,0.013687,0.013534,0.010216,0.0099427,0.0084161,0.0077453,0.0064126,0.0060878,0.0047228,0.0045096,0.0034489,0.0032068 1,3.7829e-25,4.7538e-25,5.395e-25,8.3361e-25,1.4455e-24,1.4642e-24,1.6934e-24,3.0381e-24,1.0252e-23,1.2833e-23,1.4026e-23,1.407e-23,1.9913e-23,3.6732e-23,3.9792e-23,6.0337e-23,2.1441e-22,7.2273e-22,8.4828e-22,1.7854e-21,2.7272e-21,3.8265e-21,4.3224e-21,6.7647e-21,6.951e-21,1.064e-20,1.9957e-20,3.4581e-20,4.3582e-20,1.2329e-19,1.2856e-19,2.9686e-19,4.7643e-19,5.3908e-19,9.144e-19,1.2341e-18,1.2404e-18,1.4526e-18,1.4579e-17,1.3739e-16,2.3167e-16,2.3541e-16,2.3582e-16,4.1513e-16,1.0388e-15,1.1878e-15,1.3003e-15,5.4192e-15,6.3706e-15,6.9472e-15,2.8418e-14,8.6619e-14,1.7061e-13,2.6668e-13,4.5562e-13,3.1429e-12,6.1021e-12,6.6044e-12,1.6089e-11,4.296e-11,6.6573e-11,6.6682e-11,1.2354e-10,1.7412e-10,2.2015e-10,2.9637e-10,3.8035e-10,5.3739e-10,6.2197e-10,9.4863e-10,1.9701e-09,2.7143e-09,4.4946e-09,1.2109e-08,1.3361e-08,1.9453e-08,2.4241e-08,4.5995e-08,1.3636e-07,1.8213e-07,4.0058e-07,7.4213e-07,1.0334e-06,1.8318e-06,1.9758e-06,2.1193e-06,3.0135e-06,3.6661e-06,3.6815e-06,4.3247e-06,4.8822e-06,5.9936e-06,6.0967e-06,6.1424e-06,6.4045e-06,7.1803e-06,8.6705e-06,9.5597e-06,1.4908e-05,1.492e-05,2.5191e-05,2.5363e-05,2.8324e-05,3.0412e-05,3.1836e-05,3.6921e-05,4.302e-05,6.9311e-05,7.4131e-05,9.1898e-05,0.00022737,0.00029693,0.0003245,0.00055542,0.00059162,0.00063437,0.001068,0.0011483,0.0014213,0.0015482,0.0015943,0.0016867,0.0024179,0.0034664,0.003595,0.0039488,0.0046553,0.0075447,0.0077026,0.007961,0.017053,0.027345,0.033061,0.035774,0.044279,0.048993,0.051414,0.061401,0.084711,0.099942,0.10332,0.10686,0.1074,0.11559,0.20561,0.2254,0.22993,0.24098,0.27373,0.29079,0.34656,0.35405,0.36446,0.36948,0.38558,0.41105,0.42308,0.43282,0.46658,0.47906,0.51781,0.52808,0.56019,0.56824,0.58022,0.58081,0.58971,0.61498,0.66749,0.66853,0.71148,0.73389,0.75304,0.84933,0.8763,0.87885,0.93552,0.94636,0.94749,0.9679,0.96835,0.98158,0.99384,1,0.99984,0.99812,0.98921,0.98313,0.97658,0.96842,0.93791,0.91854,0.91834,0.90745,0.88996,0.88707,0.86069,0.84987,0.83995,0.81195,0.80423,0.78872,0.77145,0.73786,0.70732,0.59781,0.58542,0.57173,0.54809,0.51699,0.51326,0.46825,0.46574,0.45288,0.43737,0.4161,0.20449,0.19261,0.18723,0.17768,0.17413,0.16372,0.12966,0.1255,0.11845,0.11079,0.10595,0.085534,0.083989,0.068619,0.053797,0.043298,0.042486,0.033092,0.026346,0.025984,0.023469,0.018932,0.01884,0.018637,0.014217,0.01385,0.011795,0.010887,0.009074,0.00863,0.0067537,0.006459,0.0049842,0.0046455 1,3.1211e-25,3.9237e-25,4.4539e-25,6.8871e-25,1.1954e-24,1.2108e-24,1.4008e-24,2.5156e-24,8.5069e-24,1.0653e-23,1.1645e-23,1.1682e-23,1.6543e-23,3.0549e-23,3.3098e-23,5.0225e-23,1.7888e-22,6.0433e-22,7.0952e-22,1.4954e-21,2.286e-21,3.2095e-21,3.6262e-21,5.68e-21,5.8367e-21,8.9418e-21,1.6791e-20,2.9126e-20,3.6723e-20,1.041e-19,1.0855e-19,2.5108e-19,4.0332e-19,4.5647e-19,7.7508e-19,1.0467e-18,1.052e-18,1.2324e-18,1.2427e-17,1.1766e-16,1.9862e-16,2.0184e-16,2.0219e-16,3.5636e-16,8.9354e-16,1.022e-15,1.119e-15,4.6783e-15,5.5016e-15,6.0008e-15,2.4625e-14,7.5252e-14,1.4845e-13,2.323e-13,3.9739e-13,2.7542e-12,5.3563e-12,5.7983e-12,1.4157e-11,3.7899e-11,5.8798e-11,5.8894e-11,1.0929e-10,1.5418e-10,1.9506e-10,2.6281e-10,3.3751e-10,4.7732e-10,5.5267e-10,8.4393e-10,1.7563e-09,2.422e-09,4.0164e-09,1.0853e-08,1.1978e-08,1.7459e-08,2.1771e-08,4.1391e-08,1.2314e-07,1.6461e-07,3.63e-07,6.7391e-07,9.3951e-07,1.6686e-06,1.8003e-06,1.9315e-06,2.75e-06,3.3479e-06,3.3619e-06,3.9516e-06,4.4631e-06,5.4832e-06,5.5778e-06,5.6198e-06,5.8605e-06,6.5732e-06,7.943e-06,8.7608e-06,1.3685e-05,1.3696e-05,2.3172e-05,2.3331e-05,2.6066e-05,2.7996e-05,2.9311e-05,3.4013e-05,3.9657e-05,6.4017e-05,6.8488e-05,8.4979e-05,0.00021108,0.00027598,0.00030172,0.00051771,0.00055161,0.00059167,0.00099858,0.0010741,0.0013308,0.0014503,0.0014937,0.0015807,0.0022702,0.0032608,0.0033824,0.0037172,0.0043862,0.0071281,0.0072781,0.0075238,0.016191,0.026044,0.031528,0.034134,0.042314,0.046853,0.049186,0.058819,0.081356,0.096115,0.09939,0.10282,0.10335,0.11131,0.19906,0.21843,0.22286,0.23369,0.26582,0.28258,0.33749,0.34487,0.35514,0.36009,0.37599,0.40117,0.41308,0.42272,0.45618,0.46857,0.50707,0.51729,0.54928,0.5573,0.56927,0.56985,0.57873,0.60399,0.65659,0.65764,0.70081,0.72338,0.74271,0.84045,0.86804,0.87066,0.9292,0.94053,0.94171,0.96327,0.96375,0.978,0.99168,0.99984,1,0.99907,0.99169,0.98626,0.98028,0.97271,0.94386,0.92528,0.92508,0.91457,0.89763,0.89483,0.86913,0.85856,0.84884,0.82136,0.81377,0.7985,0.78146,0.74824,0.71794,0.60879,0.5964,0.5827,0.55899,0.52777,0.52403,0.47874,0.47621,0.46325,0.44761,0.42613,0.21117,0.19902,0.19351,0.18373,0.1801,0.16943,0.13447,0.1302,0.12295,0.11506,0.11008,0.089026,0.087431,0.071547,0.056196,0.045301,0.044458,0.034689,0.02766,0.027283,0.024659,0.01992,0.019824,0.019612,0.014986,0.014602,0.012447,0.011494,0.0095908,0.0091243,0.0071506,0.0068404,0.0052862,0.0049289 1,1.97e-25,2.4789e-25,2.8153e-25,4.3611e-25,7.5868e-25,7.6851e-25,8.896e-25,1.6015e-24,5.4433e-24,6.8227e-24,7.4609e-24,7.4846e-24,1.0615e-23,1.9653e-23,2.13e-23,3.238e-23,1.1595e-22,3.9381e-22,4.6268e-22,9.7837e-22,1.4984e-21,2.1069e-21,2.3818e-21,3.7382e-21,3.8419e-21,5.897e-21,1.1105e-20,1.9311e-20,2.4374e-20,6.9423e-20,7.2409e-20,1.6813e-19,2.7068e-19,3.0653e-19,5.2179e-19,7.0564e-19,7.0925e-19,8.315e-19,8.4786e-18,8.1177e-17,1.374e-16,1.3963e-16,1.3988e-16,2.4725e-16,6.229e-16,7.1296e-16,7.81e-16,3.2899e-15,3.8722e-15,4.2254e-15,1.7472e-14,5.3723e-14,1.0639e-13,1.669e-13,2.8638e-13,2.0073e-12,3.9193e-12,4.2447e-12,1.042e-11,2.8065e-11,4.3661e-11,4.3733e-11,8.1477e-11,1.1519e-10,1.4596e-10,1.9703e-10,2.5345e-10,3.5926e-10,4.1637e-10,6.376e-10,1.3335e-09,1.8429e-09,3.0668e-09,8.3453e-09,9.2171e-09,1.3471e-08,1.6825e-08,3.2139e-08,9.6401e-08,1.2916e-07,2.8659e-07,5.3471e-07,7.4746e-07,1.3339e-06,1.4401e-06,1.5459e-06,2.2076e-06,2.6921e-06,2.7035e-06,3.1822e-06,3.5978e-06,4.4281e-06,4.5052e-06,4.5395e-06,4.7356e-06,5.3169e-06,6.4357e-06,7.1045e-06,1.1143e-05,1.1152e-05,1.8959e-05,1.909e-05,2.1351e-05,2.2947e-05,2.4035e-05,2.7931e-05,3.2613e-05,5.2891e-05,5.6623e-05,7.0408e-05,0.00017652,0.00023145,0.00025329,0.00043717,0.00046613,0.00050037,0.00084955,0.00091454,0.001136,0.0012393,0.0012768,0.0013521,0.0019505,0.0028144,0.0029208,0.0032137,0.0038003,0.0062164,0.006349,0.0065663,0.014287,0.023152,0.028114,0.030478,0.037919,0.042061,0.044193,0.053018,0.073778,0.087448,0.090489,0.093678,0.09417,0.10157,0.18401,0.20238,0.20658,0.21688,0.24753,0.26356,0.31636,0.32349,0.33341,0.3382,0.3536,0.37805,0.38964,0.39904,0.43173,0.44387,0.48171,0.49178,0.52341,0.53136,0.54323,0.54381,0.55264,0.5778,0.63048,0.63153,0.6751,0.698,0.71769,0.81853,0.84751,0.85028,0.91308,0.92554,0.92684,0.95106,0.95161,0.96822,0.98523,0.99812,0.99907,1,0.99631,0.99245,0.98785,0.98174,0.95694,0.9403,0.94012,0.93057,0.91499,0.9124,0.88843,0.87848,0.8693,0.84316,0.83589,0.82122,0.80479,0.77256,0.74296,0.63499,0.62262,0.6089,0.58512,0.55369,0.54991,0.50406,0.50149,0.48832,0.47239,0.45046,0.22768,0.21489,0.20909,0.19876,0.19493,0.18364,0.1465,0.14194,0.1342,0.12576,0.12043,0.097815,0.096096,0.078941,0.06228,0.050397,0.049475,0.038767,0.031027,0.030611,0.027711,0.02246,0.022354,0.022118,0.01697,0.016542,0.014134,0.013067,0.010932,0.010407,0.0081837,0.0078334,0.0060748,0.0056694 1,7.8439e-26,9.8884e-26,1.1242e-25,1.7477e-25,3.054e-25,3.0939e-25,3.5857e-25,6.4863e-25,2.227e-24,2.7966e-24,3.0605e-24,3.0703e-24,4.3671e-24,8.1273e-24,8.8145e-24,1.3447e-23,4.8679e-23,1.6708e-22,1.9657e-22,4.1838e-22,6.4316e-22,9.0707e-22,1.0265e-21,1.6176e-21,1.6628e-21,2.562e-21,4.8521e-21,8.4796e-21,1.0725e-20,3.0841e-20,3.218e-20,7.5301e-20,1.2177e-19,1.3805e-19,2.3617e-19,3.2029e-19,3.2195e-19,3.78e-19,3.9409e-18,3.858e-17,6.5646e-17,6.6724e-17,6.6842e-17,1.1883e-16,3.0222e-16,3.4639e-16,3.798e-16,1.624e-15,1.9148e-15,2.0914e-15,8.7802e-15,2.7329e-14,5.453e-14,8.5976e-14,1.4843e-13,1.064e-12,2.0938e-12,2.2698e-12,5.6325e-12,1.5355e-11,2.4018e-11,2.4059e-11,4.5173e-11,6.4146e-11,8.1525e-11,1.1048e-10,1.4257e-10,2.0301e-10,2.3574e-10,3.6302e-10,7.6671e-10,1.0643e-09,1.7834e-09,4.9211e-09,5.4428e-09,7.9979e-09,1.0021e-08,1.9322e-08,5.8913e-08,7.9284e-08,1.781e-07,3.3559e-07,4.7166e-07,8.497e-07,9.1851e-07,9.8718e-07,1.4182e-06,1.7352e-06,1.7427e-06,2.0569e-06,2.3305e-06,2.8786e-06,2.9296e-06,2.9523e-06,3.0821e-06,3.4674e-06,4.2111e-06,4.6569e-06,7.3627e-06,7.369e-06,1.2649e-05,1.2738e-05,1.4276e-05,1.5364e-05,1.6107e-05,1.877e-05,2.1981e-05,3.5979e-05,3.8569e-05,4.8163e-05,0.00012301,0.0001622,0.00017784,0.00031057,0.00033161,0.00035652,0.00061256,0.00066054,0.00082463,0.00090142,0.00092938,0.00098553,0.0014342,0.0020883,0.0021693,0.0023926,0.0028415,0.0047086,0.0048118,0.004981,0.011079,0.018218,0.022259,0.024194,0.030319,0.03375,0.03552,0.042885,0.060403,0.072062,0.074667,0.077404,0.077827,0.084199,0.1565,0.1729,0.17667,0.18592,0.21361,0.22819,0.27664,0.28323,0.29243,0.29688,0.31122,0.33409,0.34497,0.35383,0.38477,0.39632,0.43256,0.44226,0.47287,0.4806,0.49218,0.49275,0.50137,0.52608,0.57836,0.5794,0.62324,0.64652,0.66667,0.77232,0.80364,0.80665,0.87696,0.89145,0.89298,0.92209,0.92276,0.94379,0.96714,0.98921,0.99169,0.99631,1,0.99931,0.99753,0.9944,0.97804,0.96552,0.96538,0.95787,0.94526,0.94312,0.92296,0.9144,0.90642,0.88332,0.8768,0.86356,0.84857,0.81876,0.79095,0.68668,0.67448,0.66091,0.63724,0.60571,0.60191,0.55538,0.55275,0.53928,0.52291,0.50028,0.26301,0.24895,0.24254,0.23113,0.22689,0.21434,0.17275,0.16761,0.15885,0.14928,0.14321,0.11731,0.11533,0.095466,0.075987,0.061957,0.060863,0.048091,0.038775,0.038272,0.034758,0.02836,0.02823,0.027942,0.021613,0.021083,0.018099,0.016772,0.014103,0.013445,0.010644,0.010201,0.0079659,0.0074482 1,5.2596e-26,6.6359e-26,7.5477e-26,1.1751e-25,2.0575e-25,2.0845e-25,2.4171e-25,4.3814e-25,1.5109e-24,1.8989e-24,2.0787e-24,2.0854e-24,2.97e-24,5.5395e-24,6.0097e-24,9.1819e-24,3.3396e-23,1.1514e-22,1.3555e-22,2.8932e-22,4.4547e-22,6.2908e-22,7.1225e-22,1.1243e-21,1.1558e-21,1.7838e-21,3.3866e-21,5.9312e-21,7.5089e-21,2.1681e-20,2.2626e-20,5.3122e-20,8.6066e-20,9.7626e-20,1.6737e-19,2.2726e-19,2.2844e-19,2.6839e-19,2.8251e-18,2.7923e-17,4.762e-17,4.8406e-17,4.8492e-17,8.6424e-17,2.2069e-16,2.531e-16,2.7763e-16,1.1948e-15,1.4098e-15,1.5404e-15,6.5095e-15,2.0369e-14,4.0775e-14,6.4428e-14,1.1152e-13,8.0716e-13,1.5939e-12,1.7286e-12,4.3093e-12,1.1809e-11,1.8516e-11,1.8547e-11,3.4942e-11,4.9712e-11,6.3263e-11,8.5872e-11,1.1097e-10,1.5833e-10,1.84e-10,2.8404e-10,6.0245e-10,8.3785e-10,1.4082e-09,3.9092e-09,4.3262e-09,6.372e-09,7.9946e-09,1.5478e-08,4.7525e-08,6.4082e-08,1.4472e-07,2.7385e-07,3.8579e-07,6.9785e-07,7.5477e-07,8.1161e-07,1.1689e-06,1.4324e-06,1.4386e-06,1.7e-06,1.9279e-06,2.385e-06,2.4275e-06,2.4465e-06,2.5548e-06,2.8767e-06,3.4988e-06,3.872e-06,6.1431e-06,6.1484e-06,1.0598e-05,1.0673e-05,1.1973e-05,1.2892e-05,1.3521e-05,1.5775e-05,1.8497e-05,3.0398e-05,3.2605e-05,4.079e-05,0.00010502,0.00013881,0.00015232,0.00026736,0.00028564,0.00030731,0.00053072,0.0005727,0.00071653,0.00078394,0.0008085,0.00085785,0.0012531,0.0018318,0.0019036,0.0021017,0.0025007,0.0041671,0.0042595,0.004411,0.0099046,0.01639,0.02008,0.02185,0.027467,0.030621,0.032251,0.039045,0.055281,0.066137,0.068568,0.071123,0.071518,0.077474,0.14561,0.16118,0.16476,0.17357,0.19999,0.21394,0.26049,0.26684,0.27571,0.28,0.29386,0.31601,0.32657,0.33517,0.36528,0.37655,0.41199,0.42149,0.45157,0.45917,0.47058,0.47114,0.47965,0.50407,0.55595,0.55699,0.60074,0.62407,0.64432,0.75148,0.78362,0.78672,0.85985,0.87513,0.87675,0.90778,0.90851,0.93131,0.95725,0.98313,0.98626,0.99245,0.99931,1,0.99945,0.99763,0.98504,0.97439,0.97427,0.96769,0.95645,0.95452,0.93613,0.92823,0.92082,0.89918,0.89303,0.88049,0.86621,0.83762,0.81075,0.70864,0.69658,0.68314,0.65964,0.62821,0.62441,0.57778,0.57515,0.56159,0.5451,0.52226,0.27926,0.26465,0.258,0.24612,0.24169,0.22861,0.18507,0.17967,0.17045,0.16037,0.15397,0.12659,0.12449,0.10339,0.082609,0.067577,0.066402,0.052658,0.042593,0.042048,0.038241,0.031291,0.03115,0.030836,0.023936,0.023356,0.020091,0.018636,0.015706,0.014982,0.011896,0.011406,0.0089338,0.0083598 1,3.672e-26,4.6361e-26,5.2752e-26,8.2245e-26,1.4425e-25,1.4615e-25,1.6955e-25,3.0791e-25,1.066e-24,1.3407e-24,1.4681e-24,1.4728e-24,2.0999e-24,3.9244e-24,4.2587e-24,6.5155e-24,2.3797e-23,8.2383e-23,9.7037e-23,2.0764e-22,3.2017e-22,4.5266e-22,5.1272e-22,8.1057e-22,8.3341e-22,1.2881e-21,2.4508e-21,4.3005e-21,5.4489e-21,1.5791e-20,1.6482e-20,3.8813e-20,6.2991e-20,7.1483e-20,1.2279e-19,1.6691e-19,1.6778e-19,1.9723e-19,2.0939e-18,2.0875e-17,3.5674e-17,3.6264e-17,3.6329e-17,6.4891e-17,1.6631e-16,1.9084e-16,2.094e-16,9.0645e-16,1.0702e-15,1.1698e-15,4.9726e-15,1.5634e-14,3.1387e-14,4.9691e-14,8.6213e-14,6.2944e-13,1.2467e-12,1.3526e-12,3.386e-12,9.3225e-12,1.4648e-11,1.4673e-11,2.7727e-11,3.9513e-11,5.0343e-11,6.8437e-11,8.8553e-11,1.2656e-10,1.4719e-10,2.2771e-10,4.8482e-10,6.754e-10,1.1382e-09,3.1767e-09,3.5175e-09,5.1918e-09,6.5219e-09,1.2673e-08,3.9158e-08,5.289e-08,1.2002e-07,2.2798e-07,3.2183e-07,5.8429e-07,6.3226e-07,6.8019e-07,9.8191e-07,1.2048e-06,1.21e-06,1.4314e-06,1.6246e-06,2.0126e-06,2.0488e-06,2.0648e-06,2.1569e-06,2.4306e-06,2.96e-06,3.278e-06,5.2168e-06,5.2212e-06,9.0337e-06,9.0984e-06,1.0214e-05,1.1004e-05,1.1545e-05,1.3484e-05,1.5829e-05,2.6106e-05,2.8015e-05,3.5107e-05,9.1032e-05,0.00012059,0.00013243,0.00023349,0.0002496,0.00026869,0.00046616,0.00050337,0.00063101,0.00069092,0.00071276,0.00075666,0.0011091,0.0016269,0.0016913,0.0018691,0.0022276,0.0037307,0.0038142,0.0039513,0.0089479,0.014891,0.018287,0.019919,0.02511,0.028031,0.029543,0.035855,0.051002,0.061171,0.063452,0.065852,0.066222,0.071821,0.13633,0.15117,0.15459,0.16301,0.1883,0.20169,0.24652,0.25266,0.26123,0.26539,0.2788,0.30029,0.31055,0.31891,0.34825,0.35926,0.39392,0.40324,0.43278,0.44027,0.4515,0.45206,0.46045,0.48456,0.53598,0.53701,0.58059,0.60391,0.62419,0.73242,0.76521,0.76839,0.84381,0.85975,0.86145,0.8941,0.89488,0.91919,0.94736,0.97658,0.98028,0.98785,0.99753,0.99945,1,0.99936,0.9902,0.98126,0.98115,0.97544,0.96545,0.96372,0.94698,0.9397,0.93282,0.91256,0.90677,0.89489,0.8813,0.85389,0.82794,0.72807,0.71617,0.70287,0.67958,0.64832,0.64453,0.59793,0.59529,0.58169,0.56513,0.54213,0.29433,0.27925,0.27236,0.26007,0.25548,0.24191,0.19661,0.19098,0.18135,0.17081,0.16411,0.13536,0.13316,0.11092,0.088928,0.07296,0.071709,0.057052,0.046279,0.045695,0.041609,0.034135,0.033982,0.033644,0.026198,0.025571,0.022036,0.020458,0.017276,0.016489,0.013126,0.012592,0.0098891,0.0092604 1,2.495e-26,3.1525e-26,3.5886e-26,5.6032e-26,9.8462e-26,9.9761e-26,1.1579e-25,2.107e-25,7.3249e-25,9.2196e-25,1.0099e-24,1.0132e-24,1.4463e-24,2.7087e-24,2.9403e-24,4.505e-24,1.6528e-23,5.7469e-23,6.7731e-23,1.4532e-22,2.2443e-22,3.1769e-22,3.6e-22,5.7008e-22,5.862e-22,9.0746e-22,1.7306e-21,3.0431e-21,3.8591e-21,1.1228e-20,1.1721e-20,2.769e-20,4.5022e-20,5.1116e-20,8.7983e-20,1.1974e-19,1.2036e-19,1.4158e-19,1.517e-18,1.5264e-17,2.6142e-17,2.6576e-17,2.6624e-17,4.7669e-17,1.2265e-16,1.4082e-16,1.5458e-16,6.7331e-16,7.9553e-16,8.6989e-16,3.721e-15,1.1758e-14,2.3681e-14,3.7569e-14,6.5345e-14,4.8153e-13,9.569e-13,1.0386e-12,2.6115e-12,7.2263e-12,1.138e-11,1.14e-11,2.1611e-11,3.0854e-11,3.9359e-11,5.3591e-11,6.9436e-11,9.9425e-11,1.1573e-10,1.7945e-10,3.8363e-10,5.3539e-10,9.0489e-10,2.5401e-09,2.8143e-09,4.1631e-09,5.2365e-09,1.0215e-08,3.1778e-08,4.3001e-08,9.8077e-08,1.8706e-07,2.6466e-07,4.824e-07,5.2228e-07,5.6214e-07,8.1351e-07,9.9952e-07,1.0039e-06,1.189e-06,1.3506e-06,1.6757e-06,1.706e-06,1.7195e-06,1.7967e-06,2.0264e-06,2.4711e-06,2.7386e-06,4.3729e-06,4.3766e-06,7.6028e-06,7.6576e-06,8.604e-06,9.275e-06,9.7337e-06,1.1382e-05,1.3377e-05,2.2148e-05,2.3781e-05,2.9853e-05,7.8007e-05,0.00010358,0.00011383,0.00020169,0.00021573,0.00023238,0.00040516,0.0004378,0.00054996,0.00060268,0.00062191,0.00066059,0.00097181,0.0014309,0.0014881,0.0016462,0.0019654,0.0033093,0.0033842,0.0035072,0.0080149,0.01342,0.016522,0.018016,0.02278,0.025467,0.026859,0.032683,0.046724,0.056192,0.058319,0.060559,0.060905,0.066137,0.12689,0.14096,0.14421,0.15221,0.17631,0.18911,0.2321,0.238,0.24626,0.25026,0.2632,0.28395,0.29388,0.30199,0.33047,0.34117,0.37497,0.38408,0.41301,0.42035,0.43138,0.43193,0.44017,0.46391,0.51473,0.51576,0.55904,0.5823,0.60258,0.71165,0.74504,0.74828,0.82594,0.84253,0.84431,0.87859,0.87941,0.90526,0.93572,0.96842,0.97271,0.98174,0.9944,0.99763,0.99936,1,0.99453,0.98746,0.98737,0.9826,0.974,0.97249,0.95758,0.95098,0.94471,0.926,0.9206,0.90947,0.89667,0.87062,0.84574,0.74857,0.73686,0.72377,0.70076,0.66977,0.66601,0.61955,0.61691,0.6033,0.58669,0.56358,0.31101,0.29542,0.2883,0.27556,0.27081,0.25673,0.20954,0.20365,0.19358,0.18253,0.1755,0.14528,0.14295,0.11945,0.096121,0.07911,0.077775,0.062093,0.050523,0.049894,0.045493,0.037425,0.03726,0.036894,0.028825,0.028145,0.024301,0.022583,0.01911,0.018251,0.01457,0.013984,0.011013,0.010321 1,7.9597e-27,1.008e-26,1.1489e-26,1.8016e-26,3.1833e-26,3.2257e-26,3.7494e-26,6.8629e-26,2.4154e-25,3.0472e-25,3.3408e-25,3.3517e-25,4.8016e-25,9.0497e-25,9.8312e-25,1.5128e-24,5.6241e-24,1.9807e-23,2.3384e-23,5.0572e-23,7.8457e-23,1.1147e-22,1.2648e-22,2.0126e-22,2.0701e-22,3.2195e-22,6.1825e-22,1.0937e-21,1.3905e-21,4.0929e-21,4.2746e-21,1.0195e-20,1.6665e-20,1.8947e-20,3.2811e-20,4.4807e-20,4.5044e-20,5.3082e-20,5.8434e-19,6.0408e-18,1.0412e-17,1.0588e-17,1.0607e-17,1.9125e-17,4.9776e-17,5.7246e-17,6.2912e-17,2.7907e-16,3.3042e-16,3.6171e-16,1.5761e-15,5.0551e-15,1.0275e-14,1.6401e-14,2.874e-14,2.1764e-13,4.3668e-13,4.7448e-13,1.2089e-12,3.3947e-12,5.3819e-12,5.3912e-12,1.0318e-11,1.481e-11,1.8962e-11,2.5939e-11,3.3742e-11,4.8582e-11,5.6681e-11,8.8491e-11,1.9146e-10,2.6862e-10,4.5787e-10,1.3073e-09,1.4508e-09,2.1603e-09,2.7279e-09,5.3824e-09,1.7081e-08,2.324e-08,5.3807e-08,1.0387e-07,1.4792e-07,2.7274e-07,2.9575e-07,3.1878e-07,4.6469e-07,5.7328e-07,5.7585e-07,6.8433e-07,7.7935e-07,9.7113e-07,9.8905e-07,9.9702e-07,1.0427e-06,1.1789e-06,1.4435e-06,1.6032e-06,2.585e-06,2.5873e-06,4.5477e-06,4.5813e-06,5.1604e-06,5.5719e-06,5.8536e-06,6.8686e-06,8.1013e-06,1.3565e-05,1.4588e-05,1.8409e-05,4.92e-05,6.5781e-05,7.2459e-05,0.00013023,0.00013953,0.00015059,0.00026638,0.00028843,0.00036455,0.00040049,0.00041362,0.00044007,0.00065437,0.0009742,0.0010143,0.0011253,0.0013506,0.0023103,0.0023642,0.0024528,0.0057574,0.0098139,0.012174,0.013317,0.016986,0.019071,0.020156,0.024717,0.035859,0.043468,0.045187,0.047001,0.047281,0.051532,0.10201,0.11395,0.11671,0.12354,0.14427,0.15536,0.19301,0.19822,0.20553,0.20908,0.22059,0.23917,0.2481,0.25541,0.28124,0.29101,0.32205,0.33047,0.35735,0.36422,0.37455,0.37506,0.38281,0.40522,0.45372,0.45471,0.49662,0.51936,0.53934,0.64919,0.68376,0.68715,0.76991,0.78811,0.79006,0.82846,0.82938,0.85922,0.89575,0.93791,0.94386,0.95694,0.97804,0.98504,0.9902,0.99453,1,0.99853,0.9985,0.99659,0.99224,0.99139,0.98217,0.97771,0.97332,0.95954,0.9554,0.94672,0.93646,0.91493,0.89368,0.80623,0.79532,0.78304,0.76127,0.73158,0.72794,0.68265,0.68005,0.66661,0.65012,0.62702,0.36299,0.346,0.33821,0.32423,0.319,0.30345,0.25077,0.24413,0.23275,0.22021,0.2122,0.17747,0.17478,0.14742,0.11991,0.099606,0.098002,0.079045,0.064897,0.064124,0.058697,0.04868,0.048474,0.048018,0.037888,0.037028,0.032154,0.029964,0.025517,0.024411,0.019648,0.018886,0.015,0.014089 1,4.3884e-27,5.5639e-27,6.3457e-27,9.9731e-27,1.7672e-26,1.7908e-26,2.0831e-26,3.8246e-26,1.3546e-25,1.711e-25,1.8768e-25,1.8829e-25,2.7024e-25,5.1098e-25,5.5535e-25,8.5647e-25,3.2059e-24,1.1366e-23,1.343e-23,2.9164e-23,4.5352e-23,6.4554e-23,7.3299e-23,1.1693e-22,1.2029e-22,1.8753e-22,3.614e-22,6.4134e-22,8.1648e-22,2.4177e-21,2.5257e-21,6.053e-21,9.9221e-21,1.1289e-20,1.9611e-20,2.6829e-20,2.6972e-20,3.1814e-20,3.5516e-19,3.7234e-18,6.4392e-18,6.5483e-18,6.5602e-18,1.1871e-17,3.1082e-17,3.5778e-17,3.9342e-17,1.7617e-16,2.0881e-16,2.2872e-16,1.0062e-15,3.2522e-15,6.642e-15,1.0636e-14,1.8708e-14,1.4369e-13,2.8974e-13,3.1501e-13,8.0804e-13,2.2864e-12,3.6374e-12,3.6438e-12,7.008e-12,1.0087e-11,1.2939e-11,1.7743e-11,2.3128e-11,3.3395e-11,3.9009e-11,6.1117e-11,1.3305e-10,1.872e-10,3.2048e-10,9.2307e-10,1.0253e-09,1.5319e-09,1.9383e-09,3.8472e-09,1.2336e-08,1.683e-08,3.927e-08,7.6279e-08,1.09e-07,2.0219e-07,2.1941e-07,2.3668e-07,3.463e-07,4.2813e-07,4.3007e-07,5.1198e-07,5.8385e-07,7.2917e-07,7.4276e-07,7.4881e-07,7.8351e-07,8.8695e-07,1.0883e-06,1.21e-06,1.961e-06,1.9627e-06,3.471e-06,3.4968e-06,3.944e-06,4.2622e-06,4.4801e-06,5.2662e-06,6.2227e-06,1.048e-05,1.1281e-05,1.4273e-05,3.8594e-05,5.1785e-05,5.7111e-05,0.0001034,0.00011089,0.00011979,0.0002135,0.00023142,0.00029342,0.00032276,0.0003335,0.00035512,0.00053099,0.00079504,0.00082823,0.00092032,0.0011075,0.00191,0.0019554,0.0020298,0.0048309,0.0083109,0.010349,0.01134,0.014531,0.016351,0.017299,0.021299,0.031135,0.037897,0.039429,0.041047,0.041297,0.045096,0.090723,0.10163,0.10416,0.11042,0.12949,0.13973,0.17468,0.17955,0.18637,0.18969,0.20047,0.21791,0.22631,0.23319,0.25761,0.26687,0.29639,0.30443,0.33015,0.33673,0.34665,0.34715,0.3546,0.37621,0.42322,0.42418,0.4651,0.48742,0.50708,0.6164,0.65126,0.65469,0.73924,0.75807,0.7601,0.8002,0.80117,0.83273,0.87199,0.91854,0.92528,0.9403,0.96552,0.97439,0.98126,0.98746,0.99853,1,1,0.99959,0.99751,0.99701,0.99086,0.98757,0.98421,0.97316,0.96974,0.96243,0.95363,0.9347,0.91559,0.83419,0.82382,0.81209,0.79119,0.76248,0.75895,0.71469,0.71214,0.69892,0.68264,0.65974,0.39152,0.37387,0.36576,0.35118,0.34571,0.32944,0.27402,0.267,0.25494,0.24162,0.2331,0.196,0.19311,0.16367,0.13387,0.11173,0.10998,0.089176,0.073556,0.0727,0.066683,0.055534,0.055304,0.054796,0.043457,0.042492,0.037007,0.034538,0.029507,0.028253,0.022837,0.021968,0.017525,0.01648 1,4.3623e-27,5.5308e-27,6.308e-27,9.9141e-27,1.7568e-26,1.7803e-26,2.0709e-26,3.8022e-26,1.3468e-25,1.7011e-25,1.8659e-25,1.8721e-25,2.6869e-25,5.0806e-25,5.5218e-25,8.516e-25,3.1879e-24,1.1303e-23,1.3355e-23,2.9004e-23,4.5103e-23,6.4202e-23,7.2899e-23,1.163e-22,1.1964e-22,1.8652e-22,3.5946e-22,6.3792e-22,8.1213e-22,2.405e-21,2.5124e-21,6.0214e-21,9.8706e-21,1.1231e-20,1.951e-20,2.6692e-20,2.6834e-20,3.1652e-20,3.5339e-19,3.7053e-18,6.4082e-18,6.5168e-18,6.5287e-18,1.1815e-17,3.0935e-17,3.5609e-17,3.9158e-17,1.7536e-16,2.0785e-16,2.2767e-16,1.0016e-15,3.2378e-15,6.613e-15,1.059e-14,1.8628e-14,1.431e-13,2.8855e-13,3.1372e-13,8.0478e-13,2.2774e-12,3.6232e-12,3.6295e-12,6.9808e-12,1.0048e-11,1.289e-11,1.7676e-11,2.304e-11,3.3269e-11,3.8863e-11,6.0891e-11,1.3257e-10,1.8652e-10,3.1933e-10,9.1985e-10,1.0218e-09,1.5267e-09,1.9317e-09,3.8342e-09,1.2295e-08,1.6776e-08,3.9146e-08,7.6043e-08,1.0867e-07,2.0158e-07,2.1876e-07,2.3597e-07,3.4528e-07,4.2688e-07,4.2881e-07,5.1049e-07,5.8216e-07,7.2707e-07,7.4063e-07,7.4666e-07,7.8126e-07,8.8442e-07,1.0853e-06,1.2066e-06,1.9555e-06,1.9573e-06,3.4616e-06,3.4874e-06,3.9334e-06,4.2507e-06,4.4681e-06,5.2521e-06,6.2063e-06,1.0453e-05,1.1251e-05,1.4236e-05,3.85e-05,5.166e-05,5.6974e-05,0.00010316,0.00011063,0.00011952,0.00021303,0.00023091,0.00029278,0.00032206,0.00033277,0.00035436,0.00052987,0.00079341,0.00082654,0.00091845,0.0011053,0.0019064,0.0019516,0.0020259,0.0048223,0.008297,0.010333,0.011322,0.014508,0.016325,0.017272,0.021267,0.031091,0.037845,0.039375,0.040991,0.041241,0.045035,0.090615,0.10151,0.10404,0.1103,0.12935,0.13958,0.17451,0.17937,0.18619,0.1895,0.20027,0.2177,0.2261,0.23298,0.25738,0.26663,0.29614,0.30417,0.32988,0.33646,0.34638,0.34687,0.35433,0.37592,0.42292,0.42388,0.46479,0.4871,0.50676,0.61608,0.65093,0.65436,0.73893,0.75777,0.7598,0.79991,0.80088,0.83246,0.87174,0.91834,0.92508,0.94012,0.96538,0.97427,0.98115,0.98737,0.9985,1,1,0.99961,0.99755,0.99706,0.99093,0.98766,0.98431,0.97329,0.96987,0.96257,0.95379,0.93488,0.9158,0.83446,0.8241,0.81237,0.79148,0.76278,0.75925,0.71501,0.71246,0.69924,0.68296,0.66007,0.39181,0.37415,0.36604,0.35145,0.34599,0.32971,0.27426,0.26723,0.25516,0.24184,0.23331,0.19619,0.1933,0.16384,0.13402,0.11186,0.11011,0.089282,0.073647,0.07279,0.066767,0.055606,0.055376,0.054867,0.043516,0.04255,0.037058,0.034586,0.029549,0.028294,0.022871,0.022001,0.017552,0.016505 1,3.2047e-27,4.0657e-27,4.6386e-27,7.2987e-27,1.2952e-26,1.3126e-26,1.5275e-26,2.8088e-26,9.9822e-26,1.2616e-25,1.3842e-25,1.3887e-25,1.995e-25,3.7788e-25,4.1078e-25,6.3425e-25,2.3826e-24,8.4767e-24,1.0021e-23,2.1808e-23,3.3954e-23,4.8379e-23,5.4952e-23,8.7779e-23,9.0308e-23,1.4097e-22,2.7217e-22,4.838e-22,6.1635e-22,1.8308e-21,1.9129e-21,4.5961e-21,7.545e-21,8.588e-21,1.4943e-20,2.0462e-20,2.0571e-20,2.4277e-20,2.7301e-19,2.8833e-18,4.9952e-18,5.0801e-18,5.0894e-18,9.2274e-18,2.4235e-17,2.7909e-17,3.0699e-17,1.3815e-16,1.6384e-16,1.7952e-16,7.937e-16,2.5759e-15,5.2739e-15,8.4591e-15,1.491e-14,1.1537e-13,2.3324e-13,2.5366e-13,6.53e-13,1.8552e-12,2.9567e-12,2.9618e-12,5.7112e-12,8.2321e-12,1.0571e-11,1.4514e-11,1.8939e-11,2.7388e-11,3.2012e-11,5.0248e-11,1.0975e-10,1.5463e-10,2.6534e-10,7.6778e-10,8.5325e-10,1.2771e-09,1.6176e-09,3.2206e-09,1.0383e-08,1.4186e-08,3.3237e-08,6.4772e-08,9.2724e-08,1.7253e-07,1.8731e-07,2.0213e-07,2.9634e-07,3.6677e-07,3.6843e-07,4.3901e-07,5.0098e-07,6.2642e-07,6.3816e-07,6.4339e-07,6.7336e-07,7.6277e-07,9.3701e-07,1.0424e-06,1.6938e-06,1.6953e-06,3.0077e-06,3.0302e-06,3.4201e-06,3.6976e-06,3.8877e-06,4.5741e-06,5.4102e-06,9.14e-06,9.8421e-06,1.247e-05,3.3928e-05,4.5609e-05,5.0332e-05,9.1485e-05,9.8152e-05,0.00010609,0.00018982,0.00020587,0.00026146,0.0002878,0.00029744,0.00031687,0.00047517,0.00071361,0.00074363,0.00082697,0.0009966,0.0017262,0.0017674,0.0018353,0.0043998,0.0076063,0.0094914,0.010409,0.013369,0.015061,0.015943,0.019672,0.028872,0.035219,0.036659,0.03818,0.038415,0.041991,0.085198,0.095585,0.097999,0.10397,0.12219,0.132,0.16556,0.17024,0.17682,0.18002,0.19041,0.20725,0.21537,0.22204,0.2457,0.25469,0.2834,0.29122,0.31631,0.32274,0.33244,0.33292,0.34021,0.36137,0.40754,0.40848,0.44881,0.47086,0.49032,0.59912,0.63404,0.63748,0.72276,0.74186,0.74392,0.7848,0.7858,0.81817,0.85873,0.90745,0.91457,0.93057,0.95787,0.96769,0.97544,0.9826,0.99659,0.99959,0.99961,1,0.99911,0.99881,0.99429,0.99163,0.98883,0.97926,0.97622,0.96965,0.96165,0.94415,0.92624,0.84828,0.83822,0.82682,0.80644,0.77833,0.77487,0.73128,0.72876,0.71569,0.69957,0.67684,0.40693,0.38895,0.38068,0.36581,0.36023,0.34359,0.28676,0.27954,0.26712,0.2534,0.24461,0.20626,0.20327,0.17272,0.14169,0.11855,0.11672,0.094903,0.078472,0.077569,0.071225,0.059448,0.059205,0.058667,0.046653,0.045628,0.0398,0.037172,0.031812,0.030474,0.024688,0.023758,0.018996,0.017874 1,2.0102e-27,2.5526e-27,2.9138e-27,4.5927e-27,8.1682e-27,8.2783e-27,9.6389e-27,1.7767e-26,6.3454e-26,8.027e-26,8.8101e-26,8.8392e-26,1.2717e-25,2.4147e-25,2.6259e-25,4.0614e-25,1.5338e-24,5.4851e-24,6.4887e-24,1.4167e-23,2.2097e-23,3.1531e-23,3.5834e-23,5.7352e-23,5.9012e-23,9.2286e-23,1.7868e-22,3.1838e-22,4.0603e-22,1.2118e-21,1.2663e-21,3.0541e-21,5.0245e-21,5.7223e-21,9.981e-21,1.3687e-20,1.376e-20,1.625e-20,1.8475e-19,1.9725e-18,3.4261e-18,3.4846e-18,3.491e-18,6.3473e-18,1.6748e-17,1.93e-17,2.1239e-17,9.6286e-17,1.1429e-16,1.2528e-16,5.5802e-16,1.8219e-15,3.7441e-15,6.0201e-15,1.0642e-14,8.3261e-14,1.6898e-13,1.8386e-13,4.7581e-13,1.3598e-12,2.173e-12,2.1768e-12,4.2135e-12,6.0864e-12,7.8271e-12,1.0767e-11,1.4072e-11,2.0395e-11,2.3862e-11,3.7557e-11,8.2426e-11,1.1638e-10,2.0039e-10,5.8382e-10,6.4926e-10,9.7435e-10,1.2361e-09,2.4723e-09,8.0342e-09,1.1002e-08,2.5932e-08,5.0781e-08,7.2887e-08,1.3625e-07,1.4802e-07,1.5982e-07,2.3499e-07,2.9132e-07,2.9265e-07,3.4919e-07,3.9889e-07,4.9964e-07,5.0909e-07,5.1329e-07,5.3739e-07,6.0935e-07,7.4977e-07,8.3479e-07,1.3618e-06,1.3631e-06,2.4297e-06,2.4481e-06,2.7658e-06,2.9922e-06,3.1474e-06,3.7082e-06,4.3923e-06,7.4541e-06,8.032e-06,1.0198e-05,2.7999e-05,3.7743e-05,4.169e-05,7.6214e-05,8.1825e-05,8.8509e-05,0.00015929,0.0001729,0.00022013,0.00024255,0.00025076,0.00026732,0.0004026,0.0006073,0.00063314,0.00070494,0.00085132,0.0014839,0.0015198,0.0015789,0.0038261,0.0066622,0.0083384,0.0091561,0.011802,0.013319,0.01411,0.017464,0.025785,0.031553,0.032865,0.034251,0.034466,0.03773,0.077522,0.087165,0.089411,0.094969,0.11198,0.12116,0.15271,0.15712,0.16333,0.16635,0.17618,0.19215,0.19986,0.2062,0.22875,0.23733,0.26482,0.27233,0.29645,0.30265,0.312,0.31247,0.31951,0.33998,0.38482,0.38574,0.42511,0.44672,0.46585,0.57359,0.6085,0.61195,0.69801,0.71746,0.71956,0.76143,0.76246,0.79591,0.83825,0.88996,0.89763,0.91499,0.94526,0.95645,0.96545,0.974,0.99224,0.99751,0.99755,0.99911,1,0.99998,0.9979,0.99618,0.99421,0.98687,0.98441,0.97898,0.97218,0.95689,0.94081,0.86827,0.85871,0.84784,0.82831,0.80119,0.79783,0.7554,0.75294,0.74013,0.72429,0.70189,0.43021,0.41178,0.40329,0.38799,0.38225,0.3651,0.30624,0.29873,0.2858,0.27149,0.2623,0.2221,0.21895,0.18674,0.15386,0.12922,0.12726,0.1039,0.086222,0.085249,0.0784,0.06565,0.065387,0.064803,0.051738,0.05062,0.044256,0.041381,0.035504,0.034033,0.027663,0.026637,0.02137,0.020126 1,1.8665e-27,2.3704e-27,2.706e-27,4.2664e-27,7.5905e-27,7.6929e-27,8.9582e-27,1.6518e-26,5.9041e-26,7.4699e-26,8.199e-26,8.2262e-26,1.1837e-25,2.2487e-25,2.4454e-25,3.7834e-25,1.43e-24,5.1181e-24,6.0552e-24,1.3227e-23,2.0637e-23,2.9455e-23,3.3478e-23,5.3597e-23,5.5149e-23,8.6271e-23,1.6711e-22,2.9788e-22,3.7994e-22,1.1347e-21,1.1858e-21,2.8618e-21,4.7097e-21,5.3643e-21,9.3601e-21,1.2838e-20,1.2907e-20,1.5245e-20,1.7361e-19,1.8569e-18,3.2266e-18,3.2817e-18,3.2877e-18,5.9804e-18,1.5791e-17,1.82e-17,2.003e-17,9.0909e-17,1.0792e-16,1.1831e-16,5.2759e-16,1.7242e-15,3.5453e-15,5.7028e-15,1.0086e-14,7.9047e-14,1.6052e-13,1.7467e-13,4.5241e-13,1.2942e-12,2.069e-12,2.0726e-12,4.0143e-12,5.8006e-12,7.4613e-12,1.0267e-11,1.3422e-11,1.9459e-11,2.277e-11,3.5855e-11,7.8752e-11,1.1123e-10,1.9162e-10,5.5889e-10,6.216e-10,9.3323e-10,1.1842e-09,2.3703e-09,7.7125e-09,1.0565e-08,2.4926e-08,4.8848e-08,7.0143e-08,1.3122e-07,1.4256e-07,1.5394e-07,2.2646e-07,2.8082e-07,2.821e-07,3.3667e-07,3.8466e-07,4.8195e-07,4.9107e-07,4.9512e-07,5.1841e-07,5.8792e-07,7.2358e-07,8.0574e-07,1.3153e-06,1.3164e-06,2.3484e-06,2.3662e-06,2.6737e-06,2.8929e-06,3.0431e-06,3.5862e-06,4.2487e-06,7.2155e-06,7.7757e-06,9.876e-06,2.7154e-05,3.662e-05,4.0455e-05,7.4024e-05,7.9483e-05,8.5986e-05,0.00015489,0.00016815,0.00021416,0.00023601,0.00024402,0.00026016,0.00039208,0.00059185,0.00061708,0.00068718,0.00083015,0.0014485,0.0014836,0.0015414,0.0037416,0.0065224,0.0081675,0.0089701,0.011569,0.013059,0.013837,0.017135,0.025322,0.031002,0.032294,0.033661,0.033872,0.037088,0.076357,0.085885,0.088104,0.093598,0.11042,0.1195,0.15074,0.15511,0.16126,0.16426,0.174,0.18982,0.19747,0.20376,0.22613,0.23465,0.26194,0.2694,0.29337,0.29953,0.30883,0.30929,0.31629,0.33665,0.38127,0.38219,0.4214,0.44294,0.462,0.56955,0.60444,0.60789,0.69404,0.71354,0.71565,0.75766,0.75869,0.7923,0.8349,0.88707,0.89483,0.9124,0.94312,0.95452,0.96372,0.97249,0.99139,0.99701,0.99706,0.99881,0.99998,1,0.99831,0.99674,0.99491,0.98792,0.98556,0.98031,0.97371,0.95877,0.94299,0.87134,0.86187,0.85108,0.8317,0.80475,0.80141,0.75918,0.75672,0.74396,0.72818,0.70584,0.43395,0.41546,0.40693,0.39157,0.3858,0.36858,0.3094,0.30184,0.28884,0.27443,0.26518,0.22469,0.22152,0.18904,0.15586,0.13098,0.129,0.10539,0.087507,0.086522,0.079591,0.066682,0.066415,0.065824,0.052586,0.051453,0.045,0.042084,0.036122,0.03463,0.028163,0.02712,0.02177,0.020506 1,9.7683e-28,1.2421e-27,1.419e-27,2.2426e-27,4.002e-27,4.0563e-27,4.7272e-27,8.7452e-27,3.1473e-26,3.987e-26,4.3784e-26,4.3929e-26,6.3339e-26,1.2074e-25,1.3137e-25,2.0373e-25,7.7572e-25,2.7962e-24,3.3112e-24,7.265e-24,1.1364e-23,1.6252e-23,1.8485e-23,2.9675e-23,3.0539e-23,4.7896e-23,9.3131e-23,1.6657e-22,2.1276e-22,6.3956e-22,6.6852e-22,1.6219e-21,2.6772e-21,3.0516e-21,5.3427e-21,7.3419e-21,7.3815e-21,8.7274e-21,1.009e-19,1.0955e-18,1.9104e-18,1.9432e-18,1.9468e-18,3.5551e-18,9.4473e-18,1.0898e-17,1.2002e-17,5.5029e-17,6.5401e-17,7.1741e-17,3.2323e-16,1.0651e-15,2.2014e-15,3.5531e-15,6.3101e-15,5.0209e-14,1.0251e-13,1.1161e-13,2.912e-13,8.3986e-13,1.3477e-12,1.3501e-12,2.6287e-12,3.8097e-12,4.9104e-12,6.7745e-12,8.8757e-12,1.2908e-11,1.5124e-11,2.3905e-11,5.2855e-11,7.4877e-11,1.296e-10,3.8157e-10,4.2478e-10,6.4008e-10,8.1395e-10,1.6396e-09,5.3944e-09,7.4116e-09,1.7633e-08,3.4788e-08,5.0136e-08,9.4394e-08,1.0264e-07,1.1092e-07,1.6384e-07,2.0362e-07,2.0457e-07,2.446e-07,2.7986e-07,3.5149e-07,3.5822e-07,3.6121e-07,3.7838e-07,4.297e-07,5.3006e-07,5.9094e-07,9.6987e-07,9.7076e-07,1.7431e-06,1.7564e-06,1.9875e-06,2.1524e-06,2.2655e-06,2.6749e-06,3.1753e-06,5.4265e-06,5.853e-06,7.4554e-06,2.0757e-05,2.8101e-05,3.1084e-05,5.733e-05,6.1616e-05,6.6728e-05,0.00012117,0.0001317,0.0001683,0.00018573,0.00019212,0.00020501,0.00031082,0.00047208,0.00049251,0.00054936,0.00066558,0.0011716,0.0012005,0.0012479,0.0030747,0.0054134,0.0068071,0.0074893,0.0097065,0.010983,0.011651,0.014489,0.021588,0.026548,0.027679,0.028877,0.029062,0.031887,0.066799,0.075365,0.077364,0.082321,0.097552,0.10581,0.13437,0.13839,0.14404,0.1468,0.15579,0.17042,0.17752,0.18335,0.20419,0.21214,0.23773,0.24474,0.26735,0.27318,0.28199,0.28242,0.28906,0.30841,0.35107,0.35195,0.3897,0.41053,0.42903,0.53453,0.56918,0.57262,0.65924,0.67907,0.68122,0.72428,0.72534,0.76016,0.80485,0.86069,0.86913,0.88843,0.92296,0.93613,0.94698,0.95758,0.98217,0.99086,0.99093,0.99429,0.9979,0.99831,1,0.99974,0.99908,0.99524,0.99371,0.99008,0.98521,0.97345,0.96035,0.89685,0.88815,0.8782,0.86016,0.83481,0.83165,0.79136,0.789,0.77671,0.76144,0.73973,0.46706,0.44802,0.43922,0.42334,0.41737,0.39949,0.33768,0.32974,0.31605,0.30085,0.29107,0.24804,0.24466,0.20988,0.17408,0.14704,0.14488,0.11904,0.099336,0.098247,0.090574,0.076226,0.075928,0.075269,0.060463,0.059191,0.051932,0.048643,0.041897,0.040205,0.032846,0.031656,0.025531,0.024078 1,7.5879e-28,9.6534e-28,1.1031e-27,1.745e-27,3.1177e-27,3.16e-27,3.6839e-27,6.8237e-27,2.4623e-26,3.1208e-26,3.4278e-26,3.4392e-26,4.9626e-26,9.4731e-26,1.0308e-25,1.6001e-25,6.1102e-25,2.2086e-24,2.6164e-24,5.7503e-24,9.0036e-24,1.2887e-23,1.4662e-23,2.3561e-23,2.4249e-23,3.8069e-23,7.4133e-23,1.3277e-22,1.6968e-22,5.1132e-22,5.3453e-22,1.2994e-21,2.1474e-21,2.4486e-21,4.2925e-21,5.9031e-21,5.9351e-21,7.02e-21,8.1632e-20,8.9153e-19,1.5568e-18,1.5837e-18,1.5866e-18,2.9017e-18,7.7303e-18,8.9209e-18,9.8267e-18,4.5233e-17,5.3783e-17,5.9011e-17,2.6694e-16,8.8247e-16,1.8275e-15,2.9535e-15,5.2537e-15,4.2051e-14,8.6029e-14,9.3696e-14,2.4515e-13,7.0928e-13,1.1398e-12,1.1418e-12,2.2278e-12,3.2324e-12,4.1696e-12,5.7583e-12,7.5508e-12,1.0994e-11,1.2888e-11,2.0401e-11,4.5225e-11,6.4141e-11,1.1122e-10,3.2866e-10,3.6602e-10,5.5231e-10,7.0294e-10,1.4195e-09,4.6903e-09,6.4517e-09,1.5399e-08,3.046e-08,4.3961e-08,8.2975e-08,9.0256e-08,9.7567e-08,1.4433e-07,1.7954e-07,1.8038e-07,2.1584e-07,2.4709e-07,3.1062e-07,3.1659e-07,3.1925e-07,3.3449e-07,3.8006e-07,4.6923e-07,5.2337e-07,8.6079e-07,8.6158e-07,1.551e-06,1.5629e-06,1.7695e-06,1.917e-06,2.0182e-06,2.3846e-06,2.8329e-06,4.8531e-06,5.2364e-06,6.6775e-06,1.8682e-05,2.5329e-05,2.8032e-05,5.1861e-05,5.5759e-05,6.041e-05,0.00011004,0.00011965,0.00015312,0.00016906,0.00017491,0.00018671,0.00028373,0.00043196,0.00045077,0.00050312,0.00061025,0.0010779,0.0011046,0.0011486,0.0028463,0.0050306,0.0063359,0.0069757,0.009058,0.010259,0.010887,0.013563,0.020271,0.024971,0.026045,0.027181,0.027358,0.03004,0.063358,0.071567,0.073485,0.078242,0.092881,0.10083,0.12838,0.13227,0.13773,0.1404,0.1491,0.16328,0.17016,0.17582,0.19607,0.20381,0.22873,0.23557,0.25764,0.26333,0.27195,0.27237,0.27887,0.29782,0.33967,0.34054,0.37768,0.39822,0.41648,0.52103,0.55553,0.55896,0.6456,0.66551,0.66767,0.71106,0.71213,0.74733,0.79273,0.84987,0.85856,0.87848,0.9144,0.92823,0.9397,0.95098,0.97771,0.98757,0.98766,0.99163,0.99618,0.99674,0.99974,1,0.9998,0.99718,0.99598,0.99299,0.98881,0.97832,0.96631,0.90613,0.89777,0.88816,0.87068,0.84602,0.84294,0.8035,0.80118,0.7891,0.77407,0.75264,0.48016,0.46093,0.45204,0.43598,0.42993,0.41182,0.34904,0.34096,0.32701,0.31151,0.30153,0.25753,0.25406,0.21838,0.18155,0.15366,0.15143,0.12469,0.10426,0.10313,0.095154,0.08022,0.07991,0.079224,0.063775,0.062447,0.054856,0.051412,0.044343,0.042567,0.034838,0.033587,0.027137,0.025606 1,6.051e-28,7.7015e-28,8.8024e-28,1.3936e-27,2.4926e-27,2.5265e-27,2.9462e-27,5.4635e-27,1.9762e-26,2.5057e-26,2.7527e-26,2.7619e-26,3.988e-26,7.622e-26,8.2954e-26,1.2887e-25,4.9337e-25,1.7878e-24,2.1186e-24,4.6633e-24,7.308e-24,1.0467e-23,1.1912e-23,1.916e-23,1.9721e-23,3.0988e-23,6.0424e-23,1.0834e-22,1.3853e-22,4.184e-22,4.3743e-22,1.0653e-21,1.7624e-21,2.0101e-21,3.5279e-21,4.8549e-21,4.8812e-21,5.7755e-21,6.7513e-20,7.4119e-19,1.2959e-18,1.3183e-18,1.3208e-18,2.4188e-18,6.458e-18,7.4551e-18,8.2139e-18,3.7942e-17,4.5133e-17,4.9531e-17,2.2486e-16,7.4549e-16,1.5466e-15,2.5025e-15,4.4578e-15,3.5869e-14,7.3518e-14,8.0088e-14,2.1007e-13,6.0954e-13,9.8077e-13,9.8252e-13,1.9205e-12,2.7894e-12,3.6007e-12,4.9772e-12,6.5315e-12,9.5201e-12,1.1165e-11,1.7697e-11,3.9322e-11,5.5827e-11,9.6963e-11,2.8747e-10,3.2025e-10,4.8386e-10,6.1628e-10,1.2472e-09,4.137e-09,5.6966e-09,1.3636e-08,2.7036e-08,3.9068e-08,7.3905e-08,8.0415e-08,8.6953e-08,1.2881e-07,1.6036e-07,1.6111e-07,1.9291e-07,2.2095e-07,2.78e-07,2.8336e-07,2.8574e-07,2.9944e-07,3.4039e-07,4.2059e-07,4.693e-07,7.7333e-07,7.7405e-07,1.3966e-06,1.4074e-06,1.5942e-06,1.7276e-06,1.8191e-06,2.1508e-06,2.557e-06,4.39e-06,4.7381e-06,6.0482e-06,1.6995e-05,2.3073e-05,2.5546e-05,4.7393e-05,5.0972e-05,5.5244e-05,0.00010092,0.00010977,0.00014064,0.00015536,0.00016076,0.00017166,0.0002614,0.00039881,0.00041626,0.00046487,0.00056443,0.00099997,0.0010249,0.0010659,0.0026552,0.0047091,0.0059397,0.0065435,0.0085112,0.0096472,0.010243,0.012779,0.019154,0.023631,0.024655,0.025739,0.025907,0.028467,0.060405,0.068304,0.07015,0.074733,0.088854,0.096532,0.1232,0.12696,0.13227,0.13486,0.1433,0.15708,0.16377,0.16928,0.189,0.19654,0.22087,0.22755,0.24915,0.25472,0.26316,0.26357,0.26994,0.28853,0.32966,0.33051,0.36709,0.38735,0.40539,0.50903,0.54336,0.54678,0.63336,0.65334,0.65551,0.69913,0.70021,0.73573,0.78172,0.83995,0.84884,0.8693,0.90642,0.92082,0.93282,0.94471,0.97332,0.98421,0.98431,0.98883,0.99421,0.99491,0.99908,0.9998,1,0.9985,0.99759,0.99517,0.99161,0.98228,0.97124,0.91412,0.90606,0.89677,0.87982,0.8558,0.85279,0.81416,0.81188,0.8,0.7852,0.76406,0.49197,0.47259,0.46362,0.4474,0.44129,0.42298,0.35936,0.35116,0.33698,0.32122,0.31106,0.2662,0.26266,0.22618,0.18843,0.15976,0.15747,0.12992,0.10882,0.10765,0.099403,0.083934,0.083612,0.0829,0.066862,0.065482,0.057585,0.053999,0.04663,0.044778,0.036706,0.035398,0.028647,0.027042 1,3.2694e-28,4.166e-28,4.7647e-28,7.5607e-28,1.3562e-27,1.3747e-27,1.6043e-27,2.9842e-27,1.0864e-26,1.3792e-26,1.5158e-26,1.5209e-26,2.2002e-26,4.2189e-26,4.5937e-26,7.1526e-26,2.7572e-25,1.0058e-24,1.193e-24,2.637e-24,4.1424e-24,5.9445e-24,6.7695e-24,1.0917e-23,1.1238e-23,1.7701e-23,3.464e-23,6.2309e-23,7.9778e-23,2.4242e-22,2.5351e-22,6.2046e-22,1.0293e-21,1.1748e-21,2.0685e-21,2.8518e-21,2.8673e-21,3.3959e-21,4.0262e-20,4.4833e-19,7.8652e-19,8.002e-19,8.0169e-19,1.4736e-18,3.9581e-18,4.5733e-18,5.0418e-18,2.3513e-17,2.8e-17,3.0746e-17,1.4094e-16,4.7093e-16,9.8169e-16,1.5936e-15,2.8497e-15,2.326e-14,4.7915e-14,5.2228e-14,1.3794e-13,4.0334e-13,6.5127e-13,6.5244e-13,1.2816e-12,1.8667e-12,2.4143e-12,3.3455e-12,4.3993e-12,6.4308e-12,7.5514e-12,1.2012e-11,2.6858e-11,3.8238e-11,6.6708e-11,1.9954e-10,2.2249e-10,3.3731e-10,4.305e-10,8.7649e-10,2.9377e-09,4.0567e-09,9.7875e-09,1.9528e-08,2.8316e-08,5.3889e-08,5.8683e-08,6.3502e-08,9.4431e-08,1.1781e-07,1.1837e-07,1.4198e-07,1.6283e-07,2.0535e-07,2.0935e-07,2.1113e-07,2.2135e-07,2.5195e-07,3.1197e-07,3.4849e-07,5.772e-07,5.7774e-07,1.0489e-06,1.057e-06,1.1989e-06,1.3003e-06,1.37e-06,1.6227e-06,1.9328e-06,3.3379e-06,3.6057e-06,4.6152e-06,1.3123e-05,1.788e-05,1.9821e-05,3.7047e-05,3.988e-05,4.3266e-05,7.9636e-05,8.6718e-05,0.00011146,0.00012328,0.00012763,0.0001364,0.00020887,0.00032052,0.00033475,0.00037441,0.00045584,0.0008143,0.00083491,0.00086884,0.0021948,0.0039292,0.0049754,0.0054904,0.0071744,0.0081502,0.0086625,0.010851,0.016391,0.020306,0.021204,0.022156,0.022303,0.024555,0.052963,0.060062,0.061725,0.065857,0.078634,0.085606,0.10995,0.1134,0.11827,0.12065,0.12842,0.14113,0.14732,0.15242,0.17073,0.17776,0.20048,0.20675,0.22703,0.23228,0.24023,0.24063,0.24664,0.26422,0.30333,0.30414,0.33915,0.35863,0.37602,0.47687,0.51065,0.51402,0.60011,0.62016,0.62234,0.66642,0.66752,0.70372,0.75106,0.81195,0.82136,0.84316,0.88332,0.89918,0.91256,0.926,0.95954,0.97316,0.97329,0.97926,0.98687,0.98792,0.99524,0.99718,0.9985,1,0.99989,0.99905,0.9972,0.99103,0.98272,0.93422,0.92701,0.91865,0.90323,0.88108,0.87828,0.84204,0.83988,0.82861,0.81451,0.79423,0.5244,0.50466,0.4955,0.47892,0.47266,0.45386,0.38812,0.37959,0.36483,0.34838,0.33775,0.29061,0.28688,0.24824,0.20798,0.17719,0.17472,0.14493,0.12196,0.12069,0.11167,0.094692,0.094338,0.093554,0.075847,0.074317,0.06555,0.061559,0.053334,0.051261,0.042202,0.040729,0.033108,0.03129 1,2.7726e-28,3.5342e-28,4.0427e-28,6.419e-28,1.1523e-27,1.1681e-27,1.3634e-27,2.5381e-27,9.2558e-27,1.1754e-26,1.292e-26,1.2964e-26,1.8763e-26,3.601e-26,3.9214e-26,6.1095e-26,2.3595e-25,8.6227e-25,1.023e-24,2.2637e-24,3.5582e-24,5.1087e-24,5.8189e-24,9.3899e-24,9.6664e-24,1.5236e-23,2.9845e-23,5.3729e-23,6.8818e-23,2.0945e-22,2.1905e-22,5.3683e-22,8.9126e-22,1.0175e-21,1.7929e-21,2.473e-21,2.4865e-21,2.9456e-21,3.5056e-20,3.9184e-19,6.8804e-19,7.0002e-19,7.0133e-19,1.2904e-18,3.4716e-18,4.0121e-18,4.4238e-18,2.0684e-17,2.4638e-17,2.7059e-17,1.2435e-16,4.1638e-16,8.6911e-16,1.412e-15,2.5277e-15,2.071e-14,4.272e-14,4.6573e-14,1.2323e-13,3.6107e-13,5.8356e-13,5.8461e-13,1.1499e-12,1.6761e-12,2.1689e-12,3.0074e-12,3.957e-12,5.7887e-12,6.7995e-12,1.0827e-11,2.4248e-11,3.4547e-11,6.0341e-11,1.8092e-10,2.0178e-10,3.062e-10,3.91e-10,7.9733e-10,2.6799e-09,3.7035e-09,8.954e-09,1.7895e-08,2.5972e-08,4.9508e-08,5.3923e-08,5.8363e-08,8.6877e-08,1.0845e-07,1.0896e-07,1.3076e-07,1.5002e-07,1.893e-07,1.93e-07,1.9465e-07,2.041e-07,2.3239e-07,2.8792e-07,3.2172e-07,5.3359e-07,5.3409e-07,9.712e-07,9.7879e-07,1.1106e-06,1.2048e-06,1.2695e-06,1.5044e-06,1.7927e-06,3.101e-06,3.3505e-06,4.2917e-06,1.2242e-05,1.6695e-05,1.8513e-05,3.4673e-05,3.7333e-05,4.0513e-05,7.4721e-05,8.1389e-05,0.0001047,0.00011585,0.00011994,0.00012822,0.00019664,0.00030221,0.00031567,0.00035322,0.00043036,0.00077048,0.00079005,0.00082229,0.002085,0.0037419,0.0047433,0.0052365,0.0068511,0.0077876,0.0082795,0.010383,0.015715,0.019491,0.020357,0.021276,0.021418,0.023593,0.051111,0.058006,0.059622,0.063639,0.076072,0.082864,0.10661,0.10998,0.11474,0.11706,0.12465,0.13709,0.14314,0.14814,0.16608,0.17297,0.19527,0.20142,0.22136,0.22652,0.23434,0.23473,0.24065,0.25796,0.29652,0.29732,0.33189,0.35115,0.36836,0.4684,0.50201,0.50536,0.59124,0.61128,0.61346,0.65762,0.65872,0.69507,0.74271,0.80423,0.81377,0.83589,0.8768,0.89303,0.90677,0.9206,0.9554,0.96974,0.96987,0.97622,0.98441,0.98556,0.99371,0.99598,0.99759,0.99989,1,0.99958,0.99818,0.99287,0.9853,0.93917,0.93221,0.9241,0.90912,0.8875,0.88476,0.84921,0.84709,0.836,0.82209,0.80208,0.53314,0.51332,0.50412,0.48745,0.48115,0.46224,0.39597,0.38736,0.37246,0.35582,0.34508,0.29735,0.29356,0.25436,0.21342,0.18207,0.17954,0.14914,0.12567,0.12436,0.11513,0.09774,0.097377,0.096573,0.078403,0.076832,0.067822,0.063718,0.055252,0.053118,0.04378,0.042261,0.034394,0.032515 1,2.0022e-28,2.5537e-28,2.9222e-28,4.6453e-28,8.3514e-28,8.4662e-28,9.8859e-28,1.8434e-27,6.7451e-27,8.5711e-27,9.424e-27,9.4558e-27,1.3699e-26,2.6337e-26,2.8686e-26,4.4746e-26,1.7344e-25,6.3608e-25,7.5498e-25,1.6743e-24,2.6351e-24,3.7872e-24,4.3152e-24,6.9727e-24,7.1786e-24,1.1329e-23,2.2235e-23,4.0095e-23,5.1391e-23,1.5691e-22,1.6412e-22,4.0327e-22,6.7052e-22,7.6576e-22,1.3517e-21,1.8661e-21,1.8763e-21,2.2239e-21,2.6665e-20,3.0028e-19,5.282e-19,5.3743e-19,5.3844e-19,9.9258e-19,2.6789e-18,3.0974e-18,3.4163e-18,1.6054e-17,1.9134e-17,2.102e-17,9.7095e-17,3.2645e-16,6.8313e-16,1.1117e-15,1.9942e-15,1.6463e-14,3.4048e-14,3.7131e-14,9.8604e-14,2.9009e-13,4.697e-13,4.7055e-13,9.2799e-13,1.3546e-12,1.7547e-12,2.4362e-12,3.2088e-12,4.7014e-12,5.526e-12,8.8153e-12,1.9808e-11,2.8263e-11,4.9481e-11,1.4905e-10,1.6632e-10,2.5284e-10,3.2321e-10,6.6118e-10,2.2345e-09,3.0926e-09,7.508e-09,1.5055e-08,2.1889e-08,4.1859e-08,4.5612e-08,4.9387e-08,7.3663e-08,9.2058e-08,9.2496e-08,1.111e-07,1.2756e-07,1.6115e-07,1.6432e-07,1.6572e-07,1.7381e-07,1.9804e-07,2.4564e-07,2.7464e-07,4.5672e-07,4.5715e-07,8.34e-07,8.4056e-07,9.5439e-07,1.0358e-06,1.0918e-06,1.2951e-06,1.5447e-06,2.6803e-06,2.8973e-06,3.7164e-06,1.0667e-05,1.4575e-05,1.6173e-05,3.0409e-05,3.2758e-05,3.5567e-05,6.5859e-05,7.1777e-05,9.249e-05,0.00010241,0.00010605,0.00011342,0.00017446,0.00026895,0.00028101,0.0003147,0.00038397,0.00069043,0.0007081,0.00073722,0.0018831,0.0033963,0.0043141,0.0047669,0.0062518,0.0071148,0.0075685,0.0095114,0.014455,0.017967,0.018774,0.01963,0.019763,0.021791,0.047617,0.054123,0.055649,0.059446,0.071218,0.077662,0.10025,0.10347,0.108,0.11022,0.11747,0.12937,0.13517,0.13996,0.15717,0.1638,0.18527,0.1912,0.21045,0.21544,0.22301,0.22338,0.22911,0.24589,0.28335,0.28413,0.31783,0.33665,0.35349,0.45186,0.48508,0.4884,0.57376,0.59378,0.59596,0.6402,0.64131,0.67788,0.72606,0.78872,0.7985,0.82122,0.86356,0.88049,0.89489,0.90947,0.94672,0.96243,0.96257,0.96965,0.97898,0.98031,0.99008,0.99299,0.99517,0.99905,0.99958,1,0.99951,0.99589,0.9898,0.94843,0.94195,0.93437,0.92026,0.89973,0.89712,0.86298,0.86093,0.85021,0.83673,0.81726,0.55045,0.5305,0.52122,0.5044,0.49804,0.47891,0.41166,0.4029,0.38771,0.37074,0.35977,0.31089,0.307,0.26669,0.22443,0.19195,0.18933,0.15772,0.13322,0.13186,0.1222,0.10397,0.10359,0.10275,0.083644,0.081989,0.072488,0.068154,0.059202,0.056942,0.047038,0.045425,0.037054,0.035053 1,1.4034e-28,1.7912e-28,2.0504e-28,3.2637e-28,5.8773e-28,5.9583e-28,6.9605e-28,1.3002e-27,4.775e-27,6.0719e-27,6.6779e-27,6.7005e-27,9.7177e-27,1.8718e-26,2.0393e-26,3.185e-26,1.2394e-25,4.5631e-25,5.4189e-25,1.2046e-24,1.8984e-24,2.7314e-24,3.1135e-24,5.0383e-24,5.1875e-24,8.1984e-24,1.6123e-23,2.9127e-23,3.7362e-23,1.1448e-22,1.1975e-22,2.9509e-22,4.9143e-22,5.6147e-22,9.9286e-22,1.3722e-21,1.3797e-21,1.6362e-21,1.9778e-20,2.2454e-19,3.9573e-19,4.0267e-19,4.0343e-19,7.4526e-19,2.0183e-18,2.3348e-18,2.5761e-18,1.2172e-17,1.4516e-17,1.5953e-17,7.4099e-17,2.5025e-16,5.2512e-16,8.5616e-16,1.5392e-15,1.2811e-14,2.6572e-14,2.8988e-14,7.7282e-14,2.2837e-13,3.7051e-13,3.7118e-13,7.3411e-13,1.0733e-12,1.3918e-12,1.9351e-12,2.5519e-12,3.7451e-12,4.405e-12,7.0415e-12,1.588e-11,2.2694e-11,3.9831e-11,1.206e-10,1.3464e-10,2.0508e-10,2.6246e-10,5.3876e-10,1.8317e-09,2.5392e-09,6.1923e-09,1.2461e-08,1.8154e-08,3.4837e-08,3.7978e-08,4.1138e-08,6.1494e-08,7.6945e-08,7.7313e-08,9.2958e-08,1.0681e-07,1.3512e-07,1.3778e-07,1.3897e-07,1.4579e-07,1.6624e-07,2.0644e-07,2.3096e-07,3.8522e-07,3.8559e-07,7.0593e-07,7.1151e-07,8.0848e-07,8.7789e-07,9.2564e-07,1.0991e-06,1.3124e-06,2.2849e-06,2.471e-06,3.1745e-06,9.1735e-06,1.2561e-05,1.3947e-05,2.6336e-05,2.8385e-05,3.0837e-05,5.7349e-05,6.2541e-05,8.0736e-05,8.9462e-05,9.2669e-05,9.9158e-05,0.00015301,0.00023666,0.00024736,0.00027726,0.00033882,0.00061213,0.00062793,0.00065397,0.0016839,0.0030534,0.0038873,0.0042994,0.0056536,0.0064422,0.0068573,0.0086376,0.013185,0.016428,0.017174,0.017966,0.018089,0.019968,0.044044,0.050143,0.051576,0.055143,0.066223,0.072301,0.093675,0.096721,0.10103,0.10313,0.11002,0.12134,0.12687,0.13144,0.14788,0.15422,0.17479,0.18049,0.19899,0.2038,0.21109,0.21145,0.21697,0.23317,0.26943,0.27018,0.30292,0.32124,0.33766,0.4341,0.46686,0.47014,0.55479,0.57475,0.57693,0.62118,0.62229,0.65903,0.70768,0.77145,0.78146,0.80479,0.84857,0.86621,0.8813,0.89667,0.93646,0.95363,0.95379,0.96165,0.97218,0.97371,0.98521,0.98881,0.99161,0.9972,0.99818,0.99951,1,0.99824,0.99377,0.95771,0.95177,0.94478,0.93166,0.91237,0.9099,0.87739,0.87543,0.86514,0.85216,0.83333,0.56939,0.54933,0.53999,0.52303,0.51661,0.49728,0.42905,0.42013,0.40465,0.38733,0.37611,0.32602,0.32203,0.28053,0.23684,0.20312,0.2004,0.16745,0.14183,0.1404,0.13027,0.11111,0.11071,0.10982,0.089663,0.087914,0.07786,0.073266,0.063762,0.06136,0.050813,0.049091,0.040147,0.038004 1,7.1537e-29,9.1421e-29,1.0473e-28,1.6711e-28,3.0186e-28,3.0604e-28,3.5781e-28,6.7059e-28,2.4801e-27,3.1577e-27,3.4747e-27,3.4865e-27,5.0666e-27,9.794e-27,1.0675e-26,1.6714e-26,6.553e-26,2.4301e-25,2.8887e-25,6.4503e-25,1.0192e-24,1.4694e-24,1.6762e-24,2.7199e-24,2.801e-24,4.4383e-24,8.7628e-24,1.5885e-23,2.0405e-23,6.2934e-23,6.5853e-23,1.6314e-22,2.7251e-22,3.116e-22,5.5291e-22,7.6564e-22,7.6987e-22,9.1392e-22,1.1218e-20,1.2933e-19,2.2876e-19,2.3279e-19,2.3324e-19,4.3258e-19,1.1792e-18,1.3654e-18,1.5075e-18,7.1967e-18,8.593e-18,9.4494e-18,4.4353e-17,1.5106e-16,3.1864e-16,5.2132e-16,9.4115e-16,7.9555e-15,1.6591e-14,1.8112e-14,4.8646e-14,1.4495e-13,2.3606e-13,2.3649e-13,4.7026e-13,6.8965e-13,8.9616e-13,1.2493e-12,1.6511e-12,2.4308e-12,2.8629e-12,4.5941e-12,1.0431e-11,1.4952e-11,2.637e-11,8.061e-11,9.008e-11,1.3772e-10,1.7665e-10,3.6496e-10,1.2549e-09,1.7449e-09,4.2917e-09,8.6956e-09,1.2716e-08,2.456e-08,2.6798e-08,2.9052e-08,4.3606e-08,5.4689e-08,5.4953e-08,6.6201e-08,7.6175e-08,9.6602e-08,9.8529e-08,9.9387e-08,1.0432e-07,1.1911e-07,1.4826e-07,1.6607e-07,2.7853e-07,2.788e-07,5.1384e-07,5.1794e-07,5.8937e-07,6.4056e-07,6.7581e-07,8.0398e-07,9.6196e-07,1.6855e-06,1.8245e-06,2.3509e-06,6.8808e-06,9.4581e-06,1.0516e-05,2.0019e-05,2.1597e-05,2.3487e-05,4.4041e-05,4.8084e-05,6.2289e-05,6.9118e-05,7.1631e-05,7.6718e-05,0.0001191,0.00018537,0.00019388,0.00021767,0.00026679,0.00048634,0.00049909,0.00052011,0.0013597,0.0024906,0.0031843,0.0035282,0.0046627,0.0053261,0.0056758,0.0071809,0.011053,0.013833,0.014475,0.015157,0.015263,0.016883,0.037906,0.04329,0.044558,0.047718,0.05757,0.062995,0.082181,0.084928,0.088815,0.090719,0.096956,0.10723,0.11226,0.11642,0.13145,0.13726,0.15618,0.16143,0.17855,0.183,0.18978,0.19011,0.19525,0.21034,0.24431,0.24502,0.27589,0.29324,0.30885,0.40135,0.43312,0.43631,0.51927,0.539,0.54116,0.5852,0.5863,0.62317,0.67242,0.73786,0.74824,0.77256,0.81876,0.83762,0.85389,0.87062,0.91493,0.9347,0.93488,0.94415,0.95689,0.95877,0.97345,0.97832,0.98228,0.99103,0.99287,0.99589,0.99824,1,0.99862,0.97285,0.96799,0.96218,0.95102,0.93421,0.93203,0.90284,0.90105,0.89165,0.8797,0.86221,0.60534,0.58516,0.57575,0.5586,0.5521,0.53248,0.46267,0.45348,0.43751,0.41958,0.40794,0.35569,0.35151,0.30782,0.26148,0.22543,0.22251,0.187,0.15919,0.15764,0.14659,0.1256,0.12516,0.12419,0.10197,0.10003,0.088876,0.083765,0.073159,0.070471,0.058631,0.056692,0.046585,0.044155 1,3.9314e-29,5.0298e-29,5.7654e-29,9.2195e-29,1.67e-28,1.6932e-28,1.9811e-28,3.7238e-28,1.3857e-27,1.7664e-27,1.9445e-27,1.9512e-27,2.8405e-27,5.5082e-27,6.0063e-27,9.4242e-27,3.7195e-26,1.3882e-25,1.6516e-25,3.7026e-25,5.8637e-25,8.4696e-25,9.6678e-25,1.5726e-24,1.6197e-24,2.5725e-24,5.0965e-24,9.2668e-24,1.1919e-23,3.6975e-23,3.8699e-23,9.6325e-23,1.6134e-22,1.8461e-22,3.2857e-22,4.5578e-22,4.5831e-22,5.4456e-22,6.7752e-21,7.9176e-20,1.405e-19,1.43e-19,1.4327e-19,2.6665e-19,7.3106e-19,8.4723e-19,9.3593e-19,4.5092e-18,5.3897e-18,5.9302e-18,2.8093e-17,9.6401e-17,2.0428e-16,3.3525e-16,6.0748e-16,5.2057e-15,1.0909e-14,1.1915e-14,3.2214e-14,9.6703e-14,1.5801e-13,1.583e-13,3.1628e-13,4.6507e-13,6.0545e-13,8.46e-13,1.1204e-12,1.6539e-12,1.9503e-12,3.1403e-12,7.173e-12,1.0309e-11,1.8259e-11,5.6293e-11,6.296e-11,9.6578e-11,1.2411e-10,2.579e-10,8.9562e-10,1.2488e-09,3.0946e-09,6.3079e-09,9.2544e-09,1.7979e-08,1.9632e-08,2.1299e-08,3.2085e-08,4.0322e-08,4.0519e-08,4.8895e-08,5.6333e-08,7.1596e-08,7.3038e-08,7.3679e-08,7.737e-08,8.8452e-08,1.1032e-07,1.2371e-07,2.0849e-07,2.0869e-07,3.8691e-07,3.9003e-07,4.4438e-07,4.8338e-07,5.1024e-07,6.0806e-07,7.2883e-07,1.2843e-06,1.3913e-06,1.7974e-06,5.3205e-06,7.3386e-06,8.1688e-06,1.5662e-05,1.6912e-05,1.8409e-05,3.4771e-05,3.8002e-05,4.9379e-05,5.4861e-05,5.688e-05,6.097e-05,9.5164e-05,0.00014893,0.00015586,0.00017524,0.00021535,0.00039568,0.0004062,0.00042354,0.0011222,0.002074,0.0026617,0.0029539,0.0039209,0.0044883,0.0047881,0.0060813,0.0094298,0.011849,0.012408,0.013004,0.013096,0.014513,0.0331,0.037905,0.039039,0.041868,0.050717,0.055608,0.072986,0.075484,0.079023,0.080757,0.086448,0.095846,0.10046,0.10428,0.1181,0.12346,0.14097,0.14584,0.16176,0.16591,0.17223,0.17254,0.17734,0.19147,0.2234,0.22407,0.25326,0.26974,0.28459,0.37337,0.40415,0.40725,0.48833,0.50776,0.50989,0.5535,0.5546,0.59136,0.64083,0.70732,0.71794,0.74296,0.79095,0.81075,0.82794,0.84574,0.89368,0.91559,0.9158,0.92624,0.94081,0.94299,0.96035,0.96631,0.97124,0.98272,0.9853,0.9898,0.99377,0.99862,1,0.98354,0.97968,0.97495,0.96564,0.95115,0.94925,0.92324,0.92162,0.91308,0.90213,0.88598,0.63713,0.61697,0.60754,0.59033,0.58378,0.564,0.49313,0.48374,0.46739,0.449,0.43703,0.38303,0.37869,0.33318,0.28455,0.24646,0.24336,0.20558,0.1758,0.17412,0.16224,0.13958,0.1391,0.13804,0.1139,0.11179,0.099613,0.094017,0.082372,0.079412,0.066343,0.064196,0.052975,0.050268 1,4.8127e-30,6.1817e-30,7.1012e-30,1.1441e-29,2.0923e-29,2.1219e-29,2.4889e-29,4.7264e-29,1.7968e-28,2.2996e-28,2.5355e-28,2.5443e-28,3.727e-28,7.3067e-28,7.9789e-28,1.2613e-27,5.0938e-27,1.944e-26,2.3197e-26,5.2728e-26,8.4167e-26,1.2235e-25,1.3998e-25,2.2962e-25,2.3662e-25,3.7885e-25,7.5962e-25,1.3958e-24,1.8034e-24,5.7085e-24,5.9795e-24,1.513e-23,2.558e-23,2.9342e-23,5.2775e-23,7.3647e-23,7.4064e-23,8.8282e-23,1.1513e-21,1.4103e-20,2.5307e-20,2.5765e-20,2.5815e-20,4.8637e-20,1.3604e-19,1.5812e-19,1.7502e-19,8.7042e-19,1.0442e-18,1.1511e-18,5.6314e-18,1.9832e-17,4.2704e-17,7.0832e-17,1.3001e-16,1.1683e-15,2.4895e-15,2.7247e-15,7.5365e-15,2.3211e-14,3.8369e-14,3.8441e-14,7.8083e-14,1.1589e-13,1.5184e-13,2.139e-13,2.8522e-13,4.2511e-13,5.0333e-13,8.2015e-13,1.9128e-12,2.7748e-12,4.9873e-12,1.5836e-11,1.7765e-11,2.7563e-11,3.5662e-11,7.559e-11,2.7176e-10,3.825e-10,9.7295e-10,2.0252e-09,3.0053e-09,5.9568e-09,6.5221e-09,7.0934e-09,1.0822e-08,1.3697e-08,1.3766e-08,1.6709e-08,1.9337e-08,2.4764e-08,2.5278e-08,2.5508e-08,2.6827e-08,3.0801e-08,3.869e-08,4.3544e-08,7.4647e-08,7.4721e-08,1.414e-07,1.4258e-07,1.6316e-07,1.7798e-07,1.8821e-07,2.2564e-07,2.7213e-07,4.8902e-07,5.3126e-07,6.9253e-07,2.1321e-06,2.9762e-06,3.3263e-06,6.5381e-06,7.0806e-06,7.7333e-06,1.4979e-05,1.6429e-05,2.1577e-05,2.4076e-05,2.4999e-05,2.6873e-05,4.2733e-05,6.8174e-05,7.1486e-05,8.0789e-05,0.00010018,0.00018921,0.00019447,0.00020316,0.00056395,0.0010752,0.001398,0.00156,0.0021027,0.002425,0.0025962,0.0033422,0.0053167,0.0067733,0.0071134,0.0074763,0.0075328,0.0084013,0.020232,0.023392,0.024142,0.026022,0.03197,0.035296,0.047315,0.049066,0.051556,0.052781,0.056815,0.063535,0.066858,0.069621,0.07971,0.083654,0.096671,0.10033,0.11237,0.11553,0.12036,0.12061,0.12429,0.13521,0.16028,0.16082,0.18417,0.19754,0.20969,0.28436,0.31105,0.31376,0.38616,0.40396,0.40592,0.44653,0.44757,0.48255,0.53076,0.59781,0.60879,0.63499,0.68668,0.70864,0.72807,0.74857,0.80623,0.83419,0.83446,0.84828,0.86827,0.87134,0.89685,0.90613,0.91412,0.93422,0.93917,0.94843,0.95771,0.97285,0.98354,1,0.99979,0.99907,0.99662,0.99102,0.99017,0.97663,0.97569,0.9706,0.96377,0.95312,0.74499,0.7258,0.71674,0.70004,0.69364,0.67414,0.60233,0.5926,0.57552,0.55612,0.54338,0.48489,0.48011,0.42932,0.37359,0.32882,0.32513,0.27958,0.24285,0.24076,0.22587,0.19707,0.19646,0.1951,0.16378,0.16101,0.14489,0.13742,0.12172,0.1177,0.099745,0.096765,0.081032,0.077194 1,3.795e-30,4.8766e-30,5.6033e-30,9.0354e-30,1.6541e-29,1.6775e-29,1.9683e-29,3.742e-29,1.426e-28,1.8258e-28,2.0135e-28,2.0205e-28,2.9618e-28,5.8136e-28,6.3495e-28,1.0046e-27,4.0675e-27,1.5562e-26,1.8575e-26,4.2289e-26,6.7563e-26,9.8281e-26,1.1247e-25,1.8467e-25,1.9031e-25,3.0499e-25,6.1235e-25,1.1266e-24,1.4562e-24,4.6199e-24,4.8397e-24,1.2268e-23,2.0764e-23,2.3824e-23,4.2901e-23,5.9909e-23,6.0248e-23,7.184e-23,9.418e-22,1.1598e-20,2.0839e-20,2.1216e-20,2.1258e-20,4.0105e-20,1.1243e-19,1.3072e-19,1.4472e-19,7.2231e-19,8.6685e-19,9.5586e-19,4.693e-18,1.6575e-17,3.5755e-17,5.9378e-17,1.0915e-16,9.8604e-16,2.1051e-15,2.3045e-15,6.3904e-15,1.9738e-14,3.267e-14,3.2732e-14,6.6609e-14,9.8962e-14,1.2975e-13,1.8295e-13,2.4415e-13,3.6429e-13,4.3151e-13,7.0406e-13,1.6459e-12,2.3901e-12,4.3029e-12,1.3709e-11,1.5383e-11,2.3898e-11,3.0944e-11,6.5736e-11,2.3725e-10,3.3428e-10,8.5279e-10,1.7792e-09,2.6437e-09,5.2519e-09,5.752e-09,6.2576e-09,9.5601e-09,1.211e-08,1.2171e-08,1.4783e-08,1.7117e-08,2.1939e-08,2.2396e-08,2.26e-08,2.3773e-08,2.7308e-08,3.433e-08,3.8652e-08,6.6388e-08,6.6455e-08,1.2604e-07,1.271e-07,1.4552e-07,1.5879e-07,1.6795e-07,2.0148e-07,2.4317e-07,4.3793e-07,4.759e-07,6.21e-07,1.9203e-06,2.6842e-06,3.0013e-06,5.9157e-06,6.4087e-06,7.002e-06,1.3601e-05,1.4924e-05,1.9623e-05,2.1906e-05,2.275e-05,2.4464e-05,3.8983e-05,6.2326e-05,6.5367e-05,7.3917e-05,9.1756e-05,0.00017382,0.00017868,0.00018671,0.00052099,0.00099673,0.0012979,0.0014492,0.0019567,0.0022585,0.002419,0.0031187,0.0049756,0.0063485,0.0066693,0.0070118,0.0070652,0.0078854,0.019106,0.022114,0.022828,0.02462,0.030295,0.033472,0.044977,0.046656,0.049044,0.050219,0.054091,0.060547,0.063742,0.0664,0.076115,0.079916,0.092475,0.096007,0.10765,0.11071,0.11538,0.11562,0.11919,0.12977,0.15411,0.15462,0.17734,0.19036,0.20221,0.27524,0.30142,0.30408,0.37535,0.39292,0.39485,0.43501,0.43603,0.4707,0.51858,0.58542,0.5964,0.62262,0.67448,0.69658,0.71617,0.73686,0.79532,0.82382,0.8241,0.83822,0.85871,0.86187,0.88815,0.89777,0.90606,0.92701,0.93221,0.94195,0.95177,0.96799,0.97968,0.99979,1,0.99974,0.99809,0.99354,0.99281,0.98077,0.97992,0.97526,0.96893,0.95898,0.7566,0.73762,0.72863,0.71207,0.70572,0.68634,0.61472,0.60499,0.58789,0.56844,0.55567,0.49685,0.49203,0.44078,0.38438,0.33892,0.33517,0.28879,0.25129,0.24916,0.23392,0.20442,0.20379,0.2024,0.17023,0.16738,0.1508,0.1431,0.12691,0.12275,0.1042,0.10111,0.084812,0.08083 1,2.9157e-30,3.7486e-30,4.3084e-30,6.9539e-30,1.2746e-29,1.2926e-29,1.5172e-29,2.888e-29,1.1035e-28,1.4136e-28,1.5592e-28,1.5646e-28,2.2953e-28,4.5115e-28,4.9282e-28,7.8044e-28,3.169e-27,1.2158e-26,1.4517e-26,3.3107e-26,5.2946e-26,7.7079e-26,8.8233e-26,1.4503e-25,1.4947e-25,2.3977e-25,4.8212e-25,8.8813e-25,1.1487e-24,3.6533e-24,3.8275e-24,9.7224e-24,1.6474e-23,1.8908e-23,3.4092e-23,4.7643e-23,4.7914e-23,5.7155e-23,7.5367e-22,9.3357e-21,1.6797e-20,1.7102e-20,1.7136e-20,3.2378e-20,9.0988e-20,1.0583e-19,1.172e-19,5.8725e-19,7.0509e-19,7.7767e-19,3.8334e-18,1.3583e-17,2.9359e-17,4.8819e-17,8.9882e-17,8.1681e-16,1.7474e-15,1.9134e-15,5.321e-15,1.6487e-14,2.7329e-14,2.7381e-14,5.5834e-14,8.3049e-14,1.0898e-13,1.5381e-13,2.0544e-13,3.0689e-13,3.6371e-13,5.943e-13,1.3929e-12,2.025e-12,3.6524e-12,1.1679e-11,1.311e-11,2.0396e-11,2.6431e-11,5.6289e-11,2.0403e-10,2.8781e-10,7.3663e-10,1.5409e-09,2.2928e-09,4.5661e-09,5.0026e-09,5.444e-09,8.3301e-09,1.0561e-08,1.0615e-08,1.2902e-08,1.4947e-08,1.9176e-08,1.9578e-08,1.9757e-08,2.0786e-08,2.3889e-08,3.0058e-08,3.3859e-08,5.8277e-08,5.8336e-08,1.1093e-07,1.1186e-07,1.2814e-07,1.3987e-07,1.4798e-07,1.7765e-07,2.1457e-07,3.8738e-07,4.2112e-07,5.5013e-07,1.7095e-06,2.393e-06,2.677e-06,5.2929e-06,5.7362e-06,6.2698e-06,1.2216e-05,1.3411e-05,1.7657e-05,1.9722e-05,2.0486e-05,2.2037e-05,3.5196e-05,5.6406e-05,5.9173e-05,6.6955e-05,8.3208e-05,0.00015817,0.00016261,0.00016996,0.000477,0.00091611,0.0011948,0.0013351,0.001806,0.0020865,0.0022357,0.0028873,0.004621,0.0059062,0.0062069,0.006528,0.006578,0.0073475,0.017923,0.02077,0.021446,0.023144,0.028528,0.031548,0.042503,0.044104,0.046382,0.047504,0.051202,0.057374,0.060431,0.062976,0.072287,0.075935,0.087999,0.091395,0.1026,0.10555,0.11006,0.11028,0.11372,0.12394,0.14747,0.14797,0.17,0.18263,0.19414,0.26535,0.29097,0.29358,0.36356,0.38086,0.38276,0.42239,0.4234,0.45769,0.50518,0.57173,0.5827,0.6089,0.66091,0.68314,0.70287,0.72377,0.78304,0.81209,0.81237,0.82682,0.84784,0.85108,0.8782,0.88816,0.89677,0.91865,0.9241,0.93437,0.94478,0.96218,0.97495,0.99907,0.99974,1,0.99923,0.99585,0.99526,0.9849,0.98414,0.97996,0.9742,0.96503,0.76929,0.75056,0.74168,0.72528,0.71899,0.69977,0.62844,0.6187,0.6016,0.58213,0.56932,0.51019,0.50534,0.45362,0.39649,0.3503,0.34648,0.29919,0.26085,0.25867,0.24306,0.21277,0.21213,0.2107,0.17759,0.17465,0.15754,0.14959,0.13284,0.12854,0.1093,0.1061,0.08916,0.085015 1,1.8441e-30,2.3728e-30,2.7285e-30,4.4109e-30,8.1013e-30,8.2166e-30,9.649e-30,1.8408e-29,7.0661e-29,9.0593e-29,9.9961e-29,1.0031e-28,1.4735e-28,2.903e-28,3.1722e-28,5.0316e-28,2.0532e-27,7.9153e-27,9.4573e-27,2.1632e-26,3.4653e-26,5.0517e-26,5.7856e-26,9.527e-26,9.8197e-26,1.578e-25,3.1811e-25,5.8734e-25,7.6036e-25,2.4289e-24,2.5451e-24,6.4879e-24,1.1015e-23,1.2649e-23,2.286e-23,3.1988e-23,3.217e-23,3.8401e-23,5.1152e-22,6.4008e-21,1.1544e-20,1.1755e-20,1.1778e-20,2.2313e-20,6.2974e-20,7.3294e-20,8.1201e-20,4.0966e-19,4.9225e-19,5.4315e-19,2.696e-18,9.606e-18,2.0835e-17,3.4725e-17,6.411e-17,5.8859e-16,1.2637e-15,1.3844e-15,3.8687e-15,1.2054e-14,2.003e-14,2.0068e-14,4.1068e-14,6.1208e-14,8.0426e-14,1.1372e-13,1.5211e-13,2.277e-13,2.7009e-13,4.4246e-13,1.0417e-12,1.5174e-12,2.7456e-12,8.8352e-12,9.9243e-12,1.5478e-11,2.0087e-11,4.2961e-11,1.5689e-10,2.2176e-10,5.7076e-10,1.1993e-09,1.7889e-09,3.5781e-09,3.9224e-09,4.2708e-09,6.5528e-09,8.3205e-09,8.3629e-09,1.0178e-08,1.1803e-08,1.5167e-08,1.5486e-08,1.5629e-08,1.6449e-08,1.8922e-08,2.3844e-08,2.688e-08,4.6436e-08,4.6483e-08,8.8779e-08,8.9531e-08,1.0266e-07,1.1213e-07,1.1867e-07,1.4265e-07,1.7253e-07,3.1279e-07,3.4023e-07,4.4533e-07,1.3956e-06,1.9586e-06,2.193e-06,4.3591e-06,4.7272e-06,5.1707e-06,1.013e-05,1.1129e-05,1.4686e-05,1.6419e-05,1.706e-05,1.8363e-05,2.9446e-05,4.7386e-05,4.9732e-05,5.6335e-05,7.0146e-05,0.00013413,0.00013794,0.00014423,0.00040886,0.00079051,0.0010339,0.0011567,0.0015698,0.0018165,0.001948,0.002523,0.0040602,0.0052049,0.0054732,0.0057599,0.0058046,0.0064925,0.016024,0.018607,0.019222,0.020766,0.025675,0.028435,0.038484,0.039956,0.042054,0.043087,0.046497,0.052199,0.055027,0.057384,0.066022,0.069412,0.080648,0.083817,0.09429,0.097051,0.10128,0.10149,0.10471,0.11431,0.13648,0.13695,0.15778,0.16976,0.1807,0.24874,0.27337,0.27588,0.34357,0.36038,0.36223,0.40088,0.40187,0.43545,0.48218,0.54809,0.55899,0.58512,0.63724,0.65964,0.67958,0.70076,0.76127,0.79119,0.79148,0.80644,0.82831,0.8317,0.86016,0.87068,0.87982,0.90323,0.90912,0.92026,0.93166,0.95102,0.96564,0.99662,0.99809,0.99923,1,0.99865,0.9983,0.9909,0.99031,0.98696,0.98222,0.97443,0.79085,0.7726,0.76392,0.74787,0.74169,0.72279,0.65214,0.64245,0.62538,0.6059,0.59306,0.53353,0.52863,0.47618,0.41789,0.37049,0.36656,0.31774,0.27796,0.27569,0.25943,0.2278,0.22712,0.22563,0.19088,0.18778,0.16975,0.16135,0.14362,0.13906,0.11861,0.1152,0.097114,0.092679 1,1.0018e-30,1.2905e-30,1.4848e-30,2.4056e-30,4.4303e-30,4.4937e-30,5.2809e-30,1.0104e-29,3.9023e-29,5.0088e-29,5.5292e-29,5.5486e-29,8.1648e-29,1.6137e-28,1.764e-28,2.804e-28,1.1517e-27,4.4684e-27,5.3434e-27,1.227e-26,1.9701e-26,2.8772e-26,3.2973e-26,5.4428e-26,5.6108e-26,9.0371e-26,1.8281e-25,3.3854e-25,4.3883e-25,1.4099e-24,1.4777e-24,3.7846e-24,6.4429e-24,7.4038e-24,1.342e-23,1.8811e-23,1.8919e-23,2.2604e-23,3.0517e-22,3.8703e-21,7.0027e-21,7.1312e-21,7.1453e-21,1.3583e-20,3.8557e-20,4.4913e-20,4.9787e-20,2.5346e-19,3.0488e-19,3.3659e-19,1.6861e-18,6.0524e-18,1.3187e-17,2.2046e-17,4.0852e-17,3.8018e-16,8.2017e-16,8.9898e-16,2.5287e-15,7.9364e-15,1.3232e-14,1.3257e-14,2.7259e-14,4.0735e-14,5.3622e-14,7.5994e-14,1.0185e-13,1.5288e-13,1.8156e-13,2.9844e-13,7.0681e-13,1.0323e-12,1.8757e-12,6.0871e-12,6.8433e-12,1.0708e-11,1.3923e-11,2.9947e-11,1.1045e-10,1.5654e-10,4.0592e-10,8.5805e-10,1.2841e-09,2.5831e-09,2.8339e-09,3.0878e-09,4.7547e-09,6.0497e-09,6.0808e-09,7.4132e-09,8.6074e-09,1.1085e-08,1.132e-08,1.1425e-08,1.203e-08,1.3855e-08,1.7495e-08,1.9744e-08,3.4274e-08,3.4309e-08,6.5911e-08,6.6474e-08,7.6316e-08,8.3423e-08,8.8339e-08,1.0637e-07,1.2887e-07,2.3496e-07,2.5578e-07,3.3566e-07,1.0637e-06,1.498e-06,1.6792e-06,3.3616e-06,3.6486e-06,3.9946e-06,7.8821e-06,8.6684e-06,1.1474e-05,1.2844e-05,1.3351e-05,1.4382e-05,2.3186e-05,3.7517e-05,3.9397e-05,4.4692e-05,5.5794e-05,0.00010753,0.00011062,0.00011573,0.00033245,0.00064851,0.00085137,0.00095395,0.0013004,0.0015079,0.0016187,0.0021046,0.0034117,0.0043908,0.0046209,0.004867,0.0049054,0.0054968,0.013779,0.016044,0.016584,0.017942,0.022273,0.024716,0.033652,0.034967,0.036841,0.037765,0.040819,0.045937,0.048481,0.050604,0.058401,0.061468,0.071664,0.074547,0.084095,0.086618,0.090482,0.090675,0.09363,0.10243,0.12285,0.12328,0.14257,0.1537,0.16389,0.22775,0.25106,0.25344,0.31798,0.33411,0.33589,0.37314,0.3741,0.40665,0.4522,0.51699,0.52777,0.55369,0.60571,0.62821,0.64832,0.66977,0.73158,0.76248,0.76278,0.77833,0.80119,0.80475,0.83481,0.84602,0.8558,0.88108,0.8875,0.89973,0.91237,0.93421,0.95115,0.99102,0.99354,0.99585,0.99865,1,0.99998,0.99655,0.99618,0.99397,0.99061,0.9847,0.81844,0.80093,0.79258,0.77707,0.77109,0.75271,0.68336,0.67376,0.65683,0.63743,0.62461,0.5648,0.55985,0.50665,0.44702,0.39813,0.39407,0.34332,0.30168,0.29929,0.28219,0.24879,0.24807,0.24649,0.20955,0.20625,0.18697,0.17797,0.15891,0.15399,0.13189,0.12819,0.10852,0.10368 1,9.3053e-31,1.1988e-30,1.3795e-30,2.2355e-30,4.1184e-30,4.1773e-30,4.9095e-30,9.3967e-30,3.6319e-29,4.6623e-29,5.147e-29,5.1651e-29,7.6021e-29,1.503e-28,1.6431e-28,2.6125e-28,1.0739e-27,4.1697e-27,4.9868e-27,1.1457e-26,1.84e-26,2.6878e-26,3.0805e-26,5.0864e-26,5.2435e-26,8.4478e-26,1.7096e-25,3.1671e-25,4.1059e-25,1.3201e-24,1.3836e-24,3.5457e-24,6.0381e-24,6.9392e-24,1.2583e-23,1.7641e-23,1.7742e-23,2.12e-23,2.8668e-22,3.6417e-21,6.5916e-21,6.7127e-21,6.7259e-21,1.2792e-20,3.6334e-20,4.2328e-20,4.6924e-20,2.3915e-19,2.877e-19,3.1765e-19,1.593e-18,5.7232e-18,1.2477e-17,2.0866e-17,3.8683e-17,3.6059e-16,7.7834e-16,8.5319e-16,2.4018e-15,7.5448e-15,1.2584e-14,1.2608e-14,2.5939e-14,3.8775e-14,5.1053e-14,7.2374e-14,9.7021e-14,1.4568e-13,1.7303e-13,2.8454e-13,6.7437e-13,9.8528e-13,1.7911e-12,5.8185e-12,6.542e-12,1.024e-11,1.3318e-11,2.8666e-11,1.0585e-10,1.5007e-10,3.895e-10,8.2392e-10,1.2335e-09,2.4831e-09,2.7244e-09,2.9687e-09,4.5734e-09,5.8204e-09,5.8503e-09,7.1337e-09,8.2841e-09,1.0671e-08,1.0898e-08,1.0999e-08,1.1582e-08,1.3342e-08,1.6851e-08,1.9019e-08,3.3034e-08,3.3068e-08,6.3573e-08,6.4117e-08,7.3621e-08,8.0484e-08,8.5233e-08,1.0265e-07,1.2439e-07,2.2695e-07,2.4708e-07,3.2434e-07,1.0293e-06,1.4501e-06,1.6257e-06,3.2572e-06,3.5357e-06,3.8714e-06,7.6457e-06,8.4094e-06,1.1135e-05,1.2466e-05,1.2959e-05,1.3962e-05,2.2523e-05,3.6468e-05,3.8298e-05,4.3453e-05,5.4264e-05,0.00010468,0.00010769,0.00011267,0.0003242,0.00063308,0.00083149,0.00093185,0.0012709,0.0014742,0.0015826,0.0020587,0.0033402,0.0043009,0.0045267,0.0047682,0.0048059,0.0053865,0.013528,0.015757,0.016288,0.017625,0.02189,0.024297,0.033106,0.034402,0.036251,0.037163,0.040176,0.045226,0.047737,0.049833,0.057533,0.060562,0.070637,0.073487,0.082927,0.085422,0.089244,0.089435,0.092357,0.10107,0.12128,0.12171,0.14081,0.15185,0.16195,0.2253,0.24845,0.25081,0.31496,0.33101,0.33279,0.36986,0.37082,0.40323,0.44863,0.51326,0.52403,0.54991,0.60191,0.62441,0.64453,0.66601,0.72794,0.75895,0.75925,0.77487,0.79783,0.80141,0.83165,0.84294,0.85279,0.87828,0.88476,0.89712,0.9099,0.93203,0.94925,0.99017,0.99281,0.99526,0.9983,0.99998,1,0.99705,0.9967,0.99464,0.99144,0.98577,0.82168,0.80427,0.79597,0.78053,0.77457,0.75627,0.6871,0.67752,0.66061,0.64123,0.62841,0.5686,0.56364,0.51036,0.45058,0.40153,0.39745,0.34648,0.30462,0.30222,0.28502,0.2514,0.25068,0.24909,0.21188,0.20856,0.18913,0.18005,0.16083,0.15587,0.13356,0.12983,0.10996,0.10507 1,3.7552e-31,4.8461e-31,5.5814e-31,9.0736e-31,1.6783e-30,1.7025e-30,2.0031e-30,3.8504e-30,1.5017e-29,1.931e-29,2.1332e-29,2.1407e-29,3.159e-29,6.2746e-29,6.8636e-29,1.0947e-28,4.5441e-28,1.781e-27,2.1327e-27,4.9283e-27,7.9415e-27,1.1632e-26,1.3344e-26,2.2112e-26,2.28e-26,3.6859e-26,7.4969e-26,1.395e-25,1.812e-25,5.8755e-25,6.1605e-25,1.5897e-24,2.7178e-24,3.1266e-24,5.6948e-24,8.0042e-24,8.0504e-24,9.6323e-24,1.3287e-22,1.7217e-21,3.1311e-21,3.1891e-21,3.1954e-21,6.1086e-21,1.7498e-20,2.041e-20,2.2645e-20,1.1697e-19,1.4093e-19,1.5573e-19,7.9164e-19,2.8755e-18,6.3114e-18,1.0603e-17,1.9763e-17,1.8795e-16,4.0857e-16,4.4824e-16,1.274e-15,4.0457e-15,6.7811e-15,6.7942e-15,1.4075e-14,2.1123e-14,2.7887e-14,3.967e-14,5.3335e-14,8.041e-14,9.567e-14,1.5811e-13,3.7805e-13,5.5451e-13,1.0143e-12,3.3363e-12,3.7559e-12,5.9075e-12,7.705e-12,1.6724e-11,6.2664e-11,8.9197e-11,2.3407e-10,4.9953e-10,7.5146e-10,1.5256e-09,1.6757e-09,1.828e-09,2.8311e-09,3.6139e-09,3.6327e-09,4.4406e-09,5.1664e-09,6.6764e-09,6.8203e-09,6.8844e-09,7.254e-09,8.371e-09,1.0604e-08,1.1988e-08,2.0971e-08,2.0993e-08,4.0709e-08,4.1062e-08,4.7236e-08,5.1702e-08,5.4795e-08,6.6158e-08,8.0382e-08,1.4787e-07,1.6118e-07,2.1238e-07,6.8524e-07,9.703e-07,1.0896e-06,2.2063e-06,2.3979e-06,2.6292e-06,5.248e-06,5.781e-06,7.6892e-06,8.6241e-06,8.9707e-06,9.6764e-06,1.5733e-05,2.5682e-05,2.6993e-05,3.0693e-05,3.8476e-05,7.5087e-05,7.7288e-05,8.093e-05,0.00023748,0.00046987,0.00062054,0.00069707,0.00095688,0.0011134,0.0011971,0.0015661,0.0025686,0.0033266,0.0035055,0.003697,0.0037269,0.0041885,0.010764,0.012588,0.013024,0.014123,0.017645,0.019642,0.027003,0.028093,0.029649,0.030416,0.03296,0.037238,0.039372,0.041155,0.047732,0.050329,0.059,0.061461,0.069643,0.071811,0.075139,0.075305,0.077854,0.085468,0.10325,0.10363,0.12056,0.1304,0.13943,0.1967,0.21787,0.22004,0.27938,0.29437,0.29603,0.33086,0.33176,0.36245,0.4058,0.46825,0.47874,0.50406,0.55538,0.57778,0.59793,0.61955,0.68265,0.71469,0.71501,0.73128,0.7554,0.75918,0.79136,0.8035,0.81416,0.84204,0.84921,0.86298,0.87739,0.90284,0.92324,0.97663,0.98077,0.9849,0.9909,0.99655,0.99705,1,0.99999,0.99964,0.99853,0.99574,0.85971,0.84366,0.83594,0.82152,0.81593,0.79866,0.73227,0.72296,0.70644,0.68741,0.67477,0.61519,0.61022,0.55634,0.49507,0.44418,0.43992,0.38639,0.34196,0.3394,0.32101,0.28483,0.28405,0.28233,0.24191,0.23828,0.21698,0.20699,0.18576,0.18025,0.15539,0.15121,0.12886,0.12334 1,3.5665e-31,4.603e-31,5.3017e-31,8.6204e-31,1.5949e-30,1.6179e-30,1.9036e-30,3.66e-30,1.4282e-29,1.8367e-29,2.029e-29,2.0362e-29,3.0052e-29,5.9707e-29,6.5314e-29,1.042e-28,4.3273e-28,1.697e-27,2.0322e-27,4.6976e-27,7.5711e-27,1.1091e-26,1.2725e-26,2.1089e-26,2.1746e-26,3.5161e-26,7.1537e-26,1.3315e-25,1.7297e-25,5.6113e-25,5.8836e-25,1.5188e-24,2.5972e-24,2.9881e-24,5.4438e-24,7.6526e-24,7.6968e-24,9.2099e-24,1.2718e-22,1.6499e-21,3.0013e-21,3.0569e-21,3.063e-21,5.8572e-21,1.6786e-20,1.9581e-20,2.1726e-20,1.1231e-19,1.3533e-19,1.4954e-19,7.6077e-19,2.7651e-18,6.0714e-18,1.0202e-17,1.9022e-17,1.8111e-16,3.9386e-16,4.3212e-16,1.2289e-15,3.9047e-15,6.5466e-15,6.5593e-15,1.3594e-14,2.0405e-14,2.6944e-14,3.8335e-14,5.1549e-14,7.7735e-14,9.2497e-14,1.5291e-13,3.6579e-13,5.3665e-13,9.8201e-13,3.2323e-12,3.639e-12,5.7253e-12,7.4686e-12,1.6219e-11,6.0821e-11,8.6592e-11,2.2738e-10,4.8549e-10,7.3054e-10,1.4838e-09,1.63e-09,1.7781e-09,2.7548e-09,3.517e-09,3.5353e-09,4.3222e-09,5.0292e-09,6.5003e-09,6.6405e-09,6.703e-09,7.063e-09,8.1515e-09,1.0328e-08,1.1676e-08,2.0435e-08,2.0456e-08,3.9688e-08,4.0032e-08,4.6056e-08,5.0414e-08,5.3431e-08,6.4521e-08,7.8405e-08,1.443e-07,1.573e-07,2.0732e-07,6.6952e-07,9.4831e-07,1.0651e-06,2.1578e-06,2.3453e-06,2.5718e-06,5.1365e-06,5.6586e-06,7.5283e-06,8.4446e-06,8.7843e-06,9.476e-06,1.5414e-05,2.5172e-05,2.6459e-05,3.0089e-05,3.7728e-05,7.3675e-05,7.5836e-05,7.9414e-05,0.00023329,0.00046193,0.00061024,0.00068559,0.00094146,0.0010956,0.0011781,0.0015418,0.0025302,0.003278,0.0034545,0.0036435,0.003673,0.0041285,0.010623,0.012426,0.012858,0.013944,0.017428,0.019404,0.026689,0.027767,0.029308,0.030068,0.032587,0.036824,0.038937,0.040704,0.047221,0.049795,0.058391,0.060832,0.068945,0.071096,0.074397,0.074562,0.077091,0.084646,0.10229,0.10267,0.11949,0.12925,0.13823,0.19516,0.21622,0.21838,0.27745,0.29237,0.29402,0.32872,0.32962,0.3602,0.40343,0.46574,0.47621,0.50149,0.55275,0.57515,0.59529,0.61691,0.68005,0.71214,0.71246,0.72876,0.75294,0.75672,0.789,0.80118,0.81188,0.83988,0.84709,0.86093,0.87543,0.90105,0.92162,0.97569,0.97992,0.98414,0.99031,0.99618,0.9967,0.99999,1,0.99975,0.99876,0.99613,0.86176,0.84579,0.83811,0.82376,0.81819,0.80098,0.73479,0.72549,0.709,0.69,0.67738,0.61784,0.61286,0.55896,0.49763,0.44665,0.44238,0.38871,0.34415,0.34158,0.32312,0.2868,0.28602,0.28429,0.24369,0.24004,0.21864,0.2086,0.18725,0.18171,0.1567,0.15249,0.13,0.12444 1,2.7336e-31,3.5297e-31,4.0666e-31,6.6183e-31,1.2259e-30,1.2436e-30,1.4637e-30,2.8178e-30,1.1024e-29,1.4184e-29,1.5673e-29,1.5729e-29,2.3231e-29,4.6218e-29,5.0567e-29,8.0743e-29,3.3628e-28,1.3224e-27,1.5842e-27,3.6682e-27,5.9178e-27,8.6759e-27,9.9565e-27,1.6519e-26,1.7034e-26,2.757e-26,5.6176e-26,1.047e-25,1.3608e-25,4.4255e-25,4.6407e-25,1.2004e-24,2.0551e-24,2.3651e-24,4.3144e-24,6.0694e-24,6.1045e-24,7.3074e-24,1.015e-22,1.3244e-21,2.4125e-21,2.4573e-21,2.4622e-21,4.7152e-21,1.3547e-20,1.5808e-20,1.7544e-20,9.1046e-20,1.0976e-19,1.2132e-19,6.1961e-19,2.2593e-18,4.9705e-18,8.3631e-18,1.5618e-17,1.4957e-16,3.2595e-16,3.577e-16,1.0201e-15,3.2516e-15,5.4593e-15,5.47e-15,1.136e-14,1.7071e-14,2.2559e-14,3.2128e-14,4.3239e-14,6.5281e-14,7.7716e-14,1.2866e-13,3.0858e-13,4.5323e-13,8.3087e-13,2.7448e-12,3.0913e-12,4.8704e-12,6.3587e-12,1.3842e-11,5.2131e-11,7.4306e-11,1.9575e-10,4.1903e-10,6.3142e-10,1.2857e-09,1.4128e-09,1.5417e-09,2.3921e-09,3.0567e-09,3.0727e-09,3.7593e-09,4.3767e-09,5.6621e-09,5.7847e-09,5.8393e-09,6.1542e-09,7.1063e-09,9.0118e-09,1.0193e-08,1.7876e-08,1.7895e-08,3.4806e-08,3.5109e-08,4.0414e-08,4.4253e-08,4.6912e-08,5.6691e-08,6.8942e-08,1.2719e-07,1.387e-07,1.83e-07,5.9386e-07,8.4239e-07,9.4656e-07,1.9236e-06,2.0915e-06,2.2945e-06,4.5968e-06,5.0663e-06,6.7492e-06,7.5746e-06,7.8808e-06,8.5043e-06,1.3865e-05,2.2697e-05,2.3862e-05,2.7153e-05,3.4085e-05,6.6787e-05,6.8757e-05,7.2017e-05,0.00021278,0.00042293,0.00055962,0.00062915,0.00086558,0.0010083,0.0010847,0.0014218,0.0023407,0.0030376,0.0032023,0.0033787,0.0034063,0.0038317,0.009926,0.011624,0.012031,0.013056,0.016345,0.018214,0.025118,0.026141,0.027604,0.028327,0.030721,0.034752,0.036764,0.038448,0.044663,0.04712,0.055336,0.057671,0.065442,0.067504,0.070669,0.070828,0.073254,0.080508,0.097483,0.097847,0.11406,0.12349,0.13216,0.18736,0.20784,0.20994,0.26758,0.28219,0.2838,0.31782,0.3187,0.34875,0.39132,0.45288,0.46325,0.48832,0.53928,0.56159,0.58169,0.6033,0.66661,0.69892,0.69924,0.71569,0.74013,0.74396,0.77671,0.7891,0.8,0.82861,0.836,0.85021,0.86514,0.89165,0.91308,0.9706,0.97526,0.97996,0.98696,0.99397,0.99464,0.99964,0.99975,1,0.99962,0.99785,0.87216,0.85663,0.84915,0.83514,0.8297,0.81284,0.74766,0.73846,0.72214,0.70329,0.69075,0.63143,0.62646,0.57251,0.51087,0.45944,0.45513,0.40079,0.35552,0.35291,0.33412,0.29708,0.29628,0.29451,0.25299,0.24925,0.22731,0.217,0.19505,0.18935,0.16358,0.15924,0.136,0.13024 1,1.9744e-31,2.5509e-31,2.9399e-31,4.79e-31,8.8853e-31,9.0139e-31,1.0613e-30,2.0463e-30,8.0319e-30,1.034e-29,1.1428e-29,1.1469e-29,1.6955e-29,3.3787e-29,3.6975e-29,5.9106e-29,2.4702e-28,9.7462e-28,1.1681e-27,2.7104e-27,4.3778e-27,6.4243e-27,7.3751e-27,1.2252e-26,1.2635e-26,2.0474e-26,4.1793e-26,7.8014e-26,1.0147e-25,3.3099e-25,3.4713e-25,9.0011e-25,1.5432e-24,1.7766e-24,3.2461e-24,4.5706e-24,4.5971e-24,5.5057e-24,7.7013e-23,1.012e-21,1.8466e-21,1.881e-21,1.8848e-21,3.6161e-21,1.042e-20,1.2165e-20,1.3505e-20,7.0421e-20,8.4938e-20,9.3913e-20,4.8197e-19,1.7643e-18,3.8908e-18,6.557e-18,1.2269e-17,1.1834e-16,2.5854e-16,2.8381e-16,8.1215e-16,2.5987e-15,4.3708e-15,4.3794e-15,9.1173e-15,1.372e-14,1.8149e-14,2.5879e-14,3.4864e-14,5.2714e-14,6.2794e-14,1.0415e-13,2.5056e-13,3.6853e-13,6.7708e-13,2.2467e-12,2.5314e-12,3.9952e-12,5.2213e-12,1.14e-11,4.3159e-11,6.1605e-11,1.6292e-10,3.4987e-10,5.2811e-10,1.0786e-09,1.1857e-09,1.2943e-09,2.0122e-09,2.5739e-09,2.5875e-09,3.1685e-09,3.6912e-09,4.7808e-09,4.8848e-09,4.9311e-09,5.1983e-09,6.0063e-09,7.625e-09,8.6289e-09,1.5172e-08,1.5188e-08,2.9632e-08,2.9892e-08,3.4431e-08,3.7718e-08,3.9996e-08,4.8376e-08,5.8885e-08,1.0896e-07,1.1886e-07,1.5705e-07,5.1265e-07,7.285e-07,8.1909e-07,1.6708e-06,1.8175e-06,1.9948e-06,4.0116e-06,4.4237e-06,5.9025e-06,6.6287e-06,6.8982e-06,7.4472e-06,1.2176e-05,1.9989e-05,2.1021e-05,2.3939e-05,3.0091e-05,5.9206e-05,6.0963e-05,6.3873e-05,0.00019004,0.0003795,0.00050314,0.00056613,0.00078067,0.00091037,0.00097989,0.0012871,0.0021271,0.0027661,0.0029173,0.0030793,0.0031046,0.0034958,0.0091302,0.010708,0.011086,0.012039,0.015104,0.016849,0.023309,0.024269,0.025641,0.026319,0.028567,0.032358,0.034252,0.035838,0.041699,0.044019,0.051787,0.053998,0.061364,0.06332,0.066326,0.066476,0.068781,0.075678,0.091853,0.092201,0.10769,0.11671,0.12503,0.17813,0.19792,0.19995,0.25585,0.27005,0.27163,0.30479,0.30565,0.33503,0.37676,0.43737,0.44761,0.47239,0.52291,0.5451,0.56513,0.58669,0.65012,0.68264,0.68296,0.69957,0.72429,0.72818,0.76144,0.77407,0.7852,0.81451,0.82209,0.83673,0.85216,0.8797,0.90213,0.96377,0.96893,0.9742,0.98222,0.99061,0.99144,0.99853,0.99876,0.99962,1,0.99927,0.88441,0.86946,0.86224,0.84867,0.84338,0.82699,0.76315,0.7541,0.738,0.71937,0.70696,0.648,0.64304,0.58909,0.52715,0.47523,0.47086,0.41576,0.36967,0.367,0.34782,0.30992,0.3091,0.30729,0.26465,0.2608,0.23819,0.22756,0.20487,0.19898,0.17226,0.16776,0.14359,0.13759 1,1.2526e-31,1.6197e-31,1.8675e-31,3.0476e-31,5.6644e-31,5.7467e-31,6.7699e-31,1.3081e-30,5.1574e-30,6.6452e-30,7.3468e-30,7.373e-30,1.0914e-29,2.1799e-29,2.3863e-29,3.8206e-29,1.6045e-28,6.36e-28,7.6272e-28,1.7749e-27,2.8716e-27,4.2196e-27,4.8465e-27,8.0653e-27,8.3184e-27,1.3503e-26,2.7631e-26,5.1694e-26,6.7295e-26,2.2046e-25,2.3124e-25,6.0169e-25,1.0336e-24,1.1906e-24,2.1801e-24,3.0735e-24,3.0914e-24,3.7048e-24,5.2337e-23,6.9459e-22,1.2704e-21,1.2941e-21,1.2967e-21,2.4942e-21,7.2176e-21,8.4313e-21,9.3641e-21,4.9153e-20,5.9332e-20,6.5628e-20,3.3909e-19,1.248e-18,2.7616e-18,4.6643e-18,8.751e-18,8.5254e-17,1.8691e-16,2.0526e-16,5.902e-16,1.8987e-15,3.2012e-15,3.2075e-15,6.7008e-15,1.0104e-14,1.3382e-14,1.9115e-14,2.5789e-14,3.9071e-14,4.6582e-14,7.7451e-14,1.8715e-13,2.758e-13,5.0828e-13,1.6971e-12,1.9134e-12,3.027e-12,3.9615e-12,8.6859e-12,3.3122e-11,4.7372e-11,1.2597e-10,2.717e-10,4.111e-10,8.4315e-10,9.2739e-10,1.0129e-09,1.5789e-09,2.0227e-09,2.0334e-09,2.493e-09,2.9071e-09,3.7712e-09,3.8537e-09,3.8905e-09,4.1026e-09,4.7446e-09,6.0321e-09,6.8316e-09,1.2055e-08,1.2068e-08,2.3646e-08,2.3854e-08,2.7502e-08,3.0145e-08,3.1978e-08,3.8726e-08,4.72e-08,8.7696e-08,9.5726e-08,1.2672e-07,4.1706e-07,5.9416e-07,6.686e-07,1.3709e-06,1.4922e-06,1.639e-06,3.3134e-06,3.6566e-06,4.8899e-06,5.4964e-06,5.7217e-06,6.1807e-06,1.0145e-05,1.6722e-05,1.7593e-05,2.0056e-05,2.5259e-05,4.9985e-05,5.1481e-05,5.396e-05,0.00016212,0.00032587,0.00043322,0.00048801,0.00067512,0.00078852,0.00084937,0.0011188,0.0018589,0.0024244,0.0025584,0.0027021,0.0027246,0.003072,0.0081154,0.0095367,0.0098778,0.010738,0.013513,0.015095,0.020976,0.021852,0.023105,0.023725,0.025781,0.029255,0.030993,0.03245,0.037842,0.039981,0.047155,0.049201,0.056027,0.057842,0.060633,0.060773,0.062915,0.069335,0.084434,0.08476,0.099271,0.10775,0.11557,0.16581,0.18463,0.18657,0.24003,0.25368,0.25519,0.28715,0.28798,0.31639,0.35692,0.4161,0.42613,0.45046,0.50028,0.52226,0.54213,0.56358,0.62702,0.65974,0.66007,0.67684,0.70189,0.70584,0.73973,0.75264,0.76406,0.79423,0.80208,0.81726,0.83333,0.86221,0.88598,0.95312,0.95898,0.96503,0.97443,0.9847,0.98577,0.99574,0.99613,0.99785,0.99927,1,0.90066,0.88656,0.87972,0.86681,0.86177,0.84608,0.78432,0.77549,0.75976,0.74149,0.72928,0.67098,0.66606,0.61226,0.55004,0.49754,0.49311,0.43703,0.38986,0.38712,0.36741,0.32834,0.3275,0.32562,0.28145,0.27746,0.25393,0.24284,0.21914,0.21297,0.18493,0.18019,0.15471,0.14837 1,4.8133e-34,6.2855e-34,7.2871e-34,1.2118e-33,2.307e-33,2.3418e-33,2.7764e-33,5.5038e-33,2.2899e-32,2.98e-32,3.3078e-32,3.32e-32,4.9915e-32,1.0247e-31,1.1258e-31,1.8366e-31,8.171e-31,3.4255e-30,4.1386e-30,9.9711e-30,1.6456e-29,2.4569e-29,2.8382e-29,4.8244e-29,4.9822e-29,8.2528e-29,1.7404e-28,3.3434e-28,4.4015e-28,1.5168e-27,1.5944e-27,4.3231e-27,7.6029e-27,8.8115e-27,1.6567e-26,2.3712e-26,2.3856e-26,2.8818e-26,4.5813e-25,6.8434e-24,1.2872e-23,1.3124e-23,1.3152e-23,2.6085e-23,7.9365e-23,9.3399e-23,1.0425e-22,5.9263e-22,7.2192e-22,8.0244e-22,4.4945e-21,1.7655e-20,4.067e-20,7.0554e-20,1.3672e-19,1.5007e-18,3.431e-18,3.787e-18,1.1531e-17,3.9561e-17,6.8672e-17,6.8814e-17,1.4985e-16,2.3127e-16,3.1128e-16,4.5382e-16,6.2295e-16,9.668e-16,1.1645e-15,1.9948e-15,5.0792e-15,7.6611e-15,1.4651e-14,5.2678e-14,5.9836e-14,9.7417e-14,1.2967e-13,2.9887e-13,1.2432e-12,1.8206e-12,5.1695e-12,1.1751e-11,1.8298e-11,3.9467e-11,4.3704e-11,4.8035e-11,7.7286e-11,1.0079e-10,1.0137e-10,1.2613e-10,1.4873e-10,1.9665e-10,2.0128e-10,2.0334e-10,2.1526e-10,2.5163e-10,3.2566e-10,3.7226e-10,6.8554e-10,6.8631e-10,1.4158e-09,1.4292e-09,1.666e-09,1.8392e-09,1.96e-09,2.4093e-09,2.9825e-09,5.8211e-09,6.399e-09,8.6648e-09,3.1473e-08,4.6205e-08,5.2522e-08,1.1463e-07,1.2571e-07,1.3922e-07,2.9982e-07,3.3386e-07,4.5856e-07,5.2106e-07,5.4444e-07,5.9237e-07,1.0188e-06,1.7623e-06,1.8633e-06,2.1517e-06,2.7723e-06,5.878e-06,6.0724e-06,6.3957e-06,2.1599e-05,4.6936e-05,6.4479e-05,7.3651e-05,0.00010588,0.000126,0.00013695,0.0001866,0.00033061,0.00044638,0.00047441,0.00050471,0.00050947,0.00058372,0.0017678,0.0021279,0.0022157,0.0024393,0.00318,0.0036147,0.0052964,0.0055549,0.0059282,0.0061142,0.0067377,0.0078121,0.0083593,0.0088224,0.010572,0.01128,0.013711,0.014419,0.016827,0.017478,0.018489,0.01854,0.019322,0.021704,0.027502,0.02763,0.033449,0.03695,0.040243,0.06274,0.071728,0.07267,0.099819,0.1071,0.10792,0.12556,0.12602,0.14236,0.16671,0.20449,0.21117,0.22768,0.26301,0.27926,0.29433,0.31101,0.36299,0.39152,0.39181,0.40693,0.43021,0.43395,0.46706,0.48016,0.49197,0.5244,0.53314,0.55045,0.56939,0.60534,0.63713,0.74499,0.7566,0.76929,0.79085,0.81844,0.82168,0.85971,0.86176,0.87216,0.88441,0.90066,1,0.99945,0.99881,0.99702,0.99613,0.99274,0.9717,0.96785,0.96051,0.9513,0.94475,0.90938,0.9061,0.86753,0.81691,0.76936,0.76514,0.70906,0.65788,0.6548,0.63219,0.58531,0.58426,0.58194,0.52518,0.51985,0.48776,0.4722,0.43796,0.42882,0.38598,0.37851,0.33719,0.32657 1,3.1855e-34,4.1629e-34,4.8282e-34,8.0401e-34,1.5333e-33,1.5565e-33,1.8462e-33,3.6666e-33,1.5315e-32,1.9946e-32,2.2145e-32,2.2228e-32,3.3456e-32,6.882e-32,7.5627e-32,1.2355e-31,5.5197e-31,2.3234e-30,2.8087e-30,6.7839e-30,1.1212e-29,1.6759e-29,1.9368e-29,3.2973e-29,3.4055e-29,5.6495e-29,1.194e-28,2.2982e-28,3.0279e-28,1.0473e-27,1.101e-27,2.9944e-27,5.2752e-27,6.1165e-27,1.1522e-26,1.6509e-26,1.661e-26,2.0076e-26,3.2191e-25,4.8503e-24,9.1419e-24,9.3215e-24,9.3411e-24,1.8568e-23,5.6701e-23,6.6763e-23,7.4548e-23,4.2624e-22,5.1957e-22,5.7773e-22,3.2549e-21,1.2847e-20,2.968e-20,5.1589e-20,1.0021e-19,1.1095e-18,2.5443e-18,2.8093e-18,8.5895e-18,2.9609e-17,5.1505e-17,5.1612e-17,1.1273e-16,1.7428e-16,2.3485e-16,3.429e-16,4.7128e-16,7.3269e-16,8.832e-16,1.5162e-15,3.8753e-15,5.855e-15,1.1227e-14,4.0586e-14,4.6126e-14,7.5253e-14,1.0029e-13,2.32e-13,9.7117e-13,1.4247e-12,4.0646e-12,9.2748e-12,1.4472e-11,3.133e-11,3.4711e-11,3.8167e-11,6.1551e-11,8.0378e-11,8.0836e-11,1.0069e-10,1.1883e-10,1.5734e-10,1.6106e-10,1.6272e-10,1.7231e-10,2.0157e-10,2.6122e-10,2.9879e-10,5.5196e-10,5.5259e-10,1.1442e-09,1.1551e-09,1.3475e-09,1.4884e-09,1.5867e-09,1.9526e-09,2.4198e-09,4.7399e-09,5.2131e-09,7.0706e-09,2.5867e-08,3.8058e-08,4.3294e-08,9.4916e-08,1.0415e-07,1.1541e-07,2.497e-07,2.7822e-07,3.8289e-07,4.3542e-07,4.5508e-07,4.954e-07,8.5497e-07,1.484e-06,1.5697e-06,1.8143e-06,2.3415e-06,4.9895e-06,5.1556e-06,5.4321e-06,1.8501e-05,4.0433e-05,5.5679e-05,6.3663e-05,9.1779e-05,0.00010936,0.00011895,0.00016247,0.00028921,0.00039146,0.00041626,0.00044309,0.0004473,0.00051309,0.0015694,0.0018924,0.0019712,0.0021722,0.002839,0.0032312,0.0047528,0.0049873,0.005326,0.0054948,0.0060613,0.0070389,0.0075375,0.0079596,0.0095569,0.010204,0.012431,0.013081,0.015292,0.015891,0.01682,0.016867,0.017588,0.019783,0.025141,0.025259,0.030653,0.033905,0.036968,0.057982,0.066416,0.0673,0.092885,0.099772,0.10054,0.11726,0.11771,0.13324,0.15645,0.19261,0.19902,0.21489,0.24895,0.26465,0.27925,0.29542,0.346,0.37387,0.37415,0.38895,0.41178,0.41546,0.44802,0.46093,0.47259,0.50466,0.51332,0.5305,0.54933,0.58516,0.61697,0.7258,0.73762,0.75056,0.7726,0.80093,0.80427,0.84366,0.84579,0.85663,0.86946,0.88656,0.99945,1,0.99988,0.99903,0.9985,0.99618,0.97894,0.97558,0.96909,0.96082,0.95488,0.92215,0.91908,0.88257,0.83392,0.78769,0.78357,0.7285,0.67785,0.67479,0.6523,0.60548,0.60444,0.60211,0.54509,0.53972,0.50733,0.49158,0.45685,0.44755,0.40389,0.39626,0.35395,0.34305 1,2.6257e-34,3.4324e-34,3.9817e-34,6.6348e-34,1.2663e-33,1.2855e-33,1.5251e-33,3.0316e-33,1.2686e-32,1.6527e-32,1.8352e-32,1.842e-32,2.774e-32,5.7115e-32,6.2772e-32,1.0261e-31,4.5934e-31,1.9372e-30,2.3424e-30,5.6644e-30,9.368e-30,1.4011e-29,1.6195e-29,2.7591e-29,2.8497e-29,4.7306e-29,1.0009e-28,1.9281e-28,2.5413e-28,8.8055e-28,9.2574e-28,2.5212e-27,4.4451e-27,5.1551e-27,9.72e-27,1.3934e-26,1.4019e-26,1.695e-26,2.7287e-25,4.1279e-24,7.7878e-24,7.941e-24,7.9578e-24,1.5834e-23,4.8437e-23,5.7046e-23,6.3709e-23,3.6525e-22,4.4537e-22,4.9531e-22,2.7983e-21,1.1069e-20,2.5607e-20,4.455e-20,8.6631e-20,9.6304e-19,2.2117e-18,2.4425e-18,7.4824e-18,2.5849e-17,4.5009e-17,4.5103e-17,9.8651e-17,1.5264e-16,2.0579e-16,3.0069e-16,4.135e-16,6.434e-16,7.7584e-16,1.3332e-15,3.4137e-15,5.1617e-15,9.9101e-15,3.5915e-14,4.0829e-14,6.6675e-14,8.8913e-14,2.0602e-13,8.6499e-13,1.2699e-12,3.6311e-12,8.3006e-12,1.2964e-11,2.8115e-11,3.1155e-11,3.4265e-11,5.5318e-11,7.2283e-11,7.2695e-11,9.0597e-11,1.0696e-10,1.4171e-10,1.4507e-10,1.4656e-10,1.5522e-10,1.8166e-10,2.3555e-10,2.6952e-10,4.986e-10,4.9917e-10,1.0354e-09,1.0453e-09,1.2199e-09,1.3477e-09,1.4369e-09,1.7692e-09,2.1938e-09,4.3042e-09,4.7351e-09,6.4272e-09,2.3593e-08,3.4747e-08,3.954e-08,8.6871e-08,9.5344e-08,1.0568e-07,2.2915e-07,2.5541e-07,3.5181e-07,4.0022e-07,4.1834e-07,4.5552e-07,7.874e-07,1.369e-06,1.4482e-06,1.6747e-06,2.163e-06,4.6199e-06,4.7742e-06,5.031e-06,1.7203e-05,3.7697e-05,5.1969e-05,5.9449e-05,8.5816e-05,0.00010232,0.00011133,0.00015223,0.00027158,0.00036803,0.00039144,0.00041677,0.00042075,0.00048289,0.001484,0.0017908,0.0018657,0.0020568,0.0026915,0.0030651,0.0045166,0.0047404,0.005064,0.0052253,0.0057668,0.0067018,0.0071789,0.007583,0.0091131,0.0097339,0.01187,0.012494,0.014618,0.015193,0.016087,0.016132,0.016825,0.018938,0.024099,0.024213,0.029416,0.032556,0.035516,0.055863,0.064046,0.064904,0.089778,0.096484,0.097237,0.11353,0.11397,0.12912,0.15181,0.18723,0.19351,0.20909,0.24254,0.258,0.27236,0.2883,0.33821,0.36576,0.36604,0.38068,0.40329,0.40693,0.43922,0.45204,0.46362,0.4955,0.50412,0.52122,0.53999,0.57575,0.60754,0.71674,0.72863,0.74168,0.76392,0.79258,0.79597,0.83594,0.83811,0.84915,0.86224,0.87972,0.99881,0.99988,1,0.9996,0.99923,0.99742,0.98197,0.97884,0.97276,0.96494,0.95928,0.92783,0.92486,0.88935,0.84168,0.7961,0.79203,0.73748,0.68713,0.68408,0.66166,0.61491,0.61387,0.61154,0.55444,0.54906,0.51654,0.50072,0.46577,0.45641,0.41239,0.40469,0.36193,0.35091 1,1.8439e-34,2.4119e-34,2.7988e-34,4.6692e-34,8.9251e-34,9.0606e-34,1.0753e-33,2.1409e-33,8.9887e-33,1.1718e-32,1.3015e-32,1.3064e-32,1.9692e-32,4.0614e-32,4.4646e-32,7.3069e-32,3.2826e-31,1.3892e-30,1.6805e-30,4.0727e-30,6.7439e-30,1.0096e-29,1.1674e-29,1.9915e-29,2.0571e-29,3.4192e-29,7.2474e-29,1.3985e-28,1.8445e-28,6.4113e-28,6.7412e-28,1.8407e-27,3.25e-27,3.7705e-27,7.1209e-27,1.0218e-26,1.028e-26,1.2435e-26,2.0167e-25,3.0733e-24,5.8082e-24,5.9228e-24,5.9353e-24,1.1833e-23,3.6308e-23,4.2782e-23,4.7793e-23,2.7537e-22,3.3596e-22,3.7374e-22,2.122e-21,8.4279e-21,1.9546e-20,3.4062e-20,6.637e-20,7.4329e-19,1.7114e-18,1.8906e-18,5.8125e-18,2.016e-17,3.5168e-17,3.5241e-17,7.728e-17,1.1974e-16,1.6161e-16,2.3642e-16,3.2548e-16,5.0719e-16,6.1199e-16,1.0536e-15,2.7065e-15,4.0983e-15,7.8865e-15,2.8713e-14,3.2656e-14,5.3425e-14,7.1318e-14,1.6577e-13,6.9973e-13,1.0288e-12,2.9537e-12,6.7741e-12,1.0599e-11,2.3057e-11,2.5562e-11,2.8124e-11,4.5494e-11,5.9511e-11,5.9852e-11,7.466e-11,8.8206e-11,1.17e-10,1.1978e-10,1.2103e-10,1.2821e-10,1.5014e-10,1.949e-10,2.2313e-10,4.1388e-10,4.1435e-10,8.622e-10,8.7048e-10,1.0166e-09,1.1236e-09,1.1983e-09,1.4768e-09,1.833e-09,3.6073e-09,3.9702e-09,5.3965e-09,1.9931e-08,2.9409e-08,3.3487e-08,7.3857e-08,8.1097e-08,8.9939e-08,1.9578e-07,2.1833e-07,3.0124e-07,3.4292e-07,3.5854e-07,3.9057e-07,6.7709e-07,1.1807e-06,1.2495e-06,1.446e-06,1.8702e-06,4.0118e-06,4.1466e-06,4.3709e-06,1.5055e-05,3.315e-05,4.5793e-05,5.243e-05,7.5864e-05,9.0562e-05,9.8586e-05,0.0001351,0.00024197,0.00032861,0.00034966,0.00037246,0.00037604,0.00043201,0.0013389,0.0016181,0.0016864,0.0018606,0.00244,0.0027817,0.0041126,0.0043182,0.0046156,0.0047639,0.0052622,0.0061235,0.0065635,0.0069365,0.0083502,0.0089244,0.010903,0.011482,0.013454,0.013989,0.014821,0.014863,0.015508,0.017475,0.022293,0.0224,0.027269,0.030213,0.032991,0.052159,0.059897,0.06071,0.084318,0.090701,0.091419,0.10696,0.10738,0.12187,0.14361,0.17768,0.18373,0.19876,0.23113,0.24612,0.26007,0.27556,0.32423,0.35118,0.35145,0.36581,0.38799,0.39157,0.42334,0.43598,0.4474,0.47892,0.48745,0.5044,0.52303,0.5586,0.59033,0.70004,0.71207,0.72528,0.74787,0.77707,0.78053,0.82152,0.82376,0.83514,0.84867,0.86681,0.99702,0.99903,0.9996,1,0.99994,0.99905,0.9869,0.98421,0.97888,0.9719,0.96678,0.93771,0.93492,0.9013,0.85548,0.81118,0.80721,0.7537,0.70395,0.70093,0.67868,0.63212,0.63108,0.62875,0.57158,0.56617,0.53346,0.51751,0.48221,0.47274,0.4281,0.42027,0.37673,0.36548 1,1.6116e-34,2.1086e-34,2.4471e-34,4.0843e-34,7.8115e-34,7.9302e-34,9.4132e-34,1.8753e-33,7.8832e-33,1.0279e-32,1.1418e-32,1.1461e-32,1.7282e-32,3.5667e-32,3.9212e-32,6.4203e-32,2.8882e-31,1.2239e-30,1.4809e-30,3.5917e-30,5.9502e-30,8.9111e-30,1.0305e-29,1.7589e-29,1.8169e-29,3.0214e-29,6.4087e-29,1.2374e-28,1.6325e-28,5.6812e-28,5.9739e-28,1.6327e-27,2.8844e-27,3.3469e-27,6.3249e-27,9.0787e-27,9.1344e-27,1.1051e-26,1.7972e-25,2.7465e-24,5.1941e-24,5.2966e-24,5.3079e-24,1.0589e-23,3.2532e-23,3.8339e-23,4.2835e-23,2.4726e-22,3.0173e-22,3.3571e-22,1.9097e-21,7.5964e-21,1.7635e-20,3.075e-20,5.9962e-20,6.7341e-19,1.5521e-18,1.7148e-18,5.2791e-18,1.8338e-17,3.2011e-17,3.2078e-17,7.0412e-17,1.0916e-16,1.4738e-16,2.1572e-16,2.9709e-16,4.6323e-16,5.5907e-16,9.6317e-16,2.4773e-15,3.7533e-15,7.2288e-15,2.6365e-14,2.9991e-14,4.9097e-14,6.5567e-14,1.5258e-13,6.4539e-13,9.4945e-13,2.7301e-12,6.269e-12,9.8154e-12,2.1378e-11,2.3704e-11,2.6084e-11,4.2224e-11,5.5258e-11,5.5575e-11,6.9348e-11,8.1952e-11,1.0876e-10,1.1135e-10,1.125e-10,1.1919e-10,1.3961e-10,1.8131e-10,2.0762e-10,3.855e-10,3.8594e-10,8.0405e-10,8.1179e-10,9.4829e-10,1.0483e-09,1.1181e-09,1.3785e-09,1.7115e-09,3.3722e-09,3.7121e-09,5.0484e-09,1.8688e-08,2.7595e-08,3.1429e-08,6.9421e-08,7.624e-08,8.4569e-08,1.8436e-07,2.0564e-07,2.8391e-07,3.2328e-07,3.3803e-07,3.683e-07,6.3918e-07,1.1159e-06,1.181e-06,1.3672e-06,1.7692e-06,3.8013e-06,3.9293e-06,4.1424e-06,1.4307e-05,3.1561e-05,4.3633e-05,4.9973e-05,7.2374e-05,8.6435e-05,9.4112e-05,0.00012907,0.00023152,0.00031468,0.0003349,0.00035679,0.00036023,0.00041401,0.0012872,0.0015566,0.0016224,0.0017906,0.0023502,0.0026804,0.0039677,0.0041668,0.0044548,0.0045984,0.005081,0.0059157,0.0063423,0.0067039,0.0080754,0.0086328,0.010554,0.011116,0.013034,0.013554,0.014363,0.014403,0.015031,0.016946,0.021638,0.021742,0.026488,0.02936,0.032071,0.050805,0.058379,0.059175,0.082313,0.088576,0.089279,0.10454,0.10495,0.11919,0.14058,0.17413,0.1801,0.19493,0.22689,0.24169,0.25548,0.27081,0.319,0.34571,0.34599,0.36023,0.38225,0.3858,0.41737,0.42993,0.44129,0.47266,0.48115,0.49804,0.51661,0.5521,0.58378,0.69364,0.70572,0.71899,0.74169,0.77109,0.77457,0.81593,0.81819,0.8297,0.84338,0.86177,0.99613,0.9985,0.99923,0.99994,1,0.99947,0.98858,0.98605,0.98101,0.97435,0.96944,0.94129,0.93858,0.90569,0.8606,0.81682,0.81289,0.7598,0.71031,0.7073,0.68513,0.63865,0.63761,0.63529,0.57811,0.57269,0.53992,0.52393,0.48851,0.479,0.43413,0.42627,0.38244,0.3711 1,1.0711e-34,1.4023e-34,1.6281e-34,2.721e-34,5.2131e-34,5.2926e-34,6.2852e-34,1.2544e-33,5.2935e-33,6.9073e-33,7.6749e-33,7.7036e-33,1.163e-32,2.4048e-32,2.6445e-32,4.3358e-32,1.9585e-31,8.333e-31,1.0088e-30,2.4527e-30,4.0691e-30,6.1009e-30,7.0584e-30,1.2065e-29,1.2464e-29,2.0757e-29,4.4124e-29,8.5358e-29,1.127e-28,3.9363e-28,4.1397e-28,1.1348e-27,2.0081e-27,2.3311e-27,4.4135e-27,6.342e-27,6.381e-27,7.7245e-27,1.2669e-25,1.9524e-24,3.6998e-24,3.7731e-24,3.7811e-24,7.5599e-24,2.3309e-23,2.7484e-23,3.0718e-23,1.7833e-22,2.1776e-22,2.4236e-22,1.3867e-21,5.5417e-21,1.2902e-20,2.254e-20,4.4054e-20,4.99e-19,1.1536e-18,1.275e-18,3.9411e-18,1.3753e-17,2.4058e-17,2.4109e-17,5.3076e-17,8.2423e-17,1.1141e-16,1.633e-16,2.2519e-16,3.5171e-16,4.2479e-16,7.334e-16,1.8934e-15,2.8734e-15,5.5488e-15,2.0345e-14,2.3155e-14,3.7985e-14,5.0789e-14,1.1861e-13,5.0484e-13,7.4395e-13,2.1492e-12,4.9537e-12,7.772e-12,1.6988e-11,1.8846e-11,2.0747e-11,3.3662e-11,4.4109e-11,4.4363e-11,5.5417e-11,6.5541e-11,8.7095e-11,8.918e-11,9.0111e-11,9.5493e-11,1.1194e-10,1.4556e-10,1.6679e-10,3.1064e-10,3.11e-10,6.5031e-10,6.566e-10,7.6761e-10,8.49e-10,9.0586e-10,1.1179e-09,1.3896e-09,2.7476e-09,3.026e-09,4.1221e-09,1.5367e-08,2.274e-08,2.5918e-08,5.7504e-08,6.3186e-08,7.0131e-08,1.5358e-07,1.7142e-07,2.3711e-07,2.702e-07,2.826e-07,3.0807e-07,5.3644e-07,9.3976e-07,9.9494e-07,1.1528e-06,1.4943e-06,3.2265e-06,3.3359e-06,3.518e-06,1.2253e-05,2.718e-05,3.7664e-05,4.318e-05,6.2708e-05,7.4991e-05,8.1704e-05,0.00011232,0.00020241,0.0002758,0.00029367,0.00031303,0.00031607,0.00036367,0.0011418,0.0013831,0.0014422,0.0015931,0.0020962,0.0023938,0.0035569,0.0037371,0.003998,0.0041283,0.0045661,0.0053244,0.0057124,0.0060416,0.0072917,0.0078005,0.0095575,0.010072,0.01183,0.012308,0.01305,0.013088,0.013664,0.015426,0.019754,0.019849,0.02424,0.026902,0.029419,0.046881,0.053971,0.054717,0.076469,0.082377,0.083041,0.097469,0.097853,0.11135,0.13169,0.16372,0.16943,0.18364,0.21434,0.22861,0.24191,0.25673,0.30345,0.32944,0.32971,0.34359,0.3651,0.36858,0.39949,0.41182,0.42298,0.45386,0.46224,0.47891,0.49728,0.53248,0.564,0.67414,0.68634,0.69977,0.72279,0.75271,0.75627,0.79866,0.80098,0.81284,0.82699,0.84608,0.99274,0.99618,0.99742,0.99905,0.99947,1,0.99296,0.99094,0.98678,0.98112,0.97685,0.95155,0.94906,0.91848,0.8757,0.83355,0.82974,0.77803,0.7294,0.72643,0.70452,0.65839,0.65736,0.65505,0.59793,0.5925,0.55959,0.54349,0.50775,0.49813,0.45263,0.44463,0.39997,0.38838 1,2.4045e-35,3.1563e-35,3.6698e-35,6.1632e-35,1.1882e-34,1.2064e-34,1.4351e-34,2.8833e-34,1.2339e-33,1.6142e-33,1.7954e-33,1.8022e-33,2.7316e-33,5.6892e-33,6.262e-33,1.0317e-32,4.7308e-32,2.0423e-31,2.4771e-31,6.0774e-31,1.0135e-30,1.5258e-30,1.768e-30,3.0388e-30,3.1403e-30,5.2573e-30,1.1263e-29,2.1939e-29,2.9052e-29,1.0281e-28,1.0818e-28,2.9975e-28,5.3367e-28,6.2051e-28,1.1829e-27,1.7065e-27,1.7171e-27,2.0829e-27,3.5225e-26,5.5982e-25,1.0686e-24,1.09e-24,1.0924e-24,2.2015e-24,6.8768e-24,8.1242e-24,9.092e-24,5.3887e-23,6.5958e-23,7.3505e-23,4.2947e-22,1.7456e-21,4.1066e-21,7.2247e-21,1.424e-20,1.6637e-19,3.8882e-19,4.303e-19,1.3501e-18,4.7908e-18,8.4441e-18,8.462e-18,1.8831e-17,2.9422e-17,3.9934e-17,5.8848e-17,8.1513e-17,1.2811e-16,1.5515e-16,2.6994e-16,7.0643e-16,1.0786e-15,2.1029e-15,7.8605e-15,8.9637e-15,1.4814e-14,1.9895e-14,4.7071e-14,2.0492e-13,3.0384e-13,8.9285e-13,2.0862e-12,3.2976e-12,7.3031e-12,8.1158e-12,8.9492e-12,1.464e-11,1.9273e-11,1.9386e-11,2.4309e-11,2.8834e-11,3.8506e-11,3.9444e-11,3.9863e-11,4.2287e-11,4.971e-11,6.4937e-11,7.459e-11,1.4047e-10,1.4063e-10,2.9802e-10,3.0096e-10,3.5285e-10,3.9099e-10,4.1767e-10,5.1747e-10,6.4581e-10,1.2934e-09,1.427e-09,1.9554e-09,7.479e-09,1.1154e-08,1.2746e-08,2.8742e-08,3.1644e-08,3.5198e-08,7.8355e-08,8.7662e-08,1.221e-07,1.3954e-07,1.4608e-07,1.5954e-07,2.8121e-07,4.9884e-07,5.2881e-07,6.1478e-07,8.0162e-07,1.7622e-06,1.8233e-06,1.9253e-06,6.9123e-06,1.5648e-05,2.1869e-05,2.5162e-05,3.6909e-05,4.4353e-05,4.8438e-05,6.7178e-05,0.0001231,0.00016924,0.00018054,0.0001928,0.00019473,0.000225,0.00073197,0.00089219,0.00093157,0.0010324,0.0013711,0.0015727,0.0023693,0.0024938,0.0026743,0.0027646,0.0030689,0.0035987,0.003871,0.0041025,0.0049865,0.0053482,0.0066043,0.0069742,0.0082436,0.0085901,0.0091299,0.0091572,0.0095775,0.010866,0.014059,0.01413,0.017404,0.019404,0.021304,0.03469,0.040211,0.040795,0.05799,0.062716,0.063249,0.074885,0.075197,0.086192,0.10293,0.12966,0.13447,0.1465,0.17275,0.18507,0.19661,0.20954,0.25077,0.27402,0.27426,0.28676,0.30624,0.3094,0.33768,0.34904,0.35936,0.38812,0.39597,0.41166,0.42905,0.46267,0.49313,0.60233,0.61472,0.62844,0.65214,0.68336,0.6871,0.73227,0.73479,0.74766,0.76315,0.78432,0.9717,0.97894,0.98197,0.9869,0.98858,0.99296,1,0.99987,0.99902,0.99709,0.99525,0.98092,0.97931,0.95784,0.92446,0.88923,0.88596,0.84044,0.79599,0.79323,0.77274,0.72882,0.72782,0.72559,0.66979,0.66442,0.63159,0.61537,0.57901,0.56914,0.52201,0.51364,0.46649,0.45414 1,1.9631e-35,2.5777e-35,2.9976e-35,5.0377e-35,9.72e-35,9.8697e-35,1.1743e-34,2.3614e-34,1.0124e-33,1.325e-33,1.4739e-33,1.4795e-33,2.2438e-33,4.6776e-33,5.1492e-33,8.4893e-33,3.9006e-32,1.6872e-31,2.0469e-31,5.0282e-31,8.3908e-31,1.264e-30,1.4649e-30,2.5197e-30,2.604e-30,4.3625e-30,9.3562e-30,1.8241e-29,2.4165e-29,8.567e-29,9.0151e-29,2.5015e-28,4.4573e-28,5.1837e-28,9.8914e-28,1.4277e-27,1.4366e-27,1.7431e-27,2.9601e-26,4.7239e-25,9.0262e-25,9.2073e-25,9.2271e-25,1.8616e-24,5.8252e-24,6.8837e-24,7.7051e-24,4.5795e-23,5.6071e-23,6.2497e-23,3.6619e-22,1.4918e-21,3.5145e-21,6.1889e-21,1.2212e-20,1.4328e-19,3.3534e-19,3.7118e-19,1.1669e-18,4.1503e-18,7.3226e-18,7.3382e-18,1.6354e-17,2.5572e-17,3.4729e-17,5.1215e-17,7.0983e-17,1.1166e-16,1.3527e-16,2.356e-16,6.1769e-16,9.4385e-16,1.8427e-15,6.9055e-15,7.8768e-15,1.3031e-14,1.7511e-14,4.1502e-14,1.8123e-13,2.6893e-13,7.921e-13,1.8542e-12,2.9339e-12,6.509e-12,7.235e-12,7.9798e-12,1.3069e-11,1.7215e-11,1.7316e-11,2.1725e-11,2.5779e-11,3.445e-11,3.5291e-11,3.5667e-11,3.784e-11,4.45e-11,5.8167e-11,6.6835e-11,1.2605e-10,1.262e-10,2.6792e-10,2.7057e-10,3.1734e-10,3.5173e-10,3.758e-10,4.6583e-10,5.8169e-10,1.167e-09,1.2879e-09,1.7661e-09,6.7785e-09,1.012e-08,1.1569e-08,2.6144e-08,2.8791e-08,3.2033e-08,7.147e-08,7.9984e-08,1.1151e-07,1.2748e-07,1.3348e-07,1.4582e-07,2.5744e-07,4.5745e-07,4.8502e-07,5.6412e-07,7.3615e-07,1.6222e-06,1.6787e-06,1.7728e-06,6.3911e-06,1.4508e-05,2.0299e-05,2.3367e-05,3.4322e-05,4.1271e-05,4.5086e-05,6.2604e-05,0.00011497,0.00015827,0.00016887,0.00018039,0.0001822,0.00021064,0.00068856,0.00083998,0.00087722,0.00097262,0.0012932,0.0014844,0.0022404,0.0023586,0.0025302,0.002616,0.0029054,0.0034096,0.0036688,0.0038894,0.0047319,0.0050769,0.0062759,0.0066292,0.0078426,0.008174,0.0086904,0.0087165,0.0091187,0.010352,0.013413,0.013481,0.016625,0.018546,0.020373,0.033272,0.038602,0.039166,0.055803,0.060383,0.060899,0.072187,0.07249,0.083171,0.099449,0.1255,0.1302,0.14194,0.16761,0.17967,0.19098,0.20365,0.24413,0.267,0.26723,0.27954,0.29873,0.30184,0.32974,0.34096,0.35116,0.37959,0.38736,0.4029,0.42013,0.45348,0.48374,0.5926,0.60499,0.6187,0.64245,0.67376,0.67752,0.72296,0.72549,0.73846,0.7541,0.77549,0.96785,0.97558,0.97884,0.98421,0.98605,0.99094,0.99987,1,0.9996,0.99818,0.99668,0.98389,0.9824,0.96224,0.93024,0.89606,0.89288,0.84832,0.80457,0.80184,0.7816,0.73809,0.7371,0.73489,0.6794,0.67405,0.6413,0.6251,0.58874,0.57885,0.53158,0.52319,0.47578,0.46334 1,1.3739e-35,1.8051e-35,2.0999e-35,3.5331e-35,6.827e-35,6.9324e-35,8.2513e-35,1.6619e-34,7.149e-34,9.3616e-34,1.0417e-33,1.0456e-33,1.5872e-33,3.3146e-33,3.6496e-33,6.0239e-33,2.7776e-32,1.2056e-31,1.4634e-31,3.6023e-31,6.0188e-31,9.0757e-31,1.0522e-30,1.8122e-30,1.873e-30,3.1417e-30,6.7505e-30,1.3183e-29,1.7476e-29,6.2149e-29,6.5407e-29,1.8195e-28,3.2469e-28,3.7774e-28,7.2197e-28,1.043e-27,1.0495e-27,1.2741e-27,2.1795e-26,3.5036e-25,6.7061e-25,6.841e-25,6.8558e-25,1.3858e-24,4.3498e-24,5.1425e-24,5.7579e-24,3.439e-23,4.2131e-23,4.6974e-23,2.7661e-22,1.1314e-21,2.672e-21,4.713e-21,9.3184e-21,1.1013e-19,2.5844e-19,2.8615e-19,9.0279e-19,3.2236e-18,5.6978e-18,5.71e-18,1.2758e-17,1.9978e-17,2.7158e-17,4.0101e-17,5.5638e-17,8.765e-17,1.0625e-16,1.854e-16,4.8765e-16,7.4622e-16,1.4602e-15,5.4971e-15,6.2731e-15,1.0396e-14,1.3985e-14,3.3248e-14,1.4597e-13,2.1692e-13,6.4149e-13,1.5065e-12,2.3879e-12,5.3143e-12,5.9095e-12,6.5204e-12,1.0699e-11,1.4109e-11,1.4193e-11,1.7823e-11,2.1163e-11,2.8315e-11,2.9009e-11,2.9319e-11,3.1113e-11,3.6613e-11,4.791e-11,5.5082e-11,1.0416e-10,1.0428e-10,2.2209e-10,2.243e-10,2.6325e-10,2.919e-10,3.1196e-10,3.8706e-10,4.8379e-10,9.7352e-10,1.0749e-09,1.4761e-09,5.6997e-09,8.5251e-09,9.7516e-09,2.2122e-08,2.4373e-08,2.7132e-08,6.0772e-08,6.8049e-08,9.5029e-08,1.0871e-07,1.1385e-07,1.2443e-07,2.2031e-07,3.9265e-07,4.1644e-07,4.8474e-07,6.3345e-07,1.4018e-06,1.4509e-06,1.5328e-06,5.5655e-06,1.2695e-05,1.7798e-05,2.0506e-05,3.0191e-05,3.6346e-05,3.9727e-05,5.5278e-05,0.00010192,0.0001406,0.00015009,0.0001604,0.00016202,0.00018749,0.00061807,0.00075511,0.00078884,0.00087531,0.0011664,0.0013402,0.0020294,0.0021374,0.0022942,0.0023727,0.0026374,0.0030992,0.0033369,0.0035392,0.0043132,0.0046304,0.0057346,0.0060604,0.0071805,0.0074868,0.0079642,0.0079883,0.0083604,0.0095026,0.012342,0.012406,0.015329,0.01712,0.018824,0.0309,0.035909,0.036439,0.052127,0.056458,0.056947,0.067641,0.067928,0.078071,0.093565,0.11845,0.12295,0.1342,0.15885,0.17045,0.18135,0.19358,0.23275,0.25494,0.25516,0.26712,0.2858,0.28884,0.31605,0.32701,0.33698,0.36483,0.37246,0.38771,0.40465,0.43751,0.46739,0.57552,0.58789,0.6016,0.62538,0.65683,0.66061,0.70644,0.709,0.72214,0.738,0.75976,0.96051,0.96909,0.97276,0.97888,0.98101,0.98678,0.99902,0.9996,1,0.99948,0.99858,0.98851,0.98725,0.96941,0.93989,0.90762,0.90458,0.86181,0.81934,0.81669,0.79691,0.75419,0.75321,0.75103,0.69618,0.69087,0.65831,0.64217,0.60583,0.59594,0.54849,0.54003,0.49222,0.47964 1,9.1386e-36,1.2016e-35,1.3983e-35,2.3558e-35,4.5598e-35,4.6304e-35,5.5137e-35,1.1125e-34,4.8039e-34,6.2951e-34,7.0065e-34,7.0332e-34,1.0688e-33,2.2362e-33,2.4629e-33,4.0705e-33,1.8845e-32,8.2121e-32,9.9728e-32,2.461e-31,4.1176e-31,6.2158e-31,7.209e-31,1.2435e-30,1.2853e-30,2.1591e-30,4.6489e-30,9.0956e-30,1.2067e-29,4.3067e-29,4.5332e-29,1.2647e-28,2.2606e-28,2.6311e-28,5.0381e-28,7.2862e-28,7.3318e-28,8.9057e-28,1.5361e-26,2.4899e-25,4.7752e-25,4.8716e-25,4.8821e-25,9.8897e-25,3.1152e-24,3.6848e-24,4.1272e-24,2.4789e-23,3.0389e-23,3.3893e-23,2.0072e-22,8.2474e-22,1.9533e-21,3.4518e-21,6.8403e-21,8.1525e-20,1.9187e-19,2.1252e-19,6.7319e-19,2.4147e-18,4.2768e-18,4.2859e-18,9.6042e-18,1.5064e-17,2.0501e-17,3.0315e-17,4.2111e-17,6.6453e-17,8.0613e-17,1.4096e-16,3.7213e-16,5.7037e-16,1.119e-15,4.2346e-15,4.8349e-15,8.029e-15,1.0813e-14,2.5798e-14,1.1395e-13,1.6963e-13,5.0395e-13,1.1879e-12,1.8867e-12,4.2137e-12,4.6878e-12,5.1746e-12,8.5102e-12,1.1237e-11,1.1303e-11,1.4209e-11,1.6885e-11,2.2621e-11,2.3178e-11,2.3427e-11,2.4868e-11,2.9286e-11,3.837e-11,4.4142e-11,8.3723e-11,8.3823e-11,1.7917e-10,1.8095e-10,2.1254e-10,2.3579e-10,2.5208e-10,3.1309e-10,3.9176e-10,7.9107e-10,8.7384e-10,1.2019e-09,4.6734e-09,7.0048e-09,8.0183e-09,1.827e-08,2.014e-08,2.2433e-08,5.0469e-08,5.6548e-08,7.9117e-08,9.0576e-08,9.4885e-08,1.0375e-07,1.8431e-07,3.2959e-07,3.4968e-07,4.074e-07,5.3324e-07,1.1858e-06,1.2276e-06,1.2973e-06,4.7493e-06,1.0892e-05,1.5306e-05,1.7652e-05,2.606e-05,3.1414e-05,3.4358e-05,4.7921e-05,8.8757e-05,0.00012274,0.00013109,0.00014016,0.00014159,0.00016403,0.00054596,0.00066814,0.00069824,0.00077547,0.0010359,0.0011918,0.0018114,0.0019087,0.00205,0.0021208,0.0023597,0.0027771,0.0029921,0.0031754,0.0038771,0.0041652,0.0051694,0.0054661,0.0064875,0.0067671,0.0072032,0.0072253,0.0075654,0.0086105,0.011215,0.011273,0.013962,0.015613,0.017185,0.028374,0.033035,0.033529,0.048186,0.052244,0.052703,0.062747,0.063017,0.072568,0.087199,0.11079,0.11506,0.12576,0.14928,0.16037,0.17081,0.18253,0.22021,0.24162,0.24184,0.2534,0.27149,0.27443,0.30085,0.31151,0.32122,0.34838,0.35582,0.37074,0.38733,0.41958,0.449,0.55612,0.56844,0.58213,0.6059,0.63743,0.64123,0.68741,0.69,0.70329,0.71937,0.74149,0.9513,0.96082,0.96494,0.9719,0.97435,0.98112,0.99709,0.99818,0.99948,1,0.99978,0.99284,0.99183,0.9767,0.9501,0.92008,0.91722,0.8766,0.8357,0.83313,0.81393,0.77222,0.77126,0.76912,0.71511,0.70986,0.67759,0.66155,0.62532,0.61543,0.56786,0.55936,0.51115,0.49844 1,6.9819e-36,9.184e-36,1.069e-35,1.8027e-35,3.493e-35,3.5472e-35,4.2252e-35,8.5355e-35,3.6948e-34,4.844e-34,5.3924e-34,5.4129e-34,8.2316e-34,1.7245e-33,1.8996e-33,3.1422e-33,1.4587e-32,6.3728e-32,7.7418e-32,1.9135e-31,3.2046e-31,4.8411e-31,5.6161e-31,9.6968e-31,1.0024e-30,1.6853e-30,3.6339e-30,7.1185e-30,9.4489e-30,3.3802e-29,3.5583e-29,9.9463e-29,1.7798e-28,2.0721e-28,3.9725e-28,5.7491e-28,5.7852e-28,7.0297e-28,1.2191e-26,1.987e-25,3.8157e-25,3.8929e-25,3.9013e-25,7.9141e-25,2.4987e-24,2.9566e-24,3.3123e-24,1.9968e-23,2.4489e-23,2.7319e-23,1.6239e-22,6.6928e-22,1.5881e-21,2.8099e-21,5.5765e-21,6.6831e-20,1.5759e-19,1.7459e-19,5.5452e-19,1.995e-18,3.5381e-18,3.5457e-18,7.9609e-18,1.25e-17,1.7024e-17,2.5197e-17,3.5031e-17,5.5341e-17,6.7165e-17,1.1761e-16,3.1123e-16,4.7754e-16,9.3846e-16,3.5637e-15,4.0703e-15,6.7683e-15,9.1226e-15,2.1814e-14,9.6746e-14,1.4417e-13,4.2962e-13,1.0152e-12,1.6145e-12,3.6141e-12,4.0221e-12,4.4411e-12,7.3145e-12,9.6658e-12,9.7233e-12,1.2231e-11,1.4542e-11,1.95e-11,1.9982e-11,2.0197e-11,2.1443e-11,2.5264e-11,3.3129e-11,3.8129e-11,7.2461e-11,7.2548e-11,1.5544e-10,1.5699e-10,1.8449e-10,2.0474e-10,2.1893e-10,2.721e-10,3.4072e-10,6.8958e-10,7.6198e-10,1.0492e-09,4.0981e-09,6.151e-09,7.0443e-09,1.6097e-08,1.7751e-08,1.9779e-08,4.4629e-08,5.0026e-08,7.0078e-08,8.0269e-08,8.4102e-08,9.1993e-08,1.6377e-07,2.9352e-07,3.1148e-07,3.6311e-07,4.7578e-07,1.0614e-06,1.0989e-06,1.1616e-06,4.2757e-06,9.8415e-06,1.3851e-05,1.5984e-05,2.3639e-05,2.852e-05,3.1206e-05,4.3593e-05,8.0981e-05,0.00011216,0.00011983,0.00012817,0.00012949,0.00015012,0.00050283,0.00061603,0.00064395,0.00071559,0.0009575,0.0011024,0.0016797,0.0017705,0.0019024,0.0019685,0.0021917,0.0025819,0.0027831,0.0029547,0.0036122,0.0038823,0.0048251,0.0051039,0.0060644,0.0063276,0.0067382,0.006759,0.0070793,0.0080644,0.010523,0.010578,0.013122,0.014684,0.016175,0.026809,0.031251,0.031722,0.045727,0.049613,0.050052,0.059684,0.059943,0.069117,0.083196,0.10595,0.11008,0.12043,0.14321,0.15397,0.16411,0.1755,0.2122,0.2331,0.23331,0.24461,0.2623,0.26518,0.29107,0.30153,0.31106,0.33775,0.34508,0.35977,0.37611,0.40794,0.43703,0.54338,0.55567,0.56932,0.59306,0.62461,0.62841,0.67477,0.67738,0.69075,0.70696,0.72928,0.94475,0.95488,0.95928,0.96678,0.96944,0.97685,0.99525,0.99668,0.99858,0.99978,1,0.99514,0.9943,0.98099,0.95634,0.92785,0.92512,0.88598,0.84618,0.84367,0.82488,0.78389,0.78294,0.78084,0.72746,0.72225,0.69022,0.67425,0.63814,0.62826,0.58066,0.57214,0.52373,0.51093 1,1.9786e-36,2.6082e-36,3.0396e-36,5.1464e-36,1.0024e-35,1.0181e-35,1.2143e-35,2.4667e-35,1.0802e-34,1.4192e-34,1.5813e-34,1.5874e-34,2.422e-34,5.1042e-34,5.6268e-34,9.3456e-34,4.3927e-33,1.9425e-32,2.3635e-32,5.8858e-32,9.8992e-32,1.5006e-31,1.743e-31,3.0233e-31,3.1261e-31,5.2791e-31,1.1457e-30,2.2572e-30,3.0034e-30,1.0862e-29,1.144e-29,3.2262e-29,5.8022e-29,6.7642e-29,1.3042e-28,1.8937e-28,1.9057e-28,2.3196e-28,4.1266e-27,6.8997e-26,1.333e-25,1.3602e-25,1.3632e-25,2.7837e-25,8.8844e-25,1.0529e-24,1.1809e-24,7.2425e-24,8.8997e-24,9.9388e-24,6.0116e-23,2.5127e-22,6.0141e-22,1.0703e-21,2.1389e-21,2.6302e-20,6.2587e-20,6.9414e-20,2.232e-19,8.1424e-19,1.4532e-18,1.4563e-18,3.2992e-18,5.2064e-18,7.1155e-18,1.0578e-17,1.4761e-17,2.3441e-17,2.8512e-17,5.0248e-17,1.3448e-16,2.0739e-16,4.1082e-16,1.5852e-15,1.8134e-15,3.0342e-15,4.1046e-15,9.9214e-15,4.4835e-14,6.7155e-14,2.0297e-13,4.8506e-13,7.7621e-13,1.7566e-12,1.9578e-12,2.1646e-12,3.5897e-12,4.7619e-12,4.7906e-12,6.0454e-12,7.2053e-12,9.7013e-12,9.9444e-12,1.0053e-11,1.0682e-11,1.2615e-11,1.6606e-11,1.915e-11,3.673e-11,3.6775e-11,7.9671e-11,8.0479e-11,9.4802e-11,1.0537e-10,1.1278e-10,1.4063e-10,1.7668e-10,3.6141e-10,3.9996e-10,5.534e-10,2.2081e-09,3.3358e-09,3.8286e-09,8.8675e-09,9.794e-09,1.0933e-08,2.5008e-08,2.8086e-08,3.9571e-08,4.5432e-08,4.764e-08,5.2191e-08,9.3856e-08,1.6997e-07,1.8057e-07,2.1108e-07,2.7794e-07,6.2934e-07,6.5203e-07,6.8992e-07,2.6044e-06,6.0965e-06,8.6411e-06,1.0002e-05,1.4915e-05,1.8067e-05,1.9808e-05,2.7873e-05,5.2501e-05,7.3263e-05,7.8392e-05,8.3979e-05,8.4859e-05,9.8726e-05,0.00034057,0.00041941,0.00043892,0.00048908,0.00065943,0.00076209,0.0011745,0.0012398,0.0013348,0.0013825,0.0015439,0.0018273,0.001974,0.0020993,0.0025815,0.0027805,0.0034783,0.0036855,0.0044023,0.0045994,0.0049075,0.0049231,0.0051639,0.0059067,0.0077737,0.0078157,0.0097646,0.010969,0.012122,0.020456,0.023981,0.024357,0.035609,0.038762,0.039119,0.046984,0.047197,0.054747,0.066432,0.085534,0.089026,0.097815,0.11731,0.12659,0.13536,0.14528,0.17747,0.196,0.19619,0.20626,0.2221,0.22469,0.24804,0.25753,0.2662,0.29061,0.29735,0.31089,0.32602,0.35569,0.38303,0.48489,0.49685,0.51019,0.53353,0.5648,0.5686,0.61519,0.61784,0.63143,0.648,0.67098,0.90938,0.92215,0.92783,0.93771,0.94129,0.95155,0.98092,0.98389,0.98851,0.99284,0.99514,1,0.99997,0.99528,0.98018,0.9593,0.95719,0.92556,0.89151,0.88931,0.87273,0.83571,0.83484,0.83292,0.78324,0.77832,0.7478,0.73244,0.69732,0.68764,0.64049,0.63197,0.58311,0.57007 1,1.7809e-36,2.3481e-36,2.7367e-36,4.6352e-36,9.0321e-36,9.1733e-36,1.0943e-35,2.2239e-35,9.7483e-35,1.281e-34,1.4274e-34,1.4329e-34,2.1869e-34,4.611e-34,5.0834e-34,8.446e-34,3.974e-33,1.7591e-32,2.1407e-32,5.3341e-32,8.9745e-32,1.3608e-31,1.5808e-31,2.743e-31,2.8363e-31,4.7915e-31,1.0404e-30,2.0508e-30,2.7293e-30,9.88e-30,1.0406e-29,2.9367e-29,5.2838e-29,6.1605e-29,1.1884e-28,1.726e-28,1.7369e-28,2.1145e-28,3.7697e-27,6.3163e-26,1.2209e-25,1.2458e-25,1.2486e-25,2.551e-25,8.1492e-25,9.6592e-25,1.0834e-24,6.6541e-24,8.178e-24,9.1337e-24,5.5326e-23,2.3152e-22,5.5454e-22,9.8733e-22,1.9743e-21,2.433e-20,5.7938e-20,6.4263e-20,2.0686e-19,7.5547e-19,1.349e-18,1.3519e-18,3.0649e-18,4.8387e-18,6.6149e-18,9.8376e-18,1.3732e-17,2.1816e-17,2.6541e-17,4.6799e-17,1.2537e-16,1.9341e-16,3.8339e-16,1.4813e-15,1.6948e-15,2.8372e-15,3.8393e-15,9.2885e-15,4.204e-14,6.2996e-14,1.9062e-13,4.5599e-13,7.3006e-13,1.6537e-12,1.8432e-12,2.0382e-12,3.382e-12,4.4878e-12,4.5149e-12,5.6991e-12,6.7938e-12,9.1504e-12,9.38e-12,9.4825e-12,1.0077e-11,1.1902e-11,1.5673e-11,1.8077e-11,3.4698e-11,3.474e-11,7.5333e-11,7.6098e-11,8.9659e-11,9.9666e-11,1.0669e-10,1.3306e-10,1.6723e-10,3.4236e-10,3.7893e-10,5.2452e-10,2.0965e-09,3.169e-09,3.6378e-09,8.435e-09,9.3177e-09,1.0403e-08,2.3822e-08,2.6758e-08,3.7719e-08,4.3314e-08,4.5422e-08,4.9767e-08,8.9573e-08,1.6236e-07,1.7249e-07,2.0169e-07,2.6568e-07,6.0232e-07,6.2407e-07,6.604e-07,2.4982e-06,5.856e-06,8.3051e-06,9.6154e-06,1.4349e-05,1.7387e-05,1.9065e-05,2.6844e-05,5.0622e-05,7.0684e-05,7.5643e-05,8.1044e-05,8.1895e-05,9.5304e-05,0.00032957,0.00040605,0.00042497,0.00047365,0.00063902,0.00073874,0.0011396,0.0012031,0.0012955,0.0013419,0.001499,0.0017748,0.0019176,0.0020396,0.0025093,0.0027032,0.0033834,0.0035855,0.0042848,0.0044771,0.0047777,0.004793,0.005028,0.0057532,0.0075772,0.0076182,0.0095236,0.010702,0.01183,0.019993,0.023449,0.023817,0.034862,0.037958,0.038309,0.046039,0.046248,0.053674,0.065173,0.083989,0.087431,0.096096,0.11533,0.12449,0.13316,0.14295,0.17478,0.19311,0.1933,0.20327,0.21895,0.22152,0.24466,0.25406,0.26266,0.28688,0.29356,0.307,0.32203,0.35151,0.37869,0.48011,0.49203,0.50534,0.52863,0.55985,0.56364,0.61022,0.61286,0.62646,0.64304,0.66606,0.9061,0.91908,0.92486,0.93492,0.93858,0.94906,0.97931,0.9824,0.98725,0.99183,0.9943,0.99997,1,0.99605,0.98176,0.96154,0.95948,0.92852,0.89499,0.89282,0.87644,0.8398,0.83894,0.83703,0.78771,0.78283,0.75247,0.73717,0.70217,0.69252,0.64544,0.63693,0.58808,0.57504 1,5.6604e-37,7.4772e-37,8.7241e-37,1.483e-36,2.9033e-36,2.9491e-36,3.5223e-36,7.1941e-36,3.1867e-35,4.1957e-35,4.6787e-35,4.6968e-35,7.1902e-35,1.5241e-34,1.6815e-34,2.804e-34,1.3342e-33,5.9705e-33,7.2763e-33,1.8254e-32,3.0831e-32,4.6895e-32,5.4536e-32,9.5022e-32,9.8278e-32,1.6668e-31,3.6407e-31,7.2131e-31,9.6204e-31,3.5171e-30,3.7057e-30,1.0543e-29,1.9056e-29,2.2244e-29,4.3131e-29,6.2825e-29,6.3226e-29,7.709e-29,1.4063e-27,2.4112e-26,4.6863e-26,4.7828e-26,4.7934e-26,9.8521e-26,3.1781e-25,3.7725e-25,4.2354e-25,2.642e-24,3.2528e-24,3.6364e-24,2.2376e-23,9.4828e-23,2.2892e-22,4.0971e-22,8.2446e-22,1.0398e-20,2.4965e-20,2.7718e-20,9.022e-20,3.3365e-19,5.9918e-19,6.0049e-19,1.3724e-18,2.1765e-18,2.9848e-18,4.4566e-18,6.2418e-18,9.963e-18,1.2145e-17,2.1539e-17,5.8292e-17,9.0338e-17,1.8036e-16,7.07e-16,8.1009e-16,1.3637e-15,1.8514e-15,4.523e-15,2.0821e-14,3.1343e-14,9.606e-14,2.3214e-13,3.7376e-13,8.5495e-13,9.5421e-13,1.0564e-12,1.7638e-12,2.3486e-12,2.363e-12,2.9913e-12,3.5737e-12,4.8312e-12,4.954e-12,5.0088e-12,5.3267e-12,6.3049e-12,8.3309e-12,9.6263e-12,1.8632e-11,1.8655e-11,4.0858e-11,4.1279e-11,4.8739e-11,5.4254e-11,5.8128e-11,7.2711e-11,9.1654e-11,1.8945e-10,2.0997e-10,2.9193e-10,1.1895e-09,1.8085e-09,2.0801e-09,4.8821e-09,5.4009e-09,6.0395e-09,1.4001e-08,1.5755e-08,2.2324e-08,2.569e-08,2.696e-08,2.958e-08,5.3726e-08,9.83e-08,1.0454e-07,1.2254e-07,1.6213e-07,3.7255e-07,3.8623e-07,4.0909e-07,1.5831e-06,3.7679e-06,5.3779e-06,6.2431e-06,9.3863e-06,1.1415e-05,1.2539e-05,1.7772e-05,3.3935e-05,4.7705e-05,5.1122e-05,5.485e-05,5.5438e-05,6.4717e-05,0.00022983,0.00028448,0.00029805,0.00033301,0.00045238,0.00052474,0.00081789,0.00086459,0.0009327,0.00096692,0.001083,0.0012877,0.001394,0.001485,0.0018367,0.0019824,0.0024959,0.002649,0.0031807,0.0033274,0.0035572,0.0035688,0.0037487,0.0043054,0.0057143,0.0057462,0.0072297,0.008152,0.0090383,0.015524,0.018301,0.018598,0.027571,0.030109,0.030397,0.036768,0.036941,0.043105,0.052722,0.068619,0.071547,0.078941,0.095466,0.10339,0.11092,0.11945,0.14742,0.16367,0.16384,0.17272,0.18674,0.18904,0.20988,0.21838,0.22618,0.24824,0.25436,0.26669,0.28053,0.30782,0.33318,0.42932,0.44078,0.45362,0.47618,0.50665,0.51036,0.55634,0.55896,0.57251,0.58909,0.61226,0.86753,0.88257,0.88935,0.9013,0.90569,0.91848,0.95784,0.96224,0.96941,0.9767,0.98099,0.99528,0.99605,1,0.99473,0.98192,0.98047,0.9571,0.92963,0.9278,0.91381,0.88166,0.8809,0.87919,0.83437,0.82985,0.80154,0.78712,0.75377,0.74448,0.69874,0.69039,0.64203,0.62899 1,1.4909e-37,1.9739e-37,2.3059e-37,3.9364e-37,7.7481e-37,7.8711e-37,9.4145e-37,1.934e-36,8.6707e-36,1.1442e-35,1.277e-35,1.282e-35,1.9695e-35,4.2007e-35,4.6381e-35,7.767e-35,3.7441e-34,1.6967e-33,2.0712e-33,5.2366e-33,8.8842e-33,1.3562e-32,1.5792e-32,2.7647e-32,2.8603e-32,4.8733e-32,1.0717e-31,2.1359e-31,2.8559e-31,1.056e-30,1.1132e-30,3.1965e-30,5.8082e-30,6.7894e-30,1.3243e-29,1.9356e-29,1.948e-29,2.3794e-29,4.4575e-28,7.8485e-27,1.535e-26,1.567e-26,1.5705e-26,3.2502e-26,1.0604e-25,1.2607e-25,1.417e-25,8.9991e-25,1.1103e-24,1.2425e-24,7.7857e-24,3.3482e-23,8.1562e-23,1.4685e-22,2.9767e-22,3.8564e-21,9.3466e-21,1.0389e-20,3.4253e-20,1.2852e-19,2.3232e-19,2.3283e-19,5.3711e-19,8.563e-19,1.1785e-18,1.7678e-18,2.4856e-18,3.989e-18,4.8738e-18,8.7019e-18,2.3829e-17,3.7122e-17,7.4734e-17,2.9787e-16,3.4188e-16,5.7924e-16,7.8941e-16,1.9503e-15,9.1548e-15,1.3855e-14,4.3093e-14,1.0538e-13,1.7076e-13,3.9506e-13,4.4159e-13,4.8959e-13,8.2324e-13,1.1006e-12,1.1075e-12,1.4066e-12,1.6847e-12,2.2873e-12,2.3462e-12,2.3726e-12,2.5254e-12,2.9964e-12,3.975e-12,4.6027e-12,8.9945e-12,9.0057e-12,1.9954e-11,2.0163e-11,2.3866e-11,2.6609e-11,2.8538e-11,3.5818e-11,4.5307e-11,9.4694e-11,1.0512e-10,1.469e-10,6.1194e-10,9.367e-10,1.0798e-09,2.5702e-09,2.8481e-09,3.1908e-09,7.5033e-09,8.4601e-09,1.206e-08,1.3912e-08,1.4612e-08,1.6058e-08,2.9474e-08,5.4515e-08,5.8039e-08,6.823e-08,9.0742e-08,2.1176e-07,2.1969e-07,2.3295e-07,9.2548e-07,2.2416e-06,3.2231e-06,3.7535e-06,5.6921e-06,6.9518e-06,7.6516e-06,1.0928e-05,2.117e-05,2.9992e-05,3.2192e-05,3.4596e-05,3.4975e-05,4.0977e-05,0.00015006,0.00018675,0.00019589,0.00021949,0.00030055,0.00034999,0.00055205,0.00058445,0.00063181,0.00065564,0.00073669,0.00088015,0.00095496,0.0010191,0.0012682,0.0013719,0.0017389,0.0018489,0.0022323,0.0023385,0.002505,0.0025134,0.0026441,0.0030498,0.0040842,0.0041077,0.0052068,0.0058944,0.0065577,0.011476,0.013609,0.013838,0.020819,0.022812,0.023039,0.028078,0.028215,0.03313,0.040863,0.053797,0.056196,0.06228,0.075987,0.082609,0.088928,0.096121,0.11991,0.13387,0.13402,0.14169,0.15386,0.15586,0.17408,0.18155,0.18843,0.20798,0.21342,0.22443,0.23684,0.26148,0.28455,0.37359,0.38438,0.39649,0.41789,0.44702,0.45058,0.49507,0.49763,0.51087,0.52715,0.55004,0.81691,0.83392,0.84168,0.85548,0.8606,0.8757,0.92446,0.93024,0.93989,0.9501,0.95634,0.98018,0.98176,0.99473,1,0.99612,0.99543,0.9815,0.96178,0.96039,0.94957,0.92347,0.92283,0.92141,0.88296,0.87899,0.85377,0.84072,0.81007,0.80143,0.7583,0.75032,0.70357,0.69081 1,4.7094e-38,6.2466e-38,7.305e-38,1.2516e-37,2.475e-37,2.5145e-37,3.0113e-37,6.2165e-37,2.8162e-36,3.7234e-36,4.1589e-36,4.1752e-36,6.4333e-36,1.3794e-35,1.5241e-35,2.5616e-35,1.2486e-34,5.7196e-34,6.9922e-34,1.7797e-33,3.031e-33,4.6411e-33,5.4103e-33,9.5106e-33,9.8418e-33,1.6834e-32,3.7234e-32,7.4589e-32,9.9949e-32,3.7322e-31,3.9356e-31,1.1392e-30,2.0793e-30,2.4334e-30,4.7708e-30,6.9931e-30,7.0385e-30,8.6104e-30,1.6502e-28,2.9726e-27,5.8454e-27,5.968e-27,5.9814e-27,1.2452e-26,4.1019e-26,4.884e-26,5.4949e-26,3.5436e-25,4.3796e-25,4.9061e-25,3.1223e-24,1.3597e-23,3.338e-23,6.0413e-23,1.2322e-22,1.6335e-21,3.9912e-21,4.4406e-21,1.4804e-20,5.6238e-20,1.0223e-19,1.0246e-19,2.3825e-19,3.8155e-19,5.2676e-19,7.9327e-19,1.1191e-18,1.8043e-18,2.2089e-18,3.9666e-18,1.0972e-17,1.717e-17,3.4814e-17,1.4075e-16,1.6178e-16,2.7562e-16,3.7686e-16,9.4005e-16,4.4873e-15,6.8222e-15,2.1489e-14,5.3084e-14,8.6496e-14,2.0206e-13,2.2616e-13,2.5104e-13,4.2472e-13,5.6979e-13,5.7336e-13,7.3032e-13,8.7658e-13,1.1945e-12,1.2257e-12,1.2396e-12,1.3204e-12,1.5699e-12,2.0899e-12,2.4242e-12,4.7764e-12,4.7824e-12,1.0702e-11,1.0815e-11,1.2829e-11,1.4323e-11,1.5375e-11,1.9353e-11,2.4554e-11,5.1808e-11,5.759e-11,8.083e-11,3.4318e-10,5.2837e-10,6.1029e-10,1.4702e-09,1.6315e-09,1.8307e-09,4.3578e-09,4.9221e-09,7.0527e-09,8.1528e-09,8.5691e-09,9.4303e-09,1.7466e-08,3.2606e-08,3.4747e-08,4.095e-08,5.4701e-08,1.2936e-07,1.3428e-07,1.4252e-07,5.7913e-07,1.424e-06,2.0605e-06,2.4059e-06,3.6757e-06,4.5054e-06,4.9675e-06,7.1409e-06,1.4006e-05,1.9976e-05,2.1471e-05,2.3106e-05,2.3364e-05,2.7459e-05,0.00010324,0.00012908,0.00013553,0.00015223,0.00020988,0.00024522,0.00039077,0.00041425,0.00044862,0.00046593,0.00052494,0.00062978,0.00068463,0.00073176,0.0009154,0.0009921,0.0012649,0.0013469,0.0016339,0.0017136,0.0018389,0.0018452,0.0019437,0.0022502,0.0030365,0.0030545,0.0038965,0.004426,0.0049387,0.0087821,0.010468,0.010649,0.016225,0.01783,0.018013,0.022095,0.022207,0.026215,0.032567,0.043298,0.045301,0.050397,0.061957,0.067577,0.07296,0.07911,0.099606,0.11173,0.11186,0.11855,0.12922,0.13098,0.14704,0.15366,0.15976,0.17719,0.18207,0.19195,0.20312,0.22543,0.24646,0.32882,0.33892,0.3503,0.37049,0.39813,0.40153,0.44418,0.44665,0.45944,0.47523,0.49754,0.76936,0.78769,0.7961,0.81118,0.81682,0.83355,0.88923,0.89606,0.90762,0.92008,0.92785,0.9593,0.96154,0.98192,0.99612,1,0.99997,0.99449,0.98193,0.98096,0.9731,0.95283,0.95232,0.95117,0.9191,0.91569,0.89369,0.88211,0.85447,0.84657,0.80657,0.79908,0.75463,0.74236 1,4.2658e-38,5.6592e-38,6.6187e-38,1.1344e-37,2.244e-37,2.2799e-37,2.7306e-37,5.6395e-37,2.557e-36,3.3814e-36,3.7771e-36,3.7919e-36,5.8442e-36,1.2537e-35,1.3853e-35,2.3289e-35,1.1363e-34,5.2099e-34,6.3698e-34,1.6222e-33,2.7637e-33,4.2329e-33,4.935e-33,8.678e-33,8.9804e-33,1.5366e-32,3.4003e-32,6.8147e-32,9.1334e-32,3.4133e-31,3.5995e-31,1.0426e-30,1.9037e-30,2.2282e-30,4.3704e-30,6.4077e-30,6.4494e-30,7.8908e-30,1.5152e-28,2.7348e-27,5.3802e-27,5.4931e-27,5.5055e-27,1.1467e-26,3.7806e-26,4.502e-26,5.0655e-26,3.271e-25,4.0433e-25,4.5297e-25,2.8866e-24,1.2584e-23,3.0914e-23,5.5974e-23,1.1423e-22,1.5173e-21,3.7097e-21,4.1278e-21,1.3774e-20,5.2382e-20,9.5265e-20,9.5479e-20,2.2218e-19,3.5594e-19,4.9153e-19,7.4046e-19,1.0449e-18,1.6854e-18,2.0636e-18,3.7075e-18,1.0264e-17,1.6068e-17,3.26e-17,1.3197e-16,1.517e-16,2.5857e-16,3.5364e-16,8.8286e-16,4.2204e-15,6.4188e-15,2.0241e-14,5.0043e-14,8.1579e-14,1.9074e-13,2.135e-13,2.3702e-13,4.012e-13,5.384e-13,5.4178e-13,6.9026e-13,8.2866e-13,1.1295e-12,1.159e-12,1.1722e-12,1.2487e-12,1.485e-12,1.9773e-12,2.294e-12,4.5232e-12,4.5288e-12,1.0143e-11,1.0251e-11,1.2161e-11,1.3579e-11,1.4578e-11,1.8354e-11,2.3292e-11,4.9186e-11,5.4681e-11,7.6777e-11,3.265e-10,5.0294e-10,5.8101e-10,1.4011e-09,1.555e-09,1.7452e-09,4.1585e-09,4.6976e-09,6.734e-09,7.7858e-09,8.1839e-09,9.0075e-09,1.6696e-08,3.1193e-08,3.3244e-08,3.9186e-08,5.2365e-08,1.2398e-07,1.287e-07,1.3661e-07,5.5617e-07,1.3693e-06,1.9824e-06,2.3153e-06,3.5395e-06,4.3398e-06,4.7856e-06,6.8833e-06,1.3515e-05,1.9287e-05,2.0732e-05,2.2314e-05,2.2564e-05,2.6525e-05,9.9956e-05,0.00012502,0.00013128,0.00014749,0.00020346,0.00023779,0.00037926,0.00040209,0.00043551,0.00045236,0.00050976,0.00061179,0.00066518,0.00071106,0.00088991,0.00096464,0.0012305,0.0013104,0.0015903,0.0016681,0.0017902,0.0017965,0.0018925,0.0021916,0.0029595,0.002977,0.0037997,0.0043173,0.0048187,0.0085804,0.010232,0.010409,0.015877,0.017452,0.017632,0.021639,0.021749,0.025686,0.03193,0.042486,0.044458,0.049475,0.060863,0.066402,0.071709,0.077775,0.098002,0.10998,0.11011,0.11672,0.12726,0.129,0.14488,0.15143,0.15747,0.17472,0.17954,0.18933,0.2004,0.22251,0.24336,0.32513,0.33517,0.34648,0.36656,0.39407,0.39745,0.43992,0.44238,0.45513,0.47086,0.49311,0.76514,0.78357,0.79203,0.80721,0.81289,0.82974,0.88596,0.89288,0.90458,0.91722,0.92512,0.95719,0.95948,0.98047,0.99543,0.99997,1,0.99526,0.98332,0.98238,0.97479,0.95504,0.95454,0.95342,0.92193,0.91857,0.89687,0.88543,0.85807,0.85024,0.81055,0.80311,0.7589,0.74668 1,1.1811e-38,1.5701e-38,1.8385e-38,3.1637e-38,6.2904e-38,6.3918e-38,7.6657e-38,1.5919e-37,7.301e-37,9.6752e-37,1.0817e-36,1.086e-36,1.6792e-36,3.6234e-36,4.0068e-36,6.7633e-36,3.3407e-35,1.5501e-34,1.8982e-34,4.8702e-34,8.3322e-34,1.2805e-33,1.4947e-33,2.6404e-33,2.7331e-33,4.6967e-33,1.046e-32,2.1083e-32,2.8324e-32,1.07e-31,1.1289e-31,3.2986e-31,6.0534e-31,7.0945e-31,1.3994e-30,2.0583e-30,2.0718e-30,2.5391e-30,5e-29,9.2549e-28,1.8317e-27,1.8705e-27,1.8747e-27,3.9303e-27,1.3097e-26,1.5621e-26,1.7595e-26,1.1557e-25,1.4313e-25,1.6052e-25,1.0407e-24,4.6002e-24,1.1398e-23,2.0756e-23,4.2651e-23,5.8109e-22,1.4336e-21,1.5968e-21,5.3938e-21,2.0796e-20,3.8057e-20,3.8143e-20,8.9546e-20,1.4417e-19,1.9978e-19,3.0227e-19,4.2811e-19,6.941e-19,8.5173e-19,1.54e-18,4.3113e-18,6.7827e-18,1.387e-17,5.7039e-17,6.5673e-17,1.1263e-16,1.5459e-16,3.9007e-16,1.8996e-15,2.9037e-15,9.2851e-15,2.3215e-14,3.8077e-14,8.9988e-14,1.0087e-13,1.1214e-13,1.911e-13,2.5743e-13,2.5906e-13,3.311e-13,3.9844e-13,5.4532e-13,5.5975e-13,5.6621e-13,6.0366e-13,7.1951e-13,9.6171e-13,1.1179e-12,2.2244e-12,2.2273e-12,5.0434e-12,5.0976e-12,6.0619e-12,6.779e-12,7.2847e-12,9.2008e-12,1.1715e-11,2.5e-11,2.7835e-11,3.9271e-11,1.7055e-10,2.6441e-10,3.0611e-10,7.4807e-10,8.3157e-10,9.349e-10,2.258e-09,2.5556e-09,3.6844e-09,4.2697e-09,4.4916e-09,4.9512e-09,9.2692e-09,1.7497e-08,1.8667e-08,2.2064e-08,2.9628e-08,7.1187e-08,7.3946e-08,7.857e-08,3.2795e-07,8.2096e-07,1.1969e-06,1.402e-06,2.161e-06,2.6602e-06,2.9391e-06,4.258e-06,8.4757e-06,1.2185e-05,1.3118e-05,1.4141e-05,1.4303e-05,1.6871e-05,6.5455e-05,8.2288e-05,8.6507e-05,9.7447e-05,0.00013544,0.00015889,0.0002563,0.00027212,0.00029532,0.00030703,0.00034703,0.0004184,0.00045588,0.00048816,0.00061449,0.0006675,0.00085693,0.00091417,0.0011152,0.0011712,0.0012595,0.001264,0.0013335,0.0015505,0.0021116,0.0021244,0.0027307,0.0031144,0.0034874,0.0063208,0.0075799,0.0077157,0.011934,0.01316,0.0133,0.016439,0.016526,0.019634,0.024602,0.033092,0.034689,0.038767,0.048091,0.052658,0.057052,0.062093,0.079045,0.089176,0.089282,0.094903,0.1039,0.10539,0.11904,0.12469,0.12992,0.14493,0.14914,0.15772,0.16745,0.187,0.20558,0.27958,0.28879,0.29919,0.31774,0.34332,0.34648,0.38639,0.38871,0.40079,0.41576,0.43703,0.70906,0.7285,0.73748,0.7537,0.7598,0.77803,0.84044,0.84832,0.86181,0.8766,0.88598,0.92556,0.92852,0.9571,0.9815,0.99449,0.99526,1,0.99632,0.99587,0.99178,0.97905,0.9787,0.97792,0.95435,0.95171,0.93417,0.92466,0.90135,0.89455,0.85934,0.85262,0.81205,0.80065 1,3.7812e-39,5.0361e-39,5.9029e-39,1.0194e-38,2.036e-38,2.069e-38,2.4843e-38,5.1839e-38,2.4017e-37,3.1887e-37,3.5675e-37,3.5817e-37,5.5547e-37,1.2048e-36,1.3332e-36,2.2583e-36,1.1276e-35,5.2875e-35,6.484e-35,1.6744e-34,2.8754e-34,4.4323e-34,5.1794e-34,9.1856e-34,9.5106e-34,1.6406e-33,3.6745e-33,7.4429e-33,1.002e-32,3.8216e-32,4.0334e-32,1.1877e-31,2.1893e-31,2.5688e-31,5.0921e-31,7.5111e-31,7.5607e-31,9.2801e-31,1.8684e-29,3.536e-28,7.0353e-28,7.1854e-28,7.2018e-28,1.5186e-27,5.1083e-27,6.1011e-27,6.8785e-27,4.586e-26,5.6896e-26,6.3866e-26,4.2038e-25,1.8811e-24,4.6962e-24,8.5949e-24,1.7769e-23,2.4758e-22,6.1561e-22,6.8637e-22,2.3435e-21,9.1455e-21,1.6828e-20,1.6866e-20,3.9906e-20,6.4533e-20,8.9691e-20,1.3623e-19,1.9357e-19,3.1526e-19,3.876e-19,7.0474e-19,1.9924e-18,3.1483e-18,6.4828e-18,2.7034e-17,3.1169e-17,5.3743e-17,7.4004e-17,1.8849e-16,9.33e-16,1.4325e-15,4.6376e-15,1.171e-14,1.931e-14,4.607e-14,5.1709e-14,5.7549e-14,9.866e-14,1.3335e-13,1.3421e-13,1.72e-13,2.0742e-13,2.849e-13,2.9253e-13,2.9594e-13,3.1575e-13,3.771e-13,5.0573e-13,5.8891e-13,1.1812e-12,1.1827e-12,2.7042e-12,2.7335e-12,3.2574e-12,3.6476e-12,3.9231e-12,4.9689e-12,6.3453e-12,1.3667e-11,1.5236e-11,2.1588e-11,9.5509e-11,1.489e-10,1.7272e-10,4.2706e-10,4.7539e-10,5.353e-10,1.3083e-09,1.4833e-09,2.1492e-09,2.4956e-09,2.6272e-09,2.8999e-09,5.4769e-09,1.0432e-08,1.114e-08,1.32e-08,1.7801e-08,4.3327e-08,4.5032e-08,4.7892e-08,2.0434e-07,5.1907e-07,7.6144e-07,8.9427e-07,1.3883e-06,1.715e-06,1.8981e-06,2.7674e-06,5.5754e-06,8.0676e-06,8.697e-06,9.3879e-06,9.4972e-06,1.1237e-05,4.4728e-05,5.6485e-05,5.944e-05,6.7115e-05,9.3907e-05,0.00011052,0.00018006,0.00019142,0.0002081,0.00021654,0.00024539,0.00029706,0.00032428,0.00034776,0.00043999,0.00047883,0.00061821,0.00066048,0.00080944,0.00085109,0.00091676,0.00092011,0.00097193,0.0011342,0.0015561,0.0015659,0.0020253,0.0023175,0.0026025,0.0047912,0.0057741,0.0058804,0.0092075,0.010183,0.010294,0.012804,0.012873,0.015374,0.0194,0.026346,0.02766,0.031027,0.038775,0.042593,0.046279,0.050523,0.064897,0.073556,0.073647,0.078472,0.086222,0.087507,0.099336,0.10426,0.10882,0.12196,0.12567,0.13322,0.14183,0.15919,0.1758,0.24285,0.25129,0.26085,0.27796,0.30168,0.30462,0.34196,0.34415,0.35552,0.36967,0.38986,0.65788,0.67785,0.68713,0.70395,0.71031,0.7294,0.79599,0.80457,0.81934,0.8357,0.84618,0.89151,0.89499,0.92963,0.96178,0.98193,0.98332,0.99632,1,0.99999,0.9991,0.99284,0.99263,0.99216,0.97614,0.97418,0.96071,0.95312,0.93388,0.92814,0.89765,0.89171,0.85517,0.84473 1,3.5321e-39,4.705e-39,5.5151e-39,9.5261e-39,1.9032e-38,1.934e-38,2.3224e-38,4.8474e-38,2.2471e-37,2.9838e-37,3.3385e-37,3.3518e-37,5.199e-37,1.128e-36,1.2482e-36,2.1148e-36,1.0567e-35,4.958e-35,6.0804e-35,1.5708e-34,2.6981e-34,4.1597e-34,4.8612e-34,8.6233e-34,8.9285e-34,1.5405e-33,3.4516e-33,6.9934e-33,9.4162e-33,3.5933e-32,3.7925e-32,1.1173e-31,2.0601e-31,2.4173e-31,4.7932e-31,7.0715e-31,7.1181e-31,8.7376e-31,1.7615e-29,3.3381e-28,6.6437e-28,6.7855e-28,6.8011e-28,1.4346e-27,4.8284e-27,5.7673e-27,6.5025e-27,4.3392e-26,5.3839e-26,6.0438e-26,3.9817e-25,1.7831e-24,4.4534e-24,8.153e-24,1.6862e-23,2.3525e-22,5.8523e-22,6.5253e-22,2.2294e-21,8.7064e-21,1.6025e-20,1.6062e-20,3.802e-20,6.1499e-20,8.5491e-20,1.2988e-19,1.8458e-19,3.007e-19,3.6975e-19,6.725e-19,1.9024e-18,3.0068e-18,6.194e-18,2.5851e-17,2.9808e-17,5.1412e-17,7.0808e-17,1.8045e-16,8.9408e-16,1.3731e-15,4.4485e-15,1.1239e-14,1.854e-14,4.4257e-14,4.9678e-14,5.5293e-14,9.4826e-14,1.2819e-13,1.2902e-13,1.6538e-13,1.9946e-13,2.7402e-13,2.8136e-13,2.8465e-13,3.0371e-13,3.6277e-13,4.8661e-13,5.667e-13,1.1372e-12,1.1387e-12,2.6049e-12,2.6333e-12,3.1383e-12,3.5145e-12,3.7801e-12,4.7886e-12,6.1162e-12,1.318e-11,1.4695e-11,2.0827e-11,9.2243e-11,1.4386e-10,1.6689e-10,4.1293e-10,4.597e-10,5.1768e-10,1.2661e-09,1.4356e-09,2.0807e-09,2.4165e-09,2.5439e-09,2.8083e-09,5.3066e-09,1.0113e-08,1.08e-08,1.2799e-08,1.7264e-08,4.2054e-08,4.371e-08,4.6488e-08,1.9861e-07,5.0496e-07,7.4101e-07,8.7042e-07,1.3519e-06,1.6704e-06,1.8488e-06,2.6966e-06,5.4366e-06,7.8699e-06,8.4845e-06,9.1593e-06,9.2661e-06,1.0965e-05,4.3714e-05,5.5219e-05,5.8111e-05,6.5625e-05,9.1858e-05,0.00010813,0.00017627,0.0001874,0.00020376,0.00021203,0.00024031,0.00029099,0.00031768,0.00034072,0.00043122,0.00046933,0.00060615,0.00064765,0.00079394,0.00083485,0.00089936,0.00090264,0.00095355,0.001113,0.0015277,0.0015373,0.0019891,0.0022765,0.0025569,0.0047116,0.0056799,0.0057846,0.0090641,0.010026,0.010136,0.012612,0.01268,0.015148,0.019123,0.025984,0.027283,0.030611,0.038272,0.042048,0.045695,0.049894,0.064124,0.0727,0.07279,0.077569,0.085249,0.086522,0.098247,0.10313,0.10765,0.12069,0.12436,0.13186,0.1404,0.15764,0.17412,0.24076,0.24916,0.25867,0.27569,0.29929,0.30222,0.3394,0.34158,0.35291,0.367,0.38712,0.6548,0.67479,0.68408,0.70093,0.7073,0.72643,0.79323,0.80184,0.81669,0.83313,0.84367,0.88931,0.89282,0.9278,0.96039,0.98096,0.98238,0.99587,0.99999,1,0.9993,0.99344,0.99324,0.99279,0.97722,0.97531,0.96209,0.95462,0.93564,0.92997,0.89977,0.89388,0.85761,0.84723 1,2.1451e-39,2.8597e-39,3.3536e-39,5.8015e-39,1.1613e-38,1.1802e-38,1.418e-38,2.9658e-38,1.3809e-37,1.8352e-37,2.0539e-37,2.0622e-37,3.2027e-37,6.9642e-37,7.7089e-37,1.3081e-36,6.5668e-36,3.0954e-35,3.7984e-35,9.8408e-35,1.693e-34,2.6136e-34,3.0558e-34,5.4301e-34,5.6229e-34,9.7177e-34,2.1827e-33,4.432e-33,5.9729e-33,2.2888e-32,2.4161e-32,7.142e-32,1.3194e-31,1.5489e-31,3.078e-31,4.5466e-31,4.5767e-31,5.6216e-31,1.1443e-29,2.1896e-28,4.3679e-28,4.4614e-28,4.4717e-28,9.4558e-28,3.1957e-27,3.8195e-27,4.3081e-27,2.8937e-26,3.593e-26,4.0351e-26,2.6759e-25,1.2047e-24,3.0189e-24,5.5388e-24,1.1485e-23,1.6181e-22,4.0392e-22,4.5056e-22,1.5466e-21,6.0718e-21,1.1203e-20,1.1228e-20,2.6669e-20,4.322e-20,6.016e-20,9.1547e-20,1.3029e-19,2.1268e-19,2.6173e-19,4.772e-19,1.3557e-18,2.1468e-18,4.4359e-18,1.8626e-17,2.149e-17,3.7153e-17,5.124e-17,1.3111e-16,6.5428e-16,1.0068e-15,3.2793e-15,8.3207e-15,1.3758e-14,3.2978e-14,3.7038e-14,4.1245e-14,7.0917e-14,9.6011e-14,9.6632e-14,1.2402e-13,1.4971e-13,2.06e-13,2.1154e-13,2.1402e-13,2.2843e-13,2.7309e-13,3.6684e-13,4.2755e-13,8.6097e-13,8.6209e-13,1.9805e-12,2.0022e-12,2.3883e-12,2.6762e-12,2.8795e-12,3.6522e-12,4.6706e-12,1.0106e-11,1.1274e-11,1.6008e-11,7.1472e-11,1.1174e-10,1.2973e-10,3.2264e-10,3.5941e-10,4.0501e-10,9.9571e-10,1.1298e-09,1.6411e-09,1.9076e-09,2.0089e-09,2.2189e-09,4.2089e-09,8.0532e-09,8.6037e-09,1.0206e-08,1.3793e-08,3.3789e-08,3.5128e-08,3.7376e-08,1.6121e-07,4.125e-07,6.0696e-07,7.1377e-07,1.1121e-06,1.3762e-06,1.5243e-06,2.2294e-06,4.5185e-06,6.5594e-06,7.0758e-06,7.6431e-06,7.7329e-06,9.1627e-06,3.694e-05,4.6753e-05,4.9223e-05,5.5645e-05,7.8114e-05,9.2083e-05,0.00015077,0.00016037,0.0001745,0.00018165,0.00020612,0.00025002,0.00027318,0.00029318,0.00037188,0.00040508,0.00052446,0.00056073,0.00068876,0.00072461,0.00078119,0.00078407,0.00082874,0.0009688,0.0013342,0.0013426,0.0017419,0.0019964,0.0022452,0.0041655,0.0050323,0.0051262,0.0080755,0.0089434,0.0090427,0.011283,0.011344,0.013584,0.0172,0.023469,0.024659,0.027711,0.034758,0.038241,0.041609,0.045493,0.058697,0.066683,0.066767,0.071225,0.0784,0.079591,0.090574,0.095154,0.099403,0.11167,0.11513,0.1222,0.13027,0.14659,0.16224,0.22587,0.23392,0.24306,0.25943,0.28219,0.28502,0.32101,0.32312,0.33412,0.34782,0.36741,0.63219,0.6523,0.66166,0.67868,0.68513,0.70452,0.77274,0.7816,0.79691,0.81393,0.82488,0.87273,0.87644,0.91381,0.94957,0.9731,0.97479,0.99178,0.9991,0.9993,1,0.99701,0.99688,0.99657,0.98442,0.98282,0.97147,0.96489,0.94784,0.94266,0.91474,0.90923,0.87497,0.86508 1,7.6206e-40,1.0176e-39,1.1945e-39,2.073e-39,4.1664e-39,4.2347e-39,5.0932e-39,1.0699e-38,5.0272e-38,6.692e-38,7.4948e-38,7.525e-38,1.1718e-37,2.5598e-37,2.8353e-37,4.8265e-37,2.4467e-36,1.1642e-35,1.4305e-35,3.7278e-35,6.435e-35,9.9607e-35,1.1657e-34,2.0789e-34,2.1532e-34,3.734e-34,8.4297e-34,1.7194e-33,2.3215e-33,8.9725e-33,9.4748e-33,2.8204e-32,5.2309e-32,6.1475e-32,1.2271e-31,1.8172e-31,1.8293e-31,2.25e-31,4.6723e-30,9.1209e-29,1.8281e-28,1.8675e-28,1.8719e-28,3.9788e-28,1.3561e-27,1.6228e-27,1.832e-27,1.2472e-26,1.551e-26,1.7433e-26,1.172e-25,5.3348e-25,1.3459e-24,2.4806e-24,5.1721e-24,7.4351e-23,1.8692e-22,2.0868e-22,7.2328e-22,2.8706e-21,5.3224e-21,5.3348e-21,1.276e-20,2.0761e-20,2.8976e-20,4.4247e-20,6.3158e-20,1.0351e-19,1.2761e-19,2.3384e-19,6.7024e-19,1.0655e-18,2.2155e-18,9.4197e-18,1.0882e-17,1.8904e-17,2.6147e-17,6.7474e-17,3.4169e-16,5.2789e-16,1.7386e-15,4.4508e-15,7.3949e-15,1.7877e-14,2.0101e-14,2.2408e-14,3.8736e-14,5.2601e-14,5.2945e-14,6.8118e-14,8.2385e-14,1.1373e-13,1.1682e-13,1.182e-13,1.2625e-13,1.512e-13,2.0372e-13,2.3781e-13,4.8235e-13,4.8298e-13,1.1193e-12,1.1316e-12,1.3524e-12,1.5172e-12,1.6338e-12,2.0774e-12,2.6637e-12,5.8115e-12,6.4911e-12,9.2519e-12,4.2003e-11,6.6002e-11,7.6761e-11,1.9293e-10,2.1518e-10,2.4283e-10,6.034e-10,6.857e-10,1.0005e-09,1.1651e-09,1.2278e-09,1.3578e-09,2.596e-09,5.0076e-09,5.3544e-09,6.3655e-09,8.6358e-09,2.1403e-08,2.2263e-08,2.3707e-08,1.043e-07,2.7041e-07,4.001e-07,4.7161e-07,7.3958e-07,9.181e-07,1.0185e-06,1.4982e-06,3.0696e-06,4.4822e-06,4.8409e-06,5.2354e-06,5.2979e-06,6.2945e-06,2.5969e-05,3.3002e-05,3.4777e-05,3.9398e-05,5.5638e-05,6.5781e-05,0.00010867,0.00011573,0.00012612,0.00013138,0.00014944,0.00018193,0.00019912,0.00021398,0.00027267,0.00029751,0.00038716,0.00041448,0.00051123,0.0005384,0.00058132,0.00058351,0.00061746,0.00072413,0.001004,0.0010104,0.0013183,0.0015155,0.0017087,0.0032149,0.0039013,0.0039759,0.006333,0.0070316,0.0071117,0.0089234,0.0089736,0.010795,0.013756,0.018932,0.01992,0.02246,0.02836,0.031291,0.034135,0.037425,0.04868,0.055534,0.055606,0.059448,0.06565,0.066682,0.076226,0.08022,0.083934,0.094692,0.09774,0.10397,0.11111,0.1256,0.13958,0.19707,0.20442,0.21277,0.2278,0.24879,0.2514,0.28483,0.2868,0.29708,0.30992,0.32834,0.58531,0.60548,0.61491,0.63212,0.63865,0.65839,0.72882,0.73809,0.75419,0.77222,0.78389,0.83571,0.8398,0.88166,0.92347,0.95283,0.95504,0.97905,0.99284,0.99344,0.99701,1,1,0.99998,0.99502,0.99409,0.98676,0.98211,0.96923,0.96516,0.94228,0.93762,0.90793,0.89917 1,7.4463e-40,9.9438e-40,1.1672e-39,2.0258e-39,4.072e-39,4.1387e-39,4.9779e-39,1.0458e-38,4.9148e-38,6.5428e-38,7.3278e-38,7.3573e-38,1.1457e-37,2.5032e-37,2.7726e-37,4.7201e-37,2.3932e-36,1.1391e-35,1.3996e-35,3.6478e-35,6.2973e-35,9.7481e-35,1.1409e-34,2.0348e-34,2.1075e-34,3.655e-34,8.2522e-34,1.6833e-33,2.273e-33,8.7865e-33,9.2785e-33,2.7624e-32,5.1238e-32,6.0217e-32,1.2021e-31,1.7803e-31,1.7922e-31,2.2044e-31,4.5796e-30,8.9439e-29,1.7928e-28,1.8315e-28,1.8357e-28,3.9024e-28,1.3304e-27,1.5921e-27,1.7973e-27,1.2239e-26,1.5222e-26,1.7109e-26,1.1505e-25,5.2385e-25,1.3218e-24,2.4364e-24,5.0806e-24,7.3068e-23,1.8372e-22,2.0511e-22,7.1108e-22,2.8228e-21,5.2345e-21,5.2466e-21,1.2551e-20,2.0423e-20,2.8506e-20,4.3533e-20,6.2142e-20,1.0186e-19,1.2557e-19,2.3014e-19,6.5975e-19,1.049e-18,2.1813e-18,9.277e-18,1.0717e-17,1.8621e-17,2.5756e-17,6.6477e-17,3.3675e-16,5.2031e-16,1.714e-15,4.3888e-15,7.2927e-15,1.7634e-14,1.9828e-14,2.2104e-14,3.8215e-14,5.1896e-14,5.2236e-14,6.721e-14,8.129e-14,1.1222e-13,1.1528e-13,1.1664e-13,1.2458e-13,1.4921e-13,2.0105e-13,2.347e-13,4.7612e-13,4.7675e-13,1.105e-12,1.1172e-12,1.3352e-12,1.498e-12,1.6131e-12,2.0513e-12,2.6304e-12,5.7399e-12,6.4112e-12,9.1389e-12,4.1505e-11,6.5227e-11,7.5863e-11,1.9072e-10,2.1272e-10,2.4006e-10,5.9666e-10,6.7806e-10,9.8949e-10,1.1523e-09,1.2143e-09,1.3429e-09,2.568e-09,4.9545e-09,5.2977e-09,6.2985e-09,8.5456e-09,2.1185e-08,2.2036e-08,2.3466e-08,1.0328e-07,2.6786e-07,3.9637e-07,4.6724e-07,7.3284e-07,9.0979e-07,1.0093e-06,1.4848e-06,3.043e-06,4.444e-06,4.7997e-06,5.191e-06,5.253e-06,6.2416e-06,2.5764e-05,3.2745e-05,3.4506e-05,3.9093e-05,5.5215e-05,6.5285e-05,0.00010787,0.00011488,0.0001252,0.00013043,0.00014836,0.00018063,0.00019771,0.00021247,0.00027077,0.00029545,0.00038452,0.00041167,0.00050781,0.00053481,0.00057746,0.00057964,0.00061338,0.0007194,0.00099755,0.001004,0.00131,0.0015061,0.0016982,0.0031962,0.003879,0.0039531,0.0062984,0.0069935,0.0070732,0.0088762,0.0089262,0.01074,0.013687,0.01884,0.019824,0.022354,0.02823,0.03115,0.033982,0.03726,0.048474,0.055304,0.055376,0.059205,0.065387,0.066415,0.075928,0.07991,0.083612,0.094338,0.097377,0.10359,0.11071,0.12516,0.1391,0.19646,0.20379,0.21213,0.22712,0.24807,0.25068,0.28405,0.28602,0.29628,0.3091,0.3275,0.58426,0.60444,0.61387,0.63108,0.63761,0.65736,0.72782,0.7371,0.75321,0.77126,0.78294,0.83484,0.83894,0.8809,0.92283,0.95232,0.95454,0.9787,0.99263,0.99324,0.99688,1,1,0.99999,0.99519,0.99428,0.98704,0.98243,0.96965,0.9656,0.94284,0.9382,0.90862,0.89988 1,7.0726e-40,9.4454e-40,1.1088e-39,1.9247e-39,3.8695e-39,3.9329e-39,4.7306e-39,9.9405e-39,4.6738e-38,6.2224e-38,6.9692e-38,6.9973e-38,1.0898e-37,2.3816e-37,2.6379e-37,4.4916e-37,2.2785e-36,1.0849e-35,1.3332e-35,3.4757e-35,6.0013e-35,9.2912e-35,1.0874e-34,1.9398e-34,2.0092e-34,3.4851e-34,7.8705e-34,1.6058e-33,2.1685e-33,8.3863e-33,8.8561e-33,2.6375e-32,4.8931e-32,5.751e-32,1.1483e-31,1.7008e-31,1.7122e-31,2.1061e-31,4.3798e-30,8.5623e-29,1.7167e-28,1.7538e-28,1.7578e-28,3.7378e-28,1.2748e-27,1.5256e-27,1.7224e-27,1.1737e-26,1.4598e-26,1.6408e-26,1.1042e-25,5.0302e-25,1.2697e-24,2.3409e-24,4.8827e-24,7.0292e-23,1.768e-22,1.974e-22,6.8466e-22,2.7194e-21,5.044e-21,5.0557e-21,1.2098e-20,1.969e-20,2.7487e-20,4.1984e-20,5.994e-20,9.8268e-20,1.2116e-19,2.221e-19,6.37e-19,1.013e-18,2.1071e-18,8.967e-18,1.036e-17,1.8004e-17,2.4907e-17,6.4312e-17,3.2602e-16,5.0383e-16,1.6607e-15,4.254e-15,7.0704e-15,1.7103e-14,1.9232e-14,2.1441e-14,3.7079e-14,5.0362e-14,5.0692e-14,6.5231e-14,7.8904e-14,1.0895e-13,1.1191e-13,1.1324e-13,1.2095e-13,1.4487e-13,1.9524e-13,2.2793e-13,4.6256e-13,4.6317e-13,1.074e-12,1.0859e-12,1.2979e-12,1.4562e-12,1.5682e-12,1.9944e-12,2.5577e-12,5.5836e-12,6.237e-12,8.8923e-12,4.0418e-11,6.3535e-11,7.3901e-11,1.8588e-10,2.0734e-10,2.34e-10,5.8192e-10,6.6137e-10,9.6534e-10,1.1243e-09,1.1848e-09,1.3104e-09,2.5067e-09,4.8383e-09,5.1737e-09,6.1517e-09,8.348e-09,2.0707e-08,2.154e-08,2.2938e-08,1.0106e-07,2.6226e-07,3.882e-07,4.5766e-07,7.1804e-07,8.9157e-07,9.8916e-07,1.4556e-06,2.9847e-06,4.3601e-06,4.7094e-06,5.0937e-06,5.1546e-06,6.1255e-06,2.5314e-05,3.2179e-05,3.3911e-05,3.8423e-05,5.4285e-05,6.4194e-05,0.00010612,0.00011302,0.00012318,0.00012833,0.00014599,0.00017778,0.0001946,0.00020914,0.00026659,0.00029091,0.00037871,0.00040548,0.00050027,0.0005269,0.00056897,0.00057111,0.00060439,0.00070897,0.00098342,0.00098977,0.0012919,0.0014854,0.0016751,0.0031549,0.0038297,0.003903,0.0062219,0.0069095,0.0069883,0.0087721,0.0088216,0.010616,0.013534,0.018637,0.019612,0.022118,0.027942,0.030836,0.033644,0.036894,0.048018,0.054796,0.054867,0.058667,0.064803,0.065824,0.075269,0.079224,0.0829,0.093554,0.096573,0.10275,0.10982,0.12419,0.13804,0.1951,0.2024,0.2107,0.22563,0.24649,0.24909,0.28233,0.28429,0.29451,0.30729,0.32562,0.58194,0.60211,0.61154,0.62875,0.63529,0.65505,0.72559,0.73489,0.75103,0.76912,0.78084,0.83292,0.83703,0.87919,0.92141,0.95117,0.95342,0.97792,0.99216,0.99279,0.99657,0.99998,0.99999,1,0.99556,0.99468,0.98764,0.98313,0.97057,0.96658,0.94407,0.93948,0.91014,0.90146 1,1.9836e-40,2.6546e-40,3.1196e-40,5.4364e-40,1.0984e-39,1.1165e-39,1.3447e-39,2.8407e-39,1.3505e-38,1.8017e-38,2.0196e-38,2.0278e-38,3.1683e-38,6.9631e-38,7.7185e-38,1.3193e-37,6.7727e-37,3.2624e-36,4.015e-36,1.0543e-35,1.8278e-35,2.8391e-35,3.3268e-35,5.9606e-35,6.1753e-35,1.0756e-34,2.4443e-34,5.0145e-34,6.7872e-34,2.6524e-33,2.8022e-33,8.4168e-33,1.5691e-32,1.8465e-32,3.707e-32,5.5078e-32,5.5449e-32,6.8319e-32,1.4558e-30,2.9162e-29,5.8809e-29,6.0089e-29,6.0229e-29,1.2888e-28,4.4412e-28,5.3232e-28,6.0159e-28,4.1675e-27,5.1931e-27,5.843e-27,3.998e-26,1.8459e-25,4.6982e-25,8.7097e-25,1.8289e-24,2.6984e-23,6.8464e-23,7.6518e-23,2.6855e-22,1.0809e-21,2.0169e-21,2.0217e-21,4.8795e-21,7.9797e-21,1.1177e-20,1.7143e-20,2.4562e-20,4.0469e-20,5.0002e-20,9.2225e-20,2.6738e-19,4.2723e-19,8.955e-19,3.8696e-18,4.4776e-18,7.8275e-18,1.0867e-17,2.8349e-17,1.4631e-16,2.2722e-16,7.5911e-16,1.9658e-15,3.2866e-15,8.0333e-15,9.0459e-15,1.0098e-14,1.7577e-14,2.3962e-14,2.4121e-14,3.1134e-14,3.7747e-14,5.2324e-14,5.3766e-14,5.4411e-14,5.8162e-14,6.9821e-14,9.4442e-14,1.1047e-13,2.2616e-13,2.2646e-13,5.3073e-13,5.3667e-13,6.4291e-13,7.224e-13,7.7866e-13,9.9336e-13,1.278e-12,2.8185e-12,3.1529e-12,4.5162e-12,2.0949e-11,3.3136e-11,3.8623e-11,9.8404e-11,1.0994e-10,1.2428e-10,3.1313e-10,3.5653e-10,5.2328e-10,6.1081e-10,6.4416e-10,7.135e-10,1.3782e-09,2.6866e-09,2.8758e-09,3.4285e-09,4.6745e-09,1.1761e-08,1.2242e-08,1.305e-08,5.8894e-08,1.5532e-07,2.3147e-07,2.7367e-07,4.3278e-07,5.3944e-07,5.9961e-07,8.8854e-07,1.8462e-06,2.7163e-06,2.9383e-06,3.1828e-06,3.2215e-06,3.841e-06,1.6327e-05,2.0858e-05,2.2004e-05,2.4997e-05,3.5575e-05,4.222e-05,7.0561e-05,7.5255e-05,8.2179e-05,8.5691e-05,9.7762e-05,0.00011958,0.00013116,0.0001412,0.000181,0.00019792,0.00025925,0.00027803,0.00034477,0.00036357,0.00039333,0.00039485,0.00041844,0.00049278,0.00068917,0.00069373,0.00091165,0.001052,0.0011901,0.0022803,0.0027831,0.0028379,0.0045855,0.0051082,0.0051682,0.0065323,0.0065702,0.0079523,0.010216,0.014217,0.014986,0.01697,0.021613,0.023936,0.026198,0.028825,0.037888,0.043457,0.043516,0.046653,0.051738,0.052586,0.060463,0.063775,0.066862,0.075847,0.078403,0.083644,0.089663,0.10197,0.1139,0.16378,0.17023,0.17759,0.19088,0.20955,0.21188,0.24191,0.24369,0.25299,0.26465,0.28145,0.52518,0.54509,0.55444,0.57158,0.57811,0.59793,0.66979,0.6794,0.69618,0.71511,0.72746,0.78324,0.78771,0.83437,0.88296,0.9191,0.92193,0.95435,0.97614,0.97722,0.98442,0.99502,0.99519,0.99556,1,0.99996,0.99799,0.99595,0.9888,0.98625,0.97045,0.96701,0.94397,0.93687 1,1.7574e-40,2.3523e-40,2.7647e-40,4.8196e-40,9.7422e-40,9.9031e-40,1.1929e-39,2.5212e-39,1.1999e-38,1.601e-38,1.7948e-38,1.8021e-38,2.8165e-38,6.1934e-38,6.8657e-38,1.174e-37,6.0335e-37,2.9095e-36,3.5812e-36,9.4099e-36,1.632e-35,2.5358e-35,2.9718e-35,5.3267e-35,5.5187e-35,9.6166e-35,2.1866e-34,4.4881e-34,6.0761e-34,2.3768e-33,2.5111e-33,7.5487e-33,1.4079e-32,1.657e-32,3.3284e-32,4.9467e-32,4.98e-32,6.1368e-32,1.3107e-30,2.6317e-29,5.31e-29,5.4257e-29,5.4383e-29,1.1644e-28,4.0165e-28,4.8148e-28,5.4419e-28,3.7757e-27,4.7058e-27,5.2952e-27,3.6289e-26,1.6777e-25,4.2733e-25,7.9261e-25,1.6654e-24,2.463e-23,6.254e-23,6.9905e-23,2.4561e-22,9.8985e-22,1.8481e-21,1.8524e-21,4.4746e-21,7.3209e-21,1.0257e-20,1.5739e-20,2.2558e-20,3.7185e-20,4.5953e-20,8.4807e-20,2.4612e-19,3.9345e-19,8.2528e-19,3.5714e-18,4.1331e-18,7.2293e-18,1.004e-17,2.6217e-17,1.3554e-16,2.1058e-16,7.0444e-16,1.8261e-15,3.0547e-15,7.474e-15,8.4172e-15,9.3972e-15,1.6368e-14,2.2321e-14,2.2469e-14,2.901e-14,3.518e-14,4.8784e-14,5.013e-14,5.0732e-14,5.4233e-14,6.5119e-14,8.8112e-14,1.0308e-13,2.1122e-13,2.115e-13,4.9616e-13,5.0172e-13,6.0117e-13,6.7559e-13,7.2828e-13,9.2935e-13,1.196e-12,2.6402e-12,2.9539e-12,4.2331e-12,1.9674e-11,3.1137e-11,3.6299e-11,9.2598e-11,1.0346e-10,1.1699e-10,2.9511e-10,3.3608e-10,4.9351e-10,5.7619e-10,6.0769e-10,6.732e-10,1.3015e-09,2.5396e-09,2.7187e-09,3.242e-09,4.4221e-09,1.1141e-08,1.1597e-08,1.2364e-08,5.5927e-08,1.4772e-07,2.2028e-07,2.6051e-07,4.1229e-07,5.1409e-07,5.7153e-07,8.4749e-07,1.7632e-06,2.5959e-06,2.8083e-06,3.0425e-06,3.0796e-06,3.6729e-06,1.5654e-05,2.0008e-05,2.111e-05,2.3987e-05,3.4161e-05,4.0556e-05,6.785e-05,7.2373e-05,7.9046e-05,8.2431e-05,9.4069e-05,0.00011511,0.00012629,0.00013597,0.00017439,0.00019072,0.00024998,0.00026813,0.00033265,0.00035083,0.00037962,0.00038109,0.00040391,0.00047584,0.00066599,0.00067042,0.00088159,0.0010177,0.0011516,0.0022101,0.0026988,0.0027521,0.0044526,0.0049615,0.00502,0.0063491,0.0063861,0.0077337,0.0099427,0.01385,0.014602,0.016542,0.021083,0.023356,0.025571,0.028145,0.037028,0.042492,0.04255,0.045628,0.05062,0.051453,0.059191,0.062447,0.065482,0.074317,0.076832,0.081989,0.087914,0.10003,0.11179,0.16101,0.16738,0.17465,0.18778,0.20625,0.20856,0.23828,0.24004,0.24925,0.2608,0.27746,0.51985,0.53972,0.54906,0.56617,0.57269,0.5925,0.66442,0.67405,0.69087,0.70986,0.72225,0.77832,0.78283,0.82985,0.87899,0.91569,0.91857,0.95171,0.97418,0.97531,0.98282,0.99409,0.99428,0.99468,0.99996,1,0.99852,0.99671,0.99009,0.98768,0.97254,0.96922,0.9468,0.93986 1,8.405e-41,1.1263e-40,1.3247e-40,2.3144e-40,4.6917e-40,4.7695e-40,5.7494e-40,1.2189e-39,5.838e-39,7.7992e-39,8.7471e-39,8.7828e-39,1.3752e-38,3.0339e-38,3.3647e-38,5.7662e-38,2.9839e-37,1.4485e-36,1.7845e-36,4.7083e-36,8.1854e-36,1.2742e-35,1.4943e-35,2.6852e-35,2.7824e-35,4.8602e-35,1.1091e-34,2.2836e-34,3.0957e-34,1.2183e-33,1.2874e-33,3.8892e-33,7.2739e-33,8.5673e-33,1.7263e-32,2.5703e-32,2.5876e-32,3.1918e-32,6.9133e-31,1.4078e-29,2.85e-29,2.9124e-29,2.9192e-29,6.2731e-29,2.1768e-28,2.6118e-28,2.9537e-28,2.0688e-27,2.5812e-27,2.9063e-27,2.0109e-26,9.3688e-26,2.3979e-25,4.4617e-25,9.4108e-25,1.4117e-23,3.6025e-23,4.0291e-23,1.4253e-22,5.7883e-22,1.0844e-21,1.087e-21,2.6387e-21,4.3292e-21,6.077e-21,9.3476e-21,1.3425e-20,2.2193e-20,2.746e-20,5.0858e-20,1.4852e-19,2.3808e-19,5.0159e-19,2.1898e-18,2.5365e-18,4.4518e-18,6.1948e-18,1.6273e-17,8.5005e-17,1.3244e-16,4.4651e-16,1.1647e-15,1.9551e-15,4.8122e-15,5.4238e-15,6.0598e-15,1.0595e-14,1.4479e-14,1.4576e-14,1.8852e-14,2.2891e-14,3.1816e-14,3.2699e-14,3.3095e-14,3.5396e-14,4.2555e-14,5.7702e-14,6.758e-14,1.3918e-13,1.3936e-13,3.2895e-13,3.3266e-13,3.9912e-13,4.4891e-13,4.8418e-13,6.1896e-13,7.9805e-13,1.772e-12,1.9842e-12,2.8511e-12,1.3407e-11,2.1295e-11,2.4856e-11,6.3879e-11,7.1438e-11,8.0854e-11,2.055e-10,2.3428e-10,3.4512e-10,4.0346e-10,4.2571e-10,4.72e-10,9.1762e-10,1.8008e-09,1.9289e-09,2.3037e-09,3.1509e-09,8.004e-09,8.3346e-09,8.8905e-09,4.0778e-08,1.0871e-07,1.6275e-07,1.9279e-07,3.0651e-07,3.8304e-07,4.2629e-07,6.3468e-07,1.3305e-06,1.967e-06,2.1298e-06,2.3094e-06,2.3378e-06,2.7936e-06,1.2102e-05,1.5511e-05,1.6376e-05,1.8636e-05,2.6652e-05,3.1707e-05,5.3381e-05,5.6985e-05,6.2308e-05,6.501e-05,7.4312e-05,9.1169e-05,0.00010014,0.00010792,0.00013886,0.00015205,0.0002,0.00021472,0.00026717,0.00028197,0.00030544,0.00030664,0.00032526,0.00038406,0.00054008,0.00054372,0.0007178,0.00083035,0.00094135,0.0018245,0.0022349,0.0022798,0.0037172,0.0041496,0.0041993,0.0053323,0.0053639,0.0065172,0.0084161,0.011795,0.012447,0.014134,0.018099,0.020091,0.022036,0.024301,0.032154,0.037007,0.037058,0.0398,0.044256,0.045,0.051932,0.054856,0.057585,0.06555,0.067822,0.072488,0.07786,0.088876,0.099613,0.14489,0.1508,0.15754,0.16975,0.18697,0.18913,0.21698,0.21864,0.22731,0.23819,0.25393,0.48776,0.50733,0.51654,0.53346,0.53992,0.55959,0.63159,0.6413,0.65831,0.67759,0.69022,0.7478,0.75247,0.80154,0.85377,0.89369,0.89687,0.93417,0.96071,0.96209,0.97147,0.98676,0.98704,0.98764,0.99799,0.99852,1,0.99964,0.99625,0.9947,0.98365,0.98104,0.96256,0.95663 1,5.8415e-41,7.8325e-41,9.2146e-41,1.6117e-40,3.2718e-40,3.3262e-40,4.0111e-40,8.5161e-40,4.0919e-39,5.4696e-39,6.1359e-39,6.161e-39,9.6556e-39,2.1336e-38,2.3667e-38,4.0604e-38,2.1082e-37,1.0268e-36,1.2655e-36,3.3458e-36,5.8234e-36,9.0739e-36,1.0645e-35,1.9152e-35,1.9847e-35,3.4708e-35,7.9341e-35,1.6362e-34,2.2195e-34,8.7607e-34,9.259e-34,2.8038e-33,5.2511e-33,6.187e-33,1.2486e-32,1.8607e-32,1.8733e-32,2.3117e-32,5.0418e-31,1.0338e-29,2.0963e-29,2.1423e-29,2.1474e-29,4.6228e-29,1.6088e-28,1.9311e-28,2.1846e-28,1.5373e-27,1.9191e-27,2.1614e-27,1.5026e-26,7.0271e-26,1.8028e-25,3.3597e-25,7.0997e-25,1.0724e-23,2.7435e-23,3.0693e-23,1.0894e-22,4.441e-22,8.3344e-22,8.3541e-22,2.0329e-21,3.3398e-21,4.6926e-21,7.2268e-21,1.039e-20,1.72e-20,2.1294e-20,3.9507e-20,1.1572e-19,1.8576e-19,3.9221e-19,1.7197e-18,1.9929e-18,3.5035e-18,4.8801e-18,1.2857e-17,6.7504e-17,1.0532e-16,3.5644e-16,9.3261e-16,1.5681e-15,3.8711e-15,4.3648e-15,4.8784e-15,8.545e-15,1.169e-14,1.1768e-14,1.5234e-14,1.8511e-14,2.5756e-14,2.6474e-14,2.6795e-14,2.8664e-14,3.4483e-14,4.6807e-14,5.4849e-14,1.1324e-13,1.1339e-13,2.6845e-13,2.7149e-13,3.2594e-13,3.6676e-13,3.9568e-13,5.0627e-13,6.5335e-13,1.4549e-12,1.6298e-12,2.345e-12,1.1091e-11,1.7647e-11,2.061e-11,5.316e-11,5.9476e-11,6.7349e-11,1.7181e-10,1.9597e-10,2.8914e-10,3.3823e-10,3.5696e-10,3.9595e-10,7.7187e-10,1.5191e-09,1.6276e-09,1.9453e-09,2.6643e-09,6.7951e-09,7.077e-09,7.5512e-09,3.4873e-08,9.3395e-08,1.4008e-07,1.6608e-07,2.6463e-07,3.3107e-07,3.6865e-07,5.4995e-07,1.1572e-06,1.7143e-06,1.8569e-06,2.0143e-06,2.0393e-06,2.4392e-06,1.0651e-05,1.3671e-05,1.4438e-05,1.6442e-05,2.3564e-05,2.8061e-05,4.739e-05,5.061e-05,5.5367e-05,5.7783e-05,6.6105e-05,8.1203e-05,8.9244e-05,9.6226e-05,0.00012401,0.00013586,0.00017903,0.00019229,0.0002396,0.00025297,0.00027417,0.00027525,0.00029208,0.00034527,0.00048666,0.00048996,0.00064809,0.00075048,0.00085156,0.0016585,0.0020348,0.0020759,0.0033978,0.0037963,0.0038422,0.0048883,0.0049176,0.0059847,0.0077453,0.010887,0.011494,0.013067,0.016772,0.018636,0.020458,0.022583,0.029964,0.034538,0.034586,0.037172,0.041381,0.042084,0.048643,0.051412,0.053999,0.061559,0.063718,0.068154,0.073266,0.083765,0.094017,0.13742,0.1431,0.14959,0.16135,0.17797,0.18005,0.20699,0.2086,0.217,0.22756,0.24284,0.4722,0.49158,0.50072,0.51751,0.52393,0.54349,0.61537,0.6251,0.64217,0.66155,0.67425,0.73244,0.73717,0.78712,0.84072,0.88211,0.88543,0.92466,0.95312,0.95462,0.96489,0.98211,0.98243,0.98313,0.99595,0.99671,0.99964,1,0.9982,0.99709,0.98809,0.98584,0.96936,0.96394 1,2.5773e-41,3.4602e-41,4.0737e-41,7.1431e-41,1.4546e-40,1.4789e-40,1.7849e-40,3.8023e-40,1.8399e-39,2.4626e-39,2.764e-39,2.7754e-39,4.3585e-39,9.6656e-39,1.0727e-38,1.8448e-38,9.6516e-38,4.7354e-37,5.8419e-37,1.5515e-36,2.7075e-36,4.2277e-36,4.9633e-36,8.9547e-36,9.2812e-36,1.6274e-35,3.7349e-35,7.7289e-35,1.05e-34,4.1721e-34,4.4106e-34,1.3429e-33,2.5227e-33,2.9747e-33,6.0242e-33,8.995e-33,9.0563e-33,1.1188e-32,2.4781e-31,5.1605e-30,1.0503e-29,1.0735e-29,1.076e-29,2.3257e-29,8.1475e-29,9.7893e-29,1.1081e-28,7.8798e-28,9.8485e-28,1.1099e-27,7.798e-27,3.6782e-26,9.4861e-26,1.7741e-25,3.7649e-25,5.7767e-24,1.486e-23,1.6635e-23,5.949e-23,2.4456e-22,4.6073e-22,4.6182e-22,1.1299e-21,1.862e-21,2.6218e-21,4.0485e-21,5.8336e-21,9.6877e-21,1.201e-20,2.2369e-20,6.5976e-20,1.0623e-19,2.2538e-19,9.9786e-19,1.1575e-18,2.0426e-18,2.8514e-18,7.5617e-18,4.0156e-17,6.2847e-17,2.1453e-16,5.6519e-16,9.539e-16,2.3705e-15,2.6752e-15,2.9924e-15,5.2633e-15,7.2174e-15,7.2661e-15,9.4242e-15,1.1468e-14,1.5996e-14,1.6446e-14,1.6647e-14,1.7817e-14,2.1465e-14,2.9204e-14,3.4263e-14,7.1136e-14,7.1232e-14,1.6978e-13,1.7172e-13,2.0646e-13,2.3252e-13,2.5101e-13,3.218e-13,4.1613e-13,9.3267e-13,1.0457e-12,1.5091e-12,7.2304e-12,1.155e-11,1.3507e-11,3.5125e-11,3.9338e-11,4.4593e-11,1.147e-10,1.3099e-10,1.9395e-10,2.272e-10,2.399e-10,2.6635e-10,5.2242e-10,1.0346e-09,1.1093e-09,1.3281e-09,1.8243e-09,4.6952e-09,4.8919e-09,5.223e-09,2.4494e-08,6.6272e-08,9.983e-08,1.1857e-07,1.8989e-07,2.3814e-07,2.6549e-07,3.9782e-07,8.4419e-07,1.2562e-06,1.3621e-06,1.4789e-06,1.4975e-06,1.7948e-06,7.9792e-06,1.0274e-05,1.0858e-05,1.2386e-05,1.7832e-05,2.1284e-05,3.6196e-05,3.8689e-05,4.2378e-05,4.4253e-05,5.0719e-05,6.2479e-05,6.8756e-05,7.4213e-05,9.5981e-05,0.00010529,0.00013929,0.00014977,0.00018722,0.00019782,0.00021465,0.00021551,0.00022889,0.00027125,0.00038433,0.00038698,0.00051409,0.00059668,0.00067841,0.0013358,0.0016445,0.0016783,0.0027706,0.0031018,0.0031399,0.0040124,0.0040368,0.0049308,0.0064126,0.009074,0.0095908,0.010932,0.014103,0.015706,0.017276,0.01911,0.025517,0.029507,0.029549,0.031812,0.035504,0.036122,0.041897,0.044343,0.04663,0.053334,0.055252,0.059202,0.063762,0.073159,0.082372,0.12172,0.12691,0.13284,0.14362,0.15891,0.16083,0.18576,0.18725,0.19505,0.20487,0.21914,0.43796,0.45685,0.46577,0.48221,0.48851,0.50775,0.57901,0.58874,0.60583,0.62532,0.63814,0.69732,0.70217,0.75377,0.81007,0.85447,0.85807,0.90135,0.93388,0.93564,0.94784,0.96923,0.96965,0.97057,0.9888,0.99009,0.99625,0.9982,1,0.99987,0.99551,0.99409,0.9822,0.97797 1,2.0618e-41,2.769e-41,3.2607e-41,5.7212e-41,1.1661e-40,1.1855e-40,1.4312e-40,3.0516e-40,1.4795e-39,1.9809e-39,2.2237e-39,2.2328e-39,3.5084e-39,7.788e-39,8.6441e-39,1.4877e-38,7.799e-38,3.834e-37,4.7312e-37,1.2581e-36,2.197e-36,3.4325e-36,4.0306e-36,7.2774e-36,7.5431e-36,1.3236e-35,3.0409e-35,6.2988e-35,8.5605e-35,3.4076e-34,3.6027e-34,1.0985e-33,2.0654e-33,2.436e-33,4.9378e-33,7.3769e-33,7.4272e-33,9.1777e-33,2.0414e-31,4.2692e-30,8.6978e-30,8.8899e-30,8.911e-30,1.9281e-29,6.7668e-29,8.1325e-29,9.2075e-29,6.566e-28,8.2091e-28,9.2531e-28,6.5198e-27,3.0825e-26,7.9611e-26,1.4903e-25,3.1663e-25,4.8789e-24,1.2569e-23,1.4073e-23,5.0432e-23,2.078e-22,3.9188e-22,3.9281e-22,9.6252e-22,1.5875e-21,2.2364e-21,3.456e-21,4.9829e-21,8.2822e-21,1.0271e-20,1.9151e-20,5.659e-20,9.1191e-20,1.9373e-19,8.6e-19,9.9783e-19,1.7627e-18,2.4622e-18,6.5411e-18,3.4844e-17,5.4579e-17,1.8674e-16,4.9291e-16,8.3275e-16,2.0731e-15,2.3402e-15,2.6183e-15,4.6105e-15,6.3262e-15,6.369e-15,8.265e-15,1.0061e-14,1.4044e-14,1.4439e-14,1.4616e-14,1.5646e-14,1.8856e-14,2.5671e-14,3.0128e-14,6.2647e-14,6.2732e-14,1.498e-13,1.5151e-13,1.8223e-13,2.0529e-13,2.2165e-13,2.8431e-13,3.6785e-13,8.2591e-13,9.2627e-13,1.3378e-12,6.4321e-12,1.0286e-11,1.2033e-11,3.1362e-11,3.5132e-11,3.9837e-11,1.027e-10,1.1732e-10,1.7388e-10,2.0376e-10,2.1518e-10,2.3897e-10,4.695e-10,9.3144e-10,9.9883e-10,1.1964e-09,1.6447e-09,4.2434e-09,4.4217e-09,4.7218e-09,2.2236e-08,6.033e-08,9.0986e-08,1.0812e-07,1.7339e-07,2.176e-07,2.4266e-07,3.6405e-07,7.7431e-07,1.1537e-06,1.2512e-06,1.3588e-06,1.376e-06,1.6501e-06,7.3717e-06,9.4999e-06,1.0042e-05,1.146e-05,1.652e-05,1.973e-05,3.3617e-05,3.5941e-05,3.9381e-05,4.113e-05,4.7163e-05,5.8143e-05,6.4007e-05,6.9107e-05,8.9464e-05,9.8176e-05,0.00013002,0.00013984,0.00017496,0.00018491,0.00020071,0.00020151,0.00021407,0.00025386,0.0003602,0.00036269,0.0004824,0.00056025,0.00063734,0.0012586,0.0015509,0.001583,0.0026194,0.0029341,0.0029703,0.0038002,0.0038234,0.0046748,0.0060878,0.00863,0.0091243,0.010407,0.013445,0.014982,0.016489,0.018251,0.024411,0.028253,0.028294,0.030474,0.034033,0.03463,0.040205,0.042567,0.044778,0.051261,0.053118,0.056942,0.06136,0.070471,0.079412,0.1177,0.12275,0.12854,0.13906,0.15399,0.15587,0.18025,0.18171,0.18935,0.19898,0.21297,0.42882,0.44755,0.45641,0.47274,0.479,0.49813,0.56914,0.57885,0.59594,0.61543,0.62826,0.68764,0.69252,0.74448,0.80143,0.84657,0.85024,0.89455,0.92814,0.92997,0.94266,0.96516,0.9656,0.96658,0.98625,0.98768,0.9947,0.99709,0.99987,1,0.99692,0.99572,0.98511,0.98122 1,7.0166e-42,9.4395e-42,1.1126e-41,1.9585e-41,4.0082e-41,4.0755e-41,4.9253e-41,1.0548e-40,5.1613e-40,6.9225e-40,7.7762e-40,7.8083e-40,1.2302e-39,2.7437e-39,3.0472e-39,5.2612e-39,2.7856e-38,1.3827e-37,1.7084e-37,4.57e-37,8.0079e-37,1.2545e-36,1.4746e-36,2.6721e-36,2.7703e-36,4.8781e-36,1.1265e-35,2.344e-35,3.1918e-35,1.2816e-34,1.3555e-34,4.1623e-34,7.8576e-34,9.2774e-34,1.8891e-33,2.8295e-33,2.849e-33,3.5252e-33,8.002e-32,1.7078e-30,3.4961e-30,3.5738e-30,3.5823e-30,7.7922e-30,2.7583e-29,3.3192e-29,3.7612e-29,2.7191e-28,3.4049e-28,3.8411e-28,2.7443e-27,1.312e-26,3.412e-26,6.4166e-26,1.3709e-25,2.1561e-24,5.5946e-24,6.2696e-24,2.2689e-23,9.4526e-23,1.7916e-22,1.7959e-22,4.4319e-22,7.3387e-22,1.0367e-21,1.6077e-21,2.3249e-21,3.8803e-21,4.8207e-21,9.0346e-21,2.6937e-20,4.3581e-20,9.3174e-20,4.1891e-19,4.8667e-19,8.6395e-19,1.2103e-18,3.2431e-18,1.7535e-17,2.7579e-17,9.543e-17,2.5417e-16,4.3152e-16,1.0836e-15,1.2246e-15,1.3716e-15,2.4285e-15,3.3424e-15,3.3652e-15,4.3781e-15,5.3399e-15,7.478e-15,7.6906e-15,7.7858e-15,8.34e-15,1.007e-14,1.3751e-14,1.6164e-14,3.3858e-14,3.3904e-14,8.1676e-14,8.262e-14,9.956e-14,1.123e-13,1.2134e-13,1.5604e-13,2.0244e-13,4.5837e-13,5.1469e-13,7.4625e-13,3.6492e-12,5.8657e-12,6.874e-12,1.8109e-11,2.0312e-11,2.3065e-11,6.0113e-11,6.8777e-11,1.024e-10,1.2022e-10,1.2704e-10,1.4126e-10,2.7976e-10,5.5964e-10,6.0064e-10,7.2101e-10,9.9512e-10,2.598e-09,2.7085e-09,2.8948e-09,1.3908e-08,3.8245e-08,5.8004e-08,6.9091e-08,1.1153e-07,1.4042e-07,1.5684e-07,2.3666e-07,5.0895e-07,7.6281e-07,8.2829e-07,9.007e-07,9.1221e-07,1.097e-06,5.017e-06,6.4921e-06,6.8684e-06,7.8555e-06,1.1393e-05,1.3648e-05,2.3466e-05,2.5118e-05,2.7565e-05,2.8811e-05,3.3117e-05,4.0978e-05,4.5189e-05,4.8856e-05,6.3543e-05,6.9849e-05,9.2986e-05,0.00010014,0.00012582,0.00013311,0.00014471,0.00014531,0.00015454,0.00018386,0.00026267,0.00026452,0.00035383,0.00041218,0.00047013,0.00094175,0.0011657,0.0011903,0.001992,0.0022371,0.0022653,0.0029149,0.0029331,0.0036034,0.0047228,0.0067537,0.0071506,0.0081837,0.010644,0.011896,0.013126,0.01457,0.019648,0.022837,0.022871,0.024688,0.027663,0.028163,0.032846,0.034838,0.036706,0.042202,0.04378,0.047038,0.050813,0.058631,0.066343,0.099745,0.1042,0.1093,0.11861,0.13189,0.13356,0.15539,0.1567,0.16358,0.17226,0.18493,0.38598,0.40389,0.41239,0.4281,0.43413,0.45263,0.52201,0.53158,0.54849,0.56786,0.58066,0.64049,0.64544,0.69874,0.7583,0.80657,0.81055,0.85934,0.89765,0.89977,0.91474,0.94228,0.94284,0.94407,0.97045,0.97254,0.98365,0.98809,0.99551,0.99692,1,0.9999,0.99553,0.99327 1,5.7797e-42,7.7778e-42,9.1688e-42,1.615e-41,3.3075e-41,3.3631e-41,4.0652e-41,8.713e-41,4.2704e-40,5.7293e-40,6.4366e-40,6.4633e-40,1.0188e-39,2.2741e-39,2.5259e-39,4.3637e-39,2.3145e-38,1.1508e-37,1.4222e-37,3.8086e-37,6.6778e-37,1.0467e-36,1.2305e-36,2.2312e-36,2.3133e-36,4.0759e-36,9.4214e-36,1.962e-35,2.6725e-35,1.0748e-34,1.1368e-34,3.4952e-34,6.6031e-34,7.7977e-34,1.5891e-33,2.3813e-33,2.3976e-33,2.9675e-33,6.7605e-32,1.4481e-30,2.967e-30,3.033e-30,3.0403e-30,6.6194e-30,2.3468e-29,2.8247e-29,3.2013e-29,2.32e-28,2.906e-28,3.2788e-28,2.3483e-27,1.125e-26,2.9292e-26,5.5131e-26,1.179e-25,1.8612e-24,4.8356e-24,5.4199e-24,1.9649e-23,8.2021e-23,1.5559e-22,1.5597e-22,3.854e-22,6.3864e-22,9.0265e-22,1.4007e-21,2.0266e-21,3.3849e-21,4.2065e-21,7.8907e-21,2.3565e-20,3.8152e-20,8.166e-20,3.6798e-19,4.276e-19,7.5975e-19,1.0649e-18,2.8578e-18,1.5494e-17,2.4385e-17,8.4551e-17,2.2556e-16,3.8329e-16,9.6398e-16,1.0896e-15,1.2207e-15,2.1633e-15,2.9791e-15,2.9995e-15,3.9041e-15,4.7634e-15,6.6746e-15,6.8647e-15,6.9498e-15,7.4454e-15,8.9923e-15,1.2286e-14,1.4447e-14,3.0301e-14,3.0342e-14,7.3211e-14,7.4059e-14,8.9274e-14,1.0072e-13,1.0884e-13,1.4004e-13,1.8176e-13,4.1217e-13,4.6292e-13,6.7165e-13,3.2944e-12,5.3003e-12,6.2133e-12,1.64e-11,1.8399e-11,2.0899e-11,5.4572e-11,6.2455e-11,9.3061e-11,1.093e-10,1.1551e-10,1.2846e-10,2.5479e-10,5.1044e-10,5.4792e-10,6.5799e-10,9.0878e-10,2.3776e-09,2.479e-09,2.6499e-09,1.2777e-08,3.522e-08,5.347e-08,6.3718e-08,1.0298e-07,1.2973e-07,1.4494e-07,2.1893e-07,4.7175e-07,7.0781e-07,7.6873e-07,8.3613e-07,8.4684e-07,1.0189e-06,4.6794e-06,6.0597e-06,6.412e-06,7.3364e-06,1.0652e-05,1.2767e-05,2.1987e-05,2.3539e-05,2.584e-05,2.7012e-05,3.1062e-05,3.8461e-05,4.2426e-05,4.5881e-05,5.9723e-05,6.567e-05,8.7504e-05,9.4261e-05,0.00011852,0.00012541,0.00013638,0.00013694,0.00014567,0.00017342,0.00024805,0.00024981,0.00033448,0.00038985,0.00044487,0.00089344,0.0011068,0.0011303,0.0018953,0.0021295,0.0021565,0.0027777,0.0027952,0.0034368,0.0045096,0.006459,0.0068404,0.0078334,0.010201,0.011406,0.012592,0.013984,0.018886,0.021968,0.022001,0.023758,0.026637,0.02712,0.031656,0.033587,0.035398,0.040729,0.042261,0.045425,0.049091,0.056692,0.064196,0.096765,0.10111,0.1061,0.1152,0.12819,0.12983,0.15121,0.15249,0.15924,0.16776,0.18019,0.37851,0.39626,0.40469,0.42027,0.42627,0.44463,0.51364,0.52319,0.54003,0.55936,0.57214,0.63197,0.63693,0.69039,0.75032,0.79908,0.80311,0.85262,0.89171,0.89388,0.90923,0.93762,0.9382,0.93948,0.96701,0.96922,0.98104,0.98584,0.99409,0.99572,0.9999,1,0.99676,0.9948 1,1.8972e-42,2.5576e-42,3.0179e-42,5.3333e-42,1.0969e-41,1.1155e-41,1.3498e-41,2.9062e-41,1.4379e-40,1.9326e-40,2.1727e-40,2.1818e-40,3.4483e-40,7.7348e-40,8.5968e-40,1.4901e-39,7.9842e-39,4.0092e-38,4.9613e-38,1.3367e-37,2.352e-37,3.6968e-37,4.3504e-37,7.9182e-37,8.2113e-37,1.452e-36,3.374e-36,7.0592e-36,9.6346e-36,3.9095e-35,4.1365e-35,1.2811e-34,2.4302e-34,2.873e-34,5.8823e-34,8.8382e-34,8.8993e-34,1.103e-33,2.5656e-32,5.6112e-31,1.1554e-30,1.1813e-30,1.1841e-30,2.5921e-30,9.2714e-30,1.1174e-29,1.2675e-29,9.3155e-29,1.1687e-28,1.3198e-28,9.5878e-28,4.6461e-27,1.2184e-26,2.3039e-26,4.9554e-26,7.9883e-25,2.0909e-24,2.3456e-24,8.5898e-24,3.6266e-23,6.9151e-23,6.9319e-23,1.7254e-22,2.871e-22,4.0693e-22,6.3372e-22,9.1971e-22,1.5427e-21,1.9206e-21,3.6217e-21,1.0916e-20,1.7746e-20,3.8231e-20,1.7454e-19,2.0309e-19,3.6268e-19,5.0986e-19,1.3804e-18,7.5993e-18,1.201e-17,4.2127e-17,1.1343e-16,1.9372e-16,4.9156e-16,5.563e-16,6.2389e-16,1.1119e-15,1.536e-15,1.5466e-15,2.0183e-15,2.4674e-15,3.469e-15,3.5688e-15,3.6135e-15,3.8738e-15,4.6875e-15,6.4247e-15,7.5668e-15,1.599e-14,1.6013e-14,3.8988e-14,3.9444e-14,4.764e-14,5.3814e-14,5.8203e-14,7.5079e-14,9.7716e-14,2.2352e-13,2.5135e-13,3.6615e-13,1.8274e-12,2.9556e-12,3.471e-12,9.2628e-12,1.0406e-11,1.1837e-11,3.1255e-11,3.5826e-11,5.3635e-11,6.3113e-11,6.6744e-11,7.4325e-11,1.4863e-10,3.0031e-10,3.2264e-10,3.8833e-10,5.385e-10,1.4261e-09,1.4877e-09,1.5916e-09,7.8341e-09,2.1893e-08,3.343e-08,3.9935e-08,6.4982e-08,8.2129e-08,9.1902e-08,1.3965e-07,3.0435e-07,4.5944e-07,4.996e-07,5.441e-07,5.5118e-07,6.6505e-07,3.1287e-06,4.0688e-06,4.3093e-06,4.9416e-06,7.2197e-06,8.6796e-06,1.5088e-05,1.6173e-05,1.7783e-05,1.8603e-05,2.1446e-05,2.6655e-05,2.9455e-05,3.1898e-05,4.1721e-05,4.5955e-05,6.156e-05,6.6407e-05,8.3856e-05,8.8831e-05,9.6752e-05,9.7158e-05,0.00010348,0.0001236,0.00017803,0.00017932,0.0002415,0.00028236,0.00032307,0.00065841,0.00081946,0.00083721,0.0014201,0.0015999,0.0016206,0.0020998,0.0021133,0.0026112,0.0034489,0.0049842,0.0052862,0.0060748,0.0079659,0.0089338,0.0098891,0.011013,0.015,0.017525,0.017552,0.018996,0.02137,0.02177,0.025531,0.027137,0.028647,0.033108,0.034394,0.037054,0.040147,0.046585,0.052975,0.081032,0.084812,0.08916,0.097114,0.10852,0.10996,0.12886,0.13,0.136,0.14359,0.15471,0.33719,0.35395,0.36193,0.37673,0.38244,0.39997,0.46649,0.47578,0.49222,0.51115,0.52373,0.58311,0.58808,0.64203,0.70357,0.75463,0.7589,0.81205,0.85517,0.85761,0.87497,0.90793,0.90862,0.91014,0.94397,0.9468,0.96256,0.96936,0.9822,0.98511,0.99553,0.99676,1,0.99977 1,1.4072e-42,1.8978e-42,2.24e-42,3.962e-42,8.1579e-42,8.2961e-42,1.0042e-41,2.1647e-41,1.0738e-40,1.4438e-40,1.6235e-40,1.6303e-40,2.5786e-40,5.7915e-40,6.438e-40,1.1169e-39,6.0008e-39,3.0212e-38,3.74e-38,1.0093e-37,1.7776e-37,2.7961e-37,3.2913e-37,5.9965e-37,6.2188e-37,1.1007e-36,2.5614e-36,5.3657e-36,7.3271e-36,2.9803e-35,3.1536e-35,9.7859e-35,1.8584e-34,2.1977e-34,4.5052e-34,6.7739e-34,6.8208e-34,8.457e-34,1.9781e-32,4.3504e-31,8.9698e-31,9.1712e-31,9.1933e-31,2.0153e-30,7.2255e-30,8.7111e-30,9.8836e-30,7.2914e-29,9.1516e-29,1.0337e-28,7.5381e-28,3.6641e-27,9.6266e-27,1.8227e-26,3.9263e-26,6.365e-25,1.6693e-24,1.8731e-24,6.878e-24,2.9127e-23,5.5615e-23,5.575e-23,1.3904e-22,2.316e-22,3.2852e-22,5.1211e-22,7.4382e-22,1.2491e-21,1.5558e-21,2.9379e-21,8.8769e-21,1.4447e-20,3.1178e-20,1.4284e-19,1.6626e-19,2.9731e-19,4.183e-19,1.1351e-18,6.2749e-18,9.9282e-18,3.4931e-17,9.4286e-17,1.6125e-16,4.1014e-16,4.643e-16,5.2086e-16,9.2965e-16,1.2853e-15,1.2942e-15,1.6901e-15,2.0673e-15,2.9091e-15,2.993e-15,3.0306e-15,3.2495e-15,3.9341e-15,5.3966e-15,6.3587e-15,1.3464e-14,1.3483e-14,3.2909e-14,3.3295e-14,4.0234e-14,4.5463e-14,4.9182e-14,6.3487e-14,8.2689e-14,1.8959e-13,2.1326e-13,3.11e-13,1.5594e-12,2.5257e-12,2.9675e-12,7.9425e-12,8.9257e-12,1.0157e-11,2.69e-11,3.0847e-11,4.6239e-11,5.4438e-11,5.758e-11,6.4141e-11,1.2855e-10,2.6032e-10,2.7974e-10,3.3691e-10,4.6769e-10,1.2426e-09,1.2965e-09,1.3873e-09,6.8664e-09,1.9259e-08,2.9454e-08,3.5208e-08,5.7394e-08,7.2603e-08,8.1277e-08,1.237e-07,2.7041e-07,4.0887e-07,4.4476e-07,4.8454e-07,4.9087e-07,5.9273e-07,2.8065e-06,3.6538e-06,3.8708e-06,4.4414e-06,6.4997e-06,7.8204e-06,1.3629e-05,1.4613e-05,1.6075e-05,1.682e-05,1.9403e-05,2.414e-05,2.6688e-05,2.8913e-05,3.7865e-05,4.1727e-05,5.5976e-05,6.0405e-05,7.6366e-05,8.0919e-05,8.8173e-05,8.8545e-05,9.4333e-05,0.00011278,0.00016275,0.00016393,0.00022113,0.00025875,0.00029627,0.00060616,0.00075536,0.00077182,0.0013133,0.0014805,0.0014998,0.0019464,0.001959,0.0024237,0.0032068,0.0046455,0.0049289,0.0056694,0.0074482,0.0083598,0.0092604,0.010321,0.014089,0.01648,0.016505,0.017874,0.020126,0.020506,0.024078,0.025606,0.027042,0.03129,0.032515,0.035053,0.038004,0.044155,0.050268,0.077194,0.08083,0.085015,0.092679,0.10368,0.10507,0.12334,0.12444,0.13024,0.13759,0.14837,0.32657,0.34305,0.35091,0.36548,0.3711,0.38838,0.45414,0.46334,0.47964,0.49844,0.51093,0.57007,0.57504,0.62899,0.69081,0.74236,0.74668,0.80065,0.84473,0.84723,0.86508,0.89917,0.89988,0.90146,0.93687,0.93986,0.95663,0.96394,0.97797,0.98122,0.99327,0.9948,0.99977,1 ================================================ FILE: bayesian_ml/3/X_set3.csv ================================================ 1,1,0.99878,0.99866,0.99778,0.99695,0.99567,0.99253,0.98174,0.97249,0.97091,0.96204,0.96049,0.95403,0.93645,0.93041,0.92607,0.90594,0.90227,0.89814,0.88375,0.88216,0.88124,0.86966,0.86263,0.8624,0.84851,0.84722,0.84076,0.83991,0.83907,0.79269,0.74521,0.7408,0.72629,0.71319,0.70295,0.6907,0.67638,0.65096,0.6369,0.61396,0.58508,0.58242,0.57675,0.57153,0.54442,0.54438,0.4808,0.47617,0.47361,0.45509,0.45374,0.41823,0.40461,0.399,0.38681,0.37915,0.36619,0.36221,0.3324,0.31469,0.26265,0.24937,0.24502,0.23737,0.21715,0.21315,0.20964,0.1937,0.17954,0.17448,0.17042,0.15627,0.13738,0.11937,0.1083,0.10608,0.087816,0.082114,0.079556,0.078442,0.074055,0.058031,0.057566,0.055103,0.051372,0.050664,0.04576,0.034257,0.034124,0.031372,0.030431,0.021301,0.01942,0.019287,0.01774,0.015818,0.015782,0.015636,0.014578,0.014569,0.013665,0.013329,0.0092646,0.0078612,0.0078173,0.0064649,0.0061403,0.0056671,0.005449,0.005324,0.0051887,0.0051453,0.005031,0.0045936,0.004545,0.0044464,0.004367,0.0038082,0.0032556,0.0026528,0.0024537,0.002077,0.0017199,0.0015873,0.0015227,0.00095338,0.0009022,0.00086623,0.00079881,0.00072016,0.00065792,0.00061111,0.00060312,0.00059816,0.00054469,0.00042472,0.00041695,0.00037762,0.00032349,0.00029683,0.0002927,0.0001774,0.00017644,0.00015954,0.00013081,0.00012614,0.00011007,0.00010657,8.4876e-05,7.3061e-05,5.1746e-05,5.1317e-05,3.4344e-05,3.279e-05,3.2308e-05,2.4775e-05,2.4358e-05,2.2116e-05,1.9462e-05,1.8698e-05,1.8139e-05,1.6088e-05,1.577e-05,1.5567e-05,1.4145e-05,1.3677e-05,1.3558e-05,1.2517e-05,1.2162e-05,1.0364e-05,7.9299e-06,7.5582e-06,7.4621e-06,6.6117e-06,6.2881e-06,5.1219e-06,3.5603e-06,3.1778e-06,2.6522e-06,2.4808e-06,2.0595e-06,1.7094e-06,1.6835e-06,1.6637e-06,1.6614e-06,1.5722e-06,1.5648e-06,1.3153e-06,1.2141e-06,1.0438e-06,1.0368e-06,9.952e-07,7.6429e-07,7.5841e-07,6.6831e-07,5.7841e-07,4.4618e-07,4.3114e-07,3.9086e-07,3.8235e-07,3.6165e-07,3.2938e-07,2.8529e-07,2.8417e-07,2.0467e-07,1.4035e-07,1.348e-07,1.2891e-07,1.2713e-07,1.0107e-07,8.7695e-08,5.4017e-08,5.2654e-08,5.0008e-08,4.5836e-08,3.311e-08,2.3526e-08,1.6137e-08,1.4398e-08,1.3449e-08,1.1306e-08,7.9467e-09,6.7997e-09,5.5505e-09,4.056e-09,3.0886e-09,2.94e-09,1.7294e-09,1.612e-09,1.5711e-09,1.3864e-09,1.319e-09,8.844e-10,7.4431e-10,7.0803e-10,7.0444e-10,6.3421e-10,5.5029e-10,5.1518e-10,5.0027e-10,2.982e-10,2.9801e-10,1.8615e-10,1.0815e-10,6.5179e-11,4.0719e-11,3.3185e-11,3.1449e-11,2.7731e-11,2.4838e-11,1.9146e-11,1.8603e-11,1.1229e-11,9.8784e-12,7.6361e-12,5.5384e-12,4.5551e-12,4.4554e-12,3.7989e-12,3.4131e-12,2.6218e-12,1.7677e-12,1.7033e-12,1.4313e-12,1.0868e-12,8.6828e-13,8.592e-13,3.9389e-13,3.4647e-13,3.2575e-13,2.7804e-13,2.5606e-13,2.2485e-13,1.8273e-13,1.6804e-13,1.4948e-13,1.2378e-13,9.69e-14,7.6669e-14,7.4869e-14,5.6195e-14,4.6502e-14,3.9342e-14,2.6866e-14,2.2558e-14,2.1168e-14,1.6885e-14,1.6655e-14,1.508e-14,1.4433e-14,8.0582e-15,6.9348e-15,6.5414e-15,5.0081e-15,4.2874e-15,4.1874e-15,2.9098e-15,1.4405e-15,1.1673e-15,1.0472e-15,8.128e-16,7.9523e-16,5.9754e-16,5.7911e-16,4.0004e-16,3.2164e-16,2.0726e-16,1.9916e-16,1.9184e-16,1.8787e-16,1.7545e-16,1.6592e-16,1.6036e-16,1.1191e-16,1.0378e-16,5.0598e-17,3.9731e-17,3.3836e-17,3.1749e-17,1.869e-17,1.8517e-17,1.5538e-17,1.4314e-17,9.4661e-18,9.3428e-18,9.0576e-18,6.6499e-18,6.1039e-18,5.9209e-18,5.3965e-18,4.7865e-18,4.2727e-18,4.0277e-18,2.2498e-18,2.2039e-18,1.6224e-18,1.0224e-18,6.6077e-19,3.5898e-19,3.5587e-19,2.863e-19,2.1757e-19,1.5125e-19,1.5064e-19,1.3278e-19,7.3201e-20,6.3717e-20,6.2751e-20,3.0926e-20,2.6461e-20,2.4184e-20,1.8324e-20,1.3909e-20,8.357e-21,7.7146e-21,5.2401e-21,2.1945e-21,2.169e-21,2.0192e-21,1.7442e-21,1.5548e-21,1.3491e-21,1.1409e-21,2.372e-22,1.5657e-22,8.2614e-23,5.1255e-23,5.0061e-23,4.7414e-23,2.3199e-23,1.9624e-23,1.9354e-23,9.7314e-24,3.0222e-24,2.9114e-24,2.0588e-24,1.9162e-24,8.6122e-25,6.8792e-25,4.2075e-25,3.2536e-25,2.4475e-25,2.3153e-25,1.6499e-25,1.5541e-25,1.5106e-25,6.975e-26,5.5314e-26,5.0167e-26,3.651e-26,3.3026e-26,2.084e-26,1.8759e-26,1.5176e-26,8.9379e-27,8.8933e-27,6.891e-27,6.3218e-27,6.321e-27,3.5959e-27,3.5322e-27,2.7977e-27,2.1865e-27,1.2756e-27,7.8363e-28,5.5178e-28,3.1528e-28,1.8751e-28,9.5302e-29,9.2709e-29,5.4968e-29,3.3195e-29,2.4639e-29,1.1061e-29,8.7379e-30,5.4087e-30,4.0696e-30,2.2435e-30,2.1064e-30,1.8494e-30,1.3684e-30,7.2718e-31,3.7872e-31,2.6776e-31,1.8929e-31,1.5791e-31,1.5393e-31,1.1074e-31,7.5623e-32,2.3463e-32,1.7157e-32,1.4437e-32,9.855e-33,9.829e-33,6.7433e-33,6.4341e-33,4.9803e-33,4.0531e-33,2.0218e-33,1.8278e-33,1.0595e-33,6.3687e-34,1.1952e-34,8.712e-35,7.4769e-35,5.005e-35,3.4315e-35,2.9724e-35,2.2303e-35,1.8139e-35,1.4033e-35,9.1763e-36,9.1555e-36,4.2539e-36,3.4684e-36,3.3237e-36,3.249e-36,1.4851e-36,1.4589e-36,1.3479e-36,1.2699e-36,1.0881e-36,8.4213e-37,6.6906e-37,2.4021e-37,2.6632e-38,1.3775e-38,1.2994e-38,1.2381e-38,1.059e-38,9.7075e-39,4.2403e-39,2.4516e-39,1.6438e-39,1.3138e-39,8.2195e-40,5.512e-40,5.1167e-40,2.914e-40,2.1171e-40,1.4323e-40,7.6306e-41,3.3184e-41,3.1462e-41,2.3716e-41,1.9485e-41,1.7839e-41,6.9357e-42,5.3514e-42,1.6377e-42,1.178e-42,6.5839e-43,4.8188e-43,4.3549e-43,2.5069e-43,2.3339e-43,1.9958e-43,1.4174e-43,7.3672e-44 1,0.99878,1,1,0.99985,0.99958,0.99904,0.99733,0.98988,0.98269,0.98142,0.97415,0.97285,0.9674,0.95218,0.94685,0.94299,0.92489,0.92156,0.91779,0.90459,0.90312,0.90227,0.89154,0.885,0.88478,0.87178,0.87057,0.86449,0.86368,0.8629,0.8188,0.773,0.76871,0.75459,0.74181,0.73178,0.71977,0.70567,0.68058,0.66664,0.64383,0.61498,0.61232,0.60665,0.60141,0.57415,0.57411,0.50975,0.50504,0.50243,0.48356,0.48218,0.44584,0.43184,0.42607,0.41351,0.40562,0.39223,0.38812,0.35721,0.33879,0.28437,0.2704,0.26583,0.25776,0.23641,0.23218,0.22847,0.21155,0.19648,0.1911,0.18676,0.17164,0.15138,0.13199,0.12002,0.11762,0.09779,0.091576,0.088786,0.087569,0.082775,0.0652,0.064688,0.061975,0.057862,0.057081,0.05166,0.038893,0.038744,0.035676,0.034626,0.024395,0.022277,0.022128,0.020382,0.018211,0.01817,0.018004,0.016806,0.016795,0.015771,0.015389,0.010761,0.0091548,0.0091044,0.0075518,0.0071784,0.0066334,0.006382,0.0062377,0.0060816,0.0060315,0.0058995,0.005394,0.0053378,0.0052237,0.0051318,0.0044843,0.0038424,0.0031402,0.0029078,0.0024672,0.0020484,0.0018926,0.0018165,0.0011445,0.0010839,0.0010412,0.00096122,0.00086774,0.00079368,0.00073791,0.00072838,0.00072246,0.00065867,0.00051521,0.0005059,0.00045875,0.00039375,0.00036167,0.0003567,0.0002175,0.00021634,0.00019584,0.00016095,0.00015527,0.0001357,0.00013144,0.00010496,9.05e-05,6.4345e-05,6.3818e-05,4.2899e-05,4.0978e-05,4.0383e-05,3.1056e-05,3.0538e-05,2.7756e-05,2.4459e-05,2.3508e-05,2.2813e-05,2.0259e-05,1.9863e-05,1.9609e-05,1.7836e-05,1.7253e-05,1.7103e-05,1.5804e-05,1.536e-05,1.311e-05,1.0059e-05,9.5923e-06,9.4715e-06,8.4024e-06,7.9952e-06,6.5258e-06,4.5526e-06,4.068e-06,3.4011e-06,3.1835e-06,2.6476e-06,2.2014e-06,2.1684e-06,2.1431e-06,2.1402e-06,2.0263e-06,2.017e-06,1.6981e-06,1.5686e-06,1.3506e-06,1.3416e-06,1.2883e-06,9.9179e-07,9.8423e-07,8.6832e-07,7.5252e-07,5.8186e-07,5.6243e-07,5.1033e-07,4.9933e-07,4.7254e-07,4.3074e-07,3.7355e-07,3.721e-07,2.6879e-07,1.8493e-07,1.7769e-07,1.6999e-07,1.6766e-07,1.3356e-07,1.1603e-07,7.1767e-08,6.9971e-08,6.6484e-08,6.0983e-08,4.4173e-08,3.1477e-08,2.1657e-08,1.9341e-08,1.8077e-08,1.5218e-08,1.0727e-08,9.1903e-09,7.5142e-09,5.5048e-09,4.2008e-09,4.0003e-09,2.3628e-09,2.2036e-09,2.1481e-09,1.8975e-09,1.8059e-09,1.2146e-09,1.0235e-09,9.7403e-10,9.6913e-10,8.7321e-10,7.5847e-10,7.1044e-10,6.9003e-10,4.1291e-10,4.1264e-10,2.5865e-10,1.5087e-10,9.1262e-11,5.7207e-11,4.669e-11,4.4264e-11,3.9065e-11,3.5018e-11,2.7042e-11,2.6281e-11,1.5919e-11,1.4017e-11,1.0855e-11,7.8901e-12,6.498e-12,6.3567e-12,5.426e-12,4.8784e-12,3.7541e-12,2.5379e-12,2.4461e-12,2.0578e-12,1.5653e-12,1.2525e-12,1.2395e-12,5.7114e-13,5.0281e-13,4.7293e-13,4.0408e-13,3.7233e-13,3.2722e-13,2.6629e-13,2.45e-13,2.1811e-13,1.8082e-13,1.4178e-13,1.1235e-13,1.0973e-13,8.2509e-14,6.8358e-14,5.7893e-14,3.963e-14,3.3311e-14,3.127e-14,2.4978e-14,2.464e-14,2.2324e-14,2.1372e-14,1.1975e-14,1.0315e-14,9.7335e-15,7.4641e-15,6.396e-15,6.2477e-15,4.3511e-15,2.163e-15,1.755e-15,1.5755e-15,1.2247e-15,1.1984e-15,9.0198e-16,8.7432e-16,6.0529e-16,4.8727e-16,3.1479e-16,3.0256e-16,2.9151e-16,2.8551e-16,2.6674e-16,2.5233e-16,2.4393e-16,1.7058e-16,1.5825e-16,7.7477e-17,6.0921e-17,5.193e-17,4.8744e-17,2.878e-17,2.8515e-17,2.3952e-17,2.2074e-17,1.4632e-17,1.4443e-17,1.4004e-17,1.0299e-17,9.4581e-18,9.1761e-18,8.3676e-18,7.4267e-18,6.6337e-18,6.2553e-18,3.5053e-18,3.4342e-18,2.5323e-18,1.5998e-18,1.0364e-18,5.6489e-19,5.6002e-19,4.5106e-19,3.4329e-19,2.391e-19,2.3814e-19,2.1005e-19,1.1616e-19,1.0119e-19,9.9662e-20,4.9298e-20,4.2215e-20,3.8601e-20,2.929e-20,2.2264e-20,1.3412e-20,1.2386e-20,8.43e-21,3.546e-21,3.505e-21,3.2641e-21,2.8217e-21,2.5167e-21,2.1853e-21,1.8496e-21,3.8757e-22,2.5636e-22,1.3569e-22,8.4379e-23,8.2423e-23,7.8086e-23,3.8339e-23,3.2458e-23,3.2012e-23,1.615e-23,5.0434e-24,4.8595e-24,3.442e-24,3.2047e-24,1.4457e-24,1.156e-24,7.0868e-25,5.4866e-25,4.1328e-25,3.9106e-25,2.7911e-25,2.6298e-25,2.5564e-25,1.1846e-25,9.4044e-26,8.533e-26,6.219e-26,5.6282e-26,3.559e-26,3.205e-26,2.5954e-26,1.5322e-26,1.5246e-26,1.1827e-26,1.0854e-26,1.0853e-26,6.1896e-27,6.0805e-27,4.8211e-27,3.7721e-27,2.2059e-27,1.358e-27,9.5772e-28,5.4858e-28,3.27e-28,1.6669e-28,1.6217e-28,9.6371e-29,5.8325e-29,4.3348e-29,1.9526e-29,1.5441e-29,9.5775e-30,7.2149e-30,3.9875e-30,3.7447e-30,3.2897e-30,2.4373e-30,1.2986e-30,6.7816e-31,4.8016e-31,3.3993e-31,2.838e-31,2.7667e-31,1.993e-31,1.3632e-31,4.2499e-32,3.1117e-32,2.6202e-32,1.7914e-32,1.7867e-32,1.2277e-32,1.1716e-32,9.078e-33,7.3941e-33,3.6987e-33,3.3452e-33,1.9434e-33,1.1705e-33,2.2112e-34,1.6139e-34,1.3859e-34,9.2917e-35,6.38e-35,5.5294e-35,4.1536e-35,3.3809e-35,2.6182e-35,1.7149e-35,1.711e-35,7.9735e-36,6.5063e-36,6.2358e-36,6.0963e-36,2.795e-36,2.7458e-36,2.5377e-36,2.3914e-36,2.0503e-36,1.5884e-36,1.263e-36,4.5524e-37,5.0892e-38,2.6388e-38,2.4897e-38,2.3728e-38,2.0307e-38,1.8621e-38,8.1587e-39,4.7267e-39,3.174e-39,2.5388e-39,1.5911e-39,1.0686e-39,9.9221e-40,5.6624e-40,4.1188e-40,2.7905e-40,1.49e-40,6.4994e-41,6.1632e-41,4.6505e-41,3.8237e-41,3.5017e-41,1.3661e-41,1.055e-41,3.2424e-42,2.3348e-42,1.3077e-42,9.5817e-43,8.6625e-43,4.9961e-43,4.6526e-43,3.9808e-43,2.8306e-43,1.4746e-43 1,0.99866,1,1,0.99989,0.99965,0.99914,0.99751,0.99022,0.98314,0.98189,0.9747,0.97341,0.96801,0.95291,0.94762,0.94379,0.92579,0.92248,0.91873,0.90559,0.90412,0.90328,0.8926,0.88607,0.88586,0.8729,0.8717,0.86564,0.86484,0.86405,0.82008,0.77437,0.77009,0.75599,0.74322,0.73321,0.72121,0.70713,0.68205,0.66812,0.64532,0.61648,0.61382,0.60815,0.6029,0.57565,0.57561,0.51122,0.5065,0.50389,0.485,0.48362,0.44724,0.43322,0.42744,0.41487,0.40697,0.39356,0.38944,0.35848,0.34002,0.28548,0.27149,0.2669,0.25881,0.2374,0.23316,0.22944,0.21248,0.19736,0.19196,0.18761,0.17243,0.15211,0.13265,0.12064,0.11822,0.098312,0.092072,0.08927,0.088048,0.083233,0.065577,0.065063,0.062337,0.058204,0.057419,0.051972,0.039139,0.038989,0.035904,0.034849,0.02456,0.022429,0.022279,0.020523,0.018338,0.018297,0.01813,0.016925,0.016914,0.015883,0.0155,0.010841,0.0092244,0.0091736,0.0076104,0.0072344,0.0066855,0.0064323,0.006287,0.0061298,0.0060793,0.0059464,0.0054372,0.0053806,0.0052657,0.0051731,0.0045209,0.0038742,0.0031667,0.0029324,0.0024884,0.0020663,0.0019092,0.0018325,0.001155,0.0010938,0.0010508,0.00097011,0.00087583,0.00080112,0.00074486,0.00073525,0.00072928,0.00066493,0.00052018,0.0005108,0.00046322,0.00039762,0.00036525,0.00036023,0.00021971,0.00021855,0.00019785,0.00016262,0.00015688,0.00013713,0.00013282,0.00010607,9.147e-05,6.5048e-05,6.4514e-05,4.3377e-05,4.1436e-05,4.0834e-05,3.1407e-05,3.0884e-05,2.8072e-05,2.4739e-05,2.3778e-05,2.3075e-05,2.0493e-05,2.0093e-05,1.9836e-05,1.8044e-05,1.7453e-05,1.7303e-05,1.5989e-05,1.554e-05,1.3265e-05,1.0179e-05,9.7069e-06,9.5848e-06,8.5033e-06,8.0915e-06,6.6051e-06,4.6087e-06,4.1183e-06,3.4435e-06,3.2233e-06,2.6809e-06,2.2294e-06,2.1959e-06,2.1704e-06,2.1674e-06,2.0521e-06,2.0426e-06,1.7199e-06,1.5888e-06,1.3681e-06,1.3589e-06,1.3049e-06,1.0048e-06,9.971e-07,8.7973e-07,7.6245e-07,5.8962e-07,5.6993e-07,5.1717e-07,5.0602e-07,4.7888e-07,4.3654e-07,3.7861e-07,3.7714e-07,2.7247e-07,1.8749e-07,1.8015e-07,1.7235e-07,1.6999e-07,1.3542e-07,1.1766e-07,7.2791e-08,7.0971e-08,6.7436e-08,6.1857e-08,4.4813e-08,3.1937e-08,2.1977e-08,1.9628e-08,1.8346e-08,1.5445e-08,1.0889e-08,9.3295e-09,7.6286e-09,5.5893e-09,4.2657e-09,4.0622e-09,2.3999e-09,2.2383e-09,2.1819e-09,1.9274e-09,1.8345e-09,1.234e-09,1.04e-09,9.8966e-10,9.8468e-10,8.8725e-10,7.7071e-10,7.2192e-10,7.0119e-10,4.1967e-10,4.194e-10,2.6293e-10,1.534e-10,9.2808e-11,5.8186e-11,4.7492e-11,4.5026e-11,3.9739e-11,3.5623e-11,2.7512e-11,2.6738e-11,1.6199e-11,1.4264e-11,1.1047e-11,8.0308e-12,6.6143e-12,6.4705e-12,5.5234e-12,4.9662e-12,3.8219e-12,2.5841e-12,2.4907e-12,2.0954e-12,1.5941e-12,1.2756e-12,1.2624e-12,5.8184e-13,5.1224e-13,4.8182e-13,4.1169e-13,3.7935e-13,3.3341e-13,2.7134e-13,2.4966e-13,2.2226e-13,1.8428e-13,1.445e-13,1.1451e-13,1.1184e-13,8.4107e-14,6.9686e-14,5.9021e-14,4.0407e-14,3.3966e-14,3.1886e-14,2.5471e-14,2.5127e-14,2.2766e-14,2.1795e-14,1.2214e-14,1.0522e-14,9.9286e-15,7.6143e-15,6.5251e-15,6.3738e-15,4.4394e-15,2.2074e-15,1.7911e-15,1.6079e-15,1.25e-15,1.2232e-15,9.2073e-16,8.9249e-16,6.1794e-16,4.9749e-16,3.2143e-16,3.0895e-16,2.9767e-16,2.9154e-16,2.7238e-16,2.5767e-16,2.4909e-16,1.7421e-16,1.6163e-16,7.9144e-17,6.2235e-17,5.3053e-17,4.9799e-17,2.9407e-17,2.9137e-17,2.4475e-17,2.2557e-17,1.4954e-17,1.476e-17,1.4312e-17,1.0527e-17,9.6673e-18,9.3792e-18,8.553e-18,7.5915e-18,6.7811e-18,6.3944e-18,3.5838e-18,3.5112e-18,2.5892e-18,1.636e-18,1.06e-18,5.7783e-19,5.7285e-19,4.6143e-19,3.512e-19,2.4464e-19,2.4365e-19,2.1492e-19,1.1888e-19,1.0355e-19,1.0199e-19,5.046e-20,4.3212e-20,3.9513e-20,2.9984e-20,2.2794e-20,1.3733e-20,1.2683e-20,8.6326e-21,3.6321e-21,3.5901e-21,3.3434e-21,2.8903e-21,2.578e-21,2.2387e-21,1.8948e-21,3.972e-22,2.6275e-22,1.3909e-22,8.6508e-23,8.4502e-23,8.0057e-23,3.9314e-23,3.3284e-23,3.2827e-23,1.6564e-23,5.1742e-24,4.9855e-24,3.5315e-24,3.2882e-24,1.4836e-24,1.1864e-24,7.2739e-25,5.6318e-25,4.2424e-25,4.0144e-25,2.8654e-25,2.6998e-25,2.6245e-25,1.2164e-25,9.6572e-26,8.7626e-26,6.3868e-26,5.7802e-26,3.6554e-26,3.292e-26,2.666e-26,1.5741e-26,1.5662e-26,1.2151e-26,1.1152e-26,1.115e-26,6.3599e-27,6.2478e-27,4.954e-27,3.8763e-27,2.2671e-27,1.3959e-27,9.8448e-28,5.6398e-28,3.3622e-28,1.7141e-28,1.6677e-28,9.9114e-29,5.9992e-29,4.4589e-29,2.0088e-29,1.5887e-29,9.855e-30,7.4244e-30,4.1038e-30,3.854e-30,3.3858e-30,2.5086e-30,1.3368e-30,6.982e-31,4.9438e-31,3.5003e-31,2.9224e-31,2.849e-31,2.0525e-31,1.404e-31,4.378e-32,3.2057e-32,2.6995e-32,1.8457e-32,1.8409e-32,1.265e-32,1.2072e-32,9.3547e-33,7.6197e-33,3.8121e-33,3.4479e-33,2.0032e-33,1.2067e-33,2.2803e-34,1.6644e-34,1.4293e-34,9.5836e-35,6.5809e-35,5.7038e-35,4.2848e-35,3.4879e-35,2.7012e-35,1.7694e-35,1.7654e-35,8.2279e-36,6.7142e-36,6.4351e-36,6.2912e-36,2.8848e-36,2.834e-36,2.6192e-36,2.4683e-36,2.1163e-36,1.6396e-36,1.3038e-36,4.7003e-37,5.2567e-38,2.726e-38,2.572e-38,2.4512e-38,2.0979e-38,1.9237e-38,8.4301e-39,4.8845e-39,3.2802e-39,2.6239e-39,1.6446e-39,1.1045e-39,1.0256e-39,5.8536e-40,4.2581e-40,2.8851e-40,1.5407e-40,6.7216e-41,6.374e-41,4.8098e-41,3.9548e-41,3.6218e-41,1.4132e-41,1.0914e-41,3.355e-42,2.4161e-42,1.3533e-42,9.9168e-43,8.9655e-43,5.1715e-43,4.8159e-43,4.1207e-43,2.9302e-43,1.5267e-43 1,0.99778,0.99985,0.99989,1,0.99993,0.99965,0.99845,0.99218,0.98574,0.98458,0.97788,0.97668,0.97159,0.95722,0.95215,0.94848,0.93112,0.92791,0.92428,0.91151,0.91009,0.90926,0.89885,0.89249,0.89228,0.87961,0.87843,0.8725,0.87171,0.87094,0.82771,0.78257,0.77833,0.76437,0.75171,0.74177,0.72986,0.71587,0.69092,0.67704,0.6543,0.62551,0.62284,0.61717,0.61193,0.58466,0.58462,0.52005,0.51532,0.51269,0.49371,0.49232,0.45571,0.4416,0.43577,0.4231,0.41512,0.4016,0.39744,0.36616,0.3475,0.29226,0.27806,0.27341,0.2652,0.24345,0.23913,0.23535,0.21809,0.2027,0.1972,0.19277,0.17729,0.15655,0.13666,0.12437,0.1219,0.1015,0.095104,0.092229,0.090975,0.086032,0.067889,0.06736,0.064555,0.060301,0.059493,0.053882,0.040646,0.040491,0.037306,0.036215,0.025573,0.023366,0.02321,0.021391,0.019125,0.019082,0.018909,0.017658,0.017647,0.016577,0.016179,0.011336,0.0096534,0.0096006,0.0079717,0.0075797,0.0070072,0.006743,0.0065915,0.0064274,0.0063747,0.006236,0.0057044,0.0056453,0.0055252,0.0054285,0.004747,0.0040708,0.0033303,0.003085,0.0026198,0.0021771,0.0020122,0.0019318,0.0012199,0.0011555,0.0011102,0.0010253,0.00092604,0.00084735,0.00078807,0.00077794,0.00077165,0.00070381,0.00055113,0.00054122,0.00049099,0.0004217,0.00038749,0.00038219,0.00023353,0.00023229,0.00021038,0.00017304,0.00016695,0.000146,0.00014143,0.00011303,9.7524e-05,6.9434e-05,6.8867e-05,4.6365e-05,4.4297e-05,4.3655e-05,3.3607e-05,3.3048e-05,3.0048e-05,2.6492e-05,2.5466e-05,2.4715e-05,2.1958e-05,2.1531e-05,2.1257e-05,1.9342e-05,1.8711e-05,1.855e-05,1.7145e-05,1.6666e-05,1.4233e-05,1.0931e-05,1.0425e-05,1.0295e-05,9.1365e-06,8.6954e-06,7.1024e-06,4.9611e-06,4.4348e-06,3.7101e-06,3.4735e-06,2.8906e-06,2.405e-06,2.3691e-06,2.3415e-06,2.3384e-06,2.2143e-06,2.2041e-06,1.8568e-06,1.7157e-06,1.4779e-06,1.4681e-06,1.4099e-06,1.0864e-06,1.0782e-06,9.5157e-07,8.2505e-07,6.3848e-07,6.1723e-07,5.6023e-07,5.4819e-07,5.1887e-07,4.7311e-07,4.1049e-07,4.089e-07,2.9567e-07,2.0367e-07,1.9572e-07,1.8726e-07,1.847e-07,1.4723e-07,1.2797e-07,7.9268e-08,7.729e-08,7.345e-08,6.7389e-08,4.8861e-08,3.4852e-08,2.4006e-08,2.1446e-08,2.0048e-08,1.6886e-08,1.1915e-08,1.0212e-08,8.3546e-09,6.1258e-09,4.6783e-09,4.4556e-09,2.6356e-09,2.4585e-09,2.3968e-09,2.1178e-09,2.0159e-09,1.3573e-09,1.1443e-09,1.0891e-09,1.0836e-09,9.7666e-10,8.4865e-10,7.9504e-10,7.7226e-10,4.6275e-10,4.6245e-10,2.9023e-10,1.6953e-10,1.0268e-10,6.444e-11,5.262e-11,4.9893e-11,4.4047e-11,3.9494e-11,3.0518e-11,2.9662e-11,1.7989e-11,1.5845e-11,1.2278e-11,8.9314e-12,7.3591e-12,7.1995e-12,6.1477e-12,5.5287e-12,4.2571e-12,2.8807e-12,2.7767e-12,2.3369e-12,1.7788e-12,1.424e-12,1.4093e-12,6.5056e-13,5.7289e-13,5.3892e-13,4.6063e-13,4.2451e-13,3.732e-13,3.0385e-13,2.7961e-13,2.4898e-13,2.0651e-13,1.6201e-13,1.2845e-13,1.2545e-13,9.4395e-14,7.8239e-14,6.6286e-14,4.5413e-14,3.8186e-14,3.5852e-14,2.8652e-14,2.8265e-14,2.5614e-14,2.4523e-14,1.3759e-14,1.1855e-14,1.1188e-14,8.5845e-15,7.3586e-15,7.1883e-15,5.01e-15,2.4943e-15,2.0247e-15,1.818e-15,1.4139e-15,1.3836e-15,1.042e-15,1.0101e-15,6.9984e-16,5.6365e-16,3.6446e-16,3.5033e-16,3.3756e-16,3.3063e-16,3.0893e-16,2.9228e-16,2.8256e-16,1.9775e-16,1.8348e-16,8.9958e-17,7.0769e-17,6.0343e-17,5.6649e-17,3.3482e-17,3.3175e-17,2.7876e-17,2.5695e-17,1.7046e-17,1.6825e-17,1.6316e-17,1.2006e-17,1.1028e-17,1.07e-17,9.7586e-18,8.6633e-18,7.74e-18,7.2993e-18,4.0949e-18,4.012e-18,2.9601e-18,1.8718e-18,1.2136e-18,6.6222e-19,6.5652e-19,5.2901e-19,4.0281e-19,2.8076e-19,2.7963e-19,2.467e-19,1.3658e-19,1.1901e-19,1.1721e-19,5.8056e-20,4.9728e-20,4.5479e-20,3.4526e-20,2.6258e-20,1.5833e-20,1.4624e-20,9.9595e-21,4.1959e-21,4.1475e-21,3.863e-21,3.3402e-21,2.9798e-21,2.5881e-21,2.1912e-21,4.6041e-22,3.0475e-22,1.6148e-22,1.005e-22,9.8175e-23,9.3019e-23,4.5727e-23,3.8723e-23,3.8192e-23,1.929e-23,6.0359e-24,5.8161e-24,4.122e-24,3.8383e-24,1.7338e-24,1.3869e-24,8.5091e-25,6.5905e-25,4.9666e-25,4.7e-25,3.3563e-25,3.1627e-25,3.0746e-25,1.4265e-25,1.1329e-25,1.0281e-25,7.4968e-26,6.7856e-26,4.294e-26,3.8677e-26,3.133e-26,1.8512e-26,1.842e-26,1.4295e-26,1.3121e-26,1.3119e-26,7.4888e-27,7.357e-27,5.8354e-27,4.5674e-27,2.6733e-27,1.647e-27,1.1621e-27,6.6625e-28,3.9746e-28,2.0282e-28,1.9733e-28,1.1736e-28,7.108e-29,5.2851e-29,2.3835e-29,1.8856e-29,1.1704e-29,8.8205e-30,4.8792e-30,4.5826e-30,4.0266e-30,2.9845e-30,1.5916e-30,8.3199e-31,5.8937e-31,4.1747e-31,3.4862e-31,3.3988e-31,2.4495e-31,1.6764e-31,5.235e-32,3.8347e-32,3.2298e-32,2.2094e-32,2.2036e-32,1.5149e-32,1.4458e-32,1.1207e-32,9.131e-33,4.5721e-33,4.1357e-33,2.4045e-33,1.4492e-33,2.7442e-34,2.0037e-34,1.721e-34,1.1545e-34,7.9314e-35,6.8754e-35,5.1667e-35,4.2068e-35,3.2589e-35,2.1358e-35,2.1309e-35,9.9408e-36,8.1139e-36,7.777e-36,7.6033e-36,3.4896e-36,3.4282e-36,3.1687e-36,2.9863e-36,2.5609e-36,1.9846e-36,1.5786e-36,5.6977e-37,6.3881e-38,3.3152e-38,3.1281e-38,2.9814e-38,2.5521e-38,2.3404e-38,1.0266e-38,5.9517e-39,3.9987e-39,3.1994e-39,2.0063e-39,1.3481e-39,1.2519e-39,7.1495e-40,5.2026e-40,3.5266e-40,1.8846e-40,8.2292e-41,7.8041e-41,5.8908e-41,4.8446e-41,4.4371e-41,1.7331e-41,1.3389e-41,4.1209e-42,2.9687e-42,1.6639e-42,1.2197e-42,1.1028e-42,6.3648e-43,5.9276e-43,5.0728e-43,3.6085e-43,1.8814e-43 1,0.99695,0.99958,0.99965,0.99993,1,0.99989,0.99902,0.99354,0.98759,0.9865,0.98019,0.97905,0.9742,0.96041,0.95551,0.95196,0.9351,0.93197,0.92843,0.91596,0.91456,0.91376,0.90356,0.89732,0.89711,0.88467,0.88351,0.87768,0.8769,0.87614,0.83351,0.78882,0.78462,0.77077,0.7582,0.74832,0.73648,0.72256,0.69771,0.68388,0.6612,0.63245,0.62979,0.62412,0.61888,0.5916,0.59156,0.52688,0.52213,0.5195,0.50044,0.49905,0.46228,0.44808,0.44223,0.42948,0.42145,0.40783,0.40365,0.37213,0.35331,0.29754,0.28319,0.27848,0.27018,0.24816,0.2438,0.23996,0.22248,0.20688,0.2013,0.19681,0.1811,0.16003,0.13981,0.12731,0.1248,0.10402,0.097491,0.094559,0.093281,0.088238,0.069712,0.069172,0.066306,0.061957,0.061131,0.055391,0.041839,0.04168,0.038416,0.037298,0.026377,0.02411,0.02395,0.02208,0.01975,0.019706,0.019528,0.018241,0.01823,0.017129,0.016719,0.011731,0.0099957,0.0099412,0.0082602,0.0078555,0.0072643,0.0069914,0.0068348,0.0066652,0.0066108,0.0064674,0.005918,0.0058569,0.0057328,0.0056328,0.004928,0.0042283,0.0034615,0.0032074,0.0027252,0.002266,0.002095,0.0020115,0.0012721,0.0012052,0.0011581,0.0010698,0.0009665,0.00088461,0.00082291,0.00081236,0.00080581,0.00073518,0.0005761,0.00056578,0.00051341,0.00044116,0.00040547,0.00039994,0.00024472,0.00024343,0.00022052,0.00018148,0.00017511,0.00015319,0.00014841,0.00011869,0.00010244,7.3e-05,7.2405e-05,4.8797e-05,4.6626e-05,4.5953e-05,3.5398e-05,3.4812e-05,3.1659e-05,2.7921e-05,2.6842e-05,2.6053e-05,2.3153e-05,2.2704e-05,2.2416e-05,2.0401e-05,1.9737e-05,1.9568e-05,1.809e-05,1.7585e-05,1.5024e-05,1.1546e-05,1.1013e-05,1.0875e-05,9.6544e-06,9.1894e-06,7.5095e-06,5.2498e-06,4.6941e-06,3.9287e-06,3.6787e-06,3.0626e-06,2.5492e-06,2.5112e-06,2.4821e-06,2.4787e-06,2.3475e-06,2.3367e-06,1.9692e-06,1.8199e-06,1.5682e-06,1.5578e-06,1.4962e-06,1.1536e-06,1.1448e-06,1.0107e-06,8.7658e-07,6.7874e-07,6.5619e-07,5.9572e-07,5.8294e-07,5.5182e-07,5.0326e-07,4.3678e-07,4.3509e-07,3.1483e-07,2.1703e-07,2.0857e-07,1.9958e-07,1.9686e-07,1.57e-07,1.3649e-07,8.463e-08,8.2523e-08,7.8431e-08,7.1972e-08,5.2217e-08,3.7271e-08,2.569e-08,2.2956e-08,2.1462e-08,1.8083e-08,1.2768e-08,1.0947e-08,8.9588e-09,6.5727e-09,5.022e-09,4.7834e-09,2.8322e-09,2.6423e-09,2.576e-09,2.2767e-09,2.1674e-09,1.4603e-09,1.2316e-09,1.1722e-09,1.1664e-09,1.0514e-09,9.1383e-10,8.562e-10,8.3172e-10,4.9882e-10,4.985e-10,3.1311e-10,1.8306e-10,1.1097e-10,6.9698e-11,5.6932e-11,5.3987e-11,4.7671e-11,4.2751e-11,3.3049e-11,3.2123e-11,1.9498e-11,1.7177e-11,1.3316e-11,9.6915e-12,7.9878e-12,7.8148e-12,6.6748e-12,6.0038e-12,4.6249e-12,3.1315e-12,3.0186e-12,2.5411e-12,1.9351e-12,1.5497e-12,1.5337e-12,7.0882e-13,6.2432e-13,5.8736e-13,5.0215e-13,4.6283e-13,4.0697e-13,3.3144e-13,3.0505e-13,2.7168e-13,2.254e-13,1.7689e-13,1.4029e-13,1.3703e-13,1.0315e-13,8.5518e-14,7.247e-14,4.9677e-14,4.1783e-14,3.9233e-14,3.1364e-14,3.0941e-14,2.8043e-14,2.685e-14,1.5077e-14,1.2994e-14,1.2264e-14,9.4132e-15,8.0707e-15,7.8842e-15,5.4979e-15,2.7399e-15,2.2247e-15,1.9978e-15,1.5544e-15,1.5211e-15,1.146e-15,1.111e-15,7.701e-16,6.2041e-16,4.0141e-16,3.8586e-16,3.7182e-16,3.6419e-16,3.4032e-16,3.22e-16,3.1131e-16,2.1797e-16,2.0227e-16,9.9263e-17,7.8114e-17,6.6621e-17,6.2547e-17,3.6994e-17,3.6655e-17,3.0807e-17,2.84e-17,1.885e-17,1.8607e-17,1.8044e-17,1.3284e-17,1.2202e-17,1.1839e-17,1.08e-17,9.5889e-18,8.5681e-18,8.0809e-18,4.5368e-18,4.4451e-18,3.2809e-18,2.0758e-18,1.3466e-18,7.3537e-19,7.2905e-19,5.8761e-19,4.4759e-19,3.121e-19,3.1085e-19,2.7429e-19,1.5197e-19,1.3243e-19,1.3044e-19,6.4663e-20,5.5398e-20,5.067e-20,3.848e-20,2.9274e-20,1.7662e-20,1.6315e-20,1.1117e-20,4.6882e-21,4.6342e-21,4.3166e-21,3.7331e-21,3.3307e-21,2.8934e-21,2.4501e-21,5.1576e-22,3.4155e-22,1.8111e-22,1.1278e-22,1.1017e-22,1.0439e-22,5.1359e-23,4.3501e-23,4.2905e-23,2.1687e-23,6.7948e-24,6.5476e-24,4.6421e-24,4.323e-24,1.9545e-24,1.5638e-24,9.5995e-25,7.4371e-25,5.6063e-25,5.3057e-25,3.7902e-25,3.5718e-25,3.4724e-25,1.6124e-25,1.2809e-25,1.1625e-25,8.4797e-26,7.6761e-26,4.8598e-26,4.3778e-26,3.5471e-26,2.097e-26,2.0866e-26,1.6197e-26,1.4869e-26,1.4867e-26,8.4912e-27,8.3419e-27,6.6182e-27,5.1814e-27,3.0343e-27,1.8704e-27,1.3203e-27,7.5732e-28,4.5203e-28,2.3082e-28,2.2458e-28,1.3363e-28,8.0981e-29,6.023e-29,2.7185e-29,2.1511e-29,1.3358e-29,1.007e-29,5.5737e-30,5.2351e-30,4.6005e-30,3.4109e-30,1.8202e-30,9.5205e-31,6.7465e-31,4.7803e-31,3.9926e-31,3.8926e-31,2.8063e-31,1.9213e-31,6.0064e-32,4.4012e-32,3.7075e-32,2.537e-32,2.5304e-32,1.7402e-32,1.6609e-32,1.2878e-32,1.0494e-32,5.2579e-33,4.7566e-33,2.7668e-33,1.6684e-33,3.1642e-34,2.311e-34,1.9853e-34,1.3322e-34,9.1555e-35,7.9376e-35,5.9665e-35,4.8589e-35,3.765e-35,2.4684e-35,2.4628e-35,1.1497e-35,9.3856e-36,8.9963e-36,8.7955e-36,4.0396e-36,3.9686e-36,3.6685e-36,3.4574e-36,2.9653e-36,2.2986e-36,1.8287e-36,6.6064e-37,7.4212e-38,3.8535e-38,3.6362e-38,3.4659e-38,2.9672e-38,2.7213e-38,1.1945e-38,6.9286e-39,4.6565e-39,3.7265e-39,2.3378e-39,1.5714e-39,1.4593e-39,8.3381e-40,6.0692e-40,4.1153e-40,2.2004e-40,9.6149e-41,9.1186e-41,6.8846e-41,5.6629e-41,5.187e-41,2.0275e-41,1.5667e-41,4.8269e-42,3.4783e-42,1.9504e-42,1.43e-42,1.2931e-42,7.4667e-43,6.9543e-43,5.9521e-43,4.2352e-43,2.2093e-43 1,0.99567,0.99904,0.99914,0.99965,0.99989,1,0.99957,0.99513,0.98983,0.98884,0.98303,0.98197,0.97745,0.96442,0.95976,0.95636,0.94016,0.93715,0.93373,0.92165,0.9203,0.91952,0.90961,0.90353,0.90333,0.89119,0.89005,0.88435,0.88359,0.88285,0.84102,0.79696,0.7928,0.7791,0.76665,0.75687,0.74512,0.7313,0.7066,0.69284,0.67024,0.64156,0.6389,0.63324,0.62801,0.60073,0.60069,0.53587,0.53111,0.52847,0.50933,0.50793,0.47095,0.45666,0.45076,0.43792,0.42983,0.41609,0.41187,0.38005,0.36103,0.30456,0.29001,0.28523,0.27681,0.25445,0.25002,0.24612,0.22834,0.21246,0.20678,0.2022,0.18619,0.16469,0.14404,0.13125,0.12868,0.10739,0.1007,0.097692,0.09638,0.091205,0.07217,0.071614,0.068666,0.064189,0.063339,0.057428,0.043452,0.043288,0.039917,0.038762,0.027467,0.025118,0.024953,0.023015,0.020599,0.020553,0.020368,0.019033,0.019021,0.017878,0.017453,0.012268,0.010462,0.010405,0.0086536,0.0082316,0.0076149,0.0073302,0.0071668,0.0069899,0.0069331,0.0067834,0.0062097,0.0061459,0.0060163,0.0059118,0.0051753,0.0044436,0.0036411,0.0033749,0.0028696,0.002388,0.0022085,0.0021209,0.0013438,0.0012734,0.0012239,0.0011309,0.0010222,0.00093589,0.00087086,0.00085975,0.00085284,0.00077837,0.00061053,0.00059963,0.00054434,0.000468,0.00043028,0.00042443,0.00026019,0.00025882,0.00023455,0.00019316,0.00018641,0.00016315,0.00015807,0.00012652,0.00010926,7.795e-05,7.7317e-05,5.2177e-05,4.9863e-05,4.9146e-05,3.7892e-05,3.7266e-05,3.3902e-05,2.9911e-05,2.8759e-05,2.7916e-05,2.4819e-05,2.4339e-05,2.403e-05,2.1877e-05,2.1168e-05,2.0987e-05,1.9406e-05,1.8866e-05,1.6127e-05,1.2404e-05,1.1833e-05,1.1686e-05,1.0378e-05,9.8794e-06,8.0784e-06,5.6538e-06,5.057e-06,4.2347e-06,3.966e-06,3.3036e-06,2.7514e-06,2.7104e-06,2.6791e-06,2.6755e-06,2.5343e-06,2.5227e-06,2.127e-06,1.9662e-06,1.695e-06,1.6838e-06,1.6174e-06,1.2479e-06,1.2385e-06,1.0938e-06,9.4903e-07,7.3537e-07,7.1101e-07,6.4566e-07,6.3185e-07,5.9822e-07,5.4571e-07,4.7381e-07,4.7198e-07,3.4183e-07,2.3588e-07,2.2671e-07,2.1697e-07,2.1402e-07,1.7079e-07,1.4854e-07,9.2214e-08,8.9924e-08,8.5477e-08,7.8455e-08,5.6968e-08,4.0698e-08,2.8079e-08,2.5098e-08,2.3469e-08,1.9782e-08,1.398e-08,1.199e-08,9.8178e-09,7.2083e-09,5.5113e-09,5.2501e-09,3.1125e-09,2.9042e-09,2.8316e-09,2.5033e-09,2.3834e-09,1.6073e-09,1.3561e-09,1.2909e-09,1.2845e-09,1.1582e-09,1.0069e-09,9.4359e-10,9.1667e-10,5.5042e-10,5.5007e-10,3.4586e-10,2.0246e-10,1.2287e-10,7.7249e-11,6.3129e-11,5.987e-11,5.288e-11,4.7434e-11,3.669e-11,3.5664e-11,2.1671e-11,1.9096e-11,1.4811e-11,1.0787e-11,8.8947e-12,8.7024e-12,7.4354e-12,6.6894e-12,5.1558e-12,3.4938e-12,3.3681e-12,2.8364e-12,2.1611e-12,1.7315e-12,1.7136e-12,7.9324e-13,6.9885e-13,6.5756e-13,5.6234e-13,5.184e-13,4.5594e-13,3.7148e-13,3.4195e-13,3.0461e-13,2.5281e-13,1.9851e-13,1.5751e-13,1.5385e-13,1.1587e-13,9.6103e-14,8.1467e-14,5.5885e-14,4.702e-14,4.4155e-14,3.5314e-14,3.4839e-14,3.1581e-14,3.0241e-14,1.6999e-14,1.4655e-14,1.3833e-14,1.0623e-14,9.1106e-15,8.9004e-15,6.2107e-15,3.0991e-15,2.5173e-15,2.2611e-15,1.76e-15,1.7223e-15,1.2983e-15,1.2587e-15,8.7308e-16,7.0365e-16,4.5562e-16,4.3801e-16,4.2209e-16,4.1345e-16,3.864e-16,3.6563e-16,3.5351e-16,2.4768e-16,2.2987e-16,1.1295e-16,8.8921e-17,7.5859e-17,7.1228e-17,4.2167e-17,4.1781e-17,3.5126e-17,3.2385e-17,2.1511e-17,2.1234e-17,2.0592e-17,1.5168e-17,1.3935e-17,1.3521e-17,1.2336e-17,1.0955e-17,9.7907e-18,9.2349e-18,5.1897e-18,5.085e-18,3.7551e-18,2.3777e-18,1.5435e-18,8.4376e-19,8.3652e-19,6.7446e-19,5.1398e-19,3.5861e-19,3.5717e-19,3.1523e-19,1.7482e-19,1.5238e-19,1.5009e-19,7.4488e-20,6.3831e-20,5.8391e-20,4.4363e-20,3.3765e-20,2.0388e-20,1.8835e-20,1.2841e-20,5.4229e-21,5.3605e-21,4.9937e-21,4.3197e-21,3.8548e-21,3.3494e-21,2.837e-21,5.9861e-22,3.9667e-22,2.1054e-22,1.312e-22,1.2817e-22,1.2145e-22,5.9817e-23,5.0677e-23,4.9984e-23,2.529e-23,7.9373e-24,7.649e-24,5.4257e-24,5.0533e-24,2.2873e-24,1.8306e-24,1.1245e-24,8.7155e-25,6.5726e-25,6.2206e-25,4.446e-25,4.1901e-25,4.0737e-25,1.8937e-25,1.5048e-25,1.3659e-25,9.9678e-26,9.0244e-26,5.7172e-26,5.1508e-26,4.1746e-26,2.4698e-26,2.4575e-26,1.9084e-26,1.752e-26,1.7518e-26,1.0013e-26,9.8374e-27,7.8072e-27,6.1143e-27,3.5833e-27,2.2102e-27,1.5609e-27,8.9602e-28,5.3518e-28,2.7353e-28,2.6614e-28,1.5847e-28,9.6097e-29,7.1501e-29,3.2306e-29,2.5571e-29,1.5889e-29,1.1983e-29,6.6374e-30,6.2347e-30,5.4798e-30,4.0644e-30,2.1707e-30,1.1363e-30,8.0559e-31,5.7106e-31,4.7707e-31,4.6514e-31,3.3548e-31,2.2978e-31,7.1942e-32,5.2735e-32,4.4433e-32,3.042e-32,3.0341e-32,2.0876e-32,1.9926e-32,1.5454e-32,1.2596e-32,6.3168e-33,5.7152e-33,3.3267e-33,2.0073e-33,3.8145e-34,2.787e-34,2.3946e-34,1.6077e-34,1.1054e-34,9.585e-35,7.2072e-35,5.8707e-35,4.5504e-35,2.9848e-35,2.9781e-35,1.3915e-35,1.1362e-35,1.0892e-35,1.0649e-35,4.8953e-36,4.8094e-36,4.446e-36,4.1906e-36,3.5948e-36,2.7873e-36,2.2182e-36,8.0228e-37,9.0352e-38,4.6952e-38,4.4307e-38,4.2234e-38,3.6163e-38,3.317e-38,1.4573e-38,8.4583e-39,5.6872e-39,4.5524e-39,2.8575e-39,1.9215e-39,1.7847e-39,1.0203e-39,7.4296e-40,5.0399e-40,2.6966e-40,1.1794e-40,1.1186e-40,8.4482e-41,6.9506e-41,6.367e-41,2.4914e-41,1.9257e-41,5.9405e-42,4.2822e-42,2.4028e-42,1.7623e-42,1.5937e-42,9.2079e-43,8.5767e-43,7.342e-43,5.2261e-43,2.7281e-43 1,0.99253,0.99733,0.99751,0.99845,0.99902,0.99957,1,0.99759,0.99355,0.99276,0.98794,0.98704,0.98315,0.97162,0.96742,0.96433,0.94946,0.94667,0.94349,0.9322,0.93093,0.9302,0.92086,0.91511,0.91492,0.90339,0.90231,0.89688,0.89615,0.89545,0.85525,0.81246,0.80841,0.79502,0.78283,0.77323,0.76169,0.74809,0.72372,0.7101,0.68771,0.65919,0.65654,0.6509,0.64569,0.61846,0.61842,0.55342,0.54863,0.54597,0.52669,0.52528,0.48794,0.47348,0.46751,0.45449,0.44628,0.43233,0.42804,0.39566,0.37625,0.31847,0.30353,0.29862,0.28996,0.26695,0.26237,0.25835,0.24,0.22358,0.2177,0.21296,0.19636,0.17402,0.1525,0.13915,0.13646,0.11418,0.10716,0.104,0.10263,0.097188,0.077139,0.076553,0.07344,0.068711,0.067812,0.061558,0.046732,0.046558,0.042972,0.041743,0.029693,0.027181,0.027004,0.024928,0.022337,0.022288,0.02209,0.020656,0.020644,0.019416,0.018958,0.013374,0.011422,0.011361,0.0094654,0.009008,0.0083393,0.0080304,0.007853,0.0076609,0.0075992,0.0074367,0.0068133,0.0067439,0.0066029,0.0064893,0.0056877,0.0048902,0.0040141,0.0037231,0.0031701,0.0026422,0.0024452,0.0023489,0.0014939,0.0014163,0.0013616,0.0012589,0.0011388,0.0010434,0.00097144,0.00095914,0.00095149,0.00086902,0.00068291,0.00067081,0.0006094,0.00052453,0.00048256,0.00047605,0.00029287,0.00029134,0.00026421,0.00021789,0.00021032,0.00018425,0.00017856,0.00014314,0.00012373,8.8479e-05,8.7766e-05,5.9384e-05,5.6767e-05,5.5956e-05,4.3215e-05,4.2506e-05,3.8693e-05,3.4165e-05,3.2858e-05,3.1901e-05,2.8383e-05,2.7837e-05,2.7487e-05,2.5039e-05,2.4232e-05,2.4026e-05,2.2228e-05,2.1613e-05,1.8492e-05,1.4246e-05,1.3595e-05,1.3427e-05,1.1933e-05,1.1363e-05,9.3029e-06,6.5247e-06,5.8398e-06,4.8953e-06,4.5865e-06,3.8246e-06,3.1886e-06,3.1414e-06,3.1053e-06,3.1012e-06,2.9384e-06,2.925e-06,2.4686e-06,2.283e-06,1.9698e-06,1.9569e-06,1.8801e-06,1.4528e-06,1.4418e-06,1.2743e-06,1.1065e-06,8.5859e-07,8.303e-07,7.5439e-07,7.3834e-07,6.9924e-07,6.3819e-07,5.5453e-07,5.524e-07,4.0076e-07,2.771e-07,2.6639e-07,2.5499e-07,2.5154e-07,2.0097e-07,1.7491e-07,1.0886e-07,1.0617e-07,1.0095e-07,9.2693e-08,6.7417e-08,4.8243e-08,3.3347e-08,2.9823e-08,2.7897e-08,2.3534e-08,1.666e-08,1.4299e-08,1.172e-08,8.6175e-09,6.5972e-09,6.2859e-09,3.7357e-09,3.4869e-09,3.4001e-09,3.0077e-09,2.8642e-09,1.9351e-09,1.6339e-09,1.5557e-09,1.548e-09,1.3964e-09,1.2149e-09,1.1388e-09,1.1064e-09,6.6589e-10,6.6547e-10,4.1929e-10,2.4602e-10,1.4963e-10,9.4261e-11,7.7098e-11,7.3135e-11,6.463e-11,5.8001e-11,4.4912e-11,4.3661e-11,2.6586e-11,2.3439e-11,1.8199e-11,1.3272e-11,1.0952e-11,1.0716e-11,9.1621e-12,8.2464e-12,6.3626e-12,4.3183e-12,4.1636e-12,3.5087e-12,2.6763e-12,2.1462e-12,2.1241e-12,9.8623e-13,8.693e-13,8.1814e-13,7.001e-13,6.4559e-13,5.681e-13,4.6322e-13,4.2654e-13,3.8014e-13,3.1572e-13,2.4813e-13,1.9705e-13,1.925e-13,1.4514e-13,1.2046e-13,1.0218e-13,7.0191e-14,5.9094e-14,5.5507e-14,4.443e-14,4.3834e-14,3.975e-14,3.8069e-14,2.1445e-14,1.8498e-14,1.7464e-14,1.3424e-14,1.152e-14,1.1255e-14,7.8638e-15,3.9338e-15,3.1977e-15,2.8733e-15,2.2385e-15,2.1908e-15,1.6531e-15,1.6028e-15,1.1132e-15,8.9787e-16,5.8226e-16,5.5982e-16,5.3955e-16,5.2854e-16,4.9408e-16,4.6762e-16,4.5217e-16,3.1719e-16,2.9445e-16,1.4504e-16,1.1428e-16,9.7542e-17,9.1607e-17,5.4328e-17,5.3832e-17,4.5284e-17,4.1762e-17,2.7777e-17,2.742e-17,2.6595e-17,1.9609e-17,1.802e-17,1.7487e-17,1.5959e-17,1.4178e-17,1.2676e-17,1.1959e-17,6.733e-18,6.5976e-18,4.8769e-18,3.0926e-18,2.0104e-18,1.1011e-18,1.0917e-18,8.8084e-19,6.7183e-19,4.6928e-19,4.674e-19,4.1268e-19,2.2929e-19,1.9994e-19,1.9695e-19,9.7958e-20,8.3983e-20,7.6847e-20,5.8435e-20,4.4512e-20,2.6919e-20,2.4875e-20,1.6979e-20,7.1892e-21,7.1067e-21,6.6219e-21,5.7306e-21,5.1155e-21,4.4467e-21,3.7683e-21,7.9883e-22,5.2999e-22,2.8183e-22,1.7586e-22,1.7181e-22,1.6284e-22,8.0363e-23,6.8116e-23,6.7187e-23,3.4061e-23,1.0725e-23,1.0337e-23,7.3395e-24,6.8371e-24,3.1016e-24,2.4839e-24,1.5279e-24,1.185e-24,8.9436e-25,8.4659e-25,6.0564e-25,5.7087e-25,5.5506e-25,2.5857e-25,2.0559e-25,1.8667e-25,1.3634e-25,1.2347e-25,7.8318e-26,7.058e-26,5.7236e-26,3.3909e-26,3.3742e-26,2.622e-26,2.4077e-26,2.4074e-26,1.3781e-26,1.354e-26,1.0752e-26,8.4263e-27,4.9452e-27,3.0542e-27,2.1588e-27,1.2411e-27,7.4229e-28,3.8004e-28,3.6981e-28,2.205e-28,1.3388e-28,9.969e-29,4.5134e-29,3.5745e-29,2.2239e-29,1.6783e-29,9.3102e-30,8.7468e-30,7.6902e-30,5.7082e-30,3.0533e-30,1.601e-30,1.136e-30,8.0594e-31,6.736e-31,6.5679e-31,4.7408e-31,3.2503e-31,1.0205e-31,7.4863e-32,6.3104e-32,4.3242e-32,4.313e-32,2.9702e-32,2.8353e-32,2.2004e-32,1.7944e-32,9.0134e-33,8.1569e-33,4.7541e-33,2.872e-33,5.4793e-34,4.0064e-34,3.4436e-34,2.3141e-34,1.5924e-34,1.3813e-34,1.0393e-34,8.4701e-35,6.5691e-35,4.3132e-35,4.3034e-35,2.0143e-35,1.6456e-35,1.5775e-35,1.5424e-35,7.1034e-36,6.979e-36,6.4529e-36,6.083e-36,5.2199e-36,4.0498e-36,3.2245e-36,1.169e-36,1.323e-37,6.8849e-38,6.4979e-38,6.1946e-38,5.3059e-38,4.8678e-38,2.1426e-38,1.245e-38,8.3788e-39,6.7102e-39,4.2162e-39,2.8377e-39,2.636e-39,1.5089e-39,1.0995e-39,7.4646e-40,3.9994e-40,1.7523e-40,1.6622e-40,1.2561e-40,1.0339e-40,9.4724e-41,3.714e-41,2.8723e-41,8.8828e-42,6.4076e-42,3.5997e-42,2.6419e-42,2.3897e-42,1.3823e-42,1.2877e-42,1.1027e-42,7.8546e-43,4.1058e-43 1,0.98174,0.98988,0.99022,0.99218,0.99354,0.99513,0.99759,1,0.99902,0.9987,0.99629,0.99578,0.99343,0.98559,0.98251,0.9802,0.96862,0.96637,0.9638,0.9545,0.95344,0.95283,0.94495,0.94004,0.93987,0.92991,0.92897,0.92422,0.92358,0.92296,0.88702,0.84765,0.84387,0.83135,0.81988,0.81081,0.79986,0.78689,0.7635,0.75034,0.7286,0.7007,0.6981,0.69256,0.68742,0.66049,0.66045,0.59547,0.59064,0.58796,0.56847,0.56704,0.52905,0.51426,0.50814,0.49477,0.48632,0.47193,0.4675,0.4339,0.41367,0.35294,0.33712,0.33192,0.32271,0.29817,0.29327,0.28897,0.26927,0.25157,0.24521,0.24008,0.22207,0.19771,0.1741,0.15937,0.1564,0.13166,0.12383,0.1203,0.11876,0.11266,0.090072,0.089409,0.085882,0.080513,0.079491,0.072368,0.055376,0.055175,0.05104,0.049619,0.035621,0.032682,0.032474,0.03004,0.026993,0.026936,0.026701,0.025011,0.024996,0.023545,0.023004,0.016365,0.014029,0.013956,0.011676,0.011124,0.010316,0.0099425,0.0097278,0.0094951,0.0094203,0.0092233,0.0084665,0.0083822,0.0082108,0.0080726,0.0070957,0.0061206,0.0050451,0.0046867,0.0040038,0.0033495,0.0031046,0.0029847,0.0019152,0.0018175,0.0017487,0.0016193,0.0014675,0.0013468,0.0012556,0.00124,0.0012303,0.0011256,0.00088843,0.00087297,0.00079444,0.00068565,0.00063172,0.00062335,0.00038677,0.00038478,0.00034953,0.0002892,0.00027933,0.00024525,0.0002378,0.00019132,0.00016579,0.0001192,0.00011825,8.0511e-05,7.7018e-05,7.5935e-05,5.8882e-05,5.7931e-05,5.281e-05,4.672e-05,4.4959e-05,4.367e-05,3.8923e-05,3.8186e-05,3.7712e-05,3.4402e-05,3.331e-05,3.3031e-05,3.0595e-05,2.9761e-05,2.5523e-05,1.9739e-05,1.885e-05,1.8619e-05,1.6576e-05,1.5796e-05,1.297e-05,9.1431e-06,8.1963e-06,6.8878e-06,6.4592e-06,5.3998e-06,4.5133e-06,4.4474e-06,4.397e-06,4.3912e-06,4.1639e-06,4.1451e-06,3.5065e-06,3.2463e-06,2.8066e-06,2.7884e-06,2.6805e-06,2.0784e-06,2.063e-06,1.8262e-06,1.5888e-06,1.237e-06,1.1967e-06,1.0887e-06,1.0658e-06,1.0101e-06,9.2302e-07,8.0348e-07,8.0045e-07,5.8312e-07,4.0509e-07,3.8962e-07,3.7316e-07,3.6817e-07,2.9499e-07,2.5719e-07,1.61e-07,1.5707e-07,1.4944e-07,1.3736e-07,1.0029e-07,7.206e-08,5.0029e-08,4.4801e-08,4.194e-08,3.5452e-08,2.5198e-08,2.1666e-08,1.7799e-08,1.3133e-08,1.0085e-08,9.6144e-09,5.7474e-09,5.3687e-09,5.2365e-09,4.6384e-09,4.4196e-09,2.9989e-09,2.5368e-09,2.4167e-09,2.4049e-09,2.1718e-09,1.8923e-09,1.775e-09,1.7252e-09,1.0439e-09,1.0433e-09,6.6058e-10,3.8978e-10,2.3829e-10,1.5083e-10,1.2362e-10,1.1733e-10,1.0382e-10,9.327e-11,7.2409e-11,7.0412e-11,4.3088e-11,3.8037e-11,2.9607e-11,2.1659e-11,1.7907e-11,1.7525e-11,1.5006e-11,1.352e-11,1.0458e-11,7.1244e-12,6.8715e-12,5.8003e-12,4.4357e-12,3.5645e-12,3.5282e-12,1.65e-12,1.4561e-12,1.3712e-12,1.1751e-12,1.0844e-12,9.5536e-13,7.8047e-13,7.192e-13,6.4164e-13,5.3382e-13,4.2046e-13,3.3461e-13,3.2695e-13,2.4714e-13,2.0546e-13,1.7454e-13,1.203e-13,1.0144e-13,9.5336e-14,7.6462e-14,7.5446e-14,6.8476e-14,6.5606e-14,3.7144e-14,3.208e-14,3.0303e-14,2.3347e-14,2.0061e-14,1.9604e-14,1.374e-14,6.9142e-15,5.6303e-15,5.0637e-15,3.9534e-15,3.8699e-15,2.927e-15,2.8388e-15,1.9776e-15,1.5979e-15,1.04e-15,1.0003e-15,9.6432e-16,9.4481e-16,8.837e-16,8.3675e-16,8.0933e-16,5.6939e-16,5.2891e-16,2.6203e-16,2.0686e-16,1.7679e-16,1.6612e-16,9.8935e-17,9.804e-17,8.2586e-17,7.6213e-17,5.0857e-17,5.0208e-17,4.8708e-17,3.6e-17,3.3106e-17,3.2135e-17,2.9347e-17,2.6097e-17,2.3352e-17,2.2041e-17,1.2466e-17,1.2217e-17,9.0522e-18,5.7606e-18,3.7574e-18,2.0675e-18,2.0499e-18,1.6567e-18,1.2662e-18,8.8683e-19,8.8332e-19,7.8064e-19,4.3565e-19,3.8028e-19,3.7463e-19,1.8731e-19,1.6077e-19,1.4721e-19,1.1216e-19,8.5612e-20,5.1966e-20,4.8048e-20,3.2888e-20,1.4012e-20,1.3853e-20,1.2914e-20,1.1188e-20,9.995e-21,8.697e-21,7.3789e-21,1.5816e-21,1.0523e-21,5.6207e-22,3.5189e-22,3.4385e-22,3.2601e-22,1.6168e-22,1.3719e-22,1.3534e-22,6.8931e-23,2.1876e-23,2.1089e-23,1.5009e-23,1.3988e-23,6.3792e-24,5.1164e-24,3.1574e-24,2.453e-24,1.8547e-24,1.7563e-24,1.2592e-24,1.1874e-24,1.1547e-24,5.4061e-25,4.305e-25,3.9111e-25,2.8625e-25,2.594e-25,1.6502e-25,1.4882e-25,1.2085e-25,7.1837e-26,7.1485e-26,5.5638e-26,5.112e-26,5.1114e-26,2.9364e-26,2.8853e-26,2.2946e-26,1.801e-26,1.0606e-26,6.5701e-27,4.6542e-27,2.6849e-27,1.611e-27,8.2824e-28,8.0607e-28,4.8216e-28,2.9365e-28,2.1905e-28,9.9656e-29,7.9038e-29,4.9314e-29,3.7279e-29,2.0754e-29,1.9506e-29,1.7163e-29,1.2762e-29,6.8521e-30,3.6066e-30,2.5643e-30,1.823e-30,1.5253e-30,1.4874e-30,1.0757e-30,7.3914e-31,2.3365e-31,1.7171e-31,1.4488e-31,9.9499e-32,9.9241e-32,6.8492e-32,6.5399e-32,5.0827e-32,4.1499e-32,2.0928e-32,1.895e-32,1.1079e-32,6.712e-33,1.2926e-33,9.4677e-34,8.1445e-34,5.4854e-34,3.7826e-34,3.2837e-34,2.4747e-34,2.019e-34,1.5681e-34,1.032e-34,1.0297e-34,4.8397e-35,3.9582e-35,3.7955e-35,3.7115e-35,1.7165e-35,1.6866e-35,1.5602e-35,1.4712e-35,1.2635e-35,9.8162e-36,7.8256e-36,2.8526e-36,3.2665e-37,1.7058e-37,1.6104e-37,1.5356e-37,1.3164e-37,1.2083e-37,5.3414e-38,3.1128e-38,2.0992e-38,1.6831e-38,1.0601e-38,7.1498e-39,6.6442e-39,3.8143e-39,2.7839e-39,1.8939e-39,1.018e-39,4.4793e-40,4.25e-40,3.2163e-40,2.6499e-40,2.429e-40,9.5693e-41,7.4103e-41,2.3054e-41,1.6657e-41,9.3853e-42,6.8988e-42,6.2434e-42,3.6212e-42,3.3747e-42,2.892e-42,2.0635e-42,1.0822e-42 1,0.97249,0.98269,0.98314,0.98574,0.98759,0.98983,0.99355,0.99902,1,0.99998,0.99912,0.99886,0.99751,0.99207,0.98974,0.98794,0.97854,0.97666,0.97449,0.96652,0.96561,0.96507,0.95818,0.95384,0.95369,0.9448,0.94395,0.93967,0.93909,0.93853,0.90555,0.86863,0.86506,0.85316,0.84223,0.83355,0.82305,0.81056,0.78794,0.77516,0.75396,0.72662,0.72406,0.71861,0.71355,0.68697,0.68693,0.62229,0.61746,0.61477,0.59525,0.59381,0.55558,0.54064,0.53445,0.52091,0.51234,0.49773,0.49322,0.45898,0.43828,0.37584,0.35949,0.3541,0.34457,0.31909,0.314,0.30952,0.28899,0.27049,0.26383,0.25845,0.23955,0.21389,0.18892,0.1733,0.17014,0.14378,0.13541,0.13163,0.12998,0.12345,0.099154,0.098438,0.094631,0.088829,0.087724,0.080009,0.061532,0.061313,0.056799,0.055246,0.039892,0.036654,0.036425,0.033739,0.03037,0.030307,0.030048,0.028176,0.028159,0.02655,0.025949,0.01856,0.015948,0.015866,0.01331,0.01269,0.011781,0.011361,0.011119,0.010857,0.010772,0.01055,0.0096965,0.0096013,0.0094077,0.0092516,0.008147,0.0070419,0.0058199,0.0054119,0.004633,0.003885,0.0036046,0.0034672,0.0022374,0.0021247,0.0020452,0.0018956,0.0017201,0.0015802,0.0014745,0.0014564,0.0014451,0.0013235,0.0010476,0.0010296,0.00093801,0.00081095,0.00074787,0.00073807,0.00046044,0.0004581,0.00041658,0.00034539,0.00033373,0.00029343,0.00028461,0.00022952,0.00019919,0.00014371,0.00014258,9.7461e-05,9.3275e-05,9.1976e-05,7.1504e-05,7.036e-05,6.42e-05,5.6866e-05,5.4743e-05,5.3189e-05,4.7461e-05,4.6571e-05,4.5999e-05,4.1999e-05,4.0679e-05,4.0341e-05,3.7394e-05,3.6384e-05,3.125e-05,2.4227e-05,2.3146e-05,2.2866e-05,2.0379e-05,1.9429e-05,1.5982e-05,1.1303e-05,1.0143e-05,8.5369e-06,8.0103e-06,6.7074e-06,5.6152e-06,5.534e-06,5.4718e-06,5.4646e-06,5.1842e-06,5.1611e-06,4.3724e-06,4.0507e-06,3.5065e-06,3.484e-06,3.3503e-06,2.6035e-06,2.5844e-06,2.2902e-06,1.9948e-06,1.5564e-06,1.5062e-06,1.3713e-06,1.3427e-06,1.2731e-06,1.1642e-06,1.0146e-06,1.0108e-06,7.3833e-07,5.1444e-07,4.9496e-07,4.7421e-07,4.6793e-07,3.7558e-07,3.2782e-07,2.0599e-07,2.01e-07,1.913e-07,1.7596e-07,1.2879e-07,9.2774e-08,6.4591e-08,5.789e-08,5.422e-08,4.5891e-08,3.2701e-08,2.815e-08,2.3158e-08,1.7127e-08,1.3177e-08,1.2566e-08,7.54e-09,7.0465e-09,6.8743e-09,6.0945e-09,5.8089e-09,3.9525e-09,3.3474e-09,3.1901e-09,3.1745e-09,2.8689e-09,2.5021e-09,2.3481e-09,2.2825e-09,1.3861e-09,1.3852e-09,8.798e-10,5.2098e-10,3.1955e-10,2.0288e-10,1.665e-10,1.5808e-10,1.3998e-10,1.2585e-10,9.7863e-11,9.5182e-11,5.843e-11,5.1621e-11,4.0245e-11,2.95e-11,2.4418e-11,2.3901e-11,2.0485e-11,1.8469e-11,1.4309e-11,9.7711e-12,9.4263e-12,7.9651e-12,6.1012e-12,4.9095e-12,4.8598e-12,2.2832e-12,2.0164e-12,1.8995e-12,1.6293e-12,1.5043e-12,1.3263e-12,1.0848e-12,1.0001e-12,8.9288e-13,7.4365e-13,5.8655e-13,4.6742e-13,4.5677e-13,3.4584e-13,2.8782e-13,2.4473e-13,1.6905e-13,1.4268e-13,1.3414e-13,1.0772e-13,1.063e-13,9.653e-14,9.2507e-14,5.2543e-14,4.5417e-14,4.2914e-14,3.3112e-14,2.8476e-14,2.783e-14,1.9544e-14,9.8724e-15,8.0482e-15,7.2425e-15,5.6621e-15,5.5431e-15,4.1989e-15,4.073e-15,2.843e-15,2.2998e-15,1.5002e-15,1.4432e-15,1.3916e-15,1.3636e-15,1.2759e-15,1.2084e-15,1.169e-15,8.2399e-16,7.657e-16,3.8074e-16,3.0095e-16,2.5742e-16,2.4196e-16,1.4448e-16,1.4318e-16,1.2072e-16,1.1145e-16,7.4525e-17,7.358e-17,7.1392e-17,5.2848e-17,4.8619e-17,4.72e-17,4.3125e-17,3.8372e-17,3.4356e-17,3.2436e-17,1.8398e-17,1.8033e-17,1.3381e-17,8.5346e-18,5.5785e-18,3.0785e-18,3.0526e-18,2.4695e-18,1.8899e-18,1.326e-18,1.3208e-18,1.1679e-18,6.5363e-19,5.7093e-19,5.6249e-19,2.8216e-19,2.4236e-19,2.2201e-19,1.6938e-19,1.2945e-19,7.8758e-20,7.2847e-20,4.9951e-20,2.1367e-20,2.1124e-20,1.97e-20,1.7077e-20,1.5265e-20,1.3291e-20,1.1285e-20,2.4359e-21,1.6237e-21,8.6971e-22,5.4563e-22,5.3321e-22,5.0566e-22,2.5156e-22,2.1362e-22,2.1074e-22,1.0765e-22,3.4337e-23,3.3107e-23,2.3596e-23,2.1997e-23,1.0066e-23,8.081e-24,4.9971e-24,3.8864e-24,2.9421e-24,2.7866e-24,2.0007e-24,1.887e-24,1.8353e-24,8.62e-25,6.8708e-25,6.2447e-25,4.5764e-25,4.1487e-25,2.6443e-25,2.3857e-25,1.9389e-25,1.1551e-25,1.1494e-25,8.9554e-26,8.231e-26,8.23e-26,4.7388e-26,4.6567e-26,3.7068e-26,2.9123e-26,1.7186e-26,1.0667e-26,7.567e-27,4.3749e-27,2.6304e-27,1.3559e-27,1.3198e-27,7.9102e-28,4.8271e-28,3.605e-28,1.6451e-28,1.3059e-28,8.1629e-29,6.1775e-29,3.4469e-29,3.2403e-29,2.8525e-29,2.1235e-29,1.1429e-29,6.0302e-30,4.293e-30,3.0559e-30,2.5585e-30,2.4953e-30,1.8068e-30,1.2432e-30,3.947e-31,2.9039e-31,2.4518e-31,1.6861e-31,1.6818e-31,1.1623e-31,1.11e-31,8.6347e-32,7.0552e-32,3.5669e-32,3.2309e-32,1.8926e-32,1.1487e-32,2.2254e-33,1.6319e-33,1.4046e-33,9.4733e-34,6.5412e-34,5.6813e-34,4.2858e-34,3.4993e-34,2.7202e-34,1.7928e-34,1.7888e-34,8.4304e-35,6.8997e-35,6.617e-35,6.4711e-35,3.0009e-35,2.9488e-35,2.7285e-35,2.5734e-35,2.2113e-35,1.7195e-35,1.3719e-35,5.0183e-36,5.7893e-37,3.03e-37,2.8611e-37,2.7287e-37,2.3404e-37,2.1487e-37,9.5251e-38,5.561e-38,3.7552e-38,3.0131e-38,1.9008e-38,1.2836e-38,1.1931e-38,6.8624e-39,5.0138e-39,3.4152e-39,1.8395e-39,8.116e-40,7.7018e-40,5.834e-40,4.8096e-40,4.4099e-40,1.7426e-40,1.3506e-40,4.2177e-41,3.0507e-41,1.722e-41,1.267e-41,1.147e-41,6.6646e-42,6.2122e-42,5.3264e-42,3.8046e-42,1.9993e-42 1,0.97091,0.98142,0.98189,0.98458,0.9865,0.98884,0.99276,0.9987,0.99998,1,0.99938,0.99916,0.99797,0.9929,0.99068,0.98897,0.9799,0.97808,0.97598,0.96822,0.96732,0.9668,0.96006,0.95581,0.95567,0.94694,0.94611,0.9419,0.94134,0.94079,0.90828,0.87175,0.86821,0.85642,0.84558,0.83696,0.82653,0.81412,0.79163,0.77891,0.7578,0.73056,0.72801,0.72258,0.71753,0.69101,0.69097,0.62641,0.62158,0.6189,0.59937,0.59793,0.55968,0.54472,0.53852,0.52496,0.51637,0.50173,0.49721,0.46288,0.44211,0.37942,0.36299,0.35758,0.348,0.32238,0.31726,0.31276,0.29209,0.27347,0.26677,0.26135,0.24231,0.21645,0.19128,0.17552,0.17233,0.14572,0.13726,0.13344,0.13178,0.12517,0.10061,0.099887,0.096037,0.090166,0.089048,0.081239,0.062526,0.062305,0.05773,0.056156,0.040586,0.0373,0.037068,0.03434,0.030921,0.030856,0.030593,0.028692,0.028675,0.02704,0.02643,0.01892,0.016263,0.016179,0.013578,0.012947,0.012022,0.011594,0.011348,0.011081,0.010995,0.010769,0.0098991,0.0098021,0.009605,0.009446,0.0083204,0.0071941,0.0059481,0.0055319,0.0047374,0.003974,0.0036876,0.0035474,0.0022911,0.0021759,0.0020947,0.0019418,0.0017623,0.0016193,0.0015111,0.0014926,0.0014811,0.0013566,0.0010743,0.0010559,0.00096211,0.000832,0.0007674,0.00075736,0.00047286,0.00047047,0.00042789,0.00035489,0.00034293,0.00030158,0.00029253,0.000236,0.00020485,0.00014788,0.00014672,0.00010035,9.6046e-05,9.471e-05,7.3659e-05,7.2482e-05,6.6146e-05,5.8601e-05,5.6416e-05,5.4816e-05,4.8922e-05,4.8006e-05,4.7417e-05,4.33e-05,4.1941e-05,4.1593e-05,3.8559e-05,3.7519e-05,3.2232e-05,2.4998e-05,2.3884e-05,2.3595e-05,2.1033e-05,2.0054e-05,1.6501e-05,1.1676e-05,1.0479e-05,8.8218e-06,8.2784e-06,6.9336e-06,5.8059e-06,5.7221e-06,5.6579e-06,5.6505e-06,5.3609e-06,5.3371e-06,4.5226e-06,4.1902e-06,3.628e-06,3.6047e-06,3.4666e-06,2.6948e-06,2.675e-06,2.3709e-06,2.0655e-06,1.6121e-06,1.5601e-06,1.4206e-06,1.391e-06,1.319e-06,1.2063e-06,1.0515e-06,1.0476e-06,7.6548e-07,5.336e-07,5.1342e-07,4.9192e-07,4.8541e-07,3.8972e-07,3.4022e-07,2.139e-07,2.0873e-07,1.9867e-07,1.8276e-07,1.3382e-07,9.6432e-08,6.7167e-08,6.0206e-08,5.6394e-08,4.774e-08,3.4032e-08,2.9301e-08,2.411e-08,1.7837e-08,1.3727e-08,1.3092e-08,7.86e-09,7.3461e-09,7.1668e-09,6.3546e-09,6.0571e-09,4.1232e-09,3.4926e-09,3.3286e-09,3.3124e-09,2.9938e-09,2.6115e-09,2.4508e-09,2.3825e-09,1.4475e-09,1.4466e-09,9.1927e-10,5.4465e-10,3.3424e-10,2.1231e-10,1.7427e-10,1.6546e-10,1.4654e-10,1.3176e-10,1.0248e-10,9.968e-11,6.1221e-11,5.4093e-11,4.2183e-11,3.0929e-11,2.5606e-11,2.5064e-11,2.1486e-11,1.9373e-11,1.5013e-11,1.0256e-11,9.8941e-12,8.3617e-12,6.4066e-12,5.1563e-12,5.1041e-12,2.3997e-12,2.1196e-12,1.9968e-12,1.713e-12,1.5817e-12,1.3947e-12,1.1409e-12,1.052e-12,9.3925e-13,7.824e-13,6.1725e-13,4.9198e-13,4.8078e-13,3.6411e-13,3.0308e-13,2.5774e-13,1.7809e-13,1.5034e-13,1.4135e-13,1.1353e-13,1.1203e-13,1.0175e-13,9.7508e-14,5.5411e-14,4.7903e-14,4.5265e-14,3.4934e-14,3.0046e-14,2.9366e-14,2.0629e-14,1.0426e-14,8.5012e-15,7.6508e-15,5.9825e-15,5.8569e-15,4.4377e-15,4.3047e-15,3.0056e-15,2.4318e-15,1.5869e-15,1.5266e-15,1.4721e-15,1.4425e-15,1.3497e-15,1.2784e-15,1.2368e-15,8.7201e-16,8.1037e-16,4.0319e-16,3.1875e-16,2.7268e-16,2.5631e-16,1.5312e-16,1.5174e-16,1.2795e-16,1.1814e-16,7.9021e-17,7.8019e-17,7.5702e-17,5.6051e-17,5.157e-17,5.0065e-17,4.5746e-17,4.0708e-17,3.6451e-17,3.4415e-17,1.9529e-17,1.9142e-17,1.4207e-17,9.0647e-18,5.9269e-18,3.2723e-18,3.2447e-18,2.6254e-18,2.0096e-18,1.4103e-18,1.4048e-18,1.2423e-18,6.9557e-19,6.0763e-19,5.9866e-19,3.0046e-19,2.5811e-19,2.3644e-19,1.8043e-19,1.3792e-19,8.3943e-20,7.7647e-20,5.3257e-20,2.2795e-20,2.2536e-20,2.1017e-20,1.8221e-20,1.6289e-20,1.4184e-20,1.2045e-20,2.6026e-21,1.7354e-21,9.2992e-22,5.8359e-22,5.7032e-22,5.4087e-22,2.692e-22,2.2863e-22,2.2554e-22,1.1527e-22,3.6795e-23,3.5477e-23,2.5291e-23,2.3579e-23,1.0795e-23,8.6678e-24,5.3617e-24,4.1706e-24,3.1578e-24,2.991e-24,2.1479e-24,2.026e-24,1.9705e-24,9.2594e-25,7.3815e-25,6.7093e-25,4.9178e-25,4.4586e-25,2.8426e-25,2.5648e-25,2.0847e-25,1.2423e-25,1.2363e-25,9.6336e-26,8.8549e-26,8.8538e-26,5.0998e-26,5.0114e-26,3.9897e-26,3.1351e-26,1.8507e-26,1.149e-26,8.1527e-27,4.7152e-27,2.8358e-27,1.4624e-27,1.4234e-27,8.5343e-28,5.2095e-28,3.8912e-28,1.7766e-28,1.4105e-28,8.819e-29,6.6751e-29,3.7259e-29,3.5027e-29,3.0837e-29,2.296e-29,1.2362e-29,6.525e-30,4.6461e-30,3.3079e-30,2.7698e-30,2.7014e-30,1.9564e-30,1.3465e-30,4.2775e-31,3.1477e-31,2.6579e-31,1.8283e-31,1.8235e-31,1.2605e-31,1.2038e-31,9.3661e-32,7.6536e-32,3.8709e-32,3.5065e-32,2.0547e-32,1.2475e-32,2.4188e-33,1.774e-33,1.527e-33,1.0302e-33,7.1146e-34,6.1798e-34,4.6626e-34,3.8073e-34,2.96e-34,1.9514e-34,1.947e-34,9.1797e-35,7.5138e-35,7.2061e-35,7.0473e-35,3.2695e-35,3.2128e-35,2.9728e-35,2.8039e-35,2.4096e-35,1.8739e-35,1.4953e-35,5.4727e-36,6.3206e-37,3.3092e-37,3.1249e-37,2.9803e-37,2.5564e-37,2.3472e-37,1.0409e-37,6.0789e-38,4.1057e-38,3.2947e-38,2.0789e-38,1.4042e-38,1.3053e-38,7.5095e-39,5.4875e-39,3.7386e-39,2.0143e-39,8.891e-40,8.4375e-40,6.3922e-40,5.2703e-40,4.8325e-40,1.9105e-40,1.4809e-40,4.6273e-41,3.3475e-41,1.8901e-41,1.3909e-41,1.2592e-41,7.3186e-42,6.8221e-42,5.8497e-42,4.1791e-42,2.1968e-42 1,0.96204,0.97415,0.9747,0.97788,0.98019,0.98303,0.98794,0.99629,0.99912,0.99938,1,0.99998,0.99959,0.99646,0.99485,0.99355,0.98627,0.98475,0.98297,0.97631,0.97553,0.97508,0.96916,0.96538,0.96526,0.95742,0.95667,0.95285,0.95234,0.95184,0.92184,0.88743,0.88406,0.87283,0.86246,0.85419,0.84416,0.83219,0.8104,0.79804,0.77745,0.75076,0.74826,0.74291,0.73795,0.7118,0.71176,0.6477,0.64289,0.64021,0.62071,0.61928,0.58095,0.56592,0.55968,0.54602,0.53736,0.52258,0.51801,0.48325,0.46216,0.39823,0.38141,0.37586,0.36603,0.3397,0.33443,0.32979,0.30848,0.28924,0.2823,0.27669,0.25695,0.23006,0.2038,0.18731,0.18398,0.15605,0.14714,0.14312,0.14136,0.1344,0.10843,0.10766,0.10358,0.097343,0.096155,0.087851,0.067887,0.06765,0.062753,0.061068,0.04434,0.040799,0.040548,0.037603,0.033907,0.033837,0.033552,0.031494,0.031476,0.029704,0.029043,0.020879,0.017981,0.017889,0.015045,0.014354,0.01334,0.012871,0.0126,0.012307,0.012213,0.011965,0.01101,0.010903,0.010686,0.010511,0.0092722,0.0080302,0.0066535,0.0061929,0.0053123,0.0044646,0.0041462,0.0039901,0.0025886,0.0024598,0.0023688,0.0021976,0.0019963,0.0018359,0.0017144,0.0016936,0.0016807,0.0015408,0.0012229,0.0012021,0.0010963,0.00094934,0.00087629,0.00086493,0.00054236,0.00053963,0.00049122,0.00040809,0.00039445,0.00034728,0.00033695,0.00027234,0.00023669,0.00017133,0.00017,0.00011664,0.00011168,0.00011013,8.583e-05,8.447e-05,7.7143e-05,6.8409e-05,6.5879e-05,6.4026e-05,5.7192e-05,5.613e-05,5.5447e-05,5.0669e-05,4.9091e-05,4.8687e-05,4.5161e-05,4.3954e-05,3.7804e-05,2.9377e-05,2.8078e-05,2.7741e-05,2.475e-05,2.3606e-05,1.9452e-05,1.3799e-05,1.2395e-05,1.0448e-05,9.809e-06,8.2262e-06,6.8971e-06,6.7982e-06,6.7225e-06,6.7138e-06,6.3721e-06,6.3439e-06,5.3821e-06,4.9893e-06,4.3243e-06,4.2967e-06,4.1332e-06,3.2187e-06,3.1952e-06,2.8343e-06,2.4715e-06,1.9322e-06,1.8704e-06,1.7042e-06,1.669e-06,1.5831e-06,1.4488e-06,1.264e-06,1.2593e-06,9.2212e-07,6.4433e-07,6.2011e-07,5.9431e-07,5.865e-07,4.7156e-07,4.1202e-07,2.5981e-07,2.5357e-07,2.4143e-07,2.2221e-07,1.6302e-07,1.1772e-07,8.2175e-08,7.3708e-08,6.9069e-08,5.8529e-08,4.1808e-08,3.6028e-08,2.9681e-08,2.1997e-08,1.6955e-08,1.6175e-08,9.7395e-09,9.1063e-09,8.8853e-09,7.8838e-09,7.5168e-09,5.128e-09,4.3478e-09,4.1448e-09,4.1247e-09,3.7302e-09,3.2562e-09,3.0571e-09,2.9723e-09,1.8109e-09,1.8098e-09,1.1529e-09,6.85e-10,4.2147e-10,2.6836e-10,2.2051e-10,2.0942e-10,1.8559e-10,1.6696e-10,1.3004e-10,1.265e-10,7.7886e-11,6.8862e-11,5.3768e-11,3.9486e-11,3.2722e-11,3.2033e-11,2.748e-11,2.4791e-11,1.9236e-11,1.3165e-11,1.2703e-11,1.0745e-11,8.2434e-12,6.6417e-12,6.5748e-12,3.1025e-12,2.7419e-12,2.5838e-12,2.2182e-12,2.049e-12,1.8078e-12,1.4803e-12,1.3654e-12,1.2198e-12,1.0169e-12,8.0318e-13,6.4085e-13,6.2633e-13,4.7496e-13,3.9568e-13,3.3675e-13,2.3308e-13,1.9691e-13,1.8519e-13,1.4889e-13,1.4693e-13,1.335e-13,1.2797e-13,7.2906e-14,6.3068e-14,5.961e-14,4.6058e-14,3.9641e-14,3.8747e-14,2.7262e-14,1.382e-14,1.1279e-14,1.0155e-14,7.9492e-15,7.783e-15,5.9042e-15,5.728e-15,4.0056e-15,3.2438e-15,2.1206e-15,2.0404e-15,1.9679e-15,1.9285e-15,1.805e-15,1.71e-15,1.6546e-15,1.1683e-15,1.086e-15,5.4193e-16,4.2885e-16,3.671e-16,3.4516e-16,2.0664e-16,2.0479e-16,1.728e-16,1.596e-16,1.0693e-16,1.0558e-16,1.0246e-16,7.5954e-17,6.9905e-17,6.7874e-17,6.2041e-17,5.5235e-17,4.948e-17,4.6728e-17,2.6577e-17,2.6051e-17,1.9359e-17,1.2374e-17,8.1042e-18,4.4849e-18,4.4472e-18,3.6013e-18,2.7595e-18,1.9393e-18,1.9317e-18,1.7092e-18,9.5908e-19,8.3825e-19,8.2592e-19,4.1562e-19,3.5724e-19,3.2736e-19,2.5006e-19,1.9134e-19,1.1668e-19,1.0796e-19,7.4151e-20,3.1838e-20,3.1478e-20,2.9364e-20,2.5471e-20,2.2779e-20,1.9846e-20,1.6863e-20,3.6641e-21,2.4468e-21,1.314e-21,8.2603e-22,8.0731e-22,7.6577e-22,3.8208e-22,3.2468e-22,3.2032e-22,1.6409e-22,5.2588e-23,5.0712e-23,3.6193e-23,3.3752e-23,1.5494e-23,1.245e-23,7.7139e-24,6.0053e-24,4.5513e-24,4.3117e-24,3.0998e-24,2.9244e-24,2.8446e-24,1.3401e-24,1.0691e-24,9.7206e-25,7.1324e-25,6.4684e-25,4.1302e-25,3.7277e-25,3.0321e-25,1.81e-25,1.8012e-25,1.4047e-25,1.2915e-25,1.2914e-25,7.4516e-26,7.323e-26,5.8344e-26,4.5882e-26,2.7131e-26,1.6871e-26,1.1983e-26,6.9429e-27,4.1824e-27,2.1613e-27,2.104e-27,1.2635e-27,7.7244e-28,5.7751e-28,2.6431e-28,2.1e-28,1.3149e-28,9.9611e-29,5.5701e-29,5.2374e-29,4.6127e-29,3.4376e-29,1.8543e-29,9.8067e-30,6.9901e-30,4.9819e-30,4.1737e-30,4.0709e-30,2.9511e-30,2.0333e-30,6.4818e-31,4.7741e-31,4.0332e-31,2.7774e-31,2.7702e-31,1.917e-31,1.831e-31,1.4256e-31,1.1657e-31,5.9074e-32,5.3528e-32,3.1414e-32,1.91e-32,3.7212e-33,2.7316e-33,2.3523e-33,1.5887e-33,1.0984e-33,9.5442e-34,7.2068e-34,5.8882e-34,4.5811e-34,3.0236e-34,3.0169e-34,1.4254e-34,1.1674e-34,1.1197e-34,1.0951e-34,5.0915e-35,5.0034e-35,4.6307e-35,4.3683e-35,3.7556e-35,2.9227e-35,2.3336e-35,8.5649e-36,9.9507e-37,5.219e-37,4.929e-37,4.7016e-37,4.0345e-37,3.7051e-37,1.6468e-37,9.6309e-38,6.5116e-38,5.2286e-38,3.3032e-38,2.2335e-38,2.0765e-38,1.1964e-38,8.7499e-39,5.9674e-39,3.2204e-39,1.4245e-39,1.3521e-39,1.025e-39,8.4557e-40,7.755e-40,3.0734e-40,2.3838e-40,7.4712e-41,5.4093e-41,3.0588e-41,2.2527e-41,2.04e-41,1.1873e-41,1.1069e-41,9.4952e-42,6.7893e-42,3.5748e-42 1,0.96049,0.97285,0.97341,0.97668,0.97905,0.98197,0.98704,0.99578,0.99886,0.99916,0.99998,1,0.99974,0.99693,0.99541,0.99418,0.98719,0.98572,0.984,0.97753,0.97677,0.97632,0.97054,0.96684,0.96672,0.95903,0.95829,0.95454,0.95404,0.95354,0.92396,0.88991,0.88657,0.87543,0.86514,0.85694,0.84697,0.83508,0.81342,0.80112,0.78061,0.75402,0.75153,0.7462,0.74125,0.71517,0.71513,0.65117,0.64636,0.64368,0.6242,0.62276,0.58443,0.56939,0.56315,0.54947,0.54081,0.52601,0.52143,0.4866,0.46547,0.40134,0.38446,0.37889,0.36902,0.34258,0.33728,0.33262,0.31121,0.29186,0.28489,0.27925,0.25939,0.23233,0.20589,0.18929,0.18593,0.15778,0.14881,0.14475,0.14298,0.13596,0.10975,0.10897,0.10485,0.098557,0.097357,0.08897,0.068797,0.068557,0.063607,0.061902,0.04498,0.041395,0.041141,0.038161,0.034417,0.034346,0.034058,0.031973,0.031954,0.03016,0.02949,0.021215,0.018276,0.018183,0.015297,0.014596,0.013567,0.01309,0.012816,0.012519,0.012423,0.012171,0.011201,0.011093,0.010873,0.010695,0.0094366,0.0081747,0.0067755,0.0063073,0.0054119,0.0045497,0.0042258,0.004067,0.0026405,0.0025092,0.0024166,0.0022422,0.0020372,0.0018737,0.0017499,0.0017287,0.0017155,0.001573,0.0012489,0.0012277,0.0011198,0.0009699,0.00089538,0.00088379,0.00055457,0.00055179,0.00050235,0.00041745,0.00040352,0.00035534,0.00034478,0.00027875,0.00024231,0.00017548,0.00017411,0.00011952,0.00011445,0.00011287,8.799e-05,8.6598e-05,7.9095e-05,7.0152e-05,6.7561e-05,6.5662e-05,5.8663e-05,5.7574e-05,5.6875e-05,5.198e-05,5.0363e-05,4.9949e-05,4.6337e-05,4.5099e-05,3.8797e-05,3.0158e-05,2.8826e-05,2.848e-05,2.5413e-05,2.424e-05,1.998e-05,1.418e-05,1.2738e-05,1.074e-05,1.0083e-05,8.458e-06,7.0929e-06,6.9914e-06,6.9136e-06,6.9046e-06,6.5536e-06,6.5247e-06,5.5365e-06,5.1329e-06,4.4495e-06,4.4212e-06,4.2531e-06,3.313e-06,3.2889e-06,2.9178e-06,2.5447e-06,1.99e-06,1.9264e-06,1.7554e-06,1.7192e-06,1.6309e-06,1.4926e-06,1.3024e-06,1.2976e-06,9.5047e-07,6.644e-07,6.3945e-07,6.1288e-07,6.0483e-07,4.8641e-07,4.2505e-07,2.6816e-07,2.6173e-07,2.492e-07,2.2939e-07,1.6834e-07,1.216e-07,8.4916e-08,7.6175e-08,7.1385e-08,6.0501e-08,4.3232e-08,3.726e-08,3.0702e-08,2.276e-08,1.7548e-08,1.6741e-08,1.0085e-08,9.4303e-09,9.2015e-09,8.1653e-09,7.7856e-09,5.3133e-09,4.5056e-09,4.2954e-09,4.2746e-09,3.8661e-09,3.3753e-09,3.169e-09,3.0812e-09,1.8781e-09,1.8769e-09,1.1962e-09,7.1105e-10,4.3768e-10,2.7879e-10,2.2912e-10,2.1761e-10,1.9287e-10,1.7353e-10,1.3518e-10,1.315e-10,8.0999e-11,7.1622e-11,5.5935e-11,4.1088e-11,3.4054e-11,3.3338e-11,2.8604e-11,2.5807e-11,2.0028e-11,1.3712e-11,1.3231e-11,1.1193e-11,8.5888e-12,6.9211e-12,6.8515e-12,3.235e-12,2.8593e-12,2.6945e-12,2.3135e-12,2.1372e-12,1.8858e-12,1.5444e-12,1.4246e-12,1.2728e-12,1.0613e-12,8.3836e-13,6.6904e-13,6.5389e-13,4.9596e-13,4.1324e-13,3.5173e-13,2.4352e-13,2.0575e-13,1.9352e-13,1.5561e-13,1.5357e-13,1.3954e-13,1.3376e-13,7.6238e-14,6.5957e-14,6.2344e-14,4.8179e-14,4.1471e-14,4.0537e-14,2.8528e-14,1.4469e-14,1.181e-14,1.0634e-14,8.3259e-15,8.1519e-15,6.1852e-15,6.0008e-15,4.1975e-15,3.3996e-15,2.2232e-15,2.1391e-15,2.0631e-15,2.0218e-15,1.8925e-15,1.793e-15,1.7349e-15,1.2253e-15,1.1391e-15,5.6868e-16,4.5009e-16,3.8532e-16,3.6231e-16,2.1698e-16,2.1504e-16,1.8147e-16,1.6761e-16,1.1233e-16,1.1091e-16,1.0763e-16,7.9808e-17,7.3457e-17,7.1324e-17,6.5199e-17,5.805e-17,5.2006e-17,4.9116e-17,2.7945e-17,2.7393e-17,2.036e-17,1.3017e-17,8.528e-18,4.7212e-18,4.6816e-18,3.7916e-18,2.9058e-18,2.0426e-18,2.0346e-18,1.8003e-18,1.0106e-18,8.8337e-19,8.7038e-19,4.3818e-19,3.7666e-19,3.4519e-19,2.6372e-19,2.0183e-19,1.2311e-19,1.1391e-19,7.826e-20,3.3619e-20,3.324e-20,3.1009e-20,2.69e-20,2.4059e-20,2.0962e-20,1.7813e-20,3.8742e-21,2.5876e-21,1.3902e-21,8.7415e-22,8.5434e-22,8.1041e-22,4.0452e-22,3.4378e-22,3.3916e-22,1.7381e-22,5.5739e-23,5.3751e-23,3.837e-23,3.5783e-23,1.6434e-23,1.3207e-23,8.185e-24,6.373e-24,4.8306e-24,4.5765e-24,3.2908e-24,3.1047e-24,3.02e-24,1.4233e-24,1.1356e-24,1.0326e-24,7.5779e-25,6.8728e-25,4.3895e-25,3.962e-25,3.223e-25,1.9245e-25,1.9151e-25,1.4938e-25,1.3735e-25,1.3733e-25,7.9267e-26,7.7899e-26,6.2072e-26,4.882e-26,2.8877e-26,1.7961e-26,1.276e-26,7.3948e-27,4.4558e-27,2.3034e-27,2.2423e-27,1.3469e-27,8.2366e-28,6.1589e-28,2.8199e-28,2.2407e-28,1.4034e-28,1.0633e-28,5.9473e-29,5.5923e-29,4.9257e-29,3.6713e-29,1.981e-29,1.048e-29,7.4713e-30,5.3257e-30,4.4622e-30,4.3523e-30,3.1556e-30,2.1746e-30,6.9361e-31,5.1095e-31,4.3169e-31,2.9733e-31,2.9656e-31,2.0526e-31,1.9606e-31,1.5267e-31,1.2484e-31,6.3288e-32,5.735e-32,3.3665e-32,2.0474e-32,3.9918e-33,2.9307e-33,2.524e-33,1.7049e-33,1.1789e-33,1.0245e-33,7.737e-34,6.322e-34,4.9192e-34,3.2474e-34,3.2401e-34,1.5314e-34,1.2543e-34,1.2031e-34,1.1767e-34,5.4727e-35,5.3781e-35,4.9776e-35,4.6958e-35,4.0373e-35,3.1424e-35,2.5092e-35,9.2137e-36,1.0715e-36,5.6213e-37,5.3092e-37,5.0643e-37,4.3461e-37,3.9914e-37,1.7747e-37,1.0381e-37,7.0201e-38,5.6374e-38,3.5622e-38,2.4091e-38,2.2398e-38,1.2908e-38,9.4415e-39,6.4401e-39,3.4764e-39,1.5383e-39,1.4601e-39,1.1071e-39,9.1332e-40,8.3767e-40,3.3211e-40,2.5762e-40,8.0782e-41,5.8496e-41,3.3085e-41,2.437e-41,2.2069e-41,1.2847e-41,1.1978e-41,1.0275e-41,7.3482e-42,3.8701e-42 1,0.95403,0.9674,0.96801,0.97159,0.9742,0.97745,0.98315,0.99343,0.99751,0.99797,0.99959,0.99974,1,0.99846,0.99734,0.99638,0.99056,0.98929,0.98779,0.98204,0.98136,0.98096,0.97572,0.97234,0.97223,0.96513,0.96445,0.96097,0.9605,0.96004,0.93215,0.89955,0.89633,0.88558,0.87562,0.86766,0.85797,0.84639,0.82523,0.81319,0.79306,0.76687,0.76442,0.75916,0.75428,0.72849,0.72845,0.66492,0.66013,0.65747,0.63803,0.6366,0.59828,0.58322,0.57695,0.56324,0.55454,0.53966,0.53506,0.5,0.47868,0.41382,0.39669,0.39104,0.38102,0.35414,0.34875,0.344,0.32218,0.30244,0.29531,0.28955,0.26924,0.24151,0.21437,0.19729,0.19383,0.16482,0.15555,0.15136,0.14953,0.14227,0.11512,0.11431,0.11003,0.1035,0.10225,0.093531,0.072512,0.072262,0.067093,0.065313,0.047601,0.043841,0.043574,0.040444,0.03651,0.036436,0.036132,0.033939,0.03392,0.032031,0.031325,0.022598,0.019491,0.019392,0.016338,0.015595,0.014504,0.013998,0.013707,0.013391,0.01329,0.013022,0.011992,0.011877,0.011643,0.011454,0.010116,0.0087725,0.0072809,0.0067813,0.005825,0.0049029,0.0045562,0.0043861,0.002856,0.002715,0.0026154,0.0024278,0.0022072,0.0020312,0.0018978,0.001875,0.0018607,0.0017071,0.0013573,0.0013344,0.0012179,0.0010558,0.00097513,0.00096259,0.00060571,0.00060269,0.00054899,0.0004567,0.00044155,0.00038911,0.00037761,0.00030566,0.00026591,0.00019292,0.00019143,0.00013168,0.00012611,0.00012438,9.7095e-05,9.5567e-05,8.7329e-05,7.7503e-05,7.4655e-05,7.2568e-05,6.487e-05,6.3673e-05,6.2904e-05,5.7516e-05,5.5736e-05,5.528e-05,5.1302e-05,4.9939e-05,4.2994e-05,3.3463e-05,3.1991e-05,3.161e-05,2.8222e-05,2.6925e-05,2.2214e-05,1.5792e-05,1.4193e-05,1.1977e-05,1.1248e-05,9.443e-06,7.9255e-06,7.8126e-06,7.726e-06,7.7161e-06,7.3256e-06,7.2934e-06,6.1936e-06,5.7441e-06,4.9826e-06,4.951e-06,4.7637e-06,3.7149e-06,3.688e-06,3.2736e-06,2.8568e-06,2.2366e-06,2.1654e-06,1.974e-06,1.9334e-06,1.8345e-06,1.6796e-06,1.4665e-06,1.4611e-06,1.0717e-06,7.503e-07,7.2224e-07,6.9236e-07,6.833e-07,5.5003e-07,4.8092e-07,3.04e-07,2.9673e-07,2.8259e-07,2.6021e-07,1.912e-07,1.3829e-07,9.6715e-08,8.6797e-08,8.136e-08,6.9001e-08,4.9371e-08,4.2576e-08,3.5108e-08,2.6057e-08,2.011e-08,1.9189e-08,1.1582e-08,1.0832e-08,1.0571e-08,9.3845e-09,8.9497e-09,6.1164e-09,5.1898e-09,4.9485e-09,4.9246e-09,4.4557e-09,3.892e-09,3.655e-09,3.5541e-09,2.1702e-09,2.1689e-09,1.3844e-09,8.2449e-10,5.0837e-10,3.2432e-10,2.6672e-10,2.5337e-10,2.2465e-10,2.022e-10,1.5764e-10,1.5337e-10,9.4625e-11,8.3705e-11,6.5425e-11,4.8108e-11,3.9897e-11,3.9061e-11,3.3531e-11,3.0262e-11,2.3505e-11,1.6112e-11,1.5549e-11,1.3161e-11,1.0108e-11,8.1506e-12,8.0689e-12,3.8189e-12,3.3766e-12,3.1827e-12,2.734e-12,2.5261e-12,2.2299e-12,1.8274e-12,1.6861e-12,1.5069e-12,1.2572e-12,9.9382e-13,7.9365e-13,7.7574e-13,5.8887e-13,4.9093e-13,4.1806e-13,2.8976e-13,2.4495e-13,2.3042e-13,1.8541e-13,1.8298e-13,1.6631e-13,1.5944e-13,9.1027e-14,7.8786e-14,7.4482e-14,5.7603e-14,4.9604e-14,4.849e-14,3.416e-14,1.736e-14,1.4177e-14,1.277e-14,1.0005e-14,9.7964e-15,7.4388e-15,7.2176e-15,5.0537e-15,4.0955e-15,2.6814e-15,2.5803e-15,2.4889e-15,2.4392e-15,2.2836e-15,2.1639e-15,2.0939e-15,1.4803e-15,1.3764e-15,6.8847e-16,5.4524e-16,4.6699e-16,4.3917e-16,2.6337e-16,2.6102e-16,2.2038e-16,2.0359e-16,1.3659e-16,1.3487e-16,1.3089e-16,9.7132e-17,8.9421e-17,8.6831e-17,7.9393e-17,7.071e-17,6.3367e-17,5.9854e-17,3.4105e-17,3.3433e-17,2.4869e-17,1.5918e-17,1.044e-17,5.7885e-18,5.74e-18,4.6514e-18,3.5671e-18,2.5097e-18,2.4999e-18,2.2127e-18,1.2439e-18,1.0877e-18,1.0717e-18,5.4046e-19,4.6476e-19,4.2601e-19,3.2569e-19,2.4942e-19,1.5232e-19,1.4097e-19,9.6938e-20,4.1728e-20,4.1259e-20,3.8496e-20,3.3407e-20,2.9886e-20,2.6048e-20,2.2144e-20,4.8335e-21,3.2314e-21,1.7386e-21,1.0944e-21,1.0697e-21,1.0148e-21,5.0734e-22,4.3133e-22,4.2555e-22,2.1842e-22,7.0225e-23,6.7726e-23,4.8383e-23,4.5127e-23,2.0762e-23,1.6693e-23,1.0356e-23,8.0681e-24,6.1193e-24,5.7981e-24,4.1722e-24,3.9367e-24,3.8296e-24,1.8078e-24,1.4431e-24,1.3125e-24,9.6383e-25,8.7434e-25,5.5896e-25,5.0463e-25,4.1069e-25,2.455e-25,2.4431e-25,1.9066e-25,1.7533e-25,1.7531e-25,1.0131e-25,9.9565e-26,7.9374e-26,6.246e-26,3.6986e-26,2.3027e-26,1.6371e-26,9.4984e-27,5.7294e-27,2.9659e-27,2.8873e-27,1.7362e-27,1.0628e-27,7.9516e-28,3.6465e-28,2.8989e-28,1.8173e-28,1.3777e-28,7.7149e-29,7.2552e-29,6.3919e-29,4.767e-29,2.5753e-29,1.3642e-29,9.7317e-30,6.9417e-30,5.8181e-30,5.6752e-30,4.1174e-30,2.8395e-30,9.0768e-31,6.6904e-31,5.6544e-31,3.8972e-31,3.8873e-31,2.6924e-31,2.5719e-31,2.0037e-31,1.6391e-31,8.3201e-32,7.5409e-32,4.4311e-32,2.6974e-32,5.2753e-33,3.8753e-33,3.3383e-33,2.2567e-33,1.5615e-33,1.3573e-33,1.0256e-33,8.3834e-34,6.5262e-34,4.3115e-34,4.3019e-34,2.0361e-34,1.6683e-34,1.6003e-34,1.5652e-34,7.2898e-35,7.164e-35,6.6315e-35,6.2566e-35,5.3808e-35,4.19e-35,3.3471e-35,1.2312e-35,1.4374e-36,7.5495e-37,7.131e-37,6.8026e-37,5.8395e-37,5.3637e-37,2.3882e-37,1.3984e-37,9.4627e-38,7.6017e-38,4.8072e-38,3.2533e-38,3.0251e-38,1.745e-38,1.2771e-38,8.7168e-39,4.7104e-39,2.0873e-39,1.9813e-39,1.503e-39,1.2403e-39,1.1378e-39,4.518e-40,3.5062e-40,1.1016e-40,7.9811e-41,4.5184e-41,3.3298e-41,3.016e-41,1.7573e-41,1.6386e-41,1.406e-41,1.0061e-41,5.3043e-42 1,0.93645,0.95218,0.95291,0.95722,0.96041,0.96442,0.97162,0.98559,0.99207,0.9929,0.99646,0.99693,0.99846,1,0.99985,0.99956,0.99663,0.99586,0.9949,0.99096,0.99047,0.99018,0.9863,0.98371,0.98362,0.97802,0.97747,0.97465,0.97427,0.97389,0.95031,0.92143,0.91853,0.90878,0.89968,0.89237,0.88342,0.87266,0.85284,0.84148,0.82238,0.79734,0.79498,0.78992,0.78522,0.76027,0.76023,0.69809,0.69336,0.69074,0.67152,0.6701,0.63198,0.61692,0.61065,0.59688,0.58814,0.57315,0.56851,0.53299,0.5113,0.44484,0.42718,0.42134,0.41097,0.38308,0.37747,0.37253,0.34976,0.32908,0.3216,0.31555,0.29416,0.26483,0.23598,0.21774,0.21404,0.18289,0.17289,0.16837,0.16639,0.15853,0.12902,0.12815,0.12347,0.11633,0.11496,0.1054,0.082233,0.081957,0.076231,0.074255,0.054517,0.050302,0.050003,0.046488,0.042059,0.041975,0.041634,0.039159,0.039137,0.037003,0.036205,0.026295,0.022746,0.022634,0.019132,0.018279,0.017024,0.016441,0.016106,0.015742,0.015625,0.015316,0.014126,0.013993,0.013723,0.013504,0.011954,0.010393,0.0086551,0.0080712,0.0069514,0.0058684,0.0054602,0.0052598,0.0034493,0.0032816,0.0031632,0.0029398,0.0026768,0.0024665,0.0023071,0.0022797,0.0022627,0.0020786,0.0016586,0.001631,0.0014907,0.0012951,0.0011976,0.0011824,0.00074908,0.0007454,0.00067991,0.00056709,0.00054854,0.00048425,0.00047014,0.00038169,0.00033269,0.00024241,0.00024056,0.0001663,0.00015936,0.00015721,0.00012312,0.0001212,0.00011088,9.8559e-05,9.4982e-05,9.236e-05,8.268e-05,8.1174e-05,8.0205e-05,7.3419e-05,7.1175e-05,7.06e-05,6.5581e-05,6.3859e-05,5.5081e-05,4.3003e-05,4.1135e-05,4.0651e-05,3.6343e-05,3.4694e-05,2.869e-05,2.0478e-05,1.8428e-05,1.5581e-05,1.4644e-05,1.2319e-05,1.036e-05,1.0214e-05,1.0103e-05,1.009e-05,9.5847e-06,9.5431e-06,8.1191e-06,7.5363e-06,6.5477e-06,6.5067e-06,6.2632e-06,4.8979e-06,4.8628e-06,4.3221e-06,3.7775e-06,2.9653e-06,2.872e-06,2.6207e-06,2.5675e-06,2.4375e-06,2.2338e-06,1.9533e-06,1.9461e-06,1.4322e-06,1.0064e-06,9.6918e-07,9.2949e-07,9.1746e-07,7.4018e-07,6.4808e-07,4.1159e-07,4.0185e-07,3.8289e-07,3.5285e-07,2.6009e-07,1.8872e-07,1.3245e-07,1.1899e-07,1.1161e-07,9.4805e-08,6.8053e-08,5.877e-08,4.8551e-08,3.6136e-08,2.7956e-08,2.6687e-08,1.6183e-08,1.5145e-08,1.4783e-08,1.3138e-08,1.2535e-08,8.5963e-09,7.3048e-09,6.9682e-09,6.9349e-09,6.2801e-09,5.4922e-09,5.1607e-09,5.0195e-09,3.0784e-09,3.0765e-09,1.9716e-09,1.1794e-09,7.3023e-10,4.6763e-10,3.852e-10,3.6608e-10,3.2492e-10,2.9269e-10,2.2867e-10,2.2252e-10,1.3784e-10,1.2205e-10,9.5591e-11,7.0464e-11,5.8526e-11,5.7309e-11,4.9256e-11,4.449e-11,3.4626e-11,2.3806e-11,2.2981e-11,1.9477e-11,1.4989e-11,1.2107e-11,1.1987e-11,5.706e-12,5.05e-12,4.7621e-12,4.0954e-12,3.7864e-12,3.3456e-12,2.7458e-12,2.535e-12,2.2675e-12,1.8944e-12,1.5002e-12,1.2e-12,1.1731e-12,8.9236e-13,7.4494e-13,6.3512e-13,4.4139e-13,3.7359e-13,3.5158e-13,2.8335e-13,2.7967e-13,2.5437e-13,2.4394e-13,1.3983e-13,1.2115e-13,1.1458e-13,8.8775e-14,7.6529e-14,7.4822e-14,5.2842e-14,2.6981e-14,2.2067e-14,1.989e-14,1.561e-14,1.5287e-14,1.163e-14,1.1286e-14,7.922e-15,6.4293e-15,4.2215e-15,4.0634e-15,3.9204e-15,3.8427e-15,3.5991e-15,3.4117e-15,3.3021e-15,2.3399e-15,2.1768e-15,1.0938e-15,8.6763e-16,7.4387e-16,6.9984e-16,4.2112e-16,4.1738e-16,3.5279e-16,3.2608e-16,2.1934e-16,2.166e-16,2.1025e-16,1.5632e-16,1.4399e-16,1.3984e-16,1.2794e-16,1.1403e-16,1.0226e-16,9.6627e-17,5.5257e-17,5.4176e-17,4.0374e-17,2.5916e-17,1.7042e-17,9.4842e-18,9.4053e-18,7.6315e-18,5.8622e-18,4.1334e-18,4.1174e-18,3.6471e-18,2.0576e-18,1.8006e-18,1.7743e-18,8.9853e-19,7.7339e-19,7.0928e-19,5.4313e-19,4.166e-19,2.5517e-19,2.3627e-19,1.6283e-19,7.0444e-20,6.9655e-20,6.5018e-20,5.6469e-20,5.0551e-20,4.4095e-20,3.7521e-20,8.2625e-21,5.5367e-21,2.9895e-21,1.8867e-21,1.8443e-21,1.7502e-21,8.7845e-22,7.4751e-22,7.3755e-22,3.7997e-22,1.2294e-22,1.1858e-22,8.4872e-23,7.9192e-23,3.6588e-23,2.9453e-23,1.832e-23,1.4292e-23,1.0856e-23,1.0289e-23,7.4167e-24,7.0003e-24,6.8108e-24,3.228e-24,2.58e-24,2.3476e-24,1.7268e-24,1.5673e-24,1.0043e-24,9.0717e-25,7.391e-25,4.43e-25,4.4086e-25,3.445e-25,3.1694e-25,3.169e-25,1.8366e-25,1.8051e-25,1.4407e-25,1.1351e-25,6.7398e-26,4.2064e-26,2.9957e-26,1.7429e-26,1.054e-26,5.4743e-27,5.3301e-27,3.2132e-27,1.9718e-27,1.4774e-27,6.8014e-28,5.413e-28,3.4013e-28,2.5819e-28,1.45e-28,1.364e-28,1.2025e-28,8.9806e-29,4.8662e-29,2.5856e-29,1.8475e-29,1.32e-29,1.1073e-29,1.0802e-29,7.8488e-30,5.4224e-30,1.7428e-30,1.2864e-30,1.0881e-30,7.5127e-31,7.4935e-31,5.1991e-31,4.9676e-31,3.8746e-31,3.1726e-31,1.6155e-31,1.4648e-31,8.6289e-32,5.2647e-32,1.0374e-32,7.6313e-33,6.5784e-33,4.4549e-33,3.0877e-33,2.6856e-33,2.0318e-33,1.6624e-33,1.2955e-33,8.575e-34,8.556e-34,4.063e-34,3.332e-34,3.1969e-34,3.1271e-34,1.4614e-34,1.4363e-34,1.33e-34,1.2551e-34,1.0801e-34,8.4201e-35,6.733e-35,2.4877e-35,2.9314e-36,1.544e-36,1.4587e-36,1.3918e-36,1.1956e-36,1.0986e-36,4.9084e-37,2.8806e-37,1.9525e-37,1.57e-37,9.9478e-38,6.7434e-38,6.2723e-38,3.6266e-38,2.6576e-38,1.8169e-38,9.8434e-39,4.3766e-39,4.1553e-39,3.1558e-39,2.6064e-39,2.3917e-39,9.5336e-40,7.4064e-40,2.338e-40,1.6962e-40,9.625e-41,7.102e-41,6.4353e-41,3.7578e-41,3.505e-41,3.0094e-41,2.1562e-41,1.1398e-41 1,0.93041,0.94685,0.94762,0.95215,0.95551,0.95976,0.96742,0.98251,0.98974,0.99068,0.99485,0.99541,0.99734,0.99985,1,0.99993,0.99791,0.99729,0.9965,0.99314,0.99271,0.99246,0.98901,0.98667,0.98659,0.98148,0.98097,0.97836,0.97801,0.97766,0.95547,0.92781,0.92502,0.9156,0.90679,0.89969,0.89099,0.88051,0.86115,0.85002,0.83128,0.80664,0.80431,0.79932,0.79468,0.77004,0.77,0.70838,0.70369,0.70107,0.68195,0.68054,0.64253,0.6275,0.62123,0.60746,0.59871,0.58371,0.57906,0.54345,0.52166,0.45476,0.43695,0.43105,0.42058,0.39239,0.38672,0.38172,0.35866,0.3377,0.33012,0.32397,0.30225,0.27243,0.24304,0.22444,0.22067,0.18883,0.17861,0.17398,0.17195,0.1639,0.13364,0.13274,0.12794,0.1206,0.11919,0.10936,0.085491,0.085205,0.079297,0.077257,0.056851,0.052486,0.052177,0.048534,0.043941,0.043854,0.043499,0.040931,0.040909,0.038693,0.037863,0.027558,0.023861,0.023744,0.020092,0.019201,0.01789,0.017282,0.016931,0.016551,0.016428,0.016106,0.014862,0.014723,0.01444,0.014211,0.012589,0.010954,0.0091318,0.0085191,0.0073433,0.006205,0.0057756,0.0055648,0.0036574,0.0034805,0.0033556,0.0031198,0.002842,0.0026198,0.0024513,0.0024224,0.0024044,0.0022097,0.0017652,0.001736,0.0015873,0.0013799,0.0012765,0.0012604,0.00080022,0.0007963,0.00072664,0.00060657,0.00058681,0.00051833,0.0005033,0.00040898,0.00035669,0.00026026,0.00025828,0.00017883,0.0001714,0.00016909,0.00013256,0.0001305,0.00011944,0.00010621,0.00010237,9.9558e-05,8.9164e-05,8.7545e-05,8.6505e-05,7.9214e-05,7.6802e-05,7.6184e-05,7.0789e-05,6.8938e-05,5.9496e-05,4.6495e-05,4.4483e-05,4.3961e-05,3.932e-05,3.7542e-05,3.1068e-05,2.2204e-05,1.9989e-05,1.6912e-05,1.5898e-05,1.3382e-05,1.1262e-05,1.1104e-05,1.0983e-05,1.0969e-05,1.0422e-05,1.0377e-05,8.8334e-06,8.2015e-06,7.1292e-06,7.0847e-06,6.8205e-06,5.3384e-06,5.3002e-06,4.7129e-06,4.121e-06,3.2377e-06,3.1361e-06,2.8627e-06,2.8047e-06,2.6632e-06,2.4414e-06,2.1357e-06,2.1279e-06,1.5676e-06,1.1029e-06,1.0622e-06,1.0189e-06,1.0057e-06,8.1195e-07,7.1123e-07,4.5236e-07,4.4169e-07,4.2091e-07,3.88e-07,2.8627e-07,2.0793e-07,1.4609e-07,1.3129e-07,1.2317e-07,1.0468e-07,7.5216e-08,6.4984e-08,5.3715e-08,4.0015e-08,3.098e-08,2.9579e-08,1.7963e-08,1.6814e-08,1.6413e-08,1.4592e-08,1.3924e-08,9.5592e-09,8.1268e-09,7.7534e-09,7.7164e-09,6.9898e-09,6.1152e-09,5.7471e-09,5.5903e-09,3.4332e-09,3.4311e-09,2.2015e-09,1.3188e-09,8.1759e-10,5.2421e-10,4.3203e-10,4.1064e-10,3.6458e-10,3.2851e-10,2.5682e-10,2.4993e-10,1.5501e-10,1.373e-10,1.076e-10,7.9379e-11,6.5962e-11,6.4593e-11,5.5538e-11,5.0178e-11,3.9078e-11,2.6892e-11,2.5962e-11,2.2012e-11,1.6951e-11,1.3699e-11,1.3563e-11,6.4683e-12,5.7263e-12,5.4006e-12,4.6463e-12,4.2965e-12,3.7974e-12,3.1181e-12,2.8792e-12,2.5761e-12,2.1531e-12,1.706e-12,1.3654e-12,1.3349e-12,1.016e-12,8.4855e-13,7.2372e-13,5.034e-13,4.2623e-13,4.0118e-13,3.2348e-13,3.1929e-13,2.9047e-13,2.7858e-13,1.5989e-13,1.3858e-13,1.3108e-13,1.0162e-13,8.7628e-14,8.5679e-14,6.0556e-14,3.0966e-14,2.5337e-14,2.2843e-14,1.7937e-14,1.7566e-14,1.3372e-14,1.2978e-14,9.1164e-15,7.402e-15,4.8646e-15,4.6828e-15,4.5183e-15,4.429e-15,4.1487e-15,3.9332e-15,3.8072e-15,2.6997e-15,2.5119e-15,1.2641e-15,1.0032e-15,8.6034e-16,8.0952e-16,4.8763e-16,4.8331e-16,4.0866e-16,3.7778e-16,2.5432e-16,2.5115e-16,2.4381e-16,1.8138e-16,1.671e-16,1.623e-16,1.4851e-16,1.324e-16,1.1876e-16,1.1223e-16,6.4251e-17,6.2996e-17,4.6975e-17,3.0181e-17,1.9863e-17,1.1067e-17,1.0975e-17,8.9087e-18,6.8468e-18,4.831e-18,4.8123e-18,4.2637e-18,2.408e-18,2.1078e-18,2.0772e-18,1.0533e-18,9.0683e-19,8.318e-19,6.3727e-19,4.8906e-19,2.9983e-19,2.7766e-19,1.9149e-19,8.2972e-20,8.2045e-20,7.6592e-20,6.6539e-20,5.9578e-20,5.1982e-20,4.4246e-20,9.7704e-21,6.5519e-21,3.5415e-21,2.237e-21,2.1868e-21,2.0754e-21,1.0429e-21,8.8773e-22,8.7593e-22,4.5179e-22,1.4646e-22,1.4128e-22,1.0118e-22,9.4418e-23,4.3681e-23,3.5175e-23,2.1897e-23,1.7089e-23,1.2987e-23,1.231e-23,8.8785e-24,8.3809e-24,8.1543e-24,3.8697e-24,3.094e-24,2.8157e-24,2.0722e-24,1.8811e-24,1.2063e-24,1.0898e-24,8.8819e-25,5.3281e-25,5.3025e-25,4.1451e-25,3.8141e-25,3.8136e-25,2.2121e-25,2.1743e-25,1.736e-25,1.3683e-25,8.1312e-26,5.0786e-26,3.6189e-26,2.1073e-26,1.2754e-26,6.6311e-27,6.4566e-27,3.8955e-27,2.3923e-27,1.7933e-27,8.2656e-28,6.5807e-28,4.138e-28,3.1425e-28,1.7664e-28,1.6618e-28,1.4653e-28,1.0948e-28,5.938e-29,3.1581e-29,2.2577e-29,1.6139e-29,1.3542e-29,1.3211e-29,9.6041e-30,6.6387e-30,2.1373e-30,1.5784e-30,1.3353e-30,9.225e-31,9.2015e-31,6.3876e-31,6.1036e-31,4.7623e-31,3.9006e-31,1.9882e-31,1.8031e-31,1.0629e-31,6.4899e-32,1.2818e-32,9.4335e-33,8.1337e-33,5.5112e-33,3.8219e-33,3.3249e-33,2.5164e-33,2.0594e-33,1.6056e-33,1.0633e-33,1.061e-33,5.0436e-34,4.1373e-34,3.9697e-34,3.8832e-34,1.8166e-34,1.7855e-34,1.6535e-34,1.5606e-34,1.3433e-34,1.0475e-34,8.379e-35,3.1001e-35,3.6638e-36,1.9314e-36,1.8249e-36,1.7413e-36,1.4961e-36,1.3749e-36,6.1496e-37,3.6116e-37,2.4493e-37,1.97e-37,1.249e-37,8.4711e-38,7.8801e-38,4.5596e-38,3.3426e-38,2.2863e-38,1.2397e-38,5.5179e-39,5.2392e-39,3.9804e-39,3.2883e-39,3.0178e-39,1.2044e-39,9.3594e-40,2.959e-40,2.1475e-40,1.2195e-40,9.002e-41,8.1579e-41,4.7669e-41,4.4466e-41,3.8187e-41,2.7372e-41,1.4481e-41 1,0.92607,0.94299,0.94379,0.94848,0.95196,0.95636,0.96433,0.9802,0.98794,0.98897,0.99355,0.99418,0.99638,0.99956,0.99993,1,0.99862,0.99811,0.99744,0.99448,0.9941,0.99387,0.99072,0.98856,0.98849,0.98371,0.98323,0.98078,0.98044,0.98011,0.95891,0.93211,0.92939,0.92021,0.9116,0.90465,0.89613,0.88585,0.86681,0.85586,0.83737,0.81301,0.81071,0.80578,0.80119,0.77676,0.77672,0.7155,0.71083,0.70822,0.68918,0.68777,0.64986,0.63484,0.62858,0.61482,0.60607,0.59106,0.5864,0.55073,0.52889,0.4617,0.44379,0.43786,0.42731,0.39892,0.39321,0.38817,0.36491,0.34377,0.3361,0.3299,0.30795,0.27779,0.24803,0.22918,0.22535,0.19305,0.18266,0.17796,0.1759,0.16772,0.13692,0.136,0.13112,0.12363,0.1222,0.11218,0.087814,0.087523,0.081485,0.079401,0.058522,0.05405,0.053733,0.05,0.04529,0.045201,0.044837,0.042202,0.042179,0.039905,0.039054,0.028466,0.024663,0.024543,0.020783,0.019865,0.018515,0.017888,0.017526,0.017134,0.017008,0.016676,0.015393,0.015249,0.014957,0.014722,0.013048,0.01136,0.0094768,0.0088435,0.0076273,0.0064491,0.0060045,0.0057861,0.0038088,0.0036252,0.0034955,0.0032508,0.0029623,0.0027315,0.0025564,0.0025263,0.0025076,0.0023053,0.0018429,0.0018125,0.0016578,0.0014419,0.0013342,0.0013174,0.00083765,0.00083357,0.00076087,0.00063551,0.00061487,0.00054333,0.00052761,0.00042901,0.00037432,0.00027338,0.00027131,0.00018806,0.00018026,0.00017784,0.00013951,0.00013736,0.00012574,0.00011186,0.00010783,0.00010487,9.3951e-05,9.225e-05,9.1157e-05,8.3494e-05,8.0959e-05,8.0309e-05,7.4637e-05,7.2691e-05,6.2761e-05,4.9079e-05,4.6961e-05,4.6412e-05,4.1524e-05,3.9652e-05,3.283e-05,2.3484e-05,2.1148e-05,1.7899e-05,1.683e-05,1.4173e-05,1.1932e-05,1.1765e-05,1.1637e-05,1.1622e-05,1.1044e-05,1.0996e-05,9.3648e-06,8.6965e-06,7.5622e-06,7.5151e-06,7.2356e-06,5.6667e-06,5.6263e-06,5.0043e-06,4.3772e-06,3.4409e-06,3.3332e-06,3.0433e-06,2.9818e-06,2.8317e-06,2.5964e-06,2.2721e-06,2.2638e-06,1.6689e-06,1.1751e-06,1.1319e-06,1.0858e-06,1.0718e-06,8.6574e-07,7.5858e-07,4.8297e-07,4.716e-07,4.4946e-07,4.1439e-07,3.0595e-07,2.2238e-07,1.5636e-07,1.4055e-07,1.3188e-07,1.1212e-07,8.0619e-08,6.9675e-08,5.7615e-08,4.2947e-08,3.3268e-08,3.1765e-08,1.9311e-08,1.8078e-08,1.7648e-08,1.5693e-08,1.4976e-08,1.0289e-08,8.7505e-09,8.3492e-09,8.3094e-09,7.5285e-09,6.5882e-09,6.1924e-09,6.0237e-09,3.7029e-09,3.7007e-09,2.3765e-09,1.425e-09,8.8425e-10,5.6741e-10,4.678e-10,4.4468e-10,3.9489e-10,3.5589e-10,2.7835e-10,2.709e-10,1.6816e-10,1.4898e-10,1.1681e-10,8.6217e-11,7.1667e-11,7.0183e-11,6.036e-11,5.4544e-11,4.2497e-11,2.9264e-11,2.8253e-11,2.3962e-11,1.8461e-11,1.4925e-11,1.4777e-11,7.056e-12,6.2479e-12,5.8931e-12,5.0713e-12,4.6901e-12,4.1461e-12,3.4055e-12,3.1451e-12,2.8145e-12,2.3531e-12,1.8652e-12,1.4933e-12,1.46e-12,1.1118e-12,9.2877e-13,7.9235e-13,5.5146e-13,4.6705e-13,4.3964e-13,3.5462e-13,3.5002e-13,3.1848e-13,3.0547e-13,1.7548e-13,1.5212e-13,1.439e-13,1.116e-13,9.6261e-14,9.4122e-14,6.6559e-14,3.4072e-14,2.7886e-14,2.5146e-14,1.9752e-14,1.9345e-14,1.4732e-14,1.4299e-14,1.0049e-14,8.162e-15,5.3675e-15,5.1672e-15,4.986e-15,4.8875e-15,4.5787e-15,4.3411e-15,4.2023e-15,2.9814e-15,2.7743e-15,1.3976e-15,1.1094e-15,9.5171e-16,8.9556e-16,5.3986e-16,5.3509e-16,4.5254e-16,4.184e-16,2.8183e-16,2.7832e-16,2.7019e-16,2.0109e-16,1.8528e-16,1.7997e-16,1.647e-16,1.4685e-16,1.3174e-16,1.2451e-16,7.1339e-17,6.9947e-17,5.2179e-17,3.3545e-17,2.209e-17,1.2317e-17,1.2215e-17,9.9185e-18,7.6257e-18,5.3831e-18,5.3622e-18,4.7517e-18,2.6858e-18,2.3514e-18,2.3172e-18,1.176e-18,1.0127e-18,9.2905e-19,7.1203e-19,5.4662e-19,3.3534e-19,3.1057e-19,2.1429e-19,9.2953e-20,9.1916e-20,8.5815e-20,7.4565e-20,6.6773e-20,5.827e-20,4.9608e-20,1.0976e-20,7.3638e-21,3.9835e-21,2.5176e-21,2.4612e-21,2.336e-21,1.1749e-21,1.0002e-21,9.8695e-22,5.0947e-22,1.6538e-22,1.5955e-22,1.143e-22,1.0667e-22,4.9397e-23,3.9788e-23,2.4783e-23,1.9347e-23,1.4707e-23,1.3942e-23,1.0059e-23,9.4961e-24,9.2397e-24,4.3886e-24,3.5098e-24,3.1945e-24,2.3518e-24,2.1351e-24,1.3699e-24,1.2377e-24,1.009e-24,6.0565e-25,6.0273e-25,4.7131e-25,4.3371e-25,4.3366e-25,2.517e-25,2.474e-25,1.9758e-25,1.5577e-25,9.2625e-26,5.7883e-26,4.1262e-26,2.4042e-26,1.4559e-26,7.5749e-27,7.3758e-27,4.4525e-27,2.7358e-27,2.0515e-27,9.4636e-28,7.5364e-28,4.7413e-28,3.6018e-28,2.0258e-28,1.9059e-28,1.6808e-28,1.2562e-28,6.8178e-29,3.6285e-29,2.5949e-29,1.8556e-29,1.5573e-29,1.5193e-29,1.1048e-29,7.6401e-30,2.4626e-30,1.8192e-30,1.5393e-30,1.0638e-30,1.0611e-30,7.3689e-31,7.0416e-31,5.4956e-31,4.5022e-31,2.2964e-31,2.0828e-31,1.2285e-31,7.5045e-32,1.4846e-32,1.0929e-32,9.4249e-33,6.3885e-33,4.4319e-33,3.8561e-33,2.9193e-33,2.3896e-33,1.8634e-33,1.2346e-33,1.2319e-33,5.8603e-34,4.8082e-34,4.6136e-34,4.5131e-34,2.1129e-34,2.0767e-34,1.9233e-34,1.8153e-34,1.5628e-34,1.219e-34,9.7528e-35,3.6118e-35,4.2773e-36,2.2562e-36,2.1319e-36,2.0344e-36,1.7481e-36,1.6066e-36,7.1915e-37,4.2256e-37,2.8667e-37,2.3063e-37,1.4628e-37,9.9246e-38,9.2329e-38,5.345e-38,3.9196e-38,2.6819e-38,1.455e-38,6.481e-39,6.154e-39,4.6766e-39,3.8641e-39,3.5465e-39,1.4165e-39,1.1011e-39,3.4847e-40,2.5298e-40,1.4373e-40,1.0613e-40,9.6183e-41,5.623e-41,5.2455e-41,4.5054e-41,3.2304e-41,1.7099e-41 1,0.90594,0.92489,0.92579,0.93112,0.9351,0.94016,0.94946,0.96862,0.97854,0.9799,0.98627,0.98719,0.99056,0.99663,0.99791,0.99862,1,0.99996,0.99982,0.99861,0.99842,0.9983,0.99648,0.9951,0.99505,0.99175,0.99141,0.98962,0.98937,0.98912,0.97227,0.94935,0.94696,0.93884,0.93115,0.92491,0.91719,0.90781,0.89028,0.8801,0.8628,0.83981,0.83762,0.83294,0.82857,0.80521,0.80517,0.7459,0.74134,0.7388,0.72015,0.71876,0.6814,0.66652,0.66031,0.64663,0.63791,0.62292,0.61826,0.58246,0.56043,0.49219,0.47387,0.4678,0.45699,0.42778,0.42189,0.41669,0.39264,0.37069,0.36272,0.35626,0.33335,0.30174,0.2704,0.25047,0.24641,0.21206,0.20097,0.19594,0.19373,0.18497,0.15184,0.15084,0.14556,0.13747,0.13592,0.12503,0.098469,0.098149,0.091533,0.089246,0.066235,0.061281,0.060929,0.056783,0.051543,0.051444,0.051039,0.0481,0.048075,0.045535,0.044583,0.032704,0.028415,0.028279,0.024023,0.022981,0.021448,0.020734,0.020323,0.019877,0.019733,0.019354,0.017892,0.017728,0.017395,0.017126,0.015211,0.013276,0.01111,0.01038,0.0089749,0.0076099,0.0070935,0.0068397,0.0045326,0.0043176,0.0041654,0.0038782,0.0035391,0.0032674,0.003061,0.0030256,0.0030035,0.0027647,0.0022176,0.0021816,0.0019979,0.0017413,0.001613,0.001593,0.0010194,0.0010145,0.00092723,0.00077638,0.00075151,0.00066519,0.00064621,0.00052691,0.00046057,0.00033776,0.00033523,0.00023346,0.0002239,0.00022094,0.00017385,0.0001712,0.00015689,0.00013977,0.00013479,0.00013114,0.00011764,0.00011554,0.00011419,0.0001047,0.00010156,0.00010075,9.3721e-05,9.1306e-05,7.8972e-05,6.1937e-05,5.9294e-05,5.8609e-05,5.2506e-05,5.0165e-05,4.1626e-05,2.9891e-05,2.6949e-05,2.2853e-05,2.1502e-05,1.8142e-05,1.5303e-05,1.5091e-05,1.4928e-05,1.491e-05,1.4176e-05,1.4115e-05,1.2042e-05,1.1192e-05,9.7469e-06,9.6868e-06,9.3303e-06,7.3264e-06,7.2748e-06,6.4786e-06,5.6749e-06,4.4723e-06,4.3338e-06,3.9606e-06,3.8814e-06,3.688e-06,3.3846e-06,2.9659e-06,2.9552e-06,2.1854e-06,1.5443e-06,1.488e-06,1.428e-06,1.4098e-06,1.1412e-06,1.0013e-06,6.403e-07,6.2537e-07,5.963e-07,5.5021e-07,4.0741e-07,2.9704e-07,2.0955e-07,1.8855e-07,1.7702e-07,1.5072e-07,1.0871e-07,9.4076e-08,7.7928e-08,5.8243e-08,4.522e-08,4.3196e-08,2.6376e-08,2.4707e-08,2.4123e-08,2.1474e-08,2.0501e-08,1.4132e-08,1.2035e-08,1.1487e-08,1.1433e-08,1.0368e-08,9.0831e-09,8.5418e-09,8.3112e-09,5.1302e-09,5.1271e-09,3.3048e-09,1.9901e-09,1.2397e-09,7.9836e-10,6.5923e-10,6.269e-10,5.5724e-10,5.0263e-10,3.9388e-10,3.8342e-10,2.389e-10,2.1186e-10,1.6642e-10,1.2312e-10,1.0249e-10,1.0038e-10,8.6435e-11,7.8167e-11,6.1018e-11,4.2137e-11,4.0693e-11,3.4554e-11,2.6674e-11,2.1599e-11,2.1387e-11,1.0268e-11,9.1001e-12,8.587e-12,7.3976e-12,6.8455e-12,6.0569e-12,4.9821e-12,4.6038e-12,4.1231e-12,3.4516e-12,2.7405e-12,2.1976e-12,2.1489e-12,1.6396e-12,1.3714e-12,1.1713e-12,8.1726e-13,6.9297e-13,6.5259e-13,5.2716e-13,5.2038e-13,4.7379e-13,4.5457e-13,2.6213e-13,2.2746e-13,2.1525e-13,1.6723e-13,1.4438e-13,1.412e-13,1.0008e-13,5.1464e-14,4.2177e-14,3.8058e-14,2.9943e-14,2.9329e-14,2.2376e-14,2.1722e-14,1.5302e-14,1.2445e-14,8.2064e-15,7.9022e-15,7.6268e-15,7.4771e-15,7.0077e-15,6.6464e-15,6.4351e-15,4.5757e-15,4.2598e-15,2.1553e-15,1.7135e-15,1.4713e-15,1.385e-15,8.3757e-16,8.3021e-16,7.0288e-16,6.5017e-16,4.3902e-16,4.3358e-16,4.21e-16,3.1391e-16,2.8937e-16,2.8113e-16,2.5741e-16,2.2968e-16,2.0619e-16,1.9494e-16,1.1207e-16,1.099e-16,8.2129e-17,5.294e-17,3.495e-17,1.9556e-17,1.9395e-17,1.5768e-17,1.2142e-17,8.5886e-18,8.5556e-18,7.5869e-18,4.3026e-18,3.7698e-18,3.7154e-18,1.8931e-18,1.6316e-18,1.4975e-18,1.1495e-18,8.8379e-19,5.437e-19,5.0376e-19,3.4833e-19,1.5181e-19,1.5012e-19,1.4021e-19,1.2193e-19,1.0925e-19,9.5414e-20,8.1303e-20,1.8139e-20,1.2196e-20,6.6197e-21,4.1941e-21,4.1006e-21,3.8931e-21,1.9653e-21,1.6746e-21,1.6525e-21,8.5601e-22,2.7953e-22,2.6972e-22,1.9357e-22,1.8072e-22,8.4019e-23,6.7751e-23,4.2304e-23,3.3067e-23,2.5172e-23,2.3868e-23,1.725e-23,1.6289e-23,1.5852e-23,7.5577e-24,6.0511e-24,5.5101e-24,4.0628e-24,3.6903e-24,2.373e-24,2.1452e-24,1.7506e-24,1.0534e-24,1.0484e-24,8.2079e-25,7.5563e-25,7.5554e-25,4.397e-25,4.3223e-25,3.4558e-25,2.7277e-25,1.626e-25,1.0185e-25,7.2722e-26,4.2483e-26,2.5789e-26,1.346e-26,1.3108e-26,7.932e-27,4.885e-27,3.6681e-27,1.6983e-27,1.3539e-27,8.5362e-28,6.493e-28,3.6617e-28,3.4461e-28,3.0407e-28,2.2758e-28,1.2386e-28,6.611e-29,4.7352e-29,3.3913e-29,2.8483e-29,2.7792e-29,2.024e-29,1.402e-29,4.542e-30,3.3599e-30,2.8451e-30,1.9695e-30,1.9645e-30,1.3665e-30,1.3061e-30,1.0204e-30,8.3672e-31,4.2805e-31,3.884e-31,2.2963e-31,1.4058e-31,2.8007e-32,2.0646e-32,1.7815e-32,1.2096e-32,8.4047e-33,7.3172e-33,5.5461e-33,4.5437e-33,3.547e-33,2.3542e-33,2.349e-33,1.121e-33,9.2053e-34,8.8343e-34,8.6427e-34,4.0593e-34,3.99e-34,3.6965e-34,3.4898e-34,3.0063e-34,2.3474e-34,1.8798e-34,6.9906e-35,8.3522e-36,4.4172e-36,4.1748e-36,3.9846e-36,3.426e-36,3.1497e-36,1.4145e-36,8.3296e-37,5.6599e-37,4.5573e-37,2.8959e-37,1.9679e-37,1.8312e-37,1.0624e-37,7.8007e-38,5.3456e-38,2.9072e-38,1.2991e-38,1.2338e-38,9.3864e-39,7.7615e-39,7.1259e-39,2.8566e-39,2.2226e-39,7.0658e-40,5.136e-40,2.9245e-40,2.1619e-40,1.9601e-40,1.1483e-40,1.0715e-40,9.2081e-41,6.6108e-41,3.5078e-41 1,0.90227,0.92156,0.92248,0.92791,0.93197,0.93715,0.94667,0.96637,0.97666,0.97808,0.98475,0.98572,0.98929,0.99586,0.99729,0.99811,0.99996,1,0.99995,0.99905,0.99888,0.99878,0.99719,0.99595,0.9959,0.99286,0.99255,0.99087,0.99063,0.9904,0.97431,0.95207,0.94975,0.94182,0.9343,0.92817,0.9206,0.91138,0.89413,0.88409,0.86701,0.84427,0.8421,0.83746,0.83313,0.80997,0.80993,0.75104,0.7465,0.74398,0.7254,0.72402,0.68678,0.67194,0.66573,0.65207,0.64336,0.62839,0.62373,0.58793,0.56588,0.49749,0.47911,0.47301,0.46216,0.43283,0.4269,0.42168,0.3975,0.37542,0.3674,0.3609,0.33783,0.30598,0.27437,0.25424,0.25015,0.21545,0.20424,0.19915,0.19692,0.18805,0.15451,0.15351,0.14816,0.13995,0.13838,0.12735,0.1004,0.10007,0.093354,0.091031,0.06764,0.062599,0.062241,0.058022,0.052687,0.052586,0.052173,0.04918,0.049154,0.046566,0.045597,0.033484,0.029106,0.028967,0.024621,0.023557,0.02199,0.021261,0.020841,0.020385,0.020238,0.01985,0.018355,0.018187,0.017847,0.017571,0.015613,0.013632,0.011415,0.010667,0.0092267,0.0078272,0.0072976,0.0070371,0.0046688,0.0044479,0.0042916,0.0039964,0.0036479,0.0033686,0.0031564,0.0031199,0.0030972,0.0028516,0.0022886,0.0022515,0.0020624,0.0017982,0.001666,0.0016454,0.0010541,0.0010491,0.000959,0.00080333,0.00077765,0.00068853,0.00066893,0.00054569,0.00047713,0.00035016,0.00034755,0.00024223,0.00023234,0.00022926,0.00018049,0.00017775,0.00016293,0.00014518,0.00014002,0.00013624,0.00012224,0.00012006,0.00011866,0.00010882,0.00010556,0.00010473,9.7432e-05,9.4927e-05,8.2128e-05,6.4445e-05,6.1701e-05,6.0989e-05,5.465e-05,5.2219e-05,4.3346e-05,3.1147e-05,2.8087e-05,2.3825e-05,2.242e-05,1.8923e-05,1.5967e-05,1.5746e-05,1.5577e-05,1.5557e-05,1.4793e-05,1.473e-05,1.257e-05,1.1684e-05,1.0178e-05,1.0116e-05,9.7442e-06,7.6549e-06,7.601e-06,6.7706e-06,5.9321e-06,4.6771e-06,4.5325e-06,4.1428e-06,4.0601e-06,3.8582e-06,3.5413e-06,3.1039e-06,3.0928e-06,2.2884e-06,1.6181e-06,1.5592e-06,1.4964e-06,1.4774e-06,1.1963e-06,1.0499e-06,6.719e-07,6.5626e-07,6.258e-07,5.775e-07,4.2784e-07,3.1209e-07,2.2029e-07,1.9826e-07,1.8615e-07,1.5854e-07,1.144e-07,9.9028e-08,8.2055e-08,6.1356e-08,4.7656e-08,4.5526e-08,2.782e-08,2.6062e-08,2.5447e-08,2.2657e-08,2.1632e-08,1.4919e-08,1.2708e-08,1.2131e-08,1.2074e-08,1.095e-08,9.5956e-09,9.0246e-09,8.7813e-09,5.4242e-09,5.421e-09,3.4964e-09,2.107e-09,1.3134e-09,8.4636e-10,6.9905e-10,6.6482e-10,5.9103e-10,5.3319e-10,4.1797e-10,4.0689e-10,2.5369e-10,2.25e-10,1.768e-10,1.3086e-10,1.0896e-10,1.0672e-10,9.1909e-11,8.3129e-11,6.4912e-11,4.4848e-11,4.3313e-11,3.6787e-11,2.8407e-11,2.3009e-11,2.2783e-11,1.0948e-11,9.7047e-12,9.1581e-12,7.8911e-12,7.3029e-12,6.4626e-12,5.3172e-12,4.9138e-12,4.4014e-12,3.6854e-12,2.9269e-12,2.3478e-12,2.2958e-12,1.7522e-12,1.466e-12,1.2523e-12,8.7416e-13,7.4136e-13,6.9821e-13,5.6416e-13,5.5691e-13,5.0711e-13,4.8656e-13,2.8076e-13,2.4367e-13,2.306e-13,1.7921e-13,1.5476e-13,1.5134e-13,1.0732e-13,5.5227e-14,4.5271e-14,4.0855e-14,3.2152e-14,3.1494e-14,2.4035e-14,2.3333e-14,1.6444e-14,1.3377e-14,8.8248e-15,8.4981e-15,8.2022e-15,8.0414e-15,7.5371e-15,7.1489e-15,6.9219e-15,4.9237e-15,4.5841e-15,2.3211e-15,1.8458e-15,1.5852e-15,1.4923e-15,9.0295e-16,8.9503e-16,7.5789e-16,7.0112e-16,4.7362e-16,4.6776e-16,4.542e-16,3.3877e-16,3.1232e-16,3.0343e-16,2.7786e-16,2.4796e-16,2.2262e-16,2.1048e-16,1.2108e-16,1.1874e-16,8.876e-17,5.7241e-17,3.7805e-17,2.1167e-17,2.0992e-17,1.707e-17,1.3148e-17,9.3038e-18,9.268e-18,8.2197e-18,4.6642e-18,4.0871e-18,4.0282e-18,2.0538e-18,1.7704e-18,1.6251e-18,1.2477e-18,9.5957e-19,5.906e-19,5.4726e-19,3.7854e-19,1.6511e-19,1.6328e-19,1.5251e-19,1.3264e-19,1.1886e-19,1.0382e-19,8.848e-20,1.9768e-20,1.3297e-20,7.2212e-21,4.5771e-21,4.4752e-21,4.2489e-21,2.1463e-21,1.8291e-21,1.8049e-21,9.3556e-22,3.0582e-22,2.951e-22,2.1184e-22,1.9779e-22,9.202e-23,7.4217e-23,4.6361e-23,3.6246e-23,2.7599e-23,2.6171e-23,1.892e-23,1.7867e-23,1.7387e-23,8.2951e-24,6.6428e-24,6.0494e-24,4.4616e-24,4.0529e-24,2.6071e-24,2.3571e-24,1.9238e-24,1.1582e-24,1.1526e-24,9.026e-25,8.3101e-25,8.3091e-25,4.8379e-25,4.7557e-25,3.803e-25,3.0024e-25,1.7906e-25,1.122e-25,8.0136e-26,4.6836e-26,2.8443e-26,1.4853e-26,1.4465e-26,8.7567e-27,5.3951e-27,4.052e-27,1.8773e-27,1.4968e-27,9.4409e-28,7.1827e-28,4.0526e-28,3.8141e-28,3.3658e-28,2.5197e-28,1.372e-28,7.3267e-29,5.2492e-29,3.7604e-29,3.1588e-29,3.0821e-29,2.2452e-29,1.5556e-29,5.0443e-30,3.7323e-30,3.1609e-30,2.1887e-30,2.1832e-30,1.519e-30,1.4519e-30,1.1346e-30,9.3046e-31,4.7625e-31,4.3217e-31,2.5561e-31,1.5654e-31,3.1226e-32,2.3024e-32,1.9869e-32,1.3495e-32,9.3788e-33,8.1661e-33,6.1908e-33,5.0726e-33,3.9606e-33,2.6295e-33,2.6237e-33,1.2528e-33,1.0289e-33,9.8745e-34,9.6605e-34,4.5398e-34,4.4624e-34,4.1344e-34,3.9034e-34,3.3629e-34,2.6263e-34,2.1035e-34,7.8282e-35,9.3671e-36,4.9562e-36,4.6844e-36,4.4711e-36,3.8448e-36,3.5349e-36,1.5884e-36,9.3569e-37,6.3597e-37,5.1216e-37,3.2555e-37,2.2128e-37,2.0593e-37,1.1952e-37,8.7773e-38,6.0164e-38,3.2734e-38,1.4636e-38,1.3901e-38,1.0577e-38,8.747e-39,8.0312e-39,3.2215e-39,2.5069e-39,7.9759e-40,5.7988e-40,3.3031e-40,2.4423e-40,2.2144e-40,1.2977e-40,1.211e-40,1.0408e-40,7.4741e-41,3.9676e-41 1,0.89814,0.91779,0.91873,0.92428,0.92843,0.93373,0.94349,0.9638,0.97449,0.97598,0.98297,0.984,0.98779,0.9949,0.9965,0.99744,0.99982,0.99995,1,0.99943,0.99931,0.99923,0.99789,0.9968,0.99676,0.994,0.99371,0.99216,0.99195,0.99173,0.97649,0.95502,0.95276,0.94504,0.9377,0.93172,0.92431,0.91527,0.89833,0.88845,0.87162,0.84916,0.84702,0.84243,0.83814,0.81521,0.81518,0.75671,0.7522,0.74969,0.73121,0.72983,0.69273,0.67793,0.67174,0.6581,0.64941,0.63445,0.6298,0.59399,0.57193,0.50338,0.48494,0.47882,0.46792,0.43845,0.4325,0.42724,0.40292,0.3807,0.37262,0.36607,0.34283,0.31071,0.27881,0.25848,0.25434,0.21925,0.2079,0.20275,0.20049,0.19152,0.15752,0.15651,0.15108,0.14275,0.14116,0.12996,0.10257,0.10224,0.095407,0.093043,0.069226,0.064089,0.063724,0.059422,0.053979,0.053876,0.053455,0.050401,0.050374,0.047733,0.046743,0.034368,0.02989,0.029748,0.0253,0.024211,0.022606,0.021859,0.021428,0.020961,0.020811,0.020414,0.018881,0.018709,0.01836,0.018078,0.016069,0.014038,0.011761,0.010993,0.0095133,0.0080746,0.00753,0.0072621,0.0048243,0.0045966,0.0044356,0.0041314,0.0037721,0.0034842,0.0032653,0.0032277,0.0032043,0.0029508,0.0023698,0.0023315,0.0021362,0.0018632,0.0017267,0.0017054,0.0010939,0.0010886,0.00099542,0.00083423,0.00080763,0.0007153,0.00069499,0.00056725,0.00049616,0.0003644,0.00036169,0.00025231,0.00024204,0.00023884,0.00018814,0.00018529,0.00016987,0.00015141,0.00014605,0.00014211,0.00012754,0.00012527,0.00012381,0.00011357,0.00011018,0.00010931,0.00010171,9.9101e-05,8.5768e-05,6.7339e-05,6.4478e-05,6.3736e-05,5.7126e-05,5.4589e-05,4.5333e-05,3.2598e-05,2.9403e-05,2.495e-05,2.3481e-05,1.9826e-05,1.6735e-05,1.6504e-05,1.6327e-05,1.6307e-05,1.5507e-05,1.5442e-05,1.3182e-05,1.2255e-05,1.0678e-05,1.0613e-05,1.0224e-05,8.0356e-06,7.9792e-06,7.1091e-06,6.2303e-06,4.9146e-06,4.763e-06,4.3543e-06,4.2675e-06,4.0557e-06,3.7233e-06,3.2643e-06,3.2526e-06,2.408e-06,1.7038e-06,1.6419e-06,1.576e-06,1.556e-06,1.2605e-06,1.1064e-06,7.0869e-07,6.9223e-07,6.6016e-07,6.0931e-07,4.5165e-07,3.2965e-07,2.3284e-07,2.0958e-07,1.968e-07,1.6766e-07,1.2106e-07,1.0482e-07,8.688e-08,6.4996e-08,5.0505e-08,4.8252e-08,2.9511e-08,2.7649e-08,2.6998e-08,2.4042e-08,2.2956e-08,1.5842e-08,1.3499e-08,1.2887e-08,1.2826e-08,1.1634e-08,1.0197e-08,9.5911e-09,9.3329e-09,5.7695e-09,5.766e-09,3.7216e-09,2.2445e-09,1.4002e-09,9.0289e-10,7.4596e-10,7.0948e-10,6.3086e-10,5.692e-10,4.4637e-10,4.3455e-10,2.7113e-10,2.4052e-10,1.8906e-10,1.4e-10,1.166e-10,1.1421e-10,9.8377e-11,8.8992e-11,6.9516e-11,4.8054e-11,4.6412e-11,3.9428e-11,3.0458e-11,2.4678e-11,2.4436e-11,1.1755e-11,1.0421e-11,9.8351e-12,8.4762e-12,7.8452e-12,6.9438e-12,5.7146e-12,5.2816e-12,4.7316e-12,3.9628e-12,3.1483e-12,2.5261e-12,2.4702e-12,1.886e-12,1.5783e-12,1.3485e-12,9.4181e-13,7.9891e-13,7.5247e-13,6.0818e-13,6.0038e-13,5.4676e-13,5.2462e-13,3.0295e-13,2.6297e-13,2.4889e-13,1.9348e-13,1.6712e-13,1.6344e-13,1.1595e-13,5.9717e-14,4.8965e-14,4.4194e-14,3.479e-14,3.4079e-14,2.6017e-14,2.5258e-14,1.7808e-14,1.449e-14,9.5644e-15,9.2107e-15,8.8904e-15,8.7164e-15,8.1704e-15,7.7501e-15,7.5043e-15,5.3402e-15,4.9724e-15,2.5198e-15,2.0043e-15,1.7216e-15,1.6209e-15,9.8136e-16,9.7276e-16,8.2388e-16,7.6223e-16,5.1514e-16,5.0878e-16,4.9405e-16,3.6862e-16,3.3987e-16,3.3021e-16,3.0241e-16,2.699e-16,2.4236e-16,2.2916e-16,1.3191e-16,1.2936e-16,9.6732e-17,6.2414e-17,4.1242e-17,2.3106e-17,2.2916e-17,1.8639e-17,1.436e-17,1.0166e-17,1.0127e-17,8.9824e-18,5.1002e-18,4.4699e-18,4.4055e-18,2.2479e-18,1.9381e-18,1.7791e-18,1.3664e-18,1.0511e-18,6.473e-19,5.9985e-19,4.1508e-19,1.8121e-19,1.792e-19,1.6739e-19,1.4561e-19,1.305e-19,1.14e-19,9.7173e-20,2.1745e-20,1.4632e-20,7.9516e-21,5.0425e-21,4.9303e-21,4.6813e-21,2.3663e-21,2.0169e-21,1.9903e-21,1.0324e-21,3.3785e-22,3.2601e-22,2.3411e-22,2.186e-22,1.0178e-22,8.2105e-23,5.1312e-23,4.0127e-23,3.0562e-23,2.8982e-23,2.0959e-23,1.9793e-23,1.9263e-23,9.1964e-24,7.3662e-24,6.7088e-24,4.9494e-24,4.4964e-24,2.8937e-24,2.6164e-24,2.1358e-24,1.2865e-24,1.2803e-24,1.0028e-24,9.2334e-25,9.2323e-25,5.3782e-25,5.287e-25,4.2287e-25,3.3392e-25,1.9924e-25,1.249e-25,8.9236e-26,5.218e-26,3.1703e-26,1.6566e-26,1.6133e-26,9.7711e-27,6.0227e-27,4.5246e-27,2.0977e-27,1.6729e-27,1.0556e-27,8.0329e-28,4.5345e-28,4.268e-28,3.7667e-28,2.8205e-28,1.5367e-28,8.2105e-29,5.8842e-29,4.2164e-29,3.5424e-29,3.4566e-29,2.5186e-29,1.7456e-29,5.666e-30,4.1933e-30,3.5519e-30,2.4603e-30,2.454e-30,1.708e-30,1.6326e-30,1.2761e-30,1.0466e-30,5.3603e-31,4.8645e-31,2.8784e-31,1.7635e-31,3.5225e-32,2.5979e-32,2.2423e-32,1.5234e-32,1.0591e-32,9.2223e-33,6.9931e-33,5.731e-33,4.4756e-33,2.9723e-33,2.9658e-33,1.417e-33,1.1639e-33,1.1171e-33,1.0929e-33,5.1391e-34,5.0515e-34,4.6806e-34,4.4192e-34,3.8078e-34,2.9743e-34,2.3827e-34,8.874e-35,1.0636e-35,5.6306e-36,5.3221e-36,5.08e-36,4.3688e-36,4.017e-36,1.8062e-36,1.0644e-36,7.2367e-37,5.8288e-37,3.7064e-37,2.52e-37,2.3453e-37,1.3618e-37,1.0003e-37,6.8586e-38,3.7333e-38,1.6702e-38,1.5864e-38,1.2073e-38,9.9859e-39,9.1694e-39,3.6805e-39,2.8647e-39,9.122e-40,6.6337e-40,3.7803e-40,2.7957e-40,2.5351e-40,1.4862e-40,1.387e-40,1.1922e-40,8.5631e-41,4.5478e-41 1,0.88375,0.90459,0.90559,0.91151,0.91596,0.92165,0.9322,0.9545,0.96652,0.96822,0.97631,0.97753,0.98204,0.99096,0.99314,0.99448,0.99861,0.99905,0.99943,1,0.99999,0.99998,0.99951,0.99892,0.9989,0.99711,0.99691,0.99579,0.99563,0.99548,0.98313,0.96427,0.96223,0.95525,0.94854,0.94305,0.9362,0.92779,0.91191,0.90259,0.88662,0.86515,0.8631,0.8587,0.85458,0.83245,0.83242,0.77552,0.7711,0.76864,0.7505,0.74915,0.71258,0.69794,0.69181,0.67828,0.66964,0.65476,0.65013,0.61439,0.59229,0.52332,0.50468,0.49848,0.48745,0.45754,0.45149,0.44614,0.42137,0.39869,0.39043,0.38373,0.35992,0.32692,0.29403,0.27303,0.26874,0.23235,0.22055,0.21518,0.21283,0.20348,0.16795,0.16688,0.1612,0.15246,0.15079,0.13902,0.11014,0.10979,0.10256,0.10006,0.074779,0.069306,0.068917,0.064328,0.058515,0.058405,0.057955,0.054688,0.05466,0.051832,0.050771,0.037482,0.032657,0.032504,0.0277,0.026522,0.024784,0.023975,0.023509,0.023002,0.022839,0.022409,0.020746,0.020559,0.02018,0.019874,0.01769,0.015478,0.012994,0.012154,0.010535,0.0089582,0.0083602,0.0080659,0.0053813,0.00513,0.004952,0.0046158,0.0042182,0.0038994,0.0036567,0.003615,0.0035891,0.0033079,0.0026622,0.0026196,0.0024023,0.002098,0.0019456,0.0019219,0.0012378,0.0012319,0.0011274,0.00094631,0.00091641,0.00081251,0.00078964,0.00064566,0.00056539,0.00041635,0.00041328,0.00028916,0.00027748,0.00027385,0.00021614,0.00021289,0.00019531,0.00017425,0.00016812,0.00016362,0.00014698,0.00014439,0.00014272,0.000131,0.00012712,0.00012612,0.00011742,0.00011443,9.9148e-05,7.7989e-05,7.4701e-05,7.3848e-05,6.6244e-05,6.3325e-05,5.2661e-05,3.7961e-05,3.4266e-05,2.9112e-05,2.741e-05,2.3172e-05,1.9583e-05,1.9315e-05,1.9109e-05,1.9085e-05,1.8156e-05,1.808e-05,1.5452e-05,1.4372e-05,1.2535e-05,1.2459e-05,1.2005e-05,9.4519e-06,9.386e-06,8.3692e-06,7.3413e-06,5.8004e-06,5.6226e-06,5.1433e-06,5.0415e-06,4.7929e-06,4.4026e-06,3.8632e-06,3.8495e-06,2.8557e-06,2.0251e-06,1.9521e-06,1.8741e-06,1.8505e-06,1.5011e-06,1.3188e-06,8.471e-07,8.2754e-07,7.8945e-07,7.29e-07,5.4139e-07,3.9592e-07,2.8024e-07,2.5241e-07,2.3711e-07,2.022e-07,1.4628e-07,1.2676e-07,1.0519e-07,7.8825e-08,6.1341e-08,5.862e-08,3.5953e-08,3.3697e-08,3.2908e-08,2.9325e-08,2.8008e-08,1.9369e-08,1.6518e-08,1.5773e-08,1.57e-08,1.4248e-08,1.2497e-08,1.1759e-08,1.1444e-08,7.0934e-09,7.0892e-09,4.5865e-09,2.7737e-09,1.7346e-09,1.1211e-09,9.2717e-10,8.8206e-10,7.8478e-10,7.0846e-10,5.5628e-10,5.4162e-10,3.3874e-10,3.0068e-10,2.3664e-10,1.7549e-10,1.4629e-10,1.4331e-10,1.2354e-10,1.1181e-10,8.7444e-11,6.0557e-11,5.8497e-11,4.9734e-11,3.8468e-11,3.1199e-11,3.0894e-11,1.4914e-11,1.3229e-11,1.2489e-11,1.0771e-11,9.9725e-12,8.8317e-12,7.2749e-12,6.7263e-12,6.0289e-12,5.0535e-12,4.019e-12,3.228e-12,3.157e-12,2.4134e-12,2.0213e-12,1.7282e-12,1.2089e-12,1.0263e-12,9.6688e-13,7.8222e-13,7.7223e-13,7.0356e-13,6.752e-13,3.9085e-13,3.3949e-13,3.2139e-13,2.5012e-13,2.1617e-13,2.1144e-13,1.5022e-13,7.7594e-14,6.3677e-14,5.7498e-14,4.531e-14,4.4388e-14,3.3926e-14,3.294e-14,2.3259e-14,1.8942e-14,1.2525e-14,1.2063e-14,1.1646e-14,1.1419e-14,1.0706e-14,1.0158e-14,9.8369e-15,7.01e-15,6.5291e-15,3.318e-15,2.6417e-15,2.2705e-15,2.1382e-15,1.2972e-15,1.2859e-15,1.0898e-15,1.0086e-15,6.827e-16,6.743e-16,6.5486e-16,4.8918e-16,4.5117e-16,4.3839e-16,4.0163e-16,3.5862e-16,3.2215e-16,3.0468e-16,1.7576e-16,1.7237e-16,1.2905e-16,8.3407e-17,5.5202e-17,3.0997e-17,3.0743e-17,2.5024e-17,1.93e-17,1.368e-17,1.3628e-17,1.2093e-17,6.8814e-18,6.034e-18,5.9473e-18,3.0423e-18,2.6244e-18,2.4099e-18,1.8527e-18,1.4266e-18,8.8009e-19,8.158e-19,5.6528e-19,2.4752e-19,2.4479e-19,2.2872e-19,1.9905e-19,1.7847e-19,1.5598e-19,1.3303e-19,2.9929e-20,2.0168e-20,1.0983e-20,6.9759e-21,6.8213e-21,6.4779e-21,3.2822e-21,2.7992e-21,2.7624e-21,1.436e-21,4.7174e-22,4.5527e-22,3.273e-22,3.0568e-22,1.4269e-22,1.1519e-22,7.2102e-23,5.6431e-23,4.3019e-23,4.0801e-23,2.9538e-23,2.7901e-23,2.7155e-23,1.2996e-23,1.0417e-23,9.4902e-24,7.0083e-24,6.3688e-24,4.1045e-24,3.7124e-24,3.0326e-24,1.8296e-24,1.8208e-24,1.4273e-24,1.3145e-24,1.3144e-24,7.67e-25,7.5403e-25,6.0353e-25,4.7694e-25,2.8504e-25,1.7895e-25,1.2798e-25,7.4964e-26,4.5616e-26,2.3884e-26,2.3262e-26,1.411e-26,8.7103e-27,6.5494e-27,3.0435e-27,2.4289e-27,1.5347e-27,1.1689e-27,6.6097e-28,6.2222e-28,5.4935e-28,4.1171e-28,2.2471e-28,1.2029e-28,8.6291e-29,6.1895e-29,5.2027e-29,5.077e-29,3.7028e-29,2.5691e-29,8.3662e-30,6.1971e-30,5.2517e-30,3.6415e-30,3.6323e-30,2.5307e-30,2.4193e-30,1.8923e-30,1.553e-30,7.9686e-31,7.2336e-31,4.2866e-31,2.6299e-31,5.2769e-32,3.8952e-32,3.3633e-32,2.2874e-32,1.5919e-32,1.3867e-32,1.0523e-32,8.6288e-33,6.7432e-33,4.4834e-33,4.4736e-33,2.1417e-33,1.7602e-33,1.6895e-33,1.653e-33,7.7889e-34,7.6565e-34,7.0957e-34,6.7005e-34,5.7758e-34,4.5146e-34,3.6187e-34,1.3514e-34,1.6289e-35,8.6376e-36,8.1656e-36,7.795e-36,6.7064e-36,6.1678e-36,2.7791e-36,1.64e-36,1.1161e-36,8.995e-37,5.7263e-37,3.8973e-37,3.6278e-37,2.1094e-37,1.5507e-37,1.0643e-37,5.8022e-38,2.6012e-38,2.4709e-38,1.8818e-38,1.5572e-38,1.4302e-38,5.754e-39,4.4814e-39,1.4311e-39,1.0416e-39,5.9438e-40,4.399e-40,3.9899e-40,2.3423e-40,2.1862e-40,1.8799e-40,1.3514e-40,7.1883e-41 1,0.88216,0.90312,0.90412,0.91009,0.91456,0.9203,0.93093,0.95344,0.96561,0.96732,0.97553,0.97677,0.98136,0.99047,0.99271,0.9941,0.99842,0.99888,0.99931,0.99999,1,1,0.99962,0.99908,0.99906,0.99738,0.99719,0.99612,0.99596,0.99581,0.98378,0.9652,0.96319,0.95629,0.94965,0.94421,0.93742,0.92909,0.91332,0.90406,0.88818,0.86683,0.86479,0.86041,0.85631,0.83427,0.83424,0.77751,0.77311,0.77065,0.75255,0.75121,0.7147,0.70008,0.69395,0.68044,0.67181,0.65694,0.65231,0.61658,0.59448,0.52547,0.50681,0.50061,0.48956,0.45961,0.45355,0.44819,0.42338,0.40064,0.39237,0.38565,0.36178,0.32869,0.2957,0.27462,0.27032,0.23378,0.22194,0.21655,0.21419,0.20479,0.1691,0.16803,0.16231,0.15353,0.15185,0.14002,0.11098,0.11063,0.10336,0.10084,0.075396,0.069887,0.069495,0.064875,0.059021,0.05891,0.058457,0.055166,0.055138,0.052289,0.051221,0.037831,0.032967,0.032813,0.027969,0.026781,0.025029,0.024213,0.023743,0.023232,0.023067,0.022633,0.020955,0.020767,0.020385,0.020076,0.017873,0.01564,0.013133,0.012285,0.010651,0.0090581,0.0084541,0.0081569,0.0054445,0.0051905,0.0050107,0.0046708,0.0042689,0.0039466,0.0037012,0.0036591,0.0036329,0.0033485,0.0026955,0.0026525,0.0024326,0.0021248,0.0019706,0.0019466,0.0012543,0.0012483,0.0011425,0.00095915,0.00092887,0.00082366,0.0008005,0.00065466,0.00057334,0.00042232,0.00041921,0.00029341,0.00028157,0.00027789,0.00021938,0.00021608,0.00019825,0.00017689,0.00017067,0.00016611,0.00014923,0.0001466,0.0001449,0.00013302,0.00012908,0.00012807,0.00011924,0.00011621,0.0001007,7.9225e-05,7.5887e-05,7.5021e-05,6.7302e-05,6.4339e-05,5.3513e-05,3.8585e-05,3.4832e-05,2.9597e-05,2.7868e-05,2.3562e-05,1.9915e-05,1.9642e-05,1.9434e-05,1.9409e-05,1.8466e-05,1.8388e-05,1.5717e-05,1.4619e-05,1.2752e-05,1.2675e-05,1.2214e-05,9.6176e-06,9.5506e-06,8.5167e-06,7.4715e-06,5.9042e-06,5.7234e-06,5.2358e-06,5.1323e-06,4.8794e-06,4.4823e-06,3.9336e-06,3.9196e-06,2.9083e-06,2.063e-06,1.9886e-06,1.9092e-06,1.8852e-06,1.5295e-06,1.3438e-06,8.6344e-07,8.4352e-07,8.0471e-07,7.4314e-07,5.52e-07,4.0376e-07,2.8585e-07,2.5749e-07,2.4189e-07,2.063e-07,1.4928e-07,1.2937e-07,1.0736e-07,8.0471e-08,6.2632e-08,5.9855e-08,3.6722e-08,3.4419e-08,3.3614e-08,2.9956e-08,2.8611e-08,1.9791e-08,1.6879e-08,1.6119e-08,1.6043e-08,1.4561e-08,1.2773e-08,1.2019e-08,1.1697e-08,7.2522e-09,7.2478e-09,4.6903e-09,2.8373e-09,1.7749e-09,1.1474e-09,9.4903e-10,9.0288e-10,8.0336e-10,7.2528e-10,5.6956e-10,5.5455e-10,3.4692e-10,3.0796e-10,2.424e-10,1.7979e-10,1.4989e-10,1.4684e-10,1.2659e-10,1.1458e-10,8.9621e-11,6.2076e-11,5.9966e-11,5.0988e-11,3.9443e-11,3.1993e-11,3.1681e-11,1.5299e-11,1.3572e-11,1.2813e-11,1.1051e-11,1.0232e-11,9.0624e-12,7.4657e-12,6.9029e-12,6.1875e-12,5.1869e-12,4.1256e-12,3.314e-12,3.2411e-12,2.478e-12,2.0756e-12,1.7748e-12,1.2418e-12,1.0542e-12,9.9322e-13,8.0362e-13,7.9336e-13,7.2284e-13,6.9372e-13,4.0168e-13,3.4892e-13,3.3032e-13,2.571e-13,2.2222e-13,2.1735e-13,1.5445e-13,7.9803e-14,6.5496e-14,5.9144e-14,4.6612e-14,4.5664e-14,3.4905e-14,3.3892e-14,2.3934e-14,1.9494e-14,1.2892e-14,1.2417e-14,1.1988e-14,1.1754e-14,1.1021e-14,1.0457e-14,1.0127e-14,7.2176e-15,6.7226e-15,3.4173e-15,2.7211e-15,2.3389e-15,2.2027e-15,1.3366e-15,1.3249e-15,1.123e-15,1.0393e-15,7.0363e-16,6.9498e-16,6.7495e-16,5.0425e-16,4.6509e-16,4.5191e-16,4.1404e-16,3.6972e-16,3.3214e-16,3.1413e-16,1.8126e-16,1.7776e-16,1.331e-16,8.6042e-17,5.6956e-17,3.1989e-17,3.1727e-17,2.5828e-17,1.9921e-17,1.4123e-17,1.4069e-17,1.2485e-17,7.1061e-18,6.2313e-18,6.1418e-18,3.1427e-18,2.7111e-18,2.4897e-18,1.9142e-18,1.4741e-18,9.0957e-19,8.4316e-19,5.8433e-19,2.5594e-19,2.5312e-19,2.3651e-19,2.0584e-19,1.8457e-19,1.6132e-19,1.3759e-19,3.0972e-20,2.0874e-20,1.137e-20,7.2231e-21,7.063e-21,6.7076e-21,3.3995e-21,2.8993e-21,2.8613e-21,1.4878e-21,4.8894e-22,4.7187e-22,3.3928e-22,3.1688e-22,1.4796e-22,1.1945e-22,7.4782e-23,5.8533e-23,4.4626e-23,4.2326e-23,3.0645e-23,2.8947e-23,2.8174e-23,1.3487e-23,1.0812e-23,9.85e-24,7.2748e-24,6.6112e-24,4.2614e-24,3.8544e-24,3.1488e-24,1.9e-24,1.891e-24,1.4824e-24,1.3653e-24,1.3651e-24,7.9678e-25,7.833e-25,6.2701e-25,4.9553e-25,2.9621e-25,1.8599e-25,1.3303e-25,7.7936e-26,4.7433e-26,2.484e-26,2.4193e-26,1.4678e-26,9.0621e-27,6.8145e-27,3.1675e-27,2.528e-27,1.5976e-27,1.2169e-27,6.8824e-28,6.4791e-28,5.7205e-28,4.2876e-28,2.3406e-28,1.2532e-28,8.991e-29,6.4498e-29,5.4218e-29,5.2908e-29,3.8591e-29,2.6779e-29,8.7235e-30,6.4624e-30,5.4768e-30,3.798e-30,3.7884e-30,2.6397e-30,2.5235e-30,1.974e-30,1.6201e-30,8.315e-31,7.5482e-31,4.4737e-31,2.7452e-31,5.5109e-32,4.0682e-32,3.5128e-32,2.3894e-32,1.663e-32,1.4488e-32,1.0995e-32,9.0161e-33,7.0464e-33,4.6856e-33,4.6753e-33,2.2388e-33,1.84e-33,1.7662e-33,1.7281e-33,8.1444e-34,8.0059e-34,7.4197e-34,7.0066e-34,6.0399e-34,4.7213e-34,3.7847e-34,1.4137e-34,1.7052e-35,9.0435e-36,8.5494e-36,8.1616e-36,7.0221e-36,6.4583e-36,2.9106e-36,1.7179e-36,1.1693e-36,9.4237e-37,6e-37,4.084e-37,3.8017e-37,2.2108e-37,1.6254e-37,1.1157e-37,6.0834e-38,2.7278e-38,2.5913e-38,1.9736e-38,1.6333e-38,1.5001e-38,6.0367e-39,4.7019e-39,1.502e-39,1.0932e-39,6.2397e-40,4.6183e-40,4.1889e-40,2.4595e-40,2.2956e-40,1.9741e-40,1.4192e-40,7.5503e-41 1,0.88124,0.90227,0.90328,0.90926,0.91376,0.91952,0.9302,0.95283,0.96507,0.9668,0.97508,0.97632,0.98096,0.99018,0.99246,0.99387,0.9983,0.99878,0.99923,0.99998,1,1,0.99967,0.99917,0.99915,0.99753,0.99734,0.9963,0.99615,0.996,0.98414,0.96573,0.96374,0.95688,0.95029,0.94487,0.93812,0.92983,0.91413,0.90491,0.88908,0.8678,0.86576,0.86138,0.8573,0.83532,0.83528,0.77866,0.77426,0.77181,0.75373,0.75239,0.71592,0.7013,0.69518,0.68168,0.67305,0.65819,0.65356,0.61784,0.59574,0.52671,0.50804,0.50183,0.49078,0.4608,0.45473,0.44937,0.42453,0.40177,0.39348,0.38676,0.36285,0.32971,0.29666,0.27554,0.27123,0.23461,0.22274,0.21734,0.21497,0.20555,0.16976,0.16869,0.16296,0.15415,0.15246,0.1406,0.11146,0.11111,0.10382,0.10129,0.075753,0.070223,0.069829,0.065191,0.059314,0.059202,0.058747,0.055443,0.055414,0.052554,0.051481,0.038032,0.033147,0.032991,0.028125,0.026931,0.025171,0.024351,0.023878,0.023364,0.023199,0.022763,0.021077,0.020888,0.020503,0.020192,0.017978,0.015734,0.013213,0.012361,0.010718,0.009116,0.0085086,0.0082096,0.0054812,0.0052256,0.0050447,0.0047027,0.0042983,0.0039739,0.0037271,0.0036847,0.0036583,0.0033721,0.0027149,0.0026715,0.0024502,0.0021403,0.0019851,0.0019609,0.0012638,0.0012579,0.0011512,0.00096661,0.00093611,0.00083014,0.00080681,0.00065989,0.00057797,0.0004258,0.00042266,0.00029588,0.00028394,0.00028023,0.00022126,0.00021793,0.00019996,0.00017842,0.00017216,0.00016756,0.00015054,0.00014788,0.00014617,0.00013419,0.00013022,0.0001292,0.0001203,0.00011724,0.0001016,7.9943e-05,7.6577e-05,7.5703e-05,6.7918e-05,6.4929e-05,5.4008e-05,3.8948e-05,3.5162e-05,2.9879e-05,2.8134e-05,2.3789e-05,2.0109e-05,1.9833e-05,1.9623e-05,1.9598e-05,1.8646e-05,1.8567e-05,1.5871e-05,1.4763e-05,1.2879e-05,1.2801e-05,1.2335e-05,9.7141e-06,9.6465e-06,8.6027e-06,7.5473e-06,5.9648e-06,5.7821e-06,5.2898e-06,5.1852e-06,4.9298e-06,4.5288e-06,3.9746e-06,3.9604e-06,2.939e-06,2.085e-06,2.0099e-06,1.9297e-06,1.9054e-06,1.546e-06,1.3584e-06,8.7298e-07,8.5284e-07,8.1362e-07,7.5139e-07,5.5819e-07,4.0834e-07,2.8913e-07,2.6045e-07,2.4468e-07,2.0869e-07,1.5103e-07,1.3089e-07,1.0863e-07,8.1433e-08,6.3386e-08,6.0577e-08,3.7171e-08,3.4841e-08,3.4026e-08,3.0324e-08,2.8964e-08,2.0037e-08,1.7091e-08,1.6321e-08,1.6244e-08,1.4744e-08,1.2934e-08,1.217e-08,1.1845e-08,7.345e-09,7.3407e-09,4.7511e-09,2.8746e-09,1.7984e-09,1.1628e-09,9.6183e-10,9.1507e-10,8.1424e-10,7.3512e-10,5.7733e-10,5.6213e-10,3.5171e-10,3.1223e-10,2.4577e-10,1.8231e-10,1.52e-10,1.489e-10,1.2838e-10,1.162e-10,9.0897e-11,6.2967e-11,6.0827e-11,5.1723e-11,4.0014e-11,3.2459e-11,3.2142e-11,1.5525e-11,1.3773e-11,1.3003e-11,1.1215e-11,1.0385e-11,9.1977e-12,7.5776e-12,7.0065e-12,6.2806e-12,5.2652e-12,4.1882e-12,3.3645e-12,3.2905e-12,2.516e-12,2.1075e-12,1.8022e-12,1.261e-12,1.0706e-12,1.0087e-12,8.1618e-13,8.0576e-13,7.3416e-13,7.0459e-13,4.0803e-13,3.5445e-13,3.3556e-13,2.612e-13,2.2578e-13,2.2083e-13,1.5694e-13,8.1102e-14,6.6565e-14,6.0111e-14,4.7377e-14,4.6414e-14,3.5481e-14,3.4451e-14,2.4331e-14,1.9819e-14,1.3108e-14,1.2626e-14,1.2189e-14,1.1951e-14,1.1206e-14,1.0633e-14,1.0297e-14,7.3396e-15,6.8364e-15,3.4758e-15,2.7678e-15,2.3792e-15,2.2406e-15,1.3598e-15,1.3479e-15,1.1425e-15,1.0574e-15,7.1596e-16,7.0716e-16,6.8677e-16,5.1312e-16,4.7328e-16,4.5988e-16,4.2134e-16,3.7625e-16,3.3802e-16,3.1969e-16,1.8449e-16,1.8094e-16,1.3549e-16,8.7594e-17,5.7989e-17,3.2574e-17,3.2307e-17,2.6301e-17,2.0288e-17,1.4384e-17,1.4329e-17,1.2717e-17,7.2385e-18,6.3477e-18,6.2566e-18,3.2019e-18,2.7623e-18,2.5367e-18,1.9504e-18,1.5021e-18,9.2697e-19,8.593e-19,5.9556e-19,2.6091e-19,2.5804e-19,2.4111e-19,2.0985e-19,1.8816e-19,1.6447e-19,1.4028e-19,3.1588e-20,2.1291e-20,1.1599e-20,7.3691e-21,7.2059e-21,6.8433e-21,3.4688e-21,2.9585e-21,2.9197e-21,1.5184e-21,4.9912e-22,4.8169e-22,3.4637e-22,3.235e-22,1.5107e-22,1.2197e-22,7.6367e-23,5.9777e-23,4.5577e-23,4.3229e-23,3.1301e-23,2.9567e-23,2.8777e-23,1.3778e-23,1.1045e-23,1.0063e-23,7.4326e-24,6.7547e-24,4.3543e-24,3.9385e-24,3.2176e-24,1.9417e-24,1.9325e-24,1.515e-24,1.3954e-24,1.3952e-24,8.1442e-25,8.0064e-25,6.4092e-25,5.0655e-25,3.0282e-25,1.9016e-25,1.3603e-25,7.9697e-26,4.8509e-26,2.5407e-26,2.4746e-26,1.5015e-26,9.2708e-27,6.9718e-27,3.2411e-27,2.5869e-27,1.6349e-27,1.2454e-27,7.0442e-28,6.6316e-28,5.8552e-28,4.3889e-28,2.3962e-28,1.2831e-28,9.206e-29,6.6043e-29,5.5519e-29,5.4178e-29,3.952e-29,2.7425e-29,8.9358e-30,6.62e-30,5.6105e-30,3.891e-30,3.8812e-30,2.7046e-30,2.5855e-30,2.0226e-30,1.6601e-30,8.5209e-31,7.7353e-31,4.585e-31,2.8137e-31,5.65e-32,4.1711e-32,3.6018e-32,2.4501e-32,1.7054e-32,1.4857e-32,1.1276e-32,9.2467e-33,7.2269e-33,4.8059e-33,4.7954e-33,2.2966e-33,1.8876e-33,1.8119e-33,1.7728e-33,8.356e-34,8.214e-34,7.6127e-34,7.1889e-34,6.1972e-34,4.8445e-34,3.8836e-34,1.4509e-34,1.7506e-35,9.2854e-36,8.7783e-36,8.3801e-36,7.2103e-36,6.6314e-36,2.989e-36,1.7643e-36,1.2009e-36,9.6794e-37,6.1633e-37,4.1954e-37,3.9054e-37,2.2714e-37,1.67e-37,1.1463e-37,6.2512e-38,2.8034e-38,2.6631e-38,2.0284e-38,1.6787e-38,1.5418e-38,6.2055e-39,4.8336e-39,1.5443e-39,1.1241e-39,6.4164e-40,4.7494e-40,4.3078e-40,2.5295e-40,2.361e-40,2.0304e-40,1.4597e-40,7.7667e-41 1,0.86966,0.89154,0.8926,0.89885,0.90356,0.90961,0.92086,0.94495,0.95818,0.96006,0.96916,0.97054,0.97572,0.9863,0.98901,0.99072,0.99648,0.99719,0.99789,0.99951,0.99962,0.99967,1,0.99989,0.99988,0.999,0.99888,0.99817,0.99807,0.99796,0.98834,0.97198,0.97016,0.96387,0.95779,0.95275,0.94644,0.93866,0.92381,0.91504,0.89991,0.87944,0.87747,0.87325,0.8693,0.84799,0.84795,0.79265,0.78833,0.78592,0.76816,0.76683,0.73085,0.71638,0.71032,0.69693,0.68836,0.67359,0.66898,0.63338,0.61129,0.54205,0.52326,0.51701,0.50586,0.47559,0.46946,0.46404,0.43888,0.41579,0.40738,0.40055,0.37622,0.34244,0.30866,0.28703,0.28261,0.245,0.23278,0.22722,0.22478,0.21507,0.1781,0.17699,0.17106,0.16193,0.16019,0.14787,0.11758,0.11721,0.1096,0.10697,0.080271,0.074474,0.074061,0.069195,0.063021,0.062904,0.062425,0.058951,0.058921,0.055911,0.054781,0.040597,0.03543,0.035265,0.03011,0.028844,0.026976,0.026105,0.025603,0.025058,0.024882,0.024418,0.022626,0.022425,0.022016,0.021685,0.019328,0.016935,0.014244,0.013333,0.011575,0.0098582,0.0092067,0.0088858,0.0059521,0.0056767,0.0054817,0.0051129,0.0046766,0.0043262,0.0040595,0.0040136,0.0039851,0.0036757,0.0029641,0.0029171,0.0026772,0.0023409,0.0021724,0.0021461,0.0013875,0.001381,0.0012647,0.0010632,0.0010299,0.00091402,0.00088851,0.0007277,0.00063792,0.00047091,0.00046747,0.000328,0.00031485,0.00031076,0.00024572,0.00024205,0.00022221,0.00019842,0.00019149,0.00018641,0.00016758,0.00016464,0.00016275,0.00014949,0.00014509,0.00014396,0.0001341,0.00013071,0.00011337,8.9334e-05,8.5594e-05,8.4623e-05,7.5969e-05,7.2645e-05,6.0491e-05,4.3705e-05,3.9479e-05,3.3579e-05,3.1629e-05,2.6768e-05,2.2648e-05,2.234e-05,2.2104e-05,2.2077e-05,2.1009e-05,2.0921e-05,1.7899e-05,1.6656e-05,1.4541e-05,1.4453e-05,1.393e-05,1.0984e-05,1.0908e-05,9.7338e-06,8.5456e-06,6.7621e-06,6.5561e-06,6.0006e-06,5.8826e-06,5.5943e-06,5.1415e-06,4.5153e-06,4.4993e-06,3.344e-06,2.3765e-06,2.2912e-06,2.2003e-06,2.1727e-06,1.7647e-06,1.5516e-06,9.9929e-07,9.7635e-07,9.3166e-07,8.6073e-07,6.4033e-07,4.6913e-07,3.3272e-07,2.9986e-07,2.8178e-07,2.4051e-07,1.7431e-07,1.5117e-07,1.2557e-07,9.4252e-08,7.3447e-08,7.0206e-08,4.3173e-08,4.0478e-08,3.9535e-08,3.5252e-08,3.3677e-08,2.3335e-08,1.9917e-08,1.9024e-08,1.8935e-08,1.7193e-08,1.5091e-08,1.4204e-08,1.3825e-08,8.5904e-09,8.5854e-09,5.5668e-09,3.375e-09,2.1156e-09,1.3703e-09,1.1343e-09,1.0794e-09,9.6088e-10,8.6786e-10,6.8223e-10,6.6433e-10,4.1642e-10,3.6984e-10,2.914e-10,2.164e-10,1.8055e-10,1.7688e-10,1.5259e-10,1.3816e-10,1.0818e-10,7.5043e-11,7.2502e-11,6.1687e-11,4.7768e-11,3.8778e-11,3.8402e-11,1.8598e-11,1.6507e-11,1.5586e-11,1.3451e-11,1.2458e-11,1.1039e-11,9.101e-12,8.4175e-12,7.5484e-12,6.332e-12,5.0408e-12,4.0526e-12,3.9638e-12,3.0336e-12,2.5426e-12,2.1755e-12,1.5241e-12,1.2947e-12,1.2201e-12,9.8796e-13,9.754e-13,8.89e-13,8.5332e-13,4.9508e-13,4.3028e-13,4.0742e-13,3.1741e-13,2.7449e-13,2.685e-13,1.9103e-13,9.8938e-14,8.1258e-14,7.3403e-14,5.7898e-14,5.6725e-14,4.3401e-14,4.2146e-14,2.9799e-14,2.4289e-14,1.6086e-14,1.5496e-14,1.4961e-14,1.4671e-14,1.3759e-14,1.3057e-14,1.2646e-14,9.0237e-15,8.407e-15,4.2835e-15,3.4134e-15,2.9355e-15,2.7651e-15,1.6807e-15,1.666e-15,1.4129e-15,1.308e-15,8.8666e-16,8.7579e-16,8.5063e-16,6.3611e-16,5.8686e-16,5.703e-16,5.2265e-16,4.6688e-16,4.1957e-16,3.9689e-16,2.2942e-16,2.2502e-16,1.6864e-16,1.0917e-16,7.2362e-17,4.0717e-17,4.0384e-17,3.2897e-17,2.5395e-17,1.8023e-17,1.7954e-17,1.5939e-17,9.0878e-18,7.9723e-18,7.8582e-18,4.0293e-18,3.4776e-18,3.1943e-18,2.4579e-18,1.8944e-18,1.1706e-18,1.0854e-18,7.5304e-19,3.3066e-19,3.2703e-19,3.0563e-19,2.661e-19,2.3868e-19,2.087e-19,1.7809e-19,4.0265e-20,2.7168e-20,1.4825e-20,9.4301e-21,9.2216e-21,8.7589e-21,4.4478e-21,3.7951e-21,3.7454e-21,1.9512e-21,6.4323e-22,6.2084e-22,4.468e-22,4.1737e-22,1.9529e-22,1.5776e-22,9.8893e-23,7.7458e-23,5.9098e-23,5.606e-23,4.0625e-23,3.838e-23,3.7357e-23,1.7919e-23,1.4373e-23,1.3098e-23,9.6814e-24,8.8006e-24,5.6793e-24,5.1383e-24,4.1999e-24,2.5377e-24,2.5256e-24,1.9812e-24,1.8251e-24,1.8249e-24,1.0666e-24,1.0486e-24,8.3989e-25,6.6418e-25,3.9755e-25,2.4992e-25,1.7892e-25,1.0496e-25,6.3963e-26,3.3553e-26,3.2681e-26,1.9853e-26,1.2272e-26,9.235e-27,4.3009e-27,3.4346e-27,2.173e-27,1.6563e-27,9.3806e-28,8.8323e-28,7.8006e-28,5.8508e-28,3.1988e-28,1.7153e-28,1.2316e-28,8.8422e-29,7.4361e-29,7.2568e-29,5.2972e-29,3.6791e-29,1.2017e-29,8.9088e-30,7.5531e-30,5.2424e-30,5.2292e-30,3.6468e-30,3.4867e-30,2.729e-30,2.2408e-30,1.1519e-30,1.0459e-30,6.2065e-31,3.8128e-31,7.6826e-32,5.6754e-32,4.9023e-32,3.3375e-32,2.3248e-32,2.0259e-32,1.5385e-32,1.2622e-32,9.8698e-33,6.5691e-33,6.5548e-33,3.144e-33,2.5852e-33,2.4817e-33,2.4282e-33,1.1463e-33,1.1269e-33,1.0446e-33,9.8654e-34,8.5071e-34,6.6536e-34,5.3363e-34,1.9977e-34,2.4208e-35,1.2856e-35,1.2156e-35,1.1605e-35,9.9884e-36,9.188e-36,4.148e-36,2.451e-36,1.6696e-36,1.3463e-36,8.5801e-37,5.845e-37,5.4417e-37,3.1683e-37,2.3308e-37,1.6012e-37,8.7419e-38,3.9265e-38,3.7304e-38,2.8428e-38,2.3535e-38,2.162e-38,8.717e-39,6.7931e-39,2.1752e-39,1.5843e-39,9.0526e-40,6.7045e-40,6.0824e-40,3.5751e-40,3.3374e-40,2.8708e-40,2.0653e-40,1.1002e-40 1,0.86263,0.885,0.88607,0.89249,0.89732,0.90353,0.91511,0.94004,0.95384,0.95581,0.96538,0.96684,0.97234,0.98371,0.98667,0.98856,0.9951,0.99595,0.9968,0.99892,0.99908,0.99917,0.99989,1,1,0.99956,0.99948,0.99897,0.99889,0.99881,0.99052,0.97538,0.97367,0.96773,0.96195,0.95714,0.9511,0.94362,0.92929,0.92079,0.90609,0.88611,0.88419,0.88006,0.87619,0.8553,0.85526,0.80079,0.79652,0.79414,0.77656,0.77525,0.73958,0.72522,0.71919,0.70587,0.69735,0.68264,0.67805,0.64254,0.62048,0.55115,0.53229,0.52602,0.51482,0.4844,0.47823,0.47277,0.44744,0.42417,0.41568,0.40879,0.38423,0.35008,0.31587,0.29394,0.28946,0.25128,0.23885,0.2332,0.23072,0.22084,0.18317,0.18203,0.17598,0.16666,0.16488,0.1523,0.1213,0.12093,0.11314,0.11044,0.083039,0.077081,0.076656,0.071651,0.065298,0.065177,0.064685,0.061107,0.061076,0.057975,0.056811,0.042178,0.03684,0.03667,0.031338,0.030028,0.028093,0.027192,0.026672,0.026107,0.025925,0.025444,0.023586,0.023378,0.022954,0.022611,0.020165,0.017682,0.014885,0.013938,0.012109,0.010321,0.0096425,0.0093081,0.006247,0.0059594,0.0057556,0.0053701,0.0049138,0.0045474,0.0042682,0.0042202,0.0041904,0.0038664,0.003121,0.0030717,0.0028201,0.0024673,0.0022904,0.0022628,0.0014657,0.0014589,0.0013365,0.0011243,0.0010892,0.00096719,0.0009403,0.00077073,0.000676,0.00049961,0.00049597,0.00034847,0.00033455,0.00033022,0.00026134,0.00025745,0.00023643,0.0002112,0.00020385,0.00019846,0.00017849,0.00017537,0.00017336,0.00015928,0.00015461,0.00015341,0.00014294,0.00013934,0.00012092,9.536e-05,9.1381e-05,9.0349e-05,8.114e-05,7.7601e-05,6.4659e-05,4.6768e-05,4.226e-05,3.5964e-05,3.3882e-05,2.8691e-05,2.4289e-05,2.3959e-05,2.3707e-05,2.3678e-05,2.2536e-05,2.2442e-05,1.921e-05,1.788e-05,1.5616e-05,1.5522e-05,1.4963e-05,1.1807e-05,1.1726e-05,1.0467e-05,9.1932e-06,7.2798e-06,7.0588e-06,6.4624e-06,6.3357e-06,6.0262e-06,5.5398e-06,4.8671e-06,4.8499e-06,3.6078e-06,2.5666e-06,2.4748e-06,2.3769e-06,2.3471e-06,1.9076e-06,1.6778e-06,1.082e-06,1.0572e-06,1.0089e-06,9.3234e-07,6.9419e-07,5.0904e-07,3.6137e-07,3.2577e-07,3.0619e-07,2.6145e-07,1.8966e-07,1.6454e-07,1.3675e-07,1.0272e-07,8.0098e-08,7.6572e-08,4.7148e-08,4.4213e-08,4.3185e-08,3.8518e-08,3.6801e-08,2.5524e-08,2.1794e-08,2.0819e-08,2.0722e-08,1.8821e-08,1.6525e-08,1.5556e-08,1.5142e-08,9.42e-09,9.4144e-09,6.1109e-09,3.7094e-09,2.3278e-09,1.5093e-09,1.2499e-09,1.1895e-09,1.0593e-09,9.5694e-10,7.5268e-10,7.3298e-10,4.5995e-10,4.0861e-10,3.2212e-10,2.3938e-10,1.998e-10,1.9576e-10,1.6892e-10,1.5299e-10,1.1985e-10,8.3208e-11,8.0397e-11,6.8429e-11,5.3019e-11,4.3061e-11,4.2643e-11,2.0685e-11,1.8363e-11,1.7342e-11,1.4971e-11,1.3868e-11,1.2291e-11,1.0138e-11,9.3779e-12,8.4115e-12,7.0586e-12,5.622e-12,4.5219e-12,4.423e-12,3.387e-12,2.8398e-12,2.4306e-12,1.7041e-12,1.4481e-12,1.3648e-12,1.1056e-12,1.0916e-12,9.9506e-13,9.552e-13,5.548e-13,4.8231e-13,4.5675e-13,3.5601e-13,3.0797e-13,3.0126e-13,2.1448e-13,1.1123e-13,9.1386e-14,8.2569e-14,6.5158e-14,6.384e-14,4.887e-14,4.7459e-14,3.3579e-14,2.738e-14,1.8148e-14,1.7483e-14,1.6881e-14,1.6554e-14,1.5527e-14,1.4736e-14,1.4273e-14,1.0191e-14,9.496e-15,4.8444e-15,3.8621e-15,3.3222e-15,3.1297e-15,1.9041e-15,1.8875e-15,1.6012e-15,1.4825e-15,1.0057e-15,9.9339e-16,9.649e-16,7.2194e-16,6.6615e-16,6.4738e-16,5.9338e-16,5.3017e-16,4.7654e-16,4.5083e-16,2.6086e-16,2.5586e-16,1.9185e-16,1.2429e-16,8.2445e-17,4.6437e-17,4.6058e-17,3.7532e-17,2.8986e-17,2.0584e-17,2.0505e-17,1.8208e-17,1.0391e-17,9.118e-18,8.9877e-18,4.6136e-18,3.9829e-18,3.659e-18,2.8167e-18,2.1719e-18,1.3432e-18,1.2455e-18,8.6467e-19,3.802e-19,3.7603e-19,3.5146e-19,3.0608e-19,2.7458e-19,2.4014e-19,2.0498e-19,4.6455e-20,3.1365e-20,1.7131e-20,1.0905e-20,1.0664e-20,1.013e-20,5.1495e-21,4.3949e-21,4.3375e-21,2.2619e-21,7.4695e-22,7.2098e-22,5.1913e-22,4.8499e-22,2.2719e-22,1.8359e-22,1.1517e-22,9.0236e-23,6.8875e-23,6.5341e-23,4.7373e-23,4.4759e-23,4.3568e-23,2.0921e-23,1.6786e-23,1.5299e-23,1.1314e-23,1.0286e-23,6.6419e-24,6.0101e-24,4.9139e-24,2.9713e-24,2.9572e-24,2.3205e-24,2.138e-24,2.1377e-24,1.2504e-24,1.2294e-24,9.8497e-25,7.7918e-25,4.6673e-25,2.9361e-25,2.1029e-25,1.2346e-25,7.5288e-26,3.9529e-26,3.8504e-26,2.3406e-26,1.4478e-26,1.0899e-26,5.0813e-27,4.0591e-27,2.5697e-27,1.9594e-27,1.1106e-27,1.0458e-27,9.2376e-28,6.9314e-28,3.7926e-28,2.0354e-28,1.4621e-28,1.0502e-28,8.8338e-29,8.6212e-29,6.2958e-29,4.3747e-29,1.4311e-29,1.0613e-29,9e-30,6.2496e-30,6.2339e-30,4.3495e-30,4.1588e-30,3.2561e-30,2.6743e-30,1.3759e-30,1.2494e-30,7.4194e-31,4.5607e-31,9.2085e-32,6.8052e-32,5.8793e-32,4.0046e-32,2.7907e-32,2.4324e-32,1.8478e-32,1.5163e-32,1.1861e-32,7.8981e-33,7.8809e-33,3.7835e-33,3.1118e-33,2.9874e-33,2.9231e-33,1.3812e-33,1.3579e-33,1.2588e-33,1.1889e-33,1.0254e-33,8.0224e-34,6.4357e-34,2.4122e-34,2.9305e-35,1.5575e-35,1.4727e-35,1.4061e-35,1.2104e-35,1.1136e-35,5.032e-36,2.9752e-36,2.0277e-36,1.6354e-36,1.0428e-36,7.1071e-37,6.6173e-37,3.8552e-37,2.8372e-37,1.9498e-37,1.0653e-37,4.7894e-38,4.5504e-38,3.4689e-38,2.8724e-38,2.6389e-38,1.0651e-38,8.3026e-39,2.662e-39,1.9395e-39,1.109e-39,8.2159e-40,7.4543e-40,4.3841e-40,4.0929e-40,3.5214e-40,2.5342e-40,1.3509e-40 1,0.8624,0.88478,0.88586,0.89228,0.89711,0.90333,0.91492,0.93987,0.95369,0.95567,0.96526,0.96672,0.97223,0.98362,0.98659,0.98849,0.99505,0.9959,0.99676,0.9989,0.99906,0.99915,0.99988,1,1,0.99958,0.9995,0.99899,0.99892,0.99884,0.99059,0.97549,0.97378,0.96785,0.96208,0.95728,0.95125,0.94378,0.92947,0.92098,0.90629,0.88633,0.88441,0.88028,0.87642,0.85553,0.8555,0.80105,0.79679,0.7944,0.77684,0.77553,0.73986,0.7255,0.71948,0.70617,0.69764,0.68293,0.67835,0.64284,0.62078,0.55145,0.53259,0.52631,0.51512,0.48469,0.47851,0.47306,0.44772,0.42444,0.41595,0.40906,0.38449,0.35033,0.31611,0.29417,0.28968,0.25148,0.23905,0.23339,0.23091,0.22102,0.18333,0.1822,0.17614,0.16682,0.16503,0.15245,0.12143,0.12105,0.11325,0.11055,0.08313,0.077167,0.076742,0.071732,0.065373,0.065252,0.064759,0.061178,0.061147,0.058044,0.056878,0.042231,0.036887,0.036716,0.031379,0.030067,0.02813,0.027228,0.026707,0.026141,0.025959,0.025478,0.023618,0.02341,0.022985,0.022642,0.020193,0.017707,0.014907,0.013958,0.012126,0.010337,0.009657,0.0093221,0.0062569,0.0059688,0.0057647,0.0053787,0.0049217,0.0045547,0.0042752,0.0042271,0.0041972,0.0038728,0.0031262,0.0030768,0.0028248,0.0024715,0.0022944,0.0022667,0.0014683,0.0014615,0.0013389,0.0011264,0.0010912,0.00096897,0.00094203,0.00077217,0.00067727,0.00050057,0.00049693,0.00034916,0.00033521,0.00033087,0.00026187,0.00025797,0.0002369,0.00021163,0.00020427,0.00019886,0.00017885,0.00017573,0.00017372,0.00015961,0.00015493,0.00015373,0.00014324,0.00013963,0.00012117,9.5563e-05,9.1576e-05,9.0541e-05,8.1314e-05,7.7768e-05,6.4799e-05,4.6872e-05,4.2354e-05,3.6044e-05,3.3958e-05,2.8756e-05,2.4344e-05,2.4014e-05,2.3761e-05,2.3732e-05,2.2588e-05,2.2493e-05,1.9254e-05,1.7922e-05,1.5653e-05,1.5558e-05,1.4997e-05,1.1835e-05,1.1753e-05,1.0492e-05,9.215e-06,7.2973e-06,7.0757e-06,6.478e-06,6.351e-06,6.0408e-06,5.5533e-06,4.879e-06,4.8618e-06,3.6167e-06,2.573e-06,2.481e-06,2.3828e-06,2.353e-06,1.9124e-06,1.6821e-06,1.0848e-06,1.0599e-06,1.0116e-06,9.3477e-07,6.9602e-07,5.1039e-07,3.6234e-07,3.2665e-07,3.0701e-07,2.6216e-07,1.9018e-07,1.65e-07,1.3713e-07,1.0301e-07,8.0324e-08,7.6789e-08,4.7283e-08,4.434e-08,4.331e-08,3.8629e-08,3.6907e-08,2.5598e-08,2.1858e-08,2.088e-08,2.0783e-08,1.8876e-08,1.6574e-08,1.5602e-08,1.5187e-08,9.4482e-09,9.4427e-09,6.1294e-09,3.7209e-09,2.3351e-09,1.5141e-09,1.2539e-09,1.1933e-09,1.0626e-09,9.5998e-10,7.5508e-10,7.3533e-10,4.6144e-10,4.0994e-10,3.2317e-10,2.4017e-10,2.0046e-10,1.964e-10,1.6948e-10,1.535e-10,1.2025e-10,8.3488e-11,8.0668e-11,6.866e-11,5.3199e-11,4.3208e-11,4.2789e-11,2.0757e-11,1.8427e-11,1.7402e-11,1.5023e-11,1.3917e-11,1.2334e-11,1.0173e-11,9.4109e-12,8.4411e-12,7.0836e-12,5.642e-12,4.538e-12,4.4388e-12,3.3991e-12,2.8501e-12,2.4393e-12,1.7103e-12,1.4534e-12,1.3698e-12,1.1096e-12,1.0956e-12,9.9871e-13,9.5871e-13,5.5686e-13,4.8411e-13,4.5845e-13,3.5734e-13,3.0912e-13,3.0239e-13,2.1529e-13,1.1165e-13,9.1735e-14,8.2885e-14,6.5409e-14,6.4086e-14,4.9059e-14,4.7643e-14,3.3709e-14,2.7487e-14,1.8219e-14,1.7552e-14,1.6947e-14,1.6619e-14,1.5588e-14,1.4794e-14,1.4329e-14,1.0232e-14,9.5337e-15,4.8639e-15,3.8776e-15,3.3356e-15,3.1424e-15,1.9118e-15,1.8952e-15,1.6077e-15,1.4885e-15,1.0098e-15,9.9747e-16,9.6886e-16,7.2492e-16,6.689e-16,6.5005e-16,5.9584e-16,5.3236e-16,4.7852e-16,4.527e-16,2.6195e-16,2.5693e-16,1.9266e-16,1.2482e-16,8.2795e-17,4.6636e-17,4.6256e-17,3.7693e-17,2.9111e-17,2.0673e-17,2.0594e-17,1.8287e-17,1.0437e-17,9.1578e-18,9.027e-18,4.634e-18,4.0005e-18,3.6752e-18,2.8292e-18,2.1816e-18,1.3492e-18,1.2511e-18,8.6857e-19,3.8193e-19,3.7774e-19,3.5306e-19,3.0747e-19,2.7584e-19,2.4124e-19,2.0592e-19,4.6671e-20,3.1512e-20,1.7212e-20,1.0957e-20,1.0715e-20,1.0178e-20,5.1741e-21,4.416e-21,4.3582e-21,2.2728e-21,7.5059e-22,7.2449e-22,5.2167e-22,4.8737e-22,2.2831e-22,1.845e-22,1.1574e-22,9.0685e-23,6.9219e-23,6.5667e-23,4.761e-23,4.4983e-23,4.3786e-23,2.1026e-23,1.6871e-23,1.5377e-23,1.1371e-23,1.0338e-23,6.6758e-24,6.0408e-24,4.939e-24,2.9865e-24,2.9724e-24,2.3325e-24,2.149e-24,2.1487e-24,1.2569e-24,1.2357e-24,9.9009e-25,7.8323e-25,4.6917e-25,2.9515e-25,2.114e-25,1.2411e-25,7.5688e-26,3.974e-26,3.871e-26,2.3532e-26,1.4556e-26,1.0958e-26,5.109e-27,4.0812e-27,2.5838e-27,1.9701e-27,1.1167e-27,1.0515e-27,9.2886e-28,6.9697e-28,3.8137e-28,2.0468e-28,1.4703e-28,1.0561e-28,8.8835e-29,8.6696e-29,6.3312e-29,4.3994e-29,1.4392e-29,1.0674e-29,9.0514e-30,6.2855e-30,6.2697e-30,4.3745e-30,4.1827e-30,3.2749e-30,2.6897e-30,1.3838e-30,1.2567e-30,7.4626e-31,4.5874e-31,9.2629e-32,6.8455e-32,5.9141e-32,4.0284e-32,2.8074e-32,2.4469e-32,1.8588e-32,1.5254e-32,1.1932e-32,7.9456e-33,7.9283e-33,3.8063e-33,3.1306e-33,3.0054e-33,2.9408e-33,1.3896e-33,1.3661e-33,1.2664e-33,1.1962e-33,1.0317e-33,8.0713e-34,6.4751e-34,2.427e-34,2.9488e-35,1.5673e-35,1.482e-35,1.4149e-35,1.218e-35,1.1205e-35,5.0637e-36,2.994e-36,2.0405e-36,1.6458e-36,1.0494e-36,7.1524e-37,6.6595e-37,3.8798e-37,2.8554e-37,1.9624e-37,1.0722e-37,4.8204e-38,4.5799e-38,3.4914e-38,2.8911e-38,2.6561e-38,1.0721e-38,8.357e-39,2.6795e-39,1.9523e-39,1.1163e-39,8.2704e-40,7.5038e-40,4.4133e-40,4.1202e-40,3.5448e-40,2.5511e-40,1.36e-40 1,0.84851,0.87178,0.8729,0.87961,0.88467,0.89119,0.90339,0.92991,0.9448,0.94694,0.95742,0.95903,0.96513,0.97802,0.98148,0.98371,0.99175,0.99286,0.994,0.99711,0.99738,0.99753,0.999,0.99956,0.99958,1,1,0.99988,0.99985,0.99982,0.99414,0.98141,0.97992,0.97466,0.96948,0.96513,0.95963,0.95276,0.93946,0.93151,0.91766,0.8987,0.89686,0.89292,0.88922,0.86917,0.86914,0.81637,0.81221,0.80988,0.79271,0.79143,0.75643,0.74228,0.73634,0.72319,0.71476,0.7002,0.69565,0.66037,0.63838,0.56898,0.55002,0.5437,0.53243,0.50173,0.49549,0.48998,0.46433,0.44072,0.4321,0.42509,0.40009,0.36523,0.33023,0.30772,0.30312,0.26382,0.251,0.24515,0.24259,0.23238,0.19333,0.19216,0.18586,0.17618,0.17432,0.16122,0.12884,0.12845,0.12029,0.11746,0.088661,0.08238,0.081932,0.07665,0.069936,0.069808,0.069287,0.065502,0.065469,0.062186,0.060953,0.045416,0.03973,0.039549,0.033859,0.032459,0.03039,0.029425,0.028869,0.028263,0.028069,0.027554,0.025563,0.02534,0.024885,0.024517,0.021892,0.019222,0.016211,0.01519,0.013215,0.011282,0.010547,0.010184,0.006861,0.0065479,0.006326,0.0059061,0.0054087,0.0050088,0.004704,0.0046516,0.004619,0.0042649,0.0034491,0.0033951,0.0031193,0.0027323,0.002538,0.0025077,0.0016302,0.0016226,0.0014876,0.0012532,0.0012144,0.0010793,0.0010496,0.00086164,0.0007565,0.0005604,0.00055635,0.00039193,0.00037639,0.00037155,0.00029455,0.0002902,0.00026667,0.00023841,0.00023017,0.00022413,0.00020172,0.00019822,0.00019597,0.00018016,0.00017491,0.00017357,0.0001618,0.00015776,0.00013704,0.00010825,0.00010376,0.0001026,9.2207e-05,8.8213e-05,7.3592e-05,5.3345e-05,4.8235e-05,4.1092e-05,3.8728e-05,3.283e-05,2.7822e-05,2.7447e-05,2.716e-05,2.7127e-05,2.5828e-05,2.572e-05,2.2038e-05,2.0522e-05,1.7939e-05,1.7831e-05,1.7192e-05,1.3587e-05,1.3494e-05,1.2054e-05,1.0595e-05,8.4019e-06,8.1483e-06,7.4639e-06,7.3185e-06,6.963e-06,6.4043e-06,5.631e-06,5.6112e-06,4.1814e-06,2.9806e-06,2.8746e-06,2.7615e-06,2.7272e-06,2.2191e-06,1.9533e-06,1.2627e-06,1.234e-06,1.178e-06,1.089e-06,8.1219e-07,5.9659e-07,4.2431e-07,3.8273e-07,3.5984e-07,3.0753e-07,2.2346e-07,1.9402e-07,1.614e-07,1.2142e-07,9.4803e-08,9.0651e-08,5.5956e-08,5.2489e-08,5.1276e-08,4.576e-08,4.3731e-08,3.0386e-08,2.5966e-08,2.481e-08,2.4695e-08,2.244e-08,1.9715e-08,1.8564e-08,1.8074e-08,1.127e-08,1.1263e-08,7.3261e-09,4.4577e-09,2.8036e-09,1.8214e-09,1.5097e-09,1.4371e-09,1.2804e-09,1.1573e-09,9.1124e-10,8.875e-10,5.5809e-10,4.9606e-10,3.9148e-10,2.9131e-10,2.4334e-10,2.3843e-10,2.0588e-10,1.8654e-10,1.463e-10,1.0173e-10,9.8307e-11,8.3731e-11,6.4946e-11,5.2795e-11,5.2285e-11,2.544e-11,2.2596e-11,2.1344e-11,1.8437e-11,1.7085e-11,1.515e-11,1.2505e-11,1.1572e-11,1.0384e-11,8.7203e-12,6.9519e-12,5.5966e-12,5.4747e-12,4.1969e-12,3.5214e-12,3.0158e-12,2.1174e-12,1.8005e-12,1.6973e-12,1.3761e-12,1.3588e-12,1.2391e-12,1.1896e-12,6.9246e-13,6.0232e-13,5.7051e-13,4.4512e-13,3.8527e-13,3.769e-13,2.687e-13,1.3969e-13,1.1486e-13,1.0382e-13,8.2001e-14,8.0348e-14,6.157e-14,5.9799e-14,4.2365e-14,3.457e-14,2.2949e-14,2.2111e-14,2.1353e-14,2.094e-14,1.9646e-14,1.8649e-14,1.8065e-14,1.2915e-14,1.2037e-14,6.1559e-15,4.9116e-15,4.2274e-15,3.9833e-15,2.4277e-15,2.4067e-15,2.0428e-15,1.8919e-15,1.2852e-15,1.2695e-15,1.2332e-15,9.2366e-16,8.5252e-16,8.2859e-16,7.5971e-16,6.7905e-16,6.1059e-16,5.7776e-16,3.3494e-16,3.2854e-16,2.466e-16,1.6e-16,1.0628e-16,5.9981e-17,5.9494e-17,4.8514e-17,3.75e-17,2.6661e-17,2.6559e-17,2.3593e-17,1.349e-17,1.1842e-17,1.1674e-17,6.0056e-18,5.1872e-18,4.7667e-18,3.6726e-18,2.8342e-18,1.7555e-18,1.6283e-18,1.1317e-18,4.9895e-19,4.935e-19,4.6135e-19,4.0196e-19,3.6072e-19,3.1562e-19,2.6953e-19,6.1373e-20,4.1488e-20,2.2703e-20,1.4472e-20,1.4154e-20,1.3447e-20,6.8496e-21,5.8488e-21,5.7725e-21,3.0162e-21,9.9938e-22,9.6474e-22,6.9533e-22,6.4973e-22,3.0505e-22,2.4667e-22,1.5494e-22,1.2149e-22,9.2805e-23,8.8055e-23,6.3901e-23,6.0385e-23,5.8783e-23,2.8287e-23,2.2711e-23,2.0705e-23,1.5324e-23,1.3936e-23,9.0102e-24,8.1554e-24,6.6718e-24,4.04e-24,4.0209e-24,3.1574e-24,2.9097e-24,2.9094e-24,1.7044e-24,1.6757e-24,1.3434e-24,1.0634e-24,6.3792e-25,4.0182e-25,2.8807e-25,1.6937e-25,1.0342e-25,5.4397e-26,5.2991e-26,3.2256e-26,1.9979e-26,1.5052e-26,7.0316e-27,5.6204e-27,3.5625e-27,2.7183e-27,1.5431e-27,1.4533e-27,1.2841e-27,9.6429e-28,5.2846e-28,2.8408e-28,2.0424e-28,1.4683e-28,1.2356e-28,1.2059e-28,8.8137e-29,6.1301e-29,2.0111e-29,1.4926e-29,1.2663e-29,8.8013e-30,8.7792e-30,6.1311e-30,5.8628e-30,4.5931e-30,3.7744e-30,1.9451e-30,1.7668e-30,1.0505e-30,6.4654e-31,1.3106e-31,9.6929e-32,8.3771e-32,5.7113e-32,3.9837e-32,3.4733e-32,2.6403e-32,2.1677e-32,1.6966e-32,1.1309e-32,1.1285e-32,5.4272e-33,4.4658e-33,4.2876e-33,4.1956e-33,1.9861e-33,1.9526e-33,1.8104e-33,1.7102e-33,1.4755e-33,1.1551e-33,9.2711e-34,3.483e-34,4.2526e-35,2.2635e-35,2.1406e-35,2.044e-35,1.7601e-35,1.6196e-35,7.3322e-36,4.3405e-36,2.9607e-36,2.3891e-36,1.525e-36,1.0403e-36,9.6872e-37,5.6507e-37,4.1615e-37,2.8624e-37,1.566e-37,7.0533e-38,6.7021e-38,5.1123e-38,4.2351e-38,3.8915e-38,1.5739e-38,1.2275e-38,3.9457e-39,2.8768e-39,1.6469e-39,1.221e-39,1.108e-39,6.5242e-40,6.0918e-40,5.2428e-40,3.7758e-40,2.0155e-40 1,0.84722,0.87057,0.8717,0.87843,0.88351,0.89005,0.90231,0.92897,0.94395,0.94611,0.95667,0.95829,0.96445,0.97747,0.98097,0.98323,0.99141,0.99255,0.99371,0.99691,0.99719,0.99734,0.99888,0.99948,0.9995,1,1,0.99991,0.99989,0.99986,0.99442,0.98191,0.98043,0.97524,0.97011,0.96581,0.96035,0.95354,0.94034,0.93243,0.91867,0.89979,0.89797,0.89404,0.89036,0.87039,0.87035,0.81774,0.81359,0.81128,0.79414,0.79286,0.75792,0.7438,0.73786,0.72473,0.71631,0.70176,0.69722,0.66196,0.63998,0.57058,0.55161,0.54529,0.53401,0.50329,0.49705,0.49153,0.46586,0.44221,0.43358,0.42656,0.40153,0.36661,0.33153,0.30898,0.30436,0.26496,0.2521,0.24624,0.24367,0.23343,0.19426,0.19308,0.18677,0.17705,0.17518,0.16204,0.12953,0.12914,0.12094,0.1181,0.089179,0.082868,0.082419,0.077111,0.070364,0.070236,0.069712,0.065908,0.065875,0.062575,0.061335,0.045715,0.039998,0.039815,0.034093,0.032684,0.030603,0.029633,0.029073,0.028464,0.028268,0.02775,0.025747,0.025522,0.025064,0.024694,0.022053,0.019366,0.016335,0.015306,0.013318,0.011372,0.010631,0.010266,0.0069185,0.0066031,0.0063795,0.0059564,0.0054551,0.0050521,0.0047449,0.0046921,0.0046592,0.0043024,0.00348,0.0034256,0.0031475,0.0027572,0.0025613,0.0025307,0.0016457,0.0016381,0.0015019,0.0012654,0.0012262,0.0010899,0.0010599,0.00087024,0.00076413,0.00056617,0.00056208,0.00039606,0.00038036,0.00037548,0.00029771,0.00029332,0.00026955,0.000241,0.00023268,0.00022657,0.00020394,0.0002004,0.00019813,0.00018215,0.00017685,0.00017549,0.0001636,0.00015951,0.00013857,0.00010948,0.00010494,0.00010377,9.3265e-05,8.9227e-05,7.4446e-05,5.3975e-05,4.8808e-05,4.1583e-05,3.9193e-05,3.3228e-05,2.8162e-05,2.7782e-05,2.7492e-05,2.7458e-05,2.6144e-05,2.6035e-05,2.2309e-05,2.0776e-05,1.8162e-05,1.8053e-05,1.7407e-05,1.3758e-05,1.3664e-05,1.2206e-05,1.073e-05,8.5101e-06,8.2533e-06,7.5605e-06,7.4132e-06,7.0534e-06,6.4877e-06,5.7047e-06,5.6847e-06,4.2369e-06,3.0207e-06,2.9133e-06,2.7987e-06,2.764e-06,2.2493e-06,1.9799e-06,1.2803e-06,1.2512e-06,1.1944e-06,1.1042e-06,8.2366e-07,6.051e-07,4.3044e-07,3.8828e-07,3.6507e-07,3.1202e-07,2.2676e-07,1.969e-07,1.6381e-07,1.2325e-07,9.6241e-08,9.2028e-08,5.6818e-08,5.33e-08,5.2068e-08,4.647e-08,4.441e-08,3.0863e-08,2.6376e-08,2.5202e-08,2.5085e-08,2.2795e-08,2.0028e-08,1.886e-08,1.8362e-08,1.1451e-08,1.1445e-08,7.4457e-09,4.5315e-09,2.8505e-09,1.8523e-09,1.5354e-09,1.4616e-09,1.3023e-09,1.1771e-09,9.2693e-10,9.028e-10,5.6782e-10,5.0473e-10,3.9835e-10,2.9646e-10,2.4767e-10,2.4267e-10,2.0955e-10,1.8988e-10,1.4893e-10,1.0357e-10,1.0009e-10,8.5254e-11,6.6134e-11,5.3765e-11,5.3246e-11,2.5915e-11,2.3019e-11,2.1744e-11,1.8783e-11,1.7406e-11,1.5436e-11,1.2742e-11,1.1791e-11,1.0581e-11,8.8865e-12,7.0851e-12,5.7042e-12,5.58e-12,4.278e-12,3.5898e-12,3.0745e-12,2.1589e-12,1.8359e-12,1.7307e-12,1.4033e-12,1.3856e-12,1.2636e-12,1.2132e-12,7.0631e-13,6.144e-13,5.8196e-13,4.5409e-13,3.9305e-13,3.8453e-13,2.7416e-13,1.4257e-13,1.1723e-13,1.0597e-13,8.3703e-14,8.2017e-14,6.2854e-14,6.1047e-14,4.3254e-14,3.5298e-14,2.3435e-14,2.258e-14,2.1806e-14,2.1385e-14,2.0063e-14,1.9045e-14,1.845e-14,1.3191e-14,1.2295e-14,6.2891e-15,5.0182e-15,4.3194e-15,4.07e-15,2.481e-15,2.4595e-15,2.0878e-15,1.9336e-15,1.3137e-15,1.2977e-15,1.2606e-15,9.4423e-16,8.7153e-16,8.4707e-16,7.7668e-16,6.9424e-16,6.2427e-16,5.9071e-16,3.4251e-16,3.3597e-16,2.522e-16,1.6366e-16,1.0872e-16,6.1369e-17,6.0871e-17,4.964e-17,3.8374e-17,2.7284e-17,2.7181e-17,2.4146e-17,1.3809e-17,1.2122e-17,1.195e-17,6.1489e-18,5.3111e-18,4.8807e-18,3.7607e-18,2.9024e-18,1.7981e-18,1.6678e-18,1.1593e-18,5.1123e-19,5.0563e-19,4.7271e-19,4.1187e-19,3.6963e-19,3.2342e-19,2.7621e-19,6.292e-20,4.2538e-20,2.3282e-20,1.4843e-20,1.4516e-20,1.3791e-20,7.0265e-21,6.0001e-21,5.9219e-21,3.0948e-21,1.0257e-21,9.9019e-22,7.1373e-22,6.6694e-22,3.132e-22,2.5326e-22,1.5911e-22,1.2476e-22,9.5312e-23,9.0435e-23,6.5634e-23,6.2024e-23,6.0378e-23,2.906e-23,2.3333e-23,2.1272e-23,1.5746e-23,1.4319e-23,9.2592e-24,8.3811e-24,6.8567e-24,4.1525e-24,4.1329e-24,3.2456e-24,2.991e-24,2.9906e-24,1.7522e-24,1.7228e-24,1.3812e-24,1.0934e-24,6.5599e-25,4.1325e-25,2.9629e-25,1.7423e-25,1.064e-25,5.5973e-26,5.4526e-26,3.3195e-26,2.0562e-26,1.5493e-26,7.2389e-27,5.7864e-27,3.6681e-27,2.7991e-27,1.5892e-27,1.4967e-27,1.3225e-27,9.9318e-28,5.4438e-28,2.9268e-28,2.1044e-28,1.5129e-28,1.2732e-28,1.2427e-28,9.0829e-29,6.3179e-29,2.0732e-29,1.5388e-29,1.3055e-29,9.0749e-30,9.0522e-30,6.3222e-30,6.0457e-30,4.7366e-30,3.8924e-30,2.0062e-30,1.8224e-30,1.0837e-30,6.6703e-31,1.3527e-31,1.0004e-31,8.6466e-32,5.8955e-32,4.1125e-32,3.5857e-32,2.726e-32,2.2381e-32,1.7518e-32,1.1678e-32,1.1653e-32,5.6051e-33,4.6124e-33,4.4284e-33,4.3334e-33,2.0517e-33,2.017e-33,1.8702e-33,1.7667e-33,1.5243e-33,1.1933e-33,9.5787e-34,3.5994e-34,4.3965e-35,2.3405e-35,2.2134e-35,2.1135e-35,1.8201e-35,1.6748e-35,7.5832e-36,4.4896e-36,3.0627e-36,2.4715e-36,1.5777e-36,1.0763e-36,1.0023e-36,5.8472e-37,4.3065e-37,2.9624e-37,1.6209e-37,7.3017e-38,6.9383e-38,5.2927e-38,4.3847e-38,4.0291e-38,1.6298e-38,1.2712e-38,4.087e-39,2.9801e-39,1.7062e-39,1.265e-39,1.148e-39,6.7603e-40,6.3124e-40,5.4328e-40,3.9129e-40,2.089e-40 1,0.84076,0.86449,0.86564,0.8725,0.87768,0.88435,0.89688,0.92422,0.93967,0.9419,0.95285,0.95454,0.96097,0.97465,0.97836,0.98078,0.98962,0.99087,0.99216,0.99579,0.99612,0.9963,0.99817,0.99897,0.99899,0.99988,0.99991,1,1,0.99999,0.99572,0.98429,0.98291,0.97803,0.97317,0.96908,0.96387,0.95733,0.9446,0.93695,0.92357,0.90516,0.90338,0.89954,0.89594,0.87635,0.87632,0.82451,0.82041,0.81812,0.80119,0.79992,0.7653,0.75129,0.74539,0.73235,0.72398,0.7095,0.70498,0.66984,0.64791,0.57852,0.55952,0.55319,0.54188,0.51105,0.50478,0.49924,0.47344,0.44966,0.44097,0.4339,0.40868,0.37346,0.33804,0.31523,0.31056,0.27067,0.25764,0.2517,0.24909,0.2387,0.19892,0.19772,0.1913,0.18141,0.17952,0.16613,0.13301,0.1326,0.12424,0.12134,0.091783,0.085326,0.084866,0.079431,0.07252,0.072388,0.071852,0.067952,0.067918,0.064534,0.063263,0.047227,0.04135,0.041162,0.035274,0.033824,0.03168,0.030681,0.030104,0.029476,0.029274,0.028741,0.026676,0.026444,0.025972,0.025591,0.022866,0.020092,0.01696,0.015897,0.013841,0.011826,0.01106,0.010682,0.0072105,0.0068831,0.006651,0.0062116,0.0056909,0.0052721,0.0049528,0.0048979,0.0048637,0.0044926,0.0036369,0.0035802,0.0032907,0.0028841,0.00268,0.0026481,0.0017248,0.0017168,0.0015746,0.0013274,0.0012865,0.001144,0.0011126,0.00091415,0.00080304,0.00059562,0.00059133,0.00041716,0.00040068,0.00039555,0.00031387,0.00030925,0.00028426,0.00025425,0.0002455,0.00023907,0.00021526,0.00021154,0.00020915,0.00019234,0.00018676,0.00018533,0.00017281,0.00016851,0.00014645,0.00011579,0.000111,0.00010976,9.8686e-05,9.4426e-05,7.8827e-05,5.7206e-05,5.1745e-05,4.4106e-05,4.1578e-05,3.5267e-05,2.9904e-05,2.9503e-05,2.9195e-05,2.9159e-05,2.7767e-05,2.7652e-05,2.3705e-05,2.208e-05,1.931e-05,1.9194e-05,1.8509e-05,1.4639e-05,1.4539e-05,1.2992e-05,1.1425e-05,9.0669e-06,8.7941e-06,8.0578e-06,7.9012e-06,7.5187e-06,6.9172e-06,6.0845e-06,6.0632e-06,4.5225e-06,3.2272e-06,3.1128e-06,2.9907e-06,2.9536e-06,2.4049e-06,2.1176e-06,1.3708e-06,1.3397e-06,1.2791e-06,1.1828e-06,8.8288e-07,6.491e-07,4.6212e-07,4.1696e-07,3.9209e-07,3.3524e-07,2.4383e-07,2.1179e-07,1.7627e-07,1.3271e-07,1.0369e-07,9.9163e-08,6.1291e-08,5.7504e-08,5.6178e-08,5.0151e-08,4.7933e-08,3.3338e-08,2.8501e-08,2.7235e-08,2.711e-08,2.464e-08,2.1656e-08,2.0395e-08,1.9857e-08,1.2397e-08,1.239e-08,8.068e-09,4.9154e-09,3.095e-09,2.013e-09,1.6693e-09,1.5892e-09,1.4163e-09,1.2804e-09,1.0088e-09,9.8257e-10,6.1857e-10,5.4998e-10,4.3427e-10,3.2338e-10,2.7025e-10,2.6481e-10,2.2874e-10,2.073e-10,1.6267e-10,1.1321e-10,1.0941e-10,9.3222e-11,7.2351e-11,5.8842e-11,5.8275e-11,2.8401e-11,2.5233e-11,2.3838e-11,2.0598e-11,1.9091e-11,1.6933e-11,1.3983e-11,1.2942e-11,1.1616e-11,9.7585e-12,7.7836e-12,6.269e-12,6.1328e-12,4.7041e-12,3.9486e-12,3.3828e-12,2.3769e-12,2.0218e-12,1.9062e-12,1.5462e-12,1.5267e-12,1.3925e-12,1.3371e-12,7.7916e-13,6.7793e-13,6.422e-13,5.0131e-13,4.3404e-13,4.2464e-13,3.0294e-13,1.5771e-13,1.2972e-13,1.1728e-13,9.2676e-14,9.0812e-14,6.9626e-14,6.7627e-14,4.7944e-14,3.9139e-14,2.6003e-14,2.5056e-14,2.4198e-14,2.3731e-14,2.2267e-14,2.1139e-14,2.0479e-14,1.465e-14,1.3656e-14,6.9932e-15,5.5821e-15,4.8059e-15,4.5289e-15,2.7629e-15,2.739e-15,2.3256e-15,2.1541e-15,1.4644e-15,1.4466e-15,1.4053e-15,1.0531e-15,9.7217e-16,9.4493e-16,8.6653e-16,7.7468e-16,6.9673e-16,6.5933e-16,3.8262e-16,3.7533e-16,2.8187e-16,1.8303e-16,1.2167e-16,6.8738e-17,6.818e-17,5.5618e-17,4.3012e-17,3.0598e-17,3.0482e-17,2.7084e-17,1.5501e-17,1.3611e-17,1.3417e-17,6.9109e-18,5.9706e-18,5.4875e-18,4.2299e-18,3.2658e-18,2.0245e-18,1.8781e-18,1.3062e-18,5.7667e-19,5.7037e-19,5.3328e-19,4.6474e-19,4.1714e-19,3.6506e-19,3.1184e-19,7.1185e-20,4.8152e-20,2.6376e-20,1.6826e-20,1.6456e-20,1.5636e-20,7.9736e-21,6.8103e-21,6.7216e-21,3.5158e-21,1.167e-21,1.1266e-21,8.1243e-22,7.5924e-22,3.569e-22,2.8868e-22,1.8147e-22,1.4234e-22,1.0878e-22,1.0322e-22,7.4945e-23,7.0827e-23,6.8951e-23,3.3218e-23,2.6679e-23,2.4325e-23,1.8012e-23,1.6383e-23,1.0599e-23,9.5954e-24,7.8522e-24,4.7584e-24,4.7359e-24,3.7203e-24,3.4288e-24,3.4284e-24,2.0101e-24,1.9764e-24,1.585e-24,1.2551e-24,7.5345e-25,4.7492e-25,3.4064e-25,2.0044e-25,1.2249e-25,6.4483e-26,6.2818e-26,3.8266e-26,2.3717e-26,1.7876e-26,8.3602e-27,6.6844e-27,4.2397e-27,3.2363e-27,1.8386e-27,1.7317e-27,1.5305e-27,1.1497e-27,6.3063e-28,3.3929e-28,2.4405e-28,1.7552e-28,1.4775e-28,1.442e-28,1.0544e-28,7.3372e-29,2.4108e-29,1.79e-29,1.5189e-29,1.0563e-29,1.0536e-29,7.3616e-30,7.0399e-30,5.5172e-30,4.5349e-30,2.3391e-30,2.1249e-30,1.2644e-30,7.7866e-31,1.5818e-31,1.1703e-31,1.0116e-31,6.9006e-32,4.8155e-32,4.1993e-32,3.1934e-32,2.6224e-32,2.0532e-32,1.3693e-32,1.3663e-32,6.5775e-33,5.4137e-33,5.198e-33,5.0866e-33,2.4102e-33,2.3695e-33,2.1972e-33,2.0758e-33,1.7913e-33,1.4027e-33,1.1262e-33,4.2362e-34,5.1858e-35,2.7625e-35,2.6126e-35,2.4949e-35,2.1488e-35,1.9774e-35,8.961e-36,5.3081e-36,3.6225e-36,2.9239e-36,1.8674e-36,1.2744e-36,1.1869e-36,6.9277e-37,5.1039e-37,3.5122e-37,1.923e-37,8.6692e-38,8.2381e-38,6.2859e-38,5.2085e-38,4.7865e-38,1.9379e-38,1.5119e-38,4.8664e-39,3.5495e-39,2.0333e-39,1.508e-39,1.3686e-39,8.0637e-40,7.53e-40,6.4817e-40,4.6698e-40,2.4946e-40 1,0.83991,0.86368,0.86484,0.87171,0.8769,0.88359,0.89615,0.92358,0.93909,0.94134,0.95234,0.95404,0.9605,0.97427,0.97801,0.98044,0.98937,0.99063,0.99195,0.99563,0.99596,0.99615,0.99807,0.99889,0.99892,0.99985,0.99989,1,1,1,0.99587,0.98459,0.98323,0.97838,0.97356,0.9695,0.96432,0.95781,0.94515,0.93753,0.9242,0.90586,0.90408,0.90025,0.89666,0.87713,0.8771,0.8254,0.82131,0.81902,0.80211,0.80085,0.76627,0.75227,0.74638,0.73335,0.72498,0.71051,0.706,0.67088,0.64896,0.57957,0.56057,0.55423,0.54292,0.51208,0.50581,0.50026,0.47444,0.45064,0.44194,0.43487,0.40962,0.37437,0.3389,0.31606,0.31138,0.27142,0.25837,0.25242,0.24981,0.2394,0.19954,0.19833,0.1919,0.18199,0.18009,0.16668,0.13347,0.13307,0.12468,0.12177,0.092131,0.085654,0.085192,0.07974,0.072807,0.072675,0.072137,0.068225,0.068191,0.064796,0.06352,0.047429,0.04153,0.041342,0.035432,0.033976,0.031825,0.030821,0.030242,0.029612,0.029409,0.028873,0.0268,0.026568,0.026094,0.025711,0.022974,0.020189,0.017044,0.015977,0.013911,0.011887,0.011117,0.010737,0.0072498,0.0069207,0.0066875,0.0062459,0.0057226,0.0053017,0.0049808,0.0049256,0.0048912,0.0045182,0.003658,0.0036011,0.00331,0.0029012,0.002696,0.0026639,0.0017355,0.0017275,0.0015844,0.0013358,0.0012947,0.0011513,0.0011197,0.00092008,0.0008083,0.0005996,0.00059528,0.00042001,0.00040343,0.00039827,0.00031605,0.00031141,0.00028626,0.00025604,0.00024724,0.00024077,0.0002168,0.00021305,0.00021064,0.00019372,0.0001881,0.00018666,0.00017406,0.00016972,0.00014752,0.00011664,0.00011183,0.00011058,9.9421e-05,9.5131e-05,7.9421e-05,5.7644e-05,5.2144e-05,4.4449e-05,4.1902e-05,3.5544e-05,3.0141e-05,2.9736e-05,2.9426e-05,2.939e-05,2.7988e-05,2.7872e-05,2.3895e-05,2.2258e-05,1.9466e-05,1.935e-05,1.8659e-05,1.4759e-05,1.4658e-05,1.3099e-05,1.1519e-05,9.1427e-06,8.8677e-06,8.1255e-06,7.9677e-06,7.5821e-06,6.9758e-06,6.1363e-06,6.1148e-06,4.5615e-06,3.2553e-06,3.14e-06,3.0169e-06,2.9795e-06,2.4261e-06,2.1364e-06,1.3832e-06,1.3518e-06,1.2906e-06,1.1935e-06,8.9097e-07,6.5512e-07,4.6645e-07,4.2089e-07,3.9579e-07,3.3842e-07,2.4616e-07,2.1383e-07,1.7798e-07,1.3401e-07,1.0471e-07,1.0014e-07,6.1905e-08,5.8081e-08,5.6742e-08,5.0656e-08,4.8416e-08,3.3678e-08,2.8793e-08,2.7515e-08,2.7388e-08,2.4894e-08,2.1879e-08,2.0606e-08,2.0063e-08,1.2527e-08,1.252e-08,8.1536e-09,4.9682e-09,3.1287e-09,2.0351e-09,1.6877e-09,1.6068e-09,1.432e-09,1.2946e-09,1.0201e-09,9.9357e-10,6.2557e-10,5.5622e-10,4.3923e-10,3.271e-10,2.7337e-10,2.6787e-10,2.3139e-10,2.0971e-10,1.6457e-10,1.1454e-10,1.107e-10,9.4324e-11,7.321e-11,5.9544e-11,5.8971e-11,2.8745e-11,2.5539e-11,2.4128e-11,2.0849e-11,1.9324e-11,1.7141e-11,1.4155e-11,1.3101e-11,1.1759e-11,9.8794e-12,7.8804e-12,6.3474e-12,6.2095e-12,4.7632e-12,3.9983e-12,3.4255e-12,2.4071e-12,2.0476e-12,1.9306e-12,1.566e-12,1.5463e-12,1.4104e-12,1.3543e-12,7.8928e-13,6.8676e-13,6.5058e-13,5.0788e-13,4.3973e-13,4.3021e-13,3.0694e-13,1.5982e-13,1.3146e-13,1.1885e-13,9.3925e-14,9.2037e-14,7.0569e-14,6.8543e-14,4.8597e-14,3.9674e-14,2.6361e-14,2.5401e-14,2.4531e-14,2.4058e-14,2.2575e-14,2.1431e-14,2.0762e-14,1.4854e-14,1.3846e-14,7.0915e-15,5.6608e-15,4.8738e-15,4.593e-15,2.8023e-15,2.7781e-15,2.3589e-15,2.1849e-15,1.4855e-15,1.4674e-15,1.4256e-15,1.0684e-15,9.8625e-16,9.5861e-16,8.7909e-16,7.8594e-16,7.0686e-16,6.6893e-16,3.8824e-16,3.8084e-16,2.8602e-16,1.8574e-16,1.2348e-16,6.9771e-17,6.9205e-17,5.6456e-17,4.3662e-17,3.1062e-17,3.0945e-17,2.7496e-17,1.5739e-17,1.382e-17,1.3623e-17,7.018e-18,6.0633e-18,5.5727e-18,4.2958e-18,3.3168e-18,2.0564e-18,1.9077e-18,1.3268e-18,5.8587e-19,5.7948e-19,5.418e-19,4.7218e-19,4.2383e-19,3.7092e-19,3.1686e-19,7.235e-20,4.8943e-20,2.6813e-20,1.7106e-20,1.673e-20,1.5896e-20,8.1073e-21,6.9247e-21,6.8346e-21,3.5753e-21,1.187e-21,1.1459e-21,8.2639e-22,7.7229e-22,3.6308e-22,2.9369e-22,1.8463e-22,1.4483e-22,1.1069e-22,1.0503e-22,7.6264e-23,7.2075e-23,7.0166e-23,3.3807e-23,2.7153e-23,2.4758e-23,1.8334e-23,1.6675e-23,1.079e-23,9.7677e-24,7.9935e-24,4.8444e-24,4.8215e-24,3.7877e-24,3.491e-24,3.4906e-24,2.0467e-24,2.0124e-24,1.6139e-24,1.2781e-24,7.673e-25,4.8368e-25,3.4695e-25,2.0417e-25,1.2477e-25,6.5695e-26,6.3999e-26,3.8989e-26,2.4167e-26,1.8216e-26,8.5201e-27,6.8125e-27,4.3213e-27,3.2987e-27,1.8743e-27,1.7653e-27,1.5602e-27,1.1721e-27,6.4295e-28,3.4596e-28,2.4886e-28,1.7899e-28,1.5067e-28,1.4706e-28,1.0753e-28,7.483e-29,2.4591e-29,1.826e-29,1.5495e-29,1.0776e-29,1.0749e-29,7.5105e-30,7.1824e-30,5.629e-30,4.6269e-30,2.3868e-30,2.1683e-30,1.2903e-30,7.9467e-31,1.6147e-31,1.1947e-31,1.0328e-31,7.045e-32,4.9165e-32,4.2875e-32,3.2606e-32,2.6776e-32,2.0965e-32,1.3983e-32,1.3952e-32,6.7174e-33,5.529e-33,5.3087e-33,5.1949e-33,2.4618e-33,2.4203e-33,2.2443e-33,2.1202e-33,1.8297e-33,1.4328e-33,1.1504e-33,4.3279e-34,5.2997e-35,2.8234e-35,2.6702e-35,2.5499e-35,2.1963e-35,2.0211e-35,9.1599e-36,5.4264e-36,3.7034e-36,2.9893e-36,1.9093e-36,1.303e-36,1.2136e-36,7.084e-37,5.2193e-37,3.5918e-37,1.9667e-37,8.8672e-38,8.4264e-38,6.4298e-38,5.3279e-38,4.8962e-38,1.9826e-38,1.5468e-38,4.9794e-39,3.6321e-39,2.0808e-39,1.5432e-39,1.4007e-39,8.253e-40,7.7067e-40,6.634e-40,4.7797e-40,2.5535e-40 1,0.83907,0.8629,0.86405,0.87094,0.87614,0.88285,0.89545,0.92296,0.93853,0.94079,0.95184,0.95354,0.96004,0.97389,0.97766,0.98011,0.98912,0.9904,0.99173,0.99548,0.99581,0.996,0.99796,0.99881,0.99884,0.99982,0.99986,0.99999,1,1,0.99602,0.98488,0.98353,0.97873,0.97394,0.9699,0.96475,0.95828,0.94568,0.93809,0.92482,0.90654,0.90476,0.90095,0.89737,0.87789,0.87786,0.82626,0.82217,0.81989,0.803,0.80174,0.76721,0.75322,0.74734,0.73432,0.72596,0.7115,0.70699,0.67189,0.64997,0.58058,0.56158,0.55524,0.54393,0.51307,0.5068,0.50125,0.47541,0.4516,0.44289,0.43581,0.41054,0.37525,0.33974,0.31687,0.31218,0.27216,0.25909,0.25313,0.25051,0.24008,0.20014,0.19893,0.19249,0.18256,0.18065,0.16721,0.13392,0.13352,0.12511,0.12219,0.09247,0.085973,0.08551,0.080042,0.073088,0.072956,0.072416,0.068491,0.068457,0.065051,0.063772,0.047627,0.041707,0.041518,0.035586,0.034125,0.031965,0.030958,0.030377,0.029744,0.029541,0.029003,0.026922,0.026688,0.026212,0.025828,0.023081,0.020284,0.017126,0.016054,0.013979,0.011947,0.011173,0.010792,0.0072881,0.0069575,0.0067231,0.0062794,0.0057536,0.0053306,0.0050081,0.0049526,0.0049181,0.0045433,0.0036787,0.0036214,0.0033289,0.002918,0.0027116,0.0026794,0.0017459,0.0017378,0.001594,0.001344,0.0013026,0.0011585,0.0011267,0.00092588,0.00081344,0.00060349,0.00059915,0.00042281,0.00040612,0.00040093,0.0003182,0.00031352,0.00028821,0.0002578,0.00024894,0.00024243,0.0002183,0.00021453,0.00021211,0.00019507,0.00018942,0.00018797,0.00017528,0.00017092,0.00014856,0.00011748,0.00011263,0.00011137,0.00010014,9.5822e-05,8.0004e-05,5.8074e-05,5.2534e-05,4.4785e-05,4.222e-05,3.5815e-05,3.0373e-05,2.9965e-05,2.9653e-05,2.9617e-05,2.8204e-05,2.8088e-05,2.4081e-05,2.2432e-05,1.9619e-05,1.9502e-05,1.8806e-05,1.4876e-05,1.4775e-05,1.3204e-05,1.1612e-05,9.217e-06,8.9399e-06,8.1919e-06,8.0329e-06,7.6442e-06,7.0332e-06,6.187e-06,6.1654e-06,4.5997e-06,3.283e-06,3.1667e-06,3.0425e-06,3.0049e-06,2.447e-06,2.1548e-06,1.3953e-06,1.3637e-06,1.302e-06,1.204e-06,8.9891e-07,6.6102e-07,4.7071e-07,4.2474e-07,3.9942e-07,3.4154e-07,2.4846e-07,2.1583e-07,1.7966e-07,1.3528e-07,1.0572e-07,1.011e-07,6.2507e-08,5.8647e-08,5.7296e-08,5.1152e-08,4.8891e-08,3.4012e-08,2.908e-08,2.7789e-08,2.7661e-08,2.5143e-08,2.2099e-08,2.0813e-08,2.0264e-08,1.2655e-08,1.2647e-08,8.2377e-09,5.0202e-09,3.1618e-09,2.0569e-09,1.7059e-09,1.6241e-09,1.4474e-09,1.3086e-09,1.0312e-09,1.0044e-09,6.3246e-10,5.6236e-10,4.441e-10,3.3075e-10,2.7643e-10,2.7087e-10,2.3399e-10,2.1207e-10,1.6643e-10,1.1585e-10,1.1197e-10,9.5407e-11,7.4056e-11,6.0235e-11,5.9655e-11,2.9084e-11,2.5841e-11,2.4413e-11,2.1097e-11,1.9553e-11,1.7345e-11,1.4324e-11,1.3258e-11,1.19e-11,9.9984e-12,7.9757e-12,6.4244e-12,6.2849e-12,4.8214e-12,4.0473e-12,3.4676e-12,2.4369e-12,2.073e-12,1.9546e-12,1.5856e-12,1.5656e-12,1.428e-12,1.3712e-12,7.9925e-13,6.9546e-13,6.5882e-13,5.1434e-13,4.4535e-13,4.3571e-13,3.1088e-13,1.6189e-13,1.3318e-13,1.204e-13,9.5156e-14,9.3243e-14,7.1498e-14,6.9446e-14,4.9241e-14,4.0201e-14,2.6713e-14,2.5741e-14,2.486e-14,2.4381e-14,2.2877e-14,2.1719e-14,2.1041e-14,1.5055e-14,1.4033e-14,7.1884e-15,5.7385e-15,4.9408e-15,4.6562e-15,2.8411e-15,2.8166e-15,2.3916e-15,2.2153e-15,1.5063e-15,1.488e-15,1.4455e-15,1.0834e-15,1.0001e-15,9.7211e-16,8.9149e-16,7.9703e-16,7.1686e-16,6.7839e-16,3.9377e-16,3.8627e-16,2.9012e-16,1.8842e-16,1.2527e-16,7.079e-17,7.0216e-17,5.7283e-17,4.4304e-17,3.1521e-17,3.1402e-17,2.7902e-17,1.5973e-17,1.4026e-17,1.3827e-17,7.1236e-18,6.1547e-18,5.6569e-18,4.3608e-18,3.3672e-18,2.0878e-18,1.9369e-18,1.3472e-18,5.9497e-19,5.8847e-19,5.5022e-19,4.7953e-19,4.3043e-19,3.7671e-19,3.2181e-19,7.3501e-20,4.9726e-20,2.7244e-20,1.7382e-20,1.7001e-20,1.6153e-20,8.2395e-21,7.0378e-21,6.9462e-21,3.6341e-21,1.2067e-21,1.165e-21,8.4019e-22,7.852e-22,3.692e-22,2.9865e-22,1.8777e-22,1.473e-22,1.1257e-22,1.0682e-22,7.7569e-23,7.3309e-23,7.1367e-23,3.439e-23,2.7623e-23,2.5187e-23,1.8652e-23,1.6965e-23,1.0978e-23,9.9382e-24,8.1333e-24,4.9295e-24,4.9063e-24,3.8544e-24,3.5525e-24,3.5521e-24,2.083e-24,2.048e-24,1.6426e-24,1.3008e-24,7.8102e-25,4.9237e-25,3.5319e-25,2.0786e-25,1.2704e-25,6.6895e-26,6.5169e-26,3.9704e-26,2.4612e-26,1.8552e-26,8.6785e-27,6.9394e-27,4.4021e-27,3.3605e-27,1.9095e-27,1.7985e-27,1.5896e-27,1.1942e-27,6.5516e-28,3.5256e-28,2.5362e-28,1.8242e-28,1.5356e-28,1.4988e-28,1.096e-28,7.6276e-29,2.507e-29,1.8616e-29,1.5798e-29,1.0987e-29,1.0959e-29,7.6581e-30,7.3236e-30,5.7399e-30,4.7182e-30,2.4341e-30,2.2113e-30,1.316e-30,8.1056e-31,1.6474e-31,1.2189e-31,1.0537e-31,7.1883e-32,5.0168e-32,4.375e-32,3.3273e-32,2.7325e-32,2.1395e-32,1.427e-32,1.4239e-32,6.8563e-33,5.6434e-33,5.4186e-33,5.3025e-33,2.5131e-33,2.4707e-33,2.2911e-33,2.1644e-33,1.8678e-33,1.4627e-33,1.1745e-33,4.4191e-34,5.4129e-35,2.8839e-35,2.7275e-35,2.6046e-35,2.2434e-35,2.0645e-35,9.3577e-36,5.5439e-36,3.7838e-36,3.0542e-36,1.9509e-36,1.3315e-36,1.2401e-36,7.2394e-37,5.3339e-37,3.6709e-37,2.0101e-37,9.0641e-38,8.6135e-38,6.5728e-38,5.4465e-38,5.0053e-38,2.027e-38,1.5815e-38,5.0919e-39,3.7142e-39,2.128e-39,1.5783e-39,1.4325e-39,8.4412e-40,7.8826e-40,6.7855e-40,4.8891e-40,2.6122e-40 1,0.79269,0.8188,0.82008,0.82771,0.83351,0.84102,0.85525,0.88702,0.90555,0.90828,0.92184,0.92396,0.93215,0.95031,0.95547,0.95891,0.97227,0.97431,0.97649,0.98313,0.98378,0.98414,0.98834,0.99052,0.99059,0.99414,0.99442,0.99572,0.99587,0.99602,1,0.99637,0.99569,0.99305,0.99017,0.9876,0.98417,0.97967,0.97044,0.96466,0.95423,0.93935,0.93788,0.93471,0.93171,0.91515,0.91512,0.86963,0.86595,0.86388,0.84853,0.84737,0.81546,0.80237,0.79684,0.78454,0.77662,0.76283,0.75851,0.72466,0.70331,0.63469,0.61564,0.60926,0.59784,0.56654,0.56014,0.55447,0.52798,0.50338,0.49436,0.487,0.46063,0.42351,0.38581,0.36134,0.35631,0.31307,0.29883,0.29232,0.28946,0.27804,0.23396,0.23262,0.22545,0.21437,0.21224,0.19717,0.15953,0.15907,0.14949,0.14615,0.11191,0.10435,0.10381,0.097433,0.089286,0.089131,0.088497,0.083882,0.083841,0.079826,0.078315,0.059125,0.052023,0.051795,0.044635,0.042864,0.040241,0.039016,0.038307,0.037537,0.037288,0.036632,0.034088,0.033802,0.033219,0.032748,0.029373,0.025922,0.022003,0.020668,0.018073,0.015519,0.014544,0.014062,0.0096051,0.0091815,0.0088808,0.0083106,0.0076333,0.0070871,0.0066698,0.0065979,0.0065532,0.0060668,0.0049403,0.0048654,0.0044824,0.0039427,0.0036709,0.0036284,0.0023902,0.0023795,0.0021872,0.001852,0.0017963,0.0016021,0.0015592,0.0012874,0.0011345,0.00084762,0.00084166,0.0005987,0.00057559,0.0005684,0.00045345,0.00044693,0.00041162,0.00036909,0.00035668,0.00034755,0.00031368,0.00030838,0.00030497,0.00028098,0.00027301,0.00027097,0.00025306,0.0002469,0.00021525,0.00017106,0.00016414,0.00016235,0.0001463,0.00014012,0.00011742,8.5795e-05,7.7768e-05,6.6509e-05,6.2773e-05,5.3424e-05,4.5453e-05,4.4855e-05,4.4397e-05,4.4344e-05,4.2269e-05,4.2097e-05,3.6201e-05,3.3767e-05,2.9609e-05,2.9436e-05,2.8405e-05,2.257e-05,2.2419e-05,2.0078e-05,1.77e-05,1.411e-05,1.3694e-05,1.2568e-05,1.2329e-05,1.1743e-05,1.0821e-05,9.5411e-06,9.5084e-06,7.1314e-06,5.1208e-06,4.9426e-06,4.7522e-06,4.6944e-06,3.8366e-06,3.3861e-06,2.2092e-06,2.16e-06,2.0639e-06,1.9112e-06,1.434e-06,1.0599e-06,7.5904e-07,6.8608e-07,6.4584e-07,5.5367e-07,4.0486e-07,3.5249e-07,2.9428e-07,2.226e-07,1.7463e-07,1.6713e-07,1.0411e-07,9.7773e-08,9.5555e-08,8.5458e-08,8.1737e-08,5.7179e-08,4.9003e-08,4.686e-08,4.6648e-08,4.2462e-08,3.7394e-08,3.525e-08,3.4335e-08,2.1592e-08,2.158e-08,1.4145e-08,8.6823e-09,5.5047e-09,3.6029e-09,2.9959e-09,2.8542e-09,2.548e-09,2.3069e-09,1.8238e-09,1.7771e-09,1.1262e-09,1.003e-09,7.946e-10,5.9417e-10,4.9779e-10,4.8791e-10,4.2231e-10,3.8325e-10,3.0175e-10,2.1105e-10,2.0406e-10,1.7425e-10,1.3571e-10,1.1068e-10,1.0962e-10,5.3944e-11,4.8002e-11,4.5382e-11,3.929e-11,3.6451e-11,3.2383e-11,2.6809e-11,2.4837e-11,2.2324e-11,1.8797e-11,1.5037e-11,1.2145e-11,1.1885e-11,9.1471e-12,7.6952e-12,6.6056e-12,4.6622e-12,3.9739e-12,3.7495e-12,3.0493e-12,3.0113e-12,2.7499e-12,2.6417e-12,1.5498e-12,1.3508e-12,1.2805e-12,1.0026e-12,8.696e-13,8.51e-13,6.0962e-13,3.1989e-13,2.6375e-13,2.3873e-13,1.8919e-13,1.8543e-13,1.4262e-13,1.3857e-13,9.8641e-14,8.0718e-14,5.3885e-14,5.1946e-14,5.0188e-14,4.9231e-14,4.6228e-14,4.3913e-14,4.2558e-14,3.0564e-14,2.8513e-14,1.4714e-14,1.1776e-14,1.0156e-14,9.5768e-15,5.8752e-15,5.8251e-15,4.9551e-15,4.5936e-15,3.1364e-15,3.0987e-15,3.0113e-15,2.2639e-15,2.0917e-15,2.0337e-15,1.8668e-15,1.671e-15,1.5046e-15,1.4247e-15,8.3179e-16,8.1611e-16,6.1481e-16,4.0112e-16,2.6783e-16,1.5224e-16,1.5102e-16,1.2347e-16,9.5745e-17,6.8358e-17,6.8102e-17,6.0586e-17,3.4882e-17,3.0669e-17,3.0238e-17,1.5683e-17,1.357e-17,1.2483e-17,9.6481e-18,7.469e-18,4.6531e-18,4.3199e-18,3.0155e-18,1.3424e-18,1.3279e-18,1.2424e-18,1.0842e-18,9.7426e-19,8.5377e-19,7.3046e-19,1.6921e-19,1.149e-19,6.3313e-20,4.0566e-20,3.9683e-20,3.7723e-20,1.9363e-20,1.6563e-20,1.635e-20,8.6051e-21,2.8863e-21,2.7874e-21,2.0162e-21,1.8854e-21,8.9257e-22,7.234e-22,4.567e-22,3.5904e-22,2.7506e-22,2.6113e-22,1.9016e-22,1.798e-22,1.7508e-22,8.4912e-23,6.8334e-23,6.2358e-23,4.6301e-23,4.2148e-23,2.7377e-23,2.4805e-23,2.0336e-23,1.2379e-23,1.2321e-23,9.6994e-24,8.9461e-24,8.945e-24,5.2694e-24,5.1818e-24,4.1638e-24,3.304e-24,1.9924e-24,1.2609e-24,9.0705e-25,5.3619e-25,3.2906e-25,1.742e-25,1.6974e-25,1.0384e-25,6.4623e-26,4.8824e-26,2.2982e-26,1.841e-26,1.1722e-26,8.9679e-27,5.1191e-27,4.8238e-27,4.2676e-27,3.2136e-27,1.7715e-27,9.5799e-28,6.9095e-28,4.9828e-28,4.2002e-28,4.1003e-28,3.0057e-28,2.0978e-28,6.9552e-29,5.1766e-29,4.3984e-29,3.0676e-29,3.06e-29,2.1442e-29,2.0512e-29,1.6107e-29,1.326e-29,6.8754e-30,6.2507e-30,3.7346e-30,2.3087e-30,4.749e-31,3.5218e-31,3.0478e-31,2.0851e-31,1.4591e-31,1.2737e-31,9.7067e-32,7.9832e-32,6.2621e-32,4.1893e-32,4.1803e-32,2.0236e-32,1.668e-32,1.6021e-32,1.568e-32,7.472e-33,7.3469e-33,6.8165e-33,6.4424e-33,5.5656e-33,4.3663e-33,3.5114e-33,1.3305e-33,1.6544e-34,8.8541e-35,8.3771e-35,8.0023e-35,6.8999e-35,6.3534e-35,2.8959e-35,1.7219e-35,1.1784e-35,9.5261e-36,6.1038e-36,4.1771e-36,3.8922e-36,2.2806e-36,1.6839e-36,1.1619e-36,6.3888e-37,2.8966e-37,2.7536e-37,2.1051e-37,1.7466e-37,1.606e-37,6.544e-38,5.1144e-38,1.6593e-38,1.2129e-38,6.9752e-39,5.1837e-39,4.7079e-39,2.784e-39,2.6009e-39,2.2411e-39,1.6183e-39,8.6823e-40 1,0.74521,0.773,0.77437,0.78257,0.78882,0.79696,0.81246,0.84765,0.86863,0.87175,0.88743,0.88991,0.89955,0.92143,0.92781,0.93211,0.94935,0.95207,0.95502,0.96427,0.9652,0.96573,0.97198,0.97538,0.97549,0.98141,0.98191,0.98429,0.98459,0.98488,0.99637,1,0.99997,0.99946,0.99847,0.99736,0.99565,0.99313,0.98733,0.9834,0.97591,0.96461,0.96346,0.96096,0.95859,0.94517,0.94515,0.90642,0.9032,0.90139,0.8878,0.88677,0.85799,0.84601,0.84092,0.82954,0.82217,0.80929,0.80523,0.77318,0.75273,0.68595,0.66715,0.66084,0.6495,0.61821,0.61178,0.60607,0.57929,0.55426,0.54504,0.5375,0.51038,0.47188,0.43242,0.40662,0.40129,0.35522,0.33995,0.33294,0.32986,0.31753,0.26958,0.26811,0.26025,0.24808,0.24573,0.22909,0.18717,0.18665,0.17588,0.17213,0.13329,0.12464,0.12402,0.11669,0.1073,0.10712,0.10639,0.10105,0.10101,0.096348,0.094593,0.072156,0.063777,0.063508,0.055011,0.052902,0.049771,0.048305,0.047457,0.046534,0.046236,0.04545,0.042394,0.04205,0.041348,0.04078,0.036706,0.032523,0.027748,0.026114,0.022929,0.019779,0.018571,0.017973,0.012411,0.011879,0.0115,0.010782,0.0099262,0.0092346,0.008705,0.0086138,0.0085569,0.0079382,0.0064994,0.0064035,0.0059119,0.0052174,0.0048665,0.0048116,0.0032029,0.0031889,0.0029372,0.0024971,0.0024238,0.0021677,0.002111,0.0017509,0.0015475,0.0011639,0.0011559,0.00082853,0.00079725,0.0007875,0.00063136,0.00062248,0.00057432,0.0005162,0.0004992,0.0004867,0.00044023,0.00043294,0.00042826,0.00039526,0.00038428,0.00038146,0.00035676,0.00034825,0.00030448,0.00024312,0.00023349,0.00023098,0.0002086,0.00019996,0.00016817,0.00012364,0.00011229,9.6325e-05,9.1017e-05,7.7703e-05,6.6314e-05,6.5459e-05,6.4802e-05,6.4726e-05,6.1754e-05,6.1508e-05,5.3044e-05,4.9543e-05,4.355e-05,4.3299e-05,4.1811e-05,3.3364e-05,3.3145e-05,2.9744e-05,2.6282e-05,2.1037e-05,2.0427e-05,1.8777e-05,1.8426e-05,1.7566e-05,1.621e-05,1.4325e-05,1.4277e-05,1.0762e-05,7.7727e-06,7.5067e-06,7.2225e-06,7.1361e-06,5.8525e-06,5.1763e-06,3.4015e-06,3.3269e-06,3.1814e-06,2.9497e-06,2.2237e-06,1.6519e-06,1.1893e-06,1.0767e-06,1.0146e-06,8.7192e-07,6.4074e-07,5.5907e-07,4.6806e-07,3.5559e-07,2.8e-07,2.6814e-07,1.6823e-07,1.5815e-07,1.5462e-07,1.3851e-07,1.3257e-07,9.3229e-08,8.0081e-08,7.663e-08,7.6287e-08,6.9538e-08,6.1352e-08,5.7884e-08,5.6403e-08,3.5709e-08,3.5688e-08,2.3534e-08,1.4545e-08,9.2804e-09,6.1097e-09,5.0932e-09,4.8555e-09,4.3412e-09,3.9357e-09,3.1214e-09,3.0425e-09,1.9399e-09,1.7303e-09,1.3751e-09,1.0321e-09,8.6673e-10,8.4975e-10,7.3688e-10,6.6957e-10,5.2881e-10,3.7156e-10,3.5941e-10,3.0753e-10,2.4026e-10,1.9645e-10,1.9461e-10,9.6615e-11,8.6096e-11,8.1455e-11,7.0646e-11,6.5602e-11,5.8365e-11,4.843e-11,4.491e-11,4.0419e-11,3.4105e-11,2.7356e-11,2.2152e-11,2.1682e-11,1.6741e-11,1.4112e-11,1.2136e-11,8.6011e-12,7.3451e-12,6.935e-12,5.6537e-12,5.5841e-12,5.1047e-12,4.9062e-12,2.8963e-12,2.5283e-12,2.3982e-12,1.8831e-12,1.6359e-12,1.6013e-12,1.1515e-12,6.0865e-13,5.0292e-13,4.5572e-13,3.6208e-13,3.5497e-13,2.7381e-13,2.6613e-13,1.9016e-13,1.5595e-13,1.0457e-13,1.0084e-13,9.7468e-14,9.5631e-14,8.986e-14,8.5407e-14,8.2799e-14,5.9678e-14,5.5716e-14,2.8958e-14,2.3229e-14,2.0065e-14,1.8933e-14,1.1675e-14,1.1577e-14,9.8645e-15,9.1522e-15,6.2739e-15,6.1993e-15,6.0261e-15,4.544e-15,4.2018e-15,4.0866e-15,3.7544e-15,3.3645e-15,3.0328e-15,2.8734e-15,1.6868e-15,1.6554e-15,1.2507e-15,8.1952e-16,5.4943e-16,3.1409e-16,3.116e-16,2.5526e-16,1.9844e-16,1.4216e-16,1.4163e-16,1.2614e-16,7.302e-17,6.4284e-17,6.3388e-17,3.3088e-17,2.867e-17,2.6394e-17,2.0451e-17,1.5871e-17,9.9324e-18,9.2275e-18,6.4635e-18,2.8995e-18,2.8684e-18,2.6854e-18,2.3465e-18,2.1106e-18,1.8518e-18,1.5867e-18,3.7257e-19,2.5389e-19,1.4066e-19,9.0484e-20,8.8534e-20,8.4199e-20,4.3478e-20,3.7244e-20,3.6768e-20,1.9462e-20,6.5913e-21,6.3673e-21,4.6188e-21,4.3217e-21,2.0593e-21,1.672e-21,1.0598e-21,8.3487e-22,6.4106e-22,6.0887e-22,4.4458e-22,4.2057e-22,4.0963e-22,1.9989e-22,1.6115e-22,1.4718e-22,1.0955e-22,9.9805e-23,6.5062e-23,5.9e-23,4.8449e-23,2.9614e-23,2.9477e-23,2.3251e-23,2.146e-23,2.1457e-23,1.2696e-23,1.2486e-23,1.0051e-23,7.9907e-24,4.8386e-24,3.0737e-24,2.217e-24,1.3161e-24,8.1089e-25,4.3146e-25,4.205e-25,2.5825e-25,1.6133e-25,1.2216e-25,5.7842e-26,4.6416e-26,2.9658e-26,2.2738e-26,1.3036e-26,1.229e-26,1.0883e-26,8.2129e-27,4.5481e-27,2.4712e-27,1.7868e-27,1.2918e-27,1.0903e-27,1.0646e-27,7.8222e-28,5.4742e-28,1.8301e-28,1.3651e-28,1.1613e-28,8.1212e-29,8.1012e-29,5.6916e-29,5.4467e-29,4.2845e-29,3.5323e-29,1.8405e-29,1.6744e-29,1.0042e-29,6.2298e-30,1.2962e-30,9.6336e-31,8.3455e-31,5.7251e-31,4.0166e-31,3.5097e-31,2.6798e-31,2.2071e-31,1.7342e-31,1.1635e-31,1.161e-31,5.6493e-32,4.663e-32,4.4799e-32,4.3852e-32,2.1006e-32,2.0657e-32,1.9176e-32,1.813e-32,1.5679e-32,1.2321e-32,9.9238e-33,3.7859e-33,4.7755e-34,2.5666e-34,2.4293e-34,2.3213e-34,2.0035e-34,1.8459e-34,8.4584e-35,5.0473e-35,3.4629e-35,2.8034e-35,1.8016e-35,1.236e-35,1.1523e-35,6.776e-36,5.0132e-36,3.4676e-36,1.9143e-36,8.7244e-37,8.2963e-37,6.3537e-37,5.2781e-37,4.856e-37,1.9903e-37,1.558e-37,5.0916e-38,3.7295e-38,2.1524e-38,1.6026e-38,1.4564e-38,8.6416e-39,8.0769e-39,6.9663e-39,5.0408e-39,2.7151e-39 1,0.7408,0.76871,0.77009,0.77833,0.78462,0.7928,0.80841,0.84387,0.86506,0.86821,0.88406,0.88657,0.89633,0.91853,0.92502,0.92939,0.94696,0.94975,0.95276,0.96223,0.96319,0.96374,0.97016,0.97367,0.97378,0.97992,0.98043,0.98291,0.98323,0.98353,0.99569,0.99997,1,0.99968,0.99887,0.99789,0.99634,0.994,0.98852,0.98476,0.97755,0.96658,0.96546,0.96303,0.96071,0.94759,0.94757,0.9095,0.90632,0.90453,0.89112,0.8901,0.86163,0.84976,0.84472,0.83344,0.82613,0.81333,0.8093,0.77745,0.7571,0.69054,0.67178,0.66547,0.65415,0.62288,0.61646,0.61075,0.58396,0.55891,0.54967,0.54213,0.51495,0.47635,0.43675,0.41083,0.40548,0.35918,0.34381,0.33676,0.33366,0.32125,0.27296,0.27148,0.26356,0.25128,0.24892,0.23214,0.18982,0.1893,0.17843,0.17463,0.13536,0.12662,0.12599,0.11857,0.10906,0.10888,0.10814,0.10273,0.10268,0.097966,0.096188,0.073441,0.06494,0.064667,0.056041,0.053899,0.050719,0.049229,0.048368,0.04743,0.047128,0.046328,0.043222,0.042873,0.04216,0.041582,0.03744,0.033185,0.028326,0.026662,0.02342,0.02021,0.018979,0.018369,0.012698,0.012154,0.011768,0.011035,0.010161,0.0094549,0.008914,0.0088208,0.0087627,0.0081306,0.0066602,0.0065622,0.0060596,0.0053493,0.0049904,0.0049342,0.0032876,0.0032732,0.0030155,0.0025646,0.0024895,0.002227,0.0021688,0.0017996,0.001591,0.0011973,0.0011891,0.00085293,0.00082079,0.00081078,0.00065031,0.00064118,0.00059167,0.0005319,0.00051442,0.00050156,0.00045376,0.00044627,0.00044145,0.0004075,0.0003962,0.0003933,0.00036789,0.00035912,0.00031407,0.00025088,0.00024096,0.00023838,0.00021532,0.00020642,0.00017366,0.00012775,0.00011604,9.957e-05,9.4092e-05,8.0352e-05,6.8594e-05,6.771e-05,6.7032e-05,6.6954e-05,6.3885e-05,6.3631e-05,5.4889e-05,5.1272e-05,4.508e-05,4.4821e-05,4.3283e-05,3.4552e-05,3.4325e-05,3.0809e-05,2.7229e-05,2.1803e-05,2.1172e-05,1.9465e-05,1.9101e-05,1.8211e-05,1.6807e-05,1.4856e-05,1.4806e-05,1.1166e-05,8.0687e-06,7.793e-06,7.4984e-06,7.4089e-06,6.0781e-06,5.3768e-06,3.5356e-06,3.4582e-06,3.3072e-06,3.0667e-06,2.3129e-06,1.7189e-06,1.2382e-06,1.1211e-06,1.0565e-06,9.0815e-07,6.6766e-07,5.8267e-07,4.8795e-07,3.7084e-07,2.921e-07,2.7976e-07,1.7563e-07,1.6512e-07,1.6143e-07,1.4464e-07,1.3844e-07,9.7408e-08,8.3688e-08,8.0086e-08,7.9728e-08,7.2683e-08,6.4138e-08,6.0517e-08,5.8971e-08,3.7357e-08,3.7336e-08,2.4634e-08,1.5234e-08,9.7257e-09,6.4063e-09,5.3417e-09,5.0927e-09,4.5538e-09,4.129e-09,3.2756e-09,3.1929e-09,2.0369e-09,1.8171e-09,1.4445e-09,1.0846e-09,9.1097e-10,8.9315e-10,7.7464e-10,7.0397e-10,5.5613e-10,3.9092e-10,3.7815e-10,3.2362e-10,2.5291e-10,2.0684e-10,2.049e-10,1.0181e-10,9.0735e-11,8.5848e-11,7.4468e-11,6.9157e-11,6.1536e-11,5.1072e-11,4.7364e-11,4.2633e-11,3.5979e-11,2.8867e-11,2.3381e-11,2.2886e-11,1.7675e-11,1.4903e-11,1.2818e-11,9.0876e-12,7.7619e-12,7.3289e-12,5.9762e-12,5.9027e-12,5.3964e-12,5.1868e-12,3.0636e-12,2.6748e-12,2.5373e-12,1.9928e-12,1.7315e-12,1.6949e-12,1.2192e-12,6.4487e-13,5.3295e-13,4.8299e-13,3.8383e-13,3.763e-13,2.9035e-13,2.8221e-13,2.0171e-13,1.6546e-13,1.1099e-13,1.0704e-13,1.0346e-13,1.0151e-13,9.5392e-14,9.0669e-14,8.7903e-14,6.3378e-14,5.9174e-14,3.0775e-14,2.4692e-14,2.1332e-14,2.013e-14,1.2419e-14,1.2314e-14,1.0494e-14,9.7374e-15,6.6775e-15,6.5981e-15,6.414e-15,4.8377e-15,4.4738e-15,4.3512e-15,3.9979e-15,3.5831e-15,3.2301e-15,3.0605e-15,1.7976e-15,1.764e-15,1.3331e-15,8.7389e-16,5.8611e-16,3.3523e-16,3.3257e-16,2.7248e-16,2.1189e-16,1.5183e-16,1.5127e-16,1.3474e-16,7.8037e-17,6.8708e-17,6.7752e-17,3.5386e-17,3.0665e-17,2.8233e-17,2.1881e-17,1.6984e-17,1.0633e-17,9.8795e-18,6.9223e-18,3.1074e-18,3.0742e-18,2.8782e-18,2.5153e-18,2.2626e-18,1.9854e-18,1.7014e-18,3.9999e-19,2.7266e-19,1.5113e-19,9.7258e-20,9.5163e-20,9.0507e-20,4.6761e-20,4.006e-20,3.9549e-20,2.0946e-20,7.0998e-21,6.8586e-21,4.9765e-21,4.6566e-21,2.2202e-21,1.8029e-21,1.1432e-21,9.0075e-22,6.9179e-22,6.5707e-22,4.799e-22,4.54e-22,4.4219e-22,2.159e-22,1.7409e-22,1.59e-22,1.1838e-22,1.0786e-22,7.0334e-23,6.3786e-23,5.2387e-23,3.2033e-23,3.1884e-23,2.5155e-23,2.3218e-23,2.3215e-23,1.3741e-23,1.3515e-23,1.0881e-23,8.652e-24,5.2409e-24,3.3304e-24,2.4027e-24,1.4269e-24,8.7948e-25,4.6817e-25,4.5629e-25,2.8033e-25,1.7518e-25,1.3267e-25,6.2854e-26,5.0446e-26,3.2243e-26,2.4724e-26,1.418e-26,1.3369e-26,1.184e-26,8.937e-27,4.9512e-27,2.6913e-27,1.9464e-27,1.4075e-27,1.1881e-27,1.1601e-27,8.5258e-28,5.9681e-28,1.9967e-28,1.4897e-28,1.2674e-28,8.8654e-29,8.8436e-29,6.2147e-29,5.9474e-29,4.6792e-29,3.8581e-29,2.0111e-29,1.8298e-29,1.0977e-29,6.8124e-30,1.4189e-30,1.0547e-30,9.1381e-31,6.2704e-31,4.4001e-31,3.8452e-31,2.9365e-31,2.4188e-31,1.9009e-31,1.2756e-31,1.2729e-31,6.1967e-32,5.1154e-32,4.9146e-32,4.8109e-32,2.3056e-32,2.2673e-32,2.1048e-32,1.9901e-32,1.7212e-32,1.3528e-32,1.0897e-32,4.1598e-33,5.254e-34,2.8249e-34,2.6738e-34,2.5551e-34,2.2055e-34,2.032e-34,9.3159e-35,5.5607e-35,3.816e-35,3.0897e-35,1.9861e-35,1.363e-35,1.2707e-35,7.4745e-36,5.531e-36,3.8266e-36,2.1132e-36,9.6356e-37,9.1631e-37,7.0186e-37,5.8311e-37,5.3651e-37,2.2001e-37,1.7225e-37,5.6329e-38,4.1267e-38,2.3824e-38,1.7742e-38,1.6125e-38,9.5701e-39,8.9451e-39,7.7158e-39,5.5842e-39,3.0089e-39 1,0.72629,0.75459,0.75599,0.76437,0.77077,0.7791,0.79502,0.83135,0.85316,0.85642,0.87283,0.87543,0.88558,0.90878,0.9156,0.92021,0.93884,0.94182,0.94504,0.95525,0.95629,0.95688,0.96387,0.96773,0.96785,0.97466,0.97524,0.97803,0.97838,0.97873,0.99305,0.99946,0.99968,1,0.99975,0.99921,0.99817,0.99643,0.99199,0.98879,0.98249,0.97262,0.97161,0.96939,0.96726,0.95514,0.95512,0.91922,0.91619,0.91448,0.90165,0.90068,0.87326,0.86177,0.85687,0.84591,0.83879,0.82632,0.82238,0.79118,0.77118,0.70541,0.68679,0.68052,0.66926,0.6381,0.63168,0.62599,0.59919,0.57408,0.56481,0.55724,0.52991,0.491,0.45096,0.4247,0.41927,0.37221,0.35656,0.34937,0.34621,0.33354,0.28415,0.28263,0.27451,0.26192,0.25949,0.24225,0.19866,0.19812,0.18689,0.18297,0.1423,0.13321,0.13256,0.12485,0.11495,0.11476,0.11399,0.10835,0.10831,0.10339,0.10153,0.077758,0.068848,0.068562,0.059507,0.057256,0.053911,0.052344,0.051438,0.05045,0.050132,0.04929,0.046018,0.045649,0.044897,0.044289,0.039918,0.035423,0.030282,0.02852,0.025081,0.021673,0.020364,0.019716,0.013672,0.013092,0.012679,0.011896,0.010961,0.010206,0.0096265,0.0095266,0.0094644,0.0087871,0.0072094,0.0071041,0.0065642,0.0058004,0.0054142,0.0053537,0.0035781,0.0035625,0.003284,0.0027963,0.002715,0.0024306,0.0023676,0.0019671,0.0017406,0.0013125,0.0013036,0.00093714,0.00090206,0.00089113,0.0007158,0.00070582,0.00065166,0.00058624,0.00056709,0.00055301,0.00050063,0.00049241,0.00048713,0.00044989,0.0004375,0.00043432,0.00040642,0.0003968,0.00034731,0.00027782,0.0002669,0.00026407,0.00023867,0.00022886,0.00019274,0.00014205,0.0001291,0.00011088,0.00010481,8.9588e-05,7.6549e-05,7.5568e-05,7.4816e-05,7.4729e-05,7.1322e-05,7.104e-05,6.1332e-05,5.7313e-05,5.0427e-05,5.014e-05,4.8428e-05,3.8709e-05,3.8455e-05,3.4537e-05,3.0544e-05,2.4488e-05,2.3783e-05,2.1875e-05,2.1468e-05,2.0473e-05,1.8903e-05,1.672e-05,1.6664e-05,1.2586e-05,9.11e-06,8.8004e-06,8.4694e-06,8.3688e-06,6.8725e-06,6.0834e-06,4.0087e-06,3.9214e-06,3.751e-06,3.4795e-06,2.628e-06,1.9558e-06,1.4111e-06,1.2783e-06,1.205e-06,1.0365e-06,7.6316e-07,6.6644e-07,5.5856e-07,4.2505e-07,3.3517e-07,3.2107e-07,2.0199e-07,1.8996e-07,1.8573e-07,1.6649e-07,1.5939e-07,1.1232e-07,9.6567e-08,9.2428e-08,9.2018e-08,8.3921e-08,7.4095e-08,6.993e-08,6.815e-08,4.3258e-08,4.3233e-08,2.8575e-08,1.7708e-08,1.1326e-08,7.4732e-09,6.2359e-09,5.9464e-09,5.3196e-09,4.8253e-09,3.8316e-09,3.7352e-09,2.3872e-09,2.1305e-09,1.6951e-09,1.2743e-09,1.071e-09,1.0501e-09,9.1128e-10,8.2845e-10,6.5507e-10,4.6109e-10,4.4609e-10,3.8198e-10,2.9879e-10,2.4456e-10,2.4227e-10,1.2069e-10,1.0761e-10,1.0184e-10,8.8382e-11,8.2101e-11,7.3085e-11,6.0698e-11,5.6307e-11,5.0702e-11,4.2816e-11,3.4379e-11,2.7866e-11,2.7278e-11,2.1087e-11,1.779e-11,1.531e-11,1.0868e-11,9.2874e-12,8.7711e-12,7.1573e-12,7.0696e-12,6.4652e-12,6.215e-12,3.6776e-12,3.2124e-12,3.0477e-12,2.3957e-12,2.0826e-12,2.0387e-12,1.4682e-12,7.7822e-13,6.4357e-13,5.8343e-13,4.6401e-13,4.5493e-13,3.5132e-13,3.415e-13,2.4436e-13,2.0058e-13,1.3472e-13,1.2994e-13,1.2561e-13,1.2325e-13,1.1585e-13,1.1013e-13,1.0678e-13,7.7069e-14,7.1973e-14,3.751e-14,3.0117e-14,2.603e-14,2.4568e-14,1.518e-14,1.5053e-14,1.2835e-14,1.1912e-14,8.1781e-15,8.0811e-15,7.8563e-15,5.9308e-15,5.486e-15,5.3361e-15,4.9041e-15,4.3967e-15,3.9649e-15,3.7573e-15,2.2104e-15,2.1693e-15,1.6408e-15,1.077e-15,7.2317e-16,4.1432e-16,4.1104e-16,3.3698e-16,2.6223e-16,1.8809e-16,1.874e-16,1.6698e-16,9.6863e-17,8.5315e-17,8.4131e-17,4.4024e-17,3.8166e-17,3.5147e-17,2.7259e-17,2.1175e-17,1.3275e-17,1.2336e-17,8.6522e-18,3.8928e-18,3.8512e-18,3.6064e-18,3.1528e-18,2.8369e-18,2.4903e-18,2.1349e-18,5.0392e-19,3.4387e-19,1.909e-19,1.23e-19,1.2036e-19,1.1448e-19,5.9253e-20,5.0784e-20,5.0137e-20,2.6598e-20,9.0413e-21,8.735e-21,6.3433e-21,5.9366e-21,2.8358e-21,2.3041e-21,1.4627e-21,1.1532e-21,8.8627e-22,8.4191e-22,6.1538e-22,5.8226e-22,5.6715e-22,2.7741e-22,2.2381e-22,2.0446e-22,1.5234e-22,1.3883e-22,9.0627e-23,8.2209e-23,6.7551e-23,4.1356e-23,4.1164e-23,3.2495e-23,2.9999e-23,2.9996e-23,1.7777e-23,1.7485e-23,1.4085e-23,1.1206e-23,6.7963e-24,4.3235e-24,3.1216e-24,1.8562e-24,1.1454e-24,6.1064e-25,5.9518e-25,3.6608e-25,2.2902e-25,1.7356e-25,8.2369e-26,6.6143e-26,4.232e-26,3.2471e-26,1.8648e-26,1.7583e-26,1.5576e-26,1.1765e-26,6.5266e-27,3.5526e-27,2.5712e-27,1.8606e-27,1.5712e-27,1.5342e-27,1.1284e-27,7.9048e-28,2.6511e-28,1.9792e-28,1.6846e-28,1.1792e-28,1.1763e-28,8.273e-29,7.9179e-29,6.2328e-29,5.1413e-29,2.6839e-29,2.4424e-29,1.4669e-29,9.1127e-30,1.9045e-30,1.4166e-30,1.2277e-30,8.4307e-31,5.9206e-31,5.1754e-31,3.9546e-31,3.2587e-31,2.5623e-31,1.7209e-31,1.7173e-31,8.3725e-32,6.9143e-32,6.6435e-32,6.5035e-32,3.1216e-32,3.0698e-32,2.8503e-32,2.6953e-32,2.3318e-32,1.8336e-32,1.4777e-32,5.652e-33,7.1689e-34,3.8594e-34,3.6534e-34,3.4914e-34,3.0146e-34,2.778e-34,1.2756e-34,7.6219e-35,5.2344e-35,4.2399e-35,2.7279e-35,1.8734e-35,1.7468e-35,1.0286e-35,7.616e-36,5.2729e-36,2.9153e-36,1.3313e-36,1.2662e-36,9.7036e-37,8.0647e-37,7.4214e-37,3.0486e-37,2.3879e-37,7.8258e-38,5.7367e-38,3.3154e-38,2.4704e-38,2.2456e-38,1.3341e-38,1.2471e-38,1.076e-38,7.7924e-39,4.2037e-39 1,0.71319,0.74181,0.74322,0.75171,0.7582,0.76665,0.78283,0.81988,0.84223,0.84558,0.86246,0.86514,0.87562,0.89968,0.90679,0.9116,0.93115,0.9343,0.9377,0.94854,0.94965,0.95029,0.95779,0.96195,0.96208,0.96948,0.97011,0.97317,0.97356,0.97394,0.99017,0.99847,0.99887,0.99975,1,0.99985,0.99927,0.99807,0.99456,0.99188,0.98639,0.97753,0.97661,0.97458,0.97263,0.96141,0.96139,0.92749,0.92459,0.92297,0.91067,0.90974,0.88329,0.87215,0.8674,0.85674,0.84981,0.83763,0.83379,0.80322,0.78356,0.71858,0.7001,0.69387,0.68267,0.65165,0.64525,0.63956,0.61279,0.58766,0.57837,0.57078,0.54334,0.50419,0.4638,0.43724,0.43175,0.38404,0.36814,0.36083,0.35762,0.34473,0.29437,0.29282,0.28452,0.27165,0.26916,0.25151,0.20678,0.20623,0.19468,0.19064,0.1487,0.13931,0.13864,0.13066,0.12041,0.12022,0.11942,0.11357,0.11352,0.10842,0.10649,0.081781,0.072497,0.072199,0.062748,0.060396,0.0569,0.055262,0.054313,0.05328,0.052947,0.052066,0.04864,0.048253,0.047466,0.046828,0.042246,0.037528,0.032125,0.030271,0.026649,0.023056,0.021674,0.02099,0.014597,0.013982,0.013545,0.012714,0.011723,0.01092,0.010305,0.010199,0.010133,0.0094127,0.0077337,0.0076216,0.0070463,0.0062318,0.0058196,0.0057551,0.0038569,0.0038403,0.003542,0.0030191,0.0029319,0.0026267,0.002559,0.0021287,0.0018851,0.0014239,0.0014143,0.0010188,0.00098085,0.00096904,0.0007794,0.00076859,0.00070995,0.00063907,0.00061832,0.00060305,0.00054624,0.00053733,0.0005316,0.00049118,0.00047773,0.00047427,0.00044398,0.00043353,0.00037974,0.00030414,0.00029226,0.00028917,0.0002615,0.00025081,0.00021142,0.00015607,0.00014192,0.00012199,0.00011535,9.8674e-05,8.4381e-05,8.3305e-05,8.248e-05,8.2385e-05,7.8648e-05,7.8339e-05,6.7684e-05,6.327e-05,5.5705e-05,5.5389e-05,5.3508e-05,4.2816e-05,4.2538e-05,3.8224e-05,3.3825e-05,2.7148e-05,2.637e-05,2.4264e-05,2.3815e-05,2.2716e-05,2.0983e-05,1.857e-05,1.8508e-05,1.3998e-05,1.0147e-05,9.8039e-06,9.4368e-06,9.3252e-06,7.665e-06,6.7887e-06,4.4819e-06,4.3848e-06,4.195e-06,3.8927e-06,2.9437e-06,2.1937e-06,1.585e-06,1.4365e-06,1.3544e-06,1.1658e-06,8.5944e-07,7.5095e-07,6.2986e-07,4.7985e-07,3.7875e-07,3.6288e-07,2.2873e-07,2.1515e-07,2.1039e-07,1.8868e-07,1.8066e-07,1.2749e-07,1.0967e-07,1.0499e-07,1.0452e-07,9.5361e-08,8.4237e-08,7.952e-08,7.7504e-08,4.9282e-08,4.9254e-08,3.2606e-08,2.0242e-08,1.2969e-08,8.5703e-09,7.156e-09,6.825e-09,6.1081e-09,5.5424e-09,4.4047e-09,4.2943e-09,2.7489e-09,2.4544e-09,1.9544e-09,1.4706e-09,1.2368e-09,1.2127e-09,1.0529e-09,9.5754e-10,7.5776e-10,5.3402e-10,5.167e-10,4.4268e-10,3.4656e-10,2.8385e-10,2.812e-10,1.4041e-10,1.2524e-10,1.1854e-10,1.0293e-10,9.5639e-11,8.5168e-11,7.0777e-11,6.5672e-11,5.9156e-11,4.9982e-11,4.0162e-11,3.2576e-11,3.189e-11,2.4672e-11,2.0827e-11,1.7931e-11,1.2742e-11,1.0895e-11,1.0291e-11,8.403e-12,8.3003e-12,7.5928e-12,7.2999e-12,4.3266e-12,3.7809e-12,3.5877e-12,2.8222e-12,2.4544e-12,2.4029e-12,1.7321e-12,9.1991e-13,7.6117e-13,6.9024e-13,5.4934e-13,5.3862e-13,4.1627e-13,4.0467e-13,2.8985e-13,2.3805e-13,1.6008e-13,1.5442e-13,1.4928e-13,1.4649e-13,1.3771e-13,1.3093e-13,1.2696e-13,9.1723e-14,8.5675e-14,4.4734e-14,3.594e-14,3.1076e-14,2.9335e-14,1.815e-14,1.7998e-14,1.5353e-14,1.4252e-14,9.7951e-15,9.6793e-15,9.4108e-15,7.1098e-15,6.578e-15,6.3987e-15,5.8821e-15,5.2751e-15,4.7584e-15,4.5099e-15,2.6571e-15,2.6078e-15,1.974e-15,1.2971e-15,8.7193e-16,5.0029e-16,4.9634e-16,4.0712e-16,3.1703e-16,2.276e-16,2.2676e-16,2.0211e-16,1.1741e-16,1.0345e-16,1.0202e-16,5.3472e-17,4.6374e-17,4.2716e-17,3.3151e-17,2.5768e-17,1.6173e-17,1.5032e-17,1.0553e-17,4.7575e-18,4.7069e-18,4.4083e-18,3.8552e-18,3.4698e-18,3.0469e-18,2.6131e-18,6.1898e-19,4.2278e-19,2.3505e-19,1.516e-19,1.4835e-19,1.4113e-19,7.316e-20,6.2726e-20,6.1929e-20,3.2903e-20,1.1213e-20,1.0834e-20,7.8734e-21,7.3697e-21,3.5264e-21,2.8666e-21,1.8217e-21,1.437e-21,1.105e-21,1.0499e-21,7.6792e-22,7.2668e-22,7.0787e-22,3.468e-22,2.7993e-22,2.5578e-22,1.907e-22,1.7382e-22,1.1358e-22,1.0305e-22,8.4715e-23,5.192e-23,5.168e-23,4.0818e-23,3.7689e-23,3.7685e-23,2.236e-23,2.1993e-23,1.7725e-23,1.4109e-23,8.5662e-24,5.4548e-24,3.9412e-24,2.3462e-24,1.4492e-24,7.7366e-25,7.5411e-25,4.6431e-25,2.9076e-25,2.2048e-25,1.048e-25,8.4193e-26,5.3919e-26,4.1394e-26,2.3799e-26,2.2443e-26,1.9886e-26,1.5029e-26,8.3475e-27,4.5494e-27,3.2948e-27,2.3858e-27,2.0154e-27,1.9681e-27,1.4483e-27,1.0154e-27,3.4128e-28,2.5493e-28,2.1705e-28,1.5205e-28,1.5167e-28,1.0674e-28,1.0217e-28,8.0464e-29,6.6399e-29,3.4705e-29,3.1589e-29,1.8991e-29,1.1809e-29,2.4753e-30,1.8422e-30,1.597e-30,1.0975e-30,7.7125e-31,6.7435e-31,5.1554e-31,4.2498e-31,3.3431e-31,2.2471e-31,2.2423e-31,1.0947e-31,9.0436e-32,8.69e-32,8.5073e-32,4.0889e-32,4.0212e-32,3.7342e-32,3.5315e-32,3.0561e-32,2.4042e-32,1.9383e-32,7.427e-33,9.4559e-34,5.0963e-34,4.8247e-34,4.6112e-34,3.9826e-34,3.6705e-34,1.6878e-34,1.0094e-34,6.9369e-35,5.621e-35,3.6194e-35,2.4873e-35,2.3194e-35,1.3671e-35,1.0128e-35,7.0163e-36,3.8833e-36,1.7758e-36,1.6891e-36,1.295e-36,1.0767e-36,9.9091e-37,4.0768e-37,3.1947e-37,1.049e-37,7.6936e-38,4.4505e-38,3.3179e-38,3.0164e-38,1.7936e-38,1.6769e-38,1.4472e-38,1.0486e-38,5.6628e-39 1,0.70295,0.73178,0.73321,0.74177,0.74832,0.75687,0.77323,0.81081,0.83355,0.83696,0.85419,0.85694,0.86766,0.89237,0.89969,0.90465,0.92491,0.92817,0.93172,0.94305,0.94421,0.94487,0.95275,0.95714,0.95728,0.96513,0.96581,0.96908,0.9695,0.9699,0.9876,0.99736,0.99789,0.99921,0.99985,1,0.99979,0.999,0.99622,0.99394,0.98909,0.98102,0.98017,0.97829,0.97648,0.96597,0.96595,0.93363,0.93085,0.92928,0.91742,0.91651,0.89086,0.88,0.87537,0.86495,0.85817,0.84624,0.84246,0.81241,0.79303,0.72872,0.71036,0.70417,0.69304,0.66214,0.65576,0.65009,0.62335,0.59822,0.58892,0.58131,0.55381,0.51449,0.47385,0.44708,0.44154,0.39334,0.37726,0.36986,0.36661,0.35355,0.30245,0.30088,0.29244,0.27935,0.27682,0.25885,0.21324,0.21268,0.20088,0.19675,0.15382,0.14419,0.1435,0.13531,0.12479,0.12459,0.12376,0.11776,0.1177,0.11246,0.11048,0.085019,0.075437,0.075129,0.065363,0.062931,0.059315,0.057618,0.056637,0.055567,0.055222,0.054309,0.05076,0.05036,0.049544,0.048883,0.044132,0.039235,0.033621,0.031693,0.027925,0.024181,0.022741,0.022028,0.015353,0.01471,0.014253,0.013383,0.012346,0.011505,0.010861,0.01075,0.01068,0.0099255,0.0081642,0.0080464,0.0074423,0.0065865,0.0061531,0.0060853,0.0040869,0.0040693,0.0037548,0.0032032,0.0031111,0.0027888,0.0027174,0.0022625,0.0020047,0.0015164,0.0015062,0.0010866,0.0010464,0.0010338,0.00083236,0.00082087,0.00075851,0.00068312,0.00066104,0.00064478,0.0005843,0.00057482,0.00056871,0.00052566,0.00051132,0.00050764,0.00047536,0.00046422,0.00040686,0.00032618,0.00031349,0.00031019,0.00028063,0.0002692,0.00022709,0.00016785,0.00015269,0.00013133,0.00012421,0.00010632,9.0979e-05,8.9824e-05,8.8938e-05,8.8835e-05,8.4822e-05,8.449e-05,7.3041e-05,6.8296e-05,6.016e-05,5.982e-05,5.7796e-05,4.6288e-05,4.5988e-05,4.1342e-05,3.6602e-05,2.94e-05,2.8561e-05,2.6289e-05,2.5804e-05,2.4618e-05,2.2746e-05,2.014e-05,2.0073e-05,1.5197e-05,1.1029e-05,1.0658e-05,1.026e-05,1.0139e-05,8.3399e-06,7.3896e-06,4.8859e-06,4.7803e-06,4.5741e-06,4.2457e-06,3.2137e-06,2.3973e-06,1.734e-06,1.572e-06,1.4825e-06,1.2767e-06,9.4217e-07,8.236e-07,6.9119e-07,5.2704e-07,4.1632e-07,3.9892e-07,2.5182e-07,2.3691e-07,2.3169e-07,2.0785e-07,1.9904e-07,1.4061e-07,1.2102e-07,1.1587e-07,1.1536e-07,1.0527e-07,9.3028e-08,8.7834e-08,8.5614e-08,5.4513e-08,5.4482e-08,3.6112e-08,2.245e-08,1.4402e-08,9.5287e-09,7.9604e-09,7.5932e-09,6.7977e-09,6.1699e-09,4.9065e-09,4.7839e-09,3.0661e-09,2.7385e-09,2.182e-09,1.6431e-09,1.3825e-09,1.3557e-09,1.1775e-09,1.0711e-09,8.4818e-10,5.983e-10,5.7895e-10,4.9622e-10,3.8873e-10,3.1855e-10,3.1559e-10,1.5787e-10,1.4085e-10,1.3334e-10,1.1582e-10,1.0763e-10,9.5879e-11,7.9715e-11,7.398e-11,6.6657e-11,5.6343e-11,4.5299e-11,3.6762e-11,3.599e-11,2.7862e-11,2.3529e-11,2.0266e-11,1.4413e-11,1.2328e-11,1.1647e-11,9.5146e-12,9.3986e-12,8.5994e-12,8.2684e-12,4.9069e-12,4.2893e-12,4.0707e-12,3.204e-12,2.7873e-12,2.7289e-12,1.9687e-12,1.0471e-12,8.6681e-13,7.8622e-13,6.2605e-13,6.1386e-13,4.747e-13,4.6151e-13,3.3082e-13,2.7182e-13,1.8295e-13,1.7649e-13,1.7064e-13,1.6745e-13,1.5744e-13,1.4971e-13,1.4518e-13,1.0496e-13,9.8054e-14,5.1272e-14,4.1213e-14,3.5647e-14,3.3654e-14,2.0845e-14,2.067e-14,1.7638e-14,1.6376e-14,1.1264e-14,1.1131e-14,1.0823e-14,8.1818e-15,7.5711e-15,7.3652e-15,6.7717e-15,6.0744e-15,5.4806e-15,5.195e-15,3.0641e-15,3.0075e-15,2.2778e-15,1.4981e-15,1.0079e-15,5.7896e-16,5.744e-16,4.7135e-16,3.6723e-16,2.6382e-16,2.6285e-16,2.3434e-16,1.3628e-16,1.201e-16,1.1844e-16,6.2164e-17,5.3928e-17,4.9682e-17,3.8576e-17,3e-17,1.8847e-17,1.752e-17,1.2308e-17,5.5574e-18,5.4984e-18,5.1503e-18,4.5052e-18,4.0557e-18,3.5623e-18,3.056e-18,7.2591e-19,4.9617e-19,2.7616e-19,1.7826e-19,1.7445e-19,1.6597e-19,8.6142e-20,7.3877e-20,7.2941e-20,3.8799e-20,1.3248e-20,1.2801e-20,9.3085e-21,8.714e-21,4.1752e-21,3.3953e-21,2.1594e-21,1.7041e-21,1.3111e-21,1.2457e-21,9.1168e-22,8.628e-22,8.405e-22,4.123e-22,3.3293e-22,3.0425e-22,2.2696e-22,2.069e-22,1.3529e-22,1.2277e-22,1.0096e-22,6.193e-23,6.1644e-23,4.8707e-23,4.498e-23,4.4975e-23,2.6709e-23,2.6272e-23,2.1181e-23,1.6866e-23,1.0249e-23,6.5314e-24,4.7217e-24,2.8132e-24,1.7391e-24,9.2937e-25,9.0593e-25,5.5824e-25,3.4985e-25,2.654e-25,1.2631e-25,1.0151e-25,6.5054e-26,4.9964e-26,2.8751e-26,2.7116e-26,2.4032e-26,1.817e-26,1.0101e-26,5.5107e-27,3.993e-27,2.8928e-27,2.4444e-27,2.387e-27,1.7575e-27,1.2328e-27,4.1506e-28,3.1019e-28,2.6416e-28,1.8515e-28,1.847e-28,1.3005e-28,1.2449e-28,9.8079e-29,8.0958e-29,4.2357e-29,3.8559e-29,2.3199e-29,1.4436e-29,3.0332e-30,2.2584e-30,1.9582e-30,1.3464e-30,9.4669e-31,8.2791e-31,6.3319e-31,5.2211e-31,4.1086e-31,2.7632e-31,2.7573e-31,1.3476e-31,1.1136e-31,1.0701e-31,1.0476e-31,5.0407e-32,4.9573e-32,4.604e-32,4.3545e-32,3.769e-32,2.9661e-32,2.3921e-32,9.1782e-33,1.172e-33,6.3219e-34,5.9855e-34,5.721e-34,4.9421e-34,4.5554e-34,2.0969e-34,1.255e-34,8.6292e-35,6.9944e-35,4.5064e-35,3.0985e-35,2.8897e-35,1.7044e-35,1.2632e-35,8.7557e-36,4.8499e-36,2.2202e-36,2.1119e-36,1.6198e-36,1.347e-36,1.2399e-36,5.1071e-37,4.0034e-37,1.3165e-37,9.6596e-38,5.5918e-38,4.1703e-38,3.7919e-38,2.2563e-38,2.1097e-38,1.8211e-38,1.32e-38,7.1343e-39 1,0.6907,0.71977,0.72121,0.72986,0.73648,0.74512,0.76169,0.79986,0.82305,0.82653,0.84416,0.84697,0.85797,0.88342,0.89099,0.89613,0.91719,0.9206,0.92431,0.9362,0.93742,0.93812,0.94644,0.9511,0.95125,0.95963,0.96035,0.96387,0.96432,0.96475,0.98417,0.99565,0.99634,0.99817,0.99927,0.99979,1,0.99971,0.9978,0.99599,0.99191,0.98479,0.98402,0.98233,0.98069,0.97103,0.97102,0.94061,0.93796,0.93647,0.92513,0.92426,0.89956,0.88906,0.88456,0.87445,0.86785,0.85622,0.85254,0.82314,0.8041,0.74064,0.72246,0.71632,0.70526,0.67454,0.66818,0.66253,0.63587,0.61076,0.60145,0.59384,0.56627,0.52679,0.48587,0.45886,0.45327,0.40452,0.38822,0.38072,0.37742,0.36417,0.31221,0.31061,0.30201,0.28866,0.28609,0.26774,0.22109,0.22051,0.20841,0.20418,0.16007,0.15015,0.14944,0.14099,0.13013,0.12993,0.12908,0.12287,0.12282,0.1174,0.11535,0.088992,0.07905,0.07873,0.068582,0.066052,0.062288,0.060522,0.0595,0.058385,0.058026,0.057075,0.053376,0.052959,0.052108,0.051419,0.046461,0.041345,0.035473,0.033454,0.029506,0.025579,0.024066,0.023317,0.016295,0.015617,0.015135,0.014218,0.013123,0.012236,0.011555,0.011437,0.011364,0.010566,0.0087027,0.0085781,0.0079381,0.0070309,0.0065712,0.0064992,0.004376,0.0043573,0.0040225,0.0034349,0.0033367,0.0029931,0.0029168,0.0024312,0.0021558,0.0016333,0.0016224,0.0011726,0.0011294,0.001116,0.00089955,0.0008872,0.00082016,0.00073905,0.00071529,0.0006978,0.00063268,0.00062246,0.00061588,0.0005695,0.00055405,0.00055009,0.00051528,0.00050327,0.00044139,0.00035427,0.00034055,0.00033699,0.00030503,0.00029267,0.00024711,0.00018292,0.00016648,0.00014329,0.00013556,0.00011613,9.9442e-05,9.8186e-05,9.7222e-05,9.7111e-05,9.2744e-05,9.2382e-05,7.9919e-05,7.4752e-05,6.5886e-05,6.5515e-05,6.3309e-05,5.0756e-05,5.0428e-05,4.5356e-05,4.0177e-05,3.2305e-05,3.1387e-05,2.89e-05,2.837e-05,2.7071e-05,2.5022e-05,2.2167e-05,2.2094e-05,1.6748e-05,1.2172e-05,1.1763e-05,1.1326e-05,1.1193e-05,9.2147e-06,8.169e-06,5.4106e-06,5.2941e-06,5.0668e-06,4.7044e-06,3.565e-06,2.6626e-06,1.9284e-06,1.7489e-06,1.6497e-06,1.4216e-06,1.0503e-06,9.1863e-07,7.7147e-07,5.8886e-07,4.6558e-07,4.4619e-07,2.8215e-07,2.6551e-07,2.5967e-07,2.3305e-07,2.2321e-07,1.5789e-07,1.3596e-07,1.302e-07,1.2962e-07,1.1833e-07,1.0462e-07,9.8796e-08,9.6308e-08,6.1422e-08,6.1388e-08,4.0749e-08,2.5375e-08,1.6303e-08,1.0802e-08,9.0295e-09,8.6143e-09,7.7148e-09,7.0045e-09,5.5746e-09,5.4357e-09,3.489e-09,3.1173e-09,2.4857e-09,1.8736e-09,1.5773e-09,1.5468e-09,1.3441e-09,1.223e-09,9.692e-10,6.8443e-10,6.6236e-10,5.6799e-10,4.4529e-10,3.6513e-10,3.6175e-10,1.8134e-10,1.6186e-10,1.5325e-10,1.3317e-10,1.2379e-10,1.1031e-10,9.1763e-11,8.518e-11,7.6772e-11,6.4926e-11,5.2233e-11,4.2416e-11,4.1529e-11,3.2174e-11,2.7184e-11,2.3424e-11,1.6676e-11,1.427e-11,1.3484e-11,1.1022e-11,1.0888e-11,9.9645e-12,9.582e-12,5.695e-12,4.9802e-12,4.727e-12,3.7231e-12,3.2402e-12,3.1726e-12,2.2909e-12,1.2206e-12,1.011e-12,9.1722e-13,7.3082e-13,7.1663e-13,5.5457e-13,5.3919e-13,3.8685e-13,3.1803e-13,2.1428e-13,2.0674e-13,1.999e-13,1.9618e-13,1.8448e-13,1.7544e-13,1.7015e-13,1.2312e-13,1.1504e-13,6.0258e-14,4.8464e-14,4.1934e-14,3.9596e-14,2.4556e-14,2.4351e-14,2.0788e-14,1.9304e-14,1.3291e-14,1.3134e-14,1.2772e-14,9.6618e-15,8.9424e-15,8.6998e-15,8.0005e-15,7.1787e-15,6.4786e-15,6.1418e-15,3.6275e-15,3.5605e-15,2.6986e-15,1.7767e-15,1.1965e-15,6.8826e-16,6.8285e-16,5.6061e-16,4.3705e-16,3.1423e-16,3.1307e-16,2.7919e-16,1.6258e-16,1.4333e-16,1.4135e-16,7.4302e-17,6.4479e-17,5.9414e-17,4.6161e-17,3.592e-17,2.2591e-17,2.1004e-17,1.4768e-17,6.6804e-18,6.6096e-18,6.1921e-18,5.4182e-18,4.8788e-18,4.2865e-18,3.6786e-18,8.7666e-19,5.9973e-19,3.3423e-19,2.1596e-19,2.1135e-19,2.011e-19,1.0453e-19,8.9676e-20,8.8542e-20,4.7162e-20,1.6142e-20,1.5598e-20,1.135e-20,1.0627e-20,5.0998e-21,4.149e-21,2.6412e-21,2.0854e-21,1.6053e-21,1.5254e-21,1.1172e-21,1.0574e-21,1.0301e-21,5.0606e-22,4.0882e-22,3.7367e-22,2.7891e-22,2.5432e-22,1.6644e-22,1.5107e-22,1.2428e-22,7.6311e-23,7.596e-23,6.0047e-23,5.5461e-23,5.5455e-23,3.2968e-23,3.243e-23,2.6157e-23,2.0838e-23,1.2675e-23,8.0848e-24,5.8484e-24,3.4882e-24,2.1584e-24,1.1549e-24,1.1258e-24,6.9438e-25,4.3556e-25,3.3061e-25,1.5756e-25,1.2668e-25,8.1257e-26,6.2439e-26,3.5968e-26,3.3927e-26,3.0074e-26,2.2751e-26,1.2662e-26,6.9155e-27,5.0139e-27,3.6347e-27,3.0722e-27,3.0003e-27,2.2102e-27,1.5514e-27,5.2339e-28,3.9136e-28,3.3337e-28,2.3382e-28,2.3325e-28,1.6435e-28,1.5733e-28,1.24e-28,1.0239e-28,5.3635e-29,4.8833e-29,2.9408e-29,1.8315e-29,3.8589e-30,2.8747e-30,2.4932e-30,1.7155e-30,1.2069e-30,1.0557e-30,8.078e-31,6.6631e-31,5.2455e-31,3.5303e-31,3.5228e-31,1.7238e-31,1.4249e-31,1.3694e-31,1.3407e-31,6.459e-32,6.3524e-32,5.9003e-32,5.5811e-32,4.8319e-32,3.8042e-32,3.0691e-32,1.1795e-32,1.5114e-33,8.1611e-34,7.7276e-34,7.3867e-34,6.3825e-34,5.8839e-34,2.712e-34,1.6245e-34,1.1177e-34,9.0623e-35,5.843e-35,4.0199e-35,3.7494e-35,2.2135e-35,1.6412e-35,1.1383e-35,6.3112e-36,2.8928e-36,2.7519e-36,2.1116e-36,1.7565e-36,1.617e-36,6.6701e-37,5.2306e-37,1.7231e-37,1.2649e-37,7.3288e-38,5.4683e-38,4.9728e-38,2.9614e-38,2.7692e-38,2.391e-38,1.734e-38,9.3808e-39 1,0.67638,0.70567,0.70713,0.71587,0.72256,0.7313,0.74809,0.78689,0.81056,0.81412,0.83219,0.83508,0.84639,0.87266,0.88051,0.88585,0.90781,0.91138,0.91527,0.92779,0.92909,0.92983,0.93866,0.94362,0.94378,0.95276,0.95354,0.95733,0.95781,0.95828,0.97967,0.99313,0.994,0.99643,0.99807,0.999,0.99971,1,0.99911,0.99785,0.99466,0.98865,0.98799,0.98651,0.98507,0.97642,0.97641,0.94828,0.94579,0.94439,0.93367,0.93285,0.9093,0.89922,0.8949,0.88515,0.87877,0.86751,0.86394,0.83533,0.81672,0.75434,0.73638,0.73031,0.71936,0.68888,0.68256,0.67694,0.65039,0.62533,0.61603,0.60841,0.5808,0.54116,0.49996,0.4727,0.46705,0.41769,0.40115,0.39354,0.39018,0.37671,0.32378,0.32214,0.31337,0.29972,0.29709,0.27832,0.23045,0.22985,0.21741,0.21306,0.16755,0.1573,0.15656,0.14782,0.13657,0.13635,0.13547,0.12904,0.12898,0.12335,0.12122,0.093796,0.083423,0.083089,0.072484,0.069838,0.065898,0.064048,0.062977,0.06181,0.061433,0.060436,0.056557,0.05612,0.055227,0.054503,0.049297,0.043918,0.037735,0.035607,0.03144,0.027291,0.025691,0.024898,0.017453,0.016733,0.016221,0.015246,0.014081,0.013137,0.012411,0.012286,0.012208,0.011358,0.0093687,0.0092355,0.0085516,0.0075814,0.0070894,0.0070122,0.0047353,0.0047152,0.0043555,0.0037234,0.0036178,0.0032477,0.0031655,0.0026418,0.0023445,0.0017796,0.0017678,0.0012805,0.0012336,0.001219,0.00098399,0.00097056,0.00089767,0.00080943,0.00078357,0.00076453,0.00069361,0.00068248,0.00067531,0.00062476,0.00060791,0.00060359,0.00056563,0.00055252,0.00048498,0.00038977,0.00037477,0.00037087,0.0003359,0.00032237,0.00027246,0.00020204,0.00018398,0.00015849,0.00014999,0.0001286,0.00011022,0.00010883,0.00010777,0.00010765,0.00010283,0.00010244,8.8687e-05,8.2983e-05,7.3192e-05,7.2782e-05,7.0345e-05,5.6464e-05,5.6102e-05,5.0487e-05,4.4752e-05,3.6025e-05,3.5007e-05,3.2247e-05,3.1659e-05,3.0217e-05,2.7941e-05,2.4768e-05,2.4687e-05,1.874e-05,1.3642e-05,1.3186e-05,1.2699e-05,1.2551e-05,1.0342e-05,9.174e-06,6.0886e-06,5.9582e-06,5.7035e-06,5.2975e-06,4.0199e-06,3.0064e-06,2.1808e-06,1.9787e-06,1.867e-06,1.6099e-06,1.1911e-06,1.0424e-06,8.7612e-07,6.6956e-07,5.2994e-07,5.0797e-07,3.2186e-07,3.0296e-07,2.9633e-07,2.6608e-07,2.5489e-07,1.8057e-07,1.5559e-07,1.4902e-07,1.4837e-07,1.355e-07,1.1985e-07,1.1321e-07,1.1037e-07,7.0525e-08,7.0486e-08,4.6867e-08,2.9242e-08,1.8821e-08,1.2491e-08,1.0449e-08,9.9701e-09,8.9328e-09,8.1135e-09,6.4629e-09,6.3026e-09,4.0524e-09,3.6222e-09,2.8908e-09,2.1813e-09,1.8375e-09,1.8022e-09,1.5668e-09,1.4262e-09,1.1312e-09,7.9984e-10,7.7415e-10,6.6422e-10,5.2121e-10,4.2768e-10,4.2374e-10,2.1295e-10,1.9014e-10,1.8007e-10,1.5655e-10,1.4556e-10,1.2976e-10,1.0802e-10,1.003e-10,9.0429e-11,7.6521e-11,6.1608e-11,5.0065e-11,4.9021e-11,3.8012e-11,3.2136e-11,2.7705e-11,1.9747e-11,1.6907e-11,1.5978e-11,1.307e-11,1.2911e-11,1.182e-11,1.1368e-11,6.7682e-12,5.9213e-12,5.6212e-12,4.431e-12,3.858e-12,3.7777e-12,2.7308e-12,1.458e-12,1.2083e-12,1.0966e-12,8.744e-13,8.5747e-13,6.641e-13,6.4575e-13,4.638e-13,3.8152e-13,2.5738e-13,2.4835e-13,2.4016e-13,2.357e-13,2.2169e-13,2.1087e-13,2.0452e-13,1.4814e-13,1.3845e-13,7.2664e-14,5.8481e-14,5.0624e-14,4.781e-14,2.9693e-14,2.9446e-14,2.5149e-14,2.3359e-14,1.6101e-14,1.5912e-14,1.5474e-14,1.1716e-14,1.0846e-14,1.0553e-14,9.7069e-15,8.7126e-15,7.8653e-15,7.4577e-15,4.4115e-15,4.3303e-15,3.2847e-15,2.1652e-15,1.4598e-15,8.4108e-16,8.3449e-16,6.8549e-16,5.3478e-16,3.8486e-16,3.8345e-16,3.4206e-16,1.995e-16,1.7593e-16,1.7351e-16,9.1373e-17,7.9325e-17,7.311e-17,5.6842e-17,4.4262e-17,2.7873e-17,2.5921e-17,1.8242e-17,8.2698e-18,8.1824e-18,7.6668e-18,6.7111e-18,6.0447e-18,5.3127e-18,4.5612e-18,1.0911e-18,7.4719e-19,4.1705e-19,2.6978e-19,2.6404e-19,2.5127e-19,1.3082e-19,1.1228e-19,1.1086e-19,5.9147e-20,2.0298e-20,1.9617e-20,1.4286e-20,1.3377e-20,6.4315e-21,5.2351e-21,3.3364e-21,2.6358e-21,2.0303e-21,1.9295e-21,1.4142e-21,1.3387e-21,1.3042e-21,6.4184e-22,5.1878e-22,4.7428e-22,3.5426e-22,3.2309e-22,2.1167e-22,1.9217e-22,1.5816e-22,9.7227e-23,9.6781e-23,7.655e-23,7.0717e-23,7.0708e-23,4.2088e-23,4.1402e-23,3.3411e-23,2.6631e-23,1.6218e-23,1.0355e-23,7.4966e-24,4.4765e-24,2.7731e-24,1.4859e-24,1.4486e-24,8.9444e-25,5.6165e-25,4.2658e-25,2.0364e-25,1.6381e-25,1.0518e-25,8.0867e-26,4.6641e-26,4.3999e-26,3.9014e-26,2.9531e-26,1.6457e-26,9.0001e-27,6.53e-27,4.737e-27,4.0054e-27,3.9118e-27,2.8837e-27,2.0256e-27,6.8498e-28,5.125e-28,4.3672e-28,3.0653e-28,3.0579e-28,2.1562e-28,2.0643e-28,1.6279e-28,1.3447e-28,7.0535e-29,6.4233e-29,3.8723e-29,2.414e-29,5.1027e-30,3.8036e-30,3.2998e-30,2.2722e-30,1.5997e-30,1.3997e-30,1.0716e-30,8.8426e-31,6.9647e-31,4.6911e-31,4.6812e-31,2.2939e-31,1.897e-31,1.8232e-31,1.785e-31,8.6123e-32,8.4704e-32,7.8688e-32,7.4439e-32,6.4465e-32,5.0778e-32,4.0983e-32,1.5781e-32,2.0303e-33,1.0976e-33,1.0394e-33,9.9366e-34,8.5882e-34,7.9185e-34,3.6552e-34,2.1917e-34,1.509e-34,1.224e-34,7.8986e-35,5.438e-35,5.0728e-35,2.9977e-35,2.224e-35,1.5436e-35,8.5677e-36,3.9329e-36,3.7416e-36,2.8725e-36,2.3902e-36,2.2008e-36,9.0932e-37,7.1339e-37,2.3549e-37,1.7297e-37,1.0032e-37,7.4893e-38,6.8119e-38,4.0605e-38,3.7974e-38,3.2796e-38,2.3799e-38,1.2889e-38 1,0.65096,0.68058,0.68205,0.69092,0.69771,0.7066,0.72372,0.7635,0.78794,0.79163,0.8104,0.81342,0.82523,0.85284,0.86115,0.86681,0.89028,0.89413,0.89833,0.91191,0.91332,0.91413,0.92381,0.92929,0.92947,0.93946,0.94034,0.9446,0.94515,0.94568,0.97044,0.98733,0.98852,0.99199,0.99456,0.99622,0.9978,0.99911,1,0.99973,0.99813,0.9941,0.99362,0.99252,0.99143,0.98461,0.98459,0.96058,0.95838,0.95714,0.94757,0.94683,0.9254,0.9161,0.9121,0.90302,0.89707,0.8865,0.88314,0.85603,0.83825,0.77799,0.76047,0.75454,0.74382,0.71386,0.70763,0.70209,0.67581,0.65091,0.64164,0.63404,0.60644,0.56662,0.52501,0.49737,0.49163,0.44131,0.42437,0.41657,0.41312,0.39929,0.3447,0.34301,0.33392,0.31977,0.31704,0.29753,0.24754,0.24692,0.23387,0.2293,0.18133,0.17047,0.16969,0.16042,0.14846,0.14823,0.14729,0.14044,0.14038,0.13438,0.13211,0.10274,0.091588,0.091228,0.079788,0.076927,0.072664,0.070661,0.0695,0.068235,0.067827,0.066746,0.062535,0.06206,0.06109,0.060304,0.054638,0.048773,0.042013,0.039681,0.035109,0.030544,0.02878,0.027906,0.019667,0.018868,0.018299,0.017214,0.015918,0.014865,0.014055,0.013916,0.013829,0.012878,0.010652,0.010503,0.0097351,0.0086448,0.0080911,0.0080042,0.0054332,0.0054105,0.0050028,0.0042854,0.0041653,0.0037442,0.0036507,0.0030536,0.0027138,0.0020668,0.0020532,0.0014929,0.0014389,0.001422,0.0011507,0.0011352,0.0010508,0.00094864,0.00091866,0.00089658,0.0008143,0.00080137,0.00079305,0.00073431,0.00071473,0.0007097,0.00066554,0.00065029,0.0005716,0.00046047,0.00044293,0.00043837,0.00039745,0.00038161,0.00032309,0.00024033,0.00021906,0.00018899,0.00017895,0.00015367,0.00013191,0.00013027,0.00012901,0.00012886,0.00012316,0.00012268,0.00010637,9.9593e-05,8.7949e-05,8.7462e-05,8.456e-05,6.8018e-05,6.7586e-05,6.0883e-05,5.4029e-05,4.3582e-05,4.2361e-05,3.9052e-05,3.8346e-05,3.6615e-05,3.3882e-05,3.0068e-05,2.997e-05,2.2808e-05,1.6651e-05,1.6099e-05,1.5509e-05,1.533e-05,1.2654e-05,1.1237e-05,7.4842e-06,7.3253e-06,7.0148e-06,6.5196e-06,4.9589e-06,3.7178e-06,2.704e-06,2.4555e-06,2.3179e-06,2.0012e-06,1.4843e-06,1.3003e-06,1.0944e-06,8.3819e-07,6.6463e-07,6.3729e-07,4.0524e-07,3.8163e-07,3.7334e-07,3.355e-07,3.215e-07,2.2836e-07,1.9699e-07,1.8873e-07,1.8791e-07,1.7173e-07,1.5204e-07,1.4368e-07,1.401e-07,8.9818e-08,8.9769e-08,5.9867e-08,3.7481e-08,2.42e-08,1.6107e-08,1.349e-08,1.2877e-08,1.1546e-08,1.0494e-08,8.3722e-09,8.1659e-09,5.2663e-09,4.7109e-09,3.7654e-09,2.8466e-09,2.4008e-09,2.3549e-09,2.0493e-09,1.8665e-09,1.4826e-09,1.0508e-09,1.0172e-09,8.7365e-10,6.8662e-10,5.6414e-10,5.5897e-10,2.8215e-10,2.5211e-10,2.3883e-10,2.0783e-10,1.9332e-10,1.7246e-10,1.4373e-10,1.3352e-10,1.2046e-10,1.0204e-10,8.2262e-11,6.6934e-11,6.5547e-11,5.0906e-11,4.3081e-11,3.7174e-11,2.655e-11,2.2753e-11,2.151e-11,1.7616e-11,1.7404e-11,1.5941e-11,1.5335e-11,9.1583e-12,8.0187e-12,7.6147e-12,6.0107e-12,5.2377e-12,5.1293e-12,3.7148e-12,1.9906e-12,1.6514e-12,1.4996e-12,1.1973e-12,1.1742e-12,9.1075e-13,8.8572e-13,6.3733e-13,5.2485e-13,3.5485e-13,3.4247e-13,3.3124e-13,3.2512e-13,3.0589e-13,2.9104e-13,2.8233e-13,2.0487e-13,1.9153e-13,1.0088e-13,8.1285e-14,7.042e-14,6.6525e-14,4.1422e-14,4.108e-14,3.5115e-14,3.2628e-14,2.2535e-14,2.2272e-14,2.1662e-14,1.6425e-14,1.5212e-14,1.4803e-14,1.3622e-14,1.2234e-14,1.105e-14,1.048e-14,6.2164e-15,6.1026e-15,4.6357e-15,3.0624e-15,2.0689e-15,1.1953e-15,1.186e-15,9.7523e-16,7.6177e-16,5.4912e-16,5.4712e-16,4.8835e-16,2.8558e-16,2.5201e-16,2.4856e-16,1.3131e-16,1.1407e-16,1.0518e-16,8.1875e-17,6.3833e-17,4.0288e-17,3.7479e-17,2.6421e-17,1.2023e-17,1.1897e-17,1.1151e-17,9.7667e-18,8.8013e-18,7.7402e-18,6.6501e-18,1.6016e-18,1.0987e-18,6.1488e-19,3.9854e-19,3.901e-19,3.7131e-19,1.939e-19,1.6653e-19,1.6444e-19,8.7979e-20,3.0338e-20,2.9324e-20,2.1385e-20,2.0031e-20,9.6615e-21,7.8713e-21,5.0263e-21,3.975e-21,3.0653e-21,2.9138e-21,2.1384e-21,2.0248e-21,1.9729e-21,9.7385e-22,7.8785e-22,7.2056e-22,5.3888e-22,4.9166e-22,3.2269e-22,2.9307e-22,2.4141e-22,1.4871e-22,1.4803e-22,1.172e-22,1.083e-22,1.0829e-22,6.4599e-23,6.355e-23,5.133e-23,4.0953e-23,2.4991e-23,1.5986e-23,1.1588e-23,6.9345e-24,4.3041e-24,2.3121e-24,2.2542e-24,1.3946e-24,8.7737e-25,6.671e-25,3.1941e-25,2.5715e-25,1.654e-25,1.273e-25,7.3581e-26,6.9428e-26,6.1591e-26,4.6672e-26,2.6069e-26,1.429e-26,1.0381e-26,7.5397e-27,6.3792e-27,6.2308e-27,4.5985e-27,3.2346e-27,1.0983e-27,8.2266e-28,7.0144e-28,4.93e-28,4.918e-28,3.4723e-28,3.325e-28,2.6243e-28,2.1694e-28,1.1406e-28,1.0391e-28,6.2759e-29,3.9193e-29,8.3319e-30,6.2173e-30,5.3965e-30,3.721e-30,2.6231e-30,2.2963e-30,1.7597e-30,1.453e-30,1.1454e-30,7.7261e-31,7.7098e-31,3.7877e-31,3.1344e-31,3.0129e-31,2.9501e-31,1.427e-31,1.4036e-31,1.3042e-31,1.234e-31,1.0692e-31,8.4292e-32,6.8084e-32,2.6304e-32,3.4083e-33,1.8465e-33,1.7489e-33,1.6722e-33,1.446e-33,1.3336e-33,6.1723e-34,3.7074e-34,2.5558e-34,2.0746e-34,1.3407e-34,9.2423e-35,8.6236e-35,5.1051e-35,3.7912e-35,2.6345e-35,1.4652e-35,6.7431e-36,6.4163e-36,4.9301e-36,4.1049e-36,3.7806e-36,1.5666e-36,1.23e-36,4.0752e-37,2.9963e-37,1.7408e-37,1.3008e-37,1.1835e-37,7.0667e-38,6.6103e-38,5.7116e-38,4.149e-38,2.2514e-38 1,0.6369,0.66664,0.66812,0.67704,0.68388,0.69284,0.7101,0.75034,0.77516,0.77891,0.79804,0.80112,0.81319,0.84148,0.85002,0.85586,0.8801,0.88409,0.88845,0.90259,0.90406,0.90491,0.91504,0.92079,0.92098,0.93151,0.93243,0.93695,0.93753,0.93809,0.96466,0.9834,0.98476,0.98879,0.99188,0.99394,0.99599,0.99785,0.99973,1,0.99928,0.99635,0.99597,0.99509,0.9942,0.98838,0.98837,0.96669,0.96465,0.9635,0.95458,0.95389,0.93367,0.92483,0.921,0.91232,0.90661,0.89645,0.89321,0.86698,0.8497,0.79072,0.77348,0.76763,0.75706,0.72744,0.72127,0.71578,0.6897,0.66492,0.65569,0.64812,0.62056,0.5807,0.53893,0.51111,0.50532,0.45453,0.43739,0.42949,0.426,0.41198,0.35652,0.3548,0.34555,0.33113,0.32834,0.30843,0.2573,0.25666,0.24328,0.23859,0.18926,0.17806,0.17725,0.16768,0.15532,0.15509,0.15412,0.14703,0.14697,0.14076,0.13841,0.10795,0.096346,0.095971,0.084054,0.081071,0.076623,0.074532,0.07332,0.071998,0.071572,0.070443,0.066042,0.065545,0.06453,0.063708,0.057778,0.051631,0.044538,0.042088,0.03728,0.032472,0.030614,0.029691,0.020988,0.020142,0.019539,0.018391,0.017016,0.015899,0.01504,0.014892,0.0148,0.013791,0.011423,0.011264,0.010447,0.0092856,0.0086952,0.0086025,0.005856,0.0058316,0.0053953,0.0046266,0.0044979,0.0040462,0.0039458,0.0033045,0.0029392,0.0022425,0.0022279,0.0016233,0.0015649,0.0015467,0.0012533,0.0012365,0.0011452,0.0010345,0.001002,0.00097804,0.00088881,0.00087479,0.00086576,0.00080202,0.00078075,0.00077529,0.00072734,0.00071077,0.00062525,0.00050434,0.00048524,0.00048028,0.0004357,0.00041844,0.00035461,0.00026423,0.00024097,0.00020807,0.00019708,0.00016938,0.00014551,0.00014371,0.00014233,0.00014217,0.00013591,0.00013539,0.00011748,0.00011003,9.7234e-05,9.6698e-05,9.3507e-05,7.5303e-05,7.4827e-05,6.7443e-05,5.9888e-05,4.8362e-05,4.7014e-05,4.336e-05,4.258e-05,4.0668e-05,3.7647e-05,3.343e-05,3.3322e-05,2.5393e-05,1.8567e-05,1.7956e-05,1.7301e-05,1.7102e-05,1.413e-05,1.2555e-05,8.3784e-06,8.2013e-06,7.8553e-06,7.3033e-06,5.5622e-06,4.1758e-06,3.0416e-06,2.7632e-06,2.6091e-06,2.2541e-06,1.6741e-06,1.4675e-06,1.2361e-06,9.4781e-07,7.5231e-07,7.215e-07,4.5969e-07,4.3301e-07,4.2365e-07,3.8088e-07,3.6506e-07,2.5967e-07,2.2414e-07,2.1478e-07,2.1385e-07,1.9551e-07,1.7318e-07,1.637e-07,1.5964e-07,1.0253e-07,1.0247e-07,6.8454e-08,4.2937e-08,2.7771e-08,1.8513e-08,1.5516e-08,1.4813e-08,1.3288e-08,1.2082e-08,9.6472e-09,9.4103e-09,6.079e-09,5.4402e-09,4.3519e-09,3.2934e-09,2.7794e-09,2.7264e-09,2.3738e-09,2.1628e-09,1.7195e-09,1.2201e-09,1.1813e-09,1.0152e-09,7.9853e-10,6.5654e-10,6.5055e-10,3.2917e-10,2.9424e-10,2.788e-10,2.4272e-10,2.2584e-10,2.0155e-10,1.6808e-10,1.5617e-10,1.4095e-10,1.1946e-10,9.6383e-11,7.8479e-11,7.6858e-11,5.9742e-11,5.0586e-11,4.3672e-11,3.1227e-11,2.6775e-11,2.5317e-11,2.0747e-11,2.0498e-11,1.8781e-11,1.8069e-11,1.0809e-11,9.4683e-12,8.9928e-12,7.104e-12,6.1932e-12,6.0654e-12,4.3973e-12,2.361e-12,1.9599e-12,1.7803e-12,1.4224e-12,1.3951e-12,1.0829e-12,1.0532e-12,7.5864e-13,6.2512e-13,4.2316e-13,4.0844e-13,3.9508e-13,3.8781e-13,3.6494e-13,3.4727e-13,3.3691e-13,2.4471e-13,2.2883e-13,1.2076e-13,9.7367e-14,8.4388e-14,7.9734e-14,4.9717e-14,4.9307e-14,4.2168e-14,3.919e-14,2.7096e-14,2.6781e-14,2.605e-14,1.9768e-14,1.8312e-14,1.7821e-14,1.6404e-14,1.4736e-14,1.3314e-14,1.263e-14,7.5028e-15,7.3658e-15,5.5997e-15,3.7036e-15,2.5048e-15,1.4495e-15,1.4382e-15,1.1832e-15,9.2488e-16,6.673e-16,6.6488e-16,5.9365e-16,3.4767e-16,3.069e-16,3.0272e-16,1.602e-16,1.3922e-16,1.284e-16,1.0002e-16,7.8029e-17,4.9309e-17,4.588e-17,3.2374e-17,1.4763e-17,1.4608e-17,1.3694e-17,1.1999e-17,1.0816e-17,9.5149e-18,8.1781e-18,1.9768e-18,1.3574e-18,7.6082e-19,4.9368e-19,4.8324e-19,4.6003e-19,2.4062e-19,2.0674e-19,2.0415e-19,1.0939e-19,3.7822e-20,3.6561e-20,2.6683e-20,2.4998e-20,1.2079e-20,9.8454e-21,6.2937e-21,4.9802e-21,3.8428e-21,3.6533e-21,2.6831e-21,2.5408e-21,2.4759e-21,1.2242e-21,9.9088e-22,9.0643e-22,6.7835e-22,6.1904e-22,4.0669e-22,3.6945e-22,3.0447e-22,1.8776e-22,1.869e-22,1.4806e-22,1.3685e-22,1.3683e-22,8.1722e-23,8.0398e-23,6.4969e-23,5.1862e-23,3.1684e-23,2.0288e-23,1.4718e-23,8.8173e-24,5.4785e-24,2.9471e-24,2.8735e-24,1.7797e-24,1.1207e-24,8.5267e-25,4.0891e-25,3.2937e-25,2.1205e-25,1.633e-25,9.4502e-26,8.9181e-26,7.9133e-26,6.0001e-26,3.3556e-26,1.8418e-26,1.3388e-26,9.7309e-27,8.2361e-27,8.0449e-27,5.9412e-27,4.1821e-27,1.4233e-27,1.0667e-27,9.0983e-28,6.3992e-28,6.3837e-28,4.5105e-28,4.3194e-28,3.4109e-28,2.8207e-28,1.4851e-28,1.3531e-28,8.181e-29,5.1139e-29,1.0906e-29,8.1426e-30,7.0697e-30,4.8783e-30,3.4413e-30,3.0133e-30,2.3104e-30,1.9085e-30,1.5052e-30,1.0161e-30,1.0139e-30,4.9883e-31,4.1294e-31,3.9697e-31,3.8871e-31,1.8829e-31,1.8521e-31,1.7212e-31,1.6288e-31,1.4116e-31,1.1134e-31,8.9967e-32,3.4822e-32,4.5298e-33,2.457e-33,2.3274e-33,2.2254e-33,1.9249e-33,1.7756e-33,8.2299e-34,4.948e-34,3.4134e-34,2.7718e-34,1.7928e-34,1.2367e-34,1.1541e-34,6.8386e-35,5.0814e-35,3.5334e-35,1.9672e-35,9.0666e-36,8.6279e-36,6.6327e-36,5.5244e-36,5.0886e-36,2.112e-36,1.659e-36,5.5073e-37,4.0515e-37,2.3562e-37,1.7616e-37,1.603e-37,9.5802e-38,8.9625e-38,7.746e-38,5.63e-38,3.0584e-38 1,0.61396,0.64383,0.64532,0.6543,0.6612,0.67024,0.68771,0.7286,0.75396,0.7578,0.77745,0.78061,0.79306,0.82238,0.83128,0.83737,0.8628,0.86701,0.87162,0.88662,0.88818,0.88908,0.89991,0.90609,0.90629,0.91766,0.91867,0.92357,0.9242,0.92482,0.95423,0.97591,0.97755,0.98249,0.98639,0.98909,0.99191,0.99466,0.99813,0.99928,1,0.99887,0.99865,0.99812,0.99755,0.99341,0.9934,0.97556,0.9738,0.9728,0.96497,0.96436,0.94618,0.9381,0.93459,0.92658,0.92128,0.91181,0.90878,0.88406,0.86763,0.81092,0.79418,0.78849,0.77819,0.74921,0.74316,0.73775,0.71207,0.68757,0.67842,0.6709,0.64348,0.60365,0.5617,0.53365,0.5278,0.47631,0.45889,0.45083,0.44728,0.43297,0.37617,0.3744,0.36489,0.35005,0.34717,0.32663,0.27366,0.273,0.25908,0.2542,0.20265,0.19089,0.19005,0.17999,0.16698,0.16673,0.16571,0.15823,0.15817,0.15161,0.14912,0.11684,0.10449,0.10409,0.091377,0.088188,0.083429,0.081189,0.079891,0.078474,0.078017,0.076806,0.072084,0.07155,0.07046,0.069577,0.063199,0.056576,0.048914,0.046263,0.041052,0.03583,0.033808,0.032804,0.023301,0.022374,0.021713,0.020454,0.018944,0.017717,0.016772,0.016609,0.016507,0.015396,0.012783,0.012608,0.011705,0.010418,0.0097637,0.009661,0.006607,0.0065799,0.0060931,0.0052344,0.0050904,0.0045848,0.0044723,0.0037529,0.0033424,0.0025578,0.0025412,0.0018578,0.0017917,0.0017711,0.0014382,0.0014192,0.0013154,0.0011895,0.0011525,0.0011253,0.0010236,0.0010076,0.00099731,0.0009246,0.00090033,0.00089409,0.00083932,0.00082039,0.0007226,0.00058409,0.00056219,0.00055649,0.00050531,0.00048548,0.00041208,0.0003079,0.00028103,0.00024299,0.00023027,0.00019818,0.00017049,0.0001684,0.0001668,0.00016661,0.00015934,0.00015874,0.00013791,0.00012924,0.00011434,0.00011371,0.00010999,8.8745e-05,8.8189e-05,7.9558e-05,7.0718e-05,5.7212e-05,5.5631e-05,5.1342e-05,5.0426e-05,4.8181e-05,4.4631e-05,3.9671e-05,3.9543e-05,3.0203e-05,2.214e-05,2.1417e-05,2.0642e-05,2.0406e-05,1.6886e-05,1.5018e-05,1.0054e-05,9.8434e-06,9.4313e-06,8.7735e-06,6.696e-06,5.038e-06,3.6784e-06,3.3442e-06,3.159e-06,2.7321e-06,2.0336e-06,1.7844e-06,1.5049e-06,1.1561e-06,9.1918e-07,8.8179e-07,5.6361e-07,5.3112e-07,5.1971e-07,4.676e-07,4.483e-07,3.1964e-07,2.7618e-07,2.6473e-07,2.6359e-07,2.4113e-07,2.1377e-07,2.0213e-07,1.9716e-07,1.2701e-07,1.2694e-07,8.5021e-08,5.3491e-08,3.4695e-08,2.3189e-08,1.9457e-08,1.8581e-08,1.6679e-08,1.5174e-08,1.2133e-08,1.1837e-08,7.6675e-09,6.8664e-09,5.5004e-09,4.1696e-09,3.5224e-09,3.4557e-09,3.0113e-09,2.7452e-09,2.1855e-09,1.554e-09,1.5048e-09,1.2943e-09,1.0195e-09,8.3921e-10,8.3159e-10,4.2244e-10,3.7785e-10,3.5813e-10,3.1204e-10,2.9045e-10,2.5938e-10,2.1652e-10,2.0127e-10,1.8176e-10,1.542e-10,1.2455e-10,1.0153e-10,9.9447e-11,7.7408e-11,6.5605e-11,5.6684e-11,4.0605e-11,3.4845e-11,3.2957e-11,2.7038e-11,2.6715e-11,2.4488e-11,2.3565e-11,1.4136e-11,1.2391e-11,1.1772e-11,9.311e-12,8.1232e-12,7.9564e-12,5.778e-12,3.1123e-12,2.5861e-12,2.3502e-12,1.8799e-12,1.844e-12,1.4332e-12,1.3942e-12,1.0059e-12,8.2968e-13,5.6273e-13,5.4325e-13,5.2558e-13,5.1595e-13,4.8567e-13,4.6228e-13,4.4856e-13,3.2632e-13,3.0525e-13,1.6159e-13,1.3043e-13,1.1312e-13,1.0691e-13,6.6817e-14,6.6268e-14,5.6716e-14,5.2729e-14,3.6522e-14,3.6099e-14,3.5118e-14,2.6685e-14,2.4728e-14,2.4068e-14,2.2163e-14,1.992e-14,1.8007e-14,1.7085e-14,1.0175e-14,9.9896e-15,7.6042e-15,5.039e-15,3.4142e-15,1.9807e-15,1.9653e-15,1.6184e-15,1.2664e-15,9.1508e-16,9.1178e-16,8.1451e-16,4.7817e-16,4.2234e-16,4.166e-16,2.2109e-16,1.9227e-16,1.7738e-16,1.3832e-16,1.0803e-16,6.8407e-17,6.3669e-17,4.4994e-17,2.0588e-17,2.0372e-17,1.9103e-17,1.6748e-17,1.5103e-17,1.3294e-17,1.1434e-17,2.7805e-18,1.9122e-18,1.0744e-18,6.9839e-19,6.8369e-19,6.5098e-19,3.4141e-19,2.9351e-19,2.8984e-19,1.5571e-19,5.4067e-20,5.227e-20,3.8196e-20,3.5793e-20,1.7345e-20,1.415e-20,9.061e-21,7.1765e-21,5.5432e-21,5.2709e-21,3.8758e-21,3.671e-21,3.5775e-21,1.7737e-21,1.4369e-21,1.3148e-21,9.851e-22,8.9929e-22,5.9175e-22,5.3777e-22,4.435e-22,2.74e-22,2.7276e-22,2.1626e-22,1.9994e-22,1.9992e-22,1.1963e-22,1.177e-22,9.519e-23,7.605e-23,4.6546e-23,2.9855e-23,2.1683e-23,1.3015e-23,8.1007e-24,4.3675e-24,4.2588e-24,2.6422e-24,1.6667e-24,1.2693e-24,6.1033e-25,4.9198e-25,3.1724e-25,2.4454e-25,1.4179e-25,1.3383e-25,1.188e-25,9.0166e-26,5.0528e-26,2.7791e-26,2.0225e-26,1.4716e-26,1.2463e-26,1.2174e-26,9.0002e-27,6.3431e-27,2.1667e-27,1.6255e-27,1.3871e-27,9.7681e-28,9.7445e-28,6.8932e-28,6.6021e-28,5.2176e-28,4.3176e-28,2.2781e-28,2.0763e-28,1.2574e-28,7.8724e-29,1.6874e-29,1.2611e-29,1.0954e-29,7.5681e-30,5.3448e-30,4.6821e-30,3.593e-30,2.9699e-30,2.3441e-30,1.5843e-30,1.581e-30,7.7958e-31,6.4575e-31,6.2085e-31,6.0797e-31,2.9518e-31,2.9036e-31,2.6991e-31,2.5546e-31,2.2151e-31,1.7483e-31,1.4137e-31,5.4883e-32,7.185e-33,3.9046e-33,3.6992e-33,3.5377e-33,3.0614e-33,2.8246e-33,1.3123e-33,7.9021e-34,5.4575e-34,4.4345e-34,2.872e-34,1.9834e-34,1.8512e-34,1.0987e-34,8.1714e-35,5.6882e-35,3.1725e-35,1.4655e-35,1.3948e-35,1.0731e-35,8.9429e-36,8.2394e-36,3.4287e-36,2.6952e-36,8.9761e-37,6.6093e-37,3.8498e-37,2.8807e-37,2.6221e-37,1.5694e-37,1.4685e-37,1.2697e-37,9.2372e-38,5.0268e-38 1,0.58508,0.61498,0.61648,0.62551,0.63245,0.64156,0.65919,0.7007,0.72662,0.73056,0.75076,0.75402,0.76687,0.79734,0.80664,0.81301,0.83981,0.84427,0.84916,0.86515,0.86683,0.8678,0.87944,0.88611,0.88633,0.8987,0.89979,0.90516,0.90586,0.90654,0.93935,0.96461,0.96658,0.97262,0.97753,0.98102,0.98479,0.98865,0.9941,0.99635,0.99887,1,0.99999,0.99991,0.99975,0.99773,0.99773,0.98483,0.98343,0.98263,0.97622,0.97571,0.9602,0.95313,0.95003,0.94291,0.93815,0.92961,0.92686,0.90419,0.88893,0.83537,0.81936,0.81389,0.80398,0.77595,0.77006,0.76481,0.73974,0.7157,0.70669,0.69927,0.67215,0.63252,0.59051,0.56227,0.55637,0.50419,0.48644,0.47823,0.4746,0.45998,0.40163,0.3998,0.38998,0.37464,0.37166,0.35036,0.29514,0.29444,0.27986,0.27474,0.2204,0.20795,0.20705,0.19637,0.18252,0.18225,0.18116,0.17319,0.17312,0.16611,0.16346,0.12882,0.1155,0.11506,0.1013,0.097838,0.092669,0.090233,0.088821,0.087279,0.086781,0.085462,0.080314,0.079732,0.078542,0.077578,0.070605,0.063346,0.054924,0.052003,0.046251,0.04047,0.038227,0.037112,0.026522,0.025485,0.024745,0.023333,0.02164,0.020261,0.019198,0.019014,0.018899,0.017647,0.014698,0.014499,0.013476,0.012017,0.011274,0.011157,0.0076747,0.0076437,0.0070863,0.0061013,0.0059359,0.0053545,0.005225,0.0043956,0.0039213,0.0030119,0.0029927,0.0021973,0.0021201,0.002096,0.0017068,0.0016845,0.0015629,0.0014151,0.0013717,0.0013397,0.0012201,0.0012013,0.0011892,0.0011035,0.0010749,0.0010676,0.001003,0.00098066,0.00086515,0.00070117,0.00067519,0.00066842,0.00060767,0.00058411,0.00049679,0.00037249,0.00034035,0.00029479,0.00027953,0.00024099,0.00020768,0.00020516,0.00020323,0.00020301,0.00019424,0.00019352,0.00016839,0.00015793,0.0001399,0.00013915,0.00013465,0.0001089,0.00010822,9.7741e-05,8.6993e-05,7.054e-05,6.8612e-05,6.3377e-05,6.2258e-05,5.9515e-05,5.5174e-05,4.9104e-05,4.8948e-05,3.7492e-05,2.7573e-05,2.668e-05,2.5725e-05,2.5434e-05,2.1088e-05,1.8776e-05,1.2621e-05,1.2359e-05,1.1847e-05,1.1028e-05,8.4394e-06,6.3673e-06,4.663e-06,4.2431e-06,4.0103e-06,3.4732e-06,2.5924e-06,2.2774e-06,1.9237e-06,1.4814e-06,1.1803e-06,1.1327e-06,7.2689e-07,6.8534e-07,6.7075e-07,6.0405e-07,5.7935e-07,4.143e-07,3.5843e-07,3.4369e-07,3.4222e-07,3.133e-07,2.7804e-07,2.6303e-07,2.5661e-07,1.6593e-07,1.6584e-07,1.1145e-07,7.039e-08,4.5817e-08,3.0722e-08,2.5814e-08,2.4661e-08,2.2156e-08,2.0172e-08,1.6158e-08,1.5767e-08,1.0248e-08,9.1851e-09,7.3704e-09,5.5992e-09,4.7361e-09,4.6472e-09,4.0538e-09,3.6981e-09,2.9492e-09,2.1024e-09,2.0364e-09,1.7535e-09,1.3837e-09,1.1406e-09,1.1303e-09,5.7703e-10,5.1655e-10,4.8977e-10,4.2716e-10,3.9782e-10,3.5555e-10,2.9719e-10,2.764e-10,2.4978e-10,2.1215e-10,1.7162e-10,1.4011e-10,1.3725e-10,1.0702e-10,9.0806e-11,7.8538e-11,5.6389e-11,4.8441e-11,4.5835e-11,3.7653e-11,3.7207e-11,3.4126e-11,3.2848e-11,1.9773e-11,1.7347e-11,1.6486e-11,1.306e-11,1.1405e-11,1.1172e-11,8.1305e-12,4.3974e-12,3.6583e-12,3.3267e-12,2.6648e-12,2.6143e-12,2.0352e-12,1.9801e-12,1.4317e-12,1.1823e-12,8.0388e-13,7.7623e-13,7.5113e-13,7.3746e-13,6.9445e-13,6.612e-13,6.417e-13,4.6776e-13,4.3774e-13,2.3266e-13,1.8803e-13,1.6323e-13,1.5432e-13,9.6725e-14,9.5936e-14,8.2185e-14,7.6442e-14,5.3065e-14,5.2454e-14,5.1037e-14,3.8845e-14,3.6013e-14,3.5058e-14,3.2298e-14,2.9049e-14,2.6274e-14,2.4937e-14,1.4897e-14,1.4628e-14,1.1153e-14,7.4084e-15,5.031e-15,2.9279e-15,2.9053e-15,2.3951e-15,1.8769e-15,1.3587e-15,1.3538e-15,1.2102e-15,7.1263e-16,6.2986e-16,6.2135e-16,3.3093e-16,2.8801e-16,2.6583e-16,2.0759e-16,1.6235e-16,1.0306e-16,9.5963e-17,6.7945e-17,3.1222e-17,3.0898e-17,2.8983e-17,2.5428e-17,2.2943e-17,2.0209e-17,1.7395e-17,4.2623e-18,2.9371e-18,1.6552e-18,1.0784e-18,1.0558e-18,1.0055e-18,5.2913e-19,4.5525e-19,4.4959e-19,2.4231e-19,8.4588e-20,8.1792e-20,5.9863e-20,5.6116e-20,2.7292e-20,2.2287e-20,1.4303e-20,1.1342e-20,8.7716e-21,8.3428e-21,6.1439e-21,5.8208e-21,5.6734e-21,2.8225e-21,2.2888e-21,2.0953e-21,1.572e-21,1.4357e-21,9.4666e-22,8.6069e-22,7.1047e-22,4.3996e-22,4.3797e-22,3.4763e-22,3.2153e-22,3.2149e-22,1.9285e-22,1.8975e-22,1.5361e-22,1.2286e-22,7.5369e-23,4.8442e-23,3.5236e-23,2.12e-23,1.3224e-23,7.1501e-24,6.973e-24,4.3356e-24,2.7407e-24,2.0898e-24,1.0082e-24,8.1346e-25,5.2558e-25,4.056e-25,2.3575e-25,2.2257e-25,1.9769e-25,1.5022e-25,8.4398e-26,4.6542e-26,3.3918e-26,2.4714e-26,2.0945e-26,2.0462e-26,1.5147e-26,1.0692e-26,3.669e-27,2.7559e-27,2.3535e-27,1.6598e-27,1.6558e-27,1.173e-27,1.1237e-27,8.8893e-28,7.3619e-28,3.8948e-28,3.5512e-28,2.1552e-28,1.352e-28,2.9165e-29,2.1823e-29,1.8967e-29,1.3124e-29,9.2819e-30,8.1354e-30,6.2498e-30,5.1699e-30,4.0845e-30,2.7651e-30,2.7593e-30,1.3645e-30,1.1311e-30,1.0877e-30,1.0652e-30,5.1869e-31,5.1025e-31,4.7445e-31,4.4914e-31,3.8967e-31,3.0786e-31,2.4915e-31,9.7088e-32,1.2813e-32,6.9794e-33,6.6137e-33,6.326e-33,5.4773e-33,5.0553e-33,2.3557e-33,1.4213e-33,9.8298e-34,7.9937e-34,5.1857e-34,3.5863e-34,3.3483e-34,1.9912e-34,1.4825e-34,1.0334e-34,5.7766e-35,2.6763e-35,2.5476e-35,1.9619e-35,1.6361e-35,1.5079e-35,6.2954e-36,4.953e-36,1.6563e-36,1.221e-36,7.1261e-37,5.3379e-37,4.8604e-37,2.9146e-37,2.7278e-37,2.3598e-37,1.7188e-37,9.3743e-38 1,0.58242,0.61232,0.61382,0.62284,0.62979,0.6389,0.65654,0.6981,0.72406,0.72801,0.74826,0.75153,0.76442,0.79498,0.80431,0.81071,0.83762,0.8421,0.84702,0.8631,0.86479,0.86576,0.87747,0.88419,0.88441,0.89686,0.89797,0.90338,0.90408,0.90476,0.93788,0.96346,0.96546,0.97161,0.97661,0.98017,0.98402,0.98799,0.99362,0.99597,0.99865,0.99999,1,0.99996,0.99984,0.99802,0.99801,0.98558,0.98421,0.98343,0.97715,0.97665,0.96139,0.95442,0.95136,0.94432,0.93962,0.93116,0.92844,0.90597,0.89082,0.83756,0.82163,0.81618,0.80631,0.77837,0.77251,0.76727,0.74226,0.71827,0.70927,0.70187,0.67478,0.63518,0.59318,0.56493,0.55902,0.50679,0.48901,0.48078,0.47715,0.4625,0.40401,0.40218,0.39234,0.37695,0.37396,0.3526,0.29717,0.29647,0.28183,0.27668,0.22209,0.20957,0.20867,0.19793,0.184,0.18373,0.18264,0.17462,0.17455,0.1675,0.16483,0.12997,0.11655,0.11612,0.10225,0.098769,0.09356,0.091106,0.089683,0.088129,0.087627,0.086299,0.08111,0.080523,0.079324,0.078351,0.071323,0.064003,0.055508,0.052561,0.046757,0.040923,0.038659,0.037533,0.026837,0.02579,0.025042,0.023616,0.021905,0.020511,0.019436,0.01925,0.019134,0.017869,0.014886,0.014685,0.013651,0.012175,0.011423,0.011305,0.0077806,0.0077492,0.0071849,0.0061875,0.00602,0.0054311,0.0052999,0.0044597,0.003979,0.0030573,0.0030379,0.0022313,0.002153,0.0021286,0.0017338,0.0017111,0.0015877,0.0014378,0.0013937,0.0013612,0.0012399,0.0012208,0.0012085,0.0011216,0.0010925,0.0010851,0.0010195,0.00099682,0.00087953,0.000713,0.00068661,0.00067974,0.00061803,0.00059409,0.00050537,0.00037905,0.00034638,0.00030005,0.00028454,0.00024535,0.00021147,0.00020891,0.00020695,0.00020672,0.0001978,0.00019706,0.00017151,0.00016086,0.00014252,0.00014175,0.00013717,0.00011096,0.00011027,9.9603e-05,8.8661e-05,7.1908e-05,6.9944e-05,6.4613e-05,6.3473e-05,6.0679e-05,5.6258e-05,5.0074e-05,4.9915e-05,3.8243e-05,2.8133e-05,2.7224e-05,2.625e-05,2.5953e-05,2.1522e-05,1.9165e-05,1.2887e-05,1.262e-05,1.2097e-05,1.1262e-05,8.6204e-06,6.5055e-06,4.7655e-06,4.3369e-06,4.0991e-06,3.5505e-06,2.6508e-06,2.329e-06,1.9675e-06,1.5155e-06,1.2077e-06,1.159e-06,7.4406e-07,7.0157e-07,6.8665e-07,6.1842e-07,5.9315e-07,4.2428e-07,3.6711e-07,3.5202e-07,3.5052e-07,3.2092e-07,2.8483e-07,2.6947e-07,2.629e-07,1.7005e-07,1.6996e-07,1.1426e-07,7.2186e-08,4.7002e-08,3.1526e-08,2.6493e-08,2.531e-08,2.2741e-08,2.0706e-08,1.6589e-08,1.6188e-08,1.0525e-08,9.4338e-09,7.5712e-09,5.7528e-09,4.8667e-09,4.7753e-09,4.166e-09,3.8007e-09,3.0315e-09,2.1616e-09,2.0938e-09,1.8031e-09,1.423e-09,1.1732e-09,1.1626e-09,5.938e-10,5.316e-10,5.0406e-10,4.3966e-10,4.0948e-10,3.6601e-10,3.0596e-10,2.8457e-10,2.5718e-10,2.1846e-10,1.7675e-10,1.4431e-10,1.4137e-10,1.1025e-10,9.3559e-11,8.0927e-11,5.8117e-11,4.993e-11,4.7245e-11,3.8817e-11,3.8357e-11,3.5183e-11,3.3866e-11,2.0392e-11,1.7892e-11,1.7005e-11,1.3473e-11,1.1766e-11,1.1526e-11,8.3897e-12,4.5393e-12,3.7768e-12,3.4347e-12,2.7517e-12,2.6995e-12,2.1019e-12,2.045e-12,1.4789e-12,1.2214e-12,8.3067e-13,8.0212e-13,7.7619e-13,7.6207e-13,7.1765e-13,6.8331e-13,6.6317e-13,4.835e-13,4.5249e-13,2.4058e-13,1.9446e-13,1.6882e-13,1.5962e-13,1.0007e-13,9.9255e-14,8.5036e-14,7.9097e-14,5.4919e-14,5.4287e-14,5.2821e-14,4.021e-14,3.728e-14,3.6291e-14,3.3436e-14,3.0074e-14,2.7203e-14,2.582e-14,1.5428e-14,1.515e-14,1.1552e-14,7.6756e-15,5.2136e-15,3.035e-15,3.0116e-15,2.483e-15,1.946e-15,1.409e-15,1.404e-15,1.2551e-15,7.3926e-16,6.5344e-16,6.4462e-16,3.4344e-16,2.9892e-16,2.759e-16,2.1548e-16,1.6855e-16,1.0702e-16,9.9652e-17,7.057e-17,3.2441e-17,3.2104e-17,3.0116e-17,2.6423e-17,2.3843e-17,2.1003e-17,1.808e-17,4.4331e-18,3.0554e-18,1.7223e-18,1.1223e-18,1.0988e-18,1.0466e-18,5.5089e-19,4.74e-19,4.6812e-19,2.5236e-19,8.8143e-20,8.5231e-20,6.2389e-20,5.8485e-20,2.8454e-20,2.3238e-20,1.4917e-20,1.1829e-20,9.1498e-21,8.7027e-21,6.4098e-21,6.073e-21,5.9192e-21,2.9457e-21,2.3889e-21,2.1871e-21,1.6411e-21,1.4989e-21,9.8848e-22,8.9875e-22,7.4195e-22,4.5955e-22,4.5747e-22,3.6315e-22,3.3589e-22,3.3585e-22,2.0151e-22,1.9827e-22,1.6053e-22,1.284e-22,7.8786e-23,5.0648e-23,3.6845e-23,2.2173e-23,1.3834e-23,7.4818e-24,7.2966e-24,4.5377e-24,2.869e-24,2.1879e-24,1.0558e-24,8.5199e-25,5.5057e-25,4.2493e-25,2.4704e-25,2.3324e-25,2.0717e-25,1.5744e-25,8.8478e-26,4.8804e-26,3.5571e-26,2.5921e-26,2.197e-26,2.1464e-26,1.589e-26,1.1218e-26,3.8512e-27,2.8931e-27,2.4708e-27,1.7428e-27,1.7386e-27,1.2318e-27,1.1801e-27,9.3361e-28,7.7324e-28,4.0919e-28,3.731e-28,2.2648e-28,1.421e-28,3.0672e-29,2.2953e-29,1.995e-29,1.3806e-29,9.7656e-30,8.5598e-30,6.5765e-30,5.4405e-30,4.2987e-30,2.9105e-30,2.9044e-30,1.4366e-30,1.191e-30,1.1453e-30,1.1216e-30,5.4631e-31,5.3742e-31,4.9973e-31,4.7309e-31,4.1046e-31,3.2431e-31,2.6249e-31,1.0232e-31,1.3513e-32,7.3626e-33,6.977e-33,6.6736e-33,5.7786e-33,5.3335e-33,2.486e-33,1.5002e-33,1.0377e-33,8.4392e-34,5.4756e-34,3.7873e-34,3.536e-34,2.1032e-34,1.5661e-34,1.0918e-34,6.1042e-35,2.8288e-35,2.6929e-35,2.074e-35,1.7297e-35,1.5941e-35,6.6575e-36,5.2384e-36,1.7524e-36,1.2919e-36,7.5416e-37,5.6497e-37,5.1445e-37,3.0855e-37,2.8879e-37,2.4984e-37,1.8199e-37,9.9277e-38 1,0.57675,0.60665,0.60815,0.61717,0.62412,0.63324,0.6509,0.69256,0.71861,0.72258,0.74291,0.7462,0.75916,0.78992,0.79932,0.80578,0.83294,0.83746,0.84243,0.8587,0.86041,0.86138,0.87325,0.88006,0.88028,0.89292,0.89404,0.89954,0.90025,0.90095,0.93471,0.96096,0.96303,0.96939,0.97458,0.97829,0.98233,0.98651,0.99252,0.99509,0.99812,0.99991,0.99996,1,0.99996,0.99856,0.99856,0.98711,0.98581,0.98507,0.97907,0.97859,0.96388,0.95711,0.95413,0.94727,0.94269,0.93442,0.93175,0.9097,0.8948,0.8422,0.82642,0.82103,0.81124,0.78351,0.77768,0.77248,0.7476,0.72372,0.71476,0.70739,0.68037,0.64084,0.59885,0.57058,0.56466,0.51232,0.49449,0.48624,0.48258,0.46788,0.40911,0.40727,0.39737,0.38189,0.37888,0.35737,0.30152,0.30081,0.28604,0.28085,0.22571,0.21305,0.21214,0.20128,0.18719,0.18692,0.18581,0.17769,0.17762,0.17048,0.16778,0.13244,0.11883,0.11839,0.10431,0.10077,0.09548,0.092987,0.09154,0.089961,0.089451,0.0881,0.082825,0.082227,0.081008,0.080019,0.072869,0.065419,0.056768,0.053766,0.04785,0.0419,0.03959,0.038441,0.02752,0.026449,0.025685,0.024227,0.022477,0.021052,0.019952,0.019762,0.019644,0.018348,0.015295,0.015089,0.01403,0.012518,0.011747,0.011625,0.0080104,0.0079781,0.0073989,0.0063746,0.0062025,0.0055974,0.0054626,0.0045988,0.0041045,0.0031561,0.003136,0.0023053,0.0022247,0.0021995,0.0017925,0.0017691,0.0016419,0.0014872,0.0014418,0.0014082,0.001283,0.0012633,0.0012506,0.0011609,0.0011309,0.0011232,0.0010555,0.001032,0.0009109,0.00073881,0.00071154,0.00070443,0.00064063,0.00061587,0.0005241,0.00039336,0.00035954,0.00031156,0.00029548,0.00025487,0.00021976,0.0002171,0.00021506,0.00021483,0.00020558,0.00020482,0.00017831,0.00016726,0.00014823,0.00014743,0.00014268,0.00011547,0.00011476,0.00010368,9.2313e-05,7.4903e-05,7.2862e-05,6.7319e-05,6.6135e-05,6.3229e-05,5.8632e-05,5.22e-05,5.2035e-05,3.9889e-05,2.9362e-05,2.8415e-05,2.7401e-05,2.7092e-05,2.2474e-05,2.0018e-05,1.3472e-05,1.3193e-05,1.2647e-05,1.1776e-05,9.0183e-06,6.8095e-06,4.9912e-06,4.543e-06,4.2944e-06,3.7207e-06,2.7793e-06,2.4425e-06,2.0641e-06,1.5907e-06,1.268e-06,1.2171e-06,7.8193e-07,7.3735e-07,7.217e-07,6.5011e-07,6.2358e-07,4.4631e-07,3.8626e-07,3.7042e-07,3.6884e-07,3.3775e-07,2.9983e-07,2.8368e-07,2.7677e-07,1.7916e-07,1.7906e-07,1.2045e-07,7.6161e-08,4.9624e-08,3.3306e-08,2.7997e-08,2.6749e-08,2.4037e-08,2.189e-08,1.7544e-08,1.712e-08,1.1138e-08,9.9853e-09,8.0165e-09,6.0938e-09,5.1564e-09,5.0598e-09,4.415e-09,4.0285e-09,3.2143e-09,2.293e-09,2.2212e-09,1.9132e-09,1.5105e-09,1.2457e-09,1.2345e-09,6.311e-10,5.6508e-10,5.3585e-10,4.6748e-10,4.3543e-10,3.8927e-10,3.2549e-10,3.0276e-10,2.7367e-10,2.3251e-10,1.8818e-10,1.5368e-10,1.5056e-10,1.1746e-10,9.9695e-11,8.6251e-11,6.1968e-11,5.325e-11,5.0391e-11,4.1412e-11,4.0922e-11,3.754e-11,3.6136e-11,2.1774e-11,1.9108e-11,1.8162e-11,1.4394e-11,1.2572e-11,1.2317e-11,8.9689e-12,4.8565e-12,4.0418e-12,3.676e-12,2.9459e-12,2.8901e-12,2.251e-12,2.1902e-12,1.5845e-12,1.309e-12,8.9065e-13,8.6007e-13,8.3231e-13,8.1719e-13,7.6961e-13,7.3283e-13,7.1125e-13,5.1876e-13,4.8553e-13,2.5835e-13,2.0888e-13,1.8137e-13,1.7149e-13,1.0758e-13,1.067e-13,9.1431e-14,8.5053e-14,5.908e-14,5.8401e-14,5.6827e-14,4.3273e-14,4.0123e-14,3.906e-14,3.5991e-14,3.2376e-14,2.9289e-14,2.7801e-14,1.6622e-14,1.6322e-14,1.2451e-14,8.2764e-15,5.6242e-15,3.276e-15,3.2509e-15,2.6808e-15,2.1017e-15,1.5223e-15,1.5168e-15,1.3561e-15,7.9925e-16,7.0656e-16,6.9704e-16,3.7162e-16,3.235e-16,2.9862e-16,2.3329e-16,1.8253e-16,1.1595e-16,1.0798e-16,7.6495e-17,3.5194e-17,3.4829e-17,3.2674e-17,2.8672e-17,2.5875e-17,2.2796e-17,1.9626e-17,4.8194e-18,3.323e-18,1.8743e-18,1.2219e-18,1.1964e-18,1.1395e-18,6.0019e-19,5.165e-19,5.101e-19,2.7517e-19,9.621e-20,9.3034e-20,6.8122e-20,6.3864e-20,3.1093e-20,2.5398e-20,1.6311e-20,1.2938e-20,1.001e-20,9.5209e-21,7.0145e-21,6.6462e-21,6.4781e-21,3.226e-21,2.6168e-21,2.3959e-21,1.7983e-21,1.6426e-21,1.0837e-21,9.8539e-22,8.1363e-22,5.0417e-22,5.0189e-22,3.985e-22,3.6861e-22,3.6857e-22,2.2125e-22,2.177e-22,1.7629e-22,1.4104e-22,8.6578e-23,5.5681e-23,4.0518e-23,2.4395e-23,1.5227e-23,8.2396e-24,8.0359e-24,4.9996e-24,3.1623e-24,2.4121e-24,1.1648e-24,9.4011e-25,6.0775e-25,4.6917e-25,2.7289e-25,2.5766e-25,2.2888e-25,1.7399e-25,9.7824e-26,5.3987e-26,3.9359e-26,2.869e-26,2.432e-26,2.376e-26,1.7595e-26,1.2425e-26,4.2695e-27,3.2081e-27,2.7402e-27,1.9333e-27,1.9287e-27,1.3669e-27,1.3095e-27,1.0362e-27,8.5839e-28,4.5448e-28,4.1444e-28,2.5168e-28,1.5797e-28,3.414e-29,2.5554e-29,2.2214e-29,1.5377e-29,1.088e-29,9.5376e-30,7.3293e-30,6.0642e-30,4.7924e-30,3.2458e-30,3.239e-30,1.603e-30,1.3291e-30,1.2782e-30,1.2518e-30,6.1005e-31,6.0014e-31,5.5808e-31,5.2835e-31,4.5846e-31,3.6231e-31,2.9329e-31,1.1441e-31,1.5134e-32,8.2495e-33,7.8178e-33,7.478e-33,6.4759e-33,5.9774e-33,2.7877e-33,1.6829e-33,1.1644e-33,9.4714e-34,6.1473e-34,4.2531e-34,3.971e-34,2.3629e-34,1.7599e-34,1.2272e-34,6.8643e-35,3.1829e-35,3.03e-35,2.3341e-35,1.9469e-35,1.7944e-35,7.4988e-36,5.9014e-36,1.9758e-36,1.4569e-36,8.5081e-37,6.3751e-37,5.8054e-37,3.4832e-37,3.2602e-37,2.8208e-37,2.0552e-37,1.1216e-37 1,0.57153,0.60141,0.6029,0.61193,0.61888,0.62801,0.64569,0.68742,0.71355,0.71753,0.73795,0.74125,0.75428,0.78522,0.79468,0.80119,0.82857,0.83313,0.83814,0.85458,0.85631,0.8573,0.8693,0.87619,0.87642,0.88922,0.89036,0.89594,0.89666,0.89737,0.93171,0.95859,0.96071,0.96726,0.97263,0.97648,0.98069,0.98507,0.99143,0.9942,0.99755,0.99975,0.99984,0.99996,1,0.99899,0.99899,0.98845,0.98722,0.98651,0.98078,0.98032,0.9661,0.95952,0.95662,0.94993,0.94545,0.93736,0.93475,0.91309,0.89842,0.84645,0.83081,0.82546,0.81575,0.78822,0.78243,0.77726,0.75252,0.72874,0.71981,0.71246,0.68553,0.64606,0.60409,0.5758,0.56988,0.51745,0.49957,0.49129,0.48763,0.47287,0.41385,0.412,0.40205,0.38648,0.38346,0.36182,0.30557,0.30486,0.28997,0.28473,0.22909,0.21631,0.21539,0.20441,0.19017,0.18989,0.18877,0.18056,0.18049,0.17327,0.17053,0.13475,0.12096,0.12052,0.10624,0.10265,0.097282,0.094751,0.093283,0.091679,0.091162,0.089791,0.084434,0.083828,0.08259,0.081585,0.074322,0.06675,0.057953,0.054899,0.048878,0.042821,0.040468,0.039297,0.028164,0.027072,0.026292,0.024804,0.023018,0.021562,0.02044,0.020246,0.020125,0.018801,0.015681,0.015471,0.014388,0.012841,0.012053,0.011929,0.008228,0.008195,0.0076016,0.0065519,0.0063755,0.0057551,0.0056169,0.0047309,0.0042236,0.0032498,0.0032293,0.0023757,0.0022928,0.0022669,0.0018484,0.0018243,0.0016934,0.0015343,0.0014875,0.001453,0.0013241,0.0013038,0.0012907,0.0011983,0.0011674,0.0011595,0.0010897,0.0010656,0.0009408,0.00076343,0.0007353,0.00072798,0.00066218,0.00063666,0.00054198,0.00040704,0.00037211,0.00032255,0.00030595,0.00026398,0.00022768,0.00022494,0.00022283,0.00022259,0.00021303,0.00021223,0.00018482,0.00017339,0.0001537,0.00015288,0.00014796,0.0001198,0.00011906,0.00010758,9.5812e-05,7.7775e-05,7.566e-05,6.9915e-05,6.8687e-05,6.5676e-05,6.0909e-05,5.424e-05,5.4068e-05,4.1469e-05,3.0544e-05,2.956e-05,2.8507e-05,2.8186e-05,2.339e-05,2.0838e-05,1.4034e-05,1.3744e-05,1.3177e-05,1.227e-05,9.4015e-06,7.1024e-06,5.2087e-06,4.7418e-06,4.4827e-06,3.8848e-06,2.9034e-06,2.5521e-06,2.1573e-06,1.6632e-06,1.3264e-06,1.2732e-06,8.1856e-07,7.7197e-07,7.5561e-07,6.8077e-07,6.5304e-07,4.6764e-07,4.0482e-07,3.8824e-07,3.8659e-07,3.5405e-07,3.1435e-07,2.9746e-07,2.9022e-07,1.8799e-07,1.8789e-07,1.2647e-07,8.002e-08,5.2172e-08,3.5037e-08,2.946e-08,2.8148e-08,2.5299e-08,2.3041e-08,1.8473e-08,1.8027e-08,1.1735e-08,1.0523e-08,8.4505e-09,6.4261e-09,5.4389e-09,5.3371e-09,4.6579e-09,4.2507e-09,3.3926e-09,2.4214e-09,2.3456e-09,2.0208e-09,1.596e-09,1.3165e-09,1.3047e-09,6.6758e-10,5.9784e-10,5.6695e-10,4.947e-10,4.6083e-10,4.1203e-10,3.4461e-10,3.2058e-10,2.898e-10,2.4628e-10,1.9938e-10,1.6287e-10,1.5956e-10,1.2452e-10,1.0571e-10,9.1473e-11,6.5748e-11,5.6509e-11,5.3478e-11,4.396e-11,4.344e-11,3.9855e-11,3.8366e-11,2.3133e-11,2.0303e-11,1.9299e-11,1.53e-11,1.3366e-11,1.3094e-11,9.5387e-12,5.1689e-12,4.3026e-12,3.9137e-12,3.1372e-12,3.0779e-12,2.398e-12,2.3332e-12,1.6886e-12,1.3953e-12,9.4983e-13,9.1725e-13,8.8768e-13,8.7157e-13,8.2089e-13,7.817e-13,7.5871e-13,5.5358e-13,5.1815e-13,2.7591e-13,2.2313e-13,1.9377e-13,1.8323e-13,1.15e-13,1.1406e-13,9.7759e-14,9.0947e-14,6.32e-14,6.2474e-14,6.0792e-14,4.6306e-14,4.2939e-14,4.1803e-14,3.8522e-14,3.4657e-14,3.1355e-14,2.9764e-14,1.7806e-14,1.7485e-14,1.3341e-14,8.8724e-15,6.0317e-15,3.5155e-15,3.4885e-15,2.8774e-15,2.2563e-15,1.6348e-15,1.629e-15,1.4566e-15,8.5893e-16,7.5942e-16,7.4919e-16,3.9969e-16,3.4798e-16,3.2124e-16,2.5103e-16,1.9645e-16,1.2486e-16,1.1628e-16,8.2403e-17,3.7942e-17,3.7549e-17,3.5228e-17,3.0917e-17,2.7903e-17,2.4586e-17,2.1171e-17,5.2058e-18,3.5907e-18,2.0264e-18,1.3216e-18,1.294e-18,1.2326e-18,6.496e-19,5.5911e-19,5.5218e-19,2.9804e-19,1.0431e-19,1.0087e-19,7.388e-20,6.9266e-20,3.3745e-20,2.7569e-20,1.7712e-20,1.4052e-20,1.0875e-20,1.0344e-20,7.6231e-21,7.2232e-21,7.0406e-21,3.5084e-21,2.8463e-21,2.6063e-21,1.9567e-21,1.7874e-21,1.1796e-21,1.0728e-21,8.8591e-22,5.4919e-22,5.4671e-22,4.3418e-22,4.0164e-22,4.0159e-22,2.4118e-22,2.3731e-22,1.9221e-22,1.538e-22,9.4453e-23,6.0768e-23,4.4232e-23,2.6642e-23,1.6636e-23,9.007e-24,8.7845e-24,5.4675e-24,3.4596e-24,2.6395e-24,1.2754e-24,1.0295e-24,6.6579e-25,5.1408e-25,2.9914e-25,2.8246e-25,2.5094e-25,1.908e-25,1.0732e-25,5.9259e-26,4.3213e-26,3.1507e-26,2.6711e-26,2.6097e-26,1.933e-26,1.3654e-26,4.6958e-27,3.5293e-27,3.0148e-27,2.1277e-27,2.1226e-27,1.5048e-27,1.4416e-27,1.141e-27,9.4528e-28,5.0074e-28,4.5665e-28,2.7742e-28,1.7418e-28,3.7689e-29,2.8217e-29,2.4531e-29,1.6986e-29,1.2021e-29,1.0539e-29,8.1005e-30,6.7033e-30,5.2983e-30,3.5895e-30,3.582e-30,1.7737e-30,1.4709e-30,1.4145e-30,1.3853e-30,6.7549e-31,6.6452e-31,6.1798e-31,5.8508e-31,5.0774e-31,4.0132e-31,3.2492e-31,1.2684e-31,1.6802e-32,9.1627e-33,8.6835e-33,8.3064e-33,7.194e-33,6.6406e-33,3.0987e-33,1.8713e-33,1.2951e-33,1.0536e-33,6.8403e-34,4.7338e-34,4.4201e-34,2.631e-34,1.96e-34,1.3671e-34,7.6497e-35,3.5489e-35,3.3787e-35,2.6031e-35,2.1715e-35,2.0016e-35,8.3696e-36,6.5877e-36,2.2072e-36,1.6279e-36,9.51e-37,7.1272e-37,6.4907e-37,3.8956e-37,3.6465e-37,3.1553e-37,2.2994e-37,1.2554e-37 1,0.54442,0.57415,0.57565,0.58466,0.5916,0.60073,0.61846,0.66049,0.68697,0.69101,0.7118,0.71517,0.72849,0.76027,0.77004,0.77676,0.80521,0.80997,0.81521,0.83245,0.83427,0.83532,0.84799,0.8553,0.85553,0.86917,0.87039,0.87635,0.87713,0.87789,0.91515,0.94517,0.94759,0.95514,0.96141,0.96597,0.97103,0.97642,0.98461,0.98838,0.99341,0.99773,0.99802,0.99856,0.99899,1,1,0.99424,0.99336,0.99284,0.98851,0.98815,0.9766,0.97103,0.96854,0.96275,0.95883,0.95169,0.94936,0.92983,0.91639,0.86784,0.85302,0.84793,0.83866,0.81224,0.80666,0.80167,0.7777,0.75453,0.7458,0.7386,0.71213,0.67312,0.63136,0.60306,0.59712,0.54432,0.52623,0.51783,0.51412,0.49913,0.43889,0.437,0.42679,0.4108,0.40769,0.3854,0.32715,0.32642,0.31092,0.30547,0.24724,0.23379,0.23282,0.22125,0.2062,0.20591,0.20472,0.19603,0.19596,0.1883,0.1854,0.14731,0.13255,0.13207,0.11674,0.11288,0.10709,0.10437,0.10278,0.10105,0.10049,0.099011,0.093221,0.092565,0.091225,0.090138,0.082266,0.07404,0.064456,0.061121,0.054535,0.047891,0.045305,0.044017,0.031729,0.030518,0.029654,0.028003,0.026018,0.024399,0.023149,0.022932,0.022798,0.021322,0.017834,0.017599,0.016385,0.01465,0.013763,0.013624,0.009449,0.0094116,0.0087396,0.0075488,0.0073484,0.0066429,0.0064856,0.0054756,0.004896,0.0037805,0.0037569,0.002775,0.0026794,0.0026495,0.002166,0.0021382,0.0019866,0.0018022,0.0017479,0.0017078,0.0015581,0.0015345,0.0015193,0.0014118,0.0013759,0.0013666,0.0012854,0.0012573,0.0011117,0.00090437,0.00087144,0.00086287,0.00078576,0.00075581,0.00064463,0.00048573,0.0004445,0.00038592,0.00036627,0.00031655,0.00027347,0.0002702,0.0002677,0.00026741,0.00025605,0.00025511,0.00022249,0.00020888,0.0001854,0.00018441,0.00017854,0.00014488,0.000144,0.00013026,0.00011615,9.449e-05,9.1946e-05,8.5034e-05,8.3555e-05,7.9929e-05,7.4185e-05,6.614e-05,6.5933e-05,5.0705e-05,3.7459e-05,3.6265e-05,3.4985e-05,3.4595e-05,2.8762e-05,2.5652e-05,1.7342e-05,1.6987e-05,1.6292e-05,1.5182e-05,1.1661e-05,8.8326e-06,6.4961e-06,5.9188e-06,5.5983e-06,4.8579e-06,3.6401e-06,3.2034e-06,2.7118e-06,2.0955e-06,1.6744e-06,1.6078e-06,1.0376e-06,9.7906e-07,9.5848e-07,8.6431e-07,8.2939e-07,5.9559e-07,5.162e-07,4.9523e-07,4.9315e-07,4.5196e-07,4.0168e-07,3.8026e-07,3.7109e-07,2.4122e-07,2.4109e-07,1.628e-07,1.0338e-07,6.7629e-08,4.5558e-08,3.8356e-08,3.6661e-08,3.2977e-08,3.0056e-08,2.4136e-08,2.3559e-08,1.5386e-08,1.3807e-08,1.1106e-08,8.4626e-09,7.1713e-09,7.038e-09,6.1484e-09,5.6146e-09,4.4885e-09,3.2113e-09,3.1115e-09,2.6835e-09,2.1229e-09,1.7535e-09,1.7379e-09,8.9342e-10,8.0069e-10,7.596e-10,6.6343e-10,6.1831e-10,5.5326e-10,4.6328e-10,4.3119e-10,3.9007e-10,3.3185e-10,2.6903e-10,2.2007e-10,2.1563e-10,1.6855e-10,1.4325e-10,1.2407e-10,8.9375e-11,7.6892e-11,7.2794e-11,5.9915e-11,5.9211e-11,5.4354e-11,5.2338e-11,3.166e-11,2.7811e-11,2.6443e-11,2.0995e-11,1.8357e-11,1.7986e-11,1.3129e-11,7.1417e-12,5.9516e-12,5.4169e-12,4.348e-12,4.2663e-12,3.329e-12,3.2396e-12,2.3493e-12,1.9435e-12,1.3261e-12,1.2809e-12,1.2398e-12,1.2174e-12,1.1471e-12,1.0926e-12,1.0607e-12,7.7538e-13,7.2604e-13,3.8806e-13,3.1422e-13,2.7311e-13,2.5833e-13,1.6258e-13,1.6126e-13,1.3833e-13,1.2875e-13,8.9657e-14,8.8634e-14,8.626e-14,6.5809e-14,6.1051e-14,5.9444e-14,5.4804e-14,4.9335e-14,4.4661e-14,4.2407e-14,2.5443e-14,2.4988e-14,1.9095e-14,1.2728e-14,8.6714e-15,5.0691e-15,5.0304e-15,4.1535e-15,3.2614e-15,2.3672e-15,2.3588e-15,2.1105e-15,1.2481e-15,1.1042e-15,1.0894e-15,5.8316e-16,5.0809e-16,4.6925e-16,3.6717e-16,2.8772e-16,1.833e-16,1.7077e-16,1.2124e-16,5.6049e-17,5.5471e-17,5.2059e-17,4.5719e-17,4.1285e-17,3.6401e-17,3.1368e-17,7.7686e-18,5.3683e-18,3.0383e-18,1.9858e-18,1.9445e-18,1.8526e-18,9.7948e-19,8.4365e-19,8.3325e-19,4.5111e-19,1.5868e-19,1.5347e-19,1.1258e-19,1.0558e-19,5.1613e-20,4.2208e-20,2.7174e-20,2.1582e-20,1.6722e-20,1.591e-20,1.1742e-20,1.1129e-20,1.0849e-20,5.4234e-21,4.4042e-21,4.0345e-21,3.0329e-21,2.7717e-21,1.8327e-21,1.6674e-21,1.3782e-21,8.5622e-22,8.5238e-22,6.7763e-22,6.2707e-22,6.27e-22,3.7741e-22,3.7139e-22,3.0109e-22,2.4117e-22,1.4843e-22,9.5684e-23,6.9745e-23,4.2103e-23,2.6345e-23,1.4302e-23,1.395e-23,8.7006e-24,5.5163e-24,4.2136e-24,2.0423e-24,1.6501e-24,1.0691e-24,8.2643e-25,4.82e-25,4.5524e-25,4.0464e-25,3.0801e-25,1.7368e-25,9.6135e-26,7.0197e-26,5.1249e-26,4.3477e-26,4.2482e-26,3.1506e-26,2.2286e-26,7.6981e-27,5.7924e-27,4.9513e-27,3.4993e-27,3.491e-27,2.4783e-27,2.3747e-27,1.8812e-27,1.5598e-27,8.2836e-28,7.5571e-28,4.6001e-28,2.8937e-28,6.2992e-29,4.7214e-29,4.1069e-29,2.8478e-29,2.0182e-29,1.7703e-29,1.362e-29,1.1279e-29,8.9235e-30,6.0546e-30,6.042e-30,3e-30,2.4895e-30,2.3944e-30,2.3452e-30,1.1467e-30,1.1282e-30,1.0494e-30,9.9378e-31,8.6288e-31,6.8263e-31,5.5312e-31,2.1669e-31,2.8922e-32,1.5808e-32,1.4984e-32,1.4336e-32,1.2423e-32,1.147e-32,5.3675e-33,3.2475e-33,2.2506e-33,1.8322e-33,1.1914e-33,8.2562e-34,7.711e-34,4.5985e-34,3.4293e-34,2.3951e-34,1.343e-34,6.2478e-35,5.949e-35,4.5878e-35,3.8296e-35,3.5309e-35,1.481e-35,1.1667e-35,3.924e-36,2.8973e-36,1.6957e-36,1.2721e-36,1.1589e-36,6.968e-37,6.5238e-37,5.6479e-37,4.1204e-37,2.2543e-37 1,0.54438,0.57411,0.57561,0.58462,0.59156,0.60069,0.61842,0.66045,0.68693,0.69097,0.71176,0.71513,0.72845,0.76023,0.77,0.77672,0.80517,0.80993,0.81518,0.83242,0.83424,0.83528,0.84795,0.85526,0.8555,0.86914,0.87035,0.87632,0.8771,0.87786,0.91512,0.94515,0.94757,0.95512,0.96139,0.96595,0.97102,0.97641,0.98459,0.98837,0.9934,0.99773,0.99801,0.99856,0.99899,1,1,0.99425,0.99337,0.99285,0.98852,0.98816,0.97661,0.97104,0.96856,0.96277,0.95885,0.95171,0.94938,0.92986,0.91642,0.86788,0.85305,0.84796,0.83869,0.81228,0.8067,0.8017,0.77773,0.75456,0.74584,0.73864,0.71217,0.67317,0.6314,0.6031,0.59716,0.54436,0.52627,0.51787,0.51416,0.49917,0.43893,0.43703,0.42683,0.41083,0.40773,0.38543,0.32719,0.32645,0.31096,0.3055,0.24726,0.23381,0.23284,0.22127,0.20622,0.20593,0.20475,0.19606,0.19598,0.18833,0.18542,0.14732,0.13257,0.13209,0.11676,0.11289,0.10711,0.10438,0.1028,0.10107,0.10051,0.099026,0.093235,0.092579,0.091239,0.090152,0.082278,0.074052,0.064466,0.061131,0.054544,0.047899,0.045313,0.044025,0.031734,0.030524,0.029659,0.028008,0.026023,0.024404,0.023153,0.022937,0.022802,0.021326,0.017838,0.017602,0.016388,0.014653,0.013766,0.013626,0.009451,0.0094136,0.0087414,0.0075504,0.00735,0.0066444,0.006487,0.0054768,0.0048971,0.0037814,0.0037578,0.0027757,0.00268,0.0026502,0.0021665,0.0021387,0.0019871,0.0018026,0.0017483,0.0017082,0.0015585,0.0015349,0.0015197,0.0014122,0.0013762,0.001367,0.0012857,0.0012576,0.001112,0.0009046,0.00087167,0.00086309,0.00078596,0.00075601,0.0006448,0.00048586,0.00044462,0.00038603,0.00036637,0.00031664,0.00027354,0.00027028,0.00026778,0.00026749,0.00025612,0.00025518,0.00022255,0.00020894,0.00018545,0.00018447,0.00017859,0.00014493,0.00014404,0.0001303,0.00011618,9.4518e-05,9.1973e-05,8.5059e-05,8.358e-05,7.9953e-05,7.4208e-05,6.616e-05,6.5953e-05,5.072e-05,3.7471e-05,3.6276e-05,3.4996e-05,3.4606e-05,2.8771e-05,2.566e-05,1.7347e-05,1.6992e-05,1.6297e-05,1.5187e-05,1.1665e-05,8.8356e-06,6.4983e-06,5.9208e-06,5.6002e-06,4.8595e-06,3.6413e-06,3.2045e-06,2.7128e-06,2.0963e-06,1.675e-06,1.6084e-06,1.038e-06,9.7941e-07,9.5882e-07,8.6462e-07,8.2969e-07,5.9581e-07,5.1639e-07,4.9541e-07,4.9333e-07,4.5213e-07,4.0183e-07,3.8041e-07,3.7123e-07,2.4131e-07,2.4118e-07,1.6286e-07,1.0342e-07,6.7656e-08,4.5576e-08,3.8372e-08,3.6676e-08,3.299e-08,3.0068e-08,2.4146e-08,2.3568e-08,1.5392e-08,1.3813e-08,1.1111e-08,8.4661e-09,7.1743e-09,7.041e-09,6.151e-09,5.617e-09,4.4904e-09,3.2127e-09,3.1129e-09,2.6847e-09,2.1238e-09,1.7543e-09,1.7386e-09,8.9381e-10,8.0105e-10,7.5994e-10,6.6372e-10,6.1858e-10,5.535e-10,4.6349e-10,4.3138e-10,3.9024e-10,3.32e-10,2.6915e-10,2.2017e-10,2.1573e-10,1.6863e-10,1.4332e-10,1.2413e-10,8.9417e-11,7.6928e-11,7.2829e-11,5.9943e-11,5.9239e-11,5.438e-11,5.2362e-11,3.1675e-11,2.7824e-11,2.6456e-11,2.1005e-11,1.8366e-11,1.7995e-11,1.3135e-11,7.1452e-12,5.9546e-12,5.4195e-12,4.3502e-12,4.2685e-12,3.3307e-12,3.2413e-12,2.3505e-12,1.9445e-12,1.3267e-12,1.2815e-12,1.2404e-12,1.2181e-12,1.1476e-12,1.0932e-12,1.0612e-12,7.7577e-13,7.2641e-13,3.8826e-13,3.1438e-13,2.7325e-13,2.5847e-13,1.6266e-13,1.6135e-13,1.3841e-13,1.2882e-13,8.9705e-14,8.8681e-14,8.6306e-14,6.5844e-14,6.1084e-14,5.9476e-14,5.4834e-14,4.9362e-14,4.4685e-14,4.243e-14,2.5457e-14,2.5001e-14,1.9106e-14,1.2735e-14,8.6762e-15,5.0719e-15,5.0332e-15,4.1559e-15,3.2632e-15,2.3686e-15,2.3601e-15,2.1116e-15,1.2488e-15,1.1048e-15,1.09e-15,5.835e-16,5.0838e-16,4.6952e-16,3.6738e-16,2.8788e-16,1.8341e-16,1.7087e-16,1.2131e-16,5.6082e-17,5.5504e-17,5.209e-17,4.5746e-17,4.131e-17,3.6422e-17,3.1387e-17,7.7733e-18,5.3716e-18,3.0402e-18,1.987e-18,1.9457e-18,1.8538e-18,9.8009e-19,8.4418e-19,8.3377e-19,4.5139e-19,1.5879e-19,1.5357e-19,1.1265e-19,1.0565e-19,5.1647e-20,4.2236e-20,2.7192e-20,2.1597e-20,1.6733e-20,1.592e-20,1.1749e-20,1.1136e-20,1.0856e-20,5.427e-21,4.4072e-21,4.0371e-21,3.0349e-21,2.7735e-21,1.834e-21,1.6685e-21,1.3791e-21,8.568e-22,8.5295e-22,6.7809e-22,6.2749e-22,6.2742e-22,3.7767e-22,3.7165e-22,3.013e-22,2.4133e-22,1.4853e-22,9.575e-23,6.9793e-23,4.2133e-23,2.6364e-23,1.4312e-23,1.396e-23,8.7068e-24,5.5202e-24,4.2166e-24,2.0438e-24,1.6513e-24,1.0699e-24,8.2703e-25,4.8235e-25,4.5557e-25,4.0493e-25,3.0824e-25,1.7381e-25,9.6205e-26,7.0249e-26,5.1287e-26,4.351e-26,4.2513e-26,3.1529e-26,2.2303e-26,7.7039e-27,5.7968e-27,4.9551e-27,3.502e-27,3.4936e-27,2.4802e-27,2.3765e-27,1.8827e-27,1.561e-27,8.29e-28,7.5629e-28,4.6036e-28,2.8959e-28,6.3041e-29,4.7251e-29,4.1102e-29,2.8501e-29,2.0198e-29,1.7717e-29,1.3631e-29,1.1288e-29,8.9306e-30,6.0594e-30,6.0468e-30,3.0024e-30,2.4915e-30,2.3963e-30,2.3471e-30,1.1476e-30,1.1291e-30,1.0503e-30,9.9458e-31,8.6357e-31,6.8318e-31,5.5356e-31,2.1687e-31,2.8946e-32,1.5821e-32,1.4997e-32,1.4348e-32,1.2433e-32,1.148e-32,5.372e-33,3.2502e-33,2.2524e-33,1.8338e-33,1.1924e-33,8.2632e-34,7.7175e-34,4.6025e-34,3.4323e-34,2.3972e-34,1.3442e-34,6.2531e-35,5.9541e-35,4.5917e-35,3.8329e-35,3.534e-35,1.4823e-35,1.1677e-35,3.9275e-36,2.8998e-36,1.6972e-36,1.2733e-36,1.1599e-36,6.9741e-37,6.5296e-37,5.6529e-37,4.1241e-37,2.2563e-37 1,0.4808,0.50975,0.51122,0.52005,0.52688,0.53587,0.55342,0.59547,0.62229,0.62641,0.6477,0.65117,0.66492,0.69809,0.70838,0.7155,0.7459,0.75104,0.75671,0.77552,0.77751,0.77866,0.79265,0.80079,0.80105,0.81637,0.81774,0.82451,0.8254,0.82626,0.86963,0.90642,0.9095,0.91922,0.92749,0.93363,0.94061,0.94828,0.96058,0.96669,0.97556,0.98483,0.98558,0.98711,0.98845,0.99424,0.99425,1,0.99997,0.99992,0.99901,0.9989,0.99395,0.99092,0.98949,0.98597,0.98348,0.97875,0.97717,0.96316,0.95296,0.91365,0.90108,0.89672,0.88871,0.86551,0.86055,0.85608,0.83444,0.81319,0.80511,0.79842,0.77358,0.73639,0.69586,0.66801,0.66213,0.60928,0.59094,0.5824,0.57861,0.56327,0.50089,0.4989,0.48821,0.47138,0.46809,0.44447,0.38195,0.38115,0.36432,0.35836,0.29418,0.27917,0.27809,0.26511,0.24815,0.24782,0.24648,0.23663,0.23654,0.22784,0.22453,0.18074,0.16356,0.163,0.14502,0.14047,0.13363,0.13039,0.12851,0.12646,0.12579,0.12403,0.11713,0.11635,0.11474,0.11344,0.104,0.094068,0.08242,0.078346,0.070263,0.062057,0.058848,0.057246,0.041835,0.040303,0.039207,0.03711,0.034581,0.032511,0.030909,0.030632,0.030459,0.028561,0.024054,0.023748,0.02217,0.019904,0.018743,0.01856,0.013043,0.012993,0.012097,0.010502,0.010232,0.0092818,0.0090693,0.0077006,0.0069111,0.0053816,0.0053491,0.0039892,0.003856,0.0038143,0.0031377,0.0030986,0.0028855,0.0026253,0.0025486,0.0024919,0.0022797,0.0022462,0.0022246,0.0020718,0.0020206,0.0020074,0.0018915,0.0018513,0.0016429,0.0013445,0.0012969,0.0012845,0.0011728,0.0011294,0.00096757,0.00073482,0.00067409,0.00058751,0.00055838,0.00048448,0.00042017,0.00041529,0.00041155,0.00041112,0.0003941,0.00039269,0.00034372,0.00032322,0.00028778,0.00028629,0.00027741,0.00022632,0.00022498,0.00020404,0.00018246,0.0001492,0.00014529,0.00013463,0.00013234,0.00012674,0.00011785,0.00010536,0.00010504,8.1298e-05,6.0499e-05,5.8615e-05,5.6594e-05,5.5979e-05,4.6742e-05,4.1801e-05,2.8516e-05,2.7946e-05,2.6829e-05,2.5041e-05,1.935e-05,1.4747e-05,1.092e-05,9.97e-06,9.4417e-06,8.2183e-06,6.1966e-06,5.4681e-06,4.6455e-06,3.6094e-06,2.8976e-06,2.7847e-06,1.8135e-06,1.7131e-06,1.6778e-06,1.5162e-06,1.4562e-06,1.0527e-06,9.1499e-07,8.7854e-07,8.7492e-07,8.0324e-07,7.1556e-07,6.7814e-07,6.621e-07,4.3404e-07,4.3381e-07,2.9517e-07,1.8907e-07,1.2467e-07,8.4605e-08,7.1457e-08,6.8356e-08,6.1607e-08,5.6245e-08,4.5348e-08,4.4282e-08,2.9143e-08,2.6203e-08,2.1159e-08,1.62e-08,1.3768e-08,1.3517e-08,1.1836e-08,1.0826e-08,8.6883e-09,6.2521e-09,6.0612e-09,5.2407e-09,4.1624e-09,3.4493e-09,3.4191e-09,1.7774e-09,1.5959e-09,1.5153e-09,1.3264e-09,1.2376e-09,1.1095e-09,9.3174e-10,8.6822e-10,7.867e-10,6.7105e-10,5.4588e-10,4.4799e-10,4.3909e-10,3.4459e-10,2.9362e-10,2.549e-10,1.8457e-10,1.5917e-10,1.5082e-10,1.2451e-10,1.2307e-10,1.1313e-10,1.09e-10,6.645e-11,5.8489e-11,5.5656e-11,4.4345e-11,3.8853e-11,3.808e-11,2.793e-11,1.5333e-11,1.2813e-11,1.1678e-11,9.4046e-12,9.2305e-12,7.2291e-12,7.0378e-12,5.1279e-12,4.2539e-12,2.9187e-12,2.8206e-12,2.7315e-12,2.683e-12,2.53e-12,2.4117e-12,2.3422e-12,1.7199e-12,1.612e-12,8.6934e-13,7.0604e-13,6.1487e-13,5.8207e-13,3.6871e-13,3.6577e-13,3.1444e-13,2.9294e-13,2.0503e-13,2.0272e-13,1.9736e-13,1.5114e-13,1.4035e-13,1.3671e-13,1.2618e-13,1.1375e-13,1.0312e-13,9.7982e-14,5.9198e-14,5.8152e-14,4.4601e-14,2.9892e-14,2.047e-14,1.2052e-14,1.1961e-14,9.9012e-15,7.7994e-15,5.6848e-15,5.6649e-15,5.0758e-15,3.0223e-15,2.6782e-15,2.6428e-15,1.4261e-15,1.2447e-15,1.1507e-15,9.0323e-16,7.0998e-16,4.5491e-16,4.2418e-16,3.0245e-16,1.4118e-16,1.3974e-16,1.3125e-16,1.1545e-16,1.0439e-16,9.2179e-17,7.9581e-17,2.0048e-17,1.3916e-17,7.9298e-18,5.2091e-18,5.1021e-18,4.8638e-18,2.591e-18,2.2356e-18,2.2084e-18,1.2042e-18,4.2878e-19,4.1486e-19,3.0541e-19,2.8663e-19,1.4127e-19,1.1579e-19,7.4924e-20,5.9661e-20,4.6358e-20,4.4132e-20,3.2681e-20,3.0993e-20,3.0222e-20,1.5226e-20,1.2393e-20,1.1364e-20,8.5698e-21,7.8394e-21,5.2075e-21,4.7426e-21,3.9282e-21,2.4532e-21,2.4423e-21,1.9465e-21,1.8027e-21,1.8025e-21,1.091e-21,1.0738e-21,8.725e-22,7.0053e-22,4.3341e-22,2.8071e-22,2.053e-22,1.246e-22,7.8353e-23,4.2809e-23,4.1767e-23,2.6179e-23,1.6676e-23,1.2774e-23,6.2379e-24,5.0511e-24,3.2872e-24,2.5477e-24,1.4941e-24,1.4119e-24,1.2565e-24,9.591e-25,5.4394e-25,3.0287e-25,2.2185e-25,1.6248e-25,1.3807e-25,1.3493e-25,1.0037e-25,7.1241e-26,2.4867e-26,1.8763e-26,1.6064e-26,1.1391e-26,1.1364e-26,8.0946e-27,7.7595e-27,6.161e-27,5.1174e-27,2.7344e-27,2.4968e-27,1.5271e-27,9.6487e-28,2.131e-28,1.6016e-28,1.395e-28,9.7063e-29,6.9008e-29,6.0605e-29,4.6744e-29,3.8778e-29,3.0745e-29,2.0936e-29,2.0893e-29,1.0441e-29,8.6793e-30,8.3508e-30,8.1808e-30,4.0263e-30,3.9618e-30,3.6878e-30,3.4939e-30,3.0376e-30,2.4083e-30,1.9551e-30,7.7247e-31,1.0499e-31,5.7691e-32,5.4711e-32,5.2364e-32,4.5433e-32,4.198e-32,1.9777e-32,1.2018e-32,8.3557e-33,6.8149e-33,4.4481e-33,3.0923e-33,2.8898e-33,1.7311e-33,1.2943e-33,9.0676e-34,5.1098e-34,2.3928e-34,2.2793e-34,1.7617e-34,1.4728e-34,1.3589e-34,5.742e-35,4.5325e-35,1.5386e-35,1.1389e-35,6.6957e-36,5.0352e-36,4.5906e-36,2.7718e-36,2.5966e-36,2.2507e-36,1.6463e-36,9.0521e-37 1,0.47617,0.50504,0.5065,0.51532,0.52213,0.53111,0.54863,0.59064,0.61746,0.62158,0.64289,0.64636,0.66013,0.69336,0.70369,0.71083,0.74134,0.7465,0.7522,0.7711,0.77311,0.77426,0.78833,0.79652,0.79679,0.81221,0.81359,0.82041,0.82131,0.82217,0.86595,0.9032,0.90632,0.91619,0.92459,0.93085,0.93796,0.94579,0.95838,0.96465,0.9738,0.98343,0.98421,0.98581,0.98722,0.99336,0.99337,0.99997,1,0.99999,0.99933,0.99924,0.99479,0.99196,0.9906,0.98726,0.98488,0.98034,0.97881,0.96524,0.95529,0.91672,0.90434,0.90003,0.89213,0.8692,0.86429,0.85987,0.83842,0.81734,0.80932,0.80267,0.77799,0.74097,0.70058,0.67279,0.66692,0.61411,0.59577,0.58722,0.58343,0.56809,0.50558,0.5036,0.49287,0.47599,0.4727,0.44899,0.38618,0.38538,0.36845,0.36247,0.29786,0.28274,0.28165,0.26856,0.25146,0.25113,0.24978,0.23984,0.23976,0.23098,0.22764,0.18341,0.16605,0.16549,0.14731,0.1427,0.13578,0.1325,0.1306,0.12852,0.12785,0.12606,0.11907,0.11828,0.11666,0.11534,0.10577,0.095708,0.083898,0.079765,0.071563,0.063232,0.059973,0.058346,0.042682,0.041123,0.040009,0.037875,0.035302,0.033196,0.031565,0.031282,0.031106,0.029174,0.024582,0.02427,0.022662,0.020353,0.019168,0.018982,0.013352,0.013301,0.012386,0.010757,0.010482,0.0095105,0.0092934,0.0078942,0.0070868,0.0055218,0.0054886,0.0040961,0.0039597,0.003917,0.0032237,0.0031836,0.0029651,0.0026983,0.0026196,0.0025615,0.0023439,0.0023095,0.0022874,0.0021305,0.002078,0.0020645,0.0019456,0.0019043,0.0016904,0.001384,0.0013351,0.0013223,0.0012076,0.001163,0.0009967,0.00075738,0.00069491,0.00060582,0.00057585,0.00049978,0.00043357,0.00042855,0.00042469,0.00042424,0.00040672,0.00040527,0.00035482,0.00033371,0.00029718,0.00029565,0.00028649,0.00023383,0.00023244,0.00021084,0.00018859,0.00015427,0.00015023,0.00013923,0.00013687,0.00013108,0.00012191,0.00010902,0.00010868,8.4156e-05,6.2659e-05,6.0712e-05,5.8622e-05,5.7986e-05,4.8434e-05,4.3323e-05,2.9574e-05,2.8983e-05,2.7827e-05,2.5976e-05,2.0081e-05,1.5312e-05,1.1344e-05,1.0358e-05,9.8103e-06,8.5411e-06,6.4429e-06,5.6867e-06,4.8324e-06,3.7561e-06,3.0165e-06,2.8991e-06,1.8892e-06,1.7849e-06,1.7482e-06,1.58e-06,1.5175e-06,1.0976e-06,9.5422e-07,9.1627e-07,9.125e-07,8.3785e-07,7.4652e-07,7.0754e-07,6.9083e-07,4.5315e-07,4.5292e-07,3.0834e-07,1.9763e-07,1.304e-07,8.8538e-08,7.4797e-08,7.1555e-08,6.4499e-08,5.8893e-08,4.7497e-08,4.6382e-08,3.0542e-08,2.7465e-08,2.2185e-08,1.6992e-08,1.4444e-08,1.4181e-08,1.242e-08,1.1361e-08,9.1203e-09,6.5657e-09,6.3655e-09,5.5048e-09,4.3735e-09,3.6251e-09,3.5933e-09,1.8696e-09,1.6788e-09,1.5942e-09,1.3957e-09,1.3024e-09,1.1677e-09,9.8084e-10,9.1405e-10,8.2833e-10,7.067e-10,5.7502e-10,4.7202e-10,4.6265e-10,3.6319e-10,3.0953e-10,2.6876e-10,1.9468e-10,1.6791e-10,1.5911e-10,1.3139e-10,1.2988e-10,1.1939e-10,1.1504e-10,7.0173e-11,6.1775e-11,5.8786e-11,4.6852e-11,4.1055e-11,4.0239e-11,2.9524e-11,1.622e-11,1.3556e-11,1.2357e-11,9.9538e-12,9.7697e-12,7.6534e-12,7.4512e-12,5.4309e-12,4.5062e-12,3.0931e-12,2.9893e-12,2.895e-12,2.8435e-12,2.6816e-12,2.5563e-12,2.4827e-12,1.8237e-12,1.7094e-12,9.2249e-13,7.4938e-13,6.5271e-13,6.1793e-13,3.9161e-13,3.8849e-13,3.3402e-13,3.1121e-13,2.179e-13,2.1545e-13,2.0976e-13,1.6067e-13,1.4922e-13,1.4535e-13,1.3417e-13,1.2097e-13,1.0967e-13,1.0421e-13,6.2994e-14,6.1882e-14,4.7475e-14,3.1831e-14,2.1806e-14,1.2845e-14,1.2749e-14,1.0555e-14,8.3164e-15,6.0636e-15,6.0423e-15,5.4146e-15,3.2257e-15,2.8588e-15,2.821e-15,1.5232e-15,1.3296e-15,1.2293e-15,9.6513e-16,7.5881e-16,4.864e-16,4.5358e-16,3.2352e-16,1.5112e-16,1.4958e-16,1.405e-16,1.236e-16,1.1177e-16,9.8709e-17,8.523e-17,2.1498e-17,1.4927e-17,8.5105e-18,5.5927e-18,5.4779e-18,5.2223e-18,2.7835e-18,2.4021e-18,2.3728e-18,1.2946e-18,4.6136e-19,4.464e-19,3.2871e-19,3.0852e-19,1.5215e-19,1.2474e-19,8.0738e-20,6.4304e-20,4.9977e-20,4.7579e-20,3.5242e-20,3.3424e-20,3.2593e-20,1.643e-20,1.3375e-20,1.2265e-20,9.2517e-21,8.4639e-21,5.6241e-21,5.1224e-21,4.2435e-21,2.6511e-21,2.6394e-21,2.1039e-21,1.9487e-21,1.9485e-21,1.1798e-21,1.1612e-21,9.4369e-22,7.5782e-22,4.6904e-22,3.0389e-22,2.2231e-22,1.3498e-22,8.491e-23,4.6413e-23,4.5284e-23,2.8394e-23,1.8094e-23,1.3862e-23,6.7732e-24,5.4855e-24,3.5711e-24,2.7682e-24,1.6241e-24,1.5348e-24,1.366e-24,1.0429e-24,5.9172e-25,3.2962e-25,2.415e-25,1.7691e-25,1.5035e-25,1.4694e-25,1.0932e-25,7.7617e-26,2.7114e-26,2.0463e-26,1.752e-26,1.2427e-26,1.2398e-26,8.8331e-27,8.4677e-27,6.7244e-27,5.5862e-27,2.9862e-27,2.7269e-27,1.6684e-27,1.0545e-27,2.3315e-28,1.7526e-28,1.5267e-28,1.0625e-28,7.5561e-29,6.6366e-29,5.1196e-29,4.2477e-29,3.3683e-29,2.2943e-29,2.2895e-29,1.1447e-29,9.517e-30,9.157e-30,8.9708e-30,4.4173e-30,4.3466e-30,4.0461e-30,3.8336e-30,3.3333e-30,2.643e-30,2.146e-30,8.4843e-31,1.1546e-31,6.3474e-32,6.0197e-32,5.7617e-32,4.9995e-32,4.6198e-32,2.1775e-32,1.3237e-32,9.2051e-33,7.5086e-33,4.9023e-33,3.4088e-33,3.1858e-33,1.9091e-33,1.4276e-33,1.0004e-33,5.6394e-34,2.6421e-34,2.5169e-34,1.9456e-34,1.6268e-34,1.501e-34,6.3461e-35,5.0101e-35,1.7018e-35,1.26e-35,7.4101e-36,5.5734e-36,5.0816e-36,3.0693e-36,2.8753e-36,2.4925e-36,1.8235e-36,1.003e-36 1,0.47361,0.50243,0.50389,0.51269,0.5195,0.52847,0.54597,0.58796,0.61477,0.6189,0.64021,0.64368,0.65747,0.69074,0.70107,0.70822,0.7388,0.74398,0.74969,0.76864,0.77065,0.77181,0.78592,0.79414,0.7944,0.80988,0.81128,0.81812,0.81902,0.81989,0.86388,0.90139,0.90453,0.91448,0.92297,0.92928,0.93647,0.94439,0.95714,0.9635,0.9728,0.98263,0.98343,0.98507,0.98651,0.99284,0.99285,0.99992,0.99999,1,0.99948,0.9994,0.99523,0.99251,0.9912,0.98795,0.98564,0.98119,0.9797,0.96636,0.95656,0.91841,0.90612,0.90185,0.89401,0.87123,0.86635,0.86195,0.84062,0.81963,0.81165,0.80502,0.78042,0.74351,0.70319,0.67544,0.66957,0.61679,0.59846,0.58991,0.58611,0.57076,0.5082,0.50621,0.49547,0.47856,0.47526,0.45151,0.38854,0.38774,0.37076,0.36475,0.29992,0.28473,0.28363,0.2705,0.25331,0.25298,0.25162,0.24164,0.24155,0.23273,0.22938,0.18491,0.16745,0.16688,0.14859,0.14395,0.13698,0.13369,0.13177,0.12968,0.129,0.1272,0.12017,0.11937,0.11773,0.11641,0.10677,0.096629,0.084727,0.080562,0.072293,0.063892,0.060605,0.058964,0.043158,0.041585,0.04046,0.038306,0.035708,0.033581,0.031934,0.031648,0.03147,0.029519,0.02488,0.024565,0.022939,0.020605,0.019408,0.019219,0.013527,0.013475,0.012549,0.010901,0.010623,0.0096397,0.0094199,0.0080035,0.0071861,0.0056011,0.0055674,0.0041566,0.0040183,0.0039751,0.0032723,0.0032317,0.0030102,0.0027397,0.0026599,0.002601,0.0023802,0.0023454,0.0023229,0.0021638,0.0021106,0.0020969,0.0019762,0.0019344,0.0017173,0.0014063,0.0013567,0.0013438,0.0012274,0.001182,0.0010132,0.00077018,0.00070673,0.00061623,0.00058577,0.00050848,0.00044118,0.00043608,0.00043215,0.0004317,0.00041389,0.00041241,0.00036113,0.00033966,0.00030253,0.00030096,0.00029165,0.00023809,0.00023668,0.00021472,0.00019207,0.00015716,0.00015304,0.00014185,0.00013945,0.00013356,0.00012422,0.00011109,0.00011076,8.5784e-05,6.3891e-05,6.1907e-05,5.9778e-05,5.913e-05,4.9398e-05,4.419e-05,3.0177e-05,2.9575e-05,2.8396e-05,2.6509e-05,2.0498e-05,1.5634e-05,1.1586e-05,1.058e-05,1.0021e-05,8.7256e-06,6.5838e-06,5.8117e-06,4.9394e-06,3.8401e-06,3.0845e-06,2.9646e-06,1.9326e-06,1.826e-06,1.7884e-06,1.6165e-06,1.5527e-06,1.1233e-06,9.7671e-07,9.3789e-07,9.3404e-07,8.5769e-07,7.6427e-07,7.2439e-07,7.073e-07,4.6412e-07,4.6387e-07,3.159e-07,2.0255e-07,1.3369e-07,9.0798e-08,7.6717e-08,7.3394e-08,6.6162e-08,6.0415e-08,4.8733e-08,4.759e-08,3.1348e-08,2.8191e-08,2.2775e-08,1.7447e-08,1.4833e-08,1.4563e-08,1.2756e-08,1.1669e-08,9.3691e-09,6.7464e-09,6.5408e-09,5.6571e-09,4.4952e-09,3.7265e-09,3.6939e-09,1.9228e-09,1.7267e-09,1.6397e-09,1.4357e-09,1.3398e-09,1.2013e-09,1.0092e-09,9.4051e-10,8.5237e-10,7.2728e-10,5.9186e-10,4.859e-10,4.7626e-10,3.7393e-10,3.1873e-10,2.7677e-10,2.0052e-10,1.7297e-10,1.6391e-10,1.3537e-10,1.3381e-10,1.2302e-10,1.1853e-10,7.2328e-11,6.3678e-11,6.0599e-11,4.8303e-11,4.2331e-11,4.149e-11,3.0448e-11,1.6733e-11,1.3987e-11,1.2751e-11,1.0272e-11,1.0082e-11,7.8995e-12,7.6909e-12,5.6068e-12,4.6527e-12,3.1944e-12,3.0872e-12,2.9898e-12,2.9368e-12,2.7697e-12,2.6403e-12,2.5643e-12,1.884e-12,1.766e-12,9.5338e-13,7.7456e-13,6.747e-13,6.3877e-13,4.0493e-13,4.0171e-13,3.4542e-13,3.2184e-13,2.2538e-13,2.2285e-13,2.1697e-13,1.6622e-13,1.5438e-13,1.5038e-13,1.3882e-13,1.2516e-13,1.1348e-13,1.0784e-13,6.5205e-14,6.4054e-14,4.9148e-14,3.296e-14,2.2585e-14,1.3308e-14,1.3208e-14,1.0936e-14,8.618e-15,6.2846e-15,6.2625e-15,5.6123e-15,3.3444e-15,2.9642e-15,2.925e-15,1.5799e-15,1.3792e-15,1.2752e-15,1.0013e-15,7.8735e-16,5.0481e-16,4.7077e-16,3.3583e-16,1.5693e-16,1.5534e-16,1.4591e-16,1.2837e-16,1.1609e-16,1.0253e-16,8.8536e-17,2.2348e-17,1.552e-17,8.851e-18,5.8177e-18,5.6983e-18,5.4326e-18,2.8965e-18,2.4997e-18,2.4693e-18,1.3476e-18,4.8051e-19,4.6493e-19,3.4241e-19,3.2139e-19,1.5855e-19,1.2999e-19,8.4158e-20,6.7035e-20,5.2105e-20,4.9606e-20,3.6749e-20,3.4854e-20,3.3988e-20,1.7138e-20,1.3954e-20,1.2796e-20,9.6534e-21,8.8317e-21,5.8696e-21,5.3463e-21,4.4293e-21,2.7678e-21,2.7555e-21,2.1967e-21,2.0347e-21,2.0345e-21,1.2322e-21,1.2128e-21,9.8568e-22,7.9162e-22,4.9006e-22,3.1757e-22,2.3235e-22,1.4111e-22,8.8783e-23,4.8543e-23,4.7363e-23,2.9703e-23,1.8932e-23,1.4506e-23,7.0899e-24,5.7425e-24,3.7391e-24,2.8988e-24,1.701e-24,1.6076e-24,1.4308e-24,1.0925e-24,6.2003e-25,3.4548e-25,2.5315e-25,1.8547e-25,1.5763e-25,1.5406e-25,1.1463e-25,8.1399e-26,2.8447e-26,2.1472e-26,1.8385e-26,1.3043e-26,1.3012e-26,9.2717e-27,8.8883e-27,7.0591e-27,5.8646e-27,3.1359e-27,2.8636e-27,1.7524e-27,1.1078e-27,2.4508e-28,1.8425e-28,1.6051e-28,1.1173e-28,7.9462e-29,6.9796e-29,5.3848e-29,4.468e-29,3.5434e-29,2.4138e-29,2.4089e-29,1.2047e-29,1.0016e-29,9.6377e-30,9.4418e-30,4.6505e-30,4.576e-30,4.2599e-30,4.0362e-30,3.5096e-30,2.7831e-30,2.2599e-30,8.9378e-31,1.2173e-31,6.6931e-32,6.3477e-32,6.0757e-32,5.2723e-32,4.872e-32,2.297e-32,1.3966e-32,9.7133e-33,7.9238e-33,5.1741e-33,3.5983e-33,3.3629e-33,2.0156e-33,1.5074e-33,1.0565e-33,5.9568e-34,2.7915e-34,2.6593e-34,2.0559e-34,1.7191e-34,1.5862e-34,6.7084e-35,5.2966e-35,1.7998e-35,1.3327e-35,7.8391e-36,5.8966e-36,5.3764e-36,3.2479e-36,3.0428e-36,2.6378e-36,1.93e-36,1.0618e-36 1,0.45509,0.48356,0.485,0.49371,0.50044,0.50933,0.52669,0.56847,0.59525,0.59937,0.62071,0.6242,0.63803,0.67152,0.68195,0.68918,0.72015,0.7254,0.73121,0.7505,0.75255,0.75373,0.76816,0.77656,0.77684,0.79271,0.79414,0.80119,0.80211,0.803,0.84853,0.8878,0.89112,0.90165,0.91067,0.91742,0.92513,0.93367,0.94757,0.95458,0.96497,0.97622,0.97715,0.97907,0.98078,0.98851,0.98852,0.99901,0.99933,0.99948,1,1,0.99785,0.99592,0.99493,0.99241,0.99054,0.98686,0.9856,0.97403,0.96528,0.93021,0.91869,0.91467,0.90727,0.88563,0.88096,0.87676,0.85628,0.83602,0.82828,0.82185,0.79791,0.76178,0.72208,0.69462,0.68881,0.6363,0.61799,0.60943,0.60563,0.59025,0.52733,0.52532,0.51447,0.49738,0.49404,0.46997,0.40592,0.4051,0.38776,0.38162,0.31512,0.29949,0.29835,0.28481,0.26706,0.26672,0.26531,0.25499,0.25489,0.24576,0.24228,0.19608,0.17787,0.17727,0.15815,0.15329,0.14599,0.14253,0.14052,0.13832,0.13761,0.13573,0.12833,0.12749,0.12578,0.12438,0.11423,0.10354,0.090964,0.086554,0.07779,0.068869,0.065372,0.063626,0.046762,0.04508,0.043875,0.041568,0.038783,0.0365,0.034732,0.034425,0.034234,0.032136,0.027141,0.026802,0.025048,0.022528,0.021233,0.021029,0.014859,0.014803,0.013797,0.012003,0.011699,0.010628,0.010388,0.0088412,0.007947,0.0062098,0.0061728,0.0046219,0.0044696,0.004422,0.003647,0.0036022,0.0033575,0.0030585,0.0029702,0.0029051,0.0026607,0.0026221,0.0025972,0.002421,0.0023619,0.0023467,0.0022129,0.0021665,0.0019254,0.0015796,0.0015244,0.00151,0.0013802,0.0013297,0.0011413,0.0008696,0.00079853,0.00069708,0.00066291,0.00057611,0.00050045,0.00049471,0.00049029,0.00048978,0.00046973,0.00046807,0.00041031,0.00038611,0.00034422,0.00034245,0.00033194,0.00027142,0.00026983,0.00024497,0.00021933,0.00017974,0.00017507,0.00016235,0.00015963,0.00015294,0.00014232,0.00012739,0.00012701,9.8559e-05,7.3565e-05,7.1297e-05,6.8863e-05,6.8122e-05,5.6985e-05,5.1018e-05,3.4935e-05,3.4242e-05,3.2887e-05,3.0716e-05,2.3794e-05,1.8181e-05,1.3501e-05,1.2337e-05,1.1689e-05,1.0187e-05,7.7012e-06,6.8036e-06,5.7886e-06,4.5077e-06,3.6259e-06,3.4857e-06,2.2785e-06,2.1535e-06,2.1096e-06,1.908e-06,1.8331e-06,1.3289e-06,1.1564e-06,1.1107e-06,1.1062e-06,1.0163e-06,9.0623e-07,8.5922e-07,8.3907e-07,5.5198e-07,5.5169e-07,3.7656e-07,2.4207e-07,1.6016e-07,1.0901e-07,9.2195e-08,8.8224e-08,7.9577e-08,7.2702e-08,5.8714e-08,5.7344e-08,3.786e-08,3.4068e-08,2.7554e-08,2.1139e-08,1.7988e-08,1.7661e-08,1.5481e-08,1.4168e-08,1.1389e-08,8.2153e-09,7.9663e-09,6.8951e-09,5.4856e-09,4.5519e-09,4.5123e-09,2.3567e-09,2.1175e-09,2.0113e-09,1.7623e-09,1.6451e-09,1.4758e-09,1.2409e-09,1.1569e-09,1.049e-09,8.9576e-10,7.2971e-10,5.9965e-10,5.8782e-10,4.6207e-10,3.9415e-10,3.425e-10,2.4854e-10,2.1454e-10,2.0336e-10,1.681e-10,1.6617e-10,1.5283e-10,1.4728e-10,9.0083e-11,7.9356e-11,7.5537e-11,6.0274e-11,5.2854e-11,5.1809e-11,3.8075e-11,2.0983e-11,1.7554e-11,1.6009e-11,1.291e-11,1.2672e-11,9.9395e-12,9.6782e-12,7.0655e-12,5.8681e-12,4.0356e-12,3.9008e-12,3.7783e-12,3.7115e-12,3.5012e-12,3.3384e-12,3.2427e-12,2.3857e-12,2.2369e-12,1.2108e-12,9.8461e-13,8.5818e-13,8.1266e-13,5.1617e-13,5.1208e-13,4.406e-13,4.1065e-13,2.8801e-13,2.8479e-13,2.7731e-13,2.1269e-13,1.976e-13,1.925e-13,1.7775e-13,1.6034e-13,1.4543e-13,1.3823e-13,8.3757e-14,8.2285e-14,6.3206e-14,4.2457e-14,2.9137e-14,1.7205e-14,1.7077e-14,1.4151e-14,1.1161e-14,8.1497e-15,8.1212e-15,7.2811e-15,4.3478e-15,3.8553e-15,3.8046e-15,2.0599e-15,1.7992e-15,1.6641e-15,1.3078e-15,1.0294e-15,6.611e-16,6.1669e-16,4.405e-16,2.0644e-16,2.0435e-16,1.9199e-16,1.6899e-16,1.5288e-16,1.3509e-16,1.1671e-16,2.9611e-17,2.0592e-17,1.1768e-17,7.7465e-18,7.5881e-18,7.2355e-18,3.8665e-18,3.3386e-18,3.2981e-18,1.8038e-18,6.4552e-19,6.2467e-19,4.6054e-19,4.3236e-19,2.1383e-19,1.7543e-19,1.1374e-19,9.0673e-20,7.0539e-20,6.7167e-20,4.981e-20,4.7249e-20,4.6079e-20,2.3289e-20,1.8975e-20,1.7406e-20,1.3143e-20,1.2028e-20,8.005e-21,7.2935e-21,6.0463e-21,3.7841e-21,3.7674e-21,3.0057e-21,2.7847e-21,2.7844e-21,1.6892e-21,1.6626e-21,1.3522e-21,1.0868e-21,6.7383e-22,4.3727e-22,3.2025e-22,1.948e-22,1.2275e-22,6.7244e-23,6.5614e-23,4.121e-23,2.6304e-23,2.0171e-23,9.8809e-24,8.0084e-24,5.2214e-24,4.0512e-24,2.3812e-24,2.2508e-24,2.004e-24,1.5314e-24,8.7063e-25,4.8597e-25,3.5644e-25,2.6138e-25,2.2226e-25,2.1724e-25,1.6179e-25,1.15e-25,4.0317e-26,3.0456e-26,2.609e-26,1.8527e-26,1.8484e-26,1.3184e-26,1.264e-26,1.0046e-26,8.3504e-27,4.4732e-27,4.086e-27,2.504e-27,1.585e-27,3.5218e-28,2.6498e-28,2.3093e-28,1.6091e-28,1.1455e-28,1.0066e-28,7.7713e-29,6.4516e-29,5.1198e-29,3.4915e-29,3.4843e-29,1.746e-29,1.4524e-29,1.3976e-29,1.3693e-29,6.7577e-30,6.6498e-30,6.1915e-30,5.8673e-30,5.1038e-30,4.0499e-30,3.2904e-30,1.3047e-30,1.7865e-31,9.839e-32,9.3326e-32,8.9337e-32,7.7553e-32,7.168e-32,3.3863e-32,2.0616e-32,1.4353e-32,1.1715e-32,7.6581e-33,5.3309e-33,4.9831e-33,2.9907e-33,2.2383e-33,1.5702e-33,8.8666e-34,4.1633e-34,3.9666e-34,3.0686e-34,2.5671e-34,2.3692e-34,1.0042e-34,7.9333e-35,2.7032e-35,2.0031e-35,1.1799e-35,8.8816e-36,8.1e-36,4.8995e-36,4.5907e-36,3.9811e-36,2.9152e-36,1.6063e-36 1,0.45374,0.48218,0.48362,0.49232,0.49905,0.50793,0.52528,0.56704,0.59381,0.59793,0.61928,0.62276,0.6366,0.6701,0.68054,0.68777,0.71876,0.72402,0.72983,0.74915,0.75121,0.75239,0.76683,0.77525,0.77553,0.79143,0.79286,0.79992,0.80085,0.80174,0.84737,0.88677,0.8901,0.90068,0.90974,0.91651,0.92426,0.93285,0.94683,0.95389,0.96436,0.97571,0.97665,0.97859,0.98032,0.98815,0.98816,0.9989,0.99924,0.9994,1,1,0.998,0.99613,0.99517,0.99269,0.99086,0.98723,0.98599,0.97456,0.96589,0.93104,0.91959,0.91559,0.90822,0.88666,0.88201,0.87782,0.8574,0.8372,0.82948,0.82307,0.79918,0.76311,0.72346,0.69603,0.69022,0.63773,0.61942,0.61087,0.60707,0.59169,0.52874,0.52673,0.51588,0.49877,0.49543,0.47134,0.40721,0.40639,0.38903,0.38288,0.31626,0.30059,0.29946,0.28588,0.26809,0.26774,0.26634,0.25599,0.25589,0.24674,0.24325,0.19692,0.17865,0.17806,0.15887,0.15399,0.14667,0.1432,0.14118,0.13898,0.13826,0.13637,0.12895,0.12811,0.12638,0.12498,0.1148,0.10407,0.091437,0.087009,0.078208,0.069247,0.065735,0.063981,0.047037,0.045346,0.044136,0.041817,0.039018,0.036724,0.034946,0.034637,0.034445,0.032336,0.027314,0.026973,0.02521,0.022675,0.021374,0.021168,0.014962,0.014905,0.013893,0.012088,0.011782,0.010704,0.010463,0.0089058,0.0080057,0.0062569,0.0062197,0.004658,0.0045046,0.0044566,0.0036761,0.0036309,0.0033845,0.0030833,0.0029944,0.0029287,0.0026825,0.0026436,0.0026186,0.002441,0.0023814,0.0023661,0.0022313,0.0021845,0.0019416,0.0015931,0.0015374,0.0015229,0.0013921,0.0013412,0.0011513,0.00087737,0.00080571,0.0007034,0.00066894,0.00058141,0.0005051,0.0004993,0.00049485,0.00049434,0.00047411,0.00047244,0.00041417,0.00038976,0.00034749,0.00034571,0.0003351,0.00027404,0.00027243,0.00024735,0.00022147,0.00018152,0.0001768,0.00016397,0.00016122,0.00015446,0.00014374,0.00012868,0.00012829,9.9567e-05,7.4329e-05,7.2039e-05,6.9582e-05,6.8833e-05,5.7585e-05,5.1558e-05,3.5312e-05,3.4612e-05,3.3243e-05,3.105e-05,2.4056e-05,1.8384e-05,1.3653e-05,1.2477e-05,1.1822e-05,1.0304e-05,7.7903e-06,6.8827e-06,5.8563e-06,4.561e-06,3.6691e-06,3.5274e-06,2.3062e-06,2.1798e-06,2.1353e-06,1.9313e-06,1.8555e-06,1.3453e-06,1.1708e-06,1.1246e-06,1.12e-06,1.029e-06,9.1763e-07,8.7005e-07,8.4965e-07,5.5905e-07,5.5875e-07,3.8145e-07,2.4526e-07,1.6229e-07,1.1049e-07,9.3447e-08,8.9424e-08,8.0663e-08,7.3697e-08,5.9523e-08,5.8135e-08,3.8388e-08,3.4545e-08,2.7942e-08,2.1439e-08,1.8244e-08,1.7913e-08,1.5702e-08,1.4372e-08,1.1554e-08,8.335e-09,8.0824e-09,6.9961e-09,5.5663e-09,4.6192e-09,4.5791e-09,2.3921e-09,2.1495e-09,2.0417e-09,1.789e-09,1.6701e-09,1.4983e-09,1.2599e-09,1.1746e-09,1.0651e-09,9.0957e-10,7.4101e-10,6.0899e-10,5.9697e-10,4.6931e-10,4.0035e-10,3.479e-10,2.5248e-10,2.1796e-10,2.066e-10,1.708e-10,1.6884e-10,1.5528e-10,1.4965e-10,9.1547e-11,8.0649e-11,7.6769e-11,6.1262e-11,5.3723e-11,5.2661e-11,3.8705e-11,2.1335e-11,1.7849e-11,1.6278e-11,1.3128e-11,1.2887e-11,1.0109e-11,9.8429e-12,7.1865e-12,5.969e-12,4.1055e-12,3.9683e-12,3.8438e-12,3.7759e-12,3.562e-12,3.3964e-12,3.2991e-12,2.4274e-12,2.2761e-12,1.2323e-12,1.0021e-12,8.7347e-13,8.2716e-13,5.2546e-13,5.2129e-13,4.4855e-13,4.1807e-13,2.9325e-13,2.8997e-13,2.8235e-13,2.1657e-13,2.0121e-13,1.9602e-13,1.8101e-13,1.6329e-13,1.4811e-13,1.4077e-13,8.5312e-14,8.3813e-14,6.4385e-14,4.3254e-14,2.9687e-14,1.7533e-14,1.7402e-14,1.4421e-14,1.1376e-14,8.3067e-15,8.2777e-15,7.4217e-15,4.4324e-15,3.9304e-15,3.8788e-15,2.1005e-15,1.8347e-15,1.6969e-15,1.3338e-15,1.0498e-15,6.7433e-16,6.2904e-16,4.4936e-16,2.1064e-16,2.0851e-16,1.959e-16,1.7244e-16,1.56e-16,1.3785e-16,1.1911e-16,3.023e-17,2.1024e-17,1.2016e-17,7.9112e-18,7.7495e-18,7.3894e-18,3.9494e-18,3.4104e-18,3.369e-18,1.8429e-18,6.5968e-19,6.3837e-19,4.7068e-19,4.4189e-19,2.1858e-19,1.7934e-19,1.1629e-19,9.2708e-20,7.2127e-20,6.868e-20,5.0936e-20,4.8317e-20,4.7121e-20,2.382e-20,1.9408e-20,1.7804e-20,1.3445e-20,1.2304e-20,8.1896e-21,7.4619e-21,6.1862e-21,3.8721e-21,3.855e-21,3.0757e-21,2.8497e-21,2.8494e-21,1.7288e-21,1.7016e-21,1.384e-21,1.1124e-21,6.8979e-22,4.4767e-22,3.279e-22,1.9947e-22,1.2571e-22,6.8874e-23,6.7205e-23,4.2214e-23,2.6947e-23,2.0666e-23,1.0125e-23,8.2065e-24,5.3511e-24,4.1521e-24,2.4408e-24,2.3072e-24,2.0542e-24,1.5699e-24,8.9262e-25,4.9832e-25,3.6551e-25,2.6806e-25,2.2794e-25,2.228e-25,1.6594e-25,1.1796e-25,4.1363e-26,3.1248e-26,2.677e-26,1.9012e-26,1.8967e-26,1.3529e-26,1.2972e-26,1.031e-26,8.5702e-27,4.5915e-27,4.1941e-27,2.5706e-27,1.6273e-27,3.6169e-28,2.7216e-28,2.3718e-28,1.6528e-28,1.1767e-28,1.034e-28,7.9837e-29,6.6282e-29,5.2602e-29,3.5875e-29,3.5802e-29,1.7942e-29,1.4926e-29,1.4363e-29,1.4072e-29,6.9459e-30,6.835e-30,6.3641e-30,6.0309e-30,5.2462e-30,4.1631e-30,3.3825e-30,1.3414e-30,1.8376e-31,1.0122e-31,9.6008e-32,9.1905e-32,7.9785e-32,7.3744e-32,3.4843e-32,2.1215e-32,1.477e-32,1.2056e-32,7.8821e-33,5.4872e-33,5.1292e-33,3.0787e-33,2.3043e-33,1.6166e-33,9.1297e-34,4.2875e-34,4.0849e-34,3.1603e-34,2.6439e-34,2.4401e-34,1.0344e-34,8.1725e-35,2.7853e-35,2.064e-35,1.2159e-35,9.1531e-36,8.3477e-36,5.0498e-36,4.7316e-36,4.1034e-36,3.0049e-36,1.6559e-36 1,0.41823,0.44584,0.44724,0.45571,0.46228,0.47095,0.48794,0.52905,0.55558,0.55968,0.58095,0.58443,0.59828,0.63198,0.64253,0.64986,0.6814,0.68678,0.69273,0.71258,0.7147,0.71592,0.73085,0.73958,0.73986,0.75643,0.75792,0.7653,0.76627,0.76721,0.81546,0.85799,0.86163,0.87326,0.88329,0.89086,0.89956,0.9093,0.9254,0.93367,0.94618,0.9602,0.96139,0.96388,0.9661,0.9766,0.97661,0.99395,0.99479,0.99523,0.99785,0.998,1,0.99969,0.99938,0.99833,0.99739,0.9953,0.99453,0.98667,0.98015,0.95166,0.94182,0.93835,0.9319,0.91276,0.90858,0.90481,0.88623,0.86762,0.86045,0.85448,0.83207,0.79782,0.75969,0.73305,0.72738,0.67579,0.65764,0.64914,0.64536,0.63002,0.56672,0.56469,0.55369,0.53631,0.53291,0.50833,0.44234,0.44149,0.42349,0.4171,0.3474,0.33088,0.32969,0.31533,0.29646,0.29609,0.29459,0.28358,0.28348,0.27371,0.26999,0.22025,0.20049,0.19985,0.17899,0.17368,0.16568,0.16189,0.15968,0.15726,0.15648,0.15441,0.14626,0.14533,0.14344,0.1419,0.13067,0.11881,0.10479,0.099855,0.090026,0.07998,0.076031,0.074056,0.054886,0.052962,0.051584,0.04894,0.045744,0.043118,0.04108,0.040727,0.040506,0.038084,0.0323,0.031905,0.029867,0.02693,0.025419,0.02518,0.017935,0.017869,0.016681,0.014557,0.014197,0.012924,0.012638,0.010794,0.009724,0.0076376,0.007593,0.0057187,0.005534,0.0054762,0.0045336,0.004479,0.0041805,0.0038151,0.0037071,0.0036273,0.0033278,0.0032804,0.0032499,0.0030333,0.0029607,0.002942,0.0027773,0.0027201,0.0024228,0.0019949,0.0019264,0.0019085,0.0017474,0.0016846,0.0014499,0.00111,0.0010208,0.00089321,0.00085016,0.00074062,0.00064489,0.00063761,0.00063201,0.00063137,0.00060595,0.00060384,0.00053049,0.00049971,0.00044633,0.00044408,0.00043067,0.0003533,0.00035126,0.0003194,0.00028647,0.00023551,0.00022948,0.00021307,0.00020955,0.0002009,0.00018716,0.00016782,0.00016732,0.00013035,9.7727e-05,9.4758e-05,9.1572e-05,9.0601e-05,7.599e-05,6.8145e-05,4.6921e-05,4.6005e-05,4.421e-05,4.1332e-05,3.2134e-05,2.4648e-05,1.8379e-05,1.6815e-05,1.5944e-05,1.3922e-05,1.0565e-05,9.3488e-06,7.9713e-06,6.2281e-06,5.0241e-06,4.8324e-06,3.1763e-06,3.0042e-06,2.9437e-06,2.6658e-06,2.5625e-06,1.8652e-06,1.626e-06,1.5625e-06,1.5562e-06,1.4313e-06,1.2781e-06,1.2126e-06,1.1845e-06,7.8326e-07,7.8286e-07,5.3683e-07,3.4693e-07,2.3065e-07,1.577e-07,1.3363e-07,1.2794e-07,1.1554e-07,1.0567e-07,8.5544e-08,8.357e-08,5.5434e-08,4.9941e-08,4.0488e-08,3.1153e-08,2.6556e-08,2.6079e-08,2.2892e-08,2.0972e-08,1.6898e-08,1.2232e-08,1.1865e-08,1.0286e-08,8.2031e-09,6.8204e-09,6.7616e-09,3.5556e-09,3.1983e-09,3.0396e-09,2.6668e-09,2.4913e-09,2.2375e-09,1.8847e-09,1.7583e-09,1.5959e-09,1.365e-09,1.1143e-09,9.1748e-10,8.9956e-10,7.0883e-10,6.056e-10,5.2698e-10,3.8362e-10,3.3163e-10,3.145e-10,2.6046e-10,2.575e-10,2.3702e-10,2.285e-10,1.4043e-10,1.2386e-10,1.1795e-10,9.4322e-11,8.2814e-11,8.1193e-11,5.9844e-11,3.3165e-11,2.7792e-11,2.5367e-11,2.0497e-11,2.0123e-11,1.5819e-11,1.5407e-11,1.1281e-11,9.3847e-12,6.476e-12,6.2616e-12,6.0667e-12,5.9605e-12,5.6257e-12,5.3664e-12,5.214e-12,3.8466e-12,3.6087e-12,1.9641e-12,1.6001e-12,1.3963e-12,1.3229e-12,8.4359e-13,8.3696e-13,7.2108e-13,6.7248e-13,4.7309e-13,4.6784e-13,4.5566e-13,3.5027e-13,3.2563e-13,3.173e-13,2.9319e-13,2.6471e-13,2.4029e-13,2.2849e-13,1.3904e-13,1.3662e-13,1.0517e-13,7.0884e-14,4.8798e-14,2.8941e-14,2.8726e-14,2.3841e-14,1.8842e-14,1.3793e-14,1.3745e-14,1.2334e-14,7.3959e-15,6.5644e-15,6.4788e-15,3.5251e-15,3.0823e-15,2.8526e-15,2.2462e-15,1.7712e-15,1.1416e-15,1.0654e-15,7.6304e-16,3.5971e-16,3.5609e-16,3.3472e-16,2.9492e-16,2.67e-16,2.3615e-16,2.0426e-16,5.2364e-17,3.6514e-17,2.0954e-17,1.3837e-17,1.3556e-17,1.293e-17,6.9416e-18,6.0003e-18,5.9281e-18,3.2565e-18,1.174e-18,1.1364e-18,8.3964e-19,7.8862e-19,3.9197e-19,3.2203e-19,2.0944e-19,1.6722e-19,1.3032e-19,1.2413e-19,9.2246e-20,8.7535e-20,8.5382e-20,4.3359e-20,3.5376e-20,3.247e-20,2.4566e-20,2.2495e-20,1.5013e-20,1.3687e-20,1.1361e-20,7.133e-21,7.1017e-21,5.6744e-21,5.26e-21,5.2594e-21,3.2014e-21,3.1514e-21,2.5666e-21,2.0658e-21,1.2849e-21,8.3623e-22,6.1371e-22,3.7452e-22,2.3671e-22,1.3018e-22,1.2705e-22,8.0035e-23,5.1233e-23,3.9356e-23,1.9367e-23,1.5717e-23,1.0276e-23,7.9853e-24,4.7094e-24,4.4531e-24,3.9677e-24,3.0372e-24,1.7328e-24,9.7071e-25,7.1333e-25,5.241e-25,4.461e-25,4.3609e-25,3.2537e-25,2.3176e-25,8.1769e-26,6.1875e-26,5.3055e-26,3.7754e-26,3.7665e-26,2.692e-26,2.5817e-26,2.0546e-26,1.7098e-26,9.1931e-27,8.4018e-27,5.1639e-27,3.2776e-27,7.347e-28,5.5372e-28,4.8294e-28,3.3722e-28,2.4054e-28,2.1152e-28,1.6355e-28,1.3592e-28,1.0801e-28,7.3818e-29,7.3668e-29,3.706e-29,3.0861e-29,2.9704e-29,2.9105e-29,1.4421e-29,1.4192e-29,1.322e-29,1.2531e-29,1.0909e-29,8.6679e-30,7.0506e-30,2.8101e-30,3.8907e-31,2.1498e-31,2.0397e-31,1.953e-31,1.6967e-31,1.5689e-31,7.4422e-32,4.5432e-32,3.1691e-32,2.5895e-32,1.6967e-32,1.1834e-32,1.1066e-32,6.6595e-33,4.9919e-33,3.5085e-33,1.9872e-33,9.3686e-34,8.9283e-34,6.9163e-34,5.7914e-34,5.3473e-34,2.2767e-34,1.8009e-34,6.1709e-35,4.5798e-35,2.705e-35,2.0392e-35,1.8606e-35,1.1284e-35,1.0576e-35,9.1784e-36,6.7317e-36,3.7205e-36 1,0.40461,0.43184,0.43322,0.4416,0.44808,0.45666,0.47348,0.51426,0.54064,0.54472,0.56592,0.56939,0.58322,0.61692,0.6275,0.63484,0.66652,0.67194,0.67793,0.69794,0.70008,0.7013,0.71638,0.72522,0.7255,0.74228,0.7438,0.75129,0.75227,0.75322,0.80237,0.84601,0.84976,0.86177,0.87215,0.88,0.88906,0.89922,0.9161,0.92483,0.9381,0.95313,0.95442,0.95711,0.95952,0.97103,0.97104,0.99092,0.99196,0.99251,0.99592,0.99613,0.99969,1,0.99995,0.99945,0.99887,0.9974,0.99681,0.99039,0.98474,0.95884,0.94967,0.94641,0.94035,0.92222,0.91824,0.91464,0.89685,0.87891,0.87199,0.86621,0.84444,0.81101,0.77358,0.74732,0.74172,0.69061,0.67257,0.66411,0.66034,0.64505,0.58175,0.57971,0.56868,0.55123,0.54781,0.52308,0.45646,0.4556,0.43738,0.4309,0.36008,0.34324,0.34202,0.32736,0.30808,0.3077,0.30617,0.2949,0.2948,0.2848,0.28098,0.22991,0.20956,0.2089,0.18738,0.18189,0.17362,0.1697,0.16741,0.16491,0.1641,0.16196,0.15352,0.15256,0.15059,0.14899,0.13735,0.12502,0.11043,0.10529,0.095042,0.084548,0.080419,0.078353,0.058255,0.056234,0.054785,0.052005,0.048641,0.045876,0.043729,0.043356,0.043124,0.04057,0.034462,0.034046,0.03189,0.028782,0.027181,0.026928,0.019239,0.019169,0.017905,0.015643,0.01526,0.013902,0.013598,0.011628,0.010485,0.0082513,0.0082035,0.0061923,0.0059938,0.0059316,0.0049178,0.004859,0.0045375,0.0041438,0.0040273,0.0039412,0.0036181,0.003567,0.003534,0.0033002,0.0032218,0.0032016,0.0030236,0.0029618,0.0026402,0.0021769,0.0021027,0.0020833,0.0019086,0.0018405,0.0015857,0.0012162,0.0011191,0.00098009,0.00093315,0.00081365,0.00070912,0.00070117,0.00069506,0.00069435,0.00066657,0.00066427,0.00058406,0.00055038,0.00049194,0.00048948,0.00047479,0.00038998,0.00038774,0.00035278,0.00031663,0.00026061,0.00025398,0.00023592,0.00023205,0.00022253,0.0002074,0.00018609,0.00018553,0.00014475,0.00010871,0.00010542,0.0001019,0.00010083,8.4651e-05,7.5958e-05,5.2411e-05,5.1393e-05,4.9399e-05,4.62e-05,3.5969e-05,2.7629e-05,2.0635e-05,1.8888e-05,1.7914e-05,1.5654e-05,1.1896e-05,1.0533e-05,8.9887e-06,7.0318e-06,5.6786e-06,5.463e-06,3.5983e-06,3.4043e-06,3.336e-06,3.0226e-06,2.906e-06,2.1185e-06,1.848e-06,1.7763e-06,1.7691e-06,1.6277e-06,1.4543e-06,1.3801e-06,1.3483e-06,8.9332e-07,8.9286e-07,6.1334e-07,3.9717e-07,2.6454e-07,1.8118e-07,1.5364e-07,1.4713e-07,1.3292e-07,1.2161e-07,9.8544e-08,9.628e-08,6.3978e-08,5.7664e-08,4.6792e-08,3.6043e-08,3.0745e-08,3.0196e-08,2.652e-08,2.4305e-08,1.9601e-08,1.4208e-08,1.3783e-08,1.1956e-08,9.5435e-09,7.9408e-09,7.8726e-09,4.1505e-09,3.7351e-09,3.5504e-09,3.1166e-09,2.9123e-09,2.6167e-09,2.2056e-09,2.0583e-09,1.8689e-09,1.5994e-09,1.3066e-09,1.0767e-09,1.0557e-09,8.3266e-10,7.1183e-10,6.1974e-10,4.5169e-10,3.9069e-10,3.7059e-10,3.0713e-10,3.0365e-10,2.7958e-10,2.6957e-10,1.6596e-10,1.4645e-10,1.3949e-10,1.1164e-10,9.8065e-11,9.6152e-11,7.0949e-11,3.9403e-11,3.304e-11,3.0167e-11,2.4394e-11,2.3951e-11,1.8844e-11,1.8355e-11,1.3453e-11,1.12e-11,7.7384e-12,7.483e-12,7.2509e-12,7.1244e-12,6.7256e-12,6.4166e-12,6.2351e-12,4.6047e-12,4.3209e-12,2.3566e-12,1.9211e-12,1.6772e-12,1.5893e-12,1.015e-12,1.0071e-12,8.6808e-13,8.0975e-13,5.7033e-13,5.6402e-13,5.4938e-13,4.2269e-13,3.9304e-13,3.8301e-13,3.5401e-13,3.1972e-13,2.9032e-13,2.7612e-13,1.6829e-13,1.6536e-13,1.2741e-13,8.5981e-14,5.9262e-14,3.5205e-14,3.4944e-14,2.9019e-14,2.295e-14,1.6817e-14,1.6759e-14,1.5044e-14,9.0349e-15,8.0221e-15,7.9178e-15,4.3161e-15,3.7755e-15,3.4949e-15,2.754e-15,2.1732e-15,1.4025e-15,1.3092e-15,9.3858e-16,4.4344e-16,4.39e-16,4.1273e-16,3.6378e-16,3.2944e-16,2.9149e-16,2.5223e-16,6.4917e-17,4.5314e-17,2.6045e-17,1.7218e-17,1.687e-17,1.6094e-17,8.655e-18,7.4845e-18,7.3946e-18,4.0689e-18,1.471e-18,1.424e-18,1.053e-18,9.8919e-19,4.9259e-19,4.0492e-19,2.6365e-19,2.1063e-19,1.6426e-19,1.5648e-19,1.1638e-19,1.1045e-19,1.0774e-19,5.481e-20,4.4743e-20,4.1077e-20,3.11e-20,2.8485e-20,1.903e-20,1.7354e-20,1.4412e-20,9.0595e-21,9.0198e-21,7.2112e-21,6.6858e-21,6.6851e-21,4.0743e-21,4.0109e-21,3.2683e-21,2.632e-21,1.6391e-21,1.0679e-21,7.8434e-22,4.7924e-22,3.0325e-22,1.6702e-22,1.6301e-22,1.0281e-22,6.5882e-23,5.0642e-23,2.4963e-23,2.027e-23,1.3265e-23,1.0315e-23,6.0911e-24,5.7604e-24,5.1339e-24,3.9324e-24,2.2465e-24,1.2602e-24,9.2677e-25,6.8142e-25,5.8023e-25,5.6723e-25,4.235e-25,3.019e-25,1.0677e-25,8.0849e-26,6.9348e-26,4.9387e-26,4.9272e-26,3.5243e-26,3.3801e-26,2.6914e-26,2.2406e-26,1.2065e-26,1.1028e-26,6.7857e-27,4.3114e-27,9.6968e-28,7.3127e-28,6.3798e-28,4.4583e-28,3.1826e-28,2.7994e-28,2.1657e-28,1.8006e-28,1.4315e-28,9.7922e-29,9.7723e-29,4.9235e-29,4.1016e-29,3.9481e-29,3.8687e-29,1.9198e-29,1.8894e-29,1.7602e-29,1.6687e-29,1.4531e-29,1.1552e-29,9.4004e-30,3.7541e-30,5.2194e-31,2.8876e-31,2.74e-31,2.6238e-31,2.2801e-31,2.1087e-31,1.0018e-31,6.1221e-32,4.2736e-32,3.4934e-32,2.291e-32,1.5991e-32,1.4955e-32,9.0094e-33,6.7573e-33,4.7527e-33,2.6951e-33,1.2725e-33,1.2128e-33,9.3998e-34,7.8737e-34,7.2711e-34,3.1011e-34,2.4541e-34,8.4273e-35,6.2581e-35,3.7001e-35,2.7909e-35,2.547e-35,1.5461e-35,1.4493e-35,1.2582e-35,9.2332e-36,5.1089e-36 1,0.399,0.42607,0.42744,0.43577,0.44223,0.45076,0.46751,0.50814,0.53445,0.53852,0.55968,0.56315,0.57695,0.61065,0.62123,0.62858,0.66031,0.66573,0.67174,0.69181,0.69395,0.69518,0.71032,0.71919,0.71948,0.73634,0.73786,0.74539,0.74638,0.74734,0.79684,0.84092,0.84472,0.85687,0.8674,0.87537,0.88456,0.8949,0.9121,0.921,0.93459,0.95003,0.95136,0.95413,0.95662,0.96854,0.96856,0.98949,0.9906,0.9912,0.99493,0.99517,0.99938,0.99995,1,0.99974,0.99931,0.99809,0.99758,0.99176,0.98647,0.96166,0.95278,0.94961,0.94372,0.92601,0.92212,0.91859,0.90114,0.8835,0.87667,0.87097,0.84949,0.81641,0.77929,0.7532,0.74763,0.69675,0.67876,0.67032,0.66656,0.65129,0.58802,0.58598,0.57494,0.55746,0.55403,0.52924,0.46239,0.46153,0.44321,0.4367,0.36542,0.34845,0.34722,0.33244,0.31299,0.31261,0.31106,0.29969,0.29959,0.28949,0.28564,0.23401,0.21342,0.21274,0.19095,0.18539,0.177,0.17303,0.17071,0.16817,0.16735,0.16517,0.15661,0.15564,0.15365,0.15202,0.1402,0.12768,0.11285,0.10762,0.097194,0.08651,0.082304,0.080199,0.059706,0.057643,0.056165,0.053327,0.049891,0.047067,0.044873,0.044492,0.044254,0.041644,0.035398,0.034972,0.032766,0.029585,0.027945,0.027686,0.019805,0.019733,0.018437,0.016116,0.015722,0.014328,0.014016,0.011992,0.010817,0.0085195,0.0084703,0.0063996,0.0061951,0.0061311,0.0050862,0.0050255,0.0046941,0.004288,0.0041678,0.004079,0.0037456,0.0036928,0.0036588,0.0034175,0.0033365,0.0033156,0.0031318,0.003068,0.0027359,0.0022571,0.0021804,0.0021603,0.0019797,0.0019092,0.0016456,0.0012631,0.0011625,0.0010185,0.00096985,0.00084598,0.00073757,0.00072932,0.00072298,0.00072225,0.00069343,0.00069104,0.00060781,0.00057285,0.00051218,0.00050962,0.00049437,0.00040628,0.00040395,0.00036761,0.00033003,0.00027178,0.00026488,0.00024609,0.00024206,0.00023216,0.00021641,0.00019423,0.00019365,0.00015118,0.00011361,0.00011019,0.00010651,0.00010539,8.8524e-05,7.9454e-05,5.4871e-05,5.3808e-05,5.1724e-05,4.8383e-05,3.769e-05,2.8969e-05,2.1649e-05,1.982e-05,1.8801e-05,1.6433e-05,1.2495e-05,1.1067e-05,9.4477e-06,7.3947e-06,5.9744e-06,5.748e-06,3.7894e-06,3.5855e-06,3.5137e-06,3.1842e-06,3.0616e-06,2.2334e-06,1.9488e-06,1.8733e-06,1.8658e-06,1.7169e-06,1.5344e-06,1.4563e-06,1.4227e-06,9.4339e-07,9.429e-07,6.4819e-07,4.2009e-07,2.8002e-07,1.9192e-07,1.6279e-07,1.559e-07,1.4088e-07,1.2891e-07,1.045e-07,1.0211e-07,6.7899e-08,6.121e-08,4.9687e-08,3.8291e-08,3.2671e-08,3.2089e-08,2.819e-08,2.5838e-08,2.0846e-08,1.5118e-08,1.4667e-08,1.2726e-08,1.0162e-08,8.4581e-09,8.3857e-09,4.4257e-09,3.9834e-09,3.7868e-09,3.3248e-09,3.1072e-09,2.7923e-09,2.3543e-09,2.1973e-09,1.9954e-09,1.7081e-09,1.3959e-09,1.1506e-09,1.1283e-09,8.902e-10,7.6121e-10,6.6288e-10,4.8337e-10,4.1819e-10,3.967e-10,3.2887e-10,3.2515e-10,2.9942e-10,2.8871e-10,1.7788e-10,1.57e-10,1.4955e-10,1.1973e-10,1.0519e-10,1.0314e-10,7.6143e-11,4.2325e-11,3.5499e-11,3.2417e-11,2.6221e-11,2.5746e-11,2.0264e-11,1.9739e-11,1.4474e-11,1.2052e-11,8.3321e-12,8.0576e-12,7.808e-12,7.672e-12,7.2431e-12,6.9108e-12,6.7156e-12,4.9617e-12,4.6563e-12,2.5417e-12,2.0727e-12,1.8099e-12,1.7151e-12,1.0961e-12,1.0875e-12,9.3759e-13,8.7468e-13,6.1636e-13,6.0955e-13,5.9375e-13,4.5698e-13,4.2498e-13,4.1415e-13,3.8283e-13,3.458e-13,3.1404e-13,2.9869e-13,1.8217e-13,1.7901e-13,1.3798e-13,9.3158e-14,6.424e-14,3.8189e-14,3.7907e-14,3.1486e-14,2.491e-14,1.826e-14,1.8197e-14,1.6337e-14,9.818e-15,8.7188e-15,8.6056e-15,4.6946e-15,4.1073e-15,3.8024e-15,2.9972e-15,2.3659e-15,1.5276e-15,1.4262e-15,1.0229e-15,4.8371e-16,4.7887e-16,4.5025e-16,3.9691e-16,3.5949e-16,3.1812e-16,2.7533e-16,7.0977e-17,4.9565e-17,2.8507e-17,1.8856e-17,1.8474e-17,1.7625e-17,9.4855e-18,8.204e-18,8.1057e-18,4.4633e-18,1.6155e-18,1.5639e-18,1.1569e-18,1.0868e-18,5.4164e-19,4.4533e-19,2.901e-19,2.3182e-19,1.8083e-19,1.7228e-19,1.2817e-19,1.2165e-19,1.1867e-19,6.0415e-20,4.9329e-20,4.5291e-20,3.4301e-20,3.142e-20,2.1001e-20,1.9153e-20,1.5909e-20,1.0005e-20,9.9616e-21,7.9661e-21,7.3863e-21,7.3855e-21,4.5036e-21,4.4335e-21,3.6135e-21,2.9107e-21,1.8136e-21,1.1821e-21,8.6848e-22,5.3093e-22,3.3611e-22,1.8524e-22,1.8079e-22,1.1408e-22,7.3138e-23,5.6234e-23,2.774e-23,2.2529e-23,1.475e-23,1.1473e-23,6.7782e-24,6.4106e-24,5.7141e-24,4.378e-24,2.5024e-24,1.4046e-24,1.0332e-24,7.5993e-25,6.4719e-25,6.3271e-25,4.7252e-25,3.3695e-25,1.1929e-25,9.0351e-26,7.7511e-26,5.5218e-26,5.5089e-26,3.9416e-26,3.7806e-26,3.0109e-26,2.5071e-26,1.3507e-26,1.2348e-26,7.6012e-27,4.8316e-27,1.0882e-27,8.2086e-28,7.1623e-28,5.0068e-28,3.5752e-28,3.1451e-28,2.4338e-28,2.0238e-28,1.6093e-28,1.1012e-28,1.099e-28,5.5403e-29,4.6162e-29,4.4436e-29,4.3543e-29,2.1622e-29,2.128e-29,1.9826e-29,1.8796e-29,1.637e-29,1.3016e-29,1.0594e-29,4.2342e-30,5.8971e-31,3.2642e-31,3.0976e-31,2.9663e-31,2.5781e-31,2.3844e-31,1.1335e-31,6.9299e-32,4.839e-32,3.9563e-32,2.5955e-32,1.8122e-32,1.6949e-32,1.0215e-32,7.6634e-33,5.3916e-33,3.0588e-33,1.4452e-33,1.3774e-33,1.0678e-33,8.9457e-34,8.2616e-34,3.526e-34,2.7909e-34,9.5925e-35,7.1251e-35,4.2145e-35,3.1797e-35,2.902e-35,1.7623e-35,1.6521e-35,1.4343e-35,1.0529e-35,5.8287e-36 1,0.38681,0.41351,0.41487,0.4231,0.42948,0.43792,0.45449,0.49477,0.52091,0.52496,0.54602,0.54947,0.56324,0.59688,0.60746,0.61482,0.64663,0.65207,0.6581,0.67828,0.68044,0.68168,0.69693,0.70587,0.70617,0.72319,0.72473,0.73235,0.73335,0.73432,0.78454,0.82954,0.83344,0.84591,0.85674,0.86495,0.87445,0.88515,0.90302,0.91232,0.92658,0.94291,0.94432,0.94727,0.94993,0.96275,0.96277,0.98597,0.98726,0.98795,0.99241,0.99269,0.99833,0.99945,0.99974,1,0.9999,0.99923,0.9989,0.99441,0.98992,0.96754,0.95928,0.95632,0.95079,0.93405,0.93035,0.92699,0.91028,0.89331,0.88671,0.8812,0.86035,0.82809,0.79168,0.76598,0.76049,0.71014,0.69228,0.68389,0.68015,0.66496,0.60178,0.59974,0.58868,0.57116,0.56772,0.54283,0.47549,0.47462,0.45611,0.44953,0.37728,0.36003,0.35878,0.34374,0.32392,0.32354,0.32196,0.31036,0.31025,0.29995,0.29601,0.24318,0.22205,0.22136,0.19895,0.19322,0.18459,0.18049,0.17811,0.17549,0.17465,0.1724,0.16357,0.16256,0.1605,0.15883,0.14662,0.13366,0.1183,0.11288,0.10205,0.090942,0.086564,0.084372,0.062996,0.06084,0.059294,0.056325,0.052729,0.049771,0.047472,0.047072,0.046823,0.044086,0.037527,0.03708,0.034761,0.031413,0.029687,0.029414,0.0211,0.021024,0.019653,0.017197,0.016781,0.015304,0.014973,0.012827,0.011579,0.0091355,0.0090832,0.0068766,0.0066584,0.0065901,0.0054742,0.0054093,0.005055,0.0046205,0.0044919,0.0043968,0.0040398,0.0039833,0.0039468,0.0036882,0.0036014,0.003579,0.0033819,0.0033135,0.002957,0.0024426,0.0023601,0.0023386,0.0021442,0.0020683,0.0017845,0.001372,0.0012634,0.0011077,0.0010552,0.00092115,0.00080377,0.00079483,0.00078796,0.00078717,0.00075595,0.00075335,0.00066312,0.0006252,0.00055935,0.00055658,0.00054001,0.00044429,0.00044176,0.00040224,0.00036134,0.00029788,0.00029037,0.00026988,0.00026549,0.00025468,0.0002375,0.00021328,0.00021265,0.00016624,0.00012512,0.00012137,0.00011734,0.00011612,9.762e-05,8.7668e-05,6.0659e-05,5.949e-05,5.7198e-05,5.3521e-05,4.1746e-05,3.2128e-05,2.4044e-05,2.2023e-05,2.0895e-05,1.8276e-05,1.3915e-05,1.2332e-05,1.0535e-05,8.2553e-06,6.6762e-06,6.4244e-06,4.2434e-06,4.0161e-06,3.936e-06,3.5685e-06,3.4317e-06,2.507e-06,2.1888e-06,2.1043e-06,2.0959e-06,1.9295e-06,1.7251e-06,1.6377e-06,1.6002e-06,1.0629e-06,1.0624e-06,7.315e-07,4.7495e-07,3.1713e-07,2.1769e-07,1.8478e-07,1.7699e-07,1.6e-07,1.4646e-07,1.1882e-07,1.1611e-07,7.7337e-08,6.9747e-08,5.6663e-08,4.3712e-08,3.7319e-08,3.6657e-08,3.2218e-08,2.9541e-08,2.3853e-08,1.732e-08,1.6806e-08,1.4588e-08,1.1659e-08,9.711e-09,9.6282e-09,5.0935e-09,4.5862e-09,4.3606e-09,3.8305e-09,3.5806e-09,3.219e-09,2.7157e-09,2.5352e-09,2.3031e-09,1.9726e-09,1.6133e-09,1.3307e-09,1.3049e-09,1.0304e-09,8.8161e-10,7.6809e-10,5.6071e-10,4.8534e-10,4.6049e-10,3.82e-10,3.7769e-10,3.479e-10,3.355e-10,2.0705e-10,1.8282e-10,1.7417e-10,1.3955e-10,1.2266e-10,1.2028e-10,8.8881e-11,4.9501e-11,4.1542e-11,3.7946e-11,3.0716e-11,3.016e-11,2.3757e-11,2.3143e-11,1.6987e-11,1.4154e-11,9.7962e-12,9.4745e-12,9.1819e-12,9.0224e-12,8.5196e-12,8.13e-12,7.901e-12,5.8431e-12,5.4846e-12,2.9995e-12,2.4475e-12,2.1381e-12,2.0265e-12,1.2968e-12,1.2867e-12,1.1099e-12,1.0356e-12,7.3053e-13,7.2249e-13,7.0382e-13,5.4213e-13,5.0427e-13,4.9146e-13,4.544e-13,4.1057e-13,3.7297e-13,3.548e-13,2.1671e-13,2.1296e-13,1.6427e-13,1.1104e-13,7.6653e-14,4.5637e-14,4.53e-14,3.7648e-14,2.9804e-14,2.1867e-14,2.1792e-14,1.9571e-14,1.1778e-14,1.0463e-14,1.0328e-14,5.6437e-15,4.9395e-15,4.5738e-15,3.6077e-15,2.8496e-15,1.8422e-15,1.7202e-15,1.2348e-15,5.8514e-16,5.793e-16,5.4477e-16,4.804e-16,4.3522e-16,3.8526e-16,3.3357e-16,8.6301e-17,6.0323e-17,3.4745e-17,2.3006e-17,2.2542e-17,2.1509e-17,1.1594e-17,1.0031e-17,9.9114e-18,5.4658e-18,1.9835e-18,1.9203e-18,1.4215e-18,1.3357e-18,6.6682e-19,5.4852e-19,3.577e-19,2.86e-19,2.2323e-19,2.127e-19,1.5835e-19,1.5031e-19,1.4664e-19,7.4777e-20,6.1086e-20,5.6097e-20,4.2514e-20,3.8951e-20,2.6059e-20,2.3771e-20,1.9754e-20,1.2437e-20,1.2383e-20,9.9077e-21,9.1883e-21,9.1872e-21,5.6088e-21,5.5218e-21,4.5026e-21,3.6287e-21,2.2634e-21,1.4768e-21,1.0858e-21,6.6451e-22,4.2112e-22,2.324e-22,2.2684e-22,1.4328e-22,9.1952e-23,7.0741e-23,3.4952e-23,2.8399e-23,1.8611e-23,1.4484e-23,8.567e-24,8.1033e-24,7.2247e-24,5.5386e-24,3.1697e-24,1.7814e-24,1.3113e-24,9.6507e-25,8.2217e-25,8.0381e-25,6.0068e-25,4.2866e-25,1.5209e-25,1.1526e-25,9.8914e-26,7.0516e-26,7.0351e-26,5.0372e-26,4.8318e-26,3.85e-26,3.2069e-26,1.73e-26,1.5819e-26,9.7473e-27,6.2015e-27,1.401e-27,1.0574e-27,9.2291e-28,6.4563e-28,4.6134e-28,4.0594e-28,3.1429e-28,2.6145e-28,2.08e-28,1.4243e-28,1.4215e-28,7.1758e-29,5.9811e-29,5.758e-29,5.6424e-29,2.8057e-29,2.7614e-29,2.5731e-29,2.4397e-29,2.1254e-29,1.6907e-29,1.3766e-29,5.512e-30,7.7062e-31,4.2704e-31,4.0528e-31,3.8814e-31,3.3743e-31,3.1213e-31,1.486e-31,9.0928e-32,6.3537e-32,5.1967e-32,3.4119e-32,2.3838e-32,2.2298e-32,1.3452e-32,1.0097e-32,7.1084e-33,4.0371e-33,1.91e-33,1.8206e-33,1.4121e-33,1.1834e-33,1.093e-33,4.6723e-34,3.6998e-34,1.2741e-34,9.4688e-35,5.6062e-35,4.2318e-35,3.8628e-35,2.3479e-35,2.2014e-35,1.9117e-35,1.4041e-35,7.7809e-36 1,0.37915,0.40562,0.40697,0.41512,0.42145,0.42983,0.44628,0.48632,0.51234,0.51637,0.53736,0.54081,0.55454,0.58814,0.59871,0.60607,0.63791,0.64336,0.64941,0.66964,0.67181,0.67305,0.68836,0.69735,0.69764,0.71476,0.71631,0.72398,0.72498,0.72596,0.77662,0.82217,0.82613,0.83879,0.84981,0.85817,0.86785,0.87877,0.89707,0.90661,0.92128,0.93815,0.93962,0.94269,0.94545,0.95883,0.95885,0.98348,0.98488,0.98564,0.99054,0.99086,0.99739,0.99887,0.99931,0.9999,1,0.99969,0.99947,0.99582,0.99185,0.97103,0.96318,0.96036,0.95506,0.93895,0.93537,0.93211,0.9159,0.89936,0.89292,0.88753,0.8671,0.83537,0.79944,0.77402,0.76857,0.71859,0.70083,0.69247,0.68875,0.67361,0.61053,0.60849,0.59743,0.57989,0.57645,0.5515,0.48388,0.483,0.46439,0.45776,0.38492,0.3675,0.36623,0.35103,0.33098,0.33059,0.329,0.31725,0.31715,0.30671,0.30272,0.24913,0.22765,0.22695,0.20416,0.19833,0.18953,0.18536,0.18293,0.18026,0.1794,0.17711,0.1681,0.16708,0.16498,0.16327,0.15081,0.13758,0.12187,0.11632,0.10523,0.093851,0.089363,0.087114,0.065163,0.062946,0.061356,0.058302,0.054602,0.051556,0.049188,0.048777,0.04852,0.045699,0.038937,0.038475,0.036082,0.032625,0.030842,0.03056,0.02196,0.021882,0.020462,0.017918,0.017486,0.015954,0.015611,0.013383,0.012087,0.0095475,0.0094931,0.0071962,0.0069689,0.0068977,0.0057345,0.0056669,0.0052973,0.0048439,0.0047097,0.0046104,0.0042376,0.0041786,0.0041405,0.0038703,0.0037796,0.0037562,0.0035502,0.0034787,0.0031059,0.0025677,0.0024813,0.0024587,0.0022552,0.0021757,0.0018783,0.0014456,0.0013316,0.0011682,0.0011129,0.0009721,0.00084868,0.00083927,0.00083205,0.00083122,0.00079837,0.00079564,0.00070069,0.00066076,0.00059141,0.00058849,0.00057104,0.00047016,0.00046748,0.00042581,0.00038267,0.00031568,0.00030775,0.00028611,0.00028147,0.00027005,0.00025189,0.00022629,0.00022563,0.00017653,0.000133,0.00012903,0.00012476,0.00012346,0.00010385,9.33e-05,6.4635e-05,6.3393e-05,6.0958e-05,5.7052e-05,4.4536e-05,3.4304e-05,2.5696e-05,2.3542e-05,2.2341e-05,1.9548e-05,1.4896e-05,1.3206e-05,1.1287e-05,8.8512e-06,7.1627e-06,6.8934e-06,4.5586e-06,4.3151e-06,4.2293e-06,3.8356e-06,3.6889e-06,2.6973e-06,2.3559e-06,2.2652e-06,2.2562e-06,2.0775e-06,1.8581e-06,1.7641e-06,1.7238e-06,1.1464e-06,1.1458e-06,7.8973e-07,5.1335e-07,3.4314e-07,2.3578e-07,2.0021e-07,1.918e-07,1.7343e-07,1.5879e-07,1.289e-07,1.2596e-07,8.3986e-08,7.5762e-08,6.1582e-08,4.7537e-08,4.0601e-08,3.9882e-08,3.5064e-08,3.2157e-08,2.5979e-08,1.8879e-08,1.8319e-08,1.5908e-08,1.2721e-08,1.0599e-08,1.0509e-08,5.568e-09,5.0147e-09,4.7685e-09,4.1901e-09,3.9174e-09,3.5226e-09,2.973e-09,2.7759e-09,2.5223e-09,2.1611e-09,1.7682e-09,1.4591e-09,1.4309e-09,1.1305e-09,9.6759e-10,8.4327e-10,6.1602e-10,5.3338e-10,5.0613e-10,4.2003e-10,4.1531e-10,3.8262e-10,3.6901e-10,2.2797e-10,2.0134e-10,1.9184e-10,1.5378e-10,1.352e-10,1.3258e-10,9.8038e-11,5.4669e-11,4.5896e-11,4.1931e-11,3.3956e-11,3.3343e-11,2.6277e-11,2.5599e-11,1.8802e-11,1.5672e-11,1.0855e-11,1.0499e-11,1.0176e-11,9.9992e-12,9.4431e-12,9.0121e-12,8.7588e-12,6.4814e-12,6.0845e-12,3.3316e-12,2.7196e-12,2.3764e-12,2.2526e-12,1.4428e-12,1.4316e-12,1.2351e-12,1.1527e-12,8.1366e-13,8.0472e-13,7.8396e-13,6.0416e-13,5.6204e-13,5.478e-13,5.0656e-13,4.5779e-13,4.1595e-13,3.9572e-13,2.4193e-13,2.3775e-13,1.8348e-13,1.2412e-13,8.574e-14,5.1096e-14,5.072e-14,4.2166e-14,3.3395e-14,2.4516e-14,2.4432e-14,2.1946e-14,1.322e-14,1.1746e-14,1.1594e-14,6.3428e-15,5.5526e-15,5.1423e-15,4.0577e-15,3.2064e-15,2.0745e-15,1.9373e-15,1.3915e-15,6.6023e-16,6.5365e-16,6.1476e-16,5.4224e-16,4.9132e-16,4.3502e-16,3.7674e-16,9.7694e-17,6.8327e-17,3.9391e-17,2.61e-17,2.5575e-17,2.4404e-17,1.3168e-17,1.1396e-17,1.126e-17,6.2156e-18,2.2592e-18,2.1873e-18,1.62e-18,1.5223e-18,7.6084e-19,6.2605e-19,4.0853e-19,3.2676e-19,2.5514e-19,2.4312e-19,1.8108e-19,1.7191e-19,1.6771e-19,8.5612e-20,6.9959e-20,6.4254e-20,4.8716e-20,4.464e-20,2.9883e-20,2.7263e-20,2.2662e-20,1.4278e-20,1.4216e-20,1.1378e-20,1.0553e-20,1.0552e-20,6.4467e-21,6.3468e-21,5.177e-21,4.1735e-21,2.6051e-21,1.7007e-21,1.251e-21,7.662e-22,4.8588e-22,2.6838e-22,2.6196e-22,1.6557e-22,1.0633e-22,8.1831e-23,4.0471e-23,3.2894e-23,2.1569e-23,1.6792e-23,9.9396e-24,9.4023e-24,8.3842e-24,6.4299e-24,3.6826e-24,2.0713e-24,1.5253e-24,1.1231e-24,9.5699e-25,9.3566e-25,6.9949e-25,4.9939e-25,1.7744e-25,1.3452e-25,1.1547e-25,8.2353e-26,8.2161e-26,5.8854e-26,5.6457e-26,4.4999e-26,3.7492e-26,2.0242e-26,1.8511e-26,1.1414e-26,7.266e-27,1.6447e-27,1.2418e-27,1.084e-27,7.5867e-28,5.4235e-28,4.773e-28,3.6967e-28,3.0758e-28,2.4477e-28,1.677e-28,1.6736e-28,8.456e-29,7.0498e-29,6.7871e-29,6.6511e-29,3.3102e-29,3.2579e-29,3.036e-29,2.8789e-29,2.5084e-29,1.9959e-29,1.6256e-29,6.5163e-30,9.1324e-31,5.0644e-31,4.8067e-31,4.6036e-31,4.0029e-31,3.7031e-31,1.7645e-31,1.0804e-31,7.5525e-32,6.1787e-32,4.0587e-32,2.8369e-32,2.6538e-32,1.6019e-32,1.2029e-32,8.4717e-33,4.8146e-33,2.2798e-33,2.1733e-33,1.6861e-33,1.4133e-33,1.3055e-33,5.5862e-34,4.4247e-34,1.5256e-34,1.1342e-34,6.7193e-35,5.0736e-35,4.6317e-35,2.8169e-35,2.6413e-35,2.2941e-35,1.6855e-35,9.3467e-36 1,0.36619,0.39223,0.39356,0.4016,0.40783,0.41609,0.43233,0.47193,0.49773,0.50173,0.52258,0.52601,0.53966,0.57315,0.58371,0.59106,0.62292,0.62839,0.63445,0.65476,0.65694,0.65819,0.67359,0.68264,0.68293,0.7002,0.70176,0.7095,0.71051,0.7115,0.76283,0.80929,0.81333,0.82632,0.83763,0.84624,0.85622,0.86751,0.8865,0.89645,0.91181,0.92961,0.93116,0.93442,0.93736,0.95169,0.95171,0.97875,0.98034,0.98119,0.98686,0.98723,0.9953,0.9974,0.99809,0.99923,0.99969,1,0.99997,0.99778,0.99469,0.97658,0.96944,0.96685,0.96196,0.94694,0.94358,0.94052,0.92517,0.90939,0.90322,0.89805,0.87837,0.84761,0.81255,0.78761,0.78226,0.73298,0.71539,0.70711,0.70342,0.68839,0.62554,0.6235,0.61244,0.59489,0.59144,0.56642,0.49838,0.49749,0.4787,0.47201,0.3982,0.38048,0.37919,0.36372,0.34329,0.34289,0.34126,0.32928,0.32917,0.31851,0.31443,0.25954,0.23749,0.23676,0.2133,0.20729,0.19823,0.19392,0.19141,0.18866,0.18776,0.1854,0.1761,0.17504,0.17286,0.1711,0.1582,0.14448,0.12818,0.12241,0.11088,0.099013,0.09433,0.091983,0.069023,0.066699,0.065032,0.061828,0.057943,0.054743,0.052253,0.051821,0.051551,0.048583,0.041459,0.040972,0.038447,0.034797,0.032913,0.032615,0.023508,0.023425,0.021918,0.019215,0.018756,0.017127,0.016761,0.014388,0.013006,0.010293,0.010235,0.0077758,0.007532,0.0074557,0.0062073,0.0061347,0.0057375,0.00525,0.0051056,0.0049989,0.0045975,0.004534,0.004493,0.0042019,0.0041041,0.0040789,0.0038569,0.0037797,0.0033775,0.002796,0.0027026,0.0026782,0.002458,0.002372,0.0020498,0.0015805,0.0014567,0.0012791,0.001219,0.0010657,0.00093119,0.00092095,0.00091307,0.00091216,0.00087635,0.00087338,0.00076978,0.0007262,0.00065045,0.00064725,0.00062818,0.00051784,0.00051492,0.00046929,0.00042202,0.00034857,0.00033986,0.00031611,0.00031101,0.00029847,0.00027852,0.00025037,0.00024964,0.00019561,0.00014762,0.00014323,0.00013852,0.00013709,0.00011543,0.00010377,7.2037e-05,7.066e-05,6.7962e-05,6.3631e-05,4.9739e-05,3.8367e-05,2.8785e-05,2.6384e-05,2.5045e-05,2.193e-05,1.6735e-05,1.4846e-05,1.2699e-05,9.9708e-06,8.0775e-06,7.7752e-06,5.1525e-06,4.8786e-06,4.7821e-06,4.339e-06,4.1739e-06,3.0566e-06,2.6715e-06,2.5692e-06,2.559e-06,2.3572e-06,2.1094e-06,2.0033e-06,1.9577e-06,1.3044e-06,1.3038e-06,9.002e-07,5.8633e-07,3.9264e-07,2.7025e-07,2.2965e-07,2.2004e-07,1.9906e-07,1.8233e-07,1.4814e-07,1.4478e-07,9.6703e-08,8.7273e-08,7.1003e-08,5.487e-08,4.6895e-08,4.6068e-08,4.0525e-08,3.7179e-08,3.0063e-08,2.1875e-08,2.123e-08,1.8446e-08,1.4764e-08,1.2311e-08,1.2207e-08,6.4841e-09,5.8422e-09,5.5566e-09,4.885e-09,4.5683e-09,4.1097e-09,3.4708e-09,3.2416e-09,2.9465e-09,2.5261e-09,2.0685e-09,1.7082e-09,1.6753e-09,1.3248e-09,1.1346e-09,9.893e-10,7.2356e-10,6.2684e-10,5.9494e-10,4.9408e-10,4.8854e-10,4.5023e-10,4.3427e-10,2.6877e-10,2.3749e-10,2.2632e-10,1.8157e-10,1.5971e-10,1.5663e-10,1.1594e-10,6.4791e-11,5.4428e-11,4.9742e-11,4.0311e-11,3.9587e-11,3.1224e-11,3.0421e-11,2.2369e-11,1.8656e-11,1.2939e-11,1.2516e-11,1.2132e-11,1.1922e-11,1.1261e-11,1.0749e-11,1.0448e-11,7.7394e-12,7.267e-12,3.9873e-12,3.2571e-12,2.8474e-12,2.6996e-12,1.7316e-12,1.7182e-12,1.4832e-12,1.3845e-12,9.7842e-13,9.6771e-13,9.4283e-13,7.2722e-13,6.7669e-13,6.5959e-13,6.101e-13,5.5154e-13,5.0129e-13,4.7698e-13,2.9208e-13,2.8705e-13,2.2171e-13,1.5017e-13,1.0386e-13,6.1996e-14,6.1541e-14,5.1193e-14,4.0574e-14,2.9815e-14,2.9713e-14,2.6698e-14,1.6108e-14,1.4318e-14,1.4133e-14,7.746e-15,6.7838e-15,6.284e-15,4.9622e-15,3.9239e-15,2.542e-15,2.3744e-15,1.7072e-15,8.1181e-16,8.0374e-16,7.5605e-16,6.6711e-16,6.0465e-16,5.3555e-16,4.6399e-16,1.208e-16,8.4571e-17,4.8832e-17,3.2394e-17,3.1744e-17,3.0295e-17,1.6375e-17,1.4177e-17,1.4008e-17,7.7455e-18,2.8232e-18,2.7336e-18,2.0263e-18,1.9044e-18,9.5359e-19,7.8508e-19,5.1289e-19,4.1047e-19,3.2072e-19,3.0565e-19,2.2784e-19,2.1632e-19,2.1106e-19,1.0793e-19,8.8244e-20,8.1066e-20,6.1507e-20,5.6373e-20,3.7777e-20,3.4474e-20,2.867e-20,1.8085e-20,1.8006e-20,1.442e-20,1.3377e-20,1.3376e-20,8.1822e-21,8.0558e-21,6.5744e-21,5.303e-21,3.3141e-21,2.1659e-21,1.5944e-21,9.7774e-22,6.2074e-22,3.4337e-22,3.3518e-22,2.1209e-22,1.3635e-22,1.05e-22,5.2022e-23,4.2304e-23,2.7768e-23,2.163e-23,1.282e-23,1.2129e-23,1.0818e-23,8.3019e-24,4.7611e-24,2.6816e-24,1.9762e-24,1.4561e-24,1.2412e-24,1.2136e-24,9.079e-25,6.487e-25,2.3105e-25,1.7527e-25,1.505e-25,1.0742e-25,1.0717e-25,7.683e-26,7.3708e-26,5.8779e-26,4.8994e-26,2.6489e-26,2.4228e-26,1.4955e-26,9.5305e-27,2.1644e-27,1.6353e-27,1.4279e-27,1.0002e-27,7.1551e-28,6.2987e-28,4.8811e-28,4.063e-28,3.2349e-28,2.2181e-28,2.2136e-28,1.1201e-28,9.3423e-29,8.9949e-29,8.8151e-29,4.3938e-29,4.3246e-29,4.0307e-29,3.8225e-29,3.3315e-29,2.6522e-29,2.1611e-29,8.6798e-30,1.2215e-30,6.7824e-31,6.4379e-31,6.1664e-31,5.3634e-31,4.9625e-31,2.3683e-31,1.4515e-31,1.0155e-31,8.3109e-32,5.4641e-32,3.822e-32,3.5759e-32,2.1607e-32,1.6234e-32,1.1442e-32,6.51e-33,3.0873e-33,2.9433e-33,2.2847e-33,1.9157e-33,1.7699e-33,7.5862e-34,6.0117e-34,2.0772e-34,1.5452e-34,9.1634e-35,6.9229e-35,6.3211e-35,3.8481e-35,3.6086e-35,3.1351e-35,2.3048e-35,1.2796e-35 1,0.36221,0.38812,0.38944,0.39744,0.40365,0.41187,0.42804,0.4675,0.49322,0.49721,0.51801,0.52143,0.53506,0.56851,0.57906,0.5864,0.61826,0.62373,0.6298,0.65013,0.65231,0.65356,0.66898,0.67805,0.67835,0.69565,0.69722,0.70498,0.706,0.70699,0.75851,0.80523,0.8093,0.82238,0.83379,0.84246,0.85254,0.86394,0.88314,0.89321,0.90878,0.92686,0.92844,0.93175,0.93475,0.94936,0.94938,0.97717,0.97881,0.9797,0.9856,0.98599,0.99453,0.99681,0.99758,0.9989,0.99947,0.99997,1,0.99826,0.99545,0.97818,0.97126,0.96875,0.96399,0.94932,0.94603,0.94302,0.92795,0.91241,0.90633,0.90123,0.88179,0.85134,0.81655,0.79178,0.78646,0.73741,0.71988,0.71162,0.70794,0.69295,0.63019,0.62815,0.6171,0.59954,0.5961,0.57106,0.5029,0.50201,0.48317,0.47646,0.40236,0.38455,0.38326,0.3677,0.34715,0.34675,0.34512,0.33306,0.33295,0.32222,0.31812,0.26283,0.24059,0.23986,0.21619,0.21013,0.20098,0.19663,0.19409,0.19131,0.19042,0.18803,0.17863,0.17756,0.17536,0.17358,0.16054,0.14668,0.13018,0.12435,0.11267,0.10066,0.095915,0.093537,0.070257,0.0679,0.066208,0.062957,0.059013,0.055764,0.053236,0.052797,0.052522,0.049508,0.042269,0.041774,0.039208,0.035496,0.033579,0.033276,0.024007,0.023922,0.022388,0.019634,0.019166,0.017506,0.017133,0.014713,0.013303,0.010535,0.010475,0.0079639,0.0077148,0.0076369,0.006361,0.0062868,0.0058807,0.0053822,0.0052345,0.0051253,0.0047147,0.0046497,0.0046077,0.0043099,0.0042098,0.0041841,0.0039568,0.0038778,0.003466,0.0028705,0.0027749,0.0027499,0.0025243,0.0024361,0.0021059,0.0016247,0.0014977,0.0013154,0.0012537,0.0010963,0.00095827,0.00094775,0.00093966,0.00093873,0.00090194,0.00089889,0.00079247,0.00074769,0.00066985,0.00066656,0.00064696,0.00053353,0.00053052,0.0004836,0.00043498,0.00035941,0.00035044,0.00032599,0.00032075,0.00030784,0.0002873,0.00025832,0.00025757,0.00020191,0.00015245,0.00014793,0.00014308,0.0001416,0.00011927,0.00010723,7.4492e-05,7.3071e-05,7.0285e-05,6.5814e-05,5.1468e-05,3.9718e-05,2.9813e-05,2.733e-05,2.5945e-05,2.2723e-05,1.7348e-05,1.5393e-05,1.317e-05,1.0345e-05,8.3833e-06,8.0701e-06,5.3514e-06,5.0673e-06,4.9673e-06,4.5076e-06,4.3364e-06,3.1771e-06,2.7774e-06,2.6712e-06,2.6606e-06,2.4511e-06,2.1938e-06,2.0836e-06,2.0363e-06,1.3576e-06,1.3569e-06,9.374e-07,6.1094e-07,4.0935e-07,2.819e-07,2.3961e-07,2.2959e-07,2.0773e-07,1.9029e-07,1.5465e-07,1.5115e-07,1.0102e-07,9.1177e-08,7.4199e-08,5.736e-08,4.9034e-08,4.817e-08,4.2381e-08,3.8886e-08,3.1452e-08,2.2896e-08,2.2221e-08,1.931e-08,1.546e-08,1.2895e-08,1.2786e-08,6.797e-09,6.1249e-09,5.8258e-09,5.1226e-09,4.7909e-09,4.3105e-09,3.6412e-09,3.4009e-09,3.0917e-09,2.6511e-09,2.1714e-09,1.7936e-09,1.7591e-09,1.3915e-09,1.1919e-09,1.0394e-09,7.6051e-10,6.5896e-10,6.2546e-10,5.1954e-10,5.1372e-10,4.7348e-10,4.5672e-10,2.8283e-10,2.4994e-10,2.382e-10,1.9114e-10,1.6816e-10,1.6492e-10,1.2212e-10,6.8289e-11,5.7377e-11,5.2443e-11,4.251e-11,4.1747e-11,3.2936e-11,3.2091e-11,2.3604e-11,1.969e-11,1.3661e-11,1.3216e-11,1.281e-11,1.2589e-11,1.1892e-11,1.1352e-11,1.1034e-11,8.1762e-12,7.6777e-12,4.2153e-12,3.4441e-12,3.0113e-12,2.8551e-12,1.8323e-12,1.8181e-12,1.5696e-12,1.4653e-12,1.0359e-12,1.0246e-12,9.9826e-13,7.7018e-13,7.1671e-13,6.9862e-13,6.4625e-13,5.8429e-13,5.311e-13,5.0537e-13,3.0962e-13,3.043e-13,2.3509e-13,1.5929e-13,1.1021e-13,6.5821e-14,6.5339e-14,5.4361e-14,4.3095e-14,3.1677e-14,3.1568e-14,2.8369e-14,1.7124e-14,1.5223e-14,1.5027e-14,8.2405e-15,7.2178e-15,6.6865e-15,5.2812e-15,4.1771e-15,2.7072e-15,2.5288e-15,1.8187e-15,8.6546e-16,8.5687e-16,8.0607e-16,7.1133e-16,6.4478e-16,5.7116e-16,4.9491e-16,1.29e-16,9.0345e-17,5.2192e-17,3.4635e-17,3.394e-17,3.2393e-17,1.7518e-17,1.5169e-17,1.4988e-17,8.2917e-18,3.0249e-18,2.929e-18,2.1717e-18,2.0412e-18,1.0227e-18,8.4208e-19,5.5033e-19,4.4052e-19,3.4427e-19,3.281e-19,2.4464e-19,2.3228e-19,2.2663e-19,1.1596e-19,9.4824e-20,8.7116e-20,6.6113e-20,6.0599e-20,4.0622e-20,3.7073e-20,3.0835e-20,1.9459e-20,1.9374e-20,1.5518e-20,1.4397e-20,1.4395e-20,8.8093e-21,8.6732e-21,7.0794e-21,5.7113e-21,3.5706e-21,2.3344e-21,1.7188e-21,1.0544e-21,6.6967e-22,3.7061e-22,3.6177e-22,2.29e-22,1.4727e-22,1.1344e-22,5.623e-23,4.5732e-23,3.0028e-23,2.3395e-23,1.3871e-23,1.3124e-23,1.1707e-23,8.9857e-24,5.1554e-24,2.9049e-24,2.1412e-24,1.578e-24,1.3453e-24,1.3154e-24,9.8429e-25,7.0345e-25,2.5074e-25,1.9025e-25,1.6337e-25,1.1664e-25,1.1637e-25,8.3442e-26,8.0054e-26,6.3851e-26,5.3228e-26,2.8791e-26,2.6335e-26,1.6261e-26,1.0366e-26,2.3566e-27,1.7808e-27,1.5552e-27,1.0896e-27,7.7964e-28,6.8639e-28,5.32e-28,4.4289e-28,3.5268e-28,2.4189e-28,2.414e-28,1.2221e-28,1.0194e-28,9.815e-29,9.6189e-29,4.7967e-29,4.7212e-29,4.4005e-29,4.1734e-29,3.6377e-29,2.8964e-29,2.3604e-29,9.486e-30,1.3367e-30,7.4248e-31,7.0479e-31,6.7509e-31,5.8723e-31,5.4337e-31,2.5944e-31,1.5906e-31,1.113e-31,9.1104e-32,5.9913e-32,4.1918e-32,3.922e-32,2.3707e-32,1.7814e-32,1.2558e-32,7.1479e-33,3.3914e-33,3.2333e-33,2.5102e-33,2.105e-33,1.9449e-33,8.3408e-34,6.6106e-34,2.2856e-34,1.7005e-34,1.0088e-34,7.6228e-35,6.9605e-35,4.2387e-35,3.975e-35,3.4537e-35,2.5395e-35,1.4104e-35 1,0.3324,0.35721,0.35848,0.36616,0.37213,0.38005,0.39566,0.4339,0.45898,0.46288,0.48325,0.4866,0.5,0.53299,0.54345,0.55073,0.58246,0.58793,0.59399,0.61439,0.61658,0.61784,0.63338,0.64254,0.64284,0.66037,0.66196,0.66984,0.67088,0.67189,0.72466,0.77318,0.77745,0.79118,0.80322,0.81241,0.82314,0.83533,0.85603,0.86698,0.88406,0.90419,0.90597,0.9097,0.91309,0.92983,0.92986,0.96316,0.96524,0.96636,0.97403,0.97456,0.98667,0.99039,0.99176,0.99441,0.99582,0.99778,0.99826,1,0.99934,0.98867,0.9835,0.98156,0.97783,0.96589,0.96314,0.96062,0.94773,0.93415,0.92876,0.92421,0.90671,0.87881,0.84636,0.82295,0.81789,0.77084,0.75387,0.74584,0.74226,0.72763,0.66583,0.6638,0.65282,0.63534,0.6319,0.60684,0.53801,0.53711,0.51793,0.51109,0.43497,0.41654,0.4152,0.39904,0.37763,0.37722,0.37551,0.3629,0.36279,0.35155,0.34725,0.28896,0.26535,0.26457,0.23932,0.23283,0.22302,0.21835,0.21562,0.21263,0.21167,0.2091,0.19897,0.19782,0.19545,0.19353,0.17943,0.16438,0.14642,0.14004,0.12725,0.11404,0.10881,0.10618,0.08036,0.077731,0.075843,0.07221,0.067796,0.064153,0.061314,0.060821,0.060512,0.057121,0.048952,0.048392,0.045487,0.041275,0.039095,0.03875,0.028159,0.028062,0.026299,0.023129,0.022589,0.020671,0.02024,0.017436,0.015797,0.012568,0.012498,0.0095522,0.009259,0.0091672,0.0076618,0.0075741,0.0070936,0.0065028,0.0063276,0.0061979,0.0057101,0.0056327,0.0055828,0.0052282,0.005109,0.0050783,0.0048072,0.0047129,0.0042208,0.0035071,0.0033922,0.0033622,0.0030909,0.0029848,0.0025865,0.0020041,0.0018499,0.0016282,0.0015531,0.0013611,0.0011922,0.0011793,0.0011694,0.0011683,0.0011232,0.0011195,0.00098888,0.00093384,0.00083805,0.000834,0.00080984,0.00066983,0.00066611,0.00060805,0.00054779,0.00045391,0.00044275,0.00041231,0.00040576,0.00038967,0.00036404,0.00032783,0.00032689,0.00025715,0.00019494,0.00018924,0.00018311,0.00018125,0.00015303,0.00013779,9.6199e-05,9.4388e-05,9.0837e-05,8.5134e-05,6.6796e-05,5.1723e-05,3.897e-05,3.5765e-05,3.3975e-05,2.9806e-05,2.2834e-05,2.0291e-05,1.7395e-05,1.3704e-05,1.1134e-05,1.0723e-05,7.1461e-06,6.7712e-06,6.6391e-06,6.0317e-06,5.8053e-06,4.269e-06,3.7377e-06,3.5964e-06,3.5823e-06,3.3035e-06,2.9605e-06,2.8134e-06,2.7502e-06,1.8422e-06,1.8412e-06,1.2773e-06,8.3644e-07,5.6291e-07,3.8921e-07,3.314e-07,3.1769e-07,2.8774e-07,2.6384e-07,2.149e-07,2.1008e-07,1.4099e-07,1.274e-07,1.0389e-07,8.0528e-08,6.895e-08,6.7747e-08,5.9683e-08,5.4809e-08,4.4426e-08,3.2443e-08,3.1496e-08,2.7409e-08,2.1992e-08,1.8376e-08,1.8222e-08,9.7464e-09,8.7915e-09,8.3662e-09,7.3654e-09,6.8928e-09,6.2079e-09,5.2524e-09,4.909e-09,4.4667e-09,3.8357e-09,3.1475e-09,2.6045e-09,2.5549e-09,2.0254e-09,1.7373e-09,1.517e-09,1.1131e-09,9.6574e-10,9.1708e-10,7.6305e-10,7.5459e-10,6.9599e-10,6.7157e-10,4.1766e-10,3.695e-10,3.523e-10,2.8325e-10,2.4947e-10,2.4471e-10,1.8169e-10,1.0211e-10,8.5922e-11,7.8593e-11,6.3823e-11,6.2686e-11,4.9556e-11,4.8295e-11,3.5615e-11,2.9755e-11,2.0708e-11,2.0038e-11,1.9428e-11,1.9096e-11,1.8047e-11,1.7234e-11,1.6755e-11,1.2447e-11,1.1694e-11,6.452e-12,5.2802e-12,4.6217e-12,4.3839e-12,2.8235e-12,2.8017e-12,2.4218e-12,2.262e-12,1.6036e-12,1.5862e-12,1.5457e-12,1.195e-12,1.1127e-12,1.0848e-12,1.0041e-12,9.0858e-13,8.2649e-13,7.8676e-13,4.8386e-13,4.7561e-13,3.6818e-13,2.5022e-13,1.7361e-13,1.0409e-13,1.0334e-13,8.6094e-14,6.8371e-14,5.0372e-14,5.0201e-14,4.5149e-14,2.7356e-14,2.434e-14,2.4028e-14,1.3235e-14,1.1604e-14,1.0756e-14,8.51e-15,6.7424e-15,4.3834e-15,4.0967e-15,2.9533e-15,1.4128e-15,1.3989e-15,1.3165e-15,1.1628e-15,1.0548e-15,9.3512e-16,8.1111e-16,2.1341e-16,1.4983e-16,8.688e-17,5.7816e-17,5.6664e-17,5.4097e-17,2.9378e-17,2.5463e-17,2.5162e-17,1.3975e-17,5.1323e-18,4.9706e-18,3.6926e-18,3.4722e-18,1.7475e-18,1.4407e-18,9.4415e-19,7.5683e-19,5.9241e-19,5.6476e-19,4.2188e-19,4.007e-19,3.9102e-19,2.0092e-19,1.6451e-19,1.5122e-19,1.1496e-19,1.0543e-19,7.0853e-20,6.4699e-20,5.3875e-20,3.4095e-20,3.3948e-20,2.7229e-20,2.5273e-20,2.527e-20,1.5511e-20,1.5273e-20,1.2482e-20,1.0083e-20,6.3218e-21,4.1438e-21,3.0568e-21,1.8807e-21,1.1977e-21,6.6517e-22,6.4941e-22,4.1219e-22,2.6577e-22,2.0503e-22,1.0205e-22,8.3097e-23,5.4696e-23,4.2676e-23,2.538e-23,2.402e-23,2.1441e-23,1.6482e-23,9.4862e-24,5.3626e-24,3.9597e-24,2.9232e-24,2.4944e-24,2.4392e-24,1.8282e-24,1.309e-24,4.6928e-25,3.5661e-25,3.0649e-25,2.1923e-25,2.1872e-25,1.5712e-25,1.5078e-25,1.2041e-25,1.0048e-25,5.453e-26,4.9903e-26,3.0895e-26,1.9742e-26,4.5241e-27,3.4238e-27,2.9921e-27,2.1002e-27,1.5055e-27,1.3263e-27,1.0294e-27,8.5777e-28,6.8388e-28,4.6997e-28,4.6903e-28,2.3829e-28,1.9896e-28,1.916e-28,1.8779e-28,9.3985e-29,9.2514e-29,8.6261e-29,8.1831e-29,7.1378e-29,5.6898e-29,4.6418e-29,1.8742e-29,2.6674e-30,1.486e-30,1.4109e-30,1.3518e-30,1.1766e-30,1.0892e-30,5.2197e-31,3.208e-31,2.2487e-31,1.8425e-31,1.2142e-31,8.51e-32,7.9648e-32,4.8262e-32,3.6318e-32,2.5646e-32,1.4637e-32,6.9699e-33,6.6466e-33,5.1663e-33,4.3362e-33,4.0079e-33,1.7257e-33,1.3693e-33,4.7583e-34,3.5452e-34,2.1083e-34,1.5952e-34,1.4572e-34,8.8947e-35,8.344e-35,7.2545e-35,5.3419e-35,2.975e-35 1,0.31469,0.33879,0.34002,0.3475,0.35331,0.36103,0.37625,0.41367,0.43828,0.44211,0.46216,0.46547,0.47868,0.5113,0.52166,0.52889,0.56043,0.56588,0.57193,0.59229,0.59448,0.59574,0.61129,0.62048,0.62078,0.63838,0.63998,0.64791,0.64896,0.64997,0.70331,0.75273,0.7571,0.77118,0.78356,0.79303,0.8041,0.81672,0.83825,0.8497,0.86763,0.88893,0.89082,0.8948,0.89842,0.91639,0.91642,0.95296,0.95529,0.95656,0.96528,0.96589,0.98015,0.98474,0.98647,0.98992,0.99185,0.99469,0.99545,0.99934,1,0.99346,0.9894,0.98783,0.98475,0.97456,0.97216,0.96995,0.95848,0.94617,0.94124,0.93706,0.92084,0.89465,0.86379,0.84132,0.83645,0.79086,0.77429,0.76644,0.76294,0.74859,0.68762,0.68561,0.67472,0.65734,0.65392,0.62893,0.55992,0.55901,0.53968,0.53277,0.45561,0.43683,0.43546,0.41897,0.39707,0.39664,0.3949,0.38198,0.38186,0.37033,0.36591,0.30584,0.28139,0.28058,0.25436,0.24761,0.23739,0.23252,0.22968,0.22657,0.22556,0.22288,0.2123,0.21109,0.20862,0.2066,0.19184,0.17605,0.15715,0.15044,0.13693,0.12295,0.11741,0.11463,0.087154,0.084349,0.082332,0.07845,0.073728,0.069827,0.066784,0.066254,0.065924,0.062284,0.053501,0.052898,0.049767,0.045223,0.042868,0.042495,0.031019,0.030913,0.028997,0.025545,0.024956,0.022864,0.022393,0.019329,0.017534,0.013989,0.013913,0.010668,0.010344,0.010243,0.0085792,0.008482,0.00795,0.0072952,0.0071009,0.006957,0.0064154,0.0063295,0.006274,0.0058799,0.0057472,0.0057131,0.0054114,0.0053065,0.0047582,0.0039617,0.0038333,0.0037997,0.0034963,0.0033775,0.0029313,0.0022773,0.0021038,0.0018541,0.0017694,0.0015527,0.0013619,0.0013473,0.0013361,0.0013348,0.0012838,0.0012796,0.0011317,0.0010693,0.00096062,0.00095603,0.0009286,0.00076945,0.00076523,0.00069914,0.00063047,0.00052333,0.00051059,0.00047579,0.00046831,0.0004499,0.00042057,0.0003791,0.00037803,0.00029803,0.00022648,0.00021992,0.00021286,0.00021071,0.00017817,0.00016057,0.00011245,0.00011035,0.00010623,9.9616e-05,7.8317e-05,6.0773e-05,4.5894e-05,4.2149e-05,4.0056e-05,3.5178e-05,2.7006e-05,2.4021e-05,2.0617e-05,1.6273e-05,1.3242e-05,1.2757e-05,8.5276e-06,8.0835e-06,7.9269e-06,7.2069e-06,6.9383e-06,5.1137e-06,4.4817e-06,4.3135e-06,4.2967e-06,3.9646e-06,3.5557e-06,3.3803e-06,3.305e-06,2.2201e-06,2.219e-06,1.5433e-06,1.0136e-06,6.84e-07,4.7412e-07,4.0413e-07,3.8752e-07,3.5122e-07,3.2222e-07,2.6281e-07,2.5696e-07,1.729e-07,1.5633e-07,1.2766e-07,9.911e-08,8.4944e-08,8.3472e-08,7.3595e-08,6.7621e-08,5.4883e-08,4.0158e-08,3.8993e-08,3.3962e-08,2.7288e-08,2.2826e-08,2.2635e-08,1.2153e-08,1.0969e-08,1.0442e-08,9.1995e-09,8.6127e-09,7.7616e-09,6.5735e-09,6.1462e-09,5.5955e-09,4.8094e-09,3.951e-09,3.273e-09,3.211e-09,2.5489e-09,2.1883e-09,1.9123e-09,1.4056e-09,1.2205e-09,1.1594e-09,9.6564e-10,9.5499e-10,8.8123e-10,8.5049e-10,5.3033e-10,4.695e-10,4.4776e-10,3.6044e-10,3.1768e-10,3.1164e-10,2.3176e-10,1.3066e-10,1.1005e-10,1.0071e-10,8.1871e-11,8.0421e-11,6.3655e-11,6.2043e-11,4.5828e-11,3.8324e-11,2.6722e-11,2.5861e-11,2.5079e-11,2.4652e-11,2.3305e-11,2.2259e-11,2.1645e-11,1.6103e-11,1.5134e-11,8.3756e-12,6.8614e-12,6.0098e-12,5.7021e-12,3.6806e-12,3.6524e-12,3.1593e-12,2.9519e-12,2.0962e-12,2.0736e-12,2.021e-12,1.5645e-12,1.4572e-12,1.4209e-12,1.3157e-12,1.191e-12,1.0839e-12,1.0321e-12,6.3623e-13,6.2543e-13,4.8477e-13,3.3006e-13,2.2941e-13,1.3788e-13,1.3688e-13,1.1414e-13,9.0744e-14,6.6951e-14,6.6724e-14,6.0038e-14,3.6462e-14,3.2459e-14,3.2046e-14,1.77e-14,1.5528e-14,1.4398e-14,1.1403e-14,9.0443e-15,5.8914e-15,5.5077e-15,3.9763e-15,1.9084e-15,1.8897e-15,1.7789e-15,1.5721e-15,1.4266e-15,1.2655e-15,1.0983e-15,2.9065e-16,2.0437e-16,1.1878e-16,7.918e-17,7.7609e-17,7.4108e-17,4.0348e-17,3.4992e-17,3.458e-17,1.9253e-17,7.0998e-18,6.877e-18,5.1151e-18,4.8109e-18,2.428e-18,2.0033e-18,1.3151e-18,1.0551e-18,8.2667e-19,7.8825e-19,5.8951e-19,5.6003e-19,5.4654e-19,2.8158e-19,2.3073e-19,2.1216e-19,1.6146e-19,1.4813e-19,9.9699e-20,9.1072e-20,7.589e-20,4.8112e-20,4.7905e-20,3.8456e-20,3.5704e-20,3.57e-20,2.1954e-20,2.1619e-20,1.7682e-20,1.4295e-20,8.9784e-21,5.8944e-21,4.3532e-21,2.6832e-21,1.7116e-21,9.5266e-22,9.3016e-22,5.9138e-22,3.8192e-22,2.9491e-22,1.4716e-22,1.1992e-22,7.9052e-23,6.1735e-23,3.6782e-23,3.4818e-23,3.1092e-23,2.3923e-23,1.3796e-23,7.8149e-24,5.7766e-24,4.2691e-24,3.6448e-24,3.5645e-24,2.6743e-24,1.9171e-24,6.897e-25,5.2461e-25,4.5112e-25,3.2305e-25,3.223e-25,2.3179e-25,2.2246e-25,1.7779e-25,1.4845e-25,8.0733e-26,7.3905e-26,4.5829e-26,2.9329e-26,6.754e-27,5.1161e-27,4.473e-27,3.1434e-27,2.2557e-27,1.9881e-27,1.5442e-27,1.2876e-27,1.0273e-27,7.0686e-28,7.0544e-28,3.5919e-28,3.0007e-28,2.8901e-28,2.8328e-28,1.4209e-28,1.3988e-28,1.3045e-28,1.2377e-28,1.0801e-28,8.6161e-29,7.0336e-29,2.8481e-29,4.0784e-30,2.2762e-30,2.1616e-30,2.0712e-30,1.8037e-30,1.67e-30,8.0214e-31,4.9373e-31,3.4647e-31,2.8406e-31,1.8743e-31,1.3151e-31,1.2311e-31,7.471e-32,5.6268e-32,3.9777e-32,2.274e-32,1.0853e-32,1.0351e-32,8.0514e-33,6.7612e-33,6.2508e-33,2.6983e-33,2.1424e-33,7.4683e-34,5.569e-34,3.3169e-34,2.5117e-34,2.2951e-34,1.4029e-34,1.3163e-34,1.1449e-34,8.438e-35,4.7072e-35 1,0.26265,0.28437,0.28548,0.29226,0.29754,0.30456,0.31847,0.35294,0.37584,0.37942,0.39823,0.40134,0.41382,0.44484,0.45476,0.4617,0.49219,0.49749,0.50338,0.52332,0.52547,0.52671,0.54205,0.55115,0.55145,0.56898,0.57058,0.57852,0.57957,0.58058,0.63469,0.68595,0.69054,0.70541,0.71858,0.72872,0.74064,0.75434,0.77799,0.79072,0.81092,0.83537,0.83756,0.8422,0.84645,0.86784,0.86788,0.91365,0.91672,0.91841,0.93021,0.93104,0.95166,0.95884,0.96166,0.96754,0.97103,0.97658,0.97818,0.98867,0.99346,1,0.99951,0.99912,0.99815,0.99369,0.99245,0.99126,0.98451,0.97649,0.97312,0.97019,0.95839,0.93816,0.91302,0.89404,0.88987,0.84982,0.83491,0.82778,0.82459,0.81143,0.75432,0.75241,0.742,0.72529,0.72198,0.6977,0.6293,0.62839,0.6089,0.6019,0.52254,0.50291,0.50148,0.48412,0.46093,0.46048,0.45862,0.44484,0.44472,0.43237,0.42763,0.36243,0.33549,0.3346,0.30544,0.29788,0.28641,0.28093,0.27772,0.2742,0.27306,0.27003,0.25804,0.25666,0.25385,0.25156,0.23469,0.21653,0.19462,0.18678,0.17094,0.15444,0.14785,0.14454,0.11152,0.10811,0.10566,0.10092,0.095146,0.090357,0.086609,0.085956,0.085548,0.08105,0.07013,0.069376,0.065458,0.059746,0.056773,0.056303,0.041677,0.041541,0.039074,0.034609,0.033845,0.031122,0.030507,0.026492,0.024127,0.019423,0.019321,0.014968,0.014531,0.014394,0.012136,0.012003,0.011278,0.010381,0.010115,0.0099172,0.009172,0.0090536,0.0089771,0.0084327,0.0082492,0.008202,0.0077839,0.0076382,0.0068754,0.005761,0.0055806,0.0055334,0.005106,0.0049383,0.0043065,0.0033738,0.0031249,0.0027653,0.0026429,0.002329,0.0020512,0.00203,0.0020136,0.0020117,0.0019373,0.0019311,0.0017145,0.0016228,0.0014627,0.0014559,0.0014154,0.0011796,0.0011733,0.0010749,0.00097231,0.00081155,0.00079237,0.00073989,0.0007286,0.00070078,0.00065639,0.00059344,0.0005918,0.00046975,0.00035975,0.00034962,0.0003387,0.00033537,0.00028491,0.0002575,0.00018208,0.00017877,0.00017228,0.00016182,0.00012804,0.00010002,7.608e-05,7.0024e-05,6.6633e-05,5.8712e-05,4.5374e-05,4.0476e-05,3.4872e-05,2.7684e-05,2.2642e-05,2.1832e-05,1.4735e-05,1.3985e-05,1.3721e-05,1.2502e-05,1.2047e-05,8.9426e-06,7.8613e-06,7.5729e-06,7.5442e-06,6.9739e-06,6.2704e-06,5.968e-06,5.838e-06,3.957e-06,3.9551e-06,2.7731e-06,1.8382e-06,1.2511e-06,8.74e-07,7.4751e-07,7.1742e-07,6.5156e-07,5.9886e-07,4.9052e-07,4.7982e-07,3.2552e-07,2.9493e-07,2.4184e-07,1.8872e-07,1.6224e-07,1.5949e-07,1.4097e-07,1.2975e-07,1.0574e-07,7.7852e-08,7.5637e-08,6.6057e-08,5.3302e-08,4.474e-08,4.4374e-08,2.411e-08,2.1804e-08,2.0774e-08,1.8347e-08,1.7198e-08,1.5529e-08,1.3193e-08,1.235e-08,1.1264e-08,9.7084e-09,8.0045e-09,6.6539e-09,6.5302e-09,5.2056e-09,4.4815e-09,3.9259e-09,2.9018e-09,2.526e-09,2.4016e-09,2.0069e-09,1.9851e-09,1.8344e-09,1.7715e-09,1.1139e-09,9.8823e-10,9.4326e-10,7.6217e-10,6.7322e-10,6.6064e-10,4.9382e-10,2.8114e-10,2.3748e-10,2.1765e-10,1.7756e-10,1.7447e-10,1.3864e-10,1.3519e-10,1.0036e-10,8.4175e-11,5.9042e-11,5.7172e-11,5.5469e-11,5.454e-11,5.1607e-11,4.933e-11,4.799e-11,3.5876e-11,3.3751e-11,1.8858e-11,1.5498e-11,1.3603e-11,1.2917e-11,8.3959e-12,8.3327e-12,7.2243e-12,6.7571e-12,4.8243e-12,4.773e-12,4.6538e-12,3.6169e-12,3.3726e-12,3.2898e-12,3.0499e-12,2.7653e-12,2.5203e-12,2.4015e-12,1.4915e-12,1.4665e-12,1.1411e-12,7.8149e-13,5.4616e-13,3.3076e-13,3.284e-13,2.7458e-13,2.1904e-13,1.6233e-13,1.6179e-13,1.4581e-13,8.9199e-14,7.954e-14,7.8543e-14,4.3755e-14,3.8457e-14,3.5697e-14,2.8368e-14,2.2574e-14,1.4794e-14,1.3844e-14,1.0041e-14,4.8688e-15,4.8217e-15,4.5428e-15,4.0215e-15,3.6543e-15,3.2469e-15,2.8236e-15,7.6092e-16,5.3757e-16,3.1473e-16,2.1094e-16,2.0681e-16,1.976e-16,1.0845e-16,9.4232e-17,9.3138e-17,5.2255e-17,1.9521e-17,1.8916e-17,1.4123e-17,1.3294e-17,6.7681e-18,5.5979e-18,3.6944e-18,2.9723e-18,2.336e-18,2.2287e-18,1.6729e-18,1.5902e-18,1.5524e-18,8.0644e-19,6.6244e-19,6.0975e-19,4.6561e-19,4.2761e-19,2.8921e-19,2.6448e-19,2.2088e-19,1.4081e-19,1.4021e-19,1.1286e-19,1.0487e-19,1.0486e-19,6.4867e-20,6.3887e-20,5.2379e-20,4.2454e-20,2.6813e-20,1.7692e-20,1.3113e-20,8.1288e-21,5.2128e-21,2.9213e-21,2.8531e-21,1.8235e-21,1.1836e-21,9.1668e-22,4.6108e-22,3.7661e-22,2.4944e-22,1.9535e-22,1.1707e-22,1.1089e-22,9.9151e-23,7.6515e-23,4.4398e-23,2.5309e-23,1.877e-23,1.3918e-23,1.1904e-23,1.1645e-23,8.7639e-24,6.3055e-24,2.2939e-24,1.75e-24,1.5073e-24,1.0833e-24,1.0808e-24,7.8008e-25,7.4901e-25,6.0004e-25,5.02e-25,2.7479e-25,2.5178e-25,1.5693e-25,1.009e-25,2.3598e-26,1.7927e-26,1.5695e-26,1.107e-26,7.9715e-27,7.0348e-27,5.4786e-27,4.5766e-27,3.66e-27,2.528e-27,2.5229e-27,1.2935e-27,1.0826e-27,1.0431e-27,1.0226e-27,5.1654e-28,5.0856e-28,4.7463e-28,4.5057e-28,3.9373e-28,3.148e-28,2.5751e-28,1.0522e-28,1.5361e-29,8.6223e-30,8.1923e-30,7.8531e-30,6.848e-30,6.3452e-30,3.0696e-30,1.8983e-30,1.3367e-30,1.098e-30,7.2742e-31,5.1213e-31,4.7972e-31,2.9252e-31,2.2091e-31,1.5668e-31,9.0053e-32,4.3279e-32,4.1295e-32,3.2199e-32,2.7084e-32,2.5058e-32,1.0902e-32,8.6749e-33,3.0538e-33,2.2834e-33,1.3665e-33,1.0374e-33,9.4876e-34,5.8257e-34,5.4692e-34,4.7631e-34,3.5203e-34,1.9743e-34 1,0.24937,0.2704,0.27149,0.27806,0.28319,0.29001,0.30353,0.33712,0.35949,0.36299,0.38141,0.38446,0.39669,0.42718,0.43695,0.44379,0.47387,0.47911,0.48494,0.50468,0.50681,0.50804,0.52326,0.53229,0.53259,0.55002,0.55161,0.55952,0.56057,0.56158,0.61564,0.66715,0.67178,0.68679,0.7001,0.71036,0.72246,0.73638,0.76047,0.77348,0.79418,0.81936,0.82163,0.82642,0.83081,0.85302,0.85305,0.90108,0.90434,0.90612,0.91869,0.91959,0.94182,0.94967,0.95278,0.95928,0.96318,0.96944,0.97126,0.9835,0.9894,0.99951,1,0.99994,0.99957,0.99672,0.99581,0.99491,0.98951,0.98273,0.9798,0.97724,0.96673,0.94829,0.92489,0.907,0.90304,0.86477,0.85041,0.84352,0.84043,0.82769,0.77195,0.77008,0.75987,0.74343,0.74017,0.7162,0.64831,0.6474,0.62796,0.62096,0.54133,0.52154,0.52009,0.50256,0.47909,0.47863,0.47674,0.46278,0.46265,0.45012,0.4453,0.37884,0.35127,0.35036,0.32043,0.31266,0.30086,0.29521,0.29191,0.28829,0.28711,0.28398,0.27161,0.27019,0.26728,0.26491,0.24747,0.22866,0.20591,0.19776,0.18126,0.16403,0.15715,0.15368,0.11905,0.11546,0.11288,0.1079,0.10181,0.096757,0.092801,0.09211,0.091679,0.086925,0.075364,0.074565,0.070409,0.064344,0.061184,0.060683,0.045092,0.044947,0.04231,0.037531,0.036712,0.033792,0.033133,0.02882,0.026275,0.021205,0.021095,0.016388,0.015914,0.015766,0.013317,0.013173,0.012385,0.011411,0.011121,0.010906,0.010094,0.0099652,0.0098819,0.0092886,0.0090885,0.009037,0.0085809,0.0084219,0.0075888,0.0063699,0.0061723,0.0061206,0.0056523,0.0054684,0.004775,0.0037495,0.0034753,0.0030788,0.0029438,0.0025971,0.00229,0.0022665,0.0022484,0.0022463,0.0021639,0.002157,0.0019171,0.0018155,0.0016378,0.0016303,0.0015854,0.0013233,0.0013163,0.0012068,0.0010926,0.0009133,0.00089188,0.0008333,0.00082068,0.0007896,0.00073998,0.00066956,0.00066774,0.00053101,0.00040754,0.00039614,0.00038387,0.00038013,0.00032334,0.00029247,0.00020735,0.00020361,0.00019627,0.00018445,0.0001462,0.00011441,8.7201e-05,8.0307e-05,7.6446e-05,6.742e-05,5.2198e-05,4.66e-05,4.0191e-05,3.1957e-05,2.6172e-05,2.5242e-05,1.7082e-05,1.6218e-05,1.5914e-05,1.451e-05,1.3985e-05,1.0401e-05,9.1512e-06,8.8177e-06,8.7844e-06,8.1245e-06,7.3099e-06,6.9596e-06,6.8089e-06,4.6266e-06,4.6243e-06,3.2496e-06,2.1595e-06,1.4732e-06,1.0314e-06,8.8292e-07,8.4759e-07,7.7022e-07,7.0827e-07,5.8082e-07,5.6822e-07,3.8636e-07,3.5025e-07,2.8752e-07,2.2468e-07,1.9333e-07,1.9007e-07,1.6812e-07,1.548e-07,1.2631e-07,9.3148e-08,9.0512e-08,7.9107e-08,6.3907e-08,5.3692e-08,5.3256e-08,2.903e-08,2.6267e-08,2.5034e-08,2.2123e-08,2.0745e-08,1.8741e-08,1.5935e-08,1.4923e-08,1.3617e-08,1.1746e-08,9.6938e-09,8.0658e-09,7.9166e-09,6.3181e-09,5.4434e-09,4.7718e-09,3.5323e-09,3.077e-09,2.9263e-09,2.4475e-09,2.4211e-09,2.2381e-09,2.1618e-09,1.3624e-09,1.2094e-09,1.1546e-09,9.3393e-10,8.2543e-10,8.1008e-10,6.0638e-10,3.4614e-10,2.9262e-10,2.683e-10,2.1909e-10,2.1529e-10,1.7126e-10,1.6702e-10,1.2416e-10,1.0423e-10,7.3225e-11,7.0916e-11,6.8813e-11,6.7666e-11,6.4043e-11,6.123e-11,5.9574e-11,4.4595e-11,4.1965e-11,2.3509e-11,1.9337e-11,1.6983e-11,1.613e-11,1.0504e-11,1.0426e-11,9.0444e-12,8.4621e-12,6.0504e-12,5.9864e-12,5.8376e-12,4.5418e-12,4.2364e-12,4.1328e-12,3.8327e-12,3.4764e-12,3.1697e-12,3.021e-12,1.88e-12,1.8487e-12,1.44e-12,9.8778e-13,6.9136e-13,4.1958e-13,4.166e-13,3.4858e-13,2.7833e-13,2.0653e-13,2.0584e-13,1.8558e-13,1.1376e-13,1.0149e-13,1.0022e-13,5.5964e-14,4.9213e-14,4.5695e-14,3.6346e-14,2.8949e-14,1.9004e-14,1.7788e-14,1.2917e-14,6.2814e-15,6.2208e-15,5.8624e-15,5.1921e-15,4.7197e-15,4.1955e-15,3.6504e-15,9.8867e-16,6.9939e-16,4.1029e-16,2.7539e-16,2.7002e-16,2.5804e-16,1.4194e-16,1.2339e-16,1.2196e-16,6.8571e-17,2.5707e-17,2.4914e-17,1.8621e-17,1.7531e-17,8.9466e-18,7.4048e-18,4.894e-18,3.9404e-18,3.0995e-18,2.9576e-18,2.2222e-18,2.1128e-18,2.0628e-18,1.074e-18,8.8279e-19,8.1281e-19,6.2124e-19,5.707e-19,3.8651e-19,3.5356e-19,2.9546e-19,1.8864e-19,1.8784e-19,1.5131e-19,1.4064e-19,1.4062e-19,8.7127e-20,8.5816e-20,7.0404e-20,5.7104e-20,3.6121e-20,2.3866e-20,1.7706e-20,1.0994e-20,7.0601e-21,3.964e-21,3.8718e-21,2.4781e-21,1.6107e-21,1.2485e-21,6.2937e-22,5.144e-22,3.4115e-22,2.6737e-22,1.605e-22,1.5204e-22,1.36e-22,1.0503e-22,6.1049e-23,3.4861e-23,2.5878e-23,1.9207e-23,1.6435e-23,1.6078e-23,1.2111e-23,8.7223e-24,3.1829e-24,2.4302e-24,2.0941e-24,1.5065e-24,1.5031e-24,1.0859e-24,1.0428e-24,8.3594e-25,6.9971e-25,3.837e-25,3.5167e-25,2.1949e-25,1.4131e-25,3.3188e-26,2.5232e-26,2.21e-26,1.5603e-26,1.1246e-26,9.9284e-27,7.7376e-27,6.467e-27,5.1751e-27,3.5782e-27,3.5711e-27,1.8344e-27,1.536e-27,1.4801e-27,1.4512e-27,7.3442e-28,7.2311e-28,6.7499e-28,6.4087e-28,5.6023e-28,4.4821e-28,3.6684e-28,1.5027e-28,2.2054e-29,1.2399e-29,1.1782e-29,1.1295e-29,9.8533e-30,9.1318e-30,4.4264e-30,2.7409e-30,1.9318e-30,1.5877e-30,1.053e-30,7.4203e-31,6.952e-31,4.2448e-31,3.208e-31,2.2774e-31,1.3108e-31,6.3118e-32,6.0233e-32,4.6995e-32,3.9547e-32,3.6596e-32,1.5957e-32,1.2704e-32,4.4844e-33,3.3556e-33,2.0108e-33,1.5277e-33,1.3974e-33,8.5911e-34,8.0666e-34,7.0277e-34,5.198e-34,2.9195e-34 1,0.24502,0.26583,0.2669,0.27341,0.27848,0.28523,0.29862,0.33192,0.3541,0.35758,0.37586,0.37889,0.39104,0.42134,0.43105,0.43786,0.4678,0.47301,0.47882,0.49848,0.50061,0.50183,0.51701,0.52602,0.52631,0.5437,0.54529,0.55319,0.55423,0.55524,0.60926,0.66084,0.66547,0.68052,0.69387,0.70417,0.71632,0.73031,0.75454,0.76763,0.78849,0.81389,0.81618,0.82103,0.82546,0.84793,0.84796,0.89672,0.90003,0.90185,0.91467,0.91559,0.93835,0.94641,0.94961,0.95632,0.96036,0.96685,0.96875,0.98156,0.98783,0.99912,0.99994,1,0.99982,0.99752,0.99671,0.99591,0.99097,0.9846,0.98183,0.97939,0.96933,0.95149,0.92869,0.91117,0.90729,0.86964,0.85546,0.84866,0.84561,0.83301,0.77777,0.77591,0.76577,0.74943,0.74619,0.72234,0.65465,0.65374,0.63432,0.62733,0.54764,0.5278,0.52635,0.50877,0.48521,0.48475,0.48286,0.46883,0.46871,0.45611,0.45127,0.38441,0.35664,0.35571,0.32554,0.3177,0.30578,0.30008,0.29675,0.29309,0.2919,0.28875,0.27624,0.27481,0.27187,0.26948,0.25184,0.23282,0.20978,0.20152,0.18481,0.16734,0.16035,0.15683,0.12165,0.11801,0.11538,0.11031,0.10412,0.098976,0.094947,0.094245,0.093806,0.088964,0.077183,0.076369,0.072131,0.065944,0.06272,0.062209,0.046285,0.046137,0.043441,0.038553,0.037716,0.034728,0.034053,0.029637,0.02703,0.021832,0.021719,0.016888,0.016402,0.01625,0.013734,0.013587,0.012776,0.011774,0.011476,0.011255,0.010421,0.010288,0.010202,0.0095916,0.0093858,0.0093327,0.0088633,0.0086996,0.0078417,0.0065861,0.0063824,0.0063292,0.0058464,0.0056568,0.0049418,0.0038834,0.0036003,0.0031908,0.0030512,0.0026929,0.0023754,0.0023511,0.0023324,0.0023302,0.0022449,0.0022378,0.0019896,0.0018845,0.0017006,0.0016928,0.0016463,0.0013748,0.0013676,0.0012541,0.0011357,0.00094988,0.00092768,0.0008669,0.00085381,0.00082157,0.00077007,0.00069699,0.00069509,0.00055311,0.0004248,0.00041295,0.0004002,0.0003963,0.00033724,0.00030512,0.00021651,0.00021262,0.00020497,0.00019266,0.00015279,0.00011964,9.1251e-05,8.4054e-05,8.0022e-05,7.0595e-05,5.469e-05,4.8838e-05,4.2135e-05,3.3521e-05,2.7466e-05,2.6492e-05,1.7943e-05,1.7038e-05,1.6719e-05,1.5247e-05,1.4697e-05,1.0938e-05,9.6261e-06,9.276e-06,9.2411e-06,8.5483e-06,7.693e-06,7.3251e-06,7.1668e-06,4.8738e-06,4.8714e-06,3.4258e-06,2.2786e-06,1.5556e-06,1.0899e-06,9.3327e-07,8.96e-07,8.1437e-07,7.4899e-07,6.1445e-07,6.0115e-07,4.0905e-07,3.7089e-07,3.0459e-07,2.3813e-07,2.0496e-07,2.015e-07,1.7828e-07,1.6418e-07,1.3401e-07,9.8885e-08,9.6092e-08,8.4005e-08,6.789e-08,5.7057e-08,5.6594e-08,3.0884e-08,2.7949e-08,2.6639e-08,2.3547e-08,2.2082e-08,1.9953e-08,1.6971e-08,1.5895e-08,1.4505e-08,1.2515e-08,1.0333e-08,8.6e-09,8.4412e-09,6.7394e-09,5.8079e-09,5.0924e-09,3.7716e-09,3.2862e-09,3.1255e-09,2.6148e-09,2.5867e-09,2.3916e-09,2.3101e-09,1.457e-09,1.2936e-09,1.2351e-09,9.9939e-10,8.8346e-10,8.6706e-10,6.4933e-10,3.71e-10,3.1372e-10,2.8768e-10,2.3499e-10,2.3093e-10,1.8377e-10,1.7922e-10,1.3329e-10,1.1192e-10,7.8674e-11,7.6196e-11,7.3941e-11,7.271e-11,6.8823e-11,6.5804e-11,6.4027e-11,4.795e-11,4.5126e-11,2.5302e-11,2.0818e-11,1.8287e-11,1.7371e-11,1.1319e-11,1.1234e-11,9.7481e-12,9.1213e-12,6.525e-12,6.456e-12,6.2958e-12,4.9001e-12,4.571e-12,4.4595e-12,4.136e-12,3.7522e-12,3.4215e-12,3.2612e-12,2.0309e-12,1.9971e-12,1.5562e-12,1.068e-12,7.4791e-13,4.5422e-13,4.5099e-13,3.7746e-13,3.0148e-13,2.238e-13,2.2305e-13,2.0113e-13,1.2337e-13,1.1008e-13,1.0871e-13,6.0751e-14,5.3432e-14,4.9617e-14,3.9478e-14,3.1453e-14,2.0659e-14,1.9339e-14,1.405e-14,6.8385e-15,6.7726e-15,6.3829e-15,5.654e-15,5.1402e-15,4.5699e-15,3.977e-15,1.0789e-15,7.6355e-16,4.4823e-16,3.0101e-16,2.9514e-16,2.8207e-16,1.5527e-16,1.35e-16,1.3344e-16,7.5078e-17,2.818e-17,2.7311e-17,2.042e-17,1.9226e-17,9.8196e-18,8.1292e-18,5.3753e-18,4.3291e-18,3.4061e-18,3.2505e-18,2.443e-18,2.3229e-18,2.2679e-18,1.1817e-18,9.7156e-19,8.9463e-19,6.8399e-19,6.284e-19,4.2578e-19,3.8952e-19,3.2558e-19,2.0798e-19,2.071e-19,1.6686e-19,1.551e-19,1.5509e-19,9.6141e-20,9.4695e-20,7.7706e-20,6.3042e-20,3.9897e-20,2.6373e-20,1.9573e-20,1.2159e-20,7.8122e-21,4.389e-21,4.287e-21,2.7452e-21,1.7852e-21,1.3841e-21,6.9823e-22,5.708e-22,3.7872e-22,2.9689e-22,1.7831e-22,1.6893e-22,1.5112e-22,1.1674e-22,6.7895e-23,3.8793e-23,2.8806e-23,2.1386e-23,1.8302e-23,1.7905e-23,1.3491e-23,9.7199e-24,3.5506e-24,2.7117e-24,2.337e-24,1.6818e-24,1.678e-24,1.2126e-24,1.1645e-24,9.3375e-25,7.8173e-25,4.2893e-25,3.9316e-25,2.4549e-25,1.5813e-25,3.7189e-26,2.8282e-26,2.4774e-26,1.7497e-26,1.2615e-26,1.1138e-26,8.6827e-27,7.2581e-27,5.8094e-27,4.0182e-27,4.0103e-27,2.0612e-27,1.7263e-27,1.6635e-27,1.631e-27,8.2597e-28,8.1326e-28,7.5919e-28,7.2084e-28,6.3023e-28,5.0431e-28,4.1284e-28,1.6925e-28,2.4883e-29,1.3997e-29,1.3301e-29,1.2752e-29,1.1126e-29,1.0312e-29,5.0016e-30,3.0985e-30,2.1845e-30,1.7957e-30,1.1914e-30,8.3982e-31,7.8686e-31,4.8065e-31,3.6335e-31,2.5802e-31,1.4858e-31,7.1592e-32,6.8322e-32,5.3318e-32,4.4875e-32,4.1529e-32,1.8121e-32,1.443e-32,5.0981e-33,3.8158e-33,2.2876e-33,1.7384e-33,1.5902e-33,9.7807e-34,9.1841e-34,8.0022e-34,5.9203e-34,3.3268e-34 1,0.23737,0.25776,0.25881,0.2652,0.27018,0.27681,0.28996,0.32271,0.34457,0.348,0.36603,0.36902,0.38102,0.41097,0.42058,0.42731,0.45699,0.46216,0.46792,0.48745,0.48956,0.49078,0.50586,0.51482,0.51512,0.53243,0.53401,0.54188,0.54292,0.54393,0.59784,0.6495,0.65415,0.66926,0.68267,0.69304,0.70526,0.71936,0.74382,0.75706,0.77819,0.80398,0.80631,0.81124,0.81575,0.83866,0.83869,0.88871,0.89213,0.89401,0.90727,0.90822,0.9319,0.94035,0.94372,0.95079,0.95506,0.96196,0.96399,0.97783,0.98475,0.99815,0.99957,0.99982,1,0.99866,0.99806,0.99743,0.99331,0.9877,0.9852,0.98299,0.97372,0.95699,0.93527,0.91843,0.91469,0.87818,0.86436,0.85771,0.85473,0.84239,0.78808,0.78625,0.77624,0.76009,0.75689,0.73326,0.66598,0.66507,0.6457,0.63873,0.55897,0.53906,0.5376,0.51993,0.49623,0.49577,0.49386,0.47973,0.47961,0.46691,0.46203,0.39448,0.36634,0.36541,0.33479,0.32683,0.31472,0.30892,0.30553,0.30181,0.3006,0.29739,0.28466,0.2832,0.28021,0.27777,0.25979,0.24038,0.21684,0.20839,0.19128,0.17337,0.1662,0.16259,0.12642,0.12267,0.11997,0.11474,0.10835,0.10305,0.098888,0.098163,0.097709,0.092708,0.080528,0.079686,0.0753,0.068891,0.065549,0.065019,0.048488,0.048333,0.04553,0.040443,0.039571,0.036458,0.035754,0.031148,0.028427,0.022994,0.022876,0.017818,0.017309,0.017149,0.01451,0.014355,0.013504,0.012452,0.012138,0.011906,0.011028,0.010889,0.010799,0.010156,0.0099396,0.0098838,0.0093896,0.0092173,0.0083136,0.0069897,0.0067748,0.0067186,0.0062091,0.0060089,0.0052534,0.004134,0.0038342,0.0034004,0.0032525,0.0028726,0.0025356,0.0025097,0.0024899,0.0024876,0.002397,0.0023895,0.0021258,0.0020141,0.0018185,0.0018102,0.0017607,0.0014718,0.0014641,0.0013432,0.001217,0.0010188,0.0009951,0.00093023,0.00091625,0.00088182,0.00082681,0.00074871,0.00074668,0.00059483,0.00045742,0.00044473,0.00043105,0.00042688,0.00036354,0.00032907,0.00023388,0.00022969,0.00022147,0.00020822,0.00016531,0.00012959,9.8951e-05,9.1179e-05,8.6824e-05,7.6637e-05,5.9435e-05,5.3101e-05,4.5842e-05,3.6505e-05,2.9935e-05,2.8878e-05,1.959e-05,1.8606e-05,1.8259e-05,1.6657e-05,1.6059e-05,1.1965e-05,1.0536e-05,1.0154e-05,1.0116e-05,9.3604e-06,8.4273e-06,8.0258e-06,7.8531e-06,5.3483e-06,5.3458e-06,3.7644e-06,2.5076e-06,1.7143e-06,1.2026e-06,1.0304e-06,9.8939e-07,8.9956e-07,8.2759e-07,6.794e-07,6.6475e-07,4.5294e-07,4.1082e-07,3.3761e-07,2.6417e-07,2.2749e-07,2.2367e-07,1.9796e-07,1.8236e-07,1.4895e-07,1.1002e-07,1.0693e-07,9.3517e-08,7.563e-08,6.3598e-08,6.3084e-08,3.4493e-08,3.1225e-08,2.9766e-08,2.6321e-08,2.4689e-08,2.2316e-08,1.899e-08,1.779e-08,1.6239e-08,1.4018e-08,1.158e-08,9.6436e-09,9.4661e-09,7.5629e-09,6.5205e-09,5.7195e-09,4.2399e-09,3.6958e-09,3.5156e-09,2.9428e-09,2.9112e-09,2.6922e-09,2.6008e-09,1.6426e-09,1.4589e-09,1.3931e-09,1.1279e-09,9.9746e-10,9.7899e-10,7.3377e-10,4.1992e-10,3.5526e-10,3.2585e-10,2.6633e-10,2.6173e-10,2.0841e-10,2.0327e-10,1.5131e-10,1.2711e-10,8.9436e-11,8.6628e-11,8.407e-11,8.2674e-11,7.8267e-11,7.4843e-11,7.2827e-11,5.4583e-11,5.1378e-11,2.8852e-11,2.3752e-11,2.0871e-11,1.9828e-11,1.2935e-11,1.2838e-11,1.1144e-11,1.043e-11,7.4674e-12,7.3887e-12,7.2058e-12,5.6121e-12,5.2361e-12,5.1087e-12,4.7391e-12,4.3003e-12,3.9223e-12,3.739e-12,2.3313e-12,2.2926e-12,1.7876e-12,1.228e-12,8.6072e-13,5.2338e-13,5.1967e-13,4.3513e-13,3.4774e-13,2.5832e-13,2.5747e-13,2.3222e-13,1.4262e-13,1.2729e-13,1.257e-13,7.0347e-14,6.1892e-14,5.7483e-14,4.5762e-14,3.6479e-14,2.3984e-14,2.2455e-14,1.6326e-14,7.9598e-15,7.8833e-15,7.4307e-15,6.584e-15,5.9871e-15,5.3243e-15,4.6349e-15,1.2612e-15,8.9324e-16,5.2498e-16,3.5287e-16,3.4601e-16,3.3071e-16,1.8229e-16,1.5854e-16,1.5671e-16,8.8282e-17,3.3207e-17,3.2185e-17,2.4079e-17,2.2675e-17,1.1597e-17,9.6048e-18,6.3566e-18,5.1217e-18,4.0318e-18,3.8479e-18,2.8938e-18,2.7518e-18,2.6868e-18,1.4018e-18,1.153e-18,1.0619e-18,8.1233e-19,7.4645e-19,5.0616e-19,4.6315e-19,3.8726e-19,2.4761e-19,2.4656e-19,1.9874e-19,1.8477e-19,1.8475e-19,1.1464e-19,1.1292e-19,9.2696e-20,7.5235e-20,4.7657e-20,3.1528e-20,2.3413e-20,1.4558e-20,9.3617e-21,5.2655e-21,5.1433e-21,3.2964e-21,2.1454e-21,1.6642e-21,8.4063e-22,6.8748e-22,4.5649e-22,3.5803e-22,2.1524e-22,2.0393e-22,1.8247e-22,1.4103e-22,8.2101e-23,4.6959e-23,3.4889e-23,2.5916e-23,2.2186e-23,2.1705e-23,1.6363e-23,1.1796e-23,4.3169e-24,3.2985e-24,2.8435e-24,2.0475e-24,2.0429e-24,1.4772e-24,1.4187e-24,1.138e-24,9.5303e-25,5.2348e-25,4.799e-25,2.9991e-25,1.9333e-25,4.5583e-26,3.4682e-26,3.0387e-26,2.1474e-26,1.5492e-26,1.3681e-26,1.0669e-26,8.9214e-27,7.1434e-27,4.944e-27,4.9343e-27,2.539e-27,2.1271e-27,2.0499e-27,2.0099e-27,1.019e-27,1.0034e-27,9.3676e-28,8.8952e-28,7.7787e-28,6.2269e-28,5.0991e-28,2.0937e-28,3.0878e-29,1.7385e-29,1.6523e-29,1.5842e-29,1.3824e-29,1.2815e-29,6.2229e-30,3.858e-30,2.7216e-30,2.2378e-30,1.4857e-30,1.0479e-30,9.819e-31,6.0026e-31,4.5397e-31,3.2254e-31,1.859e-31,8.9678e-32,8.5587e-32,6.6818e-32,5.6252e-32,5.2065e-32,2.2747e-32,1.8121e-32,6.4123e-33,4.8016e-33,2.8809e-33,2.1901e-33,2.0038e-33,1.2333e-33,1.1582e-33,1.0094e-33,7.4711e-34,4.2019e-34 1,0.21715,0.23641,0.2374,0.24345,0.24816,0.25445,0.26695,0.29817,0.31909,0.32238,0.3397,0.34258,0.35414,0.38308,0.39239,0.39892,0.42778,0.43283,0.43845,0.45754,0.45961,0.4608,0.47559,0.4844,0.48469,0.50173,0.50329,0.51105,0.51208,0.51307,0.56654,0.61821,0.62288,0.6381,0.65165,0.66214,0.67454,0.68888,0.71386,0.72744,0.74921,0.77595,0.77837,0.78351,0.78822,0.81224,0.81228,0.86551,0.8692,0.87123,0.88563,0.88666,0.91276,0.92222,0.92601,0.93405,0.93895,0.94694,0.94932,0.96589,0.97456,0.99369,0.99672,0.99752,0.99866,1,0.99994,0.9998,0.99794,0.99444,0.99271,0.99112,0.98409,0.97047,0.95186,0.93698,0.93363,0.90043,0.88764,0.88146,0.87867,0.86713,0.81562,0.81386,0.80426,0.78871,0.78561,0.76272,0.69683,0.69593,0.67679,0.66988,0.59024,0.57019,0.56871,0.55087,0.52685,0.52638,0.52444,0.51008,0.50995,0.49701,0.49204,0.42274,0.39367,0.3927,0.36092,0.35263,0.34,0.33395,0.33041,0.32652,0.32525,0.32189,0.30856,0.30703,0.30389,0.30133,0.28243,0.26195,0.23704,0.22807,0.20986,0.19073,0.18306,0.17919,0.14025,0.13619,0.13327,0.1276,0.12067,0.1149,0.11037,0.10958,0.10909,0.10364,0.090317,0.089393,0.084582,0.077539,0.073859,0.073275,0.054991,0.05482,0.051705,0.04604,0.045067,0.041591,0.040804,0.035645,0.032589,0.026468,0.026334,0.020607,0.020028,0.019847,0.016843,0.016666,0.015695,0.014493,0.014134,0.013868,0.012863,0.012703,0.0126,0.011863,0.011614,0.01155,0.010982,0.010784,0.0097433,0.0082153,0.0079668,0.0079018,0.0073119,0.0070799,0.0062032,0.0048998,0.0045499,0.0040426,0.0038694,0.0034238,0.0030278,0.0029975,0.0029741,0.0029714,0.0028648,0.0028559,0.0025452,0.0024133,0.0021822,0.0021724,0.0021139,0.0017716,0.0017624,0.0016189,0.0014689,0.0012327,0.0012044,0.0011269,0.0011102,0.0010691,0.0010033,0.00090976,0.00090732,0.00072503,0.00055949,0.00054416,0.00052765,0.00052261,0.000446,0.00040424,0.00028855,0.00028345,0.00027343,0.00025728,0.00020484,0.00016106,0.00012339,0.00011381,0.00010843,9.5854e-05,7.4563e-05,6.6704e-05,5.7683e-05,4.6055e-05,3.7852e-05,3.653e-05,2.4889e-05,2.3653e-05,2.3216e-05,2.1201e-05,2.0447e-05,1.5284e-05,1.3477e-05,1.2994e-05,1.2945e-05,1.1989e-05,1.0806e-05,1.0296e-05,1.0077e-05,6.8909e-06,6.8876e-06,4.8678e-06,3.2562e-06,2.2347e-06,1.5732e-06,1.35e-06,1.2968e-06,1.1801e-06,1.0866e-06,8.9375e-07,8.7466e-07,5.9817e-07,5.4306e-07,4.4711e-07,3.5066e-07,3.0239e-07,2.9736e-07,2.6349e-07,2.4291e-07,1.9878e-07,1.4723e-07,1.4313e-07,1.2533e-07,1.0155e-07,8.5532e-08,8.4846e-08,4.6642e-08,4.226e-08,4.0302e-08,3.5677e-08,3.3483e-08,3.0291e-08,2.5813e-08,2.4195e-08,2.2104e-08,1.9104e-08,1.5808e-08,1.3185e-08,1.2944e-08,1.0362e-08,8.9446e-09,7.8545e-09,5.8372e-09,5.094e-09,4.8475e-09,4.0637e-09,4.0204e-09,3.7204e-09,3.5951e-09,2.2791e-09,2.0262e-09,1.9356e-09,1.5698e-09,1.3896e-09,1.364e-09,1.0247e-09,5.8903e-10,4.9898e-10,4.5799e-10,3.7492e-10,3.6849e-10,2.9395e-10,2.8675e-10,2.1393e-10,1.7996e-10,1.2696e-10,1.2301e-10,1.194e-10,1.1743e-10,1.1122e-10,1.0639e-10,1.0355e-10,7.7776e-11,7.3242e-11,4.1308e-11,3.4055e-11,2.9953e-11,2.8467e-11,1.8629e-11,1.8491e-11,1.6067e-11,1.5044e-11,1.0797e-11,1.0684e-11,1.0422e-11,8.1314e-12,7.5905e-12,7.407e-12,6.8749e-12,6.2427e-12,5.6977e-12,5.4333e-12,3.399e-12,3.3431e-12,2.6112e-12,1.7985e-12,1.2637e-12,7.7108e-13,7.6566e-13,6.4188e-13,5.1375e-13,3.8242e-13,3.8117e-13,3.4403e-13,2.1198e-13,1.8934e-13,1.87e-13,1.0506e-13,9.2507e-14,8.5959e-14,6.8535e-14,5.4714e-14,3.6073e-14,3.3787e-14,2.4616e-14,1.2057e-14,1.1942e-14,1.1261e-14,9.9855e-15,9.0857e-15,8.0859e-15,7.0452e-15,1.9328e-15,1.3719e-15,8.0895e-16,5.4506e-16,5.3453e-16,5.1104e-16,2.8271e-16,2.4609e-16,2.4327e-16,1.3752e-16,5.203e-17,5.0439e-17,3.78e-17,3.5608e-17,1.8284e-17,1.5159e-17,1.0057e-17,8.1134e-18,6.3956e-18,6.1056e-18,4.5992e-18,4.3748e-18,4.2721e-18,2.2373e-18,1.8422e-18,1.6974e-18,1.3005e-18,1.1956e-18,8.1249e-19,7.4381e-19,6.2256e-19,3.9905e-19,3.9738e-19,3.2069e-19,2.9826e-19,2.9823e-19,1.8555e-19,1.8278e-19,1.5021e-19,1.2205e-19,7.751e-20,5.1393e-20,3.8226e-20,2.383e-20,1.5361e-20,8.6665e-21,8.4665e-21,5.4392e-21,3.5481e-21,2.756e-21,1.3971e-21,1.1438e-21,7.6111e-22,5.977e-22,3.6027e-22,3.4145e-22,3.0568e-22,2.3658e-22,1.3811e-22,7.9218e-23,5.8946e-23,4.3853e-23,3.757e-23,3.676e-23,2.7753e-23,2.0039e-23,7.3706e-24,5.6395e-24,4.8651e-24,3.5089e-24,3.501e-24,2.5356e-24,2.4357e-24,1.9559e-24,1.6394e-24,9.0315e-25,8.2831e-25,5.1883e-25,3.3516e-25,7.9577e-26,6.0625e-26,5.3152e-26,3.7624e-26,2.7184e-26,2.4021e-26,1.8755e-26,1.5696e-26,1.2581e-26,8.7225e-27,8.7053e-27,4.4935e-27,3.7675e-27,3.6314e-27,3.5609e-27,1.8111e-27,1.7834e-27,1.6655e-27,1.5819e-27,1.3842e-27,1.1092e-27,9.0917e-28,3.7483e-28,5.5764e-29,3.1478e-29,2.9923e-29,2.8696e-29,2.5056e-29,2.3234e-29,1.1319e-29,7.0325e-30,4.9687e-30,4.0891e-30,2.7197e-30,1.9212e-30,1.8007e-30,1.1032e-30,8.3536e-31,5.9441e-31,3.4342e-31,1.6619e-31,1.5864e-31,1.2398e-31,1.0445e-31,9.671e-32,4.2404e-32,3.3812e-32,1.2018e-32,9.0102e-33,5.4177e-33,4.1234e-33,3.774e-33,2.3277e-33,2.1865e-33,1.9066e-33,1.413e-33,7.966e-34 1,0.21315,0.23218,0.23316,0.23913,0.2438,0.25002,0.26237,0.29327,0.314,0.31726,0.33443,0.33728,0.34875,0.37747,0.38672,0.39321,0.42189,0.4269,0.4325,0.45149,0.45355,0.45473,0.46946,0.47823,0.47851,0.49549,0.49705,0.50478,0.50581,0.5068,0.56014,0.61178,0.61646,0.63168,0.64525,0.65576,0.66818,0.68256,0.70763,0.72127,0.74316,0.77006,0.77251,0.77768,0.78243,0.80666,0.8067,0.86055,0.86429,0.86635,0.88096,0.88201,0.90858,0.91824,0.92212,0.93035,0.93537,0.94358,0.94603,0.96314,0.97216,0.99245,0.99581,0.99671,0.99806,0.99994,1,0.99996,0.99856,0.99549,0.99393,0.99247,0.98591,0.97294,0.95498,0.94052,0.93725,0.90476,0.89219,0.88612,0.88337,0.872,0.82111,0.81937,0.80986,0.79445,0.79138,0.76865,0.70309,0.7022,0.68312,0.67623,0.59667,0.5766,0.57512,0.55725,0.53318,0.53271,0.53077,0.51636,0.51623,0.50326,0.49826,0.42864,0.39938,0.39841,0.3664,0.35805,0.34532,0.33922,0.33565,0.33172,0.33044,0.32705,0.3136,0.31206,0.30889,0.3063,0.28722,0.26652,0.24133,0.23225,0.21381,0.19444,0.18666,0.18274,0.14322,0.1391,0.13612,0.13037,0.12332,0.11746,0.11285,0.11205,0.11155,0.106,0.092436,0.091496,0.086594,0.079416,0.075664,0.075069,0.056411,0.056235,0.053053,0.047265,0.04627,0.042716,0.041911,0.036632,0.033504,0.027234,0.027097,0.021223,0.02063,0.020443,0.01736,0.017179,0.016181,0.014946,0.014578,0.014304,0.013271,0.013107,0.013,0.012243,0.011987,0.011921,0.011337,0.011133,0.010062,0.0084892,0.0082333,0.0081664,0.0075587,0.0073197,0.0064161,0.0050719,0.0047108,0.0041871,0.0040084,0.0035481,0.003139,0.0031076,0.0030834,0.0030806,0.0029705,0.0029613,0.00264,0.0025036,0.0022646,0.0022545,0.0021939,0.0018396,0.0018301,0.0016815,0.0015261,0.0012814,0.0012521,0.0011718,0.0011545,0.0011118,0.0010435,0.00094652,0.000944,0.00075481,0.00058289,0.00056697,0.00054981,0.00054457,0.00046494,0.00042151,0.00030116,0.00029585,0.00028541,0.00026859,0.00021398,0.00016835,0.00012906,0.00011906,0.00011345,0.00010032,7.8086e-05,6.9875e-05,6.0446e-05,4.8287e-05,3.9704e-05,3.8321e-05,2.6133e-05,2.4837e-05,2.438e-05,2.2269e-05,2.1479e-05,1.6066e-05,1.417e-05,1.3663e-05,1.3612e-05,1.2608e-05,1.1367e-05,1.0832e-05,1.0602e-05,7.256e-06,7.2526e-06,5.1296e-06,3.4342e-06,2.3588e-06,1.6617e-06,1.4264e-06,1.3703e-06,1.2473e-06,1.1486e-06,9.4513e-07,9.2498e-07,6.3306e-07,5.7485e-07,4.7346e-07,3.7151e-07,3.2046e-07,3.1514e-07,2.7931e-07,2.5753e-07,2.1083e-07,1.5625e-07,1.519e-07,1.3304e-07,1.0785e-07,9.086e-08,9.0133e-08,4.9603e-08,4.4951e-08,4.2872e-08,3.796e-08,3.563e-08,3.224e-08,2.7481e-08,2.5761e-08,2.3539e-08,2.035e-08,1.6844e-08,1.4054e-08,1.3798e-08,1.1049e-08,9.5405e-09,8.3796e-09,6.2307e-09,5.4386e-09,5.1759e-09,4.3403e-09,4.2942e-09,3.9742e-09,3.8406e-09,2.4366e-09,2.1667e-09,2.0699e-09,1.6793e-09,1.4868e-09,1.4596e-09,1.097e-09,6.3114e-10,5.348e-10,4.9094e-10,4.0202e-10,3.9514e-10,3.1532e-10,3.0761e-10,2.296e-10,1.9319e-10,1.3638e-10,1.3213e-10,1.2827e-10,1.2616e-10,1.1949e-10,1.1431e-10,1.1126e-10,8.3606e-11,7.8739e-11,4.4447e-11,3.6654e-11,3.2246e-11,3.0648e-11,2.0069e-11,1.9921e-11,1.7313e-11,1.6212e-11,1.1642e-11,1.152e-11,1.1237e-11,8.771e-12,8.1883e-12,7.9907e-12,7.4174e-12,6.7363e-12,6.1491e-12,5.8641e-12,3.6711e-12,3.6107e-12,2.8213e-12,1.9443e-12,1.3668e-12,8.3457e-13,8.2871e-13,6.9491e-13,5.5637e-13,4.1432e-13,4.1296e-13,3.7278e-13,2.2985e-13,2.0533e-13,2.028e-13,1.1402e-13,1.0042e-13,9.3322e-14,7.4428e-14,5.9437e-14,3.9209e-14,3.6728e-14,2.677e-14,1.3125e-14,1.3e-14,1.2259e-14,1.0872e-14,9.8937e-15,8.8064e-15,7.6744e-15,2.1089e-15,1.4976e-15,8.8365e-16,5.957e-16,5.842e-16,5.5856e-16,3.0923e-16,2.6922e-16,2.6614e-16,1.5055e-16,5.703e-17,5.5288e-17,4.1449e-17,3.9047e-17,2.0067e-17,1.6641e-17,1.1045e-17,8.913e-18,7.028e-18,6.7097e-18,5.056e-18,4.8096e-18,4.6967e-18,2.4615e-18,2.0274e-18,1.8682e-18,1.4317e-18,1.3164e-18,8.9499e-19,8.1942e-19,6.8599e-19,4.3993e-19,4.3809e-19,3.5363e-19,3.2893e-19,3.289e-19,2.0474e-19,2.0168e-19,1.6578e-19,1.3474e-19,8.5611e-20,5.6791e-20,4.2255e-20,2.6356e-20,1.6997e-20,9.5957e-21,9.3745e-21,6.0255e-21,3.9324e-21,3.0553e-21,1.55e-21,1.2692e-21,8.4495e-22,6.6371e-22,4.0027e-22,3.7939e-22,3.3968e-22,2.6297e-22,1.536e-22,8.8156e-23,6.5617e-23,4.8831e-23,4.1842e-23,4.0941e-23,3.0918e-23,2.2332e-23,8.2225e-24,6.293e-24,5.4297e-24,3.9175e-24,3.9086e-24,2.8318e-24,2.7203e-24,2.1849e-24,1.8317e-24,1.0097e-24,9.261e-25,5.8035e-25,3.7507e-25,8.9179e-26,6.7959e-26,5.9589e-26,4.2195e-26,3.0497e-26,2.6951e-26,2.1048e-26,1.7618e-26,1.4125e-26,9.7961e-27,9.7769e-27,5.0498e-27,4.2347e-27,4.0819e-27,4.0027e-27,2.0371e-27,2.006e-27,1.8735e-27,1.7796e-27,1.5574e-27,1.2482e-27,1.0233e-27,4.2224e-28,6.293e-29,3.5542e-29,3.3787e-29,3.2403e-29,2.8297e-29,2.6241e-29,1.2792e-29,7.9513e-30,5.6196e-30,4.6256e-30,3.0776e-30,2.1747e-30,2.0385e-30,1.2494e-30,9.4632e-31,6.7357e-31,3.8935e-31,1.8853e-31,1.7998e-31,1.4069e-31,1.1855e-31,1.0977e-31,4.8164e-32,3.8413e-32,1.3666e-32,1.0248e-32,6.1648e-33,4.6931e-33,4.2957e-33,2.6506e-33,2.4899e-33,2.1715e-33,1.6097e-33,9.0795e-34 1,0.20964,0.22847,0.22944,0.23535,0.23996,0.24612,0.25835,0.28897,0.30952,0.31276,0.32979,0.33262,0.344,0.37253,0.38172,0.38817,0.41669,0.42168,0.42724,0.44614,0.44819,0.44937,0.46404,0.47277,0.47306,0.48998,0.49153,0.49924,0.50026,0.50125,0.55447,0.60607,0.61075,0.62599,0.63956,0.65009,0.66253,0.67694,0.70209,0.71578,0.73775,0.76481,0.76727,0.77248,0.77726,0.80167,0.8017,0.85608,0.85987,0.86195,0.87676,0.87782,0.90481,0.91464,0.91859,0.92699,0.93211,0.94052,0.94302,0.96062,0.96995,0.99126,0.99491,0.99591,0.99743,0.9998,0.99996,1,0.99902,0.99634,0.99491,0.99358,0.98743,0.97504,0.95767,0.94358,0.94039,0.90853,0.89617,0.89019,0.88748,0.87627,0.82594,0.82422,0.81479,0.7995,0.79645,0.77388,0.70864,0.70775,0.68873,0.68185,0.60237,0.58229,0.58082,0.56292,0.53881,0.53834,0.53639,0.52195,0.52182,0.50881,0.5038,0.4339,0.40449,0.40351,0.3713,0.36289,0.35008,0.34393,0.34033,0.33637,0.33509,0.33167,0.31811,0.31655,0.31336,0.31075,0.2915,0.27062,0.24517,0.23601,0.21737,0.19777,0.1899,0.18592,0.1459,0.14172,0.1387,0.13286,0.12571,0.11976,0.11509,0.11427,0.11376,0.10812,0.094349,0.093393,0.088411,0.081112,0.077295,0.07669,0.057695,0.057516,0.054274,0.048374,0.04736,0.043735,0.042914,0.037528,0.034334,0.027929,0.027789,0.021784,0.021177,0.020986,0.017831,0.017645,0.016624,0.015359,0.014981,0.014701,0.013643,0.013474,0.013365,0.012589,0.012326,0.012259,0.01166,0.011451,0.010353,0.0087391,0.0084765,0.0084078,0.0077839,0.0075385,0.0066105,0.0052292,0.004858,0.0043194,0.0041354,0.0036619,0.0032407,0.0032084,0.0031835,0.0031807,0.0030672,0.0030578,0.0027269,0.0025864,0.0023401,0.0023297,0.0022672,0.001902,0.0018922,0.001739,0.0015787,0.0013261,0.0012958,0.0012129,0.0011951,0.001151,0.0010805,0.0009803,0.00097769,0.00078219,0.00060442,0.00058794,0.00057019,0.00056477,0.00048237,0.00043742,0.00031277,0.00030727,0.00029646,0.00027903,0.00022241,0.00017507,0.00013429,0.00012391,0.00011809,0.00010445,8.1343e-05,7.2807e-05,6.3003e-05,5.0353e-05,4.142e-05,3.998e-05,2.7286e-05,2.5936e-05,2.5459e-05,2.3259e-05,2.2435e-05,1.6791e-05,1.4813e-05,1.4284e-05,1.4232e-05,1.3184e-05,1.1888e-05,1.133e-05,1.109e-05,7.5955e-06,7.5919e-06,5.3732e-06,3.6e-06,2.4744e-06,1.7443e-06,1.4977e-06,1.4389e-06,1.3099e-06,1.2065e-06,9.931e-07,9.7197e-07,6.6567e-07,6.0456e-07,4.981e-07,3.91e-07,3.3737e-07,3.3177e-07,2.9411e-07,2.7122e-07,2.2211e-07,1.6469e-07,1.6011e-07,1.4027e-07,1.1374e-07,9.5856e-08,9.5091e-08,5.2382e-08,4.7478e-08,4.5285e-08,4.0104e-08,3.7646e-08,3.407e-08,2.9048e-08,2.7234e-08,2.4887e-08,2.1521e-08,1.7818e-08,1.4871e-08,1.4601e-08,1.1696e-08,1.0101e-08,8.8741e-09,6.6013e-09,5.7633e-09,5.4854e-09,4.601e-09,4.5522e-09,4.2135e-09,4.0721e-09,2.5852e-09,2.2992e-09,2.1967e-09,1.7827e-09,1.5787e-09,1.5498e-09,1.1653e-09,6.7097e-10,5.6869e-10,5.2211e-10,4.2766e-10,4.2036e-10,3.3555e-10,3.2736e-10,2.4444e-10,2.0573e-10,1.453e-10,1.4078e-10,1.3667e-10,1.3442e-10,1.2733e-10,1.2182e-10,1.1857e-10,8.9136e-11,8.3954e-11,4.7428e-11,3.9122e-11,3.4423e-11,3.272e-11,2.1438e-11,2.128e-11,1.8498e-11,1.7323e-11,1.2445e-11,1.2315e-11,1.2013e-11,9.3796e-12,8.7573e-12,8.5462e-12,7.9339e-12,7.2062e-12,6.5788e-12,6.2743e-12,3.9303e-12,3.8657e-12,3.0215e-12,2.0833e-12,1.4652e-12,8.9519e-13,8.8891e-13,7.4556e-13,5.9709e-13,4.4481e-13,4.4335e-13,4.0026e-13,2.4694e-13,2.2063e-13,2.1791e-13,1.2261e-13,1.08e-13,1.0037e-13,8.0073e-14,6.3963e-14,4.2215e-14,3.9547e-14,2.8835e-14,1.4149e-14,1.4015e-14,1.3217e-14,1.1724e-14,1.067e-14,9.4984e-15,8.2787e-15,2.2784e-15,1.6185e-15,9.5561e-16,6.4449e-16,6.3207e-16,6.0435e-16,3.348e-16,2.9153e-16,2.882e-16,1.6313e-16,6.1862e-17,5.9974e-17,4.4976e-17,4.2373e-17,2.1791e-17,1.8075e-17,1.2002e-17,9.6875e-18,7.6406e-18,7.2949e-18,5.4986e-18,5.2309e-18,5.1083e-18,2.679e-18,2.2069e-18,2.0339e-18,1.5591e-18,1.4336e-18,9.751e-19,8.9285e-19,7.4759e-19,4.7966e-19,4.7765e-19,3.8565e-19,3.5874e-19,3.587e-19,2.234e-19,2.2007e-19,1.8093e-19,1.4709e-19,9.3496e-20,6.2048e-20,4.618e-20,2.8817e-20,1.8593e-20,1.0502e-20,1.0261e-20,6.5978e-21,4.3077e-21,3.3477e-21,1.6995e-21,1.3919e-21,9.2696e-22,7.2829e-22,4.3944e-22,4.1653e-22,3.7298e-22,2.8881e-22,1.6878e-22,9.6919e-23,7.216e-23,5.3714e-23,4.6033e-23,4.5043e-23,3.4024e-23,2.4584e-23,9.0597e-24,6.9354e-24,5.9848e-24,4.3192e-24,4.3095e-24,3.1231e-24,3.0002e-24,2.4103e-24,2.0209e-24,1.1146e-24,1.0224e-24,6.4097e-25,4.1441e-25,9.8657e-26,7.5199e-26,6.5945e-26,4.671e-26,3.3769e-26,2.9846e-26,2.3314e-26,1.9518e-26,1.5651e-26,1.0858e-26,1.0837e-26,5.6004e-27,4.6971e-27,4.5278e-27,4.44e-27,2.2609e-27,2.2264e-27,2.0796e-27,1.9754e-27,1.7289e-27,1.386e-27,1.1364e-27,4.6926e-28,7.0048e-29,3.9581e-29,3.7629e-29,3.6088e-29,3.1519e-29,2.923e-29,1.4258e-29,8.8657e-30,6.2677e-30,5.1599e-30,3.4342e-30,2.4274e-30,2.2754e-30,1.3952e-30,1.057e-30,7.5253e-31,4.3518e-31,2.1085e-31,2.0129e-31,1.5738e-31,1.3263e-31,1.2281e-31,5.3923e-32,4.3014e-32,1.5315e-32,1.1487e-32,6.9129e-33,5.2637e-33,4.8184e-33,2.9741e-33,2.794e-33,2.4369e-33,1.8069e-33,1.0196e-33 1,0.1937,0.21155,0.21248,0.21809,0.22248,0.22834,0.24,0.26927,0.28899,0.29209,0.30848,0.31121,0.32218,0.34976,0.35866,0.36491,0.39264,0.3975,0.40292,0.42137,0.42338,0.42453,0.43888,0.44744,0.44772,0.46433,0.46586,0.47344,0.47444,0.47541,0.52798,0.57929,0.58396,0.59919,0.61279,0.62335,0.63587,0.65039,0.67581,0.6897,0.71207,0.73974,0.74226,0.7476,0.75252,0.7777,0.77773,0.83444,0.83842,0.84062,0.85628,0.8574,0.88623,0.89685,0.90114,0.91028,0.9159,0.92517,0.92795,0.94773,0.95848,0.98451,0.98951,0.99097,0.99331,0.99794,0.99856,0.99902,1,0.99914,0.99839,0.9976,0.99342,0.98382,0.96925,0.95696,0.95414,0.92539,0.91402,0.90848,0.90597,0.89553,0.848,0.84635,0.83734,0.82268,0.81975,0.79798,0.73439,0.73352,0.71482,0.70804,0.62917,0.60908,0.60761,0.58966,0.5654,0.56492,0.56296,0.54839,0.54826,0.53511,0.53004,0.45895,0.42885,0.42784,0.39474,0.38608,0.37286,0.36651,0.36279,0.3587,0.35737,0.35383,0.33978,0.33817,0.33485,0.33215,0.31214,0.29038,0.26377,0.25416,0.23458,0.21394,0.20563,0.20143,0.15896,0.1545,0.15129,0.14506,0.13742,0.13105,0.12604,0.12516,0.12462,0.11857,0.10376,0.10273,0.097354,0.08947,0.085341,0.084685,0.064055,0.063861,0.060325,0.053879,0.05277,0.0488,0.0479,0.041986,0.038471,0.031403,0.031248,0.024593,0.023918,0.023706,0.020193,0.019986,0.018847,0.017434,0.017012,0.016699,0.015514,0.015325,0.015203,0.014333,0.014038,0.013962,0.01329,0.013055,0.011821,0.010003,0.0097067,0.0096291,0.0089244,0.008647,0.0075965,0.0060287,0.0056063,0.0049926,0.0047828,0.004242,0.0037601,0.0037231,0.0036946,0.0036913,0.0035613,0.0035505,0.003171,0.0030096,0.0027266,0.0027145,0.0026427,0.0022218,0.0022106,0.0020337,0.0018484,0.001556,0.0015209,0.0014248,0.001404,0.0013529,0.001271,0.0011544,0.0011514,0.00092359,0.00071582,0.00069653,0.00067574,0.00066938,0.00057274,0.00051995,0.00037317,0.00036668,0.00035391,0.00033332,0.00026634,0.00021019,0.00016168,0.00014931,0.00014237,0.00012608,9.8443e-05,8.8212e-05,7.6444e-05,6.1233e-05,5.0467e-05,4.873e-05,3.3381e-05,3.1745e-05,3.1167e-05,2.8498e-05,2.7499e-05,2.0638e-05,1.8228e-05,1.7583e-05,1.7519e-05,1.6241e-05,1.4659e-05,1.3977e-05,1.3683e-05,9.4041e-06,9.3997e-06,6.6735e-06,4.4872e-06,3.0943e-06,2.1879e-06,1.881e-06,1.8078e-06,1.6471e-06,1.5181e-06,1.2516e-06,1.2252e-06,8.4176e-07,7.651e-07,6.3138e-07,4.9661e-07,4.2899e-07,4.2194e-07,3.7441e-07,3.4549e-07,2.8338e-07,2.1062e-07,2.0481e-07,1.7962e-07,1.4589e-07,1.2311e-07,1.2214e-07,6.7591e-08,6.1308e-08,5.8498e-08,5.1853e-08,4.8699e-08,4.4105e-08,3.765e-08,3.5315e-08,3.2294e-08,2.7956e-08,2.3179e-08,1.9371e-08,1.9021e-08,1.5262e-08,1.3195e-08,1.1603e-08,8.6497e-09,7.559e-09,7.197e-09,6.0443e-09,5.9807e-09,5.5388e-09,5.3541e-09,3.41e-09,3.0353e-09,2.9009e-09,2.3577e-09,2.0896e-09,2.0516e-09,1.5457e-09,8.9334e-10,7.5801e-10,6.9633e-10,5.7114e-10,5.6145e-10,4.4885e-10,4.3796e-10,3.2767e-10,2.7609e-10,1.9544e-10,1.894e-10,1.8391e-10,1.809e-10,1.7142e-10,1.6405e-10,1.597e-10,1.2028e-10,1.1333e-10,6.4261e-11,5.3072e-11,4.6735e-11,4.4437e-11,2.9194e-11,2.8979e-11,2.5213e-11,2.3622e-11,1.7005e-11,1.6828e-11,1.6418e-11,1.2839e-11,1.1992e-11,1.1705e-11,1.0871e-11,9.8801e-12,9.0249e-12,8.6097e-12,5.4087e-12,5.3204e-12,4.1647e-12,2.878e-12,2.0284e-12,1.2429e-12,1.2343e-12,1.0363e-12,8.3101e-13,6.2015e-13,6.1813e-13,5.5839e-13,3.4546e-13,3.0886e-13,3.0508e-13,1.7222e-13,1.5181e-13,1.4115e-13,1.1275e-13,9.0178e-14,5.9657e-14,5.5907e-14,4.0836e-14,2.0118e-14,1.9927e-14,1.8799e-14,1.6686e-14,1.5194e-14,1.3535e-14,1.1806e-14,3.2719e-15,2.3286e-15,1.3787e-15,9.3178e-16,9.1391e-16,8.7405e-16,4.8572e-16,4.2325e-16,4.1843e-16,2.3756e-16,9.0533e-17,8.7784e-17,6.5929e-17,6.2132e-17,3.2061e-17,2.6618e-17,1.7711e-17,1.4311e-17,1.13e-17,1.0792e-17,8.1457e-18,7.751e-18,7.5703e-18,3.9829e-18,3.2842e-18,3.0278e-18,2.3241e-18,2.1379e-18,1.4568e-18,1.3345e-18,1.1184e-18,7.1909e-19,7.1609e-19,5.7876e-19,5.3856e-19,5.3851e-19,3.3614e-19,3.3116e-19,2.7252e-19,2.2176e-19,1.4126e-19,9.3929e-20,7.0005e-20,4.3781e-20,2.8305e-20,1.6031e-20,1.5663e-20,1.0092e-20,6.602e-21,5.1367e-21,2.6157e-21,2.1442e-21,1.4306e-21,1.1252e-21,6.8046e-22,6.4514e-22,5.7797e-22,4.4805e-22,2.6247e-22,1.5108e-22,1.1263e-22,8.395e-23,7.1993e-23,7.0451e-23,5.3282e-23,3.8552e-23,1.4269e-23,1.0936e-23,9.4427e-24,6.8243e-24,6.809e-24,4.9412e-24,4.7477e-24,3.8176e-24,3.2033e-24,1.7712e-24,1.6253e-24,1.0209e-24,6.6125e-25,1.5836e-25,1.2084e-25,1.0603e-25,7.5209e-26,5.4445e-26,4.8144e-26,3.7645e-26,3.1538e-26,2.5312e-26,1.7587e-26,1.7552e-26,9.0952e-27,7.6337e-27,7.3595e-27,7.2174e-27,3.6852e-27,3.6292e-27,3.3907e-27,3.2214e-27,2.821e-27,2.2635e-27,1.8574e-27,7.6964e-28,1.1575e-28,6.5547e-29,6.2327e-29,5.9784e-29,5.2242e-29,4.8463e-29,2.3705e-29,1.4767e-29,1.0453e-29,8.6119e-30,5.7407e-30,4.0629e-30,3.8095e-30,2.3402e-30,1.7747e-30,1.2652e-30,7.3313e-31,3.5617e-31,3.4007e-31,2.6613e-31,2.2442e-31,2.0787e-31,9.1548e-32,7.3087e-32,2.6121e-32,1.9613e-32,1.1825e-32,9.0128e-33,8.2529e-33,5.103e-33,4.795e-33,4.1842e-33,3.1058e-33,1.7562e-33 1,0.17954,0.19648,0.19736,0.2027,0.20688,0.21246,0.22358,0.25157,0.27049,0.27347,0.28924,0.29186,0.30244,0.32908,0.3377,0.34377,0.37069,0.37542,0.3807,0.39869,0.40064,0.40177,0.41579,0.42417,0.42444,0.44072,0.44221,0.44966,0.45064,0.4516,0.50338,0.55426,0.55891,0.57408,0.58766,0.59822,0.61076,0.62533,0.65091,0.66492,0.68757,0.7157,0.71827,0.72372,0.72874,0.75453,0.75456,0.81319,0.81734,0.81963,0.83602,0.8372,0.86762,0.87891,0.8835,0.89331,0.89936,0.90939,0.91241,0.93415,0.94617,0.97649,0.98273,0.9846,0.9877,0.99444,0.99549,0.99634,0.99914,1,0.99988,0.99961,0.99731,0.99036,0.9785,0.96797,0.96551,0.93981,0.92942,0.92433,0.92202,0.91235,0.86767,0.86611,0.85754,0.84354,0.84073,0.81981,0.75805,0.7572,0.73888,0.73222,0.65421,0.6342,0.63273,0.61479,0.59048,0.59,0.58803,0.57339,0.57326,0.56001,0.5549,0.4829,0.45222,0.4512,0.41733,0.40845,0.39487,0.38834,0.38451,0.3803,0.37893,0.37529,0.36081,0.35914,0.35572,0.35293,0.33223,0.30967,0.28199,0.27197,0.25152,0.22989,0.22117,0.21675,0.17196,0.16724,0.16383,0.15723,0.14912,0.14234,0.13701,0.13608,0.1355,0.12906,0.11323,0.11213,0.10637,0.097915,0.093479,0.092774,0.07053,0.07032,0.066493,0.059505,0.0583,0.053986,0.053007,0.046564,0.042727,0.03499,0.034821,0.027506,0.026763,0.026529,0.022653,0.022424,0.021164,0.019599,0.019132,0.018785,0.01747,0.017261,0.017125,0.016158,0.015831,0.015747,0.014999,0.014738,0.013363,0.011334,0.011003,0.010916,0.010127,0.0098168,0.0086392,0.0068769,0.0064011,0.0057089,0.0054719,0.0048605,0.0043149,0.0042729,0.0042406,0.0042369,0.0040895,0.0040773,0.0036465,0.0034631,0.0031412,0.0031275,0.0030457,0.002566,0.0025531,0.0023511,0.0021394,0.0018045,0.0017643,0.001654,0.0016302,0.0015714,0.0014774,0.0013434,0.0013399,0.0010774,0.00083739,0.00081506,0.00079099,0.00078364,0.00067163,0.00061035,0.00043959,0.00043202,0.00041713,0.00039311,0.00031484,0.00024906,0.00019209,0.00017753,0.00016935,0.00015016,0.00011752,0.00010542,9.1482e-05,7.3432e-05,6.0632e-05,5.8563e-05,4.0258e-05,3.8302e-05,3.7611e-05,3.4418e-05,3.3222e-05,2.4997e-05,2.2103e-05,2.1328e-05,2.125e-05,1.9713e-05,1.7809e-05,1.6987e-05,1.6634e-05,1.1469e-05,1.1464e-05,8.163e-06,5.507e-06,3.8093e-06,2.7011e-06,2.3251e-06,2.2353e-06,2.0381e-06,1.8797e-06,1.5522e-06,1.5197e-06,1.0472e-06,9.525e-07,7.872e-07,6.2032e-07,5.3646e-07,5.2771e-07,4.6869e-07,4.3276e-07,3.5549e-07,2.6481e-07,2.5756e-07,2.261e-07,1.8393e-07,1.554e-07,1.5418e-07,8.5691e-08,7.7781e-08,7.4241e-08,6.5864e-08,6.1886e-08,5.6088e-08,4.7932e-08,4.498e-08,4.1158e-08,3.5666e-08,2.961e-08,2.4776e-08,2.4332e-08,1.9553e-08,1.6922e-08,1.4893e-08,1.1125e-08,9.7311e-09,9.2682e-09,7.7929e-09,7.7114e-09,7.1453e-09,6.9087e-09,4.4134e-09,3.9314e-09,3.7585e-09,3.0588e-09,2.7131e-09,2.6641e-09,2.0109e-09,1.1664e-09,9.907e-10,9.1059e-10,7.4781e-10,7.352e-10,5.8859e-10,5.7441e-10,4.3054e-10,3.6316e-10,2.5762e-10,2.4972e-10,2.4251e-10,2.3858e-10,2.2615e-10,2.1647e-10,2.1078e-10,1.5902e-10,1.4989e-10,8.5286e-11,7.0518e-11,6.2146e-11,5.9108e-11,3.8929e-11,3.8645e-11,3.365e-11,3.1539e-11,2.2748e-11,2.2514e-11,2.1968e-11,1.7204e-11,1.6075e-11,1.5693e-11,1.4581e-11,1.3259e-11,1.2118e-11,1.1564e-11,7.2839e-12,7.1657e-12,5.617e-12,3.8897e-12,2.7469e-12,1.6879e-12,1.6762e-12,1.4087e-12,1.131e-12,8.4541e-13,8.4267e-13,7.6166e-13,4.7247e-13,4.2267e-13,4.1752e-13,2.3643e-13,2.0855e-13,1.9398e-13,1.5514e-13,1.2423e-13,8.2365e-14,7.7214e-14,5.6494e-14,2.7935e-14,2.7672e-14,2.6113e-14,2.3192e-14,2.1129e-14,1.8833e-14,1.6438e-14,4.5859e-15,3.2694e-15,1.9408e-15,1.3143e-15,1.2892e-15,1.2332e-15,6.8731e-16,5.9932e-16,5.9253e-16,3.3733e-16,1.2916e-16,1.2526e-16,9.4203e-17,8.8803e-17,4.5969e-17,3.8198e-17,2.5466e-17,2.0597e-17,1.6282e-17,1.5553e-17,1.1755e-17,1.1188e-17,1.0928e-17,5.7668e-18,4.7593e-18,4.3895e-18,3.3734e-18,3.1043e-18,2.1191e-18,1.942e-18,1.6288e-18,1.0494e-18,1.045e-18,8.4541e-19,7.8695e-19,7.8687e-19,4.9221e-19,4.8495e-19,3.9943e-19,3.2532e-19,2.0766e-19,1.3833e-19,1.0323e-19,6.4691e-20,4.1904e-20,2.3791e-20,2.3248e-20,1.5008e-20,9.8358e-21,7.661e-21,3.9123e-21,3.2098e-21,2.1453e-21,1.689e-21,1.0236e-21,9.7068e-22,8.7002e-22,6.7517e-22,3.9639e-22,2.287e-22,1.707e-22,1.2739e-22,1.0931e-22,1.0698e-22,8.1001e-23,5.8686e-23,2.1808e-23,1.6732e-23,1.4456e-23,1.0461e-23,1.0438e-23,7.5844e-24,7.2885e-24,5.8658e-24,4.9254e-24,2.7297e-24,2.5057e-24,1.5769e-24,1.0231e-24,2.4639e-25,1.8821e-25,1.6522e-25,1.1735e-25,8.5058e-26,7.525e-26,5.8895e-26,4.9374e-26,3.9661e-26,2.7594e-26,2.7541e-26,1.4307e-26,1.2016e-26,1.1586e-26,1.1363e-26,5.8165e-27,5.7284e-27,5.3534e-27,5.0871e-27,4.457e-27,3.5791e-27,2.9391e-27,1.2219e-27,1.8504e-28,1.0501e-28,9.9867e-29,9.5808e-29,8.3761e-29,7.7724e-29,3.8116e-29,2.3784e-29,1.6858e-29,1.3898e-29,9.2778e-30,6.5744e-30,6.1658e-30,3.7942e-30,2.8802e-30,2.0557e-30,1.1935e-30,5.813e-31,5.5513e-31,4.348e-31,3.6688e-31,3.3991e-31,1.5012e-31,1.1995e-31,4.302e-32,3.2334e-32,1.9528e-32,1.4898e-32,1.3646e-32,8.4515e-33,7.9431e-33,6.9345e-33,5.1525e-33,2.9191e-33 1,0.17448,0.1911,0.19196,0.1972,0.2013,0.20678,0.2177,0.24521,0.26383,0.26677,0.2823,0.28489,0.29531,0.3216,0.33012,0.3361,0.36272,0.3674,0.37262,0.39043,0.39237,0.39348,0.40738,0.41568,0.41595,0.4321,0.43358,0.44097,0.44194,0.44289,0.49436,0.54504,0.54967,0.56481,0.57837,0.58892,0.60145,0.61603,0.64164,0.65569,0.67842,0.70669,0.70927,0.71476,0.71981,0.7458,0.74584,0.80511,0.80932,0.81165,0.82828,0.82948,0.86045,0.87199,0.87667,0.88671,0.89292,0.90322,0.90633,0.92876,0.94124,0.97312,0.9798,0.98183,0.9852,0.99271,0.99393,0.99491,0.99839,0.99988,1,0.99992,0.99831,0.99236,0.98152,0.97165,0.96933,0.94479,0.93478,0.92986,0.92763,0.91825,0.87469,0.87316,0.86477,0.85102,0.84826,0.82768,0.76666,0.76582,0.74766,0.74106,0.66345,0.64348,0.64201,0.62409,0.59978,0.5993,0.59733,0.58267,0.58254,0.56927,0.56415,0.49186,0.46099,0.45996,0.42583,0.41687,0.40317,0.39658,0.39271,0.38846,0.38707,0.38339,0.36875,0.36707,0.36361,0.36078,0.33985,0.31699,0.28893,0.27876,0.25798,0.23599,0.22711,0.22262,0.17696,0.17215,0.16867,0.16192,0.15363,0.14671,0.14125,0.1403,0.1397,0.13311,0.1169,0.11577,0.10987,0.1012,0.096643,0.095919,0.073058,0.072842,0.068903,0.061706,0.060465,0.056018,0.055009,0.048362,0.044401,0.036404,0.036229,0.028658,0.027887,0.027645,0.023627,0.023389,0.022082,0.020459,0.019973,0.019613,0.018248,0.01803,0.017889,0.016884,0.016544,0.016457,0.015679,0.015408,0.013978,0.011865,0.01152,0.01143,0.010608,0.010284,0.0090565,0.0072172,0.0067202,0.0059968,0.005749,0.0051095,0.0045385,0.0044945,0.0044607,0.0044568,0.0043025,0.0042897,0.0038384,0.0036463,0.0033087,0.0032944,0.0032086,0.0027053,0.0026918,0.0024798,0.0022573,0.0019054,0.0018632,0.0017471,0.0017221,0.0016603,0.0015614,0.0014203,0.0014166,0.0011402,0.00088707,0.00086352,0.00083812,0.00083036,0.00071212,0.00064739,0.00046687,0.00045886,0.00044311,0.00041769,0.00033481,0.0002651,0.00020465,0.0001892,0.00018051,0.00016013,0.00012544,0.00011256,9.7729e-05,7.8507e-05,6.4866e-05,6.266e-05,4.313e-05,4.1041e-05,4.0303e-05,3.6893e-05,3.5615e-05,2.6823e-05,2.3727e-05,2.2898e-05,2.2815e-05,2.117e-05,1.9132e-05,1.8252e-05,1.7873e-05,1.2339e-05,1.2333e-05,8.7913e-06,5.9382e-06,4.1122e-06,2.919e-06,2.5138e-06,2.417e-06,2.2044e-06,2.0335e-06,1.6802e-06,1.6451e-06,1.1348e-06,1.0325e-06,8.5381e-07,6.7327e-07,5.825e-07,5.7302e-07,5.091e-07,4.7018e-07,3.8645e-07,2.8811e-07,2.8024e-07,2.461e-07,2.0031e-07,1.6932e-07,1.68e-07,9.3519e-08,8.4908e-08,8.1054e-08,7.1931e-08,6.7597e-08,6.128e-08,5.2392e-08,4.9173e-08,4.5006e-08,3.9014e-08,3.2406e-08,2.7128e-08,2.6643e-08,2.1422e-08,1.8547e-08,1.6329e-08,1.2206e-08,1.068e-08,1.0174e-08,8.5579e-09,8.4686e-09,7.8484e-09,7.5891e-09,4.8535e-09,4.3247e-09,4.1349e-09,3.3669e-09,2.9873e-09,2.9334e-09,2.2157e-09,1.2868e-09,1.0935e-09,1.0052e-09,8.2592e-10,8.1203e-10,6.5044e-10,6.348e-10,4.7613e-10,4.0177e-10,2.8524e-10,2.7651e-10,2.6855e-10,2.642e-10,2.5046e-10,2.3978e-10,2.3348e-10,1.7627e-10,1.6617e-10,9.4667e-11,7.8308e-11,6.9031e-11,6.5663e-11,4.3287e-11,4.2972e-11,3.743e-11,3.5086e-11,2.5325e-11,2.5064e-11,2.4458e-11,1.9164e-11,1.791e-11,1.7484e-11,1.6248e-11,1.4778e-11,1.3509e-11,1.2892e-11,8.1289e-12,7.9972e-12,6.2721e-12,4.3468e-12,3.0719e-12,1.8895e-12,1.8765e-12,1.5776e-12,1.2672e-12,9.4776e-13,9.447e-13,8.5406e-13,5.303e-13,4.7451e-13,4.6874e-13,2.6574e-13,2.3446e-13,2.1812e-13,1.7452e-13,1.3981e-13,9.2771e-14,8.6981e-14,6.3679e-14,3.1531e-14,3.1235e-14,2.9479e-14,2.6187e-14,2.3862e-14,2.1273e-14,1.8574e-14,5.1942e-15,3.7054e-15,2.2018e-15,1.4921e-15,1.4637e-15,1.4002e-15,7.8123e-16,6.8139e-16,6.7369e-16,3.8393e-16,1.4726e-16,1.4282e-16,1.0746e-16,1.0131e-16,5.2506e-17,4.3645e-17,2.9118e-17,2.356e-17,1.8632e-17,1.7798e-17,1.3459e-17,1.2811e-17,1.2514e-17,6.6107e-18,5.4577e-18,5.0342e-18,3.8707e-18,3.5624e-18,2.4334e-18,2.2303e-18,1.8712e-18,1.2064e-18,1.2014e-18,9.7231e-19,9.0518e-19,9.0509e-19,5.6661e-19,5.5826e-19,4.5996e-19,3.7476e-19,2.3939e-19,1.5957e-19,1.1914e-19,7.4719e-20,4.8434e-20,2.7524e-20,2.6897e-20,1.7376e-20,1.1395e-20,8.8791e-21,4.5392e-21,3.7253e-21,2.4914e-21,1.9623e-21,1.1901e-21,1.1287e-21,1.0118e-21,7.8551e-22,4.6156e-22,2.6652e-22,1.9902e-22,1.4859e-22,1.2753e-22,1.2482e-22,9.4547e-23,6.8534e-23,2.5506e-23,1.9576e-23,1.6918e-23,1.2248e-23,1.2221e-23,8.8843e-24,8.5382e-24,6.8738e-24,5.7733e-24,3.2024e-24,2.94e-24,1.8514e-24,1.202e-24,2.9007e-25,2.2167e-25,1.9463e-25,1.383e-25,1.0029e-25,8.8742e-26,6.9479e-26,5.8262e-26,4.6814e-26,3.2588e-26,3.2525e-26,1.6911e-26,1.4207e-26,1.3699e-26,1.3436e-26,6.8842e-27,6.78e-27,6.3367e-27,6.022e-27,5.2771e-27,4.2389e-27,3.4819e-27,1.4493e-27,2.2005e-28,1.2497e-28,1.1886e-28,1.1404e-28,9.9715e-29,9.2537e-29,4.5424e-29,2.8362e-29,2.0112e-29,1.6585e-29,1.1077e-29,7.8532e-30,7.3658e-30,4.5356e-30,3.4442e-30,2.4593e-30,1.4289e-30,6.9659e-31,6.6527e-31,5.2123e-31,4.399e-31,4.0761e-31,1.8021e-31,1.4403e-31,5.1725e-32,3.8891e-32,2.3503e-32,1.7937e-32,1.6431e-32,1.0183e-32,9.571e-33,8.3571e-33,6.2118e-33,3.5218e-33 1,0.17042,0.18676,0.18761,0.19277,0.19681,0.2022,0.21296,0.24008,0.25845,0.26135,0.27669,0.27925,0.28955,0.31555,0.32397,0.3299,0.35626,0.3609,0.36607,0.38373,0.38565,0.38676,0.40055,0.40879,0.40906,0.42509,0.42656,0.4339,0.43487,0.43581,0.487,0.5375,0.54213,0.55724,0.57078,0.58131,0.59384,0.60841,0.63404,0.64812,0.6709,0.69927,0.70187,0.70739,0.71246,0.7386,0.73864,0.79842,0.80267,0.80502,0.82185,0.82307,0.85448,0.86621,0.87097,0.8812,0.88753,0.89805,0.90123,0.92421,0.93706,0.97019,0.97724,0.97939,0.98299,0.99112,0.99247,0.99358,0.9976,0.99961,0.99992,1,0.99896,0.99383,0.98383,0.97451,0.97229,0.94872,0.93903,0.93425,0.93208,0.92296,0.88033,0.87883,0.87057,0.85705,0.85433,0.83403,0.77366,0.77282,0.7548,0.74824,0.67099,0.65106,0.64959,0.6317,0.6074,0.60692,0.60495,0.59028,0.59015,0.57687,0.57174,0.49924,0.46822,0.46718,0.43285,0.42382,0.41002,0.40338,0.39948,0.39519,0.3938,0.39009,0.37533,0.37363,0.37014,0.36729,0.34615,0.32306,0.29468,0.28439,0.26335,0.24106,0.23206,0.2275,0.18113,0.17624,0.1727,0.16584,0.1574,0.15035,0.1448,0.14383,0.14322,0.1365,0.11997,0.11882,0.1128,0.10395,0.099295,0.098556,0.075182,0.07496,0.070929,0.063558,0.062286,0.057728,0.056694,0.049877,0.045811,0.037597,0.037417,0.029631,0.028838,0.028589,0.024451,0.024207,0.02286,0.021186,0.020686,0.020314,0.018907,0.018682,0.018537,0.0175,0.017149,0.017059,0.016256,0.015976,0.014499,0.012316,0.01196,0.011866,0.011017,0.010682,0.0094115,0.007507,0.006992,0.0062421,0.0059853,0.0053219,0.0047293,0.0046837,0.0046486,0.0046445,0.0044843,0.004471,0.0040023,0.0038027,0.003452,0.003437,0.0033478,0.0028245,0.0028105,0.0025898,0.0023583,0.0019919,0.0019479,0.001827,0.0018009,0.0017365,0.0016333,0.0014863,0.0014824,0.001194,0.00092977,0.00090516,0.00087863,0.00087052,0.00074694,0.00067926,0.00049037,0.00048198,0.00046549,0.00043887,0.00035203,0.00027894,0.00021551,0.00019928,0.00019016,0.00016875,0.00013228,0.00011875,0.00010314,8.2907e-05,6.8539e-05,6.6215e-05,4.5625e-05,4.3422e-05,4.2642e-05,3.9044e-05,3.7695e-05,2.8412e-05,2.5141e-05,2.4265e-05,2.4178e-05,2.2439e-05,2.0284e-05,1.9353e-05,1.8953e-05,1.3097e-05,1.3091e-05,9.3398e-06,6.3152e-06,4.3773e-06,3.1099e-06,2.6791e-06,2.5762e-06,2.3501e-06,2.1684e-06,1.7925e-06,1.7551e-06,1.2118e-06,1.1028e-06,9.1236e-07,7.1984e-07,6.23e-07,6.1288e-07,5.4467e-07,5.0313e-07,4.1372e-07,3.0864e-07,3.0023e-07,2.6374e-07,2.1477e-07,1.8161e-07,1.8019e-07,1.0044e-07,9.121e-08,8.7078e-08,7.7299e-08,7.2651e-08,6.5876e-08,5.634e-08,5.2886e-08,4.8413e-08,4.1981e-08,3.4884e-08,2.9214e-08,2.8692e-08,2.308e-08,1.9989e-08,1.7603e-08,1.3167e-08,1.1524e-08,1.0978e-08,9.2381e-09,9.1419e-09,8.4737e-09,8.1943e-09,5.2453e-09,4.675e-09,4.4702e-09,3.6414e-09,3.2316e-09,3.1735e-09,2.3983e-09,1.3944e-09,1.1852e-09,1.0898e-09,8.9574e-10,8.8071e-10,7.0576e-10,6.8882e-10,5.1693e-10,4.3634e-10,3.0999e-10,3.0051e-10,2.9188e-10,2.8716e-10,2.7226e-10,2.6067e-10,2.5383e-10,1.9173e-10,1.8077e-10,1.0309e-10,8.5308e-11,7.5218e-11,7.1556e-11,4.7207e-11,4.6864e-11,4.083e-11,3.8278e-11,2.7645e-11,2.7361e-11,2.6701e-11,2.093e-11,1.9563e-11,1.9099e-11,1.7751e-11,1.6148e-11,1.4763e-11,1.4091e-11,8.8916e-12,8.7479e-12,6.8638e-12,4.7599e-12,3.3659e-12,2.072e-12,2.0577e-12,1.7305e-12,1.3906e-12,1.0405e-12,1.0372e-12,9.3782e-13,5.8278e-13,5.2157e-13,5.1523e-13,2.9237e-13,2.5801e-13,2.4005e-13,1.9214e-13,1.5399e-13,1.0224e-13,9.5873e-14,7.0224e-14,3.4811e-14,3.4485e-14,3.2549e-14,2.892e-14,2.6355e-14,2.3501e-14,2.0523e-14,5.7508e-15,4.1046e-15,2.441e-15,1.6551e-15,1.6237e-15,1.5534e-15,8.6745e-16,7.5675e-16,7.4821e-16,4.2676e-16,1.6392e-16,1.5898e-16,1.1967e-16,1.1284e-16,5.8533e-17,4.8668e-17,3.2488e-17,2.6295e-17,2.0802e-17,1.9872e-17,1.5033e-17,1.431e-17,1.3979e-17,7.3916e-18,6.104e-18,5.631e-18,4.3311e-18,3.9867e-18,2.7247e-18,2.4976e-18,2.0959e-18,1.3521e-18,1.3466e-18,1.0901e-18,1.0149e-18,1.0148e-18,6.3571e-19,6.2635e-19,5.162e-19,4.2069e-19,2.6889e-19,1.7934e-19,1.3395e-19,8.4061e-20,5.4521e-20,3.1006e-20,3.0301e-20,1.9586e-20,1.2852e-20,1.0017e-20,5.1256e-21,4.2076e-21,2.8154e-21,2.2182e-21,1.3462e-21,1.2768e-21,1.1447e-21,8.8899e-22,5.2271e-22,3.0205e-22,2.2563e-22,1.6851e-22,1.4467e-22,1.4159e-22,1.0729e-22,7.78e-23,2.899e-23,2.2258e-23,1.9238e-23,1.3934e-23,1.3903e-23,1.0111e-23,9.7176e-24,7.8253e-24,6.5738e-24,3.6491e-24,3.3504e-24,2.1111e-24,1.3713e-24,3.3148e-25,2.5339e-25,2.2252e-25,1.5819e-25,1.1475e-25,1.0155e-25,7.9531e-26,6.6704e-26,5.3611e-26,3.7336e-26,3.7263e-26,1.939e-26,1.6292e-26,1.571e-26,1.5409e-26,7.9012e-27,7.7818e-27,7.2736e-27,6.9127e-27,6.0586e-27,4.8678e-27,3.9994e-27,1.6664e-27,2.5354e-28,1.4408e-28,1.3704e-28,1.3149e-28,1.1499e-28,1.0672e-28,5.2429e-29,3.2753e-29,2.3234e-29,1.9164e-29,1.2805e-29,9.0817e-30,8.5186e-30,5.2482e-30,3.9865e-30,2.8476e-30,1.6554e-30,8.0766e-31,7.7138e-31,6.0453e-31,5.1029e-31,4.7287e-31,2.0925e-31,1.6727e-31,6.0138e-32,4.523e-32,2.7348e-32,2.0877e-32,1.9126e-32,1.1859e-32,1.1147e-32,9.7347e-33,7.238e-33,4.106e-33 1,0.15627,0.17164,0.17243,0.17729,0.1811,0.18619,0.19636,0.22207,0.23955,0.24231,0.25695,0.25939,0.26924,0.29416,0.30225,0.30795,0.33335,0.33783,0.34283,0.35992,0.36178,0.36285,0.37622,0.38423,0.38449,0.40009,0.40153,0.40868,0.40962,0.41054,0.46063,0.51038,0.51495,0.52991,0.54334,0.55381,0.56627,0.5808,0.60644,0.62056,0.64348,0.67215,0.67478,0.68037,0.68553,0.71213,0.71217,0.77358,0.77799,0.78042,0.79791,0.79918,0.83207,0.84444,0.84949,0.86035,0.8671,0.87837,0.88179,0.90671,0.92084,0.95839,0.96673,0.96933,0.97372,0.98409,0.98591,0.98743,0.99342,0.99731,0.99831,0.99896,1,0.99784,0.99092,0.98362,0.98183,0.96185,0.95334,0.94909,0.94716,0.93897,0.89987,0.89847,0.89078,0.87809,0.87554,0.85634,0.79849,0.79768,0.78022,0.77385,0.69812,0.67842,0.67696,0.6592,0.635,0.63452,0.63256,0.6179,0.61777,0.60447,0.59932,0.52622,0.49473,0.49367,0.45865,0.44942,0.43528,0.42846,0.42446,0.42006,0.41863,0.41481,0.39962,0.39787,0.39427,0.39133,0.36951,0.34559,0.3161,0.30537,0.2834,0.26004,0.25059,0.24579,0.19684,0.19164,0.18789,0.1806,0.17163,0.16412,0.15819,0.15716,0.15651,0.14933,0.13163,0.1304,0.12393,0.1144,0.10939,0.1086,0.083303,0.083062,0.078682,0.070657,0.06927,0.064295,0.063164,0.055703,0.051243,0.042206,0.042007,0.033402,0.032523,0.032247,0.027653,0.02738,0.025882,0.024017,0.023459,0.023044,0.021472,0.021221,0.021059,0.0199,0.019507,0.019406,0.018507,0.018193,0.016537,0.014083,0.013681,0.013576,0.012618,0.01224,0.010805,0.0086474,0.0080624,0.0072095,0.006917,0.0061606,0.0054836,0.0054314,0.0053913,0.0053867,0.0052034,0.0051882,0.0046514,0.0044225,0.0040199,0.0040027,0.0039002,0.0032981,0.0032819,0.0030275,0.0027603,0.0023365,0.0022855,0.0021454,0.0021152,0.0020405,0.0019208,0.0017499,0.0017455,0.0014097,0.0011011,0.0010723,0.0010413,0.0010318,0.00088692,0.00080748,0.00058518,0.00057529,0.00055583,0.0005244,0.0004217,0.00033503,0.00025959,0.00024025,0.00022937,0.00020381,0.00016019,0.00014397,0.00012524,0.0001009,8.3579e-05,8.0775e-05,5.587e-05,5.3199e-05,5.2254e-05,4.7888e-05,4.625e-05,3.4959e-05,3.0972e-05,2.9903e-05,2.9796e-05,2.7674e-05,2.504e-05,2.3903e-05,2.3413e-05,1.6237e-05,1.623e-05,1.1617e-05,7.8835e-06,5.483e-06,3.9075e-06,3.3708e-06,3.2424e-06,2.9604e-06,2.7334e-06,2.2633e-06,2.2166e-06,1.5354e-06,1.3985e-06,1.1589e-06,9.1618e-07,7.9391e-07,7.8113e-07,6.9489e-07,6.4231e-07,5.2904e-07,3.9565e-07,3.8496e-07,3.3852e-07,2.7613e-07,2.3383e-07,2.3201e-07,1.2994e-07,1.1809e-07,1.1278e-07,1.0021e-07,9.4231e-08,8.551e-08,7.3223e-08,6.8768e-08,6.2996e-08,5.4687e-08,4.5508e-08,3.8163e-08,3.7487e-08,3.0206e-08,2.6188e-08,2.3085e-08,1.7305e-08,1.5161e-08,1.4449e-08,1.2174e-08,1.2048e-08,1.1174e-08,1.0808e-08,6.9416e-09,6.192e-09,5.9227e-09,4.8319e-09,4.2918e-09,4.2152e-09,3.1921e-09,1.8631e-09,1.5855e-09,1.4587e-09,1.2006e-09,1.1806e-09,9.4755e-10,9.2497e-10,6.9555e-10,5.878e-10,4.1858e-10,4.0587e-10,3.9429e-10,3.8796e-10,3.6796e-10,3.524e-10,3.4322e-10,2.5975e-10,2.4499e-10,1.4025e-10,1.162e-10,1.0255e-10,9.7586e-11,6.4558e-11,6.4092e-11,5.589e-11,5.2419e-11,3.7939e-11,3.7552e-11,3.6652e-11,2.8776e-11,2.6908e-11,2.6274e-11,2.4431e-11,2.2238e-11,2.0343e-11,1.9422e-11,1.2292e-11,1.2095e-11,9.5045e-12,6.6064e-12,4.6818e-12,2.8909e-12,2.871e-12,2.4171e-12,1.9449e-12,1.4579e-12,1.4532e-12,1.3148e-12,8.1944e-13,7.3386e-13,7.25e-13,4.1281e-13,3.6457e-13,3.3934e-13,2.7197e-13,2.1825e-13,1.4527e-13,1.3627e-13,9.9994e-14,4.9772e-14,4.9307e-14,4.6555e-14,4.1393e-14,3.7742e-14,3.3677e-14,2.9432e-14,8.3071e-15,5.9403e-15,3.5429e-15,2.4075e-15,2.362e-15,2.2603e-15,1.2663e-15,1.1055e-15,1.0931e-15,6.2536e-16,2.4144e-16,2.3421e-16,1.7657e-16,1.6653e-16,8.6689e-17,7.2148e-17,4.8264e-17,3.9106e-17,3.0975e-17,2.9598e-17,2.2423e-17,2.135e-17,2.0859e-17,1.1065e-17,9.1467e-18,8.4415e-18,6.5015e-18,5.987e-18,4.0997e-18,3.7597e-18,3.1578e-18,2.0417e-18,2.0333e-18,1.6477e-18,1.5347e-18,1.5345e-18,9.6353e-19,9.4942e-19,7.832e-19,6.3894e-19,4.093e-19,2.7352e-19,2.0459e-19,1.2868e-19,8.3638e-20,4.7694e-20,4.6614e-20,3.0194e-20,1.9852e-20,1.5492e-20,7.9521e-21,6.534e-21,4.3803e-21,3.4549e-21,2.1016e-21,1.9938e-21,1.7885e-21,1.3906e-21,8.1963e-22,4.7481e-22,3.5516e-22,2.6561e-22,2.2818e-22,2.2334e-22,1.6945e-22,1.2306e-22,4.6058e-23,3.5404e-23,3.0621e-23,2.221e-23,2.2161e-23,1.6139e-23,1.5514e-23,1.2505e-23,1.0513e-23,5.8509e-24,5.374e-24,3.3929e-24,2.2081e-24,5.3704e-25,4.11e-25,3.6112e-25,2.571e-25,1.8676e-25,1.6536e-25,1.2964e-25,1.0881e-25,8.7534e-26,6.1053e-26,6.0935e-26,3.1794e-26,2.6734e-26,2.5784e-26,2.5291e-26,1.3005e-26,1.2809e-26,1.1976e-26,1.1384e-26,9.9828e-27,8.028e-27,6.6012e-27,2.7603e-27,4.2323e-28,2.4106e-28,2.2933e-28,2.2007e-28,1.9256e-28,1.7877e-28,8.8072e-29,5.5123e-29,3.9156e-29,3.2321e-29,2.1632e-29,1.5362e-29,1.4413e-29,8.8967e-30,6.7653e-30,4.8388e-30,2.819e-30,1.3792e-30,1.3174e-30,1.0334e-30,8.7292e-31,8.0914e-31,3.5918e-31,2.8737e-31,1.0372e-31,7.8092e-32,4.7308e-32,3.6151e-32,3.313e-32,2.0579e-32,1.9348e-32,1.6905e-32,1.2583e-32,7.1535e-33 1,0.13738,0.15138,0.15211,0.15655,0.16003,0.16469,0.17402,0.19771,0.21389,0.21645,0.23006,0.23233,0.24151,0.26483,0.27243,0.27779,0.30174,0.30598,0.31071,0.32692,0.32869,0.32971,0.34244,0.35008,0.35033,0.36523,0.36661,0.37346,0.37437,0.37525,0.42351,0.47188,0.47635,0.491,0.50419,0.51449,0.52679,0.54116,0.56662,0.5807,0.60365,0.63252,0.63518,0.64084,0.64606,0.67312,0.67317,0.73639,0.74097,0.74351,0.76178,0.76311,0.79782,0.81101,0.81641,0.82809,0.83537,0.84761,0.85134,0.87881,0.89465,0.93816,0.94829,0.95149,0.95699,0.97047,0.97294,0.97504,0.98382,0.99036,0.99236,0.99383,0.99784,1,0.9976,0.9933,0.99212,0.97753,0.97081,0.96739,0.96581,0.95906,0.92546,0.92423,0.91741,0.90607,0.90377,0.88636,0.83269,0.83193,0.81544,0.8094,0.73655,0.71731,0.71589,0.69847,0.6746,0.67413,0.67218,0.65766,0.65752,0.6443,0.63917,0.5657,0.53371,0.53263,0.49681,0.48733,0.47277,0.46575,0.46162,0.45706,0.45558,0.45164,0.4359,0.43408,0.43034,0.42729,0.40456,0.37953,0.34851,0.33719,0.31391,0.28905,0.27895,0.27382,0.22113,0.21551,0.21144,0.20352,0.19376,0.18557,0.1791,0.17796,0.17725,0.16939,0.14994,0.14858,0.14145,0.13091,0.12535,0.12446,0.096246,0.095975,0.091059,0.082026,0.080461,0.07484,0.07356,0.065097,0.06002,0.049691,0.049463,0.039562,0.038547,0.038228,0.032907,0.032591,0.030849,0.028679,0.028028,0.027545,0.025709,0.025415,0.025226,0.023868,0.023409,0.02329,0.022236,0.021867,0.01992,0.017026,0.016551,0.016427,0.015293,0.014845,0.013141,0.010567,0.009867,0.0088439,0.0084924,0.007582,0.0067649,0.0067019,0.0066533,0.0066477,0.0064261,0.0064076,0.0057574,0.0054796,0.0049902,0.0049693,0.0048446,0.0041101,0.0040903,0.0037792,0.0034517,0.0029311,0.0028683,0.0026957,0.0026584,0.0025663,0.0024185,0.0022071,0.0022016,0.0017851,0.0014005,0.0013645,0.0013257,0.0013138,0.0011324,0.0010326,0.00075252,0.00074002,0.0007154,0.00067562,0.0005453,0.00043487,0.00033836,0.00031354,0.00029957,0.00026669,0.00021042,0.00018942,0.00016513,0.00013349,0.00011089,0.00010723,7.4577e-05,7.1063e-05,6.9819e-05,6.4068e-05,6.1908e-05,4.6986e-05,4.17e-05,4.0281e-05,4.014e-05,3.732e-05,3.3817e-05,3.2303e-05,3.165e-05,2.2063e-05,2.2053e-05,1.5858e-05,1.0819e-05,7.5617e-06,5.4132e-06,4.6788e-06,4.5029e-06,4.116e-06,3.8045e-06,3.1579e-06,3.0935e-06,2.1529e-06,1.9632e-06,1.6307e-06,1.293e-06,1.1225e-06,1.1046e-06,9.8408e-07,9.1051e-07,7.5173e-07,5.6418e-07,5.4911e-07,4.8363e-07,3.9546e-07,3.3554e-07,3.3296e-07,1.8775e-07,1.7082e-07,1.6323e-07,1.4524e-07,1.3667e-07,1.2416e-07,1.0651e-07,1.001e-07,9.179e-08,7.9812e-08,6.6554e-08,5.5924e-08,5.4944e-08,4.4379e-08,3.8538e-08,3.4018e-08,2.5583e-08,2.2446e-08,2.1402e-08,1.8067e-08,1.7882e-08,1.6598e-08,1.6061e-08,1.0364e-08,9.2564e-09,8.858e-09,7.2423e-09,6.4409e-09,6.3272e-09,4.8054e-09,2.8206e-09,2.4043e-09,2.2139e-09,1.8259e-09,1.7958e-09,1.4445e-09,1.4104e-09,1.0637e-09,9.0044e-10,6.434e-10,6.2406e-10,6.0643e-10,5.968e-10,5.6633e-10,5.4261e-10,5.2862e-10,4.0117e-10,3.786e-10,2.1793e-10,1.8089e-10,1.5982e-10,1.5217e-10,1.0107e-10,1.0034e-10,8.7619e-11,8.2227e-11,5.9697e-11,5.9093e-11,5.769e-11,4.5397e-11,4.2477e-11,4.1485e-11,3.8603e-11,3.5168e-11,3.2198e-11,3.0754e-11,1.9547e-11,1.9236e-11,1.515e-11,1.0566e-11,7.5114e-12,4.6584e-12,4.6267e-12,3.9012e-12,3.1452e-12,2.3637e-12,2.3562e-12,2.1337e-12,1.3354e-12,1.1971e-12,1.1827e-12,6.7677e-13,5.9834e-13,5.5728e-13,4.475e-13,3.5979e-13,2.4031e-13,2.2554e-13,1.6594e-13,8.3086e-14,8.2317e-14,7.776e-14,6.9206e-14,6.3151e-14,5.6402e-14,4.9349e-14,1.4075e-14,1.0092e-14,6.0444e-15,4.12e-15,4.0427e-15,3.8701e-15,2.1781e-15,1.9036e-15,1.8824e-15,1.0817e-15,4.2075e-16,4.0823e-16,3.0844e-16,2.9104e-16,1.5226e-16,1.269e-16,8.5152e-17,6.9105e-17,5.4833e-17,5.2413e-17,3.979e-17,3.79e-17,3.7034e-17,1.974e-17,1.634e-17,1.5089e-17,1.1644e-17,1.0729e-17,7.3674e-18,6.7606e-18,5.6856e-18,3.6878e-18,3.6728e-18,2.9809e-18,2.7778e-18,2.7775e-18,1.7499e-18,1.7244e-18,1.4245e-18,1.1638e-18,7.4791e-19,5.0124e-19,3.757e-19,2.3708e-19,1.5456e-19,8.8485e-20,8.6494e-20,5.6196e-20,3.7055e-20,2.8967e-20,1.4937e-20,1.2289e-20,8.261e-21,6.5264e-21,3.9833e-21,3.7802e-21,3.3935e-21,2.6429e-21,1.5633e-21,9.0893e-22,6.812e-22,5.1041e-22,4.3892e-22,4.2968e-22,3.2659e-22,2.3767e-22,8.9527e-23,6.8935e-23,5.9678e-23,4.3375e-23,4.328e-23,3.1584e-23,3.0368e-23,2.4512e-23,2.0631e-23,1.1525e-23,1.0591e-23,6.7062e-24,4.3762e-24,1.0738e-24,8.2317e-25,7.2385e-25,5.1642e-25,3.7587e-25,3.3306e-25,2.615e-25,2.1972e-25,1.7699e-25,1.2372e-25,1.2349e-25,6.4686e-26,5.4449e-26,5.2525e-26,5.1527e-26,2.6602e-26,2.6204e-26,2.4509e-26,2.3305e-26,2.0453e-26,1.647e-26,1.3558e-26,5.699e-27,8.8352e-28,5.0488e-28,4.8046e-28,4.6117e-28,4.0384e-28,3.7508e-28,1.8555e-28,1.1645e-28,8.2877e-29,6.8486e-29,4.5942e-29,3.2691e-29,3.0683e-29,1.8991e-29,1.4464e-29,1.0365e-29,6.0567e-30,2.9751e-30,2.8427e-30,2.233e-30,1.8879e-30,1.7507e-30,7.8066e-31,6.2536e-31,2.2698e-31,1.7117e-31,1.0398e-31,7.9572e-32,7.2959e-32,4.5435e-32,4.2733e-32,3.7365e-32,2.7857e-32,1.5885e-32 1,0.11937,0.13199,0.13265,0.13666,0.13981,0.14404,0.1525,0.1741,0.18892,0.19128,0.2038,0.20589,0.21437,0.23598,0.24304,0.24803,0.2704,0.27437,0.27881,0.29403,0.2957,0.29666,0.30866,0.31587,0.31611,0.33023,0.33153,0.33804,0.3389,0.33974,0.38581,0.43242,0.43675,0.45096,0.4638,0.47385,0.48587,0.49996,0.52501,0.53893,0.5617,0.59051,0.59318,0.59885,0.60409,0.63136,0.6314,0.69586,0.70058,0.70319,0.72208,0.72346,0.75969,0.77358,0.77929,0.79168,0.79944,0.81255,0.81655,0.84636,0.86379,0.91302,0.92489,0.92869,0.93527,0.95186,0.95498,0.95767,0.96925,0.9785,0.98152,0.98383,0.99092,0.9976,1,0.99891,0.99841,0.9897,0.98496,0.98244,0.98127,0.97612,0.94877,0.94773,0.94192,0.93215,0.93015,0.91485,0.86627,0.86557,0.85031,0.84468,0.7757,0.75718,0.7558,0.73892,0.71566,0.7152,0.7133,0.69905,0.69892,0.6859,0.68084,0.60767,0.57542,0.57433,0.53796,0.52828,0.51339,0.50619,0.50195,0.49727,0.49575,0.4917,0.47547,0.47359,0.46973,0.46658,0.44302,0.41697,0.38448,0.37257,0.348,0.32162,0.31086,0.3054,0.24882,0.24274,0.23834,0.22976,0.21915,0.21023,0.20317,0.20193,0.20116,0.19256,0.1712,0.1697,0.16184,0.15018,0.14402,0.14303,0.11155,0.11124,0.10572,0.095546,0.093779,0.087421,0.085971,0.07636,0.070573,0.058745,0.058484,0.047068,0.045893,0.045523,0.039344,0.038977,0.036948,0.034413,0.033652,0.033087,0.030937,0.030593,0.03037,0.028776,0.028236,0.028096,0.026856,0.026422,0.024126,0.0207,0.020136,0.019989,0.018641,0.018108,0.016075,0.012993,0.012151,0.010918,0.010494,0.0093924,0.0084014,0.0083248,0.0082658,0.008259,0.0079896,0.0079671,0.0071753,0.0068363,0.0062382,0.0062127,0.00606,0.005159,0.0051347,0.004752,0.0043484,0.0037049,0.0036271,0.0034131,0.0033668,0.0032524,0.0030687,0.0028057,0.0027988,0.0022787,0.0017961,0.0017508,0.001702,0.001687,0.0014582,0.001332,0.00097637,0.00096044,0.00092907,0.00087831,0.00071164,0.00056981,0.00044529,0.00041318,0.00039508,0.00035242,0.00027918,0.00025176,0.00021998,0.00017845,0.00014869,0.00014386,0.00010064,9.5971e-05,9.4318e-05,8.6666e-05,8.3789e-05,6.3869e-05,5.6788e-05,5.4885e-05,5.4695e-05,5.091e-05,4.6201e-05,4.4163e-05,4.3284e-05,3.0338e-05,3.0325e-05,2.1913e-05,1.5034e-05,1.0562e-05,7.5967e-06,6.5795e-06,6.3355e-06,5.7985e-06,5.3654e-06,4.465e-06,4.3752e-06,3.0601e-06,2.7939e-06,2.3265e-06,1.8505e-06,1.6094e-06,1.5841e-06,1.4134e-06,1.3091e-06,1.0835e-06,8.1623e-07,7.9471e-07,7.0108e-07,5.7475e-07,4.8868e-07,4.8498e-07,2.7545e-07,2.5091e-07,2.3989e-07,2.1376e-07,2.013e-07,1.8309e-07,1.5735e-07,1.48e-07,1.3586e-07,1.1833e-07,9.8889e-08,8.3268e-08,8.1826e-08,6.6261e-08,5.7637e-08,5.0952e-08,3.8446e-08,3.3784e-08,3.2231e-08,2.7262e-08,2.6986e-08,2.507e-08,2.4268e-08,1.5739e-08,1.4075e-08,1.3476e-08,1.1043e-08,9.8343e-09,9.6625e-09,7.3614e-09,4.3465e-09,3.7116e-09,3.4207e-09,2.8271e-09,2.781e-09,2.2424e-09,2.19e-09,1.6567e-09,1.4049e-09,1.0075e-09,9.7752e-10,9.5019e-10,9.3526e-10,8.8801e-10,8.512e-10,8.2948e-10,6.3133e-10,5.9617e-10,3.4515e-10,2.8705e-10,2.5395e-10,2.419e-10,1.6134e-10,1.602e-10,1.4008e-10,1.3154e-10,9.581e-11,9.4851e-11,9.2622e-11,7.3061e-11,6.8407e-11,6.6825e-11,6.2227e-11,5.6744e-11,5.1998e-11,4.9688e-11,3.1724e-11,3.1224e-11,2.4649e-11,1.7252e-11,1.2305e-11,7.6664e-12,7.6148e-12,6.4312e-12,5.1956e-12,3.9154e-12,3.903e-12,3.5378e-12,2.2239e-12,1.9956e-12,1.9719e-12,1.1342e-12,1.0039e-12,9.3563e-13,7.5284e-13,6.065e-13,4.0659e-13,3.8182e-13,2.8171e-13,1.4193e-13,1.4062e-13,1.3291e-13,1.1841e-13,1.0814e-13,9.6678e-14,8.4689e-14,2.4421e-14,1.7561e-14,1.0564e-14,7.2245e-15,7.0901e-15,6.7899e-15,3.84e-15,3.3599e-15,3.3228e-15,1.9183e-15,7.5201e-16,7.2983e-16,5.5269e-16,5.2176e-16,2.7441e-16,2.2904e-16,1.5419e-16,1.2534e-16,9.9638e-17,9.5276e-17,7.2489e-17,6.9073e-17,6.7507e-17,3.6162e-17,2.9979e-17,2.7702e-17,2.142e-17,1.975e-17,1.3602e-17,1.249e-17,1.0518e-17,6.8452e-18,6.8174e-18,5.542e-18,5.1673e-18,5.1668e-18,3.2667e-18,3.2196e-18,2.6635e-18,2.1794e-18,1.4053e-18,9.4467e-19,7.096e-19,4.4934e-19,2.9387e-19,1.6894e-19,1.6517e-19,1.0765e-19,7.1203e-20,5.576e-20,2.8892e-20,2.3805e-20,1.6048e-20,1.27e-20,7.7786e-21,7.3848e-21,6.6343e-21,5.1762e-21,3.0732e-21,1.7936e-21,1.347e-21,1.0113e-21,8.7057e-22,8.5239e-22,6.4912e-22,4.7343e-22,1.7954e-22,1.3849e-22,1.2001e-22,8.742e-23,8.7229e-23,6.3794e-23,6.1354e-23,4.9594e-23,4.179e-23,2.3437e-23,2.155e-23,1.3688e-23,8.9575e-24,2.2186e-24,1.7037e-24,1.4994e-24,1.0721e-24,7.8195e-25,6.9343e-25,5.453e-25,4.5871e-25,3.7002e-25,2.5925e-25,2.5876e-25,1.3611e-25,1.147e-25,1.1067e-25,1.0858e-25,5.6295e-26,5.5459e-26,5.1894e-26,4.9361e-26,4.3356e-26,3.496e-26,2.8816e-26,1.2179e-26,1.9103e-27,1.0954e-27,1.0427e-27,1.0011e-27,8.7739e-28,8.1527e-28,4.0505e-28,2.5493e-28,1.8182e-28,1.5042e-28,1.0115e-28,7.2123e-29,6.7719e-29,4.2036e-29,3.2068e-29,2.3026e-29,1.3499e-29,6.6588e-30,6.3642e-30,5.0062e-30,4.2368e-30,3.9307e-30,1.7611e-30,1.4126e-30,5.1578e-31,3.8958e-31,2.3735e-31,1.8192e-31,1.6688e-31,1.0421e-31,9.8047e-32,8.5797e-32,6.4074e-32,3.6655e-32 1,0.1083,0.12002,0.12064,0.12437,0.12731,0.13125,0.13915,0.15937,0.1733,0.17552,0.18731,0.18929,0.19729,0.21774,0.22444,0.22918,0.25047,0.25424,0.25848,0.27303,0.27462,0.27554,0.28703,0.29394,0.29417,0.30772,0.30898,0.31523,0.31606,0.31687,0.36134,0.40662,0.41083,0.4247,0.43724,0.44708,0.45886,0.4727,0.49737,0.51111,0.53365,0.56227,0.56493,0.57058,0.5758,0.60306,0.6031,0.66801,0.67279,0.67544,0.69462,0.69603,0.73305,0.74732,0.7532,0.76598,0.77402,0.78761,0.79178,0.82295,0.84132,0.89404,0.907,0.91117,0.91843,0.93698,0.94052,0.94358,0.95696,0.96797,0.97165,0.97451,0.98362,0.9933,0.99891,1,0.99995,0.99529,0.99191,0.99003,0.98914,0.98512,0.96219,0.96129,0.95622,0.94757,0.94579,0.93203,0.88724,0.88659,0.87226,0.86696,0.80107,0.78315,0.78182,0.76541,0.74271,0.74225,0.74039,0.72642,0.7263,0.7135,0.70852,0.63596,0.60371,0.60261,0.56604,0.55628,0.54123,0.53394,0.52965,0.52491,0.52337,0.51925,0.50277,0.50086,0.49694,0.49372,0.4697,0.44304,0.40967,0.39739,0.37201,0.34467,0.33349,0.32781,0.26868,0.26229,0.25766,0.24864,0.23746,0.22805,0.22059,0.21928,0.21846,0.20936,0.18669,0.1851,0.17672,0.16429,0.15771,0.15665,0.12287,0.12254,0.11659,0.1056,0.10369,0.096806,0.095234,0.084796,0.078496,0.06558,0.065294,0.052768,0.051476,0.051069,0.044257,0.043851,0.041609,0.038804,0.037962,0.037335,0.034951,0.034569,0.034321,0.032552,0.031951,0.031795,0.030416,0.029933,0.027374,0.023548,0.022918,0.022752,0.021243,0.020645,0.018363,0.014893,0.013943,0.012549,0.012069,0.010821,0.0096952,0.0096081,0.0095411,0.0095334,0.009227,0.0092014,0.0082999,0.0079135,0.0072308,0.0072017,0.0070272,0.0059965,0.0059686,0.0055299,0.0050666,0.0043265,0.0042369,0.0039904,0.003937,0.003805,0.003593,0.003289,0.0032811,0.0026787,0.0021181,0.0020654,0.0020085,0.0019911,0.0017242,0.0015769,0.0011605,0.0011418,0.0011049,0.0010453,0.00084914,0.00068175,0.00053434,0.00049625,0.00047476,0.00042406,0.00033684,0.00030412,0.00026615,0.00021641,0.00018069,0.00017488,0.00012282,0.00011719,0.00011519,0.00010594,0.00010246,7.8328e-05,6.9732e-05,6.7419e-05,6.7188e-05,6.2586e-05,5.6855e-05,5.4372e-05,5.3301e-05,3.7497e-05,3.748e-05,2.7173e-05,1.8713e-05,1.3192e-05,9.5189e-06,8.2557e-06,7.9525e-06,7.2845e-06,6.7454e-06,5.6232e-06,5.5112e-06,3.8674e-06,3.534e-06,2.9478e-06,2.3495e-06,2.046e-06,2.0142e-06,1.799e-06,1.6673e-06,1.3824e-06,1.044e-06,1.0167e-06,8.979e-07,7.3738e-07,6.2784e-07,6.2313e-07,3.5563e-07,3.242e-07,3.1009e-07,2.7657e-07,2.6058e-07,2.372e-07,2.0412e-07,1.9208e-07,1.7645e-07,1.5386e-07,1.2877e-07,1.0858e-07,1.0672e-07,8.6567e-08,7.5385e-08,6.6709e-08,5.0449e-08,4.4377e-08,4.2353e-08,3.5871e-08,3.5511e-08,3.3009e-08,3.196e-08,2.0799e-08,1.8616e-08,1.783e-08,1.4633e-08,1.3043e-08,1.2817e-08,9.785e-09,5.8007e-09,4.9591e-09,4.5733e-09,3.7851e-09,3.7238e-09,3.0074e-09,2.9377e-09,2.2268e-09,1.8907e-09,1.3591e-09,1.319e-09,1.2824e-09,1.2624e-09,1.199e-09,1.1497e-09,1.1206e-09,8.5456e-10,8.073e-10,4.6921e-10,3.9073e-10,3.4597e-10,3.2967e-10,2.2051e-10,2.1895e-10,1.9163e-10,1.8003e-10,1.3142e-10,1.3011e-10,1.2707e-10,1.004e-10,9.4045e-11,9.1886e-11,8.5605e-11,7.8111e-11,7.162e-11,6.8459e-11,4.3841e-11,4.3155e-11,3.4122e-11,2.3938e-11,1.7113e-11,1.0695e-11,1.0623e-11,8.9819e-12,7.2663e-12,5.4858e-12,5.4686e-12,4.96e-12,3.1271e-12,2.8081e-12,2.775e-12,1.6017e-12,1.4188e-12,1.3229e-12,1.0659e-12,8.5985e-13,5.7787e-13,5.4288e-13,4.0128e-13,2.0302e-13,2.0117e-13,1.9019e-13,1.6957e-13,1.5494e-13,1.3861e-13,1.2152e-13,3.5302e-14,2.5435e-14,1.5347e-14,1.0518e-14,1.0324e-14,9.8889e-15,5.6111e-15,4.9132e-15,4.8593e-15,2.8141e-15,1.109e-15,1.0765e-15,8.1649e-16,7.7104e-16,4.0697e-16,3.4002e-16,2.2939e-16,1.8668e-16,1.4859e-16,1.4212e-16,1.0829e-16,1.0321e-16,1.0089e-16,5.4224e-17,4.4998e-17,4.1597e-17,3.2209e-17,2.971e-17,2.0502e-17,1.8834e-17,1.5875e-17,1.0355e-17,1.0313e-17,8.3932e-18,7.8285e-18,7.8277e-18,4.9609e-18,4.8898e-18,4.0492e-18,3.3167e-18,2.1435e-18,1.4438e-18,1.0861e-18,6.8938e-19,4.5183e-19,2.6047e-19,2.5468e-19,1.6635e-19,1.1025e-19,8.6448e-20,4.4938e-20,3.7061e-20,2.5033e-20,1.9832e-20,1.2177e-20,1.1563e-20,1.0393e-20,8.1188e-21,4.8324e-21,2.8277e-21,2.1264e-21,1.5987e-21,1.3772e-21,1.3485e-21,1.0283e-21,7.5109e-22,2.8614e-22,2.2099e-22,1.9163e-22,1.3979e-22,1.3948e-22,1.0216e-22,9.8268e-23,7.9511e-23,6.7053e-23,3.7704e-23,3.4683e-23,2.2074e-23,1.4474e-23,3.6075e-24,2.7735e-24,2.4423e-24,1.7489e-24,1.2774e-24,1.1334e-24,8.922e-25,7.511e-25,6.0646e-25,4.2557e-25,4.2477e-25,2.2407e-25,1.8896e-25,1.8235e-25,1.7892e-25,9.3028e-26,9.1652e-26,8.5786e-26,8.1616e-26,7.1727e-26,5.7891e-26,4.7756e-26,2.0259e-26,3.2026e-27,1.8408e-27,1.7526e-27,1.683e-27,1.4758e-27,1.3717e-27,6.835e-28,4.31e-28,3.0783e-28,2.5487e-28,1.7167e-28,1.2257e-28,1.1512e-28,7.1599e-29,5.468e-29,3.9316e-29,2.3098e-29,1.1427e-29,1.0923e-29,8.6008e-30,7.2838e-30,6.7595e-30,3.0383e-30,2.4392e-30,8.9418e-31,6.7615e-31,4.1274e-31,3.1668e-31,2.906e-31,1.8181e-31,1.7109e-31,1.4979e-31,1.1199e-31,6.4208e-32 1,0.10608,0.11762,0.11822,0.1219,0.1248,0.12868,0.13646,0.1564,0.17014,0.17233,0.18398,0.18593,0.19383,0.21404,0.22067,0.22535,0.24641,0.25015,0.25434,0.26874,0.27032,0.27123,0.28261,0.28946,0.28968,0.30312,0.30436,0.31056,0.31138,0.31218,0.35631,0.40129,0.40548,0.41927,0.43175,0.44154,0.45327,0.46705,0.49163,0.50532,0.5278,0.55637,0.55902,0.56466,0.56988,0.59712,0.59716,0.66213,0.66692,0.66957,0.68881,0.69022,0.72738,0.74172,0.74763,0.76049,0.76857,0.78226,0.78646,0.81789,0.83645,0.88987,0.90304,0.90729,0.91469,0.93363,0.93725,0.94039,0.95414,0.96551,0.96933,0.97229,0.98183,0.99212,0.99841,0.99995,1,0.99619,0.9931,0.99136,0.99052,0.98674,0.96477,0.96389,0.95898,0.95058,0.94884,0.93542,0.89146,0.89082,0.8767,0.87146,0.80627,0.7885,0.78717,0.77088,0.7483,0.74785,0.746,0.7321,0.73197,0.71923,0.71427,0.64188,0.60965,0.60855,0.57196,0.56219,0.54711,0.53981,0.5355,0.53075,0.52921,0.52508,0.50855,0.50664,0.5027,0.49948,0.47536,0.44859,0.41504,0.4027,0.37715,0.34962,0.33835,0.33262,0.27296,0.26652,0.26184,0.25272,0.24142,0.23191,0.22436,0.22304,0.22221,0.21301,0.19006,0.18845,0.17997,0.16737,0.16069,0.15963,0.12535,0.12502,0.11898,0.10781,0.10587,0.098871,0.097273,0.086656,0.080246,0.067093,0.066801,0.054034,0.052716,0.052301,0.04535,0.044936,0.042647,0.039783,0.038923,0.038283,0.035847,0.035456,0.035204,0.033395,0.032781,0.032622,0.031212,0.030718,0.028101,0.024187,0.023542,0.023372,0.021827,0.021215,0.018878,0.015321,0.014347,0.012917,0.012425,0.011144,0.0099882,0.0098988,0.0098299,0.009822,0.0095073,0.009481,0.0085549,0.0081579,0.0074562,0.0074263,0.0072469,0.006187,0.0061583,0.005707,0.0052302,0.0044683,0.0043761,0.0041222,0.0040672,0.0039313,0.0037128,0.0033996,0.0033914,0.0027704,0.0021921,0.0021377,0.0020789,0.0020609,0.0017855,0.0016333,0.0012029,0.0011836,0.0011455,0.0010839,0.00088095,0.00070769,0.00055502,0.00051555,0.00049328,0.00044072,0.00035028,0.00031633,0.00027692,0.00022529,0.00018818,0.00018214,0.00012803,0.00012217,0.00012009,0.00011047,0.00010685,8.1732e-05,7.278e-05,7.0372e-05,7.0132e-05,6.5338e-05,5.9368e-05,5.6781e-05,5.5664e-05,3.919e-05,3.9173e-05,2.842e-05,1.9587e-05,1.3818e-05,9.9774e-06,8.6559e-06,8.3385e-06,7.6395e-06,7.0752e-06,5.9002e-06,5.783e-06,4.061e-06,3.7116e-06,3.0969e-06,2.4695e-06,2.1511e-06,2.1177e-06,1.8918e-06,1.7536e-06,1.4544e-06,1.099e-06,1.0703e-06,9.4547e-07,7.7673e-07,6.6154e-07,6.5658e-07,3.7511e-07,3.4201e-07,3.2715e-07,2.9185e-07,2.75e-07,2.5037e-07,2.1551e-07,2.0282e-07,1.8634e-07,1.6252e-07,1.3607e-07,1.1477e-07,1.128e-07,9.1535e-08,7.973e-08,7.0568e-08,5.3393e-08,4.6977e-08,4.4837e-08,3.7986e-08,3.7605e-08,3.496e-08,3.3851e-08,2.2045e-08,1.9735e-08,1.8903e-08,1.5519e-08,1.3835e-08,1.3596e-08,1.0384e-08,6.161e-09,5.2685e-09,4.8592e-09,4.0229e-09,3.9579e-09,3.1975e-09,3.1235e-09,2.3687e-09,2.0117e-09,1.4468e-09,1.4042e-09,1.3652e-09,1.344e-09,1.2767e-09,1.2242e-09,1.1932e-09,9.1034e-10,8.6007e-10,5.0028e-10,4.1672e-10,3.6905e-10,3.5169e-10,2.3537e-10,2.3372e-10,2.0459e-10,1.9223e-10,1.4038e-10,1.3899e-10,1.3575e-10,1.0729e-10,1.0051e-10,9.8206e-11,9.1503e-11,8.3503e-11,7.6574e-11,7.3199e-11,4.6906e-11,4.6173e-11,3.6521e-11,2.5634e-11,1.8333e-11,1.1465e-11,1.1388e-11,9.6312e-12,7.7938e-12,5.8863e-12,5.8679e-12,5.3228e-12,3.358e-12,3.0158e-12,2.9804e-12,1.7215e-12,1.5252e-12,1.4222e-12,1.1462e-12,9.2492e-13,6.2192e-13,5.8431e-13,4.3208e-13,2.1879e-13,2.168e-13,2.0499e-13,1.8278e-13,1.6704e-13,1.4946e-13,1.3105e-13,3.8129e-14,2.7483e-14,1.6592e-14,1.1377e-14,1.1167e-14,1.0697e-14,6.074e-15,5.3195e-15,5.2611e-15,3.0489e-15,1.2029e-15,1.1676e-15,8.8589e-16,8.3663e-16,4.4191e-16,3.693e-16,2.4926e-16,2.029e-16,1.6154e-16,1.5451e-16,1.1777e-16,1.1225e-16,1.0973e-16,5.9017e-17,4.8986e-17,4.5287e-17,3.5077e-17,3.2358e-17,2.2338e-17,2.0524e-17,1.7302e-17,1.1291e-17,1.1246e-17,9.1541e-18,8.5389e-18,8.538e-18,5.4139e-18,5.3362e-18,4.4198e-18,3.6211e-18,2.3413e-18,1.5778e-18,1.1873e-18,7.5393e-19,4.9436e-19,2.8515e-19,2.7882e-19,1.822e-19,1.2081e-19,9.475e-20,4.9287e-20,4.0656e-20,2.7472e-20,2.177e-20,1.3373e-20,1.27e-20,1.1416e-20,8.9202e-21,5.3122e-21,3.1101e-21,2.3395e-21,1.7594e-21,1.5158e-21,1.4843e-21,1.1321e-21,8.2721e-22,3.1543e-22,2.4367e-22,2.1133e-22,1.5421e-22,1.5387e-22,1.1273e-22,1.0844e-22,8.7763e-23,7.4023e-23,4.1647e-23,3.8313e-23,2.4395e-23,1.6002e-23,3.9936e-24,3.0712e-24,2.7048e-24,1.9374e-24,1.4155e-24,1.2561e-24,9.89e-25,8.3272e-25,6.725e-25,4.7207e-25,4.7118e-25,2.487e-25,2.0976e-25,2.0243e-25,1.9863e-25,1.0334e-25,1.0181e-25,9.5298e-26,9.067e-26,7.9693e-26,6.4333e-26,5.308e-26,2.2535e-26,3.5683e-27,2.0519e-27,1.9538e-27,1.8762e-27,1.6454e-27,1.5295e-27,7.6257e-28,4.8106e-28,3.4368e-28,2.846e-28,1.9176e-28,1.3696e-28,1.2864e-28,8.0039e-29,6.114e-29,4.3973e-29,2.5846e-29,1.2794e-29,1.223e-29,9.6321e-30,8.1583e-30,7.5715e-30,3.4056e-30,2.7346e-30,1.0033e-30,7.5884e-31,4.634e-31,3.5563e-31,3.2637e-31,2.0426e-31,1.9223e-31,1.6832e-31,1.2588e-31,7.22e-32 1,0.087816,0.09779,0.098312,0.1015,0.10402,0.10739,0.11418,0.13166,0.14378,0.14572,0.15605,0.15778,0.16482,0.18289,0.18883,0.19305,0.21206,0.21545,0.21925,0.23235,0.23378,0.23461,0.245,0.25128,0.25148,0.26382,0.26496,0.27067,0.27142,0.27216,0.31307,0.35522,0.35918,0.37221,0.38404,0.39334,0.40452,0.41769,0.44131,0.45453,0.47631,0.50419,0.50679,0.51232,0.51745,0.54432,0.54436,0.60928,0.61411,0.61679,0.6363,0.63773,0.67579,0.69061,0.69675,0.71014,0.71859,0.73298,0.73741,0.77084,0.79086,0.84982,0.86477,0.86964,0.87818,0.90043,0.90476,0.90853,0.92539,0.93981,0.94479,0.94872,0.96185,0.97753,0.9897,0.99529,0.99619,1,0.99954,0.99902,0.99872,0.99712,0.98385,0.98325,0.9798,0.97368,0.97238,0.96209,0.92606,0.92551,0.91341,0.90887,0.85061,0.83428,0.83305,0.81792,0.79675,0.79633,0.79458,0.78143,0.78131,0.76918,0.76444,0.69429,0.6625,0.66141,0.62493,0.61512,0.59994,0.59256,0.58821,0.58339,0.58182,0.57764,0.56082,0.55887,0.55484,0.55155,0.52682,0.49918,0.46427,0.45135,0.42449,0.39533,0.38335,0.37723,0.31305,0.30605,0.30097,0.29103,0.27869,0.26826,0.25997,0.25851,0.2576,0.24745,0.22203,0.22023,0.21078,0.19669,0.1892,0.18801,0.14922,0.14884,0.14195,0.12916,0.12693,0.11887,0.11703,0.10474,0.097281,0.081895,0.081552,0.066484,0.064919,0.064427,0.056149,0.055653,0.052915,0.049481,0.048447,0.047677,0.044744,0.044273,0.043968,0.041783,0.04104,0.040848,0.03914,0.038541,0.035361,0.030584,0.029793,0.029586,0.02769,0.026938,0.024058,0.01965,0.018437,0.016652,0.016035,0.014428,0.012973,0.01286,0.012773,0.012763,0.012366,0.012333,0.011161,0.010657,0.0097652,0.009727,0.0094986,0.0081448,0.0081081,0.0075295,0.0069168,0.0059342,0.0058149,0.0054861,0.0054149,0.0052386,0.0049549,0.0045473,0.0045367,0.0037253,0.0029651,0.0028933,0.0028157,0.002792,0.0024274,0.0022254,0.0016511,0.0016252,0.0015741,0.0014914,0.0012181,0.00098348,0.00077559,0.00072164,0.00069115,0.00061906,0.00049452,0.00044759,0.00039296,0.00032111,0.00026924,0.00026078,0.00018466,0.00017637,0.00017344,0.00015981,0.00015468,0.00011897,0.00010619,0.00010274,0.0001024,9.5533e-05,8.6969e-05,8.3252e-05,8.1647e-05,5.7879e-05,5.7854e-05,4.2234e-05,2.9314e-05,2.0815e-05,1.5119e-05,1.3151e-05,1.2677e-05,1.1633e-05,1.0788e-05,9.0259e-06,8.8497e-06,6.2535e-06,5.7244e-06,4.7915e-06,3.8358e-06,3.3491e-06,3.2979e-06,2.9519e-06,2.7398e-06,2.2796e-06,1.7305e-06,1.6862e-06,1.4926e-06,1.2302e-06,1.0505e-06,1.0428e-06,6.0117e-07,5.4894e-07,5.2546e-07,4.6961e-07,4.4293e-07,4.0385e-07,3.4845e-07,3.2825e-07,3.0198e-07,2.6394e-07,2.2159e-07,1.874e-07,1.8424e-07,1.4998e-07,1.3092e-07,1.1609e-07,8.8208e-08,7.7758e-08,7.4269e-08,6.3076e-08,6.2454e-08,5.8124e-08,5.6308e-08,3.6904e-08,3.309e-08,3.1715e-08,2.6113e-08,2.3318e-08,2.292e-08,1.7574e-08,1.0505e-08,9.0034e-09,8.3135e-09,6.9011e-09,6.791e-09,5.5027e-09,5.3772e-09,4.0935e-09,3.4844e-09,2.5174e-09,2.4442e-09,2.3774e-09,2.3408e-09,2.2251e-09,2.1349e-09,2.0816e-09,1.594e-09,1.5071e-09,8.8306e-10,7.3736e-10,6.5406e-10,6.2369e-10,4.1963e-10,4.1672e-10,3.6543e-10,3.4362e-10,2.5197e-10,2.495e-10,2.4376e-10,1.9325e-10,1.8119e-10,1.7709e-10,1.6515e-10,1.5089e-10,1.3852e-10,1.3249e-10,8.5384e-11,8.4066e-11,6.669e-11,4.7017e-11,3.3768e-11,2.1241e-11,2.11e-11,1.7881e-11,1.4507e-11,1.0994e-11,1.0961e-11,9.9542e-12,6.3148e-12,5.6787e-12,5.6126e-12,3.2633e-12,2.8952e-12,2.702e-12,2.1832e-12,1.7662e-12,1.1931e-12,1.1218e-12,8.3243e-13,4.2483e-13,4.2101e-13,3.9832e-13,3.5564e-13,3.2534e-13,2.9147e-13,2.5595e-13,7.5509e-14,5.4625e-14,3.3163e-14,2.2833e-14,2.2416e-14,2.1483e-14,1.2273e-14,1.0764e-14,1.0647e-14,6.2064e-15,2.4729e-15,2.4012e-15,1.8271e-15,1.7266e-15,9.1809e-16,7.6866e-16,5.2092e-16,4.2494e-16,3.391e-16,3.245e-16,2.4802e-16,2.3653e-16,2.3125e-16,1.2517e-16,1.0409e-16,9.6305e-17,7.4783e-17,6.9043e-17,4.7841e-17,4.3992e-17,3.715e-17,2.4347e-17,2.425e-17,1.9779e-17,1.8463e-17,1.8461e-17,1.1758e-17,1.1591e-17,9.6185e-18,7.8957e-18,5.1268e-18,3.4681e-18,2.6169e-18,1.669e-18,1.0988e-18,6.3712e-19,6.2311e-19,4.0882e-19,2.7212e-19,2.1391e-19,1.1195e-19,9.2509e-20,6.2736e-20,4.9822e-20,3.0742e-20,2.9208e-20,2.6282e-20,2.0581e-20,1.2315e-20,7.2446e-21,5.4634e-21,4.1192e-21,3.5537e-21,3.4806e-21,2.6611e-21,1.9498e-21,7.4986e-22,5.8059e-22,5.0415e-22,3.689e-22,3.681e-22,2.7041e-22,2.6021e-22,2.1098e-22,1.7821e-22,1.0076e-22,9.2762e-23,5.9295e-23,3.9035e-23,9.8572e-24,7.5971e-24,6.6979e-24,4.8112e-24,3.5242e-24,3.1304e-24,2.4698e-24,2.0825e-24,1.6848e-24,1.1861e-24,1.1839e-24,6.2818e-25,5.3056e-25,5.1218e-25,5.0264e-25,2.629e-25,2.5904e-25,2.4261e-25,2.3092e-25,2.0318e-25,1.643e-25,1.3577e-25,5.8041e-26,9.3268e-27,5.3869e-27,5.1311e-27,4.9289e-27,4.3272e-27,4.0246e-27,2.0176e-27,1.2774e-27,9.1495e-28,7.5878e-28,5.1282e-28,3.6723e-28,3.4508e-28,2.155e-28,1.6495e-28,1.1894e-28,7.0192e-29,3.4931e-29,3.3405e-29,2.6355e-29,2.2351e-29,2.0755e-29,9.3916e-30,7.5536e-30,2.7922e-30,2.1162e-30,1.2971e-30,9.9736e-31,9.1588e-31,5.7519e-31,5.4156e-31,4.7466e-31,3.5572e-31,2.0487e-31 1,0.082114,0.091576,0.092072,0.095104,0.097491,0.1007,0.10716,0.12383,0.13541,0.13726,0.14714,0.14881,0.15555,0.17289,0.17861,0.18266,0.20097,0.20424,0.2079,0.22055,0.22194,0.22274,0.23278,0.23885,0.23905,0.251,0.2521,0.25764,0.25837,0.25909,0.29883,0.33995,0.34381,0.35656,0.36814,0.37726,0.38822,0.40115,0.42437,0.43739,0.45889,0.48644,0.48901,0.49449,0.49957,0.52623,0.52627,0.59094,0.59577,0.59846,0.61799,0.61942,0.65764,0.67257,0.67876,0.69228,0.70083,0.71539,0.71988,0.75387,0.77429,0.83491,0.85041,0.85546,0.86436,0.88764,0.89219,0.89617,0.91402,0.92942,0.93478,0.93903,0.95334,0.97081,0.98496,0.99191,0.9931,0.99954,1,0.9999,0.99979,0.99895,0.98878,0.98828,0.98535,0.98005,0.97892,0.96977,0.93667,0.93616,0.92481,0.92054,0.86497,0.84921,0.84803,0.83337,0.81279,0.81237,0.81067,0.79783,0.79772,0.78585,0.78121,0.71213,0.68061,0.67954,0.64323,0.63344,0.61828,0.61089,0.60654,0.60172,0.60015,0.59596,0.57909,0.57713,0.57309,0.56978,0.54492,0.51705,0.48177,0.46868,0.44143,0.41177,0.39956,0.39332,0.32766,0.32048,0.31526,0.30505,0.29235,0.28161,0.27307,0.27157,0.27063,0.26016,0.23388,0.23202,0.22223,0.20762,0.19984,0.1986,0.15821,0.15782,0.15062,0.13724,0.13491,0.12647,0.12453,0.11163,0.10379,0.087585,0.087224,0.0713,0.069644,0.069122,0.060346,0.059821,0.056913,0.053264,0.052165,0.051346,0.048224,0.047722,0.047398,0.04507,0.044278,0.044074,0.042252,0.041613,0.038218,0.033111,0.032265,0.032043,0.030012,0.029206,0.026116,0.021379,0.020073,0.018149,0.017483,0.015748,0.014176,0.014054,0.01396,0.013949,0.013519,0.013483,0.012214,0.011668,0.010701,0.01066,0.010412,0.0089414,0.0089016,0.0082722,0.0076053,0.0065344,0.0064043,0.0060455,0.0059677,0.0057753,0.0054654,0.0050197,0.0050081,0.0041197,0.0032857,0.0032069,0.0031217,0.0030956,0.0026946,0.0024723,0.001839,0.0018104,0.001754,0.0016625,0.0013601,0.0011001,0.00086921,0.00080921,0.00077529,0.00069503,0.00055618,0.00050379,0.00044273,0.00036234,0.00030422,0.00029472,0.00020923,0.0001999,0.0001966,0.00018127,0.00017549,0.00013522,0.00012079,0.0001169,0.00011651,0.00010875,9.907e-05,9.4866e-05,9.3049e-05,6.6118e-05,6.609e-05,4.8349e-05,3.364e-05,2.3941e-05,1.7426e-05,1.517e-05,1.4627e-05,1.343e-05,1.2461e-05,1.0437e-05,1.0234e-05,7.2477e-06,6.6381e-06,5.5624e-06,4.4589e-06,3.8963e-06,3.8372e-06,3.4369e-06,3.1914e-06,2.6581e-06,2.0212e-06,1.9697e-06,1.7448e-06,1.4397e-06,1.2305e-06,1.2215e-06,7.0644e-07,6.454e-07,6.1794e-07,5.5261e-07,5.2138e-07,4.7563e-07,4.1071e-07,3.8703e-07,3.5622e-07,3.1159e-07,2.6184e-07,2.2164e-07,2.1792e-07,1.776e-07,1.5514e-07,1.3766e-07,1.0475e-07,9.2401e-08,8.8275e-08,7.5036e-08,7.43e-08,6.9175e-08,6.7025e-08,4.4024e-08,3.9497e-08,3.7863e-08,3.1206e-08,2.7883e-08,2.741e-08,2.1045e-08,1.2612e-08,1.0818e-08,9.9926e-09,8.3025e-09,8.1708e-09,6.6276e-09,6.4771e-09,4.9374e-09,4.206e-09,3.0435e-09,2.9554e-09,2.875e-09,2.831e-09,2.6918e-09,2.5831e-09,2.519e-09,1.9313e-09,1.8266e-09,1.0729e-09,8.9666e-10,7.9581e-10,7.5902e-10,5.1163e-10,5.0809e-10,4.4582e-10,4.1934e-10,3.0793e-10,3.0492e-10,2.9794e-10,2.3645e-10,2.2176e-10,2.1676e-10,2.0221e-10,1.8482e-10,1.6974e-10,1.6238e-10,1.0485e-10,1.0324e-10,8.1986e-11,5.7891e-11,4.1637e-11,2.6243e-11,2.6071e-11,2.2109e-11,1.7954e-11,1.3622e-11,1.358e-11,1.2339e-11,7.8425e-12,7.0556e-12,6.9739e-12,4.064e-12,3.6074e-12,3.3676e-12,2.7235e-12,2.2051e-12,1.492e-12,1.4032e-12,1.0425e-12,5.3349e-13,5.287e-13,5.0033e-13,4.4691e-13,4.0898e-13,3.6656e-13,3.2206e-13,9.547e-14,6.9152e-14,4.2063e-14,2.9003e-14,2.8475e-14,2.7294e-14,1.5626e-14,1.3712e-14,1.3563e-14,7.9222e-15,3.1674e-15,3.0759e-15,2.3428e-15,2.2144e-15,1.1802e-15,9.8873e-16,6.71e-16,5.4777e-16,4.3748e-16,4.187e-16,3.2033e-16,3.0553e-16,2.9875e-16,1.6205e-16,1.3485e-16,1.248e-16,9.6996e-17,8.9576e-17,6.2148e-17,5.7164e-17,4.8303e-17,3.1702e-17,3.1576e-17,2.5773e-17,2.4063e-17,2.4061e-17,1.5349e-17,1.5132e-17,1.2564e-17,1.0321e-17,6.7113e-18,4.5459e-18,3.4334e-18,2.1931e-18,1.4459e-18,8.3987e-19,8.2147e-19,5.3971e-19,3.5973e-19,2.8299e-19,1.4841e-19,1.2272e-19,8.3328e-20,6.6224e-20,4.0925e-20,3.8889e-20,3.5005e-20,2.7434e-20,1.6442e-20,9.6886e-21,7.313e-21,5.5186e-21,4.7632e-21,4.6655e-21,3.57e-21,2.6183e-21,1.0099e-21,7.8255e-22,6.7982e-22,4.9791e-22,4.9684e-22,3.6532e-22,3.5159e-22,2.8524e-22,2.4106e-22,1.3654e-22,1.2573e-22,8.0475e-23,5.3044e-23,1.3449e-23,1.0374e-23,9.1491e-24,6.5783e-24,4.823e-24,4.2855e-24,3.3834e-24,2.8543e-24,2.3106e-24,1.6284e-24,1.6253e-24,8.6397e-25,7.3007e-25,7.0484e-25,6.9175e-25,3.6248e-25,3.5718e-25,3.3458e-25,3.185e-25,2.8034e-25,2.2684e-25,1.8755e-25,8.0368e-26,1.298e-26,7.5084e-27,7.1529e-27,6.8718e-27,6.035e-27,5.6141e-27,2.8198e-27,1.7874e-27,1.2815e-27,1.0633e-27,7.1939e-28,5.156e-28,4.8459e-28,3.03e-28,2.321e-28,1.675e-28,9.8991e-29,4.9354e-29,4.7202e-29,3.7265e-29,3.1616e-29,2.9365e-29,1.3315e-29,1.0715e-29,3.9712e-30,3.012e-30,1.8484e-30,1.4223e-30,1.3064e-30,8.214e-31,7.735e-31,6.7817e-31,5.0862e-31,2.9333e-31 1,0.079556,0.088786,0.08927,0.092229,0.094559,0.097692,0.104,0.1203,0.13163,0.13344,0.14312,0.14475,0.15136,0.16837,0.17398,0.17796,0.19594,0.19915,0.20275,0.21518,0.21655,0.21734,0.22722,0.2332,0.23339,0.24515,0.24624,0.2517,0.25242,0.25313,0.29232,0.33294,0.33676,0.34937,0.36083,0.36986,0.38072,0.39354,0.41657,0.42949,0.45083,0.47823,0.48078,0.48624,0.49129,0.51783,0.51787,0.5824,0.58722,0.58991,0.60943,0.61087,0.64914,0.66411,0.67032,0.68389,0.69247,0.70711,0.71162,0.74584,0.76644,0.82778,0.84352,0.84866,0.85771,0.88146,0.88612,0.89019,0.90848,0.92433,0.92986,0.93425,0.94909,0.96739,0.98244,0.99003,0.99136,0.99902,0.9999,1,0.99998,0.9995,0.99078,0.99032,0.98764,0.98273,0.98167,0.97307,0.94137,0.94088,0.92989,0.92575,0.87148,0.856,0.85484,0.84041,0.82012,0.81971,0.81803,0.80535,0.80524,0.79351,0.78891,0.72038,0.68902,0.68795,0.65174,0.64198,0.62683,0.61945,0.61509,0.61027,0.6087,0.60451,0.58763,0.58567,0.58163,0.57832,0.5534,0.52544,0.49,0.47685,0.44942,0.41954,0.40722,0.40093,0.33461,0.32734,0.32206,0.31172,0.29886,0.28798,0.27932,0.2778,0.27684,0.26622,0.23955,0.23766,0.22771,0.21286,0.20495,0.20368,0.16254,0.16214,0.15479,0.14114,0.13876,0.13013,0.12816,0.11497,0.10695,0.090346,0.089975,0.073642,0.071942,0.071406,0.062391,0.061851,0.058862,0.055109,0.053978,0.053136,0.049923,0.049407,0.049073,0.046677,0.045861,0.04565,0.043774,0.043115,0.039617,0.034349,0.033476,0.033247,0.031151,0.030319,0.027127,0.022229,0.020878,0.018887,0.018197,0.0164,0.01477,0.014644,0.014546,0.014535,0.014089,0.014052,0.012735,0.012169,0.011165,0.011122,0.010864,0.0093364,0.009295,0.0086407,0.0079471,0.0068328,0.0066973,0.0063237,0.0062427,0.0060422,0.0057194,0.005255,0.0052428,0.0043165,0.0034459,0.0033636,0.0032746,0.0032473,0.0028283,0.0025958,0.0019332,0.0019032,0.0018442,0.0017483,0.0014315,0.0011588,0.0009164,0.00085336,0.00081772,0.00073337,0.00058734,0.0005322,0.00046792,0.00038322,0.00032195,0.00031194,0.00022171,0.00021187,0.00020838,0.00019218,0.00018607,0.0001435,0.00012824,0.00012412,0.00012371,0.0001155,0.00010525,0.00010079,9.887e-05,7.0332e-05,7.0303e-05,5.1482e-05,3.5861e-05,2.5548e-05,1.8613e-05,1.6211e-05,1.5633e-05,1.4356e-05,1.3324e-05,1.1165e-05,1.0949e-05,7.7618e-06,7.1108e-06,5.9615e-06,4.7818e-06,4.1801e-06,4.1168e-06,3.6885e-06,3.4257e-06,2.8548e-06,2.1724e-06,2.1172e-06,1.876e-06,1.5488e-06,1.3244e-06,1.3147e-06,7.6144e-07,6.9581e-07,6.6629e-07,5.9602e-07,5.6243e-07,5.132e-07,4.4332e-07,4.1782e-07,3.8464e-07,3.3657e-07,2.8296e-07,2.3962e-07,2.3561e-07,1.9212e-07,1.6787e-07,1.49e-07,1.1346e-07,1.0011e-07,9.5656e-08,8.1342e-08,8.0546e-08,7.5003e-08,7.2678e-08,4.7786e-08,4.2883e-08,4.1114e-08,3.3901e-08,3.0299e-08,2.9786e-08,2.2884e-08,1.3731e-08,1.1781e-08,1.0885e-08,9.0477e-09,8.9044e-09,7.2261e-09,7.0624e-09,5.3869e-09,4.5906e-09,3.3243e-09,3.2283e-09,3.1406e-09,3.0927e-09,2.9409e-09,2.8225e-09,2.7525e-09,2.1116e-09,1.9973e-09,1.1746e-09,9.8204e-10,8.7181e-10,8.3159e-10,5.6102e-10,5.5716e-10,4.8901e-10,4.6002e-10,3.3803e-10,3.3474e-10,3.2708e-10,2.597e-10,2.436e-10,2.3812e-10,2.2217e-10,2.0311e-10,1.8656e-10,1.785e-10,1.1536e-10,1.1359e-10,9.025e-11,6.3772e-11,4.5898e-11,2.8956e-11,2.8766e-11,2.4403e-11,1.9825e-11,1.505e-11,1.5004e-11,1.3635e-11,8.674e-12,7.8053e-12,7.7152e-12,4.5007e-12,3.996e-12,3.7308e-12,3.0184e-12,2.445e-12,1.6555e-12,1.5571e-12,1.1575e-12,5.9311e-13,5.878e-13,5.5631e-13,4.9703e-13,4.5492e-13,4.0782e-13,3.5839e-13,1.0648e-13,7.717e-14,4.6982e-14,3.2416e-14,3.1827e-14,3.051e-14,1.7485e-14,1.5346e-14,1.518e-14,8.875e-15,3.5539e-15,3.4514e-15,2.6302e-15,2.4862e-15,1.3265e-15,1.1116e-15,7.5489e-16,6.1646e-16,4.9253e-16,4.7143e-16,3.6083e-16,3.4419e-16,3.3655e-16,1.8275e-16,1.5211e-16,1.408e-16,1.0948e-16,1.0111e-16,7.0195e-17,6.4575e-17,5.4579e-17,3.5846e-17,3.5704e-17,2.9152e-17,2.7221e-17,2.7218e-17,1.7376e-17,1.713e-17,1.4228e-17,1.1691e-17,7.6075e-18,5.1562e-18,3.896e-18,2.4904e-18,1.6429e-18,9.5513e-19,9.3423e-19,6.1419e-19,4.0963e-19,3.2236e-19,1.6923e-19,1.3997e-19,9.5097e-20,7.5603e-20,4.6755e-20,4.4433e-20,4.0002e-20,3.1361e-20,1.8809e-20,1.1093e-20,8.3761e-21,6.3235e-21,5.4591e-21,5.3472e-21,4.0933e-21,3.0034e-21,1.1601e-21,8.9921e-22,7.8132e-22,5.7251e-22,5.7128e-22,4.2024e-22,4.0447e-22,3.2824e-22,2.7747e-22,1.5728e-22,1.4485e-22,9.277e-23,6.1184e-23,1.5543e-23,1.1992e-23,1.0579e-23,7.6096e-24,5.5816e-24,4.9603e-24,3.9175e-24,3.3055e-24,2.6767e-24,1.8872e-24,1.8837e-24,1.0022e-24,8.4704e-25,8.1781e-25,8.0265e-25,4.2095e-25,4.148e-25,3.8859e-25,3.6994e-25,3.2567e-25,2.6359e-25,2.18e-25,9.3518e-26,1.514e-26,8.7639e-27,8.3495e-27,8.0218e-27,7.0461e-27,6.5553e-27,3.2954e-27,2.0902e-27,1.4991e-27,1.2442e-27,8.4219e-28,6.0387e-28,5.6759e-28,3.5511e-28,2.7211e-28,1.9645e-28,1.1618e-28,5.7972e-29,5.5448e-29,4.3787e-29,3.7158e-29,3.4515e-29,1.5665e-29,1.261e-29,4.679e-30,3.5501e-30,2.1799e-30,1.6779e-30,1.5413e-30,9.6965e-31,9.1318e-31,8.0076e-31,6.0077e-31,3.467e-31 1,0.078442,0.087569,0.088048,0.090975,0.093281,0.09638,0.10263,0.11876,0.12998,0.13178,0.14136,0.14298,0.14953,0.16639,0.17195,0.1759,0.19373,0.19692,0.20049,0.21283,0.21419,0.21497,0.22478,0.23072,0.23091,0.24259,0.24367,0.24909,0.24981,0.25051,0.28946,0.32986,0.33366,0.34621,0.35762,0.36661,0.37742,0.39018,0.41312,0.426,0.44728,0.4746,0.47715,0.48258,0.48763,0.51412,0.51416,0.57861,0.58343,0.58611,0.60563,0.60707,0.64536,0.66034,0.66656,0.68015,0.68875,0.70342,0.70794,0.74226,0.76294,0.82459,0.84043,0.84561,0.85473,0.87867,0.88337,0.88748,0.90597,0.92202,0.92763,0.93208,0.94716,0.96581,0.98127,0.98914,0.99052,0.99872,0.99979,0.99998,1,0.99968,0.99161,0.99117,0.9886,0.98386,0.98284,0.97447,0.9434,0.94292,0.9321,0.92801,0.87433,0.85898,0.85782,0.84351,0.82334,0.82294,0.82127,0.80866,0.80855,0.79688,0.79231,0.72403,0.69274,0.69167,0.65552,0.64576,0.63062,0.62324,0.61889,0.61407,0.6125,0.60831,0.59143,0.58946,0.58542,0.5821,0.55717,0.52918,0.49367,0.48048,0.45298,0.42301,0.41065,0.40433,0.33771,0.33041,0.3251,0.31471,0.30178,0.29083,0.28212,0.28059,0.27963,0.26894,0.24209,0.24019,0.23017,0.21521,0.20724,0.20596,0.16449,0.16408,0.15667,0.1429,0.14049,0.13179,0.12979,0.11647,0.10837,0.091593,0.091218,0.074701,0.072981,0.072439,0.063317,0.06277,0.059745,0.055945,0.0548,0.053947,0.050693,0.050171,0.049832,0.047405,0.046578,0.046365,0.044464,0.043796,0.040252,0.034911,0.034026,0.033794,0.031668,0.030824,0.027587,0.022616,0.021244,0.019222,0.018522,0.016697,0.015041,0.014912,0.014813,0.014802,0.014349,0.014311,0.012973,0.012397,0.011376,0.011332,0.01107,0.0095166,0.0094745,0.0088089,0.0081032,0.006969,0.0068311,0.0064508,0.0063683,0.0061642,0.0058355,0.0053625,0.0053502,0.0044065,0.0035193,0.0034354,0.0033446,0.0033168,0.0028896,0.0026525,0.0019764,0.0019458,0.0018855,0.0017877,0.0014643,0.0011857,0.00093809,0.00087367,0.00083723,0.00075101,0.00060168,0.00054528,0.00047953,0.00039285,0.00033013,0.00031988,0.00022747,0.00021739,0.00021381,0.00019722,0.00019096,0.00014733,0.00013168,0.00012746,0.00012703,0.00011862,0.0001081,0.00010353,0.00010156,7.2283e-05,7.2252e-05,5.2933e-05,3.689e-05,2.6293e-05,1.9165e-05,1.6694e-05,1.61e-05,1.4787e-05,1.3724e-05,1.1504e-05,1.1282e-05,8.0009e-06,7.3307e-06,6.1472e-06,4.9322e-06,4.3123e-06,4.2471e-06,3.8057e-06,3.5349e-06,2.9465e-06,2.243e-06,2.186e-06,1.9373e-06,1.5997e-06,1.3682e-06,1.3582e-06,7.8715e-07,7.1938e-07,6.8889e-07,6.1633e-07,5.8162e-07,5.3077e-07,4.5858e-07,4.3223e-07,3.9795e-07,3.4826e-07,2.9285e-07,2.4804e-07,2.4389e-07,1.9892e-07,1.7384e-07,1.5432e-07,1.1754e-07,1.0373e-07,9.9119e-08,8.4303e-08,8.3479e-08,7.774e-08,7.5332e-08,4.9554e-08,4.4475e-08,4.2642e-08,3.5168e-08,3.1435e-08,3.0903e-08,2.3749e-08,1.4258e-08,1.2235e-08,1.1305e-08,9.3989e-09,9.2502e-09,7.5083e-09,7.3384e-09,5.599e-09,4.7721e-09,3.4568e-09,3.3571e-09,3.266e-09,3.2162e-09,3.0585e-09,2.9355e-09,2.8628e-09,2.1968e-09,2.078e-09,1.2227e-09,1.0224e-09,9.0776e-10,8.6593e-10,5.8441e-10,5.8039e-10,5.0946e-10,4.7929e-10,3.5229e-10,3.4886e-10,3.4089e-10,2.7073e-10,2.5396e-10,2.4825e-10,2.3164e-10,2.1178e-10,1.9454e-10,1.8614e-10,1.2035e-10,1.1851e-10,9.4174e-11,6.6565e-11,4.7923e-11,3.0246e-11,3.0048e-11,2.5494e-11,2.0715e-11,1.573e-11,1.5682e-11,1.4252e-11,9.0702e-12,8.1626e-12,8.0683e-12,4.7089e-12,4.1813e-12,3.9041e-12,3.1592e-12,2.5594e-12,1.7336e-12,1.6307e-12,1.2125e-12,6.2162e-13,6.1606e-13,5.8308e-13,5.21e-13,4.7689e-13,4.2755e-13,3.7578e-13,1.1175e-13,8.1015e-14,4.9343e-14,3.4055e-14,3.3437e-14,3.2054e-14,1.8378e-14,1.6131e-14,1.5957e-14,9.3332e-15,3.7401e-15,3.6323e-15,2.7685e-15,2.6171e-15,1.397e-15,1.1709e-15,7.9536e-16,6.4961e-16,5.191e-16,4.9687e-16,3.8038e-16,3.6285e-16,3.5481e-16,1.9275e-16,1.6046e-16,1.4853e-16,1.1551e-16,1.0669e-16,7.4088e-17,6.816e-17,5.7616e-17,3.7852e-17,3.7702e-17,3.0788e-17,2.875e-17,2.8747e-17,1.8358e-17,1.8098e-17,1.5034e-17,1.2355e-17,8.0421e-18,5.4522e-18,4.1206e-18,2.6347e-18,1.7386e-18,1.0112e-18,9.8905e-19,6.5042e-19,4.3391e-19,3.4152e-19,1.7937e-19,1.4837e-19,1.0083e-19,8.0176e-20,4.9599e-20,4.7137e-20,4.2439e-20,3.3277e-20,1.9965e-20,1.1778e-20,8.8956e-21,6.7168e-21,5.7993e-21,5.6805e-21,4.3492e-21,3.1918e-21,1.2336e-21,9.5635e-22,8.3105e-22,6.0906e-22,6.0776e-22,4.4716e-22,4.3038e-22,3.4932e-22,2.9532e-22,1.6746e-22,1.5423e-22,9.8806e-23,6.5181e-23,1.6572e-23,1.2789e-23,1.1282e-23,8.1172e-24,5.955e-24,5.2926e-24,4.1804e-24,3.5278e-24,2.857e-24,2.0148e-24,2.011e-24,1.0703e-24,9.0473e-25,8.7353e-25,8.5734e-25,4.498e-25,4.4324e-25,4.1525e-25,3.9533e-25,3.4805e-25,2.8174e-25,2.3303e-25,1.0002e-25,1.6209e-26,9.3858e-27,8.9422e-27,8.5914e-27,7.547e-27,7.0216e-27,3.5312e-27,2.2403e-27,1.6071e-27,1.3339e-27,9.0314e-28,6.477e-28,6.088e-28,3.81e-28,2.9199e-28,2.1084e-28,1.2472e-28,6.2261e-29,5.9551e-29,4.7033e-29,3.9916e-29,3.7078e-29,1.6836e-29,1.3554e-29,5.032e-30,3.8185e-30,2.3453e-30,1.8054e-30,1.6586e-30,1.0437e-30,9.8293e-31,8.6199e-31,6.468e-31,3.7337e-31 1,0.074055,0.082775,0.083233,0.086032,0.088238,0.091205,0.097188,0.11266,0.12345,0.12517,0.1344,0.13596,0.14227,0.15853,0.1639,0.16772,0.18497,0.18805,0.19152,0.20348,0.20479,0.20555,0.21507,0.22084,0.22102,0.23238,0.23343,0.2387,0.2394,0.24008,0.27804,0.31753,0.32125,0.33354,0.34473,0.35355,0.36417,0.37671,0.39929,0.41198,0.43297,0.45998,0.4625,0.46788,0.47287,0.49913,0.49917,0.56327,0.56809,0.57076,0.59025,0.59169,0.63002,0.64505,0.65129,0.66496,0.67361,0.68839,0.69295,0.72763,0.74859,0.81143,0.82769,0.83301,0.84239,0.86713,0.872,0.87627,0.89553,0.91235,0.91825,0.92296,0.93897,0.95906,0.97612,0.98512,0.98674,0.99712,0.99895,0.9995,0.99968,1,0.99456,0.9942,0.99208,0.98806,0.98717,0.9798,0.9513,0.95085,0.9407,0.93685,0.88562,0.8708,0.86968,0.85581,0.8362,0.83581,0.83418,0.82188,0.82176,0.81036,0.80588,0.7387,0.70773,0.70667,0.67076,0.66105,0.64596,0.6386,0.63426,0.62945,0.62788,0.62369,0.60681,0.60484,0.6008,0.59748,0.57248,0.54437,0.50862,0.49531,0.46752,0.43718,0.42465,0.41824,0.35046,0.34301,0.33759,0.32698,0.31376,0.30257,0.29365,0.29208,0.29109,0.28014,0.25258,0.25062,0.24032,0.22492,0.21671,0.21539,0.17256,0.17214,0.16446,0.15018,0.14769,0.13865,0.13657,0.12272,0.11429,0.096785,0.096394,0.079119,0.077317,0.07675,0.067183,0.066609,0.063433,0.05944,0.058236,0.057339,0.053916,0.053366,0.053009,0.050453,0.049583,0.049358,0.047354,0.04665,0.042911,0.03727,0.036335,0.036089,0.03384,0.032947,0.029518,0.024244,0.022787,0.020637,0.019892,0.017948,0.016182,0.016045,0.01594,0.015928,0.015444,0.015404,0.013975,0.01336,0.012269,0.012222,0.011942,0.010279,0.010234,0.0095208,0.0087641,0.0075466,0.0073985,0.0069898,0.0069011,0.0066817,0.0063281,0.0058191,0.0058058,0.004789,0.0038313,0.0037406,0.0036425,0.0036125,0.0031504,0.0028937,0.0021608,0.0021276,0.0020622,0.0019559,0.0016043,0.001301,0.001031,0.00096062,0.00092083,0.0008266,0.00066321,0.00060144,0.00052935,0.00043423,0.00036531,0.00035404,0.0002523,0.00024118,0.00023724,0.00021893,0.00021203,0.00016384,0.00014654,0.00014187,0.0001414,0.00013208,0.00012044,0.00011538,0.0001132,8.0725e-05,8.0691e-05,5.9222e-05,4.1357e-05,2.9532e-05,2.1563e-05,1.8798e-05,1.8131e-05,1.6661e-05,1.547e-05,1.2979e-05,1.273e-05,9.0443e-06,8.2905e-06,6.9584e-06,5.5894e-06,4.8902e-06,4.8167e-06,4.3185e-06,4.0128e-06,3.3478e-06,2.552e-06,2.4874e-06,2.2058e-06,1.8232e-06,1.5605e-06,1.5491e-06,9.0017e-07,8.2303e-07,7.8831e-07,7.0565e-07,6.661e-07,6.0812e-07,5.2577e-07,4.957e-07,4.5656e-07,3.998e-07,3.3646e-07,2.852e-07,2.8045e-07,2.2895e-07,2.0021e-07,1.7782e-07,1.3561e-07,1.1975e-07,1.1444e-07,9.7406e-08,9.6457e-08,8.9855e-08,8.7084e-08,5.739e-08,5.1532e-08,4.9417e-08,4.0791e-08,3.6478e-08,3.5864e-08,2.7592e-08,1.6601e-08,1.4255e-08,1.3176e-08,1.0963e-08,1.079e-08,8.7658e-09,8.5682e-09,6.5446e-09,5.5817e-09,4.0487e-09,3.9323e-09,3.8261e-09,3.7679e-09,3.5839e-09,3.4403e-09,3.3555e-09,2.5776e-09,2.4388e-09,1.438e-09,1.2033e-09,1.0689e-09,1.0198e-09,6.8931e-10,6.8459e-10,6.0123e-10,5.6575e-10,4.1634e-10,4.123e-10,4.0292e-10,3.2027e-10,3.0051e-10,2.9378e-10,2.7419e-10,2.5077e-10,2.3044e-10,2.2052e-10,1.4281e-10,1.4063e-10,1.1185e-10,7.9164e-11,5.7062e-11,3.6075e-11,3.5839e-11,3.0426e-11,2.4741e-11,1.8806e-11,1.8748e-11,1.7044e-11,1.0865e-11,9.7816e-12,9.6691e-12,5.6539e-12,5.0225e-12,4.6906e-12,3.7985e-12,3.0796e-12,2.0888e-12,1.9651e-12,1.4627e-12,7.516e-13,7.449e-13,7.0516e-13,6.3031e-13,5.7712e-13,5.1761e-13,4.5512e-13,1.359e-13,9.8621e-14,6.0162e-14,4.1572e-14,4.082e-14,3.9137e-14,2.2479e-14,1.9739e-14,1.9527e-14,1.1441e-14,4.5977e-15,4.4656e-15,3.4066e-15,3.2208e-15,1.7226e-15,1.4445e-15,9.8241e-16,8.0287e-16,6.4201e-16,6.146e-16,4.7089e-16,4.4925e-16,4.3932e-16,2.3909e-16,1.9915e-16,1.8439e-16,1.435e-16,1.3258e-16,9.2164e-17,8.481e-17,7.1726e-17,4.718e-17,4.6994e-17,3.8398e-17,3.5864e-17,3.586e-17,2.293e-17,2.2607e-17,1.8789e-17,1.545e-17,1.0069e-17,6.8339e-18,5.1688e-18,3.3091e-18,2.1862e-18,1.2734e-18,1.2456e-18,8.2011e-19,5.4773e-19,4.314e-19,2.2697e-19,1.8785e-19,1.2779e-19,1.0168e-19,6.2981e-20,5.9863e-20,5.3911e-20,4.2301e-20,2.5414e-20,1.5014e-20,1.1348e-20,8.5746e-21,7.4061e-21,7.2548e-21,5.5584e-21,4.0825e-21,1.5817e-21,1.2271e-21,1.0667e-21,7.8238e-22,7.8071e-22,5.7486e-22,5.5335e-22,4.4936e-22,3.8006e-22,2.1582e-22,1.9881e-22,1.2751e-22,8.4206e-23,2.1482e-23,1.6589e-23,1.4639e-23,1.0541e-23,7.7388e-24,6.88e-24,5.4374e-24,4.5905e-24,3.7195e-24,2.6253e-24,2.6204e-24,1.3968e-24,1.1812e-24,1.1405e-24,1.1194e-24,5.8822e-25,5.7965e-25,5.4313e-25,5.1715e-25,4.5543e-25,3.6885e-25,3.0522e-25,1.3126e-25,2.1364e-26,1.2386e-26,1.1802e-26,1.134e-26,9.9648e-27,9.2726e-27,4.6706e-27,2.9663e-27,2.1295e-27,1.7683e-27,1.1983e-27,8.6002e-28,8.0849e-28,5.065e-28,3.884e-28,2.8066e-28,1.6622e-28,8.3106e-29,7.9498e-29,6.282e-29,5.3333e-29,4.9549e-29,2.2539e-29,1.8153e-29,6.7542e-30,5.1284e-30,3.1532e-30,2.4287e-30,2.2316e-30,1.4057e-30,1.324e-30,1.1614e-30,8.7202e-31,5.0399e-31 1,0.058031,0.0652,0.065577,0.067889,0.069712,0.07217,0.077139,0.090072,0.099154,0.10061,0.10843,0.10975,0.11512,0.12902,0.13364,0.13692,0.15184,0.15451,0.15752,0.16795,0.1691,0.16976,0.1781,0.18317,0.18333,0.19333,0.19426,0.19892,0.19954,0.20014,0.23396,0.26958,0.27296,0.28415,0.29437,0.30245,0.31221,0.32378,0.3447,0.35652,0.37617,0.40163,0.40401,0.40911,0.41385,0.43889,0.43893,0.50089,0.50558,0.5082,0.52733,0.52874,0.56672,0.58175,0.58802,0.60178,0.61053,0.62554,0.63019,0.66583,0.68762,0.75432,0.77195,0.77777,0.78808,0.81562,0.82111,0.82594,0.848,0.86767,0.87469,0.88033,0.89987,0.92546,0.94877,0.96219,0.96477,0.98385,0.98878,0.99078,0.99161,0.99456,1,0.99999,0.99977,0.99872,0.99842,0.99525,0.97788,0.97757,0.97039,0.96758,0.92734,0.91498,0.91404,0.90225,0.88528,0.88493,0.88351,0.87268,0.87258,0.86244,0.85844,0.79692,0.76776,0.76675,0.7324,0.72301,0.70836,0.70118,0.69693,0.69222,0.69068,0.68657,0.66993,0.66799,0.66398,0.66069,0.63579,0.60752,0.57119,0.55756,0.52891,0.49734,0.48422,0.47749,0.40549,0.39748,0.39164,0.38018,0.36586,0.35368,0.34394,0.34222,0.34115,0.32914,0.29874,0.29657,0.28513,0.26794,0.25873,0.25726,0.20874,0.20826,0.19948,0.18306,0.18018,0.16972,0.16731,0.15118,0.14129,0.12064,0.12018,0.099565,0.097402,0.096719,0.085179,0.084484,0.08063,0.075773,0.074305,0.07321,0.069023,0.068349,0.067913,0.064775,0.063705,0.063428,0.060961,0.060092,0.055469,0.048459,0.047291,0.046984,0.044171,0.043051,0.038738,0.032062,0.030205,0.027458,0.026504,0.024005,0.021726,0.021548,0.021412,0.021396,0.02077,0.020717,0.018862,0.018061,0.016636,0.016575,0.016208,0.014024,0.013964,0.013024,0.012022,0.010405,0.010207,0.0096615,0.009543,0.0092494,0.0087756,0.0080919,0.008074,0.0067014,0.0053993,0.0052754,0.0051414,0.0051003,0.0044668,0.0041135,0.0030989,0.0030527,0.0029615,0.0028134,0.002321,0.0018937,0.0015106,0.0014103,0.0013535,0.0012186,0.0009837,0.00089446,0.00078997,0.00065145,0.00055056,0.00053401,0.00038391,0.00036742,0.00036156,0.00033435,0.00032407,0.00025206,0.00022606,0.00021903,0.00021833,0.00020429,0.00018671,0.00017905,0.00017574,0.00012636,0.00012631,9.339e-05,6.577e-05,4.7332e-05,3.4807e-05,3.0437e-05,2.9382e-05,2.7049e-05,2.5157e-05,2.1189e-05,2.0791e-05,1.4882e-05,1.3667e-05,1.1515e-05,9.2927e-06,8.1534e-06,8.0333e-06,7.2191e-06,6.7183e-06,5.6263e-06,4.3129e-06,4.2061e-06,3.739e-06,3.1025e-06,2.6638e-06,2.6449e-06,1.5537e-06,1.423e-06,1.3642e-06,1.2238e-06,1.1565e-06,1.0577e-06,9.1708e-07,8.6562e-07,7.9854e-07,7.0106e-07,5.9194e-07,5.0334e-07,4.9512e-07,4.0575e-07,3.5572e-07,3.1665e-07,2.4271e-07,2.1481e-07,2.0547e-07,1.754e-07,1.7372e-07,1.6204e-07,1.5714e-07,1.0434e-07,9.3876e-08,9.0092e-08,7.4621e-08,6.6866e-08,6.5759e-08,5.0829e-08,3.0856e-08,2.6566e-08,2.4588e-08,2.0523e-08,2.0206e-08,1.6474e-08,1.6109e-08,1.2361e-08,1.0571e-08,7.7092e-09,7.4913e-09,7.2922e-09,7.1833e-09,6.8382e-09,6.5687e-09,6.4094e-09,4.9453e-09,4.6833e-09,2.7856e-09,2.3377e-09,2.0805e-09,1.9866e-09,1.3513e-09,1.3422e-09,1.1812e-09,1.1126e-09,8.2277e-10,8.1493e-10,7.9668e-10,6.3556e-10,5.9694e-10,5.8378e-10,5.4545e-10,4.9956e-10,4.5967e-10,4.4019e-10,2.8702e-10,2.827e-10,2.2564e-10,1.6055e-10,1.1631e-10,7.4041e-11,7.3565e-11,6.2607e-11,5.1067e-11,3.8975e-11,3.8858e-11,3.5377e-11,2.2702e-11,2.0469e-11,2.0237e-11,1.1927e-11,1.0613e-11,9.9214e-12,8.0589e-12,6.5535e-12,4.4697e-12,4.2088e-12,3.1459e-12,1.6317e-12,1.6173e-12,1.5322e-12,1.3717e-12,1.2575e-12,1.1296e-12,9.9497e-13,3.0206e-13,2.2016e-13,1.352e-13,9.3885e-14,9.2208e-14,8.8458e-14,5.118e-14,4.5019e-14,4.4542e-14,2.628e-14,1.0687e-14,1.0383e-14,7.9485e-15,7.5204e-15,4.0543e-15,3.4075e-15,2.3287e-15,1.9079e-15,1.5299e-15,1.4654e-15,1.1265e-15,1.0754e-15,1.0519e-15,5.7679e-16,4.8152e-16,4.4625e-16,3.4836e-16,3.2216e-16,2.2495e-16,2.0721e-16,1.756e-16,1.1609e-16,1.1564e-16,9.4717e-17,8.8537e-17,8.8528e-17,5.6911e-17,5.6119e-17,4.6745e-17,3.8527e-17,2.5236e-17,1.7206e-17,1.3057e-17,8.4028e-18,5.5782e-18,3.2695e-18,3.199e-18,2.1163e-18,1.4199e-18,1.1214e-18,5.943e-19,4.9292e-19,3.3678e-19,2.6864e-19,1.6729e-19,1.591e-19,1.4345e-19,1.1286e-19,6.8186e-20,4.0515e-20,3.0716e-20,2.3281e-20,2.014e-20,1.9733e-20,1.5163e-20,1.1174e-20,4.3734e-21,3.402e-21,2.9617e-21,2.1795e-21,2.1749e-21,1.6067e-21,1.5471e-21,1.2592e-21,1.0669e-21,6.0943e-22,5.6188e-22,3.6205e-22,2.4012e-22,6.2126e-23,4.81e-23,4.2501e-23,3.0705e-23,2.2614e-23,2.0128e-23,1.5946e-23,1.3485e-23,1.095e-23,7.7555e-24,7.7412e-24,4.1524e-24,3.5173e-24,3.3974e-24,3.3352e-24,1.7638e-24,1.7383e-24,1.6299e-24,1.5526e-24,1.3691e-24,1.1111e-24,9.2113e-25,3.9943e-25,6.6165e-26,3.8561e-26,3.676e-26,3.5335e-26,3.1087e-26,2.8947e-26,1.4676e-26,9.361e-27,6.7415e-27,5.6077e-27,3.814e-27,2.7458e-27,2.5828e-27,1.6251e-27,1.2493e-27,9.0549e-28,5.3888e-28,2.7115e-28,2.5948e-28,2.0549e-28,1.7472e-28,1.6243e-28,7.4418e-29,6.0058e-29,2.2546e-29,1.7161e-29,1.0598e-29,8.1821e-30,7.5235e-30,4.7587e-30,4.4846e-30,3.9385e-30,2.9647e-30,1.7218e-30 1,0.057566,0.064688,0.065063,0.06736,0.069172,0.071614,0.076553,0.089409,0.098438,0.099887,0.10766,0.10897,0.11431,0.12815,0.13274,0.136,0.15084,0.15351,0.15651,0.16688,0.16803,0.16869,0.17699,0.18203,0.1822,0.19216,0.19308,0.19772,0.19833,0.19893,0.23262,0.26811,0.27148,0.28263,0.29282,0.30088,0.31061,0.32214,0.34301,0.3548,0.3744,0.3998,0.40218,0.40727,0.412,0.437,0.43703,0.4989,0.5036,0.50621,0.52532,0.52673,0.56469,0.57971,0.58598,0.59974,0.60849,0.6235,0.62815,0.6638,0.68561,0.75241,0.77008,0.77591,0.78625,0.81386,0.81937,0.82422,0.84635,0.86611,0.87316,0.87883,0.89847,0.92423,0.94773,0.96129,0.96389,0.98325,0.98828,0.99032,0.99117,0.9942,0.99999,1,0.99983,0.99889,0.9986,0.99557,0.97857,0.97826,0.97119,0.96842,0.92855,0.91628,0.91534,0.90362,0.88675,0.8864,0.88498,0.87421,0.87411,0.86402,0.86003,0.79872,0.76964,0.76863,0.73434,0.72497,0.71034,0.70317,0.69892,0.69422,0.69268,0.68857,0.67195,0.67001,0.66601,0.66272,0.63783,0.60956,0.57322,0.55959,0.53092,0.49932,0.48618,0.47944,0.40732,0.3993,0.39345,0.38197,0.36761,0.35539,0.34563,0.34391,0.34284,0.3308,0.30031,0.29813,0.28665,0.26941,0.26017,0.25869,0.20999,0.20951,0.20069,0.1842,0.18131,0.1708,0.16838,0.15217,0.14224,0.12148,0.12101,0.10029,0.098112,0.097425,0.085817,0.085118,0.081241,0.076354,0.074877,0.073775,0.069562,0.068884,0.068445,0.065287,0.06421,0.063931,0.061448,0.060574,0.05592,0.048861,0.047686,0.047377,0.044544,0.043416,0.039072,0.032346,0.030476,0.027707,0.026745,0.024226,0.021929,0.02175,0.021612,0.021597,0.020965,0.020913,0.019042,0.018234,0.016797,0.016735,0.016365,0.014162,0.014102,0.013153,0.012143,0.010511,0.010312,0.009761,0.0096414,0.0093451,0.008867,0.0081769,0.0081588,0.0067731,0.0054583,0.0053333,0.0051979,0.0051563,0.0045165,0.0041597,0.0031345,0.0030879,0.0029957,0.002846,0.0023484,0.0019164,0.001529,0.0014276,0.0013701,0.0012338,0.0009961,0.00090581,0.00080008,0.00065991,0.00055779,0.00054103,0.00038907,0.00037237,0.00036644,0.00033888,0.00032847,0.00025554,0.0002292,0.00022208,0.00022137,0.00020714,0.00018933,0.00018157,0.00017822,0.00012818,0.00012812,9.4754e-05,6.6749e-05,4.8048e-05,3.5342e-05,3.0908e-05,2.9837e-05,2.747e-05,2.555e-05,2.1523e-05,2.1118e-05,1.512e-05,1.3887e-05,1.1701e-05,9.4445e-06,8.2873e-06,8.1654e-06,7.3383e-06,6.8295e-06,5.7202e-06,4.3857e-06,4.2771e-06,3.8025e-06,3.1555e-06,2.7097e-06,2.6904e-06,1.5809e-06,1.4481e-06,1.3882e-06,1.2455e-06,1.177e-06,1.0766e-06,9.335e-07,8.8116e-07,8.1291e-07,7.1374e-07,6.0271e-07,5.1255e-07,5.0418e-07,4.1323e-07,3.6231e-07,3.2253e-07,2.4726e-07,2.1885e-07,2.0934e-07,1.7872e-07,1.7702e-07,1.6512e-07,1.6012e-07,1.0636e-07,9.5691e-08,9.1836e-08,7.6074e-08,6.8172e-08,6.7045e-08,5.183e-08,3.1473e-08,2.71e-08,2.5083e-08,2.0939e-08,2.0615e-08,1.6809e-08,1.6437e-08,1.2615e-08,1.0789e-08,7.8695e-09,7.6471e-09,7.4441e-09,7.333e-09,6.9808e-09,6.7058e-09,6.5434e-09,5.0494e-09,4.7819e-09,2.8451e-09,2.3879e-09,2.1253e-09,2.0293e-09,1.3807e-09,1.3714e-09,1.207e-09,1.1369e-09,8.4089e-10,8.3287e-10,8.1423e-10,6.4964e-10,6.1018e-10,5.9674e-10,5.5758e-10,5.1069e-10,4.6993e-10,4.5002e-10,2.9349e-10,2.8908e-10,2.3076e-10,1.6422e-10,1.1899e-10,7.5763e-11,7.5276e-11,6.4069e-11,5.2265e-11,3.9895e-11,3.9775e-11,3.6213e-11,2.3243e-11,2.0959e-11,2.0721e-11,1.2215e-11,1.087e-11,1.0162e-11,8.2552e-12,6.7137e-12,4.5798e-12,4.3126e-12,3.2239e-12,1.6727e-12,1.658e-12,1.5707e-12,1.4063e-12,1.2893e-12,1.1581e-12,1.0202e-12,3.0988e-13,2.2589e-13,1.3875e-13,9.6366e-14,9.4645e-14,9.0797e-14,5.2546e-14,4.6223e-14,4.5734e-14,2.6989e-14,1.0979e-14,1.0668e-14,8.1671e-15,7.7274e-15,4.167e-15,3.5024e-15,2.3939e-15,1.9616e-15,1.5731e-15,1.5068e-15,1.1584e-15,1.1058e-15,1.0817e-15,5.9329e-16,4.9533e-16,4.5906e-16,3.584e-16,3.3146e-16,2.3147e-16,2.1322e-16,1.8071e-16,1.1949e-16,1.1902e-16,9.7496e-17,9.1138e-17,9.1129e-17,5.8592e-17,5.7778e-17,4.813e-17,3.9671e-17,2.599e-17,1.7723e-17,1.345e-17,8.6574e-18,5.7481e-18,3.3698e-18,3.2971e-18,2.1816e-18,1.4639e-18,1.1563e-18,6.1292e-19,5.0839e-19,3.4741e-19,2.7714e-19,1.7261e-19,1.6416e-19,1.4802e-19,1.1646e-19,7.0377e-20,4.1825e-20,3.1712e-20,2.4038e-20,2.0797e-20,2.0376e-20,1.5658e-20,1.154e-20,4.5183e-21,3.5151e-21,3.0603e-21,2.2523e-21,2.2475e-21,1.6605e-21,1.599e-21,1.3014e-21,1.1027e-21,6.3006e-22,5.8091e-22,3.7436e-22,2.4832e-22,6.4278e-23,4.9771e-23,4.3978e-23,3.1776e-23,2.3405e-23,2.0833e-23,1.6506e-23,1.3959e-23,1.1335e-23,8.0297e-24,8.0148e-24,4.3e-24,3.6425e-24,3.5185e-24,3.4541e-24,1.827e-24,1.8007e-24,1.6883e-24,1.6084e-24,1.4183e-24,1.1511e-24,9.5435e-25,4.1395e-25,6.8608e-26,3.9992e-26,3.8124e-26,3.6647e-26,3.2242e-26,3.0024e-26,1.5225e-26,9.7125e-27,6.9953e-27,5.8192e-27,3.9583e-27,2.85e-27,2.6808e-27,1.6871e-27,1.297e-27,9.4016e-28,5.596e-28,2.8163e-28,2.6952e-28,2.1345e-28,1.815e-28,1.6874e-28,7.7326e-29,6.2408e-29,2.3435e-29,1.7839e-29,1.1018e-29,8.5072e-30,7.8226e-30,4.9485e-30,4.6636e-30,4.0959e-30,3.0834e-30,1.791e-30 1,0.055103,0.061975,0.062337,0.064555,0.066306,0.068666,0.07344,0.085882,0.094631,0.096037,0.10358,0.10485,0.11003,0.12347,0.12794,0.13112,0.14556,0.14816,0.15108,0.1612,0.16231,0.16296,0.17106,0.17598,0.17614,0.18586,0.18677,0.1913,0.1919,0.19249,0.22545,0.26025,0.26356,0.27451,0.28452,0.29244,0.30201,0.31337,0.33392,0.34555,0.36489,0.38998,0.39234,0.39737,0.40205,0.42679,0.42683,0.48821,0.49287,0.49547,0.51447,0.51588,0.55369,0.56868,0.57494,0.58868,0.59743,0.61244,0.6171,0.65282,0.67472,0.742,0.75987,0.76577,0.77624,0.80426,0.80986,0.81479,0.83734,0.85754,0.86477,0.87057,0.89078,0.91741,0.94192,0.95622,0.95898,0.9798,0.98535,0.98764,0.9886,0.99208,0.99977,0.99983,1,0.99958,0.9994,0.99712,0.98213,0.98185,0.97532,0.97274,0.93494,0.92314,0.92224,0.91092,0.89456,0.89423,0.89285,0.88237,0.88227,0.87243,0.86854,0.80841,0.77973,0.77874,0.74482,0.73553,0.72101,0.71389,0.70968,0.705,0.70348,0.69939,0.68286,0.68092,0.67694,0.67366,0.64884,0.62062,0.58426,0.5706,0.54184,0.51008,0.49686,0.49008,0.41733,0.40922,0.4033,0.39169,0.37715,0.36478,0.35489,0.35314,0.35205,0.33984,0.30887,0.30666,0.29499,0.27744,0.26803,0.26652,0.21683,0.21634,0.20732,0.19046,0.18749,0.17673,0.17425,0.15763,0.14743,0.12609,0.12561,0.10427,0.10203,0.10132,0.089342,0.08862,0.084616,0.079565,0.078038,0.0769,0.072542,0.07184,0.071386,0.068117,0.067002,0.066714,0.064142,0.063237,0.058414,0.051092,0.049872,0.049551,0.046609,0.045437,0.040923,0.033923,0.031975,0.029089,0.028086,0.025458,0.023059,0.022872,0.022728,0.022712,0.022052,0.021997,0.020042,0.019197,0.017693,0.017628,0.017241,0.014934,0.014871,0.013876,0.012817,0.011104,0.010895,0.010316,0.010191,0.0098793,0.0093767,0.0086511,0.0086321,0.0071738,0.0057884,0.0056565,0.0055137,0.0054699,0.0047947,0.0044179,0.0033342,0.0032848,0.0031873,0.0030289,0.0025019,0.0020438,0.0016325,0.0015248,0.0014637,0.0013187,0.0010658,0.00096965,0.00085699,0.00070749,0.00059848,0.00058059,0.00041816,0.00040029,0.00039395,0.00036445,0.0003533,0.00027517,0.00024693,0.00023929,0.00023853,0.00022326,0.00020415,0.00019582,0.00019222,0.00013844,0.00013839,0.00010248,7.2294e-05,5.211e-05,3.8378e-05,3.3581e-05,3.2422e-05,2.986e-05,2.7781e-05,2.3418e-05,2.2979e-05,1.6474e-05,1.5135e-05,1.2762e-05,1.0309e-05,9.0502e-06,8.9175e-06,8.0174e-06,7.4636e-06,6.2554e-06,4.8007e-06,4.6823e-06,4.1645e-06,3.4583e-06,2.9713e-06,2.9502e-06,1.7369e-06,1.5915e-06,1.5259e-06,1.3695e-06,1.2945e-06,1.1844e-06,1.0275e-06,9.7007e-07,8.9519e-07,7.8633e-07,6.644e-07,5.6532e-07,5.5612e-07,4.5611e-07,4.0008e-07,3.5629e-07,2.7338e-07,2.4207e-07,2.3158e-07,1.9782e-07,1.9593e-07,1.8281e-07,1.7729e-07,1.1792e-07,1.0613e-07,1.0187e-07,8.4433e-08,7.5689e-08,7.4442e-08,5.7595e-08,3.5028e-08,3.0175e-08,2.7937e-08,2.3333e-08,2.2973e-08,1.8744e-08,1.833e-08,1.4079e-08,1.2047e-08,8.7954e-09,8.5477e-09,8.3214e-09,8.1975e-09,7.805e-09,7.4985e-09,7.3173e-09,5.651e-09,5.3525e-09,3.1894e-09,2.6782e-09,2.3845e-09,2.2772e-09,1.551e-09,1.5406e-09,1.3564e-09,1.2779e-09,9.4595e-10,9.3696e-10,9.1604e-10,7.3134e-10,6.8704e-10,6.7195e-10,6.2797e-10,5.7531e-10,5.2951e-10,5.0714e-10,3.3113e-10,3.2617e-10,2.6053e-10,1.8558e-10,1.3458e-10,8.5794e-11,8.5244e-11,7.2584e-11,5.9243e-11,4.5254e-11,4.5118e-11,4.1088e-11,2.6403e-11,2.3814e-11,2.3545e-11,1.3898e-11,1.2372e-11,1.1568e-11,9.4024e-12,7.6508e-12,5.2241e-12,4.92e-12,3.6807e-12,1.9128e-12,1.896e-12,1.7965e-12,1.6089e-12,1.4753e-12,1.3256e-12,1.1681e-12,3.5582e-13,2.5958e-13,1.5963e-13,1.1096e-13,1.0898e-13,1.0456e-13,6.0591e-14,5.3316e-14,5.2752e-14,3.1169e-14,1.2706e-14,1.2346e-14,9.4578e-15,8.9497e-15,4.8328e-15,4.0637e-15,2.7799e-15,2.2788e-15,1.8284e-15,1.7515e-15,1.3473e-15,1.2863e-15,1.2583e-15,6.9107e-16,5.7719e-16,5.3501e-16,4.1792e-16,3.8657e-16,2.7016e-16,2.4891e-16,2.1103e-16,1.3966e-16,1.3912e-16,1.1401e-16,1.0659e-16,1.0657e-16,6.8588e-17,6.7636e-17,5.6364e-17,4.6477e-17,3.0476e-17,2.0798e-17,1.5793e-17,1.0175e-17,6.7613e-18,3.968e-18,3.8827e-18,2.5711e-18,1.7268e-18,1.3645e-18,7.2421e-19,6.0093e-19,4.1095e-19,3.2797e-19,2.0447e-19,1.9448e-19,1.7539e-19,1.3806e-19,8.3511e-20,4.968e-20,3.7688e-20,2.8583e-20,2.4736e-20,2.4237e-20,1.8634e-20,1.3742e-20,5.3898e-21,4.195e-21,3.6532e-21,2.6902e-21,2.6845e-21,1.9844e-21,1.9111e-21,1.5561e-21,1.3189e-21,7.5434e-22,6.956e-22,4.4864e-22,2.9782e-22,7.7279e-23,5.9865e-23,5.2909e-23,3.8252e-23,2.819e-23,2.5098e-23,1.9892e-23,1.6828e-23,1.367e-23,9.6896e-24,9.6717e-24,5.1947e-24,4.4017e-24,4.252e-24,4.1743e-24,2.2104e-24,2.1786e-24,2.0429e-24,1.9463e-24,1.7167e-24,1.3938e-24,1.1559e-24,5.0211e-25,8.3476e-26,4.8703e-26,4.6432e-26,4.4636e-26,3.928e-26,3.6582e-26,1.8572e-26,1.1856e-26,8.544e-27,7.1097e-27,4.8392e-27,3.4861e-27,3.2795e-27,2.0654e-27,1.5886e-27,1.1521e-27,6.8634e-28,3.458e-28,3.3095e-28,2.622e-28,2.2301e-28,2.0735e-28,9.5141e-29,7.6813e-29,2.8889e-29,2.2001e-29,1.3599e-29,1.0504e-29,9.66e-30,6.1153e-30,5.7637e-30,5.0631e-30,3.8132e-30,2.2168e-30 1,0.051372,0.057862,0.058204,0.060301,0.061957,0.064189,0.068711,0.080513,0.088829,0.090166,0.097343,0.098557,0.1035,0.11633,0.1206,0.12363,0.13747,0.13995,0.14275,0.15246,0.15353,0.15415,0.16193,0.16666,0.16682,0.17618,0.17705,0.18141,0.18199,0.18256,0.21437,0.24808,0.25128,0.26192,0.27165,0.27935,0.28866,0.29972,0.31977,0.33113,0.35005,0.37464,0.37695,0.38189,0.38648,0.4108,0.41083,0.47138,0.47599,0.47856,0.49738,0.49877,0.53631,0.55123,0.55746,0.57116,0.57989,0.59489,0.59954,0.63534,0.65734,0.72529,0.74343,0.74943,0.76009,0.78871,0.79445,0.7995,0.82268,0.84354,0.85102,0.85705,0.87809,0.90607,0.93215,0.94757,0.95058,0.97368,0.98005,0.98273,0.98386,0.98806,0.99872,0.99889,0.99958,1,0.99998,0.9989,0.98713,0.98689,0.98124,0.97897,0.94452,0.9335,0.93265,0.92199,0.90649,0.90617,0.90486,0.89487,0.89477,0.88536,0.88163,0.82347,0.79548,0.79451,0.76123,0.75209,0.73778,0.73076,0.72659,0.72197,0.72046,0.71642,0.70005,0.69813,0.69418,0.69093,0.66627,0.63815,0.60181,0.58812,0.55925,0.52729,0.51395,0.50711,0.43343,0.42519,0.41917,0.40735,0.39255,0.37993,0.36983,0.36805,0.36693,0.35445,0.32275,0.32048,0.30851,0.29048,0.2808,0.27925,0.22799,0.22748,0.21816,0.20068,0.19761,0.18643,0.18386,0.16658,0.15596,0.13369,0.13318,0.11084,0.10849,0.10775,0.09517,0.094411,0.0902,0.084884,0.083276,0.082076,0.077482,0.076742,0.076263,0.072814,0.071637,0.071332,0.068616,0.067659,0.06256,0.054806,0.053513,0.053172,0.050052,0.048808,0.044011,0.036561,0.034484,0.031404,0.030332,0.027523,0.024956,0.024756,0.024602,0.024584,0.023877,0.023818,0.021722,0.020816,0.019201,0.019132,0.018716,0.016235,0.016167,0.015096,0.013955,0.012106,0.01188,0.011255,0.01112,0.010783,0.01024,0.0094544,0.0094338,0.0078536,0.0063493,0.0062059,0.0060506,0.006003,0.0052682,0.0048577,0.0036751,0.0036211,0.0035146,0.0033413,0.0027643,0.002262,0.0018101,0.0016916,0.0016244,0.0014647,0.0011858,0.0010796,0.00095507,0.00078962,0.00066881,0.00064896,0.00046854,0.00044866,0.0004416,0.00040877,0.00039636,0.00030925,0.00027773,0.0002692,0.00026835,0.00025129,0.00022992,0.00022061,0.00021658,0.00015634,0.00015628,0.00011596,8.2e-05,5.9234e-05,4.3711e-05,3.8279e-05,3.6967e-05,3.4063e-05,3.1706e-05,2.6755e-05,2.6258e-05,1.8863e-05,1.734e-05,1.4635e-05,1.1838e-05,1.0401e-05,1.0249e-05,9.2204e-06,8.5872e-06,7.2046e-06,5.5378e-06,5.402e-06,4.8079e-06,3.9969e-06,3.437e-06,3.4128e-06,2.0153e-06,1.8475e-06,1.7718e-06,1.5911e-06,1.5045e-06,1.3771e-06,1.1957e-06,1.1292e-06,1.0425e-06,9.1638e-07,7.7499e-07,6.6e-07,6.4931e-07,5.3311e-07,4.6795e-07,4.1699e-07,3.204e-07,2.8389e-07,2.7165e-07,2.3223e-07,2.3003e-07,2.147e-07,2.0826e-07,1.388e-07,1.2499e-07,1.2e-07,9.9559e-08,8.9298e-08,8.7833e-08,6.8044e-08,4.1485e-08,3.5764e-08,3.3123e-08,2.769e-08,2.7265e-08,2.2268e-08,2.1778e-08,1.6749e-08,1.4342e-08,1.0487e-08,1.0193e-08,9.9242e-09,9.7772e-09,9.3112e-09,8.9472e-09,8.732e-09,6.7517e-09,6.3968e-09,3.8209e-09,3.2111e-09,2.8605e-09,2.7322e-09,1.8642e-09,1.8518e-09,1.6313e-09,1.5373e-09,1.1395e-09,1.1287e-09,1.1037e-09,8.8201e-10,8.2882e-10,8.1069e-10,7.5786e-10,6.9457e-10,6.3952e-10,6.1261e-10,4.0076e-10,3.9478e-10,3.1564e-10,2.2516e-10,1.6351e-10,1.0444e-10,1.0377e-10,8.8422e-11,7.2232e-11,5.5238e-11,5.5073e-11,5.0173e-11,3.23e-11,2.9146e-11,2.8818e-11,1.7048e-11,1.5183e-11,1.42e-11,1.1551e-11,9.4073e-12,6.4334e-12,6.0604e-12,4.5391e-12,2.365e-12,2.3443e-12,2.2218e-12,1.9906e-12,1.8259e-12,1.6413e-12,1.447e-12,4.4282e-13,3.2344e-13,1.9926e-13,1.387e-13,1.3624e-13,1.3073e-13,7.5911e-14,6.6828e-14,6.6124e-14,3.9145e-14,1.6009e-14,1.5558e-14,1.193e-14,1.1291e-14,6.1106e-15,5.1413e-15,3.5219e-15,2.8891e-15,2.3198e-15,2.2226e-15,1.7113e-15,1.6341e-15,1.5986e-15,8.7978e-16,7.3526e-16,6.8171e-16,5.3297e-16,4.9312e-16,3.4505e-16,3.18e-16,2.6975e-16,1.7878e-16,1.7808e-16,1.4604e-16,1.3656e-16,1.3655e-16,8.8008e-17,8.6791e-17,7.237e-17,5.9715e-17,3.921e-17,2.6793e-17,2.0364e-17,1.3138e-17,8.7423e-18,5.1395e-18,5.0294e-18,3.3349e-18,2.2426e-18,1.7734e-18,9.4315e-19,7.8306e-19,5.3614e-19,4.2819e-19,2.6734e-19,2.5432e-19,2.2943e-19,1.8074e-19,1.0949e-19,6.5242e-20,4.9535e-20,3.76e-20,3.2553e-20,3.1899e-20,2.4545e-20,1.8117e-20,7.1259e-21,5.5504e-21,4.8356e-21,3.5641e-21,3.5566e-21,2.6315e-21,2.5345e-21,2.0649e-21,1.751e-21,1.0032e-21,9.2525e-22,5.9753e-22,3.9712e-22,1.0345e-22,8.0197e-23,7.0904e-23,5.1309e-23,3.7846e-23,3.3705e-23,2.6732e-23,2.2625e-23,1.839e-23,1.3048e-23,1.3024e-23,7.0073e-24,5.9403e-24,5.7389e-24,5.6343e-24,2.9888e-24,2.9459e-24,2.763e-24,2.6327e-24,2.3228e-24,1.887e-24,1.5658e-24,6.8171e-25,1.1389e-25,6.6542e-26,6.3448e-26,6.0999e-26,5.3698e-26,5.0019e-26,2.544e-26,1.626e-26,1.1728e-26,9.7637e-27,6.6523e-27,4.7965e-27,4.5129e-27,2.8456e-27,2.1901e-27,1.5897e-27,9.4831e-28,4.7864e-28,4.5813e-28,3.6318e-28,3.0902e-28,2.8739e-28,1.3213e-28,1.0673e-28,4.0241e-29,3.0667e-29,1.8978e-29,1.4669e-29,1.3493e-29,8.5515e-30,8.0611e-30,7.0835e-30,5.3386e-30,3.1077e-30 1,0.050664,0.057081,0.057419,0.059493,0.061131,0.063339,0.067812,0.079491,0.087724,0.089048,0.096155,0.097357,0.10225,0.11496,0.11919,0.1222,0.13592,0.13838,0.14116,0.15079,0.15185,0.15246,0.16019,0.16488,0.16503,0.17432,0.17518,0.17952,0.18009,0.18065,0.21224,0.24573,0.24892,0.25949,0.26916,0.27682,0.28609,0.29709,0.31704,0.32834,0.34717,0.37166,0.37396,0.37888,0.38346,0.40769,0.40773,0.46809,0.4727,0.47526,0.49404,0.49543,0.53291,0.54781,0.55403,0.56772,0.57645,0.59144,0.5961,0.6319,0.65392,0.72198,0.74017,0.74619,0.75689,0.78561,0.79138,0.79645,0.81975,0.84073,0.84826,0.85433,0.87554,0.90377,0.93015,0.94579,0.94884,0.97238,0.97892,0.98167,0.98284,0.98717,0.99842,0.9986,0.9994,0.99998,1,0.99915,0.98802,0.98778,0.98231,0.9801,0.94632,0.93545,0.93462,0.92409,0.90876,0.90844,0.90715,0.89725,0.89716,0.88783,0.88413,0.82638,0.79853,0.79757,0.76442,0.75531,0.74105,0.73404,0.72989,0.72528,0.72377,0.71974,0.7034,0.70149,0.69755,0.6943,0.66968,0.64159,0.60525,0.59156,0.56268,0.53068,0.51733,0.51047,0.43662,0.42835,0.42232,0.41046,0.3956,0.38294,0.3728,0.37101,0.36989,0.35736,0.32551,0.32324,0.3112,0.29308,0.28335,0.28179,0.23023,0.22971,0.22033,0.20273,0.19964,0.18838,0.18579,0.16838,0.15767,0.13522,0.13471,0.11217,0.1098,0.10905,0.096349,0.095583,0.09133,0.085961,0.084336,0.083124,0.078484,0.077736,0.077251,0.073766,0.072576,0.072268,0.069523,0.068556,0.063402,0.055561,0.054253,0.053909,0.050752,0.049494,0.04464,0.037099,0.034995,0.031876,0.030791,0.027945,0.025344,0.025141,0.024985,0.024967,0.024251,0.024191,0.022066,0.021147,0.01951,0.01944,0.019018,0.016502,0.016433,0.015346,0.014188,0.012312,0.012083,0.011449,0.011311,0.010969,0.010417,0.0096198,0.0095988,0.0079937,0.006465,0.0063193,0.0061614,0.006113,0.005366,0.0049485,0.0037457,0.0036907,0.0035823,0.003406,0.0028188,0.0023073,0.001847,0.0017263,0.0016578,0.001495,0.0012108,0.0011025,0.00097551,0.00080676,0.00068349,0.00066324,0.00047908,0.00045878,0.00045157,0.00041804,0.00040537,0.00031639,0.00028419,0.00027547,0.0002746,0.00025717,0.00023533,0.00022581,0.00022169,0.00016011,0.00016004,0.0001188,8.4046e-05,6.0737e-05,4.4838e-05,3.9273e-05,3.7928e-05,3.4952e-05,3.2537e-05,2.7462e-05,2.6952e-05,1.937e-05,1.7807e-05,1.5033e-05,1.2162e-05,1.0687e-05,1.0532e-05,9.4761e-06,8.826e-06,7.4065e-06,5.6947e-06,5.5553e-06,4.945e-06,4.1117e-06,3.5364e-06,3.5115e-06,2.0748e-06,1.9022e-06,1.8243e-06,1.6385e-06,1.5494e-06,1.4184e-06,1.2317e-06,1.1633e-06,1.074e-06,9.4424e-07,7.9869e-07,6.803e-07,6.693e-07,5.4963e-07,4.8252e-07,4.3003e-07,3.3051e-07,2.9288e-07,2.8027e-07,2.3964e-07,2.3737e-07,2.2157e-07,2.1493e-07,1.433e-07,1.2906e-07,1.2391e-07,1.0282e-07,9.2235e-08,9.0724e-08,7.0301e-08,4.2882e-08,3.6973e-08,3.4246e-08,2.8633e-08,2.8194e-08,2.3031e-08,2.2526e-08,1.7328e-08,1.484e-08,1.0854e-08,1.055e-08,1.0272e-08,1.012e-08,9.6385e-09,9.262e-09,9.0395e-09,6.9911e-09,6.6239e-09,3.9584e-09,3.3272e-09,2.9642e-09,2.8315e-09,1.9326e-09,1.9197e-09,1.6913e-09,1.5939e-09,1.1818e-09,1.1707e-09,1.1447e-09,9.1497e-10,8.5983e-10,8.4104e-10,7.8628e-10,7.2068e-10,6.636e-10,6.3571e-10,4.1601e-10,4.0981e-10,3.2773e-10,2.3385e-10,1.6986e-10,1.0854e-10,1.0785e-10,9.1906e-11,7.5091e-11,5.7437e-11,5.7265e-11,5.2175e-11,3.3601e-11,3.0322e-11,2.9981e-11,1.7744e-11,1.5804e-11,1.4782e-11,1.2027e-11,9.7959e-12,6.7012e-12,6.313e-12,4.7293e-12,2.4653e-12,2.4438e-12,2.3162e-12,2.0753e-12,1.9038e-12,1.7115e-12,1.509e-12,4.6221e-13,3.3768e-13,2.0811e-13,1.449e-13,1.4233e-13,1.3658e-13,7.9338e-14,6.9851e-14,6.9116e-14,4.0932e-14,1.6751e-14,1.6279e-14,1.2485e-14,1.1817e-14,6.398e-15,5.3838e-15,3.6889e-15,3.0265e-15,2.4306e-15,2.3288e-15,1.7934e-15,1.7125e-15,1.6754e-15,9.224e-16,7.7097e-16,7.1486e-16,5.5898e-16,5.1721e-16,3.62e-16,3.3363e-16,2.8305e-16,1.8764e-16,1.8691e-16,1.5329e-16,1.4336e-16,1.4334e-16,9.2413e-17,9.1136e-17,7.6003e-17,6.272e-17,4.1195e-17,2.8157e-17,2.1404e-17,1.3813e-17,9.1938e-18,5.4068e-18,5.2909e-18,3.5093e-18,2.3604e-18,1.8669e-18,9.9325e-19,8.2475e-19,5.6482e-19,4.5116e-19,2.8176e-19,2.6805e-19,2.4183e-19,1.9053e-19,1.1546e-19,6.8821e-20,5.2261e-20,3.9676e-20,3.4353e-20,3.3663e-20,2.5906e-20,1.9125e-20,7.5267e-21,5.8634e-21,5.1087e-21,3.7661e-21,3.7582e-21,2.7811e-21,2.6787e-21,2.1827e-21,1.8511e-21,1.0608e-21,9.7846e-22,6.3205e-22,4.2017e-22,1.0954e-22,8.4927e-23,7.5092e-23,5.4349e-23,4.0095e-23,3.5711e-23,2.8326e-23,2.3977e-23,1.9491e-23,1.3831e-23,1.3806e-23,7.4307e-24,6.2998e-24,6.0863e-24,5.9755e-24,3.1709e-24,3.1254e-24,2.9314e-24,2.7932e-24,2.4646e-24,2.0025e-24,1.6618e-24,7.2381e-25,1.2104e-25,7.074e-26,6.7452e-26,6.485e-26,5.7092e-26,5.3183e-26,2.7058e-26,1.7299e-26,1.2479e-26,1.039e-26,7.0805e-27,5.1061e-27,4.8044e-27,3.0301e-27,2.3324e-27,1.6933e-27,1.0104e-27,5.1014e-28,4.8829e-28,3.8714e-28,3.2943e-28,3.0638e-28,1.4091e-28,1.1384e-28,4.2942e-29,3.273e-29,2.026e-29,1.5661e-29,1.4406e-29,9.1325e-30,8.609e-30,7.5654e-30,5.7026e-30,3.3205e-30 1,0.04576,0.05166,0.051972,0.053882,0.055391,0.057428,0.061558,0.072368,0.080009,0.081239,0.087851,0.08897,0.093531,0.1054,0.10936,0.11218,0.12503,0.12735,0.12996,0.13902,0.14002,0.1406,0.14787,0.1523,0.15245,0.16122,0.16204,0.16613,0.16668,0.16721,0.19717,0.22909,0.23214,0.24225,0.25151,0.25885,0.26774,0.27832,0.29753,0.30843,0.32663,0.35036,0.3526,0.35737,0.36182,0.3854,0.38543,0.44447,0.44899,0.45151,0.46997,0.47134,0.50833,0.52308,0.52924,0.54283,0.5515,0.56642,0.57106,0.60684,0.62893,0.6977,0.7162,0.72234,0.73326,0.76272,0.76865,0.77388,0.79798,0.81981,0.82768,0.83403,0.85634,0.88636,0.91485,0.93203,0.93542,0.96209,0.96977,0.97307,0.97447,0.9798,0.99525,0.99557,0.99712,0.9989,0.99915,1,0.99353,0.99336,0.98917,0.98742,0.95859,0.94887,0.94812,0.93859,0.92455,0.92426,0.92307,0.91391,0.91383,0.90514,0.90168,0.84703,0.82029,0.81935,0.78727,0.77841,0.7645,0.75765,0.75359,0.74907,0.7476,0.74365,0.7276,0.72572,0.72184,0.71864,0.69434,0.6665,0.63031,0.61663,0.58768,0.55548,0.54201,0.53508,0.46009,0.45166,0.44549,0.43337,0.41816,0.40517,0.39475,0.39291,0.39176,0.37887,0.34602,0.34366,0.33121,0.31242,0.30232,0.3007,0.24692,0.24638,0.23655,0.21808,0.21483,0.20299,0.20026,0.18188,0.17057,0.14675,0.14621,0.1222,0.11966,0.11886,0.10527,0.10445,0.09989,0.094124,0.092378,0.091075,0.086082,0.085276,0.084755,0.080999,0.079716,0.079384,0.076421,0.075378,0.069807,0.061315,0.059895,0.059522,0.056094,0.054726,0.049445,0.041216,0.038916,0.0355,0.03431,0.031186,0.028325,0.028102,0.02793,0.02791,0.027122,0.027056,0.024714,0.023699,0.021891,0.021813,0.021347,0.018561,0.018485,0.017279,0.015993,0.013906,0.013651,0.012944,0.01279,0.012409,0.011793,0.010902,0.010879,0.0090818,0.0073656,0.0072017,0.0070241,0.0069696,0.0061281,0.0056573,0.0042971,0.0042348,0.0041119,0.003912,0.003245,0.0026625,0.002137,0.0019989,0.0019204,0.001734,0.0014076,0.0012831,0.0011369,0.00094218,0.00079966,0.00077622,0.00056264,0.00053905,0.00053067,0.00049166,0.00047691,0.00037319,0.00033557,0.00032538,0.00032436,0.00030398,0.00027841,0.00026726,0.00026244,0.00019015,0.00019007,0.00014151,0.00010044,7.2811e-05,5.3903e-05,4.727e-05,4.5666e-05,4.2115e-05,3.923e-05,3.3162e-05,3.2552e-05,2.3464e-05,2.1586e-05,1.8251e-05,1.4793e-05,1.3014e-05,1.2826e-05,1.1551e-05,1.0765e-05,9.0471e-06,6.9716e-06,6.8023e-06,6.0609e-06,5.0474e-06,4.3465e-06,4.3162e-06,2.5613e-06,2.3498e-06,2.2544e-06,2.0265e-06,1.9171e-06,1.7563e-06,1.5268e-06,1.4427e-06,1.3328e-06,1.1729e-06,9.9345e-07,8.4725e-07,8.3365e-07,6.8564e-07,6.0252e-07,5.3745e-07,4.139e-07,3.6711e-07,3.5142e-07,3.0083e-07,2.98e-07,2.7831e-07,2.7002e-07,1.8058e-07,1.6276e-07,1.5631e-07,1.2989e-07,1.166e-07,1.1471e-07,8.905e-08,5.4511e-08,4.7049e-08,4.3602e-08,3.6502e-08,3.5946e-08,2.9405e-08,2.8764e-08,2.2167e-08,1.9005e-08,1.393e-08,1.3543e-08,1.3188e-08,1.2995e-08,1.238e-08,1.19e-08,1.1616e-08,8.9992e-09,8.5296e-09,5.1148e-09,4.3041e-09,3.8375e-09,3.6668e-09,2.509e-09,2.4923e-09,2.1977e-09,2.0719e-09,1.5392e-09,1.5248e-09,1.4911e-09,1.1936e-09,1.1221e-09,1.0978e-09,1.0267e-09,9.4159e-10,8.6746e-10,8.3123e-10,5.4543e-10,5.3735e-10,4.3032e-10,3.077e-10,2.2395e-10,1.435e-10,1.4259e-10,1.2163e-10,9.9496e-11,7.6227e-11,7.6001e-11,6.9284e-11,4.4737e-11,4.0396e-11,3.9945e-11,2.3714e-11,2.1135e-11,1.9777e-11,1.611e-11,1.3137e-11,9.0067e-12,8.4878e-12,6.3691e-12,3.3325e-12,3.3036e-12,3.132e-12,2.808e-12,2.5772e-12,2.3182e-12,2.0454e-12,6.3064e-13,4.6152e-13,2.8518e-13,1.9895e-13,1.9544e-13,1.8759e-13,1.0928e-13,9.6282e-14,9.5274e-14,5.658e-14,2.3263e-14,2.2611e-14,1.7365e-14,1.6441e-14,8.9295e-15,7.5205e-15,5.1629e-15,4.2401e-15,3.409e-15,3.2669e-15,2.5191e-15,2.4061e-15,2.3542e-15,1.3e-15,1.0875e-15,1.0088e-15,7.8975e-16,7.3102e-16,5.1254e-16,4.7257e-16,4.0124e-16,2.6652e-16,2.6549e-16,2.1796e-16,2.0389e-16,2.0387e-16,1.3172e-16,1.299e-16,1.0843e-16,8.956e-17,5.8943e-17,4.036e-17,3.072e-17,1.9867e-17,1.3248e-17,7.8102e-18,7.6436e-18,5.0793e-18,3.4227e-18,2.71e-18,1.446e-18,1.2017e-18,8.2437e-19,6.5914e-19,4.1252e-19,3.9253e-19,3.543e-19,2.7945e-19,1.6972e-19,1.0139e-19,7.7087e-20,5.8594e-20,5.0765e-20,4.975e-20,3.833e-20,2.8335e-20,1.1196e-20,8.7312e-21,7.6119e-21,5.6187e-21,5.607e-21,4.1546e-21,4.0022e-21,3.2639e-21,2.77e-21,1.5911e-21,1.4681e-21,9.501e-22,6.3267e-22,1.6586e-22,1.2873e-22,1.1388e-22,8.253e-23,6.0961e-23,5.432e-23,4.3128e-23,3.6531e-23,2.9721e-23,2.112e-23,2.1082e-23,1.1375e-23,9.65e-24,9.3243e-24,9.1552e-24,4.8705e-24,4.8009e-24,4.504e-24,4.2925e-24,3.7895e-24,3.0814e-24,2.559e-24,1.1183e-24,1.8831e-25,1.1028e-25,1.0518e-25,1.0113e-25,8.9079e-26,8.3002e-26,4.2339e-26,2.7114e-26,1.9584e-26,1.6317e-26,1.1136e-26,8.0402e-27,7.5669e-27,4.7807e-27,3.6835e-27,2.6774e-27,1.6006e-27,8.1019e-28,7.7562e-28,6.1547e-28,5.2404e-28,4.875e-28,2.2485e-28,1.818e-28,6.8819e-29,5.2505e-29,3.2557e-29,2.519e-29,2.3179e-29,1.4717e-29,1.3877e-29,1.22e-29,9.2055e-30,5.3705e-30 1,0.034257,0.038893,0.039139,0.040646,0.041839,0.043452,0.046732,0.055376,0.061532,0.062526,0.067887,0.068797,0.072512,0.082233,0.085491,0.087814,0.098469,0.1004,0.10257,0.11014,0.11098,0.11146,0.11758,0.1213,0.12143,0.12884,0.12953,0.13301,0.13347,0.13392,0.15953,0.18717,0.18982,0.19866,0.20678,0.21324,0.22109,0.23045,0.24754,0.2573,0.27366,0.29514,0.29717,0.30152,0.30557,0.32715,0.32719,0.38195,0.38618,0.38854,0.40592,0.40721,0.44234,0.45646,0.46239,0.47549,0.48388,0.49838,0.5029,0.53801,0.55992,0.6293,0.64831,0.65465,0.66598,0.69683,0.70309,0.70864,0.73439,0.75805,0.76666,0.77366,0.79849,0.83269,0.86627,0.88724,0.89146,0.92606,0.93667,0.94137,0.9434,0.9513,0.97788,0.97857,0.98213,0.98713,0.98802,0.99353,1,1,0.99943,0.99898,0.98448,0.97819,0.97768,0.97113,0.96098,0.96076,0.95988,0.95298,0.95291,0.94622,0.94352,0.89866,0.87558,0.87476,0.84631,0.83833,0.8257,0.81944,0.81571,0.81156,0.8102,0.80656,0.79166,0.78991,0.78628,0.78329,0.76037,0.73376,0.69869,0.68528,0.65667,0.62447,0.61088,0.60387,0.52685,0.51806,0.51162,0.49892,0.48291,0.46917,0.45812,0.45616,0.45494,0.44118,0.40586,0.40331,0.38981,0.36932,0.35825,0.35647,0.29683,0.29623,0.28519,0.26434,0.26065,0.24719,0.24408,0.22302,0.20996,0.18227,0.18164,0.15336,0.15035,0.1494,0.1332,0.13221,0.12674,0.1198,0.1177,0.11612,0.11007,0.1091,0.10846,0.1039,0.10234,0.10193,0.098315,0.097039,0.090211,0.079741,0.077982,0.077519,0.073262,0.071559,0.064962,0.054604,0.051689,0.047345,0.045827,0.041827,0.038148,0.037861,0.037639,0.037613,0.036595,0.03651,0.033477,0.032159,0.029803,0.029701,0.029092,0.025439,0.025339,0.023751,0.022051,0.019279,0.018939,0.017995,0.01779,0.01728,0.016454,0.015257,0.015225,0.012797,0.010459,0.010234,0.0099909,0.0099162,0.0087594,0.0081094,0.0062191,0.0061321,0.0059602,0.0056801,0.0047416,0.0039163,0.003166,0.0029678,0.0028551,0.0025863,0.0021135,0.0019321,0.0017184,0.0014323,0.0012217,0.001187,0.00086866,0.00083329,0.00082071,0.00076209,0.00073988,0.00058309,0.00052591,0.00051038,0.00050883,0.00047774,0.00043864,0.00042156,0.00041416,0.00030278,0.00030266,0.00022715,0.00016272,0.00011896,8.8755e-05,7.8096e-05,7.5513e-05,6.9784e-05,6.5121e-05,5.5282e-05,5.4289e-05,3.9452e-05,3.637e-05,3.0877e-05,2.5155e-05,2.2198e-05,2.1885e-05,1.9759e-05,1.8445e-05,1.5566e-05,1.2069e-05,1.1783e-05,1.0527e-05,8.8035e-06,7.6072e-06,7.5553e-06,4.5368e-06,4.1703e-06,4.0047e-06,3.6084e-06,3.4178e-06,3.1372e-06,2.7357e-06,2.5882e-06,2.3953e-06,2.1139e-06,1.7969e-06,1.5377e-06,1.5136e-06,1.2501e-06,1.1015e-06,9.8498e-07,7.6274e-07,6.7823e-07,6.4983e-07,5.5808e-07,5.5295e-07,5.1714e-07,5.0206e-07,3.3855e-07,3.0579e-07,2.9391e-07,2.4514e-07,2.2056e-07,2.1704e-07,1.6935e-07,1.0468e-07,9.0614e-08,8.4101e-08,7.065e-08,6.9595e-08,5.7153e-08,5.5931e-08,4.332e-08,3.725e-08,2.7465e-08,2.6716e-08,2.603e-08,2.5655e-08,2.4464e-08,2.3532e-08,2.2981e-08,1.789e-08,1.6973e-08,1.0275e-08,8.6742e-09,7.7501e-09,7.4114e-09,5.1064e-09,5.0731e-09,4.4836e-09,4.2315e-09,3.1603e-09,3.1312e-09,3.0633e-09,2.4619e-09,2.317e-09,2.2676e-09,2.1233e-09,1.9502e-09,1.7993e-09,1.7255e-09,1.1406e-09,1.124e-09,9.036e-10,6.4988e-10,4.7558e-10,3.0704e-10,3.0513e-10,2.6098e-10,2.1421e-10,1.6485e-10,1.6437e-10,1.5007e-10,9.7608e-11,8.8285e-11,8.7314e-11,5.228e-11,4.6683e-11,4.3729e-11,3.574e-11,2.9241e-11,2.0169e-11,1.9025e-11,1.4341e-11,7.5809e-12,7.5162e-12,7.1317e-12,6.405e-12,5.8863e-12,5.3035e-12,4.6885e-12,1.4719e-12,1.0823e-12,6.7365e-13,4.7249e-13,4.6428e-13,4.459e-13,2.6186e-13,2.3113e-13,2.2875e-13,1.3689e-13,5.7011e-14,5.5436e-14,4.2736e-14,4.0492e-14,2.2185e-14,1.873e-14,1.2926e-14,1.0645e-14,8.5848e-15,8.2319e-15,6.3706e-15,6.0886e-15,5.9591e-15,3.3178e-15,2.7824e-15,2.5835e-15,2.0294e-15,1.8805e-15,1.3248e-15,1.2229e-15,1.0406e-15,6.9504e-16,6.9239e-16,5.6992e-16,5.3362e-16,5.3357e-16,3.4674e-16,3.4204e-16,2.8618e-16,2.3698e-16,1.5683e-16,1.0792e-16,8.244e-17,5.3617e-17,3.5942e-17,2.1334e-17,2.0885e-17,1.3951e-17,9.4485e-18,7.5031e-18,4.0353e-18,3.3614e-18,2.3169e-18,1.8577e-18,1.1694e-18,1.1134e-18,1.0063e-18,7.9598e-19,4.8641e-19,2.9242e-19,2.2307e-19,1.7012e-19,1.4764e-19,1.4473e-19,1.1186e-19,8.2989e-20,3.3158e-20,2.5934e-20,2.2646e-20,1.6777e-20,1.6742e-20,1.2449e-20,1.1998e-20,9.808e-21,8.3397e-21,4.8216e-21,4.4531e-21,2.8964e-21,1.9378e-21,5.1585e-22,4.0153e-22,3.557e-22,2.5873e-22,1.9176e-22,1.7109e-22,1.362e-22,1.1558e-22,9.425e-23,6.7231e-23,6.7109e-23,3.6459e-23,3.0987e-23,2.9952e-23,2.9415e-23,1.5758e-23,1.5535e-23,1.4585e-23,1.3907e-23,1.2294e-23,1.002e-23,8.338e-24,3.6767e-24,6.311e-25,3.7172e-25,3.5469e-25,3.412e-25,3.0093e-25,2.8061e-25,1.4416e-25,9.2754e-26,6.7223e-26,5.6116e-26,3.845e-26,2.7856e-26,2.6233e-26,1.6653e-26,1.2866e-26,9.3823e-27,5.6387e-27,2.8742e-27,2.7527e-27,2.1895e-27,1.8673e-27,1.7384e-27,8.0811e-28,6.5477e-28,2.5029e-28,1.9148e-28,1.193e-28,9.2539e-29,8.5221e-29,5.4355e-29,5.128e-29,4.5142e-29,3.4156e-29,2.0032e-29 1,0.034124,0.038744,0.038989,0.040491,0.04168,0.043288,0.046558,0.055175,0.061313,0.062305,0.06765,0.068557,0.072262,0.081957,0.085205,0.087523,0.098149,0.10007,0.10224,0.10979,0.11063,0.11111,0.11721,0.12093,0.12105,0.12845,0.12914,0.1326,0.13307,0.13352,0.15907,0.18665,0.1893,0.19812,0.20623,0.21268,0.22051,0.22985,0.24692,0.25666,0.273,0.29444,0.29647,0.30081,0.30486,0.32642,0.32645,0.38115,0.38538,0.38774,0.4051,0.40639,0.44149,0.4556,0.46153,0.47462,0.483,0.49749,0.50201,0.53711,0.55901,0.62839,0.6474,0.65374,0.66507,0.69593,0.7022,0.70775,0.73352,0.7572,0.76582,0.77282,0.79768,0.83193,0.86557,0.88659,0.89082,0.92551,0.93616,0.94088,0.94292,0.95085,0.97757,0.97826,0.98185,0.98689,0.98778,0.99336,1,1,0.99948,0.99905,0.98474,0.97849,0.97799,0.97148,0.96139,0.96117,0.96029,0.95342,0.95336,0.94669,0.944,0.89928,0.87626,0.87544,0.84705,0.83908,0.82647,0.82022,0.8165,0.81235,0.81099,0.80735,0.79248,0.79072,0.7871,0.78411,0.76122,0.73463,0.69958,0.68618,0.65758,0.62538,0.6118,0.60478,0.52775,0.51896,0.51252,0.49981,0.48379,0.47004,0.45898,0.45702,0.4558,0.44203,0.40668,0.40413,0.39062,0.37011,0.35903,0.35724,0.29752,0.29692,0.28587,0.26499,0.2613,0.24781,0.24469,0.2236,0.21052,0.18277,0.18214,0.15381,0.15079,0.14984,0.1336,0.13262,0.12713,0.12018,0.11806,0.11648,0.11042,0.10944,0.10881,0.10423,0.10267,0.10226,0.098635,0.097356,0.09051,0.080011,0.078248,0.077784,0.073515,0.071808,0.065191,0.054803,0.051879,0.047521,0.045999,0.041987,0.038296,0.038007,0.037784,0.037759,0.036737,0.036652,0.033608,0.032286,0.029922,0.02982,0.029209,0.025544,0.025443,0.023849,0.022143,0.019361,0.019019,0.018072,0.017866,0.017354,0.016525,0.015323,0.015292,0.012854,0.010506,0.010281,0.010037,0.0099617,0.0088002,0.0081474,0.0062491,0.0061617,0.005989,0.0057077,0.004765,0.003936,0.0031823,0.0029831,0.0028698,0.0025998,0.0021247,0.0019424,0.0017276,0.0014402,0.0012285,0.0011936,0.00087359,0.00083803,0.00082539,0.00076645,0.00074412,0.00058649,0.000529,0.00051339,0.00051183,0.00048056,0.00044125,0.00042407,0.00041663,0.00030462,0.0003045,0.00022855,0.00016375,0.00011972,8.9335e-05,7.861e-05,7.601e-05,7.0246e-05,6.5553e-05,5.5652e-05,5.4653e-05,3.9721e-05,3.6619e-05,3.109e-05,2.533e-05,2.2353e-05,2.2039e-05,1.9898e-05,1.8576e-05,1.5677e-05,1.2156e-05,1.1867e-05,1.0603e-05,8.8678e-06,7.6631e-06,7.6108e-06,4.5708e-06,4.2017e-06,4.0349e-06,3.6357e-06,3.4438e-06,3.1611e-06,2.7567e-06,2.6081e-06,2.4138e-06,2.1302e-06,1.8108e-06,1.5497e-06,1.5254e-06,1.2599e-06,1.1103e-06,9.9282e-07,7.6887e-07,6.837e-07,6.5508e-07,5.6262e-07,5.5744e-07,5.2135e-07,5.0615e-07,3.4135e-07,3.0832e-07,2.9635e-07,2.4719e-07,2.224e-07,2.1886e-07,1.7078e-07,1.0558e-07,9.1395e-08,8.4828e-08,7.1264e-08,7.02e-08,5.7653e-08,5.6421e-08,4.3702e-08,3.758e-08,2.7711e-08,2.6955e-08,2.6263e-08,2.5884e-08,2.4683e-08,2.3743e-08,2.3187e-08,1.8052e-08,1.7127e-08,1.037e-08,8.7542e-09,7.8218e-09,7.4801e-09,5.1542e-09,5.1206e-09,4.5257e-09,4.2713e-09,3.1903e-09,3.1609e-09,3.0924e-09,2.4854e-09,2.3391e-09,2.2892e-09,2.1437e-09,1.969e-09,1.8166e-09,1.7421e-09,1.1517e-09,1.1349e-09,9.1244e-10,6.5629e-10,4.803e-10,3.1012e-10,3.0819e-10,2.636e-10,2.1638e-10,1.6653e-10,1.6604e-10,1.516e-10,9.8612e-11,8.9195e-11,8.8215e-11,5.2825e-11,4.7171e-11,4.4187e-11,3.6115e-11,2.955e-11,2.0384e-11,1.9228e-11,1.4495e-11,7.6632e-12,7.5978e-12,7.2092e-12,6.4747e-12,5.9505e-12,5.3615e-12,4.7399e-12,1.4884e-12,1.0945e-12,6.813e-13,4.7789e-13,4.6959e-13,4.51e-13,2.6488e-13,2.3381e-13,2.3139e-13,1.3848e-13,5.7686e-14,5.6093e-14,4.3244e-14,4.0975e-14,2.2451e-14,1.8955e-14,1.3083e-14,1.0775e-14,8.6896e-15,8.3324e-15,6.4487e-15,6.1634e-15,6.0322e-15,3.3589e-15,2.817e-15,2.6156e-15,2.0547e-15,1.904e-15,1.3415e-15,1.2382e-15,1.0537e-15,7.0385e-16,7.0117e-16,5.7717e-16,5.4041e-16,5.4036e-16,3.5118e-16,3.4642e-16,2.8985e-16,2.4003e-16,1.5886e-16,1.0933e-16,8.3517e-17,5.4321e-17,3.6417e-17,2.1618e-17,2.1163e-17,1.4138e-17,9.5755e-18,7.6043e-18,4.0901e-18,3.4072e-18,2.3486e-18,1.8831e-18,1.1855e-18,1.1288e-18,1.0202e-18,8.0702e-19,4.9319e-19,2.9652e-19,2.2621e-19,1.7252e-19,1.4973e-19,1.4677e-19,1.1344e-19,8.417e-20,3.3634e-20,2.6308e-20,2.2974e-20,1.702e-20,1.6985e-20,1.263e-20,1.2172e-20,9.9509e-21,8.4615e-21,4.8925e-21,4.5186e-21,2.9392e-21,1.9665e-21,5.236e-22,4.0758e-22,3.6107e-22,2.6264e-22,1.9467e-22,1.737e-22,1.3827e-22,1.1734e-22,9.5692e-23,6.8263e-23,6.8139e-23,3.7022e-23,3.1466e-23,3.0416e-23,2.987e-23,1.6003e-23,1.5777e-23,1.4812e-23,1.4124e-23,1.2486e-23,1.0176e-23,8.4686e-24,3.7347e-24,6.4122e-25,3.7771e-25,3.6041e-25,3.467e-25,3.0579e-25,2.8515e-25,1.465e-25,9.4268e-26,6.8323e-26,5.7036e-26,3.9082e-26,2.8316e-26,2.6666e-26,1.6929e-26,1.3079e-26,9.5384e-27,5.733e-27,2.9225e-27,2.799e-27,2.2264e-27,1.8988e-27,1.7677e-27,8.2183e-28,6.6591e-28,2.5459e-28,1.9477e-28,1.2135e-28,9.4138e-29,8.6694e-29,5.5298e-29,5.217e-29,4.5926e-29,3.475e-29,2.0383e-29 1,0.031372,0.035676,0.035904,0.037306,0.038416,0.039917,0.042972,0.05104,0.056799,0.05773,0.062753,0.063607,0.067093,0.076231,0.079297,0.081485,0.091533,0.093354,0.095407,0.10256,0.10336,0.10382,0.1096,0.11314,0.11325,0.12029,0.12094,0.12424,0.12468,0.12511,0.14949,0.17588,0.17843,0.18689,0.19468,0.20088,0.20841,0.21741,0.23387,0.24328,0.25908,0.27986,0.28183,0.28604,0.28997,0.31092,0.31096,0.36432,0.36845,0.37076,0.38776,0.38903,0.42349,0.43738,0.44321,0.45611,0.46439,0.4787,0.48317,0.51793,0.53968,0.6089,0.62796,0.63432,0.6457,0.67679,0.68312,0.68873,0.71482,0.73888,0.74766,0.7548,0.78022,0.81544,0.85031,0.87226,0.8767,0.91341,0.92481,0.92989,0.9321,0.9407,0.97039,0.97119,0.97532,0.98124,0.98231,0.98917,0.99943,0.99948,1,0.99993,0.98979,0.98457,0.98414,0.97852,0.9696,0.96941,0.96862,0.96244,0.96238,0.95632,0.95387,0.91223,0.8904,0.88962,0.86244,0.85477,0.8426,0.83656,0.83295,0.82894,0.82762,0.82409,0.80963,0.80792,0.80439,0.80148,0.77911,0.75303,0.71848,0.70523,0.67687,0.64484,0.63128,0.62428,0.547,0.53814,0.53165,0.51883,0.50264,0.48873,0.47752,0.47554,0.4743,0.46033,0.42438,0.42178,0.40801,0.38707,0.37574,0.37392,0.31264,0.31202,0.30064,0.2791,0.27529,0.26135,0.25812,0.23628,0.2227,0.19383,0.19318,0.16359,0.16044,0.15944,0.14243,0.1414,0.13564,0.12833,0.12611,0.12445,0.11807,0.11704,0.11637,0.11155,0.1099,0.10947,0.10565,0.1043,0.097068,0.085962,0.084094,0.083603,0.079077,0.077266,0.070241,0.059187,0.056071,0.05142,0.049793,0.045503,0.041552,0.041242,0.041004,0.040976,0.039882,0.03979,0.036525,0.035106,0.032565,0.032456,0.031799,0.027853,0.027745,0.026027,0.024185,0.02118,0.02081,0.019785,0.019562,0.019008,0.01811,0.016807,0.016773,0.014126,0.011571,0.011326,0.011059,0.010977,0.0097101,0.008997,0.0069195,0.0068237,0.0066344,0.0063257,0.0052905,0.0043782,0.003547,0.003327,0.0032019,0.0029033,0.0023771,0.002175,0.0019365,0.0016169,0.0013812,0.0013423,0.00098511,0.00094535,0.0009312,0.00086526,0.00084026,0.00066359,0.00059905,0.00058152,0.00057977,0.00054463,0.00050043,0.0004811,0.00047273,0.00034651,0.00034638,0.00026058,0.00018718,0.00013718,0.00010259,9.0356e-05,8.7389e-05,8.0809e-05,7.5449e-05,6.4129e-05,6.2986e-05,4.5883e-05,4.2325e-05,3.5975e-05,2.9353e-05,2.5926e-05,2.5563e-05,2.3096e-05,2.1572e-05,1.8227e-05,1.4157e-05,1.3824e-05,1.236e-05,1.035e-05,8.9525e-06,8.8919e-06,5.3581e-06,4.928e-06,4.7336e-06,4.2682e-06,4.0443e-06,3.7143e-06,3.242e-06,3.0683e-06,2.8411e-06,2.5093e-06,2.1353e-06,1.8292e-06,1.8006e-06,1.489e-06,1.3132e-06,1.175e-06,9.1141e-07,8.1103e-07,7.7728e-07,6.6818e-07,6.6207e-07,6.1945e-07,6.015e-07,4.066e-07,3.6748e-07,3.5329e-07,2.95e-07,2.6558e-07,2.6138e-07,2.0425e-07,1.2662e-07,1.097e-07,1.0186e-07,8.5654e-08,8.4382e-08,6.9377e-08,6.7902e-08,5.267e-08,4.5329e-08,3.3481e-08,3.2572e-08,3.174e-08,3.1285e-08,2.9841e-08,2.8711e-08,2.8042e-08,2.1861e-08,2.0747e-08,1.2595e-08,1.0642e-08,9.5146e-09,9.1011e-09,6.2834e-09,6.2426e-09,5.5209e-09,5.2121e-09,3.8989e-09,3.8631e-09,3.7798e-09,3.0413e-09,2.8632e-09,2.8025e-09,2.6251e-09,2.4122e-09,2.2265e-09,2.1356e-09,1.4148e-09,1.3943e-09,1.1222e-09,8.0847e-10,5.9258e-10,3.8344e-10,3.8106e-10,3.2618e-10,2.68e-10,2.0651e-10,2.0591e-10,1.8809e-10,1.226e-10,1.1094e-10,1.0973e-10,6.5867e-11,5.8848e-11,5.5142e-11,4.5111e-11,3.6945e-11,2.5528e-11,2.4087e-11,1.8182e-11,9.64e-12,9.5581e-12,9.0714e-12,8.1511e-12,7.494e-12,6.7553e-12,5.9754e-12,1.886e-12,1.3887e-12,8.6621e-13,6.0852e-13,5.9799e-13,5.7442e-13,3.3813e-13,2.9862e-13,2.9555e-13,1.7726e-13,7.4108e-14,7.2069e-14,5.562e-14,5.2713e-14,2.8954e-14,2.4462e-14,1.6909e-14,1.3937e-14,1.1249e-14,1.0789e-14,8.3583e-15,7.9899e-15,7.8205e-15,4.3647e-15,3.6631e-15,3.4023e-15,2.6752e-15,2.4796e-15,1.7495e-15,1.6153e-15,1.3755e-15,9.2021e-16,9.1672e-16,7.5516e-16,7.0725e-16,7.0718e-16,4.6036e-16,4.5414e-16,3.8024e-16,3.1511e-16,2.0887e-16,1.4395e-16,1.1008e-16,7.171e-17,4.8146e-17,2.8635e-17,2.8035e-17,1.8756e-17,1.2722e-17,1.0111e-17,5.4507e-18,4.5435e-18,3.136e-18,2.5165e-18,1.5869e-18,1.5112e-18,1.3663e-18,1.0817e-18,6.622e-19,3.9884e-19,3.0455e-19,2.3249e-19,2.0188e-19,1.979e-19,1.531e-19,1.1371e-19,4.558e-20,3.5682e-20,3.1173e-20,2.3118e-20,2.307e-20,1.7172e-20,1.6552e-20,1.3541e-20,1.152e-20,6.6732e-21,6.1648e-21,4.0157e-21,2.6904e-21,7.1944e-22,5.6048e-22,4.9671e-22,3.6168e-22,2.6834e-22,2.3951e-22,1.9081e-22,1.6201e-22,1.322e-22,9.4411e-23,9.4241e-23,5.1302e-23,4.3626e-23,4.2174e-23,4.142e-23,2.2235e-23,2.1922e-23,2.0585e-23,1.9632e-23,1.7362e-23,1.4159e-23,1.179e-23,5.2126e-24,8.9982e-25,5.3089e-25,5.0664e-25,4.8743e-25,4.3008e-25,4.0113e-25,2.0651e-25,1.3305e-25,9.6527e-26,8.0624e-26,5.5308e-26,4.0109e-26,3.7779e-26,2.4016e-26,1.8569e-26,1.3555e-26,8.1591e-27,4.1674e-27,3.9919e-27,3.1773e-27,2.7111e-27,2.5244e-27,1.1762e-27,9.5364e-28,3.6559e-28,2.799e-28,1.7463e-28,1.3557e-28,1.2488e-28,7.9754e-29,7.5255e-29,6.6273e-29,5.0185e-29,2.948e-29 1,0.030431,0.034626,0.034849,0.036215,0.037298,0.038762,0.041743,0.049619,0.055246,0.056156,0.061068,0.061902,0.065313,0.074255,0.077257,0.079401,0.089246,0.091031,0.093043,0.10006,0.10084,0.10129,0.10697,0.11044,0.11055,0.11746,0.1181,0.12134,0.12177,0.12219,0.14615,0.17213,0.17463,0.18297,0.19064,0.19675,0.20418,0.21306,0.2293,0.23859,0.2542,0.27474,0.27668,0.28085,0.28473,0.30547,0.3055,0.35836,0.36247,0.36475,0.38162,0.38288,0.4171,0.4309,0.4367,0.44953,0.45776,0.47201,0.47646,0.51109,0.53277,0.6019,0.62096,0.62733,0.63873,0.66988,0.67623,0.68185,0.70804,0.73222,0.74106,0.74824,0.77385,0.8094,0.84468,0.86696,0.87146,0.90887,0.92054,0.92575,0.92801,0.93685,0.96758,0.96842,0.97274,0.97897,0.9801,0.98742,0.99898,0.99905,0.99993,1,0.99137,0.98651,0.98611,0.98081,0.97232,0.97213,0.97138,0.96545,0.9654,0.95956,0.95719,0.91669,0.8953,0.89454,0.86781,0.86026,0.84826,0.84229,0.83873,0.83476,0.83346,0.82997,0.81567,0.81398,0.81048,0.8076,0.78544,0.75955,0.72521,0.71202,0.68377,0.65181,0.63827,0.63127,0.55395,0.54507,0.53856,0.5257,0.50946,0.4955,0.48424,0.48225,0.481,0.46697,0.43082,0.4282,0.41434,0.39325,0.38183,0.37999,0.31817,0.31754,0.30604,0.28428,0.28042,0.26632,0.26306,0.24094,0.22719,0.19792,0.19725,0.16722,0.16401,0.163,0.1457,0.14465,0.1388,0.13136,0.1291,0.12741,0.12092,0.11987,0.11918,0.11427,0.11259,0.11215,0.10826,0.10688,0.099512,0.088183,0.086277,0.085775,0.081155,0.079306,0.07213,0.06083,0.057642,0.052883,0.051218,0.046825,0.042776,0.04246,0.042215,0.042187,0.041065,0.040971,0.037624,0.036168,0.033562,0.033449,0.032775,0.028725,0.028614,0.026849,0.024958,0.021868,0.021488,0.020434,0.020204,0.019634,0.018711,0.01737,0.017334,0.014609,0.011976,0.011723,0.011448,0.011364,0.010057,0.0093209,0.0071756,0.0070766,0.006881,0.006562,0.0054916,0.0045477,0.003687,0.0034591,0.0033294,0.0030199,0.0024743,0.0022646,0.002017,0.0016851,0.0014402,0.0013998,0.0010283,0.0009869,0.00097218,0.00090354,0.00087751,0.00069351,0.00062625,0.00060798,0.00060615,0.00056952,0.00052343,0.00050328,0.00049454,0.00036283,0.00036269,0.00027307,0.00019633,0.00014401,0.00010778,9.4965e-05,9.1855e-05,8.4956e-05,7.9335e-05,6.7462e-05,6.6263e-05,4.8309e-05,4.4572e-05,3.7901e-05,3.094e-05,2.7336e-05,2.6955e-05,2.436e-05,2.2756e-05,1.9236e-05,1.495e-05,1.4599e-05,1.3057e-05,1.0938e-05,9.4643e-06,9.4003e-06,5.6713e-06,5.2171e-06,5.0117e-06,4.5201e-06,4.2835e-06,3.9348e-06,3.4355e-06,3.2518e-06,3.0116e-06,2.6606e-06,2.2649e-06,1.9409e-06,1.9106e-06,1.5807e-06,1.3944e-06,1.248e-06,9.6856e-07,8.621e-07,8.263e-07,7.1055e-07,7.0408e-07,6.5884e-07,6.3979e-07,4.3285e-07,3.9129e-07,3.7621e-07,3.1426e-07,2.8298e-07,2.7851e-07,2.1775e-07,1.3512e-07,1.171e-07,1.0874e-07,9.1478e-08,9.0123e-08,7.4126e-08,7.2553e-08,5.6306e-08,4.8473e-08,3.5824e-08,3.4854e-08,3.3966e-08,3.348e-08,3.1937e-08,3.073e-08,3.0016e-08,2.3411e-08,2.222e-08,1.3503e-08,1.1413e-08,1.0205e-08,9.7627e-09,6.7449e-09,6.7012e-09,5.9279e-09,5.5969e-09,4.189e-09,4.1506e-09,4.0613e-09,3.2691e-09,3.078e-09,3.0128e-09,2.8225e-09,2.594e-09,2.3946e-09,2.297e-09,1.5229e-09,1.5009e-09,1.2084e-09,8.7112e-10,6.3885e-10,4.1369e-10,4.1113e-10,3.5202e-10,2.8933e-10,2.2305e-10,2.224e-10,2.0318e-10,1.3253e-10,1.1995e-10,1.1864e-10,7.128e-11,6.3696e-11,5.9691e-11,4.885e-11,4.002e-11,2.767e-11,2.611e-11,1.9718e-11,1.0465e-11,1.0377e-11,9.8491e-12,8.8514e-12,8.139e-12,7.3379e-12,6.492e-12,2.0528e-12,1.5123e-12,9.4397e-13,6.6351e-13,6.5205e-13,6.2638e-13,3.6901e-13,3.2596e-13,3.2262e-13,1.9364e-13,8.1063e-14,7.8836e-14,6.0866e-14,5.7689e-14,3.1715e-14,2.6802e-14,1.8536e-14,1.5282e-14,1.2339e-14,1.1834e-14,9.1718e-15,8.7681e-15,8.5825e-15,4.794e-15,4.0243e-15,3.7382e-15,2.9403e-15,2.7257e-15,1.924e-15,1.7767e-15,1.5132e-15,1.0129e-15,1.0091e-15,8.3147e-16,7.7879e-16,7.7872e-16,5.0722e-16,5.0038e-16,4.1906e-16,3.4737e-16,2.3039e-16,1.5885e-16,1.2152e-16,7.921e-17,5.321e-17,3.1669e-17,3.1006e-17,2.0755e-17,1.4084e-17,1.1198e-17,6.0412e-18,5.0369e-18,3.4782e-18,2.7919e-18,1.7616e-18,1.6777e-18,1.517e-18,1.2014e-18,7.3592e-19,4.4352e-19,3.3878e-19,2.5871e-19,2.2469e-19,2.2027e-19,1.7045e-19,1.2665e-19,5.0823e-20,3.9798e-20,3.4775e-20,2.5798e-20,2.5745e-20,1.9171e-20,1.8479e-20,1.512e-20,1.2867e-20,7.4581e-21,6.8906e-21,4.4908e-21,3.0101e-21,8.0619e-22,6.2824e-22,5.5685e-22,4.0562e-22,3.0104e-22,2.6874e-22,2.1414e-22,1.8186e-22,1.4844e-22,1.0604e-22,1.0585e-22,5.7664e-23,4.9045e-23,4.7414e-23,4.6568e-23,2.5015e-23,2.4664e-23,2.3161e-23,2.209e-23,1.9538e-23,1.5938e-23,1.3274e-23,5.8741e-24,1.016e-24,5.9977e-25,5.724e-25,5.5072e-25,4.8599e-25,4.5331e-25,2.3354e-25,1.5054e-25,1.0925e-25,9.127e-26,6.2636e-26,4.544e-26,4.2802e-26,2.7223e-26,2.1054e-26,1.5374e-26,9.259e-27,4.7325e-27,4.5334e-27,3.6092e-27,3.0801e-27,2.8682e-27,1.3375e-27,1.0846e-27,4.1622e-28,3.1875e-28,1.9897e-28,1.545e-28,1.4233e-28,9.094e-29,8.5815e-29,7.5582e-29,5.725e-29,3.3648e-29 1,0.021301,0.024395,0.02456,0.025573,0.026377,0.027467,0.029693,0.035621,0.039892,0.040586,0.04434,0.04498,0.047601,0.054517,0.056851,0.058522,0.066235,0.06764,0.069226,0.074779,0.075396,0.075753,0.080271,0.083039,0.08313,0.088661,0.089179,0.091783,0.092131,0.09247,0.11191,0.13329,0.13536,0.1423,0.1487,0.15382,0.16007,0.16755,0.18133,0.18926,0.20265,0.2204,0.22209,0.22571,0.22909,0.24724,0.24726,0.29418,0.29786,0.29992,0.31512,0.31626,0.3474,0.36008,0.36542,0.37728,0.38492,0.3982,0.40236,0.43497,0.45561,0.52254,0.54133,0.54764,0.55897,0.59024,0.59667,0.60237,0.62917,0.65421,0.66345,0.67099,0.69812,0.73655,0.7757,0.80107,0.80627,0.85061,0.86497,0.87148,0.87433,0.88562,0.92734,0.92855,0.93494,0.94452,0.94632,0.95859,0.98448,0.98474,0.98979,0.99137,1,0.99945,0.99937,0.99788,0.99448,0.99439,0.99405,0.99113,0.9911,0.98796,0.98662,0.96009,0.94429,0.94371,0.92282,0.91674,0.90693,0.902,0.89904,0.89572,0.89463,0.89169,0.87955,0.8781,0.8751,0.87261,0.85329,0.83025,0.799,0.7868,0.76035,0.72991,0.71686,0.71008,0.63368,0.62473,0.61816,0.60511,0.58853,0.57419,0.56257,0.56051,0.55921,0.54463,0.5067,0.50394,0.48923,0.46671,0.45444,0.45246,0.38499,0.3843,0.37156,0.34729,0.34297,0.3271,0.32341,0.29829,0.28254,0.24869,0.24792,0.21266,0.20886,0.20766,0.18705,0.18579,0.17876,0.1698,0.16707,0.16502,0.15714,0.15586,0.15503,0.14904,0.14698,0.14645,0.14168,0.13999,0.13091,0.11686,0.11448,0.11386,0.10808,0.10576,0.096719,0.082356,0.078273,0.072149,0.069998,0.064304,0.059025,0.058611,0.058291,0.058254,0.056785,0.056661,0.052263,0.050342,0.046892,0.046743,0.045849,0.040448,0.040299,0.037932,0.035386,0.031203,0.030686,0.02925,0.028937,0.028159,0.026895,0.025053,0.025005,0.021239,0.017567,0.017212,0.016826,0.016708,0.014865,0.013823,0.01076,0.010618,0.010336,0.0098768,0.0083265,0.0069481,0.0056802,0.0053425,0.0051499,0.0046889,0.0038712,0.003555,0.0031802,0.0026747,0.0022991,0.0022368,0.0016615,0.001597,0.001574,0.0014666,0.0014259,0.0011361,0.0010296,0.0010005,0.00099764,0.00093935,0.00086581,0.00083358,0.0008196,0.00060756,0.00060734,0.00046155,0.00033539,0.00024843,0.00018761,0.00016594,0.00016067,0.00014896,0.00013939,0.00011911,0.00011706,8.615e-05,7.9674e-05,6.8072e-05,5.5899e-05,4.9564e-05,4.8893e-05,4.4314e-05,4.1477e-05,3.5227e-05,2.7574e-05,2.6944e-05,2.4172e-05,2.0349e-05,1.7678e-05,1.7562e-05,1.0741e-05,9.903e-06,9.5233e-06,8.6127e-06,8.1735e-06,7.5251e-06,6.5936e-06,6.2502e-06,5.8e-06,5.1407e-06,4.3943e-06,3.7807e-06,3.7233e-06,3.0952e-06,2.7392e-06,2.4586e-06,1.9202e-06,1.7142e-06,1.6447e-06,1.4196e-06,1.407e-06,1.3188e-06,1.2816e-06,8.7537e-07,7.9327e-07,7.6343e-07,6.4049e-07,5.782e-07,5.6927e-07,4.4771e-07,2.8096e-07,2.443e-07,2.2726e-07,1.9195e-07,1.8917e-07,1.5629e-07,1.5305e-07,1.1947e-07,1.032e-07,7.6795e-08,7.476e-08,7.2898e-08,7.1878e-08,6.8638e-08,6.6101e-08,6.4599e-08,5.0664e-08,4.8143e-08,2.9578e-08,2.5092e-08,2.2492e-08,2.1537e-08,1.4999e-08,1.4904e-08,1.3219e-08,1.2496e-08,9.4104e-09,9.326e-09,9.1295e-09,7.3824e-09,6.9597e-09,6.8154e-09,6.3937e-09,5.8864e-09,5.4431e-09,5.2258e-09,3.4943e-09,3.4448e-09,2.786e-09,2.0219e-09,1.4922e-09,9.7474e-10,9.6883e-10,8.321e-10,6.8659e-10,5.3205e-10,5.3053e-10,4.8555e-10,3.1938e-10,2.8963e-10,2.8653e-10,1.7385e-10,1.5569e-10,1.4608e-10,1.2001e-10,9.8693e-11,6.8716e-11,6.4914e-11,4.9282e-11,2.6467e-11,2.6247e-11,2.4936e-11,2.2455e-11,2.0679e-11,1.868e-11,1.6564e-11,5.348e-12,3.9614e-12,2.4935e-12,1.7636e-12,1.7337e-12,1.6666e-12,9.9097e-13,8.7724e-13,8.6839e-13,5.2586e-13,2.2343e-13,2.174e-13,1.6858e-13,1.5993e-13,8.8808e-14,7.5261e-14,5.2371e-14,4.3315e-14,3.5096e-14,3.3684e-14,2.6215e-14,2.508e-14,2.4558e-14,1.3848e-14,1.1658e-14,1.0842e-14,8.5609e-15,7.9455e-15,5.64e-15,5.2148e-15,4.4528e-15,2.9998e-15,2.9886e-15,2.4701e-15,2.316e-15,2.3158e-15,1.5186e-15,1.4984e-15,1.2584e-15,1.0462e-15,6.9832e-16,4.8428e-16,3.7199e-16,2.4407e-16,1.6496e-16,9.8952e-17,9.6911e-17,6.5265e-17,4.4547e-17,3.5538e-17,1.935e-17,1.6176e-17,1.1232e-17,9.0446e-18,5.7453e-18,5.4754e-18,4.9582e-18,3.94e-18,2.4307e-18,1.4756e-18,1.1315e-18,8.6738e-19,7.5482e-19,7.4018e-19,5.7488e-19,4.2893e-19,1.7435e-19,1.37e-19,1.1993e-19,8.9342e-20,8.916e-20,6.6663e-20,6.429e-20,5.2752e-20,4.4989e-20,2.6273e-20,2.43e-20,1.593e-20,1.0736e-20,2.9267e-21,2.2883e-21,2.0315e-21,1.4861e-21,1.1073e-21,9.8995e-22,7.9121e-22,6.7337e-22,5.5109e-22,3.9544e-22,3.9474e-22,2.1675e-22,1.8474e-22,1.7868e-22,1.7553e-22,9.5052e-23,9.3732e-23,8.8094e-23,8.4071e-23,7.4477e-23,6.0913e-23,5.085e-23,2.2738e-23,4.0209e-24,2.3894e-24,2.2817e-24,2.1963e-24,1.9412e-24,1.8122e-24,9.4135e-25,6.101e-25,4.4451e-25,3.7217e-25,2.5659e-25,1.8688e-25,1.7616e-25,1.1266e-25,8.7402e-26,6.4063e-26,3.8819e-26,2.0002e-26,1.917e-26,1.5304e-26,1.3085e-26,1.2195e-26,5.7386e-27,4.6652e-27,1.8105e-27,1.3909e-27,8.7301e-28,6.7989e-28,6.2692e-28,4.0266e-28,3.8022e-28,3.3538e-28,2.5485e-28,1.5071e-28 1,0.01942,0.022277,0.022429,0.023366,0.02411,0.025118,0.027181,0.032682,0.036654,0.0373,0.040799,0.041395,0.043841,0.050302,0.052486,0.05405,0.061281,0.062599,0.064089,0.069306,0.069887,0.070223,0.074474,0.077081,0.077167,0.08238,0.082868,0.085326,0.085654,0.085973,0.10435,0.12464,0.12662,0.13321,0.13931,0.14419,0.15015,0.1573,0.17047,0.17806,0.19089,0.20795,0.20957,0.21305,0.21631,0.23379,0.23381,0.27917,0.28274,0.28473,0.29949,0.30059,0.33088,0.34324,0.34845,0.36003,0.3675,0.38048,0.38455,0.41654,0.43683,0.50291,0.52154,0.5278,0.53906,0.57019,0.5766,0.58229,0.60908,0.6342,0.64348,0.65106,0.67842,0.71731,0.75718,0.78315,0.7885,0.83428,0.84921,0.856,0.85898,0.8708,0.91498,0.91628,0.92314,0.9335,0.93545,0.94887,0.97819,0.97849,0.98457,0.98651,0.99945,1,1,0.99949,0.9974,0.99735,0.9971,0.99498,0.99496,0.99253,0.99146,0.96868,0.95441,0.95389,0.93464,0.92898,0.91981,0.91517,0.91238,0.90926,0.90823,0.90545,0.89394,0.89257,0.88971,0.88735,0.86888,0.84674,0.81648,0.80462,0.7788,0.74894,0.7361,0.72942,0.65369,0.64478,0.63822,0.6252,0.60862,0.59425,0.5826,0.58053,0.57923,0.56458,0.52637,0.52358,0.50872,0.48593,0.47348,0.47147,0.4028,0.40209,0.38908,0.36424,0.3598,0.34352,0.33973,0.31389,0.29766,0.26268,0.26188,0.2253,0.22136,0.22011,0.19864,0.19733,0.18999,0.18063,0.17777,0.17564,0.16739,0.16605,0.16518,0.1589,0.15675,0.15619,0.15118,0.14941,0.13988,0.12509,0.12259,0.12193,0.11584,0.11339,0.10384,0.088635,0.084304,0.077801,0.075515,0.069455,0.06383,0.063388,0.063047,0.063008,0.06144,0.061309,0.056612,0.05456,0.050869,0.05071,0.049752,0.043964,0.043804,0.041264,0.038529,0.034029,0.033472,0.031925,0.031587,0.030748,0.029384,0.027397,0.027344,0.023271,0.019291,0.018906,0.018487,0.018359,0.016356,0.015221,0.011882,0.011727,0.011419,0.010917,0.0092204,0.0077088,0.0063153,0.0059436,0.0057314,0.0052233,0.0043208,0.0039712,0.0035564,0.0029961,0.0025791,0.0025099,0.0018696,0.0017976,0.001772,0.0016522,0.0016067,0.0012829,0.0011635,0.001131,0.0011278,0.0010625,0.00097997,0.00094381,0.00092812,0.00068981,0.00068955,0.00052525,0.0003827,0.00028418,0.00021509,0.00019044,0.00018444,0.00017109,0.00016019,0.00013705,0.00013471,9.9372e-05,9.1957e-05,7.8661e-05,6.469e-05,5.741e-05,5.6638e-05,5.1372e-05,4.8106e-05,4.0907e-05,3.2077e-05,3.1349e-05,2.8146e-05,2.3724e-05,2.063e-05,2.0495e-05,1.2579e-05,1.1604e-05,1.1162e-05,1.0102e-05,9.5899e-06,8.834e-06,7.7475e-06,7.3466e-06,6.821e-06,6.0505e-06,5.1775e-06,4.4589e-06,4.3917e-06,3.6553e-06,3.2375e-06,2.9079e-06,2.2748e-06,2.0321e-06,1.9503e-06,1.685e-06,1.6701e-06,1.566e-06,1.5221e-06,1.0422e-06,9.4502e-07,9.0969e-07,7.6403e-07,6.9017e-07,6.7958e-07,5.3525e-07,3.3685e-07,2.9314e-07,2.7282e-07,2.3066e-07,2.2734e-07,1.8804e-07,1.8417e-07,1.4397e-07,1.2447e-07,9.2779e-08,9.0335e-08,8.8098e-08,8.6872e-08,8.2979e-08,7.9929e-08,7.8123e-08,6.1356e-08,5.832e-08,3.5929e-08,3.0508e-08,2.7364e-08,2.6209e-08,1.8289e-08,1.8174e-08,1.6129e-08,1.5252e-08,1.1504e-08,1.1401e-08,1.1162e-08,9.0366e-09,8.5219e-09,8.3462e-09,7.8324e-09,7.2142e-09,6.6738e-09,6.4087e-09,4.2945e-09,4.234e-09,3.4281e-09,2.492e-09,1.8421e-09,1.206e-09,1.1987e-09,1.0303e-09,8.5099e-10,6.6029e-10,6.5843e-10,6.0287e-10,3.9739e-10,3.6055e-10,3.5671e-10,2.1697e-10,1.9441e-10,1.8247e-10,1.5005e-10,1.2351e-10,8.6149e-11,8.1405e-11,6.1884e-11,3.3334e-11,3.3057e-11,3.1415e-11,2.8302e-11,2.6075e-11,2.3565e-11,2.0907e-11,6.786e-12,5.0335e-12,3.1751e-12,2.2492e-12,2.2111e-12,2.126e-12,1.2671e-12,1.1222e-12,1.111e-12,6.7426e-13,2.8756e-13,2.7982e-13,2.1723e-13,2.0612e-13,1.1475e-13,9.7315e-14,6.7822e-14,5.6139e-14,4.5528e-14,4.3704e-14,3.4049e-14,3.258e-14,3.1904e-14,1.8034e-14,1.5192e-14,1.4133e-14,1.1171e-14,1.0371e-14,7.3721e-15,6.8185e-15,5.8259e-15,3.9311e-15,3.9165e-15,3.2395e-15,3.0382e-15,3.0379e-15,1.9956e-15,1.9692e-15,1.6549e-15,1.3768e-15,9.2048e-16,6.3927e-16,4.9155e-16,3.2306e-16,2.1867e-16,1.3143e-16,1.2873e-16,8.6827e-17,5.9351e-17,4.7389e-17,2.5862e-17,2.1635e-17,1.5042e-17,1.2123e-17,7.7139e-18,7.3529e-18,6.6607e-18,5.2974e-18,3.2739e-18,1.9912e-18,1.5283e-18,1.1727e-18,1.021e-18,1.0013e-18,7.784e-19,5.8139e-19,2.3709e-19,1.8645e-19,1.633e-19,1.2178e-19,1.2153e-19,9.096e-20,8.7733e-20,7.2038e-20,6.1471e-20,3.5966e-20,3.3275e-20,2.1845e-20,1.4742e-20,4.037e-21,3.159e-21,2.8057e-21,2.0545e-21,1.5324e-21,1.3705e-21,1.0962e-21,9.3343e-22,7.6444e-22,5.4914e-22,5.4817e-22,3.0159e-22,2.5719e-22,2.4878e-22,2.4441e-22,1.3262e-22,1.3079e-22,1.2294e-22,1.1735e-22,1.04e-22,8.5113e-23,7.1094e-23,3.1874e-23,5.668e-24,3.3738e-24,3.2222e-24,3.102e-24,2.7427e-24,2.561e-24,1.3331e-24,8.6516e-25,6.3097e-25,5.2858e-25,3.6485e-25,2.6598e-25,2.5077e-25,1.606e-25,1.2469e-25,9.1484e-26,5.552e-26,2.8665e-26,2.7477e-26,2.195e-26,1.8776e-26,1.7504e-26,8.2553e-27,6.7153e-27,2.6136e-27,2.0094e-27,1.263e-27,9.843e-28,9.0784e-28,5.8386e-28,5.5142e-28,4.8656e-28,3.7003e-28,2.1916e-28 1,0.019287,0.022128,0.022279,0.02321,0.02395,0.024953,0.027004,0.032474,0.036425,0.037068,0.040548,0.041141,0.043574,0.050003,0.052177,0.053733,0.060929,0.062241,0.063724,0.068917,0.069495,0.069829,0.074061,0.076656,0.076742,0.081932,0.082419,0.084866,0.085192,0.08551,0.10381,0.12402,0.12599,0.13256,0.13864,0.1435,0.14944,0.15656,0.16969,0.17725,0.19005,0.20705,0.20867,0.21214,0.21539,0.23282,0.23284,0.27809,0.28165,0.28363,0.29835,0.29946,0.32969,0.34202,0.34722,0.35878,0.36623,0.37919,0.38326,0.4152,0.43546,0.50148,0.52009,0.52635,0.5376,0.56871,0.57512,0.58082,0.60761,0.63273,0.64201,0.64959,0.67696,0.71589,0.7558,0.78182,0.78717,0.83305,0.84803,0.85484,0.85782,0.86968,0.91404,0.91534,0.92224,0.93265,0.93462,0.94812,0.97768,0.97799,0.98414,0.98611,0.99937,1,1,0.99956,0.99757,0.99752,0.99729,0.99522,0.9952,0.99282,0.99177,0.96928,0.95512,0.9546,0.93548,0.92984,0.92072,0.91611,0.91333,0.91022,0.90919,0.90643,0.89497,0.8936,0.89076,0.8884,0.87,0.84793,0.81774,0.80591,0.78014,0.75033,0.7375,0.73083,0.65516,0.64625,0.6397,0.62667,0.6101,0.59573,0.58408,0.582,0.5807,0.56605,0.52782,0.52503,0.51016,0.48735,0.4749,0.47288,0.40412,0.40342,0.39038,0.3655,0.36106,0.34474,0.34095,0.31505,0.29879,0.26373,0.26292,0.22625,0.22229,0.22104,0.19951,0.19819,0.19084,0.18145,0.17858,0.17644,0.16816,0.16682,0.16595,0.15965,0.15749,0.15692,0.1519,0.15012,0.14056,0.12572,0.1232,0.12254,0.11642,0.11397,0.10438,0.089112,0.084762,0.07823,0.075934,0.069847,0.064196,0.063752,0.063409,0.06337,0.061795,0.061663,0.056944,0.054881,0.051173,0.051012,0.05005,0.044232,0.044072,0.041519,0.038769,0.034245,0.033685,0.03213,0.03179,0.030946,0.029575,0.027576,0.027523,0.023427,0.019424,0.019036,0.018615,0.018485,0.01647,0.015329,0.011969,0.011812,0.011503,0.010997,0.0092894,0.0077676,0.0063645,0.0059901,0.0057765,0.0052648,0.0043556,0.0040034,0.0035856,0.0030211,0.0026009,0.0025312,0.0018858,0.0018132,0.0017874,0.0016667,0.0016208,0.0012943,0.001174,0.0011412,0.0011379,0.0010721,0.0009889,0.00095243,0.00093661,0.00069625,0.00069599,0.00053025,0.00038642,0.00028699,0.00021725,0.00019237,0.00018631,0.00017284,0.00016183,0.00013847,0.0001361,0.00010042,9.2928e-05,7.9498e-05,6.5385e-05,5.8032e-05,5.7252e-05,5.1931e-05,4.8632e-05,4.1357e-05,3.2434e-05,3.1698e-05,2.8462e-05,2.3992e-05,2.0865e-05,2.0729e-05,1.2725e-05,1.1739e-05,1.1293e-05,1.022e-05,9.7029e-06,8.9385e-06,7.8396e-06,7.4342e-06,6.9025e-06,6.1232e-06,5.2401e-06,4.5132e-06,4.4452e-06,3.7002e-06,3.2774e-06,2.9439e-06,2.3032e-06,2.0576e-06,1.9748e-06,1.7063e-06,1.6912e-06,1.5859e-06,1.5414e-06,1.0556e-06,9.5723e-07,9.2146e-07,7.7397e-07,6.9918e-07,6.8846e-07,5.423e-07,3.4136e-07,2.9708e-07,2.765e-07,2.3378e-07,2.3042e-07,1.9061e-07,1.8668e-07,1.4595e-07,1.2619e-07,9.4074e-08,9.1597e-08,8.933e-08,8.8087e-08,8.4141e-08,8.105e-08,7.9219e-08,6.2223e-08,5.9146e-08,3.6445e-08,3.0949e-08,2.776e-08,2.6589e-08,1.8557e-08,1.844e-08,1.6366e-08,1.5477e-08,1.1675e-08,1.157e-08,1.1328e-08,9.1716e-09,8.6494e-09,8.4711e-09,7.9499e-09,7.3227e-09,6.7743e-09,6.5053e-09,4.3599e-09,4.2985e-09,3.4806e-09,2.5305e-09,1.8707e-09,1.2249e-09,1.2176e-09,1.0466e-09,8.6449e-10,6.7084e-10,6.6894e-10,6.1252e-10,4.0381e-10,3.6639e-10,3.6249e-10,2.2052e-10,1.976e-10,1.8547e-10,1.5253e-10,1.2556e-10,8.7589e-11,8.2768e-11,6.2926e-11,3.3902e-11,3.3622e-11,3.1951e-11,2.8787e-11,2.6522e-11,2.397e-11,2.1267e-11,6.9056e-12,5.1227e-12,3.2319e-12,2.2897e-12,2.251e-12,2.1643e-12,1.2901e-12,1.1427e-12,1.1312e-12,6.8667e-13,2.9293e-13,2.8506e-13,2.2131e-13,2.1e-13,1.1693e-13,9.9168e-14,6.9121e-14,5.7218e-14,4.6405e-14,4.4547e-14,3.4708e-14,3.3212e-14,3.2523e-14,1.8387e-14,1.549e-14,1.4411e-14,1.1391e-14,1.0576e-14,7.5184e-15,6.954e-15,5.942e-15,4.0099e-15,3.995e-15,3.3047e-15,3.0993e-15,3.0991e-15,2.036e-15,2.009e-15,1.6885e-15,1.4048e-15,9.3933e-16,6.5243e-16,5.0171e-16,3.2978e-16,2.2324e-16,1.342e-16,1.3144e-16,8.8666e-17,6.0614e-17,4.8401e-17,2.6418e-17,2.2102e-17,1.5368e-17,1.2387e-17,7.8826e-18,7.5138e-18,6.8066e-18,5.4138e-18,3.3463e-18,2.0355e-18,1.5624e-18,1.199e-18,1.0439e-18,1.0238e-18,7.9592e-19,5.9452e-19,2.425e-19,1.9072e-19,1.6705e-19,1.2458e-19,1.2433e-19,9.3059e-20,8.9759e-20,7.3705e-20,6.2896e-20,3.6805e-20,3.4052e-20,2.2357e-20,1.509e-20,4.1334e-21,3.2347e-21,2.873e-21,2.104e-21,1.5694e-21,1.4036e-21,1.1227e-21,9.5608e-22,7.8303e-22,5.6254e-22,5.6154e-22,3.09e-22,2.6352e-22,2.549e-22,2.5042e-22,1.3591e-22,1.3402e-22,1.2599e-22,1.2026e-22,1.0658e-22,8.723e-23,7.2865e-23,3.2675e-23,5.8127e-24,3.4603e-24,3.3048e-24,3.1816e-24,2.8132e-24,2.6269e-24,1.3676e-24,8.8763e-25,6.4741e-25,5.4238e-25,3.744e-25,2.7297e-25,2.5736e-25,1.6483e-25,1.2799e-25,9.3909e-26,5.6998e-26,2.9433e-26,2.8213e-26,2.2539e-26,1.9281e-26,1.7974e-26,8.4787e-27,6.8973e-27,2.685e-27,2.0644e-27,1.2977e-27,1.0114e-27,9.3287e-28,6.0001e-28,5.6668e-28,5.0003e-28,3.803e-28,2.2527e-28 1,0.01774,0.020382,0.020523,0.021391,0.02208,0.023015,0.024928,0.03004,0.033739,0.03434,0.037603,0.038161,0.040444,0.046488,0.048534,0.05,0.056783,0.058022,0.059422,0.064328,0.064875,0.065191,0.069195,0.071651,0.071732,0.07665,0.077111,0.079431,0.07974,0.080042,0.097433,0.11669,0.11857,0.12485,0.13066,0.13531,0.14099,0.14782,0.16042,0.16768,0.17999,0.19637,0.19793,0.20128,0.20441,0.22125,0.22127,0.26511,0.26856,0.2705,0.28481,0.28588,0.31533,0.32736,0.33244,0.34374,0.35103,0.36372,0.3677,0.39904,0.41897,0.48412,0.50256,0.50877,0.51993,0.55087,0.55725,0.56292,0.58966,0.61479,0.62409,0.6317,0.6592,0.69847,0.73892,0.76541,0.77088,0.81792,0.83337,0.84041,0.84351,0.85581,0.90225,0.90362,0.91092,0.92199,0.92409,0.93859,0.97113,0.97148,0.97852,0.98081,0.99788,0.99949,0.99956,1,0.9992,0.99916,0.99903,0.99767,0.99765,0.99592,0.99512,0.97604,0.96331,0.96283,0.94523,0.93999,0.93146,0.92712,0.92451,0.92158,0.92061,0.918,0.90714,0.90584,0.90314,0.90089,0.88331,0.86209,0.83288,0.82138,0.79623,0.76702,0.75441,0.74784,0.67294,0.66409,0.65756,0.64458,0.62804,0.61368,0.60202,0.59994,0.59864,0.58396,0.54554,0.54273,0.52775,0.50474,0.49215,0.49011,0.42037,0.41965,0.40638,0.38101,0.37647,0.3598,0.35592,0.32941,0.31272,0.27667,0.27584,0.23799,0.2339,0.2326,0.21031,0.20894,0.20131,0.19156,0.18858,0.18635,0.17775,0.17635,0.17545,0.16889,0.16664,0.16605,0.16081,0.15896,0.14898,0.13347,0.13084,0.13015,0.12374,0.12117,0.11111,0.095063,0.090484,0.0836,0.081177,0.074751,0.068777,0.068307,0.067945,0.067903,0.066236,0.066096,0.061099,0.058912,0.054978,0.054808,0.053786,0.047605,0.047435,0.044718,0.041789,0.036966,0.036368,0.034708,0.034345,0.033443,0.031978,0.02984,0.029783,0.025396,0.021098,0.020681,0.020228,0.020089,0.017921,0.016691,0.013065,0.012896,0.012561,0.012014,0.010165,0.0085146,0.0069896,0.0065822,0.0063496,0.005792,0.0048001,0.0044153,0.0039583,0.0033401,0.0028793,0.0028028,0.0020933,0.0020135,0.001985,0.001852,0.0018014,0.0014412,0.0013083,0.001272,0.0012684,0.0011956,0.0011035,0.0010631,0.0010456,0.0007791,0.00077881,0.00059459,0.00043434,0.00032329,0.00024523,0.00021733,0.00021053,0.00019541,0.00018305,0.0001568,0.00015414,0.00011397,0.00010552,9.037e-05,7.4426e-05,6.6108e-05,6.5226e-05,5.9202e-05,5.5465e-05,4.7219e-05,3.709e-05,3.6254e-05,3.2576e-05,2.749e-05,2.3928e-05,2.3773e-05,1.4639e-05,1.3512e-05,1.3e-05,1.1773e-05,1.1181e-05,1.0305e-05,9.0457e-06,8.5806e-06,7.9705e-06,7.0758e-06,6.061e-06,5.2249e-06,5.1466e-06,4.2887e-06,3.8014e-06,3.4167e-06,2.677e-06,2.3931e-06,2.2974e-06,1.9866e-06,1.9692e-06,1.8472e-06,1.7957e-06,1.2324e-06,1.1182e-06,1.0766e-06,9.0518e-07,8.1817e-07,8.0569e-07,6.3549e-07,4.0103e-07,3.4928e-07,3.252e-07,2.7521e-07,2.7127e-07,2.2463e-07,2.2002e-07,1.7224e-07,1.4904e-07,1.1128e-07,1.0836e-07,1.0569e-07,1.0423e-07,9.9585e-08,9.5945e-08,9.3789e-08,7.3759e-08,7.013e-08,4.332e-08,3.6817e-08,3.3042e-08,3.1654e-08,2.2132e-08,2.1993e-08,1.9531e-08,1.8475e-08,1.3956e-08,1.3832e-08,1.3543e-08,1.0976e-08,1.0355e-08,1.0142e-08,9.521e-09,8.7733e-09,8.1193e-09,7.7985e-09,5.2366e-09,5.1633e-09,4.185e-09,3.0472e-09,2.2559e-09,1.4801e-09,1.4712e-09,1.2655e-09,1.0462e-09,8.1279e-10,8.1051e-10,7.4244e-10,4.9039e-10,4.4514e-10,4.4042e-10,2.6853e-10,2.4074e-10,2.2602e-10,1.8604e-10,1.5328e-10,1.0709e-10,1.0122e-10,7.7046e-11,4.162e-11,4.1277e-11,3.9235e-11,3.5365e-11,3.2594e-11,2.947e-11,2.616e-11,8.5344e-12,6.3388e-12,4.0066e-12,2.8425e-12,2.7947e-12,2.6875e-12,1.6053e-12,1.4226e-12,1.4084e-12,8.5658e-13,3.6664e-13,3.5682e-13,2.7729e-13,2.6318e-13,1.4687e-13,1.2464e-13,8.6996e-14,7.2066e-14,5.8494e-14,5.616e-14,4.3798e-14,4.1916e-14,4.105e-14,2.3257e-14,1.9606e-14,1.8245e-14,1.4434e-14,1.3405e-14,9.5414e-15,8.8276e-15,7.5473e-15,5.1005e-15,5.0816e-15,4.2064e-15,3.946e-15,3.9456e-15,2.5961e-15,2.5619e-15,2.1545e-15,1.7937e-15,1.2011e-15,8.3531e-16,6.4294e-16,4.2323e-16,2.8689e-16,1.7277e-16,1.6923e-16,1.1431e-16,7.8249e-17,6.253e-17,3.4201e-17,2.863e-17,1.9932e-17,1.6077e-17,1.0246e-17,9.7684e-18,8.852e-18,7.046e-18,4.3621e-18,2.6577e-18,2.0418e-18,1.5682e-18,1.366e-18,1.3397e-18,1.0424e-18,7.7938e-19,3.1882e-19,2.5094e-19,2.1988e-19,1.6414e-19,1.638e-19,1.2272e-19,1.1838e-19,9.7268e-20,8.3046e-20,4.8678e-20,4.5047e-20,2.9616e-20,2.0013e-20,5.5039e-21,4.3104e-21,3.8297e-21,2.8073e-21,2.0959e-21,1.8752e-21,1.5009e-21,1.2787e-21,1.0479e-21,7.5358e-22,7.5225e-22,4.1468e-22,3.5381e-22,3.4227e-22,3.3628e-22,1.8283e-22,1.8031e-22,1.6953e-22,1.6184e-22,1.4348e-22,1.175e-22,9.8203e-23,4.414e-23,7.8916e-24,4.7048e-24,4.4941e-24,4.327e-24,3.8273e-24,3.5745e-24,1.8643e-24,1.2115e-24,8.8444e-25,7.4131e-25,5.1226e-25,3.7381e-25,3.5249e-25,2.2604e-25,1.7564e-25,1.2898e-25,7.8393e-26,4.0554e-26,3.8878e-26,3.1078e-26,2.6597e-26,2.4799e-26,1.1722e-26,9.5409e-27,3.7235e-27,2.8649e-27,1.8031e-27,1.4063e-27,1.2973e-27,8.3541e-28,7.8912e-28,6.9655e-28,5.3015e-28,3.1445e-28 1,0.015818,0.018211,0.018338,0.019125,0.01975,0.020599,0.022337,0.026993,0.03037,0.030921,0.033907,0.034417,0.03651,0.042059,0.043941,0.04529,0.051543,0.052687,0.053979,0.058515,0.059021,0.059314,0.063021,0.065298,0.065373,0.069936,0.070364,0.07252,0.072807,0.073088,0.089286,0.1073,0.10906,0.11495,0.12041,0.12479,0.13013,0.13657,0.14846,0.15532,0.16698,0.18252,0.184,0.18719,0.19017,0.2062,0.20622,0.24815,0.25146,0.25331,0.26706,0.26809,0.29646,0.30808,0.31299,0.32392,0.33098,0.34329,0.34715,0.37763,0.39707,0.46093,0.47909,0.48521,0.49623,0.52685,0.53318,0.53881,0.5654,0.59048,0.59978,0.6074,0.635,0.6746,0.71566,0.74271,0.7483,0.79675,0.81279,0.82012,0.82334,0.8362,0.88528,0.88675,0.89456,0.90649,0.90876,0.92455,0.96098,0.96139,0.9696,0.97232,0.99448,0.9974,0.99757,0.9992,1,1,0.99999,0.9996,0.9996,0.99873,0.99827,0.98391,0.97314,0.97273,0.95727,0.95257,0.94487,0.94094,0.93856,0.93588,0.93499,0.9326,0.9226,0.92139,0.91889,0.91681,0.90041,0.88041,0.85263,0.84162,0.81742,0.78911,0.77683,0.77042,0.69683,0.68806,0.6816,0.66872,0.65228,0.63797,0.62633,0.62425,0.62295,0.60826,0.5697,0.56687,0.55178,0.52854,0.5158,0.51374,0.44279,0.44206,0.4285,0.4025,0.39785,0.38072,0.37673,0.34941,0.33217,0.29479,0.29393,0.25451,0.25024,0.24889,0.22556,0.22412,0.21612,0.20588,0.20275,0.2004,0.19135,0.18988,0.18892,0.18201,0.17963,0.17901,0.17348,0.17153,0.16097,0.14454,0.14174,0.14101,0.1342,0.13146,0.12076,0.10362,0.098715,0.091336,0.088736,0.081831,0.075401,0.074895,0.074504,0.074459,0.072663,0.072512,0.067119,0.064757,0.060503,0.060319,0.059213,0.052513,0.052328,0.049378,0.046194,0.040941,0.04029,0.038478,0.038082,0.037098,0.035496,0.033158,0.033096,0.028288,0.023564,0.023105,0.022607,0.022453,0.020062,0.018705,0.01469,0.014503,0.014132,0.013525,0.011469,0.0096287,0.0079243,0.0074681,0.0072074,0.0065821,0.0054675,0.0050344,0.0045193,0.0038213,0.0032999,0.0032131,0.0024079,0.0023171,0.0022847,0.0021333,0.0020757,0.0016648,0.0015128,0.0014714,0.0014672,0.0013839,0.0012784,0.0012322,0.0012121,0.00090597,0.00090564,0.00069338,0.00050814,0.00037936,0.00028855,0.00025602,0.00024809,0.00023044,0.000216,0.0001853,0.00018218,0.00013509,0.00012517,0.00010735,8.857e-05,7.8757e-05,7.7715e-05,7.0601e-05,6.6183e-05,5.6426e-05,4.4417e-05,4.3425e-05,3.9056e-05,3.3007e-05,2.8766e-05,2.8581e-05,1.7673e-05,1.6323e-05,1.5711e-05,1.424e-05,1.3529e-05,1.2478e-05,1.0965e-05,1.0406e-05,9.6716e-06,8.5944e-06,7.3711e-06,6.3619e-06,6.2675e-06,5.2304e-06,4.6406e-06,4.1745e-06,3.2771e-06,2.9322e-06,2.8158e-06,2.4377e-06,2.4165e-06,2.2679e-06,2.2052e-06,1.5178e-06,1.3782e-06,1.3273e-06,1.1175e-06,1.0108e-06,9.9551e-07,7.8662e-07,4.981e-07,4.3427e-07,4.0454e-07,3.4278e-07,3.3791e-07,2.8019e-07,2.7449e-07,2.1526e-07,1.8645e-07,1.395e-07,1.3587e-07,1.3255e-07,1.3073e-07,1.2494e-07,1.2041e-07,1.1772e-07,9.2735e-08,8.8203e-08,5.4667e-08,4.6512e-08,4.1774e-08,4.0031e-08,2.8057e-08,2.7882e-08,2.4781e-08,2.3449e-08,1.7746e-08,1.759e-08,1.7226e-08,1.398e-08,1.3193e-08,1.2924e-08,1.2138e-08,1.1191e-08,1.0362e-08,9.9551e-09,6.7022e-09,6.6089e-09,5.3641e-09,3.9137e-09,2.9029e-09,1.9096e-09,1.8982e-09,1.6344e-09,1.3528e-09,1.0526e-09,1.0497e-09,9.6205e-10,6.3707e-10,5.7862e-10,5.7252e-10,3.5013e-10,3.141e-10,2.9501e-10,2.431e-10,2.0053e-10,1.404e-10,1.3275e-10,1.0121e-10,5.4869e-11,5.4419e-11,5.1742e-11,4.6667e-11,4.303e-11,3.8928e-11,3.4581e-11,1.1353e-11,8.4465e-12,5.3525e-12,3.8045e-12,3.7409e-12,3.5982e-12,2.1554e-12,1.9113e-12,1.8923e-12,1.154e-12,4.9618e-13,4.8296e-13,3.7582e-13,3.5679e-13,1.9973e-13,1.6964e-13,1.1862e-13,9.8361e-14,7.9923e-14,7.675e-14,5.9931e-14,5.7369e-14,5.6191e-14,3.1927e-14,2.6938e-14,2.5077e-14,1.9862e-14,1.8453e-14,1.3157e-14,1.2178e-14,1.0419e-14,7.0552e-15,7.0292e-15,5.824e-15,5.4652e-15,5.4647e-15,3.6029e-15,3.5557e-15,2.9928e-15,2.4939e-15,1.6732e-15,1.1657e-15,8.9834e-16,5.9253e-16,4.0241e-16,2.4292e-16,2.3796e-16,1.6103e-16,1.1043e-16,8.8335e-17,4.845e-17,4.0592e-17,2.8307e-17,2.2854e-17,1.4595e-17,1.3918e-17,1.2618e-17,1.0054e-17,6.2376e-18,3.8088e-18,2.9296e-18,2.2527e-18,1.9635e-18,1.9258e-18,1.5001e-18,1.123e-18,4.6119e-19,3.6337e-19,3.1858e-19,2.3811e-19,2.3763e-19,1.7825e-19,1.7198e-19,1.4143e-19,1.2083e-19,7.0986e-20,6.5712e-20,4.3279e-20,2.9294e-20,8.1e-21,6.35e-21,5.6447e-21,4.143e-21,3.0968e-21,2.7719e-21,2.2207e-21,1.8932e-21,1.5528e-21,1.1181e-21,1.1162e-21,6.1677e-22,5.2657e-22,5.0947e-22,5.0058e-22,2.7283e-22,2.6908e-22,2.5306e-22,2.4162e-22,2.1432e-22,1.7565e-22,1.4691e-22,6.6242e-23,1.1923e-23,7.1227e-24,6.8048e-24,6.5528e-24,5.7988e-24,5.4172e-24,2.8325e-24,1.8437e-24,1.3476e-24,1.1303e-24,7.8213e-25,5.7141e-25,5.3896e-25,3.4619e-25,2.6925e-25,1.9796e-25,1.2054e-25,6.251e-26,5.9935e-26,4.7951e-26,4.1061e-26,3.8295e-26,1.8151e-26,1.4785e-26,5.79e-27,4.4591e-27,2.8111e-27,2.1944e-27,2.025e-27,1.3061e-27,1.2339e-27,1.0897e-27,8.3018e-28,4.9333e-28 1,0.015782,0.01817,0.018297,0.019082,0.019706,0.020553,0.022288,0.026936,0.030307,0.030856,0.033837,0.034346,0.036436,0.041975,0.043854,0.045201,0.051444,0.052586,0.053876,0.058405,0.05891,0.059202,0.062904,0.065177,0.065252,0.069808,0.070236,0.072388,0.072675,0.072956,0.089131,0.10712,0.10888,0.11476,0.12022,0.12459,0.12993,0.13635,0.14823,0.15509,0.16673,0.18225,0.18373,0.18692,0.18989,0.20591,0.20593,0.24782,0.25113,0.25298,0.26672,0.26774,0.29609,0.3077,0.31261,0.32354,0.33059,0.34289,0.34675,0.37722,0.39664,0.46048,0.47863,0.48475,0.49577,0.52638,0.53271,0.53834,0.56492,0.59,0.5993,0.60692,0.63452,0.67413,0.7152,0.74225,0.74785,0.79633,0.81237,0.81971,0.82294,0.83581,0.88493,0.8864,0.89423,0.90617,0.90844,0.92426,0.96076,0.96117,0.96941,0.97213,0.99439,0.99735,0.99752,0.99916,1,1,0.99999,0.99962,0.99962,0.99877,0.99832,0.98405,0.97332,0.97291,0.95749,0.95281,0.94513,0.9412,0.93882,0.93615,0.93526,0.93288,0.92289,0.92169,0.91919,0.91711,0.90073,0.88077,0.85301,0.84201,0.81783,0.78954,0.77727,0.77086,0.6973,0.68853,0.68207,0.6692,0.65275,0.63845,0.62681,0.62473,0.62343,0.60874,0.57018,0.56735,0.55226,0.52901,0.51627,0.51421,0.44324,0.44251,0.42894,0.40293,0.39828,0.38114,0.37715,0.34981,0.33256,0.29516,0.29429,0.25485,0.25057,0.24922,0.22587,0.22443,0.21642,0.20617,0.20304,0.20069,0.19162,0.19015,0.18919,0.18227,0.17989,0.17928,0.17374,0.17178,0.16122,0.14476,0.14197,0.14123,0.13441,0.13167,0.12095,0.10379,0.098884,0.091495,0.088891,0.081976,0.075537,0.07503,0.074639,0.074594,0.072795,0.072644,0.067243,0.064877,0.060617,0.060432,0.059324,0.052614,0.052429,0.049474,0.046285,0.041023,0.040371,0.038556,0.03816,0.037173,0.035569,0.033226,0.033164,0.028348,0.023615,0.023156,0.022656,0.022502,0.020107,0.018746,0.014724,0.014536,0.014164,0.013556,0.011496,0.0096519,0.0079438,0.0074866,0.0072253,0.0065986,0.0054815,0.0050474,0.0045311,0.0038314,0.0033087,0.0032218,0.0024145,0.0023235,0.002291,0.0021392,0.0020814,0.0016695,0.0015172,0.0014756,0.0014714,0.0013879,0.0012821,0.0012357,0.0012156,0.00090865,0.00090832,0.00069547,0.00050971,0.00038055,0.00028947,0.00025685,0.00024889,0.00023119,0.00021671,0.00018591,0.00018278,0.00013554,0.00012559,0.00010772,8.8873e-05,7.9029e-05,7.7983e-05,7.0846e-05,6.6414e-05,5.6624e-05,4.4575e-05,4.358e-05,3.9195e-05,3.3126e-05,2.887e-05,2.8684e-05,1.7738e-05,1.6384e-05,1.5769e-05,1.4293e-05,1.358e-05,1.2525e-05,1.1006e-05,1.0445e-05,9.7085e-06,8.6273e-06,7.3995e-06,6.3866e-06,6.2918e-06,5.2509e-06,4.6588e-06,4.191e-06,3.2902e-06,2.9439e-06,2.8271e-06,2.4475e-06,2.4262e-06,2.2771e-06,2.2141e-06,1.5241e-06,1.3838e-06,1.3328e-06,1.1221e-06,1.015e-06,9.9967e-07,7.8992e-07,5.0023e-07,4.3613e-07,4.0628e-07,3.4426e-07,3.3937e-07,2.8141e-07,2.7568e-07,2.162e-07,1.8727e-07,1.4012e-07,1.3648e-07,1.3314e-07,1.3131e-07,1.255e-07,1.2095e-07,1.1825e-07,9.3154e-08,8.8602e-08,5.4917e-08,4.6727e-08,4.1968e-08,4.0217e-08,2.8188e-08,2.8013e-08,2.4897e-08,2.356e-08,1.7831e-08,1.7674e-08,1.7308e-08,1.4047e-08,1.3256e-08,1.2986e-08,1.2196e-08,1.1245e-08,1.0412e-08,1.0003e-08,6.7348e-09,6.6411e-09,5.3903e-09,3.933e-09,2.9174e-09,1.9192e-09,1.9078e-09,1.6426e-09,1.3597e-09,1.058e-09,1.055e-09,9.6697e-10,6.4036e-10,5.8162e-10,5.7549e-10,3.5196e-10,3.1575e-10,2.9656e-10,2.4439e-10,2.0159e-10,1.4115e-10,1.3346e-10,1.0175e-10,5.5169e-11,5.4716e-11,5.2025e-11,4.6922e-11,4.3266e-11,3.9142e-11,3.4771e-11,1.1417e-11,8.4944e-12,5.3831e-12,3.8264e-12,3.7624e-12,3.619e-12,2.1679e-12,1.9224e-12,1.9033e-12,1.1608e-12,4.9915e-13,4.8585e-13,3.7808e-13,3.5893e-13,2.0094e-13,1.7067e-13,1.1935e-13,9.8965e-14,8.0416e-14,7.7224e-14,6.0303e-14,5.7725e-14,5.6539e-14,3.2127e-14,2.7107e-14,2.5234e-14,1.9988e-14,1.8569e-14,1.3241e-14,1.2255e-14,1.0486e-14,7.1004e-15,7.0743e-15,5.8615e-15,5.5003e-15,5.4998e-15,3.6263e-15,3.5787e-15,3.0122e-15,2.5101e-15,1.6841e-15,1.1733e-15,9.0428e-16,5.9648e-16,4.051e-16,2.4455e-16,2.3957e-16,1.6212e-16,1.1118e-16,8.8939e-17,4.8784e-17,4.0872e-17,2.8503e-17,2.3013e-17,1.4697e-17,1.4015e-17,1.2706e-17,1.0124e-17,6.2817e-18,3.8359e-18,2.9505e-18,2.2688e-18,1.9776e-18,1.9397e-18,1.5109e-18,1.1311e-18,4.6456e-19,3.6603e-19,3.2092e-19,2.3986e-19,2.3938e-19,1.7957e-19,1.7325e-19,1.4247e-19,1.2172e-19,7.1516e-20,6.6203e-20,4.3603e-20,2.9515e-20,8.1619e-21,6.3987e-21,5.688e-21,4.1749e-21,3.1207e-21,2.7934e-21,2.238e-21,1.9079e-21,1.5648e-21,1.1269e-21,1.1249e-21,6.2162e-22,5.3072e-22,5.1348e-22,5.0452e-22,2.7499e-22,2.7121e-22,2.5506e-22,2.4353e-22,2.1602e-22,1.7705e-22,1.4808e-22,6.6774e-23,1.2021e-23,7.1811e-24,6.8607e-24,6.6066e-24,5.8465e-24,5.4618e-24,2.856e-24,1.8591e-24,1.3588e-24,1.1397e-24,7.8868e-25,5.7621e-25,5.4348e-25,3.4911e-25,2.7153e-25,1.9963e-25,1.2157e-25,6.3045e-26,6.0449e-26,4.8363e-26,4.1414e-26,3.8624e-26,1.8308e-26,1.4913e-26,5.8406e-27,4.4982e-27,2.8358e-27,2.2138e-27,2.0429e-27,1.3176e-27,1.2449e-27,1.0993e-27,8.3755e-28,4.9773e-28 1,0.015636,0.018004,0.01813,0.018909,0.019528,0.020368,0.02209,0.026701,0.030048,0.030593,0.033552,0.034058,0.036132,0.041634,0.043499,0.044837,0.051039,0.052173,0.053455,0.057955,0.058457,0.058747,0.062425,0.064685,0.064759,0.069287,0.069712,0.071852,0.072137,0.072416,0.088497,0.10639,0.10814,0.11399,0.11942,0.12376,0.12908,0.13547,0.14729,0.15412,0.16571,0.18116,0.18264,0.18581,0.18877,0.20472,0.20475,0.24648,0.24978,0.25162,0.26531,0.26634,0.29459,0.30617,0.31106,0.32196,0.329,0.34126,0.34512,0.37551,0.3949,0.45862,0.47674,0.48286,0.49386,0.52444,0.53077,0.53639,0.56296,0.58803,0.59733,0.60495,0.63256,0.67218,0.7133,0.74039,0.746,0.79458,0.81067,0.81803,0.82127,0.83418,0.88351,0.88498,0.89285,0.90486,0.90715,0.92307,0.95988,0.96029,0.96862,0.97138,0.99405,0.9971,0.99729,0.99903,0.99999,0.99999,1,0.99971,0.9997,0.99893,0.9985,0.98461,0.97405,0.97365,0.9584,0.95377,0.94615,0.94226,0.9399,0.93725,0.93637,0.934,0.92409,0.92289,0.92041,0.91835,0.90207,0.8822,0.85457,0.84361,0.81951,0.7913,0.77906,0.77267,0.69922,0.69046,0.684,0.67114,0.65471,0.64041,0.62877,0.6267,0.6254,0.61071,0.57214,0.56931,0.55421,0.53095,0.51819,0.51613,0.44508,0.44434,0.43075,0.4047,0.40003,0.38286,0.37886,0.35145,0.33416,0.29666,0.29579,0.25622,0.25193,0.25057,0.22713,0.22569,0.21765,0.20736,0.20421,0.20186,0.19275,0.19128,0.19032,0.18337,0.18098,0.18036,0.1748,0.17283,0.16222,0.14569,0.14288,0.14214,0.13529,0.13253,0.12176,0.10451,0.099576,0.092146,0.089527,0.082573,0.076096,0.075586,0.075192,0.075147,0.073337,0.073185,0.067751,0.065371,0.061084,0.060898,0.059783,0.05303,0.052843,0.049869,0.046659,0.041361,0.040704,0.038876,0.038477,0.037484,0.035868,0.033509,0.033446,0.028594,0.023826,0.023363,0.022859,0.022704,0.02029,0.018919,0.014863,0.014674,0.014299,0.013686,0.011608,0.0097478,0.0080243,0.0075629,0.0072993,0.0066668,0.0055392,0.0051009,0.0045796,0.0038731,0.0033452,0.0032573,0.0024419,0.0023499,0.0023171,0.0021637,0.0021053,0.001689,0.001535,0.001493,0.0014888,0.0014043,0.0012974,0.0012505,0.0012301,0.00091975,0.00091942,0.00070413,0.00051619,0.00038548,0.00029329,0.00026025,0.0002522,0.00023428,0.00021961,0.00018842,0.00018526,0.00013741,0.00012733,0.00010922,9.0127e-05,8.015e-05,7.9091e-05,7.1857e-05,6.7365e-05,5.7442e-05,4.5227e-05,4.4218e-05,3.9772e-05,3.3618e-05,2.9301e-05,2.9113e-05,1.8009e-05,1.6635e-05,1.6012e-05,1.4514e-05,1.379e-05,1.2719e-05,1.1178e-05,1.0609e-05,9.8609e-06,8.7635e-06,7.5171e-06,6.4888e-06,6.3925e-06,5.3355e-06,4.7343e-06,4.2592e-06,3.3442e-06,2.9925e-06,2.8738e-06,2.4882e-06,2.4666e-06,2.315e-06,2.2511e-06,1.5499e-06,1.4074e-06,1.3555e-06,1.1413e-06,1.0325e-06,1.0169e-06,8.0362e-07,5.0905e-07,4.4385e-07,4.135e-07,3.504e-07,3.4543e-07,2.8647e-07,2.8064e-07,2.2012e-07,1.9068e-07,1.427e-07,1.3899e-07,1.3559e-07,1.3373e-07,1.2782e-07,1.2318e-07,1.2043e-07,9.4889e-08,9.0255e-08,5.5957e-08,4.7616e-08,4.2768e-08,4.0985e-08,2.8732e-08,2.8554e-08,2.538e-08,2.4017e-08,1.8179e-08,1.8019e-08,1.7646e-08,1.4324e-08,1.3518e-08,1.3243e-08,1.2437e-08,1.1467e-08,1.0619e-08,1.0202e-08,6.8701e-09,6.7746e-09,5.4993e-09,4.0132e-09,2.9773e-09,1.9591e-09,1.9474e-09,1.6769e-09,1.3881e-09,1.0803e-09,1.0773e-09,9.8739e-10,6.5402e-10,5.9405e-10,5.878e-10,3.5958e-10,3.2259e-10,3.03e-10,2.4972e-10,2.0601e-10,1.4427e-10,1.3641e-10,1.0402e-10,5.6412e-11,5.595e-11,5.3199e-11,4.7984e-11,4.4247e-11,4.0031e-11,3.5563e-11,1.1683e-11,8.6934e-12,5.5104e-12,3.9175e-12,3.852e-12,3.7052e-12,2.2201e-12,1.9688e-12,1.9492e-12,1.189e-12,5.1149e-13,4.9786e-13,3.8747e-13,3.6786e-13,2.0598e-13,1.7497e-13,1.2237e-13,1.0148e-13,8.2467e-14,7.9195e-14,6.1848e-14,5.9206e-14,5.799e-14,3.2959e-14,2.7811e-14,2.589e-14,2.0509e-14,1.9054e-14,1.3588e-14,1.2577e-14,1.0762e-14,7.2888e-15,7.262e-15,6.0174e-15,5.6468e-15,5.6463e-15,3.7235e-15,3.6747e-15,3.0932e-15,2.5778e-15,1.7298e-15,1.2053e-15,9.2903e-16,6.129e-16,4.1631e-16,2.5137e-16,2.4625e-16,1.6667e-16,1.1431e-16,9.1454e-17,5.0175e-17,4.204e-17,2.9321e-17,2.3675e-17,1.5123e-17,1.4421e-17,1.3075e-17,1.0419e-17,6.4657e-18,3.9489e-18,3.0377e-18,2.3361e-18,2.0364e-18,1.9973e-18,1.556e-18,1.165e-18,4.7861e-19,3.7714e-19,3.3067e-19,2.4718e-19,2.4668e-19,1.8506e-19,1.7855e-19,1.4684e-19,1.2547e-19,7.3727e-20,6.8252e-20,4.496e-20,3.0437e-20,8.4205e-21,6.602e-21,5.8689e-21,4.3081e-21,3.2206e-21,2.8829e-21,2.3099e-21,1.9694e-21,1.6153e-21,1.1633e-21,1.1613e-21,6.4187e-22,5.4803e-22,5.3024e-22,5.21e-22,2.8402e-22,2.8012e-22,2.6345e-22,2.5154e-22,2.2313e-22,1.8289e-22,1.5297e-22,6.8999e-23,1.2428e-23,7.4257e-24,7.0944e-24,6.8318e-24,6.0459e-24,5.6483e-24,2.9541e-24,1.9232e-24,1.4058e-24,1.1792e-24,8.161e-25,5.963e-25,5.6244e-25,3.6134e-25,2.8106e-25,2.0666e-25,1.2586e-25,6.5287e-26,6.2599e-26,5.0086e-26,4.2892e-26,4.0004e-26,1.8966e-26,1.545e-26,6.0526e-27,4.6618e-27,2.9394e-27,2.2948e-27,2.1177e-27,1.366e-27,1.2906e-27,1.1398e-27,8.6844e-28,5.1617e-28 1,0.014578,0.016806,0.016925,0.017658,0.018241,0.019033,0.020656,0.025011,0.028176,0.028692,0.031494,0.031973,0.033939,0.039159,0.040931,0.042202,0.0481,0.04918,0.050401,0.054688,0.055166,0.055443,0.058951,0.061107,0.061178,0.065502,0.065908,0.067952,0.068225,0.068491,0.083882,0.10105,0.10273,0.10835,0.11357,0.11776,0.12287,0.12904,0.14044,0.14703,0.15823,0.17319,0.17462,0.17769,0.18056,0.19603,0.19606,0.23663,0.23984,0.24164,0.25499,0.25599,0.28358,0.2949,0.29969,0.31036,0.31725,0.32928,0.33306,0.3629,0.38198,0.44484,0.46278,0.46883,0.47973,0.51008,0.51636,0.52195,0.54839,0.57339,0.58267,0.59028,0.6179,0.65766,0.69905,0.72642,0.7321,0.78143,0.79783,0.80535,0.80866,0.82188,0.87268,0.87421,0.88237,0.89487,0.89725,0.91391,0.95298,0.95342,0.96244,0.96545,0.99113,0.99498,0.99522,0.99767,0.9996,0.99962,0.99971,1,1,0.99975,0.99953,0.98853,0.97918,0.97882,0.9649,0.96061,0.95352,0.94987,0.94766,0.94517,0.94434,0.94211,0.93274,0.93161,0.92925,0.92729,0.91176,0.89269,0.86598,0.85534,0.83187,0.80427,0.79226,0.78598,0.71346,0.70478,0.69837,0.6856,0.66925,0.65501,0.6434,0.64134,0.64004,0.62537,0.58678,0.58395,0.5688,0.54544,0.53261,0.53053,0.45885,0.45811,0.44436,0.41796,0.41323,0.39579,0.39173,0.36386,0.34624,0.30797,0.30708,0.26657,0.26217,0.26078,0.23672,0.23524,0.22697,0.21639,0.21315,0.21072,0.20134,0.19982,0.19883,0.19166,0.1892,0.18856,0.18282,0.18079,0.16983,0.15273,0.14982,0.14905,0.14195,0.1391,0.12792,0.10999,0.10486,0.097115,0.094386,0.08713,0.080366,0.079834,0.079422,0.079375,0.077483,0.077325,0.071641,0.06915,0.06466,0.064466,0.063297,0.056215,0.056019,0.052897,0.049524,0.043952,0.04326,0.041336,0.040915,0.039869,0.038166,0.035678,0.035612,0.03049,0.025447,0.024957,0.024423,0.024259,0.021701,0.020247,0.015939,0.015738,0.015339,0.014686,0.012473,0.010489,0.0086479,0.0081544,0.0078723,0.0071952,0.0059866,0.0055163,0.0049565,0.004197,0.0036287,0.0035342,0.0026548,0.0025554,0.00252,0.0023543,0.0022912,0.0018409,0.0016742,0.0016286,0.0016241,0.0015325,0.0014166,0.0013657,0.0013436,0.0010065,0.0010062,0.00077188,0.00056696,0.00042415,0.00032325,0.00028705,0.00027822,0.00025856,0.00024246,0.00020822,0.00020474,0.00015212,0.00014102,0.00012107,0.00010001,8.9002e-05,8.7832e-05,7.9842e-05,7.4877e-05,6.3903e-05,5.038e-05,4.9261e-05,4.4334e-05,3.7508e-05,3.2716e-05,3.2507e-05,2.0159e-05,1.8628e-05,1.7934e-05,1.6264e-05,1.5457e-05,1.4263e-05,1.2543e-05,1.1907e-05,1.1072e-05,9.8456e-06,8.4518e-06,7.3009e-06,7.1931e-06,6.0091e-06,5.3351e-06,4.8022e-06,3.775e-06,3.3798e-06,3.2464e-06,2.8127e-06,2.7884e-06,2.6179e-06,2.5459e-06,1.7559e-06,1.5952e-06,1.5366e-06,1.2949e-06,1.1719e-06,1.1543e-06,9.1322e-07,5.7967e-07,5.0574e-07,4.713e-07,3.9968e-07,3.9403e-07,3.2705e-07,3.2042e-07,2.5159e-07,2.1808e-07,1.6341e-07,1.5918e-07,1.553e-07,1.5318e-07,1.4643e-07,1.4115e-07,1.3801e-07,1.0885e-07,1.0356e-07,6.4333e-08,5.478e-08,4.9225e-08,4.7181e-08,3.3124e-08,3.2919e-08,2.9274e-08,2.7709e-08,2.0997e-08,2.0813e-08,2.0384e-08,1.656e-08,1.5632e-08,1.5315e-08,1.4387e-08,1.327e-08,1.2291e-08,1.1811e-08,7.9661e-09,7.8557e-09,6.3821e-09,4.6632e-09,3.4635e-09,2.2827e-09,2.2691e-09,1.955e-09,1.6195e-09,1.2616e-09,1.2581e-09,1.1535e-09,7.652e-10,6.9529e-10,6.88e-10,4.2164e-10,3.7842e-10,3.5552e-10,2.9321e-10,2.4205e-10,1.6973e-10,1.6052e-10,1.2252e-10,6.659e-11,6.6046e-11,6.281e-11,5.6673e-11,5.2274e-11,4.7311e-11,4.2047e-11,1.3867e-11,1.0328e-11,6.5568e-12,4.6668e-12,4.589e-12,4.4146e-12,2.6496e-12,2.3507e-12,2.3274e-12,1.422e-12,6.1339e-13,5.9711e-13,4.6508e-13,4.4161e-13,2.4774e-13,2.1055e-13,1.4742e-13,1.2232e-13,9.947e-14,9.5535e-14,7.4667e-14,7.1486e-14,7.0023e-14,3.9867e-14,3.3658e-14,3.134e-14,2.4844e-14,2.3087e-14,1.6481e-14,1.5258e-14,1.3062e-14,8.857e-15,8.8245e-15,7.3163e-15,6.867e-15,6.8664e-15,4.5337e-15,4.4744e-15,3.7683e-15,3.1421e-15,2.1109e-15,1.4725e-15,1.1358e-15,7.5021e-16,5.1015e-16,3.0847e-16,3.0221e-16,2.0477e-16,1.4059e-16,1.1255e-16,6.1854e-17,5.1851e-17,3.6201e-17,2.9247e-17,1.8705e-17,1.784e-17,1.6178e-17,1.29e-17,8.0158e-18,4.9022e-18,3.7737e-18,2.9042e-18,2.5324e-18,2.484e-18,1.9364e-18,1.4509e-18,5.975e-19,4.7111e-19,4.1321e-19,3.0911e-19,3.085e-19,2.3161e-19,2.2348e-19,1.8389e-19,1.5718e-19,9.2491e-20,8.564e-20,5.6474e-20,3.827e-20,1.0622e-20,8.3332e-21,7.4101e-21,5.4437e-21,4.0724e-21,3.6464e-21,2.9232e-21,2.4933e-21,2.046e-21,1.4747e-21,1.4722e-21,8.1487e-22,6.9602e-22,6.7347e-22,6.6176e-22,3.613e-22,3.5634e-22,3.3518e-22,3.2007e-22,2.8401e-22,2.329e-22,1.9488e-22,8.8071e-23,1.5928e-23,9.5284e-24,9.1043e-24,8.768e-24,7.7617e-24,7.2524e-24,3.7987e-24,2.4755e-24,1.8109e-24,1.5196e-24,1.0526e-24,7.6964e-25,7.2604e-25,4.6691e-25,3.6338e-25,2.6738e-25,1.6303e-25,8.4689e-26,8.121e-26,6.501e-26,5.5691e-26,5.1949e-26,2.467e-26,2.0106e-26,7.8929e-27,6.0827e-27,3.8392e-27,2.9989e-27,2.7679e-27,1.7872e-27,1.6888e-27,1.4918e-27,1.1373e-27,6.7673e-28 1,0.014569,0.016795,0.016914,0.017647,0.01823,0.019021,0.020644,0.024996,0.028159,0.028675,0.031476,0.031954,0.03392,0.039137,0.040909,0.042179,0.048075,0.049154,0.050374,0.05466,0.055138,0.055414,0.058921,0.061076,0.061147,0.065469,0.065875,0.067918,0.068191,0.068457,0.083841,0.10101,0.10268,0.10831,0.11352,0.1177,0.12282,0.12898,0.14038,0.14697,0.15817,0.17312,0.17455,0.17762,0.18049,0.19596,0.19598,0.23654,0.23976,0.24155,0.25489,0.25589,0.28348,0.2948,0.29959,0.31025,0.31715,0.32917,0.33295,0.36279,0.38186,0.44472,0.46265,0.46871,0.47961,0.50995,0.51623,0.52182,0.54826,0.57326,0.58254,0.59015,0.61777,0.65752,0.69892,0.7263,0.73197,0.78131,0.79772,0.80524,0.80855,0.82176,0.87258,0.87411,0.88227,0.89477,0.89716,0.91383,0.95291,0.95336,0.96238,0.9654,0.9911,0.99496,0.9952,0.99765,0.9996,0.99962,0.9997,1,1,0.99976,0.99954,0.98856,0.97922,0.97886,0.96496,0.96067,0.95358,0.94994,0.94773,0.94524,0.94441,0.94218,0.93281,0.93168,0.92933,0.92737,0.91185,0.89278,0.86609,0.85545,0.83198,0.80438,0.79237,0.78609,0.71359,0.70491,0.6985,0.68573,0.66938,0.65514,0.64354,0.64147,0.64017,0.62551,0.58691,0.58408,0.56893,0.54557,0.53274,0.53066,0.45898,0.45823,0.44448,0.41808,0.41335,0.39591,0.39185,0.36397,0.34635,0.30807,0.30718,0.26667,0.26227,0.26087,0.23681,0.23533,0.22706,0.21647,0.21323,0.2108,0.20142,0.1999,0.19891,0.19174,0.18927,0.18863,0.1829,0.18086,0.1699,0.15279,0.14988,0.14911,0.14201,0.13916,0.12798,0.11004,0.1049,0.097161,0.09443,0.087172,0.080406,0.079873,0.079461,0.079414,0.077521,0.077363,0.071677,0.069185,0.064693,0.064498,0.06333,0.056244,0.056048,0.052924,0.04955,0.043975,0.043284,0.041359,0.040938,0.039891,0.038188,0.035698,0.035632,0.030507,0.025462,0.024972,0.024438,0.024274,0.021714,0.020259,0.015949,0.015748,0.015349,0.014695,0.012481,0.010496,0.0086537,0.0081599,0.0078777,0.0072001,0.0059907,0.0055201,0.0049601,0.0042,0.0036314,0.0035367,0.0026568,0.0025574,0.0025219,0.0023561,0.002293,0.0018423,0.0016755,0.0016299,0.0016253,0.0015337,0.0014177,0.0013668,0.0013447,0.0010073,0.001007,0.00077251,0.00056744,0.00042452,0.00032353,0.0002873,0.00027846,0.00025878,0.00024268,0.0002084,0.00020492,0.00015226,0.00014115,0.00012118,0.00010011,8.9086e-05,8.7915e-05,7.9917e-05,7.4948e-05,6.3964e-05,5.0428e-05,4.9309e-05,4.4377e-05,3.7544e-05,3.2748e-05,3.2539e-05,2.018e-05,1.8647e-05,1.7952e-05,1.6281e-05,1.5473e-05,1.4278e-05,1.2556e-05,1.1919e-05,1.1084e-05,9.8559e-06,8.4607e-06,7.3086e-06,7.2007e-06,6.0155e-06,5.3409e-06,4.8074e-06,3.7791e-06,3.3835e-06,3.2499e-06,2.8158e-06,2.7914e-06,2.6207e-06,2.5487e-06,1.7579e-06,1.597e-06,1.5384e-06,1.2963e-06,1.1733e-06,1.1556e-06,9.1427e-07,5.8035e-07,5.0633e-07,4.7185e-07,4.0016e-07,3.945e-07,3.2743e-07,3.2081e-07,2.5189e-07,2.1835e-07,1.6361e-07,1.5937e-07,1.5549e-07,1.5337e-07,1.4661e-07,1.4132e-07,1.3818e-07,1.0898e-07,1.0368e-07,6.4413e-08,5.4849e-08,4.9287e-08,4.724e-08,3.3167e-08,3.2961e-08,2.9312e-08,2.7744e-08,2.1025e-08,2.084e-08,2.0411e-08,1.6582e-08,1.5652e-08,1.5335e-08,1.4406e-08,1.3287e-08,1.2307e-08,1.1826e-08,7.9766e-09,7.8661e-09,6.3907e-09,4.6695e-09,3.4682e-09,2.2858e-09,2.2722e-09,1.9577e-09,1.6218e-09,1.2633e-09,1.2598e-09,1.1551e-09,7.6628e-10,6.9628e-10,6.8897e-10,4.2224e-10,3.7896e-10,3.5603e-10,2.9363e-10,2.424e-10,1.6998e-10,1.6075e-10,1.227e-10,6.6689e-11,6.6145e-11,6.2904e-11,5.6758e-11,5.2352e-11,4.7382e-11,4.211e-11,1.3888e-11,1.0344e-11,6.567e-12,4.6741e-12,4.5962e-12,4.4216e-12,2.6539e-12,2.3544e-12,2.3311e-12,1.4243e-12,6.1439e-13,5.9808e-13,4.6584e-13,4.4233e-13,2.4815e-13,2.109e-13,1.4767e-13,1.2253e-13,9.9637e-14,9.5696e-14,7.4793e-14,7.1607e-14,7.0141e-14,3.9935e-14,3.3716e-14,3.1394e-14,2.4887e-14,2.3127e-14,1.651e-14,1.5285e-14,1.3085e-14,8.8725e-15,8.8399e-15,7.3291e-15,6.879e-15,6.8784e-15,4.5417e-15,4.4823e-15,3.7749e-15,3.1477e-15,2.1147e-15,1.4751e-15,1.1378e-15,7.5157e-16,5.1108e-16,3.0904e-16,3.0276e-16,2.0515e-16,1.4086e-16,1.1276e-16,6.197e-17,5.1948e-17,3.6269e-17,2.9303e-17,1.8741e-17,1.7874e-17,1.6209e-17,1.2925e-17,8.0313e-18,4.9117e-18,3.781e-18,2.9098e-18,2.5374e-18,2.4889e-18,1.9402e-18,1.4538e-18,5.9869e-19,4.7205e-19,4.1404e-19,3.0974e-19,3.0912e-19,2.3208e-19,2.2393e-19,1.8426e-19,1.575e-19,9.268e-20,8.5815e-20,5.6589e-20,3.8349e-20,1.0644e-20,8.3506e-21,7.4256e-21,5.4551e-21,4.081e-21,3.6541e-21,2.9294e-21,2.4986e-21,2.0504e-21,1.4779e-21,1.4753e-21,8.1662e-22,6.9751e-22,6.7492e-22,6.6318e-22,3.6208e-22,3.5711e-22,3.3591e-22,3.2077e-22,2.8462e-22,2.334e-22,1.9531e-22,8.8264e-23,1.5963e-23,9.5498e-24,9.1247e-24,8.7876e-24,7.7791e-24,7.2686e-24,3.8073e-24,2.4812e-24,1.815e-24,1.523e-24,1.055e-24,7.714e-25,7.277e-25,4.6798e-25,3.6422e-25,2.68e-25,1.6341e-25,8.4887e-26,8.14e-26,6.5162e-26,5.5821e-26,5.2071e-26,2.4729e-26,2.0154e-26,7.9117e-27,6.0973e-27,3.8484e-27,3.0061e-27,2.7746e-27,1.7915e-27,1.6928e-27,1.4954e-27,1.1401e-27,6.7838e-28 1,0.013665,0.015771,0.015883,0.016577,0.017129,0.017878,0.019416,0.023545,0.02655,0.02704,0.029704,0.03016,0.032031,0.037003,0.038693,0.039905,0.045535,0.046566,0.047733,0.051832,0.052289,0.052554,0.055911,0.057975,0.058044,0.062186,0.062575,0.064534,0.064796,0.065051,0.079826,0.096348,0.097966,0.10339,0.10842,0.11246,0.1174,0.12335,0.13438,0.14076,0.15161,0.16611,0.1675,0.17048,0.17327,0.1883,0.18833,0.22784,0.23098,0.23273,0.24576,0.24674,0.27371,0.2848,0.28949,0.29995,0.30671,0.31851,0.32222,0.35155,0.37033,0.43237,0.45012,0.45611,0.46691,0.49701,0.50326,0.50881,0.53511,0.56001,0.56927,0.57687,0.60447,0.6443,0.6859,0.7135,0.71923,0.76918,0.78585,0.79351,0.79688,0.81036,0.86244,0.86402,0.87243,0.88536,0.88783,0.90514,0.94622,0.94669,0.95632,0.95956,0.98796,0.99253,0.99282,0.99592,0.99873,0.99877,0.99893,0.99975,0.99976,1,0.99996,0.99162,0.9834,0.98307,0.97039,0.96642,0.95982,0.95641,0.95433,0.95199,0.95121,0.94911,0.94025,0.93917,0.93694,0.93507,0.92026,0.90194,0.87612,0.86579,0.84292,0.81591,0.80412,0.79795,0.72639,0.71778,0.71143,0.69875,0.6825,0.66833,0.65677,0.65471,0.65341,0.63878,0.60021,0.59737,0.5822,0.55876,0.54588,0.5438,0.4716,0.47085,0.45696,0.43026,0.42547,0.40781,0.40369,0.37541,0.35751,0.31854,0.31763,0.27628,0.27178,0.27036,0.24573,0.24422,0.23574,0.22488,0.22156,0.21907,0.20944,0.20787,0.20685,0.19949,0.19695,0.1963,0.1904,0.1883,0.17702,0.15939,0.15639,0.15559,0.14827,0.14532,0.13376,0.1152,0.10988,0.10185,0.099014,0.091477,0.084444,0.083889,0.083461,0.083412,0.081443,0.081278,0.07536,0.072765,0.068083,0.067881,0.066662,0.059268,0.059064,0.055801,0.052274,0.046442,0.045718,0.043702,0.043261,0.042164,0.040379,0.037769,0.0377,0.032319,0.027014,0.026498,0.025936,0.025764,0.023067,0.021533,0.016984,0.016771,0.016349,0.015658,0.013316,0.011212,0.0092567,0.0087321,0.0084321,0.0077117,0.0064246,0.0059232,0.0053261,0.004515,0.0039075,0.0038063,0.0028645,0.002758,0.00272,0.0025423,0.0024746,0.0019909,0.0018117,0.0017627,0.0017578,0.0016593,0.0015346,0.0014798,0.001456,0.0010926,0.0010922,0.00083918,0.0006175,0.00046273,0.00035318,0.00031383,0.00030423,0.00028284,0.00026533,0.00022804,0.00022425,0.00016688,0.00015477,0.00013298,0.00010996,9.7912e-05,9.6632e-05,8.7883e-05,8.2446e-05,7.0419e-05,5.5583e-05,5.4355e-05,4.8944e-05,4.1442e-05,3.6171e-05,3.5941e-05,2.2341e-05,2.0652e-05,1.9885e-05,1.8042e-05,1.7151e-05,1.5832e-05,1.3931e-05,1.3228e-05,1.2305e-05,1.0948e-05,9.4045e-06,8.1293e-06,8.0098e-06,6.6968e-06,5.9489e-06,5.3572e-06,4.2158e-06,3.7763e-06,3.6278e-06,3.1452e-06,3.1181e-06,2.9282e-06,2.8481e-06,1.9675e-06,1.7881e-06,1.7228e-06,1.4528e-06,1.3154e-06,1.2957e-06,1.0261e-06,6.5257e-07,5.6966e-07,5.3102e-07,4.5063e-07,4.4429e-07,3.6904e-07,3.6159e-07,2.842e-07,2.4648e-07,1.849e-07,1.8013e-07,1.7577e-07,1.7337e-07,1.6577e-07,1.598e-07,1.5627e-07,1.2336e-07,1.1739e-07,7.306e-08,6.225e-08,5.596e-08,5.3645e-08,3.7713e-08,3.748e-08,3.3346e-08,3.1568e-08,2.3947e-08,2.3738e-08,2.3251e-08,1.8903e-08,1.7848e-08,1.7487e-08,1.6431e-08,1.516e-08,1.4046e-08,1.3499e-08,9.1176e-09,8.9917e-09,7.3105e-09,5.3475e-09,3.976e-09,2.6243e-09,2.6088e-09,2.2489e-09,1.8642e-09,1.4534e-09,1.4494e-09,1.3293e-09,8.8307e-10,8.0265e-10,7.9425e-10,4.8756e-10,4.3775e-10,4.1135e-10,3.3947e-10,2.8042e-10,1.9687e-10,1.8622e-10,1.4226e-10,7.7473e-11,7.6842e-11,7.3089e-11,6.597e-11,6.0865e-11,5.5103e-11,4.8991e-11,1.6214e-11,1.2088e-11,7.6844e-12,5.4751e-12,5.3841e-12,5.1802e-12,3.114e-12,2.7636e-12,2.7363e-12,1.6744e-12,7.2404e-13,7.0488e-13,5.4943e-13,5.2178e-13,2.9321e-13,2.4931e-13,1.7474e-13,1.4507e-13,1.1804e-13,1.1338e-13,8.8676e-14,8.4909e-14,8.3176e-14,4.7431e-14,4.0063e-14,3.7312e-14,2.9597e-14,2.751e-14,1.9657e-14,1.8202e-14,1.5589e-14,1.0582e-14,1.0543e-14,8.7456e-15,8.21e-15,8.2092e-15,5.4265e-15,5.3557e-15,4.5126e-15,3.7646e-15,2.5319e-15,1.7678e-15,1.3645e-15,9.023e-16,6.142e-16,3.7188e-16,3.6435e-16,2.4713e-16,1.6984e-16,1.3604e-16,7.4879e-17,6.2798e-17,4.3884e-17,3.5474e-17,2.2713e-17,2.1665e-17,1.9652e-17,1.5679e-17,9.7541e-18,5.9726e-18,4.6007e-18,3.5428e-18,3.0904e-18,3.0315e-18,2.3646e-18,1.7731e-18,7.3173e-19,5.7728e-19,5.0648e-19,3.7916e-19,3.784e-19,2.8429e-19,2.7433e-19,2.2584e-19,1.9311e-19,1.1378e-19,1.0537e-19,6.955e-20,4.7174e-20,1.3133e-20,1.0309e-20,9.1692e-21,6.7407e-21,5.0461e-21,4.5194e-21,3.6249e-21,3.0929e-21,2.5392e-21,1.8316e-21,1.8284e-21,1.0134e-21,8.6588e-22,8.379e-22,8.2336e-22,4.5013e-22,4.4397e-22,4.1767e-22,3.9888e-22,3.5403e-22,2.9044e-22,2.4314e-22,1.1007e-22,1.9981e-23,1.1966e-23,1.1435e-23,1.1013e-23,9.7517e-24,9.1131e-24,4.78e-24,3.1178e-24,2.2822e-24,1.9158e-24,1.3281e-24,9.7172e-25,9.1678e-25,5.9012e-25,4.5952e-25,3.3833e-25,2.065e-25,1.0742e-25,1.0301e-25,8.2502e-26,7.0698e-26,6.5957e-26,3.1371e-26,2.5578e-26,1.006e-26,7.7567e-27,4.9003e-27,3.8296e-27,3.5353e-27,2.2847e-27,2.1591e-27,1.9077e-27,1.4552e-27,8.6677e-28 1,0.013329,0.015389,0.0155,0.016179,0.016719,0.017453,0.018958,0.023004,0.025949,0.02643,0.029043,0.02949,0.031325,0.036205,0.037863,0.039054,0.044583,0.045597,0.046743,0.050771,0.051221,0.051481,0.054781,0.056811,0.056878,0.060953,0.061335,0.063263,0.06352,0.063772,0.078315,0.094593,0.096188,0.10153,0.10649,0.11048,0.11535,0.12122,0.13211,0.13841,0.14912,0.16346,0.16483,0.16778,0.17053,0.1854,0.18542,0.22453,0.22764,0.22938,0.24228,0.24325,0.26999,0.28098,0.28564,0.29601,0.30272,0.31443,0.31812,0.34725,0.36591,0.42763,0.4453,0.45127,0.46203,0.49204,0.49826,0.5038,0.53004,0.5549,0.56415,0.57174,0.59932,0.63917,0.68084,0.70852,0.71427,0.76444,0.78121,0.78891,0.79231,0.80588,0.85844,0.86003,0.86854,0.88163,0.88413,0.90168,0.94352,0.944,0.95387,0.95719,0.98662,0.99146,0.99177,0.99512,0.99827,0.99832,0.9985,0.99953,0.99954,0.99996,1,0.99267,0.98489,0.98458,0.97238,0.96853,0.96212,0.9588,0.95678,0.95449,0.95373,0.95169,0.94302,0.94197,0.93978,0.93795,0.92341,0.90539,0.87992,0.86971,0.84708,0.82031,0.80861,0.80249,0.7313,0.72273,0.7164,0.70376,0.68755,0.67341,0.66187,0.65981,0.65852,0.64391,0.60535,0.60251,0.58734,0.56388,0.55098,0.54889,0.47651,0.47576,0.46182,0.43501,0.4302,0.41246,0.40832,0.37988,0.36187,0.32264,0.32173,0.28006,0.27552,0.27408,0.24924,0.24771,0.23916,0.22819,0.22484,0.22232,0.21259,0.21101,0.20999,0.20254,0.19998,0.19932,0.19335,0.19124,0.17983,0.16199,0.15896,0.15815,0.15074,0.14775,0.13605,0.11725,0.11185,0.10371,0.10083,0.093187,0.086048,0.085486,0.085051,0.085001,0.083002,0.082835,0.076825,0.074189,0.069433,0.069227,0.067989,0.060474,0.060266,0.056948,0.053361,0.047427,0.04669,0.044638,0.044189,0.043073,0.041255,0.038596,0.038526,0.033044,0.027636,0.02711,0.026537,0.026361,0.02361,0.022045,0.0174,0.017182,0.016751,0.016046,0.013651,0.0115,0.0094998,0.0089629,0.0086558,0.0079182,0.0065999,0.0060862,0.0054741,0.0046424,0.0040193,0.0039155,0.0029488,0.0028394,0.0028004,0.0026178,0.0025483,0.0020513,0.0018671,0.0018167,0.0018117,0.0017104,0.0015821,0.0015257,0.0015012,0.0011273,0.0011269,0.00086638,0.00063795,0.00047835,0.00036531,0.00032469,0.00031478,0.0002927,0.00027461,0.00023609,0.00023218,0.00017289,0.00016036,0.00013783,0.00011401,0.00010154,0.00010022,9.1162e-05,8.5532e-05,7.3077e-05,5.7708e-05,5.6435e-05,5.0827e-05,4.305e-05,3.7585e-05,3.7346e-05,2.3234e-05,2.1481e-05,2.0685e-05,1.8772e-05,1.7846e-05,1.6476e-05,1.4501e-05,1.3771e-05,1.2811e-05,1.14e-05,9.7959e-06,8.4698e-06,8.3455e-06,6.9797e-06,6.2015e-06,5.5857e-06,4.3974e-06,3.9397e-06,3.7851e-06,3.2823e-06,3.2541e-06,3.0562e-06,2.9727e-06,2.0549e-06,1.8678e-06,1.7997e-06,1.5181e-06,1.3747e-06,1.3542e-06,1.0728e-06,6.8277e-07,5.9615e-07,5.5578e-07,4.7176e-07,4.6513e-07,3.8646e-07,3.7868e-07,2.9773e-07,2.5828e-07,1.9384e-07,1.8885e-07,1.8428e-07,1.8177e-07,1.7381e-07,1.6756e-07,1.6386e-07,1.2941e-07,1.2314e-07,7.6698e-08,6.5365e-08,5.877e-08,5.6342e-08,3.963e-08,3.9385e-08,3.5046e-08,3.3181e-08,2.5181e-08,2.4961e-08,2.4449e-08,1.9883e-08,1.8775e-08,1.8396e-08,1.7287e-08,1.5951e-08,1.478e-08,1.4205e-08,9.6002e-09,9.4679e-09,7.6999e-09,5.6348e-09,4.1913e-09,2.768e-09,2.7516e-09,2.3724e-09,1.9671e-09,1.5342e-09,1.5299e-09,1.4033e-09,9.3275e-10,8.4792e-10,8.3906e-10,5.154e-10,4.6281e-10,4.3493e-10,3.5901e-10,2.9664e-10,2.0835e-10,1.9709e-10,1.5062e-10,8.2087e-11,8.142e-11,7.7448e-11,6.9912e-11,6.4509e-11,5.841e-11,5.1938e-11,1.7212e-11,1.2837e-11,8.165e-12,5.8198e-12,5.7232e-12,5.5067e-12,3.3122e-12,2.94e-12,2.911e-12,1.7822e-12,7.7142e-13,7.5103e-13,5.8557e-13,5.5613e-13,3.1272e-13,2.6594e-13,1.8648e-13,1.5484e-13,1.2602e-13,1.2105e-13,9.4701e-14,9.0682e-14,8.8833e-14,5.0689e-14,4.2822e-14,3.9884e-14,3.1646e-14,2.9416e-14,2.1026e-14,1.9472e-14,1.668e-14,1.1327e-14,1.1285e-14,9.363e-15,8.7902e-15,8.7894e-15,5.8125e-15,5.7368e-15,4.8346e-15,4.0339e-15,2.7141e-15,1.8958e-15,1.4637e-15,9.6828e-16,6.5937e-16,3.9944e-16,3.9135e-16,2.6555e-16,1.8257e-16,1.4627e-16,8.0555e-17,6.757e-17,4.7235e-17,3.8191e-17,2.4464e-17,2.3335e-17,2.1169e-17,1.6893e-17,1.0514e-17,6.4411e-18,4.9628e-18,3.8226e-18,3.3349e-18,3.2714e-18,2.5523e-18,1.9143e-18,7.9068e-19,6.2393e-19,5.4748e-19,4.0996e-19,4.0914e-19,3.0746e-19,2.967e-19,2.443e-19,2.0892e-19,1.2315e-19,1.1406e-19,7.5316e-20,5.1103e-20,1.4243e-20,1.1182e-20,9.9473e-21,7.3147e-21,5.4772e-21,4.9059e-21,3.9357e-21,3.3585e-21,2.7578e-21,1.9898e-21,1.9863e-21,1.1015e-21,9.413e-22,9.109e-22,8.9511e-22,4.8961e-22,4.8292e-22,4.5433e-22,4.3391e-22,3.8516e-22,3.1604e-22,2.646e-22,1.1987e-22,2.179e-23,1.3055e-23,1.2476e-23,1.2016e-23,1.0641e-23,9.9449e-24,5.219e-24,3.4054e-24,2.4934e-24,2.0934e-24,1.4516e-24,1.0624e-24,1.0023e-24,6.4542e-25,5.0268e-25,3.702e-25,2.2604e-25,1.1764e-25,1.1282e-25,9.0374e-26,7.7453e-26,7.2264e-26,3.439e-26,2.8044e-26,1.1038e-26,8.5126e-27,5.3798e-27,4.2051e-27,3.8821e-27,2.5096e-27,2.3718e-27,2.0959e-27,1.599e-27,9.5283e-28 1,0.0092646,0.010761,0.010841,0.011336,0.011731,0.012268,0.013374,0.016365,0.01856,0.01892,0.020879,0.021215,0.022598,0.026295,0.027558,0.028466,0.032704,0.033484,0.034368,0.037482,0.037831,0.038032,0.040597,0.042178,0.042231,0.045416,0.045715,0.047227,0.047429,0.047627,0.059125,0.072156,0.073441,0.077758,0.081781,0.085019,0.088992,0.093796,0.10274,0.10795,0.11684,0.12882,0.12997,0.13244,0.13475,0.14731,0.14732,0.18074,0.18341,0.18491,0.19608,0.19692,0.22025,0.22991,0.23401,0.24318,0.24913,0.25954,0.26283,0.28896,0.30584,0.36243,0.37884,0.38441,0.39448,0.42274,0.42864,0.4339,0.45895,0.4829,0.49186,0.49924,0.52622,0.5657,0.60767,0.63596,0.64188,0.69429,0.71213,0.72038,0.72403,0.7387,0.79692,0.79872,0.80841,0.82347,0.82638,0.84703,0.89866,0.89928,0.91223,0.91669,0.96009,0.96868,0.96928,0.97604,0.98391,0.98405,0.98461,0.98853,0.98856,0.99162,0.99267,1,0.99859,0.99849,0.99336,0.99138,0.98781,0.98585,0.98463,0.98323,0.98276,0.98147,0.97582,0.97511,0.97363,0.97239,0.96212,0.94869,0.92873,0.92047,0.90173,0.87889,0.86872,0.86335,0.79905,0.7911,0.7852,0.77336,0.75806,0.74461,0.73355,0.73158,0.73034,0.71623,0.67856,0.67576,0.66074,0.63735,0.62439,0.62228,0.54829,0.54751,0.53303,0.50497,0.49991,0.48115,0.47676,0.44641,0.42703,0.38437,0.38337,0.33736,0.3323,0.3307,0.30285,0.30112,0.29146,0.27903,0.27522,0.27235,0.26125,0.25943,0.25826,0.24972,0.24677,0.24601,0.23914,0.23669,0.22348,0.20268,0.19911,0.19817,0.18945,0.18593,0.17208,0.14961,0.14312,0.13328,0.12979,0.12048,0.11174,0.11105,0.11052,0.11045,0.108,0.10779,0.10038,0.097114,0.091207,0.090951,0.089409,0.08001,0.079748,0.075576,0.071048,0.063518,0.062578,0.05996,0.059386,0.057957,0.055627,0.052208,0.052117,0.045025,0.037966,0.037275,0.036523,0.036291,0.032664,0.030591,0.024394,0.024102,0.023522,0.022573,0.019335,0.016403,0.013654,0.012912,0.012487,0.011463,0.0096217,0.0089002,0.0080373,0.0068582,0.0059692,0.0058205,0.0044285,0.0042699,0.0042133,0.003948,0.0038468,0.00312,0.002849,0.0027747,0.0027673,0.0026177,0.0024277,0.0023441,0.0023078,0.0017495,0.0017489,0.0013562,0.0010084,0.00076299,0.00058754,0.00052408,0.00050856,0.00047392,0.00044549,0.00038473,0.00037854,0.00028432,0.00026431,0.00022816,0.00018976,0.00016957,0.00016741,0.00015269,0.00014352,0.00012316,9.7894e-05,9.5794e-05,8.6522e-05,7.3614e-05,6.4504e-05,6.4106e-05,4.0388e-05,3.7418e-05,3.6067e-05,3.2813e-05,3.1236e-05,2.8898e-05,2.5518e-05,2.4264e-05,2.2615e-05,2.0185e-05,1.7411e-05,1.5109e-05,1.4893e-05,1.2512e-05,1.1149e-05,1.0068e-05,7.9728e-06,7.1622e-06,6.8878e-06,5.9936e-06,5.9432e-06,5.5903e-06,5.4412e-06,3.7945e-06,3.4569e-06,3.3337e-06,2.8233e-06,2.5627e-06,2.5252e-06,2.0114e-06,1.2935e-06,1.1328e-06,1.0578e-06,9.0122e-07,8.8884e-07,7.4157e-07,7.2697e-07,5.7464e-07,5.0007e-07,3.7766e-07,3.6815e-07,3.5943e-07,3.5465e-07,3.3944e-07,3.2751e-07,3.2043e-07,2.5434e-07,2.4229e-07,1.5244e-07,1.3035e-07,1.1747e-07,1.1271e-07,7.9864e-08,7.9382e-08,7.0807e-08,6.7115e-08,5.1223e-08,5.0785e-08,4.9765e-08,4.0643e-08,3.8421e-08,3.7661e-08,3.5436e-08,3.275e-08,3.0394e-08,2.9235e-08,1.9914e-08,1.9644e-08,1.6042e-08,1.1812e-08,8.8373e-09,5.8834e-09,5.8493e-09,5.0578e-09,4.2088e-09,3.298e-09,3.2891e-09,3.0219e-09,2.0242e-09,1.8434e-09,1.8245e-09,1.1309e-09,1.0175e-09,9.5734e-10,7.9305e-10,6.5757e-10,4.6483e-10,4.4016e-10,3.3801e-10,1.8623e-10,1.8474e-10,1.7589e-10,1.5906e-10,1.4698e-10,1.3332e-10,1.1879e-10,4.0132e-11,3.0081e-11,1.9282e-11,1.3823e-11,1.3597e-11,1.3091e-11,7.9415e-12,7.063e-12,6.9945e-12,4.3173e-12,1.8945e-12,1.8452e-12,1.4445e-12,1.373e-12,7.7923e-13,6.6439e-13,4.685e-13,3.9017e-13,3.1857e-13,3.0621e-13,2.4048e-13,2.3043e-13,2.2581e-13,1.2998e-13,1.1009e-13,1.0265e-13,8.1739e-14,7.6065e-14,5.4651e-14,5.0671e-14,4.3507e-14,2.9718e-14,2.9611e-14,2.4637e-14,2.3152e-14,2.315e-14,1.5404e-14,1.5207e-14,1.2848e-14,1.0749e-14,7.2751e-15,5.1085e-15,3.9593e-15,2.635e-15,1.8044e-15,1.1011e-15,1.0791e-15,7.363e-16,5.0893e-16,4.0903e-16,2.2717e-16,1.9103e-16,1.3421e-16,1.0883e-16,7.0149e-17,6.6957e-17,6.0824e-17,4.869e-17,3.0503e-17,1.8812e-17,1.4546e-17,1.1244e-17,9.8273e-18,9.6426e-18,7.5484e-18,5.6835e-18,2.3753e-18,1.8803e-18,1.6528e-18,1.2423e-18,1.2399e-18,9.3526e-19,9.0296e-19,7.4536e-19,6.3875e-19,3.7912e-19,3.5148e-19,2.3334e-19,1.5912e-19,4.5077e-20,3.55e-20,3.1626e-20,2.3346e-20,1.7545e-20,1.5737e-20,1.266e-20,1.0825e-20,8.9103e-21,6.4551e-21,6.4439e-21,3.5996e-21,3.0821e-21,2.9838e-21,2.9326e-21,1.616e-21,1.5942e-21,1.501e-21,1.4343e-21,1.275e-21,1.0487e-21,8.7994e-22,4.0247e-22,7.4672e-23,4.5011e-23,4.3036e-23,4.147e-23,3.6776e-23,3.4397e-23,1.8189e-23,1.1928e-23,8.7649e-24,7.3737e-24,5.1348e-24,3.7716e-24,3.5609e-24,2.3045e-24,1.8e-24,1.3303e-24,8.1685e-25,4.283e-25,4.1094e-25,3.3e-25,2.8331e-25,2.6454e-25,1.2695e-25,1.0376e-25,4.1264e-26,3.1916e-26,2.0272e-26,1.5889e-26,1.4682e-26,9.5366e-27,9.0184e-27,7.98e-27,6.1064e-27,3.6592e-27 1,0.0078612,0.0091548,0.0092244,0.0096534,0.0099957,0.010462,0.011422,0.014029,0.015948,0.016263,0.017981,0.018276,0.019491,0.022746,0.023861,0.024663,0.028415,0.029106,0.02989,0.032657,0.032967,0.033147,0.03543,0.03684,0.036887,0.03973,0.039998,0.04135,0.04153,0.041707,0.052023,0.063777,0.06494,0.068848,0.072497,0.075437,0.07905,0.083423,0.091588,0.096346,0.10449,0.1155,0.11655,0.11883,0.12096,0.13255,0.13257,0.16356,0.16605,0.16745,0.17787,0.17865,0.20049,0.20956,0.21342,0.22205,0.22765,0.23749,0.24059,0.26535,0.28139,0.33549,0.35127,0.35664,0.36634,0.39367,0.39938,0.40449,0.42885,0.45222,0.46099,0.46822,0.49473,0.53371,0.57542,0.60371,0.60965,0.6625,0.68061,0.68902,0.69274,0.70773,0.76776,0.76964,0.77973,0.79548,0.79853,0.82029,0.87558,0.87626,0.8904,0.8953,0.94429,0.95441,0.95512,0.96331,0.97314,0.97332,0.97405,0.97918,0.97922,0.9834,0.98489,0.99859,1,1,0.99807,0.99693,0.99467,0.99334,0.99249,0.99149,0.99116,0.99022,0.98598,0.98544,0.98429,0.98332,0.97507,0.96385,0.94659,0.9393,0.92251,0.9017,0.89233,0.88736,0.82687,0.81929,0.81365,0.8023,0.78758,0.77457,0.76385,0.76194,0.76073,0.747,0.71011,0.70736,0.69256,0.66942,0.65655,0.65446,0.58041,0.57962,0.56502,0.53662,0.53148,0.51242,0.50794,0.47695,0.45708,0.41314,0.41211,0.36437,0.35911,0.35744,0.32835,0.32654,0.31642,0.30337,0.29935,0.29634,0.28464,0.28273,0.28149,0.27248,0.26937,0.26856,0.26129,0.25871,0.24469,0.22258,0.21878,0.21778,0.20847,0.20471,0.18987,0.16573,0.15873,0.14809,0.14432,0.13423,0.12473,0.12398,0.1234,0.12333,0.12066,0.12043,0.11235,0.10879,0.10233,0.10205,0.10036,0.090047,0.08976,0.085171,0.080184,0.071869,0.07083,0.067932,0.067296,0.065713,0.063128,0.059331,0.059231,0.051333,0.043441,0.042666,0.041823,0.041563,0.03749,0.035157,0.028161,0.02783,0.027174,0.026098,0.02242,0.019079,0.015936,0.015085,0.014597,0.01342,0.0113,0.010467,0.0094685,0.0081012,0.0070674,0.0068944,0.005269,0.0050833,0.005017,0.004706,0.0045872,0.003733,0.0034135,0.0033259,0.0033171,0.0031405,0.002916,0.002817,0.002774,0.0021118,0.0021111,0.0016432,0.0012271,0.00093212,0.00072039,0.0006436,0.00062479,0.0005828,0.00054829,0.00047445,0.00046691,0.00035204,0.00032757,0.00028331,0.0002362,0.00021136,0.00020872,0.00019059,0.00017928,0.00015414,0.00012287,0.00012027,0.00010876,9.272e-05,8.1377e-05,8.088e-05,5.1239e-05,4.7513e-05,4.5818e-05,4.173e-05,3.9748e-05,3.6806e-05,3.2548e-05,3.0967e-05,2.8886e-05,2.5815e-05,2.2305e-05,1.9388e-05,1.9113e-05,1.6088e-05,1.4355e-05,1.2978e-05,1.0303e-05,9.2667e-06,8.9154e-06,7.7698e-06,7.7052e-06,7.2525e-06,7.061e-06,4.9432e-06,4.5079e-06,4.3489e-06,3.6896e-06,3.3524e-06,3.3039e-06,2.6379e-06,1.704e-06,1.4945e-06,1.3965e-06,1.1917e-06,1.1755e-06,9.825e-07,9.6334e-07,7.6327e-07,6.6513e-07,5.0371e-07,4.9114e-07,4.7962e-07,4.733e-07,4.532e-07,4.3742e-07,4.2806e-07,3.4054e-07,3.2456e-07,2.0511e-07,1.7565e-07,1.5844e-07,1.5209e-07,1.0811e-07,1.0746e-07,9.5958e-08,9.0999e-08,6.9624e-08,6.9035e-08,6.766e-08,5.5361e-08,5.2362e-08,5.1335e-08,4.8329e-08,4.4698e-08,4.151e-08,3.9941e-08,2.73e-08,2.6934e-08,2.2035e-08,1.6269e-08,1.2203e-08,8.1527e-09,8.1058e-09,7.0177e-09,5.8489e-09,4.5928e-09,4.5805e-09,4.2114e-09,2.8305e-09,2.5797e-09,2.5535e-09,1.5891e-09,1.4311e-09,1.3471e-09,1.1176e-09,9.2813e-10,6.5795e-10,6.233e-10,4.7967e-10,2.6555e-10,2.6344e-10,2.5091e-10,2.2709e-10,2.0997e-10,1.906e-10,1.6999e-10,5.7915e-11,4.3506e-11,2.7982e-11,2.011e-11,1.9784e-11,1.9053e-11,1.1602e-11,1.0327e-11,1.0228e-11,6.3357e-12,2.797e-12,2.7247e-12,2.1368e-12,2.0318e-12,1.1578e-12,9.8828e-13,6.9862e-13,5.8257e-13,4.7633e-13,4.5798e-13,3.6028e-13,3.4533e-13,3.3845e-13,1.9556e-13,1.6583e-13,1.547e-13,1.2338e-13,1.1487e-13,8.2718e-14,7.6733e-14,6.5953e-14,4.5166e-14,4.5004e-14,3.7491e-14,3.5246e-14,3.5242e-14,2.3515e-14,2.3216e-14,1.9637e-14,1.6449e-14,1.1161e-14,7.8555e-15,6.0985e-15,4.0695e-15,2.7936e-15,1.71e-15,1.6761e-15,1.1465e-15,7.9432e-16,6.3928e-16,3.5637e-16,2.9999e-16,2.1123e-16,1.7152e-16,1.1085e-16,1.0584e-16,9.6201e-17,7.7114e-17,4.8448e-17,2.9967e-17,2.3207e-17,1.7967e-17,1.5716e-17,1.5423e-17,1.2091e-17,9.1192e-18,3.8311e-18,3.0368e-18,2.6713e-18,2.0113e-18,2.0074e-18,1.5167e-18,1.4646e-18,1.2104e-18,1.0382e-18,6.1806e-19,5.7324e-19,3.8146e-19,2.607e-19,7.4385e-20,5.8659e-20,5.2292e-20,3.8668e-20,2.9106e-20,2.6122e-20,2.104e-20,1.8005e-20,1.4837e-20,1.0768e-20,1.075e-20,6.024e-21,5.1623e-21,4.9985e-21,4.9134e-21,2.7163e-21,2.6799e-21,2.5239e-21,2.4124e-21,2.1459e-21,1.7669e-21,1.4839e-21,6.8159e-22,1.276e-22,7.7118e-23,7.3752e-23,7.1081e-23,6.3076e-23,5.9016e-23,3.1311e-23,2.0578e-23,1.5145e-23,1.2753e-23,8.8971e-24,6.5454e-24,6.1816e-24,4.0096e-24,3.1357e-24,2.321e-24,1.4287e-24,7.5154e-25,7.2125e-25,5.7982e-25,4.9817e-25,4.6532e-25,2.2412e-25,1.8336e-25,7.3255e-26,5.673e-26,3.6115e-26,2.834e-26,2.6196e-26,1.7052e-26,1.613e-26,1.4281e-26,1.0942e-26,6.5732e-27 1,0.0078173,0.0091044,0.0091736,0.0096006,0.0099412,0.010405,0.011361,0.013956,0.015866,0.016179,0.017889,0.018183,0.019392,0.022634,0.023744,0.024543,0.028279,0.028967,0.029748,0.032504,0.032813,0.032991,0.035265,0.03667,0.036716,0.039549,0.039815,0.041162,0.041342,0.041518,0.051795,0.063508,0.064667,0.068562,0.072199,0.075129,0.07873,0.083089,0.091228,0.095971,0.10409,0.11506,0.11612,0.11839,0.12052,0.13207,0.13209,0.163,0.16549,0.16688,0.17727,0.17806,0.19985,0.2089,0.21274,0.22136,0.22695,0.23676,0.23986,0.26457,0.28058,0.3346,0.35036,0.35571,0.36541,0.3927,0.39841,0.40351,0.42784,0.4512,0.45996,0.46718,0.49367,0.53263,0.57433,0.60261,0.60855,0.66141,0.67954,0.68795,0.69167,0.70667,0.76675,0.76863,0.77874,0.79451,0.79757,0.81935,0.87476,0.87544,0.88962,0.89454,0.94371,0.95389,0.9546,0.96283,0.97273,0.97291,0.97365,0.97882,0.97886,0.98307,0.98458,0.99849,1,1,0.99818,0.99707,0.99485,0.99355,0.99271,0.99173,0.99139,0.99047,0.98628,0.98574,0.9846,0.98364,0.97546,0.96432,0.94716,0.9399,0.92318,0.90244,0.8931,0.88814,0.82779,0.82022,0.81459,0.80326,0.78855,0.77557,0.76486,0.76295,0.76174,0.74803,0.71117,0.70842,0.69363,0.6705,0.65764,0.65554,0.5815,0.58072,0.56611,0.5377,0.53256,0.51349,0.50901,0.478,0.45811,0.41413,0.4131,0.3653,0.36003,0.35836,0.32923,0.32742,0.31728,0.30421,0.30019,0.29717,0.28546,0.28354,0.2823,0.27327,0.27015,0.26934,0.26206,0.25947,0.24543,0.22327,0.21947,0.21846,0.20914,0.20536,0.1905,0.1663,0.15928,0.14862,0.14483,0.13471,0.12519,0.12444,0.12386,0.12379,0.12111,0.12088,0.11278,0.1092,0.10272,0.10244,0.10075,0.090403,0.090115,0.085512,0.080509,0.072167,0.071124,0.068216,0.067578,0.065989,0.063396,0.059586,0.059485,0.051558,0.043637,0.04286,0.042013,0.041752,0.037663,0.035321,0.028297,0.027965,0.027306,0.026225,0.022532,0.019176,0.016018,0.015164,0.014674,0.013492,0.011361,0.010524,0.0095207,0.0081466,0.0071076,0.0069336,0.0052998,0.0051132,0.0050465,0.0047338,0.0046144,0.0037555,0.0034342,0.0033462,0.0033374,0.0031597,0.002934,0.0028345,0.0027912,0.0021252,0.0021245,0.0016538,0.0012352,0.00093841,0.00072534,0.00064806,0.00062913,0.00058686,0.00055213,0.0004778,0.00047022,0.00035458,0.00032994,0.00028538,0.00023794,0.00021293,0.00021027,0.00019201,0.00018062,0.00015531,0.00012381,0.00012119,0.0001096,9.3443e-05,8.2015e-05,8.1515e-05,5.1651e-05,4.7896e-05,4.6188e-05,4.2069e-05,4.0071e-05,3.7107e-05,3.2815e-05,3.1222e-05,2.9124e-05,2.603e-05,2.2492e-05,1.9551e-05,1.9274e-05,1.6225e-05,1.4478e-05,1.3089e-05,1.0393e-05,9.3474e-06,8.9932e-06,7.838e-06,7.7728e-06,7.3163e-06,7.1232e-06,4.9874e-06,4.5483e-06,4.388e-06,3.7229e-06,3.3828e-06,3.3339e-06,2.6621e-06,1.7199e-06,1.5085e-06,1.4096e-06,1.2029e-06,1.1866e-06,9.9185e-07,9.7252e-07,7.706e-07,6.7155e-07,5.0861e-07,4.9593e-07,4.843e-07,4.7793e-07,4.5764e-07,4.417e-07,4.3225e-07,3.439e-07,3.2777e-07,2.0717e-07,1.7742e-07,1.6004e-07,1.5363e-07,1.0922e-07,1.0857e-07,9.6945e-08,9.1936e-08,7.0348e-08,6.9752e-08,6.8364e-08,5.594e-08,5.291e-08,5.1874e-08,4.8837e-08,4.5168e-08,4.1948e-08,4.0364e-08,2.7592e-08,2.7222e-08,2.2272e-08,1.6445e-08,1.2336e-08,8.2428e-09,8.1954e-09,7.0955e-09,5.9141e-09,4.6444e-09,4.6319e-09,4.2587e-09,2.8627e-09,2.6091e-09,2.5826e-09,1.6075e-09,1.4476e-09,1.3627e-09,1.1306e-09,9.3898e-10,6.657e-10,6.3065e-10,4.8536e-10,2.6874e-10,2.6661e-10,2.5394e-10,2.2983e-10,2.1251e-10,1.9291e-10,1.7205e-10,5.8636e-11,4.4051e-11,2.8335e-11,2.0366e-11,2.0036e-11,1.9296e-11,1.1751e-11,1.0461e-11,1.036e-11,6.4182e-12,2.8339e-12,2.7608e-12,2.1652e-12,2.0588e-12,1.1734e-12,1.0016e-12,7.081e-13,5.905e-13,4.8284e-13,4.6424e-13,3.6523e-13,3.5007e-13,3.431e-13,1.9827e-13,1.6814e-13,1.5686e-13,1.251e-13,1.1648e-13,8.3882e-14,7.7814e-14,6.6885e-14,4.5808e-14,4.5644e-14,3.8026e-14,3.5749e-14,3.5746e-14,2.3853e-14,2.3549e-14,1.992e-14,1.6686e-14,1.1323e-14,7.9703e-15,6.188e-15,4.1296e-15,2.8351e-15,1.7356e-15,1.7012e-15,1.1637e-15,8.0634e-16,6.4899e-16,3.6183e-16,3.046e-16,2.1449e-16,1.7417e-16,1.1258e-16,1.0749e-16,9.7701e-17,7.832e-17,4.921e-17,3.0442e-17,2.3576e-17,1.8253e-17,1.5967e-17,1.5669e-17,1.2285e-17,9.2659e-18,3.8934e-18,3.0863e-18,2.715e-18,2.0443e-18,2.0403e-18,1.5417e-18,1.4887e-18,1.2303e-18,1.0553e-18,6.2833e-19,5.8278e-19,3.8784e-19,2.6508e-19,7.5652e-20,5.9662e-20,5.3187e-20,3.9332e-20,2.9608e-20,2.6573e-20,2.1403e-20,1.8317e-20,1.5095e-20,1.0956e-20,1.0937e-20,6.1296e-21,5.2529e-21,5.0863e-21,4.9997e-21,2.7644e-21,2.7273e-21,2.5686e-21,2.4551e-21,2.1839e-21,1.7983e-21,1.5103e-21,6.9381e-22,1.2992e-22,7.8532e-23,7.5105e-23,7.2385e-23,6.4235e-23,6.0101e-23,3.189e-23,2.096e-23,1.5428e-23,1.2991e-23,9.0638e-24,6.6684e-24,6.2978e-24,4.0852e-24,3.195e-24,2.365e-24,1.4559e-24,7.6594e-25,7.3507e-25,5.9096e-25,5.0775e-25,4.7427e-25,2.2846e-25,1.8692e-25,7.4688e-26,5.7843e-26,3.6826e-26,2.8899e-26,2.6713e-26,1.739e-26,1.6449e-26,1.4564e-26,1.116e-26,6.7045e-27 1,0.0064649,0.0075518,0.0076104,0.0079717,0.0082602,0.0086536,0.0094654,0.011676,0.01331,0.013578,0.015045,0.015297,0.016338,0.019132,0.020092,0.020783,0.024023,0.024621,0.0253,0.0277,0.027969,0.028125,0.03011,0.031338,0.031379,0.033859,0.034093,0.035274,0.035432,0.035586,0.044635,0.055011,0.056041,0.059507,0.062748,0.065363,0.068582,0.072484,0.079788,0.084054,0.091377,0.1013,0.10225,0.10431,0.10624,0.11674,0.11676,0.14502,0.14731,0.14859,0.15815,0.15887,0.17899,0.18738,0.19095,0.19895,0.20416,0.2133,0.21619,0.23932,0.25436,0.30544,0.32043,0.32554,0.33479,0.36092,0.3664,0.3713,0.39474,0.41733,0.42583,0.43285,0.45865,0.49681,0.53796,0.56604,0.57196,0.62493,0.64323,0.65174,0.65552,0.67076,0.7324,0.73434,0.74482,0.76123,0.76442,0.78727,0.84631,0.84705,0.86244,0.86781,0.92282,0.93464,0.93548,0.94523,0.95727,0.95749,0.9584,0.9649,0.96496,0.97039,0.97238,0.99336,0.99807,0.99818,1,0.99987,0.99915,0.99858,0.99817,0.99766,0.99748,0.99696,0.99441,0.99407,0.99332,0.99268,0.98688,0.97836,0.96443,0.95835,0.94402,0.92579,0.91744,0.91299,0.85754,0.85046,0.84517,0.8345,0.82058,0.80822,0.79799,0.79615,0.795,0.78183,0.74617,0.74349,0.72907,0.70641,0.69376,0.6917,0.61812,0.61733,0.60268,0.57407,0.56888,0.54957,0.54502,0.51345,0.49312,0.44789,0.44682,0.39727,0.39178,0.39004,0.35959,0.35769,0.34706,0.33331,0.32908,0.3259,0.31353,0.31151,0.3102,0.30064,0.29734,0.29648,0.28876,0.28601,0.27109,0.24744,0.24337,0.24229,0.23229,0.22824,0.21226,0.18611,0.1785,0.16691,0.16279,0.15175,0.14134,0.14051,0.13987,0.1398,0.13686,0.13661,0.12771,0.12378,0.11663,0.11632,0.11445,0.10301,0.1027,0.09759,0.092029,0.082734,0.081571,0.078321,0.077608,0.07583,0.072925,0.068651,0.068537,0.059618,0.050665,0.049784,0.048824,0.048528,0.043883,0.041216,0.033188,0.032807,0.032052,0.030811,0.026561,0.022685,0.019022,0.018028,0.017457,0.016078,0.013587,0.012605,0.011426,0.009807,0.0085789,0.0083729,0.0064325,0.0062101,0.0061307,0.0057576,0.005615,0.0045871,0.0042014,0.0040956,0.004085,0.0038713,0.0035995,0.0034795,0.0034273,0.002622,0.0026211,0.0020491,0.0015379,0.0011736,0.00091093,0.00081532,0.00079187,0.00073948,0.00069638,0.00060399,0.00059455,0.00045027,0.00041944,0.00036358,0.00030397,0.00027246,0.0002691,0.00024606,0.00023168,0.00019964,0.00015967,0.00015634,0.00014159,0.00012099,0.00010638,0.00010574,6.7426e-05,6.2589e-05,6.0386e-05,5.507e-05,5.2489e-05,4.8656e-05,4.31e-05,4.1034e-05,3.8312e-05,3.4293e-05,2.9688e-05,2.5853e-05,2.5492e-05,2.1507e-05,1.9219e-05,1.7398e-05,1.3854e-05,1.2477e-05,1.2011e-05,1.0486e-05,1.04e-05,9.7962e-06,9.5409e-06,6.7095e-06,6.1257e-06,5.9124e-06,5.0263e-06,4.5724e-06,4.507e-06,3.6085e-06,2.3435e-06,2.0585e-06,1.9251e-06,1.6459e-06,1.6238e-06,1.3601e-06,1.3339e-06,1.0597e-06,9.2498e-07,7.0275e-07,6.8542e-07,6.6953e-07,6.6081e-07,6.3307e-07,6.1127e-07,5.9833e-07,4.7724e-07,4.551e-07,2.891e-07,2.4801e-07,2.2396e-07,2.1508e-07,1.5347e-07,1.5256e-07,1.3639e-07,1.2942e-07,9.931e-08,9.8479e-08,9.6539e-08,7.9161e-08,7.4917e-08,7.3464e-08,6.9207e-08,6.406e-08,5.9538e-08,5.7313e-08,3.9332e-08,3.881e-08,3.1817e-08,2.3566e-08,1.7729e-08,1.1894e-08,1.1826e-08,1.0254e-08,8.5616e-09,6.7394e-09,6.7214e-09,6.185e-09,4.1735e-09,3.8072e-09,3.7688e-09,2.3565e-09,2.1243e-09,2.0008e-09,1.663e-09,1.3835e-09,9.84e-10,9.3266e-10,7.1954e-10,4.0057e-10,3.9742e-10,3.7869e-10,3.4306e-10,3.1743e-10,2.884e-10,2.5749e-10,8.8596e-11,6.6727e-11,4.3086e-11,3.1056e-11,3.0558e-11,2.9439e-11,1.8004e-11,1.6043e-11,1.589e-11,9.8839e-12,4.3941e-12,4.2816e-12,3.3646e-12,3.2007e-12,1.8325e-12,1.5663e-12,1.1104e-12,9.2739e-13,7.5953e-13,7.3051e-13,5.7581e-13,5.521e-13,5.4119e-13,3.1411e-13,2.6672e-13,2.4896e-13,1.9891e-13,1.853e-13,1.3379e-13,1.2418e-13,1.0687e-13,7.3405e-14,7.3144e-14,6.1021e-14,5.7395e-14,5.739e-14,3.8415e-14,3.7929e-14,3.2124e-14,2.6946e-14,1.8339e-14,1.2943e-14,1.0068e-14,6.739e-15,4.6394e-15,2.8505e-15,2.7944e-15,1.9168e-15,1.3317e-15,1.0735e-15,6.0103e-16,5.0658e-16,3.5761e-16,2.9082e-16,1.8855e-16,1.8009e-16,1.638e-16,1.3151e-16,8.2902e-17,5.1455e-17,3.9921e-17,3.0963e-17,2.711e-17,2.6607e-17,2.0895e-17,1.5791e-17,6.674e-18,5.2989e-18,4.6653e-18,3.5196e-18,3.5127e-18,2.6592e-18,2.5685e-18,2.1254e-18,1.8249e-18,1.0903e-18,1.0117e-18,6.7512e-19,4.6257e-19,1.3309e-19,1.0512e-19,9.3783e-20,6.9487e-20,5.2402e-20,4.7064e-20,3.796e-20,3.2518e-20,2.683e-20,1.9513e-20,1.9479e-20,1.0957e-20,9.3991e-21,9.1028e-21,8.9487e-21,4.9661e-21,4.8998e-21,4.6165e-21,4.4138e-21,3.9291e-21,3.2392e-21,2.7234e-21,1.2571e-21,2.3781e-22,1.4418e-22,1.3792e-22,1.3296e-22,1.1807e-22,1.1052e-22,5.8862e-23,3.8783e-23,2.8598e-23,2.4106e-23,1.6854e-23,1.2422e-23,1.1736e-23,7.632e-24,5.9775e-24,4.4324e-24,2.7362e-24,1.4448e-24,1.3869e-24,1.1164e-24,9.6005e-25,8.9709e-25,4.3393e-25,3.5544e-25,1.4276e-25,1.1072e-25,7.0668e-26,5.5531e-26,5.1354e-26,3.351e-26,3.1708e-26,2.8093e-26,2.1558e-26,1.2988e-26 1,0.0061403,0.0071784,0.0072344,0.0075797,0.0078555,0.0082316,0.009008,0.011124,0.01269,0.012947,0.014354,0.014596,0.015595,0.018279,0.019201,0.019865,0.022981,0.023557,0.024211,0.026522,0.026781,0.026931,0.028844,0.030028,0.030067,0.032459,0.032684,0.033824,0.033976,0.034125,0.042864,0.052902,0.053899,0.057256,0.060396,0.062931,0.066052,0.069838,0.076927,0.081071,0.088188,0.097838,0.098769,0.10077,0.10265,0.11288,0.11289,0.14047,0.1427,0.14395,0.15329,0.15399,0.17368,0.18189,0.18539,0.19322,0.19833,0.20729,0.21013,0.23283,0.24761,0.29788,0.31266,0.3177,0.32683,0.35263,0.35805,0.36289,0.38608,0.40845,0.41687,0.42382,0.44942,0.48733,0.52828,0.55628,0.56219,0.61512,0.63344,0.64198,0.64576,0.66105,0.72301,0.72497,0.73553,0.75209,0.75531,0.77841,0.83833,0.83908,0.85477,0.86026,0.91674,0.92898,0.92984,0.93999,0.95257,0.95281,0.95377,0.96061,0.96067,0.96642,0.96853,0.99138,0.99693,0.99707,0.99987,1,0.99969,0.99931,0.99902,0.99863,0.99849,0.99809,0.99599,0.99569,0.99505,0.9945,0.98935,0.98155,0.96852,0.96276,0.94909,0.93157,0.9235,0.91919,0.86515,0.85821,0.85303,0.84255,0.82886,0.81669,0.8066,0.80479,0.80365,0.79065,0.75537,0.75271,0.73841,0.71591,0.70333,0.70128,0.62792,0.62714,0.61249,0.58387,0.57866,0.55931,0.55475,0.52307,0.50263,0.45711,0.45603,0.40605,0.4005,0.39874,0.36796,0.36604,0.35527,0.34135,0.33707,0.33384,0.32131,0.31926,0.31793,0.30824,0.30489,0.30402,0.29618,0.29339,0.27823,0.25418,0.25004,0.24895,0.23877,0.23465,0.21836,0.19169,0.18392,0.17208,0.16787,0.15658,0.14591,0.14507,0.14442,0.14434,0.14133,0.14107,0.13195,0.12792,0.1206,0.12028,0.11836,0.10662,0.10629,0.10104,0.095328,0.085766,0.084569,0.081223,0.080489,0.078658,0.075665,0.071261,0.071144,0.061945,0.0527,0.05179,0.050797,0.050492,0.045689,0.04293,0.034615,0.03422,0.033437,0.032151,0.027741,0.023714,0.019905,0.018871,0.018277,0.016841,0.014245,0.013221,0.011991,0.0103,0.0090168,0.0088014,0.0067709,0.006538,0.0064547,0.0060639,0.0059145,0.0048366,0.0044319,0.0043208,0.0043096,0.0040853,0.0037998,0.0036737,0.0036189,0.002772,0.0027711,0.0021689,0.0016299,0.0012454,0.00096765,0.0008665,0.00084169,0.00078623,0.0007406,0.00064273,0.00063272,0.00047973,0.00044702,0.00038772,0.00032438,0.00029089,0.00028731,0.00026281,0.0002475,0.0002134,0.00017083,0.00016727,0.00015155,0.00012958,0.00011399,0.00011331,7.2371e-05,6.7198e-05,6.4841e-05,5.9154e-05,5.6391e-05,5.2287e-05,4.6337e-05,4.4124e-05,4.1207e-05,3.6898e-05,3.196e-05,2.7846e-05,2.7458e-05,2.3179e-05,2.0721e-05,1.8764e-05,1.4954e-05,1.3473e-05,1.297e-05,1.1329e-05,1.1236e-05,1.0586e-05,1.0311e-05,7.2599e-06,6.6302e-06,6.4001e-06,5.4438e-06,4.9537e-06,4.8831e-06,3.9125e-06,2.5444e-06,2.2359e-06,2.0914e-06,1.789e-06,1.765e-06,1.4792e-06,1.4508e-06,1.1535e-06,1.0072e-06,7.6586e-07,7.4703e-07,7.2976e-07,7.2029e-07,6.9013e-07,6.6644e-07,6.5238e-07,5.2071e-07,4.9662e-07,3.159e-07,2.7112e-07,2.4491e-07,2.3522e-07,1.68e-07,1.6701e-07,1.4937e-07,1.4175e-07,1.0885e-07,1.0794e-07,1.0582e-07,8.6824e-08,8.2182e-08,8.0593e-08,7.5935e-08,7.0303e-08,6.5354e-08,6.2918e-08,4.3223e-08,4.2652e-08,3.4986e-08,2.5934e-08,1.9525e-08,1.3113e-08,1.3039e-08,1.1309e-08,9.4477e-09,7.4416e-09,7.4218e-09,6.831e-09,4.6141e-09,4.2102e-09,4.1679e-09,2.6091e-09,2.3526e-09,2.2162e-09,1.8429e-09,1.5339e-09,1.0919e-09,1.0351e-09,7.9908e-10,4.455e-10,4.4201e-10,4.2123e-10,3.8168e-10,3.5323e-10,3.2101e-10,2.8668e-10,9.8893e-11,7.4532e-11,4.8176e-11,3.4751e-11,3.4195e-11,3.2946e-11,2.0172e-11,1.7979e-11,1.7808e-11,1.1089e-11,4.9389e-12,4.8127e-12,3.784e-12,3.6001e-12,2.0638e-12,1.7645e-12,1.2519e-12,1.0459e-12,8.5701e-13,8.2432e-13,6.5009e-13,6.2339e-13,6.1108e-13,3.551e-13,3.0163e-13,2.8158e-13,2.2508e-13,2.0971e-13,1.5152e-13,1.4066e-13,1.2109e-13,8.3237e-14,8.2942e-14,6.9221e-14,6.5116e-14,6.511e-14,4.3619e-14,4.3069e-14,3.6489e-14,3.0619e-14,2.0855e-14,1.4729e-14,1.1463e-14,7.6789e-15,5.2904e-15,3.2536e-15,3.1897e-15,2.1897e-15,1.5223e-15,1.2277e-15,6.8812e-16,5.8018e-16,4.0985e-16,3.3343e-16,2.1636e-16,2.0666e-16,1.8801e-16,1.5101e-16,9.5275e-17,5.9187e-17,4.5941e-17,3.5649e-17,3.1221e-17,3.0643e-17,2.4075e-17,1.8203e-17,7.7059e-18,6.1207e-18,5.3902e-18,4.0684e-18,4.0605e-18,3.0755e-18,2.9707e-18,2.459e-18,2.112e-18,1.263e-18,1.1721e-18,7.8271e-19,5.3665e-19,1.5474e-19,1.2227e-19,1.091e-19,8.0881e-20,6.1024e-20,5.4817e-20,4.423e-20,3.79e-20,3.1281e-20,2.2762e-20,2.2723e-20,1.2794e-20,1.0978e-20,1.0632e-20,1.0452e-20,5.8063e-21,5.729e-21,5.3982e-21,5.1617e-21,4.5956e-21,3.7899e-21,3.1874e-21,1.4731e-21,2.7944e-22,1.6955e-22,1.6221e-22,1.5638e-22,1.389e-22,1.3002e-22,6.9322e-23,4.5706e-23,3.3719e-23,2.843e-23,1.9889e-23,1.4666e-23,1.3857e-23,9.0174e-24,7.0653e-24,5.2414e-24,3.2381e-24,1.7115e-24,1.643e-24,1.323e-24,1.138e-24,1.0635e-24,5.1498e-25,4.2195e-25,1.6971e-25,1.3167e-25,8.4098e-26,6.6109e-26,6.1143e-26,3.9923e-26,3.7779e-26,3.3478e-26,2.57e-26,1.5495e-26 1,0.0056671,0.0066334,0.0066855,0.0070072,0.0072643,0.0076149,0.0083393,0.010316,0.011781,0.012022,0.01334,0.013567,0.014504,0.017024,0.01789,0.018515,0.021448,0.02199,0.022606,0.024784,0.025029,0.025171,0.026976,0.028093,0.02813,0.03039,0.030603,0.03168,0.031825,0.031965,0.040241,0.049771,0.050719,0.053911,0.0569,0.059315,0.062288,0.065898,0.072664,0.076623,0.083429,0.092669,0.09356,0.09548,0.097282,0.10709,0.10711,0.13363,0.13578,0.13698,0.14599,0.14667,0.16568,0.17362,0.177,0.18459,0.18953,0.19823,0.20098,0.22302,0.23739,0.28641,0.30086,0.30578,0.31472,0.34,0.34532,0.35008,0.37286,0.39487,0.40317,0.41002,0.43528,0.47277,0.51339,0.54123,0.54711,0.59994,0.61828,0.62683,0.63062,0.64596,0.70836,0.71034,0.72101,0.73778,0.74105,0.7645,0.8257,0.82647,0.8426,0.84826,0.90693,0.91981,0.92072,0.93146,0.94487,0.94513,0.94615,0.95352,0.95358,0.95982,0.96212,0.98781,0.99467,0.99485,0.99915,0.99969,1,0.99993,0.99981,0.99963,0.99955,0.99932,0.99791,0.9977,0.99722,0.9968,0.99267,0.986,0.97436,0.96911,0.9565,0.94009,0.93248,0.9284,0.87661,0.8699,0.86488,0.85472,0.84141,0.82954,0.81969,0.81792,0.81681,0.80408,0.76942,0.76681,0.75271,0.73048,0.71803,0.716,0.64307,0.64228,0.62767,0.59904,0.59383,0.57443,0.56986,0.53802,0.51745,0.4715,0.47042,0.41979,0.41417,0.41238,0.3811,0.37914,0.36819,0.354,0.34963,0.34635,0.33356,0.33147,0.33011,0.32021,0.31678,0.31589,0.30788,0.30502,0.28951,0.26485,0.2606,0.25948,0.24903,0.24479,0.22804,0.20055,0.19253,0.1803,0.17594,0.16426,0.15321,0.15234,0.15166,0.15158,0.14846,0.14819,0.13873,0.13454,0.12693,0.1266,0.1246,0.11238,0.11204,0.10657,0.10061,0.090631,0.089379,0.085882,0.085114,0.083199,0.080069,0.075457,0.075335,0.065692,0.055982,0.055025,0.053981,0.05366,0.048605,0.045698,0.036925,0.036508,0.03568,0.034321,0.029655,0.025387,0.021343,0.020244,0.019612,0.018085,0.015319,0.014227,0.012914,0.011107,0.0097336,0.009503,0.0073261,0.007076,0.0069866,0.0065668,0.0064063,0.0052469,0.004811,0.0046913,0.0046793,0.0044375,0.0041297,0.0039937,0.0039345,0.0030197,0.0030187,0.0023669,0.0017823,0.0013643,0.0010619,0.00095161,0.00092454,0.00086401,0.00081418,0.00070724,0.00069631,0.00052889,0.00049305,0.00042802,0.0003585,0.0003217,0.00031778,0.00029083,0.00027399,0.00023646,0.00018954,0.00018562,0.00016828,0.00014401,0.00012679,0.00012603,8.0705e-05,7.4968e-05,7.2354e-05,6.6041e-05,6.2974e-05,5.8416e-05,5.1803e-05,4.9343e-05,4.6099e-05,4.1304e-05,3.5805e-05,3.1219e-05,3.0787e-05,2.6013e-05,2.3268e-05,2.1082e-05,1.6822e-05,1.5164e-05,1.4601e-05,1.2762e-05,1.2659e-05,1.193e-05,1.1622e-05,8.1975e-06,7.49e-06,7.2313e-06,6.1559e-06,5.6044e-06,5.5249e-06,4.4317e-06,2.8882e-06,2.5397e-06,2.3763e-06,2.0342e-06,2.0071e-06,1.6835e-06,1.6514e-06,1.3144e-06,1.1484e-06,8.744e-07,8.53e-07,8.3337e-07,8.226e-07,7.8832e-07,7.6139e-07,7.454e-07,5.9558e-07,5.6815e-07,3.6215e-07,3.1104e-07,2.8109e-07,2.7003e-07,1.9316e-07,1.9202e-07,1.7182e-07,1.6309e-07,1.2539e-07,1.2435e-07,1.2192e-07,1.0011e-07,9.4785e-08,9.296e-08,8.761e-08,8.114e-08,7.5452e-08,7.2651e-08,4.9991e-08,4.9333e-08,4.0501e-08,3.0061e-08,2.2659e-08,1.5243e-08,1.5157e-08,1.3154e-08,1.0997e-08,8.6705e-09,8.6475e-09,7.9618e-09,5.3865e-09,4.9168e-09,4.8676e-09,3.0529e-09,2.7539e-09,2.5948e-09,2.1593e-09,1.7986e-09,1.282e-09,1.2156e-09,9.3934e-10,5.2486e-10,5.2077e-10,4.9638e-10,4.4995e-10,4.1653e-10,3.7867e-10,3.3832e-10,1.1717e-10,8.84e-11,5.7231e-11,4.1332e-11,4.0672e-11,3.9192e-11,2.4038e-11,2.1434e-11,2.1231e-11,1.3243e-11,5.9148e-12,5.7641e-12,4.5359e-12,4.3161e-12,2.479e-12,2.1207e-12,1.5064e-12,1.2593e-12,1.0325e-12,9.9325e-13,7.8393e-13,7.5184e-13,7.3705e-13,4.2907e-13,3.6466e-13,3.4049e-13,2.7238e-13,2.5384e-13,1.8359e-13,1.7048e-13,1.4683e-13,1.0105e-13,1.007e-13,8.4088e-14,7.9116e-14,7.9109e-14,5.3066e-14,5.2398e-14,4.4417e-14,3.7291e-14,2.5431e-14,1.798e-14,1.4004e-14,9.3932e-15,6.4789e-15,3.9905e-15,3.9124e-15,2.6888e-15,1.8714e-15,1.5102e-15,8.4795e-16,7.1531e-16,5.0582e-16,4.1176e-16,2.6753e-16,2.5557e-16,2.3257e-16,1.8692e-16,1.1809e-16,7.3463e-17,5.7064e-17,4.4313e-17,3.8823e-17,3.8106e-17,2.9959e-17,2.2671e-17,9.6205e-18,7.6463e-18,6.7361e-18,5.0884e-18,5.0785e-18,3.8495e-18,3.7188e-18,3.0798e-18,2.6463e-18,1.5847e-18,1.471e-18,9.8341e-19,6.7495e-19,1.9528e-19,1.544e-19,1.3781e-19,1.0225e-19,7.7202e-20,6.937e-20,5.6003e-20,4.8008e-20,3.9644e-20,2.8871e-20,2.8822e-20,1.6253e-20,1.3951e-20,1.3513e-20,1.3285e-20,7.3911e-21,7.293e-21,6.873e-21,6.5725e-21,5.8535e-21,4.8297e-21,4.0637e-21,1.8818e-21,3.5847e-22,2.1778e-22,2.0837e-22,2.009e-22,1.7849e-22,1.6712e-22,8.9239e-23,5.8898e-23,4.3485e-23,3.6679e-23,2.5682e-23,1.8952e-23,1.7909e-23,1.1666e-23,9.1462e-24,6.7901e-24,4.1997e-24,2.2232e-24,2.1345e-24,1.7196e-24,1.4796e-24,1.383e-24,6.7086e-25,5.4993e-25,2.2166e-25,1.7208e-25,1.1002e-25,8.6534e-26,8.0049e-26,5.2319e-26,4.9516e-26,4.3891e-26,3.3714e-26,2.0351e-26 1,0.005449,0.006382,0.0064323,0.006743,0.0069914,0.0073302,0.0080304,0.0099425,0.011361,0.011594,0.012871,0.01309,0.013998,0.016441,0.017282,0.017888,0.020734,0.021261,0.021859,0.023975,0.024213,0.024351,0.026105,0.027192,0.027228,0.029425,0.029633,0.030681,0.030821,0.030958,0.039016,0.048305,0.049229,0.052344,0.055262,0.057618,0.060522,0.064048,0.070661,0.074532,0.081189,0.090233,0.091106,0.092987,0.094751,0.10437,0.10438,0.13039,0.1325,0.13369,0.14253,0.1432,0.16189,0.1697,0.17303,0.18049,0.18536,0.19392,0.19663,0.21835,0.23252,0.28093,0.29521,0.30008,0.30892,0.33395,0.33922,0.34393,0.36651,0.38834,0.39658,0.40338,0.42846,0.46575,0.50619,0.53394,0.53981,0.59256,0.61089,0.61945,0.62324,0.6386,0.70118,0.70317,0.71389,0.73076,0.73404,0.75765,0.81944,0.82022,0.83656,0.84229,0.902,0.91517,0.91611,0.92712,0.94094,0.9412,0.94226,0.94987,0.94994,0.95641,0.9588,0.98585,0.99334,0.99355,0.99858,0.99931,0.99993,1,0.99997,0.99989,0.99984,0.9997,0.99862,0.99845,0.99806,0.9977,0.99406,0.98794,0.977,0.972,0.95991,0.94405,0.93667,0.93269,0.88204,0.87545,0.87051,0.86051,0.84739,0.83568,0.82595,0.8242,0.8231,0.81051,0.77618,0.77359,0.7596,0.73751,0.72513,0.72311,0.65042,0.64964,0.63504,0.60642,0.60121,0.5818,0.57722,0.54532,0.52469,0.47856,0.47747,0.42655,0.42088,0.41908,0.38757,0.3856,0.37455,0.36024,0.35583,0.35252,0.33961,0.33749,0.33612,0.32612,0.32266,0.32176,0.31366,0.31078,0.29509,0.27014,0.26584,0.2647,0.25412,0.24982,0.23284,0.20496,0.19682,0.18439,0.17997,0.16809,0.15686,0.15596,0.15528,0.1552,0.15202,0.15175,0.14211,0.13785,0.1301,0.12976,0.12773,0.11527,0.11492,0.10935,0.10327,0.093074,0.091796,0.088224,0.08744,0.085483,0.082284,0.07757,0.077444,0.067581,0.057639,0.056658,0.055589,0.05526,0.050079,0.047098,0.038095,0.037667,0.036817,0.035421,0.030626,0.026237,0.022075,0.020942,0.020291,0.018718,0.015866,0.01474,0.013385,0.011519,0.0101,0.009862,0.0076107,0.0073518,0.0072593,0.0068247,0.0066585,0.0054576,0.0050059,0.0048818,0.0048694,0.0046187,0.0042993,0.0041583,0.0040969,0.0031474,0.0031463,0.0024691,0.0018611,0.0014259,0.0011108,0.00099575,0.00096752,0.00090437,0.00085238,0.00074076,0.00072934,0.00055447,0.000517,0.00044902,0.00037629,0.00033778,0.00033367,0.00030546,0.00028782,0.00024851,0.00019933,0.00019522,0.00017703,0.00015156,0.00013349,0.00013269,8.508e-05,7.9047e-05,7.6299e-05,6.966e-05,6.6434e-05,6.1638e-05,5.4678e-05,5.2088e-05,4.8673e-05,4.3623e-05,3.783e-05,3.2996e-05,3.2541e-05,2.7508e-05,2.4613e-05,2.2306e-05,1.7809e-05,1.6058e-05,1.5464e-05,1.3521e-05,1.3411e-05,1.2641e-05,1.2316e-05,8.6944e-06,7.9458e-06,7.6721e-06,6.5337e-06,5.9497e-06,5.8656e-06,4.7075e-06,3.0712e-06,2.7014e-06,2.528e-06,2.1649e-06,2.1361e-06,1.7925e-06,1.7583e-06,1.4002e-06,1.2239e-06,9.3241e-07,9.0964e-07,8.8876e-07,8.773e-07,8.4083e-07,8.1216e-07,7.9514e-07,6.3565e-07,6.0644e-07,3.8695e-07,3.3245e-07,3.0051e-07,2.8871e-07,2.0667e-07,2.0546e-07,1.8388e-07,1.7457e-07,1.3429e-07,1.3318e-07,1.3058e-07,1.0727e-07,1.0157e-07,9.9621e-08,9.39e-08,8.698e-08,8.0895e-08,7.7898e-08,5.3644e-08,5.2939e-08,4.3479e-08,3.2291e-08,2.4355e-08,1.6397e-08,1.6305e-08,1.4154e-08,1.1837e-08,9.3375e-09,9.3128e-09,8.5757e-09,5.8064e-09,5.301e-09,5.2481e-09,3.2945e-09,2.9725e-09,2.8011e-09,2.3318e-09,1.9429e-09,1.3858e-09,1.3141e-09,1.016e-09,5.6831e-10,5.6388e-10,5.3752e-10,4.8733e-10,4.512e-10,4.1026e-10,3.6662e-10,1.2722e-10,9.6028e-11,6.2218e-11,4.4959e-11,4.4243e-11,4.2635e-11,2.6172e-11,2.3342e-11,2.3121e-11,1.4433e-11,6.4555e-12,6.2914e-12,4.9528e-12,4.7132e-12,2.7095e-12,2.3185e-12,1.6478e-12,1.378e-12,1.1302e-12,1.0873e-12,8.5848e-13,8.2338e-13,8.0722e-13,4.7033e-13,3.9983e-13,3.7337e-13,2.9879e-13,2.7848e-13,2.0152e-13,1.8715e-13,1.6122e-13,1.1103e-13,1.1064e-13,9.2413e-14,8.6957e-14,8.6949e-14,5.8361e-14,5.7628e-14,4.8863e-14,4.1036e-14,2.8001e-14,1.9808e-14,1.5433e-14,1.0358e-14,7.1485e-15,4.4061e-15,4.32e-15,2.9706e-15,2.0686e-15,1.6699e-15,9.3841e-16,7.9181e-16,5.602e-16,4.5617e-16,2.9657e-16,2.8333e-16,2.5786e-16,2.0732e-16,1.3106e-16,8.1586e-17,6.3396e-17,4.9247e-17,4.3154e-17,4.2359e-17,3.3314e-17,2.5219e-17,1.0715e-17,8.5186e-18,7.5059e-18,5.672e-18,5.661e-18,4.2926e-18,4.1471e-18,3.4354e-18,2.9524e-18,1.7693e-18,1.6425e-18,1.0986e-18,7.5442e-19,2.1863e-19,1.7291e-19,1.5436e-19,1.1457e-19,8.6538e-20,7.7769e-20,6.2802e-20,5.3847e-20,4.4476e-20,3.2403e-20,3.2348e-20,1.8255e-20,1.5672e-20,1.5181e-20,1.4925e-20,8.3098e-21,8.1996e-21,7.728e-21,7.3906e-21,6.5831e-21,5.433e-21,4.5723e-21,2.1194e-21,4.0455e-22,2.4592e-22,2.3531e-22,2.2689e-22,2.0161e-22,1.8878e-22,1.0088e-22,6.6615e-23,4.92e-23,4.1508e-23,2.9076e-23,2.1464e-23,2.0284e-23,1.322e-23,1.0368e-23,7.6995e-24,4.7649e-24,2.5243e-24,2.4236e-24,1.953e-24,1.6808e-24,1.5711e-24,7.6276e-25,6.2541e-25,2.5235e-25,1.9596e-25,1.2535e-25,9.862e-26,9.1237e-26,5.966e-26,5.6467e-26,5.006e-26,3.8464e-26,2.3231e-26 1,0.005324,0.0062377,0.006287,0.0065915,0.0068348,0.0071668,0.007853,0.0097278,0.011119,0.011348,0.0126,0.012816,0.013707,0.016106,0.016931,0.017526,0.020323,0.020841,0.021428,0.023509,0.023743,0.023878,0.025603,0.026672,0.026707,0.028869,0.029073,0.030104,0.030242,0.030377,0.038307,0.047457,0.048368,0.051438,0.054313,0.056637,0.0595,0.062977,0.0695,0.07332,0.079891,0.088821,0.089683,0.09154,0.093283,0.10278,0.1028,0.12851,0.1306,0.13177,0.14052,0.14118,0.15968,0.16741,0.17071,0.17811,0.18293,0.19141,0.19409,0.21562,0.22968,0.27772,0.29191,0.29675,0.30553,0.33041,0.33565,0.34033,0.36279,0.38451,0.39271,0.39948,0.42446,0.46162,0.50195,0.52965,0.5355,0.58821,0.60654,0.61509,0.61889,0.63426,0.69693,0.69892,0.70968,0.72659,0.72989,0.75359,0.81571,0.8165,0.83295,0.83873,0.89904,0.91238,0.91333,0.92451,0.93856,0.93882,0.9399,0.94766,0.94773,0.95433,0.95678,0.98463,0.99249,0.99271,0.99817,0.99902,0.99981,0.99997,1,0.99997,0.99994,0.99985,0.99898,0.99882,0.99848,0.99816,0.99482,0.98902,0.97849,0.97364,0.96186,0.94633,0.93908,0.93517,0.8852,0.87867,0.87379,0.86388,0.85087,0.83926,0.82961,0.82787,0.82678,0.81427,0.78014,0.77756,0.76364,0.74164,0.7293,0.72728,0.65475,0.65397,0.63938,0.61078,0.60557,0.58615,0.58157,0.54964,0.52898,0.48274,0.48165,0.43056,0.42487,0.42306,0.39141,0.38943,0.37833,0.36395,0.35952,0.35618,0.3432,0.34108,0.33969,0.32964,0.32616,0.32525,0.3171,0.3142,0.29841,0.27329,0.26896,0.26781,0.25715,0.25282,0.23571,0.2076,0.19938,0.18684,0.18237,0.17038,0.15904,0.15813,0.15744,0.15736,0.15415,0.15388,0.14414,0.13983,0.132,0.13165,0.1296,0.117,0.11665,0.11101,0.10485,0.09454,0.093246,0.089629,0.088835,0.086853,0.083613,0.078838,0.078711,0.068715,0.058635,0.05764,0.056556,0.056222,0.050965,0.047941,0.0388,0.038366,0.037502,0.036083,0.031211,0.02675,0.022517,0.021364,0.020702,0.019101,0.016197,0.01505,0.01367,0.011769,0.010322,0.010079,0.0077831,0.0075191,0.0074246,0.0069811,0.0068115,0.0055855,0.0051242,0.0049974,0.0049847,0.0047286,0.0044024,0.0042583,0.0041956,0.003225,0.0032239,0.0025312,0.001909,0.0014634,0.0011406,0.0010227,0.00099373,0.000929,0.00087569,0.00076122,0.00074951,0.00057009,0.00053164,0.00046185,0.00038716,0.00034761,0.00034338,0.00031441,0.00029629,0.00025588,0.00020532,0.00020109,0.00018239,0.0001562,0.00013759,0.00013678,8.7764e-05,8.1552e-05,7.8721e-05,7.1882e-05,6.8558e-05,6.3617e-05,5.6445e-05,5.3775e-05,5.0255e-05,4.5049e-05,3.9075e-05,3.409e-05,3.362e-05,2.8428e-05,2.544e-05,2.306e-05,1.8417e-05,1.6609e-05,1.5995e-05,1.3988e-05,1.3875e-05,1.308e-05,1.2743e-05,9.0009e-06,8.227e-06,7.944e-06,6.7669e-06,6.163e-06,6.076e-06,4.8779e-06,3.1843e-06,2.8014e-06,2.6218e-06,2.2457e-06,2.2159e-06,1.8599e-06,1.8245e-06,1.4534e-06,1.2706e-06,9.6835e-07,9.4474e-07,9.2308e-07,9.112e-07,8.7336e-07,8.4362e-07,8.2597e-07,6.605e-07,6.3019e-07,4.0234e-07,3.4574e-07,3.1257e-07,3.0031e-07,2.1507e-07,2.1381e-07,1.9138e-07,1.817e-07,1.3982e-07,1.3867e-07,1.3596e-07,1.1172e-07,1.058e-07,1.0377e-07,9.7814e-08,9.0614e-08,8.4282e-08,8.1164e-08,5.5919e-08,5.5185e-08,4.5335e-08,3.3682e-08,2.5412e-08,1.7117e-08,1.7021e-08,1.4779e-08,1.2362e-08,9.7541e-09,9.7283e-09,8.9593e-09,6.0688e-09,5.5412e-09,5.4859e-09,3.4457e-09,3.1092e-09,2.9302e-09,2.4398e-09,2.0333e-09,1.4508e-09,1.3758e-09,1.064e-09,5.9556e-10,5.9093e-10,5.6333e-10,5.1079e-10,4.7296e-10,4.3009e-10,3.8438e-10,1.3354e-10,1.0083e-10,6.5356e-11,4.7243e-11,4.6491e-11,4.4803e-11,2.7517e-11,2.4544e-11,2.4312e-11,1.5184e-11,6.7969e-12,6.6243e-12,5.2161e-12,4.964e-12,2.8553e-12,2.4436e-12,1.7373e-12,1.453e-12,1.192e-12,1.1468e-12,9.0567e-13,8.6868e-13,8.5164e-13,4.9647e-13,4.2211e-13,3.9421e-13,3.1553e-13,2.941e-13,2.1289e-13,1.9772e-13,1.7035e-13,1.1736e-13,1.1694e-13,9.7699e-14,9.1936e-14,9.1928e-14,6.1726e-14,6.0951e-14,5.1688e-14,4.3415e-14,2.9635e-14,2.097e-14,1.6343e-14,1.0972e-14,7.5749e-15,4.671e-15,4.5797e-15,3.1503e-15,2.1944e-15,1.7718e-15,9.9616e-16,8.4067e-16,5.9494e-16,4.8454e-16,3.1513e-16,3.0107e-16,2.7404e-16,2.2036e-16,1.3936e-16,8.6787e-17,6.7452e-17,5.2409e-17,4.5929e-17,4.5083e-17,3.5464e-17,2.6853e-17,1.1417e-17,9.0785e-18,8e-18,6.0468e-18,6.0351e-18,4.5773e-18,4.4222e-18,3.6639e-18,3.1492e-18,1.8879e-18,1.7528e-18,1.1728e-18,8.0556e-19,2.3368e-19,1.8485e-19,1.6503e-19,1.2251e-19,9.2559e-20,8.3187e-20,6.7188e-20,5.7614e-20,4.7595e-20,3.4684e-20,3.4625e-20,1.9548e-20,1.6784e-20,1.6259e-20,1.5985e-20,8.9038e-21,8.7858e-21,8.2808e-21,7.9196e-21,7.0549e-21,5.8232e-21,4.9013e-21,2.2732e-21,4.3443e-22,2.6419e-22,2.5279e-22,2.4375e-22,2.1661e-22,2.0283e-22,1.0844e-22,7.1628e-23,5.2914e-23,4.4646e-23,3.1282e-23,2.3098e-23,2.1829e-23,1.4232e-23,1.1162e-23,8.2915e-24,5.133e-24,2.7205e-24,2.612e-24,2.1052e-24,1.8119e-24,1.6938e-24,8.2272e-25,6.7466e-25,2.7239e-25,2.1156e-25,1.3537e-25,1.0652e-25,9.855e-26,6.4461e-26,6.1012e-26,5.4094e-26,4.1571e-26,2.5116e-26 1,0.0051887,0.0060816,0.0061298,0.0064274,0.0066652,0.0069899,0.0076609,0.0094951,0.010857,0.011081,0.012307,0.012519,0.013391,0.015742,0.016551,0.017134,0.019877,0.020385,0.020961,0.023002,0.023232,0.023364,0.025058,0.026107,0.026141,0.028263,0.028464,0.029476,0.029612,0.029744,0.037537,0.046534,0.04743,0.05045,0.05328,0.055567,0.058385,0.06181,0.068235,0.071998,0.078474,0.087279,0.088129,0.089961,0.091679,0.10105,0.10107,0.12646,0.12852,0.12968,0.13832,0.13898,0.15726,0.16491,0.16817,0.17549,0.18026,0.18866,0.19131,0.21263,0.22657,0.2742,0.28829,0.29309,0.30181,0.32652,0.33172,0.33637,0.3587,0.3803,0.38846,0.39519,0.42006,0.45706,0.49727,0.52491,0.53075,0.58339,0.60172,0.61027,0.61407,0.62945,0.69222,0.69422,0.705,0.72197,0.72528,0.74907,0.81156,0.81235,0.82894,0.83476,0.89572,0.90926,0.91022,0.92158,0.93588,0.93615,0.93725,0.94517,0.94524,0.95199,0.95449,0.98323,0.99149,0.99173,0.99766,0.99863,0.99963,0.99989,0.99997,1,1,0.99995,0.9993,0.99918,0.99888,0.99861,0.99559,0.99016,0.98008,0.9754,0.96396,0.9488,0.9417,0.93787,0.88865,0.8822,0.87737,0.86757,0.8547,0.84319,0.83362,0.8319,0.83081,0.81841,0.78449,0.78193,0.76808,0.74618,0.73389,0.73189,0.65954,0.65875,0.64419,0.6156,0.61039,0.59096,0.58638,0.55442,0.53372,0.48737,0.48628,0.43501,0.4293,0.42748,0.39568,0.39369,0.38253,0.36807,0.36361,0.36026,0.3472,0.34506,0.34367,0.33355,0.33005,0.32914,0.32094,0.31801,0.30211,0.2768,0.27244,0.27128,0.26053,0.25617,0.23891,0.21053,0.20223,0.18957,0.18506,0.17294,0.16147,0.16056,0.15986,0.15978,0.15653,0.15626,0.14641,0.14205,0.13412,0.13377,0.13169,0.11894,0.11858,0.11287,0.10664,0.096183,0.094871,0.091204,0.090399,0.088389,0.085103,0.08026,0.080131,0.069988,0.059753,0.058743,0.057641,0.057302,0.051961,0.048887,0.039593,0.039151,0.038272,0.036829,0.03187,0.027327,0.023014,0.02184,0.021164,0.019532,0.016571,0.0154,0.013992,0.012051,0.010573,0.010325,0.007978,0.007708,0.0076114,0.0071579,0.0069844,0.0057301,0.0052579,0.0051282,0.0051152,0.004853,0.004519,0.0043714,0.0043072,0.0033128,0.0033117,0.0026016,0.0019634,0.001506,0.0011744,0.0010532,0.0010235,0.00095696,0.00090216,0.00078446,0.00077242,0.00058785,0.00054828,0.00047644,0.00039954,0.0003588,0.00035444,0.00032459,0.00030592,0.00026428,0.00021215,0.00020779,0.00018849,0.00016147,0.00014228,0.00014144,9.0828e-05,8.441e-05,8.1485e-05,7.4418e-05,7.0983e-05,6.5876e-05,5.8462e-05,5.5702e-05,5.2061e-05,4.6677e-05,4.0498e-05,3.534e-05,3.4854e-05,2.9479e-05,2.6386e-05,2.3921e-05,1.9112e-05,1.7239e-05,1.6603e-05,1.4523e-05,1.4406e-05,1.3582e-05,1.3232e-05,9.352e-06,8.5492e-06,8.2556e-06,7.0341e-06,6.4073e-06,6.317e-06,5.0732e-06,3.314e-06,2.9161e-06,2.7295e-06,2.3385e-06,2.3075e-06,1.9373e-06,1.9005e-06,1.5145e-06,1.3242e-06,1.0097e-06,9.8508e-07,9.6253e-07,9.5016e-07,9.1076e-07,8.798e-07,8.6142e-07,6.8907e-07,6.5749e-07,4.2005e-07,3.6104e-07,3.2645e-07,3.1366e-07,2.2474e-07,2.2343e-07,2.0003e-07,1.8992e-07,1.462e-07,1.4499e-07,1.4217e-07,1.1686e-07,1.1067e-07,1.0854e-07,1.0233e-07,9.4804e-08,8.8189e-08,8.4931e-08,5.8544e-08,5.7777e-08,4.7477e-08,3.5288e-08,2.6634e-08,1.7949e-08,1.7848e-08,1.55e-08,1.2969e-08,1.0236e-08,1.0209e-08,9.4029e-09,6.3726e-09,5.8192e-09,5.7612e-09,3.6207e-09,3.2676e-09,3.0797e-09,2.5649e-09,2.138e-09,1.5262e-09,1.4474e-09,1.1197e-09,6.2719e-10,6.2232e-10,5.9329e-10,5.3802e-10,4.9822e-10,4.5311e-10,4.0501e-10,1.4088e-10,1.0641e-10,6.9008e-11,4.9902e-11,4.9108e-11,4.7328e-11,2.9084e-11,2.5945e-11,2.57e-11,1.606e-11,7.1951e-12,7.0126e-12,5.5234e-12,5.2567e-12,3.0255e-12,2.5897e-12,1.8419e-12,1.5408e-12,1.2642e-12,1.2163e-12,9.6084e-13,9.2164e-13,9.0358e-13,5.2705e-13,4.4819e-13,4.186e-13,3.3512e-13,3.1239e-13,2.2621e-13,2.101e-13,1.8105e-13,1.2477e-13,1.2433e-13,1.0389e-13,9.777e-14,9.7761e-14,6.5669e-14,6.4846e-14,5.5001e-14,4.6205e-14,3.1552e-14,2.2334e-14,1.741e-14,1.1694e-14,8.0758e-15,4.9822e-15,4.885e-15,3.3615e-15,2.3424e-15,1.8916e-15,1.0641e-15,8.9817e-16,6.3585e-16,5.1795e-16,3.37e-16,3.2198e-16,2.9309e-16,2.3573e-16,1.4915e-16,9.2921e-17,7.2236e-17,5.6139e-17,4.9205e-17,4.8299e-17,3.8002e-17,2.8781e-17,1.2246e-17,9.7401e-18,8.584e-18,6.4898e-18,6.4773e-18,4.9139e-18,4.7475e-18,3.9341e-18,3.3819e-18,2.0283e-18,1.8833e-18,1.2605e-18,8.6612e-19,2.5151e-19,1.99e-19,1.7768e-19,1.3194e-19,9.9703e-20,8.9616e-20,7.2393e-20,6.2086e-20,5.1297e-20,3.7392e-20,3.7329e-20,2.1084e-20,1.8106e-20,1.7539e-20,1.7244e-20,9.6099e-21,9.4826e-21,8.938e-21,8.5484e-21,7.6157e-21,6.2871e-21,5.2926e-21,2.4562e-21,4.7004e-22,2.8595e-22,2.7363e-22,2.6384e-22,2.3449e-22,2.1959e-22,1.1746e-22,7.7609e-23,5.7345e-23,4.8392e-23,3.3916e-23,2.5049e-23,2.3673e-23,1.5439e-23,1.2112e-23,8.9989e-24,5.573e-24,2.9551e-24,2.8374e-24,2.2872e-24,1.9688e-24,1.8405e-24,8.9449e-25,7.3363e-25,2.9639e-25,2.3025e-25,1.4738e-25,1.1599e-25,1.0732e-25,7.0217e-26,6.6463e-26,5.8932e-26,4.5298e-26,2.7378e-26 1,0.0051453,0.0060315,0.0060793,0.0063747,0.0066108,0.0069331,0.0075992,0.0094203,0.010772,0.010995,0.012213,0.012423,0.01329,0.015625,0.016428,0.017008,0.019733,0.020238,0.020811,0.022839,0.023067,0.023199,0.024882,0.025925,0.025959,0.028069,0.028268,0.029274,0.029409,0.029541,0.037288,0.046236,0.047128,0.050132,0.052947,0.055222,0.058026,0.061433,0.067827,0.071572,0.078017,0.086781,0.087627,0.089451,0.091162,0.10049,0.10051,0.12579,0.12785,0.129,0.13761,0.13826,0.15648,0.1641,0.16735,0.17465,0.1794,0.18776,0.19042,0.21167,0.22556,0.27306,0.28711,0.2919,0.3006,0.32525,0.33044,0.33509,0.35737,0.37893,0.38707,0.3938,0.41863,0.45558,0.49575,0.52337,0.52921,0.58182,0.60015,0.6087,0.6125,0.62788,0.69068,0.69268,0.70348,0.72046,0.72377,0.7476,0.8102,0.81099,0.82762,0.83346,0.89463,0.90823,0.90919,0.92061,0.93499,0.93526,0.93637,0.94434,0.94441,0.95121,0.95373,0.98276,0.99116,0.99139,0.99748,0.99849,0.99955,0.99984,0.99994,1,1,0.99998,0.9994,0.99928,0.999,0.99874,0.99583,0.99052,0.98058,0.97596,0.96464,0.9496,0.94254,0.93874,0.88977,0.88335,0.87853,0.86877,0.85593,0.84446,0.83492,0.8332,0.83212,0.81975,0.78591,0.78335,0.76952,0.74766,0.73539,0.73338,0.66109,0.66031,0.64575,0.61717,0.61196,0.59253,0.58795,0.55598,0.53527,0.48889,0.48779,0.43646,0.43074,0.42892,0.39707,0.39509,0.38391,0.36942,0.36495,0.36159,0.34851,0.34637,0.34497,0.33483,0.33132,0.33041,0.32219,0.31926,0.30332,0.27795,0.27357,0.27242,0.26164,0.25726,0.23996,0.2115,0.20317,0.19047,0.18594,0.17378,0.16227,0.16136,0.16065,0.16057,0.15731,0.15704,0.14715,0.14278,0.13482,0.13447,0.13238,0.11957,0.11922,0.11348,0.10722,0.096723,0.095405,0.091722,0.090913,0.088895,0.085594,0.080727,0.080598,0.070407,0.060121,0.059106,0.057999,0.057657,0.052289,0.049199,0.039854,0.039409,0.038526,0.037074,0.032087,0.027518,0.023178,0.021996,0.021317,0.019674,0.016694,0.015515,0.014098,0.012144,0.010656,0.010406,0.0080424,0.0077704,0.0076732,0.0072163,0.0070416,0.0057779,0.0053022,0.0051715,0.0051584,0.0048942,0.0045576,0.0044089,0.0043441,0.0033419,0.0033408,0.002625,0.0019814,0.0015201,0.0011856,0.0010634,0.0010334,0.00096624,0.00091095,0.00079218,0.00078002,0.00059374,0.0005538,0.00048129,0.00040365,0.00036251,0.00035812,0.00032797,0.00030912,0.00026707,0.00021442,0.00021002,0.00019052,0.00016323,0.00014384,0.00014299,9.1847e-05,8.5361e-05,8.2405e-05,7.5262e-05,7.179e-05,6.6628e-05,5.9133e-05,5.6343e-05,5.2663e-05,4.722e-05,4.0972e-05,3.5756e-05,3.5265e-05,2.983e-05,2.6702e-05,2.4208e-05,1.9344e-05,1.7449e-05,1.6806e-05,1.4702e-05,1.4583e-05,1.3749e-05,1.3396e-05,9.4692e-06,8.6568e-06,8.3596e-06,7.1234e-06,6.4889e-06,6.3975e-06,5.1384e-06,3.3574e-06,2.9545e-06,2.7655e-06,2.3696e-06,2.3381e-06,1.9632e-06,1.9259e-06,1.5349e-06,1.3422e-06,1.0235e-06,9.9858e-07,9.7574e-07,9.632e-07,9.2328e-07,8.9191e-07,8.7328e-07,6.9864e-07,6.6664e-07,4.2599e-07,3.6617e-07,3.311e-07,3.1814e-07,2.2798e-07,2.2665e-07,2.0292e-07,1.9267e-07,1.4834e-07,1.4711e-07,1.4425e-07,1.1858e-07,1.123e-07,1.1015e-07,1.0384e-07,9.621e-08,8.95e-08,8.6194e-08,5.9425e-08,5.8647e-08,4.8196e-08,3.5827e-08,2.7044e-08,1.8229e-08,1.8127e-08,1.5743e-08,1.3173e-08,1.0398e-08,1.0371e-08,9.5521e-09,6.4747e-09,5.9127e-09,5.8538e-09,3.6797e-09,3.3209e-09,3.13e-09,2.607e-09,2.1733e-09,1.5516e-09,1.4715e-09,1.1385e-09,6.3785e-10,6.3289e-10,6.0338e-10,5.4719e-10,5.0673e-10,4.6087e-10,4.1197e-10,1.4336e-10,1.0829e-10,7.0241e-11,5.0799e-11,4.9992e-11,4.818e-11,2.9613e-11,2.6418e-11,2.6168e-11,1.6355e-11,7.3298e-12,7.1439e-12,5.6273e-12,5.3557e-12,3.083e-12,2.6392e-12,1.8772e-12,1.5705e-12,1.2887e-12,1.2399e-12,9.7952e-13,9.3957e-13,9.2117e-13,5.3741e-13,4.5702e-13,4.2686e-13,3.4176e-13,3.1859e-13,2.3072e-13,2.143e-13,1.8467e-13,1.2729e-13,1.2684e-13,1.0599e-13,9.9748e-14,9.974e-14,6.7007e-14,6.6167e-14,5.6124e-14,4.7152e-14,3.2202e-14,2.2797e-14,1.7772e-14,1.1939e-14,8.246e-15,5.088e-15,4.9887e-15,3.4332e-15,2.3927e-15,1.9324e-15,1.0872e-15,9.1773e-16,6.4977e-16,5.2933e-16,3.4444e-16,3.291e-16,2.9958e-16,2.4096e-16,1.5248e-16,9.5011e-17,7.3866e-17,5.741e-17,5.0321e-17,4.9395e-17,3.8867e-17,2.9439e-17,1.2529e-17,9.9659e-18,8.7833e-18,6.641e-18,6.6282e-18,5.0287e-18,4.8586e-18,4.0263e-18,3.4613e-18,2.0763e-18,1.9278e-18,1.2905e-18,8.8681e-19,2.5761e-19,2.0384e-19,1.8201e-19,1.3516e-19,1.0215e-19,9.1815e-20,7.4174e-20,6.3616e-20,5.2564e-20,3.8319e-20,3.8254e-20,2.161e-20,1.8558e-20,1.7978e-20,1.7675e-20,9.8517e-21,9.7212e-21,9.1631e-21,8.7638e-21,7.8079e-21,6.4461e-21,5.4266e-21,2.5189e-21,4.8225e-22,2.9342e-22,2.8078e-22,2.7074e-22,2.4063e-22,2.2534e-22,1.2055e-22,7.9663e-23,5.8868e-23,4.9679e-23,3.4821e-23,2.5719e-23,2.4307e-23,1.5854e-23,1.2438e-23,9.2421e-24,5.7243e-24,3.0358e-24,2.9149e-24,2.3498e-24,2.0228e-24,1.891e-24,9.1919e-25,7.5392e-25,3.0466e-25,2.3668e-25,1.5151e-25,1.1925e-25,1.1034e-25,7.2201e-26,6.8342e-26,6.0599e-26,4.6582e-26,2.8158e-26 1,0.005031,0.0058995,0.0059464,0.006236,0.0064674,0.0067834,0.0074367,0.0092233,0.01055,0.010769,0.011965,0.012171,0.013022,0.015316,0.016106,0.016676,0.019354,0.01985,0.020414,0.022409,0.022633,0.022763,0.024418,0.025444,0.025478,0.027554,0.02775,0.028741,0.028873,0.029003,0.036632,0.04545,0.046328,0.04929,0.052066,0.054309,0.057075,0.060436,0.066746,0.070443,0.076806,0.085462,0.086299,0.0881,0.089791,0.099011,0.099026,0.12403,0.12606,0.1272,0.13573,0.13637,0.15441,0.16196,0.16517,0.1724,0.17711,0.1854,0.18803,0.2091,0.22288,0.27003,0.28398,0.28875,0.29739,0.32189,0.32705,0.33167,0.35383,0.37529,0.38339,0.39009,0.41481,0.45164,0.4917,0.51925,0.52508,0.57764,0.59596,0.60451,0.60831,0.62369,0.68657,0.68857,0.69939,0.71642,0.71974,0.74365,0.80656,0.80735,0.82409,0.82997,0.89169,0.90545,0.90643,0.918,0.9326,0.93288,0.934,0.94211,0.94218,0.94911,0.95169,0.98147,0.99022,0.99047,0.99696,0.99809,0.99932,0.9997,0.99985,0.99995,0.99998,1,0.99961,0.99952,0.99929,0.99907,0.99644,0.99144,0.9819,0.97743,0.96641,0.95169,0.94476,0.94102,0.89272,0.88637,0.88161,0.87194,0.85922,0.84785,0.83837,0.83667,0.83559,0.82331,0.78967,0.78712,0.77336,0.75159,0.73937,0.73737,0.66525,0.66447,0.64992,0.62136,0.61615,0.59672,0.59214,0.56015,0.53941,0.49293,0.49184,0.44035,0.43461,0.43279,0.40081,0.39882,0.38759,0.37303,0.36854,0.36517,0.35202,0.34986,0.34846,0.33827,0.33474,0.33382,0.32555,0.32261,0.30657,0.28104,0.27663,0.27546,0.26461,0.26021,0.24277,0.21409,0.20569,0.19288,0.18831,0.17604,0.16442,0.1635,0.16279,0.1627,0.15941,0.15914,0.14915,0.14473,0.13669,0.13634,0.13423,0.12129,0.12093,0.11513,0.1088,0.098176,0.096843,0.093116,0.092297,0.090255,0.086914,0.081987,0.081856,0.071535,0.061113,0.060084,0.058962,0.058616,0.053174,0.05004,0.040559,0.040107,0.039211,0.037737,0.032673,0.028032,0.023621,0.02242,0.021729,0.020058,0.017027,0.015828,0.014385,0.012395,0.01088,0.010625,0.0082167,0.0079395,0.0078404,0.0073745,0.0071963,0.0059075,0.0054221,0.0052887,0.0052753,0.0050057,0.0046621,0.0045103,0.0044442,0.0034208,0.0034197,0.0026882,0.0020303,0.0015584,0.001216,0.0010909,0.0010602,0.00099143,0.0009348,0.00081313,0.00080067,0.00060976,0.00056882,0.00049446,0.00041482,0.00037262,0.00036811,0.00033717,0.00031782,0.00027466,0.00022059,0.00021607,0.00019605,0.00016801,0.00014808,0.0001472,9.4624e-05,8.7952e-05,8.4911e-05,7.7562e-05,7.399e-05,6.8678e-05,6.0964e-05,5.8092e-05,5.4303e-05,4.8698e-05,4.2264e-05,3.6892e-05,3.6385e-05,3.0785e-05,2.7562e-05,2.4992e-05,1.9977e-05,1.8023e-05,1.7359e-05,1.5189e-05,1.5066e-05,1.4206e-05,1.3841e-05,9.7891e-06,8.9504e-06,8.6436e-06,7.367e-06,6.7118e-06,6.6173e-06,5.3166e-06,3.4759e-06,3.0593e-06,2.8639e-06,2.4543e-06,2.4218e-06,2.034e-06,1.9954e-06,1.5908e-06,1.3913e-06,1.0613e-06,1.0355e-06,1.0119e-06,9.9887e-07,9.5752e-07,9.2503e-07,9.0574e-07,7.2481e-07,6.9166e-07,4.4223e-07,3.802e-07,3.4383e-07,3.3039e-07,2.3686e-07,2.3548e-07,2.1086e-07,2.0022e-07,1.542e-07,1.5293e-07,1.4996e-07,1.233e-07,1.1677e-07,1.1454e-07,1.0799e-07,1.0006e-07,9.3093e-08,8.9659e-08,6.1842e-08,6.1033e-08,5.0168e-08,3.7306e-08,2.817e-08,1.8997e-08,1.889e-08,1.6408e-08,1.3733e-08,1.0843e-08,1.0814e-08,9.9617e-09,6.7553e-09,6.1696e-09,6.1082e-09,3.8416e-09,3.4675e-09,3.2683e-09,2.7227e-09,2.2702e-09,1.6214e-09,1.5378e-09,1.1901e-09,6.6718e-10,6.62e-10,6.3117e-10,5.7245e-10,5.3016e-10,4.8223e-10,4.3111e-10,1.5018e-10,1.1348e-10,7.3639e-11,5.3275e-11,5.2429e-11,5.053e-11,3.1073e-11,2.7723e-11,2.7462e-11,1.7172e-11,7.7016e-12,7.5064e-12,5.9142e-12,5.6291e-12,3.2421e-12,2.7757e-12,1.975e-12,1.6525e-12,1.3563e-12,1.305e-12,1.0312e-12,9.8915e-13,9.6979e-13,5.6606e-13,4.8146e-13,4.4971e-13,3.6013e-13,3.3573e-13,2.4321e-13,2.2591e-13,1.9471e-13,1.3425e-13,1.3378e-13,1.1181e-13,1.0523e-13,1.0522e-13,7.0712e-14,6.9827e-14,5.9237e-14,4.9775e-14,3.4005e-14,2.4081e-14,1.8777e-14,1.2618e-14,8.7179e-15,5.3814e-15,5.2765e-15,3.6324e-15,2.5323e-15,2.0455e-15,1.1514e-15,9.7205e-16,6.8842e-16,5.6091e-16,3.6512e-16,3.4887e-16,3.176e-16,2.5551e-16,1.6174e-16,1.0082e-16,7.8399e-17,6.0946e-17,5.3425e-17,5.2443e-17,4.1273e-17,3.1269e-17,1.3317e-17,1.0594e-17,9.338e-18,7.062e-18,7.0484e-18,5.3487e-18,5.1678e-18,4.2832e-18,3.6826e-18,2.2099e-18,2.052e-18,1.374e-18,9.4448e-19,2.7462e-19,2.1733e-19,1.9407e-19,1.4415e-19,1.0897e-19,9.7952e-20,7.9145e-20,6.7886e-20,5.6101e-20,4.0906e-20,4.0837e-20,2.3079e-20,1.9822e-20,1.9202e-20,1.888e-20,1.0527e-20,1.0388e-20,9.792e-21,9.3656e-21,8.3447e-21,6.8902e-21,5.8012e-21,2.6943e-21,5.1643e-22,3.1432e-22,3.0079e-22,2.9004e-22,2.5781e-22,2.4144e-22,1.2922e-22,8.5414e-23,6.3131e-23,5.3283e-23,3.7356e-23,2.7597e-23,2.6083e-23,1.7018e-23,1.3353e-23,9.9239e-24,6.1485e-24,3.2622e-24,3.1324e-24,2.5255e-24,2.1742e-24,2.0327e-24,9.8851e-25,8.1088e-25,3.2787e-25,2.5476e-25,1.6313e-25,1.2841e-25,1.1882e-25,7.7774e-26,7.362e-26,6.5285e-26,5.0192e-26,3.035e-26 1,0.0045936,0.005394,0.0054372,0.0057044,0.005918,0.0062097,0.0068133,0.0084665,0.0096965,0.0098991,0.01101,0.011201,0.011992,0.014126,0.014862,0.015393,0.017892,0.018355,0.018881,0.020746,0.020955,0.021077,0.022626,0.023586,0.023618,0.025563,0.025747,0.026676,0.0268,0.026922,0.034088,0.042394,0.043222,0.046018,0.04864,0.05076,0.053376,0.056557,0.062535,0.066042,0.072084,0.080314,0.08111,0.082825,0.084434,0.093221,0.093235,0.11713,0.11907,0.12017,0.12833,0.12895,0.14626,0.15352,0.15661,0.16357,0.1681,0.1761,0.17863,0.19897,0.2123,0.25804,0.27161,0.27624,0.28466,0.30856,0.3136,0.31811,0.33978,0.36081,0.36875,0.37533,0.39962,0.4359,0.47547,0.50277,0.50855,0.56082,0.57909,0.58763,0.59143,0.60681,0.66993,0.67195,0.68286,0.70005,0.7034,0.7276,0.79166,0.79248,0.80963,0.81567,0.87955,0.89394,0.89497,0.90714,0.9226,0.92289,0.92409,0.93274,0.93281,0.94025,0.94302,0.97582,0.98598,0.98628,0.99441,0.99599,0.99791,0.99862,0.99898,0.9993,0.9994,0.99961,1,0.99999,0.99995,0.99988,0.9984,0.99468,0.98676,0.98288,0.97309,0.95969,0.9533,0.94983,0.90429,0.89823,0.89367,0.88439,0.87216,0.86118,0.85202,0.85036,0.84932,0.8374,0.80461,0.80212,0.78865,0.76728,0.75524,0.75327,0.68192,0.68114,0.66668,0.63822,0.63302,0.6136,0.60902,0.57696,0.55614,0.50933,0.50822,0.45616,0.45034,0.44849,0.41603,0.414,0.40257,0.38776,0.38318,0.37974,0.36632,0.36413,0.3627,0.35228,0.34868,0.34774,0.33928,0.33627,0.31986,0.29367,0.28914,0.28794,0.27679,0.27226,0.25431,0.22472,0.21605,0.20279,0.19806,0.18534,0.17329,0.17233,0.17159,0.1715,0.16808,0.1678,0.15742,0.15282,0.14444,0.14408,0.14188,0.12838,0.128,0.12194,0.11532,0.1042,0.10281,0.098901,0.098042,0.0959,0.092394,0.08722,0.087083,0.076229,0.065246,0.06416,0.062975,0.06261,0.056861,0.053547,0.043503,0.043025,0.042073,0.040509,0.035128,0.030186,0.025482,0.024198,0.02346,0.021674,0.018428,0.017142,0.015594,0.013456,0.011825,0.011551,0.0089536,0.0086541,0.008547,0.0080436,0.0078509,0.006456,0.0059299,0.0057853,0.0057708,0.0054783,0.0051054,0.0049405,0.0048687,0.0037558,0.0037545,0.0029573,0.0022385,0.0017218,0.0013461,0.0012086,0.0011748,0.0010992,0.0010368,0.00090281,0.00088908,0.00067844,0.0006332,0.00055097,0.00046282,0.00041604,0.00041104,0.00037673,0.00035525,0.00030731,0.00024719,0.00024216,0.00021986,0.00018861,0.00016638,0.0001654,0.00010663,9.9158e-05,9.5751e-05,8.7515e-05,8.3509e-05,7.755e-05,6.8892e-05,6.5666e-05,6.1409e-05,5.5109e-05,4.787e-05,4.182e-05,4.125e-05,3.4937e-05,3.13e-05,2.8398e-05,2.273e-05,2.0519e-05,1.9768e-05,1.731e-05,1.7171e-05,1.6196e-05,1.5783e-05,1.1185e-05,1.0232e-05,9.8834e-06,8.4315e-06,7.6856e-06,7.5781e-06,6.0961e-06,3.995e-06,3.5186e-06,3.2951e-06,2.8263e-06,2.7891e-06,2.3447e-06,2.3004e-06,1.8362e-06,1.6071e-06,1.2277e-06,1.198e-06,1.1708e-06,1.1558e-06,1.1082e-06,1.0708e-06,1.0486e-06,8.4012e-07,8.0189e-07,5.139e-07,4.4216e-07,4.0008e-07,3.8451e-07,2.7612e-07,2.7452e-07,2.4595e-07,2.3361e-07,1.8015e-07,1.7867e-07,1.7521e-07,1.442e-07,1.3661e-07,1.3401e-07,1.2638e-07,1.1715e-07,1.0903e-07,1.0503e-07,7.2572e-08,7.1628e-08,5.8933e-08,4.3885e-08,3.3182e-08,2.2418e-08,2.2293e-08,1.9377e-08,1.623e-08,1.2829e-08,1.2795e-08,1.1791e-08,8.0101e-09,7.3185e-09,7.2461e-09,4.5667e-09,4.1239e-09,3.888e-09,3.2416e-09,2.7051e-09,1.9348e-09,1.8355e-09,1.4221e-09,7.9922e-10,7.9304e-10,7.5626e-10,6.8619e-10,6.3571e-10,5.7846e-10,5.1739e-10,1.8104e-10,1.3695e-10,8.9028e-11,6.4493e-11,6.3472e-11,6.1183e-11,3.7697e-11,3.3649e-11,3.3333e-11,2.0882e-11,9.3951e-12,9.158e-12,7.2221e-12,6.8752e-12,3.9683e-12,3.3994e-12,2.4219e-12,2.0279e-12,1.6655e-12,1.6028e-12,1.2676e-12,1.2161e-12,1.1924e-12,6.9741e-13,5.9354e-13,5.5453e-13,4.4444e-13,4.1444e-13,3.0057e-13,2.7928e-13,2.4083e-13,1.6627e-13,1.6569e-13,1.3857e-13,1.3044e-13,1.3043e-13,8.7783e-14,8.6688e-14,7.3584e-14,6.1869e-14,4.2324e-14,3.0009e-14,2.342e-14,1.5759e-14,1.0902e-14,6.7411e-15,6.6101e-15,4.5564e-15,3.1803e-15,2.5707e-15,1.4499e-15,1.2247e-15,8.6838e-16,7.0802e-16,4.6154e-16,4.4106e-16,4.0165e-16,3.2336e-16,2.05e-16,1.2798e-16,9.9601e-17,7.749e-17,6.7957e-17,6.6712e-17,5.2543e-17,3.9842e-17,1.7014e-17,1.3545e-17,1.1944e-17,9.0407e-18,9.0234e-18,6.8533e-18,6.6223e-18,5.492e-18,4.724e-18,2.8393e-18,2.6371e-18,1.768e-18,1.2167e-18,3.5509e-19,2.8121e-19,2.512e-19,1.8676e-19,1.4129e-19,1.2705e-19,1.0272e-19,8.8146e-20,7.2884e-20,5.3194e-20,5.3104e-20,3.0062e-20,2.5831e-20,2.5025e-20,2.4606e-20,1.3744e-20,1.3563e-20,1.2787e-20,1.2231e-20,1.0902e-20,9.0066e-21,7.5869e-21,3.5314e-21,6.8005e-22,4.1449e-22,3.9669e-22,3.8256e-22,3.4015e-22,3.1861e-22,1.7082e-22,1.1304e-22,8.3621e-23,7.061e-23,4.9552e-23,3.6637e-23,3.4633e-23,2.2622e-23,1.7762e-23,1.3211e-23,8.1959e-24,4.3559e-24,4.183e-24,3.3745e-24,2.9063e-24,2.7176e-24,1.3241e-24,1.0868e-24,4.4047e-25,3.4247e-25,2.1955e-25,1.7294e-25,1.6005e-25,1.0488e-25,9.9288e-26,8.8073e-26,6.7759e-26,4.1024e-26 1,0.004545,0.0053378,0.0053806,0.0056453,0.0058569,0.0061459,0.0067439,0.0083822,0.0096013,0.0098021,0.010903,0.011093,0.011877,0.013993,0.014723,0.015249,0.017728,0.018187,0.018709,0.020559,0.020767,0.020888,0.022425,0.023378,0.02341,0.02534,0.025522,0.026444,0.026568,0.026688,0.033802,0.04205,0.042873,0.045649,0.048253,0.05036,0.052959,0.05612,0.06206,0.065545,0.07155,0.079732,0.080523,0.082227,0.083828,0.092565,0.092579,0.11635,0.11828,0.11937,0.12749,0.12811,0.14533,0.15256,0.15564,0.16256,0.16708,0.17504,0.17756,0.19782,0.21109,0.25666,0.27019,0.27481,0.2832,0.30703,0.31206,0.31655,0.33817,0.35914,0.36707,0.37363,0.39787,0.43408,0.47359,0.50086,0.50664,0.55887,0.57713,0.58567,0.58946,0.60484,0.66799,0.67001,0.68092,0.69813,0.70149,0.72572,0.78991,0.79072,0.80792,0.81398,0.8781,0.89257,0.8936,0.90584,0.92139,0.92169,0.92289,0.93161,0.93168,0.93917,0.94197,0.97511,0.98544,0.98574,0.99407,0.99569,0.9977,0.99845,0.99882,0.99918,0.99928,0.99952,0.99999,1,0.99998,0.99993,0.99857,0.99501,0.98728,0.98347,0.97382,0.96058,0.95425,0.95082,0.9056,0.89957,0.89504,0.88581,0.87364,0.8627,0.85358,0.85193,0.85089,0.83901,0.80632,0.80384,0.79041,0.76908,0.75707,0.75511,0.68385,0.68307,0.66862,0.64018,0.63498,0.61557,0.61098,0.57892,0.55809,0.51125,0.51014,0.45801,0.45219,0.45033,0.41781,0.41578,0.40434,0.38949,0.3849,0.38145,0.36801,0.3658,0.36437,0.35393,0.35032,0.34938,0.3409,0.33788,0.32142,0.29516,0.29062,0.28942,0.27823,0.27369,0.25568,0.22598,0.21727,0.20397,0.19922,0.18645,0.17434,0.17338,0.17263,0.17255,0.16911,0.16882,0.1584,0.15378,0.14536,0.145,0.14279,0.12922,0.12884,0.12275,0.1161,0.10492,0.10352,0.099592,0.098729,0.096574,0.093049,0.087846,0.087708,0.076791,0.065741,0.064649,0.063456,0.063089,0.057304,0.053968,0.043858,0.043375,0.042418,0.040843,0.035423,0.030446,0.025706,0.024413,0.023669,0.021869,0.018597,0.017301,0.01574,0.013585,0.01194,0.011663,0.009043,0.0087409,0.0086329,0.0081249,0.0079305,0.0065227,0.0059917,0.0058457,0.0058311,0.0055358,0.0051594,0.0049929,0.0049204,0.0037966,0.0037954,0.0029901,0.002264,0.0017418,0.001362,0.001223,0.0011888,0.0011124,0.0010493,0.00091382,0.00089993,0.00068688,0.00064112,0.00055793,0.00046873,0.00042139,0.00041633,0.0003816,0.00035987,0.00031134,0.00025047,0.00024538,0.00022281,0.00019116,0.00016864,0.00016765,0.00010812,0.00010055,9.7094e-05,8.8749e-05,8.4689e-05,7.8651e-05,6.9875e-05,6.6606e-05,6.2291e-05,5.5905e-05,4.8566e-05,4.2433e-05,4.1854e-05,3.5453e-05,3.1765e-05,2.8822e-05,2.3073e-05,2.083e-05,2.0068e-05,1.7575e-05,1.7434e-05,1.6445e-05,1.6026e-05,1.1359e-05,1.0392e-05,1.0038e-05,8.5645e-06,7.8073e-06,7.6982e-06,6.1936e-06,4.06e-06,3.5762e-06,3.3491e-06,2.8729e-06,2.8351e-06,2.3836e-06,2.3387e-06,1.867e-06,1.6342e-06,1.2486e-06,1.2184e-06,1.1908e-06,1.1756e-06,1.1272e-06,1.0892e-06,1.0666e-06,8.5464e-07,8.1577e-07,5.2294e-07,4.4998e-07,4.0717e-07,3.9133e-07,2.8108e-07,2.7945e-07,2.5039e-07,2.3783e-07,1.8343e-07,1.8192e-07,1.7841e-07,1.4685e-07,1.3912e-07,1.3648e-07,1.2871e-07,1.1932e-07,1.1105e-07,1.0697e-07,7.3932e-08,7.2971e-08,6.0045e-08,4.472e-08,3.3819e-08,2.2853e-08,2.2726e-08,1.9754e-08,1.6548e-08,1.3082e-08,1.3048e-08,1.2024e-08,8.1701e-09,7.465e-09,7.3912e-09,4.6593e-09,4.2077e-09,3.9672e-09,3.3079e-09,2.7607e-09,1.9749e-09,1.8736e-09,1.4518e-09,8.1615e-10,8.0984e-10,7.723e-10,7.0077e-10,6.4925e-10,5.9081e-10,5.2847e-10,1.8501e-10,1.3997e-10,9.1012e-11,6.5939e-11,6.4897e-11,6.2557e-11,3.8553e-11,3.4414e-11,3.4091e-11,2.1362e-11,9.6145e-12,9.3719e-12,7.3916e-12,7.0367e-12,4.0625e-12,3.4804e-12,2.48e-12,2.0766e-12,1.7057e-12,1.6415e-12,1.2984e-12,1.2457e-12,1.2214e-12,7.1451e-13,6.0814e-13,5.6819e-13,4.5543e-13,4.247e-13,3.0806e-13,2.8624e-13,2.4685e-13,1.7046e-13,1.6986e-13,1.4207e-13,1.3374e-13,1.3373e-13,9.0015e-14,8.8893e-14,7.5461e-14,6.3451e-14,4.3414e-14,3.0785e-14,2.4028e-14,1.6172e-14,1.1189e-14,6.9197e-15,6.7854e-15,4.6779e-15,3.2655e-15,2.6399e-15,1.4893e-15,1.2581e-15,8.9212e-16,7.2743e-16,4.7427e-16,4.5324e-16,4.1276e-16,3.3232e-16,2.1072e-16,1.3158e-16,1.0241e-16,7.9683e-17,6.9883e-17,6.8603e-17,5.4037e-17,4.0979e-17,1.7505e-17,1.3938e-17,1.229e-17,9.3039e-18,9.286e-18,7.0535e-18,6.8158e-18,5.6528e-18,4.8627e-18,2.9232e-18,2.7151e-18,1.8205e-18,1.253e-18,3.6585e-19,2.8976e-19,2.5885e-19,1.9246e-19,1.4561e-19,1.3094e-19,1.0588e-19,9.0861e-20,7.5134e-20,5.4842e-20,5.4749e-20,3.1e-20,2.6638e-20,2.5807e-20,2.5376e-20,1.4176e-20,1.3989e-20,1.3189e-20,1.2617e-20,1.1246e-20,9.2913e-21,7.8271e-21,3.6441e-21,7.0215e-22,4.2802e-22,4.0965e-22,3.9506e-22,3.5128e-22,3.2904e-22,1.7645e-22,1.1678e-22,8.6397e-23,7.2957e-23,5.1206e-23,3.7863e-23,3.5793e-23,2.3383e-23,1.8361e-23,1.3658e-23,8.4742e-24,4.5047e-24,4.326e-24,3.49e-24,3.006e-24,2.8108e-24,1.3699e-24,1.1244e-24,4.5584e-25,3.5445e-25,2.2726e-25,1.7902e-25,1.6569e-25,1.0858e-25,1.028e-25,9.1191e-26,7.0163e-26,4.2487e-26 1,0.0044464,0.0052237,0.0052657,0.0055252,0.0057328,0.0060163,0.0066029,0.0082108,0.0094077,0.009605,0.010686,0.010873,0.011643,0.013723,0.01444,0.014957,0.017395,0.017847,0.01836,0.02018,0.020385,0.020503,0.022016,0.022954,0.022985,0.024885,0.025064,0.025972,0.026094,0.026212,0.033219,0.041348,0.04216,0.044897,0.047466,0.049544,0.052108,0.055227,0.06109,0.06453,0.07046,0.078542,0.079324,0.081008,0.08259,0.091225,0.091239,0.11474,0.11666,0.11773,0.12578,0.12638,0.14344,0.15059,0.15365,0.1605,0.16498,0.17286,0.17536,0.19545,0.20862,0.25385,0.26728,0.27187,0.28021,0.30389,0.30889,0.31336,0.33485,0.35572,0.36361,0.37014,0.39427,0.43034,0.46973,0.49694,0.5027,0.55484,0.57309,0.58163,0.58542,0.6008,0.66398,0.66601,0.67694,0.69418,0.69755,0.72184,0.78628,0.7871,0.80439,0.81048,0.8751,0.88971,0.89076,0.90314,0.91889,0.91919,0.92041,0.92925,0.92933,0.93694,0.93978,0.97363,0.98429,0.9846,0.99332,0.99505,0.99722,0.99806,0.99848,0.99888,0.999,0.99929,0.99995,0.99998,1,0.99999,0.99891,0.99565,0.98831,0.98464,0.9753,0.96238,0.95618,0.95281,0.90828,0.90232,0.89783,0.88871,0.87665,0.86582,0.85677,0.85513,0.85411,0.84232,0.80984,0.80738,0.79402,0.77279,0.76084,0.75888,0.68782,0.68705,0.67262,0.64421,0.63902,0.61962,0.61503,0.58297,0.56212,0.51521,0.51409,0.46184,0.45599,0.45414,0.4215,0.41946,0.40797,0.39306,0.38846,0.38499,0.37149,0.36927,0.36784,0.35735,0.35371,0.35277,0.34425,0.34121,0.32466,0.29825,0.29368,0.29247,0.28121,0.27664,0.25851,0.22859,0.21982,0.2064,0.20162,0.18874,0.17652,0.17555,0.1748,0.17471,0.17125,0.17096,0.16044,0.15577,0.14728,0.14691,0.14468,0.13097,0.13059,0.12444,0.11772,0.10642,0.105,0.10103,0.10015,0.097976,0.09441,0.089147,0.089007,0.077959,0.066771,0.065665,0.064457,0.064085,0.058224,0.054844,0.044595,0.044106,0.043134,0.041537,0.036039,0.030987,0.026174,0.024861,0.024105,0.022276,0.01895,0.017633,0.016045,0.013853,0.012179,0.011898,0.0092299,0.0089222,0.0088121,0.0082947,0.0080966,0.0066621,0.0061209,0.005972,0.0059571,0.0056561,0.0052722,0.0051025,0.0050285,0.0038821,0.0038808,0.0030589,0.0023173,0.0017837,0.0013954,0.0012532,0.0012183,0.0011401,0.0010756,0.0009369,0.00092269,0.00070459,0.00065772,0.00057251,0.00048112,0.00043262,0.00042743,0.00039183,0.00036955,0.0003198,0.00025737,0.00025214,0.00022898,0.0001965,0.00017339,0.00017238,0.00011124,0.00010346,9.9917e-05,9.1342e-05,8.717e-05,8.0964e-05,7.1944e-05,6.8583e-05,6.4146e-05,5.7579e-05,5.0031e-05,4.3721e-05,4.3126e-05,3.6539e-05,3.2743e-05,2.9714e-05,2.3795e-05,2.1485e-05,2.07e-05,1.8132e-05,1.7987e-05,1.6967e-05,1.6536e-05,1.1727e-05,1.073e-05,1.0365e-05,8.8449e-06,8.064e-06,7.9514e-06,6.3992e-06,4.1972e-06,3.6977e-06,3.4632e-06,2.9714e-06,2.9323e-06,2.4659e-06,2.4195e-06,1.932e-06,1.6914e-06,1.2928e-06,1.2616e-06,1.233e-06,1.2173e-06,1.1672e-06,1.1279e-06,1.1045e-06,8.853e-07,8.4509e-07,5.4203e-07,4.665e-07,4.2217e-07,4.0577e-07,2.9157e-07,2.8988e-07,2.5976e-07,2.4675e-07,1.9037e-07,1.8881e-07,1.8517e-07,1.5245e-07,1.4444e-07,1.4169e-07,1.3364e-07,1.2389e-07,1.1532e-07,1.1109e-07,7.6813e-08,7.5815e-08,6.2399e-08,4.649e-08,3.5168e-08,2.3776e-08,2.3643e-08,2.0555e-08,1.7222e-08,1.3618e-08,1.3583e-08,1.2518e-08,8.5095e-09,7.7759e-09,7.6991e-09,4.8558e-09,4.3856e-09,4.1352e-09,3.4487e-09,2.8787e-09,2.0601e-09,1.9545e-09,1.5149e-09,8.5213e-10,8.4556e-10,8.0639e-10,7.3179e-10,6.7803e-10,6.1707e-10,5.5201e-10,1.9346e-10,1.4641e-10,9.5235e-11,6.9021e-11,6.793e-11,6.5484e-11,4.0375e-11,3.6045e-11,3.5707e-11,2.2384e-11,1.0082e-11,9.8281e-12,7.7531e-12,7.3813e-12,4.2636e-12,3.6532e-12,2.6039e-12,2.1808e-12,1.7916e-12,1.7242e-12,1.364e-12,1.3087e-12,1.2833e-12,7.5106e-13,6.3934e-13,5.9738e-13,4.7892e-13,4.4663e-13,3.2406e-13,3.0113e-13,2.5972e-13,1.794e-13,1.7877e-13,1.4955e-13,1.4079e-13,1.4077e-13,9.4792e-14,9.361e-14,7.9477e-14,6.6838e-14,4.5746e-14,3.2448e-14,2.5332e-14,1.7055e-14,1.1804e-14,7.3027e-15,7.161e-15,4.9383e-15,3.4484e-15,2.7882e-15,1.5737e-15,1.3295e-15,9.4306e-16,7.691e-16,5.0161e-16,4.7938e-16,4.366e-16,3.5158e-16,2.2301e-16,1.393e-16,1.0844e-16,8.4393e-17,7.4022e-17,7.2667e-17,5.7249e-17,4.3424e-17,1.8562e-17,1.4781e-17,1.3036e-17,9.8701e-18,9.8512e-18,7.4843e-18,7.2323e-18,5.9991e-18,5.1611e-18,3.1038e-18,2.8829e-18,1.9337e-18,1.3312e-18,3.8904e-19,3.0818e-19,2.7533e-19,2.0475e-19,1.5495e-19,1.3935e-19,1.1269e-19,9.6718e-20,7.9988e-20,5.8398e-20,5.83e-20,3.3023e-20,2.838e-20,2.7495e-20,2.7036e-20,1.511e-20,1.4911e-20,1.4058e-20,1.3449e-20,1.1988e-20,9.906e-21,8.346e-21,3.8878e-21,7.4993e-22,4.5731e-22,4.3769e-22,4.2211e-22,3.7536e-22,3.5162e-22,1.8863e-22,1.2488e-22,9.2406e-23,7.8041e-23,5.4786e-23,4.0519e-23,3.8304e-23,2.5031e-23,1.9658e-23,1.4626e-23,9.0775e-24,4.8273e-24,4.6359e-24,3.7406e-24,3.2221e-24,3.013e-24,1.4691e-24,1.206e-24,4.892e-25,3.8045e-25,2.44e-25,1.9224e-25,1.7793e-25,1.1663e-25,1.1042e-25,9.7963e-26,7.5386e-26,4.5663e-26 1,0.004367,0.0051318,0.0051731,0.0054285,0.0056328,0.0059118,0.0064893,0.0080726,0.0092516,0.009446,0.010511,0.010695,0.011454,0.013504,0.014211,0.014722,0.017126,0.017571,0.018078,0.019874,0.020076,0.020192,0.021685,0.022611,0.022642,0.024517,0.024694,0.025591,0.025711,0.025828,0.032748,0.04078,0.041582,0.044289,0.046828,0.048883,0.051419,0.054503,0.060304,0.063708,0.069577,0.077578,0.078351,0.080019,0.081585,0.090138,0.090152,0.11344,0.11534,0.11641,0.12438,0.12498,0.1419,0.14899,0.15202,0.15883,0.16327,0.1711,0.17358,0.19353,0.2066,0.25156,0.26491,0.26948,0.27777,0.30133,0.3063,0.31075,0.33215,0.35293,0.36078,0.36729,0.39133,0.42729,0.46658,0.49372,0.49948,0.55155,0.56978,0.57832,0.5821,0.59748,0.66069,0.66272,0.67366,0.69093,0.6943,0.71864,0.78329,0.78411,0.80148,0.8076,0.87261,0.88735,0.8884,0.90089,0.91681,0.91711,0.91835,0.92729,0.92737,0.93507,0.93795,0.97239,0.98332,0.98364,0.99268,0.9945,0.9968,0.9977,0.99816,0.99861,0.99874,0.99907,0.99988,0.99993,0.99999,1,0.99915,0.99614,0.98912,0.98558,0.97647,0.96382,0.95773,0.95442,0.91045,0.90454,0.9001,0.89106,0.8791,0.86835,0.85937,0.85774,0.85672,0.84501,0.81272,0.81026,0.79696,0.77582,0.76391,0.76196,0.69108,0.6903,0.6759,0.64751,0.64232,0.62293,0.61835,0.58628,0.56542,0.51845,0.51734,0.46498,0.45912,0.45726,0.42454,0.42249,0.41097,0.39601,0.39139,0.38791,0.37435,0.37213,0.37069,0.36016,0.35651,0.35556,0.34701,0.34396,0.32733,0.30079,0.2962,0.29499,0.28367,0.27907,0.26084,0.23075,0.22192,0.20842,0.2036,0.19063,0.17833,0.17735,0.17659,0.17651,0.17302,0.17272,0.16212,0.15742,0.14886,0.14849,0.14624,0.13242,0.13204,0.12583,0.11905,0.10766,0.10622,0.10222,0.10134,0.099137,0.095537,0.090224,0.090083,0.078927,0.067626,0.066508,0.065288,0.064912,0.058988,0.055571,0.045207,0.044712,0.04373,0.042114,0.03655,0.031436,0.026563,0.025233,0.024467,0.022614,0.019244,0.017909,0.016299,0.014076,0.012379,0.012093,0.0093856,0.0090733,0.0089616,0.0084363,0.0082352,0.0067785,0.0062287,0.0060774,0.0060623,0.0057565,0.0053664,0.0051939,0.0051188,0.0039534,0.0039522,0.0031163,0.0023619,0.0018187,0.0014234,0.0012785,0.0012429,0.0011632,0.0010975,0.00095622,0.00094174,0.00071942,0.00067163,0.00058474,0.00049152,0.00044203,0.00043674,0.00040041,0.00037767,0.00032689,0.00026315,0.00025782,0.00023417,0.00020099,0.00017738,0.00017635,0.00011387,0.00010592,0.00010229,9.3522e-05,8.9256e-05,8.2909e-05,7.3683e-05,7.0245e-05,6.5706e-05,5.8988e-05,5.1264e-05,4.4806e-05,4.4197e-05,3.7454e-05,3.3567e-05,3.0466e-05,2.4403e-05,2.2037e-05,2.1233e-05,1.8601e-05,1.8452e-05,1.7408e-05,1.6966e-05,1.2036e-05,1.1014e-05,1.064e-05,9.0813e-06,8.2804e-06,8.1649e-06,6.5727e-06,4.313e-06,3.8002e-06,3.5595e-06,3.0545e-06,3.0144e-06,2.5354e-06,2.4877e-06,1.987e-06,1.7398e-06,1.3301e-06,1.2981e-06,1.2686e-06,1.2525e-06,1.2011e-06,1.1606e-06,1.1366e-06,9.1124e-07,8.6989e-07,5.5819e-07,4.8048e-07,4.3487e-07,4.1799e-07,3.0045e-07,2.9871e-07,2.6771e-07,2.5431e-07,1.9625e-07,1.9464e-07,1.9089e-07,1.5719e-07,1.4894e-07,1.4611e-07,1.3782e-07,1.2778e-07,1.1894e-07,1.1458e-07,7.9255e-08,7.8227e-08,6.4396e-08,4.7991e-08,3.6313e-08,2.4559e-08,2.4422e-08,2.1235e-08,1.7795e-08,1.4074e-08,1.4037e-08,1.2938e-08,8.798e-09,8.0402e-09,7.9609e-09,5.0229e-09,4.537e-09,4.2782e-09,3.5685e-09,2.9792e-09,2.1326e-09,2.0234e-09,1.5686e-09,8.8279e-10,8.7599e-10,8.3545e-10,7.5822e-10,7.0257e-10,6.3944e-10,5.7208e-10,2.0066e-10,1.5189e-10,9.884e-11,7.1652e-11,7.0521e-11,6.7983e-11,4.1933e-11,3.7439e-11,3.7088e-11,2.3258e-11,1.0482e-11,1.0218e-11,8.0625e-12,7.6761e-12,4.4357e-12,3.8011e-12,2.71e-12,2.27e-12,1.8651e-12,1.795e-12,1.4203e-12,1.3628e-12,1.3363e-12,7.8239e-13,6.6609e-13,6.224e-13,4.9906e-13,4.6544e-13,3.3778e-13,3.139e-13,2.7077e-13,1.8708e-13,1.8643e-13,1.5597e-13,1.4684e-13,1.4682e-13,9.8893e-14,9.7662e-14,8.2926e-14,6.9747e-14,4.775e-14,3.3878e-14,2.6452e-14,1.7814e-14,1.2332e-14,7.6322e-15,7.4842e-15,5.1625e-15,3.6058e-15,2.9159e-15,1.6464e-15,1.3911e-15,9.8697e-16,8.0501e-16,5.2517e-16,5.0192e-16,4.5715e-16,3.6818e-16,2.3361e-16,1.4597e-16,1.1365e-16,8.846e-17,7.7595e-17,7.6176e-17,6.0023e-17,4.5536e-17,1.9475e-17,1.5511e-17,1.368e-17,1.036e-17,1.034e-17,7.8569e-18,7.5925e-18,6.2986e-18,5.4192e-18,3.2601e-18,3.0282e-18,2.0316e-18,1.399e-18,4.0914e-19,3.2415e-19,2.8961e-19,2.1541e-19,1.6304e-19,1.4663e-19,1.186e-19,1.018e-19,8.4198e-20,6.1483e-20,6.138e-20,3.4779e-20,2.9891e-20,2.8961e-20,2.8477e-20,1.5921e-20,1.5711e-20,1.4813e-20,1.4171e-20,1.2633e-20,1.044e-20,8.7968e-21,4.0995e-21,7.9151e-22,4.8279e-22,4.6209e-22,4.4566e-22,3.9633e-22,3.7127e-22,1.9924e-22,1.3194e-22,9.7641e-23,8.247e-23,5.7906e-23,4.2834e-23,4.0494e-23,2.6468e-23,2.0789e-23,1.547e-23,9.6037e-24,5.1088e-24,4.9064e-24,3.9593e-24,3.4107e-24,3.1896e-24,1.5557e-24,1.2772e-24,5.1835e-25,4.0317e-25,2.5864e-25,2.0379e-25,1.8863e-25,1.2367e-25,1.1709e-25,1.0389e-25,7.9955e-26,4.8443e-26 1,0.0038082,0.0044843,0.0045209,0.004747,0.004928,0.0051753,0.0056877,0.0070957,0.008147,0.0083204,0.0092722,0.0094366,0.010116,0.011954,0.012589,0.013048,0.015211,0.015613,0.016069,0.01769,0.017873,0.017978,0.019328,0.020165,0.020193,0.021892,0.022053,0.022866,0.022974,0.023081,0.029373,0.036706,0.03744,0.039918,0.042246,0.044132,0.046461,0.049297,0.054638,0.057778,0.063199,0.070605,0.071323,0.072869,0.074322,0.082266,0.082278,0.104,0.10577,0.10677,0.11423,0.1148,0.13067,0.13735,0.1402,0.14662,0.15081,0.1582,0.16054,0.17943,0.19184,0.23469,0.24747,0.25184,0.25979,0.28243,0.28722,0.2915,0.31214,0.33223,0.33985,0.34615,0.36951,0.40456,0.44302,0.4697,0.47536,0.52682,0.54492,0.5534,0.55717,0.57248,0.63579,0.63783,0.64884,0.66627,0.66968,0.69434,0.76037,0.76122,0.77911,0.78544,0.85329,0.86888,0.87,0.88331,0.90041,0.90073,0.90207,0.91176,0.91185,0.92026,0.92341,0.96212,0.97507,0.97546,0.98688,0.98935,0.99267,0.99406,0.99482,0.99559,0.99583,0.99644,0.9984,0.99857,0.99891,0.99915,1,0.99891,0.99433,0.99169,0.98447,0.97385,0.9686,0.96571,0.92608,0.92064,0.91653,0.90812,0.89695,0.88685,0.87837,0.87683,0.87587,0.86476,0.8339,0.83154,0.81873,0.7983,0.78673,0.78483,0.71543,0.71466,0.70045,0.67234,0.66719,0.6479,0.64334,0.6113,0.59039,0.54311,0.54198,0.48893,0.48297,0.48108,0.44772,0.44563,0.43385,0.41853,0.4138,0.41023,0.39631,0.39403,0.39254,0.38171,0.37796,0.37698,0.36817,0.36502,0.34786,0.32039,0.31563,0.31437,0.30262,0.29784,0.27886,0.24744,0.23819,0.22403,0.21897,0.20533,0.19237,0.19134,0.19054,0.19045,0.18676,0.18645,0.17525,0.17028,0.16121,0.16082,0.15843,0.14376,0.14335,0.13675,0.12953,0.11736,0.11583,0.11154,0.1106,0.10824,0.10439,0.098689,0.098537,0.086546,0.074361,0.073153,0.071835,0.071428,0.065019,0.061316,0.050054,0.049515,0.048445,0.046683,0.04061,0.035011,0.029661,0.028198,0.027355,0.025313,0.021593,0.020116,0.018333,0.015865,0.013977,0.013659,0.010638,0.010289,0.010164,0.0095757,0.0093504,0.0077162,0.0070982,0.0069281,0.006911,0.0065667,0.0061273,0.0059328,0.0058481,0.0045314,0.0045299,0.0035823,0.0027241,0.0021041,0.0016514,0.0014851,0.0014442,0.0013527,0.0012771,0.0011144,0.0010977,0.00084101,0.00078573,0.0006851,0.00057694,0.00051943,0.00051328,0.00047101,0.00044454,0.00038534,0.00031089,0.00030465,0.00027698,0.0002381,0.00021039,0.00020918,0.00013565,0.00012626,0.00012198,0.00011162,0.00010658,9.9069e-05,8.8143e-05,8.4068e-05,7.8686e-05,7.0712e-05,6.1533e-05,5.3849e-05,5.3123e-05,4.5087e-05,4.0449e-05,3.6743e-05,2.9491e-05,2.6655e-05,2.5691e-05,2.2533e-05,2.2355e-05,2.11e-05,2.0569e-05,1.4636e-05,1.3403e-05,1.2952e-05,1.107e-05,1.0102e-05,9.9619e-06,8.034e-06,5.2905e-06,4.6664e-06,4.3732e-06,3.7575e-06,3.7086e-06,3.1237e-06,3.0654e-06,2.4529e-06,2.1499e-06,1.6473e-06,1.6079e-06,1.5717e-06,1.5519e-06,1.4886e-06,1.4389e-06,1.4094e-06,1.1319e-06,1.0809e-06,6.9598e-07,5.9977e-07,5.4325e-07,5.2233e-07,3.7638e-07,3.7422e-07,3.3566e-07,3.1898e-07,2.4664e-07,2.4463e-07,2.3995e-07,1.9787e-07,1.8756e-07,1.8402e-07,1.7365e-07,1.6109e-07,1.5003e-07,1.4457e-07,1.0027e-07,9.8974e-08,8.1589e-08,6.0932e-08,4.6196e-08,3.1328e-08,3.1155e-08,2.7116e-08,2.2751e-08,1.8023e-08,1.7976e-08,1.6578e-08,1.1303e-08,1.0335e-08,1.0234e-08,6.4773e-09,5.8546e-09,5.5228e-09,4.6122e-09,3.8551e-09,2.7657e-09,2.6249e-09,2.0383e-09,1.1514e-09,1.1426e-09,1.09e-09,9.8988e-10,9.1767e-10,8.3572e-10,7.4821e-10,2.6417e-10,2.0031e-10,1.3068e-10,9.4922e-11,9.3433e-11,9.009e-11,5.573e-11,4.9791e-11,4.9327e-11,3.1019e-11,1.4046e-11,1.3694e-11,1.082e-11,1.0304e-11,5.973e-12,5.123e-12,3.6595e-12,3.0683e-12,2.5239e-12,2.4295e-12,1.9249e-12,1.8473e-12,1.8116e-12,1.0639e-12,9.0652e-13,8.4738e-13,6.8028e-13,6.3469e-13,4.6142e-13,4.2897e-13,3.7032e-13,2.5638e-13,2.5549e-13,2.1395e-13,2.0149e-13,2.0147e-13,1.3599e-13,1.343e-13,1.1414e-13,9.6088e-14,6.5915e-14,4.685e-14,3.6629e-14,2.4718e-14,1.7144e-14,1.0636e-14,1.0431e-14,7.209e-15,5.0444e-15,4.0836e-15,2.3123e-15,1.9554e-15,1.3897e-15,1.1347e-15,7.4179e-16,7.091e-16,6.4615e-16,5.2095e-16,3.3128e-16,2.0747e-16,1.6173e-16,1.2603e-16,1.1062e-16,1.0861e-16,8.5676e-17,6.5083e-17,2.7947e-17,2.2282e-17,1.9664e-17,1.491e-17,1.4882e-17,1.1323e-17,1.0944e-17,9.0864e-18,7.8233e-18,4.7173e-18,4.3834e-18,2.9461e-18,2.0322e-18,5.9764e-19,4.7398e-19,4.2369e-19,3.1556e-19,2.3914e-19,2.1517e-19,1.7419e-19,1.4962e-19,1.2386e-19,9.0568e-20,9.0416e-20,5.1359e-20,4.417e-20,4.2801e-20,4.2089e-20,2.359e-20,2.3281e-20,2.1956e-20,2.1008e-20,1.8738e-20,1.5498e-20,1.3068e-20,6.1099e-21,1.1879e-21,7.2606e-22,6.9506e-22,6.7043e-22,5.9651e-22,5.5895e-22,3.0074e-22,1.9948e-22,1.4781e-22,1.2493e-22,8.7848e-23,6.5062e-23,6.1522e-23,4.0281e-23,3.167e-23,2.3594e-23,1.4676e-23,7.8267e-24,7.5178e-24,6.0718e-24,5.2336e-24,4.8956e-24,2.3947e-24,1.9675e-24,8.0131e-25,6.2387e-25,4.009e-25,3.1618e-25,2.9274e-25,1.9225e-25,1.8206e-25,1.616e-25,1.245e-25,7.5576e-26 1,0.0032556,0.0038424,0.0038742,0.0040708,0.0042283,0.0044436,0.0048902,0.0061206,0.0070419,0.0071941,0.0080302,0.0081747,0.0087725,0.010393,0.010954,0.01136,0.013276,0.013632,0.014038,0.015478,0.01564,0.015734,0.016935,0.017682,0.017707,0.019222,0.019366,0.020092,0.020189,0.020284,0.025922,0.032523,0.033185,0.035423,0.037528,0.039235,0.041345,0.043918,0.048773,0.051631,0.056576,0.063346,0.064003,0.065419,0.06675,0.07404,0.074052,0.094068,0.095708,0.096629,0.10354,0.10407,0.11881,0.12502,0.12768,0.13366,0.13758,0.14448,0.14668,0.16438,0.17605,0.21653,0.22866,0.23282,0.24038,0.26195,0.26652,0.27062,0.29038,0.30967,0.31699,0.32306,0.34559,0.37953,0.41697,0.44304,0.44859,0.49918,0.51705,0.52544,0.52918,0.54437,0.60752,0.60956,0.62062,0.63815,0.64159,0.6665,0.73376,0.73463,0.75303,0.75955,0.83025,0.84674,0.84793,0.86209,0.88041,0.88077,0.8822,0.89269,0.89278,0.90194,0.90539,0.94869,0.96385,0.96432,0.97836,0.98155,0.986,0.98794,0.98902,0.99016,0.99052,0.99144,0.99468,0.99501,0.99565,0.99614,0.99891,1,0.9982,0.9966,0.99155,0.98329,0.97901,0.97662,0.94214,0.93725,0.93354,0.92591,0.91568,0.90637,0.89851,0.89708,0.89618,0.88581,0.85674,0.8545,0.84233,0.82279,0.81168,0.80986,0.74246,0.74171,0.72778,0.70011,0.69503,0.67594,0.67142,0.63956,0.61868,0.57121,0.57008,0.51643,0.51038,0.50845,0.47448,0.47235,0.46031,0.44463,0.43977,0.43611,0.42182,0.41947,0.41795,0.4068,0.40293,0.40192,0.39283,0.38959,0.37186,0.34338,0.33843,0.33712,0.32489,0.31992,0.30012,0.26721,0.25749,0.24259,0.23725,0.22286,0.20914,0.20805,0.2072,0.20711,0.2032,0.20288,0.19099,0.1857,0.17605,0.17563,0.17309,0.15742,0.15698,0.14992,0.14218,0.12912,0.12747,0.12285,0.12184,0.1193,0.11514,0.10899,0.10883,0.09585,0.082615,0.0813,0.079864,0.079421,0.072432,0.068386,0.056046,0.055454,0.054278,0.052341,0.04565,0.039463,0.033531,0.031905,0.030968,0.028695,0.024544,0.022892,0.020895,0.018126,0.016001,0.015643,0.012231,0.011835,0.011694,0.011027,0.010772,0.008915,0.0082111,0.0080172,0.0079977,0.0076051,0.0071033,0.0068811,0.0067843,0.0052761,0.0052744,0.0041849,0.0031943,0.0024759,0.0019493,0.0017555,0.0017078,0.0016008,0.0015125,0.0013221,0.0013025,0.0010013,0.00093627,0.00081773,0.00069008,0.00062207,0.00061479,0.00056475,0.00053337,0.00046312,0.00037459,0.00036716,0.00033417,0.00028777,0.00025464,0.00025318,0.00016498,0.00015369,0.00014853,0.00013605,0.00012997,0.00012091,0.00010771,0.00010278,9.6271e-05,8.6613e-05,7.5483e-05,6.6149e-05,6.5267e-05,5.5489e-05,4.9837e-05,4.5316e-05,3.6454e-05,3.2983e-05,3.1802e-05,2.793e-05,2.7711e-05,2.6171e-05,2.5518e-05,1.822e-05,1.67e-05,1.6143e-05,1.3818e-05,1.2621e-05,1.2448e-05,1.006e-05,6.651e-06,5.8734e-06,5.5076e-06,4.739e-06,4.6778e-06,3.9464e-06,3.8734e-06,3.1058e-06,2.7255e-06,2.0933e-06,2.0437e-06,1.9982e-06,1.9731e-06,1.8935e-06,1.8308e-06,1.7935e-06,1.4432e-06,1.3788e-06,8.9125e-07,7.6905e-07,6.9717e-07,6.7055e-07,4.8456e-07,4.818e-07,4.3255e-07,4.1124e-07,3.1867e-07,3.161e-07,3.101e-07,2.5613e-07,2.4289e-07,2.3835e-07,2.2503e-07,2.0888e-07,1.9465e-07,1.8763e-07,1.3052e-07,1.2886e-07,1.0639e-07,7.9643e-08,6.0517e-08,4.1168e-08,4.0941e-08,3.5673e-08,2.9972e-08,2.3787e-08,2.3725e-08,2.1894e-08,1.4971e-08,1.37e-08,1.3566e-08,8.6163e-09,7.794e-09,7.3555e-09,6.1511e-09,5.1483e-09,3.7026e-09,3.5155e-09,2.735e-09,1.5514e-09,1.5396e-09,1.4693e-09,1.3352e-09,1.2385e-09,1.1287e-09,1.0113e-09,3.5971e-10,2.7328e-10,1.7882e-10,1.3017e-10,1.2815e-10,1.2359e-10,7.6705e-11,6.8583e-11,6.7948e-11,4.2863e-11,1.9511e-11,1.9026e-11,1.5056e-11,1.4343e-11,8.3438e-12,7.1635e-12,5.1282e-12,4.3046e-12,3.5453e-12,3.4135e-12,2.7086e-12,2.6001e-12,2.5501e-12,1.5026e-12,1.2816e-12,1.1985e-12,9.6352e-13,8.9933e-13,6.5511e-13,6.0931e-13,5.2648e-13,3.6532e-13,3.6405e-13,3.052e-13,2.8753e-13,2.875e-13,1.9452e-13,1.9213e-13,1.6344e-13,1.3774e-13,9.4699e-14,6.7446e-14,5.2808e-14,3.5719e-14,2.4828e-14,1.5447e-14,1.515e-14,1.0493e-14,7.3572e-15,5.9632e-15,3.3876e-15,2.8675e-15,2.0418e-15,1.669e-15,1.0937e-15,1.0458e-15,9.5344e-16,7.6962e-16,4.9064e-16,3.0806e-16,2.4047e-16,1.8765e-16,1.6483e-16,1.6184e-16,1.2783e-16,9.7253e-17,4.195e-17,3.3488e-17,2.9572e-17,2.2457e-17,2.2414e-17,1.7078e-17,1.6509e-17,1.3721e-17,1.1823e-17,7.148e-18,6.6444e-18,4.4751e-18,3.0928e-18,9.1527e-19,7.2674e-19,6.5001e-19,4.8484e-19,3.6794e-19,3.3124e-19,2.6844e-19,2.3075e-19,1.912e-19,1.4003e-19,1.3979e-19,7.963e-20,6.8535e-20,6.6421e-20,6.5321e-20,3.6716e-20,3.6237e-20,3.4185e-20,3.2717e-20,2.9196e-20,2.417e-20,2.0398e-20,9.5723e-21,1.8757e-21,1.1491e-21,1.1003e-21,1.0615e-21,9.45e-22,8.8575e-22,4.7797e-22,3.1765e-22,2.357e-22,1.9937e-22,1.4042e-22,1.0414e-22,9.8501e-23,6.4619e-23,5.0862e-23,3.7943e-23,2.3652e-23,1.265e-23,1.2153e-23,9.8246e-24,8.4741e-24,7.9291e-24,3.891e-24,3.1997e-24,1.3084e-24,1.0198e-24,6.5659e-25,5.1837e-25,4.8011e-25,3.1588e-25,2.9921e-25,2.6572e-25,2.0495e-25,1.2468e-25 1,0.0026528,0.0031402,0.0031667,0.0033303,0.0034615,0.0036411,0.0040141,0.0050451,0.0058199,0.0059481,0.0066535,0.0067755,0.0072809,0.0086551,0.0091318,0.0094768,0.01111,0.011415,0.011761,0.012994,0.013133,0.013213,0.014244,0.014885,0.014907,0.016211,0.016335,0.01696,0.017044,0.017126,0.022003,0.027748,0.028326,0.030282,0.032125,0.033621,0.035473,0.037735,0.042013,0.044538,0.048914,0.054924,0.055508,0.056768,0.057953,0.064456,0.064466,0.08242,0.083898,0.084727,0.090964,0.091437,0.10479,0.11043,0.11285,0.1183,0.12187,0.12818,0.13018,0.14642,0.15715,0.19462,0.20591,0.20978,0.21684,0.23704,0.24133,0.24517,0.26377,0.28199,0.28893,0.29468,0.3161,0.34851,0.38448,0.40967,0.41504,0.46427,0.48177,0.49,0.49367,0.50862,0.57119,0.57322,0.58426,0.60181,0.60525,0.63031,0.69869,0.69958,0.71848,0.72521,0.799,0.81648,0.81774,0.83288,0.85263,0.85301,0.85457,0.86598,0.86609,0.87612,0.87992,0.92873,0.94659,0.94716,0.96443,0.96852,0.97436,0.977,0.97849,0.98008,0.98058,0.9819,0.98676,0.98728,0.98831,0.98912,0.99433,0.9982,1,0.99975,0.99753,0.99239,0.9894,0.98766,0.96012,0.95598,0.95282,0.94625,0.93733,0.92912,0.92212,0.92085,0.92004,0.91072,0.8842,0.88214,0.87088,0.85266,0.84222,0.84051,0.77623,0.77551,0.76204,0.73516,0.73019,0.71151,0.70706,0.67566,0.65495,0.60754,0.60641,0.55229,0.54616,0.5442,0.50961,0.50743,0.49512,0.47904,0.47405,0.4703,0.45558,0.45316,0.45159,0.44008,0.43608,0.43504,0.42563,0.42227,0.40386,0.37417,0.369,0.36763,0.35483,0.3496,0.32879,0.29402,0.28372,0.26787,0.26219,0.24682,0.23213,0.23096,0.23005,0.22995,0.22576,0.22541,0.21263,0.20693,0.19651,0.19606,0.19331,0.17635,0.17587,0.1682,0.15977,0.14551,0.14371,0.13866,0.13754,0.13476,0.1302,0.12344,0.12326,0.10895,0.094284,0.092824,0.091228,0.090735,0.082951,0.078435,0.064608,0.063943,0.06262,0.06044,0.052889,0.04588,0.039132,0.037277,0.036207,0.033607,0.028846,0.026946,0.024644,0.021442,0.018979,0.018562,0.014587,0.014125,0.013959,0.013179,0.01288,0.010699,0.0098704,0.0096417,0.0096188,0.0091554,0.0085626,0.0082997,0.0081851,0.0063956,0.0063936,0.0050944,0.0039074,0.0030421,0.002405,0.0021697,0.0021117,0.0019816,0.001874,0.0016417,0.0016179,0.001249,0.0011692,0.0010234,0.00086593,0.00078187,0.00077286,0.00071089,0.00067199,0.00058475,0.00047449,0.00046522,0.00042402,0.00036596,0.00032441,0.00032258,0.00021152,0.00019724,0.00019072,0.00017491,0.0001672,0.0001557,0.00013893,0.00013266,0.00012437,0.00011206,9.7845e-05,8.5902e-05,8.4772e-05,7.2231e-05,6.4968e-05,5.915e-05,4.7721e-05,4.3234e-05,4.1706e-05,3.6691e-05,3.6406e-05,3.4409e-05,3.3562e-05,2.4068e-05,2.2084e-05,2.1357e-05,1.8318e-05,1.675e-05,1.6523e-05,1.3389e-05,8.8976e-06,7.8693e-06,7.385e-06,6.366e-06,6.2848e-06,5.313e-06,5.2159e-06,4.1933e-06,3.6856e-06,2.8395e-06,2.773e-06,2.7119e-06,2.6784e-06,2.5715e-06,2.4873e-06,2.4373e-06,1.9662e-06,1.8794e-06,1.2209e-06,1.0553e-06,9.5771e-07,9.2155e-07,6.6836e-07,6.646e-07,5.9738e-07,5.6826e-07,4.4158e-07,4.3806e-07,4.2983e-07,3.5578e-07,3.3758e-07,3.3133e-07,3.1301e-07,2.9078e-07,2.7118e-07,2.6151e-07,1.8262e-07,1.8031e-07,1.4918e-07,1.1201e-07,8.536e-08,5.8299e-08,5.7982e-08,5.0592e-08,4.2582e-08,3.3874e-08,3.3788e-08,3.1205e-08,2.142e-08,1.9618e-08,1.9429e-08,1.2395e-08,1.1223e-08,1.0598e-08,8.8781e-09,7.4437e-09,5.3705e-09,5.1017e-09,3.9786e-09,2.269e-09,2.2519e-09,2.15e-09,1.9556e-09,1.8152e-09,1.6556e-09,1.485e-09,5.3324e-10,4.0613e-10,2.6677e-10,1.9474e-10,1.9174e-10,1.8498e-10,1.1529e-10,1.0319e-10,1.0224e-10,6.4753e-11,2.9676e-11,2.8944e-11,2.295e-11,2.1872e-11,1.2782e-11,1.0988e-11,7.8882e-12,6.6309e-12,5.47e-12,5.2684e-12,4.1883e-12,4.022e-12,3.9453e-12,2.3347e-12,1.994e-12,1.8657e-12,1.5025e-12,1.4032e-12,1.0247e-12,9.5365e-13,8.2498e-13,5.741e-13,5.7214e-13,4.8031e-13,4.5272e-13,4.5268e-13,3.0722e-13,3.0347e-13,2.5848e-13,2.1812e-13,1.504e-13,1.074e-13,8.425e-14,5.7156e-14,3.984e-14,2.4875e-14,2.4401e-14,1.6946e-14,1.1914e-14,9.6714e-15,5.5171e-15,4.6757e-15,3.3377e-15,2.7323e-15,1.796e-15,1.7178e-15,1.5672e-15,1.267e-15,8.1032e-16,5.1048e-16,3.9918e-16,3.1205e-16,2.7434e-16,2.694e-16,2.1315e-16,1.6247e-16,7.0491e-17,5.6358e-17,4.9811e-17,3.7897e-17,3.7826e-17,2.8875e-17,2.7919e-17,2.3233e-17,2.004e-17,1.2157e-17,1.1306e-17,7.6351e-18,5.2897e-18,1.5781e-18,1.255e-18,1.1233e-18,8.3946e-19,6.382e-19,5.7494e-19,4.6657e-19,4.0146e-19,3.3305e-19,2.444e-19,2.44e-19,1.3949e-19,1.2017e-19,1.1649e-19,1.1457e-19,6.4635e-20,6.3797e-20,6.0207e-20,5.7636e-20,5.1472e-20,4.2662e-20,3.6042e-20,1.6994e-20,3.3638e-21,2.067e-21,1.9797e-21,1.9103e-21,1.7018e-21,1.5958e-21,8.6433e-22,5.7584e-22,4.2805e-22,3.6244e-22,2.5581e-22,1.9006e-22,1.7982e-22,1.1826e-22,9.3218e-23,6.9661e-23,4.3544e-23,2.3374e-23,2.2461e-23,1.8181e-23,1.5695e-23,1.4691e-23,7.2392e-24,5.9598e-24,2.4495e-24,1.9119e-24,1.2341e-24,9.7563e-25,9.0401e-25,5.9619e-25,5.649e-25,5.0201e-25,3.8776e-25,2.3656e-25 1,0.0024537,0.0029078,0.0029324,0.003085,0.0032074,0.0033749,0.0037231,0.0046867,0.0054119,0.0055319,0.0061929,0.0063073,0.0067813,0.0080712,0.0085191,0.0088435,0.01038,0.010667,0.010993,0.012154,0.012285,0.012361,0.013333,0.013938,0.013958,0.01519,0.015306,0.015897,0.015977,0.016054,0.020668,0.026114,0.026662,0.02852,0.030271,0.031693,0.033454,0.035607,0.039681,0.042088,0.046263,0.052003,0.052561,0.053766,0.054899,0.061121,0.061131,0.078346,0.079765,0.080562,0.086554,0.087009,0.099855,0.10529,0.10762,0.11288,0.11632,0.12241,0.12435,0.14004,0.15044,0.18678,0.19776,0.20152,0.20839,0.22807,0.23225,0.23601,0.25416,0.27197,0.27876,0.28439,0.30537,0.33719,0.37257,0.39739,0.4027,0.45135,0.46868,0.47685,0.48048,0.49531,0.55756,0.55959,0.5706,0.58812,0.59156,0.61663,0.68528,0.68618,0.70523,0.71202,0.7868,0.80462,0.80591,0.82138,0.84162,0.84201,0.84361,0.85534,0.85545,0.86579,0.86971,0.92047,0.9393,0.9399,0.95835,0.96276,0.96911,0.972,0.97364,0.9754,0.97596,0.97743,0.98288,0.98347,0.98464,0.98558,0.99169,0.9966,0.99975,1,0.99886,0.99491,0.99241,0.99093,0.96608,0.96223,0.95929,0.95313,0.94474,0.93696,0.93031,0.92909,0.92833,0.91942,0.89393,0.89194,0.88105,0.86338,0.85322,0.85155,0.7886,0.78789,0.77464,0.7481,0.74319,0.7247,0.7203,0.68913,0.66853,0.62124,0.6201,0.5659,0.55975,0.55779,0.52302,0.52082,0.50842,0.49222,0.48719,0.4834,0.46854,0.4661,0.46451,0.45288,0.44883,0.44778,0.43826,0.43486,0.41622,0.38611,0.38086,0.37946,0.36645,0.36114,0.33996,0.30452,0.29399,0.2778,0.27198,0.25625,0.2412,0.24,0.23907,0.23896,0.23467,0.2343,0.22119,0.21534,0.20463,0.20416,0.20134,0.18387,0.18338,0.17548,0.16679,0.15207,0.15021,0.14498,0.14383,0.14096,0.13624,0.12924,0.12905,0.11422,0.099,0.097482,0.095823,0.095312,0.087215,0.082513,0.068096,0.067402,0.066021,0.063744,0.055851,0.048513,0.041437,0.03949,0.038366,0.035634,0.030626,0.028624,0.026199,0.022821,0.020219,0.019779,0.015573,0.015083,0.014907,0.014081,0.013763,0.011449,0.010569,0.010326,0.010301,0.0098086,0.009178,0.0088983,0.0087763,0.0068697,0.0068676,0.0054808,0.0042114,0.0032843,0.0026004,0.0023476,0.0022853,0.0021453,0.0020296,0.0017795,0.0017538,0.0013562,0.00127,0.0011125,0.00094231,0.00085136,0.00084161,0.00077451,0.00073237,0.00063781,0.00051818,0.00050811,0.00046336,0.00040025,0.00035505,0.00035306,0.00023205,0.00021647,0.00020935,0.00019208,0.00018366,0.0001711,0.00015276,0.00014591,0.00013683,0.00012336,0.00010779,9.4693e-05,9.3454e-05,7.9695e-05,7.172e-05,6.533e-05,5.2764e-05,4.7827e-05,4.6145e-05,4.0622e-05,4.0309e-05,3.8108e-05,3.7174e-05,2.6703e-05,2.4512e-05,2.3708e-05,2.035e-05,1.8616e-05,1.8365e-05,1.4897e-05,9.9185e-06,8.7773e-06,8.2396e-06,7.1075e-06,7.0173e-06,5.9368e-06,5.8288e-06,4.6907e-06,4.1252e-06,3.1819e-06,3.1077e-06,3.0395e-06,3.0021e-06,2.8828e-06,2.7889e-06,2.733e-06,2.2069e-06,2.1099e-06,1.3732e-06,1.1877e-06,1.0783e-06,1.0378e-06,7.5368e-07,7.4946e-07,6.7396e-07,6.4124e-07,4.9882e-07,4.9485e-07,4.856e-07,4.0225e-07,3.8176e-07,3.7473e-07,3.5409e-07,3.2904e-07,3.0695e-07,2.9605e-07,2.0704e-07,2.0444e-07,1.6927e-07,1.2724e-07,9.707e-08,6.6396e-08,6.6037e-08,5.7651e-08,4.8556e-08,3.866e-08,3.8562e-08,3.5625e-08,2.4489e-08,2.2436e-08,2.2221e-08,1.4201e-08,1.2863e-08,1.2149e-08,1.0184e-08,8.5441e-09,6.1718e-09,5.864e-09,4.5772e-09,2.6157e-09,2.596e-09,2.479e-09,2.2556e-09,2.0942e-09,1.9108e-09,1.7145e-09,6.1786e-10,4.7101e-10,3.0984e-10,2.2642e-10,2.2294e-10,2.1511e-10,1.3428e-10,1.2023e-10,1.1913e-10,7.5564e-11,3.4719e-11,3.3865e-11,2.6872e-11,2.5614e-11,1.4995e-11,1.2896e-11,9.2679e-12,7.7949e-12,6.4341e-12,6.1977e-12,4.9306e-12,4.7354e-12,4.6454e-12,2.7535e-12,2.3528e-12,2.2019e-12,1.7744e-12,1.6575e-12,1.2116e-12,1.1278e-12,9.7606e-13,6.7998e-13,6.7766e-13,5.6919e-13,5.3659e-13,5.3654e-13,3.6456e-13,3.6012e-13,3.0688e-13,2.5909e-13,1.7885e-13,1.2784e-13,1.0036e-13,6.8159e-14,4.7559e-14,2.9734e-14,2.9169e-14,2.0279e-14,1.4271e-14,1.1592e-14,6.6229e-15,5.6155e-15,4.0124e-15,3.2863e-15,2.1627e-15,2.0688e-15,1.8879e-15,1.5271e-15,9.7788e-16,6.168e-16,4.8264e-16,3.7754e-16,3.3203e-16,3.2607e-16,2.5814e-16,1.9691e-16,8.5622e-17,6.8496e-17,6.0558e-17,4.6107e-17,4.602e-17,3.5155e-17,3.3994e-17,2.8302e-17,2.4421e-17,1.4834e-17,1.3798e-17,9.3273e-18,6.4681e-18,1.9356e-18,1.5401e-18,1.3789e-18,1.0312e-18,7.845e-19,7.0693e-19,5.7398e-19,4.9405e-19,4.1005e-19,3.0114e-19,3.0064e-19,1.7211e-19,1.4832e-19,1.4379e-19,1.4143e-19,7.9897e-20,7.8863e-20,7.4436e-20,7.1265e-20,6.366e-20,5.2788e-20,4.4615e-20,2.1074e-20,4.1872e-21,2.5759e-21,2.4673e-21,2.3811e-21,2.1218e-21,1.9898e-21,1.0793e-21,7.1972e-22,5.3537e-22,4.5347e-22,3.2031e-22,2.3814e-22,2.2535e-22,1.4834e-22,1.1699e-22,8.7483e-23,5.4742e-23,2.9426e-23,2.8278e-23,2.29e-23,1.9776e-23,1.8514e-23,9.1369e-24,7.5252e-24,3.0989e-24,2.4201e-24,1.5636e-24,1.2367e-24,1.1461e-24,7.5655e-25,7.1692e-25,6.3727e-25,4.9251e-25,3.0078e-25 1,0.002077,0.0024672,0.0024884,0.0026198,0.0027252,0.0028696,0.0031701,0.0040038,0.004633,0.0047374,0.0053123,0.0054119,0.005825,0.0069514,0.0073433,0.0076273,0.0089749,0.0092267,0.0095133,0.010535,0.010651,0.010718,0.011575,0.012109,0.012126,0.013215,0.013318,0.013841,0.013911,0.013979,0.018073,0.022929,0.02342,0.025081,0.026649,0.027925,0.029506,0.03144,0.035109,0.03728,0.041052,0.046251,0.046757,0.04785,0.048878,0.054535,0.054544,0.070263,0.071563,0.072293,0.07779,0.078208,0.090026,0.095042,0.097194,0.10205,0.10523,0.11088,0.11267,0.12725,0.13693,0.17094,0.18126,0.18481,0.19128,0.20986,0.21381,0.21737,0.23458,0.25152,0.25798,0.26335,0.2834,0.31391,0.348,0.37201,0.37715,0.42449,0.44143,0.44942,0.45298,0.46752,0.52891,0.53092,0.54184,0.55925,0.56268,0.58768,0.65667,0.65758,0.67687,0.68377,0.76035,0.7788,0.78014,0.79623,0.81742,0.81783,0.81951,0.83187,0.83198,0.84292,0.84708,0.90173,0.92251,0.92318,0.94402,0.94909,0.9565,0.95991,0.96186,0.96396,0.96464,0.96641,0.97309,0.97382,0.9753,0.97647,0.98447,0.99155,0.99753,0.99886,1,0.99858,0.99714,0.9962,0.97716,0.97396,0.97147,0.96624,0.95898,0.95216,0.94627,0.94518,0.9445,0.93653,0.91333,0.9115,0.90145,0.885,0.87549,0.87392,0.81405,0.81337,0.80061,0.77493,0.77016,0.75215,0.74785,0.71729,0.697,0.65012,0.64899,0.5948,0.58862,0.58665,0.5516,0.54938,0.53684,0.52042,0.51531,0.51146,0.49635,0.49386,0.49224,0.48038,0.47625,0.47517,0.46545,0.46197,0.44287,0.41193,0.40651,0.40508,0.39165,0.38617,0.36425,0.32741,0.31644,0.29951,0.29343,0.27694,0.26113,0.25986,0.25889,0.25877,0.25425,0.25387,0.24004,0.23386,0.22254,0.22204,0.21905,0.20053,0.20001,0.19161,0.18235,0.16664,0.16465,0.15906,0.15783,0.15475,0.14969,0.14218,0.14198,0.12602,0.10958,0.10794,0.10614,0.10559,0.096804,0.091694,0.075979,0.07522,0.07371,0.071219,0.062566,0.054497,0.046689,0.044535,0.043291,0.040264,0.034701,0.032472,0.029768,0.025993,0.023077,0.022583,0.017852,0.0173,0.017102,0.016168,0.01581,0.013191,0.012192,0.011916,0.011888,0.011328,0.010611,0.010293,0.010154,0.0079777,0.0079753,0.0063864,0.0049262,0.0038554,0.0030626,0.0027687,0.0026962,0.0025333,0.0023985,0.0021066,0.0020766,0.0016113,0.0015102,0.0013252,0.0011249,0.0010176,0.0010061,0.00092685,0.00087704,0.00076512,0.00062321,0.00061125,0.00055804,0.00048289,0.00042898,0.0004266,0.00028178,0.00026307,0.00025452,0.00023376,0.00022363,0.0002085,0.0001864,0.00017812,0.00016717,0.00015088,0.00013204,0.00011616,0.00011466,9.7952e-05,8.8253e-05,8.0471e-05,6.5143e-05,5.911e-05,5.7053e-05,5.0292e-05,4.9909e-05,4.7212e-05,4.6068e-05,3.3206e-05,3.0508e-05,2.9518e-05,2.5377e-05,2.3236e-05,2.2926e-05,1.8636e-05,1.2459e-05,1.1039e-05,1.0369e-05,8.9573e-06,8.8448e-06,7.4951e-06,7.36e-06,5.9355e-06,5.2263e-06,4.0412e-06,3.9479e-06,3.8621e-06,3.815e-06,3.6648e-06,3.5465e-06,3.4761e-06,2.8125e-06,2.6901e-06,1.7578e-06,1.5223e-06,1.3834e-06,1.3318e-06,9.7004e-07,9.6465e-07,8.683e-07,8.2651e-07,6.4438e-07,6.3931e-07,6.2746e-07,5.2063e-07,4.9433e-07,4.8531e-07,4.588e-07,4.2662e-07,3.9822e-07,3.8419e-07,2.6952e-07,2.6616e-07,2.2073e-07,1.6633e-07,1.2718e-07,8.7268e-08,8.6799e-08,7.5862e-08,6.3985e-08,5.104e-08,5.0912e-08,4.7064e-08,3.2451e-08,2.9752e-08,2.9469e-08,1.89e-08,1.7133e-08,1.6189e-08,1.359e-08,1.1417e-08,8.268e-09,7.8588e-09,6.1461e-09,3.5272e-09,3.501e-09,3.3443e-09,3.0451e-09,2.8288e-09,2.5828e-09,2.3194e-09,8.422e-10,6.4331e-10,4.2446e-10,3.1089e-10,3.0614e-10,2.9547e-10,1.8506e-10,1.6582e-10,1.6432e-10,1.0456e-10,4.8302e-11,4.7123e-11,3.7451e-11,3.571e-11,2.0981e-11,1.8064e-11,1.301e-11,1.0955e-11,9.0541e-12,8.7235e-12,6.9506e-12,6.6772e-12,6.5511e-12,3.8965e-12,3.3328e-12,3.1204e-12,2.5182e-12,2.3532e-12,1.7237e-12,1.6052e-12,1.3905e-12,9.7097e-13,9.6767e-13,8.1369e-13,7.6737e-13,7.6731e-13,5.2263e-13,5.163e-13,4.4042e-13,3.7223e-13,2.5755e-13,1.8448e-13,1.4503e-13,9.8737e-14,6.9046e-14,4.3291e-14,4.2474e-14,2.9593e-14,2.087e-14,1.6973e-14,9.7296e-15,8.2577e-15,5.9119e-15,4.8478e-15,3.1981e-15,3.06e-15,2.7939e-15,2.2628e-15,1.4527e-15,9.187e-16,7.1988e-16,5.639e-16,4.9629e-16,4.8744e-16,3.864e-16,2.9519e-16,1.2896e-16,1.0329e-16,9.1382e-17,6.968e-17,6.9549e-17,5.3207e-17,5.146e-17,4.2886e-17,3.7035e-17,2.2557e-17,2.0991e-17,1.4219e-17,9.88e-18,2.9756e-18,2.3705e-18,2.1236e-18,1.5906e-18,1.2118e-18,1.0925e-18,8.8804e-19,7.6498e-19,6.3553e-19,4.6748e-19,4.6671e-19,2.6794e-19,2.3109e-19,2.2406e-19,2.204e-19,1.2487e-19,1.2327e-19,1.1638e-19,1.1145e-19,9.9613e-20,8.2679e-20,6.9937e-20,3.316e-20,6.6418e-21,4.0957e-21,3.9239e-21,3.7873e-21,3.3768e-21,3.1678e-21,1.7234e-21,1.1515e-21,8.5776e-22,7.2713e-22,5.1448e-22,3.8304e-22,3.6255e-22,2.3914e-22,1.8881e-22,1.4138e-22,8.8666e-23,4.78e-23,4.5945e-23,3.7244e-23,3.2185e-23,3.014e-23,1.4923e-23,1.2302e-23,5.0869e-24,3.9771e-24,2.5747e-24,2.0386e-24,1.8899e-24,1.2499e-24,1.1847e-24,1.0536e-24,8.1524e-25,4.9898e-25 1,0.0017199,0.0020484,0.0020663,0.0021771,0.002266,0.002388,0.0026422,0.0033495,0.003885,0.003974,0.0044646,0.0045497,0.0049029,0.0058684,0.006205,0.0064491,0.0076099,0.0078272,0.0080746,0.0089582,0.0090581,0.009116,0.0098582,0.010321,0.010337,0.011282,0.011372,0.011826,0.011887,0.011947,0.015519,0.019779,0.02021,0.021673,0.023056,0.024181,0.025579,0.027291,0.030544,0.032472,0.03583,0.04047,0.040923,0.0419,0.042821,0.047891,0.047899,0.062057,0.063232,0.063892,0.068869,0.069247,0.07998,0.084548,0.08651,0.090942,0.093851,0.099013,0.10066,0.11404,0.12295,0.15444,0.16403,0.16734,0.17337,0.19073,0.19444,0.19777,0.21394,0.22989,0.23599,0.24106,0.26004,0.28905,0.32162,0.34467,0.34962,0.39533,0.41177,0.41954,0.42301,0.43718,0.49734,0.49932,0.51008,0.52729,0.53068,0.55548,0.62447,0.62538,0.64484,0.65181,0.72991,0.74894,0.75033,0.76702,0.78911,0.78954,0.7913,0.80427,0.80438,0.81591,0.82031,0.87889,0.9017,0.90244,0.92579,0.93157,0.94009,0.94405,0.94633,0.9488,0.9496,0.95169,0.95969,0.96058,0.96238,0.96382,0.97385,0.98329,0.99239,0.99491,0.99858,1,0.99975,0.99942,0.98701,0.98455,0.98261,0.97843,0.9725,0.9668,0.9618,0.96088,0.9603,0.95342,0.93296,0.93133,0.92228,0.90733,0.8986,0.89715,0.84116,0.84051,0.82839,0.80384,0.79925,0.7819,0.77774,0.74807,0.72824,0.6821,0.68098,0.62711,0.62092,0.61895,0.58378,0.58154,0.5689,0.5523,0.54713,0.54323,0.5279,0.52538,0.52373,0.51166,0.50746,0.50636,0.49644,0.49289,0.47336,0.44159,0.43602,0.43454,0.42069,0.41503,0.39234,0.35404,0.34258,0.32488,0.31851,0.3012,0.28455,0.28321,0.28218,0.28206,0.27729,0.27689,0.26227,0.25573,0.24372,0.2432,0.24002,0.22031,0.21976,0.21079,0.2009,0.18406,0.18193,0.17592,0.1746,0.17128,0.16583,0.15773,0.15752,0.14025,0.1224,0.12061,0.11865,0.11805,0.10846,0.10287,0.085626,0.084791,0.083128,0.080383,0.070826,0.061882,0.053195,0.050793,0.049404,0.046019,0.039784,0.03728,0.034235,0.029974,0.026674,0.026114,0.020736,0.020106,0.01988,0.018815,0.018405,0.015408,0.014261,0.013944,0.013912,0.013268,0.012442,0.012076,0.011915,0.0094012,0.0093984,0.0075543,0.0058521,0.0045983,0.003666,0.0033195,0.0032338,0.0030414,0.0028819,0.0025363,0.0025007,0.0019477,0.0018273,0.0016065,0.0013669,0.0012384,0.0012246,0.0011294,0.0010696,0.00093489,0.00076368,0.00074922,0.00068486,0.00059381,0.00052836,0.00052547,0.00034901,0.00032614,0.00031567,0.00029025,0.00027782,0.00025926,0.00023212,0.00022194,0.00020847,0.0001884,0.00016514,0.00014553,0.00014367,0.00012297,0.00011094,0.00010127,8.2193e-05,7.4669e-05,7.2101e-05,6.3654e-05,6.3174e-05,5.9801e-05,5.8368e-05,4.2235e-05,3.8843e-05,3.7597e-05,3.2379e-05,2.9677e-05,2.9286e-05,2.3862e-05,1.6026e-05,1.4218e-05,1.3365e-05,1.1564e-05,1.142e-05,9.6953e-06,9.5225e-06,7.6975e-06,6.7871e-06,5.2627e-06,5.1423e-06,5.0318e-06,4.9711e-06,4.7774e-06,4.6248e-06,4.534e-06,3.6767e-06,3.5182e-06,2.3092e-06,2.0028e-06,1.8218e-06,1.7546e-06,1.2821e-06,1.2751e-06,1.1489e-06,1.0942e-06,8.5519e-07,8.4852e-07,8.3296e-07,6.9242e-07,6.5778e-07,6.4589e-07,6.1095e-07,5.6851e-07,5.3102e-07,5.125e-07,3.6078e-07,3.5632e-07,2.9603e-07,2.2368e-07,1.7147e-07,1.1807e-07,1.1745e-07,1.0278e-07,8.6822e-08,6.9402e-08,6.9228e-08,6.4043e-08,4.4308e-08,4.0655e-08,4.0271e-08,2.5932e-08,2.3528e-08,2.2242e-08,1.87e-08,1.5735e-08,1.1427e-08,1.0866e-08,8.5164e-09,4.911e-09,4.8747e-09,4.6584e-09,4.245e-09,3.946e-09,3.6056e-09,3.2408e-09,1.1868e-09,9.0852e-10,6.0148e-10,4.4166e-10,4.3496e-10,4.1992e-10,2.64e-10,2.3676e-10,2.3462e-10,1.4983e-10,6.9634e-11,6.7946e-11,5.4096e-11,5.16e-11,3.0441e-11,2.6238e-11,1.8944e-11,1.5972e-11,1.322e-11,1.2741e-11,1.0168e-11,9.7714e-12,9.5881e-12,5.7248e-12,4.9023e-12,4.5921e-12,3.7116e-12,3.4702e-12,2.5476e-12,2.3737e-12,2.0584e-12,1.441e-12,1.4362e-12,1.2091e-12,1.1408e-12,1.1407e-12,7.7907e-13,7.6971e-13,6.5733e-13,5.5621e-13,3.8584e-13,2.7702e-13,2.1815e-13,1.4891e-13,1.0439e-13,6.5658e-14,6.4427e-14,4.4999e-14,3.1808e-14,2.5905e-14,1.4905e-14,1.2664e-14,9.0864e-15,7.4607e-15,4.9351e-15,4.7235e-15,4.3152e-15,3.4997e-15,2.2532e-15,1.4292e-15,1.1216e-15,8.7997e-16,7.7509e-16,7.6135e-16,6.0442e-16,4.6253e-16,2.0311e-16,1.6291e-16,1.4424e-16,1.1017e-16,1.0996e-16,8.4265e-17,8.1514e-17,6.801e-17,5.8784e-17,3.5912e-17,3.3433e-17,2.2701e-17,1.5808e-17,4.7953e-18,3.8253e-18,3.429e-18,2.5728e-18,1.9632e-18,1.7711e-18,1.4413e-18,1.2427e-18,1.0335e-18,7.6158e-19,7.6033e-19,4.3792e-19,3.7801e-19,3.6658e-19,3.6062e-19,2.0499e-19,2.0236e-19,1.9112e-19,1.8307e-19,1.6373e-19,1.3604e-19,1.1518e-19,5.4844e-20,1.1084e-20,6.8532e-21,6.5673e-21,6.34e-21,5.6563e-21,5.3081e-21,2.8974e-21,1.9401e-21,1.4476e-21,1.2282e-21,8.7062e-22,6.4923e-22,6.1469e-22,4.0635e-22,3.2123e-22,2.4091e-22,1.5146e-22,8.1919e-23,7.8756e-23,6.3912e-23,5.5271e-23,5.1778e-23,2.5731e-23,2.1233e-23,8.8198e-24,6.9044e-24,4.4798e-24,3.5513e-24,3.2935e-24,2.1827e-24,2.0694e-24,1.8416e-24,1.4268e-24,8.7543e-25 1,0.0015873,0.0018926,0.0019092,0.0020122,0.002095,0.0022085,0.0024452,0.0031046,0.0036046,0.0036876,0.0041462,0.0042258,0.0045562,0.0054602,0.0057756,0.0060045,0.0070935,0.0072976,0.00753,0.0083602,0.0084541,0.0085086,0.0092067,0.0096425,0.009657,0.010547,0.010631,0.01106,0.011117,0.011173,0.014544,0.018571,0.018979,0.020364,0.021674,0.022741,0.024066,0.025691,0.02878,0.030614,0.033808,0.038227,0.038659,0.03959,0.040468,0.045305,0.045313,0.058848,0.059973,0.060605,0.065372,0.065735,0.076031,0.080419,0.082304,0.086564,0.089363,0.09433,0.095915,0.10881,0.11741,0.14785,0.15715,0.16035,0.1662,0.18306,0.18666,0.1899,0.20563,0.22117,0.22711,0.23206,0.25059,0.27895,0.31086,0.33349,0.33835,0.38335,0.39956,0.40722,0.41065,0.42465,0.48422,0.48618,0.49686,0.51395,0.51733,0.54201,0.61088,0.6118,0.63128,0.63827,0.71686,0.7361,0.7375,0.75441,0.77683,0.77727,0.77906,0.79226,0.79237,0.80412,0.80861,0.86872,0.89233,0.8931,0.91744,0.9235,0.93248,0.93667,0.93908,0.9417,0.94254,0.94476,0.9533,0.95425,0.95618,0.95773,0.9686,0.97901,0.9894,0.99241,0.99714,0.99975,1,0.99993,0.99035,0.9882,0.9865,0.98278,0.97741,0.9722,0.9676,0.96674,0.9662,0.9598,0.94055,0.939,0.9304,0.91611,0.90773,0.90634,0.8521,0.85148,0.83965,0.81563,0.81113,0.79409,0.79,0.76076,0.74117,0.69543,0.69432,0.64067,0.6345,0.63253,0.59736,0.59513,0.58246,0.56582,0.56063,0.55671,0.54131,0.53877,0.53712,0.52498,0.52075,0.51965,0.50966,0.50608,0.48639,0.45431,0.44868,0.44718,0.43318,0.42744,0.40445,0.36557,0.35392,0.3359,0.32941,0.31176,0.29477,0.2934,0.29235,0.29223,0.28735,0.28694,0.272,0.26531,0.25302,0.25248,0.24922,0.22902,0.22844,0.21924,0.20908,0.19176,0.18956,0.18338,0.18202,0.17861,0.17299,0.16463,0.16441,0.14659,0.12812,0.12627,0.12424,0.12361,0.11368,0.10788,0.089966,0.089097,0.087367,0.08451,0.074557,0.065226,0.056149,0.053636,0.052182,0.048639,0.042103,0.039476,0.036278,0.0318,0.028326,0.027736,0.022066,0.021401,0.021162,0.020037,0.019604,0.016434,0.01522,0.014884,0.01485,0.014168,0.013293,0.012904,0.012734,0.010065,0.010062,0.0081005,0.0062866,0.0049479,0.0039508,0.0035797,0.003488,0.0032817,0.0031108,0.00274,0.0027017,0.0021077,0.0019782,0.0017406,0.0014825,0.0013439,0.001329,0.0012263,0.0011617,0.0010163,0.00083116,0.00081551,0.00074585,0.00064723,0.00057629,0.00057315,0.00038157,0.00035669,0.00034531,0.00031765,0.00030412,0.00028392,0.00025434,0.00024326,0.00022856,0.00020667,0.00018129,0.00015987,0.00015783,0.00013521,0.00012204,0.00011146,9.0562e-05,8.2312e-05,7.9496e-05,7.0227e-05,6.9701e-05,6.5997e-05,6.4424e-05,4.6693e-05,4.2961e-05,4.1589e-05,3.5844e-05,3.2867e-05,3.2436e-05,2.6455e-05,1.7801e-05,1.5803e-05,1.4858e-05,1.2865e-05,1.2706e-05,1.0795e-05,1.0604e-05,8.5798e-06,7.5695e-06,5.8761e-06,5.7424e-06,5.6195e-06,5.552e-06,5.3366e-06,5.1669e-06,5.066e-06,4.1119e-06,3.9355e-06,2.588e-06,2.246e-06,2.0438e-06,1.9687e-06,1.4405e-06,1.4326e-06,1.2915e-06,1.2302e-06,9.6253e-07,9.5505e-07,9.376e-07,7.8001e-07,7.4116e-07,7.2781e-07,6.886e-07,6.4096e-07,5.9887e-07,5.7806e-07,4.0752e-07,4.025e-07,3.3466e-07,2.5316e-07,1.9427e-07,1.3398e-07,1.3327e-07,1.1668e-07,9.8635e-08,7.8913e-08,7.8717e-08,7.2843e-08,5.0469e-08,4.6323e-08,4.5887e-08,2.9598e-08,2.6864e-08,2.5402e-08,2.137e-08,1.7993e-08,1.3083e-08,1.2443e-08,9.7609e-09,5.6399e-09,5.5984e-09,5.3508e-09,4.8776e-09,4.5353e-09,4.1454e-09,3.7274e-09,1.3698e-09,1.0496e-09,6.959e-10,5.1153e-10,5.038e-10,4.8643e-10,3.0629e-10,2.7479e-10,2.7232e-10,1.7417e-10,8.115e-11,7.9189e-11,6.3095e-11,6.0192e-11,3.5571e-11,3.0674e-11,2.217e-11,1.8702e-11,1.5489e-11,1.4929e-11,1.1924e-11,1.1459e-11,1.1245e-11,6.725e-12,5.7616e-12,5.3981e-12,4.3659e-12,4.0829e-12,3.0002e-12,2.796e-12,2.4257e-12,1.7e-12,1.6943e-12,1.4272e-12,1.3467e-12,1.3466e-12,9.2078e-13,9.0975e-13,7.7729e-13,6.5805e-13,4.5698e-13,3.2841e-13,2.588e-13,1.7686e-13,1.2411e-13,7.8167e-14,7.6706e-14,5.363e-14,3.7947e-14,3.0922e-14,1.782e-14,1.5147e-14,1.0878e-14,8.9368e-15,5.9184e-15,5.6653e-15,5.1769e-15,4.201e-15,2.708e-15,1.7197e-15,1.3505e-15,1.0603e-15,9.3421e-16,9.177e-16,7.29e-16,5.5826e-16,2.4569e-16,1.9717e-16,1.7463e-16,1.3348e-16,1.3323e-16,1.0216e-16,9.8836e-17,8.25e-17,7.1336e-17,4.3636e-17,4.0631e-17,2.7616e-17,1.9249e-17,5.8565e-18,4.6745e-18,4.1914e-18,3.1471e-18,2.403e-18,2.1684e-18,1.7656e-18,1.5228e-18,1.2671e-18,9.3438e-19,9.3286e-19,5.3801e-19,4.6458e-19,4.5056e-19,4.4326e-19,2.523e-19,2.4908e-19,2.3528e-19,2.2538e-19,2.0163e-19,1.6761e-19,1.4197e-19,6.7717e-20,1.3737e-20,8.5033e-21,8.1493e-21,7.8679e-21,7.0214e-21,6.5901e-21,3.6022e-21,2.4143e-21,1.8025e-21,1.53e-21,1.0854e-21,8.0992e-22,7.6692e-22,5.0747e-22,4.0138e-22,3.0122e-22,1.8957e-22,1.0267e-22,9.8716e-23,8.0146e-23,6.9334e-23,6.4961e-23,3.2332e-23,2.6691e-23,1.1108e-23,8.7006e-24,5.6505e-24,4.4816e-24,4.157e-24,2.7574e-24,2.6146e-24,2.3273e-24,1.8041e-24,1.1081e-24 1,0.0015227,0.0018165,0.0018325,0.0019318,0.0020115,0.0021209,0.0023489,0.0029847,0.0034672,0.0035474,0.0039901,0.004067,0.0043861,0.0052598,0.0055648,0.0057861,0.0068397,0.0070371,0.0072621,0.0080659,0.0081569,0.0082096,0.0088858,0.0093081,0.0093221,0.010184,0.010266,0.010682,0.010737,0.010792,0.014062,0.017973,0.018369,0.019716,0.02099,0.022028,0.023317,0.024898,0.027906,0.029691,0.032804,0.037112,0.037533,0.038441,0.039297,0.044017,0.044025,0.057246,0.058346,0.058964,0.063626,0.063981,0.074056,0.078353,0.080199,0.084372,0.087114,0.091983,0.093537,0.10618,0.11463,0.14454,0.15368,0.15683,0.16259,0.17919,0.18274,0.18592,0.20143,0.21675,0.22262,0.2275,0.24579,0.27382,0.3054,0.32781,0.33262,0.37723,0.39332,0.40093,0.40433,0.41824,0.47749,0.47944,0.49008,0.50711,0.51047,0.53508,0.60387,0.60478,0.62428,0.63127,0.71008,0.72942,0.73083,0.74784,0.77042,0.77086,0.77267,0.78598,0.78609,0.79795,0.80249,0.86335,0.88736,0.88814,0.91299,0.91919,0.9284,0.93269,0.93517,0.93787,0.93874,0.94102,0.94983,0.95082,0.95281,0.95442,0.96571,0.97662,0.98766,0.99093,0.9962,0.99942,0.99993,1,0.99188,0.9899,0.98831,0.98483,0.97977,0.97481,0.97041,0.96959,0.96907,0.96292,0.9443,0.9428,0.93444,0.92049,0.9123,0.91094,0.85764,0.85702,0.84535,0.82162,0.81717,0.80029,0.79624,0.76724,0.74778,0.70227,0.70116,0.64766,0.64149,0.63953,0.60438,0.60214,0.58947,0.5728,0.56761,0.56368,0.54826,0.54571,0.54405,0.53188,0.52764,0.52653,0.51652,0.51292,0.49316,0.46093,0.45526,0.45376,0.43968,0.43391,0.41077,0.37159,0.35985,0.34167,0.33511,0.31729,0.30012,0.29875,0.29768,0.29756,0.29263,0.29221,0.2771,0.27033,0.2579,0.25735,0.25406,0.23359,0.23301,0.22369,0.21339,0.19582,0.19359,0.18732,0.18593,0.18247,0.17677,0.16828,0.16805,0.14994,0.13115,0.12926,0.1272,0.12656,0.11645,0.11054,0.092272,0.091386,0.089621,0.086705,0.076542,0.067008,0.057725,0.055154,0.053666,0.050039,0.043344,0.040651,0.037373,0.032778,0.029212,0.028607,0.02278,0.022097,0.021852,0.020694,0.020249,0.016987,0.015737,0.015391,0.015356,0.014654,0.013752,0.013351,0.013176,0.010423,0.01042,0.0083959,0.006522,0.0051375,0.0041055,0.0037212,0.0036261,0.0034124,0.0032352,0.0028508,0.0028112,0.0021949,0.0020604,0.0018137,0.0015456,0.0014015,0.001386,0.0012793,0.0012121,0.0010608,0.0008681,0.0008518,0.00077926,0.00067651,0.00060257,0.0005993,0.00039945,0.00037349,0.0003616,0.00033272,0.00031859,0.00029748,0.00026658,0.00025499,0.00023963,0.00021674,0.00019019,0.00016777,0.00016565,0.00014196,0.00012818,0.00011709,9.5189e-05,8.654e-05,8.3587e-05,7.3865e-05,7.3313e-05,6.9428e-05,6.7777e-05,4.9164e-05,4.5244e-05,4.3804e-05,3.7766e-05,3.4637e-05,3.4185e-05,2.7896e-05,1.8789e-05,1.6684e-05,1.569e-05,1.359e-05,1.3422e-05,1.1408e-05,1.1206e-05,9.072e-06,8.0062e-06,6.2188e-06,6.0776e-06,5.9479e-06,5.8766e-06,5.6492e-06,5.4699e-06,5.3633e-06,4.3554e-06,4.1689e-06,2.7441e-06,2.3822e-06,2.1683e-06,2.0888e-06,1.5295e-06,1.5211e-06,1.3716e-06,1.3066e-06,1.0229e-06,1.0149e-06,9.9644e-07,8.2929e-07,7.8807e-07,7.7391e-07,7.323e-07,6.8175e-07,6.3707e-07,6.1498e-07,4.3388e-07,4.2854e-07,3.5645e-07,2.698e-07,2.0716e-07,1.4297e-07,1.4222e-07,1.2455e-07,1.0532e-07,8.4303e-08,8.4094e-08,7.7831e-08,5.3964e-08,4.9539e-08,4.9075e-08,3.1681e-08,2.876e-08,2.7198e-08,2.2889e-08,1.9278e-08,1.4026e-08,1.3341e-08,1.047e-08,6.0561e-09,6.0117e-09,5.7463e-09,5.239e-09,4.8719e-09,4.4539e-09,4.0056e-09,1.4748e-09,1.1306e-09,7.5012e-10,5.5168e-10,5.4336e-10,5.2467e-10,3.3064e-10,2.9668e-10,2.9402e-10,1.882e-10,8.7799e-11,8.5682e-11,6.8294e-11,6.5157e-11,3.8539e-11,3.3241e-11,2.4039e-11,2.0285e-11,1.6804e-11,1.6198e-11,1.2942e-11,1.2439e-11,1.2207e-11,7.3061e-12,6.261e-12,5.8666e-12,4.7465e-12,4.4392e-12,3.2637e-12,3.0419e-12,2.6395e-12,1.8509e-12,1.8447e-12,1.5543e-12,1.4669e-12,1.4667e-12,1.0035e-12,9.9149e-13,8.4734e-13,7.1754e-13,4.9857e-13,3.5848e-13,2.826e-13,1.9323e-13,1.3567e-13,8.5509e-14,8.3913e-14,5.87e-14,4.1555e-14,3.3873e-14,1.9536e-14,1.661e-14,1.1934e-14,9.8073e-15,6.4987e-15,6.2212e-15,5.6855e-15,4.6151e-15,2.9768e-15,1.8917e-15,1.4861e-15,1.167e-15,1.0285e-15,1.0103e-15,8.0283e-16,6.1503e-16,2.7097e-16,2.1753e-16,1.9269e-16,1.4734e-16,1.4706e-16,1.1281e-16,1.0914e-16,9.1127e-17,7.881e-17,4.824e-17,4.4922e-17,3.0548e-17,2.1302e-17,6.4916e-18,5.1828e-18,4.6479e-18,3.4911e-18,2.6666e-18,2.4067e-18,1.9601e-18,1.6909e-18,1.4072e-18,1.0381e-18,1.0364e-18,5.9817e-19,5.1662e-19,5.0105e-19,4.9294e-19,2.8078e-19,2.772e-19,2.6186e-19,2.5086e-19,2.2445e-19,1.8662e-19,1.5811e-19,7.5484e-20,1.5343e-20,9.5025e-21,9.1074e-21,8.7933e-21,7.8482e-21,7.3668e-21,4.0296e-21,2.7021e-21,2.0181e-21,1.7133e-21,1.2159e-21,9.0763e-22,8.595e-22,5.69e-22,4.5017e-22,3.3794e-22,2.128e-22,1.1533e-22,1.109e-22,9.0056e-23,7.7919e-23,7.301e-23,3.6368e-23,3.0029e-23,1.251e-23,9.801e-24,6.3682e-24,5.0522e-24,4.6866e-24,3.1101e-24,2.9492e-24,2.6255e-24,2.0358e-24,1.2511e-24 1,0.00095338,0.0011445,0.001155,0.0012199,0.0012721,0.0013438,0.0014939,0.0019152,0.0022374,0.0022911,0.0025886,0.0026405,0.002856,0.0034493,0.0036574,0.0038088,0.0045326,0.0046688,0.0048243,0.0053813,0.0054445,0.0054812,0.0059521,0.006247,0.0062569,0.006861,0.0069185,0.0072105,0.0072498,0.0072881,0.0096051,0.012411,0.012698,0.013672,0.014597,0.015353,0.016295,0.017453,0.019667,0.020988,0.023301,0.026522,0.026837,0.02752,0.028164,0.031729,0.031734,0.041835,0.042682,0.043158,0.046762,0.047037,0.054886,0.058255,0.059706,0.062996,0.065163,0.069023,0.070257,0.08036,0.087154,0.11152,0.11905,0.12165,0.12642,0.14025,0.14322,0.1459,0.15896,0.17196,0.17696,0.18113,0.19684,0.22113,0.24882,0.26868,0.27296,0.31305,0.32766,0.33461,0.33771,0.35046,0.40549,0.40732,0.41733,0.43343,0.43662,0.46009,0.52685,0.52775,0.547,0.55395,0.63368,0.65369,0.65516,0.67294,0.69683,0.6973,0.69922,0.71346,0.71359,0.72639,0.7313,0.79905,0.82687,0.82779,0.85754,0.86515,0.87661,0.88204,0.8852,0.88865,0.88977,0.89272,0.90429,0.9056,0.90828,0.91045,0.92608,0.94214,0.96012,0.96608,0.97716,0.98701,0.99035,0.99188,1,0.99989,0.99967,0.99889,0.99723,0.99519,0.99313,0.99273,0.99247,0.98923,0.97802,0.97704,0.97148,0.96174,0.95579,0.95478,0.91307,0.91256,0.90292,0.88287,0.87906,0.86443,0.86089,0.83516,0.81756,0.77553,0.77449,0.72361,0.71766,0.71575,0.68144,0.67924,0.66672,0.65016,0.64497,0.64104,0.62554,0.62297,0.6213,0.60898,0.60467,0.60354,0.59334,0.58967,0.56938,0.53595,0.53004,0.52847,0.51369,0.50761,0.48311,0.44113,0.42843,0.40865,0.40149,0.38191,0.36292,0.3614,0.36021,0.36008,0.35459,0.35413,0.33726,0.32967,0.31566,0.31504,0.31132,0.28808,0.28742,0.27675,0.26492,0.24462,0.24203,0.23472,0.23311,0.22907,0.22239,0.21243,0.21216,0.19073,0.16828,0.16601,0.16353,0.16276,0.15053,0.14335,0.12095,0.11986,0.11768,0.11407,0.10142,0.089444,0.077678,0.074398,0.072496,0.067845,0.059205,0.055708,0.051431,0.045401,0.040689,0.039885,0.032105,0.031185,0.030855,0.029294,0.028693,0.024262,0.022553,0.022079,0.022032,0.021067,0.019826,0.019273,0.019031,0.015207,0.015203,0.01236,0.0097009,0.0077146,0.0062189,0.005658,0.0055189,0.0052057,0.0049454,0.0043785,0.0043198,0.0034037,0.0032026,0.0028321,0.0024272,0.0022086,0.0021851,0.0020225,0.0019199,0.001688,0.0013909,0.0013657,0.0012531,0.0010931,0.00097737,0.00097226,0.0006567,0.00061534,0.00059637,0.0005502,0.00052757,0.00049369,0.00044394,0.00042523,0.00040039,0.00036329,0.00032008,0.00028344,0.00027996,0.00024106,0.00021832,0.00019999,0.00016359,0.00014914,0.0001442,0.00012789,0.00012697,0.00012043,0.00011765,8.6135e-05,7.9456e-05,7.6997e-05,6.6665e-05,6.1291e-05,6.0513e-05,4.9662e-05,3.3818e-05,3.0127e-05,2.8379e-05,2.4676e-05,2.438e-05,2.0812e-05,2.0453e-05,1.6652e-05,1.4744e-05,1.1528e-05,1.1273e-05,1.1039e-05,1.091e-05,1.0499e-05,1.0174e-05,9.9808e-06,8.1488e-06,7.8087e-06,5.1949e-06,4.5259e-06,4.1292e-06,3.9815e-06,2.938e-06,2.9223e-06,2.6417e-06,2.5197e-06,1.9843e-06,1.9693e-06,1.9343e-06,1.617e-06,1.5385e-06,1.5115e-06,1.4322e-06,1.3356e-06,1.2501e-06,1.2078e-06,8.5917e-07,8.4886e-07,7.0911e-07,5.4024e-07,4.1734e-07,2.9049e-07,2.8899e-07,2.5386e-07,2.1548e-07,1.7334e-07,1.7292e-07,1.6032e-07,1.1206e-07,1.0307e-07,1.0212e-07,6.6562e-08,6.0552e-08,5.7332e-08,4.843e-08,4.094e-08,2.9989e-08,2.8556e-08,2.2526e-08,1.3179e-08,1.3084e-08,1.2518e-08,1.1435e-08,1.065e-08,9.7541e-09,8.7914e-09,3.3031e-09,2.5457e-09,1.7028e-09,1.2599e-09,1.2413e-09,1.1994e-09,7.6264e-10,6.8576e-10,6.7973e-10,4.3882e-10,2.077e-10,2.0278e-10,1.6232e-10,1.55e-10,9.2575e-11,8.0067e-11,5.8246e-11,4.9302e-11,4.0982e-11,3.953e-11,3.1712e-11,3.0502e-11,2.9942e-11,1.8087e-11,1.5543e-11,1.458e-11,1.1841e-11,1.1087e-11,8.1958e-12,7.6482e-12,6.6531e-12,4.6943e-12,4.6789e-12,3.954e-12,3.7353e-12,3.735e-12,2.5721e-12,2.5419e-12,2.1782e-12,1.8498e-12,1.2933e-12,9.351e-13,7.4012e-13,5.093e-13,3.5969e-13,2.2844e-13,2.2425e-13,1.5779e-13,1.1234e-13,9.1871e-14,5.3459e-14,4.5571e-14,3.2917e-14,2.7135e-14,1.8098e-14,1.7337e-14,1.5867e-14,1.2922e-14,8.3924e-15,5.3709e-15,4.2351e-15,3.3383e-15,2.9477e-15,2.8965e-15,2.3097e-15,1.7767e-15,7.9257e-16,6.3836e-16,5.665e-16,4.349e-16,4.3411e-16,3.3432e-16,3.2361e-16,2.7092e-16,2.3481e-16,1.4477e-16,1.3496e-16,9.2296e-17,6.4701e-17,2.0058e-17,1.6066e-17,1.4431e-17,1.0883e-17,8.3451e-18,7.5424e-18,6.1607e-18,5.3256e-18,4.4437e-18,3.2923e-18,3.287e-18,1.9117e-18,1.6545e-18,1.6053e-18,1.5797e-18,9.0683e-19,8.9542e-19,8.4652e-19,8.1145e-19,7.2715e-19,6.0613e-19,5.1468e-19,2.4822e-19,5.1548e-20,3.2131e-20,3.0813e-20,2.9764e-20,2.6605e-20,2.4994e-20,1.3781e-20,9.2897e-21,6.9648e-21,5.9254e-21,4.2241e-21,3.1651e-21,2.9994e-21,1.9963e-21,1.5842e-21,1.1936e-21,7.5607e-22,4.1299e-22,3.973e-22,3.2349e-22,2.8041e-22,2.6296e-22,1.3214e-22,1.0937e-22,4.6065e-23,3.62e-23,2.3647e-23,1.8813e-23,1.7468e-23,1.1651e-23,1.1055e-23,9.856e-24,7.6661e-24,4.7393e-24 1,0.0009022,0.0010839,0.0010938,0.0011555,0.0012052,0.0012734,0.0014163,0.0018175,0.0021247,0.0021759,0.0024598,0.0025092,0.002715,0.0032816,0.0034805,0.0036252,0.0043176,0.0044479,0.0045966,0.00513,0.0051905,0.0052256,0.0056767,0.0059594,0.0059688,0.0065479,0.0066031,0.0068831,0.0069207,0.0069575,0.0091815,0.011879,0.012154,0.013092,0.013982,0.01471,0.015617,0.016733,0.018868,0.020142,0.022374,0.025485,0.02579,0.026449,0.027072,0.030518,0.030524,0.040303,0.041123,0.041585,0.04508,0.045346,0.052962,0.056234,0.057643,0.06084,0.062946,0.066699,0.0679,0.077731,0.084349,0.10811,0.11546,0.11801,0.12267,0.13619,0.1391,0.14172,0.1545,0.16724,0.17215,0.17624,0.19164,0.21551,0.24274,0.26229,0.26652,0.30605,0.32048,0.32734,0.33041,0.34301,0.39748,0.3993,0.40922,0.42519,0.42835,0.45166,0.51806,0.51896,0.53814,0.54507,0.62473,0.64478,0.64625,0.66409,0.68806,0.68853,0.69046,0.70478,0.70491,0.71778,0.72273,0.7911,0.81929,0.82022,0.85046,0.85821,0.8699,0.87545,0.87867,0.8822,0.88335,0.88637,0.89823,0.89957,0.90232,0.90454,0.92064,0.93725,0.95598,0.96223,0.97396,0.98455,0.9882,0.9899,0.99989,1,0.99994,0.99948,0.99822,0.99653,0.99475,0.99439,0.99416,0.99127,0.98096,0.98005,0.97483,0.96561,0.95994,0.95898,0.91874,0.91824,0.90886,0.88931,0.88558,0.87126,0.86778,0.8425,0.82517,0.78365,0.78262,0.73217,0.72626,0.72437,0.69024,0.68804,0.67557,0.65906,0.65388,0.64996,0.63448,0.63191,0.63024,0.61793,0.61362,0.6125,0.60229,0.59862,0.5783,0.5448,0.53887,0.53729,0.52246,0.51636,0.49174,0.4495,0.4367,0.41676,0.40953,0.38977,0.37059,0.36905,0.36785,0.36771,0.36217,0.36171,0.34464,0.33696,0.32278,0.32216,0.31839,0.29484,0.29417,0.28335,0.27135,0.25073,0.24809,0.24067,0.23903,0.23492,0.22813,0.218,0.21772,0.19591,0.17301,0.1707,0.16817,0.16738,0.1549,0.14757,0.12467,0.12355,0.12132,0.11762,0.10466,0.092383,0.080306,0.076936,0.074982,0.070201,0.061313,0.057713,0.053309,0.047094,0.042233,0.041404,0.033368,0.032418,0.032077,0.030463,0.029841,0.025256,0.023487,0.022996,0.022946,0.021947,0.02066,0.020087,0.019836,0.015869,0.015865,0.012912,0.010146,0.0080773,0.0065179,0.0059326,0.0057874,0.0054603,0.0051885,0.0045963,0.004535,0.0035771,0.0033665,0.0029787,0.0025545,0.0023254,0.0023007,0.0021303,0.0020226,0.0017792,0.0014673,0.0014408,0.0013225,0.0011542,0.0010325,0.0010271,0.00069481,0.00065121,0.00063121,0.00058252,0.00055865,0.00052291,0.0004704,0.00045065,0.00042443,0.00038523,0.00033958,0.00030084,0.00029716,0.00025601,0.00023194,0.00021253,0.00017397,0.00015866,0.00015342,0.00013613,0.00013514,0.00012821,0.00012526,9.1806e-05,8.4711e-05,8.2098e-05,7.1116e-05,6.5402e-05,6.4574e-05,5.303e-05,3.6157e-05,3.2223e-05,3.0359e-05,2.641e-05,2.6094e-05,2.2286e-05,2.1903e-05,1.7844e-05,1.5805e-05,1.2368e-05,1.2095e-05,1.1844e-05,1.1707e-05,1.1266e-05,1.0919e-05,1.0712e-05,8.7516e-06,8.3874e-06,5.5867e-06,4.8693e-06,4.4437e-06,4.2852e-06,3.1649e-06,3.1481e-06,2.8467e-06,2.7155e-06,2.14e-06,2.1239e-06,2.0862e-06,1.7449e-06,1.6604e-06,1.6314e-06,1.546e-06,1.442e-06,1.3499e-06,1.3044e-06,9.2879e-07,9.1767e-07,7.6699e-07,5.8477e-07,4.5206e-07,3.1496e-07,3.1334e-07,2.7534e-07,2.3382e-07,1.882e-07,1.8775e-07,1.741e-07,1.2181e-07,1.1206e-07,1.1103e-07,7.245e-08,6.5925e-08,6.2428e-08,5.2756e-08,4.4617e-08,3.2708e-08,3.1148e-08,2.4585e-08,1.4403e-08,1.43e-08,1.3683e-08,1.2502e-08,1.1645e-08,1.0668e-08,9.6175e-09,3.6219e-09,2.7931e-09,1.87e-09,1.3846e-09,1.3642e-09,1.3183e-09,8.3911e-10,7.5471e-10,7.4808e-10,4.8342e-10,2.2919e-10,2.2378e-10,1.7921e-10,1.7115e-10,1.0234e-10,8.8537e-11,6.4452e-11,5.4575e-11,4.5383e-11,4.3778e-11,3.5137e-11,3.3798e-11,3.318e-11,2.0064e-11,1.7247e-11,1.6181e-11,1.3147e-11,1.2312e-11,9.1065e-12,8.4993e-12,7.3956e-12,5.222e-12,5.2048e-12,4.4e-12,4.1571e-12,4.1567e-12,2.8647e-12,2.8311e-12,2.4268e-12,2.0616e-12,1.4424e-12,1.0436e-12,8.2637e-13,5.6907e-13,4.0218e-13,2.5565e-13,2.5096e-13,1.7671e-13,1.2589e-13,1.0299e-13,5.9993e-14,5.1156e-14,3.6974e-14,3.049e-14,2.0351e-14,1.9497e-14,1.7847e-14,1.454e-14,9.4506e-15,6.053e-15,4.775e-15,3.7656e-15,3.3257e-15,3.268e-15,2.6071e-15,2.0063e-15,8.9631e-16,7.2219e-16,6.4103e-16,4.9235e-16,4.9145e-16,3.7866e-16,3.6655e-16,3.0696e-16,2.6611e-16,1.6421e-16,1.5309e-16,1.0477e-16,7.349e-17,2.2828e-17,1.8292e-17,1.6432e-17,1.2399e-17,9.5114e-18,8.598e-18,7.0252e-18,6.0745e-18,5.0701e-18,3.7582e-18,3.7522e-18,2.1842e-18,1.8907e-18,1.8346e-18,1.8054e-18,1.0373e-18,1.0243e-18,9.6846e-19,9.284e-19,8.321e-19,6.9381e-19,5.893e-19,2.8453e-19,5.9237e-20,3.6951e-20,3.5437e-20,3.4233e-20,3.0605e-20,2.8754e-20,1.5869e-20,1.0704e-20,8.0285e-21,6.8321e-21,4.873e-21,3.6529e-21,3.4619e-21,2.3055e-21,1.8302e-21,1.3796e-21,8.7447e-22,4.781e-22,4.5996e-22,3.7463e-22,3.248e-22,3.0462e-22,1.5323e-22,1.2687e-22,5.35e-23,4.2057e-23,2.749e-23,2.1878e-23,2.0316e-23,1.3558e-23,1.2866e-23,1.1472e-23,8.9264e-24,5.5222e-24 1,0.00086623,0.0010412,0.0010508,0.0011102,0.0011581,0.0012239,0.0013616,0.0017487,0.0020452,0.0020947,0.0023688,0.0024166,0.0026154,0.0031632,0.0033556,0.0034955,0.0041654,0.0042916,0.0044356,0.004952,0.0050107,0.0050447,0.0054817,0.0057556,0.0057647,0.006326,0.0063795,0.006651,0.0066875,0.0067231,0.0088808,0.0115,0.011768,0.012679,0.013545,0.014253,0.015135,0.016221,0.018299,0.019539,0.021713,0.024745,0.025042,0.025685,0.026292,0.029654,0.029659,0.039207,0.040009,0.04046,0.043875,0.044136,0.051584,0.054785,0.056165,0.059294,0.061356,0.065032,0.066208,0.075843,0.082332,0.10566,0.11288,0.11538,0.11997,0.13327,0.13612,0.1387,0.15129,0.16383,0.16867,0.1727,0.18789,0.21144,0.23834,0.25766,0.26184,0.30097,0.31526,0.32206,0.3251,0.33759,0.39164,0.39345,0.4033,0.41917,0.42232,0.44549,0.51162,0.51252,0.53165,0.53856,0.61816,0.63822,0.6397,0.65756,0.6816,0.68207,0.684,0.69837,0.6985,0.71143,0.7164,0.7852,0.81365,0.81459,0.84517,0.85303,0.86488,0.87051,0.87379,0.87737,0.87853,0.88161,0.89367,0.89504,0.89783,0.9001,0.91653,0.93354,0.95282,0.95929,0.97147,0.98261,0.9865,0.98831,0.99967,0.99994,1,0.99977,0.99881,0.99737,0.9958,0.99548,0.99527,0.99264,0.98299,0.98213,0.97717,0.96833,0.96286,0.96194,0.9228,0.92232,0.91313,0.89394,0.89028,0.87618,0.87276,0.84782,0.83069,0.78956,0.78855,0.73843,0.73255,0.73067,0.69668,0.69449,0.68206,0.66558,0.66041,0.6565,0.64105,0.63848,0.63681,0.62451,0.6202,0.61908,0.60887,0.6052,0.58488,0.55133,0.54538,0.5438,0.52893,0.52281,0.49811,0.45568,0.44281,0.42276,0.41549,0.3956,0.37628,0.37472,0.37352,0.37338,0.3678,0.36733,0.35013,0.34238,0.32807,0.32744,0.32364,0.29986,0.29919,0.28826,0.27613,0.25528,0.25261,0.24511,0.24345,0.23928,0.23242,0.22215,0.22188,0.19977,0.17656,0.17421,0.17164,0.17084,0.15817,0.15072,0.12745,0.12631,0.12404,0.12028,0.1071,0.094592,0.082282,0.078846,0.076853,0.071975,0.062902,0.059225,0.054725,0.048371,0.043399,0.042551,0.034324,0.033351,0.033001,0.031347,0.03071,0.026009,0.024194,0.02369,0.023639,0.022614,0.021293,0.020704,0.020447,0.016372,0.016367,0.013331,0.010484,0.0083536,0.0067458,0.006142,0.0059922,0.0056547,0.0053741,0.0047626,0.0046993,0.0037095,0.0034919,0.0030909,0.002652,0.0024148,0.0023892,0.0022128,0.0021013,0.0018492,0.0015258,0.0014983,0.0013757,0.0012011,0.0010748,0.0010692,0.00072412,0.00067882,0.00065802,0.0006074,0.00058258,0.00054541,0.00049078,0.00047024,0.00044294,0.00040215,0.00035461,0.00031426,0.00031042,0.00026754,0.00024246,0.00022222,0.00018199,0.00016602,0.00016055,0.0001425,0.00014147,0.00013423,0.00013115,9.6198e-05,8.8782e-05,8.605e-05,7.4566e-05,6.8589e-05,6.7723e-05,5.5643e-05,3.7973e-05,3.3851e-05,3.1897e-05,2.7757e-05,2.7426e-05,2.3433e-05,2.3031e-05,1.8771e-05,1.6632e-05,1.3022e-05,1.2735e-05,1.2472e-05,1.2327e-05,1.1865e-05,1.15e-05,1.1283e-05,9.2216e-06,8.8387e-06,5.8927e-06,5.1375e-06,4.6894e-06,4.5225e-06,3.3424e-06,3.3247e-06,3.007e-06,2.8687e-06,2.2619e-06,2.2449e-06,2.2051e-06,1.8451e-06,1.7559e-06,1.7253e-06,1.6352e-06,1.5254e-06,1.4282e-06,1.3801e-06,9.834e-07,9.7166e-07,8.1241e-07,6.1974e-07,4.7934e-07,3.3421e-07,3.3249e-07,2.9225e-07,2.4826e-07,1.9991e-07,1.9943e-07,1.8496e-07,1.295e-07,1.1915e-07,1.1806e-07,7.7097e-08,7.0166e-08,6.6451e-08,5.6174e-08,4.7522e-08,3.4858e-08,3.3199e-08,2.6215e-08,1.5373e-08,1.5263e-08,1.4606e-08,1.3347e-08,1.2434e-08,1.1392e-08,1.0272e-08,3.8752e-09,2.9898e-09,2.0031e-09,1.4839e-09,1.4621e-09,1.4129e-09,9.0005e-10,8.0965e-10,8.0256e-10,5.1901e-10,2.4636e-10,2.4055e-10,1.9271e-10,1.8406e-10,1.1015e-10,9.5316e-11,6.9422e-11,5.8798e-11,4.891e-11,4.7183e-11,3.7883e-11,3.6441e-11,3.5776e-11,2.1651e-11,1.8615e-11,1.7467e-11,1.4196e-11,1.3296e-11,9.8386e-12,9.1836e-12,7.9927e-12,5.6465e-12,5.628e-12,4.759e-12,4.4966e-12,4.4962e-12,3.1004e-12,3.0641e-12,2.6271e-12,2.2323e-12,1.5626e-12,1.1311e-12,8.9599e-13,6.1735e-13,4.3652e-13,2.7766e-13,2.7258e-13,1.9202e-13,1.3686e-13,1.12e-13,6.5291e-14,5.5686e-14,4.0266e-14,3.3213e-14,2.2181e-14,2.1252e-14,1.9455e-14,1.5855e-14,1.0311e-14,6.6082e-15,5.2146e-15,4.1136e-15,3.6336e-15,3.5707e-15,2.8494e-15,2.1935e-15,9.8099e-16,7.9065e-16,7.019e-16,5.3928e-16,5.383e-16,4.149e-16,4.0164e-16,3.3643e-16,2.9171e-16,1.8012e-16,1.6794e-16,1.1498e-16,8.0691e-17,2.5102e-17,2.0119e-17,1.8076e-17,1.3644e-17,1.047e-17,9.4657e-18,7.7361e-18,6.6903e-18,5.5854e-18,4.1417e-18,4.135e-18,2.4086e-18,2.0854e-18,2.0235e-18,1.9913e-18,1.1449e-18,1.1306e-18,1.069e-18,1.0248e-18,9.1866e-19,7.6615e-19,6.5087e-19,3.1453e-19,6.5602e-20,4.0944e-20,3.9268e-20,3.7935e-20,3.3919e-20,3.187e-20,1.7601e-20,1.1877e-20,8.9114e-21,7.5848e-21,5.4119e-21,4.0582e-21,3.8463e-21,2.5627e-21,2.0349e-21,1.5344e-21,9.7305e-22,5.3235e-22,5.1217e-22,4.1725e-22,3.6181e-22,3.3935e-22,1.7083e-22,1.4146e-22,5.9711e-23,4.6952e-23,3.0703e-23,2.4442e-23,2.2698e-23,1.5155e-23,1.4382e-23,1.2825e-23,9.9818e-24,6.1782e-24 1,0.00079881,0.00096122,0.00097011,0.0010253,0.0010698,0.0011309,0.0012589,0.0016193,0.0018956,0.0019418,0.0021976,0.0022422,0.0024278,0.0029398,0.0031198,0.0032508,0.0038782,0.0039964,0.0041314,0.0046158,0.0046708,0.0047027,0.0051129,0.0053701,0.0053787,0.0059061,0.0059564,0.0062116,0.0062459,0.0062794,0.0083106,0.010782,0.011035,0.011896,0.012714,0.013383,0.014218,0.015246,0.017214,0.018391,0.020454,0.023333,0.023616,0.024227,0.024804,0.028003,0.028008,0.03711,0.037875,0.038306,0.041568,0.041817,0.04894,0.052005,0.053327,0.056325,0.058302,0.061828,0.062957,0.07221,0.07845,0.10092,0.1079,0.11031,0.11474,0.1276,0.13037,0.13286,0.14506,0.15723,0.16192,0.16584,0.1806,0.20352,0.22976,0.24864,0.25272,0.29103,0.30505,0.31172,0.31471,0.32698,0.38018,0.38197,0.39169,0.40735,0.41046,0.43337,0.49892,0.49981,0.51883,0.5257,0.60511,0.6252,0.62667,0.64458,0.66872,0.6692,0.67114,0.6856,0.68573,0.69875,0.70376,0.77336,0.8023,0.80326,0.8345,0.84255,0.85472,0.86051,0.86388,0.86757,0.86877,0.87194,0.88439,0.88581,0.88871,0.89106,0.90812,0.92591,0.94625,0.95313,0.96624,0.97843,0.98278,0.98483,0.99889,0.99948,0.99977,1,0.99963,0.9987,0.99753,0.99729,0.99713,0.99501,0.98669,0.98592,0.98147,0.9734,0.96835,0.9675,0.93057,0.93011,0.92133,0.90288,0.89935,0.88572,0.8824,0.85816,0.84145,0.80114,0.80014,0.75073,0.74492,0.74305,0.70937,0.7072,0.69485,0.67847,0.67333,0.66943,0.65403,0.65148,0.64981,0.63754,0.63324,0.63211,0.62191,0.61824,0.59791,0.56429,0.55832,0.55674,0.5418,0.53565,0.5108,0.46803,0.45504,0.43476,0.4274,0.40727,0.38768,0.3861,0.38488,0.38474,0.37907,0.37859,0.36113,0.35325,0.3387,0.33806,0.33419,0.30997,0.30928,0.29814,0.28576,0.26446,0.26173,0.25405,0.25235,0.24809,0.24106,0.23054,0.23026,0.20759,0.18373,0.18132,0.17867,0.17785,0.1648,0.15713,0.13311,0.13193,0.12959,0.1257,0.11205,0.099093,0.086315,0.082744,0.080672,0.075599,0.066151,0.062319,0.057624,0.050989,0.045791,0.044904,0.036288,0.035267,0.0349,0.033166,0.032496,0.027559,0.02565,0.02512,0.025067,0.023988,0.022598,0.021978,0.021706,0.01741,0.017405,0.014198,0.011185,0.0089263,0.0072189,0.006577,0.0064176,0.0060585,0.0057598,0.0051085,0.0050411,0.0039854,0.0037531,0.0033246,0.0028553,0.0026014,0.0025741,0.0023851,0.0022656,0.0019954,0.0016484,0.0016188,0.0014871,0.0012994,0.0011635,0.0011575,0.00078567,0.00073678,0.00071434,0.00065968,0.00063287,0.0005927,0.00053365,0.00051143,0.00048191,0.00043775,0.00038627,0.00034254,0.00033838,0.00029187,0.00026464,0.00024266,0.00019894,0.00018157,0.00017562,0.00015597,0.00015485,0.00014696,0.0001436,0.0001055,9.7404e-05,9.4422e-05,8.1879e-05,7.5347e-05,7.44e-05,6.1188e-05,4.1834e-05,3.7313e-05,3.517e-05,3.0625e-05,3.0261e-05,2.5874e-05,2.5433e-05,2.0748e-05,1.8394e-05,1.4418e-05,1.4102e-05,1.3811e-05,1.3652e-05,1.3142e-05,1.2739e-05,1.25e-05,1.0226e-05,9.803e-06,6.5473e-06,5.7117e-06,5.2155e-06,5.0307e-06,3.7228e-06,3.7032e-06,3.3508e-06,3.1973e-06,2.5235e-06,2.5046e-06,2.4605e-06,2.0603e-06,1.9611e-06,1.9271e-06,1.8268e-06,1.7047e-06,1.5965e-06,1.5429e-06,1.101e-06,1.0879e-06,9.1023e-07,6.9512e-07,5.382e-07,3.7579e-07,3.7386e-07,3.2878e-07,2.7947e-07,2.2523e-07,2.2469e-07,2.0845e-07,1.4614e-07,1.3451e-07,1.3328e-07,8.7178e-08,7.9368e-08,7.5181e-08,6.3594e-08,5.3833e-08,3.9532e-08,3.7657e-08,2.9762e-08,1.7486e-08,1.7361e-08,1.6616e-08,1.5189e-08,1.4154e-08,1.2972e-08,1.1701e-08,4.4294e-09,3.4204e-09,2.2947e-09,1.7017e-09,1.6767e-09,1.6205e-09,1.0339e-09,9.3036e-10,9.2224e-10,5.9726e-10,2.842e-10,2.7751e-10,2.2249e-10,2.1252e-10,1.2739e-10,1.1029e-10,8.0407e-11,6.8138e-11,5.6712e-11,5.4716e-11,4.396e-11,4.2293e-11,4.1523e-11,2.5168e-11,2.1649e-11,2.0317e-11,1.6523e-11,1.5478e-11,1.1464e-11,1.0703e-11,9.3192e-12,6.5905e-12,6.5689e-12,5.5574e-12,5.2519e-12,5.2514e-12,3.6252e-12,3.5829e-12,3.0733e-12,2.6126e-12,1.8308e-12,1.3265e-12,1.0515e-12,7.2524e-13,5.1332e-13,3.2693e-13,3.2096e-13,2.2633e-13,1.6147e-13,1.3222e-13,7.7188e-14,6.5862e-14,4.7666e-14,3.9338e-14,2.6301e-14,2.5202e-14,2.3077e-14,1.8816e-14,1.2251e-14,7.861e-15,6.2072e-15,4.8996e-15,4.3294e-15,4.2545e-15,3.3971e-15,2.617e-15,1.1728e-15,9.4579e-16,8.3989e-16,6.4574e-16,6.4456e-16,4.9713e-16,4.8129e-16,4.0332e-16,3.4984e-16,2.1627e-16,2.0169e-16,1.3822e-16,9.7085e-17,3.0289e-17,2.429e-17,2.183e-17,1.6488e-17,1.2661e-17,1.1449e-17,9.3617e-18,8.099e-18,6.7644e-18,5.0195e-18,5.0115e-18,2.9229e-18,2.5315e-18,2.4566e-18,2.4176e-18,1.3919e-18,1.3745e-18,1.2998e-18,1.2462e-18,1.1174e-18,9.3228e-19,7.923e-19,3.8353e-19,8.0283e-20,5.0161e-20,4.8112e-20,4.6482e-20,4.1573e-20,3.9067e-20,2.1604e-20,1.4591e-20,1.0955e-20,9.3277e-21,6.6605e-21,4.9977e-21,4.7373e-21,3.1591e-21,2.5098e-21,1.8936e-21,1.2021e-21,6.5852e-22,6.3361e-22,5.1641e-22,4.4793e-22,4.2019e-22,2.1184e-22,1.7549e-22,7.4211e-23,5.8383e-23,3.8213e-23,3.0435e-23,2.8268e-23,1.8889e-23,1.7928e-23,1.5991e-23,1.2453e-23,7.7152e-24 1,0.00072016,0.00086774,0.00087583,0.00092604,0.0009665,0.0010222,0.0011388,0.0014675,0.0017201,0.0017623,0.0019963,0.0020372,0.0022072,0.0026768,0.002842,0.0029623,0.0035391,0.0036479,0.0037721,0.0042182,0.0042689,0.0042983,0.0046766,0.0049138,0.0049217,0.0054087,0.0054551,0.0056909,0.0057226,0.0057536,0.0076333,0.0099262,0.010161,0.010961,0.011723,0.012346,0.013123,0.014081,0.015918,0.017016,0.018944,0.02164,0.021905,0.022477,0.023018,0.026018,0.026023,0.034581,0.035302,0.035708,0.038783,0.039018,0.045744,0.048641,0.049891,0.052729,0.054602,0.057943,0.059013,0.067796,0.073728,0.095146,0.10181,0.10412,0.10835,0.12067,0.12332,0.12571,0.13742,0.14912,0.15363,0.1574,0.17163,0.19376,0.21915,0.23746,0.24142,0.27869,0.29235,0.29886,0.30178,0.31376,0.36586,0.36761,0.37715,0.39255,0.3956,0.41816,0.48291,0.48379,0.50264,0.50946,0.58853,0.60862,0.6101,0.62804,0.65228,0.65275,0.65471,0.66925,0.66938,0.6825,0.68755,0.75806,0.78758,0.78855,0.82058,0.82886,0.84141,0.84739,0.85087,0.8547,0.85593,0.85922,0.87216,0.87364,0.87665,0.8791,0.89695,0.91568,0.93733,0.94474,0.95898,0.9725,0.97741,0.97977,0.99723,0.99822,0.99881,0.99963,1,0.99972,0.99908,0.99893,0.99883,0.99736,0.99075,0.9901,0.9863,0.97924,0.97473,0.97396,0.93993,0.93949,0.93124,0.91377,0.91041,0.8974,0.89422,0.87092,0.85476,0.81556,0.81458,0.76615,0.76043,0.7586,0.72536,0.72321,0.71099,0.69475,0.68964,0.68578,0.67047,0.66793,0.66627,0.65405,0.64976,0.64864,0.63847,0.63481,0.6145,0.58083,0.57484,0.57325,0.55825,0.55207,0.52705,0.48389,0.47075,0.45021,0.44275,0.42231,0.4024,0.4008,0.39955,0.39941,0.39364,0.39316,0.37536,0.36733,0.35248,0.35182,0.34787,0.3231,0.32239,0.31098,0.29829,0.27641,0.27361,0.26572,0.26397,0.25959,0.25235,0.24151,0.24122,0.21782,0.19314,0.19064,0.1879,0.18705,0.17352,0.16555,0.14057,0.13935,0.1369,0.13285,0.1186,0.10505,0.091667,0.08792,0.085745,0.080416,0.070478,0.066441,0.061492,0.054487,0.048991,0.048052,0.038921,0.037837,0.037448,0.035606,0.034895,0.029644,0.027611,0.027046,0.026989,0.025839,0.024355,0.023694,0.023404,0.018812,0.018807,0.015371,0.012136,0.009705,0.0078633,0.0071699,0.0069976,0.0066093,0.0062862,0.005581,0.005508,0.0043631,0.0041107,0.003645,0.0031343,0.0028578,0.0028279,0.0026219,0.0024916,0.0021965,0.0018172,0.0017849,0.0016407,0.0014351,0.0012861,0.0012795,0.00087093,0.00081711,0.0007924,0.00073219,0.00070264,0.00065835,0.0005932,0.00056867,0.00053606,0.00048727,0.00043034,0.00038194,0.00037733,0.00032579,0.0002956,0.0002712,0.00022264,0.00020331,0.00019669,0.00017482,0.00017357,0.00016479,0.00016105,0.00011855,0.00010951,0.00010618,9.2158e-05,8.485e-05,8.379e-05,6.8995e-05,4.7282e-05,4.2202e-05,3.9791e-05,3.4678e-05,3.4269e-05,2.9328e-05,2.8831e-05,2.3549e-05,2.0891e-05,1.6398e-05,1.6041e-05,1.5713e-05,1.5532e-05,1.4955e-05,1.45e-05,1.4229e-05,1.1654e-05,1.1175e-05,7.4804e-06,6.5307e-06,5.9664e-06,5.7561e-06,4.2667e-06,4.2443e-06,3.8425e-06,3.6675e-06,2.8983e-06,2.8767e-06,2.8263e-06,2.3688e-06,2.2554e-06,2.2165e-06,2.1017e-06,1.9619e-06,1.8381e-06,1.7767e-06,1.27e-06,1.255e-06,1.0511e-06,8.0379e-07,6.2315e-07,4.3589e-07,4.3367e-07,3.8162e-07,3.2465e-07,2.6192e-07,2.6129e-07,2.425e-07,1.7031e-07,1.5682e-07,1.554e-07,1.0185e-07,9.2767e-08,8.7896e-08,7.4409e-08,6.3038e-08,4.6358e-08,4.417e-08,3.4947e-08,2.0583e-08,2.0437e-08,1.9564e-08,1.7891e-08,1.6677e-08,1.5291e-08,1.3799e-08,5.2462e-09,4.0557e-09,2.7257e-09,2.0239e-09,1.9943e-09,1.9278e-09,1.2322e-09,1.1094e-09,1.0997e-09,7.1351e-10,3.4056e-10,3.3259e-10,2.6688e-10,2.5498e-10,1.5316e-10,1.3267e-10,9.6852e-11,8.2128e-11,6.8405e-11,6.6007e-11,5.3078e-11,5.1073e-11,5.0147e-11,3.0455e-11,2.6212e-11,2.4606e-11,2.0027e-11,1.8765e-11,1.3915e-11,1.2995e-11,1.132e-11,8.0164e-12,7.9902e-12,6.7642e-12,6.3936e-12,6.3931e-12,4.4195e-12,4.3681e-12,3.749e-12,3.189e-12,2.2377e-12,1.6232e-12,1.2878e-12,8.8944e-13,6.3033e-13,4.0211e-13,3.948e-13,2.7875e-13,1.991e-13,1.6315e-13,9.5427e-14,8.1471e-14,5.903e-14,4.8749e-14,3.2638e-14,3.1279e-14,2.865e-14,2.3377e-14,1.5243e-14,9.7956e-15,7.7409e-15,6.1151e-15,5.4057e-15,5.3126e-15,4.2452e-15,3.2731e-15,1.4708e-15,1.1869e-15,1.0544e-15,8.1137e-16,8.0991e-16,6.2518e-16,6.0533e-16,5.0756e-16,4.4045e-16,2.7272e-16,2.5438e-16,1.7455e-16,1.2274e-16,3.8434e-17,3.0842e-17,2.7727e-17,2.0961e-17,1.6109e-17,1.4572e-17,1.1922e-17,1.0319e-17,8.6232e-18,6.4048e-18,6.3946e-18,3.7357e-18,3.2369e-18,3.1414e-18,3.0917e-18,1.7829e-18,1.7607e-18,1.6653e-18,1.5969e-18,1.4323e-18,1.1956e-18,1.0166e-18,4.9318e-19,1.0371e-19,6.4888e-20,6.2245e-20,6.0143e-20,5.3807e-20,5.0574e-20,2.8015e-20,1.8943e-20,1.4234e-20,1.2125e-20,8.6661e-21,6.5079e-21,6.1697e-21,4.1191e-21,3.2745e-21,2.4726e-21,1.5716e-21,8.6238e-22,8.2985e-22,6.7673e-22,5.8723e-22,5.5095e-22,2.7828e-22,2.3066e-22,9.7768e-23,7.6966e-23,5.0433e-23,4.0192e-23,3.7338e-23,2.4977e-23,2.371e-23,2.1155e-23,1.6484e-23,1.0226e-23 1,0.00065792,0.00079368,0.00080112,0.00084735,0.00088461,0.00093589,0.0010434,0.0013468,0.0015802,0.0016193,0.0018359,0.0018737,0.0020312,0.0024665,0.0026198,0.0027315,0.0032674,0.0033686,0.0034842,0.0038994,0.0039466,0.0039739,0.0043262,0.0045474,0.0045547,0.0050088,0.0050521,0.0052721,0.0053017,0.0053306,0.0070871,0.0092346,0.0094549,0.010206,0.01092,0.011505,0.012236,0.013137,0.014865,0.015899,0.017717,0.020261,0.020511,0.021052,0.021562,0.024399,0.024404,0.032511,0.033196,0.033581,0.0365,0.036724,0.043118,0.045876,0.047067,0.049771,0.051556,0.054743,0.055764,0.064153,0.069827,0.090357,0.096757,0.098976,0.10305,0.1149,0.11746,0.11976,0.13105,0.14234,0.14671,0.15035,0.16412,0.18557,0.21023,0.22805,0.23191,0.26826,0.28161,0.28798,0.29083,0.30257,0.35368,0.35539,0.36478,0.37993,0.38294,0.40517,0.46917,0.47004,0.48873,0.4955,0.57419,0.59425,0.59573,0.61368,0.63797,0.63845,0.64041,0.65501,0.65514,0.66833,0.67341,0.74461,0.77457,0.77557,0.80822,0.81669,0.82954,0.83568,0.83926,0.84319,0.84446,0.84785,0.86118,0.8627,0.86582,0.86835,0.88685,0.90637,0.92912,0.93696,0.95216,0.9668,0.9722,0.97481,0.99519,0.99653,0.99737,0.9987,0.99972,1,0.99982,0.99974,0.99969,0.9988,0.99367,0.99314,0.98991,0.98372,0.97969,0.979,0.94753,0.94712,0.93934,0.92275,0.91954,0.90709,0.90404,0.88158,0.86594,0.82775,0.8268,0.7793,0.77366,0.77185,0.73905,0.73693,0.72483,0.70874,0.70367,0.69983,0.68463,0.6821,0.68045,0.6683,0.66403,0.66291,0.65278,0.64912,0.62886,0.59518,0.58918,0.58758,0.57255,0.56635,0.54122,0.49776,0.4845,0.46376,0.45622,0.43553,0.41535,0.41372,0.41246,0.41232,0.40647,0.40597,0.3879,0.37974,0.36464,0.36398,0.35995,0.33472,0.334,0.32235,0.30939,0.28703,0.28417,0.27609,0.2743,0.26981,0.26239,0.25128,0.25098,0.22695,0.20157,0.19899,0.19616,0.19529,0.18134,0.17311,0.14728,0.14601,0.14348,0.13928,0.12451,0.11044,0.096511,0.092608,0.090341,0.084784,0.074409,0.070189,0.065011,0.057675,0.051911,0.050925,0.041331,0.040191,0.039781,0.037841,0.037093,0.031557,0.029411,0.028815,0.028755,0.02754,0.025972,0.025273,0.024967,0.020105,0.0201,0.016455,0.013017,0.010428,0.0084626,0.0077217,0.0075376,0.0071224,0.0067767,0.0060218,0.0059435,0.0047161,0.0044452,0.003945,0.0033959,0.0030982,0.0030661,0.0028442,0.0027038,0.0023857,0.0019762,0.0019413,0.0017855,0.0015631,0.0014018,0.0013946,0.00095164,0.0008932,0.00086635,0.00080092,0.00076879,0.00072062,0.00064973,0.00062302,0.00058751,0.00053435,0.00047227,0.00041945,0.00041442,0.00035813,0.00032512,0.00029844,0.00024528,0.00022411,0.00021685,0.00019287,0.0001915,0.00018186,0.00017776,0.00013108,0.00012113,0.00011747,0.00010204,9.3987e-05,9.282e-05,7.6511e-05,5.2539e-05,4.6922e-05,4.4256e-05,3.8597e-05,3.8143e-05,3.2671e-05,3.212e-05,2.6263e-05,2.3313e-05,1.8322e-05,1.7925e-05,1.756e-05,1.7359e-05,1.6717e-05,1.6211e-05,1.5909e-05,1.3043e-05,1.2509e-05,8.3903e-06,7.3299e-06,6.6995e-06,6.4646e-06,4.7987e-06,4.7736e-06,4.3237e-06,4.1277e-06,3.2657e-06,3.2414e-06,3.1849e-06,2.6716e-06,2.5443e-06,2.5005e-06,2.3716e-06,2.2146e-06,2.0754e-06,2.0065e-06,1.4365e-06,1.4195e-06,1.1898e-06,9.11e-07,7.0707e-07,4.9537e-07,4.9286e-07,4.3394e-07,3.6942e-07,2.9832e-07,2.9761e-07,2.7628e-07,1.9434e-07,1.79e-07,1.7738e-07,1.1647e-07,1.0612e-07,1.0057e-07,8.52e-08,7.2229e-08,5.3184e-08,5.0684e-08,4.0139e-08,2.3692e-08,2.3524e-08,2.2523e-08,2.0604e-08,1.9211e-08,1.762e-08,1.5908e-08,6.0707e-09,4.6978e-09,3.162e-09,2.3505e-09,2.3162e-09,2.2392e-09,1.4337e-09,1.2913e-09,1.2801e-09,8.3184e-10,3.981e-10,3.8882e-10,3.1225e-10,2.9837e-10,1.7954e-10,1.5561e-10,1.1372e-10,9.6487e-11,8.0416e-11,7.7607e-11,6.2453e-11,6.0101e-11,5.9015e-11,3.5902e-11,3.0916e-11,2.9028e-11,2.3642e-11,2.2158e-11,1.6447e-11,1.5363e-11,1.339e-11,9.4926e-12,9.4617e-12,8.0143e-12,7.5767e-12,7.5761e-12,5.2437e-12,5.1828e-12,4.4505e-12,3.7877e-12,2.6608e-12,1.9322e-12,1.534e-12,1.0608e-12,7.5257e-13,4.8077e-13,4.7205e-13,3.3366e-13,2.3857e-13,1.9561e-13,1.146e-13,9.789e-14,7.0996e-14,5.8665e-14,3.9325e-14,3.7692e-14,3.4533e-14,2.8195e-14,1.8408e-14,1.1845e-14,9.3668e-15,7.4047e-15,6.548e-15,6.4355e-15,5.1458e-15,3.9706e-15,1.7883e-15,1.444e-15,1.2833e-15,9.8821e-16,9.8643e-16,7.62e-16,7.3787e-16,6.19e-16,5.3738e-16,3.3318e-16,3.1084e-16,2.1351e-16,1.5028e-16,4.7209e-17,3.7907e-17,3.4088e-17,2.579e-17,1.9833e-17,1.7946e-17,1.4691e-17,1.272e-17,1.0635e-17,7.9052e-18,7.8926e-18,4.6175e-18,4.0024e-18,3.8847e-18,3.8234e-18,2.2081e-18,2.1806e-18,2.0628e-18,1.9782e-18,1.7748e-18,1.4823e-18,1.2609e-18,6.1282e-19,1.2939e-19,8.1046e-20,7.7754e-20,7.5134e-20,6.7238e-20,6.3207e-20,3.5065e-20,2.3733e-20,1.7846e-20,1.5208e-20,1.0879e-20,8.1751e-21,7.7513e-21,5.1802e-21,4.1203e-21,3.1134e-21,1.9811e-21,1.0886e-21,1.0477e-21,8.5479e-22,7.4199e-22,6.9626e-22,3.5225e-22,2.921e-22,1.2406e-22,9.7719e-23,6.4095e-23,5.1107e-23,4.7487e-23,3.1795e-23,3.0185e-23,2.694e-23,2.1004e-23,1.3045e-23 1,0.00061111,0.00073791,0.00074486,0.00078807,0.00082291,0.00087086,0.00097144,0.0012556,0.0014745,0.0015111,0.0017144,0.0017499,0.0018978,0.0023071,0.0024513,0.0025564,0.003061,0.0031564,0.0032653,0.0036567,0.0037012,0.0037271,0.0040595,0.0042682,0.0042752,0.004704,0.0047449,0.0049528,0.0049808,0.0050081,0.0066698,0.008705,0.008914,0.0096265,0.010305,0.010861,0.011555,0.012411,0.014055,0.01504,0.016772,0.019198,0.019436,0.019952,0.02044,0.023149,0.023153,0.030909,0.031565,0.031934,0.034732,0.034946,0.04108,0.043729,0.044873,0.047472,0.049188,0.052253,0.053236,0.061314,0.066784,0.086609,0.092801,0.094947,0.098888,0.11037,0.11285,0.11509,0.12604,0.13701,0.14125,0.1448,0.15819,0.1791,0.20317,0.22059,0.22436,0.25997,0.27307,0.27932,0.28212,0.29365,0.34394,0.34563,0.35489,0.36983,0.3728,0.39475,0.45812,0.45898,0.47752,0.48424,0.56257,0.5826,0.58408,0.60202,0.62633,0.62681,0.62877,0.6434,0.64354,0.65677,0.66187,0.73355,0.76385,0.76486,0.79799,0.8066,0.81969,0.82595,0.82961,0.83362,0.83492,0.83837,0.85202,0.85358,0.85677,0.85937,0.87837,0.89851,0.92212,0.93031,0.94627,0.9618,0.9676,0.97041,0.99313,0.99475,0.9958,0.99753,0.99908,0.99982,1,0.99999,0.99998,0.99956,0.99564,0.9952,0.99244,0.98697,0.98333,0.9827,0.95335,0.95297,0.94558,0.92972,0.92664,0.91466,0.91172,0.88997,0.87476,0.83745,0.83651,0.78981,0.78425,0.78247,0.75005,0.74795,0.73597,0.72001,0.71498,0.71117,0.69606,0.69355,0.69191,0.67981,0.67556,0.67445,0.66435,0.66071,0.6405,0.60684,0.60084,0.59924,0.58419,0.57797,0.55278,0.5091,0.49575,0.47486,0.46726,0.44638,0.426,0.42435,0.42308,0.42293,0.41702,0.41652,0.39823,0.38997,0.37467,0.374,0.36992,0.34431,0.34358,0.33176,0.31858,0.29584,0.29292,0.28469,0.28286,0.27829,0.27073,0.25939,0.25909,0.23455,0.20859,0.20595,0.20306,0.20216,0.18786,0.17943,0.1529,0.1516,0.149,0.14468,0.12948,0.11497,0.10059,0.096559,0.094215,0.088469,0.077729,0.073357,0.067989,0.060375,0.054387,0.053362,0.043379,0.042191,0.041764,0.039743,0.038963,0.033188,0.030947,0.030324,0.030261,0.028991,0.027353,0.026621,0.026301,0.021211,0.021206,0.017384,0.013774,0.01105,0.008979,0.0081976,0.0080033,0.007565,0.0072001,0.0064026,0.0063199,0.0050216,0.0047348,0.0042049,0.0036227,0.0033069,0.0032728,0.0030372,0.0028881,0.0025501,0.0021146,0.0020774,0.0019116,0.0016747,0.0015027,0.0014951,0.0010222,0.00095977,0.00093107,0.00086109,0.00082672,0.00077518,0.00069928,0.00067068,0.00063264,0.00057566,0.00050909,0.00045242,0.00044702,0.00038658,0.00035111,0.00032242,0.00026524,0.00024245,0.00023464,0.0002088,0.00020732,0.00019694,0.00019251,0.00014216,0.00013142,0.00012746,0.00011079,0.00010208,0.00010082,8.3178e-05,5.7211e-05,5.112e-05,4.8227e-05,4.2085e-05,4.1593e-05,3.5649e-05,3.505e-05,2.8683e-05,2.5474e-05,2.004e-05,1.9608e-05,1.921e-05,1.8991e-05,1.8292e-05,1.774e-05,1.7411e-05,1.4286e-05,1.3704e-05,9.2063e-06,8.0471e-06,7.3575e-06,7.1005e-06,5.2769e-06,5.2495e-06,4.7566e-06,4.5417e-06,3.5964e-06,3.5699e-06,3.5078e-06,2.9444e-06,2.8047e-06,2.7566e-06,2.615e-06,2.4425e-06,2.2896e-06,2.2138e-06,1.5869e-06,1.5682e-06,1.3153e-06,1.0081e-06,7.8313e-07,5.4936e-07,5.4658e-07,4.8147e-07,4.1011e-07,3.3142e-07,3.3064e-07,3.0703e-07,2.1623e-07,1.9922e-07,1.9743e-07,1.2982e-07,1.1832e-07,1.1216e-07,9.5064e-08,8.0636e-08,5.9436e-08,5.665e-08,4.4899e-08,2.6547e-08,2.6359e-08,2.5241e-08,2.3098e-08,2.1541e-08,1.9763e-08,1.7848e-08,6.8319e-09,5.2911e-09,3.5657e-09,2.6529e-09,2.6144e-09,2.5278e-09,1.6206e-09,1.4601e-09,1.4475e-09,9.4183e-10,4.5172e-10,4.4122e-10,3.5455e-10,3.3884e-10,2.042e-10,1.7705e-10,1.295e-10,1.0993e-10,9.1667e-11,8.8473e-11,7.1241e-11,6.8566e-11,6.733e-11,4.1017e-11,3.5336e-11,3.3184e-11,2.7042e-11,2.5349e-11,1.8831e-11,1.7593e-11,1.5339e-11,1.0885e-11,1.0849e-11,9.1938e-12,8.6931e-12,8.6924e-12,6.0222e-12,5.9525e-12,5.1135e-12,4.3539e-12,3.0614e-12,2.2249e-12,1.7675e-12,1.2234e-12,8.6872e-13,5.556e-13,5.4556e-13,3.8596e-13,2.762e-13,2.2658e-13,1.3292e-13,1.1358e-13,8.2442e-14,6.8156e-14,4.5732e-14,4.3837e-14,4.0172e-14,3.2815e-14,2.1447e-14,1.3815e-14,1.0931e-14,8.6458e-15,7.6478e-15,7.5167e-15,6.0135e-15,4.643e-15,2.0951e-15,1.6926e-15,1.5046e-15,1.1593e-15,1.1572e-15,8.9448e-16,8.6621e-16,7.2696e-16,6.3131e-16,3.9185e-16,3.6563e-16,2.5136e-16,1.7706e-16,5.5766e-17,4.48e-17,4.0296e-17,3.0505e-17,2.3473e-17,2.1244e-17,1.7398e-17,1.5069e-17,1.2604e-17,9.3747e-18,9.3598e-18,5.4822e-18,4.7534e-18,4.6139e-18,4.5412e-18,2.6257e-18,2.5931e-18,2.4533e-18,2.3529e-18,2.1115e-18,1.7642e-18,1.5011e-18,7.3072e-19,1.5478e-19,9.7045e-20,9.3111e-20,8.998e-20,8.0542e-20,7.5723e-20,4.2059e-20,2.8489e-20,2.1434e-20,1.8272e-20,1.3079e-20,9.8345e-21,9.3256e-21,6.2373e-21,4.9634e-21,3.7525e-21,2.3899e-21,1.3148e-21,1.2655e-21,1.0329e-21,8.9683e-22,8.4166e-22,4.2638e-22,3.5369e-22,1.5047e-22,1.1857e-22,7.7837e-23,6.2091e-23,5.7701e-23,3.8664e-23,3.671e-23,3.277e-23,2.5562e-23,1.5889e-23 1,0.00060312,0.00072838,0.00073525,0.00077794,0.00081236,0.00085975,0.00095914,0.00124,0.0014564,0.0014926,0.0016936,0.0017287,0.001875,0.0022797,0.0024224,0.0025263,0.0030256,0.0031199,0.0032277,0.003615,0.0036591,0.0036847,0.0040136,0.0042202,0.0042271,0.0046516,0.0046921,0.0048979,0.0049256,0.0049526,0.0065979,0.0086138,0.0088208,0.0095266,0.010199,0.01075,0.011437,0.012286,0.013916,0.014892,0.016609,0.019014,0.01925,0.019762,0.020246,0.022932,0.022937,0.030632,0.031282,0.031648,0.034425,0.034637,0.040727,0.043356,0.044492,0.047072,0.048777,0.051821,0.052797,0.060821,0.066254,0.085956,0.09211,0.094245,0.098163,0.10958,0.11205,0.11427,0.12516,0.13608,0.1403,0.14383,0.15716,0.17796,0.20193,0.21928,0.22304,0.25851,0.27157,0.2778,0.28059,0.29208,0.34222,0.34391,0.35314,0.36805,0.37101,0.39291,0.45616,0.45702,0.47554,0.48225,0.56051,0.58053,0.582,0.59994,0.62425,0.62473,0.6267,0.64134,0.64147,0.65471,0.65981,0.73158,0.76194,0.76295,0.79615,0.80479,0.81792,0.8242,0.82787,0.8319,0.8332,0.83667,0.85036,0.85193,0.85513,0.85774,0.87683,0.89708,0.92085,0.92909,0.94518,0.96088,0.96674,0.96959,0.99273,0.99439,0.99548,0.99729,0.99893,0.99974,0.99999,1,1,0.99965,0.99596,0.99553,0.99286,0.98752,0.98395,0.98332,0.95436,0.95398,0.94665,0.93093,0.92788,0.91598,0.91305,0.89144,0.8763,0.83915,0.83822,0.79166,0.78612,0.78434,0.75199,0.7499,0.73794,0.722,0.71698,0.71318,0.69809,0.69557,0.69394,0.68185,0.67761,0.6765,0.66641,0.66277,0.64256,0.60892,0.60292,0.60132,0.58626,0.58005,0.55484,0.51112,0.49776,0.47685,0.46923,0.44832,0.42791,0.42626,0.42498,0.42483,0.41891,0.41841,0.40009,0.39181,0.37647,0.37579,0.3717,0.34603,0.3453,0.33344,0.32024,0.29742,0.29449,0.28623,0.2844,0.27981,0.27223,0.26085,0.26055,0.23592,0.20985,0.2072,0.2043,0.2034,0.18904,0.18057,0.15392,0.15261,0.14999,0.14566,0.13037,0.11579,0.10133,0.097275,0.094918,0.089137,0.078332,0.073932,0.06853,0.060866,0.054837,0.053806,0.043752,0.042556,0.042126,0.04009,0.039303,0.033485,0.031227,0.030599,0.030536,0.029256,0.027605,0.026867,0.026545,0.021414,0.021408,0.017554,0.013912,0.011164,0.0090738,0.0082849,0.0080887,0.0076463,0.0072778,0.0064726,0.006389,0.0050778,0.004788,0.0042527,0.0036645,0.0033453,0.0033109,0.0030728,0.0029221,0.0025804,0.0021401,0.0021026,0.0019348,0.0016953,0.0015214,0.0015136,0.0010353,0.00097208,0.00094304,0.00087222,0.00083744,0.00078527,0.00070846,0.0006795,0.00064099,0.00058332,0.00051592,0.00045853,0.00045306,0.00039185,0.00035593,0.00032688,0.00026895,0.00024586,0.00023794,0.00021176,0.00021026,0.00019974,0.00019525,0.00014422,0.00013333,0.00012932,0.00011241,0.00010359,0.00010231,8.442e-05,5.8083e-05,5.1903e-05,4.8968e-05,4.2736e-05,4.2236e-05,3.6205e-05,3.5597e-05,2.9135e-05,2.5878e-05,2.0361e-05,1.9922e-05,1.9518e-05,1.9296e-05,1.8586e-05,1.8026e-05,1.7692e-05,1.4518e-05,1.3927e-05,9.3591e-06,8.1814e-06,7.4809e-06,7.2198e-06,5.3666e-06,5.3387e-06,4.8378e-06,4.6194e-06,3.6586e-06,3.6315e-06,3.5684e-06,2.9957e-06,2.8536e-06,2.8047e-06,2.6608e-06,2.4854e-06,2.3298e-06,2.2528e-06,1.6152e-06,1.5962e-06,1.3389e-06,1.0263e-06,7.9746e-07,5.5954e-07,5.5671e-07,4.9043e-07,4.1779e-07,3.3767e-07,3.3687e-07,3.1283e-07,2.2036e-07,2.0304e-07,2.0121e-07,1.3234e-07,1.2063e-07,1.1435e-07,9.6931e-08,8.2228e-08,6.062e-08,5.7781e-08,4.5801e-08,2.7088e-08,2.6897e-08,2.5757e-08,2.3571e-08,2.1983e-08,2.017e-08,1.8216e-08,6.9766e-09,5.4039e-09,3.6425e-09,2.7106e-09,2.6712e-09,2.5828e-09,1.6563e-09,1.4923e-09,1.4794e-09,9.6282e-10,4.6197e-10,4.5123e-10,3.6264e-10,3.4658e-10,2.0892e-10,1.8115e-10,1.3253e-10,1.1251e-10,9.3823e-11,9.0556e-11,7.2926e-11,7.0189e-11,6.8925e-11,4.1999e-11,3.6185e-11,3.3981e-11,2.7695e-11,2.5962e-11,1.9289e-11,1.8022e-11,1.5714e-11,1.1152e-11,1.1116e-11,9.4207e-12,8.9078e-12,8.9071e-12,6.1721e-12,6.1007e-12,5.2411e-12,4.4629e-12,3.1386e-12,2.2814e-12,1.8125e-12,1.2548e-12,8.9115e-13,5.7006e-13,5.5976e-13,3.9606e-13,2.8348e-13,2.3257e-13,1.3647e-13,1.1662e-13,8.466e-14,6.9995e-14,4.6974e-14,4.5028e-14,4.1265e-14,3.3711e-14,2.2037e-14,1.4197e-14,1.1235e-14,8.887e-15,7.8616e-15,7.7269e-15,6.1823e-15,4.7738e-15,2.1548e-15,1.741e-15,1.5477e-15,1.1927e-15,1.1905e-15,9.2031e-16,8.9124e-16,7.4802e-16,6.4963e-16,4.033e-16,3.7633e-16,2.5875e-16,1.8229e-16,5.744e-17,4.6149e-17,4.1512e-17,3.1429e-17,2.4186e-17,2.189e-17,1.7929e-17,1.553e-17,1.299e-17,9.663e-18,9.6476e-18,5.6519e-18,4.9009e-18,4.757e-18,4.6821e-18,2.7078e-18,2.6742e-18,2.53e-18,2.4266e-18,2.1776e-18,1.8196e-18,1.5484e-18,7.5392e-19,1.5978e-19,1.002e-19,9.614e-20,9.2908e-20,8.3167e-20,7.8192e-20,4.344e-20,2.9428e-20,2.2143e-20,1.8877e-20,1.3514e-20,1.0163e-20,9.637e-21,6.4465e-21,5.1303e-21,3.879e-21,2.4709e-21,1.3597e-21,1.3086e-21,1.0682e-21,9.2754e-22,8.705e-22,4.4109e-22,3.6592e-22,1.5572e-22,1.2272e-22,8.057e-23,6.4276e-23,5.9733e-23,4.0031e-23,3.8008e-23,3.393e-23,2.6469e-23,1.6456e-23 1,0.00059816,0.00072246,0.00072928,0.00077165,0.00080581,0.00085284,0.00095149,0.0012303,0.0014451,0.0014811,0.0016807,0.0017155,0.0018607,0.0022627,0.0024044,0.0025076,0.0030035,0.0030972,0.0032043,0.0035891,0.0036329,0.0036583,0.0039851,0.0041904,0.0041972,0.004619,0.0046592,0.0048637,0.0048912,0.0049181,0.0065532,0.0085569,0.0087627,0.0094644,0.010133,0.01068,0.011364,0.012208,0.013829,0.0148,0.016507,0.018899,0.019134,0.019644,0.020125,0.022798,0.022802,0.030459,0.031106,0.03147,0.034234,0.034445,0.040506,0.043124,0.044254,0.046823,0.04852,0.051551,0.052522,0.060512,0.065924,0.085548,0.091679,0.093806,0.097709,0.10909,0.11155,0.11376,0.12462,0.1355,0.1397,0.14322,0.15651,0.17725,0.20116,0.21846,0.22221,0.2576,0.27063,0.27684,0.27963,0.29109,0.34115,0.34284,0.35205,0.36693,0.36989,0.39176,0.45494,0.4558,0.4743,0.481,0.55921,0.57923,0.5807,0.59864,0.62295,0.62343,0.6254,0.64004,0.64017,0.65341,0.65852,0.73034,0.76073,0.76174,0.795,0.80365,0.81681,0.8231,0.82678,0.83081,0.83212,0.83559,0.84932,0.85089,0.85411,0.85672,0.87587,0.89618,0.92004,0.92833,0.9445,0.9603,0.9662,0.96907,0.99247,0.99416,0.99527,0.99713,0.99883,0.99969,0.99998,1,1,0.99971,0.99615,0.99573,0.99311,0.98785,0.98432,0.98371,0.95498,0.9546,0.94732,0.93169,0.92864,0.9168,0.91389,0.89235,0.87727,0.84021,0.83928,0.79282,0.78729,0.78551,0.75321,0.75112,0.73917,0.72325,0.71824,0.71443,0.69936,0.69685,0.69521,0.68313,0.67889,0.67778,0.6677,0.66406,0.64386,0.61022,0.60422,0.60262,0.58756,0.58134,0.55613,0.5124,0.49903,0.47809,0.47047,0.44954,0.4291,0.42745,0.42617,0.42602,0.42009,0.41959,0.40125,0.39296,0.3776,0.37692,0.37283,0.34712,0.34638,0.33451,0.32127,0.29841,0.29548,0.28721,0.28537,0.28077,0.27317,0.26177,0.26146,0.23679,0.21065,0.20799,0.20508,0.20418,0.18978,0.18129,0.15456,0.15325,0.15062,0.14627,0.13094,0.11631,0.1018,0.097726,0.095361,0.089559,0.078712,0.074295,0.068871,0.061176,0.055121,0.054085,0.043987,0.042786,0.042354,0.040308,0.039518,0.033673,0.031404,0.030773,0.03071,0.029424,0.027764,0.027023,0.026699,0.021541,0.021536,0.017662,0.014,0.011236,0.0091337,0.0083401,0.0081428,0.0076977,0.007327,0.0065168,0.0064327,0.0051133,0.0048217,0.004283,0.0036909,0.0033697,0.003335,0.0030953,0.0029436,0.0025996,0.0021563,0.0021185,0.0019495,0.0017083,0.0015332,0.0015254,0.0010436,0.00097988,0.00095062,0.00087928,0.00084423,0.00079167,0.00071427,0.0006851,0.00064629,0.00058817,0.00052024,0.0004624,0.00045689,0.0003952,0.00035899,0.0003297,0.0002713,0.00024802,0.00024003,0.00021364,0.00021213,0.00020152,0.00019699,0.00014552,0.00013455,0.0001305,0.00011345,0.00010455,0.00010326,8.5208e-05,5.8636e-05,5.24e-05,4.9439e-05,4.315e-05,4.2645e-05,3.6558e-05,3.5944e-05,2.9422e-05,2.6134e-05,2.0566e-05,2.0122e-05,1.9714e-05,1.949e-05,1.8774e-05,1.8208e-05,1.7871e-05,1.4666e-05,1.4069e-05,9.4563e-06,8.2668e-06,7.5593e-06,7.2955e-06,5.4237e-06,5.3955e-06,4.8894e-06,4.6688e-06,3.698e-06,3.6708e-06,3.607e-06,3.0283e-06,2.8847e-06,2.8353e-06,2.6899e-06,2.5126e-06,2.3554e-06,2.2775e-06,1.6332e-06,1.614e-06,1.3539e-06,1.038e-06,8.0658e-07,5.6602e-07,5.6316e-07,4.9614e-07,4.2268e-07,3.4165e-07,3.4084e-07,3.1653e-07,2.23e-07,2.0547e-07,2.0363e-07,1.3395e-07,1.221e-07,1.1574e-07,9.812e-08,8.3242e-08,6.1374e-08,5.8501e-08,4.6376e-08,2.7434e-08,2.724e-08,2.6086e-08,2.3872e-08,2.2265e-08,2.0429e-08,1.8451e-08,7.069e-09,5.476e-09,3.6916e-09,2.7473e-09,2.7075e-09,2.6179e-09,1.679e-09,1.5128e-09,1.4998e-09,9.7623e-10,4.6852e-10,4.5763e-10,3.6781e-10,3.5152e-10,2.1193e-10,1.8378e-10,1.3446e-10,1.1415e-10,9.5202e-11,9.1887e-11,7.4003e-11,7.1227e-11,6.9944e-11,4.2627e-11,3.6727e-11,3.4491e-11,2.8112e-11,2.6354e-11,1.9582e-11,1.8296e-11,1.5953e-11,1.1324e-11,1.1287e-11,9.5658e-12,9.0453e-12,9.0445e-12,6.268e-12,6.1955e-12,5.3228e-12,4.5327e-12,3.188e-12,2.3175e-12,1.8414e-12,1.2749e-12,9.0551e-13,5.7932e-13,5.6886e-13,4.0254e-13,2.8814e-13,2.364e-13,1.3874e-13,1.1857e-13,8.6082e-14,7.1174e-14,4.777e-14,4.5792e-14,4.1967e-14,3.4286e-14,2.2415e-14,1.4443e-14,1.1429e-14,9.0418e-15,7.9987e-15,7.8617e-15,6.2905e-15,4.8577e-15,2.1931e-15,1.7721e-15,1.5754e-15,1.2141e-15,1.2119e-15,9.3689e-16,9.0731e-16,7.6154e-16,6.614e-16,4.1065e-16,3.8319e-16,2.635e-16,1.8565e-16,5.8516e-17,4.7016e-17,4.2293e-17,3.2022e-17,2.4645e-17,2.2305e-17,1.827e-17,1.5826e-17,1.3238e-17,9.8483e-18,9.8327e-18,5.7611e-18,4.9957e-18,4.8491e-18,4.7728e-18,2.7606e-18,2.7263e-18,2.5794e-18,2.4739e-18,2.2202e-18,1.8552e-18,1.5788e-18,7.6884e-19,1.6301e-19,1.0223e-19,9.809e-20,9.4794e-20,8.4857e-20,7.9783e-20,4.4329e-20,3.0034e-20,2.26e-20,1.9267e-20,1.3795e-20,1.0374e-20,9.8376e-21,6.5812e-21,5.2378e-21,3.9606e-21,2.5231e-21,1.3886e-21,1.3365e-21,1.091e-21,9.4734e-22,8.8909e-22,4.5058e-22,3.7381e-22,1.591e-22,1.2539e-22,8.2333e-23,6.5686e-23,6.1044e-23,4.0913e-23,3.8846e-23,3.4679e-23,2.7055e-23,1.6821e-23 1,0.00054469,0.00065867,0.00066493,0.00070381,0.00073518,0.00077837,0.00086902,0.0011256,0.0013235,0.0013566,0.0015408,0.001573,0.0017071,0.0020786,0.0022097,0.0023053,0.0027647,0.0028516,0.0029508,0.0033079,0.0033485,0.0033721,0.0036757,0.0038664,0.0038728,0.0042649,0.0043024,0.0044926,0.0045182,0.0045433,0.0060668,0.0079382,0.0081306,0.0087871,0.0094127,0.0099255,0.010566,0.011358,0.012878,0.013791,0.015396,0.017647,0.017869,0.018348,0.018801,0.021322,0.021326,0.028561,0.029174,0.029519,0.032136,0.032336,0.038084,0.04057,0.041644,0.044086,0.045699,0.048583,0.049508,0.057121,0.062284,0.08105,0.086925,0.088964,0.092708,0.10364,0.106,0.10812,0.11857,0.12906,0.13311,0.1365,0.14933,0.16939,0.19256,0.20936,0.21301,0.24745,0.26016,0.26622,0.26894,0.28014,0.32914,0.3308,0.33984,0.35445,0.35736,0.37887,0.44118,0.44203,0.46033,0.46697,0.54463,0.56458,0.56605,0.58396,0.60826,0.60874,0.61071,0.62537,0.62551,0.63878,0.64391,0.71623,0.747,0.74803,0.78183,0.79065,0.80408,0.81051,0.81427,0.81841,0.81975,0.82331,0.8374,0.83901,0.84232,0.84501,0.86476,0.88581,0.91072,0.91942,0.93653,0.95342,0.9598,0.96292,0.98923,0.99127,0.99264,0.99501,0.99736,0.9988,0.99956,0.99965,0.99971,1,0.99798,0.99767,0.99565,0.99131,0.98828,0.98775,0.96175,0.9614,0.95462,0.93994,0.93707,0.92583,0.92306,0.90247,0.88795,0.85206,0.85116,0.80578,0.80035,0.79861,0.76685,0.76479,0.753,0.73728,0.73232,0.72856,0.71362,0.71114,0.70951,0.69753,0.69332,0.69221,0.6822,0.67858,0.65847,0.62491,0.61891,0.61731,0.60225,0.59603,0.57075,0.5268,0.51334,0.49223,0.48453,0.46339,0.44271,0.44104,0.43974,0.43959,0.43358,0.43308,0.41448,0.40607,0.39047,0.38978,0.38562,0.35946,0.35872,0.34661,0.33312,0.30978,0.30678,0.29832,0.29645,0.29174,0.28396,0.27228,0.27197,0.24665,0.21979,0.21705,0.21406,0.21313,0.19829,0.18953,0.16192,0.16056,0.15784,0.15334,0.13746,0.12227,0.10718,0.10294,0.10047,0.094427,0.083107,0.078492,0.072819,0.064762,0.058415,0.057328,0.046719,0.045455,0.045001,0.042848,0.042016,0.035856,0.033461,0.032795,0.032728,0.03137,0.029616,0.028832,0.028489,0.02303,0.023024,0.018915,0.015022,0.012078,0.0098347,0.0089867,0.0087757,0.0082996,0.0079029,0.0070354,0.0069453,0.0055303,0.0052173,0.0046384,0.0040015,0.0036556,0.0036183,0.00336,0.0031965,0.0028254,0.0023466,0.0023058,0.0021231,0.0018621,0.0016724,0.001664,0.0011412,0.001072,0.0010402,0.00096265,0.00092453,0.00086732,0.00078304,0.00075126,0.00070897,0.00064559,0.00057147,0.00050831,0.00050229,0.00043485,0.00039524,0.00036318,0.0002992,0.00027367,0.00026491,0.00023594,0.00023429,0.00022263,0.00021767,0.00016108,0.000149,0.00014454,0.00012575,0.00011594,0.00011452,9.4603e-05,6.5235e-05,5.8333e-05,5.5054e-05,4.8086e-05,4.7527e-05,4.0777e-05,4.0096e-05,3.2855e-05,2.9202e-05,2.3009e-05,2.2515e-05,2.2061e-05,2.1812e-05,2.1014e-05,2.0384e-05,2.0009e-05,1.6437e-05,1.5772e-05,1.0622e-05,9.2921e-06,8.5006e-06,8.2055e-06,6.1091e-06,6.0775e-06,5.5101e-06,5.2627e-06,4.1732e-06,4.1425e-06,4.0709e-06,3.4207e-06,3.2592e-06,3.2037e-06,3.0401e-06,2.8407e-06,2.6638e-06,2.5762e-06,1.8502e-06,1.8286e-06,1.5352e-06,1.1784e-06,9.1676e-07,6.4438e-07,6.4114e-07,5.6515e-07,4.8182e-07,3.8983e-07,3.8891e-07,3.6129e-07,2.5492e-07,2.3497e-07,2.3287e-07,1.5346e-07,1.3994e-07,1.3269e-07,1.1257e-07,9.5563e-08,7.055e-08,6.726e-08,5.3371e-08,3.1641e-08,3.1419e-08,3.0092e-08,2.7549e-08,2.5702e-08,2.359e-08,2.1315e-08,8.1977e-09,6.3567e-09,4.2919e-09,3.1978e-09,3.1516e-09,3.0476e-09,1.958e-09,1.7649e-09,1.7497e-09,1.1408e-09,5.4899e-10,5.3628e-10,4.3137e-10,4.1233e-10,2.4905e-10,2.1608e-10,1.5827e-10,1.3445e-10,1.122e-10,1.0831e-10,8.7295e-11,8.4031e-11,8.2523e-11,5.0381e-11,4.3431e-11,4.0796e-11,3.3274e-11,3.12e-11,2.3207e-11,2.1687e-11,1.892e-11,1.3445e-11,1.3402e-11,1.1364e-11,1.0748e-11,1.0747e-11,7.4572e-12,7.3712e-12,6.3362e-12,5.3985e-12,3.8015e-12,2.7664e-12,2.1997e-12,1.5248e-12,1.0842e-12,6.9467e-13,6.8216e-13,4.8325e-13,3.4629e-13,2.8429e-13,1.6713e-13,1.429e-13,1.0385e-13,8.5914e-14,5.7735e-14,5.5351e-14,5.0741e-14,4.148e-14,2.7154e-14,1.7519e-14,1.3874e-14,1.0983e-14,9.72e-15,9.5541e-15,7.6498e-15,5.9119e-15,2.6754e-15,2.1631e-15,1.9236e-15,1.4836e-15,1.481e-15,1.1458e-15,1.1097e-15,9.3187e-16,8.0966e-16,5.034e-16,4.6983e-16,3.2342e-16,2.281e-16,7.2131e-17,5.799e-17,5.218e-17,3.9539e-17,3.0452e-17,2.7569e-17,2.2594e-17,1.9578e-17,1.6385e-17,1.22e-17,1.218e-17,7.147e-18,6.1999e-18,6.0185e-18,5.924e-18,3.4315e-18,3.389e-18,3.2068e-18,3.0761e-18,2.7614e-18,2.3085e-18,1.9654e-18,9.5898e-19,2.0415e-19,1.2819e-19,1.2301e-19,1.1889e-19,1.0645e-19,1.001e-19,5.5705e-20,3.7778e-20,2.8449e-20,2.4263e-20,1.7386e-20,1.3085e-20,1.241e-20,8.3102e-21,6.6176e-21,5.0075e-21,3.1936e-21,1.7602e-21,1.6943e-21,1.3838e-21,1.202e-21,1.1283e-21,5.7274e-22,4.7537e-22,2.0275e-22,1.5989e-22,1.0509e-22,8.3885e-23,7.7971e-23,5.2308e-23,4.9672e-23,4.4355e-23,3.4624e-23,2.1552e-23 1,0.00042472,0.00051521,0.00052018,0.00055113,0.0005761,0.00061053,0.00068291,0.00088843,0.0010476,0.0010743,0.0012229,0.0012489,0.0013573,0.0016586,0.0017652,0.0018429,0.0022176,0.0022886,0.0023698,0.0026622,0.0026955,0.0027149,0.0029641,0.003121,0.0031262,0.0034491,0.00348,0.0036369,0.003658,0.0036787,0.0049403,0.0064994,0.0066602,0.0072094,0.0077337,0.0081642,0.0087027,0.0093687,0.010652,0.011423,0.012783,0.014698,0.014886,0.015295,0.015681,0.017834,0.017838,0.024054,0.024582,0.02488,0.027141,0.027314,0.0323,0.034462,0.035398,0.037527,0.038937,0.041459,0.042269,0.048952,0.053501,0.07013,0.075364,0.077183,0.080528,0.090317,0.092436,0.094349,0.10376,0.11323,0.1169,0.11997,0.13163,0.14994,0.1712,0.18669,0.19006,0.22203,0.23388,0.23955,0.24209,0.25258,0.29874,0.30031,0.30887,0.32275,0.32551,0.34602,0.40586,0.40668,0.42438,0.43082,0.5067,0.52637,0.52782,0.54554,0.5697,0.57018,0.57214,0.58678,0.58691,0.60021,0.60535,0.67856,0.71011,0.71117,0.74617,0.75537,0.76942,0.77618,0.78014,0.78449,0.78591,0.78967,0.80461,0.80632,0.80984,0.81272,0.8339,0.85674,0.8842,0.89393,0.91333,0.93296,0.94055,0.9443,0.97802,0.98096,0.98299,0.98669,0.99075,0.99367,0.99564,0.99596,0.99615,0.99798,1,0.99999,0.99956,0.99766,0.99597,0.99565,0.97702,0.97674,0.97135,0.95929,0.95688,0.94734,0.94496,0.92699,0.91408,0.88152,0.88069,0.8385,0.83339,0.83175,0.80163,0.79966,0.78839,0.77327,0.76849,0.76486,0.75041,0.74799,0.74642,0.73476,0.73065,0.72958,0.71979,0.71625,0.69651,0.66335,0.6574,0.65581,0.64082,0.63461,0.60932,0.56502,0.55137,0.52991,0.52206,0.50044,0.47921,0.47749,0.47616,0.47601,0.46982,0.4693,0.4501,0.4414,0.42523,0.42451,0.42019,0.39293,0.39215,0.3795,0.36535,0.34079,0.33763,0.3287,0.32672,0.32174,0.3135,0.30111,0.30078,0.27382,0.24504,0.24211,0.23888,0.23789,0.2219,0.21243,0.18246,0.18098,0.17802,0.17311,0.15572,0.13903,0.12236,0.11766,0.11493,0.10821,0.095591,0.090429,0.08407,0.07501,0.067847,0.066617,0.054581,0.053142,0.052624,0.050169,0.04922,0.042169,0.03942,0.038654,0.038577,0.037014,0.034993,0.034089,0.033694,0.027374,0.027367,0.022584,0.018029,0.014564,0.01191,0.010904,0.010653,0.010087,0.0096143,0.0085792,0.0084716,0.0067764,0.0064001,0.0057031,0.004934,0.0045153,0.0044701,0.0041568,0.0039582,0.0035068,0.0029225,0.0028726,0.002649,0.0023289,0.0020956,0.0020853,0.0014397,0.0013538,0.0013143,0.0012179,0.0011705,0.0010993,0.00099416,0.00095447,0.00090161,0.0008223,0.00072936,0.00064999,0.00064242,0.00055747,0.00050747,0.00046694,0.00038587,0.00035344,0.00034231,0.00030542,0.00030331,0.00028846,0.00028212,0.00020974,0.00019424,0.00018852,0.00016436,0.00015172,0.00014988,0.00012417,8.6093e-05,7.7108e-05,7.2835e-05,6.374e-05,6.3009e-05,5.4177e-05,5.3286e-05,4.3786e-05,3.8982e-05,3.0816e-05,3.0164e-05,2.9564e-05,2.9234e-05,2.8179e-05,2.7345e-05,2.6849e-05,2.2116e-05,2.1232e-05,1.4375e-05,1.2598e-05,1.1539e-05,1.1143e-05,8.3283e-06,8.2857e-06,7.5218e-06,7.1883e-06,5.7171e-06,5.6757e-06,5.5788e-06,4.6981e-06,4.4791e-06,4.4037e-06,4.1817e-06,3.9107e-06,3.6702e-06,3.5509e-06,2.5608e-06,2.5313e-06,2.1297e-06,1.64e-06,1.2798e-06,9.0336e-07,8.9887e-07,7.9353e-07,6.778e-07,5.4976e-07,5.4848e-07,5.0996e-07,3.6129e-07,3.3332e-07,3.3038e-07,2.1876e-07,1.997e-07,1.8946e-07,1.6103e-07,1.3696e-07,1.0145e-07,9.6772e-08,7.6985e-08,4.5901e-08,4.5582e-08,4.3678e-08,4.0025e-08,3.7369e-08,3.433e-08,3.1054e-08,1.2064e-08,9.3797e-09,6.3587e-09,4.7519e-09,4.684e-09,4.531e-09,2.9241e-09,2.6384e-09,2.616e-09,1.7128e-09,8.3024e-10,8.112e-10,6.539e-10,6.2532e-10,3.7953e-10,3.2973e-10,2.4223e-10,2.0609e-10,1.7228e-10,1.6636e-10,1.3436e-10,1.2938e-10,1.2708e-10,7.7938e-11,6.7278e-11,6.3233e-11,5.1672e-11,4.8478e-11,3.6157e-11,3.381e-11,2.9532e-11,2.1051e-11,2.0984e-11,1.782e-11,1.6862e-11,1.6861e-11,1.1738e-11,1.1603e-11,9.9876e-12,8.5216e-12,6.0192e-12,4.3924e-12,3.4996e-12,2.4336e-12,1.7355e-12,1.1162e-12,1.0963e-12,7.7889e-13,5.597e-13,4.6026e-13,2.7178e-13,2.3267e-13,1.6954e-13,1.4048e-13,9.4711e-14,9.0832e-14,8.3325e-14,6.8229e-14,4.4817e-14,2.9018e-14,2.3023e-14,1.826e-14,1.6175e-14,1.5901e-14,1.2754e-14,9.8767e-15,4.4974e-15,3.6422e-15,3.2419e-15,2.5054e-15,2.5009e-15,1.9387e-15,1.8781e-15,1.5793e-15,1.3737e-15,8.5715e-16,8.0041e-16,5.5254e-16,3.9072e-16,1.2462e-16,1.0035e-16,9.0364e-17,6.8612e-17,5.2944e-17,4.7966e-17,3.9368e-17,3.4149e-17,2.8616e-17,2.1352e-17,2.1318e-17,1.2557e-17,1.0904e-17,1.0587e-17,1.0422e-17,6.0605e-18,5.986e-18,5.6665e-18,5.4371e-18,4.8846e-18,4.0887e-18,3.485e-18,1.709e-18,3.6772e-19,2.3164e-19,2.2234e-19,2.1494e-19,1.9261e-19,1.812e-19,1.0123e-19,6.8833e-20,5.1933e-20,4.434e-20,3.1843e-20,2.401e-20,2.278e-20,1.5295e-20,1.2198e-20,9.2474e-21,5.915e-21,3.2729e-21,3.1512e-21,2.577e-21,2.2405e-21,2.104e-21,1.0727e-21,8.9142e-22,3.8228e-22,3.0192e-22,1.9897e-22,1.5905e-22,1.479e-22,9.9472e-23,9.449e-23,8.4437e-23,6.6014e-23,4.1213e-23 1,0.00041695,0.0005059,0.0005108,0.00054122,0.00056578,0.00059963,0.00067081,0.00087297,0.0010296,0.0010559,0.0012021,0.0012277,0.0013344,0.001631,0.001736,0.0018125,0.0021816,0.0022515,0.0023315,0.0026196,0.0026525,0.0026715,0.0029171,0.0030717,0.0030768,0.0033951,0.0034256,0.0035802,0.0036011,0.0036214,0.0048654,0.0064035,0.0065622,0.0071041,0.0076216,0.0080464,0.0085781,0.0092355,0.010503,0.011264,0.012608,0.014499,0.014685,0.015089,0.015471,0.017599,0.017602,0.023748,0.02427,0.024565,0.026802,0.026973,0.031905,0.034046,0.034972,0.03708,0.038475,0.040972,0.041774,0.048392,0.052898,0.069376,0.074565,0.076369,0.079686,0.089393,0.091496,0.093393,0.10273,0.11213,0.11577,0.11882,0.1304,0.14858,0.1697,0.1851,0.18845,0.22023,0.23202,0.23766,0.24019,0.25062,0.29657,0.29813,0.30666,0.32048,0.32324,0.34366,0.40331,0.40413,0.42178,0.4282,0.50394,0.52358,0.52503,0.54273,0.56687,0.56735,0.56931,0.58395,0.58408,0.59737,0.60251,0.67576,0.70736,0.70842,0.74349,0.75271,0.76681,0.77359,0.77756,0.78193,0.78335,0.78712,0.80212,0.80384,0.80738,0.81026,0.83154,0.8545,0.88214,0.89194,0.9115,0.93133,0.939,0.9428,0.97704,0.98005,0.98213,0.98592,0.9901,0.99314,0.9952,0.99553,0.99573,0.99767,0.99999,1,0.99969,0.99797,0.99638,0.99608,0.97799,0.97772,0.97244,0.96057,0.9582,0.94879,0.94644,0.92867,0.91589,0.88359,0.88276,0.84082,0.83574,0.83411,0.80412,0.80216,0.79093,0.77587,0.7711,0.76748,0.75307,0.75066,0.74908,0.73746,0.73336,0.73229,0.72252,0.71899,0.69928,0.66616,0.66021,0.65863,0.64365,0.63744,0.61215,0.56785,0.55419,0.5327,0.52485,0.5032,0.48194,0.48021,0.47888,0.47872,0.47253,0.472,0.45277,0.44405,0.42783,0.42711,0.42278,0.39545,0.39467,0.38197,0.36778,0.34314,0.33997,0.331,0.32901,0.32401,0.31574,0.3033,0.30297,0.27588,0.24697,0.24402,0.24078,0.23978,0.22371,0.21419,0.18404,0.18255,0.17957,0.17463,0.15713,0.14032,0.12354,0.11881,0.11605,0.10928,0.096565,0.091361,0.08495,0.075813,0.068587,0.067346,0.0552,0.053747,0.053225,0.050746,0.049788,0.042669,0.039891,0.039118,0.03904,0.037461,0.03542,0.034506,0.034106,0.027719,0.027712,0.022876,0.018269,0.014763,0.012077,0.011058,0.010804,0.010231,0.0097524,0.0087039,0.0085949,0.0068773,0.006496,0.0057895,0.0050098,0.0045853,0.0045394,0.0042217,0.0040203,0.0035624,0.0029696,0.0029189,0.002692,0.0023671,0.0021303,0.0021198,0.0014642,0.001377,0.0013369,0.001239,0.0011908,0.0011184,0.0010116,0.00097127,0.00091755,0.00083692,0.00074245,0.00066175,0.00065405,0.00056766,0.0005168,0.00047558,0.00039309,0.00036009,0.00034877,0.00031123,0.00030908,0.00029396,0.00028751,0.00021382,0.00019803,0.0001922,0.0001676,0.00015473,0.00015286,0.00012666,8.7853e-05,7.8695e-05,7.4337e-05,6.5064e-05,6.4319e-05,5.5313e-05,5.4403e-05,4.4713e-05,3.9812e-05,3.148e-05,3.0814e-05,3.0202e-05,2.9865e-05,2.8789e-05,2.7938e-05,2.7431e-05,2.26e-05,2.1698e-05,1.4697e-05,1.2881e-05,1.1799e-05,1.1395e-05,8.5189e-06,8.4754e-06,7.6947e-06,7.3538e-06,5.8501e-06,5.8077e-06,5.7087e-06,4.8082e-06,4.5843e-06,4.5072e-06,4.2802e-06,4.0031e-06,3.7571e-06,3.6351e-06,2.6223e-06,2.5921e-06,2.1813e-06,1.6801e-06,1.3114e-06,9.2594e-07,9.2134e-07,8.1346e-07,6.9492e-07,5.6375e-07,5.6243e-07,5.2297e-07,3.7061e-07,3.4195e-07,3.3893e-07,2.245e-07,2.0496e-07,1.9446e-07,1.653e-07,1.4061e-07,1.0418e-07,9.9379e-08,7.9075e-08,4.7167e-08,4.6839e-08,4.4885e-08,4.1133e-08,3.8406e-08,3.5285e-08,3.192e-08,1.241e-08,9.6504e-09,6.5441e-09,4.8916e-09,4.8217e-09,4.6644e-09,3.0112e-09,2.7172e-09,2.6941e-09,1.7645e-09,8.5575e-10,8.3614e-10,6.741e-10,6.4466e-10,3.9141e-10,3.4009e-10,2.4989e-10,2.1263e-10,1.7777e-10,1.7167e-10,1.3866e-10,1.3353e-10,1.3116e-10,8.0466e-11,6.9468e-11,6.5294e-11,5.3363e-11,5.0067e-11,3.7349e-11,3.4927e-11,3.051e-11,2.1753e-11,2.1684e-11,1.8417e-11,1.7427e-11,1.7426e-11,1.2134e-11,1.1995e-11,1.0326e-11,8.8111e-12,6.2251e-12,4.5436e-12,3.6206e-12,2.5184e-12,1.7963e-12,1.1556e-12,1.135e-12,8.0659e-13,5.7973e-13,4.7678e-13,2.8163e-13,2.4113e-13,1.7573e-13,1.4563e-13,9.8206e-14,9.4186e-14,8.6407e-14,7.0761e-14,4.6492e-14,3.011e-14,2.3892e-14,1.8952e-14,1.679e-14,1.6505e-14,1.3241e-14,1.0255e-14,4.6717e-15,3.7839e-15,3.3683e-15,2.6034e-15,2.5988e-15,2.0148e-15,1.9519e-15,1.6415e-15,1.4279e-15,8.9122e-16,8.3226e-16,5.7464e-16,4.0643e-16,1.2971e-16,1.0446e-16,9.4072e-17,7.1439e-17,5.5133e-17,4.9952e-17,4.1002e-17,3.5569e-17,2.9809e-17,2.2245e-17,2.221e-17,1.3086e-17,1.1364e-17,1.1034e-17,1.0862e-17,6.3184e-18,6.2408e-18,5.9078e-18,5.6687e-18,5.093e-18,4.2636e-18,3.6343e-18,1.7829e-18,3.8393e-19,2.419e-19,2.322e-19,2.2447e-19,2.0116e-19,1.8925e-19,1.0576e-19,7.1927e-20,5.4275e-20,4.6343e-20,3.3287e-20,2.5102e-20,2.3816e-20,1.5995e-20,1.2758e-20,9.6725e-21,6.1883e-21,3.4251e-21,3.2977e-21,2.6971e-21,2.3452e-21,2.2023e-21,1.1232e-21,9.3346e-22,4.0047e-22,3.1632e-22,2.085e-22,1.6668e-22,1.5501e-22,1.0427e-22,9.905e-23,8.8516e-23,6.9211e-23,4.3218e-23 1,0.00037762,0.00045875,0.00046322,0.00049099,0.00051341,0.00054434,0.0006094,0.00079444,0.00093801,0.00096211,0.0010963,0.0011198,0.0012179,0.0014907,0.0015873,0.0016578,0.0019979,0.0020624,0.0021362,0.0024023,0.0024326,0.0024502,0.0026772,0.0028201,0.0028248,0.0031193,0.0031475,0.0032907,0.00331,0.0033289,0.0044824,0.0059119,0.0060596,0.0065642,0.0070463,0.0074423,0.0079381,0.0085516,0.0097351,0.010447,0.011705,0.013476,0.013651,0.01403,0.014388,0.016385,0.016388,0.02217,0.022662,0.022939,0.025048,0.02521,0.029867,0.03189,0.032766,0.034761,0.036082,0.038447,0.039208,0.045487,0.049767,0.065458,0.070409,0.072131,0.0753,0.084582,0.086594,0.088411,0.097354,0.10637,0.10987,0.1128,0.12393,0.14145,0.16184,0.17672,0.17997,0.21078,0.22223,0.22771,0.23017,0.24032,0.28513,0.28665,0.29499,0.30851,0.3112,0.33121,0.38981,0.39062,0.40801,0.41434,0.48923,0.50872,0.51016,0.52775,0.55178,0.55226,0.55421,0.5688,0.56893,0.5822,0.58734,0.66074,0.69256,0.69363,0.72907,0.73841,0.75271,0.7596,0.76364,0.76808,0.76952,0.77336,0.78865,0.79041,0.79402,0.79696,0.81873,0.84233,0.87088,0.88105,0.90145,0.92228,0.9304,0.93444,0.97148,0.97483,0.97717,0.98147,0.9863,0.98991,0.99244,0.99286,0.99311,0.99565,0.99956,0.99969,1,0.99925,0.99819,0.99798,0.98286,0.98262,0.97791,0.96712,0.96493,0.95622,0.95403,0.93736,0.92526,0.89438,0.89359,0.85304,0.84811,0.84652,0.81726,0.81535,0.80435,0.78958,0.7849,0.78134,0.76716,0.76479,0.76324,0.75177,0.74773,0.74667,0.73702,0.73352,0.71402,0.68115,0.67523,0.67366,0.65874,0.65256,0.62733,0.58299,0.56929,0.54771,0.53981,0.51802,0.49658,0.49484,0.49349,0.49334,0.48708,0.48655,0.46712,0.45829,0.44188,0.44115,0.43676,0.40904,0.40824,0.39535,0.38092,0.35582,0.35259,0.34345,0.34142,0.33632,0.32787,0.31516,0.31482,0.2871,0.25745,0.25442,0.25109,0.25006,0.23354,0.22374,0.19266,0.19112,0.18804,0.18293,0.16483,0.14741,0.12999,0.12507,0.1222,0.11516,0.1019,0.096473,0.089777,0.080223,0.072656,0.071356,0.05861,0.057083,0.056534,0.053928,0.05292,0.045423,0.042495,0.041679,0.041597,0.039931,0.037775,0.03681,0.036388,0.029632,0.029624,0.024498,0.019604,0.015871,0.013006,0.011917,0.011646,0.011033,0.010521,0.0093986,0.0092818,0.0074403,0.0070309,0.0062719,0.0054334,0.0049763,0.0049269,0.0045846,0.0043675,0.0038735,0.0032333,0.0031785,0.0029332,0.0025816,0.0023251,0.0023137,0.0016023,0.0015075,0.0014639,0.0013574,0.0013049,0.0012262,0.0011098,0.0010658,0.0010073,0.00091934,0.0008162,0.00072804,0.00071962,0.00062515,0.00056949,0.00052434,0.00043392,0.00039771,0.00038528,0.00034405,0.0003417,0.00032508,0.00031799,0.00023692,0.00021953,0.00021311,0.00018598,0.00017178,0.00016971,0.00014079,9.786e-05,8.7714e-05,8.2885e-05,7.2601e-05,7.1774e-05,6.1776e-05,6.0767e-05,4.9998e-05,4.4547e-05,3.5269e-05,3.4528e-05,3.3846e-05,3.347e-05,3.227e-05,3.1322e-05,3.0757e-05,2.5367e-05,2.4359e-05,1.6534e-05,1.4501e-05,1.3289e-05,1.2836e-05,9.6111e-06,9.5623e-06,8.6858e-06,8.303e-06,6.6129e-06,6.5652e-06,6.4539e-06,5.4406e-06,5.1885e-06,5.1017e-06,4.846e-06,4.5338e-06,4.2565e-06,4.119e-06,2.9762e-06,2.9421e-06,2.4779e-06,1.911e-06,1.4934e-06,1.0562e-06,1.051e-06,9.2847e-07,7.9376e-07,6.4456e-07,6.4307e-07,5.9815e-07,4.2456e-07,3.9188e-07,3.8843e-07,2.5778e-07,2.3543e-07,2.2342e-07,1.9006e-07,1.6178e-07,1.2003e-07,1.1452e-07,9.1216e-08,5.4531e-08,5.4154e-08,5.1904e-08,4.7584e-08,4.4442e-08,4.0845e-08,3.6966e-08,1.4429e-08,1.1232e-08,7.6288e-09,5.7091e-09,5.6278e-09,5.4449e-09,3.5213e-09,3.1788e-09,3.1519e-09,2.0678e-09,1.0057e-09,9.8272e-10,7.9294e-10,7.5843e-10,4.6137e-10,4.0109e-10,2.9506e-10,2.5121e-10,2.1017e-10,2.0298e-10,1.6408e-10,1.5803e-10,1.5523e-10,9.5411e-11,8.2414e-11,7.748e-11,6.3369e-11,5.9469e-11,4.441e-11,4.1539e-11,3.6304e-11,2.5916e-11,2.5833e-11,2.1954e-11,2.0778e-11,2.0777e-11,1.4486e-11,1.4321e-11,1.2334e-11,1.0531e-11,7.4491e-12,5.443e-12,4.3407e-12,3.023e-12,2.1588e-12,1.3909e-12,1.3661e-12,9.7195e-13,6.9935e-13,5.7554e-13,3.4055e-13,2.9173e-13,2.1283e-13,1.7648e-13,1.1916e-13,1.143e-13,1.0489e-13,8.5952e-14,5.6549e-14,3.6674e-14,2.9122e-14,2.3118e-14,2.0488e-14,2.0142e-14,1.6169e-14,1.2533e-14,5.7234e-15,4.6387e-15,4.1307e-15,3.1952e-15,3.1895e-15,2.4748e-15,2.3977e-15,2.0175e-15,1.7557e-15,1.0974e-15,1.025e-15,7.085e-16,5.0162e-16,1.6063e-16,1.2944e-16,1.1661e-16,8.8621e-17,6.8445e-17,6.2031e-17,5.0946e-17,4.4214e-17,3.7073e-17,2.7689e-17,2.7645e-17,1.6313e-17,1.4172e-17,1.3762e-17,1.3548e-17,7.8926e-18,7.796e-18,7.3812e-18,7.0832e-18,6.3657e-18,5.3317e-18,4.5468e-18,2.2349e-18,4.8331e-19,3.049e-19,2.927e-19,2.8299e-19,2.5368e-19,2.3869e-19,1.336e-19,9.0955e-20,6.8685e-20,5.8671e-20,4.2179e-20,3.1832e-20,3.0205e-20,2.0307e-20,1.6206e-20,1.2296e-20,7.8761e-21,4.366e-21,4.204e-21,3.4401e-21,2.9922e-21,2.8104e-21,1.4358e-21,1.1938e-21,5.1327e-22,4.0566e-22,2.6766e-22,2.1411e-22,1.9914e-22,1.3409e-22,1.2739e-22,1.1388e-22,8.9096e-23,5.57e-23 1,0.00032349,0.00039375,0.00039762,0.0004217,0.00044116,0.000468,0.00052453,0.00068565,0.00081095,0.000832,0.00094934,0.0009699,0.0010558,0.0012951,0.0013799,0.0014419,0.0017413,0.0017982,0.0018632,0.002098,0.0021248,0.0021403,0.0023409,0.0024673,0.0024715,0.0027323,0.0027572,0.0028841,0.0029012,0.002918,0.0039427,0.0052174,0.0053493,0.0058004,0.0062318,0.0065865,0.0070309,0.0075814,0.0086448,0.0092856,0.010418,0.012017,0.012175,0.012518,0.012841,0.01465,0.014653,0.019904,0.020353,0.020605,0.022528,0.022675,0.02693,0.028782,0.029585,0.031413,0.032625,0.034797,0.035496,0.041275,0.045223,0.059746,0.064344,0.065944,0.068891,0.077539,0.079416,0.081112,0.08947,0.097915,0.1012,0.10395,0.1144,0.13091,0.15018,0.16429,0.16737,0.19669,0.20762,0.21286,0.21521,0.22492,0.26794,0.26941,0.27744,0.29048,0.29308,0.31242,0.36932,0.37011,0.38707,0.39325,0.46671,0.48593,0.48735,0.50474,0.52854,0.52901,0.53095,0.54544,0.54557,0.55876,0.56388,0.63735,0.66942,0.6705,0.70641,0.71591,0.73048,0.73751,0.74164,0.74618,0.74766,0.75159,0.76728,0.76908,0.77279,0.77582,0.7983,0.82279,0.85266,0.86338,0.885,0.90733,0.91611,0.92049,0.96174,0.96561,0.96833,0.9734,0.97924,0.98372,0.98697,0.98752,0.98785,0.99131,0.99766,0.99797,0.99925,1,0.99977,0.99969,0.98923,0.98904,0.98521,0.97613,0.97425,0.96665,0.96472,0.94981,0.93881,0.91023,0.90949,0.87124,0.86654,0.86503,0.83702,0.83517,0.82458,0.8103,0.80576,0.80231,0.78853,0.78622,0.78472,0.77354,0.76959,0.76855,0.75912,0.7557,0.73656,0.70416,0.69832,0.69676,0.68199,0.67586,0.65078,0.6065,0.59277,0.57109,0.56314,0.54117,0.51951,0.51775,0.51638,0.51622,0.50989,0.50935,0.48964,0.48068,0.46398,0.46324,0.45877,0.43048,0.42967,0.41648,0.4017,0.37594,0.37262,0.36321,0.36112,0.35586,0.34716,0.33404,0.33368,0.30501,0.27423,0.27107,0.26761,0.26654,0.24932,0.23909,0.20655,0.20493,0.2017,0.19634,0.1773,0.15892,0.14047,0.13526,0.13222,0.12473,0.11063,0.10483,0.097683,0.087458,0.079343,0.077948,0.064233,0.062587,0.061994,0.059182,0.058093,0.049984,0.04681,0.045925,0.045836,0.044028,0.041686,0.040637,0.040178,0.032818,0.03281,0.027207,0.021839,0.017732,0.01457,0.013365,0.013065,0.012386,0.011818,0.010573,0.010443,0.0083944,0.0079381,0.007091,0.0061537,0.0056419,0.0055866,0.0052029,0.0049593,0.0044046,0.0036843,0.0036226,0.0033461,0.0029492,0.0026593,0.0026464,0.0018401,0.0017324,0.0016828,0.0015616,0.0015019,0.0014122,0.0012795,0.0012294,0.0011625,0.001062,0.00094402,0.00084304,0.00083339,0.00072502,0.00066108,0.00060917,0.00050508,0.00046333,0.00044898,0.00040138,0.00039866,0.00037945,0.00037126,0.00027739,0.00025722,0.00024976,0.00021825,0.00020173,0.00019933,0.00016564,0.00011552,0.00010364,9.7986e-05,8.593e-05,8.496e-05,7.3222e-05,7.2036e-05,5.9372e-05,5.2951e-05,4.2008e-05,4.1132e-05,4.0326e-05,3.9883e-05,3.8465e-05,3.7344e-05,3.6676e-05,3.0298e-05,2.9105e-05,1.9818e-05,1.7401e-05,1.5958e-05,1.5419e-05,1.1572e-05,1.1513e-05,1.0466e-05,1.0009e-05,7.9858e-06,7.9287e-06,7.7953e-06,6.5803e-06,6.2777e-06,6.1735e-06,5.8664e-06,5.4914e-06,5.1581e-06,4.9927e-06,3.6166e-06,3.5754e-06,3.0153e-06,2.3301e-06,1.8242e-06,1.2935e-06,1.2872e-06,1.1382e-06,9.7415e-07,7.9225e-07,7.9042e-07,7.356e-07,5.2342e-07,4.8339e-07,4.7918e-07,3.1892e-07,2.9146e-07,2.767e-07,2.3564e-07,2.0081e-07,1.493e-07,1.4249e-07,1.1367e-07,6.819e-08,6.7722e-08,6.4926e-08,5.9557e-08,5.5649e-08,5.1175e-08,4.6345e-08,1.8201e-08,1.4192e-08,9.6627e-09,7.2445e-09,7.142e-09,6.9113e-09,4.4818e-09,4.0484e-09,4.0144e-09,2.6406e-09,1.2899e-09,1.2606e-09,1.0185e-09,9.744e-10,5.945e-10,5.1725e-10,3.812e-10,3.2486e-10,2.7207e-10,2.6281e-10,2.1271e-10,2.0491e-10,2.013e-10,1.2407e-10,1.0726e-10,1.0087e-10,8.2597e-11,7.7542e-11,5.8001e-11,5.4273e-11,4.7469e-11,3.3949e-11,3.3842e-11,2.8786e-11,2.7253e-11,2.7251e-11,1.9037e-11,1.8822e-11,1.6224e-11,1.3864e-11,9.8252e-12,7.1913e-12,5.7419e-12,4.0066e-12,2.8663e-12,1.851e-12,1.8183e-12,1.2959e-12,9.3405e-13,7.6946e-13,4.5653e-13,3.9139e-13,2.86e-13,2.3738e-13,1.606e-13,1.5408e-13,1.4145e-13,1.1603e-13,7.6496e-14,4.9717e-14,3.9525e-14,3.1411e-14,2.7853e-14,2.7386e-14,2.2007e-14,1.708e-14,7.8293e-15,6.3518e-15,5.6593e-15,4.383e-15,4.3753e-15,3.3989e-15,3.2935e-15,2.7735e-15,2.4151e-15,1.5129e-15,1.4136e-15,9.7877e-16,6.9409e-16,2.2342e-16,1.8022e-16,1.6243e-16,1.236e-16,9.557e-17,8.6653e-17,7.123e-17,6.1857e-17,5.1907e-17,3.8819e-17,3.8758e-17,2.2924e-17,1.9928e-17,1.9353e-17,1.9054e-17,1.1127e-17,1.0991e-17,1.0409e-17,9.9902e-18,8.9824e-18,7.5291e-18,6.4252e-18,3.168e-18,6.8956e-19,4.3587e-19,4.185e-19,4.0466e-19,3.6291e-19,3.4156e-19,1.9164e-19,1.3068e-19,9.8797e-20,8.4448e-20,6.0793e-20,4.5932e-20,4.3595e-20,2.9356e-20,2.345e-20,1.7812e-20,1.143e-20,6.3508e-21,6.1161e-21,5.0088e-21,4.3592e-21,4.0953e-21,2.0979e-21,1.7455e-21,7.5297e-22,5.9565e-22,3.9366e-22,3.1517e-22,2.9323e-22,1.9774e-22,1.879e-22,1.6804e-22,1.316e-22,8.2418e-23 1,0.00029683,0.00036167,0.00036525,0.00038749,0.00040547,0.00043028,0.00048256,0.00063172,0.00074787,0.0007674,0.00087629,0.00089538,0.00097513,0.0011976,0.0012765,0.0013342,0.001613,0.001666,0.0017267,0.0019456,0.0019706,0.0019851,0.0021724,0.0022904,0.0022944,0.002538,0.0025613,0.00268,0.002696,0.0027116,0.0036709,0.0048665,0.0049904,0.0054142,0.0058196,0.0061531,0.0065712,0.0070894,0.0080911,0.0086952,0.0097637,0.011274,0.011423,0.011747,0.012053,0.013763,0.013766,0.018743,0.019168,0.019408,0.021233,0.021374,0.025419,0.027181,0.027945,0.029687,0.030842,0.032913,0.033579,0.039095,0.042868,0.056773,0.061184,0.06272,0.065549,0.073859,0.075664,0.077295,0.085341,0.093479,0.096643,0.099295,0.10939,0.12535,0.14402,0.15771,0.16069,0.1892,0.19984,0.20495,0.20724,0.21671,0.25873,0.26017,0.26803,0.2808,0.28335,0.30232,0.35825,0.35903,0.37574,0.38183,0.45444,0.47348,0.4749,0.49215,0.5158,0.51627,0.51819,0.53261,0.53274,0.54588,0.55098,0.62439,0.65655,0.65764,0.69376,0.70333,0.71803,0.72513,0.7293,0.73389,0.73539,0.73937,0.75524,0.75707,0.76084,0.76391,0.78673,0.81168,0.84222,0.85322,0.87549,0.8986,0.90773,0.9123,0.95579,0.95994,0.96286,0.96835,0.97473,0.97969,0.98333,0.98395,0.98432,0.98828,0.99597,0.99638,0.99819,0.99977,1,0.99999,0.99212,0.99196,0.98863,0.98051,0.9788,0.97183,0.97005,0.95614,0.94576,0.91851,0.9178,0.88089,0.87633,0.87486,0.84758,0.84578,0.83542,0.82144,0.81699,0.8136,0.80007,0.7978,0.79631,0.78531,0.78142,0.7804,0.7711,0.76772,0.74882,0.71673,0.71093,0.70939,0.69472,0.68863,0.66366,0.61948,0.60575,0.58404,0.57607,0.55403,0.53226,0.5305,0.52912,0.52897,0.52259,0.52205,0.50221,0.49318,0.47634,0.4756,0.47108,0.44251,0.44169,0.42835,0.41339,0.38728,0.3839,0.37435,0.37223,0.3669,0.35805,0.34472,0.34436,0.31517,0.28377,0.28055,0.27701,0.27591,0.25831,0.24785,0.2145,0.21284,0.20953,0.20402,0.18445,0.16554,0.14652,0.14114,0.138,0.13027,0.11568,0.10968,0.10227,0.091668,0.08324,0.08179,0.067521,0.065806,0.065188,0.062257,0.061122,0.05266,0.049344,0.048419,0.048326,0.046436,0.043987,0.042889,0.042408,0.034698,0.034689,0.028809,0.023166,0.018839,0.015502,0.014229,0.013912,0.013194,0.012594,0.011275,0.011138,0.0089666,0.0084824,0.0075832,0.006587,0.0060428,0.0059839,0.0055755,0.0053162,0.0047252,0.003957,0.0038912,0.003596,0.0031719,0.002862,0.0028482,0.0019849,0.0018694,0.0018162,0.0016861,0.001622,0.0015257,0.0013831,0.0013292,0.0012574,0.0011493,0.0010223,0.00091352,0.00090312,0.0007863,0.00071733,0.00066131,0.00054887,0.00050374,0.00048823,0.00043674,0.00043379,0.000413,0.00040413,0.00030242,0.00028054,0.00027245,0.00023824,0.0002203,0.00021769,0.00018107,0.00012651,0.00011357,0.0001074,9.4245e-05,9.3187e-05,8.0372e-05,7.9076e-05,6.5236e-05,5.8213e-05,4.6234e-05,4.5274e-05,4.4392e-05,4.3906e-05,4.2352e-05,4.1124e-05,4.0391e-05,3.3397e-05,3.2088e-05,2.1889e-05,1.9231e-05,1.7643e-05,1.7049e-05,1.2812e-05,1.2748e-05,1.1593e-05,1.1088e-05,8.8563e-06,8.7932e-06,8.6459e-06,7.3038e-06,6.9694e-06,6.8542e-06,6.5147e-06,6.0999e-06,5.7313e-06,5.5483e-06,4.0246e-06,3.979e-06,3.3581e-06,2.5978e-06,2.0359e-06,1.4457e-06,1.4386e-06,1.2727e-06,1.09e-06,8.8721e-07,8.8518e-07,8.2402e-07,5.8713e-07,5.4241e-07,5.377e-07,3.5845e-07,3.277e-07,3.1116e-07,2.6515e-07,2.261e-07,1.6829e-07,1.6065e-07,1.2826e-07,7.7093e-08,7.6566e-08,7.3416e-08,6.7366e-08,6.2962e-08,5.7918e-08,5.2471e-08,2.0677e-08,1.6136e-08,1.1002e-08,8.2569e-09,8.1404e-09,7.8784e-09,5.1166e-09,4.6235e-09,4.5847e-09,3.02e-09,1.4788e-09,1.4454e-09,1.1686e-09,1.1182e-09,6.8334e-10,5.9481e-10,4.388e-10,3.7414e-10,3.1352e-10,3.0288e-10,2.4531e-10,2.3635e-10,2.322e-10,1.4334e-10,1.2397e-10,1.1661e-10,9.5543e-11,8.9713e-11,6.7166e-11,6.2862e-11,5.5004e-11,3.9379e-11,3.9255e-11,3.3407e-11,3.1633e-11,3.163e-11,2.2121e-11,2.1871e-11,1.8861e-11,1.6125e-11,1.144e-11,8.3808e-12,6.6962e-12,4.6774e-12,3.3495e-12,2.1658e-12,2.1276e-12,1.5179e-12,1.0951e-12,9.0263e-13,5.3633e-13,4.6001e-13,3.3644e-13,2.7939e-13,1.8923e-13,1.8157e-13,1.6673e-13,1.3684e-13,9.0318e-14,5.8769e-14,4.6751e-14,3.7177e-14,3.2977e-14,3.2425e-14,2.6072e-14,2.0248e-14,9.3011e-15,7.55e-15,6.729e-15,5.2149e-15,5.2058e-15,4.0467e-15,3.9216e-15,3.3039e-15,2.878e-15,1.8051e-15,1.6868e-15,1.1691e-15,8.2979e-16,2.6787e-16,2.162e-16,1.949e-16,1.4841e-16,1.1483e-16,1.0414e-16,8.5646e-17,7.4402e-17,6.2462e-17,4.6746e-17,4.6673e-17,2.764e-17,2.4036e-17,2.3345e-17,2.2985e-17,1.3439e-17,1.3276e-17,1.2574e-17,1.207e-17,1.0855e-17,9.1029e-18,7.7712e-18,3.8381e-18,8.3844e-19,5.3054e-19,5.0944e-19,4.9264e-19,4.4193e-19,4.1599e-19,2.3372e-19,1.5951e-19,1.2067e-19,1.0318e-19,7.4334e-20,5.6199e-20,5.3345e-20,3.5953e-20,2.8735e-20,2.184e-20,1.4028e-20,7.8049e-21,7.5171e-21,6.1588e-21,5.3617e-21,5.0378e-21,2.5845e-21,2.1513e-21,9.2971e-22,7.3583e-22,4.8674e-22,3.8987e-22,3.6279e-22,2.4486e-22,2.327e-22,2.0815e-22,1.6309e-22,1.0225e-22 1,0.0002927,0.0003567,0.00036023,0.00038219,0.00039994,0.00042443,0.00047605,0.00062335,0.00073807,0.00075736,0.00086493,0.00088379,0.00096259,0.0011824,0.0012604,0.0013174,0.001593,0.0016454,0.0017054,0.0019219,0.0019466,0.0019609,0.0021461,0.0022628,0.0022667,0.0025077,0.0025307,0.0026481,0.0026639,0.0026794,0.0036284,0.0048116,0.0049342,0.0053537,0.0057551,0.0060853,0.0064992,0.0070122,0.0080042,0.0086025,0.009661,0.011157,0.011305,0.011625,0.011929,0.013624,0.013626,0.01856,0.018982,0.019219,0.021029,0.021168,0.02518,0.026928,0.027686,0.029414,0.03056,0.032615,0.033276,0.03875,0.042495,0.056303,0.060683,0.062209,0.065019,0.073275,0.075069,0.07669,0.084685,0.092774,0.095919,0.098556,0.1086,0.12446,0.14303,0.15665,0.15963,0.18801,0.1986,0.20368,0.20596,0.21539,0.25726,0.25869,0.26652,0.27925,0.28179,0.3007,0.35647,0.35724,0.37392,0.37999,0.45246,0.47147,0.47288,0.49011,0.51374,0.51421,0.51613,0.53053,0.53066,0.5438,0.54889,0.62228,0.65446,0.65554,0.6917,0.70128,0.716,0.72311,0.72728,0.73189,0.73338,0.73737,0.75327,0.75511,0.75888,0.76196,0.78483,0.80986,0.84051,0.85155,0.87392,0.89715,0.90634,0.91094,0.95478,0.95898,0.96194,0.9675,0.97396,0.979,0.9827,0.98332,0.98371,0.98775,0.99565,0.99608,0.99798,0.99969,0.99999,1,0.99255,0.99239,0.98915,0.98118,0.9795,0.97263,0.97088,0.95713,0.94685,0.91982,0.91912,0.88242,0.87789,0.87643,0.84927,0.84747,0.83716,0.82323,0.81879,0.81542,0.80192,0.79966,0.79818,0.78721,0.78333,0.78231,0.77303,0.76966,0.75079,0.71877,0.71297,0.71143,0.69678,0.69069,0.66575,0.62158,0.60785,0.58614,0.57818,0.55613,0.53434,0.53257,0.5312,0.53104,0.52466,0.52412,0.50426,0.49522,0.47836,0.47761,0.47309,0.44448,0.44365,0.43029,0.4153,0.38913,0.38575,0.37618,0.37405,0.36871,0.35984,0.34647,0.34611,0.31683,0.28533,0.2821,0.27855,0.27745,0.25979,0.24929,0.21581,0.21415,0.21082,0.20529,0.18564,0.16663,0.14752,0.14211,0.13896,0.13119,0.11652,0.11049,0.10304,0.092367,0.083887,0.082428,0.068068,0.066341,0.06572,0.062768,0.061625,0.053106,0.049767,0.048835,0.048741,0.046837,0.04437,0.043265,0.04278,0.035012,0.035003,0.029077,0.023387,0.019024,0.015658,0.014374,0.014054,0.013329,0.012724,0.011393,0.011255,0.0090627,0.0085739,0.0076659,0.0066599,0.0061102,0.0060507,0.0056383,0.0053763,0.0047792,0.004003,0.0039364,0.0036381,0.0032095,0.0028962,0.0028823,0.0020093,0.0018925,0.0018387,0.0017072,0.0016424,0.0015449,0.0014007,0.0013461,0.0012734,0.0011641,0.0010356,0.00092547,0.00091495,0.0007967,0.00072688,0.00067016,0.00055631,0.00051061,0.0004949,0.00044274,0.00043976,0.0004187,0.00040972,0.00030668,0.0002845,0.00027631,0.00024164,0.00022346,0.00022082,0.0001837,0.00012839,0.00011526,0.00010901,9.5666e-05,9.4592e-05,8.1594e-05,8.0279e-05,6.6239e-05,5.9113e-05,4.6957e-05,4.5983e-05,4.5087e-05,4.4594e-05,4.3018e-05,4.1771e-05,4.1027e-05,3.3928e-05,3.2599e-05,2.2244e-05,1.9545e-05,1.7932e-05,1.7329e-05,1.3025e-05,1.296e-05,1.1787e-05,1.1274e-05,9.0059e-06,8.9419e-06,8.7922e-06,7.4282e-06,7.0883e-06,6.9713e-06,6.6262e-06,6.2047e-06,5.8299e-06,5.6439e-06,4.0949e-06,4.0486e-06,3.4172e-06,2.644e-06,2.0724e-06,1.472e-06,1.4648e-06,1.296e-06,1.11e-06,9.0364e-07,9.0156e-07,8.3931e-07,5.9816e-07,5.5263e-07,5.4783e-07,3.6529e-07,3.3398e-07,3.1713e-07,2.7027e-07,2.3049e-07,1.7159e-07,1.638e-07,1.308e-07,7.8641e-08,7.8104e-08,7.4893e-08,6.8725e-08,6.4235e-08,5.9091e-08,5.3537e-08,2.1109e-08,1.6476e-08,1.1236e-08,8.4337e-09,8.3149e-09,8.0474e-09,5.2276e-09,4.7241e-09,4.6845e-09,3.0865e-09,1.5119e-09,1.4777e-09,1.1949e-09,1.1434e-09,6.9894e-10,6.0844e-10,4.4892e-10,3.828e-10,3.2081e-10,3.0993e-10,2.5105e-10,2.4188e-10,2.3763e-10,1.4673e-10,1.2691e-10,1.1938e-10,9.7824e-11,9.1858e-11,6.8783e-11,6.4377e-11,5.6333e-11,4.0338e-11,4.021e-11,3.4223e-11,3.2406e-11,3.2404e-11,2.2666e-11,2.241e-11,1.9327e-11,1.6525e-11,1.1725e-11,8.5914e-12,6.8652e-12,4.7963e-12,3.4352e-12,2.2217e-12,2.1825e-12,1.5573e-12,1.1237e-12,9.2629e-13,5.5053e-13,4.7222e-13,3.4541e-13,2.8686e-13,1.9433e-13,1.8646e-13,1.7123e-13,1.4055e-13,9.2783e-14,6.0385e-14,4.8041e-14,3.8206e-14,3.3892e-14,3.3325e-14,2.6799e-14,2.0815e-14,9.5645e-15,7.7646e-15,6.9205e-15,5.364e-15,5.3545e-15,4.1628e-15,4.0342e-15,3.399e-15,2.9611e-15,1.8575e-15,1.7359e-15,1.2033e-15,8.5417e-16,2.7587e-16,2.2267e-16,2.0075e-16,1.5288e-16,1.183e-16,1.0729e-16,8.8245e-17,7.6664e-17,6.4365e-17,4.8175e-17,4.8101e-17,2.8492e-17,2.4778e-17,2.4066e-17,2.3695e-17,1.3857e-17,1.3689e-17,1.2966e-17,1.2446e-17,1.1194e-17,9.3874e-18,8.0146e-18,3.9594e-18,8.6544e-19,5.4772e-19,5.2595e-19,5.0861e-19,4.5627e-19,4.295e-19,2.4136e-19,1.6475e-19,1.2465e-19,1.0659e-19,7.6798e-20,5.8068e-20,5.512e-20,3.7155e-20,2.9698e-20,2.2574e-20,1.4502e-20,8.0702e-21,7.7728e-21,6.3688e-21,5.5447e-21,5.2099e-21,2.6734e-21,2.2255e-21,9.6205e-22,7.6149e-22,5.0379e-22,4.0356e-22,3.7553e-22,2.535e-22,2.4092e-22,2.1551e-22,1.6887e-22,1.0589e-22 1,0.0001774,0.0002175,0.00021971,0.00023353,0.00024472,0.00026019,0.00029287,0.00038677,0.00046044,0.00047286,0.00054236,0.00055457,0.00060571,0.00074908,0.00080022,0.00083765,0.0010194,0.0010541,0.0010939,0.0012378,0.0012543,0.0012638,0.0013875,0.0014657,0.0014683,0.0016302,0.0016457,0.0017248,0.0017355,0.0017459,0.0023902,0.0032029,0.0032876,0.0035781,0.0038569,0.0040869,0.004376,0.0047353,0.0054332,0.005856,0.006607,0.0076747,0.0077806,0.0080104,0.008228,0.009449,0.009451,0.013043,0.013352,0.013527,0.014859,0.014962,0.017935,0.019239,0.019805,0.0211,0.02196,0.023508,0.024007,0.028159,0.031019,0.041677,0.045092,0.046285,0.048488,0.054991,0.056411,0.057695,0.064055,0.07053,0.073058,0.075182,0.083303,0.096246,0.11155,0.12287,0.12535,0.14922,0.15821,0.16254,0.16449,0.17256,0.20874,0.20999,0.21683,0.22799,0.23023,0.24692,0.29683,0.29752,0.31264,0.31817,0.38499,0.4028,0.40412,0.42037,0.44279,0.44324,0.44508,0.45885,0.45898,0.4716,0.47651,0.54829,0.58041,0.5815,0.61812,0.62792,0.64307,0.65042,0.65475,0.65954,0.66109,0.66525,0.68192,0.68385,0.68782,0.69108,0.71543,0.74246,0.77623,0.7886,0.81405,0.84116,0.8521,0.85764,0.91307,0.91874,0.9228,0.93057,0.93993,0.94753,0.95335,0.95436,0.95498,0.96175,0.97702,0.97799,0.98286,0.98923,0.99212,0.99255,1,1,0.99968,0.99736,0.9967,0.9936,0.99272,0.98502,0.97855,0.95977,0.95926,0.93109,0.92746,0.92628,0.90397,0.90247,0.89377,0.88185,0.87803,0.8751,0.86332,0.86133,0.86003,0.85031,0.84685,0.84595,0.83763,0.8346,0.81749,0.78795,0.78255,0.7811,0.76734,0.7616,0.73785,0.69509,0.68162,0.66016,0.65223,0.63017,0.60817,0.60638,0.60499,0.60482,0.59834,0.59779,0.5775,0.56821,0.55081,0.55003,0.54535,0.5155,0.51464,0.50059,0.48475,0.45689,0.45327,0.443,0.44072,0.43496,0.42539,0.4109,0.41051,0.37853,0.34372,0.34013,0.33618,0.33495,0.31519,0.30337,0.26535,0.26345,0.25964,0.25329,0.23061,0.20847,0.186,0.1796,0.17585,0.1666,0.14902,0.14175,0.13273,0.11972,0.10932,0.10752,0.089703,0.087546,0.086769,0.083071,0.081636,0.070887,0.066647,0.065461,0.065342,0.062913,0.059758,0.058341,0.05772,0.047695,0.047684,0.039954,0.032455,0.026641,0.022111,0.020372,0.019936,0.01895,0.018124,0.016303,0.016113,0.013089,0.01241,0.011145,0.0097354,0.0089614,0.0088775,0.0082947,0.0079235,0.0070749,0.0059649,0.0058693,0.0054402,0.0048212,0.0043666,0.0043464,0.0030687,0.0028963,0.0028168,0.0026219,0.0025257,0.0023808,0.0021658,0.0020842,0.0019753,0.0018111,0.0016174,0.0014508,0.0014348,0.001255,0.0011484,0.0010616,0.00088648,0.00081585,0.00079152,0.00071058,0.00070593,0.00067316,0.00065915,0.00049779,0.00046285,0.00044991,0.00039506,0.00036619,0.00036198,0.00030278,0.00021384,0.00019257,0.00018241,0.00016069,0.00015894,0.00013767,0.00013551,0.00011242,0.00010064,8.0453e-05,7.8831e-05,7.7337e-05,7.6514e-05,7.3881e-05,7.1797e-05,7.0554e-05,5.8646e-05,5.641e-05,3.8885e-05,3.4283e-05,3.1525e-05,3.0492e-05,2.3089e-05,2.2977e-05,2.0948e-05,2.006e-05,1.6116e-05,1.6005e-05,1.5743e-05,1.3358e-05,1.2762e-05,1.2556e-05,1.195e-05,1.1208e-05,1.0547e-05,1.0219e-05,7.4735e-06,7.391e-06,6.2642e-06,4.8771e-06,3.8452e-06,2.7534e-06,2.7403e-06,2.4314e-06,2.0902e-06,1.7097e-06,1.7059e-06,1.5907e-06,1.1425e-06,1.0575e-06,1.0485e-06,7.0557e-07,6.4638e-07,6.1449e-07,5.2556e-07,4.4979e-07,3.3702e-07,3.2206e-07,2.5843e-07,1.5709e-07,1.5604e-07,1.4976e-07,1.3768e-07,1.2887e-07,1.1876e-07,1.0782e-07,4.3346e-08,3.4004e-08,2.337e-08,1.7644e-08,1.74e-08,1.6851e-08,1.1041e-08,9.9977e-09,9.9155e-09,6.5868e-09,3.2715e-09,3.1989e-09,2.5971e-09,2.4873e-09,1.5347e-09,1.3395e-09,9.9393e-10,8.5005e-10,7.1472e-10,6.9093e-10,5.6185e-10,5.4168e-10,5.3236e-10,3.3161e-10,2.8759e-10,2.7083e-10,2.2272e-10,2.0937e-10,1.5759e-10,1.4767e-10,1.2953e-10,9.33e-11,9.301e-11,7.9386e-11,7.5245e-11,7.5239e-11,5.2959e-11,5.2372e-11,4.5284e-11,3.8824e-11,2.7711e-11,2.0414e-11,1.6375e-11,1.151e-11,8.2902e-12,5.401e-12,5.3073e-12,3.8083e-12,2.7628e-12,2.2847e-12,1.3695e-12,1.1776e-12,8.6575e-13,7.2115e-13,4.9158e-13,4.72e-13,4.3403e-13,3.5737e-13,2.3748e-13,1.5561e-13,1.2424e-13,9.916e-14,8.8127e-14,8.6675e-14,6.9936e-14,5.4532e-14,2.5358e-14,2.0651e-14,1.8439e-14,1.4347e-14,1.4322e-14,1.1176e-14,1.0836e-14,9.1534e-15,7.9906e-15,5.0475e-15,4.7218e-15,3.2909e-15,2.3479e-15,7.7088e-16,6.2415e-16,5.6353e-16,4.3084e-16,3.3461e-16,3.039e-16,2.5065e-16,2.1819e-16,1.8364e-16,1.3801e-16,1.378e-16,8.2229e-17,7.1651e-17,6.962e-17,6.856e-17,4.0397e-17,3.9913e-17,3.7832e-17,3.6337e-17,3.2729e-17,2.7514e-17,2.3542e-17,1.1743e-17,2.6202e-18,1.6684e-18,1.603e-18,1.5508e-18,1.3933e-18,1.3126e-18,7.4326e-19,5.0989e-19,3.872e-19,3.3178e-19,2.4008e-19,1.8219e-19,1.7305e-19,1.1725e-19,9.3987e-20,7.1695e-20,4.6321e-20,2.597e-20,2.5025e-20,2.0557e-20,1.7928e-20,1.6859e-20,8.7241e-21,7.2791e-21,3.1798e-21,2.5242e-21,1.6785e-21,1.3483e-21,1.2558e-21,8.5178e-22,8.1001e-22,7.2557e-22,5.7025e-22,3.596e-22 1,0.00017644,0.00021634,0.00021855,0.00023229,0.00024343,0.00025882,0.00029134,0.00038478,0.0004581,0.00047047,0.00053963,0.00055179,0.00060269,0.0007454,0.0007963,0.00083357,0.0010145,0.0010491,0.0010886,0.0012319,0.0012483,0.0012579,0.001381,0.0014589,0.0014615,0.0016226,0.0016381,0.0017168,0.0017275,0.0017378,0.0023795,0.0031889,0.0032732,0.0035625,0.0038403,0.0040693,0.0043573,0.0047152,0.0054105,0.0058316,0.0065799,0.0076437,0.0077492,0.0079781,0.008195,0.0094116,0.0094136,0.012993,0.013301,0.013475,0.014803,0.014905,0.017869,0.019169,0.019733,0.021024,0.021882,0.023425,0.023922,0.028062,0.030913,0.041541,0.044947,0.046137,0.048333,0.05482,0.056235,0.057516,0.063861,0.07032,0.072842,0.07496,0.083062,0.095975,0.11124,0.12254,0.12502,0.14884,0.15782,0.16214,0.16408,0.17214,0.20826,0.20951,0.21634,0.22748,0.22971,0.24638,0.29623,0.29692,0.31202,0.31754,0.3843,0.40209,0.40342,0.41965,0.44206,0.44251,0.44434,0.45811,0.45823,0.47085,0.47576,0.54751,0.57962,0.58072,0.61733,0.62714,0.64228,0.64964,0.65397,0.65875,0.66031,0.66447,0.68114,0.68307,0.68705,0.6903,0.71466,0.74171,0.77551,0.78789,0.81337,0.84051,0.85148,0.85702,0.91256,0.91824,0.92232,0.93011,0.93949,0.94712,0.95297,0.95398,0.9546,0.9614,0.97674,0.97772,0.98262,0.98904,0.99196,0.99239,1,1,0.99971,0.99746,0.99681,0.99375,0.99288,0.98524,0.97882,0.96013,0.95962,0.93155,0.92793,0.92675,0.9045,0.903,0.89432,0.88243,0.87861,0.87569,0.86393,0.86194,0.86064,0.85094,0.84749,0.84658,0.83828,0.83525,0.81816,0.78865,0.78326,0.78181,0.76807,0.76233,0.7386,0.69586,0.68239,0.66094,0.65302,0.63095,0.60896,0.60717,0.60577,0.60561,0.59913,0.59858,0.57829,0.569,0.55159,0.55081,0.54613,0.51627,0.51541,0.50135,0.48551,0.45763,0.45401,0.44374,0.44145,0.43569,0.42611,0.41161,0.41122,0.37922,0.34438,0.34078,0.33682,0.3356,0.31581,0.30398,0.26592,0.26401,0.26019,0.25383,0.23112,0.20895,0.18644,0.18003,0.17628,0.16701,0.1494,0.14212,0.13307,0.12004,0.10961,0.10781,0.089959,0.087797,0.087018,0.083312,0.081874,0.071099,0.066849,0.06566,0.06554,0.063106,0.059943,0.058522,0.057899,0.047848,0.047836,0.040086,0.032565,0.026734,0.02219,0.020446,0.020009,0.01902,0.018191,0.016364,0.016173,0.013139,0.012458,0.011188,0.0097739,0.0089973,0.008913,0.0083281,0.0079556,0.0071038,0.0059897,0.0058938,0.005463,0.0048417,0.0043854,0.004365,0.0030823,0.0029092,0.0028294,0.0026337,0.0025371,0.0023915,0.0021756,0.0020937,0.0019843,0.0018194,0.0016249,0.0014576,0.0014416,0.001261,0.0011539,0.0010667,0.0008908,0.00081986,0.00079541,0.0007141,0.00070943,0.0006765,0.00066244,0.00050032,0.00046521,0.00045221,0.00039709,0.00036808,0.00036386,0.00030437,0.00021498,0.00019361,0.0001834,0.00016156,0.0001598,0.00013842,0.00013626,0.00011304,0.0001012,8.0908e-05,7.9277e-05,7.7775e-05,7.6947e-05,7.43e-05,7.2206e-05,7.0956e-05,5.8984e-05,5.6735e-05,3.9114e-05,3.4485e-05,3.1712e-05,3.0674e-05,2.3228e-05,2.3115e-05,2.1075e-05,2.0181e-05,1.6215e-05,1.6103e-05,1.584e-05,1.344e-05,1.2841e-05,1.2634e-05,1.2024e-05,1.1278e-05,1.0613e-05,1.0283e-05,7.5208e-06,7.4378e-06,6.3041e-06,4.9085e-06,3.8702e-06,2.7715e-06,2.7583e-06,2.4475e-06,2.1041e-06,1.7212e-06,1.7173e-06,1.6014e-06,1.1503e-06,1.0647e-06,1.0556e-06,7.1046e-07,6.5088e-07,6.1877e-07,5.2924e-07,4.5296e-07,3.3942e-07,3.2435e-07,2.6029e-07,1.5824e-07,1.5718e-07,1.5086e-07,1.3869e-07,1.2982e-07,1.1964e-07,1.0862e-07,4.3675e-08,3.4264e-08,2.3551e-08,1.7781e-08,1.7536e-08,1.6983e-08,1.1128e-08,1.0077e-08,9.994e-09,6.6395e-09,3.2981e-09,3.225e-09,2.6184e-09,2.5077e-09,1.5474e-09,1.3506e-09,1.0023e-09,8.5722e-10,7.2077e-10,6.9678e-10,5.6663e-10,5.463e-10,5.369e-10,3.3447e-10,2.9008e-10,2.7317e-10,2.2465e-10,2.1119e-10,1.5897e-10,1.4897e-10,1.3067e-10,9.4127e-11,9.3835e-11,8.0092e-11,7.5915e-11,7.5909e-11,5.3434e-11,5.2842e-11,4.5692e-11,3.9174e-11,2.7963e-11,2.06e-11,1.6525e-11,1.1616e-11,8.3675e-12,5.4517e-12,5.3572e-12,3.8443e-12,2.7891e-12,2.3065e-12,1.3827e-12,1.189e-12,8.7417e-13,7.2819e-13,4.9641e-13,4.7664e-13,4.3831e-13,3.609e-13,2.3985e-13,1.5717e-13,1.2549e-13,1.0016e-13,8.9019e-14,8.7552e-14,7.0647e-14,5.5088e-14,2.562e-14,2.0865e-14,1.863e-14,1.4496e-14,1.4471e-14,1.1293e-14,1.095e-14,9.2495e-15,8.0747e-15,5.101e-15,4.7719e-15,3.3259e-15,2.373e-15,7.7928e-16,6.3097e-16,5.6969e-16,4.3557e-16,3.383e-16,3.0725e-16,2.5342e-16,2.2061e-16,1.8568e-16,1.3955e-16,1.3934e-16,8.3153e-17,7.2458e-17,7.0404e-17,6.9333e-17,4.0856e-17,4.0366e-17,3.8262e-17,3.675e-17,3.3101e-17,2.7828e-17,2.3811e-17,1.1879e-17,2.651e-18,1.6882e-18,1.622e-18,1.5692e-18,1.4098e-18,1.3281e-18,7.5213e-19,5.1601e-19,3.9185e-19,3.3578e-19,2.4298e-19,1.844e-19,1.7516e-19,1.1868e-19,9.5137e-20,7.2574e-20,4.6892e-20,2.6293e-20,2.5336e-20,2.0812e-20,1.8152e-20,1.7069e-20,8.8337e-21,7.3707e-21,3.2202e-21,2.5563e-21,1.7e-21,1.3656e-21,1.2719e-21,8.6274e-22,8.2044e-22,7.3493e-22,5.7762e-22,3.6427e-22 1,0.00015954,0.00019584,0.00019785,0.00021038,0.00022052,0.00023455,0.00026421,0.00034953,0.00041658,0.00042789,0.00049122,0.00050235,0.00054899,0.00067991,0.00072664,0.00076087,0.00092723,0.000959,0.00099542,0.0011274,0.0011425,0.0011512,0.0012647,0.0013365,0.0013389,0.0014876,0.0015019,0.0015746,0.0015844,0.001594,0.0021872,0.0029372,0.0030155,0.003284,0.003542,0.0037548,0.0040225,0.0043555,0.0050028,0.0053953,0.0060931,0.0070863,0.0071849,0.0073989,0.0076016,0.0087396,0.0087414,0.012097,0.012386,0.012549,0.013797,0.013893,0.016681,0.017905,0.018437,0.019653,0.020462,0.021918,0.022388,0.026299,0.028997,0.039074,0.04231,0.043441,0.04553,0.051705,0.053053,0.054274,0.060325,0.066493,0.068903,0.070929,0.078682,0.091059,0.10572,0.11659,0.11898,0.14195,0.15062,0.15479,0.15667,0.16446,0.19948,0.20069,0.20732,0.21816,0.22033,0.23655,0.28519,0.28587,0.30064,0.30604,0.37156,0.38908,0.39038,0.40638,0.4285,0.42894,0.43075,0.44436,0.44448,0.45696,0.46182,0.53303,0.56502,0.56611,0.60268,0.61249,0.62767,0.63504,0.63938,0.64419,0.64575,0.64992,0.66668,0.66862,0.67262,0.6759,0.70045,0.72778,0.76204,0.77464,0.80061,0.82839,0.83965,0.84535,0.90292,0.90886,0.91313,0.92133,0.93124,0.93934,0.94558,0.94665,0.94732,0.95462,0.97135,0.97244,0.97791,0.98521,0.98863,0.98915,0.99968,0.99971,1,0.99889,0.99844,0.99615,0.99546,0.98907,0.98344,0.96649,0.96601,0.93979,0.93636,0.93525,0.91407,0.91264,0.90432,0.89289,0.88921,0.8864,0.87503,0.87311,0.87185,0.86245,0.8591,0.85822,0.85015,0.8472,0.83054,0.80166,0.79636,0.79495,0.78144,0.77579,0.7524,0.71011,0.69675,0.67543,0.66755,0.64556,0.62361,0.62181,0.62042,0.62026,0.61378,0.61323,0.59292,0.58361,0.56615,0.56537,0.56067,0.53066,0.52979,0.51564,0.49966,0.47153,0.46787,0.45748,0.45517,0.44934,0.43964,0.42495,0.42455,0.39207,0.35664,0.35297,0.34894,0.34769,0.32751,0.31543,0.2765,0.27454,0.27063,0.26412,0.24081,0.21801,0.19483,0.18821,0.18434,0.17477,0.15656,0.14902,0.13965,0.12613,0.11529,0.11342,0.09483,0.092575,0.091763,0.087896,0.086395,0.075138,0.070692,0.069447,0.069322,0.066773,0.06346,0.061971,0.061318,0.050769,0.050757,0.042606,0.03468,0.028522,0.023713,0.021864,0.021401,0.020352,0.019473,0.017533,0.01733,0.014103,0.013378,0.012025,0.010516,0.0096869,0.0095969,0.0089719,0.0085736,0.0076624,0.0064691,0.0063662,0.0059043,0.0052375,0.0047473,0.0047255,0.0033452,0.0031587,0.0030726,0.0028615,0.0027573,0.0026002,0.002367,0.0022785,0.0021602,0.0019819,0.0017714,0.0015901,0.0015728,0.001377,0.0012608,0.0011661,0.00097493,0.00089776,0.00087116,0.00078264,0.00077756,0.00074169,0.00072636,0.00054956,0.00051123,0.00049703,0.0004368,0.00040507,0.00040045,0.00033534,0.00023735,0.00021389,0.00020267,0.00017867,0.00017673,0.00015322,0.00015083,0.00012527,0.00011222,8.9827e-05,8.8026e-05,8.6367e-05,8.5453e-05,8.253e-05,8.0215e-05,7.8834e-05,6.56e-05,6.3112e-05,4.3598e-05,3.8465e-05,3.5387e-05,3.4234e-05,2.5963e-05,2.5837e-05,2.3568e-05,2.2574e-05,1.8158e-05,1.8032e-05,1.774e-05,1.5065e-05,1.4396e-05,1.4166e-05,1.3485e-05,1.2652e-05,1.191e-05,1.1542e-05,8.4546e-06,8.3618e-06,7.0931e-06,5.5296e-06,4.365e-06,3.1309e-06,3.116e-06,2.7665e-06,2.38e-06,1.9487e-06,1.9444e-06,1.8137e-06,1.3048e-06,1.2081e-06,1.1979e-06,8.0768e-07,7.4023e-07,7.0387e-07,6.0246e-07,5.1598e-07,3.8714e-07,3.7003e-07,2.9723e-07,1.8109e-07,1.7988e-07,1.7268e-07,1.5881e-07,1.4869e-07,1.3708e-07,1.245e-07,5.0256e-08,3.9466e-08,2.7168e-08,2.0536e-08,2.0253e-08,1.9617e-08,1.2876e-08,1.1664e-08,1.1569e-08,7.6982e-09,3.8345e-09,3.7498e-09,3.0469e-09,2.9186e-09,1.8043e-09,1.5756e-09,1.1706e-09,1.0017e-09,8.4283e-10,8.1488e-10,6.6318e-10,6.3947e-10,6.285e-10,3.9222e-10,3.4034e-10,3.2057e-10,2.6382e-10,2.4807e-10,1.8692e-10,1.752e-10,1.5375e-10,1.1088e-10,1.1054e-10,9.4405e-11,8.9499e-11,8.9492e-11,6.3073e-11,6.2377e-11,5.3964e-11,4.6291e-11,3.3082e-11,2.4397e-11,1.9586e-11,1.3784e-11,9.9402e-12,6.4858e-12,6.3737e-12,4.5788e-12,3.3255e-12,2.7518e-12,1.6524e-12,1.4216e-12,1.0463e-12,8.7207e-13,5.9523e-13,5.716e-13,5.2576e-13,4.3319e-13,2.8826e-13,1.8914e-13,1.5113e-13,1.2071e-13,1.0732e-13,1.0556e-13,8.5232e-14,6.6513e-14,3.1006e-14,2.5268e-14,2.2568e-14,1.7574e-14,1.7544e-14,1.3702e-14,1.3286e-14,1.1229e-14,9.8064e-15,6.2035e-15,5.8044e-15,4.0499e-15,2.8925e-15,9.5295e-16,7.7206e-16,6.9729e-16,5.3354e-16,4.1469e-16,3.7674e-16,3.109e-16,2.7075e-16,2.28e-16,1.715e-16,1.7124e-16,1.0234e-16,8.9207e-17,8.6686e-17,8.5371e-17,5.0381e-17,4.9778e-17,4.7191e-17,4.5331e-17,4.0842e-17,3.4352e-17,2.9406e-17,1.4698e-17,3.2935e-18,2.0999e-18,2.0177e-18,1.9523e-18,1.7544e-18,1.6531e-18,9.3757e-19,6.4387e-19,4.8931e-19,4.1945e-19,3.0379e-19,2.3071e-19,2.1918e-19,1.4866e-19,1.1924e-19,9.1021e-20,5.8877e-20,3.3062e-20,3.1861e-20,2.6186e-20,2.2846e-20,2.1487e-20,1.1139e-20,9.2981e-21,4.0706e-21,3.2333e-21,2.1524e-21,1.7299e-21,1.6115e-21,1.0942e-21,1.0406e-21,9.3242e-22,7.3328e-22,4.6295e-22 1,0.00013081,0.00016095,0.00016262,0.00017304,0.00018148,0.00019316,0.00021789,0.0002892,0.00034539,0.00035489,0.00040809,0.00041745,0.0004567,0.00056709,0.00060657,0.00063551,0.00077638,0.00080333,0.00083423,0.00094631,0.00095915,0.00096661,0.0010632,0.0011243,0.0011264,0.0012532,0.0012654,0.0013274,0.0013358,0.001344,0.001852,0.0024971,0.0025646,0.0027963,0.0030191,0.0032032,0.0034349,0.0037234,0.0042854,0.0046266,0.0052344,0.0061013,0.0061875,0.0063746,0.0065519,0.0075488,0.0075504,0.010502,0.010757,0.010901,0.012003,0.012088,0.014557,0.015643,0.016116,0.017197,0.017918,0.019215,0.019634,0.023129,0.025545,0.034609,0.037531,0.038553,0.040443,0.04604,0.047265,0.048374,0.053879,0.059505,0.061706,0.063558,0.070657,0.082026,0.095546,0.1056,0.10781,0.12916,0.13724,0.14114,0.1429,0.15018,0.18306,0.1842,0.19046,0.20068,0.20273,0.21808,0.26434,0.26499,0.2791,0.28428,0.34729,0.36424,0.3655,0.38101,0.4025,0.40293,0.4047,0.41796,0.41808,0.43026,0.43501,0.50497,0.53662,0.5377,0.57407,0.58387,0.59904,0.60642,0.61078,0.6156,0.61717,0.62136,0.63822,0.64018,0.64421,0.64751,0.67234,0.70011,0.73516,0.7481,0.77493,0.80384,0.81563,0.82162,0.88287,0.88931,0.89394,0.90288,0.91377,0.92275,0.92972,0.93093,0.93169,0.93994,0.95929,0.96057,0.96712,0.97613,0.98051,0.98118,0.99736,0.99746,0.99889,1,0.99996,0.99918,0.99884,0.9949,0.99085,0.97739,0.97699,0.95449,0.95147,0.95049,0.93151,0.93021,0.92265,0.91217,0.90878,0.90618,0.89564,0.89385,0.89268,0.8839,0.88076,0.87994,0.87235,0.86958,0.85383,0.8263,0.82123,0.81987,0.80688,0.80144,0.77881,0.73758,0.72448,0.7035,0.69572,0.67397,0.65216,0.65037,0.64899,0.64883,0.64237,0.64183,0.62155,0.61223,0.59473,0.59395,0.58922,0.559,0.55813,0.54383,0.52765,0.49908,0.49535,0.48477,0.48241,0.47646,0.46655,0.45152,0.45112,0.41778,0.38123,0.37744,0.37327,0.37197,0.35106,0.33851,0.29791,0.29587,0.29178,0.28495,0.26049,0.23647,0.21196,0.20494,0.20084,0.19067,0.17127,0.16322,0.15319,0.13869,0.12704,0.12502,0.10495,0.1025,0.10162,0.097432,0.095804,0.083566,0.07872,0.077362,0.077225,0.074443,0.070822,0.069193,0.068478,0.056909,0.056896,0.047918,0.039153,0.032313,0.026952,0.024885,0.024367,0.023193,0.022207,0.02003,0.019802,0.016169,0.015351,0.013822,0.012113,0.011172,0.01107,0.01036,0.0099069,0.0088691,0.0075069,0.0073893,0.0068608,0.0060966,0.005534,0.0055089,0.003919,0.0037034,0.0036038,0.0033596,0.0032389,0.0030568,0.0027862,0.0026834,0.002546,0.0023385,0.0020932,0.0018817,0.0018615,0.0016325,0.0014965,0.0013855,0.001161,0.0010702,0.0010389,0.00093461,0.00092862,0.00088631,0.00086821,0.00065914,0.00061371,0.00059687,0.00052535,0.00048764,0.00048214,0.0004046,0.00028752,0.00025941,0.00024596,0.00021714,0.00021482,0.00018654,0.00018367,0.00015285,0.0001371,0.00011001,0.00010783,0.00010582,0.00010471,0.00010117,9.8361e-05,9.6686e-05,8.0614e-05,7.759e-05,5.381e-05,4.7537e-05,4.3772e-05,4.2361e-05,3.2218e-05,3.2063e-05,2.9275e-05,2.8052e-05,2.2614e-05,2.246e-05,2.2099e-05,1.8798e-05,1.7971e-05,1.7686e-05,1.6845e-05,1.5815e-05,1.4897e-05,1.444e-05,1.061e-05,1.0495e-05,8.9166e-06,6.9678e-06,5.5128e-06,3.9665e-06,3.9479e-06,3.509e-06,3.023e-06,2.4798e-06,2.4743e-06,2.3095e-06,1.6665e-06,1.5441e-06,1.5312e-06,1.036e-06,9.5023e-07,9.0397e-07,7.7479e-07,6.6448e-07,4.9981e-07,4.7791e-07,3.8461e-07,2.3532e-07,2.3377e-07,2.2448e-07,2.0659e-07,1.9354e-07,1.7855e-07,1.623e-07,6.6005e-08,5.1936e-08,3.586e-08,2.7166e-08,2.6795e-08,2.596e-08,1.7096e-08,1.5499e-08,1.5373e-08,1.0262e-08,5.1389e-09,5.0263e-09,4.0906e-09,3.9196e-09,2.4318e-09,2.1258e-09,1.5827e-09,1.356e-09,1.1424e-09,1.1048e-09,9.0043e-10,8.6847e-10,8.5369e-10,5.3456e-10,4.6432e-10,4.3755e-10,3.6059e-10,3.3921e-10,2.5611e-10,2.4015e-10,2.1094e-10,1.5248e-10,1.5201e-10,1.2997e-10,1.2326e-10,1.2325e-10,8.7075e-11,8.612e-11,7.4579e-11,6.4042e-11,4.5873e-11,3.39e-11,2.7255e-11,1.9227e-11,1.3895e-11,9.0919e-12,8.9358e-12,6.4334e-12,4.6822e-12,3.8792e-12,2.337e-12,2.0126e-12,1.4841e-12,1.2384e-12,8.4733e-13,8.1389e-13,7.4902e-13,6.1789e-13,4.1221e-13,2.7118e-13,2.1698e-13,1.7354e-13,1.5441e-13,1.5188e-13,1.228e-13,9.5973e-14,4.4946e-14,3.6672e-14,3.2777e-14,2.5561e-14,2.5517e-14,1.9958e-14,1.9356e-14,1.6375e-14,1.4312e-14,9.0783e-15,8.4976e-15,5.9415e-15,4.2517e-15,1.4097e-15,1.1435e-15,1.0333e-15,7.9185e-16,6.1633e-16,5.6022e-16,4.6282e-16,4.0337e-16,3.4e-16,2.5615e-16,2.5576e-16,1.5328e-16,1.3372e-16,1.2996e-16,1.28e-16,7.5756e-17,7.4855e-17,7.0985e-17,6.8201e-17,6.1484e-17,5.1762e-17,4.4346e-17,2.2248e-17,5.0253e-18,3.2116e-18,3.0866e-18,2.9869e-18,2.6857e-18,2.5314e-18,1.44e-18,9.908e-19,7.5402e-19,6.4689e-19,4.6928e-19,3.5689e-19,3.3914e-19,2.3048e-19,1.8507e-19,1.4147e-19,9.171e-20,5.1647e-20,4.9782e-20,4.0954e-20,3.5755e-20,3.3638e-20,1.7494e-20,1.4617e-20,6.4249e-21,5.1091e-21,3.4078e-21,2.7417e-21,2.5549e-21,1.738e-21,1.6534e-21,1.4822e-21,1.167e-21,7.3839e-22 1,0.00012614,0.00015527,0.00015688,0.00016695,0.00017511,0.00018641,0.00021032,0.00027933,0.00033373,0.00034293,0.00039445,0.00040352,0.00044155,0.00054854,0.00058681,0.00061487,0.00075151,0.00077765,0.00080763,0.00091641,0.00092887,0.00093611,0.0010299,0.0010892,0.0010912,0.0012144,0.0012262,0.0012865,0.0012947,0.0013026,0.0017963,0.0024238,0.0024895,0.002715,0.0029319,0.0031111,0.0033367,0.0036178,0.0041653,0.0044979,0.0050904,0.0059359,0.00602,0.0062025,0.0063755,0.0073484,0.00735,0.010232,0.010482,0.010623,0.011699,0.011782,0.014197,0.01526,0.015722,0.016781,0.017486,0.018756,0.019166,0.022589,0.024956,0.033845,0.036712,0.037716,0.039571,0.045067,0.04627,0.04736,0.05277,0.0583,0.060465,0.062286,0.06927,0.080461,0.093779,0.10369,0.10587,0.12693,0.13491,0.13876,0.14049,0.14769,0.18018,0.18131,0.18749,0.19761,0.19964,0.21483,0.26065,0.2613,0.27529,0.28042,0.34297,0.3598,0.36106,0.37647,0.39785,0.39828,0.40003,0.41323,0.41335,0.42547,0.4302,0.49991,0.53148,0.53256,0.56888,0.57866,0.59383,0.60121,0.60557,0.61039,0.61196,0.61615,0.63302,0.63498,0.63902,0.64232,0.66719,0.69503,0.73019,0.74319,0.77016,0.79925,0.81113,0.81717,0.87906,0.88558,0.89028,0.89935,0.91041,0.91954,0.92664,0.92788,0.92864,0.93707,0.95688,0.9582,0.96493,0.97425,0.9788,0.9795,0.9967,0.99681,0.99844,0.99996,1,0.99949,0.99922,0.99573,0.99197,0.97915,0.97877,0.95696,0.95402,0.95306,0.9345,0.93322,0.9258,0.9155,0.91217,0.90961,0.89923,0.89747,0.89631,0.88765,0.88455,0.88374,0.87625,0.87351,0.85793,0.83067,0.82564,0.82429,0.81141,0.806,0.78353,0.74251,0.72947,0.70856,0.7008,0.67911,0.65734,0.65556,0.65417,0.65401,0.64756,0.64702,0.62676,0.61745,0.59994,0.59916,0.59443,0.56419,0.56331,0.54899,0.53279,0.50414,0.50041,0.48979,0.48742,0.48145,0.47151,0.45643,0.45602,0.42253,0.38579,0.38198,0.37779,0.37648,0.35544,0.3428,0.30191,0.29985,0.29573,0.28885,0.26417,0.23994,0.21518,0.20809,0.20394,0.19367,0.17405,0.1659,0.15576,0.14108,0.12927,0.12723,0.10687,0.1044,0.10351,0.099253,0.0976,0.085178,0.080257,0.078878,0.078739,0.075913,0.072233,0.070579,0.069852,0.05809,0.058076,0.048943,0.040018,0.033048,0.027581,0.025473,0.024944,0.023745,0.022739,0.020516,0.020283,0.016572,0.015736,0.014173,0.012426,0.011463,0.011359,0.010632,0.010169,0.0091062,0.0077112,0.0075907,0.0070492,0.0062661,0.0056892,0.0056635,0.0040326,0.0038113,0.0037091,0.0034583,0.0033344,0.0031474,0.0028694,0.0027638,0.0026226,0.0024094,0.0021573,0.0019398,0.001919,0.0016835,0.0015436,0.0014293,0.0011982,0.0011048,0.0010725,0.00096506,0.00095889,0.0009153,0.00089665,0.00068116,0.00063431,0.00061694,0.00054317,0.00050426,0.00049859,0.00041856,0.00029767,0.00026862,0.00025472,0.00022494,0.00022253,0.00019329,0.00019032,0.00015845,0.00014215,0.00011412,0.00011186,0.00010978,0.00010863,0.00010496,0.00010206,0.00010032,8.3676e-05,8.0543e-05,5.5898e-05,4.9394e-05,4.5488e-05,4.4025e-05,3.3501e-05,3.334e-05,3.0446e-05,2.9177e-05,2.353e-05,2.337e-05,2.2995e-05,1.9566e-05,1.8707e-05,1.8411e-05,1.7537e-05,1.6466e-05,1.5512e-05,1.5037e-05,1.1055e-05,1.0935e-05,9.2936e-06,7.2656e-06,5.7507e-06,4.1401e-06,4.1207e-06,3.6633e-06,3.1567e-06,2.5903e-06,2.5846e-06,2.4128e-06,1.742e-06,1.6142e-06,1.6007e-06,1.0838e-06,9.9419e-07,9.4586e-07,8.109e-07,6.9562e-07,5.2348e-07,5.0057e-07,4.0299e-07,2.4676e-07,2.4513e-07,2.354e-07,2.1668e-07,2.03e-07,1.873e-07,1.7029e-07,6.9346e-08,5.4584e-08,3.7709e-08,2.8579e-08,2.8189e-08,2.7312e-08,1.7997e-08,1.6318e-08,1.6186e-08,1.0811e-08,5.419e-09,5.3003e-09,4.3149e-09,4.1347e-09,2.567e-09,2.2443e-09,1.6717e-09,1.4325e-09,1.2071e-09,1.1674e-09,9.5175e-10,9.1802e-10,9.0241e-10,5.6542e-10,4.9121e-10,4.6293e-10,3.816e-10,3.59e-10,2.7115e-10,2.5428e-10,2.2339e-10,1.6155e-10,1.6105e-10,1.3772e-10,1.3062e-10,1.3061e-10,9.2317e-11,9.1306e-11,7.9084e-11,6.7924e-11,4.8674e-11,3.5983e-11,2.8937e-11,2.0423e-11,1.4765e-11,9.6661e-12,9.5004e-12,6.8426e-12,4.9818e-12,4.1284e-12,2.4887e-12,2.1435e-12,1.5812e-12,1.3197e-12,9.0337e-13,8.6776e-13,7.9867e-13,6.5899e-13,4.3983e-13,2.8949e-13,2.3168e-13,1.8535e-13,1.6494e-13,1.6225e-13,1.3121e-13,1.0257e-13,4.8077e-14,3.9235e-14,3.5072e-14,2.7358e-14,2.7312e-14,2.1367e-14,2.0723e-14,1.7535e-14,1.5329e-14,9.7276e-15,9.1059e-15,6.3693e-15,4.5594e-15,1.5135e-15,1.2279e-15,1.1097e-15,8.5065e-16,6.6227e-16,6.0204e-16,4.9747e-16,4.3362e-16,3.6556e-16,2.7548e-16,2.7507e-16,1.6494e-16,1.4391e-16,1.3987e-16,1.3776e-16,8.1575e-17,8.0606e-17,7.6443e-17,7.3448e-17,6.6221e-17,5.5759e-17,4.7778e-17,2.3987e-17,5.4257e-18,3.469e-18,3.3341e-18,3.2266e-18,2.9015e-18,2.7349e-18,1.5566e-18,1.0714e-18,8.1558e-19,6.998e-19,5.0782e-19,3.863e-19,3.671e-19,2.4957e-19,2.0044e-19,1.5326e-19,9.9391e-20,5.6003e-20,5.3981e-20,4.4417e-20,3.8783e-20,3.6489e-20,1.8988e-20,1.5867e-20,6.9798e-21,5.5515e-21,3.7042e-21,2.9808e-21,2.7779e-21,1.8903e-21,1.7983e-21,1.6123e-21,1.2697e-21,8.037e-22 1,0.00011007,0.0001357,0.00013713,0.000146,0.00015319,0.00016315,0.00018425,0.00024525,0.00029343,0.00030158,0.00034728,0.00035534,0.00038911,0.00048425,0.00051833,0.00054333,0.00066519,0.00068853,0.0007153,0.00081251,0.00082366,0.00083014,0.00091402,0.00096719,0.00096897,0.0010793,0.0010899,0.001144,0.0011513,0.0011585,0.0016021,0.0021677,0.002227,0.0024306,0.0026267,0.0027888,0.0029931,0.0032477,0.0037442,0.0040462,0.0045848,0.0053545,0.0054311,0.0055974,0.0057551,0.0066429,0.0066444,0.0092818,0.0095105,0.0096397,0.010628,0.010704,0.012924,0.013902,0.014328,0.015304,0.015954,0.017127,0.017506,0.020671,0.022864,0.031122,0.033792,0.034728,0.036458,0.041591,0.042716,0.043735,0.0488,0.053986,0.056018,0.057728,0.064295,0.07484,0.087421,0.096806,0.098871,0.11887,0.12647,0.13013,0.13179,0.13865,0.16972,0.1708,0.17673,0.18643,0.18838,0.20299,0.24719,0.24781,0.26135,0.26632,0.3271,0.34352,0.34474,0.3598,0.38072,0.38114,0.38286,0.39579,0.39591,0.40781,0.41246,0.48115,0.51242,0.51349,0.54957,0.55931,0.57443,0.5818,0.58615,0.59096,0.59253,0.59672,0.6136,0.61557,0.61962,0.62293,0.6479,0.67594,0.71151,0.7247,0.75215,0.7819,0.79409,0.80029,0.86443,0.87126,0.87618,0.88572,0.8974,0.90709,0.91466,0.91598,0.9168,0.92583,0.94734,0.94879,0.95622,0.96665,0.97183,0.97263,0.9936,0.99375,0.99615,0.99918,0.99949,1,0.99997,0.99817,0.9955,0.9851,0.98478,0.9656,0.96295,0.96208,0.9451,0.94392,0.93704,0.92743,0.92431,0.92191,0.91214,0.91047,0.90938,0.90118,0.89824,0.89747,0.89034,0.88773,0.87283,0.8466,0.84174,0.84044,0.82796,0.82272,0.80084,0.76071,0.74788,0.72728,0.71962,0.69816,0.67657,0.6748,0.67342,0.67326,0.66685,0.66631,0.64614,0.63685,0.61937,0.61859,0.61386,0.58356,0.58268,0.5683,0.552,0.52313,0.51936,0.50864,0.50624,0.50021,0.49015,0.47487,0.47445,0.44045,0.40302,0.39914,0.39485,0.39352,0.37201,0.35907,0.31709,0.31497,0.31073,0.30365,0.27821,0.25316,0.22749,0.22013,0.21582,0.20514,0.1847,0.1762,0.1656,0.15023,0.13785,0.13571,0.11431,0.1117,0.11076,0.10627,0.10453,0.091408,0.0862,0.08474,0.084593,0.081598,0.077698,0.075942,0.075172,0.062671,0.062657,0.052922,0.043383,0.035913,0.030038,0.027768,0.027198,0.025906,0.024821,0.022421,0.02217,0.018155,0.017249,0.015554,0.013656,0.012609,0.012495,0.011704,0.011199,0.010041,0.0085171,0.0083855,0.0077932,0.0069356,0.0063032,0.006275,0.0044829,0.0042392,0.0041266,0.0038502,0.0037135,0.0035071,0.0032002,0.0030835,0.0029274,0.0026915,0.0024123,0.0021713,0.0021481,0.0018868,0.0017313,0.0016042,0.001347,0.0012427,0.0012068,0.0010869,0.00108,0.0010313,0.0010105,0.0007694,0.00071691,0.00069744,0.0006147,0.00057101,0.00056464,0.00047469,0.00033851,0.00030573,0.00029003,0.00025637,0.00025365,0.00022056,0.0002172,0.00018108,0.00016259,0.00013074,0.00012817,0.00012581,0.0001245,0.00012033,0.00011702,0.00011505,9.6087e-05,9.2515e-05,6.4378e-05,5.6938e-05,5.2467e-05,5.0791e-05,3.8725e-05,3.854e-05,3.5217e-05,3.3759e-05,2.7267e-05,2.7082e-05,2.6651e-05,2.2702e-05,2.1712e-05,2.1371e-05,2.0363e-05,1.9128e-05,1.8027e-05,1.7479e-05,1.2877e-05,1.2738e-05,1.0837e-05,8.4864e-06,6.7273e-06,4.8535e-06,4.8309e-06,4.2979e-06,3.7071e-06,3.0458e-06,3.0391e-06,2.8383e-06,2.0534e-06,1.9037e-06,1.8879e-06,1.2813e-06,1.176e-06,1.1191e-06,9.6034e-07,8.2459e-07,6.2158e-07,5.9454e-07,4.7925e-07,2.943e-07,2.9237e-07,2.8084e-07,2.5862e-07,2.4239e-07,2.2375e-07,2.0353e-07,8.3307e-08,6.566e-08,4.5453e-08,3.45e-08,3.4032e-08,3.2979e-08,2.1781e-08,1.9759e-08,1.96e-08,1.3119e-08,6.5998e-09,6.456e-09,5.2613e-09,5.0427e-09,3.1384e-09,2.7458e-09,2.0482e-09,1.7566e-09,1.4814e-09,1.4329e-09,1.1694e-09,1.1282e-09,1.1091e-09,6.9652e-10,6.0553e-10,5.7082e-10,4.7099e-10,4.4323e-10,3.3522e-10,3.1446e-10,2.7643e-10,2.0021e-10,1.996e-10,1.7082e-10,1.6205e-10,1.6204e-10,1.1472e-10,1.1347e-10,9.8346e-11,8.4528e-11,6.0667e-11,4.4912e-11,3.6154e-11,2.5557e-11,1.8504e-11,1.2137e-11,1.193e-11,8.6051e-12,6.2739e-12,5.2035e-12,3.1437e-12,2.7095e-12,2.0014e-12,1.6717e-12,1.1462e-12,1.1012e-12,1.0139e-12,8.3725e-13,5.5977e-13,3.6908e-13,2.9566e-13,2.3676e-13,2.1078e-13,2.0736e-13,1.6784e-13,1.3134e-13,6.1754e-14,5.0439e-14,4.5107e-14,3.5222e-14,3.5162e-14,2.7537e-14,2.671e-14,2.2616e-14,1.9781e-14,1.2576e-14,1.1775e-14,8.2481e-15,5.9122e-15,1.971e-15,1.6004e-15,1.4469e-15,1.1103e-15,8.6522e-16,7.8682e-16,6.5063e-16,5.6742e-16,4.7867e-16,3.6111e-16,3.6056e-16,2.1663e-16,1.891e-16,1.8381e-16,1.8105e-16,1.0742e-16,1.0615e-16,1.0069e-16,9.6756e-17,8.7268e-17,7.3529e-17,6.304e-17,3.1729e-17,7.2158e-18,4.6209e-18,4.4419e-18,4.2991e-18,3.8675e-18,3.6462e-18,2.0793e-18,1.4332e-18,1.092e-18,9.3747e-19,6.8105e-19,5.1857e-19,4.9289e-19,3.3553e-19,2.6969e-19,2.0639e-19,1.3405e-19,7.568e-20,7.2957e-20,6.0071e-20,5.2476e-20,4.9382e-20,2.5754e-20,2.1534e-20,9.4985e-21,7.5605e-21,5.0514e-21,4.0678e-21,3.7918e-21,2.5835e-21,2.4582e-21,2.2048e-21,1.7376e-21,1.1015e-21 1,0.00010657,0.00013144,0.00013282,0.00014143,0.00014841,0.00015807,0.00017856,0.0002378,0.00028461,0.00029253,0.00033695,0.00034478,0.00037761,0.00047014,0.0005033,0.00052761,0.00064621,0.00066893,0.00069499,0.00078964,0.0008005,0.00080681,0.00088851,0.0009403,0.00094203,0.0010496,0.0010599,0.0011126,0.0011197,0.0011267,0.0015592,0.002111,0.0021688,0.0023676,0.002559,0.0027174,0.0029168,0.0031655,0.0036507,0.0039458,0.0044723,0.005225,0.0052999,0.0054626,0.0056169,0.0064856,0.006487,0.0090693,0.0092934,0.0094199,0.010388,0.010463,0.012638,0.013598,0.014016,0.014973,0.015611,0.016761,0.017133,0.02024,0.022393,0.030507,0.033133,0.034053,0.035754,0.040804,0.041911,0.042914,0.0479,0.053007,0.055009,0.056694,0.063164,0.07356,0.085971,0.095234,0.097273,0.11703,0.12453,0.12816,0.12979,0.13657,0.16731,0.16838,0.17425,0.18386,0.18579,0.20026,0.24408,0.24469,0.25812,0.26306,0.32341,0.33973,0.34095,0.35592,0.37673,0.37715,0.37886,0.39173,0.39185,0.40369,0.40832,0.47676,0.50794,0.50901,0.54502,0.55475,0.56986,0.57722,0.58157,0.58638,0.58795,0.59214,0.60902,0.61098,0.61503,0.61835,0.64334,0.67142,0.70706,0.7203,0.74785,0.77774,0.79,0.79624,0.86089,0.86778,0.87276,0.8824,0.89422,0.90404,0.91172,0.91305,0.91389,0.92306,0.94496,0.94644,0.95403,0.96472,0.97005,0.97088,0.99272,0.99288,0.99546,0.99884,0.99922,0.99997,1,0.9986,0.99619,0.98637,0.98606,0.96751,0.96492,0.96408,0.94748,0.94632,0.93957,0.93013,0.92706,0.9247,0.91507,0.91343,0.91235,0.90427,0.90136,0.9006,0.89356,0.89098,0.87626,0.85028,0.84546,0.84417,0.8318,0.82659,0.80487,0.76495,0.75218,0.73166,0.72403,0.70263,0.68108,0.67932,0.67794,0.67779,0.67139,0.67084,0.6507,0.64142,0.62395,0.62317,0.61844,0.58814,0.58726,0.57287,0.55656,0.52764,0.52386,0.51311,0.51071,0.50467,0.49458,0.47925,0.47884,0.44472,0.40714,0.40324,0.39893,0.3976,0.37597,0.36297,0.32074,0.31861,0.31433,0.30721,0.28158,0.25634,0.23047,0.22304,0.21869,0.20791,0.18728,0.17869,0.16798,0.15246,0.13994,0.13777,0.11612,0.11348,0.11252,0.10798,0.10622,0.092929,0.087653,0.086173,0.086024,0.082989,0.079035,0.077255,0.076474,0.063794,0.06378,0.0539,0.044212,0.036619,0.030645,0.028335,0.027755,0.02644,0.025336,0.022893,0.022636,0.018547,0.017624,0.015897,0.013962,0.012894,0.012778,0.011971,0.011455,0.010273,0.008718,0.0085836,0.0079787,0.0071027,0.0064566,0.0064277,0.0045956,0.0043463,0.0042311,0.0039484,0.0038085,0.0035973,0.0032832,0.0031637,0.0030039,0.0027623,0.0024764,0.0022294,0.0022057,0.0019379,0.0017785,0.0016483,0.0013845,0.0012776,0.0012407,0.0011176,0.0011106,0.0010606,0.0010392,0.00079173,0.00073782,0.00071782,0.00063282,0.00058793,0.00058138,0.00048893,0.00034889,0.00031516,0.00029901,0.00026436,0.00026156,0.0002275,0.00022404,0.00018685,0.0001678,0.00013499,0.00013234,0.0001299,0.00012855,0.00012425,0.00012084,0.00011881,9.926e-05,9.5576e-05,6.6551e-05,5.8872e-05,5.4256e-05,5.2526e-05,4.0066e-05,3.9876e-05,3.6443e-05,3.4937e-05,2.8228e-05,2.8037e-05,2.7591e-05,2.3509e-05,2.2486e-05,2.2133e-05,2.1091e-05,1.9814e-05,1.8675e-05,1.8108e-05,1.3347e-05,1.3203e-05,1.1236e-05,8.802e-06,6.98e-06,5.0383e-06,5.0149e-06,4.4624e-06,3.8499e-06,3.164e-06,3.1571e-06,2.9488e-06,2.1343e-06,1.9789e-06,1.9625e-06,1.3327e-06,1.2233e-06,1.1643e-06,9.993e-07,8.5823e-07,6.472e-07,6.1908e-07,4.9919e-07,3.0675e-07,3.0474e-07,2.9274e-07,2.6961e-07,2.5271e-07,2.333e-07,2.1225e-07,8.6979e-08,6.8576e-08,4.7495e-08,3.6062e-08,3.5574e-08,3.4475e-08,2.2781e-08,2.0669e-08,2.0502e-08,1.373e-08,6.9131e-09,6.7627e-09,5.5126e-09,5.2838e-09,3.2903e-09,2.8792e-09,2.1485e-09,1.8429e-09,1.5545e-09,1.5037e-09,1.2275e-09,1.1842e-09,1.1642e-09,7.3155e-10,6.3609e-10,5.9967e-10,4.949e-10,4.6576e-10,3.5237e-10,3.3058e-10,2.9065e-10,2.1059e-10,2.0994e-10,1.7969e-10,1.7048e-10,1.7047e-10,1.2074e-10,1.1942e-10,1.0352e-10,8.8992e-11,6.3894e-11,4.7317e-11,3.8099e-11,2.6942e-11,1.9514e-11,1.2805e-11,1.2587e-11,9.082e-12,6.6238e-12,5.4948e-12,3.3215e-12,2.8632e-12,2.1155e-12,1.7674e-12,1.2122e-12,1.1647e-12,1.0725e-12,8.8578e-13,5.9246e-13,3.908e-13,3.1313e-13,2.508e-13,2.2331e-13,2.1968e-13,1.7785e-13,1.3921e-13,6.5503e-14,5.3512e-14,4.786e-14,3.7381e-14,3.7317e-14,2.9231e-14,2.8354e-14,2.4012e-14,2.1005e-14,1.336e-14,1.251e-14,8.7656e-15,6.2851e-15,2.0974e-15,1.7034e-15,1.5402e-15,1.1821e-15,9.2143e-16,8.3801e-16,6.9307e-16,6.0451e-16,5.1004e-16,3.8487e-16,3.8429e-16,2.3099e-16,2.0166e-16,1.9602e-16,1.9308e-16,1.1461e-16,1.1326e-16,1.0743e-16,1.0324e-16,9.3128e-17,7.8478e-17,6.7292e-17,3.389e-17,7.717e-18,4.9437e-18,4.7523e-18,4.5997e-18,4.1382e-18,3.9017e-18,2.2261e-18,1.5348e-18,1.1697e-18,1.0043e-18,7.298e-19,5.5581e-19,5.2831e-19,3.5976e-19,2.8921e-19,2.2138e-19,1.4384e-19,8.1241e-20,7.8321e-20,6.4498e-20,5.6349e-20,5.3029e-20,2.767e-20,2.314e-20,1.0213e-20,8.1311e-21,5.4343e-21,4.3769e-21,4.0801e-21,2.7808e-21,2.6461e-21,2.3734e-21,1.8709e-21,1.1864e-21 1,8.4876e-05,0.00010496,0.00010607,0.00011303,0.00011869,0.00012652,0.00014314,0.00019132,0.00022952,0.000236,0.00027234,0.00027875,0.00030566,0.00038169,0.00040898,0.00042901,0.00052691,0.00054569,0.00056725,0.00064566,0.00065466,0.00065989,0.0007277,0.00077073,0.00077217,0.00086164,0.00087024,0.00091415,0.00092008,0.00092588,0.0012874,0.0017509,0.0017996,0.0019671,0.0021287,0.0022625,0.0024312,0.0026418,0.0030536,0.0033045,0.0037529,0.0043956,0.0044597,0.0045988,0.0047309,0.0054756,0.0054768,0.0077006,0.0078942,0.0080035,0.0088412,0.0089058,0.010794,0.011628,0.011992,0.012827,0.013383,0.014388,0.014713,0.017436,0.019329,0.026492,0.02882,0.029637,0.031148,0.035645,0.036632,0.037528,0.041986,0.046564,0.048362,0.049877,0.055703,0.065097,0.07636,0.084796,0.086656,0.10474,0.11163,0.11497,0.11647,0.12272,0.15118,0.15217,0.15763,0.16658,0.16838,0.18188,0.22302,0.2236,0.23628,0.24094,0.29829,0.31389,0.31505,0.32941,0.34941,0.34981,0.35145,0.36386,0.36397,0.37541,0.37988,0.44641,0.47695,0.478,0.51345,0.52307,0.53802,0.54532,0.54964,0.55442,0.55598,0.56015,0.57696,0.57892,0.58297,0.58628,0.6113,0.63956,0.67566,0.68913,0.71729,0.74807,0.76076,0.76724,0.83516,0.8425,0.84782,0.85816,0.87092,0.88158,0.88997,0.89144,0.89235,0.90247,0.92699,0.92867,0.93736,0.94981,0.95614,0.95713,0.98502,0.98524,0.98907,0.9949,0.99573,0.99817,0.9986,1,0.99941,0.99366,0.99345,0.97938,0.97729,0.9766,0.96273,0.96175,0.95594,0.94772,0.94502,0.94293,0.93438,0.93292,0.93195,0.92468,0.92206,0.92137,0.91499,0.91264,0.89915,0.87506,0.87055,0.86934,0.85773,0.85282,0.83224,0.79404,0.78172,0.76183,0.75441,0.73352,0.7124,0.71066,0.70931,0.70916,0.70286,0.70232,0.68244,0.67326,0.65592,0.65515,0.65045,0.62021,0.61933,0.60491,0.58853,0.55937,0.55556,0.54468,0.54225,0.53612,0.52588,0.51029,0.50987,0.47503,0.43645,0.43242,0.42799,0.42661,0.40428,0.3908,0.34688,0.34466,0.3402,0.33274,0.30589,0.27932,0.25197,0.2441,0.23948,0.22802,0.20603,0.19685,0.18537,0.16869,0.1552,0.15285,0.12941,0.12654,0.1255,0.12056,0.11864,0.10414,0.098365,0.096744,0.09658,0.093253,0.088912,0.086956,0.086097,0.072121,0.072105,0.061164,0.050384,0.041896,0.035188,0.032586,0.031933,0.030449,0.029202,0.026437,0.026147,0.021505,0.020454,0.018484,0.016273,0.01505,0.014917,0.013991,0.013399,0.012039,0.010246,0.010091,0.0093912,0.0083766,0.0076268,0.0075932,0.0054588,0.0051674,0.0050326,0.0047014,0.0045374,0.0042897,0.0039207,0.0037803,0.0035922,0.0033076,0.0029702,0.0026783,0.0026502,0.002333,0.0021438,0.0019891,0.001675,0.0015475,0.0015034,0.0013564,0.0013479,0.0012881,0.0012625,0.00096555,0.00090069,0.00087661,0.00077415,0.00071997,0.00071206,0.00060024,0.00043026,0.00038919,0.00036949,0.00032721,0.00032379,0.00028214,0.0002779,0.00023231,0.00020891,0.00016852,0.00016525,0.00016224,0.00016059,0.00015528,0.00015107,0.00014856,0.00012439,0.00011983,8.3808e-05,7.4247e-05,6.8493e-05,6.6334e-05,5.0761e-05,5.0523e-05,4.6222e-05,4.4334e-05,3.5909e-05,3.5669e-05,3.5108e-05,2.9969e-05,2.868e-05,2.8235e-05,2.692e-05,2.5308e-05,2.3869e-05,2.3152e-05,1.7124e-05,1.6941e-05,1.4443e-05,1.1345e-05,9.0193e-06,6.5333e-06,6.5032e-06,5.794e-06,5.0065e-06,4.1231e-06,4.1142e-06,3.8455e-06,2.7927e-06,2.5914e-06,2.5702e-06,1.7522e-06,1.6098e-06,1.5329e-06,1.3177e-06,1.1334e-06,8.5715e-07,8.2027e-07,6.6282e-07,4.0923e-07,4.0658e-07,3.9071e-07,3.6013e-07,3.3777e-07,3.1206e-07,2.8416e-07,1.1743e-07,9.2789e-08,6.4481e-08,4.9082e-08,4.8423e-08,4.694e-08,3.1133e-08,2.8271e-08,2.8045e-08,1.8849e-08,9.5471e-09,9.3411e-09,7.6278e-09,7.3139e-09,4.5729e-09,4.006e-09,2.9967e-09,2.5738e-09,2.1741e-09,2.1036e-09,1.7201e-09,1.66e-09,1.6322e-09,1.0295e-09,8.9616e-10,8.4526e-10,6.9867e-10,6.5786e-10,4.9882e-10,4.6821e-10,4.1207e-10,2.9933e-10,2.9843e-10,2.5574e-10,2.4273e-10,2.4271e-10,1.7237e-10,1.7051e-10,1.4797e-10,1.2735e-10,9.1671e-11,6.8044e-11,5.4879e-11,3.8911e-11,2.8252e-11,1.8597e-11,1.8283e-11,1.3224e-11,9.6673e-12,8.0305e-12,4.8722e-12,4.2044e-12,3.1133e-12,2.6044e-12,1.7912e-12,1.7214e-12,1.586e-12,1.3117e-12,8.7986e-13,5.8207e-13,4.6711e-13,3.7471e-13,3.339e-13,3.2852e-13,2.6635e-13,2.0884e-13,9.877e-14,8.08e-14,7.2321e-14,5.658e-14,5.6484e-14,4.4317e-14,4.2997e-14,3.6453e-14,3.1915e-14,2.036e-14,1.9074e-14,1.3396e-14,9.6263e-15,3.2354e-15,2.6311e-15,2.3806e-15,1.8302e-15,1.4288e-15,1.3003e-15,1.0767e-15,9.3991e-16,7.9387e-16,6.0011e-16,5.9921e-16,3.6132e-16,3.1571e-16,3.0694e-16,3.0236e-16,1.8006e-16,1.7794e-16,1.6885e-16,1.6231e-16,1.465e-16,1.2358e-16,1.0607e-16,5.3641e-17,1.2324e-17,7.9158e-18,7.6111e-18,7.3682e-18,6.6331e-18,6.2561e-18,3.5812e-18,2.4744e-18,1.8888e-18,1.6232e-18,1.1817e-18,9.0141e-19,8.5706e-19,5.8491e-19,4.7079e-19,3.6093e-19,2.3508e-19,1.3321e-19,1.2845e-19,1.0589e-19,9.2584e-20,8.7159e-20,4.5645e-20,3.821e-20,1.6941e-20,1.3504e-20,9.0455e-21,7.294e-21,6.802e-21,4.6456e-21,4.4217e-21,3.9684e-21,3.1322e-21,1.9912e-21 1,7.3061e-05,9.05e-05,9.147e-05,9.7524e-05,0.00010244,0.00010926,0.00012373,0.00016579,0.00019919,0.00020485,0.00023669,0.00024231,0.00026591,0.00033269,0.00035669,0.00037432,0.00046057,0.00047713,0.00049616,0.00056539,0.00057334,0.00057797,0.00063792,0.000676,0.00067727,0.0007565,0.00076413,0.00080304,0.0008083,0.00081344,0.0011345,0.0015475,0.001591,0.0017406,0.0018851,0.0020047,0.0021558,0.0023445,0.0027138,0.0029392,0.0033424,0.0039213,0.003979,0.0041045,0.0042236,0.004896,0.0048971,0.0069111,0.0070868,0.0071861,0.007947,0.0080057,0.009724,0.010485,0.010817,0.011579,0.012087,0.013006,0.013303,0.015797,0.017534,0.024127,0.026275,0.02703,0.028427,0.032589,0.033504,0.034334,0.038471,0.042727,0.044401,0.045811,0.051243,0.06002,0.070573,0.078496,0.080246,0.097281,0.10379,0.10695,0.10837,0.11429,0.14129,0.14224,0.14743,0.15596,0.15767,0.17057,0.20996,0.21052,0.2227,0.22719,0.28254,0.29766,0.29879,0.31272,0.33217,0.33256,0.33416,0.34624,0.34635,0.35751,0.36187,0.42703,0.45708,0.45811,0.49312,0.50263,0.51745,0.52469,0.52898,0.53372,0.53527,0.53941,0.55614,0.55809,0.56212,0.56542,0.59039,0.61868,0.65495,0.66853,0.697,0.72824,0.74117,0.74778,0.81756,0.82517,0.83069,0.84145,0.85476,0.86594,0.87476,0.8763,0.87727,0.88795,0.91408,0.91589,0.92526,0.93881,0.94576,0.94685,0.97855,0.97882,0.98344,0.99085,0.99197,0.9955,0.99619,0.99941,1,0.99694,0.99679,0.98571,0.98395,0.98337,0.97135,0.97048,0.96531,0.95792,0.95547,0.95358,0.94577,0.94442,0.94353,0.93683,0.9344,0.93376,0.92783,0.92564,0.91301,0.89026,0.88598,0.88483,0.87375,0.86906,0.84931,0.81237,0.80039,0.78099,0.77373,0.75326,0.73248,0.73077,0.72944,0.72929,0.72308,0.72255,0.70291,0.69382,0.67662,0.67585,0.67118,0.64109,0.64021,0.62582,0.60944,0.58021,0.57638,0.56544,0.563,0.55683,0.54652,0.5308,0.53037,0.49515,0.45599,0.4519,0.44738,0.44598,0.42323,0.40948,0.36451,0.36223,0.35765,0.35,0.32237,0.29496,0.26666,0.2585,0.25371,0.24181,0.21892,0.20935,0.19737,0.17992,0.16578,0.16332,0.13867,0.13565,0.13456,0.12935,0.12732,0.112,0.10588,0.10417,0.10399,0.10047,0.095862,0.093786,0.092874,0.078009,0.077992,0.066319,0.054783,0.045671,0.038448,0.035642,0.034937,0.033334,0.031986,0.028995,0.028681,0.023647,0.022505,0.020363,0.017955,0.016621,0.016476,0.015465,0.014818,0.013331,0.011366,0.011196,0.010428,0.0093137,0.0084888,0.0084519,0.0060979,0.0057757,0.0056266,0.0052602,0.0050786,0.0048041,0.004395,0.0042392,0.0040304,0.0037142,0.003339,0.003014,0.0029827,0.002629,0.0024179,0.002245,0.0018936,0.0017508,0.0017014,0.0015365,0.001527,0.0014599,0.0014312,0.0010973,0.0010242,0.00099709,0.00088156,0.00082039,0.00081146,0.00068509,0.00049252,0.0004459,0.00042353,0.00037546,0.00037157,0.00032415,0.00031932,0.00026734,0.00024063,0.00019445,0.00019071,0.00018727,0.00018537,0.00017929,0.00017448,0.0001716,0.00014389,0.00013866,9.7254e-05,8.6243e-05,7.961e-05,7.712e-05,5.9138e-05,5.8862e-05,5.3889e-05,5.1704e-05,4.1946e-05,4.1668e-05,4.1018e-05,3.5056e-05,3.3559e-05,3.3042e-05,3.1514e-05,2.9641e-05,2.7968e-05,2.7135e-05,2.0114e-05,1.9901e-05,1.6987e-05,1.3366e-05,1.0644e-05,7.7276e-06,7.6923e-06,6.859e-06,5.9328e-06,4.8925e-06,4.882e-06,4.5653e-06,3.3228e-06,3.0849e-06,3.0597e-06,2.0914e-06,1.9225e-06,1.8313e-06,1.5758e-06,1.3567e-06,1.0279e-06,9.8395e-07,7.9619e-07,4.931e-07,4.8992e-07,4.7092e-07,4.3428e-07,4.0749e-07,3.7666e-07,3.4319e-07,1.426e-07,1.1284e-07,7.8586e-08,5.9916e-08,5.9117e-08,5.7317e-08,3.8107e-08,3.4624e-08,3.4349e-08,2.3138e-08,1.1766e-08,1.1513e-08,9.4124e-09,9.0272e-09,5.659e-09,4.9611e-09,3.7171e-09,3.1951e-09,2.7015e-09,2.6144e-09,2.1401e-09,2.0657e-09,2.0312e-09,1.2844e-09,1.1189e-09,1.0557e-09,8.7347e-10,8.2271e-10,6.2474e-10,5.8659e-10,5.1661e-10,3.7589e-10,3.7476e-10,3.2142e-10,3.0515e-10,3.0513e-10,2.1708e-10,2.1474e-10,1.865e-10,1.6063e-10,1.1582e-10,8.6099e-11,6.9516e-11,4.9374e-11,3.5905e-11,2.3684e-11,2.3285e-11,1.6869e-11,1.2351e-11,1.0269e-11,6.2452e-12,5.3931e-12,3.9992e-12,3.3483e-12,2.3068e-12,2.2174e-12,2.0438e-12,1.6918e-12,1.1369e-12,7.5357e-13,6.0534e-13,4.8609e-13,4.3338e-13,4.2643e-13,3.4606e-13,2.7163e-13,1.289e-13,1.0554e-13,9.4514e-14,7.4023e-14,7.3898e-14,5.8042e-14,5.6321e-14,4.7783e-14,4.186e-14,2.6757e-14,2.5073e-14,1.7637e-14,1.2691e-14,4.2854e-15,3.488e-15,3.1573e-15,2.43e-15,1.8991e-15,1.7289e-15,1.4327e-15,1.2514e-15,1.0577e-15,8.0048e-16,7.9928e-16,4.8296e-16,4.2224e-16,4.1055e-16,4.0445e-16,2.4136e-16,2.3854e-16,2.264e-16,2.1766e-16,1.9654e-16,1.6591e-16,1.4248e-16,7.2254e-17,1.6697e-17,1.0743e-17,1.0331e-17,1.0003e-17,9.0085e-18,8.4983e-18,4.8753e-18,3.3733e-18,2.5776e-18,2.2164e-18,1.6155e-18,1.2336e-18,1.1731e-18,8.0177e-19,6.4587e-19,4.9565e-19,3.2334e-19,1.8361e-19,1.7707e-19,1.4608e-19,1.2778e-19,1.2032e-19,6.3163e-20,5.2908e-20,2.3528e-20,1.877e-20,1.259e-20,1.016e-20,9.4775e-21,6.4816e-21,6.1703e-21,5.54e-21,4.3762e-21,2.7865e-21 1,5.1746e-05,6.4345e-05,6.5048e-05,6.9434e-05,7.3e-05,7.795e-05,8.8479e-05,0.0001192,0.00014371,0.00014788,0.00017133,0.00017548,0.00019292,0.00024241,0.00026026,0.00027338,0.00033776,0.00035016,0.0003644,0.00041635,0.00042232,0.0004258,0.00047091,0.00049961,0.00050057,0.0005604,0.00056617,0.00059562,0.0005996,0.00060349,0.00084762,0.0011639,0.0011973,0.0013125,0.0014239,0.0015164,0.0016333,0.0017796,0.0020668,0.0022425,0.0025578,0.0030119,0.0030573,0.0031561,0.0032498,0.0037805,0.0037814,0.0053816,0.0055218,0.0056011,0.0062098,0.0062569,0.0076376,0.0082513,0.0085195,0.0091355,0.0095475,0.010293,0.010535,0.012568,0.013989,0.019423,0.021205,0.021832,0.022994,0.026468,0.027234,0.027929,0.031403,0.03499,0.036404,0.037597,0.042206,0.049691,0.058745,0.06558,0.067093,0.081895,0.087585,0.090346,0.091593,0.096785,0.12064,0.12148,0.12609,0.13369,0.13522,0.14675,0.18227,0.18277,0.19383,0.19792,0.24869,0.26268,0.26373,0.27667,0.29479,0.29516,0.29666,0.30797,0.30807,0.31854,0.32264,0.38437,0.41314,0.41413,0.44789,0.45711,0.4715,0.47856,0.48274,0.48737,0.48889,0.49293,0.50933,0.51125,0.51521,0.51845,0.54311,0.57121,0.60754,0.62124,0.65012,0.6821,0.69543,0.70227,0.77553,0.78365,0.78956,0.80114,0.81556,0.82775,0.83745,0.83915,0.84021,0.85206,0.88152,0.88359,0.89438,0.91023,0.91851,0.91982,0.95977,0.96013,0.96649,0.97739,0.97915,0.9851,0.98637,0.99366,0.99694,1,1,0.99584,0.99486,0.99452,0.98684,0.98624,0.9826,0.97717,0.97533,0.9739,0.96786,0.9668,0.9661,0.96077,0.95881,0.9583,0.95346,0.95167,0.94115,0.92169,0.91797,0.91697,0.90726,0.90311,0.88548,0.85183,0.84076,0.82269,0.81588,0.79657,0.7768,0.77516,0.77389,0.77375,0.7678,0.76729,0.7484,0.73961,0.72291,0.72216,0.71761,0.68812,0.68725,0.67306,0.65683,0.6277,0.62386,0.61289,0.61044,0.60423,0.59384,0.57794,0.57751,0.54167,0.50148,0.49726,0.4926,0.49115,0.46758,0.45327,0.40617,0.40377,0.39894,0.39087,0.36159,0.33235,0.30195,0.29315,0.28797,0.27508,0.25018,0.23972,0.22659,0.20738,0.19173,0.18901,0.16154,0.15815,0.15693,0.15109,0.14881,0.13154,0.12462,0.12267,0.12248,0.11847,0.11324,0.11087,0.10983,0.092822,0.092803,0.079351,0.065963,0.055312,0.046815,0.043499,0.042664,0.040764,0.039164,0.035606,0.035231,0.029211,0.02784,0.025261,0.022352,0.020735,0.020559,0.019331,0.018544,0.01673,0.014325,0.014115,0.013172,0.011799,0.010779,0.010733,0.0078072,0.0074045,0.007218,0.0067589,0.0065311,0.0061864,0.0056716,0.0054752,0.0052118,0.0048121,0.0043367,0.0039239,0.0038841,0.0034334,0.0031637,0.0029423,0.0024913,0.0023074,0.0022437,0.0020307,0.0020185,0.0019316,0.0018944,0.0014608,0.0013655,0.0013301,0.001179,0.0010988,0.0010871,0.00092104,0.0006666,0.0006047,0.00057495,0.00051091,0.00050572,0.00044237,0.00043591,0.0003662,0.00033029,0.00026799,0.00026294,0.00025828,0.00025571,0.00024748,0.00024095,0.00023705,0.00019943,0.00019231,0.00013577,0.00012066,0.00011154,0.00010812,8.33e-05,8.2919e-05,7.6032e-05,7.3002e-05,5.9443e-05,5.9056e-05,5.815e-05,4.9833e-05,4.7741e-05,4.7018e-05,4.4881e-05,4.2258e-05,3.9912e-05,3.8743e-05,2.8865e-05,2.8565e-05,2.4447e-05,1.9313e-05,1.5437e-05,1.1266e-05,1.1215e-05,1.0019e-05,8.6862e-06,7.1852e-06,7.17e-06,6.7119e-06,4.9096e-06,4.5633e-06,4.5267e-06,3.1123e-06,2.8647e-06,2.7308e-06,2.3552e-06,2.0324e-06,1.5462e-06,1.481e-06,1.2022e-06,7.4979e-07,7.4504e-07,7.1655e-07,6.6158e-07,6.2133e-07,5.7498e-07,5.2458e-07,2.207e-07,1.7521e-07,1.2263e-07,9.3843e-08,9.2609e-08,8.9826e-08,6.0052e-08,5.4632e-08,5.4204e-08,3.6706e-08,1.883e-08,1.8432e-08,1.5107e-08,1.4497e-08,9.1424e-09,8.0283e-09,6.0372e-09,5.1993e-09,4.4052e-09,4.265e-09,3.4999e-09,3.3797e-09,3.324e-09,2.1138e-09,1.8445e-09,1.7415e-09,1.4442e-09,1.3613e-09,1.0372e-09,9.7457e-10,8.5962e-10,6.2785e-10,6.2598e-10,5.3786e-10,5.1095e-10,5.1091e-10,3.6494e-10,3.6106e-10,3.1409e-10,2.71e-10,1.9614e-10,1.4631e-10,1.1842e-10,8.4437e-11,6.1626e-11,4.0841e-11,4.0161e-11,2.92e-11,2.1453e-11,1.7873e-11,1.0929e-11,9.4528e-12,7.0325e-12,5.8992e-12,4.0806e-12,3.9241e-12,3.6199e-12,3.0026e-12,2.0263e-12,1.3489e-12,1.086e-12,8.7409e-13,7.8024e-13,7.6785e-13,6.2449e-13,4.9141e-13,2.3498e-13,1.9279e-13,1.7284e-13,1.357e-13,1.3547e-13,1.0666e-13,1.0353e-13,8.7981e-14,7.7177e-14,4.9551e-14,4.6463e-14,3.2796e-14,2.3677e-14,8.0795e-15,6.5892e-15,5.97e-15,4.6063e-15,3.6084e-15,3.2879e-15,2.7295e-15,2.3872e-15,2.0209e-15,1.5335e-15,1.5312e-15,9.2958e-16,8.1372e-16,7.914e-16,7.7976e-16,4.6757e-16,4.6214e-16,4.3883e-16,4.2204e-16,3.8145e-16,3.225e-16,2.7735e-16,1.4152e-16,3.3138e-17,2.1405e-17,2.0592e-17,1.9943e-17,1.7977e-17,1.6968e-17,9.7818e-18,6.7901e-18,5.2006e-18,4.4777e-18,3.2728e-18,2.5049e-18,2.3831e-18,1.6341e-18,1.3188e-18,1.0143e-18,6.6412e-19,3.7893e-19,3.6554e-19,3.0206e-19,2.6452e-19,2.4921e-19,1.3153e-19,1.1033e-19,4.9395e-20,3.9479e-20,2.6569e-20,2.1479e-20,2.0046e-20,1.3752e-20,1.3097e-20,1.1769e-20,9.3147e-21,5.9526e-21 1,5.1317e-05,6.3818e-05,6.4514e-05,6.8867e-05,7.2405e-05,7.7317e-05,8.7766e-05,0.00011825,0.00014258,0.00014672,0.00017,0.00017411,0.00019143,0.00024056,0.00025828,0.00027131,0.00033523,0.00034755,0.00036169,0.00041328,0.00041921,0.00042266,0.00046747,0.00049597,0.00049693,0.00055635,0.00056208,0.00059133,0.00059528,0.00059915,0.00084166,0.0011559,0.0011891,0.0013036,0.0014143,0.0015062,0.0016224,0.0017678,0.0020532,0.0022279,0.0025412,0.0029927,0.0030379,0.003136,0.0032293,0.0037569,0.0037578,0.0053491,0.0054886,0.0055674,0.0061728,0.0062197,0.007593,0.0082035,0.0084703,0.0090832,0.0094931,0.010235,0.010475,0.012498,0.013913,0.019321,0.021095,0.021719,0.022876,0.026334,0.027097,0.027789,0.031248,0.034821,0.036229,0.037417,0.042007,0.049463,0.058484,0.065294,0.066801,0.081552,0.087224,0.089975,0.091218,0.096394,0.12018,0.12101,0.12561,0.13318,0.13471,0.14621,0.18164,0.18214,0.19318,0.19725,0.24792,0.26188,0.26292,0.27584,0.29393,0.29429,0.29579,0.30708,0.30718,0.31763,0.32173,0.38337,0.41211,0.4131,0.44682,0.45603,0.47042,0.47747,0.48165,0.48628,0.48779,0.49184,0.50822,0.51014,0.51409,0.51734,0.54198,0.57008,0.60641,0.6201,0.64899,0.68098,0.69432,0.70116,0.77449,0.78262,0.78855,0.80014,0.81458,0.8268,0.83651,0.83822,0.83928,0.85116,0.88069,0.88276,0.89359,0.90949,0.9178,0.91912,0.95926,0.95962,0.96601,0.97699,0.97877,0.98478,0.98606,0.99345,0.99679,1,1,0.99601,0.99505,0.99472,0.98714,0.98654,0.98294,0.97756,0.97574,0.97432,0.96832,0.96727,0.96658,0.96128,0.95933,0.95882,0.95401,0.95223,0.94176,0.92239,0.91868,0.91768,0.908,0.90387,0.8863,0.85273,0.84169,0.82365,0.81685,0.79757,0.77783,0.7762,0.77493,0.77478,0.76885,0.76834,0.74946,0.74068,0.724,0.72325,0.7187,0.68923,0.68837,0.67418,0.65796,0.62883,0.62499,0.61403,0.61157,0.60537,0.59498,0.57908,0.57865,0.5428,0.50259,0.49836,0.4937,0.49225,0.46866,0.45434,0.4072,0.40479,0.39996,0.39187,0.36255,0.33327,0.30283,0.29401,0.28882,0.27591,0.25096,0.24048,0.22732,0.20807,0.19239,0.18965,0.16212,0.15872,0.1575,0.15164,0.14936,0.13204,0.1251,0.12315,0.12295,0.11893,0.11368,0.11131,0.11026,0.093202,0.093183,0.079686,0.066252,0.055562,0.047033,0.043704,0.042865,0.040958,0.039351,0.035778,0.035402,0.029357,0.02798,0.02539,0.022467,0.020843,0.020667,0.019433,0.018642,0.01682,0.014403,0.014193,0.013245,0.011865,0.01084,0.010794,0.0078529,0.0074481,0.0072606,0.0067991,0.0065701,0.0062235,0.0057059,0.0055084,0.0052435,0.0048417,0.0043636,0.0039484,0.0039084,0.0034552,0.0031839,0.0029612,0.0025075,0.0023225,0.0022584,0.0020442,0.0020318,0.0019445,0.001907,0.0014707,0.0013748,0.0013392,0.0011871,0.0011065,0.0010947,0.00092751,0.0006714,0.00060908,0.00057913,0.00051465,0.00050943,0.00044564,0.00043913,0.00036894,0.00033277,0.00027003,0.00026494,0.00026025,0.00025766,0.00024938,0.0002428,0.00023887,0.00020098,0.00019381,0.00013685,0.00012163,0.00011244,0.00010898,8.398e-05,8.3595e-05,7.6655e-05,7.3602e-05,5.9937e-05,5.9546e-05,5.8634e-05,5.0251e-05,4.8142e-05,4.7413e-05,4.5259e-05,4.2615e-05,4.0251e-05,3.9072e-05,2.9113e-05,2.8811e-05,2.4659e-05,1.9482e-05,1.5574e-05,1.1367e-05,1.1316e-05,1.0109e-05,8.7651e-06,7.251e-06,7.2357e-06,6.7736e-06,4.9553e-06,4.6059e-06,4.569e-06,3.1419e-06,2.892e-06,2.7568e-06,2.3777e-06,2.052e-06,1.5613e-06,1.4955e-06,1.214e-06,7.5729e-07,7.5249e-07,7.2373e-07,6.6823e-07,6.2759e-07,5.8078e-07,5.299e-07,2.23e-07,1.7705e-07,1.2393e-07,9.4849e-08,9.3602e-08,9.0791e-08,6.0704e-08,5.5227e-08,5.4795e-08,3.711e-08,1.9042e-08,1.8639e-08,1.5278e-08,1.4661e-08,9.2473e-09,8.1207e-09,6.1072e-09,5.2598e-09,4.4567e-09,4.3149e-09,3.541e-09,3.4195e-09,3.3632e-09,2.1389e-09,1.8665e-09,1.7623e-09,1.4616e-09,1.3777e-09,1.0497e-09,9.8641e-10,8.7009e-10,6.3555e-10,6.3367e-10,5.4449e-10,5.1725e-10,5.1721e-10,3.6948e-10,3.6555e-10,3.1801e-10,2.744e-10,1.9862e-10,1.4817e-10,1.1993e-10,8.5522e-11,6.2423e-11,4.1374e-11,4.0685e-11,2.9583e-11,2.1736e-11,1.811e-11,1.1075e-11,9.5799e-12,7.1276e-12,5.9793e-12,4.1363e-12,3.9777e-12,3.6695e-12,3.0439e-12,2.0544e-12,1.3677e-12,1.1013e-12,8.8639e-13,7.9124e-13,7.7867e-13,6.3332e-13,4.9839e-13,2.3836e-13,1.9557e-13,1.7534e-13,1.3767e-13,1.3744e-13,1.0822e-13,1.0504e-13,8.9269e-14,7.8309e-14,5.0284e-14,4.715e-14,3.3284e-14,2.4031e-14,8.2024e-15,6.6897e-15,6.0613e-15,4.677e-15,3.664e-15,3.3386e-15,2.7717e-15,2.4242e-15,2.0523e-15,1.5574e-15,1.5551e-15,9.4419e-16,8.2653e-16,8.0387e-16,7.9205e-16,4.7499e-16,4.6948e-16,4.458e-16,4.2875e-16,3.8752e-16,3.2765e-16,2.8179e-16,1.4381e-16,3.3683e-17,2.176e-17,2.0933e-17,2.0273e-17,1.8276e-17,1.725e-17,9.9454e-18,6.9042e-18,5.2883e-18,4.5534e-18,3.3283e-18,2.5475e-18,2.4237e-18,1.662e-18,1.3414e-18,1.0318e-18,6.7561e-19,3.8553e-19,3.7191e-19,3.0733e-19,2.6915e-19,2.5357e-19,1.3384e-19,1.1228e-19,5.0276e-20,4.0185e-20,2.7046e-20,2.1865e-20,2.0407e-20,1.4001e-20,1.3334e-20,1.1982e-20,9.4839e-21,6.0613e-21 1,3.4344e-05,4.2899e-05,4.3377e-05,4.6365e-05,4.8797e-05,5.2177e-05,5.9384e-05,8.0511e-05,9.7461e-05,0.00010035,0.00011664,0.00011952,0.00013168,0.0001663,0.00017883,0.00018806,0.00023346,0.00024223,0.00025231,0.00028916,0.00029341,0.00029588,0.000328,0.00034847,0.00034916,0.00039193,0.00039606,0.00041716,0.00042001,0.00042281,0.0005987,0.00082853,0.00085293,0.00093714,0.0010188,0.0010866,0.0011726,0.0012805,0.0014929,0.0016233,0.0018578,0.0021973,0.0022313,0.0023053,0.0023757,0.002775,0.0027757,0.0039892,0.0040961,0.0041566,0.0046219,0.004658,0.0057187,0.0061923,0.0063996,0.0068766,0.0071962,0.0077758,0.0079639,0.0095522,0.010668,0.014968,0.016388,0.016888,0.017818,0.020607,0.021223,0.021784,0.024593,0.027506,0.028658,0.029631,0.033402,0.039562,0.047068,0.052768,0.054034,0.066484,0.0713,0.073642,0.074701,0.079119,0.099565,0.10029,0.10427,0.11084,0.11217,0.1222,0.15336,0.15381,0.16359,0.16722,0.21266,0.2253,0.22625,0.23799,0.25451,0.25485,0.25622,0.26657,0.26667,0.27628,0.28006,0.33736,0.36437,0.3653,0.39727,0.40605,0.41979,0.42655,0.43056,0.43501,0.43646,0.44035,0.45616,0.45801,0.46184,0.46498,0.48893,0.51643,0.55229,0.5659,0.5948,0.62711,0.64067,0.64766,0.72361,0.73217,0.73843,0.75073,0.76615,0.7793,0.78981,0.79166,0.79282,0.80578,0.8385,0.84082,0.85304,0.87124,0.88089,0.88242,0.93109,0.93155,0.93979,0.95449,0.95696,0.9656,0.96751,0.97938,0.98571,0.99584,0.99601,1,0.99995,0.99991,0.99745,0.99718,0.9954,0.99239,0.9913,0.99043,0.9866,0.9859,0.98544,0.98181,0.98045,0.98009,0.97665,0.97534,0.96752,0.95234,0.94936,0.94855,0.94063,0.93721,0.92242,0.89331,0.88353,0.86737,0.86123,0.84365,0.82545,0.82393,0.82275,0.82261,0.81709,0.81662,0.79895,0.79067,0.77486,0.77415,0.76982,0.74156,0.74073,0.72701,0.71123,0.68268,0.6789,0.66807,0.66564,0.65949,0.64916,0.6333,0.63287,0.59683,0.55596,0.55164,0.54687,0.54539,0.52113,0.50634,0.45724,0.45472,0.44965,0.44115,0.41018,0.37901,0.34634,0.33683,0.33122,0.31723,0.29005,0.27856,0.2641,0.24283,0.22541,0.22236,0.19151,0.18769,0.18631,0.17969,0.17711,0.15745,0.14953,0.1473,0.14707,0.14247,0.13645,0.13372,0.13252,0.1128,0.11278,0.097057,0.081279,0.06862,0.058442,0.054448,0.053441,0.051146,0.049209,0.04489,0.044434,0.037083,0.0354,0.032227,0.028632,0.026627,0.026408,0.024881,0.0239,0.021634,0.018615,0.018351,0.017162,0.015424,0.01413,0.014072,0.010334,0.0098157,0.0095756,0.0089836,0.0086895,0.0082437,0.0075764,0.0073214,0.0069788,0.0064581,0.005837,0.0052959,0.0052437,0.0046508,0.0042949,0.0040022,0.0034037,0.0031588,0.0030739,0.0027893,0.0027729,0.0026567,0.0026068,0.0020234,0.0018947,0.0018468,0.0016419,0.001533,0.0015171,0.0012905,0.00094134,0.00085591,0.00081478,0.00072604,0.00071884,0.00063075,0.00062175,0.00052444,0.00047412,0.00038652,0.00037939,0.00037282,0.0003692,0.00035758,0.00034835,0.00034284,0.00028954,0.00027943,0.00019878,0.00017711,0.000164,0.00015907,0.00012324,0.00012269,0.0001127,0.0001083,8.8565e-05,8.8001e-05,8.6679e-05,7.4518e-05,7.1452e-05,7.0392e-05,6.7257e-05,6.3403e-05,5.9954e-05,5.8232e-05,4.3643e-05,4.3198e-05,3.7085e-05,2.9433e-05,2.3629e-05,1.735e-05,1.7273e-05,1.5464e-05,1.3443e-05,1.116e-05,1.1137e-05,1.0438e-05,7.6798e-06,7.1478e-06,7.0915e-06,4.9093e-06,4.5255e-06,4.3176e-06,3.7337e-06,3.2304e-06,2.4696e-06,2.3674e-06,1.9287e-06,1.2128e-06,1.2052e-06,1.1599e-06,1.0724e-06,1.0082e-06,9.3426e-07,8.537e-07,3.6441e-07,2.9039e-07,2.0443e-07,1.5712e-07,1.5509e-07,1.505e-07,1.0126e-07,9.2261e-08,9.155e-08,6.2375e-08,3.2331e-08,3.1657e-08,2.6026e-08,2.4991e-08,1.587e-08,1.3963e-08,1.0545e-08,9.1015e-09,7.7304e-09,7.4878e-09,6.1624e-09,5.9538e-09,5.8572e-09,3.7492e-09,3.278e-09,3.0976e-09,2.5758e-09,2.4299e-09,1.8585e-09,1.7479e-09,1.5444e-09,1.133e-09,1.1297e-09,9.7275e-10,9.2474e-10,9.2468e-10,6.6358e-10,6.5663e-10,5.7231e-10,4.9481e-10,3.5972e-10,2.694e-10,2.1867e-10,1.5663e-10,1.148e-10,7.6495e-11,7.5238e-11,5.4933e-11,4.0521e-11,3.384e-11,2.0824e-11,1.8045e-11,1.3476e-11,1.1329e-11,7.8734e-12,7.5751e-12,6.9951e-12,5.8159e-12,3.9441e-12,2.6388e-12,2.1303e-12,1.7192e-12,1.5367e-12,1.5126e-12,1.2333e-12,9.733e-13,4.6956e-13,3.8617e-13,3.4665e-13,2.7295e-13,2.725e-13,2.1516e-13,2.0891e-13,1.7788e-13,1.5628e-13,1.0086e-13,9.4644e-14,6.7076e-14,4.8607e-14,1.6792e-14,1.3726e-14,1.245e-14,9.6345e-15,7.5679e-15,6.9029e-15,5.7425e-15,5.0299e-15,4.266e-15,3.2469e-15,3.2421e-15,1.9792e-15,1.735e-15,1.6879e-15,1.6634e-15,1.003e-15,9.9148e-16,9.4199e-16,9.0633e-16,8.2006e-16,6.946e-16,5.9833e-16,3.0752e-16,7.3121e-17,4.7449e-17,4.5664e-17,4.4239e-17,3.9922e-17,3.7704e-17,2.186e-17,1.5231e-17,1.1698e-17,1.0087e-17,7.3964e-18,5.6764e-18,5.4031e-18,3.719e-18,3.008e-18,2.3197e-18,1.5252e-18,8.7512e-19,8.4451e-19,6.9916e-19,6.1309e-19,5.7792e-19,3.0694e-19,2.5793e-19,1.1638e-19,9.3216e-20,6.2973e-20,5.1012e-20,4.7642e-20,3.2801e-20,3.1253e-20,2.8113e-20,2.23e-20,1.4312e-20 1,3.279e-05,4.0978e-05,4.1436e-05,4.4297e-05,4.6626e-05,4.9863e-05,5.6767e-05,7.7018e-05,9.3275e-05,9.6046e-05,0.00011168,0.00011445,0.00012611,0.00015936,0.0001714,0.00018026,0.0002239,0.00023234,0.00024204,0.00027748,0.00028157,0.00028394,0.00031485,0.00033455,0.00033521,0.00037639,0.00038036,0.00040068,0.00040343,0.00040612,0.00057559,0.00079725,0.00082079,0.00090206,0.00098085,0.0010464,0.0011294,0.0012336,0.0014389,0.0015649,0.0017917,0.0021201,0.002153,0.0022247,0.0022928,0.0026794,0.00268,0.003856,0.0039597,0.0040183,0.0044696,0.0045046,0.005534,0.0059938,0.0061951,0.0066584,0.0069689,0.007532,0.0077148,0.009259,0.010344,0.014531,0.015914,0.016402,0.017309,0.020028,0.02063,0.021177,0.023918,0.026763,0.027887,0.028838,0.032523,0.038547,0.045893,0.051476,0.052716,0.064919,0.069644,0.071942,0.072981,0.077317,0.097402,0.098112,0.10203,0.10849,0.1098,0.11966,0.15035,0.15079,0.16044,0.16401,0.20886,0.22136,0.22229,0.2339,0.25024,0.25057,0.25193,0.26217,0.26227,0.27178,0.27552,0.3323,0.35911,0.36003,0.39178,0.4005,0.41417,0.42088,0.42487,0.4293,0.43074,0.43461,0.45034,0.45219,0.45599,0.45912,0.48297,0.51038,0.54616,0.55975,0.58862,0.62092,0.6345,0.64149,0.71766,0.72626,0.73255,0.74492,0.76043,0.77366,0.78425,0.78612,0.78729,0.80035,0.83339,0.83574,0.84811,0.86654,0.87633,0.87789,0.92746,0.92793,0.93636,0.95147,0.95402,0.96295,0.96492,0.97729,0.98395,0.99486,0.99505,0.99995,1,0.99999,0.99813,0.99789,0.99632,0.99359,0.99259,0.99178,0.9882,0.98755,0.98711,0.98368,0.98239,0.98205,0.97877,0.97752,0.97001,0.95533,0.95243,0.95165,0.94394,0.94061,0.92616,0.89761,0.88798,0.87206,0.866,0.84864,0.83064,0.82914,0.82797,0.82783,0.82236,0.8219,0.80439,0.79618,0.78049,0.77978,0.77548,0.7474,0.74657,0.73291,0.7172,0.68876,0.68499,0.67418,0.67176,0.66562,0.65531,0.63947,0.63904,0.60301,0.56211,0.55779,0.55301,0.55152,0.52721,0.51238,0.46309,0.46056,0.45546,0.44692,0.41579,0.38442,0.35151,0.34192,0.33627,0.32216,0.29473,0.28313,0.26852,0.24702,0.2294,0.22632,0.19509,0.19122,0.18981,0.18311,0.1805,0.16056,0.15253,0.15026,0.15003,0.14536,0.13925,0.13648,0.13526,0.11523,0.1152,0.099215,0.083154,0.070256,0.059877,0.055803,0.054774,0.052431,0.050454,0.046043,0.045578,0.038065,0.036344,0.033099,0.02942,0.027367,0.027143,0.025579,0.024575,0.022253,0.019157,0.018887,0.017667,0.015885,0.014557,0.014497,0.010657,0.010125,0.0098776,0.009269,0.0089665,0.008508,0.0078215,0.007559,0.0072065,0.0066705,0.0060309,0.0054735,0.0054197,0.0048087,0.0044418,0.00414,0.0035226,0.0032699,0.0031823,0.0028885,0.0028716,0.0027515,0.0027,0.0020974,0.0019643,0.0019148,0.001703,0.0015903,0.0015738,0.0013394,0.00097784,0.00088933,0.0008467,0.00075472,0.00074725,0.00065592,0.00064658,0.00054563,0.0004934,0.00040245,0.00039505,0.00038823,0.00038446,0.00037239,0.00036281,0.00035708,0.0003017,0.00029119,0.00020732,0.00018477,0.00017113,0.000166,0.00012868,0.00012811,0.00011771,0.00011312,9.2552e-05,9.1963e-05,9.0585e-05,7.7904e-05,7.4706e-05,7.36e-05,7.033e-05,6.6309e-05,6.2709e-05,6.0913e-05,4.5682e-05,4.5218e-05,3.8832e-05,3.0836e-05,2.4767e-05,1.8198e-05,1.8118e-05,1.6224e-05,1.4108e-05,1.1717e-05,1.1692e-05,1.0961e-05,8.0693e-06,7.5114e-06,7.4524e-06,5.163e-06,4.7602e-06,4.542e-06,3.9289e-06,3.4003e-06,2.6009e-06,2.4934e-06,2.0322e-06,1.2791e-06,1.2711e-06,1.2234e-06,1.1313e-06,1.0637e-06,9.8581e-07,9.0097e-07,3.8521e-07,3.071e-07,2.1634e-07,1.6635e-07,1.642e-07,1.5935e-07,1.0729e-07,9.7773e-08,9.702e-08,6.6148e-08,3.4326e-08,3.3612e-08,2.7643e-08,2.6544e-08,1.687e-08,1.4846e-08,1.1217e-08,9.6841e-09,8.2274e-09,7.9696e-09,6.5611e-09,6.3394e-09,6.2367e-09,3.995e-09,3.4937e-09,3.3017e-09,2.7463e-09,2.591e-09,1.9826e-09,1.8648e-09,1.6481e-09,1.2097e-09,1.2061e-09,1.0388e-09,9.876e-10,9.8753e-10,7.0906e-10,7.0164e-10,6.1167e-10,5.2896e-10,3.8473e-10,2.8826e-10,2.3406e-10,1.6773e-10,1.2299e-10,8.2008e-11,8.0662e-11,5.892e-11,4.3483e-11,3.6322e-11,2.2368e-11,1.9387e-11,1.4484e-11,1.218e-11,8.4688e-12,8.1485e-12,7.5254e-12,6.2585e-12,4.2466e-12,2.8428e-12,2.2957e-12,1.8531e-12,1.6567e-12,1.6308e-12,1.33e-12,1.05e-12,5.0706e-13,4.1712e-13,3.7449e-13,2.9496e-13,2.9448e-13,2.3259e-13,2.2584e-13,1.9233e-13,1.69e-13,1.0914e-13,1.0242e-13,7.262e-14,5.2647e-14,1.8213e-14,1.4891e-14,1.3509e-14,1.0457e-14,8.2165e-15,7.4954e-15,6.2368e-15,5.4637e-15,4.6349e-15,3.5289e-15,3.5238e-15,2.1524e-15,1.8872e-15,1.836e-15,1.8094e-15,1.0917e-15,1.0792e-15,1.0254e-15,9.8661e-16,8.9281e-16,7.5637e-16,6.5166e-16,3.352e-16,7.9839e-17,5.1835e-17,4.9888e-17,4.8333e-17,4.3622e-17,4.12e-17,2.3902e-17,1.6662e-17,1.28e-17,1.104e-17,8.0976e-18,6.2164e-18,5.9175e-18,4.0748e-18,3.2965e-18,2.543e-18,1.6728e-18,9.604e-19,9.2685e-19,7.6749e-19,6.731e-19,6.3454e-19,3.3724e-19,2.8345e-19,1.28e-19,1.0255e-19,6.9311e-20,5.6159e-20,5.2453e-20,3.6128e-20,3.4424e-20,3.097e-20,2.4572e-20,1.5777e-20 1,3.2308e-05,4.0383e-05,4.0834e-05,4.3655e-05,4.5953e-05,4.9146e-05,5.5956e-05,7.5935e-05,9.1976e-05,9.471e-05,0.00011013,0.00011287,0.00012438,0.00015721,0.00016909,0.00017784,0.00022094,0.00022926,0.00023884,0.00027385,0.00027789,0.00028023,0.00031076,0.00033022,0.00033087,0.00037155,0.00037548,0.00039555,0.00039827,0.00040093,0.0005684,0.0007875,0.00081078,0.00089113,0.00096904,0.0010338,0.001116,0.001219,0.001422,0.0015467,0.0017711,0.002096,0.0021286,0.0021995,0.0022669,0.0026495,0.0026502,0.0038143,0.003917,0.0039751,0.004422,0.0044566,0.0054762,0.0059316,0.0061311,0.0065901,0.0068977,0.0074557,0.0076369,0.0091672,0.010243,0.014394,0.015766,0.01625,0.017149,0.019847,0.020443,0.020986,0.023706,0.026529,0.027645,0.028589,0.032247,0.038228,0.045523,0.051069,0.052301,0.064427,0.069122,0.071406,0.072439,0.07675,0.096719,0.097425,0.10132,0.10775,0.10905,0.11886,0.1494,0.14984,0.15944,0.163,0.20766,0.22011,0.22104,0.2326,0.24889,0.24922,0.25057,0.26078,0.26087,0.27036,0.27408,0.3307,0.35744,0.35836,0.39004,0.39874,0.41238,0.41908,0.42306,0.42748,0.42892,0.43279,0.44849,0.45033,0.45414,0.45726,0.48108,0.50845,0.5442,0.55779,0.58665,0.61895,0.63253,0.63953,0.71575,0.72437,0.73067,0.74305,0.7586,0.77185,0.78247,0.78434,0.78551,0.79861,0.83175,0.83411,0.84652,0.86503,0.87486,0.87643,0.92628,0.92675,0.93525,0.95049,0.95306,0.96208,0.96408,0.9766,0.98337,0.99452,0.99472,0.99991,0.99999,1,0.99832,0.9981,0.99659,0.99396,0.99298,0.99219,0.98869,0.98805,0.98762,0.98426,0.98299,0.98265,0.97942,0.97819,0.97079,0.95627,0.9534,0.95262,0.94498,0.94168,0.92734,0.89896,0.88939,0.87354,0.86751,0.85022,0.83228,0.83078,0.82962,0.82949,0.82404,0.82357,0.80611,0.79793,0.78227,0.78157,0.77728,0.74925,0.74842,0.73479,0.71911,0.69069,0.68692,0.67613,0.67371,0.66757,0.65727,0.64144,0.64101,0.60499,0.56408,0.55975,0.55497,0.55348,0.52915,0.51431,0.46496,0.46242,0.45732,0.44877,0.41758,0.38615,0.35317,0.34355,0.33789,0.32374,0.29623,0.2846,0.26994,0.24837,0.23069,0.22759,0.19624,0.19235,0.19094,0.18421,0.18159,0.16156,0.15349,0.15121,0.15098,0.1463,0.14015,0.13737,0.13614,0.11601,0.11599,0.099911,0.08376,0.070784,0.060341,0.05624,0.055205,0.052847,0.050857,0.046416,0.045948,0.038382,0.03665,0.033381,0.029675,0.027607,0.027382,0.025805,0.024793,0.022454,0.019333,0.019061,0.017832,0.016034,0.014695,0.014635,0.010762,0.010225,0.0099758,0.0093617,0.0090565,0.0085939,0.0079012,0.0076363,0.0072805,0.0067395,0.0060939,0.0055312,0.0054769,0.0048601,0.0044897,0.0041849,0.0035614,0.0033061,0.0032176,0.0029209,0.0029037,0.0027824,0.0027304,0.0021215,0.001987,0.0019369,0.0017229,0.001609,0.0015923,0.0013553,0.00098975,0.00090024,0.00085712,0.00076409,0.00075653,0.00066414,0.00065469,0.00055255,0.00049971,0.00040766,0.00040017,0.00039326,0.00038945,0.00037724,0.00036754,0.00036174,0.00030568,0.00029504,0.00021012,0.00018728,0.00017346,0.00016826,0.00013047,0.00012989,0.00011935,0.0001147,9.3859e-05,9.3262e-05,9.1865e-05,7.9014e-05,7.5773e-05,7.4653e-05,7.1338e-05,6.7262e-05,6.3613e-05,6.1793e-05,4.6351e-05,4.5881e-05,3.9406e-05,3.1297e-05,2.5141e-05,1.8477e-05,1.8395e-05,1.6474e-05,1.4327e-05,1.19e-05,1.1875e-05,1.1132e-05,8.1974e-06,7.6311e-06,7.5711e-06,5.2466e-06,4.8375e-06,4.6158e-06,3.9932e-06,3.4563e-06,2.6442e-06,2.535e-06,2.0664e-06,1.3009e-06,1.2928e-06,1.2444e-06,1.1507e-06,1.082e-06,1.0028e-06,9.1657e-07,3.9208e-07,3.1262e-07,2.2027e-07,1.694e-07,1.6721e-07,1.6228e-07,1.0929e-07,9.9597e-08,9.8831e-08,6.7397e-08,3.4987e-08,3.4259e-08,2.8178e-08,2.7059e-08,1.7202e-08,1.5139e-08,1.144e-08,9.8774e-09,8.3923e-09,8.1296e-09,6.6934e-09,6.4674e-09,6.3627e-09,4.0767e-09,3.5654e-09,3.3695e-09,2.803e-09,2.6446e-09,2.0239e-09,1.9037e-09,1.6825e-09,1.2351e-09,1.2315e-09,1.0607e-09,1.0085e-09,1.0084e-09,7.2419e-10,7.1662e-10,6.2477e-10,5.4033e-10,3.9307e-10,2.9455e-10,2.3918e-10,1.7144e-10,1.2573e-10,8.3847e-11,8.2471e-11,6.0251e-11,4.4471e-11,3.7151e-11,2.2884e-11,1.9835e-11,1.4821e-11,1.2464e-11,8.6679e-12,8.3402e-12,7.7028e-12,6.4064e-12,4.3478e-12,2.9111e-12,2.351e-12,1.898e-12,1.6969e-12,1.6703e-12,1.3624e-12,1.0757e-12,5.1963e-13,4.2749e-13,3.8382e-13,3.0234e-13,3.0185e-13,2.3843e-13,2.3152e-13,1.9718e-13,1.7328e-13,1.1192e-13,1.0503e-13,7.4482e-14,5.4004e-14,1.869e-14,1.5283e-14,1.3865e-14,1.0734e-14,8.4346e-15,7.6947e-15,6.4032e-15,5.6098e-15,4.7591e-15,3.6238e-15,3.6185e-15,2.2107e-15,1.9384e-15,1.8859e-15,1.8585e-15,1.1216e-15,1.1087e-15,1.0535e-15,1.0137e-15,9.1732e-16,7.7719e-16,6.6964e-16,3.4454e-16,8.2108e-17,5.3317e-17,5.1314e-17,4.9716e-17,4.4871e-17,4.2381e-17,2.4593e-17,1.7145e-17,1.3173e-17,1.1362e-17,8.3348e-18,6.3991e-18,6.0915e-18,4.1952e-18,3.3942e-18,2.6185e-18,1.7228e-18,9.893e-19,9.5475e-19,7.9064e-19,6.9344e-19,6.5372e-19,3.4752e-19,2.921e-19,1.3195e-19,1.0572e-19,7.1462e-20,5.7906e-20,5.4086e-20,3.7258e-20,3.5501e-20,3.194e-20,2.5343e-20,1.6275e-20 1,2.4775e-05,3.1056e-05,3.1407e-05,3.3607e-05,3.5398e-05,3.7892e-05,4.3215e-05,5.8882e-05,7.1504e-05,7.3659e-05,8.583e-05,8.799e-05,9.7095e-05,0.00012312,0.00013256,0.00013951,0.00017385,0.00018049,0.00018814,0.00021614,0.00021938,0.00022126,0.00024572,0.00026134,0.00026187,0.00029455,0.00029771,0.00031387,0.00031605,0.0003182,0.00045345,0.00063136,0.00065031,0.0007158,0.0007794,0.00083236,0.00089955,0.00098399,0.0011507,0.0012533,0.0014382,0.0017068,0.0017338,0.0017925,0.0018484,0.002166,0.0021665,0.0031377,0.0032237,0.0032723,0.003647,0.0036761,0.0045336,0.0049178,0.0050862,0.0054742,0.0057345,0.0062073,0.006361,0.0076618,0.0085792,0.012136,0.013317,0.013734,0.01451,0.016843,0.01736,0.017831,0.020193,0.022653,0.023627,0.024451,0.027653,0.032907,0.039344,0.044257,0.04535,0.056149,0.060346,0.062391,0.063317,0.067183,0.085179,0.085817,0.089342,0.09517,0.096349,0.10527,0.1332,0.1336,0.14243,0.1457,0.18705,0.19864,0.19951,0.21031,0.22556,0.22587,0.22713,0.23672,0.23681,0.24573,0.24924,0.30285,0.32835,0.32923,0.35959,0.36796,0.3811,0.38757,0.39141,0.39568,0.39707,0.40081,0.41603,0.41781,0.4215,0.42454,0.44772,0.47448,0.50961,0.52302,0.5516,0.58378,0.59736,0.60438,0.68144,0.69024,0.69668,0.70937,0.72536,0.73905,0.75005,0.75199,0.75321,0.76685,0.80163,0.80412,0.81726,0.83702,0.84758,0.84927,0.90397,0.9045,0.91407,0.93151,0.9345,0.9451,0.94748,0.96273,0.97135,0.98684,0.98714,0.99745,0.99813,0.99832,1,0.99999,0.9997,0.99864,0.99816,0.99774,0.9957,0.9953,0.99503,0.99281,0.99194,0.9917,0.98941,0.98852,0.98294,0.97137,0.96901,0.96836,0.96198,0.95919,0.94688,0.9218,0.91318,0.89878,0.89325,0.87731,0.86061,0.85921,0.85812,0.85799,0.85288,0.85245,0.836,0.82825,0.81336,0.81269,0.80859,0.7817,0.7809,0.76774,0.75252,0.72481,0.72112,0.71054,0.70816,0.70213,0.69198,0.67634,0.67591,0.64014,0.59919,0.59484,0.59003,0.58853,0.56399,0.54896,0.49873,0.49613,0.49091,0.48215,0.45009,0.41762,0.38335,0.37333,0.36741,0.35261,0.32374,0.31149,0.29601,0.27316,0.25436,0.25106,0.21753,0.21335,0.21184,0.20461,0.20178,0.18018,0.17144,0.16898,0.16873,0.16364,0.15696,0.15394,0.15261,0.13063,0.13061,0.11297,0.09515,0.080758,0.069116,0.064529,0.06337,0.060727,0.058493,0.053501,0.052974,0.044436,0.042474,0.038767,0.034553,0.032195,0.031938,0.030138,0.02898,0.026301,0.022717,0.022404,0.020987,0.018913,0.017363,0.017294,0.012794,0.012167,0.011877,0.011159,0.010802,0.01026,0.0094481,0.0091372,0.0087191,0.0080828,0.0073219,0.0066575,0.0065933,0.0058633,0.005424,0.005062,0.0043199,0.0040154,0.0039097,0.003555,0.0035346,0.0033894,0.0033271,0.002596,0.002434,0.0023737,0.0021154,0.0019777,0.0019576,0.0016706,0.001226,0.0011168,0.0010641,0.00095029,0.00094104,0.00082775,0.00081615,0.00069058,0.00062548,0.0005118,0.00050254,0.00049399,0.00048927,0.00047414,0.00046213,0.00045494,0.00038538,0.00037215,0.00026632,0.00023776,0.00022045,0.00021394,0.00016647,0.00016573,0.00015246,0.00014661,0.00012029,0.00011954,0.00011777,0.0001015,9.7392e-05,9.5971e-05,9.1765e-05,8.6589e-05,8.1953e-05,7.9638e-05,5.9962e-05,5.9361e-05,5.1084e-05,4.0692e-05,3.2779e-05,2.4183e-05,2.4078e-05,2.1592e-05,1.8811e-05,1.5659e-05,1.5627e-05,1.4661e-05,1.0836e-05,1.0096e-05,1.0018e-05,6.9722e-06,6.4347e-06,6.1433e-06,5.3235e-06,4.6155e-06,3.5419e-06,3.3973e-06,2.7757e-06,1.7566e-06,1.7458e-06,1.6811e-06,1.5559e-06,1.464e-06,1.358e-06,1.2424e-06,5.3639e-07,4.2871e-07,3.0319e-07,2.338e-07,2.3082e-07,2.2408e-07,1.5153e-07,1.3822e-07,1.3717e-07,9.3904e-08,4.9068e-08,4.8057e-08,3.9603e-08,3.8046e-08,2.4293e-08,2.1407e-08,1.622e-08,1.4024e-08,1.1934e-08,1.1564e-08,9.5386e-09,9.2195e-09,9.0716e-09,5.8367e-09,5.111e-09,4.8327e-09,4.0271e-09,3.8016e-09,2.9164e-09,2.7447e-09,2.4287e-09,1.7879e-09,1.7827e-09,1.5376e-09,1.4625e-09,1.4624e-09,1.0533e-09,1.0424e-09,9.0993e-10,7.8795e-10,5.7482e-10,4.3184e-10,3.5131e-10,2.5253e-10,1.857e-10,1.2427e-10,1.2225e-10,8.9549e-11,6.6265e-11,5.5442e-11,3.4288e-11,2.9755e-11,2.2286e-11,1.877e-11,1.3092e-11,1.2601e-11,1.1645e-11,9.6997e-12,6.6033e-12,4.4355e-12,3.5882e-12,2.9017e-12,2.5966e-12,2.5562e-12,2.0883e-12,1.6519e-12,8.025e-13,6.6119e-13,5.9414e-13,4.6887e-13,4.6811e-13,3.7043e-13,3.5977e-13,3.0679e-13,2.6985e-13,1.7487e-13,1.6419e-13,1.1673e-13,8.4842e-14,2.9593e-14,2.4234e-14,2.2e-14,1.7064e-14,1.3432e-14,1.2262e-14,1.0217e-14,8.9598e-15,7.6101e-15,5.806e-15,5.7976e-15,3.5544e-15,3.1195e-15,3.0356e-15,2.9918e-15,1.8119e-15,1.7913e-15,1.7026e-15,1.6387e-15,1.484e-15,1.2587e-15,1.0857e-15,5.6116e-16,1.3504e-16,8.7946e-17,8.4664e-17,8.2044e-17,7.4101e-17,7.0015e-17,4.0775e-17,2.8495e-17,2.1931e-17,1.8934e-17,1.3918e-17,1.0704e-17,1.0193e-17,7.0369e-18,5.7011e-18,4.4057e-18,2.9064e-18,1.6749e-18,1.6168e-18,1.3405e-18,1.1767e-18,1.1097e-18,5.9226e-19,4.9836e-19,2.2624e-19,1.8152e-19,1.23e-19,9.9795e-20,9.325e-20,6.4384e-20,6.1367e-20,5.5247e-20,4.3899e-20,2.8267e-20 1,2.4358e-05,3.0538e-05,3.0884e-05,3.3048e-05,3.4812e-05,3.7266e-05,4.2506e-05,5.7931e-05,7.036e-05,7.2482e-05,8.447e-05,8.6598e-05,9.5567e-05,0.0001212,0.0001305,0.00013736,0.0001712,0.00017775,0.00018529,0.00021289,0.00021608,0.00021793,0.00024205,0.00025745,0.00025797,0.0002902,0.00029332,0.00030925,0.00031141,0.00031352,0.00044693,0.00062248,0.00064118,0.00070582,0.00076859,0.00082087,0.0008872,0.00097056,0.0011352,0.0012365,0.0014192,0.0016845,0.0017111,0.0017691,0.0018243,0.0021382,0.0021387,0.0030986,0.0031836,0.0032317,0.0036022,0.0036309,0.004479,0.004859,0.0050255,0.0054093,0.0056669,0.0061347,0.0062868,0.0075741,0.008482,0.012003,0.013173,0.013587,0.014355,0.016666,0.017179,0.017645,0.019986,0.022424,0.023389,0.024207,0.02738,0.032591,0.038977,0.043851,0.044936,0.055653,0.059821,0.061851,0.06277,0.066609,0.084484,0.085118,0.08862,0.094411,0.095583,0.10445,0.13221,0.13262,0.1414,0.14465,0.18579,0.19733,0.19819,0.20894,0.22412,0.22443,0.22569,0.23524,0.23533,0.24422,0.24771,0.30112,0.32654,0.32742,0.35769,0.36604,0.37914,0.3856,0.38943,0.39369,0.39509,0.39882,0.414,0.41578,0.41946,0.42249,0.44563,0.47235,0.50743,0.52082,0.54938,0.58154,0.59513,0.60214,0.67924,0.68804,0.69449,0.7072,0.72321,0.73693,0.74795,0.7499,0.75112,0.76479,0.79966,0.80216,0.81535,0.83517,0.84578,0.84747,0.90247,0.903,0.91264,0.93021,0.93322,0.94392,0.94632,0.96175,0.97048,0.98624,0.98654,0.99718,0.99789,0.9981,0.99999,1,0.99978,0.99883,0.99838,0.99798,0.99604,0.99565,0.99539,0.99324,0.9924,0.99217,0.98994,0.98906,0.98361,0.97222,0.9699,0.96926,0.96297,0.96021,0.94803,0.92317,0.91461,0.9003,0.89481,0.87896,0.86234,0.86095,0.85987,0.85974,0.85465,0.85422,0.83784,0.83012,0.81529,0.81461,0.81053,0.78372,0.78292,0.76979,0.75462,0.72696,0.72327,0.7127,0.71033,0.70431,0.69417,0.67855,0.67812,0.64237,0.60143,0.59708,0.59227,0.59077,0.56622,0.55118,0.5009,0.4983,0.49307,0.4843,0.45219,0.41966,0.38531,0.37526,0.36933,0.35449,0.32553,0.31324,0.29772,0.27479,0.25591,0.2526,0.21893,0.21474,0.21322,0.20596,0.20312,0.18141,0.17264,0.17016,0.16991,0.16479,0.15808,0.15504,0.1537,0.13161,0.13158,0.11384,0.095913,0.081428,0.069708,0.065089,0.063922,0.061259,0.059009,0.053981,0.053449,0.044846,0.04287,0.039133,0.034885,0.032508,0.032248,0.030433,0.029266,0.026564,0.022949,0.022633,0.021203,0.01911,0.017547,0.017476,0.012934,0.012301,0.012008,0.011283,0.010922,0.010375,0.0095551,0.009241,0.0088187,0.0081758,0.0074071,0.0067357,0.0066708,0.005933,0.005489,0.0051231,0.0043728,0.0040649,0.003958,0.0035993,0.0035786,0.0034318,0.0033688,0.0026292,0.0024654,0.0024043,0.002143,0.0020036,0.0019832,0.0016928,0.0012427,0.0011321,0.0010787,0.00096345,0.00095408,0.00083933,0.00082758,0.00070037,0.0006344,0.0005192,0.00050981,0.00050115,0.00049637,0.00048103,0.00046886,0.00046157,0.00039106,0.00037765,0.00027034,0.00024137,0.00022382,0.0002172,0.00016905,0.0001683,0.00015484,0.0001489,0.00012219,0.00012143,0.00011963,0.00010312,9.8948e-05,9.7505e-05,9.3235e-05,8.7982e-05,8.3274e-05,8.0924e-05,6.0945e-05,6.0335e-05,5.1928e-05,4.1372e-05,3.3333e-05,2.4598e-05,2.4491e-05,2.1964e-05,1.9137e-05,1.5933e-05,1.5901e-05,1.4919e-05,1.1029e-05,1.0276e-05,1.0196e-05,7.0987e-06,6.5518e-06,6.2552e-06,5.4211e-06,4.7007e-06,3.608e-06,3.4607e-06,2.828e-06,1.7903e-06,1.7793e-06,1.7134e-06,1.5859e-06,1.4923e-06,1.3843e-06,1.2666e-06,5.4712e-07,4.3736e-07,3.0937e-07,2.3862e-07,2.3557e-07,2.287e-07,1.5469e-07,1.4111e-07,1.4004e-07,9.5895e-08,5.0129e-08,4.9097e-08,4.0466e-08,3.8875e-08,2.4829e-08,2.1881e-08,1.6582e-08,1.4338e-08,1.2203e-08,1.1825e-08,9.7548e-09,9.4286e-09,9.2775e-09,5.9708e-09,5.2288e-09,4.9443e-09,4.1205e-09,3.8899e-09,2.9847e-09,2.8091e-09,2.4857e-09,1.8302e-09,1.8249e-09,1.5741e-09,1.4973e-09,1.4972e-09,1.0786e-09,1.0674e-09,9.3184e-10,8.07e-10,5.8882e-10,4.4242e-10,3.5996e-10,2.588e-10,1.9034e-10,1.274e-10,1.2533e-10,9.1824e-11,6.796e-11,5.6865e-11,3.5177e-11,3.0529e-11,2.287e-11,1.9262e-11,1.3438e-11,1.2934e-11,1.1954e-11,9.9578e-12,6.7804e-12,4.5554e-12,3.6856e-12,2.9808e-12,2.6675e-12,2.6261e-12,2.1456e-12,1.6974e-12,8.2489e-13,6.7971e-13,6.1081e-13,4.8209e-13,4.813e-13,3.8091e-13,3.6996e-13,3.155e-13,2.7753e-13,1.7988e-13,1.689e-13,1.201e-13,8.7305e-14,3.0467e-14,2.4952e-14,2.2653e-14,1.7572e-14,1.3834e-14,1.2629e-14,1.0524e-14,9.2296e-15,7.8398e-15,5.982e-15,5.9733e-15,3.6629e-15,3.2149e-15,3.1285e-15,3.0834e-15,1.8678e-15,1.8465e-15,1.7552e-15,1.6893e-15,1.5299e-15,1.2978e-15,1.1194e-15,5.7878e-16,1.3937e-16,9.078e-17,8.7394e-17,8.4691e-17,7.6494e-17,7.2279e-17,4.2103e-17,2.9427e-17,2.2651e-17,1.9557e-17,1.4378e-17,1.1059e-17,1.0531e-17,7.2714e-18,5.8916e-18,4.5534e-18,3.0044e-18,1.7317e-18,1.6717e-18,1.3861e-18,1.2168e-18,1.1475e-18,6.1262e-19,5.1553e-19,2.3411e-19,1.8785e-19,1.2731e-19,1.033e-19,9.6526e-20,6.6655e-20,6.3533e-20,5.7199e-20,4.5454e-20,2.9274e-20 1,2.2116e-05,2.7756e-05,2.8072e-05,3.0048e-05,3.1659e-05,3.3902e-05,3.8693e-05,5.281e-05,6.42e-05,6.6146e-05,7.7143e-05,7.9095e-05,8.7329e-05,0.00011088,0.00011944,0.00012574,0.00015689,0.00016293,0.00016987,0.00019531,0.00019825,0.00019996,0.00022221,0.00023643,0.0002369,0.00026667,0.00026955,0.00028426,0.00028626,0.00028821,0.00041162,0.00057432,0.00059167,0.00065166,0.00070995,0.00075851,0.00082016,0.00089767,0.0010508,0.0011452,0.0013154,0.0015629,0.0015877,0.0016419,0.0016934,0.0019866,0.0019871,0.0028855,0.0029651,0.0030102,0.0033575,0.0033845,0.0041805,0.0045375,0.0046941,0.005055,0.0052973,0.0057375,0.0058807,0.0070936,0.00795,0.011278,0.012385,0.012776,0.013504,0.015695,0.016181,0.016624,0.018847,0.021164,0.022082,0.02286,0.025882,0.030849,0.036948,0.041609,0.042647,0.052915,0.056913,0.058862,0.059745,0.063433,0.08063,0.081241,0.084616,0.0902,0.09133,0.09989,0.12674,0.12713,0.13564,0.1388,0.17876,0.18999,0.19084,0.20131,0.21612,0.21642,0.21765,0.22697,0.22706,0.23574,0.23916,0.29146,0.31642,0.31728,0.34706,0.35527,0.36819,0.37455,0.37833,0.38253,0.38391,0.38759,0.40257,0.40434,0.40797,0.41097,0.43385,0.46031,0.49512,0.50842,0.53684,0.5689,0.58246,0.58947,0.66672,0.67557,0.68206,0.69485,0.71099,0.72483,0.73597,0.73794,0.73917,0.753,0.78839,0.79093,0.80435,0.82458,0.83542,0.83716,0.89377,0.89432,0.90432,0.92265,0.9258,0.93704,0.93957,0.95594,0.96531,0.9826,0.98294,0.9954,0.99632,0.99659,0.9997,0.99978,1,0.99962,0.99935,0.99909,0.99768,0.99738,0.99717,0.99545,0.99475,0.99455,0.99267,0.99192,0.98714,0.97685,0.97471,0.97412,0.9683,0.96573,0.95431,0.93071,0.92252,0.90877,0.90348,0.88815,0.87202,0.87066,0.86961,0.86949,0.86453,0.86411,0.84813,0.84059,0.82607,0.82541,0.82141,0.79507,0.79428,0.78135,0.76638,0.73903,0.73539,0.72491,0.72255,0.71658,0.70653,0.691,0.69058,0.65498,0.61411,0.60976,0.60494,0.60344,0.57886,0.56378,0.51325,0.51063,0.50537,0.49654,0.46416,0.43128,0.39651,0.38632,0.38031,0.36524,0.33582,0.32331,0.3075,0.28411,0.26484,0.26145,0.22701,0.22271,0.22116,0.21371,0.2108,0.18852,0.17949,0.17694,0.17669,0.17143,0.16452,0.16139,0.16001,0.13724,0.13721,0.11888,0.10033,0.085312,0.073137,0.068333,0.067118,0.064347,0.062004,0.056764,0.05621,0.047233,0.045169,0.041263,0.036818,0.034329,0.034057,0.032154,0.030931,0.028096,0.0243,0.023968,0.022465,0.020263,0.018617,0.018543,0.013753,0.013085,0.012775,0.012009,0.011628,0.01105,0.010182,0.0098493,0.0094022,0.0087213,0.0079065,0.0071944,0.0071255,0.0063423,0.0058706,0.0054817,0.0046837,0.0043559,0.0042421,0.0038599,0.0038378,0.0036813,0.0036141,0.002825,0.00265,0.0025848,0.0023054,0.0021564,0.0021345,0.0018236,0.0013411,0.0012224,0.0011651,0.0010413,0.0010312,0.00090782,0.00089519,0.00075828,0.00068723,0.00056305,0.00055292,0.00054357,0.00053841,0.00052187,0.00050873,0.00050087,0.00042472,0.00041023,0.00029418,0.00026281,0.00024379,0.00023662,0.00018439,0.00018359,0.00016897,0.00016252,0.0001335,0.00013267,0.00013072,0.00011276,0.00010822,0.00010665,0.000102,9.6278e-05,9.1151e-05,8.859e-05,6.681e-05,6.6144e-05,5.6968e-05,4.5435e-05,3.6644e-05,2.7078e-05,2.6961e-05,2.4192e-05,2.1091e-05,1.7574e-05,1.7539e-05,1.646e-05,1.2184e-05,1.1356e-05,1.1269e-05,7.8575e-06,7.2546e-06,6.9277e-06,6.0075e-06,5.2123e-06,4.0051e-06,3.8423e-06,3.1424e-06,1.9931e-06,1.9809e-06,1.9078e-06,1.7664e-06,1.6626e-06,1.5427e-06,1.412e-06,6.1198e-07,4.8963e-07,3.4681e-07,2.6776e-07,2.6435e-07,2.5666e-07,1.7386e-07,1.5866e-07,1.5745e-07,1.0797e-07,5.6575e-08,5.5415e-08,4.5704e-08,4.3914e-08,2.8092e-08,2.4768e-08,1.8788e-08,1.6254e-08,1.3841e-08,1.3413e-08,1.1073e-08,1.0704e-08,1.0533e-08,6.7889e-09,5.948e-09,5.6254e-09,4.691e-09,4.4293e-09,3.4016e-09,3.2021e-09,2.8347e-09,2.0893e-09,2.0832e-09,1.7978e-09,1.7104e-09,1.7102e-09,1.2334e-09,1.2207e-09,1.0661e-09,9.2367e-10,6.7463e-10,5.0737e-10,4.1307e-10,2.9729e-10,2.1886e-10,1.4668e-10,1.443e-10,1.0582e-10,7.8392e-11,6.563e-11,4.0658e-11,3.5301e-11,2.6467e-11,2.2304e-11,1.5576e-11,1.4994e-11,1.3861e-11,1.1553e-11,7.8752e-12,5.297e-12,4.2883e-12,3.4703e-12,3.1065e-12,3.0584e-12,2.5003e-12,1.9793e-12,9.6387e-13,7.9466e-13,7.1432e-13,5.6415e-13,5.6323e-13,4.4604e-13,4.3325e-13,3.6964e-13,3.2527e-13,2.1108e-13,1.9823e-13,1.4109e-13,1.0265e-13,3.5921e-14,2.9434e-14,2.673e-14,2.0748e-14,1.6345e-14,1.4925e-14,1.2443e-14,1.0916e-14,9.2762e-15,7.083e-15,7.0728e-15,4.3426e-15,3.8127e-15,3.7105e-15,3.6571e-15,2.2182e-15,2.193e-15,2.0848e-15,2.0068e-15,1.8178e-15,1.5427e-15,1.3311e-15,6.8938e-16,1.6659e-16,1.0862e-16,1.0458e-16,1.0135e-16,9.1566e-17,8.6532e-17,5.0472e-17,3.5307e-17,2.7194e-17,2.3488e-17,1.728e-17,1.3299e-17,1.2666e-17,8.7532e-18,7.0957e-18,5.4873e-18,3.6241e-18,2.0916e-18,2.0192e-18,1.675e-18,1.4708e-18,1.3873e-18,7.417e-19,6.244e-19,2.8405e-19,2.2804e-19,1.5468e-19,1.2557e-19,1.1735e-19,8.1104e-20,7.7314e-20,6.9622e-20,5.5354e-20,3.5684e-20 1,1.9462e-05,2.4459e-05,2.4739e-05,2.6492e-05,2.7921e-05,2.9911e-05,3.4165e-05,4.672e-05,5.6866e-05,5.8601e-05,6.8409e-05,7.0152e-05,7.7503e-05,9.8559e-05,0.00010621,0.00011186,0.00013977,0.00014518,0.00015141,0.00017425,0.00017689,0.00017842,0.00019842,0.0002112,0.00021163,0.00023841,0.000241,0.00025425,0.00025604,0.0002578,0.00036909,0.0005162,0.0005319,0.00058624,0.00063907,0.00068312,0.00073905,0.00080943,0.00094864,0.0010345,0.0011895,0.0014151,0.0014378,0.0014872,0.0015343,0.0018022,0.0018026,0.0026253,0.0026983,0.0027397,0.0030585,0.0030833,0.0038151,0.0041438,0.004288,0.0046205,0.0048439,0.00525,0.0053822,0.0065028,0.0072952,0.010381,0.011411,0.011774,0.012452,0.014493,0.014946,0.015359,0.017434,0.019599,0.020459,0.021186,0.024017,0.028679,0.034413,0.038804,0.039783,0.049481,0.053264,0.055109,0.055945,0.05944,0.075773,0.076354,0.079565,0.084884,0.085961,0.094124,0.1198,0.12018,0.12833,0.13136,0.1698,0.18063,0.18145,0.19156,0.20588,0.20617,0.20736,0.21639,0.21647,0.22488,0.22819,0.27903,0.30337,0.30421,0.33331,0.34135,0.354,0.36024,0.36395,0.36807,0.36942,0.37303,0.38776,0.38949,0.39306,0.39601,0.41853,0.44463,0.47904,0.49222,0.52042,0.5523,0.56582,0.5728,0.65016,0.65906,0.66558,0.67847,0.69475,0.70874,0.72001,0.722,0.72325,0.73728,0.77327,0.77587,0.78958,0.8103,0.82144,0.82323,0.88185,0.88243,0.89289,0.91217,0.9155,0.92743,0.93013,0.94772,0.95792,0.97717,0.97756,0.99239,0.99359,0.99396,0.99864,0.99883,0.99962,1,0.99996,0.99989,0.99917,0.99899,0.99886,0.99769,0.99718,0.99704,0.99561,0.99503,0.99114,0.98231,0.98043,0.97991,0.97472,0.97241,0.96201,0.94011,0.93242,0.91943,0.9144,0.89979,0.88433,0.88303,0.88202,0.8819,0.87714,0.87673,0.86131,0.85401,0.83992,0.83929,0.8354,0.80972,0.80895,0.7963,0.78162,0.75473,0.75114,0.74081,0.73849,0.73259,0.72265,0.70728,0.70686,0.67152,0.63079,0.62644,0.62163,0.62013,0.59553,0.58041,0.52963,0.52699,0.52169,0.51278,0.48008,0.44678,0.41148,0.40111,0.39499,0.37965,0.34962,0.33683,0.32065,0.29668,0.27689,0.27341,0.23793,0.2335,0.2319,0.22421,0.2212,0.19816,0.18882,0.18617,0.18591,0.18045,0.17329,0.17003,0.1686,0.14492,0.14489,0.12578,0.10639,0.090649,0.077859,0.072804,0.071525,0.068606,0.066137,0.060609,0.060025,0.050538,0.048353,0.044216,0.039501,0.036858,0.036569,0.034547,0.033246,0.030229,0.026183,0.025829,0.024226,0.021873,0.020113,0.020034,0.014901,0.014184,0.013851,0.013029,0.012619,0.011997,0.011063,0.010705,0.010223,0.0094891,0.00861,0.0078411,0.0077667,0.00692,0.0064096,0.0059885,0.0051235,0.0047678,0.0046443,0.0042292,0.0042052,0.0040351,0.0039621,0.0031032,0.0029124,0.0028413,0.0025365,0.0023738,0.0023499,0.0020101,0.0014818,0.0013515,0.0012887,0.0011526,0.0011416,0.0010059,0.00099204,0.00084134,0.00076305,0.00062606,0.00061488,0.00060455,0.00059886,0.00058059,0.00056607,0.00055738,0.00047319,0.00045716,0.00032858,0.00029377,0.00027265,0.00026469,0.00020661,0.00020571,0.00018943,0.00018225,0.0001499,0.00014897,0.0001468,0.00012675,0.00012168,0.00011992,0.00011473,0.00010833,0.0001026,9.9737e-05,7.535e-05,7.4603e-05,6.4314e-05,5.1366e-05,4.1482e-05,3.071e-05,3.0578e-05,2.7454e-05,2.3954e-05,1.9982e-05,1.9942e-05,1.8722e-05,1.3884e-05,1.2945e-05,1.2846e-05,8.9757e-06,8.2908e-06,7.9192e-06,6.8729e-06,5.9678e-06,4.5924e-06,4.4067e-06,3.608e-06,2.294e-06,2.2801e-06,2.1964e-06,2.0344e-06,1.9155e-06,1.7781e-06,1.6282e-06,7.0877e-07,5.6771e-07,4.0282e-07,3.1141e-07,3.0746e-07,2.9857e-07,2.0264e-07,1.85e-07,1.8361e-07,1.2614e-07,6.6299e-08,6.4946e-08,5.3614e-08,5.1524e-08,3.303e-08,2.9138e-08,2.2132e-08,1.9159e-08,1.6327e-08,1.5825e-08,1.3075e-08,1.2641e-08,1.244e-08,8.0341e-09,7.0431e-09,6.6628e-09,5.5606e-09,5.2517e-09,4.0379e-09,3.8021e-09,3.3676e-09,2.4854e-09,2.4783e-09,2.1401e-09,2.0364e-09,2.0363e-09,1.4706e-09,1.4555e-09,1.2719e-09,1.1027e-09,8.0645e-10,6.0723e-10,4.948e-10,3.5661e-10,2.6286e-10,1.7645e-10,1.7361e-10,1.2747e-10,9.4546e-11,7.921e-11,4.9166e-11,4.2712e-11,3.206e-11,2.7035e-11,1.8907e-11,1.8203e-11,1.6832e-11,1.4039e-11,9.5844e-12,6.4564e-12,5.2311e-12,4.2367e-12,3.7942e-12,3.7357e-12,3.0563e-12,2.4215e-12,1.1824e-12,9.7551e-13,8.7724e-13,6.9342e-13,6.9229e-13,5.4872e-13,5.3304e-13,4.5504e-13,4.0061e-13,2.6037e-13,2.4457e-13,1.7429e-13,1.2694e-13,4.459e-14,3.6563e-14,3.3214e-14,2.5804e-14,2.0344e-14,1.8583e-14,1.5503e-14,1.3606e-14,1.1569e-14,8.8417e-15,8.8289e-15,5.4298e-15,4.7694e-15,4.6419e-15,4.5754e-15,2.7798e-15,2.7484e-15,2.6132e-15,2.5157e-15,2.2796e-15,1.9356e-15,1.671e-15,8.6729e-16,2.1055e-16,1.3748e-16,1.3238e-16,1.2831e-16,1.1595e-16,1.096e-16,6.4036e-17,4.4846e-17,3.457e-17,2.9872e-17,2.1998e-17,1.6945e-17,1.614e-17,1.1167e-17,9.0583e-18,7.0106e-18,4.636e-18,2.6802e-18,2.5877e-18,2.1478e-18,1.8867e-18,1.7799e-18,9.534e-19,8.0303e-19,3.6618e-19,2.9417e-19,1.9976e-19,1.6226e-19,1.5168e-19,1.0494e-19,1.0005e-19,9.0124e-20,7.1703e-20,4.6283e-20 1,1.8698e-05,2.3508e-05,2.3778e-05,2.5466e-05,2.6842e-05,2.8759e-05,3.2858e-05,4.4959e-05,5.4743e-05,5.6416e-05,6.5879e-05,6.7561e-05,7.4655e-05,9.4982e-05,0.00010237,0.00010783,0.00013479,0.00014002,0.00014605,0.00016812,0.00017067,0.00017216,0.00019149,0.00020385,0.00020427,0.00023017,0.00023268,0.0002455,0.00024724,0.00024894,0.00035668,0.0004992,0.00051442,0.00056709,0.00061832,0.00066104,0.00071529,0.00078357,0.00091866,0.001002,0.0011525,0.0013717,0.0013937,0.0014418,0.0014875,0.0017479,0.0017483,0.0025486,0.0026196,0.0026599,0.0029702,0.0029944,0.0037071,0.0040273,0.0041678,0.0044919,0.0047097,0.0051056,0.0052345,0.0063276,0.0071009,0.010115,0.011121,0.011476,0.012138,0.014134,0.014578,0.014981,0.017012,0.019132,0.019973,0.020686,0.023459,0.028028,0.033652,0.037962,0.038923,0.048447,0.052165,0.053978,0.0548,0.058236,0.074305,0.074877,0.078038,0.083276,0.084336,0.092378,0.1177,0.11806,0.12611,0.1291,0.16707,0.17777,0.17858,0.18858,0.20275,0.20304,0.20421,0.21315,0.21323,0.22156,0.22484,0.27522,0.29935,0.30019,0.32908,0.33707,0.34963,0.35583,0.35952,0.36361,0.36495,0.36854,0.38318,0.3849,0.38846,0.39139,0.4138,0.43977,0.47405,0.48719,0.51531,0.54713,0.56063,0.56761,0.64497,0.65388,0.66041,0.67333,0.68964,0.70367,0.71498,0.71698,0.71824,0.73232,0.76849,0.7711,0.7849,0.80576,0.81699,0.81879,0.87803,0.87861,0.88921,0.90878,0.91217,0.92431,0.92706,0.94502,0.95547,0.97533,0.97574,0.9913,0.99259,0.99298,0.99816,0.99838,0.99935,0.99996,1,0.99998,0.99948,0.99934,0.99924,0.99824,0.99779,0.99766,0.99638,0.99584,0.99224,0.98387,0.98207,0.98157,0.97658,0.97435,0.96428,0.94292,0.93539,0.92264,0.9177,0.90332,0.88808,0.88679,0.88579,0.88568,0.88097,0.88057,0.86534,0.85811,0.84417,0.84354,0.83968,0.81422,0.81346,0.8009,0.78632,0.75959,0.75601,0.74573,0.74342,0.73755,0.72765,0.71233,0.71191,0.67667,0.63599,0.63165,0.62684,0.62534,0.60074,0.58562,0.53476,0.53212,0.52681,0.51788,0.48508,0.45167,0.4162,0.40579,0.39963,0.3842,0.35399,0.34112,0.32482,0.30067,0.28072,0.27721,0.24142,0.23694,0.23532,0.22756,0.22452,0.20124,0.19179,0.18912,0.18885,0.18334,0.17609,0.1728,0.17135,0.14738,0.14735,0.128,0.10834,0.092369,0.079383,0.074248,0.072948,0.069982,0.067472,0.061853,0.061259,0.051609,0.049385,0.045174,0.040372,0.03768,0.037385,0.035325,0.033999,0.030924,0.026797,0.026436,0.024799,0.022399,0.020602,0.020521,0.015277,0.014544,0.014203,0.013362,0.012943,0.012307,0.011351,0.010985,0.010492,0.0097409,0.008841,0.0080535,0.0079773,0.0071099,0.0065869,0.0061553,0.0052684,0.0049036,0.0047768,0.004351,0.0043264,0.0041518,0.0040768,0.0031951,0.0029991,0.0029261,0.0026129,0.0024457,0.0024212,0.0020718,0.0015284,0.0013944,0.0013297,0.0011896,0.0011782,0.0010385,0.0010242,0.00086897,0.00078828,0.00064705,0.00063552,0.00062487,0.000619,0.00060015,0.00058518,0.00057622,0.00048936,0.00047282,0.00034008,0.00030412,0.0002823,0.00027407,0.00021405,0.00021312,0.00019629,0.00018886,0.0001554,0.00015444,0.00015219,0.00013144,0.00012619,0.00012438,0.000119,0.00011238,0.00010645,0.00010348,7.8223e-05,7.7449e-05,6.6787e-05,5.3365e-05,4.3113e-05,3.1936e-05,3.1799e-05,2.8556e-05,2.4923e-05,2.0797e-05,2.0755e-05,1.9488e-05,1.4459e-05,1.3484e-05,1.338e-05,9.3551e-06,8.6425e-06,8.2558e-06,7.1668e-06,6.2246e-06,4.7921e-06,4.5988e-06,3.7665e-06,2.3967e-06,2.3821e-06,2.2948e-06,2.1258e-06,2.0018e-06,1.8584e-06,1.702e-06,7.4192e-07,5.9448e-07,4.2204e-07,3.264e-07,3.2227e-07,3.1296e-07,2.1254e-07,1.9406e-07,1.926e-07,1.3239e-07,6.9656e-08,6.8236e-08,5.6346e-08,5.4153e-08,3.4738e-08,3.065e-08,2.329e-08,2.0166e-08,1.7189e-08,1.6661e-08,1.3769e-08,1.3313e-08,1.3102e-08,8.4667e-09,7.4237e-09,7.0234e-09,5.863e-09,5.5378e-09,4.2594e-09,4.011e-09,3.5533e-09,2.6235e-09,2.616e-09,2.2594e-09,2.1502e-09,2.15e-09,1.5534e-09,1.5375e-09,1.3438e-09,1.1652e-09,8.5255e-10,6.4218e-10,5.2342e-10,3.774e-10,2.7829e-10,1.8691e-10,1.839e-10,1.3508e-10,1.0023e-10,8.399e-11,5.2163e-11,4.5324e-11,3.4033e-11,2.8705e-11,2.0083e-11,1.9337e-11,1.7882e-11,1.4918e-11,1.0189e-11,6.8671e-12,5.5653e-12,4.5085e-12,4.0381e-12,3.9759e-12,3.2536e-12,2.5786e-12,1.2601e-12,1.0399e-12,9.3523e-13,7.3946e-13,7.3826e-13,5.8531e-13,5.6861e-13,4.8548e-13,4.2748e-13,2.7797e-13,2.6112e-13,1.8615e-13,1.3563e-13,4.7697e-14,3.9119e-14,3.554e-14,2.7619e-14,2.1781e-14,1.9897e-14,1.6602e-14,1.4573e-14,1.2393e-14,9.4744e-15,9.4607e-15,5.8214e-15,5.1141e-15,4.9775e-15,4.9062e-15,2.9824e-15,2.9487e-15,2.8038e-15,2.6993e-15,2.4463e-15,2.0775e-15,1.7938e-15,9.3162e-16,2.265e-16,1.4795e-16,1.4247e-16,1.3809e-16,1.2481e-16,1.1798e-16,6.8968e-17,4.8317e-17,3.7255e-17,3.2197e-17,2.3718e-17,1.8274e-17,1.7407e-17,1.2048e-17,9.7747e-18,7.5669e-18,5.0059e-18,2.8955e-18,2.7957e-18,2.3209e-18,2.039e-18,1.9237e-18,1.031e-18,8.6855e-19,3.9635e-19,3.1847e-19,2.1634e-19,1.7576e-19,1.6431e-19,1.1372e-19,1.0842e-19,9.7676e-20,7.7728e-20,5.0192e-20 1,1.8139e-05,2.2813e-05,2.3075e-05,2.4715e-05,2.6053e-05,2.7916e-05,3.1901e-05,4.367e-05,5.3189e-05,5.4816e-05,6.4026e-05,6.5662e-05,7.2568e-05,9.236e-05,9.9558e-05,0.00010487,0.00013114,0.00013624,0.00014211,0.00016362,0.00016611,0.00016756,0.00018641,0.00019846,0.00019886,0.00022413,0.00022657,0.00023907,0.00024077,0.00024243,0.00034755,0.0004867,0.00050156,0.00055301,0.00060305,0.00064478,0.0006978,0.00076453,0.00089658,0.00097804,0.0011253,0.0013397,0.0013612,0.0014082,0.001453,0.0017078,0.0017082,0.0024919,0.0025615,0.002601,0.0029051,0.0029287,0.0036273,0.0039412,0.004079,0.0043968,0.0046104,0.0049989,0.0051253,0.0061979,0.006957,0.0099172,0.010906,0.011255,0.011906,0.013868,0.014304,0.014701,0.016699,0.018785,0.019613,0.020314,0.023044,0.027545,0.033087,0.037335,0.038283,0.047677,0.051346,0.053136,0.053947,0.057339,0.07321,0.073775,0.0769,0.082076,0.083124,0.091075,0.11612,0.11648,0.12445,0.12741,0.16502,0.17564,0.17644,0.18635,0.2004,0.20069,0.20186,0.21072,0.2108,0.21907,0.22232,0.27235,0.29634,0.29717,0.3259,0.33384,0.34635,0.35252,0.35618,0.36026,0.36159,0.36517,0.37974,0.38145,0.38499,0.38791,0.41023,0.43611,0.4703,0.4834,0.51146,0.54323,0.55671,0.56368,0.64104,0.64996,0.6565,0.66943,0.68578,0.69983,0.71117,0.71318,0.71443,0.72856,0.76486,0.76748,0.78134,0.80231,0.8136,0.81542,0.8751,0.87569,0.8864,0.90618,0.90961,0.92191,0.9247,0.94293,0.95358,0.9739,0.97432,0.99043,0.99178,0.99219,0.99774,0.99798,0.99909,0.99989,0.99998,1,0.99967,0.99955,0.99947,0.9986,0.9982,0.99809,0.99691,0.99641,0.99303,0.985,0.98326,0.98278,0.97794,0.97577,0.96595,0.94501,0.9376,0.92503,0.92016,0.90595,0.89087,0.8896,0.88861,0.8885,0.88384,0.88344,0.86835,0.86119,0.84735,0.84672,0.8429,0.8176,0.81685,0.80436,0.78986,0.76324,0.75968,0.74944,0.74713,0.74128,0.73141,0.71614,0.71572,0.68055,0.63992,0.63558,0.63078,0.62928,0.60469,0.58956,0.53866,0.53601,0.53069,0.52174,0.48888,0.45538,0.41979,0.40934,0.40316,0.38767,0.35731,0.34438,0.328,0.30371,0.28363,0.2801,0.24407,0.23957,0.23793,0.23011,0.22705,0.20359,0.19407,0.19138,0.1911,0.18554,0.17823,0.17492,0.17345,0.14927,0.14924,0.1297,0.10983,0.093687,0.080551,0.075355,0.07404,0.071037,0.068497,0.062808,0.062206,0.052431,0.050177,0.045909,0.041041,0.038311,0.038013,0.035923,0.034578,0.031457,0.027269,0.026902,0.025241,0.022803,0.020978,0.020895,0.015567,0.014821,0.014475,0.01362,0.013193,0.012546,0.011574,0.011201,0.0107,0.0099353,0.0090193,0.0082175,0.00814,0.0072566,0.0067238,0.0062841,0.0053804,0.0050085,0.0048793,0.0044452,0.00442,0.004242,0.0041656,0.0032662,0.0030663,0.0029917,0.0026721,0.0025014,0.0024764,0.0021197,0.0015646,0.0014276,0.0013615,0.0012183,0.0012067,0.0010638,0.0010492,0.00089041,0.00080787,0.00066335,0.00065155,0.00064066,0.00063464,0.00061535,0.00060003,0.00059086,0.00050193,0.00048499,0.00034902,0.00031217,0.00028981,0.00028138,0.00021984,0.00021888,0.00020163,0.00019401,0.00015969,0.0001587,0.00015639,0.0001351,0.00012972,0.00012785,0.00012233,0.00011554,0.00010945,0.0001064,8.0463e-05,7.9669e-05,6.8716e-05,5.4924e-05,4.4387e-05,3.2893e-05,3.2753e-05,2.9418e-05,2.5679e-05,2.1434e-05,2.139e-05,2.0086e-05,1.4909e-05,1.3905e-05,1.3798e-05,9.6521e-06,8.9178e-06,8.5194e-06,7.397e-06,6.4257e-06,4.9487e-06,4.7493e-06,3.8908e-06,2.4772e-06,2.4622e-06,2.372e-06,2.1976e-06,2.0695e-06,1.9215e-06,1.76e-06,7.6797e-07,6.1552e-07,4.3716e-07,3.3819e-07,3.3392e-07,3.2429e-07,2.2033e-07,2.012e-07,1.9969e-07,1.3732e-07,7.2302e-08,7.083e-08,5.8501e-08,5.6226e-08,3.6086e-08,3.1844e-08,2.4204e-08,2.0961e-08,1.7869e-08,1.7321e-08,1.4318e-08,1.3844e-08,1.3625e-08,8.8088e-09,7.7247e-09,7.3086e-09,6.1023e-09,5.7641e-09,4.4347e-09,4.1763e-09,3.7002e-09,2.7328e-09,2.725e-09,2.354e-09,2.2402e-09,2.2401e-09,1.619e-09,1.6024e-09,1.4007e-09,1.2148e-09,8.891e-10,6.6991e-10,5.4613e-10,3.939e-10,2.9055e-10,1.9522e-10,1.9207e-10,1.4113e-10,1.0475e-10,8.779e-11,5.4548e-11,4.7402e-11,3.5603e-11,3.0034e-11,2.102e-11,2.0239e-11,1.8718e-11,1.5618e-11,1.0671e-11,7.1945e-12,5.8318e-12,4.7253e-12,4.2327e-12,4.1675e-12,3.411e-12,2.7039e-12,1.3222e-12,1.0913e-12,9.8156e-13,7.7625e-13,7.7499e-13,6.1456e-13,5.9703e-13,5.0982e-13,4.4896e-13,2.9204e-13,2.7436e-13,1.9564e-13,1.4259e-13,5.0187e-14,4.1168e-14,3.7404e-14,2.9074e-14,2.2932e-14,2.0951e-14,1.7484e-14,1.5349e-14,1.3054e-14,9.9821e-15,9.9678e-15,6.1358e-15,5.3908e-15,5.247e-15,5.1719e-15,3.1451e-15,3.1096e-15,2.9569e-15,2.8468e-15,2.5802e-15,2.1915e-15,1.8924e-15,9.8336e-16,2.3934e-16,1.5639e-16,1.506e-16,1.4598e-16,1.3195e-16,1.2473e-16,7.2944e-17,5.1116e-17,3.9421e-17,3.4073e-17,2.5105e-17,1.9346e-17,1.8429e-17,1.2759e-17,1.0353e-17,8.0163e-18,5.3048e-18,3.0696e-18,2.9639e-18,2.4608e-18,2.1621e-18,2.04e-18,1.0938e-18,9.2156e-19,4.2078e-19,3.3815e-19,2.2977e-19,1.867e-19,1.7454e-19,1.2083e-19,1.1521e-19,1.038e-19,8.2613e-20,5.3362e-20 1,1.6088e-05,2.0259e-05,2.0493e-05,2.1958e-05,2.3153e-05,2.4819e-05,2.8383e-05,3.8923e-05,4.7461e-05,4.8922e-05,5.7192e-05,5.8663e-05,6.487e-05,8.268e-05,8.9164e-05,9.3951e-05,0.00011764,0.00012224,0.00012754,0.00014698,0.00014923,0.00015054,0.00016758,0.00017849,0.00017885,0.00020172,0.00020394,0.00021526,0.0002168,0.0002183,0.00031368,0.00044023,0.00045376,0.00050063,0.00054624,0.0005843,0.00063268,0.00069361,0.0008143,0.00088881,0.0010236,0.0012201,0.0012399,0.001283,0.0013241,0.0015581,0.0015585,0.0022797,0.0023439,0.0023802,0.0026607,0.0026825,0.0033278,0.0036181,0.0037456,0.0040398,0.0042376,0.0045975,0.0047147,0.0057101,0.0064154,0.009172,0.010094,0.010421,0.011028,0.012863,0.013271,0.013643,0.015514,0.01747,0.018248,0.018907,0.021472,0.025709,0.030937,0.034951,0.035847,0.044744,0.048224,0.049923,0.050693,0.053916,0.069023,0.069562,0.072542,0.077482,0.078484,0.086082,0.11007,0.11042,0.11807,0.12092,0.15714,0.16739,0.16816,0.17775,0.19135,0.19162,0.19275,0.20134,0.20142,0.20944,0.21259,0.26125,0.28464,0.28546,0.31353,0.32131,0.33356,0.33961,0.3432,0.3472,0.34851,0.35202,0.36632,0.36801,0.37149,0.37435,0.39631,0.42182,0.45558,0.46854,0.49635,0.5279,0.54131,0.54826,0.62554,0.63448,0.64105,0.65403,0.67047,0.68463,0.69606,0.69809,0.69936,0.71362,0.75041,0.75307,0.76716,0.78853,0.80007,0.80192,0.86332,0.86393,0.87503,0.89564,0.89923,0.91214,0.91507,0.93438,0.94577,0.96786,0.96832,0.9866,0.9882,0.98869,0.9957,0.99604,0.99768,0.99917,0.99948,0.99967,1,0.99999,0.99998,0.99963,0.99941,0.99934,0.99859,0.99825,0.99571,0.98907,0.98758,0.98716,0.98292,0.981,0.97217,0.95287,0.94595,0.93412,0.92952,0.91602,0.90161,0.9004,0.89945,0.89934,0.89487,0.89449,0.87996,0.87304,0.85965,0.85904,0.85533,0.83073,0.82999,0.8178,0.80361,0.77749,0.77399,0.76391,0.76164,0.75587,0.74613,0.73104,0.73063,0.69578,0.65538,0.65106,0.64626,0.64477,0.62022,0.60509,0.55404,0.55138,0.54603,0.53703,0.50392,0.47009,0.43406,0.42345,0.41718,0.40145,0.37056,0.35738,0.34067,0.31585,0.2953,0.29169,0.25471,0.25008,0.24841,0.24036,0.23721,0.21304,0.20321,0.20043,0.20015,0.19441,0.18685,0.18342,0.18191,0.15686,0.15683,0.13654,0.11587,0.099024,0.085289,0.079847,0.078469,0.075322,0.072658,0.066687,0.066054,0.055776,0.053404,0.048907,0.043771,0.040888,0.040572,0.038363,0.036941,0.033638,0.0292,0.028811,0.027048,0.024459,0.022518,0.022431,0.016755,0.01596,0.01559,0.014677,0.014221,0.013529,0.01249,0.012091,0.011554,0.010735,0.0097535,0.0088933,0.0088101,0.0078614,0.0072887,0.0068158,0.0058428,0.0054421,0.0053028,0.0048345,0.0048074,0.0046152,0.0045327,0.0035606,0.0033443,0.0032636,0.0029174,0.0027324,0.0027052,0.0023182,0.0017149,0.0015658,0.0014937,0.0013377,0.001325,0.0011692,0.0011532,0.00097979,0.00088955,0.0007314,0.00071847,0.00070653,0.00069995,0.00067881,0.00066202,0.00065197,0.00055444,0.00053584,0.00038644,0.00034589,0.00032126,0.00031198,0.00024412,0.00024307,0.00022402,0.00021561,0.00017768,0.00017659,0.00017403,0.00015048,0.00014451,0.00014245,0.00013634,0.00012881,0.00012206,0.00011868,8.9898e-05,8.9016e-05,7.6845e-05,6.1502e-05,4.9764e-05,3.694e-05,3.6783e-05,3.3058e-05,2.8878e-05,2.4128e-05,2.408e-05,2.262e-05,1.6817e-05,1.569e-05,1.5571e-05,1.0913e-05,1.0087e-05,9.6384e-06,8.3749e-06,7.2806e-06,5.6146e-06,5.3895e-06,4.4199e-06,2.8205e-06,2.8035e-06,2.7014e-06,2.5037e-06,2.3585e-06,2.1906e-06,2.0073e-06,8.7947e-07,7.0563e-07,5.0198e-07,3.8881e-07,3.8392e-07,3.729e-07,2.5381e-07,2.3187e-07,2.3014e-07,1.5853e-07,8.3712e-08,8.2015e-08,6.7797e-08,6.5172e-08,4.1909e-08,3.7003e-08,2.8159e-08,2.4401e-08,2.0816e-08,2.018e-08,1.6695e-08,1.6145e-08,1.589e-08,1.0292e-08,9.0307e-09,8.5462e-09,7.1409e-09,6.7468e-09,5.1964e-09,4.8948e-09,4.339e-09,3.2086e-09,3.1994e-09,2.7654e-09,2.6324e-09,2.6322e-09,1.9049e-09,1.8855e-09,1.6491e-09,1.431e-09,1.0486e-09,7.9097e-10,6.4535e-10,4.6605e-10,3.4417e-10,2.3161e-10,2.2789e-10,1.6765e-10,1.2456e-10,1.0447e-10,6.5028e-11,5.6539e-11,4.251e-11,3.5883e-11,2.5147e-11,2.4216e-11,2.2403e-11,1.8705e-11,1.2798e-11,8.6404e-12,7.009e-12,5.6834e-12,5.0929e-12,5.0148e-12,4.1074e-12,3.2585e-12,1.5974e-12,1.3193e-12,1.1871e-12,9.3954e-13,9.3803e-13,7.4443e-13,7.2328e-13,6.1796e-13,5.4442e-13,3.5466e-13,3.3325e-13,2.3791e-13,1.7357e-13,6.1304e-14,5.032e-14,4.5734e-14,3.5577e-14,2.8084e-14,2.5664e-14,2.143e-14,1.8821e-14,1.6016e-14,1.2257e-14,1.224e-14,7.5458e-15,6.6324e-15,6.456e-15,6.3639e-15,3.876e-15,3.8324e-15,3.6448e-15,3.5095e-15,3.1817e-15,2.7038e-15,2.3359e-15,1.2163e-15,2.973e-16,1.9452e-16,1.8734e-16,1.816e-16,1.642e-16,1.5524e-16,9.0934e-17,6.379e-17,4.9233e-17,4.2571e-17,3.1395e-17,2.4212e-17,2.3068e-17,1.5987e-17,1.2981e-17,1.0058e-17,6.6639e-18,3.8621e-18,3.7294e-18,3.0981e-18,2.7231e-18,2.5696e-18,1.3802e-18,1.1634e-18,5.3238e-19,4.281e-19,2.912e-19,2.3676e-19,2.2138e-19,1.5341e-19,1.4629e-19,1.3184e-19,1.0499e-19,6.79e-20 1,1.577e-05,1.9863e-05,2.0093e-05,2.1531e-05,2.2704e-05,2.4339e-05,2.7837e-05,3.8186e-05,4.6571e-05,4.8006e-05,5.613e-05,5.7574e-05,6.3673e-05,8.1174e-05,8.7545e-05,9.225e-05,0.00011554,0.00012006,0.00012527,0.00014439,0.0001466,0.00014788,0.00016464,0.00017537,0.00017573,0.00019822,0.0002004,0.00021154,0.00021305,0.00021453,0.00030838,0.00043294,0.00044627,0.00049241,0.00053733,0.00057482,0.00062246,0.00068248,0.00080137,0.00087479,0.0010076,0.0012013,0.0012208,0.0012633,0.0013038,0.0015345,0.0015349,0.0022462,0.0023095,0.0023454,0.0026221,0.0026436,0.0032804,0.003567,0.0036928,0.0039833,0.0041786,0.004534,0.0046497,0.0056327,0.0063295,0.0090536,0.0099652,0.010288,0.010889,0.012703,0.013107,0.013474,0.015325,0.017261,0.01803,0.018682,0.021221,0.025415,0.030593,0.034569,0.035456,0.044273,0.047722,0.049407,0.050171,0.053366,0.068349,0.068884,0.07184,0.076742,0.077736,0.085276,0.1091,0.10944,0.11704,0.11987,0.15586,0.16605,0.16682,0.17635,0.18988,0.19015,0.19128,0.19982,0.1999,0.20787,0.21101,0.25943,0.28273,0.28354,0.31151,0.31926,0.33147,0.33749,0.34108,0.34506,0.34637,0.34986,0.36413,0.3658,0.36927,0.37213,0.39403,0.41947,0.45316,0.4661,0.49386,0.52538,0.53877,0.54571,0.62297,0.63191,0.63848,0.65148,0.66793,0.6821,0.69355,0.69557,0.69685,0.71114,0.74799,0.75066,0.76479,0.78622,0.7978,0.79966,0.86133,0.86194,0.87311,0.89385,0.89747,0.91047,0.91343,0.93292,0.94442,0.9668,0.96727,0.9859,0.98755,0.98805,0.9953,0.99565,0.99738,0.99899,0.99934,0.99955,0.99999,1,1,0.99973,0.99954,0.99949,0.99881,0.99849,0.9961,0.98969,0.98823,0.98783,0.98369,0.98181,0.97314,0.95412,0.94728,0.93558,0.93102,0.91764,0.90335,0.90214,0.9012,0.90109,0.89665,0.89627,0.88184,0.87497,0.86165,0.86104,0.85735,0.83287,0.83213,0.82,0.80586,0.77983,0.77634,0.76628,0.76402,0.75826,0.74855,0.7335,0.73308,0.6983,0.65793,0.65361,0.64882,0.64733,0.62279,0.60766,0.55659,0.55393,0.54858,0.53957,0.50643,0.47254,0.43644,0.42581,0.41952,0.40375,0.37278,0.35956,0.34279,0.31789,0.29726,0.29363,0.2565,0.25185,0.25017,0.24209,0.23892,0.21463,0.20476,0.20196,0.20168,0.19591,0.18831,0.18486,0.18334,0.15814,0.15811,0.1377,0.11689,0.09993,0.086094,0.080611,0.079223,0.076051,0.073366,0.067347,0.06671,0.056347,0.053954,0.049418,0.044237,0.041328,0.041009,0.038781,0.037345,0.034012,0.029531,0.029138,0.027358,0.024743,0.022782,0.022694,0.016959,0.016155,0.015782,0.014858,0.014398,0.013699,0.012648,0.012244,0.011701,0.010873,0.0098801,0.0090099,0.0089257,0.0079658,0.0073863,0.0069076,0.0059228,0.0055171,0.005376,0.0049018,0.0048744,0.0046798,0.0045962,0.0036117,0.0033925,0.0033107,0.0029599,0.0027724,0.0027449,0.0023527,0.001741,0.0015898,0.0015167,0.0013585,0.0013456,0.0011876,0.0011713,0.00099537,0.0009038,0.00074327,0.00073015,0.00071803,0.00071135,0.00068989,0.00067284,0.00066263,0.00056361,0.00054473,0.00039299,0.00035179,0.00032677,0.00031733,0.00024838,0.00024731,0.00022795,0.0002194,0.00018083,0.00017972,0.00017713,0.00015317,0.00014711,0.00014501,0.0001388,0.00013114,0.00012427,0.00012084,9.1558e-05,9.066e-05,7.8276e-05,6.266e-05,5.0711e-05,3.7655e-05,3.7494e-05,3.37e-05,2.9443e-05,2.4604e-05,2.4555e-05,2.3068e-05,1.7155e-05,1.6006e-05,1.5884e-05,1.1136e-05,1.0294e-05,9.8367e-06,8.5482e-06,7.4322e-06,5.7329e-06,5.5032e-06,4.5139e-06,2.8816e-06,2.8642e-06,2.76e-06,2.5582e-06,2.4099e-06,2.2385e-06,2.0514e-06,8.9937e-07,7.2173e-07,5.1357e-07,3.9787e-07,3.9287e-07,3.816e-07,2.5981e-07,2.3737e-07,2.3559e-07,1.6234e-07,8.5763e-08,8.4025e-08,6.9468e-08,6.6781e-08,4.2957e-08,3.7932e-08,2.8871e-08,2.5021e-08,2.1348e-08,2.0696e-08,1.7124e-08,1.656e-08,1.6299e-08,1.056e-08,9.2667e-09,8.7699e-09,7.3287e-09,6.9245e-09,5.3342e-09,5.0249e-09,4.4546e-09,3.2948e-09,3.2854e-09,2.84e-09,2.7034e-09,2.7032e-09,1.9568e-09,1.9368e-09,1.6941e-09,1.4702e-09,1.0776e-09,8.1298e-10,6.6339e-10,4.7918e-10,3.5394e-10,2.3824e-10,2.3442e-10,1.7248e-10,1.2818e-10,1.0752e-10,6.6944e-11,5.8209e-11,4.3774e-11,3.6954e-11,2.5903e-11,2.4944e-11,2.3078e-11,1.9271e-11,1.3188e-11,8.9058e-12,7.2252e-12,5.8594e-12,5.251e-12,5.1705e-12,4.2354e-12,3.3606e-12,1.6481e-12,1.3613e-12,1.225e-12,9.6966e-13,9.6809e-13,7.6839e-13,7.4657e-13,6.3792e-13,5.6204e-13,3.6622e-13,3.4413e-13,2.4572e-13,1.7931e-13,6.3365e-14,5.2017e-14,4.7279e-14,3.6784e-14,2.904e-14,2.6539e-14,2.2163e-14,1.9466e-14,1.6566e-14,1.268e-14,1.2662e-14,7.8082e-15,6.8635e-15,6.681e-15,6.5858e-15,4.0122e-15,3.9671e-15,3.773e-15,3.633e-15,3.2939e-15,2.7993e-15,2.4186e-15,1.2598e-15,3.0815e-16,2.0166e-16,1.9422e-16,1.8827e-16,1.7024e-16,1.6096e-16,9.4308e-17,6.6169e-17,5.1075e-17,4.4168e-17,3.2577e-17,2.5127e-17,2.394e-17,1.6594e-17,1.3475e-17,1.0442e-17,6.92e-18,4.0116e-18,3.8738e-18,3.2183e-18,2.8289e-18,2.6695e-18,1.4343e-18,1.2091e-18,5.5349e-19,4.4512e-19,3.0283e-19,2.4624e-19,2.3025e-19,1.5958e-19,1.5218e-19,1.3715e-19,1.0924e-19,7.0659e-20 1,1.5567e-05,1.9609e-05,1.9836e-05,2.1257e-05,2.2416e-05,2.403e-05,2.7487e-05,3.7712e-05,4.5999e-05,4.7417e-05,5.5447e-05,5.6875e-05,6.2904e-05,8.0205e-05,8.6505e-05,9.1157e-05,0.00011419,0.00011866,0.00012381,0.00014272,0.0001449,0.00014617,0.00016275,0.00017336,0.00017372,0.00019597,0.00019813,0.00020915,0.00021064,0.00021211,0.00030497,0.00042826,0.00044145,0.00048713,0.0005316,0.00056871,0.00061588,0.00067531,0.00079305,0.00086576,0.00099731,0.0011892,0.0012085,0.0012506,0.0012907,0.0015193,0.0015197,0.0022246,0.0022874,0.0023229,0.0025972,0.0026186,0.0032499,0.003534,0.0036588,0.0039468,0.0041405,0.004493,0.0046077,0.0055828,0.006274,0.0089771,0.0098819,0.010202,0.010799,0.0126,0.013,0.013365,0.015203,0.017125,0.017889,0.018537,0.021059,0.025226,0.03037,0.034321,0.035204,0.043968,0.047398,0.049073,0.049832,0.053009,0.067913,0.068445,0.071386,0.076263,0.077251,0.084755,0.10846,0.10881,0.11637,0.11918,0.15503,0.16518,0.16595,0.17545,0.18892,0.18919,0.19032,0.19883,0.19891,0.20685,0.20999,0.25826,0.28149,0.2823,0.3102,0.31793,0.33011,0.33612,0.33969,0.34367,0.34497,0.34846,0.3627,0.36437,0.36784,0.37069,0.39254,0.41795,0.45159,0.46451,0.49224,0.52373,0.53712,0.54405,0.6213,0.63024,0.63681,0.64981,0.66627,0.68045,0.69191,0.69394,0.69521,0.70951,0.74642,0.74908,0.76324,0.78472,0.79631,0.79818,0.86003,0.86064,0.87185,0.89268,0.89631,0.90938,0.91235,0.93195,0.94353,0.9661,0.96658,0.98544,0.98711,0.98762,0.99503,0.99539,0.99717,0.99886,0.99924,0.99947,0.99998,1,1,0.99979,0.99962,0.99957,0.99894,0.99864,0.99634,0.99008,0.98865,0.98825,0.98418,0.98233,0.97376,0.95492,0.94813,0.93652,0.93199,0.91869,0.90447,0.90327,0.90233,0.90222,0.8978,0.89743,0.88306,0.87621,0.86295,0.86234,0.85867,0.83426,0.83353,0.82142,0.80732,0.78135,0.77786,0.76783,0.76556,0.75982,0.75012,0.73509,0.73468,0.69993,0.6596,0.65528,0.65049,0.649,0.62446,0.60934,0.55826,0.5556,0.55024,0.54123,0.50806,0.47414,0.43799,0.42735,0.42105,0.40525,0.37423,0.36098,0.34418,0.31922,0.29855,0.29491,0.25768,0.25301,0.25132,0.24322,0.24004,0.21568,0.20577,0.20296,0.20268,0.19689,0.18926,0.1858,0.18427,0.15898,0.15895,0.13846,0.11756,0.10052,0.086623,0.081113,0.079717,0.07653,0.073831,0.067781,0.06714,0.056722,0.054316,0.049754,0.044544,0.041617,0.041297,0.039055,0.037611,0.034257,0.029748,0.029352,0.027561,0.024929,0.022956,0.022867,0.017093,0.016284,0.015908,0.014978,0.014514,0.01381,0.012751,0.012345,0.011798,0.010964,0.0099634,0.0090866,0.0090017,0.0080345,0.0074505,0.0069681,0.0059754,0.0055664,0.0054243,0.0049462,0.0049185,0.0047224,0.0046381,0.0036453,0.0034243,0.0033418,0.002988,0.0027988,0.0027711,0.0023754,0.0017582,0.0016056,0.0015319,0.0013722,0.0013592,0.0011997,0.0011833,0.0010057,0.00091319,0.00075111,0.00073786,0.00072562,0.00071887,0.0006972,0.00067998,0.00066968,0.00056967,0.0005506,0.00039732,0.00035569,0.00033041,0.00032087,0.00025119,0.00025011,0.00023054,0.0002219,0.00018292,0.0001818,0.00017918,0.00015496,0.00014883,0.00014671,0.00014042,0.00013268,0.00012574,0.00012226,9.2656e-05,9.1748e-05,7.9222e-05,6.3427e-05,5.1338e-05,3.8127e-05,3.7965e-05,3.4126e-05,2.9817e-05,2.492e-05,2.487e-05,2.3364e-05,1.7378e-05,1.6215e-05,1.6092e-05,1.1284e-05,1.0431e-05,9.9681e-06,8.6631e-06,7.5327e-06,5.8113e-06,5.5786e-06,4.5762e-06,2.9221e-06,2.9045e-06,2.7988e-06,2.5943e-06,2.444e-06,2.2703e-06,2.0806e-06,9.1258e-07,7.3242e-07,5.2127e-07,4.0388e-07,3.9881e-07,3.8737e-07,2.6379e-07,2.4102e-07,2.3922e-07,1.6487e-07,8.7126e-08,8.5361e-08,7.058e-08,6.785e-08,4.3654e-08,3.855e-08,2.9345e-08,2.5434e-08,2.1701e-08,2.1039e-08,1.741e-08,1.6836e-08,1.6571e-08,1.0739e-08,9.4238e-09,8.9187e-09,7.4538e-09,7.0428e-09,5.426e-09,5.1115e-09,4.5316e-09,3.3522e-09,3.3426e-09,2.8897e-09,2.7508e-09,2.7506e-09,1.9913e-09,1.971e-09,1.7241e-09,1.4963e-09,1.0969e-09,8.2765e-10,6.7542e-10,4.8794e-10,3.6045e-10,2.4266e-10,2.3877e-10,1.7571e-10,1.306e-10,1.0955e-10,6.8222e-11,5.9324e-11,4.4617e-11,3.7668e-11,2.6408e-11,2.5431e-11,2.3528e-11,1.9648e-11,1.3448e-11,9.0831e-12,7.3696e-12,5.977e-12,5.3566e-12,5.2745e-12,4.321e-12,3.4288e-12,1.682e-12,1.3894e-12,1.2503e-12,9.898e-13,9.882e-13,7.8442e-13,7.6215e-13,6.5127e-13,5.7383e-13,3.7396e-13,3.5141e-13,2.5095e-13,1.8314e-13,6.4745e-14,5.3154e-14,4.8314e-14,3.7592e-14,2.9681e-14,2.7126e-14,2.2654e-14,1.9898e-14,1.6935e-14,1.2964e-14,1.2945e-14,7.9841e-15,7.0184e-15,6.8319e-15,6.7345e-15,4.1035e-15,4.0574e-15,3.859e-15,3.7158e-15,3.3691e-15,2.8634e-15,2.4741e-15,1.2889e-15,3.1544e-16,2.0645e-16,1.9884e-16,1.9275e-16,1.743e-16,1.648e-16,9.6574e-17,6.7766e-17,5.2313e-17,4.524e-17,3.3371e-17,2.5741e-17,2.4526e-17,1.7002e-17,1.3807e-17,1.0701e-17,7.0921e-18,4.112e-18,3.9709e-18,3.2991e-18,2.9001e-18,2.7368e-18,1.4707e-18,1.2399e-18,5.677e-19,4.5657e-19,3.1066e-19,2.5262e-19,2.3622e-19,1.6374e-19,1.5615e-19,1.4073e-19,1.121e-19,7.2517e-20 1,1.4145e-05,1.7836e-05,1.8044e-05,1.9342e-05,2.0401e-05,2.1877e-05,2.5039e-05,3.4402e-05,4.1999e-05,4.33e-05,5.0669e-05,5.198e-05,5.7516e-05,7.3419e-05,7.9214e-05,8.3494e-05,0.0001047,0.00010882,0.00011357,0.000131,0.00013302,0.00013419,0.00014949,0.00015928,0.00015961,0.00018016,0.00018215,0.00019234,0.00019372,0.00019507,0.00028098,0.00039526,0.0004075,0.00044989,0.00049118,0.00052566,0.0005695,0.00062476,0.00073431,0.00080202,0.0009246,0.0011035,0.0011216,0.0011609,0.0011983,0.0014118,0.0014122,0.0020718,0.0021305,0.0021638,0.002421,0.002441,0.0030333,0.0033002,0.0034175,0.0036882,0.0038703,0.0042019,0.0043099,0.0052282,0.0058799,0.0084327,0.0092886,0.0095916,0.010156,0.011863,0.012243,0.012589,0.014333,0.016158,0.016884,0.0175,0.0199,0.023868,0.028776,0.032552,0.033395,0.041783,0.04507,0.046677,0.047405,0.050453,0.064775,0.065287,0.068117,0.072814,0.073766,0.080999,0.1039,0.10423,0.11155,0.11427,0.14904,0.1589,0.15965,0.16889,0.18201,0.18227,0.18337,0.19166,0.19174,0.19949,0.20254,0.24972,0.27248,0.27327,0.30064,0.30824,0.32021,0.32612,0.32964,0.33355,0.33483,0.33827,0.35228,0.35393,0.35735,0.36016,0.38171,0.4068,0.44008,0.45288,0.48038,0.51166,0.52498,0.53188,0.60898,0.61793,0.62451,0.63754,0.65405,0.6683,0.67981,0.68185,0.68313,0.69753,0.73476,0.73746,0.75177,0.77354,0.78531,0.78721,0.85031,0.85094,0.86245,0.8839,0.88765,0.90118,0.90427,0.92468,0.93683,0.96077,0.96128,0.98181,0.98368,0.98426,0.99281,0.99324,0.99545,0.99769,0.99824,0.9986,0.99963,0.99973,0.99979,1,0.99997,0.99996,0.99967,0.99949,0.99787,0.99272,0.99148,0.99114,0.98755,0.9859,0.97813,0.96063,0.95424,0.94324,0.93892,0.92622,0.91255,0.91139,0.91049,0.91038,0.90612,0.90576,0.89186,0.88523,0.87234,0.87175,0.86817,0.84435,0.84363,0.83178,0.81795,0.79241,0.78898,0.77908,0.77685,0.77119,0.76161,0.74674,0.74633,0.7119,0.67179,0.66749,0.66272,0.66124,0.63676,0.62165,0.57052,0.56785,0.56248,0.55343,0.5201,0.48595,0.44948,0.43872,0.43236,0.41638,0.38496,0.37153,0.35447,0.3291,0.30806,0.30435,0.26638,0.26162,0.25989,0.25161,0.24837,0.22344,0.21329,0.21041,0.21012,0.20419,0.19637,0.19281,0.19125,0.16526,0.16523,0.14414,0.12258,0.10498,0.090584,0.084873,0.083426,0.080119,0.077319,0.071036,0.070371,0.059537,0.057033,0.052281,0.046849,0.043795,0.043461,0.041119,0.039611,0.036105,0.031387,0.030973,0.029097,0.026338,0.024268,0.024175,0.018109,0.017258,0.016862,0.015883,0.015395,0.014653,0.013537,0.013109,0.012532,0.011651,0.010595,0.0096684,0.0095787,0.0085559,0.0079379,0.0074272,0.0063753,0.0059416,0.0057908,0.0052835,0.0052541,0.0050459,0.0049564,0.0039012,0.003666,0.0035782,0.0032015,0.0030001,0.0029705,0.0025486,0.0018897,0.0017266,0.0016478,0.0014769,0.001463,0.0012922,0.0012746,0.0010842,0.00098508,0.00081109,0.00079686,0.00078371,0.00077646,0.00075318,0.00073467,0.0007236,0.00061606,0.00059554,0.00043048,0.0003856,0.00035832,0.00034803,0.00027279,0.00027162,0.00025047,0.00024113,0.00019896,0.00019775,0.00019491,0.00016868,0.00016204,0.00015974,0.00015293,0.00014454,0.00013701,0.00013324,0.00010111,0.00010012,8.6514e-05,6.9336e-05,5.6176e-05,4.1776e-05,4.16e-05,3.741e-05,3.2707e-05,2.7357e-05,2.7302e-05,2.5656e-05,1.9108e-05,1.7834e-05,1.7699e-05,1.243e-05,1.1494e-05,1.0986e-05,9.5537e-06,8.3119e-06,6.4193e-06,6.1633e-06,5.06e-06,3.2369e-06,3.2175e-06,3.1009e-06,2.8752e-06,2.7093e-06,2.5174e-06,2.3079e-06,1.0155e-06,8.1574e-07,5.8132e-07,4.5084e-07,4.452e-07,4.3248e-07,2.9493e-07,2.6956e-07,2.6755e-07,1.8465e-07,9.7802e-08,9.5828e-08,7.9287e-08,7.6232e-08,4.9123e-08,4.3398e-08,3.3067e-08,2.8674e-08,2.4479e-08,2.3735e-08,1.9653e-08,1.9008e-08,1.8709e-08,1.2142e-08,1.066e-08,1.0091e-08,8.4381e-09,7.9744e-09,6.149e-09,5.7937e-09,5.1385e-09,3.8049e-09,3.7941e-09,3.2815e-09,3.1242e-09,3.124e-09,2.264e-09,2.241e-09,1.9611e-09,1.7028e-09,1.2495e-09,9.4362e-10,7.7055e-10,5.5722e-10,4.1202e-10,2.7772e-10,2.7328e-10,2.0129e-10,1.4974e-10,1.2568e-10,7.8376e-11,6.8182e-11,5.1322e-11,4.3351e-11,3.0423e-11,2.9301e-11,2.7115e-11,2.2655e-11,1.5523e-11,1.0496e-11,8.5214e-12,6.9152e-12,6.1993e-12,6.1046e-12,5.0038e-12,3.9731e-12,1.9529e-12,1.6141e-12,1.4529e-12,1.1509e-12,1.149e-12,9.1266e-13,8.8682e-13,7.5813e-13,6.6821e-13,4.3598e-13,4.0976e-13,2.9288e-13,2.1392e-13,7.5832e-14,6.2288e-14,5.663e-14,4.4092e-14,3.4834e-14,3.1843e-14,2.6605e-14,2.3377e-14,1.9904e-14,1.5246e-14,1.5225e-14,9.4017e-15,8.2671e-15,8.048e-15,7.9336e-15,4.8402e-15,4.7859e-15,4.5524e-15,4.384e-15,3.9758e-15,3.3804e-15,2.9219e-15,1.5247e-15,3.7441e-16,2.453e-16,2.3627e-16,2.2906e-16,2.0717e-16,1.9591e-16,1.1495e-16,8.0729e-17,6.2357e-17,5.3945e-17,3.9821e-17,3.0735e-17,2.9287e-17,2.032e-17,1.651e-17,1.2803e-17,8.4931e-18,4.9304e-18,4.7616e-18,3.9577e-18,3.48e-18,3.2845e-18,1.7675e-18,1.4907e-18,6.8372e-19,5.5014e-19,3.7464e-19,3.0479e-19,2.8505e-19,1.9774e-19,1.8859e-19,1.7001e-19,1.3549e-19,8.7731e-20 1,1.3677e-05,1.7253e-05,1.7453e-05,1.8711e-05,1.9737e-05,2.1168e-05,2.4232e-05,3.331e-05,4.0679e-05,4.1941e-05,4.9091e-05,5.0363e-05,5.5736e-05,7.1175e-05,7.6802e-05,8.0959e-05,0.00010156,0.00010556,0.00011018,0.00012712,0.00012908,0.00013022,0.00014509,0.00015461,0.00015493,0.00017491,0.00017685,0.00018676,0.0001881,0.00018942,0.00027301,0.00038428,0.0003962,0.0004375,0.00047773,0.00051132,0.00055405,0.00060791,0.00071473,0.00078075,0.00090033,0.0010749,0.0010925,0.0011309,0.0011674,0.0013759,0.0013762,0.0020206,0.002078,0.0021106,0.0023619,0.0023814,0.0029607,0.0032218,0.0033365,0.0036014,0.0037796,0.0041041,0.0042098,0.005109,0.0057472,0.0082492,0.0090885,0.0093858,0.0099396,0.011614,0.011987,0.012326,0.014038,0.015831,0.016544,0.017149,0.019507,0.023409,0.028236,0.031951,0.032781,0.04104,0.044278,0.045861,0.046578,0.049583,0.063705,0.06421,0.067002,0.071637,0.072576,0.079716,0.10234,0.10267,0.1099,0.11259,0.14698,0.15675,0.15749,0.16664,0.17963,0.17989,0.18098,0.1892,0.18927,0.19695,0.19998,0.24677,0.26937,0.27015,0.29734,0.30489,0.31678,0.32266,0.32616,0.33005,0.33132,0.33474,0.34868,0.35032,0.35371,0.35651,0.37796,0.40293,0.43608,0.44883,0.47625,0.50746,0.52075,0.52764,0.60467,0.61362,0.6202,0.63324,0.64976,0.66403,0.67556,0.67761,0.67889,0.69332,0.73065,0.73336,0.74773,0.76959,0.78142,0.78333,0.84685,0.84749,0.8591,0.88076,0.88455,0.89824,0.90136,0.92206,0.9344,0.95881,0.95933,0.98045,0.98239,0.98299,0.99194,0.9924,0.99475,0.99718,0.99779,0.9982,0.99941,0.99954,0.99962,0.99997,1,1,0.99983,0.99969,0.9983,0.99354,0.99238,0.99205,0.98864,0.98705,0.97957,0.96255,0.9563,0.94551,0.94127,0.92877,0.91531,0.91416,0.91327,0.91317,0.90897,0.90861,0.89488,0.88832,0.87556,0.87498,0.87143,0.84782,0.84711,0.83536,0.82163,0.79624,0.79283,0.78299,0.78077,0.77513,0.7656,0.75079,0.75039,0.71606,0.67605,0.67176,0.66699,0.66551,0.64106,0.62596,0.57482,0.57215,0.56677,0.55772,0.52434,0.4901,0.45353,0.44273,0.43635,0.42031,0.38875,0.37525,0.35811,0.3326,0.31143,0.3077,0.26948,0.26468,0.26294,0.2546,0.25133,0.2262,0.21597,0.21307,0.21277,0.20678,0.1989,0.19531,0.19373,0.1675,0.16747,0.14616,0.12438,0.10657,0.092004,0.086221,0.084756,0.081407,0.078571,0.072205,0.071531,0.06055,0.05801,0.053191,0.047679,0.044579,0.04424,0.041864,0.040332,0.036772,0.031979,0.031558,0.029651,0.026847,0.024743,0.024648,0.018477,0.01761,0.017207,0.016211,0.015714,0.014958,0.013822,0.013385,0.012798,0.011901,0.010824,0.0098798,0.0097884,0.0087454,0.0081151,0.0075942,0.0065209,0.0060783,0.0059243,0.0054064,0.0053764,0.0051638,0.0050724,0.0039946,0.0037543,0.0036646,0.0032795,0.0030736,0.0030434,0.002612,0.0019379,0.0017709,0.0016902,0.0015153,0.001501,0.0013261,0.0013081,0.0011131,0.0010115,0.00083312,0.00081852,0.00080505,0.00079761,0.00077374,0.00075477,0.00074341,0.00063312,0.00061207,0.00044269,0.00039661,0.00036861,0.00035804,0.00028075,0.00027955,0.00025782,0.00024822,0.00020488,0.00020363,0.00020071,0.00017375,0.00016692,0.00016456,0.00015755,0.00014892,0.00014118,0.0001373,0.00010424,0.00010322,8.9214e-05,7.1526e-05,5.797e-05,4.3131e-05,4.2948e-05,3.863e-05,3.3781e-05,2.8262e-05,2.8206e-05,2.6508e-05,1.9751e-05,1.8437e-05,1.8297e-05,1.2857e-05,1.1891e-05,1.1366e-05,9.8856e-06,8.6025e-06,6.6462e-06,6.3816e-06,5.2407e-06,3.3546e-06,3.3345e-06,3.2139e-06,2.9802e-06,2.8085e-06,2.6099e-06,2.393e-06,1.0542e-06,8.4701e-07,6.0388e-07,4.6849e-07,4.6264e-07,4.4944e-07,3.0665e-07,2.803e-07,2.7822e-07,1.921e-07,1.0183e-07,9.9778e-08,8.2575e-08,7.9397e-08,5.119e-08,4.5231e-08,3.4475e-08,2.99e-08,2.5531e-08,2.4755e-08,2.0502e-08,1.983e-08,1.9519e-08,1.2674e-08,1.1129e-08,1.0535e-08,8.8117e-09,8.3281e-09,6.4236e-09,6.0529e-09,5.3691e-09,3.977e-09,3.9657e-09,3.4305e-09,3.2663e-09,3.2661e-09,2.3678e-09,2.3438e-09,2.0514e-09,1.7815e-09,1.3076e-09,9.8785e-10,8.0685e-10,5.8368e-10,4.3173e-10,2.9112e-10,2.8647e-10,2.1108e-10,1.5707e-10,1.3185e-10,8.2269e-11,7.1579e-11,5.3895e-11,4.5532e-11,3.1965e-11,3.0787e-11,2.8493e-11,2.3811e-11,1.6321e-11,1.104e-11,8.9648e-12,7.2766e-12,6.524e-12,6.4244e-12,5.2669e-12,4.1831e-12,2.0575e-12,1.7008e-12,1.5311e-12,1.2132e-12,1.2112e-12,9.6225e-13,9.3503e-13,7.9946e-13,7.0473e-13,4.5999e-13,4.3235e-13,3.0913e-13,2.2585e-13,8.0138e-14,6.5837e-14,5.9862e-14,4.6619e-14,3.6838e-14,3.3677e-14,2.8143e-14,2.4731e-14,2.1059e-14,1.6136e-14,1.6113e-14,9.9542e-15,8.754e-15,8.5222e-15,8.4012e-15,5.1276e-15,5.0702e-15,4.823e-15,4.6447e-15,4.2126e-15,3.5823e-15,3.0968e-15,1.6169e-15,3.9752e-16,2.6053e-16,2.5095e-16,2.433e-16,2.2007e-16,2.0811e-16,1.2217e-16,8.5822e-17,6.6305e-17,5.7367e-17,4.2357e-17,3.27e-17,3.116e-17,2.1627e-17,1.7574e-17,1.3631e-17,9.0454e-18,5.2534e-18,5.0736e-18,4.2177e-18,3.709e-18,3.5007e-18,1.8848e-18,1.5898e-18,7.2963e-19,5.8719e-19,3.9999e-19,3.2546e-19,3.044e-19,2.1123e-19,2.0146e-19,1.8162e-19,1.4477e-19,9.377e-20 1,1.3558e-05,1.7103e-05,1.7303e-05,1.855e-05,1.9568e-05,2.0987e-05,2.4026e-05,3.3031e-05,4.0341e-05,4.1593e-05,4.8687e-05,4.9949e-05,5.528e-05,7.06e-05,7.6184e-05,8.0309e-05,0.00010075,0.00010473,0.00010931,0.00012612,0.00012807,0.0001292,0.00014396,0.00015341,0.00015373,0.00017357,0.00017549,0.00018533,0.00018666,0.00018797,0.00027097,0.00038146,0.0003933,0.00043432,0.00047427,0.00050764,0.00055009,0.00060359,0.0007097,0.00077529,0.00089409,0.0010676,0.0010851,0.0011232,0.0011595,0.0013666,0.001367,0.0020074,0.0020645,0.0020969,0.0023467,0.0023661,0.002942,0.0032016,0.0033156,0.003579,0.0037562,0.0040789,0.0041841,0.0050783,0.0057131,0.008202,0.009037,0.0093327,0.0098838,0.01155,0.011921,0.012259,0.013962,0.015747,0.016457,0.017059,0.019406,0.02329,0.028096,0.031795,0.032622,0.040848,0.044074,0.04565,0.046365,0.049358,0.063428,0.063931,0.066714,0.071332,0.072268,0.079384,0.10193,0.10226,0.10947,0.11215,0.14645,0.15619,0.15692,0.16605,0.17901,0.17928,0.18036,0.18856,0.18863,0.1963,0.19932,0.24601,0.26856,0.26934,0.29648,0.30402,0.31589,0.32176,0.32525,0.32914,0.33041,0.33382,0.34774,0.34938,0.35277,0.35556,0.37698,0.40192,0.43504,0.44778,0.47517,0.50636,0.51965,0.52653,0.60354,0.6125,0.61908,0.63211,0.64864,0.66291,0.67445,0.6765,0.67778,0.69221,0.72958,0.73229,0.74667,0.76855,0.7804,0.78231,0.84595,0.84658,0.85822,0.87994,0.88374,0.89747,0.9006,0.92137,0.93376,0.9583,0.95882,0.98009,0.98205,0.98265,0.9917,0.99217,0.99455,0.99704,0.99766,0.99809,0.99934,0.99949,0.99957,0.99996,1,1,0.99986,0.99974,0.99841,0.99375,0.9926,0.99228,0.98891,0.98735,0.97994,0.96304,0.95683,0.9461,0.94188,0.92943,0.91602,0.91488,0.91399,0.91389,0.9097,0.90934,0.89566,0.88912,0.8764,0.87582,0.87228,0.84873,0.84802,0.83629,0.82258,0.79724,0.79383,0.784,0.78179,0.77615,0.76663,0.75185,0.75144,0.71715,0.67716,0.67287,0.66811,0.66662,0.64218,0.62708,0.57594,0.57327,0.56789,0.55883,0.52544,0.49119,0.45458,0.44378,0.43739,0.42133,0.38974,0.37623,0.35906,0.33352,0.31231,0.30858,0.27029,0.26548,0.26374,0.25538,0.2521,0.22693,0.21667,0.21376,0.21347,0.20747,0.19956,0.19597,0.19438,0.16809,0.16806,0.1467,0.12485,0.10699,0.092377,0.086576,0.085106,0.081746,0.0789,0.072513,0.071836,0.060816,0.058267,0.05343,0.047897,0.044786,0.044445,0.04206,0.040522,0.036947,0.032135,0.031712,0.029798,0.026982,0.024868,0.024773,0.018574,0.017704,0.017299,0.016297,0.015798,0.015039,0.013897,0.013459,0.012868,0.011967,0.010885,0.0099356,0.0098438,0.0087955,0.008162,0.0076383,0.0065594,0.0061144,0.0059596,0.0054389,0.0054088,0.0051949,0.0051031,0.0040193,0.0037776,0.0036874,0.0033002,0.003093,0.0030626,0.0026287,0.0019506,0.0017827,0.0017014,0.0015254,0.0015111,0.001335,0.001317,0.0011207,0.0010185,0.00083895,0.00082427,0.0008107,0.00080322,0.00077919,0.00076009,0.00074866,0.00063764,0.00061645,0.00044592,0.00039953,0.00037133,0.0003607,0.00028287,0.00028166,0.00025977,0.0002501,0.00020645,0.0002052,0.00020226,0.0001751,0.00016822,0.00016584,0.00015878,0.00015009,0.00014228,0.00013838,0.00010507,0.00010405,8.9931e-05,7.2108e-05,5.8447e-05,4.3491e-05,4.3307e-05,3.8954e-05,3.4066e-05,2.8503e-05,2.8446e-05,2.6735e-05,1.9922e-05,1.8597e-05,1.8457e-05,1.2971e-05,1.1996e-05,1.1467e-05,9.9741e-06,8.6799e-06,6.7067e-06,6.4397e-06,5.2888e-06,3.386e-06,3.3657e-06,3.244e-06,3.0082e-06,2.8349e-06,2.6345e-06,2.4156e-06,1.0645e-06,8.5536e-07,6.099e-07,4.7321e-07,4.673e-07,4.5397e-07,3.0978e-07,2.8317e-07,2.8107e-07,1.9409e-07,1.0291e-07,1.0083e-07,8.3454e-08,8.0243e-08,5.1743e-08,4.5721e-08,3.4852e-08,3.0228e-08,2.5812e-08,2.5028e-08,2.073e-08,2.0051e-08,1.9736e-08,1.2817e-08,1.1255e-08,1.0654e-08,8.9118e-09,8.4228e-09,6.4972e-09,6.1223e-09,5.4309e-09,4.0231e-09,4.0117e-09,3.4705e-09,3.3044e-09,3.3042e-09,2.3957e-09,2.3714e-09,2.0756e-09,1.8025e-09,1.3232e-09,9.9972e-10,8.1659e-10,5.9078e-10,4.3702e-10,2.9472e-10,2.9002e-10,2.137e-10,1.5904e-10,1.3351e-10,8.3315e-11,7.2492e-11,5.4587e-11,4.6118e-11,3.238e-11,3.1187e-11,2.8863e-11,2.4122e-11,1.6536e-11,1.1187e-11,9.0842e-12,7.3739e-12,6.6114e-12,6.5105e-12,5.3378e-12,4.2396e-12,2.0857e-12,1.7242e-12,1.5522e-12,1.2299e-12,1.228e-12,9.7562e-13,9.4803e-13,8.1061e-13,7.1457e-13,4.6646e-13,4.3844e-13,3.1351e-13,2.2907e-13,8.1301e-14,6.6795e-14,6.0735e-14,4.7301e-14,3.7379e-14,3.4173e-14,2.8558e-14,2.5096e-14,2.1372e-14,1.6376e-14,1.6353e-14,1.0104e-14,8.8856e-15,8.6504e-15,8.5276e-15,5.2054e-15,5.1471e-15,4.8962e-15,4.7153e-15,4.2767e-15,3.6369e-15,3.1441e-15,1.6418e-15,4.0377e-16,2.6466e-16,2.5493e-16,2.4715e-16,2.2357e-16,2.1142e-16,1.2412e-16,8.7202e-17,6.7376e-17,5.8295e-17,4.3045e-17,3.3232e-17,3.1668e-17,2.1981e-17,1.7863e-17,1.3855e-17,9.1953e-18,5.341e-18,5.1583e-18,4.2882e-18,3.7711e-18,3.5594e-18,1.9167e-18,1.6167e-18,7.4211e-19,5.9725e-19,4.0688e-19,3.3108e-19,3.0966e-19,2.1489e-19,2.0496e-19,1.8478e-19,1.4729e-19,9.5413e-20 1,1.2517e-05,1.5804e-05,1.5989e-05,1.7145e-05,1.809e-05,1.9406e-05,2.2228e-05,3.0595e-05,3.7394e-05,3.8559e-05,4.5161e-05,4.6337e-05,5.1302e-05,6.5581e-05,7.0789e-05,7.4637e-05,9.3721e-05,9.7432e-05,0.00010171,0.00011742,0.00011924,0.0001203,0.0001341,0.00014294,0.00014324,0.0001618,0.0001636,0.00017281,0.00017406,0.00017528,0.00025306,0.00035676,0.00036789,0.00040642,0.00044398,0.00047536,0.00051528,0.00056563,0.00066554,0.00072734,0.00083932,0.001003,0.0010195,0.0010555,0.0010897,0.0012854,0.0012857,0.0018915,0.0019456,0.0019762,0.0022129,0.0022313,0.0027773,0.0030236,0.0031318,0.0033819,0.0035502,0.0038569,0.0039568,0.0048072,0.0054114,0.0077839,0.0085809,0.0088633,0.0093896,0.010982,0.011337,0.01166,0.01329,0.014999,0.015679,0.016256,0.018507,0.022236,0.026856,0.030416,0.031212,0.03914,0.042252,0.043774,0.044464,0.047354,0.060961,0.061448,0.064142,0.068616,0.069523,0.076421,0.098315,0.098635,0.10565,0.10826,0.14168,0.15118,0.1519,0.16081,0.17348,0.17374,0.1748,0.18282,0.1829,0.1904,0.19335,0.23914,0.26129,0.26206,0.28876,0.29618,0.30788,0.31366,0.3171,0.32094,0.32219,0.32555,0.33928,0.3409,0.34425,0.34701,0.36817,0.39283,0.42563,0.43826,0.46545,0.49644,0.50966,0.51652,0.59334,0.60229,0.60887,0.62191,0.63847,0.65278,0.66435,0.66641,0.6677,0.6822,0.71979,0.72252,0.73702,0.75912,0.7711,0.77303,0.83763,0.83828,0.85015,0.87235,0.87625,0.89034,0.89356,0.91499,0.92783,0.95346,0.95401,0.97665,0.97877,0.97942,0.98941,0.98994,0.99267,0.99561,0.99638,0.99691,0.99859,0.99881,0.99894,0.99967,0.99983,0.99986,1,0.99998,0.99922,0.99549,0.9945,0.99422,0.99126,0.98986,0.98313,0.96736,0.96149,0.95128,0.94725,0.93531,0.92237,0.92127,0.92041,0.92031,0.91626,0.91591,0.90264,0.89628,0.88388,0.88332,0.87987,0.85683,0.85613,0.84463,0.83116,0.80621,0.80285,0.79315,0.79096,0.7854,0.77599,0.76136,0.76096,0.72696,0.6872,0.68293,0.67819,0.67671,0.65234,0.63727,0.58613,0.58346,0.57807,0.56899,0.5355,0.50108,0.46423,0.45335,0.4469,0.4307,0.3988,0.38513,0.36777,0.34189,0.32039,0.3166,0.27771,0.27282,0.27105,0.26254,0.25921,0.23357,0.22311,0.22015,0.21985,0.21372,0.20565,0.20199,0.20037,0.1735,0.17347,0.15159,0.12919,0.11085,0.095821,0.089848,0.088334,0.084872,0.081939,0.075353,0.074655,0.063279,0.060645,0.055644,0.04992,0.046698,0.046346,0.043874,0.04228,0.038574,0.03358,0.033142,0.031153,0.028226,0.026029,0.02593,0.019476,0.018568,0.018146,0.017101,0.01658,0.015788,0.014596,0.014138,0.013521,0.01258,0.011448,0.010455,0.010359,0.0092618,0.0085981,0.0080494,0.006918,0.0064511,0.0062887,0.0057419,0.0057103,0.0054857,0.0053892,0.0042498,0.0039955,0.0039006,0.0034929,0.0032747,0.0032427,0.0027854,0.0020698,0.0018924,0.0018066,0.0016205,0.0016054,0.0014192,0.0014001,0.0011923,0.001084,0.0008937,0.00087813,0.00086374,0.0008558,0.00083032,0.00081005,0.00079792,0.00068008,0.00065758,0.00047634,0.00042699,0.00039697,0.00038565,0.00030274,0.00030145,0.00027812,0.00026781,0.00022124,0.0002199,0.00021677,0.00018777,0.00018042,0.00017788,0.00017034,0.00016105,0.00015271,0.00014854,0.0001129,0.00011181,9.6695e-05,7.7598e-05,6.2947e-05,4.6892e-05,4.6695e-05,4.2018e-05,3.6764e-05,3.078e-05,3.0719e-05,2.8878e-05,2.1542e-05,2.0114e-05,1.9963e-05,1.4047e-05,1.2995e-05,1.2424e-05,1.0812e-05,9.4135e-06,7.28e-06,6.9912e-06,5.7456e-06,3.684e-06,3.662e-06,3.53e-06,3.2743e-06,3.0863e-06,2.8688e-06,2.6312e-06,1.1626e-06,9.3483e-07,6.6728e-07,5.1814e-07,5.1169e-07,4.9714e-07,3.3964e-07,3.1055e-07,3.0825e-07,2.131e-07,1.132e-07,1.1093e-07,9.186e-08,8.8336e-08,5.7035e-08,5.0415e-08,3.846e-08,3.3371e-08,2.8509e-08,2.7646e-08,2.291e-08,2.2161e-08,2.1814e-08,1.4184e-08,1.2459e-08,1.1797e-08,9.8723e-09,9.332e-09,7.2037e-09,6.7892e-09,6.0244e-09,4.4664e-09,4.4538e-09,3.8544e-09,3.6704e-09,3.6702e-09,2.6634e-09,2.6364e-09,2.3084e-09,2.0055e-09,1.4734e-09,1.114e-09,9.1041e-10,6.5921e-10,4.8802e-10,3.2944e-10,3.242e-10,2.3908e-10,1.7806e-10,1.4954e-10,9.3427e-11,8.1318e-11,6.1275e-11,5.1791e-11,3.6394e-11,3.5056e-11,3.245e-11,2.7131e-11,1.8616e-11,1.2606e-11,1.0241e-11,8.3173e-12,7.4592e-12,7.3456e-12,6.0253e-12,4.7882e-12,2.3595e-12,1.9514e-12,1.7571e-12,1.393e-12,1.3908e-12,1.1056e-12,1.0744e-12,9.1897e-13,8.1033e-13,5.2948e-13,4.9774e-13,3.5617e-13,2.6043e-13,9.2639e-14,7.6143e-14,6.9249e-14,5.3961e-14,4.2664e-14,3.9012e-14,3.2615e-14,2.8669e-14,2.4422e-14,1.8724e-14,1.8697e-14,1.1564e-14,1.0173e-14,9.9039e-15,9.7636e-15,5.966e-15,5.8993e-15,5.6123e-15,5.4054e-15,4.9036e-15,4.1714e-15,3.6073e-15,1.8862e-15,4.6519e-16,3.0517e-16,2.9397e-16,2.8503e-16,2.5787e-16,2.4389e-16,1.4334e-16,1.0077e-16,7.7899e-17,6.7419e-17,4.9812e-17,3.8476e-17,3.6668e-17,2.5469e-17,2.0706e-17,1.6068e-17,1.0672e-17,6.2053e-18,5.9934e-18,4.9842e-18,4.3842e-18,4.1386e-18,2.2311e-18,1.8826e-18,8.6538e-19,6.9674e-19,4.7499e-19,3.8664e-19,3.6167e-19,2.5115e-19,2.3956e-19,2.1602e-19,1.7226e-19,1.1168e-19 1,1.2162e-05,1.536e-05,1.554e-05,1.6666e-05,1.7585e-05,1.8866e-05,2.1613e-05,2.9761e-05,3.6384e-05,3.7519e-05,4.3954e-05,4.5099e-05,4.9939e-05,6.3859e-05,6.8938e-05,7.2691e-05,9.1306e-05,9.4927e-05,9.9101e-05,0.00011443,0.00011621,0.00011724,0.00013071,0.00013934,0.00013963,0.00015776,0.00015951,0.00016851,0.00016972,0.00017092,0.0002469,0.00034825,0.00035912,0.0003968,0.00043353,0.00046422,0.00050327,0.00055252,0.00065029,0.00071077,0.00082039,0.00098066,0.00099682,0.001032,0.0010656,0.0012573,0.0012576,0.0018513,0.0019043,0.0019344,0.0021665,0.0021845,0.0027201,0.0029618,0.003068,0.0033135,0.0034787,0.0037797,0.0038778,0.0047129,0.0053065,0.0076382,0.0084219,0.0086996,0.0092173,0.010784,0.011133,0.011451,0.013055,0.014738,0.015408,0.015976,0.018193,0.021867,0.026422,0.029933,0.030718,0.038541,0.041613,0.043115,0.043796,0.04665,0.060092,0.060574,0.063237,0.067659,0.068556,0.075378,0.097039,0.097356,0.1043,0.10688,0.13999,0.14941,0.15012,0.15896,0.17153,0.17178,0.17283,0.18079,0.18086,0.1883,0.19124,0.23669,0.25871,0.25947,0.28601,0.29339,0.30502,0.31078,0.3142,0.31801,0.31926,0.32261,0.33627,0.33788,0.34121,0.34396,0.36502,0.38959,0.42227,0.43486,0.46197,0.49289,0.50608,0.51292,0.58967,0.59862,0.6052,0.61824,0.63481,0.64912,0.66071,0.66277,0.66406,0.67858,0.71625,0.71899,0.73352,0.7557,0.76772,0.76966,0.8346,0.83525,0.8472,0.86958,0.87351,0.88773,0.89098,0.91264,0.92564,0.95167,0.95223,0.97534,0.97752,0.97819,0.98852,0.98906,0.99192,0.99503,0.99584,0.99641,0.99825,0.99849,0.99864,0.99949,0.99969,0.99974,0.99998,1,0.99944,0.99604,0.99512,0.99485,0.99204,0.9907,0.98421,0.96885,0.9631,0.95308,0.94912,0.93736,0.9246,0.92352,0.92267,0.92257,0.91856,0.91822,0.9051,0.8988,0.88653,0.88597,0.88255,0.8597,0.85901,0.84759,0.83422,0.80941,0.80606,0.79641,0.79424,0.7887,0.77933,0.76476,0.76436,0.73047,0.6908,0.68654,0.6818,0.68033,0.65599,0.64094,0.5898,0.58713,0.58174,0.57266,0.53912,0.50465,0.46772,0.4568,0.45034,0.43409,0.40208,0.38836,0.37092,0.34493,0.32333,0.31952,0.28041,0.27549,0.27371,0.26515,0.2618,0.23599,0.22546,0.22247,0.22217,0.216,0.20788,0.20418,0.20255,0.17547,0.17544,0.15338,0.13078,0.11226,0.097084,0.091049,0.089519,0.08602,0.083055,0.076397,0.075691,0.064184,0.06152,0.056459,0.050665,0.047403,0.047046,0.044543,0.042929,0.039174,0.034114,0.033669,0.031653,0.028686,0.026458,0.026357,0.019809,0.018888,0.018459,0.017399,0.01687,0.016066,0.014855,0.01439,0.013764,0.012807,0.011657,0.010648,0.01055,0.0094348,0.0087601,0.008202,0.0070513,0.0065763,0.006411,0.0058546,0.0058224,0.0055938,0.0054956,0.0043356,0.0040767,0.00398,0.0035647,0.0033424,0.0033098,0.0028438,0.0021144,0.0019334,0.0018459,0.0016561,0.0016406,0.0014506,0.0014311,0.0012191,0.0011085,0.0009142,0.00089829,0.0008836,0.00087549,0.00084946,0.00082876,0.00081637,0.00069598,0.00067299,0.00048775,0.00043729,0.0004066,0.00039501,0.00031021,0.00030889,0.00028502,0.00027447,0.00022681,0.00022543,0.00022222,0.00019254,0.00018501,0.00018241,0.00017469,0.00016518,0.00015663,0.00015236,0.00011585,0.00011473,9.9244e-05,7.9668e-05,6.4646e-05,4.8177e-05,4.7974e-05,4.3175e-05,3.7783e-05,3.1641e-05,3.1579e-05,2.9688e-05,2.2155e-05,2.0689e-05,2.0533e-05,1.4455e-05,1.3374e-05,1.2786e-05,1.1129e-05,9.6916e-06,7.4975e-06,7.2005e-06,5.919e-06,3.7973e-06,3.7746e-06,3.6387e-06,3.3754e-06,3.1818e-06,2.9579e-06,2.7132e-06,1.1999e-06,9.6512e-07,6.8917e-07,5.3529e-07,5.2863e-07,5.1362e-07,3.5105e-07,3.2102e-07,3.1864e-07,2.2037e-07,1.1715e-07,1.1479e-07,9.5081e-08,9.1437e-08,5.9064e-08,5.2216e-08,3.9845e-08,3.4577e-08,2.9544e-08,2.8651e-08,2.3747e-08,2.2972e-08,2.2613e-08,1.4709e-08,1.2923e-08,1.2236e-08,1.0242e-08,9.6819e-09,7.4757e-09,7.046e-09,6.253e-09,4.6373e-09,4.6242e-09,4.0024e-09,3.8116e-09,3.8113e-09,2.7666e-09,2.7386e-09,2.3982e-09,2.0838e-09,1.5314e-09,1.1581e-09,9.4668e-10,6.8568e-10,5.0775e-10,3.4289e-10,3.3744e-10,2.4891e-10,1.8543e-10,1.5576e-10,9.7351e-11,8.4744e-11,6.3873e-11,5.3994e-11,3.7954e-11,3.656e-11,3.3845e-11,2.8301e-11,1.9425e-11,1.3158e-11,1.0692e-11,8.6848e-12,7.7895e-12,7.671e-12,6.2933e-12,5.0021e-12,2.4663e-12,2.0401e-12,1.8372e-12,1.4568e-12,1.4544e-12,1.1564e-12,1.1238e-12,9.6134e-13,8.4778e-13,5.5414e-13,5.2094e-13,3.7288e-13,2.7271e-13,9.7088e-14,7.9812e-14,7.259e-14,5.6576e-14,4.4739e-14,4.0912e-14,3.4208e-14,3.0073e-14,2.5621e-14,1.9647e-14,1.9619e-14,1.2139e-14,1.0679e-14,1.0397e-14,1.025e-14,6.2656e-15,6.1956e-15,5.8945e-15,5.6772e-15,5.1506e-15,4.3821e-15,3.7898e-15,1.9826e-15,4.8947e-16,3.2119e-16,3.0942e-16,3.0001e-16,2.7145e-16,2.5674e-16,1.5094e-16,1.0615e-16,8.2068e-17,7.1035e-17,5.2494e-17,4.0555e-17,3.8651e-17,2.6854e-17,2.1834e-17,1.6947e-17,1.1259e-17,6.5489e-18,6.3254e-18,5.261e-18,4.6281e-18,4.369e-18,2.3563e-18,1.9884e-18,9.145e-19,7.364e-19,5.0215e-19,4.0881e-19,3.8242e-19,2.6563e-19,2.5338e-19,2.285e-19,1.8224e-19,1.1818e-19 1,1.0364e-05,1.311e-05,1.3265e-05,1.4233e-05,1.5024e-05,1.6127e-05,1.8492e-05,2.5523e-05,3.125e-05,3.2232e-05,3.7804e-05,3.8797e-05,4.2994e-05,5.5081e-05,5.9496e-05,6.2761e-05,7.8972e-05,8.2128e-05,8.5768e-05,9.9148e-05,0.0001007,0.0001016,0.00011337,0.00012092,0.00012117,0.00013704,0.00013857,0.00014645,0.00014752,0.00014856,0.00021525,0.00030448,0.00031407,0.00034731,0.00037974,0.00040686,0.00044139,0.00048498,0.0005716,0.00062525,0.0007226,0.00086515,0.00087953,0.0009109,0.0009408,0.0011117,0.001112,0.0016429,0.0016904,0.0017173,0.0019254,0.0019416,0.0024228,0.0026402,0.0027359,0.002957,0.0031059,0.0033775,0.003466,0.0042208,0.0047582,0.0068754,0.0075888,0.0078417,0.0083136,0.0097433,0.010062,0.010353,0.011821,0.013363,0.013978,0.014499,0.016537,0.01992,0.024126,0.027374,0.028101,0.035361,0.038218,0.039617,0.040252,0.042911,0.055469,0.05592,0.058414,0.06256,0.063402,0.069807,0.090211,0.09051,0.097068,0.099512,0.13091,0.13988,0.14056,0.14898,0.16097,0.16122,0.16222,0.16983,0.1699,0.17702,0.17983,0.22348,0.24469,0.24543,0.27109,0.27823,0.28951,0.29509,0.29841,0.30211,0.30332,0.30657,0.31986,0.32142,0.32466,0.32733,0.34786,0.37186,0.40386,0.41622,0.44287,0.47336,0.48639,0.49316,0.56938,0.5783,0.58488,0.59791,0.6145,0.62886,0.6405,0.64256,0.64386,0.65847,0.69651,0.69928,0.71402,0.73656,0.74882,0.75079,0.81749,0.81816,0.83054,0.85383,0.85793,0.87283,0.87626,0.89915,0.91301,0.94115,0.94176,0.96752,0.97001,0.97079,0.98294,0.98361,0.98714,0.99114,0.99224,0.99303,0.99571,0.9961,0.99634,0.99787,0.9983,0.99841,0.99922,0.99944,1,0.99846,0.99786,0.99769,0.99569,0.99469,0.98956,0.97651,0.97145,0.9625,0.95892,0.9482,0.93643,0.93542,0.93463,0.93454,0.93082,0.9305,0.91823,0.91232,0.90073,0.9002,0.89696,0.8752,0.87454,0.8636,0.85074,0.82678,0.82354,0.81417,0.81206,0.80667,0.79755,0.78332,0.78293,0.74971,0.71061,0.70639,0.70171,0.70025,0.67612,0.66115,0.61013,0.60745,0.60205,0.59295,0.55928,0.52453,0.48717,0.47611,0.46955,0.45305,0.42045,0.40646,0.38863,0.36202,0.33984,0.33592,0.29564,0.29056,0.28872,0.27988,0.27641,0.24968,0.23875,0.23565,0.23534,0.22893,0.22048,0.21663,0.21494,0.18669,0.18666,0.16358,0.13985,0.12035,0.10431,0.097926,0.096305,0.092598,0.089453,0.082385,0.081635,0.06939,0.06655,0.06115,0.054956,0.051465,0.051082,0.0484,0.046669,0.04264,0.037198,0.03672,0.034549,0.031349,0.028943,0.028834,0.021746,0.020747,0.020282,0.01913,0.018555,0.017681,0.016363,0.015857,0.015174,0.014131,0.012876,0.011773,0.011667,0.010446,0.0097068,0.0090949,0.0078316,0.0073094,0.0071276,0.0065153,0.0064798,0.006228,0.0061197,0.0048398,0.0045536,0.0044467,0.0039871,0.0037409,0.0037048,0.0031879,0.002377,0.0021754,0.0020778,0.0018661,0.0018488,0.0016366,0.0016148,0.0013775,0.0012537,0.0010357,0.0010179,0.0010014,0.00099228,0.00096303,0.00093977,0.00092585,0.00079042,0.00076454,0.00055565,0.00049863,0.00046392,0.00045081,0.00035475,0.00035326,0.00032617,0.0003142,0.00026004,0.00025848,0.00025483,0.00022105,0.00021248,0.00020951,0.00020072,0.00018987,0.00018013,0.00017525,0.00013355,0.00013227,0.00011454,9.2105e-05,7.4858e-05,5.5911e-05,5.5678e-05,5.0148e-05,4.3929e-05,3.6836e-05,3.6764e-05,3.4578e-05,2.586e-05,2.416e-05,2.398e-05,1.6923e-05,1.5666e-05,1.4983e-05,1.3054e-05,1.1379e-05,8.8185e-06,8.4715e-06,6.9732e-06,4.487e-06,4.4604e-06,4.3009e-06,3.9917e-06,3.7642e-06,3.501e-06,3.2132e-06,1.4286e-06,1.1507e-06,8.2343e-07,6.4058e-07,6.3267e-07,6.1481e-07,4.212e-07,3.8538e-07,3.8254e-07,2.6516e-07,1.4149e-07,1.3867e-07,1.1498e-07,1.106e-07,7.1626e-08,6.3366e-08,4.8429e-08,4.2061e-08,3.5971e-08,3.4889e-08,2.8949e-08,2.8009e-08,2.7573e-08,1.798e-08,1.5807e-08,1.4972e-08,1.2544e-08,1.1862e-08,9.172e-09,8.6475e-09,7.6793e-09,5.7043e-09,5.6882e-09,4.9272e-09,4.6935e-09,4.6932e-09,3.4127e-09,3.3783e-09,2.9605e-09,2.5743e-09,1.8949e-09,1.4352e-09,1.1744e-09,8.5201e-10,6.3189e-10,4.2758e-10,4.2081e-10,3.1089e-10,2.3194e-10,1.95e-10,1.2216e-10,1.0642e-10,8.0318e-11,6.7952e-11,4.7847e-11,4.6098e-11,4.269e-11,3.5729e-11,2.4568e-11,1.6672e-11,1.3561e-11,1.1026e-11,9.8943e-12,9.7445e-12,8.0017e-12,6.3669e-12,3.1495e-12,2.6074e-12,2.3492e-12,1.8648e-12,1.8618e-12,1.4818e-12,1.4402e-12,1.2329e-12,1.0879e-12,7.1242e-13,6.6994e-13,4.8024e-13,3.5172e-13,1.2578e-13,1.0349e-13,9.4161e-14,7.3466e-14,5.8154e-14,5.32e-14,4.4517e-14,3.9156e-14,3.3383e-14,2.5628e-14,2.5591e-14,1.5866e-14,1.3966e-14,1.3599e-14,1.3407e-14,8.212e-15,8.1207e-15,7.7275e-15,7.4439e-15,6.7562e-15,5.7519e-15,4.9775e-15,2.6108e-15,6.4821e-16,4.2607e-16,4.1051e-16,3.9808e-16,3.6032e-16,3.4087e-16,2.0083e-16,1.4142e-16,1.0945e-16,9.479e-17,7.0131e-17,5.4235e-17,5.1698e-17,3.5969e-17,2.9269e-17,2.274e-17,1.5131e-17,8.8191e-18,8.5192e-18,7.0905e-18,6.2405e-18,5.8924e-18,3.1853e-18,2.6896e-18,1.2406e-18,9.9975e-19,6.8269e-19,5.5621e-19,5.2043e-19,3.6197e-19,3.4534e-19,3.1154e-19,2.4867e-19,1.6151e-19 1,7.9299e-06,1.0059e-05,1.0179e-05,1.0931e-05,1.1546e-05,1.2404e-05,1.4246e-05,1.9739e-05,2.4227e-05,2.4998e-05,2.9377e-05,3.0158e-05,3.3463e-05,4.3003e-05,4.6495e-05,4.9079e-05,6.1937e-05,6.4445e-05,6.7339e-05,7.7989e-05,7.9225e-05,7.9943e-05,8.9334e-05,9.536e-05,9.5563e-05,0.00010825,0.00010948,0.00011579,0.00011664,0.00011748,0.00017106,0.00024312,0.00025088,0.00027782,0.00030414,0.00032618,0.00035427,0.00038977,0.00046047,0.00050434,0.00058409,0.00070117,0.000713,0.00073881,0.00076343,0.00090437,0.0009046,0.0013445,0.001384,0.0014063,0.0015796,0.0015931,0.0019949,0.0021769,0.0022571,0.0024426,0.0025677,0.002796,0.0028705,0.0035071,0.0039617,0.005761,0.0063699,0.0065861,0.0069897,0.0082153,0.0084892,0.0087391,0.010003,0.011334,0.011865,0.012316,0.014083,0.017026,0.0207,0.023548,0.024187,0.030584,0.033111,0.034349,0.034911,0.03727,0.048459,0.048861,0.051092,0.054806,0.055561,0.061315,0.079741,0.080011,0.085962,0.088183,0.11686,0.12509,0.12572,0.13347,0.14454,0.14476,0.14569,0.15273,0.15279,0.15939,0.16199,0.20268,0.22258,0.22327,0.24744,0.25418,0.26485,0.27014,0.27329,0.2768,0.27795,0.28104,0.29367,0.29516,0.29825,0.30079,0.32039,0.34338,0.37417,0.38611,0.41193,0.44159,0.45431,0.46093,0.53595,0.5448,0.55133,0.56429,0.58083,0.59518,0.60684,0.60892,0.61022,0.62491,0.66335,0.66616,0.68115,0.70416,0.71673,0.71877,0.78795,0.78865,0.80166,0.8263,0.83067,0.8466,0.85028,0.87506,0.89026,0.92169,0.92239,0.95234,0.95533,0.95627,0.97137,0.97222,0.97685,0.98231,0.98387,0.985,0.98907,0.98969,0.99008,0.99272,0.99354,0.99375,0.99549,0.99604,0.99846,1,0.99995,0.99992,0.9993,0.99887,0.99601,0.98688,0.98301,0.97589,0.97297,0.96405,0.954,0.95313,0.95245,0.95237,0.94914,0.94886,0.93809,0.93285,0.92248,0.922,0.91908,0.89928,0.89867,0.8886,0.87669,0.85428,0.85123,0.84239,0.84039,0.8353,0.82663,0.81307,0.8127,0.78079,0.74285,0.73873,0.73416,0.73273,0.70908,0.69435,0.64377,0.6411,0.63572,0.62663,0.59287,0.55783,0.51993,0.50866,0.50197,0.4851,0.45165,0.43723,0.41883,0.39125,0.36817,0.36408,0.32192,0.31659,0.31465,0.30535,0.30169,0.27347,0.26188,0.25859,0.25826,0.25145,0.24246,0.23837,0.23656,0.20637,0.20634,0.18153,0.1559,0.13471,0.11721,0.11021,0.10843,0.10437,0.10091,0.093127,0.0923,0.078769,0.07562,0.069623,0.062727,0.05883,0.058403,0.055404,0.053467,0.048948,0.04283,0.042291,0.039842,0.036227,0.033503,0.03338,0.02532,0.024179,0.023648,0.022331,0.021673,0.020671,0.01916,0.018578,0.017793,0.016592,0.015146,0.013872,0.013748,0.012335,0.011478,0.010767,0.0092962,0.008687,0.0084747,0.0077589,0.0077174,0.0074226,0.0072959,0.0057933,0.0054563,0.0053303,0.0047882,0.0044973,0.0044546,0.0038426,0.0028788,0.0026384,0.0025219,0.0022687,0.002248,0.0019938,0.0019676,0.0016827,0.0015336,0.0012706,0.001249,0.0012291,0.0012181,0.0011827,0.0011546,0.0011377,0.00097357,0.00094215,0.00068791,0.00061827,0.00057582,0.00055978,0.00044198,0.00044015,0.00040685,0.00039212,0.00032538,0.00032346,0.00031895,0.0002772,0.00026659,0.00026292,0.00025203,0.00023859,0.0002265,0.00022046,0.0001686,0.00016701,0.0001449,0.00011684,9.5217e-05,7.1381e-05,7.1087e-05,6.411e-05,5.6252e-05,4.7273e-05,4.7181e-05,4.4409e-05,3.333e-05,3.1164e-05,3.0935e-05,2.1923e-05,2.0313e-05,1.9437e-05,1.6962e-05,1.4809e-05,1.1511e-05,1.1063e-05,9.1267e-06,5.902e-06,5.8674e-06,5.6599e-06,5.2574e-06,4.961e-06,4.6178e-06,4.2422e-06,1.9029e-06,1.5362e-06,1.1032e-06,8.6047e-07,8.4995e-07,8.262e-07,5.6823e-07,5.2038e-07,5.1659e-07,3.5941e-07,1.9299e-07,1.8918e-07,1.5715e-07,1.5122e-07,9.8349e-08,8.7111e-08,6.6749e-08,5.805e-08,4.9719e-08,4.8237e-08,4.0095e-08,3.8806e-08,3.8208e-08,2.5014e-08,2.2018e-08,2.0864e-08,1.751e-08,1.6566e-08,1.284e-08,1.2112e-08,1.0768e-08,8.0198e-09,7.9974e-09,6.9365e-09,6.6104e-09,6.6099e-09,4.8201e-09,4.772e-09,4.1867e-09,3.645e-09,2.6904e-09,2.0426e-09,1.6743e-09,1.2181e-09,9.057e-10,6.1489e-10,6.0524e-10,4.4828e-10,3.3527e-10,2.8227e-10,1.7752e-10,1.5482e-10,1.1712e-10,9.922e-11,7.0062e-11,6.7522e-11,6.2569e-11,5.2441e-11,3.6167e-11,2.4619e-11,2.0057e-11,1.6334e-11,1.467e-11,1.445e-11,1.1884e-11,9.4726e-12,4.7112e-12,3.906e-12,3.5219e-12,2.8006e-12,2.7961e-12,2.2293e-12,2.1672e-12,1.8574e-12,1.6404e-12,1.0777e-12,1.0139e-12,7.2857e-13,5.3482e-13,1.927e-13,1.5876e-13,1.4456e-13,1.1299e-13,8.9586e-14,8.2006e-14,6.8708e-14,6.0489e-14,5.1628e-14,3.9709e-14,3.9653e-14,2.4666e-14,2.1731e-14,2.1164e-14,2.0867e-14,1.2825e-14,1.2683e-14,1.2074e-14,1.1633e-14,1.0566e-14,9.005e-15,7.8004e-15,4.1095e-15,1.0299e-15,6.7884e-16,6.542e-16,6.3452e-16,5.7472e-16,5.4389e-16,3.2156e-16,2.2695e-16,1.7594e-16,1.5251e-16,1.1306e-16,8.7577e-17,8.3506e-17,5.8234e-17,4.7449e-17,3.6923e-17,2.4632e-17,1.4406e-17,1.3919e-17,1.1598e-17,1.0216e-17,9.6493e-18,5.2362e-18,4.426e-18,2.0512e-18,1.6552e-18,1.1329e-18,9.2415e-19,8.6506e-19,6.0298e-19,5.7544e-19,5.1944e-19,4.1518e-19,2.7035e-19 1,7.5582e-06,9.5923e-06,9.7069e-06,1.0425e-05,1.1013e-05,1.1833e-05,1.3595e-05,1.885e-05,2.3146e-05,2.3884e-05,2.8078e-05,2.8826e-05,3.1991e-05,4.1135e-05,4.4483e-05,4.6961e-05,5.9294e-05,6.1701e-05,6.4478e-05,7.4701e-05,7.5887e-05,7.6577e-05,8.5594e-05,9.1381e-05,9.1576e-05,0.00010376,0.00010494,0.000111,0.00011183,0.00011263,0.00016414,0.00023349,0.00024096,0.0002669,0.00029226,0.00031349,0.00034055,0.00037477,0.00044293,0.00048524,0.00056219,0.00067519,0.00068661,0.00071154,0.0007353,0.00087144,0.00087167,0.0012969,0.0013351,0.0013567,0.0015244,0.0015374,0.0019264,0.0021027,0.0021804,0.0023601,0.0024813,0.0027026,0.0027749,0.0033922,0.0038333,0.0055806,0.0061723,0.0063824,0.0067748,0.0079668,0.0082333,0.0084765,0.0097067,0.011003,0.01152,0.01196,0.013681,0.016551,0.020136,0.022918,0.023542,0.029793,0.032265,0.033476,0.034026,0.036335,0.047291,0.047686,0.049872,0.053513,0.054253,0.059895,0.077982,0.078248,0.084094,0.086277,0.11448,0.12259,0.1232,0.13084,0.14174,0.14197,0.14288,0.14982,0.14988,0.15639,0.15896,0.19911,0.21878,0.21947,0.24337,0.25004,0.2606,0.26584,0.26896,0.27244,0.27357,0.27663,0.28914,0.29062,0.29368,0.2962,0.31563,0.33843,0.369,0.38086,0.40651,0.43602,0.44868,0.45526,0.53004,0.53887,0.54538,0.55832,0.57484,0.58918,0.60084,0.60292,0.60422,0.61891,0.6574,0.66021,0.67523,0.69832,0.71093,0.71297,0.78255,0.78326,0.79636,0.82123,0.82564,0.84174,0.84546,0.87055,0.88598,0.91797,0.91868,0.94936,0.95243,0.9534,0.96901,0.9699,0.97471,0.98043,0.98207,0.98326,0.98758,0.98823,0.98865,0.99148,0.99238,0.9926,0.9945,0.99512,0.99786,0.99995,1,1,0.99962,0.99929,0.99685,0.98842,0.98476,0.97797,0.97518,0.96658,0.95685,0.95601,0.95535,0.95527,0.95213,0.95186,0.94137,0.93625,0.9261,0.92564,0.92278,0.90334,0.90275,0.89284,0.88111,0.85899,0.85598,0.84725,0.84527,0.84023,0.83165,0.81822,0.81785,0.7862,0.7485,0.74441,0.73986,0.73844,0.71489,0.7002,0.64974,0.64708,0.6417,0.63262,0.59887,0.5638,0.52582,0.51452,0.50781,0.49088,0.4573,0.44281,0.42431,0.39657,0.37334,0.36922,0.32674,0.32136,0.31941,0.31002,0.30634,0.27784,0.26615,0.26282,0.26249,0.25561,0.24652,0.24238,0.24055,0.21002,0.20998,0.18487,0.1589,0.1374,0.11963,0.11252,0.11071,0.10658,0.10307,0.095152,0.094311,0.080541,0.077335,0.071228,0.064201,0.060229,0.059793,0.056736,0.05476,0.05015,0.043905,0.043354,0.040854,0.037161,0.034376,0.03425,0.026007,0.02484,0.024295,0.022947,0.022274,0.021247,0.019699,0.019103,0.018299,0.017068,0.015585,0.014278,0.014152,0.012702,0.011821,0.011092,0.0095814,0.0089554,0.0087373,0.0080016,0.0079589,0.0076558,0.0075255,0.0059799,0.0056332,0.0055035,0.0049454,0.0046458,0.0046018,0.0039713,0.0029777,0.0027298,0.0026095,0.0023483,0.002327,0.0020645,0.0020375,0.0017431,0.0015891,0.0013173,0.001295,0.0012744,0.001263,0.0012264,0.0011973,0.0011799,0.0010101,0.00097755,0.00071434,0.00064221,0.00059822,0.0005816,0.00045949,0.00045758,0.00042305,0.00040777,0.00033853,0.00033653,0.00033185,0.00028851,0.0002775,0.00027368,0.00026237,0.00024841,0.00023586,0.00022958,0.00017569,0.00017403,0.00015105,0.00012186,9.9353e-05,7.4531e-05,7.4225e-05,6.6956e-05,5.8766e-05,4.9404e-05,4.9309e-05,4.6418e-05,3.486e-05,3.26e-05,3.236e-05,2.295e-05,2.1268e-05,2.0353e-05,1.7767e-05,1.5516e-05,1.2066e-05,1.1598e-05,9.5717e-06,6.1954e-06,6.1591e-06,5.9416e-06,5.5199e-06,5.2094e-06,4.8497e-06,4.456e-06,2.0019e-06,1.6168e-06,1.1618e-06,9.0661e-07,8.9555e-07,8.7057e-07,5.9917e-07,5.488e-07,5.4481e-07,3.793e-07,2.0389e-07,1.9987e-07,1.6609e-07,1.5984e-07,1.0403e-07,9.2162e-08,7.0652e-08,6.1459e-08,5.2652e-08,5.1086e-08,4.2476e-08,4.1113e-08,4.048e-08,2.652e-08,2.3349e-08,2.2128e-08,1.8575e-08,1.7576e-08,1.3628e-08,1.2857e-08,1.1432e-08,8.5188e-09,8.4951e-09,7.3698e-09,7.0239e-09,7.0234e-09,5.1242e-09,5.0732e-09,4.4519e-09,3.8767e-09,2.8628e-09,2.1744e-09,1.7829e-09,1.2977e-09,9.6536e-10,6.5579e-10,6.4551e-10,4.7833e-10,3.579e-10,3.014e-10,1.8968e-10,1.6545e-10,1.2522e-10,1.0611e-10,7.4963e-11,7.2249e-11,6.6956e-11,5.6132e-11,3.8733e-11,2.638e-11,2.1499e-11,1.7513e-11,1.5732e-11,1.5495e-11,1.2747e-11,1.0164e-11,5.0599e-12,4.1962e-12,3.7841e-12,3.01e-12,3.0052e-12,2.3967e-12,2.33e-12,1.9974e-12,1.7644e-12,1.1598e-12,1.0912e-12,7.8447e-13,5.7608e-13,2.0784e-13,1.7128e-13,1.5597e-13,1.2195e-13,9.6722e-14,8.8549e-14,7.4206e-14,6.534e-14,5.578e-14,4.2916e-14,4.2856e-14,2.6674e-14,2.3504e-14,2.2891e-14,2.2571e-14,1.3881e-14,1.3727e-14,1.3068e-14,1.2592e-14,1.1438e-14,9.7504e-15,8.4475e-15,4.4539e-15,1.1181e-15,7.3732e-16,7.106e-16,6.8924e-16,6.2435e-16,5.9091e-16,3.4957e-16,2.4682e-16,1.914e-16,1.6594e-16,1.2306e-16,9.5349e-17,9.0922e-17,6.3431e-17,5.1696e-17,4.024e-17,2.6857e-17,1.5716e-17,1.5186e-17,1.2656e-17,1.115e-17,1.0532e-17,5.719e-18,4.8351e-18,2.2427e-18,1.8101e-18,1.2395e-18,1.0113e-18,9.467e-19,6.6015e-19,6.3002e-19,5.6878e-19,4.5472e-19,2.9624e-19 1,7.4621e-06,9.4715e-06,9.5848e-06,1.0295e-05,1.0875e-05,1.1686e-05,1.3427e-05,1.8619e-05,2.2866e-05,2.3595e-05,2.7741e-05,2.848e-05,3.161e-05,4.0651e-05,4.3961e-05,4.6412e-05,5.8609e-05,6.0989e-05,6.3736e-05,7.3848e-05,7.5021e-05,7.5703e-05,8.4623e-05,9.0349e-05,9.0541e-05,0.0001026,0.00010377,0.00010976,0.00011058,0.00011137,0.00016235,0.00023098,0.00023838,0.00026407,0.00028917,0.00031019,0.00033699,0.00037087,0.00043837,0.00048028,0.00055649,0.00066842,0.00067974,0.00070443,0.00072798,0.00086287,0.00086309,0.0012845,0.0013223,0.0013438,0.00151,0.0015229,0.0019085,0.0020833,0.0021603,0.0023386,0.0024587,0.0026782,0.0027499,0.0033622,0.0037997,0.0055334,0.0061206,0.0063292,0.0067186,0.0079018,0.0081664,0.0084078,0.0096291,0.010916,0.01143,0.011866,0.013576,0.016427,0.019989,0.022752,0.023372,0.029586,0.032043,0.033247,0.033794,0.036089,0.046984,0.047377,0.049551,0.053172,0.053909,0.059522,0.077519,0.077784,0.083603,0.085775,0.11386,0.12193,0.12254,0.13015,0.14101,0.14123,0.14214,0.14905,0.14911,0.15559,0.15815,0.19817,0.21778,0.21846,0.24229,0.24895,0.25948,0.2647,0.26781,0.27128,0.27242,0.27546,0.28794,0.28942,0.29247,0.29499,0.31437,0.33712,0.36763,0.37946,0.40508,0.43454,0.44718,0.45376,0.52847,0.53729,0.5438,0.55674,0.57325,0.58758,0.59924,0.60132,0.60262,0.61731,0.65581,0.65863,0.67366,0.69676,0.70939,0.71143,0.7811,0.78181,0.79495,0.81987,0.82429,0.84044,0.84417,0.86934,0.88483,0.91697,0.91768,0.94855,0.95165,0.95262,0.96836,0.96926,0.97412,0.97991,0.98157,0.98278,0.98716,0.98783,0.98825,0.99114,0.99205,0.99228,0.99422,0.99485,0.99769,0.99992,1,1,0.99969,0.99938,0.99705,0.98882,0.98521,0.97851,0.97575,0.96724,0.9576,0.95676,0.95611,0.95603,0.95291,0.95265,0.94223,0.93714,0.92706,0.92659,0.92375,0.90441,0.90382,0.89396,0.88227,0.86024,0.85723,0.84853,0.84656,0.84153,0.83298,0.81959,0.81922,0.78764,0.75,0.74591,0.74137,0.73995,0.71643,0.70176,0.65133,0.64867,0.64329,0.63422,0.60047,0.56539,0.52739,0.51608,0.50937,0.49243,0.4588,0.4443,0.42578,0.39799,0.37472,0.3706,0.32802,0.32263,0.32068,0.31127,0.30758,0.27902,0.26729,0.26396,0.26362,0.25672,0.24761,0.24346,0.24163,0.211,0.21096,0.18577,0.1597,0.13812,0.12028,0.11314,0.11133,0.10717,0.10365,0.095697,0.094852,0.081019,0.077797,0.07166,0.064598,0.060606,0.060168,0.057095,0.055108,0.050474,0.044195,0.043641,0.041127,0.037413,0.034612,0.034485,0.026193,0.025018,0.02447,0.023114,0.022436,0.021403,0.019845,0.019245,0.018436,0.017197,0.015704,0.014388,0.014261,0.012801,0.011915,0.01118,0.0096586,0.0090281,0.0088084,0.0080673,0.0080243,0.007719,0.0075877,0.0060305,0.0056811,0.0055504,0.004988,0.004686,0.0046417,0.0040063,0.0030046,0.0027546,0.0026334,0.0023699,0.0023484,0.0020837,0.0020564,0.0017596,0.0016042,0.00133,0.0013075,0.0012867,0.0012752,0.0012383,0.0012089,0.0011913,0.00102,0.00098718,0.00072154,0.00064872,0.00060432,0.00058754,0.00046425,0.00046233,0.00042747,0.00041203,0.00034211,0.00034009,0.00033536,0.00029159,0.00028047,0.00027662,0.00026519,0.00025109,0.00023841,0.00023207,0.00017763,0.00017595,0.00015272,0.00012323,0.00010048,7.5391e-05,7.5082e-05,6.7733e-05,5.9453e-05,4.9987e-05,4.989e-05,4.6968e-05,3.5278e-05,3.2992e-05,3.2749e-05,2.3231e-05,2.1529e-05,2.0604e-05,1.7987e-05,1.5709e-05,1.2219e-05,1.1744e-05,9.6937e-06,6.2758e-06,6.2391e-06,6.0189e-06,5.5919e-06,5.2775e-06,4.9133e-06,4.5147e-06,2.0291e-06,1.6389e-06,1.1779e-06,9.1929e-07,9.0808e-07,8.8276e-07,6.0767e-07,5.5661e-07,5.5257e-07,3.8477e-07,2.069e-07,2.0282e-07,1.6856e-07,1.6221e-07,1.056e-07,9.3554e-08,7.1728e-08,6.2399e-08,5.3461e-08,5.1872e-08,4.3133e-08,4.1749e-08,4.1107e-08,2.6936e-08,2.3716e-08,2.2477e-08,1.887e-08,1.7855e-08,1.3846e-08,1.3063e-08,1.1616e-08,8.6566e-09,8.6326e-09,7.4895e-09,7.1381e-09,7.1376e-09,5.2082e-09,5.1564e-09,4.5252e-09,3.9408e-09,2.9104e-09,2.2108e-09,1.8129e-09,1.3198e-09,9.8188e-10,6.6711e-10,6.5666e-10,4.8665e-10,3.6417e-10,3.067e-10,1.9305e-10,1.684e-10,1.2746e-10,1.0802e-10,7.6323e-11,7.3561e-11,6.8174e-11,5.7157e-11,3.9446e-11,2.687e-11,2.1899e-11,1.7841e-11,1.6026e-11,1.5786e-11,1.2987e-11,1.0356e-11,5.1569e-12,4.2769e-12,3.8571e-12,3.0683e-12,3.0634e-12,2.4433e-12,2.3754e-12,2.0364e-12,1.7989e-12,1.1826e-12,1.1127e-12,8.0005e-13,5.8759e-13,2.1207e-13,1.7478e-13,1.5916e-13,1.2445e-13,9.8714e-14,9.0375e-14,7.5741e-14,6.6695e-14,5.694e-14,4.3812e-14,4.375e-14,2.7235e-14,2.4e-14,2.3374e-14,2.3047e-14,1.4176e-14,1.4019e-14,1.3346e-14,1.2861e-14,1.1682e-14,9.9588e-15,8.6285e-15,4.5503e-15,1.1428e-15,7.5371e-16,7.264e-16,7.0457e-16,6.3827e-16,6.0408e-16,3.5742e-16,2.524e-16,1.9574e-16,1.6971e-16,1.2586e-16,9.7531e-17,9.3004e-17,6.4891e-17,5.2889e-17,4.1172e-17,2.7482e-17,1.6085e-17,1.5542e-17,1.2954e-17,1.1412e-17,1.078e-17,5.8548e-18,4.9502e-18,2.2965e-18,1.8537e-18,1.2695e-18,1.0358e-18,9.6969e-19,6.7625e-19,6.454e-19,5.8268e-19,4.6586e-19,3.0353e-19 1,6.6117e-06,8.4024e-06,8.5033e-06,9.1365e-06,9.6544e-06,1.0378e-05,1.1933e-05,1.6576e-05,2.0379e-05,2.1033e-05,2.475e-05,2.5413e-05,2.8222e-05,3.6343e-05,3.932e-05,4.1524e-05,5.2506e-05,5.465e-05,5.7126e-05,6.6244e-05,6.7302e-05,6.7918e-05,7.5969e-05,8.114e-05,8.1314e-05,9.2207e-05,9.3265e-05,9.8686e-05,9.9421e-05,0.00010014,0.0001463,0.0002086,0.00021532,0.00023867,0.0002615,0.00028063,0.00030503,0.0003359,0.00039745,0.0004357,0.00050531,0.00060767,0.00061803,0.00064063,0.00066218,0.00078576,0.00078596,0.0011728,0.0012076,0.0012274,0.0013802,0.0013921,0.0017474,0.0019086,0.0019797,0.0021442,0.0022552,0.002458,0.0025243,0.0030909,0.0034963,0.005106,0.0056523,0.0058464,0.0062091,0.0073119,0.0075587,0.0077839,0.0089244,0.010127,0.010608,0.011017,0.012618,0.015293,0.018641,0.021243,0.021827,0.02769,0.030012,0.031151,0.031668,0.03384,0.044171,0.044544,0.046609,0.050052,0.050752,0.056094,0.073262,0.073515,0.079077,0.081155,0.10808,0.11584,0.11642,0.12374,0.1342,0.13441,0.13529,0.14195,0.14201,0.14827,0.15074,0.18945,0.20847,0.20914,0.23229,0.23877,0.24903,0.25412,0.25715,0.26053,0.26164,0.26461,0.27679,0.27823,0.28121,0.28367,0.30262,0.32489,0.35483,0.36645,0.39165,0.42069,0.43318,0.43968,0.51369,0.52246,0.52893,0.5418,0.55825,0.57255,0.58419,0.58626,0.58756,0.60225,0.64082,0.64365,0.65874,0.68199,0.69472,0.69678,0.76734,0.76807,0.78144,0.80688,0.81141,0.82796,0.8318,0.85773,0.87375,0.90726,0.908,0.94063,0.94394,0.94498,0.96198,0.96297,0.9683,0.97472,0.97658,0.97794,0.98292,0.98369,0.98418,0.98755,0.98864,0.98891,0.99126,0.99204,0.99569,0.9993,0.99962,0.99969,1,0.99995,0.99865,0.9922,0.98914,0.98329,0.98083,0.97316,0.96433,0.96356,0.96295,0.96288,0.96,0.95975,0.95005,0.94527,0.93577,0.93534,0.93264,0.91426,0.91369,0.90426,0.89303,0.87177,0.86887,0.86043,0.85852,0.85364,0.84532,0.83227,0.83191,0.80103,0.76403,0.76,0.75552,0.75412,0.73088,0.71636,0.66628,0.66363,0.65828,0.64923,0.61553,0.58041,0.54225,0.53087,0.52411,0.50705,0.47311,0.45844,0.43969,0.41151,0.38787,0.38368,0.34031,0.33481,0.33282,0.32321,0.31944,0.29022,0.27821,0.27479,0.27445,0.26737,0.25802,0.25376,0.25188,0.22038,0.22034,0.19437,0.16743,0.14508,0.12655,0.11913,0.11724,0.11292,0.10924,0.10096,0.10008,0.085632,0.082264,0.075842,0.068444,0.064258,0.063798,0.060572,0.058486,0.053617,0.047009,0.046426,0.043777,0.03986,0.036904,0.03677,0.028001,0.026756,0.026175,0.024737,0.024018,0.022922,0.021268,0.020631,0.01977,0.018453,0.016864,0.015463,0.015327,0.013771,0.012825,0.01204,0.010415,0.0097401,0.009505,0.0087114,0.0086653,0.0083382,0.0081975,0.0065269,0.0061516,0.0060112,0.0054065,0.0050816,0.0050339,0.0043496,0.003269,0.0029989,0.0028678,0.0025829,0.0025596,0.002273,0.0022435,0.0019217,0.0017531,0.0014554,0.0014309,0.0014083,0.0013958,0.0013557,0.0013237,0.0013046,0.0011181,0.0010824,0.00079279,0.00071328,0.00066476,0.00064642,0.00051155,0.00050944,0.00047126,0.00045435,0.00037768,0.00037547,0.00037028,0.00032223,0.00031002,0.00030578,0.00029323,0.00027773,0.00026379,0.00025681,0.00019688,0.00019504,0.00016943,0.00013689,0.00011175,8.3983e-05,8.364e-05,7.5498e-05,6.6318e-05,5.5813e-05,5.5705e-05,5.246e-05,3.9465e-05,3.6922e-05,3.6652e-05,2.6047e-05,2.4149e-05,2.3116e-05,2.0195e-05,1.7651e-05,1.3747e-05,1.3216e-05,1.0919e-05,7.0849e-06,7.0437e-06,6.7964e-06,6.3166e-06,5.9631e-06,5.5536e-06,5.1052e-06,2.3036e-06,1.8625e-06,1.3407e-06,1.0476e-06,1.0349e-06,1.0062e-06,6.9383e-07,6.3579e-07,6.3119e-07,4.4025e-07,2.3739e-07,2.3274e-07,1.9358e-07,1.8632e-07,1.2152e-07,1.0772e-07,8.2685e-08,7.1975e-08,6.1707e-08,5.988e-08,4.9831e-08,4.8239e-08,4.75e-08,3.1181e-08,2.7468e-08,2.6038e-08,2.1876e-08,2.0704e-08,1.6072e-08,1.5167e-08,1.3493e-08,1.0068e-08,1.004e-08,8.7158e-09,8.3085e-09,8.3079e-09,6.0699e-09,6.0098e-09,5.2768e-09,4.5979e-09,3.3998e-09,2.5854e-09,2.1217e-09,1.5465e-09,1.1519e-09,7.8377e-10,7.7154e-10,5.7244e-10,4.2883e-10,3.6139e-10,2.2788e-10,1.9888e-10,1.5068e-10,1.2777e-10,9.0397e-11,8.7137e-11,8.0779e-11,6.7768e-11,4.6831e-11,3.1944e-11,2.6054e-11,2.1241e-11,1.9088e-11,1.8803e-11,1.548e-11,1.2354e-11,6.1664e-12,5.1174e-12,4.6168e-12,3.6754e-12,3.6697e-12,2.9291e-12,2.8479e-12,2.4427e-12,2.1588e-12,1.4212e-12,1.3375e-12,9.6272e-13,7.0778e-13,2.563e-13,2.1137e-13,1.9254e-13,1.5067e-13,1.196e-13,1.0953e-13,9.1844e-14,8.0907e-14,6.9108e-14,5.3219e-14,5.3145e-14,3.3133e-14,2.9208e-14,2.8449e-14,2.8052e-14,1.7281e-14,1.7091e-14,1.6273e-14,1.5682e-14,1.4249e-14,1.2153e-14,1.0535e-14,5.5664e-15,1.4038e-15,9.2703e-16,8.9354e-16,8.6677e-16,7.8543e-16,7.4349e-16,4.4058e-16,3.1144e-16,2.4171e-16,2.0965e-16,1.5562e-16,1.2068e-16,1.1509e-16,8.0388e-17,6.5558e-17,5.107e-17,3.4129e-17,2.0005e-17,1.9332e-17,1.6121e-17,1.4208e-17,1.3423e-17,7.3026e-18,6.1771e-18,2.8719e-18,2.3195e-18,1.5901e-18,1.2982e-18,1.2155e-18,8.485e-19,8.0989e-19,7.3138e-19,5.8511e-19,3.8167e-19 1,6.2881e-06,7.9952e-06,8.0915e-06,8.6954e-06,9.1894e-06,9.8794e-06,1.1363e-05,1.5796e-05,1.9429e-05,2.0054e-05,2.3606e-05,2.424e-05,2.6925e-05,3.4694e-05,3.7542e-05,3.9652e-05,5.0165e-05,5.2219e-05,5.4589e-05,6.3325e-05,6.4339e-05,6.4929e-05,7.2645e-05,7.7601e-05,7.7768e-05,8.8213e-05,8.9227e-05,9.4426e-05,9.5131e-05,9.5822e-05,0.00014012,0.00019996,0.00020642,0.00022886,0.00025081,0.0002692,0.00029267,0.00032237,0.00038161,0.00041844,0.00048548,0.00058411,0.00059409,0.00061587,0.00063666,0.00075581,0.00075601,0.0011294,0.001163,0.001182,0.0013297,0.0013412,0.0016846,0.0018405,0.0019092,0.0020683,0.0021757,0.002372,0.0024361,0.0029848,0.0033775,0.0049383,0.0054684,0.0056568,0.0060089,0.0070799,0.0073197,0.0075385,0.008647,0.0098168,0.010284,0.010682,0.01224,0.014845,0.018108,0.020645,0.021215,0.026938,0.029206,0.030319,0.030824,0.032947,0.043051,0.043416,0.045437,0.048808,0.049494,0.054726,0.071559,0.071808,0.077266,0.079306,0.10576,0.11339,0.11397,0.12117,0.13146,0.13167,0.13253,0.1391,0.13916,0.14532,0.14775,0.18593,0.20471,0.20536,0.22824,0.23465,0.24479,0.24982,0.25282,0.25617,0.25726,0.26021,0.27226,0.27369,0.27664,0.27907,0.29784,0.31992,0.3496,0.36114,0.38617,0.41503,0.42744,0.43391,0.50761,0.51636,0.52281,0.53565,0.55207,0.56635,0.57797,0.58005,0.58134,0.59603,0.63461,0.63744,0.65256,0.67586,0.68863,0.69069,0.7616,0.76233,0.77579,0.80144,0.806,0.82272,0.82659,0.85282,0.86906,0.90311,0.90387,0.93721,0.94061,0.94168,0.95919,0.96021,0.96573,0.97241,0.97435,0.97577,0.981,0.98181,0.98233,0.9859,0.98705,0.98735,0.98986,0.9907,0.99469,0.99887,0.99929,0.99938,0.99995,1,0.99913,0.99342,0.99059,0.98509,0.98276,0.97545,0.96695,0.9662,0.96562,0.96555,0.96277,0.96253,0.95312,0.94848,0.93923,0.9388,0.93618,0.91819,0.91764,0.90838,0.89736,0.87643,0.87356,0.86524,0.86335,0.85853,0.85032,0.83742,0.83706,0.80648,0.76976,0.76576,0.76131,0.75992,0.73681,0.72236,0.67244,0.66979,0.66445,0.65542,0.62176,0.58663,0.54842,0.53701,0.53024,0.51312,0.47906,0.46433,0.44549,0.41715,0.39336,0.38915,0.34546,0.33992,0.3379,0.32822,0.32441,0.29493,0.2828,0.27935,0.279,0.27185,0.2624,0.2581,0.25619,0.22434,0.2243,0.19801,0.1707,0.14803,0.12921,0.12167,0.11975,0.11536,0.11162,0.10319,0.1023,0.087598,0.084168,0.077627,0.070087,0.065818,0.065349,0.062059,0.059931,0.054961,0.048214,0.047619,0.044912,0.04091,0.037887,0.037751,0.028778,0.027503,0.026909,0.025436,0.024699,0.023577,0.021881,0.021228,0.020346,0.018995,0.017365,0.015927,0.015788,0.01419,0.013219,0.012413,0.010742,0.010049,0.0098068,0.0089906,0.0089432,0.0086068,0.008462,0.0067425,0.006356,0.0062114,0.0055885,0.0052537,0.0052045,0.004499,0.0033843,0.0031055,0.0029702,0.0026759,0.0026518,0.0023557,0.0023252,0.0019927,0.0018183,0.0015103,0.001485,0.0014616,0.0014486,0.0014071,0.0013741,0.0013543,0.0011612,0.0011242,0.00082409,0.00074165,0.00069134,0.00067232,0.00053237,0.00053019,0.00049055,0.00047299,0.00039337,0.00039107,0.00038568,0.00033575,0.00032306,0.00031866,0.00030561,0.00028949,0.000275,0.00026774,0.0002054,0.00020347,0.00017682,0.00014294,0.00011674,8.7796e-05,8.7439e-05,7.8946e-05,6.9367e-05,5.8403e-05,5.8291e-05,5.4902e-05,4.133e-05,3.8672e-05,3.839e-05,2.7303e-05,2.5318e-05,2.4238e-05,2.1181e-05,1.8518e-05,1.443e-05,1.3874e-05,1.1468e-05,7.4476e-06,7.4043e-06,7.1449e-06,6.6415e-06,6.2707e-06,5.8409e-06,5.3702e-06,2.4271e-06,1.9633e-06,1.4142e-06,1.1055e-06,1.0921e-06,1.0619e-06,7.3276e-07,6.7158e-07,6.6673e-07,4.6536e-07,2.5123e-07,2.4631e-07,2.0494e-07,1.9727e-07,1.2876e-07,1.1416e-07,8.7671e-08,7.6334e-08,6.5462e-08,6.3527e-08,5.2884e-08,5.1197e-08,5.0414e-08,3.3118e-08,2.9182e-08,2.7665e-08,2.325e-08,2.2006e-08,1.7091e-08,1.6129e-08,1.4352e-08,1.0714e-08,1.0685e-08,9.2776e-09,8.8448e-09,8.8441e-09,6.4651e-09,6.4011e-09,5.6217e-09,4.8995e-09,3.6247e-09,2.7576e-09,2.2638e-09,1.6509e-09,1.2302e-09,8.3758e-10,8.2453e-10,6.1204e-10,4.5871e-10,3.8668e-10,2.4399e-10,2.1299e-10,1.6144e-10,1.3693e-10,9.6926e-11,9.3436e-11,8.6628e-11,7.2694e-11,5.0263e-11,3.4305e-11,2.7988e-11,2.2824e-11,2.0514e-11,2.0208e-11,1.6641e-11,1.3285e-11,6.6379e-12,5.5102e-12,4.9718e-12,3.9594e-12,3.9532e-12,3.1564e-12,3.069e-12,2.6329e-12,2.3273e-12,1.533e-12,1.4428e-12,1.039e-12,7.6421e-13,2.7712e-13,2.2859e-13,2.0826e-13,1.6302e-13,1.2945e-13,1.1856e-13,9.944e-14,8.7613e-14,7.4852e-14,5.7662e-14,5.7581e-14,3.5921e-14,3.1671e-14,3.0849e-14,3.042e-14,1.8751e-14,1.8545e-14,1.7658e-14,1.7018e-14,1.5465e-14,1.3193e-14,1.1438e-14,6.0486e-15,1.5281e-15,1.0096e-15,9.7318e-16,9.4405e-16,8.5556e-16,8.0993e-16,4.8027e-16,3.3963e-16,2.6367e-16,2.2874e-16,1.6985e-16,1.3176e-16,1.2567e-16,8.7808e-17,7.1627e-17,5.5815e-17,3.7317e-17,2.1888e-17,2.1152e-17,1.7643e-17,1.5551e-17,1.4693e-17,7.9992e-18,6.7676e-18,3.1492e-18,2.5441e-18,1.7448e-18,1.4248e-18,1.3342e-18,9.3172e-19,8.8937e-19,8.0325e-19,6.4277e-19,4.1948e-19 1,5.1219e-06,6.5258e-06,6.6051e-06,7.1024e-06,7.5095e-06,8.0784e-06,9.3029e-06,1.297e-05,1.5982e-05,1.6501e-05,1.9452e-05,1.998e-05,2.2214e-05,2.869e-05,3.1068e-05,3.283e-05,4.1626e-05,4.3346e-05,4.5333e-05,5.2661e-05,5.3513e-05,5.4008e-05,6.0491e-05,6.4659e-05,6.4799e-05,7.3592e-05,7.4446e-05,7.8827e-05,7.9421e-05,8.0004e-05,0.00011742,0.00016817,0.00017366,0.00019274,0.00021142,0.00022709,0.00024711,0.00027246,0.00032309,0.00035461,0.00041208,0.00049679,0.00050537,0.0005241,0.00054198,0.00064463,0.0006448,0.00096757,0.0009967,0.0010132,0.0011413,0.0011513,0.0014499,0.0015857,0.0016456,0.0017845,0.0018783,0.0020498,0.0021059,0.0025865,0.0029313,0.0043065,0.004775,0.0049418,0.0052534,0.0062032,0.0064161,0.0066105,0.0075965,0.0086392,0.0090565,0.0094115,0.010805,0.013141,0.016075,0.018363,0.018878,0.024058,0.026116,0.027127,0.027587,0.029518,0.038738,0.039072,0.040923,0.044011,0.04464,0.049445,0.064962,0.065191,0.070241,0.07213,0.096719,0.10384,0.10438,0.11111,0.12076,0.12095,0.12176,0.12792,0.12798,0.13376,0.13605,0.17208,0.18987,0.1905,0.21226,0.21836,0.22804,0.23284,0.23571,0.23891,0.23996,0.24277,0.25431,0.25568,0.25851,0.26084,0.27886,0.30012,0.32879,0.33996,0.36425,0.39234,0.40445,0.41077,0.48311,0.49174,0.49811,0.5108,0.52705,0.54122,0.55278,0.55484,0.55613,0.57075,0.60932,0.61215,0.62733,0.65078,0.66366,0.66575,0.73785,0.7386,0.7524,0.77881,0.78353,0.80084,0.80487,0.83224,0.84931,0.88548,0.8863,0.92242,0.92616,0.92734,0.94688,0.94803,0.95431,0.96201,0.96428,0.96595,0.97217,0.97314,0.97376,0.97813,0.97957,0.97994,0.98313,0.98421,0.98956,0.99601,0.99685,0.99705,0.99865,0.99913,1,0.99733,0.99542,0.99138,0.98958,0.98371,0.97662,0.97599,0.97549,0.97543,0.97305,0.97285,0.96469,0.96061,0.95238,0.952,0.94965,0.93335,0.93284,0.92435,0.91416,0.89464,0.89195,0.88412,0.88234,0.87779,0.87002,0.85776,0.85742,0.82814,0.79267,0.78878,0.78446,0.7831,0.76058,0.74643,0.6973,0.69469,0.6894,0.68046,0.64701,0.61193,0.57359,0.56211,0.55528,0.538,0.5035,0.48854,0.46936,0.44044,0.41608,0.41176,0.36682,0.3611,0.35902,0.34902,0.34508,0.31453,0.30193,0.29834,0.29798,0.29054,0.2807,0.27621,0.27422,0.24092,0.24088,0.21327,0.18448,0.16047,0.14047,0.13244,0.13039,0.1257,0.12171,0.1127,0.11174,0.095966,0.092278,0.085234,0.077099,0.072486,0.071979,0.068417,0.066112,0.060721,0.053387,0.052739,0.04979,0.045424,0.042121,0.041971,0.032134,0.030733,0.030079,0.028457,0.027645,0.026407,0.024536,0.023814,0.02284,0.021345,0.019539,0.017944,0.017789,0.016013,0.014932,0.014034,0.01217,0.011395,0.011124,0.010211,0.010158,0.0097805,0.0096182,0.0076871,0.0072521,0.0070892,0.006387,0.0060092,0.0059536,0.0051562,0.0038925,0.0035756,0.0034217,0.0030866,0.0030592,0.0027215,0.0026867,0.0023066,0.0021071,0.001754,0.0017249,0.001698,0.0016832,0.0016355,0.0015975,0.0015747,0.0013526,0.00131,0.00096363,0.00086824,0.00080996,0.00078791,0.00062548,0.00062294,0.00057685,0.00055642,0.00046366,0.00046098,0.00045469,0.00039641,0.00038157,0.00037643,0.00036117,0.00034232,0.00032535,0.00031685,0.00024373,0.00024147,0.00021014,0.00017023,0.00013931,0.00010506,0.00010464,9.4568e-05,8.3196e-05,7.016e-05,7.0027e-05,6.5993e-05,4.9811e-05,4.6637e-05,4.63e-05,3.3032e-05,3.0651e-05,2.9355e-05,2.5684e-05,2.2482e-05,1.7558e-05,1.6887e-05,1.3981e-05,9.1143e-06,9.0618e-06,8.7469e-06,8.1358e-06,7.6853e-06,7.1629e-06,6.5904e-06,2.9983e-06,2.4295e-06,1.7547e-06,1.3744e-06,1.3579e-06,1.3206e-06,9.1397e-07,8.3823e-07,8.3223e-07,5.8249e-07,3.1595e-07,3.0981e-07,2.5813e-07,2.4854e-07,1.6275e-07,1.4442e-07,1.1113e-07,9.6853e-08,8.3151e-08,8.0711e-08,6.7278e-08,6.5147e-08,6.4159e-08,4.2274e-08,3.7283e-08,3.5358e-08,2.9751e-08,2.8171e-08,2.1917e-08,2.0693e-08,1.8428e-08,1.3785e-08,1.3747e-08,1.1948e-08,1.1394e-08,1.1394e-08,8.3467e-09,8.2646e-09,7.2647e-09,6.3373e-09,4.6978e-09,3.5806e-09,2.9432e-09,2.1508e-09,1.6059e-09,1.0961e-09,1.0791e-09,8.0255e-10,6.026e-10,5.0852e-10,3.2181e-10,2.8116e-10,2.1348e-10,1.8125e-10,1.2857e-10,1.2397e-10,1.1499e-10,9.66e-11,6.6943e-11,4.5794e-11,3.7407e-11,3.0543e-11,2.7469e-11,2.7061e-11,2.2311e-11,1.7835e-11,8.9475e-12,7.4354e-12,6.713e-12,5.353e-12,5.3446e-12,4.2729e-12,4.1553e-12,3.568e-12,3.156e-12,2.0839e-12,1.962e-12,1.4155e-12,1.0429e-12,3.803e-13,3.1404e-13,2.8625e-13,2.2437e-13,1.7838e-13,1.6346e-13,1.3723e-13,1.2099e-13,1.0345e-13,7.9808e-14,7.9697e-14,4.9842e-14,4.3975e-14,4.2839e-14,4.2246e-14,2.6107e-14,2.5822e-14,2.4594e-14,2.3707e-14,2.1554e-14,1.8403e-14,1.5967e-14,8.4714e-15,2.1552e-15,1.4269e-15,1.3757e-15,1.3347e-15,1.2102e-15,1.146e-15,6.8132e-16,4.8264e-16,3.7516e-16,3.2569e-16,2.4219e-16,1.8811e-16,1.7945e-16,1.2561e-16,1.0256e-16,8.0019e-17,5.3604e-17,3.1521e-17,3.0466e-17,2.5433e-17,2.2431e-17,2.1199e-17,1.1575e-17,9.8003e-18,4.5767e-18,3.701e-18,2.5426e-18,2.0783e-18,1.9466e-18,1.3617e-18,1.3001e-18,1.1747e-18,9.4099e-19,6.153e-19 1,3.5603e-06,4.5526e-06,4.6087e-06,4.9611e-06,5.2498e-06,5.6538e-06,6.5247e-06,9.1431e-06,1.1303e-05,1.1676e-05,1.3799e-05,1.418e-05,1.5792e-05,2.0478e-05,2.2204e-05,2.3484e-05,2.9891e-05,3.1147e-05,3.2598e-05,3.7961e-05,3.8585e-05,3.8948e-05,4.3705e-05,4.6768e-05,4.6872e-05,5.3345e-05,5.3975e-05,5.7206e-05,5.7644e-05,5.8074e-05,8.5795e-05,0.00012364,0.00012775,0.00014205,0.00015607,0.00016785,0.00018292,0.00020204,0.00024033,0.00026423,0.0003079,0.00037249,0.00037905,0.00039336,0.00040704,0.00048573,0.00048586,0.00073482,0.00075738,0.00077018,0.0008696,0.00087737,0.00111,0.0012162,0.0012631,0.001372,0.0014456,0.0015805,0.0016247,0.0020041,0.0022773,0.0033738,0.0037495,0.0038834,0.004134,0.0048998,0.0050719,0.0052292,0.0060287,0.0068769,0.0072172,0.007507,0.0086474,0.010567,0.012993,0.014893,0.015321,0.01965,0.021379,0.022229,0.022616,0.024244,0.032062,0.032346,0.033923,0.036561,0.037099,0.041216,0.054604,0.054803,0.059187,0.06083,0.082356,0.088635,0.089112,0.095063,0.10362,0.10379,0.10451,0.10999,0.11004,0.1152,0.11725,0.14961,0.16573,0.1663,0.18611,0.19169,0.20055,0.20496,0.2076,0.21053,0.2115,0.21409,0.22472,0.22598,0.22859,0.23075,0.24744,0.26721,0.29402,0.30452,0.32741,0.35404,0.36557,0.37159,0.44113,0.4495,0.45568,0.46803,0.48389,0.49776,0.5091,0.51112,0.5124,0.5268,0.56502,0.56785,0.58299,0.6065,0.61948,0.62158,0.69509,0.69586,0.71011,0.73758,0.74251,0.76071,0.76495,0.79404,0.81237,0.85183,0.85273,0.89331,0.89761,0.89896,0.9218,0.92317,0.93071,0.94011,0.94292,0.94501,0.95287,0.95412,0.95492,0.96063,0.96255,0.96304,0.96736,0.96885,0.97651,0.98688,0.98842,0.98882,0.9922,0.99342,0.99733,1,0.99974,0.99829,0.99744,0.99417,0.98963,0.9892,0.98887,0.98883,0.98719,0.98704,0.98117,0.97812,0.97179,0.97149,0.96964,0.95649,0.95607,0.94902,0.94041,0.92358,0.92123,0.91435,0.91278,0.90875,0.90184,0.89084,0.89053,0.86387,0.83097,0.82733,0.82327,0.822,0.80072,0.78727,0.74,0.73746,0.73233,0.72362,0.69086,0.65618,0.61791,0.60639,0.59952,0.58208,0.54708,0.53181,0.51217,0.48239,0.45717,0.45268,0.40576,0.39976,0.39757,0.38705,0.3829,0.3506,0.33721,0.33339,0.33301,0.32508,0.31457,0.30976,0.30764,0.27183,0.27179,0.24188,0.21047,0.18407,0.16194,0.15301,0.15073,0.1455,0.14104,0.13095,0.12988,0.11213,0.10796,0.099986,0.09074,0.085479,0.0849,0.08083,0.07819,0.072005,0.063557,0.062809,0.0594,0.054338,0.050498,0.050324,0.038824,0.037176,0.036407,0.034497,0.033539,0.032077,0.029863,0.029008,0.027852,0.026076,0.023925,0.022021,0.021835,0.019708,0.018411,0.01733,0.015082,0.014144,0.013816,0.012708,0.012643,0.012185,0.011988,0.0096319,0.0090992,0.0088995,0.0080374,0.0075725,0.0075041,0.0065203,0.0049532,0.0045583,0.0043663,0.0039475,0.0039132,0.0034899,0.0034462,0.0029683,0.0027167,0.0022699,0.0022331,0.002199,0.0021802,0.0021196,0.0020714,0.0020425,0.0017598,0.0017054,0.0012622,0.0011396,0.0010645,0.0010361,0.00082615,0.00082286,0.00076309,0.00073656,0.00061588,0.00061238,0.00060418,0.00052808,0.00050867,0.00050194,0.00048196,0.00045726,0.000435,0.00042383,0.00032758,0.0003246,0.00028318,0.00023025,0.0001891,0.0001433,0.00014273,0.00012922,0.00011393,9.6351e-05,9.617e-05,9.072e-05,6.8795e-05,6.448e-05,6.4021e-05,4.5927e-05,4.2668e-05,4.0891e-05,3.5854e-05,3.145e-05,2.4658e-05,2.373e-05,1.9705e-05,1.293e-05,1.2856e-05,1.2416e-05,1.1561e-05,1.0931e-05,1.0198e-05,9.395e-06,4.3242e-06,3.5146e-06,2.5502e-06,2.0044e-06,1.9807e-06,1.927e-06,1.3405e-06,1.2309e-06,1.2222e-06,8.5966e-07,4.7016e-07,4.6114e-07,3.8515e-07,3.7103e-07,2.4431e-07,2.1714e-07,1.6765e-07,1.4638e-07,1.2592e-07,1.2227e-07,1.0215e-07,9.896e-08,9.7477e-08,6.4567e-08,5.7033e-08,5.4125e-08,4.564e-08,4.3246e-08,3.375e-08,3.1887e-08,2.8437e-08,2.1348e-08,2.129e-08,1.8535e-08,1.7686e-08,1.7685e-08,1.3004e-08,1.2878e-08,1.1337e-08,9.9062e-09,7.3696e-09,5.635e-09,4.6425e-09,3.405e-09,2.5508e-09,1.7487e-09,1.7219e-09,1.2849e-09,9.6791e-10,8.1836e-10,5.2052e-10,4.5545e-10,3.4687e-10,2.9503e-10,2.1007e-10,2.0263e-10,1.8811e-10,1.5832e-10,1.1014e-10,7.5652e-11,6.1929e-11,5.0673e-11,4.5624e-11,4.4954e-11,3.7137e-11,2.9756e-11,1.5035e-11,1.2518e-11,1.1313e-11,9.0423e-12,9.0283e-12,7.2343e-12,7.0372e-12,6.0519e-12,5.3597e-12,3.5537e-12,3.3478e-12,2.4231e-12,1.7907e-12,6.5945e-13,5.4556e-13,4.9772e-13,3.9105e-13,3.1158e-13,2.8575e-13,2.4029e-13,2.1211e-13,1.8164e-13,1.4047e-13,1.4027e-13,8.8113e-14,7.7832e-14,7.584e-14,7.48e-14,4.6431e-14,4.5929e-14,4.3764e-14,4.22e-14,3.8402e-14,3.2836e-14,2.8526e-14,1.5223e-14,3.9207e-15,2.6054e-15,2.5127e-15,2.4385e-15,2.2129e-15,2.0965e-15,1.2521e-15,8.8966e-16,6.9305e-16,6.0241e-16,4.4912e-16,3.4958e-16,3.3363e-16,2.3424e-16,1.916e-16,1.498e-16,1.0069e-16,5.9474e-17,5.75e-17,4.8074e-17,4.2444e-17,4.0132e-17,2.2022e-17,1.8672e-17,8.7745e-18,7.108e-18,4.8982e-18,4.0102e-18,3.7582e-18,2.6365e-18,2.5181e-18,2.2772e-18,1.8274e-18,1.199e-18 1,3.1778e-06,4.068e-06,4.1183e-06,4.4348e-06,4.6941e-06,5.057e-06,5.8398e-06,8.1963e-06,1.0143e-05,1.0479e-05,1.2395e-05,1.2738e-05,1.4193e-05,1.8428e-05,1.9989e-05,2.1148e-05,2.6949e-05,2.8087e-05,2.9403e-05,3.4266e-05,3.4832e-05,3.5162e-05,3.9479e-05,4.226e-05,4.2354e-05,4.8235e-05,4.8808e-05,5.1745e-05,5.2144e-05,5.2534e-05,7.7768e-05,0.00011229,0.00011604,0.0001291,0.00014192,0.00015269,0.00016648,0.00018398,0.00021906,0.00024097,0.00028103,0.00034035,0.00034638,0.00035954,0.00037211,0.0004445,0.00044462,0.00067409,0.00069491,0.00070673,0.00079853,0.00080571,0.0010208,0.0011191,0.0011625,0.0012634,0.0013316,0.0014567,0.0014977,0.0018499,0.0021038,0.0031249,0.0034753,0.0036003,0.0038342,0.0045499,0.0047108,0.004858,0.0056063,0.0064011,0.0067202,0.006992,0.0080624,0.009867,0.012151,0.013943,0.014347,0.018437,0.020073,0.020878,0.021244,0.022787,0.030205,0.030476,0.031975,0.034484,0.034995,0.038916,0.051689,0.051879,0.056071,0.057642,0.078273,0.084304,0.084762,0.090484,0.098715,0.098884,0.099576,0.10486,0.1049,0.10988,0.11185,0.14312,0.15873,0.15928,0.1785,0.18392,0.19253,0.19682,0.19938,0.20223,0.20317,0.20569,0.21605,0.21727,0.21982,0.22192,0.23819,0.25749,0.28372,0.29399,0.31644,0.34258,0.35392,0.35985,0.42843,0.4367,0.44281,0.45504,0.47075,0.4845,0.49575,0.49776,0.49903,0.51334,0.55137,0.55419,0.56929,0.59277,0.60575,0.60785,0.68162,0.68239,0.69675,0.72448,0.72947,0.74788,0.75218,0.78172,0.80039,0.84076,0.84169,0.88353,0.88798,0.88939,0.91318,0.91461,0.92252,0.93242,0.93539,0.9376,0.94595,0.94728,0.94813,0.95424,0.9563,0.95683,0.96149,0.9631,0.97145,0.98301,0.98476,0.98521,0.98914,0.99059,0.99542,0.99974,1,0.99936,0.9988,0.99635,0.99262,0.99225,0.99197,0.99193,0.99053,0.9904,0.98526,0.98253,0.97682,0.97654,0.97486,0.96272,0.96234,0.95575,0.94766,0.93172,0.92948,0.92292,0.92142,0.91756,0.91093,0.90036,0.90006,0.87429,0.84228,0.83872,0.83476,0.83352,0.81269,0.79949,0.75292,0.75042,0.74534,0.73673,0.70427,0.66979,0.63163,0.62012,0.61325,0.5958,0.56071,0.54538,0.52562,0.49563,0.47019,0.46565,0.41818,0.4121,0.40989,0.39921,0.39501,0.36219,0.34857,0.34468,0.34429,0.33622,0.3255,0.3206,0.31844,0.28187,0.28183,0.25122,0.21899,0.19185,0.16905,0.15983,0.15748,0.15207,0.14747,0.13704,0.13592,0.11754,0.11322,0.10494,0.09533,0.089858,0.089255,0.085018,0.08227,0.075824,0.06701,0.066228,0.062667,0.057375,0.053357,0.053175,0.04112,0.03939,0.038582,0.036575,0.035568,0.034031,0.031702,0.030802,0.029584,0.027713,0.025445,0.023436,0.02324,0.020994,0.019622,0.01848,0.016099,0.015106,0.014759,0.013584,0.013515,0.013029,0.012819,0.010317,0.0097507,0.0095383,0.0086207,0.0081256,0.0080528,0.0070041,0.005331,0.0049089,0.0047035,0.0042552,0.0042185,0.0037651,0.0037183,0.0032058,0.0029358,0.0024559,0.0024163,0.0023796,0.0023594,0.0022943,0.0022424,0.0022113,0.0019071,0.0018485,0.0013707,0.0012383,0.0011572,0.0011265,0.00089949,0.00089593,0.00083123,0.0008025,0.00067172,0.00066793,0.00065904,0.00057648,0.00055542,0.00054811,0.00052642,0.00049959,0.0004754,0.00046327,0.00035859,0.00035534,0.00031024,0.00025254,0.00020763,0.00015758,0.00015696,0.00014217,0.00012543,0.00010618,0.00010598,0.0001,7.5944e-05,7.1205e-05,7.0701e-05,5.0804e-05,4.7217e-05,4.5261e-05,3.9712e-05,3.4857e-05,2.7361e-05,2.6337e-05,2.1889e-05,1.4392e-05,1.4311e-05,1.3824e-05,1.2876e-05,1.2177e-05,1.1365e-05,1.0474e-05,4.838e-06,3.9359e-06,2.86e-06,2.2503e-06,2.2238e-06,2.1638e-06,1.5077e-06,1.3849e-06,1.3751e-06,9.6869e-07,5.3114e-07,5.2099e-07,4.3547e-07,4.1957e-07,2.7675e-07,2.461e-07,1.902e-07,1.6616e-07,1.4302e-07,1.3889e-07,1.1613e-07,1.1251e-07,1.1083e-07,7.3532e-08,6.4984e-08,6.1683e-08,5.2048e-08,4.9328e-08,3.8533e-08,3.6414e-08,3.2489e-08,2.4416e-08,2.435e-08,2.1211e-08,2.0243e-08,2.0242e-08,1.4902e-08,1.4757e-08,1.2998e-08,1.1363e-08,8.4627e-09,6.4771e-09,5.3402e-09,3.9211e-09,2.9405e-09,2.0186e-09,1.9878e-09,1.4849e-09,1.1196e-09,9.472e-10,6.0342e-10,5.2823e-10,4.0268e-10,3.4269e-10,2.4428e-10,2.3566e-10,2.1882e-10,1.8428e-10,1.2836e-10,8.8275e-11,7.231e-11,5.9207e-11,5.3326e-11,5.2545e-11,4.3435e-11,3.4828e-11,1.7637e-11,1.4692e-11,1.3283e-11,1.0624e-11,1.0608e-11,8.5058e-12,8.2747e-12,7.1195e-12,6.3076e-12,4.1876e-12,3.9457e-12,2.8588e-12,2.1146e-12,7.8111e-13,6.4658e-13,5.9005e-13,4.6393e-13,3.6989e-13,3.3931e-13,2.8549e-13,2.521e-13,2.1598e-13,1.6715e-13,1.6692e-13,1.0499e-13,9.2777e-14,9.0411e-14,8.9174e-14,5.543e-14,5.4832e-14,5.2255e-14,5.0393e-14,4.587e-14,3.9239e-14,3.4102e-14,1.8231e-14,4.7135e-15,3.1358e-15,3.0245e-15,2.9354e-15,2.6646e-15,2.5248e-15,1.51e-15,1.0739e-15,8.3717e-16,7.2795e-16,5.4314e-16,4.2305e-16,4.038e-16,2.8378e-16,2.3224e-16,1.8169e-16,1.2225e-16,7.2312e-17,6.9918e-17,5.8483e-17,5.1651e-17,4.8845e-17,2.6845e-17,2.2771e-17,1.0722e-17,8.6898e-18,5.9939e-18,4.9098e-18,4.602e-18,3.2314e-18,3.0866e-18,2.7921e-18,2.2417e-18,1.4724e-18 1,2.6522e-06,3.4011e-06,3.4435e-06,3.7101e-06,3.9287e-06,4.2347e-06,4.8953e-06,6.8878e-06,8.5369e-06,8.8218e-06,1.0448e-05,1.074e-05,1.1977e-05,1.5581e-05,1.6912e-05,1.7899e-05,2.2853e-05,2.3825e-05,2.495e-05,2.9112e-05,2.9597e-05,2.9879e-05,3.3579e-05,3.5964e-05,3.6044e-05,4.1092e-05,4.1583e-05,4.4106e-05,4.4449e-05,4.4785e-05,6.6509e-05,9.6325e-05,9.957e-05,0.00011088,0.00012199,0.00013133,0.00014329,0.00015849,0.00018899,0.00020807,0.00024299,0.00029479,0.00030005,0.00031156,0.00032255,0.00038592,0.00038603,0.00058751,0.00060582,0.00061623,0.00069708,0.0007034,0.00089321,0.00098009,0.0010185,0.0011077,0.0011682,0.0012791,0.0013154,0.0016282,0.0018541,0.0027653,0.0030788,0.0031908,0.0034004,0.0040426,0.0041871,0.0043194,0.0049926,0.0057089,0.0059968,0.0062421,0.0072095,0.0088439,0.010918,0.012549,0.012917,0.016652,0.018149,0.018887,0.019222,0.020637,0.027458,0.027707,0.029089,0.031404,0.031876,0.0355,0.047345,0.047521,0.05142,0.052883,0.072149,0.077801,0.07823,0.0836,0.091336,0.091495,0.092146,0.097115,0.097161,0.10185,0.10371,0.13328,0.14809,0.14862,0.16691,0.17208,0.1803,0.18439,0.18684,0.18957,0.19047,0.19288,0.20279,0.20397,0.2064,0.20842,0.22403,0.24259,0.26787,0.2778,0.29951,0.32488,0.3359,0.34167,0.40865,0.41676,0.42276,0.43476,0.45021,0.46376,0.47486,0.47685,0.47809,0.49223,0.52991,0.5327,0.54771,0.57109,0.58404,0.58614,0.66016,0.66094,0.67543,0.7035,0.70856,0.72728,0.73166,0.76183,0.78099,0.82269,0.82365,0.86737,0.87206,0.87354,0.89878,0.9003,0.90877,0.91943,0.92264,0.92503,0.93412,0.93558,0.93652,0.94324,0.94551,0.9461,0.95128,0.95308,0.9625,0.97589,0.97797,0.97851,0.98329,0.98509,0.99138,0.99829,0.99936,1,0.99991,0.99877,0.99631,0.99606,0.99585,0.99583,0.9948,0.9947,0.99072,0.98853,0.98379,0.98356,0.98214,0.97165,0.97131,0.96548,0.95824,0.94374,0.94169,0.93565,0.93426,0.9307,0.92454,0.91466,0.91438,0.8901,0.85958,0.85618,0.85237,0.85118,0.83112,0.81834,0.77301,0.77056,0.7656,0.75716,0.72524,0.69116,0.65327,0.6418,0.63494,0.61752,0.58235,0.56695,0.54706,0.51678,0.49102,0.48641,0.43815,0.43194,0.42969,0.41879,0.41449,0.38091,0.36693,0.36294,0.36254,0.35424,0.34322,0.33818,0.33595,0.29821,0.29816,0.26645,0.23294,0.20462,0.18074,0.17106,0.16859,0.16291,0.15807,0.14708,0.14591,0.1265,0.12192,0.11315,0.10296,0.097143,0.096503,0.091994,0.089067,0.082195,0.07278,0.071944,0.068134,0.062463,0.058151,0.057956,0.044984,0.043118,0.042246,0.040078,0.03899,0.037328,0.034806,0.033831,0.032512,0.030482,0.02802,0.025835,0.025622,0.023176,0.021681,0.020434,0.017833,0.016746,0.016365,0.015078,0.015003,0.014469,0.014239,0.01149,0.010866,0.010632,0.0096208,0.0090745,0.0089941,0.0078353,0.0059819,0.0055133,0.005285,0.0047866,0.0047457,0.0042409,0.0041887,0.0036171,0.0033155,0.0027787,0.0027343,0.0026933,0.0026706,0.0025977,0.0025395,0.0025046,0.0021633,0.0020976,0.00156,0.0014107,0.0013192,0.0012846,0.0010279,0.0010239,0.00095062,0.00091808,0.00076975,0.00076545,0.00075536,0.00066156,0.0006376,0.00062929,0.00060461,0.00057407,0.00054653,0.00053271,0.00041329,0.00040958,0.00035804,0.00029198,0.00024046,0.00018293,0.00018222,0.00016519,0.0001459,0.00012367,0.00012344,0.00011654,8.8704e-05,8.3212e-05,8.2628e-05,5.9535e-05,5.5364e-05,5.3088e-05,4.6628e-05,4.097e-05,3.2221e-05,3.1024e-05,2.5822e-05,1.7033e-05,1.6937e-05,1.6364e-05,1.5251e-05,1.4429e-05,1.3474e-05,1.2425e-05,5.772e-06,4.7026e-06,3.4249e-06,2.6994e-06,2.6678e-06,2.5963e-06,1.8136e-06,1.6669e-06,1.6552e-06,1.1688e-06,6.4346e-07,6.3125e-07,5.2825e-07,5.0909e-07,3.3672e-07,2.9965e-07,2.3198e-07,2.0283e-07,1.7475e-07,1.6974e-07,1.4208e-07,1.3768e-07,1.3564e-07,9.0225e-08,7.9797e-08,7.5768e-08,6.4001e-08,6.0676e-08,4.747e-08,4.4875e-08,4.0066e-08,3.0163e-08,3.0082e-08,2.6225e-08,2.5036e-08,2.5034e-08,1.8463e-08,1.8286e-08,1.6118e-08,1.4102e-08,1.0521e-08,8.0648e-09,6.6566e-09,4.8965e-09,3.678e-09,2.5302e-09,2.4919e-09,1.8645e-09,1.4081e-09,1.1923e-09,7.6149e-10,6.6708e-10,5.0928e-10,4.3379e-10,3.0979e-10,2.9892e-10,2.7767e-10,2.3405e-10,1.6335e-10,1.1256e-10,9.2296e-11,7.5651e-11,6.8173e-11,6.718e-11,5.5588e-11,4.4623e-11,2.2676e-11,1.8908e-11,1.7103e-11,1.3695e-11,1.3674e-11,1.0976e-11,1.068e-11,9.1958e-12,8.152e-12,5.4231e-12,5.1113e-12,3.7092e-12,2.7477e-12,1.0199e-12,8.4498e-13,7.7144e-13,6.0724e-13,4.8468e-13,4.4479e-13,3.7454e-13,3.3093e-13,2.8372e-13,2.1984e-13,2.1954e-13,1.3839e-13,1.2236e-13,1.1925e-13,1.1763e-13,7.3276e-14,7.2489e-14,6.9097e-14,6.6647e-14,6.069e-14,5.1954e-14,4.5181e-14,2.4223e-14,6.3005e-15,4.199e-15,4.0506e-15,3.9319e-15,3.5707e-15,3.3841e-15,2.0285e-15,1.4448e-15,1.1275e-15,9.8097e-16,7.3284e-16,5.7141e-16,5.4552e-16,3.8395e-16,3.1448e-16,2.4629e-16,1.66e-16,9.84e-17,9.5156e-17,7.9653e-17,7.0383e-17,6.6575e-17,3.668e-17,3.1134e-17,1.4704e-17,1.1928e-17,8.2398e-18,6.7549e-18,6.3331e-18,4.4531e-18,4.2545e-18,3.8499e-18,3.0938e-18,2.0354e-18 1,2.4808e-06,3.1835e-06,3.2233e-06,3.4735e-06,3.6787e-06,3.966e-06,4.5865e-06,6.4592e-06,8.0103e-06,8.2784e-06,9.809e-06,1.0083e-05,1.1248e-05,1.4644e-05,1.5898e-05,1.683e-05,2.1502e-05,2.242e-05,2.3481e-05,2.741e-05,2.7868e-05,2.8134e-05,3.1629e-05,3.3882e-05,3.3958e-05,3.8728e-05,3.9193e-05,4.1578e-05,4.1902e-05,4.222e-05,6.2773e-05,9.1017e-05,9.4092e-05,0.00010481,0.00011535,0.00012421,0.00013556,0.00014999,0.00017895,0.00019708,0.00023027,0.00027953,0.00028454,0.00029548,0.00030595,0.00036627,0.00036637,0.00055838,0.00057585,0.00058577,0.00066291,0.00066894,0.00085016,0.00093315,0.00096985,0.0010552,0.0011129,0.001219,0.0012537,0.0015531,0.0017694,0.0026429,0.0029438,0.0030512,0.0032525,0.0038694,0.0040084,0.0041354,0.0047828,0.0054719,0.005749,0.0059853,0.006917,0.0084924,0.010494,0.012069,0.012425,0.016035,0.017483,0.018197,0.018522,0.019892,0.026504,0.026745,0.028086,0.030332,0.030791,0.03431,0.045827,0.045999,0.049793,0.051218,0.069998,0.075515,0.075934,0.081177,0.088736,0.088891,0.089527,0.094386,0.09443,0.099014,0.10083,0.12979,0.14432,0.14483,0.16279,0.16787,0.17594,0.17997,0.18237,0.18506,0.18594,0.18831,0.19806,0.19922,0.20162,0.2036,0.21897,0.23725,0.26219,0.27198,0.29343,0.31851,0.32941,0.33511,0.40149,0.40953,0.41549,0.4274,0.44275,0.45622,0.46726,0.46923,0.47047,0.48453,0.52206,0.52485,0.53981,0.56314,0.57607,0.57818,0.65223,0.65302,0.66755,0.69572,0.7008,0.71962,0.72403,0.75441,0.77373,0.81588,0.81685,0.86123,0.866,0.86751,0.89325,0.89481,0.90348,0.9144,0.9177,0.92016,0.92952,0.93102,0.93199,0.93892,0.94127,0.94188,0.94725,0.94912,0.95892,0.97297,0.97518,0.97575,0.98083,0.98276,0.98958,0.99744,0.9988,0.99991,1,0.99933,0.99735,0.99714,0.99696,0.99694,0.99605,0.99597,0.99242,0.99042,0.98605,0.98584,0.98451,0.97463,0.97431,0.96877,0.96185,0.9479,0.94591,0.94007,0.93873,0.93527,0.92929,0.91968,0.91941,0.89569,0.86575,0.8624,0.85866,0.85749,0.83772,0.82512,0.78028,0.77785,0.77293,0.76456,0.73286,0.69897,0.66119,0.64975,0.6429,0.6255,0.59033,0.5749,0.55497,0.52461,0.49874,0.49412,0.44558,0.43933,0.43706,0.42609,0.42176,0.38791,0.3738,0.36977,0.36937,0.36099,0.34986,0.34477,0.34251,0.30435,0.30431,0.27219,0.23822,0.20945,0.18518,0.17533,0.17282,0.16703,0.1621,0.15091,0.14971,0.12992,0.12525,0.1163,0.10588,0.099935,0.09928,0.094669,0.091675,0.084642,0.075,0.074143,0.070238,0.064424,0.060001,0.0598,0.046478,0.04456,0.043664,0.041435,0.040316,0.038605,0.036011,0.035007,0.033648,0.031558,0.029021,0.026769,0.026549,0.024026,0.022483,0.021196,0.01851,0.017386,0.016993,0.015662,0.015584,0.015033,0.014795,0.01195,0.011304,0.011062,0.010014,0.0094474,0.009364,0.0081624,0.0062387,0.0057518,0.0055147,0.0049965,0.0049541,0.004429,0.0043748,0.00378,0.003466,0.0029068,0.0028606,0.0028178,0.0027941,0.0027181,0.0026575,0.0026211,0.0022652,0.0021966,0.0016354,0.0014795,0.0013839,0.0013476,0.0010792,0.001075,0.00099837,0.00096431,0.00080901,0.0008045,0.00079394,0.00069566,0.00067056,0.00066185,0.00063598,0.00060396,0.00057508,0.00056059,0.00043529,0.0004314,0.00037727,0.00030788,0.00025371,0.00019318,0.00019243,0.0001745,0.00015418,0.00013076,0.00013052,0.00012324,9.3885e-05,8.809e-05,8.7473e-05,6.3088e-05,5.8681e-05,5.6275e-05,4.9446e-05,4.3463e-05,3.4205e-05,3.2938e-05,2.743e-05,1.8114e-05,1.8013e-05,1.7406e-05,1.6225e-05,1.5353e-05,1.4339e-05,1.3226e-05,6.1568e-06,5.019e-06,3.6583e-06,2.8852e-06,2.8515e-06,2.7753e-06,1.9404e-06,1.7838e-06,1.7714e-06,1.2519e-06,6.9024e-07,6.7718e-07,5.6694e-07,5.4642e-07,3.6177e-07,3.2203e-07,2.4946e-07,2.1818e-07,1.8805e-07,1.8267e-07,1.5296e-07,1.4824e-07,1.4605e-07,9.7239e-08,8.6025e-08,8.1692e-08,6.9031e-08,6.5453e-08,5.1236e-08,4.8441e-08,4.3261e-08,3.2589e-08,3.2501e-08,2.8344e-08,2.7061e-08,2.7059e-08,1.997e-08,1.9778e-08,1.7439e-08,1.5262e-08,1.1393e-08,8.7388e-09,7.2159e-09,5.3113e-09,3.9921e-09,2.7485e-09,2.7069e-09,2.0266e-09,1.5314e-09,1.2972e-09,8.2921e-10,7.266e-10,5.5502e-10,4.7291e-10,3.3795e-10,3.2611e-10,3.0298e-10,2.5547e-10,1.7842e-10,1.2303e-10,1.0092e-10,8.2755e-11,7.4591e-11,7.3506e-11,6.0845e-11,4.8863e-11,2.4862e-11,2.0738e-11,1.8762e-11,1.5029e-11,1.5006e-11,1.2051e-11,1.1726e-11,1.0099e-11,8.9551e-12,5.9618e-12,5.6196e-12,4.0804e-12,3.0243e-12,1.1246e-12,9.3203e-13,8.5105e-13,6.7018e-13,5.3513e-13,4.9116e-13,4.1371e-13,3.6562e-13,3.1355e-13,2.4306e-13,2.4272e-13,1.5313e-13,1.3541e-13,1.3198e-13,1.3019e-13,8.1167e-14,8.0296e-14,7.6545e-14,7.3835e-14,6.7247e-14,5.7582e-14,5.0087e-14,2.6881e-14,7.0074e-15,4.6732e-15,4.5083e-15,4.3764e-15,3.9749e-15,3.7675e-15,2.2602e-15,1.6107e-15,1.2574e-15,1.0943e-15,8.1788e-16,6.3797e-16,6.091e-16,4.2894e-16,3.5144e-16,2.7534e-16,1.8569e-16,1.1016e-16,1.0654e-16,8.9202e-17,7.8836e-17,7.4577e-17,4.1126e-17,3.4917e-17,1.6509e-17,1.3396e-17,9.2592e-18,7.5929e-18,7.1194e-18,5.0086e-18,4.7855e-18,4.3311e-18,3.4816e-18,2.2919e-18 1,2.0595e-06,2.6476e-06,2.6809e-06,2.8906e-06,3.0626e-06,3.3036e-06,3.8246e-06,5.3998e-06,6.7074e-06,6.9336e-06,8.2262e-06,8.458e-06,9.443e-06,1.2319e-05,1.3382e-05,1.4173e-05,1.8142e-05,1.8923e-05,1.9826e-05,2.3172e-05,2.3562e-05,2.3789e-05,2.6768e-05,2.8691e-05,2.8756e-05,3.283e-05,3.3228e-05,3.5267e-05,3.5544e-05,3.5815e-05,5.3424e-05,7.7703e-05,8.0352e-05,8.9588e-05,9.8674e-05,0.00010632,0.00011613,0.0001286,0.00015367,0.00016938,0.00019818,0.00024099,0.00024535,0.00025487,0.00026398,0.00031655,0.00031664,0.00048448,0.00049978,0.00050848,0.00057611,0.00058141,0.00074062,0.00081365,0.00084598,0.00092115,0.0009721,0.0010657,0.0010963,0.0013611,0.0015527,0.002329,0.0025971,0.0026929,0.0028726,0.0034238,0.0035481,0.0036619,0.004242,0.0048605,0.0051095,0.0053219,0.0061606,0.007582,0.0093924,0.010821,0.011144,0.014428,0.015748,0.0164,0.016697,0.017948,0.024005,0.024226,0.025458,0.027523,0.027945,0.031186,0.041827,0.041987,0.045503,0.046825,0.064304,0.069455,0.069847,0.074751,0.081831,0.081976,0.082573,0.08713,0.087172,0.091477,0.093187,0.12048,0.13423,0.13471,0.15175,0.15658,0.16426,0.16809,0.17038,0.17294,0.17378,0.17604,0.18534,0.18645,0.18874,0.19063,0.20533,0.22286,0.24682,0.25625,0.27694,0.3012,0.31176,0.31729,0.38191,0.38977,0.3956,0.40727,0.42231,0.43553,0.44638,0.44832,0.44954,0.46339,0.50044,0.5032,0.51802,0.54117,0.55403,0.55613,0.63017,0.63095,0.64556,0.67397,0.67911,0.69816,0.70263,0.73352,0.75326,0.79657,0.79757,0.84365,0.84864,0.85022,0.87731,0.87896,0.88815,0.89979,0.90332,0.90595,0.91602,0.91764,0.91869,0.92622,0.92877,0.92943,0.93531,0.93736,0.9482,0.96405,0.96658,0.96724,0.97316,0.97545,0.98371,0.99417,0.99635,0.99877,0.99933,1,0.99934,0.99923,0.99914,0.99913,0.99862,0.99858,0.99623,0.99479,0.99144,0.99127,0.99022,0.98208,0.98181,0.97707,0.97104,0.95864,0.95686,0.95158,0.95036,0.94721,0.94175,0.9329,0.93265,0.91056,0.8823,0.87912,0.87556,0.87444,0.85555,0.84345,0.80007,0.79771,0.79292,0.78477,0.75376,0.72042,0.68306,0.6717,0.6649,0.64758,0.61246,0.59702,0.57702,0.54646,0.52034,0.51566,0.46644,0.46009,0.45778,0.4466,0.44219,0.40762,0.39318,0.38906,0.38864,0.38005,0.36862,0.36339,0.36107,0.32177,0.32172,0.28851,0.25324,0.22327,0.19789,0.18757,0.18493,0.17886,0.17368,0.1619,0.16064,0.13977,0.13484,0.12536,0.11432,0.10801,0.10731,0.10241,0.099224,0.091734,0.081444,0.080528,0.076352,0.070127,0.065384,0.065169,0.050844,0.048776,0.047809,0.045402,0.044194,0.042345,0.039539,0.038452,0.03698,0.034714,0.03196,0.029512,0.029273,0.026527,0.024845,0.023442,0.020507,0.019278,0.018847,0.017389,0.017304,0.016699,0.016438,0.013312,0.012601,0.012334,0.011179,0.010554,0.010462,0.0091347,0.0070036,0.0064631,0.0061995,0.0056233,0.005576,0.0049913,0.0049309,0.0042673,0.0039165,0.0032909,0.0032391,0.0031911,0.0031647,0.0030795,0.0030115,0.0029708,0.0025713,0.0024942,0.0018627,0.0016868,0.0015788,0.0015379,0.0012343,0.0012296,0.0011427,0.0011041,0.00092788,0.00092276,0.00091076,0.00079904,0.00077047,0.00076056,0.00073111,0.00069464,0.00066173,0.00064521,0.00050219,0.00049774,0.00043583,0.00035632,0.00029415,0.00022451,0.00022365,0.00020299,0.00017954,0.00015249,0.00015221,0.0001438,0.0001098,0.00010307,0.00010236,7.4026e-05,6.8896e-05,6.6095e-05,5.8136e-05,5.1154e-05,4.0337e-05,3.8855e-05,3.2404e-05,2.147e-05,2.1351e-05,2.0636e-05,1.9247e-05,1.822e-05,1.7026e-05,1.5713e-05,7.3575e-06,6.0069e-06,4.3886e-06,3.4671e-06,3.4268e-06,3.3359e-06,2.3384e-06,2.151e-06,2.1361e-06,1.5134e-06,8.3784e-07,8.2209e-07,6.8909e-07,6.6432e-07,4.4105e-07,3.9292e-07,3.0489e-07,2.669e-07,2.3025e-07,2.2371e-07,1.8755e-07,1.818e-07,1.7912e-07,1.1958e-07,1.0587e-07,1.0057e-07,8.5074e-08,8.0692e-08,6.3262e-08,5.9833e-08,5.3473e-08,4.0353e-08,4.0245e-08,3.5126e-08,3.3546e-08,3.3544e-08,2.4803e-08,2.4566e-08,2.1676e-08,1.8986e-08,1.4199e-08,1.0908e-08,9.0173e-09,6.6494e-09,5.0062e-09,3.4542e-09,3.4022e-09,2.5514e-09,1.9311e-09,1.6373e-09,1.0493e-09,9.2015e-10,7.0393e-10,6.0032e-10,4.298e-10,4.1483e-10,3.8556e-10,3.254e-10,2.2771e-10,1.5734e-10,1.292e-10,1.0606e-10,9.5646e-11,9.4263e-11,7.8105e-11,6.2797e-11,3.2066e-11,2.6772e-11,2.4234e-11,1.9435e-11,1.9405e-11,1.5601e-11,1.5183e-11,1.3087e-11,1.1611e-11,7.746e-12,7.3036e-12,5.3117e-12,3.9429e-12,1.4733e-12,1.2222e-12,1.1165e-12,8.8026e-13,7.0365e-13,6.461e-13,5.4467e-13,4.8164e-13,4.1335e-13,3.2081e-13,3.2038e-13,2.0256e-13,1.7924e-13,1.7471e-13,1.7235e-13,1.0769e-13,1.0654e-13,1.0159e-13,9.8009e-14,8.9302e-14,7.6523e-14,6.6607e-14,3.585e-14,9.403e-15,6.2824e-15,6.0616e-15,5.885e-15,5.3475e-15,5.0697e-15,3.0484e-15,2.1756e-15,1.7003e-15,1.4806e-15,1.108e-15,8.6523e-16,8.2625e-16,5.8274e-16,4.7787e-16,3.7478e-16,2.5318e-16,1.5054e-16,1.4561e-16,1.2201e-16,1.0789e-16,1.0208e-16,5.6435e-17,4.7947e-17,2.2741e-17,1.8469e-17,1.2785e-17,1.0493e-17,9.841e-18,6.9333e-18,6.6257e-18,5.999e-18,4.8266e-18,3.1828e-18 1,1.7094e-06,2.2014e-06,2.2294e-06,2.405e-06,2.5492e-06,2.7514e-06,3.1886e-06,4.5133e-06,5.6152e-06,5.8059e-06,6.8971e-06,7.0929e-06,7.9255e-06,1.036e-05,1.1262e-05,1.1932e-05,1.5303e-05,1.5967e-05,1.6735e-05,1.9583e-05,1.9915e-05,2.0109e-05,2.2648e-05,2.4289e-05,2.4344e-05,2.7822e-05,2.8162e-05,2.9904e-05,3.0141e-05,3.0373e-05,4.5453e-05,6.6314e-05,6.8594e-05,7.6549e-05,8.4381e-05,9.0979e-05,9.9442e-05,0.00011022,0.00013191,0.00014551,0.00017049,0.00020768,0.00021147,0.00021976,0.00022768,0.00027347,0.00027354,0.00042017,0.00043357,0.00044118,0.00050045,0.0005051,0.00064489,0.00070912,0.00073757,0.00080377,0.00084868,0.00093119,0.00095827,0.0011922,0.0013619,0.0020512,0.00229,0.0023754,0.0025356,0.0030278,0.003139,0.0032407,0.0037601,0.0043149,0.0045385,0.0047293,0.0054836,0.0067649,0.0084014,0.0096952,0.0099882,0.012973,0.014176,0.01477,0.015041,0.016182,0.021726,0.021929,0.023059,0.024956,0.025344,0.028325,0.038148,0.038296,0.041552,0.042776,0.059025,0.06383,0.064196,0.068777,0.075401,0.075537,0.076096,0.080366,0.080406,0.084444,0.086048,0.11174,0.12473,0.12519,0.14134,0.14591,0.15321,0.15686,0.15904,0.16147,0.16227,0.16442,0.17329,0.17434,0.17652,0.17833,0.19237,0.20914,0.23213,0.2412,0.26113,0.28455,0.29477,0.30012,0.36292,0.37059,0.37628,0.38768,0.4024,0.41535,0.426,0.42791,0.4291,0.44271,0.47921,0.48194,0.49658,0.51951,0.53226,0.53434,0.60817,0.60896,0.62361,0.65216,0.65734,0.67657,0.68108,0.7124,0.73248,0.7768,0.77783,0.82545,0.83064,0.83228,0.86061,0.86234,0.87202,0.88433,0.88808,0.89087,0.90161,0.90335,0.90447,0.91255,0.91531,0.91602,0.92237,0.9246,0.93643,0.954,0.95685,0.9576,0.96433,0.96695,0.97662,0.98963,0.99262,0.99631,0.99735,0.99934,1,1,0.99999,0.99998,0.99987,0.99985,0.99872,0.99783,0.99551,0.99539,0.99461,0.98823,0.98801,0.98409,0.97898,0.96817,0.96659,0.96189,0.96079,0.95797,0.95303,0.94498,0.94475,0.92437,0.89788,0.89487,0.8915,0.89044,0.87249,0.86093,0.81916,0.81687,0.81223,0.80431,0.7741,0.74141,0.70458,0.69334,0.68661,0.66941,0.63445,0.61902,0.599,0.56832,0.54201,0.5373,0.4875,0.48105,0.4787,0.46735,0.46286,0.42764,0.41289,0.40867,0.40825,0.39946,0.38776,0.38239,0.38001,0.33961,0.33956,0.3053,0.26876,0.23759,0.2111,0.20031,0.19754,0.19119,0.18575,0.17339,0.17207,0.1501,0.1449,0.13489,0.12321,0.11652,0.11579,0.11058,0.1072,0.09924,0.088279,0.087303,0.082846,0.076195,0.071119,0.070889,0.055515,0.05329,0.052249,0.049657,0.048354,0.04636,0.04333,0.042156,0.040564,0.038112,0.035129,0.032474,0.032215,0.029232,0.027403,0.025874,0.022675,0.021333,0.020863,0.019268,0.019175,0.018513,0.018228,0.0148,0.014019,0.013726,0.012455,0.011768,0.011666,0.010202,0.0078464,0.0072474,0.0069552,0.0063158,0.0062633,0.0056135,0.0055462,0.0048075,0.0044164,0.003718,0.0036601,0.0036065,0.0035768,0.0034816,0.0034055,0.0033599,0.0029126,0.0028262,0.002117,0.001919,0.0017974,0.0017513,0.0014087,0.0014033,0.0013051,0.0012614,0.0010619,0.0010561,0.0010425,0.00091578,0.00088335,0.00087209,0.00083864,0.00079719,0.00075978,0.00074099,0.00057809,0.00057302,0.00050236,0.00041147,0.00034027,0.00026034,0.00025935,0.00023559,0.0002086,0.00017742,0.0001771,0.00016739,0.00012811,0.00012033,0.0001195,8.666e-05,8.0702e-05,7.7448e-05,6.8194e-05,6.0067e-05,4.7457e-05,4.5727e-05,3.819e-05,2.5386e-05,2.5246e-05,2.4408e-05,2.2777e-05,2.1571e-05,2.0168e-05,1.8625e-05,8.7711e-06,7.1717e-06,5.2517e-06,4.1561e-06,4.1082e-06,4e-06,2.811e-06,2.5873e-06,2.5695e-06,1.8249e-06,1.0144e-06,9.955e-07,8.3546e-07,8.0563e-07,5.3635e-07,4.7818e-07,3.7167e-07,3.2565e-07,2.8121e-07,2.7327e-07,2.2937e-07,2.2238e-07,2.1913e-07,1.4666e-07,1.2995e-07,1.2349e-07,1.0457e-07,9.9219e-08,7.7908e-08,7.3711e-08,6.5921e-08,4.9834e-08,4.9702e-08,4.3418e-08,4.1476e-08,4.1473e-08,3.0723e-08,3.0431e-08,2.6872e-08,2.3556e-08,1.7647e-08,1.3579e-08,1.1238e-08,8.3021e-09,6.261e-09,4.3293e-09,4.2645e-09,3.2034e-09,2.4285e-09,2.061e-09,1.3241e-09,1.162e-09,8.903e-10,7.5993e-10,5.4509e-10,5.262e-10,4.8927e-10,4.1332e-10,2.8979e-10,2.0064e-10,1.6494e-10,1.3553e-10,1.2229e-10,1.2054e-10,9.9974e-11,8.0473e-11,4.1237e-11,3.4462e-11,3.121e-11,2.5059e-11,2.5021e-11,2.0139e-11,1.9601e-11,1.6908e-11,1.501e-11,1.0035e-11,9.4642e-12,6.8942e-12,5.1252e-12,1.9245e-12,1.598e-12,1.4604e-12,1.1527e-12,9.2245e-13,8.4736e-13,7.1492e-13,6.3257e-13,5.4328e-13,4.2217e-13,4.2159e-13,2.6714e-13,2.3651e-13,2.3057e-13,2.2747e-13,1.4245e-13,1.4094e-13,1.3441e-13,1.297e-13,1.1823e-13,1.0138e-13,8.8302e-14,4.7663e-14,1.2578e-14,8.419e-15,8.1245e-15,7.8889e-15,7.1714e-15,6.8005e-15,4.0983e-15,2.9293e-15,2.2919e-15,1.9969e-15,1.4963e-15,1.1697e-15,1.1172e-15,7.8916e-16,6.477e-16,5.0851e-16,3.441e-16,2.0505e-16,1.9836e-16,1.6634e-16,1.4716e-16,1.3928e-16,7.719e-17,6.5625e-17,3.1223e-17,2.5379e-17,1.7595e-17,1.4452e-17,1.3558e-17,9.5657e-18,9.143e-18,8.2816e-18,6.669e-18,4.4051e-18 1,1.6835e-06,2.1684e-06,2.1959e-06,2.3691e-06,2.5112e-06,2.7104e-06,3.1414e-06,4.4474e-06,5.534e-06,5.7221e-06,6.7982e-06,6.9914e-06,7.8126e-06,1.0214e-05,1.1104e-05,1.1765e-05,1.5091e-05,1.5746e-05,1.6504e-05,1.9315e-05,1.9642e-05,1.9833e-05,2.234e-05,2.3959e-05,2.4014e-05,2.7447e-05,2.7782e-05,2.9503e-05,2.9736e-05,2.9965e-05,4.4855e-05,6.5459e-05,6.771e-05,7.5568e-05,8.3305e-05,8.9824e-05,9.8186e-05,0.00010883,0.00013027,0.00014371,0.0001684,0.00020516,0.00020891,0.0002171,0.00022494,0.0002702,0.00027028,0.00041529,0.00042855,0.00043608,0.00049471,0.0004993,0.00063761,0.00070117,0.00072932,0.00079483,0.00083927,0.00092095,0.00094775,0.0011793,0.0013473,0.00203,0.0022665,0.0023511,0.0025097,0.0029975,0.0031076,0.0032084,0.0037231,0.0042729,0.0044945,0.0046837,0.0054314,0.0067019,0.0083248,0.0096081,0.0098988,0.01286,0.014054,0.014644,0.014912,0.016045,0.021548,0.02175,0.022872,0.024756,0.025141,0.028102,0.037861,0.038007,0.041242,0.04246,0.058611,0.063388,0.063752,0.068307,0.074895,0.07503,0.075586,0.079834,0.079873,0.083889,0.085486,0.11105,0.12398,0.12444,0.14051,0.14507,0.15234,0.15596,0.15813,0.16056,0.16136,0.1635,0.17233,0.17338,0.17555,0.17735,0.19134,0.20805,0.23096,0.24,0.25986,0.28321,0.2934,0.29875,0.3614,0.36905,0.37472,0.3861,0.4008,0.41372,0.42435,0.42626,0.42745,0.44104,0.47749,0.48021,0.49484,0.51775,0.5305,0.53257,0.60638,0.60717,0.62181,0.65037,0.65556,0.6748,0.67932,0.71066,0.73077,0.77516,0.7762,0.82393,0.82914,0.83078,0.85921,0.86095,0.87066,0.88303,0.88679,0.8896,0.9004,0.90214,0.90327,0.91139,0.91416,0.91488,0.92127,0.92352,0.93542,0.95313,0.95601,0.95676,0.96356,0.9662,0.97599,0.9892,0.99225,0.99606,0.99714,0.99923,1,1,1,1,0.99991,0.9999,0.99887,0.99802,0.99579,0.99567,0.99492,0.98867,0.98846,0.9846,0.97957,0.96889,0.96733,0.96268,0.96159,0.9588,0.9539,0.94592,0.94569,0.92545,0.89911,0.89612,0.89276,0.89171,0.87384,0.86232,0.82069,0.8184,0.81377,0.80588,0.77573,0.74311,0.70633,0.6951,0.68837,0.67119,0.63624,0.62081,0.6008,0.57011,0.54379,0.53907,0.48923,0.48277,0.48042,0.46906,0.46457,0.42929,0.41452,0.41029,0.40986,0.40106,0.38934,0.38396,0.38158,0.34109,0.34104,0.30669,0.27005,0.23879,0.21221,0.20137,0.1986,0.19222,0.18676,0.17436,0.17303,0.15097,0.14574,0.13569,0.12396,0.11724,0.1165,0.11127,0.10787,0.099873,0.088857,0.087875,0.083395,0.076708,0.071605,0.071373,0.055912,0.053673,0.052626,0.050018,0.048707,0.046701,0.043652,0.042471,0.040869,0.038401,0.035399,0.032727,0.032466,0.029463,0.027621,0.026082,0.02286,0.021509,0.021035,0.019429,0.019335,0.018669,0.018381,0.014928,0.014141,0.013845,0.012565,0.011872,0.01177,0.010294,0.007919,0.0073151,0.0070204,0.0063755,0.0063226,0.0056672,0.0055994,0.0048542,0.0044597,0.0037549,0.0036965,0.0036424,0.0036125,0.0035164,0.0034397,0.0033937,0.0029422,0.002855,0.0021391,0.0019392,0.0018164,0.0017698,0.0014239,0.0014184,0.0013193,0.0012752,0.0010736,0.0010677,0.001054,0.00092597,0.00089321,0.00088183,0.00084803,0.00080615,0.00076835,0.00074936,0.00058474,0.00057961,0.00050819,0.00041631,0.00034432,0.00026349,0.00026248,0.00023846,0.00021116,0.00017962,0.00017929,0.00016947,0.00012972,0.00012185,0.00012102,8.7776e-05,8.1746e-05,7.8452e-05,6.9083e-05,6.0856e-05,4.8088e-05,4.6336e-05,3.8704e-05,2.5734e-05,2.5593e-05,2.4743e-05,2.3091e-05,2.1869e-05,2.0447e-05,1.8884e-05,8.8973e-06,7.2758e-06,5.329e-06,4.2178e-06,4.1692e-06,4.0595e-06,2.8534e-06,2.6264e-06,2.6084e-06,1.8528e-06,1.0303e-06,1.0111e-06,8.4864e-07,8.1836e-07,5.4495e-07,4.8588e-07,3.7771e-07,3.3096e-07,2.8582e-07,2.7775e-07,2.3315e-07,2.2605e-07,2.2275e-07,1.4912e-07,1.3214e-07,1.2557e-07,1.0634e-07,1.009e-07,7.9238e-08,7.4972e-08,6.7053e-08,5.0697e-08,5.0563e-08,4.4172e-08,4.2198e-08,4.2195e-08,3.1262e-08,3.0966e-08,2.7346e-08,2.3973e-08,1.7962e-08,1.3823e-08,1.1441e-08,8.4533e-09,6.3759e-09,4.4095e-09,4.3436e-09,3.2633e-09,2.4742e-09,2.0999e-09,1.3494e-09,1.1843e-09,9.0748e-10,7.7465e-10,5.5573e-10,5.3648e-10,4.9884e-10,4.2144e-10,2.9554e-10,2.0465e-10,1.6825e-10,1.3826e-10,1.2477e-10,1.2297e-10,1.02e-10,8.2114e-11,4.209e-11,3.5178e-11,3.1859e-11,2.5582e-11,2.5544e-11,2.0562e-11,2.0013e-11,1.7264e-11,1.5327e-11,1.0248e-11,9.666e-12,7.0421e-12,5.2358e-12,1.9668e-12,1.6332e-12,1.4927e-12,1.1783e-12,9.43e-13,8.6627e-13,7.3092e-13,6.4676e-13,5.555e-13,4.317e-13,4.3112e-13,2.7322e-13,2.4191e-13,2.3584e-13,2.3267e-13,1.4573e-13,1.4418e-13,1.3751e-13,1.3269e-13,1.2096e-13,1.0373e-13,9.0352e-14,4.8781e-14,1.288e-14,8.622e-15,8.3206e-15,8.0793e-15,7.3447e-15,6.965e-15,4.1983e-15,3.0011e-15,2.3482e-15,2.0462e-15,1.5334e-15,1.1988e-15,1.145e-15,8.0889e-16,6.6393e-16,5.213e-16,3.528e-16,2.1028e-16,2.0341e-16,1.7059e-16,1.5093e-16,1.4284e-16,7.9183e-17,6.7323e-17,3.2039e-17,2.6045e-17,1.8059e-17,1.4834e-17,1.3916e-17,9.8197e-18,9.3859e-18,8.5019e-18,6.8469e-18,4.5233e-18 1,1.6637e-06,2.1431e-06,2.1704e-06,2.3415e-06,2.4821e-06,2.6791e-06,3.1053e-06,4.397e-06,5.4718e-06,5.6579e-06,6.7225e-06,6.9136e-06,7.726e-06,1.0103e-05,1.0983e-05,1.1637e-05,1.4928e-05,1.5577e-05,1.6327e-05,1.9109e-05,1.9434e-05,1.9623e-05,2.2104e-05,2.3707e-05,2.3761e-05,2.716e-05,2.7492e-05,2.9195e-05,2.9426e-05,2.9653e-05,4.4397e-05,6.4802e-05,6.7032e-05,7.4816e-05,8.248e-05,8.8938e-05,9.7222e-05,0.00010777,0.00012901,0.00014233,0.0001668,0.00020323,0.00020695,0.00021506,0.00022283,0.0002677,0.00026778,0.00041155,0.00042469,0.00043215,0.00049029,0.00049485,0.00063201,0.00069506,0.00072298,0.00078796,0.00083205,0.00091307,0.00093966,0.0011694,0.0013361,0.0020136,0.0022484,0.0023324,0.0024899,0.0029741,0.0030834,0.0031835,0.0036946,0.0042406,0.0044607,0.0046486,0.0053913,0.0066533,0.0082658,0.0095411,0.0098299,0.012773,0.01396,0.014546,0.014813,0.01594,0.021412,0.021612,0.022728,0.024602,0.024985,0.02793,0.037639,0.037784,0.041004,0.042215,0.058291,0.063047,0.063409,0.067945,0.074504,0.074639,0.075192,0.079422,0.079461,0.083461,0.085051,0.11052,0.1234,0.12386,0.13987,0.14442,0.15166,0.15528,0.15744,0.15986,0.16065,0.16279,0.17159,0.17263,0.1748,0.17659,0.19054,0.2072,0.23005,0.23907,0.25889,0.28218,0.29235,0.29768,0.36021,0.36785,0.37352,0.38488,0.39955,0.41246,0.42308,0.42498,0.42617,0.43974,0.47616,0.47888,0.49349,0.51638,0.52912,0.5312,0.60499,0.60577,0.62042,0.64899,0.65417,0.67342,0.67794,0.70931,0.72944,0.77389,0.77493,0.82275,0.82797,0.82962,0.85812,0.85987,0.86961,0.88202,0.88579,0.88861,0.89945,0.9012,0.90233,0.91049,0.91327,0.91399,0.92041,0.92267,0.93463,0.95245,0.95535,0.95611,0.96295,0.96562,0.97549,0.98887,0.99197,0.99585,0.99696,0.99914,0.99999,1,1,1,0.99994,0.99993,0.99897,0.99816,0.996,0.99588,0.99514,0.98901,0.9888,0.985,0.98002,0.96945,0.9679,0.96328,0.96221,0.95943,0.95457,0.94664,0.94641,0.92629,0.90006,0.89708,0.89374,0.89269,0.87488,0.8634,0.82187,0.81959,0.81497,0.8071,0.777,0.74442,0.70768,0.69646,0.68973,0.67257,0.63763,0.6222,0.60219,0.5715,0.54517,0.54045,0.49057,0.48411,0.48176,0.47038,0.46589,0.43058,0.41578,0.41155,0.41112,0.40231,0.39057,0.38518,0.3828,0.34224,0.34219,0.30778,0.27106,0.23972,0.21307,0.2022,0.19942,0.19302,0.18755,0.17511,0.17377,0.15164,0.1464,0.13632,0.12454,0.1178,0.11705,0.11181,0.1084,0.10037,0.089306,0.088321,0.083823,0.077108,0.071983,0.071751,0.056221,0.053972,0.05292,0.0503,0.048983,0.046967,0.043903,0.042716,0.041107,0.038627,0.03561,0.032924,0.032662,0.029643,0.027791,0.026244,0.023005,0.021646,0.02117,0.019555,0.01946,0.01879,0.018501,0.015028,0.014236,0.013939,0.012651,0.011953,0.01185,0.010366,0.0079758,0.0073679,0.0070714,0.0064222,0.0063689,0.0057092,0.0056409,0.0048907,0.0044935,0.0037839,0.003725,0.0036706,0.0036405,0.0035436,0.0034664,0.00342,0.0029653,0.0028775,0.0021564,0.001955,0.0018313,0.0017844,0.0014358,0.0014303,0.0013303,0.0012859,0.0010828,0.0010768,0.001063,0.00093395,0.00090092,0.00088946,0.00085538,0.00081317,0.00077505,0.00075591,0.00058994,0.00058476,0.00051275,0.0004201,0.00034749,0.00026596,0.00026494,0.00024071,0.00021317,0.00018134,0.00018101,0.0001711,0.00013099,0.00012305,0.0001222,8.8651e-05,8.2564e-05,7.9238e-05,6.9781e-05,6.1475e-05,4.8582e-05,4.6813e-05,3.9106e-05,2.6007e-05,2.5864e-05,2.5006e-05,2.3337e-05,2.2102e-05,2.0667e-05,1.9087e-05,8.9963e-06,7.3575e-06,5.3896e-06,4.2662e-06,4.2171e-06,4.1062e-06,2.8867e-06,2.6572e-06,2.6389e-06,1.8748e-06,1.0428e-06,1.0234e-06,8.5901e-07,8.2836e-07,5.5171e-07,4.9193e-07,3.8245e-07,3.3514e-07,2.8945e-07,2.8128e-07,2.3613e-07,2.2894e-07,2.256e-07,1.5105e-07,1.3386e-07,1.272e-07,1.0774e-07,1.0222e-07,8.0285e-08,7.5964e-08,6.7944e-08,5.1376e-08,5.124e-08,4.4766e-08,4.2767e-08,4.2764e-08,3.1687e-08,3.1387e-08,2.7719e-08,2.4301e-08,1.821e-08,1.4015e-08,1.1601e-08,8.5725e-09,6.4665e-09,4.4728e-09,4.4059e-09,3.3105e-09,2.5102e-09,2.1306e-09,1.3694e-09,1.2019e-09,9.2102e-10,7.8626e-10,5.6412e-10,5.4459e-10,5.0639e-10,4.2784e-10,3.0006e-10,2.0781e-10,1.7086e-10,1.4042e-10,1.2671e-10,1.2489e-10,1.036e-10,8.3409e-11,4.2763e-11,3.5742e-11,3.2372e-11,2.5996e-11,2.5956e-11,2.0895e-11,2.0338e-11,1.7545e-11,1.5578e-11,1.0417e-11,9.8253e-12,7.1589e-12,5.3232e-12,2.0002e-12,1.6611e-12,1.5182e-12,1.1985e-12,9.5925e-13,8.8122e-13,7.4358e-13,6.5798e-13,5.6516e-13,4.3925e-13,4.3865e-13,2.7804e-13,2.4618e-13,2.4e-13,2.3677e-13,1.4832e-13,1.4675e-13,1.3996e-13,1.3506e-13,1.2312e-13,1.0559e-13,9.1974e-14,4.9666e-14,1.3118e-14,8.7828e-15,8.4758e-15,8.2301e-15,7.482e-15,7.0953e-15,4.2774e-15,3.058e-15,2.3929e-15,2.0852e-15,1.5627e-15,1.2218e-15,1.167e-15,8.2452e-16,6.768e-16,5.3143e-16,3.597e-16,2.1442e-16,2.0742e-16,1.7396e-16,1.5391e-16,1.4567e-16,8.0764e-17,6.8671e-17,3.2686e-17,2.6572e-17,1.8426e-17,1.5136e-17,1.4201e-17,1.0021e-17,9.5787e-18,8.6768e-18,6.9881e-18,4.617e-18 1,1.6614e-06,2.1402e-06,2.1674e-06,2.3384e-06,2.4787e-06,2.6755e-06,3.1012e-06,4.3912e-06,5.4646e-06,5.6505e-06,6.7138e-06,6.9046e-06,7.7161e-06,1.009e-05,1.0969e-05,1.1622e-05,1.491e-05,1.5557e-05,1.6307e-05,1.9085e-05,1.9409e-05,1.9598e-05,2.2077e-05,2.3678e-05,2.3732e-05,2.7127e-05,2.7458e-05,2.9159e-05,2.939e-05,2.9617e-05,4.4344e-05,6.4726e-05,6.6954e-05,7.4729e-05,8.2385e-05,8.8835e-05,9.7111e-05,0.00010765,0.00012886,0.00014217,0.00016661,0.00020301,0.00020672,0.00021483,0.00022259,0.00026741,0.00026749,0.00041112,0.00042424,0.0004317,0.00048978,0.00049434,0.00063137,0.00069435,0.00072225,0.00078717,0.00083122,0.00091216,0.00093873,0.0011683,0.0013348,0.0020117,0.0022463,0.0023302,0.0024876,0.0029714,0.0030806,0.0031807,0.0036913,0.0042369,0.0044568,0.0046445,0.0053867,0.0066477,0.008259,0.0095334,0.009822,0.012763,0.013949,0.014535,0.014802,0.015928,0.021396,0.021597,0.022712,0.024584,0.024967,0.02791,0.037613,0.037759,0.040976,0.042187,0.058254,0.063008,0.06337,0.067903,0.074459,0.074594,0.075147,0.079375,0.079414,0.083412,0.085001,0.11045,0.12333,0.12379,0.1398,0.14434,0.15158,0.1552,0.15736,0.15978,0.16057,0.1627,0.1715,0.17255,0.17471,0.17651,0.19045,0.20711,0.22995,0.23896,0.25877,0.28206,0.29223,0.29756,0.36008,0.36771,0.37338,0.38474,0.39941,0.41232,0.42293,0.42483,0.42602,0.43959,0.47601,0.47872,0.49334,0.51622,0.52897,0.53104,0.60482,0.60561,0.62026,0.64883,0.65401,0.67326,0.67779,0.70916,0.72929,0.77375,0.77478,0.82261,0.82783,0.82949,0.85799,0.85974,0.86949,0.8819,0.88568,0.8885,0.89934,0.90109,0.90222,0.91038,0.91317,0.91389,0.92031,0.92257,0.93454,0.95237,0.95527,0.95603,0.96288,0.96555,0.97543,0.98883,0.99193,0.99583,0.99694,0.99913,0.99998,1,1,1,0.99994,0.99993,0.99898,0.99817,0.99602,0.9959,0.99517,0.98905,0.98884,0.98504,0.98008,0.96952,0.96797,0.96335,0.96228,0.95951,0.95465,0.94672,0.9465,0.92638,0.90017,0.89719,0.89385,0.8928,0.875,0.86352,0.82201,0.81973,0.81511,0.80724,0.77715,0.74457,0.70784,0.69662,0.68989,0.67272,0.63779,0.62237,0.60235,0.57166,0.54533,0.54061,0.49073,0.48426,0.48191,0.47054,0.46604,0.43072,0.41593,0.4117,0.41127,0.40245,0.39071,0.38532,0.38294,0.34237,0.34232,0.3079,0.27117,0.23982,0.21317,0.2023,0.19951,0.19311,0.18764,0.17519,0.17386,0.15172,0.14648,0.13639,0.12461,0.11786,0.11712,0.11187,0.10846,0.10042,0.089359,0.088373,0.083873,0.077154,0.072027,0.071794,0.056257,0.054007,0.052954,0.050332,0.049015,0.046998,0.043933,0.042745,0.041135,0.038653,0.035634,0.032947,0.032684,0.029664,0.027811,0.026263,0.023022,0.021662,0.021185,0.019569,0.019475,0.018804,0.018515,0.015039,0.014247,0.01395,0.012661,0.011963,0.01186,0.010374,0.0079824,0.0073741,0.0070773,0.0064277,0.0063743,0.0057141,0.0056457,0.004895,0.0044974,0.0037872,0.0037283,0.0036738,0.0036437,0.0035468,0.0034695,0.0034231,0.002968,0.0028801,0.0021584,0.0019569,0.001833,0.001786,0.0014371,0.0014316,0.0013316,0.0012871,0.0010838,0.0010779,0.001064,0.00093488,0.00090182,0.00089034,0.00085624,0.00081398,0.00077584,0.00075668,0.00059055,0.00058537,0.00051328,0.00042054,0.00034786,0.00026625,0.00026523,0.00024097,0.0002134,0.00018154,0.00018121,0.00017129,0.00013114,0.00012319,0.00012234,8.8753e-05,8.2659e-05,7.933e-05,6.9862e-05,6.1547e-05,4.864e-05,4.6869e-05,3.9153e-05,2.6039e-05,2.5896e-05,2.5037e-05,2.3366e-05,2.213e-05,2.0692e-05,1.9111e-05,9.0079e-06,7.367e-06,5.3966e-06,4.2719e-06,4.2227e-06,4.1116e-06,2.8906e-06,2.6607e-06,2.6425e-06,1.8774e-06,1.0443e-06,1.0248e-06,8.6022e-07,8.2953e-07,5.525e-07,4.9263e-07,3.8301e-07,3.3562e-07,2.8987e-07,2.8169e-07,2.3648e-07,2.2927e-07,2.2593e-07,1.5128e-07,1.3406e-07,1.2739e-07,1.079e-07,1.0238e-07,8.0408e-08,7.608e-08,6.8047e-08,5.1455e-08,5.1319e-08,4.4836e-08,4.2833e-08,4.283e-08,3.1737e-08,3.1436e-08,2.7763e-08,2.4339e-08,1.8239e-08,1.4038e-08,1.162e-08,8.5864e-09,6.477e-09,4.4802e-09,4.4132e-09,3.316e-09,2.5144e-09,2.1342e-09,1.3717e-09,1.2039e-09,9.226e-10,7.8761e-10,5.651e-10,5.4553e-10,5.0728e-10,4.2859e-10,3.0059e-10,2.0818e-10,1.7116e-10,1.4067e-10,1.2694e-10,1.2512e-10,1.0379e-10,8.356e-11,4.2842e-11,3.5808e-11,3.2432e-11,2.6044e-11,2.6005e-11,2.0934e-11,2.0376e-11,1.7578e-11,1.5607e-11,1.0437e-11,9.8439e-12,7.1726e-12,5.3334e-12,2.0041e-12,1.6643e-12,1.5212e-12,1.2009e-12,9.6115e-13,8.8297e-13,7.4506e-13,6.5929e-13,5.663e-13,4.4013e-13,4.3954e-13,2.786e-13,2.4668e-13,2.4049e-13,2.3726e-13,1.4863e-13,1.4705e-13,1.4025e-13,1.3533e-13,1.2337e-13,1.0581e-13,9.2163e-14,4.977e-14,1.3146e-14,8.8016e-15,8.494e-15,8.2478e-15,7.4981e-15,7.1106e-15,4.2867e-15,3.0647e-15,2.3981e-15,2.0897e-15,1.5662e-15,1.2245e-15,1.1696e-15,8.2635e-16,6.783e-16,5.3262e-16,3.6051e-16,2.149e-16,2.0789e-16,1.7435e-16,1.5426e-16,1.46e-16,8.0949e-17,6.8828e-17,3.2762e-17,2.6634e-17,1.8469e-17,1.5172e-17,1.4234e-17,1.0045e-17,9.6013e-18,8.6972e-18,7.0047e-18,4.628e-18 1,1.5722e-06,2.0263e-06,2.0521e-06,2.2143e-06,2.3475e-06,2.5343e-06,2.9384e-06,4.1639e-06,5.1842e-06,5.3609e-06,6.3721e-06,6.5536e-06,7.3256e-06,9.5847e-06,1.0422e-05,1.1044e-05,1.4176e-05,1.4793e-05,1.5507e-05,1.8156e-05,1.8466e-05,1.8646e-05,2.1009e-05,2.2536e-05,2.2588e-05,2.5828e-05,2.6144e-05,2.7767e-05,2.7988e-05,2.8204e-05,4.2269e-05,6.1754e-05,6.3885e-05,7.1322e-05,7.8648e-05,8.4822e-05,9.2744e-05,0.00010283,0.00012316,0.00013591,0.00015934,0.00019424,0.0001978,0.00020558,0.00021303,0.00025605,0.00025612,0.0003941,0.00040672,0.00041389,0.00046973,0.00047411,0.00060595,0.00066657,0.00069343,0.00075595,0.00079837,0.00087635,0.00090194,0.0011232,0.0012838,0.0019373,0.0021639,0.0022449,0.002397,0.0028648,0.0029705,0.0030672,0.0035613,0.0040895,0.0043025,0.0044843,0.0052034,0.0064261,0.0079896,0.009227,0.0095073,0.012366,0.013519,0.014089,0.014349,0.015444,0.02077,0.020965,0.022052,0.023877,0.024251,0.027122,0.036595,0.036737,0.039882,0.041065,0.056785,0.06144,0.061795,0.066236,0.072663,0.072795,0.073337,0.077483,0.077521,0.081443,0.083002,0.108,0.12066,0.12111,0.13686,0.14133,0.14846,0.15202,0.15415,0.15653,0.15731,0.15941,0.16808,0.16911,0.17125,0.17302,0.18676,0.2032,0.22576,0.23467,0.25425,0.27729,0.28735,0.29263,0.35459,0.36217,0.3678,0.37907,0.39364,0.40647,0.41702,0.41891,0.42009,0.43358,0.46982,0.47253,0.48708,0.50989,0.52259,0.52466,0.59834,0.59913,0.61378,0.64237,0.64756,0.66685,0.67139,0.70286,0.72308,0.7678,0.76885,0.81709,0.82236,0.82404,0.85288,0.85465,0.86453,0.87714,0.88097,0.88384,0.89487,0.89665,0.8978,0.90612,0.90897,0.9097,0.91626,0.91856,0.93082,0.94914,0.95213,0.95291,0.96,0.96277,0.97305,0.98719,0.99053,0.9948,0.99605,0.99862,0.99987,0.99991,0.99994,0.99994,1,1,0.99941,0.99876,0.99691,0.99681,0.99616,0.99057,0.99037,0.98682,0.98212,0.97204,0.97056,0.96612,0.96508,0.9624,0.95771,0.95002,0.9498,0.93021,0.90454,0.90162,0.89834,0.89731,0.8798,0.86849,0.82748,0.82523,0.82066,0.81286,0.78303,0.75067,0.71411,0.70294,0.69624,0.67912,0.64425,0.62884,0.60883,0.57812,0.55176,0.54702,0.497,0.49051,0.48815,0.47673,0.47221,0.43672,0.42184,0.41758,0.41715,0.40828,0.39645,0.39103,0.38863,0.34775,0.34771,0.31298,0.27588,0.24418,0.2172,0.20619,0.20337,0.19688,0.19134,0.17871,0.17736,0.15489,0.14957,0.13932,0.12735,0.12049,0.11973,0.1144,0.11092,0.10275,0.091478,0.090473,0.085888,0.07904,0.073811,0.073574,0.057715,0.055417,0.054341,0.051662,0.050316,0.048254,0.04512,0.043905,0.042258,0.03972,0.03663,0.033878,0.033609,0.030515,0.028617,0.02703,0.023706,0.022311,0.021822,0.020164,0.020067,0.019378,0.019081,0.015511,0.014697,0.014392,0.013066,0.012349,0.012243,0.010714,0.0082516,0.0076249,0.007319,0.0066493,0.0065943,0.0059135,0.005843,0.0050684,0.004658,0.0039246,0.0038638,0.0038075,0.0037764,0.0036763,0.0035964,0.0035485,0.0030781,0.0029872,0.0022406,0.002032,0.0019038,0.0018552,0.0014937,0.001488,0.0013844,0.0013383,0.0011274,0.0011213,0.0011069,0.00097291,0.0009386,0.00092669,0.00089129,0.00084743,0.00080782,0.00078793,0.00061536,0.00060998,0.00053506,0.00043862,0.000363,0.00027803,0.00027697,0.0002517,0.00022297,0.00018977,0.00018942,0.00017908,0.00013719,0.00012889,0.00012801,9.2943e-05,8.6576e-05,8.3098e-05,7.3203e-05,6.451e-05,5.1011e-05,4.9158e-05,4.1083e-05,2.7348e-05,2.7198e-05,2.6298e-05,2.4547e-05,2.3251e-05,2.1744e-05,2.0086e-05,9.4837e-06,7.7596e-06,5.6881e-06,4.5049e-06,4.4531e-06,4.3362e-06,3.0508e-06,2.8087e-06,2.7894e-06,1.9832e-06,1.1045e-06,1.0839e-06,9.1017e-07,8.7776e-07,5.851e-07,5.2182e-07,4.059e-07,3.5578e-07,3.0737e-07,2.9871e-07,2.5085e-07,2.4322e-07,2.3968e-07,1.6061e-07,1.4236e-07,1.353e-07,1.1463e-07,1.0877e-07,8.5469e-08,8.0878e-08,7.2354e-08,5.474e-08,5.4596e-08,4.771e-08,4.5582e-08,4.5579e-08,3.3792e-08,3.3473e-08,2.9568e-08,2.5928e-08,1.944e-08,1.4969e-08,1.2395e-08,9.164e-09,6.9161e-09,4.7869e-09,4.7155e-09,3.5448e-09,2.6893e-09,2.2832e-09,1.4686e-09,1.2892e-09,9.8841e-10,8.4401e-10,6.059e-10,5.8495e-10,5.44e-10,4.5974e-10,3.2263e-10,2.2357e-10,1.8387e-10,1.5116e-10,1.3643e-10,1.3448e-10,1.1159e-10,8.9868e-11,4.6124e-11,3.8562e-11,3.4931e-11,2.8061e-11,2.8018e-11,2.2563e-11,2.1962e-11,1.8951e-11,1.6829e-11,1.126e-11,1.0622e-11,7.743e-12,5.7601e-12,2.1676e-12,1.8006e-12,1.6459e-12,1.2998e-12,1.0407e-12,9.5612e-13,8.0698e-13,7.1421e-13,6.136e-13,4.7707e-13,4.7642e-13,3.0218e-13,2.676e-13,2.609e-13,2.5739e-13,1.6135e-13,1.5964e-13,1.5226e-13,1.4693e-13,1.3397e-13,1.1491e-13,1.0012e-13,5.411e-14,1.4318e-14,9.5916e-15,9.2568e-15,8.9888e-15,8.1728e-15,7.751e-15,4.6759e-15,3.3444e-15,2.6179e-15,2.2816e-15,1.7106e-15,1.3379e-15,1.2779e-15,9.033e-16,7.4166e-16,5.8255e-16,3.945e-16,2.3532e-16,2.2765e-16,1.9096e-16,1.6899e-16,1.5995e-16,8.8747e-17,7.5474e-17,3.5959e-17,2.924e-17,2.0285e-17,1.6668e-17,1.5639e-17,1.1041e-17,1.0554e-17,9.5611e-18,7.7025e-18,5.0916e-18 1,1.5648e-06,2.017e-06,2.0426e-06,2.2041e-06,2.3367e-06,2.5227e-06,2.925e-06,4.1451e-06,5.1611e-06,5.3371e-06,6.3439e-06,6.5247e-06,7.2934e-06,9.5431e-06,1.0377e-05,1.0996e-05,1.4115e-05,1.473e-05,1.5442e-05,1.808e-05,1.8388e-05,1.8567e-05,2.0921e-05,2.2442e-05,2.2493e-05,2.572e-05,2.6035e-05,2.7652e-05,2.7872e-05,2.8088e-05,4.2097e-05,6.1508e-05,6.3631e-05,7.104e-05,7.8339e-05,8.449e-05,9.2382e-05,0.00010244,0.00012268,0.00013539,0.00015874,0.00019352,0.00019706,0.00020482,0.00021223,0.00025511,0.00025518,0.00039269,0.00040527,0.00041241,0.00046807,0.00047244,0.00060384,0.00066427,0.00069104,0.00075335,0.00079564,0.00087338,0.00089889,0.0011195,0.0012796,0.0019311,0.002157,0.0022378,0.0023895,0.0028559,0.0029613,0.0030578,0.0035505,0.0040773,0.0042897,0.004471,0.0051882,0.0064076,0.0079671,0.0092014,0.009481,0.012333,0.013483,0.014052,0.014311,0.015404,0.020717,0.020913,0.021997,0.023818,0.024191,0.027056,0.03651,0.036652,0.03979,0.040971,0.056661,0.061309,0.061663,0.066096,0.072512,0.072644,0.073185,0.077325,0.077363,0.081278,0.082835,0.10779,0.12043,0.12088,0.13661,0.14107,0.14819,0.15175,0.15388,0.15626,0.15704,0.15914,0.1678,0.16882,0.17096,0.17272,0.18645,0.20288,0.22541,0.2343,0.25387,0.27689,0.28694,0.29221,0.35413,0.36171,0.36733,0.37859,0.39316,0.40597,0.41652,0.41841,0.41959,0.43308,0.4693,0.472,0.48655,0.50935,0.52205,0.52412,0.59779,0.59858,0.61323,0.64183,0.64702,0.66631,0.67084,0.70232,0.72255,0.76729,0.76834,0.81662,0.8219,0.82357,0.85245,0.85422,0.86411,0.87673,0.88057,0.88344,0.89449,0.89627,0.89743,0.90576,0.90861,0.90934,0.91591,0.91822,0.9305,0.94886,0.95186,0.95265,0.95975,0.96253,0.97285,0.98704,0.9904,0.9947,0.99597,0.99858,0.99985,0.9999,0.99993,0.99993,1,1,0.99944,0.99881,0.99698,0.99688,0.99624,0.99069,0.99049,0.98696,0.98229,0.97225,0.97077,0.96635,0.96531,0.96264,0.95796,0.9503,0.95008,0.93053,0.90491,0.90199,0.89871,0.89768,0.8802,0.8689,0.82794,0.82569,0.82112,0.81333,0.78352,0.75118,0.71464,0.70347,0.69677,0.67966,0.6448,0.62939,0.60938,0.57867,0.5523,0.54757,0.49753,0.49104,0.48868,0.47725,0.47273,0.43723,0.42234,0.41808,0.41765,0.40877,0.39694,0.39152,0.38911,0.34821,0.34816,0.31341,0.27628,0.24455,0.21754,0.20652,0.2037,0.1972,0.19165,0.17901,0.17766,0.15516,0.14983,0.13957,0.12759,0.12072,0.11996,0.11461,0.11113,0.10294,0.091659,0.090653,0.08606,0.079201,0.073964,0.073726,0.05784,0.055538,0.05446,0.051776,0.050427,0.048362,0.045222,0.044005,0.042355,0.039811,0.036715,0.033958,0.033689,0.030588,0.028686,0.027096,0.023765,0.022367,0.021877,0.020215,0.020118,0.019428,0.01913,0.015552,0.014736,0.01443,0.013101,0.012382,0.012276,0.010743,0.0082748,0.0076464,0.0073398,0.0066684,0.0066133,0.0059306,0.00586,0.0050833,0.0046719,0.0039365,0.0038755,0.003819,0.0037878,0.0036874,0.0036073,0.0035593,0.0030876,0.0029965,0.0022477,0.0020385,0.0019099,0.0018611,0.0014986,0.0014929,0.0013889,0.0013427,0.0011312,0.001125,0.0011106,0.00097619,0.00094178,0.00092983,0.00089432,0.00085032,0.00081059,0.00079063,0.00061751,0.00061211,0.00053695,0.00044018,0.00036431,0.00027905,0.00027799,0.00025263,0.0002238,0.00019048,0.00019014,0.00017975,0.00013772,0.00012939,0.0001285,9.3306e-05,8.6916e-05,8.3424e-05,7.3493e-05,6.4767e-05,5.1216e-05,4.9356e-05,4.125e-05,2.7462e-05,2.7311e-05,2.6408e-05,2.4649e-05,2.3349e-05,2.1836e-05,2.0171e-05,9.525e-06,7.7937e-06,5.7135e-06,4.5251e-06,4.4732e-06,4.3557e-06,3.0647e-06,2.8216e-06,2.8022e-06,1.9924e-06,1.1097e-06,1.0891e-06,9.1452e-07,8.8197e-07,5.8794e-07,5.2437e-07,4.079e-07,3.5754e-07,3.0889e-07,3.0019e-07,2.521e-07,2.4444e-07,2.4088e-07,1.6142e-07,1.4308e-07,1.3599e-07,1.1521e-07,1.0933e-07,8.5912e-08,8.1297e-08,7.273e-08,5.5027e-08,5.4882e-08,4.7961e-08,4.5823e-08,4.582e-08,3.3972e-08,3.3651e-08,2.9726e-08,2.6068e-08,1.9545e-08,1.5051e-08,1.2463e-08,9.2146e-09,6.9546e-09,4.8138e-09,4.742e-09,3.5649e-09,2.7046e-09,2.2963e-09,1.4771e-09,1.2967e-09,9.9419e-10,8.4897e-10,6.0948e-10,5.8842e-10,5.4722e-10,4.6248e-10,3.2456e-10,2.2492e-10,1.8499e-10,1.5209e-10,1.3727e-10,1.353e-10,1.1227e-10,9.0423e-11,4.6413e-11,3.8805e-11,3.5152e-11,2.8238e-11,2.8196e-11,2.2706e-11,2.2101e-11,1.9071e-11,1.6936e-11,1.1333e-11,1.069e-11,7.7933e-12,5.7977e-12,2.182e-12,1.8126e-12,1.6569e-12,1.3085e-12,1.0477e-12,9.6258e-13,8.1245e-13,7.1906e-13,6.1778e-13,4.8033e-13,4.7968e-13,3.0426e-13,2.6945e-13,2.627e-13,2.5917e-13,1.6247e-13,1.6075e-13,1.5333e-13,1.4796e-13,1.349e-13,1.1572e-13,1.0082e-13,5.4495e-14,1.4422e-14,9.6616e-15,9.3244e-15,9.0545e-15,8.2326e-15,7.8077e-15,4.7104e-15,3.3692e-15,2.6374e-15,2.2986e-15,1.7234e-15,1.3479e-15,1.2876e-15,9.1013e-16,7.4728e-16,5.8698e-16,3.9752e-16,2.3713e-16,2.2941e-16,1.9244e-16,1.703e-16,1.6119e-16,8.9441e-17,7.6065e-17,3.6243e-17,2.9472e-17,2.0447e-17,1.6801e-17,1.5764e-17,1.1129e-17,1.0639e-17,9.6381e-18,7.7646e-18,5.1329e-18 1,1.3153e-06,1.6981e-06,1.7199e-06,1.8568e-06,1.9692e-06,2.127e-06,2.4686e-06,3.5065e-06,4.3724e-06,4.5226e-06,5.3821e-06,5.5365e-06,6.1936e-06,8.1191e-06,8.8334e-06,9.3648e-06,1.2042e-05,1.257e-05,1.3182e-05,1.5452e-05,1.5717e-05,1.5871e-05,1.7899e-05,1.921e-05,1.9254e-05,2.2038e-05,2.2309e-05,2.3705e-05,2.3895e-05,2.4081e-05,3.6201e-05,5.3044e-05,5.4889e-05,6.1332e-05,6.7684e-05,7.3041e-05,7.9919e-05,8.8687e-05,0.00010637,0.00011748,0.00013791,0.00016839,0.00017151,0.00017831,0.00018482,0.00022249,0.00022255,0.00034372,0.00035482,0.00036113,0.00041031,0.00041417,0.00053049,0.00058406,0.00060781,0.00066312,0.00070069,0.00076978,0.00079247,0.00098888,0.0011317,0.0017145,0.0019171,0.0019896,0.0021258,0.0025452,0.00264,0.0027269,0.003171,0.0036465,0.0038384,0.0040023,0.0046514,0.0057574,0.0071753,0.0082999,0.0085549,0.011161,0.012214,0.012735,0.012973,0.013975,0.018862,0.019042,0.020042,0.021722,0.022066,0.024714,0.033477,0.033608,0.036525,0.037624,0.052263,0.056612,0.056944,0.061099,0.067119,0.067243,0.067751,0.071641,0.071677,0.07536,0.076825,0.10038,0.11235,0.11278,0.12771,0.13195,0.13873,0.14211,0.14414,0.14641,0.14715,0.14915,0.15742,0.1584,0.16044,0.16212,0.17525,0.19099,0.21263,0.22119,0.24004,0.26227,0.272,0.2771,0.33726,0.34464,0.35013,0.36113,0.37536,0.3879,0.39823,0.40009,0.40125,0.41448,0.4501,0.45277,0.46712,0.48964,0.50221,0.50426,0.5775,0.57829,0.59292,0.62155,0.62676,0.64614,0.6507,0.68244,0.70291,0.7484,0.74946,0.79895,0.80439,0.80611,0.836,0.83784,0.84813,0.86131,0.86534,0.86835,0.87996,0.88184,0.88306,0.89186,0.89488,0.89566,0.90264,0.9051,0.91823,0.93809,0.94137,0.94223,0.95005,0.95312,0.96469,0.98117,0.98526,0.99072,0.99242,0.99623,0.99872,0.99887,0.99897,0.99898,0.99941,0.99944,1,0.99988,0.99902,0.99896,0.99858,0.99468,0.99453,0.99178,0.98798,0.97946,0.97817,0.97431,0.9734,0.97104,0.96687,0.95998,0.95978,0.9419,0.91804,0.9153,0.91222,0.91125,0.89472,0.88397,0.84468,0.84251,0.8381,0.83057,0.80162,0.77003,0.73412,0.72311,0.71649,0.69957,0.66498,0.64964,0.62968,0.59897,0.57251,0.56775,0.51732,0.51077,0.50838,0.49682,0.49224,0.45622,0.44108,0.43674,0.4363,0.42726,0.4152,0.40966,0.40721,0.36537,0.36532,0.32963,0.29137,0.25855,0.23052,0.21906,0.21612,0.20936,0.20357,0.19038,0.18897,0.16544,0.15985,0.14908,0.13648,0.12925,0.12845,0.12282,0.11915,0.1105,0.098567,0.097501,0.092635,0.085358,0.079794,0.079541,0.06262,0.060161,0.05901,0.056141,0.054698,0.052488,0.049125,0.04782,0.04605,0.04332,0.039994,0.037028,0.036738,0.033398,0.031347,0.02963,0.02603,0.024517,0.023986,0.022185,0.02208,0.021331,0.021008,0.01712,0.016232,0.015899,0.014451,0.013666,0.01355,0.011877,0.0091739,0.0084845,0.0081478,0.0074101,0.0073495,0.0065984,0.0065206,0.0056647,0.0052107,0.0043982,0.0043307,0.0042682,0.0042337,0.0041226,0.0040339,0.0039807,0.003458,0.003357,0.0025252,0.0022923,0.002149,0.0020946,0.0016901,0.0016837,0.0015675,0.0015157,0.001279,0.0012721,0.0012559,0.0011052,0.0010666,0.0010532,0.0010133,0.0009639,0.00091925,0.00089682,0.00070197,0.00069588,0.00061113,0.00050185,0.00041601,0.00031937,0.00031816,0.00028936,0.0002566,0.00021868,0.00021829,0.00020646,0.00015852,0.00014901,0.00014799,0.00010773,0.00010041,9.6403e-05,8.5009e-05,7.4988e-05,5.9405e-05,5.7263e-05,4.7923e-05,3.2e-05,3.1826e-05,3.0781e-05,2.8745e-05,2.7239e-05,2.5486e-05,2.3557e-05,1.1183e-05,9.1633e-06,6.7318e-06,5.3401e-06,5.2792e-06,5.1415e-06,3.6261e-06,3.3402e-06,3.3175e-06,2.3641e-06,1.3217e-06,1.2973e-06,1.0906e-06,1.052e-06,7.0308e-07,6.2751e-07,4.8889e-07,4.2887e-07,3.7086e-07,3.6048e-07,3.0305e-07,2.9389e-07,2.8964e-07,1.9457e-07,1.7259e-07,1.6408e-07,1.3915e-07,1.3209e-07,1.0394e-07,9.8389e-08,8.8078e-08,6.6748e-08,6.6572e-08,5.8223e-08,5.5642e-08,5.5638e-08,4.1322e-08,4.0934e-08,3.6185e-08,3.1755e-08,2.3849e-08,1.8391e-08,1.5245e-08,1.129e-08,8.5345e-09,5.9193e-09,5.8314e-09,4.3907e-09,3.336e-09,2.8349e-09,1.8278e-09,1.6056e-09,1.2328e-09,1.0536e-09,7.5765e-10,7.316e-10,6.8063e-10,5.7573e-10,4.0477e-10,2.8102e-10,2.3136e-10,1.9039e-10,1.7193e-10,1.6948e-10,1.4076e-10,1.1349e-10,5.8443e-11,4.8905e-11,4.4322e-11,3.5643e-11,3.5589e-11,2.869e-11,2.793e-11,2.4118e-11,2.143e-11,1.4367e-11,1.3556e-11,9.8972e-12,7.3731e-12,2.7875e-12,2.3175e-12,2.1193e-12,1.6755e-12,1.3428e-12,1.2342e-12,1.0425e-12,9.232e-13,7.937e-13,6.178e-13,6.1697e-13,3.9213e-13,3.4746e-13,3.3879e-13,3.3426e-13,2.0997e-13,2.0776e-13,1.982e-13,1.9129e-13,1.7448e-13,1.4977e-13,1.3057e-13,7.076e-14,1.8833e-14,1.2637e-14,1.2198e-14,1.1847e-14,1.0776e-14,1.0222e-14,6.1796e-15,4.4262e-15,3.4682e-15,3.0245e-15,2.2703e-15,1.7774e-15,1.6981e-15,1.202e-15,9.8773e-16,7.7661e-16,5.2675e-16,3.1487e-16,3.0465e-16,2.5574e-16,2.2642e-16,2.1436e-16,1.1922e-16,1.0145e-16,4.8478e-17,3.9452e-17,2.741e-17,2.2539e-17,2.1152e-17,1.4954e-17,1.4297e-17,1.2957e-17,1.0447e-17,6.9168e-18 1,1.2141e-06,1.5686e-06,1.5888e-06,1.7157e-06,1.8199e-06,1.9662e-06,2.283e-06,3.2463e-06,4.0507e-06,4.1902e-06,4.9893e-06,5.1329e-06,5.7441e-06,7.5363e-06,8.2015e-06,8.6965e-06,1.1192e-05,1.1684e-05,1.2255e-05,1.4372e-05,1.4619e-05,1.4763e-05,1.6656e-05,1.788e-05,1.7922e-05,2.0522e-05,2.0776e-05,2.208e-05,2.2258e-05,2.2432e-05,3.3767e-05,4.9543e-05,5.1272e-05,5.7313e-05,6.327e-05,6.8296e-05,7.4752e-05,8.2983e-05,9.9593e-05,0.00011003,0.00012924,0.00015793,0.00016086,0.00016726,0.00017339,0.00020888,0.00020894,0.00032322,0.00033371,0.00033966,0.00038611,0.00038976,0.00049971,0.00055038,0.00057285,0.0006252,0.00066076,0.0007262,0.00074769,0.00093384,0.0010693,0.0016228,0.0018155,0.0018845,0.0020141,0.0024133,0.0025036,0.0025864,0.0030096,0.0034631,0.0036463,0.0038027,0.0044225,0.0054796,0.0068363,0.0079135,0.0081579,0.010657,0.011668,0.012169,0.012397,0.01336,0.018061,0.018234,0.019197,0.020816,0.021147,0.023699,0.032159,0.032286,0.035106,0.036168,0.050342,0.05456,0.054881,0.058912,0.064757,0.064877,0.065371,0.06915,0.069185,0.072765,0.074189,0.097114,0.10879,0.1092,0.12378,0.12792,0.13454,0.13785,0.13983,0.14205,0.14278,0.14473,0.15282,0.15378,0.15577,0.15742,0.17028,0.1857,0.20693,0.21534,0.23386,0.25573,0.26531,0.27033,0.32967,0.33696,0.34238,0.35325,0.36733,0.37974,0.38997,0.39181,0.39296,0.40607,0.4414,0.44405,0.45829,0.48068,0.49318,0.49522,0.56821,0.569,0.58361,0.61223,0.61745,0.63685,0.64142,0.67326,0.69382,0.73961,0.74068,0.79067,0.79618,0.79793,0.82825,0.83012,0.84059,0.85401,0.85811,0.86119,0.87304,0.87497,0.87621,0.88523,0.88832,0.88912,0.89628,0.8988,0.91232,0.93285,0.93625,0.93714,0.94527,0.94848,0.96061,0.97812,0.98253,0.98853,0.99042,0.99479,0.99783,0.99802,0.99816,0.99817,0.99876,0.99881,0.99988,1,0.99958,0.99955,0.99928,0.99614,0.99601,0.99362,0.99022,0.98241,0.98122,0.97761,0.97676,0.97455,0.97062,0.96409,0.9639,0.94681,0.92378,0.92113,0.91814,0.9172,0.90112,0.89064,0.85216,0.85002,0.84569,0.83828,0.80975,0.77853,0.74296,0.73202,0.72545,0.70863,0.67419,0.6589,0.63898,0.60828,0.5818,0.57704,0.52647,0.51988,0.51748,0.50587,0.50127,0.46503,0.44978,0.44541,0.44497,0.43585,0.42369,0.41811,0.41563,0.37337,0.37332,0.33722,0.29845,0.26513,0.23664,0.22497,0.22198,0.2151,0.2092,0.19576,0.19432,0.17031,0.1646,0.1536,0.14071,0.13331,0.1325,0.12673,0.12297,0.11411,0.10187,0.10078,0.09578,0.088306,0.082589,0.082329,0.064918,0.062385,0.061199,0.058243,0.056755,0.054476,0.051007,0.04966,0.047834,0.045015,0.041579,0.038513,0.038213,0.034759,0.032636,0.030859,0.027129,0.025561,0.025011,0.023143,0.023034,0.022257,0.021922,0.017885,0.016962,0.016615,0.01511,0.014294,0.014173,0.012431,0.0096147,0.0088957,0.0085444,0.0077744,0.0077111,0.0069267,0.0068454,0.0059509,0.0054762,0.0046259,0.0045553,0.0044899,0.0044537,0.0043374,0.0042445,0.0041888,0.0036411,0.0035352,0.0026627,0.0024181,0.0022677,0.0022105,0.0017852,0.0017785,0.0016562,0.0016018,0.0013526,0.0013453,0.0013283,0.0011695,0.0011288,0.0011147,0.0010727,0.0010206,0.00097349,0.00094983,0.0007442,0.00073778,0.00064825,0.00053276,0.00044196,0.00033963,0.00033835,0.00030784,0.00027311,0.00023289,0.00023247,0.00021992,0.00016902,0.00015891,0.00015784,0.00011503,0.00010723,0.00010297,9.0844e-05,8.0171e-05,6.3562e-05,6.1279e-05,5.1315e-05,3.4312e-05,3.4126e-05,3.3009e-05,3.0834e-05,2.9223e-05,2.7349e-05,2.5285e-05,1.2033e-05,9.8658e-06,7.255e-06,5.7593e-06,5.6938e-06,5.5458e-06,3.9154e-06,3.6077e-06,3.5832e-06,2.5561e-06,1.4316e-06,1.4052e-06,1.1818e-06,1.1402e-06,7.629e-07,6.8111e-07,5.3103e-07,4.6602e-07,4.0314e-07,3.9189e-07,3.2962e-07,3.1969e-07,3.1508e-07,2.1189e-07,1.8801e-07,1.7877e-07,1.5168e-07,1.44e-07,1.1339e-07,1.0735e-07,9.6126e-08,7.2901e-08,7.271e-08,6.3614e-08,6.0801e-08,6.0797e-08,4.5189e-08,4.4766e-08,3.9585e-08,3.4751e-08,2.6118e-08,2.0155e-08,1.6715e-08,1.2389e-08,9.3712e-09,6.5055e-09,6.4092e-09,4.8291e-09,3.6716e-09,3.1213e-09,2.0146e-09,1.7703e-09,1.3601e-09,1.1628e-09,8.3686e-10,8.0815e-10,7.5198e-10,6.3633e-10,4.4774e-10,3.1113e-10,2.5626e-10,2.1098e-10,1.9056e-10,1.8785e-10,1.5609e-10,1.2591e-10,6.4935e-11,5.4359e-11,4.9276e-11,3.9646e-11,3.9587e-11,3.1928e-11,3.1083e-11,2.6849e-11,2.3863e-11,1.6012e-11,1.5111e-11,1.104e-11,8.2293e-12,3.1176e-12,2.5929e-12,2.3717e-12,1.8759e-12,1.5042e-12,1.3828e-12,1.1684e-12,1.0349e-12,8.9003e-13,6.9314e-13,6.9221e-13,4.4036e-13,3.9029e-13,3.8057e-13,3.7549e-13,2.3609e-13,2.3361e-13,2.2289e-13,2.1513e-13,1.9626e-13,1.6852e-13,1.4695e-13,7.9736e-14,2.1277e-14,1.4288e-14,1.3793e-14,1.3396e-14,1.2187e-14,1.1562e-14,6.9964e-15,5.0144e-15,3.9309e-15,3.4289e-15,2.5752e-15,2.0171e-15,1.9273e-15,1.3651e-15,1.1221e-15,8.8267e-16,5.9912e-16,3.5846e-16,3.4685e-16,2.9125e-16,2.5792e-16,2.4421e-16,1.3596e-16,1.1573e-16,5.5375e-17,4.5082e-17,3.1341e-17,2.5781e-17,2.4197e-17,1.7117e-17,1.6366e-17,1.4835e-17,1.1966e-17,7.9279e-18 1,1.0438e-06,1.3506e-06,1.3681e-06,1.4779e-06,1.5682e-06,1.695e-06,1.9698e-06,2.8066e-06,3.5065e-06,3.628e-06,4.3243e-06,4.4495e-06,4.9826e-06,6.5477e-06,7.1292e-06,7.5622e-06,9.7469e-06,1.0178e-05,1.0678e-05,1.2535e-05,1.2752e-05,1.2879e-05,1.4541e-05,1.5616e-05,1.5653e-05,1.7939e-05,1.8162e-05,1.931e-05,1.9466e-05,1.9619e-05,2.9609e-05,4.355e-05,4.508e-05,5.0427e-05,5.5705e-05,6.016e-05,6.5886e-05,7.3192e-05,8.7949e-05,9.7234e-05,0.00011434,0.0001399,0.00014252,0.00014823,0.0001537,0.0001854,0.00018545,0.00028778,0.00029718,0.00030253,0.00034422,0.00034749,0.00044633,0.00049194,0.00051218,0.00055935,0.00059141,0.00065045,0.00066985,0.00083805,0.00096062,0.0014627,0.0016378,0.0017006,0.0018185,0.0021822,0.0022646,0.0023401,0.0027266,0.0031412,0.0033087,0.003452,0.0040199,0.0049902,0.0062382,0.0072308,0.0074562,0.0097652,0.010701,0.011165,0.011376,0.012269,0.016636,0.016797,0.017693,0.019201,0.01951,0.021891,0.029803,0.029922,0.032565,0.033562,0.046892,0.050869,0.051173,0.054978,0.060503,0.060617,0.061084,0.06466,0.064693,0.068083,0.069433,0.091207,0.10233,0.10272,0.11663,0.1206,0.12693,0.1301,0.132,0.13412,0.13482,0.13669,0.14444,0.14536,0.14728,0.14886,0.16121,0.17605,0.19651,0.20463,0.22254,0.24372,0.25302,0.2579,0.31566,0.32278,0.32807,0.3387,0.35248,0.36464,0.37467,0.37647,0.3776,0.39047,0.42523,0.42783,0.44188,0.46398,0.47634,0.47836,0.55081,0.55159,0.56615,0.59473,0.59994,0.61937,0.62395,0.65592,0.67662,0.72291,0.724,0.77486,0.78049,0.78227,0.81336,0.81529,0.82607,0.83992,0.84417,0.84735,0.85965,0.86165,0.86295,0.87234,0.87556,0.8764,0.88388,0.88653,0.90073,0.92248,0.9261,0.92706,0.93577,0.93923,0.95238,0.97179,0.97682,0.98379,0.98605,0.99144,0.99551,0.99579,0.996,0.99602,0.99691,0.99698,0.99902,0.99958,1,1,0.99996,0.99826,0.99817,0.99645,0.99382,0.98736,0.98634,0.98322,0.98248,0.98055,0.97708,0.97124,0.97107,0.95549,0.93407,0.93158,0.92877,0.92789,0.91268,0.90272,0.86582,0.86377,0.85958,0.85242,0.82474,0.79427,0.75936,0.74859,0.74211,0.72551,0.69141,0.67622,0.65641,0.62578,0.5993,0.59453,0.54374,0.53711,0.53469,0.52299,0.51835,0.48174,0.4663,0.46187,0.46142,0.45218,0.43984,0.43417,0.43166,0.38865,0.3886,0.35174,0.31202,0.27778,0.24842,0.23637,0.23329,0.22617,0.22007,0.20615,0.20466,0.17974,0.17381,0.16236,0.14893,0.14121,0.14035,0.13433,0.1304,0.12113,0.10831,0.10716,0.10192,0.094065,0.088051,0.087778,0.069422,0.066747,0.065493,0.062367,0.060793,0.058381,0.054705,0.053278,0.051341,0.04835,0.0447,0.04144,0.041121,0.037444,0.035181,0.033286,0.029304,0.027628,0.02704,0.02504,0.024923,0.024092,0.023733,0.019403,0.018412,0.018039,0.016421,0.015542,0.015412,0.013535,0.010495,0.0097168,0.0093366,0.0085027,0.0084341,0.0075837,0.0074955,0.0065243,0.0060083,0.005083,0.0050061,0.0049349,0.0048955,0.0047687,0.0046675,0.0046067,0.0040093,0.0038936,0.0029397,0.0026719,0.0025069,0.0024443,0.0019774,0.0019701,0.0018357,0.0017759,0.0015016,0.0014936,0.0014749,0.0012999,0.001255,0.0012394,0.001193,0.0011355,0.0010835,0.0010574,0.00083002,0.00082291,0.00072377,0.00059569,0.00049485,0.000381,0.00037958,0.00034559,0.00030686,0.00026196,0.0002615,0.00024748,0.00019055,0.00017923,0.00017802,0.00013002,0.00012127,0.00011648,0.00010285,9.0841e-05,7.2132e-05,6.9558e-05,5.8315e-05,3.9094e-05,3.8884e-05,3.7619e-05,3.5154e-05,3.333e-05,3.1205e-05,2.8865e-05,1.3799e-05,1.1328e-05,8.3453e-06,6.6339e-06,6.5589e-06,6.3894e-06,4.5202e-06,4.1669e-06,4.1388e-06,2.9581e-06,1.6621e-06,1.6316e-06,1.3737e-06,1.3255e-06,8.8884e-07,7.9404e-07,6.1991e-07,5.444e-07,4.7131e-07,4.5822e-07,3.8577e-07,3.7421e-07,3.6883e-07,2.4855e-07,2.2068e-07,2.0989e-07,1.7823e-07,1.6926e-07,1.3344e-07,1.2637e-07,1.1322e-07,8.5985e-08,8.5761e-08,7.5082e-08,7.1778e-08,7.1774e-08,5.3427e-08,5.2929e-08,4.6833e-08,4.1139e-08,3.0962e-08,2.3923e-08,1.9858e-08,1.474e-08,1.1164e-08,7.7638e-09,7.6494e-09,5.7712e-09,4.3934e-09,3.7378e-09,2.4173e-09,2.1255e-09,1.6349e-09,1.3987e-09,1.0082e-09,9.7371e-10,9.0633e-10,7.6751e-10,5.4088e-10,3.7645e-10,3.1032e-10,2.557e-10,2.3106e-10,2.2779e-10,1.8943e-10,1.5294e-10,7.9098e-11,6.6265e-11,6.0093e-11,4.8393e-11,4.8321e-11,3.9007e-11,3.7979e-11,3.2826e-11,2.9189e-11,1.9619e-11,1.8518e-11,1.3546e-11,1.011e-11,3.845e-12,3.2002e-12,2.9282e-12,2.3183e-12,1.8604e-12,1.7108e-12,1.4466e-12,1.2819e-12,1.1031e-12,8.599e-13,8.5875e-13,5.4725e-13,4.8525e-13,4.7321e-13,4.6692e-13,2.941e-13,2.9102e-13,2.7771e-13,2.6808e-13,2.4466e-13,2.1019e-13,1.8338e-13,9.9732e-14,2.6742e-14,1.7985e-14,1.7363e-14,1.6865e-14,1.5348e-14,1.4564e-14,8.8289e-15,6.3352e-15,4.9707e-15,4.3379e-15,3.2613e-15,2.5566e-15,2.4432e-15,1.7326e-15,1.4252e-15,1.122e-15,7.626e-16,4.5708e-16,4.4232e-16,3.7164e-16,3.2925e-16,3.118e-16,1.7394e-16,1.4814e-16,7.1056e-17,5.7888e-17,4.0292e-17,3.3165e-17,3.1135e-17,2.2049e-17,2.1085e-17,1.9119e-17,1.5432e-17,1.0238e-17 1,1.0368e-06,1.3416e-06,1.3589e-06,1.4681e-06,1.5578e-06,1.6838e-06,1.9569e-06,2.7884e-06,3.484e-06,3.6047e-06,4.2967e-06,4.4212e-06,4.951e-06,6.5067e-06,7.0847e-06,7.5151e-06,9.6868e-06,1.0116e-05,1.0613e-05,1.2459e-05,1.2675e-05,1.2801e-05,1.4453e-05,1.5522e-05,1.5558e-05,1.7831e-05,1.8053e-05,1.9194e-05,1.935e-05,1.9502e-05,2.9436e-05,4.3299e-05,4.4821e-05,5.014e-05,5.5389e-05,5.982e-05,6.5515e-05,7.2782e-05,8.7462e-05,9.6698e-05,0.00011371,0.00013915,0.00014175,0.00014743,0.00015288,0.00018441,0.00018447,0.00028629,0.00029565,0.00030096,0.00034245,0.00034571,0.00044408,0.00048948,0.00050962,0.00055658,0.00058849,0.00064725,0.00066656,0.000834,0.00095603,0.0014559,0.0016303,0.0016928,0.0018102,0.0021724,0.0022545,0.0023297,0.0027145,0.0031275,0.0032944,0.003437,0.0040027,0.0049693,0.0062127,0.0072017,0.0074263,0.009727,0.01066,0.011122,0.011332,0.012222,0.016575,0.016735,0.017628,0.019132,0.01944,0.021813,0.029701,0.02982,0.032456,0.033449,0.046743,0.05071,0.051012,0.054808,0.060319,0.060432,0.060898,0.064466,0.064498,0.067881,0.069227,0.090951,0.10205,0.10244,0.11632,0.12028,0.1266,0.12976,0.13165,0.13377,0.13447,0.13634,0.14408,0.145,0.14691,0.14849,0.16082,0.17563,0.19606,0.20416,0.22204,0.2432,0.25248,0.25735,0.31504,0.32216,0.32744,0.33806,0.35182,0.36398,0.374,0.37579,0.37692,0.38978,0.42451,0.42711,0.44115,0.46324,0.4756,0.47761,0.55003,0.55081,0.56537,0.59395,0.59916,0.61859,0.62317,0.65515,0.67585,0.72216,0.72325,0.77415,0.77978,0.78157,0.81269,0.81461,0.82541,0.83929,0.84354,0.84672,0.85904,0.86104,0.86234,0.87175,0.87498,0.87582,0.88332,0.88597,0.9002,0.922,0.92564,0.92659,0.93534,0.9388,0.952,0.97149,0.97654,0.98356,0.98584,0.99127,0.99539,0.99567,0.99588,0.9959,0.99681,0.99688,0.99896,0.99955,1,1,0.99997,0.99833,0.99825,0.99656,0.99397,0.98756,0.98655,0.98346,0.98272,0.9808,0.97735,0.97154,0.97137,0.95586,0.93452,0.93203,0.92923,0.92835,0.91319,0.90325,0.86642,0.86437,0.86019,0.85304,0.8254,0.79496,0.76008,0.74932,0.74285,0.72626,0.69217,0.67699,0.65718,0.62656,0.60008,0.59531,0.54451,0.53788,0.53546,0.52375,0.51911,0.48249,0.46704,0.46261,0.46216,0.45292,0.44057,0.43489,0.43238,0.38934,0.38929,0.35239,0.31263,0.27836,0.24895,0.23689,0.2338,0.22667,0.22056,0.20662,0.20512,0.18017,0.17422,0.16276,0.1493,0.14157,0.14071,0.13468,0.13074,0.12145,0.1086,0.10745,0.1022,0.094329,0.088301,0.088027,0.069629,0.066947,0.06569,0.062556,0.060978,0.05856,0.054875,0.053444,0.051502,0.048503,0.044843,0.041575,0.041255,0.037567,0.035299,0.033398,0.029405,0.027723,0.027133,0.025128,0.025011,0.024177,0.023816,0.019473,0.018479,0.018105,0.016481,0.0156,0.015469,0.013586,0.010535,0.0097549,0.0093734,0.0085365,0.0084677,0.0076142,0.0075257,0.006551,0.0060331,0.0051043,0.0050271,0.0049556,0.004916,0.0047888,0.0046872,0.0046262,0.0040265,0.0039104,0.0029526,0.0026837,0.0025181,0.0024552,0.0019864,0.001979,0.0018441,0.001784,0.0015086,0.0015006,0.0014817,0.001306,0.0012609,0.0012452,0.0011987,0.0011409,0.0010887,0.0010624,0.00083405,0.00082691,0.00072732,0.00059865,0.00049734,0.00038295,0.00038152,0.00034736,0.00030845,0.00026333,0.00026287,0.00024878,0.00019157,0.00018019,0.00017898,0.00013073,0.00012193,0.00011712,0.00010342,9.1347e-05,7.2538e-05,6.995e-05,5.8647e-05,3.9321e-05,3.911e-05,3.7838e-05,3.536e-05,3.3525e-05,3.1389e-05,2.9035e-05,1.3884e-05,1.1397e-05,8.3973e-06,6.6757e-06,6.6002e-06,6.4297e-06,4.5491e-06,4.1936e-06,4.1653e-06,2.9773e-06,1.6732e-06,1.6425e-06,1.3829e-06,1.3344e-06,8.9489e-07,7.9947e-07,6.2419e-07,5.4817e-07,4.7459e-07,4.6142e-07,3.8847e-07,3.7683e-07,3.7142e-07,2.5032e-07,2.2226e-07,2.1139e-07,1.7952e-07,1.7048e-07,1.3441e-07,1.2728e-07,1.1405e-07,8.6618e-08,8.6392e-08,7.5637e-08,7.231e-08,7.2305e-08,5.3826e-08,5.3324e-08,4.7184e-08,4.1449e-08,3.1197e-08,2.4106e-08,2.0011e-08,1.4854e-08,1.1252e-08,7.8251e-09,7.7098e-09,5.8171e-09,4.4286e-09,3.7678e-09,2.437e-09,2.1428e-09,1.6483e-09,1.4103e-09,1.0165e-09,9.8181e-10,9.1388e-10,7.7393e-10,5.4545e-10,3.7965e-10,3.1297e-10,2.579e-10,2.3305e-10,2.2975e-10,1.9106e-10,1.5427e-10,7.9795e-11,6.6851e-11,6.0626e-11,4.8824e-11,4.8751e-11,3.9356e-11,3.8319e-11,3.3121e-11,2.9452e-11,1.9797e-11,1.8686e-11,1.367e-11,1.0203e-11,3.881e-12,3.2303e-12,2.9557e-12,2.3402e-12,1.8781e-12,1.7271e-12,1.4604e-12,1.2942e-12,1.1137e-12,8.6818e-13,8.6702e-13,5.5257e-13,4.8997e-13,4.7782e-13,4.7147e-13,2.9699e-13,2.9387e-13,2.8044e-13,2.7072e-13,2.4706e-13,2.1227e-13,1.852e-13,1.0073e-13,2.7015e-14,1.8169e-14,1.7541e-14,1.7039e-14,1.5506e-14,1.4714e-14,8.9207e-15,6.4015e-15,5.0228e-15,4.3835e-15,3.2957e-15,2.5837e-15,2.4691e-15,1.7511e-15,1.4405e-15,1.134e-15,7.7082e-16,4.6205e-16,4.4713e-16,3.7569e-16,3.3284e-16,3.152e-16,1.7585e-16,1.4978e-16,7.1849e-17,5.8535e-17,4.0745e-17,3.3539e-17,3.1486e-17,2.2299e-17,2.1324e-17,1.9336e-17,1.5607e-17,1.0355e-17 1,9.952e-07,1.2883e-06,1.3049e-06,1.4099e-06,1.4962e-06,1.6174e-06,1.8801e-06,2.6805e-06,3.3503e-06,3.4666e-06,4.1332e-06,4.2531e-06,4.7637e-06,6.2632e-06,6.8205e-06,7.2356e-06,9.3303e-06,9.7442e-06,1.0224e-05,1.2005e-05,1.2214e-05,1.2335e-05,1.393e-05,1.4963e-05,1.4997e-05,1.7192e-05,1.7407e-05,1.8509e-05,1.8659e-05,1.8806e-05,2.8405e-05,4.1811e-05,4.3283e-05,4.8428e-05,5.3508e-05,5.7796e-05,6.3309e-05,7.0345e-05,8.456e-05,9.3507e-05,0.00010999,0.00013465,0.00013717,0.00014268,0.00014796,0.00017854,0.00017859,0.00027741,0.00028649,0.00029165,0.00033194,0.0003351,0.00043067,0.00047479,0.00049437,0.00054001,0.00057104,0.00062818,0.00064696,0.00080984,0.0009286,0.0014154,0.0015854,0.0016463,0.0017607,0.0021139,0.0021939,0.0022672,0.0026427,0.0030457,0.0032086,0.0033478,0.0039002,0.0048446,0.00606,0.0070272,0.0072469,0.0094986,0.010412,0.010864,0.01107,0.011942,0.016208,0.016365,0.017241,0.018716,0.019018,0.021347,0.029092,0.029209,0.031799,0.032775,0.045849,0.049752,0.05005,0.053786,0.059213,0.059324,0.059783,0.063297,0.06333,0.066662,0.067989,0.089409,0.10036,0.10075,0.11445,0.11836,0.1246,0.12773,0.1296,0.13169,0.13238,0.13423,0.14188,0.14279,0.14468,0.14624,0.15843,0.17309,0.19331,0.20134,0.21905,0.24002,0.24922,0.25406,0.31132,0.31839,0.32364,0.33419,0.34787,0.35995,0.36992,0.3717,0.37283,0.38562,0.42019,0.42278,0.43676,0.45877,0.47108,0.47309,0.54535,0.54613,0.56067,0.58922,0.59443,0.61386,0.61844,0.65045,0.67118,0.71761,0.7187,0.76982,0.77548,0.77728,0.80859,0.81053,0.82141,0.8354,0.83968,0.8429,0.85533,0.85735,0.85867,0.86817,0.87143,0.87228,0.87987,0.88255,0.89696,0.91908,0.92278,0.92375,0.93264,0.93618,0.94965,0.96964,0.97486,0.98214,0.98451,0.99022,0.99461,0.99492,0.99514,0.99517,0.99616,0.99624,0.99858,0.99928,0.99996,0.99997,1,0.99875,0.99868,0.99718,0.99479,0.98875,0.98779,0.98483,0.98412,0.98227,0.97895,0.97333,0.97317,0.95807,0.93717,0.93473,0.93198,0.93111,0.9162,0.9064,0.87002,0.86799,0.86385,0.85677,0.82937,0.79915,0.76446,0.75375,0.74731,0.73078,0.69679,0.68165,0.66187,0.63129,0.60481,0.60003,0.54919,0.54255,0.54013,0.5284,0.52375,0.48704,0.47154,0.4671,0.46665,0.45737,0.44498,0.43928,0.43675,0.39352,0.39347,0.35637,0.31636,0.28184,0.2522,0.24004,0.23692,0.22973,0.22356,0.2095,0.20798,0.18278,0.17678,0.16519,0.15159,0.14376,0.1429,0.13679,0.13281,0.12341,0.1104,0.10923,0.10391,0.095938,0.089829,0.089551,0.070891,0.06817,0.066894,0.063713,0.062111,0.059656,0.055914,0.054461,0.052488,0.049441,0.045722,0.042399,0.042074,0.038324,0.036016,0.034083,0.030019,0.028307,0.027707,0.025664,0.025545,0.024696,0.024329,0.019904,0.01889,0.018509,0.016853,0.015954,0.015821,0.0139,0.010786,0.0099888,0.0095991,0.0087442,0.0086739,0.0078017,0.0077112,0.0067148,0.0061852,0.0052351,0.0051561,0.0050829,0.0050425,0.0049122,0.0048083,0.0047458,0.004132,0.0040131,0.0030322,0.0027566,0.0025869,0.0025224,0.0020418,0.0020342,0.0018958,0.0018341,0.0015515,0.0015433,0.001524,0.0013436,0.0012973,0.0012812,0.0012334,0.0011741,0.0011205,0.0010935,0.00085888,0.00085154,0.00074917,0.00061689,0.00051268,0.00039497,0.0003935,0.00035833,0.00031826,0.00027179,0.00027132,0.0002568,0.00019784,0.00018611,0.00018486,0.00013511,0.00012603,0.00012107,0.00010693,9.4468e-05,7.5048e-05,7.2375e-05,6.0699e-05,4.0726e-05,4.0507e-05,3.9192e-05,3.6629e-05,3.4732e-05,3.2522e-05,3.0087e-05,1.4405e-05,1.1829e-05,8.7197e-06,6.9345e-06,6.8562e-06,6.6793e-06,4.7283e-06,4.3594e-06,4.33e-06,3.0967e-06,1.7418e-06,1.7099e-06,1.44e-06,1.3895e-06,9.3246e-07,8.3317e-07,6.5073e-07,5.7159e-07,4.9497e-07,4.8125e-07,4.0527e-07,3.9314e-07,3.8751e-07,2.6131e-07,2.3206e-07,2.2072e-07,1.8748e-07,1.7806e-07,1.4043e-07,1.33e-07,1.1918e-07,9.0554e-08,9.0318e-08,7.9088e-08,7.5614e-08,7.5609e-08,5.6308e-08,5.5784e-08,4.9368e-08,4.3376e-08,3.266e-08,2.5245e-08,2.0961e-08,1.5565e-08,1.1795e-08,8.2066e-09,8.0859e-09,6.103e-09,4.6479e-09,3.9552e-09,2.5596e-09,2.251e-09,1.732e-09,1.4822e-09,1.0688e-09,1.0323e-09,9.61e-10,8.1399e-10,5.7393e-10,3.9964e-10,3.2953e-10,2.716e-10,2.4547e-10,2.4199e-10,2.0129e-10,1.6256e-10,8.415e-11,7.0513e-11,6.3954e-11,5.1517e-11,5.144e-11,4.1537e-11,4.0444e-11,3.4963e-11,3.1094e-11,2.091e-11,1.9738e-11,1.4445e-11,1.0784e-11,4.1065e-12,3.4187e-12,3.1284e-12,2.4775e-12,1.9888e-12,1.8291e-12,1.5468e-12,1.371e-12,1.18e-12,9.201e-13,9.1887e-13,5.8589e-13,5.1958e-13,5.0671e-13,4.9998e-13,3.151e-13,3.118e-13,2.9756e-13,2.8726e-13,2.6218e-13,2.2529e-13,1.9659e-13,1.0699e-13,2.8732e-14,1.9331e-14,1.8664e-14,1.8129e-14,1.6501e-14,1.5658e-14,9.4978e-15,6.8178e-15,5.3508e-15,4.6703e-15,3.5123e-15,2.7541e-15,2.6321e-15,1.8673e-15,1.5363e-15,1.2098e-15,8.2261e-16,4.9332e-16,4.7741e-16,4.012e-16,3.5548e-16,3.3666e-16,1.8792e-16,1.6008e-16,7.6843e-17,6.2616e-17,4.3599e-17,3.5894e-17,3.3699e-17,2.3874e-17,2.2831e-17,2.0704e-17,1.6715e-17,1.1094e-17 1,7.6429e-07,9.9179e-07,1.0048e-06,1.0864e-06,1.1536e-06,1.2479e-06,1.4528e-06,2.0784e-06,2.6035e-06,2.6948e-06,3.2187e-06,3.313e-06,3.7149e-06,4.8979e-06,5.3384e-06,5.6667e-06,7.3264e-06,7.6549e-06,8.0356e-06,9.4519e-06,9.6176e-06,9.7141e-06,1.0984e-05,1.1807e-05,1.1835e-05,1.3587e-05,1.3758e-05,1.4639e-05,1.4759e-05,1.4876e-05,2.257e-05,3.3364e-05,3.4552e-05,3.8709e-05,4.2816e-05,4.6288e-05,5.0756e-05,5.6464e-05,6.8018e-05,7.5303e-05,8.8745e-05,0.0001089,0.00011096,0.00011547,0.0001198,0.00014488,0.00014493,0.00022632,0.00023383,0.00023809,0.00027142,0.00027404,0.0003533,0.00038998,0.00040628,0.00044429,0.00047016,0.00051784,0.00053353,0.00066983,0.00076945,0.0011796,0.0013233,0.0013748,0.0014718,0.0017716,0.0018396,0.001902,0.0022218,0.002566,0.0027053,0.0028245,0.0032981,0.0041101,0.005159,0.0059965,0.006187,0.0081448,0.0089414,0.0093364,0.0095166,0.010279,0.014024,0.014162,0.014934,0.016235,0.016502,0.018561,0.025439,0.025544,0.027853,0.028725,0.040448,0.043964,0.044232,0.047605,0.052513,0.052614,0.05303,0.056215,0.056244,0.059268,0.060474,0.08001,0.090047,0.090403,0.10301,0.10662,0.11238,0.11527,0.117,0.11894,0.11957,0.12129,0.12838,0.12922,0.13097,0.13242,0.14376,0.15742,0.17635,0.18387,0.20053,0.22031,0.22902,0.23359,0.28808,0.29484,0.29986,0.30997,0.3231,0.33472,0.34431,0.34603,0.34712,0.35946,0.39293,0.39545,0.40904,0.43048,0.44251,0.44448,0.5155,0.51627,0.53066,0.559,0.56419,0.58356,0.58814,0.62021,0.64109,0.68812,0.68923,0.74156,0.7474,0.74925,0.7817,0.78372,0.79507,0.80972,0.81422,0.8176,0.83073,0.83287,0.83426,0.84435,0.84782,0.84873,0.85683,0.8597,0.8752,0.89928,0.90334,0.90441,0.91426,0.91819,0.93335,0.95649,0.96272,0.97165,0.97463,0.98208,0.98823,0.98867,0.98901,0.98905,0.99057,0.99069,0.99468,0.99614,0.99826,0.99833,0.99875,1,1,0.99968,0.99864,0.99497,0.99431,0.99223,0.99172,0.99036,0.98786,0.98348,0.98335,0.97098,0.95301,0.95087,0.94844,0.94768,0.93439,0.92555,0.89215,0.89027,0.88642,0.87981,0.85405,0.82531,0.79199,0.78164,0.77539,0.75933,0.72612,0.71125,0.69175,0.66146,0.6351,0.63033,0.57936,0.57267,0.57023,0.55839,0.55369,0.51648,0.50072,0.49619,0.49573,0.48627,0.4736,0.46777,0.46519,0.42079,0.42074,0.38242,0.34085,0.30479,0.27367,0.26086,0.25757,0.24997,0.24346,0.22856,0.22696,0.20017,0.19377,0.1814,0.16683,0.15844,0.15751,0.15094,0.14666,0.13652,0.12245,0.12119,0.11543,0.10677,0.10012,0.099818,0.07943,0.076446,0.075046,0.071552,0.06979,0.067089,0.062966,0.061363,0.059185,0.055817,0.0517,0.048015,0.047655,0.043488,0.040918,0.038763,0.034224,0.032308,0.031635,0.029345,0.029211,0.028257,0.027845,0.022863,0.021719,0.021288,0.019416,0.018398,0.018247,0.016067,0.012521,0.01161,0.011165,0.010186,0.010105,0.0091047,0.0090008,0.0078551,0.0072448,0.0061479,0.0060566,0.0059719,0.0059251,0.0057744,0.005654,0.0055818,0.00487,0.004732,0.0035903,0.0032685,0.0030701,0.0029947,0.0024314,0.0024225,0.0022599,0.0021875,0.0018548,0.001845,0.0018223,0.0016093,0.0015547,0.0015357,0.0014791,0.0014089,0.0013454,0.0013135,0.001035,0.0010263,0.00090445,0.00074664,0.00062199,0.00048078,0.00047901,0.00043672,0.00038846,0.00033239,0.00033181,0.00031428,0.00024289,0.00022866,0.00022714,0.00016663,0.00015557,0.00014951,0.00013224,0.000117,9.3195e-05,8.9912e-05,7.5559e-05,5.0923e-05,5.0653e-05,4.9026e-05,4.5855e-05,4.3505e-05,4.0767e-05,3.7747e-05,1.8216e-05,1.499e-05,1.1085e-05,8.8361e-06,8.7375e-06,8.5143e-06,6.0485e-06,5.5811e-06,5.5439e-06,3.9781e-06,2.2502e-06,2.2094e-06,1.8637e-06,1.7991e-06,1.2119e-06,1.084e-06,8.4861e-07,7.4631e-07,6.4714e-07,6.2936e-07,5.3084e-07,5.151e-07,5.0778e-07,3.4365e-07,3.0551e-07,2.9071e-07,2.473e-07,2.3497e-07,1.8571e-07,1.7597e-07,1.5785e-07,1.2022e-07,1.1991e-07,1.0512e-07,1.0054e-07,1.0054e-07,7.5065e-08,7.4372e-08,6.5888e-08,5.7954e-08,4.3743e-08,3.3886e-08,2.818e-08,2.0978e-08,1.5933e-08,1.1119e-08,1.0957e-08,8.2889e-09,6.3266e-09,5.3907e-09,3.5007e-09,3.0817e-09,2.3762e-09,2.0359e-09,1.4718e-09,1.422e-09,1.3245e-09,1.1233e-09,7.9415e-10,5.5452e-10,4.5791e-10,3.7796e-10,3.4185e-10,3.3705e-10,2.8074e-10,2.2709e-10,1.1813e-10,9.9113e-11,8.9958e-11,7.2578e-11,7.247e-11,5.8609e-11,5.7078e-11,4.9395e-11,4.3966e-11,2.965e-11,2.8e-11,2.0536e-11,1.5364e-11,5.8898e-12,4.9095e-12,4.4954e-12,3.5658e-12,2.8666e-12,2.6379e-12,2.2334e-12,1.9811e-12,1.7068e-12,1.3332e-12,1.3314e-12,8.5148e-13,7.5572e-13,7.3712e-13,7.2739e-13,4.5982e-13,4.5503e-13,4.3438e-13,4.1944e-13,3.8306e-13,3.2949e-13,2.8776e-13,1.5723e-13,4.2581e-14,2.8721e-14,2.7736e-14,2.6946e-14,2.454e-14,2.3295e-14,1.4174e-14,1.0195e-14,8.0136e-15,7.0004e-15,5.2738e-15,4.1416e-15,3.9591e-15,2.8146e-15,2.3185e-15,1.8284e-15,1.2461e-15,7.4957e-16,7.2554e-16,6.1035e-16,5.4118e-16,5.1269e-16,2.8717e-16,2.4485e-16,1.1804e-16,9.63e-17,6.7194e-17,5.5382e-17,5.2013e-17,3.6921e-17,3.5318e-17,3.2045e-17,2.5902e-17,1.7232e-17 1,7.5841e-07,9.8423e-07,9.971e-07,1.0782e-06,1.1448e-06,1.2385e-06,1.4418e-06,2.063e-06,2.5844e-06,2.675e-06,3.1952e-06,3.2889e-06,3.688e-06,4.8628e-06,5.3002e-06,5.6263e-06,7.2748e-06,7.601e-06,7.9792e-06,9.386e-06,9.5506e-06,9.6465e-06,1.0908e-05,1.1726e-05,1.1753e-05,1.3494e-05,1.3664e-05,1.4539e-05,1.4658e-05,1.4775e-05,2.2419e-05,3.3145e-05,3.4325e-05,3.8455e-05,4.2538e-05,4.5988e-05,5.0428e-05,5.6102e-05,6.7586e-05,7.4827e-05,8.8189e-05,0.00010822,0.00011027,0.00011476,0.00011906,0.000144,0.00014404,0.00022498,0.00023244,0.00023668,0.00026983,0.00027243,0.00035126,0.00038774,0.00040395,0.00044176,0.00046748,0.00051492,0.00053052,0.00066611,0.00076523,0.0011733,0.0013163,0.0013676,0.0014641,0.0017624,0.0018301,0.0018922,0.0022106,0.0025531,0.0026918,0.0028105,0.0032819,0.0040903,0.0051347,0.0059686,0.0061583,0.0081081,0.0089016,0.009295,0.0094745,0.010234,0.013964,0.014102,0.014871,0.016167,0.016433,0.018485,0.025339,0.025443,0.027745,0.028614,0.040299,0.043804,0.044072,0.047435,0.052328,0.052429,0.052843,0.056019,0.056048,0.059064,0.060266,0.079748,0.08976,0.090115,0.1027,0.10629,0.11204,0.11492,0.11665,0.11858,0.11922,0.12093,0.128,0.12884,0.13059,0.13204,0.14335,0.15698,0.17587,0.18338,0.20001,0.21976,0.22844,0.23301,0.28742,0.29417,0.29919,0.30928,0.32239,0.334,0.34358,0.3453,0.34638,0.35872,0.39215,0.39467,0.40824,0.42967,0.44169,0.44365,0.51464,0.51541,0.52979,0.55813,0.56331,0.58268,0.58726,0.61933,0.64021,0.68725,0.68837,0.74073,0.74657,0.74842,0.7809,0.78292,0.79428,0.80895,0.81346,0.81685,0.82999,0.83213,0.83353,0.84363,0.84711,0.84802,0.85613,0.85901,0.87454,0.89867,0.90275,0.90382,0.91369,0.91764,0.93284,0.95607,0.96234,0.97131,0.97431,0.98181,0.98801,0.98846,0.9888,0.98884,0.99037,0.99049,0.99453,0.99601,0.99817,0.99825,0.99868,1,1,0.99972,0.99871,0.99511,0.99447,0.99241,0.99191,0.99056,0.98808,0.98374,0.98361,0.97132,0.95344,0.9513,0.94889,0.94813,0.93489,0.92608,0.89277,0.89089,0.88705,0.88046,0.85474,0.82606,0.79278,0.78244,0.7762,0.76015,0.72697,0.7121,0.69261,0.66233,0.63598,0.63121,0.58024,0.57355,0.57111,0.55927,0.55457,0.51734,0.50157,0.49704,0.49658,0.48711,0.47445,0.46861,0.46603,0.4216,0.42154,0.38319,0.34158,0.30548,0.27431,0.26148,0.25819,0.25058,0.24406,0.22914,0.22753,0.20069,0.19428,0.18188,0.16729,0.15888,0.15795,0.15137,0.14708,0.13692,0.12282,0.12156,0.11578,0.1071,0.10043,0.10013,0.079691,0.076698,0.075295,0.071791,0.070025,0.067316,0.063181,0.061574,0.05939,0.056013,0.051884,0.048188,0.047826,0.043646,0.041069,0.038907,0.034353,0.032431,0.031756,0.029459,0.029324,0.028367,0.027954,0.022955,0.021807,0.021374,0.019495,0.018473,0.018323,0.016135,0.012575,0.011661,0.011214,0.010231,0.01015,0.0091454,0.0090411,0.0078907,0.007278,0.0061765,0.0060848,0.0059998,0.0059528,0.0058014,0.0056806,0.005608,0.0048931,0.0047545,0.0036078,0.0032846,0.0030853,0.0030095,0.0024437,0.0024347,0.0022714,0.0021986,0.0018643,0.0018546,0.0018317,0.0016178,0.0015628,0.0015437,0.0014869,0.0014164,0.0013526,0.0013205,0.0010406,0.0010318,0.00090939,0.00075077,0.00062548,0.00048352,0.00048174,0.00043923,0.00039071,0.00033433,0.00033375,0.00031612,0.00024434,0.00023003,0.0002285,0.00016764,0.00015652,0.00015043,0.00013305,0.00011773,9.3781e-05,9.0479e-05,7.6039e-05,5.1254e-05,5.0981e-05,4.9345e-05,4.6154e-05,4.379e-05,4.1034e-05,3.7996e-05,1.834e-05,1.5093e-05,1.1162e-05,8.8984e-06,8.799e-06,8.5743e-06,6.0918e-06,5.6212e-06,5.5838e-06,4.0071e-06,2.267e-06,2.2259e-06,1.8777e-06,1.8126e-06,1.2211e-06,1.0923e-06,8.5517e-07,7.521e-07,6.5218e-07,6.3427e-07,5.3501e-07,5.1915e-07,5.1177e-07,3.4639e-07,3.0795e-07,2.9304e-07,2.4929e-07,2.3687e-07,1.8722e-07,1.774e-07,1.5914e-07,1.2121e-07,1.209e-07,1.0599e-07,1.0138e-07,1.0137e-07,7.5693e-08,7.4994e-08,6.6441e-08,5.8443e-08,4.4115e-08,3.4176e-08,2.8423e-08,2.116e-08,1.6072e-08,1.1217e-08,1.1054e-08,8.3627e-09,6.3833e-09,5.4393e-09,3.5326e-09,3.1099e-09,2.3981e-09,2.0547e-09,1.4856e-09,1.4353e-09,1.3369e-09,1.1339e-09,8.0166e-10,5.5981e-10,4.623e-10,3.816e-10,3.4515e-10,3.403e-10,2.8346e-10,2.293e-10,1.1929e-10,1.001e-10,9.0853e-11,7.3303e-11,7.3194e-11,5.9197e-11,5.7651e-11,4.9892e-11,4.441e-11,2.9951e-11,2.8285e-11,2.0747e-11,1.5523e-11,5.9518e-12,4.9613e-12,4.5429e-12,3.6036e-12,2.8972e-12,2.6661e-12,2.2574e-12,2.0024e-12,1.7252e-12,1.3476e-12,1.3458e-12,8.6076e-13,7.6398e-13,7.4518e-13,7.3534e-13,4.6489e-13,4.6005e-13,4.3918e-13,4.2408e-13,3.873e-13,3.3314e-13,2.9096e-13,1.59e-13,4.307e-14,2.9053e-14,2.8056e-14,2.7258e-14,2.4824e-14,2.3565e-14,1.434e-14,1.0315e-14,8.1081e-15,7.0831e-15,5.3364e-15,4.1909e-15,4.0063e-15,2.8483e-15,2.3463e-15,1.8504e-15,1.2612e-15,7.5873e-16,7.3441e-16,6.1783e-16,5.4782e-16,5.1899e-16,2.9073e-16,2.4789e-16,1.1952e-16,9.7511e-17,6.8043e-17,5.6083e-17,5.2673e-17,3.7391e-17,3.5768e-17,3.2454e-17,2.6234e-17,1.7454e-17 1,6.6831e-07,8.6832e-07,8.7973e-07,9.5157e-07,1.0107e-06,1.0938e-06,1.2743e-06,1.8262e-06,2.2902e-06,2.3709e-06,2.8343e-06,2.9178e-06,3.2736e-06,4.3221e-06,4.7129e-06,5.0043e-06,6.4786e-06,6.7706e-06,7.1091e-06,8.3692e-06,8.5167e-06,8.6027e-06,9.7338e-06,1.0467e-05,1.0492e-05,1.2054e-05,1.2206e-05,1.2992e-05,1.3099e-05,1.3204e-05,2.0078e-05,2.9744e-05,3.0809e-05,3.4537e-05,3.8224e-05,4.1342e-05,4.5356e-05,5.0487e-05,6.0883e-05,6.7443e-05,7.9558e-05,9.7741e-05,9.9603e-05,0.00010368,0.00010758,0.00013026,0.0001303,0.00020404,0.00021084,0.00021472,0.00024497,0.00024735,0.0003194,0.00035278,0.00036761,0.00040224,0.00042581,0.00046929,0.0004836,0.00060805,0.00069914,0.0010749,0.0012068,0.0012541,0.0013432,0.0016189,0.0016815,0.001739,0.0020337,0.0023511,0.0024798,0.0025898,0.0030275,0.0037792,0.004752,0.0055299,0.005707,0.0075295,0.0082722,0.0086407,0.0088089,0.0095208,0.013024,0.013153,0.013876,0.015096,0.015346,0.017279,0.023751,0.023849,0.026027,0.026849,0.037932,0.041264,0.041519,0.044718,0.049378,0.049474,0.049869,0.052897,0.052924,0.055801,0.056948,0.075576,0.085171,0.085512,0.09759,0.10104,0.10657,0.10935,0.11101,0.11287,0.11348,0.11513,0.12194,0.12275,0.12444,0.12583,0.13675,0.14992,0.1682,0.17548,0.19161,0.21079,0.21924,0.22369,0.27675,0.28335,0.28826,0.29814,0.31098,0.32235,0.33176,0.33344,0.33451,0.34661,0.3795,0.38197,0.39535,0.41648,0.42835,0.43029,0.50059,0.50135,0.51564,0.54383,0.54899,0.5683,0.57287,0.60491,0.62582,0.67306,0.67418,0.72701,0.73291,0.73479,0.76774,0.76979,0.78135,0.7963,0.8009,0.80436,0.8178,0.82,0.82142,0.83178,0.83536,0.83629,0.84463,0.84759,0.8636,0.8886,0.89284,0.89396,0.90426,0.90838,0.92435,0.94902,0.95575,0.96548,0.96877,0.97707,0.98409,0.9846,0.985,0.98504,0.98682,0.98696,0.99178,0.99362,0.99645,0.99656,0.99718,0.99968,0.99972,1,0.99963,0.99717,0.99668,0.99505,0.99464,0.99353,0.99145,0.9877,0.98759,0.97663,0.96019,0.95821,0.95595,0.95524,0.94281,0.93448,0.90268,0.90087,0.89718,0.89083,0.86596,0.83805,0.8055,0.79535,0.78922,0.77344,0.74069,0.72598,0.70667,0.67659,0.65034,0.64559,0.59464,0.58794,0.58549,0.57362,0.56891,0.53151,0.51563,0.51107,0.5106,0.50106,0.48828,0.48239,0.47978,0.43485,0.4348,0.3959,0.35359,0.31678,0.28492,0.27179,0.26841,0.26061,0.25392,0.23861,0.23696,0.20937,0.20277,0.18999,0.17493,0.16624,0.16528,0.15848,0.15404,0.14353,0.12891,0.1276,0.1216,0.11258,0.10565,0.10534,0.084043,0.08092,0.079455,0.075795,0.07395,0.071117,0.066792,0.06511,0.062824,0.059286,0.054957,0.051078,0.050699,0.046308,0.043599,0.041325,0.03653,0.034504,0.033792,0.031369,0.031227,0.030217,0.02978,0.024497,0.023282,0.022824,0.020834,0.019751,0.019591,0.01727,0.013487,0.012515,0.012038,0.010991,0.010905,0.0098336,0.0097223,0.0084941,0.0078394,0.0066611,0.0065629,0.0064719,0.0064216,0.0062595,0.0061301,0.0060523,0.0052861,0.0051374,0.0039061,0.0035586,0.0033441,0.0032625,0.0026529,0.0026433,0.0024672,0.0023886,0.0020277,0.0020171,0.0019924,0.0017612,0.0017017,0.0016811,0.0016196,0.0015433,0.0014742,0.0014394,0.0011361,0.0011266,0.00099371,0.00082137,0.00068508,0.00053044,0.00052849,0.00048212,0.00042917,0.00036758,0.00036695,0.00034767,0.00026913,0.00025346,0.00025179,0.00018506,0.00017284,0.00016616,0.00014707,0.00013021,0.00010386,0.00010022,8.4309e-05,5.6949e-05,5.6648e-05,5.4839e-05,5.1311e-05,4.8697e-05,4.5648e-05,4.2285e-05,2.0487e-05,1.6877e-05,1.25e-05,9.9764e-06,9.8656e-06,9.6149e-06,6.8425e-06,6.3164e-06,6.2745e-06,4.5099e-06,2.5583e-06,2.5122e-06,2.1209e-06,2.0477e-06,1.382e-06,1.2368e-06,9.6939e-07,8.5304e-07,7.4019e-07,7.1995e-07,6.0774e-07,5.898e-07,5.8146e-07,3.9423e-07,3.5066e-07,3.3376e-07,2.8413e-07,2.7003e-07,2.1365e-07,2.0249e-07,1.8172e-07,1.3857e-07,1.3822e-07,1.2124e-07,1.1599e-07,1.1598e-07,8.6706e-08,8.5909e-08,7.6149e-08,6.7018e-08,5.0646e-08,3.9276e-08,3.2689e-08,2.4365e-08,1.8527e-08,1.2949e-08,1.2761e-08,9.6646e-09,7.3849e-09,6.2965e-09,4.0961e-09,3.6078e-09,2.7847e-09,2.3874e-09,1.7282e-09,1.6699e-09,1.5558e-09,1.3204e-09,9.3472e-10,6.5358e-10,5.4011e-10,4.4614e-10,4.0367e-10,3.9802e-10,3.3176e-10,2.6858e-10,1.4005e-10,1.1758e-10,1.0676e-10,8.6203e-11,8.6076e-11,6.9667e-11,6.7853e-11,5.8751e-11,5.2316e-11,3.5331e-11,3.3372e-11,2.4504e-11,1.8351e-11,7.059e-12,5.8878e-12,5.3928e-12,4.2811e-12,3.4443e-12,3.1704e-12,2.6858e-12,2.3834e-12,2.0544e-12,1.606e-12,1.6039e-12,1.0273e-12,9.1216e-13,8.8978e-13,8.7808e-13,5.5594e-13,5.5017e-13,5.2528e-13,5.0727e-13,4.6341e-13,3.988e-13,3.4846e-13,1.9077e-13,5.1885e-14,3.5041e-14,3.3842e-14,3.2882e-14,2.9955e-14,2.8439e-14,1.7332e-14,1.248e-14,9.8164e-15,8.5789e-15,6.4687e-15,5.0837e-15,4.8605e-15,3.459e-15,2.851e-15,2.2499e-15,1.5352e-15,9.2491e-16,8.9535e-16,7.5359e-16,6.6843e-16,6.3335e-16,3.5537e-16,3.0315e-16,1.4646e-16,1.1956e-16,8.3509e-17,6.8867e-17,6.4691e-17,4.5966e-17,4.3975e-17,3.9912e-17,3.2281e-17,2.1501e-17 1,5.7841e-07,7.5252e-07,7.6245e-07,8.2505e-07,8.7658e-07,9.4903e-07,1.1065e-06,1.5888e-06,1.9948e-06,2.0655e-06,2.4715e-06,2.5447e-06,2.8568e-06,3.7775e-06,4.121e-06,4.3772e-06,5.6749e-06,5.9321e-06,6.2303e-06,7.3413e-06,7.4715e-06,7.5473e-06,8.5456e-06,9.1932e-06,9.215e-06,1.0595e-05,1.073e-05,1.1425e-05,1.1519e-05,1.1612e-05,1.77e-05,2.6282e-05,2.7229e-05,3.0544e-05,3.3825e-05,3.6602e-05,4.0177e-05,4.4752e-05,5.4029e-05,5.9888e-05,7.0718e-05,8.6993e-05,8.8661e-05,9.2313e-05,9.5812e-05,0.00011615,0.00011618,0.00018246,0.00018859,0.00019207,0.00021933,0.00022147,0.00028647,0.00031663,0.00033003,0.00036134,0.00038267,0.00042202,0.00043498,0.00054779,0.00063047,0.00097231,0.0010926,0.0011357,0.001217,0.0014689,0.0015261,0.0015787,0.0018484,0.0021394,0.0022573,0.0023583,0.0027603,0.0034517,0.0043484,0.0050666,0.0052302,0.0069168,0.0076053,0.0079471,0.0081032,0.0087641,0.012022,0.012143,0.012817,0.013955,0.014188,0.015993,0.022051,0.022143,0.024185,0.024958,0.035386,0.038529,0.038769,0.041789,0.046194,0.046285,0.046659,0.049524,0.04955,0.052274,0.053361,0.071048,0.080184,0.080509,0.092029,0.095328,0.10061,0.10327,0.10485,0.10664,0.10722,0.1088,0.11532,0.1161,0.11772,0.11905,0.12953,0.14218,0.15977,0.16679,0.18235,0.2009,0.20908,0.21339,0.26492,0.27135,0.27613,0.28576,0.29829,0.30939,0.31858,0.32024,0.32127,0.33312,0.36535,0.36778,0.38092,0.4017,0.41339,0.4153,0.48475,0.48551,0.49966,0.52765,0.53279,0.552,0.55656,0.58853,0.60944,0.65683,0.65796,0.71123,0.7172,0.71911,0.75252,0.75462,0.76638,0.78162,0.78632,0.78986,0.80361,0.80586,0.80732,0.81795,0.82163,0.82258,0.83116,0.83422,0.85074,0.87669,0.88111,0.88227,0.89303,0.89736,0.91416,0.94041,0.94766,0.95824,0.96185,0.97104,0.97898,0.97957,0.98002,0.98008,0.98212,0.98229,0.98798,0.99022,0.99382,0.99397,0.99479,0.99864,0.99871,0.99963,1,0.99884,0.99851,0.99737,0.99706,0.99623,0.9946,0.99155,0.99146,0.98203,0.96726,0.96545,0.96339,0.96274,0.95125,0.94348,0.91346,0.91173,0.90822,0.90215,0.87828,0.85131,0.81964,0.80973,0.80374,0.78828,0.75609,0.74158,0.7225,0.69269,0.66661,0.66188,0.61103,0.60432,0.60187,0.58999,0.58526,0.5477,0.53173,0.52713,0.52666,0.51705,0.50416,0.49821,0.49558,0.45012,0.45007,0.41059,0.36751,0.3299,0.29728,0.2838,0.28033,0.27232,0.26545,0.24969,0.24799,0.21954,0.21272,0.19951,0.18392,0.17491,0.17391,0.16686,0.16225,0.15132,0.13611,0.13474,0.12849,0.11908,0.11184,0.11151,0.08922,0.085944,0.084406,0.080564,0.078625,0.075649,0.0711,0.06933,0.066923,0.063196,0.058632,0.054539,0.054138,0.049499,0.046633,0.044226,0.039146,0.036997,0.036242,0.033668,0.033518,0.032444,0.03198,0.026358,0.025064,0.024576,0.022453,0.021297,0.021126,0.018646,0.014595,0.013552,0.01304,0.011916,0.011823,0.010672,0.010552,0.00923,0.0085245,0.0072535,0.0071474,0.0070492,0.0069948,0.0068198,0.0066799,0.0065959,0.0057674,0.0056066,0.0042724,0.0038952,0.0036623,0.0035736,0.0029107,0.0029002,0.0027084,0.0026228,0.0022293,0.0022178,0.0021908,0.0019384,0.0018735,0.0018509,0.0017837,0.0017003,0.0016247,0.0015867,0.0012545,0.0012441,0.0010984,0.00090912,0.00075925,0.00058892,0.00058678,0.00053563,0.00047718,0.00040914,0.00040844,0.00038713,0.00030019,0.00028282,0.00028097,0.00020692,0.00019335,0.00018592,0.00016469,0.00014593,0.00011656,0.00011251,9.4744e-05,6.4153e-05,6.3816e-05,6.179e-05,5.7839e-05,5.4909e-05,5.1492e-05,4.772e-05,2.322e-05,1.9149e-05,1.4208e-05,1.1354e-05,1.1228e-05,1.0945e-05,7.8036e-06,7.2067e-06,7.1592e-06,5.1552e-06,2.9333e-06,2.8806e-06,2.4342e-06,2.3506e-06,1.5897e-06,1.4235e-06,1.1171e-06,9.8369e-07,8.5417e-07,8.3093e-07,7.0202e-07,6.814e-07,6.7182e-07,4.5638e-07,4.0618e-07,3.8669e-07,3.2945e-07,3.1318e-07,2.4807e-07,2.3518e-07,2.1117e-07,1.6124e-07,1.6083e-07,1.4117e-07,1.3507e-07,1.3507e-07,1.0112e-07,1.0019e-07,8.8859e-08,7.8251e-08,5.9212e-08,4.5974e-08,3.8296e-08,2.8582e-08,2.1761e-08,1.5234e-08,1.5013e-08,1.1385e-08,8.7097e-09,7.4314e-09,4.8435e-09,4.2684e-09,3.2983e-09,2.8296e-09,2.0511e-09,1.9822e-09,1.8473e-09,1.5688e-09,1.1123e-09,7.7888e-10,6.4416e-10,5.3251e-10,4.8202e-10,4.753e-10,3.9647e-10,3.2124e-10,1.6795e-10,1.4111e-10,1.2817e-10,1.0358e-10,1.0342e-10,8.3779e-11,8.1606e-11,7.0699e-11,6.2984e-11,4.2601e-11,4.0248e-11,2.9588e-11,2.2184e-11,8.5643e-12,7.1482e-12,6.5494e-12,5.2037e-12,4.19e-12,3.858e-12,3.2703e-12,2.9034e-12,2.504e-12,1.9593e-12,1.9567e-12,1.2553e-12,1.1151e-12,1.0878e-12,1.0736e-12,6.8082e-13,6.7378e-13,6.4341e-13,6.2143e-13,5.6788e-13,4.8897e-13,4.2745e-13,2.3452e-13,6.4074e-14,4.3332e-14,4.1854e-14,4.0671e-14,3.7062e-14,3.5193e-14,2.1484e-14,1.5487e-14,1.2192e-14,1.0659e-14,8.0451e-15,6.3277e-15,6.0507e-15,4.3109e-15,3.5554e-15,2.8081e-15,1.9184e-15,1.1577e-15,1.1208e-15,9.4389e-16,8.3755e-16,7.9373e-16,4.4619e-16,3.8081e-16,1.8441e-16,1.5063e-16,1.0533e-16,8.6917e-17,8.1662e-17,5.8087e-17,5.5579e-17,5.0458e-17,4.0838e-17,2.7235e-17 1,4.4618e-07,5.8186e-07,5.8962e-07,6.3848e-07,6.7874e-07,7.3537e-07,8.5859e-07,1.237e-06,1.5564e-06,1.6121e-06,1.9322e-06,1.99e-06,2.2366e-06,2.9653e-06,3.2377e-06,3.4409e-06,4.4723e-06,4.6771e-06,4.9146e-06,5.8004e-06,5.9042e-06,5.9648e-06,6.7621e-06,7.2798e-06,7.2973e-06,8.4019e-06,8.5101e-06,9.0669e-06,9.1427e-06,9.217e-06,1.411e-05,2.1037e-05,2.1803e-05,2.4488e-05,2.7148e-05,2.94e-05,3.2305e-05,3.6025e-05,4.3582e-05,4.8362e-05,5.7212e-05,7.054e-05,7.1908e-05,7.4903e-05,7.7775e-05,9.449e-05,9.4518e-05,0.0001492,0.00015427,0.00015716,0.00017974,0.00018152,0.00023551,0.00026061,0.00027178,0.00029788,0.00031568,0.00034857,0.00035941,0.00045391,0.00052333,0.00081155,0.0009133,0.00094988,0.0010188,0.0012327,0.0012814,0.0013261,0.001556,0.0018045,0.0019054,0.0019919,0.0023365,0.0029311,0.0037049,0.0043265,0.0044683,0.0059342,0.0065344,0.0068328,0.006969,0.0075466,0.010405,0.010511,0.011104,0.012106,0.012312,0.013906,0.019279,0.019361,0.02118,0.021868,0.031203,0.034029,0.034245,0.036966,0.040941,0.041023,0.041361,0.043952,0.043975,0.046442,0.047427,0.063518,0.071869,0.072167,0.082734,0.085766,0.090631,0.093074,0.09454,0.096183,0.096723,0.098176,0.1042,0.10492,0.10642,0.10766,0.11736,0.12912,0.14551,0.15207,0.16664,0.18406,0.19176,0.19582,0.24462,0.25073,0.25528,0.26446,0.27641,0.28703,0.29584,0.29742,0.29841,0.30978,0.34079,0.34314,0.35582,0.37594,0.38728,0.38913,0.45689,0.45763,0.47153,0.49908,0.50414,0.52313,0.52764,0.55937,0.58021,0.6277,0.62883,0.68268,0.68876,0.69069,0.72481,0.72696,0.73903,0.75473,0.75959,0.76324,0.77749,0.77983,0.78135,0.79241,0.79624,0.79724,0.80621,0.80941,0.82678,0.85428,0.85899,0.86024,0.87177,0.87643,0.89464,0.92358,0.93172,0.94374,0.9479,0.95864,0.96817,0.96889,0.96945,0.96952,0.97204,0.97225,0.97946,0.98241,0.98736,0.98756,0.98875,0.99497,0.99511,0.99717,0.99884,1,0.99998,0.9997,0.99959,0.99925,0.99844,0.99664,0.99658,0.98993,0.97823,0.97674,0.97502,0.97448,0.96474,0.95801,0.93131,0.92975,0.92656,0.92104,0.89908,0.8739,0.84397,0.83452,0.8288,0.81399,0.78293,0.76886,0.75027,0.72107,0.69538,0.69071,0.64024,0.63355,0.6311,0.61922,0.61449,0.57679,0.56068,0.55604,0.55557,0.54585,0.5328,0.52678,0.5241,0.47784,0.47778,0.43736,0.393,0.35405,0.32009,0.30601,0.30239,0.294,0.2868,0.27026,0.26847,0.23849,0.23128,0.2173,0.20075,0.19117,0.1901,0.18258,0.17766,0.16599,0.14969,0.14823,0.14151,0.13138,0.12358,0.12322,0.099081,0.095521,0.093848,0.089666,0.087555,0.084309,0.079344,0.077409,0.074776,0.070696,0.06569,0.061193,0.060752,0.055645,0.052485,0.049827,0.044206,0.041824,0.040986,0.038128,0.037961,0.036767,0.036251,0.029983,0.028536,0.02799,0.025613,0.024317,0.024125,0.021338,0.016772,0.015592,0.015013,0.013739,0.013634,0.012326,0.01219,0.010685,0.009881,0.0084288,0.0083074,0.0081949,0.0081327,0.0079323,0.007772,0.0076758,0.0067253,0.0065405,0.0050042,0.0045685,0.0042991,0.0041965,0.003428,0.0034158,0.003193,0.0030935,0.0026354,0.0026219,0.0025905,0.0022958,0.00222,0.0021936,0.002115,0.0020174,0.0019289,0.0018844,0.0014946,0.0014823,0.0013108,0.0010876,0.00091042,0.00070844,0.0007059,0.0006451,0.00057553,0.0004944,0.00049356,0.00046811,0.0003641,0.00034328,0.00034106,0.00025209,0.00023574,0.00022678,0.00020117,0.0001785,0.00014295,0.00013803,0.00011646,7.9198e-05,7.8787e-05,7.6313e-05,7.1485e-05,6.7902e-05,6.372e-05,5.9102e-05,2.8979e-05,2.3947e-05,1.7822e-05,1.4274e-05,1.4118e-05,1.3765e-05,9.8478e-06,9.1018e-06,9.0423e-06,6.5322e-06,3.7371e-06,3.6707e-06,3.1067e-06,3.001e-06,2.0371e-06,1.826e-06,1.4362e-06,1.2661e-06,1.1008e-06,1.0712e-06,9.0638e-07,8.7999e-07,8.6773e-07,5.9152e-07,5.27e-07,5.0194e-07,4.2824e-07,4.0727e-07,3.2327e-07,3.066e-07,2.7556e-07,2.109e-07,2.1037e-07,1.8486e-07,1.7694e-07,1.7693e-07,1.3279e-07,1.3158e-07,1.1682e-07,1.0298e-07,7.811e-08,6.0774e-08,5.0701e-08,3.7932e-08,2.8944e-08,2.032e-08,2.0029e-08,1.5222e-08,1.167e-08,9.9695e-09,6.5196e-09,5.7511e-09,4.4529e-09,3.8246e-09,2.7792e-09,2.6866e-09,2.5051e-09,2.1301e-09,1.5141e-09,1.0631e-09,8.8047e-10,7.2888e-10,6.6025e-10,6.5111e-10,5.4385e-10,4.4133e-10,2.3182e-10,1.9502e-10,1.7726e-10,1.4346e-10,1.4325e-10,1.1622e-10,1.1322e-10,9.819e-11,8.7546e-11,5.9377e-11,5.612e-11,4.1344e-11,3.106e-11,1.2069e-11,1.0086e-11,9.2462e-12,7.3578e-12,5.933e-12,5.4659e-12,4.6384e-12,4.1212e-12,3.5577e-12,2.7883e-12,2.7846e-12,1.7917e-12,1.5927e-12,1.554e-12,1.5338e-12,9.7557e-13,9.6555e-13,9.223e-13,8.91e-13,8.1469e-13,7.0215e-13,6.1434e-13,3.3835e-13,9.3193e-14,6.3176e-14,6.1035e-14,5.932e-14,5.4087e-14,5.1376e-14,3.1457e-14,2.2721e-14,1.7913e-14,1.5674e-14,1.185e-14,9.3337e-15,8.9275e-15,6.3734e-15,5.2624e-15,4.162e-15,2.8498e-15,1.7248e-15,1.6702e-15,1.4079e-15,1.2502e-15,1.1851e-15,6.6843e-16,5.7101e-16,2.7766e-16,2.2706e-16,1.591e-16,1.3142e-16,1.2352e-16,8.8029e-17,8.4248e-17,7.6528e-17,6.201e-17,4.1447e-17 1,4.3114e-07,5.6243e-07,5.6993e-07,6.1723e-07,6.5619e-07,7.1101e-07,8.303e-07,1.1967e-06,1.5062e-06,1.5601e-06,1.8704e-06,1.9264e-06,2.1654e-06,2.872e-06,3.1361e-06,3.3332e-06,4.3338e-06,4.5325e-06,4.763e-06,5.6226e-06,5.7234e-06,5.7821e-06,6.5561e-06,7.0588e-06,7.0757e-06,8.1483e-06,8.2533e-06,8.7941e-06,8.8677e-06,8.9399e-06,1.3694e-05,2.0427e-05,2.1172e-05,2.3783e-05,2.637e-05,2.8561e-05,3.1387e-05,3.5007e-05,4.2361e-05,4.7014e-05,5.5631e-05,6.8612e-05,6.9944e-05,7.2862e-05,7.566e-05,9.1946e-05,9.1973e-05,0.00014529,0.00015023,0.00015304,0.00017507,0.0001768,0.00022948,0.00025398,0.00026488,0.00029037,0.00030775,0.00033986,0.00035044,0.00044275,0.00051059,0.00079237,0.00089188,0.00092768,0.0009951,0.0012044,0.0012521,0.0012958,0.0015209,0.0017643,0.0018632,0.0019479,0.0022855,0.0028683,0.0036271,0.0042369,0.0043761,0.0058149,0.0064043,0.0066973,0.0068311,0.0073985,0.010207,0.010312,0.010895,0.01188,0.012083,0.013651,0.018939,0.019019,0.02081,0.021488,0.030686,0.033472,0.033685,0.036368,0.04029,0.040371,0.040704,0.04326,0.043284,0.045718,0.04669,0.062578,0.07083,0.071124,0.081571,0.084569,0.089379,0.091796,0.093246,0.094871,0.095405,0.096843,0.10281,0.10352,0.105,0.10622,0.11583,0.12747,0.14371,0.15021,0.16465,0.18193,0.18956,0.19359,0.24203,0.24809,0.25261,0.26173,0.27361,0.28417,0.29292,0.29449,0.29548,0.30678,0.33763,0.33997,0.35259,0.37262,0.3839,0.38575,0.45327,0.45401,0.46787,0.49535,0.50041,0.51936,0.52386,0.55556,0.57638,0.62386,0.62499,0.6789,0.68499,0.68692,0.72112,0.72327,0.73539,0.75114,0.75601,0.75968,0.77399,0.77634,0.77786,0.78898,0.79283,0.79383,0.80285,0.80606,0.82354,0.85123,0.85598,0.85723,0.86887,0.87356,0.89195,0.92123,0.92948,0.94169,0.94591,0.95686,0.96659,0.96733,0.9679,0.96797,0.97056,0.97077,0.97817,0.98122,0.98634,0.98655,0.98779,0.99431,0.99447,0.99668,0.99851,0.99998,1,0.99984,0.99976,0.99948,0.99878,0.99714,0.99708,0.99081,0.97951,0.97806,0.97639,0.97586,0.96636,0.95977,0.93352,0.93198,0.92883,0.92339,0.90169,0.87676,0.84707,0.83769,0.83201,0.81728,0.7864,0.77238,0.75386,0.72476,0.69913,0.69447,0.64406,0.63738,0.63494,0.62306,0.61833,0.58062,0.56451,0.55986,0.55939,0.54966,0.53659,0.53056,0.52788,0.48152,0.48146,0.44093,0.39641,0.35729,0.32316,0.30901,0.30536,0.29693,0.28968,0.27304,0.27124,0.24105,0.2338,0.21971,0.20304,0.19338,0.19231,0.18473,0.17977,0.16799,0.15155,0.15007,0.14329,0.13307,0.12518,0.12483,0.10044,0.09684,0.095149,0.090921,0.088786,0.085504,0.080482,0.078525,0.075862,0.071733,0.066667,0.062115,0.061669,0.056498,0.053297,0.050605,0.04491,0.042496,0.041647,0.03875,0.03858,0.03737,0.036846,0.03049,0.029022,0.028468,0.026056,0.02474,0.024545,0.021716,0.017078,0.015879,0.015291,0.013996,0.013889,0.01256,0.012421,0.010891,0.010073,0.0085953,0.0084718,0.0083573,0.008294,0.0080899,0.0079269,0.0078289,0.0068613,0.0066731,0.0051083,0.0046644,0.0043899,0.0042854,0.0035019,0.0034895,0.0032623,0.0031608,0.0026935,0.0026798,0.0026477,0.0023471,0.0022696,0.0022427,0.0021625,0.0020629,0.0019726,0.0019271,0.0015291,0.0015166,0.0013414,0.0011134,0.00093224,0.00072573,0.00072313,0.00066095,0.00058977,0.00050676,0.0005059,0.00047986,0.00037339,0.00035207,0.0003498,0.00025867,0.00024192,0.00023274,0.00020649,0.00018326,0.0001468,0.00014176,0.00011964,8.1408e-05,8.0986e-05,7.8446e-05,7.349e-05,6.9812e-05,6.5519e-05,6.0776e-05,2.983e-05,2.4656e-05,1.8357e-05,1.4707e-05,1.4547e-05,1.4183e-05,1.0152e-05,9.3837e-06,9.3225e-06,6.7375e-06,3.8573e-06,3.7888e-06,3.2074e-06,3.0984e-06,2.1042e-06,1.8864e-06,1.4842e-06,1.3086e-06,1.138e-06,1.1073e-06,9.3716e-07,9.0992e-07,8.9725e-07,6.1192e-07,5.4525e-07,5.1935e-07,4.4318e-07,4.2151e-07,3.3465e-07,3.1742e-07,2.8532e-07,2.1844e-07,2.1788e-07,1.9149e-07,1.833e-07,1.8329e-07,1.376e-07,1.3636e-07,1.2107e-07,1.0675e-07,8.0991e-08,6.3034e-08,5.2596e-08,3.9363e-08,3.0044e-08,2.1101e-08,2.0798e-08,1.5811e-08,1.2125e-08,1.036e-08,6.778e-09,5.9798e-09,4.6313e-09,3.9784e-09,2.8919e-09,2.7956e-09,2.6069e-09,2.2171e-09,1.5764e-09,1.1073e-09,9.1722e-10,7.5945e-10,6.88e-10,6.7849e-10,5.6681e-10,4.6006e-10,2.4181e-10,2.0345e-10,1.8494e-10,1.4971e-10,1.4949e-10,1.213e-10,1.1818e-10,1.025e-10,9.1402e-11,6.2014e-11,5.8615e-11,4.3195e-11,3.2458e-11,1.2623e-11,1.0551e-11,9.6731e-12,7.6991e-12,6.2094e-12,5.7209e-12,4.8555e-12,4.3145e-12,3.7252e-12,2.9201e-12,2.9163e-12,1.8771e-12,1.6688e-12,1.6283e-12,1.6072e-12,1.0226e-12,1.0121e-12,9.6683e-13,9.3404e-13,8.5411e-13,7.3622e-13,6.4422e-13,3.5498e-13,9.7879e-14,6.6374e-14,6.4126e-14,6.2326e-14,5.6832e-14,5.3985e-14,3.3068e-14,2.3891e-14,1.8838e-14,1.6486e-14,1.2466e-14,9.8211e-15,9.394e-15,6.7082e-15,5.5398e-15,4.3821e-15,3.0014e-15,1.8173e-15,1.7598e-15,1.4837e-15,1.3175e-15,1.249e-15,7.0477e-16,6.0213e-16,2.9294e-16,2.396e-16,1.6793e-16,1.3874e-16,1.304e-16,9.2955e-17,8.8966e-17,8.0819e-17,6.5497e-17,4.3791e-17 1,3.9086e-07,5.1033e-07,5.1717e-07,5.6023e-07,5.9572e-07,6.4566e-07,7.5439e-07,1.0887e-06,1.3713e-06,1.4206e-06,1.7042e-06,1.7554e-06,1.974e-06,2.6207e-06,2.8627e-06,3.0433e-06,3.9606e-06,4.1428e-06,4.3543e-06,5.1433e-06,5.2358e-06,5.2898e-06,6.0006e-06,6.4624e-06,6.478e-06,7.4639e-06,7.5605e-06,8.0578e-06,8.1255e-06,8.1919e-06,1.2568e-05,1.8777e-05,1.9465e-05,2.1875e-05,2.4264e-05,2.6289e-05,2.89e-05,3.2247e-05,3.9052e-05,4.336e-05,5.1342e-05,6.3377e-05,6.4613e-05,6.7319e-05,6.9915e-05,8.5034e-05,8.5059e-05,0.00013463,0.00013923,0.00014185,0.00016235,0.00016397,0.00021307,0.00023592,0.00024609,0.00026988,0.00028611,0.00031611,0.00032599,0.00041231,0.00047579,0.00073989,0.0008333,0.0008669,0.00093023,0.0011269,0.0011718,0.0012129,0.0014248,0.001654,0.0017471,0.001827,0.0021454,0.0026957,0.0034131,0.0039904,0.0041222,0.0054861,0.0060455,0.0063237,0.0064508,0.0069898,0.0096615,0.009761,0.010316,0.011255,0.011449,0.012944,0.017995,0.018072,0.019785,0.020434,0.02925,0.031925,0.03213,0.034708,0.038478,0.038556,0.038876,0.041336,0.041359,0.043702,0.044638,0.05996,0.067932,0.068216,0.078321,0.081223,0.085882,0.088224,0.089629,0.091204,0.091722,0.093116,0.098901,0.099592,0.10103,0.10222,0.11154,0.12285,0.13866,0.14498,0.15906,0.17592,0.18338,0.18732,0.23472,0.24067,0.24511,0.25405,0.26572,0.27609,0.28469,0.28623,0.28721,0.29832,0.3287,0.331,0.34345,0.36321,0.37435,0.37618,0.443,0.44374,0.45748,0.48477,0.48979,0.50864,0.51311,0.54468,0.56544,0.61289,0.61403,0.66807,0.67418,0.67613,0.71054,0.7127,0.72491,0.74081,0.74573,0.74944,0.76391,0.76628,0.76783,0.77908,0.78299,0.784,0.79315,0.79641,0.81417,0.84239,0.84725,0.84853,0.86043,0.86524,0.88412,0.91435,0.92292,0.93565,0.94007,0.95158,0.96189,0.96268,0.96328,0.96335,0.96612,0.96635,0.97431,0.97761,0.98322,0.98346,0.98483,0.99223,0.99241,0.99505,0.99737,0.9997,0.99984,1,0.99999,0.9999,0.99951,0.99834,0.9983,0.99308,0.98296,0.98163,0.9801,0.97961,0.97078,0.9646,0.93965,0.93817,0.93516,0.92993,0.90899,0.88479,0.8558,0.84662,0.84105,0.82659,0.79619,0.78236,0.76406,0.73523,0.7098,0.70516,0.65498,0.64831,0.64587,0.63402,0.6293,0.59158,0.57544,0.57078,0.57031,0.56055,0.54744,0.54139,0.5387,0.49209,0.49203,0.45118,0.40621,0.36662,0.33202,0.31764,0.31393,0.30537,0.298,0.28106,0.27924,0.24848,0.24108,0.2267,0.20967,0.19979,0.1987,0.19094,0.18586,0.1738,0.15694,0.15542,0.14846,0.13797,0.12987,0.1295,0.10439,0.10068,0.09894,0.094579,0.092376,0.088989,0.083804,0.081782,0.07903,0.074762,0.069522,0.064811,0.064348,0.058992,0.055675,0.052883,0.046973,0.044466,0.043583,0.040572,0.040396,0.039137,0.038593,0.031977,0.030448,0.029871,0.027356,0.025983,0.02578,0.022827,0.01798,0.016725,0.01611,0.014753,0.014641,0.013248,0.013103,0.011498,0.010639,0.0090869,0.0089571,0.0088368,0.0087702,0.0085557,0.0083843,0.0082812,0.0072632,0.0070652,0.0054166,0.0049484,0.0046587,0.0045484,0.0037209,0.0037078,0.0034676,0.0033603,0.0028659,0.0028514,0.0028175,0.0024991,0.0024171,0.0023886,0.0023036,0.002198,0.0021023,0.0020541,0.0016317,0.0016184,0.0014323,0.00119,0.00099725,0.00077727,0.0007745,0.0007082,0.00063228,0.00054367,0.00054275,0.00051494,0.00040115,0.00037834,0.00037591,0.00027835,0.00026041,0.00025057,0.00022243,0.00019751,0.00015837,0.00015295,0.00012918,8.8041e-05,8.7586e-05,8.4851e-05,7.9511e-05,7.5548e-05,7.0921e-05,6.5808e-05,3.2393e-05,2.6794e-05,1.9972e-05,1.6015e-05,1.5841e-05,1.5446e-05,1.107e-05,1.0235e-05,1.0169e-05,7.358e-06,4.2212e-06,4.1465e-06,3.5123e-06,3.3934e-06,2.3077e-06,2.0697e-06,1.6297e-06,1.4376e-06,1.2507e-06,1.2172e-06,1.0307e-06,1.0008e-06,9.8695e-07,6.7397e-07,6.0077e-07,5.7233e-07,4.8865e-07,4.6483e-07,3.6933e-07,3.5038e-07,3.1506e-07,2.4141e-07,2.408e-07,2.1172e-07,2.027e-07,2.0269e-07,1.5231e-07,1.5093e-07,1.3407e-07,1.1825e-07,8.9796e-08,6.9942e-08,5.8393e-08,4.3741e-08,3.3413e-08,2.3492e-08,2.3157e-08,1.7619e-08,1.3522e-08,1.1559e-08,7.572e-09,6.6828e-09,5.1796e-09,4.4514e-09,3.2387e-09,3.1312e-09,2.9205e-09,2.4849e-09,1.7686e-09,1.2435e-09,1.0306e-09,8.5376e-10,7.7365e-10,7.6298e-10,6.3772e-10,5.1791e-10,2.727e-10,2.2955e-10,2.0871e-10,1.6905e-10,1.6881e-10,1.3705e-10,1.3353e-10,1.1586e-10,1.0335e-10,7.0191e-11,6.6353e-11,4.8936e-11,3.68e-11,1.4347e-11,1.1996e-11,1.1001e-11,8.7612e-12,7.0699e-12,6.515e-12,5.5318e-12,4.9169e-12,4.2468e-12,3.331e-12,3.3267e-12,2.1436e-12,1.9063e-12,1.8602e-12,1.836e-12,1.1695e-12,1.1576e-12,1.1059e-12,1.0685e-12,9.7725e-13,8.4266e-13,7.376e-13,4.0702e-13,1.1257e-13,7.6405e-14,7.3823e-14,7.1755e-14,6.5444e-14,6.2173e-14,3.8127e-14,2.7566e-14,2.1748e-14,1.9038e-14,1.4405e-14,1.1355e-14,1.0862e-14,7.7625e-15,6.4131e-15,5.0757e-15,3.4793e-15,2.109e-15,2.0424e-15,1.7226e-15,1.5301e-15,1.4507e-15,8.1959e-16,7.0046e-16,3.4131e-16,2.7928e-16,1.9589e-16,1.619e-16,1.5219e-16,1.0857e-16,1.0392e-16,9.4421e-17,7.6554e-17,5.1227e-17 1,3.8235e-07,4.9933e-07,5.0602e-07,5.4819e-07,5.8294e-07,6.3185e-07,7.3834e-07,1.0658e-06,1.3427e-06,1.391e-06,1.669e-06,1.7192e-06,1.9334e-06,2.5675e-06,2.8047e-06,2.9818e-06,3.8814e-06,4.0601e-06,4.2675e-06,5.0415e-06,5.1323e-06,5.1852e-06,5.8826e-06,6.3357e-06,6.351e-06,7.3185e-06,7.4132e-06,7.9012e-06,7.9677e-06,8.0329e-06,1.2329e-05,1.8426e-05,1.9101e-05,2.1468e-05,2.3815e-05,2.5804e-05,2.837e-05,3.1659e-05,3.8346e-05,4.258e-05,5.0426e-05,6.2258e-05,6.3473e-05,6.6135e-05,6.8687e-05,8.3555e-05,8.358e-05,0.00013234,0.00013687,0.00013945,0.00015963,0.00016122,0.00020955,0.00023205,0.00024206,0.00026549,0.00028147,0.00031101,0.00032075,0.00040576,0.00046831,0.0007286,0.00082068,0.00085381,0.00091625,0.0011102,0.0011545,0.0011951,0.001404,0.0016302,0.0017221,0.0018009,0.0021152,0.0026584,0.0033668,0.003937,0.0040672,0.0054149,0.0059677,0.0062427,0.0063683,0.0069011,0.009543,0.0096414,0.010191,0.01112,0.011311,0.01279,0.01779,0.017866,0.019562,0.020204,0.028937,0.031587,0.03179,0.034345,0.038082,0.03816,0.038477,0.040915,0.040938,0.043261,0.044189,0.059386,0.067296,0.067578,0.077608,0.080489,0.085114,0.08744,0.088835,0.090399,0.090913,0.092297,0.098042,0.098729,0.10015,0.10134,0.1106,0.12184,0.13754,0.14383,0.15783,0.1746,0.18202,0.18593,0.23311,0.23903,0.24345,0.25235,0.26397,0.2743,0.28286,0.2844,0.28537,0.29645,0.32672,0.32901,0.34142,0.36112,0.37223,0.37405,0.44072,0.44145,0.45517,0.48241,0.48742,0.50624,0.51071,0.54225,0.563,0.61044,0.61157,0.66564,0.67176,0.67371,0.70816,0.71033,0.72255,0.73849,0.74342,0.74713,0.76164,0.76402,0.76556,0.77685,0.78077,0.78179,0.79096,0.79424,0.81206,0.84039,0.84527,0.84656,0.85852,0.86335,0.88234,0.91278,0.92142,0.93426,0.93873,0.95036,0.96079,0.96159,0.96221,0.96228,0.96508,0.96531,0.9734,0.97676,0.98248,0.98272,0.98412,0.99172,0.99191,0.99464,0.99706,0.99959,0.99976,0.99999,1,0.99995,0.99963,0.99856,0.99853,0.99355,0.98369,0.98239,0.98089,0.98041,0.97173,0.96564,0.94098,0.93952,0.93654,0.93136,0.9106,0.88656,0.85773,0.8486,0.84305,0.82866,0.79836,0.78458,0.76632,0.73757,0.71217,0.70755,0.65742,0.65075,0.64832,0.63647,0.63175,0.59403,0.57789,0.57323,0.57275,0.56299,0.54988,0.54382,0.54112,0.49446,0.4944,0.45349,0.40843,0.36873,0.33402,0.31959,0.31587,0.30727,0.29988,0.28288,0.28105,0.25016,0.24273,0.22829,0.21117,0.20125,0.20015,0.19235,0.18725,0.17512,0.15817,0.15664,0.14964,0.13908,0.13093,0.13056,0.10529,0.10156,0.099804,0.095414,0.093195,0.089784,0.084562,0.082525,0.079753,0.075454,0.070174,0.065427,0.064961,0.059562,0.056219,0.053404,0.047445,0.044917,0.044027,0.04099,0.040812,0.039543,0.038993,0.032319,0.030775,0.030193,0.027655,0.026269,0.026064,0.023083,0.018187,0.01692,0.016298,0.014927,0.014814,0.013406,0.01326,0.011638,0.01077,0.0092004,0.0090691,0.0089474,0.0088801,0.0086632,0.0084898,0.0083856,0.0073561,0.0071557,0.0054879,0.0050141,0.0047209,0.0046092,0.0037716,0.0037583,0.0035152,0.0034065,0.0029059,0.0028912,0.0028568,0.0025344,0.0024513,0.0024224,0.0023363,0.0022293,0.0021323,0.0020835,0.0016556,0.0016421,0.0014535,0.0012078,0.0010124,0.00078926,0.00078645,0.0007192,0.00064218,0.00055227,0.00055134,0.00052311,0.00040762,0.00038447,0.000382,0.00028295,0.00026473,0.00025473,0.00022615,0.00020084,0.00016107,0.00015557,0.00013141,8.9594e-05,8.9132e-05,8.6351e-05,8.0922e-05,7.6892e-05,7.2187e-05,6.6987e-05,3.2994e-05,2.7297e-05,2.0352e-05,1.6322e-05,1.6145e-05,1.5743e-05,1.1286e-05,1.0436e-05,1.0368e-05,7.5043e-06,4.3071e-06,4.2309e-06,3.5843e-06,3.463e-06,2.3558e-06,2.113e-06,1.6641e-06,1.4681e-06,1.2774e-06,1.2431e-06,1.0528e-06,1.0224e-06,1.0082e-06,6.8867e-07,6.1393e-07,5.8489e-07,4.9943e-07,4.7511e-07,3.7756e-07,3.582e-07,3.2211e-07,2.4687e-07,2.4624e-07,2.1653e-07,2.0731e-07,2.0729e-07,1.558e-07,1.5439e-07,1.3715e-07,1.2099e-07,9.1891e-08,7.1586e-08,5.9773e-08,4.4784e-08,3.4216e-08,2.4063e-08,2.3719e-08,1.805e-08,1.3856e-08,1.1846e-08,7.7618e-09,6.8509e-09,5.3107e-09,4.5646e-09,3.3217e-09,3.2115e-09,2.9955e-09,2.549e-09,1.8146e-09,1.2761e-09,1.0578e-09,8.7638e-10,7.9421e-10,7.8326e-10,6.5474e-10,5.318e-10,2.8012e-10,2.3582e-10,2.1443e-10,1.7371e-10,1.7345e-10,1.4084e-10,1.3723e-10,1.1908e-10,1.0622e-10,7.216e-11,6.8218e-11,5.032e-11,3.7847e-11,1.4763e-11,1.2346e-11,1.1322e-11,9.018e-12,7.2779e-12,6.7071e-12,5.6954e-12,5.0627e-12,4.3731e-12,3.4305e-12,3.426e-12,2.2081e-12,1.9639e-12,1.9163e-12,1.8915e-12,1.2052e-12,1.1928e-12,1.1396e-12,1.1011e-12,1.0071e-12,8.6849e-13,7.6026e-13,4.1966e-13,1.1614e-13,7.8847e-14,7.6184e-14,7.4051e-14,6.7541e-14,6.4167e-14,3.936e-14,2.8462e-14,2.2458e-14,1.9661e-14,1.4879e-14,1.1729e-14,1.1221e-14,8.02e-15,6.6265e-15,5.2451e-15,3.5962e-15,2.1804e-15,2.1115e-15,1.781e-15,1.5821e-15,1.5001e-15,8.4771e-16,7.2455e-16,3.5318e-16,2.8901e-16,2.0275e-16,1.6759e-16,1.5754e-16,1.124e-16,1.0759e-16,9.7762e-17,7.9271e-17,5.3054e-17 1,3.6165e-07,4.7254e-07,4.7888e-07,5.1887e-07,5.5182e-07,5.9822e-07,6.9924e-07,1.0101e-06,1.2731e-06,1.319e-06,1.5831e-06,1.6309e-06,1.8345e-06,2.4375e-06,2.6632e-06,2.8317e-06,3.688e-06,3.8582e-06,4.0557e-06,4.7929e-06,4.8794e-06,4.9298e-06,5.5943e-06,6.0262e-06,6.0408e-06,6.963e-06,7.0534e-06,7.5187e-06,7.5821e-06,7.6442e-06,1.1743e-05,1.7566e-05,1.8211e-05,2.0473e-05,2.2716e-05,2.4618e-05,2.7071e-05,3.0217e-05,3.6615e-05,4.0668e-05,4.8181e-05,5.9515e-05,6.0679e-05,6.3229e-05,6.5676e-05,7.9929e-05,7.9953e-05,0.00012674,0.00013108,0.00013356,0.00015294,0.00015446,0.0002009,0.00022253,0.00023216,0.00025468,0.00027005,0.00029847,0.00030784,0.00038967,0.0004499,0.00070078,0.0007896,0.00082157,0.00088182,0.0010691,0.0011118,0.001151,0.0013529,0.0015714,0.0016603,0.0017365,0.0020405,0.0025663,0.0032524,0.003805,0.0039313,0.0052386,0.0057753,0.0060422,0.0061642,0.0066817,0.0092494,0.0093451,0.0098793,0.010783,0.010969,0.012409,0.01728,0.017354,0.019008,0.019634,0.028159,0.030748,0.030946,0.033443,0.037098,0.037173,0.037484,0.039869,0.039891,0.042164,0.043073,0.057957,0.065713,0.065989,0.07583,0.078658,0.083199,0.085483,0.086853,0.088389,0.088895,0.090255,0.0959,0.096574,0.097976,0.099137,0.10824,0.1193,0.13476,0.14096,0.15475,0.17128,0.17861,0.18247,0.22907,0.23492,0.23928,0.24809,0.25959,0.26981,0.27829,0.27981,0.28077,0.29174,0.32174,0.32401,0.33632,0.35586,0.3669,0.36871,0.43496,0.43569,0.44934,0.47646,0.48145,0.50021,0.50467,0.53612,0.55683,0.60423,0.60537,0.65949,0.66562,0.66757,0.70213,0.70431,0.71658,0.73259,0.73755,0.74128,0.75587,0.75826,0.75982,0.77119,0.77513,0.77615,0.7854,0.7887,0.80667,0.8353,0.84023,0.84153,0.85364,0.85853,0.87779,0.90875,0.91756,0.9307,0.93527,0.94721,0.95797,0.9588,0.95943,0.95951,0.9624,0.96264,0.97104,0.97455,0.98055,0.9808,0.98227,0.99036,0.99056,0.99353,0.99623,0.99925,0.99948,0.9999,0.99995,1,0.99985,0.99906,0.99903,0.99465,0.98547,0.98423,0.98281,0.98236,0.97406,0.96821,0.94429,0.94288,0.93996,0.93491,0.91459,0.89097,0.86256,0.85354,0.84806,0.83382,0.80382,0.79014,0.77202,0.74344,0.71816,0.71356,0.66357,0.65692,0.65449,0.64265,0.63794,0.60024,0.58408,0.57942,0.57894,0.56917,0.55603,0.54996,0.54726,0.50047,0.50042,0.45933,0.41403,0.37408,0.33909,0.32455,0.3208,0.31212,0.30466,0.2875,0.28565,0.25445,0.24693,0.23232,0.21501,0.20496,0.20384,0.19595,0.19077,0.17849,0.1613,0.15975,0.15265,0.14193,0.13365,0.13327,0.1076,0.1038,0.10201,0.097548,0.09529,0.091819,0.086502,0.084428,0.081605,0.077224,0.071844,0.067005,0.06653,0.061024,0.057612,0.05474,0.048656,0.046073,0.045164,0.042061,0.041879,0.040582,0.040021,0.033194,0.031615,0.031019,0.028421,0.027002,0.026793,0.023739,0.01872,0.017421,0.016782,0.015376,0.01526,0.013815,0.013664,0.011998,0.011106,0.0094926,0.0093576,0.0092325,0.0091632,0.0089402,0.0087618,0.0086546,0.0075953,0.0073891,0.0056717,0.0051835,0.0048813,0.0047662,0.0039025,0.0038888,0.0036379,0.0035258,0.0030091,0.002994,0.0029584,0.0026255,0.0025396,0.0025098,0.0024209,0.0023103,0.0022101,0.0021596,0.0017172,0.0017032,0.0015081,0.0012538,0.0010515,0.00082033,0.00081742,0.0007477,0.00066782,0.00057455,0.00057359,0.0005443,0.0004244,0.00040036,0.0003978,0.00029488,0.00027593,0.00026554,0.00023582,0.00020948,0.0001681,0.00016237,0.00013721,9.3634e-05,9.3152e-05,9.0253e-05,8.4591e-05,8.0388e-05,7.548e-05,7.0055e-05,3.4562e-05,2.8605e-05,2.1341e-05,1.7124e-05,1.6939e-05,1.6518e-05,1.185e-05,1.0959e-05,1.0888e-05,7.8861e-06,4.5315e-06,4.4515e-06,3.7725e-06,3.6451e-06,2.4816e-06,2.2263e-06,1.7542e-06,1.5479e-06,1.3472e-06,1.3112e-06,1.1108e-06,1.0787e-06,1.0638e-06,7.2719e-07,6.4841e-07,6.178e-07,5.2769e-07,5.0204e-07,3.9914e-07,3.7871e-07,3.4062e-07,2.6118e-07,2.6052e-07,2.2914e-07,2.194e-07,2.1938e-07,1.6497e-07,1.6349e-07,1.4526e-07,1.2817e-07,9.7394e-08,7.5907e-08,6.3402e-08,4.7526e-08,3.6329e-08,2.5564e-08,2.52e-08,1.9186e-08,1.4734e-08,1.26e-08,8.262e-09,7.2939e-09,5.6565e-09,4.863e-09,3.5407e-09,3.4235e-09,3.1936e-09,2.7182e-09,1.9362e-09,1.3624e-09,1.1296e-09,9.3618e-10,8.4852e-10,8.3685e-10,6.9973e-10,5.6854e-10,2.9977e-10,2.5243e-10,2.2957e-10,1.8603e-10,1.8576e-10,1.5088e-10,1.4701e-10,1.276e-10,1.1384e-10,7.738e-11,7.3159e-11,5.3989e-11,4.0624e-11,1.5868e-11,1.3273e-11,1.2174e-11,9.6998e-12,7.8306e-12,7.2173e-12,6.13e-12,5.4499e-12,4.7086e-12,3.6949e-12,3.6901e-12,2.3798e-12,2.1169e-12,2.0658e-12,2.039e-12,1.3e-12,1.2867e-12,1.2293e-12,1.1878e-12,1.0866e-12,9.3722e-13,8.2058e-13,4.5332e-13,1.2568e-13,8.5362e-14,8.2483e-14,8.0177e-14,7.3137e-14,6.9489e-14,4.2651e-14,3.0855e-14,2.4353e-14,2.1324e-14,1.6143e-14,1.273e-14,1.2178e-14,8.7084e-15,7.197e-15,5.6984e-15,3.9088e-15,2.3714e-15,2.2966e-15,1.9376e-15,1.7214e-15,1.6323e-15,9.2306e-16,7.8911e-16,3.8498e-16,3.1511e-16,2.2116e-16,1.8284e-16,1.719e-16,1.2269e-16,1.1745e-16,1.0673e-16,8.6564e-17,5.7963e-17 1,3.2938e-07,4.3074e-07,4.3654e-07,4.7311e-07,5.0326e-07,5.4571e-07,6.3819e-07,9.2302e-07,1.1642e-06,1.2063e-06,1.4488e-06,1.4926e-06,1.6796e-06,2.2338e-06,2.4414e-06,2.5964e-06,3.3846e-06,3.5413e-06,3.7233e-06,4.4026e-06,4.4823e-06,4.5288e-06,5.1415e-06,5.5398e-06,5.5533e-06,6.4043e-06,6.4877e-06,6.9172e-06,6.9758e-06,7.0332e-06,1.0821e-05,1.621e-05,1.6807e-05,1.8903e-05,2.0983e-05,2.2746e-05,2.5022e-05,2.7941e-05,3.3882e-05,3.7647e-05,4.4631e-05,5.5174e-05,5.6258e-05,5.8632e-05,6.0909e-05,7.4185e-05,7.4208e-05,0.00011785,0.00012191,0.00012422,0.00014232,0.00014374,0.00018716,0.0002074,0.00021641,0.0002375,0.00025189,0.00027852,0.0002873,0.00036404,0.00042057,0.00065639,0.00073998,0.00077007,0.00082681,0.0010033,0.0010435,0.0010805,0.001271,0.0014774,0.0015614,0.0016333,0.0019208,0.0024185,0.0030687,0.003593,0.0037128,0.0049549,0.0054654,0.0057194,0.0058355,0.0063281,0.0087756,0.008867,0.0093767,0.01024,0.010417,0.011793,0.016454,0.016525,0.01811,0.018711,0.026895,0.029384,0.029575,0.031978,0.035496,0.035569,0.035868,0.038166,0.038188,0.040379,0.041255,0.055627,0.063128,0.063396,0.072925,0.075665,0.080069,0.082284,0.083613,0.085103,0.085594,0.086914,0.092394,0.093049,0.09441,0.095537,0.10439,0.11514,0.1302,0.13624,0.14969,0.16583,0.17299,0.17677,0.22239,0.22813,0.23242,0.24106,0.25235,0.26239,0.27073,0.27223,0.27317,0.28396,0.3135,0.31574,0.32787,0.34716,0.35805,0.35984,0.42539,0.42611,0.43964,0.46655,0.47151,0.49015,0.49458,0.52588,0.54652,0.59384,0.59498,0.64916,0.65531,0.65727,0.69198,0.69417,0.70653,0.72265,0.72765,0.73141,0.74613,0.74855,0.75012,0.76161,0.7656,0.76663,0.77599,0.77933,0.79755,0.82663,0.83165,0.83298,0.84532,0.85032,0.87002,0.90184,0.91093,0.92454,0.92929,0.94175,0.95303,0.9539,0.95457,0.95465,0.95771,0.95796,0.96687,0.97062,0.97708,0.97735,0.97895,0.98786,0.98808,0.99145,0.9946,0.99844,0.99878,0.99951,0.99963,0.99985,1,0.99966,0.99964,0.99627,0.98822,0.9871,0.98581,0.98539,0.97775,0.97229,0.94965,0.94829,0.94551,0.94067,0.9211,0.8982,0.87051,0.86168,0.85632,0.84236,0.81285,0.79937,0.78148,0.7532,0.72814,0.72357,0.67385,0.66722,0.6648,0.65299,0.64829,0.61063,0.59446,0.58979,0.58932,0.57953,0.56637,0.56028,0.55757,0.51059,0.51053,0.46919,0.4235,0.38312,0.3477,0.33295,0.32915,0.32034,0.31277,0.29534,0.29346,0.26172,0.25407,0.23919,0.22153,0.21127,0.21013,0.20207,0.19679,0.18423,0.16664,0.16505,0.15778,0.1468,0.13831,0.13792,0.11155,0.10764,0.1058,0.10121,0.098882,0.095308,0.08983,0.087693,0.084783,0.080266,0.074715,0.069718,0.069227,0.063538,0.060011,0.05704,0.050742,0.048067,0.047125,0.043908,0.04372,0.042375,0.041792,0.034707,0.033066,0.032447,0.029747,0.028271,0.028052,0.024874,0.019644,0.018288,0.017622,0.016154,0.016033,0.014523,0.014365,0.012623,0.01169,0.010001,0.0098593,0.0097282,0.0096556,0.0094219,0.0092349,0.0091226,0.0080118,0.0077954,0.0059921,0.0054789,0.0051612,0.0050401,0.0041311,0.0041166,0.0038524,0.0037343,0.0031896,0.0031736,0.0031361,0.0027848,0.0026942,0.0026627,0.0025688,0.0024521,0.0023462,0.0022929,0.0018252,0.0018104,0.001604,0.0013347,0.0011202,0.00087493,0.00087184,0.0007978,0.00071294,0.00061378,0.00061275,0.0005816,0.00045398,0.00042837,0.00042564,0.00031592,0.00029571,0.00028462,0.00025289,0.00022475,0.00018052,0.00017439,0.00014747,0.00010079,0.00010027,9.7165e-05,9.1093e-05,8.6584e-05,8.1318e-05,7.5496e-05,3.7347e-05,3.0933e-05,2.3103e-05,1.8553e-05,1.8353e-05,1.7899e-05,1.2856e-05,1.1893e-05,1.1816e-05,8.5678e-06,4.9327e-06,4.846e-06,4.1091e-06,3.9708e-06,2.7069e-06,2.4293e-06,1.9157e-06,1.6911e-06,1.4725e-06,1.4333e-06,1.2149e-06,1.1799e-06,1.1636e-06,7.9643e-07,7.1041e-07,6.7697e-07,5.7853e-07,5.5049e-07,4.3797e-07,4.1562e-07,3.7395e-07,2.8698e-07,2.8626e-07,2.5187e-07,2.412e-07,2.4118e-07,1.8152e-07,1.7989e-07,1.599e-07,1.4113e-07,1.0734e-07,8.3719e-08,6.9965e-08,5.2491e-08,4.0155e-08,2.8286e-08,2.7884e-08,2.1246e-08,1.6328e-08,1.397e-08,9.171e-09,8.0992e-09,6.2855e-09,5.406e-09,3.9396e-09,3.8094e-09,3.5543e-09,3.0266e-09,2.1578e-09,1.5198e-09,1.2607e-09,1.0454e-09,9.4775e-10,9.3474e-10,7.8196e-10,6.3569e-10,3.3574e-10,2.8284e-10,2.5729e-10,2.086e-10,2.083e-10,1.6928e-10,1.6495e-10,1.4322e-10,1.2782e-10,8.6965e-11,8.2231e-11,6.0731e-11,4.5729e-11,1.7903e-11,1.4982e-11,1.3745e-11,1.0957e-11,8.8501e-12,8.1585e-12,6.9321e-12,6.1648e-12,5.328e-12,4.1834e-12,4.178e-12,2.6973e-12,2.3999e-12,2.3421e-12,2.3118e-12,1.4754e-12,1.4604e-12,1.3955e-12,1.3484e-12,1.2338e-12,1.0645e-12,9.3233e-13,5.1576e-13,1.434e-13,9.7482e-14,9.4202e-14,9.1573e-14,8.355e-14,7.9391e-14,4.8781e-14,3.5315e-14,2.7888e-14,2.4426e-14,1.8502e-14,1.4598e-14,1.3967e-14,9.9942e-15,8.263e-15,6.5457e-15,4.4936e-15,2.729e-15,2.6431e-15,2.2307e-15,1.9823e-15,1.8799e-15,1.0643e-15,9.1018e-16,4.447e-16,3.6414e-16,2.5575e-16,2.1153e-16,1.9889e-16,1.4205e-16,1.3599e-16,1.2361e-16,1.0029e-16,6.721e-17 1,2.8529e-07,3.7355e-07,3.7861e-07,4.1049e-07,4.3678e-07,4.7381e-07,5.5453e-07,8.0348e-07,1.0146e-06,1.0515e-06,1.264e-06,1.3024e-06,1.4665e-06,1.9533e-06,2.1357e-06,2.2721e-06,2.9659e-06,3.1039e-06,3.2643e-06,3.8632e-06,3.9336e-06,3.9746e-06,4.5153e-06,4.8671e-06,4.879e-06,5.631e-06,5.7047e-06,6.0845e-06,6.1363e-06,6.187e-06,9.5411e-06,1.4325e-05,1.4856e-05,1.672e-05,1.857e-05,2.014e-05,2.2167e-05,2.4768e-05,3.0068e-05,3.343e-05,3.9671e-05,4.9104e-05,5.0074e-05,5.22e-05,5.424e-05,6.614e-05,6.616e-05,0.00010536,0.00010902,0.00011109,0.00012739,0.00012868,0.00016782,0.00018609,0.00019423,0.00021328,0.00022629,0.00025037,0.00025832,0.00032783,0.0003791,0.00059344,0.00066956,0.00069699,0.00074871,0.00090976,0.00094652,0.0009803,0.0011544,0.0013434,0.0014203,0.0014863,0.0017499,0.0022071,0.0028057,0.003289,0.0033996,0.0045473,0.0050197,0.005255,0.0053625,0.0058191,0.0080919,0.0081769,0.0086511,0.0094544,0.0096198,0.010902,0.015257,0.015323,0.016807,0.01737,0.025053,0.027397,0.027576,0.02984,0.033158,0.033226,0.033509,0.035678,0.035698,0.037769,0.038596,0.052208,0.059331,0.059586,0.068651,0.071261,0.075457,0.07757,0.078838,0.08026,0.080727,0.081987,0.08722,0.087846,0.089147,0.090224,0.098689,0.10899,0.12344,0.12924,0.14218,0.15773,0.16463,0.16828,0.21243,0.218,0.22215,0.23054,0.24151,0.25128,0.25939,0.26085,0.26177,0.27228,0.30111,0.3033,0.31516,0.33404,0.34472,0.34647,0.4109,0.41161,0.42495,0.45152,0.45643,0.47487,0.47925,0.51029,0.5308,0.57794,0.57908,0.6333,0.63947,0.64144,0.67634,0.67855,0.691,0.70728,0.71233,0.71614,0.73104,0.7335,0.73509,0.74674,0.75079,0.75185,0.76136,0.76476,0.78332,0.81307,0.81822,0.81959,0.83227,0.83742,0.85776,0.89084,0.90036,0.91466,0.91968,0.9329,0.94498,0.94592,0.94664,0.94672,0.95002,0.9503,0.95998,0.96409,0.97124,0.97154,0.97333,0.98348,0.98374,0.9877,0.99155,0.99664,0.99714,0.99834,0.99856,0.99906,0.99966,1,1,0.99819,0.99188,0.99094,0.98985,0.9895,0.98287,0.97802,0.95736,0.95611,0.95352,0.94901,0.93063,0.90888,0.88232,0.87381,0.86863,0.85511,0.82642,0.81326,0.79574,0.76797,0.74326,0.73875,0.68951,0.68292,0.68051,0.66878,0.6641,0.62654,0.61038,0.60571,0.60523,0.59543,0.58224,0.57613,0.57342,0.52618,0.52612,0.48442,0.43817,0.39716,0.36109,0.34604,0.34216,0.33317,0.32542,0.30759,0.30566,0.27312,0.26526,0.24996,0.23178,0.2212,0.22003,0.21171,0.20625,0.19327,0.17507,0.17342,0.16588,0.15449,0.14567,0.14526,0.11781,0.11373,0.11182,0.10702,0.10459,0.10085,0.095125,0.092889,0.089842,0.08511,0.079289,0.074045,0.07353,0.067552,0.063843,0.060716,0.054081,0.05126,0.050266,0.04687,0.046671,0.04525,0.044634,0.037138,0.0354,0.034743,0.031879,0.030313,0.030081,0.026704,0.021137,0.019691,0.01898,0.017413,0.017283,0.015669,0.015501,0.013637,0.012637,0.010826,0.010674,0.010534,0.010456,0.010205,0.010004,0.0098832,0.0086894,0.0084567,0.0065147,0.0059611,0.0056181,0.0054874,0.0045048,0.0044892,0.0042032,0.0040753,0.0034852,0.0034678,0.0034272,0.0030461,0.0029477,0.0029135,0.0028116,0.0026848,0.0025697,0.0025117,0.0020028,0.0019867,0.0017617,0.0014679,0.0012336,0.00096515,0.00096176,0.00088063,0.00078757,0.00067873,0.0006776,0.00064338,0.00050305,0.00047485,0.00047185,0.00035091,0.00032859,0.00031635,0.00028129,0.00025019,0.00020123,0.00019444,0.0001646,0.00011276,0.00011219,0.00010873,0.00010198,9.6959e-05,9.1096e-05,8.4612e-05,4.2031e-05,3.4851e-05,2.6073e-05,2.0964e-05,2.0738e-05,2.0228e-05,1.4556e-05,1.3471e-05,1.3385e-05,9.7225e-06,5.6141e-06,5.5159e-06,4.6812e-06,4.5245e-06,3.0905e-06,2.7751e-06,2.191e-06,1.9354e-06,1.6865e-06,1.6417e-06,1.3928e-06,1.3529e-06,1.3343e-06,9.1496e-07,8.166e-07,7.7834e-07,6.6567e-07,6.3356e-07,5.0463e-07,4.79e-07,4.3119e-07,3.3133e-07,3.305e-07,2.9098e-07,2.787e-07,2.7868e-07,2.1003e-07,2.0815e-07,1.8512e-07,1.6349e-07,1.245e-07,9.7217e-08,8.1311e-08,6.1083e-08,4.6786e-08,3.3008e-08,3.254e-08,2.4824e-08,1.9101e-08,1.6352e-08,1.0755e-08,9.5031e-09,7.3831e-09,6.3541e-09,4.6367e-09,4.4841e-09,4.185e-09,3.5661e-09,2.546e-09,1.7958e-09,1.4908e-09,1.2371e-09,1.1221e-09,1.1067e-09,9.2649e-10,7.5382e-10,3.9915e-10,3.3649e-10,3.062e-10,2.4847e-10,2.4811e-10,2.0179e-10,1.9666e-10,1.7084e-10,1.5253e-10,1.0394e-10,9.8301e-11,7.2684e-11,5.4789e-11,2.1526e-11,1.8026e-11,1.6542e-11,1.3198e-11,1.0669e-11,9.8379e-12,8.3641e-12,7.4414e-12,6.4348e-12,5.0569e-12,5.0504e-12,3.2656e-12,2.9068e-12,2.837e-12,2.8005e-12,1.7902e-12,1.772e-12,1.6935e-12,1.6366e-12,1.4979e-12,1.2931e-12,1.1331e-12,6.281e-13,1.7541e-13,1.194e-13,1.1539e-13,1.1218e-13,1.0239e-13,9.7307e-14,5.9888e-14,4.3402e-14,3.4301e-14,3.0056e-14,2.2788e-14,1.7993e-14,1.7218e-14,1.2334e-14,1.0204e-14,8.0894e-15,5.5601e-15,3.3822e-15,3.2761e-15,2.7664e-15,2.4593e-15,2.3326e-15,1.323e-15,1.132e-15,5.543e-16,4.5417e-16,3.1933e-16,2.6427e-16,2.4853e-16,1.7769e-16,1.7013e-16,1.5468e-16,1.2559e-16,8.4264e-17 1,2.8417e-07,3.721e-07,3.7714e-07,4.089e-07,4.3509e-07,4.7198e-07,5.524e-07,8.0045e-07,1.0108e-06,1.0476e-06,1.2593e-06,1.2976e-06,1.4611e-06,1.9461e-06,2.1279e-06,2.2638e-06,2.9552e-06,3.0928e-06,3.2526e-06,3.8495e-06,3.9196e-06,3.9604e-06,4.4993e-06,4.8499e-06,4.8618e-06,5.6112e-06,5.6847e-06,6.0632e-06,6.1148e-06,6.1654e-06,9.5084e-06,1.4277e-05,1.4806e-05,1.6664e-05,1.8508e-05,2.0073e-05,2.2094e-05,2.4687e-05,2.997e-05,3.3322e-05,3.9543e-05,4.8948e-05,4.9915e-05,5.2035e-05,5.4068e-05,6.5933e-05,6.5953e-05,0.00010504,0.00010868,0.00011076,0.00012701,0.00012829,0.00016732,0.00018553,0.00019365,0.00021265,0.00022563,0.00024964,0.00025757,0.00032689,0.00037803,0.0005918,0.00066774,0.00069509,0.00074668,0.00090732,0.000944,0.00097769,0.0011514,0.0013399,0.0014166,0.0014824,0.0017455,0.0022016,0.0027988,0.0032811,0.0033914,0.0045367,0.0050081,0.0052428,0.0053502,0.0058058,0.008074,0.0081588,0.0086321,0.0094338,0.0095988,0.010879,0.015225,0.015292,0.016773,0.017334,0.025005,0.027344,0.027523,0.029783,0.033096,0.033164,0.033446,0.035612,0.035632,0.0377,0.038526,0.052117,0.059231,0.059485,0.068537,0.071144,0.075335,0.077444,0.078711,0.080131,0.080598,0.081856,0.087083,0.087708,0.089007,0.090083,0.098537,0.10883,0.12326,0.12905,0.14198,0.15752,0.16441,0.16805,0.21216,0.21772,0.22188,0.23026,0.24122,0.25098,0.25909,0.26055,0.26146,0.27197,0.30078,0.30297,0.31482,0.33368,0.34436,0.34611,0.41051,0.41122,0.42455,0.45112,0.45602,0.47445,0.47884,0.50987,0.53037,0.57751,0.57865,0.63287,0.63904,0.64101,0.67591,0.67812,0.69058,0.70686,0.71191,0.71572,0.73063,0.73308,0.73468,0.74633,0.75039,0.75144,0.76096,0.76436,0.78293,0.8127,0.81785,0.81922,0.83191,0.83706,0.85742,0.89053,0.90006,0.91438,0.91941,0.93265,0.94475,0.94569,0.94641,0.9465,0.9498,0.95008,0.95978,0.9639,0.97107,0.97137,0.97317,0.98335,0.98361,0.98759,0.99146,0.99658,0.99708,0.9983,0.99853,0.99903,0.99964,1,1,0.99823,0.99197,0.99104,0.98995,0.9896,0.983,0.97817,0.95757,0.95631,0.95373,0.94923,0.93088,0.90916,0.88263,0.87413,0.86895,0.85545,0.82678,0.81363,0.79613,0.76836,0.74367,0.73916,0.68993,0.68335,0.68094,0.66921,0.66453,0.62697,0.61081,0.60614,0.60567,0.59587,0.58267,0.57657,0.57385,0.52661,0.52655,0.48483,0.43857,0.39755,0.36146,0.34641,0.34252,0.33352,0.32577,0.30793,0.306,0.27344,0.26557,0.25026,0.23206,0.22148,0.2203,0.21198,0.20652,0.19353,0.1753,0.17366,0.16611,0.1547,0.14587,0.14547,0.11798,0.1139,0.11198,0.10718,0.10475,0.10101,0.095273,0.093034,0.089983,0.085245,0.079417,0.074166,0.07365,0.067665,0.06395,0.060819,0.054175,0.051349,0.050354,0.046953,0.046753,0.04533,0.044714,0.037206,0.035465,0.034808,0.031939,0.03037,0.030138,0.026755,0.021179,0.019731,0.019019,0.017448,0.017319,0.015702,0.015533,0.013666,0.012664,0.010849,0.010697,0.010556,0.010478,0.010227,0.010026,0.0099047,0.0087086,0.0084754,0.0065295,0.0059748,0.0056311,0.0055,0.0045154,0.0044997,0.0042132,0.004085,0.0034936,0.0034762,0.0034355,0.0030535,0.0029549,0.0029207,0.0028185,0.0026914,0.0025761,0.0025179,0.0020078,0.0019917,0.0017662,0.0014717,0.0012368,0.00096773,0.00096433,0.000883,0.0007897,0.00068058,0.00067945,0.00064514,0.00050445,0.00047618,0.00047317,0.00035191,0.00032954,0.00031726,0.00028211,0.00025092,0.00020183,0.00019501,0.00016509,0.00011311,0.00011253,0.00010906,0.00010229,9.7257e-05,9.1378e-05,8.4874e-05,4.2166e-05,3.4964e-05,2.6158e-05,2.1033e-05,2.0807e-05,2.0296e-05,1.4605e-05,1.3517e-05,1.343e-05,9.7559e-06,5.6339e-06,5.5354e-06,4.6978e-06,4.5406e-06,3.1016e-06,2.7852e-06,2.1991e-06,1.9426e-06,1.6927e-06,1.6478e-06,1.398e-06,1.3579e-06,1.3393e-06,9.1841e-07,8.1969e-07,7.813e-07,6.6822e-07,6.3599e-07,5.0658e-07,4.8085e-07,4.3287e-07,3.3262e-07,3.3179e-07,2.9212e-07,2.798e-07,2.7978e-07,2.1087e-07,2.0898e-07,1.8586e-07,1.6415e-07,1.25e-07,9.7613e-08,8.1644e-08,6.1336e-08,4.698e-08,3.3146e-08,3.2677e-08,2.493e-08,1.9182e-08,1.6423e-08,1.0802e-08,9.5445e-09,7.4154e-09,6.382e-09,4.6572e-09,4.504e-09,4.2037e-09,3.582e-09,2.5575e-09,1.8039e-09,1.4977e-09,1.2428e-09,1.1272e-09,1.1118e-09,9.3078e-10,7.5732e-10,4.0103e-10,3.3808e-10,3.0765e-10,2.4965e-10,2.4929e-10,2.0276e-10,1.976e-10,1.7166e-10,1.5327e-10,1.0444e-10,9.878e-11,7.304e-11,5.5059e-11,2.1634e-11,1.8117e-11,1.6626e-11,1.3265e-11,1.0723e-11,9.8881e-12,8.4069e-12,7.4796e-12,6.4679e-12,5.0831e-12,5.0765e-12,3.2826e-12,2.922e-12,2.8518e-12,2.8151e-12,1.7996e-12,1.7813e-12,1.7024e-12,1.6453e-12,1.5058e-12,1.3e-12,1.1391e-12,6.3148e-13,1.7637e-13,1.2006e-13,1.1603e-13,1.1281e-13,1.0296e-13,9.7847e-14,6.0223e-14,4.3646e-14,3.4495e-14,3.0226e-14,2.2918e-14,1.8096e-14,1.7316e-14,1.2405e-14,1.0263e-14,8.1361e-15,5.5924e-15,3.402e-15,3.2952e-15,2.7826e-15,2.4738e-15,2.3463e-15,1.3309e-15,1.1387e-15,5.5763e-16,4.5691e-16,3.2126e-16,2.6587e-16,2.5004e-16,1.7878e-16,1.7117e-16,1.5563e-16,1.2636e-16,8.4784e-17 1,2.0467e-07,2.6879e-07,2.7247e-07,2.9567e-07,3.1483e-07,3.4183e-07,4.0076e-07,5.8312e-07,7.3833e-07,7.6548e-07,9.2212e-07,9.5047e-07,1.0717e-06,1.4322e-06,1.5676e-06,1.6689e-06,2.1854e-06,2.2884e-06,2.408e-06,2.8557e-06,2.9083e-06,2.939e-06,3.344e-06,3.6078e-06,3.6167e-06,4.1814e-06,4.2369e-06,4.5225e-06,4.5615e-06,4.5997e-06,7.1314e-06,1.0762e-05,1.1166e-05,1.2586e-05,1.3998e-05,1.5197e-05,1.6748e-05,1.874e-05,2.2808e-05,2.5393e-05,3.0203e-05,3.7492e-05,3.8243e-05,3.9889e-05,4.1469e-05,5.0705e-05,5.072e-05,8.1298e-05,8.4156e-05,8.5784e-05,9.8559e-05,9.9567e-05,0.00013035,0.00014475,0.00015118,0.00016624,0.00017653,0.00019561,0.00020191,0.00025715,0.00029803,0.00046975,0.00053101,0.00055311,0.00059483,0.00072503,0.00075481,0.00078219,0.00092359,0.0010774,0.0011402,0.001194,0.0014097,0.0017851,0.0022787,0.0026787,0.0027704,0.0037253,0.0041197,0.0043165,0.0044065,0.004789,0.0067014,0.0067731,0.0071738,0.0078536,0.0079937,0.0090818,0.012797,0.012854,0.014126,0.014609,0.021239,0.023271,0.023427,0.025396,0.028288,0.028348,0.028594,0.03049,0.030507,0.032319,0.033044,0.045025,0.051333,0.051558,0.059618,0.061945,0.065692,0.067581,0.068715,0.069988,0.070407,0.071535,0.076229,0.076791,0.077959,0.078927,0.086546,0.09585,0.10895,0.11422,0.12602,0.14025,0.14659,0.14994,0.19073,0.19591,0.19977,0.20759,0.21782,0.22695,0.23455,0.23592,0.23679,0.24665,0.27382,0.27588,0.2871,0.30501,0.31517,0.31683,0.37853,0.37922,0.39207,0.41778,0.42253,0.44045,0.44472,0.47503,0.49515,0.54167,0.5428,0.59683,0.60301,0.60499,0.64014,0.64237,0.65498,0.67152,0.67667,0.68055,0.69578,0.6983,0.69993,0.7119,0.71606,0.71715,0.72696,0.73047,0.74971,0.78079,0.7862,0.78764,0.80103,0.80648,0.82814,0.86387,0.87429,0.8901,0.89569,0.91056,0.92437,0.92545,0.92629,0.92638,0.93021,0.93053,0.9419,0.94681,0.95549,0.95586,0.95807,0.97098,0.97132,0.97663,0.98203,0.98993,0.99081,0.99308,0.99355,0.99465,0.99627,0.99819,0.99823,1,0.99772,0.99721,0.99659,0.99638,0.99213,0.98872,0.97276,0.97174,0.96963,0.96592,0.95038,0.93141,0.90764,0.89992,0.89519,0.88279,0.85615,0.8438,0.82728,0.80083,0.77711,0.77276,0.72491,0.71847,0.7161,0.70459,0.69998,0.66287,0.64681,0.64216,0.64168,0.63191,0.61872,0.6126,0.60988,0.56229,0.56223,0.51987,0.47252,0.43022,0.39276,0.37706,0.373,0.3636,0.35548,0.33675,0.33472,0.30038,0.29205,0.2758,0.25643,0.24513,0.24387,0.23496,0.22911,0.21516,0.19552,0.19375,0.18559,0.17322,0.16363,0.16319,0.13318,0.1287,0.12659,0.12131,0.11864,0.11452,0.10819,0.10572,0.10234,0.097095,0.090627,0.084787,0.084213,0.077538,0.073387,0.069882,0.062427,0.059249,0.058128,0.054294,0.054069,0.052462,0.051765,0.04326,0.041281,0.040534,0.037266,0.035476,0.035211,0.031342,0.024936,0.023266,0.022444,0.020628,0.020478,0.018604,0.018408,0.016238,0.01507,0.012951,0.012773,0.012608,0.012516,0.012222,0.011986,0.011844,0.01044,0.010166,0.0078707,0.007214,0.0068065,0.006651,0.00548,0.0054613,0.0051196,0.0049666,0.0042594,0.0042386,0.0041898,0.0037316,0.0036133,0.0035721,0.0034492,0.0032963,0.0031575,0.0030875,0.0024715,0.002452,0.0021787,0.0018209,0.0015347,0.0012055,0.0012014,0.0011016,0.00098693,0.00085254,0.00085115,0.00080882,0.00063483,0.00059978,0.00059604,0.00044527,0.00041737,0.00040205,0.00035813,0.00031908,0.00025746,0.0002489,0.00021121,0.00014548,0.00014474,0.00014035,0.00013175,0.00012535,0.00011788,0.0001096,5.4965e-05,4.5689e-05,3.4312e-05,2.7667e-05,2.7374e-05,2.6709e-05,1.93e-05,1.788e-05,1.7767e-05,1.2958e-05,7.5332e-06,7.4031e-06,6.2954e-06,6.0871e-06,4.177e-06,3.7556e-06,2.9734e-06,2.6304e-06,2.2957e-06,2.2355e-06,1.9001e-06,1.8463e-06,1.8212e-06,1.2543e-06,1.1209e-06,1.069e-06,9.1586e-07,8.7217e-07,6.9646e-07,6.6147e-07,5.9615e-07,4.5941e-07,4.5828e-07,4.0404e-07,3.8718e-07,3.8715e-07,2.9268e-07,2.9009e-07,2.5832e-07,2.2845e-07,1.7447e-07,1.366e-07,1.1446e-07,8.6247e-08,6.6242e-08,4.6903e-08,4.6246e-08,3.5377e-08,2.7293e-08,2.3402e-08,1.5456e-08,1.3674e-08,1.065e-08,9.1791e-09,6.7188e-09,6.4998e-09,6.0704e-09,5.1806e-09,3.7107e-09,2.626e-09,2.1839e-09,1.8154e-09,1.6481e-09,1.6257e-09,1.3633e-09,1.1113e-09,5.919e-10,4.9976e-10,4.5517e-10,3.7005e-10,3.6952e-10,3.011e-10,2.9351e-10,2.553e-10,2.2817e-10,1.5601e-10,1.4762e-10,1.0944e-10,8.2703e-11,3.2757e-11,2.7473e-11,2.523e-11,2.0169e-11,1.6333e-11,1.5071e-11,1.2831e-11,1.1427e-11,9.893e-12,7.7903e-12,7.7803e-12,5.0491e-12,4.4987e-12,4.3915e-12,4.3354e-12,2.7816e-12,2.7535e-12,2.6325e-12,2.5448e-12,2.3309e-12,2.0146e-12,1.7671e-12,9.8426e-13,2.7767e-13,1.8958e-13,1.8327e-13,1.7821e-13,1.6276e-13,1.5475e-13,9.5597e-14,6.9454e-14,5.4989e-14,4.8232e-14,3.6646e-14,2.8987e-14,2.7747e-14,1.9927e-14,1.6509e-14,1.3111e-14,9.0365e-15,5.5171e-15,5.3453e-15,4.5192e-15,4.0211e-15,3.8154e-15,2.1731e-15,1.8613e-15,9.1616e-16,7.5174e-16,5.2988e-16,4.3911e-16,4.1313e-16,2.9608e-16,2.8357e-16,2.5799e-16,2.0978e-16,1.4114e-16 1,1.4035e-07,1.8493e-07,1.8749e-07,2.0367e-07,2.1703e-07,2.3588e-07,2.771e-07,4.0509e-07,5.1444e-07,5.336e-07,6.4433e-07,6.644e-07,7.503e-07,1.0064e-06,1.1029e-06,1.1751e-06,1.5443e-06,1.6181e-06,1.7038e-06,2.0251e-06,2.063e-06,2.085e-06,2.3765e-06,2.5666e-06,2.573e-06,2.9806e-06,3.0207e-06,3.2272e-06,3.2553e-06,3.283e-06,5.1208e-06,7.7727e-06,8.0687e-06,9.11e-06,1.0147e-05,1.1029e-05,1.2172e-05,1.3642e-05,1.6651e-05,1.8567e-05,2.214e-05,2.7573e-05,2.8133e-05,2.9362e-05,3.0544e-05,3.7459e-05,3.7471e-05,6.0499e-05,6.2659e-05,6.3891e-05,7.3565e-05,7.4329e-05,9.7727e-05,0.00010871,0.00011361,0.00012512,0.000133,0.00014762,0.00015245,0.00019494,0.00022648,0.00035975,0.00040754,0.0004248,0.00045742,0.00055949,0.00058289,0.00060442,0.00071582,0.00083739,0.00088707,0.00092977,0.0011011,0.0014005,0.0017961,0.0021181,0.0021921,0.0029651,0.0032857,0.0034459,0.0035193,0.0038313,0.0053993,0.0054583,0.0057884,0.0063493,0.006465,0.0073656,0.010459,0.010506,0.011571,0.011976,0.017567,0.019291,0.019424,0.021098,0.023564,0.023615,0.023826,0.025447,0.025462,0.027014,0.027636,0.037966,0.043441,0.043637,0.050665,0.0527,0.055982,0.057639,0.058635,0.059753,0.060121,0.061113,0.065246,0.065741,0.066771,0.067626,0.074361,0.082615,0.094284,0.099,0.10958,0.1224,0.12812,0.13115,0.16828,0.17301,0.17656,0.18373,0.19314,0.20157,0.20859,0.20985,0.21065,0.21979,0.24504,0.24697,0.25745,0.27423,0.28377,0.28533,0.34372,0.34438,0.35664,0.38123,0.38579,0.40302,0.40714,0.43645,0.45599,0.50148,0.50259,0.55596,0.56211,0.56408,0.59919,0.60143,0.61411,0.63079,0.63599,0.63992,0.65538,0.65793,0.6596,0.67179,0.67605,0.67716,0.6872,0.6908,0.71061,0.74285,0.7485,0.75,0.76403,0.76976,0.79267,0.83097,0.84228,0.85958,0.86575,0.8823,0.89788,0.89911,0.90006,0.90017,0.90454,0.90491,0.91804,0.92378,0.93407,0.93452,0.93717,0.95301,0.95344,0.96019,0.96726,0.97823,0.97951,0.98296,0.98369,0.98547,0.98822,0.99188,0.99197,0.99772,1,0.99997,0.99989,0.99985,0.99831,0.99655,0.98607,0.98534,0.98379,0.98102,0.96888,0.95326,0.93291,0.92616,0.922,0.911,0.88697,0.87569,0.86045,0.83581,0.81345,0.80932,0.76354,0.75731,0.75503,0.74387,0.7394,0.70315,0.68735,0.68276,0.68229,0.67263,0.65956,0.65348,0.65078,0.60319,0.60313,0.56036,0.51211,0.46861,0.42978,0.41343,0.40919,0.39936,0.39086,0.3712,0.36907,0.3328,0.32397,0.30669,0.28601,0.27391,0.27256,0.26299,0.2567,0.24166,0.2204,0.21848,0.20961,0.19613,0.18565,0.18517,0.15218,0.14723,0.1449,0.13905,0.13609,0.13151,0.12447,0.12172,0.11795,0.11209,0.10485,0.098293,0.097647,0.090132,0.085446,0.081483,0.073028,0.069414,0.068138,0.063766,0.063509,0.061673,0.060877,0.051125,0.048848,0.047987,0.044217,0.042147,0.04184,0.037355,0.029892,0.027938,0.026975,0.024843,0.024667,0.022462,0.022231,0.019668,0.018286,0.015769,0.015558,0.015361,0.015252,0.014902,0.014621,0.014452,0.012774,0.012446,0.0096907,0.0088989,0.0084067,0.0082187,0.0067995,0.0067768,0.0063613,0.0061751,0.0053125,0.0052871,0.0052275,0.0046669,0.0045218,0.0044712,0.0043205,0.0041327,0.003962,0.0038759,0.0031162,0.0030921,0.0027539,0.0023095,0.0019528,0.0015409,0.0015356,0.0014103,0.0012661,0.0010966,0.0010948,0.0010413,0.00082084,0.0007763,0.00077154,0.0005793,0.00054361,0.00052399,0.00046766,0.00041749,0.00033808,0.00032701,0.00027825,0.00019282,0.00019186,0.00018612,0.0001749,0.00016654,0.00015676,0.00014592,7.397e-05,6.166e-05,4.6505e-05,3.7619e-05,3.7225e-05,3.6335e-05,2.6381e-05,2.4467e-05,2.4314e-05,1.7813e-05,1.0435e-05,1.0258e-05,8.7424e-06,8.4571e-06,5.8332e-06,5.2523e-06,4.1715e-06,3.6963e-06,3.2319e-06,3.1482e-06,2.6817e-06,2.6067e-06,2.5718e-06,1.7798e-06,1.5929e-06,1.52e-06,1.3049e-06,1.2434e-06,9.9574e-07,9.4633e-07,8.5401e-07,6.6028e-07,6.5867e-07,5.8163e-07,5.5765e-07,5.5762e-07,4.2301e-07,4.1932e-07,3.7392e-07,3.3118e-07,2.5376e-07,1.9926e-07,1.6733e-07,1.265e-07,9.7466e-08,6.929e-08,6.833e-08,5.2434e-08,4.0572e-08,3.485e-08,2.3126e-08,2.0487e-08,1.6001e-08,1.3814e-08,1.0146e-08,9.8193e-09,9.1773e-09,7.8458e-09,5.6401e-09,4.0063e-09,3.3385e-09,2.7807e-09,2.5269e-09,2.4931e-09,2.0945e-09,1.7111e-09,9.1735e-10,7.759e-10,7.0735e-10,5.7629e-10,5.7548e-10,4.6991e-10,4.5818e-10,3.991e-10,3.571e-10,2.451e-10,2.3205e-10,1.7255e-10,1.3076e-10,5.2264e-11,4.3908e-11,4.0356e-11,3.233e-11,2.6234e-11,2.4227e-11,2.0657e-11,1.8417e-11,1.5967e-11,1.2602e-11,1.2586e-11,8.2008e-12,7.3147e-12,7.142e-12,7.0517e-12,4.543e-12,4.4977e-12,4.3018e-12,4.1598e-12,3.8131e-12,3.3002e-12,2.8983e-12,1.6229e-12,4.6308e-13,3.1724e-13,3.0677e-13,2.9838e-13,2.7273e-13,2.5942e-13,1.6094e-13,1.1725e-13,9.3018e-14,8.1681e-14,6.2207e-14,4.9305e-14,4.7214e-14,3.4003e-14,2.8216e-14,2.2451e-14,1.5523e-14,9.5166e-15,9.2226e-15,7.8083e-15,6.9544e-15,6.6015e-15,3.7774e-15,3.2396e-15,1.6038e-15,1.3181e-15,9.3173e-16,7.7328e-16,7.2789e-16,5.2305e-16,5.0113e-16,4.5627e-16,3.7161e-16,2.5082e-16 1,1.348e-07,1.7769e-07,1.8015e-07,1.9572e-07,2.0857e-07,2.2671e-07,2.6639e-07,3.8962e-07,4.9496e-07,5.1342e-07,6.2011e-07,6.3945e-07,7.2224e-07,9.6918e-07,1.0622e-06,1.1319e-06,1.488e-06,1.5592e-06,1.6419e-06,1.9521e-06,1.9886e-06,2.0099e-06,2.2912e-06,2.4748e-06,2.481e-06,2.8746e-06,2.9133e-06,3.1128e-06,3.14e-06,3.1667e-06,4.9426e-06,7.5067e-06,7.793e-06,8.8004e-06,9.8039e-06,1.0658e-05,1.1763e-05,1.3186e-05,1.6099e-05,1.7956e-05,2.1417e-05,2.668e-05,2.7224e-05,2.8415e-05,2.956e-05,3.6265e-05,3.6276e-05,5.8615e-05,6.0712e-05,6.1907e-05,7.1297e-05,7.2039e-05,9.4758e-05,0.00010542,0.00011019,0.00012137,0.00012903,0.00014323,0.00014793,0.00018924,0.00021992,0.00034962,0.00039614,0.00041295,0.00044473,0.00054416,0.00056697,0.00058794,0.00069653,0.00081506,0.00086352,0.00090516,0.0010723,0.0013645,0.0017508,0.0020654,0.0021377,0.0028933,0.0032069,0.0033636,0.0034354,0.0037406,0.0052754,0.0053333,0.0056565,0.0062059,0.0063193,0.0072017,0.010234,0.010281,0.011326,0.011723,0.017212,0.018906,0.019036,0.020681,0.023105,0.023156,0.023363,0.024957,0.024972,0.026498,0.02711,0.037275,0.042666,0.04286,0.049784,0.05179,0.055025,0.056658,0.05764,0.058743,0.059106,0.060084,0.06416,0.064649,0.065665,0.066508,0.073153,0.0813,0.092824,0.097482,0.10794,0.12061,0.12627,0.12926,0.16601,0.1707,0.17421,0.18132,0.19064,0.19899,0.20595,0.2072,0.20799,0.21705,0.24211,0.24402,0.25442,0.27107,0.28055,0.2821,0.34013,0.34078,0.35297,0.37744,0.38198,0.39914,0.40324,0.43242,0.4519,0.49726,0.49836,0.55164,0.55779,0.55975,0.59484,0.59708,0.60976,0.62644,0.63165,0.63558,0.65106,0.65361,0.65528,0.66749,0.67176,0.67287,0.68293,0.68654,0.70639,0.73873,0.74441,0.74591,0.76,0.76576,0.78878,0.82733,0.83872,0.85618,0.8624,0.87912,0.89487,0.89612,0.89708,0.89719,0.90162,0.90199,0.9153,0.92113,0.93158,0.93203,0.93473,0.95087,0.9513,0.95821,0.96545,0.97674,0.97806,0.98163,0.98239,0.98423,0.9871,0.99094,0.99104,0.99721,0.99997,1,0.99997,0.99995,0.9987,0.99712,0.98723,0.98653,0.98504,0.98237,0.9706,0.95535,0.93538,0.92874,0.92464,0.9138,0.89007,0.87891,0.86382,0.83939,0.81719,0.81309,0.76755,0.76135,0.75908,0.74797,0.74351,0.70737,0.69161,0.68703,0.68656,0.67692,0.66387,0.6578,0.6551,0.60754,0.60748,0.56468,0.51636,0.47275,0.4338,0.41738,0.41312,0.40325,0.39471,0.37496,0.37281,0.33635,0.32747,0.31008,0.28927,0.27708,0.27572,0.26609,0.25975,0.24459,0.22316,0.22122,0.21228,0.19868,0.18811,0.18762,0.15431,0.14931,0.14696,0.14104,0.13805,0.13342,0.12631,0.12352,0.11971,0.11378,0.10646,0.099821,0.099167,0.091559,0.086814,0.0828,0.074235,0.070572,0.069278,0.064846,0.064586,0.062724,0.061917,0.052026,0.049715,0.048841,0.045014,0.042913,0.042602,0.038047,0.030465,0.028478,0.027499,0.025332,0.025152,0.022909,0.022675,0.020067,0.018661,0.016098,0.015883,0.015682,0.015572,0.015214,0.014928,0.014756,0.013048,0.012713,0.0099044,0.0090969,0.0085949,0.0084031,0.0069551,0.0069319,0.0065079,0.0063178,0.0054372,0.0054112,0.0053503,0.0047777,0.0046295,0.0045778,0.0044239,0.004232,0.0040576,0.0039696,0.003193,0.0031684,0.0028225,0.0023679,0.0020028,0.0015811,0.0015758,0.0014474,0.0012997,0.001126,0.0011242,0.0010693,0.00084331,0.00079764,0.00079276,0.00059555,0.00055892,0.00053879,0.00048097,0.00042946,0.0003479,0.00033653,0.00028643,0.00019862,0.00019764,0.00019173,0.00018019,0.00017159,0.00016153,0.00015038,7.6319e-05,6.3636e-05,4.8018e-05,3.8855e-05,3.845e-05,3.7532e-05,2.7264e-05,2.5288e-05,2.513e-05,1.842e-05,1.08e-05,1.0616e-05,9.0501e-06,8.7552e-06,6.0421e-06,5.4412e-06,4.323e-06,3.8312e-06,3.3505e-06,3.2638e-06,2.7808e-06,2.7031e-06,2.667e-06,1.8467e-06,1.653e-06,1.5775e-06,1.3545e-06,1.2907e-06,1.034e-06,9.8274e-07,8.8698e-07,6.8602e-07,6.8435e-07,6.044e-07,5.7952e-07,5.7948e-07,4.3976e-07,4.3592e-07,3.8879e-07,3.444e-07,2.6399e-07,2.0735e-07,1.7416e-07,1.3172e-07,1.0152e-07,7.2201e-08,7.1202e-08,5.4656e-08,4.2305e-08,3.6345e-08,2.413e-08,2.138e-08,1.6703e-08,1.4423e-08,1.0597e-08,1.0256e-08,9.5864e-09,8.197e-09,5.8948e-09,4.1889e-09,3.4914e-09,2.9087e-09,2.6435e-09,2.6081e-09,2.1916e-09,1.7908e-09,9.6076e-10,8.1277e-10,7.4104e-10,6.0388e-10,6.0302e-10,4.9251e-10,4.8023e-10,4.1837e-10,3.7439e-10,2.5707e-10,2.434e-10,1.8105e-10,1.3724e-10,5.4906e-11,4.6136e-11,4.2408e-11,3.3982e-11,2.758e-11,2.5472e-11,2.1722e-11,1.9369e-11,1.6795e-11,1.3258e-11,1.3241e-11,8.6317e-12,7.7e-12,7.5184e-12,7.4234e-12,4.7846e-12,4.7369e-12,4.5308e-12,4.3814e-12,4.0166e-12,3.4767e-12,3.0537e-12,1.711e-12,4.8879e-13,3.3497e-13,3.2392e-13,3.1507e-13,2.8802e-13,2.7397e-13,1.7004e-13,1.2392e-13,9.833e-14,8.6356e-14,6.5784e-14,5.2151e-14,4.9941e-14,3.5978e-14,2.986e-14,2.3764e-14,1.6436e-14,1.0081e-14,9.7698e-15,8.2728e-15,7.3688e-15,6.9952e-15,4.0046e-15,3.435e-15,1.7016e-15,1.3987e-15,9.8899e-16,8.2093e-16,7.7278e-16,5.5547e-16,5.3221e-16,4.8461e-16,3.9476e-16,2.6653e-16 1,1.2891e-07,1.6999e-07,1.7235e-07,1.8726e-07,1.9958e-07,2.1697e-07,2.5499e-07,3.7316e-07,4.7421e-07,4.9192e-07,5.9431e-07,6.1288e-07,6.9236e-07,9.2949e-07,1.0189e-06,1.0858e-06,1.428e-06,1.4964e-06,1.576e-06,1.8741e-06,1.9092e-06,1.9297e-06,2.2003e-06,2.3769e-06,2.3828e-06,2.7615e-06,2.7987e-06,2.9907e-06,3.0169e-06,3.0425e-06,4.7522e-06,7.2225e-06,7.4984e-06,8.4694e-06,9.4368e-06,1.026e-05,1.1326e-05,1.2699e-05,1.5509e-05,1.7301e-05,2.0642e-05,2.5725e-05,2.625e-05,2.7401e-05,2.8507e-05,3.4985e-05,3.4996e-05,5.6594e-05,5.8622e-05,5.9778e-05,6.8863e-05,6.9582e-05,9.1572e-05,0.0001019,0.00010651,0.00011734,0.00012476,0.00013852,0.00014308,0.00018311,0.00021286,0.0003387,0.00038387,0.0004002,0.00043105,0.00052765,0.00054981,0.00057019,0.00067574,0.00079099,0.00083812,0.00087863,0.0010413,0.0013257,0.001702,0.0020085,0.0020789,0.0028157,0.0031217,0.0032746,0.0033446,0.0036425,0.0051414,0.0051979,0.0055137,0.0060506,0.0061614,0.0070241,0.0099909,0.010037,0.011059,0.011448,0.016826,0.018487,0.018615,0.020228,0.022607,0.022656,0.022859,0.024423,0.024438,0.025936,0.026537,0.036523,0.041823,0.042013,0.048824,0.050797,0.053981,0.055589,0.056556,0.057641,0.057999,0.058962,0.062975,0.063456,0.064457,0.065288,0.071835,0.079864,0.091228,0.095823,0.10614,0.11865,0.12424,0.1272,0.16353,0.16817,0.17164,0.17867,0.1879,0.19616,0.20306,0.2043,0.20508,0.21406,0.23888,0.24078,0.25109,0.26761,0.27701,0.27855,0.33618,0.33682,0.34894,0.37327,0.37779,0.39485,0.39893,0.42799,0.44738,0.4926,0.4937,0.54687,0.55301,0.55497,0.59003,0.59227,0.60494,0.62163,0.62684,0.63078,0.64626,0.64882,0.65049,0.66272,0.66699,0.66811,0.67819,0.6818,0.70171,0.73416,0.73986,0.74137,0.75552,0.76131,0.78446,0.82327,0.83476,0.85237,0.85866,0.87556,0.8915,0.89276,0.89374,0.89385,0.89834,0.89871,0.91222,0.91814,0.92877,0.92923,0.93198,0.94844,0.94889,0.95595,0.96339,0.97502,0.97639,0.9801,0.98089,0.98281,0.98581,0.98985,0.98995,0.99659,0.99989,0.99997,1,1,0.99907,0.99769,0.98846,0.98779,0.98637,0.98381,0.97245,0.95762,0.93807,0.93155,0.92753,0.91686,0.89346,0.88244,0.86751,0.84331,0.82129,0.81722,0.77197,0.76581,0.76354,0.75248,0.74805,0.71204,0.69632,0.69175,0.69129,0.68167,0.66864,0.66258,0.65988,0.61236,0.6123,0.56948,0.52108,0.47736,0.43826,0.42177,0.41749,0.40757,0.399,0.37914,0.37698,0.34031,0.33136,0.31386,0.2929,0.28062,0.27925,0.26954,0.26315,0.24787,0.22625,0.22429,0.21526,0.20153,0.19085,0.19036,0.15669,0.15164,0.14925,0.14327,0.14024,0.13556,0.12836,0.12554,0.12168,0.11568,0.10826,0.10153,0.10087,0.093159,0.088349,0.084278,0.075589,0.071872,0.070559,0.06606,0.065795,0.063905,0.063086,0.053038,0.05069,0.049802,0.045912,0.043775,0.043459,0.038826,0.03111,0.029087,0.02809,0.025882,0.025699,0.023414,0.023175,0.020517,0.019083,0.016469,0.016249,0.016045,0.015932,0.015567,0.015275,0.0151,0.013356,0.013015,0.010146,0.0093208,0.0088077,0.0086117,0.0071311,0.0071074,0.0066737,0.0064793,0.0055782,0.0055516,0.0054893,0.0049032,0.0047514,0.0046986,0.0045409,0.0043444,0.0041658,0.0040756,0.00328,0.0032548,0.0029002,0.0024341,0.0020596,0.0016268,0.0016213,0.0014895,0.0013378,0.0011594,0.0011575,0.0011012,0.00086885,0.00082189,0.00081688,0.00061404,0.00057635,0.00055562,0.00049611,0.00044308,0.00035909,0.00034738,0.00029576,0.00020523,0.00020422,0.00019813,0.00018622,0.00017736,0.00016698,0.00015547,7.9001e-05,6.5894e-05,4.9747e-05,4.027e-05,3.985e-05,3.89e-05,2.8273e-05,2.6228e-05,2.6065e-05,1.9115e-05,1.1217e-05,1.1027e-05,9.4028e-06,9.0969e-06,6.2817e-06,5.658e-06,4.4969e-06,3.9861e-06,3.4866e-06,3.3966e-06,2.8947e-06,2.8139e-06,2.7764e-06,1.9235e-06,1.722e-06,1.6435e-06,1.4115e-06,1.3452e-06,1.0779e-06,1.0246e-06,9.2492e-07,7.1563e-07,7.139e-07,6.3062e-07,6.0469e-07,6.0465e-07,4.5905e-07,4.5505e-07,4.0592e-07,3.5964e-07,2.7577e-07,2.1668e-07,1.8205e-07,1.3774e-07,1.0619e-07,7.5562e-08,7.4518e-08,5.7222e-08,4.4307e-08,3.8073e-08,2.5291e-08,2.2412e-08,1.7515e-08,1.5127e-08,1.1119e-08,1.0762e-08,1.006e-08,8.6037e-09,6.1899e-09,4.4006e-09,3.6686e-09,3.057e-09,2.7787e-09,2.7415e-09,2.3042e-09,1.8833e-09,1.0112e-09,8.5559e-10,7.8017e-10,6.3592e-10,6.3502e-10,5.1877e-10,5.0585e-10,4.4076e-10,3.9448e-10,2.7099e-10,2.566e-10,1.9093e-10,1.4477e-10,5.7984e-11,4.8732e-11,4.4799e-11,3.5907e-11,2.915e-11,2.6923e-11,2.2965e-11,2.0479e-11,1.776e-11,1.4024e-11,1.4006e-11,9.1348e-12,8.1497e-12,7.9578e-12,7.8573e-12,5.0667e-12,5.0162e-12,4.7982e-12,4.6402e-12,4.2543e-12,3.683e-12,3.2354e-12,1.8139e-12,5.1888e-13,3.5573e-13,3.4402e-13,3.3462e-13,3.0592e-13,2.9101e-13,1.8071e-13,1.3174e-13,1.0456e-13,9.1838e-14,6.9979e-14,5.549e-14,5.3141e-14,3.8296e-14,3.1789e-14,2.5306e-14,1.7509e-14,1.0744e-14,1.0413e-14,8.8187e-15,7.856e-15,7.458e-15,4.272e-15,3.6648e-15,1.8167e-15,1.4936e-15,1.0564e-15,8.7707e-16,8.2567e-16,5.9368e-16,5.6883e-16,5.1801e-16,4.2204e-16,2.8506e-16 1,1.2713e-07,1.6766e-07,1.6999e-07,1.847e-07,1.9686e-07,2.1402e-07,2.5154e-07,3.6817e-07,4.6793e-07,4.8541e-07,5.865e-07,6.0483e-07,6.833e-07,9.1746e-07,1.0057e-06,1.0718e-06,1.4098e-06,1.4774e-06,1.556e-06,1.8505e-06,1.8852e-06,1.9054e-06,2.1727e-06,2.3471e-06,2.353e-06,2.7272e-06,2.764e-06,2.9536e-06,2.9795e-06,3.0049e-06,4.6944e-06,7.1361e-06,7.4089e-06,8.3688e-06,9.3252e-06,1.0139e-05,1.1193e-05,1.2551e-05,1.533e-05,1.7102e-05,2.0406e-05,2.5434e-05,2.5953e-05,2.7092e-05,2.8186e-05,3.4595e-05,3.4606e-05,5.5979e-05,5.7986e-05,5.913e-05,6.8122e-05,6.8833e-05,9.0601e-05,0.00010083,0.00010539,0.00011612,0.00012346,0.00013709,0.0001416,0.00018125,0.00021071,0.00033537,0.00038013,0.0003963,0.00042688,0.00052261,0.00054457,0.00056477,0.00066938,0.00078364,0.00083036,0.00087052,0.0010318,0.0013138,0.001687,0.0019911,0.0020609,0.002792,0.0030956,0.0032473,0.0033168,0.0036125,0.0051003,0.0051563,0.0054699,0.006003,0.006113,0.0069696,0.0099162,0.0099617,0.010977,0.011364,0.016708,0.018359,0.018485,0.020089,0.022453,0.022502,0.022704,0.024259,0.024274,0.025764,0.026361,0.036291,0.041563,0.041752,0.048528,0.050492,0.05366,0.05526,0.056222,0.057302,0.057657,0.058616,0.06261,0.063089,0.064085,0.064912,0.071428,0.079421,0.090735,0.095312,0.10559,0.11805,0.12361,0.12656,0.16276,0.16738,0.17084,0.17785,0.18705,0.19529,0.20216,0.2034,0.20418,0.21313,0.23789,0.23978,0.25006,0.26654,0.27591,0.27745,0.33495,0.3356,0.34769,0.37197,0.37648,0.39352,0.3976,0.42661,0.44598,0.49115,0.49225,0.54539,0.55152,0.55348,0.58853,0.59077,0.60344,0.62013,0.62534,0.62928,0.64477,0.64733,0.649,0.66124,0.66551,0.66662,0.67671,0.68033,0.70025,0.73273,0.73844,0.73995,0.75412,0.75992,0.7831,0.822,0.83352,0.85118,0.85749,0.87444,0.89044,0.89171,0.89269,0.8928,0.89731,0.89768,0.91125,0.9172,0.92789,0.92835,0.93111,0.94768,0.94813,0.95524,0.96274,0.97448,0.97586,0.97961,0.98041,0.98236,0.98539,0.9895,0.9896,0.99638,0.99985,0.99995,1,1,0.99918,0.99786,0.98883,0.98817,0.98677,0.98425,0.97302,0.95831,0.9389,0.93242,0.92841,0.9178,0.8945,0.88352,0.86866,0.84453,0.82257,0.8185,0.77334,0.76719,0.76493,0.75388,0.74945,0.71349,0.69778,0.69322,0.69275,0.68314,0.67012,0.66406,0.66137,0.61386,0.6138,0.57097,0.52255,0.47879,0.43965,0.42314,0.41886,0.40893,0.40034,0.38045,0.37829,0.34154,0.33258,0.31504,0.29403,0.28173,0.28035,0.27062,0.26421,0.24889,0.22721,0.22525,0.21619,0.20243,0.19171,0.19122,0.15744,0.15237,0.14998,0.14397,0.14093,0.13623,0.129,0.12617,0.1223,0.11627,0.10882,0.10207,0.10141,0.093662,0.088831,0.084742,0.076014,0.07228,0.070961,0.066441,0.066175,0.064276,0.063453,0.053357,0.050997,0.050104,0.046194,0.044047,0.043728,0.039072,0.031313,0.029279,0.028276,0.026056,0.025872,0.023573,0.023332,0.020658,0.019216,0.016586,0.016365,0.016159,0.016046,0.015679,0.015385,0.015208,0.013453,0.01311,0.010222,0.0093914,0.0088749,0.0086775,0.0071867,0.0071629,0.0067261,0.0065303,0.0056228,0.005596,0.0055332,0.0049428,0.00479,0.0047367,0.0045779,0.0043799,0.0042,0.0041092,0.0033076,0.0032821,0.0029248,0.0024551,0.0020776,0.0016413,0.0016357,0.0015029,0.0013499,0.0011699,0.0011681,0.0011113,0.00087695,0.00082958,0.00082452,0.0006199,0.00058187,0.00056096,0.00050092,0.00044741,0.00036264,0.00035082,0.00029872,0.00020733,0.00020631,0.00020016,0.00018814,0.00017919,0.00016871,0.00015709,7.9854e-05,6.6612e-05,5.0297e-05,4.072e-05,4.0296e-05,3.9336e-05,2.8595e-05,2.6527e-05,2.6362e-05,1.9337e-05,1.1351e-05,1.1158e-05,9.5152e-06,9.2058e-06,6.3582e-06,5.7271e-06,4.5523e-06,4.0355e-06,3.5301e-06,3.439e-06,2.931e-06,2.8493e-06,2.8113e-06,1.9481e-06,1.7441e-06,1.6646e-06,1.4297e-06,1.3626e-06,1.092e-06,1.038e-06,9.3705e-07,7.251e-07,7.2334e-07,6.39e-07,6.1274e-07,6.127e-07,4.6522e-07,4.6117e-07,4.1139e-07,3.6451e-07,2.7954e-07,2.1967e-07,1.8457e-07,1.3966e-07,1.0769e-07,7.6638e-08,7.558e-08,5.8044e-08,4.4948e-08,3.8627e-08,2.5663e-08,2.2743e-08,1.7776e-08,1.5353e-08,1.1287e-08,1.0924e-08,1.0212e-08,8.7342e-09,6.2847e-09,4.4685e-09,3.7255e-09,3.1047e-09,2.8221e-09,2.7844e-09,2.3403e-09,1.913e-09,1.0274e-09,8.6936e-10,7.9275e-10,6.4623e-10,6.4532e-10,5.2722e-10,5.1409e-10,4.4797e-10,4.0095e-10,2.7547e-10,2.6085e-10,1.9412e-10,1.472e-10,5.8976e-11,4.9569e-11,4.557e-11,3.6527e-11,2.9656e-11,2.7392e-11,2.3365e-11,2.0837e-11,1.8072e-11,1.4271e-11,1.4253e-11,9.2971e-12,8.2949e-12,8.0996e-12,7.9974e-12,5.1578e-12,5.1064e-12,4.8846e-12,4.7238e-12,4.331e-12,3.7497e-12,3.2941e-12,1.8471e-12,5.2861e-13,3.6245e-13,3.5052e-13,3.4095e-13,3.1171e-13,2.9653e-13,1.8416e-13,1.3427e-13,1.0658e-13,9.3613e-14,7.1338e-14,5.6571e-14,5.4178e-14,3.9047e-14,3.2415e-14,2.5805e-14,1.7857e-14,1.0959e-14,1.0621e-14,8.9958e-15,8.014e-15,7.6082e-15,4.3587e-15,3.7394e-15,1.854e-15,1.5244e-15,1.0783e-15,8.953e-16,8.4285e-16,6.0609e-16,5.8073e-16,5.2886e-16,4.3091e-16,2.9108e-16 1,1.0107e-07,1.3356e-07,1.3542e-07,1.4723e-07,1.57e-07,1.7079e-07,2.0097e-07,2.9499e-07,3.7558e-07,3.8972e-07,4.7156e-07,4.8641e-07,5.5003e-07,7.4018e-07,8.1195e-07,8.6574e-07,1.1412e-06,1.1963e-06,1.2605e-06,1.5011e-06,1.5295e-06,1.546e-06,1.7647e-06,1.9076e-06,1.9124e-06,2.2191e-06,2.2493e-06,2.4049e-06,2.4261e-06,2.447e-06,3.8366e-06,5.8525e-06,6.0781e-06,6.8725e-06,7.665e-06,8.3399e-06,9.2147e-06,1.0342e-05,1.2654e-05,1.413e-05,1.6886e-05,2.1088e-05,2.1522e-05,2.2474e-05,2.339e-05,2.8762e-05,2.8771e-05,4.6742e-05,4.8434e-05,4.9398e-05,5.6985e-05,5.7585e-05,7.599e-05,8.4651e-05,8.8524e-05,9.762e-05,0.00010385,0.00011543,0.00011927,0.00015303,0.00017817,0.00028491,0.00032334,0.00033724,0.00036354,0.000446,0.00046494,0.00048237,0.00057274,0.00067163,0.00071212,0.00074694,0.00088692,0.0011324,0.0014582,0.0017242,0.0017855,0.0024274,0.0026946,0.0028283,0.0028896,0.0031504,0.0044668,0.0045165,0.0047947,0.0052682,0.005366,0.0061281,0.0087594,0.0088002,0.0097101,0.010057,0.014865,0.016356,0.01647,0.017921,0.020062,0.020107,0.02029,0.021701,0.021714,0.023067,0.02361,0.032664,0.03749,0.037663,0.043883,0.045689,0.048605,0.050079,0.050965,0.051961,0.052289,0.053174,0.056861,0.057304,0.058224,0.058988,0.065019,0.072432,0.082951,0.087215,0.096804,0.10846,0.11368,0.11645,0.15053,0.1549,0.15817,0.1648,0.17352,0.18134,0.18786,0.18904,0.18978,0.19829,0.2219,0.22371,0.23354,0.24932,0.25831,0.25979,0.31519,0.31581,0.32751,0.35106,0.35544,0.37201,0.37597,0.40428,0.42323,0.46758,0.46866,0.52113,0.52721,0.52915,0.56399,0.56622,0.57886,0.59553,0.60074,0.60469,0.62022,0.62279,0.62446,0.63676,0.64106,0.64218,0.65234,0.65599,0.67612,0.70908,0.71489,0.71643,0.73088,0.73681,0.76058,0.80072,0.81269,0.83112,0.83772,0.85555,0.87249,0.87384,0.87488,0.875,0.8798,0.8802,0.89472,0.90112,0.91268,0.91319,0.9162,0.93439,0.93489,0.94281,0.95125,0.96474,0.96636,0.97078,0.97173,0.97406,0.97775,0.98287,0.983,0.99213,0.99831,0.9987,0.99907,0.99918,1,0.99969,0.99404,0.99355,0.99251,0.99057,0.98149,0.96893,0.95174,0.9459,0.94227,0.93258,0.91105,0.9008,0.88683,0.86397,0.84299,0.8391,0.79551,0.78953,0.78734,0.77659,0.77227,0.73706,0.72162,0.71712,0.71667,0.70718,0.69432,0.68833,0.68565,0.63843,0.63837,0.59554,0.54682,0.50254,0.46274,0.44589,0.44152,0.43137,0.42258,0.40219,0.39997,0.36217,0.35293,0.3348,0.31304,0.30027,0.29885,0.28872,0.28206,0.26609,0.24345,0.24139,0.23191,0.21747,0.20621,0.20569,0.17007,0.1647,0.16217,0.15582,0.15259,0.1476,0.13992,0.13691,0.1328,0.12638,0.11843,0.11122,0.11051,0.10222,0.097045,0.092658,0.083278,0.079258,0.077838,0.072963,0.072677,0.070627,0.069738,0.058815,0.056256,0.055287,0.051041,0.048706,0.04836,0.043288,0.034813,0.032585,0.031485,0.029049,0.028847,0.02632,0.026056,0.023111,0.02152,0.018614,0.018369,0.018141,0.018016,0.017609,0.017284,0.017088,0.015142,0.014761,0.011548,0.010622,0.010045,0.0098248,0.0081569,0.0081302,0.0076406,0.007421,0.0064018,0.0063717,0.0063012,0.0056368,0.0054646,0.0054046,0.0052256,0.0050023,0.0047993,0.0046968,0.0037905,0.0037617,0.0033568,0.0028235,0.0023939,0.0018963,0.00189,0.0017381,0.0015631,0.0013569,0.0013547,0.0012895,0.0010203,0.00096575,0.00095992,0.00072389,0.00067994,0.00065576,0.00058626,0.00052425,0.00042584,0.0004121,0.00035147,0.00024483,0.00024363,0.00023645,0.00022238,0.0002119,0.00019962,0.000186,9.5163e-05,7.9517e-05,6.0196e-05,4.8827e-05,4.8323e-05,4.7182e-05,3.4397e-05,3.1931e-05,3.1734e-05,2.334e-05,1.3764e-05,1.3532e-05,1.1555e-05,1.1183e-05,7.7474e-06,6.9845e-06,5.5623e-06,4.9356e-06,4.3222e-06,4.2115e-06,3.5941e-06,3.4947e-06,3.4484e-06,2.3966e-06,2.1475e-06,2.0503e-06,1.7632e-06,1.681e-06,1.3495e-06,1.2833e-06,1.1594e-06,8.9891e-07,8.9675e-07,7.9293e-07,7.6059e-07,7.6054e-07,5.7867e-07,5.7367e-07,5.122e-07,4.5423e-07,3.4903e-07,2.7477e-07,2.3116e-07,1.7527e-07,1.354e-07,9.6591e-08,9.5267e-08,7.3299e-08,5.6863e-08,4.8918e-08,3.2592e-08,2.8908e-08,2.2632e-08,1.9567e-08,1.4414e-08,1.3954e-08,1.305e-08,1.1173e-08,8.0574e-09,5.7418e-09,4.7928e-09,3.9988e-09,3.6371e-09,3.5888e-09,3.0199e-09,2.4717e-09,1.3326e-09,1.1289e-09,1.03e-09,8.4069e-10,8.3951e-10,6.8674e-10,6.6974e-10,5.841e-10,5.2314e-10,3.6026e-10,3.4124e-10,2.544e-10,1.9324e-10,7.7846e-11,6.5496e-11,6.0241e-11,4.835e-11,3.9302e-11,3.6319e-11,3.1009e-11,2.7672e-11,2.4019e-11,1.8994e-11,1.897e-11,1.2404e-11,1.1074e-11,1.0815e-11,1.0679e-11,6.9044e-12,6.836e-12,6.5406e-12,6.3265e-12,5.8033e-12,5.0284e-12,4.4206e-12,2.4868e-12,7.1655e-13,4.9231e-13,4.7619e-13,4.6326e-13,4.2373e-13,4.032e-13,2.5105e-13,1.8334e-13,1.457e-13,1.2807e-13,9.7733e-14,7.7597e-14,7.433e-14,5.3662e-14,4.459e-14,3.554e-14,2.4639e-14,1.5159e-14,1.4694e-14,1.2456e-14,1.1103e-14,1.0543e-14,6.0571e-15,5.2005e-15,2.5874e-15,2.1294e-15,1.5089e-15,1.2539e-15,1.1808e-15,8.5047e-16,8.1506e-16,7.4259e-16,6.0566e-16,4.0989e-16 1,8.7695e-08,1.1603e-07,1.1766e-07,1.2797e-07,1.3649e-07,1.4854e-07,1.7491e-07,2.5719e-07,3.2782e-07,3.4022e-07,4.1202e-07,4.2505e-07,4.8092e-07,6.4808e-07,7.1123e-07,7.5858e-07,1.0013e-06,1.0499e-06,1.1064e-06,1.3188e-06,1.3438e-06,1.3584e-06,1.5516e-06,1.6778e-06,1.6821e-06,1.9533e-06,1.9799e-06,2.1176e-06,2.1364e-06,2.1548e-06,3.3861e-06,5.1763e-06,5.3768e-06,6.0834e-06,6.7887e-06,7.3896e-06,8.169e-06,9.174e-06,1.1237e-05,1.2555e-05,1.5018e-05,1.8776e-05,1.9165e-05,2.0018e-05,2.0838e-05,2.5652e-05,2.566e-05,4.1801e-05,4.3323e-05,4.419e-05,5.1018e-05,5.1558e-05,6.8145e-05,7.5958e-05,7.9454e-05,8.7668e-05,9.33e-05,0.00010377,0.00010723,0.00013779,0.00016057,0.0002575,0.00029247,0.00030512,0.00032907,0.00040424,0.00042151,0.00043742,0.00051995,0.00061035,0.00064739,0.00067926,0.00080748,0.0010326,0.001332,0.0015769,0.0016333,0.0022254,0.0024723,0.0025958,0.0026525,0.0028937,0.0041135,0.0041597,0.0044179,0.0048577,0.0049485,0.0056573,0.0081094,0.0081474,0.008997,0.0093209,0.013823,0.015221,0.015329,0.016691,0.018705,0.018746,0.018919,0.020247,0.020259,0.021533,0.022045,0.030591,0.035157,0.035321,0.041216,0.04293,0.045698,0.047098,0.047941,0.048887,0.049199,0.05004,0.053547,0.053968,0.054844,0.055571,0.061316,0.068386,0.078435,0.082513,0.091694,0.10287,0.10788,0.11054,0.14335,0.14757,0.15072,0.15713,0.16555,0.17311,0.17943,0.18057,0.18129,0.18953,0.21243,0.21419,0.22374,0.23909,0.24785,0.24929,0.30337,0.30398,0.31543,0.33851,0.3428,0.35907,0.36297,0.3908,0.40948,0.45327,0.45434,0.50634,0.51238,0.51431,0.54896,0.55118,0.56378,0.58041,0.58562,0.58956,0.60509,0.60766,0.60934,0.62165,0.62596,0.62708,0.63727,0.64094,0.66115,0.69435,0.7002,0.70176,0.71636,0.72236,0.74643,0.78727,0.79949,0.81834,0.82512,0.84345,0.86093,0.86232,0.8634,0.86352,0.86849,0.8689,0.88397,0.89064,0.90272,0.90325,0.9064,0.92555,0.92608,0.93448,0.94348,0.95801,0.95977,0.9646,0.96564,0.96821,0.97229,0.97802,0.97817,0.98872,0.99655,0.99712,0.99769,0.99786,0.99969,1,0.99645,0.99607,0.99524,0.99367,0.98593,0.97472,0.95894,0.9535,0.95011,0.94102,0.92063,0.91085,0.89746,0.87543,0.85511,0.85133,0.8088,0.80294,0.80079,0.79024,0.786,0.75133,0.73608,0.73164,0.73118,0.7218,0.70905,0.70311,0.70046,0.6535,0.65344,0.61067,0.56184,0.5173,0.47715,0.46012,0.45569,0.44541,0.43651,0.41583,0.41358,0.37516,0.36575,0.34728,0.32507,0.31202,0.31056,0.30021,0.29339,0.27703,0.25379,0.25168,0.24194,0.22709,0.21549,0.21496,0.17819,0.17264,0.17002,0.16344,0.1601,0.15494,0.14698,0.14385,0.13958,0.13292,0.12466,0.11715,0.11641,0.10778,0.10239,0.097809,0.088014,0.083812,0.082326,0.077226,0.076925,0.074779,0.073848,0.062394,0.059707,0.058689,0.054227,0.051771,0.051406,0.046066,0.037126,0.034772,0.03361,0.031033,0.030819,0.028143,0.027863,0.024741,0.023053,0.019966,0.019705,0.019463,0.01933,0.018897,0.018551,0.018343,0.016271,0.015865,0.012438,0.011448,0.010832,0.010596,0.0088103,0.0087817,0.008257,0.0080215,0.0069279,0.0068957,0.0068199,0.0061061,0.005921,0.0058565,0.005664,0.0054238,0.0052053,0.005095,0.0041185,0.0040874,0.0036505,0.0030745,0.0026099,0.0020708,0.0020639,0.0018992,0.0017092,0.0014852,0.0014828,0.001412,0.0011189,0.0010595,0.0010532,0.00079569,0.00074768,0.00072126,0.00064529,0.00057745,0.00046967,0.00045462,0.00038812,0.00027096,0.00026965,0.00026174,0.00024626,0.00023473,0.00022121,0.0002062,0.00010592,8.8594e-05,6.7174e-05,5.4551e-05,5.3992e-05,5.2723e-05,3.8504e-05,3.5758e-05,3.5539e-05,2.6182e-05,1.5483e-05,1.5224e-05,1.3011e-05,1.2594e-05,8.7415e-06,7.8849e-06,6.2867e-06,5.5817e-06,4.8912e-06,4.7667e-06,4.071e-06,3.959e-06,3.9069e-06,2.72e-06,2.4387e-06,2.3289e-06,2.0041e-06,1.9112e-06,1.5359e-06,1.4609e-06,1.3205e-06,1.0251e-06,1.0226e-06,9.0475e-07,8.6802e-07,8.6797e-07,6.6126e-07,6.5557e-07,5.8562e-07,5.1964e-07,3.9978e-07,3.1506e-07,2.6526e-07,2.0137e-07,1.5574e-07,1.1127e-07,1.0975e-07,8.4542e-08,6.5657e-08,5.652e-08,3.7722e-08,3.3475e-08,2.6235e-08,2.2695e-08,1.674e-08,1.6208e-08,1.5163e-08,1.299e-08,9.3802e-09,6.6937e-09,5.5914e-09,4.6685e-09,4.2478e-09,4.1917e-09,3.5296e-09,2.8911e-09,1.5626e-09,1.3245e-09,1.2089e-09,9.8752e-10,9.8614e-10,8.0731e-10,7.8741e-10,6.8707e-10,6.1563e-10,4.2455e-10,4.0223e-10,3.002e-10,2.2826e-10,9.2263e-11,7.7675e-11,7.1465e-11,5.7404e-11,4.6697e-11,4.3164e-11,3.6874e-11,3.292e-11,2.8588e-11,2.2626e-11,2.2598e-11,1.4798e-11,1.3217e-11,1.2909e-11,1.2747e-11,8.2541e-12,8.1726e-12,7.8207e-12,7.5655e-12,6.9419e-12,6.018e-12,5.2929e-12,2.9834e-12,8.6326e-13,5.9385e-13,5.7446e-13,5.5892e-13,5.1138e-13,4.8668e-13,3.035e-13,2.2187e-13,1.7646e-13,1.5516e-13,1.1852e-13,9.4166e-14,9.0215e-14,6.5198e-14,5.4208e-14,4.3236e-14,3.001e-14,1.8491e-14,1.7926e-14,1.5203e-14,1.3557e-14,1.2876e-14,7.4098e-15,6.3648e-15,3.1735e-15,2.6133e-15,1.8537e-15,1.5413e-15,1.4517e-15,1.0466e-15,1.0032e-15,9.1422e-16,7.461e-16,5.0553e-16 1,5.4017e-08,7.1767e-08,7.2791e-08,7.9268e-08,8.463e-08,9.2214e-08,1.0886e-07,1.61e-07,2.0599e-07,2.139e-07,2.5981e-07,2.6816e-07,3.04e-07,4.1159e-07,4.5236e-07,4.8297e-07,6.403e-07,6.719e-07,7.0869e-07,8.471e-07,8.6344e-07,8.7298e-07,9.9929e-07,1.082e-06,1.0848e-06,1.2627e-06,1.2803e-06,1.3708e-06,1.3832e-06,1.3953e-06,2.2092e-06,3.4015e-06,3.5356e-06,4.0087e-06,4.4819e-06,4.8859e-06,5.4106e-06,6.0886e-06,7.4842e-06,8.3784e-06,1.0054e-05,1.2621e-05,1.2887e-05,1.3472e-05,1.4034e-05,1.7342e-05,1.7347e-05,2.8516e-05,2.9574e-05,3.0177e-05,3.4935e-05,3.5312e-05,4.6921e-05,5.2411e-05,5.4871e-05,6.0659e-05,6.4635e-05,7.2037e-05,7.4492e-05,9.6199e-05,0.00011245,0.00018208,0.00020735,0.00021651,0.00023388,0.00028855,0.00030116,0.00031277,0.00037317,0.00043959,0.00046687,0.00049037,0.00058518,0.00075252,0.00097637,0.0011605,0.0012029,0.0016511,0.001839,0.0019332,0.0019764,0.0021608,0.0030989,0.0031345,0.0033342,0.0036751,0.0037457,0.0042971,0.0062191,0.0062491,0.0069195,0.0071756,0.01076,0.011882,0.011969,0.013065,0.01469,0.014724,0.014863,0.015939,0.015949,0.016984,0.0174,0.024394,0.028161,0.028297,0.033188,0.034615,0.036925,0.038095,0.0388,0.039593,0.039854,0.040559,0.043503,0.043858,0.044595,0.045207,0.050054,0.056046,0.064608,0.068096,0.075979,0.085626,0.089966,0.092272,0.12095,0.12467,0.12745,0.13311,0.14057,0.14728,0.1529,0.15392,0.15456,0.16192,0.18246,0.18404,0.19266,0.20655,0.2145,0.21581,0.26535,0.26592,0.2765,0.29791,0.30191,0.31709,0.32074,0.34688,0.36451,0.40617,0.4072,0.45724,0.46309,0.46496,0.49873,0.5009,0.51325,0.52963,0.53476,0.53866,0.55404,0.55659,0.55826,0.57052,0.57482,0.57594,0.58613,0.5898,0.61013,0.64377,0.64974,0.65133,0.66628,0.67244,0.6973,0.74,0.75292,0.77301,0.78028,0.80007,0.81916,0.82069,0.82187,0.82201,0.82748,0.82794,0.84468,0.85216,0.86582,0.86642,0.87002,0.89215,0.89277,0.90268,0.91346,0.93131,0.93352,0.93965,0.94098,0.94429,0.94965,0.95736,0.95757,0.97276,0.98607,0.98723,0.98846,0.98883,0.99404,0.99645,1,0.99999,0.99991,0.9996,0.99648,0.98998,0.97917,0.97518,0.97264,0.96567,0.94939,0.94132,0.93007,0.91113,0.89326,0.8899,0.85146,0.84609,0.84411,0.83437,0.83044,0.79799,0.78355,0.77932,0.77889,0.76995,0.75774,0.75203,0.74948,0.70388,0.70382,0.66169,0.61294,0.5679,0.52684,0.50931,0.50474,0.49411,0.48487,0.46336,0.46101,0.42071,0.41078,0.39123,0.3676,0.35364,0.35208,0.34098,0.33364,0.31601,0.29082,0.28852,0.2779,0.26166,0.24894,0.24835,0.20768,0.2015,0.19859,0.19123,0.1875,0.18171,0.17277,0.16925,0.16444,0.15691,0.14755,0.13903,0.13818,0.12834,0.12216,0.11691,0.10563,0.10078,0.099057,0.093143,0.092794,0.0903,0.089217,0.075843,0.072691,0.071495,0.066243,0.063345,0.062914,0.056592,0.045939,0.043118,0.041723,0.038623,0.038365,0.035136,0.034797,0.031013,0.02896,0.025192,0.024873,0.024577,0.024413,0.023884,0.023459,0.023203,0.020656,0.020155,0.015913,0.014681,0.013912,0.013617,0.011381,0.011345,0.010685,0.010388,0.0090077,0.0089669,0.008871,0.0079659,0.0077307,0.0076486,0.0074037,0.0070979,0.0068192,0.0066784,0.005428,0.0053881,0.004826,0.004082,0.0034791,0.002776,0.002767,0.0025513,0.0023017,0.0020067,0.0020036,0.00191,0.0015218,0.0014427,0.0014343,0.0010905,0.0010262,0.00099069,0.00088852,0.00079704,0.0006512,0.00063076,0.00054032,0.00038009,0.00037828,0.00036742,0.00034612,0.00033024,0.0003116,0.00029088,0.00015143,0.00012711,9.6892e-05,7.9e-05,7.8205e-05,7.6402e-05,5.6129e-05,5.2198e-05,5.1884e-05,3.8441e-05,2.295e-05,2.2573e-05,1.9346e-05,1.8736e-05,1.3089e-05,1.1828e-05,9.4672e-06,8.4229e-06,7.3976e-06,7.2124e-06,6.1764e-06,6.0093e-06,5.9314e-06,4.1548e-06,3.7318e-06,3.5665e-06,3.0768e-06,2.9364e-06,2.3683e-06,2.2544e-06,2.0411e-06,1.591e-06,1.5872e-06,1.407e-06,1.3508e-06,1.3507e-06,1.0335e-06,1.0247e-06,9.1704e-07,8.1525e-07,6.2977e-07,4.9814e-07,4.2052e-07,3.2059e-07,2.4891e-07,1.7873e-07,1.7633e-07,1.3635e-07,1.0629e-07,9.1698e-08,6.1561e-08,5.4724e-08,4.3038e-08,3.7308e-08,2.7638e-08,2.6771e-08,2.5068e-08,2.1523e-08,1.5613e-08,1.1193e-08,9.373e-09,7.8453e-09,7.1475e-09,7.0543e-09,5.9539e-09,4.8901e-09,2.6648e-09,2.2637e-09,2.0686e-09,1.6943e-09,1.6919e-09,1.3887e-09,1.3549e-09,1.1844e-09,1.0628e-09,7.3642e-10,6.9818e-10,5.2303e-10,3.9909e-10,1.6315e-10,1.3765e-10,1.2677e-10,1.0211e-10,8.3271e-11,7.7045e-11,6.5945e-11,5.8954e-11,5.1285e-11,4.0704e-11,4.0653e-11,2.6758e-11,2.3931e-11,2.3379e-11,2.309e-11,1.5029e-11,1.4882e-11,1.4249e-11,1.3789e-11,1.2665e-11,1.0998e-11,9.6876e-12,5.4972e-12,1.6134e-12,1.1145e-12,1.0786e-12,1.0497e-12,9.6138e-13,9.1545e-13,5.739e-13,4.21e-13,3.3568e-13,2.9559e-13,2.2644e-13,1.8037e-13,1.7288e-13,1.2538e-13,1.0446e-13,8.3518e-14,5.8197e-14,3.6045e-14,3.4954e-14,2.9697e-14,2.6513e-14,2.5194e-14,1.4583e-14,1.2547e-14,6.3012e-15,5.1993e-15,3.701e-15,3.0831e-15,2.9057e-15,2.1019e-15,2.0155e-15,1.8385e-15,1.5035e-15,1.0227e-15 1,5.2654e-08,6.9971e-08,7.0971e-08,7.729e-08,8.2523e-08,8.9924e-08,1.0617e-07,1.5707e-07,2.01e-07,2.0873e-07,2.5357e-07,2.6173e-07,2.9673e-07,4.0185e-07,4.4169e-07,4.716e-07,6.2537e-07,6.5626e-07,6.9223e-07,8.2754e-07,8.4352e-07,8.5284e-07,9.7635e-07,1.0572e-06,1.0599e-06,1.234e-06,1.2512e-06,1.3397e-06,1.3518e-06,1.3637e-06,2.16e-06,3.3269e-06,3.4582e-06,3.9214e-06,4.3848e-06,4.7803e-06,5.2941e-06,5.9582e-06,7.3253e-06,8.2013e-06,9.8434e-06,1.2359e-05,1.262e-05,1.3193e-05,1.3744e-05,1.6987e-05,1.6992e-05,2.7946e-05,2.8983e-05,2.9575e-05,3.4242e-05,3.4612e-05,4.6005e-05,5.1393e-05,5.3808e-05,5.949e-05,6.3393e-05,7.066e-05,7.3071e-05,9.4388e-05,0.00011035,0.00017877,0.00020361,0.00021262,0.00022969,0.00028345,0.00029585,0.00030727,0.00036668,0.00043202,0.00045886,0.00048198,0.00057529,0.00074002,0.00096044,0.0011418,0.0011836,0.0016252,0.0018104,0.0019032,0.0019458,0.0021276,0.0030527,0.0030879,0.0032848,0.0036211,0.0036907,0.0042348,0.0061321,0.0061617,0.0068237,0.0070766,0.010618,0.011727,0.011812,0.012896,0.014503,0.014536,0.014674,0.015738,0.015748,0.016771,0.017182,0.024102,0.02783,0.027965,0.032807,0.03422,0.036508,0.037667,0.038366,0.039151,0.039409,0.040107,0.043025,0.043375,0.044106,0.044712,0.049515,0.055454,0.063943,0.067402,0.07522,0.084791,0.089097,0.091386,0.11986,0.12355,0.12631,0.13193,0.13935,0.14601,0.1516,0.15261,0.15325,0.16056,0.18098,0.18255,0.19112,0.20493,0.21284,0.21415,0.26345,0.26401,0.27454,0.29587,0.29985,0.31497,0.31861,0.34466,0.36223,0.40377,0.40479,0.45472,0.46056,0.46242,0.49613,0.4983,0.51063,0.52699,0.53212,0.53601,0.55138,0.55393,0.5556,0.56785,0.57215,0.57327,0.58346,0.58713,0.60745,0.6411,0.64708,0.64867,0.66363,0.66979,0.69469,0.73746,0.75042,0.77056,0.77785,0.79771,0.81687,0.8184,0.81959,0.81973,0.82523,0.82569,0.84251,0.85002,0.86377,0.86437,0.86799,0.89027,0.89089,0.90087,0.91173,0.92975,0.93198,0.93817,0.93952,0.94288,0.94829,0.95611,0.95631,0.97174,0.98534,0.98653,0.98779,0.98817,0.99355,0.99607,0.99999,1,0.99996,0.99971,0.99684,0.99059,0.98004,0.97613,0.97364,0.96679,0.95073,0.94276,0.93162,0.91285,0.89513,0.89179,0.85359,0.84824,0.84627,0.83658,0.83267,0.80035,0.78596,0.78175,0.78132,0.7724,0.76023,0.75453,0.75199,0.70648,0.70642,0.66434,0.61561,0.57057,0.52948,0.51192,0.50735,0.4967,0.48745,0.4659,0.46355,0.42316,0.41321,0.3936,0.3699,0.3559,0.35433,0.34319,0.33583,0.31813,0.29284,0.29053,0.27987,0.26356,0.25077,0.25018,0.20931,0.2031,0.20017,0.19278,0.18901,0.1832,0.1742,0.17066,0.16582,0.15825,0.14883,0.14025,0.1394,0.12949,0.12327,0.11798,0.10662,0.10173,0.1,0.094042,0.093691,0.091178,0.090086,0.076606,0.073429,0.072224,0.066928,0.064005,0.063571,0.057193,0.046445,0.043598,0.04219,0.03906,0.0388,0.035539,0.035197,0.031376,0.029302,0.025495,0.025173,0.024874,0.024708,0.024173,0.023744,0.023486,0.020911,0.020405,0.016116,0.01487,0.014093,0.013795,0.011532,0.011496,0.010828,0.010528,0.0091305,0.0090892,0.0089921,0.0080759,0.0078378,0.0077547,0.0075068,0.0071971,0.0069149,0.0067723,0.0055059,0.0054655,0.0048961,0.0041421,0.0035312,0.0028183,0.0028092,0.0025905,0.0023374,0.0020381,0.002035,0.0019401,0.0015461,0.001466,0.0014574,0.0011085,0.0010431,0.0010071,0.00090334,0.00081044,0.0006623,0.00064154,0.00054965,0.0003868,0.00038497,0.00037393,0.00035228,0.00033613,0.00031717,0.00029611,0.00015425,0.0001295,9.8748e-05,8.053e-05,7.972e-05,7.7885e-05,5.7235e-05,5.3231e-05,5.2911e-05,3.9214e-05,2.3423e-05,2.3038e-05,1.9747e-05,1.9126e-05,1.3366e-05,1.2079e-05,9.6704e-06,8.6045e-06,7.558e-06,7.369e-06,6.3113e-06,6.1407e-06,6.0613e-06,4.2471e-06,3.815e-06,3.6462e-06,3.146e-06,3.0025e-06,2.4221e-06,2.3057e-06,2.0878e-06,1.6277e-06,1.6238e-06,1.4396e-06,1.3822e-06,1.3821e-06,1.0577e-06,1.0488e-06,9.3864e-07,8.3453e-07,6.448e-07,5.1013e-07,4.307e-07,3.2842e-07,2.5504e-07,1.8319e-07,1.8072e-07,1.3978e-07,1.0898e-07,9.4032e-08,6.3147e-08,5.6139e-08,4.4159e-08,3.8284e-08,2.8367e-08,2.7478e-08,2.5731e-08,2.2095e-08,1.6031e-08,1.1496e-08,9.628e-09,8.0597e-09,7.3434e-09,7.2476e-09,6.1178e-09,5.0254e-09,2.7397e-09,2.3276e-09,2.1272e-09,1.7425e-09,1.7401e-09,1.4285e-09,1.3937e-09,1.2184e-09,1.0933e-09,7.578e-10,7.1848e-10,5.3835e-10,4.1085e-10,1.6806e-10,1.418e-10,1.3061e-10,1.0521e-10,8.5813e-11,7.9401e-11,6.7968e-11,6.0767e-11,5.2867e-11,4.1966e-11,4.1914e-11,2.7595e-11,2.4681e-11,2.4112e-11,2.3814e-11,1.5504e-11,1.5353e-11,1.47e-11,1.4226e-11,1.3068e-11,1.1348e-11,9.997e-12,5.6747e-12,1.6667e-12,1.1516e-12,1.1145e-12,1.0847e-12,9.9347e-13,9.4604e-13,5.9324e-13,4.3527e-13,3.471e-13,3.0567e-13,2.342e-13,1.8658e-13,1.7883e-13,1.2972e-13,1.0808e-13,8.6429e-14,6.0237e-14,3.7319e-14,3.619e-14,3.075e-14,2.7454e-14,2.609e-14,1.5106e-14,1.2998e-14,6.5302e-15,5.3888e-15,3.8366e-15,3.1964e-15,3.0125e-15,2.1795e-15,2.09e-15,1.9066e-15,1.5593e-15,1.0609e-15 1,5.0008e-08,6.6484e-08,6.7436e-08,7.345e-08,7.8431e-08,8.5477e-08,1.0095e-07,1.4944e-07,1.913e-07,1.9867e-07,2.4143e-07,2.492e-07,2.8259e-07,3.8289e-07,4.2091e-07,4.4946e-07,5.963e-07,6.258e-07,6.6016e-07,7.8945e-07,8.0471e-07,8.1362e-07,9.3166e-07,1.0089e-06,1.0116e-06,1.178e-06,1.1944e-06,1.2791e-06,1.2906e-06,1.302e-06,2.0639e-06,3.1814e-06,3.3072e-06,3.751e-06,4.195e-06,4.5741e-06,5.0668e-06,5.7035e-06,7.0148e-06,7.8553e-06,9.4313e-06,1.1847e-05,1.2097e-05,1.2647e-05,1.3177e-05,1.6292e-05,1.6297e-05,2.6829e-05,2.7827e-05,2.8396e-05,3.2887e-05,3.3243e-05,4.421e-05,4.9399e-05,5.1724e-05,5.7198e-05,6.0958e-05,6.7962e-05,7.0285e-05,9.0837e-05,0.00010623,0.00017228,0.00019627,0.00020497,0.00022147,0.00027343,0.00028541,0.00029646,0.00035391,0.00041713,0.00044311,0.00046549,0.00055583,0.0007154,0.00092907,0.0011049,0.0011455,0.0015741,0.001754,0.0018442,0.0018855,0.0020622,0.0029615,0.0029957,0.0031873,0.0035146,0.0035823,0.0041119,0.0059602,0.005989,0.0066344,0.006881,0.010336,0.011419,0.011503,0.012561,0.014132,0.014164,0.014299,0.015339,0.015349,0.016349,0.016751,0.023522,0.027174,0.027306,0.032052,0.033437,0.03568,0.036817,0.037502,0.038272,0.038526,0.039211,0.042073,0.042418,0.043134,0.04373,0.048445,0.054278,0.06262,0.066021,0.07371,0.083128,0.087367,0.089621,0.11768,0.12132,0.12404,0.12959,0.1369,0.14348,0.149,0.14999,0.15062,0.15784,0.17802,0.17957,0.18804,0.2017,0.20953,0.21082,0.25964,0.26019,0.27063,0.29178,0.29573,0.31073,0.31433,0.3402,0.35765,0.39894,0.39996,0.44965,0.45546,0.45732,0.49091,0.49307,0.50537,0.52169,0.52681,0.53069,0.54603,0.54858,0.55024,0.56248,0.56677,0.56789,0.57807,0.58174,0.60205,0.63572,0.6417,0.64329,0.65828,0.66445,0.6894,0.73233,0.74534,0.7656,0.77293,0.79292,0.81223,0.81377,0.81497,0.81511,0.82066,0.82112,0.8381,0.84569,0.85958,0.86019,0.86385,0.88642,0.88705,0.89718,0.90822,0.92656,0.92883,0.93516,0.93654,0.93996,0.94551,0.95352,0.95373,0.96963,0.98379,0.98504,0.98637,0.98677,0.99251,0.99524,0.99991,0.99996,1,0.99989,0.99751,0.99176,0.98176,0.97801,0.97561,0.96899,0.95338,0.9456,0.93471,0.91629,0.89885,0.89556,0.85784,0.85255,0.8506,0.84101,0.83713,0.80509,0.7908,0.78661,0.78619,0.77732,0.76522,0.75956,0.75703,0.71171,0.71166,0.66968,0.62101,0.57595,0.5348,0.5172,0.51262,0.50194,0.49266,0.47103,0.46867,0.42811,0.41811,0.3984,0.37455,0.36047,0.35889,0.34767,0.34026,0.32243,0.29694,0.29461,0.28386,0.26741,0.2545,0.25391,0.21262,0.20635,0.20338,0.1959,0.1921,0.18622,0.17712,0.17354,0.16864,0.16097,0.15143,0.14274,0.14188,0.13183,0.12553,0.12017,0.10865,0.10368,0.10192,0.095876,0.095519,0.092967,0.091858,0.078164,0.074934,0.073709,0.068324,0.065351,0.06491,0.058421,0.047478,0.044578,0.043143,0.039954,0.039689,0.036364,0.036016,0.032118,0.030002,0.026116,0.025787,0.025482,0.025313,0.024766,0.024328,0.024064,0.021434,0.020917,0.016533,0.015259,0.014463,0.014158,0.011842,0.011805,0.011121,0.010814,0.0093826,0.0093402,0.0092407,0.0083018,0.0080577,0.0079725,0.0077183,0.0074008,0.0071115,0.0069652,0.005666,0.0056245,0.00504,0.0042659,0.0036382,0.0029055,0.0028961,0.0026712,0.0024108,0.0021029,0.0020997,0.002002,0.0015964,0.0015138,0.001505,0.0011454,0.001078,0.0010409,0.0009339,0.00083808,0.00068521,0.00066378,0.00056891,0.00040067,0.00039878,0.00038737,0.00036499,0.00034829,0.00032869,0.00030691,0.00016011,0.00013447,0.00010259,8.3699e-05,8.2859e-05,8.0955e-05,5.9529e-05,5.5372e-05,5.504e-05,4.0816e-05,2.4404e-05,2.4004e-05,2.0582e-05,1.9935e-05,1.3941e-05,1.2601e-05,1.0092e-05,8.982e-06,7.8915e-06,7.6944e-06,6.5919e-06,6.4141e-06,6.3312e-06,4.4391e-06,3.9882e-06,3.8121e-06,3.2899e-06,3.1402e-06,2.5341e-06,2.4126e-06,2.1849e-06,1.7041e-06,1.7001e-06,1.5076e-06,1.4475e-06,1.4474e-06,1.1082e-06,1.0989e-06,9.8365e-07,8.7472e-07,6.7615e-07,5.3514e-07,4.5194e-07,3.4477e-07,2.6785e-07,1.9249e-07,1.899e-07,1.4694e-07,1.1461e-07,9.891e-08,6.6464e-08,5.9098e-08,4.6504e-08,4.0326e-08,2.9894e-08,2.8959e-08,2.712e-08,2.3293e-08,1.6908e-08,1.2131e-08,1.0162e-08,8.5093e-09,7.7541e-09,7.6531e-09,6.4617e-09,5.3094e-09,2.897e-09,2.4619e-09,2.2502e-09,1.8437e-09,1.8412e-09,1.5119e-09,1.4751e-09,1.2898e-09,1.1576e-09,8.0276e-10,7.6116e-10,5.7055e-10,4.3558e-10,1.7839e-10,1.5055e-10,1.3868e-10,1.1175e-10,9.1169e-11,8.4366e-11,7.2232e-11,6.4589e-11,5.6202e-11,4.4626e-11,4.4571e-11,2.936e-11,2.6264e-11,2.5659e-11,2.5343e-11,1.6508e-11,1.6348e-11,1.5653e-11,1.5149e-11,1.3917e-11,1.2088e-11,1.065e-11,6.0497e-12,1.7795e-12,1.2301e-12,1.1905e-12,1.1587e-12,1.0614e-12,1.0108e-12,6.3417e-13,4.6547e-13,3.7128e-13,3.2702e-13,2.5063e-13,1.9972e-13,1.9144e-13,1.3892e-13,1.1577e-13,9.26e-14,6.4565e-14,4.0022e-14,3.8813e-14,3.2984e-14,2.9453e-14,2.7991e-14,1.6217e-14,1.3956e-14,7.0168e-15,5.7916e-15,4.1249e-15,3.4373e-15,3.2398e-15,2.3448e-15,2.2485e-15,2.0514e-15,1.6782e-15,1.1422e-15 1,4.5836e-08,6.0983e-08,6.1857e-08,6.7389e-08,7.1972e-08,7.8455e-08,9.2693e-08,1.3736e-07,1.7596e-07,1.8276e-07,2.2221e-07,2.2939e-07,2.6021e-07,3.5285e-07,3.88e-07,4.1439e-07,5.5021e-07,5.775e-07,6.0931e-07,7.29e-07,7.4314e-07,7.5139e-07,8.6073e-07,9.3234e-07,9.3477e-07,1.089e-06,1.1042e-06,1.1828e-06,1.1935e-06,1.204e-06,1.9112e-06,2.9497e-06,3.0667e-06,3.4795e-06,3.8927e-06,4.2457e-06,4.7044e-06,5.2975e-06,6.5196e-06,7.3033e-06,8.7735e-06,1.1028e-05,1.1262e-05,1.1776e-05,1.227e-05,1.5182e-05,1.5187e-05,2.5041e-05,2.5976e-05,2.6509e-05,3.0716e-05,3.105e-05,4.1332e-05,4.62e-05,4.8383e-05,5.3521e-05,5.7052e-05,6.3631e-05,6.5814e-05,8.5134e-05,9.9616e-05,0.00016182,0.00018445,0.00019266,0.00020822,0.00025728,0.00026859,0.00027903,0.00033332,0.00039311,0.00041769,0.00043887,0.0005244,0.00067562,0.00087831,0.0010453,0.0010839,0.0014914,0.0016625,0.0017483,0.0017877,0.0019559,0.0028134,0.002846,0.0030289,0.0033413,0.003406,0.003912,0.0056801,0.0057077,0.0063257,0.006562,0.0098768,0.010917,0.010997,0.012014,0.013525,0.013556,0.013686,0.014686,0.014695,0.015658,0.016046,0.022573,0.026098,0.026225,0.030811,0.032151,0.034321,0.035421,0.036083,0.036829,0.037074,0.037737,0.040509,0.040843,0.041537,0.042114,0.046683,0.052341,0.06044,0.063744,0.071219,0.080383,0.08451,0.086705,0.11407,0.11762,0.12028,0.1257,0.13285,0.13928,0.14468,0.14566,0.14627,0.15334,0.17311,0.17463,0.18293,0.19634,0.20402,0.20529,0.25329,0.25383,0.26412,0.28495,0.28885,0.30365,0.30721,0.33274,0.35,0.39087,0.39187,0.44115,0.44692,0.44877,0.48215,0.4843,0.49654,0.51278,0.51788,0.52174,0.53703,0.53957,0.54123,0.55343,0.55772,0.55883,0.56899,0.57266,0.59295,0.62663,0.63262,0.63422,0.64923,0.65542,0.68046,0.72362,0.73673,0.75716,0.76456,0.78477,0.80431,0.80588,0.8071,0.80724,0.81286,0.81333,0.83057,0.83828,0.85242,0.85304,0.85677,0.87981,0.88046,0.89083,0.90215,0.92104,0.92339,0.92993,0.93136,0.93491,0.94067,0.94901,0.94923,0.96592,0.98102,0.98237,0.98381,0.98425,0.99057,0.99367,0.9996,0.99971,0.99989,1,0.99845,0.99357,0.98448,0.981,0.97876,0.97254,0.95771,0.95025,0.93977,0.92196,0.905,0.9018,0.8649,0.85971,0.8578,0.84837,0.84456,0.81299,0.79888,0.79475,0.79432,0.78556,0.77358,0.76797,0.76546,0.72049,0.72044,0.67867,0.6301,0.58503,0.54379,0.52613,0.52153,0.5108,0.50148,0.47973,0.47735,0.43651,0.42643,0.40654,0.38247,0.36823,0.36664,0.3553,0.3478,0.32975,0.30393,0.30157,0.29067,0.27397,0.26087,0.26027,0.21829,0.2119,0.20888,0.20126,0.19739,0.19139,0.18211,0.17846,0.17346,0.16563,0.15589,0.14701,0.14613,0.13586,0.12941,0.12392,0.11212,0.10704,0.10523,0.099031,0.098665,0.096047,0.094909,0.080848,0.077529,0.07627,0.070733,0.067675,0.067221,0.060541,0.049264,0.046273,0.044792,0.0415,0.041226,0.037792,0.037432,0.033403,0.031214,0.027193,0.026852,0.026536,0.026361,0.025795,0.025341,0.025068,0.022342,0.021806,0.017257,0.015934,0.015107,0.01479,0.012382,0.012343,0.011632,0.011312,0.0098217,0.0097776,0.0096739,0.0086955,0.008441,0.0083523,0.0080872,0.0077561,0.0074543,0.0073017,0.0059455,0.0059022,0.0052916,0.0044822,0.0038254,0.003058,0.0030482,0.0028125,0.0025395,0.0022164,0.0022131,0.0021105,0.0016845,0.0015977,0.0015884,0.0012103,0.0011394,0.0011003,0.00098763,0.00088668,0.00072552,0.00070292,0.00060282,0.00042513,0.00042312,0.00041106,0.0003874,0.00036974,0.00034901,0.00032597,0.00017045,0.00014325,0.00010939,8.9312e-05,8.8419e-05,8.6394e-05,6.3595e-05,5.917e-05,5.8816e-05,4.3659e-05,2.6149e-05,2.5722e-05,2.2065e-05,2.1374e-05,1.4964e-05,1.353e-05,1.0844e-05,9.6547e-06,8.486e-06,8.2747e-06,7.0925e-06,6.9017e-06,6.8128e-06,4.7819e-06,4.2976e-06,4.1083e-06,3.5472e-06,3.3862e-06,2.7344e-06,2.6036e-06,2.3586e-06,1.8409e-06,1.8366e-06,1.6292e-06,1.5644e-06,1.5643e-06,1.1987e-06,1.1886e-06,1.0643e-06,9.4676e-07,7.3237e-07,5.8002e-07,4.9007e-07,3.7414e-07,2.9087e-07,2.0921e-07,2.0641e-07,1.5982e-07,1.2474e-07,1.077e-07,7.2444e-08,6.4435e-08,5.0735e-08,4.4011e-08,3.2651e-08,3.1632e-08,2.9628e-08,2.5457e-08,1.8494e-08,1.328e-08,1.113e-08,9.3234e-09,8.4978e-09,8.3875e-09,7.0846e-09,5.824e-09,3.1825e-09,2.7055e-09,2.4734e-09,2.0276e-09,2.0248e-09,1.6634e-09,1.6231e-09,1.4196e-09,1.2744e-09,8.8453e-10,8.3879e-10,6.2916e-10,4.8063e-10,1.9724e-10,1.6652e-10,1.5342e-10,1.2368e-10,1.0095e-10,9.3433e-11,8.0023e-11,7.1573e-11,6.2299e-11,4.9492e-11,4.9431e-11,3.2591e-11,2.9161e-11,2.8491e-11,2.814e-11,1.8347e-11,1.8169e-11,1.7399e-11,1.684e-11,1.5473e-11,1.3443e-11,1.1848e-11,6.7379e-12,1.987e-12,1.3746e-12,1.3304e-12,1.2949e-12,1.1863e-12,1.1299e-12,7.0958e-13,5.2114e-13,4.1587e-13,3.6639e-13,2.8095e-13,2.2398e-13,2.1471e-13,1.5591e-13,1.2997e-13,1.04e-13,7.2567e-14,4.5023e-14,4.3666e-14,3.712e-14,3.3153e-14,3.1511e-14,1.8275e-14,1.5731e-14,7.9196e-15,6.5391e-15,4.6602e-15,3.8847e-15,3.6618e-15,2.6518e-15,2.5432e-15,2.3206e-15,1.8991e-15,1.2935e-15 1,3.311e-08,4.4173e-08,4.4813e-08,4.8861e-08,5.2217e-08,5.6968e-08,6.7417e-08,1.0029e-07,1.2879e-07,1.3382e-07,1.6302e-07,1.6834e-07,1.912e-07,2.6009e-07,2.8627e-07,3.0595e-07,4.0741e-07,4.2784e-07,4.5165e-07,5.4139e-07,5.52e-07,5.5819e-07,6.4033e-07,6.9419e-07,6.9602e-07,8.1219e-07,8.2366e-07,8.8288e-07,8.9097e-07,8.9891e-07,1.434e-06,2.2237e-06,2.3129e-06,2.628e-06,2.9437e-06,3.2137e-06,3.565e-06,4.0199e-06,4.9589e-06,5.5622e-06,6.696e-06,8.4394e-06,8.6204e-06,9.0183e-06,9.4015e-06,1.1661e-05,1.1665e-05,1.935e-05,2.0081e-05,2.0498e-05,2.3794e-05,2.4056e-05,3.2134e-05,3.5969e-05,3.769e-05,4.1746e-05,4.4536e-05,4.9739e-05,5.1468e-05,6.6796e-05,7.8317e-05,0.00012804,0.0001462,0.00015279,0.00016531,0.00020484,0.00021398,0.00022241,0.00026634,0.00031484,0.00033481,0.00035203,0.0004217,0.0005453,0.00071164,0.00084914,0.00088095,0.0012181,0.0013601,0.0014315,0.0014643,0.0016043,0.002321,0.0023484,0.0025019,0.0027643,0.0028188,0.003245,0.0047416,0.004765,0.0052905,0.0054916,0.0083265,0.0092204,0.0092894,0.010165,0.011469,0.011496,0.011608,0.012473,0.012481,0.013316,0.013651,0.019335,0.02242,0.022532,0.026561,0.027741,0.029655,0.030626,0.031211,0.03187,0.032087,0.032673,0.035128,0.035423,0.036039,0.03655,0.04061,0.04565,0.052889,0.055851,0.062566,0.070826,0.074557,0.076542,0.10142,0.10466,0.1071,0.11205,0.1186,0.12451,0.12948,0.13037,0.13094,0.13746,0.15572,0.15713,0.16483,0.1773,0.18445,0.18564,0.23061,0.23112,0.24081,0.26049,0.26417,0.27821,0.28158,0.30589,0.32237,0.36159,0.36255,0.41018,0.41579,0.41758,0.45009,0.45219,0.46416,0.48008,0.48508,0.48888,0.50392,0.50643,0.50806,0.5201,0.52434,0.52544,0.5355,0.53912,0.55928,0.59287,0.59887,0.60047,0.61553,0.62176,0.64701,0.69086,0.70427,0.72524,0.73286,0.75376,0.7741,0.77573,0.777,0.77715,0.78303,0.78352,0.80162,0.80975,0.82474,0.8254,0.82937,0.85405,0.85474,0.86596,0.87828,0.89908,0.90169,0.90899,0.9106,0.91459,0.9211,0.93063,0.93088,0.95038,0.96888,0.9706,0.97245,0.97302,0.98149,0.98593,0.99648,0.99684,0.99751,0.99845,1,0.99832,0.99268,0.99022,0.98858,0.98388,0.972,0.96581,0.95691,0.94142,0.92636,0.92348,0.88986,0.88506,0.88329,0.87454,0.87099,0.84134,0.82797,0.82403,0.82363,0.81528,0.80382,0.79844,0.79603,0.75255,0.7525,0.71166,0.66371,0.61879,0.57736,0.55953,0.55487,0.54401,0.53455,0.51243,0.51,0.46822,0.45787,0.4374,0.41252,0.39777,0.39612,0.38433,0.37653,0.35771,0.33069,0.32821,0.31676,0.29919,0.28536,0.28472,0.24018,0.23337,0.23015,0.22202,0.21787,0.21145,0.20151,0.19759,0.19221,0.18379,0.17329,0.16369,0.16274,0.15161,0.14461,0.13864,0.12578,0.12022,0.11825,0.11145,0.11105,0.10818,0.10693,0.09146,0.087796,0.086405,0.080279,0.07689,0.076386,0.068967,0.056389,0.05304,0.05138,0.047684,0.047376,0.043513,0.043107,0.038562,0.036087,0.031529,0.031142,0.030783,0.030584,0.029941,0.029425,0.029114,0.026009,0.025397,0.020193,0.018673,0.017722,0.017358,0.014581,0.014536,0.013714,0.013343,0.011616,0.011564,0.011444,0.010306,0.01001,0.0099068,0.009598,0.0092119,0.0088597,0.0086815,0.0070947,0.0070438,0.006327,0.0053745,0.0045992,0.0036902,0.0036786,0.0033985,0.0030737,0.0026885,0.0026845,0.0025621,0.0020522,0.001948,0.0019369,0.001482,0.0013964,0.0013492,0.001213,0.0010908,0.00089519,0.0008677,0.0007458,0.00052859,0.00052614,0.00051134,0.00048231,0.00046063,0.00043516,0.00040681,0.00021462,0.00018078,0.00013854,0.00011341,0.00011229,0.00010975,8.1105e-05,7.553e-05,7.5084e-05,5.5943e-05,3.3718e-05,3.3173e-05,2.851e-05,2.7628e-05,1.9425e-05,1.7584e-05,1.413e-05,1.2597e-05,1.1089e-05,1.0816e-05,9.2868e-06,9.0398e-06,8.9247e-06,6.2894e-06,5.6593e-06,5.4127e-06,4.6811e-06,4.471e-06,3.6189e-06,3.4477e-06,3.1266e-06,2.447e-06,2.4413e-06,2.1684e-06,2.0831e-06,2.083e-06,1.6007e-06,1.5873e-06,1.423e-06,1.2674e-06,9.8306e-07,7.8046e-07,6.6058e-07,5.0571e-07,3.9417e-07,2.8446e-07,2.8069e-07,2.1789e-07,1.7048e-07,1.474e-07,9.9536e-08,8.8633e-08,6.9949e-08,6.0761e-08,4.5206e-08,4.3808e-08,4.1059e-08,3.5329e-08,2.5743e-08,1.8542e-08,1.5565e-08,1.306e-08,1.1914e-08,1.176e-08,9.9489e-09,8.1932e-09,4.5014e-09,3.8322e-09,3.5062e-09,2.8793e-09,2.8754e-09,2.3663e-09,2.3094e-09,2.0223e-09,1.8172e-09,1.2652e-09,1.2003e-09,9.0257e-10,6.9108e-10,2.8573e-10,2.4158e-10,2.2272e-10,1.7987e-10,1.4706e-10,1.3619e-10,1.1679e-10,1.0456e-10,9.111e-11,7.2516e-11,7.2427e-11,4.7913e-11,4.2908e-11,4.1931e-11,4.1419e-11,2.7097e-11,2.6836e-11,2.5707e-11,2.4887e-11,2.2882e-11,1.9903e-11,1.7558e-11,1.003e-11,2.9855e-12,2.0711e-12,2.005e-12,1.9519e-12,1.7895e-12,1.7049e-12,1.0745e-12,7.9093e-13,6.3222e-13,5.5751e-13,4.2834e-13,3.4205e-13,3.28e-13,2.3872e-13,1.9927e-13,1.5971e-13,1.1173e-13,6.9555e-14,6.7473e-14,5.7424e-14,5.1328e-14,4.8803e-14,2.8412e-14,2.4483e-14,1.2385e-14,1.0239e-14,7.3142e-15,6.1046e-15,5.7568e-15,4.178e-15,4.008e-15,3.6596e-15,2.9988e-15,2.0479e-15 1,2.3526e-08,3.1477e-08,3.1937e-08,3.4852e-08,3.7271e-08,4.0698e-08,4.8243e-08,7.206e-08,9.2774e-08,9.6432e-08,1.1772e-07,1.216e-07,1.3829e-07,1.8872e-07,2.0793e-07,2.2238e-07,2.9704e-07,3.1209e-07,3.2965e-07,3.9592e-07,4.0376e-07,4.0834e-07,4.6913e-07,5.0904e-07,5.1039e-07,5.9659e-07,6.051e-07,6.491e-07,6.5512e-07,6.6102e-07,1.0599e-06,1.6519e-06,1.7189e-06,1.9558e-06,2.1937e-06,2.3973e-06,2.6626e-06,3.0064e-06,3.7178e-06,4.1758e-06,5.038e-06,6.3673e-06,6.5055e-06,6.8095e-06,7.1024e-06,8.8326e-06,8.8356e-06,1.4747e-05,1.5312e-05,1.5634e-05,1.8181e-05,1.8384e-05,2.4648e-05,2.7629e-05,2.8969e-05,3.2128e-05,3.4304e-05,3.8367e-05,3.9718e-05,5.1723e-05,6.0773e-05,0.00010002,0.00011441,0.00011964,0.00012959,0.00016106,0.00016835,0.00017507,0.00021019,0.00024906,0.0002651,0.00027894,0.00033503,0.00043487,0.00056981,0.00068175,0.00070769,0.00098348,0.0011001,0.0011588,0.0011857,0.001301,0.0018937,0.0019164,0.0020438,0.002262,0.0023073,0.0026625,0.0039163,0.003936,0.0043782,0.0045477,0.0069481,0.0077088,0.0077676,0.0085146,0.0096287,0.0096519,0.0097478,0.010489,0.010496,0.011212,0.0115,0.016403,0.019079,0.019176,0.022685,0.023714,0.025387,0.026237,0.02675,0.027327,0.027518,0.028032,0.030186,0.030446,0.030987,0.031436,0.035011,0.039463,0.04588,0.048513,0.054497,0.061882,0.065226,0.067008,0.089444,0.092383,0.094592,0.099093,0.10505,0.11044,0.11497,0.11579,0.11631,0.12227,0.13903,0.14032,0.14741,0.15892,0.16554,0.16663,0.20847,0.20895,0.21801,0.23647,0.23994,0.25316,0.25634,0.27932,0.29496,0.33235,0.33327,0.37901,0.38442,0.38615,0.41762,0.41966,0.43128,0.44678,0.45167,0.45538,0.47009,0.47254,0.47414,0.48595,0.4901,0.49119,0.50108,0.50465,0.52453,0.55783,0.5638,0.56539,0.58041,0.58663,0.61193,0.65618,0.66979,0.69116,0.69897,0.72042,0.74141,0.74311,0.74442,0.74457,0.75067,0.75118,0.77003,0.77853,0.79427,0.79496,0.79915,0.82531,0.82606,0.83805,0.85131,0.8739,0.87676,0.88479,0.88656,0.89097,0.8982,0.90888,0.90916,0.93141,0.95326,0.95535,0.95762,0.95831,0.96893,0.97472,0.98998,0.99059,0.99176,0.99357,0.99832,1,0.998,0.99662,0.99563,0.99254,0.98386,0.97904,0.97188,0.95896,0.946,0.9435,0.91358,0.90924,0.90763,0.89966,0.89641,0.86903,0.85654,0.85285,0.85247,0.84461,0.83379,0.8287,0.82641,0.78484,0.78479,0.74524,0.69828,0.65384,0.61248,0.59458,0.58989,0.57895,0.5694,0.54701,0.54456,0.50202,0.49143,0.47044,0.44484,0.4296,0.42789,0.41569,0.4076,0.38805,0.35985,0.35726,0.34527,0.32682,0.31225,0.31158,0.26443,0.25718,0.25375,0.24508,0.24066,0.2338,0.22315,0.21895,0.21318,0.20413,0.19282,0.18246,0.18143,0.16939,0.16179,0.15531,0.14129,0.13522,0.13306,0.12563,0.12519,0.12204,0.12067,0.10364,0.099597,0.09806,0.091283,0.087526,0.086967,0.078724,0.064685,0.060933,0.059071,0.054918,0.054572,0.050222,0.049764,0.044631,0.041829,0.036655,0.036216,0.035807,0.035581,0.034849,0.034261,0.033907,0.030365,0.029665,0.023701,0.021952,0.020857,0.020437,0.017228,0.017176,0.016223,0.015793,0.013785,0.013726,0.013586,0.01226,0.011914,0.011794,0.011433,0.010981,0.010569,0.010361,0.0084989,0.0084391,0.0075952,0.0064708,0.0055527,0.0044725,0.0044586,0.0041248,0.003737,0.0032761,0.0032713,0.0031245,0.0025119,0.0023865,0.0023731,0.0018236,0.00172,0.0016628,0.0014975,0.0013488,0.0011103,0.0010768,0.00092765,0.0006609,0.00065788,0.00063965,0.00060386,0.00057711,0.00054566,0.00051061,0.00027186,0.00022955,0.00017657,0.00014493,0.00014352,0.00014032,0.00010412,9.7055e-05,9.6489e-05,7.2172e-05,4.3785e-05,4.3086e-05,3.7101e-05,3.5967e-05,2.54e-05,2.3022e-05,1.855e-05,1.656e-05,1.46e-05,1.4245e-05,1.2254e-05,1.1932e-05,1.1782e-05,8.3374e-06,7.5114e-06,7.188e-06,6.227e-06,5.9506e-06,4.8284e-06,4.6026e-06,4.1786e-06,3.2795e-06,3.272e-06,2.9101e-06,2.797e-06,2.7968e-06,2.1556e-06,2.1378e-06,1.9189e-06,1.7113e-06,1.3311e-06,1.0594e-06,8.9832e-07,6.8971e-07,5.3901e-07,3.9034e-07,3.8522e-07,2.9984e-07,2.352e-07,2.0366e-07,1.3808e-07,1.231e-07,9.7385e-08,8.4714e-08,6.3213e-08,6.1277e-08,5.7469e-08,4.9523e-08,3.6198e-08,2.6156e-08,2.1994e-08,1.8485e-08,1.6878e-08,1.6663e-08,1.4119e-08,1.1649e-08,6.4361e-09,5.4875e-09,5.0249e-09,4.1339e-09,4.1284e-09,3.4035e-09,3.3225e-09,2.913e-09,2.6201e-09,1.8302e-09,1.7372e-09,1.3096e-09,1.0051e-09,4.1884e-10,3.5464e-10,3.2718e-10,2.6472e-10,2.1681e-10,2.0092e-10,1.7253e-10,1.546e-10,1.3488e-10,1.0756e-10,1.0743e-10,7.1316e-11,6.3926e-11,6.2481e-11,6.1725e-11,4.0525e-11,4.0137e-11,3.8463e-11,3.7247e-11,3.427e-11,2.9842e-11,2.6353e-11,1.5123e-11,4.5457e-12,3.1626e-12,3.0624e-12,2.982e-12,2.7357e-12,2.6075e-12,1.6492e-12,1.2169e-12,9.7439e-13,8.6008e-13,6.6216e-13,5.2967e-13,5.0808e-13,3.7068e-13,3.0985e-13,2.4876e-13,1.7448e-13,1.0901e-13,1.0577e-13,9.0125e-14,8.0626e-14,7.6688e-14,4.4825e-14,3.8668e-14,1.9657e-14,1.6274e-14,1.1654e-14,9.7389e-15,9.1878e-15,6.6834e-15,6.4134e-15,5.8596e-15,4.8084e-15,3.2925e-15 1,1.6137e-08,2.1657e-08,2.1977e-08,2.4006e-08,2.569e-08,2.8079e-08,3.3347e-08,5.0029e-08,6.4591e-08,6.7167e-08,8.2175e-08,8.4916e-08,9.6715e-08,1.3245e-07,1.4609e-07,1.5636e-07,2.0955e-07,2.2029e-07,2.3284e-07,2.8024e-07,2.8585e-07,2.8913e-07,3.3272e-07,3.6137e-07,3.6234e-07,4.2431e-07,4.3044e-07,4.6212e-07,4.6645e-07,4.7071e-07,7.5904e-07,1.1893e-06,1.2382e-06,1.4111e-06,1.585e-06,1.734e-06,1.9284e-06,2.1808e-06,2.704e-06,3.0416e-06,3.6784e-06,4.663e-06,4.7655e-06,4.9912e-06,5.2087e-06,6.4961e-06,6.4983e-06,1.092e-05,1.1344e-05,1.1586e-05,1.3501e-05,1.3653e-05,1.8379e-05,2.0635e-05,2.1649e-05,2.4044e-05,2.5696e-05,2.8785e-05,2.9813e-05,3.897e-05,4.5894e-05,7.608e-05,8.7201e-05,9.1251e-05,9.8951e-05,0.00012339,0.00012906,0.00013429,0.00016168,0.00019209,0.00020465,0.00021551,0.00025959,0.00033836,0.00044529,0.00053434,0.00055502,0.00077559,0.00086921,0.0009164,0.00093809,0.001031,0.0015106,0.001529,0.0016325,0.0018101,0.001847,0.002137,0.003166,0.0031823,0.003547,0.003687,0.0056802,0.0063153,0.0063645,0.0069896,0.0079243,0.0079438,0.0080243,0.0086479,0.0086537,0.0092567,0.0094998,0.013654,0.015936,0.016018,0.019022,0.019905,0.021343,0.022075,0.022517,0.023014,0.023178,0.023621,0.025482,0.025706,0.026174,0.026563,0.029661,0.033531,0.039132,0.041437,0.046689,0.053195,0.056149,0.057725,0.077678,0.080306,0.082282,0.086315,0.091667,0.096511,0.10059,0.10133,0.1018,0.10718,0.12236,0.12354,0.12999,0.14047,0.14652,0.14752,0.186,0.18644,0.19483,0.21196,0.21518,0.22749,0.23047,0.25197,0.26666,0.30195,0.30283,0.34634,0.35151,0.35317,0.38335,0.38531,0.39651,0.41148,0.4162,0.41979,0.43406,0.43644,0.43799,0.44948,0.45353,0.45458,0.46423,0.46772,0.48717,0.51993,0.52582,0.52739,0.54225,0.54842,0.57359,0.61791,0.63163,0.65327,0.66119,0.68306,0.70458,0.70633,0.70768,0.70784,0.71411,0.71464,0.73412,0.74296,0.75936,0.76008,0.76446,0.79199,0.79278,0.8055,0.81964,0.84397,0.84707,0.8558,0.85773,0.86256,0.87051,0.88232,0.88263,0.90764,0.93291,0.93538,0.93807,0.9389,0.95174,0.95894,0.97917,0.98004,0.98176,0.98448,0.99268,0.998,1,0.99982,0.99954,0.99826,0.99317,0.98989,0.9847,0.97473,0.96423,0.96215,0.93662,0.93282,0.93141,0.92437,0.92149,0.89686,0.88546,0.88208,0.88173,0.8745,0.86449,0.85975,0.85762,0.81854,0.81849,0.78073,0.73528,0.69172,0.65078,0.63294,0.62826,0.61731,0.60774,0.58521,0.58274,0.53965,0.52887,0.50744,0.48118,0.4655,0.46374,0.45114,0.44278,0.4225,0.39314,0.39043,0.37789,0.35854,0.34321,0.34251,0.29259,0.28488,0.28122,0.27197,0.26725,0.25991,0.2485,0.24399,0.23779,0.22805,0.21585,0.20464,0.20353,0.19046,0.18219,0.17513,0.15981,0.15316,0.15079,0.14262,0.14214,0.13867,0.13716,0.11835,0.11387,0.11216,0.10463,0.10044,0.09982,0.090614,0.074859,0.07063,0.068528,0.063834,0.063442,0.058511,0.057991,0.052155,0.048961,0.043046,0.042542,0.042074,0.041814,0.040975,0.040301,0.039894,0.035822,0.035016,0.028123,0.026095,0.024822,0.024333,0.020591,0.02053,0.019415,0.018913,0.016557,0.016487,0.016323,0.014762,0.014355,0.014212,0.013787,0.013254,0.012767,0.01252,0.010312,0.010241,0.0092368,0.0078947,0.0067951,0.0054963,0.0054795,0.0050768,0.0046082,0.0040499,0.0040441,0.0038659,0.0031205,0.0029675,0.0029511,0.0022786,0.0021513,0.002081,0.0018776,0.0016943,0.0013994,0.0013578,0.0011728,0.00084028,0.0008365,0.0008137,0.0007689,0.00073538,0.00069594,0.00065195,0.00035062,0.00029683,0.00022924,0.00018873,0.00018692,0.00018281,0.00013625,0.00012714,0.00012641,9.4953e-05,5.8018e-05,5.7106e-05,4.9277e-05,4.7791e-05,3.3914e-05,3.078e-05,2.4874e-05,2.224e-05,1.9641e-05,1.9169e-05,1.6523e-05,1.6095e-05,1.5895e-05,1.1299e-05,1.0194e-05,9.7606e-06,8.4714e-06,8.1002e-06,6.5902e-06,6.2858e-06,5.7138e-06,4.4982e-06,4.488e-06,3.9976e-06,3.844e-06,3.8438e-06,2.9721e-06,2.9479e-06,2.6496e-06,2.3662e-06,1.8462e-06,1.4735e-06,1.2519e-06,9.6421e-07,7.5574e-07,5.4936e-07,5.4224e-07,4.2328e-07,3.3295e-07,2.8878e-07,1.9666e-07,1.7555e-07,1.3924e-07,1.2131e-07,9.0815e-08,8.8065e-08,8.265e-08,7.1338e-08,5.2321e-08,3.7939e-08,3.1961e-08,2.6912e-08,2.4595e-08,2.4285e-08,2.0613e-08,1.7041e-08,9.4739e-09,8.0909e-09,7.4154e-09,6.1128e-09,6.1046e-09,5.0427e-09,4.9238e-09,4.3227e-09,3.8922e-09,2.7286e-09,2.5913e-09,1.959e-09,1.5075e-09,6.3353e-10,5.3727e-10,4.9607e-10,4.0217e-10,3.3001e-10,3.0605e-10,2.6318e-10,2.3607e-10,2.0622e-10,1.648e-10,1.646e-10,1.0969e-10,9.8421e-11,9.6218e-11,9.5063e-11,6.2655e-11,6.2061e-11,5.9495e-11,5.7631e-11,5.3065e-11,4.6268e-11,4.0904e-11,2.3591e-11,7.1669e-12,5.0021e-12,4.845e-12,4.7189e-12,4.3324e-12,4.131e-12,2.6231e-12,1.9406e-12,1.5568e-12,1.3756e-12,1.0614e-12,8.5065e-13,8.1626e-13,5.9709e-13,4.9985e-13,4.0203e-13,2.8282e-13,1.7738e-13,1.7215e-13,1.4688e-13,1.3152e-13,1.2515e-13,7.3469e-14,6.3453e-14,3.2432e-14,2.6891e-14,1.9307e-14,1.6158e-14,1.525e-14,1.1121e-14,1.0675e-14,9.7603e-15,8.0218e-15,5.509e-15 1,1.4398e-08,1.9341e-08,1.9628e-08,2.1446e-08,2.2956e-08,2.5098e-08,2.9823e-08,4.4801e-08,5.789e-08,6.0206e-08,7.3708e-08,7.6175e-08,8.6797e-08,1.1899e-07,1.3129e-07,1.4055e-07,1.8855e-07,1.9826e-07,2.0958e-07,2.5241e-07,2.5749e-07,2.6045e-07,2.9986e-07,3.2577e-07,3.2665e-07,3.8273e-07,3.8828e-07,4.1696e-07,4.2089e-07,4.2474e-07,6.8608e-07,1.0767e-06,1.1211e-06,1.2783e-06,1.4365e-06,1.572e-06,1.7489e-06,1.9787e-06,2.4555e-06,2.7632e-06,3.3442e-06,4.2431e-06,4.3369e-06,4.543e-06,4.7418e-06,5.9188e-06,5.9208e-06,9.97e-06,1.0358e-05,1.058e-05,1.2337e-05,1.2477e-05,1.6815e-05,1.8888e-05,1.982e-05,2.2023e-05,2.3542e-05,2.6384e-05,2.733e-05,3.5765e-05,4.2149e-05,7.0024e-05,8.0307e-05,8.4054e-05,9.1179e-05,0.00011381,0.00011906,0.00012391,0.00014931,0.00017753,0.0001892,0.00019928,0.00024025,0.00031354,0.00041318,0.00049625,0.00051555,0.00072164,0.00080921,0.00085336,0.00087367,0.00096062,0.0014103,0.0014276,0.0015248,0.0016916,0.0017263,0.0019989,0.0029678,0.0029831,0.003327,0.0034591,0.0053425,0.0059436,0.0059901,0.0065822,0.0074681,0.0074866,0.0075629,0.0081544,0.0081599,0.0087321,0.0089629,0.012912,0.015085,0.015164,0.018028,0.018871,0.020244,0.020942,0.021364,0.02184,0.021996,0.02242,0.024198,0.024413,0.024861,0.025233,0.028198,0.031905,0.037277,0.03949,0.044535,0.050793,0.053636,0.055154,0.074398,0.076936,0.078846,0.082744,0.08792,0.092608,0.096559,0.097275,0.097726,0.10294,0.11766,0.11881,0.12507,0.13526,0.14114,0.14211,0.1796,0.18003,0.18821,0.20494,0.20809,0.22013,0.22304,0.2441,0.2585,0.29315,0.29401,0.33683,0.34192,0.34355,0.37333,0.37526,0.38632,0.40111,0.40579,0.40934,0.42345,0.42581,0.42735,0.43872,0.44273,0.44378,0.45335,0.4568,0.47611,0.50866,0.51452,0.51608,0.53087,0.53701,0.56211,0.60639,0.62012,0.6418,0.64975,0.6717,0.69334,0.6951,0.69646,0.69662,0.70294,0.70347,0.72311,0.73202,0.74859,0.74932,0.75375,0.78164,0.78244,0.79535,0.80973,0.83452,0.83769,0.84662,0.8486,0.85354,0.86168,0.87381,0.87413,0.89992,0.92616,0.92874,0.93155,0.93242,0.9459,0.9535,0.97518,0.97613,0.97801,0.981,0.99022,0.99662,0.99982,1,0.99994,0.9992,0.9952,0.99239,0.98782,0.97875,0.96901,0.96707,0.94291,0.93928,0.93793,0.9312,0.92843,0.90468,0.89364,0.89035,0.89002,0.88299,0.87324,0.86862,0.86655,0.82829,0.82824,0.7911,0.74618,0.70297,0.66222,0.64443,0.63976,0.62882,0.61926,0.59673,0.59425,0.55106,0.54024,0.5187,0.49228,0.47648,0.47471,0.46201,0.45357,0.43309,0.40341,0.40067,0.38797,0.36836,0.35282,0.35211,0.30139,0.29354,0.28981,0.28039,0.27558,0.2681,0.25646,0.25186,0.24553,0.23558,0.22311,0.21165,0.21051,0.19713,0.18866,0.18142,0.16571,0.15887,0.15644,0.14804,0.14755,0.14398,0.14243,0.12307,0.11845,0.11669,0.10892,0.1046,0.10396,0.09445,0.078155,0.073775,0.071598,0.066732,0.066326,0.06121,0.060671,0.054611,0.051291,0.045139,0.044615,0.044127,0.043857,0.042983,0.042282,0.041858,0.037615,0.036776,0.029583,0.027464,0.026133,0.025622,0.021707,0.021643,0.020476,0.019949,0.01748,0.017407,0.017234,0.015597,0.015169,0.01502,0.014573,0.014013,0.013501,0.013242,0.01092,0.010846,0.0097882,0.0083741,0.0072143,0.0058427,0.005825,0.0053994,0.0049037,0.0043128,0.0043066,0.004118,0.003328,0.0031657,0.0031483,0.0024343,0.0022991,0.0022243,0.002008,0.001813,0.001499,0.0014546,0.0012573,0.00090242,0.00089838,0.00087402,0.00082613,0.00079029,0.00074811,0.00070105,0.00037816,0.0003204,0.00024775,0.00020415,0.0002022,0.00019778,0.0001476,0.00013777,0.00013698,0.00010303,6.3087e-05,6.21e-05,5.362e-05,5.201e-05,3.6961e-05,3.3559e-05,2.7143e-05,2.4281e-05,2.1454e-05,2.0941e-05,1.8061e-05,1.7595e-05,1.7377e-05,1.237e-05,1.1164e-05,1.0692e-05,9.2846e-06,8.8794e-06,7.23e-06,6.8973e-06,6.272e-06,4.9421e-06,4.931e-06,4.3941e-06,4.2259e-06,4.2257e-06,3.2706e-06,3.2441e-06,2.9169e-06,2.6061e-06,2.0352e-06,1.6257e-06,1.382e-06,1.0655e-06,8.3583e-07,6.0827e-07,6.0041e-07,4.691e-07,3.693e-07,3.2047e-07,2.1853e-07,1.9515e-07,1.5491e-07,1.3502e-07,1.0118e-07,9.8123e-08,9.2109e-08,7.9542e-08,5.8398e-08,4.2389e-08,3.573e-08,3.0102e-08,2.7519e-08,2.7173e-08,2.3077e-08,1.9089e-08,1.0632e-08,9.0845e-09,8.3283e-09,6.8695e-09,6.8603e-09,5.6702e-09,5.537e-09,4.8629e-09,4.38e-09,3.074e-09,2.9197e-09,2.2091e-09,1.7013e-09,7.1681e-10,6.0819e-10,5.6168e-10,4.5564e-10,3.741e-10,3.4702e-10,2.9854e-10,2.6787e-10,2.3409e-10,1.8719e-10,1.8697e-10,1.2473e-10,1.1195e-10,1.0945e-10,1.0814e-10,7.136e-11,7.0685e-11,6.777e-11,6.5653e-11,6.0465e-11,5.274e-11,4.6642e-11,2.694e-11,8.2107e-12,5.7361e-12,5.5564e-12,5.4122e-12,4.97e-12,4.7395e-12,3.0131e-12,2.2309e-12,1.7907e-12,1.5828e-12,1.2221e-12,9.7996e-13,9.4044e-13,6.8847e-13,5.7661e-13,4.6403e-13,3.2672e-13,2.0515e-13,1.9912e-13,1.6996e-13,1.5222e-13,1.4486e-13,8.5155e-14,7.3573e-14,3.7666e-14,3.1245e-14,2.245e-14,1.8796e-14,1.7743e-14,1.2949e-14,1.2431e-14,1.1368e-14,9.3474e-15,6.425e-15 1,1.3449e-08,1.8077e-08,1.8346e-08,2.0048e-08,2.1462e-08,2.3469e-08,2.7897e-08,4.194e-08,5.422e-08,5.6394e-08,6.9069e-08,7.1385e-08,8.136e-08,1.1161e-07,1.2317e-07,1.3188e-07,1.7702e-07,1.8615e-07,1.968e-07,2.3711e-07,2.4189e-07,2.4468e-07,2.8178e-07,3.0619e-07,3.0701e-07,3.5984e-07,3.6507e-07,3.9209e-07,3.9579e-07,3.9942e-07,6.4584e-07,1.0146e-06,1.0565e-06,1.205e-06,1.3544e-06,1.4825e-06,1.6497e-06,1.867e-06,2.3179e-06,2.6091e-06,3.159e-06,4.0103e-06,4.0991e-06,4.2944e-06,4.4827e-06,5.5983e-06,5.6002e-06,9.4417e-06,9.8103e-06,1.0021e-05,1.1689e-05,1.1822e-05,1.5944e-05,1.7914e-05,1.8801e-05,2.0895e-05,2.2341e-05,2.5045e-05,2.5945e-05,3.3975e-05,4.0056e-05,6.6633e-05,7.6446e-05,8.0022e-05,8.6824e-05,0.00010843,0.00011345,0.00011809,0.00014237,0.00016935,0.00018051,0.00019016,0.00022937,0.00029957,0.00039508,0.00047476,0.00049328,0.00069115,0.00077529,0.00081772,0.00083723,0.00092083,0.0013535,0.0013701,0.0014637,0.0016244,0.0016578,0.0019204,0.0028551,0.0028698,0.0032019,0.0033294,0.0051499,0.0057314,0.0057765,0.0063496,0.0072074,0.0072253,0.0072993,0.0078723,0.0078777,0.0084321,0.0086558,0.012487,0.014597,0.014674,0.017457,0.018277,0.019612,0.020291,0.020702,0.021164,0.021317,0.021729,0.02346,0.023669,0.024105,0.024467,0.027355,0.030968,0.036207,0.038366,0.043291,0.049404,0.052182,0.053666,0.072496,0.074982,0.076853,0.080672,0.085745,0.090341,0.094215,0.094918,0.095361,0.10047,0.11493,0.11605,0.1222,0.13222,0.138,0.13896,0.17585,0.17628,0.18434,0.20084,0.20394,0.21582,0.21869,0.23948,0.25371,0.28797,0.28882,0.33122,0.33627,0.33789,0.36741,0.36933,0.38031,0.39499,0.39963,0.40316,0.41718,0.41952,0.42105,0.43236,0.43635,0.43739,0.4469,0.45034,0.46955,0.50197,0.50781,0.50937,0.52411,0.53024,0.55528,0.59952,0.61325,0.63494,0.6429,0.6649,0.68661,0.68837,0.68973,0.68989,0.69624,0.69677,0.71649,0.72545,0.74211,0.74285,0.74731,0.77539,0.7762,0.78922,0.80374,0.8288,0.83201,0.84105,0.84305,0.84806,0.85632,0.86863,0.86895,0.89519,0.922,0.92464,0.92753,0.92841,0.94227,0.95011,0.97264,0.97364,0.97561,0.97876,0.98858,0.99563,0.99954,0.99994,1,0.99959,0.99624,0.99372,0.98951,0.98099,0.97171,0.96985,0.94652,0.943,0.94169,0.93513,0.93243,0.90923,0.8984,0.89517,0.89484,0.88794,0.87835,0.87381,0.87176,0.83402,0.83397,0.79721,0.75263,0.70965,0.66903,0.65127,0.64661,0.63569,0.62613,0.6036,0.60112,0.55789,0.54704,0.52545,0.49894,0.48307,0.48129,0.46853,0.46005,0.43946,0.40959,0.40683,0.39405,0.37429,0.35862,0.35789,0.30671,0.29877,0.29501,0.28549,0.28062,0.27306,0.26128,0.25662,0.25022,0.24015,0.22752,0.2159,0.21475,0.20118,0.19259,0.18524,0.16929,0.16235,0.15989,0.15135,0.15085,0.14722,0.14564,0.12595,0.12124,0.11945,0.11154,0.10714,0.10649,0.096798,0.080175,0.075704,0.073481,0.06851,0.068095,0.062868,0.062317,0.05612,0.052724,0.046428,0.045891,0.045392,0.045115,0.04422,0.043501,0.043068,0.038721,0.03786,0.030484,0.02831,0.026944,0.026419,0.022397,0.022332,0.021132,0.020591,0.018052,0.017976,0.017799,0.016114,0.015674,0.01552,0.01506,0.014484,0.013957,0.01369,0.011298,0.011221,0.010131,0.0086723,0.0074752,0.0060586,0.0060403,0.0056004,0.005088,0.0044769,0.0044705,0.0042753,0.0034577,0.0032896,0.0032716,0.0025317,0.0023915,0.002314,0.0020897,0.0018873,0.0015614,0.0015154,0.0013104,0.00094148,0.00093727,0.00091193,0.00086211,0.00082482,0.00078093,0.00073195,0.00039554,0.00033528,0.00025944,0.0002139,0.00021186,0.00020724,0.00015479,0.0001445,0.00014368,0.00010815,6.6307e-05,6.5271e-05,5.638e-05,5.4691e-05,3.89e-05,3.5328e-05,2.8589e-05,2.5581e-05,2.261e-05,2.2071e-05,1.9042e-05,1.8551e-05,1.8323e-05,1.3054e-05,1.1785e-05,1.1287e-05,9.8046e-06,9.3776e-06,7.6393e-06,7.2886e-06,6.6293e-06,5.2265e-06,5.2148e-06,4.6482e-06,4.4707e-06,4.4704e-06,3.4621e-06,3.4341e-06,3.0885e-06,2.7601e-06,2.1566e-06,1.7235e-06,1.4657e-06,1.1306e-06,8.8741e-07,6.4625e-07,6.3792e-07,4.9866e-07,3.9277e-07,3.4094e-07,2.3267e-07,2.0782e-07,1.6504e-07,1.439e-07,1.0789e-07,1.0464e-07,9.8239e-08,8.4861e-08,6.2341e-08,4.5279e-08,3.8179e-08,3.2176e-08,2.942e-08,2.9051e-08,2.4679e-08,2.0423e-08,1.1387e-08,9.7325e-09,8.9238e-09,7.3632e-09,7.3535e-09,6.08e-09,5.9374e-09,5.2158e-09,4.6988e-09,3.2998e-09,3.1345e-09,2.3728e-09,1.8282e-09,7.7146e-10,6.5475e-10,6.0476e-10,4.9077e-10,4.0308e-10,3.7394e-10,3.2179e-10,2.8878e-10,2.5242e-10,2.0193e-10,2.0169e-10,1.3464e-10,1.2087e-10,1.1818e-10,1.1677e-10,7.7102e-11,7.6375e-11,7.323e-11,7.0946e-11,6.5349e-11,5.7013e-11,5.0431e-11,2.9155e-11,8.9026e-12,6.223e-12,6.0284e-12,5.8721e-12,5.393e-12,5.1434e-12,3.2722e-12,2.4238e-12,1.9462e-12,1.7206e-12,1.329e-12,1.0661e-12,1.0231e-12,7.4936e-13,6.2778e-13,5.0537e-13,3.5602e-13,2.237e-13,2.1713e-13,1.8537e-13,1.6606e-13,1.5804e-13,9.2975e-14,8.0346e-14,4.1173e-14,3.4163e-14,2.4559e-14,2.0567e-14,1.9417e-14,1.4176e-14,1.361e-14,1.2448e-14,1.0238e-14,7.041e-15 1,1.1306e-08,1.5218e-08,1.5445e-08,1.6886e-08,1.8083e-08,1.9782e-08,2.3534e-08,3.5452e-08,4.5891e-08,4.774e-08,5.8529e-08,6.0501e-08,6.9001e-08,9.4805e-08,1.0468e-07,1.1212e-07,1.5072e-07,1.5854e-07,1.6766e-07,2.022e-07,2.063e-07,2.0869e-07,2.4051e-07,2.6145e-07,2.6216e-07,3.0753e-07,3.1202e-07,3.3524e-07,3.3842e-07,3.4154e-07,5.5367e-07,8.7192e-07,9.0815e-07,1.0365e-06,1.1658e-06,1.2767e-06,1.4216e-06,1.6099e-06,2.0012e-06,2.2541e-06,2.7321e-06,3.4732e-06,3.5505e-06,3.7207e-06,3.8848e-06,4.8579e-06,4.8595e-06,8.2183e-06,8.5411e-06,8.7256e-06,1.0187e-05,1.0304e-05,1.3922e-05,1.5654e-05,1.6433e-05,1.8276e-05,1.9548e-05,2.193e-05,2.2723e-05,2.9806e-05,3.5178e-05,5.8712e-05,6.742e-05,7.0595e-05,7.6637e-05,9.5854e-05,0.00010032,0.00010445,0.00012608,0.00015016,0.00016013,0.00016875,0.00020381,0.00026669,0.00035242,0.00042406,0.00044072,0.00061906,0.00069503,0.00073337,0.00075101,0.0008266,0.0012186,0.0012338,0.0013187,0.0014647,0.001495,0.001734,0.0025863,0.0025998,0.0029033,0.0030199,0.0046889,0.0052233,0.0052648,0.005792,0.0065821,0.0065986,0.0066668,0.0071952,0.0072001,0.0077117,0.0079182,0.011463,0.01342,0.013492,0.016078,0.016841,0.018085,0.018718,0.019101,0.019532,0.019674,0.020058,0.021674,0.021869,0.022276,0.022614,0.025313,0.028695,0.033607,0.035634,0.040264,0.046019,0.048639,0.050039,0.067845,0.070201,0.071975,0.075599,0.080416,0.084784,0.088469,0.089137,0.089559,0.094427,0.10821,0.10928,0.11516,0.12473,0.13027,0.13119,0.1666,0.16701,0.17477,0.19067,0.19367,0.20514,0.20791,0.22802,0.24181,0.27508,0.27591,0.31723,0.32216,0.32374,0.35261,0.35449,0.36524,0.37965,0.3842,0.38767,0.40145,0.40375,0.40525,0.41638,0.42031,0.42133,0.4307,0.43409,0.45305,0.4851,0.49088,0.49243,0.50705,0.51312,0.538,0.58208,0.5958,0.61752,0.6255,0.64758,0.66941,0.67119,0.67257,0.67272,0.67912,0.67966,0.69957,0.70863,0.72551,0.72626,0.73078,0.75933,0.76015,0.77344,0.78828,0.81399,0.81728,0.82659,0.82866,0.83382,0.84236,0.85511,0.85545,0.88279,0.911,0.9138,0.91686,0.9178,0.93258,0.94102,0.96567,0.96679,0.96899,0.97254,0.98388,0.99254,0.99826,0.9992,0.99959,1,0.99832,0.99652,0.99324,0.98613,0.97802,0.97637,0.95519,0.95194,0.95073,0.94464,0.94213,0.92033,0.91006,0.907,0.90668,0.9001,0.89095,0.88659,0.88463,0.84825,0.8482,0.81246,0.76881,0.72646,0.68622,0.66858,0.66394,0.65306,0.64354,0.62105,0.61857,0.57526,0.56437,0.54265,0.51594,0.49992,0.49812,0.48522,0.47664,0.45578,0.42546,0.42266,0.40965,0.38953,0.37354,0.37281,0.32044,0.3123,0.30844,0.29867,0.29366,0.28589,0.27378,0.26898,0.26239,0.252,0.23896,0.22696,0.22577,0.21173,0.20283,0.19521,0.17865,0.17144,0.16887,0.15998,0.15946,0.15568,0.15404,0.13349,0.12857,0.1267,0.11842,0.11381,0.11313,0.10296,0.085492,0.080783,0.07844,0.073198,0.07276,0.067241,0.066659,0.060106,0.056511,0.049837,0.049267,0.048737,0.048444,0.047494,0.046731,0.04627,0.04165,0.040735,0.032878,0.030557,0.029098,0.028537,0.024235,0.024165,0.02288,0.0223,0.019577,0.019495,0.019305,0.017495,0.017022,0.016857,0.016362,0.015742,0.015175,0.014887,0.012309,0.012226,0.011049,0.0094721,0.0081759,0.0066391,0.0066193,0.0061413,0.0055843,0.0049191,0.0049121,0.0046995,0.0038077,0.0036241,0.0036044,0.0027953,0.0026418,0.0025569,0.0023109,0.0020889,0.0017308,0.0016802,0.0014546,0.0010478,0.0010431,0.0010151,0.00096009,0.00091887,0.00087033,0.00081615,0.00044306,0.000376,0.00029149,0.00024065,0.00023837,0.00023321,0.00017453,0.00016302,0.00016209,0.00012224,7.5193e-05,7.4026e-05,6.4003e-05,6.2098e-05,4.4265e-05,4.0226e-05,3.2596e-05,2.9187e-05,2.5816e-05,2.5205e-05,2.1766e-05,2.1208e-05,2.0948e-05,1.4956e-05,1.351e-05,1.2942e-05,1.1252e-05,1.0765e-05,8.7803e-06,8.3796e-06,7.6259e-06,6.0206e-06,6.0072e-06,5.3581e-06,5.1546e-06,5.1543e-06,3.9976e-06,3.9654e-06,3.5685e-06,3.1911e-06,2.4969e-06,1.998e-06,1.7007e-06,1.3137e-06,1.0325e-06,7.532e-07,7.4355e-07,5.8199e-07,4.59e-07,3.9872e-07,2.7264e-07,2.4367e-07,1.9375e-07,1.6904e-07,1.2693e-07,1.2312e-07,1.1563e-07,9.9956e-08,7.3544e-08,5.3501e-08,4.515e-08,3.8083e-08,3.4836e-08,3.4401e-08,2.9247e-08,2.4225e-08,1.3545e-08,1.1586e-08,1.0627e-08,8.7768e-09,8.7652e-09,7.2537e-09,7.0844e-09,6.2271e-09,5.6126e-09,3.948e-09,3.7511e-09,2.8432e-09,2.1932e-09,9.2908e-10,7.891e-10,7.2911e-10,5.9222e-10,4.8682e-10,4.5178e-10,3.8903e-10,3.4929e-10,3.0549e-10,2.4461e-10,2.4432e-10,1.6339e-10,1.4675e-10,1.4349e-10,1.4178e-10,9.3785e-11,9.2904e-11,8.9094e-11,8.6326e-11,7.9544e-11,6.9437e-11,6.1452e-11,3.5607e-11,1.0926e-11,7.6481e-12,7.4099e-12,7.2185e-12,6.6319e-12,6.3261e-12,4.0318e-12,2.99e-12,2.403e-12,2.1254e-12,1.6433e-12,1.3193e-12,1.2664e-12,9.2866e-13,7.7851e-13,6.2723e-13,4.4246e-13,2.785e-13,2.7036e-13,2.3095e-13,2.0697e-13,1.9702e-13,1.1613e-13,1.0041e-13,5.1583e-14,4.283e-14,3.0827e-14,2.5833e-14,2.4392e-14,1.783e-14,1.712e-14,1.5663e-14,1.2892e-14,8.8776e-15 1,7.9467e-09,1.0727e-08,1.0889e-08,1.1915e-08,1.2768e-08,1.398e-08,1.666e-08,2.5198e-08,3.2701e-08,3.4032e-08,4.1808e-08,4.3232e-08,4.9371e-08,6.8053e-08,7.5216e-08,8.0619e-08,1.0871e-07,1.144e-07,1.2106e-07,1.4628e-07,1.4928e-07,1.5103e-07,1.7431e-07,1.8966e-07,1.9018e-07,2.2346e-07,2.2676e-07,2.4383e-07,2.4616e-07,2.4846e-07,4.0486e-07,6.4074e-07,6.6766e-07,7.6316e-07,8.5944e-07,9.4217e-07,1.0503e-06,1.1911e-06,1.4843e-06,1.6741e-06,2.0336e-06,2.5924e-06,2.6508e-06,2.7793e-06,2.9034e-06,3.6401e-06,3.6413e-06,6.1966e-06,6.4429e-06,6.5838e-06,7.7012e-06,7.7903e-06,1.0565e-05,1.1896e-05,1.2495e-05,1.3915e-05,1.4896e-05,1.6735e-05,1.7348e-05,2.2834e-05,2.7006e-05,4.5374e-05,5.2198e-05,5.469e-05,5.9435e-05,7.4563e-05,7.8086e-05,8.1343e-05,9.8443e-05,0.00011752,0.00012544,0.00013228,0.00016019,0.00021042,0.00027918,0.00033684,0.00035028,0.00049452,0.00055618,0.00058734,0.00060168,0.00066321,0.0009837,0.0009961,0.0010658,0.0011858,0.0012108,0.0014076,0.0021135,0.0021247,0.0023771,0.0024743,0.0038712,0.0043208,0.0043556,0.0048001,0.0054675,0.0054815,0.0055392,0.0059866,0.0059907,0.0064246,0.0065999,0.0096217,0.0113,0.011361,0.013587,0.014245,0.015319,0.015866,0.016197,0.016571,0.016694,0.017027,0.018428,0.018597,0.01895,0.019244,0.021593,0.024544,0.028846,0.030626,0.034701,0.039784,0.042103,0.043344,0.059205,0.061313,0.062902,0.066151,0.070478,0.074409,0.077729,0.078332,0.078712,0.083107,0.095591,0.096565,0.1019,0.11063,0.11568,0.11652,0.14902,0.1494,0.15656,0.17127,0.17405,0.1847,0.18728,0.20603,0.21892,0.25018,0.25096,0.29005,0.29473,0.29623,0.32374,0.32553,0.33582,0.34962,0.35399,0.35731,0.37056,0.37278,0.37423,0.38496,0.38875,0.38974,0.3988,0.40208,0.42045,0.45165,0.4573,0.4588,0.47311,0.47906,0.5035,0.54708,0.56071,0.58235,0.59033,0.61246,0.63445,0.63624,0.63763,0.63779,0.64425,0.6448,0.66498,0.67419,0.69141,0.69217,0.69679,0.72612,0.72697,0.74069,0.75609,0.78293,0.7864,0.79619,0.79836,0.80382,0.81285,0.82642,0.82678,0.85615,0.88697,0.89007,0.89346,0.8945,0.91105,0.92063,0.94939,0.95073,0.95338,0.95771,0.972,0.98386,0.99317,0.9952,0.99624,0.99832,1,0.99968,0.99829,0.99406,0.98839,0.98717,0.97048,0.9678,0.96679,0.9617,0.95957,0.94075,0.9317,0.92898,0.9287,0.92282,0.91459,0.91065,0.90888,0.87548,0.87543,0.84199,0.80049,0.75966,0.72043,0.70311,0.69854,0.68782,0.67841,0.65612,0.65365,0.61041,0.59948,0.57762,0.55061,0.53436,0.53253,0.5194,0.51065,0.48933,0.4582,0.45532,0.44191,0.42111,0.40454,0.40377,0.34916,0.34062,0.33657,0.3263,0.32104,0.31285,0.30006,0.29499,0.28802,0.27701,0.26316,0.25038,0.24911,0.23412,0.2246,0.21642,0.19862,0.19084,0.18807,0.17847,0.1779,0.17382,0.17204,0.14971,0.14436,0.14231,0.13327,0.12823,0.12747,0.11632,0.097064,0.091854,0.089257,0.08344,0.082953,0.076813,0.076164,0.068853,0.064832,0.057347,0.056707,0.056112,0.055781,0.054713,0.053854,0.053336,0.048128,0.047094,0.038195,0.035556,0.033894,0.033255,0.028341,0.028261,0.026789,0.026124,0.022996,0.022903,0.022683,0.020599,0.020053,0.019862,0.019291,0.018574,0.017918,0.017585,0.014595,0.014498,0.013128,0.011288,0.0097702,0.0079644,0.0079411,0.0073778,0.0067201,0.005933,0.0059248,0.0056728,0.0046132,0.0043946,0.0043711,0.0034048,0.0032208,0.003119,0.0028237,0.0025567,0.0021249,0.0020638,0.0017909,0.0012967,0.0012911,0.0012569,0.0011898,0.0011395,0.0010802,0.001014,0.00055555,0.00047261,0.00036773,0.00030442,0.00030158,0.00029514,0.00022179,0.00020735,0.00020619,0.0001561,9.6653e-05,9.5174e-05,8.2446e-05,8.0024e-05,5.7296e-05,5.2132e-05,4.2358e-05,3.7981e-05,3.3647e-05,3.286e-05,2.8429e-05,2.771e-05,2.7375e-05,1.9625e-05,1.775e-05,1.7013e-05,1.4817e-05,1.4183e-05,1.1597e-05,1.1074e-05,1.0089e-05,7.9876e-06,7.97e-06,7.1184e-06,6.8512e-06,6.8509e-06,5.3292e-06,5.2868e-06,4.7635e-06,4.2652e-06,3.3467e-06,2.6848e-06,2.2895e-06,1.7737e-06,1.3977e-06,1.0231e-06,1.0102e-06,7.928e-07,6.2686e-07,5.4535e-07,3.7442e-07,3.3503e-07,2.6703e-07,2.3331e-07,1.7571e-07,1.7049e-07,1.6022e-07,1.3871e-07,1.0237e-07,7.4714e-08,6.3158e-08,5.3363e-08,4.8856e-08,4.8252e-08,4.1089e-08,3.4097e-08,1.9173e-08,1.6424e-08,1.5078e-08,1.2475e-08,1.2459e-08,1.0329e-08,1.009e-08,8.8798e-09,8.0113e-09,5.6539e-09,5.3745e-09,4.0842e-09,3.158e-09,1.3483e-09,1.1468e-09,1.0604e-09,8.629e-10,7.1056e-10,6.5985e-10,5.6894e-10,5.1132e-10,4.4772e-10,3.592e-10,3.5878e-10,2.4077e-10,2.1644e-10,2.1168e-10,2.0919e-10,1.3886e-10,1.3757e-10,1.3197e-10,1.2791e-10,1.1794e-10,1.0307e-10,9.1315e-11,5.3154e-11,1.647e-11,1.1563e-11,1.1205e-11,1.0918e-11,1.0038e-11,9.5785e-12,6.1269e-12,4.5546e-12,3.6667e-12,3.2463e-12,2.5151e-12,2.0227e-12,1.9422e-12,1.4277e-12,1.1985e-12,9.6722e-13,6.8413e-13,4.3215e-13,4.1961e-13,3.5888e-13,3.2188e-13,3.0652e-13,1.814e-13,1.5702e-13,8.1062e-14,6.74e-14,4.8628e-14,4.0803e-14,3.8545e-14,2.8239e-14,2.7123e-14,2.483e-14,2.0466e-14,1.4132e-14 1,6.7997e-09,9.1903e-09,9.3295e-09,1.0212e-08,1.0947e-08,1.199e-08,1.4299e-08,2.1666e-08,2.815e-08,2.9301e-08,3.6028e-08,3.726e-08,4.2576e-08,5.877e-08,6.4984e-08,6.9675e-08,9.4076e-08,9.9028e-08,1.0482e-07,1.2676e-07,1.2937e-07,1.3089e-07,1.5117e-07,1.6454e-07,1.65e-07,1.9402e-07,1.969e-07,2.1179e-07,2.1383e-07,2.1583e-07,3.5249e-07,5.5907e-07,5.8267e-07,6.6644e-07,7.5095e-07,8.236e-07,9.1863e-07,1.0424e-06,1.3003e-06,1.4675e-06,1.7844e-06,2.2774e-06,2.329e-06,2.4425e-06,2.5521e-06,3.2034e-06,3.2045e-06,5.4681e-06,5.6867e-06,5.8117e-06,6.8036e-06,6.8827e-06,9.3488e-06,1.0533e-05,1.1067e-05,1.2332e-05,1.3206e-05,1.4846e-05,1.5393e-05,2.0291e-05,2.4021e-05,4.0476e-05,4.66e-05,4.8838e-05,5.3101e-05,6.6704e-05,6.9875e-05,7.2807e-05,8.8212e-05,0.00010542,0.00011256,0.00011875,0.00014397,0.00018942,0.00025176,0.00030412,0.00031633,0.00044759,0.00050379,0.0005322,0.00054528,0.00060144,0.00089446,0.00090581,0.00096965,0.0010796,0.0011025,0.0012831,0.0019321,0.0019424,0.002175,0.0022646,0.003555,0.0039712,0.0040034,0.0044153,0.0050344,0.0050474,0.0051009,0.0055163,0.0055201,0.0059232,0.0060862,0.0089002,0.010467,0.010524,0.012605,0.013221,0.014227,0.01474,0.01505,0.0154,0.015515,0.015828,0.017142,0.017301,0.017633,0.017909,0.020116,0.022892,0.026946,0.028624,0.032472,0.03728,0.039476,0.040651,0.055708,0.057713,0.059225,0.062319,0.066441,0.070189,0.073357,0.073932,0.074295,0.078492,0.090429,0.091361,0.096473,0.10483,0.10968,0.11049,0.14175,0.14212,0.14902,0.16322,0.1659,0.1762,0.17869,0.19685,0.20935,0.23972,0.24048,0.27856,0.28313,0.2846,0.31149,0.31324,0.32331,0.33683,0.34112,0.34438,0.35738,0.35956,0.36098,0.37153,0.37525,0.37623,0.38513,0.38836,0.40646,0.43723,0.44281,0.4443,0.45844,0.46433,0.48854,0.53181,0.54538,0.56695,0.5749,0.59702,0.61902,0.62081,0.6222,0.62237,0.62884,0.62939,0.64964,0.6589,0.67622,0.67699,0.68165,0.71125,0.7121,0.72598,0.74158,0.76886,0.77238,0.78236,0.78458,0.79014,0.79937,0.81326,0.81363,0.8438,0.87569,0.87891,0.88244,0.88352,0.9008,0.91085,0.94132,0.94276,0.9456,0.95025,0.96581,0.97904,0.98989,0.99239,0.99372,0.99652,0.99968,1,0.99946,0.99651,0.99192,0.9909,0.97624,0.97381,0.9729,0.96825,0.96631,0.94886,0.94036,0.9378,0.93754,0.93199,0.92419,0.92044,0.91875,0.88677,0.88672,0.85438,0.81394,0.77389,0.73521,0.71807,0.71355,0.70292,0.69358,0.67142,0.66897,0.62585,0.61493,0.59305,0.56597,0.54964,0.5478,0.53459,0.52578,0.5043,0.47286,0.46995,0.45639,0.43532,0.41851,0.41773,0.36218,0.35348,0.34935,0.33887,0.33349,0.32513,0.31206,0.30687,0.29973,0.28845,0.27426,0.26114,0.25983,0.24443,0.23463,0.22621,0.20786,0.19984,0.19697,0.18706,0.18647,0.18224,0.1804,0.15728,0.15173,0.14961,0.14021,0.13497,0.13419,0.12259,0.10252,0.09708,0.094367,0.088285,0.087776,0.081349,0.08067,0.073008,0.06879,0.060928,0.060255,0.05963,0.059282,0.058159,0.057256,0.05671,0.051227,0.050138,0.04075,0.037962,0.036205,0.035529,0.030325,0.030241,0.02868,0.027975,0.024655,0.024556,0.024323,0.022107,0.021526,0.021323,0.020715,0.019952,0.019254,0.0189,0.015712,0.015608,0.014146,0.012179,0.010554,0.0086179,0.0085929,0.0079881,0.0072815,0.0064351,0.0064263,0.006155,0.0050136,0.0047778,0.0047525,0.0037088,0.0035099,0.0033998,0.0030802,0.002791,0.0023228,0.0022564,0.00196,0.0014224,0.0014163,0.0013791,0.001306,0.0012511,0.0011865,0.0011142,0.00061293,0.00052197,0.0004068,0.00033717,0.00033405,0.00032696,0.00024614,0.00023021,0.00022893,0.00017362,0.00010781,0.00010616,9.2045e-05,8.9357e-05,6.4103e-05,5.8356e-05,4.7472e-05,4.2593e-05,3.7758e-05,3.688e-05,3.1933e-05,3.113e-05,3.0755e-05,2.2089e-05,1.9989e-05,1.9164e-05,1.6703e-05,1.5992e-05,1.309e-05,1.2502e-05,1.1396e-05,9.0339e-06,9.014e-06,8.0557e-06,7.7549e-06,7.7544e-06,6.0399e-06,5.9922e-06,5.4019e-06,4.8396e-06,3.8021e-06,3.0535e-06,2.606e-06,2.0214e-06,1.5948e-06,1.1692e-06,1.1545e-06,9.0711e-07,7.1804e-07,6.251e-07,4.2993e-07,3.849e-07,3.071e-07,2.6849e-07,2.0246e-07,1.9648e-07,1.8469e-07,1.6e-07,1.1825e-07,8.6424e-08,7.3111e-08,6.1819e-08,5.6619e-08,5.5922e-08,4.7655e-08,3.9577e-08,2.231e-08,1.9123e-08,1.7562e-08,1.4542e-08,1.4523e-08,1.205e-08,1.1773e-08,1.0366e-08,9.3564e-09,6.6127e-09,6.2873e-09,4.7832e-09,3.7024e-09,1.5861e-09,1.35e-09,1.2486e-09,1.0169e-09,8.3803e-10,7.7845e-10,6.7159e-10,6.0382e-10,5.2899e-10,4.2477e-10,4.2427e-10,2.8516e-10,2.5645e-10,2.5083e-10,2.4788e-10,1.648e-10,1.6328e-10,1.5666e-10,1.5185e-10,1.4006e-10,1.2247e-10,1.0855e-10,6.3312e-11,1.9701e-11,1.3849e-11,1.3423e-11,1.308e-11,1.2029e-11,1.148e-11,7.3551e-12,5.4734e-12,4.4097e-12,3.9059e-12,3.0288e-12,2.4376e-12,2.3409e-12,1.7226e-12,1.447e-12,1.1686e-12,8.2755e-13,5.2356e-13,5.0841e-13,4.3506e-13,3.9036e-13,3.7178e-13,2.2041e-13,1.9087e-13,9.8757e-14,8.2162e-14,5.9342e-14,4.9822e-14,4.7073e-14,3.4521e-14,3.3161e-14,3.0367e-14,2.5045e-14,1.7314e-14 1,5.5505e-09,7.5142e-09,7.6286e-09,8.3546e-09,8.9588e-09,9.8178e-09,1.172e-08,1.7799e-08,2.3158e-08,2.411e-08,2.9681e-08,3.0702e-08,3.5108e-08,4.8551e-08,5.3715e-08,5.7615e-08,7.7928e-08,8.2055e-08,8.688e-08,1.0519e-07,1.0736e-07,1.0863e-07,1.2557e-07,1.3675e-07,1.3713e-07,1.614e-07,1.6381e-07,1.7627e-07,1.7798e-07,1.7966e-07,2.9428e-07,4.6806e-07,4.8795e-07,5.5856e-07,6.2986e-07,6.9119e-07,7.7147e-07,8.7612e-07,1.0944e-06,1.2361e-06,1.5049e-06,1.9237e-06,1.9675e-06,2.0641e-06,2.1573e-06,2.7118e-06,2.7128e-06,4.6455e-06,4.8324e-06,4.9394e-06,5.7886e-06,5.8563e-06,7.9713e-06,8.9887e-06,9.4477e-06,1.0535e-05,1.1287e-05,1.2699e-05,1.317e-05,1.7395e-05,2.0617e-05,3.4872e-05,4.0191e-05,4.2135e-05,4.5842e-05,5.7683e-05,6.0446e-05,6.3003e-05,7.6444e-05,9.1482e-05,9.7729e-05,0.00010314,0.00012524,0.00016513,0.00021998,0.00026615,0.00027692,0.00039296,0.00044273,0.00046792,0.00047953,0.00052935,0.00078997,0.00080008,0.00085699,0.00095507,0.00097551,0.0011369,0.0017184,0.0017276,0.0019365,0.002017,0.0031802,0.0035564,0.0035856,0.0039583,0.0045193,0.0045311,0.0045796,0.0049565,0.0049601,0.0053261,0.0054741,0.0080373,0.0094685,0.0095207,0.011426,0.011991,0.012914,0.013385,0.01367,0.013992,0.014098,0.014385,0.015594,0.01574,0.016045,0.016299,0.018333,0.020895,0.024644,0.026199,0.029768,0.034235,0.036278,0.037373,0.051431,0.053309,0.054725,0.057624,0.061492,0.065011,0.067989,0.06853,0.068871,0.072819,0.08407,0.08495,0.089777,0.097683,0.10227,0.10304,0.13273,0.13307,0.13965,0.15319,0.15576,0.1656,0.16798,0.18537,0.19737,0.22659,0.22732,0.2641,0.26852,0.26994,0.29601,0.29772,0.3075,0.32065,0.32482,0.328,0.34067,0.34279,0.34418,0.35447,0.35811,0.35906,0.36777,0.37092,0.38863,0.41883,0.42431,0.42578,0.43969,0.44549,0.46936,0.51217,0.52562,0.54706,0.55497,0.57702,0.599,0.6008,0.60219,0.60235,0.60883,0.60938,0.62968,0.63898,0.65641,0.65718,0.66187,0.69175,0.69261,0.70667,0.7225,0.75027,0.75386,0.76406,0.76632,0.77202,0.78148,0.79574,0.79613,0.82728,0.86045,0.86382,0.86751,0.86866,0.88683,0.89746,0.93007,0.93162,0.93471,0.93977,0.95691,0.97188,0.9847,0.98782,0.98951,0.99324,0.99829,0.99946,1,0.99872,0.99556,0.99479,0.98279,0.98071,0.97992,0.97587,0.97416,0.95854,0.95079,0.94844,0.9482,0.94309,0.93587,0.93239,0.93082,0.90074,0.9007,0.86988,0.83091,0.79197,0.75408,0.73722,0.73277,0.72228,0.71305,0.69112,0.68869,0.64582,0.63493,0.61307,0.58593,0.56954,0.56769,0.55441,0.54554,0.52388,0.49209,0.48914,0.47539,0.454,0.43691,0.43611,0.37942,0.37052,0.36628,0.35554,0.35002,0.34143,0.328,0.32267,0.31532,0.3037,0.28905,0.2755,0.27415,0.25821,0.24806,0.23933,0.22027,0.21192,0.20894,0.1986,0.19799,0.19358,0.19166,0.1675,0.16168,0.15946,0.14961,0.14411,0.14329,0.1311,0.10994,0.1042,0.10133,0.094893,0.094354,0.087545,0.086824,0.078692,0.074209,0.065841,0.065124,0.064457,0.064087,0.062889,0.061925,0.061344,0.05549,0.054326,0.044275,0.041283,0.039397,0.03867,0.033073,0.032982,0.0313,0.03054,0.026957,0.02685,0.026598,0.024203,0.023575,0.023355,0.022697,0.021871,0.021114,0.02073,0.01727,0.017158,0.015568,0.013425,0.011653,0.0095361,0.0095086,0.0088463,0.0080717,0.0071427,0.0071329,0.0068349,0.0055791,0.0053193,0.0052914,0.0041396,0.0039197,0.0037979,0.0034443,0.0031238,0.0026044,0.0025306,0.0022012,0.0016022,0.0015953,0.0015538,0.0014721,0.0014109,0.0013386,0.0012578,0.00069552,0.00059312,0.00046322,0.00038454,0.000381,0.00037298,0.00028144,0.00026337,0.00026192,0.00019907,0.00012407,0.0001222,0.00010606,0.00010299,7.4069e-05,6.7476e-05,5.4976e-05,4.9365e-05,4.38e-05,4.2788e-05,3.7088e-05,3.6161e-05,3.5729e-05,2.5723e-05,2.3294e-05,2.2339e-05,1.9489e-05,1.8665e-05,1.5299e-05,1.4618e-05,1.3333e-05,1.0586e-05,1.0563e-05,9.447e-06,9.0966e-06,9.0961e-06,7.097e-06,7.0412e-06,6.352e-06,5.695e-06,4.4814e-06,3.6042e-06,3.0791e-06,2.3924e-06,1.8904e-06,1.3886e-06,1.3712e-06,1.079e-06,8.5539e-07,7.4531e-07,5.1379e-07,4.6029e-07,3.6775e-07,3.2177e-07,2.4305e-07,2.3591e-07,2.2184e-07,1.9235e-07,1.4241e-07,1.0427e-07,8.8293e-08,7.4727e-08,6.8477e-08,6.7639e-08,5.7691e-08,4.7962e-08,2.7124e-08,2.327e-08,2.1381e-08,1.7722e-08,1.7699e-08,1.47e-08,1.4364e-08,1.2656e-08,1.143e-08,8.0933e-09,7.6971e-09,5.8643e-09,4.5455e-09,1.956e-09,1.6662e-09,1.5417e-09,1.2569e-09,1.0368e-09,9.6348e-10,8.3184e-10,7.483e-10,6.5601e-10,5.2734e-10,5.2672e-10,3.5473e-10,3.1918e-10,3.1222e-10,3.0857e-10,2.0557e-10,2.0367e-10,1.9546e-10,1.8949e-10,1.7484e-10,1.5298e-10,1.3567e-10,7.9341e-11,2.4827e-11,1.748e-11,1.6945e-11,1.6514e-11,1.5193e-11,1.4503e-11,9.3111e-12,6.9383e-12,5.5955e-12,4.9589e-12,3.8498e-12,3.1015e-12,2.979e-12,2.1952e-12,1.8453e-12,1.4917e-12,1.058e-12,6.7072e-13,6.514e-13,5.5779e-13,5.0072e-13,4.7699e-13,2.8343e-13,2.456e-13,1.2743e-13,1.061e-13,7.6738e-14,6.4474e-14,6.0931e-14,4.4743e-14,4.2987e-14,3.938e-14,3.2504e-14,2.2505e-14 1,4.056e-09,5.5048e-09,5.5893e-09,6.1258e-09,6.5727e-09,7.2083e-09,8.6175e-09,1.3133e-08,1.7127e-08,1.7837e-08,2.1997e-08,2.276e-08,2.6057e-08,3.6136e-08,4.0015e-08,4.2947e-08,5.8243e-08,6.1356e-08,6.4996e-08,7.8825e-08,8.0471e-08,8.1433e-08,9.4252e-08,1.0272e-07,1.0301e-07,1.2142e-07,1.2325e-07,1.3271e-07,1.3401e-07,1.3528e-07,2.226e-07,3.5559e-07,3.7084e-07,4.2505e-07,4.7985e-07,5.2704e-07,5.8886e-07,6.6956e-07,8.3819e-07,9.4781e-07,1.1561e-06,1.4814e-06,1.5155e-06,1.5907e-06,1.6632e-06,2.0955e-06,2.0963e-06,3.6094e-06,3.7561e-06,3.8401e-06,4.5077e-06,4.561e-06,6.2281e-06,7.0318e-06,7.3947e-06,8.2553e-06,8.8512e-06,9.9708e-06,1.0345e-05,1.3704e-05,1.6273e-05,2.7684e-05,3.1957e-05,3.3521e-05,3.6505e-05,4.6055e-05,4.8287e-05,5.0353e-05,6.1233e-05,7.3432e-05,7.8507e-05,8.2907e-05,0.0001009,0.00013349,0.00017845,0.00021641,0.00022529,0.00032111,0.00036234,0.00038322,0.00039285,0.00043423,0.00065145,0.00065991,0.00070749,0.00078962,0.00080676,0.00094218,0.0014323,0.0014402,0.0016169,0.0016851,0.0026747,0.0029961,0.0030211,0.0033401,0.0038213,0.0038314,0.0038731,0.004197,0.0042,0.004515,0.0046424,0.0068582,0.0081012,0.0081466,0.009807,0.0103,0.011107,0.011519,0.011769,0.012051,0.012144,0.012395,0.013456,0.013585,0.013853,0.014076,0.015865,0.018126,0.021442,0.022821,0.025993,0.029974,0.0318,0.032778,0.045401,0.047094,0.048371,0.050989,0.054487,0.057675,0.060375,0.060866,0.061176,0.064762,0.07501,0.075813,0.080223,0.087458,0.091668,0.092367,0.11972,0.12004,0.12613,0.13869,0.14108,0.15023,0.15246,0.16869,0.17992,0.20738,0.20807,0.24283,0.24702,0.24837,0.27316,0.27479,0.28411,0.29668,0.30067,0.30371,0.31585,0.31789,0.31922,0.3291,0.3326,0.33352,0.34189,0.34493,0.36202,0.39125,0.39657,0.39799,0.41151,0.41715,0.44044,0.48239,0.49563,0.51678,0.52461,0.54646,0.56832,0.57011,0.5715,0.57166,0.57812,0.57867,0.59897,0.60828,0.62578,0.62656,0.63129,0.66146,0.66233,0.67659,0.69269,0.72107,0.72476,0.73523,0.73757,0.74344,0.7532,0.76797,0.76836,0.80083,0.83581,0.83939,0.84331,0.84453,0.86397,0.87543,0.91113,0.91285,0.91629,0.92196,0.94142,0.95896,0.97473,0.97875,0.98099,0.98613,0.99406,0.99651,0.99872,1,0.99905,0.99867,0.99084,0.9893,0.9887,0.9856,0.98426,0.97153,0.96498,0.96297,0.96276,0.95836,0.95207,0.94902,0.94763,0.92067,0.92063,0.89232,0.85584,0.8188,0.78234,0.76599,0.76166,0.75144,0.74244,0.72096,0.71857,0.67629,0.66549,0.64375,0.61666,0.60022,0.59837,0.58502,0.57609,0.55423,0.52203,0.51903,0.50505,0.48323,0.46574,0.46493,0.40663,0.39743,0.39305,0.38192,0.3762,0.36729,0.35332,0.34777,0.34011,0.32799,0.31267,0.29847,0.29705,0.2803,0.26961,0.26041,0.24025,0.2314,0.22824,0.21726,0.21661,0.21192,0.20988,0.1841,0.17787,0.17549,0.16493,0.15902,0.15814,0.14501,0.12214,0.1159,0.11279,0.10579,0.1052,0.097777,0.096991,0.088103,0.083192,0.074005,0.073217,0.072483,0.072076,0.070757,0.069697,0.069056,0.062599,0.061314,0.050182,0.046857,0.044757,0.043948,0.037703,0.037601,0.03572,0.034869,0.030851,0.030731,0.030448,0.027755,0.027048,0.0268,0.026059,0.025128,0.024274,0.02384,0.019927,0.0198,0.017995,0.015559,0.013537,0.011116,0.011084,0.010324,0.0094346,0.0083653,0.008354,0.0080105,0.0065598,0.006259,0.0062267,0.0048899,0.004634,0.0044921,0.0040798,0.0037057,0.0030978,0.0030114,0.0026246,0.0019191,0.001911,0.001862,0.0017654,0.001693,0.0016074,0.0015117,0.00084268,0.00072013,0.00056423,0.0004695,0.00046525,0.00045558,0.00034499,0.0003231,0.00032135,0.00024507,0.00015362,0.00015133,0.00013157,0.0001278,9.2266e-05,8.4145e-05,6.8718e-05,6.178e-05,5.4891e-05,5.3637e-05,4.6566e-05,4.5415e-05,4.4879e-05,3.2428e-05,2.9398e-05,2.8206e-05,2.4644e-05,2.3614e-05,1.9397e-05,1.8542e-05,1.6929e-05,1.3474e-05,1.3445e-05,1.2039e-05,1.1597e-05,1.1596e-05,9.0712e-06,9.0006e-06,8.1283e-06,7.2958e-06,5.7552e-06,4.639e-06,3.9694e-06,3.0919e-06,2.4488e-06,1.8043e-06,1.7819e-06,1.4055e-06,1.1167e-06,9.7424e-07,6.7397e-07,6.0442e-07,4.8392e-07,4.2395e-07,3.2106e-07,3.1171e-07,2.9328e-07,2.5462e-07,1.8903e-07,1.3879e-07,1.177e-07,9.9765e-08,9.1491e-08,9.0381e-08,7.7197e-08,6.4282e-08,3.6533e-08,3.1383e-08,2.8856e-08,2.3957e-08,2.3926e-08,1.9903e-08,1.9451e-08,1.7157e-08,1.5508e-08,1.1013e-08,1.0478e-08,8.0009e-09,6.2145e-09,2.6924e-09,2.2965e-09,2.1262e-09,1.7363e-09,1.4344e-09,1.3337e-09,1.1528e-09,1.0379e-09,9.1084e-10,7.3343e-10,7.3258e-10,4.9487e-10,4.4565e-10,4.36e-10,4.3094e-10,2.8798e-10,2.8534e-10,2.7392e-10,2.6562e-10,2.4524e-10,2.1479e-10,1.9066e-10,1.1195e-10,3.5329e-11,2.4938e-11,2.4179e-11,2.3569e-11,2.1697e-11,2.0719e-11,1.3344e-11,9.964e-12,8.0478e-12,7.1382e-12,5.5515e-12,4.4792e-12,4.3035e-12,3.1779e-12,2.6746e-12,2.1653e-12,1.5393e-12,9.7889e-13,9.5088e-13,8.1509e-13,7.3222e-13,6.9775e-13,4.1605e-13,3.6086e-13,1.8805e-13,1.5676e-13,1.1362e-13,9.557e-14,9.0351e-14,6.6479e-14,6.3887e-14,5.8559e-14,4.8395e-14,3.3587e-14 1,3.0886e-09,4.2008e-09,4.2657e-09,4.6783e-09,5.022e-09,5.5113e-09,6.5972e-09,1.0085e-08,1.3177e-08,1.3727e-08,1.6955e-08,1.7548e-08,2.011e-08,2.7956e-08,3.098e-08,3.3268e-08,4.522e-08,4.7656e-08,5.0505e-08,6.1341e-08,6.2632e-08,6.3386e-08,7.3447e-08,8.0098e-08,8.0324e-08,9.4803e-08,9.6241e-08,1.0369e-07,1.0471e-07,1.0572e-07,1.7463e-07,2.8e-07,2.921e-07,3.3517e-07,3.7875e-07,4.1632e-07,4.6558e-07,5.2994e-07,6.6463e-07,7.5231e-07,9.1918e-07,1.1803e-06,1.2077e-06,1.268e-06,1.3264e-06,1.6744e-06,1.675e-06,2.8976e-06,3.0165e-06,3.0845e-06,3.6259e-06,3.6691e-06,5.0241e-06,5.6786e-06,5.9744e-06,6.6762e-06,7.1627e-06,8.0775e-06,8.3833e-06,1.1134e-05,1.3242e-05,2.2642e-05,2.6172e-05,2.7466e-05,2.9935e-05,3.7852e-05,3.9704e-05,4.142e-05,5.0467e-05,6.0632e-05,6.4866e-05,6.8539e-05,8.3579e-05,0.00011089,0.00014869,0.00018069,0.00018818,0.00026924,0.00030422,0.00032195,0.00033013,0.00036531,0.00055056,0.00055779,0.00059848,0.00066881,0.00068349,0.00079966,0.0012217,0.0012285,0.0013812,0.0014402,0.0022991,0.0025791,0.0026009,0.0028793,0.0032999,0.0033087,0.0033452,0.0036287,0.0036314,0.0039075,0.0040193,0.0059692,0.0070674,0.0071076,0.0085789,0.0090168,0.0097336,0.0101,0.010322,0.010573,0.010656,0.01088,0.011825,0.01194,0.012179,0.012379,0.013977,0.016001,0.018979,0.020219,0.023077,0.026674,0.028326,0.029212,0.040689,0.042233,0.043399,0.045791,0.048991,0.051911,0.054387,0.054837,0.055121,0.058415,0.067847,0.068587,0.072656,0.079343,0.08324,0.083887,0.10932,0.10961,0.11529,0.12704,0.12927,0.13785,0.13994,0.1552,0.16578,0.19173,0.19239,0.22541,0.2294,0.23069,0.25436,0.25591,0.26484,0.27689,0.28072,0.28363,0.2953,0.29726,0.29855,0.30806,0.31143,0.31231,0.32039,0.32333,0.33984,0.36817,0.37334,0.37472,0.38787,0.39336,0.41608,0.45717,0.47019,0.49102,0.49874,0.52034,0.54201,0.54379,0.54517,0.54533,0.55176,0.5523,0.57251,0.5818,0.5993,0.60008,0.60481,0.6351,0.63598,0.65034,0.66661,0.69538,0.69913,0.7098,0.71217,0.71816,0.72814,0.74326,0.74367,0.77711,0.81345,0.81719,0.82129,0.82257,0.84299,0.85511,0.89326,0.89513,0.89885,0.905,0.92636,0.946,0.96423,0.96901,0.97171,0.97802,0.98839,0.99192,0.99556,0.99905,1,0.99997,0.99578,0.99471,0.99429,0.99201,0.991,0.98085,0.97537,0.97367,0.97349,0.96972,0.96427,0.9616,0.96039,0.93627,0.93624,0.91025,0.87612,0.84093,0.80588,0.79006,0.78586,0.77593,0.76716,0.74618,0.74384,0.70226,0.69158,0.67005,0.64311,0.62671,0.62485,0.61151,0.60256,0.58061,0.54816,0.54513,0.53099,0.50888,0.49112,0.49029,0.43076,0.42132,0.41682,0.40539,0.39952,0.39034,0.37594,0.37021,0.3623,0.34976,0.33389,0.31914,0.31767,0.30024,0.28909,0.27948,0.2584,0.24912,0.2458,0.23427,0.23359,0.22866,0.2265,0.19932,0.19273,0.19021,0.17902,0.17275,0.17181,0.15786,0.13346,0.12678,0.12345,0.11594,0.11531,0.10733,0.10649,0.096914,0.091616,0.081684,0.08083,0.080036,0.079594,0.078166,0.077016,0.076322,0.069313,0.067916,0.055787,0.052155,0.049858,0.048972,0.042124,0.042012,0.039945,0.039009,0.034585,0.034453,0.034141,0.031169,0.030387,0.030114,0.029294,0.028264,0.027319,0.026838,0.022496,0.022355,0.020348,0.017632,0.015373,0.01266,0.012624,0.011771,0.010771,0.0095663,0.0095536,0.0091662,0.0075271,0.0071865,0.0071499,0.0056333,0.0053424,0.005181,0.0047115,0.0042848,0.0035902,0.0034913,0.0030483,0.0022376,0.0022283,0.0021718,0.0020606,0.001977,0.0018783,0.0017677,0.00099226,0.0008495,0.00066744,0.00055654,0.00055155,0.00054021,0.00041033,0.00038458,0.00038251,0.00029257,0.0001843,0.00018158,0.0001581,0.00015362,0.00011128,0.00010158,8.3122e-05,7.4809e-05,6.6544e-05,6.5039e-05,5.6543e-05,5.516e-05,5.4515e-05,3.9515e-05,3.5857e-05,3.4416e-05,3.0108e-05,2.8861e-05,2.3752e-05,2.2714e-05,2.0756e-05,1.6555e-05,1.6519e-05,1.4807e-05,1.4268e-05,1.4267e-05,1.1186e-05,1.1099e-05,1.0033e-05,9.0142e-06,7.1258e-06,5.7547e-06,4.9308e-06,3.8492e-06,3.0547e-06,2.2566e-06,2.2289e-06,1.7615e-06,1.4023e-06,1.2248e-06,8.4988e-07,7.6285e-07,6.1187e-07,5.3662e-07,4.0729e-07,3.9553e-07,3.7233e-07,3.2361e-07,2.4081e-07,1.7724e-07,1.505e-07,1.2773e-07,1.1721e-07,1.158e-07,9.9027e-08,8.2575e-08,4.7129e-08,4.0531e-08,3.7291e-08,3.1002e-08,3.0963e-08,2.5791e-08,2.521e-08,2.2258e-08,2.0133e-08,1.4332e-08,1.3641e-08,1.0437e-08,8.121e-09,3.5392e-09,3.022e-09,2.7995e-09,2.2893e-09,1.8938e-09,1.7617e-09,1.5243e-09,1.3733e-09,1.2062e-09,9.7271e-10,9.7159e-10,6.5805e-10,5.9301e-10,5.8026e-10,5.7357e-10,3.8432e-10,3.8082e-10,3.6568e-10,3.5466e-10,3.2763e-10,2.872e-10,2.5513e-10,1.5032e-10,4.7789e-11,3.3808e-11,3.2785e-11,3.1963e-11,2.9439e-11,2.812e-11,1.8159e-11,1.3585e-11,1.0986e-11,9.7519e-12,7.5958e-12,6.1366e-12,5.8973e-12,4.3628e-12,3.6757e-12,2.9795e-12,2.1225e-12,1.3533e-12,1.3148e-12,1.1281e-12,1.014e-12,9.6655e-13,5.7806e-13,5.018e-13,2.6247e-13,2.1903e-13,1.5904e-13,1.3391e-13,1.2663e-13,9.3336e-14,8.9717e-14,8.2275e-14,6.8067e-14,4.7335e-14 1,2.94e-09,4.0003e-09,4.0622e-09,4.4556e-09,4.7834e-09,5.2501e-09,6.2859e-09,9.6144e-09,1.2566e-08,1.3092e-08,1.6175e-08,1.6741e-08,1.9189e-08,2.6687e-08,2.9579e-08,3.1765e-08,4.3196e-08,4.5526e-08,4.8252e-08,5.862e-08,5.9855e-08,6.0577e-08,7.0206e-08,7.6572e-08,7.6789e-08,9.0651e-08,9.2028e-08,9.9163e-08,1.0014e-07,1.011e-07,1.6713e-07,2.6814e-07,2.7976e-07,3.2107e-07,3.6288e-07,3.9892e-07,4.4619e-07,5.0797e-07,6.3729e-07,7.215e-07,8.8179e-07,1.1327e-06,1.159e-06,1.2171e-06,1.2732e-06,1.6078e-06,1.6084e-06,2.7847e-06,2.8991e-06,2.9646e-06,3.4857e-06,3.5274e-06,4.8324e-06,5.463e-06,5.748e-06,6.4244e-06,6.8934e-06,7.7752e-06,8.0701e-06,1.0723e-05,1.2757e-05,2.1832e-05,2.5242e-05,2.6492e-05,2.8878e-05,3.653e-05,3.8321e-05,3.998e-05,4.873e-05,5.8563e-05,6.266e-05,6.6215e-05,8.0775e-05,0.00010723,0.00014386,0.00017488,0.00018214,0.00026078,0.00029472,0.00031194,0.00031988,0.00035404,0.00053401,0.00054103,0.00058059,0.00064896,0.00066324,0.00077622,0.001187,0.0011936,0.0013423,0.0013998,0.0022368,0.0025099,0.0025312,0.0028028,0.0032131,0.0032218,0.0032573,0.0035342,0.0035367,0.0038063,0.0039155,0.0058205,0.0068944,0.0069336,0.0083729,0.0088014,0.009503,0.009862,0.010079,0.010325,0.010406,0.010625,0.011551,0.011663,0.011898,0.012093,0.013659,0.015643,0.018562,0.019779,0.022583,0.026114,0.027736,0.028607,0.039885,0.041404,0.042551,0.044904,0.048052,0.050925,0.053362,0.053806,0.054085,0.057328,0.066617,0.067346,0.071356,0.077948,0.08179,0.082428,0.10752,0.10781,0.11342,0.12502,0.12723,0.13571,0.13777,0.15285,0.16332,0.18901,0.18965,0.22236,0.22632,0.22759,0.25106,0.2526,0.26145,0.27341,0.27721,0.2801,0.29169,0.29363,0.29491,0.30435,0.3077,0.30858,0.3166,0.31952,0.33592,0.36408,0.36922,0.3706,0.38368,0.38915,0.41176,0.45268,0.46565,0.48641,0.49412,0.51566,0.5373,0.53907,0.54045,0.54061,0.54702,0.54757,0.56775,0.57704,0.59453,0.59531,0.60003,0.63033,0.63121,0.64559,0.66188,0.69071,0.69447,0.70516,0.70755,0.71356,0.72357,0.73875,0.73916,0.77276,0.80932,0.81309,0.81722,0.8185,0.8391,0.85133,0.8899,0.89179,0.89556,0.9018,0.92348,0.9435,0.96215,0.96707,0.96985,0.97637,0.98717,0.9909,0.99479,0.99867,0.99997,1,0.99647,0.99548,0.99509,0.99297,0.99202,0.98233,0.97706,0.97541,0.97524,0.97159,0.96629,0.96369,0.96251,0.93892,0.93889,0.91333,0.87964,0.84481,0.81003,0.79432,0.79014,0.78027,0.77155,0.75066,0.74833,0.7069,0.69625,0.67477,0.64786,0.63147,0.62962,0.61628,0.60733,0.58538,0.55289,0.54986,0.5357,0.51354,0.49573,0.4949,0.43516,0.42569,0.42117,0.40969,0.40378,0.39456,0.38009,0.37433,0.36637,0.35376,0.33779,0.32295,0.32147,0.30392,0.29269,0.28301,0.26176,0.2524,0.24906,0.23743,0.23673,0.23176,0.22959,0.20215,0.19549,0.19295,0.18165,0.17531,0.17437,0.16026,0.13558,0.12882,0.12544,0.11784,0.11721,0.10913,0.10827,0.098573,0.093203,0.083133,0.082267,0.081461,0.081014,0.079565,0.078398,0.077694,0.070583,0.069164,0.05685,0.05316,0.050826,0.049927,0.042965,0.042851,0.04075,0.039798,0.035298,0.035163,0.034845,0.031821,0.031025,0.030747,0.029912,0.028863,0.027901,0.027412,0.022988,0.022844,0.020799,0.01803,0.015726,0.012957,0.012921,0.01205,0.011029,0.0097983,0.0097853,0.0093895,0.0077143,0.0073662,0.0073288,0.0057777,0.0054799,0.0053148,0.0048343,0.0043974,0.0036862,0.0035849,0.0031309,0.0022999,0.0022903,0.0022324,0.0021183,0.0020326,0.0019313,0.0018179,0.0010217,0.00087498,0.00068781,0.00057374,0.0005686,0.00055694,0.00042327,0.00039676,0.00039463,0.000302,0.00019041,0.0001876,0.00016338,0.00015876,0.00011507,0.00010506,8.6003e-05,7.7417e-05,6.8879e-05,6.7324e-05,5.8544e-05,5.7114e-05,5.6447e-05,4.0939e-05,3.7155e-05,3.5665e-05,3.1208e-05,2.9918e-05,2.4629e-05,2.3555e-05,2.1527e-05,1.7177e-05,1.714e-05,1.5366e-05,1.4808e-05,1.4807e-05,1.1614e-05,1.1524e-05,1.0419e-05,9.3624e-06,7.4038e-06,5.9813e-06,5.1263e-06,4.0033e-06,3.1782e-06,2.3489e-06,2.3201e-06,1.8343e-06,1.4607e-06,1.2761e-06,8.8596e-07,7.9536e-07,6.3815e-07,5.5978e-07,4.2504e-07,4.1279e-07,3.886e-07,3.3782e-07,2.515e-07,1.8518e-07,1.5728e-07,1.3351e-07,1.2253e-07,1.2106e-07,1.0355e-07,8.6368e-08,4.9332e-08,4.2434e-08,3.9046e-08,3.247e-08,3.2428e-08,2.7019e-08,2.641e-08,2.3322e-08,2.1098e-08,1.5026e-08,1.4302e-08,1.0946e-08,8.5204e-09,3.7172e-09,3.1746e-09,2.9411e-09,2.4057e-09,1.9906e-09,1.8519e-09,1.6026e-09,1.4441e-09,1.2686e-09,1.0233e-09,1.0221e-09,6.9258e-10,6.242e-10,6.1079e-10,6.0376e-10,4.0474e-10,4.0106e-10,3.8513e-10,3.7355e-10,3.451e-10,3.0257e-10,2.6882e-10,1.5848e-10,5.0451e-11,3.5705e-11,3.4626e-11,3.3759e-11,3.1096e-11,2.9705e-11,1.9192e-11,1.4362e-11,1.1618e-11,1.0314e-11,8.0356e-12,6.4934e-12,6.2404e-12,4.6181e-12,3.8915e-12,3.1552e-12,2.2484e-12,1.4343e-12,1.3936e-12,1.1958e-12,1.075e-12,1.0248e-12,6.1322e-13,5.324e-13,2.7867e-13,2.3259e-13,1.6894e-13,1.4226e-13,1.3455e-13,9.9199e-14,9.5357e-14,8.7455e-14,7.2366e-14,5.0343e-14 1,1.7294e-09,2.3628e-09,2.3999e-09,2.6356e-09,2.8322e-09,3.1125e-09,3.7357e-09,5.7474e-09,7.54e-09,7.86e-09,9.7395e-09,1.0085e-08,1.1582e-08,1.6183e-08,1.7963e-08,1.9311e-08,2.6376e-08,2.782e-08,2.9511e-08,3.5953e-08,3.6722e-08,3.7171e-08,4.3173e-08,4.7148e-08,4.7283e-08,5.5956e-08,5.6818e-08,6.1291e-08,6.1905e-08,6.2507e-08,1.0411e-07,1.6823e-07,1.7563e-07,2.0199e-07,2.2873e-07,2.5182e-07,2.8215e-07,3.2186e-07,4.0524e-07,4.5969e-07,5.6361e-07,7.2689e-07,7.4406e-07,7.8193e-07,8.1856e-07,1.0376e-06,1.038e-06,1.8135e-06,1.8892e-06,1.9326e-06,2.2785e-06,2.3062e-06,3.1763e-06,3.5983e-06,3.7894e-06,4.2434e-06,4.5586e-06,5.1525e-06,5.3514e-06,7.1461e-06,8.5276e-06,1.4735e-05,1.7082e-05,1.7943e-05,1.959e-05,2.4889e-05,2.6133e-05,2.7286e-05,3.3381e-05,4.0258e-05,4.313e-05,4.5625e-05,5.587e-05,7.4577e-05,0.00010064,0.00012282,0.00012803,0.00018466,0.00020923,0.00022171,0.00022747,0.0002523,0.00038391,0.00038907,0.00041816,0.00046854,0.00047908,0.00056264,0.00086866,0.00087359,0.00098511,0.0010283,0.0016615,0.0018696,0.0018858,0.0020933,0.0024079,0.0024145,0.0024419,0.0026548,0.0026568,0.0028645,0.0029488,0.0044285,0.005269,0.0052998,0.0064325,0.0067709,0.0073261,0.0076107,0.0077831,0.007978,0.0080424,0.0082167,0.0089536,0.009043,0.0092299,0.0093856,0.010638,0.012231,0.014587,0.015573,0.017852,0.020736,0.022066,0.02278,0.032105,0.033368,0.034324,0.036288,0.038921,0.041331,0.043379,0.043752,0.043987,0.046719,0.054581,0.0552,0.05861,0.064233,0.067521,0.068068,0.089703,0.089959,0.09483,0.10495,0.10687,0.11431,0.11612,0.12941,0.13867,0.16154,0.16212,0.19151,0.19509,0.19624,0.21753,0.21893,0.22701,0.23793,0.24142,0.24407,0.25471,0.2565,0.25768,0.26638,0.26948,0.27029,0.27771,0.28041,0.29564,0.32192,0.32674,0.32802,0.34031,0.34546,0.36682,0.40576,0.41818,0.43815,0.44558,0.46644,0.4875,0.48923,0.49057,0.49073,0.497,0.49753,0.51732,0.52647,0.54374,0.54451,0.54919,0.57936,0.58024,0.59464,0.61103,0.64024,0.64406,0.65498,0.65742,0.66357,0.67385,0.68951,0.68993,0.72491,0.76354,0.76755,0.77197,0.77334,0.79551,0.8088,0.85146,0.85359,0.85784,0.8649,0.88986,0.91358,0.93662,0.94291,0.94652,0.95519,0.97048,0.97624,0.98279,0.99084,0.99578,0.99647,1,0.99994,0.99989,0.9994,0.9991,0.99453,0.99141,0.99038,0.99027,0.98791,0.98432,0.98251,0.98167,0.96396,0.96394,0.94329,0.91467,0.88396,0.85246,0.838,0.83413,0.82497,0.81683,0.7972,0.795,0.75551,0.74526,0.72446,0.69819,0.68209,0.68026,0.66708,0.65821,0.63635,0.60376,0.6007,0.5864,0.5639,0.54573,0.54488,0.48332,0.47347,0.46876,0.45678,0.45061,0.44095,0.42575,0.41968,0.41129,0.39794,0.381,0.36518,0.3636,0.34482,0.33275,0.32232,0.29934,0.28917,0.28553,0.27285,0.2721,0.26666,0.26428,0.23412,0.22677,0.22396,0.21142,0.20438,0.20332,0.18757,0.15983,0.15219,0.14837,0.13973,0.13901,0.1298,0.12882,0.11772,0.11155,0.09993,0.098928,0.097995,0.097477,0.095799,0.094446,0.093629,0.085361,0.083707,0.069288,0.064942,0.062188,0.061124,0.052871,0.052735,0.050233,0.049098,0.043718,0.043556,0.043176,0.039544,0.038586,0.038251,0.037245,0.03598,0.034817,0.034226,0.02886,0.028685,0.026191,0.022801,0.019968,0.016545,0.0165,0.015418,0.014146,0.01261,0.012593,0.012098,0.0099927,0.0095536,0.0095064,0.0075417,0.007163,0.0069527,0.0063396,0.0057808,0.0048675,0.004737,0.0041511,0.0030724,0.0030599,0.0029844,0.0028354,0.0027234,0.0025909,0.0024421,0.001391,0.0011954,0.00094474,0.00079119,0.00078426,0.00076852,0.00058753,0.00055149,0.00054859,0.0004222,0.00026874,0.00026485,0.00023131,0.00022489,0.00016405,0.00015005,0.00012331,0.00011123,9.9184e-05,9.6987e-05,8.4565e-05,8.2539e-05,8.1592e-05,5.9536e-05,5.4131e-05,5.2e-05,4.5614e-05,4.3762e-05,3.6155e-05,3.4606e-05,3.1679e-05,2.538e-05,2.5327e-05,2.275e-05,2.1938e-05,2.1937e-05,1.728e-05,1.7149e-05,1.5532e-05,1.3983e-05,1.1103e-05,9.0029e-06,7.7363e-06,6.067e-06,4.8352e-06,3.5916e-06,3.5482e-06,2.8161e-06,2.2509e-06,1.9707e-06,1.3763e-06,1.2376e-06,9.9647e-07,8.7589e-07,6.6793e-07,6.4896e-07,6.1152e-07,5.3276e-07,3.9842e-07,2.9473e-07,2.5093e-07,2.1354e-07,1.9623e-07,1.9391e-07,1.6625e-07,1.3903e-07,8.0066e-08,6.9021e-08,6.3587e-08,5.3017e-08,5.2951e-08,4.4233e-08,4.3251e-08,3.826e-08,3.4661e-08,2.4804e-08,2.3626e-08,1.815e-08,1.4176e-08,6.2551e-09,5.3535e-09,4.9648e-09,4.0719e-09,3.3777e-09,3.1455e-09,2.7272e-09,2.4608e-09,2.1655e-09,1.7516e-09,1.7497e-09,1.1916e-09,1.0754e-09,1.0526e-09,1.0406e-09,7.0121e-10,6.9491e-10,6.6766e-10,6.4783e-10,5.991e-10,5.2614e-10,4.6816e-10,2.7784e-10,8.9709e-11,6.3756e-11,6.1853e-11,6.0323e-11,5.5619e-11,5.316e-11,3.4527e-11,2.5927e-11,2.1026e-11,1.8692e-11,1.4606e-11,1.1833e-11,1.1377e-11,8.4491e-12,7.1339e-12,5.7981e-12,4.148e-12,2.6597e-12,2.585e-12,2.2221e-12,2e-12,1.9075e-12,1.1481e-12,9.9834e-13,5.2633e-13,4.4017e-13,3.2084e-13,2.7069e-13,2.5616e-13,1.8949e-13,1.8223e-13,1.6729e-13,1.3871e-13,9.6876e-14 1,1.612e-09,2.2036e-09,2.2383e-09,2.4585e-09,2.6423e-09,2.9042e-09,3.4869e-09,5.3687e-09,7.0465e-09,7.3461e-09,9.1063e-09,9.4303e-09,1.0832e-08,1.5145e-08,1.6814e-08,1.8078e-08,2.4707e-08,2.6062e-08,2.7649e-08,3.3697e-08,3.4419e-08,3.4841e-08,4.0478e-08,4.4213e-08,4.434e-08,5.2489e-08,5.33e-08,5.7504e-08,5.8081e-08,5.8647e-08,9.7773e-08,1.5815e-07,1.6512e-07,1.8996e-07,2.1515e-07,2.3691e-07,2.6551e-07,3.0296e-07,3.8163e-07,4.3301e-07,5.3112e-07,6.8534e-07,7.0157e-07,7.3735e-07,7.7197e-07,9.7906e-07,9.7941e-07,1.7131e-06,1.7849e-06,1.826e-06,2.1535e-06,2.1798e-06,3.0042e-06,3.4043e-06,3.5855e-06,4.0161e-06,4.3151e-06,4.8786e-06,5.0673e-06,6.7712e-06,8.0835e-06,1.3985e-05,1.6218e-05,1.7038e-05,1.8606e-05,2.3653e-05,2.4837e-05,2.5936e-05,3.1745e-05,3.8302e-05,4.1041e-05,4.3422e-05,5.3199e-05,7.1063e-05,9.5971e-05,0.00011719,0.00012217,0.00017637,0.0001999,0.00021187,0.00021739,0.00024118,0.00036742,0.00037237,0.00040029,0.00044866,0.00045878,0.00053905,0.00083329,0.00083803,0.00094535,0.0009869,0.001597,0.0017976,0.0018132,0.0020135,0.0023171,0.0023235,0.0023499,0.0025554,0.0025574,0.002758,0.0028394,0.0042699,0.0050833,0.0051132,0.0062101,0.006538,0.007076,0.0073518,0.0075191,0.007708,0.0077704,0.0079395,0.0086541,0.0087409,0.0089222,0.0090733,0.010289,0.011835,0.014125,0.015083,0.0173,0.020106,0.021401,0.022097,0.031185,0.032418,0.033351,0.035267,0.037837,0.040191,0.042191,0.042556,0.042786,0.045455,0.053142,0.053747,0.057083,0.062587,0.065806,0.066341,0.087546,0.087797,0.092575,0.1025,0.1044,0.1117,0.11348,0.12654,0.13565,0.15815,0.15872,0.18769,0.19122,0.19235,0.21335,0.21474,0.22271,0.2335,0.23694,0.23957,0.25008,0.25185,0.25301,0.26162,0.26468,0.26548,0.27282,0.27549,0.29056,0.31659,0.32136,0.32263,0.33481,0.33992,0.3611,0.39976,0.4121,0.43194,0.43933,0.46009,0.48105,0.48277,0.48411,0.48426,0.49051,0.49104,0.51077,0.51988,0.53711,0.53788,0.54255,0.57267,0.57355,0.58794,0.60432,0.63355,0.63738,0.64831,0.65075,0.65692,0.66722,0.68292,0.68335,0.71847,0.75731,0.76135,0.76581,0.76719,0.78953,0.80294,0.84609,0.84824,0.85255,0.85971,0.88506,0.90924,0.93282,0.93928,0.943,0.95194,0.9678,0.97381,0.98071,0.9893,0.99471,0.99548,0.99994,1,0.99999,0.99972,0.99951,0.99562,0.99279,0.99184,0.99174,0.98955,0.9862,0.98449,0.9837,0.9668,0.96677,0.9468,0.9189,0.88877,0.85775,0.84347,0.83965,0.83059,0.82254,0.80311,0.80093,0.76175,0.75156,0.73087,0.70472,0.68867,0.68685,0.67371,0.66486,0.64304,0.61047,0.60741,0.5931,0.57058,0.55238,0.55153,0.48977,0.47988,0.47516,0.46312,0.45692,0.44721,0.43192,0.42581,0.41737,0.40394,0.38687,0.37094,0.36934,0.3504,0.33824,0.32771,0.3045,0.29424,0.29056,0.27774,0.27698,0.27148,0.26908,0.23856,0.23112,0.22827,0.21557,0.20843,0.20736,0.1914,0.16324,0.15548,0.1516,0.14282,0.14209,0.13272,0.13173,0.12043,0.11415,0.10232,0.1013,0.10035,0.099825,0.098114,0.096736,0.095904,0.087475,0.085789,0.071077,0.066639,0.063826,0.06274,0.054304,0.054165,0.051607,0.050446,0.044941,0.044776,0.044387,0.040668,0.039688,0.039344,0.038314,0.037018,0.035827,0.035221,0.02972,0.029541,0.026983,0.023504,0.020595,0.017076,0.01703,0.015918,0.014609,0.013028,0.013011,0.012501,0.010333,0.0098806,0.009832,0.0078065,0.0074158,0.0071988,0.0065661,0.0059893,0.005046,0.0049112,0.0043057,0.0031899,0.003177,0.0030989,0.0029447,0.0028287,0.0026915,0.0025375,0.0014478,0.0012448,0.00098448,0.0008249,0.0008177,0.00080133,0.0006131,0.00057559,0.00057257,0.00044098,0.00028104,0.00027699,0.000242,0.00023531,0.00017179,0.00015716,0.00012923,0.00011659,0.000104,0.0001017,8.8707e-05,8.6587e-05,8.5597e-05,6.2508e-05,5.6846e-05,5.4614e-05,4.7923e-05,4.5982e-05,3.8006e-05,3.6382e-05,3.3312e-05,2.6703e-05,2.6647e-05,2.3942e-05,2.309e-05,2.3088e-05,1.8197e-05,1.806e-05,1.636e-05,1.4733e-05,1.1705e-05,9.4952e-06,8.1622e-06,6.4045e-06,5.1068e-06,3.7958e-06,3.7501e-06,2.9779e-06,2.3813e-06,2.0855e-06,1.4575e-06,1.311e-06,1.056e-06,9.285e-07,7.0845e-07,6.8838e-07,6.4873e-07,5.6535e-07,4.2304e-07,3.1313e-07,2.6669e-07,2.2702e-07,2.0866e-07,2.0619e-07,1.7683e-07,1.4794e-07,8.5285e-08,7.3542e-08,6.7761e-08,5.6518e-08,5.6447e-08,4.717e-08,4.6124e-08,4.0812e-08,3.6979e-08,2.648e-08,2.5224e-08,1.9387e-08,1.515e-08,6.6945e-09,5.7312e-09,5.3158e-09,4.3613e-09,3.619e-09,3.3706e-09,2.9232e-09,2.6381e-09,2.322e-09,1.8789e-09,1.8768e-09,1.2791e-09,1.1545e-09,1.1301e-09,1.1173e-09,7.5335e-10,7.466e-10,7.1737e-10,6.961e-10,6.4383e-10,5.6554e-10,5.0332e-10,2.9897e-10,9.6711e-11,6.877e-11,6.672e-11,6.5072e-11,6.0006e-11,5.7357e-11,3.7279e-11,2.8006e-11,2.272e-11,2.0202e-11,1.5792e-11,1.2797e-11,1.2305e-11,9.1427e-12,7.7216e-12,6.2777e-12,4.4934e-12,2.8831e-12,2.8022e-12,2.4094e-12,2.169e-12,2.0688e-12,1.2461e-12,1.0838e-12,5.7192e-13,4.7843e-13,3.4889e-13,2.9443e-13,2.7865e-13,2.0622e-13,1.9833e-13,1.8208e-13,1.5102e-13,1.0553e-13 1,1.5711e-09,2.1481e-09,2.1819e-09,2.3968e-09,2.576e-09,2.8316e-09,3.4001e-09,5.2365e-09,6.8743e-09,7.1668e-09,8.8853e-09,9.2015e-09,1.0571e-08,1.4783e-08,1.6413e-08,1.7648e-08,2.4123e-08,2.5447e-08,2.6998e-08,3.2908e-08,3.3614e-08,3.4026e-08,3.9535e-08,4.3185e-08,4.331e-08,5.1276e-08,5.2068e-08,5.6178e-08,5.6742e-08,5.7296e-08,9.5555e-08,1.5462e-07,1.6143e-07,1.8573e-07,2.1039e-07,2.3169e-07,2.5967e-07,2.9633e-07,3.7334e-07,4.2365e-07,5.1971e-07,6.7075e-07,6.8665e-07,7.217e-07,7.5561e-07,9.5848e-07,9.5882e-07,1.6778e-06,1.7482e-06,1.7884e-06,2.1096e-06,2.1353e-06,2.9437e-06,3.336e-06,3.5137e-06,3.936e-06,4.2293e-06,4.7821e-06,4.9673e-06,6.6391e-06,7.9269e-06,1.3721e-05,1.5914e-05,1.6719e-05,1.8259e-05,2.3216e-05,2.438e-05,2.5459e-05,3.1167e-05,3.7611e-05,4.0303e-05,4.2642e-05,5.2254e-05,6.9819e-05,9.4318e-05,0.00011519,0.00012009,0.00017344,0.0001966,0.00020838,0.00021381,0.00023724,0.00036156,0.00036644,0.00039395,0.0004416,0.00045157,0.00053067,0.00082071,0.00082539,0.0009312,0.00097218,0.001574,0.001772,0.0017874,0.001985,0.0022847,0.002291,0.0023171,0.00252,0.0025219,0.00272,0.0028004,0.0042133,0.005017,0.0050465,0.0061307,0.0064547,0.0069866,0.0072593,0.0074246,0.0076114,0.0076732,0.0078404,0.008547,0.0086329,0.0088121,0.0089616,0.010164,0.011694,0.013959,0.014907,0.017102,0.01988,0.021162,0.021852,0.030855,0.032077,0.033001,0.0349,0.037448,0.039781,0.041764,0.042126,0.042354,0.045001,0.052624,0.053225,0.056534,0.061994,0.065188,0.06572,0.086769,0.087018,0.091763,0.10162,0.10351,0.11076,0.11252,0.1255,0.13456,0.15693,0.1575,0.18631,0.18981,0.19094,0.21184,0.21322,0.22116,0.2319,0.23532,0.23793,0.24841,0.25017,0.25132,0.25989,0.26294,0.26374,0.27105,0.27371,0.28872,0.31465,0.31941,0.32068,0.33282,0.3379,0.35902,0.39757,0.40989,0.42969,0.43706,0.45778,0.4787,0.48042,0.48176,0.48191,0.48815,0.48868,0.50838,0.51748,0.53469,0.53546,0.54013,0.57023,0.57111,0.58549,0.60187,0.6311,0.63494,0.64587,0.64832,0.65449,0.6648,0.68051,0.68094,0.7161,0.75503,0.75908,0.76354,0.76493,0.78734,0.80079,0.84411,0.84627,0.8506,0.8578,0.88329,0.90763,0.93141,0.93793,0.94169,0.95073,0.96679,0.9729,0.97992,0.9887,0.99429,0.99509,0.99989,0.99999,1,0.99981,0.99962,0.99599,0.99326,0.99235,0.99225,0.99012,0.98685,0.98519,0.98441,0.9678,0.96778,0.94806,0.92042,0.89051,0.85967,0.84546,0.84165,0.83263,0.82462,0.80525,0.80308,0.76401,0.75385,0.73321,0.7071,0.69107,0.68925,0.67612,0.66728,0.64548,0.61292,0.60986,0.59555,0.57302,0.55481,0.55396,0.49214,0.48223,0.4775,0.46544,0.45923,0.4495,0.43418,0.42806,0.4196,0.40614,0.38903,0.37305,0.37145,0.35245,0.34025,0.32969,0.3064,0.2961,0.29241,0.27954,0.27877,0.27325,0.27084,0.24019,0.23272,0.22986,0.2171,0.20993,0.20885,0.1928,0.1645,0.1567,0.15279,0.14396,0.14322,0.13381,0.1328,0.12144,0.11512,0.10321,0.10218,0.10122,0.10069,0.098971,0.097583,0.096745,0.088257,0.08656,0.071739,0.067268,0.064433,0.063338,0.054835,0.054696,0.052116,0.050946,0.045395,0.045228,0.044836,0.041086,0.040096,0.03975,0.038711,0.037403,0.036202,0.035591,0.03004,0.029859,0.027277,0.023765,0.020827,0.017274,0.017227,0.016103,0.014781,0.013184,0.013167,0.012651,0.01046,0.010003,0.0099533,0.0079053,0.0075101,0.0072906,0.0066507,0.0060671,0.0051126,0.0049762,0.0043634,0.0032339,0.0032208,0.0031417,0.0029855,0.002868,0.0027291,0.0025731,0.0014691,0.0012633,0.00099937,0.00083754,0.00083023,0.00081363,0.00062269,0.00058463,0.00058157,0.00044803,0.00028567,0.00028156,0.00024602,0.00023922,0.00017471,0.00015984,0.00013145,0.00011861,0.00010581,0.00010348,9.0267e-05,8.8112e-05,8.7105e-05,6.3627e-05,5.787e-05,5.5599e-05,4.8793e-05,4.6818e-05,3.8705e-05,3.7052e-05,3.3928e-05,2.7202e-05,2.7145e-05,2.4392e-05,2.3524e-05,2.3523e-05,1.8544e-05,1.8404e-05,1.6673e-05,1.5016e-05,1.1932e-05,9.6813e-06,8.3232e-06,6.5321e-06,5.2096e-06,3.8732e-06,3.8265e-06,3.0391e-06,2.4307e-06,2.129e-06,1.4884e-06,1.3389e-06,1.0786e-06,9.4846e-07,7.2383e-07,7.0334e-07,6.6286e-07,5.7772e-07,4.3239e-07,3.2013e-07,2.7268e-07,2.3215e-07,2.1338e-07,2.1086e-07,1.8085e-07,1.5132e-07,8.7272e-08,7.5263e-08,6.9351e-08,5.7851e-08,5.7779e-08,4.8289e-08,4.7219e-08,4.1784e-08,3.7863e-08,2.7119e-08,2.5834e-08,1.9859e-08,1.5521e-08,6.8624e-09,5.8755e-09,5.4499e-09,4.4719e-09,3.7113e-09,3.4566e-09,2.9981e-09,2.7059e-09,2.3818e-09,1.9276e-09,1.9254e-09,1.3125e-09,1.1848e-09,1.1598e-09,1.1466e-09,7.7332e-10,7.6639e-10,7.3641e-10,7.1458e-10,6.6096e-10,5.8063e-10,5.1679e-10,3.0707e-10,9.9398e-11,7.0695e-11,6.859e-11,6.6896e-11,6.1691e-11,5.8969e-11,3.8337e-11,2.8805e-11,2.3371e-11,2.0782e-11,1.6248e-11,1.3168e-11,1.2662e-11,9.4096e-12,7.9478e-12,6.4624e-12,4.6264e-12,2.9692e-12,2.886e-12,2.4816e-12,2.2341e-12,2.131e-12,1.2839e-12,1.1168e-12,5.8952e-13,4.932e-13,3.5972e-13,3.036e-13,2.8733e-13,2.1268e-13,2.0454e-13,1.878e-13,1.5578e-13,1.0887e-13 1,1.3864e-09,1.8975e-09,1.9274e-09,2.1178e-09,2.2767e-09,2.5033e-09,3.0077e-09,4.6384e-09,6.0945e-09,6.3546e-09,7.8838e-09,8.1653e-09,9.3845e-09,1.3138e-08,1.4592e-08,1.5693e-08,2.1474e-08,2.2657e-08,2.4042e-08,2.9325e-08,2.9956e-08,3.0324e-08,3.5252e-08,3.8518e-08,3.8629e-08,4.576e-08,4.647e-08,5.0151e-08,5.0656e-08,5.1152e-08,8.5458e-08,1.3851e-07,1.4464e-07,1.6649e-07,1.8868e-07,2.0785e-07,2.3305e-07,2.6608e-07,3.355e-07,3.8088e-07,4.676e-07,6.0405e-07,6.1842e-07,6.5011e-07,6.8077e-07,8.6431e-07,8.6462e-07,1.5162e-06,1.58e-06,1.6165e-06,1.908e-06,1.9313e-06,2.6658e-06,3.0226e-06,3.1842e-06,3.5685e-06,3.8356e-06,4.339e-06,4.5076e-06,6.0317e-06,7.2069e-06,1.2502e-05,1.451e-05,1.5247e-05,1.6657e-05,2.1201e-05,2.2269e-05,2.3259e-05,2.8498e-05,3.4418e-05,3.6893e-05,3.9044e-05,4.7888e-05,6.4068e-05,8.6666e-05,0.00010594,0.00011047,0.00015981,0.00018127,0.00019218,0.00019722,0.00021893,0.00033435,0.00033888,0.00036445,0.00040877,0.00041804,0.00049166,0.00076209,0.00076645,0.00086526,0.00090354,0.0014666,0.0016522,0.0016667,0.001852,0.0021333,0.0021392,0.0021637,0.0023543,0.0023561,0.0025423,0.0026178,0.003948,0.004706,0.0047338,0.0057576,0.0060639,0.0065668,0.0068247,0.0069811,0.0071579,0.0072163,0.0073745,0.0080436,0.0081249,0.0082947,0.0084363,0.0095757,0.011027,0.013179,0.014081,0.016168,0.018815,0.020037,0.020694,0.029294,0.030463,0.031347,0.033166,0.035606,0.037841,0.039743,0.04009,0.040308,0.042848,0.050169,0.050746,0.053928,0.059182,0.062257,0.062768,0.083071,0.083312,0.087896,0.097432,0.099253,0.10627,0.10798,0.12056,0.12935,0.15109,0.15164,0.17969,0.18311,0.18421,0.20461,0.20596,0.21371,0.22421,0.22756,0.23011,0.24036,0.24209,0.24322,0.25161,0.2546,0.25538,0.26254,0.26515,0.27988,0.30535,0.31002,0.31127,0.32321,0.32822,0.34902,0.38705,0.39921,0.41879,0.42609,0.4466,0.46735,0.46906,0.47038,0.47054,0.47673,0.47725,0.49682,0.50587,0.52299,0.52375,0.5284,0.55839,0.55927,0.57362,0.58999,0.61922,0.62306,0.63402,0.63647,0.64265,0.65299,0.66878,0.66921,0.70459,0.74387,0.74797,0.75248,0.75388,0.77659,0.79024,0.83437,0.83658,0.84101,0.84837,0.87454,0.89966,0.92437,0.9312,0.93513,0.94464,0.9617,0.96825,0.97587,0.9856,0.99201,0.99297,0.9994,0.99972,0.99981,1,0.99997,0.99755,0.99534,0.99457,0.99449,0.99267,0.98982,0.98834,0.98765,0.97248,0.97246,0.95397,0.92762,0.89879,0.86882,0.85495,0.85123,0.84241,0.83456,0.81556,0.81342,0.77493,0.7649,0.74448,0.7186,0.70269,0.70088,0.68782,0.67903,0.6573,0.6248,0.62175,0.60744,0.58489,0.56663,0.56578,0.50367,0.49369,0.48893,0.47678,0.47051,0.46069,0.44523,0.43905,0.4305,0.41689,0.39958,0.38339,0.38177,0.36251,0.35012,0.3394,0.31572,0.30524,0.30148,0.28838,0.28759,0.28197,0.27951,0.24823,0.2406,0.23767,0.22463,0.21728,0.21618,0.19975,0.17071,0.1627,0.15868,0.1496,0.14884,0.13915,0.13811,0.1264,0.11988,0.10759,0.10653,0.10554,0.10499,0.10321,0.10178,0.10091,0.092136,0.090379,0.075027,0.07039,0.067447,0.066311,0.057477,0.057332,0.05465,0.053432,0.047655,0.047481,0.047072,0.043164,0.042133,0.041772,0.040688,0.039324,0.03807,0.037432,0.031635,0.031445,0.028745,0.025069,0.021991,0.018262,0.018214,0.017034,0.015644,0.013964,0.013946,0.013404,0.011096,0.010614,0.010562,0.0084009,0.0079836,0.0077517,0.0070753,0.0064581,0.0054478,0.0053033,0.0046539,0.0034552,0.0034413,0.0033573,0.0031913,0.0030665,0.0029187,0.0027528,0.0015766,0.0013569,0.0010747,0.00090152,0.0008937,0.00087592,0.00067128,0.00063046,0.00062718,0.0004838,0.00030916,0.00030473,0.00026644,0.00025911,0.00018952,0.00017346,0.00014279,0.0001289,0.00011505,0.00011252,9.8219e-05,9.5885e-05,9.4794e-05,6.9342e-05,6.3094e-05,6.0629e-05,5.3238e-05,5.1092e-05,4.2273e-05,4.0476e-05,3.7078e-05,2.9755e-05,2.9693e-05,2.6694e-05,2.5748e-05,2.5747e-05,2.0317e-05,2.0165e-05,1.8276e-05,1.6466e-05,1.3097e-05,1.0636e-05,9.1494e-06,7.1875e-06,5.7375e-06,4.2706e-06,4.2194e-06,3.3542e-06,2.685e-06,2.3529e-06,1.6472e-06,1.4823e-06,1.1952e-06,1.0514e-06,8.0322e-07,7.8057e-07,7.3581e-07,6.4161e-07,4.8072e-07,3.563e-07,3.0366e-07,2.5867e-07,2.3783e-07,2.3503e-07,2.0169e-07,1.6887e-07,9.7576e-08,8.4192e-08,7.7601e-08,6.4773e-08,6.4692e-08,5.4099e-08,5.2905e-08,4.6834e-08,4.2454e-08,3.044e-08,2.9003e-08,2.2315e-08,1.7454e-08,7.7376e-09,6.6281e-09,6.1494e-09,5.0491e-09,4.1927e-09,3.906e-09,3.3893e-09,3.06e-09,2.6946e-09,2.1822e-09,2.1797e-09,1.4876e-09,1.3433e-09,1.3149e-09,1.3001e-09,8.7788e-10,8.7004e-10,8.361e-10,8.114e-10,7.5068e-10,6.5971e-10,5.8738e-10,3.4956e-10,1.1352e-10,8.0822e-11,7.8421e-11,7.649e-11,7.0555e-11,6.7451e-11,4.3905e-11,3.3015e-11,2.6803e-11,2.3841e-11,1.8653e-11,1.5126e-11,1.4546e-11,1.0819e-11,9.142e-12,7.4377e-12,5.3295e-12,3.4246e-12,3.3288e-12,2.8635e-12,2.5787e-12,2.46e-12,1.4841e-12,1.2914e-12,6.8284e-13,5.7154e-13,4.172e-13,3.5227e-13,3.3344e-13,2.47e-13,2.3757e-13,2.1818e-13,1.8106e-13,1.2666e-13 1,1.319e-09,1.8059e-09,1.8345e-09,2.0159e-09,2.1674e-09,2.3834e-09,2.8642e-09,4.4196e-09,5.8089e-09,6.0571e-09,7.5168e-09,7.7856e-09,8.9497e-09,1.2535e-08,1.3924e-08,1.4976e-08,2.0501e-08,2.1632e-08,2.2956e-08,2.8008e-08,2.8611e-08,2.8964e-08,3.3677e-08,3.6801e-08,3.6907e-08,4.3731e-08,4.441e-08,4.7933e-08,4.8416e-08,4.8891e-08,8.1737e-08,1.3257e-07,1.3844e-07,1.5939e-07,1.8066e-07,1.9904e-07,2.2321e-07,2.5489e-07,3.215e-07,3.6506e-07,4.483e-07,5.7935e-07,5.9315e-07,6.2358e-07,6.5304e-07,8.2939e-07,8.2969e-07,1.4562e-06,1.5175e-06,1.5527e-06,1.8331e-06,1.8555e-06,2.5625e-06,2.906e-06,3.0616e-06,3.4317e-06,3.6889e-06,4.1739e-06,4.3364e-06,5.8053e-06,6.9383e-06,1.2047e-05,1.3985e-05,1.4697e-05,1.6059e-05,2.0447e-05,2.1479e-05,2.2435e-05,2.7499e-05,3.3222e-05,3.5615e-05,3.7695e-05,4.625e-05,6.1908e-05,8.3789e-05,0.00010246,0.00010685,0.00015468,0.00017549,0.00018607,0.00019096,0.00021203,0.00032407,0.00032847,0.0003533,0.00039636,0.00040537,0.00047691,0.00073988,0.00074412,0.00084026,0.00087751,0.0014259,0.0016067,0.0016208,0.0018014,0.0020757,0.0020814,0.0021053,0.0022912,0.002293,0.0024746,0.0025483,0.0038468,0.0045872,0.0046144,0.005615,0.0059145,0.0064063,0.0066585,0.0068115,0.0069844,0.0070416,0.0071963,0.0078509,0.0079305,0.0080966,0.0082352,0.0093504,0.010772,0.01288,0.013763,0.01581,0.018405,0.019604,0.020249,0.028693,0.029841,0.03071,0.032496,0.034895,0.037093,0.038963,0.039303,0.039518,0.042016,0.04922,0.049788,0.05292,0.058093,0.061122,0.061625,0.081636,0.081874,0.086395,0.095804,0.0976,0.10453,0.10622,0.11864,0.12732,0.14881,0.14936,0.17711,0.1805,0.18159,0.20178,0.20312,0.2108,0.2212,0.22452,0.22705,0.23721,0.23892,0.24004,0.24837,0.25133,0.2521,0.25921,0.2618,0.27641,0.30169,0.30634,0.30758,0.31944,0.32441,0.34508,0.3829,0.39501,0.41449,0.42176,0.44219,0.46286,0.46457,0.46589,0.46604,0.47221,0.47273,0.49224,0.50127,0.51835,0.51911,0.52375,0.55369,0.55457,0.56891,0.58526,0.61449,0.61833,0.6293,0.63175,0.63794,0.64829,0.6641,0.66453,0.69998,0.7394,0.74351,0.74805,0.74945,0.77227,0.786,0.83044,0.83267,0.83713,0.84456,0.87099,0.89641,0.92149,0.92843,0.93243,0.94213,0.95957,0.96631,0.97416,0.98426,0.991,0.99202,0.9991,0.99951,0.99962,0.99997,1,0.99807,0.99606,0.99535,0.99527,0.99358,0.99089,0.98949,0.98884,0.97425,0.97422,0.95622,0.9304,0.902,0.87239,0.85867,0.85498,0.84624,0.83846,0.8196,0.81748,0.77924,0.76925,0.74893,0.72315,0.70728,0.70548,0.69246,0.68368,0.66199,0.62953,0.62647,0.61217,0.58961,0.57135,0.57049,0.50827,0.49827,0.4935,0.48131,0.47502,0.46518,0.44966,0.44345,0.43487,0.4212,0.40381,0.38754,0.38591,0.36655,0.35409,0.3433,0.31947,0.30892,0.30513,0.29193,0.29115,0.28548,0.283,0.25148,0.24378,0.24083,0.22767,0.22026,0.21915,0.20256,0.17323,0.16513,0.16106,0.15189,0.15112,0.14131,0.14027,0.12842,0.12182,0.10937,0.1083,0.1073,0.10674,0.10494,0.10349,0.10261,0.093716,0.091935,0.076368,0.071663,0.068678,0.067524,0.058557,0.058409,0.055685,0.054449,0.048579,0.048402,0.047987,0.044015,0.042967,0.042599,0.041498,0.040111,0.038836,0.038187,0.032289,0.032096,0.029348,0.025605,0.022469,0.018669,0.01862,0.017416,0.016,0.014285,0.014267,0.013714,0.011358,0.010866,0.010813,0.0086057,0.0081792,0.0079422,0.0072509,0.0066199,0.0055866,0.0054388,0.0047742,0.0035471,0.0035328,0.0034467,0.0032767,0.0031488,0.0029975,0.0028275,0.0016214,0.0013959,0.0011061,0.00092821,0.00092017,0.0009019,0.00069157,0.0006496,0.00064622,0.00049875,0.00031899,0.00031443,0.000275,0.00026745,0.00019573,0.00017918,0.00014755,0.00013322,0.00011893,0.00011632,0.00010156,9.9152e-05,9.8027e-05,7.1747e-05,6.5293e-05,6.2746e-05,5.511e-05,5.2893e-05,4.3778e-05,4.1919e-05,3.8406e-05,3.0833e-05,3.0769e-05,2.7665e-05,2.6687e-05,2.6686e-05,2.1066e-05,2.0909e-05,1.8953e-05,1.708e-05,1.359e-05,1.104e-05,9.4993e-06,7.4653e-06,5.9613e-06,4.4394e-06,4.3861e-06,3.488e-06,2.7931e-06,2.4482e-06,1.7147e-06,1.5434e-06,1.2448e-06,1.0953e-06,8.3707e-07,8.135e-07,7.6692e-07,6.6888e-07,5.0136e-07,3.7175e-07,3.169e-07,2.7001e-07,2.4829e-07,2.4537e-07,2.1061e-07,1.7638e-07,1.0199e-07,8.8021e-08,8.1139e-08,6.7743e-08,6.7659e-08,5.6593e-08,5.5346e-08,4.9003e-08,4.4426e-08,3.1869e-08,3.0366e-08,2.3371e-08,1.8287e-08,8.115e-09,6.9528e-09,6.4513e-09,5.2983e-09,4.4007e-09,4.1e-09,3.5583e-09,3.213e-09,2.8298e-09,2.2923e-09,2.2897e-09,1.5634e-09,1.4119e-09,1.3821e-09,1.3665e-09,9.232e-10,9.1496e-10,8.7931e-10,8.5336e-10,7.8958e-10,6.94e-10,6.1799e-10,3.68e-10,1.1967e-10,8.5232e-11,8.2703e-11,8.0669e-11,7.4417e-11,7.1146e-11,4.6332e-11,3.4852e-11,2.83e-11,2.5177e-11,1.9703e-11,1.5982e-11,1.537e-11,1.1435e-11,9.6644e-12,7.8645e-12,5.6373e-12,3.6241e-12,3.5228e-12,3.0309e-12,2.7297e-12,2.6042e-12,1.572e-12,1.368e-12,7.2386e-13,6.0598e-13,4.4249e-13,3.7368e-13,3.5373e-13,2.6211e-13,2.5212e-13,2.3155e-13,1.922e-13,1.345e-13 1,8.844e-10,1.2146e-09,1.234e-09,1.3573e-09,1.4603e-09,1.6073e-09,1.9351e-09,2.9989e-09,3.9525e-09,4.1232e-09,5.128e-09,5.3133e-09,6.1164e-09,8.5963e-09,9.5592e-09,1.0289e-08,1.4132e-08,1.4919e-08,1.5842e-08,1.9369e-08,1.9791e-08,2.0037e-08,2.3335e-08,2.5524e-08,2.5598e-08,3.0386e-08,3.0863e-08,3.3338e-08,3.3678e-08,3.4012e-08,5.7179e-08,9.3229e-08,9.7408e-08,1.1232e-07,1.2749e-07,1.4061e-07,1.5789e-07,1.8057e-07,2.2836e-07,2.5967e-07,3.1964e-07,4.143e-07,4.2428e-07,4.4631e-07,4.6764e-07,5.9559e-07,5.9581e-07,1.0527e-06,1.0976e-06,1.1233e-06,1.3289e-06,1.3453e-06,1.8652e-06,2.1185e-06,2.2334e-06,2.507e-06,2.6973e-06,3.0566e-06,3.1771e-06,4.269e-06,5.1137e-06,8.9426e-06,1.0401e-05,1.0938e-05,1.1965e-05,1.5284e-05,1.6066e-05,1.6791e-05,2.0638e-05,2.4997e-05,2.6823e-05,2.8412e-05,3.4959e-05,4.6986e-05,6.3869e-05,7.8328e-05,8.1732e-05,0.00011897,0.00013522,0.0001435,0.00014733,0.00016384,0.00025206,0.00025554,0.00027517,0.00030925,0.00031639,0.00037319,0.00058309,0.00058649,0.00066359,0.00069351,0.0011361,0.0012829,0.0012943,0.0014412,0.0016648,0.0016695,0.001689,0.0018409,0.0018423,0.0019909,0.0020513,0.00312,0.003733,0.0037555,0.0045871,0.0048366,0.0052469,0.0054576,0.0055855,0.0057301,0.0057779,0.0059075,0.006456,0.0065227,0.0066621,0.0067785,0.0077162,0.008915,0.010699,0.011449,0.013191,0.015408,0.016434,0.016987,0.024262,0.025256,0.026009,0.027559,0.029644,0.031557,0.033188,0.033485,0.033673,0.035856,0.042169,0.042669,0.045423,0.049984,0.05266,0.053106,0.070887,0.071099,0.075138,0.083566,0.085178,0.091408,0.092929,0.10414,0.112,0.13154,0.13204,0.15745,0.16056,0.16156,0.18018,0.18141,0.18852,0.19816,0.20124,0.20359,0.21304,0.21463,0.21568,0.22344,0.2262,0.22693,0.23357,0.23599,0.24968,0.27347,0.27784,0.27902,0.29022,0.29493,0.31453,0.3506,0.36219,0.38091,0.38791,0.40762,0.42764,0.42929,0.43058,0.43072,0.43672,0.43723,0.45622,0.46503,0.48174,0.48249,0.48704,0.51648,0.51734,0.53151,0.5477,0.57679,0.58062,0.59158,0.59403,0.60024,0.61063,0.62654,0.62697,0.66287,0.70315,0.70737,0.71204,0.71349,0.73706,0.75133,0.79799,0.80035,0.80509,0.81299,0.84134,0.86903,0.89686,0.90468,0.90923,0.92033,0.94075,0.94886,0.95854,0.97153,0.98085,0.98233,0.99453,0.99562,0.99599,0.99755,0.99807,1,0.99964,0.99941,0.99938,0.99869,0.99733,0.99655,0.99617,0.98628,0.98626,0.97231,0.9508,0.92606,0.89947,0.88695,0.88357,0.87552,0.86831,0.85075,0.84877,0.81266,0.80315,0.78369,0.75882,0.74343,0.74167,0.72898,0.7204,0.69912,0.66706,0.66403,0.64982,0.62733,0.60904,0.60818,0.54536,0.5352,0.53034,0.51791,0.51149,0.50142,0.48551,0.47914,0.4703,0.45622,0.43824,0.42138,0.41969,0.39954,0.38655,0.37527,0.35027,0.33917,0.33518,0.32125,0.32041,0.31442,0.3118,0.27832,0.27011,0.26696,0.25289,0.24495,0.24376,0.22594,0.19425,0.18546,0.18104,0.17105,0.17021,0.15951,0.15837,0.14539,0.13814,0.12443,0.12324,0.12213,0.12152,0.11953,0.11792,0.11695,0.10709,0.10512,0.087771,0.082506,0.07916,0.077865,0.06778,0.067613,0.06454,0.063143,0.056501,0.0563,0.055829,0.051319,0.050127,0.049709,0.048455,0.046875,0.045421,0.04468,0.037932,0.03771,0.034555,0.030243,0.026619,0.022208,0.022151,0.02075,0.019097,0.017092,0.017071,0.016423,0.013656,0.013076,0.013014,0.010405,0.0098999,0.0096187,0.0087974,0.0080462,0.0068128,0.0066359,0.0058397,0.0043629,0.0043457,0.0042418,0.0040363,0.0038816,0.0036983,0.0034923,0.0020225,0.0017457,0.0013888,0.0011689,0.0011589,0.0011363,0.0008751,0.00082283,0.00081862,0.00063444,0.00040864,0.00040289,0.00035309,0.00034354,0.00025261,0.00023156,0.00019123,0.00017293,0.00015464,0.0001513,0.00013236,0.00012926,0.00012781,9.3969e-05,8.5631e-05,8.2337e-05,7.2449e-05,6.9575e-05,5.7737e-05,5.5319e-05,5.0744e-05,4.0861e-05,4.0777e-05,3.6717e-05,3.5436e-05,3.5435e-05,2.8062e-05,2.7855e-05,2.5283e-05,2.2815e-05,1.8209e-05,1.4832e-05,1.2787e-05,1.008e-05,8.0728e-06,6.0341e-06,5.9627e-06,4.7553e-06,3.8184e-06,3.3522e-06,2.3582e-06,2.1252e-06,1.7185e-06,1.5144e-06,1.161e-06,1.1287e-06,1.0648e-06,9.3018e-07,6.9956e-07,5.205e-07,4.4452e-07,3.7943e-07,3.4924e-07,3.4518e-07,2.9679e-07,2.4904e-07,1.4489e-07,1.2524e-07,1.1555e-07,9.6662e-08,9.6543e-08,8.091e-08,7.9145e-08,7.0167e-08,6.3679e-08,4.5842e-08,4.3702e-08,3.3728e-08,2.6459e-08,1.184e-08,1.016e-08,9.4346e-09,7.7638e-09,6.4606e-09,6.0235e-09,5.2351e-09,4.7318e-09,4.1727e-09,3.3871e-09,3.3833e-09,2.3188e-09,2.0962e-09,2.0525e-09,2.0295e-09,1.3763e-09,1.3642e-09,1.3115e-09,1.2732e-09,1.1789e-09,1.0375e-09,9.2487e-10,5.5346e-10,1.8187e-10,1.2994e-10,1.2612e-10,1.2304e-10,1.1359e-10,1.0864e-10,7.1026e-11,5.3564e-11,4.3576e-11,3.8807e-11,3.0436e-11,2.4733e-11,2.3794e-11,1.7748e-11,1.5023e-11,1.2247e-11,8.804e-12,5.6814e-12,5.524e-12,4.7588e-12,4.2897e-12,4.0941e-12,2.4819e-12,2.1625e-12,1.1503e-12,9.6442e-13,7.0606e-13,5.9709e-13,5.6547e-13,4.2004e-13,4.0415e-13,3.7144e-13,3.0878e-13,2.167e-13 1,7.4431e-10,1.0235e-09,1.04e-09,1.1443e-09,1.2316e-09,1.3561e-09,1.6339e-09,2.5368e-09,3.3474e-09,3.4926e-09,4.3478e-09,4.5056e-09,5.1898e-09,7.3048e-09,8.1268e-09,8.7505e-09,1.2035e-08,1.2708e-08,1.3499e-08,1.6518e-08,1.6879e-08,1.7091e-08,1.9917e-08,2.1794e-08,2.1858e-08,2.5966e-08,2.6376e-08,2.8501e-08,2.8793e-08,2.908e-08,4.9003e-08,8.0081e-08,8.3688e-08,9.6567e-08,1.0967e-07,1.2102e-07,1.3596e-07,1.5559e-07,1.9699e-07,2.2414e-07,2.7618e-07,3.5843e-07,3.6711e-07,3.8626e-07,4.0482e-07,5.162e-07,5.1639e-07,9.1499e-07,9.5422e-07,9.7671e-07,1.1564e-06,1.1708e-06,1.626e-06,1.848e-06,1.9488e-06,2.1888e-06,2.3559e-06,2.6715e-06,2.7774e-06,3.7377e-06,4.4817e-06,7.8613e-06,9.1512e-06,9.6261e-06,1.0536e-05,1.3477e-05,1.417e-05,1.4813e-05,1.8228e-05,2.2103e-05,2.3727e-05,2.5141e-05,3.0972e-05,4.17e-05,5.6788e-05,6.9732e-05,7.278e-05,0.00010619,0.00012079,0.00012824,0.00013168,0.00014654,0.00022606,0.0002292,0.00024693,0.00027773,0.00028419,0.00033557,0.00052591,0.000529,0.00059905,0.00062625,0.0010296,0.0011635,0.001174,0.0013083,0.0015128,0.0015172,0.001535,0.0016742,0.0016755,0.0018117,0.0018671,0.002849,0.0034135,0.0034342,0.0042014,0.0044319,0.004811,0.0050059,0.0051242,0.0052579,0.0053022,0.0054221,0.0059299,0.0059917,0.0061209,0.0062287,0.0070982,0.0082111,0.0098704,0.010569,0.012192,0.014261,0.01522,0.015737,0.022553,0.023487,0.024194,0.02565,0.027611,0.029411,0.030947,0.031227,0.031404,0.033461,0.03942,0.039891,0.042495,0.04681,0.049344,0.049767,0.066647,0.066849,0.070692,0.07872,0.080257,0.0862,0.087653,0.098365,0.10588,0.12462,0.1251,0.14953,0.15253,0.15349,0.17144,0.17264,0.17949,0.18882,0.19179,0.19407,0.20321,0.20476,0.20577,0.21329,0.21597,0.21667,0.22311,0.22546,0.23875,0.26188,0.26615,0.26729,0.27821,0.2828,0.30193,0.33721,0.34857,0.36693,0.3738,0.39318,0.41289,0.41452,0.41578,0.41593,0.42184,0.42234,0.44108,0.44978,0.4663,0.46704,0.47154,0.50072,0.50157,0.51563,0.53173,0.56068,0.56451,0.57544,0.57789,0.58408,0.59446,0.61038,0.61081,0.64681,0.68735,0.69161,0.69632,0.69778,0.72162,0.73608,0.78355,0.78596,0.7908,0.79888,0.82797,0.85654,0.88546,0.89364,0.8984,0.91006,0.9317,0.94036,0.95079,0.96498,0.97537,0.97706,0.99141,0.99279,0.99326,0.99534,0.99606,0.99964,1,0.99997,0.99996,0.9997,0.99892,0.9984,0.99814,0.99031,0.99029,0.97812,0.95855,0.93545,0.91025,0.89828,0.89505,0.88732,0.88039,0.86344,0.86152,0.82644,0.81716,0.79812,0.77372,0.75857,0.75684,0.74433,0.73586,0.71481,0.68301,0.68,0.66587,0.64346,0.6252,0.62434,0.56141,0.55119,0.5463,0.5338,0.52734,0.51719,0.50114,0.49471,0.48578,0.47154,0.45335,0.43625,0.43454,0.41409,0.40087,0.3894,0.36393,0.3526,0.34853,0.33429,0.33344,0.32732,0.32463,0.29034,0.28191,0.27868,0.26423,0.25606,0.25484,0.23648,0.20378,0.19469,0.19012,0.17978,0.17891,0.16781,0.16662,0.15315,0.14561,0.13134,0.1301,0.12895,0.12831,0.12623,0.12456,0.12355,0.11326,0.11119,0.093053,0.087536,0.084027,0.08267,0.072078,0.071903,0.068671,0.067202,0.060207,0.059996,0.0595,0.054744,0.053486,0.053045,0.051721,0.050052,0.048516,0.047733,0.040594,0.040359,0.037015,0.032441,0.028589,0.023895,0.023833,0.02234,0.020577,0.018436,0.018414,0.01772,0.01476,0.014139,0.014072,0.011274,0.010731,0.010429,0.0095458,0.0087375,0.0074086,0.0072179,0.0063586,0.0047619,0.0047433,0.0046308,0.0044083,0.0042406,0.0040419,0.0038185,0.0022207,0.0019189,0.0015293,0.0012887,0.0012778,0.001253,0.00096682,0.00090946,0.00090484,0.00070252,0.00045385,0.00044751,0.00039254,0.000382,0.00028146,0.00025815,0.00021346,0.00019315,0.00017284,0.00016913,0.00014809,0.00014464,0.00014303,0.00010536,9.6067e-05,9.2394e-05,8.1362e-05,7.8153e-05,6.4929e-05,6.2226e-05,5.7109e-05,4.6046e-05,4.5952e-05,4.1403e-05,3.9967e-05,3.9965e-05,3.1693e-05,3.146e-05,2.8572e-05,2.5798e-05,2.0616e-05,1.6812e-05,1.4507e-05,1.1451e-05,9.1818e-06,6.874e-06,6.793e-06,5.4241e-06,4.3606e-06,3.8309e-06,2.6999e-06,2.4345e-06,1.9708e-06,1.7379e-06,1.3342e-06,1.2972e-06,1.2241e-06,1.0701e-06,8.0593e-07,6.0053e-07,5.1326e-07,4.3845e-07,4.0373e-07,3.9906e-07,3.4337e-07,2.8837e-07,1.682e-07,1.4549e-07,1.3429e-07,1.1243e-07,1.1229e-07,9.4189e-08,9.2144e-08,8.1737e-08,7.4212e-08,5.3505e-08,5.1019e-08,3.9422e-08,3.0959e-08,1.3904e-08,1.1939e-08,1.109e-08,9.134e-09,7.6069e-09,7.0944e-09,6.1695e-09,5.5788e-09,4.9223e-09,3.9992e-09,3.9947e-09,2.7422e-09,2.48e-09,2.4285e-09,2.4015e-09,1.6312e-09,1.6168e-09,1.5547e-09,1.5094e-09,1.3981e-09,1.231e-09,1.098e-09,6.5843e-10,2.1734e-10,1.5548e-10,1.5093e-10,1.4727e-10,1.3599e-10,1.3009e-10,8.5192e-11,6.4318e-11,5.2366e-11,4.6656e-11,3.6626e-11,2.9787e-11,2.866e-11,2.1402e-11,1.8127e-11,1.4788e-11,1.0644e-11,6.8803e-12,6.6903e-12,5.7667e-12,5.2003e-12,4.964e-12,3.0148e-12,2.6281e-12,1.4012e-12,1.1755e-12,8.6154e-13,7.2902e-13,6.9054e-13,5.1348e-13,4.9413e-13,4.5427e-13,3.7788e-13,2.6553e-13 1,7.0803e-10,9.7403e-10,9.8966e-10,1.0891e-09,1.1722e-09,1.2909e-09,1.5557e-09,2.4167e-09,3.1901e-09,3.3286e-09,4.1448e-09,4.2954e-09,4.9485e-09,6.9682e-09,7.7534e-09,8.3492e-09,1.1487e-08,1.2131e-08,1.2887e-08,1.5773e-08,1.6119e-08,1.6321e-08,1.9024e-08,2.0819e-08,2.088e-08,2.481e-08,2.5202e-08,2.7235e-08,2.7515e-08,2.7789e-08,4.686e-08,7.663e-08,8.0086e-08,9.2428e-08,1.0499e-07,1.1587e-07,1.302e-07,1.4902e-07,1.8873e-07,2.1478e-07,2.6473e-07,3.4369e-07,3.5202e-07,3.7042e-07,3.8824e-07,4.9523e-07,4.9541e-07,8.7854e-07,9.1627e-07,9.3789e-07,1.1107e-06,1.1246e-06,1.5625e-06,1.7763e-06,1.8733e-06,2.1043e-06,2.2652e-06,2.5692e-06,2.6712e-06,3.5964e-06,4.3135e-06,7.5729e-06,8.8177e-06,9.276e-06,1.0154e-05,1.2994e-05,1.3663e-05,1.4284e-05,1.7583e-05,2.1328e-05,2.2898e-05,2.4265e-05,2.9903e-05,4.0281e-05,5.4885e-05,6.7419e-05,7.0372e-05,0.00010274,0.0001169,0.00012412,0.00012746,0.00014187,0.00021903,0.00022208,0.00023929,0.0002692,0.00027547,0.00032538,0.00051038,0.00051339,0.00058152,0.00060798,0.0010005,0.001131,0.0011412,0.001272,0.0014714,0.0014756,0.001493,0.0016286,0.0016299,0.0017627,0.0018167,0.0027747,0.0033259,0.0033462,0.0040956,0.0043208,0.0046913,0.0048818,0.0049974,0.0051282,0.0051715,0.0052887,0.0057853,0.0058457,0.005972,0.0060774,0.0069281,0.0080172,0.0096417,0.010326,0.011916,0.013944,0.014884,0.015391,0.022079,0.022996,0.02369,0.02512,0.027046,0.028815,0.030324,0.030599,0.030773,0.032795,0.038654,0.039118,0.041679,0.045925,0.048419,0.048835,0.065461,0.06566,0.069447,0.077362,0.078878,0.08474,0.086173,0.096744,0.10417,0.12267,0.12315,0.1473,0.15026,0.15121,0.16898,0.17016,0.17694,0.18617,0.18912,0.19138,0.20043,0.20196,0.20296,0.21041,0.21307,0.21376,0.22015,0.22247,0.23565,0.25859,0.26282,0.26396,0.27479,0.27935,0.29834,0.33339,0.34468,0.36294,0.36977,0.38906,0.40867,0.41029,0.41155,0.4117,0.41758,0.41808,0.43674,0.44541,0.46187,0.46261,0.4671,0.49619,0.49704,0.51107,0.52713,0.55604,0.55986,0.57078,0.57323,0.57942,0.58979,0.60571,0.60614,0.64216,0.68276,0.68703,0.69175,0.69322,0.71712,0.73164,0.77932,0.78175,0.78661,0.79475,0.82403,0.85285,0.88208,0.89035,0.89517,0.907,0.92898,0.9378,0.94844,0.96297,0.97367,0.97541,0.99038,0.99184,0.99235,0.99457,0.99535,0.99941,0.99997,1,1,0.99986,0.99925,0.99881,0.99858,0.99134,0.99133,0.97968,0.96067,0.93806,0.91327,0.90147,0.89827,0.89064,0.88379,0.86702,0.86512,0.83036,0.82115,0.80224,0.77798,0.7629,0.76118,0.74872,0.74029,0.71932,0.6876,0.6846,0.67049,0.64811,0.62986,0.62901,0.56606,0.55583,0.55093,0.53841,0.53193,0.52177,0.50568,0.49923,0.49029,0.476,0.45775,0.44059,0.43887,0.41833,0.40506,0.39353,0.36793,0.35653,0.35244,0.33812,0.33726,0.3311,0.3284,0.29387,0.28538,0.28213,0.26756,0.25933,0.2581,0.23959,0.20659,0.19742,0.1928,0.18236,0.18147,0.17026,0.16907,0.15544,0.14783,0.13339,0.13214,0.13097,0.13032,0.12822,0.12653,0.1255,0.11509,0.113,0.094625,0.089034,0.085477,0.084101,0.07336,0.073183,0.069904,0.068413,0.061315,0.061101,0.060597,0.055768,0.054491,0.054043,0.052698,0.051003,0.049442,0.048647,0.041392,0.041154,0.037754,0.033101,0.029182,0.024402,0.02434,0.022819,0.021023,0.018841,0.018818,0.018112,0.015093,0.01446,0.014391,0.011537,0.010983,0.010674,0.0097724,0.0089469,0.0075892,0.0073944,0.0065161,0.0048833,0.0048642,0.0047491,0.0045214,0.0043498,0.0041465,0.0039178,0.0022813,0.0019719,0.0015722,0.0013254,0.0013142,0.0012888,0.00099493,0.00093603,0.00093129,0.00072342,0.00046777,0.00046124,0.00040469,0.00039384,0.00029036,0.00026636,0.00022032,0.0001994,0.00017847,0.00017464,0.00015295,0.0001494,0.00014774,0.00010889,9.93e-05,9.551e-05,8.4125e-05,8.0813e-05,6.716e-05,6.437e-05,5.9085e-05,4.7657e-05,4.756e-05,4.286e-05,4.1375e-05,4.1373e-05,3.2823e-05,3.2582e-05,2.9596e-05,2.6727e-05,2.1366e-05,1.743e-05,1.5043e-05,1.1879e-05,9.5285e-06,7.1368e-06,7.0529e-06,5.6336e-06,4.5305e-06,3.981e-06,2.8072e-06,2.5316e-06,2.0501e-06,1.8081e-06,1.3887e-06,1.3502e-06,1.2743e-06,1.1142e-06,8.3947e-07,6.2579e-07,5.3497e-07,4.571e-07,4.2094e-07,4.1608e-07,3.5809e-07,3.0081e-07,1.7559e-07,1.5192e-07,1.4023e-07,1.1744e-07,1.1729e-07,9.8404e-08,9.6271e-08,8.5411e-08,7.7559e-08,5.5943e-08,5.3346e-08,4.1234e-08,3.2393e-08,1.4563e-08,1.2508e-08,1.1619e-08,9.572e-09,7.9734e-09,7.4369e-09,6.4685e-09,5.85e-09,5.1624e-09,4.1953e-09,4.1906e-09,2.878e-09,2.6032e-09,2.5491e-09,2.5208e-09,1.7131e-09,1.698e-09,1.6328e-09,1.5853e-09,1.4685e-09,1.2933e-09,1.1536e-09,6.9222e-10,2.2879e-10,1.6374e-10,1.5895e-10,1.5509e-10,1.4324e-10,1.3703e-10,8.9776e-11,6.7801e-11,5.5214e-11,4.92e-11,3.8633e-11,3.1427e-11,3.024e-11,2.2588e-11,1.9135e-11,1.5615e-11,1.1243e-11,7.2707e-12,7.0702e-12,6.0951e-12,5.497e-12,5.2475e-12,3.1886e-12,2.78e-12,1.4832e-12,1.2445e-12,9.1242e-13,7.722e-13,7.3149e-13,5.4409e-13,5.2361e-13,4.8142e-13,4.0053e-13,2.8155e-13 1,7.0444e-10,9.6913e-10,9.8468e-10,1.0836e-09,1.1664e-09,1.2845e-09,1.548e-09,2.4049e-09,3.1745e-09,3.3124e-09,4.1247e-09,4.2746e-09,4.9246e-09,6.9349e-09,7.7164e-09,8.3094e-09,1.1433e-08,1.2074e-08,1.2826e-08,1.57e-08,1.6043e-08,1.6244e-08,1.8935e-08,2.0722e-08,2.0783e-08,2.4695e-08,2.5085e-08,2.711e-08,2.7388e-08,2.7661e-08,4.6648e-08,7.6287e-08,7.9728e-08,9.2018e-08,1.0452e-07,1.1536e-07,1.2962e-07,1.4837e-07,1.8791e-07,2.1385e-07,2.6359e-07,3.4222e-07,3.5052e-07,3.6884e-07,3.8659e-07,4.9315e-07,4.9333e-07,8.7492e-07,9.125e-07,9.3404e-07,1.1062e-06,1.12e-06,1.5562e-06,1.7691e-06,1.8658e-06,2.0959e-06,2.2562e-06,2.559e-06,2.6606e-06,3.5823e-06,4.2967e-06,7.5442e-06,8.7844e-06,9.2411e-06,1.0116e-05,1.2945e-05,1.3612e-05,1.4232e-05,1.7519e-05,2.125e-05,2.2815e-05,2.4178e-05,2.9796e-05,4.014e-05,5.4695e-05,6.7188e-05,7.0132e-05,0.0001024,0.00011651,0.00012371,0.00012703,0.0001414,0.00021833,0.00022137,0.00023853,0.00026835,0.0002746,0.00032436,0.00050883,0.00051183,0.00057977,0.00060615,0.00099764,0.0011278,0.0011379,0.0012684,0.0014672,0.0014714,0.0014888,0.0016241,0.0016253,0.0017578,0.0018117,0.0027673,0.0033171,0.0033374,0.004085,0.0043096,0.0046793,0.0048694,0.0049847,0.0051152,0.0051584,0.0052753,0.0057708,0.0058311,0.0059571,0.0060623,0.006911,0.0079977,0.0096188,0.010301,0.011888,0.013912,0.01485,0.015356,0.022032,0.022946,0.023639,0.025067,0.026989,0.028755,0.030261,0.030536,0.03071,0.032728,0.038577,0.03904,0.041597,0.045836,0.048326,0.048741,0.065342,0.06554,0.069322,0.077225,0.078739,0.084593,0.086024,0.09658,0.10399,0.12248,0.12295,0.14707,0.15003,0.15098,0.16873,0.16991,0.17669,0.18591,0.18885,0.1911,0.20015,0.20168,0.20268,0.21012,0.21277,0.21347,0.21985,0.22217,0.23534,0.25826,0.26249,0.26362,0.27445,0.279,0.29798,0.33301,0.34429,0.36254,0.36937,0.38864,0.40825,0.40986,0.41112,0.41127,0.41715,0.41765,0.4363,0.44497,0.46142,0.46216,0.46665,0.49573,0.49658,0.5106,0.52666,0.55557,0.55939,0.57031,0.57275,0.57894,0.58932,0.60523,0.60567,0.64168,0.68229,0.68656,0.69129,0.69275,0.71667,0.73118,0.77889,0.78132,0.78619,0.79432,0.82363,0.85247,0.88173,0.89002,0.89484,0.90668,0.9287,0.93754,0.9482,0.96276,0.97349,0.97524,0.99027,0.99174,0.99225,0.99449,0.99527,0.99938,0.99996,1,1,0.99987,0.99928,0.99885,0.99862,0.99144,0.99143,0.97983,0.96088,0.93832,0.91358,0.90179,0.8986,0.89098,0.88413,0.86739,0.86549,0.83075,0.82155,0.80266,0.77841,0.76334,0.76162,0.74917,0.74074,0.71977,0.68807,0.68506,0.67096,0.64858,0.63034,0.62948,0.56653,0.5563,0.5514,0.53888,0.5324,0.52223,0.50614,0.49969,0.49074,0.47646,0.45819,0.44103,0.43931,0.41876,0.40548,0.39395,0.36833,0.35693,0.35283,0.33851,0.33765,0.33148,0.32878,0.29423,0.28574,0.28248,0.2679,0.25967,0.25843,0.23991,0.20688,0.1977,0.19308,0.18262,0.18174,0.17051,0.16932,0.15568,0.14805,0.1336,0.13235,0.13118,0.13053,0.12843,0.12673,0.1257,0.11528,0.11319,0.094786,0.089188,0.085626,0.084248,0.073491,0.073314,0.070031,0.068538,0.061428,0.061214,0.060709,0.055873,0.054593,0.054145,0.052798,0.0511,0.049537,0.048741,0.041473,0.041235,0.037829,0.033169,0.029242,0.024455,0.024392,0.022868,0.021068,0.018883,0.01886,0.018152,0.015128,0.014493,0.014424,0.011564,0.011008,0.010699,0.0097957,0.0089684,0.0076078,0.0074125,0.0065323,0.0048957,0.0048766,0.0047612,0.004533,0.004361,0.0041573,0.003928,0.0022875,0.0019773,0.0015766,0.0013291,0.0013179,0.0012924,0.00099783,0.00093877,0.00093401,0.00072558,0.0004692,0.00046265,0.00040594,0.00039506,0.00029127,0.0002672,0.00022103,0.00020004,0.00017905,0.00017521,0.00015345,0.00014989,0.00014823,0.00010925,9.9634e-05,9.5832e-05,8.4411e-05,8.1088e-05,6.7391e-05,6.4591e-05,5.929e-05,4.7824e-05,4.7726e-05,4.301e-05,4.1521e-05,4.1519e-05,3.294e-05,3.2698e-05,2.9701e-05,2.6823e-05,2.1444e-05,1.7494e-05,1.5099e-05,1.1924e-05,9.5644e-06,7.1641e-06,7.0799e-06,5.6554e-06,4.5482e-06,3.9966e-06,2.8183e-06,2.5417e-06,2.0583e-06,1.8154e-06,1.3943e-06,1.3557e-06,1.2795e-06,1.1187e-06,8.4295e-07,6.2841e-07,5.3722e-07,4.5903e-07,4.2273e-07,4.1785e-07,3.5962e-07,3.021e-07,1.7636e-07,1.5258e-07,1.4085e-07,1.1796e-07,1.1781e-07,9.8842e-08,9.67e-08,8.5793e-08,7.7907e-08,5.6196e-08,5.3588e-08,4.1423e-08,3.2542e-08,1.4631e-08,1.2567e-08,1.1674e-08,9.6176e-09,8.0116e-09,7.4726e-09,6.4997e-09,5.8782e-09,5.1874e-09,4.2157e-09,4.211e-09,2.8922e-09,2.616e-09,2.5617e-09,2.5332e-09,1.7216e-09,1.7065e-09,1.641e-09,1.5933e-09,1.4759e-09,1.2998e-09,1.1594e-09,6.9575e-10,2.2999e-10,1.646e-10,1.5979e-10,1.5591e-10,1.4399e-10,1.3775e-10,9.0256e-11,6.8165e-11,5.5512e-11,4.9466e-11,3.8843e-11,3.1598e-11,3.0405e-11,2.2712e-11,1.9241e-11,1.5701e-11,1.1306e-11,7.3115e-12,7.1099e-12,6.1295e-12,5.5281e-12,5.2772e-12,3.2069e-12,2.796e-12,1.4918e-12,1.2517e-12,9.1775e-13,7.7673e-13,7.3578e-13,5.473e-13,5.267e-13,4.8426e-13,4.0291e-13,2.8323e-13 1,6.3421e-10,8.7321e-10,8.8725e-10,9.7666e-10,1.0514e-09,1.1582e-09,1.3964e-09,2.1718e-09,2.8689e-09,2.9938e-09,3.7302e-09,3.8661e-09,4.4557e-09,6.2801e-09,6.9898e-09,7.5285e-09,1.0368e-08,1.095e-08,1.1634e-08,1.4248e-08,1.4561e-08,1.4744e-08,1.7193e-08,1.8821e-08,1.8876e-08,2.244e-08,2.2795e-08,2.464e-08,2.4894e-08,2.5143e-08,4.2462e-08,6.9538e-08,7.2683e-08,8.3921e-08,9.5361e-08,1.0527e-07,1.1833e-07,1.355e-07,1.7173e-07,1.9551e-07,2.4113e-07,3.133e-07,3.2092e-07,3.3775e-07,3.5405e-07,4.5196e-07,4.5213e-07,8.0324e-07,8.3785e-07,8.5769e-07,1.0163e-06,1.029e-06,1.4313e-06,1.6277e-06,1.7169e-06,1.9295e-06,2.0775e-06,2.3572e-06,2.4511e-06,3.3035e-06,3.9646e-06,6.9739e-06,8.1245e-06,8.5483e-06,9.3604e-06,1.1989e-05,1.2608e-05,1.3184e-05,1.6241e-05,1.9713e-05,2.117e-05,2.2439e-05,2.7674e-05,3.732e-05,5.091e-05,6.2586e-05,6.5338e-05,9.5533e-05,0.00010875,0.0001155,0.00011862,0.00013208,0.00020429,0.00020714,0.00022326,0.00025129,0.00025717,0.00030398,0.00047774,0.00048056,0.00054463,0.00056952,0.00093935,0.0010625,0.0010721,0.0011956,0.0013839,0.0013879,0.0014043,0.0015325,0.0015337,0.0016593,0.0017104,0.0026177,0.0031405,0.0031597,0.0038713,0.0040853,0.0044375,0.0046187,0.0047286,0.004853,0.0048942,0.0050057,0.0054783,0.0055358,0.0056561,0.0057565,0.0065667,0.0076051,0.0091554,0.0098086,0.011328,0.013268,0.014168,0.014654,0.021067,0.021947,0.022614,0.023988,0.025839,0.02754,0.028991,0.029256,0.029424,0.03137,0.037014,0.037461,0.039931,0.044028,0.046436,0.046837,0.062913,0.063106,0.066773,0.074443,0.075913,0.081598,0.082989,0.093253,0.10047,0.11847,0.11893,0.14247,0.14536,0.1463,0.16364,0.16479,0.17143,0.18045,0.18334,0.18554,0.19441,0.19591,0.19689,0.20419,0.20678,0.20747,0.21372,0.216,0.22893,0.25145,0.25561,0.25672,0.26737,0.27185,0.29054,0.32508,0.33622,0.35424,0.36099,0.38005,0.39946,0.40106,0.40231,0.40245,0.40828,0.40877,0.42726,0.43585,0.45218,0.45292,0.45737,0.48627,0.48711,0.50106,0.51705,0.54585,0.54966,0.56055,0.56299,0.56917,0.57953,0.59543,0.59587,0.63191,0.67263,0.67692,0.68167,0.68314,0.70718,0.7218,0.76995,0.7724,0.77732,0.78556,0.81528,0.84461,0.8745,0.88299,0.88794,0.9001,0.92282,0.93199,0.94309,0.95836,0.96972,0.97159,0.98791,0.98955,0.99012,0.99267,0.99358,0.99869,0.9997,0.99986,0.99987,1,0.99976,0.99949,0.99934,0.99342,0.99341,0.9829,0.96515,0.94362,0.91975,0.90832,0.90522,0.8978,0.89114,0.87478,0.87292,0.83886,0.82981,0.8112,0.78726,0.77236,0.77066,0.75833,0.74997,0.72917,0.69766,0.69467,0.68062,0.65832,0.64011,0.63926,0.5763,0.56605,0.56114,0.54858,0.54208,0.53187,0.51571,0.50923,0.50023,0.48586,0.46748,0.45019,0.44845,0.42773,0.41433,0.40268,0.37679,0.36526,0.36111,0.34661,0.34574,0.33949,0.33676,0.30172,0.2931,0.28979,0.27498,0.26661,0.26536,0.24651,0.21287,0.20351,0.19879,0.18812,0.18722,0.17575,0.17453,0.16058,0.15278,0.13798,0.1367,0.1355,0.13484,0.13268,0.13094,0.12989,0.1192,0.11705,0.098157,0.092401,0.088737,0.087319,0.076245,0.076063,0.07268,0.071141,0.06381,0.063588,0.063068,0.058077,0.056755,0.056292,0.054901,0.053147,0.051532,0.050709,0.043193,0.042947,0.039421,0.034593,0.030522,0.025552,0.025486,0.023903,0.022033,0.01976,0.019736,0.018999,0.01585,0.015188,0.015117,0.012134,0.011554,0.011232,0.010288,0.0094234,0.0080006,0.0077962,0.0068749,0.00516,0.00514,0.0050189,0.0047795,0.0045991,0.0043852,0.0041445,0.0024198,0.0020931,0.0016707,0.0014095,0.0013976,0.0013707,0.0010595,0.00099702,0.00099199,0.00077145,0.00049978,0.00049283,0.00043265,0.0004211,0.00031086,0.00028527,0.00023615,0.00021381,0.00019146,0.00018737,0.00016418,0.00016039,0.00015861,0.00011704,0.00010678,0.00010272,9.0518e-05,8.6968e-05,7.2327e-05,6.9333e-05,6.3662e-05,5.1391e-05,5.1287e-05,4.6236e-05,4.4641e-05,4.4639e-05,3.5444e-05,3.5185e-05,3.1971e-05,2.8884e-05,2.3109e-05,1.8866e-05,1.6291e-05,1.2876e-05,1.0336e-05,7.7492e-06,7.6585e-06,6.1221e-06,4.927e-06,4.3313e-06,3.0578e-06,2.7586e-06,2.2354e-06,1.9724e-06,1.5161e-06,1.4743e-06,1.3917e-06,1.2173e-06,9.1804e-07,6.8499e-07,5.8587e-07,5.0084e-07,4.6135e-07,4.5604e-07,3.9266e-07,3.3003e-07,1.9296e-07,1.6702e-07,1.5421e-07,1.2921e-07,1.2905e-07,1.0833e-07,1.0599e-07,9.4065e-08,8.5441e-08,6.1687e-08,5.8833e-08,4.5509e-08,3.5776e-08,1.6121e-08,1.3851e-08,1.287e-08,1.0608e-08,8.8412e-09,8.2479e-09,7.1767e-09,6.4922e-09,5.7311e-09,4.6601e-09,4.6549e-09,3.2002e-09,2.8953e-09,2.8354e-09,2.804e-09,1.9075e-09,1.8907e-09,1.8183e-09,1.7656e-09,1.6359e-09,1.4411e-09,1.2859e-09,7.7262e-10,2.561e-10,1.8343e-10,1.7808e-10,1.7377e-10,1.6052e-10,1.5358e-10,1.0073e-10,7.6123e-11,6.2023e-11,5.5283e-11,4.3436e-11,3.5351e-11,3.4019e-11,2.5429e-11,2.155e-11,1.7594e-11,1.2678e-11,8.2074e-12,7.9816e-12,6.8832e-12,6.2093e-12,5.9281e-12,3.6064e-12,3.1453e-12,1.6805e-12,1.4106e-12,1.0349e-12,8.7623e-13,8.3013e-13,6.1787e-13,5.9467e-13,5.4685e-13,4.5516e-13,3.202e-13 1,5.5029e-10,7.5847e-10,7.7071e-10,8.4865e-10,9.1383e-10,1.0069e-09,1.2149e-09,1.8923e-09,2.5021e-09,2.6115e-09,3.2562e-09,3.3753e-09,3.892e-09,5.4922e-09,6.1152e-09,6.5882e-09,9.0831e-09,9.5956e-09,1.0197e-08,1.2497e-08,1.2773e-08,1.2934e-08,1.5091e-08,1.6525e-08,1.6574e-08,1.9715e-08,2.0028e-08,2.1656e-08,2.1879e-08,2.2099e-08,3.7394e-08,6.1352e-08,6.4138e-08,7.4095e-08,8.4237e-08,9.3028e-08,1.0462e-07,1.1985e-07,1.5204e-07,1.7318e-07,2.1377e-07,2.7804e-07,2.8483e-07,2.9983e-07,3.1435e-07,4.0168e-07,4.0183e-07,7.1556e-07,7.4652e-07,7.6427e-07,9.0623e-07,9.1763e-07,1.2781e-06,1.4543e-06,1.5344e-06,1.7251e-06,1.8581e-06,2.1094e-06,2.1938e-06,2.9605e-06,3.5557e-06,6.2704e-06,7.3099e-06,7.693e-06,8.4273e-06,1.0806e-05,1.1367e-05,1.1888e-05,1.4659e-05,1.7809e-05,1.9132e-05,2.0284e-05,2.504e-05,3.3817e-05,4.6201e-05,5.6855e-05,5.9368e-05,8.6969e-05,9.907e-05,0.00010525,0.0001081,0.00012044,0.00018671,0.00018933,0.00020415,0.00022992,0.00023533,0.00027841,0.00043864,0.00044125,0.00050043,0.00052343,0.00086581,0.00097997,0.0009889,0.0011035,0.0012784,0.0012821,0.0012974,0.0014166,0.0014177,0.0015346,0.0015821,0.0024277,0.002916,0.002934,0.0035995,0.0037998,0.0041297,0.0042993,0.0044024,0.004519,0.0045576,0.0046621,0.0051054,0.0051594,0.0052722,0.0053664,0.0061273,0.0071033,0.0085626,0.009178,0.010611,0.012442,0.013293,0.013752,0.019826,0.02066,0.021293,0.022598,0.024355,0.025972,0.027353,0.027605,0.027764,0.029616,0.034993,0.03542,0.037775,0.041686,0.043987,0.04437,0.059758,0.059943,0.06346,0.070822,0.072233,0.077698,0.079035,0.088912,0.095862,0.11324,0.11368,0.13645,0.13925,0.14015,0.15696,0.15808,0.16452,0.17329,0.17609,0.17823,0.18685,0.18831,0.18926,0.19637,0.1989,0.19956,0.20565,0.20788,0.22048,0.24246,0.24652,0.24761,0.25802,0.2624,0.2807,0.31457,0.3255,0.34322,0.34986,0.36862,0.38776,0.38934,0.39057,0.39071,0.39645,0.39694,0.4152,0.42369,0.43984,0.44057,0.44498,0.4736,0.47445,0.48828,0.50416,0.5328,0.53659,0.54744,0.54988,0.55603,0.56637,0.58224,0.58267,0.61872,0.65956,0.66387,0.66864,0.67012,0.69432,0.70905,0.75774,0.76023,0.76522,0.77358,0.80382,0.83379,0.86449,0.87324,0.87835,0.89095,0.91459,0.92419,0.93587,0.95207,0.96427,0.96629,0.98432,0.9862,0.98685,0.98982,0.99089,0.99733,0.99892,0.99925,0.99928,0.99976,1,0.99995,0.99989,0.99567,0.99566,0.98665,0.97054,0.95042,0.92776,0.91682,0.91384,0.90671,0.90029,0.88448,0.88268,0.84955,0.84072,0.82251,0.79902,0.78436,0.78268,0.77053,0.76228,0.74172,0.7105,0.70753,0.69358,0.6714,0.65326,0.65241,0.58948,0.57921,0.57429,0.56169,0.55517,0.54491,0.52867,0.52215,0.5131,0.49862,0.48008,0.46263,0.46088,0.43994,0.42638,0.41458,0.38834,0.37663,0.37242,0.35769,0.3568,0.35045,0.34767,0.31199,0.3032,0.29982,0.28471,0.27616,0.27487,0.2556,0.22113,0.21152,0.20668,0.19571,0.19478,0.18299,0.18173,0.16737,0.15933,0.14406,0.14273,0.1415,0.14081,0.13858,0.13679,0.1357,0.12465,0.12242,0.10285,0.096875,0.093071,0.091598,0.080088,0.079897,0.076377,0.074775,0.067138,0.066907,0.066364,0.061159,0.05978,0.059296,0.057844,0.056013,0.054325,0.053466,0.045606,0.045347,0.041656,0.036594,0.032321,0.027097,0.027029,0.025363,0.023393,0.020998,0.020972,0.020196,0.016871,0.016172,0.016097,0.012942,0.012328,0.011986,0.010986,0.010069,0.0085586,0.0083415,0.0073622,0.0055365,0.0055152,0.0053861,0.0051309,0.0049384,0.0047103,0.0044534,0.0026091,0.0022589,0.0018055,0.0015248,0.0015121,0.0014831,0.0011481,0.0010808,0.0010754,0.00083754,0.00054393,0.00053641,0.00047125,0.00045874,0.0003392,0.00031142,0.00025806,0.00023378,0.00020946,0.00020501,0.00017976,0.00017563,0.0001737,0.00012838,0.00011717,0.00011274,9.9411e-05,9.5531e-05,7.9523e-05,7.6247e-05,7.004e-05,5.6599e-05,5.6485e-05,5.0948e-05,4.9199e-05,4.9196e-05,3.9107e-05,3.8822e-05,3.5292e-05,3.19e-05,2.5549e-05,2.0878e-05,1.8041e-05,1.4274e-05,1.147e-05,8.6105e-06,8.5101e-06,6.8097e-06,5.4857e-06,4.8251e-06,3.4116e-06,3.0791e-06,2.4974e-06,2.2048e-06,1.6966e-06,1.6501e-06,1.5579e-06,1.3635e-06,1.0295e-06,7.6907e-07,6.582e-07,5.6303e-07,5.188e-07,5.1285e-07,4.4185e-07,3.7163e-07,2.1775e-07,1.8858e-07,1.7417e-07,1.4604e-07,1.4586e-07,1.2252e-07,1.1988e-07,1.0644e-07,9.6719e-08,6.9917e-08,6.6693e-08,5.1639e-08,4.0631e-08,1.8362e-08,1.5786e-08,1.4672e-08,1.2102e-08,1.0092e-08,9.4174e-09,8.1984e-09,7.4191e-09,6.5522e-09,5.3317e-09,5.3258e-09,3.6662e-09,3.3181e-09,3.2496e-09,3.2137e-09,2.1891e-09,2.17e-09,2.0872e-09,2.0269e-09,1.8784e-09,1.6555e-09,1.4777e-09,8.8944e-10,2.959e-10,2.1217e-10,2.06e-10,2.0104e-10,1.8575e-10,1.7774e-10,1.1673e-10,8.83e-11,7.1992e-11,6.4191e-11,5.0473e-11,4.1105e-11,3.9561e-11,2.9599e-11,2.5097e-11,2.0503e-11,1.4789e-11,9.5866e-12,9.3236e-12,8.0442e-12,7.2589e-12,6.9312e-12,4.2229e-12,3.6845e-12,1.9723e-12,1.6564e-12,1.2164e-12,1.0303e-12,9.7628e-13,7.2728e-13,7.0004e-13,6.4391e-13,5.3623e-13,3.7761e-13 1,5.1518e-10,7.1044e-10,7.2192e-10,7.9504e-10,8.562e-10,9.4359e-10,1.1388e-09,1.775e-09,2.3481e-09,2.4508e-09,3.0571e-09,3.169e-09,3.655e-09,5.1607e-09,5.7471e-09,6.1924e-09,8.5418e-09,9.0246e-09,9.5911e-09,1.1759e-08,1.2019e-08,1.217e-08,1.4204e-08,1.5556e-08,1.5602e-08,1.8564e-08,1.886e-08,2.0395e-08,2.0606e-08,2.0813e-08,3.525e-08,5.7884e-08,6.0517e-08,6.993e-08,7.952e-08,8.7834e-08,9.8796e-08,1.1321e-07,1.4368e-07,1.637e-07,2.0213e-07,2.6303e-07,2.6947e-07,2.8368e-07,2.9746e-07,3.8026e-07,3.8041e-07,6.7814e-07,7.0754e-07,7.2439e-07,8.5922e-07,8.7005e-07,1.2126e-06,1.3801e-06,1.4563e-06,1.6377e-06,1.7641e-06,2.0033e-06,2.0836e-06,2.8134e-06,3.3803e-06,5.968e-06,6.9596e-06,7.3251e-06,8.0258e-06,1.0296e-05,1.0832e-05,1.133e-05,1.3977e-05,1.6987e-05,1.8252e-05,1.9353e-05,2.3903e-05,3.2303e-05,4.4163e-05,5.4372e-05,5.6781e-05,8.3252e-05,9.4866e-05,0.00010079,0.00010353,0.00011538,0.00017905,0.00018157,0.00019582,0.00022061,0.00022581,0.00026726,0.00042156,0.00042407,0.0004811,0.00050328,0.00083358,0.00094381,0.00095243,0.0010631,0.0012322,0.0012357,0.0012505,0.0013657,0.0013668,0.0014798,0.0015257,0.0023441,0.002817,0.0028345,0.0034795,0.0036737,0.0039937,0.0041583,0.0042583,0.0043714,0.0044089,0.0045103,0.0049405,0.0049929,0.0051025,0.0051939,0.0059328,0.0068811,0.0082997,0.0088983,0.010293,0.012076,0.012904,0.013351,0.019273,0.020087,0.020704,0.021978,0.023694,0.025273,0.026621,0.026867,0.027023,0.028832,0.034089,0.034506,0.03681,0.040637,0.042889,0.043265,0.058341,0.058522,0.061971,0.069193,0.070579,0.075942,0.077255,0.086956,0.093786,0.11087,0.11131,0.13372,0.13648,0.13737,0.15394,0.15504,0.16139,0.17003,0.1728,0.17492,0.18342,0.18486,0.1858,0.19281,0.19531,0.19597,0.20199,0.20418,0.21663,0.23837,0.24238,0.24346,0.25376,0.2581,0.27621,0.30976,0.3206,0.33818,0.34477,0.36339,0.38239,0.38396,0.38518,0.38532,0.39103,0.39152,0.40966,0.41811,0.43417,0.43489,0.43928,0.46777,0.46861,0.48239,0.49821,0.52678,0.53056,0.54139,0.54382,0.54996,0.56028,0.57613,0.57657,0.6126,0.65348,0.6578,0.66258,0.66406,0.68833,0.70311,0.75203,0.75453,0.75956,0.76797,0.79844,0.8287,0.85975,0.86862,0.87381,0.88659,0.91065,0.92044,0.93239,0.94902,0.9616,0.96369,0.98251,0.98449,0.98519,0.98834,0.98949,0.99655,0.9984,0.99881,0.99885,0.99949,0.99995,1,0.99999,0.99656,0.99655,0.98824,0.97288,0.95344,0.93134,0.92063,0.91772,0.91072,0.90441,0.88886,0.88709,0.85442,0.84569,0.82767,0.80439,0.78985,0.78819,0.77612,0.76793,0.74749,0.71641,0.71346,0.69956,0.67744,0.65934,0.65849,0.5956,0.58532,0.5804,0.56778,0.56125,0.55098,0.5347,0.52816,0.51908,0.50456,0.48596,0.46844,0.46668,0.44564,0.43201,0.42015,0.39375,0.38196,0.37772,0.36288,0.36199,0.35559,0.35278,0.31681,0.30794,0.30454,0.28928,0.28065,0.27935,0.25988,0.22503,0.2153,0.2104,0.1993,0.19836,0.18642,0.18514,0.17059,0.16243,0.14694,0.1456,0.14434,0.14365,0.14139,0.13956,0.13846,0.12723,0.12497,0.10508,0.099005,0.095135,0.093636,0.081919,0.081726,0.078141,0.076509,0.068727,0.068492,0.067939,0.062631,0.061225,0.060732,0.059251,0.057383,0.055662,0.054784,0.046761,0.046497,0.042726,0.037554,0.033185,0.02784,0.02777,0.026065,0.024048,0.021594,0.021568,0.020772,0.017364,0.016647,0.01657,0.013332,0.012701,0.01235,0.011323,0.010381,0.0088287,0.0086055,0.0075983,0.0057192,0.0056973,0.0055644,0.0053015,0.0051032,0.0048681,0.0046035,0.0027014,0.0023397,0.0018713,0.0015811,0.001568,0.001538,0.0011915,0.0011218,0.0011162,0.00086991,0.0005656,0.0005578,0.0004902,0.00047722,0.00035314,0.00032429,0.00026885,0.00024361,0.00021833,0.0002137,0.00018744,0.00018314,0.00018113,0.00013397,0.0001223,0.00011769,0.00010381,9.9764e-05,8.3081e-05,7.9667e-05,7.3196e-05,5.9178e-05,5.9059e-05,5.3283e-05,5.1457e-05,5.1455e-05,4.0923e-05,4.0626e-05,3.694e-05,3.3396e-05,2.6761e-05,2.1878e-05,1.8911e-05,1.497e-05,1.2034e-05,9.04e-06,8.9348e-06,7.1528e-06,5.7646e-06,5.0718e-06,3.5885e-06,3.2395e-06,2.6286e-06,2.3212e-06,1.7871e-06,1.7381e-06,1.6413e-06,1.4368e-06,1.0854e-06,8.1131e-07,6.9456e-07,5.9431e-07,5.4771e-07,5.4144e-07,4.6661e-07,3.9258e-07,2.3025e-07,1.9946e-07,1.8424e-07,1.5453e-07,1.5434e-07,1.2968e-07,1.269e-07,1.127e-07,1.0242e-07,7.4081e-08,7.0671e-08,5.4744e-08,4.3092e-08,1.9501e-08,1.6769e-08,1.5587e-08,1.2861e-08,1.0729e-08,1.0013e-08,8.7185e-09,7.8911e-09,6.9704e-09,5.6739e-09,5.6677e-09,3.9039e-09,3.5338e-09,3.461e-09,3.4228e-09,2.333e-09,2.3127e-09,2.2245e-09,2.1603e-09,2.0024e-09,1.7651e-09,1.5759e-09,9.4924e-10,3.1633e-10,2.2694e-10,2.2035e-10,2.1504e-10,1.9872e-10,1.9017e-10,1.2497e-10,9.4569e-11,7.7126e-11,6.8781e-11,5.4101e-11,4.4073e-11,4.242e-11,3.1751e-11,2.6928e-11,2.2005e-11,1.588e-11,1.03e-11,1.0018e-11,8.6452e-12,7.8024e-12,7.4506e-12,4.5426e-12,3.9641e-12,2.1238e-12,1.7841e-12,1.3107e-12,1.1105e-12,1.0523e-12,7.8421e-13,7.5488e-13,6.9443e-13,5.7844e-13,4.0753e-13 1,5.0027e-10,6.9003e-10,7.0119e-10,7.7226e-10,8.3172e-10,9.1667e-10,1.1064e-09,1.7252e-09,2.2825e-09,2.3825e-09,2.9723e-09,3.0812e-09,3.5541e-09,5.0195e-09,5.5903e-09,6.0237e-09,8.3112e-09,8.7813e-09,9.3329e-09,1.1444e-08,1.1697e-08,1.1845e-08,1.3825e-08,1.5142e-08,1.5187e-08,1.8074e-08,1.8362e-08,1.9857e-08,2.0063e-08,2.0264e-08,3.4335e-08,5.6403e-08,5.8971e-08,6.815e-08,7.7504e-08,8.5614e-08,9.6308e-08,1.1037e-07,1.401e-07,1.5964e-07,1.9716e-07,2.5661e-07,2.629e-07,2.7677e-07,2.9022e-07,3.7109e-07,3.7123e-07,6.621e-07,6.9083e-07,7.073e-07,8.3907e-07,8.4965e-07,1.1845e-06,1.3483e-06,1.4227e-06,1.6002e-06,1.7238e-06,1.9577e-06,2.0363e-06,2.7502e-06,3.305e-06,5.838e-06,6.8089e-06,7.1668e-06,7.8531e-06,1.0077e-05,1.0602e-05,1.109e-05,1.3683e-05,1.6634e-05,1.7873e-05,1.8953e-05,2.3413e-05,3.165e-05,4.3284e-05,5.3301e-05,5.5664e-05,8.1647e-05,9.3049e-05,9.887e-05,0.00010156,0.0001132,0.00017574,0.00017822,0.00019222,0.00021658,0.00022169,0.00026244,0.00041416,0.00041663,0.00047273,0.00049454,0.0008196,0.00092812,0.00093661,0.0010456,0.0012121,0.0012156,0.0012301,0.0013436,0.0013447,0.001456,0.0015012,0.0023078,0.002774,0.0027912,0.0034273,0.0036189,0.0039345,0.0040969,0.0041956,0.0043072,0.0043441,0.0044442,0.0048687,0.0049204,0.0050285,0.0051188,0.0058481,0.0067843,0.0081851,0.0087763,0.010154,0.011915,0.012734,0.013176,0.019031,0.019836,0.020447,0.021706,0.023404,0.024967,0.026301,0.026545,0.026699,0.028489,0.033694,0.034106,0.036388,0.040178,0.042408,0.04278,0.05772,0.057899,0.061318,0.068478,0.069852,0.075172,0.076474,0.086097,0.092874,0.10983,0.11026,0.13252,0.13526,0.13614,0.15261,0.1537,0.16001,0.1686,0.17135,0.17345,0.18191,0.18334,0.18427,0.19125,0.19373,0.19438,0.20037,0.20255,0.21494,0.23656,0.24055,0.24163,0.25188,0.25619,0.27422,0.30764,0.31844,0.33595,0.34251,0.36107,0.38001,0.38158,0.3828,0.38294,0.38863,0.38911,0.40721,0.41563,0.43166,0.43238,0.43675,0.46519,0.46603,0.47978,0.49558,0.5241,0.52788,0.5387,0.54112,0.54726,0.55757,0.57342,0.57385,0.60988,0.65078,0.6551,0.65988,0.66137,0.68565,0.70046,0.74948,0.75199,0.75703,0.76546,0.79603,0.82641,0.85762,0.86655,0.87176,0.88463,0.90888,0.91875,0.93082,0.94763,0.96039,0.96251,0.98167,0.9837,0.98441,0.98765,0.98884,0.99617,0.99814,0.99858,0.99862,0.99934,0.99989,0.99999,1,0.99692,0.99691,0.98891,0.9739,0.95475,0.93291,0.92231,0.91942,0.91248,0.90623,0.89079,0.88904,0.85656,0.84788,0.82995,0.80677,0.79228,0.79062,0.7786,0.77043,0.75005,0.71903,0.71609,0.70221,0.68012,0.66204,0.66119,0.59832,0.58804,0.58311,0.57049,0.56396,0.55368,0.53739,0.53084,0.52175,0.50722,0.48859,0.47103,0.46927,0.44818,0.43452,0.42263,0.39616,0.38434,0.38009,0.3652,0.36431,0.35789,0.35507,0.31897,0.31007,0.30665,0.29133,0.28266,0.28136,0.2618,0.22678,0.217,0.21207,0.20091,0.19997,0.18795,0.18667,0.17203,0.16383,0.14824,0.14688,0.14562,0.14492,0.14264,0.14081,0.1397,0.1284,0.12612,0.10608,0.099964,0.096065,0.094555,0.082745,0.08255,0.078936,0.077291,0.069444,0.069207,0.068649,0.063296,0.061878,0.06138,0.059887,0.058001,0.056265,0.055379,0.047283,0.047017,0.04321,0.037988,0.033575,0.028176,0.028105,0.026382,0.024344,0.021864,0.021837,0.021033,0.017587,0.016862,0.016784,0.013509,0.012871,0.012516,0.011476,0.010523,0.0089514,0.0087254,0.0077055,0.0058023,0.00578,0.0056454,0.005379,0.0051782,0.0049399,0.0046717,0.0027434,0.0023766,0.0019013,0.0016068,0.0015935,0.0015631,0.0012112,0.0011405,0.0011348,0.00088469,0.00057549,0.00056757,0.00049886,0.00048567,0.00035952,0.00033017,0.00027378,0.00024811,0.00022238,0.00021768,0.00019096,0.00018658,0.00018454,0.00013653,0.00012465,0.00011995,0.00010582,0.0001017,8.4713e-05,8.1235e-05,7.4643e-05,6.0362e-05,6.024e-05,5.4354e-05,5.2493e-05,5.2491e-05,4.1757e-05,4.1454e-05,3.7696e-05,3.4084e-05,2.7318e-05,2.2337e-05,1.9311e-05,1.529e-05,1.2294e-05,9.2376e-06,9.1302e-06,7.3107e-06,5.8931e-06,5.1854e-06,3.6701e-06,3.3134e-06,2.6891e-06,2.3748e-06,1.8288e-06,1.7788e-06,1.6797e-06,1.4706e-06,1.1112e-06,8.3082e-07,7.1136e-07,6.0876e-07,5.6107e-07,5.5465e-07,4.7805e-07,4.0226e-07,2.3603e-07,2.0449e-07,1.8891e-07,1.5846e-07,1.5827e-07,1.33e-07,1.3015e-07,1.156e-07,1.0506e-07,7.601e-08,7.2515e-08,5.6183e-08,4.4233e-08,2.0029e-08,1.7226e-08,1.6012e-08,1.3214e-08,1.1025e-08,1.0289e-08,8.9601e-09,8.1103e-09,7.1648e-09,5.833e-09,5.8266e-09,4.0144e-09,3.6341e-09,3.5593e-09,3.5201e-09,2.3999e-09,2.379e-09,2.2884e-09,2.2225e-09,2.06e-09,1.8161e-09,1.6215e-09,9.771e-10,3.2586e-10,2.3383e-10,2.2704e-10,2.2158e-10,2.0477e-10,1.9596e-10,1.2882e-10,9.7497e-11,7.9524e-11,7.0925e-11,5.5797e-11,4.546e-11,4.3756e-11,3.2758e-11,2.7785e-11,2.2708e-11,1.6391e-11,1.0634e-11,1.0343e-11,8.9266e-12,8.0568e-12,7.6938e-12,4.6923e-12,4.0951e-12,2.1948e-12,1.8439e-12,1.3549e-12,1.1481e-12,1.0879e-12,8.1093e-13,7.8062e-13,7.1814e-13,5.9826e-13,4.2158e-13 1,2.982e-10,4.1291e-10,4.1967e-10,4.6275e-10,4.9882e-10,5.5042e-10,6.6589e-10,1.0439e-09,1.3861e-09,1.4475e-09,1.8109e-09,1.8781e-09,2.1702e-09,3.0784e-09,3.4332e-09,3.7029e-09,5.1302e-09,5.4242e-09,5.7695e-09,7.0934e-09,7.2522e-09,7.345e-09,8.5904e-09,9.42e-09,9.4482e-09,1.127e-08,1.1451e-08,1.2397e-08,1.2527e-08,1.2655e-08,2.1592e-08,3.5709e-08,3.7357e-08,4.3258e-08,4.9282e-08,5.4513e-08,6.1422e-08,7.0525e-08,8.9818e-08,1.0253e-07,1.2701e-07,1.6593e-07,1.7005e-07,1.7916e-07,1.8799e-07,2.4122e-07,2.4131e-07,4.3404e-07,4.5315e-07,4.6412e-07,5.5198e-07,5.5905e-07,7.8326e-07,8.9332e-07,9.4339e-07,1.0629e-06,1.1464e-06,1.3044e-06,1.3576e-06,1.8422e-06,2.2201e-06,3.957e-06,4.6266e-06,4.8738e-06,5.3483e-06,6.8909e-06,7.256e-06,7.5955e-06,9.4041e-06,1.1469e-05,1.2339e-05,1.3097e-05,1.6237e-05,2.2063e-05,3.0338e-05,3.7497e-05,3.919e-05,5.7879e-05,6.6118e-05,7.0332e-05,7.2283e-05,8.0725e-05,0.00012636,0.00012818,0.00013844,0.00015634,0.00016011,0.00019015,0.00030278,0.00030462,0.00034651,0.00036283,0.00060756,0.00068981,0.00069625,0.0007791,0.00090597,0.00090865,0.00091975,0.0010065,0.0010073,0.0010926,0.0011273,0.0017495,0.0021118,0.0021252,0.002622,0.002772,0.0030197,0.0031474,0.003225,0.0033128,0.0033419,0.0034208,0.0037558,0.0037966,0.0038821,0.0039534,0.0045314,0.0052761,0.0063956,0.0068697,0.0079777,0.0094012,0.010065,0.010423,0.015207,0.015869,0.016372,0.01741,0.018812,0.020105,0.021211,0.021414,0.021541,0.02303,0.027374,0.027719,0.029632,0.032818,0.034698,0.035012,0.047695,0.047848,0.050769,0.056909,0.05809,0.062671,0.063794,0.072121,0.078009,0.092822,0.093202,0.1128,0.11523,0.11601,0.13063,0.13161,0.13724,0.14492,0.14738,0.14927,0.15686,0.15814,0.15898,0.16526,0.1675,0.16809,0.1735,0.17547,0.18669,0.20637,0.21002,0.211,0.22038,0.22434,0.24092,0.27183,0.28187,0.29821,0.30435,0.32177,0.33961,0.34109,0.34224,0.34237,0.34775,0.34821,0.36537,0.37337,0.38865,0.38934,0.39352,0.42079,0.4216,0.43485,0.45012,0.47784,0.48152,0.49209,0.49446,0.50047,0.51059,0.52618,0.52661,0.56229,0.60319,0.60754,0.61236,0.61386,0.63843,0.6535,0.70388,0.70648,0.71171,0.72049,0.75255,0.78484,0.81854,0.82829,0.83402,0.84825,0.87548,0.88677,0.90074,0.92067,0.93627,0.93892,0.96396,0.9668,0.9678,0.97248,0.97425,0.98628,0.99031,0.99134,0.99144,0.99342,0.99567,0.99656,0.99692,1,1,0.9975,0.9886,0.97484,0.95768,0.94899,0.94659,0.94078,0.93549,0.92225,0.92073,0.89209,0.8843,0.86806,0.84679,0.83335,0.83181,0.82057,0.8129,0.79366,0.76406,0.76123,0.74787,0.72646,0.70882,0.70799,0.64593,0.63568,0.63075,0.61812,0.61155,0.60121,0.58477,0.57814,0.56892,0.55414,0.53511,0.51711,0.5153,0.49358,0.47944,0.46711,0.43952,0.42714,0.42269,0.40704,0.4061,0.39933,0.39636,0.3581,0.34862,0.34497,0.32858,0.31928,0.31788,0.29683,0.25885,0.24819,0.2428,0.23057,0.22954,0.21633,0.21491,0.19875,0.18965,0.17231,0.1708,0.16939,0.1686,0.16606,0.16401,0.16277,0.15009,0.14754,0.12491,0.11796,0.11353,0.11181,0.098309,0.098085,0.093938,0.092048,0.083008,0.082734,0.082089,0.075896,0.074251,0.073675,0.07194,0.069749,0.067728,0.066697,0.057237,0.056925,0.052456,0.046301,0.041077,0.034652,0.034567,0.032508,0.030067,0.027086,0.027055,0.026086,0.021921,0.021042,0.020947,0.016959,0.016179,0.015745,0.01447,0.013298,0.01136,0.01108,0.0098158,0.0074436,0.0074157,0.0072472,0.0069134,0.0066614,0.0063622,0.0060248,0.0035823,0.0031135,0.0025034,0.0021235,0.0021062,0.0020669,0.0016105,0.0015185,0.001511,0.0011842,0.00077719,0.00076671,0.00067566,0.00065814,0.00049012,0.00045087,0.00037524,0.00034069,0.00030601,0.00029966,0.00026354,0.00025761,0.00025484,0.00018962,0.00017341,0.00016699,0.00014766,0.00014202,0.00011869,0.0001139,0.00010482,8.5086e-05,8.4918e-05,7.676e-05,7.4179e-05,7.4175e-05,5.9245e-05,5.8823e-05,5.358e-05,4.8529e-05,3.9044e-05,3.2036e-05,2.7764e-05,2.2069e-05,1.7809e-05,1.3445e-05,1.3291e-05,1.0681e-05,8.6395e-06,7.6176e-06,5.421e-06,4.902e-06,3.9913e-06,3.5317e-06,2.7307e-06,2.657e-06,2.5113e-06,2.2031e-06,1.6718e-06,1.2554e-06,1.0773e-06,9.2405e-07,8.5268e-07,8.4307e-07,7.2822e-07,6.1431e-07,3.6322e-07,3.1532e-07,2.9162e-07,2.4523e-07,2.4494e-07,2.0633e-07,2.0196e-07,1.7968e-07,1.6352e-07,1.1884e-07,1.1344e-07,8.8201e-08,6.9666e-08,3.1881e-08,2.7473e-08,2.5562e-08,2.1148e-08,1.7686e-08,1.6521e-08,1.4413e-08,1.3062e-08,1.1558e-08,9.4343e-09,9.4241e-09,6.5239e-09,5.9133e-09,5.7931e-09,5.73e-09,3.9254e-09,3.8917e-09,3.7453e-09,3.6386e-09,3.3759e-09,2.9808e-09,2.6651e-09,1.616e-09,5.461e-10,3.9341e-10,3.8212e-10,3.7304e-10,3.4505e-10,3.3039e-10,2.1825e-10,1.6572e-10,1.3549e-10,1.21e-10,9.5452e-11,7.7952e-11,7.5063e-11,5.6379e-11,4.791e-11,3.9245e-11,2.8431e-11,1.8534e-11,1.8033e-11,1.5588e-11,1.4085e-11,1.3457e-11,8.2519e-12,7.2123e-12,3.8916e-12,3.2755e-12,2.4148e-12,2.0497e-12,1.9435e-12,1.4532e-12,1.3994e-12,1.2885e-12,1.0755e-12,7.6065e-13 1,2.9801e-10,4.1264e-10,4.194e-10,4.6245e-10,4.985e-10,5.5007e-10,6.6547e-10,1.0433e-09,1.3852e-09,1.4466e-09,1.8098e-09,1.8769e-09,2.1689e-09,3.0765e-09,3.4311e-09,3.7007e-09,5.1271e-09,5.421e-09,5.766e-09,7.0892e-09,7.2478e-09,7.3407e-09,8.5854e-09,9.4144e-09,9.4427e-09,1.1263e-08,1.1445e-08,1.239e-08,1.252e-08,1.2647e-08,2.158e-08,3.5688e-08,3.7336e-08,4.3233e-08,4.9254e-08,5.4482e-08,6.1388e-08,7.0486e-08,8.9769e-08,1.0247e-07,1.2694e-07,1.6584e-07,1.6996e-07,1.7906e-07,1.8789e-07,2.4109e-07,2.4118e-07,4.3381e-07,4.5292e-07,4.6387e-07,5.5169e-07,5.5875e-07,7.8286e-07,8.9286e-07,9.429e-07,1.0624e-06,1.1458e-06,1.3038e-06,1.3569e-06,1.8412e-06,2.219e-06,3.9551e-06,4.6243e-06,4.8714e-06,5.3458e-06,6.8876e-06,7.2526e-06,7.5919e-06,9.3997e-06,1.1464e-05,1.2333e-05,1.3091e-05,1.623e-05,2.2053e-05,3.0325e-05,3.748e-05,3.9173e-05,5.7854e-05,6.609e-05,7.0303e-05,7.2252e-05,8.0691e-05,0.00012631,0.00012812,0.00013839,0.00015628,0.00016004,0.00019007,0.00030266,0.0003045,0.00034638,0.00036269,0.00060734,0.00068955,0.00069599,0.00077881,0.00090564,0.00090832,0.00091942,0.0010062,0.001007,0.0010922,0.0011269,0.0017489,0.0021111,0.0021245,0.0026211,0.0027711,0.0030187,0.0031463,0.0032239,0.0033117,0.0033408,0.0034197,0.0037545,0.0037954,0.0038808,0.0039522,0.0045299,0.0052744,0.0063936,0.0068676,0.0079753,0.0093984,0.010062,0.01042,0.015203,0.015865,0.016367,0.017405,0.018807,0.0201,0.021206,0.021408,0.021536,0.023024,0.027367,0.027712,0.029624,0.03281,0.034689,0.035003,0.047684,0.047836,0.050757,0.056896,0.058076,0.062657,0.06378,0.072105,0.077992,0.092803,0.093183,0.11278,0.1152,0.11599,0.13061,0.13158,0.13721,0.14489,0.14735,0.14924,0.15683,0.15811,0.15895,0.16523,0.16747,0.16806,0.17347,0.17544,0.18666,0.20634,0.20998,0.21096,0.22034,0.2243,0.24088,0.27179,0.28183,0.29816,0.30431,0.32172,0.33956,0.34104,0.34219,0.34232,0.34771,0.34816,0.36532,0.37332,0.3886,0.38929,0.39347,0.42074,0.42154,0.4348,0.45007,0.47778,0.48146,0.49203,0.4944,0.50042,0.51053,0.52612,0.52655,0.56223,0.60313,0.60748,0.6123,0.6138,0.63837,0.65344,0.70382,0.70642,0.71166,0.72044,0.7525,0.78479,0.81849,0.82824,0.83397,0.8482,0.87543,0.88672,0.9007,0.92063,0.93624,0.93889,0.96394,0.96677,0.96778,0.97246,0.97422,0.98626,0.99029,0.99133,0.99143,0.99341,0.99566,0.99655,0.99691,1,1,0.99751,0.98862,0.97486,0.9577,0.94902,0.94662,0.94082,0.93553,0.92229,0.92076,0.89214,0.88434,0.8681,0.84683,0.8334,0.83186,0.82062,0.81296,0.79371,0.76412,0.76129,0.74792,0.72652,0.70888,0.70805,0.64598,0.63574,0.63081,0.61817,0.61161,0.60127,0.58483,0.5782,0.56898,0.5542,0.53517,0.51717,0.51536,0.49363,0.4795,0.46716,0.43957,0.4272,0.42274,0.40709,0.40615,0.39938,0.39641,0.35815,0.34866,0.34502,0.32863,0.31933,0.31793,0.29687,0.25889,0.24823,0.24284,0.23061,0.22957,0.21636,0.21495,0.19878,0.18969,0.17234,0.17083,0.16942,0.16863,0.16609,0.16404,0.1628,0.15012,0.14756,0.12494,0.11799,0.11355,0.11183,0.09833,0.098106,0.093958,0.092067,0.083026,0.082752,0.082107,0.075913,0.074268,0.073691,0.071956,0.069765,0.067744,0.066713,0.05725,0.056938,0.052468,0.046312,0.041087,0.034661,0.034576,0.032516,0.030074,0.027093,0.027062,0.026092,0.021927,0.021048,0.020953,0.016964,0.016184,0.015749,0.014474,0.013302,0.011363,0.011083,0.0098187,0.0074459,0.007418,0.0072494,0.0069155,0.0066634,0.0063641,0.0060267,0.0035835,0.0031145,0.0025042,0.0021242,0.0021069,0.0020676,0.0016111,0.001519,0.0015116,0.0011846,0.00077748,0.00076699,0.00067591,0.00065839,0.0004903,0.00045104,0.00037538,0.00034083,0.00030613,0.00029978,0.00026364,0.00025771,0.00025494,0.00018969,0.00017348,0.00016706,0.00014772,0.00014207,0.00011874,0.00011395,0.00010486,8.5122e-05,8.4954e-05,7.6793e-05,7.421e-05,7.4207e-05,5.927e-05,5.8848e-05,5.3603e-05,4.855e-05,3.9061e-05,3.205e-05,2.7776e-05,2.2079e-05,1.7817e-05,1.3451e-05,1.3297e-05,1.0686e-05,8.6435e-06,7.6212e-06,5.4236e-06,4.9044e-06,3.9933e-06,3.5334e-06,2.732e-06,2.6583e-06,2.5125e-06,2.2042e-06,1.6726e-06,1.256e-06,1.0779e-06,9.2453e-07,8.5311e-07,8.435e-07,7.2859e-07,6.1463e-07,3.6341e-07,3.1549e-07,2.9177e-07,2.4536e-07,2.4507e-07,2.0645e-07,2.0207e-07,1.7978e-07,1.6361e-07,1.189e-07,1.1351e-07,8.825e-08,6.9705e-08,3.1899e-08,2.7489e-08,2.5577e-08,2.116e-08,1.7696e-08,1.653e-08,1.4421e-08,1.307e-08,1.1565e-08,9.4399e-09,9.4296e-09,6.5277e-09,5.9168e-09,5.7965e-09,5.7334e-09,3.9278e-09,3.894e-09,3.7475e-09,3.6408e-09,3.3779e-09,2.9826e-09,2.6668e-09,1.617e-09,5.4645e-10,3.9366e-10,3.8237e-10,3.7328e-10,3.4528e-10,3.306e-10,2.1839e-10,1.6583e-10,1.3558e-10,1.2108e-10,9.5515e-11,7.8003e-11,7.5112e-11,5.6417e-11,4.7942e-11,3.9271e-11,2.845e-11,1.8547e-11,1.8045e-11,1.5599e-11,1.4095e-11,1.3467e-11,8.2576e-12,7.2173e-12,3.8943e-12,3.2779e-12,2.4165e-12,2.0512e-12,1.9449e-12,1.4542e-12,1.4004e-12,1.2895e-12,1.0763e-12,7.612e-13 1,1.8615e-10,2.5865e-10,2.6293e-10,2.9023e-10,3.1311e-10,3.4586e-10,4.1929e-10,6.6058e-10,8.798e-10,9.1927e-10,1.1529e-09,1.1962e-09,1.3844e-09,1.9716e-09,2.2015e-09,2.3765e-09,3.3048e-09,3.4964e-09,3.7216e-09,4.5865e-09,4.6903e-09,4.7511e-09,5.5668e-09,6.1109e-09,6.1294e-09,7.3261e-09,7.4457e-09,8.068e-09,8.1536e-09,8.2377e-09,1.4145e-08,2.3534e-08,2.4634e-08,2.8575e-08,3.2606e-08,3.6112e-08,4.0749e-08,4.6867e-08,5.9867e-08,6.8454e-08,8.5021e-08,1.1145e-07,1.1426e-07,1.2045e-07,1.2647e-07,1.628e-07,1.6286e-07,2.9517e-07,3.0834e-07,3.159e-07,3.7656e-07,3.8145e-07,5.3683e-07,6.1334e-07,6.4819e-07,7.315e-07,7.8973e-07,9.002e-07,9.374e-07,1.2773e-06,1.5433e-06,2.7731e-06,3.2496e-06,3.4258e-06,3.7644e-06,4.8678e-06,5.1296e-06,5.3732e-06,6.6735e-06,8.163e-06,8.7913e-06,9.3398e-06,1.1617e-05,1.5858e-05,2.1913e-05,2.7173e-05,2.842e-05,4.2234e-05,4.8349e-05,5.1482e-05,5.2933e-05,5.9222e-05,9.339e-05,9.4754e-05,0.00010248,0.00011596,0.0001188,0.00014151,0.00022715,0.00022855,0.00026058,0.00027307,0.00046155,0.00052525,0.00053025,0.00059459,0.00069338,0.00069547,0.00070413,0.00077188,0.00077251,0.00083918,0.00086638,0.0013562,0.0016432,0.0016538,0.0020491,0.0021689,0.0023669,0.0024691,0.0025312,0.0026016,0.002625,0.0026882,0.0029573,0.0029901,0.0030589,0.0031163,0.0035823,0.0041849,0.0050944,0.0054808,0.0063864,0.0075543,0.0081005,0.0083959,0.01236,0.012912,0.013331,0.014198,0.015371,0.016455,0.017384,0.017554,0.017662,0.018915,0.022584,0.022876,0.024498,0.027207,0.028809,0.029077,0.039954,0.040086,0.042606,0.047918,0.048943,0.052922,0.0539,0.061164,0.066319,0.079351,0.079686,0.097057,0.099215,0.099911,0.11297,0.11384,0.11888,0.12578,0.128,0.1297,0.13654,0.1377,0.13846,0.14414,0.14616,0.1467,0.15159,0.15338,0.16358,0.18153,0.18487,0.18577,0.19437,0.19801,0.21327,0.24188,0.25122,0.26645,0.27219,0.28851,0.3053,0.30669,0.30778,0.3079,0.31298,0.31341,0.32963,0.33722,0.35174,0.35239,0.35637,0.38242,0.38319,0.3959,0.41059,0.43736,0.44093,0.45118,0.45349,0.45933,0.46919,0.48442,0.48483,0.51987,0.56036,0.56468,0.56948,0.57097,0.59554,0.61067,0.66169,0.66434,0.66968,0.67867,0.71166,0.74524,0.78073,0.7911,0.79721,0.81246,0.84199,0.85438,0.86988,0.89232,0.91025,0.91333,0.94329,0.9468,0.94806,0.95397,0.95622,0.97231,0.97812,0.97968,0.97983,0.9829,0.98665,0.98824,0.98891,0.9975,0.99751,1,0.99675,0.98806,0.97537,0.96854,0.96662,0.96193,0.95759,0.94652,0.94523,0.92047,0.91359,0.89911,0.87986,0.86756,0.86614,0.85577,0.84866,0.83069,0.80277,0.80008,0.78735,0.76683,0.74981,0.749,0.68838,0.67828,0.67341,0.66089,0.65437,0.64409,0.62767,0.62104,0.6118,0.59693,0.57774,0.5595,0.55765,0.53554,0.5211,0.50845,0.48006,0.46728,0.46266,0.44643,0.44546,0.43842,0.43533,0.39534,0.38537,0.38153,0.36426,0.35443,0.35295,0.33061,0.29006,0.27861,0.27282,0.25964,0.25852,0.24423,0.2427,0.22515,0.21524,0.19627,0.19461,0.19307,0.19221,0.18942,0.18716,0.1858,0.17184,0.16902,0.14395,0.13621,0.13126,0.12934,0.11421,0.11396,0.1093,0.10717,0.096962,0.096653,0.095923,0.088905,0.087038,0.086383,0.084411,0.081918,0.079617,0.078441,0.067625,0.067267,0.062135,0.055042,0.048997,0.041528,0.04143,0.039027,0.036171,0.032676,0.032639,0.0315,0.026591,0.025551,0.025439,0.020705,0.019776,0.019258,0.017735,0.016333,0.014004,0.013667,0.012142,0.0092665,0.0092326,0.0090274,0.0086208,0.0083134,0.0079482,0.0075358,0.0045314,0.0039499,0.0031902,0.0027152,0.0026935,0.0026443,0.0020707,0.0019546,0.0019452,0.0015317,0.0010133,0.00099991,0.00088324,0.00086076,0.00064448,0.00059376,0.00049579,0.00045092,0.00040579,0.00039751,0.00035038,0.00034263,0.00033901,0.00025353,0.00023222,0.00022377,0.00019827,0.00019082,0.00015995,0.00015361,0.00014155,0.0001153,0.00011508,0.00010419,0.00010075,0.00010074,8.0756e-05,8.019e-05,7.3151e-05,6.6361e-05,5.3574e-05,4.4094e-05,3.8298e-05,3.055e-05,2.4734e-05,1.8751e-05,1.854e-05,1.4948e-05,1.2129e-05,1.0714e-05,7.6621e-06,6.9386e-06,5.6661e-06,5.0223e-06,3.8973e-06,3.7936e-06,3.5883e-06,3.1538e-06,2.4023e-06,1.8109e-06,1.5573e-06,1.3385e-06,1.2365e-06,1.2227e-06,1.0582e-06,8.9471e-07,5.3267e-07,4.6328e-07,4.2888e-07,3.6146e-07,3.6104e-07,3.0481e-07,2.9843e-07,2.659e-07,2.4228e-07,1.7678e-07,1.6885e-07,1.317e-07,1.0432e-07,4.8198e-08,4.1608e-08,3.8749e-08,3.2129e-08,2.6927e-08,2.5173e-08,2.1996e-08,1.9959e-08,1.7685e-08,1.447e-08,1.4455e-08,1.0049e-08,9.1188e-09,8.9355e-09,8.8394e-09,6.0818e-09,6.03e-09,5.8058e-09,5.6423e-09,5.2393e-09,4.6326e-09,4.1473e-09,2.5288e-09,8.6482e-10,6.2522e-10,6.0748e-10,5.9318e-10,5.4915e-10,5.2605e-10,3.4904e-10,2.6581e-10,2.1778e-10,1.9472e-10,1.5399e-10,1.2602e-10,1.214e-10,9.1451e-11,7.7842e-11,6.3894e-11,4.644e-11,3.0407e-11,2.9591e-11,2.5617e-11,2.3171e-11,2.2148e-11,1.3647e-11,1.1944e-11,6.4838e-12,5.4666e-12,4.042e-12,3.4364e-12,3.26e-12,2.4443e-12,2.3547e-12,2.1699e-12,1.8143e-12,1.2874e-12 1,1.0815e-10,1.5087e-10,1.534e-10,1.6953e-10,1.8306e-10,2.0246e-10,2.4602e-10,3.8978e-10,5.2098e-10,5.4465e-10,6.85e-10,7.1105e-10,8.2449e-10,1.1794e-09,1.3188e-09,1.425e-09,1.9901e-09,2.107e-09,2.2445e-09,2.7737e-09,2.8373e-09,2.8746e-09,3.375e-09,3.7094e-09,3.7209e-09,4.4577e-09,4.5315e-09,4.9154e-09,4.9682e-09,5.0202e-09,8.6823e-09,1.4545e-08,1.5234e-08,1.7708e-08,2.0242e-08,2.245e-08,2.5375e-08,2.9242e-08,3.7481e-08,4.2937e-08,5.3491e-08,7.039e-08,7.2186e-08,7.6161e-08,8.002e-08,1.0338e-07,1.0342e-07,1.8907e-07,1.9763e-07,2.0255e-07,2.4207e-07,2.4526e-07,3.4693e-07,3.9717e-07,4.2009e-07,4.7495e-07,5.1335e-07,5.8633e-07,6.1094e-07,8.3644e-07,1.0136e-06,1.8382e-06,2.1595e-06,2.2786e-06,2.5076e-06,3.2562e-06,3.4342e-06,3.6e-06,4.4872e-06,5.507e-06,5.9382e-06,6.3152e-06,7.8835e-06,1.0819e-05,1.5034e-05,1.8713e-05,1.9587e-05,2.9314e-05,3.364e-05,3.5861e-05,3.689e-05,4.1357e-05,6.577e-05,6.6749e-05,7.2294e-05,8.2e-05,8.4046e-05,0.00010044,0.00016272,0.00016375,0.00018718,0.00019633,0.00033539,0.0003827,0.00038642,0.00043434,0.00050814,0.00050971,0.00051619,0.00056696,0.00056744,0.0006175,0.00063795,0.0010084,0.0012271,0.0012352,0.0015379,0.0016299,0.0017823,0.0018611,0.001909,0.0019634,0.0019814,0.0020303,0.0022385,0.002264,0.0023173,0.0023619,0.0027241,0.0031943,0.0039074,0.0042114,0.0049262,0.0058521,0.0062866,0.006522,0.0097009,0.010146,0.010484,0.011185,0.012136,0.013017,0.013774,0.013912,0.014,0.015022,0.018029,0.018269,0.019604,0.021839,0.023166,0.023387,0.032455,0.032565,0.03468,0.039153,0.040018,0.043383,0.044212,0.050384,0.054783,0.065963,0.066252,0.081279,0.083154,0.08376,0.09515,0.095913,0.10033,0.10639,0.10834,0.10983,0.11587,0.11689,0.11756,0.12258,0.12438,0.12485,0.12919,0.13078,0.13985,0.1559,0.1589,0.1597,0.16743,0.1707,0.18448,0.21047,0.21899,0.23294,0.23822,0.25324,0.26876,0.27005,0.27106,0.27117,0.27588,0.27628,0.29137,0.29845,0.31202,0.31263,0.31636,0.34085,0.34158,0.35359,0.36751,0.393,0.39641,0.40621,0.40843,0.41403,0.4235,0.43817,0.43857,0.47252,0.51211,0.51636,0.52108,0.52255,0.54682,0.56184,0.61294,0.61561,0.62101,0.6301,0.66371,0.69828,0.73528,0.74618,0.75263,0.76881,0.80049,0.81394,0.83091,0.85584,0.87612,0.87964,0.91467,0.9189,0.92042,0.92762,0.9304,0.9508,0.95855,0.96067,0.96088,0.96515,0.97054,0.97288,0.9739,0.9886,0.98862,0.99675,1,0.99724,0.98987,0.98528,0.98394,0.98059,0.97741,0.96901,0.96801,0.9481,0.94239,0.93014,0.91352,0.90272,0.90147,0.89226,0.8859,0.86968,0.84409,0.84161,0.82979,0.81059,0.79453,0.79377,0.73567,0.72586,0.72112,0.70891,0.70253,0.69244,0.67627,0.66972,0.66056,0.64579,0.62662,0.60831,0.60646,0.58414,0.5695,0.55664,0.52761,0.51447,0.50972,0.49297,0.49196,0.48467,0.48147,0.43981,0.42937,0.42534,0.40717,0.39679,0.39522,0.37155,0.32823,0.31592,0.30968,0.29544,0.29423,0.27874,0.27707,0.25794,0.24711,0.22628,0.22445,0.22275,0.2218,0.21872,0.21623,0.21472,0.19927,0.19614,0.16817,0.15949,0.15392,0.15175,0.13466,0.13438,0.12908,0.12667,0.11504,0.11469,0.11385,0.10582,0.10368,0.10292,0.10066,0.097793,0.095143,0.093788,0.081279,0.080864,0.074899,0.066622,0.059535,0.050731,0.050614,0.047769,0.04438,0.040219,0.040174,0.038815,0.032934,0.031684,0.031549,0.025834,0.024708,0.024078,0.022227,0.020516,0.017667,0.017254,0.015378,0.011821,0.011779,0.011524,0.011018,0.010636,0.01018,0.0096653,0.0058867,0.0051485,0.0041797,0.0035708,0.003543,0.0034798,0.0027404,0.0025902,0.002578,0.002041,0.0013626,0.001345,0.0011912,0.0011616,0.00087506,0.00080759,0.00067686,0.00061681,0.00055628,0.00054515,0.00048175,0.00047132,0.00046644,0.00035086,0.00032192,0.00031043,0.00027571,0.00026555,0.00022336,0.00021467,0.00019813,0.00016202,0.00016171,0.00014669,0.00014193,0.00014192,0.00011423,0.00011345,0.00010367,9.4213e-05,7.6358e-05,6.3068e-05,5.4917e-05,4.3983e-05,3.5743e-05,2.7228e-05,2.6926e-05,2.179e-05,1.7743e-05,1.5706e-05,1.1296e-05,1.0246e-05,8.3948e-06,7.4556e-06,5.8094e-06,5.6574e-06,5.356e-06,4.7172e-06,3.6088e-06,2.7326e-06,2.3555e-06,2.0293e-06,1.8769e-06,1.8563e-06,1.6102e-06,1.3649e-06,8.1899e-07,7.1379e-07,6.6156e-07,5.5898e-07,5.5833e-07,4.7255e-07,4.6281e-07,4.1306e-07,3.7688e-07,2.7625e-07,2.6404e-07,2.0667e-07,1.6427e-07,7.6719e-08,6.6365e-08,6.1864e-08,5.1428e-08,4.3205e-08,4.0428e-08,3.5392e-08,3.2156e-08,2.8539e-08,2.3414e-08,2.3389e-08,1.634e-08,1.4846e-08,1.4552e-08,1.4397e-08,9.9547e-09,9.8712e-09,9.5087e-09,9.2444e-09,8.5925e-09,7.6098e-09,6.8224e-09,4.1865e-09,1.4513e-09,1.0535e-09,1.0239e-09,1.0001e-09,9.2676e-10,8.8825e-10,5.9234e-10,4.5259e-10,3.7171e-10,3.328e-10,2.6393e-10,2.1651e-10,2.0866e-10,1.5772e-10,1.3451e-10,1.1066e-10,8.0735e-11,5.3122e-11,5.1714e-11,4.4844e-11,4.0608e-11,3.8836e-11,2.4063e-11,2.1092e-11,1.1529e-11,9.7389e-12,7.2252e-12,6.1538e-12,5.8413e-12,4.3937e-12,4.2345e-12,3.9056e-12,3.2719e-12,2.3304e-12 1,6.5179e-11,9.1262e-11,9.2808e-11,1.0268e-10,1.1097e-10,1.2287e-10,1.4963e-10,2.3829e-10,3.1955e-10,3.3424e-10,4.2147e-10,4.3768e-10,5.0837e-10,7.3023e-10,8.1759e-10,8.8425e-10,1.2397e-09,1.3134e-09,1.4002e-09,1.7346e-09,1.7749e-09,1.7984e-09,2.1156e-09,2.3278e-09,2.3351e-09,2.8036e-09,2.8505e-09,3.095e-09,3.1287e-09,3.1618e-09,5.5047e-09,9.2804e-09,9.7257e-09,1.1326e-08,1.2969e-08,1.4402e-08,1.6303e-08,1.8821e-08,2.42e-08,2.7771e-08,3.4695e-08,4.5817e-08,4.7002e-08,4.9624e-08,5.2172e-08,6.7629e-08,6.7656e-08,1.2467e-07,1.304e-07,1.3369e-07,1.6016e-07,1.6229e-07,2.3065e-07,2.6454e-07,2.8002e-07,3.1713e-07,3.4314e-07,3.9264e-07,4.0935e-07,5.6291e-07,6.84e-07,1.2511e-06,1.4732e-06,1.5556e-06,1.7143e-06,2.2347e-06,2.3588e-06,2.4744e-06,3.0943e-06,3.8093e-06,4.1122e-06,4.3773e-06,5.483e-06,7.5617e-06,1.0562e-05,1.3192e-05,1.3818e-05,2.0815e-05,2.3941e-05,2.5548e-05,2.6293e-05,2.9532e-05,4.7332e-05,4.8048e-05,5.211e-05,5.9234e-05,6.0737e-05,7.2811e-05,0.00011896,0.00011972,0.00013718,0.00014401,0.00024843,0.00028418,0.00028699,0.00032329,0.00037936,0.00038055,0.00038548,0.00042415,0.00042452,0.00046273,0.00047835,0.00076299,0.00093212,0.00093841,0.0011736,0.0012454,0.0013643,0.0014259,0.0014634,0.001506,0.0015201,0.0015584,0.0017218,0.0017418,0.0017837,0.0018187,0.0021041,0.0024759,0.0030421,0.0032843,0.0038554,0.0045983,0.0049479,0.0051375,0.0077146,0.0080773,0.0083536,0.0089263,0.009705,0.010428,0.01105,0.011164,0.011236,0.012078,0.014564,0.014763,0.015871,0.017732,0.018839,0.019024,0.026641,0.026734,0.028522,0.032313,0.033048,0.035913,0.036619,0.041896,0.045671,0.055312,0.055562,0.06862,0.070256,0.070784,0.080758,0.081428,0.085312,0.090649,0.092369,0.093687,0.099024,0.09993,0.10052,0.10498,0.10657,0.10699,0.11085,0.11226,0.12035,0.13471,0.1374,0.13812,0.14508,0.14803,0.16047,0.18407,0.19185,0.20462,0.20945,0.22327,0.23759,0.23879,0.23972,0.23982,0.24418,0.24455,0.25855,0.26513,0.27778,0.27836,0.28184,0.30479,0.30548,0.31678,0.3299,0.35405,0.35729,0.36662,0.36873,0.37408,0.38312,0.39716,0.39755,0.43022,0.46861,0.47275,0.47736,0.47879,0.50254,0.5173,0.5679,0.57057,0.57595,0.58503,0.61879,0.65384,0.69172,0.70297,0.70965,0.72646,0.75966,0.77389,0.79197,0.8188,0.84093,0.84481,0.88396,0.88877,0.89051,0.89879,0.902,0.92606,0.93545,0.93806,0.93832,0.94362,0.95042,0.95344,0.95475,0.97484,0.97486,0.98806,0.99724,1,0.99767,0.99522,0.99444,0.99238,0.99032,0.98453,0.98381,0.96871,0.96416,0.95419,0.94026,0.93102,0.92994,0.92195,0.91638,0.90203,0.879,0.87674,0.86595,0.84825,0.83331,0.8326,0.77764,0.76824,0.76369,0.75192,0.74575,0.73597,0.72024,0.71384,0.70488,0.69037,0.67145,0.6533,0.65146,0.62921,0.61454,0.60161,0.57229,0.55896,0.55413,0.53705,0.53602,0.52857,0.5253,0.48244,0.47164,0.46746,0.44859,0.43778,0.43615,0.41138,0.36574,0.35268,0.34605,0.33089,0.3296,0.31304,0.31126,0.29072,0.27904,0.2565,0.25452,0.25268,0.25165,0.2483,0.2456,0.24395,0.22711,0.22368,0.19298,0.18339,0.17723,0.17483,0.15585,0.15553,0.14962,0.14692,0.1339,0.1335,0.13257,0.12353,0.12112,0.12027,0.11772,0.11448,0.11148,0.10995,0.095743,0.095271,0.088466,0.078988,0.070836,0.06066,0.060524,0.057222,0.05328,0.048425,0.048373,0.046783,0.039884,0.038412,0.038253,0.031499,0.030162,0.029414,0.027212,0.025171,0.021761,0.021266,0.019011,0.014711,0.01466,0.01435,0.013736,0.01327,0.012716,0.012088,0.0074495,0.0065356,0.0053308,0.0045703,0.0045356,0.0044564,0.0035279,0.0033385,0.0033232,0.0026441,0.0017801,0.0017576,0.0015605,0.0015224,0.0011534,0.0010662,0.00089668,0.00081861,0.00073974,0.00072522,0.00064239,0.00062875,0.00062236,0.00047066,0.00043253,0.00041737,0.00037151,0.00035806,0.00030212,0.00029057,0.00026858,0.00022042,0.00022,0.00019991,0.00019353,0.00019353,0.00015637,0.00015531,0.00014214,0.0001294,0.00010525,8.7215e-05,7.6121e-05,6.1192e-05,4.9898e-05,3.818e-05,3.7764e-05,3.0664e-05,2.5052e-05,2.2219e-05,1.6062e-05,1.4592e-05,1.1992e-05,1.067e-05,8.3456e-06,8.1305e-06,7.7037e-06,6.7979e-06,5.2214e-06,3.9699e-06,3.4295e-06,2.9611e-06,2.7417e-06,2.7122e-06,2.3573e-06,2.003e-06,1.2106e-06,1.0571e-06,9.8081e-07,8.3068e-07,8.2972e-07,7.0387e-07,6.8956e-07,6.1639e-07,5.6311e-07,4.145e-07,3.9643e-07,3.1132e-07,2.482e-07,1.1708e-07,1.0147e-07,9.4678e-08,7.8894e-08,6.6427e-08,6.221e-08,5.4552e-08,4.9624e-08,4.411e-08,3.6279e-08,3.6241e-08,2.5431e-08,2.3134e-08,2.2681e-08,2.2443e-08,1.5589e-08,1.5459e-08,1.4899e-08,1.4489e-08,1.348e-08,1.1956e-08,1.0733e-08,6.625e-09,2.3255e-09,1.6943e-09,1.6474e-09,1.6095e-09,1.4928e-09,1.4314e-09,9.59e-10,7.3499e-10,6.0499e-10,5.4233e-10,4.3122e-10,3.5453e-10,3.4182e-10,2.5917e-10,2.2142e-10,1.8256e-10,1.3365e-10,8.8337e-11,8.6021e-11,7.4708e-11,6.7724e-11,6.48e-11,4.0356e-11,3.5422e-11,1.9486e-11,1.6489e-11,1.2271e-11,1.0469e-11,9.9428e-12,7.5008e-12,7.2316e-12,6.6755e-12,5.6025e-12,4.0043e-12 1,4.0719e-11,5.7207e-11,5.8186e-11,6.444e-11,6.9698e-11,7.7249e-11,9.4261e-11,1.5083e-10,2.0288e-10,2.1231e-10,2.6836e-10,2.7879e-10,3.2432e-10,4.6763e-10,5.2421e-10,5.6741e-10,7.9836e-10,8.4636e-10,9.0289e-10,1.1211e-09,1.1474e-09,1.1628e-09,1.3703e-09,1.5093e-09,1.5141e-09,1.8214e-09,1.8523e-09,2.013e-09,2.0351e-09,2.0569e-09,3.6029e-09,6.1097e-09,6.4063e-09,7.4732e-09,8.5703e-09,9.5287e-09,1.0802e-08,1.2491e-08,1.6107e-08,1.8513e-08,2.3189e-08,3.0722e-08,3.1526e-08,3.3306e-08,3.5037e-08,4.5558e-08,4.5576e-08,8.4605e-08,8.8538e-08,9.0798e-08,1.0901e-07,1.1049e-07,1.577e-07,1.8118e-07,1.9192e-07,2.1769e-07,2.3578e-07,2.7025e-07,2.819e-07,3.8921e-07,4.7412e-07,8.74e-07,1.0314e-06,1.0899e-06,1.2026e-06,1.5732e-06,1.6617e-06,1.7443e-06,2.1879e-06,2.7011e-06,2.919e-06,3.1099e-06,3.9075e-06,5.4132e-06,7.5967e-06,9.5189e-06,9.9774e-06,1.5119e-05,1.7426e-05,1.8613e-05,1.9165e-05,2.1563e-05,3.4807e-05,3.5342e-05,3.8378e-05,4.3711e-05,4.4838e-05,5.3903e-05,8.8755e-05,8.9335e-05,0.00010259,0.00010778,0.00018761,0.00021509,0.00021725,0.00024523,0.00028855,0.00028947,0.00029329,0.00032325,0.00032353,0.00035318,0.00036531,0.00058754,0.00072039,0.00072534,0.00091093,0.00096765,0.0010619,0.0011108,0.0011406,0.0011744,0.0011856,0.001216,0.0013461,0.001362,0.0013954,0.0014234,0.0016514,0.0019493,0.002405,0.0026004,0.0030626,0.003666,0.0039508,0.0041055,0.0062189,0.0065179,0.0067458,0.0072189,0.0078633,0.0084626,0.008979,0.0090738,0.0091337,0.0098347,0.01191,0.012077,0.013006,0.01457,0.015502,0.015658,0.022111,0.02219,0.023713,0.026952,0.027581,0.030038,0.030645,0.035188,0.038448,0.046815,0.047033,0.058442,0.059877,0.060341,0.069116,0.069708,0.073137,0.077859,0.079383,0.080551,0.085289,0.086094,0.086623,0.090584,0.092004,0.092377,0.095821,0.097084,0.10431,0.11721,0.11963,0.12028,0.12655,0.12921,0.14047,0.16194,0.16905,0.18074,0.18518,0.19789,0.2111,0.21221,0.21307,0.21317,0.2172,0.21754,0.23052,0.23664,0.24842,0.24895,0.2522,0.27367,0.27431,0.28492,0.29728,0.32009,0.32316,0.33202,0.33402,0.33909,0.3477,0.36109,0.36146,0.39276,0.42978,0.4338,0.43826,0.43965,0.46274,0.47715,0.52684,0.52948,0.5348,0.54379,0.57736,0.61248,0.65078,0.66222,0.66903,0.68622,0.72043,0.73521,0.75408,0.78234,0.80588,0.81003,0.85246,0.85775,0.85967,0.86882,0.87239,0.89947,0.91025,0.91327,0.91358,0.91975,0.92776,0.93134,0.93291,0.95768,0.9577,0.97537,0.98987,0.99767,1,0.99956,0.99931,0.99847,0.99748,0.99416,0.99371,0.98325,0.97984,0.9721,0.96085,0.95317,0.95226,0.94549,0.94073,0.92829,0.90792,0.9059,0.8962,0.88012,0.8664,0.86575,0.81436,0.80544,0.80112,0.7899,0.784,0.77462,0.75947,0.75328,0.7446,0.7305,0.71202,0.69421,0.69239,0.67043,0.65588,0.64302,0.61371,0.60032,0.59546,0.57823,0.57719,0.56965,0.56633,0.52272,0.51166,0.50739,0.488,0.47686,0.47518,0.44956,0.40203,0.38835,0.38139,0.36543,0.36408,0.34659,0.34471,0.32293,0.31051,0.28645,0.28433,0.28235,0.28124,0.27766,0.27476,0.27299,0.25487,0.25118,0.21794,0.20751,0.20079,0.19817,0.17738,0.17703,0.17055,0.16757,0.15321,0.15277,0.15174,0.14173,0.13906,0.13811,0.13528,0.13168,0.12834,0.12663,0.11076,0.11023,0.1026,0.091923,0.082707,0.071147,0.070993,0.067228,0.062724,0.057161,0.057101,0.055275,0.047329,0.045629,0.045445,0.037613,0.036057,0.035186,0.032616,0.03023,0.02623,0.025647,0.02299,0.0179,0.017839,0.017471,0.01674,0.016186,0.015525,0.014776,0.0092052,0.0080988,0.0066346,0.0057066,0.005664,0.0055672,0.0044285,0.0041954,0.0041766,0.0033383,0.002265,0.0022368,0.0019905,0.0019428,0.0014796,0.0013697,0.0011556,0.0010568,0.00095669,0.00093826,0.0008329,0.00081552,0.00080738,0.0006136,0.00056472,0.00054526,0.00048632,0.00046902,0.00039689,0.00038197,0.00035353,0.0002911,0.00029056,0.00026445,0.00025615,0.00025613,0.00020768,0.0002063,0.00018908,0.00017239,0.00014069,0.00011693,0.00010227,8.2495e-05,6.7481e-05,5.1846e-05,5.1289e-05,4.1777e-05,3.4234e-05,3.0417e-05,2.2093e-05,2.0098e-05,1.6565e-05,1.4763e-05,1.1588e-05,1.1293e-05,1.0708e-05,9.4658e-06,7.2974e-06,5.5694e-06,4.8208e-06,4.1706e-06,3.8658e-06,3.8246e-06,3.3305e-06,2.836e-06,1.7256e-06,1.5095e-06,1.4019e-06,1.1898e-06,1.1885e-06,1.0104e-06,9.9008e-07,8.8629e-07,8.1061e-07,5.9901e-07,5.7322e-07,4.5152e-07,3.6099e-07,1.7186e-07,1.4921e-07,1.3933e-07,1.1636e-07,9.8171e-08,9.2011e-08,8.081e-08,7.3593e-08,6.5506e-08,5.3999e-08,5.3943e-08,3.801e-08,3.4614e-08,3.3944e-08,3.3592e-08,2.343e-08,2.3238e-08,2.2404e-08,2.1796e-08,2.0294e-08,1.8024e-08,1.62e-08,1.0054e-08,3.57e-09,2.6099e-09,2.5383e-09,2.4807e-09,2.3026e-09,2.2089e-09,1.4862e-09,1.1423e-09,9.4217e-10,8.4556e-10,6.7393e-10,5.5521e-10,5.355e-10,4.0719e-10,3.4843e-10,2.8785e-10,2.114e-10,1.4031e-10,1.3667e-10,1.1886e-10,1.0786e-10,1.0325e-10,6.4603e-11,5.6778e-11,3.1417e-11,2.6629e-11,1.9874e-11,1.6981e-11,1.6135e-11,1.2205e-11,1.1771e-11,1.0874e-11,9.1419e-12,6.5547e-12 1,3.3185e-11,4.669e-11,4.7492e-11,5.262e-11,5.6932e-11,6.3129e-11,7.7098e-11,1.2362e-10,1.665e-10,1.7427e-10,2.2051e-10,2.2912e-10,2.6672e-10,3.852e-10,4.3203e-10,4.678e-10,6.5923e-10,6.9905e-10,7.4596e-10,9.2717e-10,9.4903e-10,9.6183e-10,1.1343e-09,1.2499e-09,1.2539e-09,1.5097e-09,1.5354e-09,1.6693e-09,1.6877e-09,1.7059e-09,2.9959e-09,5.0932e-09,5.3417e-09,6.2359e-09,7.156e-09,7.9604e-09,9.0295e-09,1.0449e-08,1.349e-08,1.5516e-08,1.9457e-08,2.5814e-08,2.6493e-08,2.7997e-08,2.946e-08,3.8356e-08,3.8372e-08,7.1457e-08,7.4797e-08,7.6717e-08,9.2195e-08,9.3447e-08,1.3363e-07,1.5364e-07,1.6279e-07,1.8478e-07,2.0021e-07,2.2965e-07,2.3961e-07,3.314e-07,4.0413e-07,7.4751e-07,8.8292e-07,9.3327e-07,1.0304e-06,1.35e-06,1.4264e-06,1.4977e-06,1.881e-06,2.3251e-06,2.5138e-06,2.6791e-06,3.3708e-06,4.6788e-06,6.5795e-06,8.2557e-06,8.6559e-06,1.3151e-05,1.517e-05,1.6211e-05,1.6694e-05,1.8798e-05,3.0437e-05,3.0908e-05,3.3581e-05,3.8279e-05,3.9273e-05,4.727e-05,7.8096e-05,7.861e-05,9.0356e-05,9.4965e-05,0.00016594,0.00019044,0.00019237,0.00021733,0.00025602,0.00025685,0.00026025,0.00028705,0.0002873,0.00031383,0.00032469,0.00052408,0.0006436,0.00064806,0.00081532,0.0008665,0.00095161,0.00099575,0.0010227,0.0010532,0.0010634,0.0010909,0.0012086,0.001223,0.0012532,0.0012785,0.0014851,0.0017555,0.0021697,0.0023476,0.0027687,0.0033195,0.0035797,0.0037212,0.005658,0.0059326,0.006142,0.006577,0.0071699,0.0077217,0.0081976,0.0082849,0.0083401,0.0089867,0.010904,0.011058,0.011917,0.013365,0.014229,0.014374,0.020372,0.020446,0.021864,0.024885,0.025473,0.027768,0.028335,0.032586,0.035642,0.043499,0.043704,0.054448,0.055803,0.05624,0.064529,0.065089,0.068333,0.072804,0.074248,0.075355,0.079847,0.080611,0.081113,0.084873,0.086221,0.086576,0.089848,0.091049,0.097926,0.11021,0.11252,0.11314,0.11913,0.12167,0.13244,0.15301,0.15983,0.17106,0.17533,0.18757,0.20031,0.20137,0.2022,0.2023,0.20619,0.20652,0.21906,0.22497,0.23637,0.23689,0.24004,0.26086,0.26148,0.27179,0.2838,0.30601,0.30901,0.31764,0.31959,0.32455,0.33295,0.34604,0.34641,0.37706,0.41343,0.41738,0.42177,0.42314,0.44589,0.46012,0.50931,0.51192,0.5172,0.52613,0.55953,0.59458,0.63294,0.64443,0.65127,0.66858,0.70311,0.71807,0.73722,0.76599,0.79006,0.79432,0.838,0.84347,0.84546,0.85495,0.85867,0.88695,0.89828,0.90147,0.90179,0.90832,0.91682,0.92063,0.92231,0.94899,0.94902,0.96854,0.98528,0.99522,0.99956,1,0.99997,0.99967,0.99914,0.99691,0.99658,0.98817,0.98527,0.97853,0.96847,0.9615,0.96067,0.95447,0.95008,0.93851,0.91938,0.91747,0.90827,0.89295,0.87982,0.87919,0.82955,0.82088,0.81667,0.80572,0.79996,0.79079,0.77594,0.76987,0.76134,0.74746,0.72924,0.71163,0.70983,0.68806,0.67361,0.66082,0.6316,0.61822,0.61336,0.59611,0.59507,0.58752,0.58419,0.54036,0.52922,0.52491,0.50534,0.49409,0.49238,0.46646,0.41819,0.40426,0.39717,0.3809,0.37951,0.36165,0.35973,0.33744,0.32471,0.3,0.29782,0.29579,0.29465,0.29097,0.28798,0.28617,0.2675,0.2637,0.22936,0.21857,0.21161,0.20889,0.18731,0.18695,0.1802,0.17711,0.16216,0.1617,0.16062,0.15018,0.14739,0.14641,0.14344,0.13968,0.13619,0.1344,0.11779,0.11723,0.10922,0.098004,0.088303,0.07611,0.075947,0.07197,0.067206,0.061317,0.061254,0.059319,0.050887,0.04908,0.048884,0.040549,0.038891,0.037962,0.03522,0.032671,0.028392,0.027768,0.024921,0.019455,0.019389,0.018994,0.018207,0.01761,0.016898,0.016091,0.010072,0.0088719,0.0072816,0.0062718,0.0062254,0.0061199,0.0048783,0.0046238,0.0046033,0.0036866,0.0025096,0.0024787,0.0022079,0.0021555,0.0016453,0.001524,0.0012876,0.0011783,0.0010675,0.0010471,0.00093042,0.00091115,0.00090213,0.00068706,0.00063273,0.0006111,0.00054551,0.00052625,0.00044588,0.00042924,0.0003975,0.00032777,0.00032717,0.00029798,0.00028869,0.00028868,0.00023443,0.00023288,0.00021357,0.00019484,0.00015924,0.00013252,0.00011602,9.3719e-05,7.6766e-05,5.9084e-05,5.8454e-05,4.7678e-05,3.912e-05,3.4785e-05,2.5318e-05,2.3046e-05,1.9017e-05,1.6961e-05,1.3333e-05,1.2996e-05,1.2327e-05,1.0905e-05,8.4203e-06,6.4369e-06,5.5765e-06,4.8286e-06,4.4776e-06,4.4302e-06,3.8611e-06,3.2909e-06,2.0081e-06,1.758e-06,1.6333e-06,1.3876e-06,1.386e-06,1.1793e-06,1.1558e-06,1.0353e-06,9.4737e-07,7.0124e-07,6.7121e-07,5.294e-07,4.2377e-07,2.0256e-07,1.7598e-07,1.6439e-07,1.3742e-07,1.1604e-07,1.088e-07,9.5617e-08,8.7119e-08,7.7593e-08,6.4026e-08,6.396e-08,4.5148e-08,4.1134e-08,4.0342e-08,3.9926e-08,2.7898e-08,2.767e-08,2.6683e-08,2.5961e-08,2.4181e-08,2.1489e-08,1.9324e-08,1.2021e-08,4.2897e-09,3.1407e-09,3.055e-09,2.9859e-09,2.7725e-09,2.6603e-09,1.7932e-09,1.3799e-09,1.1392e-09,1.0229e-09,8.1609e-10,6.7291e-10,6.4913e-10,4.942e-10,4.2318e-10,3.499e-10,2.5732e-10,1.711e-10,1.6668e-10,1.4505e-10,1.3168e-10,1.2607e-10,7.9045e-11,6.951e-11,3.8559e-11,3.2706e-11,2.4439e-11,2.0895e-11,1.9859e-11,1.504e-11,1.4507e-11,1.3406e-11,1.1278e-11,8.0976e-12 1,3.1449e-11,4.4264e-11,4.5026e-11,4.9893e-11,5.3987e-11,5.987e-11,7.3135e-11,1.1733e-10,1.5808e-10,1.6546e-10,2.0942e-10,2.1761e-10,2.5337e-10,3.6608e-10,4.1064e-10,4.4468e-10,6.269e-10,6.6482e-10,7.0948e-10,8.8206e-10,9.0288e-10,9.1507e-10,1.0794e-09,1.1895e-09,1.1933e-09,1.4371e-09,1.4616e-09,1.5892e-09,1.6068e-09,1.6241e-09,2.8542e-09,4.8555e-09,5.0927e-09,5.9464e-09,6.825e-09,7.5932e-09,8.6143e-09,9.9701e-09,1.2877e-08,1.4813e-08,1.8581e-08,2.4661e-08,2.531e-08,2.6749e-08,2.8148e-08,3.6661e-08,3.6676e-08,6.8356e-08,7.1555e-08,7.3394e-08,8.8224e-08,8.9424e-08,1.2794e-07,1.4713e-07,1.559e-07,1.7699e-07,1.918e-07,2.2004e-07,2.2959e-07,3.1769e-07,3.8752e-07,7.1742e-07,8.4759e-07,8.96e-07,9.8939e-07,1.2968e-06,1.3703e-06,1.4389e-06,1.8078e-06,2.2353e-06,2.417e-06,2.5762e-06,3.2424e-06,4.5029e-06,6.3355e-06,7.9525e-06,8.3385e-06,1.2677e-05,1.4627e-05,1.5633e-05,1.61e-05,1.8131e-05,2.9382e-05,2.9837e-05,3.2422e-05,3.6967e-05,3.7928e-05,4.5666e-05,7.5513e-05,7.601e-05,8.7389e-05,9.1855e-05,0.00016067,0.00018444,0.00018631,0.00021053,0.00024809,0.00024889,0.0002522,0.00027822,0.00027846,0.00030423,0.00031478,0.00050856,0.00062479,0.00062913,0.00079187,0.00084169,0.00092454,0.00096752,0.00099373,0.0010235,0.0010334,0.0010602,0.0011748,0.0011888,0.0012183,0.0012429,0.0014442,0.0017078,0.0021117,0.0022853,0.0026962,0.0032338,0.003488,0.0036261,0.0055189,0.0057874,0.0059922,0.0064176,0.0069976,0.0075376,0.0080033,0.0080887,0.0081428,0.0087757,0.010653,0.010804,0.011646,0.013065,0.013912,0.014054,0.019936,0.020009,0.021401,0.024367,0.024944,0.027198,0.027755,0.031933,0.034937,0.042664,0.042865,0.053441,0.054774,0.055205,0.06337,0.063922,0.067118,0.071525,0.072948,0.07404,0.078469,0.079223,0.079717,0.083426,0.084756,0.085106,0.088334,0.089519,0.096305,0.10843,0.11071,0.11133,0.11724,0.11975,0.13039,0.15073,0.15748,0.16859,0.17282,0.18493,0.19754,0.1986,0.19942,0.19951,0.20337,0.2037,0.21612,0.22198,0.23329,0.2338,0.23692,0.25757,0.25819,0.26841,0.28033,0.30239,0.30536,0.31393,0.31587,0.3208,0.32915,0.34216,0.34252,0.373,0.40919,0.41312,0.41749,0.41886,0.44152,0.45569,0.50474,0.50735,0.51262,0.52153,0.55487,0.58989,0.62826,0.63976,0.64661,0.66394,0.69854,0.71355,0.73277,0.76166,0.78586,0.79014,0.83413,0.83965,0.84165,0.85123,0.85498,0.88357,0.89505,0.89827,0.8986,0.90522,0.91384,0.91772,0.91942,0.94659,0.94662,0.96662,0.98394,0.99444,0.99931,0.99997,1,0.99984,0.99943,0.99748,0.99718,0.98932,0.98655,0.98007,0.97034,0.96356,0.96275,0.95669,0.9524,0.94107,0.92227,0.92039,0.91133,0.89622,0.88324,0.88262,0.83345,0.82485,0.82067,0.8098,0.80408,0.79496,0.7802,0.77416,0.76568,0.75186,0.73371,0.71616,0.71437,0.69265,0.67823,0.66546,0.63628,0.62291,0.61805,0.6008,0.59976,0.5922,0.58887,0.54499,0.53384,0.52952,0.50991,0.49863,0.49692,0.47092,0.42246,0.40848,0.40136,0.385,0.38361,0.36565,0.36371,0.3413,0.32849,0.30361,0.30142,0.29937,0.29823,0.29451,0.2915,0.28968,0.27087,0.26704,0.23242,0.22152,0.2145,0.21176,0.18997,0.18961,0.1828,0.17967,0.16456,0.1641,0.16301,0.15246,0.14963,0.14864,0.14564,0.14183,0.13831,0.1365,0.11968,0.11912,0.11101,0.099647,0.089816,0.077455,0.077289,0.073255,0.068422,0.062445,0.062381,0.060417,0.051854,0.050019,0.04982,0.041349,0.039663,0.038719,0.03593,0.033337,0.028983,0.028348,0.025449,0.019881,0.019814,0.019411,0.018609,0.018001,0.017275,0.016452,0.01031,0.0090849,0.0074601,0.0064279,0.0063805,0.0062727,0.0050027,0.0047424,0.0047213,0.0037831,0.0025776,0.0025459,0.0022684,0.0022146,0.0016914,0.001567,0.0013244,0.0012121,0.0010985,0.0010775,0.00095765,0.00093786,0.00092859,0.00070761,0.00065176,0.00062953,0.00056209,0.00054228,0.00045961,0.00044249,0.00040984,0.00033807,0.00033745,0.0003074,0.00029783,0.00029782,0.00024194,0.00024035,0.00022046,0.00020116,0.00016447,0.00013691,0.00011989,9.6889e-05,7.9391e-05,6.1132e-05,6.0481e-05,4.9349e-05,4.0505e-05,3.6023e-05,2.6234e-05,2.3883e-05,1.9715e-05,1.7586e-05,1.383e-05,1.3481e-05,1.2788e-05,1.1315e-05,8.7406e-06,6.6846e-06,5.7924e-06,5.0167e-06,4.6526e-06,4.6034e-06,4.0128e-06,3.4211e-06,2.0891e-06,1.8293e-06,1.6998e-06,1.4444e-06,1.4427e-06,1.2279e-06,1.2034e-06,1.0781e-06,9.867e-07,7.3068e-07,6.9942e-07,5.5184e-07,4.4187e-07,2.1143e-07,1.8373e-07,1.7165e-07,1.4352e-07,1.2122e-07,1.1366e-07,9.9909e-08,9.1042e-08,8.1099e-08,6.6937e-08,6.6868e-08,4.7222e-08,4.303e-08,4.2202e-08,4.1767e-08,2.9198e-08,2.896e-08,2.7928e-08,2.7174e-08,2.5313e-08,2.2498e-08,2.0235e-08,1.2595e-08,4.5004e-09,3.2963e-09,3.2064e-09,3.134e-09,2.9102e-09,2.7926e-09,1.8833e-09,1.4497e-09,1.1971e-09,1.075e-09,8.579e-10,7.0755e-10,6.8258e-10,5.1983e-10,4.4521e-10,3.682e-10,2.7088e-10,1.802e-10,1.7555e-10,1.5279e-10,1.3872e-10,1.3282e-10,8.3322e-11,7.3281e-11,4.0678e-11,3.4509e-11,2.5795e-11,2.2059e-11,2.0966e-11,1.5883e-11,1.5321e-11,1.4159e-11,1.1914e-11,8.5573e-12 1,2.7731e-11,3.9065e-11,3.9739e-11,4.4047e-11,4.7671e-11,5.288e-11,6.463e-11,1.0382e-10,1.3998e-10,1.4654e-10,1.8559e-10,1.9287e-10,2.2465e-10,3.2492e-10,3.6458e-10,3.9489e-10,5.5724e-10,5.9103e-10,6.3086e-10,7.8478e-10,8.0336e-10,8.1424e-10,9.6088e-10,1.0593e-09,1.0626e-09,1.2804e-09,1.3023e-09,1.4163e-09,1.432e-09,1.4474e-09,2.548e-09,4.3412e-09,4.5538e-09,5.3196e-09,6.1081e-09,6.7977e-09,7.7148e-09,8.9328e-09,1.1546e-08,1.3288e-08,1.6679e-08,2.2156e-08,2.2741e-08,2.4037e-08,2.5299e-08,3.2977e-08,3.299e-08,6.1607e-08,6.4499e-08,6.6162e-08,7.9577e-08,8.0663e-08,1.1554e-07,1.3292e-07,1.4088e-07,1.6e-07,1.7343e-07,1.9906e-07,2.0773e-07,2.8774e-07,3.5122e-07,6.5156e-07,7.7022e-07,8.1437e-07,8.9956e-07,1.1801e-06,1.2473e-06,1.3099e-06,1.6471e-06,2.0381e-06,2.2044e-06,2.3501e-06,2.9604e-06,4.116e-06,5.7985e-06,7.2845e-06,7.6395e-06,1.1633e-05,1.343e-05,1.4356e-05,1.4787e-05,1.6661e-05,2.7049e-05,2.747e-05,2.986e-05,3.4063e-05,3.4952e-05,4.2115e-05,6.9784e-05,7.0246e-05,8.0809e-05,8.4956e-05,0.00014896,0.00017109,0.00017284,0.00019541,0.00023044,0.00023119,0.00023428,0.00025856,0.00025878,0.00028284,0.0002927,0.00047392,0.0005828,0.00058686,0.00073948,0.00078623,0.00086401,0.00090437,0.000929,0.00095696,0.00096624,0.00099143,0.0010992,0.0011124,0.0011401,0.0011632,0.0013527,0.0016008,0.0019816,0.0021453,0.0025333,0.0030414,0.0032817,0.0034124,0.0052057,0.0054603,0.0056547,0.0060585,0.0066093,0.0071224,0.007565,0.0076463,0.0076977,0.0082996,0.010087,0.010231,0.011033,0.012386,0.013194,0.013329,0.01895,0.01902,0.020352,0.023193,0.023745,0.025906,0.02644,0.030449,0.033334,0.040764,0.040958,0.051146,0.052431,0.052847,0.060727,0.061259,0.064347,0.068606,0.069982,0.071037,0.075322,0.076051,0.07653,0.080119,0.081407,0.081746,0.084872,0.08602,0.092598,0.10437,0.10658,0.10717,0.11292,0.11536,0.1257,0.1455,0.15207,0.16291,0.16703,0.17886,0.19119,0.19222,0.19302,0.19311,0.19688,0.1972,0.20936,0.2151,0.22617,0.22667,0.22973,0.24997,0.25058,0.26061,0.27232,0.294,0.29693,0.30537,0.30727,0.31212,0.32034,0.33317,0.33352,0.3636,0.39936,0.40325,0.40757,0.40893,0.43137,0.44541,0.49411,0.4967,0.50194,0.5108,0.54401,0.57895,0.61731,0.62882,0.63569,0.65306,0.68782,0.70292,0.72228,0.75144,0.77593,0.78027,0.82497,0.83059,0.83263,0.84241,0.84624,0.87552,0.88732,0.89064,0.89098,0.8978,0.90671,0.91072,0.91248,0.94078,0.94082,0.96193,0.98059,0.99238,0.99847,0.99967,0.99984,1,0.99988,0.9986,0.99838,0.99178,0.98933,0.98347,0.97449,0.96815,0.9674,0.9617,0.95763,0.94686,0.92884,0.92703,0.9183,0.90368,0.89109,0.89048,0.84246,0.83401,0.82991,0.81923,0.8136,0.80462,0.79007,0.78411,0.77573,0.76207,0.7441,0.72669,0.72492,0.70335,0.68901,0.6763,0.6472,0.63385,0.629,0.61176,0.61072,0.60316,0.59982,0.55586,0.54467,0.54033,0.52063,0.50929,0.50757,0.4814,0.43253,0.41841,0.41121,0.39467,0.39326,0.37508,0.37312,0.35041,0.33741,0.31215,0.30992,0.30784,0.30668,0.3029,0.29985,0.29799,0.27886,0.27495,0.23966,0.22855,0.22138,0.21858,0.1963,0.19593,0.18896,0.18576,0.17028,0.1698,0.16869,0.15787,0.15497,0.15395,0.15087,0.14697,0.14334,0.14149,0.1242,0.12362,0.11527,0.10357,0.093436,0.080673,0.080502,0.076332,0.071335,0.065149,0.065083,0.063049,0.054176,0.052272,0.052066,0.043272,0.04152,0.040538,0.037638,0.03494,0.030406,0.029744,0.026722,0.020909,0.020839,0.020418,0.01958,0.018944,0.018184,0.017323,0.010887,0.0096009,0.0078929,0.0068066,0.0067567,0.0066432,0.005305,0.0050304,0.0050082,0.0040178,0.0027431,0.0027095,0.0024156,0.0023586,0.0018039,0.0016719,0.0014142,0.0012949,0.001174,0.0011518,0.0010242,0.0010032,0.0009933,0.0007579,0.00069836,0.00067464,0.00060269,0.00058155,0.00049327,0.00047498,0.00044009,0.00036334,0.00036268,0.00033051,0.00032028,0.00032026,0.00026042,0.00025871,0.00023739,0.0002167,0.00017732,0.00014773,0.00012944,0.0001047,8.5862e-05,6.6186e-05,6.5485e-05,5.3476e-05,4.3928e-05,3.9085e-05,2.8499e-05,2.5955e-05,2.1441e-05,1.9135e-05,1.5061e-05,1.4683e-05,1.3931e-05,1.2332e-05,9.5355e-06,7.2998e-06,6.3289e-06,5.4842e-06,5.0876e-06,5.034e-06,4.3904e-06,3.7452e-06,2.291e-06,2.007e-06,1.8654e-06,1.586e-06,1.5842e-06,1.3491e-06,1.3223e-06,1.1851e-06,1.0849e-06,8.0421e-07,7.6993e-07,6.0796e-07,4.8717e-07,2.3367e-07,2.0315e-07,1.8983e-07,1.5881e-07,1.3421e-07,1.2587e-07,1.1069e-07,1.0089e-07,8.9906e-08,7.4251e-08,7.4175e-08,5.2439e-08,4.7798e-08,4.6881e-08,4.6399e-08,3.2472e-08,3.2209e-08,3.1064e-08,3.0228e-08,2.8163e-08,2.5041e-08,2.2529e-08,1.4043e-08,5.0331e-09,3.6898e-09,3.5895e-09,3.5086e-09,3.2588e-09,3.1275e-09,2.1115e-09,1.6266e-09,1.3438e-09,1.2072e-09,9.64e-10,7.9548e-10,7.6748e-10,5.8494e-10,5.0119e-10,4.1471e-10,3.0534e-10,2.0336e-10,1.9812e-10,1.725e-10,1.5666e-10,1.5001e-10,9.4222e-11,8.2896e-11,4.6087e-11,3.9114e-11,2.926e-11,2.5031e-11,2.3795e-11,1.8038e-11,1.7402e-11,1.6086e-11,1.3541e-11,9.734e-12 1,2.4838e-11,3.5018e-11,3.5623e-11,3.9494e-11,4.2751e-11,4.7434e-11,5.8001e-11,9.327e-11,1.2585e-10,1.3176e-10,1.6696e-10,1.7353e-10,2.022e-10,2.9269e-10,3.2851e-10,3.5589e-10,5.0263e-10,5.3319e-10,5.692e-10,7.0846e-10,7.2528e-10,7.3512e-10,8.6786e-10,9.5694e-10,9.5998e-10,1.1573e-09,1.1771e-09,1.2804e-09,1.2946e-09,1.3086e-09,2.3069e-09,3.9357e-09,4.129e-09,4.8253e-09,5.5424e-09,6.1699e-09,7.0045e-09,8.1135e-09,1.0494e-08,1.2082e-08,1.5174e-08,2.0172e-08,2.0706e-08,2.189e-08,2.3041e-08,3.0056e-08,3.0068e-08,5.6245e-08,5.8893e-08,6.0415e-08,7.2702e-08,7.3697e-08,1.0567e-07,1.2161e-07,1.2891e-07,1.4646e-07,1.5879e-07,1.8233e-07,1.9029e-07,2.6384e-07,3.2222e-07,5.9886e-07,7.0827e-07,7.4899e-07,8.2759e-07,1.0866e-06,1.1486e-06,1.2065e-06,1.5181e-06,1.8797e-06,2.0335e-06,2.1684e-06,2.7334e-06,3.8045e-06,5.3654e-06,6.7454e-06,7.0752e-06,1.0788e-05,1.2461e-05,1.3324e-05,1.3724e-05,1.547e-05,2.5157e-05,2.555e-05,2.7781e-05,3.1706e-05,3.2537e-05,3.923e-05,6.5121e-05,6.5553e-05,7.5449e-05,7.9335e-05,0.00013939,0.00016019,0.00016183,0.00018305,0.000216,0.00021671,0.00021961,0.00024246,0.00024268,0.00026533,0.00027461,0.00044549,0.00054829,0.00055213,0.00069638,0.0007406,0.00081418,0.00085238,0.00087569,0.00090216,0.00091095,0.0009348,0.0010368,0.0010493,0.0010756,0.0010975,0.0012771,0.0015125,0.001874,0.0020296,0.0023985,0.0028819,0.0031108,0.0032352,0.0049454,0.0051885,0.0053741,0.0057598,0.0062862,0.0067767,0.0072001,0.0072778,0.007327,0.0079029,0.0096143,0.0097524,0.010521,0.011818,0.012594,0.012724,0.018124,0.018191,0.019473,0.022207,0.022739,0.024821,0.025336,0.029202,0.031986,0.039164,0.039351,0.049209,0.050454,0.050857,0.058493,0.059009,0.062004,0.066137,0.067472,0.068497,0.072658,0.073366,0.073831,0.077319,0.078571,0.0789,0.081939,0.083055,0.089453,0.10091,0.10307,0.10365,0.10924,0.11162,0.12171,0.14104,0.14747,0.15807,0.1621,0.17368,0.18575,0.18676,0.18755,0.18764,0.19134,0.19165,0.20357,0.2092,0.22007,0.22056,0.22356,0.24346,0.24406,0.25392,0.26545,0.2868,0.28968,0.298,0.29988,0.30466,0.31277,0.32542,0.32577,0.35548,0.39086,0.39471,0.399,0.40034,0.42258,0.43651,0.48487,0.48745,0.49266,0.50148,0.53455,0.5694,0.60774,0.61926,0.62613,0.64354,0.67841,0.69358,0.71305,0.74244,0.76716,0.77155,0.81683,0.82254,0.82462,0.83456,0.83846,0.86831,0.88039,0.88379,0.88413,0.89114,0.90029,0.90441,0.90623,0.93549,0.93553,0.95759,0.97741,0.99032,0.99748,0.99914,0.99943,0.99988,1,0.99931,0.99915,0.99367,0.99149,0.98619,0.97787,0.97193,0.97121,0.96583,0.96197,0.9517,0.93438,0.93263,0.92419,0.91001,0.89775,0.89717,0.85017,0.84188,0.83784,0.82733,0.82179,0.81294,0.79857,0.79269,0.7844,0.77089,0.75309,0.73582,0.73406,0.71263,0.69837,0.68572,0.65672,0.6434,0.63855,0.62133,0.62028,0.61273,0.6094,0.56538,0.55416,0.54981,0.53004,0.51865,0.51692,0.49061,0.44141,0.42716,0.4199,0.4032,0.40178,0.38342,0.38143,0.35846,0.34531,0.31972,0.31746,0.31535,0.31417,0.31034,0.30724,0.30536,0.28594,0.28198,0.24611,0.2348,0.2275,0.22465,0.20195,0.20157,0.19446,0.19119,0.17539,0.17491,0.17376,0.16271,0.15974,0.1587,0.15556,0.15156,0.14785,0.14595,0.12825,0.12766,0.1191,0.1071,0.09669,0.08357,0.083394,0.079104,0.07396,0.067588,0.06752,0.065424,0.056273,0.054308,0.054096,0.045012,0.043201,0.042185,0.039185,0.036394,0.031697,0.031011,0.027878,0.021844,0.021772,0.021334,0.020463,0.019802,0.019013,0.018117,0.011415,0.010073,0.0082892,0.0071536,0.0071015,0.0069827,0.0055823,0.0052947,0.0052714,0.0042335,0.0028955,0.0028602,0.0025513,0.0024914,0.0019077,0.0017687,0.0014972,0.0013715,0.001244,0.0012204,0.0010859,0.0010636,0.0010532,0.00080453,0.00074157,0.00071649,0.00064037,0.000618,0.00052454,0.00050516,0.0004682,0.00038684,0.00038614,0.00035203,0.00034116,0.00034115,0.00027763,0.00027581,0.00025317,0.00023118,0.00018932,0.00015784,0.00013836,0.000112,9.1919e-05,7.0922e-05,7.0173e-05,5.7346e-05,4.7139e-05,4.196e-05,3.0629e-05,2.7904e-05,2.3066e-05,2.0593e-05,1.6222e-05,1.5816e-05,1.5009e-05,1.3292e-05,1.0286e-05,7.8812e-06,6.8361e-06,5.9264e-06,5.4992e-06,5.4414e-06,4.7478e-06,4.0521e-06,2.4826e-06,2.1757e-06,2.0226e-06,1.7206e-06,1.7186e-06,1.4643e-06,1.4353e-06,1.2867e-06,1.1783e-06,8.7423e-07,8.3707e-07,6.6144e-07,5.3037e-07,2.5493e-07,2.2172e-07,2.0723e-07,1.7345e-07,1.4665e-07,1.3756e-07,1.2101e-07,1.1033e-07,9.835e-08,8.1268e-08,8.1185e-08,5.745e-08,5.2378e-08,5.1375e-08,5.0849e-08,3.5621e-08,3.5332e-08,3.408e-08,3.3165e-08,3.0906e-08,2.7488e-08,2.4738e-08,1.5439e-08,5.5482e-09,4.0706e-09,3.9602e-09,3.8712e-09,3.5963e-09,3.4517e-09,2.3327e-09,1.7981e-09,1.4863e-09,1.3355e-09,1.067e-09,8.8093e-10,8.5e-10,6.4825e-10,5.5564e-10,4.5998e-10,3.3892e-10,2.2594e-10,2.2013e-10,1.9173e-10,1.7416e-10,1.6679e-10,1.0487e-10,9.2295e-11,5.1382e-11,4.3624e-11,3.2655e-11,2.7946e-11,2.6568e-11,2.0153e-11,1.9444e-11,1.7977e-11,1.5139e-11,1.089e-11 1,1.9146e-11,2.7042e-11,2.7512e-11,3.0518e-11,3.3049e-11,3.669e-11,4.4912e-11,7.2409e-11,9.7863e-11,1.0248e-10,1.3004e-10,1.3518e-10,1.5764e-10,2.2867e-10,2.5682e-10,2.7835e-10,3.9388e-10,4.1797e-10,4.4637e-10,5.5628e-10,5.6956e-10,5.7733e-10,6.8223e-10,7.5268e-10,7.5508e-10,9.1124e-10,9.2693e-10,1.0088e-09,1.0201e-09,1.0312e-09,1.8238e-09,3.1214e-09,3.2756e-09,3.8316e-09,4.4047e-09,4.9065e-09,5.5746e-09,6.4629e-09,8.3722e-09,9.6472e-09,1.2133e-08,1.6158e-08,1.6589e-08,1.7544e-08,1.8473e-08,2.4136e-08,2.4146e-08,4.5348e-08,4.7497e-08,4.8733e-08,5.8714e-08,5.9523e-08,8.5544e-08,9.8544e-08,1.045e-07,1.1882e-07,1.289e-07,1.4814e-07,1.5465e-07,2.149e-07,2.6281e-07,4.9052e-07,5.8082e-07,6.1445e-07,6.794e-07,8.9375e-07,9.4513e-07,9.931e-07,1.2516e-06,1.5522e-06,1.6802e-06,1.7925e-06,2.2633e-06,3.1579e-06,4.465e-06,5.6232e-06,5.9002e-06,9.0259e-06,1.0437e-05,1.1165e-05,1.1504e-05,1.2979e-05,2.1189e-05,2.1523e-05,2.3418e-05,2.6755e-05,2.7462e-05,3.3162e-05,5.5282e-05,5.5652e-05,6.4129e-05,6.7462e-05,0.00011911,0.00013705,0.00013847,0.0001568,0.0001853,0.00018591,0.00018842,0.00020822,0.0002084,0.00022804,0.00023609,0.00038473,0.00047445,0.0004778,0.00060399,0.00064273,0.00070724,0.00074076,0.00076122,0.00078446,0.00079218,0.00081313,0.00090281,0.00091382,0.0009369,0.00095622,0.0011144,0.0013221,0.0016417,0.0017795,0.0021066,0.0025363,0.00274,0.0028508,0.0043785,0.0045963,0.0047626,0.0051085,0.005581,0.0060218,0.0064026,0.0064726,0.0065168,0.0070354,0.0085792,0.0087039,0.0093986,0.010573,0.011275,0.011393,0.016303,0.016364,0.017533,0.02003,0.020516,0.022421,0.022893,0.026437,0.028995,0.035606,0.035778,0.04489,0.046043,0.046416,0.053501,0.053981,0.056764,0.060609,0.061853,0.062808,0.066687,0.067347,0.067781,0.071036,0.072205,0.072513,0.075353,0.076397,0.082385,0.093127,0.095152,0.095697,0.10096,0.10319,0.1127,0.13095,0.13704,0.14708,0.15091,0.1619,0.17339,0.17436,0.17511,0.17519,0.17871,0.17901,0.19038,0.19576,0.20615,0.20662,0.2095,0.22856,0.22914,0.23861,0.24969,0.27026,0.27304,0.28106,0.28288,0.2875,0.29534,0.30759,0.30793,0.33675,0.3712,0.37496,0.37914,0.38045,0.40219,0.41583,0.46336,0.4659,0.47103,0.47973,0.51243,0.54701,0.58521,0.59673,0.6036,0.62105,0.65612,0.67142,0.69112,0.72096,0.74618,0.75066,0.7972,0.80311,0.80525,0.81556,0.8196,0.85075,0.86344,0.86702,0.86739,0.87478,0.88448,0.88886,0.89079,0.92225,0.92229,0.94652,0.96901,0.98453,0.99416,0.99691,0.99748,0.9986,0.99931,1,0.99999,0.99715,0.99563,0.99163,0.98491,0.97991,0.9793,0.97466,0.9713,0.96222,0.9466,0.94501,0.93728,0.92417,0.91275,0.9122,0.86776,0.85983,0.85597,0.84589,0.84056,0.83203,0.81816,0.81246,0.80442,0.79128,0.77392,0.75703,0.7553,0.73425,0.72021,0.70772,0.67901,0.66578,0.66096,0.64382,0.64278,0.63524,0.63191,0.58786,0.57658,0.57221,0.55231,0.54083,0.53909,0.5125,0.46257,0.44806,0.44066,0.42361,0.42216,0.40338,0.40135,0.37779,0.36428,0.33794,0.33561,0.33343,0.33221,0.32826,0.32506,0.32312,0.30305,0.29894,0.26173,0.24996,0.24235,0.23938,0.21567,0.21527,0.20783,0.20442,0.18785,0.18734,0.18614,0.17453,0.17141,0.17031,0.167,0.16279,0.15888,0.15688,0.13819,0.13756,0.1285,0.11577,0.1047,0.090719,0.090531,0.085949,0.080448,0.073625,0.073552,0.071304,0.061476,0.059362,0.059133,0.04934,0.047384,0.046287,0.043042,0.040018,0.034923,0.034177,0.03077,0.024191,0.024112,0.023634,0.022681,0.021958,0.021094,0.020114,0.012748,0.011266,0.0092931,0.0080341,0.0079763,0.0078444,0.0062876,0.0059673,0.0059414,0.0047834,0.0032854,0.0032458,0.0028988,0.0028315,0.0021743,0.0020174,0.0017107,0.0015684,0.001424,0.0013974,0.0012447,0.0012195,0.0012077,0.000925,0.00085331,0.00082472,0.00073791,0.00071237,0.00060559,0.00058344,0.00054113,0.00044791,0.00044711,0.00040796,0.00039549,0.00039547,0.00032244,0.00032036,0.00029429,0.00026895,0.00022065,0.00018425,0.00016171,0.00013114,0.00010781,8.3369e-05,8.2496e-05,6.7531e-05,5.5603e-05,4.9542e-05,3.6257e-05,3.3056e-05,2.7367e-05,2.4455e-05,1.9301e-05,1.8821e-05,1.7869e-05,1.5839e-05,1.2282e-05,9.4299e-06,8.1883e-06,7.1064e-06,6.5978e-06,6.5291e-06,5.7026e-06,4.8728e-06,2.9962e-06,2.6283e-06,2.4447e-06,2.0821e-06,2.0798e-06,1.774e-06,1.7391e-06,1.5603e-06,1.4297e-06,1.063e-06,1.0182e-06,8.0585e-07,6.4716e-07,3.1263e-07,2.7216e-07,2.5448e-07,2.1326e-07,1.8051e-07,1.6939e-07,1.4914e-07,1.3606e-07,1.2137e-07,1.0042e-07,1.0031e-07,7.1146e-08,6.4903e-08,6.3669e-08,6.3021e-08,4.4248e-08,4.3892e-08,4.2346e-08,4.1216e-08,3.8426e-08,3.4201e-08,3.08e-08,1.9279e-08,6.9716e-09,5.1244e-09,4.9863e-09,4.8749e-09,4.5307e-09,4.3496e-09,2.9464e-09,2.2746e-09,1.8822e-09,1.6923e-09,1.3539e-09,1.119e-09,1.0799e-09,8.2488e-10,7.0766e-10,5.8645e-10,4.3286e-10,2.8921e-10,2.8183e-10,2.4566e-10,2.2326e-10,2.1386e-10,1.3482e-10,1.1873e-10,6.6308e-11,5.6347e-11,4.2244e-11,3.6182e-11,3.4407e-11,2.6138e-11,2.5223e-11,2.3329e-11,1.9664e-11,1.417e-11 1,1.8603e-11,2.6281e-11,2.6738e-11,2.9662e-11,3.2123e-11,3.5664e-11,4.3661e-11,7.0412e-11,9.5182e-11,9.968e-11,1.265e-10,1.315e-10,1.5337e-10,2.2252e-10,2.4993e-10,2.709e-10,3.8342e-10,4.0689e-10,4.3455e-10,5.4162e-10,5.5455e-10,5.6213e-10,6.6433e-10,7.3298e-10,7.3533e-10,8.875e-10,9.028e-10,9.8257e-10,9.9357e-10,1.0044e-09,1.7771e-09,3.0425e-09,3.1929e-09,3.7352e-09,4.2943e-09,4.7839e-09,5.4357e-09,6.3026e-09,8.1659e-09,9.4103e-09,1.1837e-08,1.5767e-08,1.6188e-08,1.712e-08,1.8027e-08,2.3559e-08,2.3568e-08,4.4282e-08,4.6382e-08,4.759e-08,5.7344e-08,5.8135e-08,8.357e-08,9.628e-08,1.0211e-07,1.1611e-07,1.2596e-07,1.4478e-07,1.5115e-07,2.1008e-07,2.5696e-07,4.7982e-07,5.6822e-07,6.0115e-07,6.6475e-07,8.7466e-07,9.2498e-07,9.7197e-07,1.2252e-06,1.5197e-06,1.6451e-06,1.7551e-06,2.2166e-06,3.0935e-06,4.3752e-06,5.5112e-06,5.783e-06,8.8497e-06,1.0234e-05,1.0949e-05,1.1282e-05,1.273e-05,2.0791e-05,2.1118e-05,2.2979e-05,2.6258e-05,2.6952e-05,3.2552e-05,5.4289e-05,5.4653e-05,6.2986e-05,6.6263e-05,0.00011706,0.00013471,0.0001361,0.00015414,0.00018218,0.00018278,0.00018526,0.00020474,0.00020492,0.00022425,0.00023218,0.00037854,0.00046691,0.00047022,0.00059455,0.00063272,0.00069631,0.00072934,0.00074951,0.00077242,0.00078002,0.00080067,0.00088908,0.00089993,0.00092269,0.00094174,0.0010977,0.0013025,0.0016179,0.0017538,0.0020766,0.0025007,0.0027017,0.0028112,0.0043198,0.004535,0.0046993,0.0050411,0.005508,0.0059435,0.0063199,0.006389,0.0064327,0.0069453,0.0084716,0.0085949,0.0092818,0.010443,0.011138,0.011255,0.016113,0.016173,0.01733,0.019802,0.020283,0.02217,0.022636,0.026147,0.028681,0.035231,0.035402,0.044434,0.045578,0.045948,0.052974,0.053449,0.05621,0.060025,0.061259,0.062206,0.066054,0.06671,0.06714,0.070371,0.071531,0.071836,0.074655,0.075691,0.081635,0.0923,0.094311,0.094852,0.10008,0.1023,0.11174,0.12988,0.13592,0.14591,0.14971,0.16064,0.17207,0.17303,0.17377,0.17386,0.17736,0.17766,0.18897,0.19432,0.20466,0.20512,0.20798,0.22696,0.22753,0.23696,0.24799,0.26847,0.27124,0.27924,0.28105,0.28565,0.29346,0.30566,0.306,0.33472,0.36907,0.37281,0.37698,0.37829,0.39997,0.41358,0.46101,0.46355,0.46867,0.47735,0.51,0.54456,0.58274,0.59425,0.60112,0.61857,0.65365,0.66897,0.68869,0.71857,0.74384,0.74833,0.795,0.80093,0.80308,0.81342,0.81748,0.84877,0.86152,0.86512,0.86549,0.87292,0.88268,0.88709,0.88904,0.92073,0.92076,0.94523,0.96801,0.98381,0.99371,0.99658,0.99718,0.99838,0.99915,0.99999,1,0.99745,0.996,0.99215,0.9856,0.98071,0.98011,0.97556,0.97225,0.96331,0.94788,0.9463,0.93865,0.92567,0.91434,0.91379,0.86964,0.86176,0.85792,0.84789,0.84258,0.83409,0.82027,0.81459,0.80659,0.79349,0.77618,0.75933,0.75761,0.73661,0.72259,0.71012,0.68145,0.66824,0.66342,0.64629,0.64525,0.63771,0.63439,0.59034,0.57906,0.57469,0.55478,0.54328,0.54154,0.51492,0.46492,0.45038,0.44297,0.42589,0.42443,0.4056,0.40357,0.37995,0.3664,0.33998,0.33764,0.33545,0.33424,0.33027,0.32706,0.32511,0.30497,0.30085,0.26348,0.25166,0.24402,0.24104,0.21722,0.21682,0.20934,0.20591,0.18926,0.18875,0.18754,0.17586,0.17273,0.17162,0.16829,0.16406,0.16013,0.15812,0.13931,0.13868,0.12957,0.11676,0.10562,0.091535,0.091346,0.086731,0.08119,0.074315,0.074241,0.071977,0.062072,0.059941,0.059711,0.049838,0.047865,0.046758,0.043485,0.040435,0.035294,0.034542,0.031104,0.024462,0.024382,0.023899,0.022938,0.022208,0.021335,0.020345,0.012903,0.011405,0.0094101,0.0081368,0.0080782,0.0079449,0.0063699,0.0060458,0.0060196,0.0048478,0.0033311,0.003291,0.0029396,0.0028714,0.0022056,0.0020467,0.0017358,0.0015916,0.0014453,0.0014182,0.0012635,0.0012379,0.0012259,0.00093925,0.00086652,0.00083752,0.00074945,0.00072355,0.0006152,0.00059271,0.00054978,0.00045516,0.00045434,0.0004146,0.00040194,0.00040192,0.00032777,0.00032565,0.00029918,0.00027344,0.00022438,0.0001874,0.00016449,0.00013343,0.00010971,8.4859e-05,8.3971e-05,6.8752e-05,5.6619e-05,5.0452e-05,3.6934e-05,3.3676e-05,2.7885e-05,2.492e-05,1.9672e-05,1.9184e-05,1.8213e-05,1.6146e-05,1.2523e-05,9.6172e-06,8.352e-06,7.2493e-06,6.7309e-06,6.6608e-06,5.8184e-06,4.9723e-06,3.0586e-06,2.6834e-06,2.4961e-06,2.1261e-06,2.1237e-06,1.8117e-06,1.7761e-06,1.5937e-06,1.4604e-06,1.0861e-06,1.0403e-06,8.2349e-07,6.6144e-07,3.197e-07,2.7835e-07,2.6028e-07,2.1814e-07,1.8467e-07,1.733e-07,1.526e-07,1.3922e-07,1.2421e-07,1.0278e-07,1.0267e-07,7.2835e-08,6.6448e-08,6.5186e-08,6.4523e-08,4.5314e-08,4.4949e-08,4.3367e-08,4.2211e-08,3.9355e-08,3.5031e-08,3.1549e-08,1.9755e-08,7.1485e-09,5.2555e-09,5.1139e-09,4.9997e-09,4.6469e-09,4.4613e-09,3.0228e-09,2.334e-09,1.9316e-09,1.7368e-09,1.3897e-09,1.1488e-09,1.1087e-09,8.4698e-10,7.2669e-10,6.0229e-10,4.4464e-10,2.9716e-10,2.8957e-10,2.5243e-10,2.2943e-10,2.1978e-10,1.3858e-10,1.2206e-10,6.819e-11,5.7952e-11,4.3455e-11,3.7223e-11,3.5398e-11,2.6895e-11,2.5954e-11,2.4006e-11,2.0237e-11,1.4586e-11 1,1.1229e-11,1.5919e-11,1.6199e-11,1.7989e-11,1.9498e-11,2.1671e-11,2.6586e-11,4.3088e-11,5.843e-11,6.1221e-11,7.7886e-11,8.0999e-11,9.4625e-11,1.3784e-10,1.5501e-10,1.6816e-10,2.389e-10,2.5369e-10,2.7113e-10,3.3874e-10,3.4692e-10,3.5171e-10,4.1642e-10,4.5995e-10,4.6144e-10,5.5809e-10,5.6782e-10,6.1857e-10,6.2557e-10,6.3246e-10,1.1262e-09,1.9399e-09,2.0369e-09,2.3872e-09,2.7489e-09,3.0661e-09,3.489e-09,4.0524e-09,5.2663e-09,6.079e-09,7.6675e-09,1.0248e-08,1.0525e-08,1.1138e-08,1.1735e-08,1.5386e-08,1.5392e-08,2.9143e-08,3.0542e-08,3.1348e-08,3.786e-08,3.8388e-08,5.5434e-08,6.3978e-08,6.7899e-08,7.7337e-08,8.3986e-08,9.6703e-08,1.0102e-07,1.4099e-07,1.729e-07,3.2552e-07,3.8636e-07,4.0905e-07,4.5294e-07,5.9817e-07,6.3306e-07,6.6567e-07,8.4176e-07,1.0472e-06,1.1348e-06,1.2118e-06,1.5354e-06,2.1529e-06,3.0601e-06,3.8674e-06,4.061e-06,6.2535e-06,7.2477e-06,7.7618e-06,8.0009e-06,9.0443e-06,1.4882e-05,1.512e-05,1.6474e-05,1.8863e-05,1.937e-05,2.3464e-05,3.9452e-05,3.9721e-05,4.5883e-05,4.8309e-05,8.615e-05,9.9372e-05,0.00010042,0.00011397,0.00013509,0.00013554,0.00013741,0.00015212,0.00015226,0.00016688,0.00017289,0.00028432,0.00035204,0.00035458,0.00045027,0.00047973,0.00052889,0.00055447,0.00057009,0.00058785,0.00059374,0.00060976,0.00067844,0.00068688,0.00070459,0.00071942,0.00084101,0.0010013,0.001249,0.0013562,0.0016113,0.0019477,0.0021077,0.0021949,0.0034037,0.0035771,0.0037095,0.0039854,0.0043631,0.0047161,0.0050216,0.0050778,0.0051133,0.0055303,0.0067764,0.0068773,0.0074403,0.0083944,0.0089666,0.0090627,0.013089,0.013139,0.014103,0.016169,0.016572,0.018155,0.018547,0.021505,0.023647,0.029211,0.029357,0.037083,0.038065,0.038382,0.044436,0.044846,0.047233,0.050538,0.051609,0.052431,0.055776,0.056347,0.056722,0.059537,0.06055,0.060816,0.063279,0.064184,0.06939,0.078769,0.080541,0.081019,0.085632,0.087598,0.095966,0.11213,0.11754,0.1265,0.12992,0.13977,0.1501,0.15097,0.15164,0.15172,0.15489,0.15516,0.16544,0.17031,0.17974,0.18017,0.18278,0.20017,0.20069,0.20937,0.21954,0.23849,0.24105,0.24848,0.25016,0.25445,0.26172,0.27312,0.27344,0.30038,0.3328,0.33635,0.34031,0.34154,0.36217,0.37516,0.42071,0.42316,0.42811,0.43651,0.46822,0.50202,0.53965,0.55106,0.55789,0.57526,0.61041,0.62585,0.64582,0.67629,0.70226,0.7069,0.75551,0.76175,0.76401,0.77493,0.77924,0.81266,0.82644,0.83036,0.83075,0.83886,0.84955,0.85442,0.85656,0.89209,0.89214,0.92047,0.9481,0.96871,0.98325,0.98817,0.98932,0.99178,0.99367,0.99715,0.99745,1,0.99984,0.99854,0.99513,0.9921,0.99171,0.98866,0.98635,0.97981,0.96782,0.96656,0.96037,0.94961,0.94001,0.93954,0.90081,0.89373,0.89026,0.88116,0.87632,0.86856,0.85582,0.85056,0.84312,0.83088,0.8146,0.79864,0.797,0.77695,0.76348,0.75145,0.72361,0.7107,0.70598,0.68914,0.68812,0.68069,0.67741,0.63365,0.62238,0.61799,0.59799,0.5864,0.58464,0.55768,0.50661,0.49167,0.48402,0.46637,0.46486,0.44533,0.44321,0.41859,0.40441,0.37664,0.37417,0.37187,0.37058,0.3664,0.363,0.36094,0.3396,0.33522,0.29534,0.28266,0.27443,0.27122,0.24548,0.24505,0.23694,0.23321,0.21506,0.2145,0.21319,0.20041,0.19697,0.19576,0.19211,0.18746,0.18313,0.18092,0.16014,0.15944,0.14932,0.13505,0.12258,0.10674,0.10653,0.10132,0.095046,0.087242,0.087158,0.084581,0.073275,0.070834,0.070569,0.059217,0.05694,0.055661,0.051873,0.048334,0.04235,0.041472,0.037451,0.029643,0.029549,0.028979,0.027843,0.026979,0.025946,0.024772,0.015889,0.014087,0.011676,0.01013,0.010059,0.0098964,0.0079746,0.0075777,0.0075456,0.0061058,0.0042296,0.0041797,0.0037423,0.0036572,0.0028246,0.002625,0.0022338,0.0020518,0.0018667,0.0018324,0.0016362,0.0016037,0.0015885,0.0012233,0.0011303,0.0010932,0.00098031,0.00094704,0.00080767,0.00077869,0.00072329,0.00060089,0.00059983,0.00054827,0.00053182,0.0005318,0.00043528,0.00043252,0.00039796,0.0003643,0.00029998,0.00025132,0.0002211,0.00017998,0.00014848,0.00011533,0.00011415,9.3766e-05,7.7462e-05,6.9154e-05,5.0876e-05,4.6456e-05,3.8581e-05,3.454e-05,2.7366e-05,2.6697e-05,2.5366e-05,2.2529e-05,1.7541e-05,1.3524e-05,1.1769e-05,1.0237e-05,9.515e-06,9.4174e-06,8.2425e-06,7.06e-06,4.3732e-06,3.8438e-06,3.5791e-06,3.0554e-06,3.0521e-06,2.6094e-06,2.5589e-06,2.2995e-06,2.1097e-06,1.5754e-06,1.5098e-06,1.199e-06,9.6587e-07,4.7136e-07,4.1113e-07,3.8478e-07,3.2323e-07,2.7422e-07,2.5755e-07,2.2714e-07,2.0748e-07,1.8537e-07,1.5375e-07,1.536e-07,1.0943e-07,9.995e-08,9.8074e-08,9.7089e-08,6.8483e-08,6.7939e-08,6.5576e-08,6.385e-08,5.958e-08,5.311e-08,4.7893e-08,3.0158e-08,1.1045e-08,8.1493e-09,7.9323e-09,7.7572e-09,7.2159e-09,6.9309e-09,4.7172e-09,3.653e-09,3.0297e-09,2.7274e-09,2.1878e-09,1.8123e-09,1.7497e-09,1.3407e-09,1.1523e-09,9.5699e-10,7.0884e-10,4.758e-10,4.6378e-10,4.0489e-10,3.6837e-10,3.5304e-10,2.2371e-10,1.973e-10,1.109e-10,9.4412e-11,7.1006e-11,6.0919e-11,5.7963e-11,4.4164e-11,4.2634e-11,3.9467e-11,3.3327e-11,2.4101e-11 1,9.8784e-12,1.4017e-11,1.4264e-11,1.5845e-11,1.7177e-11,1.9096e-11,2.3439e-11,3.8037e-11,5.1621e-11,5.4093e-11,6.8862e-11,7.1622e-11,8.3705e-11,1.2205e-10,1.373e-10,1.4898e-10,2.1186e-10,2.25e-10,2.4052e-10,3.0068e-10,3.0796e-10,3.1223e-10,3.6984e-10,4.0861e-10,4.0994e-10,4.9606e-10,5.0473e-10,5.4998e-10,5.5622e-10,5.6236e-10,1.003e-09,1.7303e-09,1.8171e-09,2.1305e-09,2.4544e-09,2.7385e-09,3.1173e-09,3.6222e-09,4.7109e-09,5.4402e-09,6.8664e-09,9.1851e-09,9.4338e-09,9.9853e-09,1.0523e-08,1.3807e-08,1.3813e-08,2.6203e-08,2.7465e-08,2.8191e-08,3.4068e-08,3.4545e-08,4.9941e-08,5.7664e-08,6.121e-08,6.9747e-08,7.5762e-08,8.7273e-08,9.1177e-08,1.274e-07,1.5633e-07,2.9493e-07,3.5025e-07,3.7089e-07,4.1082e-07,5.4306e-07,5.7485e-07,6.0456e-07,7.651e-07,9.525e-07,1.0325e-06,1.1028e-06,1.3985e-06,1.9632e-06,2.7939e-06,3.534e-06,3.7116e-06,5.7244e-06,6.6381e-06,7.1108e-06,7.3307e-06,8.2905e-06,1.3667e-05,1.3887e-05,1.5135e-05,1.734e-05,1.7807e-05,2.1586e-05,3.637e-05,3.6619e-05,4.2325e-05,4.4572e-05,7.9674e-05,9.1957e-05,9.2928e-05,0.00010552,0.00012517,0.00012559,0.00012733,0.00014102,0.00014115,0.00015477,0.00016036,0.00026431,0.00032757,0.00032994,0.00041944,0.00044702,0.00049305,0.000517,0.00053164,0.00054828,0.0005538,0.00056882,0.0006332,0.00064112,0.00065772,0.00067163,0.00078573,0.00093627,0.0011692,0.00127,0.0015102,0.0018273,0.0019782,0.0020604,0.0032026,0.0033665,0.0034919,0.0037531,0.0041107,0.0044452,0.0047348,0.004788,0.0048217,0.0052173,0.0064001,0.006496,0.0070309,0.0079381,0.0084824,0.0085739,0.01241,0.012458,0.013378,0.015351,0.015736,0.017249,0.017624,0.020454,0.022505,0.02784,0.02798,0.0354,0.036344,0.03665,0.042474,0.04287,0.045169,0.048353,0.049385,0.050177,0.053404,0.053954,0.054316,0.057033,0.05801,0.058267,0.060645,0.06152,0.06655,0.07562,0.077335,0.077797,0.082264,0.084168,0.092278,0.10796,0.11322,0.12192,0.12525,0.13484,0.1449,0.14574,0.1464,0.14648,0.14957,0.14983,0.15985,0.1646,0.17381,0.17422,0.17678,0.19377,0.19428,0.20277,0.21272,0.23128,0.2338,0.24108,0.24273,0.24693,0.25407,0.26526,0.26557,0.29205,0.32397,0.32747,0.33136,0.33258,0.35293,0.36575,0.41078,0.41321,0.41811,0.42643,0.45787,0.49143,0.52887,0.54024,0.54704,0.56437,0.59948,0.61493,0.63493,0.66549,0.69158,0.69625,0.74526,0.75156,0.75385,0.7649,0.76925,0.80315,0.81716,0.82115,0.82155,0.82981,0.84072,0.84569,0.84788,0.8843,0.88434,0.91359,0.94239,0.96416,0.97984,0.98527,0.98655,0.98933,0.99149,0.99563,0.996,0.99984,1,0.99935,0.99674,0.99419,0.99386,0.9912,0.98914,0.98322,0.97214,0.97096,0.96515,0.95497,0.94583,0.94539,0.90812,0.90125,0.89789,0.88904,0.88433,0.87676,0.86433,0.85919,0.85191,0.83991,0.82392,0.80822,0.8066,0.78684,0.77353,0.76164,0.73406,0.72125,0.71656,0.69983,0.69882,0.69143,0.68816,0.64455,0.63329,0.62892,0.60892,0.59733,0.59557,0.56856,0.51729,0.50226,0.49456,0.47679,0.47527,0.45558,0.45345,0.4286,0.41427,0.38618,0.38369,0.38135,0.38005,0.37582,0.37238,0.37029,0.34866,0.34422,0.30373,0.29082,0.28246,0.27919,0.25297,0.25253,0.24426,0.24045,0.22193,0.22136,0.22002,0.20696,0.20344,0.20221,0.19847,0.19371,0.18929,0.18702,0.16573,0.16502,0.15464,0.13998,0.12717,0.11087,0.11065,0.10528,0.09882,0.09077,0.090684,0.088024,0.076345,0.073821,0.073548,0.0618,0.059441,0.058116,0.054189,0.050519,0.044306,0.043394,0.039215,0.03109,0.030992,0.030398,0.029214,0.028313,0.027237,0.026012,0.016733,0.014845,0.012319,0.010697,0.010622,0.010452,0.0084327,0.0080155,0.0079817,0.0064665,0.0044886,0.0044359,0.0039741,0.0038842,0.0030041,0.0027929,0.0023786,0.0021858,0.0019895,0.0019532,0.001745,0.0017106,0.0016944,0.0013066,0.0012077,0.0011683,0.0010482,0.0010128,0.00086438,0.00083351,0.00077449,0.00064398,0.00064285,0.00058784,0.00057028,0.00057026,0.00046719,0.00046424,0.00042731,0.00039133,0.00032251,0.00027042,0.00023803,0.00019394,0.00016012,0.00012452,0.00012324,0.00010132,8.3768e-05,7.4818e-05,5.5113e-05,5.0343e-05,4.184e-05,3.7474e-05,2.9718e-05,2.8994e-05,2.7555e-05,2.4484e-05,1.9081e-05,1.4726e-05,1.2822e-05,1.1159e-05,1.0375e-05,1.0269e-05,8.9922e-06,7.7066e-06,4.782e-06,4.2051e-06,3.9166e-06,3.3454e-06,3.3418e-06,2.8587e-06,2.8035e-06,2.5203e-06,2.313e-06,1.7289e-06,1.6572e-06,1.3171e-06,1.0618e-06,5.1944e-07,4.5327e-07,4.2431e-07,3.5664e-07,3.0273e-07,2.8438e-07,2.5091e-07,2.2926e-07,2.049e-07,1.7006e-07,1.6989e-07,1.2117e-07,1.107e-07,1.0863e-07,1.0754e-07,7.5941e-08,7.5339e-08,7.2727e-08,7.0818e-08,6.6098e-08,5.894e-08,5.3167e-08,3.3528e-08,1.2316e-08,9.0955e-09,8.8539e-09,8.6591e-09,8.0566e-09,7.7393e-09,5.2733e-09,4.0867e-09,3.3912e-09,3.0538e-09,2.4512e-09,2.0315e-09,1.9616e-09,1.5042e-09,1.2933e-09,1.0747e-09,7.9669e-10,5.3536e-10,5.2187e-10,4.5578e-10,4.1477e-10,3.9756e-10,2.5223e-10,2.2253e-10,1.2528e-10,1.0669e-10,8.0304e-11,6.8924e-11,6.5588e-11,5.001e-11,4.8282e-11,4.4703e-11,3.7766e-11,2.7334e-11 1,7.6361e-12,1.0855e-11,1.1047e-11,1.2278e-11,1.3316e-11,1.4811e-11,1.8199e-11,2.9607e-11,4.0245e-11,4.2183e-11,5.3768e-11,5.5935e-11,6.5425e-11,9.5591e-11,1.076e-10,1.1681e-10,1.6642e-10,1.768e-10,1.8906e-10,2.3664e-10,2.424e-10,2.4577e-10,2.914e-10,3.2212e-10,3.2317e-10,3.9148e-10,3.9835e-10,4.3427e-10,4.3923e-10,4.441e-10,7.946e-10,1.3751e-09,1.4445e-09,1.6951e-09,1.9544e-09,2.182e-09,2.4857e-09,2.8908e-09,3.7654e-09,4.3519e-09,5.5004e-09,7.3704e-09,7.5712e-09,8.0165e-09,8.4505e-09,1.1106e-08,1.1111e-08,2.1159e-08,2.2185e-08,2.2775e-08,2.7554e-08,2.7942e-08,4.0488e-08,4.6792e-08,4.9687e-08,5.6663e-08,6.1582e-08,7.1003e-08,7.4199e-08,1.0389e-07,1.2766e-07,2.4184e-07,2.8752e-07,3.0459e-07,3.3761e-07,4.4711e-07,4.7346e-07,4.981e-07,6.3138e-07,7.872e-07,8.5381e-07,9.1236e-07,1.1589e-06,1.6307e-06,2.3265e-06,2.9478e-06,3.0969e-06,4.7915e-06,5.5624e-06,5.9615e-06,6.1472e-06,6.9584e-06,1.1515e-05,1.1701e-05,1.2762e-05,1.4635e-05,1.5033e-05,1.8251e-05,3.0877e-05,3.109e-05,3.5975e-05,3.7901e-05,6.8072e-05,7.8661e-05,7.9498e-05,9.037e-05,0.00010735,0.00010772,0.00010922,0.00012107,0.00012118,0.00013298,0.00013783,0.00022816,0.00028331,0.00028538,0.00036358,0.00038772,0.00042802,0.00044902,0.00046185,0.00047644,0.00048129,0.00049446,0.00055097,0.00055793,0.00057251,0.00058474,0.0006851,0.00081773,0.0010234,0.0011125,0.0013252,0.0016065,0.0017406,0.0018137,0.0028321,0.0029787,0.0030909,0.0033246,0.003645,0.003945,0.0042049,0.0042527,0.004283,0.0046384,0.0057031,0.0057895,0.0062719,0.007091,0.0075832,0.0076659,0.011145,0.011188,0.012025,0.013822,0.014173,0.015554,0.015897,0.018484,0.020363,0.025261,0.02539,0.032227,0.033099,0.033381,0.038767,0.039133,0.041263,0.044216,0.045174,0.045909,0.048907,0.049418,0.049754,0.052281,0.053191,0.05343,0.055644,0.056459,0.06115,0.069623,0.071228,0.07166,0.075842,0.077627,0.085234,0.099986,0.10494,0.11315,0.1163,0.12536,0.13489,0.13569,0.13632,0.13639,0.13932,0.13957,0.14908,0.1536,0.16236,0.16276,0.16519,0.1814,0.18188,0.18999,0.19951,0.2173,0.21971,0.2267,0.22829,0.23232,0.23919,0.24996,0.25026,0.2758,0.30669,0.31008,0.31386,0.31504,0.3348,0.34728,0.39123,0.3936,0.3984,0.40654,0.4374,0.47044,0.50744,0.5187,0.52545,0.54265,0.57762,0.59305,0.61307,0.64375,0.67005,0.67477,0.72446,0.73087,0.73321,0.74448,0.74893,0.78369,0.79812,0.80224,0.80266,0.8112,0.82251,0.82767,0.82995,0.86806,0.8681,0.89911,0.93014,0.95419,0.9721,0.97853,0.98007,0.98347,0.98619,0.99163,0.99215,0.99854,0.99935,1,0.999,0.99742,0.9972,0.99531,0.99378,0.98913,0.97987,0.97886,0.97383,0.96486,0.95667,0.95626,0.92201,0.9156,0.91245,0.90414,0.89971,0.89256,0.88076,0.87587,0.86892,0.85744,0.84208,0.82693,0.82537,0.80621,0.79327,0.78167,0.75469,0.74211,0.7375,0.72102,0.72002,0.71273,0.7095,0.66628,0.65509,0.65073,0.63079,0.6192,0.61744,0.59039,0.53881,0.52364,0.51586,0.49787,0.49633,0.47635,0.47419,0.44891,0.43431,0.40562,0.40307,0.40068,0.39935,0.39501,0.39149,0.38935,0.36716,0.36261,0.32091,0.30759,0.29894,0.29556,0.26839,0.26793,0.25934,0.25538,0.23611,0.23552,0.23412,0.2205,0.21683,0.21554,0.21163,0.20666,0.20203,0.19966,0.17735,0.1766,0.1657,0.15027,0.13675,0.11951,0.11928,0.11359,0.10673,0.09817,0.098078,0.095248,0.0828,0.080106,0.079814,0.067247,0.064718,0.063297,0.059082,0.055138,0.04845,0.047467,0.042958,0.034167,0.034061,0.033417,0.032133,0.031156,0.029987,0.028656,0.018539,0.016473,0.013701,0.011917,0.011835,0.011647,0.0094211,0.0089602,0.0089229,0.0072466,0.0050506,0.004992,0.0044776,0.0043775,0.0033949,0.0031586,0.0026946,0.0024783,0.002258,0.0022172,0.0019832,0.0019444,0.0019262,0.0014892,0.0013776,0.001333,0.0011972,0.0011572,0.00098916,0.00095416,0.00088722,0.000739,0.00073772,0.00067515,0.00065518,0.00065515,0.00053774,0.00053437,0.00049223,0.00045115,0.00037246,0.00031279,0.00027564,0.00022499,0.00018607,0.000145,0.00014353,0.00011819,9.7876e-05,8.7501e-05,6.4618e-05,5.9069e-05,4.9166e-05,4.4074e-05,3.5016e-05,3.417e-05,3.2487e-05,2.8893e-05,2.2561e-05,1.7447e-05,1.5207e-05,1.3248e-05,1.2324e-05,1.2199e-05,1.0693e-05,9.1749e-06,5.7132e-06,5.0286e-06,4.686e-06,4.0072e-06,4.0028e-06,3.428e-06,3.3623e-06,3.025e-06,2.7778e-06,2.0806e-06,1.9949e-06,1.588e-06,1.2821e-06,6.3028e-07,5.5049e-07,5.1555e-07,4.3383e-07,3.6864e-07,3.4645e-07,3.0593e-07,2.7969e-07,2.5016e-07,2.0787e-07,2.0766e-07,1.4843e-07,1.3569e-07,1.3317e-07,1.3184e-07,9.3303e-08,9.2569e-08,8.9379e-08,8.7048e-08,8.1281e-08,7.2531e-08,6.5469e-08,4.1403e-08,1.5302e-08,1.1321e-08,1.1022e-08,1.0781e-08,1.0035e-08,9.6421e-09,6.5846e-09,5.1105e-09,4.2453e-09,3.8252e-09,3.0743e-09,2.5507e-09,2.4634e-09,1.8919e-09,1.628e-09,1.3542e-09,1.0056e-09,6.7722e-10,6.6025e-10,5.7706e-10,5.2542e-10,5.0373e-10,3.2039e-10,2.8285e-10,1.5973e-10,1.3615e-10,1.0263e-10,8.8158e-11,8.3913e-11,6.4073e-11,6.1871e-11,5.7308e-11,4.8457e-11,3.513e-11 1,5.5384e-12,7.8901e-12,8.0308e-12,8.9314e-12,9.6915e-12,1.0787e-11,1.3272e-11,2.1659e-11,2.95e-11,3.0929e-11,3.9486e-11,4.1088e-11,4.8108e-11,7.0464e-11,7.9379e-11,8.6217e-11,1.2312e-10,1.3086e-10,1.4e-10,1.7549e-10,1.7979e-10,1.8231e-10,2.164e-10,2.3938e-10,2.4017e-10,2.9131e-10,2.9646e-10,3.2338e-10,3.271e-10,3.3075e-10,5.9417e-10,1.0321e-09,1.0846e-09,1.2743e-09,1.4706e-09,1.6431e-09,1.8736e-09,2.1813e-09,2.8466e-09,3.2934e-09,4.1696e-09,5.5992e-09,5.7528e-09,6.0938e-09,6.4261e-09,8.4626e-09,8.4661e-09,1.62e-08,1.6992e-08,1.7447e-08,2.1139e-08,2.1439e-08,3.1153e-08,3.6043e-08,3.8291e-08,4.3712e-08,4.7537e-08,5.487e-08,5.736e-08,8.0528e-08,9.911e-08,1.8872e-07,2.2468e-07,2.3813e-07,2.6417e-07,3.5066e-07,3.7151e-07,3.91e-07,4.9661e-07,6.2032e-07,6.7327e-07,7.1984e-07,9.1618e-07,1.293e-06,1.8505e-06,2.3495e-06,2.4695e-06,3.8358e-06,4.4589e-06,4.7818e-06,4.9322e-06,5.5894e-06,9.2927e-06,9.4445e-06,1.0309e-05,1.1838e-05,1.2162e-05,1.4793e-05,2.5155e-05,2.533e-05,2.9353e-05,3.094e-05,5.5899e-05,6.469e-05,6.5385e-05,7.4426e-05,8.857e-05,8.8873e-05,9.0127e-05,0.00010001,0.00010011,0.00010996,0.00011401,0.00018976,0.0002362,0.00023794,0.00030397,0.00032438,0.0003585,0.00037629,0.00038716,0.00039954,0.00040365,0.00041482,0.00046282,0.00046873,0.00048112,0.00049152,0.00057694,0.00069008,0.00086593,0.00094231,0.0011249,0.0013669,0.0014825,0.0015456,0.0024272,0.0025545,0.002652,0.0028553,0.0031343,0.0033959,0.0036227,0.0036645,0.0036909,0.0040015,0.004934,0.0050098,0.0054334,0.0061537,0.006587,0.0066599,0.0097354,0.0097739,0.010516,0.012113,0.012426,0.013656,0.013962,0.016273,0.017955,0.022352,0.022467,0.028632,0.02942,0.029675,0.034553,0.034885,0.036818,0.039501,0.040372,0.041041,0.043771,0.044237,0.044544,0.046849,0.047679,0.047897,0.04992,0.050665,0.054956,0.062727,0.064201,0.064598,0.068444,0.070087,0.077099,0.09074,0.09533,0.10296,0.10588,0.11432,0.12321,0.12396,0.12454,0.12461,0.12735,0.12759,0.13648,0.14071,0.14893,0.1493,0.15159,0.16683,0.16729,0.17493,0.18392,0.20075,0.20304,0.20967,0.21117,0.21501,0.22153,0.23178,0.23206,0.25643,0.28601,0.28927,0.2929,0.29403,0.31304,0.32507,0.3676,0.3699,0.37455,0.38247,0.41252,0.44484,0.48118,0.49228,0.49894,0.51594,0.55061,0.56597,0.58593,0.61666,0.64311,0.64786,0.69819,0.70472,0.7071,0.7186,0.72315,0.75882,0.77372,0.77798,0.77841,0.78726,0.79902,0.80439,0.80677,0.84679,0.84683,0.87986,0.91352,0.94026,0.96085,0.96847,0.97034,0.97449,0.97787,0.98491,0.9856,0.99513,0.99674,0.999,1,0.99963,0.99955,0.99864,0.99776,0.9947,0.98777,0.98697,0.98293,0.9755,0.96852,0.96818,0.93785,0.93204,0.92917,0.92157,0.91749,0.91089,0.89995,0.89538,0.88889,0.87811,0.8636,0.84921,0.84772,0.82941,0.81699,0.80581,0.77967,0.76743,0.76294,0.74685,0.74587,0.73872,0.73556,0.69301,0.68193,0.67761,0.65782,0.64629,0.64454,0.61753,0.56574,0.55043,0.54257,0.52436,0.5228,0.50253,0.50033,0.47459,0.45969,0.43032,0.4277,0.42525,0.42389,0.41944,0.41582,0.41362,0.39078,0.38608,0.34297,0.32914,0.32015,0.31663,0.2883,0.28782,0.27884,0.27471,0.25451,0.25389,0.25242,0.23811,0.23424,0.23288,0.22877,0.22353,0.21865,0.21614,0.19255,0.19175,0.18019,0.16378,0.14937,0.13093,0.13068,0.12457,0.1172,0.108,0.1079,0.10485,0.091407,0.088491,0.088175,0.074541,0.071791,0.070244,0.065652,0.061349,0.054035,0.052959,0.048014,0.038342,0.038225,0.037515,0.036098,0.035018,0.033726,0.032254,0.021015,0.018708,0.015604,0.013601,0.013509,0.013298,0.01079,0.01027,0.010228,0.0083312,0.0058359,0.0057691,0.0051824,0.005068,0.0039438,0.0036729,0.0031399,0.002891,0.0026371,0.0025901,0.00232,0.0022752,0.0022542,0.0017484,0.0016189,0.0015671,0.0014094,0.0013628,0.0011671,0.0011263,0.0010482,0.000875,0.0008735,0.00080025,0.00077685,0.00077682,0.00063906,0.00063511,0.00058558,0.00053724,0.0004445,0.00037402,0.00033006,0.00027001,0.00022376,0.00017484,0.00017309,0.00014283,0.00011851,0.00010607,7.8574e-05,7.1892e-05,5.995e-05,5.38e-05,4.2842e-05,4.1816e-05,3.9777e-05,3.5417e-05,2.7722e-05,2.1491e-05,1.8757e-05,1.6361e-05,1.5231e-05,1.5078e-05,1.3233e-05,1.137e-05,7.1111e-06,6.2663e-06,5.8431e-06,5.0037e-06,4.9983e-06,4.2865e-06,4.2051e-06,3.7867e-06,3.48e-06,2.6132e-06,2.5065e-06,1.9992e-06,1.6171e-06,7.9974e-07,6.9929e-07,6.5526e-07,5.5218e-07,4.6984e-07,4.4178e-07,3.905e-07,3.5728e-07,3.1984e-07,2.6617e-07,2.6591e-07,1.9058e-07,1.7434e-07,1.7113e-07,1.6944e-07,1.2024e-07,1.193e-07,1.1522e-07,1.1224e-07,1.0486e-07,9.3654e-08,8.4603e-08,5.3693e-08,1.9994e-08,1.4825e-08,1.4437e-08,1.4123e-08,1.3153e-08,1.2642e-08,8.6573e-09,6.7316e-09,5.5995e-09,5.0492e-09,4.0643e-09,3.3766e-09,3.2619e-09,2.5097e-09,2.162e-09,1.8007e-09,1.3399e-09,9.0486e-10,8.8234e-10,7.7188e-10,7.0326e-10,6.7442e-10,4.3028e-10,3.8018e-10,2.1552e-10,1.839e-10,1.3888e-10,1.1942e-10,1.137e-10,8.6975e-11,8.4004e-11,7.7848e-11,6.5897e-11,4.7874e-11 1,4.5551e-12,6.498e-12,6.6143e-12,7.3591e-12,7.9878e-12,8.8947e-12,1.0952e-11,1.7907e-11,2.4418e-11,2.5606e-11,3.2722e-11,3.4054e-11,3.9897e-11,5.8526e-11,6.5962e-11,7.1667e-11,1.0249e-10,1.0896e-10,1.166e-10,1.4629e-10,1.4989e-10,1.52e-10,1.8055e-10,1.998e-10,2.0046e-10,2.4334e-10,2.4767e-10,2.7025e-10,2.7337e-10,2.7643e-10,4.9779e-10,8.6673e-10,9.1097e-10,1.071e-09,1.2368e-09,1.3825e-09,1.5773e-09,1.8375e-09,2.4008e-09,2.7794e-09,3.5224e-09,4.7361e-09,4.8667e-09,5.1564e-09,5.4389e-09,7.1713e-09,7.1743e-09,1.3768e-08,1.4444e-08,1.4833e-08,1.7988e-08,1.8244e-08,2.6556e-08,3.0745e-08,3.2671e-08,3.7319e-08,4.0601e-08,4.6895e-08,4.9034e-08,6.895e-08,8.4944e-08,1.6224e-07,1.9333e-07,2.0496e-07,2.2749e-07,3.0239e-07,3.2046e-07,3.3737e-07,4.2899e-07,5.3646e-07,5.825e-07,6.23e-07,7.9391e-07,1.1225e-06,1.6094e-06,2.046e-06,2.1511e-06,3.3491e-06,3.8963e-06,4.1801e-06,4.3123e-06,4.8902e-06,8.1534e-06,8.2873e-06,9.0502e-06,1.0401e-05,1.0687e-05,1.3014e-05,2.2198e-05,2.2353e-05,2.5926e-05,2.7336e-05,4.9564e-05,5.741e-05,5.8032e-05,6.6108e-05,7.8757e-05,7.9029e-05,8.015e-05,8.9002e-05,8.9086e-05,9.7912e-05,0.00010154,0.00016957,0.00021136,0.00021293,0.00027246,0.00029089,0.0003217,0.00033778,0.00034761,0.0003588,0.00036251,0.00037262,0.00041604,0.00042139,0.00043262,0.00044203,0.00051943,0.00062207,0.00078187,0.00085136,0.0010176,0.0012384,0.0013439,0.0014015,0.0022086,0.0023254,0.0024148,0.0026014,0.0028578,0.0030982,0.0033069,0.0033453,0.0033697,0.0036556,0.0045153,0.0045853,0.0049763,0.0056419,0.0060428,0.0061102,0.0089614,0.0089973,0.0096869,0.011172,0.011463,0.012609,0.012894,0.01505,0.016621,0.020735,0.020843,0.026627,0.027367,0.027607,0.032195,0.032508,0.034329,0.036858,0.03768,0.038311,0.040888,0.041328,0.041617,0.043795,0.044579,0.044786,0.046698,0.047403,0.051465,0.05883,0.060229,0.060606,0.064258,0.065818,0.072486,0.085479,0.089858,0.097143,0.099935,0.10801,0.11652,0.11724,0.1178,0.11786,0.12049,0.12072,0.12925,0.13331,0.14121,0.14157,0.14376,0.15844,0.15888,0.16624,0.17491,0.19117,0.19338,0.19979,0.20125,0.20496,0.21127,0.2212,0.22148,0.24513,0.27391,0.27708,0.28062,0.28173,0.30027,0.31202,0.35364,0.3559,0.36047,0.36823,0.39777,0.4296,0.4655,0.47648,0.48307,0.49992,0.53436,0.54964,0.56954,0.60022,0.62671,0.63147,0.68209,0.68867,0.69107,0.70269,0.70728,0.74343,0.75857,0.7629,0.76334,0.77236,0.78436,0.78985,0.79228,0.83335,0.8334,0.86756,0.90272,0.93102,0.95317,0.9615,0.96356,0.96815,0.97193,0.97991,0.98071,0.9921,0.99419,0.99742,0.99963,1,1,0.99969,0.99921,0.99711,0.99161,0.99095,0.98752,0.98104,0.97483,0.97451,0.94665,0.94122,0.93852,0.93137,0.92753,0.92128,0.91088,0.90653,0.90032,0.89,0.87605,0.86215,0.86071,0.84296,0.83088,0.81998,0.79443,0.78243,0.77802,0.76219,0.76122,0.75419,0.75107,0.70901,0.69803,0.69375,0.67409,0.66262,0.66087,0.63395,0.58212,0.56676,0.55887,0.54056,0.53899,0.51857,0.51635,0.49038,0.47531,0.44557,0.44291,0.44043,0.43904,0.43453,0.43086,0.42862,0.40542,0.40064,0.3567,0.34258,0.33339,0.32979,0.30078,0.30029,0.29108,0.28683,0.26608,0.26544,0.26393,0.2492,0.24522,0.24382,0.23958,0.23418,0.22914,0.22656,0.20218,0.20136,0.18939,0.17238,0.15741,0.13823,0.13797,0.13161,0.12392,0.11431,0.11421,0.11102,0.096952,0.093897,0.093566,0.079259,0.076369,0.074743,0.069912,0.06538,0.057669,0.056533,0.05131,0.041075,0.04095,0.040197,0.038694,0.037549,0.036178,0.034615,0.022651,0.020186,0.016866,0.014721,0.014621,0.014395,0.011703,0.011143,0.011098,0.0090565,0.0063634,0.0062912,0.0056564,0.0055327,0.0043143,0.0040203,0.0034411,0.0031704,0.0028941,0.002843,0.0025487,0.0024998,0.0024769,0.0019249,0.0017834,0.0017268,0.0015542,0.0015032,0.0012889,0.0012441,0.0011585,0.0009683,0.00096665,0.00088615,0.00086042,0.00086038,0.00070879,0.00070443,0.00064987,0.00059658,0.00049425,0.00041638,0.00036775,0.00030125,0.00024996,0.00019563,0.00019368,0.00016002,0.00013293,0.00011906,8.8365e-05,8.0895e-05,6.7534e-05,6.0646e-05,4.836e-05,4.7209e-05,4.492e-05,4.0025e-05,3.1374e-05,2.4358e-05,2.1276e-05,1.8574e-05,1.7298e-05,1.7125e-05,1.5041e-05,1.2935e-05,8.111e-06,7.1524e-06,6.672e-06,5.7183e-06,5.7122e-06,4.9029e-06,4.8103e-06,4.3341e-06,3.9848e-06,2.9969e-06,2.8752e-06,2.2961e-06,1.8593e-06,9.2288e-07,8.0751e-07,7.5691e-07,6.384e-07,5.4365e-07,5.1134e-07,4.5226e-07,4.1396e-07,3.7079e-07,3.0885e-07,3.0855e-07,2.215e-07,2.0272e-07,1.99e-07,1.9704e-07,1.4006e-07,1.3897e-07,1.3424e-07,1.3078e-07,1.2222e-07,1.0922e-07,9.8715e-08,6.2784e-08,2.3486e-08,1.7438e-08,1.6983e-08,1.6616e-08,1.548e-08,1.4881e-08,1.0208e-08,7.9459e-09,6.615e-09,5.9676e-09,4.8082e-09,3.9978e-09,3.8625e-09,2.9753e-09,2.5647e-09,2.1378e-09,1.5927e-09,1.0774e-09,1.0507e-09,9.1964e-10,8.3821e-10,8.0397e-10,5.1389e-10,4.5429e-10,2.5813e-10,2.204e-10,1.6664e-10,1.4337e-10,1.3654e-10,1.0455e-10,1.0099e-10,9.3622e-11,7.9301e-11,5.7684e-11 1,4.4554e-12,6.3567e-12,6.4705e-12,7.1995e-12,7.8148e-12,8.7024e-12,1.0716e-11,1.7525e-11,2.3901e-11,2.5064e-11,3.2033e-11,3.3338e-11,3.9061e-11,5.7309e-11,6.4593e-11,7.0183e-11,1.0038e-10,1.0672e-10,1.1421e-10,1.4331e-10,1.4684e-10,1.489e-10,1.7688e-10,1.9576e-10,1.964e-10,2.3843e-10,2.4267e-10,2.6481e-10,2.6787e-10,2.7087e-10,4.8791e-10,8.4975e-10,8.9315e-10,1.0501e-09,1.2127e-09,1.3557e-09,1.5468e-09,1.8022e-09,2.3549e-09,2.7264e-09,3.4557e-09,4.6472e-09,4.7753e-09,5.0598e-09,5.3371e-09,7.038e-09,7.041e-09,1.3517e-08,1.4181e-08,1.4563e-08,1.7661e-08,1.7913e-08,2.6079e-08,3.0196e-08,3.2089e-08,3.6657e-08,3.9882e-08,4.6068e-08,4.817e-08,6.7747e-08,8.3472e-08,1.5949e-07,1.9007e-07,2.015e-07,2.2367e-07,2.9736e-07,3.1514e-07,3.3177e-07,4.2194e-07,5.2771e-07,5.7302e-07,6.1288e-07,7.8113e-07,1.1046e-06,1.5841e-06,2.0142e-06,2.1177e-06,3.2979e-06,3.8372e-06,4.1168e-06,4.2471e-06,4.8167e-06,8.0333e-06,8.1654e-06,8.9175e-06,1.0249e-05,1.0532e-05,1.2826e-05,2.1885e-05,2.2039e-05,2.5563e-05,2.6955e-05,4.8893e-05,5.6638e-05,5.7252e-05,6.5226e-05,7.7715e-05,7.7983e-05,7.9091e-05,8.7832e-05,8.7915e-05,9.6632e-05,0.00010022,0.00016741,0.00020872,0.00021027,0.0002691,0.00028731,0.00031778,0.00033367,0.00034338,0.00035444,0.00035812,0.00036811,0.00041104,0.00041633,0.00042743,0.00043674,0.00051328,0.00061479,0.00077286,0.00084161,0.0010061,0.0012246,0.001329,0.001386,0.0021851,0.0023007,0.0023892,0.0025741,0.0028279,0.0030661,0.0032728,0.0033109,0.003335,0.0036183,0.0044701,0.0045394,0.0049269,0.0055866,0.0059839,0.0060507,0.0088775,0.008913,0.0095969,0.01107,0.011359,0.012495,0.012778,0.014917,0.016476,0.020559,0.020667,0.026408,0.027143,0.027382,0.031938,0.032248,0.034057,0.036569,0.037385,0.038013,0.040572,0.041009,0.041297,0.043461,0.04424,0.044445,0.046346,0.047046,0.051082,0.058403,0.059793,0.060168,0.063798,0.065349,0.071979,0.0849,0.089255,0.096503,0.09928,0.10731,0.11579,0.1165,0.11705,0.11712,0.11973,0.11996,0.12845,0.1325,0.14035,0.14071,0.1429,0.15751,0.15795,0.16528,0.17391,0.1901,0.19231,0.1987,0.20015,0.20384,0.21013,0.22003,0.2203,0.24387,0.27256,0.27572,0.27925,0.28035,0.29885,0.31056,0.35208,0.35433,0.35889,0.36664,0.39612,0.42789,0.46374,0.47471,0.48129,0.49812,0.53253,0.5478,0.56769,0.59837,0.62485,0.62962,0.68026,0.68685,0.68925,0.70088,0.70548,0.74167,0.75684,0.76118,0.76162,0.77066,0.78268,0.78819,0.79062,0.83181,0.83186,0.86614,0.90147,0.92994,0.95226,0.96067,0.96275,0.9674,0.97121,0.9793,0.98011,0.99171,0.99386,0.9972,0.99955,1,1,0.99976,0.99932,0.99734,0.992,0.99135,0.988,0.98163,0.97549,0.97519,0.94761,0.94222,0.93954,0.93245,0.92862,0.92242,0.91208,0.90775,0.90158,0.89131,0.87743,0.86359,0.86216,0.84447,0.83242,0.82156,0.79608,0.7841,0.7797,0.76391,0.76294,0.75592,0.75281,0.71081,0.69984,0.69556,0.67592,0.66446,0.66271,0.6358,0.58398,0.56861,0.56071,0.54239,0.54082,0.52039,0.51817,0.49217,0.47708,0.4473,0.44465,0.44216,0.44077,0.43625,0.43257,0.43033,0.40709,0.4023,0.35827,0.34412,0.3349,0.3313,0.30221,0.30172,0.29248,0.28822,0.26741,0.26676,0.26525,0.25047,0.24648,0.24507,0.24082,0.2354,0.23035,0.22775,0.20329,0.20246,0.19045,0.17337,0.15834,0.13907,0.13881,0.13242,0.1247,0.11504,0.11494,0.11173,0.097595,0.094525,0.094191,0.079807,0.076901,0.075266,0.070407,0.065849,0.058093,0.05695,0.051694,0.041393,0.041268,0.04051,0.038997,0.037845,0.036464,0.03489,0.022843,0.02036,0.017014,0.014852,0.014752,0.014524,0.01181,0.011246,0.0112,0.0091419,0.0064257,0.0063528,0.0057124,0.0055876,0.0043581,0.0040614,0.0034768,0.0032035,0.0029246,0.0028729,0.0025758,0.0025264,0.0025033,0.0019458,0.0018029,0.0017457,0.0015714,0.0015199,0.0013033,0.0012581,0.0011716,0.0009794,0.00097774,0.00089638,0.00087037,0.00087033,0.0007171,0.0007127,0.00065754,0.00060366,0.00050019,0.00042143,0.00037225,0.00030498,0.0002531,0.00019812,0.00019614,0.00016208,0.00013466,0.00012062,8.9542e-05,8.1978e-05,6.8446e-05,6.147e-05,4.9024e-05,4.7859e-05,4.554e-05,4.058e-05,3.1815e-05,2.4704e-05,2.1581e-05,1.8841e-05,1.7547e-05,1.7372e-05,1.5259e-05,1.3124e-05,8.2321e-06,7.2598e-06,6.7724e-06,5.805e-06,5.7988e-06,4.9777e-06,4.8837e-06,4.4006e-06,4.0461e-06,3.0435e-06,2.92e-06,2.3322e-06,1.8888e-06,9.3789e-07,8.2071e-07,7.6931e-07,6.4892e-07,5.5266e-07,5.1983e-07,4.5981e-07,4.2089e-07,3.7702e-07,3.1407e-07,3.1376e-07,2.2529e-07,2.0619e-07,2.0241e-07,2.0042e-07,1.4249e-07,1.4138e-07,1.3657e-07,1.3306e-07,1.2435e-07,1.1113e-07,1.0045e-07,6.3901e-08,2.3916e-08,1.776e-08,1.7297e-08,1.6923e-08,1.5766e-08,1.5157e-08,1.0399e-08,8.0959e-09,6.7405e-09,6.0811e-09,4.9001e-09,4.0746e-09,3.9368e-09,3.0329e-09,2.6145e-09,2.1795e-09,1.6241e-09,1.0988e-09,1.0715e-09,9.3799e-10,8.5497e-10,8.2006e-10,5.2429e-10,4.635e-10,2.6343e-10,2.2495e-10,1.701e-10,1.4635e-10,1.3938e-10,1.0674e-10,1.0311e-10,9.559e-11,8.0975e-11,5.891e-11 1,3.7989e-12,5.426e-12,5.5234e-12,6.1477e-12,6.6748e-12,7.4354e-12,9.1621e-12,1.5006e-11,2.0485e-11,2.1486e-11,2.748e-11,2.8604e-11,3.3531e-11,4.9256e-11,5.5538e-11,6.036e-11,8.6435e-11,9.1909e-11,9.8377e-11,1.2354e-10,1.2659e-10,1.2838e-10,1.5259e-10,1.6892e-10,1.6948e-10,2.0588e-10,2.0955e-10,2.2874e-10,2.3139e-10,2.3399e-10,4.2231e-10,7.3688e-10,7.7464e-10,9.1128e-10,1.0529e-09,1.1775e-09,1.3441e-09,1.5668e-09,2.0493e-09,2.3738e-09,3.0113e-09,4.0538e-09,4.166e-09,4.415e-09,4.6579e-09,6.1484e-09,6.151e-09,1.1836e-08,1.242e-08,1.2756e-08,1.5481e-08,1.5702e-08,2.2892e-08,2.652e-08,2.819e-08,3.2218e-08,3.5064e-08,4.0525e-08,4.2381e-08,5.9683e-08,7.3595e-08,1.4097e-07,1.6812e-07,1.7828e-07,1.9796e-07,2.6349e-07,2.7931e-07,2.9411e-07,3.7441e-07,4.6869e-07,5.091e-07,5.4467e-07,6.9489e-07,9.8408e-07,1.4134e-06,1.799e-06,1.8918e-06,2.9519e-06,3.4369e-06,3.6885e-06,3.8057e-06,4.3185e-06,7.2191e-06,7.3383e-06,8.0174e-06,9.2204e-06,9.4761e-06,1.1551e-05,1.9759e-05,1.9898e-05,2.3096e-05,2.436e-05,4.4314e-05,5.1372e-05,5.1931e-05,5.9202e-05,7.0601e-05,7.0846e-05,7.1857e-05,7.9842e-05,7.9917e-05,8.7883e-05,9.1162e-05,0.00015269,0.00019059,0.00019201,0.00024606,0.00026281,0.00029083,0.00030546,0.00031441,0.00032459,0.00032797,0.00033717,0.00037673,0.0003816,0.00039183,0.00040041,0.00047101,0.00056475,0.00071089,0.00077451,0.00092685,0.0011294,0.0012263,0.0012793,0.0020225,0.0021303,0.0022128,0.0023851,0.0026219,0.0028442,0.0030372,0.0030728,0.0030953,0.00336,0.0041568,0.0042217,0.0045846,0.0052029,0.0055755,0.0056383,0.0082947,0.0083281,0.0089719,0.01036,0.010632,0.011704,0.011971,0.013991,0.015465,0.019331,0.019433,0.024881,0.025579,0.025805,0.030138,0.030433,0.032154,0.034547,0.035325,0.035923,0.038363,0.038781,0.039055,0.041119,0.041864,0.04206,0.043874,0.044543,0.0484,0.055404,0.056736,0.057095,0.060572,0.062059,0.068417,0.08083,0.085018,0.091994,0.094669,0.10241,0.11058,0.11127,0.11181,0.11187,0.1144,0.11461,0.12282,0.12673,0.13433,0.13468,0.13679,0.15094,0.15137,0.15848,0.16686,0.18258,0.18473,0.19094,0.19235,0.19595,0.20207,0.21171,0.21198,0.23496,0.26299,0.26609,0.26954,0.27062,0.28872,0.30021,0.34098,0.34319,0.34767,0.3553,0.38433,0.41569,0.45114,0.46201,0.46853,0.48522,0.5194,0.53459,0.55441,0.58502,0.61151,0.61628,0.66708,0.67371,0.67612,0.68782,0.69246,0.72898,0.74433,0.74872,0.74917,0.75833,0.77053,0.77612,0.7786,0.82057,0.82062,0.85577,0.89226,0.92195,0.94549,0.95447,0.95669,0.9617,0.96583,0.97466,0.97556,0.98866,0.9912,0.99531,0.99864,0.99969,0.99976,1,0.99989,0.9987,0.99453,0.99399,0.99114,0.98556,0.98005,0.97977,0.95424,0.94917,0.94665,0.93993,0.9363,0.93039,0.92051,0.91637,0.91044,0.90056,0.88714,0.87373,0.87234,0.85514,0.84339,0.83278,0.8078,0.79604,0.79172,0.77616,0.77521,0.76829,0.76522,0.72369,0.71281,0.70856,0.68905,0.67765,0.67592,0.6491,0.59732,0.58193,0.57401,0.55563,0.55405,0.53352,0.53129,0.50512,0.48991,0.45986,0.45717,0.45466,0.45326,0.44868,0.44497,0.44271,0.41918,0.41433,0.36966,0.35527,0.34591,0.34223,0.3126,0.3121,0.30268,0.29833,0.27707,0.27642,0.27487,0.25976,0.25567,0.25423,0.24987,0.24432,0.23915,0.23649,0.21139,0.21054,0.19819,0.18062,0.16514,0.14525,0.14498,0.13838,0.1304,0.1204,0.12029,0.11698,0.10232,0.09913,0.098784,0.083837,0.080813,0.079111,0.074052,0.069302,0.06121,0.060017,0.054527,0.043748,0.043617,0.042822,0.041237,0.040028,0.03858,0.036929,0.024262,0.021645,0.018113,0.015828,0.015722,0.015481,0.012608,0.01201,0.011961,0.0097775,0.0068895,0.0068119,0.0061297,0.0059967,0.0046851,0.0043681,0.0037432,0.0034509,0.0031522,0.0030969,0.0027785,0.0027256,0.0027008,0.0021027,0.0019492,0.0018878,0.0017003,0.001645,0.0014119,0.0013632,0.00127,0.0010628,0.001061,0.0009732,0.00094513,0.00094509,0.00077957,0.00077481,0.00071518,0.0006569,0.00054489,0.00045953,0.00040618,0.00033315,0.00027675,0.00021692,0.00021477,0.00017765,0.00014774,0.00013241,9.8446e-05,9.017e-05,7.5355e-05,6.7711e-05,5.4063e-05,5.2784e-05,5.0238e-05,4.4792e-05,3.5159e-05,2.7334e-05,2.3893e-05,2.0874e-05,1.9447e-05,1.9254e-05,1.6922e-05,1.4564e-05,9.1552e-06,8.0785e-06,7.5385e-06,6.4661e-06,6.4593e-06,5.5484e-06,5.4441e-06,4.9078e-06,4.5142e-06,3.3999e-06,3.2624e-06,2.6082e-06,2.1142e-06,1.053e-06,9.2193e-07,8.6443e-07,7.2966e-07,6.2184e-07,5.8504e-07,5.1775e-07,4.741e-07,4.2488e-07,3.5419e-07,3.5385e-07,2.544e-07,2.3292e-07,2.2867e-07,2.2643e-07,1.612e-07,1.5995e-07,1.5453e-07,1.5057e-07,1.4075e-07,1.2585e-07,1.1379e-07,7.2515e-08,2.7241e-08,2.0252e-08,1.9725e-08,1.9301e-08,1.7986e-08,1.7293e-08,1.1881e-08,9.2581e-09,7.7132e-09,6.9612e-09,5.6136e-09,4.671e-09,4.5136e-09,3.4804e-09,3.0019e-09,2.504e-09,1.8678e-09,1.2653e-09,1.2341e-09,1.0808e-09,9.8543e-10,9.4533e-10,6.0529e-10,5.3534e-10,3.0483e-10,2.6044e-10,1.9711e-10,1.6968e-10,1.6163e-10,1.2389e-10,1.1969e-10,1.1098e-10,9.4063e-11,6.8502e-11 1,3.4131e-12,4.8784e-12,4.9662e-12,5.5287e-12,6.0038e-12,6.6894e-12,8.2464e-12,1.352e-11,1.8469e-11,1.9373e-11,2.4791e-11,2.5807e-11,3.0262e-11,4.449e-11,5.0178e-11,5.4544e-11,7.8167e-11,8.3129e-11,8.8992e-11,1.1181e-10,1.1458e-10,1.162e-10,1.3816e-10,1.5299e-10,1.535e-10,1.8654e-10,1.8988e-10,2.073e-10,2.0971e-10,2.1207e-10,3.8325e-10,6.6957e-10,7.0397e-10,8.2845e-10,9.5754e-10,1.0711e-09,1.223e-09,1.4262e-09,1.8665e-09,2.1628e-09,2.7452e-09,3.6981e-09,3.8007e-09,4.0285e-09,4.2507e-09,5.6146e-09,5.617e-09,1.0826e-08,1.1361e-08,1.1669e-08,1.4168e-08,1.4372e-08,2.0972e-08,2.4305e-08,2.5838e-08,2.9541e-08,3.2157e-08,3.7179e-08,3.8886e-08,5.4809e-08,6.7621e-08,1.2975e-07,1.548e-07,1.6418e-07,1.8236e-07,2.4291e-07,2.5753e-07,2.7122e-07,3.4549e-07,4.3276e-07,4.7018e-07,5.0313e-07,6.4231e-07,9.1051e-07,1.3091e-06,1.6673e-06,1.7536e-06,2.7398e-06,3.1914e-06,3.4257e-06,3.5349e-06,4.0128e-06,6.7183e-06,6.8295e-06,7.4636e-06,8.5872e-06,8.826e-06,1.0765e-05,1.8445e-05,1.8576e-05,2.1572e-05,2.2756e-05,4.1477e-05,4.8106e-05,4.8632e-05,5.5465e-05,6.6183e-05,6.6414e-05,6.7365e-05,7.4877e-05,7.4948e-05,8.2446e-05,8.5532e-05,0.00014352,0.00017928,0.00018062,0.00023168,0.0002475,0.00027399,0.00028782,0.00029629,0.00030592,0.00030912,0.00031782,0.00035525,0.00035987,0.00036955,0.00037767,0.00044454,0.00053337,0.00067199,0.00073237,0.00087704,0.0010696,0.0011617,0.0012121,0.0019199,0.0020226,0.0021013,0.0022656,0.0024916,0.0027038,0.0028881,0.0029221,0.0029436,0.0031965,0.0039582,0.0040203,0.0043675,0.0049593,0.0053162,0.0053763,0.0079235,0.0079556,0.0085736,0.0099069,0.010169,0.011199,0.011455,0.013399,0.014818,0.018544,0.018642,0.0239,0.024575,0.024793,0.02898,0.029266,0.030931,0.033246,0.033999,0.034578,0.036941,0.037345,0.037611,0.039611,0.040332,0.040522,0.04228,0.042929,0.046669,0.053467,0.05476,0.055108,0.058486,0.059931,0.066112,0.07819,0.08227,0.089067,0.091675,0.099224,0.1072,0.10787,0.1084,0.10846,0.11092,0.11113,0.11915,0.12297,0.1304,0.13074,0.13281,0.14666,0.14708,0.15404,0.16225,0.17766,0.17977,0.18586,0.18725,0.19077,0.19679,0.20625,0.20652,0.22911,0.2567,0.25975,0.26315,0.26421,0.28206,0.29339,0.33364,0.33583,0.34026,0.3478,0.37653,0.4076,0.44278,0.45357,0.46005,0.47664,0.51065,0.52578,0.54554,0.57609,0.60256,0.60733,0.65821,0.66486,0.66728,0.67903,0.68368,0.7204,0.73586,0.74029,0.74074,0.74997,0.76228,0.76793,0.77043,0.8129,0.81296,0.84866,0.8859,0.91638,0.94073,0.95008,0.9524,0.95763,0.96197,0.9713,0.97225,0.98635,0.98914,0.99378,0.99776,0.99921,0.99932,0.99989,1,0.99934,0.99596,0.9955,0.99299,0.98793,0.98285,0.98259,0.95846,0.9536,0.95118,0.94472,0.94122,0.93552,0.92595,0.92193,0.91618,0.90656,0.89347,0.88036,0.879,0.86213,0.85059,0.84015,0.81554,0.80393,0.79965,0.78427,0.78333,0.77648,0.77344,0.73224,0.72144,0.71722,0.69781,0.68645,0.68472,0.65799,0.60627,0.59087,0.58294,0.56453,0.56294,0.54236,0.54012,0.51385,0.49857,0.46834,0.46564,0.46311,0.4617,0.45709,0.45335,0.45107,0.42737,0.42248,0.3774,0.36286,0.35338,0.34967,0.31968,0.31917,0.30963,0.30522,0.28367,0.283,0.28143,0.2661,0.26195,0.26048,0.25606,0.25042,0.24516,0.24246,0.21693,0.21607,0.2035,0.1856,0.16981,0.14951,0.14923,0.14249,0.13432,0.1241,0.12399,0.12059,0.10558,0.10231,0.10196,0.086627,0.083523,0.081775,0.076579,0.071697,0.063375,0.062147,0.056496,0.045387,0.045252,0.044433,0.042797,0.04155,0.040056,0.038351,0.025255,0.022545,0.018884,0.016513,0.016403,0.016153,0.013168,0.012547,0.012497,0.010225,0.007217,0.0071361,0.0064246,0.0062858,0.0049165,0.0045853,0.003932,0.0036262,0.0033137,0.0032558,0.0029225,0.0028671,0.0028411,0.0022143,0.0020533,0.0019888,0.0017921,0.001734,0.0014892,0.0014381,0.0013401,0.0011223,0.0011204,0.0010281,0.00099851,0.00099847,0.00082423,0.00081922,0.0007564,0.00069499,0.0005769,0.00048684,0.00043052,0.00035337,0.00029375,0.00023045,0.00022817,0.00018886,0.00015717,0.00014092,0.00010488,9.6088e-05,8.0349e-05,7.2225e-05,5.771e-05,5.6349e-05,5.3641e-05,4.7844e-05,3.7584e-05,2.9244e-05,2.5573e-05,2.2351e-05,2.0828e-05,2.0622e-05,1.8132e-05,1.5613e-05,9.8284e-06,8.6758e-06,8.0976e-06,6.9489e-06,6.9416e-06,5.9654e-06,5.8536e-06,5.2786e-06,4.8565e-06,3.6607e-06,3.5132e-06,2.8105e-06,2.2796e-06,1.1376e-06,9.9639e-07,9.3441e-07,7.8911e-07,6.7279e-07,6.3309e-07,5.6046e-07,5.1333e-07,4.6017e-07,3.8381e-07,3.8343e-07,2.7592e-07,2.5268e-07,2.4808e-07,2.4566e-07,1.7504e-07,1.7369e-07,1.6782e-07,1.6353e-07,1.529e-07,1.3674e-07,1.2368e-07,7.8908e-08,2.9716e-08,2.2108e-08,2.1535e-08,2.1072e-08,1.9641e-08,1.8885e-08,1.2987e-08,1.0126e-08,8.4401e-09,7.6191e-09,6.1474e-09,5.1174e-09,4.9453e-09,3.8157e-09,3.2922e-09,2.7474e-09,2.0507e-09,1.3905e-09,1.3563e-09,1.1881e-09,1.0835e-09,1.0395e-09,6.6629e-10,5.8945e-10,3.3607e-10,2.8723e-10,2.1752e-10,1.8731e-10,1.7844e-10,1.3685e-10,1.3222e-10,1.2263e-10,1.0397e-10,7.5769e-11 1,2.6218e-12,3.7541e-12,3.8219e-12,4.2571e-12,4.6249e-12,5.1558e-12,6.3626e-12,1.0458e-11,1.4309e-11,1.5013e-11,1.9236e-11,2.0028e-11,2.3505e-11,3.4626e-11,3.9078e-11,4.2497e-11,6.1018e-11,6.4912e-11,6.9516e-11,8.7444e-11,8.9621e-11,9.0897e-11,1.0818e-10,1.1985e-10,1.2025e-10,1.463e-10,1.4893e-10,1.6267e-10,1.6457e-10,1.6643e-10,3.0175e-10,5.2881e-10,5.5613e-10,6.5507e-10,7.5776e-10,8.4818e-10,9.692e-10,1.1312e-09,1.4826e-09,1.7195e-09,2.1855e-09,2.9492e-09,3.0315e-09,3.2143e-09,3.3926e-09,4.4885e-09,4.4904e-09,8.6883e-09,9.1203e-09,9.3691e-09,1.1389e-08,1.1554e-08,1.6898e-08,1.9601e-08,2.0846e-08,2.3853e-08,2.5979e-08,3.0063e-08,3.1452e-08,4.4426e-08,5.4883e-08,1.0574e-07,1.2631e-07,1.3401e-07,1.4895e-07,1.9878e-07,2.1083e-07,2.2211e-07,2.8338e-07,3.5549e-07,3.8645e-07,4.1372e-07,5.2904e-07,7.5173e-07,1.0835e-06,1.3824e-06,1.4544e-06,2.2796e-06,2.6581e-06,2.8548e-06,2.9465e-06,3.3478e-06,5.6263e-06,5.7202e-06,6.2554e-06,7.2046e-06,7.4065e-06,9.0471e-06,1.5566e-05,1.5677e-05,1.8227e-05,1.9236e-05,3.5227e-05,4.0907e-05,4.1357e-05,4.7219e-05,5.6426e-05,5.6624e-05,5.7442e-05,6.3903e-05,6.3964e-05,7.0419e-05,7.3077e-05,0.00012316,0.00015414,0.00015531,0.00019964,0.0002134,0.00023646,0.00024851,0.00025588,0.00026428,0.00026707,0.00027466,0.00030731,0.00031134,0.0003198,0.00032689,0.00038534,0.00046312,0.00058475,0.00063781,0.00076512,0.00093489,0.0010163,0.0010608,0.001688,0.0017792,0.0018492,0.0019954,0.0021965,0.0023857,0.0025501,0.0025804,0.0025996,0.0028254,0.0035068,0.0035624,0.0038735,0.0044046,0.0047252,0.0047792,0.0070749,0.0071038,0.0076624,0.0088691,0.0091062,0.010041,0.010273,0.012039,0.013331,0.01673,0.01682,0.021634,0.022253,0.022454,0.026301,0.026564,0.028096,0.030229,0.030924,0.031457,0.033638,0.034012,0.034257,0.036105,0.036772,0.036947,0.038574,0.039174,0.04264,0.048948,0.05015,0.050474,0.053617,0.054961,0.060721,0.072005,0.075824,0.082195,0.084642,0.091734,0.09924,0.099873,0.10037,0.10042,0.10275,0.10294,0.1105,0.11411,0.12113,0.12145,0.12341,0.13652,0.13692,0.14353,0.15132,0.16599,0.16799,0.1738,0.17512,0.17849,0.18423,0.19327,0.19353,0.21516,0.24166,0.24459,0.24787,0.24889,0.26609,0.27703,0.31601,0.31813,0.32243,0.32975,0.35771,0.38805,0.4225,0.43309,0.43946,0.45578,0.48933,0.5043,0.52388,0.55423,0.58061,0.58538,0.63635,0.64304,0.64548,0.6573,0.66199,0.69912,0.71481,0.71932,0.71977,0.72917,0.74172,0.74749,0.75005,0.79366,0.79371,0.83069,0.86968,0.90203,0.92829,0.93851,0.94107,0.94686,0.9517,0.96222,0.96331,0.97981,0.98322,0.98913,0.9947,0.99711,0.99734,0.9987,0.99934,1,0.99856,0.99827,0.99661,0.99287,0.98885,0.98864,0.96799,0.96367,0.96151,0.9557,0.95253,0.94734,0.93858,0.93488,0.92956,0.92061,0.90837,0.89601,0.89473,0.87873,0.86773,0.85774,0.83407,0.82285,0.81871,0.80379,0.80288,0.79621,0.79325,0.75298,0.74237,0.73822,0.7191,0.70789,0.70618,0.67971,0.62822,0.61282,0.60489,0.58643,0.58484,0.56415,0.5619,0.53542,0.51999,0.48938,0.48664,0.48407,0.48264,0.47797,0.47417,0.47185,0.44774,0.44276,0.3967,0.3818,0.37209,0.36827,0.33743,0.3369,0.32707,0.32252,0.30026,0.29957,0.29794,0.28206,0.27776,0.27624,0.27165,0.2658,0.26034,0.25753,0.23096,0.23006,0.21694,0.19822,0.18167,0.16034,0.16005,0.15294,0.14434,0.13354,0.13342,0.12983,0.11393,0.11047,0.11009,0.093788,0.090482,0.088619,0.083075,0.077861,0.068956,0.06764,0.061579,0.049632,0.049486,0.048603,0.046839,0.045494,0.04388,0.042039,0.027843,0.024892,0.020899,0.018306,0.018186,0.017912,0.014639,0.013957,0.013902,0.011402,0.0080809,0.0079913,0.0072032,0.0070493,0.0055289,0.0051605,0.0044327,0.0040915,0.0037426,0.0036778,0.0033051,0.0032431,0.0032141,0.0025115,0.0023307,0.0022583,0.0020371,0.0019717,0.001696,0.0016383,0.0015278,0.0012817,0.0012796,0.0011751,0.0011416,0.0011416,0.00094412,0.00093843,0.00086713,0.00079738,0.00066305,0.00056043,0.00049616,0.00040798,0.00033971,0.00026709,0.00026447,0.00021927,0.00018277,0.00016402,0.00012238,0.00011221,9.3969e-05,8.4542e-05,6.7677e-05,6.6095e-05,6.2943e-05,5.6193e-05,4.4229e-05,3.4483e-05,3.0187e-05,2.6411e-05,2.4625e-05,2.4383e-05,2.146e-05,1.85e-05,1.1687e-05,1.0326e-05,9.6431e-06,8.2847e-06,8.276e-06,7.1201e-06,6.9877e-06,6.3061e-06,5.8053e-06,4.385e-06,4.2094e-06,3.3729e-06,2.7399e-06,1.374e-06,1.2045e-06,1.1301e-06,9.5547e-07,8.1552e-07,7.6771e-07,6.802e-07,6.2337e-07,5.5922e-07,4.6699e-07,4.6654e-07,3.3645e-07,3.083e-07,3.0272e-07,2.9978e-07,2.1408e-07,2.1244e-07,2.0531e-07,2.0009e-07,1.8716e-07,1.6751e-07,1.516e-07,9.7e-08,3.6753e-08,2.7393e-08,2.6687e-08,2.6117e-08,2.4353e-08,2.3422e-08,1.6143e-08,1.2606e-08,1.0518e-08,9.501e-09,7.6755e-09,6.3963e-09,6.1825e-09,4.7775e-09,4.1256e-09,3.4464e-09,2.5768e-09,1.7511e-09,1.7082e-09,1.4976e-09,1.3665e-09,1.3113e-09,8.4256e-10,7.459e-10,4.2659e-10,3.649e-10,2.7677e-10,2.3853e-10,2.2728e-10,1.7456e-10,1.6869e-10,1.5651e-10,1.3282e-10,9.6953e-11 1,1.7677e-12,2.5379e-12,2.5841e-12,2.8807e-12,3.1315e-12,3.4938e-12,4.3183e-12,7.1244e-12,9.7711e-12,1.0256e-11,1.3165e-11,1.3712e-11,1.6112e-11,2.3806e-11,2.6892e-11,2.9264e-11,4.2137e-11,4.4848e-11,4.8054e-11,6.0557e-11,6.2076e-11,6.2967e-11,7.5043e-11,8.3208e-11,8.3488e-11,1.0173e-10,1.0357e-10,1.1321e-10,1.1454e-10,1.1585e-10,2.1105e-10,3.7156e-10,3.9092e-10,4.6109e-10,5.3402e-10,5.983e-10,6.8443e-10,7.9984e-10,1.0508e-09,1.2201e-09,1.554e-09,2.1024e-09,2.1616e-09,2.293e-09,2.4214e-09,3.2113e-09,3.2127e-09,6.2521e-09,6.5657e-09,6.7464e-09,8.2153e-09,8.335e-09,1.2232e-08,1.4208e-08,1.5118e-08,1.732e-08,1.8879e-08,2.1875e-08,2.2896e-08,3.2443e-08,4.0158e-08,7.7852e-08,9.3148e-08,9.8885e-08,1.1002e-07,1.4723e-07,1.5625e-07,1.6469e-07,2.1062e-07,2.6481e-07,2.8811e-07,3.0864e-07,3.9565e-07,5.6418e-07,8.1623e-07,1.044e-06,1.099e-06,1.7305e-06,2.0212e-06,2.1724e-06,2.243e-06,2.552e-06,4.3129e-06,4.3857e-06,4.8007e-06,5.5378e-06,5.6947e-06,6.9716e-06,1.2069e-05,1.2156e-05,1.4157e-05,1.495e-05,2.7574e-05,3.2077e-05,3.2434e-05,3.709e-05,4.4417e-05,4.4575e-05,4.5227e-05,5.038e-05,5.0428e-05,5.5583e-05,5.7708e-05,9.7894e-05,0.00012287,0.00012381,0.00015967,0.00017083,0.00018954,0.00019933,0.00020532,0.00021215,0.00021442,0.00022059,0.00024719,0.00025047,0.00025737,0.00026315,0.00031089,0.00037459,0.00047449,0.00051818,0.00062321,0.00076368,0.00083116,0.0008681,0.0013909,0.0014673,0.0015258,0.0016484,0.0018172,0.0019762,0.0021146,0.0021401,0.0021563,0.0023466,0.0029225,0.0029696,0.0032333,0.0036843,0.003957,0.004003,0.0059649,0.0059897,0.0064691,0.0075069,0.0077112,0.0085171,0.008718,0.010246,0.011366,0.014325,0.014403,0.018615,0.019157,0.019333,0.022717,0.022949,0.0243,0.026183,0.026797,0.027269,0.0292,0.029531,0.029748,0.031387,0.031979,0.032135,0.03358,0.034114,0.037198,0.04283,0.043905,0.044195,0.047009,0.048214,0.053387,0.063557,0.06701,0.07278,0.075,0.081444,0.088279,0.088857,0.089306,0.089359,0.091478,0.091659,0.098567,0.10187,0.10831,0.1086,0.1104,0.12245,0.12282,0.12891,0.13611,0.14969,0.15155,0.15694,0.15817,0.1613,0.16664,0.17507,0.1753,0.19552,0.2204,0.22316,0.22625,0.22721,0.24345,0.25379,0.29082,0.29284,0.29694,0.30393,0.33069,0.35985,0.39314,0.40341,0.40959,0.42546,0.4582,0.47286,0.49209,0.52203,0.54816,0.55289,0.60376,0.61047,0.61292,0.6248,0.62953,0.66706,0.68301,0.6876,0.68807,0.69766,0.7105,0.71641,0.71903,0.76406,0.76412,0.80277,0.84409,0.879,0.90792,0.91938,0.92227,0.92884,0.93438,0.9466,0.94788,0.96782,0.97214,0.97987,0.98777,0.99161,0.992,0.99453,0.99596,0.99856,1,0.99999,0.99959,0.99784,0.9954,0.99527,0.97994,0.97646,0.97469,0.96989,0.96724,0.96286,0.95534,0.95213,0.94749,0.93961,0.92869,0.91755,0.91638,0.90178,0.89165,0.8824,0.86029,0.84972,0.84581,0.83167,0.8308,0.82446,0.82163,0.78298,0.77271,0.76869,0.75011,0.73918,0.73751,0.71157,0.6607,0.64539,0.63748,0.61903,0.61744,0.5967,0.59443,0.56777,0.55217,0.52112,0.51833,0.51572,0.51426,0.5095,0.50563,0.50327,0.47863,0.47353,0.42618,0.41079,0.40073,0.39678,0.36474,0.36419,0.35393,0.34919,0.3259,0.32518,0.32348,0.30681,0.30229,0.30069,0.29586,0.2897,0.28394,0.28097,0.25286,0.25191,0.23798,0.21804,0.20035,0.17745,0.17714,0.1695,0.16021,0.14854,0.14841,0.14452,0.12726,0.12349,0.12308,0.10528,0.10165,0.099612,0.093527,0.087793,0.077975,0.076521,0.069814,0.056541,0.056379,0.055395,0.053427,0.051925,0.050123,0.048064,0.032106,0.028768,0.024235,0.021282,0.021145,0.020833,0.017091,0.016309,0.016245,0.013373,0.0095351,0.0094313,0.0085163,0.0083375,0.0065661,0.0061356,0.0052835,0.0048832,0.0044731,0.004397,0.0039581,0.0038851,0.0038508,0.0030207,0.0028065,0.0027206,0.0024581,0.0023803,0.0020522,0.0019834,0.0018515,0.0015573,0.0015548,0.0014296,0.0013895,0.0013895,0.0011523,0.0011454,0.0010596,0.00097555,0.00081332,0.00068907,0.00061107,0.00050382,0.00042056,0.00033171,0.0003285,0.00027303,0.00022812,0.00020501,0.00015353,0.00014093,0.00011828,0.00010656,8.5536e-05,8.356e-05,7.9622e-05,7.1183e-05,5.6189e-05,4.3938e-05,3.8525e-05,3.3759e-05,3.1502e-05,3.1196e-05,2.7497e-05,2.3745e-05,1.5079e-05,1.3342e-05,1.2469e-05,1.073e-05,1.0719e-05,9.2377e-06,9.0677e-06,8.1925e-06,7.5487e-06,5.7193e-06,5.4928e-06,4.4117e-06,3.5917e-06,1.8142e-06,1.5926e-06,1.4952e-06,1.2663e-06,1.0826e-06,1.0198e-06,9.0462e-07,8.2976e-07,7.452e-07,6.2341e-07,6.2281e-07,4.5061e-07,4.1325e-07,4.0585e-07,4.0195e-07,2.8799e-07,2.858e-07,2.7629e-07,2.6934e-07,2.521e-07,2.2587e-07,2.0461e-07,1.3148e-07,5.0271e-08,3.7568e-08,3.6609e-08,3.5835e-08,3.3435e-08,3.2169e-08,2.2246e-08,1.741e-08,1.455e-08,1.3155e-08,1.0647e-08,8.887e-09,8.5925e-09,6.6547e-09,5.754e-09,4.8142e-09,3.6085e-09,2.4603e-09,2.4006e-09,2.1069e-09,1.9239e-09,1.8468e-09,1.1911e-09,1.0555e-09,6.0644e-10,5.1941e-10,3.9484e-10,3.4069e-10,3.2476e-10,2.4996e-10,2.4162e-10,2.243e-10,1.906e-10,1.3948e-10 1,1.7033e-12,2.4461e-12,2.4907e-12,2.7767e-12,3.0186e-12,3.3681e-12,4.1636e-12,6.8715e-12,9.4263e-12,9.8941e-12,1.2703e-11,1.3231e-11,1.5549e-11,2.2981e-11,2.5962e-11,2.8253e-11,4.0693e-11,4.3313e-11,4.6412e-11,5.8497e-11,5.9966e-11,6.0827e-11,7.2502e-11,8.0397e-11,8.0668e-11,9.8307e-11,1.0009e-10,1.0941e-10,1.107e-10,1.1197e-10,2.0406e-10,3.5941e-10,3.7815e-10,4.4609e-10,5.167e-10,5.7895e-10,6.6236e-10,7.7415e-10,1.0172e-09,1.1813e-09,1.5048e-09,2.0364e-09,2.0938e-09,2.2212e-09,2.3456e-09,3.1115e-09,3.1129e-09,6.0612e-09,6.3655e-09,6.5408e-09,7.9663e-09,8.0824e-09,1.1865e-08,1.3783e-08,1.4667e-08,1.6806e-08,1.8319e-08,2.123e-08,2.2221e-08,3.1496e-08,3.8993e-08,7.5637e-08,9.0512e-08,9.6092e-08,1.0693e-07,1.4313e-07,1.519e-07,1.6011e-07,2.0481e-07,2.5756e-07,2.8024e-07,3.0023e-07,3.8496e-07,5.4911e-07,7.9471e-07,1.0167e-06,1.0703e-06,1.6862e-06,1.9697e-06,2.1172e-06,2.186e-06,2.4874e-06,4.2061e-06,4.2771e-06,4.6823e-06,5.402e-06,5.5553e-06,6.8023e-06,1.1783e-05,1.1867e-05,1.3824e-05,1.4599e-05,2.6944e-05,3.1349e-05,3.1698e-05,3.6254e-05,4.3425e-05,4.358e-05,4.4218e-05,4.9261e-05,4.9309e-05,5.4355e-05,5.6435e-05,9.5794e-05,0.00012027,0.00012119,0.00015634,0.00016727,0.00018562,0.00019522,0.00020109,0.00020779,0.00021002,0.00021607,0.00024216,0.00024538,0.00025214,0.00025782,0.00030465,0.00036716,0.00046522,0.00050811,0.00061125,0.00074922,0.00081551,0.0008518,0.0013657,0.0014408,0.0014983,0.0016188,0.0017849,0.0019413,0.0020774,0.0021026,0.0021185,0.0023058,0.0028726,0.0029189,0.0031785,0.0036226,0.0038912,0.0039364,0.0058693,0.0058938,0.0063662,0.0073893,0.0075907,0.0083855,0.0085836,0.010091,0.011196,0.014115,0.014193,0.018351,0.018887,0.019061,0.022404,0.022633,0.023968,0.025829,0.026436,0.026902,0.028811,0.029138,0.029352,0.030973,0.031558,0.031712,0.033142,0.033669,0.03672,0.042291,0.043354,0.043641,0.046426,0.047619,0.052739,0.062809,0.066228,0.071944,0.074143,0.080528,0.087303,0.087875,0.088321,0.088373,0.090473,0.090653,0.097501,0.10078,0.10716,0.10745,0.10923,0.12119,0.12156,0.1276,0.13474,0.14823,0.15007,0.15542,0.15664,0.15975,0.16505,0.17342,0.17366,0.19375,0.21848,0.22122,0.22429,0.22525,0.24139,0.25168,0.28852,0.29053,0.29461,0.30157,0.32821,0.35726,0.39043,0.40067,0.40683,0.42266,0.45532,0.46995,0.48914,0.51903,0.54513,0.54986,0.6007,0.60741,0.60986,0.62175,0.62647,0.66403,0.68,0.6846,0.68506,0.69467,0.70753,0.71346,0.71609,0.76123,0.76129,0.80008,0.84161,0.87674,0.9059,0.91747,0.92039,0.92703,0.93263,0.94501,0.9463,0.96656,0.97096,0.97886,0.98697,0.99095,0.99135,0.99399,0.9955,0.99827,0.99999,1,0.99972,0.99815,0.99587,0.99574,0.98092,0.97752,0.9758,0.97109,0.96849,0.96418,0.95679,0.95363,0.94905,0.94127,0.93048,0.91946,0.91831,0.90384,0.8938,0.88462,0.86266,0.85216,0.84827,0.83421,0.83335,0.82703,0.82423,0.78573,0.77551,0.7715,0.75298,0.74207,0.74041,0.71453,0.66373,0.64843,0.64053,0.62209,0.6205,0.59976,0.59749,0.57082,0.55521,0.52412,0.52133,0.51872,0.51726,0.51249,0.50861,0.50625,0.48157,0.47645,0.42899,0.41356,0.40347,0.3995,0.36735,0.3668,0.35651,0.35175,0.32837,0.32764,0.32593,0.30919,0.30465,0.30305,0.2982,0.292,0.28621,0.28324,0.25498,0.25402,0.24002,0.21997,0.20217,0.17912,0.17881,0.17111,0.16177,0.15001,0.14988,0.14596,0.12857,0.12476,0.12435,0.10641,0.10275,0.1007,0.094558,0.088774,0.078867,0.0774,0.07063,0.057228,0.057064,0.05607,0.054083,0.052566,0.050744,0.048664,0.032533,0.029156,0.02457,0.021582,0.021443,0.021127,0.017339,0.016546,0.016482,0.013572,0.0096828,0.0095775,0.0086498,0.0084685,0.0066719,0.006235,0.0053704,0.0049641,0.0045479,0.0044706,0.0040251,0.0039509,0.0039161,0.003073,0.0028554,0.0027682,0.0025014,0.0024224,0.0020889,0.002019,0.0018849,0.0015858,0.0015832,0.0014559,0.0014151,0.0014151,0.0011738,0.0011669,0.0010796,0.00099403,0.00082893,0.00070245,0.00062304,0.00051381,0.000429,0.00033847,0.0003352,0.00027866,0.00023287,0.00020931,0.00015681,0.00014395,0.00012085,0.00010888,8.7422e-05,8.5405e-05,8.1385e-05,7.2768e-05,5.7456e-05,4.4941e-05,3.941e-05,3.454e-05,3.2233e-05,3.192e-05,2.814e-05,2.4304e-05,1.5442e-05,1.3665e-05,1.2771e-05,1.0992e-05,1.0981e-05,9.4646e-06,9.2906e-06,8.3948e-06,7.7358e-06,5.8627e-06,5.6307e-06,4.5236e-06,3.6835e-06,1.8618e-06,1.6346e-06,1.5347e-06,1.3e-06,1.1116e-06,1.0471e-06,9.2899e-07,8.522e-07,7.6542e-07,6.4043e-07,6.3982e-07,4.6306e-07,4.247e-07,4.171e-07,4.131e-07,2.9606e-07,2.9382e-07,2.8406e-07,2.7691e-07,2.5921e-07,2.3226e-07,2.1042e-07,1.3526e-07,5.1761e-08,3.8692e-08,3.7705e-08,3.6908e-08,3.4439e-08,3.3135e-08,2.2922e-08,1.7943e-08,1.4998e-08,1.356e-08,1.0978e-08,9.1641e-09,8.8605e-09,6.8638e-09,5.9355e-09,4.9668e-09,3.7237e-09,2.5396e-09,2.478e-09,2.1751e-09,1.9863e-09,1.9068e-09,1.2302e-09,1.0903e-09,6.2669e-10,5.3681e-10,4.0816e-10,3.5223e-10,3.3577e-10,2.5848e-10,2.4986e-10,2.3197e-10,1.9714e-10,1.443e-10 1,1.4313e-12,2.0578e-12,2.0954e-12,2.3369e-12,2.5411e-12,2.8364e-12,3.5087e-12,5.8003e-12,7.9651e-12,8.3617e-12,1.0745e-11,1.1193e-11,1.3161e-11,1.9477e-11,2.2012e-11,2.3962e-11,3.4554e-11,3.6787e-11,3.9428e-11,4.9734e-11,5.0988e-11,5.1723e-11,6.1687e-11,6.8429e-11,6.866e-11,8.3731e-11,8.5254e-11,9.3222e-11,9.4324e-11,9.5407e-11,1.7425e-10,3.0753e-10,3.2362e-10,3.8198e-10,4.4268e-10,4.9622e-10,5.6799e-10,6.6422e-10,8.7365e-10,1.0152e-09,1.2943e-09,1.7535e-09,1.8031e-09,1.9132e-09,2.0208e-09,2.6835e-09,2.6847e-09,5.2407e-09,5.5048e-09,5.6571e-09,6.8951e-09,6.9961e-09,1.0286e-08,1.1956e-08,1.2726e-08,1.4588e-08,1.5908e-08,1.8446e-08,1.931e-08,2.7409e-08,3.3962e-08,6.6057e-08,7.9107e-08,8.4005e-08,9.3517e-08,1.2533e-07,1.3304e-07,1.4027e-07,1.7962e-07,2.261e-07,2.461e-07,2.6374e-07,3.3852e-07,4.8363e-07,7.0108e-07,8.979e-07,9.4547e-07,1.4926e-06,1.7448e-06,1.876e-06,1.9373e-06,2.2058e-06,3.739e-06,3.8025e-06,4.1645e-06,4.8079e-06,4.945e-06,6.0609e-06,1.0527e-05,1.0603e-05,1.236e-05,1.3057e-05,2.4172e-05,2.8146e-05,2.8462e-05,3.2576e-05,3.9056e-05,3.9195e-05,3.9772e-05,4.4334e-05,4.4377e-05,4.8944e-05,5.0827e-05,8.6522e-05,0.00010876,0.0001096,0.00014159,0.00015155,0.00016828,0.00017703,0.00018239,0.00018849,0.00019052,0.00019605,0.00021986,0.00022281,0.00022898,0.00023417,0.00027698,0.00033417,0.00042402,0.00046336,0.00055804,0.00068486,0.00074585,0.00077926,0.0012531,0.0013225,0.0013757,0.0014871,0.0016407,0.0017855,0.0019116,0.0019348,0.0019495,0.0021231,0.002649,0.002692,0.0029332,0.0033461,0.003596,0.0036381,0.0054402,0.005463,0.0059043,0.0068608,0.0070492,0.0077932,0.0079787,0.0093912,0.010428,0.013172,0.013245,0.017162,0.017667,0.017832,0.020987,0.021203,0.022465,0.024226,0.024799,0.025241,0.027048,0.027358,0.027561,0.029097,0.029651,0.029798,0.031153,0.031653,0.034549,0.039842,0.040854,0.041127,0.043777,0.044912,0.04979,0.0594,0.062667,0.068134,0.070238,0.076352,0.082846,0.083395,0.083823,0.083873,0.085888,0.08606,0.092635,0.09578,0.10192,0.1022,0.10391,0.11543,0.11578,0.1216,0.12849,0.14151,0.14329,0.14846,0.14964,0.15265,0.15778,0.16588,0.16611,0.18559,0.20961,0.21228,0.21526,0.21619,0.23191,0.24194,0.2779,0.27987,0.28386,0.29067,0.31676,0.34527,0.37789,0.38797,0.39405,0.40965,0.44191,0.45639,0.47539,0.50505,0.53099,0.5357,0.5864,0.5931,0.59555,0.60744,0.61217,0.64982,0.66587,0.67049,0.67096,0.68062,0.69358,0.69956,0.70221,0.74787,0.74792,0.78735,0.82979,0.86595,0.8962,0.90827,0.91133,0.9183,0.92419,0.93728,0.93865,0.96037,0.96515,0.97383,0.98293,0.98752,0.988,0.99114,0.99299,0.99661,0.99959,0.99972,1,0.99931,0.99773,0.99764,0.9852,0.98218,0.98063,0.97638,0.97402,0.97008,0.96326,0.96032,0.95605,0.94877,0.9386,0.92814,0.92704,0.91323,0.9036,0.89476,0.87355,0.86337,0.8596,0.84591,0.84507,0.83892,0.83618,0.79849,0.78845,0.78451,0.76627,0.75551,0.75387,0.72829,0.67787,0.66265,0.65477,0.63638,0.6348,0.61407,0.6118,0.5851,0.56945,0.53822,0.53542,0.53278,0.53131,0.52652,0.52261,0.52023,0.49537,0.49021,0.44224,0.42661,0.41639,0.41237,0.37972,0.37916,0.3687,0.36386,0.34005,0.33931,0.33756,0.32049,0.31585,0.31422,0.30926,0.30293,0.29702,0.29397,0.26505,0.26407,0.24971,0.22912,0.21082,0.18709,0.18676,0.17882,0.16917,0.15702,0.15689,0.15284,0.13482,0.13088,0.13045,0.11183,0.10803,0.10589,0.099503,0.09348,0.083152,0.081622,0.074553,0.060534,0.060363,0.059321,0.057239,0.055649,0.053739,0.051557,0.034596,0.031036,0.026194,0.023033,0.022886,0.022552,0.018539,0.017698,0.01763,0.014541,0.010401,0.010289,0.0092999,0.0091063,0.0071873,0.0067201,0.0057946,0.0053593,0.004913,0.0048301,0.004352,0.0042724,0.004235,0.0033289,0.0030948,0.0030009,0.0027135,0.0026284,0.0022688,0.0021934,0.0020487,0.0017256,0.0017228,0.0015851,0.001541,0.0015409,0.0012798,0.0012723,0.0011776,0.0010849,0.00090575,0.00076833,0.00068198,0.00056308,0.00047065,0.00037185,0.00036828,0.0003065,0.0002564,0.0002306,0.00017304,0.00015893,0.00013355,0.0001204,9.6785e-05,9.4563e-05,9.0136e-05,8.0642e-05,6.3754e-05,4.9932e-05,4.3817e-05,3.8429e-05,3.5875e-05,3.5529e-05,3.1341e-05,2.709e-05,1.7251e-05,1.5275e-05,1.4281e-05,1.2301e-05,1.2289e-05,1.0599e-05,1.0405e-05,9.4068e-06,8.6718e-06,6.5809e-06,6.3217e-06,5.084e-06,4.1439e-06,2.1012e-06,1.8459e-06,1.7336e-06,1.4696e-06,1.2574e-06,1.1848e-06,1.0517e-06,9.6517e-07,8.673e-07,7.2625e-07,7.2556e-07,5.2586e-07,4.8249e-07,4.7388e-07,4.6936e-07,3.3687e-07,3.3432e-07,3.2326e-07,3.1517e-07,2.951e-07,2.6454e-07,2.3977e-07,1.5442e-07,5.9327e-08,4.44e-08,4.3272e-08,4.2361e-08,3.9538e-08,3.8047e-08,2.6359e-08,2.0653e-08,1.7275e-08,1.5626e-08,1.266e-08,1.0576e-08,1.0227e-08,7.9302e-09,6.8615e-09,5.7456e-09,4.3123e-09,2.9453e-09,2.8741e-09,2.524e-09,2.3057e-09,2.2138e-09,1.4305e-09,1.2684e-09,7.3055e-10,6.2613e-10,4.7654e-10,4.1146e-10,3.923e-10,3.0228e-10,2.9223e-10,2.7138e-10,2.3076e-10,1.691e-10 1,1.0868e-12,1.5653e-12,1.5941e-12,1.7788e-12,1.9351e-12,2.1611e-12,2.6763e-12,4.4357e-12,6.1012e-12,6.4066e-12,8.2434e-12,8.5888e-12,1.0108e-11,1.4989e-11,1.6951e-11,1.8461e-11,2.6674e-11,2.8407e-11,3.0458e-11,3.8468e-11,3.9443e-11,4.0014e-11,4.7768e-11,5.3019e-11,5.3199e-11,6.4946e-11,6.6134e-11,7.2351e-11,7.321e-11,7.4056e-11,1.3571e-10,2.4026e-10,2.5291e-10,2.9879e-10,3.4656e-10,3.8873e-10,4.4529e-10,5.2121e-10,6.8662e-10,7.9853e-10,1.0195e-09,1.3837e-09,1.423e-09,1.5105e-09,1.596e-09,2.1229e-09,2.1238e-09,4.1624e-09,4.3735e-09,4.4952e-09,5.4856e-09,5.5663e-09,8.2031e-09,9.5435e-09,1.0162e-08,1.1659e-08,1.2721e-08,1.4764e-08,1.546e-08,2.1992e-08,2.7288e-08,5.3302e-08,6.3907e-08,6.789e-08,7.563e-08,1.0155e-07,1.0785e-07,1.1374e-07,1.4589e-07,1.8393e-07,2.0031e-07,2.1477e-07,2.7613e-07,3.9546e-07,5.7475e-07,7.3738e-07,7.7673e-07,1.2302e-06,1.4397e-06,1.5488e-06,1.5997e-06,1.8232e-06,3.1025e-06,3.1555e-06,3.4583e-06,3.9969e-06,4.1117e-06,5.0474e-06,8.8035e-06,8.8678e-06,1.035e-05,1.0938e-05,2.0349e-05,2.3724e-05,2.3992e-05,2.749e-05,3.3007e-05,3.3126e-05,3.3618e-05,3.7508e-05,3.7544e-05,4.1442e-05,4.305e-05,7.3614e-05,9.272e-05,9.3443e-05,0.00012099,0.00012958,0.00014401,0.00015156,0.0001562,0.00016147,0.00016323,0.00016801,0.00018861,0.00019116,0.0001965,0.00020099,0.0002381,0.00028777,0.00036596,0.00040025,0.00048289,0.00059381,0.00064723,0.00067651,0.0010931,0.0011542,0.0012011,0.0012994,0.0014351,0.0015631,0.0016747,0.0016953,0.0017083,0.0018621,0.0023289,0.0023671,0.0025816,0.0029492,0.0031719,0.0032095,0.0048212,0.0048417,0.0052375,0.0060966,0.0062661,0.0069356,0.0071027,0.0083766,0.0093137,0.011799,0.011865,0.015424,0.015885,0.016034,0.018913,0.01911,0.020263,0.021873,0.022399,0.022803,0.024459,0.024743,0.024929,0.026338,0.026847,0.026982,0.028226,0.028686,0.031349,0.036227,0.037161,0.037413,0.03986,0.04091,0.045424,0.054338,0.057375,0.062463,0.064424,0.070127,0.076195,0.076708,0.077108,0.077154,0.07904,0.079201,0.085358,0.088306,0.094065,0.094329,0.095938,0.10677,0.1071,0.11258,0.11908,0.13138,0.13307,0.13797,0.13908,0.14193,0.1468,0.15449,0.1547,0.17322,0.19613,0.19868,0.20153,0.20243,0.21747,0.22709,0.26166,0.26356,0.26741,0.27397,0.29919,0.32682,0.35854,0.36836,0.37429,0.38953,0.42111,0.43532,0.454,0.48323,0.50888,0.51354,0.5639,0.57058,0.57302,0.58489,0.58961,0.62733,0.64346,0.64811,0.64858,0.65832,0.6714,0.67744,0.68012,0.72646,0.72652,0.76683,0.81059,0.84825,0.88012,0.89295,0.89622,0.90368,0.91001,0.92417,0.92567,0.94961,0.95497,0.96486,0.9755,0.98104,0.98163,0.98556,0.98793,0.99287,0.99784,0.99815,0.99931,1,0.99954,0.9995,0.99086,0.98845,0.98719,0.98368,0.98169,0.97833,0.97244,0.96987,0.9661,0.95962,0.95045,0.94091,0.93991,0.92717,0.91822,0.90997,0.88999,0.88034,0.87676,0.86371,0.86291,0.85702,0.8544,0.8181,0.80837,0.80454,0.78681,0.77631,0.77471,0.74966,0.69999,0.68491,0.6771,0.65883,0.65725,0.63661,0.63434,0.60765,0.59196,0.56058,0.55776,0.55511,0.55363,0.54879,0.54485,0.54246,0.51733,0.51211,0.46344,0.44752,0.4371,0.43299,0.39962,0.39904,0.38832,0.38335,0.35889,0.35813,0.35634,0.33875,0.33397,0.33228,0.32717,0.32063,0.31452,0.31137,0.28142,0.2804,0.26549,0.24406,0.22496,0.20013,0.19979,0.19146,0.18133,0.16855,0.16841,0.16415,0.14515,0.14098,0.14053,0.1208,0.11677,0.11449,0.10771,0.10129,0.090281,0.088647,0.081091,0.066062,0.065878,0.064759,0.062521,0.060811,0.058756,0.056405,0.038074,0.034208,0.028939,0.025492,0.025332,0.024966,0.020578,0.019657,0.019582,0.016191,0.011631,0.011507,0.010413,0.010199,0.0080726,0.0075538,0.0065248,0.0060401,0.0055426,0.0054502,0.0049164,0.0048275,0.0047857,0.0037719,0.0035094,0.0034041,0.0030815,0.0029858,0.0025814,0.0024965,0.0023335,0.001969,0.0019658,0.0018103,0.0017605,0.0017604,0.0014648,0.0014563,0.0013491,0.0012438,0.0010403,0.00088393,0.0007855,0.00064976,0.00054403,0.00043079,0.00042669,0.00035571,0.00029806,0.00026833,0.00020187,0.00018555,0.00015616,0.00014091,0.00011349,0.00011091,0.00010576,9.4708e-05,7.5025e-05,5.888e-05,5.1726e-05,4.5414e-05,4.242e-05,4.2014e-05,3.71e-05,3.2105e-05,2.052e-05,1.8186e-05,1.7012e-05,1.4671e-05,1.4656e-05,1.2656e-05,1.2426e-05,1.1242e-05,1.037e-05,7.8865e-06,7.5783e-06,6.1046e-06,4.9834e-06,2.5395e-06,2.2331e-06,2.0982e-06,1.7808e-06,1.5254e-06,1.4379e-06,1.2775e-06,1.173e-06,1.0549e-06,8.8444e-07,8.836e-07,6.4184e-07,5.8925e-07,5.7881e-07,5.7332e-07,4.1242e-07,4.0933e-07,3.9588e-07,3.8603e-07,3.6161e-07,3.2441e-07,2.9422e-07,1.9005e-07,7.3473e-08,5.5089e-08,5.3699e-08,5.2575e-08,4.9093e-08,4.7254e-08,3.2813e-08,2.5749e-08,2.1562e-08,1.9516e-08,1.5832e-08,1.3241e-08,1.2806e-08,9.9457e-09,8.6129e-09,7.22e-09,5.4282e-09,3.716e-09,3.6266e-09,3.1873e-09,2.9132e-09,2.7977e-09,1.8125e-09,1.6082e-09,9.2922e-10,7.9711e-10,6.0761e-10,5.2506e-10,5.0075e-10,3.8642e-10,3.7364e-10,3.4712e-10,2.9543e-10,2.1686e-10 1,8.6828e-13,1.2525e-12,1.2756e-12,1.424e-12,1.5497e-12,1.7315e-12,2.1462e-12,3.5645e-12,4.9095e-12,5.1563e-12,6.6417e-12,6.9211e-12,8.1506e-12,1.2107e-11,1.3699e-11,1.4925e-11,2.1599e-11,2.3009e-11,2.4678e-11,3.1199e-11,3.1993e-11,3.2459e-11,3.8778e-11,4.3061e-11,4.3208e-11,5.2795e-11,5.3765e-11,5.8842e-11,5.9544e-11,6.0235e-11,1.1068e-10,1.9645e-10,2.0684e-10,2.4456e-10,2.8385e-10,3.1855e-10,3.6513e-10,4.2768e-10,5.6414e-10,6.5654e-10,8.3921e-10,1.1406e-09,1.1732e-09,1.2457e-09,1.3165e-09,1.7535e-09,1.7543e-09,3.4493e-09,3.6251e-09,3.7265e-09,4.5519e-09,4.6192e-09,6.8204e-09,7.9408e-09,8.4581e-09,9.711e-09,1.0599e-08,1.2311e-08,1.2895e-08,1.8376e-08,2.2826e-08,4.474e-08,5.3692e-08,5.7057e-08,6.3598e-08,8.5532e-08,9.086e-08,9.5856e-08,1.2311e-07,1.554e-07,1.6932e-07,1.8161e-07,2.3383e-07,3.3554e-07,4.8868e-07,6.2784e-07,6.6154e-07,1.0505e-06,1.2305e-06,1.3244e-06,1.3682e-06,1.5605e-06,2.6638e-06,2.7097e-06,2.9713e-06,3.437e-06,3.5364e-06,4.3465e-06,7.6072e-06,7.6631e-06,8.9525e-06,9.4643e-06,1.7678e-05,2.063e-05,2.0865e-05,2.3928e-05,2.8766e-05,2.887e-05,2.9301e-05,3.2716e-05,3.2748e-05,3.6171e-05,3.7585e-05,6.4504e-05,8.1377e-05,8.2015e-05,0.00010638,0.00011399,0.00012679,0.00013349,0.00013759,0.00014228,0.00014384,0.00014808,0.00016638,0.00016864,0.00017339,0.00017738,0.00021039,0.00025464,0.00032441,0.00035505,0.00042898,0.00052836,0.00057629,0.00060257,0.00097737,0.0010325,0.0010748,0.0011635,0.0012861,0.0014018,0.0015027,0.0015214,0.0015332,0.0016724,0.0020956,0.0021303,0.0023251,0.0026593,0.002862,0.0028962,0.0043666,0.0043854,0.0047473,0.005534,0.0056892,0.0063032,0.0064566,0.0076268,0.0084888,0.010779,0.01084,0.01413,0.014557,0.014695,0.017363,0.017547,0.018617,0.020113,0.020602,0.020978,0.022518,0.022782,0.022956,0.024268,0.024743,0.024868,0.026029,0.026458,0.028943,0.033503,0.034376,0.034612,0.036904,0.037887,0.042121,0.050498,0.053357,0.058151,0.060001,0.065384,0.071119,0.071605,0.071983,0.072027,0.073811,0.073964,0.079794,0.082589,0.088051,0.088301,0.089829,0.10012,0.10043,0.10565,0.11184,0.12358,0.12518,0.12987,0.13093,0.13365,0.13831,0.14567,0.14587,0.16363,0.18565,0.18811,0.19085,0.19171,0.20621,0.21549,0.24894,0.25077,0.2545,0.26087,0.28536,0.31225,0.34321,0.35282,0.35862,0.37354,0.40454,0.41851,0.43691,0.46574,0.49112,0.49573,0.54573,0.55238,0.55481,0.56663,0.57135,0.60904,0.6252,0.62986,0.63034,0.64011,0.65326,0.65934,0.66204,0.70882,0.70888,0.74981,0.79453,0.83331,0.8664,0.87982,0.88324,0.89109,0.89775,0.91275,0.91434,0.94001,0.94583,0.95667,0.96852,0.97483,0.97549,0.98005,0.98285,0.98885,0.9954,0.99587,0.99773,0.99954,1,1,0.99447,0.99255,0.99153,0.98863,0.98695,0.98408,0.97895,0.97669,0.97335,0.96753,0.9592,0.95044,0.94951,0.93769,0.92931,0.92155,0.90264,0.89345,0.89003,0.87754,0.87677,0.87111,0.86859,0.83352,0.82406,0.82034,0.80305,0.7928,0.79123,0.76668,0.71773,0.70281,0.69507,0.67694,0.67537,0.65483,0.65257,0.62594,0.61026,0.57882,0.57598,0.57332,0.57183,0.56698,0.56302,0.56061,0.53533,0.53007,0.4809,0.46477,0.45419,0.45003,0.4161,0.41552,0.40459,0.39953,0.37456,0.37379,0.37195,0.35397,0.34907,0.34734,0.34211,0.33541,0.32914,0.32591,0.29514,0.29409,0.27873,0.25663,0.23689,0.21117,0.21081,0.20217,0.19164,0.17835,0.1782,0.17376,0.15394,0.14959,0.14912,0.12847,0.12425,0.12186,0.11474,0.108,0.096414,0.094692,0.086726,0.070845,0.07065,0.069465,0.067095,0.065282,0.063104,0.060611,0.041109,0.036981,0.031345,0.027651,0.027479,0.027087,0.022373,0.021382,0.021302,0.017648,0.012721,0.012587,0.011402,0.01117,0.0088614,0.0082973,0.007177,0.0066487,0.0061061,0.0060052,0.0054223,0.0053251,0.0052794,0.0041701,0.0038824,0.0037669,0.003413,0.003308,0.0028635,0.0027702,0.0025908,0.0021893,0.0021858,0.0020143,0.0019593,0.0019593,0.0016328,0.0016234,0.0015048,0.0013884,0.0011629,0.00098939,0.00088004,0.00072906,0.00061127,0.00048491,0.00048033,0.00040099,0.00033645,0.00030312,0.00022853,0.00021018,0.00017711,0.00015993,0.00012901,0.00012609,0.00012028,0.0001078,8.5531e-05,6.7238e-05,5.912e-05,5.1952e-05,4.8549e-05,4.8087e-05,4.2499e-05,3.6813e-05,2.3597e-05,2.0931e-05,1.9588e-05,1.6908e-05,1.6891e-05,1.4599e-05,1.4336e-05,1.2978e-05,1.1978e-05,9.1247e-06,8.7702e-06,7.0742e-06,5.7821e-06,2.9586e-06,2.6035e-06,2.4471e-06,2.0789e-06,1.7824e-06,1.6808e-06,1.4943e-06,1.3728e-06,1.2353e-06,1.0367e-06,1.0358e-06,7.5372e-07,6.923e-07,6.8011e-07,6.737e-07,4.8552e-07,4.819e-07,4.6615e-07,4.5462e-07,4.2602e-07,3.8242e-07,3.4702e-07,2.2469e-07,8.7307e-08,6.5561e-08,6.3914e-08,6.2584e-08,5.8459e-08,5.6281e-08,3.9155e-08,3.0764e-08,2.5785e-08,2.3349e-08,1.8962e-08,1.5873e-08,1.5355e-08,1.194e-08,1.0347e-08,8.6813e-09,6.536e-09,4.4826e-09,4.3754e-09,3.8477e-09,3.5184e-09,3.3796e-09,2.194e-09,1.9478e-09,1.1283e-09,9.6862e-10,7.3928e-10,6.3927e-10,6.098e-10,4.7113e-10,4.5563e-10,4.2343e-10,3.6065e-10,2.6511e-10 1,8.592e-13,1.2395e-12,1.2624e-12,1.4093e-12,1.5337e-12,1.7136e-12,2.1241e-12,3.5282e-12,4.8598e-12,5.1041e-12,6.5748e-12,6.8515e-12,8.0689e-12,1.1987e-11,1.3563e-11,1.4777e-11,2.1387e-11,2.2783e-11,2.4436e-11,3.0894e-11,3.1681e-11,3.2142e-11,3.8402e-11,4.2643e-11,4.2789e-11,5.2285e-11,5.3246e-11,5.8275e-11,5.8971e-11,5.9655e-11,1.0962e-10,1.9461e-10,2.049e-10,2.4227e-10,2.812e-10,3.1559e-10,3.6175e-10,4.2374e-10,5.5897e-10,6.5055e-10,8.3159e-10,1.1303e-09,1.1626e-09,1.2345e-09,1.3047e-09,1.7379e-09,1.7386e-09,3.4191e-09,3.5933e-09,3.6939e-09,4.5123e-09,4.5791e-09,6.7616e-09,7.8726e-09,8.3857e-09,9.6282e-09,1.0509e-08,1.2207e-08,1.2786e-08,1.8222e-08,2.2635e-08,4.4374e-08,5.3256e-08,5.6594e-08,6.3084e-08,8.4846e-08,9.0133e-08,9.5091e-08,1.2214e-07,1.5418e-07,1.68e-07,1.8019e-07,2.3201e-07,3.3296e-07,4.8498e-07,6.2313e-07,6.5658e-07,1.0428e-06,1.2215e-06,1.3147e-06,1.3582e-06,1.5491e-06,2.6449e-06,2.6904e-06,2.9502e-06,3.4128e-06,3.5115e-06,4.3162e-06,7.5553e-06,7.6108e-06,8.8919e-06,9.4003e-06,1.7562e-05,2.0495e-05,2.0729e-05,2.3773e-05,2.8581e-05,2.8684e-05,2.9113e-05,3.2507e-05,3.2539e-05,3.5941e-05,3.7346e-05,6.4106e-05,8.088e-05,8.1515e-05,0.00010574,0.00011331,0.00012603,0.00013269,0.00013678,0.00014144,0.00014299,0.0001472,0.0001654,0.00016765,0.00017238,0.00017635,0.00020918,0.00025318,0.00032258,0.00035306,0.0004266,0.00052547,0.00057315,0.0005993,0.00097226,0.0010271,0.0010692,0.0011575,0.0012795,0.0013946,0.0014951,0.0015136,0.0015254,0.001664,0.0020853,0.0021198,0.0023137,0.0026464,0.0028482,0.0028823,0.0043464,0.004365,0.0047255,0.0055089,0.0056635,0.006275,0.0064277,0.0075932,0.0084519,0.010733,0.010794,0.014072,0.014497,0.014635,0.017294,0.017476,0.018543,0.020034,0.020521,0.020895,0.022431,0.022694,0.022867,0.024175,0.024648,0.024773,0.02593,0.026357,0.028834,0.03338,0.03425,0.034485,0.03677,0.037751,0.041971,0.050324,0.053175,0.057956,0.0598,0.065169,0.070889,0.071373,0.071751,0.071794,0.073574,0.073726,0.079541,0.082329,0.087778,0.088027,0.089551,0.099818,0.10013,0.10534,0.11151,0.12322,0.12483,0.1295,0.13056,0.13327,0.13792,0.14526,0.14547,0.16319,0.18517,0.18762,0.19036,0.19122,0.20569,0.21496,0.24835,0.25018,0.25391,0.26027,0.28472,0.31158,0.34251,0.35211,0.35789,0.37281,0.40377,0.41773,0.43611,0.46493,0.49029,0.4949,0.54488,0.55153,0.55396,0.56578,0.57049,0.60818,0.62434,0.62901,0.62948,0.63926,0.65241,0.65849,0.66119,0.70799,0.70805,0.749,0.79377,0.8326,0.86575,0.87919,0.88262,0.89048,0.89717,0.9122,0.91379,0.93954,0.94539,0.95626,0.96818,0.97451,0.97519,0.97977,0.98259,0.98864,0.99527,0.99574,0.99764,0.9995,1,1,0.99462,0.99272,0.99171,0.98884,0.98717,0.98433,0.97924,0.97699,0.97366,0.96788,0.95959,0.95087,0.94994,0.93817,0.92982,0.92208,0.90322,0.89405,0.89063,0.87817,0.8774,0.87176,0.86924,0.83422,0.82478,0.82107,0.8038,0.79356,0.792,0.76747,0.71856,0.70364,0.69591,0.67778,0.67622,0.65568,0.65342,0.6268,0.61112,0.57967,0.57684,0.57417,0.57269,0.56783,0.56387,0.56146,0.53617,0.53091,0.48172,0.46558,0.455,0.45083,0.41688,0.41629,0.40536,0.40029,0.3753,0.37453,0.37269,0.35469,0.34979,0.34806,0.34282,0.33611,0.32984,0.3266,0.29579,0.29474,0.27936,0.25723,0.23746,0.21169,0.21134,0.20268,0.19214,0.17881,0.17867,0.17422,0.15436,0.15,0.14953,0.12884,0.1246,0.12221,0.11507,0.10832,0.096709,0.094983,0.086997,0.071075,0.070879,0.069692,0.067315,0.065498,0.063313,0.060813,0.041256,0.037116,0.031462,0.027756,0.027583,0.02719,0.02246,0.021466,0.021385,0.017719,0.012774,0.012639,0.01145,0.011217,0.0088999,0.0083336,0.0072089,0.0066785,0.0061336,0.0060323,0.005447,0.0053494,0.0053036,0.0041896,0.0039007,0.0037847,0.0034292,0.0033238,0.0028774,0.0027836,0.0026034,0.0022002,0.0021966,0.0020244,0.0019691,0.001969,0.0016411,0.0016316,0.0015125,0.0013955,0.0011689,0.00099459,0.00088471,0.00073298,0.0006146,0.00048759,0.00048298,0.00040323,0.00033835,0.00030485,0.00022985,0.0002114,0.00017815,0.00016087,0.00012978,0.00012685,0.000121,0.00010845,8.6055e-05,6.7655e-05,5.9489e-05,5.2279e-05,4.8855e-05,4.839e-05,4.2769e-05,3.7048e-05,2.3751e-05,2.1068e-05,1.9717e-05,1.702e-05,1.7003e-05,1.4697e-05,1.4432e-05,1.3065e-05,1.2059e-05,9.1869e-06,8.8301e-06,7.123e-06,5.8223e-06,2.9797e-06,2.6222e-06,2.4648e-06,2.094e-06,1.7954e-06,1.6931e-06,1.5052e-06,1.3829e-06,1.2444e-06,1.0444e-06,1.0434e-06,7.5939e-07,6.9752e-07,6.8524e-07,6.7878e-07,4.8923e-07,4.8558e-07,4.6971e-07,4.5809e-07,4.2928e-07,3.8536e-07,3.497e-07,2.2645e-07,8.8012e-08,6.6095e-08,6.4435e-08,6.3094e-08,5.8937e-08,5.6741e-08,3.9479e-08,3.102e-08,2.6001e-08,2.3545e-08,1.9122e-08,1.6007e-08,1.5485e-08,1.2042e-08,1.0436e-08,8.7562e-09,6.5929e-09,4.5219e-09,4.4138e-09,3.8816e-09,3.5495e-09,3.4095e-09,2.2136e-09,1.9653e-09,1.1386e-09,9.7746e-10,7.4607e-10,6.4517e-10,6.1543e-10,4.7551e-10,4.5986e-10,4.2738e-10,3.6402e-10,2.676e-10 1,3.9389e-13,5.7114e-13,5.8184e-13,6.5056e-13,7.0882e-13,7.9324e-13,9.8623e-13,1.65e-12,2.2832e-12,2.3997e-12,3.1025e-12,3.235e-12,3.8189e-12,5.706e-12,6.4683e-12,7.056e-12,1.0268e-11,1.0948e-11,1.1755e-11,1.4914e-11,1.5299e-11,1.5525e-11,1.8598e-11,2.0685e-11,2.0757e-11,2.544e-11,2.5915e-11,2.8401e-11,2.8745e-11,2.9084e-11,5.3944e-11,9.6615e-11,1.0181e-10,1.2069e-10,1.4041e-10,1.5787e-10,1.8134e-10,2.1295e-10,2.8215e-10,3.2917e-10,4.2244e-10,5.7703e-10,5.938e-10,6.311e-10,6.6758e-10,8.9342e-10,8.9381e-10,1.7774e-09,1.8696e-09,1.9228e-09,2.3567e-09,2.3921e-09,3.5556e-09,4.1505e-09,4.4257e-09,5.0935e-09,5.568e-09,6.4841e-09,6.797e-09,9.7464e-09,1.2153e-08,2.411e-08,2.903e-08,3.0884e-08,3.4493e-08,4.6642e-08,4.9603e-08,5.2382e-08,6.7591e-08,8.5691e-08,9.3519e-08,1.0044e-07,1.2994e-07,1.8775e-07,2.7545e-07,3.5563e-07,3.7511e-07,6.0117e-07,7.0644e-07,7.6144e-07,7.8715e-07,9.0017e-07,1.5537e-06,1.5809e-06,1.7369e-06,2.0153e-06,2.0748e-06,2.5613e-06,4.5368e-06,4.5708e-06,5.3581e-06,5.6713e-06,1.0741e-05,1.2579e-05,1.2725e-05,1.4639e-05,1.7673e-05,1.7738e-05,1.8009e-05,2.0159e-05,2.018e-05,2.2341e-05,2.3234e-05,4.0388e-05,5.1239e-05,5.1651e-05,6.7426e-05,7.2371e-05,8.0705e-05,8.508e-05,8.7764e-05,9.0828e-05,9.1847e-05,9.4624e-05,0.00010663,0.00010812,0.00011124,0.00011387,0.00013565,0.00016498,0.00021152,0.00023205,0.00028178,0.00034901,0.00038157,0.00039945,0.0006567,0.00069481,0.00072412,0.00078567,0.00087093,0.00095164,0.0010222,0.0010353,0.0010436,0.0011412,0.0014397,0.0014642,0.0016023,0.0018401,0.0019849,0.0020093,0.0030687,0.0030823,0.0033452,0.003919,0.0040326,0.0044829,0.0045956,0.0054588,0.0060979,0.0078072,0.0078529,0.010334,0.010657,0.010762,0.012794,0.012934,0.013753,0.014901,0.015277,0.015567,0.016755,0.016959,0.017093,0.018109,0.018477,0.018574,0.019476,0.019809,0.021746,0.02532,0.026007,0.026193,0.028001,0.028778,0.032134,0.038824,0.04112,0.044984,0.046478,0.050844,0.055515,0.055912,0.056221,0.056257,0.057715,0.05784,0.06262,0.064918,0.069422,0.069629,0.070891,0.07943,0.079691,0.084043,0.08922,0.099081,0.10044,0.10439,0.10529,0.1076,0.11155,0.11781,0.11798,0.13318,0.15218,0.15431,0.15669,0.15744,0.17007,0.17819,0.20768,0.20931,0.21262,0.21829,0.24018,0.26443,0.29259,0.30139,0.30671,0.32044,0.34916,0.36218,0.37942,0.40663,0.43076,0.43516,0.48332,0.48977,0.49214,0.50367,0.50827,0.54536,0.56141,0.56606,0.56653,0.5763,0.58948,0.5956,0.59832,0.64593,0.64598,0.68838,0.73567,0.77764,0.81436,0.82955,0.83345,0.84246,0.85017,0.86776,0.86964,0.90081,0.90812,0.92201,0.93785,0.94665,0.94761,0.95424,0.95846,0.96799,0.97994,0.98092,0.9852,0.99086,0.99447,0.99462,1,0.99986,0.99969,0.99895,0.99839,0.99728,0.99492,0.99376,0.99195,0.98857,0.98334,0.97746,0.97682,0.96841,0.96221,0.95631,0.94148,0.93406,0.93126,0.92095,0.92031,0.91557,0.91345,0.8833,0.875,0.87171,0.85631,0.84708,0.84566,0.82328,0.77769,0.76356,0.75619,0.73883,0.73732,0.71748,0.71529,0.68929,0.67385,0.64264,0.6398,0.63714,0.63565,0.63079,0.62682,0.6244,0.59888,0.59355,0.54324,0.52656,0.51558,0.51125,0.47573,0.47511,0.46359,0.45824,0.43173,0.4309,0.42895,0.40971,0.40445,0.40259,0.39696,0.38974,0.38297,0.37947,0.346,0.34485,0.32801,0.30363,0.28169,0.25286,0.25246,0.24271,0.2308,0.21567,0.21551,0.21043,0.18768,0.18266,0.18211,0.15814,0.15321,0.15042,0.14206,0.13413,0.12041,0.11836,0.10886,0.089772,0.089537,0.088103,0.085231,0.083032,0.080383,0.077347,0.053344,0.048198,0.041127,0.036461,0.036244,0.035746,0.029744,0.028476,0.028373,0.023674,0.017268,0.017092,0.015538,0.015233,0.012182,0.011432,0.009937,0.0092291,0.0084998,0.0083639,0.0075774,0.0074459,0.0073842,0.005877,0.005484,0.0053259,0.0048405,0.0046961,0.0040834,0.0039543,0.0037058,0.0031476,0.0031427,0.0029033,0.0028263,0.0028262,0.0023681,0.0023548,0.0021876,0.0020231,0.0017032,0.0014558,0.0012992,0.001082,0.00091156,0.00072768,0.00072099,0.00060482,0.00050983,0.00046059,0.00034981,0.00032241,0.00027287,0.00024703,0.00020035,0.00019593,0.00018712,0.00016815,0.00013418,0.0001061,9.3574e-05,8.2482e-05,7.7203e-05,7.6486e-05,6.7794e-05,5.8921e-05,3.8158e-05,3.3939e-05,3.1809e-05,2.7548e-05,2.7521e-05,2.3865e-05,2.3444e-05,2.1271e-05,1.9666e-05,1.5072e-05,1.4499e-05,1.175e-05,9.6453e-06,5.0057e-06,4.4168e-06,4.1568e-06,3.5433e-06,3.0475e-06,2.8772e-06,2.5641e-06,2.3597e-06,2.1278e-06,1.7921e-06,1.7905e-06,1.3112e-06,1.2064e-06,1.1856e-06,1.1746e-06,8.5199e-07,8.4575e-07,8.1864e-07,7.9878e-07,7.4947e-07,6.7418e-07,6.1293e-07,4.0018e-07,1.5828e-07,1.1948e-07,1.1654e-07,1.1415e-07,1.0676e-07,1.0286e-07,7.2031e-08,5.684e-08,4.7791e-08,4.3353e-08,3.5338e-08,2.9673e-08,2.8721e-08,2.2432e-08,1.9488e-08,1.6401e-08,1.2408e-08,8.5649e-09,8.3634e-09,7.3708e-09,6.7502e-09,6.4883e-09,4.2428e-09,3.7741e-09,2.2062e-09,1.8986e-09,1.4554e-09,1.2615e-09,1.2043e-09,9.3431e-10,9.0406e-10,8.4116e-10,7.1828e-10,5.3059e-10 1,3.4647e-13,5.0281e-13,5.1224e-13,5.7289e-13,6.2432e-13,6.9885e-13,8.693e-13,1.4561e-12,2.0164e-12,2.1196e-12,2.7419e-12,2.8593e-12,3.3766e-12,5.05e-12,5.7263e-12,6.2479e-12,9.1001e-12,9.7047e-12,1.0421e-11,1.3229e-11,1.3572e-11,1.3773e-11,1.6507e-11,1.8363e-11,1.8427e-11,2.2596e-11,2.3019e-11,2.5233e-11,2.5539e-11,2.5841e-11,4.8002e-11,8.6096e-11,9.0735e-11,1.0761e-10,1.2524e-10,1.4085e-10,1.6186e-10,1.9014e-10,2.5211e-10,2.9424e-10,3.7785e-10,5.1655e-10,5.316e-10,5.6508e-10,5.9784e-10,8.0069e-10,8.0105e-10,1.5959e-09,1.6788e-09,1.7267e-09,2.1175e-09,2.1495e-09,3.1983e-09,3.7351e-09,3.9834e-09,4.5862e-09,5.0147e-09,5.8422e-09,6.1249e-09,8.7915e-09,1.0969e-08,2.1804e-08,2.6267e-08,2.7949e-08,3.1225e-08,4.226e-08,4.4951e-08,4.7478e-08,6.1308e-08,7.7781e-08,8.4908e-08,9.121e-08,1.1809e-07,1.7082e-07,2.5091e-07,3.242e-07,3.4201e-07,5.4894e-07,6.454e-07,6.9581e-07,7.1938e-07,8.2303e-07,1.423e-06,1.4481e-06,1.5915e-06,1.8475e-06,1.9022e-06,2.3498e-06,4.1703e-06,4.2017e-06,4.928e-06,5.2171e-06,9.903e-06,1.1604e-05,1.1739e-05,1.3512e-05,1.6323e-05,1.6384e-05,1.6635e-05,1.8628e-05,1.8647e-05,2.0652e-05,2.1481e-05,3.7418e-05,4.7513e-05,4.7896e-05,6.2589e-05,6.7198e-05,7.4968e-05,7.9047e-05,8.1552e-05,8.441e-05,8.5361e-05,8.7952e-05,9.9158e-05,0.00010055,0.00010346,0.00010592,0.00012626,0.00015369,0.00019724,0.00021647,0.00026307,0.00032614,0.00035669,0.00037349,0.00061534,0.00065121,0.00067882,0.00073678,0.00081711,0.0008932,0.00095977,0.00097208,0.00097988,0.001072,0.0013538,0.001377,0.0015075,0.0017324,0.0018694,0.0018925,0.0028963,0.0029092,0.0031587,0.0037034,0.0038113,0.0042392,0.0043463,0.0051674,0.0057757,0.0074045,0.0074481,0.0098157,0.010125,0.010225,0.012167,0.012301,0.013085,0.014184,0.014544,0.014821,0.01596,0.016155,0.016284,0.017258,0.01761,0.017704,0.018568,0.018888,0.020747,0.024179,0.02484,0.025018,0.026756,0.027503,0.030733,0.037176,0.03939,0.043118,0.04456,0.048776,0.05329,0.053673,0.053972,0.054007,0.055417,0.055538,0.060161,0.062385,0.066747,0.066947,0.06817,0.076446,0.076698,0.08092,0.085944,0.095521,0.09684,0.10068,0.10156,0.1038,0.10764,0.11373,0.1139,0.1287,0.14723,0.14931,0.15164,0.15237,0.1647,0.17264,0.2015,0.2031,0.20635,0.2119,0.23337,0.25718,0.28488,0.29354,0.29877,0.3123,0.34062,0.35348,0.37052,0.39743,0.42132,0.42569,0.47347,0.47988,0.48223,0.49369,0.49827,0.5352,0.55119,0.55583,0.5563,0.56605,0.57921,0.58532,0.58804,0.63568,0.63574,0.67828,0.72586,0.76824,0.80544,0.82088,0.82485,0.83401,0.84188,0.85983,0.86176,0.89373,0.90125,0.9156,0.93204,0.94122,0.94222,0.94917,0.9536,0.96367,0.97646,0.97752,0.98218,0.98845,0.99255,0.99272,0.99986,1,0.99997,0.99958,0.99921,0.99838,0.99648,0.9955,0.99395,0.99097,0.98626,0.98087,0.98027,0.97244,0.9666,0.96103,0.9469,0.93979,0.93711,0.92718,0.92655,0.92198,0.91993,0.89066,0.88257,0.87936,0.86431,0.85527,0.85388,0.83191,0.78698,0.77302,0.76573,0.74853,0.74704,0.72735,0.72518,0.69934,0.68398,0.65287,0.65004,0.64738,0.6459,0.64105,0.63708,0.63466,0.60917,0.60383,0.55342,0.53669,0.52566,0.52131,0.48559,0.48497,0.47337,0.46799,0.44126,0.44043,0.43845,0.41903,0.41372,0.41185,0.40616,0.39886,0.39201,0.38848,0.3546,0.35343,0.33637,0.31163,0.28935,0.26003,0.25963,0.2497,0.23756,0.22214,0.22197,0.2168,0.19357,0.18843,0.18788,0.16335,0.1583,0.15544,0.14688,0.13874,0.12467,0.12256,0.1128,0.093163,0.092921,0.091445,0.088486,0.086219,0.08349,0.080359,0.055571,0.050246,0.042921,0.038082,0.037856,0.03734,0.031107,0.02979,0.029682,0.024794,0.01812,0.017937,0.016315,0.015996,0.012809,0.012025,0.010461,0.0097193,0.0089553,0.0088129,0.0079885,0.0078506,0.0077859,0.0062043,0.0057915,0.0056254,0.0051152,0.0049634,0.004319,0.0041831,0.0039215,0.0033335,0.0033284,0.003076,0.0029949,0.0029948,0.0025115,0.0024975,0.002321,0.0021473,0.0018093,0.0015475,0.0013818,0.0011517,0.00097112,0.00077601,0.00076891,0.00064551,0.00054454,0.00049217,0.00037423,0.00034503,0.00029222,0.00026467,0.00021483,0.00021012,0.0002007,0.00018044,0.00014411,0.00011406,0.00010065,8.8762e-05,8.3102e-05,8.2333e-05,7.3011e-05,6.3489e-05,4.1185e-05,3.6646e-05,3.4355e-05,2.9769e-05,2.974e-05,2.5803e-05,2.5349e-05,2.3008e-05,2.1278e-05,1.6323e-05,1.5704e-05,1.2736e-05,1.0463e-05,5.4423e-06,4.804e-06,4.5222e-06,3.8568e-06,3.3189e-06,3.134e-06,2.794e-06,2.572e-06,2.3201e-06,1.9551e-06,1.9533e-06,1.432e-06,1.3178e-06,1.2952e-06,1.2832e-06,9.3174e-07,9.2494e-07,8.9539e-07,8.7373e-07,8.1997e-07,7.3784e-07,6.7101e-07,4.3869e-07,1.74e-07,1.3146e-07,1.2823e-07,1.2562e-07,1.1751e-07,1.1322e-07,7.9374e-08,6.2678e-08,5.2727e-08,4.7844e-08,3.9021e-08,3.2783e-08,3.1734e-08,2.4803e-08,2.1557e-08,1.815e-08,1.3743e-08,9.4958e-09,9.2731e-09,8.1754e-09,7.4888e-09,7.1991e-09,4.7131e-09,4.1938e-09,2.455e-09,2.1136e-09,1.6214e-09,1.4059e-09,1.3423e-09,1.0421e-09,1.0084e-09,9.3845e-10,8.0169e-10,5.9267e-10 1,3.2575e-13,4.7293e-13,4.8182e-13,5.3892e-13,5.8736e-13,6.5756e-13,8.1814e-13,1.3712e-12,1.8995e-12,1.9968e-12,2.5838e-12,2.6945e-12,3.1827e-12,4.7621e-12,5.4006e-12,5.8931e-12,8.587e-12,9.1581e-12,9.8351e-12,1.2489e-11,1.2813e-11,1.3003e-11,1.5586e-11,1.7342e-11,1.7402e-11,2.1344e-11,2.1744e-11,2.3838e-11,2.4128e-11,2.4413e-11,4.5382e-11,8.1455e-11,8.5848e-11,1.0184e-10,1.1854e-10,1.3334e-10,1.5325e-10,1.8007e-10,2.3883e-10,2.788e-10,3.5813e-10,4.8977e-10,5.0406e-10,5.3585e-10,5.6695e-10,7.596e-10,7.5994e-10,1.5153e-09,1.5942e-09,1.6397e-09,2.0113e-09,2.0417e-09,3.0396e-09,3.5504e-09,3.7868e-09,4.3606e-09,4.7685e-09,5.5566e-09,5.8258e-09,8.3662e-09,1.0442e-08,2.0774e-08,2.5034e-08,2.6639e-08,2.9766e-08,4.0302e-08,4.2872e-08,4.5285e-08,5.8498e-08,7.4241e-08,8.1054e-08,8.7078e-08,1.1278e-07,1.6323e-07,2.3989e-07,3.1009e-07,3.2715e-07,5.2546e-07,6.1794e-07,6.6629e-07,6.8889e-07,7.8831e-07,1.3642e-06,1.3882e-06,1.5259e-06,1.7718e-06,1.8243e-06,2.2544e-06,4.0047e-06,4.0349e-06,4.7336e-06,5.0117e-06,9.5233e-06,1.1162e-05,1.1293e-05,1.3e-05,1.5711e-05,1.5769e-05,1.6012e-05,1.7934e-05,1.7952e-05,1.9885e-05,2.0685e-05,3.6067e-05,4.5818e-05,4.6188e-05,6.0386e-05,6.4841e-05,7.2354e-05,7.6299e-05,7.8721e-05,8.1485e-05,8.2405e-05,8.4911e-05,9.5751e-05,9.7094e-05,9.9917e-05,0.00010229,0.00012198,0.00014853,0.00019072,0.00020935,0.00025452,0.00031567,0.00034531,0.0003616,0.00059637,0.00063121,0.00065802,0.00071434,0.0007924,0.00086635,0.00093107,0.00094304,0.00095062,0.0010402,0.0013143,0.0013369,0.0014639,0.0016828,0.0018162,0.0018387,0.0028168,0.0028294,0.0030726,0.0036038,0.0037091,0.0041266,0.0042311,0.0050326,0.0056266,0.007218,0.0072606,0.0095756,0.0098776,0.0099758,0.011877,0.012008,0.012775,0.013851,0.014203,0.014475,0.01559,0.015782,0.015908,0.016862,0.017207,0.017299,0.018146,0.018459,0.020282,0.023648,0.024295,0.02447,0.026175,0.026909,0.030079,0.036407,0.038582,0.042246,0.043664,0.047809,0.052249,0.052626,0.05292,0.052954,0.054341,0.05446,0.05901,0.061199,0.065493,0.06569,0.066894,0.075046,0.075295,0.079455,0.084406,0.093848,0.095149,0.09894,0.099804,0.10201,0.1058,0.11182,0.11198,0.12659,0.1449,0.14696,0.14925,0.14998,0.16217,0.17002,0.19859,0.20017,0.20338,0.20888,0.23015,0.25375,0.28122,0.28981,0.29501,0.30844,0.33657,0.34935,0.36628,0.39305,0.41682,0.42117,0.46876,0.47516,0.4775,0.48893,0.4935,0.53034,0.5463,0.55093,0.5514,0.56114,0.57429,0.5804,0.58311,0.63075,0.63081,0.67341,0.72112,0.76369,0.80112,0.81667,0.82067,0.82991,0.83784,0.85597,0.85792,0.89026,0.89789,0.91245,0.92917,0.93852,0.93954,0.94665,0.95118,0.96151,0.97469,0.9758,0.98063,0.98719,0.99153,0.99171,0.99969,0.99997,1,0.99978,0.9995,0.99881,0.99713,0.99624,0.99481,0.99202,0.98756,0.9824,0.98183,0.97428,0.96862,0.96321,0.94942,0.94246,0.93983,0.93008,0.92947,0.92498,0.92296,0.89413,0.88613,0.88297,0.86808,0.85914,0.85777,0.836,0.7914,0.77752,0.77027,0.75316,0.75167,0.73206,0.7299,0.70415,0.68882,0.65777,0.65495,0.65229,0.65081,0.64596,0.642,0.63959,0.6141,0.60876,0.55833,0.54157,0.53052,0.52616,0.49035,0.48973,0.47809,0.47268,0.44586,0.44502,0.44304,0.42354,0.41821,0.41632,0.4106,0.40327,0.39639,0.39284,0.35877,0.35759,0.34042,0.31552,0.29307,0.26352,0.26311,0.2531,0.24085,0.22529,0.22512,0.21989,0.19644,0.19125,0.19069,0.1659,0.16079,0.1579,0.14923,0.141,0.12675,0.12462,0.11473,0.094826,0.09458,0.093083,0.090083,0.087784,0.085014,0.081838,0.056667,0.051254,0.043805,0.038881,0.038651,0.038126,0.03178,0.030438,0.030329,0.025348,0.018542,0.018355,0.016699,0.016374,0.01312,0.012319,0.01072,0.0099627,0.0091815,0.009036,0.0081928,0.0080517,0.0079855,0.0063671,0.0059445,0.0057744,0.005252,0.0050965,0.0044363,0.0042971,0.004029,0.0034263,0.003421,0.0031622,0.003079,0.0030789,0.0025831,0.0025687,0.0023876,0.0022093,0.0018623,0.0015935,0.0014232,0.0011867,0.001001,0.00080025,0.00079294,0.00066594,0.00056197,0.00050803,0.00038651,0.00035641,0.00030196,0.00027354,0.00022213,0.00021726,0.00020755,0.00018663,0.00014913,0.00011808,0.00010422,9.1933e-05,8.6082e-05,8.5287e-05,7.5648e-05,6.5799e-05,4.2717e-05,3.8018e-05,3.5645e-05,3.0894e-05,3.0864e-05,2.6785e-05,2.6315e-05,2.3889e-05,2.2096e-05,1.6958e-05,1.6316e-05,1.3237e-05,1.0878e-05,5.6645e-06,5.0012e-06,4.7083e-06,4.0166e-06,3.4572e-06,3.2649e-06,2.9112e-06,2.6803e-06,2.4182e-06,2.0384e-06,2.0365e-06,1.4936e-06,1.3748e-06,1.3512e-06,1.3387e-06,9.7252e-07,9.6544e-07,9.3463e-07,9.1206e-07,8.5602e-07,7.7041e-07,7.0073e-07,4.5841e-07,1.8208e-07,1.3762e-07,1.3424e-07,1.3151e-07,1.2303e-07,1.1855e-07,8.3151e-08,6.5683e-08,5.5267e-08,5.0157e-08,4.0919e-08,3.4385e-08,3.3287e-08,2.6025e-08,2.2623e-08,1.9053e-08,1.4432e-08,9.9768e-09,9.7432e-09,8.5912e-09,7.8707e-09,7.5665e-09,4.9564e-09,4.411e-09,2.584e-09,2.2251e-09,1.7075e-09,1.4809e-09,1.4139e-09,1.098e-09,1.0626e-09,9.8896e-10,8.45e-10,6.2492e-10 1,2.7804e-13,4.0408e-13,4.1169e-13,4.6063e-13,5.0215e-13,5.6234e-13,7.001e-13,1.1751e-12,1.6293e-12,1.713e-12,2.2182e-12,2.3135e-12,2.734e-12,4.0954e-12,4.6463e-12,5.0713e-12,7.3976e-12,7.8911e-12,8.4762e-12,1.0771e-11,1.1051e-11,1.1215e-11,1.3451e-11,1.4971e-11,1.5023e-11,1.8437e-11,1.8783e-11,2.0598e-11,2.0849e-11,2.1097e-11,3.929e-11,7.0646e-11,7.4468e-11,8.8382e-11,1.0293e-10,1.1582e-10,1.3317e-10,1.5655e-10,2.0783e-10,2.4272e-10,3.1204e-10,4.2716e-10,4.3966e-10,4.6748e-10,4.947e-10,6.6343e-10,6.6372e-10,1.3264e-09,1.3957e-09,1.4357e-09,1.7623e-09,1.789e-09,2.6668e-09,3.1166e-09,3.3248e-09,3.8305e-09,4.1901e-09,4.885e-09,5.1226e-09,7.3654e-09,9.1995e-09,1.8347e-08,2.2123e-08,2.3547e-08,2.6321e-08,3.5677e-08,3.796e-08,4.0104e-08,5.1853e-08,6.5864e-08,7.1931e-08,7.7299e-08,1.0021e-07,1.4524e-07,2.1376e-07,2.7657e-07,2.9185e-07,4.6961e-07,5.5261e-07,5.9602e-07,6.1633e-07,7.0565e-07,1.2238e-06,1.2455e-06,1.3695e-06,1.5911e-06,1.6385e-06,2.0265e-06,3.6084e-06,3.6357e-06,4.2682e-06,4.5201e-06,8.6127e-06,1.0102e-05,1.022e-05,1.1773e-05,1.424e-05,1.4293e-05,1.4514e-05,1.6264e-05,1.6281e-05,1.8042e-05,1.8772e-05,3.2813e-05,4.173e-05,4.2069e-05,5.507e-05,5.9154e-05,6.6041e-05,6.966e-05,7.1882e-05,7.4418e-05,7.5262e-05,7.7562e-05,8.7515e-05,8.8749e-05,9.1342e-05,9.3522e-05,0.00011162,0.00013605,0.00017491,0.00019208,0.00023376,0.00029025,0.00031765,0.00033272,0.0005502,0.00058252,0.0006074,0.00065968,0.00073219,0.00080092,0.00086109,0.00087222,0.00087928,0.00096265,0.0012179,0.001239,0.0013574,0.0015616,0.0016861,0.0017072,0.0026219,0.0026337,0.0028615,0.0033596,0.0034583,0.0038502,0.0039484,0.0047014,0.0052602,0.0067589,0.0067991,0.0089836,0.009269,0.0093617,0.011159,0.011283,0.012009,0.013029,0.013362,0.01362,0.014677,0.014858,0.014978,0.015883,0.016211,0.016297,0.017101,0.017399,0.01913,0.022331,0.022947,0.023114,0.024737,0.025436,0.028457,0.034497,0.036575,0.040078,0.041435,0.045402,0.049657,0.050018,0.0503,0.050332,0.051662,0.051776,0.056141,0.058243,0.062367,0.062556,0.063713,0.071552,0.071791,0.075795,0.080564,0.089666,0.090921,0.094579,0.095414,0.097548,0.10121,0.10702,0.10718,0.12131,0.13905,0.14104,0.14327,0.14397,0.15582,0.16344,0.19123,0.19278,0.1959,0.20126,0.22202,0.24508,0.27197,0.28039,0.28549,0.29867,0.3263,0.33887,0.35554,0.38192,0.40539,0.40969,0.45678,0.46312,0.46544,0.47678,0.48131,0.51791,0.5338,0.53841,0.53888,0.54858,0.56169,0.56778,0.57049,0.61812,0.61817,0.66089,0.70891,0.75192,0.7899,0.80572,0.8098,0.81923,0.82733,0.84589,0.84789,0.88116,0.88904,0.90414,0.92157,0.93137,0.93245,0.93993,0.94472,0.9557,0.96989,0.97109,0.97638,0.98368,0.98863,0.98884,0.99895,0.99958,0.99978,1,0.99994,0.99961,0.99849,0.99783,0.99671,0.99443,0.99061,0.98606,0.98555,0.97871,0.97353,0.96851,0.95561,0.94904,0.94655,0.93729,0.93671,0.93243,0.9305,0.9028,0.89507,0.89201,0.87758,0.86888,0.86754,0.84632,0.80259,0.78893,0.78179,0.76491,0.76344,0.74406,0.74192,0.7164,0.70119,0.6703,0.66749,0.66485,0.66337,0.65854,0.65459,0.65218,0.62674,0.62141,0.57092,0.5541,0.54301,0.53862,0.5026,0.50197,0.49025,0.4848,0.45774,0.45689,0.45489,0.43518,0.42979,0.42788,0.4221,0.41467,0.40771,0.40411,0.36956,0.36837,0.35093,0.3256,0.30274,0.27259,0.27217,0.26195,0.24942,0.2335,0.23332,0.22797,0.20392,0.1986,0.19802,0.17255,0.16729,0.16432,0.15539,0.14691,0.13221,0.13001,0.1198,0.099196,0.098941,0.09739,0.09428,0.091896,0.089024,0.085729,0.059557,0.053915,0.04614,0.040994,0.040754,0.040204,0.033562,0.032156,0.032041,0.026816,0.019662,0.019465,0.017722,0.017379,0.013948,0.013102,0.011413,0.010612,0.009785,0.0096309,0.008738,0.0085886,0.0085184,0.0068022,0.0063536,0.006173,0.005618,0.0054527,0.0047505,0.0046024,0.004317,0.0036749,0.0036693,0.0033933,0.0033046,0.0033045,0.0027753,0.00276,0.0025665,0.002376,0.0020048,0.0017169,0.0015344,0.0012808,0.0010814,0.00086563,0.00085777,0.00072107,0.00060907,0.0005509,0.00041973,0.00038722,0.00032834,0.00029759,0.00024192,0.00023664,0.00022611,0.00020344,0.00016273,0.000129,0.00011393,0.00010056,9.419e-05,9.3324e-05,8.2824e-05,7.209e-05,4.6896e-05,4.1759e-05,3.9164e-05,3.3968e-05,3.3934e-05,2.9469e-05,2.8954e-05,2.6296e-05,2.4331e-05,1.8695e-05,1.7991e-05,1.4609e-05,1.2016e-05,6.2747e-06,5.5428e-06,5.2195e-06,4.4556e-06,3.8375e-06,3.625e-06,3.2338e-06,2.9783e-06,2.6882e-06,2.2675e-06,2.2655e-06,1.6637e-06,1.5318e-06,1.5056e-06,1.4918e-06,1.0851e-06,1.0772e-06,1.043e-06,1.0179e-06,9.5558e-07,8.6037e-07,7.8285e-07,5.1298e-07,2.0447e-07,1.547e-07,1.5092e-07,1.4786e-07,1.3836e-07,1.3334e-07,9.3646e-08,7.4037e-08,6.2336e-08,5.6591e-08,4.6202e-08,3.8849e-08,3.7612e-08,2.9433e-08,2.5598e-08,2.1571e-08,1.6355e-08,1.1321e-08,1.1057e-08,9.7536e-09,8.9382e-09,8.5939e-09,5.6375e-09,5.0191e-09,2.9455e-09,2.5376e-09,1.9491e-09,1.6911e-09,1.6149e-09,1.2552e-09,1.2148e-09,1.1309e-09,9.6674e-10,7.1565e-10 1,2.5606e-13,3.7233e-13,3.7935e-13,4.2451e-13,4.6283e-13,5.184e-13,6.4559e-13,1.0844e-12,1.5043e-12,1.5817e-12,2.049e-12,2.1372e-12,2.5261e-12,3.7864e-12,4.2965e-12,4.6901e-12,6.8455e-12,7.3029e-12,7.8452e-12,9.9725e-12,1.0232e-11,1.0385e-11,1.2458e-11,1.3868e-11,1.3917e-11,1.7085e-11,1.7406e-11,1.9091e-11,1.9324e-11,1.9553e-11,3.6451e-11,6.5602e-11,6.9157e-11,8.2101e-11,9.5639e-11,1.0763e-10,1.2379e-10,1.4556e-10,1.9332e-10,2.2584e-10,2.9045e-10,3.9782e-10,4.0948e-10,4.3543e-10,4.6083e-10,6.1831e-10,6.1858e-10,1.2376e-09,1.3024e-09,1.3398e-09,1.6451e-09,1.6701e-09,2.4913e-09,2.9123e-09,3.1072e-09,3.5806e-09,3.9174e-09,4.5683e-09,4.7909e-09,6.8928e-09,8.6127e-09,1.7198e-08,2.0745e-08,2.2082e-08,2.4689e-08,3.3483e-08,3.563e-08,3.7646e-08,4.8699e-08,6.1886e-08,6.7597e-08,7.2651e-08,9.4231e-08,1.3667e-07,2.013e-07,2.6058e-07,2.75e-07,4.4293e-07,5.2138e-07,5.6243e-07,5.8162e-07,6.661e-07,1.1565e-06,1.177e-06,1.2945e-06,1.5045e-06,1.5494e-06,1.9171e-06,3.4178e-06,3.4438e-06,4.0443e-06,4.2835e-06,8.1735e-06,9.5899e-06,9.7029e-06,1.1181e-05,1.3529e-05,1.358e-05,1.379e-05,1.5457e-05,1.5473e-05,1.7151e-05,1.7846e-05,3.1236e-05,3.9748e-05,4.0071e-05,5.2489e-05,5.6391e-05,6.2974e-05,6.6434e-05,6.8558e-05,7.0983e-05,7.179e-05,7.399e-05,8.3509e-05,8.4689e-05,8.717e-05,8.9256e-05,0.00010658,0.00012997,0.0001672,0.00018366,0.00022363,0.00027782,0.00030412,0.00031859,0.00052757,0.00055865,0.00058258,0.00063287,0.00070264,0.00076879,0.00082672,0.00083744,0.00084423,0.00092453,0.0011705,0.0011908,0.0013049,0.0015019,0.001622,0.0016424,0.0025257,0.0025371,0.0027573,0.0032389,0.0033344,0.0037135,0.0038085,0.0045374,0.0050786,0.0065311,0.0065701,0.0086895,0.0089665,0.0090565,0.010802,0.010922,0.011628,0.012619,0.012943,0.013193,0.014221,0.014398,0.014514,0.015395,0.015714,0.015798,0.01658,0.01687,0.018555,0.021673,0.022274,0.022436,0.024018,0.024699,0.027645,0.033539,0.035568,0.03899,0.040316,0.044194,0.048354,0.048707,0.048983,0.049015,0.050316,0.050427,0.054698,0.056755,0.060793,0.060978,0.062111,0.06979,0.070025,0.07395,0.078625,0.087555,0.088786,0.092376,0.093195,0.09529,0.098882,0.10459,0.10475,0.11864,0.13609,0.13805,0.14024,0.14093,0.15259,0.1601,0.1875,0.18901,0.1921,0.19739,0.21787,0.24066,0.26725,0.27558,0.28062,0.29366,0.32104,0.33349,0.35002,0.3762,0.39952,0.40378,0.45061,0.45692,0.45923,0.47051,0.47502,0.51149,0.52734,0.53193,0.5324,0.54208,0.55517,0.56125,0.56396,0.61155,0.61161,0.65437,0.70253,0.74575,0.784,0.79996,0.80408,0.8136,0.82179,0.84056,0.84258,0.87632,0.88433,0.89971,0.91749,0.92753,0.92862,0.9363,0.94122,0.95253,0.96724,0.96849,0.97402,0.98169,0.98695,0.98717,0.99839,0.99921,0.9995,0.99994,1,0.99985,0.99902,0.99848,0.99753,0.99551,0.99202,0.98779,0.98731,0.98086,0.97591,0.97111,0.95868,0.95231,0.9499,0.9409,0.94033,0.93616,0.93428,0.90717,0.89959,0.89658,0.88239,0.87383,0.87251,0.85157,0.80833,0.79479,0.78771,0.77095,0.76949,0.75024,0.74811,0.72272,0.70757,0.67678,0.67398,0.67134,0.66987,0.66505,0.66111,0.6587,0.6333,0.62797,0.57746,0.56063,0.54951,0.54512,0.50899,0.50837,0.4966,0.49113,0.46395,0.4631,0.46109,0.44127,0.43585,0.43394,0.42812,0.42065,0.41364,0.41002,0.37523,0.37403,0.35645,0.33091,0.30783,0.27737,0.27695,0.26661,0.25395,0.23783,0.23766,0.23224,0.20789,0.20249,0.20191,0.17608,0.17074,0.16772,0.15867,0.15005,0.13511,0.13288,0.12249,0.10153,0.10127,0.099686,0.096519,0.09409,0.091164,0.087805,0.061105,0.055341,0.047393,0.042129,0.041883,0.041321,0.03452,0.03308,0.032962,0.027607,0.020267,0.020065,0.018274,0.017922,0.014395,0.013525,0.011788,0.010963,0.010112,0.0099533,0.0090337,0.0088797,0.0088074,0.0070385,0.0065758,0.0063895,0.0058169,0.0056463,0.0049215,0.0047685,0.0044738,0.0038103,0.0038045,0.0035193,0.0034275,0.0034274,0.0028802,0.0028643,0.0026642,0.0024669,0.0020826,0.0017845,0.0015953,0.0013324,0.0011255,0.0009015,0.00089333,0.00075134,0.00063494,0.00057446,0.00043801,0.00040417,0.00034287,0.00031084,0.00025283,0.00024733,0.00023635,0.00021271,0.00017025,0.00013504,0.0001193,0.00010534,9.8678e-05,9.7774e-05,8.6799e-05,7.5575e-05,4.9215e-05,4.3837e-05,4.1119e-05,3.5675e-05,3.564e-05,3.0961e-05,3.0421e-05,2.7634e-05,2.5574e-05,1.9662e-05,1.8924e-05,1.5374e-05,1.265e-05,6.6157e-06,5.8457e-06,5.5054e-06,4.7014e-06,4.0504e-06,3.8266e-06,3.4145e-06,3.1452e-06,2.8395e-06,2.3961e-06,2.3939e-06,1.7591e-06,1.62e-06,1.5923e-06,1.5777e-06,1.1484e-06,1.14e-06,1.1039e-06,1.0774e-06,1.0116e-06,9.1098e-07,8.2905e-07,5.4372e-07,2.1712e-07,1.6436e-07,1.6035e-07,1.5711e-07,1.4703e-07,1.4171e-07,9.9589e-08,7.8771e-08,6.6343e-08,6.024e-08,4.92e-08,4.1382e-08,4.0068e-08,3.1368e-08,2.7289e-08,2.3003e-08,1.7449e-08,1.2086e-08,1.1805e-08,1.0416e-08,9.5465e-09,9.1795e-09,6.0261e-09,5.3662e-09,3.1521e-09,2.7163e-09,2.0872e-09,1.8115e-09,1.73e-09,1.3452e-09,1.302e-09,1.2122e-09,1.0365e-09,7.6769e-10 1,2.2485e-13,3.2722e-13,3.3341e-13,3.732e-13,4.0697e-13,4.5594e-13,5.681e-13,9.5536e-13,1.3263e-12,1.3947e-12,1.8078e-12,1.8858e-12,2.2299e-12,3.3456e-12,3.7974e-12,4.1461e-12,6.0569e-12,6.4626e-12,6.9438e-12,8.8317e-12,9.0624e-12,9.1977e-12,1.1039e-11,1.2291e-11,1.2334e-11,1.515e-11,1.5436e-11,1.6933e-11,1.7141e-11,1.7345e-11,3.2383e-11,5.8365e-11,6.1536e-11,7.3085e-11,8.5168e-11,9.5879e-11,1.1031e-10,1.2976e-10,1.7246e-10,2.0155e-10,2.5938e-10,3.5555e-10,3.6601e-10,3.8927e-10,4.1203e-10,5.5326e-10,5.535e-10,1.1095e-09,1.1677e-09,1.2013e-09,1.4758e-09,1.4983e-09,2.2375e-09,2.6167e-09,2.7923e-09,3.219e-09,3.5226e-09,4.1097e-09,4.3105e-09,6.2079e-09,7.7616e-09,1.5529e-08,1.8741e-08,1.9953e-08,2.2316e-08,3.0291e-08,3.224e-08,3.407e-08,4.4105e-08,5.6088e-08,6.128e-08,6.5876e-08,8.551e-08,1.2416e-07,1.8309e-07,2.372e-07,2.5037e-07,4.0385e-07,4.7563e-07,5.132e-07,5.3077e-07,6.0812e-07,1.0577e-06,1.0766e-06,1.1844e-06,1.3771e-06,1.4184e-06,1.7563e-06,3.1372e-06,3.1611e-06,3.7143e-06,3.9348e-06,7.5251e-06,8.834e-06,8.9385e-06,1.0305e-05,1.2478e-05,1.2525e-05,1.2719e-05,1.4263e-05,1.4278e-05,1.5832e-05,1.6476e-05,2.8898e-05,3.6806e-05,3.7107e-05,4.8656e-05,5.2287e-05,5.8416e-05,6.1638e-05,6.3617e-05,6.5876e-05,6.6628e-05,6.8678e-05,7.755e-05,7.8651e-05,8.0964e-05,8.2909e-05,9.9069e-05,0.00012091,0.0001557,0.0001711,0.0002085,0.00025926,0.00028392,0.00029748,0.00049369,0.00052291,0.00054541,0.0005927,0.00065835,0.00072062,0.00077518,0.00078527,0.00079167,0.00086732,0.0010993,0.0011184,0.0012262,0.0014122,0.0015257,0.0015449,0.0023808,0.0023915,0.0026002,0.0030568,0.0031474,0.0035071,0.0035973,0.0042897,0.0048041,0.0061864,0.0062235,0.0082437,0.008508,0.0085939,0.01026,0.010375,0.01105,0.011997,0.012307,0.012546,0.013529,0.013699,0.01381,0.014653,0.014958,0.015039,0.015788,0.016066,0.017681,0.020671,0.021247,0.021403,0.022922,0.023577,0.026407,0.032077,0.034031,0.037328,0.038605,0.042345,0.04636,0.046701,0.046967,0.046998,0.048254,0.048362,0.052488,0.054476,0.058381,0.05856,0.059656,0.067089,0.067316,0.071117,0.075649,0.084309,0.085504,0.088989,0.089784,0.091819,0.095308,0.10085,0.10101,0.11452,0.13151,0.13342,0.13556,0.13623,0.1476,0.15494,0.18171,0.1832,0.18622,0.19139,0.21145,0.2338,0.25991,0.2681,0.27306,0.28589,0.31285,0.32513,0.34143,0.36729,0.39034,0.39456,0.44095,0.44721,0.4495,0.46069,0.46518,0.50142,0.51719,0.52177,0.52223,0.53187,0.54491,0.55098,0.55368,0.60121,0.60127,0.64409,0.69244,0.73597,0.77462,0.79079,0.79496,0.80462,0.81294,0.83203,0.83409,0.86856,0.87676,0.89256,0.91089,0.92128,0.92242,0.93039,0.93552,0.94734,0.96286,0.96418,0.97008,0.97833,0.98408,0.98433,0.99728,0.99838,0.99881,0.99961,0.99985,1,0.99963,0.99928,0.99858,0.99698,0.99402,0.99029,0.98986,0.98401,0.97945,0.97499,0.9633,0.95726,0.95497,0.94638,0.94583,0.94183,0.94003,0.91389,0.90655,0.90362,0.88982,0.88148,0.88019,0.85972,0.81725,0.80391,0.79692,0.78038,0.77894,0.75988,0.75778,0.73261,0.71757,0.68696,0.68416,0.68154,0.68007,0.67527,0.67134,0.66895,0.64361,0.63829,0.58779,0.57092,0.55977,0.55537,0.5191,0.51847,0.50665,0.50114,0.47379,0.47293,0.4709,0.45094,0.44547,0.44354,0.43767,0.43013,0.42306,0.4194,0.38424,0.38302,0.36523,0.33935,0.31595,0.28501,0.28458,0.27407,0.26118,0.24477,0.24459,0.23907,0.21423,0.20873,0.20813,0.18174,0.17628,0.17319,0.16392,0.15509,0.13978,0.13749,0.12683,0.10528,0.10501,0.10339,0.10013,0.097629,0.094616,0.091157,0.063609,0.05765,0.049424,0.043969,0.043714,0.043132,0.036076,0.03458,0.034458,0.028893,0.021252,0.021041,0.019175,0.018807,0.015126,0.014217,0.0124,0.011537,0.010647,0.010481,0.0095174,0.0093561,0.0092803,0.0074255,0.0069399,0.0067444,0.006143,0.0059638,0.005202,0.0050411,0.0047311,0.0040328,0.0040267,0.0037263,0.0036296,0.0036295,0.0030527,0.0030359,0.0028248,0.0026167,0.0022109,0.0018958,0.0016957,0.0014174,0.0011983,0.00096079,0.00095213,0.00080142,0.00067776,0.00061348,0.00046832,0.00043228,0.00036698,0.00033284,0.00027095,0.00026509,0.00025337,0.00022812,0.00018276,0.0001451,0.00012825,0.00011329,0.00010616,0.00010519,9.3427e-05,8.139e-05,5.309e-05,4.7309e-05,4.4387e-05,3.8531e-05,3.8493e-05,3.3457e-05,3.2876e-05,2.9875e-05,2.7656e-05,2.1283e-05,2.0487e-05,1.6657e-05,1.3715e-05,7.1891e-06,6.3551e-06,5.9864e-06,5.1149e-06,4.4089e-06,4.1661e-06,3.7189e-06,3.4266e-06,3.0946e-06,2.6128e-06,2.6104e-06,1.9202e-06,1.7688e-06,1.7387e-06,1.7228e-06,1.2553e-06,1.2462e-06,1.2068e-06,1.1779e-06,1.1062e-06,9.9654e-07,9.0719e-07,5.9577e-07,2.3858e-07,1.8077e-07,1.7637e-07,1.7281e-07,1.6177e-07,1.5592e-07,1.097e-07,8.6826e-08,7.3164e-08,6.6453e-08,5.4306e-08,4.5701e-08,4.4253e-08,3.467e-08,3.0173e-08,2.5446e-08,1.9318e-08,1.3395e-08,1.3084e-08,1.1548e-08,1.0587e-08,1.0181e-08,6.6916e-09,5.9607e-09,3.5064e-09,3.0228e-09,2.3245e-09,2.0181e-09,1.9276e-09,1.4998e-09,1.4518e-09,1.3519e-09,1.1565e-09,8.5722e-10 1,1.8273e-13,2.6629e-13,2.7134e-13,3.0385e-13,3.3144e-13,3.7148e-13,4.6322e-13,7.8047e-13,1.0848e-12,1.1409e-12,1.4803e-12,1.5444e-12,1.8274e-12,2.7458e-12,3.1181e-12,3.4055e-12,4.9821e-12,5.3172e-12,5.7146e-12,7.2749e-12,7.4657e-12,7.5776e-12,9.101e-12,1.0138e-11,1.0173e-11,1.2505e-11,1.2742e-11,1.3983e-11,1.4155e-11,1.4324e-11,2.6809e-11,4.843e-11,5.1072e-11,6.0698e-11,7.0777e-11,7.9715e-11,9.1763e-11,1.0802e-10,1.4373e-10,1.6808e-10,2.1652e-10,2.9719e-10,3.0596e-10,3.2549e-10,3.4461e-10,4.6328e-10,4.6349e-10,9.3174e-10,9.8084e-10,1.0092e-09,1.2409e-09,1.2599e-09,1.8847e-09,2.2056e-09,2.3543e-09,2.7157e-09,2.973e-09,3.4708e-09,3.6412e-09,5.2524e-09,6.5735e-09,1.3193e-08,1.5935e-08,1.6971e-08,1.899e-08,2.5813e-08,2.7481e-08,2.9048e-08,3.765e-08,4.7932e-08,5.2392e-08,5.634e-08,7.3223e-08,1.0651e-07,1.5735e-07,2.0412e-07,2.1551e-07,3.4845e-07,4.1071e-07,4.4332e-07,4.5858e-07,5.2577e-07,9.1708e-07,9.335e-07,1.0275e-06,1.1957e-06,1.2317e-06,1.5268e-06,2.7357e-06,2.7567e-06,3.242e-06,3.4355e-06,6.5936e-06,7.7475e-06,7.8396e-06,9.0457e-06,1.0965e-05,1.1006e-05,1.1178e-05,1.2543e-05,1.2556e-05,1.3931e-05,1.4501e-05,2.5518e-05,3.2548e-05,3.2815e-05,4.31e-05,4.6337e-05,5.1803e-05,5.4678e-05,5.6445e-05,5.8462e-05,5.9133e-05,6.0964e-05,6.8892e-05,6.9875e-05,7.1944e-05,7.3683e-05,8.8143e-05,0.00010771,0.00013893,0.00015276,0.0001864,0.00023212,0.00025434,0.00026658,0.00044394,0.0004704,0.00049078,0.00053365,0.0005932,0.00064973,0.00069928,0.00070846,0.00071427,0.00078304,0.00099416,0.0010116,0.0011098,0.0012795,0.0013831,0.0014007,0.0021658,0.0021756,0.002367,0.0027862,0.0028694,0.0032002,0.0032832,0.0039207,0.004395,0.0056716,0.0057059,0.0075764,0.0078215,0.0079012,0.0094481,0.0095551,0.010182,0.011063,0.011351,0.011574,0.01249,0.012648,0.012751,0.013537,0.013822,0.013897,0.014596,0.014855,0.016363,0.01916,0.019699,0.019845,0.021268,0.021881,0.024536,0.029863,0.031702,0.034806,0.036011,0.039539,0.04333,0.043652,0.043903,0.043933,0.04512,0.045222,0.049125,0.051007,0.054705,0.054875,0.055914,0.062966,0.063181,0.066792,0.0711,0.079344,0.080482,0.083804,0.084562,0.086502,0.08983,0.095125,0.095273,0.10819,0.12447,0.12631,0.12836,0.129,0.13992,0.14698,0.17277,0.1742,0.17712,0.18211,0.20151,0.22315,0.2485,0.25646,0.26128,0.27378,0.30006,0.31206,0.328,0.35332,0.37594,0.38009,0.42575,0.43192,0.43418,0.44523,0.44966,0.48551,0.50114,0.50568,0.50614,0.51571,0.52867,0.5347,0.53739,0.58477,0.58483,0.62767,0.67627,0.72024,0.75947,0.77594,0.7802,0.79007,0.79857,0.81816,0.82027,0.85582,0.86433,0.88076,0.89995,0.91088,0.91208,0.92051,0.92595,0.93858,0.95534,0.95679,0.96326,0.97244,0.97895,0.97924,0.99492,0.99648,0.99713,0.99849,0.99902,0.99963,1,0.99994,0.99966,0.99872,0.99661,0.99368,0.99334,0.98845,0.98452,0.9806,0.97011,0.96461,0.96251,0.95459,0.95408,0.95037,0.94869,0.92413,0.91717,0.91439,0.90123,0.89324,0.89201,0.87232,0.83115,0.81815,0.81133,0.79514,0.79372,0.77503,0.77296,0.74818,0.73334,0.70304,0.70027,0.69766,0.69621,0.69144,0.68755,0.68517,0.65997,0.65467,0.60423,0.58734,0.57616,0.57174,0.53528,0.53465,0.52274,0.51719,0.48958,0.48871,0.48667,0.46647,0.46094,0.45898,0.45303,0.44539,0.43822,0.43451,0.39878,0.39754,0.37943,0.35303,0.32911,0.29742,0.29698,0.28619,0.27295,0.25607,0.25589,0.25021,0.2246,0.21891,0.21829,0.191,0.18535,0.18215,0.17253,0.16337,0.14745,0.14507,0.13397,0.11148,0.1112,0.1095,0.10609,0.10347,0.10032,0.096697,0.067766,0.061487,0.052804,0.047037,0.046767,0.04615,0.038675,0.037088,0.036958,0.031046,0.022905,0.02268,0.020687,0.020295,0.016356,0.015382,0.013433,0.012507,0.01155,0.011371,0.010335,0.010161,0.01008,0.0080809,0.0075569,0.0073457,0.006696,0.0065024,0.0056783,0.0055041,0.0051684,0.0044114,0.0044047,0.0040787,0.0039737,0.0039736,0.0033467,0.0033285,0.0030988,0.0028722,0.00243,0.0020861,0.0018676,0.0015632,0.0013231,0.0010626,0.0010531,0.00088753,0.00075149,0.00068069,0.00052061,0.00048082,0.00040864,0.00037087,0.00030233,0.00029583,0.00028284,0.00025483,0.00020445,0.00016257,0.0001438,0.00012713,0.00011918,0.0001181,0.00010497,9.1525e-05,5.9859e-05,5.3378e-05,5.0101e-05,4.3528e-05,4.3486e-05,3.7828e-05,3.7175e-05,3.3801e-05,3.1304e-05,2.4128e-05,2.323e-05,1.891e-05,1.5588e-05,8.2007e-06,7.2543e-06,6.8357e-06,5.8456e-06,5.0429e-06,4.7666e-06,4.2576e-06,3.9247e-06,3.5463e-06,2.9969e-06,2.9942e-06,2.2061e-06,2.033e-06,1.9986e-06,1.9805e-06,1.4454e-06,1.435e-06,1.3899e-06,1.3568e-06,1.2746e-06,1.1489e-06,1.0464e-06,6.8865e-07,2.7704e-07,2.1019e-07,2.051e-07,2.0098e-07,1.882e-07,1.8143e-07,1.2786e-07,1.0131e-07,8.5442e-08,7.764e-08,6.3509e-08,5.3488e-08,5.1802e-08,4.063e-08,3.5382e-08,2.9863e-08,2.27e-08,1.5766e-08,1.5401e-08,1.3602e-08,1.2474e-08,1.1998e-08,7.9005e-09,7.0411e-09,4.1516e-09,3.5814e-09,2.7571e-09,2.3951e-09,2.2882e-09,1.7823e-09,1.7254e-09,1.6072e-09,1.3758e-09,1.0211e-09 1,1.6804e-13,2.45e-13,2.4966e-13,2.7961e-13,3.0505e-13,3.4195e-13,4.2654e-13,7.192e-13,1.0001e-12,1.052e-12,1.3654e-12,1.4246e-12,1.6861e-12,2.535e-12,2.8792e-12,3.1451e-12,4.6038e-12,4.9138e-12,5.2816e-12,6.7263e-12,6.9029e-12,7.0065e-12,8.4175e-12,9.3779e-12,9.4109e-12,1.1572e-11,1.1791e-11,1.2942e-11,1.3101e-11,1.3258e-11,2.4837e-11,4.491e-11,4.7364e-11,5.6307e-11,6.5672e-11,7.398e-11,8.518e-11,1.003e-10,1.3352e-10,1.5617e-10,2.0127e-10,2.764e-10,2.8457e-10,3.0276e-10,3.2058e-10,4.3119e-10,4.3138e-10,8.6822e-10,9.1405e-10,9.4051e-10,1.1569e-09,1.1746e-09,1.7583e-09,2.0583e-09,2.1973e-09,2.5352e-09,2.7759e-09,3.2416e-09,3.4009e-09,4.909e-09,6.1462e-09,1.235e-08,1.4923e-08,1.5895e-08,1.779e-08,2.4195e-08,2.5761e-08,2.7234e-08,3.5315e-08,4.498e-08,4.9173e-08,5.2886e-08,6.8768e-08,1.001e-07,1.48e-07,1.9208e-07,2.0282e-07,3.2825e-07,3.8703e-07,4.1782e-07,4.3223e-07,4.957e-07,8.6562e-07,8.8116e-07,9.7007e-07,1.1292e-06,1.1633e-06,1.4427e-06,2.5882e-06,2.6081e-06,3.0683e-06,3.2518e-06,6.2502e-06,7.3466e-06,7.4342e-06,8.5806e-06,1.0406e-05,1.0445e-05,1.0609e-05,1.1907e-05,1.1919e-05,1.3228e-05,1.3771e-05,2.4264e-05,3.0967e-05,3.1222e-05,4.1034e-05,4.4124e-05,4.9343e-05,5.2088e-05,5.3775e-05,5.5702e-05,5.6343e-05,5.8092e-05,6.5666e-05,6.6606e-05,6.8583e-05,7.0245e-05,8.4068e-05,0.00010278,0.00013266,0.00014591,0.00017812,0.00022194,0.00024326,0.00025499,0.00042523,0.00045065,0.00047024,0.00051143,0.00056867,0.00062302,0.00067068,0.0006795,0.0006851,0.00075126,0.00095447,0.00097127,0.0010658,0.0012294,0.0013292,0.0013461,0.0020842,0.0020937,0.0022785,0.0026834,0.0027638,0.0030835,0.0031637,0.0037803,0.0042392,0.0054752,0.0055084,0.0073214,0.007559,0.0076363,0.0091372,0.009241,0.0098493,0.010705,0.010985,0.011201,0.012091,0.012244,0.012345,0.013109,0.013385,0.013459,0.014138,0.01439,0.015857,0.018578,0.019103,0.019245,0.020631,0.021228,0.023814,0.029008,0.030802,0.033831,0.035007,0.038452,0.042156,0.042471,0.042716,0.042745,0.043905,0.044005,0.04782,0.04966,0.053278,0.053444,0.054461,0.061363,0.061574,0.06511,0.06933,0.077409,0.078525,0.081782,0.082525,0.084428,0.087693,0.092889,0.093034,0.10572,0.12172,0.12352,0.12554,0.12617,0.13691,0.14385,0.16925,0.17066,0.17354,0.17846,0.19759,0.21895,0.24399,0.25186,0.25662,0.26898,0.29499,0.30687,0.32267,0.34777,0.37021,0.37433,0.41968,0.42581,0.42806,0.43905,0.44345,0.47914,0.49471,0.49923,0.49969,0.50923,0.52215,0.52816,0.53084,0.57814,0.5782,0.62104,0.66972,0.71384,0.75328,0.76987,0.77416,0.78411,0.79269,0.81246,0.81459,0.85056,0.85919,0.87587,0.89538,0.90653,0.90775,0.91637,0.92193,0.93488,0.95213,0.95363,0.96032,0.96987,0.97669,0.97699,0.99376,0.9955,0.99624,0.99783,0.99848,0.99928,0.99994,1,0.99988,0.99921,0.99745,0.99485,0.99454,0.99004,0.98636,0.98266,0.97267,0.96739,0.96537,0.95772,0.95723,0.95364,0.95201,0.9281,0.92129,0.91858,0.90568,0.89784,0.89663,0.87727,0.83665,0.82379,0.81704,0.801,0.7996,0.78106,0.779,0.7544,0.73964,0.70948,0.70672,0.70413,0.70268,0.69793,0.69405,0.69167,0.66654,0.66125,0.61087,0.59397,0.58278,0.57836,0.54184,0.5412,0.52926,0.5237,0.49599,0.49512,0.49307,0.47279,0.46723,0.46526,0.45928,0.45161,0.44439,0.44066,0.40471,0.40347,0.38523,0.35863,0.3345,0.30251,0.30207,0.29117,0.27779,0.26072,0.26054,0.25479,0.22887,0.22311,0.22249,0.19483,0.1891,0.18585,0.1761,0.1668,0.15063,0.14821,0.13693,0.11405,0.11377,0.11204,0.10857,0.10591,0.1027,0.099005,0.069504,0.063092,0.054221,0.048324,0.048048,0.047417,0.039767,0.038142,0.038009,0.031952,0.023603,0.023372,0.021326,0.020923,0.016876,0.015875,0.013871,0.012918,0.011933,0.011749,0.010682,0.010503,0.010419,0.0083595,0.0078193,0.0076015,0.0069315,0.0067317,0.0058813,0.0057015,0.0053548,0.0045729,0.0045661,0.0042292,0.0041207,0.0041205,0.0034725,0.0034536,0.003216,0.0029816,0.0025238,0.0021677,0.0019413,0.0016258,0.0013768,0.0011065,0.0010966,0.00092463,0.00078328,0.00070969,0.0005432,0.0005018,0.00042666,0.00038733,0.00031593,0.00030915,0.00029561,0.00026642,0.00021387,0.00017016,0.00015057,0.00013316,0.00012484,0.00012371,0.00011,9.5941e-05,6.2813e-05,5.6029e-05,5.2597e-05,4.5712e-05,4.5668e-05,3.974e-05,3.9055e-05,3.5519e-05,3.2901e-05,2.5375e-05,2.4433e-05,1.9899e-05,1.6411e-05,8.646e-06,7.6504e-06,7.2099e-06,6.1678e-06,5.3226e-06,5.0316e-06,4.4954e-06,4.1446e-06,3.7459e-06,3.1667e-06,3.1639e-06,2.3327e-06,2.15e-06,2.1137e-06,2.0946e-06,1.5297e-06,1.5187e-06,1.4711e-06,1.4361e-06,1.3493e-06,1.2164e-06,1.1081e-06,7.2993e-07,2.9419e-07,2.2332e-07,2.1792e-07,2.1356e-07,2e-07,1.9282e-07,1.3598e-07,1.078e-07,9.094e-08,8.2651e-08,6.7633e-08,5.6981e-08,5.5187e-08,4.3305e-08,3.7722e-08,3.1848e-08,2.4221e-08,1.6833e-08,1.6445e-08,1.4526e-08,1.3325e-08,1.2817e-08,8.4459e-09,7.5288e-09,4.4433e-09,3.834e-09,2.9529e-09,2.5659e-09,2.4515e-09,1.9103e-09,1.8495e-09,1.723e-09,1.4753e-09,1.0955e-09 1,1.4948e-13,2.1811e-13,2.2226e-13,2.4898e-13,2.7168e-13,3.0461e-13,3.8014e-13,6.4164e-13,8.9288e-13,9.3925e-13,1.2198e-12,1.2728e-12,1.5069e-12,2.2675e-12,2.5761e-12,2.8145e-12,4.1231e-12,4.4014e-12,4.7316e-12,6.0289e-12,6.1875e-12,6.2806e-12,7.5484e-12,8.4115e-12,8.4411e-12,1.0384e-11,1.0581e-11,1.1616e-11,1.1759e-11,1.19e-11,2.2324e-11,4.0419e-11,4.2633e-11,5.0702e-11,5.9156e-11,6.6657e-11,7.6772e-11,9.0429e-11,1.2046e-10,1.4095e-10,1.8176e-10,2.4978e-10,2.5718e-10,2.7367e-10,2.898e-10,3.9007e-10,3.9024e-10,7.867e-10,8.2833e-10,8.5237e-10,1.049e-09,1.0651e-09,1.5959e-09,1.8689e-09,1.9954e-09,2.3031e-09,2.5223e-09,2.9465e-09,3.0917e-09,4.4667e-09,5.5955e-09,1.1264e-08,1.3617e-08,1.4505e-08,1.6239e-08,2.2104e-08,2.3539e-08,2.4887e-08,3.2294e-08,4.1158e-08,4.5006e-08,4.8413e-08,6.2996e-08,9.179e-08,1.3586e-07,1.7645e-07,1.8634e-07,3.0198e-07,3.5622e-07,3.8464e-07,3.9795e-07,4.5656e-07,7.9854e-07,8.1291e-07,8.9519e-07,1.0425e-06,1.074e-06,1.3328e-06,2.3953e-06,2.4138e-06,2.8411e-06,3.0116e-06,5.8e-06,6.821e-06,6.9025e-06,7.9705e-06,9.6716e-06,9.7085e-06,9.8609e-06,1.1072e-05,1.1084e-05,1.2305e-05,1.2811e-05,2.2615e-05,2.8886e-05,2.9124e-05,3.8312e-05,4.1207e-05,4.6099e-05,4.8673e-05,5.0255e-05,5.2061e-05,5.2663e-05,5.4303e-05,6.1409e-05,6.2291e-05,6.4146e-05,6.5706e-05,7.8686e-05,9.6271e-05,0.00012437,0.00013683,0.00016717,0.00020847,0.00022856,0.00023963,0.00040039,0.00042443,0.00044294,0.00048191,0.00053606,0.00058751,0.00063264,0.00064099,0.00064629,0.00070897,0.00090161,0.00091755,0.0010073,0.0011625,0.0012574,0.0012734,0.0019753,0.0019843,0.0021602,0.002546,0.0026226,0.0029274,0.0030039,0.0035922,0.0040304,0.0052118,0.0052435,0.0069788,0.0072065,0.0072805,0.0087191,0.0088187,0.0094022,0.010223,0.010492,0.0107,0.011554,0.011701,0.011798,0.012532,0.012798,0.012868,0.013521,0.013764,0.015174,0.017793,0.018299,0.018436,0.01977,0.020346,0.02284,0.027852,0.029584,0.032512,0.033648,0.03698,0.040564,0.040869,0.041107,0.041135,0.042258,0.042355,0.04605,0.047834,0.051341,0.051502,0.052488,0.059185,0.05939,0.062824,0.066923,0.074776,0.075862,0.07903,0.079753,0.081605,0.084783,0.089842,0.089983,0.10234,0.11795,0.11971,0.12168,0.1223,0.1328,0.13958,0.16444,0.16582,0.16864,0.17346,0.19221,0.21318,0.23779,0.24553,0.25022,0.26239,0.28802,0.29973,0.31532,0.34011,0.3623,0.36637,0.41129,0.41737,0.4196,0.4305,0.43487,0.4703,0.48578,0.49029,0.49074,0.50023,0.5131,0.51908,0.52175,0.56892,0.56898,0.6118,0.66056,0.70488,0.7446,0.76134,0.76568,0.77573,0.7844,0.80442,0.80659,0.84312,0.85191,0.86892,0.88889,0.90032,0.90158,0.91044,0.91618,0.92956,0.94749,0.94905,0.95605,0.9661,0.97335,0.97366,0.99195,0.99395,0.99481,0.99671,0.99753,0.99858,0.99966,0.99988,1,0.9997,0.99842,0.99628,0.99601,0.99206,0.98874,0.98536,0.97605,0.97109,0.96917,0.96191,0.96144,0.95802,0.95646,0.93348,0.92689,0.92426,0.91174,0.90411,0.90293,0.88403,0.8442,0.83155,0.8249,0.80908,0.8077,0.78938,0.78735,0.76299,0.74836,0.71841,0.71567,0.71309,0.71165,0.70693,0.70307,0.7007,0.67568,0.67041,0.62011,0.60321,0.59202,0.58759,0.55099,0.55036,0.53838,0.5328,0.50497,0.5041,0.50203,0.48164,0.47604,0.47406,0.46805,0.46032,0.45305,0.4493,0.41305,0.4118,0.39338,0.3665,0.34209,0.30969,0.30924,0.29819,0.28462,0.26729,0.2671,0.26127,0.23491,0.22906,0.22842,0.20025,0.19441,0.1911,0.18115,0.17166,0.15515,0.15267,0.14114,0.11772,0.11743,0.11566,0.1121,0.10937,0.10608,0.10229,0.071986,0.065387,0.056247,0.050166,0.049881,0.04923,0.041332,0.039652,0.039516,0.033252,0.024606,0.024367,0.022244,0.021826,0.017625,0.016585,0.014502,0.01351,0.012485,0.012294,0.011183,0.010996,0.010909,0.0087621,0.0081986,0.0079714,0.007272,0.0070634,0.006175,0.0059872,0.0056248,0.004807,0.0047998,0.0044473,0.0043337,0.0043335,0.0036548,0.0036351,0.0033861,0.0031403,0.0026602,0.0022864,0.0020485,0.0017169,0.001455,0.0011703,0.0011599,0.00097874,0.00082967,0.00075202,0.00057621,0.00053246,0.00045302,0.0004114,0.00033583,0.00032865,0.00031431,0.00028338,0.00022768,0.0001813,0.00016049,0.000142,0.00013316,0.00013196,0.00011738,0.00010243,6.7162e-05,5.9932e-05,5.6273e-05,4.8931e-05,4.8884e-05,4.2558e-05,4.1827e-05,3.8052e-05,3.5257e-05,2.7215e-05,2.6208e-05,2.1359e-05,1.7626e-05,9.3054e-06,8.237e-06,7.7642e-06,6.6452e-06,5.7372e-06,5.4245e-06,4.8481e-06,4.4709e-06,4.0421e-06,3.4189e-06,3.4158e-06,2.5207e-06,2.3239e-06,2.2848e-06,2.2642e-06,1.6551e-06,1.6433e-06,1.5918e-06,1.5541e-06,1.4604e-06,1.317e-06,1.2001e-06,7.9146e-07,3.198e-07,2.4296e-07,2.371e-07,2.3236e-07,2.1764e-07,2.0985e-07,1.4813e-07,1.1751e-07,9.9175e-08,9.0158e-08,7.3817e-08,6.2218e-08,6.0265e-08,4.7319e-08,4.1234e-08,3.4828e-08,2.6506e-08,1.8439e-08,1.8014e-08,1.5918e-08,1.4604e-08,1.4049e-08,9.2676e-09,8.2636e-09,4.8833e-09,4.2152e-09,3.2486e-09,2.8238e-09,2.6982e-09,2.1038e-09,2.037e-09,1.898e-09,1.6257e-09,1.208e-09 1,1.2378e-13,1.8082e-13,1.8428e-13,2.0651e-13,2.254e-13,2.5281e-13,3.1572e-13,5.3382e-13,7.4365e-13,7.824e-13,1.0169e-12,1.0613e-12,1.2572e-12,1.8944e-12,2.1531e-12,2.3531e-12,3.4516e-12,3.6854e-12,3.9628e-12,5.0535e-12,5.1869e-12,5.2652e-12,6.332e-12,7.0586e-12,7.0836e-12,8.7203e-12,8.8865e-12,9.7585e-12,9.8794e-12,9.9984e-12,1.8797e-11,3.4105e-11,3.5979e-11,4.2816e-11,4.9982e-11,5.6343e-11,6.4926e-11,7.6521e-11,1.0204e-10,1.1946e-10,1.542e-10,2.1215e-10,2.1846e-10,2.3251e-10,2.4628e-10,3.3185e-10,3.32e-10,6.7105e-10,7.067e-10,7.2728e-10,8.9576e-10,9.0957e-10,1.365e-09,1.5994e-09,1.7081e-09,1.9726e-09,2.1611e-09,2.5261e-09,2.6511e-09,3.8357e-09,4.8094e-09,9.7084e-09,1.1746e-08,1.2515e-08,1.4018e-08,1.9104e-08,2.035e-08,2.1521e-08,2.7956e-08,3.5666e-08,3.9014e-08,4.1981e-08,5.4687e-08,7.9812e-08,1.1833e-07,1.5386e-07,1.6252e-07,2.6394e-07,3.1159e-07,3.3657e-07,3.4826e-07,3.998e-07,7.0106e-07,7.1374e-07,7.8633e-07,9.1638e-07,9.4424e-07,1.1729e-06,2.1139e-06,2.1302e-06,2.5093e-06,2.6606e-06,5.1407e-06,6.0505e-06,6.1232e-06,7.0758e-06,8.5944e-06,8.6273e-06,8.7635e-06,9.8456e-06,9.8559e-06,1.0948e-05,1.14e-05,2.0185e-05,2.5815e-05,2.603e-05,3.4293e-05,3.6898e-05,4.1304e-05,4.3623e-05,4.5049e-05,4.6677e-05,4.722e-05,4.8698e-05,5.5109e-05,5.5905e-05,5.7579e-05,5.8988e-05,7.0712e-05,8.6613e-05,0.00011206,0.00012336,0.00015088,0.0001884,0.00020667,0.00021674,0.00036329,0.00038523,0.00040215,0.00043775,0.00048727,0.00053435,0.00057566,0.00058332,0.00058817,0.00064559,0.0008223,0.00083692,0.00091934,0.001062,0.0011493,0.0011641,0.0018111,0.0018194,0.0019819,0.0023385,0.0024094,0.0026915,0.0027623,0.0033076,0.0037142,0.0048121,0.0048417,0.0064581,0.0066705,0.0067395,0.0080828,0.0081758,0.0087213,0.0094891,0.0097409,0.0099353,0.010735,0.010873,0.010964,0.011651,0.011901,0.011967,0.01258,0.012807,0.014131,0.016592,0.017068,0.017197,0.018453,0.018995,0.021345,0.026076,0.027713,0.030482,0.031558,0.034714,0.038112,0.038401,0.038627,0.038653,0.03972,0.039811,0.04332,0.045015,0.04835,0.048503,0.049441,0.055817,0.056013,0.059286,0.063196,0.070696,0.071733,0.074762,0.075454,0.077224,0.080266,0.08511,0.085245,0.097095,0.11209,0.11378,0.11568,0.11627,0.12638,0.13292,0.15691,0.15825,0.16097,0.16563,0.18379,0.20413,0.22805,0.23558,0.24015,0.252,0.27701,0.28845,0.3037,0.32799,0.34976,0.35376,0.39794,0.40394,0.40614,0.41689,0.4212,0.45622,0.47154,0.476,0.47646,0.48586,0.49862,0.50456,0.50722,0.55414,0.5542,0.59693,0.64579,0.69037,0.7305,0.74746,0.75186,0.76207,0.77089,0.79128,0.79349,0.83088,0.83991,0.85744,0.87811,0.89,0.89131,0.90056,0.90656,0.92061,0.93961,0.94127,0.94877,0.95962,0.96753,0.96788,0.98857,0.99097,0.99202,0.99443,0.99551,0.99698,0.99872,0.99921,0.9997,1,0.9995,0.99809,0.99789,0.99484,0.9921,0.98922,0.98104,0.97657,0.97484,0.96821,0.96778,0.96463,0.96319,0.94172,0.93551,0.93301,0.92112,0.91385,0.91272,0.89459,0.85608,0.84377,0.83729,0.82185,0.8205,0.80256,0.80057,0.77664,0.76223,0.73266,0.72995,0.7274,0.72597,0.72129,0.71746,0.71513,0.6903,0.68506,0.63496,0.61808,0.60688,0.60245,0.56577,0.56513,0.5531,0.54749,0.51949,0.51861,0.51653,0.49597,0.49033,0.48833,0.48225,0.47445,0.4671,0.4633,0.42661,0.42534,0.40666,0.37934,0.35449,0.32143,0.32098,0.30969,0.29581,0.27807,0.27787,0.27189,0.24485,0.23883,0.23817,0.20919,0.20317,0.19975,0.18949,0.17969,0.16262,0.16006,0.14811,0.12381,0.1235,0.12166,0.11796,0.11512,0.1117,0.10776,0.076127,0.069218,0.059636,0.05325,0.052951,0.052267,0.043957,0.042188,0.042043,0.035438,0.026296,0.026042,0.023793,0.02335,0.018891,0.017785,0.015569,0.014513,0.013421,0.013217,0.012032,0.011833,0.011739,0.0094459,0.008843,0.0085999,0.007851,0.0076275,0.0066752,0.0064736,0.0060847,0.0052063,0.0051985,0.0048194,0.0046973,0.0046971,0.0039664,0.0039451,0.0036768,0.0034118,0.0028936,0.0024896,0.0022324,0.0018732,0.0015893,0.0012803,0.001269,0.0010719,0.00090965,0.00082503,0.00063324,0.00058544,0.00049861,0.00045308,0.00037031,0.00036244,0.00034672,0.0003128,0.00025164,0.00020065,0.00017776,0.00015738,0.00014765,0.00014632,0.00013024,0.00011374,7.4758e-05,6.6753e-05,6.2699e-05,5.4561e-05,5.4508e-05,4.749e-05,4.668e-05,4.2488e-05,3.9384e-05,3.0443e-05,2.9323e-05,2.3923e-05,1.9762e-05,1.0468e-05,9.2714e-06,8.7418e-06,7.4878e-06,6.4695e-06,6.1185e-06,5.4715e-06,5.0478e-06,4.5659e-06,3.8651e-06,3.8616e-06,2.8539e-06,2.6321e-06,2.588e-06,2.5648e-06,1.8776e-06,1.8643e-06,1.8062e-06,1.7636e-06,1.6578e-06,1.4957e-06,1.3635e-06,9.01e-07,3.6557e-07,2.7807e-07,2.7139e-07,2.6599e-07,2.4922e-07,2.4033e-07,1.6991e-07,1.3492e-07,1.1395e-07,1.0364e-07,8.4924e-08,7.1632e-08,6.9393e-08,5.4542e-08,4.7555e-08,4.0196e-08,3.0626e-08,2.1337e-08,2.0847e-08,1.8431e-08,1.6916e-08,1.6275e-08,1.0754e-08,9.5937e-09,5.6812e-09,4.9068e-09,3.7855e-09,3.2923e-09,3.1464e-09,2.4556e-09,2.378e-09,2.2163e-09,1.8995e-09,1.4131e-09 1,9.69e-14,1.4178e-13,1.445e-13,1.6201e-13,1.7689e-13,1.9851e-13,2.4813e-13,4.2046e-13,5.8655e-13,6.1725e-13,8.0318e-13,8.3836e-13,9.9382e-13,1.5002e-12,1.706e-12,1.8652e-12,2.7405e-12,2.9269e-12,3.1483e-12,4.019e-12,4.1256e-12,4.1882e-12,5.0408e-12,5.622e-12,5.642e-12,6.9519e-12,7.0851e-12,7.7836e-12,7.8804e-12,7.9757e-12,1.5037e-11,2.7356e-11,2.8867e-11,3.4379e-11,4.0162e-11,4.5299e-11,5.2233e-11,6.1608e-11,8.2262e-11,9.6383e-11,1.2455e-10,1.7162e-10,1.7675e-10,1.8818e-10,1.9938e-10,2.6903e-10,2.6915e-10,5.4588e-10,5.7502e-10,5.9186e-10,7.2971e-10,7.4101e-10,1.1143e-09,1.3066e-09,1.3959e-09,1.6133e-09,1.7682e-09,2.0685e-09,2.1714e-09,3.1475e-09,3.951e-09,8.0045e-09,9.6938e-09,1.0333e-08,1.158e-08,1.5808e-08,1.6844e-08,1.7818e-08,2.3179e-08,2.961e-08,3.2406e-08,3.4884e-08,4.5508e-08,6.6554e-08,9.8889e-08,1.2877e-07,1.3607e-07,2.2159e-07,2.6184e-07,2.8296e-07,2.9285e-07,3.3646e-07,5.9194e-07,6.0271e-07,6.644e-07,7.7499e-07,7.9869e-07,9.9345e-07,1.7969e-06,1.8108e-06,2.1353e-06,2.2649e-06,4.3943e-06,5.1775e-06,5.2401e-06,6.061e-06,7.3711e-06,7.3995e-06,7.5171e-06,8.4518e-06,8.4607e-06,9.4045e-06,9.7959e-06,1.7411e-05,2.2305e-05,2.2492e-05,2.9688e-05,3.196e-05,3.5805e-05,3.783e-05,3.9075e-05,4.0498e-05,4.0972e-05,4.2264e-05,4.787e-05,4.8566e-05,5.0031e-05,5.1264e-05,6.1533e-05,7.5483e-05,9.7845e-05,0.00010779,0.00013204,0.00016514,0.00018129,0.00019019,0.00032008,0.00033958,0.00035461,0.00038627,0.00043034,0.00047227,0.00050909,0.00051592,0.00052024,0.00057147,0.00072936,0.00074245,0.0008162,0.00094402,0.0010223,0.0010356,0.0016174,0.0016249,0.0017714,0.0020932,0.0021573,0.0024123,0.0024764,0.0029702,0.003339,0.0043367,0.0043636,0.005837,0.0060309,0.0060939,0.0073219,0.0074071,0.0079065,0.00861,0.008841,0.0090193,0.0097535,0.0098801,0.0099634,0.010595,0.010824,0.010885,0.011448,0.011657,0.012876,0.015146,0.015585,0.015704,0.016864,0.017365,0.019539,0.023925,0.025445,0.02802,0.029021,0.03196,0.035129,0.035399,0.03561,0.035634,0.03663,0.036715,0.039994,0.041579,0.0447,0.044843,0.045722,0.0517,0.051884,0.054957,0.058632,0.06569,0.066667,0.069522,0.070174,0.071844,0.074715,0.079289,0.079417,0.090627,0.10485,0.10646,0.10826,0.10882,0.11843,0.12466,0.14755,0.14883,0.15143,0.15589,0.17329,0.19282,0.21585,0.22311,0.22752,0.23896,0.26316,0.27426,0.28905,0.31267,0.33389,0.33779,0.381,0.38687,0.38903,0.39958,0.40381,0.43824,0.45335,0.45775,0.45819,0.46748,0.48008,0.48596,0.48859,0.53511,0.53517,0.57774,0.62662,0.67145,0.71202,0.72924,0.73371,0.7441,0.75309,0.77392,0.77618,0.8146,0.82392,0.84208,0.8636,0.87605,0.87743,0.88714,0.89347,0.90837,0.92869,0.93048,0.9386,0.95045,0.9592,0.95959,0.98334,0.98626,0.98756,0.99061,0.99202,0.99402,0.99661,0.99745,0.99842,0.9995,1,0.99954,0.99945,0.99755,0.99557,0.99334,0.98665,0.98284,0.98135,0.97555,0.97517,0.97238,0.9711,0.95164,0.94592,0.94361,0.93256,0.92575,0.9247,0.90761,0.87089,0.85906,0.85282,0.8379,0.83659,0.8192,0.81726,0.79394,0.77984,0.75082,0.74816,0.74564,0.74424,0.73963,0.73586,0.73356,0.70903,0.70385,0.6541,0.63727,0.6261,0.62167,0.58494,0.58429,0.57222,0.56658,0.53841,0.53752,0.53542,0.51468,0.50897,0.50695,0.50081,0.49292,0.48548,0.48164,0.4444,0.44311,0.4241,0.39625,0.37086,0.33698,0.33651,0.32492,0.31065,0.29238,0.29218,0.28601,0.25809,0.25186,0.25118,0.22114,0.21488,0.21134,0.20066,0.19046,0.17266,0.16998,0.15749,0.13203,0.13171,0.12977,0.12589,0.1229,0.1193,0.11515,0.081762,0.07444,0.064264,0.057468,0.05715,0.056421,0.047556,0.045666,0.045512,0.038443,0.028628,0.028355,0.025934,0.025456,0.020645,0.01945,0.017051,0.015907,0.014722,0.0145,0.013214,0.012998,0.012896,0.0104,0.0097432,0.009478,0.0086607,0.0084166,0.0073757,0.0071552,0.0067295,0.0057668,0.0057583,0.0053423,0.0052082,0.005208,0.004405,0.0043815,0.0040863,0.0037944,0.0032231,0.002777,0.0024925,0.0020948,0.0017799,0.0014365,0.0014239,0.0012046,0.0010237,0.0009292,0.00071476,0.00066124,0.0005639,0.00051281,0.00041981,0.00041096,0.00039327,0.00035508,0.00028615,0.00022856,0.00020267,0.00017961,0.00016858,0.00016708,0.00014885,0.00013012,8.5788e-05,7.6664e-05,7.2041e-05,6.2753e-05,6.2693e-05,5.4675e-05,5.3748e-05,4.8955e-05,4.5402e-05,3.5159e-05,3.3873e-05,2.7675e-05,2.2891e-05,1.2177e-05,1.0794e-05,1.0181e-05,8.7295e-06,7.5495e-06,7.1426e-06,6.3918e-06,5.8999e-06,5.3401e-06,4.5253e-06,4.5212e-06,3.3478e-06,3.0892e-06,3.0377e-06,3.0106e-06,2.2083e-06,2.1927e-06,2.1248e-06,2.075e-06,1.9512e-06,1.7616e-06,1.6068e-06,1.0644e-06,4.3418e-07,3.3078e-07,3.2288e-07,3.165e-07,2.9665e-07,2.8614e-07,2.0269e-07,1.6116e-07,1.3625e-07,1.2397e-07,1.017e-07,8.5866e-08,8.3197e-08,6.5479e-08,5.7134e-08,4.8336e-08,3.6883e-08,2.5745e-08,2.5158e-08,2.2256e-08,2.0436e-08,1.9666e-08,1.3023e-08,1.1625e-08,6.9027e-09,5.9663e-09,4.6089e-09,4.0113e-09,3.8344e-09,2.9964e-09,2.9021e-09,2.7057e-09,2.3208e-09,1.729e-09 1,7.6669e-14,1.1235e-13,1.1451e-13,1.2845e-13,1.4029e-13,1.5751e-13,1.9705e-13,3.3461e-13,4.6742e-13,4.9198e-13,6.4085e-13,6.6904e-13,7.9365e-13,1.2e-12,1.3654e-12,1.4933e-12,2.1976e-12,2.3478e-12,2.5261e-12,3.228e-12,3.314e-12,3.3645e-12,4.0526e-12,4.5219e-12,4.538e-12,5.5966e-12,5.7042e-12,6.269e-12,6.3474e-12,6.4244e-12,1.2145e-11,2.2152e-11,2.3381e-11,2.7866e-11,3.2576e-11,3.6762e-11,4.2416e-11,5.0065e-11,6.6934e-11,7.8479e-11,1.0153e-10,1.4011e-10,1.4431e-10,1.5368e-10,1.6287e-10,2.2007e-10,2.2017e-10,4.4799e-10,4.7202e-10,4.859e-10,5.9965e-10,6.0899e-10,9.1748e-10,1.0767e-09,1.1506e-09,1.3307e-09,1.4591e-09,1.7082e-09,1.7936e-09,2.6045e-09,3.273e-09,6.6539e-09,8.0658e-09,8.6e-09,9.6436e-09,1.3185e-08,1.4054e-08,1.4871e-08,1.9371e-08,2.4776e-08,2.7128e-08,2.9214e-08,3.8163e-08,5.5924e-08,8.3268e-08,1.0858e-07,1.1477e-07,1.874e-07,2.2164e-07,2.3962e-07,2.4804e-07,2.852e-07,5.0334e-07,5.1255e-07,5.6532e-07,6.6e-07,6.803e-07,8.4725e-07,1.5377e-06,1.5497e-06,1.8292e-06,1.9409e-06,3.7807e-06,4.4589e-06,4.5132e-06,5.2249e-06,6.3619e-06,6.3866e-06,6.4888e-06,7.3009e-06,7.3086e-06,8.1293e-06,8.4698e-06,1.5109e-05,1.9388e-05,1.9551e-05,2.5853e-05,2.7846e-05,3.1219e-05,3.2996e-05,3.409e-05,3.534e-05,3.5756e-05,3.6892e-05,4.182e-05,4.2433e-05,4.3721e-05,4.4806e-05,5.3849e-05,6.6149e-05,8.5902e-05,9.4693e-05,0.00011616,0.00014553,0.00015987,0.00016777,0.00028344,0.00030084,0.00031426,0.00034254,0.00038194,0.00041945,0.00045242,0.00045853,0.0004624,0.00050831,0.00064999,0.00066175,0.00072804,0.00084304,0.00091352,0.00092547,0.0014508,0.0014576,0.0015901,0.0018817,0.0019398,0.0021713,0.0022294,0.0026783,0.003014,0.0039239,0.0039484,0.0052959,0.0054735,0.0055312,0.0066575,0.0067357,0.0071944,0.0078411,0.0080535,0.0082175,0.0088933,0.0090099,0.0090866,0.0096684,0.0098798,0.0099356,0.010455,0.010648,0.011773,0.013872,0.014278,0.014388,0.015463,0.015927,0.017944,0.022021,0.023436,0.025835,0.026769,0.029512,0.032474,0.032727,0.032924,0.032947,0.033878,0.033958,0.037028,0.038513,0.04144,0.041575,0.042399,0.048015,0.048188,0.051078,0.054539,0.061193,0.062115,0.064811,0.065427,0.067005,0.069718,0.074045,0.074166,0.084787,0.098293,0.099821,0.10153,0.10207,0.11122,0.11715,0.13903,0.14025,0.14274,0.14701,0.16369,0.18246,0.20464,0.21165,0.2159,0.22696,0.25038,0.26114,0.2755,0.29847,0.31914,0.32295,0.36518,0.37094,0.37305,0.38339,0.38754,0.42138,0.43625,0.44059,0.44103,0.45019,0.46263,0.46844,0.47103,0.51711,0.51717,0.5595,0.60831,0.6533,0.69421,0.71163,0.71616,0.72669,0.73582,0.75703,0.75933,0.79864,0.80822,0.82693,0.84921,0.86215,0.86359,0.87373,0.88036,0.89601,0.91755,0.91946,0.92814,0.94091,0.95044,0.95087,0.97746,0.98087,0.9824,0.98606,0.98779,0.99029,0.99368,0.99485,0.99628,0.99809,0.99954,1,1,0.99921,0.99795,0.99636,0.99109,0.98793,0.98666,0.98168,0.98135,0.97891,0.97778,0.96029,0.95505,0.95294,0.94271,0.93637,0.93538,0.91934,0.88443,0.87308,0.86708,0.85269,0.85143,0.83458,0.8327,0.81002,0.79626,0.76783,0.76521,0.76274,0.76136,0.75684,0.75313,0.75086,0.72667,0.72156,0.67225,0.6555,0.64436,0.63995,0.60324,0.6026,0.5905,0.58485,0.55655,0.55565,0.55355,0.53266,0.52691,0.52487,0.51868,0.51071,0.5032,0.49931,0.46161,0.4603,0.44101,0.41268,0.38679,0.35217,0.35169,0.33981,0.32518,0.30641,0.30621,0.29987,0.27111,0.26469,0.26399,0.23294,0.22646,0.22279,0.21172,0.20114,0.18262,0.17984,0.16683,0.14023,0.1399,0.13787,0.13381,0.13068,0.1269,0.12256,0.087437,0.079706,0.068943,0.061741,0.061402,0.060629,0.051212,0.049201,0.049037,0.041504,0.031013,0.030721,0.028126,0.027613,0.022446,0.02116,0.018577,0.017343,0.016064,0.015825,0.014434,0.014201,0.014091,0.011389,0.010676,0.010388,0.0095009,0.0092357,0.0081038,0.0078638,0.0074003,0.0063509,0.0063417,0.0058877,0.0057412,0.005741,0.0048633,0.0048377,0.0045146,0.004195,0.0035685,0.0030786,0.0027659,0.0023281,0.0019808,0.0016016,0.0015877,0.001345,0.0011445,0.0010397,0.00080143,0.00074188,0.00063346,0.00057649,0.00047267,0.00046278,0.00044302,0.00040031,0.00032312,0.00025852,0.00022944,0.00020351,0.0001911,0.00018941,0.00016888,0.00014778,9.7717e-05,8.7393e-05,8.2158e-05,7.1633e-05,7.1565e-05,6.2471e-05,6.142e-05,5.5978e-05,5.1942e-05,4.0292e-05,3.8828e-05,3.1765e-05,2.6307e-05,1.4051e-05,1.2465e-05,1.1762e-05,1.0094e-05,8.7378e-06,8.2696e-06,7.4055e-06,6.839e-06,6.1938e-06,5.254e-06,5.2494e-06,3.894e-06,3.595e-06,3.5354e-06,3.5041e-06,2.575e-06,2.5569e-06,2.4782e-06,2.4205e-06,2.2769e-06,2.0569e-06,1.8771e-06,1.2465e-06,5.1103e-07,3.8991e-07,3.8066e-07,3.7317e-07,3.4989e-07,3.3756e-07,2.3957e-07,1.9071e-07,1.6138e-07,1.4692e-07,1.2065e-07,1.0196e-07,9.8805e-08,7.7861e-08,6.7986e-08,5.7568e-08,4.3988e-08,3.0762e-08,3.0064e-08,2.6613e-08,2.4447e-08,2.3531e-08,1.5615e-08,1.3946e-08,8.3024e-09,7.1812e-09,5.5544e-09,4.8375e-09,4.6251e-09,3.6186e-09,3.5053e-09,3.2692e-09,2.8062e-09,2.0936e-09 1,7.4869e-14,1.0973e-13,1.1184e-13,1.2545e-13,1.3703e-13,1.5385e-13,1.925e-13,3.2695e-13,4.5677e-13,4.8078e-13,6.2633e-13,6.5389e-13,7.7574e-13,1.1731e-12,1.3349e-12,1.46e-12,2.1489e-12,2.2958e-12,2.4702e-12,3.157e-12,3.2411e-12,3.2905e-12,3.9638e-12,4.423e-12,4.4388e-12,5.4747e-12,5.58e-12,6.1328e-12,6.2095e-12,6.2849e-12,1.1885e-11,2.1682e-11,2.2886e-11,2.7278e-11,3.189e-11,3.599e-11,4.1529e-11,4.9021e-11,6.5547e-11,7.6858e-11,9.9447e-11,1.3725e-10,1.4137e-10,1.5056e-10,1.5956e-10,2.1563e-10,2.1573e-10,4.3909e-10,4.6265e-10,4.7626e-10,5.8782e-10,5.9697e-10,8.9956e-10,1.0557e-09,1.1283e-09,1.3049e-09,1.4309e-09,1.6753e-09,1.7591e-09,2.5549e-09,3.211e-09,6.5302e-09,7.9166e-09,8.4412e-09,9.4661e-09,1.2944e-08,1.3798e-08,1.4601e-08,1.9021e-08,2.4332e-08,2.6643e-08,2.8692e-08,3.7487e-08,5.4944e-08,8.1826e-08,1.0672e-07,1.128e-07,1.8424e-07,2.1792e-07,2.3561e-07,2.4389e-07,2.8045e-07,4.9512e-07,5.0418e-07,5.5612e-07,6.4931e-07,6.693e-07,8.3365e-07,1.5136e-06,1.5254e-06,1.8006e-06,1.9106e-06,3.7233e-06,4.3917e-06,4.4452e-06,5.1466e-06,6.2675e-06,6.2918e-06,6.3925e-06,7.1931e-06,7.2007e-06,8.0098e-06,8.3455e-06,1.4893e-05,1.9113e-05,1.9274e-05,2.5492e-05,2.7458e-05,3.0787e-05,3.2541e-05,3.362e-05,3.4854e-05,3.5265e-05,3.6385e-05,4.125e-05,4.1854e-05,4.3126e-05,4.4197e-05,5.3123e-05,6.5267e-05,8.4772e-05,9.3454e-05,0.00011466,0.00014367,0.00015783,0.00016565,0.00027996,0.00029716,0.00031042,0.00033838,0.00037733,0.00041442,0.00044702,0.00045306,0.00045689,0.00050229,0.00064242,0.00065405,0.00071962,0.00083339,0.00090312,0.00091495,0.0014348,0.0014416,0.0015728,0.0018615,0.001919,0.0021481,0.0022057,0.0026502,0.0029827,0.0038841,0.0039084,0.0052437,0.0054197,0.0054769,0.0065933,0.0066708,0.0071255,0.0077667,0.0079773,0.00814,0.0088101,0.0089257,0.0090017,0.0095787,0.0097884,0.0098438,0.010359,0.01055,0.011667,0.013748,0.014152,0.014261,0.015327,0.015788,0.017789,0.021835,0.02324,0.025622,0.026549,0.029273,0.032215,0.032466,0.032662,0.032684,0.033609,0.033689,0.036738,0.038213,0.041121,0.041255,0.042074,0.047655,0.047826,0.050699,0.054138,0.060752,0.061669,0.064348,0.064961,0.06653,0.069227,0.07353,0.07365,0.084213,0.097647,0.099167,0.10087,0.10141,0.11051,0.11641,0.13818,0.1394,0.14188,0.14613,0.16274,0.18143,0.20353,0.21051,0.21475,0.22577,0.24911,0.25983,0.27415,0.29705,0.31767,0.32147,0.3636,0.36934,0.37145,0.38177,0.38591,0.41969,0.43454,0.43887,0.43931,0.44845,0.46088,0.46668,0.46927,0.5153,0.51536,0.55765,0.60646,0.65146,0.69239,0.70983,0.71437,0.72492,0.73406,0.7553,0.75761,0.797,0.8066,0.82537,0.84772,0.86071,0.86216,0.87234,0.879,0.89473,0.91638,0.91831,0.92704,0.93991,0.94951,0.94994,0.97682,0.98027,0.98183,0.98555,0.98731,0.98986,0.99334,0.99454,0.99601,0.99789,0.99945,1,1,0.99932,0.99814,0.99662,0.99149,0.98839,0.98715,0.98225,0.98193,0.97952,0.97841,0.96113,0.95593,0.95384,0.9437,0.93741,0.93642,0.92049,0.88576,0.87447,0.86849,0.85416,0.8529,0.83612,0.83424,0.81162,0.7979,0.76954,0.76692,0.76446,0.76308,0.75856,0.75486,0.75259,0.72845,0.72334,0.67408,0.65734,0.64621,0.6418,0.60509,0.60445,0.59235,0.5867,0.55839,0.5575,0.55539,0.53449,0.52873,0.5267,0.5205,0.51252,0.505,0.50111,0.46336,0.46205,0.44273,0.41436,0.38842,0.35372,0.35324,0.34134,0.32667,0.30786,0.30765,0.30129,0.27245,0.26601,0.26531,0.23416,0.22766,0.22397,0.21287,0.20224,0.18366,0.18086,0.1678,0.14108,0.14075,0.13872,0.13463,0.13149,0.1277,0.12333,0.088028,0.080256,0.069432,0.062187,0.061847,0.061069,0.051595,0.049571,0.049406,0.041825,0.031264,0.03097,0.028356,0.027841,0.022636,0.021341,0.018738,0.017494,0.016206,0.015964,0.014563,0.014328,0.014217,0.011493,0.010775,0.010485,0.0095899,0.0093225,0.008181,0.007939,0.0074715,0.006413,0.0064037,0.0059456,0.0057979,0.0057977,0.0049121,0.0048862,0.0045602,0.0042376,0.0036053,0.0031108,0.0027951,0.002353,0.0020023,0.0016192,0.0016052,0.00136,0.0011574,0.0010515,0.00081074,0.00075054,0.00064094,0.00058334,0.00047836,0.00046836,0.00044837,0.00040518,0.0003271,0.00026176,0.00023233,0.00020609,0.00019354,0.00019183,0.00017105,0.00014969,9.9009e-05,8.8555e-05,8.3255e-05,7.2596e-05,7.2528e-05,6.3317e-05,6.2252e-05,5.674e-05,5.2652e-05,4.085e-05,3.9367e-05,3.221e-05,2.6679e-05,1.4255e-05,1.2647e-05,1.1934e-05,1.0243e-05,8.8677e-06,8.3928e-06,7.5163e-06,6.9417e-06,6.2872e-06,5.3338e-06,5.3291e-06,3.9539e-06,3.6504e-06,3.59e-06,3.5582e-06,2.6152e-06,2.5969e-06,2.517e-06,2.4584e-06,2.3127e-06,2.0893e-06,1.9068e-06,1.2665e-06,5.1951e-07,3.9644e-07,3.8704e-07,3.7943e-07,3.5577e-07,3.4324e-07,2.4365e-07,1.9398e-07,1.6416e-07,1.4946e-07,1.2275e-07,1.0374e-07,1.0054e-07,7.9235e-08,6.9191e-08,5.8593e-08,4.4778e-08,3.132e-08,3.0609e-08,2.7098e-08,2.4893e-08,2.3961e-08,1.5904e-08,1.4205e-08,8.4587e-09,7.3169e-09,5.6601e-09,4.9298e-09,4.7136e-09,3.6883e-09,3.5728e-09,3.3323e-09,2.8605e-09,2.1344e-09 1,5.6195e-14,8.2509e-14,8.4107e-14,9.4395e-14,1.0315e-13,1.1587e-13,1.4514e-13,2.4714e-13,3.4584e-13,3.6411e-13,4.7496e-13,4.9596e-13,5.8887e-13,8.9236e-13,1.016e-12,1.1118e-12,1.6396e-12,1.7522e-12,1.886e-12,2.4134e-12,2.478e-12,2.516e-12,3.0336e-12,3.387e-12,3.3991e-12,4.1969e-12,4.278e-12,4.7041e-12,4.7632e-12,4.8214e-12,9.1471e-12,1.6741e-11,1.7675e-11,2.1087e-11,2.4672e-11,2.7862e-11,3.2174e-11,3.8012e-11,5.0906e-11,5.9742e-11,7.7408e-11,1.0702e-10,1.1025e-10,1.1746e-10,1.2452e-10,1.6855e-10,1.6863e-10,3.4459e-10,3.6319e-10,3.7393e-10,4.6207e-10,4.6931e-10,7.0883e-10,8.3266e-10,8.902e-10,1.0304e-09,1.1305e-09,1.3248e-09,1.3915e-09,2.0254e-09,2.5489e-09,5.2056e-09,6.3181e-09,6.7394e-09,7.5629e-09,1.0362e-08,1.1049e-08,1.1696e-08,1.5262e-08,1.9553e-08,2.1422e-08,2.308e-08,3.0206e-08,4.4379e-08,6.6261e-08,8.6567e-08,9.1535e-08,1.4998e-07,1.776e-07,1.9212e-07,1.9892e-07,2.2895e-07,4.0575e-07,4.1323e-07,4.5611e-07,5.3311e-07,5.4963e-07,6.8564e-07,1.2501e-06,1.2599e-06,1.489e-06,1.5807e-06,3.0952e-06,3.6553e-06,3.7002e-06,4.2887e-06,5.2304e-06,5.2509e-06,5.3355e-06,6.0091e-06,6.0155e-06,6.6968e-06,6.9797e-06,1.2512e-05,1.6088e-05,1.6225e-05,2.1507e-05,2.3179e-05,2.6013e-05,2.7508e-05,2.8428e-05,2.9479e-05,2.983e-05,3.0785e-05,3.4937e-05,3.5453e-05,3.6539e-05,3.7454e-05,4.5087e-05,5.5489e-05,7.2231e-05,7.9695e-05,9.7952e-05,0.00012297,0.00013521,0.00014196,0.00024106,0.00025601,0.00026754,0.00029187,0.00032579,0.00035813,0.00038658,0.00039185,0.0003952,0.00043485,0.00055747,0.00056766,0.00062515,0.00072502,0.0007863,0.0007967,0.001255,0.001261,0.001377,0.0016325,0.0016835,0.0018868,0.0019379,0.002333,0.002629,0.0034334,0.0034552,0.0046508,0.0048087,0.0048601,0.0058633,0.005933,0.0063423,0.00692,0.0071099,0.0072566,0.0078614,0.0079658,0.0080345,0.0085559,0.0087454,0.0087955,0.0092618,0.0094348,0.010446,0.012335,0.012702,0.012801,0.013771,0.01419,0.016013,0.019708,0.020994,0.023176,0.024026,0.026527,0.029232,0.029463,0.029643,0.029664,0.030515,0.030588,0.033398,0.034759,0.037444,0.037567,0.038324,0.043488,0.043646,0.046308,0.049499,0.055645,0.056498,0.058992,0.059562,0.061024,0.063538,0.067552,0.067665,0.077538,0.090132,0.091559,0.093159,0.093662,0.10222,0.10778,0.12834,0.12949,0.13183,0.13586,0.15161,0.16939,0.19046,0.19713,0.20118,0.21173,0.23412,0.24443,0.25821,0.2803,0.30024,0.30392,0.34482,0.3504,0.35245,0.36251,0.36655,0.39954,0.41409,0.41833,0.41876,0.42773,0.43994,0.44564,0.44818,0.49358,0.49363,0.53554,0.58414,0.62921,0.67043,0.68806,0.69265,0.70335,0.71263,0.73425,0.73661,0.77695,0.78684,0.80621,0.82941,0.84296,0.84447,0.85514,0.86213,0.87873,0.90178,0.90384,0.91323,0.92717,0.93769,0.93817,0.96841,0.97244,0.97428,0.97871,0.98086,0.98401,0.98845,0.99004,0.99206,0.99484,0.99755,0.99921,0.99932,1,0.99971,0.99896,0.9956,0.9933,0.99234,0.98845,0.98819,0.98621,0.9853,0.97048,0.9659,0.96404,0.95496,0.94925,0.94836,0.93375,0.90136,0.8907,0.88504,0.87141,0.87021,0.85416,0.85236,0.8306,0.81734,0.78978,0.78724,0.78484,0.78349,0.77908,0.77546,0.77325,0.7496,0.74459,0.69601,0.67943,0.66838,0.66399,0.62741,0.62677,0.61468,0.60902,0.58063,0.57974,0.57762,0.5566,0.5508,0.54874,0.54249,0.53444,0.52685,0.52292,0.48468,0.48335,0.46372,0.43482,0.40832,0.37275,0.37226,0.36003,0.34493,0.32554,0.32532,0.31876,0.28892,0.28224,0.28151,0.24915,0.24238,0.23854,0.22695,0.21585,0.1964,0.19347,0.17976,0.15164,0.15129,0.14915,0.14483,0.14152,0.1375,0.13288,0.095406,0.087116,0.075543,0.067778,0.067413,0.066579,0.056395,0.054216,0.054038,0.045859,0.034422,0.034103,0.031263,0.030702,0.025033,0.023619,0.020774,0.019413,0.018,0.017736,0.016198,0.015939,0.015818,0.012821,0.012029,0.011709,0.010722,0.010426,0.0091639,0.008896,0.0083782,0.007204,0.0071937,0.0066849,0.0065206,0.0065204,0.0055349,0.005506,0.0051426,0.0047828,0.0040764,0.0035229,0.003169,0.0026727,0.0022783,0.0018464,0.0018306,0.0015536,0.0013243,0.0012043,0.00093091,0.00086244,0.00073762,0.00067193,0.00055205,0.00054062,0.00051776,0.00046832,0.00037883,0.00030377,0.00026991,0.00023968,0.00022521,0.00022324,0.00019926,0.00017458,0.00011589,0.00010375,9.7592e-05,8.5197e-05,8.5117e-05,7.4393e-05,7.3152e-05,6.6726e-05,6.1957e-05,4.817e-05,4.6435e-05,3.8056e-05,3.1568e-05,1.6952e-05,1.5053e-05,1.4211e-05,1.2212e-05,1.0584e-05,1.0021e-05,8.9821e-06,8.3004e-06,7.5234e-06,6.3904e-06,6.3848e-06,4.7477e-06,4.3859e-06,4.3138e-06,4.2759e-06,3.1498e-06,3.1279e-06,3.0323e-06,2.9622e-06,2.7879e-06,2.5205e-06,2.3019e-06,1.5333e-06,6.3287e-07,4.8384e-07,4.7243e-07,4.6321e-07,4.3452e-07,4.1931e-07,2.9833e-07,2.3788e-07,2.0153e-07,1.836e-07,1.5099e-07,1.2774e-07,1.2382e-07,9.7735e-08,8.542e-08,7.2414e-08,5.5435e-08,3.8861e-08,3.7985e-08,3.3653e-08,3.0931e-08,2.978e-08,1.9816e-08,1.7711e-08,1.058e-08,9.1601e-09,7.0968e-09,6.1863e-09,5.9165e-09,4.6362e-09,4.4919e-09,4.1912e-09,3.6011e-09,2.6917e-09 1,4.6502e-14,6.8358e-14,6.9686e-14,7.8239e-14,8.5518e-14,9.6103e-14,1.2046e-13,2.0546e-13,2.8782e-13,3.0308e-13,3.9568e-13,4.1324e-13,4.9093e-13,7.4494e-13,8.4855e-13,9.2877e-13,1.3714e-12,1.466e-12,1.5783e-12,2.0213e-12,2.0756e-12,2.1075e-12,2.5426e-12,2.8398e-12,2.8501e-12,3.5214e-12,3.5898e-12,3.9486e-12,3.9983e-12,4.0473e-12,7.6952e-12,1.4112e-11,1.4903e-11,1.779e-11,2.0827e-11,2.3529e-11,2.7184e-11,3.2136e-11,4.3081e-11,5.0586e-11,6.5605e-11,9.0806e-11,9.3559e-11,9.9695e-11,1.0571e-10,1.4325e-10,1.4332e-10,2.9362e-10,3.0953e-10,3.1873e-10,3.9415e-10,4.0035e-10,6.056e-10,7.1183e-10,7.6121e-10,8.8161e-10,9.6759e-10,1.1346e-09,1.1919e-09,1.7373e-09,2.1883e-09,4.4815e-09,5.4434e-09,5.8079e-09,6.5205e-09,8.9446e-09,9.5405e-09,1.0101e-08,1.3195e-08,1.6922e-08,1.8547e-08,1.9989e-08,2.6188e-08,3.8538e-08,5.7637e-08,7.5385e-08,7.973e-08,1.3092e-07,1.5514e-07,1.6787e-07,1.7384e-07,2.0021e-07,3.5572e-07,3.6231e-07,4.0008e-07,4.6795e-07,4.8252e-07,6.0252e-07,1.1015e-06,1.1103e-06,1.3132e-06,1.3944e-06,2.7392e-06,3.2375e-06,3.2774e-06,3.8014e-06,4.6406e-06,4.6588e-06,4.7343e-06,5.3351e-06,5.3409e-06,5.9489e-06,6.2015e-06,1.1149e-05,1.4355e-05,1.4478e-05,1.9219e-05,2.0721e-05,2.3268e-05,2.4613e-05,2.544e-05,2.6386e-05,2.6702e-05,2.7562e-05,3.13e-05,3.1765e-05,3.2743e-05,3.3567e-05,4.0449e-05,4.9837e-05,6.4968e-05,7.172e-05,8.8253e-05,0.00011094,0.00012204,0.00012818,0.00021832,0.00023194,0.00024246,0.00026464,0.0002956,0.00032512,0.00035111,0.00035593,0.00035899,0.00039524,0.00050747,0.0005168,0.00056949,0.00066108,0.00071733,0.00072688,0.0011484,0.0011539,0.0012608,0.0014965,0.0015436,0.0017313,0.0017785,0.0021438,0.0024179,0.0031637,0.0031839,0.0042949,0.0044418,0.0044897,0.005424,0.005489,0.0058706,0.0064096,0.0065869,0.0067238,0.0072887,0.0073863,0.0074505,0.0079379,0.0081151,0.008162,0.0085981,0.0087601,0.0097068,0.011478,0.011821,0.011915,0.012825,0.013219,0.014932,0.018411,0.019622,0.021681,0.022483,0.024845,0.027403,0.027621,0.027791,0.027811,0.028617,0.028686,0.031347,0.032636,0.035181,0.035299,0.036016,0.040918,0.041069,0.043599,0.046633,0.052485,0.053297,0.055675,0.056219,0.057612,0.060011,0.063843,0.06395,0.073387,0.085446,0.086814,0.088349,0.088831,0.097045,0.10239,0.12216,0.12327,0.12553,0.12941,0.14461,0.16179,0.18219,0.18866,0.19259,0.20283,0.2246,0.23463,0.24806,0.26961,0.28909,0.29269,0.33275,0.33824,0.34025,0.35012,0.35409,0.38655,0.40087,0.40506,0.40548,0.41433,0.42638,0.43201,0.43452,0.47944,0.4795,0.5211,0.5695,0.61454,0.65588,0.67361,0.67823,0.68901,0.69837,0.72021,0.72259,0.76348,0.77353,0.79327,0.81699,0.83088,0.83242,0.84339,0.85059,0.86773,0.89165,0.8938,0.9036,0.91822,0.92931,0.92982,0.96221,0.9666,0.96862,0.97353,0.97591,0.97945,0.98452,0.98636,0.98874,0.9921,0.99557,0.99795,0.99814,0.99971,1,0.99977,0.99757,0.9958,0.99503,0.99181,0.99159,0.98991,0.98912,0.97596,0.9718,0.97009,0.96172,0.95642,0.95558,0.94188,0.91109,0.90087,0.89542,0.88229,0.88113,0.86559,0.86385,0.84269,0.82975,0.80279,0.80029,0.79794,0.79662,0.79229,0.78873,0.78656,0.76328,0.75833,0.71029,0.69384,0.68286,0.67849,0.64206,0.64142,0.62934,0.62369,0.5953,0.5944,0.59228,0.5712,0.56539,0.56332,0.55705,0.54896,0.54133,0.53737,0.49886,0.49752,0.47771,0.44848,0.42164,0.38553,0.38503,0.37259,0.35722,0.33746,0.33724,0.33054,0.30006,0.29323,0.29249,0.25933,0.25239,0.24844,0.23654,0.22513,0.20511,0.20209,0.18795,0.15889,0.15853,0.15631,0.15184,0.14841,0.14425,0.13946,0.10052,0.091873,0.079791,0.071672,0.07129,0.070417,0.059747,0.057461,0.057275,0.048685,0.036643,0.036306,0.03331,0.032718,0.026725,0.025229,0.022215,0.020771,0.019273,0.018992,0.017359,0.017084,0.016955,0.013767,0.012923,0.012582,0.011529,0.011214,0.0098663,0.0095801,0.0090266,0.0077707,0.0077596,0.0072149,0.0070389,0.0070387,0.0059822,0.0059513,0.0055613,0.005175,0.0044159,0.0038204,0.0034392,0.0029041,0.0024782,0.0020114,0.0019942,0.0016944,0.0014459,0.0013157,0.0010187,0.00094424,0.00080839,0.00073684,0.00060612,0.00059365,0.0005687,0.00051472,0.0004169,0.00033474,0.00029764,0.0002645,0.00024862,0.00024645,0.00022013,0.00019302,0.00012843,0.00011505,0.00010826,9.458e-05,9.4491e-05,8.2648e-05,8.1277e-05,7.4175e-05,6.8901e-05,5.3643e-05,5.1722e-05,4.2434e-05,3.5235e-05,1.8983e-05,1.6867e-05,1.5928e-05,1.3698e-05,1.188e-05,1.1252e-05,1.0091e-05,9.3285e-06,8.4595e-06,7.1913e-06,7.1851e-06,5.3505e-06,4.9447e-06,4.8638e-06,4.8212e-06,3.5568e-06,3.5322e-06,3.4248e-06,3.346e-06,3.1499e-06,2.8492e-06,2.6032e-06,1.7374e-06,7.2001e-07,5.5113e-07,5.382e-07,5.2773e-07,4.9519e-07,4.7794e-07,3.4056e-07,2.7182e-07,2.3046e-07,2.1003e-07,1.7287e-07,1.4636e-07,1.4189e-07,1.1211e-07,9.8039e-08,8.317e-08,6.374e-08,4.475e-08,4.3745e-08,3.8775e-08,3.5652e-08,3.433e-08,2.2882e-08,2.0461e-08,1.2248e-08,1.061e-08,8.2286e-09,7.1767e-09,6.8649e-09,5.3846e-09,5.2176e-09,4.8697e-09,4.1865e-09,3.1327e-09 1,3.9342e-14,5.7893e-14,5.9021e-14,6.6286e-14,7.247e-14,8.1467e-14,1.0218e-13,1.7454e-13,2.4473e-13,2.5774e-13,3.3675e-13,3.5173e-13,4.1806e-13,6.3512e-13,7.2372e-13,7.9235e-13,1.1713e-12,1.2523e-12,1.3485e-12,1.7282e-12,1.7748e-12,1.8022e-12,2.1755e-12,2.4306e-12,2.4393e-12,3.0158e-12,3.0745e-12,3.3828e-12,3.4255e-12,3.4676e-12,6.6056e-12,1.2136e-11,1.2818e-11,1.531e-11,1.7931e-11,2.0266e-11,2.3424e-11,2.7705e-11,3.7174e-11,4.3672e-11,5.6684e-11,7.8538e-11,8.0927e-11,8.6251e-11,9.1473e-11,1.2407e-10,1.2413e-10,2.549e-10,2.6876e-10,2.7677e-10,3.425e-10,3.479e-10,5.2698e-10,6.1974e-10,6.6288e-10,7.6809e-10,8.4327e-10,9.893e-10,1.0394e-09,1.517e-09,1.9123e-09,3.9259e-09,4.7718e-09,5.0924e-09,5.7195e-09,7.8545e-09,8.3796e-09,8.8741e-09,1.1603e-08,1.4893e-08,1.6329e-08,1.7603e-08,2.3085e-08,3.4018e-08,5.0952e-08,6.6709e-08,7.0568e-08,1.1609e-07,1.3766e-07,1.49e-07,1.5432e-07,1.7782e-07,3.1665e-07,3.2253e-07,3.5629e-07,4.1699e-07,4.3003e-07,5.3745e-07,9.8498e-07,9.9282e-07,1.175e-06,1.248e-06,2.4586e-06,2.9079e-06,2.9439e-06,3.4167e-06,4.1745e-06,4.191e-06,4.2592e-06,4.8022e-06,4.8074e-06,5.3572e-06,5.5857e-06,1.0068e-05,1.2978e-05,1.3089e-05,1.7398e-05,1.8764e-05,2.1082e-05,2.2306e-05,2.306e-05,2.3921e-05,2.4208e-05,2.4992e-05,2.8398e-05,2.8822e-05,2.9714e-05,3.0466e-05,3.6743e-05,4.5316e-05,5.915e-05,6.533e-05,8.0471e-05,0.00010127,0.00011146,0.00011709,0.00019999,0.00021253,0.00022222,0.00024266,0.0002712,0.00029844,0.00032242,0.00032688,0.0003297,0.00036318,0.00046694,0.00047558,0.00052434,0.00060917,0.00066131,0.00067016,0.0010616,0.0010667,0.0011661,0.0013855,0.0014293,0.0016042,0.0016483,0.0019891,0.002245,0.0029423,0.0029612,0.0040022,0.00414,0.0041849,0.005062,0.0051231,0.0054817,0.0059885,0.0061553,0.0062841,0.0068158,0.0069076,0.0069681,0.0074272,0.0075942,0.0076383,0.0080494,0.008202,0.0090949,0.010767,0.011092,0.01118,0.01204,0.012413,0.014034,0.01733,0.01848,0.020434,0.021196,0.023442,0.025874,0.026082,0.026244,0.026263,0.02703,0.027096,0.02963,0.030859,0.033286,0.033398,0.034083,0.038763,0.038907,0.041325,0.044226,0.049827,0.050605,0.052883,0.053404,0.05474,0.05704,0.060716,0.060819,0.069882,0.081483,0.0828,0.084278,0.084742,0.092658,0.097809,0.11691,0.11798,0.12017,0.12392,0.13864,0.15531,0.17513,0.18142,0.18524,0.19521,0.21642,0.22621,0.23933,0.26041,0.27948,0.28301,0.32232,0.32771,0.32969,0.3394,0.3433,0.37527,0.3894,0.39353,0.39395,0.40268,0.41458,0.42015,0.42263,0.46711,0.46716,0.50845,0.55664,0.60161,0.64302,0.66082,0.66546,0.6763,0.68572,0.70772,0.71012,0.75145,0.76164,0.78167,0.80581,0.81998,0.82156,0.83278,0.84015,0.85774,0.8824,0.88462,0.89476,0.90997,0.92155,0.92208,0.95631,0.96103,0.96321,0.96851,0.97111,0.97499,0.9806,0.98266,0.98536,0.98922,0.99334,0.99636,0.99662,0.99896,0.99977,1,0.99883,0.99752,0.99692,0.9943,0.99411,0.99269,0.99202,0.98034,0.97654,0.97498,0.96724,0.9623,0.96152,0.94864,0.9193,0.90948,0.90423,0.89155,0.89043,0.87536,0.87367,0.85307,0.84044,0.81403,0.81157,0.80926,0.80796,0.80371,0.80022,0.79808,0.77516,0.77027,0.72276,0.70643,0.69553,0.69119,0.65492,0.65428,0.64224,0.6366,0.60822,0.60733,0.6052,0.5841,0.57827,0.5762,0.56991,0.56179,0.55413,0.55016,0.51144,0.51009,0.49013,0.46064,0.43352,0.39695,0.39644,0.38383,0.36823,0.34815,0.34793,0.34111,0.31008,0.30312,0.30236,0.26851,0.26141,0.25738,0.2452,0.23352,0.21299,0.20989,0.19537,0.16549,0.16511,0.16282,0.15822,0.15468,0.1504,0.14546,0.10519,0.096231,0.083689,0.075249,0.074852,0.073943,0.062833,0.06045,0.060256,0.051292,0.038698,0.038346,0.035206,0.034585,0.028297,0.026725,0.023555,0.022036,0.020458,0.020162,0.01844,0.018151,0.018014,0.01465,0.013758,0.013398,0.012284,0.011951,0.010524,0.010221,0.0096344,0.0083025,0.0082907,0.0077125,0.0075257,0.0075254,0.0064029,0.00637,0.0059553,0.0055442,0.0047358,0.004101,0.0036943,0.0031228,0.0026675,0.0021678,0.0021494,0.001828,0.0015614,0.0014216,0.0011023,0.0010222,0.00087589,0.00079878,0.00065779,0.00064433,0.00061739,0.0005591,0.00045337,0.00036445,0.00032426,0.00028833,0.00027111,0.00026876,0.00024019,0.00021076,0.00014052,0.00012595,0.00011855,0.00010364,0.00010355,9.0628e-05,8.9132e-05,8.1381e-05,7.5622e-05,5.8946e-05,5.6845e-05,4.6681e-05,3.8796e-05,2.0961e-05,1.8635e-05,1.7602e-05,1.5148e-05,1.3146e-05,1.2454e-05,1.1174e-05,1.0334e-05,9.3751e-06,7.9754e-06,7.9685e-06,5.9416e-06,5.4927e-06,5.4033e-06,5.3562e-06,3.9566e-06,3.9293e-06,3.8104e-06,3.7231e-06,3.5058e-06,3.1724e-06,2.8996e-06,1.9385e-06,8.0624e-07,6.1779e-07,6.0335e-07,5.9167e-07,5.5532e-07,5.3605e-07,3.8247e-07,3.0555e-07,2.5921e-07,2.3632e-07,1.9466e-07,1.6491e-07,1.5989e-07,1.2645e-07,1.1063e-07,9.391e-08,7.2043e-08,5.0645e-08,4.9511e-08,4.3906e-08,4.0382e-08,3.889e-08,2.5959e-08,2.3222e-08,1.3926e-08,1.207e-08,9.3691e-09,8.1753e-09,7.8213e-09,6.1399e-09,5.9502e-09,5.5547e-09,4.7779e-09,3.5788e-09 1,2.6866e-14,3.963e-14,4.0407e-14,4.5413e-14,4.9677e-14,5.5885e-14,7.0191e-14,1.203e-13,1.6905e-13,1.7809e-13,2.3308e-13,2.4352e-13,2.8976e-13,4.4139e-13,5.034e-13,5.5146e-13,8.1726e-13,8.7416e-13,9.4181e-13,1.2089e-12,1.2418e-12,1.261e-12,1.5241e-12,1.7041e-12,1.7103e-12,2.1174e-12,2.1589e-12,2.3769e-12,2.4071e-12,2.4369e-12,4.6622e-12,8.6011e-12,9.0876e-12,1.0868e-11,1.2742e-11,1.4413e-11,1.6676e-11,1.9747e-11,2.655e-11,3.1227e-11,4.0605e-11,5.6389e-11,5.8117e-11,6.1968e-11,6.5748e-11,8.9375e-11,8.9417e-11,1.8457e-10,1.9468e-10,2.0052e-10,2.4854e-10,2.5248e-10,3.8362e-10,4.5169e-10,4.8337e-10,5.6071e-10,6.1602e-10,7.2356e-10,7.6051e-10,1.1131e-09,1.4056e-09,2.9018e-09,3.5323e-09,3.7716e-09,4.2399e-09,5.8372e-09,6.2307e-09,6.6013e-09,8.6497e-09,1.1125e-08,1.2206e-08,1.3167e-08,1.7305e-08,2.5583e-08,3.8446e-08,5.0449e-08,5.3393e-08,8.8208e-08,1.0475e-07,1.1346e-07,1.1754e-07,1.3561e-07,2.4271e-07,2.4726e-07,2.7338e-07,3.204e-07,3.3051e-07,4.139e-07,7.6274e-07,7.6887e-07,9.1141e-07,9.6856e-07,1.9202e-06,2.2748e-06,2.3032e-06,2.677e-06,3.2771e-06,3.2902e-06,3.3442e-06,3.775e-06,3.7791e-06,4.2158e-06,4.3974e-06,7.9728e-06,1.0303e-05,1.0393e-05,1.3854e-05,1.4954e-05,1.6822e-05,1.7809e-05,1.8417e-05,1.9112e-05,1.9344e-05,1.9977e-05,2.273e-05,2.3073e-05,2.3795e-05,2.4403e-05,2.9491e-05,3.6454e-05,4.7721e-05,5.2764e-05,6.5143e-05,8.2193e-05,9.0562e-05,9.5189e-05,0.00016359,0.00017397,0.00018199,0.00019894,0.00022264,0.00024528,0.00026524,0.00026895,0.0002713,0.0002992,0.00038587,0.00039309,0.00043392,0.00050508,0.00054887,0.00055631,0.00088648,0.0008908,0.00097493,0.001161,0.0011982,0.001347,0.0013845,0.001675,0.0018936,0.0024913,0.0025075,0.0034037,0.0035226,0.0035614,0.0043199,0.0043728,0.0046837,0.0051235,0.0052684,0.0053804,0.0058428,0.0059228,0.0059754,0.0063753,0.0065209,0.0065594,0.006918,0.0070513,0.0078316,0.0092962,0.0095814,0.0096586,0.010415,0.010742,0.01217,0.015082,0.016099,0.017833,0.01851,0.020507,0.022675,0.02286,0.023005,0.023022,0.023706,0.023765,0.02603,0.027129,0.029304,0.029405,0.030019,0.034224,0.034353,0.03653,0.039146,0.044206,0.04491,0.046973,0.047445,0.048656,0.050742,0.054081,0.054175,0.062427,0.073028,0.074235,0.075589,0.076014,0.083278,0.088014,0.10563,0.10662,0.10865,0.11212,0.12578,0.14129,0.15981,0.16571,0.16929,0.17865,0.19862,0.20786,0.22027,0.24025,0.2584,0.26176,0.29934,0.3045,0.3064,0.31572,0.31947,0.35027,0.36393,0.36793,0.36833,0.37679,0.38834,0.39375,0.39616,0.43952,0.43957,0.48006,0.52761,0.57229,0.61371,0.6316,0.63628,0.6472,0.65672,0.67901,0.68145,0.72361,0.73406,0.75469,0.77967,0.79443,0.79608,0.8078,0.81554,0.83407,0.86029,0.86266,0.87355,0.88999,0.90264,0.90322,0.94148,0.9469,0.94942,0.95561,0.95868,0.9633,0.97011,0.97267,0.97605,0.98104,0.98665,0.99109,0.99149,0.9956,0.99757,0.99883,1,0.99976,0.99955,0.99829,0.99819,0.99736,0.99695,0.98868,0.98574,0.98451,0.97825,0.97416,0.97351,0.96254,0.93664,0.92777,0.923,0.9114,0.91036,0.89644,0.89487,0.87564,0.86375,0.83871,0.83637,0.83417,0.83293,0.82887,0.82553,0.82348,0.80146,0.79675,0.75062,0.73466,0.72396,0.7197,0.68394,0.68331,0.67138,0.66578,0.63755,0.63665,0.63453,0.61344,0.6076,0.60553,0.59922,0.59107,0.58337,0.57937,0.54029,0.53892,0.51868,0.48868,0.46097,0.42345,0.42292,0.40993,0.39384,0.37306,0.37284,0.36578,0.33353,0.32627,0.32548,0.29009,0.28265,0.27841,0.26562,0.25331,0.23164,0.22836,0.21298,0.18118,0.18078,0.17834,0.17343,0.16964,0.16506,0.15977,0.11643,0.10673,0.093105,0.083907,0.083473,0.082481,0.070328,0.067714,0.067501,0.057646,0.043731,0.04334,0.039855,0.039165,0.032162,0.030407,0.026861,0.025158,0.023386,0.023054,0.021118,0.020792,0.020639,0.016842,0.015834,0.015426,0.014164,0.013785,0.012165,0.01182,0.011152,0.009633,0.0096196,0.0089587,0.0087451,0.0087448,0.0074588,0.0074211,0.006945,0.0064726,0.0055418,0.0048091,0.0043388,0.0036764,0.0031474,0.0025652,0.0025438,0.0021682,0.0018559,0.0016918,0.0013163,0.0012218,0.0010491,0.00095786,0.00079074,0.00077476,0.00074277,0.00067348,0.00054754,0.00044133,0.00039322,0.00035014,0.00032947,0.00032665,0.00029232,0.00025689,0.00017209,0.00015444,0.00014547,0.00012737,0.00012725,0.00011154,0.00010972,0.00010028,9.3261e-05,7.2896e-05,7.0326e-05,5.7875e-05,4.8196e-05,2.621e-05,2.333e-05,2.205e-05,1.9005e-05,1.6517e-05,1.5656e-05,1.4063e-05,1.3015e-05,1.182e-05,1.0071e-05,1.0063e-05,7.5249e-06,6.9618e-06,6.8496e-06,6.7905e-06,5.031e-06,4.9966e-06,4.8468e-06,4.7368e-06,4.463e-06,4.0425e-06,3.698e-06,2.4817e-06,1.0406e-06,7.9932e-07,7.808e-07,7.6582e-07,7.1919e-07,6.9445e-07,4.9699e-07,3.9783e-07,3.3799e-07,3.0839e-07,2.5445e-07,2.1588e-07,2.0936e-07,1.659e-07,1.4532e-07,1.2353e-07,9.4977e-08,6.6965e-08,6.5479e-08,5.8124e-08,5.3495e-08,5.1535e-08,3.4515e-08,3.0903e-08,1.861e-08,1.6148e-08,1.256e-08,1.0971e-08,1.05e-08,8.2585e-09,8.0053e-09,7.4773e-09,6.4392e-09,4.8341e-09 1,2.2558e-14,3.3311e-14,3.3966e-14,3.8186e-14,4.1783e-14,4.702e-14,5.9094e-14,1.0144e-13,1.4268e-13,1.5034e-13,1.9691e-13,2.0575e-13,2.4495e-13,3.7359e-13,4.2623e-13,4.6705e-13,6.9297e-13,7.4136e-13,7.9891e-13,1.0263e-12,1.0542e-12,1.0706e-12,1.2947e-12,1.4481e-12,1.4534e-12,1.8005e-12,1.8359e-12,2.0218e-12,2.0476e-12,2.073e-12,3.9739e-12,7.3451e-12,7.7619e-12,9.2874e-12,1.0895e-11,1.2328e-11,1.427e-11,1.6907e-11,2.2753e-11,2.6775e-11,3.4845e-11,4.8441e-11,4.993e-11,5.325e-11,5.6509e-11,7.6892e-11,7.6928e-11,1.5917e-10,1.6791e-10,1.7297e-10,2.1454e-10,2.1796e-10,3.3163e-10,3.9069e-10,4.1819e-10,4.8534e-10,5.3338e-10,6.2684e-10,6.5896e-10,9.6574e-10,1.2205e-09,2.526e-09,3.077e-09,3.2862e-09,3.6958e-09,5.094e-09,5.4386e-09,5.7633e-09,7.559e-09,9.7311e-09,1.068e-08,1.1524e-08,1.5161e-08,2.2446e-08,3.3784e-08,4.4377e-08,4.6977e-08,7.7758e-08,9.2401e-08,1.0011e-07,1.0373e-07,1.1975e-07,2.1481e-07,2.1885e-07,2.4207e-07,2.8389e-07,2.9288e-07,3.6711e-07,6.7823e-07,6.837e-07,8.1103e-07,8.621e-07,1.7142e-06,2.0321e-06,2.0576e-06,2.3931e-06,2.9322e-06,2.9439e-06,2.9925e-06,3.3798e-06,3.3835e-06,3.7763e-06,3.9397e-06,7.1622e-06,9.2667e-06,9.3474e-06,1.2477e-05,1.3473e-05,1.5164e-05,1.6058e-05,1.6609e-05,1.7239e-05,1.7449e-05,1.8023e-05,2.0519e-05,2.083e-05,2.1485e-05,2.2037e-05,2.6655e-05,3.2983e-05,4.3234e-05,4.7827e-05,5.911e-05,7.4669e-05,8.2312e-05,8.654e-05,0.00014914,0.00015866,0.00016602,0.00018157,0.00020331,0.00022411,0.00024245,0.00024586,0.00024802,0.00027367,0.00035344,0.00036009,0.00039771,0.00046333,0.00050374,0.00051061,0.00081585,0.00081986,0.00089776,0.0010702,0.0011048,0.0012427,0.0012776,0.0015475,0.0017508,0.0023074,0.0023225,0.0031588,0.0032699,0.0033061,0.0040154,0.0040649,0.0043559,0.0047678,0.0049036,0.0050085,0.0054421,0.0055171,0.0055664,0.0059416,0.0060783,0.0061144,0.0064511,0.0065763,0.0073094,0.008687,0.0089554,0.0090281,0.0097401,0.010049,0.011395,0.014144,0.015106,0.016746,0.017386,0.019278,0.021333,0.021509,0.021646,0.021662,0.022311,0.022367,0.024517,0.025561,0.027628,0.027723,0.028307,0.032308,0.032431,0.034504,0.036997,0.041824,0.042496,0.044466,0.044917,0.046073,0.048067,0.05126,0.051349,0.059249,0.069414,0.070572,0.071872,0.07228,0.079258,0.083812,0.10078,0.10173,0.10368,0.10704,0.12022,0.13522,0.15316,0.15887,0.16235,0.17144,0.19084,0.19984,0.21192,0.2314,0.24912,0.2524,0.28917,0.29424,0.2961,0.30524,0.30892,0.33917,0.3526,0.35653,0.35693,0.36526,0.37663,0.38196,0.38434,0.42714,0.4272,0.46728,0.51447,0.55896,0.60032,0.61822,0.62291,0.63385,0.6434,0.66578,0.66824,0.7107,0.72125,0.74211,0.76743,0.78243,0.7841,0.79604,0.80393,0.82285,0.84972,0.85216,0.86337,0.88034,0.89345,0.89405,0.93406,0.93979,0.94246,0.94904,0.95231,0.95726,0.96461,0.96739,0.97109,0.97657,0.98284,0.98793,0.98839,0.9933,0.9958,0.99752,0.99976,1,0.99997,0.99934,0.99927,0.99872,0.99843,0.99174,0.98919,0.98811,0.98255,0.97885,0.97826,0.96819,0.94392,0.93551,0.93097,0.91988,0.91889,0.90553,0.90401,0.88544,0.87392,0.84956,0.84728,0.84513,0.84392,0.83995,0.83669,0.83469,0.81312,0.8085,0.76309,0.74733,0.73675,0.73253,0.69706,0.69643,0.68457,0.67901,0.65089,0.64999,0.64788,0.62683,0.62099,0.61892,0.61261,0.60446,0.59675,0.59275,0.55356,0.55218,0.53184,0.50164,0.47369,0.43578,0.43525,0.4221,0.40579,0.38472,0.38449,0.37732,0.34454,0.33715,0.33634,0.30027,0.29267,0.28835,0.27527,0.26269,0.2405,0.23713,0.22136,0.18868,0.18827,0.18576,0.1807,0.1768,0.17208,0.16663,0.12186,0.11181,0.09767,0.088113,0.087662,0.086631,0.07398,0.071256,0.071034,0.060753,0.046203,0.045794,0.042143,0.04142,0.034071,0.032226,0.028497,0.026705,0.024839,0.024489,0.022448,0.022104,0.021943,0.017935,0.016869,0.016438,0.015103,0.014702,0.012986,0.01262,0.011913,0.010301,0.010287,0.0095849,0.0093579,0.0093576,0.0079906,0.0079504,0.0074439,0.0069409,0.0059492,0.0051676,0.0046654,0.0039575,0.0033915,0.0027678,0.0027448,0.0023419,0.0020066,0.0018303,0.0014262,0.0013244,0.0011382,0.0010398,0.00085935,0.00084208,0.00080751,0.00073259,0.00059631,0.00048123,0.00042904,0.00038229,0.00035984,0.00035678,0.00031948,0.00028095,0.00018861,0.00016937,0.00015958,0.00013982,0.00013969,0.00012253,0.00012054,0.00011022,0.00010254,8.0252e-05,7.7436e-05,6.3789e-05,5.3169e-05,2.9e-05,2.5828e-05,2.4418e-05,2.1061e-05,1.8316e-05,1.7365e-05,1.5606e-05,1.4449e-05,1.3127e-05,1.1194e-05,1.1184e-05,8.3747e-06,7.7508e-06,7.6264e-06,7.5609e-06,5.6093e-06,5.5712e-06,5.4048e-06,5.2827e-06,4.9787e-06,4.5116e-06,4.1288e-06,2.7756e-06,1.1682e-06,8.9831e-07,8.7759e-07,8.6081e-07,8.0861e-07,7.8091e-07,5.5964e-07,4.4838e-07,3.8119e-07,3.4794e-07,2.873e-07,2.4391e-07,2.3657e-07,1.8764e-07,1.6445e-07,1.3988e-07,1.0766e-07,7.6008e-08,7.4327e-08,6.6008e-08,6.0771e-08,5.8553e-08,3.9274e-08,3.518e-08,2.1225e-08,1.8427e-08,1.4346e-08,1.2537e-08,1.2001e-08,9.4471e-09,9.1584e-09,8.5565e-09,7.3726e-09,5.5404e-09 1,2.1168e-14,3.127e-14,3.1886e-14,3.5852e-14,3.9233e-14,4.4155e-14,5.5507e-14,9.5336e-14,1.3414e-13,1.4135e-13,1.8519e-13,1.9352e-13,2.3042e-13,3.5158e-13,4.0118e-13,4.3964e-13,6.5259e-13,6.9821e-13,7.5247e-13,9.6688e-13,9.9322e-13,1.0087e-12,1.2201e-12,1.3648e-12,1.3698e-12,1.6973e-12,1.7307e-12,1.9062e-12,1.9306e-12,1.9546e-12,3.7495e-12,6.935e-12,7.3289e-12,8.7711e-12,1.0291e-11,1.1647e-11,1.3484e-11,1.5978e-11,2.151e-11,2.5317e-11,3.2957e-11,4.5835e-11,4.7245e-11,5.0391e-11,5.3478e-11,7.2794e-11,7.2829e-11,1.5082e-10,1.5911e-10,1.6391e-10,2.0336e-10,2.066e-10,3.145e-10,3.7059e-10,3.967e-10,4.6049e-10,5.0613e-10,5.9494e-10,6.2546e-10,9.1708e-10,1.1594e-09,2.4016e-09,2.9263e-09,3.1255e-09,3.5156e-09,4.8475e-09,5.1759e-09,5.4854e-09,7.197e-09,9.2682e-09,1.0174e-08,1.0978e-08,1.4449e-08,2.1402e-08,3.2231e-08,4.2353e-08,4.4837e-08,7.4269e-08,8.8275e-08,9.5656e-08,9.9119e-08,1.1444e-07,2.0547e-07,2.0934e-07,2.3158e-07,2.7165e-07,2.8027e-07,3.5142e-07,6.4983e-07,6.5508e-07,7.7728e-07,8.263e-07,1.6447e-06,1.9503e-06,1.9748e-06,2.2974e-06,2.8158e-06,2.8271e-06,2.8738e-06,3.2464e-06,3.2499e-06,3.6278e-06,3.7851e-06,6.8878e-06,8.9154e-06,8.9932e-06,1.2011e-05,1.297e-05,1.4601e-05,1.5464e-05,1.5995e-05,1.6603e-05,1.6806e-05,1.7359e-05,1.9768e-05,2.0068e-05,2.07e-05,2.1233e-05,2.5691e-05,3.1802e-05,4.1706e-05,4.6145e-05,5.7053e-05,7.2101e-05,7.9496e-05,8.3587e-05,0.0001442,0.00015342,0.00016055,0.00017562,0.00019669,0.00021685,0.00023464,0.00023794,0.00024003,0.00026491,0.00034231,0.00034877,0.00038528,0.00044898,0.00048823,0.0004949,0.00079152,0.00079541,0.00087116,0.0010389,0.0010725,0.0012068,0.0012407,0.0015034,0.0017014,0.0022437,0.0022584,0.0030739,0.0031823,0.0032176,0.0039097,0.003958,0.0042421,0.0046443,0.0047768,0.0048793,0.0053028,0.005376,0.0054243,0.0057908,0.0059243,0.0059596,0.0062887,0.006411,0.0071276,0.0084747,0.0087373,0.0088084,0.009505,0.0098068,0.011124,0.013816,0.014759,0.016365,0.016993,0.018847,0.020863,0.021035,0.02117,0.021185,0.021822,0.021877,0.023986,0.025011,0.02704,0.027133,0.027707,0.031635,0.031756,0.033792,0.036242,0.040986,0.041647,0.043583,0.044027,0.045164,0.047125,0.050266,0.050354,0.058128,0.068138,0.069278,0.070559,0.070961,0.077838,0.082326,0.099057,0.1,0.10192,0.10523,0.11825,0.13306,0.15079,0.15644,0.15989,0.16887,0.18807,0.19697,0.20894,0.22824,0.2458,0.24906,0.28553,0.29056,0.29241,0.30148,0.30513,0.33518,0.34853,0.35244,0.35283,0.36111,0.37242,0.37772,0.38009,0.42269,0.42274,0.46266,0.50972,0.55413,0.59546,0.61336,0.61805,0.629,0.63855,0.66096,0.66342,0.70598,0.71656,0.7375,0.76294,0.77802,0.7797,0.79172,0.79965,0.81871,0.84581,0.84827,0.8596,0.87676,0.89003,0.89063,0.93126,0.93711,0.93983,0.94655,0.9499,0.95497,0.96251,0.96537,0.96917,0.97484,0.98135,0.98666,0.98715,0.99234,0.99503,0.99692,0.99955,0.99997,1,0.9996,0.99955,0.99909,0.99884,0.99273,0.99033,0.98931,0.984,0.98045,0.97988,0.97014,0.94646,0.93822,0.93377,0.92287,0.9219,0.90874,0.90725,0.88892,0.87754,0.85343,0.85117,0.84904,0.84784,0.84391,0.84068,0.83869,0.8173,0.81271,0.76758,0.75189,0.74135,0.73716,0.7018,0.70118,0.68935,0.6838,0.65572,0.65483,0.65272,0.63168,0.62585,0.62378,0.61747,0.60932,0.60161,0.59761,0.55839,0.55701,0.53664,0.50637,0.47835,0.44029,0.43976,0.42655,0.41017,0.38899,0.38876,0.38156,0.34858,0.34115,0.34034,0.30402,0.29637,0.29201,0.27883,0.26615,0.24377,0.24038,0.22446,0.19146,0.19105,0.18851,0.1834,0.17946,0.17469,0.16917,0.12387,0.11369,0.099371,0.089681,0.089224,0.088178,0.075344,0.07258,0.072354,0.061915,0.047129,0.046713,0.043001,0.042265,0.034787,0.03291,0.029113,0.027287,0.025386,0.025029,0.022949,0.022599,0.022434,0.018347,0.01726,0.016819,0.015457,0.015048,0.013296,0.012923,0.0122,0.010553,0.010539,0.0098218,0.0095898,0.0095895,0.008192,0.0081509,0.0076329,0.0071184,0.0061037,0.0053037,0.0047895,0.0040644,0.0034844,0.0028449,0.0028214,0.0024081,0.002064,0.0018831,0.0014682,0.0013636,0.0011723,0.0010711,0.00088561,0.00086785,0.0008323,0.00075524,0.00061501,0.00049654,0.0004428,0.00039463,0.0003715,0.00036835,0.00032991,0.00029021,0.00019498,0.00017512,0.00016501,0.00014462,0.00014449,0.00012677,0.00012471,0.00011406,0.00010613,8.3093e-05,8.0183e-05,6.6076e-05,5.5093e-05,3.0082e-05,2.6797e-05,2.5336e-05,2.1859e-05,1.9014e-05,1.8029e-05,1.6206e-05,1.5006e-05,1.3636e-05,1.163e-05,1.162e-05,8.7056e-06,8.0581e-06,7.9289e-06,7.8609e-06,5.8348e-06,5.7951e-06,5.6224e-06,5.4956e-06,5.1798e-06,4.6945e-06,4.2969e-06,2.8904e-06,1.2182e-06,9.3711e-07,9.1552e-07,8.9805e-07,8.4367e-07,8.1481e-07,5.8423e-07,4.6823e-07,3.9816e-07,3.6348e-07,3.0022e-07,2.5494e-07,2.4728e-07,1.962e-07,1.7198e-07,1.4632e-07,1.1266e-07,7.9577e-08,7.782e-08,6.9121e-08,6.3645e-08,6.1325e-08,4.1156e-08,3.6871e-08,2.226e-08,1.9329e-08,1.5053e-08,1.3158e-08,1.2596e-08,9.9188e-09,9.6161e-09,8.9849e-09,7.7432e-09,5.8211e-09 1,1.6885e-14,2.4978e-14,2.5471e-14,2.8652e-14,3.1364e-14,3.5314e-14,4.443e-14,7.6462e-14,1.0772e-13,1.1353e-13,1.4889e-13,1.5561e-13,1.8541e-13,2.8335e-13,3.2348e-13,3.5462e-13,5.2716e-13,5.6416e-13,6.0818e-13,7.8222e-13,8.0362e-13,8.1618e-13,9.8796e-13,1.1056e-12,1.1096e-12,1.3761e-12,1.4033e-12,1.5462e-12,1.566e-12,1.5856e-12,3.0493e-12,5.6537e-12,5.9762e-12,7.1573e-12,8.403e-12,9.5146e-12,1.1022e-11,1.307e-11,1.7616e-11,2.0747e-11,2.7038e-11,3.7653e-11,3.8817e-11,4.1412e-11,4.396e-11,5.9915e-11,5.9943e-11,1.2451e-10,1.3139e-10,1.3537e-10,1.681e-10,1.708e-10,2.6046e-10,3.0713e-10,3.2887e-10,3.82e-10,4.2003e-10,4.9408e-10,5.1954e-10,7.6305e-10,9.6564e-10,2.0069e-09,2.4475e-09,2.6148e-09,2.9428e-09,4.0637e-09,4.3403e-09,4.601e-09,6.0443e-09,7.7929e-09,8.5579e-09,9.2381e-09,1.2174e-08,1.8067e-08,2.7262e-08,3.5871e-08,3.7986e-08,6.3076e-08,7.5036e-08,8.1342e-08,8.4303e-08,9.7406e-08,1.754e-07,1.7872e-07,1.9782e-07,2.3223e-07,2.3964e-07,3.0083e-07,5.5808e-07,5.6262e-07,6.6818e-07,7.1055e-07,1.4196e-06,1.685e-06,1.7063e-06,1.9866e-06,2.4377e-06,2.4475e-06,2.4882e-06,2.8127e-06,2.8158e-06,3.1452e-06,3.2823e-06,5.9936e-06,7.7698e-06,7.838e-06,1.0486e-05,1.1329e-05,1.2762e-05,1.3521e-05,1.3988e-05,1.4523e-05,1.4702e-05,1.5189e-05,1.731e-05,1.7575e-05,1.8132e-05,1.8601e-05,2.2533e-05,2.793e-05,3.6691e-05,4.0622e-05,5.0292e-05,6.3654e-05,7.0227e-05,7.3865e-05,0.00012789,0.00013613,0.0001425,0.00015597,0.00017482,0.00019287,0.0002088,0.00021176,0.00021364,0.00023594,0.00030542,0.00031123,0.00034405,0.00040138,0.00043674,0.00044274,0.00071058,0.0007141,0.00078264,0.00093461,0.00096506,0.0010869,0.0011176,0.0013564,0.0015365,0.0020307,0.0020442,0.0027893,0.0028885,0.0029209,0.003555,0.0035993,0.0038599,0.0042292,0.004351,0.0044452,0.0048345,0.0049018,0.0049462,0.0052835,0.0054064,0.0054389,0.0057419,0.0058546,0.0065153,0.0077589,0.0080016,0.0080673,0.0087114,0.0089906,0.010211,0.012708,0.013584,0.015078,0.015662,0.017389,0.019268,0.019429,0.019555,0.019569,0.020164,0.020215,0.022185,0.023143,0.02504,0.025128,0.025664,0.029345,0.029459,0.031369,0.033668,0.038128,0.03875,0.040572,0.04099,0.042061,0.043908,0.04687,0.046953,0.054294,0.063766,0.064846,0.06606,0.066441,0.072963,0.077226,0.093143,0.094042,0.095876,0.099031,0.11145,0.12563,0.14262,0.14804,0.15135,0.15998,0.17847,0.18706,0.1986,0.21726,0.23427,0.23743,0.27285,0.27774,0.27954,0.28838,0.29193,0.32125,0.33429,0.33812,0.33851,0.34661,0.35769,0.36288,0.3652,0.40704,0.40709,0.44643,0.49297,0.53705,0.57823,0.59611,0.6008,0.61176,0.62133,0.64382,0.64629,0.68914,0.69983,0.72102,0.74685,0.76219,0.76391,0.77616,0.78427,0.80379,0.83167,0.83421,0.84591,0.86371,0.87754,0.87817,0.92095,0.92718,0.93008,0.93729,0.9409,0.94638,0.95459,0.95772,0.96191,0.96821,0.97555,0.98168,0.98225,0.98845,0.99181,0.9943,0.99829,0.99934,0.9996,1,1,0.9999,0.99981,0.99574,0.99386,0.99304,0.98864,0.9856,0.98511,0.97656,0.95505,0.94741,0.94327,0.93307,0.93216,0.91974,0.91833,0.90091,0.89003,0.86685,0.86467,0.86262,0.86146,0.85766,0.85454,0.85262,0.83186,0.8274,0.78331,0.7679,0.75754,0.75341,0.71851,0.71789,0.70618,0.70068,0.67281,0.67192,0.66982,0.64887,0.64306,0.641,0.6347,0.62656,0.61886,0.61486,0.57556,0.57418,0.55372,0.52324,0.49495,0.45644,0.4559,0.44251,0.42587,0.40433,0.4041,0.39676,0.36313,0.35554,0.35471,0.31753,0.30968,0.30521,0.29168,0.27864,0.25559,0.2521,0.23567,0.20154,0.20111,0.19848,0.19318,0.1891,0.18414,0.17842,0.13123,0.12059,0.10559,0.095422,0.094942,0.093843,0.080345,0.077433,0.077195,0.066184,0.050541,0.0501,0.046162,0.045381,0.037433,0.035434,0.031387,0.029439,0.027409,0.027028,0.024804,0.024429,0.024253,0.019875,0.018709,0.018236,0.016773,0.016334,0.01445,0.014048,0.013269,0.011494,0.011479,0.010705,0.010454,0.010454,0.0089433,0.0088989,0.0083383,0.0077812,0.0066813,0.0058127,0.0052538,0.0044648,0.0038327,0.0031346,0.0031089,0.002657,0.0022802,0.0020818,0.0016263,0.0015114,0.0013008,0.0011894,0.00098485,0.00096526,0.00092601,0.00084088,0.0006858,0.00055456,0.00049495,0.00044148,0.00041579,0.00041228,0.00036955,0.00032537,0.00021921,0.00019703,0.00018573,0.00016292,0.00016278,0.00014294,0.00014064,0.0001287,0.00011981,9.3957e-05,9.0687e-05,7.4826e-05,6.2462e-05,3.4236e-05,3.052e-05,2.8866e-05,2.4927e-05,2.1702e-05,2.0584e-05,1.8514e-05,1.7151e-05,1.5594e-05,1.3313e-05,1.3302e-05,9.9826e-06,9.2443e-06,9.0969e-06,9.0194e-06,6.7063e-06,6.661e-06,6.4636e-06,6.3186e-06,5.9576e-06,5.4025e-06,4.9474e-06,3.3355e-06,1.4125e-06,1.0881e-06,1.0632e-06,1.043e-06,9.802e-07,9.4685e-07,6.8011e-07,5.4571e-07,4.6444e-07,4.2419e-07,3.5071e-07,2.9807e-07,2.8916e-07,2.297e-07,2.0148e-07,1.7156e-07,1.3226e-07,9.359e-08,9.1533e-08,8.135e-08,7.4935e-08,7.2217e-08,4.8561e-08,4.3528e-08,2.6344e-08,2.289e-08,1.7848e-08,1.5611e-08,1.4947e-08,1.1783e-08,1.1425e-08,1.0679e-08,9.2093e-09,6.9325e-09 1,1.6655e-14,2.464e-14,2.5127e-14,2.8265e-14,3.0941e-14,3.4839e-14,4.3834e-14,7.5446e-14,1.063e-13,1.1203e-13,1.4693e-13,1.5357e-13,1.8298e-13,2.7967e-13,3.1929e-13,3.5002e-13,5.2038e-13,5.5691e-13,6.0038e-13,7.7223e-13,7.9336e-13,8.0576e-13,9.754e-13,1.0916e-12,1.0956e-12,1.3588e-12,1.3856e-12,1.5267e-12,1.5463e-12,1.5656e-12,3.0113e-12,5.5841e-12,5.9027e-12,7.0696e-12,8.3003e-12,9.3986e-12,1.0888e-11,1.2911e-11,1.7404e-11,2.0498e-11,2.6715e-11,3.7207e-11,3.8357e-11,4.0922e-11,4.344e-11,5.9211e-11,5.9239e-11,1.2307e-10,1.2988e-10,1.3381e-10,1.6617e-10,1.6884e-10,2.575e-10,3.0365e-10,3.2515e-10,3.7769e-10,4.1531e-10,4.8854e-10,5.1372e-10,7.5459e-10,9.5499e-10,1.9851e-09,2.4211e-09,2.5867e-09,2.9112e-09,4.0204e-09,4.2942e-09,4.5522e-09,5.9807e-09,7.7114e-09,8.4686e-09,9.1419e-09,1.2048e-08,1.7882e-08,2.6986e-08,3.5511e-08,3.7605e-08,6.2454e-08,7.43e-08,8.0546e-08,8.3479e-08,9.6457e-08,1.7372e-07,1.7702e-07,1.9593e-07,2.3003e-07,2.3737e-07,2.98e-07,5.5295e-07,5.5744e-07,6.6207e-07,7.0408e-07,1.407e-06,1.6701e-06,1.6912e-06,1.9692e-06,2.4165e-06,2.4262e-06,2.4666e-06,2.7884e-06,2.7914e-06,3.1181e-06,3.2541e-06,5.9432e-06,7.7052e-06,7.7728e-06,1.04e-05,1.1236e-05,1.2659e-05,1.3411e-05,1.3875e-05,1.4406e-05,1.4583e-05,1.5066e-05,1.7171e-05,1.7434e-05,1.7987e-05,1.8452e-05,2.2355e-05,2.7711e-05,3.6406e-05,4.0309e-05,4.9909e-05,6.3174e-05,6.9701e-05,7.3313e-05,0.00012697,0.00013514,0.00014147,0.00015485,0.00017357,0.0001915,0.00020732,0.00021026,0.00021213,0.00023429,0.00030331,0.00030908,0.0003417,0.00039866,0.00043379,0.00043976,0.00070593,0.00070943,0.00077756,0.00092862,0.00095889,0.00108,0.0011106,0.0013479,0.001527,0.0020185,0.0020318,0.0027729,0.0028716,0.0029037,0.0035346,0.0035786,0.0038378,0.0042052,0.0043264,0.00442,0.0048074,0.0048744,0.0049185,0.0052541,0.0053764,0.0054088,0.0057103,0.0058224,0.0064798,0.0077174,0.0079589,0.0080243,0.0086653,0.0089432,0.010158,0.012643,0.013515,0.015003,0.015584,0.017304,0.019175,0.019335,0.01946,0.019475,0.020067,0.020118,0.02208,0.023034,0.024923,0.025011,0.025545,0.029211,0.029324,0.031227,0.033518,0.037961,0.03858,0.040396,0.040812,0.041879,0.04372,0.046671,0.046753,0.054069,0.063509,0.064586,0.065795,0.066175,0.072677,0.076925,0.092794,0.093691,0.095519,0.098665,0.11105,0.12519,0.14214,0.14755,0.15085,0.15946,0.1779,0.18647,0.19799,0.21661,0.23359,0.23673,0.2721,0.27698,0.27877,0.28759,0.29115,0.32041,0.33344,0.33726,0.33765,0.34574,0.3568,0.36199,0.36431,0.4061,0.40615,0.44546,0.49196,0.53602,0.57719,0.59507,0.59976,0.61072,0.62028,0.64278,0.64525,0.68812,0.69882,0.72002,0.74587,0.76122,0.76294,0.77521,0.78333,0.80288,0.8308,0.83335,0.84507,0.86291,0.87677,0.8774,0.92031,0.92655,0.92947,0.93671,0.94033,0.94583,0.95408,0.95723,0.96144,0.96778,0.97517,0.98135,0.98193,0.98819,0.99159,0.99411,0.99819,0.99927,0.99955,1,1,0.99992,0.99984,0.9959,0.99405,0.99324,0.98889,0.98589,0.98541,0.97692,0.95554,0.94795,0.94382,0.93367,0.93276,0.92039,0.91898,0.90162,0.89077,0.86765,0.86548,0.86342,0.86227,0.85848,0.85536,0.85344,0.83273,0.82827,0.78425,0.76886,0.75851,0.75438,0.71951,0.7189,0.70719,0.70169,0.67384,0.67295,0.67085,0.64991,0.6441,0.64204,0.63574,0.6276,0.6199,0.6159,0.57661,0.57522,0.55475,0.52427,0.49596,0.45742,0.45688,0.44348,0.42683,0.40527,0.40503,0.39769,0.36402,0.35642,0.35558,0.31836,0.3105,0.30602,0.29247,0.27941,0.25632,0.25282,0.23636,0.20216,0.20173,0.1991,0.19378,0.18969,0.18473,0.17899,0.13169,0.12102,0.10598,0.095779,0.095297,0.094195,0.080656,0.077735,0.077497,0.06645,0.050754,0.050311,0.046359,0.045575,0.037598,0.035592,0.03153,0.029574,0.027536,0.027153,0.02492,0.024544,0.024367,0.019971,0.0188,0.018325,0.016856,0.016415,0.014522,0.014119,0.013337,0.011554,0.011538,0.01076,0.010509,0.010508,0.0089907,0.0089461,0.0083828,0.0078231,0.0067177,0.0058449,0.0052832,0.0044902,0.0038547,0.003153,0.0031271,0.0026728,0.0022939,0.0020944,0.0016364,0.0015208,0.001309,0.001197,0.00099118,0.00097147,0.00093198,0.00084635,0.00069032,0.00055827,0.00049829,0.00044448,0.00041862,0.00041509,0.00037209,0.00032762,0.00022076,0.00019843,0.00018706,0.0001641,0.00016395,0.00014398,0.00014166,0.00012964,0.00012069,9.4655e-05,9.1363e-05,7.5389e-05,6.2937e-05,3.4505e-05,3.076e-05,2.9094e-05,2.5125e-05,2.1875e-05,2.0749e-05,1.8663e-05,1.729e-05,1.5721e-05,1.3422e-05,1.3411e-05,1.0065e-05,9.3212e-06,9.1727e-06,9.0945e-06,6.7629e-06,6.7172e-06,6.5182e-06,6.3721e-06,6.0081e-06,5.4485e-06,4.9896e-06,3.3645e-06,1.4252e-06,1.098e-06,1.0729e-06,1.0525e-06,9.8912e-07,9.5547e-07,6.8637e-07,5.5078e-07,4.6878e-07,4.2817e-07,3.5402e-07,3.0089e-07,2.919e-07,2.319e-07,2.0342e-07,1.7321e-07,1.3355e-07,9.4511e-08,9.2435e-08,8.2154e-08,7.5677e-08,7.2933e-08,4.9048e-08,4.3966e-08,2.6613e-08,2.3125e-08,1.8032e-08,1.5773e-08,1.5102e-08,1.1906e-08,1.1545e-08,1.0791e-08,9.3062e-09,7.006e-09 1,1.508e-14,2.2324e-14,2.2766e-14,2.5614e-14,2.8043e-14,3.1581e-14,3.975e-14,6.8476e-14,9.653e-14,1.0175e-13,1.335e-13,1.3954e-13,1.6631e-13,2.5437e-13,2.9047e-13,3.1848e-13,4.7379e-13,5.0711e-13,5.4676e-13,7.0356e-13,7.2284e-13,7.3416e-13,8.89e-13,9.9506e-13,9.9871e-13,1.2391e-12,1.2636e-12,1.3925e-12,1.4104e-12,1.428e-12,2.7499e-12,5.1047e-12,5.3964e-12,6.4652e-12,7.5928e-12,8.5994e-12,9.9645e-12,1.182e-11,1.5941e-11,1.8781e-11,2.4488e-11,3.4126e-11,3.5183e-11,3.754e-11,3.9855e-11,5.4354e-11,5.438e-11,1.1313e-10,1.1939e-10,1.2302e-10,1.5283e-10,1.5528e-10,2.3702e-10,2.7958e-10,2.9942e-10,3.479e-10,3.8262e-10,4.5023e-10,4.7348e-10,6.9599e-10,8.8123e-10,1.8344e-09,2.2381e-09,2.3916e-09,2.6922e-09,3.7204e-09,3.9742e-09,4.2135e-09,5.5388e-09,7.1453e-09,7.8484e-09,8.4737e-09,1.1174e-08,1.6598e-08,2.507e-08,3.3009e-08,3.496e-08,5.8124e-08,6.9175e-08,7.5003e-08,7.774e-08,8.9855e-08,1.6204e-07,1.6512e-07,1.8281e-07,2.147e-07,2.2157e-07,2.7831e-07,5.1714e-07,5.2135e-07,6.1945e-07,6.5884e-07,1.3188e-06,1.566e-06,1.5859e-06,1.8472e-06,2.2679e-06,2.2771e-06,2.315e-06,2.6179e-06,2.6207e-06,2.9282e-06,3.0562e-06,5.5903e-06,7.2525e-06,7.3163e-06,9.7962e-06,1.0586e-05,1.193e-05,1.2641e-05,1.308e-05,1.3582e-05,1.3749e-05,1.4206e-05,1.6196e-05,1.6445e-05,1.6967e-05,1.7408e-05,2.11e-05,2.6171e-05,3.4409e-05,3.8108e-05,4.7212e-05,5.9801e-05,6.5997e-05,6.9428e-05,0.00012043,0.00012821,0.00013423,0.00014696,0.00016479,0.00018186,0.00019694,0.00019974,0.00020152,0.00022263,0.00028846,0.00029396,0.00032508,0.00037945,0.000413,0.0004187,0.00067316,0.0006765,0.00074169,0.00088631,0.0009153,0.0010313,0.0010606,0.0012881,0.0014599,0.0019316,0.0019445,0.0026567,0.0027515,0.0027824,0.0033894,0.0034318,0.0036813,0.0040351,0.0041518,0.004242,0.0046152,0.0046798,0.0047224,0.0050459,0.0051638,0.0051949,0.0054857,0.0055938,0.006228,0.0074226,0.0076558,0.007719,0.0083382,0.0086068,0.0097805,0.012185,0.013029,0.014469,0.015033,0.016699,0.018513,0.018669,0.01879,0.018804,0.019378,0.019428,0.021331,0.022257,0.024092,0.024177,0.024696,0.028257,0.028367,0.030217,0.032444,0.036767,0.03737,0.039137,0.039543,0.040582,0.042375,0.04525,0.04533,0.052462,0.061673,0.062724,0.063905,0.064276,0.070627,0.074779,0.0903,0.091178,0.092967,0.096047,0.10818,0.12204,0.13867,0.14398,0.14722,0.15568,0.17382,0.18224,0.19358,0.21192,0.22866,0.23176,0.26666,0.27148,0.27325,0.28197,0.28548,0.31442,0.32732,0.3311,0.33148,0.33949,0.35045,0.35559,0.35789,0.39933,0.39938,0.43842,0.48467,0.52857,0.56965,0.58752,0.5922,0.60316,0.61273,0.63524,0.63771,0.68069,0.69143,0.71273,0.73872,0.75419,0.75592,0.76829,0.77648,0.79621,0.82446,0.82703,0.83892,0.85702,0.87111,0.87176,0.91557,0.92198,0.92498,0.93243,0.93616,0.94183,0.95037,0.95364,0.95802,0.96463,0.97238,0.97891,0.97952,0.98621,0.98991,0.99269,0.99736,0.99872,0.99909,0.9999,0.99992,1,0.99998,0.99695,0.99533,0.99461,0.99066,0.98789,0.98744,0.97948,0.95907,0.95174,0.94775,0.93791,0.93703,0.925,0.92363,0.90667,0.89605,0.87336,0.87123,0.86921,0.86807,0.86434,0.86127,0.85938,0.83896,0.83457,0.79103,0.77578,0.76551,0.76141,0.72677,0.72615,0.71451,0.70904,0.68129,0.6804,0.67831,0.65742,0.65162,0.64956,0.64328,0.63515,0.62746,0.62346,0.58415,0.58277,0.56226,0.5317,0.5033,0.46457,0.46403,0.45055,0.4338,0.41208,0.41184,0.40444,0.3705,0.36282,0.36199,0.32439,0.31645,0.31192,0.29822,0.285,0.26162,0.25808,0.2414,0.2067,0.20626,0.20359,0.19819,0.19403,0.18899,0.18316,0.13503,0.12415,0.1088,0.098391,0.097899,0.096774,0.082936,0.079949,0.079705,0.068401,0.052318,0.051864,0.047809,0.047005,0.038815,0.036753,0.032577,0.030566,0.028469,0.028075,0.025777,0.025389,0.025207,0.020678,0.01947,0.018981,0.017465,0.01701,0.015057,0.01464,0.013833,0.011991,0.011974,0.011171,0.01091,0.01091,0.0093405,0.0092944,0.0087115,0.008132,0.0069873,0.0060827,0.0055003,0.0046776,0.004018,0.003289,0.003262,0.0027897,0.0023956,0.002188,0.001711,0.0015905,0.0013697,0.0012529,0.0010381,0.0010175,0.00097632,0.00088689,0.00072387,0.00058581,0.00052306,0.00046675,0.00043967,0.00043598,0.00039095,0.00034436,0.00023232,0.00020889,0.00019696,0.00017285,0.00017269,0.00015172,0.00014928,0.00013665,0.00012724,9.9863e-05,9.64e-05,7.9589e-05,6.6477e-05,3.6507e-05,3.2555e-05,3.0796e-05,2.6606e-05,2.3173e-05,2.1983e-05,1.9779e-05,1.8328e-05,1.6668e-05,1.4237e-05,1.4225e-05,1.0684e-05,9.8965e-06,9.7393e-06,9.6565e-06,7.1862e-06,7.1378e-06,6.9269e-06,6.772e-06,6.3861e-06,5.7928e-06,5.3061e-06,3.5814e-06,1.5202e-06,1.172e-06,1.1452e-06,1.1235e-06,1.056e-06,1.0202e-06,7.3343e-07,5.8884e-07,5.0136e-07,4.5802e-07,3.7887e-07,3.2213e-07,3.1253e-07,2.4841e-07,2.1797e-07,1.8567e-07,1.4324e-07,1.0144e-07,9.922e-08,8.8207e-08,8.1268e-08,7.8327e-08,5.2721e-08,4.727e-08,2.8643e-08,2.4897e-08,1.9424e-08,1.6995e-08,1.6273e-08,1.2836e-08,1.2447e-08,1.1636e-08,1.0038e-08,7.5613e-09 1,1.4433e-14,2.1372e-14,2.1795e-14,2.4523e-14,2.685e-14,3.0241e-14,3.8069e-14,6.5606e-14,9.2507e-14,9.7508e-14,1.2797e-13,1.3376e-13,1.5944e-13,2.4394e-13,2.7858e-13,3.0547e-13,4.5457e-13,4.8656e-13,5.2462e-13,6.752e-13,6.9372e-13,7.0459e-13,8.5332e-13,9.552e-13,9.5871e-13,1.1896e-12,1.2132e-12,1.3371e-12,1.3543e-12,1.3712e-12,2.6417e-12,4.9062e-12,5.1868e-12,6.215e-12,7.2999e-12,8.2684e-12,9.582e-12,1.1368e-11,1.5335e-11,1.8069e-11,2.3565e-11,3.2848e-11,3.3866e-11,3.6136e-11,3.8366e-11,5.2338e-11,5.2362e-11,1.09e-10,1.1504e-10,1.1853e-10,1.4728e-10,1.4965e-10,2.285e-10,2.6957e-10,2.8871e-10,3.355e-10,3.6901e-10,4.3427e-10,4.5672e-10,6.7157e-10,8.5049e-10,1.7715e-09,2.1618e-09,2.3101e-09,2.6008e-09,3.5951e-09,3.8406e-09,4.0721e-09,5.3541e-09,6.9087e-09,7.5891e-09,8.1943e-09,1.0808e-08,1.6061e-08,2.4268e-08,3.196e-08,3.3851e-08,5.6308e-08,6.7025e-08,7.2678e-08,7.5332e-08,8.7084e-08,1.5714e-07,1.6012e-07,1.7729e-07,2.0826e-07,2.1493e-07,2.7002e-07,5.0206e-07,5.0615e-07,6.015e-07,6.3979e-07,1.2816e-06,1.5221e-06,1.5414e-06,1.7957e-06,2.2052e-06,2.2141e-06,2.2511e-06,2.5459e-06,2.5487e-06,2.8481e-06,2.9727e-06,5.4412e-06,7.061e-06,7.1232e-06,9.5409e-06,1.0311e-05,1.1622e-05,1.2316e-05,1.2743e-05,1.3232e-05,1.3396e-05,1.3841e-05,1.5783e-05,1.6026e-05,1.6536e-05,1.6966e-05,2.0569e-05,2.5518e-05,3.3562e-05,3.7174e-05,4.6068e-05,5.8368e-05,6.4424e-05,6.7777e-05,0.00011765,0.00012526,0.00013115,0.0001436,0.00016105,0.00017776,0.00019251,0.00019525,0.00019699,0.00021767,0.00028212,0.00028751,0.00031799,0.00037126,0.00040413,0.00040972,0.00065915,0.00066244,0.00072636,0.00086821,0.00089665,0.0010105,0.0010392,0.0012625,0.0014312,0.0018944,0.001907,0.0026068,0.0027,0.0027304,0.0033271,0.0033688,0.0036141,0.0039621,0.0040768,0.0041656,0.0045327,0.0045962,0.0046381,0.0049564,0.0050724,0.0051031,0.0053892,0.0054956,0.0061197,0.0072959,0.0075255,0.0075877,0.0081975,0.008462,0.0096182,0.011988,0.012819,0.014239,0.014795,0.016438,0.018228,0.018381,0.018501,0.018515,0.019081,0.01913,0.021008,0.021922,0.023733,0.023816,0.024329,0.027845,0.027954,0.02978,0.03198,0.036251,0.036846,0.038593,0.038993,0.040021,0.041792,0.044634,0.044714,0.051765,0.060877,0.061917,0.063086,0.063453,0.069738,0.073848,0.089217,0.090086,0.091858,0.094909,0.10693,0.12067,0.13716,0.14243,0.14564,0.15404,0.17204,0.1804,0.19166,0.20988,0.2265,0.22959,0.26428,0.26908,0.27084,0.27951,0.283,0.3118,0.32463,0.3284,0.32878,0.33676,0.34767,0.35278,0.35507,0.39636,0.39641,0.43533,0.48147,0.5253,0.56633,0.58419,0.58887,0.59982,0.6094,0.63191,0.63439,0.67741,0.68816,0.7095,0.73556,0.75107,0.75281,0.76522,0.77344,0.79325,0.82163,0.82423,0.83618,0.8544,0.86859,0.86924,0.91345,0.91993,0.92296,0.9305,0.93428,0.94003,0.94869,0.95201,0.95646,0.96319,0.9711,0.97778,0.97841,0.9853,0.98912,0.99202,0.99695,0.99843,0.99884,0.99981,0.99984,0.99998,1,0.99736,0.99584,0.99516,0.99139,0.98872,0.98829,0.98056,0.96058,0.95338,0.94945,0.93975,0.93888,0.927,0.92564,0.90887,0.89835,0.87585,0.87373,0.87173,0.8706,0.8669,0.86385,0.86198,0.84169,0.83732,0.794,0.77881,0.76858,0.7645,0.72996,0.72934,0.71773,0.71227,0.68456,0.68368,0.68159,0.66073,0.65494,0.65288,0.6466,0.63847,0.63079,0.62679,0.58748,0.58609,0.56558,0.53499,0.50654,0.46774,0.46719,0.45368,0.43688,0.4151,0.41486,0.40744,0.37337,0.36567,0.36483,0.32707,0.31909,0.31454,0.30077,0.28749,0.26399,0.26042,0.24364,0.20873,0.20828,0.20559,0.20016,0.19597,0.19089,0.18502,0.13652,0.12555,0.11007,0.099561,0.099065,0.097929,0.083959,0.080942,0.080696,0.069276,0.05302,0.052561,0.048461,0.047648,0.039362,0.037276,0.033049,0.031012,0.028889,0.02849,0.026162,0.02577,0.025585,0.020997,0.019773,0.019277,0.01774,0.017279,0.015298,0.014876,0.014057,0.012188,0.012172,0.011356,0.011092,0.011092,0.0094986,0.0094518,0.0088601,0.0082717,0.0071092,0.0061904,0.0055986,0.0047625,0.0040919,0.0033506,0.0033232,0.0028428,0.0024417,0.0022304,0.0017448,0.0016222,0.0013973,0.0012783,0.0010595,0.0010385,0.00099649,0.00090534,0.00073915,0.00059836,0.00053435,0.0004769,0.00044927,0.00044551,0.00039955,0.000352,0.0002376,0.00021367,0.00020148,0.00017685,0.00017669,0.00015525,0.00015276,0.00013985,0.00013023,0.00010225,9.8704e-05,8.1512e-05,6.8098e-05,3.7425e-05,3.3379e-05,3.1577e-05,2.7285e-05,2.3769e-05,2.255e-05,2.0291e-05,1.8804e-05,1.7103e-05,1.4612e-05,1.4599e-05,1.0969e-05,1.0161e-05,9.9997e-06,9.9148e-06,7.381e-06,7.3313e-06,7.1149e-06,6.956e-06,6.5601e-06,5.9512e-06,5.4517e-06,3.6813e-06,1.5641e-06,1.2061e-06,1.1786e-06,1.1563e-06,1.0869e-06,1.05e-06,7.5516e-07,6.0643e-07,5.1642e-07,4.7182e-07,3.9036e-07,3.3195e-07,3.2207e-07,2.5605e-07,2.247e-07,1.9144e-07,1.4773e-07,1.0466e-07,1.0236e-07,9.1013e-08,8.386e-08,8.0828e-08,5.4425e-08,4.8802e-08,2.9586e-08,2.5719e-08,2.007e-08,1.7563e-08,1.6818e-08,1.3268e-08,1.2867e-08,1.2029e-08,1.0378e-08,7.8197e-09 1,8.0582e-15,1.1975e-14,1.2214e-14,1.3759e-14,1.5077e-14,1.6999e-14,2.1445e-14,3.7144e-14,5.2543e-14,5.5411e-14,7.2906e-14,7.6238e-14,9.1027e-14,1.3983e-13,1.5989e-13,1.7548e-13,2.6213e-13,2.8076e-13,3.0295e-13,3.9085e-13,4.0168e-13,4.0803e-13,4.9508e-13,5.548e-13,5.5686e-13,6.9246e-13,7.0631e-13,7.7916e-13,7.8928e-13,7.9925e-13,1.5498e-12,2.8963e-12,3.0636e-12,3.6776e-12,4.3266e-12,4.9069e-12,5.695e-12,6.7682e-12,9.1583e-12,1.0809e-11,1.4136e-11,1.9773e-11,2.0392e-11,2.1774e-11,2.3133e-11,3.166e-11,3.1675e-11,6.645e-11,7.0173e-11,7.2328e-11,9.0083e-11,9.1547e-11,1.4043e-10,1.6596e-10,1.7788e-10,2.0705e-10,2.2797e-10,2.6877e-10,2.8283e-10,4.1766e-10,5.3033e-10,1.1139e-09,1.3624e-09,1.457e-09,1.6426e-09,2.2791e-09,2.4366e-09,2.5852e-09,3.41e-09,4.4134e-09,4.8535e-09,5.2453e-09,6.9416e-09,1.0364e-08,1.5739e-08,2.0799e-08,2.2045e-08,3.6904e-08,4.4024e-08,4.7786e-08,4.9554e-08,5.739e-08,1.0434e-07,1.0636e-07,1.1792e-07,1.388e-07,1.433e-07,1.8058e-07,3.3855e-07,3.4135e-07,4.066e-07,4.3285e-07,8.7537e-07,1.0422e-06,1.0556e-06,1.2324e-06,1.5178e-06,1.5241e-06,1.5499e-06,1.7559e-06,1.7579e-06,1.9675e-06,2.0549e-06,3.7945e-06,4.9432e-06,4.9874e-06,6.7095e-06,7.2599e-06,8.1975e-06,8.6944e-06,9.0009e-06,9.352e-06,9.4692e-06,9.7891e-06,1.1185e-05,1.1359e-05,1.1727e-05,1.2036e-05,1.4636e-05,1.822e-05,2.4068e-05,2.6703e-05,3.3206e-05,4.2235e-05,4.6693e-05,4.9164e-05,8.6135e-05,9.1806e-05,9.6198e-05,0.0001055,0.00011855,0.00013108,0.00014216,0.00014422,0.00014552,0.00016108,0.00020974,0.00021382,0.00023692,0.00027739,0.00030242,0.00030668,0.00049779,0.00050032,0.00054956,0.00065914,0.00068116,0.0007694,0.00079173,0.00096555,0.0010973,0.0014608,0.0014707,0.0020234,0.0020974,0.0021215,0.002596,0.0026292,0.002825,0.0031032,0.0031951,0.0032662,0.0035606,0.0036117,0.0036453,0.0039012,0.0039946,0.0040193,0.0042498,0.0043356,0.0048398,0.0057933,0.0059799,0.0060305,0.0065269,0.0067425,0.0076871,0.0096319,0.010317,0.01149,0.01195,0.013312,0.0148,0.014928,0.015028,0.015039,0.015511,0.015552,0.01712,0.017885,0.019403,0.019473,0.019904,0.022863,0.022955,0.024497,0.026358,0.029983,0.03049,0.031977,0.032319,0.033194,0.034707,0.037138,0.037206,0.04326,0.051125,0.052026,0.053038,0.053357,0.058815,0.062394,0.075843,0.076606,0.078164,0.080848,0.09146,0.10364,0.11835,0.12307,0.12595,0.13349,0.14971,0.15728,0.1675,0.1841,0.19932,0.20215,0.23412,0.23856,0.24019,0.24823,0.25148,0.27832,0.29034,0.29387,0.29423,0.30172,0.31199,0.31681,0.31897,0.3581,0.35815,0.39534,0.43981,0.48244,0.52272,0.54036,0.54499,0.55586,0.56538,0.58786,0.59034,0.63365,0.64455,0.66628,0.69301,0.70901,0.71081,0.72369,0.73224,0.75298,0.78298,0.78573,0.79849,0.8181,0.83352,0.83422,0.8833,0.89066,0.89413,0.9028,0.90717,0.91389,0.92413,0.9281,0.93348,0.94172,0.95164,0.96029,0.96113,0.97048,0.97596,0.98034,0.98868,0.99174,0.99273,0.99574,0.9959,0.99695,0.99736,1,0.99983,0.99967,0.99827,0.99697,0.99674,0.99216,0.978,0.97246,0.96937,0.96159,0.96088,0.95109,0.94995,0.93573,0.92664,0.90685,0.90496,0.90317,0.90217,0.89886,0.89612,0.89444,0.87606,0.87207,0.83198,0.81771,0.80806,0.80419,0.77124,0.77065,0.75948,0.75421,0.72735,0.72649,0.72446,0.70406,0.69837,0.69635,0.69018,0.68217,0.67458,0.67062,0.63153,0.63015,0.6096,0.57876,0.54989,0.51023,0.50967,0.49577,0.47845,0.45589,0.45564,0.44793,0.41238,0.40431,0.40342,0.36365,0.3552,0.35038,0.33575,0.32159,0.29644,0.29261,0.27456,0.23675,0.23627,0.23334,0.22743,0.22286,0.21731,0.21089,0.15741,0.1452,0.12788,0.11607,0.11551,0.11423,0.09844,0.095016,0.094736,0.081727,0.063065,0.062535,0.057796,0.056855,0.047229,0.044795,0.03985,0.03746,0.034963,0.034494,0.031749,0.031285,0.031067,0.025629,0.024173,0.023582,0.021749,0.021198,0.018826,0.018319,0.017335,0.015083,0.015063,0.014078,0.013758,0.013758,0.011826,0.011769,0.011049,0.010332,0.0089113,0.0077842,0.0070562,0.0060241,0.0051933,0.0042709,0.0042368,0.0036363,0.0031334,0.0028677,0.0022547,0.0020993,0.0018138,0.0016622,0.0013828,0.001356,0.0013022,0.0011853,0.00097148,0.00078959,0.00070662,0.00063199,0.00059604,0.00059114,0.00053122,0.00046909,0.00031889,0.00028731,0.0002712,0.00023859,0.00023837,0.00020993,0.00020662,0.00018944,0.00017663,0.00013925,0.0001345,0.00011144,9.3377e-05,5.1822e-05,4.6304e-05,4.3844e-05,3.7973e-05,3.3151e-05,3.1477e-05,2.8371e-05,2.6323e-05,2.3978e-05,2.0534e-05,2.0517e-05,1.5483e-05,1.4359e-05,1.4135e-05,1.4016e-05,1.0481e-05,1.0411e-05,1.0108e-05,9.886e-06,9.3315e-06,8.4777e-06,7.7762e-06,5.2812e-06,2.2715e-06,1.758e-06,1.7184e-06,1.6863e-06,1.5865e-06,1.5334e-06,1.1078e-06,8.9229e-07,7.6151e-07,6.9659e-07,5.7778e-07,4.924e-07,4.7793e-07,3.8113e-07,3.3504e-07,2.8604e-07,2.2147e-07,1.576e-07,1.5419e-07,1.373e-07,1.2664e-07,1.2212e-07,8.264e-08,7.4204e-08,4.5266e-08,3.9418e-08,3.0854e-08,2.7043e-08,2.5909e-08,2.05e-08,1.9887e-08,1.8606e-08,1.6082e-08,1.2158e-08 1,6.9348e-15,1.0315e-14,1.0522e-14,1.1855e-14,1.2994e-14,1.4655e-14,1.8498e-14,3.208e-14,4.5417e-14,4.7903e-14,6.3068e-14,6.5957e-14,7.8786e-14,1.2115e-13,1.3858e-13,1.5212e-13,2.2746e-13,2.4367e-13,2.6297e-13,3.3949e-13,3.4892e-13,3.5445e-13,4.3028e-13,4.8231e-13,4.8411e-13,6.0232e-13,6.144e-13,6.7793e-13,6.8676e-13,6.9546e-13,1.3508e-12,2.5283e-12,2.6748e-12,3.2124e-12,3.7809e-12,4.2893e-12,4.9802e-12,5.9213e-12,8.0187e-12,9.4683e-12,1.2391e-11,1.7347e-11,1.7892e-11,1.9108e-11,2.0303e-11,2.7811e-11,2.7824e-11,5.8489e-11,6.1775e-11,6.3678e-11,7.9356e-11,8.0649e-11,1.2386e-10,1.4645e-10,1.57e-10,1.8282e-10,2.0134e-10,2.3749e-10,2.4994e-10,3.695e-10,4.695e-10,9.8823e-10,1.2094e-09,1.2936e-09,1.4589e-09,2.0262e-09,2.1667e-09,2.2992e-09,3.0353e-09,3.9314e-09,4.3247e-09,4.675e-09,6.192e-09,9.2564e-09,1.4075e-08,1.8616e-08,1.9735e-08,3.309e-08,3.9497e-08,4.2883e-08,4.4475e-08,5.1532e-08,9.3876e-08,9.5691e-08,1.0613e-07,1.2499e-07,1.2906e-07,1.6276e-07,3.0579e-07,3.0832e-07,3.6748e-07,3.9129e-07,7.9327e-07,9.4502e-07,9.5723e-07,1.1182e-06,1.3782e-06,1.3838e-06,1.4074e-06,1.5952e-06,1.597e-06,1.7881e-06,1.8678e-06,3.4569e-06,4.5079e-06,4.5483e-06,6.1257e-06,6.6302e-06,7.49e-06,7.9458e-06,8.227e-06,8.5492e-06,8.6568e-06,8.9504e-06,1.0232e-05,1.0392e-05,1.073e-05,1.1014e-05,1.3403e-05,1.67e-05,2.2084e-05,2.4512e-05,3.0508e-05,3.8843e-05,4.2961e-05,4.5244e-05,7.9456e-05,8.4711e-05,8.8782e-05,9.7404e-05,0.00010951,0.00012113,0.00013142,0.00013333,0.00013455,0.000149,0.00019424,0.00019803,0.00021953,0.00025722,0.00028054,0.0002845,0.00046285,0.00046521,0.00051123,0.00061371,0.00063431,0.00071691,0.00073782,0.00090069,0.0010242,0.0013655,0.0013748,0.0018947,0.0019643,0.001987,0.002434,0.0024654,0.00265,0.0029124,0.0029991,0.0030663,0.0033443,0.0033925,0.0034243,0.003666,0.0037543,0.0037776,0.0039955,0.0040767,0.0045536,0.0054563,0.0056332,0.0056811,0.0061516,0.006356,0.0072521,0.0090992,0.0097507,0.010866,0.011304,0.012601,0.014019,0.014141,0.014236,0.014247,0.014697,0.014736,0.016232,0.016962,0.018412,0.018479,0.01889,0.021719,0.021807,0.023282,0.025064,0.028536,0.029022,0.030448,0.030775,0.031615,0.033066,0.0354,0.035465,0.041281,0.048848,0.049715,0.05069,0.050997,0.056256,0.059707,0.072691,0.073429,0.074934,0.077529,0.087796,0.099597,0.11387,0.11845,0.12124,0.12857,0.14436,0.15173,0.16168,0.17787,0.19273,0.19549,0.22677,0.23112,0.23272,0.2406,0.24378,0.27011,0.28191,0.28538,0.28574,0.2931,0.3032,0.30794,0.31007,0.34862,0.34866,0.38537,0.42937,0.47164,0.51166,0.52922,0.53384,0.54467,0.55416,0.57658,0.57906,0.62238,0.63329,0.65509,0.68193,0.69803,0.69984,0.71281,0.72144,0.74237,0.77271,0.77551,0.78845,0.80837,0.82406,0.82478,0.875,0.88257,0.88613,0.89507,0.89959,0.90655,0.91717,0.92129,0.92689,0.93551,0.94592,0.95505,0.95593,0.9659,0.9718,0.97654,0.98574,0.98919,0.99033,0.99386,0.99405,0.99533,0.99584,0.99983,1,0.99997,0.99919,0.99824,0.99807,0.99431,0.98167,0.97658,0.97371,0.96645,0.96578,0.95654,0.95547,0.94194,0.93324,0.91418,0.91236,0.91063,0.90966,0.90646,0.90381,0.90218,0.88434,0.88045,0.84128,0.82728,0.81779,0.81399,0.78153,0.78094,0.76991,0.7647,0.73811,0.73725,0.73524,0.715,0.70935,0.70734,0.70121,0.69325,0.68569,0.68176,0.6428,0.64141,0.62088,0.59004,0.56111,0.52127,0.52071,0.50674,0.4893,0.46657,0.46632,0.45854,0.42265,0.41449,0.4136,0.37334,0.36478,0.35989,0.34505,0.33068,0.30512,0.30123,0.28285,0.24431,0.24382,0.24083,0.23479,0.23012,0.22446,0.21789,0.16311,0.15058,0.13278,0.12063,0.12005,0.11873,0.10245,0.098915,0.098626,0.085189,0.065874,0.065325,0.060413,0.059436,0.049443,0.046914,0.041771,0.039284,0.036684,0.036195,0.033334,0.03285,0.032623,0.026949,0.025428,0.024811,0.022895,0.022318,0.019837,0.019306,0.018275,0.015916,0.015895,0.014861,0.014526,0.014526,0.012498,0.012438,0.011682,0.010928,0.0094342,0.0082477,0.0074807,0.0063925,0.0055156,0.004541,0.0045049,0.0038698,0.0033373,0.0030557,0.0024057,0.0022407,0.0019374,0.0017763,0.0014792,0.0014506,0.0013933,0.0012689,0.001041,0.000847,0.00075842,0.00067868,0.00064026,0.00063501,0.00057095,0.00050447,0.00034356,0.00030969,0.0002924,0.00025739,0.00025716,0.0002266,0.00022305,0.00020459,0.00019081,0.00015059,0.00014548,0.00012063,0.00010116,5.6279e-05,5.031e-05,4.7649e-05,4.1293e-05,3.607e-05,3.4255e-05,3.0888e-05,2.8667e-05,2.6123e-05,2.2386e-05,2.2367e-05,1.6898e-05,1.5676e-05,1.5432e-05,1.5303e-05,1.1456e-05,1.138e-05,1.1051e-05,1.0808e-05,1.0204e-05,9.2741e-06,8.5096e-06,5.7878e-06,2.4971e-06,1.9344e-06,1.891e-06,1.8559e-06,1.7464e-06,1.6882e-06,1.221e-06,9.8424e-07,8.4045e-07,7.6904e-07,6.3829e-07,5.4427e-07,5.2833e-07,4.2165e-07,3.7082e-07,3.1676e-07,2.4547e-07,1.7487e-07,1.7111e-07,1.5242e-07,1.4062e-07,1.3562e-07,9.1893e-08,8.2542e-08,5.0432e-08,4.3937e-08,3.4417e-08,3.0179e-08,2.8918e-08,2.2897e-08,2.2214e-08,2.0789e-08,1.7977e-08,1.3602e-08 1,6.5414e-15,9.7335e-15,9.9286e-15,1.1188e-14,1.2264e-14,1.3833e-14,1.7464e-14,3.0303e-14,4.2914e-14,4.5265e-14,5.961e-14,6.2344e-14,7.4482e-14,1.1458e-13,1.3108e-13,1.439e-13,2.1525e-13,2.306e-13,2.4889e-13,3.2139e-13,3.3032e-13,3.3556e-13,4.0742e-13,4.5675e-13,4.5845e-13,5.7051e-13,5.8196e-13,6.422e-13,6.5058e-13,6.5882e-13,1.2805e-12,2.3982e-12,2.5373e-12,3.0477e-12,3.5877e-12,4.0707e-12,4.727e-12,5.6212e-12,7.6147e-12,8.9928e-12,1.1772e-11,1.6486e-11,1.7005e-11,1.8162e-11,1.9299e-11,2.6443e-11,2.6456e-11,5.5656e-11,5.8786e-11,6.0599e-11,7.5537e-11,7.6769e-11,1.1795e-10,1.3949e-10,1.4955e-10,1.7417e-10,1.9184e-10,2.2632e-10,2.382e-10,3.523e-10,4.4776e-10,9.4326e-10,1.1546e-09,1.2351e-09,1.3931e-09,1.9356e-09,2.0699e-09,2.1967e-09,2.9009e-09,3.7585e-09,4.1349e-09,4.4702e-09,5.9227e-09,8.858e-09,1.3476e-08,1.783e-08,1.8903e-08,3.1715e-08,3.7863e-08,4.1114e-08,4.2642e-08,4.9417e-08,9.0092e-08,9.1836e-08,1.0187e-07,1.2e-07,1.2391e-07,1.5631e-07,2.9391e-07,2.9635e-07,3.5329e-07,3.7621e-07,7.6343e-07,9.0969e-07,9.2146e-07,1.0766e-06,1.3273e-06,1.3328e-06,1.3555e-06,1.5366e-06,1.5384e-06,1.7228e-06,1.7997e-06,3.3337e-06,4.3489e-06,4.388e-06,5.9124e-06,6.4001e-06,7.2313e-06,7.6721e-06,7.944e-06,8.2556e-06,8.3596e-06,8.6436e-06,9.8834e-06,1.0038e-05,1.0365e-05,1.064e-05,1.2952e-05,1.6143e-05,2.1357e-05,2.3708e-05,2.9518e-05,3.7597e-05,4.1589e-05,4.3804e-05,7.6997e-05,8.2098e-05,8.605e-05,9.4422e-05,0.00010618,0.00011747,0.00012746,0.00012932,0.0001305,0.00014454,0.00018852,0.0001922,0.00021311,0.00024976,0.00027245,0.00027631,0.00044991,0.00045221,0.00049703,0.00059687,0.00061694,0.00069744,0.00071782,0.00087661,0.00099709,0.0013301,0.0013392,0.0018468,0.0019148,0.0019369,0.0023737,0.0024043,0.0025848,0.0028413,0.0029261,0.0029917,0.0032636,0.0033107,0.0033418,0.0035782,0.0036646,0.0036874,0.0039006,0.00398,0.0044467,0.0053303,0.0055035,0.0055504,0.0060112,0.0062114,0.0070892,0.0088995,0.0095383,0.010632,0.011062,0.012334,0.013726,0.013845,0.013939,0.01395,0.014392,0.01443,0.015899,0.016615,0.018039,0.018105,0.018509,0.021288,0.021374,0.022824,0.024576,0.02799,0.028468,0.029871,0.030193,0.031019,0.032447,0.034743,0.034808,0.040534,0.047987,0.048841,0.049802,0.050104,0.055287,0.058689,0.071495,0.072224,0.073709,0.07627,0.086405,0.09806,0.11216,0.11669,0.11945,0.1267,0.14231,0.14961,0.15946,0.17549,0.19021,0.19295,0.22396,0.22827,0.22986,0.23767,0.24083,0.26696,0.27868,0.28213,0.28248,0.28979,0.29982,0.30454,0.30665,0.34497,0.34502,0.38153,0.42534,0.46746,0.50739,0.52491,0.52952,0.54033,0.54981,0.57221,0.57469,0.61799,0.62892,0.65073,0.67761,0.69375,0.69556,0.70856,0.71722,0.73822,0.76869,0.7715,0.78451,0.80454,0.82034,0.82107,0.87171,0.87936,0.88297,0.89201,0.89658,0.90362,0.91439,0.91858,0.92426,0.93301,0.94361,0.95294,0.95384,0.96404,0.97009,0.97498,0.98451,0.98811,0.98931,0.99304,0.99324,0.99461,0.99516,0.99967,0.99997,1,0.99946,0.99864,0.99849,0.99505,0.98301,0.97809,0.97531,0.96825,0.9676,0.95858,0.95753,0.94427,0.93572,0.91696,0.91517,0.91346,0.9125,0.90934,0.90673,0.90512,0.88749,0.88365,0.84484,0.83095,0.82153,0.81775,0.78548,0.7849,0.77392,0.76874,0.74226,0.74141,0.7394,0.71923,0.7136,0.71159,0.70547,0.69753,0.69,0.68607,0.64716,0.64578,0.62527,0.59442,0.56547,0.52558,0.52502,0.51101,0.49353,0.47074,0.47049,0.46269,0.42667,0.41847,0.41758,0.37714,0.36853,0.36362,0.3487,0.33425,0.30853,0.30461,0.28612,0.24729,0.24679,0.24378,0.23769,0.23299,0.22727,0.22065,0.16537,0.15271,0.13472,0.12243,0.12185,0.12051,0.10404,0.10046,0.10017,0.086564,0.066993,0.066436,0.061455,0.060464,0.050326,0.047759,0.042537,0.040012,0.037371,0.036874,0.033967,0.033476,0.033245,0.027477,0.02593,0.025302,0.023353,0.022767,0.020242,0.019701,0.018652,0.01625,0.016229,0.015176,0.014835,0.014834,0.012768,0.012707,0.011936,0.011168,0.0096445,0.0084342,0.0076516,0.0065409,0.0056455,0.00465,0.0046131,0.003964,0.0034196,0.0031317,0.0024668,0.002298,0.0019875,0.0018226,0.0015182,0.001489,0.0014303,0.0013028,0.0010693,0.00087032,0.00077946,0.00069766,0.00065824,0.00065286,0.00058711,0.00051886,0.00035361,0.00031881,0.00030104,0.00026506,0.00026482,0.00023341,0.00022975,0.00021077,0.0001966,0.00015522,0.00014996,0.00012438,0.00010434,5.8107e-05,5.1953e-05,4.9209e-05,4.2655e-05,3.7268e-05,3.5396e-05,3.1922e-05,2.963e-05,2.7004e-05,2.3146e-05,2.3127e-05,1.748e-05,1.6218e-05,1.5965e-05,1.5833e-05,1.1858e-05,1.1779e-05,1.1439e-05,1.1188e-05,1.0564e-05,9.6022e-06,8.8118e-06,5.9968e-06,2.5905e-06,2.0074e-06,1.9625e-06,1.9261e-06,1.8126e-06,1.7522e-06,1.2679e-06,1.0223e-06,8.7318e-07,7.9909e-07,6.634e-07,5.658e-07,5.4925e-07,4.3848e-07,3.8569e-07,3.2953e-07,2.5545e-07,1.8207e-07,1.7815e-07,1.5871e-07,1.4645e-07,1.4124e-07,9.5751e-08,8.6019e-08,5.2589e-08,4.5824e-08,3.5906e-08,3.149e-08,3.0175e-08,2.39e-08,2.3188e-08,2.1701e-08,1.8769e-08,1.4207e-08 1,5.0081e-15,7.4641e-15,7.6143e-15,8.5845e-15,9.4132e-15,1.0623e-14,1.3424e-14,2.3347e-14,3.3112e-14,3.4934e-14,4.6058e-14,4.8179e-14,5.7603e-14,8.8775e-14,1.0162e-13,1.116e-13,1.6723e-13,1.7921e-13,1.9348e-13,2.5012e-13,2.571e-13,2.612e-13,3.1741e-13,3.5601e-13,3.5734e-13,4.4512e-13,4.5409e-13,5.0131e-13,5.0788e-13,5.1434e-13,1.0026e-12,1.8831e-12,1.9928e-12,2.3957e-12,2.8222e-12,3.204e-12,3.7231e-12,4.431e-12,6.0107e-12,7.104e-12,9.311e-12,1.306e-11,1.3473e-11,1.4394e-11,1.53e-11,2.0995e-11,2.1005e-11,4.4345e-11,4.6852e-11,4.8303e-11,6.0274e-11,6.1262e-11,9.4322e-11,1.1164e-10,1.1973e-10,1.3955e-10,1.5378e-10,1.8157e-10,1.9114e-10,2.8325e-10,3.6044e-10,7.6217e-10,9.3393e-10,9.9939e-10,1.1279e-09,1.5698e-09,1.6793e-09,1.7827e-09,2.3577e-09,3.0588e-09,3.3669e-09,3.6414e-09,4.8319e-09,7.2423e-09,1.1043e-08,1.4633e-08,1.5519e-08,2.6113e-08,3.1206e-08,3.3901e-08,3.5168e-08,4.0791e-08,7.4621e-08,7.6074e-08,8.4433e-08,9.9559e-08,1.0282e-07,1.2989e-07,2.4514e-07,2.4719e-07,2.95e-07,3.1426e-07,6.4049e-07,7.6403e-07,7.7397e-07,9.0518e-07,1.1175e-06,1.1221e-06,1.1413e-06,1.2949e-06,1.2963e-06,1.4528e-06,1.5181e-06,2.8233e-06,3.6896e-06,3.7229e-06,5.0263e-06,5.4438e-06,6.1559e-06,6.5337e-06,6.7669e-06,7.0341e-06,7.1234e-06,7.367e-06,8.4315e-06,8.5645e-06,8.8449e-06,9.0813e-06,1.107e-05,1.3818e-05,1.8318e-05,2.035e-05,2.5377e-05,3.2379e-05,3.5844e-05,3.7766e-05,6.6665e-05,7.1116e-05,7.4566e-05,8.1879e-05,9.2158e-05,0.00010204,0.00011079,0.00011241,0.00011345,0.00012575,0.00016436,0.0001676,0.00018598,0.00021825,0.00023824,0.00024164,0.00039506,0.00039709,0.0004368,0.00052535,0.00054317,0.0006147,0.00063282,0.00077415,0.00088156,0.001179,0.0011871,0.0016419,0.001703,0.0017229,0.0021154,0.002143,0.0023054,0.0025365,0.0026129,0.0026721,0.0029174,0.0029599,0.002988,0.0032015,0.0032795,0.0033002,0.0034929,0.0035647,0.0039871,0.0047882,0.0049454,0.004988,0.0054065,0.0055885,0.006387,0.0080374,0.0086207,0.0096208,0.010014,0.011179,0.012455,0.012565,0.012651,0.012661,0.013066,0.013101,0.014451,0.01511,0.016421,0.016481,0.016853,0.019416,0.019495,0.020834,0.022453,0.025613,0.026056,0.027356,0.027655,0.028421,0.029747,0.031879,0.031939,0.037266,0.044217,0.045014,0.045912,0.046194,0.051041,0.054227,0.066243,0.066928,0.068324,0.070733,0.080279,0.091283,0.10463,0.10892,0.11154,0.11842,0.13327,0.14021,0.14961,0.16493,0.17902,0.18165,0.21142,0.21557,0.2171,0.22463,0.22767,0.25289,0.26423,0.26756,0.2679,0.27498,0.28471,0.28928,0.29133,0.32858,0.32863,0.36426,0.40717,0.44859,0.488,0.50534,0.50991,0.52063,0.53004,0.55231,0.55478,0.59799,0.60892,0.63079,0.65782,0.67409,0.67592,0.68905,0.69781,0.7191,0.75011,0.75298,0.76627,0.78681,0.80305,0.8038,0.85631,0.86431,0.86808,0.87758,0.88239,0.88982,0.90123,0.90568,0.91174,0.92112,0.93256,0.94271,0.9437,0.95496,0.96172,0.96724,0.97825,0.98255,0.984,0.98864,0.98889,0.99066,0.99139,0.99827,0.99919,0.99946,1,0.99982,0.99976,0.99778,0.9885,0.98437,0.982,0.97586,0.97529,0.9673,0.96636,0.95436,0.94653,0.92914,0.92746,0.92587,0.92497,0.92201,0.91956,0.91805,0.90142,0.89777,0.86071,0.84734,0.83824,0.83459,0.80325,0.80269,0.79198,0.78692,0.76099,0.76015,0.75818,0.73835,0.7328,0.73082,0.72478,0.71694,0.70949,0.70561,0.66702,0.66565,0.64522,0.61442,0.58542,0.54531,0.54475,0.53063,0.51298,0.48992,0.48967,0.48176,0.44519,0.43686,0.43594,0.3947,0.3859,0.38087,0.3656,0.35078,0.32436,0.32033,0.30128,0.26116,0.26065,0.25753,0.25122,0.24634,0.24042,0.23355,0.17595,0.1627,0.14384,0.13092,0.13031,0.1289,0.11154,0.10776,0.10745,0.093065,0.072293,0.0717,0.066397,0.065342,0.054523,0.051778,0.046188,0.043481,0.040646,0.040113,0.036989,0.036461,0.036212,0.030001,0.028332,0.027655,0.025549,0.024915,0.022183,0.021597,0.020461,0.017854,0.017831,0.016687,0.016316,0.016315,0.014066,0.014,0.01316,0.012322,0.010658,0.0093342,0.0084768,0.0072582,0.0062741,0.005178,0.0051373,0.0044212,0.0038196,0.003501,0.002764,0.0025766,0.0022315,0.002048,0.0017089,0.0016762,0.0016108,0.0014684,0.0012074,0.0009845,0.00088257,0.00079071,0.0007464,0.00074035,0.0006664,0.00058956,0.00040309,0.00036372,0.00034361,0.00030285,0.00030259,0.00026697,0.00026282,0.00024127,0.00022517,0.00017811,0.00017213,0.00014298,0.0001201,6.7182e-05,6.0117e-05,5.6965e-05,4.9429e-05,4.323e-05,4.1074e-05,3.7071e-05,3.4427e-05,3.1398e-05,2.6942e-05,2.692e-05,2.0386e-05,1.8924e-05,1.8632e-05,1.8478e-05,1.3867e-05,1.3776e-05,1.338e-05,1.3089e-05,1.2364e-05,1.1246e-05,1.0326e-05,7.0456e-06,3.0605e-06,2.3756e-06,2.3227e-06,2.2799e-06,2.1464e-06,2.0754e-06,1.5049e-06,1.215e-06,1.0388e-06,9.5117e-07,7.9057e-07,6.7493e-07,6.553e-07,5.2386e-07,4.6115e-07,3.9438e-07,3.0619e-07,2.1867e-07,2.1399e-07,1.9078e-07,1.7612e-07,1.6989e-07,1.1544e-07,1.0377e-07,6.3619e-08,5.5479e-08,4.3531e-08,3.8205e-08,3.6619e-08,2.9041e-08,2.8181e-08,2.6384e-08,2.2838e-08,1.7313e-08 1,4.2874e-15,6.396e-15,6.5251e-15,7.3586e-15,8.0707e-15,9.1106e-15,1.152e-14,2.0061e-14,2.8476e-14,3.0046e-14,3.9641e-14,4.1471e-14,4.9604e-14,7.6529e-14,8.7628e-14,9.6261e-14,1.4438e-13,1.5476e-13,1.6712e-13,2.1617e-13,2.2222e-13,2.2578e-13,2.7449e-13,3.0797e-13,3.0912e-13,3.8527e-13,3.9305e-13,4.3404e-13,4.3973e-13,4.4535e-13,8.696e-13,1.6359e-12,1.7315e-12,2.0826e-12,2.4544e-12,2.7873e-12,3.2402e-12,3.858e-12,5.2377e-12,6.1932e-12,8.1232e-12,1.1405e-11,1.1766e-11,1.2572e-11,1.3366e-11,1.8357e-11,1.8366e-11,3.8853e-11,4.1055e-11,4.2331e-11,5.2854e-11,5.3723e-11,8.2814e-11,9.8065e-11,1.0519e-10,1.2266e-10,1.352e-10,1.5971e-10,1.6816e-10,2.4947e-10,3.1768e-10,6.7322e-10,8.2543e-10,8.8346e-10,9.9746e-10,1.3896e-09,1.4868e-09,1.5787e-09,2.0896e-09,2.7131e-09,2.9873e-09,3.2316e-09,4.2918e-09,6.4409e-09,9.8343e-09,1.3043e-08,1.3835e-08,2.3318e-08,2.7883e-08,3.0299e-08,3.1435e-08,3.6478e-08,6.6866e-08,6.8172e-08,7.5689e-08,8.9298e-08,9.2235e-08,1.166e-07,2.2056e-07,2.224e-07,2.6558e-07,2.8298e-07,5.782e-07,6.9017e-07,6.9918e-07,8.1817e-07,1.0108e-06,1.015e-06,1.0325e-06,1.1719e-06,1.1733e-06,1.3154e-06,1.3747e-06,2.5627e-06,3.3524e-06,3.3828e-06,4.5724e-06,4.9537e-06,5.6044e-06,5.9497e-06,6.163e-06,6.4073e-06,6.4889e-06,6.7118e-06,7.6856e-06,7.8073e-06,8.064e-06,8.2804e-06,1.0102e-05,1.2621e-05,1.675e-05,1.8616e-05,2.3236e-05,2.9677e-05,3.2867e-05,3.4637e-05,6.1291e-05,6.5402e-05,6.8589e-05,7.5347e-05,8.485e-05,9.3987e-05,0.00010208,0.00010359,0.00010455,0.00011594,0.00015172,0.00015473,0.00017178,0.00020173,0.0002203,0.00022346,0.00036619,0.00036808,0.00040507,0.00048764,0.00050426,0.00057101,0.00058793,0.00071997,0.00082039,0.0010988,0.0011065,0.001533,0.0015903,0.001609,0.0019777,0.0020036,0.0021564,0.0023738,0.0024457,0.0025014,0.0027324,0.0027724,0.0027988,0.0030001,0.0030736,0.003093,0.0032747,0.0033424,0.0037409,0.0044973,0.0046458,0.004686,0.0050816,0.0052537,0.0060092,0.0075725,0.0081256,0.0090745,0.0094474,0.010554,0.011768,0.011872,0.011953,0.011963,0.012349,0.012382,0.013666,0.014294,0.015542,0.0156,0.015954,0.018398,0.018473,0.019751,0.021297,0.024317,0.02474,0.025983,0.026269,0.027002,0.028271,0.030313,0.03037,0.035476,0.042147,0.042913,0.043775,0.044047,0.048706,0.051771,0.063345,0.064005,0.065351,0.067675,0.07689,0.087526,0.10044,0.1046,0.10714,0.11381,0.12823,0.13497,0.14411,0.15902,0.17275,0.17531,0.20438,0.20843,0.20993,0.21728,0.22026,0.24495,0.25606,0.25933,0.25967,0.26661,0.27616,0.28065,0.28266,0.31928,0.31933,0.35443,0.39679,0.43778,0.47686,0.49409,0.49863,0.50929,0.51865,0.54083,0.54328,0.5864,0.59733,0.6192,0.64629,0.66262,0.66446,0.67765,0.68645,0.70789,0.73918,0.74207,0.75551,0.77631,0.7928,0.79356,0.84708,0.85527,0.85914,0.86888,0.87383,0.88148,0.89324,0.89784,0.90411,0.91385,0.92575,0.93637,0.93741,0.94925,0.95642,0.9623,0.97416,0.97885,0.98045,0.9856,0.98589,0.98789,0.98872,0.99697,0.99824,0.99864,0.99982,1,1,0.99887,0.99119,0.98753,0.9854,0.97982,0.9793,0.9719,0.97103,0.95978,0.95237,0.9358,0.9342,0.93267,0.93181,0.92897,0.92662,0.92517,0.90914,0.90562,0.86961,0.85656,0.84766,0.84409,0.81334,0.81278,0.80225,0.79726,0.77168,0.77085,0.76891,0.74929,0.74379,0.74184,0.73586,0.72808,0.72069,0.71684,0.67847,0.67711,0.65676,0.62601,0.59701,0.55682,0.55625,0.54208,0.52435,0.50115,0.5009,0.49294,0.45607,0.44766,0.44674,0.40505,0.39615,0.39106,0.37559,0.36056,0.33374,0.32965,0.31028,0.26943,0.2689,0.26572,0.25929,0.25431,0.24826,0.24125,0.18231,0.16871,0.14933,0.13604,0.13541,0.13397,0.11608,0.11218,0.11186,0.097008,0.075518,0.074905,0.069408,0.068314,0.057086,0.054234,0.048422,0.045605,0.042654,0.042098,0.038844,0.038293,0.038034,0.031554,0.029811,0.029103,0.026902,0.026239,0.02338,0.022768,0.021577,0.018846,0.018822,0.017622,0.017233,0.017232,0.014872,0.014802,0.013919,0.013039,0.011288,0.0098944,0.0089909,0.0077058,0.0066669,0.0055084,0.0054654,0.0047076,0.0040705,0.0037328,0.0029509,0.0027519,0.0023853,0.0021901,0.0018293,0.0017945,0.0017248,0.0015731,0.0012948,0.0010569,0.00094802,0.00084982,0.00080243,0.00079596,0.00071683,0.00063456,0.00043467,0.00039241,0.00037082,0.00032703,0.00032674,0.00028845,0.00028399,0.00026081,0.00024349,0.00019281,0.00018636,0.00015493,0.00013024,7.3043e-05,6.5394e-05,6.1979e-05,5.3813e-05,4.709e-05,4.4752e-05,4.0408e-05,3.7538e-05,3.4248e-05,2.9406e-05,2.9382e-05,2.2277e-05,2.0686e-05,2.0368e-05,2.02e-05,1.5177e-05,1.5078e-05,1.4646e-05,1.4329e-05,1.3538e-05,1.2318e-05,1.1315e-05,7.732e-06,3.3695e-06,2.618e-06,2.5599e-06,2.5129e-06,2.3663e-06,2.2883e-06,1.6612e-06,1.3423e-06,1.1483e-06,1.0518e-06,8.7476e-07,7.4722e-07,7.2557e-07,5.805e-07,5.1124e-07,4.3746e-07,3.3994e-07,2.4305e-07,2.3787e-07,2.1215e-07,1.959e-07,1.89e-07,1.2859e-07,1.1563e-07,7.101e-08,6.1952e-08,4.8649e-08,4.2715e-08,4.0948e-08,3.2499e-08,3.1539e-08,2.9534e-08,2.5576e-08,1.9406e-08 1,4.1874e-15,6.2477e-15,6.3738e-15,7.1883e-15,7.8842e-15,8.9004e-15,1.1255e-14,1.9604e-14,2.783e-14,2.9366e-14,3.8747e-14,4.0537e-14,4.849e-14,7.4822e-14,8.5679e-14,9.4122e-14,1.412e-13,1.5134e-13,1.6344e-13,2.1144e-13,2.1735e-13,2.2083e-13,2.685e-13,3.0126e-13,3.0239e-13,3.769e-13,3.8453e-13,4.2464e-13,4.3021e-13,4.3571e-13,8.51e-13,1.6013e-12,1.6949e-12,2.0387e-12,2.4029e-12,2.7289e-12,3.1726e-12,3.7777e-12,5.1293e-12,6.0654e-12,7.9564e-12,1.1172e-11,1.1526e-11,1.2317e-11,1.3094e-11,1.7986e-11,1.7995e-11,3.808e-11,4.0239e-11,4.149e-11,5.1809e-11,5.2661e-11,8.1193e-11,9.6152e-11,1.0314e-10,1.2028e-10,1.3258e-10,1.5663e-10,1.6492e-10,2.4471e-10,3.1164e-10,6.6064e-10,8.1008e-10,8.6706e-10,9.7899e-10,1.364e-09,1.4596e-09,1.5498e-09,2.0516e-09,2.6641e-09,2.9334e-09,3.1735e-09,4.2152e-09,6.3272e-09,9.6625e-09,1.2817e-08,1.3596e-08,2.292e-08,2.741e-08,2.9786e-08,3.0903e-08,3.5864e-08,6.5759e-08,6.7045e-08,7.4442e-08,8.7833e-08,9.0724e-08,1.1471e-07,2.1704e-07,2.1886e-07,2.6138e-07,2.7851e-07,5.6927e-07,6.7958e-07,6.8846e-07,8.0569e-07,9.9551e-07,9.9967e-07,1.0169e-06,1.1543e-06,1.1556e-06,1.2957e-06,1.3542e-06,2.5252e-06,3.3039e-06,3.3339e-06,4.507e-06,4.8831e-06,5.5249e-06,5.8656e-06,6.076e-06,6.317e-06,6.3975e-06,6.6173e-06,7.5781e-06,7.6982e-06,7.9514e-06,8.1649e-06,9.9619e-06,1.2448e-05,1.6523e-05,1.8365e-05,2.2926e-05,2.9286e-05,3.2436e-05,3.4185e-05,6.0513e-05,6.4574e-05,6.7723e-05,7.44e-05,8.379e-05,9.282e-05,0.00010082,0.00010231,0.00010326,0.00011452,0.00014988,0.00015286,0.00016971,0.00019933,0.00021769,0.00022082,0.00036198,0.00036386,0.00040045,0.00048214,0.00049859,0.00056464,0.00058138,0.00071206,0.00081146,0.0010871,0.0010947,0.0015171,0.0015738,0.0015923,0.0019576,0.0019832,0.0021345,0.0023499,0.0024212,0.0024764,0.0027052,0.0027449,0.0027711,0.0029705,0.0030434,0.0030626,0.0032427,0.0033098,0.0037048,0.0044546,0.0046018,0.0046417,0.0050339,0.0052045,0.0059536,0.0075041,0.0080528,0.0089941,0.009364,0.010462,0.011666,0.01177,0.01185,0.01186,0.012243,0.012276,0.01355,0.014173,0.015412,0.015469,0.015821,0.018247,0.018323,0.019591,0.021126,0.024125,0.024545,0.02578,0.026064,0.026793,0.028052,0.030081,0.030138,0.035211,0.04184,0.042602,0.043459,0.043728,0.04836,0.051406,0.062914,0.063571,0.06491,0.067221,0.076386,0.086967,0.09982,0.10396,0.10649,0.11313,0.12747,0.13419,0.14329,0.15814,0.17181,0.17437,0.20332,0.20736,0.20885,0.21618,0.21915,0.24376,0.25484,0.2581,0.25843,0.26536,0.27487,0.27935,0.28136,0.31788,0.31793,0.35295,0.39522,0.43615,0.47518,0.49238,0.49692,0.50757,0.51692,0.53909,0.54154,0.58464,0.59557,0.61744,0.64454,0.66087,0.66271,0.67592,0.68472,0.70618,0.73751,0.74041,0.75387,0.77471,0.79123,0.792,0.84566,0.85388,0.85777,0.86754,0.87251,0.88019,0.89201,0.89663,0.90293,0.91272,0.9247,0.93538,0.93642,0.94836,0.95558,0.96152,0.97351,0.97826,0.97988,0.98511,0.98541,0.98744,0.98829,0.99674,0.99807,0.99849,0.99976,1,1,0.99901,0.99157,0.98798,0.98589,0.98039,0.97987,0.97257,0.9717,0.96057,0.95323,0.93679,0.93519,0.93368,0.93283,0.93001,0.92767,0.92622,0.91029,0.90678,0.87094,0.85794,0.84907,0.84551,0.81485,0.8143,0.80379,0.79882,0.77329,0.77247,0.77052,0.75094,0.74545,0.7435,0.73753,0.72976,0.72238,0.71853,0.68021,0.67884,0.6585,0.62777,0.59877,0.55857,0.558,0.54382,0.52608,0.50286,0.50261,0.49464,0.45773,0.44931,0.44838,0.40664,0.39771,0.39261,0.37711,0.36206,0.33518,0.33107,0.31166,0.27069,0.27017,0.26698,0.26052,0.25553,0.24947,0.24243,0.18328,0.16964,0.15018,0.13683,0.1362,0.13475,0.11678,0.11286,0.11254,0.097617,0.076018,0.075401,0.069875,0.068775,0.057484,0.054615,0.048769,0.045935,0.042966,0.042407,0.039132,0.038578,0.038317,0.031795,0.030041,0.029328,0.027113,0.026445,0.023567,0.02295,0.021751,0.019,0.018976,0.017768,0.017376,0.017375,0.014997,0.014927,0.014038,0.013151,0.011387,0.0099819,0.0090713,0.0077758,0.0067284,0.0055602,0.0055168,0.0047526,0.0041099,0.0037692,0.0029803,0.0027795,0.0024094,0.0022125,0.0018482,0.0018131,0.0017427,0.0015896,0.0013086,0.0010683,0.00095834,0.00085914,0.00081127,0.00080473,0.00072479,0.00064167,0.00043965,0.00039694,0.00037512,0.00033085,0.00033056,0.00029185,0.00028734,0.0002639,0.00024639,0.00019513,0.00018861,0.00015682,0.00013185,7.3973e-05,6.6232e-05,6.2775e-05,5.451e-05,4.7704e-05,4.5337e-05,4.0938e-05,3.8033e-05,3.4701e-05,2.9799e-05,2.9774e-05,2.2578e-05,2.0966e-05,2.0644e-05,2.0474e-05,1.5386e-05,1.5285e-05,1.4848e-05,1.4527e-05,1.3725e-05,1.249e-05,1.1473e-05,7.8416e-06,3.4189e-06,2.6567e-06,2.5979e-06,2.5501e-06,2.4014e-06,2.3224e-06,1.6863e-06,1.3627e-06,1.1658e-06,1.0679e-06,8.8826e-07,7.5882e-07,7.3685e-07,5.8959e-07,5.1929e-07,4.4438e-07,3.4536e-07,2.4698e-07,2.4171e-07,2.1559e-07,1.9909e-07,1.9208e-07,1.3071e-07,1.1754e-07,7.2202e-08,6.2996e-08,4.9475e-08,4.3443e-08,4.1646e-08,3.3057e-08,3.2081e-08,3.0043e-08,2.6019e-08,1.9744e-08 1,2.9098e-15,4.3511e-15,4.4394e-15,5.01e-15,5.4979e-15,6.2107e-15,7.8638e-15,1.374e-14,1.9544e-14,2.0629e-14,2.7262e-14,2.8528e-14,3.416e-14,5.2842e-14,6.0556e-14,6.6559e-14,1.0008e-13,1.0732e-13,1.1595e-13,1.5022e-13,1.5445e-13,1.5694e-13,1.9103e-13,2.1448e-13,2.1529e-13,2.687e-13,2.7416e-13,3.0294e-13,3.0694e-13,3.1088e-13,6.0962e-13,1.1515e-12,1.2192e-12,1.4682e-12,1.7321e-12,1.9687e-12,2.2909e-12,2.7308e-12,3.7148e-12,4.3973e-12,5.778e-12,8.1305e-12,8.3897e-12,8.9689e-12,9.5387e-12,1.3129e-11,1.3135e-11,2.793e-11,2.9524e-11,3.0448e-11,3.8075e-11,3.8705e-11,5.9844e-11,7.0949e-11,7.6143e-11,8.8881e-11,9.8038e-11,1.1594e-10,1.2212e-10,1.8169e-10,2.3176e-10,4.9382e-10,6.0638e-10,6.4933e-10,7.3377e-10,1.0247e-09,1.097e-09,1.1653e-09,1.5457e-09,2.0109e-09,2.2157e-09,2.3983e-09,3.1921e-09,4.8054e-09,7.3614e-09,9.785e-09,1.0384e-08,1.7574e-08,2.1045e-08,2.2884e-08,2.3749e-08,2.7592e-08,5.0829e-08,5.183e-08,5.7595e-08,6.8044e-08,7.0301e-08,8.905e-08,1.6935e-07,1.7078e-07,2.0425e-07,2.1775e-07,4.4771e-07,5.3525e-07,5.423e-07,6.3549e-07,7.8662e-07,7.8992e-07,8.0362e-07,9.1322e-07,9.1427e-07,1.0261e-06,1.0728e-06,2.0114e-06,2.6379e-06,2.6621e-06,3.6085e-06,3.9125e-06,4.4317e-06,4.7075e-06,4.8779e-06,5.0732e-06,5.1384e-06,5.3166e-06,6.0961e-06,6.1936e-06,6.3992e-06,6.5727e-06,8.034e-06,1.006e-05,1.3389e-05,1.4897e-05,1.8636e-05,2.3862e-05,2.6455e-05,2.7896e-05,4.9662e-05,5.303e-05,5.5643e-05,6.1188e-05,6.8995e-05,7.6511e-05,8.3178e-05,8.442e-05,8.5208e-05,9.4603e-05,0.00012417,0.00012666,0.00014079,0.00016564,0.00018107,0.0001837,0.00030278,0.00030437,0.00033534,0.0004046,0.00041856,0.00047469,0.00048893,0.00060024,0.00068509,0.00092104,0.00092751,0.0012905,0.0013394,0.0013553,0.0016706,0.0016928,0.0018236,0.0020101,0.0020718,0.0021197,0.0023182,0.0023527,0.0023754,0.0025486,0.002612,0.0026287,0.0027854,0.0028438,0.0031879,0.0038426,0.0039713,0.0040063,0.0043496,0.004499,0.0051562,0.0065203,0.0070041,0.0078353,0.0081624,0.0091347,0.010202,0.010294,0.010366,0.010374,0.010714,0.010743,0.011877,0.012431,0.013535,0.013586,0.0139,0.016067,0.016135,0.01727,0.018646,0.021338,0.021716,0.022827,0.023083,0.023739,0.024874,0.026704,0.026755,0.031342,0.037355,0.038047,0.038826,0.039072,0.043288,0.046066,0.056592,0.057193,0.058421,0.060541,0.068967,0.078724,0.090614,0.09445,0.096798,0.10296,0.11632,0.12259,0.1311,0.14501,0.15786,0.16026,0.18757,0.1914,0.1928,0.19975,0.20256,0.22594,0.23648,0.23959,0.23991,0.24651,0.2556,0.25988,0.2618,0.29683,0.29687,0.33061,0.37155,0.41138,0.44956,0.46646,0.47092,0.4814,0.49061,0.5125,0.51492,0.55768,0.56856,0.59039,0.61753,0.63395,0.6358,0.6491,0.65799,0.67971,0.71157,0.71453,0.72829,0.74966,0.76668,0.76747,0.82328,0.83191,0.836,0.84632,0.85157,0.85972,0.87232,0.87727,0.88403,0.89459,0.90761,0.91934,0.92049,0.93375,0.94188,0.94864,0.96254,0.96819,0.97014,0.97656,0.97692,0.97948,0.98056,0.99216,0.99431,0.99505,0.99778,0.99887,0.99901,1,0.99635,0.99387,0.99234,0.98815,0.98774,0.98188,0.98117,0.97184,0.96552,0.95107,0.94964,0.94829,0.94753,0.945,0.9429,0.9416,0.92714,0.92394,0.89072,0.87852,0.87015,0.86678,0.83762,0.83709,0.82702,0.82224,0.79763,0.79684,0.79495,0.77595,0.77062,0.76871,0.76289,0.75532,0.7481,0.74433,0.70667,0.70533,0.68523,0.65473,0.62582,0.58553,0.58496,0.5707,0.55281,0.52934,0.52908,0.52101,0.4835,0.47492,0.47398,0.43128,0.42213,0.41689,0.40095,0.38544,0.35768,0.35342,0.33329,0.29065,0.2901,0.28677,0.28002,0.2748,0.26845,0.26108,0.19878,0.18432,0.16364,0.14941,0.14874,0.14719,0.12796,0.12376,0.12342,0.10737,0.084035,0.083367,0.077372,0.076177,0.063888,0.060758,0.054366,0.051262,0.048006,0.047393,0.043795,0.043186,0.042899,0.035711,0.033773,0.032986,0.030534,0.029795,0.026602,0.025917,0.024585,0.021522,0.021494,0.020147,0.019709,0.019709,0.01705,0.016971,0.015976,0.014981,0.013,0.011418,0.010391,0.0089267,0.0077402,0.0064134,0.0063641,0.0054937,0.0047601,0.0043706,0.0034666,0.0032359,0.0028103,0.0025834,0.002163,0.0021224,0.002041,0.0018638,0.001538,0.0012587,0.0011306,0.0010149,0.00095901,0.00095138,0.00085792,0.00076061,0.00052342,0.00047312,0.00044739,0.00039515,0.00039481,0.00034905,0.00034372,0.00031597,0.00029523,0.00023441,0.00022666,0.00018883,0.00015905,8.9772e-05,8.0468e-05,7.631e-05,6.6357e-05,5.815e-05,5.5292e-05,4.9979e-05,4.6466e-05,4.2434e-05,3.6493e-05,3.6464e-05,2.7725e-05,2.5764e-05,2.5372e-05,2.5165e-05,1.8962e-05,1.884e-05,1.8306e-05,1.7914e-05,1.6934e-05,1.5423e-05,1.4179e-05,9.7255e-06,4.2722e-06,3.3273e-06,3.2541e-06,3.1949e-06,3.0102e-06,2.9119e-06,2.1202e-06,1.7166e-06,1.4705e-06,1.348e-06,1.123e-06,9.6063e-07,9.3304e-07,7.4797e-07,6.5947e-07,5.6507e-07,4.4007e-07,3.1557e-07,3.089e-07,2.7577e-07,2.5482e-07,2.4592e-07,1.6786e-07,1.5108e-07,9.3157e-08,8.1365e-08,6.4022e-08,5.6272e-08,5.3962e-08,4.2908e-08,4.1651e-08,3.9024e-08,3.3834e-08,2.5728e-08 1,1.4405e-15,2.163e-15,2.2074e-15,2.4943e-15,2.7399e-15,3.0991e-15,3.9338e-15,6.9142e-15,9.8724e-15,1.0426e-14,1.382e-14,1.4469e-14,1.736e-14,2.6981e-14,3.0966e-14,3.4072e-14,5.1464e-14,5.5227e-14,5.9717e-14,7.7594e-14,7.9803e-14,8.1102e-14,9.8938e-14,1.1123e-13,1.1165e-13,1.3969e-13,1.4257e-13,1.5771e-13,1.5982e-13,1.6189e-13,3.1989e-13,6.0865e-13,6.4487e-13,7.7822e-13,9.1991e-13,1.0471e-12,1.2206e-12,1.458e-12,1.9906e-12,2.361e-12,3.1123e-12,4.3974e-12,4.5393e-12,4.8565e-12,5.1689e-12,7.1417e-12,7.1452e-12,1.5333e-11,1.622e-11,1.6733e-11,2.0983e-11,2.1335e-11,3.3165e-11,3.9403e-11,4.2325e-11,4.9501e-11,5.4669e-11,6.4791e-11,6.8289e-11,1.0211e-10,1.3066e-10,2.8114e-10,3.4614e-10,3.71e-10,4.1992e-10,5.8903e-10,6.3114e-10,6.7097e-10,8.9334e-10,1.1664e-09,1.2868e-09,1.3944e-09,1.8631e-09,2.8206e-09,4.3465e-09,5.8007e-09,6.161e-09,1.0505e-08,1.2612e-08,1.3731e-08,1.4258e-08,1.6601e-08,3.0856e-08,3.1473e-08,3.5028e-08,4.1485e-08,4.2882e-08,5.4511e-08,1.0468e-07,1.0558e-07,1.2662e-07,1.3512e-07,2.8096e-07,3.3685e-07,3.4136e-07,4.0103e-07,4.981e-07,5.0023e-07,5.0905e-07,5.7967e-07,5.8035e-07,6.5257e-07,6.8277e-07,1.2935e-06,1.704e-06,1.7199e-06,2.3435e-06,2.5444e-06,2.8882e-06,3.0712e-06,3.1843e-06,3.314e-06,3.3574e-06,3.4759e-06,3.995e-06,4.06e-06,4.1972e-06,4.313e-06,5.2905e-06,6.651e-06,8.8976e-06,9.9185e-06,1.2459e-05,1.6026e-05,1.7801e-05,1.8789e-05,3.3818e-05,3.6157e-05,3.7973e-05,4.1834e-05,4.7282e-05,5.2539e-05,5.7211e-05,5.8083e-05,5.8636e-05,6.5235e-05,8.6093e-05,8.7853e-05,9.786e-05,0.00011552,0.00012651,0.00012839,0.00021384,0.00021498,0.00023735,0.00028752,0.00029767,0.00033851,0.00034889,0.00043026,0.00049252,0.0006666,0.0006714,0.00094134,0.00097784,0.00098975,0.001226,0.0012427,0.0013411,0.0014818,0.0015284,0.0015646,0.0017149,0.001741,0.0017582,0.0018897,0.0019379,0.0019506,0.0020698,0.0021144,0.002377,0.0028788,0.0029777,0.0030046,0.003269,0.0033843,0.0038925,0.0049532,0.005331,0.0059819,0.0062387,0.0070036,0.0078464,0.007919,0.0079758,0.0079824,0.0082516,0.0082748,0.0091739,0.0096147,0.010495,0.010535,0.010786,0.012521,0.012575,0.013487,0.014595,0.016772,0.017078,0.01798,0.018187,0.01872,0.019644,0.021137,0.021179,0.024936,0.029892,0.030465,0.03111,0.031313,0.034813,0.037126,0.045939,0.046445,0.047478,0.049264,0.056389,0.064685,0.074859,0.078155,0.080175,0.085492,0.097064,0.10252,0.10994,0.12214,0.13346,0.13558,0.15983,0.16324,0.1645,0.17071,0.17323,0.19425,0.20378,0.20659,0.20688,0.21287,0.22113,0.22503,0.22678,0.25885,0.25889,0.29006,0.32823,0.36574,0.40203,0.41819,0.42246,0.43253,0.44141,0.46257,0.46492,0.50661,0.51729,0.53881,0.56574,0.58212,0.58398,0.59732,0.60627,0.62822,0.6607,0.66373,0.67787,0.69999,0.71773,0.71856,0.77769,0.78698,0.7914,0.80259,0.80833,0.81725,0.83115,0.83665,0.8442,0.85608,0.87089,0.88443,0.88576,0.90136,0.91109,0.9193,0.93664,0.94392,0.94646,0.95505,0.95554,0.95907,0.96058,0.978,0.98167,0.98301,0.9885,0.99119,0.99157,0.99635,1,0.99968,0.99926,0.99763,0.99744,0.99442,0.99402,0.98828,0.98404,0.97361,0.97254,0.97153,0.97095,0.96902,0.96741,0.96641,0.95499,0.95241,0.92473,0.91424,0.90697,0.90402,0.87813,0.87766,0.86858,0.86426,0.84175,0.84102,0.83928,0.82166,0.81668,0.81491,0.80945,0.80234,0.79554,0.79198,0.75608,0.75479,0.73541,0.70575,0.67734,0.63735,0.63678,0.62251,0.60452,0.5808,0.58054,0.57234,0.53404,0.52522,0.52425,0.4801,0.47057,0.46511,0.44844,0.43216,0.40285,0.39835,0.37695,0.33124,0.33065,0.32706,0.31978,0.31413,0.30725,0.29925,0.23096,0.21492,0.19185,0.17587,0.17511,0.17337,0.15163,0.14686,0.14647,0.12815,0.10128,0.1005,0.093539,0.092149,0.077788,0.074112,0.06658,0.062909,0.059048,0.05832,0.054039,0.053313,0.05297,0.044368,0.042038,0.041089,0.038131,0.037237,0.033367,0.032535,0.030914,0.027175,0.027141,0.025491,0.024953,0.024953,0.021682,0.021585,0.020355,0.019124,0.016664,0.014691,0.013405,0.011566,0.010068,0.0083847,0.008322,0.0072121,0.0062726,0.0057722,0.0046056,0.0043066,0.0037535,0.0034576,0.0029076,0.0028544,0.0027476,0.0025145,0.0020845,0.0017141,0.0015435,0.001389,0.0013142,0.001304,0.0011787,0.0010478,0.00072709,0.00065868,0.00062362,0.00055228,0.00055182,0.00048915,0.00048184,0.00044374,0.00041521,0.00033128,0.00032055,0.00026807,0.00022659,0.00012937,0.00011621,0.00011032,9.6197e-05,8.4516e-05,8.0441e-05,7.2852e-05,6.7826e-05,6.2048e-05,5.3515e-05,5.3472e-05,4.0867e-05,3.8029e-05,3.7461e-05,3.7161e-05,2.8148e-05,2.7969e-05,2.7191e-05,2.6619e-05,2.5189e-05,2.2981e-05,2.1159e-05,1.4612e-05,6.5117e-06,5.0931e-06,4.9831e-06,4.8939e-06,4.6156e-06,4.4675e-06,3.2703e-06,2.657e-06,2.2819e-06,2.0948e-06,1.7504e-06,1.5011e-06,1.4587e-06,1.1736e-06,1.0368e-06,8.9059e-07,6.9634e-07,5.0194e-07,4.915e-07,4.3956e-07,4.0667e-07,3.9268e-07,2.6962e-07,2.4306e-07,1.5097e-07,1.3213e-07,1.0434e-07,9.1883e-08,8.8166e-08,7.0343e-08,6.8312e-08,6.4065e-08,5.566e-08,4.2494e-08 1,1.1673e-15,1.755e-15,1.7911e-15,2.0247e-15,2.2247e-15,2.5173e-15,3.1977e-15,5.6303e-15,8.0482e-15,8.5012e-15,1.1279e-14,1.181e-14,1.4177e-14,2.2067e-14,2.5337e-14,2.7886e-14,4.2177e-14,4.5271e-14,4.8965e-14,6.3677e-14,6.5496e-14,6.6565e-14,8.1258e-14,9.1386e-14,9.1735e-14,1.1486e-13,1.1723e-13,1.2972e-13,1.3146e-13,1.3318e-13,2.6375e-13,5.0292e-13,5.3295e-13,6.4357e-13,7.6117e-13,8.6681e-13,1.011e-12,1.2083e-12,1.6514e-12,1.9599e-12,2.5861e-12,3.6583e-12,3.7768e-12,4.0418e-12,4.3026e-12,5.9516e-12,5.9546e-12,1.2813e-11,1.3556e-11,1.3987e-11,1.7554e-11,1.7849e-11,2.7792e-11,3.304e-11,3.5499e-11,4.1542e-11,4.5896e-11,5.4428e-11,5.7377e-11,8.5922e-11,1.1005e-10,2.3748e-10,2.9262e-10,3.1372e-10,3.5526e-10,4.9898e-10,5.348e-10,5.6869e-10,7.5801e-10,9.907e-10,1.0935e-09,1.1852e-09,1.5855e-09,2.4043e-09,3.7116e-09,4.9591e-09,5.2685e-09,9.0034e-09,1.0818e-08,1.1781e-08,1.2235e-08,1.4255e-08,2.6566e-08,2.71e-08,3.0175e-08,3.5764e-08,3.6973e-08,4.7049e-08,9.0614e-08,9.1395e-08,1.097e-07,1.171e-07,2.443e-07,2.9314e-07,2.9708e-07,3.4928e-07,4.3427e-07,4.3613e-07,4.4385e-07,5.0574e-07,5.0633e-07,5.6966e-07,5.9615e-07,1.1328e-06,1.4945e-06,1.5085e-06,2.0585e-06,2.2359e-06,2.5397e-06,2.7014e-06,2.8014e-06,2.9161e-06,2.9545e-06,3.0593e-06,3.5186e-06,3.5762e-06,3.6977e-06,3.8002e-06,4.6664e-06,5.8734e-06,7.8693e-06,8.7773e-06,1.1039e-05,1.4218e-05,1.5803e-05,1.6684e-05,3.0127e-05,3.2223e-05,3.3851e-05,3.7313e-05,4.2202e-05,4.6922e-05,5.112e-05,5.1903e-05,5.24e-05,5.8333e-05,7.7108e-05,7.8695e-05,8.7714e-05,0.00010364,0.00011357,0.00011526,0.00019257,0.00019361,0.00021389,0.00025941,0.00026862,0.00030573,0.00031516,0.00038919,0.0004459,0.0006047,0.00060908,0.00085591,0.00088933,0.00090024,0.0011168,0.0011321,0.0012224,0.0013515,0.0013944,0.0014276,0.0015658,0.0015898,0.0016056,0.0017266,0.0017709,0.0017827,0.0018924,0.0019334,0.0021754,0.0026384,0.0027298,0.0027546,0.0029989,0.0031055,0.0035756,0.0045583,0.0049089,0.0055133,0.0057518,0.0064631,0.0072474,0.0073151,0.0073679,0.0073741,0.0076249,0.0076464,0.0084845,0.0088957,0.0097168,0.0097549,0.0099888,0.01161,0.011661,0.012515,0.013552,0.015592,0.015879,0.016725,0.01692,0.017421,0.018288,0.019691,0.019731,0.023266,0.027938,0.028478,0.029087,0.029279,0.032585,0.034772,0.043118,0.043598,0.044578,0.046273,0.05304,0.060933,0.07063,0.073775,0.075704,0.080783,0.091854,0.09708,0.1042,0.1159,0.12678,0.12882,0.15219,0.15548,0.1567,0.1627,0.16513,0.18546,0.19469,0.19742,0.1977,0.20351,0.21152,0.2153,0.217,0.24819,0.24823,0.27861,0.31592,0.35268,0.38835,0.40426,0.40848,0.41841,0.42716,0.44806,0.45038,0.49167,0.50226,0.52364,0.55043,0.56676,0.56861,0.58193,0.59087,0.61282,0.64539,0.64843,0.66265,0.68491,0.70281,0.70364,0.76356,0.77302,0.77752,0.78893,0.79479,0.80391,0.81815,0.82379,0.83155,0.84377,0.85906,0.87308,0.87447,0.8907,0.90087,0.90948,0.92777,0.93551,0.93822,0.94741,0.94795,0.95174,0.95338,0.97246,0.97658,0.97809,0.98437,0.98753,0.98798,0.99387,0.99968,1,0.99991,0.99905,0.99894,0.99678,0.99647,0.99182,0.98821,0.97903,0.97807,0.97716,0.97664,0.9749,0.97344,0.97253,0.96207,0.95968,0.93377,0.92383,0.91691,0.9141,0.88929,0.88883,0.88009,0.87591,0.85412,0.85341,0.85172,0.83458,0.82972,0.82799,0.82267,0.81571,0.80906,0.80557,0.77033,0.76906,0.74996,0.72064,0.69248,0.65269,0.65212,0.63789,0.61992,0.59619,0.59593,0.58772,0.54927,0.5404,0.53943,0.49494,0.48532,0.4798,0.46295,0.44647,0.41675,0.41218,0.39043,0.34388,0.34328,0.33961,0.33217,0.3264,0.31937,0.31119,0.24114,0.22463,0.20085,0.18434,0.18356,0.18175,0.15924,0.1543,0.1539,0.13488,0.1069,0.10609,0.098824,0.097373,0.082357,0.078508,0.070612,0.06676,0.062706,0.06194,0.05744,0.056676,0.056316,0.047257,0.044799,0.043798,0.040675,0.039731,0.035641,0.03476,0.033044,0.029083,0.029048,0.027297,0.026727,0.026727,0.023253,0.02315,0.021843,0.020533,0.017914,0.015811,0.014439,0.012473,0.01087,0.0090669,0.0089996,0.0078084,0.0067989,0.0062607,0.0050041,0.0046817,0.0040847,0.003765,0.0031702,0.0031126,0.002997,0.0027446,0.0022783,0.0018761,0.0016906,0.0015225,0.0014411,0.00143,0.0012935,0.0011508,0.00080054,0.00072569,0.00068731,0.00060918,0.00060867,0.00053997,0.00053195,0.00049016,0.00045883,0.00036662,0.00035481,0.00029705,0.00025135,0.000144,0.00012944,0.00012292,0.00010727,9.4313e-05,8.9791e-05,8.1367e-05,7.5785e-05,6.9365e-05,5.9876e-05,5.9829e-05,4.5796e-05,4.2632e-05,4.1999e-05,4.1665e-05,3.1608e-05,3.1409e-05,3.054e-05,2.99e-05,2.8303e-05,2.5835e-05,2.3797e-05,1.6467e-05,7.3699e-06,5.7716e-06,5.6476e-06,5.547e-06,5.2332e-06,5.0661e-06,3.7143e-06,3.021e-06,2.5965e-06,2.3846e-06,1.9943e-06,1.7116e-06,1.6635e-06,1.3397e-06,1.1843e-06,1.018e-06,7.9692e-07,5.7534e-07,5.6342e-07,5.0415e-07,4.6659e-07,4.5062e-07,3.0994e-07,2.7954e-07,1.7401e-07,1.5239e-07,1.2046e-07,1.0614e-07,1.0187e-07,8.1355e-08,7.9016e-08,7.4125e-08,6.444e-08,4.9255e-08 1,1.0472e-15,1.5755e-15,1.6079e-15,1.818e-15,1.9978e-15,2.2611e-15,2.8733e-15,5.0637e-15,7.2425e-15,7.6508e-15,1.0155e-14,1.0634e-14,1.277e-14,1.989e-14,2.2843e-14,2.5146e-14,3.8058e-14,4.0855e-14,4.4194e-14,5.7498e-14,5.9144e-14,6.0111e-14,7.3403e-14,8.2569e-14,8.2885e-14,1.0382e-13,1.0597e-13,1.1728e-13,1.1885e-13,1.204e-13,2.3873e-13,4.5572e-13,4.8299e-13,5.8343e-13,6.9024e-13,7.8622e-13,9.1722e-13,1.0966e-12,1.4996e-12,1.7803e-12,2.3502e-12,3.3267e-12,3.4347e-12,3.676e-12,3.9137e-12,5.4169e-12,5.4195e-12,1.1678e-11,1.2357e-11,1.2751e-11,1.6009e-11,1.6278e-11,2.5367e-11,3.0167e-11,3.2417e-11,3.7946e-11,4.1931e-11,4.9742e-11,5.2443e-11,7.8593e-11,1.0071e-10,2.1765e-10,2.683e-10,2.8768e-10,3.2585e-10,4.5799e-10,4.9094e-10,5.2211e-10,6.9633e-10,9.1059e-10,1.0052e-09,1.0898e-09,1.4587e-09,2.2139e-09,3.4207e-09,4.5733e-09,4.8592e-09,8.3135e-09,9.9926e-09,1.0885e-08,1.1305e-08,1.3176e-08,2.4588e-08,2.5083e-08,2.7937e-08,3.3123e-08,3.4246e-08,4.3602e-08,8.4101e-08,8.4828e-08,1.0186e-07,1.0874e-07,2.2726e-07,2.7282e-07,2.765e-07,3.252e-07,4.0454e-07,4.0628e-07,4.135e-07,4.713e-07,4.7185e-07,5.3102e-07,5.5578e-07,1.0578e-06,1.3965e-06,1.4096e-06,1.9251e-06,2.0914e-06,2.3763e-06,2.528e-06,2.6218e-06,2.7295e-06,2.7655e-06,2.8639e-06,3.2951e-06,3.3491e-06,3.4632e-06,3.5595e-06,4.3732e-06,5.5076e-06,7.385e-06,8.2396e-06,1.0369e-05,1.3365e-05,1.4858e-05,1.569e-05,2.8379e-05,3.0359e-05,3.1897e-05,3.517e-05,3.9791e-05,4.4256e-05,4.8227e-05,4.8968e-05,4.9439e-05,5.5054e-05,7.2835e-05,7.4337e-05,8.2885e-05,9.7986e-05,0.0001074,0.00010901,0.00018241,0.0001834,0.00020267,0.00024596,0.00025472,0.00029003,0.00029901,0.00036949,0.00042353,0.00057495,0.00057913,0.00081478,0.0008467,0.00085712,0.0010641,0.0010787,0.0011651,0.0012887,0.0013297,0.0013615,0.0014937,0.0015167,0.0015319,0.0016478,0.0016902,0.0017014,0.0018066,0.0018459,0.0020778,0.0025219,0.0026095,0.0026334,0.0028678,0.0029702,0.0034217,0.0043663,0.0047035,0.005285,0.0055147,0.0061995,0.0069552,0.0070204,0.0070714,0.0070773,0.007319,0.0073398,0.0081478,0.0085444,0.0093366,0.0093734,0.0095991,0.011165,0.011214,0.012038,0.01304,0.015013,0.015291,0.01611,0.016298,0.016782,0.017622,0.01898,0.019019,0.022444,0.026975,0.027499,0.02809,0.028276,0.031485,0.03361,0.041723,0.04219,0.043143,0.044792,0.05138,0.059071,0.068528,0.071598,0.073481,0.07844,0.089257,0.094367,0.10133,0.11279,0.12345,0.12544,0.14837,0.1516,0.15279,0.15868,0.16106,0.18104,0.19012,0.1928,0.19308,0.19879,0.20668,0.2104,0.21207,0.2428,0.24284,0.27282,0.30968,0.34605,0.38139,0.39717,0.40136,0.41121,0.4199,0.44066,0.44297,0.48402,0.49456,0.51586,0.54257,0.55887,0.56071,0.57401,0.58294,0.60489,0.63748,0.64053,0.65477,0.6771,0.69507,0.69591,0.75619,0.76573,0.77027,0.78179,0.78771,0.79692,0.81133,0.81704,0.8249,0.83729,0.85282,0.86708,0.86849,0.88504,0.89542,0.90423,0.923,0.93097,0.93377,0.94327,0.94382,0.94775,0.94945,0.96937,0.97371,0.97531,0.982,0.9854,0.98589,0.99234,0.99926,0.99991,1,0.99954,0.99945,0.99774,0.99748,0.9934,0.99012,0.98159,0.98069,0.97983,0.97934,0.9777,0.97632,0.97546,0.9655,0.96321,0.93822,0.92857,0.92184,0.9191,0.89487,0.89442,0.88585,0.88176,0.86034,0.85964,0.85798,0.8411,0.83631,0.8346,0.82935,0.82248,0.81591,0.81246,0.77758,0.77632,0.75737,0.72825,0.70023,0.66057,0.66,0.64579,0.62785,0.60412,0.60386,0.59565,0.55715,0.54826,0.54728,0.50263,0.49297,0.48743,0.47049,0.45391,0.42399,0.41938,0.39747,0.35048,0.34988,0.34617,0.33866,0.33283,0.32572,0.31744,0.2465,0.22975,0.20559,0.18882,0.18802,0.18618,0.16327,0.15824,0.15783,0.13845,0.10989,0.10906,0.10164,0.10015,0.084793,0.080852,0.072766,0.068817,0.064661,0.063876,0.05926,0.058475,0.058106,0.048805,0.04628,0.045251,0.042041,0.04107,0.036862,0.035956,0.03419,0.030111,0.030074,0.02827,0.027683,0.027682,0.024101,0.023994,0.022646,0.021294,0.01859,0.016416,0.014998,0.012964,0.011306,0.0094373,0.0093675,0.0081325,0.0070852,0.0065265,0.0052213,0.0048863,0.0042655,0.0039329,0.0033138,0.0032538,0.0031334,0.0028705,0.0023845,0.001965,0.0017714,0.0015959,0.0015108,0.0014992,0.0013566,0.0012075,0.00084101,0.00076263,0.00072244,0.00064057,0.00064004,0.00056803,0.00055962,0.0005158,0.00048294,0.00038617,0.00037378,0.00031311,0.00026508,0.00015214,0.0001368,0.00012992,0.00011343,9.9769e-05,9.5e-05,8.6113e-05,8.0223e-05,7.3446e-05,6.3426e-05,6.3376e-05,4.8549e-05,4.5205e-05,4.4535e-05,4.4183e-05,3.3545e-05,3.3334e-05,3.2414e-05,3.1738e-05,3.0047e-05,2.7434e-05,2.5276e-05,1.7508e-05,7.8532e-06,6.1542e-06,6.0222e-06,5.9153e-06,5.5815e-06,5.4037e-06,3.9651e-06,3.2267e-06,2.7744e-06,2.5485e-06,2.1324e-06,1.8308e-06,1.7794e-06,1.4339e-06,1.268e-06,1.0904e-06,8.5406e-07,6.1708e-07,6.0433e-07,5.409e-07,5.007e-07,4.836e-07,3.3292e-07,3.0035e-07,1.8717e-07,1.6396e-07,1.2968e-07,1.143e-07,1.0971e-07,8.7662e-08,8.5148e-08,7.9888e-08,6.9472e-08,5.3134e-08 1,8.128e-16,1.2247e-15,1.25e-15,1.4139e-15,1.5544e-15,1.76e-15,2.2385e-15,3.9534e-15,5.6621e-15,5.9825e-15,7.9492e-15,8.3259e-15,1.0005e-14,1.561e-14,1.7937e-14,1.9752e-14,2.9943e-14,3.2152e-14,3.479e-14,4.531e-14,4.6612e-14,4.7377e-14,5.7898e-14,6.5158e-14,6.5409e-14,8.2001e-14,8.3703e-14,9.2676e-14,9.3925e-14,9.5156e-14,1.8919e-13,3.6208e-13,3.8383e-13,4.6401e-13,5.4934e-13,6.2605e-13,7.3082e-13,8.744e-13,1.1973e-12,1.4224e-12,1.8799e-12,2.6648e-12,2.7517e-12,2.9459e-12,3.1372e-12,4.348e-12,4.3502e-12,9.4046e-12,9.9538e-12,1.0272e-11,1.291e-11,1.3128e-11,2.0497e-11,2.4394e-11,2.6221e-11,3.0716e-11,3.3956e-11,4.0311e-11,4.251e-11,6.3823e-11,8.1871e-11,1.7756e-10,2.1909e-10,2.3499e-10,2.6633e-10,3.7492e-10,4.0202e-10,4.2766e-10,5.7114e-10,7.4781e-10,8.2592e-10,8.9574e-10,1.2006e-09,1.8259e-09,2.8271e-09,3.7851e-09,4.0229e-09,6.9011e-09,8.3025e-09,9.0477e-09,9.3989e-09,1.0963e-08,2.0523e-08,2.0939e-08,2.3333e-08,2.769e-08,2.8633e-08,3.6502e-08,7.065e-08,7.1264e-08,8.5654e-08,9.1478e-08,1.9195e-07,2.3066e-07,2.3378e-07,2.7521e-07,3.4278e-07,3.4426e-07,3.504e-07,3.9968e-07,4.0016e-07,4.5063e-07,4.7176e-07,9.0122e-07,1.1917e-06,1.2029e-06,1.6459e-06,1.789e-06,2.0342e-06,2.1649e-06,2.2457e-06,2.3385e-06,2.3696e-06,2.4543e-06,2.8263e-06,2.8729e-06,2.9714e-06,3.0545e-06,3.7575e-06,4.739e-06,6.366e-06,7.1075e-06,8.9573e-06,1.1564e-05,1.2865e-05,1.359e-05,2.4676e-05,2.641e-05,2.7757e-05,3.0625e-05,3.4678e-05,3.8597e-05,4.2085e-05,4.2736e-05,4.315e-05,4.8086e-05,6.374e-05,6.5064e-05,7.2601e-05,8.593e-05,9.4245e-05,9.5666e-05,0.00016069,0.00016156,0.00017867,0.00021714,0.00022494,0.00025637,0.00026436,0.00032721,0.00037546,0.00051091,0.00051465,0.00072604,0.00075472,0.00076409,0.00095029,0.00096345,0.0010413,0.0011526,0.0011896,0.0012183,0.0013377,0.0013585,0.0013722,0.0014769,0.0015153,0.0015254,0.0016205,0.0016561,0.0018661,0.0022687,0.0023483,0.0023699,0.0025829,0.0026759,0.0030866,0.0039475,0.0042552,0.0047866,0.0049965,0.0056233,0.0063158,0.0063755,0.0064222,0.0064277,0.0066493,0.0066684,0.0074101,0.0077744,0.0085027,0.0085365,0.0087442,0.010186,0.010231,0.010991,0.011916,0.013739,0.013996,0.014753,0.014927,0.015376,0.016154,0.017413,0.017448,0.020628,0.024843,0.025332,0.025882,0.026056,0.029049,0.031033,0.038623,0.03906,0.039954,0.0415,0.047684,0.054918,0.063834,0.066732,0.06851,0.073198,0.08344,0.088285,0.094893,0.10579,0.11594,0.11784,0.13973,0.14282,0.14396,0.1496,0.15189,0.17105,0.17978,0.18236,0.18262,0.18812,0.19571,0.1993,0.20091,0.23057,0.23061,0.25964,0.29544,0.33089,0.36543,0.3809,0.385,0.39467,0.4032,0.42361,0.42589,0.46637,0.47679,0.49787,0.52436,0.54056,0.54239,0.55563,0.56453,0.58643,0.61903,0.62209,0.63638,0.65883,0.67694,0.67778,0.73883,0.74853,0.75316,0.76491,0.77095,0.78038,0.79514,0.801,0.80908,0.82185,0.8379,0.85269,0.85416,0.87141,0.88229,0.89155,0.9114,0.91988,0.92287,0.93307,0.93367,0.93791,0.93975,0.96159,0.96645,0.96825,0.97586,0.97982,0.98039,0.98815,0.99763,0.99905,0.99954,1,1,0.99932,0.99918,0.99643,0.99392,0.98691,0.98615,0.98541,0.98499,0.98359,0.98239,0.98165,0.97287,0.97082,0.94804,0.93909,0.9328,0.93024,0.90738,0.90696,0.89882,0.89491,0.87442,0.87375,0.87216,0.85591,0.85128,0.84963,0.84455,0.8379,0.83153,0.82818,0.79419,0.79296,0.77441,0.74578,0.71813,0.67883,0.67827,0.66414,0.64627,0.62259,0.62232,0.61411,0.57553,0.56661,0.56562,0.52067,0.51091,0.50531,0.48819,0.4714,0.44104,0.43636,0.41406,0.36611,0.36549,0.3617,0.35401,0.34804,0.34076,0.33228,0.25927,0.24196,0.21693,0.19952,0.19869,0.19678,0.17294,0.16769,0.16726,0.14702,0.1171,0.11623,0.10842,0.10686,0.090685,0.086527,0.077983,0.073806,0.069404,0.068573,0.063679,0.062847,0.062455,0.052573,0.049885,0.04879,0.045369,0.044334,0.039843,0.038875,0.036988,0.032623,0.032584,0.030651,0.030021,0.03002,0.026177,0.026063,0.024614,0.023161,0.020249,0.017906,0.016374,0.014176,0.012379,0.010352,0.010276,0.008934,0.007794,0.0071851,0.0057604,0.0053941,0.0047147,0.0043504,0.0036712,0.0036054,0.0034732,0.0031842,0.0026495,0.002187,0.0019733,0.0017793,0.0016853,0.0016724,0.0015146,0.0013494,0.00094268,0.00085551,0.00081076,0.00071958,0.00071899,0.0006387,0.00062932,0.0005804,0.00054371,0.00043551,0.00042165,0.00035369,0.00029981,0.00017277,0.00015547,0.00014772,0.00012909,0.00011365,0.00010825,9.8194e-05,9.1523e-05,8.3843e-05,7.2479e-05,7.2422e-05,5.5581e-05,5.1777e-05,5.1015e-05,5.0614e-05,3.8499e-05,3.8259e-05,3.721e-05,3.6439e-05,3.451e-05,3.1528e-05,2.9064e-05,2.0181e-05,9.0983e-06,7.1408e-06,6.9887e-06,6.8653e-06,6.4803e-06,6.2751e-06,4.6133e-06,3.7588e-06,3.2349e-06,2.973e-06,2.4903e-06,2.14e-06,2.0803e-06,1.6785e-06,1.4853e-06,1.2784e-06,1.0028e-06,7.2587e-07,7.1095e-07,6.3674e-07,5.8967e-07,5.6965e-07,3.9298e-07,3.5473e-07,2.2164e-07,1.9429e-07,1.5387e-07,1.3571e-07,1.3029e-07,1.0423e-07,1.0126e-07,9.5035e-08,8.2706e-08,6.3345e-08 1,7.9523e-16,1.1984e-15,1.2232e-15,1.3836e-15,1.5211e-15,1.7223e-15,2.1908e-15,3.8699e-15,5.5431e-15,5.8569e-15,7.783e-15,8.1519e-15,9.7964e-15,1.5287e-14,1.7566e-14,1.9345e-14,2.9329e-14,3.1494e-14,3.4079e-14,4.4388e-14,4.5664e-14,4.6414e-14,5.6725e-14,6.384e-14,6.4086e-14,8.0348e-14,8.2017e-14,9.0812e-14,9.2037e-14,9.3243e-14,1.8543e-13,3.5497e-13,3.763e-13,4.5493e-13,5.3862e-13,6.1386e-13,7.1663e-13,8.5747e-13,1.1742e-12,1.3951e-12,1.844e-12,2.6143e-12,2.6995e-12,2.8901e-12,3.0779e-12,4.2663e-12,4.2685e-12,9.2305e-12,9.7697e-12,1.0082e-11,1.2672e-11,1.2887e-11,2.0123e-11,2.3951e-11,2.5746e-11,3.016e-11,3.3343e-11,3.9587e-11,4.1747e-11,6.2686e-11,8.0421e-11,1.7447e-10,2.1529e-10,2.3093e-10,2.6173e-10,3.6849e-10,3.9514e-10,4.2036e-10,5.6145e-10,7.352e-10,8.1203e-10,8.8071e-10,1.1806e-09,1.7958e-09,2.781e-09,3.7238e-09,3.9579e-09,6.791e-09,8.1708e-09,8.9044e-09,9.2502e-09,1.079e-08,2.0206e-08,2.0615e-08,2.2973e-08,2.7265e-08,2.8194e-08,3.5946e-08,6.9595e-08,7.02e-08,8.4382e-08,9.0123e-08,1.8917e-07,2.2734e-07,2.3042e-07,2.7127e-07,3.3791e-07,3.3937e-07,3.4543e-07,3.9403e-07,3.945e-07,4.4429e-07,4.6513e-07,8.8884e-07,1.1755e-06,1.1866e-06,1.6238e-06,1.765e-06,2.0071e-06,2.1361e-06,2.2159e-06,2.3075e-06,2.3381e-06,2.4218e-06,2.7891e-06,2.8351e-06,2.9323e-06,3.0144e-06,3.7086e-06,4.6778e-06,6.2848e-06,7.0173e-06,8.8448e-06,1.142e-05,1.2706e-05,1.3422e-05,2.438e-05,2.6094e-05,2.7426e-05,3.0261e-05,3.4269e-05,3.8143e-05,4.1593e-05,4.2236e-05,4.2645e-05,4.7527e-05,6.3009e-05,6.4319e-05,7.1774e-05,8.496e-05,9.3187e-05,9.4592e-05,0.00015894,0.0001598,0.00017673,0.00021482,0.00022253,0.00025365,0.00026156,0.00032379,0.00037157,0.00050572,0.00050943,0.00071884,0.00074725,0.00075653,0.00094104,0.00095408,0.0010312,0.0011416,0.0011782,0.0012067,0.001325,0.0013456,0.0013592,0.001463,0.001501,0.0015111,0.0016054,0.0016406,0.0018488,0.002248,0.002327,0.0023484,0.0025596,0.0026518,0.0030592,0.0039132,0.0042185,0.0047457,0.0049541,0.005576,0.0062633,0.0063226,0.0063689,0.0063743,0.0065943,0.0066133,0.0073495,0.0077111,0.0084341,0.0084677,0.0086739,0.010105,0.01015,0.010905,0.011823,0.013634,0.013889,0.014641,0.014814,0.01526,0.016033,0.017283,0.017319,0.020478,0.024667,0.025152,0.025699,0.025872,0.028847,0.030819,0.038365,0.0388,0.039689,0.041226,0.047376,0.054572,0.063442,0.066326,0.068095,0.07276,0.082953,0.087776,0.094354,0.1052,0.11531,0.11721,0.13901,0.14209,0.14322,0.14884,0.15112,0.17021,0.17891,0.18147,0.18174,0.18722,0.19478,0.19836,0.19997,0.22954,0.22957,0.25852,0.29423,0.3296,0.36408,0.37951,0.38361,0.39326,0.40178,0.42216,0.42443,0.46486,0.47527,0.49633,0.5228,0.53899,0.54082,0.55405,0.56294,0.58484,0.61744,0.6205,0.6348,0.65725,0.67537,0.67622,0.73732,0.74704,0.75167,0.76344,0.76949,0.77894,0.79372,0.7996,0.8077,0.8205,0.83659,0.85143,0.8529,0.87021,0.88113,0.89043,0.91036,0.91889,0.9219,0.93216,0.93276,0.93703,0.93888,0.96088,0.96578,0.9676,0.97529,0.9793,0.97987,0.98774,0.99744,0.99894,0.99945,1,1,0.99942,0.99928,0.99664,0.9942,0.98733,0.98657,0.98585,0.98544,0.98405,0.98288,0.98214,0.97346,0.97144,0.94885,0.93996,0.93371,0.93116,0.90843,0.90801,0.8999,0.89602,0.87561,0.87494,0.87335,0.85716,0.85255,0.8509,0.84583,0.83921,0.83285,0.82951,0.7956,0.79437,0.77586,0.74727,0.71966,0.6804,0.67983,0.66572,0.64786,0.62418,0.62391,0.6157,0.57712,0.56819,0.56721,0.52223,0.51247,0.50686,0.48972,0.47292,0.44252,0.43783,0.4155,0.36748,0.36685,0.36305,0.35535,0.34937,0.34207,0.33357,0.26039,0.24303,0.21793,0.20046,0.19962,0.19771,0.17379,0.16852,0.16809,0.14778,0.11773,0.11686,0.10903,0.10746,0.091207,0.08703,0.078446,0.074249,0.069826,0.06899,0.064072,0.063236,0.062842,0.052908,0.050207,0.049105,0.045666,0.044625,0.040109,0.039136,0.037238,0.032847,0.032808,0.030864,0.03023,0.03023,0.026363,0.026248,0.02479,0.023328,0.020398,0.018039,0.016498,0.014284,0.012476,0.010434,0.010358,0.0090062,0.0078579,0.0072445,0.0058091,0.00544,0.0047553,0.0043881,0.0037036,0.0036372,0.0035039,0.0032126,0.0026735,0.0022071,0.0019916,0.001796,0.0017011,0.0016882,0.0015289,0.0013623,0.00095195,0.00086398,0.00081882,0.00072679,0.00072619,0.00064516,0.00063569,0.00058631,0.00054927,0.00044003,0.00042602,0.0003574,0.00030299,0.00017467,0.00015719,0.00014935,0.00013053,0.00011492,0.00010947,9.9306e-05,9.2563e-05,8.4801e-05,7.3313e-05,7.3256e-05,5.6229e-05,5.2384e-05,5.1613e-05,5.1207e-05,3.8957e-05,3.8714e-05,3.7653e-05,3.6873e-05,3.4923e-05,3.1906e-05,2.9414e-05,2.0428e-05,9.214e-06,7.2325e-06,7.0785e-06,6.9536e-06,6.5638e-06,6.3561e-06,4.6736e-06,3.8084e-06,3.2778e-06,3.0126e-06,2.5236e-06,2.1689e-06,2.1084e-06,1.7013e-06,1.5056e-06,1.296e-06,1.0167e-06,7.3606e-07,7.2094e-07,6.4572e-07,5.9801e-07,5.7771e-07,3.9862e-07,3.5983e-07,2.2488e-07,1.9715e-07,1.5615e-07,1.3773e-07,1.3222e-07,1.0579e-07,1.0278e-07,9.6462e-08,8.3953e-08,6.4309e-08 1,5.9754e-16,9.0198e-16,9.2073e-16,1.042e-15,1.146e-15,1.2983e-15,1.6531e-15,2.927e-15,4.1989e-15,4.4377e-15,5.9042e-15,6.1852e-15,7.4388e-15,1.163e-14,1.3372e-14,1.4732e-14,2.2376e-14,2.4035e-14,2.6017e-14,3.3926e-14,3.4905e-14,3.5481e-14,4.3401e-14,4.887e-14,4.9059e-14,6.157e-14,6.2854e-14,6.9626e-14,7.0569e-14,7.1498e-14,1.4262e-13,2.7381e-13,2.9035e-13,3.5132e-13,4.1627e-13,4.747e-13,5.5457e-13,6.641e-13,9.1075e-13,1.0829e-12,1.4332e-12,2.0352e-12,2.1019e-12,2.251e-12,2.398e-12,3.329e-12,3.3307e-12,7.2291e-12,7.6534e-12,7.8995e-12,9.9395e-12,1.0109e-11,1.5819e-11,1.8844e-11,2.0264e-11,2.3757e-11,2.6277e-11,3.1224e-11,3.2936e-11,4.9556e-11,6.3655e-11,1.3864e-10,1.7126e-10,1.8377e-10,2.0841e-10,2.9395e-10,3.1532e-10,3.3555e-10,4.4885e-10,5.8859e-10,6.5044e-10,7.0576e-10,9.4755e-10,1.4445e-09,2.2424e-09,3.0074e-09,3.1975e-09,5.5027e-09,6.6276e-09,7.2261e-09,7.5083e-09,8.7658e-09,1.6474e-08,1.6809e-08,1.8744e-08,2.2268e-08,2.3031e-08,2.9405e-08,5.7153e-08,5.7653e-08,6.9377e-08,7.4126e-08,1.5629e-07,1.8804e-07,1.9061e-07,2.2463e-07,2.8019e-07,2.8141e-07,2.8647e-07,3.2705e-07,3.2743e-07,3.6904e-07,3.8646e-07,7.4157e-07,9.825e-07,9.9185e-07,1.3601e-06,1.4792e-06,1.6835e-06,1.7925e-06,1.8599e-06,1.9373e-06,1.9632e-06,2.034e-06,2.3447e-06,2.3836e-06,2.4659e-06,2.5354e-06,3.1237e-06,3.9464e-06,5.313e-06,5.9368e-06,7.4951e-06,9.6953e-06,1.0795e-05,1.1408e-05,2.0812e-05,2.2286e-05,2.3433e-05,2.5874e-05,2.9328e-05,3.2671e-05,3.5649e-05,3.6205e-05,3.6558e-05,4.0777e-05,5.4177e-05,5.5313e-05,6.1776e-05,7.3222e-05,8.0372e-05,8.1594e-05,0.00013767,0.00013842,0.00015322,0.00018654,0.00019329,0.00022056,0.0002275,0.00028214,0.00032415,0.00044237,0.00044564,0.00063075,0.00065592,0.00066414,0.00082775,0.00083933,0.00090782,0.0010059,0.0010385,0.0010638,0.0011692,0.0011876,0.0011997,0.0012922,0.0013261,0.001335,0.0014192,0.0014506,0.0016366,0.0019938,0.0020645,0.0020837,0.002273,0.0023557,0.0027215,0.0034899,0.0037651,0.0042409,0.004429,0.0049913,0.0056135,0.0056672,0.0057092,0.0057141,0.0059135,0.0059306,0.0065984,0.0069267,0.0075837,0.0076142,0.0078017,0.0091047,0.0091454,0.0098336,0.010672,0.012326,0.01256,0.013248,0.013406,0.013815,0.014523,0.015669,0.015702,0.018604,0.022462,0.022909,0.023414,0.023573,0.02632,0.028143,0.035136,0.035539,0.036364,0.037792,0.043513,0.050222,0.058511,0.06121,0.062868,0.067241,0.076813,0.081349,0.087545,0.097777,0.10733,0.10913,0.1298,0.13272,0.13381,0.13915,0.14131,0.15951,0.16781,0.17026,0.17051,0.17575,0.18299,0.18642,0.18795,0.21633,0.21636,0.24423,0.27874,0.31304,0.34659,0.36165,0.36565,0.37508,0.38342,0.40338,0.4056,0.44533,0.45558,0.47635,0.50253,0.51857,0.52039,0.53352,0.54236,0.56415,0.5967,0.59976,0.61407,0.63661,0.65483,0.65568,0.71748,0.72735,0.73206,0.74406,0.75024,0.75988,0.77503,0.78106,0.78938,0.80256,0.8192,0.83458,0.83612,0.85416,0.86559,0.87536,0.89644,0.90553,0.90874,0.91974,0.92039,0.925,0.927,0.95109,0.95654,0.95858,0.9673,0.9719,0.97257,0.98188,0.99442,0.99678,0.99774,0.99932,0.99942,1,0.99999,0.99886,0.99729,0.99215,0.99156,0.99098,0.99065,0.98953,0.98857,0.98796,0.98064,0.9789,0.95886,0.95078,0.94506,0.94272,0.92161,0.92122,0.91362,0.90996,0.89066,0.89003,0.88852,0.87308,0.86867,0.86709,0.86224,0.85587,0.84976,0.84655,0.81374,0.81255,0.79453,0.76659,0.73947,0.70072,0.70016,0.68617,0.66844,0.64488,0.64461,0.63642,0.59784,0.58889,0.58791,0.54267,0.53283,0.52717,0.50985,0.49284,0.46201,0.45724,0.43452,0.38547,0.38483,0.38094,0.37305,0.36692,0.35944,0.35071,0.27525,0.25727,0.2312,0.21301,0.21214,0.21015,0.18516,0.17965,0.1792,0.15791,0.12629,0.12537,0.1171,0.11544,0.098239,0.093808,0.08469,0.080225,0.075515,0.074625,0.06938,0.068488,0.068067,0.057449,0.054556,0.053375,0.049687,0.04857,0.043718,0.042671,0.040629,0.035898,0.035856,0.033758,0.033074,0.033073,0.028893,0.028769,0.02719,0.025606,0.022427,0.019864,0.018186,0.015773,0.013797,0.011563,0.01148,0.0099972,0.0087357,0.0080609,0.0064792,0.0060717,0.005315,0.0049088,0.0041503,0.0040767,0.0039287,0.0036053,0.0030058,0.0024861,0.0022456,0.0020271,0.001921,0.0019065,0.0017283,0.0015417,0.0010809,0.00098184,0.00093098,0.00082724,0.00082656,0.0007351,0.00072441,0.00066862,0.00062674,0.00050307,0.0004872,0.00040934,0.00034752,0.00020126,0.00018128,0.00017231,0.00015075,0.00013287,0.00012662,0.00011495,0.0001072,9.828e-05,8.5064e-05,8.4998e-05,6.5377e-05,6.0939e-05,6.005e-05,5.9581e-05,4.5422e-05,4.5141e-05,4.3914e-05,4.301e-05,4.0752e-05,3.7258e-05,3.4369e-05,2.3934e-05,1.0857e-05,8.5371e-06,8.3566e-06,8.2102e-06,7.7531e-06,7.5094e-06,5.5335e-06,4.5154e-06,3.8903e-06,3.5776e-06,3.0005e-06,2.5813e-06,2.5098e-06,2.0281e-06,1.7963e-06,1.5477e-06,1.2161e-06,8.8227e-07,8.6426e-07,7.7463e-07,7.1775e-07,6.9354e-07,4.7967e-07,4.3328e-07,2.7157e-07,2.3828e-07,1.8899e-07,1.6682e-07,1.602e-07,1.2835e-07,1.2471e-07,1.1709e-07,1.0199e-07,7.8253e-08 1,5.7911e-16,8.7432e-16,8.9249e-16,1.0101e-15,1.111e-15,1.2587e-15,1.6028e-15,2.8388e-15,4.073e-15,4.3047e-15,5.728e-15,6.0008e-15,7.2176e-15,1.1286e-14,1.2978e-14,1.4299e-14,2.1722e-14,2.3333e-14,2.5258e-14,3.294e-14,3.3892e-14,3.4451e-14,4.2146e-14,4.7459e-14,4.7643e-14,5.9799e-14,6.1047e-14,6.7627e-14,6.8543e-14,6.9446e-14,1.3857e-13,2.6613e-13,2.8221e-13,3.415e-13,4.0467e-13,4.6151e-13,5.3919e-13,6.4575e-13,8.8572e-13,1.0532e-12,1.3942e-12,1.9801e-12,2.045e-12,2.1902e-12,2.3332e-12,3.2396e-12,3.2413e-12,7.0378e-12,7.4512e-12,7.6909e-12,9.6782e-12,9.8429e-12,1.5407e-11,1.8355e-11,1.9739e-11,2.3143e-11,2.5599e-11,3.0421e-11,3.2091e-11,4.8295e-11,6.2043e-11,1.3519e-10,1.6702e-10,1.7922e-10,2.0327e-10,2.8675e-10,3.0761e-10,3.2736e-10,4.3796e-10,5.7441e-10,6.348e-10,6.8882e-10,9.2497e-10,1.4104e-09,2.19e-09,2.9377e-09,3.1235e-09,5.3772e-09,6.4771e-09,7.0624e-09,7.3384e-09,8.5682e-09,1.6109e-08,1.6437e-08,1.833e-08,2.1778e-08,2.2526e-08,2.8764e-08,5.5931e-08,5.6421e-08,6.7902e-08,7.2553e-08,1.5305e-07,1.8417e-07,1.8668e-07,2.2002e-07,2.7449e-07,2.7568e-07,2.8064e-07,3.2042e-07,3.2081e-07,3.6159e-07,3.7868e-07,7.2697e-07,9.6334e-07,9.7252e-07,1.3339e-06,1.4508e-06,1.6514e-06,1.7583e-06,1.8245e-06,1.9005e-06,1.9259e-06,1.9954e-06,2.3004e-06,2.3387e-06,2.4195e-06,2.4877e-06,3.0654e-06,3.8734e-06,5.2159e-06,5.8288e-06,7.36e-06,9.5225e-06,1.0604e-05,1.1206e-05,2.0453e-05,2.1903e-05,2.3031e-05,2.5433e-05,2.8831e-05,3.212e-05,3.505e-05,3.5597e-05,3.5944e-05,4.0096e-05,5.3286e-05,5.4403e-05,6.0767e-05,7.2036e-05,7.9076e-05,8.0279e-05,0.00013551,0.00013626,0.00015083,0.00018367,0.00019032,0.0002172,0.00022404,0.0002779,0.00031932,0.00043591,0.00043913,0.00062175,0.00064658,0.00065469,0.00081615,0.00082758,0.00089519,0.00099204,0.0010242,0.0010492,0.0011532,0.0011713,0.0011833,0.0012746,0.0013081,0.001317,0.0014001,0.0014311,0.0016148,0.0019676,0.0020375,0.0020564,0.0022435,0.0023252,0.0026867,0.0034462,0.0037183,0.0041887,0.0043748,0.0049309,0.0055462,0.0055994,0.0056409,0.0056457,0.005843,0.00586,0.0065206,0.0068454,0.0074955,0.0075257,0.0077112,0.0090008,0.0090411,0.0097223,0.010552,0.01219,0.012421,0.013103,0.01326,0.013664,0.014365,0.015501,0.015533,0.018408,0.022231,0.022675,0.023175,0.023332,0.026056,0.027863,0.034797,0.035197,0.036016,0.037432,0.043107,0.049764,0.057991,0.060671,0.062317,0.066659,0.076164,0.08067,0.086824,0.096991,0.10649,0.10827,0.12882,0.13173,0.1328,0.13811,0.14027,0.15837,0.16662,0.16907,0.16932,0.17453,0.18173,0.18514,0.18667,0.21491,0.21495,0.2427,0.27707,0.31126,0.34471,0.35973,0.36371,0.37312,0.38143,0.40135,0.40357,0.44321,0.45345,0.47419,0.50033,0.51635,0.51817,0.53129,0.54012,0.5619,0.59443,0.59749,0.6118,0.63434,0.65257,0.65342,0.71529,0.72518,0.7299,0.74192,0.74811,0.75778,0.77296,0.779,0.78735,0.80057,0.81726,0.8327,0.83424,0.85236,0.86385,0.87367,0.89487,0.90401,0.90725,0.91833,0.91898,0.92363,0.92564,0.94995,0.95547,0.95753,0.96636,0.97103,0.9717,0.98117,0.99402,0.99647,0.99748,0.99918,0.99928,0.99999,1,0.99903,0.99756,0.99261,0.99203,0.99147,0.99115,0.99006,0.98912,0.98853,0.98136,0.97965,0.9599,0.95191,0.94624,0.94392,0.923,0.92261,0.91506,0.91144,0.89226,0.89163,0.89013,0.87478,0.87039,0.86882,0.86399,0.85766,0.85157,0.84837,0.81569,0.8145,0.79654,0.76868,0.74162,0.70293,0.70237,0.6884,0.67069,0.64713,0.64687,0.63869,0.60011,0.59116,0.59017,0.54492,0.53507,0.52941,0.51207,0.49504,0.46416,0.45938,0.43662,0.38747,0.38683,0.38293,0.37502,0.36887,0.36136,0.35261,0.27691,0.25886,0.23268,0.21442,0.21354,0.21154,0.18644,0.1809,0.18045,0.15905,0.12725,0.12633,0.11801,0.11634,0.099033,0.094574,0.085396,0.080902,0.07616,0.075263,0.069982,0.069083,0.06866,0.057965,0.05505,0.053861,0.050144,0.049019,0.044129,0.043074,0.041015,0.036246,0.036203,0.034088,0.033398,0.033397,0.029183,0.029057,0.027465,0.025867,0.022659,0.020073,0.018379,0.015944,0.013949,0.011693,0.011609,0.010111,0.0088369,0.0081551,0.0065565,0.0061447,0.0053798,0.004969,0.004202,0.0041275,0.0039779,0.0036508,0.0030443,0.0025185,0.0022751,0.002054,0.0019466,0.0019319,0.0017515,0.0015626,0.0010959,0.0009956,0.00094408,0.00083898,0.00083829,0.00074562,0.00073478,0.00067825,0.00063581,0.00051045,0.00049436,0.00041543,0.00035274,0.00020439,0.00018411,0.00017501,0.00015314,0.00013499,0.00012864,0.00011679,0.00010893,9.9872e-05,8.6453e-05,8.6386e-05,6.6459e-05,6.1951e-05,6.1048e-05,6.0572e-05,4.6188e-05,4.5902e-05,4.4655e-05,4.3738e-05,4.1443e-05,3.7892e-05,3.4956e-05,2.435e-05,1.1053e-05,8.6928e-06,8.5091e-06,8.3602e-06,7.895e-06,7.6471e-06,5.6362e-06,4.6e-06,3.9636e-06,3.6452e-06,3.0576e-06,2.6308e-06,2.558e-06,2.0674e-06,1.8312e-06,1.5779e-06,1.24e-06,8.9987e-07,8.8151e-07,7.9016e-07,7.3218e-07,7.075e-07,4.8944e-07,4.4214e-07,2.7722e-07,2.4325e-07,1.9296e-07,1.7035e-07,1.6359e-07,1.3108e-07,1.2737e-07,1.196e-07,1.0418e-07,7.9945e-08 1,4.0004e-16,6.0529e-16,6.1794e-16,6.9984e-16,7.701e-16,8.7308e-16,1.1132e-15,1.9776e-15,2.843e-15,3.0056e-15,4.0056e-15,4.1975e-15,5.0537e-15,7.922e-15,9.1164e-15,1.0049e-14,1.5302e-14,1.6444e-14,1.7808e-14,2.3259e-14,2.3934e-14,2.4331e-14,2.9799e-14,3.3579e-14,3.3709e-14,4.2365e-14,4.3254e-14,4.7944e-14,4.8597e-14,4.9241e-14,9.8641e-14,1.9016e-13,2.0171e-13,2.4436e-13,2.8985e-13,3.3082e-13,3.8685e-13,4.638e-13,6.3733e-13,7.5864e-13,1.0059e-12,1.4317e-12,1.4789e-12,1.5845e-12,1.6886e-12,2.3493e-12,2.3505e-12,5.1279e-12,5.4309e-12,5.6068e-12,7.0655e-12,7.1865e-12,1.1281e-11,1.3453e-11,1.4474e-11,1.6987e-11,1.8802e-11,2.2369e-11,2.3604e-11,3.5615e-11,4.5828e-11,1.0036e-10,1.2416e-10,1.3329e-10,1.5131e-10,2.1393e-10,2.296e-10,2.4444e-10,3.2767e-10,4.3054e-10,4.7613e-10,5.1693e-10,6.9555e-10,1.0637e-09,1.6567e-09,2.2268e-09,2.3687e-09,4.0935e-09,4.9374e-09,5.3869e-09,5.599e-09,6.5446e-09,1.2361e-08,1.2615e-08,1.4079e-08,1.6749e-08,1.7328e-08,2.2167e-08,4.332e-08,4.3702e-08,5.267e-08,5.6306e-08,1.1947e-07,1.4397e-07,1.4595e-07,1.7224e-07,2.1526e-07,2.162e-07,2.2012e-07,2.5159e-07,2.5189e-07,2.842e-07,2.9773e-07,5.7464e-07,7.6327e-07,7.706e-07,1.0597e-06,1.1535e-06,1.3144e-06,1.4002e-06,1.4534e-06,1.5145e-06,1.5349e-06,1.5908e-06,1.8362e-06,1.867e-06,1.932e-06,1.987e-06,2.4529e-06,3.1058e-06,4.1933e-06,4.6907e-06,5.9355e-06,7.6975e-06,8.5798e-06,9.072e-06,1.6652e-05,1.7844e-05,1.8771e-05,2.0748e-05,2.3549e-05,2.6263e-05,2.8683e-05,2.9135e-05,2.9422e-05,3.2855e-05,4.3786e-05,4.4713e-05,4.9998e-05,5.9372e-05,6.5236e-05,6.6239e-05,0.00011242,0.00011304,0.00012527,0.00015285,0.00015845,0.00018108,0.00018685,0.00023231,0.00026734,0.0003662,0.00036894,0.00052444,0.00054563,0.00055255,0.00069058,0.00070037,0.00075828,0.00084134,0.00086897,0.00089041,0.00097979,0.00099537,0.0010057,0.0010842,0.0011131,0.0011207,0.0011923,0.0012191,0.0013775,0.0016827,0.0017431,0.0017596,0.0019217,0.0019927,0.0023066,0.0029683,0.0032058,0.0036171,0.00378,0.0042673,0.0048075,0.0048542,0.0048907,0.004895,0.0050684,0.0050833,0.0056647,0.0059509,0.0065243,0.006551,0.0067148,0.0078551,0.0078907,0.0084941,0.00923,0.010685,0.010891,0.011498,0.011638,0.011998,0.012623,0.013637,0.013666,0.016238,0.019668,0.020067,0.020517,0.020658,0.023111,0.024741,0.031013,0.031376,0.032118,0.033403,0.038562,0.044631,0.052155,0.054611,0.05612,0.060106,0.068853,0.073008,0.078692,0.088103,0.096914,0.098573,0.11772,0.12043,0.12144,0.1264,0.12842,0.14539,0.15315,0.15544,0.15568,0.16058,0.16737,0.17059,0.17203,0.19875,0.19878,0.22515,0.25794,0.29072,0.32293,0.33744,0.3413,0.35041,0.35846,0.37779,0.37995,0.41859,0.4286,0.44891,0.47459,0.49038,0.49217,0.50512,0.51385,0.53542,0.56777,0.57082,0.5851,0.60765,0.62594,0.6268,0.68929,0.69934,0.70415,0.7164,0.72272,0.73261,0.74818,0.7544,0.76299,0.77664,0.79394,0.81002,0.81162,0.8306,0.84269,0.85307,0.87564,0.88544,0.88892,0.90091,0.90162,0.90667,0.90887,0.93573,0.94194,0.94427,0.95436,0.95978,0.96057,0.97184,0.98828,0.99182,0.9934,0.99643,0.99664,0.99886,0.99903,1,0.99967,0.99698,0.99661,0.99624,0.99602,0.99528,0.99462,0.9942,0.98882,0.98748,0.97113,0.96423,0.95927,0.95722,0.93851,0.93815,0.9313,0.92799,0.91034,0.90976,0.90837,0.89407,0.88996,0.88849,0.88396,0.878,0.87225,0.86923,0.83814,0.837,0.81977,0.79286,0.76657,0.7287,0.72816,0.71441,0.69694,0.67363,0.67337,0.66524,0.62682,0.61787,0.61688,0.57146,0.56154,0.55583,0.53832,0.52108,0.48971,0.48486,0.46164,0.41129,0.41064,0.40663,0.39849,0.39216,0.38443,0.3754,0.29687,0.27803,0.25062,0.23142,0.2305,0.22839,0.20192,0.19606,0.19558,0.1729,0.13902,0.13804,0.12913,0.12735,0.10877,0.10397,0.09407,0.089214,0.084084,0.083113,0.077389,0.076414,0.075955,0.064327,0.06115,0.059853,0.055795,0.054565,0.049214,0.048058,0.0458,0.040561,0.040514,0.038186,0.037426,0.037425,0.032776,0.032638,0.030878,0.029109,0.025555,0.022681,0.020796,0.01808,0.01585,0.013322,0.013227,0.011544,0.010109,0.0093396,0.0075319,0.0070652,0.0061969,0.0057299,0.0048564,0.0047715,0.0046008,0.0042272,0.0035334,0.0029302,0.0026505,0.0023959,0.0022722,0.0022552,0.0020472,0.0018289,0.0012882,0.0011716,0.0011117,0.00098929,0.00098849,0.00088042,0.00086777,0.00080174,0.00075213,0.00060536,0.00058649,0.00049381,0.00042006,0.00024484,0.00022079,0.00021,0.00018401,0.00016241,0.00015485,0.00014073,0.00013135,0.00012054,0.0001045,0.00010442,8.0544e-05,7.5134e-05,7.4049e-05,7.3477e-05,5.618e-05,5.5836e-05,5.4333e-05,5.3228e-05,5.0462e-05,4.6179e-05,4.2634e-05,2.9802e-05,1.3629e-05,1.0742e-05,1.0517e-05,1.0335e-05,9.7646e-06,9.4607e-06,6.9922e-06,5.717e-06,4.9326e-06,4.5397e-06,3.8138e-06,3.2857e-06,3.1955e-06,2.5874e-06,2.2942e-06,1.9794e-06,1.5588e-06,1.1342e-06,1.1113e-06,9.9699e-07,9.2442e-07,8.9351e-07,6.2001e-07,5.6055e-07,3.5278e-07,3.0988e-07,2.4628e-07,2.1762e-07,2.0905e-07,1.6781e-07,1.6309e-07,1.5321e-07,1.3361e-07,1.0274e-07 1,3.2164e-16,4.8727e-16,4.9749e-16,5.6365e-16,6.2041e-16,7.0365e-16,8.9787e-16,1.5979e-15,2.2998e-15,2.4318e-15,3.2438e-15,3.3996e-15,4.0955e-15,6.4293e-15,7.402e-15,8.162e-15,1.2445e-14,1.3377e-14,1.449e-14,1.8942e-14,1.9494e-14,1.9819e-14,2.4289e-14,2.738e-14,2.7487e-14,3.457e-14,3.5298e-14,3.9139e-14,3.9674e-14,4.0201e-14,8.0718e-14,1.5595e-13,1.6546e-13,2.0058e-13,2.3805e-13,2.7182e-13,3.1803e-13,3.8152e-13,5.2485e-13,6.2512e-13,8.2968e-13,1.1823e-12,1.2214e-12,1.309e-12,1.3953e-12,1.9435e-12,1.9445e-12,4.2539e-12,4.5062e-12,4.6527e-12,5.8681e-12,5.969e-12,9.3847e-12,1.12e-11,1.2052e-11,1.4154e-11,1.5672e-11,1.8656e-11,1.969e-11,2.9755e-11,3.8324e-11,8.4175e-11,1.0423e-10,1.1192e-10,1.2711e-10,1.7996e-10,1.9319e-10,2.0573e-10,2.7609e-10,3.6316e-10,4.0177e-10,4.3634e-10,5.878e-10,9.0044e-10,1.4049e-09,1.8907e-09,2.0117e-09,3.4844e-09,4.206e-09,4.5906e-09,4.7721e-09,5.5817e-09,1.0571e-08,1.0789e-08,1.2047e-08,1.4342e-08,1.484e-08,1.9005e-08,3.725e-08,3.758e-08,4.5329e-08,4.8473e-08,1.032e-07,1.2447e-07,1.2619e-07,1.4904e-07,1.8645e-07,1.8727e-07,1.9068e-07,2.1808e-07,2.1835e-07,2.4648e-07,2.5828e-07,5.0007e-07,6.6513e-07,6.7155e-07,9.2498e-07,1.0072e-06,1.1484e-06,1.2239e-06,1.2706e-06,1.3242e-06,1.3422e-06,1.3913e-06,1.6071e-06,1.6342e-06,1.6914e-06,1.7398e-06,2.1499e-06,2.7255e-06,3.6856e-06,4.1252e-06,5.2263e-06,6.7871e-06,7.5695e-06,8.0062e-06,1.4744e-05,1.5805e-05,1.6632e-05,1.8394e-05,2.0891e-05,2.3313e-05,2.5474e-05,2.5878e-05,2.6134e-05,2.9202e-05,3.8982e-05,3.9812e-05,4.4547e-05,5.2951e-05,5.8213e-05,5.9113e-05,0.00010064,0.0001012,0.00011222,0.0001371,0.00014215,0.00016259,0.0001678,0.00020891,0.00024063,0.00033029,0.00033277,0.00047412,0.0004934,0.00049971,0.00062548,0.0006344,0.00068723,0.00076305,0.00078828,0.00080787,0.00088955,0.0009038,0.00091319,0.00098508,0.0010115,0.0010185,0.001084,0.0011085,0.0012537,0.0015336,0.0015891,0.0016042,0.0017531,0.0018183,0.0021071,0.0027167,0.0029358,0.0033155,0.003466,0.0039165,0.0044164,0.0044597,0.0044935,0.0044974,0.004658,0.0046719,0.0052107,0.0054762,0.0060083,0.0060331,0.0061852,0.0072448,0.007278,0.0078394,0.0085245,0.009881,0.010073,0.010639,0.01077,0.011106,0.01169,0.012637,0.012664,0.01507,0.018286,0.018661,0.019083,0.019216,0.02152,0.023053,0.02896,0.029302,0.030002,0.031214,0.036087,0.041829,0.048961,0.051291,0.052724,0.056511,0.064832,0.06879,0.074209,0.083192,0.091616,0.093203,0.11155,0.11415,0.11512,0.11988,0.12182,0.13814,0.14561,0.14783,0.14805,0.15278,0.15933,0.16243,0.16383,0.18965,0.18969,0.21524,0.24711,0.27904,0.31051,0.32471,0.32849,0.33741,0.34531,0.36428,0.3664,0.40441,0.41427,0.43431,0.45969,0.47531,0.47708,0.48991,0.49857,0.51999,0.55217,0.55521,0.56945,0.59196,0.61026,0.61112,0.67385,0.68398,0.68882,0.70119,0.70757,0.71757,0.73334,0.73964,0.74836,0.76223,0.77984,0.79626,0.7979,0.81734,0.82975,0.84044,0.86375,0.87392,0.87754,0.89003,0.89077,0.89605,0.89835,0.92664,0.93324,0.93572,0.94653,0.95237,0.95323,0.96552,0.98404,0.98821,0.99012,0.99392,0.9942,0.99729,0.99756,0.99967,1,0.99866,0.9984,0.99814,0.99799,0.99745,0.99696,0.99664,0.99233,0.99121,0.9769,0.97066,0.96613,0.96425,0.94688,0.94655,0.94012,0.937,0.9203,0.91974,0.91842,0.90478,0.90085,0.89943,0.89509,0.88936,0.88383,0.88092,0.85084,0.84973,0.83297,0.80669,0.7809,0.74361,0.74307,0.72949,0.71219,0.68906,0.68881,0.68074,0.64247,0.63354,0.63256,0.58712,0.57717,0.57144,0.55385,0.53652,0.50492,0.50002,0.47657,0.42558,0.42491,0.42085,0.41258,0.40615,0.39829,0.38911,0.30898,0.28968,0.26155,0.24181,0.24087,0.23869,0.21141,0.20537,0.20487,0.18142,0.14631,0.14528,0.13602,0.13417,0.11482,0.10981,0.099478,0.094403,0.089036,0.08802,0.082025,0.081004,0.080522,0.068323,0.064985,0.063621,0.059353,0.058058,0.052423,0.051203,0.048822,0.043292,0.043242,0.040782,0.039979,0.039978,0.035058,0.034911,0.033047,0.031172,0.0274,0.024346,0.022341,0.019448,0.01707,0.01437,0.014268,0.012468,0.01093,0.010105,0.0081637,0.0076618,0.0067275,0.0062244,0.0052825,0.0051909,0.0050066,0.0046031,0.0038529,0.0031998,0.0028965,0.0026203,0.0024859,0.0024675,0.0022415,0.0020041,0.0014152,0.001288,0.0012226,0.0010888,0.001088,0.0009698,0.00095596,0.00088371,0.00082939,0.00066852,0.00064782,0.00054608,0.00046501,0.00027199,0.00024544,0.00023351,0.00020478,0.00018088,0.00017251,0.00015688,0.00014648,0.00013449,0.0001167,0.00011661,9.0088e-05,8.4071e-05,8.2865e-05,8.2229e-05,6.297e-05,6.2587e-05,6.0913e-05,5.968e-05,5.6597e-05,5.1819e-05,4.7864e-05,3.3526e-05,1.5399e-05,1.2153e-05,1.19e-05,1.1694e-05,1.1053e-05,1.0711e-05,7.9287e-06,6.4896e-06,5.6036e-06,5.1595e-06,4.3384e-06,3.7405e-06,3.6384e-06,2.9492e-06,2.6166e-06,2.2593e-06,1.7813e-06,1.2981e-06,1.272e-06,1.1418e-06,1.0591e-06,1.0239e-06,7.1173e-07,6.4379e-07,4.0607e-07,3.5691e-07,2.8396e-07,2.5107e-07,2.4122e-07,1.9383e-07,1.884e-07,1.7704e-07,1.5449e-07,1.1894e-07 1,2.0726e-16,3.1479e-16,3.2143e-16,3.6446e-16,4.0141e-16,4.5562e-16,5.8226e-16,1.04e-15,1.5002e-15,1.5869e-15,2.1206e-15,2.2232e-15,2.6814e-15,4.2215e-15,4.8646e-15,5.3675e-15,8.2064e-15,8.8248e-15,9.5644e-15,1.2525e-14,1.2892e-14,1.3108e-14,1.6086e-14,1.8148e-14,1.8219e-14,2.2949e-14,2.3435e-14,2.6003e-14,2.6361e-14,2.6713e-14,5.3885e-14,1.0457e-13,1.1099e-13,1.3472e-13,1.6008e-13,1.8295e-13,2.1428e-13,2.5738e-13,3.5485e-13,4.2316e-13,5.6273e-13,8.0388e-13,8.3067e-13,8.9065e-13,9.4983e-13,1.3261e-12,1.3267e-12,2.9187e-12,3.0931e-12,3.1944e-12,4.0356e-12,4.1055e-12,6.476e-12,7.7384e-12,8.3321e-12,9.7962e-12,1.0855e-11,1.2939e-11,1.3661e-11,2.0708e-11,2.6722e-11,5.9042e-11,7.3225e-11,7.8674e-11,8.9436e-11,1.2696e-10,1.3638e-10,1.453e-10,1.9544e-10,2.5762e-10,2.8524e-10,3.0999e-10,4.1858e-10,6.434e-10,1.0075e-09,1.3591e-09,1.4468e-09,2.5174e-09,3.0435e-09,3.3243e-09,3.4568e-09,4.0487e-09,7.7092e-09,7.8695e-09,8.7954e-09,1.0487e-08,1.0854e-08,1.393e-08,2.7465e-08,2.7711e-08,3.3481e-08,3.5824e-08,7.6795e-08,9.2779e-08,9.4074e-08,1.1128e-07,1.395e-07,1.4012e-07,1.427e-07,1.6341e-07,1.6361e-07,1.849e-07,1.9384e-07,3.7766e-07,5.0371e-07,5.0861e-07,7.0275e-07,7.6586e-07,8.744e-07,9.3241e-07,9.6835e-07,1.0097e-06,1.0235e-06,1.0613e-06,1.2277e-06,1.2486e-06,1.2928e-06,1.3301e-06,1.6473e-06,2.0933e-06,2.8395e-06,3.1819e-06,4.0412e-06,5.2627e-06,5.8761e-06,6.2188e-06,1.1528e-05,1.2368e-05,1.3022e-05,1.4418e-05,1.6398e-05,1.8322e-05,2.004e-05,2.0361e-05,2.0566e-05,2.3009e-05,3.0816e-05,3.148e-05,3.5269e-05,4.2008e-05,4.6234e-05,4.6957e-05,8.0453e-05,8.0908e-05,8.9827e-05,0.00011001,0.00011412,0.00013074,0.00013499,0.00016852,0.00019445,0.00026799,0.00027003,0.00038652,0.00040245,0.00040766,0.0005118,0.0005192,0.00056305,0.00062606,0.00064705,0.00066335,0.0007314,0.00074327,0.00075111,0.00081109,0.00083312,0.00083895,0.0008937,0.0009142,0.0010357,0.0012706,0.0013173,0.00133,0.0014554,0.0015103,0.001754,0.0022699,0.0024559,0.0027787,0.0029068,0.0032909,0.003718,0.0037549,0.0037839,0.0037872,0.0039246,0.0039365,0.0043982,0.0046259,0.005083,0.0051043,0.0052351,0.0061479,0.0061765,0.0066611,0.0072535,0.0084288,0.0085953,0.0090869,0.0092004,0.0094926,0.010001,0.010826,0.010849,0.012951,0.015769,0.016098,0.016469,0.016586,0.018614,0.019966,0.025192,0.025495,0.026116,0.027193,0.031529,0.036655,0.043046,0.045139,0.046428,0.049837,0.057347,0.060928,0.065841,0.074005,0.081684,0.083133,0.09993,0.10232,0.10321,0.10759,0.10937,0.12443,0.13134,0.13339,0.1336,0.13798,0.14406,0.14694,0.14824,0.17231,0.17234,0.19627,0.22628,0.2565,0.28645,0.3,0.30361,0.31215,0.31972,0.33794,0.33998,0.37664,0.38618,0.40562,0.43032,0.44557,0.4473,0.45986,0.46834,0.48938,0.52112,0.52412,0.53822,0.56058,0.57882,0.57967,0.64264,0.65287,0.65777,0.6703,0.67678,0.68696,0.70304,0.70948,0.71841,0.73266,0.75082,0.76783,0.76954,0.78978,0.80279,0.81403,0.83871,0.84956,0.85343,0.86685,0.86765,0.87336,0.87585,0.90685,0.91418,0.91696,0.92914,0.9358,0.93679,0.95107,0.97361,0.97903,0.98159,0.98691,0.98733,0.99215,0.99261,0.99698,0.99866,1,0.99999,0.99996,0.99993,0.99981,0.99966,0.99955,0.9974,0.99672,0.98659,0.9817,0.97806,0.97653,0.96195,0.96167,0.95613,0.95342,0.9387,0.9382,0.93702,0.92477,0.92121,0.91993,0.91598,0.91076,0.90569,0.90302,0.87512,0.87408,0.85834,0.83347,0.80882,0.77286,0.77233,0.75915,0.74229,0.71964,0.71939,0.71146,0.67369,0.66483,0.66386,0.61857,0.60861,0.60286,0.58519,0.56772,0.53576,0.53079,0.50696,0.45482,0.45414,0.44996,0.44147,0.43486,0.42676,0.41729,0.3341,0.3139,0.28436,0.26354,0.26254,0.26025,0.23134,0.22492,0.22439,0.1994,0.16175,0.16064,0.15067,0.14867,0.12773,0.1223,0.11106,0.10552,0.099661,0.09855,0.09199,0.090871,0.090343,0.076943,0.073265,0.071761,0.067049,0.065618,0.059379,0.058027,0.055385,0.049235,0.049179,0.046437,0.045541,0.04554,0.040042,0.039878,0.037789,0.035687,0.031447,0.028006,0.025741,0.022466,0.019766,0.016691,0.016575,0.014518,0.012756,0.01181,0.0095754,0.0089962,0.0079161,0.0073335,0.0062402,0.0061337,0.0059194,0.0054496,0.0045742,0.0038098,0.0034538,0.0031292,0.0029711,0.0029495,0.0026831,0.0024029,0.0017054,0.0015542,0.0014763,0.001317,0.001316,0.0011749,0.0011584,0.001072,0.001007,0.00081407,0.0007892,0.00066679,0.00056902,0.00033515,0.00030283,0.0002883,0.00025325,0.00022404,0.0002138,0.00019466,0.00018191,0.0001672,0.00014532,0.00014521,0.00011254,0.00010511,0.00010362,0.00010284,7.9001e-05,7.8525e-05,7.6449e-05,7.492e-05,7.1094e-05,6.516e-05,6.0242e-05,4.237e-05,1.9631e-05,1.5533e-05,1.5213e-05,1.4954e-05,1.4142e-05,1.3709e-05,1.0181e-05,8.351e-06,7.222e-06,6.6555e-06,5.6065e-06,4.8413e-06,4.7105e-06,3.8265e-06,3.3991e-06,2.9393e-06,2.323e-06,1.6983e-06,1.6645e-06,1.4958e-06,1.3884e-06,1.3427e-06,9.3667e-07,8.4809e-07,5.3731e-07,4.7284e-07,3.7701e-07,3.3373e-07,3.2077e-07,2.5827e-07,2.5111e-07,2.3611e-07,2.0629e-07,1.592e-07 1,1.9916e-16,3.0256e-16,3.0895e-16,3.5033e-16,3.8586e-16,4.3801e-16,5.5982e-16,1.0003e-15,1.4432e-15,1.5266e-15,2.0404e-15,2.1391e-15,2.5803e-15,4.0634e-15,4.6828e-15,5.1672e-15,7.9022e-15,8.4981e-15,9.2107e-15,1.2063e-14,1.2417e-14,1.2626e-14,1.5496e-14,1.7483e-14,1.7552e-14,2.2111e-14,2.258e-14,2.5056e-14,2.5401e-14,2.5741e-14,5.1946e-14,1.0084e-13,1.0704e-13,1.2994e-13,1.5442e-13,1.7649e-13,2.0674e-13,2.4835e-13,3.4247e-13,4.0844e-13,5.4325e-13,7.7623e-13,8.0212e-13,8.6007e-13,9.1725e-13,1.2809e-12,1.2815e-12,2.8206e-12,2.9893e-12,3.0872e-12,3.9008e-12,3.9683e-12,6.2616e-12,7.483e-12,8.0576e-12,9.4745e-12,1.0499e-11,1.2516e-11,1.3216e-11,2.0038e-11,2.5861e-11,5.7172e-11,7.0916e-11,7.6196e-11,8.6628e-11,1.2301e-10,1.3213e-10,1.4078e-10,1.894e-10,2.4972e-10,2.7651e-10,3.0051e-10,4.0587e-10,6.2406e-10,9.7752e-10,1.319e-09,1.4042e-09,2.4442e-09,2.9554e-09,3.2283e-09,3.3571e-09,3.9323e-09,7.4913e-09,7.6471e-09,8.5477e-09,1.0193e-08,1.055e-08,1.3543e-08,2.6716e-08,2.6955e-08,3.2572e-08,3.4854e-08,7.476e-08,9.0335e-08,9.1597e-08,1.0836e-07,1.3587e-07,1.3648e-07,1.3899e-07,1.5918e-07,1.5937e-07,1.8013e-07,1.8885e-07,3.6815e-07,4.9114e-07,4.9593e-07,6.8542e-07,7.4703e-07,8.53e-07,9.0964e-07,9.4474e-07,9.8508e-07,9.9858e-07,1.0355e-06,1.198e-06,1.2184e-06,1.2616e-06,1.2981e-06,1.6079e-06,2.0437e-06,2.773e-06,3.1077e-06,3.9479e-06,5.1423e-06,5.7424e-06,6.0776e-06,1.1273e-05,1.2095e-05,1.2735e-05,1.4102e-05,1.6041e-05,1.7925e-05,1.9608e-05,1.9922e-05,2.0122e-05,2.2515e-05,3.0164e-05,3.0814e-05,3.4528e-05,4.1132e-05,4.5274e-05,4.5983e-05,7.8831e-05,7.9277e-05,8.8026e-05,0.00010783,0.00011186,0.00012817,0.00013234,0.00016525,0.00019071,0.00026294,0.00026494,0.00037939,0.00039505,0.00040017,0.00050254,0.00050981,0.00055292,0.00061488,0.00063552,0.00065155,0.00071847,0.00073015,0.00073786,0.00079686,0.00081852,0.00082427,0.00087813,0.00089829,0.0010179,0.001249,0.001295,0.0013075,0.0014309,0.001485,0.0017249,0.0022331,0.0024163,0.0027343,0.0028606,0.0032391,0.0036601,0.0036965,0.003725,0.0037283,0.0038638,0.0038755,0.0043307,0.0045553,0.0050061,0.0050271,0.0051561,0.0060566,0.0060848,0.0065629,0.0071474,0.0083074,0.0084718,0.0089571,0.0090691,0.0093576,0.0098593,0.010674,0.010697,0.012773,0.015558,0.015883,0.016249,0.016365,0.018369,0.019705,0.024873,0.025173,0.025787,0.026852,0.031142,0.036216,0.042542,0.044615,0.045891,0.049267,0.056707,0.060255,0.065124,0.073217,0.08083,0.082267,0.098928,0.1013,0.10218,0.10653,0.1083,0.12324,0.1301,0.13214,0.13235,0.1367,0.14273,0.1456,0.14688,0.1708,0.17083,0.19461,0.22445,0.25452,0.28433,0.29782,0.30142,0.30992,0.31746,0.33561,0.33764,0.37417,0.38369,0.40307,0.4277,0.44291,0.44465,0.45717,0.46564,0.48664,0.51833,0.52133,0.53542,0.55776,0.57598,0.57684,0.6398,0.65004,0.65495,0.66749,0.67398,0.68416,0.70027,0.70672,0.71567,0.72995,0.74816,0.76521,0.76692,0.78724,0.80029,0.81157,0.83637,0.84728,0.85117,0.86467,0.86548,0.87123,0.87373,0.90496,0.91236,0.91517,0.92746,0.9342,0.93519,0.94964,0.97254,0.97807,0.98069,0.98615,0.98657,0.99156,0.99203,0.99661,0.9984,0.99999,1,0.99999,0.99998,0.99989,0.99977,0.99968,0.99772,0.99709,0.98734,0.98257,0.97901,0.97751,0.9632,0.96292,0.95746,0.95479,0.94025,0.93976,0.9386,0.92648,0.92296,0.92169,0.91777,0.91259,0.90758,0.90492,0.87723,0.8762,0.86056,0.83582,0.81129,0.77545,0.77493,0.76178,0.74497,0.72238,0.72212,0.71421,0.6765,0.66765,0.66667,0.62142,0.61145,0.60571,0.58803,0.57056,0.53857,0.53359,0.50973,0.4575,0.45682,0.45263,0.44412,0.43749,0.42937,0.41988,0.33642,0.31614,0.28648,0.26557,0.26456,0.26226,0.2332,0.22675,0.22621,0.20108,0.1632,0.16209,0.15205,0.15003,0.12895,0.12348,0.11215,0.10658,0.10067,0.099549,0.092936,0.091808,0.091276,0.077764,0.074054,0.072537,0.067784,0.06634,0.060044,0.05868,0.056013,0.049804,0.049748,0.046979,0.046075,0.046073,0.040521,0.040355,0.038245,0.036121,0.031837,0.028359,0.02607,0.022758,0.020027,0.016916,0.016799,0.014717,0.012934,0.011976,0.0097132,0.0091266,0.0080324,0.007442,0.0063341,0.0062261,0.0060089,0.0055327,0.0046451,0.0038698,0.0035088,0.0031794,0.003019,0.002997,0.0027267,0.0024424,0.0017342,0.0015806,0.0015015,0.0013397,0.0013386,0.0011953,0.0011785,0.0010907,0.0010247,0.00082859,0.00080331,0.00067885,0.00057942,0.0003415,0.0003086,0.0002938,0.00025812,0.00022839,0.00021796,0.00019846,0.00018549,0.0001705,0.00014822,0.0001481,0.00011481,0.00010724,0.00010572,0.00010492,8.0626e-05,8.0142e-05,7.8025e-05,7.6467e-05,7.2566e-05,6.6515e-05,6.15e-05,4.3271e-05,2.0064e-05,1.588e-05,1.5553e-05,1.5288e-05,1.4459e-05,1.4016e-05,1.0413e-05,8.5425e-06,7.3886e-06,6.8096e-06,5.7372e-06,4.9549e-06,4.8211e-06,3.9171e-06,3.48e-06,3.0097e-06,2.3791e-06,1.7399e-06,1.7052e-06,1.5325e-06,1.4226e-06,1.3758e-06,9.6009e-07,8.6937e-07,5.5102e-07,4.8496e-07,3.8675e-07,3.4238e-07,3.291e-07,2.6503e-07,2.5768e-07,2.423e-07,2.1172e-07,1.6343e-07 1,1.9184e-16,2.9151e-16,2.9767e-16,3.3756e-16,3.7182e-16,4.2209e-16,5.3955e-16,9.6432e-16,1.3916e-15,1.4721e-15,1.9679e-15,2.0631e-15,2.4889e-15,3.9204e-15,4.5183e-15,4.986e-15,7.6268e-15,8.2022e-15,8.8904e-15,1.1646e-14,1.1988e-14,1.2189e-14,1.4961e-14,1.6881e-14,1.6947e-14,2.1353e-14,2.1806e-14,2.4198e-14,2.4531e-14,2.486e-14,5.0188e-14,9.7468e-14,1.0346e-13,1.2561e-13,1.4928e-13,1.7064e-13,1.999e-13,2.4016e-13,3.3124e-13,3.9508e-13,5.2558e-13,7.5113e-13,7.7619e-13,8.3231e-13,8.8768e-13,1.2398e-12,1.2404e-12,2.7315e-12,2.895e-12,2.9898e-12,3.7783e-12,3.8438e-12,6.0667e-12,7.2509e-12,7.808e-12,9.1819e-12,1.0176e-11,1.2132e-11,1.281e-11,1.9428e-11,2.5079e-11,5.5469e-11,6.8813e-11,7.3941e-11,8.407e-11,1.194e-10,1.2827e-10,1.3667e-10,1.8391e-10,2.4251e-10,2.6855e-10,2.9188e-10,3.9429e-10,6.0643e-10,9.5019e-10,1.2824e-09,1.3652e-09,2.3774e-09,2.875e-09,3.1406e-09,3.266e-09,3.8261e-09,7.2922e-09,7.4441e-09,8.3214e-09,9.9242e-09,1.0272e-08,1.3188e-08,2.603e-08,2.6263e-08,3.174e-08,3.3966e-08,7.2898e-08,8.8098e-08,8.933e-08,1.0569e-07,1.3255e-07,1.3314e-07,1.3559e-07,1.553e-07,1.5549e-07,1.7577e-07,1.8428e-07,3.5943e-07,4.7962e-07,4.843e-07,6.6953e-07,7.2976e-07,8.3337e-07,8.8876e-07,9.2308e-07,9.6253e-07,9.7574e-07,1.0119e-06,1.1708e-06,1.1908e-06,1.233e-06,1.2686e-06,1.5717e-06,1.9982e-06,2.7119e-06,3.0395e-06,3.8621e-06,5.0318e-06,5.6195e-06,5.9479e-06,1.1039e-05,1.1844e-05,1.2472e-05,1.3811e-05,1.5713e-05,1.756e-05,1.921e-05,1.9518e-05,1.9714e-05,2.2061e-05,2.9564e-05,3.0202e-05,3.3846e-05,4.0326e-05,4.4392e-05,4.5087e-05,7.7337e-05,7.7775e-05,8.6367e-05,0.00010582,0.00010978,0.00012581,0.0001299,0.00016224,0.00018727,0.00025828,0.00026025,0.00037282,0.00038823,0.00039326,0.00049399,0.00050115,0.00054357,0.00060455,0.00062487,0.00064066,0.00070653,0.00071803,0.00072562,0.00078371,0.00080505,0.0008107,0.00086374,0.0008836,0.0010014,0.0012291,0.0012744,0.0012867,0.0014083,0.0014616,0.001698,0.002199,0.0023796,0.0026933,0.0028178,0.0031911,0.0036065,0.0036424,0.0036706,0.0036738,0.0038075,0.003819,0.0042682,0.0044899,0.0049349,0.0049556,0.0050829,0.0059719,0.0059998,0.0064719,0.0070492,0.0081949,0.0083573,0.0088368,0.0089474,0.0092325,0.0097282,0.010534,0.010556,0.012608,0.015361,0.015682,0.016045,0.016159,0.018141,0.019463,0.024577,0.024874,0.025482,0.026536,0.030783,0.035807,0.042074,0.044127,0.045392,0.048737,0.056112,0.05963,0.064457,0.072483,0.080036,0.081461,0.097995,0.10035,0.10122,0.10554,0.1073,0.12213,0.12895,0.13097,0.13118,0.1355,0.1415,0.14434,0.14562,0.16939,0.16942,0.19307,0.22275,0.25268,0.28235,0.29579,0.29937,0.30784,0.31535,0.33343,0.33545,0.37187,0.38135,0.40068,0.42525,0.44043,0.44216,0.45466,0.46311,0.48407,0.51572,0.51872,0.53278,0.55511,0.57332,0.57417,0.63714,0.64738,0.65229,0.66485,0.67134,0.68154,0.69766,0.70413,0.71309,0.7274,0.74564,0.76274,0.76446,0.78484,0.79794,0.80926,0.83417,0.84513,0.84904,0.86262,0.86342,0.86921,0.87173,0.90317,0.91063,0.91346,0.92587,0.93267,0.93368,0.94829,0.97153,0.97716,0.97983,0.98541,0.98585,0.99098,0.99147,0.99624,0.99814,0.99996,0.99999,1,1,0.99994,0.99985,0.99978,0.99801,0.99742,0.98802,0.98338,0.97989,0.97842,0.96435,0.96407,0.95869,0.95606,0.9417,0.94121,0.94006,0.92806,0.92457,0.92332,0.91944,0.9143,0.90933,0.90669,0.8792,0.87818,0.86263,0.83802,0.81359,0.77788,0.77736,0.76425,0.74748,0.72494,0.72469,0.71679,0.67913,0.67029,0.66931,0.62408,0.61412,0.60837,0.5907,0.57322,0.54121,0.53623,0.51233,0.46002,0.45934,0.45514,0.44662,0.43997,0.43183,0.42232,0.33861,0.31826,0.28847,0.26747,0.26646,0.26415,0.23496,0.22847,0.22794,0.20267,0.16457,0.16345,0.15335,0.15132,0.1301,0.12459,0.11319,0.10757,0.10162,0.10049,0.093831,0.092694,0.092158,0.07854,0.074801,0.073271,0.068479,0.067023,0.060673,0.059297,0.056607,0.050343,0.050287,0.047493,0.04658,0.046579,0.040974,0.040807,0.038677,0.036533,0.032207,0.028694,0.026381,0.023035,0.020275,0.01713,0.017012,0.014906,0.013103,0.012133,0.0098441,0.0092504,0.0081428,0.0075452,0.0064233,0.006314,0.006094,0.0056117,0.0047126,0.0039269,0.003561,0.0032272,0.0030646,0.0030423,0.0027682,0.0024799,0.0017616,0.0016058,0.0015255,0.0013613,0.0013602,0.0012148,0.0011977,0.0011086,0.0010415,0.00084243,0.00081676,0.00069035,0.00058934,0.00034755,0.00031411,0.00029906,0.00026278,0.00023254,0.00022194,0.0002021,0.0001889,0.00017365,0.00015098,0.00015087,0.00011698,0.00010928,0.00010773,0.00010692,8.2181e-05,8.1687e-05,7.9532e-05,7.7945e-05,7.3973e-05,6.781e-05,6.2703e-05,4.4132e-05,2.0479e-05,1.6211e-05,1.5878e-05,1.5608e-05,1.4762e-05,1.4311e-05,1.0634e-05,8.7259e-06,7.5483e-06,6.9573e-06,5.8626e-06,5.0638e-06,4.9272e-06,4.004e-06,3.5576e-06,3.0772e-06,2.433e-06,1.7797e-06,1.7443e-06,1.5678e-06,1.4555e-06,1.4076e-06,9.8259e-07,8.8981e-07,5.6418e-07,4.966e-07,3.961e-07,3.507e-07,3.371e-07,2.7152e-07,2.64e-07,2.4825e-07,2.1695e-07,1.675e-07 1,1.8787e-16,2.8551e-16,2.9154e-16,3.3063e-16,3.6419e-16,4.1345e-16,5.2854e-16,9.4481e-16,1.3636e-15,1.4425e-15,1.9285e-15,2.0218e-15,2.4392e-15,3.8427e-15,4.429e-15,4.8875e-15,7.4771e-15,8.0414e-15,8.7164e-15,1.1419e-14,1.1754e-14,1.1951e-14,1.4671e-14,1.6554e-14,1.6619e-14,2.094e-14,2.1385e-14,2.3731e-14,2.4058e-14,2.4381e-14,4.9231e-14,9.5631e-14,1.0151e-13,1.2325e-13,1.4649e-13,1.6745e-13,1.9618e-13,2.357e-13,3.2512e-13,3.8781e-13,5.1595e-13,7.3746e-13,7.6207e-13,8.1719e-13,8.7157e-13,1.2174e-12,1.2181e-12,2.683e-12,2.8435e-12,2.9368e-12,3.7115e-12,3.7759e-12,5.9605e-12,7.1244e-12,7.672e-12,9.0224e-12,9.9992e-12,1.1922e-11,1.2589e-11,1.9096e-11,2.4652e-11,5.454e-11,6.7666e-11,7.271e-11,8.2674e-11,1.1743e-10,1.2616e-10,1.3442e-10,1.809e-10,2.3858e-10,2.642e-10,2.8716e-10,3.8796e-10,5.968e-10,9.3526e-10,1.2624e-09,1.344e-09,2.3408e-09,2.831e-09,3.0927e-09,3.2162e-09,3.7679e-09,7.1833e-09,7.333e-09,8.1975e-09,9.7772e-09,1.012e-08,1.2995e-08,2.5655e-08,2.5884e-08,3.1285e-08,3.348e-08,7.1878e-08,8.6872e-08,8.8087e-08,1.0423e-07,1.3073e-07,1.3131e-07,1.3373e-07,1.5318e-07,1.5337e-07,1.7337e-07,1.8177e-07,3.5465e-07,4.733e-07,4.7793e-07,6.6081e-07,7.2029e-07,8.226e-07,8.773e-07,9.112e-07,9.5016e-07,9.632e-07,9.9887e-07,1.1558e-06,1.1756e-06,1.2173e-06,1.2525e-06,1.5519e-06,1.9731e-06,2.6784e-06,3.0021e-06,3.815e-06,4.9711e-06,5.552e-06,5.8766e-06,1.091e-05,1.1707e-05,1.2327e-05,1.3652e-05,1.5532e-05,1.7359e-05,1.8991e-05,1.9296e-05,1.949e-05,2.1812e-05,2.9234e-05,2.9865e-05,3.347e-05,3.9883e-05,4.3906e-05,4.4594e-05,7.6514e-05,7.6947e-05,8.5453e-05,0.00010471,0.00010863,0.0001245,0.00012855,0.00016059,0.00018537,0.00025571,0.00025766,0.0003692,0.00038446,0.00038945,0.00048927,0.00049637,0.00053841,0.00059886,0.000619,0.00063464,0.00069995,0.00071135,0.00071887,0.00077646,0.00079761,0.00080322,0.0008558,0.00087549,0.00099228,0.0012181,0.001263,0.0012752,0.0013958,0.0014486,0.0016832,0.0021802,0.0023594,0.0026706,0.0027941,0.0031647,0.0035768,0.0036125,0.0036405,0.0036437,0.0037764,0.0037878,0.0042337,0.0044537,0.0048955,0.004916,0.0050425,0.0059251,0.0059528,0.0064216,0.0069948,0.0081327,0.008294,0.0087702,0.0088801,0.0091632,0.0096556,0.010456,0.010478,0.012516,0.015252,0.015572,0.015932,0.016046,0.018016,0.01933,0.024413,0.024708,0.025313,0.026361,0.030584,0.035581,0.041814,0.043857,0.045115,0.048444,0.055781,0.059282,0.064087,0.072076,0.079594,0.081014,0.097477,0.099825,0.10069,0.10499,0.10674,0.12152,0.12831,0.13032,0.13053,0.13484,0.14081,0.14365,0.14492,0.1686,0.16863,0.19221,0.2218,0.25165,0.28124,0.29465,0.29823,0.30668,0.31417,0.33221,0.33424,0.37058,0.38005,0.39935,0.42389,0.43904,0.44077,0.45326,0.4617,0.48264,0.51426,0.51726,0.53131,0.55363,0.57183,0.57269,0.63565,0.6459,0.65081,0.66337,0.66987,0.68007,0.69621,0.70268,0.71165,0.72597,0.74424,0.76136,0.76308,0.78349,0.79662,0.80796,0.83293,0.84392,0.84784,0.86146,0.86227,0.86807,0.8706,0.90217,0.90966,0.9125,0.92497,0.93181,0.93283,0.94753,0.97095,0.97664,0.97934,0.98499,0.98544,0.99065,0.99115,0.99602,0.99799,0.99993,0.99998,1,1,0.99997,0.99989,0.99983,0.99816,0.99759,0.9884,0.98382,0.98037,0.97892,0.96499,0.96471,0.95937,0.95676,0.9425,0.94202,0.94087,0.92894,0.92547,0.92422,0.92036,0.91525,0.9103,0.90768,0.88029,0.87927,0.86378,0.83924,0.81488,0.77924,0.77872,0.76563,0.74888,0.72637,0.72611,0.71822,0.68059,0.67176,0.67079,0.62557,0.61561,0.60987,0.59219,0.5747,0.54268,0.5377,0.51379,0.46143,0.46075,0.45655,0.44801,0.44136,0.43321,0.42368,0.33984,0.31944,0.28959,0.26854,0.26753,0.26521,0.23594,0.22944,0.2289,0.20356,0.16534,0.16422,0.15408,0.15205,0.13075,0.12522,0.11377,0.10813,0.10216,0.10102,0.094334,0.093192,0.092654,0.078976,0.07522,0.073684,0.068869,0.067406,0.061027,0.059645,0.056941,0.050646,0.05059,0.047782,0.046864,0.046863,0.041229,0.041061,0.03892,0.036764,0.032415,0.028882,0.026556,0.023191,0.020415,0.01725,0.017131,0.015013,0.013198,0.012222,0.0099179,0.0093202,0.0082051,0.0076034,0.0064737,0.0063636,0.006142,0.0056563,0.0047506,0.0039592,0.0035905,0.0032541,0.0030903,0.0030679,0.0027917,0.0025011,0.0017771,0.00162,0.0015391,0.0013735,0.0013724,0.0012258,0.0012086,0.0011187,0.0010511,0.00085026,0.00082436,0.00069685,0.00059495,0.00035098,0.00031722,0.00030204,0.00026541,0.00023489,0.00022418,0.00020416,0.00019083,0.00017544,0.00015254,0.00015243,0.00011821,0.00011043,0.00010887,0.00010804,8.3061e-05,8.2563e-05,8.0386e-05,7.8783e-05,7.477e-05,6.8544e-05,6.3384e-05,4.4621e-05,2.0714e-05,1.64e-05,1.6063e-05,1.5789e-05,1.4934e-05,1.4478e-05,1.076e-05,8.83e-06,7.6389e-06,7.0411e-06,5.9337e-06,5.1256e-06,4.9874e-06,4.0534e-06,3.6017e-06,3.1155e-06,2.4636e-06,1.8024e-06,1.7665e-06,1.5878e-06,1.4741e-06,1.4257e-06,9.9537e-07,9.0143e-07,5.7167e-07,5.0321e-07,4.0142e-07,3.5543e-07,3.4165e-07,2.7521e-07,2.676e-07,2.5164e-07,2.1992e-07,1.6981e-07 1,1.7545e-16,2.6674e-16,2.7238e-16,3.0893e-16,3.4032e-16,3.864e-16,4.9408e-16,8.837e-16,1.2759e-15,1.3497e-15,1.805e-15,1.8925e-15,2.2836e-15,3.5991e-15,4.1487e-15,4.5787e-15,7.0077e-15,7.5371e-15,8.1704e-15,1.0706e-14,1.1021e-14,1.1206e-14,1.3759e-14,1.5527e-14,1.5588e-14,1.9646e-14,2.0063e-14,2.2267e-14,2.2575e-14,2.2877e-14,4.6228e-14,8.986e-14,9.5392e-14,1.1585e-13,1.3771e-13,1.5744e-13,1.8448e-13,2.2169e-13,3.0589e-13,3.6494e-13,4.8567e-13,6.9445e-13,7.1765e-13,7.6961e-13,8.2089e-13,1.1471e-12,1.1476e-12,2.53e-12,2.6816e-12,2.7697e-12,3.5012e-12,3.562e-12,5.6257e-12,6.7256e-12,7.2431e-12,8.5196e-12,9.4431e-12,1.1261e-11,1.1892e-11,1.8047e-11,2.3305e-11,5.1607e-11,6.4043e-11,6.8823e-11,7.8267e-11,1.1122e-10,1.1949e-10,1.2733e-10,1.7142e-10,2.2615e-10,2.5046e-10,2.7226e-10,3.6796e-10,5.6633e-10,8.8801e-10,1.199e-09,1.2767e-09,2.2251e-09,2.6918e-09,2.9409e-09,3.0585e-09,3.5839e-09,6.8382e-09,6.9808e-09,7.805e-09,9.3112e-09,9.6385e-09,1.238e-08,2.4464e-08,2.4683e-08,2.9841e-08,3.1937e-08,6.8638e-08,8.2979e-08,8.4141e-08,9.9585e-08,1.2494e-07,1.255e-07,1.2782e-07,1.4643e-07,1.4661e-07,1.6577e-07,1.7381e-07,3.3944e-07,4.532e-07,4.5764e-07,6.3307e-07,6.9013e-07,7.8832e-07,8.4083e-07,8.7336e-07,9.1076e-07,9.2328e-07,9.5752e-07,1.1082e-06,1.1272e-06,1.1672e-06,1.2011e-06,1.4886e-06,1.8935e-06,2.5715e-06,2.8828e-06,3.6648e-06,4.7774e-06,5.3366e-06,5.6492e-06,1.0499e-05,1.1266e-05,1.1865e-05,1.3142e-05,1.4955e-05,1.6717e-05,1.8292e-05,1.8586e-05,1.8774e-05,2.1014e-05,2.8179e-05,2.8789e-05,3.227e-05,3.8465e-05,4.2352e-05,4.3018e-05,7.3881e-05,7.43e-05,8.253e-05,0.00010117,0.00010496,0.00012033,0.00012425,0.00015528,0.00017929,0.00024748,0.00024938,0.00035758,0.00037239,0.00037724,0.00047414,0.00048103,0.00052187,0.00058059,0.00060015,0.00061535,0.00067881,0.00068989,0.0006972,0.00075318,0.00077374,0.00077919,0.00083032,0.00084946,0.00096303,0.0011827,0.0012264,0.0012383,0.0013557,0.0014071,0.0016355,0.0021196,0.0022943,0.0025977,0.0027181,0.0030795,0.0034816,0.0035164,0.0035436,0.0035468,0.0036763,0.0036874,0.0041226,0.0043374,0.0047687,0.0047888,0.0049122,0.0057744,0.0058014,0.0062595,0.0068198,0.0079323,0.0080899,0.0085557,0.0086632,0.0089402,0.0094219,0.010205,0.010227,0.012222,0.014902,0.015214,0.015567,0.015679,0.017609,0.018897,0.023884,0.024173,0.024766,0.025795,0.029941,0.034849,0.040975,0.042983,0.04422,0.047494,0.054713,0.058159,0.062889,0.070757,0.078166,0.079565,0.095799,0.098114,0.098971,0.10321,0.10494,0.11953,0.12623,0.12822,0.12843,0.13268,0.13858,0.14139,0.14264,0.16606,0.16609,0.18942,0.21872,0.2483,0.27766,0.29097,0.29451,0.3029,0.31034,0.32826,0.33027,0.3664,0.37582,0.39501,0.41944,0.43453,0.43625,0.44868,0.45709,0.47797,0.5095,0.51249,0.52652,0.54879,0.56698,0.56783,0.63079,0.64105,0.64596,0.65854,0.66505,0.67527,0.69144,0.69793,0.70693,0.72129,0.73963,0.75684,0.75856,0.77908,0.79229,0.80371,0.82887,0.83995,0.84391,0.85766,0.85848,0.86434,0.8669,0.89886,0.90646,0.90934,0.92201,0.92897,0.93001,0.945,0.96902,0.9749,0.9777,0.98359,0.98405,0.98953,0.99006,0.99528,0.99745,0.99981,0.99989,0.99994,0.99997,1,0.99998,0.99994,0.99862,0.99812,0.98958,0.98521,0.98191,0.98052,0.96703,0.96676,0.96157,0.95902,0.94508,0.94461,0.94348,0.93178,0.92837,0.92715,0.92335,0.91832,0.91345,0.91086,0.88384,0.88284,0.86752,0.84322,0.81905,0.78365,0.78313,0.77011,0.75345,0.73102,0.73077,0.72291,0.68539,0.67657,0.6756,0.63044,0.62048,0.61474,0.59706,0.57956,0.54751,0.54251,0.51856,0.46605,0.46536,0.46115,0.45258,0.4459,0.43772,0.42815,0.34386,0.32333,0.29327,0.27206,0.27104,0.2687,0.23918,0.23261,0.23207,0.2065,0.16788,0.16674,0.15649,0.15443,0.13288,0.12728,0.11569,0.10998,0.10392,0.10277,0.095992,0.094835,0.094289,0.080417,0.076605,0.075046,0.070159,0.068674,0.062196,0.060792,0.058045,0.051648,0.051591,0.048737,0.047804,0.047802,0.042073,0.041902,0.039724,0.03753,0.033103,0.029506,0.027136,0.023707,0.020877,0.017649,0.017528,0.015366,0.013513,0.012517,0.010163,0.0095517,0.0084118,0.0077964,0.0066407,0.0065281,0.0063014,0.0058042,0.004877,0.0040663,0.0036885,0.0033437,0.0031758,0.0031528,0.0028696,0.0025716,0.0018286,0.0016673,0.0015842,0.0014141,0.001413,0.0012623,0.0012446,0.0011523,0.0010828,0.00087631,0.00084968,0.0007185,0.00061364,0.00036239,0.00032761,0.00031196,0.0002742,0.00024273,0.00023168,0.00021103,0.00019728,0.00018139,0.00015776,0.00015765,0.00012232,0.00011428,0.00011267,0.00011182,8.6003e-05,8.5487e-05,8.3237e-05,8.158e-05,7.7432e-05,7.0997e-05,6.5661e-05,4.6253e-05,2.1501e-05,1.7029e-05,1.668e-05,1.6397e-05,1.551e-05,1.5037e-05,1.1181e-05,9.1788e-06,7.9425e-06,7.3219e-06,6.1721e-06,5.3328e-06,5.1893e-06,4.2188e-06,3.7494e-06,3.244e-06,2.5662e-06,1.8784e-06,1.8411e-06,1.6551e-06,1.5368e-06,1.4863e-06,1.0383e-06,9.4043e-07,5.9682e-07,5.2545e-07,4.193e-07,3.7133e-07,3.5696e-07,2.8763e-07,2.7968e-07,2.6303e-07,2.2992e-07,1.776e-07 1,1.6592e-16,2.5233e-16,2.5767e-16,2.9228e-16,3.22e-16,3.6563e-16,4.6762e-16,8.3675e-16,1.2084e-15,1.2784e-15,1.71e-15,1.793e-15,2.1639e-15,3.4117e-15,3.9332e-15,4.3411e-15,6.6464e-15,7.1489e-15,7.7501e-15,1.0158e-14,1.0457e-14,1.0633e-14,1.3057e-14,1.4736e-14,1.4794e-14,1.8649e-14,1.9045e-14,2.1139e-14,2.1431e-14,2.1719e-14,4.3913e-14,8.5407e-14,9.0669e-14,1.1013e-13,1.3093e-13,1.4971e-13,1.7544e-13,2.1087e-13,2.9104e-13,3.4727e-13,4.6228e-13,6.612e-13,6.8331e-13,7.3283e-13,7.817e-13,1.0926e-12,1.0932e-12,2.4117e-12,2.5563e-12,2.6403e-12,3.3384e-12,3.3964e-12,5.3664e-12,6.4166e-12,6.9108e-12,8.13e-12,9.0121e-12,1.0749e-11,1.1352e-11,1.7234e-11,2.2259e-11,4.933e-11,6.123e-11,6.5804e-11,7.4843e-11,1.0639e-10,1.1431e-10,1.2182e-10,1.6405e-10,2.1647e-10,2.3978e-10,2.6067e-10,3.524e-10,5.4261e-10,8.512e-10,1.1497e-09,1.2242e-09,2.1349e-09,2.5831e-09,2.8225e-09,2.9355e-09,3.4403e-09,6.5687e-09,6.7058e-09,7.4985e-09,8.9472e-09,9.262e-09,1.19e-08,2.3532e-08,2.3743e-08,2.8711e-08,3.073e-08,6.6101e-08,7.9929e-08,8.105e-08,9.5945e-08,1.2041e-07,1.2095e-07,1.2318e-07,1.4115e-07,1.4132e-07,1.598e-07,1.6756e-07,3.2751e-07,4.3742e-07,4.417e-07,6.1127e-07,6.6644e-07,7.6139e-07,8.1216e-07,8.4362e-07,8.798e-07,8.9191e-07,9.2503e-07,1.0708e-06,1.0892e-06,1.1279e-06,1.1606e-06,1.4389e-06,1.8308e-06,2.4873e-06,2.7889e-06,3.5465e-06,4.6248e-06,5.1669e-06,5.4699e-06,1.0174e-05,1.0919e-05,1.15e-05,1.2739e-05,1.45e-05,1.6211e-05,1.774e-05,1.8026e-05,1.8208e-05,2.0384e-05,2.7345e-05,2.7938e-05,3.1322e-05,3.7344e-05,4.1124e-05,4.1771e-05,7.1797e-05,7.2206e-05,8.0215e-05,9.8361e-05,0.00010206,0.00011702,0.00012084,0.00015107,0.00017448,0.00024095,0.0002428,0.00034835,0.00036281,0.00036754,0.00046213,0.00046886,0.00050873,0.00056607,0.00058518,0.00060003,0.00066202,0.00067284,0.00067998,0.00073467,0.00075477,0.00076009,0.00081005,0.00082876,0.00093977,0.0011546,0.0011973,0.0012089,0.0013237,0.0013741,0.0015975,0.0020714,0.0022424,0.0025395,0.0026575,0.0030115,0.0034055,0.0034397,0.0034664,0.0034695,0.0035964,0.0036073,0.0040339,0.0042445,0.0046675,0.0046872,0.0048083,0.005654,0.0056806,0.0061301,0.0066799,0.007772,0.0079269,0.0083843,0.0084898,0.0087618,0.0092349,0.010004,0.010026,0.011986,0.014621,0.014928,0.015275,0.015385,0.017284,0.018551,0.023459,0.023744,0.024328,0.025341,0.029425,0.034261,0.040301,0.042282,0.043501,0.046731,0.053854,0.057256,0.061925,0.069697,0.077016,0.078398,0.094446,0.096736,0.097583,0.10178,0.10349,0.11792,0.12456,0.12653,0.12673,0.13094,0.13679,0.13956,0.14081,0.16401,0.16404,0.18716,0.21623,0.2456,0.27476,0.28798,0.2915,0.29985,0.30724,0.32506,0.32706,0.363,0.37238,0.39149,0.41582,0.43086,0.43257,0.44497,0.45335,0.47417,0.50563,0.50861,0.52261,0.54485,0.56302,0.56387,0.62682,0.63708,0.642,0.65459,0.66111,0.67134,0.68755,0.69405,0.70307,0.71746,0.73586,0.75313,0.75486,0.77546,0.78873,0.80022,0.82553,0.83669,0.84068,0.85454,0.85536,0.86127,0.86385,0.89612,0.90381,0.90673,0.91956,0.92662,0.92767,0.9429,0.96741,0.97344,0.97632,0.98239,0.98288,0.98857,0.98912,0.99462,0.99696,0.99966,0.99977,0.99985,0.99989,0.99998,1,0.99999,0.99894,0.9985,0.9905,0.98631,0.98312,0.98177,0.96865,0.96839,0.96331,0.96082,0.94714,0.94668,0.94558,0.93406,0.9307,0.92949,0.92575,0.92079,0.91598,0.91343,0.88671,0.88571,0.87054,0.84643,0.82243,0.78722,0.78671,0.77375,0.75716,0.73481,0.73456,0.72672,0.68929,0.68049,0.67952,0.63441,0.62445,0.61871,0.60103,0.58353,0.55145,0.54645,0.52246,0.46983,0.46914,0.46491,0.45632,0.44962,0.44142,0.43181,0.34716,0.32653,0.29629,0.27494,0.27392,0.27156,0.24184,0.23523,0.23468,0.20891,0.16997,0.16882,0.15848,0.1564,0.13464,0.12898,0.11727,0.1115,0.10538,0.10422,0.097362,0.096191,0.095639,0.081607,0.07775,0.076172,0.071225,0.069722,0.063163,0.061741,0.058959,0.052478,0.05242,0.049527,0.048581,0.04858,0.042772,0.042599,0.04039,0.038165,0.033674,0.030023,0.027618,0.024135,0.021261,0.017981,0.017857,0.01566,0.013775,0.012762,0.010366,0.0097444,0.0085837,0.0079571,0.0067798,0.0066651,0.0064341,0.0059275,0.0049823,0.0041556,0.0037703,0.0034185,0.0032471,0.0032236,0.0029346,0.0026304,0.0018716,0.0017068,0.0016219,0.0014481,0.0014469,0.0012929,0.0012748,0.0011804,0.0011093,0.00089811,0.00087086,0.00073663,0.0006293,0.00037197,0.00033632,0.00032027,0.00028157,0.0002493,0.00023797,0.00021679,0.00020269,0.00018639,0.00016215,0.00016203,0.00012577,0.00011751,0.00011586,0.00011498,8.8475e-05,8.7945e-05,8.5634e-05,8.3932e-05,7.9671e-05,7.3058e-05,6.7576e-05,4.7626e-05,2.2164e-05,1.756e-05,1.72e-05,1.6908e-05,1.5996e-05,1.5508e-05,1.1536e-05,9.4729e-06,8.1987e-06,7.5588e-06,6.3733e-06,5.5077e-06,5.3597e-06,4.3586e-06,3.8742e-06,3.3526e-06,2.6529e-06,1.9426e-06,1.9041e-06,1.712e-06,1.5897e-06,1.5376e-06,1.0746e-06,9.7345e-07,6.1812e-07,5.4429e-07,4.3445e-07,3.848e-07,3.6993e-07,2.9816e-07,2.8993e-07,2.7269e-07,2.384e-07,1.842e-07 1,1.6036e-16,2.4393e-16,2.4909e-16,2.8256e-16,3.1131e-16,3.5351e-16,4.5217e-16,8.0933e-16,1.169e-15,1.2368e-15,1.6546e-15,1.7349e-15,2.0939e-15,3.3021e-15,3.8072e-15,4.2023e-15,6.4351e-15,6.9219e-15,7.5043e-15,9.8369e-15,1.0127e-14,1.0297e-14,1.2646e-14,1.4273e-14,1.4329e-14,1.8065e-14,1.845e-14,2.0479e-14,2.0762e-14,2.1041e-14,4.2558e-14,8.2799e-14,8.7903e-14,1.0678e-13,1.2696e-13,1.4518e-13,1.7015e-13,2.0452e-13,2.8233e-13,3.3691e-13,4.4856e-13,6.417e-13,6.6317e-13,7.1125e-13,7.5871e-13,1.0607e-12,1.0612e-12,2.3422e-12,2.4827e-12,2.5643e-12,3.2427e-12,3.2991e-12,5.214e-12,6.2351e-12,6.7156e-12,7.901e-12,8.7588e-12,1.0448e-11,1.1034e-11,1.6755e-11,2.1645e-11,4.799e-11,5.9574e-11,6.4027e-11,7.2827e-11,1.0355e-10,1.1126e-10,1.1857e-10,1.597e-10,2.1078e-10,2.3348e-10,2.5383e-10,3.4322e-10,5.2862e-10,8.2948e-10,1.1206e-09,1.1932e-09,2.0816e-09,2.519e-09,2.7525e-09,2.8628e-09,3.3555e-09,6.4094e-09,6.5434e-09,7.3173e-09,8.732e-09,9.0395e-09,1.1616e-08,2.2981e-08,2.3187e-08,2.8042e-08,3.0016e-08,6.4599e-08,7.8123e-08,7.9219e-08,9.3789e-08,1.1772e-07,1.1825e-07,1.2043e-07,1.3801e-07,1.3818e-07,1.5627e-07,1.6386e-07,3.2043e-07,4.2806e-07,4.3225e-07,5.9833e-07,6.5238e-07,7.454e-07,7.9514e-07,8.2597e-07,8.6142e-07,8.7328e-07,9.0574e-07,1.0486e-06,1.0666e-06,1.1045e-06,1.1366e-06,1.4094e-06,1.7935e-06,2.4373e-06,2.733e-06,3.4761e-06,4.534e-06,5.066e-06,5.3633e-06,9.9808e-06,1.0712e-05,1.1283e-05,1.25e-05,1.4229e-05,1.5909e-05,1.7411e-05,1.7692e-05,1.7871e-05,2.0009e-05,2.6849e-05,2.7431e-05,3.0757e-05,3.6676e-05,4.0391e-05,4.1027e-05,7.0554e-05,7.0956e-05,7.8834e-05,9.6686e-05,0.00010032,0.00011505,0.00011881,0.00014856,0.0001716,0.00023705,0.00023887,0.00034284,0.00035708,0.00036174,0.00045494,0.00046157,0.00050087,0.00055738,0.00057622,0.00059086,0.00065197,0.00066263,0.00066968,0.0007236,0.00074341,0.00074866,0.00079792,0.00081637,0.00092585,0.0011377,0.0011799,0.0011913,0.0013046,0.0013543,0.0015747,0.0020425,0.0022113,0.0025046,0.0026211,0.0029708,0.0033599,0.0033937,0.00342,0.0034231,0.0035485,0.0035593,0.0039807,0.0041888,0.0046067,0.0046262,0.0047458,0.0055818,0.005608,0.0060523,0.0065959,0.0076758,0.0078289,0.0082812,0.0083856,0.0086546,0.0091226,0.0098832,0.0099047,0.011844,0.014452,0.014756,0.0151,0.015208,0.017088,0.018343,0.023203,0.023486,0.024064,0.025068,0.029114,0.033907,0.039894,0.041858,0.043068,0.04627,0.053336,0.05671,0.061344,0.069056,0.076322,0.077694,0.093629,0.095904,0.096745,0.10091,0.10261,0.11695,0.12355,0.1255,0.1257,0.12989,0.1357,0.13846,0.1397,0.16277,0.1628,0.1858,0.21472,0.24395,0.27299,0.28617,0.28968,0.29799,0.30536,0.32312,0.32511,0.36094,0.37029,0.38935,0.41362,0.42862,0.43033,0.44271,0.45107,0.47185,0.50327,0.50625,0.52023,0.54246,0.56061,0.56146,0.6244,0.63466,0.63959,0.65218,0.6587,0.66895,0.68517,0.69167,0.7007,0.71513,0.73356,0.75086,0.75259,0.77325,0.78656,0.79808,0.82348,0.83469,0.83869,0.85262,0.85344,0.85938,0.86198,0.89444,0.90218,0.90512,0.91805,0.92517,0.92622,0.9416,0.96641,0.97253,0.97546,0.98165,0.98214,0.98796,0.98853,0.9942,0.99664,0.99955,0.99968,0.99978,0.99983,0.99994,0.99999,1,0.99912,0.99871,0.99104,0.98695,0.98384,0.98252,0.96962,0.96936,0.96436,0.96189,0.94838,0.94792,0.94683,0.93543,0.93211,0.93091,0.9272,0.92228,0.91751,0.91498,0.88844,0.88745,0.87236,0.84838,0.82448,0.7894,0.78888,0.77597,0.75941,0.73711,0.73686,0.72904,0.69166,0.68287,0.6819,0.63683,0.62687,0.62114,0.60346,0.58595,0.55385,0.54885,0.52484,0.47214,0.47145,0.46722,0.45861,0.4519,0.44367,0.43405,0.34919,0.32848,0.29814,0.27671,0.27568,0.27332,0.24347,0.23683,0.23628,0.21039,0.17125,0.1701,0.15969,0.1576,0.13572,0.13003,0.11824,0.11243,0.10628,0.10511,0.098205,0.097026,0.09647,0.08234,0.078455,0.076866,0.071882,0.070368,0.063758,0.062325,0.059522,0.052989,0.052931,0.050014,0.049061,0.04906,0.043203,0.043028,0.040801,0.038557,0.034026,0.030342,0.027915,0.0244,0.021497,0.018185,0.018061,0.015841,0.013937,0.012913,0.010492,0.0098636,0.0086901,0.0080565,0.006866,0.0067499,0.0065162,0.0060038,0.0050475,0.0042109,0.0038209,0.0034648,0.0032913,0.0032675,0.0029749,0.0026668,0.0018982,0.0017313,0.0016453,0.0014691,0.001468,0.0013119,0.0012935,0.0011978,0.0011258,0.00091165,0.00088402,0.00074789,0.00063902,0.00037792,0.00034173,0.00032545,0.00028616,0.00025339,0.00024189,0.00022038,0.00020605,0.0001895,0.00016488,0.00016475,0.00012791,0.00011953,0.00011784,0.00011696,9.0015e-05,8.9477e-05,8.7128e-05,8.5397e-05,8.1065e-05,7.4343e-05,6.8769e-05,4.8483e-05,2.2578e-05,1.7892e-05,1.7525e-05,1.7228e-05,1.6299e-05,1.5803e-05,1.1758e-05,9.6567e-06,8.3587e-06,7.7069e-06,6.4991e-06,5.6171e-06,5.4662e-06,4.446e-06,3.9522e-06,3.4206e-06,2.7072e-06,1.9828e-06,1.9436e-06,1.7476e-06,1.6229e-06,1.5697e-06,1.0973e-06,9.9413e-07,6.3146e-07,5.5609e-07,4.4395e-07,3.9325e-07,3.7806e-07,3.0476e-07,2.9636e-07,2.7874e-07,2.4372e-07,1.8835e-07 1,1.1191e-16,1.7058e-16,1.7421e-16,1.9775e-16,2.1797e-16,2.4768e-16,3.1719e-16,5.6939e-16,8.2399e-16,8.7201e-16,1.1683e-15,1.2253e-15,1.4803e-15,2.3399e-15,2.6997e-15,2.9814e-15,4.5757e-15,4.9237e-15,5.3402e-15,7.01e-15,7.2176e-15,7.3396e-15,9.0237e-15,1.0191e-14,1.0232e-14,1.2915e-14,1.3191e-14,1.465e-14,1.4854e-14,1.5055e-14,3.0564e-14,5.9678e-14,6.3378e-14,7.7069e-14,9.1723e-14,1.0496e-13,1.2312e-13,1.4814e-13,2.0487e-13,2.4471e-13,3.2632e-13,4.6776e-13,4.835e-13,5.1876e-13,5.5358e-13,7.7538e-13,7.7577e-13,1.7199e-12,1.8237e-12,1.884e-12,2.3857e-12,2.4274e-12,3.8466e-12,4.6047e-12,4.9617e-12,5.8431e-12,6.4814e-12,7.7394e-12,8.1762e-12,1.2447e-11,1.6103e-11,3.5876e-11,4.4595e-11,4.795e-11,5.4583e-11,7.7776e-11,8.3606e-11,8.9136e-11,1.2028e-10,1.5902e-10,1.7627e-10,1.9173e-10,2.5975e-10,4.0117e-10,6.3133e-10,8.5456e-10,9.1034e-10,1.594e-09,1.9313e-09,2.1116e-09,2.1968e-09,2.5776e-09,4.9453e-09,5.0494e-09,5.651e-09,6.7517e-09,6.9911e-09,8.9992e-09,1.789e-08,1.8052e-08,2.1861e-08,2.3411e-08,5.0664e-08,6.1356e-08,6.2223e-08,7.3759e-08,9.2735e-08,9.3154e-08,9.4889e-08,1.0885e-07,1.0898e-07,1.2336e-07,1.2941e-07,2.5434e-07,3.4054e-07,3.439e-07,4.7724e-07,5.2071e-07,5.9558e-07,6.3565e-07,6.605e-07,6.8907e-07,6.9864e-07,7.2481e-07,8.4012e-07,8.5464e-07,8.853e-07,9.1124e-07,1.1319e-06,1.4432e-06,1.9662e-06,2.2069e-06,2.8125e-06,3.6767e-06,4.1119e-06,4.3554e-06,8.1488e-06,8.7516e-06,9.2216e-06,1.0226e-05,1.1654e-05,1.3043e-05,1.4286e-05,1.4518e-05,1.4666e-05,1.6437e-05,2.2116e-05,2.26e-05,2.5367e-05,3.0298e-05,3.3397e-05,3.3928e-05,5.8646e-05,5.8984e-05,6.56e-05,8.0614e-05,8.3676e-05,9.6087e-05,9.926e-05,0.00012439,0.00014389,0.00019943,0.00020098,0.00028954,0.0003017,0.00030568,0.00038538,0.00039106,0.00042472,0.00047319,0.00048936,0.00050193,0.00055444,0.00056361,0.00056967,0.00061606,0.00063312,0.00063764,0.00068008,0.00069598,0.00079042,0.00097357,0.0010101,0.00102,0.0011181,0.0011612,0.0013526,0.0017598,0.0019071,0.0021633,0.0022652,0.0025713,0.0029126,0.0029422,0.0029653,0.002968,0.0030781,0.0030876,0.003458,0.0036411,0.0040093,0.0040265,0.004132,0.00487,0.0048931,0.0052861,0.0057674,0.0067253,0.0068613,0.0072632,0.0073561,0.0075953,0.0080118,0.0086894,0.0087086,0.01044,0.012774,0.013048,0.013356,0.013453,0.015142,0.016271,0.020656,0.020911,0.021434,0.022342,0.026009,0.030365,0.035822,0.037615,0.038721,0.04165,0.048128,0.051227,0.05549,0.062599,0.069313,0.070583,0.085361,0.087475,0.088257,0.092136,0.093716,0.10709,0.11326,0.11509,0.11528,0.1192,0.12465,0.12723,0.1284,0.15009,0.15012,0.17184,0.19927,0.22711,0.25487,0.2675,0.27087,0.27886,0.28594,0.30305,0.30497,0.3396,0.34866,0.36716,0.39078,0.40542,0.40709,0.41918,0.42737,0.44774,0.47863,0.48157,0.49537,0.51733,0.53533,0.53617,0.59888,0.60917,0.6141,0.62674,0.6333,0.64361,0.65997,0.66654,0.67568,0.6903,0.70903,0.72667,0.72845,0.7496,0.76328,0.77516,0.80146,0.81312,0.8173,0.83186,0.83273,0.83896,0.84169,0.87606,0.88434,0.88749,0.90142,0.90914,0.91029,0.92714,0.95499,0.96207,0.9655,0.97287,0.97346,0.98064,0.98136,0.98882,0.99233,0.9974,0.99772,0.99801,0.99816,0.99862,0.99894,0.99912,1,0.99996,0.99577,0.99283,0.99046,0.98943,0.97894,0.97872,0.97449,0.97238,0.96061,0.96021,0.95924,0.94908,0.94609,0.94501,0.94166,0.93719,0.93284,0.93053,0.90601,0.90508,0.89097,0.86833,0.84557,0.81185,0.81136,0.79886,0.7828,0.76107,0.76082,0.75317,0.71647,0.70781,0.70685,0.66221,0.65231,0.6466,0.62897,0.61147,0.57926,0.57423,0.55004,0.49668,0.49597,0.49167,0.48292,0.47608,0.46771,0.45789,0.37083,0.34946,0.31803,0.29576,0.29468,0.29222,0.26108,0.25413,0.25356,0.22642,0.18517,0.18395,0.17294,0.17073,0.1475,0.14144,0.12887,0.12266,0.11607,0.11482,0.10743,0.10616,0.10557,0.090377,0.086191,0.084477,0.079098,0.077462,0.070312,0.068759,0.06572,0.058627,0.058563,0.05539,0.054352,0.054351,0.047966,0.047775,0.045342,0.042889,0.037926,0.033883,0.031213,0.02734,0.024135,0.020468,0.020329,0.017865,0.015748,0.014606,0.011903,0.011199,0.0098841,0.0091728,0.0078341,0.0077034,0.0074403,0.0068625,0.0057826,0.0048354,0.0043929,0.0039884,0.0037911,0.0037641,0.003431,0.0030798,0.0022012,0.0020098,0.0019111,0.0017087,0.0017074,0.0015278,0.0015067,0.0013965,0.0013134,0.0010661,0.0010342,0.00087657,0.00075027,0.00044623,0.00040393,0.00038488,0.00033887,0.00030044,0.00028695,0.00026168,0.00024484,0.00022536,0.00019635,0.00019621,0.00015272,0.0001428,0.00014081,0.00013976,0.00010784,0.00010721,0.00010442,0.00010237,9.7222e-05,8.9235e-05,8.2606e-05,5.8432e-05,2.7404e-05,2.1762e-05,2.1321e-05,2.0962e-05,1.9841e-05,1.9243e-05,1.4356e-05,1.181e-05,1.0236e-05,9.4442e-06,7.9758e-06,6.902e-06,6.7182e-06,5.4739e-06,4.8709e-06,4.2208e-06,3.347e-06,2.4578e-06,2.4095e-06,2.1684e-06,2.0149e-06,1.9494e-06,1.3667e-06,1.2392e-06,7.8995e-07,6.9636e-07,5.5691e-07,4.9377e-07,4.7484e-07,3.8342e-07,3.7292e-07,3.5092e-07,3.0715e-07,2.3783e-07 1,1.0378e-16,1.5825e-16,1.6163e-16,1.8348e-16,2.0227e-16,2.2987e-16,2.9445e-16,5.2891e-16,7.657e-16,8.1037e-16,1.086e-15,1.1391e-15,1.3764e-15,2.1768e-15,2.5119e-15,2.7743e-15,4.2598e-15,4.5841e-15,4.9724e-15,6.5291e-15,6.7226e-15,6.8364e-15,8.407e-15,9.496e-15,9.5337e-15,1.2037e-14,1.2295e-14,1.3656e-14,1.3846e-14,1.4033e-14,2.8513e-14,5.5716e-14,5.9174e-14,7.1973e-14,8.5675e-14,9.8054e-14,1.1504e-13,1.3845e-13,1.9153e-13,2.2883e-13,3.0525e-13,4.3774e-13,4.5249e-13,4.8553e-13,5.1815e-13,7.2604e-13,7.2641e-13,1.612e-12,1.7094e-12,1.766e-12,2.2369e-12,2.2761e-12,3.6087e-12,4.3209e-12,4.6563e-12,5.4846e-12,6.0845e-12,7.267e-12,7.6777e-12,1.1694e-11,1.5134e-11,3.3751e-11,4.1965e-11,4.5126e-11,5.1378e-11,7.3242e-11,7.8739e-11,8.3954e-11,1.1333e-10,1.4989e-10,1.6617e-10,1.8077e-10,2.4499e-10,3.786e-10,5.9617e-10,8.073e-10,8.6007e-10,1.5071e-09,1.8266e-09,1.9973e-09,2.078e-09,2.4388e-09,4.6833e-09,4.7819e-09,5.3525e-09,6.3968e-09,6.6239e-09,8.5296e-09,1.6973e-08,1.7127e-08,2.0747e-08,2.222e-08,4.8143e-08,5.832e-08,5.9146e-08,7.013e-08,8.8203e-08,8.8602e-08,9.0255e-08,1.0356e-07,1.0368e-07,1.1739e-07,1.2314e-07,2.4229e-07,3.2456e-07,3.2777e-07,4.551e-07,4.9662e-07,5.6815e-07,6.0644e-07,6.3019e-07,6.5749e-07,6.6664e-07,6.9166e-07,8.0189e-07,8.1577e-07,8.4509e-07,8.6989e-07,1.0809e-06,1.3788e-06,1.8794e-06,2.1099e-06,2.6901e-06,3.5182e-06,3.9355e-06,4.1689e-06,7.8087e-06,8.3874e-06,8.8387e-06,9.803e-06,1.1175e-05,1.2509e-05,1.3704e-05,1.3927e-05,1.4069e-05,1.5772e-05,2.1232e-05,2.1698e-05,2.4359e-05,2.9105e-05,3.2088e-05,3.2599e-05,5.641e-05,5.6735e-05,6.3112e-05,7.759e-05,8.0543e-05,9.2515e-05,9.5576e-05,0.00011983,0.00013866,0.00019231,0.00019381,0.00027943,0.00029119,0.00029504,0.00037215,0.00037765,0.00041023,0.00045716,0.00047282,0.00048499,0.00053584,0.00054473,0.0005506,0.00059554,0.00061207,0.00061645,0.00065758,0.00067299,0.00076454,0.00094215,0.00097755,0.00098718,0.0010824,0.0011242,0.00131,0.0017054,0.0018485,0.0020976,0.0021966,0.0024942,0.0028262,0.002855,0.0028775,0.0028801,0.0029872,0.0029965,0.003357,0.0035352,0.0038936,0.0039104,0.0040131,0.004732,0.0047545,0.0051374,0.0056066,0.0065405,0.0066731,0.0070652,0.0071557,0.0073891,0.0077954,0.0084567,0.0084754,0.010166,0.012446,0.012713,0.013015,0.01311,0.014761,0.015865,0.020155,0.020405,0.020917,0.021806,0.025397,0.029665,0.035016,0.036776,0.03786,0.040735,0.047094,0.050138,0.054326,0.061314,0.067916,0.069164,0.083707,0.085789,0.08656,0.090379,0.091935,0.10512,0.11119,0.113,0.11319,0.11705,0.12242,0.12497,0.12612,0.14754,0.14756,0.16902,0.19614,0.22368,0.25118,0.2637,0.26704,0.27495,0.28198,0.29894,0.30085,0.33522,0.34422,0.36261,0.38608,0.40064,0.4023,0.41433,0.42248,0.44276,0.47353,0.47645,0.49021,0.51211,0.53007,0.53091,0.59355,0.60383,0.60876,0.62141,0.62797,0.63829,0.65467,0.66125,0.67041,0.68506,0.70385,0.72156,0.72334,0.74459,0.75833,0.77027,0.79675,0.8085,0.81271,0.8274,0.82827,0.83457,0.83732,0.87207,0.88045,0.88365,0.89777,0.90562,0.90678,0.92394,0.95241,0.95968,0.96321,0.97082,0.97144,0.9789,0.97965,0.98748,0.99121,0.99672,0.99709,0.99742,0.99759,0.99812,0.9985,0.99871,0.99996,1,0.99653,0.99384,0.99163,0.99067,0.98068,0.98047,0.9764,0.97437,0.96297,0.96258,0.96164,0.95175,0.94883,0.94777,0.9445,0.94013,0.93587,0.9336,0.90952,0.90861,0.89471,0.87236,0.84986,0.81645,0.81595,0.80356,0.7876,0.766,0.76576,0.75815,0.72161,0.71298,0.71202,0.66749,0.65761,0.65191,0.63429,0.6168,0.58459,0.57955,0.55533,0.50186,0.50115,0.49683,0.48805,0.4812,0.47279,0.46294,0.37544,0.35393,0.32228,0.29983,0.29875,0.29627,0.26486,0.25785,0.25728,0.22987,0.18818,0.18695,0.17581,0.17357,0.15005,0.14392,0.13118,0.12489,0.11821,0.11694,0.10944,0.10816,0.10755,0.092134,0.087883,0.086143,0.080678,0.079015,0.071749,0.07017,0.06708,0.059866,0.059801,0.056573,0.055517,0.055515,0.049016,0.048821,0.046344,0.043844,0.038788,0.034666,0.031943,0.027992,0.02472,0.020975,0.020834,0.018316,0.016151,0.014984,0.012218,0.011498,0.010151,0.009423,0.0080514,0.0079175,0.0076478,0.0070555,0.005948,0.0049761,0.004522,0.0041066,0.003904,0.0038762,0.003534,0.0031732,0.0022699,0.002073,0.0019714,0.0017632,0.0017618,0.0015769,0.0015552,0.0014417,0.0013561,0.0011014,0.0010684,0.00090595,0.0007757,0.0004619,0.00041821,0.00039853,0.00035099,0.00031127,0.00029732,0.00027119,0.00025377,0.00023363,0.00020361,0.00020346,0.00015845,0.00014819,0.00014612,0.00014504,0.00011197,0.00011131,0.00010842,0.0001063,0.00010097,9.2687e-05,8.5815e-05,6.0744e-05,2.8531e-05,2.2667e-05,2.2208e-05,2.1835e-05,2.067e-05,2.0047e-05,1.4964e-05,1.2315e-05,1.0676e-05,9.8521e-06,8.3228e-06,7.2042e-06,7.0127e-06,5.7159e-06,5.0873e-06,4.4094e-06,3.498e-06,2.5701e-06,2.5197e-06,2.268e-06,2.1077e-06,2.0393e-06,1.4306e-06,1.2973e-06,8.2763e-07,7.2973e-07,5.8381e-07,5.1772e-07,4.9791e-07,4.0218e-07,3.9119e-07,3.6815e-07,3.223e-07,2.4966e-07 1,5.0598e-17,7.7477e-17,7.9144e-17,8.9958e-17,9.9263e-17,1.1295e-16,1.4504e-16,2.6203e-16,3.8074e-16,4.0319e-16,5.4193e-16,5.6868e-16,6.8847e-16,1.0938e-15,1.2641e-15,1.3976e-15,2.1553e-15,2.3211e-15,2.5198e-15,3.318e-15,3.4173e-15,3.4758e-15,4.2835e-15,4.8444e-15,4.8639e-15,6.1559e-15,6.2891e-15,6.9932e-15,7.0915e-15,7.1884e-15,1.4714e-14,2.8958e-14,3.0775e-14,3.751e-14,4.4734e-14,5.1272e-14,6.0258e-14,7.2664e-14,1.0088e-13,1.2076e-13,1.6159e-13,2.3266e-13,2.4058e-13,2.5835e-13,2.7591e-13,3.8806e-13,3.8826e-13,8.6934e-13,9.2249e-13,9.5338e-13,1.2108e-12,1.2323e-12,1.9641e-12,2.3566e-12,2.5417e-12,2.9995e-12,3.3316e-12,3.9873e-12,4.2153e-12,6.452e-12,8.3756e-12,1.8858e-11,2.3509e-11,2.5302e-11,2.8852e-11,4.1308e-11,4.4447e-11,4.7428e-11,6.4261e-11,8.5286e-11,9.4667e-11,1.0309e-10,1.4025e-10,2.1793e-10,3.4515e-10,4.6921e-10,5.0028e-10,8.8306e-10,1.0729e-09,1.1746e-09,1.2227e-09,1.438e-09,2.7856e-09,2.8451e-09,3.1894e-09,3.8209e-09,3.9584e-09,5.1148e-09,1.0275e-08,1.037e-08,1.2595e-08,1.3503e-08,2.9578e-08,3.5929e-08,3.6445e-08,4.332e-08,5.4667e-08,5.4917e-08,5.5957e-08,6.4333e-08,6.4413e-08,7.306e-08,7.6698e-08,1.5244e-07,2.0511e-07,2.0717e-07,2.891e-07,3.159e-07,3.6215e-07,3.8695e-07,4.0234e-07,4.2005e-07,4.2599e-07,4.4223e-07,5.139e-07,5.2294e-07,5.4203e-07,5.5819e-07,6.9598e-07,8.9125e-07,1.2209e-06,1.3732e-06,1.7578e-06,2.3092e-06,2.588e-06,2.7441e-06,5.1949e-06,5.5867e-06,5.8927e-06,6.5473e-06,7.4804e-06,8.3903e-06,9.2063e-06,9.3591e-06,9.4563e-06,1.0622e-05,1.4375e-05,1.4697e-05,1.6534e-05,1.9818e-05,2.1889e-05,2.2244e-05,3.8885e-05,3.9114e-05,4.3598e-05,5.381e-05,5.5898e-05,6.4378e-05,6.6551e-05,8.3808e-05,9.7254e-05,0.00013577,0.00013685,0.00019878,0.00020732,0.00021012,0.00026632,0.00027034,0.00029418,0.00032858,0.00034008,0.00034902,0.00038644,0.00039299,0.00039732,0.00043048,0.00044269,0.00044592,0.00047634,0.00048775,0.00055565,0.00068791,0.00071434,0.00072154,0.00079279,0.00082409,0.00096363,0.0012622,0.0013707,0.00156,0.0016354,0.0018627,0.002117,0.0021391,0.0021564,0.0021584,0.0022406,0.0022477,0.0025252,0.0026627,0.0029397,0.0029526,0.0030322,0.0035903,0.0036078,0.0039061,0.0042724,0.0050042,0.0051083,0.0054166,0.0054879,0.0056717,0.0059921,0.0065147,0.0065295,0.0078707,0.0096907,0.0099044,0.010146,0.010222,0.011548,0.012438,0.015913,0.016116,0.016533,0.017257,0.020193,0.023701,0.028123,0.029583,0.030484,0.032878,0.038195,0.04075,0.044275,0.050182,0.055787,0.05685,0.069288,0.071077,0.071739,0.075027,0.076368,0.087771,0.093053,0.094625,0.094786,0.098157,0.10285,0.10508,0.10608,0.12491,0.12494,0.14395,0.16817,0.19298,0.21794,0.22936,0.23242,0.23966,0.24611,0.26173,0.26348,0.29534,0.30373,0.32091,0.34297,0.3567,0.35827,0.36966,0.3774,0.3967,0.42618,0.42899,0.44224,0.46344,0.4809,0.48172,0.54324,0.55342,0.55833,0.57092,0.57746,0.58779,0.60423,0.61087,0.62011,0.63496,0.6541,0.67225,0.67408,0.69601,0.71029,0.72276,0.75062,0.76309,0.76758,0.78331,0.78425,0.79103,0.794,0.83198,0.84128,0.84484,0.86071,0.86961,0.87094,0.89072,0.92473,0.93377,0.93822,0.94804,0.94885,0.95886,0.9599,0.97113,0.9769,0.98659,0.98734,0.98802,0.9884,0.98958,0.9905,0.99104,0.99577,0.99653,1,0.99961,0.99893,0.99856,0.9935,0.99338,0.9909,0.98961,0.98185,0.98157,0.98091,0.97363,0.97142,0.97062,0.9681,0.96471,0.96135,0.95955,0.93986,0.9391,0.92735,0.90803,0.88814,0.85796,0.85751,0.84614,0.83139,0.81123,0.811,0.80385,0.76918,0.76091,0.75999,0.71693,0.70728,0.7017,0.6844,0.66713,0.63509,0.63006,0.60575,0.55152,0.5508,0.54639,0.5374,0.53038,0.52174,0.5116,0.42042,0.39771,0.36406,0.34005,0.33889,0.33622,0.30234,0.29474,0.29412,0.26425,0.21837,0.21701,0.20465,0.20216,0.17588,0.16899,0.15463,0.14751,0.13993,0.13849,0.12995,0.12849,0.1278,0.11014,0.10525,0.10324,0.096927,0.095002,0.086571,0.084734,0.081135,0.072701,0.072625,0.068839,0.067597,0.067596,0.059937,0.059707,0.056777,0.053815,0.047802,0.042877,0.039613,0.034857,0.030902,0.026351,0.026179,0.023103,0.020448,0.019011,0.015592,0.014698,0.013022,0.012112,0.010393,0.010225,0.0098855,0.0091395,0.0077395,0.0065048,0.0059255,0.0053944,0.0051347,0.0050991,0.0046597,0.0041951,0.0030253,0.0027689,0.0026363,0.002364,0.0023622,0.0021198,0.0020913,0.001942,0.0018293,0.0014927,0.0014491,0.0012333,0.0010596,0.00063806,0.00057893,0.00055224,0.00048766,0.00043356,0.00041452,0.00037881,0.00035496,0.00032734,0.00028608,0.00028588,0.00022376,0.00020953,0.00020668,0.00020517,0.00015921,0.00015828,0.00015426,0.00015129,0.00014384,0.00013227,0.00012265,8.7389e-05,4.1625e-05,3.3208e-05,3.2547e-05,3.2011e-05,3.0332e-05,2.9435e-05,2.2086e-05,1.8239e-05,1.5851e-05,1.4648e-05,1.241e-05,1.0769e-05,1.0488e-05,8.5781e-06,7.6497e-06,6.6464e-06,5.293e-06,3.9088e-06,3.8333e-06,3.4564e-06,3.216e-06,3.1133e-06,2.1966e-06,1.995e-06,1.2819e-06,1.1325e-06,9.0917e-07,8.0776e-07,7.7732e-07,6.2994e-07,6.1299e-07,5.7742e-07,5.0653e-07,3.9389e-07 1,3.9731e-17,6.0921e-17,6.2235e-17,7.0769e-17,7.8114e-17,8.8921e-17,1.1428e-16,2.0686e-16,3.0095e-16,3.1875e-16,4.2885e-16,4.5009e-16,5.4524e-16,8.6763e-16,1.0032e-15,1.1094e-15,1.7135e-15,1.8458e-15,2.0043e-15,2.6417e-15,2.7211e-15,2.7678e-15,3.4134e-15,3.8621e-15,3.8776e-15,4.9116e-15,5.0182e-15,5.5821e-15,5.6608e-15,5.7385e-15,1.1776e-14,2.3229e-14,2.4692e-14,3.0117e-14,3.594e-14,4.1213e-14,4.8464e-14,5.8481e-14,8.1285e-14,9.7367e-14,1.3043e-13,1.8803e-13,1.9446e-13,2.0888e-13,2.2313e-13,3.1422e-13,3.1438e-13,7.0604e-13,7.4938e-13,7.7456e-13,9.8461e-13,1.0021e-12,1.6001e-12,1.9211e-12,2.0727e-12,2.4475e-12,2.7196e-12,3.2571e-12,3.4441e-12,5.2802e-12,6.8614e-12,1.5498e-11,1.9337e-11,2.0818e-11,2.3752e-11,3.4055e-11,3.6654e-11,3.9122e-11,5.3072e-11,7.0518e-11,7.8308e-11,8.5308e-11,1.162e-10,1.8089e-10,2.8705e-10,3.9073e-10,4.1672e-10,7.3736e-10,8.9666e-10,9.8204e-10,1.0224e-09,1.2033e-09,2.3377e-09,2.3879e-09,2.6782e-09,3.2111e-09,3.3272e-09,4.3041e-09,8.6742e-09,8.7542e-09,1.0642e-08,1.1413e-08,2.5092e-08,3.0508e-08,3.0949e-08,3.6817e-08,4.6512e-08,4.6727e-08,4.7616e-08,5.478e-08,5.4849e-08,6.225e-08,6.5365e-08,1.3035e-07,1.7565e-07,1.7742e-07,2.4801e-07,2.7112e-07,3.1104e-07,3.3245e-07,3.4574e-07,3.6104e-07,3.6617e-07,3.802e-07,4.4216e-07,4.4998e-07,4.665e-07,4.8048e-07,5.9977e-07,7.6905e-07,1.0553e-06,1.1877e-06,1.5223e-06,2.0028e-06,2.246e-06,2.3822e-06,4.5259e-06,4.8693e-06,5.1375e-06,5.7117e-06,6.5307e-06,7.3299e-06,8.0471e-06,8.1814e-06,8.2668e-06,9.2921e-06,1.2598e-05,1.2881e-05,1.4501e-05,1.7401e-05,1.9231e-05,1.9545e-05,3.4283e-05,3.4485e-05,3.8465e-05,4.7537e-05,4.9394e-05,5.6938e-05,5.8872e-05,7.4247e-05,8.6243e-05,0.00012066,0.00012163,0.00017711,0.00018477,0.00018728,0.00023776,0.00024137,0.00026281,0.00029377,0.00030412,0.00031217,0.00034589,0.00035179,0.00035569,0.0003856,0.00039661,0.00039953,0.00042699,0.00043729,0.00049863,0.00061827,0.00064221,0.00064872,0.00071328,0.00074165,0.00086824,0.0011396,0.0012383,0.0014107,0.0014795,0.0016868,0.001919,0.0019392,0.001955,0.0019569,0.002032,0.0020385,0.0022923,0.0024181,0.0026719,0.0026837,0.0027566,0.0032685,0.0032846,0.0035586,0.0038952,0.0045685,0.0046644,0.0049484,0.0050141,0.0051835,0.0054789,0.0059611,0.0059748,0.007214,0.0088989,0.0090969,0.0093208,0.0093914,0.010622,0.011448,0.014681,0.01487,0.015259,0.015934,0.018673,0.021952,0.026095,0.027464,0.02831,0.030557,0.035556,0.037962,0.041283,0.046857,0.052155,0.05316,0.064942,0.066639,0.067268,0.07039,0.071663,0.082506,0.087536,0.089034,0.089188,0.092401,0.096875,0.099005,0.099964,0.11796,0.11799,0.13621,0.15949,0.18339,0.20751,0.21857,0.22152,0.22855,0.2348,0.24996,0.25166,0.28266,0.29082,0.30759,0.32914,0.34258,0.34412,0.35527,0.36286,0.3818,0.41079,0.41356,0.42661,0.44752,0.46477,0.46558,0.52656,0.53669,0.54157,0.5541,0.56063,0.57092,0.58734,0.59397,0.60321,0.61808,0.63727,0.6555,0.65734,0.67943,0.69384,0.70643,0.73466,0.74733,0.75189,0.7679,0.76886,0.77578,0.77881,0.81771,0.82728,0.83095,0.84734,0.85656,0.85794,0.87852,0.91424,0.92383,0.92857,0.93909,0.93996,0.95078,0.95191,0.96423,0.97066,0.9817,0.98257,0.98338,0.98382,0.98521,0.98631,0.98695,0.99283,0.99384,0.99961,1,0.99983,0.99967,0.99628,0.99619,0.99425,0.99322,0.98672,0.98648,0.98591,0.97955,0.97759,0.97687,0.97462,0.97156,0.96853,0.96689,0.94876,0.94806,0.93708,0.91886,0.89992,0.87096,0.87052,0.85955,0.84526,0.82566,0.82544,0.81847,0.78456,0.77644,0.77555,0.73313,0.7236,0.71807,0.70094,0.6838,0.65193,0.64691,0.62265,0.56832,0.5676,0.56317,0.55414,0.54707,0.53838,0.52817,0.43596,0.41289,0.37863,0.35412,0.35293,0.35021,0.31554,0.30774,0.3071,0.27644,0.22916,0.22775,0.21498,0.2124,0.18519,0.17803,0.16312,0.15572,0.14783,0.14633,0.13742,0.1359,0.13518,0.11673,0.11161,0.10951,0.1029,0.10088,0.092039,0.090111,0.08633,0.077461,0.077381,0.073394,0.072086,0.072085,0.064009,0.063766,0.060672,0.057543,0.051182,0.045965,0.042503,0.037453,0.033245,0.028397,0.028213,0.02493,0.022092,0.020555,0.01689,0.015931,0.01413,0.013152,0.011302,0.01112,0.010755,0.0099504,0.0084387,0.0071034,0.0064761,0.0059004,0.0056188,0.0055801,0.0051032,0.0045984,0.0033252,0.0030456,0.0029009,0.0026036,0.0026016,0.0023367,0.0023055,0.0021422,0.0020188,0.00165,0.0016021,0.0013652,0.0011743,0.00070977,0.00064444,0.00061495,0.00054351,0.00048362,0.00046253,0.00042295,0.00039651,0.00036586,0.00032005,0.00031982,0.00025074,0.00023491,0.00023173,0.00023005,0.00017881,0.00017779,0.00017329,0.00016998,0.00016167,0.00014874,0.00013799,9.8538e-05,4.7157e-05,3.7673e-05,3.6928e-05,3.6324e-05,3.443e-05,3.3418e-05,2.5118e-05,2.0767e-05,1.8063e-05,1.67e-05,1.4162e-05,1.23e-05,1.198e-05,9.8102e-06,8.7543e-06,7.6122e-06,6.07e-06,4.4902e-06,4.404e-06,3.9733e-06,3.6984e-06,3.5809e-06,2.5314e-06,2.3003e-06,1.4815e-06,1.3097e-06,1.0527e-06,9.3588e-07,9.0078e-07,7.308e-07,7.1123e-07,6.7018e-07,5.8829e-07,4.5807e-07 1,3.3836e-17,5.193e-17,5.3053e-17,6.0343e-17,6.6621e-17,7.5859e-17,9.7542e-17,1.7679e-16,2.5742e-16,2.7268e-16,3.671e-16,3.8532e-16,4.6699e-16,7.4387e-16,8.6034e-16,9.5171e-16,1.4713e-15,1.5852e-15,1.7216e-15,2.2705e-15,2.3389e-15,2.3792e-15,2.9355e-15,3.3222e-15,3.3356e-15,4.2274e-15,4.3194e-15,4.8059e-15,4.8738e-15,4.9408e-15,1.0156e-14,2.0065e-14,2.1332e-14,2.603e-14,3.1076e-14,3.5647e-14,4.1934e-14,5.0624e-14,7.042e-14,8.4388e-14,1.1312e-13,1.6323e-13,1.6882e-13,1.8137e-13,1.9377e-13,2.7311e-13,2.7325e-13,6.1487e-13,6.5271e-13,6.747e-13,8.5818e-13,8.7347e-13,1.3963e-12,1.6772e-12,1.8099e-12,2.1381e-12,2.3764e-12,2.8474e-12,3.0113e-12,4.6217e-12,6.0098e-12,1.3603e-11,1.6983e-11,1.8287e-11,2.0871e-11,2.9953e-11,3.2246e-11,3.4423e-11,4.6735e-11,6.2146e-11,6.9031e-11,7.5218e-11,1.0255e-10,1.5982e-10,2.5395e-10,3.4597e-10,3.6905e-10,6.5406e-10,7.9581e-10,8.7181e-10,9.0776e-10,1.0689e-09,2.0805e-09,2.1253e-09,2.3845e-09,2.8605e-09,2.9642e-09,3.8375e-09,7.7501e-09,7.8218e-09,9.5146e-09,1.0205e-08,2.2492e-08,2.7364e-08,2.776e-08,3.3042e-08,4.1774e-08,4.1968e-08,4.2768e-08,4.9225e-08,4.9287e-08,5.596e-08,5.877e-08,1.1747e-07,1.5844e-07,1.6004e-07,2.2396e-07,2.4491e-07,2.8109e-07,3.0051e-07,3.1257e-07,3.2645e-07,3.311e-07,3.4383e-07,4.0008e-07,4.0717e-07,4.2217e-07,4.3487e-07,5.4325e-07,6.9717e-07,9.5771e-07,1.0783e-06,1.3834e-06,1.8218e-06,2.0438e-06,2.1683e-06,4.1292e-06,4.4437e-06,4.6894e-06,5.2155e-06,5.9664e-06,6.6995e-06,7.3575e-06,7.4809e-06,7.5593e-06,8.5006e-06,1.1539e-05,1.1799e-05,1.3289e-05,1.5958e-05,1.7643e-05,1.7932e-05,3.1525e-05,3.1712e-05,3.5387e-05,4.3772e-05,4.5488e-05,5.2467e-05,5.4256e-05,6.8493e-05,7.961e-05,0.00011154,0.00011244,0.000164,0.00017113,0.00017346,0.00022045,0.00022382,0.00024379,0.00027265,0.0002823,0.00028981,0.00032126,0.00032677,0.00033041,0.00035832,0.00036861,0.00037133,0.00039697,0.0004066,0.00046392,0.00057582,0.00059822,0.00060432,0.00066476,0.00069134,0.00080996,0.0010645,0.0011572,0.0013192,0.0013839,0.0015788,0.0017974,0.0018164,0.0018313,0.001833,0.0019038,0.0019099,0.002149,0.0022677,0.0025069,0.0025181,0.0025869,0.0030701,0.0030853,0.0033441,0.0036623,0.0042991,0.0043899,0.0046587,0.0047209,0.0048813,0.0051612,0.0056181,0.0056311,0.0068065,0.0084067,0.0085949,0.0088077,0.0088749,0.010045,0.010832,0.013912,0.014093,0.014463,0.015107,0.017722,0.020857,0.024822,0.026133,0.026944,0.029098,0.033894,0.036205,0.039397,0.044757,0.049858,0.050826,0.062188,0.063826,0.064433,0.067447,0.068678,0.07916,0.084027,0.085477,0.085626,0.088737,0.093071,0.095135,0.096065,0.11353,0.11355,0.13126,0.15392,0.17723,0.20079,0.21161,0.2145,0.22138,0.2275,0.24235,0.24402,0.27443,0.28246,0.29894,0.32015,0.33339,0.3349,0.34591,0.35338,0.37209,0.40073,0.40347,0.41639,0.4371,0.45419,0.455,0.51558,0.52566,0.53052,0.54301,0.54951,0.55977,0.57616,0.58278,0.59202,0.60688,0.6261,0.64436,0.64621,0.66838,0.68286,0.69553,0.72396,0.73675,0.74135,0.75754,0.75851,0.76551,0.76858,0.80806,0.81779,0.82153,0.83824,0.84766,0.84907,0.87015,0.90697,0.91691,0.92184,0.9328,0.93371,0.94506,0.94624,0.95927,0.96613,0.97806,0.97901,0.97989,0.98037,0.98191,0.98312,0.98384,0.99046,0.99163,0.99893,0.99983,1,0.99997,0.9977,0.99763,0.99606,0.99519,0.98953,0.98932,0.98881,0.98306,0.98127,0.98061,0.97854,0.97572,0.97289,0.97137,0.9543,0.95363,0.94317,0.9257,0.90743,0.8793,0.87888,0.86817,0.85421,0.83501,0.83479,0.82795,0.79458,0.78657,0.78569,0.74374,0.7343,0.72882,0.71181,0.69478,0.66305,0.65804,0.63383,0.57949,0.57876,0.57433,0.56527,0.55818,0.54946,0.53921,0.44638,0.42308,0.38843,0.3636,0.3624,0.35963,0.32445,0.31654,0.31588,0.28469,0.2365,0.23506,0.22202,0.21938,0.19154,0.18421,0.16893,0.16133,0.15324,0.15169,0.14255,0.14098,0.14024,0.12126,0.11599,0.11383,0.10701,0.10493,0.09581,0.09382,0.089915,0.08075,0.080667,0.076544,0.075191,0.075189,0.066829,0.066577,0.063372,0.060128,0.053529,0.048112,0.044514,0.03926,0.034879,0.029825,0.029634,0.026208,0.023243,0.021636,0.017802,0.016797,0.01491,0.013884,0.011942,0.011752,0.011368,0.010522,0.0089326,0.0075268,0.0068658,0.0062588,0.0059618,0.005921,0.0054177,0.0048847,0.0035386,0.0032425,0.0030893,0.0027743,0.0027722,0.0024913,0.0024582,0.002285,0.0021541,0.0017624,0.0017115,0.0014596,0.0012564,0.00076132,0.00069158,0.00066007,0.00058374,0.0005197,0.00049714,0.00045479,0.00042649,0.00039367,0.00034459,0.00034434,0.00027027,0.00025328,0.00024986,0.00024806,0.00019303,0.00019193,0.0001871,0.00018353,0.0001746,0.0001607,0.00014913,0.00010665,5.1198e-05,4.0939e-05,4.0133e-05,3.9479e-05,3.7429e-05,3.6333e-05,2.7341e-05,2.2621e-05,1.9687e-05,1.8207e-05,1.5451e-05,1.3426e-05,1.3078e-05,1.0718e-05,9.5683e-06,8.3245e-06,6.6437e-06,4.9201e-06,4.826e-06,4.3557e-06,4.0554e-06,3.9271e-06,2.7796e-06,2.5267e-06,1.63e-06,1.4416e-06,1.1596e-06,1.0313e-06,9.9276e-07,8.0601e-07,7.845e-07,7.3937e-07,6.4932e-07,5.0603e-07 1,3.1749e-17,4.8744e-17,4.9799e-17,5.6649e-17,6.2547e-17,7.1228e-17,9.1607e-17,1.6612e-16,2.4196e-16,2.5631e-16,3.4516e-16,3.6231e-16,4.3917e-16,6.9984e-16,8.0952e-16,8.9556e-16,1.385e-15,1.4923e-15,1.6209e-15,2.1382e-15,2.2027e-15,2.2406e-15,2.7651e-15,3.1297e-15,3.1424e-15,3.9833e-15,4.07e-15,4.5289e-15,4.593e-15,4.6562e-15,9.5768e-15,1.8933e-14,2.013e-14,2.4568e-14,2.9335e-14,3.3654e-14,3.9596e-14,4.781e-14,6.6525e-14,7.9734e-14,1.0691e-13,1.5432e-13,1.5962e-13,1.7149e-13,1.8323e-13,2.5833e-13,2.5847e-13,5.8207e-13,6.1793e-13,6.3877e-13,8.1266e-13,8.2716e-13,1.3229e-12,1.5893e-12,1.7151e-12,2.0265e-12,2.2526e-12,2.6996e-12,2.8551e-12,4.3839e-12,5.7021e-12,1.2917e-11,1.613e-11,1.7371e-11,1.9828e-11,2.8467e-11,3.0648e-11,3.272e-11,4.4437e-11,5.9108e-11,6.5663e-11,7.1556e-11,9.7586e-11,1.5217e-10,2.419e-10,3.2967e-10,3.5169e-10,6.2369e-10,7.5902e-10,8.3159e-10,8.6593e-10,1.0198e-09,1.9866e-09,2.0293e-09,2.2772e-09,2.7322e-09,2.8315e-09,3.6668e-09,7.4114e-09,7.4801e-09,9.1011e-09,9.7627e-09,2.1537e-08,2.6209e-08,2.6589e-08,3.1654e-08,4.0031e-08,4.0217e-08,4.0985e-08,4.7181e-08,4.724e-08,5.3645e-08,5.6342e-08,1.1271e-07,1.5209e-07,1.5363e-07,2.1508e-07,2.3522e-07,2.7003e-07,2.8871e-07,3.0031e-07,3.1366e-07,3.1814e-07,3.3039e-07,3.8451e-07,3.9133e-07,4.0577e-07,4.1799e-07,5.2233e-07,6.7055e-07,9.2155e-07,1.0378e-06,1.3318e-06,1.7546e-06,1.9687e-06,2.0888e-06,3.9815e-06,4.2852e-06,4.5225e-06,5.0307e-06,5.7561e-06,6.4646e-06,7.1005e-06,7.2198e-06,7.2955e-06,8.2055e-06,1.1143e-05,1.1395e-05,1.2836e-05,1.5419e-05,1.7049e-05,1.7329e-05,3.0492e-05,3.0674e-05,3.4234e-05,4.2361e-05,4.4025e-05,5.0791e-05,5.2526e-05,6.6334e-05,7.712e-05,0.00010812,0.00010898,0.00015907,0.000166,0.00016826,0.00021394,0.0002172,0.00023662,0.00026469,0.00027407,0.00028138,0.00031198,0.00031733,0.00032087,0.00034803,0.00035804,0.0003607,0.00038565,0.00039501,0.00045081,0.00055978,0.0005816,0.00058754,0.00064642,0.00067232,0.00078791,0.0010361,0.0011265,0.0012846,0.0013476,0.0015379,0.0017513,0.0017698,0.0017844,0.001786,0.0018552,0.0018611,0.0020946,0.0022105,0.0024443,0.0024552,0.0025224,0.0029947,0.0030095,0.0032625,0.0035736,0.0041965,0.0042854,0.0045484,0.0046092,0.0047662,0.0050401,0.0054874,0.0055,0.006651,0.0082187,0.0084031,0.0086117,0.0086775,0.0098248,0.010596,0.013617,0.013795,0.014158,0.01479,0.017358,0.020437,0.024333,0.025622,0.026419,0.028537,0.033255,0.035529,0.03867,0.043948,0.048972,0.049927,0.061124,0.06274,0.063338,0.066311,0.067524,0.077865,0.08267,0.084101,0.084248,0.087319,0.091598,0.093636,0.094555,0.11181,0.11183,0.12934,0.15175,0.17483,0.19817,0.20889,0.21176,0.21858,0.22465,0.23938,0.24104,0.27122,0.27919,0.29556,0.31663,0.32979,0.3313,0.34223,0.34967,0.36827,0.39678,0.3995,0.41237,0.43299,0.45003,0.45083,0.51125,0.52131,0.52616,0.53862,0.54512,0.55537,0.57174,0.57836,0.58759,0.60245,0.62167,0.63995,0.6418,0.66399,0.67849,0.69119,0.7197,0.73253,0.73716,0.75341,0.75438,0.76141,0.7645,0.80419,0.81399,0.81775,0.83459,0.84409,0.84551,0.86678,0.90402,0.9141,0.9191,0.93024,0.93116,0.94272,0.94392,0.95722,0.96425,0.97653,0.97751,0.97842,0.97892,0.98052,0.98177,0.98252,0.98943,0.99067,0.99856,0.99967,0.99997,1,0.99817,0.9981,0.99668,0.99588,0.99056,0.99035,0.98987,0.98436,0.98264,0.982,0.98,0.97727,0.97453,0.97305,0.95641,0.95575,0.94551,0.92834,0.91033,0.88254,0.88212,0.87153,0.8577,0.83866,0.83844,0.83165,0.7985,0.79054,0.78966,0.74792,0.73851,0.73305,0.7161,0.69911,0.66743,0.66244,0.63825,0.58391,0.58319,0.57875,0.56969,0.56259,0.55386,0.54359,0.45053,0.42714,0.39234,0.36739,0.36618,0.3634,0.32802,0.32006,0.3194,0.288,0.23945,0.238,0.22484,0.22218,0.1941,0.1867,0.17127,0.1636,0.15542,0.15386,0.14461,0.14303,0.14228,0.12309,0.11776,0.11557,0.10868,0.10657,0.097336,0.09532,0.091366,0.082082,0.081998,0.07782,0.076449,0.076447,0.067972,0.067718,0.064467,0.061177,0.054482,0.048985,0.045332,0.039996,0.035545,0.030408,0.030213,0.026729,0.023713,0.022078,0.018175,0.017151,0.015229,0.014184,0.012204,0.01201,0.011619,0.010757,0.0091351,0.0077006,0.0070259,0.0064061,0.0061027,0.0060611,0.005547,0.0050024,0.0036264,0.0033237,0.003167,0.0028447,0.0028426,0.0025551,0.0025212,0.0023439,0.0022099,0.0018088,0.0017567,0.0014986,0.0012904,0.00078268,0.00071111,0.00067877,0.00060042,0.00053467,0.0005115,0.00046801,0.00043893,0.00040521,0.00035478,0.00035453,0.00027838,0.00026092,0.0002574,0.00025555,0.00019895,0.00019781,0.00019284,0.00018918,0.00017999,0.00016568,0.00015377,0.00011003,5.2887e-05,4.2305e-05,4.1474e-05,4.0798e-05,3.8684e-05,3.7553e-05,2.8271e-05,2.3398e-05,2.0368e-05,1.8839e-05,1.5991e-05,1.3898e-05,1.3539e-05,1.1099e-05,9.9102e-06,8.6237e-06,6.8848e-06,5.101e-06,5.0036e-06,4.5166e-06,4.2057e-06,4.0728e-06,2.8842e-06,2.6222e-06,1.6926e-06,1.4972e-06,1.2047e-06,1.0716e-06,1.0316e-06,8.378e-07,8.1548e-07,7.6862e-07,6.7513e-07,5.2632e-07 1,1.869e-17,2.878e-17,2.9407e-17,3.3482e-17,3.6994e-17,4.2167e-17,5.4328e-17,9.8935e-17,1.4448e-16,1.5312e-16,2.0664e-16,2.1698e-16,2.6337e-16,4.2112e-16,4.8763e-16,5.3986e-16,8.3757e-16,9.0295e-16,9.8136e-16,1.2972e-15,1.3366e-15,1.3598e-15,1.6807e-15,1.9041e-15,1.9118e-15,2.4277e-15,2.481e-15,2.7629e-15,2.8023e-15,2.8411e-15,5.8752e-15,1.1675e-14,1.2419e-14,1.518e-14,1.815e-14,2.0845e-14,2.4556e-14,2.9693e-14,4.1422e-14,4.9717e-14,6.6817e-14,9.6725e-14,1.0007e-13,1.0758e-13,1.15e-13,1.6258e-13,1.6266e-13,3.6871e-13,3.9161e-13,4.0493e-13,5.1617e-13,5.2546e-13,8.4359e-13,1.015e-12,1.0961e-12,1.2968e-12,1.4428e-12,1.7316e-12,1.8323e-12,2.8235e-12,3.6806e-12,8.3959e-12,1.0504e-11,1.1319e-11,1.2935e-11,1.8629e-11,2.0069e-11,2.1438e-11,2.9194e-11,3.8929e-11,4.3287e-11,4.7207e-11,6.4558e-11,1.0107e-10,1.6134e-10,2.2051e-10,2.3537e-10,4.1963e-10,5.1163e-10,5.6102e-10,5.8441e-10,6.8931e-10,1.3513e-09,1.3807e-09,1.551e-09,1.8642e-09,1.9326e-09,2.509e-09,5.1064e-09,5.1542e-09,6.2834e-09,6.7449e-09,1.4999e-08,1.8289e-08,1.8557e-08,2.2132e-08,2.8057e-08,2.8188e-08,2.8732e-08,3.3124e-08,3.3167e-08,3.7713e-08,3.963e-08,7.9864e-08,1.0811e-07,1.0922e-07,1.5347e-07,1.68e-07,1.9316e-07,2.0667e-07,2.1507e-07,2.2474e-07,2.2798e-07,2.3686e-07,2.7612e-07,2.8108e-07,2.9157e-07,3.0045e-07,3.7638e-07,4.8456e-07,6.6836e-07,7.5368e-07,9.7004e-07,1.2821e-06,1.4405e-06,1.5295e-06,2.938e-06,3.1649e-06,3.3424e-06,3.7228e-06,4.2667e-06,4.7987e-06,5.2769e-06,5.3666e-06,5.4237e-06,6.1091e-06,8.3283e-06,8.5189e-06,9.6111e-06,1.1572e-05,1.2812e-05,1.3025e-05,2.3089e-05,2.3228e-05,2.5963e-05,3.2218e-05,3.3501e-05,3.8725e-05,4.0066e-05,5.0761e-05,5.9138e-05,8.33e-05,8.398e-05,0.00012324,0.00012868,0.00013047,0.00016647,0.00016905,0.00018439,0.00020661,0.00021405,0.00021984,0.00024412,0.00024838,0.00025119,0.00027279,0.00028075,0.00028287,0.00030274,0.00031021,0.00035475,0.00044198,0.00045949,0.00046425,0.00051155,0.00053237,0.00062548,0.00082615,0.00089949,0.0010279,0.0010792,0.0012343,0.0014087,0.0014239,0.0014358,0.0014371,0.0014937,0.0014986,0.0016901,0.0017852,0.0019774,0.0019864,0.0020418,0.0024314,0.0024437,0.0026529,0.0029107,0.003428,0.0035019,0.0037209,0.0037716,0.0039025,0.0041311,0.0045048,0.0045154,0.00548,0.0067995,0.0069551,0.0071311,0.0071867,0.0081569,0.0088103,0.011381,0.011532,0.011842,0.012382,0.014581,0.017228,0.020591,0.021707,0.022397,0.024235,0.028341,0.030325,0.033073,0.037703,0.042124,0.042965,0.052871,0.054304,0.054835,0.057477,0.058557,0.06778,0.072078,0.07336,0.073491,0.076245,0.080088,0.081919,0.082745,0.098309,0.09833,0.11421,0.13466,0.15585,0.17738,0.18731,0.18997,0.1963,0.20195,0.21567,0.21722,0.24548,0.25297,0.26839,0.2883,0.30078,0.30221,0.3126,0.31968,0.33743,0.36474,0.36735,0.37972,0.39962,0.4161,0.41688,0.47573,0.48559,0.49035,0.5026,0.50899,0.5191,0.53528,0.54184,0.55099,0.56577,0.58494,0.60324,0.60509,0.62741,0.64206,0.65492,0.68394,0.69706,0.7018,0.71851,0.71951,0.72677,0.72996,0.77124,0.78153,0.78548,0.80325,0.81334,0.81485,0.83762,0.87813,0.88929,0.89487,0.90738,0.90843,0.92161,0.923,0.93851,0.94688,0.96195,0.9632,0.96435,0.96499,0.96703,0.96865,0.96962,0.97894,0.98068,0.9935,0.99628,0.9977,0.99817,1,1,0.99978,0.99954,0.99703,0.99691,0.99663,0.99318,0.99202,0.99159,0.99019,0.98823,0.98623,0.98512,0.97208,0.97155,0.96311,0.94854,0.93284,0.90801,0.90763,0.89801,0.88535,0.86775,0.86755,0.86123,0.8301,0.82256,0.82173,0.78183,0.77276,0.76749,0.75106,0.73453,0.70351,0.6986,0.67472,0.62065,0.61992,0.61547,0.60638,0.59926,0.59048,0.58013,0.48546,0.46141,0.42546,0.39954,0.39828,0.39539,0.35842,0.35006,0.34937,0.31631,0.26479,0.26324,0.24919,0.24635,0.2162,0.20824,0.19156,0.18325,0.17437,0.17267,0.16261,0.16088,0.16007,0.13909,0.13324,0.13083,0.12325,0.12093,0.11073,0.1085,0.10412,0.093818,0.093724,0.089074,0.087547,0.087544,0.078081,0.077796,0.074157,0.070467,0.062941,0.056739,0.052608,0.046556,0.041491,0.035623,0.0354,0.031405,0.027936,0.02605,0.021536,0.020348,0.018113,0.016895,0.014582,0.014355,0.013896,0.012885,0.010979,0.0092856,0.008487,0.007752,0.0073917,0.0073422,0.0067307,0.0060817,0.0044349,0.004071,0.0038825,0.003494,0.0034915,0.0031443,0.0031033,0.0028888,0.0027264,0.0022392,0.0021758,0.0018611,0.0016066,0.00098242,0.00089395,0.00085394,0.00075683,0.00067518,0.00064637,0.00059222,0.00055598,0.0005139,0.00045085,0.00045054,0.00035507,0.00033311,0.00032869,0.00032636,0.00025502,0.00025358,0.0002473,0.00024267,0.00023105,0.00021294,0.00019785,0.00014225,6.9074e-05,5.5421e-05,5.4346e-05,5.3473e-05,5.0738e-05,4.9274e-05,3.7236e-05,3.0895e-05,2.6942e-05,2.4945e-05,2.1219e-05,1.8475e-05,1.8004e-05,1.4796e-05,1.3231e-05,1.1533e-05,9.2337e-06,6.8666e-06,6.7371e-06,6.0891e-06,5.6748e-06,5.4977e-06,3.9095e-06,3.5583e-06,2.3088e-06,2.0453e-06,1.6499e-06,1.4696e-06,1.4154e-06,1.1522e-06,1.1218e-06,1.0581e-06,9.3078e-07,7.2766e-07 1,1.8517e-17,2.8515e-17,2.9137e-17,3.3175e-17,3.6655e-17,4.1781e-17,5.3832e-17,9.804e-17,1.4318e-16,1.5174e-16,2.0479e-16,2.1504e-16,2.6102e-16,4.1738e-16,4.8331e-16,5.3509e-16,8.3021e-16,8.9503e-16,9.7276e-16,1.2859e-15,1.3249e-15,1.3479e-15,1.666e-15,1.8875e-15,1.8952e-15,2.4067e-15,2.4595e-15,2.739e-15,2.7781e-15,2.8166e-15,5.8251e-15,1.1577e-14,1.2314e-14,1.5053e-14,1.7998e-14,2.067e-14,2.4351e-14,2.9446e-14,4.108e-14,4.9307e-14,6.6268e-14,9.5936e-14,9.9255e-14,1.067e-13,1.1406e-13,1.6126e-13,1.6135e-13,3.6577e-13,3.8849e-13,4.0171e-13,5.1208e-13,5.2129e-13,8.3696e-13,1.0071e-12,1.0875e-12,1.2867e-12,1.4316e-12,1.7182e-12,1.8181e-12,2.8017e-12,3.6524e-12,8.3327e-12,1.0426e-11,1.1234e-11,1.2838e-11,1.8491e-11,1.9921e-11,2.128e-11,2.8979e-11,3.8645e-11,4.2972e-11,4.6864e-11,6.4092e-11,1.0034e-10,1.602e-10,2.1895e-10,2.3372e-10,4.1672e-10,5.0809e-10,5.5716e-10,5.8039e-10,6.8459e-10,1.3422e-09,1.3714e-09,1.5406e-09,1.8518e-09,1.9197e-09,2.4923e-09,5.0731e-09,5.1206e-09,6.2426e-09,6.7012e-09,1.4904e-08,1.8174e-08,1.844e-08,2.1993e-08,2.7882e-08,2.8013e-08,2.8554e-08,3.2919e-08,3.2961e-08,3.748e-08,3.9385e-08,7.9382e-08,1.0746e-07,1.0857e-07,1.5256e-07,1.6701e-07,1.9202e-07,2.0546e-07,2.1381e-07,2.2343e-07,2.2665e-07,2.3548e-07,2.7452e-07,2.7945e-07,2.8988e-07,2.9871e-07,3.7422e-07,4.818e-07,6.646e-07,7.4946e-07,9.6465e-07,1.2751e-06,1.4326e-06,1.5211e-06,2.9223e-06,3.1481e-06,3.3247e-06,3.7032e-06,4.2443e-06,4.7736e-06,5.2495e-06,5.3387e-06,5.3955e-06,6.0775e-06,8.2857e-06,8.4754e-06,9.5623e-06,1.1513e-05,1.2748e-05,1.296e-05,2.2977e-05,2.3115e-05,2.5837e-05,3.2063e-05,3.334e-05,3.854e-05,3.9876e-05,5.0523e-05,5.8862e-05,8.2919e-05,8.3595e-05,0.00012269,0.00012811,0.00012989,0.00016573,0.0001683,0.00018359,0.00020571,0.00021312,0.00021888,0.00024307,0.00024731,0.00025011,0.00027162,0.00027955,0.00028166,0.00030145,0.00030889,0.00035326,0.00044015,0.00045758,0.00046233,0.00050944,0.00053019,0.00062294,0.00082286,0.00089593,0.0010239,0.001075,0.0012296,0.0014033,0.0014184,0.0014303,0.0014316,0.001488,0.0014929,0.0016837,0.0017785,0.0019701,0.001979,0.0020342,0.0024225,0.0024347,0.0026433,0.0029002,0.0034158,0.0034895,0.0037078,0.0037583,0.0038888,0.0041166,0.0044892,0.0044997,0.0054613,0.0067768,0.0069319,0.0071074,0.0071629,0.0081302,0.0087817,0.011345,0.011496,0.011805,0.012343,0.014536,0.017176,0.02053,0.021643,0.022332,0.024165,0.028261,0.030241,0.032982,0.037601,0.042012,0.042851,0.052735,0.054165,0.054696,0.057332,0.058409,0.067613,0.071903,0.073183,0.073314,0.076063,0.079897,0.081726,0.08255,0.098085,0.098106,0.11396,0.13438,0.15553,0.17703,0.18695,0.18961,0.19593,0.20157,0.21527,0.21682,0.24505,0.25253,0.26793,0.28782,0.30029,0.30172,0.3121,0.31917,0.3369,0.36419,0.3668,0.37916,0.39904,0.41552,0.41629,0.47511,0.48497,0.48973,0.50197,0.50837,0.51847,0.53465,0.5412,0.55036,0.56513,0.58429,0.6026,0.60445,0.62677,0.64142,0.65428,0.68331,0.69643,0.70118,0.71789,0.7189,0.72615,0.72934,0.77065,0.78094,0.7849,0.80269,0.81278,0.8143,0.83709,0.87766,0.88883,0.89442,0.90696,0.90801,0.92122,0.92261,0.93815,0.94655,0.96167,0.96292,0.96407,0.96471,0.96676,0.96839,0.96936,0.97872,0.98047,0.99338,0.99619,0.99763,0.9981,1,1,0.9998,0.99957,0.99711,0.99699,0.99672,0.99331,0.99215,0.99172,0.99034,0.9884,0.9864,0.9853,0.97232,0.97179,0.96339,0.94887,0.93321,0.90843,0.90805,0.89845,0.88582,0.86824,0.86804,0.86173,0.83064,0.82311,0.82227,0.78241,0.77334,0.76808,0.75166,0.73514,0.70413,0.69922,0.67536,0.62129,0.62056,0.61611,0.60703,0.5999,0.59112,0.58077,0.48608,0.46202,0.42605,0.40011,0.39885,0.39596,0.35896,0.3506,0.34991,0.31682,0.26524,0.2637,0.24963,0.24679,0.2166,0.20863,0.19193,0.18361,0.17471,0.17302,0.16294,0.16121,0.16039,0.13938,0.13352,0.13111,0.12351,0.12119,0.11098,0.10874,0.10436,0.094034,0.09394,0.089281,0.087751,0.087749,0.078268,0.077982,0.074336,0.070639,0.063097,0.056883,0.052743,0.046679,0.041602,0.03572,0.035497,0.031493,0.028015,0.026125,0.021599,0.020408,0.018167,0.016946,0.014627,0.014399,0.013939,0.012925,0.011014,0.0093157,0.0085148,0.0077776,0.0074163,0.0073666,0.0067533,0.0061023,0.0044504,0.0040854,0.0038962,0.0035065,0.0035039,0.0031556,0.0031145,0.0028992,0.0027363,0.0022475,0.0021838,0.0018681,0.0016127,0.0009863,0.0008975,0.00085734,0.00075987,0.00067791,0.00064899,0.00059464,0.00055826,0.00051602,0.00045273,0.00045241,0.00035657,0.00033452,0.00033009,0.00032774,0.00025612,0.00025468,0.00024837,0.00024372,0.00023205,0.00021387,0.00019872,0.00014289,6.9394e-05,5.5681e-05,5.4602e-05,5.3725e-05,5.0977e-05,4.9507e-05,3.7415e-05,3.1044e-05,2.7073e-05,2.5067e-05,2.1323e-05,1.8567e-05,1.8093e-05,1.487e-05,1.3297e-05,1.1592e-05,9.2809e-06,6.9022e-06,6.772e-06,6.1208e-06,5.7044e-06,5.5264e-06,3.9302e-06,3.5773e-06,2.3213e-06,2.0564e-06,1.6589e-06,1.4777e-06,1.4232e-06,1.1586e-06,1.1281e-06,1.064e-06,9.3598e-07,7.3177e-07 1,1.5538e-17,2.3952e-17,2.4475e-17,2.7876e-17,3.0807e-17,3.5126e-17,4.5284e-17,8.2586e-17,1.2072e-16,1.2795e-16,1.728e-16,1.8147e-16,2.2038e-16,3.5279e-16,4.0866e-16,4.5254e-16,7.0288e-16,7.5789e-16,8.2388e-16,1.0898e-15,1.123e-15,1.1425e-15,1.4129e-15,1.6012e-15,1.6077e-15,2.0428e-15,2.0878e-15,2.3256e-15,2.3589e-15,2.3916e-15,4.9551e-15,9.8645e-15,1.0494e-14,1.2835e-14,1.5353e-14,1.7638e-14,2.0788e-14,2.5149e-14,3.5115e-14,4.2168e-14,5.6716e-14,8.2185e-14,8.5036e-14,9.1431e-14,9.7759e-14,1.3833e-13,1.3841e-13,3.1444e-13,3.3402e-13,3.4542e-13,4.406e-13,4.4855e-13,7.2108e-13,8.6808e-13,9.3759e-13,1.1099e-12,1.2351e-12,1.4832e-12,1.5696e-12,2.4218e-12,3.1593e-12,7.2243e-12,9.0444e-12,9.7481e-12,1.1144e-11,1.6067e-11,1.7313e-11,1.8498e-11,2.5213e-11,3.365e-11,3.743e-11,4.083e-11,5.589e-11,8.7619e-11,1.4008e-10,1.9163e-10,2.0459e-10,3.6543e-10,4.4582e-10,4.8901e-10,5.0946e-10,6.0123e-10,1.1812e-09,1.207e-09,1.3564e-09,1.6313e-09,1.6913e-09,2.1977e-09,4.4836e-09,4.5257e-09,5.5209e-09,5.9279e-09,1.3219e-08,1.6129e-08,1.6366e-08,1.9531e-08,2.4781e-08,2.4897e-08,2.538e-08,2.9274e-08,2.9312e-08,3.3346e-08,3.5046e-08,7.0807e-08,9.5958e-08,9.6945e-08,1.3639e-07,1.4937e-07,1.7182e-07,1.8388e-07,1.9138e-07,2.0003e-07,2.0292e-07,2.1086e-07,2.4595e-07,2.5039e-07,2.5976e-07,2.6771e-07,3.3566e-07,4.3255e-07,5.9738e-07,6.7396e-07,8.683e-07,1.1489e-06,1.2915e-06,1.3716e-06,2.6417e-06,2.8467e-06,3.007e-06,3.3508e-06,3.8425e-06,4.3237e-06,4.7566e-06,4.8378e-06,4.8894e-06,5.5101e-06,7.5218e-06,7.6947e-06,8.6858e-06,1.0466e-05,1.1593e-05,1.1787e-05,2.0948e-05,2.1075e-05,2.3568e-05,2.9275e-05,3.0446e-05,3.5217e-05,3.6443e-05,4.6222e-05,5.3889e-05,7.6032e-05,7.6655e-05,0.0001127,0.00011771,0.00011935,0.00015246,0.00015484,0.00016897,0.00018943,0.00019629,0.00020163,0.00022402,0.00022795,0.00023054,0.00025047,0.00025782,0.00025977,0.00027812,0.00028502,0.00032617,0.00040685,0.00042305,0.00042747,0.00047126,0.00049055,0.00057685,0.00076309,0.00083123,0.00095062,0.00099837,0.0011427,0.0013051,0.0013193,0.0013303,0.0013316,0.0013844,0.0013889,0.0015675,0.0016562,0.0018357,0.0018441,0.0018958,0.0022599,0.0022714,0.0024672,0.0027084,0.003193,0.0032623,0.0034676,0.0035152,0.0036379,0.0038524,0.0042032,0.0042132,0.0051196,0.0063613,0.0065079,0.0066737,0.0067261,0.0076406,0.008257,0.010685,0.010828,0.011121,0.011632,0.013714,0.016223,0.019415,0.020476,0.021132,0.02288,0.026789,0.02868,0.0313,0.03572,0.039945,0.04075,0.050233,0.051607,0.052116,0.05465,0.055685,0.06454,0.068671,0.069904,0.070031,0.07268,0.076377,0.078141,0.078936,0.093938,0.093958,0.1093,0.12908,0.14962,0.17055,0.1802,0.1828,0.18896,0.19446,0.20783,0.20934,0.23694,0.24426,0.25934,0.27884,0.29108,0.29248,0.30268,0.30963,0.32707,0.35393,0.35651,0.3687,0.38832,0.40459,0.40536,0.46359,0.47337,0.47809,0.49025,0.4966,0.50665,0.52274,0.52926,0.53838,0.5531,0.57222,0.5905,0.59235,0.61468,0.62934,0.64224,0.67138,0.68457,0.68935,0.70618,0.70719,0.71451,0.71773,0.75948,0.76991,0.77392,0.79198,0.80225,0.80379,0.82702,0.86858,0.88009,0.88585,0.89882,0.8999,0.91362,0.91506,0.9313,0.94012,0.95613,0.95746,0.95869,0.95937,0.96157,0.96331,0.96436,0.97449,0.9764,0.9909,0.99425,0.99606,0.99668,0.99978,0.9998,1,0.99996,0.99842,0.99834,0.99813,0.99541,0.99444,0.99408,0.9929,0.99122,0.98946,0.98849,0.97674,0.97625,0.96846,0.95483,0.93997,0.91623,0.91586,0.90661,0.89438,0.87733,0.87713,0.87099,0.84063,0.83325,0.83243,0.79326,0.78433,0.77914,0.76293,0.74659,0.71586,0.71099,0.68727,0.63338,0.63265,0.62821,0.61913,0.612,0.60322,0.59286,0.49777,0.47353,0.43721,0.41099,0.40971,0.40678,0.36929,0.3608,0.3601,0.32648,0.27395,0.27238,0.25802,0.25511,0.22425,0.21609,0.19898,0.19044,0.18131,0.17957,0.16922,0.16744,0.1666,0.14499,0.13895,0.13647,0.12863,0.12624,0.1157,0.11339,0.10886,0.098184,0.098088,0.093266,0.091682,0.09168,0.081858,0.081562,0.077781,0.073945,0.066115,0.059655,0.055348,0.049033,0.04374,0.037601,0.037368,0.033183,0.029545,0.027566,0.022822,0.021573,0.019219,0.017936,0.015497,0.015257,0.014773,0.013706,0.011691,0.0098999,0.0090541,0.008275,0.007893,0.0078405,0.0071916,0.0065025,0.0047515,0.004364,0.0041631,0.0037491,0.0037464,0.003376,0.0033323,0.0031033,0.0029299,0.0024092,0.0023414,0.0020046,0.001732,0.0010621,0.00096697,0.00092393,0.00081941,0.00073147,0.00070042,0.00064206,0.00060297,0.00055757,0.00048951,0.00048917,0.000386,0.00036225,0.00035747,0.00035495,0.00027772,0.00027616,0.00026936,0.00026434,0.00025174,0.00023211,0.00021574,0.00015537,7.5712e-05,6.0811e-05,5.9637e-05,5.8684e-05,5.5695e-05,5.4096e-05,4.0934e-05,3.3993e-05,2.9662e-05,2.7473e-05,2.3387e-05,2.0375e-05,1.9858e-05,1.6334e-05,1.4613e-05,1.2746e-05,1.0215e-05,7.6059e-06,7.463e-06,6.7481e-06,6.2909e-06,6.0954e-06,4.3408e-06,3.9525e-06,2.5692e-06,2.277e-06,1.8384e-06,1.6383e-06,1.5781e-06,1.2858e-06,1.252e-06,1.1811e-06,1.0396e-06,8.1349e-07 1,1.4314e-17,2.2074e-17,2.2557e-17,2.5695e-17,2.84e-17,3.2385e-17,4.1762e-17,7.6213e-17,1.1145e-16,1.1814e-16,1.596e-16,1.6761e-16,2.0359e-16,3.2608e-16,3.7778e-16,4.184e-16,6.5017e-16,7.0112e-16,7.6223e-16,1.0086e-15,1.0393e-15,1.0574e-15,1.308e-15,1.4825e-15,1.4885e-15,1.8919e-15,1.9336e-15,2.1541e-15,2.1849e-15,2.2153e-15,4.5936e-15,9.1522e-15,9.7374e-15,1.1912e-14,1.4252e-14,1.6376e-14,1.9304e-14,2.3359e-14,3.2628e-14,3.919e-14,5.2729e-14,7.6442e-14,7.9097e-14,8.5053e-14,9.0947e-14,1.2875e-13,1.2882e-13,2.9294e-13,3.1121e-13,3.2184e-13,4.1065e-13,4.1807e-13,6.7248e-13,8.0975e-13,8.7468e-13,1.0356e-12,1.1527e-12,1.3845e-12,1.4653e-12,2.262e-12,2.9519e-12,6.7571e-12,8.4621e-12,9.1213e-12,1.043e-11,1.5044e-11,1.6212e-11,1.7323e-11,2.3622e-11,3.1539e-11,3.5086e-11,3.8278e-11,5.2419e-11,8.2227e-11,1.3154e-10,1.8003e-10,1.9223e-10,3.4362e-10,4.1934e-10,4.6002e-10,4.7929e-10,5.6575e-10,1.1126e-09,1.1369e-09,1.2779e-09,1.5373e-09,1.5939e-09,2.0719e-09,4.2315e-09,4.2713e-09,5.2121e-09,5.5969e-09,1.2496e-08,1.5252e-08,1.5477e-08,1.8475e-08,2.3449e-08,2.356e-08,2.4017e-08,2.7709e-08,2.7744e-08,3.1568e-08,3.3181e-08,6.7115e-08,9.0999e-08,9.1936e-08,1.2942e-07,1.4175e-07,1.6309e-07,1.7457e-07,1.817e-07,1.8992e-07,1.9267e-07,2.0022e-07,2.3361e-07,2.3783e-07,2.4675e-07,2.5431e-07,3.1898e-07,4.1124e-07,5.6826e-07,6.4124e-07,8.2651e-07,1.0942e-06,1.2302e-06,1.3066e-06,2.5197e-06,2.7155e-06,2.8687e-06,3.1973e-06,3.6675e-06,4.1277e-06,4.5417e-06,4.6194e-06,4.6688e-06,5.2627e-06,7.1883e-06,7.3538e-06,8.303e-06,1.0009e-05,1.1088e-05,1.1274e-05,2.006e-05,2.0181e-05,2.2574e-05,2.8052e-05,2.9177e-05,3.3759e-05,3.4937e-05,4.4334e-05,5.1704e-05,7.3002e-05,7.3602e-05,0.0001083,0.00011312,0.0001147,0.00014661,0.0001489,0.00016252,0.00018225,0.00018886,0.00019401,0.00021561,0.0002194,0.0002219,0.00024113,0.00024822,0.0002501,0.00026781,0.00027447,0.0003142,0.00039212,0.00040777,0.00041203,0.00045435,0.00047299,0.00055642,0.00073656,0.0008025,0.00091808,0.00096431,0.0011041,0.0012614,0.0012752,0.0012859,0.0012871,0.0013383,0.0013427,0.0015157,0.0016018,0.0017759,0.001784,0.0018341,0.0021875,0.0021986,0.0023886,0.0026228,0.0030935,0.0031608,0.0033603,0.0034065,0.0035258,0.0037343,0.0040753,0.004085,0.0049666,0.0061751,0.0063178,0.0064793,0.0065303,0.007421,0.0080215,0.010388,0.010528,0.010814,0.011312,0.013343,0.015793,0.018913,0.019949,0.020591,0.0223,0.026124,0.027975,0.03054,0.034869,0.039009,0.039798,0.049098,0.050446,0.050946,0.053432,0.054449,0.063143,0.067202,0.068413,0.068538,0.071141,0.074775,0.076509,0.077291,0.092048,0.092067,0.10717,0.12667,0.14692,0.16757,0.17711,0.17967,0.18576,0.19119,0.20442,0.20591,0.23321,0.24045,0.25538,0.27471,0.28683,0.28822,0.29833,0.30522,0.32252,0.34919,0.35175,0.36386,0.38335,0.39953,0.40029,0.45824,0.46799,0.47268,0.4848,0.49113,0.50114,0.51719,0.5237,0.5328,0.54749,0.56658,0.58485,0.5867,0.60902,0.62369,0.6366,0.66578,0.67901,0.6838,0.70068,0.70169,0.70904,0.71227,0.75421,0.7647,0.76874,0.78692,0.79726,0.79882,0.82224,0.86426,0.87591,0.88176,0.89491,0.89602,0.90996,0.91144,0.92799,0.937,0.95342,0.95479,0.95606,0.95676,0.95902,0.96082,0.96189,0.97238,0.97437,0.98961,0.99322,0.99519,0.99588,0.99954,0.99957,0.99996,1,0.9989,0.99883,0.99866,0.99626,0.99538,0.99505,0.99396,0.9924,0.99077,0.98985,0.97867,0.97821,0.97071,0.9575,0.94302,0.91977,0.91941,0.91032,0.8983,0.88148,0.88129,0.87523,0.84522,0.83792,0.83711,0.79828,0.78941,0.78425,0.76815,0.7519,0.72131,0.71645,0.69281,0.63902,0.63829,0.63386,0.62478,0.61766,0.60887,0.59851,0.50326,0.47894,0.44247,0.41611,0.41483,0.41189,0.37417,0.36562,0.36492,0.33106,0.27809,0.27649,0.262,0.25907,0.22789,0.21963,0.20233,0.19369,0.18446,0.18269,0.17221,0.17041,0.16956,0.14766,0.14154,0.13902,0.13108,0.12865,0.11795,0.11561,0.11101,0.10017,0.10007,0.095176,0.093567,0.093564,0.08358,0.083279,0.079434,0.075533,0.067565,0.060989,0.056602,0.050167,0.044771,0.038509,0.038271,0.033999,0.030284,0.028262,0.023413,0.022136,0.019729,0.018416,0.015919,0.015674,0.015178,0.014085,0.012021,0.010184,0.0093164,0.0085171,0.008125,0.0080712,0.0074051,0.0066976,0.0048985,0.0045001,0.0042935,0.0038676,0.0038648,0.0034838,0.0034388,0.0032031,0.0030246,0.0024884,0.0024185,0.0020716,0.0017905,0.0010994,0.0010011,0.00095666,0.0008487,0.00075782,0.00072573,0.0006654,0.00062499,0.00057804,0.00050764,0.00050729,0.00040052,0.00037594,0.00037099,0.00036838,0.00028839,0.00028677,0.00027972,0.00027452,0.00026147,0.00024112,0.00022416,0.00016156,7.8848e-05,6.336e-05,6.2139e-05,6.1147e-05,5.804e-05,5.6377e-05,4.2685e-05,3.546e-05,3.0951e-05,2.8671e-05,2.4415e-05,2.1277e-05,2.0738e-05,1.7065e-05,1.527e-05,1.3323e-05,1.0681e-05,7.9578e-06,7.8087e-06,7.062e-06,6.5844e-06,6.3801e-06,4.5465e-06,4.1405e-06,2.6935e-06,2.3878e-06,1.9286e-06,1.719e-06,1.656e-06,1.3497e-06,1.3143e-06,1.2401e-06,1.0917e-06,8.5464e-07 1,9.4661e-18,1.4632e-17,1.4954e-17,1.7046e-17,1.885e-17,2.1511e-17,2.7777e-17,5.0857e-17,7.4525e-17,7.9021e-17,1.0693e-16,1.1233e-16,1.3659e-16,2.1934e-16,2.5432e-16,2.8183e-16,4.3902e-16,4.7362e-16,5.1514e-16,6.827e-16,7.0363e-16,7.1596e-16,8.8666e-16,1.0057e-15,1.0098e-15,1.2852e-15,1.3137e-15,1.4644e-15,1.4855e-15,1.5063e-15,3.1364e-15,6.2739e-15,6.6775e-15,8.1781e-15,9.7951e-15,1.1264e-14,1.3291e-14,1.6101e-14,2.2535e-14,2.7096e-14,3.6522e-14,5.3065e-14,5.4919e-14,5.908e-14,6.32e-14,8.9657e-14,8.9705e-14,2.0503e-13,2.179e-13,2.2538e-13,2.8801e-13,2.9325e-13,4.7309e-13,5.7033e-13,6.1636e-13,7.3053e-13,8.1366e-13,9.7842e-13,1.0359e-12,1.6036e-12,2.0962e-12,4.8243e-12,6.0504e-12,6.525e-12,7.4674e-12,1.0797e-11,1.1642e-11,1.2445e-11,1.7005e-11,2.2748e-11,2.5325e-11,2.7645e-11,3.7939e-11,5.9697e-11,9.581e-11,1.3142e-10,1.4038e-10,2.5197e-10,3.0793e-10,3.3803e-10,3.5229e-10,4.1634e-10,8.2277e-10,8.4089e-10,9.4595e-10,1.1395e-09,1.1818e-09,1.5392e-09,3.1603e-09,3.1903e-09,3.8989e-09,4.189e-09,9.4104e-09,1.1504e-08,1.1675e-08,1.3956e-08,1.7746e-08,1.7831e-08,1.8179e-08,2.0997e-08,2.1025e-08,2.3947e-08,2.5181e-08,5.1223e-08,6.9624e-08,7.0348e-08,9.931e-08,1.0885e-07,1.2539e-07,1.3429e-07,1.3982e-07,1.462e-07,1.4834e-07,1.542e-07,1.8015e-07,1.8343e-07,1.9037e-07,1.9625e-07,2.4664e-07,3.1867e-07,4.4158e-07,4.9882e-07,6.4438e-07,8.5519e-07,9.6253e-07,1.0229e-06,1.9843e-06,2.14e-06,2.2619e-06,2.5235e-06,2.8983e-06,3.2657e-06,3.5964e-06,3.6586e-06,3.698e-06,4.1732e-06,5.7171e-06,5.8501e-06,6.6129e-06,7.9858e-06,8.8563e-06,9.0059e-06,1.6116e-05,1.6215e-05,1.8158e-05,2.2614e-05,2.353e-05,2.7267e-05,2.8228e-05,3.5909e-05,4.1946e-05,5.9443e-05,5.9937e-05,8.8565e-05,9.2552e-05,9.3859e-05,0.00012029,0.00012219,0.0001335,0.0001499,0.0001554,0.00015969,0.00017768,0.00018083,0.00018292,0.00019896,0.00020488,0.00020645,0.00022124,0.00022681,0.00026004,0.00032538,0.00033853,0.00034211,0.00037768,0.00039337,0.00046366,0.00061588,0.00067172,0.00076975,0.00080901,0.00092788,0.0010619,0.0010736,0.0010828,0.0010838,0.0011274,0.0011312,0.001279,0.0013526,0.0015016,0.0015086,0.0015515,0.0018548,0.0018643,0.0020277,0.0022293,0.0026354,0.0026935,0.0028659,0.0029059,0.0030091,0.0031896,0.0034852,0.0034936,0.0042594,0.0053125,0.0054372,0.0055782,0.0056228,0.0064018,0.0069279,0.0090077,0.0091305,0.0093826,0.0098217,0.011616,0.013785,0.016557,0.01748,0.018052,0.019577,0.022996,0.024655,0.026957,0.030851,0.034585,0.035298,0.043718,0.044941,0.045395,0.047655,0.048579,0.056501,0.060207,0.061315,0.061428,0.06381,0.067138,0.068727,0.069444,0.083008,0.083026,0.096962,0.11504,0.1339,0.15321,0.16216,0.16456,0.17028,0.17539,0.18785,0.18926,0.21506,0.22193,0.23611,0.25451,0.26608,0.26741,0.27707,0.28367,0.30026,0.3259,0.32837,0.34005,0.35889,0.37456,0.3753,0.43173,0.44126,0.44586,0.45774,0.46395,0.47379,0.48958,0.49599,0.50497,0.51949,0.53841,0.55655,0.55839,0.58063,0.5953,0.60822,0.63755,0.65089,0.65572,0.67281,0.67384,0.68129,0.68456,0.72735,0.73811,0.74226,0.76099,0.77168,0.77329,0.79763,0.84175,0.85412,0.86034,0.87442,0.87561,0.89066,0.89226,0.91034,0.9203,0.9387,0.94025,0.9417,0.9425,0.94508,0.94714,0.94838,0.96061,0.96297,0.98185,0.98672,0.98953,0.99056,0.99703,0.99711,0.99842,0.9989,1,1,0.99999,0.99921,0.99878,0.99861,0.998,0.99706,0.99601,0.9954,0.98715,0.98679,0.98078,0.96974,0.95722,0.93652,0.9362,0.92797,0.91698,0.90147,0.90129,0.89566,0.86754,0.86064,0.85987,0.82287,0.81435,0.80939,0.79385,0.77811,0.74831,0.74356,0.72038,0.66724,0.66652,0.66212,0.65309,0.646,0.63725,0.62691,0.53107,0.50638,0.46922,0.44224,0.44093,0.43791,0.39912,0.39031,0.38958,0.35454,0.29939,0.29772,0.28256,0.27948,0.24673,0.23803,0.21976,0.21061,0.20082,0.19895,0.18782,0.1859,0.185,0.16165,0.1551,0.15241,0.1439,0.14129,0.1298,0.12728,0.12233,0.11064,0.11053,0.10523,0.10349,0.10349,0.092669,0.092342,0.088166,0.083923,0.075241,0.068057,0.063254,0.056194,0.050258,0.04335,0.043086,0.03836,0.034239,0.031992,0.02659,0.025163,0.022471,0.020999,0.018196,0.01792,0.017362,0.016131,0.013801,0.011723,0.010739,0.009831,0.0093852,0.0093239,0.0085655,0.0077587,0.0057005,0.0052432,0.0050059,0.004516,0.0045127,0.0040737,0.0040219,0.0037499,0.0035437,0.0029233,0.0028423,0.0024396,0.0021126,0.0013054,0.0011901,0.0011379,0.001011,0.00090402,0.00086621,0.00079504,0.00074733,0.00069185,0.00060854,0.00060812,0.00048149,0.00045227,0.00044639,0.00044328,0.00034802,0.0003461,0.00033769,0.00033148,0.0003159,0.00029159,0.0002713,0.00019626,9.6541e-05,7.7759e-05,7.6277e-05,7.5073e-05,7.1297e-05,6.9276e-05,5.2605e-05,4.3785e-05,3.8271e-05,3.548e-05,3.0262e-05,2.641e-05,2.5747e-05,2.1228e-05,1.9017e-05,1.6614e-05,1.3349e-05,9.9739e-06,9.7887e-06,8.8613e-06,8.2676e-06,8.0135e-06,5.7288e-06,5.2219e-06,3.4107e-06,3.0269e-06,2.4496e-06,2.1857e-06,2.1062e-06,1.7198e-06,1.6752e-06,1.5814e-06,1.3937e-06,1.0935e-06 1,9.3428e-18,1.4443e-17,1.476e-17,1.6825e-17,1.8607e-17,2.1234e-17,2.742e-17,5.0208e-17,7.358e-17,7.8019e-17,1.0558e-16,1.1091e-16,1.3487e-16,2.166e-16,2.5115e-16,2.7832e-16,4.3358e-16,4.6776e-16,5.0878e-16,6.743e-16,6.9498e-16,7.0716e-16,8.7579e-16,9.9339e-16,9.9747e-16,1.2695e-15,1.2977e-15,1.4466e-15,1.4674e-15,1.488e-15,3.0987e-15,6.1993e-15,6.5981e-15,8.0811e-15,9.6793e-15,1.1131e-14,1.3134e-14,1.5912e-14,2.2272e-14,2.6781e-14,3.6099e-14,5.2454e-14,5.4287e-14,5.8401e-14,6.2474e-14,8.8634e-14,8.8681e-14,2.0272e-13,2.1545e-13,2.2285e-13,2.8479e-13,2.8997e-13,4.6784e-13,5.6402e-13,6.0955e-13,7.2249e-13,8.0472e-13,9.6771e-13,1.0246e-12,1.5862e-12,2.0736e-12,4.773e-12,5.9864e-12,6.456e-12,7.3887e-12,1.0684e-11,1.152e-11,1.2315e-11,1.6828e-11,2.2514e-11,2.5064e-11,2.7361e-11,3.7552e-11,5.9093e-11,9.4851e-11,1.3011e-10,1.3899e-10,2.495e-10,3.0492e-10,3.3474e-10,3.4886e-10,4.123e-10,8.1493e-10,8.3287e-10,9.3696e-10,1.1287e-09,1.1707e-09,1.5248e-09,3.1312e-09,3.1609e-09,3.8631e-09,4.1506e-09,9.326e-09,1.1401e-08,1.157e-08,1.3832e-08,1.759e-08,1.7674e-08,1.8019e-08,2.0813e-08,2.084e-08,2.3738e-08,2.4961e-08,5.0785e-08,6.9035e-08,6.9752e-08,9.8479e-08,1.0794e-07,1.2435e-07,1.3318e-07,1.3867e-07,1.4499e-07,1.4711e-07,1.5293e-07,1.7867e-07,1.8192e-07,1.8881e-07,1.9464e-07,2.4463e-07,3.161e-07,4.3806e-07,4.9485e-07,6.3931e-07,8.4852e-07,9.5505e-07,1.0149e-06,1.9693e-06,2.1239e-06,2.2449e-06,2.5046e-06,2.8767e-06,3.2414e-06,3.5699e-06,3.6315e-06,3.6708e-06,4.1425e-06,5.6757e-06,5.8077e-06,6.5652e-06,7.9287e-06,8.7932e-06,8.9419e-06,1.6005e-05,1.6103e-05,1.8032e-05,2.246e-05,2.337e-05,2.7082e-05,2.8037e-05,3.5669e-05,4.1668e-05,5.9056e-05,5.9546e-05,8.8001e-05,9.1963e-05,9.3262e-05,0.00011954,0.00012143,0.00013267,0.00014897,0.00015444,0.0001587,0.00017659,0.00017972,0.0001818,0.00019775,0.00020363,0.0002052,0.0002199,0.00022543,0.00025848,0.00032346,0.00033653,0.00034009,0.00037547,0.00039107,0.00046098,0.00061238,0.00066793,0.00076545,0.0008045,0.00092276,0.0010561,0.0010677,0.0010768,0.0010779,0.0011213,0.001125,0.0012721,0.0013453,0.0014936,0.0015006,0.0015433,0.001845,0.0018546,0.0020171,0.0022178,0.0026219,0.0026798,0.0028514,0.0028912,0.002994,0.0031736,0.0034678,0.0034762,0.0042386,0.0052871,0.0054112,0.0055516,0.005596,0.0063717,0.0068957,0.0089669,0.0090892,0.0093402,0.0097776,0.011564,0.013726,0.016487,0.017407,0.017976,0.019495,0.022903,0.024556,0.02685,0.030731,0.034453,0.035163,0.043556,0.044776,0.045228,0.047481,0.048402,0.0563,0.059996,0.061101,0.061214,0.063588,0.066907,0.068492,0.069207,0.082734,0.082752,0.096653,0.11469,0.1335,0.15277,0.1617,0.1641,0.1698,0.17491,0.18734,0.18875,0.2145,0.22136,0.23552,0.25389,0.26544,0.26676,0.27642,0.283,0.29957,0.32518,0.32764,0.33931,0.35813,0.37379,0.37453,0.4309,0.44043,0.44502,0.45689,0.4631,0.47293,0.48871,0.49512,0.5041,0.51861,0.53752,0.55565,0.5575,0.57974,0.5944,0.60733,0.63665,0.64999,0.65483,0.67192,0.67295,0.6804,0.68368,0.72649,0.73725,0.74141,0.76015,0.77085,0.77247,0.79684,0.84102,0.85341,0.85964,0.87375,0.87494,0.89003,0.89163,0.90976,0.91974,0.9382,0.93976,0.94121,0.94202,0.94461,0.94668,0.94792,0.96021,0.96258,0.98157,0.98648,0.98932,0.99035,0.99691,0.99699,0.99834,0.99883,1,1,0.99999,0.99927,0.99885,0.99868,0.99809,0.99718,0.99614,0.99554,0.98739,0.98702,0.98106,0.9701,0.95764,0.93703,0.93671,0.9285,0.91755,0.90208,0.9019,0.89629,0.86822,0.86134,0.86057,0.82363,0.81513,0.81017,0.79465,0.77892,0.74916,0.74441,0.72124,0.66813,0.66741,0.66301,0.65399,0.6469,0.63814,0.6278,0.53195,0.50726,0.47008,0.44308,0.44177,0.43875,0.39992,0.3911,0.39037,0.3553,0.30008,0.29841,0.28322,0.28014,0.24734,0.23863,0.22032,0.21116,0.20135,0.19948,0.18833,0.18641,0.1855,0.1621,0.15555,0.15285,0.14432,0.14171,0.13019,0.12767,0.1227,0.11098,0.11087,0.10557,0.10382,0.10382,0.092969,0.092641,0.088454,0.0842,0.075495,0.068291,0.063475,0.056394,0.05044,0.043511,0.043247,0.038505,0.034371,0.032116,0.026696,0.025265,0.022562,0.021085,0.018272,0.017995,0.017435,0.0162,0.013861,0.011775,0.010787,0.0098754,0.0094277,0.0093662,0.0086048,0.0077946,0.0057277,0.0052684,0.0050301,0.004538,0.0045348,0.0040938,0.0040417,0.0037685,0.0035614,0.0029381,0.0028567,0.0024521,0.0021236,0.0013124,0.0011966,0.0011441,0.0010166,0.00090905,0.00087104,0.0007995,0.00075154,0.00069577,0.00061202,0.0006116,0.00048429,0.00045491,0.00044899,0.00044587,0.00035008,0.00034815,0.00033969,0.00033345,0.00031778,0.00029333,0.00027293,0.00019746,9.7158e-05,7.8262e-05,7.6771e-05,7.5559e-05,7.176e-05,6.9726e-05,5.2952e-05,4.4076e-05,3.8527e-05,3.5718e-05,3.0467e-05,2.659e-05,2.5923e-05,2.1374e-05,1.9148e-05,1.673e-05,1.3443e-05,1.0045e-05,9.8586e-06,8.9248e-06,8.327e-06,8.0712e-06,5.7707e-06,5.2602e-06,3.4361e-06,3.0496e-06,2.4681e-06,2.2023e-06,2.1222e-06,1.733e-06,1.688e-06,1.5935e-06,1.4045e-06,1.102e-06 1,9.0576e-18,1.4004e-17,1.4312e-17,1.6316e-17,1.8044e-17,2.0592e-17,2.6595e-17,4.8708e-17,7.1392e-17,7.5702e-17,1.0246e-16,1.0763e-16,1.3089e-16,2.1025e-16,2.4381e-16,2.7019e-16,4.21e-16,4.542e-16,4.9405e-16,6.5486e-16,6.7495e-16,6.8677e-16,8.5063e-16,9.649e-16,9.6886e-16,1.2332e-15,1.2606e-15,1.4053e-15,1.4256e-15,1.4455e-15,3.0113e-15,6.0261e-15,6.414e-15,7.8563e-15,9.4108e-15,1.0823e-14,1.2772e-14,1.5474e-14,2.1662e-14,2.605e-14,3.5118e-14,5.1037e-14,5.2821e-14,5.6827e-14,6.0792e-14,8.626e-14,8.6306e-14,1.9736e-13,2.0976e-13,2.1697e-13,2.7731e-13,2.8235e-13,4.5566e-13,5.4938e-13,5.9375e-13,7.0382e-13,7.8396e-13,9.4283e-13,9.9826e-13,1.5457e-12,2.021e-12,4.6538e-12,5.8376e-12,6.2958e-12,7.2058e-12,1.0422e-11,1.1237e-11,1.2013e-11,1.6418e-11,2.1968e-11,2.4458e-11,2.6701e-11,3.6652e-11,5.769e-11,9.2622e-11,1.2707e-10,1.3575e-10,2.4376e-10,2.9794e-10,3.2708e-10,3.4089e-10,4.0292e-10,7.9668e-10,8.1423e-10,9.1604e-10,1.1037e-09,1.1447e-09,1.4911e-09,3.0633e-09,3.0924e-09,3.7798e-09,4.0613e-09,9.1295e-09,1.1162e-08,1.1328e-08,1.3543e-08,1.7226e-08,1.7308e-08,1.7646e-08,2.0384e-08,2.0411e-08,2.3251e-08,2.4449e-08,4.9765e-08,6.766e-08,6.8364e-08,9.6539e-08,1.0582e-07,1.2192e-07,1.3058e-07,1.3596e-07,1.4217e-07,1.4425e-07,1.4996e-07,1.7521e-07,1.7841e-07,1.8517e-07,1.9089e-07,2.3995e-07,3.101e-07,4.2983e-07,4.856e-07,6.2746e-07,8.3296e-07,9.376e-07,9.9644e-07,1.9343e-06,2.0862e-06,2.2051e-06,2.4605e-06,2.8263e-06,3.1849e-06,3.5078e-06,3.5684e-06,3.607e-06,4.0709e-06,5.5788e-06,5.7087e-06,6.4539e-06,7.7953e-06,8.6459e-06,8.7922e-06,1.5743e-05,1.584e-05,1.774e-05,2.2099e-05,2.2995e-05,2.6651e-05,2.7591e-05,3.5108e-05,4.1018e-05,5.815e-05,5.8634e-05,8.6679e-05,9.0585e-05,9.1865e-05,0.00011777,0.00011963,0.00013072,0.0001468,0.00015219,0.00015639,0.00017403,0.00017713,0.00017918,0.00019491,0.00020071,0.00020226,0.00021677,0.00022222,0.00025483,0.00031895,0.00033185,0.00033536,0.00037028,0.00038568,0.00045469,0.00060418,0.00065904,0.00075536,0.00079394,0.00091076,0.0010425,0.001054,0.001063,0.001064,0.0011069,0.0011106,0.0012559,0.0013283,0.0014749,0.0014817,0.001524,0.0018223,0.0018317,0.0019924,0.0021908,0.0025905,0.0026477,0.0028175,0.0028568,0.0029584,0.0031361,0.0034272,0.0034355,0.0041898,0.0052275,0.0053503,0.0054893,0.0055332,0.0063012,0.0068199,0.008871,0.0089921,0.0092407,0.0096739,0.011444,0.013586,0.016323,0.017234,0.017799,0.019305,0.022683,0.024323,0.026598,0.030448,0.034141,0.034845,0.043176,0.044387,0.044836,0.047072,0.047987,0.055829,0.0595,0.060597,0.060709,0.063068,0.066364,0.067939,0.068649,0.082089,0.082107,0.095923,0.11385,0.13257,0.15174,0.16062,0.16301,0.16869,0.17376,0.18614,0.18754,0.21319,0.22002,0.23412,0.25242,0.26393,0.26525,0.27487,0.28143,0.29794,0.32348,0.32593,0.33756,0.35634,0.37195,0.37269,0.42895,0.43845,0.44304,0.45489,0.46109,0.4709,0.48667,0.49307,0.50203,0.51653,0.53542,0.55355,0.55539,0.57762,0.59228,0.6052,0.63453,0.64788,0.65272,0.66982,0.67085,0.67831,0.68159,0.72446,0.73524,0.7394,0.75818,0.76891,0.77052,0.79495,0.83928,0.85172,0.85798,0.87216,0.87335,0.88852,0.89013,0.90837,0.91842,0.93702,0.9386,0.94006,0.94087,0.94348,0.94558,0.94683,0.95924,0.96164,0.98091,0.98591,0.98881,0.98987,0.99663,0.99672,0.99813,0.99866,0.99999,0.99999,1,0.99939,0.99901,0.99886,0.9983,0.99743,0.99644,0.99587,0.98793,0.98758,0.98173,0.97093,0.95862,0.9382,0.93789,0.92975,0.91888,0.90351,0.90333,0.89775,0.86983,0.86298,0.86222,0.82542,0.81695,0.81201,0.79654,0.78085,0.75115,0.74641,0.72328,0.67023,0.66951,0.66511,0.6561,0.64901,0.64026,0.62992,0.53405,0.50933,0.4721,0.44506,0.44375,0.44072,0.40182,0.39298,0.39225,0.35709,0.30171,0.30004,0.2848,0.28171,0.24879,0.24004,0.22167,0.21247,0.20262,0.20074,0.18953,0.18761,0.18669,0.16319,0.1566,0.15389,0.14531,0.14269,0.13111,0.12858,0.12358,0.1118,0.11169,0.10635,0.1046,0.10459,0.09368,0.093351,0.089138,0.084858,0.076097,0.068846,0.063998,0.056869,0.050873,0.043893,0.043628,0.038851,0.034684,0.032412,0.026948,0.025505,0.022781,0.021291,0.018454,0.018174,0.01761,0.016363,0.014004,0.011898,0.010901,0.0099809,0.009529,0.0094669,0.0086981,0.00788,0.0057924,0.0053285,0.0050876,0.0045904,0.0045872,0.0041416,0.0040889,0.0038128,0.0036034,0.0029734,0.0028911,0.002482,0.0021498,0.0013293,0.0012121,0.001159,0.0010299,0.00092103,0.00088255,0.00081014,0.00076158,0.00070512,0.00062031,0.00061989,0.00049095,0.00046119,0.0004552,0.00045204,0.00035501,0.00035305,0.00034448,0.00033815,0.00032228,0.0002975,0.00027683,0.00020034,9.863e-05,7.9462e-05,7.7949e-05,7.672e-05,7.2866e-05,7.0802e-05,5.378e-05,4.4772e-05,3.914e-05,3.6288e-05,3.0957e-05,2.702e-05,2.6343e-05,2.1724e-05,1.9463e-05,1.7007e-05,1.3668e-05,1.0215e-05,1.0026e-05,9.0767e-06,8.4691e-06,8.2091e-06,5.8707e-06,5.3517e-06,3.4969e-06,3.1038e-06,2.5124e-06,2.242e-06,2.1605e-06,1.7645e-06,1.7188e-06,1.6226e-06,1.4302e-06,1.1224e-06 1,6.6499e-18,1.0299e-17,1.0527e-17,1.2006e-17,1.3284e-17,1.5168e-17,1.9609e-17,3.6e-17,5.2848e-17,5.6051e-17,7.5954e-17,7.9808e-17,9.7132e-17,1.5632e-16,1.8138e-16,2.0109e-16,3.1391e-16,3.3877e-16,3.6862e-16,4.8918e-16,5.0425e-16,5.1312e-16,6.3611e-16,7.2194e-16,7.2492e-16,9.2366e-16,9.4423e-16,1.0531e-15,1.0684e-15,1.0834e-15,2.2639e-15,4.544e-15,4.8377e-15,5.9308e-15,7.1098e-15,8.1818e-15,9.6618e-15,1.1716e-14,1.6425e-14,1.9768e-14,2.6685e-14,3.8845e-14,4.021e-14,4.3273e-14,4.6306e-14,6.5809e-14,6.5844e-14,1.5114e-13,1.6067e-13,1.6622e-13,2.1269e-13,2.1657e-13,3.5027e-13,4.2269e-13,4.5698e-13,5.4213e-13,6.0416e-13,7.2722e-13,7.7018e-13,1.195e-12,1.5645e-12,3.6169e-12,4.5418e-12,4.9001e-12,5.6121e-12,8.1314e-12,8.771e-12,9.3796e-12,1.2839e-11,1.7204e-11,1.9164e-11,2.093e-11,2.8776e-11,4.5397e-11,7.3061e-11,1.004e-10,1.0729e-10,1.9325e-10,2.3645e-10,2.597e-10,2.7073e-10,3.2027e-10,6.3556e-10,6.4964e-10,7.3134e-10,8.8201e-10,9.1497e-10,1.1936e-09,2.4619e-09,2.4854e-09,3.0413e-09,3.2691e-09,7.3824e-09,9.0366e-09,9.1716e-09,1.0976e-08,1.398e-08,1.4047e-08,1.4324e-08,1.656e-08,1.6582e-08,1.8903e-08,1.9883e-08,4.0643e-08,5.5361e-08,5.594e-08,7.9161e-08,8.6824e-08,1.0011e-07,1.0727e-07,1.1172e-07,1.1686e-07,1.1858e-07,1.233e-07,1.442e-07,1.4685e-07,1.5245e-07,1.5719e-07,1.9787e-07,2.5613e-07,3.5578e-07,4.0225e-07,5.2063e-07,6.9242e-07,7.8001e-07,8.2929e-07,1.617e-06,1.7449e-06,1.8451e-06,2.0603e-06,2.3688e-06,2.6716e-06,2.9444e-06,2.9957e-06,3.0283e-06,3.4207e-06,4.6981e-06,4.8082e-06,5.4406e-06,6.5803e-06,7.3038e-06,7.4282e-06,1.3358e-05,1.344e-05,1.5065e-05,1.8798e-05,1.9566e-05,2.2702e-05,2.3509e-05,2.9969e-05,3.5056e-05,4.9833e-05,5.0251e-05,7.4518e-05,7.7904e-05,7.9014e-05,0.0001015,0.00010312,0.00011276,0.00012675,0.00013144,0.0001351,0.00015048,0.00015317,0.00015496,0.00016868,0.00017375,0.0001751,0.00018777,0.00019254,0.00022105,0.0002772,0.00028851,0.00029159,0.00032223,0.00033575,0.00039641,0.00052808,0.00057648,0.00066156,0.00069566,0.00079904,0.00091578,0.00092597,0.00093395,0.00093488,0.00097291,0.00097619,0.0011052,0.0011695,0.0012999,0.001306,0.0013436,0.0016093,0.0016178,0.0017612,0.0019384,0.0022958,0.0023471,0.0024991,0.0025344,0.0026255,0.0027848,0.0030461,0.0030535,0.0037316,0.0046669,0.0047777,0.0049032,0.0049428,0.0056368,0.0061061,0.0079659,0.0080759,0.0083018,0.0086955,0.010306,0.01226,0.014762,0.015597,0.016114,0.017495,0.020599,0.022107,0.024203,0.027755,0.031169,0.031821,0.039544,0.040668,0.041086,0.043164,0.044015,0.051319,0.054744,0.055768,0.055873,0.058077,0.061159,0.062631,0.063296,0.075896,0.075913,0.088905,0.10582,0.12353,0.14173,0.15018,0.15246,0.15787,0.16271,0.17453,0.17586,0.20041,0.20696,0.2205,0.23811,0.2492,0.25047,0.25976,0.2661,0.28206,0.30681,0.30919,0.32049,0.33875,0.35397,0.35469,0.40971,0.41903,0.42354,0.43518,0.44127,0.45094,0.46647,0.47279,0.48164,0.49597,0.51468,0.53266,0.53449,0.5566,0.5712,0.5841,0.61344,0.62683,0.63168,0.64887,0.64991,0.65742,0.66073,0.70406,0.715,0.71923,0.73835,0.74929,0.75094,0.77595,0.82166,0.83458,0.8411,0.85591,0.85716,0.87308,0.87478,0.89407,0.90478,0.92477,0.92648,0.92806,0.92894,0.93178,0.93406,0.93543,0.94908,0.95175,0.97363,0.97955,0.98306,0.98436,0.99318,0.99331,0.99541,0.99626,0.99921,0.99927,0.99939,1,0.99995,0.99991,0.99973,0.99932,0.99877,0.99842,0.9927,0.99243,0.98772,0.97858,0.96778,0.94937,0.94908,0.94161,0.93156,0.91723,0.91707,0.91183,0.88544,0.87891,0.87819,0.8429,0.83473,0.82995,0.81497,0.79972,0.77072,0.76609,0.74338,0.69101,0.6903,0.68594,0.67699,0.66996,0.66126,0.65097,0.55494,0.53002,0.49237,0.46494,0.4636,0.46052,0.4209,0.41188,0.41113,0.37515,0.31822,0.3165,0.30077,0.29758,0.2635,0.25443,0.23533,0.22576,0.21549,0.21353,0.20183,0.19982,0.19887,0.17427,0.16736,0.16451,0.1555,0.15274,0.14056,0.13789,0.13262,0.12018,0.12006,0.11442,0.11256,0.11255,0.10099,0.10064,0.096171,0.091624,0.082304,0.074575,0.069399,0.061775,0.055351,0.047856,0.04757,0.042429,0.037938,0.035485,0.029574,0.028011,0.025054,0.023436,0.020349,0.020045,0.01943,0.01807,0.015494,0.013189,0.012096,0.011087,0.01059,0.010522,0.0096768,0.0087764,0.0064733,0.0059602,0.0056936,0.0051428,0.0051392,0.0046449,0.0045866,0.0042799,0.0040473,0.0033463,0.0032546,0.0027984,0.0024273,0.0015079,0.0013762,0.0013164,0.0011711,0.0010484,0.001005,0.00092329,0.00086845,0.00080462,0.00070868,0.0007082,0.00056207,0.0005283,0.00052149,0.0005179,0.0004076,0.00040537,0.00039561,0.00038841,0.00037033,0.0003421,0.00031852,0.00023115,0.00011447,9.2381e-05,9.0637e-05,8.9219e-05,8.4772e-05,8.2389e-05,6.2718e-05,5.2288e-05,4.5758e-05,4.2449e-05,3.6257e-05,3.1679e-05,3.0891e-05,2.5512e-05,2.2875e-05,2.0008e-05,1.6106e-05,1.2063e-05,1.1841e-05,1.0728e-05,1.0015e-05,9.7095e-06,6.9603e-06,6.3492e-06,4.1611e-06,3.6964e-06,2.9963e-06,2.6759e-06,2.5794e-06,2.1095e-06,2.0552e-06,1.9409e-06,1.7122e-06,1.3459e-06 1,6.1039e-18,9.4581e-18,9.6673e-18,1.1028e-17,1.2202e-17,1.3935e-17,1.802e-17,3.3106e-17,4.8619e-17,5.157e-17,6.9905e-17,7.3457e-17,8.9421e-17,1.4399e-16,1.671e-16,1.8528e-16,2.8937e-16,3.1232e-16,3.3987e-16,4.5117e-16,4.6509e-16,4.7328e-16,5.8686e-16,6.6615e-16,6.689e-16,8.5252e-16,8.7153e-16,9.7217e-16,9.8625e-16,1.0001e-15,2.0917e-15,4.2018e-15,4.4738e-15,5.486e-15,6.578e-15,7.5711e-15,8.9424e-15,1.0846e-14,1.5212e-14,1.8312e-14,2.4728e-14,3.6013e-14,3.728e-14,4.0123e-14,4.2939e-14,6.1051e-14,6.1084e-14,1.4035e-13,1.4922e-13,1.5438e-13,1.976e-13,2.0121e-13,3.2563e-13,3.9304e-13,4.2498e-13,5.0427e-13,5.6204e-13,6.7669e-13,7.1671e-13,1.1127e-12,1.4572e-12,3.3726e-12,4.2364e-12,4.571e-12,5.2361e-12,7.5905e-12,8.1883e-12,8.7573e-12,1.1992e-11,1.6075e-11,1.791e-11,1.9563e-11,2.6908e-11,4.2477e-11,6.8407e-11,9.4045e-11,1.0051e-10,1.8119e-10,2.2176e-10,2.436e-10,2.5396e-10,3.0051e-10,5.9694e-10,6.1018e-10,6.8704e-10,8.2882e-10,8.5983e-10,1.1221e-09,2.317e-09,2.3391e-09,2.8632e-09,3.078e-09,6.9597e-09,8.5219e-09,8.6494e-09,1.0355e-08,1.3193e-08,1.3256e-08,1.3518e-08,1.5632e-08,1.5652e-08,1.7848e-08,1.8775e-08,3.8421e-08,5.2362e-08,5.291e-08,7.4917e-08,8.2182e-08,9.4785e-08,1.0157e-07,1.058e-07,1.1067e-07,1.123e-07,1.1677e-07,1.3661e-07,1.3912e-07,1.4444e-07,1.4894e-07,1.8756e-07,2.4289e-07,3.3758e-07,3.8176e-07,4.9433e-07,6.5778e-07,7.4116e-07,7.8807e-07,1.5385e-06,1.6604e-06,1.7559e-06,1.9611e-06,2.2554e-06,2.5443e-06,2.8047e-06,2.8536e-06,2.8847e-06,3.2592e-06,4.4791e-06,4.5843e-06,5.1885e-06,6.2777e-06,6.9694e-06,7.0883e-06,1.2762e-05,1.2841e-05,1.4396e-05,1.7971e-05,1.8707e-05,2.1712e-05,2.2486e-05,2.868e-05,3.3559e-05,4.7741e-05,4.8142e-05,7.1452e-05,7.4706e-05,7.5773e-05,9.7392e-05,9.8948e-05,0.00010822,0.00012168,0.00012619,0.00012972,0.00014451,0.00014711,0.00014883,0.00016204,0.00016692,0.00016822,0.00018042,0.00018501,0.00021248,0.00026659,0.0002775,0.00028047,0.00031002,0.00032306,0.00038157,0.00050867,0.00055542,0.0006376,0.00067056,0.00077047,0.00088335,0.00089321,0.00090092,0.00090182,0.0009386,0.00094178,0.0010666,0.0011288,0.001255,0.0012609,0.0012973,0.0015547,0.0015628,0.0017017,0.0018735,0.00222,0.0022696,0.0024171,0.0024513,0.0025396,0.0026942,0.0029477,0.0029549,0.0036133,0.0045218,0.0046295,0.0047514,0.00479,0.0054646,0.005921,0.0077307,0.0078378,0.0080577,0.008441,0.01001,0.011914,0.014355,0.015169,0.015674,0.017022,0.020053,0.021526,0.023575,0.027048,0.030387,0.031025,0.038586,0.039688,0.040096,0.042133,0.042967,0.050127,0.053486,0.054491,0.054593,0.056755,0.05978,0.061225,0.061878,0.074251,0.074268,0.087038,0.10368,0.12112,0.13906,0.14739,0.14963,0.15497,0.15974,0.17141,0.17273,0.19697,0.20344,0.21683,0.23424,0.24522,0.24648,0.25567,0.26195,0.27776,0.30229,0.30465,0.31585,0.33397,0.34907,0.34979,0.40445,0.41372,0.41821,0.42979,0.43585,0.44547,0.46094,0.46723,0.47604,0.49033,0.50897,0.52691,0.52873,0.5508,0.56539,0.57827,0.6076,0.62099,0.62585,0.64306,0.6441,0.65162,0.65494,0.69837,0.70935,0.7136,0.7328,0.74379,0.74545,0.77062,0.81668,0.82972,0.83631,0.85128,0.85255,0.86867,0.87039,0.88996,0.90085,0.92121,0.92296,0.92457,0.92547,0.92837,0.9307,0.93211,0.94609,0.94883,0.97142,0.97759,0.98127,0.98264,0.99202,0.99215,0.99444,0.99538,0.99878,0.99885,0.99901,0.99995,1,0.99999,0.9999,0.99963,0.9992,0.99892,0.99381,0.99356,0.98917,0.9805,0.97012,0.95227,0.95199,0.94472,0.9349,0.92087,0.92071,0.91557,0.88961,0.88318,0.88246,0.84762,0.83953,0.83481,0.81996,0.80485,0.77606,0.77145,0.74888,0.69672,0.69601,0.69166,0.68274,0.67572,0.66704,0.65677,0.56074,0.53578,0.49802,0.47049,0.46914,0.46606,0.42625,0.41717,0.41642,0.38023,0.32288,0.32114,0.30528,0.30206,0.26767,0.2585,0.23921,0.22953,0.21915,0.21716,0.20533,0.20329,0.20233,0.17742,0.17042,0.16754,0.15841,0.15561,0.14326,0.14055,0.13521,0.12258,0.12246,0.11673,0.11484,0.11484,0.10309,0.10273,0.098191,0.093568,0.08409,0.076225,0.070956,0.063191,0.056645,0.049003,0.048712,0.043467,0.038882,0.036377,0.030338,0.02874,0.025717,0.024061,0.020902,0.020591,0.019961,0.018569,0.01593,0.013568,0.012447,0.011411,0.010902,0.010832,0.0099643,0.0090399,0.0066739,0.0061464,0.0058723,0.0053058,0.0053021,0.0047936,0.0047335,0.004418,0.0041785,0.0034567,0.0033622,0.0028922,0.0025097,0.0015611,0.001425,0.0013633,0.0012132,0.0010864,0.0010416,0.00095708,0.00090037,0.00083436,0.00073511,0.00073461,0.00058337,0.0005484,0.00054136,0.00053764,0.00042338,0.00042107,0.00041096,0.0004035,0.00038476,0.0003555,0.00033105,0.00024042,0.00011925,9.6291e-05,9.4476e-05,9.3001e-05,8.8376e-05,8.5898e-05,6.5428e-05,5.4569e-05,4.7768e-05,4.4321e-05,3.7868e-05,3.3096e-05,3.2274e-05,2.6665e-05,2.3915e-05,2.0923e-05,1.685e-05,1.2628e-05,1.2396e-05,1.1233e-05,1.0488e-05,1.0169e-05,7.2943e-06,6.655e-06,4.3651e-06,3.8785e-06,3.1453e-06,2.8095e-06,2.7084e-06,2.2158e-06,2.1588e-06,2.0391e-06,1.7992e-06,1.4149e-06 1,5.9209e-18,9.1761e-18,9.3792e-18,1.07e-17,1.1839e-17,1.3521e-17,1.7487e-17,3.2135e-17,4.72e-17,5.0065e-17,6.7874e-17,7.1324e-17,8.6831e-17,1.3984e-16,1.623e-16,1.7997e-16,2.8113e-16,3.0343e-16,3.3021e-16,4.3839e-16,4.5191e-16,4.5988e-16,5.703e-16,6.4738e-16,6.5005e-16,8.2859e-16,8.4707e-16,9.4493e-16,9.5861e-16,9.7211e-16,2.0337e-15,4.0866e-15,4.3512e-15,5.3361e-15,6.3987e-15,7.3652e-15,8.6998e-15,1.0553e-14,1.4803e-14,1.7821e-14,2.4068e-14,3.5058e-14,3.6291e-14,3.906e-14,4.1803e-14,5.9444e-14,5.9476e-14,1.3671e-13,1.4535e-13,1.5038e-13,1.925e-13,1.9602e-13,3.173e-13,3.8301e-13,4.1415e-13,4.9146e-13,5.478e-13,6.5959e-13,6.9862e-13,1.0848e-12,1.4209e-12,3.2898e-12,4.1328e-12,4.4595e-12,5.1087e-12,7.407e-12,7.9907e-12,8.5462e-12,1.1705e-11,1.5693e-11,1.7484e-11,1.9099e-11,2.6274e-11,4.1485e-11,6.6825e-11,9.1886e-11,9.8206e-11,1.7709e-10,2.1676e-10,2.3812e-10,2.4825e-10,2.9378e-10,5.8378e-10,5.9674e-10,6.7195e-10,8.1069e-10,8.4104e-10,1.0978e-09,2.2676e-09,2.2892e-09,2.8025e-09,3.0128e-09,6.8154e-09,8.3462e-09,8.4711e-09,1.0142e-08,1.2924e-08,1.2986e-08,1.3243e-08,1.5315e-08,1.5335e-08,1.7487e-08,1.8396e-08,3.7661e-08,5.1335e-08,5.1874e-08,7.3464e-08,8.0593e-08,9.296e-08,9.9621e-08,1.0377e-07,1.0854e-07,1.1015e-07,1.1454e-07,1.3401e-07,1.3648e-07,1.4169e-07,1.4611e-07,1.8402e-07,2.3835e-07,3.3133e-07,3.7473e-07,4.8531e-07,6.4589e-07,7.2781e-07,7.7391e-07,1.5115e-06,1.6314e-06,1.7253e-06,1.9271e-06,2.2165e-06,2.5005e-06,2.7566e-06,2.8047e-06,2.8353e-06,3.2037e-06,4.4037e-06,4.5072e-06,5.1017e-06,6.1735e-06,6.8542e-06,6.9713e-06,1.2556e-05,1.2634e-05,1.4166e-05,1.7686e-05,1.8411e-05,2.1371e-05,2.2133e-05,2.8235e-05,3.3042e-05,4.7018e-05,4.7413e-05,7.0392e-05,7.36e-05,7.4653e-05,9.5971e-05,9.7505e-05,0.00010665,0.00011992,0.00012438,0.00012785,0.00014245,0.00014501,0.00014671,0.00015974,0.00016456,0.00016584,0.00017788,0.00018241,0.00020951,0.00026292,0.00027368,0.00027662,0.00030578,0.00031866,0.00037643,0.00050194,0.00054811,0.00062929,0.00066185,0.00076056,0.00087209,0.00088183,0.00088946,0.00089034,0.00092669,0.00092983,0.0010532,0.0011147,0.0012394,0.0012452,0.0012812,0.0015357,0.0015437,0.0016811,0.0018509,0.0021936,0.0022427,0.0023886,0.0024224,0.0025098,0.0026627,0.0029135,0.0029207,0.0035721,0.0044712,0.0045778,0.0046986,0.0047367,0.0054046,0.0058565,0.0076486,0.0077547,0.0079725,0.0083523,0.0099068,0.011794,0.014212,0.01502,0.01552,0.016857,0.019862,0.021323,0.023355,0.0268,0.030114,0.030747,0.038251,0.039344,0.03975,0.041772,0.042599,0.049709,0.053045,0.054043,0.054145,0.056292,0.059296,0.060732,0.06138,0.073675,0.073691,0.086383,0.10292,0.12027,0.13811,0.14641,0.14864,0.15395,0.1587,0.17031,0.17162,0.19576,0.20221,0.21554,0.23288,0.24382,0.24507,0.25423,0.26048,0.27624,0.30069,0.30305,0.31422,0.33228,0.34734,0.34806,0.40259,0.41185,0.41632,0.42788,0.43394,0.44354,0.45898,0.46526,0.47406,0.48833,0.50695,0.52487,0.5267,0.54874,0.56332,0.5762,0.60553,0.61892,0.62378,0.641,0.64204,0.64956,0.65288,0.69635,0.70734,0.71159,0.73082,0.74184,0.7435,0.76871,0.81491,0.82799,0.8346,0.84963,0.8509,0.86709,0.86882,0.88849,0.89943,0.91993,0.92169,0.92332,0.92422,0.92715,0.92949,0.93091,0.94501,0.94777,0.97062,0.97687,0.98061,0.982,0.99159,0.99172,0.99408,0.99505,0.99861,0.99868,0.99886,0.99991,0.99999,1,0.99995,0.99972,0.99933,0.99907,0.99419,0.99394,0.98966,0.98116,0.97094,0.95329,0.95301,0.9458,0.93607,0.92214,0.92198,0.91688,0.89108,0.88468,0.88397,0.84928,0.84123,0.83652,0.82173,0.80666,0.77795,0.77335,0.75083,0.69874,0.69804,0.69369,0.68478,0.67777,0.66909,0.65883,0.56281,0.53783,0.50004,0.47246,0.47112,0.46802,0.42815,0.41906,0.41831,0.38204,0.32454,0.3228,0.30689,0.30366,0.26915,0.25996,0.24059,0.23088,0.22045,0.21846,0.20658,0.20454,0.20357,0.17855,0.17152,0.16862,0.15945,0.15664,0.14423,0.1415,0.13613,0.12344,0.12332,0.11756,0.11566,0.11566,0.10384,0.10349,0.098916,0.094266,0.084731,0.076818,0.071516,0.063701,0.057111,0.049416,0.049123,0.04384,0.039221,0.036698,0.030613,0.029002,0.025955,0.024287,0.021102,0.020788,0.020153,0.018749,0.016087,0.013704,0.012573,0.011528,0.011014,0.010944,0.010068,0.0091351,0.0067464,0.0062138,0.0059369,0.0053648,0.0053611,0.0048474,0.0047868,0.004468,0.0042261,0.0034966,0.0034012,0.0029262,0.0025395,0.0015803,0.0014428,0.0013804,0.0012285,0.0011002,0.0010548,0.00096935,0.00091196,0.00084517,0.00074471,0.00074421,0.00059111,0.00055571,0.00054858,0.00054481,0.00042912,0.00042678,0.00041654,0.00040899,0.00039001,0.00036037,0.00033561,0.0002438,0.000121,9.7716e-05,9.5876e-05,9.4381e-05,8.969e-05,8.7177e-05,6.6417e-05,5.5402e-05,4.8502e-05,4.5004e-05,3.8457e-05,3.3614e-05,3.278e-05,2.7087e-05,2.4295e-05,2.1258e-05,1.7122e-05,1.2835e-05,1.2599e-05,1.1418e-05,1.0661e-05,1.0337e-05,7.4166e-06,6.767e-06,4.4399e-06,3.9452e-06,3.1998e-06,2.8585e-06,2.7556e-06,2.2548e-06,2.1969e-06,2.075e-06,1.8311e-06,1.4402e-06 1,5.3965e-18,8.3676e-18,8.553e-18,9.7586e-18,1.08e-17,1.2336e-17,1.5959e-17,2.9347e-17,4.3125e-17,4.5746e-17,6.2041e-17,6.5199e-17,7.9393e-17,1.2794e-16,1.4851e-16,1.647e-16,2.5741e-16,2.7786e-16,3.0241e-16,4.0163e-16,4.1404e-16,4.2134e-16,5.2265e-16,5.9338e-16,5.9584e-16,7.5971e-16,7.7668e-16,8.6653e-16,8.7909e-16,8.9149e-16,1.8668e-15,3.7544e-15,3.9979e-15,4.9041e-15,5.8821e-15,6.7717e-15,8.0005e-15,9.7069e-15,1.3622e-14,1.6404e-14,2.2163e-14,3.2298e-14,3.3436e-14,3.5991e-14,3.8522e-14,5.4804e-14,5.4834e-14,1.2618e-13,1.3417e-13,1.3882e-13,1.7775e-13,1.8101e-13,2.9319e-13,3.5401e-13,3.8283e-13,4.544e-13,5.0656e-13,6.101e-13,6.4625e-13,1.0041e-12,1.3157e-12,3.0499e-12,3.8327e-12,4.136e-12,4.7391e-12,6.8749e-12,7.4174e-12,7.9339e-12,1.0871e-11,1.4581e-11,1.6248e-11,1.7751e-11,2.4431e-11,3.8603e-11,6.2227e-11,8.5605e-11,9.1503e-11,1.6515e-10,2.0221e-10,2.2217e-10,2.3164e-10,2.7419e-10,5.4545e-10,5.5758e-10,6.2797e-10,7.5786e-10,7.8628e-10,1.0267e-09,2.1233e-09,2.1437e-09,2.6251e-09,2.8225e-09,6.3937e-09,7.8324e-09,7.9499e-09,9.521e-09,1.2138e-08,1.2196e-08,1.2437e-08,1.4387e-08,1.4406e-08,1.6431e-08,1.7287e-08,3.5436e-08,4.8329e-08,4.8837e-08,6.9207e-08,7.5935e-08,8.761e-08,9.39e-08,9.7814e-08,1.0233e-07,1.0384e-07,1.0799e-07,1.2638e-07,1.2871e-07,1.3364e-07,1.3782e-07,1.7365e-07,2.2503e-07,3.1301e-07,3.5409e-07,4.588e-07,6.1095e-07,6.886e-07,7.323e-07,1.4322e-06,1.546e-06,1.6352e-06,1.8268e-06,2.1017e-06,2.3716e-06,2.615e-06,2.6608e-06,2.6899e-06,3.0401e-06,4.1817e-06,4.2802e-06,4.846e-06,5.8664e-06,6.5147e-06,6.6262e-06,1.195e-05,1.2024e-05,1.3485e-05,1.6845e-05,1.7537e-05,2.0363e-05,2.1091e-05,2.692e-05,3.1514e-05,4.4881e-05,4.5259e-05,6.7257e-05,7.033e-05,7.1338e-05,9.1765e-05,9.3235e-05,0.000102,0.00011473,0.000119,0.00012233,0.00013634,0.0001388,0.00014042,0.00015293,0.00015755,0.00015878,0.00017034,0.00017469,0.00020072,0.00025203,0.00026237,0.00026519,0.00029323,0.00030561,0.00036117,0.00048196,0.00052642,0.00060461,0.00063598,0.00073111,0.00083864,0.00084803,0.00085538,0.00085624,0.00089129,0.00089432,0.0010133,0.0010727,0.001193,0.0011987,0.0012334,0.0014791,0.0014869,0.0016196,0.0017837,0.002115,0.0021625,0.0023036,0.0023363,0.0024209,0.0025688,0.0028116,0.0028185,0.0034492,0.0043205,0.0044239,0.0045409,0.0045779,0.0052256,0.005664,0.0074037,0.0075068,0.0077183,0.0080872,0.009598,0.011433,0.013787,0.014573,0.01506,0.016362,0.019291,0.020715,0.022697,0.026059,0.029294,0.029912,0.037245,0.038314,0.038711,0.040688,0.041498,0.048455,0.051721,0.052698,0.052798,0.054901,0.057844,0.059251,0.059887,0.07194,0.071956,0.084411,0.10066,0.11772,0.13528,0.14344,0.14564,0.15087,0.15556,0.167,0.16829,0.19211,0.19847,0.21163,0.22877,0.23958,0.24082,0.24987,0.25606,0.27165,0.29586,0.2982,0.30926,0.32717,0.34211,0.34282,0.39696,0.40616,0.4106,0.4221,0.42812,0.43767,0.45303,0.45928,0.46805,0.48225,0.50081,0.51868,0.5205,0.54249,0.55705,0.56991,0.59922,0.61261,0.61747,0.6347,0.63574,0.64328,0.6466,0.69018,0.70121,0.70547,0.72478,0.73586,0.73753,0.76289,0.80945,0.82267,0.82935,0.84455,0.84583,0.86224,0.86399,0.88396,0.89509,0.91598,0.91777,0.91944,0.92036,0.92335,0.92575,0.9272,0.94166,0.9445,0.9681,0.97462,0.97854,0.98,0.99019,0.99034,0.9929,0.99396,0.998,0.99809,0.9983,0.99973,0.9999,0.99995,1,0.99991,0.99966,0.99946,0.99525,0.99503,0.99109,0.9831,0.97334,0.95631,0.95604,0.94904,0.93957,0.92596,0.92581,0.92081,0.89549,0.8892,0.8885,0.8543,0.84634,0.84169,0.82706,0.81213,0.78366,0.7791,0.75672,0.70489,0.70418,0.69985,0.69097,0.68398,0.67533,0.66508,0.56909,0.54407,0.50617,0.4785,0.47715,0.47404,0.43397,0.42483,0.42407,0.38757,0.32963,0.32787,0.31182,0.30856,0.27372,0.26442,0.24484,0.23502,0.22447,0.22245,0.21042,0.20835,0.20737,0.18203,0.17489,0.17196,0.16266,0.1598,0.1472,0.14443,0.13899,0.12608,0.12597,0.12011,0.11818,0.11818,0.10616,0.1058,0.10115,0.096417,0.086708,0.078646,0.073242,0.065272,0.058547,0.050691,0.050391,0.044994,0.040272,0.037691,0.031465,0.029815,0.026694,0.024985,0.02172,0.021397,0.020746,0.019307,0.016574,0.014128,0.012966,0.011892,0.011363,0.011291,0.01039,0.0094306,0.0069717,0.006423,0.0061378,0.0055481,0.0055442,0.0050147,0.0049521,0.0046233,0.0043738,0.003621,0.0035225,0.0030319,0.0026324,0.0016404,0.001498,0.0014334,0.0012761,0.0011433,0.0010962,0.0010076,0.00094812,0.00087886,0.00077467,0.00077415,0.00061528,0.00057853,0.00057112,0.00056721,0.00044704,0.00044461,0.00043398,0.00042613,0.0004064,0.0003756,0.00034986,0.00025436,0.00012646,0.00010218,0.00010026,9.87e-05,9.3807e-05,9.1185e-05,6.9515e-05,5.8011e-05,5.0802e-05,4.7146e-05,4.0302e-05,3.5238e-05,3.4365e-05,2.8409e-05,2.5488e-05,2.2308e-05,1.7977e-05,1.3484e-05,1.3237e-05,1.1998e-05,1.1204e-05,1.0865e-05,7.8009e-06,7.1191e-06,4.6751e-06,4.1552e-06,3.3716e-06,3.0127e-06,2.9045e-06,2.3776e-06,2.3166e-06,2.1884e-06,1.9317e-06,1.52e-06 1,4.7865e-18,7.4267e-18,7.5915e-18,8.6633e-18,9.5889e-18,1.0955e-17,1.4178e-17,2.6097e-17,3.8372e-17,4.0708e-17,5.5235e-17,5.805e-17,7.071e-17,1.1403e-16,1.324e-16,1.4685e-16,2.2968e-16,2.4796e-16,2.699e-16,3.5862e-16,3.6972e-16,3.7625e-16,4.6688e-16,5.3017e-16,5.3236e-16,6.7905e-16,6.9424e-16,7.7468e-16,7.8594e-16,7.9703e-16,1.671e-15,3.3645e-15,3.5831e-15,4.3967e-15,5.2751e-15,6.0744e-15,7.1787e-15,8.7126e-15,1.2234e-14,1.4736e-14,1.992e-14,2.9049e-14,3.0074e-14,3.2376e-14,3.4657e-14,4.9335e-14,4.9362e-14,1.1375e-13,1.2097e-13,1.2516e-13,1.6034e-13,1.6329e-13,2.6471e-13,3.1972e-13,3.458e-13,4.1057e-13,4.5779e-13,5.5154e-13,5.8429e-13,9.0858e-13,1.191e-12,2.7653e-12,3.4764e-12,3.7522e-12,4.3003e-12,6.2427e-12,6.7363e-12,7.2062e-12,9.8801e-12,1.3259e-11,1.4778e-11,1.6148e-11,2.2238e-11,3.5168e-11,5.6744e-11,7.8111e-11,8.3503e-11,1.5089e-10,1.8482e-10,2.0311e-10,2.1178e-10,2.5077e-10,4.9956e-10,5.1069e-10,5.7531e-10,6.9457e-10,7.2068e-10,9.4159e-10,1.9502e-09,1.969e-09,2.4122e-09,2.594e-09,5.8864e-09,7.2142e-09,7.3227e-09,8.7733e-09,1.1191e-08,1.1245e-08,1.1467e-08,1.327e-08,1.3287e-08,1.516e-08,1.5951e-08,3.275e-08,4.4698e-08,4.5168e-08,6.406e-08,7.0303e-08,8.114e-08,8.698e-08,9.0614e-08,9.4804e-08,9.621e-08,1.0006e-07,1.1715e-07,1.1932e-07,1.2389e-07,1.2778e-07,1.6109e-07,2.0888e-07,2.9078e-07,3.2904e-07,4.2662e-07,5.6851e-07,6.4096e-07,6.8175e-07,1.3356e-06,1.442e-06,1.5254e-06,1.7047e-06,1.9619e-06,2.2146e-06,2.4425e-06,2.4854e-06,2.5126e-06,2.8407e-06,3.9107e-06,4.0031e-06,4.5338e-06,5.4914e-06,6.0999e-06,6.2047e-06,1.1208e-05,1.1278e-05,1.2652e-05,1.5815e-05,1.6466e-05,1.9128e-05,1.9814e-05,2.5308e-05,2.9641e-05,4.2258e-05,4.2615e-05,6.3403e-05,6.6309e-05,6.7262e-05,8.6589e-05,8.7982e-05,9.6278e-05,0.00010833,0.00011238,0.00011554,0.00012881,0.00013114,0.00013268,0.00014454,0.00014892,0.00015009,0.00016105,0.00016518,0.00018987,0.00023859,0.00024841,0.00025109,0.00027773,0.00028949,0.00034232,0.00045726,0.00049959,0.00057407,0.00060396,0.00069464,0.00079719,0.00080615,0.00081317,0.00081398,0.00084743,0.00085032,0.0009639,0.0010206,0.0011355,0.0011409,0.0011741,0.0014089,0.0014164,0.0015433,0.0017003,0.0020174,0.0020629,0.002198,0.0022293,0.0023103,0.0024521,0.0026848,0.0026914,0.0032963,0.0041327,0.004232,0.0043444,0.0043799,0.0050023,0.0054238,0.0070979,0.0071971,0.0074008,0.0077561,0.0092119,0.010981,0.013254,0.014013,0.014484,0.015742,0.018574,0.019952,0.021871,0.025128,0.028264,0.028863,0.03598,0.037018,0.037403,0.039324,0.040111,0.046875,0.050052,0.051003,0.0511,0.053147,0.056013,0.057383,0.058001,0.069749,0.069765,0.081918,0.097793,0.11448,0.13168,0.13968,0.14183,0.14697,0.15156,0.16279,0.16406,0.18746,0.19371,0.20666,0.22353,0.23418,0.2354,0.24432,0.25042,0.2658,0.2897,0.292,0.30293,0.32063,0.33541,0.33611,0.38974,0.39886,0.40327,0.41467,0.42065,0.43013,0.44539,0.45161,0.46032,0.47445,0.49292,0.51071,0.51252,0.53444,0.54896,0.56179,0.59107,0.60446,0.60932,0.62656,0.6276,0.63515,0.63847,0.68217,0.69325,0.69753,0.71694,0.72808,0.72976,0.75532,0.80234,0.81571,0.82248,0.8379,0.83921,0.85587,0.85766,0.878,0.88936,0.91076,0.91259,0.9143,0.91525,0.91832,0.92079,0.92228,0.93719,0.94013,0.96471,0.97156,0.97572,0.97727,0.98823,0.9884,0.99122,0.9924,0.99706,0.99718,0.99743,0.99932,0.99963,0.99972,0.99991,1,0.99992,0.99981,0.99647,0.99627,0.99279,0.98545,0.9763,0.96007,0.95981,0.95309,0.94395,0.93077,0.93062,0.92577,0.90108,0.89493,0.89425,0.86069,0.85286,0.84828,0.83386,0.81913,0.79098,0.78646,0.76429,0.71279,0.71209,0.70778,0.69894,0.69198,0.68336,0.67315,0.57722,0.55215,0.51413,0.48633,0.48497,0.48185,0.44154,0.43233,0.43157,0.39477,0.33627,0.33449,0.31826,0.31496,0.27968,0.27026,0.2504,0.24043,0.22972,0.22767,0.21546,0.21335,0.21236,0.18658,0.17932,0.17633,0.16686,0.16396,0.15111,0.14829,0.14273,0.12957,0.12945,0.12347,0.1215,0.12149,0.10922,0.10885,0.10409,0.099253,0.089316,0.08106,0.075521,0.067348,0.060447,0.052378,0.052069,0.046521,0.041664,0.039007,0.032594,0.030894,0.027675,0.025911,0.022541,0.022208,0.021535,0.020048,0.017223,0.014692,0.013489,0.012376,0.011829,0.011753,0.01082,0.009825,0.0072727,0.0067026,0.0064062,0.0057932,0.0057892,0.0052384,0.0051733,0.0048312,0.0045715,0.0037876,0.0036849,0.0031736,0.002757,0.0017212,0.0015723,0.0015047,0.0013402,0.0012011,0.0011519,0.0010591,0.00099679,0.00092423,0.00081503,0.00081448,0.00064786,0.00060929,0.00060152,0.00059742,0.00047124,0.00046868,0.00045751,0.00044926,0.00042854,0.00039616,0.00036909,0.00026863,0.00013386,0.00010823,0.0001062,0.00010456,9.9388e-05,9.6619e-05,7.372e-05,6.1554e-05,5.3926e-05,5.0057e-05,4.2811e-05,3.7446e-05,3.6522e-05,3.0209e-05,2.7111e-05,2.3738e-05,1.9141e-05,1.4369e-05,1.4106e-05,1.279e-05,1.1946e-05,1.1585e-05,8.3257e-06,7.5999e-06,4.9965e-06,4.4424e-06,3.6066e-06,3.2236e-06,3.1082e-06,2.5457e-06,2.4805e-06,2.3436e-06,2.0694e-06,1.6294e-06 1,4.2727e-18,6.6337e-18,6.7811e-18,7.74e-18,8.5681e-18,9.7907e-18,1.2676e-17,2.3352e-17,3.4356e-17,3.6451e-17,4.948e-17,5.2006e-17,6.3367e-17,1.0226e-16,1.1876e-16,1.3174e-16,2.0619e-16,2.2262e-16,2.4236e-16,3.2215e-16,3.3214e-16,3.3802e-16,4.1957e-16,4.7654e-16,4.7852e-16,6.1059e-16,6.2427e-16,6.9673e-16,7.0686e-16,7.1686e-16,1.5046e-15,3.0328e-15,3.2301e-15,3.9649e-15,4.7584e-15,5.4806e-15,6.4786e-15,7.8653e-15,1.105e-14,1.3314e-14,1.8007e-14,2.6274e-14,2.7203e-14,2.9289e-14,3.1355e-14,4.4661e-14,4.4685e-14,1.0312e-13,1.0967e-13,1.1348e-13,1.4543e-13,1.4811e-13,2.4029e-13,2.9032e-13,3.1404e-13,3.7297e-13,4.1595e-13,5.0129e-13,5.311e-13,8.2649e-13,1.0839e-12,2.5203e-12,3.1697e-12,3.4215e-12,3.9223e-12,5.6977e-12,6.1491e-12,6.5788e-12,9.0249e-12,1.2118e-11,1.3509e-11,1.4763e-11,2.0343e-11,3.2198e-11,5.1998e-11,7.162e-11,7.6574e-11,1.3852e-10,1.6974e-10,1.8656e-10,1.9454e-10,2.3044e-10,4.5967e-10,4.6993e-10,5.2951e-10,6.3952e-10,6.636e-10,8.6746e-10,1.7993e-09,1.8166e-09,2.2265e-09,2.3946e-09,5.4431e-09,6.6738e-09,6.7743e-09,8.1193e-09,1.0362e-08,1.0412e-08,1.0619e-08,1.2291e-08,1.2307e-08,1.4046e-08,1.478e-08,3.0394e-08,4.151e-08,4.1948e-08,5.9538e-08,6.5354e-08,7.5452e-08,8.0895e-08,8.4282e-08,8.8189e-08,8.95e-08,9.3093e-08,1.0903e-07,1.1105e-07,1.1532e-07,1.1894e-07,1.5003e-07,1.9465e-07,2.7118e-07,3.0695e-07,3.9822e-07,5.3102e-07,5.9887e-07,6.3707e-07,1.2501e-06,1.3499e-06,1.4282e-06,1.5965e-06,1.8381e-06,2.0754e-06,2.2896e-06,2.3298e-06,2.3554e-06,2.6638e-06,3.6702e-06,3.7571e-06,4.2565e-06,5.1581e-06,5.7313e-06,5.8299e-06,1.0547e-05,1.0613e-05,1.191e-05,1.4897e-05,1.5512e-05,1.8027e-05,1.8675e-05,2.3869e-05,2.7968e-05,3.9912e-05,4.0251e-05,5.9954e-05,6.2709e-05,6.3613e-05,8.1953e-05,8.3274e-05,9.1151e-05,0.0001026,0.00010645,0.00010945,0.00012206,0.00012427,0.00012574,0.00013701,0.00014118,0.00014228,0.00015271,0.00015663,0.00018013,0.0002265,0.00023586,0.00023841,0.00026379,0.000275,0.00032535,0.000435,0.0004754,0.00054653,0.00057508,0.00066173,0.00075978,0.00076835,0.00077505,0.00077584,0.00080782,0.00081059,0.00091925,0.00097349,0.0010835,0.0010887,0.0011205,0.0013454,0.0013526,0.0014742,0.0016247,0.0019289,0.0019726,0.0021023,0.0021323,0.0022101,0.0023462,0.0025697,0.0025761,0.0031575,0.003962,0.0040576,0.0041658,0.0042,0.0047993,0.0052053,0.0068192,0.0069149,0.0071115,0.0074543,0.0088597,0.010569,0.012767,0.013501,0.013957,0.015175,0.017918,0.019254,0.021114,0.024274,0.027319,0.027901,0.034817,0.035827,0.036202,0.03807,0.038836,0.045421,0.048516,0.049442,0.049537,0.051532,0.054325,0.055662,0.056265,0.067728,0.067744,0.079617,0.095143,0.11148,0.12834,0.13619,0.13831,0.14334,0.14785,0.15888,0.16013,0.18313,0.18929,0.20203,0.21865,0.22914,0.23035,0.23915,0.24516,0.26034,0.28394,0.28621,0.29702,0.31452,0.32914,0.32984,0.38297,0.39201,0.39639,0.40771,0.41364,0.42306,0.43822,0.44439,0.45305,0.4671,0.48548,0.5032,0.505,0.52685,0.54133,0.55413,0.58337,0.59675,0.60161,0.61886,0.6199,0.62746,0.63079,0.67458,0.68569,0.69,0.70949,0.72069,0.72238,0.7481,0.79554,0.80906,0.81591,0.83153,0.83285,0.84976,0.85157,0.87225,0.88383,0.90569,0.90758,0.90933,0.9103,0.91345,0.91598,0.91751,0.93284,0.93587,0.96135,0.96853,0.97289,0.97453,0.98623,0.9864,0.98946,0.99077,0.99601,0.99614,0.99644,0.99877,0.9992,0.99933,0.99966,0.99992,1,0.99998,0.99745,0.99729,0.99423,0.98752,0.97894,0.96348,0.96323,0.95677,0.94796,0.93519,0.93504,0.93032,0.90625,0.90023,0.89956,0.86663,0.85893,0.85442,0.8402,0.82567,0.79783,0.79336,0.77138,0.72023,0.71953,0.71524,0.70644,0.6995,0.69092,0.68074,0.58491,0.5598,0.52168,0.49376,0.4924,0.48926,0.44873,0.43946,0.4387,0.40164,0.3426,0.34081,0.32441,0.32108,0.28539,0.27585,0.25573,0.24563,0.23476,0.23269,0.22029,0.21815,0.21714,0.19096,0.18358,0.18054,0.17091,0.16795,0.15488,0.15201,0.14635,0.13293,0.13281,0.12671,0.1247,0.1247,0.11217,0.11179,0.10694,0.10199,0.091838,0.083395,0.077727,0.06936,0.062289,0.054015,0.053698,0.048004,0.043016,0.040287,0.033693,0.031944,0.028631,0.026814,0.023341,0.022998,0.022305,0.020771,0.017857,0.015243,0.014,0.01285,0.012284,0.012206,0.011241,0.010211,0.0075679,0.006977,0.0066697,0.0060339,0.0060297,0.0054582,0.0053906,0.0050355,0.0047658,0.0039514,0.0038447,0.0033131,0.0028797,0.0018009,0.0016456,0.0015751,0.0014035,0.0012583,0.0012069,0.00111,0.0010449,0.00096911,0.00085497,0.00085439,0.00068013,0.00063977,0.00063163,0.00062734,0.00049522,0.00049255,0.00048084,0.0004722,0.00045049,0.00041656,0.00038819,0.00028281,0.00014123,0.00011426,0.00011213,0.00011039,0.00010495,0.00010204,7.7915e-05,6.509e-05,5.7046e-05,5.2965e-05,4.5317e-05,3.9654e-05,3.8677e-05,3.2009e-05,2.8735e-05,2.5169e-05,2.0307e-05,1.5256e-05,1.4978e-05,1.3584e-05,1.269e-05,1.2307e-05,8.8526e-06,8.0828e-06,5.3198e-06,4.7312e-06,3.8432e-06,3.436e-06,3.3133e-06,2.715e-06,2.6457e-06,2.5e-06,2.2082e-06,1.7397e-06 1,4.0277e-18,6.2553e-18,6.3944e-18,7.2993e-18,8.0809e-18,9.2349e-18,1.1959e-17,2.2041e-17,3.2436e-17,3.4415e-17,4.6728e-17,4.9116e-17,5.9854e-17,9.6627e-17,1.1223e-16,1.2451e-16,1.9494e-16,2.1048e-16,2.2916e-16,3.0468e-16,3.1413e-16,3.1969e-16,3.9689e-16,4.5083e-16,4.527e-16,5.7776e-16,5.9071e-16,6.5933e-16,6.6893e-16,6.7839e-16,1.4247e-15,2.8734e-15,3.0605e-15,3.7573e-15,4.5099e-15,5.195e-15,6.1418e-15,7.4577e-15,1.048e-14,1.263e-14,1.7085e-14,2.4937e-14,2.582e-14,2.7801e-14,2.9764e-14,4.2407e-14,4.243e-14,9.7982e-14,1.0421e-13,1.0784e-13,1.3823e-13,1.4077e-13,2.2849e-13,2.7612e-13,2.9869e-13,3.548e-13,3.9572e-13,4.7698e-13,5.0537e-13,7.8676e-13,1.0321e-12,2.4015e-12,3.021e-12,3.2612e-12,3.739e-12,5.4333e-12,5.8641e-12,6.2743e-12,8.6097e-12,1.1564e-11,1.2892e-11,1.4091e-11,1.9422e-11,3.0754e-11,4.9688e-11,6.8459e-11,7.3199e-11,1.3249e-10,1.6238e-10,1.785e-10,1.8614e-10,2.2052e-10,4.4019e-10,4.5002e-10,5.0714e-10,6.1261e-10,6.3571e-10,8.3123e-10,1.7255e-09,1.7421e-09,2.1356e-09,2.297e-09,5.2258e-09,6.4087e-09,6.5053e-09,7.7985e-09,9.9551e-09,1.0003e-08,1.0202e-08,1.1811e-08,1.1826e-08,1.3499e-08,1.4205e-08,2.9235e-08,3.9941e-08,4.0364e-08,5.7313e-08,6.2918e-08,7.2651e-08,7.7898e-08,8.1164e-08,8.4931e-08,8.6194e-08,8.9659e-08,1.0503e-07,1.0697e-07,1.1109e-07,1.1458e-07,1.4457e-07,1.8763e-07,2.6151e-07,2.9605e-07,3.8419e-07,5.125e-07,5.7806e-07,6.1498e-07,1.2078e-06,1.3044e-06,1.3801e-06,1.5429e-06,1.7767e-06,2.0065e-06,2.2138e-06,2.2528e-06,2.2775e-06,2.5762e-06,3.5509e-06,3.6351e-06,4.119e-06,4.9927e-06,5.5483e-06,5.6439e-06,1.0219e-05,1.0283e-05,1.1542e-05,1.444e-05,1.5037e-05,1.7479e-05,1.8108e-05,2.3152e-05,2.7135e-05,3.8743e-05,3.9072e-05,5.8232e-05,6.0913e-05,6.1793e-05,7.9638e-05,8.0924e-05,8.859e-05,9.9737e-05,0.00010348,0.0001064,0.00011868,0.00012084,0.00012226,0.00013324,0.0001373,0.00013838,0.00014854,0.00015236,0.00017525,0.00022046,0.00022958,0.00023207,0.00025681,0.00026774,0.00031685,0.00042383,0.00046327,0.00053271,0.00056059,0.00064521,0.00074099,0.00074936,0.00075591,0.00075668,0.00078793,0.00079063,0.00089682,0.00094983,0.0010574,0.0010624,0.0010935,0.0013135,0.0013205,0.0014394,0.0015867,0.0018844,0.0019271,0.0020541,0.0020835,0.0021596,0.0022929,0.0025117,0.0025179,0.0030875,0.0038759,0.0039696,0.0040756,0.0041092,0.0046968,0.005095,0.0066784,0.0067723,0.0069652,0.0073017,0.0086815,0.010361,0.01252,0.013242,0.01369,0.014887,0.017585,0.0189,0.02073,0.02384,0.026838,0.027412,0.034226,0.035221,0.035591,0.037432,0.038187,0.04468,0.047733,0.048647,0.048741,0.050709,0.053466,0.054784,0.055379,0.066697,0.066713,0.078441,0.093788,0.10995,0.12663,0.1344,0.1365,0.14149,0.14595,0.15688,0.15812,0.18092,0.18702,0.19966,0.21614,0.22656,0.22775,0.23649,0.24246,0.25753,0.28097,0.28324,0.29397,0.31137,0.32591,0.3266,0.37947,0.38848,0.39284,0.40411,0.41002,0.4194,0.43451,0.44066,0.4493,0.4633,0.48164,0.49931,0.50111,0.52292,0.53737,0.55016,0.57937,0.59275,0.59761,0.61486,0.6159,0.62346,0.62679,0.67062,0.68176,0.68607,0.70561,0.71684,0.71853,0.74433,0.79198,0.80557,0.81246,0.82818,0.82951,0.84655,0.84837,0.86923,0.88092,0.90302,0.90492,0.90669,0.90768,0.91086,0.91343,0.91498,0.93053,0.9336,0.95955,0.96689,0.97137,0.97305,0.98512,0.9853,0.98849,0.98985,0.9954,0.99554,0.99587,0.99842,0.99892,0.99907,0.99946,0.99981,0.99998,1,0.9979,0.99775,0.99491,0.98853,0.98025,0.9652,0.96495,0.95863,0.94999,0.93743,0.93728,0.93264,0.90889,0.90294,0.90228,0.86968,0.86204,0.85757,0.84346,0.82903,0.80136,0.79691,0.77504,0.72407,0.72338,0.7191,0.71032,0.7034,0.69484,0.68468,0.58891,0.56378,0.52561,0.49764,0.49627,0.49313,0.45249,0.44319,0.44242,0.40523,0.34592,0.34412,0.32763,0.32428,0.28838,0.27878,0.25853,0.24835,0.23741,0.23532,0.22283,0.22068,0.21966,0.19326,0.18582,0.18276,0.17304,0.17005,0.15686,0.15396,0.14825,0.1347,0.13458,0.12842,0.12639,0.12638,0.11373,0.11334,0.10844,0.10344,0.093171,0.084629,0.078894,0.070424,0.063264,0.054882,0.054561,0.048791,0.043734,0.040966,0.034276,0.032501,0.029139,0.027294,0.023767,0.023419,0.022714,0.021156,0.018194,0.015536,0.014272,0.013102,0.012526,0.012447,0.011465,0.010417,0.0077255,0.0071235,0.0068103,0.0061624,0.0061582,0.0055756,0.0055067,0.0051447,0.0048697,0.0040391,0.0039302,0.0033878,0.0029454,0.0018436,0.0016849,0.0016129,0.0014374,0.001289,0.0012364,0.0011373,0.0010708,0.00099321,0.00087643,0.00087584,0.00069748,0.00065616,0.00064783,0.00064343,0.00050813,0.00050539,0.0004934,0.00048455,0.0004623,0.00042754,0.00039847,0.00029045,0.0001452,0.00011752,0.00011533,0.00011354,0.00010796,0.00010496,8.0183e-05,6.7003e-05,5.8734e-05,5.4538e-05,4.6674e-05,4.0849e-05,3.9845e-05,3.2984e-05,2.9615e-05,2.5945e-05,2.0939e-05,1.5737e-05,1.5451e-05,1.4015e-05,1.3094e-05,1.2699e-05,9.1388e-06,8.3452e-06,5.4956e-06,4.8883e-06,3.9719e-06,3.5516e-06,3.4249e-06,2.8072e-06,2.7357e-06,2.5852e-06,2.2838e-06,1.7998e-06 1,2.2498e-18,3.5053e-18,3.5838e-18,4.0949e-18,4.5368e-18,5.1897e-18,6.733e-18,1.2466e-17,1.8398e-17,1.9529e-17,2.6577e-17,2.7945e-17,3.4105e-17,5.5257e-17,6.4251e-17,7.1339e-17,1.1207e-16,1.2108e-16,1.3191e-16,1.7576e-16,1.8126e-16,1.8449e-16,2.2942e-16,2.6086e-16,2.6195e-16,3.3494e-16,3.4251e-16,3.8262e-16,3.8824e-16,3.9377e-16,8.3179e-16,1.6868e-15,1.7976e-15,2.2104e-15,2.6571e-15,3.0641e-15,3.6275e-15,4.4115e-15,6.2164e-15,7.5028e-15,1.0175e-14,1.4897e-14,1.5428e-14,1.6622e-14,1.7806e-14,2.5443e-14,2.5457e-14,5.9198e-14,6.2994e-14,6.5205e-14,8.3757e-14,8.5312e-14,1.3904e-13,1.6829e-13,1.8217e-13,2.1671e-13,2.4193e-13,2.9208e-13,3.0962e-13,4.8386e-13,6.3623e-13,1.4915e-12,1.88e-12,2.0309e-12,2.3313e-12,3.399e-12,3.6711e-12,3.9303e-12,5.4087e-12,7.2839e-12,8.1289e-12,8.8916e-12,1.2292e-11,1.9547e-11,3.1724e-11,4.3841e-11,4.6906e-11,8.5384e-11,1.0485e-10,1.1536e-10,1.2035e-10,1.4281e-10,2.8702e-10,2.9349e-10,3.3113e-10,4.0076e-10,4.1601e-10,5.4543e-10,1.1406e-09,1.1517e-09,1.4148e-09,1.5229e-09,3.4943e-09,4.2945e-09,4.3599e-09,5.2366e-09,6.7022e-09,6.7348e-09,6.8701e-09,7.9661e-09,7.9766e-09,9.1176e-09,9.6002e-09,1.9914e-08,2.73e-08,2.7592e-08,3.9332e-08,4.3223e-08,4.9991e-08,5.3644e-08,5.5919e-08,5.8544e-08,5.9425e-08,6.1842e-08,7.2572e-08,7.3932e-08,7.6813e-08,7.9255e-08,1.0027e-07,1.3052e-07,1.8262e-07,2.0704e-07,2.6952e-07,3.6078e-07,4.0752e-07,4.3388e-07,8.5917e-07,9.2879e-07,9.834e-07,1.101e-06,1.27e-06,1.4365e-06,1.5869e-06,1.6152e-06,1.6332e-06,1.8502e-06,2.5608e-06,2.6223e-06,2.9762e-06,3.6166e-06,4.0246e-06,4.0949e-06,7.4735e-06,7.5208e-06,8.4546e-06,1.061e-05,1.1055e-05,1.2877e-05,1.3347e-05,1.7124e-05,2.0114e-05,2.8865e-05,2.9113e-05,4.3643e-05,4.5682e-05,4.6351e-05,5.9962e-05,6.0945e-05,6.681e-05,7.535e-05,7.8223e-05,8.0463e-05,8.9898e-05,9.1558e-05,9.2656e-05,0.00010111,0.00010424,0.00010507,0.0001129,0.00011585,0.00013355,0.0001686,0.00017569,0.00017763,0.00019688,0.0002054,0.00024373,0.00032758,0.00035859,0.00041329,0.00043529,0.00050219,0.00057809,0.00058474,0.00058994,0.00059055,0.00061536,0.00061751,0.00070197,0.0007442,0.00083002,0.00083405,0.00085888,0.001035,0.0010406,0.0011361,0.0012545,0.0014946,0.0015291,0.0016317,0.0016556,0.0017172,0.0018252,0.0020028,0.0020078,0.0024715,0.0031162,0.003193,0.00328,0.0033076,0.0037905,0.0041185,0.005428,0.0055059,0.005666,0.0059455,0.0070947,0.0084989,0.010312,0.01092,0.011298,0.012309,0.014595,0.015712,0.01727,0.019927,0.022496,0.022988,0.02886,0.02972,0.03004,0.031635,0.032289,0.037932,0.040594,0.041392,0.041473,0.043193,0.045606,0.046761,0.047283,0.057237,0.05725,0.067625,0.081279,0.095743,0.11076,0.11779,0.11968,0.1242,0.12825,0.13819,0.13931,0.16014,0.16573,0.17735,0.19255,0.20218,0.20329,0.21139,0.21693,0.23096,0.25286,0.25498,0.26505,0.28142,0.29514,0.29579,0.346,0.3546,0.35877,0.36956,0.37523,0.38424,0.39878,0.40471,0.41305,0.42661,0.4444,0.46161,0.46336,0.48468,0.49886,0.51144,0.54029,0.55356,0.55839,0.57556,0.57661,0.58415,0.58748,0.63153,0.6428,0.64716,0.66702,0.67847,0.68021,0.70667,0.75608,0.77033,0.77758,0.79419,0.7956,0.81374,0.81569,0.83814,0.85084,0.87512,0.87723,0.8792,0.88029,0.88384,0.88671,0.88844,0.90601,0.90952,0.93986,0.94876,0.9543,0.95641,0.97208,0.97232,0.97674,0.97867,0.98715,0.98739,0.98793,0.9927,0.99381,0.99419,0.99525,0.99647,0.99745,0.9979,1,1,0.99935,0.99622,0.99094,0.97994,0.97975,0.97482,0.96788,0.95752,0.9574,0.95349,0.93305,0.92783,0.92725,0.8981,0.89117,0.88708,0.87414,0.86079,0.83493,0.83075,0.81005,0.76119,0.76052,0.75638,0.74788,0.74116,0.73282,0.72291,0.62822,0.60303,0.56452,0.53612,0.53473,0.53153,0.48995,0.48039,0.4796,0.4412,0.3794,0.3775,0.36019,0.35667,0.31875,0.30857,0.28702,0.27615,0.26445,0.2622,0.2488,0.24648,0.24539,0.21691,0.20886,0.20553,0.19497,0.19172,0.17734,0.17417,0.16792,0.15305,0.15292,0.14614,0.1439,0.14389,0.12992,0.12949,0.12405,0.11851,0.10708,0.097539,0.091114,0.081595,0.073519,0.064026,0.063662,0.057098,0.051327,0.04816,0.040478,0.038432,0.034549,0.032413,0.028318,0.027913,0.027093,0.025276,0.021813,0.018694,0.017205,0.015825,0.015144,0.015051,0.013888,0.012644,0.0094368,0.0087161,0.0083406,0.0075625,0.0075574,0.0068563,0.0067733,0.0063366,0.0060044,0.0049986,0.0048665,0.0042069,0.0036673,0.0023156,0.0021198,0.0020308,0.0018136,0.0016295,0.0015642,0.001441,0.0013581,0.0012613,0.0011155,0.0011147,0.00089118,0.00083925,0.00082878,0.00082325,0.00065272,0.00064925,0.0006341,0.00062291,0.00059478,0.00055076,0.00051391,0.00037652,0.0001903,0.00015451,0.00015168,0.00014937,0.00014213,0.00013824,0.00010604,8.8843e-05,7.803e-05,7.2534e-05,6.2216e-05,5.4557e-05,5.3235e-05,4.4188e-05,3.9735e-05,3.4876e-05,2.8232e-05,2.1303e-05,2.092e-05,1.9001e-05,1.7769e-05,1.7241e-05,1.2463e-05,1.1394e-05,7.5453e-06,6.7219e-06,5.4765e-06,4.9042e-06,4.7314e-06,3.888e-06,3.7902e-06,3.5843e-06,3.1714e-06,2.5069e-06 1,2.2039e-18,3.4342e-18,3.5112e-18,4.012e-18,4.4451e-18,5.085e-18,6.5976e-18,1.2217e-17,1.8033e-17,1.9142e-17,2.6051e-17,2.7393e-17,3.3433e-17,5.4176e-17,6.2996e-17,6.9947e-17,1.099e-16,1.1874e-16,1.2936e-16,1.7237e-16,1.7776e-16,1.8094e-16,2.2502e-16,2.5586e-16,2.5693e-16,3.2854e-16,3.3597e-16,3.7533e-16,3.8084e-16,3.8627e-16,8.1611e-16,1.6554e-15,1.764e-15,2.1693e-15,2.6078e-15,3.0075e-15,3.5605e-15,4.3303e-15,6.1026e-15,7.3658e-15,9.9896e-15,1.4628e-14,1.515e-14,1.6322e-14,1.7485e-14,2.4988e-14,2.5001e-14,5.8152e-14,6.1882e-14,6.4054e-14,8.2285e-14,8.3813e-14,1.3662e-13,1.6536e-13,1.7901e-13,2.1296e-13,2.3775e-13,2.8705e-13,3.043e-13,4.7561e-13,6.2543e-13,1.4665e-12,1.8487e-12,1.9971e-12,2.2926e-12,3.3431e-12,3.6107e-12,3.8657e-12,5.3204e-12,7.1657e-12,7.9972e-12,8.7479e-12,1.2095e-11,1.9236e-11,3.1224e-11,4.3155e-11,4.6173e-11,8.4066e-11,1.0324e-10,1.1359e-10,1.1851e-10,1.4063e-10,2.827e-10,2.8908e-10,3.2617e-10,3.9478e-10,4.0981e-10,5.3735e-10,1.124e-09,1.1349e-09,1.3943e-09,1.5009e-09,3.4448e-09,4.234e-09,4.2985e-09,5.1633e-09,6.6089e-09,6.6411e-09,6.7746e-09,7.8557e-09,7.8661e-09,8.9917e-09,9.4679e-09,1.9644e-08,2.6934e-08,2.7222e-08,3.881e-08,4.2652e-08,4.9333e-08,5.2939e-08,5.5185e-08,5.7777e-08,5.8647e-08,6.1033e-08,7.1628e-08,7.2971e-08,7.5815e-08,7.8227e-08,9.8974e-08,1.2886e-07,1.8031e-07,2.0444e-07,2.6616e-07,3.5632e-07,4.025e-07,4.2854e-07,8.4886e-07,9.1767e-07,9.7166e-07,1.0879e-06,1.255e-06,1.4195e-06,1.5682e-06,1.5962e-06,1.614e-06,1.8286e-06,2.5313e-06,2.5921e-06,2.9421e-06,3.5754e-06,3.979e-06,4.0486e-06,7.391e-06,7.4378e-06,8.3618e-06,1.0495e-05,1.0935e-05,1.2738e-05,1.3203e-05,1.6941e-05,1.9901e-05,2.8565e-05,2.8811e-05,4.3198e-05,4.5218e-05,4.5881e-05,5.9361e-05,6.0335e-05,6.6144e-05,7.4603e-05,7.7449e-05,7.9669e-05,8.9016e-05,9.066e-05,9.1748e-05,0.00010012,0.00010322,0.00010405,0.00011181,0.00011473,0.00013227,0.00016701,0.00017403,0.00017595,0.00019504,0.00020347,0.00024147,0.0003246,0.00035534,0.00040958,0.0004314,0.00049774,0.00057302,0.00057961,0.00058476,0.00058537,0.00060998,0.00061211,0.00069588,0.00073778,0.00082291,0.00082691,0.00085154,0.0010263,0.0010318,0.0011266,0.0012441,0.0014823,0.0015166,0.0016184,0.0016421,0.0017032,0.0018104,0.0019867,0.0019917,0.002452,0.0030921,0.0031684,0.0032548,0.0032821,0.0037617,0.0040874,0.0053881,0.0054655,0.0056245,0.0059022,0.0070438,0.0084391,0.010241,0.010846,0.011221,0.012226,0.014498,0.015608,0.017158,0.0198,0.022355,0.022844,0.028685,0.029541,0.029859,0.031445,0.032096,0.03771,0.040359,0.041154,0.041235,0.042947,0.045347,0.046497,0.047017,0.056925,0.056938,0.067267,0.080864,0.095271,0.11023,0.11723,0.11912,0.12362,0.12766,0.13756,0.13868,0.15944,0.16502,0.1766,0.19175,0.20136,0.20246,0.21054,0.21607,0.23006,0.25191,0.25402,0.26407,0.2804,0.29409,0.29474,0.34485,0.35343,0.35759,0.36837,0.37403,0.38302,0.39754,0.40347,0.4118,0.42534,0.44311,0.4603,0.46205,0.48335,0.49752,0.51009,0.53892,0.55218,0.55701,0.57418,0.57522,0.58277,0.58609,0.63015,0.64141,0.64578,0.66565,0.67711,0.67884,0.70533,0.75479,0.76906,0.77632,0.79296,0.79437,0.81255,0.8145,0.837,0.84973,0.87408,0.8762,0.87818,0.87927,0.88284,0.88571,0.88745,0.90508,0.90861,0.9391,0.94806,0.95363,0.95575,0.97155,0.97179,0.97625,0.97821,0.98679,0.98702,0.98758,0.99243,0.99356,0.99394,0.99503,0.99627,0.99729,0.99775,1,1,0.99943,0.99641,0.99125,0.98038,0.9802,0.97532,0.96845,0.95816,0.95804,0.95416,0.93384,0.92865,0.92807,0.89905,0.89214,0.88807,0.87518,0.86187,0.83608,0.8319,0.81125,0.76248,0.7618,0.75767,0.74918,0.74247,0.73414,0.72424,0.6296,0.60442,0.5659,0.53749,0.5361,0.53289,0.49129,0.48172,0.48093,0.44248,0.3806,0.37871,0.36137,0.35784,0.31985,0.30965,0.28806,0.27717,0.26543,0.26319,0.24975,0.24743,0.24633,0.21778,0.2097,0.20636,0.19578,0.19252,0.17809,0.17491,0.16864,0.15373,0.15359,0.14679,0.14455,0.14454,0.13052,0.13009,0.12463,0.11907,0.1076,0.098021,0.091571,0.082014,0.073904,0.064369,0.064004,0.057411,0.051613,0.048431,0.040712,0.038657,0.034754,0.032607,0.028491,0.028084,0.027259,0.025433,0.021952,0.018815,0.017318,0.015929,0.015245,0.01515,0.013981,0.01273,0.0095028,0.0087776,0.0083997,0.0076167,0.0076115,0.0069059,0.0068223,0.0063828,0.0060484,0.0050359,0.0049029,0.0042388,0.0036955,0.0023341,0.0021368,0.0020472,0.0018284,0.0016429,0.0015771,0.0014529,0.0013694,0.0012719,0.0011249,0.0011241,0.00089884,0.0008465,0.00083594,0.00083036,0.00065845,0.00065496,0.00063968,0.0006284,0.00060004,0.00055566,0.0005185,0.00037995,0.00019211,0.000156,0.00015314,0.00015081,0.0001435,0.00013958,0.00010708,8.9724e-05,7.8809e-05,7.3261e-05,6.2845e-05,5.5112e-05,5.3777e-05,4.4642e-05,4.0146e-05,3.5239e-05,2.8529e-05,2.153e-05,2.1143e-05,1.9205e-05,1.796e-05,1.7426e-05,1.2599e-05,1.1519e-05,7.6295e-06,6.7972e-06,5.5384e-06,4.9599e-06,4.7852e-06,3.9326e-06,3.8337e-06,3.6256e-06,3.208e-06,2.5362e-06 1,1.6224e-18,2.5323e-18,2.5892e-18,2.9601e-18,3.2809e-18,3.7551e-18,4.8769e-18,9.0522e-18,1.3381e-17,1.4207e-17,1.9359e-17,2.036e-17,2.4869e-17,4.0374e-17,4.6975e-17,5.2179e-17,8.2129e-17,8.876e-17,9.6732e-17,1.2905e-16,1.331e-16,1.3549e-16,1.6864e-16,1.9185e-16,1.9266e-16,2.466e-16,2.522e-16,2.8187e-16,2.8602e-16,2.9012e-16,6.1481e-16,1.2507e-15,1.3331e-15,1.6408e-15,1.974e-15,2.2778e-15,2.6986e-15,3.2847e-15,4.6357e-15,5.5997e-15,7.6042e-15,1.1153e-14,1.1552e-14,1.2451e-14,1.3341e-14,1.9095e-14,1.9106e-14,4.4601e-14,4.7475e-14,4.9148e-14,6.3206e-14,6.4385e-14,1.0517e-13,1.2741e-13,1.3798e-13,1.6427e-13,1.8348e-13,2.2171e-13,2.3509e-13,3.6818e-13,4.8477e-13,1.1411e-12,1.44e-12,1.5562e-12,1.7876e-12,2.6112e-12,2.8213e-12,3.0215e-12,4.1647e-12,5.617e-12,6.2721e-12,6.8638e-12,9.5045e-12,1.515e-11,2.4649e-11,3.4122e-11,3.6521e-11,6.669e-11,8.1986e-11,9.025e-11,9.4174e-11,1.1185e-10,2.2564e-10,2.3076e-10,2.6053e-10,3.1564e-10,3.2773e-10,4.3032e-10,9.036e-10,9.1244e-10,1.1222e-09,1.2084e-09,2.786e-09,3.4281e-09,3.4806e-09,4.185e-09,5.3641e-09,5.3903e-09,5.4993e-09,6.3821e-09,6.3907e-09,7.3105e-09,7.6999e-09,1.6042e-08,2.2035e-08,2.2272e-08,3.1817e-08,3.4986e-08,4.0501e-08,4.3479e-08,4.5335e-08,4.7477e-08,4.8196e-08,5.0168e-08,5.8933e-08,6.0045e-08,6.2399e-08,6.4396e-08,8.1589e-08,1.0639e-07,1.4918e-07,1.6927e-07,2.2073e-07,2.9603e-07,3.3466e-07,3.5645e-07,7.0911e-07,7.6699e-07,8.1241e-07,9.1023e-07,1.0511e-06,1.1898e-06,1.3153e-06,1.3389e-06,1.3539e-06,1.5352e-06,2.1297e-06,2.1813e-06,2.4779e-06,3.0153e-06,3.3581e-06,3.4172e-06,6.2642e-06,6.3041e-06,7.0931e-06,8.9166e-06,9.2936e-06,1.0837e-05,1.1236e-05,1.4443e-05,1.6987e-05,2.4447e-05,2.4659e-05,3.7085e-05,3.8832e-05,3.9406e-05,5.1084e-05,5.1928e-05,5.6968e-05,6.4314e-05,6.6787e-05,6.8716e-05,7.6845e-05,7.8276e-05,7.9222e-05,8.6514e-05,8.9214e-05,8.9931e-05,9.6695e-05,9.9244e-05,0.00011454,0.0001449,0.00015105,0.00015272,0.00016943,0.00017682,0.00021014,0.00028318,0.00031024,0.00035804,0.00037727,0.00043583,0.00050236,0.00050819,0.00051275,0.00051328,0.00053506,0.00053695,0.00061113,0.00064825,0.00072377,0.00072732,0.00074917,0.00090445,0.00090939,0.00099371,0.0010984,0.0013108,0.0013414,0.0014323,0.0014535,0.0015081,0.001604,0.0017617,0.0017662,0.0021787,0.0027539,0.0028225,0.0029002,0.0029248,0.0033568,0.0036505,0.004826,0.0048961,0.00504,0.0052916,0.006327,0.0075952,0.0092368,0.0097882,0.010131,0.011049,0.013128,0.014146,0.015568,0.017995,0.020348,0.020799,0.026191,0.026983,0.027277,0.028745,0.029348,0.034555,0.037015,0.037754,0.037829,0.039421,0.041656,0.042726,0.04321,0.052456,0.052468,0.062135,0.074899,0.088466,0.1026,0.10922,0.11101,0.11527,0.1191,0.1285,0.12957,0.14932,0.15464,0.1657,0.18019,0.18939,0.19045,0.19819,0.2035,0.21694,0.23798,0.24002,0.24971,0.26549,0.27873,0.27936,0.32801,0.33637,0.34042,0.35093,0.35645,0.36523,0.37943,0.38523,0.39338,0.40666,0.4241,0.44101,0.44273,0.46372,0.47771,0.49013,0.51868,0.53184,0.53664,0.55372,0.55475,0.56226,0.56558,0.6096,0.62088,0.62527,0.64522,0.65676,0.6585,0.68523,0.73541,0.74996,0.75737,0.77441,0.77586,0.79453,0.79654,0.81977,0.83297,0.85834,0.86056,0.86263,0.86378,0.86752,0.87054,0.87236,0.89097,0.89471,0.92735,0.93708,0.94317,0.94551,0.96311,0.96339,0.96846,0.97071,0.98078,0.98106,0.98173,0.98772,0.98917,0.98966,0.99109,0.99279,0.99423,0.99491,0.99935,0.99943,1,0.99871,0.99514,0.98646,0.9863,0.98218,0.97624,0.96715,0.96704,0.96357,0.94509,0.94031,0.93977,0.9127,0.90619,0.90235,0.89013,0.87745,0.85273,0.8487,0.82876,0.78131,0.78065,0.77661,0.76829,0.76171,0.75354,0.74381,0.6501,0.62498,0.58642,0.55787,0.55647,0.55324,0.51126,0.50159,0.50079,0.4618,0.39874,0.39681,0.37907,0.37545,0.33646,0.32596,0.30371,0.29247,0.28034,0.27802,0.26411,0.2617,0.26057,0.23093,0.22253,0.21905,0.20802,0.20463,0.18956,0.18624,0.17968,0.16406,0.16392,0.15678,0.15443,0.15442,0.13968,0.13923,0.13349,0.12762,0.11552,0.10539,0.098562,0.088424,0.079805,0.06965,0.069261,0.062223,0.056023,0.052615,0.044334,0.042125,0.037925,0.035612,0.031171,0.03073,0.029839,0.027865,0.024094,0.02069,0.019063,0.017552,0.016806,0.016703,0.015429,0.014063,0.010533,0.0097375,0.0093228,0.0084628,0.0084571,0.0076811,0.0075892,0.0071053,0.0067369,0.00562,0.0054731,0.0047388,0.0041372,0.002625,0.0024052,0.0023053,0.0020611,0.0018539,0.0017804,0.0016415,0.0015479,0.0014387,0.0012739,0.001273,0.00102,0.0009611,0.00094922,0.00094295,0.00074927,0.00074534,0.00072811,0.00071538,0.00068337,0.00063325,0.00059126,0.00043444,0.00022091,0.00017969,0.00017642,0.00017376,0.00016541,0.00016093,0.00012371,0.00010381,9.1273e-05,8.4896e-05,7.2912e-05,6.4005e-05,6.2466e-05,5.1929e-05,4.6736e-05,4.1064e-05,3.3297e-05,2.518e-05,2.4732e-05,2.248e-05,2.1033e-05,2.0413e-05,1.4792e-05,1.3533e-05,8.9895e-06,8.0153e-06,6.5402e-06,5.8615e-06,5.6564e-06,4.6548e-06,4.5385e-06,4.2938e-06,3.8024e-06,3.0108e-06 1,1.0224e-18,1.5998e-18,1.636e-18,1.8718e-18,2.0758e-18,2.3777e-18,3.0926e-18,5.7606e-18,8.5346e-18,9.0647e-18,1.2374e-17,1.3017e-17,1.5918e-17,2.5916e-17,3.0181e-17,3.3545e-17,5.294e-17,5.7241e-17,6.2414e-17,8.3407e-17,8.6042e-17,8.7594e-17,1.0917e-16,1.2429e-16,1.2482e-16,1.6e-16,1.6366e-16,1.8303e-16,1.8574e-16,1.8842e-16,4.0112e-16,8.1952e-16,8.7389e-16,1.077e-15,1.2971e-15,1.4981e-15,1.7767e-15,2.1652e-15,3.0624e-15,3.7036e-15,5.039e-15,7.4084e-15,7.6756e-15,8.2764e-15,8.8724e-15,1.2728e-14,1.2735e-14,2.9892e-14,3.1831e-14,3.296e-14,4.2457e-14,4.3254e-14,7.0884e-14,8.5981e-14,9.3158e-14,1.1104e-13,1.2412e-13,1.5017e-13,1.5929e-13,2.5022e-13,3.3006e-13,7.8149e-13,9.8778e-13,1.068e-12,1.228e-12,1.7985e-12,1.9443e-12,2.0833e-12,2.878e-12,3.8897e-12,4.3468e-12,4.7599e-12,6.6064e-12,1.0566e-11,1.7252e-11,2.3938e-11,2.5634e-11,4.7017e-11,5.7891e-11,6.3772e-11,6.6565e-11,7.9164e-11,1.6055e-10,1.6422e-10,1.8558e-10,2.2516e-10,2.3385e-10,3.077e-10,6.4988e-10,6.5629e-10,8.0847e-10,8.7112e-10,2.0219e-09,2.492e-09,2.5305e-09,3.0472e-09,3.9137e-09,3.933e-09,4.0132e-09,4.6632e-09,4.6695e-09,5.3475e-09,5.6348e-09,1.1812e-08,1.6269e-08,1.6445e-08,2.3566e-08,2.5934e-08,3.0061e-08,3.2291e-08,3.3682e-08,3.5288e-08,3.5827e-08,3.7306e-08,4.3885e-08,4.472e-08,4.649e-08,4.7991e-08,6.0932e-08,7.9643e-08,1.1201e-07,1.2724e-07,1.6633e-07,2.2368e-07,2.5316e-07,2.698e-07,5.4024e-07,5.8477e-07,6.1974e-07,6.9512e-07,8.0379e-07,9.11e-07,1.0081e-06,1.0263e-06,1.038e-06,1.1784e-06,1.64e-06,1.6801e-06,1.911e-06,2.3301e-06,2.5978e-06,2.644e-06,4.8771e-06,4.9085e-06,5.5296e-06,6.9678e-06,7.2656e-06,8.4864e-06,8.802e-06,1.1345e-05,1.3366e-05,1.9313e-05,1.9482e-05,2.9433e-05,3.0836e-05,3.1297e-05,4.0692e-05,4.1372e-05,4.5435e-05,5.1366e-05,5.3365e-05,5.4924e-05,6.1502e-05,6.266e-05,6.3427e-05,6.9336e-05,7.1526e-05,7.2108e-05,7.7598e-05,7.9668e-05,9.2105e-05,0.00011684,0.00012186,0.00012323,0.00013689,0.00014294,0.00017023,0.00023025,0.00025254,0.00029198,0.00030788,0.00035632,0.00041147,0.00041631,0.0004201,0.00042054,0.00043862,0.00044018,0.00050185,0.00053276,0.00059569,0.00059865,0.00061689,0.00074664,0.00075077,0.00082137,0.00090912,0.0010876,0.0011134,0.00119,0.0012078,0.0012538,0.0013347,0.0014679,0.0014717,0.0018209,0.0023095,0.0023679,0.0024341,0.0024551,0.0028235,0.0030745,0.004082,0.0041421,0.0042659,0.0044822,0.0053745,0.0064708,0.0078947,0.0083741,0.0086723,0.0094721,0.011288,0.012179,0.013425,0.015559,0.017632,0.01803,0.022801,0.023504,0.023765,0.025069,0.025605,0.030243,0.032441,0.033101,0.033169,0.034593,0.036594,0.037554,0.037988,0.046301,0.046312,0.055042,0.066622,0.078988,0.091923,0.098004,0.099647,0.10357,0.1071,0.11577,0.11676,0.13505,0.13998,0.15027,0.16378,0.17238,0.17337,0.18062,0.1856,0.19822,0.21804,0.21997,0.22912,0.24406,0.25663,0.25723,0.30363,0.31163,0.31552,0.3256,0.33091,0.33935,0.35303,0.35863,0.3665,0.37934,0.39625,0.41268,0.41436,0.43482,0.44848,0.46064,0.48868,0.50164,0.50637,0.52324,0.52427,0.5317,0.53499,0.57876,0.59004,0.59442,0.61442,0.62601,0.62777,0.65473,0.70575,0.72064,0.72825,0.74578,0.74727,0.76659,0.76868,0.79286,0.80669,0.83347,0.83582,0.83802,0.83924,0.84322,0.84643,0.84838,0.86833,0.87236,0.90803,0.91886,0.9257,0.92834,0.94854,0.94887,0.95483,0.9575,0.96974,0.9701,0.97093,0.97858,0.9805,0.98116,0.9831,0.98545,0.98752,0.98853,0.99622,0.99641,0.99871,1,0.99886,0.99349,0.99338,0.99042,0.98591,0.97869,0.9786,0.97575,0.96014,0.956,0.95554,0.93156,0.92569,0.92221,0.91106,0.89941,0.87643,0.87267,0.8539,0.80869,0.80806,0.80418,0.79617,0.78982,0.78192,0.7725,0.68065,0.65573,0.61726,0.58863,0.58722,0.58397,0.54159,0.53179,0.53097,0.49131,0.42667,0.42467,0.40637,0.40264,0.36223,0.35131,0.3281,0.31635,0.30364,0.3012,0.2866,0.28407,0.28287,0.25162,0.24273,0.23905,0.22735,0.22374,0.20772,0.20418,0.19718,0.18049,0.18034,0.17269,0.17016,0.17016,0.15431,0.15383,0.14764,0.14132,0.12823,0.11725,0.10983,0.09878,0.089361,0.078227,0.077799,0.070058,0.063219,0.059452,0.050272,0.047817,0.04314,0.04056,0.035594,0.0351,0.034102,0.031887,0.027648,0.023808,0.021968,0.020257,0.019412,0.019295,0.017847,0.016295,0.012265,0.011353,0.010878,0.0098901,0.0098836,0.0089909,0.008885,0.0083274,0.0079025,0.0066114,0.0064413,0.0055897,0.0048903,0.0031242,0.0028663,0.0027489,0.0024617,0.0022177,0.0021309,0.0019669,0.0018564,0.0017272,0.0015319,0.0015309,0.0012303,0.0011603,0.0011461,0.0011387,0.0009076,0.00090289,0.0008823,0.00086708,0.00082878,0.00076878,0.00071845,0.00053003,0.00027183,0.00022168,0.00021769,0.00021445,0.00020426,0.00019879,0.00015331,0.00012891,0.00011352,0.00010568,9.0922e-05,7.9935e-05,7.8036e-05,6.501e-05,5.858e-05,5.1546e-05,4.1896e-05,3.1781e-05,3.1221e-05,2.8408e-05,2.6599e-05,2.5823e-05,1.8778e-05,1.7197e-05,1.1473e-05,1.0242e-05,8.3749e-06,7.5143e-06,7.2541e-06,5.9816e-06,5.8337e-06,5.5222e-06,4.8964e-06,3.8862e-06 1,6.6077e-19,1.0364e-18,1.06e-18,1.2136e-18,1.3466e-18,1.5435e-18,2.0104e-18,3.7574e-18,5.5785e-18,5.9269e-18,8.1042e-18,8.528e-18,1.044e-17,1.7042e-17,1.9863e-17,2.209e-17,3.495e-17,3.7805e-17,4.1242e-17,5.5202e-17,5.6956e-17,5.7989e-17,7.2362e-17,8.2445e-17,8.2795e-17,1.0628e-16,1.0872e-16,1.2167e-16,1.2348e-16,1.2527e-16,2.6783e-16,5.4943e-16,5.8611e-16,7.2317e-16,8.7193e-16,1.0079e-15,1.1965e-15,1.4598e-15,2.0689e-15,2.5048e-15,3.4142e-15,5.031e-15,5.2136e-15,5.6242e-15,6.0317e-15,8.6714e-15,8.6762e-15,2.047e-14,2.1806e-14,2.2585e-14,2.9137e-14,2.9687e-14,4.8798e-14,5.9262e-14,6.424e-14,7.6653e-14,8.574e-14,1.0386e-13,1.1021e-13,1.7361e-13,2.2941e-13,5.4616e-13,6.9136e-13,7.4791e-13,8.6072e-13,1.2637e-12,1.3668e-12,1.4652e-12,2.0284e-12,2.7469e-12,3.0719e-12,3.3659e-12,4.6818e-12,7.5114e-12,1.2305e-11,1.7113e-11,1.8333e-11,3.3768e-11,4.1637e-11,4.5898e-11,4.7923e-11,5.7062e-11,1.1631e-10,1.1899e-10,1.3458e-10,1.6351e-10,1.6986e-10,2.2395e-10,4.7558e-10,4.803e-10,5.9258e-10,6.3885e-10,1.4922e-09,1.8421e-09,1.8707e-09,2.2559e-09,2.9029e-09,2.9174e-09,2.9773e-09,3.4635e-09,3.4682e-09,3.976e-09,4.1913e-09,8.8373e-09,1.2203e-08,1.2336e-08,1.7729e-08,1.9525e-08,2.2659e-08,2.4355e-08,2.5412e-08,2.6634e-08,2.7044e-08,2.817e-08,3.3182e-08,3.3819e-08,3.5168e-08,3.6313e-08,4.6196e-08,6.0517e-08,8.536e-08,9.707e-08,1.2718e-07,1.7147e-07,1.9427e-07,2.0716e-07,4.1734e-07,4.5206e-07,4.7934e-07,5.382e-07,6.2315e-07,7.0707e-07,7.8313e-07,7.9746e-07,8.0658e-07,9.1676e-07,1.2798e-06,1.3114e-06,1.4934e-06,1.8242e-06,2.0359e-06,2.0724e-06,3.8452e-06,3.8702e-06,4.365e-06,5.5128e-06,5.7507e-06,6.7273e-06,6.98e-06,9.0193e-06,1.0644e-05,1.5437e-05,1.5574e-05,2.3629e-05,2.4767e-05,2.5141e-05,3.2779e-05,3.3333e-05,3.6644e-05,4.1482e-05,4.3113e-05,4.4387e-05,4.9764e-05,5.0711e-05,5.1338e-05,5.6176e-05,5.797e-05,5.8447e-05,6.2947e-05,6.4646e-05,7.4858e-05,9.5217e-05,9.9353e-05,0.00010048,0.00011175,0.00011674,0.00013931,0.0001891,0.00020763,0.00024046,0.00025371,0.00029415,0.00034027,0.00034432,0.00034749,0.00034786,0.000363,0.00036431,0.00041601,0.00044196,0.00049485,0.00049734,0.00051268,0.00062199,0.00062548,0.00068508,0.00075925,0.00091042,0.00093224,0.00099725,0.0010124,0.0010515,0.0011202,0.0012336,0.0012368,0.0015347,0.0019528,0.0020028,0.0020596,0.0020776,0.0023939,0.0026099,0.0034791,0.0035312,0.0036382,0.0038254,0.0045992,0.0055527,0.0067951,0.0072143,0.0074752,0.0081759,0.0097702,0.010554,0.011653,0.013537,0.015373,0.015726,0.019968,0.020595,0.020827,0.021991,0.022469,0.026619,0.028589,0.029182,0.029242,0.030522,0.032321,0.033185,0.033575,0.041077,0.041087,0.048997,0.059535,0.070836,0.082707,0.088303,0.089816,0.093436,0.09669,0.1047,0.10562,0.12258,0.12717,0.13675,0.14937,0.15741,0.15834,0.16514,0.16981,0.18167,0.20035,0.20217,0.21082,0.22496,0.23689,0.23746,0.28169,0.28935,0.29307,0.30274,0.30783,0.31595,0.32911,0.3345,0.34209,0.35449,0.37086,0.38679,0.38842,0.40832,0.42164,0.43352,0.46097,0.47369,0.47835,0.49495,0.49596,0.5033,0.50654,0.54989,0.56111,0.56547,0.58542,0.59701,0.59877,0.62582,0.67734,0.69248,0.70023,0.71813,0.71966,0.73947,0.74162,0.76657,0.7809,0.80882,0.81129,0.81359,0.81488,0.81905,0.82243,0.82448,0.84557,0.84986,0.88814,0.89992,0.90743,0.91033,0.93284,0.93321,0.93997,0.94302,0.95722,0.95764,0.95862,0.96778,0.97012,0.97094,0.97334,0.9763,0.97894,0.98025,0.99094,0.99125,0.99514,0.99886,1,0.9978,0.99773,0.99587,0.99275,0.98732,0.98725,0.98502,0.97222,0.96871,0.96831,0.9474,0.94217,0.93906,0.929,0.91838,0.8972,0.8937,0.87617,0.83334,0.83274,0.82903,0.82136,0.81527,0.80768,0.79859,0.709,0.6844,0.64622,0.61763,0.61622,0.61297,0.5704,0.56051,0.55969,0.51955,0.45363,0.45159,0.43282,0.42898,0.38734,0.37604,0.35198,0.33977,0.32654,0.324,0.30876,0.30611,0.30486,0.27212,0.26277,0.2589,0.24658,0.24277,0.22585,0.2221,0.21469,0.19697,0.1968,0.18867,0.18598,0.18597,0.16907,0.16855,0.16194,0.15516,0.14112,0.12931,0.1213,0.10936,0.099153,0.087047,0.086581,0.078137,0.070659,0.066531,0.056446,0.053741,0.048581,0.045729,0.040228,0.039681,0.038573,0.036111,0.031391,0.027103,0.025044,0.023125,0.022176,0.022045,0.020418,0.01867,0.014118,0.013086,0.012546,0.011424,0.011417,0.010401,0.01028,0.0096449,0.0091601,0.0076844,0.0074896,0.0065133,0.0057096,0.0036711,0.0033721,0.0032359,0.0029023,0.0026183,0.0025173,0.002326,0.002197,0.0020462,0.0018177,0.0018165,0.0014641,0.0013818,0.0013651,0.0013564,0.0010843,0.0010787,0.0010544,0.0010365,0.00099128,0.00092039,0.00086087,0.0006375,0.00032959,0.00026943,0.00026464,0.00026074,0.0002485,0.00024192,0.00018713,0.00015766,0.00013903,0.00012953,0.00011163,9.8282e-05,9.5972e-05,8.0112e-05,7.227e-05,6.3681e-05,5.1873e-05,3.9465e-05,3.8777e-05,3.5318e-05,3.3092e-05,3.2136e-05,2.3446e-05,2.1491e-05,1.4397e-05,1.2867e-05,1.0542e-05,9.4689e-06,9.1442e-06,7.5544e-06,7.3694e-06,6.9797e-06,6.1959e-06,4.9285e-06 1,3.5898e-19,5.6489e-19,5.7783e-19,6.6222e-19,7.3537e-19,8.4376e-19,1.1011e-18,2.0675e-18,3.0785e-18,3.2723e-18,4.4849e-18,4.7212e-18,5.7885e-18,9.4842e-18,1.1067e-17,1.2317e-17,1.9556e-17,2.1167e-17,2.3106e-17,3.0997e-17,3.1989e-17,3.2574e-17,4.0717e-17,4.6437e-17,4.6636e-17,5.9981e-17,6.1369e-17,6.8738e-17,6.9771e-17,7.079e-17,1.5224e-16,3.1409e-16,3.3523e-16,4.1432e-16,5.0029e-16,5.7896e-16,6.8826e-16,8.4108e-16,1.1953e-15,1.4495e-15,1.9807e-15,2.9279e-15,3.035e-15,3.276e-15,3.5155e-15,5.0691e-15,5.0719e-15,1.2052e-14,1.2845e-14,1.3308e-14,1.7205e-14,1.7533e-14,2.8941e-14,3.5205e-14,3.8189e-14,4.5637e-14,5.1096e-14,6.1996e-14,6.5821e-14,1.0409e-13,1.3788e-13,3.3076e-13,4.1958e-13,4.5422e-13,5.2338e-13,7.7108e-13,8.3457e-13,8.9519e-13,1.2429e-12,1.6879e-12,1.8895e-12,2.072e-12,2.8909e-12,4.6584e-12,7.6664e-12,1.0695e-11,1.1465e-11,2.1241e-11,2.6243e-11,2.8956e-11,3.0246e-11,3.6075e-11,7.4041e-11,7.5763e-11,8.5794e-11,1.0444e-10,1.0854e-10,1.435e-10,3.0704e-10,3.1012e-10,3.8344e-10,4.1369e-10,9.7474e-10,1.206e-09,1.2249e-09,1.4801e-09,1.9096e-09,1.9192e-09,1.9591e-09,2.2827e-09,2.2858e-09,2.6243e-09,2.768e-09,5.8834e-09,8.1527e-09,8.2428e-09,1.1894e-08,1.3113e-08,1.5243e-08,1.6397e-08,1.7117e-08,1.7949e-08,1.8229e-08,1.8997e-08,2.2418e-08,2.2853e-08,2.3776e-08,2.4559e-08,3.1328e-08,4.1168e-08,5.8299e-08,6.6396e-08,8.7268e-08,1.1807e-07,1.3398e-07,1.4297e-07,2.9049e-07,3.1496e-07,3.3421e-07,3.7579e-07,4.3589e-07,4.9537e-07,5.4936e-07,5.5954e-07,5.6602e-07,6.4438e-07,9.0336e-07,9.2594e-07,1.0562e-06,1.2935e-06,1.4457e-06,1.472e-06,2.7534e-06,2.7715e-06,3.1309e-06,3.9665e-06,4.1401e-06,4.8535e-06,5.0383e-06,6.5333e-06,7.7276e-06,1.1266e-05,1.1367e-05,1.735e-05,1.8198e-05,1.8477e-05,2.4183e-05,2.4598e-05,2.7078e-05,3.071e-05,3.1936e-05,3.2893e-05,3.694e-05,3.7655e-05,3.8127e-05,4.1776e-05,4.3131e-05,4.3491e-05,4.6892e-05,4.8177e-05,5.5911e-05,7.1381e-05,7.4531e-05,7.5391e-05,8.3983e-05,8.7796e-05,0.00010506,0.0001433,0.00015758,0.00018293,0.00019318,0.00022451,0.00026034,0.00026349,0.00026596,0.00026625,0.00027803,0.00027905,0.00031937,0.00033963,0.000381,0.00038295,0.00039497,0.00048078,0.00048352,0.00053044,0.00058892,0.00070844,0.00072573,0.00077727,0.00078926,0.00082033,0.00087493,0.00096515,0.00096773,0.0012055,0.0015409,0.0015811,0.0016268,0.0016413,0.0018963,0.0020708,0.002776,0.0028183,0.0029055,0.003058,0.0036902,0.0044725,0.0054963,0.0058427,0.0060586,0.0066391,0.0079644,0.0086179,0.0095361,0.011116,0.01266,0.012957,0.016545,0.017076,0.017274,0.018262,0.018669,0.022208,0.023895,0.024402,0.024455,0.025552,0.027097,0.02784,0.028176,0.034652,0.034661,0.041528,0.050731,0.06066,0.071147,0.07611,0.077455,0.080673,0.08357,0.090719,0.091535,0.10674,0.11087,0.11951,0.13093,0.13823,0.13907,0.14525,0.14951,0.16034,0.17745,0.17912,0.18709,0.20013,0.21117,0.21169,0.25286,0.26003,0.26352,0.27259,0.27737,0.28501,0.29742,0.30251,0.30969,0.32143,0.33698,0.35217,0.35372,0.37275,0.38553,0.39695,0.42345,0.43578,0.44029,0.45644,0.45742,0.46457,0.46774,0.51023,0.52127,0.52558,0.54531,0.55682,0.55857,0.58553,0.63735,0.65269,0.66057,0.67883,0.6804,0.70072,0.70293,0.7287,0.74361,0.77286,0.77545,0.77788,0.77924,0.78365,0.78722,0.7894,0.81185,0.81645,0.85796,0.87096,0.8793,0.88254,0.90801,0.90843,0.91623,0.91977,0.93652,0.93703,0.9382,0.94937,0.95227,0.95329,0.95631,0.96007,0.96348,0.9652,0.97994,0.98038,0.98646,0.99349,0.9978,1,1,0.9997,0.99853,0.99566,0.99562,0.99426,0.9855,0.9829,0.98261,0.96619,0.9619,0.95932,0.9509,0.94183,0.92336,0.92027,0.90462,0.86554,0.86498,0.86155,0.85444,0.84876,0.84166,0.83314,0.74751,0.72357,0.6861,0.65781,0.6564,0.65318,0.61066,0.60073,0.5999,0.55935,0.49207,0.48997,0.47064,0.46668,0.42352,0.41175,0.3866,0.37378,0.35988,0.3572,0.34111,0.33832,0.33699,0.30224,0.29228,0.28814,0.27497,0.27089,0.25272,0.24868,0.2407,0.22154,0.22136,0.21254,0.20962,0.20961,0.19121,0.19065,0.18342,0.17601,0.1606,0.14758,0.13873,0.12549,0.11413,0.10059,0.10007,0.090585,0.082155,0.07749,0.066048,0.062968,0.057079,0.053816,0.047503,0.046873,0.045598,0.042762,0.037305,0.032328,0.02993,0.027691,0.026581,0.026428,0.024522,0.022471,0.017102,0.015879,0.015238,0.013905,0.013896,0.012686,0.012542,0.011783,0.011203,0.0094339,0.0091998,0.0080241,0.0070533,0.0045758,0.0042102,0.0040434,0.0036343,0.0032852,0.0031608,0.0029251,0.0027659,0.0025795,0.0022965,0.0022951,0.0018572,0.0017547,0.0017339,0.001723,0.001383,0.001376,0.0013456,0.0013231,0.0012664,0.0011774,0.0011025,0.00082076,0.00042911,0.00035195,0.00034579,0.00034078,0.00032503,0.00031657,0.00024589,0.00020773,0.00018355,0.0001712,0.00014789,0.00013046,0.00012744,0.00010668,9.6385e-05,8.5093e-05,6.9529e-05,5.3113e-05,5.22e-05,4.761e-05,4.4651e-05,4.338e-05,3.1795e-05,2.9179e-05,1.9659e-05,1.7597e-05,1.4458e-05,1.3006e-05,1.2566e-05,1.0408e-05,1.0157e-05,9.6269e-06,8.5597e-06,6.8299e-06 1,3.5587e-19,5.6002e-19,5.7285e-19,6.5652e-19,7.2905e-19,8.3652e-19,1.0917e-18,2.0499e-18,3.0526e-18,3.2447e-18,4.4472e-18,4.6816e-18,5.74e-18,9.4053e-18,1.0975e-17,1.2215e-17,1.9395e-17,2.0992e-17,2.2916e-17,3.0743e-17,3.1727e-17,3.2307e-17,4.0384e-17,4.6058e-17,4.6256e-17,5.9494e-17,6.0871e-17,6.818e-17,6.9205e-17,7.0216e-17,1.5102e-16,3.116e-16,3.3257e-16,4.1104e-16,4.9634e-16,5.744e-16,6.8285e-16,8.3449e-16,1.186e-15,1.4382e-15,1.9653e-15,2.9053e-15,3.0116e-15,3.2509e-15,3.4885e-15,5.0304e-15,5.0332e-15,1.1961e-14,1.2749e-14,1.3208e-14,1.7077e-14,1.7402e-14,2.8726e-14,3.4944e-14,3.7907e-14,4.53e-14,5.072e-14,6.1541e-14,6.5339e-14,1.0334e-13,1.3688e-13,3.284e-13,4.166e-13,4.5099e-13,5.1967e-13,7.6566e-13,8.2871e-13,8.8891e-13,1.2343e-12,1.6762e-12,1.8765e-12,2.0577e-12,2.871e-12,4.6267e-12,7.6148e-12,1.0623e-11,1.1388e-11,2.11e-11,2.6071e-11,2.8766e-11,3.0048e-11,3.5839e-11,7.3565e-11,7.5276e-11,8.5244e-11,1.0377e-10,1.0785e-10,1.4259e-10,3.0513e-10,3.0819e-10,3.8106e-10,4.1113e-10,9.6883e-10,1.1987e-09,1.2176e-09,1.4712e-09,1.8982e-09,1.9078e-09,1.9474e-09,2.2691e-09,2.2722e-09,2.6088e-09,2.7516e-09,5.8493e-09,8.1058e-09,8.1954e-09,1.1826e-08,1.3039e-08,1.5157e-08,1.6305e-08,1.7021e-08,1.7848e-08,1.8127e-08,1.889e-08,2.2293e-08,2.2726e-08,2.3643e-08,2.4422e-08,3.1155e-08,4.0941e-08,5.7982e-08,6.6037e-08,8.6799e-08,1.1745e-07,1.3327e-07,1.4222e-07,2.8899e-07,3.1334e-07,3.3249e-07,3.7386e-07,4.3367e-07,4.9286e-07,5.4658e-07,5.5671e-07,5.6316e-07,6.4114e-07,8.9887e-07,9.2134e-07,1.051e-06,1.2872e-06,1.4386e-06,1.4648e-06,2.7403e-06,2.7583e-06,3.116e-06,3.9479e-06,4.1207e-06,4.8309e-06,5.0149e-06,6.5032e-06,7.6923e-06,1.1215e-05,1.1316e-05,1.7273e-05,1.8118e-05,1.8395e-05,2.4078e-05,2.4491e-05,2.6961e-05,3.0578e-05,3.1799e-05,3.2753e-05,3.6783e-05,3.7494e-05,3.7965e-05,4.16e-05,4.2948e-05,4.3307e-05,4.6695e-05,4.7974e-05,5.5678e-05,7.1087e-05,7.4225e-05,7.5082e-05,8.364e-05,8.7439e-05,0.00010464,0.00014273,0.00015696,0.00018222,0.00019243,0.00022365,0.00025935,0.00026248,0.00026494,0.00026523,0.00027697,0.00027799,0.00031816,0.00033835,0.00037958,0.00038152,0.0003935,0.00047901,0.00048174,0.00052849,0.00058678,0.0007059,0.00072313,0.0007745,0.00078645,0.00081742,0.00087184,0.00096176,0.00096433,0.0012014,0.0015356,0.0015758,0.0016213,0.0016357,0.00189,0.0020639,0.002767,0.0028092,0.0028961,0.0030482,0.0036786,0.0044586,0.0054795,0.005825,0.0060403,0.0066193,0.0079411,0.0085929,0.0095086,0.011084,0.012624,0.012921,0.0165,0.01703,0.017227,0.018214,0.01862,0.022151,0.023833,0.02434,0.024392,0.025486,0.027029,0.02777,0.028105,0.034567,0.034576,0.04143,0.050614,0.060524,0.070993,0.075947,0.077289,0.080502,0.083394,0.090531,0.091346,0.10653,0.11065,0.11928,0.13068,0.13797,0.13881,0.14498,0.14923,0.16005,0.17714,0.17881,0.18676,0.19979,0.21081,0.21134,0.25246,0.25963,0.26311,0.27217,0.27695,0.28458,0.29698,0.30207,0.30924,0.32098,0.33651,0.35169,0.35324,0.37226,0.38503,0.39644,0.42292,0.43525,0.43976,0.4559,0.45688,0.46403,0.46719,0.50967,0.52071,0.52502,0.54475,0.55625,0.558,0.58496,0.63678,0.65212,0.66,0.67827,0.67983,0.70016,0.70237,0.72816,0.74307,0.77233,0.77493,0.77736,0.77872,0.78313,0.78671,0.78888,0.81136,0.81595,0.85751,0.87052,0.87888,0.88212,0.90763,0.90805,0.91586,0.91941,0.9362,0.93671,0.93789,0.94908,0.95199,0.95301,0.95604,0.95981,0.96323,0.96495,0.97975,0.9802,0.9863,0.99338,0.99773,1,1,0.99972,0.99858,0.99574,0.9957,0.99436,0.98565,0.98308,0.98278,0.96643,0.96216,0.95959,0.95118,0.94214,0.92371,0.92062,0.905,0.86598,0.86542,0.86199,0.85489,0.84922,0.84213,0.83362,0.74805,0.72412,0.68666,0.65837,0.65697,0.65375,0.61123,0.6013,0.60047,0.55992,0.49262,0.49052,0.47119,0.46722,0.42404,0.41227,0.3871,0.37428,0.36036,0.35768,0.34158,0.33879,0.33746,0.30268,0.29271,0.28857,0.27538,0.27131,0.25311,0.24907,0.24108,0.2219,0.22173,0.21289,0.20997,0.20996,0.19154,0.19098,0.18374,0.17632,0.16089,0.14785,0.13899,0.12573,0.11435,0.10079,0.10027,0.090772,0.082329,0.077656,0.066194,0.063108,0.057208,0.053939,0.047614,0.046983,0.045705,0.042863,0.037396,0.032408,0.030005,0.027761,0.026649,0.026495,0.024586,0.022529,0.017148,0.015922,0.01528,0.013943,0.013934,0.012721,0.012577,0.011816,0.011235,0.0094612,0.0092264,0.0080477,0.0070743,0.00459,0.0042234,0.0040561,0.0036458,0.0032957,0.0031709,0.0029346,0.0027749,0.0025879,0.0023041,0.0023027,0.0018635,0.0017606,0.0017398,0.0017288,0.0013877,0.0013807,0.0013502,0.0013276,0.0012707,0.0011814,0.0011064,0.00082368,0.00043071,0.00035327,0.0003471,0.00034207,0.00032627,0.00031777,0.00024684,0.00020854,0.00018427,0.00017188,0.00014848,0.00013098,0.00012795,0.00010711,9.6777e-05,8.5441e-05,6.9817e-05,5.3336e-05,5.242e-05,4.7811e-05,4.484e-05,4.3564e-05,3.1932e-05,2.9306e-05,1.9745e-05,1.7675e-05,1.4523e-05,1.3064e-05,1.2622e-05,1.0456e-05,1.0203e-05,9.6706e-06,8.5988e-06,6.8614e-06 1,2.863e-19,4.5106e-19,4.6143e-19,5.2901e-19,5.8761e-19,6.7446e-19,8.8084e-19,1.6567e-18,2.4695e-18,2.6254e-18,3.6013e-18,3.7916e-18,4.6514e-18,7.6315e-18,8.9087e-18,9.9185e-18,1.5768e-17,1.707e-17,1.8639e-17,2.5024e-17,2.5828e-17,2.6301e-17,3.2897e-17,3.7532e-17,3.7693e-17,4.8514e-17,4.964e-17,5.5618e-17,5.6456e-17,5.7283e-17,1.2347e-16,2.5526e-16,2.7248e-16,3.3698e-16,4.0712e-16,4.7135e-16,5.6061e-16,6.8549e-16,9.7523e-16,1.1832e-15,1.6184e-15,2.3951e-15,2.483e-15,2.6808e-15,2.8774e-15,4.1535e-15,4.1559e-15,9.9012e-15,1.0555e-14,1.0936e-14,1.4151e-14,1.4421e-14,2.3841e-14,2.9019e-14,3.1486e-14,3.7648e-14,4.2166e-14,5.1193e-14,5.4361e-14,8.6094e-14,1.1414e-13,2.7458e-13,3.4858e-13,3.7746e-13,4.3513e-13,6.4188e-13,6.9491e-13,7.4556e-13,1.0363e-12,1.4087e-12,1.5776e-12,1.7305e-12,2.4171e-12,3.9012e-12,6.4312e-12,8.9819e-12,9.6312e-12,1.7881e-11,2.2109e-11,2.4403e-11,2.5494e-11,3.0426e-11,6.2607e-11,6.4069e-11,7.2584e-11,8.8422e-11,9.1906e-11,1.2163e-10,2.6098e-10,2.636e-10,3.2618e-10,3.5202e-10,8.321e-10,1.0303e-09,1.0466e-09,1.2655e-09,1.6344e-09,1.6426e-09,1.6769e-09,1.955e-09,1.9577e-09,2.2489e-09,2.3724e-09,5.0578e-09,7.0177e-09,7.0955e-09,1.0254e-08,1.1309e-08,1.3154e-08,1.4154e-08,1.4779e-08,1.55e-08,1.5743e-08,1.6408e-08,1.9377e-08,1.9754e-08,2.0555e-08,2.1235e-08,2.7116e-08,3.5673e-08,5.0592e-08,5.7651e-08,7.5862e-08,1.0278e-07,1.1668e-07,1.2455e-07,2.5386e-07,2.7534e-07,2.9225e-07,3.2878e-07,3.8162e-07,4.3394e-07,4.8147e-07,4.9043e-07,4.9614e-07,5.6515e-07,7.9353e-07,8.1346e-07,9.2847e-07,1.1382e-06,1.2727e-06,1.296e-06,2.4314e-06,2.4475e-06,2.7665e-06,3.509e-06,3.6633e-06,4.2979e-06,4.4624e-06,5.794e-06,6.859e-06,1.0019e-05,1.0109e-05,1.5464e-05,1.6224e-05,1.6474e-05,2.1592e-05,2.1964e-05,2.4192e-05,2.7454e-05,2.8556e-05,2.9418e-05,3.3058e-05,3.37e-05,3.4126e-05,3.741e-05,3.863e-05,3.8954e-05,4.2018e-05,4.3175e-05,5.0148e-05,6.411e-05,6.6956e-05,6.7733e-05,7.5498e-05,7.8946e-05,9.4568e-05,0.00012922,0.00014217,0.00016519,0.0001745,0.00020299,0.00023559,0.00023846,0.00024071,0.00024097,0.0002517,0.00025263,0.00028936,0.00030784,0.00034559,0.00034736,0.00035833,0.00043672,0.00043923,0.00048212,0.00053563,0.0006451,0.00066095,0.0007082,0.0007192,0.0007477,0.0007978,0.00088063,0.000883,0.0011016,0.0014103,0.0014474,0.0014895,0.0015029,0.0017381,0.0018992,0.0025513,0.0025905,0.0026712,0.0028125,0.0033985,0.0041248,0.0050768,0.0053994,0.0056004,0.0061413,0.0073778,0.0079881,0.0088463,0.010324,0.011771,0.01205,0.015418,0.015918,0.016103,0.017034,0.017416,0.02075,0.02234,0.022819,0.022868,0.023903,0.025363,0.026065,0.026382,0.032508,0.032516,0.039027,0.047769,0.057222,0.067228,0.07197,0.073255,0.076332,0.079104,0.085949,0.086731,0.10132,0.10528,0.11359,0.12457,0.13161,0.13242,0.13838,0.14249,0.15294,0.1695,0.17111,0.17882,0.19146,0.20217,0.20268,0.24271,0.2497,0.2531,0.26195,0.26661,0.27407,0.28619,0.29117,0.29819,0.30969,0.32492,0.33981,0.34134,0.36003,0.37259,0.38383,0.40993,0.4221,0.42655,0.44251,0.44348,0.45055,0.45368,0.49577,0.50674,0.51101,0.53063,0.54208,0.54382,0.5707,0.62251,0.63789,0.64579,0.66414,0.66572,0.68617,0.6884,0.71441,0.72949,0.75915,0.76178,0.76425,0.76563,0.77011,0.77375,0.77597,0.79886,0.80356,0.84614,0.85955,0.86817,0.87153,0.89801,0.89845,0.90661,0.91032,0.92797,0.9285,0.92975,0.94161,0.94472,0.9458,0.94904,0.95309,0.95677,0.95863,0.97482,0.97532,0.98218,0.99042,0.99587,0.9997,0.99972,1,0.99956,0.99764,0.99761,0.99658,0.98934,0.98709,0.98683,0.97213,0.96821,0.96584,0.95803,0.94957,0.93217,0.92923,0.91433,0.87676,0.87622,0.8729,0.86601,0.8605,0.85361,0.84532,0.7614,0.73776,0.70064,0.67253,0.67113,0.66792,0.62552,0.61559,0.61477,0.57416,0.5065,0.50438,0.48488,0.48087,0.43722,0.42529,0.39977,0.38675,0.3726,0.36987,0.35349,0.35064,0.3493,0.31383,0.30364,0.29941,0.28593,0.28176,0.26312,0.25899,0.25079,0.2311,0.23092,0.22184,0.21884,0.21883,0.19987,0.19929,0.19184,0.18418,0.16826,0.15478,0.14562,0.13188,0.12007,0.10598,0.10544,0.095555,0.086757,0.081883,0.069911,0.066685,0.06051,0.057084,0.050451,0.049789,0.048448,0.045463,0.039714,0.034462,0.031928,0.029561,0.028387,0.028225,0.026208,0.024033,0.018335,0.017034,0.016353,0.014934,0.014924,0.013635,0.013481,0.012672,0.012054,0.010164,0.009914,0.0086565,0.0076168,0.0049577,0.0045645,0.0043849,0.0039443,0.0035681,0.0034339,0.0031797,0.0030078,0.0028064,0.0025007,0.0024991,0.0020253,0.0019142,0.0018917,0.0018799,0.0015112,0.0015036,0.0014706,0.0014461,0.0013846,0.0012879,0.0012066,0.00089995,0.00047246,0.00038797,0.00038123,0.00037574,0.00035848,0.0003492,0.00027165,0.00022973,0.00020314,0.00018955,0.00016388,0.00014467,0.00014134,0.00011843,0.00010707,9.4592e-05,7.7379e-05,5.9197e-05,5.8186e-05,5.3096e-05,4.9814e-05,4.8404e-05,3.5537e-05,3.2629e-05,2.2029e-05,1.973e-05,1.6227e-05,1.4605e-05,1.4113e-05,1.1702e-05,1.142e-05,1.0827e-05,9.6329e-06,7.695e-06 1,2.1757e-19,3.4329e-19,3.512e-19,4.0281e-19,4.4759e-19,5.1398e-19,6.7183e-19,1.2662e-18,1.8899e-18,2.0096e-18,2.7595e-18,2.9058e-18,3.5671e-18,5.8622e-18,6.8468e-18,7.6257e-18,1.2142e-17,1.3148e-17,1.436e-17,1.93e-17,1.9921e-17,2.0288e-17,2.5395e-17,2.8986e-17,2.9111e-17,3.75e-17,3.8374e-17,4.3012e-17,4.3662e-17,4.4304e-17,9.5745e-17,1.9844e-16,2.1189e-16,2.6223e-16,3.1703e-16,3.6723e-16,4.3705e-16,5.3478e-16,7.6177e-16,9.2488e-16,1.2664e-15,1.8769e-15,1.946e-15,2.1017e-15,2.2563e-15,3.2614e-15,3.2632e-15,7.7994e-15,8.3164e-15,8.618e-15,1.1161e-14,1.1376e-14,1.8842e-14,2.295e-14,2.491e-14,2.9804e-14,3.3395e-14,4.0574e-14,4.3095e-14,6.8371e-14,9.0744e-14,2.1904e-13,2.7833e-13,3.0148e-13,3.4774e-13,5.1375e-13,5.5637e-13,5.9709e-13,8.3101e-13,1.131e-12,1.2672e-12,1.3906e-12,1.9449e-12,3.1452e-12,5.1956e-12,7.2663e-12,7.7938e-12,1.4507e-11,1.7954e-11,1.9825e-11,2.0715e-11,2.4741e-11,5.1067e-11,5.2265e-11,5.9243e-11,7.2232e-11,7.5091e-11,9.9496e-11,2.1421e-10,2.1638e-10,2.68e-10,2.8933e-10,6.8659e-10,8.5099e-10,8.6449e-10,1.0462e-09,1.3528e-09,1.3597e-09,1.3881e-09,1.6195e-09,1.6218e-09,1.8642e-09,1.9671e-09,4.2088e-09,5.8489e-09,5.9141e-09,8.5616e-09,9.4477e-09,1.0997e-08,1.1837e-08,1.2362e-08,1.2969e-08,1.3173e-08,1.3733e-08,1.623e-08,1.6548e-08,1.7222e-08,1.7795e-08,2.2751e-08,2.9972e-08,4.2582e-08,4.8556e-08,6.3985e-08,8.6822e-08,9.8635e-08,1.0532e-07,2.1548e-07,2.3382e-07,2.4826e-07,2.7947e-07,3.2465e-07,3.6942e-07,4.1011e-07,4.1779e-07,4.2268e-07,4.8182e-07,6.778e-07,6.9492e-07,7.9376e-07,9.7415e-07,1.09e-06,1.11e-06,2.0902e-06,2.1041e-06,2.38e-06,3.023e-06,3.1567e-06,3.7071e-06,3.8499e-06,5.0065e-06,5.9328e-06,8.6862e-06,8.7651e-06,1.3443e-05,1.4108e-05,1.4327e-05,1.8811e-05,1.9137e-05,2.1091e-05,2.3954e-05,2.4923e-05,2.5679e-05,2.8878e-05,2.9443e-05,2.9817e-05,3.2707e-05,3.3781e-05,3.4066e-05,3.6764e-05,3.7783e-05,4.3929e-05,5.6252e-05,5.8766e-05,5.9453e-05,6.6318e-05,6.9367e-05,8.3196e-05,0.00011393,0.00012543,0.0001459,0.00015418,0.00017954,0.0002086,0.00021116,0.00021317,0.0002134,0.00022297,0.0002238,0.0002566,0.00027311,0.00030686,0.00030845,0.00031826,0.00038846,0.00039071,0.00042917,0.00047718,0.00057553,0.00058977,0.00063228,0.00064218,0.00066782,0.00071294,0.00078757,0.0007897,0.00098693,0.0012661,0.0012997,0.0013378,0.0013499,0.0015631,0.0017092,0.0023017,0.0023374,0.0024108,0.0025395,0.0030737,0.003737,0.0046082,0.0049037,0.005088,0.0055843,0.0067201,0.0072815,0.0080717,0.0094346,0.010771,0.011029,0.014146,0.014609,0.014781,0.015644,0.016,0.019097,0.020577,0.021023,0.021068,0.022033,0.023393,0.024048,0.024344,0.030067,0.030074,0.036171,0.04438,0.05328,0.062724,0.067206,0.068422,0.071335,0.07396,0.080448,0.08119,0.095046,0.09882,0.10673,0.1172,0.12392,0.1247,0.1304,0.13432,0.14434,0.16021,0.16177,0.16917,0.18133,0.19164,0.19214,0.2308,0.23756,0.24085,0.24942,0.25395,0.26118,0.27295,0.27779,0.28462,0.29581,0.31065,0.32518,0.32667,0.34493,0.35722,0.36823,0.39384,0.40579,0.41017,0.42587,0.42683,0.4338,0.43688,0.47845,0.4893,0.49353,0.51298,0.52435,0.52608,0.55281,0.60452,0.61992,0.62785,0.64627,0.64786,0.66844,0.67069,0.69694,0.71219,0.74229,0.74497,0.74748,0.74888,0.75345,0.75716,0.75941,0.7828,0.7876,0.83139,0.84526,0.85421,0.8577,0.88535,0.88582,0.89438,0.8983,0.91698,0.91755,0.91888,0.93156,0.9349,0.93607,0.93957,0.94395,0.94796,0.94999,0.96788,0.96845,0.97624,0.98591,0.99275,0.99853,0.99858,0.99956,1,0.99923,0.99922,0.99859,0.99321,0.99139,0.99117,0.97858,0.9751,0.97299,0.96597,0.95825,0.94217,0.93944,0.92547,0.8898,0.88929,0.88611,0.87951,0.87422,0.86759,0.8596,0.77791,0.75469,0.71807,0.69023,0.68885,0.68566,0.64347,0.63356,0.63274,0.59212,0.52409,0.52196,0.50227,0.49823,0.45402,0.44192,0.41597,0.40271,0.38828,0.3855,0.36878,0.36587,0.36449,0.32818,0.31773,0.31339,0.29953,0.29524,0.27607,0.2718,0.26335,0.24303,0.24284,0.23346,0.23035,0.23034,0.2107,0.2101,0.20237,0.19442,0.17787,0.16384,0.15428,0.13993,0.12757,0.11281,0.11224,0.10185,0.092597,0.087462,0.074829,0.071418,0.064884,0.061256,0.05422,0.053517,0.052093,0.04892,0.042803,0.037203,0.034498,0.031967,0.030712,0.030538,0.028379,0.026049,0.019931,0.018531,0.017797,0.016267,0.016257,0.014866,0.014701,0.013827,0.013159,0.011115,0.010844,0.0094808,0.0083524,0.0054583,0.0050291,0.004833,0.0043515,0.0039399,0.0037931,0.0035146,0.0033262,0.0031054,0.0027698,0.0027681,0.0022473,0.002125,0.0021003,0.0020872,0.0016809,0.0016726,0.0016361,0.0016092,0.0015412,0.0014344,0.0013446,0.0010052,0.00053037,0.00043618,0.00042865,0.00042253,0.00040326,0.0003929,0.00030621,0.00025927,0.00022946,0.00021422,0.0001854,0.00016381,0.00016007,0.00013429,0.00012149,0.00010743,8.7999e-05,6.7444e-05,6.63e-05,6.0537e-05,5.6819e-05,5.5221e-05,4.0625e-05,3.7321e-05,2.5261e-05,2.2641e-05,1.8644e-05,1.6792e-05,1.623e-05,1.3472e-05,1.315e-05,1.2472e-05,1.1104e-05,8.8822e-06 1,1.5125e-19,2.391e-19,2.4464e-19,2.8076e-19,3.121e-19,3.5861e-19,4.6928e-19,8.8683e-19,1.326e-18,1.4103e-18,1.9393e-18,2.0426e-18,2.5097e-18,4.1334e-18,4.831e-18,5.3831e-18,8.5886e-18,9.3038e-18,1.0166e-17,1.368e-17,1.4123e-17,1.4384e-17,1.8023e-17,2.0584e-17,2.0673e-17,2.6661e-17,2.7284e-17,3.0598e-17,3.1062e-17,3.1521e-17,6.8358e-17,1.4216e-16,1.5183e-16,1.8809e-16,2.276e-16,2.6382e-16,3.1423e-16,3.8486e-16,5.4912e-16,6.673e-16,9.1508e-16,1.3587e-15,1.409e-15,1.5223e-15,1.6348e-15,2.3672e-15,2.3686e-15,5.6848e-15,6.0636e-15,6.2846e-15,8.1497e-15,8.3067e-15,1.3793e-14,1.6817e-14,1.826e-14,2.1867e-14,2.4516e-14,2.9815e-14,3.1677e-14,5.0372e-14,6.6951e-14,1.6233e-13,2.0653e-13,2.238e-13,2.5832e-13,3.8242e-13,4.1432e-13,4.4481e-13,6.2015e-13,8.4541e-13,9.4776e-13,1.0405e-12,1.4579e-12,2.3637e-12,3.9154e-12,5.4858e-12,5.8863e-12,1.0994e-11,1.3622e-11,1.505e-11,1.573e-11,1.8806e-11,3.8975e-11,3.9895e-11,4.5254e-11,5.5238e-11,5.7437e-11,7.6227e-11,1.6485e-10,1.6653e-10,2.0651e-10,2.2305e-10,5.3205e-10,6.6029e-10,6.7084e-10,8.1279e-10,1.0526e-09,1.058e-09,1.0803e-09,1.2616e-09,1.2633e-09,1.4534e-09,1.5342e-09,3.298e-09,4.5928e-09,4.6444e-09,6.7394e-09,7.4416e-09,8.6705e-09,9.3375e-09,9.7541e-09,1.0236e-08,1.0398e-08,1.0843e-08,1.2829e-08,1.3082e-08,1.3618e-08,1.4074e-08,1.8023e-08,2.3787e-08,3.3874e-08,3.866e-08,5.104e-08,6.9402e-08,7.8913e-08,8.4303e-08,1.7334e-07,1.882e-07,1.9991e-07,2.2523e-07,2.6192e-07,2.9832e-07,3.3142e-07,3.3767e-07,3.4165e-07,3.8983e-07,5.4976e-07,5.6375e-07,6.4456e-07,7.9225e-07,8.8721e-07,9.0364e-07,1.7097e-06,1.7212e-06,1.9487e-06,2.4798e-06,2.5903e-06,3.0458e-06,3.164e-06,4.1231e-06,4.8925e-06,7.1852e-06,7.251e-06,1.116e-05,1.1717e-05,1.19e-05,1.5659e-05,1.5933e-05,1.7574e-05,1.9982e-05,2.0797e-05,2.1434e-05,2.4128e-05,2.4604e-05,2.492e-05,2.7357e-05,2.8262e-05,2.8503e-05,3.078e-05,3.1641e-05,3.6836e-05,4.7273e-05,4.9404e-05,4.9987e-05,5.5813e-05,5.8403e-05,7.016e-05,9.6351e-05,0.00010618,0.00012367,0.00013076,0.00015249,0.00017742,0.00017962,0.00018134,0.00018154,0.00018977,0.00019048,0.00021868,0.00023289,0.00026196,0.00026333,0.00027179,0.00033239,0.00033433,0.00036758,0.00040914,0.0004944,0.00050676,0.00054367,0.00055227,0.00057455,0.00061378,0.00067873,0.00068058,0.00085254,0.0010966,0.001126,0.0011594,0.0011699,0.0013569,0.0014852,0.0020067,0.0020381,0.0021029,0.0022164,0.0026885,0.0032761,0.0040499,0.0043128,0.0044769,0.0049191,0.005933,0.0064351,0.0071427,0.0083653,0.0095663,0.0097983,0.01261,0.013028,0.013184,0.013964,0.014285,0.017092,0.018436,0.018841,0.018883,0.01976,0.020998,0.021594,0.021864,0.027086,0.027093,0.032676,0.040219,0.048425,0.057161,0.061317,0.062445,0.065149,0.067588,0.073625,0.074315,0.087242,0.09077,0.09817,0.108,0.11431,0.11504,0.1204,0.1241,0.13354,0.14854,0.15001,0.15702,0.16855,0.17835,0.17881,0.21567,0.22214,0.22529,0.2335,0.23783,0.24477,0.25607,0.26072,0.26729,0.27807,0.29238,0.30641,0.30786,0.32554,0.33746,0.34815,0.37306,0.38472,0.38899,0.40433,0.40527,0.41208,0.4151,0.45589,0.46657,0.47074,0.48992,0.50115,0.50286,0.52934,0.5808,0.59619,0.60412,0.62259,0.62418,0.64488,0.64713,0.67363,0.68906,0.71964,0.72238,0.72494,0.72637,0.73102,0.73481,0.73711,0.76107,0.766,0.81123,0.82566,0.83501,0.83866,0.86775,0.86824,0.87733,0.88148,0.90147,0.90208,0.90351,0.91723,0.92087,0.92214,0.92596,0.93077,0.93519,0.93743,0.95752,0.95816,0.96715,0.97869,0.98732,0.99566,0.99574,0.99764,0.99923,1,1,0.9999,0.99699,0.99574,0.99559,0.98583,0.98296,0.98119,0.97522,0.96853,0.95425,0.9518,0.93912,0.9061,0.90561,0.90264,0.89644,0.89146,0.8852,0.87764,0.79918,0.77659,0.74075,0.71334,0.71198,0.70883,0.66705,0.6572,0.65638,0.61586,0.54752,0.54536,0.52548,0.52138,0.47654,0.46423,0.43776,0.42421,0.40945,0.4066,0.38944,0.38645,0.38504,0.34766,0.33687,0.33239,0.31806,0.31362,0.29373,0.28931,0.28052,0.25937,0.25917,0.24938,0.24614,0.24613,0.2256,0.22497,0.21687,0.20854,0.19114,0.17637,0.16628,0.15111,0.13801,0.12233,0.12172,0.11066,0.10077,0.095281,0.081741,0.078078,0.07105,0.067141,0.059548,0.058788,0.057248,0.053816,0.047186,0.041101,0.038156,0.035398,0.034028,0.033838,0.03148,0.028932,0.022221,0.020681,0.019873,0.018187,0.018176,0.016641,0.016458,0.015493,0.014754,0.01249,0.012189,0.010676,0.0094202,0.0061886,0.0057076,0.0054877,0.0049472,0.0044845,0.0043193,0.0040058,0.0037935,0.0035445,0.0031656,0.0031636,0.0025745,0.0024359,0.0024079,0.0023931,0.0019318,0.0019224,0.0018809,0.0018503,0.0017729,0.0016514,0.001549,0.0011617,0.00061697,0.00050839,0.0004997,0.00049263,0.00047038,0.00045842,0.00035814,0.00030374,0.00026913,0.00025142,0.00021789,0.00019275,0.00018838,0.0001583,0.00014335,0.0001269,0.00010414,8.0003e-05,7.8658e-05,7.1879e-05,6.7503e-05,6.5621e-05,4.8405e-05,4.4502e-05,3.0222e-05,2.7113e-05,2.2364e-05,2.0159e-05,1.949e-05,1.6203e-05,1.582e-05,1.501e-05,1.3376e-05,1.0719e-05 1,1.5064e-19,2.3814e-19,2.4365e-19,2.7963e-19,3.1085e-19,3.5717e-19,4.674e-19,8.8332e-19,1.3208e-18,1.4048e-18,1.9317e-18,2.0346e-18,2.4999e-18,4.1174e-18,4.8123e-18,5.3622e-18,8.5556e-18,9.268e-18,1.0127e-17,1.3628e-17,1.4069e-17,1.4329e-17,1.7954e-17,2.0505e-17,2.0594e-17,2.6559e-17,2.7181e-17,3.0482e-17,3.0945e-17,3.1402e-17,6.8102e-17,1.4163e-16,1.5127e-16,1.874e-16,2.2676e-16,2.6285e-16,3.1307e-16,3.8345e-16,5.4712e-16,6.6488e-16,9.1178e-16,1.3538e-15,1.404e-15,1.5168e-15,1.629e-15,2.3588e-15,2.3601e-15,5.6649e-15,6.0423e-15,6.2625e-15,8.1212e-15,8.2777e-15,1.3745e-14,1.6759e-14,1.8197e-14,2.1792e-14,2.4432e-14,2.9713e-14,3.1568e-14,5.0201e-14,6.6724e-14,1.6179e-13,2.0584e-13,2.2305e-13,2.5747e-13,3.8117e-13,4.1296e-13,4.4335e-13,6.1813e-13,8.4267e-13,9.447e-13,1.0372e-12,1.4532e-12,2.3562e-12,3.903e-12,5.4686e-12,5.8679e-12,1.0961e-11,1.358e-11,1.5004e-11,1.5682e-11,1.8748e-11,3.8858e-11,3.9775e-11,4.5118e-11,5.5073e-11,5.7265e-11,7.6001e-11,1.6437e-10,1.6604e-10,2.0591e-10,2.224e-10,5.3053e-10,6.5843e-10,6.6894e-10,8.1051e-10,1.0497e-09,1.055e-09,1.0773e-09,1.2581e-09,1.2598e-09,1.4494e-09,1.5299e-09,3.2891e-09,4.5805e-09,4.6319e-09,6.7214e-09,7.4218e-09,8.6475e-09,9.3128e-09,9.7283e-09,1.0209e-08,1.0371e-08,1.0814e-08,1.2795e-08,1.3048e-08,1.3583e-08,1.4037e-08,1.7976e-08,2.3725e-08,3.3788e-08,3.8562e-08,5.0912e-08,6.9228e-08,7.8717e-08,8.4094e-08,1.7292e-07,1.8775e-07,1.9943e-07,2.2469e-07,2.6129e-07,2.9761e-07,3.3064e-07,3.3687e-07,3.4084e-07,3.8891e-07,5.4848e-07,5.6243e-07,6.4307e-07,7.9042e-07,8.8518e-07,9.0156e-07,1.7059e-06,1.7173e-06,1.9444e-06,2.4743e-06,2.5846e-06,3.0391e-06,3.1571e-06,4.1142e-06,4.882e-06,7.17e-06,7.2357e-06,1.1137e-05,1.1692e-05,1.1875e-05,1.5627e-05,1.5901e-05,1.7539e-05,1.9942e-05,2.0755e-05,2.139e-05,2.408e-05,2.4555e-05,2.487e-05,2.7302e-05,2.8206e-05,2.8446e-05,3.0719e-05,3.1579e-05,3.6764e-05,4.7181e-05,4.9309e-05,4.989e-05,5.5705e-05,5.8291e-05,7.0027e-05,9.617e-05,0.00010598,0.00012344,0.00013052,0.00015221,0.0001771,0.00017929,0.00018101,0.00018121,0.00018942,0.00019014,0.00021829,0.00023247,0.0002615,0.00026287,0.00027132,0.00033181,0.00033375,0.00036695,0.00040844,0.00049356,0.0005059,0.00054275,0.00055134,0.00057359,0.00061275,0.0006776,0.00067945,0.00085115,0.0010948,0.0011242,0.0011575,0.0011681,0.0013547,0.0014828,0.0020036,0.002035,0.0020997,0.0022131,0.0026845,0.0032713,0.0040441,0.0043066,0.0044705,0.0049121,0.0059248,0.0064263,0.0071329,0.008354,0.0095536,0.0097853,0.012593,0.013011,0.013167,0.013946,0.014267,0.017071,0.018414,0.018818,0.01886,0.019736,0.020972,0.021568,0.021837,0.027055,0.027062,0.032639,0.040174,0.048373,0.057101,0.061254,0.062381,0.065083,0.06752,0.073552,0.074241,0.087158,0.090684,0.098078,0.1079,0.11421,0.11494,0.12029,0.12399,0.13342,0.14841,0.14988,0.15689,0.16841,0.1782,0.17867,0.21551,0.22197,0.22512,0.23332,0.23766,0.24459,0.25589,0.26054,0.2671,0.27787,0.29218,0.30621,0.30765,0.32532,0.33724,0.34793,0.37284,0.38449,0.38876,0.4041,0.40503,0.41184,0.41486,0.45564,0.46632,0.47049,0.48967,0.5009,0.50261,0.52908,0.58054,0.59593,0.60386,0.62232,0.62391,0.64461,0.64687,0.67337,0.68881,0.71939,0.72212,0.72469,0.72611,0.73077,0.73456,0.73686,0.76082,0.76576,0.811,0.82544,0.83479,0.83844,0.86755,0.86804,0.87713,0.88129,0.90129,0.9019,0.90333,0.91707,0.92071,0.92198,0.92581,0.93062,0.93504,0.93728,0.9574,0.95804,0.96704,0.9786,0.98725,0.99562,0.9957,0.99761,0.99922,1,1,0.99991,0.99702,0.99578,0.99563,0.9859,0.98304,0.98127,0.97531,0.96863,0.95438,0.95193,0.93926,0.90627,0.90579,0.90282,0.89662,0.89165,0.88539,0.87783,0.79941,0.77683,0.741,0.7136,0.71223,0.70908,0.66731,0.65746,0.65664,0.61612,0.54778,0.54562,0.52573,0.52164,0.4768,0.46448,0.43801,0.42445,0.40969,0.40684,0.38967,0.38668,0.38527,0.34788,0.33709,0.3326,0.31827,0.31383,0.29393,0.28951,0.28072,0.25955,0.25936,0.24957,0.24631,0.24631,0.22577,0.22514,0.21703,0.2087,0.19129,0.17651,0.16641,0.15124,0.13813,0.12244,0.12183,0.11076,0.10087,0.095371,0.081821,0.078155,0.071121,0.067209,0.059609,0.058849,0.057308,0.053873,0.047236,0.041146,0.038199,0.035438,0.034066,0.033877,0.031516,0.028965,0.022247,0.020706,0.019898,0.01821,0.018199,0.016662,0.016479,0.015512,0.014773,0.012506,0.012205,0.01069,0.0094327,0.0061972,0.0057156,0.0054954,0.0049542,0.0044909,0.0043255,0.0040115,0.003799,0.0035496,0.0031702,0.0031683,0.0025784,0.0024396,0.0024115,0.0023967,0.0019348,0.0019253,0.0018838,0.0018531,0.0017757,0.001654,0.0015514,0.0011635,0.000618,0.00050925,0.00050055,0.00049347,0.00047119,0.0004592,0.00035877,0.00030427,0.00026961,0.00025186,0.00021828,0.00019309,0.00018872,0.00015859,0.00014361,0.00012713,0.00010433,8.0155e-05,7.8807e-05,7.2016e-05,6.7632e-05,6.5746e-05,4.8499e-05,4.4589e-05,3.0282e-05,2.7167e-05,2.2409e-05,2.02e-05,1.953e-05,1.6237e-05,1.5852e-05,1.504e-05,1.3404e-05,1.0742e-05 1,1.3278e-19,2.1005e-19,2.1492e-19,2.467e-19,2.7429e-19,3.1523e-19,4.1268e-19,7.8064e-19,1.1679e-18,1.2423e-18,1.7092e-18,1.8003e-18,2.2127e-18,3.6471e-18,4.2637e-18,4.7517e-18,7.5869e-18,8.2197e-18,8.9824e-18,1.2093e-17,1.2485e-17,1.2717e-17,1.5939e-17,1.8208e-17,1.8287e-17,2.3593e-17,2.4146e-17,2.7084e-17,2.7496e-17,2.7902e-17,6.0586e-17,1.2614e-16,1.3474e-16,1.6698e-16,2.0211e-16,2.3434e-16,2.7919e-16,3.4206e-16,4.8835e-16,5.9365e-16,8.1451e-16,1.2102e-15,1.2551e-15,1.3561e-15,1.4566e-15,2.1105e-15,2.1116e-15,5.0758e-15,5.4146e-15,5.6123e-15,7.2811e-15,7.4217e-15,1.2334e-14,1.5044e-14,1.6337e-14,1.9571e-14,2.1946e-14,2.6698e-14,2.8369e-14,4.5149e-14,6.0038e-14,1.4581e-13,1.8558e-13,2.0113e-13,2.3222e-13,3.4403e-13,3.7278e-13,4.0026e-13,5.5839e-13,7.6166e-13,8.5406e-13,9.3782e-13,1.3148e-12,2.1337e-12,3.5378e-12,4.96e-12,5.3228e-12,9.9542e-12,1.2339e-11,1.3635e-11,1.4252e-11,1.7044e-11,3.5377e-11,3.6213e-11,4.1088e-11,5.0173e-11,5.2175e-11,6.9284e-11,1.5007e-10,1.516e-10,1.8809e-10,2.0318e-10,4.8555e-10,6.0287e-10,6.1252e-10,7.4244e-10,9.6205e-10,9.6697e-10,9.8739e-10,1.1535e-09,1.1551e-09,1.3293e-09,1.4033e-09,3.0219e-09,4.2114e-09,4.2587e-09,6.185e-09,6.831e-09,7.9618e-09,8.5757e-09,8.9593e-09,9.4029e-09,9.5521e-09,9.9617e-09,1.1791e-08,1.2024e-08,1.2518e-08,1.2938e-08,1.6578e-08,2.1894e-08,3.1205e-08,3.5625e-08,4.7064e-08,6.4043e-08,7.2843e-08,7.7831e-08,1.6032e-07,1.741e-07,1.8496e-07,2.0845e-07,2.425e-07,2.7628e-07,3.0703e-07,3.1283e-07,3.1653e-07,3.6129e-07,5.0996e-07,5.2297e-07,5.9815e-07,7.356e-07,8.2402e-07,8.3931e-07,1.5907e-06,1.6014e-06,1.8137e-06,2.3095e-06,2.4128e-06,2.8383e-06,2.9488e-06,3.8455e-06,4.5653e-06,6.7119e-06,6.7736e-06,1.0438e-05,1.0961e-05,1.1132e-05,1.4661e-05,1.4919e-05,1.646e-05,1.8722e-05,1.9488e-05,2.0086e-05,2.262e-05,2.3068e-05,2.3364e-05,2.5656e-05,2.6508e-05,2.6735e-05,2.8878e-05,2.9688e-05,3.4578e-05,4.4409e-05,4.6418e-05,4.6968e-05,5.246e-05,5.4902e-05,6.5993e-05,9.072e-05,0.0001,0.00011654,0.00012324,0.0001438,0.00016739,0.00016947,0.0001711,0.00017129,0.00017908,0.00017975,0.00020646,0.00021992,0.00024748,0.00024878,0.0002568,0.00031428,0.00031612,0.00034767,0.00038713,0.00046811,0.00047986,0.00051494,0.00052311,0.0005443,0.0005816,0.00064338,0.00064514,0.00080882,0.0010413,0.0010693,0.0011012,0.0011113,0.0012895,0.001412,0.00191,0.0019401,0.002002,0.0021105,0.0025621,0.0031245,0.0038659,0.004118,0.0042753,0.0046995,0.0056728,0.006155,0.0068349,0.0080105,0.0091662,0.0093895,0.012098,0.012501,0.012651,0.013404,0.013714,0.016423,0.01772,0.018112,0.018152,0.018999,0.020196,0.020772,0.021033,0.026086,0.026092,0.0315,0.038815,0.046783,0.055275,0.059319,0.060417,0.063049,0.065424,0.071304,0.071977,0.084581,0.088024,0.095248,0.10485,0.11102,0.11173,0.11698,0.12059,0.12983,0.14452,0.14596,0.15284,0.16415,0.17376,0.17422,0.21043,0.2168,0.21989,0.22797,0.23224,0.23907,0.25021,0.25479,0.26127,0.27189,0.28601,0.29987,0.30129,0.31876,0.33054,0.34111,0.36578,0.37732,0.38156,0.39676,0.39769,0.40444,0.40744,0.44793,0.45854,0.46269,0.48176,0.49294,0.49464,0.52101,0.57234,0.58772,0.59565,0.61411,0.6157,0.63642,0.63869,0.66524,0.68074,0.71146,0.71421,0.71679,0.71822,0.72291,0.72672,0.72904,0.75317,0.75815,0.80385,0.81847,0.82795,0.83165,0.86123,0.86173,0.87099,0.87523,0.89566,0.89629,0.89775,0.91183,0.91557,0.91688,0.92081,0.92577,0.93032,0.93264,0.95349,0.95416,0.96357,0.97575,0.98502,0.99426,0.99436,0.99658,0.99859,0.9999,0.99991,1,0.99798,0.99693,0.9968,0.98806,0.98541,0.98377,0.97818,0.97186,0.95825,0.95589,0.94369,0.91165,0.91118,0.90828,0.90223,0.89737,0.89125,0.88384,0.80662,0.78427,0.74874,0.72151,0.72016,0.71703,0.67542,0.66561,0.66479,0.62433,0.55593,0.55377,0.53382,0.52972,0.48468,0.47229,0.44566,0.43201,0.41713,0.41425,0.39695,0.39393,0.39251,0.35476,0.34386,0.33932,0.32483,0.32033,0.3002,0.29572,0.28682,0.26537,0.26517,0.25524,0.25194,0.25193,0.23108,0.23044,0.22221,0.21374,0.19604,0.181,0.17072,0.15526,0.14189,0.12587,0.12525,0.11394,0.10383,0.098204,0.08433,0.080574,0.073364,0.069351,0.061552,0.060772,0.059189,0.05566,0.048839,0.042574,0.03954,0.036697,0.035284,0.035089,0.032655,0.030026,0.023092,0.0215,0.020664,0.01892,0.018908,0.017319,0.01713,0.016129,0.015364,0.013016,0.012705,0.011134,0.0098302,0.0064701,0.0059693,0.0057403,0.0051772,0.004695,0.0045228,0.0041958,0.0039743,0.0037145,0.003319,0.003317,0.0027015,0.0025567,0.0025274,0.0025119,0.0020295,0.0020196,0.0019762,0.0019441,0.0018632,0.001736,0.0016287,0.0012228,0.00065096,0.00053678,0.00052764,0.0005202,0.00049679,0.0004842,0.00037862,0.00032128,0.0002848,0.00026611,0.00023074,0.0002042,0.00019959,0.00016782,0.00015202,0.00013462,0.00011055,8.5003e-05,8.3578e-05,7.6397e-05,7.176e-05,6.9766e-05,5.1513e-05,4.7371e-05,3.2209e-05,2.8905e-05,2.3856e-05,2.1511e-05,2.0799e-05,1.7301e-05,1.6893e-05,1.603e-05,1.429e-05,1.146e-05 1,7.3201e-20,1.1616e-19,1.1888e-19,1.3658e-19,1.5197e-19,1.7482e-19,2.2929e-19,4.3565e-19,6.5363e-19,6.9557e-19,9.5908e-19,1.0106e-18,1.2439e-18,2.0576e-18,2.408e-18,2.6858e-18,4.3026e-18,4.6642e-18,5.1002e-18,6.8814e-18,7.1061e-18,7.2385e-18,9.0878e-18,1.0391e-17,1.0437e-17,1.349e-17,1.3809e-17,1.5501e-17,1.5739e-17,1.5973e-17,3.4882e-17,7.302e-17,7.8037e-17,9.6863e-17,1.1741e-16,1.3628e-16,1.6258e-16,1.995e-16,2.8558e-16,3.4767e-16,4.7817e-16,7.1263e-16,7.3926e-16,7.9925e-16,8.5893e-16,1.2481e-15,1.2488e-15,3.0223e-15,3.2257e-15,3.3444e-15,4.3478e-15,4.4324e-15,7.3959e-15,9.0349e-15,9.818e-15,1.1778e-14,1.322e-14,1.6108e-14,1.7124e-14,2.7356e-14,3.6462e-14,8.9199e-14,1.1376e-13,1.2337e-13,1.4262e-13,2.1198e-13,2.2985e-13,2.4694e-13,3.4546e-13,4.7247e-13,5.303e-13,5.8278e-13,8.1944e-13,1.3354e-12,2.2239e-12,3.1271e-12,3.358e-12,6.3148e-12,7.8425e-12,8.674e-12,9.0702e-12,1.0865e-11,2.2702e-11,2.3243e-11,2.6403e-11,3.23e-11,3.3601e-11,4.4737e-11,9.7608e-11,9.8612e-11,1.226e-10,1.3253e-10,3.1938e-10,3.9739e-10,4.0381e-10,4.9039e-10,6.3707e-10,6.4036e-10,6.5402e-10,7.652e-10,7.6628e-10,8.8307e-10,9.3275e-10,2.0242e-09,2.8305e-09,2.8627e-09,4.1735e-09,4.6141e-09,5.3865e-09,5.8064e-09,6.0688e-09,6.3726e-09,6.4747e-09,6.7553e-09,8.0101e-09,8.1701e-09,8.5095e-09,8.798e-09,1.1303e-08,1.4971e-08,2.142e-08,2.4489e-08,3.2451e-08,4.4308e-08,5.0469e-08,5.3964e-08,1.1206e-07,1.2181e-07,1.295e-07,1.4614e-07,1.7031e-07,1.9434e-07,2.1623e-07,2.2036e-07,2.23e-07,2.5492e-07,3.6129e-07,3.7061e-07,4.2456e-07,5.2342e-07,5.8713e-07,5.9816e-07,1.1425e-06,1.1503e-06,1.3048e-06,1.6665e-06,1.742e-06,2.0534e-06,2.1343e-06,2.7927e-06,3.3228e-06,4.9096e-06,4.9553e-06,7.6798e-06,8.0693e-06,8.1974e-06,1.0836e-05,1.1029e-05,1.2184e-05,1.3884e-05,1.4459e-05,1.4909e-05,1.6817e-05,1.7155e-05,1.7378e-05,1.9108e-05,1.9751e-05,1.9922e-05,2.1542e-05,2.2155e-05,2.586e-05,3.333e-05,3.486e-05,3.5278e-05,3.9465e-05,4.133e-05,4.9811e-05,6.8795e-05,7.5944e-05,8.8704e-05,9.3885e-05,0.0001098,0.00012811,0.00012972,0.00013099,0.00013114,0.00013719,0.00013772,0.00015852,0.00016902,0.00019055,0.00019157,0.00019784,0.00024289,0.00024434,0.00026913,0.00030019,0.0003641,0.00037339,0.00040115,0.00040762,0.0004244,0.00045398,0.00050305,0.00050445,0.00063483,0.00082084,0.00084331,0.00086885,0.00087695,0.0010203,0.0011189,0.0015218,0.0015461,0.0015964,0.0016845,0.0020522,0.0025119,0.0031205,0.003328,0.0034577,0.0038077,0.0046132,0.0050136,0.0055791,0.0065598,0.0075271,0.0077143,0.0099927,0.010333,0.01046,0.011096,0.011358,0.013656,0.01476,0.015093,0.015128,0.01585,0.016871,0.017364,0.017587,0.021921,0.021927,0.026591,0.032934,0.039884,0.047329,0.050887,0.051854,0.054176,0.056273,0.061476,0.062072,0.073275,0.076345,0.0828,0.091407,0.096952,0.097595,0.10232,0.10558,0.11393,0.12726,0.12857,0.13482,0.14515,0.15394,0.15436,0.18768,0.19357,0.19644,0.20392,0.20789,0.21423,0.2246,0.22887,0.23491,0.24485,0.25809,0.27111,0.27245,0.28892,0.30006,0.31008,0.33353,0.34454,0.34858,0.36313,0.36402,0.3705,0.37337,0.41238,0.42265,0.42667,0.44519,0.45607,0.45773,0.4835,0.53404,0.54927,0.55715,0.57553,0.57712,0.59784,0.60011,0.62682,0.64247,0.67369,0.6765,0.67913,0.68059,0.68539,0.68929,0.69166,0.71647,0.72161,0.76918,0.78456,0.79458,0.7985,0.8301,0.83064,0.84063,0.84522,0.86754,0.86822,0.86983,0.88544,0.88961,0.89108,0.89549,0.90108,0.90625,0.90889,0.93305,0.93384,0.94509,0.96014,0.97222,0.9855,0.98565,0.98934,0.99321,0.99699,0.99702,0.99798,1,0.99989,0.99987,0.99584,0.99421,0.99315,0.98934,0.98476,0.97426,0.97237,0.96241,0.93506,0.93465,0.9321,0.92678,0.92248,0.91703,0.9104,0.83929,0.8182,0.7843,0.75805,0.75674,0.75371,0.71316,0.70352,0.70272,0.66277,0.59442,0.59225,0.57212,0.56797,0.52221,0.50955,0.48224,0.46819,0.45284,0.44987,0.43195,0.42882,0.42734,0.38802,0.37661,0.37186,0.35664,0.35191,0.33069,0.32595,0.31653,0.29376,0.29355,0.28297,0.27946,0.27945,0.25716,0.25648,0.24765,0.23854,0.21947,0.20319,0.19204,0.1752,0.16059,0.14299,0.14231,0.12984,0.11865,0.11241,0.096958,0.09276,0.084681,0.080174,0.07139,0.070509,0.068721,0.06473,0.056993,0.049857,0.04639,0.043134,0.041513,0.041289,0.038494,0.035466,0.027446,0.025595,0.024623,0.022589,0.022576,0.020719,0.020498,0.019327,0.018429,0.01567,0.015303,0.013449,0.011905,0.0079032,0.0073032,0.0070285,0.006352,0.0057713,0.0055636,0.0051689,0.0049012,0.0045866,0.004107,0.0041046,0.0033559,0.0031792,0.0031434,0.0031245,0.0025343,0.0025221,0.0024689,0.0024295,0.0023302,0.0021738,0.0020419,0.0015407,0.00082903,0.00068579,0.00067431,0.00066495,0.00063551,0.00061965,0.00048647,0.00041389,0.00036758,0.00034383,0.00029879,0.00026493,0.00025904,0.00021839,0.00019812,0.00017577,0.00014477,0.00011175,0.0001099,0.00010059,9.4573e-05,9.1982e-05,6.8214e-05,6.2805e-05,4.2937e-05,3.859e-05,3.1934e-05,2.8836e-05,2.7895e-05,2.3262e-05,2.272e-05,2.1575e-05,1.9264e-05,1.5494e-05 1,6.3717e-20,1.0119e-19,1.0355e-19,1.1901e-19,1.3243e-19,1.5238e-19,1.9994e-19,3.8028e-19,5.7093e-19,6.0763e-19,8.3825e-19,8.8337e-19,1.0877e-18,1.8006e-18,2.1078e-18,2.3514e-18,3.7698e-18,4.0871e-18,4.4699e-18,6.034e-18,6.2313e-18,6.3477e-18,7.9723e-18,9.118e-18,9.1578e-18,1.1842e-17,1.2122e-17,1.3611e-17,1.382e-17,1.4026e-17,3.0669e-17,6.4284e-17,6.8708e-17,8.5315e-17,1.0345e-16,1.201e-16,1.4333e-16,1.7593e-16,2.5201e-16,3.069e-16,4.2234e-16,6.2986e-16,6.5344e-16,7.0656e-16,7.5942e-16,1.1042e-15,1.1048e-15,2.6782e-15,2.8588e-15,2.9642e-15,3.8553e-15,3.9304e-15,6.5644e-15,8.0221e-15,8.7188e-15,1.0463e-14,1.1746e-14,1.4318e-14,1.5223e-14,2.434e-14,3.2459e-14,7.954e-14,1.0149e-13,1.1008e-13,1.2729e-13,1.8934e-13,2.0533e-13,2.2063e-13,3.0886e-13,4.2267e-13,4.7451e-13,5.2157e-13,7.3386e-13,1.1971e-12,1.9956e-12,2.8081e-12,3.0158e-12,5.6787e-12,7.0556e-12,7.8053e-12,8.1626e-12,9.7816e-12,2.0469e-11,2.0959e-11,2.3814e-11,2.9146e-11,3.0322e-11,4.0396e-11,8.8285e-11,8.9195e-11,1.1094e-10,1.1995e-10,2.8963e-10,3.6055e-10,3.6639e-10,4.4514e-10,5.7862e-10,5.8162e-10,5.9405e-10,6.9529e-10,6.9628e-10,8.0265e-10,8.4792e-10,1.8434e-09,2.5797e-09,2.6091e-09,3.8072e-09,4.2102e-09,4.9168e-09,5.301e-09,5.5412e-09,5.8192e-09,5.9127e-09,6.1696e-09,7.3185e-09,7.465e-09,7.7759e-09,8.0402e-09,1.0335e-08,1.37e-08,1.9618e-08,2.2436e-08,2.9752e-08,4.0655e-08,4.6323e-08,4.9539e-08,1.0307e-07,1.1206e-07,1.1915e-07,1.3451e-07,1.5682e-07,1.79e-07,1.9922e-07,2.0304e-07,2.0547e-07,2.3497e-07,3.3332e-07,3.4195e-07,3.9188e-07,4.8339e-07,5.4241e-07,5.5263e-07,1.0575e-06,1.0647e-06,1.2081e-06,1.5441e-06,1.6142e-06,1.9037e-06,1.9789e-06,2.5914e-06,3.0849e-06,4.5633e-06,4.6059e-06,7.1478e-06,7.5114e-06,7.6311e-06,1.0096e-05,1.0276e-05,1.1356e-05,1.2945e-05,1.3484e-05,1.3905e-05,1.569e-05,1.6006e-05,1.6215e-05,1.7834e-05,1.8437e-05,1.8597e-05,2.0114e-05,2.0689e-05,2.416e-05,3.1164e-05,3.26e-05,3.2992e-05,3.6922e-05,3.8672e-05,4.6637e-05,6.448e-05,7.1205e-05,8.3212e-05,8.809e-05,0.00010307,0.00012033,0.00012185,0.00012305,0.00012319,0.00012889,0.00012939,0.00014901,0.00015891,0.00017923,0.00018019,0.00018611,0.00022866,0.00023003,0.00025346,0.00028282,0.00034328,0.00035207,0.00037834,0.00038447,0.00040036,0.00042837,0.00047485,0.00047618,0.00059978,0.0007763,0.00079764,0.00082189,0.00082958,0.00096575,0.0010595,0.0014427,0.001466,0.0015138,0.0015977,0.001948,0.0023865,0.0029675,0.0031657,0.0032896,0.0036241,0.0043946,0.0047778,0.0053193,0.006259,0.0071865,0.0073662,0.0095536,0.0098806,0.010003,0.010614,0.010866,0.013076,0.014139,0.01446,0.014493,0.015188,0.016172,0.016647,0.016862,0.021042,0.021048,0.025551,0.031684,0.038412,0.045629,0.04908,0.050019,0.052272,0.054308,0.059362,0.059941,0.070834,0.073821,0.080106,0.088491,0.093897,0.094525,0.09913,0.10231,0.11047,0.12349,0.12476,0.13088,0.14098,0.14959,0.15,0.18266,0.18843,0.19125,0.1986,0.20249,0.20873,0.21891,0.22311,0.22906,0.23883,0.25186,0.26469,0.26601,0.28224,0.29323,0.30312,0.32627,0.33715,0.34115,0.35554,0.35642,0.36282,0.36567,0.40431,0.41449,0.41847,0.43686,0.44766,0.44931,0.47492,0.52522,0.5404,0.54826,0.56661,0.56819,0.58889,0.59116,0.61787,0.63354,0.66483,0.66765,0.67029,0.67176,0.67657,0.68049,0.68287,0.70781,0.71298,0.76091,0.77644,0.78657,0.79054,0.82256,0.82311,0.83325,0.83792,0.86064,0.86134,0.86298,0.87891,0.88318,0.88468,0.8892,0.89493,0.90023,0.90294,0.92783,0.92865,0.94031,0.956,0.96871,0.9829,0.98308,0.98709,0.99139,0.99574,0.99578,0.99693,0.99989,1,1,0.99707,0.99568,0.99476,0.99137,0.9872,0.97744,0.97567,0.96625,0.94003,0.93963,0.93718,0.93203,0.92786,0.92258,0.91614,0.84656,0.8258,0.79233,0.76635,0.76505,0.76204,0.72179,0.71222,0.71142,0.67164,0.60338,0.6012,0.58106,0.5769,0.53101,0.51831,0.49087,0.47674,0.46129,0.4583,0.44025,0.4371,0.4356,0.39594,0.38442,0.37962,0.36424,0.35947,0.338,0.3332,0.32367,0.3006,0.30039,0.28966,0.2861,0.28609,0.26347,0.26277,0.25381,0.24456,0.22516,0.2086,0.19724,0.18007,0.16517,0.14721,0.14651,0.13376,0.12231,0.11592,0.10009,0.095785,0.087497,0.08287,0.073846,0.072941,0.071103,0.066999,0.059037,0.051687,0.048114,0.044756,0.043084,0.042853,0.039968,0.036842,0.028552,0.026637,0.02563,0.023524,0.02351,0.021587,0.021357,0.020143,0.019212,0.01635,0.015969,0.014043,0.012439,0.0082739,0.0076487,0.0073623,0.0066568,0.006051,0.0058342,0.005422,0.0051425,0.0048139,0.0043126,0.0043101,0.003527,0.0033421,0.0033047,0.0032849,0.0026667,0.002654,0.0025983,0.002557,0.0024529,0.0022889,0.0021506,0.0016247,0.00087637,0.00072548,0.00071338,0.00070353,0.00067249,0.00065578,0.0005153,0.00043868,0.00038978,0.00036469,0.00031708,0.00028126,0.00027503,0.00023202,0.00021056,0.00018689,0.00015403,0.000119,0.00011704,0.00010716,0.00010077,9.8019e-05,7.2765e-05,6.7014e-05,4.5872e-05,4.1243e-05,3.415e-05,3.0847e-05,2.9844e-05,2.4902e-05,2.4323e-05,2.3102e-05,2.0634e-05,1.6607e-05 1,6.2751e-20,9.9662e-20,1.0199e-19,1.1721e-19,1.3044e-19,1.5009e-19,1.9695e-19,3.7463e-19,5.6249e-19,5.9866e-19,8.2592e-19,8.7038e-19,1.0717e-18,1.7743e-18,2.0772e-18,2.3172e-18,3.7154e-18,4.0282e-18,4.4055e-18,5.9473e-18,6.1418e-18,6.2566e-18,7.8582e-18,8.9877e-18,9.027e-18,1.1674e-17,1.195e-17,1.3417e-17,1.3623e-17,1.3827e-17,3.0238e-17,6.3388e-17,6.7752e-17,8.4131e-17,1.0202e-16,1.1844e-16,1.4135e-16,1.7351e-16,2.4856e-16,3.0272e-16,4.166e-16,6.2135e-16,6.4462e-16,6.9704e-16,7.4919e-16,1.0894e-15,1.09e-15,2.6428e-15,2.821e-15,2.925e-15,3.8046e-15,3.8788e-15,6.4788e-15,7.9178e-15,8.6056e-15,1.0328e-14,1.1594e-14,1.4133e-14,1.5027e-14,2.4028e-14,3.2046e-14,7.8543e-14,1.0022e-13,1.0871e-13,1.257e-13,1.87e-13,2.028e-13,2.1791e-13,3.0508e-13,4.1752e-13,4.6874e-13,5.1523e-13,7.25e-13,1.1827e-12,1.9719e-12,2.775e-12,2.9804e-12,5.6126e-12,6.9739e-12,7.7152e-12,8.0683e-12,9.6691e-12,2.0237e-11,2.0721e-11,2.3545e-11,2.8818e-11,2.9981e-11,3.9945e-11,8.7314e-11,8.8215e-11,1.0973e-10,1.1864e-10,2.8653e-10,3.5671e-10,3.6249e-10,4.4042e-10,5.7252e-10,5.7549e-10,5.878e-10,6.88e-10,6.8897e-10,7.9425e-10,8.3906e-10,1.8245e-09,2.5535e-09,2.5826e-09,3.7688e-09,4.1679e-09,4.8676e-09,5.2481e-09,5.4859e-09,5.7612e-09,5.8538e-09,6.1082e-09,7.2461e-09,7.3912e-09,7.6991e-09,7.9609e-09,1.0234e-08,1.3566e-08,1.9429e-08,2.2221e-08,2.9469e-08,4.0271e-08,4.5887e-08,4.9075e-08,1.0212e-07,1.1103e-07,1.1806e-07,1.3328e-07,1.554e-07,1.7738e-07,1.9743e-07,2.0121e-07,2.0363e-07,2.3287e-07,3.3038e-07,3.3893e-07,3.8843e-07,4.7918e-07,5.377e-07,5.4783e-07,1.0485e-06,1.0556e-06,1.1979e-06,1.5312e-06,1.6007e-06,1.8879e-06,1.9625e-06,2.5702e-06,3.0597e-06,4.5267e-06,4.569e-06,7.0915e-06,7.4524e-06,7.5711e-06,1.0018e-05,1.0196e-05,1.1269e-05,1.2846e-05,1.338e-05,1.3798e-05,1.5571e-05,1.5884e-05,1.6092e-05,1.7699e-05,1.8297e-05,1.8457e-05,1.9963e-05,2.0533e-05,2.398e-05,3.0935e-05,3.236e-05,3.2749e-05,3.6652e-05,3.839e-05,4.63e-05,6.4021e-05,7.0701e-05,8.2628e-05,8.7473e-05,0.00010236,0.0001195,0.00012102,0.0001222,0.00012234,0.00012801,0.0001285,0.00014799,0.00015784,0.00017802,0.00017898,0.00018486,0.00022714,0.0002285,0.00025179,0.00028097,0.00034106,0.0003498,0.00037591,0.000382,0.0003978,0.00042564,0.00047185,0.00047317,0.00059604,0.00077154,0.00079276,0.00081688,0.00082452,0.00095992,0.0010532,0.0014343,0.0014574,0.001505,0.0015884,0.0019369,0.0023731,0.0029511,0.0031483,0.0032716,0.0036044,0.0043711,0.0047525,0.0052914,0.0062267,0.0071499,0.0073288,0.0095064,0.009832,0.0099533,0.010562,0.010813,0.013014,0.014072,0.014391,0.014424,0.015117,0.016097,0.01657,0.016784,0.020947,0.020953,0.025439,0.031549,0.038253,0.045445,0.048884,0.04982,0.052066,0.054096,0.059133,0.059711,0.070569,0.073548,0.079814,0.088175,0.093566,0.094191,0.098784,0.10196,0.11009,0.12308,0.12435,0.13045,0.14053,0.14912,0.14953,0.18211,0.18788,0.19069,0.19802,0.20191,0.20813,0.21829,0.22249,0.22842,0.23817,0.25118,0.26399,0.26531,0.28151,0.29249,0.30236,0.32548,0.33634,0.34034,0.35471,0.35558,0.36199,0.36483,0.40342,0.4136,0.41758,0.43594,0.44674,0.44838,0.47398,0.52425,0.53943,0.54728,0.56562,0.56721,0.58791,0.59017,0.61688,0.63256,0.66386,0.66667,0.66931,0.67079,0.6756,0.67952,0.6819,0.70685,0.71202,0.75999,0.77555,0.78569,0.78966,0.82173,0.82227,0.83243,0.83711,0.85987,0.86057,0.86222,0.87819,0.88246,0.88397,0.8885,0.89425,0.89956,0.90228,0.92725,0.92807,0.93977,0.95554,0.96831,0.98261,0.98278,0.98683,0.99117,0.99559,0.99563,0.9968,0.99987,1,1,0.9972,0.99583,0.99493,0.99159,0.98746,0.97778,0.97602,0.96666,0.94057,0.94017,0.93773,0.9326,0.92845,0.92318,0.91676,0.84736,0.82663,0.79321,0.76726,0.76596,0.76295,0.72274,0.71317,0.71237,0.67261,0.60436,0.60219,0.58204,0.57789,0.53199,0.51928,0.49182,0.47768,0.46222,0.45923,0.44116,0.43801,0.43651,0.39682,0.38528,0.38048,0.36509,0.3603,0.33881,0.334,0.32446,0.30136,0.30114,0.2904,0.28683,0.28683,0.26417,0.26347,0.25449,0.24522,0.2258,0.2092,0.19782,0.18062,0.16568,0.14767,0.14697,0.13419,0.12272,0.11631,0.10044,0.096123,0.087811,0.083171,0.07412,0.073212,0.071369,0.067253,0.059266,0.051892,0.048307,0.044938,0.04326,0.043028,0.040133,0.036996,0.028675,0.026753,0.025743,0.023629,0.023615,0.021684,0.021454,0.020235,0.0193,0.016426,0.016043,0.01411,0.012499,0.0083156,0.0076876,0.0073998,0.0066911,0.0060825,0.0058646,0.0054506,0.0051697,0.0048395,0.0043358,0.0043333,0.0035463,0.0033605,0.0033229,0.003303,0.0026817,0.0026689,0.0026129,0.0025714,0.0024668,0.0023019,0.0021628,0.0016341,0.00088173,0.00072998,0.00071781,0.00070789,0.00067667,0.00065987,0.00051857,0.00044149,0.0003923,0.00036705,0.00031915,0.00028311,0.00027685,0.00023356,0.00021197,0.00018815,0.00015508,0.00011983,0.00011785,0.00010791,0.00010148,9.8706e-05,7.3283e-05,6.7492e-05,4.6206e-05,4.1545e-05,3.4403e-05,3.1076e-05,3.0066e-05,2.5089e-05,2.4506e-05,2.3276e-05,2.079e-05,1.6734e-05 1,3.0926e-20,4.9298e-20,5.046e-20,5.8056e-20,6.4663e-20,7.4488e-20,9.7958e-20,1.8731e-19,2.8216e-19,3.0046e-19,4.1562e-19,4.3818e-19,5.4046e-19,8.9853e-19,1.0533e-18,1.176e-18,1.8931e-18,2.0538e-18,2.2479e-18,3.0423e-18,3.1427e-18,3.2019e-18,4.0293e-18,4.6136e-18,4.634e-18,6.0056e-18,6.1489e-18,6.9109e-18,7.018e-18,7.1236e-18,1.5683e-17,3.3088e-17,3.5386e-17,4.4024e-17,5.3472e-17,6.2164e-17,7.4302e-17,9.1373e-17,1.3131e-16,1.602e-16,2.2109e-16,3.3093e-16,3.4344e-16,3.7162e-16,3.9969e-16,5.8316e-16,5.835e-16,1.4261e-15,1.5232e-15,1.5799e-15,2.0599e-15,2.1005e-15,3.5251e-15,4.3161e-15,4.6946e-15,5.6437e-15,6.3428e-15,7.746e-15,8.2405e-15,1.3235e-14,1.77e-14,4.3755e-14,5.5964e-14,6.0751e-14,7.0347e-14,1.0506e-13,1.1402e-13,1.2261e-13,1.7222e-13,2.3643e-13,2.6574e-13,2.9237e-13,4.1281e-13,6.7677e-13,1.1342e-12,1.6017e-12,1.7215e-12,3.2633e-12,4.064e-12,4.5007e-12,4.7089e-12,5.6539e-12,1.1927e-11,1.2215e-11,1.3898e-11,1.7048e-11,1.7744e-11,2.3714e-11,5.228e-11,5.2825e-11,6.5867e-11,7.128e-11,1.7385e-10,2.1697e-10,2.2052e-10,2.6853e-10,3.5013e-10,3.5196e-10,3.5958e-10,4.2164e-10,4.2224e-10,4.8756e-10,5.154e-10,1.1309e-09,1.5891e-09,1.6075e-09,2.3565e-09,2.6091e-09,3.0529e-09,3.2945e-09,3.4457e-09,3.6207e-09,3.6797e-09,3.8416e-09,4.5667e-09,4.6593e-09,4.8558e-09,5.0229e-09,6.4773e-09,8.6163e-09,1.2395e-08,1.4201e-08,1.89e-08,2.5932e-08,2.9598e-08,3.1681e-08,6.6562e-08,7.245e-08,7.7097e-08,8.7178e-08,1.0185e-07,1.1647e-07,1.2982e-07,1.3234e-07,1.3395e-07,1.5346e-07,2.1876e-07,2.245e-07,2.5778e-07,3.1892e-07,3.5845e-07,3.6529e-07,7.0557e-07,7.1046e-07,8.0768e-07,1.036e-06,1.0838e-06,1.2813e-06,1.3327e-06,1.7522e-06,2.0914e-06,3.1123e-06,3.1419e-06,4.9093e-06,5.163e-06,5.2466e-06,6.9722e-06,7.0987e-06,7.8575e-06,8.9757e-06,9.3551e-06,9.6521e-06,1.0913e-05,1.1136e-05,1.1284e-05,1.243e-05,1.2857e-05,1.2971e-05,1.4047e-05,1.4455e-05,1.6923e-05,2.1923e-05,2.295e-05,2.3231e-05,2.6047e-05,2.7303e-05,3.3032e-05,4.5927e-05,5.0804e-05,5.9535e-05,6.3088e-05,7.4026e-05,8.666e-05,8.7776e-05,8.8651e-05,8.8753e-05,9.2943e-05,9.3306e-05,0.00010773,0.00011503,0.00013002,0.00013073,0.00013511,0.00016663,0.00016764,0.00018506,0.00020692,0.00025209,0.00025867,0.00027835,0.00028295,0.00029488,0.00031592,0.00035091,0.00035191,0.00044527,0.0005793,0.00059555,0.00061404,0.0006199,0.00072389,0.00079569,0.0010905,0.0011085,0.0011454,0.0012103,0.001482,0.0018236,0.0022786,0.0024343,0.0025317,0.0027953,0.0034048,0.0037088,0.0041396,0.0048899,0.0056333,0.0057777,0.0075417,0.0078065,0.0079053,0.0084009,0.0086057,0.010405,0.011274,0.011537,0.011564,0.012134,0.012942,0.013332,0.013509,0.016959,0.016964,0.020705,0.025834,0.031499,0.037613,0.040549,0.041349,0.043272,0.045012,0.04934,0.049838,0.059217,0.0618,0.067247,0.074541,0.079259,0.079807,0.083837,0.086627,0.093788,0.10528,0.10641,0.11183,0.1208,0.12847,0.12884,0.15814,0.16335,0.1659,0.17255,0.17608,0.18174,0.191,0.19483,0.20025,0.20919,0.22114,0.23294,0.23416,0.24915,0.25933,0.26851,0.29009,0.30027,0.30402,0.31753,0.31836,0.32439,0.32707,0.36365,0.37334,0.37714,0.3947,0.40505,0.40664,0.43128,0.4801,0.49494,0.50263,0.52067,0.52223,0.54267,0.54492,0.57146,0.58712,0.61857,0.62142,0.62408,0.62557,0.63044,0.63441,0.63683,0.66221,0.66749,0.71693,0.73313,0.74374,0.74792,0.78183,0.78241,0.79326,0.79828,0.82287,0.82363,0.82542,0.8429,0.84762,0.84928,0.8543,0.86069,0.86663,0.86968,0.8981,0.89905,0.9127,0.93156,0.9474,0.96619,0.96643,0.97213,0.97858,0.98583,0.9859,0.98806,0.99584,0.99707,0.9972,1,0.99986,0.99966,0.99849,0.99648,0.99065,0.98949,0.98295,0.96286,0.96254,0.96057,0.95639,0.95297,0.9486,0.94321,0.88223,0.86333,0.83238,0.808,0.80678,0.80394,0.76558,0.75637,0.7556,0.71702,0.64974,0.64758,0.62748,0.62332,0.5771,0.56421,0.53625,0.52178,0.5059,0.50282,0.4842,0.48093,0.47939,0.43815,0.4261,0.42108,0.40493,0.3999,0.37724,0.37217,0.36205,0.3375,0.33727,0.32581,0.32199,0.32199,0.2977,0.29695,0.28728,0.27728,0.25624,0.23819,0.22576,0.2069,0.19044,0.17051,0.16973,0.15551,0.14268,0.1355,0.11762,0.11273,0.10331,0.098026,0.087694,0.086655,0.084544,0.079821,0.070625,0.062095,0.057932,0.05401,0.052053,0.051782,0.048398,0.044721,0.034917,0.03264,0.031441,0.028928,0.028911,0.026608,0.026333,0.024877,0.023758,0.020306,0.019845,0.017511,0.01556,0.010457,0.0096857,0.0093317,0.0084582,0.0077061,0.0074365,0.0069233,0.0065745,0.006164,0.0055363,0.0055331,0.0045488,0.0043156,0.0042683,0.0042433,0.003461,0.0034449,0.0033741,0.0033217,0.0031894,0.0029807,0.0028044,0.0021314,0.0011646,0.00096783,0.00095201,0.00093911,0.00089849,0.00087661,0.00069213,0.00059108,0.00052639,0.00049314,0.00042991,0.00038222,0.00037391,0.00031644,0.00028769,0.00025592,0.00021167,0.00016431,0.00016165,0.00014824,0.00013955,0.00013581,0.00010135,9.3472e-05,6.4404e-05,5.8011e-05,4.8188e-05,4.3602e-05,4.2207e-05,3.5325e-05,3.4517e-05,3.2812e-05,2.9362e-05,2.3716e-05 1,2.6461e-20,4.2215e-20,4.3212e-20,4.9728e-20,5.5398e-20,6.3831e-20,8.3983e-20,1.6077e-19,2.4236e-19,2.5811e-19,3.5724e-19,3.7666e-19,4.6476e-19,7.7339e-19,9.0683e-19,1.0127e-18,1.6316e-18,1.7704e-18,1.9381e-18,2.6244e-18,2.7111e-18,2.7623e-18,3.4776e-18,3.9829e-18,4.0005e-18,5.1872e-18,5.3111e-18,5.9706e-18,6.0633e-18,6.1547e-18,1.357e-17,2.867e-17,3.0665e-17,3.8166e-17,4.6374e-17,5.3928e-17,6.4479e-17,7.9325e-17,1.1407e-16,1.3922e-16,1.9227e-16,2.8801e-16,2.9892e-16,3.235e-16,3.4798e-16,5.0809e-16,5.0838e-16,1.2447e-15,1.3296e-15,1.3792e-15,1.7992e-15,1.8347e-15,3.0823e-15,3.7755e-15,4.1073e-15,4.9395e-15,5.5526e-15,6.7838e-15,7.2178e-15,1.1604e-14,1.5528e-14,3.8457e-14,4.9213e-14,5.3432e-14,6.1892e-14,9.2507e-14,1.0042e-13,1.08e-13,1.5181e-13,2.0855e-13,2.3446e-13,2.5801e-13,3.6457e-13,5.9834e-13,1.0039e-12,1.4188e-12,1.5252e-12,2.8952e-12,3.6074e-12,3.996e-12,4.1813e-12,5.0225e-12,1.0613e-11,1.087e-11,1.2372e-11,1.5183e-11,1.5804e-11,2.1135e-11,4.6683e-11,4.7171e-11,5.8848e-11,6.3696e-11,1.5569e-10,1.9441e-10,1.976e-10,2.4074e-10,3.141e-10,3.1575e-10,3.2259e-10,3.7842e-10,3.7896e-10,4.3775e-10,4.6281e-10,1.0175e-09,1.4311e-09,1.4476e-09,2.1243e-09,2.3526e-09,2.7539e-09,2.9725e-09,3.1092e-09,3.2676e-09,3.3209e-09,3.4675e-09,4.1239e-09,4.2077e-09,4.3856e-09,4.537e-09,5.8546e-09,7.794e-09,1.1223e-08,1.2863e-08,1.7133e-08,2.3528e-08,2.6864e-08,2.876e-08,6.0552e-08,6.5925e-08,7.0166e-08,7.9368e-08,9.2767e-08,1.0612e-07,1.1832e-07,1.2063e-07,1.221e-07,1.3994e-07,1.997e-07,2.0496e-07,2.3543e-07,2.9146e-07,3.277e-07,3.3398e-07,6.4638e-07,6.5088e-07,7.4023e-07,9.5023e-07,9.9419e-07,1.176e-06,1.2233e-06,1.6098e-06,1.9225e-06,2.8647e-06,2.892e-06,4.5255e-06,4.7602e-06,4.8375e-06,6.4347e-06,6.5518e-06,7.2546e-06,8.2908e-06,8.6425e-06,8.9178e-06,1.0087e-05,1.0294e-05,1.0431e-05,1.1494e-05,1.1891e-05,1.1996e-05,1.2995e-05,1.3374e-05,1.5666e-05,2.0313e-05,2.1268e-05,2.1529e-05,2.4149e-05,2.5318e-05,3.0651e-05,4.2668e-05,4.7217e-05,5.5364e-05,5.8681e-05,6.8896e-05,8.0702e-05,8.1746e-05,8.2564e-05,8.2659e-05,8.6576e-05,8.6916e-05,0.00010041,0.00010723,0.00012127,0.00012193,0.00012603,0.00015557,0.00015652,0.00017284,0.00019335,0.00023574,0.00024192,0.00026041,0.00026473,0.00027593,0.00029571,0.00032859,0.00032954,0.00041737,0.00054361,0.00055892,0.00057635,0.00058187,0.00067994,0.00074768,0.0010262,0.0010431,0.001078,0.0011394,0.0013964,0.00172,0.0021513,0.0022991,0.0023915,0.0026418,0.0032208,0.0035099,0.0039197,0.004634,0.0053424,0.0054799,0.007163,0.0074158,0.0075101,0.0079836,0.0081792,0.0098999,0.010731,0.010983,0.011008,0.011554,0.012328,0.012701,0.012871,0.016179,0.016184,0.019776,0.024708,0.030162,0.036057,0.038891,0.039663,0.04152,0.043201,0.047384,0.047865,0.05694,0.059441,0.064718,0.071791,0.076369,0.076901,0.080813,0.083523,0.090482,0.10165,0.10275,0.10803,0.11677,0.12425,0.1246,0.15321,0.1583,0.16079,0.16729,0.17074,0.17628,0.18535,0.1891,0.19441,0.20317,0.21488,0.22646,0.22766,0.24238,0.25239,0.26141,0.28265,0.29267,0.29637,0.30968,0.3105,0.31645,0.31909,0.3552,0.36478,0.36853,0.3859,0.39615,0.39771,0.42213,0.47057,0.48532,0.49297,0.51091,0.51247,0.53283,0.53507,0.56154,0.57717,0.60861,0.61145,0.61412,0.61561,0.62048,0.62445,0.62687,0.65231,0.65761,0.70728,0.7236,0.7343,0.73851,0.77276,0.77334,0.78433,0.78941,0.81435,0.81513,0.81695,0.83473,0.83953,0.84123,0.84634,0.85286,0.85893,0.86204,0.89117,0.89214,0.90619,0.92569,0.94217,0.9619,0.96216,0.96821,0.9751,0.98296,0.98304,0.98541,0.99421,0.99568,0.99583,0.99986,1,0.99996,0.99925,0.99773,0.99275,0.99172,0.98581,0.96709,0.96679,0.96493,0.96096,0.95772,0.95355,0.9484,0.8894,0.87094,0.8406,0.81661,0.8154,0.8126,0.77473,0.76562,0.76485,0.7266,0.65965,0.65749,0.63743,0.63327,0.58705,0.57414,0.5461,0.53158,0.51563,0.51254,0.49381,0.49053,0.48897,0.44744,0.43529,0.43022,0.41392,0.40885,0.38595,0.38081,0.37059,0.34573,0.3455,0.33389,0.33002,0.33001,0.30537,0.30461,0.29479,0.28464,0.26325,0.24488,0.23222,0.21299,0.1962,0.17584,0.17504,0.1605,0.14736,0.14,0.12167,0.11666,0.10697,0.10155,0.09092,0.089851,0.087678,0.082815,0.073339,0.06454,0.060242,0.05619,0.054168,0.053888,0.050389,0.046585,0.036431,0.03407,0.032826,0.030217,0.0302,0.027809,0.027523,0.02601,0.024847,0.021257,0.020777,0.018347,0.016313,0.010988,0.010182,0.0098114,0.0088976,0.0081105,0.0078282,0.0072906,0.0069252,0.006495,0.0058368,0.0058335,0.0048004,0.0045555,0.0045059,0.0044796,0.0036574,0.0036404,0.003566,0.0035109,0.0033717,0.0031521,0.0029665,0.0022576,0.001237,0.0010288,0.0010121,0.00099842,0.00095542,0.00093225,0.00073681,0.00062967,0.00056104,0.00052573,0.00045859,0.00040792,0.00039909,0.00033798,0.00030739,0.00027357,0.00022645,0.00017595,0.00017312,0.00015881,0.00014954,0.00014554,0.00010874,0.00010032,6.9218e-05,6.237e-05,5.1845e-05,4.6928e-05,4.5433e-05,3.8049e-05,3.7182e-05,3.5352e-05,3.1647e-05,2.5581e-05 1,2.4184e-20,3.8601e-20,3.9513e-20,4.5479e-20,5.067e-20,5.8391e-20,7.6847e-20,1.4721e-19,2.2201e-19,2.3644e-19,3.2736e-19,3.4519e-19,4.2601e-19,7.0928e-19,8.318e-19,9.2905e-19,1.4975e-18,1.6251e-18,1.7791e-18,2.4099e-18,2.4897e-18,2.5367e-18,3.1943e-18,3.659e-18,3.6752e-18,4.7667e-18,4.8807e-18,5.4875e-18,5.5727e-18,5.6569e-18,1.2483e-17,2.6394e-17,2.8233e-17,3.5147e-17,4.2716e-17,4.9682e-17,5.9414e-17,7.311e-17,1.0518e-16,1.284e-16,1.7738e-16,2.6583e-16,2.759e-16,2.9862e-16,3.2124e-16,4.6925e-16,4.6952e-16,1.1507e-15,1.2293e-15,1.2752e-15,1.6641e-15,1.6969e-15,2.8526e-15,3.4949e-15,3.8024e-15,4.5738e-15,5.1423e-15,6.284e-15,6.6865e-15,1.0756e-14,1.4398e-14,3.5697e-14,4.5695e-14,4.9617e-14,5.7483e-14,8.5959e-14,9.3322e-14,1.0037e-13,1.4115e-13,1.9398e-13,2.1812e-13,2.4005e-13,3.3934e-13,5.5728e-13,9.3563e-13,1.3229e-12,1.4222e-12,2.702e-12,3.3676e-12,3.7308e-12,3.9041e-12,4.6906e-12,9.9214e-12,1.0162e-11,1.1568e-11,1.42e-11,1.4782e-11,1.9777e-11,4.3729e-11,4.4187e-11,5.5142e-11,5.9691e-11,1.4608e-10,1.8247e-10,1.8547e-10,2.2602e-10,2.9501e-10,2.9656e-10,3.03e-10,3.5552e-10,3.5603e-10,4.1135e-10,4.3493e-10,9.5734e-10,1.3471e-09,1.3627e-09,2.0008e-09,2.2162e-09,2.5948e-09,2.8011e-09,2.9302e-09,3.0797e-09,3.13e-09,3.2683e-09,3.888e-09,3.9672e-09,4.1352e-09,4.2782e-09,5.5228e-09,7.3555e-09,1.0598e-08,1.2149e-08,1.6189e-08,2.2242e-08,2.5402e-08,2.7198e-08,5.7332e-08,6.2428e-08,6.6451e-08,7.5181e-08,8.7896e-08,1.0057e-07,1.1216e-07,1.1435e-07,1.1574e-07,1.3269e-07,1.8946e-07,1.9446e-07,2.2342e-07,2.767e-07,3.1116e-07,3.1713e-07,6.1449e-07,6.1877e-07,7.0387e-07,9.0397e-07,9.4586e-07,1.1191e-06,1.1643e-06,1.5329e-06,1.8313e-06,2.7308e-06,2.7568e-06,4.3176e-06,4.542e-06,4.6158e-06,6.1433e-06,6.2552e-06,6.9277e-06,7.9192e-06,8.2558e-06,8.5194e-06,9.6384e-06,9.8367e-06,9.9681e-06,1.0986e-05,1.1366e-05,1.1467e-05,1.2424e-05,1.2786e-05,1.4983e-05,1.9437e-05,2.0353e-05,2.0604e-05,2.3116e-05,2.4238e-05,2.9355e-05,4.0891e-05,4.5261e-05,5.3088e-05,5.6275e-05,6.6095e-05,7.7448e-05,7.8452e-05,7.9238e-05,7.933e-05,8.3098e-05,8.3424e-05,9.6403e-05,0.00010297,0.00011648,0.00011712,0.00012107,0.00014951,0.00015043,0.00016616,0.00018592,0.00022678,0.00023274,0.00025057,0.00025473,0.00026554,0.00028462,0.00031635,0.00031726,0.00040205,0.00052399,0.00053879,0.00055562,0.00056096,0.00065576,0.00072126,0.00099069,0.0010071,0.0010409,0.0011003,0.0013492,0.0016628,0.002081,0.0022243,0.002314,0.0025569,0.003119,0.0033998,0.0037979,0.0044921,0.005181,0.0053148,0.0069527,0.0071988,0.0072906,0.0077517,0.0079422,0.0096187,0.010429,0.010674,0.010699,0.011232,0.011986,0.01235,0.012516,0.015745,0.015749,0.019258,0.024078,0.029414,0.035186,0.037962,0.038719,0.040538,0.042185,0.046287,0.046758,0.055661,0.058116,0.063297,0.070244,0.074743,0.075266,0.079111,0.081775,0.088619,0.099612,0.1007,0.10589,0.11449,0.12186,0.12221,0.15042,0.15544,0.1579,0.16432,0.16772,0.17319,0.18215,0.18585,0.1911,0.19975,0.21134,0.22279,0.22397,0.23854,0.24844,0.25738,0.27841,0.28835,0.29201,0.30521,0.30602,0.31192,0.31454,0.35038,0.35989,0.36362,0.38087,0.39106,0.39261,0.41689,0.46511,0.4798,0.48743,0.50531,0.50686,0.52717,0.52941,0.55583,0.57144,0.60286,0.60571,0.60837,0.60987,0.61474,0.61871,0.62114,0.6466,0.65191,0.7017,0.71807,0.72882,0.73305,0.76749,0.76808,0.77914,0.78425,0.80939,0.81017,0.81201,0.82995,0.83481,0.83652,0.84169,0.84828,0.85442,0.85757,0.88708,0.88807,0.90235,0.92221,0.93906,0.95932,0.95959,0.96584,0.97299,0.98119,0.98127,0.98377,0.99315,0.99476,0.99493,0.99966,0.99996,1,0.99958,0.99832,0.99384,0.99289,0.98735,0.96942,0.96913,0.96733,0.96349,0.96034,0.95629,0.95128,0.89344,0.87524,0.84526,0.82151,0.82031,0.81754,0.77996,0.7709,0.77014,0.73209,0.66534,0.66319,0.64316,0.639,0.59279,0.57987,0.5518,0.53724,0.52126,0.51816,0.49937,0.49608,0.49452,0.45283,0.44062,0.43553,0.41914,0.41404,0.39101,0.38584,0.37555,0.35052,0.35029,0.33859,0.33469,0.33468,0.30984,0.30907,0.29917,0.28893,0.26734,0.24879,0.236,0.21656,0.19958,0.17896,0.17816,0.16342,0.15011,0.14265,0.12405,0.11896,0.10913,0.10362,0.092821,0.091734,0.089525,0.08458,0.074941,0.065984,0.061606,0.057479,0.055418,0.055133,0.051567,0.047689,0.037328,0.034917,0.033647,0.030982,0.030965,0.028521,0.028229,0.026682,0.025493,0.021822,0.021331,0.018844,0.016762,0.011304,0.010477,0.010098,0.0091599,0.008352,0.0080621,0.0075101,0.0071348,0.0066929,0.0060166,0.0060131,0.0049511,0.0046992,0.0046481,0.0046211,0.0037751,0.0037576,0.003681,0.0036243,0.003481,0.003255,0.0030638,0.0023334,0.0012806,0.0010655,0.0010482,0.0010341,0.00098972,0.00096578,0.00076377,0.00065295,0.00058195,0.00054542,0.00047592,0.00042345,0.00041431,0.00035101,0.00031931,0.00028426,0.00023539,0.00018301,0.00018007,0.00016522,0.00015559,0.00015144,0.00011322,0.00010447,7.2144e-05,6.5022e-05,5.407e-05,4.8953e-05,4.7396e-05,3.9708e-05,3.8805e-05,3.6899e-05,3.304e-05,2.6719e-05 1,1.8324e-20,2.929e-20,2.9984e-20,3.4526e-20,3.848e-20,4.4363e-20,5.8435e-20,1.1216e-19,1.6938e-19,1.8043e-19,2.5006e-19,2.6372e-19,3.2569e-19,5.4313e-19,6.3727e-19,7.1203e-19,1.1495e-18,1.2477e-18,1.3664e-18,1.8527e-18,1.9142e-18,1.9504e-18,2.4579e-18,2.8167e-18,2.8292e-18,3.6726e-18,3.7607e-18,4.2299e-18,4.2958e-18,4.3608e-18,9.6481e-18,2.0451e-17,2.1881e-17,2.7259e-17,3.3151e-17,3.8576e-17,4.6161e-17,5.6842e-17,8.1875e-17,1.0002e-16,1.3832e-16,2.0759e-16,2.1548e-16,2.3329e-16,2.5103e-16,3.6717e-16,3.6738e-16,9.0323e-16,9.6513e-16,1.0013e-15,1.3078e-15,1.3338e-15,2.2462e-15,2.754e-15,2.9972e-15,3.6077e-15,4.0577e-15,4.9622e-15,5.2812e-15,8.51e-15,1.1403e-14,2.8368e-14,3.6346e-14,3.9478e-14,4.5762e-14,6.8535e-14,7.4428e-14,8.0073e-14,1.1275e-13,1.5514e-13,1.7452e-13,1.9214e-13,2.7197e-13,4.475e-13,7.5284e-13,1.0659e-12,1.1462e-12,2.1832e-12,2.7235e-12,3.0184e-12,3.1592e-12,3.7985e-12,8.0589e-12,8.2552e-12,9.4024e-12,1.1551e-11,1.2027e-11,1.611e-11,3.574e-11,3.6115e-11,4.5111e-11,4.885e-11,1.2001e-10,1.5005e-10,1.5253e-10,1.8604e-10,2.431e-10,2.4439e-10,2.4972e-10,2.9321e-10,2.9363e-10,3.3947e-10,3.5901e-10,7.9305e-10,1.1176e-09,1.1306e-09,1.663e-09,1.8429e-09,2.1593e-09,2.3318e-09,2.4398e-09,2.5649e-09,2.607e-09,2.7227e-09,3.2416e-09,3.3079e-09,3.4487e-09,3.5685e-09,4.6122e-09,6.1511e-09,8.8781e-09,1.0184e-08,1.359e-08,1.87e-08,2.137e-08,2.2889e-08,4.843e-08,5.2756e-08,5.6174e-08,6.3594e-08,7.4409e-08,8.52e-08,9.5064e-08,9.6931e-08,9.812e-08,1.1257e-07,1.6103e-07,1.653e-07,1.9006e-07,2.3564e-07,2.6515e-07,2.7027e-07,5.2556e-07,5.2924e-07,6.0246e-07,7.7479e-07,8.109e-07,9.6034e-07,9.993e-07,1.3177e-06,1.5758e-06,2.3552e-06,2.3777e-06,3.7337e-06,3.9289e-06,3.9932e-06,5.3235e-06,5.4211e-06,6.0075e-06,6.8729e-06,7.1668e-06,7.397e-06,8.3749e-06,8.5482e-06,8.6631e-06,9.5537e-06,9.8856e-06,9.9741e-06,1.0812e-05,1.1129e-05,1.3054e-05,1.6962e-05,1.7767e-05,1.7987e-05,2.0195e-05,2.1181e-05,2.5684e-05,3.5854e-05,3.9712e-05,4.6628e-05,4.9446e-05,5.8136e-05,6.8194e-05,6.9083e-05,6.9781e-05,6.9862e-05,7.3203e-05,7.3493e-05,8.5009e-05,9.0844e-05,0.00010285,0.00010342,0.00010693,0.00013224,0.00013305,0.00014707,0.00016469,0.00020117,0.00020649,0.00022243,0.00022615,0.00023582,0.00025289,0.00028129,0.00028211,0.00035813,0.00046766,0.00048097,0.00049611,0.00050092,0.00058626,0.00064529,0.00088852,0.00090334,0.0009339,0.00098763,0.001213,0.0014975,0.0018776,0.002008,0.0020897,0.0023109,0.0028237,0.0030802,0.0034443,0.0040798,0.0047115,0.0048343,0.0063396,0.0065661,0.0066507,0.0070753,0.0072509,0.0087974,0.0095458,0.0097724,0.0097957,0.010288,0.010986,0.011323,0.011476,0.01447,0.014474,0.017735,0.022227,0.027212,0.032616,0.03522,0.03593,0.037638,0.039185,0.043042,0.043485,0.051873,0.054189,0.059082,0.065652,0.069912,0.070407,0.074052,0.076579,0.083075,0.093527,0.094558,0.099503,0.10771,0.11474,0.11507,0.14206,0.14688,0.14923,0.15539,0.15867,0.16392,0.17253,0.1761,0.18115,0.18949,0.20066,0.21172,0.21287,0.22695,0.23654,0.2452,0.26562,0.27527,0.27883,0.29168,0.29247,0.29822,0.30077,0.33575,0.34505,0.3487,0.3656,0.37559,0.37711,0.40095,0.44844,0.46295,0.47049,0.48819,0.48972,0.50985,0.51207,0.53832,0.55385,0.58519,0.58803,0.5907,0.59219,0.59706,0.60103,0.60346,0.62897,0.63429,0.6844,0.70094,0.71181,0.7161,0.75106,0.75166,0.76293,0.76815,0.79385,0.79465,0.79654,0.81497,0.81996,0.82173,0.82706,0.83386,0.8402,0.84346,0.87414,0.87518,0.89013,0.91106,0.929,0.9509,0.95118,0.95803,0.96597,0.97522,0.97531,0.97818,0.98934,0.99137,0.99159,0.99849,0.99925,0.99958,1,0.99958,0.99664,0.99593,0.99153,0.97608,0.97582,0.97421,0.97077,0.96793,0.96425,0.95968,0.90551,0.88814,0.8593,0.83631,0.83515,0.83245,0.79581,0.78695,0.7862,0.74882,0.68279,0.68065,0.66073,0.6566,0.61047,0.59754,0.56938,0.55475,0.53867,0.53554,0.51661,0.51329,0.51171,0.46955,0.45718,0.45201,0.43539,0.4302,0.40677,0.40151,0.39102,0.36547,0.36524,0.35328,0.34929,0.34928,0.32384,0.32306,0.3129,0.30238,0.28019,0.26107,0.24788,0.22779,0.21021,0.18883,0.18799,0.17267,0.15881,0.15103,0.13161,0.12629,0.11599,0.11021,0.09887,0.097727,0.095405,0.090203,0.080048,0.070594,0.065967,0.0616,0.059418,0.059116,0.055337,0.051222,0.040208,0.03764,0.036286,0.033443,0.033424,0.030814,0.030502,0.028848,0.027576,0.023644,0.023117,0.020449,0.018211,0.01233,0.011436,0.011026,0.010011,0.0091362,0.0088221,0.0082235,0.0078163,0.0073364,0.0066015,0.0065978,0.005442,0.0051676,0.0051119,0.0050825,0.0041594,0.0041403,0.0040567,0.0039947,0.0038381,0.0035909,0.0033818,0.0025815,0.0014237,0.0011864,0.0011673,0.0011517,0.0011026,0.0010761,0.00085258,0.00072976,0.00065097,0.00061041,0.00053317,0.0004748,0.00046463,0.00039411,0.00035878,0.00031966,0.00026507,0.00020645,0.00020315,0.00018651,0.00017572,0.00017107,0.00012815,0.00011831,8.1903e-05,7.3869e-05,6.1502e-05,5.5717e-05,5.3957e-05,4.5257e-05,4.4235e-05,4.2075e-05,3.7702e-05,3.053e-05 1,1.3909e-20,2.2264e-20,2.2794e-20,2.6258e-20,2.9274e-20,3.3765e-20,4.4512e-20,8.5612e-20,1.2945e-19,1.3792e-19,1.9134e-19,2.0183e-19,2.4942e-19,4.166e-19,4.8906e-19,5.4662e-19,8.8379e-19,9.5957e-19,1.0511e-18,1.4266e-18,1.4741e-18,1.5021e-18,1.8944e-18,2.1719e-18,2.1816e-18,2.8342e-18,2.9024e-18,3.2658e-18,3.3168e-18,3.3672e-18,7.469e-18,1.5871e-17,1.6984e-17,2.1175e-17,2.5768e-17,3e-17,3.592e-17,4.4262e-17,6.3833e-17,7.8029e-17,1.0803e-16,1.6235e-16,1.6855e-16,1.8253e-16,1.9645e-16,2.8772e-16,2.8788e-16,7.0998e-16,7.5881e-16,7.8735e-16,1.0294e-15,1.0498e-15,1.7712e-15,2.1732e-15,2.3659e-15,2.8496e-15,3.2064e-15,3.9239e-15,4.1771e-15,6.7424e-15,9.0443e-15,2.2574e-14,2.8949e-14,3.1453e-14,3.6479e-14,5.4714e-14,5.9437e-14,6.3963e-14,9.0178e-14,1.2423e-13,1.3981e-13,1.5399e-13,2.1825e-13,3.5979e-13,6.065e-13,8.5985e-13,9.2492e-13,1.7662e-12,2.2051e-12,2.445e-12,2.5594e-12,3.0796e-12,6.5535e-12,6.7137e-12,7.6508e-12,9.4073e-12,9.7959e-12,1.3137e-11,2.9241e-11,2.955e-11,3.6945e-11,4.002e-11,9.8693e-11,1.2351e-10,1.2556e-10,1.5328e-10,2.0053e-10,2.0159e-10,2.0601e-10,2.4205e-10,2.424e-10,2.8042e-10,2.9664e-10,6.5757e-10,9.2813e-10,9.3898e-10,1.3835e-09,1.5339e-09,1.7986e-09,1.9429e-09,2.0333e-09,2.138e-09,2.1733e-09,2.2702e-09,2.7051e-09,2.7607e-09,2.8787e-09,2.9792e-09,3.8551e-09,5.1483e-09,7.4437e-09,8.5441e-09,1.1417e-08,1.5735e-08,1.7993e-08,1.9278e-08,4.094e-08,4.4617e-08,4.7522e-08,5.3833e-08,6.3038e-08,7.2229e-08,8.0636e-08,8.2228e-08,8.3242e-08,9.5563e-08,1.3696e-07,1.4061e-07,1.6178e-07,2.0081e-07,2.261e-07,2.3049e-07,4.4979e-07,4.5296e-07,5.1598e-07,6.6448e-07,6.9562e-07,8.2459e-07,8.5823e-07,1.1334e-06,1.3567e-06,2.0324e-06,2.052e-06,3.2304e-06,3.4003e-06,3.4563e-06,4.6155e-06,4.7007e-06,5.2123e-06,5.9678e-06,6.2246e-06,6.4257e-06,7.2806e-06,7.4322e-06,7.5327e-06,8.3119e-06,8.6025e-06,8.6799e-06,9.4135e-06,9.6916e-06,1.1379e-05,1.4809e-05,1.5516e-05,1.5709e-05,1.7651e-05,1.8518e-05,2.2482e-05,3.145e-05,3.4857e-05,4.097e-05,4.3463e-05,5.1154e-05,6.0067e-05,6.0856e-05,6.1475e-05,6.1547e-05,6.451e-05,6.4767e-05,7.4988e-05,8.0171e-05,9.0841e-05,9.1347e-05,9.4468e-05,0.000117,0.00011773,0.00013021,0.00014593,0.0001785,0.00018326,0.00019751,0.00020084,0.00020948,0.00022475,0.00025019,0.00025092,0.00031908,0.00041749,0.00042946,0.00044308,0.00044741,0.00052425,0.00057745,0.00079704,0.00081044,0.00083808,0.00088668,0.0010908,0.0013488,0.0016943,0.001813,0.0018873,0.0020889,0.0025567,0.002791,0.0031238,0.0037057,0.0042848,0.0043974,0.0057808,0.0059893,0.0060671,0.0064581,0.0066199,0.0080462,0.0087375,0.0089469,0.0089684,0.0094234,0.010069,0.010381,0.010523,0.013298,0.013302,0.016333,0.020516,0.025171,0.03023,0.032671,0.033337,0.03494,0.036394,0.040018,0.040435,0.048334,0.050519,0.055138,0.061349,0.06538,0.065849,0.069302,0.071697,0.077861,0.087793,0.088774,0.09348,0.10129,0.108,0.10832,0.13413,0.13874,0.141,0.14691,0.15005,0.15509,0.16337,0.1668,0.17166,0.17969,0.19046,0.20114,0.20224,0.21585,0.22513,0.23352,0.25331,0.26269,0.26615,0.27864,0.27941,0.285,0.28749,0.32159,0.33068,0.33425,0.35078,0.36056,0.36206,0.38544,0.43216,0.44647,0.45391,0.4714,0.47292,0.49284,0.49504,0.52108,0.53652,0.56772,0.57056,0.57322,0.5747,0.57956,0.58353,0.58595,0.61147,0.6168,0.66713,0.6838,0.69478,0.69911,0.73453,0.73514,0.74659,0.7519,0.77811,0.77892,0.78085,0.79972,0.80485,0.80666,0.81213,0.81913,0.82567,0.82903,0.86079,0.86187,0.87745,0.89941,0.91838,0.94183,0.94214,0.94957,0.95825,0.96853,0.96863,0.97186,0.98476,0.9872,0.98746,0.99648,0.99773,0.99832,0.99958,1,0.99859,0.99811,0.99486,0.98189,0.98166,0.98025,0.97721,0.97468,0.97139,0.96726,0.91685,0.90034,0.87271,0.85052,0.84939,0.84678,0.81116,0.8025,0.80177,0.76513,0.69994,0.69782,0.67805,0.67394,0.62797,0.61505,0.58685,0.57218,0.55601,0.55288,0.53381,0.53047,0.52888,0.48632,0.4738,0.46857,0.45171,0.44645,0.42266,0.41731,0.40663,0.3806,0.38036,0.36815,0.36408,0.36407,0.33805,0.33725,0.32684,0.31606,0.29327,0.27361,0.26001,0.23929,0.22112,0.19896,0.1981,0.1822,0.16779,0.15969,0.13943,0.13387,0.1231,0.11705,0.10516,0.10396,0.10152,0.09606,0.085379,0.075415,0.070532,0.065918,0.063611,0.063292,0.059293,0.054935,0.043244,0.040512,0.039071,0.036042,0.036022,0.033239,0.032906,0.031141,0.029782,0.025577,0.025013,0.022154,0.019754,0.013427,0.012462,0.012019,0.010923,0.0099773,0.0096374,0.0089894,0.0085483,0.0080282,0.007231,0.0072269,0.0059713,0.0056728,0.0056123,0.0055802,0.0045748,0.004554,0.0044628,0.0043951,0.0042243,0.0039546,0.0037262,0.0028509,0.0015799,0.0013185,0.0012974,0.0012802,0.0012261,0.0011969,0.00094994,0.00081406,0.0007268,0.00068184,0.00059617,0.00053136,0.00052005,0.00044166,0.00040234,0.00035877,0.0002979,0.00023243,0.00022874,0.00021013,0.00019805,0.00019284,0.00014475,0.00013371,9.2793e-05,8.3748e-05,6.9812e-05,6.3286e-05,6.1299e-05,5.1474e-05,5.0319e-05,4.7878e-05,4.2931e-05,3.4812e-05 1,8.357e-21,1.3412e-20,1.3733e-20,1.5833e-20,1.7662e-20,2.0388e-20,2.6919e-20,5.1966e-20,7.8758e-20,8.3943e-20,1.1668e-19,1.2311e-19,1.5232e-19,2.5517e-19,2.9983e-19,3.3534e-19,5.437e-19,5.906e-19,6.473e-19,8.8009e-19,9.0957e-19,9.2697e-19,1.1706e-18,1.3432e-18,1.3492e-18,1.7555e-18,1.7981e-18,2.0245e-18,2.0564e-18,2.0878e-18,4.6531e-18,9.9324e-18,1.0633e-17,1.3275e-17,1.6173e-17,1.8847e-17,2.2591e-17,2.7873e-17,4.0288e-17,4.9309e-17,6.8407e-17,1.0306e-16,1.0702e-16,1.1595e-16,1.2486e-16,1.833e-16,1.8341e-16,4.5491e-16,4.864e-16,5.0481e-16,6.611e-16,6.7433e-16,1.1416e-15,1.4025e-15,1.5276e-15,1.8422e-15,2.0745e-15,2.542e-15,2.7072e-15,4.3834e-15,5.8914e-15,1.4794e-14,1.9004e-14,2.0659e-14,2.3984e-14,3.6073e-14,3.9209e-14,4.2215e-14,5.9657e-14,8.2365e-14,9.2771e-14,1.0224e-13,1.4527e-13,2.4031e-13,4.0659e-13,5.7787e-13,6.2192e-13,1.1931e-12,1.492e-12,1.6555e-12,1.7336e-12,2.0888e-12,4.4697e-12,4.5798e-12,5.2241e-12,6.4334e-12,6.7012e-12,9.0067e-12,2.0169e-11,2.0384e-11,2.5528e-11,2.767e-11,6.8716e-11,8.6149e-11,8.7589e-11,1.0709e-10,1.404e-10,1.4115e-10,1.4427e-10,1.6973e-10,1.6998e-10,1.9687e-10,2.0835e-10,4.6483e-10,6.5795e-10,6.657e-10,9.84e-10,1.0919e-09,1.282e-09,1.3858e-09,1.4508e-09,1.5262e-09,1.5516e-09,1.6214e-09,1.9348e-09,1.9749e-09,2.0601e-09,2.1326e-09,2.7657e-09,3.7026e-09,5.3705e-09,6.1718e-09,8.268e-09,1.1427e-08,1.3083e-08,1.4026e-08,2.9989e-08,3.2708e-08,3.4858e-08,3.9532e-08,4.6358e-08,5.3184e-08,5.9436e-08,6.062e-08,6.1374e-08,7.055e-08,1.0145e-07,1.0418e-07,1.2003e-07,1.493e-07,1.6829e-07,1.7159e-07,3.3702e-07,3.3942e-07,3.8714e-07,4.9981e-07,5.2348e-07,6.2158e-07,6.472e-07,8.5715e-07,1.0279e-06,1.5462e-06,1.5613e-06,2.4696e-06,2.6009e-06,2.6442e-06,3.5419e-06,3.608e-06,4.0051e-06,4.5924e-06,4.7921e-06,4.9487e-06,5.6146e-06,5.7329e-06,5.8113e-06,6.4193e-06,6.6462e-06,6.7067e-06,7.28e-06,7.4975e-06,8.8185e-06,1.1511e-05,1.2066e-05,1.2219e-05,1.3747e-05,1.443e-05,1.7558e-05,2.4658e-05,2.7361e-05,3.2221e-05,3.4205e-05,4.0337e-05,4.7457e-05,4.8088e-05,4.8582e-05,4.864e-05,5.1011e-05,5.1216e-05,5.9405e-05,6.3562e-05,7.2132e-05,7.2538e-05,7.5048e-05,9.3195e-05,9.3781e-05,0.00010386,0.00011656,0.00014295,0.0001468,0.00015837,0.00016107,0.0001681,0.00018052,0.00020123,0.00020183,0.00025746,0.00033808,0.0003479,0.00035909,0.00036264,0.00042584,0.00046967,0.0006512,0.0006623,0.00068521,0.00072552,0.00089519,0.0011103,0.0013994,0.001499,0.0015614,0.0017308,0.0021249,0.0023228,0.0026044,0.0030978,0.0035902,0.0036862,0.0048675,0.005046,0.0051126,0.0054478,0.0055866,0.0068128,0.0074086,0.0075892,0.0076078,0.0080006,0.0085586,0.0088287,0.0089514,0.01136,0.011363,0.014004,0.017667,0.021761,0.02623,0.028392,0.028983,0.030406,0.031697,0.034923,0.035294,0.04235,0.044306,0.04845,0.054035,0.057669,0.058093,0.06121,0.063375,0.068956,0.077975,0.078867,0.083152,0.090281,0.096414,0.096709,0.12041,0.12467,0.12675,0.13221,0.13511,0.13978,0.14745,0.15063,0.15515,0.16262,0.17266,0.18262,0.18366,0.1964,0.20511,0.21299,0.23164,0.2405,0.24377,0.25559,0.25632,0.26162,0.26399,0.29644,0.30512,0.30853,0.32436,0.33374,0.33518,0.35768,0.40285,0.41675,0.42399,0.44104,0.44252,0.46201,0.46416,0.48971,0.50492,0.53576,0.53857,0.54121,0.54268,0.54751,0.55145,0.55385,0.57926,0.58459,0.63509,0.65193,0.66305,0.66743,0.70351,0.70413,0.71586,0.72131,0.74831,0.74916,0.75115,0.77072,0.77606,0.77795,0.78366,0.79098,0.79783,0.80136,0.83493,0.83608,0.85273,0.87643,0.8972,0.92336,0.92371,0.93217,0.94217,0.95425,0.95438,0.95825,0.97426,0.97744,0.97778,0.99065,0.99275,0.99384,0.99664,0.99859,1,0.99997,0.99883,0.99051,0.99035,0.98931,0.98703,0.98509,0.98252,0.97923,0.93605,0.92123,0.89598,0.87539,0.87434,0.8719,0.83834,0.83011,0.82942,0.79433,0.73103,0.72896,0.70955,0.70551,0.66006,0.64721,0.61906,0.60436,0.58813,0.58497,0.56576,0.56238,0.56077,0.51762,0.50488,0.49954,0.48232,0.47694,0.45254,0.44704,0.43605,0.40919,0.40894,0.39631,0.39208,0.39208,0.36505,0.36421,0.35337,0.34212,0.31827,0.29762,0.2833,0.26142,0.24215,0.21859,0.21766,0.20068,0.18524,0.17655,0.15472,0.14871,0.13705,0.13048,0.11755,0.11624,0.11358,0.10762,0.095923,0.084978,0.079599,0.074507,0.071958,0.071605,0.067179,0.062347,0.049333,0.04628,0.044667,0.041274,0.041251,0.038128,0.037753,0.035768,0.034238,0.029493,0.028855,0.025617,0.022892,0.015671,0.014565,0.014056,0.012797,0.011707,0.011315,0.010567,0.010057,0.0094553,0.0085316,0.0085269,0.007068,0.0067204,0.0066498,0.0066125,0.0054387,0.0054144,0.0053076,0.0052285,0.0050285,0.0047123,0.0044444,0.0034147,0.0019094,0.0015976,0.0015725,0.001552,0.0014872,0.0014523,0.0011565,0.00099328,0.00088821,0.00083401,0.00073058,0.00065218,0.0006385,0.00054346,0.00049569,0.00044269,0.00036849,0.00028844,0.00028393,0.00026111,0.00024629,0.0002399,0.00018072,0.00016711,0.0001165,0.00010528,8.7954e-05,7.9827e-05,7.7351e-05,6.5089e-05,6.3646e-05,6.0594e-05,5.4404e-05,4.4224e-05 1,7.7146e-21,1.2386e-20,1.2683e-20,1.4624e-20,1.6315e-20,1.8835e-20,2.4875e-20,4.8048e-20,7.2847e-20,7.7647e-20,1.0796e-19,1.1391e-19,1.4097e-19,2.3627e-19,2.7766e-19,3.1057e-19,5.0376e-19,5.4726e-19,5.9985e-19,8.158e-19,8.4316e-19,8.593e-19,1.0854e-18,1.2455e-18,1.2511e-18,1.6283e-18,1.6678e-18,1.8781e-18,1.9077e-18,1.9369e-18,4.3199e-18,9.2275e-18,9.8795e-18,1.2336e-17,1.5032e-17,1.752e-17,2.1004e-17,2.5921e-17,3.7479e-17,4.588e-17,6.3669e-17,9.5963e-17,9.9652e-17,1.0798e-16,1.1628e-16,1.7077e-16,1.7087e-16,4.2418e-16,4.5358e-16,4.7077e-16,6.1669e-16,6.2904e-16,1.0654e-15,1.3092e-15,1.4262e-15,1.7202e-15,1.9373e-15,2.3744e-15,2.5288e-15,4.0967e-15,5.5077e-15,1.3844e-14,1.7788e-14,1.9339e-14,2.2455e-14,3.3787e-14,3.6728e-14,3.9547e-14,5.5907e-14,7.7214e-14,8.6981e-14,9.5873e-14,1.3627e-13,2.2554e-13,3.8182e-13,5.4288e-13,5.8431e-13,1.1218e-12,1.4032e-12,1.5571e-12,1.6307e-12,1.9651e-12,4.2088e-12,4.3126e-12,4.92e-12,6.0604e-12,6.313e-12,8.4878e-12,1.9025e-11,1.9228e-11,2.4087e-11,2.611e-11,6.4914e-11,8.1405e-11,8.2768e-11,1.0122e-10,1.3275e-10,1.3346e-10,1.3641e-10,1.6052e-10,1.6075e-10,1.8622e-10,1.9709e-10,4.4016e-10,6.233e-10,6.3065e-10,9.3266e-10,1.0351e-09,1.2156e-09,1.3141e-09,1.3758e-09,1.4474e-09,1.4715e-09,1.5378e-09,1.8355e-09,1.8736e-09,1.9545e-09,2.0234e-09,2.6249e-09,3.5155e-09,5.1017e-09,5.864e-09,7.8588e-09,1.0866e-08,1.2443e-08,1.3341e-08,2.8556e-08,3.1148e-08,3.3199e-08,3.7657e-08,4.417e-08,5.0684e-08,5.665e-08,5.7781e-08,5.8501e-08,6.726e-08,9.6772e-08,9.9379e-08,1.1452e-07,1.4249e-07,1.6065e-07,1.638e-07,3.2206e-07,3.2435e-07,3.7003e-07,4.7791e-07,5.0057e-07,5.9454e-07,6.1908e-07,8.2027e-07,9.8395e-07,1.481e-06,1.4955e-06,2.3674e-06,2.4934e-06,2.535e-06,3.3973e-06,3.4607e-06,3.8423e-06,4.4067e-06,4.5988e-06,4.7493e-06,5.3895e-06,5.5032e-06,5.5786e-06,6.1633e-06,6.3816e-06,6.4397e-06,6.9912e-06,7.2005e-06,8.4715e-06,1.1063e-05,1.1598e-05,1.1744e-05,1.3216e-05,1.3874e-05,1.6887e-05,2.373e-05,2.6337e-05,3.1024e-05,3.2938e-05,3.8855e-05,4.5727e-05,4.6336e-05,4.6813e-05,4.6869e-05,4.9158e-05,4.9356e-05,5.7263e-05,6.1279e-05,6.9558e-05,6.995e-05,7.2375e-05,8.9912e-05,9.0479e-05,0.00010022,0.00011251,0.00013803,0.00014176,0.00015295,0.00015557,0.00016237,0.00017439,0.00019444,0.00019501,0.0002489,0.00032701,0.00033653,0.00034738,0.00035082,0.0004121,0.00045462,0.00063076,0.00064154,0.00066378,0.00070292,0.0008677,0.0010768,0.0013578,0.0014546,0.0015154,0.0016802,0.0020638,0.0022564,0.0025306,0.0030114,0.0034913,0.0035849,0.004737,0.0049112,0.0049762,0.0053033,0.0054388,0.0066359,0.0072179,0.0073944,0.0074125,0.0077962,0.0083415,0.0086055,0.0087254,0.01108,0.011083,0.013667,0.017254,0.021266,0.025647,0.027768,0.028348,0.029744,0.031011,0.034177,0.034542,0.041472,0.043394,0.047467,0.052959,0.056533,0.05695,0.060017,0.062147,0.06764,0.076521,0.0774,0.081622,0.088647,0.094692,0.094983,0.11836,0.12256,0.12462,0.13001,0.13288,0.13749,0.14507,0.14821,0.15267,0.16006,0.16998,0.17984,0.18086,0.19347,0.20209,0.20989,0.22836,0.23713,0.24038,0.2521,0.25282,0.25808,0.26042,0.29261,0.30123,0.30461,0.32033,0.32965,0.33107,0.35342,0.39835,0.41218,0.41938,0.43636,0.43783,0.45724,0.45938,0.48486,0.50002,0.53079,0.53359,0.53623,0.5377,0.54251,0.54645,0.54885,0.57423,0.57955,0.63006,0.64691,0.65804,0.66244,0.6986,0.69922,0.71099,0.71645,0.74356,0.74441,0.74641,0.76609,0.77145,0.77335,0.7791,0.78646,0.79336,0.79691,0.83075,0.8319,0.8487,0.87267,0.8937,0.92027,0.92062,0.92923,0.93944,0.9518,0.95193,0.95589,0.97237,0.97567,0.97602,0.98949,0.99172,0.99289,0.99593,0.99811,0.99997,1,0.9992,0.99162,0.99146,0.99048,0.98832,0.98648,0.98402,0.98086,0.93885,0.9243,0.89945,0.87912,0.87808,0.87567,0.84246,0.83431,0.83362,0.7988,0.73584,0.73377,0.71443,0.7104,0.66506,0.65222,0.6241,0.60941,0.59317,0.59001,0.57078,0.5674,0.56579,0.52257,0.50979,0.50444,0.48717,0.48177,0.45728,0.45176,0.44074,0.41375,0.4135,0.4008,0.39656,0.39655,0.36937,0.36853,0.35762,0.3463,0.32229,0.30149,0.28706,0.26499,0.24556,0.22177,0.22084,0.20369,0.18809,0.17929,0.15722,0.15114,0.13933,0.13268,0.11958,0.11826,0.11556,0.10952,0.097662,0.086558,0.081099,0.07593,0.073341,0.072982,0.068487,0.063578,0.050348,0.047242,0.045602,0.042148,0.042125,0.038945,0.038564,0.036543,0.034985,0.03015,0.0295,0.0262,0.02342,0.016051,0.014921,0.014401,0.013114,0.012,0.0116,0.010835,0.010314,0.0096981,0.0087531,0.0087482,0.0072551,0.0068992,0.006827,0.0067887,0.0055865,0.0055616,0.0054522,0.0053711,0.0051662,0.0048422,0.0045675,0.0035117,0.0019663,0.001646,0.0016201,0.001599,0.0015325,0.0014966,0.0011924,0.0010244,0.0009163,0.00086051,0.000754,0.00067327,0.00065917,0.00056125,0.00051202,0.00045738,0.00038086,0.00029828,0.00029362,0.00027007,0.00025477,0.00024817,0.00018707,0.000173,0.00012069,0.00010909,9.1169e-05,8.2761e-05,8.0198e-05,6.7507e-05,6.6013e-05,6.2854e-05,5.6444e-05,4.59e-05 1,5.2401e-21,8.43e-21,8.6326e-21,9.9595e-21,1.1117e-20,1.2841e-20,1.6979e-20,3.2888e-20,4.9951e-20,5.3257e-20,7.4151e-20,7.826e-20,9.6938e-20,1.6283e-19,1.9149e-19,2.1429e-19,3.4833e-19,3.7854e-19,4.1508e-19,5.6528e-19,5.8433e-19,5.9556e-19,7.5304e-19,8.6467e-19,8.6857e-19,1.1317e-18,1.1593e-18,1.3062e-18,1.3268e-18,1.3472e-18,3.0155e-18,6.4635e-18,6.9223e-18,8.6522e-18,1.0553e-17,1.2308e-17,1.4768e-17,1.8242e-17,2.6421e-17,3.2374e-17,4.4994e-17,6.7945e-17,7.057e-17,7.6495e-17,8.2403e-17,1.2124e-16,1.2131e-16,3.0245e-16,3.2352e-16,3.3583e-16,4.405e-16,4.4936e-16,7.6304e-16,9.3858e-16,1.0229e-15,1.2348e-15,1.3915e-15,1.7072e-15,1.8187e-15,2.9533e-15,3.9763e-15,1.0041e-14,1.2917e-14,1.405e-14,1.6326e-14,2.4616e-14,2.677e-14,2.8835e-14,4.0836e-14,5.6494e-14,6.3679e-14,7.0224e-14,9.9994e-14,1.6594e-13,2.8171e-13,4.0128e-13,4.3208e-13,8.3243e-13,1.0425e-12,1.1575e-12,1.2125e-12,1.4627e-12,3.1459e-12,3.2239e-12,3.6807e-12,4.5391e-12,4.7293e-12,6.3691e-12,1.4341e-11,1.4495e-11,1.8182e-11,1.9718e-11,4.9282e-11,6.1884e-11,6.2926e-11,7.7046e-11,1.0121e-10,1.0175e-10,1.0402e-10,1.2252e-10,1.227e-10,1.4226e-10,1.5062e-10,3.3801e-10,4.7967e-10,4.8536e-10,7.1954e-10,7.9908e-10,9.3934e-10,1.016e-09,1.064e-09,1.1197e-09,1.1385e-09,1.1901e-09,1.4221e-09,1.4518e-09,1.5149e-09,1.5686e-09,2.0383e-09,2.735e-09,3.9786e-09,4.5772e-09,6.1461e-09,8.5164e-09,9.7609e-09,1.047e-08,2.2526e-08,2.4585e-08,2.6215e-08,2.9762e-08,3.4947e-08,4.0139e-08,4.4899e-08,4.5801e-08,4.6376e-08,5.3371e-08,7.6985e-08,7.9075e-08,9.1216e-08,1.1367e-07,1.2826e-07,1.308e-07,2.5843e-07,2.6029e-07,2.9723e-07,3.8461e-07,4.0299e-07,4.7925e-07,4.9919e-07,6.6282e-07,7.9619e-07,1.2022e-06,1.214e-06,1.9287e-06,2.0322e-06,2.0664e-06,2.7757e-06,2.828e-06,3.1424e-06,3.608e-06,3.7665e-06,3.8908e-06,4.4199e-06,4.5139e-06,4.5762e-06,5.06e-06,5.2407e-06,5.2888e-06,5.7456e-06,5.919e-06,6.9732e-06,9.1267e-06,9.5717e-06,9.6937e-06,1.0919e-05,1.1468e-05,1.3981e-05,1.9705e-05,2.1889e-05,2.5822e-05,2.743e-05,3.2404e-05,3.819e-05,3.8704e-05,3.9106e-05,3.9153e-05,4.1083e-05,4.125e-05,4.7923e-05,5.1315e-05,5.8315e-05,5.8647e-05,6.0699e-05,7.5559e-05,7.6039e-05,8.4309e-05,9.4744e-05,0.00011646,0.00011964,0.00012918,0.00013141,0.00013721,0.00014747,0.0001646,0.00016509,0.00021121,0.00027825,0.00028643,0.00029576,0.00029872,0.00035147,0.00038812,0.00054032,0.00054965,0.00056891,0.00060282,0.0007458,0.00092765,0.0011728,0.0012573,0.0013104,0.0014546,0.0017909,0.00196,0.0022012,0.0026246,0.0030483,0.0031309,0.0041511,0.0043057,0.0043634,0.0046539,0.0047742,0.0058397,0.0063586,0.0065161,0.0065323,0.0068749,0.0073622,0.0075983,0.0077055,0.0098158,0.0098187,0.012142,0.015378,0.019011,0.02299,0.024921,0.025449,0.026722,0.027878,0.03077,0.031104,0.037451,0.039215,0.042958,0.048014,0.05131,0.051694,0.054527,0.056496,0.061579,0.069814,0.07063,0.074553,0.081091,0.086726,0.086997,0.10886,0.1128,0.11473,0.1198,0.12249,0.12683,0.13397,0.13693,0.14114,0.14811,0.15749,0.16683,0.1678,0.17976,0.18795,0.19537,0.21298,0.22136,0.22446,0.23567,0.23636,0.2414,0.24364,0.27456,0.28285,0.28612,0.30128,0.31028,0.31166,0.33329,0.37695,0.39043,0.39747,0.41406,0.4155,0.43452,0.43662,0.46164,0.47657,0.50696,0.50973,0.51233,0.51379,0.51856,0.52246,0.52484,0.55004,0.55533,0.60575,0.62265,0.63383,0.63825,0.67472,0.67536,0.68727,0.69281,0.72038,0.72124,0.72328,0.74338,0.74888,0.75083,0.75672,0.76429,0.77138,0.77504,0.81005,0.81125,0.82876,0.8539,0.87617,0.90462,0.905,0.91433,0.92547,0.93912,0.93926,0.94369,0.96241,0.96625,0.96666,0.98295,0.98581,0.98735,0.99153,0.99486,0.99883,0.9992,1,0.99599,0.99588,0.99519,0.99362,0.99223,0.99033,0.98783,0.95156,0.93837,0.91547,0.89648,0.8955,0.89324,0.86178,0.854,0.85335,0.81991,0.75871,0.75668,0.73773,0.73377,0.68904,0.67632,0.64836,0.63371,0.61749,0.61433,0.59506,0.59167,0.59006,0.54656,0.53365,0.52825,0.51077,0.50529,0.48042,0.47481,0.46358,0.43604,0.43578,0.4228,0.41845,0.41844,0.39057,0.3897,0.37849,0.36683,0.34206,0.32055,0.30559,0.28266,0.26242,0.23757,0.23659,0.21862,0.20223,0.19298,0.16969,0.16326,0.15076,0.14371,0.12978,0.12837,0.1255,0.11906,0.1064,0.094513,0.088656,0.083102,0.080318,0.079932,0.075092,0.069799,0.05549,0.052121,0.05034,0.046587,0.046562,0.0431,0.042685,0.040482,0.038782,0.033499,0.032788,0.029171,0.02612,0.017998,0.016748,0.016173,0.014746,0.01351,0.013065,0.012214,0.011634,0.010949,0.0098953,0.0098899,0.0082218,0.0078234,0.0077426,0.0076998,0.0063517,0.0063237,0.0062009,0.0061098,0.0058796,0.0055152,0.0052061,0.0040153,0.0022636,0.0018986,0.0018691,0.001845,0.0017691,0.0017281,0.0013803,0.0011878,0.0010637,0.00099964,0.00087715,0.00078416,0.00076791,0.00065493,0.00059805,0.00053486,0.00044621,0.00035031,0.00034489,0.00031749,0.00029968,0.00029199,0.00022071,0.00020427,0.000143,0.00012937,0.0001083,9.84e-05,9.538e-05,8.0414e-05,7.8651e-05,7.492e-05,6.7346e-05,5.4867e-05 1,2.1945e-21,3.546e-21,3.6321e-21,4.1959e-21,4.6882e-21,5.4229e-21,7.1892e-21,1.4012e-20,2.1367e-20,2.2795e-20,3.1838e-20,3.3619e-20,4.1728e-20,7.0444e-20,8.2972e-20,9.2953e-20,1.5181e-19,1.6511e-19,1.8121e-19,2.4752e-19,2.5594e-19,2.6091e-19,3.3066e-19,3.802e-19,3.8193e-19,4.9895e-19,5.1123e-19,5.7667e-19,5.8587e-19,5.9497e-19,1.3424e-18,2.8995e-18,3.1074e-18,3.8928e-18,4.7575e-18,5.5574e-18,6.6804e-18,8.2698e-18,1.2023e-17,1.4763e-17,2.0588e-17,3.1222e-17,3.2441e-17,3.5194e-17,3.7942e-17,5.6049e-17,5.6082e-17,1.4118e-16,1.5112e-16,1.5693e-16,2.0644e-16,2.1064e-16,3.5971e-16,4.4344e-16,4.8371e-16,5.8514e-16,6.6023e-16,8.1181e-16,8.6546e-16,1.4128e-15,1.9084e-15,4.8688e-15,6.2814e-15,6.8385e-15,7.9598e-15,1.2057e-14,1.3125e-14,1.4149e-14,2.0118e-14,2.7935e-14,3.1531e-14,3.4811e-14,4.9772e-14,8.3086e-14,1.4193e-13,2.0302e-13,2.1879e-13,4.2483e-13,5.3349e-13,5.9311e-13,6.2162e-13,7.516e-13,1.6317e-12,1.6727e-12,1.9128e-12,2.365e-12,2.4653e-12,3.3325e-12,7.5809e-12,7.6632e-12,9.64e-12,1.0465e-11,2.6467e-11,3.3334e-11,3.3902e-11,4.162e-11,5.4869e-11,5.5169e-11,5.6412e-11,6.659e-11,6.6689e-11,7.7473e-11,8.2087e-11,1.8623e-10,2.6555e-10,2.6874e-10,4.0057e-10,4.455e-10,5.2486e-10,5.6831e-10,5.9556e-10,6.2719e-10,6.3785e-10,6.6718e-10,7.9922e-10,8.1615e-10,8.5213e-10,8.8279e-10,1.1514e-09,1.5514e-09,2.269e-09,2.6157e-09,3.5272e-09,4.911e-09,5.6399e-09,6.0561e-09,1.3179e-08,1.4403e-08,1.5373e-08,1.7486e-08,2.0583e-08,2.3692e-08,2.6547e-08,2.7088e-08,2.7434e-08,3.1641e-08,4.5901e-08,4.7167e-08,5.4531e-08,6.819e-08,7.7093e-08,7.8641e-08,1.5709e-07,1.5824e-07,1.8109e-07,2.3532e-07,2.4676e-07,2.943e-07,3.0675e-07,4.0923e-07,4.931e-07,7.4979e-07,7.5729e-07,1.2128e-06,1.2791e-06,1.3009e-06,1.7566e-06,1.7903e-06,1.9931e-06,2.294e-06,2.3967e-06,2.4772e-06,2.8205e-06,2.8816e-06,2.9221e-06,3.2369e-06,3.3546e-06,3.386e-06,3.684e-06,3.7973e-06,4.487e-06,5.902e-06,6.1954e-06,6.2758e-06,7.0849e-06,7.4476e-06,9.1143e-06,1.293e-05,1.4392e-05,1.7033e-05,1.8114e-05,2.147e-05,2.5386e-05,2.5734e-05,2.6007e-05,2.6039e-05,2.7348e-05,2.7462e-05,3.2e-05,3.4312e-05,3.9094e-05,3.9321e-05,4.0726e-05,5.0923e-05,5.1254e-05,5.6949e-05,6.4153e-05,7.9198e-05,8.1408e-05,8.8041e-05,8.9594e-05,9.3634e-05,0.00010079,0.00011276,0.00011311,0.00014548,0.00019282,0.00019862,0.00020523,0.00020733,0.00024483,0.00027096,0.00038009,0.0003868,0.00040067,0.00042513,0.00052859,0.0006609,0.00084028,0.00090242,0.00094148,0.0010478,0.0012967,0.0014224,0.0016022,0.0019191,0.0022376,0.0022999,0.0030724,0.0031899,0.0032339,0.0034552,0.0035471,0.0043629,0.0047619,0.0048833,0.0048957,0.00516,0.0055365,0.0057192,0.0058023,0.0074436,0.0074459,0.0092665,0.011821,0.014711,0.0179,0.019455,0.019881,0.020909,0.021844,0.024191,0.024462,0.029643,0.03109,0.034167,0.038342,0.041075,0.041393,0.043748,0.045387,0.049632,0.056541,0.057228,0.060534,0.066062,0.070845,0.071075,0.089772,0.093163,0.094826,0.099196,0.10153,0.10528,0.11148,0.11405,0.11772,0.12381,0.13203,0.14023,0.14108,0.15164,0.15889,0.16549,0.18118,0.18868,0.19146,0.20154,0.20216,0.2067,0.20873,0.23675,0.24431,0.24729,0.26116,0.26943,0.27069,0.29065,0.33124,0.34388,0.35048,0.36611,0.36748,0.38547,0.38747,0.41129,0.42558,0.45482,0.4575,0.46002,0.46143,0.46605,0.46983,0.47214,0.49668,0.50186,0.55152,0.56832,0.57949,0.58391,0.62065,0.62129,0.63338,0.63902,0.66724,0.66813,0.67023,0.69101,0.69672,0.69874,0.70489,0.71279,0.72023,0.72407,0.76119,0.76248,0.78131,0.80869,0.83334,0.86554,0.86598,0.87676,0.8898,0.9061,0.90627,0.91165,0.93506,0.94003,0.94057,0.96286,0.96709,0.96942,0.97608,0.98189,0.99051,0.99162,0.99599,1,1,0.99996,0.99972,0.99938,0.99876,0.99777,0.9749,0.96498,0.94681,0.9311,0.93028,0.92837,0.90134,0.89452,0.89394,0.86408,0.80772,0.80583,0.78799,0.78424,0.74148,0.72919,0.70197,0.6876,0.67161,0.66848,0.64936,0.64599,0.64438,0.60074,0.58769,0.58221,0.56443,0.55884,0.53336,0.52759,0.51601,0.48747,0.4872,0.47367,0.46913,0.46912,0.43988,0.43897,0.42715,0.41482,0.3885,0.36549,0.34942,0.32465,0.30265,0.27546,0.27438,0.25458,0.23643,0.22615,0.2001,0.19287,0.17876,0.17077,0.15494,0.15333,0.15005,0.14267,0.12812,0.11437,0.10756,0.10109,0.097837,0.097386,0.091716,0.085495,0.068565,0.064552,0.062425,0.057934,0.057904,0.053749,0.05325,0.050596,0.048545,0.042146,0.041282,0.036874,0.033139,0.023112,0.021556,0.020838,0.019054,0.017504,0.016944,0.015874,0.015142,0.014276,0.012941,0.012934,0.010811,0.010302,0.010198,0.010144,0.0084138,0.0083777,0.0082196,0.0081022,0.0078052,0.0073346,0.0069346,0.0053866,0.0030828,0.0025973,0.002558,0.0025259,0.0024245,0.0023697,0.0019034,0.0016441,0.0014762,0.0013894,0.001223,0.0010962,0.001074,0.00091946,0.00084139,0.00075443,0.00063201,0.00049891,0.00049137,0.00045316,0.0004283,0.00041755,0.00031756,0.0002944,0.00020768,0.00018829,0.00015822,0.00014404,0.00013971,0.00011821,0.00011567,0.00011029,9.9361e-05,8.1288e-05 1,2.169e-21,3.505e-21,3.5901e-21,4.1475e-21,4.6342e-21,5.3605e-21,7.1067e-21,1.3853e-20,2.1124e-20,2.2536e-20,3.1478e-20,3.324e-20,4.1259e-20,6.9655e-20,8.2045e-20,9.1916e-20,1.5012e-19,1.6328e-19,1.792e-19,2.4479e-19,2.5312e-19,2.5804e-19,3.2703e-19,3.7603e-19,3.7774e-19,4.935e-19,5.0563e-19,5.7037e-19,5.7948e-19,5.8847e-19,1.3279e-18,2.8684e-18,3.0742e-18,3.8512e-18,4.7069e-18,5.4984e-18,6.6096e-18,8.1824e-18,1.1897e-17,1.4608e-17,2.0372e-17,3.0898e-17,3.2104e-17,3.4829e-17,3.7549e-17,5.5471e-17,5.5504e-17,1.3974e-16,1.4958e-16,1.5534e-16,2.0435e-16,2.0851e-16,3.5609e-16,4.39e-16,4.7887e-16,5.793e-16,6.5365e-16,8.0374e-16,8.5687e-16,1.3989e-15,1.8897e-15,4.8217e-15,6.2208e-15,6.7726e-15,7.8833e-15,1.1942e-14,1.3e-14,1.4015e-14,1.9927e-14,2.7672e-14,3.1235e-14,3.4485e-14,4.9307e-14,8.2317e-14,1.4062e-13,2.0117e-13,2.168e-13,4.2101e-13,5.287e-13,5.878e-13,6.1606e-13,7.449e-13,1.6173e-12,1.658e-12,1.896e-12,2.3443e-12,2.4438e-12,3.3036e-12,7.5162e-12,7.5978e-12,9.5581e-12,1.0377e-11,2.6247e-11,3.3057e-11,3.3622e-11,4.1277e-11,5.4419e-11,5.4716e-11,5.595e-11,6.6046e-11,6.6145e-11,7.6842e-11,8.142e-11,1.8474e-10,2.6344e-10,2.6661e-10,3.9742e-10,4.4201e-10,5.2077e-10,5.6388e-10,5.9093e-10,6.2232e-10,6.3289e-10,6.62e-10,7.9304e-10,8.0984e-10,8.4556e-10,8.7599e-10,1.1426e-09,1.5396e-09,2.2519e-09,2.596e-09,3.501e-09,4.8747e-09,5.5984e-09,6.0117e-09,1.3084e-08,1.43e-08,1.5263e-08,1.7361e-08,2.0437e-08,2.3524e-08,2.6359e-08,2.6897e-08,2.724e-08,3.1419e-08,4.5582e-08,4.6839e-08,5.4154e-08,6.7722e-08,7.6566e-08,7.8104e-08,1.5604e-07,1.5718e-07,1.7988e-07,2.3377e-07,2.4513e-07,2.9237e-07,3.0474e-07,4.0658e-07,4.8992e-07,7.4504e-07,7.5249e-07,1.2052e-06,1.2711e-06,1.2928e-06,1.7458e-06,1.7793e-06,1.9809e-06,2.2801e-06,2.3821e-06,2.4622e-06,2.8035e-06,2.8642e-06,2.9045e-06,3.2175e-06,3.3345e-06,3.3657e-06,3.662e-06,3.7746e-06,4.4604e-06,5.8674e-06,6.1591e-06,6.2391e-06,7.0437e-06,7.4043e-06,9.0618e-06,1.2856e-05,1.4311e-05,1.6937e-05,1.8013e-05,2.1351e-05,2.5246e-05,2.5593e-05,2.5864e-05,2.5896e-05,2.7198e-05,2.7311e-05,3.1826e-05,3.4126e-05,3.8884e-05,3.911e-05,4.0507e-05,5.0653e-05,5.0981e-05,5.6648e-05,6.3816e-05,7.8787e-05,8.0986e-05,8.7586e-05,8.9132e-05,9.3152e-05,0.00010027,0.00011219,0.00011253,0.00014474,0.00019186,0.00019764,0.00020422,0.00020631,0.00024363,0.00026965,0.00037828,0.00038497,0.00039878,0.00042312,0.00052614,0.00065788,0.0008365,0.00089838,0.00093727,0.0010431,0.0012911,0.0014163,0.0015953,0.001911,0.0022283,0.0022903,0.0030599,0.003177,0.0032208,0.0034413,0.0035328,0.0043457,0.0047433,0.0048642,0.0048766,0.00514,0.0055152,0.0056973,0.00578,0.0074157,0.007418,0.0092326,0.011779,0.01466,0.017839,0.019389,0.019814,0.020839,0.021772,0.024112,0.024382,0.029549,0.030992,0.034061,0.038225,0.04095,0.041268,0.043617,0.045252,0.049486,0.056379,0.057064,0.060363,0.065878,0.07065,0.070879,0.089537,0.092921,0.09458,0.098941,0.10127,0.10501,0.1112,0.11377,0.11743,0.1235,0.13171,0.1399,0.14075,0.15129,0.15853,0.16511,0.18078,0.18827,0.19105,0.20111,0.20173,0.20626,0.20828,0.23627,0.24382,0.24679,0.26065,0.2689,0.27017,0.2901,0.33065,0.34328,0.34988,0.36549,0.36685,0.38483,0.38683,0.41064,0.42491,0.45414,0.45682,0.45934,0.46075,0.46536,0.46914,0.47145,0.49597,0.50115,0.5508,0.5676,0.57876,0.58319,0.61992,0.62056,0.63265,0.63829,0.66652,0.66741,0.66951,0.6903,0.69601,0.69804,0.70418,0.71209,0.71953,0.72338,0.76052,0.7618,0.78065,0.80806,0.83274,0.86498,0.86542,0.87622,0.88929,0.90561,0.90579,0.91118,0.93465,0.93963,0.94017,0.96254,0.96679,0.96913,0.97582,0.98166,0.99035,0.99146,0.99588,1,1,0.99997,0.99975,0.99942,0.99882,0.99785,0.97516,0.96528,0.94718,0.93152,0.9307,0.9288,0.90183,0.89502,0.89445,0.86464,0.80836,0.80646,0.78864,0.7849,0.74217,0.72988,0.70268,0.68831,0.67232,0.6692,0.65009,0.64671,0.6451,0.60147,0.58842,0.58293,0.56515,0.55956,0.53408,0.5283,0.51672,0.48817,0.4879,0.47436,0.46982,0.46981,0.44056,0.43965,0.42782,0.41548,0.38914,0.36611,0.35003,0.32523,0.30321,0.27599,0.27491,0.25509,0.23692,0.22661,0.20053,0.19329,0.17916,0.17116,0.15529,0.15368,0.1504,0.14301,0.12843,0.11466,0.10784,0.10135,0.09809,0.097638,0.091956,0.085722,0.068755,0.064733,0.062602,0.0581,0.05807,0.053905,0.053404,0.050744,0.048688,0.042273,0.041407,0.036988,0.033243,0.023188,0.021628,0.020908,0.019119,0.017564,0.017003,0.015929,0.015195,0.014326,0.012987,0.01298,0.01085,0.010339,0.010236,0.010181,0.008445,0.0084088,0.0082501,0.0081324,0.0078344,0.0073622,0.0069608,0.0054075,0.0030954,0.0026081,0.0025686,0.0025363,0.0024346,0.0023796,0.0019115,0.0016511,0.0014826,0.0013954,0.0012283,0.0011011,0.0010788,0.00092359,0.00084519,0.00075786,0.00063492,0.00050124,0.00049367,0.0004553,0.00043032,0.00041953,0.00031909,0.00029583,0.00020871,0.00018923,0.00015901,0.00014477,0.00014042,0.00011881,0.00011626,0.00011086,9.9873e-05,8.1712e-05 1,2.0192e-21,3.2641e-21,3.3434e-21,3.863e-21,4.3166e-21,4.9937e-21,6.6219e-21,1.2914e-20,1.97e-20,2.1017e-20,2.9364e-20,3.1009e-20,3.8496e-20,6.5018e-20,7.6592e-20,8.5815e-20,1.4021e-19,1.5251e-19,1.6739e-19,2.2872e-19,2.3651e-19,2.4111e-19,3.0563e-19,3.5146e-19,3.5306e-19,4.6135e-19,4.7271e-19,5.3328e-19,5.418e-19,5.5022e-19,1.2424e-18,2.6854e-18,2.8782e-18,3.6064e-18,4.4083e-18,5.1503e-18,6.1921e-18,7.6668e-18,1.1151e-17,1.3694e-17,1.9103e-17,2.8983e-17,3.0116e-17,3.2674e-17,3.5228e-17,5.2059e-17,5.209e-17,1.3125e-16,1.405e-16,1.4591e-16,1.9199e-16,1.959e-16,3.3472e-16,4.1273e-16,4.5025e-16,5.4477e-16,6.1476e-16,7.5605e-16,8.0607e-16,1.3165e-15,1.7789e-15,4.5428e-15,5.8624e-15,6.3829e-15,7.4307e-15,1.1261e-14,1.2259e-14,1.3217e-14,1.8799e-14,2.6113e-14,2.9479e-14,3.2549e-14,4.6555e-14,7.776e-14,1.3291e-13,1.9019e-13,2.0499e-13,3.9832e-13,5.0033e-13,5.5631e-13,5.8308e-13,7.0516e-13,1.5322e-12,1.5707e-12,1.7965e-12,2.2218e-12,2.3162e-12,3.132e-12,7.1317e-12,7.2092e-12,9.0714e-12,9.8491e-12,2.4936e-11,3.1415e-11,3.1951e-11,3.9235e-11,5.1742e-11,5.2025e-11,5.3199e-11,6.281e-11,6.2904e-11,7.3089e-11,7.7448e-11,1.7589e-10,2.5091e-10,2.5394e-10,3.7869e-10,4.2123e-10,4.9638e-10,5.3752e-10,5.6333e-10,5.9329e-10,6.0338e-10,6.3117e-10,7.5626e-10,7.723e-10,8.0639e-10,8.3545e-10,1.09e-09,1.4693e-09,2.15e-09,2.479e-09,3.3443e-09,4.6584e-09,5.3508e-09,5.7463e-09,1.2518e-08,1.3683e-08,1.4606e-08,1.6616e-08,1.9564e-08,2.2523e-08,2.5241e-08,2.5757e-08,2.6086e-08,3.0092e-08,4.3678e-08,4.4885e-08,5.1904e-08,6.4926e-08,7.3416e-08,7.4893e-08,1.4976e-07,1.5086e-07,1.7268e-07,2.2448e-07,2.354e-07,2.8084e-07,2.9274e-07,3.9071e-07,4.7092e-07,7.1655e-07,7.2373e-07,1.1599e-06,1.2234e-06,1.2444e-06,1.6811e-06,1.7134e-06,1.9078e-06,2.1964e-06,2.2948e-06,2.372e-06,2.7014e-06,2.76e-06,2.7988e-06,3.1009e-06,3.2139e-06,3.244e-06,3.53e-06,3.6387e-06,4.3009e-06,5.6599e-06,5.9416e-06,6.0189e-06,6.7964e-06,7.1449e-06,8.7469e-06,1.2416e-05,1.3824e-05,1.6364e-05,1.7406e-05,2.0636e-05,2.4408e-05,2.4743e-05,2.5006e-05,2.5037e-05,2.6298e-05,2.6408e-05,3.0781e-05,3.3009e-05,3.7619e-05,3.7838e-05,3.9192e-05,4.9026e-05,4.9345e-05,5.4839e-05,6.179e-05,7.6313e-05,7.8446e-05,8.4851e-05,8.6351e-05,9.0253e-05,9.7165e-05,0.00010873,0.00010906,0.00014035,0.00018612,0.00019173,0.00019813,0.00020016,0.00023645,0.00026174,0.00036742,0.00037393,0.00038737,0.00041106,0.00051134,0.00063965,0.0008137,0.00087402,0.00091193,0.0010151,0.0012569,0.0013791,0.0015538,0.001862,0.0021718,0.0022324,0.0029844,0.0030989,0.0031417,0.0033573,0.0034467,0.0042418,0.0046308,0.0047491,0.0047612,0.0050189,0.0053861,0.0055644,0.0056454,0.0072472,0.0072494,0.0090274,0.011524,0.01435,0.017471,0.018994,0.019411,0.020418,0.021334,0.023634,0.023899,0.028979,0.030398,0.033417,0.037515,0.040197,0.04051,0.042822,0.044433,0.048603,0.055395,0.05607,0.059321,0.064759,0.069465,0.069692,0.088103,0.091445,0.093083,0.09739,0.099686,0.10339,0.1095,0.11204,0.11566,0.12166,0.12977,0.13787,0.13872,0.14915,0.15631,0.16282,0.17834,0.18576,0.18851,0.19848,0.1991,0.20359,0.20559,0.23334,0.24083,0.24378,0.25753,0.26572,0.26698,0.28677,0.32706,0.33961,0.34617,0.3617,0.36305,0.38094,0.38293,0.40663,0.42085,0.44996,0.45263,0.45514,0.45655,0.46115,0.46491,0.46722,0.49167,0.49683,0.54639,0.56317,0.57433,0.57875,0.61547,0.61611,0.62821,0.63386,0.66212,0.66301,0.66511,0.68594,0.69166,0.69369,0.69985,0.70778,0.71524,0.7191,0.75638,0.75767,0.77661,0.80418,0.82903,0.86155,0.86199,0.8729,0.88611,0.90264,0.90282,0.90828,0.9321,0.93718,0.93773,0.96057,0.96493,0.96733,0.97421,0.98025,0.98931,0.99048,0.99519,0.99996,0.99997,1,0.99989,0.99964,0.99915,0.9983,0.97674,0.96714,0.94945,0.93407,0.93327,0.9314,0.90482,0.89809,0.89753,0.86804,0.81221,0.81033,0.79261,0.78889,0.74636,0.73412,0.707,0.69267,0.67671,0.67359,0.65451,0.65113,0.64953,0.60591,0.59286,0.58737,0.56958,0.56399,0.53847,0.53268,0.52108,0.49246,0.49219,0.47862,0.47406,0.47405,0.4447,0.44379,0.43191,0.41953,0.39307,0.36993,0.35376,0.32882,0.30665,0.27925,0.27816,0.25819,0.23988,0.22949,0.20318,0.19587,0.18161,0.17353,0.1575,0.15588,0.15256,0.14509,0.13035,0.11642,0.10952,0.10295,0.09965,0.099192,0.093439,0.087124,0.06993,0.065852,0.06369,0.059124,0.059093,0.054867,0.054359,0.051659,0.049573,0.043059,0.042179,0.03769,0.033884,0.023658,0.022071,0.021338,0.019517,0.017933,0.017362,0.016268,0.01552,0.014635,0.01327,0.013263,0.011092,0.010571,0.010465,0.010409,0.0086383,0.0086014,0.0084394,0.0083193,0.0080152,0.0075332,0.0071234,0.005537,0.0031734,0.0026748,0.0026344,0.0026014,0.0024972,0.002441,0.0019617,0.001695,0.0015224,0.001433,0.0012617,0.0011313,0.0011084,0.00094923,0.0008688,0.0007792,0.00065302,0.00051576,0.00050799,0.00046857,0.00044291,0.00043182,0.00032861,0.00030469,0.0002151,0.00019506,0.00016396,0.0001493,0.00014482,0.00012257,0.00011994,0.00011438,0.00010306,8.4351e-05 1,1.7442e-21,2.8217e-21,2.8903e-21,3.3402e-21,3.7331e-21,4.3197e-21,5.7306e-21,1.1188e-20,1.7077e-20,1.8221e-20,2.5471e-20,2.69e-20,3.3407e-20,5.6469e-20,6.6539e-20,7.4565e-20,1.2193e-19,1.3264e-19,1.4561e-19,1.9905e-19,2.0584e-19,2.0985e-19,2.661e-19,3.0608e-19,3.0747e-19,4.0196e-19,4.1187e-19,4.6474e-19,4.7218e-19,4.7953e-19,1.0842e-18,2.3465e-18,2.5153e-18,3.1528e-18,3.8552e-18,4.5052e-18,5.4182e-18,6.7111e-18,9.7667e-18,1.1999e-17,1.6748e-17,2.5428e-17,2.6423e-17,2.8672e-17,3.0917e-17,4.5719e-17,4.5746e-17,1.1545e-16,1.236e-16,1.2837e-16,1.6899e-16,1.7244e-16,2.9492e-16,3.6378e-16,3.9691e-16,4.804e-16,5.4224e-16,6.6711e-16,7.1133e-16,1.1628e-15,1.5721e-15,4.0215e-15,5.1921e-15,5.654e-15,6.584e-15,9.9855e-15,1.0872e-14,1.1724e-14,1.6686e-14,2.3192e-14,2.6187e-14,2.892e-14,4.1393e-14,6.9206e-14,1.1841e-13,1.6957e-13,1.8278e-13,3.5564e-13,4.4691e-13,4.9703e-13,5.21e-13,6.3031e-13,1.3717e-12,1.4063e-12,1.6089e-12,1.9906e-12,2.0753e-12,2.808e-12,6.405e-12,6.4747e-12,8.1511e-12,8.8514e-12,2.2455e-11,2.8302e-11,2.8787e-11,3.5365e-11,4.6667e-11,4.6922e-11,4.7984e-11,5.6673e-11,5.6758e-11,6.597e-11,6.9912e-11,1.5906e-10,2.2709e-10,2.2983e-10,3.4306e-10,3.8168e-10,4.4995e-10,4.8733e-10,5.1079e-10,5.3802e-10,5.4719e-10,5.7245e-10,6.8619e-10,7.0077e-10,7.3179e-10,7.5822e-10,9.8988e-10,1.3352e-09,1.9556e-09,2.2556e-09,3.0451e-09,4.245e-09,4.8776e-09,5.239e-09,1.1435e-08,1.2502e-08,1.3347e-08,1.5189e-08,1.7891e-08,2.0604e-08,2.3098e-08,2.3571e-08,2.3872e-08,2.7549e-08,4.0025e-08,4.1133e-08,4.7584e-08,5.9557e-08,6.7366e-08,6.8725e-08,1.3768e-07,1.3869e-07,1.5881e-07,2.0659e-07,2.1668e-07,2.5862e-07,2.6961e-07,3.6013e-07,4.3428e-07,6.6158e-07,6.6823e-07,1.0724e-06,1.1313e-06,1.1507e-06,1.5559e-06,1.5859e-06,1.7664e-06,2.0344e-06,2.1258e-06,2.1976e-06,2.5037e-06,2.5582e-06,2.5943e-06,2.8752e-06,2.9802e-06,3.0082e-06,3.2743e-06,3.3754e-06,3.9917e-06,5.2574e-06,5.5199e-06,5.5919e-06,6.3166e-06,6.6415e-06,8.1358e-06,1.1561e-05,1.2876e-05,1.5251e-05,1.6225e-05,1.9247e-05,2.2777e-05,2.3091e-05,2.3337e-05,2.3366e-05,2.4547e-05,2.4649e-05,2.8745e-05,3.0834e-05,3.5154e-05,3.536e-05,3.6629e-05,4.5855e-05,4.6154e-05,5.1311e-05,5.7839e-05,7.1485e-05,7.349e-05,7.9511e-05,8.0922e-05,8.4591e-05,9.1093e-05,0.00010198,0.00010229,0.00013175,0.0001749,0.00018019,0.00018622,0.00018814,0.00022238,0.00024626,0.00034612,0.00035228,0.00036499,0.0003874,0.00048231,0.00060386,0.0007689,0.00082613,0.00086211,0.00096009,0.0011898,0.001306,0.0014721,0.0017654,0.0020606,0.0021183,0.0028354,0.0029447,0.0029855,0.0031913,0.0032767,0.0040363,0.0044083,0.0045214,0.004533,0.0047795,0.0051309,0.0053015,0.005379,0.0069134,0.0069155,0.0086208,0.011018,0.013736,0.01674,0.018207,0.018609,0.01958,0.020463,0.022681,0.022938,0.027843,0.029214,0.032133,0.036098,0.038694,0.038997,0.041237,0.042797,0.046839,0.053427,0.054083,0.057239,0.062521,0.067095,0.067315,0.085231,0.088486,0.090083,0.09428,0.096519,0.10013,0.10609,0.10857,0.1121,0.11796,0.12589,0.13381,0.13463,0.14483,0.15184,0.15822,0.17343,0.1807,0.1834,0.19318,0.19378,0.19819,0.20016,0.22743,0.23479,0.23769,0.25122,0.25929,0.26052,0.28002,0.31978,0.33217,0.33866,0.35401,0.35535,0.37305,0.37502,0.39849,0.41258,0.44147,0.44412,0.44662,0.44801,0.45258,0.45632,0.45861,0.48292,0.48805,0.5374,0.55414,0.56527,0.56969,0.60638,0.60703,0.61913,0.62478,0.65309,0.65399,0.6561,0.67699,0.68274,0.68478,0.69097,0.69894,0.70644,0.71032,0.74788,0.74918,0.76829,0.79617,0.82136,0.85444,0.85489,0.86601,0.87951,0.89644,0.89662,0.90223,0.92678,0.93203,0.9326,0.95639,0.96096,0.96349,0.97077,0.97721,0.98703,0.98832,0.99362,0.99972,0.99975,0.99989,1,0.99993,0.99966,0.99906,0.97981,0.97079,0.95394,0.93915,0.93838,0.93657,0.9108,0.90425,0.9037,0.87489,0.82,0.81815,0.80066,0.79698,0.75488,0.74274,0.7158,0.70154,0.68566,0.68255,0.66353,0.66016,0.65856,0.615,0.60195,0.59646,0.57864,0.57304,0.54746,0.54166,0.53001,0.50127,0.501,0.48735,0.48277,0.48276,0.45322,0.45229,0.44033,0.42785,0.40116,0.37779,0.36144,0.33621,0.31377,0.28598,0.28488,0.26461,0.246,0.23544,0.20866,0.20122,0.18669,0.17844,0.16209,0.16043,0.15704,0.14941,0.13434,0.12008,0.11301,0.10628,0.1029,0.10243,0.096527,0.090047,0.072381,0.068186,0.065962,0.061262,0.06123,0.056878,0.056355,0.053573,0.051422,0.044703,0.043795,0.03916,0.035227,0.024646,0.023001,0.022241,0.020352,0.01871,0.018116,0.016981,0.016205,0.015285,0.013867,0.013859,0.0116,0.011058,0.010948,0.01089,0.0090457,0.0090072,0.0088384,0.0087132,0.0083962,0.0078937,0.0074663,0.0058104,0.0033385,0.0028161,0.0027737,0.0027391,0.0026299,0.0025709,0.0020681,0.001788,0.0016066,0.0015127,0.0013326,0.0011953,0.0011713,0.0010037,0.00091898,0.00082456,0.00069152,0.00054667,0.00053846,0.00049683,0.00046973,0.00045801,0.0003489,0.0003236,0.00022874,0.0002075,0.00017453,0.00015898,0.00015422,0.00013061,0.00012782,0.00012191,0.00010989,8.9997e-05 1,1.5548e-21,2.5167e-21,2.578e-21,2.9798e-21,3.3307e-21,3.8548e-21,5.1155e-21,9.995e-21,1.5265e-20,1.6289e-20,2.2779e-20,2.4059e-20,2.9886e-20,5.0551e-20,5.9578e-20,6.6773e-20,1.0925e-19,1.1886e-19,1.305e-19,1.7847e-19,1.8457e-19,1.8816e-19,2.3868e-19,2.7458e-19,2.7584e-19,3.6072e-19,3.6963e-19,4.1714e-19,4.2383e-19,4.3043e-19,9.7426e-19,2.1106e-18,2.2626e-18,2.8369e-18,3.4698e-18,4.0557e-18,4.8788e-18,6.0447e-18,8.8013e-18,1.0816e-17,1.5103e-17,2.2943e-17,2.3843e-17,2.5875e-17,2.7903e-17,4.1285e-17,4.131e-17,1.0439e-16,1.1177e-16,1.1609e-16,1.5288e-16,1.56e-16,2.67e-16,3.2944e-16,3.5949e-16,4.3522e-16,4.9132e-16,6.0465e-16,6.4478e-16,1.0548e-15,1.4266e-15,3.6543e-15,4.7197e-15,5.1402e-15,5.9871e-15,9.0857e-15,9.8937e-15,1.067e-14,1.5194e-14,2.1129e-14,2.3862e-14,2.6355e-14,3.7742e-14,6.3151e-14,1.0814e-13,1.5494e-13,1.6704e-13,3.2534e-13,4.0898e-13,4.5492e-13,4.7689e-13,5.7712e-13,1.2575e-12,1.2893e-12,1.4753e-12,1.8259e-12,1.9038e-12,2.5772e-12,5.8863e-12,5.9505e-12,7.494e-12,8.139e-12,2.0679e-11,2.6075e-11,2.6522e-11,3.2594e-11,4.303e-11,4.3266e-11,4.4247e-11,5.2274e-11,5.2352e-11,6.0865e-11,6.4509e-11,1.4698e-10,2.0997e-10,2.1251e-10,3.1743e-10,3.5323e-10,4.1653e-10,4.512e-10,4.7296e-10,4.9822e-10,5.0673e-10,5.3016e-10,6.3571e-10,6.4925e-10,6.7803e-10,7.0257e-10,9.1767e-10,1.2385e-09,1.8152e-09,2.0942e-09,2.8288e-09,3.946e-09,4.5353e-09,4.8719e-09,1.065e-08,1.1645e-08,1.2434e-08,1.4154e-08,1.6677e-08,1.9211e-08,2.1541e-08,2.1983e-08,2.2265e-08,2.5702e-08,3.7369e-08,3.8406e-08,4.4442e-08,5.5649e-08,6.2962e-08,6.4235e-08,1.2887e-07,1.2982e-07,1.4869e-07,1.9354e-07,2.03e-07,2.4239e-07,2.5271e-07,3.3777e-07,4.0749e-07,6.2133e-07,6.2759e-07,1.0082e-06,1.0637e-06,1.082e-06,1.464e-06,1.4923e-06,1.6626e-06,1.9155e-06,2.0018e-06,2.0695e-06,2.3585e-06,2.4099e-06,2.444e-06,2.7093e-06,2.8085e-06,2.8349e-06,3.0863e-06,3.1818e-06,3.7642e-06,4.961e-06,5.2094e-06,5.2775e-06,5.9631e-06,6.2707e-06,7.6853e-06,1.0931e-05,1.2177e-05,1.4429e-05,1.5353e-05,1.822e-05,2.1571e-05,2.1869e-05,2.2102e-05,2.213e-05,2.3251e-05,2.3349e-05,2.7239e-05,2.9223e-05,3.333e-05,3.3525e-05,3.4732e-05,4.3505e-05,4.379e-05,4.8697e-05,5.4909e-05,6.7902e-05,6.9812e-05,7.5548e-05,7.6892e-05,8.0388e-05,8.6584e-05,9.6959e-05,9.7257e-05,0.00012535,0.00016654,0.00017159,0.00017736,0.00017919,0.0002119,0.00023473,0.00033024,0.00033613,0.00034829,0.00036974,0.00046063,0.00057711,0.00073538,0.00079029,0.00082482,0.00091887,0.0011395,0.0012511,0.0014109,0.001693,0.001977,0.0020326,0.0027234,0.0028287,0.002868,0.0030665,0.0031488,0.0038816,0.0042406,0.0043498,0.004361,0.0045991,0.0049384,0.0051032,0.0051782,0.0066614,0.0066634,0.0083134,0.010636,0.01327,0.016186,0.01761,0.018001,0.018944,0.019802,0.021958,0.022208,0.026979,0.028313,0.031156,0.035018,0.037549,0.037845,0.040028,0.04155,0.045494,0.051925,0.052566,0.055649,0.060811,0.065282,0.065498,0.083032,0.086219,0.087784,0.091896,0.09409,0.097629,0.10347,0.10591,0.10937,0.11512,0.1229,0.13068,0.13149,0.14152,0.14841,0.15468,0.16964,0.1768,0.17946,0.1891,0.18969,0.19403,0.19597,0.22286,0.23012,0.23299,0.24634,0.25431,0.25553,0.2748,0.31413,0.3264,0.33283,0.34804,0.34937,0.36692,0.36887,0.39216,0.40615,0.43486,0.43749,0.43997,0.44136,0.4459,0.44962,0.4519,0.47608,0.4812,0.53038,0.54707,0.55818,0.56259,0.59926,0.5999,0.612,0.61766,0.646,0.6469,0.64901,0.66996,0.67572,0.67777,0.68398,0.69198,0.6995,0.7034,0.74116,0.74247,0.76171,0.78982,0.81527,0.84876,0.84922,0.8605,0.87422,0.89146,0.89165,0.89737,0.92248,0.92786,0.92845,0.95297,0.95772,0.96034,0.96793,0.97468,0.98509,0.98648,0.99223,0.99938,0.99942,0.99964,0.99993,1,0.9999,0.9995,0.98207,0.9735,0.95732,0.94301,0.94225,0.9405,0.91538,0.90897,0.90843,0.88016,0.82604,0.82421,0.8069,0.80326,0.76151,0.74945,0.72266,0.70847,0.69265,0.68955,0.67058,0.66722,0.66563,0.62213,0.60908,0.60358,0.58576,0.58015,0.55453,0.54871,0.53704,0.5082,0.50793,0.49423,0.48963,0.48962,0.45994,0.45901,0.44698,0.43442,0.40755,0.38401,0.36753,0.34208,0.31941,0.29133,0.29022,0.26971,0.25087,0.24018,0.21303,0.20549,0.19074,0.18237,0.16575,0.16406,0.16062,0.15286,0.13753,0.12301,0.11581,0.10895,0.1055,0.10502,0.099004,0.092393,0.074352,0.070064,0.06779,0.062983,0.062951,0.058497,0.057962,0.055114,0.052912,0.046029,0.045098,0.040346,0.036312,0.025445,0.023753,0.022972,0.021029,0.019339,0.018728,0.017559,0.01676,0.015812,0.014351,0.014343,0.012014,0.011455,0.011341,0.011281,0.0093771,0.0093374,0.0091631,0.0090337,0.0087063,0.0081871,0.0077455,0.0060332,0.0034734,0.0029316,0.0028876,0.0028518,0.0027384,0.0026772,0.0021552,0.0018642,0.0016757,0.001578,0.0013907,0.0012479,0.0012229,0.0010484,0.0009602,0.00086184,0.00072318,0.00057211,0.00056354,0.0005201,0.00049181,0.00047958,0.00036562,0.00033918,0.00024,0.00021777,0.00018326,0.00016697,0.000162,0.00013725,0.00013433,0.00012814,0.00011553,9.4674e-05 1,1.3491e-21,2.1853e-21,2.2387e-21,2.5881e-21,2.8934e-21,3.3494e-21,4.4467e-21,8.697e-21,1.3291e-20,1.4184e-20,1.9846e-20,2.0962e-20,2.6048e-20,4.4095e-20,5.1982e-20,5.827e-20,9.5414e-20,1.0382e-19,1.14e-19,1.5598e-19,1.6132e-19,1.6447e-19,2.087e-19,2.4014e-19,2.4124e-19,3.1562e-19,3.2342e-19,3.6506e-19,3.7092e-19,3.7671e-19,8.5377e-19,1.8518e-18,1.9854e-18,2.4903e-18,3.0469e-18,3.5623e-18,4.2865e-18,5.3127e-18,7.7402e-18,9.5149e-18,1.3294e-17,2.0209e-17,2.1003e-17,2.2796e-17,2.4586e-17,3.6401e-17,3.6422e-17,9.2179e-17,9.8709e-17,1.0253e-16,1.3509e-16,1.3785e-16,2.3615e-16,2.9149e-16,3.1812e-16,3.8526e-16,4.3502e-16,5.3555e-16,5.7116e-16,9.3512e-16,1.2655e-15,3.2469e-15,4.1955e-15,4.5699e-15,5.3243e-15,8.0859e-15,8.8064e-15,9.4984e-15,1.3535e-14,1.8833e-14,2.1273e-14,2.3501e-14,3.3677e-14,5.6402e-14,9.6678e-14,1.3861e-13,1.4946e-13,2.9147e-13,3.6656e-13,4.0782e-13,4.2755e-13,5.1761e-13,1.1296e-12,1.1581e-12,1.3256e-12,1.6413e-12,1.7115e-12,2.3182e-12,5.3035e-12,5.3615e-12,6.7553e-12,7.3379e-12,1.868e-11,2.3565e-11,2.397e-11,2.947e-11,3.8928e-11,3.9142e-11,4.0031e-11,4.7311e-11,4.7382e-11,5.5103e-11,5.841e-11,1.3332e-10,1.906e-10,1.9291e-10,2.884e-10,3.2101e-10,3.7867e-10,4.1026e-10,4.3009e-10,4.5311e-10,4.6087e-10,4.8223e-10,5.7846e-10,5.9081e-10,6.1707e-10,6.3944e-10,8.3572e-10,1.1287e-09,1.6556e-09,1.9108e-09,2.5828e-09,3.6056e-09,4.1454e-09,4.4539e-09,9.7541e-09,1.0668e-08,1.1392e-08,1.2972e-08,1.5291e-08,1.762e-08,1.9763e-08,2.017e-08,2.0429e-08,2.359e-08,3.433e-08,3.5285e-08,4.0845e-08,5.1175e-08,5.7918e-08,5.9091e-08,1.1876e-07,1.1964e-07,1.3708e-07,1.7855e-07,1.873e-07,2.2375e-07,2.333e-07,3.1206e-07,3.7666e-07,5.7498e-07,5.8078e-07,9.3426e-07,9.8581e-07,1.0028e-06,1.358e-06,1.3843e-06,1.5427e-06,1.7781e-06,1.8584e-06,1.9215e-06,2.1906e-06,2.2385e-06,2.2703e-06,2.5174e-06,2.6099e-06,2.6345e-06,2.8688e-06,2.9579e-06,3.501e-06,4.6178e-06,4.8497e-06,4.9133e-06,5.5536e-06,5.8409e-06,7.1629e-06,1.0198e-05,1.1365e-05,1.3474e-05,1.4339e-05,1.7026e-05,2.0168e-05,2.0447e-05,2.0667e-05,2.0692e-05,2.1744e-05,2.1836e-05,2.5486e-05,2.7349e-05,3.1205e-05,3.1389e-05,3.2522e-05,4.0767e-05,4.1034e-05,4.5648e-05,5.1492e-05,6.372e-05,6.5519e-05,7.0921e-05,7.2187e-05,7.548e-05,8.1318e-05,9.1096e-05,9.1378e-05,0.00011788,0.00015676,0.00016153,0.00016698,0.00016871,0.00019962,0.00022121,0.0003116,0.00031717,0.00032869,0.00034901,0.00043516,0.00054566,0.00069594,0.00074811,0.00078093,0.00087033,0.0010802,0.0011865,0.0013386,0.0016074,0.0018783,0.0019313,0.0025909,0.0026915,0.0027291,0.0029187,0.0029975,0.0036983,0.0040419,0.0041465,0.0041573,0.0043852,0.0047103,0.0048681,0.0049399,0.0063622,0.0063641,0.0079482,0.01018,0.012716,0.015525,0.016898,0.017275,0.018184,0.019013,0.021094,0.021335,0.025946,0.027237,0.029987,0.033726,0.036178,0.036464,0.03858,0.040056,0.04388,0.050123,0.050744,0.053739,0.058756,0.063104,0.063313,0.080383,0.08349,0.085014,0.089024,0.091164,0.094616,0.10032,0.1027,0.10608,0.1117,0.1193,0.1269,0.1277,0.1375,0.14425,0.1504,0.16506,0.17208,0.17469,0.18414,0.18473,0.18899,0.19089,0.21731,0.22446,0.22727,0.24042,0.24826,0.24947,0.26845,0.30725,0.31937,0.32572,0.34076,0.34207,0.35944,0.36136,0.38443,0.39829,0.42676,0.42937,0.43183,0.43321,0.43772,0.44142,0.44367,0.46771,0.47279,0.52174,0.53838,0.54946,0.55386,0.59048,0.59112,0.60322,0.60887,0.63725,0.63814,0.64026,0.66126,0.66704,0.66909,0.67533,0.68336,0.69092,0.69484,0.73282,0.73414,0.75354,0.78192,0.80768,0.84166,0.84213,0.85361,0.86759,0.8852,0.88539,0.89125,0.91703,0.92258,0.92318,0.9486,0.95355,0.95629,0.96425,0.97139,0.98252,0.98402,0.99033,0.99876,0.99882,0.99915,0.99966,0.9999,1,0.99985,0.98468,0.97667,0.96132,0.9476,0.94687,0.94518,0.92087,0.91465,0.91412,0.88654,0.83338,0.83158,0.81451,0.81092,0.76962,0.75766,0.73107,0.71696,0.70122,0.69814,0.67925,0.6759,0.67431,0.6309,0.61786,0.61237,0.59454,0.58892,0.56326,0.55743,0.54573,0.51678,0.51651,0.50275,0.49812,0.49812,0.46827,0.46733,0.45522,0.44257,0.41549,0.39174,0.3751,0.34937,0.32644,0.298,0.29687,0.27608,0.25696,0.2461,0.21851,0.21083,0.19581,0.18729,0.17035,0.16863,0.16511,0.1572,0.14154,0.1267,0.11933,0.11231,0.10878,0.10829,0.10213,0.09535,0.07684,0.072436,0.070099,0.065158,0.065125,0.060545,0.059994,0.057064,0.054797,0.047708,0.046749,0.04185,0.037688,0.026461,0.024711,0.023902,0.021891,0.02014,0.019507,0.018296,0.017467,0.016484,0.014968,0.01496,0.012541,0.01196,0.011842,0.01178,0.0098004,0.0097591,0.0095778,0.0094432,0.0091025,0.0085622,0.0081024,0.0063185,0.0036465,0.0030799,0.0030339,0.0029964,0.0028778,0.0028138,0.0022671,0.0019622,0.0017645,0.0016621,0.0014656,0.0013156,0.0012894,0.0011061,0.0010134,0.00090994,0.00076405,0.00060497,0.00059595,0.00055018,0.00052036,0.00050747,0.00038727,0.00035936,0.00025459,0.00023109,0.00019459,0.00017735,0.00017208,0.00014588,0.00014279,0.00013622,0.00012287,0.00010075 1,1.1409e-21,1.8496e-21,1.8948e-21,2.1912e-21,2.4501e-21,2.837e-21,3.7683e-21,7.3789e-21,1.1285e-20,1.2045e-20,1.6863e-20,1.7813e-20,2.2144e-20,3.7521e-20,4.4246e-20,4.9608e-20,8.1303e-20,8.848e-20,9.7173e-20,1.3303e-19,1.3759e-19,1.4028e-19,1.7809e-19,2.0498e-19,2.0592e-19,2.6953e-19,2.7621e-19,3.1184e-19,3.1686e-19,3.2181e-19,7.3046e-19,1.5867e-18,1.7014e-18,2.1349e-18,2.6131e-18,3.056e-18,3.6786e-18,4.5612e-18,6.6501e-18,8.1781e-18,1.1434e-17,1.7395e-17,1.808e-17,1.9626e-17,2.1171e-17,3.1368e-17,3.1387e-17,7.9581e-17,8.523e-17,8.8536e-17,1.1671e-16,1.1911e-16,2.0426e-16,2.5223e-16,2.7533e-16,3.3357e-16,3.7674e-16,4.6399e-16,4.9491e-16,8.1111e-16,1.0983e-15,2.8236e-15,3.6504e-15,3.977e-15,4.6349e-15,7.0452e-15,7.6744e-15,8.2787e-15,1.1806e-14,1.6438e-14,1.8574e-14,2.0523e-14,2.9432e-14,4.9349e-14,8.4689e-14,1.2152e-13,1.3105e-13,2.5595e-13,3.2206e-13,3.5839e-13,3.7578e-13,4.5512e-13,9.9497e-13,1.0202e-12,1.1681e-12,1.447e-12,1.509e-12,2.0454e-12,4.6885e-12,4.7399e-12,5.9754e-12,6.492e-12,1.6564e-11,2.0907e-11,2.1267e-11,2.616e-11,3.4581e-11,3.4771e-11,3.5563e-11,4.2047e-11,4.211e-11,4.8991e-11,5.1938e-11,1.1879e-10,1.6999e-10,1.7205e-10,2.5749e-10,2.8668e-10,3.3832e-10,3.6662e-10,3.8438e-10,4.0501e-10,4.1197e-10,4.3111e-10,5.1739e-10,5.2847e-10,5.5201e-10,5.7208e-10,7.4821e-10,1.0113e-09,1.485e-09,1.7145e-09,2.3194e-09,3.2408e-09,3.7274e-09,4.0056e-09,8.7914e-09,9.6175e-09,1.0272e-08,1.1701e-08,1.3799e-08,1.5908e-08,1.7848e-08,1.8216e-08,1.8451e-08,2.1315e-08,3.1054e-08,3.192e-08,3.6966e-08,4.6345e-08,5.2471e-08,5.3537e-08,1.0782e-07,1.0862e-07,1.245e-07,1.623e-07,1.7029e-07,2.0353e-07,2.1225e-07,2.8416e-07,3.4319e-07,5.2458e-07,5.299e-07,8.537e-07,9.0097e-07,9.1657e-07,1.2424e-06,1.2666e-06,1.412e-06,1.6282e-06,1.702e-06,1.76e-06,2.0073e-06,2.0514e-06,2.0806e-06,2.3079e-06,2.393e-06,2.4156e-06,2.6312e-06,2.7132e-06,3.2132e-06,4.2422e-06,4.456e-06,4.5147e-06,5.1052e-06,5.3702e-06,6.5904e-06,9.395e-06,1.0474e-05,1.2425e-05,1.3226e-05,1.5713e-05,1.8625e-05,1.8884e-05,1.9087e-05,1.9111e-05,2.0086e-05,2.0171e-05,2.3557e-05,2.5285e-05,2.8865e-05,2.9035e-05,3.0087e-05,3.7747e-05,3.7996e-05,4.2285e-05,4.772e-05,5.9102e-05,6.0776e-05,6.5808e-05,6.6987e-05,7.0055e-05,7.5496e-05,8.4612e-05,8.4874e-05,0.0001096,0.00014592,0.00015038,0.00015547,0.00015709,0.000186,0.0002062,0.00029088,0.00029611,0.00030691,0.00032597,0.00040681,0.00051061,0.00065195,0.00070105,0.00073195,0.00081615,0.001014,0.0011142,0.0012578,0.0015117,0.0017677,0.0018179,0.0024421,0.0025375,0.0025731,0.0027528,0.0028275,0.0034923,0.0038185,0.0039178,0.003928,0.0041445,0.0044534,0.0046035,0.0046717,0.0060248,0.0060267,0.0075358,0.0096653,0.012088,0.014776,0.016091,0.016452,0.017323,0.018117,0.020114,0.020345,0.024772,0.026012,0.028656,0.032254,0.034615,0.03489,0.036929,0.038351,0.042039,0.048064,0.048664,0.051557,0.056405,0.060611,0.060813,0.077347,0.080359,0.081838,0.085729,0.087805,0.091157,0.096697,0.099005,0.10229,0.10776,0.11515,0.12256,0.12333,0.13288,0.13946,0.14546,0.15977,0.16663,0.16917,0.17842,0.17899,0.18316,0.18502,0.21089,0.21789,0.22065,0.23355,0.24125,0.24243,0.26108,0.29925,0.31119,0.31744,0.33228,0.33357,0.35071,0.35261,0.3754,0.38911,0.41729,0.41988,0.42232,0.42368,0.42815,0.43181,0.43405,0.45789,0.46294,0.5116,0.52817,0.53921,0.54359,0.58013,0.58077,0.59286,0.59851,0.62691,0.6278,0.62992,0.65097,0.65677,0.65883,0.66508,0.67315,0.68074,0.68468,0.72291,0.72424,0.74381,0.7725,0.79859,0.83314,0.83362,0.84532,0.8596,0.87764,0.87783,0.88384,0.9104,0.91614,0.91676,0.94321,0.9484,0.95128,0.95968,0.96726,0.97923,0.98086,0.98783,0.99777,0.99785,0.9983,0.99906,0.9995,0.99985,1,0.98749,0.98016,0.96581,0.95278,0.95209,0.95048,0.92715,0.92114,0.92063,0.89387,0.8419,0.84013,0.82335,0.81982,0.77908,0.76725,0.74091,0.72692,0.71129,0.70822,0.68943,0.6861,0.68452,0.64124,0.62821,0.62273,0.6049,0.59928,0.57358,0.56774,0.556,0.52695,0.52668,0.51285,0.5082,0.50819,0.47815,0.47721,0.46502,0.45227,0.42495,0.40095,0.38412,0.35808,0.33484,0.30598,0.30484,0.28371,0.26426,0.2532,0.22508,0.21725,0.20192,0.19321,0.17589,0.17412,0.17053,0.16243,0.14638,0.13116,0.12359,0.11638,0.11275,0.11225,0.10591,0.098933,0.07986,0.075317,0.072905,0.067802,0.067768,0.063036,0.062466,0.059436,0.057092,0.049754,0.048761,0.043684,0.039368,0.027704,0.025883,0.025041,0.022946,0.021122,0.020462,0.019199,0.018334,0.017309,0.015725,0.015717,0.01319,0.012582,0.012459,0.012393,0.010322,0.010278,0.010088,0.0099475,0.0095906,0.0090243,0.0085423,0.0066706,0.0038608,0.0032637,0.0032152,0.0031756,0.0030506,0.002983,0.0024061,0.0020839,0.001875,0.0017666,0.0015586,0.0013999,0.0013721,0.0011779,0.0010796,0.00096987,0.00081502,0.00064601,0.00063641,0.00058774,0.00055602,0.0005423,0.00041434,0.00038461,0.00027288,0.00024779,0.0002088,0.00019038,0.00018474,0.00015672,0.00015341,0.00014638,0.00013209,0.0001084 1,2.372e-22,3.8757e-22,3.972e-22,4.6041e-22,5.1576e-22,5.9861e-22,7.9883e-22,1.5816e-21,2.4359e-21,2.6026e-21,3.6641e-21,3.8742e-21,4.8335e-21,8.2625e-21,9.7704e-21,1.0976e-20,1.8139e-20,1.9768e-20,2.1745e-20,2.9929e-20,3.0972e-20,3.1588e-20,4.0265e-20,4.6455e-20,4.6671e-20,6.1373e-20,6.292e-20,7.1185e-20,7.235e-20,7.3501e-20,1.6921e-19,3.7257e-19,3.9999e-19,5.0392e-19,6.1898e-19,7.2591e-19,8.7666e-19,1.0911e-18,1.6016e-18,1.9768e-18,2.7805e-18,4.2623e-18,4.4331e-18,4.8194e-18,5.2058e-18,7.7686e-18,7.7733e-18,2.0048e-17,2.1498e-17,2.2348e-17,2.9611e-17,3.023e-17,5.2364e-17,6.4917e-17,7.0977e-17,8.6301e-17,9.7694e-17,1.208e-16,1.29e-16,2.1341e-16,2.9065e-16,7.6092e-16,9.8867e-16,1.0789e-15,1.2612e-15,1.9328e-15,2.1089e-15,2.2784e-15,3.2719e-15,4.5859e-15,5.1942e-15,5.7508e-15,8.3071e-15,1.4075e-14,2.4421e-14,3.5302e-14,3.8129e-14,7.5509e-14,9.547e-14,1.0648e-13,1.1175e-13,1.359e-13,3.0206e-13,3.0988e-13,3.5582e-13,4.4282e-13,4.6221e-13,6.3064e-13,1.4719e-12,1.4884e-12,1.886e-12,2.0528e-12,5.348e-12,6.786e-12,6.9056e-12,8.5344e-12,1.1353e-11,1.1417e-11,1.1683e-11,1.3867e-11,1.3888e-11,1.6214e-11,1.7212e-11,4.0132e-11,5.7915e-11,5.8636e-11,8.8596e-11,9.8893e-11,1.1717e-10,1.2722e-10,1.3354e-10,1.4088e-10,1.4336e-10,1.5018e-10,1.8104e-10,1.8501e-10,1.9346e-10,2.0066e-10,2.6417e-10,3.5971e-10,5.3324e-10,6.1786e-10,8.422e-10,1.1868e-09,1.3698e-09,1.4748e-09,3.3031e-09,3.6219e-09,3.8752e-09,4.4294e-09,5.2462e-09,6.0707e-09,6.8319e-09,6.9766e-09,7.069e-09,8.1977e-09,1.2064e-08,1.241e-08,1.4429e-08,1.8201e-08,2.0677e-08,2.1109e-08,4.3346e-08,4.3675e-08,5.0256e-08,6.6005e-08,6.9346e-08,8.3307e-08,8.6979e-08,1.1743e-07,1.426e-07,2.207e-07,2.23e-07,3.6441e-07,3.8521e-07,3.9208e-07,5.3639e-07,5.4712e-07,6.1198e-07,7.0877e-07,7.4192e-07,7.6797e-07,8.7947e-07,8.9937e-07,9.1258e-07,1.0155e-06,1.0542e-06,1.0645e-06,1.1626e-06,1.1999e-06,1.4286e-06,1.9029e-06,2.0019e-06,2.0291e-06,2.3036e-06,2.4271e-06,2.9983e-06,4.3242e-06,4.838e-06,5.772e-06,6.1568e-06,7.3575e-06,8.7711e-06,8.8973e-06,8.9963e-06,9.0079e-06,9.4837e-06,9.525e-06,1.1183e-05,1.2033e-05,1.3799e-05,1.3884e-05,1.4405e-05,1.8216e-05,1.834e-05,2.0487e-05,2.322e-05,2.8979e-05,2.983e-05,3.2393e-05,3.2994e-05,3.4562e-05,3.7347e-05,4.2031e-05,4.2166e-05,5.4965e-05,7.397e-05,7.6319e-05,7.9001e-05,7.9854e-05,9.5163e-05,0.00010592,0.00015143,0.00015425,0.00016011,0.00017045,0.00021462,0.00027186,0.00035062,0.00037816,0.00039554,0.00044306,0.00055555,0.00061293,0.00069552,0.00084268,0.00099226,0.0010217,0.001391,0.0014478,0.0014691,0.0015766,0.0016214,0.0020225,0.0022207,0.0022813,0.0022875,0.0024198,0.0026091,0.0027014,0.0027434,0.0035823,0.0035835,0.0045314,0.0058867,0.0074495,0.0092052,0.010072,0.01031,0.010887,0.011415,0.012748,0.012903,0.015889,0.016733,0.018539,0.021015,0.022651,0.022843,0.024262,0.025255,0.027843,0.032106,0.032533,0.034596,0.038074,0.041109,0.041256,0.053344,0.055571,0.056667,0.059557,0.061105,0.063609,0.067766,0.069504,0.071986,0.076127,0.081762,0.087437,0.088028,0.095406,0.10052,0.10519,0.11643,0.12186,0.12387,0.13123,0.13169,0.13503,0.13652,0.15741,0.16311,0.16537,0.17595,0.18231,0.18328,0.19878,0.23096,0.24114,0.2465,0.25927,0.26039,0.27525,0.27691,0.29687,0.30898,0.3341,0.33642,0.33861,0.33984,0.34386,0.34716,0.34919,0.37083,0.37544,0.42042,0.43596,0.44638,0.45053,0.48546,0.48608,0.49777,0.50326,0.53107,0.53195,0.53405,0.55494,0.56074,0.56281,0.56909,0.57722,0.58491,0.58891,0.62822,0.6296,0.6501,0.68065,0.709,0.74751,0.74805,0.7614,0.77791,0.79918,0.79941,0.80662,0.83929,0.84656,0.84736,0.88223,0.8894,0.89344,0.90551,0.91685,0.93605,0.93885,0.95156,0.9749,0.97516,0.97674,0.97981,0.98207,0.98468,0.98749,1,0.99914,0.99449,0.98846,0.98811,0.98727,0.97383,0.97003,0.96971,0.95158,0.91247,0.91106,0.89759,0.89471,0.8606,0.85041,0.8273,0.8148,0.80067,0.79788,0.78064,0.77755,0.77609,0.73537,0.7229,0.71762,0.70033,0.69485,0.66955,0.66374,0.65203,0.62273,0.62245,0.60835,0.60358,0.60358,0.57254,0.57156,0.55882,0.54542,0.51643,0.49066,0.47241,0.44388,0.41812,0.38572,0.38442,0.3604,0.33805,0.32524,0.29233,0.28307,0.26482,0.25439,0.23347,0.23133,0.22695,0.21705,0.19729,0.17832,0.16882,0.15971,0.1551,0.15446,0.14637,0.13743,0.11266,0.10669,0.10351,0.096746,0.0967,0.09039,0.089629,0.085566,0.082411,0.07247,0.071116,0.064162,0.058201,0.041841,0.039247,0.038045,0.03504,0.032407,0.031452,0.029617,0.028356,0.026857,0.02453,0.024518,0.020773,0.019866,0.019682,0.019584,0.016469,0.016404,0.016116,0.015903,0.015362,0.0145,0.013765,0.010884,0.0064701,0.0055131,0.005435,0.0053712,0.0051694,0.0050601,0.0041221,0.0035935,0.0032486,0.003069,0.0027228,0.0024571,0.0024104,0.002083,0.0019163,0.0017295,0.0014641,0.0011718,0.0011551,0.0010703,0.0010148,0.0009908,0.00076531,0.00071252,0.00051244,0.00046708,0.0003962,0.00036253,0.00035221,0.00030066,0.00029454,0.00028156,0.00025505,0.00021086 1,1.5657e-22,2.5636e-22,2.6275e-22,3.0475e-22,3.4155e-22,3.9667e-22,5.2999e-22,1.0523e-21,1.6237e-21,1.7354e-21,2.4468e-21,2.5876e-21,3.2314e-21,5.5367e-21,6.5519e-21,7.3638e-21,1.2196e-20,1.3297e-20,1.4632e-20,2.0168e-20,2.0874e-20,2.1291e-20,2.7168e-20,3.1365e-20,3.1512e-20,4.1488e-20,4.2538e-20,4.8152e-20,4.8943e-20,4.9726e-20,1.149e-19,2.5389e-19,2.7266e-19,3.4387e-19,4.2278e-19,4.9617e-19,5.9973e-19,7.4719e-19,1.0987e-18,1.3574e-18,1.9122e-18,2.9371e-18,3.0554e-18,3.323e-18,3.5907e-18,5.3683e-18,5.3716e-18,1.3916e-17,1.4927e-17,1.552e-17,2.0592e-17,2.1024e-17,3.6514e-17,4.5314e-17,4.9565e-17,6.0323e-17,6.8327e-17,8.4571e-17,9.0345e-17,1.4983e-16,2.0437e-16,5.3757e-16,6.9939e-16,7.6355e-16,8.9324e-16,1.3719e-15,1.4976e-15,1.6185e-15,2.3286e-15,3.2694e-15,3.7054e-15,4.1046e-15,5.9403e-15,1.0092e-14,1.7561e-14,2.5435e-14,2.7483e-14,5.4625e-14,6.9152e-14,7.717e-14,8.1015e-14,9.8621e-14,2.2016e-13,2.2589e-13,2.5958e-13,3.2344e-13,3.3768e-13,4.6152e-13,1.0823e-12,1.0945e-12,1.3887e-12,1.5123e-12,3.9614e-12,5.0335e-12,5.1227e-12,6.3388e-12,8.4465e-12,8.4944e-12,8.6934e-12,1.0328e-11,1.0344e-11,1.2088e-11,1.2837e-11,3.0081e-11,4.3506e-11,4.4051e-11,6.6727e-11,7.4532e-11,8.84e-11,9.6028e-11,1.0083e-10,1.0641e-10,1.0829e-10,1.1348e-10,1.3695e-10,1.3997e-10,1.4641e-10,1.5189e-10,2.0031e-10,2.7328e-10,4.0613e-10,4.7101e-10,6.4331e-10,9.0852e-10,1.0496e-09,1.1306e-09,2.5457e-09,2.7931e-09,2.9898e-09,3.4204e-09,4.0557e-09,4.6978e-09,5.2911e-09,5.4039e-09,5.476e-09,6.3567e-09,9.3797e-09,9.6504e-09,1.1232e-08,1.4192e-08,1.6136e-08,1.6476e-08,3.4004e-08,3.4264e-08,3.9466e-08,5.1936e-08,5.4584e-08,6.566e-08,6.8576e-08,9.2789e-08,1.1284e-07,1.7521e-07,1.7705e-07,2.9039e-07,3.071e-07,3.1262e-07,4.2871e-07,4.3736e-07,4.8963e-07,5.6771e-07,5.9448e-07,6.1552e-07,7.0563e-07,7.2173e-07,7.3242e-07,8.1574e-07,8.4701e-07,8.5536e-07,9.3483e-07,9.6512e-07,1.1507e-06,1.5362e-06,1.6168e-06,1.6389e-06,1.8625e-06,1.9633e-06,2.4295e-06,3.5146e-06,3.9359e-06,4.7026e-06,5.019e-06,6.0069e-06,7.1717e-06,7.2758e-06,7.3575e-06,7.367e-06,7.7596e-06,7.7937e-06,9.1633e-06,9.8658e-06,1.1328e-05,1.1397e-05,1.1829e-05,1.499e-05,1.5093e-05,1.6877e-05,1.9149e-05,2.3947e-05,2.4656e-05,2.6794e-05,2.7297e-05,2.8605e-05,3.0933e-05,3.4851e-05,3.4964e-05,4.5689e-05,6.166e-05,6.3636e-05,6.5894e-05,6.6612e-05,7.9517e-05,8.8594e-05,0.00012711,0.0001295,0.00013447,0.00014325,0.00018078,0.00022955,0.00029683,0.0003204,0.00033528,0.000376,0.00047261,0.00052197,0.00059312,0.00072013,0.0008495,0.00087498,0.0011954,0.0012448,0.0012633,0.0013569,0.0013959,0.0017457,0.0019189,0.0019719,0.0019773,0.0020931,0.0022589,0.0023397,0.0023766,0.0031135,0.0031145,0.0039499,0.0051485,0.0065356,0.0080988,0.0088719,0.0090849,0.0096009,0.010073,0.011266,0.011405,0.014087,0.014845,0.016473,0.018708,0.020186,0.02036,0.021645,0.022545,0.024892,0.028768,0.029156,0.031036,0.034208,0.036981,0.037116,0.048198,0.050246,0.051254,0.053915,0.055341,0.05765,0.061487,0.063092,0.065387,0.069218,0.07444,0.079706,0.080256,0.087116,0.091873,0.096231,0.10673,0.11181,0.11369,0.12059,0.12102,0.12415,0.12555,0.1452,0.15058,0.15271,0.1627,0.16871,0.16964,0.18432,0.21492,0.22463,0.22975,0.24196,0.24303,0.25727,0.25886,0.27803,0.28968,0.3139,0.31614,0.31826,0.31944,0.32333,0.32653,0.32848,0.34946,0.35393,0.39771,0.41289,0.42308,0.42714,0.46141,0.46202,0.47353,0.47894,0.50638,0.50726,0.50933,0.53002,0.53578,0.53783,0.54407,0.55215,0.5598,0.56378,0.60303,0.60442,0.62498,0.65573,0.6844,0.72357,0.72412,0.73776,0.75469,0.77659,0.77683,0.78427,0.8182,0.8258,0.82663,0.86333,0.87094,0.87524,0.88814,0.90034,0.92123,0.9243,0.93837,0.96498,0.96528,0.96714,0.97079,0.9735,0.97667,0.98016,0.99914,1,0.99798,0.99388,0.99362,0.993,0.98234,0.97918,0.9789,0.96329,0.92804,0.92675,0.9143,0.91163,0.87965,0.87001,0.848,0.83603,0.82245,0.81976,0.8031,0.80012,0.79869,0.75906,0.74686,0.74168,0.7247,0.7193,0.69433,0.68858,0.67698,0.64786,0.64759,0.63352,0.62877,0.62876,0.59769,0.59671,0.58392,0.57045,0.54122,0.51515,0.49663,0.46761,0.44132,0.40813,0.4068,0.3821,0.35907,0.34583,0.31174,0.30212,0.28313,0.27225,0.25039,0.24815,0.24357,0.23319,0.21243,0.19246,0.18242,0.17278,0.1679,0.16723,0.15866,0.14916,0.12277,0.11639,0.11299,0.10574,0.10569,0.098924,0.098106,0.093741,0.090348,0.079637,0.078176,0.070661,0.064207,0.046417,0.043586,0.042271,0.038984,0.0361,0.035053,0.033039,0.031654,0.030006,0.027444,0.027431,0.023299,0.022297,0.022093,0.021984,0.018535,0.018462,0.018144,0.017907,0.017306,0.016349,0.015531,0.012322,0.0073759,0.0062979,0.0062099,0.0061379,0.0059102,0.0057868,0.0047264,0.0041274,0.0037359,0.0035318,0.0031379,0.0028352,0.0027819,0.0024083,0.0022177,0.0020039,0.0016997,0.0013638,0.0013446,0.0012469,0.001183,0.0011553,0.00089496,0.00083387,0.00060185,0.00054912,0.0004666,0.00042734,0.0004153,0.0003551,0.00034795,0.00033277,0.00030174,0.00024994 1,8.2614e-23,1.3569e-22,1.3909e-22,1.6148e-22,1.8111e-22,2.1054e-22,2.8183e-22,5.6207e-22,8.6971e-22,9.2992e-22,1.314e-21,1.3902e-21,1.7386e-21,2.9895e-21,3.5415e-21,3.9835e-21,6.6197e-21,7.2212e-21,7.9516e-21,1.0983e-20,1.137e-20,1.1599e-20,1.4825e-20,1.7131e-20,1.7212e-20,2.2703e-20,2.3282e-20,2.6376e-20,2.6813e-20,2.7244e-20,6.3313e-20,1.4066e-19,1.5113e-19,1.909e-19,2.3505e-19,2.7616e-19,3.3423e-19,4.1705e-19,6.1488e-19,7.6082e-19,1.0744e-18,1.6552e-18,1.7223e-18,1.8743e-18,2.0264e-18,3.0383e-18,3.0402e-18,7.9298e-18,8.5105e-18,8.851e-18,1.1768e-17,1.2016e-17,2.0954e-17,2.6045e-17,2.8507e-17,3.4745e-17,3.9391e-17,4.8832e-17,5.2192e-17,8.688e-17,1.1878e-16,3.1473e-16,4.1029e-16,4.4823e-16,5.2498e-16,8.0895e-16,8.8365e-16,9.5561e-16,1.3787e-15,1.9408e-15,2.2018e-15,2.441e-15,3.5429e-15,6.0444e-15,1.0564e-14,1.5347e-14,1.6592e-14,3.3163e-14,4.2063e-14,4.6982e-14,4.9343e-14,6.0162e-14,1.352e-13,1.3875e-13,1.5963e-13,1.9926e-13,2.0811e-13,2.8518e-13,6.7365e-13,6.813e-13,8.6621e-13,9.4397e-13,2.4935e-12,3.1751e-12,3.2319e-12,4.0066e-12,5.3525e-12,5.3831e-12,5.5104e-12,6.5568e-12,6.567e-12,7.6844e-12,8.165e-12,1.9282e-11,2.7982e-11,2.8335e-11,4.3086e-11,4.8176e-11,5.7231e-11,6.2218e-11,6.5356e-11,6.9008e-11,7.0241e-11,7.3639e-11,8.9028e-11,9.1012e-11,9.5235e-11,9.884e-11,1.3068e-10,1.7882e-10,2.6677e-10,3.0984e-10,4.2446e-10,6.0148e-10,6.959e-10,7.5012e-10,1.7028e-09,1.87e-09,2.0031e-09,2.2947e-09,2.7257e-09,3.162e-09,3.5657e-09,3.6425e-09,3.6916e-09,4.2919e-09,6.3587e-09,6.5441e-09,7.6288e-09,9.6627e-09,1.1002e-08,1.1236e-08,2.337e-08,2.3551e-08,2.7168e-08,3.586e-08,3.7709e-08,4.5453e-08,4.7495e-08,6.4481e-08,7.8586e-08,1.2263e-07,1.2393e-07,2.0443e-07,2.1634e-07,2.2027e-07,3.0319e-07,3.0937e-07,3.4681e-07,4.0282e-07,4.2204e-07,4.3716e-07,5.0198e-07,5.1357e-07,5.2127e-07,5.8132e-07,6.0388e-07,6.099e-07,6.6728e-07,6.8917e-07,8.2343e-07,1.1032e-06,1.1618e-06,1.1779e-06,1.3407e-06,1.4142e-06,1.7547e-06,2.5502e-06,2.86e-06,3.4249e-06,3.6583e-06,4.3886e-06,5.2517e-06,5.329e-06,5.3896e-06,5.3966e-06,5.6881e-06,5.7135e-06,6.7318e-06,7.255e-06,8.3453e-06,8.3973e-06,8.7197e-06,1.1085e-05,1.1162e-05,1.25e-05,1.4208e-05,1.7822e-05,1.8357e-05,1.9972e-05,2.0352e-05,2.1341e-05,2.3103e-05,2.6073e-05,2.6158e-05,3.4312e-05,4.6505e-05,4.8018e-05,4.9747e-05,5.0297e-05,6.0196e-05,6.7174e-05,9.6892e-05,9.8748e-05,0.00010259,0.00010939,0.00013854,0.00017657,0.00022924,0.00024775,0.00025944,0.00029149,0.00036773,0.0004068,0.00046322,0.00056423,0.00066744,0.00068781,0.00094474,0.00098448,0.00099937,0.0010747,0.0011061,0.0013888,0.0015293,0.0015722,0.0015766,0.0016707,0.0018055,0.0018713,0.0019013,0.0025034,0.0025042,0.0031902,0.0041797,0.0053308,0.0066346,0.0072816,0.0074601,0.0078929,0.0082892,0.0092931,0.0094101,0.011676,0.012319,0.013701,0.015604,0.016866,0.017014,0.018113,0.018884,0.020899,0.024235,0.02457,0.026194,0.028939,0.031345,0.031462,0.041127,0.042921,0.043805,0.04614,0.047393,0.049424,0.052804,0.054221,0.056247,0.059636,0.064264,0.068943,0.069432,0.075543,0.079791,0.083689,0.093105,0.09767,0.099371,0.10559,0.10598,0.1088,0.11007,0.12788,0.13278,0.13472,0.14384,0.14933,0.15018,0.16364,0.19185,0.20085,0.20559,0.21693,0.21793,0.2312,0.23268,0.25062,0.26155,0.28436,0.28648,0.28847,0.28959,0.29327,0.29629,0.29814,0.31803,0.32228,0.36406,0.37863,0.38843,0.39234,0.42546,0.42605,0.43721,0.44247,0.46922,0.47008,0.4721,0.49237,0.49802,0.50004,0.50617,0.51413,0.52168,0.52561,0.56452,0.5659,0.58642,0.61726,0.64622,0.6861,0.68666,0.70064,0.71807,0.74075,0.741,0.74874,0.7843,0.79233,0.79321,0.83238,0.8406,0.84526,0.8593,0.87271,0.89598,0.89945,0.91547,0.94681,0.94718,0.94945,0.95394,0.95732,0.96132,0.96581,0.99449,0.99798,1,0.99889,0.99877,0.99849,0.9922,0.99003,0.98984,0.97821,0.94921,0.9481,0.93736,0.93502,0.90661,0.89789,0.87776,0.86671,0.85408,0.85157,0.83595,0.83315,0.83181,0.79416,0.78246,0.77748,0.7611,0.75588,0.73161,0.726,0.71465,0.68602,0.68575,0.67185,0.66714,0.66714,0.63625,0.63527,0.62249,0.60898,0.57957,0.55318,0.53436,0.50474,0.47775,0.4435,0.44213,0.4165,0.39249,0.37865,0.34283,0.33268,0.3126,0.30106,0.27779,0.27539,0.2705,0.2594,0.23712,0.21557,0.20472,0.19426,0.18896,0.18822,0.17889,0.16852,0.13957,0.13253,0.12877,0.12076,0.1207,0.1132,0.11229,0.10744,0.10366,0.091701,0.090065,0.081637,0.074375,0.05423,0.051004,0.049505,0.045748,0.042445,0.041243,0.03893,0.037337,0.035438,0.032482,0.032466,0.027682,0.026518,0.026281,0.026155,0.022137,0.022053,0.02168,0.021403,0.020701,0.019581,0.018623,0.014849,0.0089844,0.0076958,0.0075903,0.0075041,0.0072311,0.0070832,0.0058082,0.0050854,0.0046117,0.0043645,0.0038864,0.0035181,0.0034532,0.0029974,0.0027644,0.0025025,0.0021288,0.0017148,0.0016911,0.0015703,0.0014912,0.0014569,0.0011335,0.0010574,0.00076733,0.00070116,0.00059738,0.0005479,0.00053271,0.00045663,0.00044758,0.00042835,0.00038902,0.00032319 1,5.1255e-23,8.4379e-23,8.6508e-23,1.005e-22,1.1278e-22,1.312e-22,1.7586e-22,3.5189e-22,5.4563e-22,5.8359e-22,8.2603e-22,8.7415e-22,1.0944e-21,1.8867e-21,2.237e-21,2.5176e-21,4.1941e-21,4.5771e-21,5.0425e-21,6.9759e-21,7.2231e-21,7.3691e-21,9.4301e-21,1.0905e-20,1.0957e-20,1.4472e-20,1.4843e-20,1.6826e-20,1.7106e-20,1.7382e-20,4.0566e-20,9.0484e-20,9.7258e-20,1.23e-19,1.516e-19,1.7826e-19,2.1596e-19,2.6978e-19,3.9854e-19,4.9368e-19,6.9839e-19,1.0784e-18,1.1223e-18,1.2219e-18,1.3216e-18,1.9858e-18,1.987e-18,5.2091e-18,5.5927e-18,5.8177e-18,7.7465e-18,7.9112e-18,1.3837e-17,1.7218e-17,1.8856e-17,2.3006e-17,2.61e-17,3.2394e-17,3.4635e-17,5.7816e-17,7.918e-17,2.1094e-16,2.7539e-16,3.0101e-16,3.5287e-16,5.4506e-16,5.957e-16,6.4449e-16,9.3178e-16,1.3143e-15,1.4921e-15,1.6551e-15,2.4075e-15,4.12e-15,7.2245e-15,1.0518e-14,1.1377e-14,2.2833e-14,2.9003e-14,3.2416e-14,3.4055e-14,4.1572e-14,9.3885e-14,9.6366e-14,1.1096e-13,1.387e-13,1.449e-13,1.9895e-13,4.7249e-13,4.7789e-13,6.0852e-13,6.6351e-13,1.7636e-12,2.2492e-12,2.2897e-12,2.8425e-12,3.8045e-12,3.8264e-12,3.9175e-12,4.6668e-12,4.6741e-12,5.4751e-12,5.8198e-12,1.3823e-11,2.011e-11,2.0366e-11,3.1056e-11,3.4751e-11,4.1332e-11,4.4959e-11,4.7243e-11,4.9902e-11,5.0799e-11,5.3275e-11,6.4493e-11,6.5939e-11,6.9021e-11,7.1652e-11,9.4922e-11,1.3017e-10,1.9474e-10,2.2642e-10,3.1089e-10,4.4166e-10,5.1153e-10,5.5168e-10,1.2599e-09,1.3846e-09,1.4839e-09,1.7017e-09,2.0239e-09,2.3505e-09,2.6529e-09,2.7106e-09,2.7473e-09,3.1978e-09,4.7519e-09,4.8916e-09,5.7091e-09,7.2445e-09,8.2569e-09,8.4337e-09,1.7644e-08,1.7781e-08,2.0536e-08,2.7166e-08,2.8579e-08,3.45e-08,3.6062e-08,4.9082e-08,5.9916e-08,9.3843e-08,9.4849e-08,1.5712e-07,1.6635e-07,1.694e-07,2.338e-07,2.3862e-07,2.6776e-07,3.1141e-07,3.264e-07,3.3819e-07,3.8881e-07,3.9787e-07,4.0388e-07,4.5084e-07,4.6849e-07,4.7321e-07,5.1814e-07,5.3529e-07,6.4058e-07,8.6047e-07,9.0661e-07,9.1929e-07,1.0476e-06,1.1055e-06,1.3744e-06,2.0044e-06,2.2503e-06,2.6994e-06,2.8852e-06,3.4671e-06,4.1561e-06,4.2178e-06,4.2662e-06,4.2719e-06,4.5049e-06,4.5251e-06,5.3401e-06,5.7593e-06,6.6339e-06,6.6757e-06,6.9345e-06,8.8361e-06,8.8984e-06,9.9764e-06,1.1354e-05,1.4274e-05,1.4707e-05,1.6015e-05,1.6322e-05,1.7124e-05,1.8553e-05,2.0964e-05,2.1033e-05,2.7667e-05,3.7619e-05,3.8855e-05,4.027e-05,4.072e-05,4.8827e-05,5.4551e-05,7.9e-05,8.053e-05,8.3699e-05,8.9312e-05,0.00011341,0.00014493,0.00018873,0.00020415,0.0002139,0.00024065,0.00030442,0.00033717,0.00038454,0.0004695,0.00055654,0.00057374,0.00079119,0.0008249,0.00083754,0.00090152,0.00092821,0.0011689,0.0012887,0.0013254,0.0013291,0.0014095,0.0015248,0.0015811,0.0016068,0.0021235,0.0021242,0.0027152,0.0035708,0.0045703,0.0057066,0.0062718,0.0064279,0.0068066,0.0071536,0.0080341,0.0081368,0.01013,0.010697,0.011917,0.013601,0.014721,0.014852,0.015828,0.016513,0.018306,0.021282,0.021582,0.023033,0.025492,0.027651,0.027756,0.036461,0.038082,0.038881,0.040994,0.042129,0.043969,0.047037,0.048324,0.050166,0.05325,0.057468,0.061741,0.062187,0.067778,0.071672,0.075249,0.083907,0.088113,0.089681,0.095422,0.095779,0.098391,0.099561,0.11607,0.12063,0.12243,0.13092,0.13604,0.13683,0.14941,0.17587,0.18434,0.18882,0.19952,0.20046,0.21301,0.21442,0.23142,0.24181,0.26354,0.26557,0.26747,0.26854,0.27206,0.27494,0.27671,0.29576,0.29983,0.34005,0.35412,0.3636,0.36739,0.39954,0.40011,0.41099,0.41611,0.44224,0.44308,0.44506,0.46494,0.47049,0.47246,0.4785,0.48633,0.49376,0.49764,0.53612,0.53749,0.55787,0.58863,0.61763,0.65781,0.65837,0.67253,0.69023,0.71334,0.7136,0.72151,0.75805,0.76635,0.76726,0.808,0.81661,0.82151,0.83631,0.85052,0.87539,0.87912,0.89648,0.9311,0.93152,0.93407,0.93915,0.94301,0.9476,0.95278,0.98846,0.99388,0.99889,1,1,0.99997,0.99697,0.99556,0.99543,0.98685,0.96272,0.96176,0.95235,0.95029,0.92474,0.91676,0.89819,0.88789,0.87606,0.8737,0.85897,0.85631,0.85504,0.81912,0.80788,0.80308,0.78725,0.78219,0.75859,0.75313,0.74203,0.71394,0.71367,0.69997,0.69533,0.69532,0.66473,0.66376,0.65105,0.6376,0.60819,0.5817,0.56275,0.5328,0.50541,0.4705,0.4691,0.44287,0.41821,0.40396,0.36695,0.35643,0.33557,0.32355,0.29927,0.29676,0.29164,0.28001,0.25661,0.23391,0.22243,0.21136,0.20574,0.20496,0.19505,0.18402,0.15311,0.14557,0.14154,0.13293,0.13287,0.12479,0.12381,0.11857,0.1145,0.10156,0.099787,0.090639,0.082737,0.060712,0.057169,0.05552,0.051385,0.047742,0.046415,0.043859,0.042097,0.039994,0.036716,0.036699,0.031379,0.030083,0.029819,0.029678,0.025192,0.025097,0.024681,0.024371,0.023584,0.02233,0.021255,0.017011,0.010375,0.0089076,0.0087873,0.008689,0.0083776,0.0082088,0.006751,0.0059224,0.0053784,0.0050941,0.0045436,0.0041188,0.0040439,0.003517,0.0032472,0.0029436,0.0025096,0.0020273,0.0019996,0.0018586,0.0017662,0.0017261,0.0013473,0.001258,0.0009166,0.0008385,0.0007158,0.00065721,0.0006392,0.00054894,0.00053819,0.00051534,0.00046856,0.00039013 1,5.0061e-23,8.2423e-23,8.4502e-23,9.8175e-23,1.1017e-22,1.2817e-22,1.7181e-22,3.4385e-22,5.3321e-22,5.7032e-22,8.0731e-22,8.5434e-22,1.0697e-21,1.8443e-21,2.1868e-21,2.4612e-21,4.1006e-21,4.4752e-21,4.9303e-21,6.8213e-21,7.063e-21,7.2059e-21,9.2216e-21,1.0664e-20,1.0715e-20,1.4154e-20,1.4516e-20,1.6456e-20,1.673e-20,1.7001e-20,3.9683e-20,8.8534e-20,9.5163e-20,1.2036e-19,1.4835e-19,1.7445e-19,2.1135e-19,2.6404e-19,3.901e-19,4.8324e-19,6.8369e-19,1.0558e-18,1.0988e-18,1.1964e-18,1.294e-18,1.9445e-18,1.9457e-18,5.1021e-18,5.4779e-18,5.6983e-18,7.5881e-18,7.7495e-18,1.3556e-17,1.687e-17,1.8474e-17,2.2542e-17,2.5575e-17,3.1744e-17,3.394e-17,5.6664e-17,7.7609e-17,2.0681e-16,2.7002e-16,2.9514e-16,3.4601e-16,5.3453e-16,5.842e-16,6.3207e-16,9.1391e-16,1.2892e-15,1.4637e-15,1.6237e-15,2.362e-15,4.0427e-15,7.0901e-15,1.0324e-14,1.1167e-14,2.2416e-14,2.8475e-14,3.1827e-14,3.3437e-14,4.082e-14,9.2208e-14,9.4645e-14,1.0898e-13,1.3624e-13,1.4233e-13,1.9544e-13,4.6428e-13,4.6959e-13,5.9799e-13,6.5205e-13,1.7337e-12,2.2111e-12,2.251e-12,2.7947e-12,3.7409e-12,3.7624e-12,3.852e-12,4.589e-12,4.5962e-12,5.3841e-12,5.7232e-12,1.3597e-11,1.9784e-11,2.0036e-11,3.0558e-11,3.4195e-11,4.0672e-11,4.4243e-11,4.6491e-11,4.9108e-11,4.9992e-11,5.2429e-11,6.3472e-11,6.4897e-11,6.793e-11,7.0521e-11,9.3433e-11,1.2815e-10,1.9174e-10,2.2294e-10,3.0614e-10,4.3496e-10,5.038e-10,5.4336e-10,1.2413e-09,1.3642e-09,1.4621e-09,1.6767e-09,1.9943e-09,2.3162e-09,2.6144e-09,2.6712e-09,2.7075e-09,3.1516e-09,4.684e-09,4.8217e-09,5.6278e-09,7.142e-09,8.1404e-09,8.3149e-09,1.74e-08,1.7536e-08,2.0253e-08,2.6795e-08,2.8189e-08,3.4032e-08,3.5574e-08,4.8423e-08,5.9117e-08,9.2609e-08,9.3602e-08,1.5509e-07,1.642e-07,1.6721e-07,2.3082e-07,2.3557e-07,2.6435e-07,3.0746e-07,3.2227e-07,3.3392e-07,3.8392e-07,3.9287e-07,3.9881e-07,4.452e-07,4.6264e-07,4.673e-07,5.1169e-07,5.2863e-07,6.3267e-07,8.4995e-07,8.9555e-07,9.0808e-07,1.0349e-06,1.0921e-06,1.3579e-06,1.9807e-06,2.2238e-06,2.6678e-06,2.8515e-06,3.4268e-06,4.1082e-06,4.1692e-06,4.2171e-06,4.2227e-06,4.4531e-06,4.4732e-06,5.2792e-06,5.6938e-06,6.5589e-06,6.6002e-06,6.8562e-06,8.7375e-06,8.799e-06,9.8656e-06,1.1228e-05,1.4118e-05,1.4547e-05,1.5841e-05,1.6145e-05,1.6939e-05,1.8353e-05,2.0738e-05,2.0807e-05,2.7374e-05,3.7225e-05,3.845e-05,3.985e-05,4.0296e-05,4.8323e-05,5.3992e-05,7.8205e-05,7.972e-05,8.2859e-05,8.8419e-05,0.00011229,0.00014352,0.00018692,0.0002022,0.00021186,0.00023837,0.00030158,0.00033405,0.000381,0.00046525,0.00055155,0.0005686,0.00078426,0.0008177,0.00083023,0.0008937,0.00092017,0.0011589,0.0012778,0.0013142,0.0013179,0.0013976,0.0015121,0.001568,0.0015935,0.0021062,0.0021069,0.0026935,0.003543,0.0045356,0.005664,0.0062254,0.0063805,0.0067567,0.0071015,0.0079763,0.0080782,0.010059,0.010622,0.011835,0.013509,0.014621,0.014752,0.015722,0.016403,0.018186,0.021145,0.021443,0.022886,0.025332,0.027479,0.027583,0.036244,0.037856,0.038651,0.040754,0.041883,0.043714,0.046767,0.048048,0.049881,0.052951,0.05715,0.061402,0.061847,0.067413,0.07129,0.074852,0.083473,0.087662,0.089224,0.094942,0.095297,0.097899,0.099065,0.11551,0.12005,0.12185,0.13031,0.13541,0.1362,0.14874,0.17511,0.18356,0.18802,0.19869,0.19962,0.21214,0.21354,0.2305,0.24087,0.26254,0.26456,0.26646,0.26753,0.27104,0.27392,0.27568,0.29468,0.29875,0.33889,0.35293,0.3624,0.36618,0.39828,0.39885,0.40971,0.41483,0.44093,0.44177,0.44375,0.4636,0.46914,0.47112,0.47715,0.48497,0.4924,0.49627,0.53473,0.5361,0.55647,0.58722,0.61622,0.6564,0.65697,0.67113,0.68885,0.71198,0.71223,0.72016,0.75674,0.76505,0.76596,0.80678,0.8154,0.82031,0.83515,0.84939,0.87434,0.87808,0.8955,0.93028,0.9307,0.93327,0.93838,0.94225,0.94687,0.95209,0.98811,0.99362,0.99877,1,1,0.99999,0.99715,0.99578,0.99565,0.98723,0.96333,0.96238,0.95304,0.95099,0.92559,0.91765,0.89915,0.8889,0.87711,0.87476,0.86007,0.85742,0.85615,0.82033,0.8091,0.80432,0.78852,0.78347,0.75991,0.75444,0.74337,0.7153,0.71503,0.70135,0.69671,0.6967,0.66613,0.66515,0.65245,0.63901,0.60961,0.58311,0.56415,0.53419,0.50679,0.47185,0.47045,0.44419,0.4195,0.40523,0.36816,0.35762,0.33673,0.32468,0.30035,0.29784,0.29271,0.28105,0.2576,0.23484,0.22333,0.21223,0.20659,0.20581,0.19587,0.18481,0.15381,0.14624,0.14219,0.13355,0.13349,0.12538,0.1244,0.11915,0.11505,0.10207,0.10029,0.091102,0.083168,0.061047,0.057488,0.055831,0.051677,0.048016,0.046684,0.044115,0.042344,0.040231,0.036936,0.036919,0.031572,0.030269,0.030003,0.029862,0.025351,0.025256,0.024837,0.024526,0.023735,0.022473,0.021392,0.017124,0.010448,0.0089715,0.0088504,0.0087515,0.0084381,0.0082682,0.0068008,0.0059667,0.005419,0.0051327,0.0045784,0.0041507,0.0040752,0.0035446,0.0032729,0.0029671,0.0025298,0.002044,0.0020161,0.001874,0.0017809,0.0017405,0.0013588,0.0012687,0.00092461,0.00084588,0.00072217,0.00066308,0.00064493,0.00055392,0.00054307,0.00052003,0.00047284,0.00039374 1,4.7414e-23,7.8086e-23,8.0057e-23,9.3019e-23,1.0439e-22,1.2145e-22,1.6284e-22,3.2601e-22,5.0566e-22,5.4087e-22,7.6577e-22,8.1041e-22,1.0148e-21,1.7502e-21,2.0754e-21,2.336e-21,3.8931e-21,4.2489e-21,4.6813e-21,6.4779e-21,6.7076e-21,6.8433e-21,8.7589e-21,1.013e-20,1.0178e-20,1.3447e-20,1.3791e-20,1.5636e-20,1.5896e-20,1.6153e-20,3.7723e-20,8.4199e-20,9.0507e-20,1.1448e-19,1.4113e-19,1.6597e-19,2.011e-19,2.5127e-19,3.7131e-19,4.6003e-19,6.5098e-19,1.0055e-18,1.0466e-18,1.1395e-18,1.2326e-18,1.8526e-18,1.8538e-18,4.8638e-18,5.2223e-18,5.4326e-18,7.2355e-18,7.3894e-18,1.293e-17,1.6094e-17,1.7625e-17,2.1509e-17,2.4404e-17,3.0295e-17,3.2393e-17,5.4097e-17,7.4108e-17,1.976e-16,2.5804e-16,2.8207e-16,3.3071e-16,5.1104e-16,5.5856e-16,6.0435e-16,8.7405e-16,1.2332e-15,1.4002e-15,1.5534e-15,2.2603e-15,3.8701e-15,6.7899e-15,9.8889e-15,1.0697e-14,2.1483e-14,2.7294e-14,3.051e-14,3.2054e-14,3.9137e-14,8.8458e-14,9.0797e-14,1.0456e-13,1.3073e-13,1.3658e-13,1.8759e-13,4.459e-13,4.51e-13,5.7442e-13,6.2638e-13,1.6666e-12,2.126e-12,2.1643e-12,2.6875e-12,3.5982e-12,3.619e-12,3.7052e-12,4.4146e-12,4.4216e-12,5.1802e-12,5.5067e-12,1.3091e-11,1.9053e-11,1.9296e-11,2.9439e-11,3.2946e-11,3.9192e-11,4.2635e-11,4.4803e-11,4.7328e-11,4.818e-11,5.053e-11,6.1183e-11,6.2557e-11,6.5484e-11,6.7983e-11,9.009e-11,1.2359e-10,1.8498e-10,2.1511e-10,2.9547e-10,4.1992e-10,4.8643e-10,5.2467e-10,1.1994e-09,1.3183e-09,1.4129e-09,1.6205e-09,1.9278e-09,2.2392e-09,2.5278e-09,2.5828e-09,2.6179e-09,3.0476e-09,4.531e-09,4.6644e-09,5.4449e-09,6.9113e-09,7.8784e-09,8.0474e-09,1.6851e-08,1.6983e-08,1.9617e-08,2.596e-08,2.7312e-08,3.2979e-08,3.4475e-08,4.694e-08,5.7317e-08,8.9826e-08,9.0791e-08,1.505e-07,1.5935e-07,1.6228e-07,2.2408e-07,2.287e-07,2.5666e-07,2.9857e-07,3.1296e-07,3.2429e-07,3.729e-07,3.816e-07,3.8737e-07,4.3248e-07,4.4944e-07,4.5397e-07,4.9714e-07,5.1362e-07,6.1481e-07,8.262e-07,8.7057e-07,8.8276e-07,1.0062e-06,1.0619e-06,1.3206e-06,1.927e-06,2.1638e-06,2.5963e-06,2.7753e-06,3.3359e-06,4e-06,4.0595e-06,4.1062e-06,4.1116e-06,4.3362e-06,4.3557e-06,5.1415e-06,5.5458e-06,6.3894e-06,6.4297e-06,6.6793e-06,8.5143e-06,8.5743e-06,9.6149e-06,1.0945e-05,1.3765e-05,1.4183e-05,1.5446e-05,1.5743e-05,1.6518e-05,1.7899e-05,2.0228e-05,2.0296e-05,2.6709e-05,3.6335e-05,3.7532e-05,3.89e-05,3.9336e-05,4.7182e-05,5.2723e-05,7.6402e-05,7.7885e-05,8.0955e-05,8.6394e-05,0.00010975,0.00014032,0.00018281,0.00019778,0.00020724,0.00023321,0.00029514,0.00032696,0.00037298,0.00045558,0.00054021,0.00055694,0.00076852,0.00080133,0.00081363,0.00087592,0.0009019,0.0011363,0.001253,0.0012888,0.0012924,0.0013707,0.0014831,0.001538,0.0015631,0.0020669,0.0020676,0.0026443,0.0034798,0.0044564,0.0055672,0.0061199,0.0062727,0.0066432,0.0069827,0.0078444,0.0079449,0.0098964,0.010452,0.011647,0.013298,0.014395,0.014524,0.015481,0.016153,0.017912,0.020833,0.021127,0.022552,0.024966,0.027087,0.02719,0.035746,0.03734,0.038126,0.040204,0.041321,0.043132,0.04615,0.047417,0.04923,0.052267,0.056421,0.060629,0.061069,0.066579,0.070417,0.073943,0.082481,0.086631,0.088178,0.093843,0.094195,0.096774,0.097929,0.11423,0.11873,0.12051,0.1289,0.13397,0.13475,0.14719,0.17337,0.18175,0.18618,0.19678,0.19771,0.21015,0.21154,0.22839,0.23869,0.26025,0.26226,0.26415,0.26521,0.2687,0.27156,0.27332,0.29222,0.29627,0.33622,0.35021,0.35963,0.3634,0.39539,0.39596,0.40678,0.41189,0.43791,0.43875,0.44072,0.46052,0.46606,0.46802,0.47404,0.48185,0.48926,0.49313,0.53153,0.53289,0.55324,0.58397,0.61297,0.65318,0.65375,0.66792,0.68566,0.70883,0.70908,0.71703,0.75371,0.76204,0.76295,0.80394,0.8126,0.81754,0.83245,0.84678,0.8719,0.87567,0.89324,0.92837,0.9288,0.9314,0.93657,0.9405,0.94518,0.95048,0.98727,0.993,0.99849,0.99997,0.99999,1,0.99754,0.99625,0.99614,0.98806,0.96473,0.9638,0.95461,0.9526,0.92753,0.91968,0.90137,0.8912,0.87951,0.87717,0.86259,0.85995,0.8587,0.82309,0.81192,0.80715,0.79143,0.78639,0.76292,0.75747,0.74643,0.71844,0.71817,0.70451,0.69988,0.69987,0.66934,0.66837,0.65568,0.64225,0.61286,0.58636,0.56739,0.5374,0.50995,0.47495,0.47355,0.44722,0.42246,0.40815,0.37096,0.36038,0.33939,0.3273,0.30285,0.30033,0.29517,0.28346,0.25988,0.23698,0.22541,0.21424,0.20857,0.20778,0.19777,0.18664,0.15541,0.14778,0.1437,0.13499,0.13493,0.12675,0.12576,0.12047,0.11634,0.10324,0.10144,0.092176,0.084166,0.061825,0.058228,0.056554,0.052354,0.048654,0.047306,0.044708,0.042917,0.04078,0.037447,0.03743,0.032019,0.030701,0.030431,0.030289,0.025722,0.025625,0.025201,0.024886,0.024085,0.022807,0.021712,0.017388,0.010618,0.0091202,0.0089973,0.0088969,0.0085789,0.0084064,0.0069168,0.0060698,0.0055135,0.0052227,0.0046596,0.0042249,0.0041483,0.0036089,0.0033327,0.0030217,0.0025771,0.0020829,0.0020545,0.0019099,0.0018151,0.001774,0.0013854,0.0012938,0.0009433,0.00086309,0.00073702,0.00067681,0.0006583,0.00056552,0.00055446,0.00053097,0.00048285,0.00040217 1,2.3199e-23,3.8339e-23,3.9314e-23,4.5727e-23,5.1359e-23,5.9817e-23,8.0363e-23,1.6168e-22,2.5156e-22,2.692e-22,3.8208e-22,4.0452e-22,5.0734e-22,8.7845e-22,1.0429e-21,1.1749e-21,1.9653e-21,2.1463e-21,2.3663e-21,3.2822e-21,3.3995e-21,3.4688e-21,4.4478e-21,5.1495e-21,5.1741e-21,6.8496e-21,7.0265e-21,7.9736e-21,8.1073e-21,8.2395e-21,1.9363e-20,4.3478e-20,4.6761e-20,5.9253e-20,7.316e-20,8.6142e-20,1.0453e-19,1.3082e-19,1.939e-19,2.4062e-19,3.4141e-19,5.2913e-19,5.5089e-19,6.0019e-19,6.496e-19,9.7948e-19,9.8009e-19,2.591e-18,2.7835e-18,2.8965e-18,3.8665e-18,3.9494e-18,6.9416e-18,8.655e-18,9.4855e-18,1.1594e-17,1.3168e-17,1.6375e-17,1.7518e-17,2.9378e-17,4.0348e-17,1.0845e-16,1.4194e-16,1.5527e-16,1.8229e-16,2.8271e-16,3.0923e-16,3.348e-16,4.8572e-16,6.8731e-16,7.8123e-16,8.6745e-16,1.2663e-15,2.1781e-15,3.84e-15,5.6111e-15,6.074e-15,1.2273e-14,1.5626e-14,1.7485e-14,1.8378e-14,2.2479e-14,5.118e-14,5.2546e-14,6.0591e-14,7.5911e-14,7.9338e-14,1.0928e-13,2.6186e-13,2.6488e-13,3.3813e-13,3.6901e-13,9.9097e-13,1.2671e-12,1.2901e-12,1.6053e-12,2.1554e-12,2.1679e-12,2.2201e-12,2.6496e-12,2.6539e-12,3.114e-12,3.3122e-12,7.9415e-12,1.1602e-11,1.1751e-11,1.8004e-11,2.0172e-11,2.4038e-11,2.6172e-11,2.7517e-11,2.9084e-11,2.9613e-11,3.1073e-11,3.7697e-11,3.8553e-11,4.0375e-11,4.1933e-11,5.573e-11,7.6705e-11,1.1529e-10,1.3428e-10,1.8506e-10,2.64e-10,3.0629e-10,3.3064e-10,7.6264e-10,8.3911e-10,9.0005e-10,1.0339e-09,1.2322e-09,1.4337e-09,1.6206e-09,1.6563e-09,1.679e-09,1.958e-09,2.9241e-09,3.0112e-09,3.5213e-09,4.4818e-09,5.1166e-09,5.2276e-09,1.1041e-08,1.1128e-08,1.2876e-08,1.7096e-08,1.7997e-08,2.1781e-08,2.2781e-08,3.1133e-08,3.8107e-08,6.0052e-08,6.0704e-08,1.0126e-07,1.0729e-07,1.0929e-07,1.5153e-07,1.5469e-07,1.7386e-07,2.0264e-07,2.1254e-07,2.2033e-07,2.5381e-07,2.5981e-07,2.6379e-07,2.9493e-07,3.0665e-07,3.0978e-07,3.3964e-07,3.5105e-07,4.212e-07,5.6823e-07,5.9917e-07,6.0767e-07,6.9383e-07,7.3276e-07,9.1397e-07,1.3405e-06,1.5077e-06,1.8136e-06,1.9404e-06,2.3384e-06,2.811e-06,2.8534e-06,2.8867e-06,2.8906e-06,3.0508e-06,3.0647e-06,3.6261e-06,3.9154e-06,4.5202e-06,4.5491e-06,4.7283e-06,6.0485e-06,6.0918e-06,6.8425e-06,7.8036e-06,9.8478e-06,1.0152e-05,1.107e-05,1.1286e-05,1.185e-05,1.2856e-05,1.4556e-05,1.4605e-05,1.93e-05,2.6381e-05,2.7264e-05,2.8273e-05,2.8595e-05,3.4397e-05,3.8504e-05,5.6129e-05,5.7235e-05,5.9529e-05,6.3595e-05,8.1105e-05,0.00010412,0.00013625,0.0001476,0.00015479,0.00017453,0.00022179,0.00024614,0.00028144,0.00034499,0.00041033,0.00042327,0.00058753,0.0006131,0.00062269,0.00067128,0.00069157,0.0008751,0.00096682,0.00099493,0.00099783,0.0010595,0.0011481,0.0011915,0.0012112,0.0016105,0.0016111,0.0020707,0.0027404,0.0035279,0.0044285,0.0048783,0.0050027,0.005305,0.0055823,0.0062876,0.0063699,0.0079746,0.0084327,0.0094211,0.01079,0.011703,0.01181,0.012608,0.013168,0.014639,0.017091,0.017339,0.018539,0.020578,0.022373,0.02246,0.029744,0.031107,0.03178,0.033562,0.03452,0.036076,0.038675,0.039767,0.041332,0.043957,0.047556,0.051212,0.051595,0.056395,0.059747,0.062833,0.070328,0.07398,0.075344,0.080345,0.080656,0.082936,0.083959,0.09844,0.10245,0.10404,0.11154,0.11608,0.11678,0.12796,0.15163,0.15924,0.16327,0.17294,0.17379,0.18516,0.18644,0.20192,0.21141,0.23134,0.2332,0.23496,0.23594,0.23918,0.24184,0.24347,0.26108,0.26486,0.30234,0.31554,0.32445,0.32802,0.35842,0.35896,0.36929,0.37417,0.39912,0.39992,0.40182,0.4209,0.42625,0.42815,0.43397,0.44154,0.44873,0.45249,0.48995,0.49129,0.51126,0.54159,0.5704,0.61066,0.61123,0.62552,0.64347,0.66705,0.66731,0.67542,0.71316,0.72179,0.72274,0.76558,0.77473,0.77996,0.79581,0.81116,0.83834,0.84246,0.86178,0.90134,0.90183,0.90482,0.9108,0.91538,0.92087,0.92715,0.97383,0.98234,0.9922,0.99697,0.99715,0.99754,1,0.99987,0.99984,0.99642,0.98064,0.97994,0.97287,0.97128,0.9508,0.94417,0.9284,0.91949,0.90914,0.90706,0.89397,0.89159,0.89045,0.85785,0.84749,0.84306,0.82834,0.82361,0.80141,0.79623,0.78569,0.7588,0.75855,0.74534,0.74084,0.74084,0.71108,0.71013,0.69768,0.68445,0.65536,0.62895,0.60995,0.57973,0.55191,0.51619,0.51475,0.48771,0.46214,0.4473,0.40853,0.39745,0.37539,0.36264,0.33676,0.33408,0.3286,0.31613,0.29093,0.26633,0.25384,0.24176,0.23561,0.23475,0.22388,0.21176,0.17753,0.16912,0.16462,0.15498,0.15492,0.14585,0.14475,0.13886,0.13426,0.11962,0.11761,0.10719,0.098163,0.072792,0.068678,0.066761,0.061942,0.057686,0.056133,0.053135,0.051065,0.048591,0.044725,0.044705,0.038405,0.036864,0.03655,0.036383,0.03103,0.030917,0.030418,0.030047,0.029105,0.027599,0.026307,0.021185,0.013091,0.011284,0.011135,0.011014,0.010629,0.01042,0.0086113,0.0075786,0.0068986,0.0065424,0.0058514,0.0053166,0.0052222,0.0045566,0.0042148,0.0038293,0.0032765,0.0026595,0.002624,0.0024429,0.002324,0.0022724,0.0017833,0.0016675,0.0012231,0.001121,0.00096005,0.000883,0.0008593,0.00074024,0.00072602,0.00069581,0.00063384,0.00052966 1,1.9624e-23,3.2458e-23,3.3284e-23,3.8723e-23,4.3501e-23,5.0677e-23,6.8116e-23,1.3719e-22,2.1362e-22,2.2863e-22,3.2468e-22,3.4378e-22,4.3133e-22,7.4751e-22,8.8773e-22,1.0002e-21,1.6746e-21,1.8291e-21,2.0169e-21,2.7992e-21,2.8993e-21,2.9585e-21,3.7951e-21,4.3949e-21,4.416e-21,5.8488e-21,6.0001e-21,6.8103e-21,6.9247e-21,7.0378e-21,1.6563e-20,3.7244e-20,4.006e-20,5.0784e-20,6.2726e-20,7.3877e-20,8.9676e-20,1.1228e-19,1.6653e-19,2.0674e-19,2.9351e-19,4.5525e-19,4.74e-19,5.165e-19,5.5911e-19,8.4365e-19,8.4418e-19,2.2356e-18,2.4021e-18,2.4997e-18,3.3386e-18,3.4104e-18,6.0003e-18,7.4845e-18,8.204e-18,1.0031e-17,1.1396e-17,1.4177e-17,1.5169e-17,2.5463e-17,3.4992e-17,9.4232e-17,1.2339e-16,1.35e-16,1.5854e-16,2.4609e-16,2.6922e-16,2.9153e-16,4.2325e-16,5.9932e-16,6.8139e-16,7.5675e-16,1.1055e-15,1.9036e-15,3.3599e-15,4.9132e-15,5.3195e-15,1.0764e-14,1.3712e-14,1.5346e-14,1.6131e-14,1.9739e-14,4.5019e-14,4.6223e-14,5.3316e-14,6.6828e-14,6.9851e-14,9.6282e-14,2.3113e-13,2.3381e-13,2.9862e-13,3.2596e-13,8.7724e-13,1.1222e-12,1.1427e-12,1.4226e-12,1.9113e-12,1.9224e-12,1.9688e-12,2.3507e-12,2.3544e-12,2.7636e-12,2.94e-12,7.063e-12,1.0327e-11,1.0461e-11,1.6043e-11,1.7979e-11,2.1434e-11,2.3342e-11,2.4544e-11,2.5945e-11,2.6418e-11,2.7723e-11,3.3649e-11,3.4414e-11,3.6045e-11,3.7439e-11,4.9791e-11,6.8583e-11,1.0319e-10,1.2023e-10,1.6582e-10,2.3676e-10,2.7479e-10,2.9668e-10,6.8576e-10,7.5471e-10,8.0965e-10,9.3036e-10,1.1094e-09,1.2913e-09,1.4601e-09,1.4923e-09,1.5128e-09,1.7649e-09,2.6384e-09,2.7172e-09,3.1788e-09,4.0484e-09,4.6235e-09,4.7241e-09,9.9977e-09,1.0077e-08,1.1664e-08,1.5499e-08,1.6318e-08,1.9759e-08,2.0669e-08,2.8271e-08,3.4624e-08,5.4632e-08,5.5227e-08,9.2261e-08,9.7773e-08,9.9597e-08,1.3822e-07,1.4111e-07,1.5866e-07,1.85e-07,1.9406e-07,2.012e-07,2.3187e-07,2.3737e-07,2.4102e-07,2.6956e-07,2.803e-07,2.8317e-07,3.1055e-07,3.2102e-07,3.8538e-07,5.2038e-07,5.488e-07,5.5661e-07,6.3579e-07,6.7158e-07,8.3823e-07,1.2309e-06,1.3849e-06,1.6669e-06,1.7838e-06,2.151e-06,2.5873e-06,2.6264e-06,2.6572e-06,2.6607e-06,2.8087e-06,2.8216e-06,3.3402e-06,3.6077e-06,4.1669e-06,4.1936e-06,4.3594e-06,5.5811e-06,5.6212e-06,6.3164e-06,7.2067e-06,9.1018e-06,9.3837e-06,1.0235e-05,1.0436e-05,1.0959e-05,1.1893e-05,1.3471e-05,1.3517e-05,1.788e-05,2.4467e-05,2.5288e-05,2.6228e-05,2.6527e-05,3.1931e-05,3.5758e-05,5.2198e-05,5.3231e-05,5.5372e-05,5.917e-05,7.553e-05,9.7055e-05,0.00012714,0.00013777,0.0001445,0.00016302,0.00020735,0.00023021,0.00026337,0.0003231,0.00038458,0.00039676,0.00055149,0.00057559,0.00058463,0.00063046,0.0006496,0.00082283,0.00090946,0.00093603,0.00093877,0.00099702,0.0010808,0.0011218,0.0011405,0.0015185,0.001519,0.0019546,0.0025902,0.0033385,0.0041954,0.0046238,0.0047424,0.0050304,0.0052947,0.0059673,0.0060458,0.0075777,0.0080155,0.0089602,0.01027,0.011143,0.011246,0.01201,0.012547,0.013957,0.016309,0.016546,0.017698,0.019657,0.021382,0.021466,0.028476,0.02979,0.030438,0.032156,0.03308,0.03458,0.037088,0.038142,0.039652,0.042188,0.045666,0.049201,0.049571,0.054216,0.057461,0.06045,0.067714,0.071256,0.07258,0.077433,0.077735,0.079949,0.080942,0.095016,0.098915,0.10046,0.10776,0.11218,0.11286,0.12376,0.14686,0.1543,0.15824,0.16769,0.16852,0.17965,0.1809,0.19606,0.20537,0.22492,0.22675,0.22847,0.22944,0.23261,0.23523,0.23683,0.25413,0.25785,0.29474,0.30774,0.31654,0.32006,0.35006,0.3506,0.3608,0.36562,0.39031,0.3911,0.39298,0.41188,0.41717,0.41906,0.42483,0.43233,0.43946,0.44319,0.48039,0.48172,0.50159,0.53179,0.56051,0.60073,0.6013,0.61559,0.63356,0.6572,0.65746,0.66561,0.70352,0.71222,0.71317,0.75637,0.76562,0.7709,0.78695,0.8025,0.83011,0.83431,0.854,0.89452,0.89502,0.89809,0.90425,0.90897,0.91465,0.92114,0.97003,0.97918,0.99003,0.99556,0.99578,0.99625,0.99987,1,1,0.99767,0.98369,0.98305,0.97648,0.975,0.95563,0.9493,0.93415,0.92556,0.91553,0.91352,0.90081,0.89849,0.89738,0.86555,0.8554,0.85105,0.83659,0.83194,0.81008,0.80497,0.79457,0.76799,0.76774,0.75465,0.7502,0.75019,0.72066,0.71972,0.70735,0.69419,0.66521,0.63887,0.61988,0.58965,0.56178,0.52593,0.52449,0.49731,0.47157,0.45663,0.41752,0.40633,0.38405,0.37115,0.34495,0.34224,0.33669,0.32404,0.29847,0.27348,0.26079,0.24849,0.24223,0.24136,0.23029,0.21793,0.18299,0.1744,0.1698,0.15994,0.15988,0.15059,0.14946,0.14343,0.13872,0.12371,0.12164,0.11095,0.10168,0.075562,0.071322,0.069345,0.064373,0.059979,0.058375,0.055279,0.053139,0.050582,0.046583,0.046562,0.04004,0.038444,0.038117,0.037945,0.032395,0.032277,0.03176,0.031375,0.030397,0.028834,0.027492,0.022168,0.013736,0.011849,0.011694,0.011567,0.011165,0.010947,0.0090561,0.0079755,0.0072634,0.0068903,0.006166,0.0056053,0.0055062,0.0048077,0.0044488,0.0040438,0.0034627,0.0028135,0.0027761,0.0025854,0.0024601,0.0024057,0.00189,0.0017678,0.0012985,0.0011906,0.0010204,0.00093881,0.00091372,0.00078762,0.00077256,0.00074055,0.00067486,0.00056437 1,1.9354e-23,3.2012e-23,3.2827e-23,3.8192e-23,4.2905e-23,4.9984e-23,6.7187e-23,1.3534e-22,2.1074e-22,2.2554e-22,3.2032e-22,3.3916e-22,4.2555e-22,7.3755e-22,8.7593e-22,9.8695e-22,1.6525e-21,1.8049e-21,1.9903e-21,2.7624e-21,2.8613e-21,2.9197e-21,3.7454e-21,4.3375e-21,4.3582e-21,5.7725e-21,5.9219e-21,6.7216e-21,6.8346e-21,6.9462e-21,1.635e-20,3.6768e-20,3.9549e-20,5.0137e-20,6.1929e-20,7.2941e-20,8.8542e-20,1.1086e-19,1.6444e-19,2.0415e-19,2.8984e-19,4.4959e-19,4.6812e-19,5.101e-19,5.5218e-19,8.3325e-19,8.3377e-19,2.2084e-18,2.3728e-18,2.4693e-18,3.2981e-18,3.369e-18,5.9281e-18,7.3946e-18,8.1057e-18,9.9114e-18,1.126e-17,1.4008e-17,1.4988e-17,2.5162e-17,3.458e-17,9.3138e-17,1.2196e-16,1.3344e-16,1.5671e-16,2.4327e-16,2.6614e-16,2.882e-16,4.1843e-16,5.9253e-16,6.7369e-16,7.4821e-16,1.0931e-15,1.8824e-15,3.3228e-15,4.8593e-15,5.2611e-15,1.0647e-14,1.3563e-14,1.518e-14,1.5957e-14,1.9527e-14,4.4542e-14,4.5734e-14,5.2752e-14,6.6124e-14,6.9116e-14,9.5274e-14,2.2875e-13,2.3139e-13,2.9555e-13,3.2262e-13,8.6839e-13,1.111e-12,1.1312e-12,1.4084e-12,1.8923e-12,1.9033e-12,1.9492e-12,2.3274e-12,2.3311e-12,2.7363e-12,2.911e-12,6.9945e-12,1.0228e-11,1.036e-11,1.589e-11,1.7808e-11,2.1231e-11,2.3121e-11,2.4312e-11,2.57e-11,2.6168e-11,2.7462e-11,3.3333e-11,3.4091e-11,3.5707e-11,3.7088e-11,4.9327e-11,6.7948e-11,1.0224e-10,1.1913e-10,1.6432e-10,2.3462e-10,2.7232e-10,2.9402e-10,6.7973e-10,7.4808e-10,8.0256e-10,9.2224e-10,1.0997e-09,1.2801e-09,1.4475e-09,1.4794e-09,1.4998e-09,1.7497e-09,2.616e-09,2.6941e-09,3.1519e-09,4.0144e-09,4.5847e-09,4.6845e-09,9.9155e-09,9.994e-09,1.1569e-08,1.5373e-08,1.6186e-08,1.96e-08,2.0502e-08,2.8045e-08,3.4349e-08,5.4204e-08,5.4795e-08,9.155e-08,9.702e-08,9.8831e-08,1.3717e-07,1.4004e-07,1.5745e-07,1.8361e-07,1.926e-07,1.9969e-07,2.3014e-07,2.3559e-07,2.3922e-07,2.6755e-07,2.7822e-07,2.8107e-07,3.0825e-07,3.1864e-07,3.8254e-07,5.1659e-07,5.4481e-07,5.5257e-07,6.3119e-07,6.6673e-07,8.3223e-07,1.2222e-06,1.3751e-06,1.6552e-06,1.7714e-06,2.1361e-06,2.5695e-06,2.6084e-06,2.6389e-06,2.6425e-06,2.7894e-06,2.8022e-06,3.3175e-06,3.5832e-06,4.1388e-06,4.1653e-06,4.33e-06,5.5439e-06,5.5838e-06,6.2745e-06,7.1592e-06,9.0423e-06,9.3225e-06,1.0169e-05,1.0368e-05,1.0888e-05,1.1816e-05,1.3385e-05,1.343e-05,1.7767e-05,2.4314e-05,2.513e-05,2.6065e-05,2.6362e-05,3.1734e-05,3.5539e-05,5.1884e-05,5.2911e-05,5.504e-05,5.8816e-05,7.5084e-05,9.6489e-05,0.00012641,0.00013698,0.00014368,0.00016209,0.00020619,0.00022893,0.00026192,0.00032135,0.00038251,0.00039463,0.00054859,0.00057257,0.00058157,0.00062718,0.00064622,0.00081862,0.00090484,0.00093129,0.00093401,0.00099199,0.0010754,0.0011162,0.0011348,0.001511,0.0015116,0.0019452,0.002578,0.0033232,0.0041766,0.0046033,0.0047213,0.0050082,0.0052714,0.0059414,0.0060196,0.0075456,0.0079817,0.0089229,0.010228,0.011098,0.0112,0.011961,0.012497,0.013902,0.016245,0.016482,0.01763,0.019582,0.021302,0.021385,0.028373,0.029682,0.030329,0.032041,0.032962,0.034458,0.036958,0.038009,0.039516,0.042043,0.045512,0.049037,0.049406,0.054038,0.057275,0.060256,0.067501,0.071034,0.072354,0.077195,0.077497,0.079705,0.080696,0.094736,0.098626,0.10017,0.10745,0.11186,0.11254,0.12342,0.14647,0.1539,0.15783,0.16726,0.16809,0.1792,0.18045,0.19558,0.20487,0.22439,0.22621,0.22794,0.2289,0.23207,0.23468,0.23628,0.25356,0.25728,0.29412,0.3071,0.31588,0.3194,0.34937,0.34991,0.3601,0.36492,0.38958,0.39037,0.39225,0.41113,0.41642,0.41831,0.42407,0.43157,0.4387,0.44242,0.4796,0.48093,0.50079,0.53097,0.55969,0.5999,0.60047,0.61477,0.63274,0.65638,0.65664,0.66479,0.70272,0.71142,0.71237,0.7556,0.76485,0.77014,0.7862,0.80177,0.82942,0.83362,0.85335,0.89394,0.89445,0.89753,0.9037,0.90843,0.91412,0.92063,0.96971,0.9789,0.98984,0.99543,0.99565,0.99614,0.99984,1,1,0.99776,0.98393,0.98329,0.97677,0.9753,0.95602,0.94971,0.93462,0.92605,0.91606,0.91405,0.90137,0.89905,0.89795,0.86618,0.85605,0.8517,0.83727,0.83263,0.81079,0.80569,0.7953,0.76875,0.76849,0.75542,0.75097,0.75097,0.72145,0.72051,0.70815,0.695,0.66603,0.63969,0.6207,0.59048,0.5626,0.52674,0.5253,0.49811,0.47236,0.4574,0.41827,0.40707,0.38477,0.37186,0.34563,0.34292,0.33736,0.32471,0.2991,0.27408,0.26137,0.24906,0.24279,0.24191,0.23083,0.21844,0.18345,0.17485,0.17023,0.16036,0.16029,0.15099,0.14986,0.14382,0.13909,0.12405,0.12198,0.11127,0.10197,0.075796,0.071545,0.069563,0.064579,0.060173,0.058565,0.05546,0.053315,0.05075,0.04674,0.046719,0.040178,0.038577,0.03825,0.038077,0.03251,0.032392,0.031873,0.031487,0.030506,0.028938,0.027592,0.022251,0.013791,0.011897,0.011742,0.011614,0.011211,0.010992,0.009094,0.0080093,0.0072945,0.0069199,0.0061928,0.0056298,0.0055304,0.0048291,0.0044688,0.0040621,0.0034786,0.0028266,0.002789,0.0025975,0.0024717,0.0024171,0.0018991,0.0017764,0.001305,0.0011965,0.0010255,0.00094359,0.00091838,0.00079168,0.00077655,0.00074438,0.00067838,0.00056735 1,9.7314e-24,1.615e-23,1.6564e-23,1.929e-23,2.1687e-23,2.529e-23,3.4061e-23,6.8931e-23,1.0765e-22,1.1527e-22,1.6409e-22,1.7381e-22,2.1842e-22,3.7997e-22,4.5179e-22,5.0947e-22,8.5601e-22,9.3556e-22,1.0324e-21,1.436e-21,1.4878e-21,1.5184e-21,1.9512e-21,2.2619e-21,2.2728e-21,3.0162e-21,3.0948e-21,3.5158e-21,3.5753e-21,3.6341e-21,8.6051e-21,1.9462e-20,2.0946e-20,2.6598e-20,3.2903e-20,3.8799e-20,4.7162e-20,5.9147e-20,8.7979e-20,1.0939e-19,1.5571e-19,2.4231e-19,2.5236e-19,2.7517e-19,2.9804e-19,4.5111e-19,4.5139e-19,1.2042e-18,1.2946e-18,1.3476e-18,1.8038e-18,1.8429e-18,3.2565e-18,4.0689e-18,4.4633e-18,5.4658e-18,6.2156e-18,7.7455e-18,8.2917e-18,1.3975e-17,1.9253e-17,5.2255e-17,6.8571e-17,7.5078e-17,8.8282e-17,1.3752e-16,1.5055e-16,1.6313e-16,2.3756e-16,3.3733e-16,3.8393e-16,4.2676e-16,6.2536e-16,1.0817e-15,1.9183e-15,2.8141e-15,3.0489e-15,6.2064e-15,7.9222e-15,8.875e-15,9.3332e-15,1.1441e-14,2.628e-14,2.6989e-14,3.1169e-14,3.9145e-14,4.0932e-14,5.658e-14,1.3689e-13,1.3848e-13,1.7726e-13,1.9364e-13,5.2586e-13,6.7426e-13,6.8667e-13,8.5658e-13,1.154e-12,1.1608e-12,1.189e-12,1.422e-12,1.4243e-12,1.6744e-12,1.7822e-12,4.3173e-12,6.3357e-12,6.4182e-12,9.8839e-12,1.1089e-11,1.3243e-11,1.4433e-11,1.5184e-11,1.606e-11,1.6355e-11,1.7172e-11,2.0882e-11,2.1362e-11,2.2384e-11,2.3258e-11,3.1019e-11,4.2863e-11,6.4753e-11,7.5564e-11,1.0456e-10,1.4983e-10,1.7417e-10,1.882e-10,4.3882e-10,4.8342e-10,5.1901e-10,5.9726e-10,7.1351e-10,8.3184e-10,9.4183e-10,9.6282e-10,9.7623e-10,1.1408e-09,1.7128e-09,1.7645e-09,2.0678e-09,2.6406e-09,3.02e-09,3.0865e-09,6.5868e-09,6.6395e-09,7.6982e-09,1.0262e-08,1.0811e-08,1.3119e-08,1.373e-08,1.8849e-08,2.3138e-08,3.6706e-08,3.711e-08,6.2375e-08,6.6148e-08,6.7397e-08,9.3904e-08,9.5895e-08,1.0797e-07,1.2614e-07,1.3239e-07,1.3732e-07,1.5853e-07,1.6234e-07,1.6487e-07,1.8465e-07,1.921e-07,1.9409e-07,2.131e-07,2.2037e-07,2.6516e-07,3.5941e-07,3.793e-07,3.8477e-07,4.4025e-07,4.6536e-07,5.8249e-07,8.5966e-07,9.6869e-07,1.1688e-06,1.2519e-06,1.5134e-06,1.8249e-06,1.8528e-06,1.8748e-06,1.8774e-06,1.9832e-06,1.9924e-06,2.3641e-06,2.5561e-06,2.9581e-06,2.9773e-06,3.0967e-06,3.9781e-06,4.0071e-06,4.5099e-06,5.1552e-06,6.5322e-06,6.7375e-06,7.358e-06,7.5043e-06,7.8861e-06,8.5678e-06,9.7225e-06,9.7559e-06,1.2958e-05,1.7813e-05,1.842e-05,1.9115e-05,1.9337e-05,2.334e-05,2.6182e-05,3.8441e-05,3.9214e-05,4.0816e-05,4.3659e-05,5.5943e-05,7.2172e-05,9.4953e-05,0.00010303,0.00010815,0.00012224,0.0001561,0.00017362,0.00019907,0.00024507,0.00029257,0.000302,0.0004222,0.00044098,0.00044803,0.0004838,0.00049875,0.00063444,0.00070252,0.00072342,0.00072558,0.00077145,0.00083754,0.00086991,0.00088469,0.0011842,0.0011846,0.0015317,0.002041,0.0026441,0.0033383,0.0036866,0.0037831,0.0040178,0.0042335,0.0047834,0.0048478,0.0061058,0.0064665,0.0072466,0.0083312,0.0090565,0.0091419,0.0097775,0.010225,0.011402,0.013373,0.013572,0.014541,0.016191,0.017648,0.017719,0.023674,0.024794,0.025348,0.026816,0.027607,0.028893,0.031046,0.031952,0.033252,0.035438,0.038443,0.041504,0.041825,0.045859,0.048685,0.051292,0.057646,0.060753,0.061915,0.066184,0.06645,0.068401,0.069276,0.081727,0.085189,0.086564,0.093065,0.097008,0.097617,0.10737,0.12815,0.13488,0.13845,0.14702,0.14778,0.15791,0.15905,0.1729,0.18142,0.1994,0.20108,0.20267,0.20356,0.2065,0.20891,0.21039,0.22642,0.22987,0.26425,0.27644,0.28469,0.288,0.31631,0.31682,0.32648,0.33106,0.35454,0.3553,0.35709,0.37515,0.38023,0.38204,0.38757,0.39477,0.40164,0.40523,0.4412,0.44248,0.4618,0.49131,0.51955,0.55935,0.55992,0.57416,0.59212,0.61586,0.61612,0.62433,0.66277,0.67164,0.67261,0.71702,0.7266,0.73209,0.74882,0.76513,0.79433,0.7988,0.81991,0.86408,0.86464,0.86804,0.87489,0.88016,0.88654,0.89387,0.95158,0.96329,0.97821,0.98685,0.98723,0.98806,0.99642,0.99767,0.99776,1,0.99364,0.99323,0.98884,0.9878,0.97324,0.9682,0.95579,0.94857,0.94001,0.93828,0.92723,0.9252,0.92423,0.89584,0.88664,0.88268,0.86943,0.86514,0.84485,0.84008,0.83033,0.80522,0.80498,0.79252,0.78826,0.78826,0.75989,0.75897,0.74701,0.73423,0.70592,0.67999,0.66119,0.6311,0.60316,0.56699,0.56552,0.5379,0.51161,0.49627,0.45594,0.44434,0.42116,0.40769,0.38024,0.37739,0.37155,0.35823,0.33118,0.3046,0.29104,0.27787,0.27115,0.27021,0.25831,0.24498,0.20708,0.19771,0.19268,0.18188,0.18181,0.17162,0.17038,0.16374,0.15854,0.14193,0.13964,0.12776,0.1174,0.088058,0.08326,0.081019,0.075376,0.070375,0.068546,0.065011,0.062565,0.059637,0.055047,0.055023,0.047511,0.045667,0.04529,0.04509,0.038656,0.038519,0.037918,0.03747,0.036332,0.034511,0.032945,0.026709,0.016741,0.014491,0.014306,0.014154,0.013673,0.013412,0.011143,0.0098409,0.0089806,0.008529,0.0076508,0.0069692,0.0068486,0.0059969,0.0055583,0.0050622,0.0043485,0.003548,0.0035018,0.0032658,0.0031107,0.0030432,0.0024021,0.0022497,0.0016622,0.0015265,0.001312,0.001209,0.0011773,0.0010175,0.00099843,0.00095778,0.00087429,0.00073347 1,3.0222e-24,5.0434e-24,5.1742e-24,6.0359e-24,6.7948e-24,7.9373e-24,1.0725e-23,2.1876e-23,3.4337e-23,3.6795e-23,5.2588e-23,5.5739e-23,7.0225e-23,1.2294e-22,1.4646e-22,1.6538e-22,2.7953e-22,3.0582e-22,3.3785e-22,4.7174e-22,4.8894e-22,4.9912e-22,6.4323e-22,7.4695e-22,7.5059e-22,9.9938e-22,1.0257e-21,1.167e-21,1.187e-21,1.2067e-21,2.8863e-21,6.5913e-21,7.0998e-21,9.0413e-21,1.1213e-20,1.3248e-20,1.6142e-20,2.0298e-20,3.0338e-20,3.7822e-20,5.4067e-20,8.4588e-20,8.8143e-20,9.621e-20,1.0431e-19,1.5868e-19,1.5879e-19,4.2878e-19,4.6136e-19,4.8051e-19,6.4552e-19,6.5968e-19,1.174e-18,1.471e-18,1.6155e-18,1.9835e-18,2.2592e-18,2.8232e-18,3.0249e-18,5.1323e-18,7.0998e-18,1.9521e-17,2.5707e-17,2.818e-17,3.3207e-17,5.203e-17,5.703e-17,6.1862e-17,9.0533e-17,1.2916e-16,1.4726e-16,1.6392e-16,2.4144e-16,4.2075e-16,7.5201e-16,1.109e-15,1.2029e-15,2.4729e-15,3.1674e-15,3.5539e-15,3.7401e-15,4.5977e-15,1.0687e-14,1.0979e-14,1.2706e-14,1.6009e-14,1.6751e-14,2.3263e-14,5.7011e-14,5.7686e-14,7.4108e-14,8.1063e-14,2.2343e-13,2.8756e-13,2.9293e-13,3.6664e-13,4.9618e-13,4.9915e-13,5.1149e-13,6.1339e-13,6.1439e-13,7.2404e-13,7.7142e-13,1.8945e-12,2.797e-12,2.8339e-12,4.3941e-12,4.9389e-12,5.9148e-12,6.4555e-12,6.7969e-12,7.1951e-12,7.3298e-12,7.7016e-12,9.3951e-12,9.6145e-12,1.0082e-11,1.0482e-11,1.4046e-11,1.9511e-11,2.9676e-11,3.4719e-11,4.8302e-11,6.9634e-11,8.115e-11,8.7799e-11,2.077e-10,2.2919e-10,2.4636e-10,2.842e-10,3.4056e-10,3.981e-10,4.5172e-10,4.6197e-10,4.6852e-10,5.4899e-10,8.3024e-10,8.5575e-10,1.0057e-09,1.2899e-09,1.4788e-09,1.5119e-09,3.2715e-09,3.2981e-09,3.8345e-09,5.1389e-09,5.419e-09,6.5998e-09,6.9131e-09,9.5471e-09,1.1766e-08,1.883e-08,1.9042e-08,3.2331e-08,3.4326e-08,3.4987e-08,4.9068e-08,5.0129e-08,5.6575e-08,6.6299e-08,6.9656e-08,7.2302e-08,8.3712e-08,8.5763e-08,8.7126e-08,9.7802e-08,1.0183e-07,1.0291e-07,1.132e-07,1.1715e-07,1.4149e-07,1.9299e-07,2.0389e-07,2.069e-07,2.3739e-07,2.5123e-07,3.1595e-07,4.7016e-07,5.3114e-07,6.4346e-07,6.9024e-07,8.3784e-07,1.0144e-06,1.0303e-06,1.0428e-06,1.0443e-06,1.1045e-06,1.1097e-06,1.3217e-06,1.4316e-06,1.6621e-06,1.6732e-06,1.7418e-06,2.2502e-06,2.267e-06,2.5583e-06,2.9333e-06,3.7371e-06,3.8573e-06,4.2212e-06,4.3071e-06,4.5315e-06,4.9327e-06,5.6141e-06,5.6339e-06,7.5332e-06,1.0435e-05,1.08e-05,1.1217e-05,1.1351e-05,1.3764e-05,1.5483e-05,2.295e-05,2.3423e-05,2.4404e-05,2.6149e-05,3.3718e-05,4.3785e-05,5.8018e-05,6.3087e-05,6.6307e-05,7.5193e-05,9.6653e-05,0.00010781,0.00012407,0.00015362,0.0001843,0.00019041,0.00026874,0.00028104,0.00028567,0.00030916,0.00031899,0.00040864,0.00045385,0.00046777,0.0004692,0.00049978,0.00054393,0.0005656,0.00057549,0.00077719,0.00077748,0.0010133,0.0013626,0.0017801,0.002265,0.0025096,0.0025776,0.0027431,0.0028955,0.0032854,0.0033311,0.0042296,0.0044886,0.0050506,0.0058359,0.0063634,0.0064257,0.0068895,0.007217,0.0080809,0.0095351,0.0096828,0.010401,0.011631,0.012721,0.012774,0.017268,0.01812,0.018542,0.019662,0.020267,0.021252,0.022905,0.023603,0.024606,0.026296,0.028628,0.031013,0.031264,0.034422,0.036643,0.038698,0.043731,0.046203,0.047129,0.050541,0.050754,0.052318,0.05302,0.063065,0.065874,0.066993,0.072293,0.075518,0.076018,0.084035,0.10128,0.1069,0.10989,0.1171,0.11773,0.12629,0.12725,0.13902,0.14631,0.16175,0.1632,0.16457,0.16534,0.16788,0.16997,0.17125,0.18517,0.18818,0.21837,0.22916,0.2365,0.23945,0.26479,0.26524,0.27395,0.27809,0.29939,0.30008,0.30171,0.31822,0.32288,0.32454,0.32963,0.33627,0.3426,0.34592,0.3794,0.3806,0.39874,0.42667,0.45363,0.49207,0.49262,0.5065,0.52409,0.54752,0.54778,0.55593,0.59442,0.60338,0.60436,0.64974,0.65965,0.66534,0.68279,0.69994,0.73103,0.73584,0.75871,0.80772,0.80836,0.81221,0.82,0.82604,0.83338,0.8419,0.91247,0.92804,0.94921,0.96272,0.96333,0.96473,0.98064,0.98369,0.98393,0.99364,1,0.99999,0.99932,0.99905,0.99283,0.99007,0.98253,0.97778,0.9719,0.97067,0.96269,0.96119,0.96047,0.93858,0.9312,0.92799,0.9171,0.91354,0.8964,0.89231,0.88389,0.86186,0.86165,0.85055,0.84673,0.84673,0.82099,0.82015,0.80915,0.79731,0.77078,0.74614,0.72809,0.69888,0.67143,0.63543,0.63396,0.60614,0.57939,0.56367,0.52195,0.50984,0.48551,0.47129,0.44209,0.43905,0.4328,0.4185,0.38925,0.36025,0.34536,0.33082,0.32338,0.32234,0.3091,0.2942,0.25144,0.24077,0.23502,0.22264,0.22256,0.21082,0.20939,0.2017,0.19567,0.1763,0.17362,0.15964,0.14739,0.11224,0.10643,0.10371,0.096834,0.090716,0.088473,0.084126,0.08111,0.077491,0.071799,0.071769,0.062394,0.06008,0.059607,0.059356,0.051238,0.051065,0.050303,0.049735,0.04829,0.045972,0.043974,0.035971,0.022979,0.020004,0.019758,0.019557,0.018917,0.01857,0.015537,0.013786,0.012623,0.012011,0.010817,0.0098864,0.0097214,0.0085527,0.0079484,0.0072627,0.0062716,0.0051525,0.0050876,0.0047559,0.0045373,0.0044421,0.0035337,0.0033166,0.0024743,0.0022783,0.0019675,0.0018176,0.0017713,0.0015379,0.0015098,0.0014502,0.0013274,0.0011195 1,2.9114e-24,4.8595e-24,4.9855e-24,5.8161e-24,6.5476e-24,7.649e-24,1.0337e-23,2.1089e-23,3.3107e-23,3.5477e-23,5.0712e-23,5.3751e-23,6.7726e-23,1.1858e-22,1.4128e-22,1.5955e-22,2.6972e-22,2.951e-22,3.2601e-22,4.5527e-22,4.7187e-22,4.8169e-22,6.2084e-22,7.2098e-22,7.2449e-22,9.6474e-22,9.9019e-22,1.1266e-21,1.1459e-21,1.165e-21,2.7874e-21,6.3673e-21,6.8586e-21,8.735e-21,1.0834e-20,1.2801e-20,1.5598e-20,1.9617e-20,2.9324e-20,3.6561e-20,5.227e-20,8.1792e-20,8.5231e-20,9.3034e-20,1.0087e-19,1.5347e-19,1.5357e-19,4.1486e-19,4.464e-19,4.6493e-19,6.2467e-19,6.3837e-19,1.1364e-18,1.424e-18,1.5639e-18,1.9203e-18,2.1873e-18,2.7336e-18,2.929e-18,4.9706e-18,6.877e-18,1.8916e-17,2.4914e-17,2.7311e-17,3.2185e-17,5.0439e-17,5.5288e-17,5.9974e-17,8.7784e-17,1.2526e-16,1.4282e-16,1.5898e-16,2.3421e-16,4.0823e-16,7.2983e-16,1.0765e-15,1.1676e-15,2.4012e-15,3.0759e-15,3.4514e-15,3.6323e-15,4.4656e-15,1.0383e-14,1.0668e-14,1.2346e-14,1.5558e-14,1.6279e-14,2.2611e-14,5.5436e-14,5.6093e-14,7.2069e-14,7.8836e-14,2.174e-13,2.7982e-13,2.8506e-13,3.5682e-13,4.8296e-13,4.8585e-13,4.9786e-13,5.9711e-13,5.9808e-13,7.0488e-13,7.5103e-13,1.8452e-12,2.7247e-12,2.7608e-12,4.2816e-12,4.8127e-12,5.7641e-12,6.2914e-12,6.6243e-12,7.0126e-12,7.1439e-12,7.5064e-12,9.158e-12,9.3719e-12,9.8281e-12,1.0218e-11,1.3694e-11,1.9026e-11,2.8944e-11,3.3865e-11,4.7123e-11,6.7946e-11,7.9189e-11,8.5682e-11,2.0278e-10,2.2378e-10,2.4055e-10,2.7751e-10,3.3259e-10,3.8882e-10,4.4122e-10,4.5123e-10,4.5763e-10,5.3628e-10,8.112e-10,8.3614e-10,9.8272e-10,1.2606e-09,1.4454e-09,1.4777e-09,3.1989e-09,3.225e-09,3.7498e-09,5.0263e-09,5.3003e-09,6.456e-09,6.7627e-09,9.3411e-09,1.1513e-08,1.8432e-08,1.8639e-08,3.1657e-08,3.3612e-08,3.4259e-08,4.8057e-08,4.9097e-08,5.5415e-08,6.4946e-08,6.8236e-08,7.083e-08,8.2015e-08,8.4025e-08,8.5361e-08,9.5828e-08,9.9778e-08,1.0083e-07,1.1093e-07,1.1479e-07,1.3867e-07,1.8918e-07,1.9987e-07,2.0282e-07,2.3274e-07,2.4631e-07,3.0981e-07,4.6114e-07,5.2099e-07,6.3125e-07,6.7718e-07,8.2209e-07,9.955e-07,1.0111e-06,1.0234e-06,1.0248e-06,1.0839e-06,1.0891e-06,1.2973e-06,1.4052e-06,1.6316e-06,1.6425e-06,1.7099e-06,2.2094e-06,2.2259e-06,2.5122e-06,2.8806e-06,3.6707e-06,3.7888e-06,4.1465e-06,4.2309e-06,4.4515e-06,4.846e-06,5.5159e-06,5.5354e-06,7.4031e-06,1.0258e-05,1.0616e-05,1.1027e-05,1.1158e-05,1.3532e-05,1.5224e-05,2.2573e-05,2.3038e-05,2.4004e-05,2.5722e-05,3.3173e-05,4.3086e-05,5.7106e-05,6.21e-05,6.5271e-05,7.4026e-05,9.5174e-05,0.00010616,0.0001222,0.00015133,0.00018158,0.0001876,0.00026485,0.00027699,0.00028156,0.00030473,0.00031443,0.00040289,0.00044751,0.00046124,0.00046265,0.00049283,0.00053641,0.0005578,0.00056757,0.00076671,0.00076699,0.00099991,0.001345,0.0017576,0.0022368,0.0024787,0.0025459,0.0027095,0.0028602,0.0032458,0.003291,0.0041797,0.0044359,0.004992,0.0057691,0.0062912,0.0063528,0.0068119,0.0071361,0.0079913,0.0094313,0.0095775,0.010289,0.011507,0.012587,0.012639,0.017092,0.017937,0.018355,0.019465,0.020065,0.021041,0.02268,0.023372,0.024367,0.026042,0.028355,0.030721,0.03097,0.034103,0.036306,0.038346,0.04334,0.045794,0.046713,0.0501,0.050311,0.051864,0.052561,0.062535,0.065325,0.066436,0.0717,0.074905,0.075401,0.083367,0.1005,0.10609,0.10906,0.11623,0.11686,0.12537,0.12633,0.13804,0.14528,0.16064,0.16209,0.16345,0.16422,0.16674,0.16882,0.1701,0.18395,0.18695,0.21701,0.22775,0.23506,0.238,0.26324,0.2637,0.27238,0.27649,0.29772,0.29841,0.30004,0.3165,0.32114,0.3228,0.32787,0.33449,0.34081,0.34412,0.3775,0.37871,0.39681,0.42467,0.45159,0.48997,0.49052,0.50438,0.52196,0.54536,0.54562,0.55377,0.59225,0.6012,0.60219,0.64758,0.65749,0.66319,0.68065,0.69782,0.72896,0.73377,0.75668,0.80583,0.80646,0.81033,0.81815,0.82421,0.83158,0.84013,0.91106,0.92675,0.9481,0.96176,0.96238,0.9638,0.97994,0.98305,0.98329,0.99323,0.99999,1,0.99945,0.9992,0.99325,0.99057,0.98318,0.97852,0.97272,0.97152,0.96364,0.96216,0.96145,0.93978,0.93246,0.92927,0.91847,0.91493,0.8979,0.89383,0.88547,0.86354,0.86333,0.85228,0.84848,0.84847,0.82283,0.822,0.81103,0.79923,0.77277,0.74819,0.73017,0.701,0.67358,0.6376,0.63613,0.60831,0.58156,0.56584,0.52408,0.51196,0.4876,0.47337,0.44412,0.44107,0.43481,0.42048,0.39117,0.3621,0.34716,0.33259,0.32512,0.32408,0.3108,0.29585,0.25294,0.24223,0.23646,0.22403,0.22395,0.21215,0.21072,0.203,0.19694,0.17749,0.17479,0.16074,0.14843,0.11309,0.10724,0.1045,0.097587,0.091431,0.089174,0.0848,0.081765,0.078122,0.072392,0.072362,0.062923,0.060593,0.060116,0.059863,0.051688,0.051513,0.050746,0.050174,0.048718,0.046383,0.04437,0.036305,0.023207,0.020205,0.019957,0.019754,0.019109,0.018758,0.015699,0.013931,0.012758,0.01214,0.010934,0.0099947,0.0098281,0.0086479,0.0080375,0.0073449,0.0063436,0.0052128,0.0051472,0.004812,0.004591,0.0044948,0.0035765,0.003357,0.0025052,0.002307,0.0019925,0.0018409,0.0017941,0.0015578,0.0015295,0.0014691,0.0013449,0.0011344 1,2.0588e-24,3.442e-24,3.5315e-24,4.122e-24,4.6421e-24,5.4257e-24,7.3395e-24,1.5009e-23,2.3596e-23,2.5291e-23,3.6193e-23,3.837e-23,4.8383e-23,8.4872e-23,1.0118e-22,1.143e-22,1.9357e-22,2.1184e-22,2.3411e-22,3.273e-22,3.3928e-22,3.4637e-22,4.468e-22,5.1913e-22,5.2167e-22,6.9533e-22,7.1373e-22,8.1243e-22,8.2639e-22,8.4019e-22,2.0162e-21,4.6188e-21,4.9765e-21,6.3433e-21,7.8734e-21,9.3085e-21,1.135e-20,1.4286e-20,2.1385e-20,2.6683e-20,3.8196e-20,5.9863e-20,6.2389e-20,6.8122e-20,7.388e-20,1.1258e-19,1.1265e-19,3.0541e-19,3.2871e-19,3.4241e-19,4.6054e-19,4.7068e-19,8.3964e-19,1.053e-18,1.1569e-18,1.4215e-18,1.62e-18,2.0263e-18,2.1717e-18,3.6926e-18,5.1151e-18,1.4123e-17,1.8621e-17,2.042e-17,2.4079e-17,3.78e-17,4.1449e-17,4.4976e-17,6.5929e-17,9.4203e-17,1.0746e-16,1.1967e-16,1.7657e-16,3.0844e-16,5.5269e-16,8.1649e-16,8.8589e-16,1.8271e-15,2.3428e-15,2.6302e-15,2.7685e-15,3.4066e-15,7.9485e-15,8.1671e-15,9.4578e-15,1.193e-14,1.2485e-14,1.7365e-14,4.2736e-14,4.3244e-14,5.562e-14,6.0866e-14,1.6858e-13,2.1723e-13,2.2131e-13,2.7729e-13,3.7582e-13,3.7808e-13,3.8747e-13,4.6508e-13,4.6584e-13,5.4943e-13,5.8557e-13,1.4445e-12,2.1368e-12,2.1652e-12,3.3646e-12,3.784e-12,4.5359e-12,4.9528e-12,5.2161e-12,5.5234e-12,5.6273e-12,5.9142e-12,7.2221e-12,7.3916e-12,7.7531e-12,8.0625e-12,1.082e-11,1.5056e-11,2.295e-11,2.6872e-11,3.7451e-11,5.4096e-11,6.3095e-11,6.8294e-11,1.6232e-10,1.7921e-10,1.9271e-10,2.2249e-10,2.6688e-10,3.1225e-10,3.5455e-10,3.6264e-10,3.6781e-10,4.3137e-10,6.539e-10,6.741e-10,7.9294e-10,1.0185e-09,1.1686e-09,1.1949e-09,2.5971e-09,2.6184e-09,3.0469e-09,4.0906e-09,4.3149e-09,5.2613e-09,5.5126e-09,7.6278e-09,9.4124e-09,1.5107e-08,1.5278e-08,2.6026e-08,2.7643e-08,2.8178e-08,3.9603e-08,4.0466e-08,4.5704e-08,5.3614e-08,5.6346e-08,5.8501e-08,6.7797e-08,6.9468e-08,7.058e-08,7.9287e-08,8.2575e-08,8.3454e-08,9.186e-08,9.5081e-08,1.1498e-07,1.5715e-07,1.6609e-07,1.6856e-07,1.9358e-07,2.0494e-07,2.5813e-07,3.8515e-07,4.3547e-07,5.2825e-07,5.6694e-07,6.8909e-07,8.3546e-07,8.4864e-07,8.5901e-07,8.6022e-07,9.1017e-07,9.1452e-07,1.0906e-06,1.1818e-06,1.3737e-06,1.3829e-06,1.44e-06,1.8637e-06,1.8777e-06,2.1209e-06,2.4342e-06,3.1067e-06,3.2074e-06,3.5123e-06,3.5843e-06,3.7725e-06,4.1091e-06,4.6812e-06,4.6978e-06,6.2954e-06,8.7424e-06,9.0501e-06,9.4028e-06,9.5152e-06,1.1555e-05,1.3011e-05,1.9346e-05,1.9747e-05,2.0582e-05,2.2065e-05,2.851e-05,3.7101e-05,4.9277e-05,5.362e-05,5.638e-05,6.4003e-05,8.2446e-05,9.2045e-05,0.00010606,0.00013157,0.0001581,0.00016338,0.00023131,0.000242,0.00024602,0.00026644,0.000275,0.00035309,0.00039254,0.00040469,0.00040594,0.00043265,0.00047125,0.0004902,0.00049886,0.00067566,0.00067591,0.00088324,0.0011912,0.0015605,0.0019905,0.0022079,0.0022684,0.0024156,0.0025513,0.0028988,0.0029396,0.0037423,0.0039741,0.0044776,0.0051824,0.0056564,0.0057124,0.0061297,0.0064246,0.0072032,0.0085163,0.0086498,0.0092999,0.010413,0.011402,0.01145,0.015538,0.016315,0.016699,0.017722,0.018274,0.019175,0.020687,0.021326,0.022244,0.023793,0.025934,0.028126,0.028356,0.031263,0.03331,0.035206,0.039855,0.042143,0.043001,0.046162,0.046359,0.047809,0.048461,0.057796,0.060413,0.061455,0.066397,0.069408,0.069875,0.077372,0.093539,0.098824,0.10164,0.10842,0.10903,0.1171,0.11801,0.12913,0.13602,0.15067,0.15205,0.15335,0.15408,0.15649,0.15848,0.15969,0.17294,0.17581,0.20465,0.21498,0.22202,0.22484,0.24919,0.24963,0.25802,0.262,0.28256,0.28322,0.2848,0.30077,0.30528,0.30689,0.31182,0.31826,0.32441,0.32763,0.36019,0.36137,0.37907,0.40637,0.43282,0.47064,0.47119,0.48488,0.50227,0.52548,0.52573,0.53382,0.57212,0.58106,0.58204,0.62748,0.63743,0.64316,0.66073,0.67805,0.70955,0.71443,0.73773,0.78799,0.78864,0.79261,0.80066,0.8069,0.81451,0.82335,0.89759,0.9143,0.93736,0.95235,0.95304,0.95461,0.97287,0.97648,0.97677,0.98884,0.99932,0.99945,1,0.99998,0.99655,0.99456,0.98867,0.98477,0.97981,0.97877,0.97186,0.97054,0.96991,0.95032,0.9436,0.94065,0.93063,0.92733,0.91135,0.90752,0.8996,0.87874,0.87854,0.86797,0.86432,0.86431,0.83962,0.83882,0.82821,0.81676,0.79099,0.76694,0.74926,0.72052,0.69339,0.65766,0.6562,0.62846,0.6017,0.58594,0.54396,0.53174,0.50714,0.49273,0.46307,0.45998,0.45362,0.43904,0.40917,0.37946,0.36416,0.34921,0.34154,0.34047,0.32682,0.31143,0.26713,0.25603,0.25004,0.23715,0.23707,0.22481,0.22332,0.21529,0.20899,0.18869,0.18588,0.17119,0.15829,0.12114,0.11498,0.11209,0.10478,0.09827,0.095881,0.091246,0.088028,0.084163,0.078077,0.078045,0.068,0.065518,0.065009,0.064739,0.056012,0.055825,0.055004,0.054393,0.052835,0.050337,0.048181,0.039526,0.025408,0.022159,0.02189,0.02167,0.02097,0.02059,0.017267,0.015344,0.014065,0.013392,0.012076,0.011049,0.010867,0.0095753,0.0089065,0.0081468,0.0070471,0.0058027,0.0057304,0.0053609,0.0051172,0.005011,0.0039964,0.0037534,0.002809,0.0025888,0.002239,0.0020702,0.002018,0.0017546,0.0017229,0.0016556,0.0015168,0.0012814 1,1.9162e-24,3.2047e-24,3.2882e-24,3.8383e-24,4.323e-24,5.0533e-24,6.8371e-24,1.3988e-23,2.1997e-23,2.3579e-23,3.3752e-23,3.5783e-23,4.5127e-23,7.9192e-23,9.4418e-23,1.0667e-22,1.8072e-22,1.9779e-22,2.186e-22,3.0568e-22,3.1688e-22,3.235e-22,4.1737e-22,4.8499e-22,4.8737e-22,6.4973e-22,6.6694e-22,7.5924e-22,7.7229e-22,7.852e-22,1.8854e-21,4.3217e-21,4.6566e-21,5.9366e-21,7.3697e-21,8.714e-21,1.0627e-20,1.3377e-20,2.0031e-20,2.4998e-20,3.5793e-20,5.6116e-20,5.8485e-20,6.3864e-20,6.9266e-20,1.0558e-19,1.0565e-19,2.8663e-19,3.0852e-19,3.2139e-19,4.3236e-19,4.4189e-19,7.8862e-19,9.8919e-19,1.0868e-18,1.3357e-18,1.5223e-18,1.9044e-18,2.0412e-18,3.4722e-18,4.8109e-18,1.3294e-17,1.7531e-17,1.9226e-17,2.2675e-17,3.5608e-17,3.9047e-17,4.2373e-17,6.2132e-17,8.8803e-17,1.0131e-16,1.1284e-16,1.6653e-16,2.9104e-16,5.2176e-16,7.7104e-16,8.3663e-16,1.7266e-15,2.2144e-15,2.4862e-15,2.6171e-15,3.2208e-15,7.5204e-15,7.7274e-15,8.9497e-15,1.1291e-14,1.1817e-14,1.6441e-14,4.0492e-14,4.0975e-14,5.2713e-14,5.7689e-14,1.5993e-13,2.0612e-13,2.1e-13,2.6318e-13,3.5679e-13,3.5893e-13,3.6786e-13,4.4161e-13,4.4233e-13,5.2178e-13,5.5613e-13,1.373e-12,2.0318e-12,2.0588e-12,3.2007e-12,3.6001e-12,4.3161e-12,4.7132e-12,4.964e-12,5.2567e-12,5.3557e-12,5.6291e-12,6.8752e-12,7.0367e-12,7.3813e-12,7.6761e-12,1.0304e-11,1.4343e-11,2.1872e-11,2.5614e-11,3.571e-11,5.16e-11,6.0192e-11,6.5157e-11,1.55e-10,1.7115e-10,1.8406e-10,2.1252e-10,2.5498e-10,2.9837e-10,3.3884e-10,3.4658e-10,3.5152e-10,4.1233e-10,6.2532e-10,6.4466e-10,7.5843e-10,9.744e-10,1.1182e-09,1.1434e-09,2.4873e-09,2.5077e-09,2.9186e-09,3.9196e-09,4.1347e-09,5.0427e-09,5.2838e-09,7.3139e-09,9.0272e-09,1.4497e-08,1.4661e-08,2.4991e-08,2.6544e-08,2.7059e-08,3.8046e-08,3.8875e-08,4.3914e-08,5.1524e-08,5.4153e-08,5.6226e-08,6.5172e-08,6.6781e-08,6.785e-08,7.6232e-08,7.9397e-08,8.0243e-08,8.8336e-08,9.1437e-08,1.106e-07,1.5122e-07,1.5984e-07,1.6221e-07,1.8632e-07,1.9727e-07,2.4854e-07,3.7103e-07,4.1957e-07,5.0909e-07,5.4642e-07,6.6432e-07,8.0563e-07,8.1836e-07,8.2836e-07,8.2953e-07,8.7776e-07,8.8197e-07,1.052e-06,1.1402e-06,1.3255e-06,1.3344e-06,1.3895e-06,1.7991e-06,1.8126e-06,2.0477e-06,2.3506e-06,3.001e-06,3.0984e-06,3.3934e-06,3.463e-06,3.6451e-06,3.9708e-06,4.5245e-06,4.5406e-06,6.0871e-06,8.4571e-06,8.7552e-06,9.0969e-06,9.2058e-06,1.1183e-05,1.2594e-05,1.8736e-05,1.9126e-05,1.9935e-05,2.1374e-05,2.7628e-05,3.5967e-05,4.7791e-05,5.201e-05,5.4691e-05,6.2098e-05,8.0024e-05,8.9357e-05,0.00010299,0.0001278,0.00015362,0.00015876,0.00022489,0.00023531,0.00023922,0.00025911,0.00026745,0.00034354,0.000382,0.00039384,0.00039506,0.0004211,0.00045874,0.00047722,0.00048567,0.00065814,0.00065839,0.00086076,0.0011616,0.0015224,0.0019428,0.0021555,0.0022146,0.0023586,0.0024914,0.0028315,0.0028714,0.0036572,0.0038842,0.0043775,0.005068,0.0055327,0.0055876,0.0059967,0.0062858,0.0070493,0.0083375,0.0084685,0.0091063,0.010199,0.01117,0.011217,0.015233,0.015996,0.016374,0.017379,0.017922,0.018807,0.020295,0.020923,0.021826,0.02335,0.025456,0.027613,0.027841,0.030702,0.032718,0.034585,0.039165,0.04142,0.042265,0.045381,0.045575,0.047005,0.047648,0.056855,0.059436,0.060464,0.065342,0.068314,0.068775,0.076177,0.092149,0.097373,0.10015,0.10686,0.10746,0.11544,0.11634,0.12735,0.13417,0.14867,0.15003,0.15132,0.15205,0.15443,0.1564,0.1576,0.17073,0.17357,0.20216,0.2124,0.21938,0.22218,0.24635,0.24679,0.25511,0.25907,0.27948,0.28014,0.28171,0.29758,0.30206,0.30366,0.30856,0.31496,0.32108,0.32428,0.35667,0.35784,0.37545,0.40264,0.42898,0.46668,0.46722,0.48087,0.49823,0.52138,0.52164,0.52972,0.56797,0.5769,0.57789,0.62332,0.63327,0.639,0.6566,0.67394,0.70551,0.7104,0.73377,0.78424,0.7849,0.78889,0.79698,0.80326,0.81092,0.81982,0.89471,0.91163,0.93502,0.95029,0.95099,0.9526,0.97128,0.975,0.9753,0.9878,0.99905,0.9992,0.99998,1,0.9971,0.99525,0.98968,0.98594,0.98115,0.98014,0.97343,0.97215,0.97154,0.95239,0.94579,0.94289,0.93303,0.92978,0.91403,0.91025,0.90243,0.8818,0.8816,0.87112,0.86751,0.86751,0.84302,0.84222,0.83169,0.82032,0.7947,0.77077,0.75316,0.72452,0.69746,0.6618,0.66033,0.63262,0.60587,0.5901,0.54808,0.53585,0.5112,0.49676,0.46703,0.46392,0.45754,0.44292,0.41293,0.38309,0.36772,0.3527,0.34499,0.34391,0.33018,0.31471,0.27012,0.25894,0.25291,0.23993,0.23984,0.22749,0.22599,0.21789,0.21154,0.19107,0.18823,0.17341,0.16039,0.12286,0.11663,0.11371,0.10632,0.099732,0.097315,0.092626,0.089369,0.085457,0.079295,0.079263,0.06909,0.066575,0.06606,0.065787,0.056942,0.056753,0.055921,0.055301,0.053722,0.051188,0.049002,0.040222,0.025885,0.022582,0.022309,0.022085,0.021374,0.020987,0.017608,0.015651,0.01435,0.013664,0.012325,0.011279,0.011094,0.0097777,0.0090963,0.0083221,0.0072009,0.0059319,0.0058581,0.0054811,0.0052325,0.0051242,0.0040886,0.0038405,0.0028759,0.0026508,0.0022933,0.0021207,0.0020674,0.001798,0.0017656,0.0016967,0.0015547,0.0013139 1,8.6122e-25,1.4457e-24,1.4836e-24,1.7338e-24,1.9545e-24,2.2873e-24,3.1016e-24,6.3792e-24,1.0066e-23,1.0795e-23,1.5494e-23,1.6434e-23,2.0762e-23,3.6588e-23,4.3681e-23,4.9397e-23,8.4019e-23,9.202e-23,1.0178e-22,1.4269e-22,1.4796e-22,1.5107e-22,1.9529e-22,2.2719e-22,2.2831e-22,3.0505e-22,3.132e-22,3.569e-22,3.6308e-22,3.692e-22,8.9257e-22,2.0593e-21,2.2202e-21,2.8358e-21,3.5264e-21,4.1752e-21,5.0998e-21,6.4315e-21,9.6615e-21,1.2079e-20,1.7345e-20,2.7292e-20,2.8454e-20,3.1093e-20,3.3745e-20,5.1613e-20,5.1647e-20,1.4127e-19,1.5215e-19,1.5855e-19,2.1383e-19,2.1858e-19,3.9197e-19,4.9259e-19,5.4164e-19,6.6682e-19,7.6084e-19,9.5359e-19,1.0227e-18,1.7475e-18,2.428e-18,6.7681e-18,8.9466e-18,9.8196e-18,1.1597e-17,1.8284e-17,2.0067e-17,2.1791e-17,3.2061e-17,4.5969e-17,5.2506e-17,5.8533e-17,8.6689e-17,1.5226e-16,2.7441e-16,4.0697e-16,4.4191e-16,9.1809e-16,1.1802e-15,1.3265e-15,1.397e-15,1.7226e-15,4.0543e-15,4.167e-15,4.8328e-15,6.1106e-15,6.398e-15,8.9295e-15,2.2185e-14,2.2451e-14,2.8954e-14,3.1715e-14,8.8808e-14,1.1475e-13,1.1693e-13,1.4687e-13,1.9973e-13,2.0094e-13,2.0598e-13,2.4774e-13,2.4815e-13,2.9321e-13,3.1272e-13,7.7923e-13,1.1578e-12,1.1734e-12,1.8325e-12,2.0638e-12,2.479e-12,2.7095e-12,2.8553e-12,3.0255e-12,3.083e-12,3.2421e-12,3.9683e-12,4.0625e-12,4.2636e-12,4.4357e-12,5.973e-12,8.3438e-12,1.2782e-11,1.4995e-11,2.0981e-11,3.0441e-11,3.5571e-11,3.8539e-11,9.2575e-11,1.0234e-10,1.1015e-10,1.2739e-10,1.5316e-10,1.7954e-10,2.042e-10,2.0892e-10,2.1193e-10,2.4905e-10,3.7953e-10,3.9141e-10,4.6137e-10,5.945e-10,6.8334e-10,6.9894e-10,1.5347e-09,1.5474e-09,1.8043e-09,2.4318e-09,2.567e-09,3.1384e-09,3.2903e-09,4.5729e-09,5.659e-09,9.1424e-09,9.2473e-09,1.587e-08,1.687e-08,1.7202e-08,2.4293e-08,2.4829e-08,2.8092e-08,3.303e-08,3.4738e-08,3.6086e-08,4.1909e-08,4.2957e-08,4.3654e-08,4.9123e-08,5.119e-08,5.1743e-08,5.7035e-08,5.9064e-08,7.1626e-08,9.8349e-08,1.0403e-07,1.056e-07,1.2152e-07,1.2876e-07,1.6275e-07,2.4431e-07,2.7675e-07,3.3672e-07,3.6177e-07,4.4105e-07,5.3635e-07,5.4495e-07,5.5171e-07,5.525e-07,5.851e-07,5.8794e-07,7.0308e-07,7.629e-07,8.8884e-07,8.9489e-07,9.3246e-07,1.2119e-06,1.2211e-06,1.382e-06,1.5897e-06,2.0371e-06,2.1042e-06,2.3077e-06,2.3558e-06,2.4816e-06,2.7069e-06,3.0905e-06,3.1016e-06,4.177e-06,5.8332e-06,6.0421e-06,6.2817e-06,6.3582e-06,7.7474e-06,8.7415e-06,1.3089e-05,1.3366e-05,1.3941e-05,1.4964e-05,1.9425e-05,2.54e-05,3.3914e-05,3.6961e-05,3.89e-05,4.4265e-05,5.7296e-05,6.4103e-05,7.4069e-05,9.2266e-05,0.00011128,0.00011507,0.00016405,0.00017179,0.00017471,0.00018952,0.00019573,0.00025261,0.00028146,0.00029036,0.00029127,0.00031086,0.0003392,0.00035314,0.00035952,0.00049012,0.0004903,0.00064448,0.00087506,0.0011534,0.0014796,0.0016453,0.0016914,0.0018039,0.0019077,0.0021743,0.0022056,0.0028246,0.0030041,0.0033949,0.0039438,0.0043143,0.0043581,0.0046851,0.0049165,0.0055289,0.0065661,0.0066719,0.0071873,0.0080726,0.0088614,0.0088999,0.012182,0.012809,0.01312,0.013948,0.014395,0.015126,0.016356,0.016876,0.017625,0.018891,0.020645,0.022446,0.022636,0.025033,0.026725,0.028297,0.032162,0.034071,0.034787,0.037433,0.037598,0.038815,0.039362,0.047229,0.049443,0.050326,0.054523,0.057086,0.057484,0.063888,0.077788,0.082357,0.084793,0.090685,0.091207,0.098239,0.099033,0.10877,0.11482,0.12773,0.12895,0.1301,0.13075,0.13288,0.13464,0.13572,0.1475,0.15005,0.17588,0.18519,0.19154,0.1941,0.2162,0.2166,0.22425,0.22789,0.24673,0.24734,0.24879,0.2635,0.26767,0.26915,0.27372,0.27968,0.28539,0.28838,0.31875,0.31985,0.33646,0.36223,0.38734,0.42352,0.42404,0.43722,0.45402,0.47654,0.4768,0.48468,0.52221,0.53101,0.53199,0.5771,0.58705,0.59279,0.61047,0.62797,0.66006,0.66506,0.68904,0.74148,0.74217,0.74636,0.75488,0.76151,0.76962,0.77908,0.8606,0.87965,0.90661,0.92474,0.92559,0.92753,0.9508,0.95563,0.95602,0.97324,0.99283,0.99325,0.99655,0.9971,1,0.99977,0.9977,0.99577,0.99296,0.99233,0.98793,0.98706,0.98663,0.97251,0.96736,0.96507,0.95711,0.95445,0.94132,0.93812,0.93144,0.91352,0.91334,0.90409,0.90088,0.90088,0.87888,0.87815,0.86856,0.85814,0.83443,0.81201,0.79535,0.76802,0.74194,0.70721,0.70578,0.67853,0.65203,0.63632,0.59415,0.5818,0.55679,0.54207,0.51161,0.50842,0.50185,0.48677,0.45568,0.42454,0.40841,0.3926,0.38446,0.38332,0.3688,0.35237,0.3047,0.29267,0.28617,0.27213,0.27203,0.25864,0.257,0.24819,0.24126,0.21887,0.21575,0.19944,0.18504,0.14321,0.13621,0.13292,0.12458,0.11713,0.11439,0.10907,0.10537,0.10091,0.093873,0.093837,0.082169,0.079275,0.078681,0.078366,0.068147,0.067928,0.066963,0.066244,0.064412,0.061467,0.058922,0.048657,0.031717,0.027777,0.02745,0.027182,0.026331,0.025867,0.021806,0.019443,0.017868,0.017036,0.015407,0.014132,0.013905,0.012295,0.011458,0.010506,0.0091231,0.0075504,0.0074588,0.0069898,0.00668,0.0065449,0.0052497,0.0049382,0.0037221,0.0034371,0.002983,0.0027632,0.0026952,0.0023511,0.0023097,0.0022214,0.0020393,0.0017295 1,6.8792e-25,1.156e-24,1.1864e-24,1.3869e-24,1.5638e-24,1.8306e-24,2.4839e-24,5.1164e-24,8.081e-24,8.6678e-24,1.245e-23,1.3207e-23,1.6693e-23,2.9453e-23,3.5175e-23,3.9788e-23,6.7751e-23,7.4217e-23,8.2105e-23,1.1519e-22,1.1945e-22,1.2197e-22,1.5776e-22,1.8359e-22,1.845e-22,2.4667e-22,2.5326e-22,2.8868e-22,2.9369e-22,2.9865e-22,7.234e-22,1.672e-21,1.8029e-21,2.3041e-21,2.8666e-21,3.3953e-21,4.149e-21,5.2351e-21,7.8713e-21,9.8454e-21,1.415e-20,2.2287e-20,2.3238e-20,2.5398e-20,2.7569e-20,4.2208e-20,4.2236e-20,1.1579e-19,1.2474e-19,1.2999e-19,1.7543e-19,1.7934e-19,3.2203e-19,4.0492e-19,4.4533e-19,5.4852e-19,6.2605e-19,7.8508e-19,8.4208e-19,1.4407e-18,2.0033e-18,5.5979e-18,7.4048e-18,8.1292e-18,9.6048e-18,1.5159e-17,1.6641e-17,1.8075e-17,2.6618e-17,3.8198e-17,4.3645e-17,4.8668e-17,7.2148e-17,1.269e-16,2.2904e-16,3.4002e-16,3.693e-16,7.6866e-16,9.8873e-16,1.1116e-15,1.1709e-15,1.4445e-15,3.4075e-15,3.5024e-15,4.0637e-15,5.1413e-15,5.3838e-15,7.5205e-15,1.873e-14,1.8955e-14,2.4462e-14,2.6802e-14,7.5261e-14,9.7315e-14,9.9168e-14,1.2464e-13,1.6964e-13,1.7067e-13,1.7497e-13,2.1055e-13,2.109e-13,2.4931e-13,2.6594e-13,6.6439e-13,9.8828e-13,1.0016e-12,1.5663e-12,1.7645e-12,2.1207e-12,2.3185e-12,2.4436e-12,2.5897e-12,2.6392e-12,2.7757e-12,3.3994e-12,3.4804e-12,3.6532e-12,3.8011e-12,5.123e-12,7.1635e-12,1.0988e-11,1.2896e-11,1.8064e-11,2.6238e-11,3.0674e-11,3.3241e-11,8.0067e-11,8.8537e-11,9.5316e-11,1.1029e-10,1.3267e-10,1.5561e-10,1.7705e-10,1.8115e-10,1.8378e-10,2.1608e-10,3.2973e-10,3.4009e-10,4.0109e-10,5.1725e-10,5.9481e-10,6.0844e-10,1.3395e-09,1.3506e-09,1.5756e-09,2.1258e-09,2.2443e-09,2.7458e-09,2.8792e-09,4.006e-09,4.9611e-09,8.0283e-09,8.1207e-09,1.3963e-08,1.4846e-08,1.5139e-08,2.1407e-08,2.1881e-08,2.4768e-08,2.9138e-08,3.065e-08,3.1844e-08,3.7003e-08,3.7932e-08,3.855e-08,4.3398e-08,4.5231e-08,4.5721e-08,5.0415e-08,5.2216e-08,6.3366e-08,8.7111e-08,9.2162e-08,9.3554e-08,1.0772e-07,1.1416e-07,1.4442e-07,2.1714e-07,2.461e-07,2.9965e-07,3.2203e-07,3.9292e-07,4.7818e-07,4.8588e-07,4.9193e-07,4.9263e-07,5.2182e-07,5.2437e-07,6.2751e-07,6.8111e-07,7.9404e-07,7.9947e-07,8.3317e-07,1.084e-06,1.0923e-06,1.2368e-06,1.4235e-06,1.826e-06,1.8864e-06,2.0697e-06,2.113e-06,2.2263e-06,2.4293e-06,2.7751e-06,2.7852e-06,3.7556e-06,5.2523e-06,5.4412e-06,5.658e-06,5.7271e-06,6.9845e-06,7.8849e-06,1.1828e-05,1.2079e-05,1.2601e-05,1.353e-05,1.7584e-05,2.3022e-05,3.078e-05,3.3559e-05,3.5328e-05,4.0226e-05,5.2132e-05,5.8356e-05,6.7476e-05,8.4145e-05,0.00010158,0.00010506,0.00015005,0.00015716,0.00015984,0.00017346,0.00017918,0.00023156,0.00025815,0.00026636,0.0002672,0.00028527,0.00031142,0.00032429,0.00033017,0.00045087,0.00045104,0.00059376,0.00080759,0.0010662,0.0013697,0.001524,0.001567,0.0016719,0.0017687,0.0020174,0.0020467,0.002625,0.0027929,0.0031586,0.0036729,0.0040203,0.0040614,0.0043681,0.0045853,0.0051605,0.0061356,0.006235,0.0067201,0.0075538,0.0082973,0.0083336,0.011432,0.012025,0.012319,0.013102,0.013525,0.014217,0.015382,0.015875,0.016585,0.017785,0.01945,0.02116,0.021341,0.023619,0.025229,0.026725,0.030407,0.032226,0.03291,0.035434,0.035592,0.036753,0.037276,0.044795,0.046914,0.047759,0.051778,0.054234,0.054615,0.060758,0.074112,0.078508,0.080852,0.086527,0.08703,0.093808,0.094574,0.10397,0.10981,0.1223,0.12348,0.12459,0.12522,0.12728,0.12898,0.13003,0.14144,0.14392,0.16899,0.17803,0.18421,0.1867,0.20824,0.20863,0.21609,0.21963,0.23803,0.23863,0.24004,0.25443,0.2585,0.25996,0.26442,0.27026,0.27585,0.27878,0.30857,0.30965,0.32596,0.35131,0.37604,0.41175,0.41227,0.42529,0.44192,0.46423,0.46448,0.47229,0.50955,0.51831,0.51928,0.56421,0.57414,0.57987,0.59754,0.61505,0.64721,0.65222,0.67632,0.72919,0.72988,0.73412,0.74274,0.74945,0.75766,0.76725,0.85041,0.87001,0.89789,0.91676,0.91765,0.91968,0.94417,0.9493,0.94971,0.9682,0.99007,0.99057,0.99456,0.99525,0.99977,1,0.99892,0.9975,0.99526,0.99474,0.991,0.99024,0.98986,0.9772,0.97247,0.97035,0.96296,0.96047,0.94811,0.94508,0.93874,0.92163,0.92146,0.91258,0.90949,0.90949,0.88825,0.88755,0.87825,0.86813,0.84501,0.82307,0.80673,0.77983,0.75409,0.71971,0.71829,0.69123,0.66486,0.64921,0.60708,0.59472,0.56965,0.55489,0.52428,0.52107,0.51446,0.49927,0.46792,0.43645,0.42014,0.40412,0.39587,0.39472,0.37999,0.36331,0.31481,0.30255,0.29592,0.28159,0.28149,0.26781,0.26613,0.25713,0.25004,0.2271,0.22391,0.20717,0.19239,0.14932,0.1421,0.1387,0.13009,0.12239,0.11956,0.11405,0.11022,0.1056,0.098307,0.098269,0.086161,0.083154,0.082538,0.08221,0.071583,0.071355,0.070351,0.069602,0.067694,0.064627,0.061974,0.051264,0.033537,0.029402,0.029058,0.028777,0.027883,0.027396,0.023125,0.020638,0.018978,0.0181,0.016382,0.015035,0.014796,0.013094,0.01221,0.011202,0.009737,0.008069,0.0079717,0.0074738,0.0071447,0.0070012,0.0056239,0.0052923,0.0039963,0.0036922,0.0032073,0.0029723,0.0028997,0.0025315,0.0024872,0.0023928,0.0021978,0.0018657 1,4.2075e-25,7.0868e-25,7.2739e-25,8.5091e-25,9.5995e-25,1.1245e-24,1.5279e-24,3.1574e-24,4.9971e-24,5.3617e-24,7.7139e-24,8.185e-24,1.0356e-23,1.832e-23,2.1897e-23,2.4783e-23,4.2304e-23,4.6361e-23,5.1312e-23,7.2102e-23,7.4782e-23,7.6367e-23,9.8893e-23,1.1517e-22,1.1574e-22,1.5494e-22,1.5911e-22,1.8147e-22,1.8463e-22,1.8777e-22,4.567e-22,1.0598e-21,1.1432e-21,1.4627e-21,1.8217e-21,2.1594e-21,2.6412e-21,3.3364e-21,5.0263e-21,6.2937e-21,9.061e-21,1.4303e-20,1.4917e-20,1.6311e-20,1.7712e-20,2.7174e-20,2.7192e-20,7.4924e-20,8.0738e-20,8.4158e-20,1.1374e-19,1.1629e-19,2.0944e-19,2.6365e-19,2.901e-19,3.577e-19,4.0853e-19,5.1289e-19,5.5033e-19,9.4415e-19,1.3151e-18,3.6944e-18,4.894e-18,5.3753e-18,6.3566e-18,1.0057e-17,1.1045e-17,1.2002e-17,1.7711e-17,2.5466e-17,2.9118e-17,3.2488e-17,4.8264e-17,8.5152e-17,1.5419e-16,2.2939e-16,2.4926e-16,5.2092e-16,6.71e-16,7.5489e-16,7.9536e-16,9.8241e-16,2.3287e-15,2.3939e-15,2.7799e-15,3.5219e-15,3.6889e-15,5.1629e-15,1.2926e-14,1.3083e-14,1.6909e-14,1.8536e-14,5.2371e-14,6.7822e-14,6.9121e-14,8.6996e-14,1.1862e-13,1.1935e-13,1.2237e-13,1.4742e-13,1.4767e-13,1.7474e-13,1.8648e-13,4.685e-13,6.9862e-13,7.081e-13,1.1104e-12,1.2519e-12,1.5064e-12,1.6478e-12,1.7373e-12,1.8419e-12,1.8772e-12,1.975e-12,2.4219e-12,2.48e-12,2.6039e-12,2.71e-12,3.6595e-12,5.1282e-12,7.8882e-12,9.2679e-12,1.301e-11,1.8944e-11,2.217e-11,2.4039e-11,5.8246e-11,6.4452e-11,6.9422e-11,8.0407e-11,9.6852e-11,1.1372e-10,1.295e-10,1.3253e-10,1.3446e-10,1.5827e-10,2.4223e-10,2.4989e-10,2.9506e-10,3.812e-10,4.388e-10,4.4892e-10,9.9393e-10,1.0023e-09,1.1706e-09,1.5827e-09,1.6717e-09,2.0482e-09,2.1485e-09,2.9967e-09,3.7171e-09,6.0372e-09,6.1072e-09,1.0545e-08,1.1217e-08,1.144e-08,1.622e-08,1.6582e-08,1.8788e-08,2.2132e-08,2.329e-08,2.4204e-08,2.8159e-08,2.8871e-08,2.9345e-08,3.3067e-08,3.4475e-08,3.4852e-08,3.846e-08,3.9845e-08,4.8429e-08,6.6749e-08,7.0652e-08,7.1728e-08,8.2685e-08,8.7671e-08,1.1113e-07,1.6765e-07,1.902e-07,2.3198e-07,2.4946e-07,3.0489e-07,3.7167e-07,3.7771e-07,3.8245e-07,3.8301e-07,4.059e-07,4.079e-07,4.8889e-07,5.3103e-07,6.1991e-07,6.2419e-07,6.5073e-07,8.4861e-07,8.5517e-07,9.6939e-07,1.1171e-06,1.4362e-06,1.4842e-06,1.6297e-06,1.6641e-06,1.7542e-06,1.9157e-06,2.191e-06,2.1991e-06,2.9734e-06,4.1715e-06,4.323e-06,4.4969e-06,4.5523e-06,5.5623e-06,6.2867e-06,9.4672e-06,9.6704e-06,1.0092e-05,1.0844e-05,1.413e-05,1.855e-05,2.4874e-05,2.7143e-05,2.8589e-05,3.2596e-05,4.2358e-05,4.7472e-05,5.4976e-05,6.8718e-05,8.3122e-05,8.6003e-05,0.00012331,0.00012923,0.00013145,0.00014279,0.00014755,0.00019123,0.00021346,0.00022032,0.00022103,0.00023615,0.00025806,0.00026885,0.00027378,0.00037524,0.00037538,0.00049579,0.00067686,0.00089668,0.0011556,0.0012876,0.0013244,0.0014142,0.0014972,0.0017107,0.0017358,0.0022338,0.0023786,0.0026946,0.0031399,0.0034411,0.0034768,0.0037432,0.003932,0.0044327,0.0052835,0.0053704,0.0057946,0.0065248,0.007177,0.0072089,0.009937,0.010461,0.01072,0.011413,0.011788,0.0124,0.013433,0.013871,0.014502,0.015569,0.017051,0.018577,0.018738,0.020774,0.022215,0.023555,0.026861,0.028497,0.029113,0.031387,0.03153,0.032577,0.033049,0.03985,0.041771,0.042537,0.046188,0.048422,0.048769,0.054366,0.06658,0.070612,0.072766,0.077983,0.078446,0.08469,0.085396,0.09407,0.099478,0.11106,0.11215,0.11319,0.11377,0.11569,0.11727,0.11824,0.12887,0.13118,0.15463,0.16312,0.16893,0.17127,0.19156,0.19193,0.19898,0.20233,0.21976,0.22032,0.22167,0.23533,0.23921,0.24059,0.24484,0.2504,0.25573,0.25853,0.28702,0.28806,0.30371,0.3281,0.35198,0.3866,0.3871,0.39977,0.41597,0.43776,0.43801,0.44566,0.48224,0.49087,0.49182,0.53625,0.5461,0.5518,0.56938,0.58685,0.61906,0.6241,0.64836,0.70197,0.70268,0.707,0.7158,0.72266,0.73107,0.74091,0.8273,0.848,0.87776,0.89819,0.89915,0.90137,0.9284,0.93415,0.93462,0.95579,0.98253,0.98318,0.98867,0.98968,0.9977,0.99892,1,0.99971,0.9987,0.99842,0.99614,0.99563,0.99538,0.98594,0.98215,0.98042,0.97429,0.97219,0.96157,0.95893,0.95336,0.93809,0.93794,0.92991,0.9271,0.9271,0.90761,0.90696,0.89834,0.8889,0.86719,0.84639,0.83079,0.80496,0.78006,0.74657,0.74518,0.71864,0.69264,0.67715,0.63527,0.62292,0.59782,0.58298,0.55213,0.54889,0.54221,0.52683,0.49498,0.46289,0.44619,0.42976,0.42129,0.4201,0.40494,0.38774,0.3375,0.32475,0.31785,0.3029,0.3028,0.28849,0.28674,0.27731,0.26988,0.24577,0.2424,0.22475,0.20911,0.16332,0.1556,0.15197,0.14275,0.13449,0.13144,0.12552,0.12139,0.11642,0.10855,0.10851,0.095403,0.092142,0.091473,0.091118,0.079564,0.079316,0.078223,0.077407,0.075327,0.07198,0.069083,0.057355,0.037817,0.033231,0.032849,0.032537,0.031543,0.031002,0.026245,0.023467,0.021609,0.020626,0.018698,0.017185,0.016916,0.015,0.014002,0.012864,0.011205,0.0093122,0.0092017,0.0086352,0.0082605,0.008097,0.0065249,0.0061456,0.0046592,0.0043093,0.0037507,0.0034795,0.0033956,0.00297,0.0029187,0.0028093,0.0025833,0.0021977 1,3.2536e-25,5.4866e-25,5.6318e-25,6.5905e-25,7.4371e-25,8.7155e-25,1.185e-24,2.453e-24,3.8864e-24,4.1706e-24,6.0053e-24,6.373e-24,8.0681e-24,1.4292e-23,1.7089e-23,1.9347e-23,3.3067e-23,3.6246e-23,4.0127e-23,5.6431e-23,5.8533e-23,5.9777e-23,7.7458e-23,9.0236e-23,9.0685e-23,1.2149e-22,1.2476e-22,1.4234e-22,1.4483e-22,1.473e-22,3.5904e-22,8.3487e-22,9.0075e-22,1.1532e-21,1.437e-21,1.7041e-21,2.0854e-21,2.6358e-21,3.975e-21,4.9802e-21,7.1765e-21,1.1342e-20,1.1829e-20,1.2938e-20,1.4052e-20,2.1582e-20,2.1597e-20,5.9661e-20,6.4304e-20,6.7035e-20,9.0673e-20,9.2708e-20,1.6722e-19,2.1063e-19,2.3182e-19,2.86e-19,3.2676e-19,4.1047e-19,4.4052e-19,7.5683e-19,1.0551e-18,2.9723e-18,3.9404e-18,4.3291e-18,5.1217e-18,8.1134e-18,8.913e-18,9.6875e-18,1.4311e-17,2.0597e-17,2.356e-17,2.6295e-17,3.9106e-17,6.9105e-17,1.2534e-16,1.8668e-16,2.029e-16,4.2494e-16,5.4777e-16,6.1646e-16,6.4961e-16,8.0287e-16,1.9079e-15,1.9616e-15,2.2788e-15,2.8891e-15,3.0265e-15,4.2401e-15,1.0645e-14,1.0775e-14,1.3937e-14,1.5282e-14,4.3315e-14,5.6139e-14,5.7218e-14,7.2066e-14,9.8361e-14,9.8965e-14,1.0148e-13,1.2232e-13,1.2253e-13,1.4507e-13,1.5484e-13,3.9017e-13,5.8257e-13,5.905e-13,9.2739e-13,1.0459e-12,1.2593e-12,1.378e-12,1.453e-12,1.5408e-12,1.5705e-12,1.6525e-12,2.0279e-12,2.0766e-12,2.1808e-12,2.27e-12,3.0683e-12,4.3046e-12,6.6309e-12,7.7949e-12,1.0955e-11,1.5972e-11,1.8702e-11,2.0285e-11,4.9302e-11,5.4575e-11,5.8798e-11,6.8138e-11,8.2128e-11,9.6487e-11,1.0993e-10,1.1251e-10,1.1415e-10,1.3445e-10,2.0609e-10,2.1263e-10,2.5121e-10,3.2486e-10,3.7414e-10,3.828e-10,8.5005e-10,8.5722e-10,1.0017e-09,1.356e-09,1.4325e-09,1.7566e-09,1.8429e-09,2.5738e-09,3.1951e-09,5.1993e-09,5.2598e-09,9.1015e-09,9.6841e-09,9.8774e-09,1.4024e-08,1.4338e-08,1.6254e-08,1.9159e-08,2.0166e-08,2.0961e-08,2.4401e-08,2.5021e-08,2.5434e-08,2.8674e-08,2.99e-08,3.0228e-08,3.3371e-08,3.4577e-08,4.2061e-08,5.805e-08,6.1459e-08,6.2399e-08,7.1975e-08,7.6334e-08,9.6853e-08,1.4638e-07,1.6616e-07,2.0283e-07,2.1818e-07,2.669e-07,3.2565e-07,3.3096e-07,3.3514e-07,3.3562e-07,3.5578e-07,3.5754e-07,4.2887e-07,4.6602e-07,5.444e-07,5.4817e-07,5.7159e-07,7.4631e-07,7.521e-07,8.5304e-07,9.8369e-07,1.2661e-06,1.3086e-06,1.4376e-06,1.4681e-06,1.5479e-06,1.6911e-06,1.9354e-06,1.9426e-06,2.6304e-06,3.6963e-06,3.8312e-06,3.9861e-06,4.0355e-06,4.9356e-06,5.5817e-06,8.4229e-06,8.6045e-06,8.982e-06,9.6547e-06,1.2597e-05,1.656e-05,2.224e-05,2.4281e-05,2.5581e-05,2.9187e-05,3.7981e-05,4.2593e-05,4.9365e-05,6.178e-05,7.4809e-05,7.7417e-05,0.00011123,0.00011659,0.00011861,0.0001289,0.00013322,0.00017293,0.00019315,0.0001994,0.00020004,0.00021381,0.00023378,0.00024361,0.00024811,0.00034069,0.00034083,0.00045092,0.00061681,0.00081861,0.0010568,0.0011783,0.0012121,0.0012949,0.0013715,0.0015684,0.0015916,0.0020518,0.0021858,0.0024783,0.002891,0.0031704,0.0032035,0.0034509,0.0036262,0.0040915,0.0048832,0.0049641,0.0053593,0.0060401,0.0066487,0.0066785,0.0092291,0.0097193,0.0099627,0.010612,0.010963,0.011537,0.012507,0.012918,0.01351,0.014513,0.015907,0.017343,0.017494,0.019413,0.020771,0.022036,0.025158,0.026705,0.027287,0.029439,0.029574,0.030566,0.031012,0.03746,0.039284,0.040012,0.043481,0.045605,0.045935,0.051262,0.062909,0.06676,0.068817,0.073806,0.074249,0.080225,0.080902,0.089214,0.094403,0.10552,0.10658,0.10757,0.10813,0.10998,0.1115,0.11243,0.12266,0.12489,0.14751,0.15572,0.16133,0.1636,0.18325,0.18361,0.19044,0.19369,0.21061,0.21116,0.21247,0.22576,0.22953,0.23088,0.23502,0.24043,0.24563,0.24835,0.27615,0.27717,0.29247,0.31635,0.33977,0.37378,0.37428,0.38675,0.40271,0.42421,0.42445,0.43201,0.46819,0.47674,0.47768,0.52178,0.53158,0.53724,0.55475,0.57218,0.60436,0.60941,0.63371,0.6876,0.68831,0.69267,0.70154,0.70847,0.71696,0.72692,0.8148,0.83603,0.86671,0.88789,0.8889,0.8912,0.91949,0.92556,0.92605,0.94857,0.97778,0.97852,0.98477,0.98594,0.99577,0.9975,0.99971,1,0.99964,0.99949,0.99797,0.9976,0.99741,0.98968,0.98639,0.98487,0.9794,0.97751,0.96784,0.9654,0.96025,0.94598,0.94584,0.93827,0.93561,0.93561,0.91708,0.91646,0.90821,0.89916,0.87823,0.85807,0.8429,0.81767,0.79327,0.76031,0.75894,0.73272,0.70698,0.6916,0.64992,0.63759,0.61252,0.59767,0.56675,0.56349,0.55678,0.54132,0.50927,0.47688,0.46001,0.44338,0.43481,0.4336,0.41824,0.40078,0.34968,0.33668,0.32963,0.31437,0.31426,0.29964,0.29785,0.2882,0.28059,0.25588,0.25242,0.23429,0.21821,0.17098,0.163,0.15925,0.1497,0.14114,0.13798,0.13184,0.12755,0.12238,0.1142,0.11416,0.10052,0.097122,0.096425,0.096055,0.084,0.08374,0.082598,0.081746,0.079573,0.076074,0.073044,0.06076,0.040225,0.03539,0.034988,0.034658,0.033609,0.033037,0.028011,0.025071,0.023103,0.022061,0.020016,0.01841,0.018124,0.016087,0.015025,0.013813,0.012046,0.010026,0.0099077,0.0093025,0.0089019,0.0087271,0.0070444,0.006638,0.0050429,0.0046669,0.004066,0.0037741,0.0036837,0.0032251,0.0031698,0.0030518,0.0028079,0.0023915 1,2.4475e-25,4.1328e-25,4.2424e-25,4.9666e-25,5.6063e-25,6.5726e-25,8.9436e-25,1.8547e-24,2.9421e-24,3.1578e-24,4.5513e-24,4.8306e-24,6.1193e-24,1.0856e-23,1.2987e-23,1.4707e-23,2.5172e-23,2.7599e-23,3.0562e-23,4.3019e-23,4.4626e-23,4.5577e-23,5.9098e-23,6.8875e-23,6.9219e-23,9.2805e-23,9.5312e-23,1.0878e-22,1.1069e-22,1.1257e-22,2.7506e-22,6.4106e-22,6.9179e-22,8.8627e-22,1.105e-21,1.3111e-21,1.6053e-21,2.0303e-21,3.0653e-21,3.8428e-21,5.5432e-21,8.7716e-21,9.1498e-21,1.001e-20,1.0875e-20,1.6722e-20,1.6733e-20,4.6358e-20,4.9977e-20,5.2105e-20,7.0539e-20,7.2127e-20,1.3032e-19,1.6426e-19,1.8083e-19,2.2323e-19,2.5514e-19,3.2072e-19,3.4427e-19,5.9241e-19,8.2667e-19,2.336e-18,3.0995e-18,3.4061e-18,4.0318e-18,6.3956e-18,7.028e-18,7.6406e-18,1.13e-17,1.6282e-17,1.8632e-17,2.0802e-17,3.0975e-17,5.4833e-17,9.9638e-17,1.4859e-16,1.6154e-16,3.391e-16,4.3748e-16,4.9253e-16,5.191e-16,6.4201e-16,1.5299e-15,1.5731e-15,1.8284e-15,2.3198e-15,2.4306e-15,3.409e-15,8.5848e-15,8.6896e-15,1.1249e-14,1.2339e-14,3.5096e-14,4.5528e-14,4.6405e-14,5.8494e-14,7.9923e-14,8.0416e-14,8.2467e-14,9.947e-14,9.9637e-14,1.1804e-13,1.2602e-13,3.1857e-13,4.7633e-13,4.8284e-13,7.5953e-13,8.5701e-13,1.0325e-12,1.1302e-12,1.192e-12,1.2642e-12,1.2887e-12,1.3563e-12,1.6655e-12,1.7057e-12,1.7916e-12,1.8651e-12,2.5239e-12,3.5453e-12,5.47e-12,6.4341e-12,9.0541e-12,1.322e-11,1.5489e-11,1.6804e-11,4.0982e-11,4.5383e-11,4.891e-11,5.6712e-11,6.8405e-11,8.0416e-11,9.1667e-11,9.3823e-11,9.5202e-11,1.122e-10,1.7228e-10,1.7777e-10,2.1017e-10,2.7207e-10,3.1352e-10,3.2081e-10,7.1472e-10,7.2077e-10,8.4283e-10,1.1424e-09,1.2071e-09,1.4814e-09,1.5545e-09,2.1741e-09,2.7015e-09,4.4052e-09,4.4567e-09,7.7304e-09,8.2274e-09,8.3923e-09,1.1934e-08,1.2203e-08,1.3841e-08,1.6327e-08,1.7189e-08,1.7869e-08,2.0816e-08,2.1348e-08,2.1701e-08,2.4479e-08,2.5531e-08,2.5812e-08,2.8509e-08,2.9544e-08,3.5971e-08,4.9719e-08,5.2652e-08,5.3461e-08,6.1707e-08,6.5462e-08,8.3151e-08,1.2592e-07,1.4302e-07,1.7475e-07,1.8805e-07,2.3025e-07,2.8121e-07,2.8582e-07,2.8945e-07,2.8987e-07,3.0737e-07,3.0889e-07,3.7086e-07,4.0314e-07,4.7131e-07,4.7459e-07,4.9497e-07,6.4714e-07,6.5218e-07,7.4019e-07,8.5417e-07,1.1008e-06,1.138e-06,1.2507e-06,1.2774e-06,1.3472e-06,1.4725e-06,1.6865e-06,1.6927e-06,2.2957e-06,3.2319e-06,3.3505e-06,3.4866e-06,3.5301e-06,4.3222e-06,4.8912e-06,7.3976e-06,7.558e-06,7.8915e-06,8.486e-06,1.1089e-05,1.46e-05,1.9641e-05,2.1454e-05,2.261e-05,2.5816e-05,3.3647e-05,3.7758e-05,4.38e-05,5.4891e-05,6.6544e-05,6.8879e-05,9.9184e-05,0.000104,0.00010581,0.00011505,0.00011893,0.00015464,0.00017284,0.00017847,0.00017905,0.00019146,0.00020946,0.00021833,0.00022238,0.00030601,0.00030613,0.00040579,0.00055628,0.00073974,0.00095669,0.0010675,0.0010985,0.001174,0.001244,0.001424,0.0014453,0.0018667,0.0019895,0.002258,0.0026371,0.0028941,0.0029246,0.0031522,0.0033137,0.0037426,0.0044731,0.0045479,0.004913,0.0055426,0.0061061,0.0061336,0.0084998,0.0089553,0.0091815,0.009785,0.010112,0.010647,0.01155,0.011933,0.012485,0.013421,0.014722,0.016064,0.016206,0.018,0.019273,0.020458,0.023386,0.024839,0.025386,0.027409,0.027536,0.028469,0.028889,0.034963,0.036684,0.037371,0.040646,0.042654,0.042966,0.048006,0.059048,0.062706,0.064661,0.069404,0.069826,0.075515,0.07616,0.084084,0.089036,0.099661,0.10067,0.10162,0.10216,0.10392,0.10538,0.10628,0.11607,0.11821,0.13993,0.14783,0.15324,0.15542,0.17437,0.17471,0.18131,0.18446,0.20082,0.20135,0.20262,0.21549,0.21915,0.22045,0.22447,0.22972,0.23476,0.23741,0.26445,0.26543,0.28034,0.30364,0.32654,0.35988,0.36036,0.3726,0.38828,0.40945,0.40969,0.41713,0.45284,0.46129,0.46222,0.5059,0.51563,0.52126,0.53867,0.55601,0.58813,0.59317,0.61749,0.67161,0.67232,0.67671,0.68566,0.69265,0.70122,0.71129,0.80067,0.82245,0.85408,0.87606,0.87711,0.87951,0.90914,0.91553,0.91606,0.94001,0.9719,0.97272,0.97981,0.98115,0.99296,0.99526,0.9987,0.99964,1,0.99999,0.99932,0.99909,0.99898,0.99315,0.99041,0.98913,0.98442,0.98276,0.97414,0.97194,0.96725,0.95412,0.95398,0.94694,0.94446,0.94445,0.92702,0.92643,0.91862,0.91,0.88998,0.87056,0.85589,0.83138,0.80757,0.77525,0.77391,0.74809,0.72266,0.70743,0.66603,0.65376,0.62875,0.61391,0.58294,0.57968,0.57295,0.55742,0.52517,0.4925,0.47544,0.45862,0.44993,0.44871,0.43313,0.41541,0.36339,0.35012,0.34292,0.32732,0.32721,0.31225,0.31042,0.30053,0.29272,0.26735,0.2638,0.24514,0.22857,0.17974,0.17147,0.16757,0.15766,0.14876,0.14548,0.13909,0.13463,0.12924,0.12071,0.12066,0.10642,0.10287,0.10214,0.10175,0.089126,0.088854,0.087656,0.086763,0.084483,0.080812,0.07763,0.064712,0.043035,0.037913,0.037486,0.037136,0.036024,0.035418,0.030079,0.026952,0.024856,0.023746,0.021565,0.01985,0.019544,0.017367,0.016232,0.014934,0.01304,0.01087,0.010743,0.010093,0.0096618,0.0094737,0.0076612,0.0072228,0.0054998,0.005093,0.0044422,0.0041258,0.0040277,0.00353,0.0034699,0.0033418,0.0030767,0.0026237 1,2.3153e-25,3.9106e-25,4.0144e-25,4.7e-25,5.3057e-25,6.2206e-25,8.4659e-25,1.7563e-24,2.7866e-24,2.991e-24,4.3117e-24,4.5765e-24,5.7981e-24,1.0289e-23,1.231e-23,1.3942e-23,2.3868e-23,2.6171e-23,2.8982e-23,4.0801e-23,4.2326e-23,4.3229e-23,5.606e-23,6.5341e-23,6.5667e-23,8.8055e-23,9.0435e-23,1.0322e-22,1.0503e-22,1.0682e-22,2.6113e-22,6.0887e-22,6.5707e-22,8.4191e-22,1.0499e-21,1.2457e-21,1.5254e-21,1.9295e-21,2.9138e-21,3.6533e-21,5.2709e-21,8.3428e-21,8.7027e-21,9.5209e-21,1.0344e-20,1.591e-20,1.592e-20,4.4132e-20,4.7579e-20,4.9606e-20,6.7167e-20,6.868e-20,1.2413e-19,1.5648e-19,1.7228e-19,2.127e-19,2.4312e-19,3.0565e-19,3.281e-19,5.6476e-19,7.8825e-19,2.2287e-18,2.9576e-18,3.2505e-18,3.8479e-18,6.1056e-18,6.7097e-18,7.2949e-18,1.0792e-17,1.5553e-17,1.7798e-17,1.9872e-17,2.9598e-17,5.2413e-17,9.5276e-17,1.4212e-16,1.5451e-16,3.245e-16,4.187e-16,4.7143e-16,4.9687e-16,6.146e-16,1.4654e-15,1.5068e-15,1.7515e-15,2.2226e-15,2.3288e-15,3.2669e-15,8.2319e-15,8.3324e-15,1.0789e-14,1.1834e-14,3.3684e-14,4.3704e-14,4.4547e-14,5.616e-14,7.675e-14,7.7224e-14,7.9195e-14,9.5535e-14,9.5696e-14,1.1338e-13,1.2105e-13,3.0621e-13,4.5798e-13,4.6424e-13,7.3051e-13,8.2432e-13,9.9325e-13,1.0873e-12,1.1468e-12,1.2163e-12,1.2399e-12,1.305e-12,1.6028e-12,1.6415e-12,1.7242e-12,1.795e-12,2.4295e-12,3.4135e-12,5.2684e-12,6.1977e-12,8.7235e-12,1.2741e-11,1.4929e-11,1.6198e-11,3.953e-11,4.3778e-11,4.7183e-11,5.4716e-11,6.6007e-11,7.7607e-11,8.8473e-11,9.0556e-11,9.1887e-11,1.0831e-10,1.6636e-10,1.7167e-10,2.0298e-10,2.6281e-10,3.0288e-10,3.0993e-10,6.9093e-10,6.9678e-10,8.1488e-10,1.1048e-09,1.1674e-09,1.4329e-09,1.5037e-09,2.1036e-09,2.6144e-09,4.265e-09,4.3149e-09,7.4878e-09,7.9696e-09,8.1296e-09,1.1564e-08,1.1825e-08,1.3413e-08,1.5825e-08,1.6661e-08,1.7321e-08,2.018e-08,2.0696e-08,2.1039e-08,2.3735e-08,2.4755e-08,2.5028e-08,2.7646e-08,2.8651e-08,3.4889e-08,4.8237e-08,5.1086e-08,5.1872e-08,5.988e-08,6.3527e-08,8.0711e-08,1.2227e-07,1.3889e-07,1.6974e-07,1.8267e-07,2.2371e-07,2.7327e-07,2.7775e-07,2.8128e-07,2.8169e-07,2.9871e-07,3.0019e-07,3.6048e-07,3.9189e-07,4.5822e-07,4.6142e-07,4.8125e-07,6.2936e-07,6.3427e-07,7.1995e-07,8.3093e-07,1.0712e-06,1.1073e-06,1.2172e-06,1.2431e-06,1.3112e-06,1.4333e-06,1.6417e-06,1.6478e-06,2.2355e-06,3.1482e-06,3.2638e-06,3.3966e-06,3.439e-06,4.2115e-06,4.7667e-06,7.2124e-06,7.369e-06,7.6944e-06,8.2747e-06,1.0816e-05,1.4245e-05,1.9169e-05,2.0941e-05,2.2071e-05,2.5205e-05,3.286e-05,3.688e-05,4.2788e-05,5.3637e-05,6.5039e-05,6.7324e-05,9.6987e-05,0.0001017,0.00010348,0.00011252,0.00011632,0.0001513,0.00016913,0.00017464,0.00017521,0.00018737,0.00020501,0.0002137,0.00021768,0.00029966,0.00029978,0.00039751,0.00054515,0.00072522,0.00093826,0.0010471,0.0010775,0.0011518,0.0012204,0.0013974,0.0014182,0.0018324,0.0019532,0.0022172,0.0025901,0.002843,0.0028729,0.0030969,0.0032558,0.0036778,0.004397,0.0044706,0.0048301,0.0054502,0.0060052,0.0060323,0.0083639,0.0088129,0.009036,0.0096309,0.0099533,0.010481,0.011371,0.011749,0.012294,0.013217,0.0145,0.015825,0.015964,0.017736,0.018992,0.020162,0.023054,0.024489,0.025029,0.027028,0.027153,0.028075,0.02849,0.034494,0.036195,0.036874,0.040113,0.042098,0.042407,0.047393,0.05832,0.06194,0.063876,0.068573,0.06899,0.074625,0.075263,0.083113,0.08802,0.09855,0.099549,0.10049,0.10102,0.10277,0.10422,0.10511,0.11482,0.11694,0.13849,0.14633,0.15169,0.15386,0.17267,0.17302,0.17957,0.18269,0.19895,0.19948,0.20074,0.21353,0.21716,0.21846,0.22245,0.22767,0.23269,0.23532,0.2622,0.26319,0.27802,0.3012,0.324,0.3572,0.35768,0.36987,0.3855,0.4066,0.40684,0.41425,0.44987,0.4583,0.45923,0.50282,0.51254,0.51816,0.53554,0.55288,0.58497,0.59001,0.61433,0.66848,0.6692,0.67359,0.68255,0.68955,0.69814,0.70822,0.79788,0.81976,0.85157,0.8737,0.87476,0.87717,0.90706,0.91352,0.91405,0.93828,0.97067,0.97152,0.97877,0.98014,0.99233,0.99474,0.99842,0.99949,0.99999,1,0.9995,0.9993,0.9992,0.99374,0.99112,0.98988,0.98531,0.9837,0.97529,0.97313,0.96854,0.95563,0.9555,0.94856,0.94611,0.94611,0.92889,0.92831,0.92058,0.91205,0.89221,0.87294,0.85837,0.83401,0.81031,0.77813,0.77679,0.75106,0.72569,0.7105,0.66916,0.65691,0.63191,0.61707,0.5861,0.58283,0.5761,0.56057,0.52828,0.49556,0.47847,0.46161,0.4529,0.45168,0.43606,0.41829,0.36609,0.35277,0.34554,0.32988,0.32977,0.31474,0.3129,0.30296,0.29512,0.26962,0.26605,0.24729,0.23062,0.18149,0.17315,0.16923,0.15925,0.15028,0.14698,0.14053,0.13604,0.13061,0.12201,0.12196,0.1076,0.10402,0.10328,0.10289,0.090152,0.089878,0.088669,0.087768,0.085467,0.081761,0.078549,0.065505,0.043601,0.038421,0.03799,0.037636,0.036511,0.035898,0.030497,0.027332,0.02521,0.024086,0.021878,0.020142,0.019832,0.017627,0.016476,0.015161,0.013241,0.011042,0.010913,0.010253,0.0098164,0.0096256,0.0077868,0.0073419,0.005593,0.0051799,0.004519,0.0041976,0.004098,0.0035923,0.0035313,0.0034011,0.0031317,0.0026713 1,1.6499e-25,2.7911e-25,2.8654e-25,3.3563e-25,3.7902e-25,4.446e-25,6.0564e-25,1.2592e-24,2.0007e-24,2.1479e-24,3.0998e-24,3.2908e-24,4.1722e-24,7.4167e-24,8.8785e-24,1.0059e-23,1.725e-23,1.892e-23,2.0959e-23,2.9538e-23,3.0645e-23,3.1301e-23,4.0625e-23,4.7373e-23,4.761e-23,6.3901e-23,6.5634e-23,7.4945e-23,7.6264e-23,7.7569e-23,1.9016e-22,4.4458e-22,4.799e-22,6.1538e-22,7.6792e-22,9.1168e-22,1.1172e-21,1.4142e-21,2.1384e-21,2.6831e-21,3.8758e-21,6.1439e-21,6.4098e-21,7.0145e-21,7.6231e-21,1.1742e-20,1.1749e-20,3.2681e-20,3.5242e-20,3.6749e-20,4.981e-20,5.0936e-20,9.2246e-20,1.1638e-19,1.2817e-19,1.5835e-19,1.8108e-19,2.2784e-19,2.4464e-19,4.2188e-19,5.8951e-19,1.6729e-18,2.2222e-18,2.443e-18,2.8938e-18,4.5992e-18,5.056e-18,5.4986e-18,8.1457e-18,1.1755e-17,1.3459e-17,1.5033e-17,2.2423e-17,3.979e-17,7.2489e-17,1.0829e-16,1.1777e-16,2.4802e-16,3.2033e-16,3.6083e-16,3.8038e-16,4.7089e-16,1.1265e-15,1.1584e-15,1.3473e-15,1.7113e-15,1.7934e-15,2.5191e-15,6.3706e-15,6.4487e-15,8.3583e-15,9.1718e-15,2.6215e-14,3.4049e-14,3.4708e-14,4.3798e-14,5.9931e-14,6.0303e-14,6.1848e-14,7.4667e-14,7.4793e-14,8.8676e-14,9.4701e-14,2.4048e-13,3.6028e-13,3.6523e-13,5.7581e-13,6.5009e-13,7.8393e-13,8.5848e-13,9.0567e-13,9.6084e-13,9.7952e-13,1.0312e-12,1.2676e-12,1.2984e-12,1.364e-12,1.4203e-12,1.9249e-12,2.7086e-12,4.1883e-12,4.9306e-12,6.9506e-12,1.0168e-11,1.1924e-11,1.2942e-11,3.1712e-11,3.5137e-11,3.7883e-11,4.396e-11,5.3078e-11,6.2453e-11,7.1241e-11,7.2926e-11,7.4003e-11,8.7295e-11,1.3436e-10,1.3866e-10,1.6408e-10,2.1271e-10,2.4531e-10,2.5105e-10,5.6185e-10,5.6663e-10,6.6318e-10,9.0043e-10,9.5175e-10,1.1694e-09,1.2275e-09,1.7201e-09,2.1401e-09,3.4999e-09,3.541e-09,6.1624e-09,6.5611e-09,6.6934e-09,9.5386e-09,9.7548e-09,1.1073e-08,1.3075e-08,1.3769e-08,1.4318e-08,1.6695e-08,1.7124e-08,1.741e-08,1.9653e-08,2.0502e-08,2.073e-08,2.291e-08,2.3747e-08,2.8949e-08,4.0095e-08,4.2476e-08,4.3133e-08,4.9831e-08,5.2884e-08,6.7278e-08,1.0215e-07,1.1613e-07,1.4208e-07,1.5296e-07,1.8755e-07,2.2937e-07,2.3315e-07,2.3613e-07,2.3648e-07,2.5085e-07,2.521e-07,3.0305e-07,3.2962e-07,3.8577e-07,3.8847e-07,4.0527e-07,5.3084e-07,5.3501e-07,6.0774e-07,7.0202e-07,9.0638e-07,9.3716e-07,1.0307e-06,1.0528e-06,1.1108e-06,1.2149e-06,1.3928e-06,1.398e-06,1.9001e-06,2.6817e-06,2.7808e-06,2.8947e-06,2.931e-06,3.5941e-06,4.071e-06,6.1764e-06,6.3113e-06,6.5919e-06,7.0925e-06,9.2868e-06,1.2254e-05,1.6523e-05,1.8061e-05,1.9042e-05,2.1766e-05,2.8429e-05,3.1933e-05,3.7088e-05,4.6566e-05,5.6543e-05,5.8544e-05,8.4565e-05,8.8707e-05,9.0267e-05,9.8219e-05,0.00010156,0.00013236,0.00014809,0.00015295,0.00015345,0.00016418,0.00017976,0.00018744,0.00019096,0.00026354,0.00026364,0.00035038,0.00048175,0.00064239,0.0008329,0.00093042,0.00095765,0.0010242,0.0010859,0.0012447,0.0012635,0.0016362,0.001745,0.0019832,0.00232,0.0025487,0.0025758,0.0027785,0.0029225,0.0033051,0.0039581,0.0040251,0.004352,0.0049164,0.0054223,0.005447,0.0075774,0.0079885,0.0081928,0.008738,0.0090337,0.0095174,0.010335,0.010682,0.011183,0.012032,0.013214,0.014434,0.014563,0.016198,0.017359,0.01844,0.021118,0.022448,0.022949,0.024804,0.02492,0.025777,0.026162,0.031749,0.033334,0.033967,0.036989,0.038844,0.039132,0.043795,0.054039,0.05744,0.05926,0.063679,0.064072,0.06938,0.069982,0.077389,0.082025,0.09199,0.092936,0.093831,0.094334,0.095992,0.097362,0.098205,0.10743,0.10944,0.12995,0.13742,0.14255,0.14461,0.16261,0.16294,0.16922,0.17221,0.18782,0.18833,0.18953,0.20183,0.20533,0.20658,0.21042,0.21546,0.22029,0.22283,0.2488,0.24975,0.26411,0.2866,0.30876,0.34111,0.34158,0.35349,0.36878,0.38944,0.38967,0.39695,0.43195,0.44025,0.44116,0.4842,0.49381,0.49937,0.51661,0.53381,0.56576,0.57078,0.59506,0.64936,0.65009,0.65451,0.66353,0.67058,0.67925,0.68943,0.78064,0.8031,0.83595,0.85897,0.86007,0.86259,0.89397,0.90081,0.90137,0.92723,0.96269,0.96364,0.97186,0.97343,0.98793,0.991,0.99614,0.99797,0.99932,0.9995,1,0.99998,0.99997,0.99678,0.99483,0.99387,0.99021,0.98888,0.98175,0.97988,0.97586,0.96433,0.96421,0.95792,0.95568,0.95568,0.93982,0.93928,0.93208,0.9241,0.90539,0.88707,0.87313,0.8497,0.82676,0.79544,0.79413,0.76894,0.74401,0.72904,0.68814,0.67597,0.6511,0.63631,0.60536,0.60209,0.59534,0.57976,0.54731,0.51431,0.49703,0.47997,0.47114,0.4699,0.45404,0.43598,0.38276,0.36913,0.36174,0.34568,0.34557,0.33015,0.32825,0.31805,0.30998,0.28371,0.28002,0.26064,0.24339,0.19236,0.18367,0.17958,0.16916,0.15979,0.15633,0.14958,0.14487,0.13919,0.13016,0.13011,0.11501,0.11123,0.11046,0.11004,0.096609,0.09632,0.095043,0.094091,0.091659,0.08774,0.084341,0.070512,0.047185,0.041646,0.041184,0.040805,0.0396,0.038943,0.03315,0.029748,0.027466,0.026255,0.023874,0.022,0.021666,0.019282,0.018037,0.016613,0.01453,0.012141,0.012001,0.011282,0.010806,0.010599,0.0085927,0.0081066,0.0061923,0.0057393,0.0050137,0.0046604,0.0045509,0.0039943,0.0039271,0.0037836,0.0034867,0.0029785 1,1.5541e-25,2.6298e-25,2.6998e-25,3.1627e-25,3.5718e-25,4.1901e-25,5.7087e-25,1.1874e-24,1.887e-24,2.026e-24,2.9244e-24,3.1047e-24,3.9367e-24,7.0003e-24,8.3809e-24,9.4961e-24,1.6289e-23,1.7867e-23,1.9793e-23,2.7901e-23,2.8947e-23,2.9567e-23,3.838e-23,4.4759e-23,4.4983e-23,6.0385e-23,6.2024e-23,7.0827e-23,7.2075e-23,7.3309e-23,1.798e-22,4.2057e-22,4.54e-22,5.8226e-22,7.2668e-22,8.628e-22,1.0574e-21,1.3387e-21,2.0248e-21,2.5408e-21,3.671e-21,5.8208e-21,6.073e-21,6.6462e-21,7.2232e-21,1.1129e-20,1.1136e-20,3.0993e-20,3.3424e-20,3.4854e-20,4.7249e-20,4.8317e-20,8.7535e-20,1.1045e-19,1.2165e-19,1.5031e-19,1.7191e-19,2.1632e-19,2.3228e-19,4.007e-19,5.6003e-19,1.5902e-18,2.1128e-18,2.3229e-18,2.7518e-18,4.3748e-18,4.8096e-18,5.2309e-18,7.751e-18,1.1188e-17,1.2811e-17,1.431e-17,2.135e-17,3.79e-17,6.9073e-17,1.0321e-16,1.1225e-16,2.3653e-16,3.0553e-16,3.4419e-16,3.6285e-16,4.4925e-16,1.0754e-15,1.1058e-15,1.2863e-15,1.6341e-15,1.7125e-15,2.4061e-15,6.0886e-15,6.1634e-15,7.9899e-15,8.7681e-15,2.508e-14,3.258e-14,3.3212e-14,4.1916e-14,5.7369e-14,5.7725e-14,5.9206e-14,7.1486e-14,7.1607e-14,8.4909e-14,9.0682e-14,2.3043e-13,3.4533e-13,3.5007e-13,5.521e-13,6.2339e-13,7.5184e-13,8.2338e-13,8.6868e-13,9.2164e-13,9.3957e-13,9.8915e-13,1.2161e-12,1.2457e-12,1.3087e-12,1.3628e-12,1.8473e-12,2.6001e-12,4.022e-12,4.7354e-12,6.6772e-12,9.7714e-12,1.1459e-11,1.2439e-11,3.0502e-11,3.3798e-11,3.6441e-11,4.2293e-11,5.1073e-11,6.0101e-11,6.8566e-11,7.0189e-11,7.1227e-11,8.4031e-11,1.2938e-10,1.3353e-10,1.5803e-10,2.0491e-10,2.3635e-10,2.4188e-10,5.4168e-10,5.463e-10,6.3947e-10,8.6847e-10,9.1802e-10,1.1282e-09,1.1842e-09,1.66e-09,2.0657e-09,3.3797e-09,3.4195e-09,5.9538e-09,6.3394e-09,6.4674e-09,9.2195e-09,9.4286e-09,1.0704e-08,1.2641e-08,1.3313e-08,1.3844e-08,1.6145e-08,1.656e-08,1.6836e-08,1.9008e-08,1.983e-08,2.0051e-08,2.2161e-08,2.2972e-08,2.8009e-08,3.8806e-08,4.1113e-08,4.1749e-08,4.8239e-08,5.1197e-08,6.5147e-08,9.896e-08,1.1251e-07,1.3768e-07,1.4824e-07,1.818e-07,2.2238e-07,2.2605e-07,2.2894e-07,2.2927e-07,2.4322e-07,2.4444e-07,2.9389e-07,3.1969e-07,3.7421e-07,3.7683e-07,3.9314e-07,5.151e-07,5.1915e-07,5.898e-07,6.814e-07,8.7999e-07,9.0992e-07,1.0008e-06,1.0224e-06,1.0787e-06,1.1799e-06,1.3529e-06,1.3579e-06,1.8463e-06,2.6067e-06,2.7031e-06,2.8139e-06,2.8493e-06,3.4947e-06,3.959e-06,6.0093e-06,6.1407e-06,6.4141e-06,6.9017e-06,9.0398e-06,1.1932e-05,1.6095e-05,1.7595e-05,1.8551e-05,2.1208e-05,2.771e-05,3.113e-05,3.6161e-05,4.5415e-05,5.516e-05,5.7114e-05,8.2539e-05,8.6587e-05,8.8112e-05,9.5885e-05,9.9152e-05,0.00012926,0.00014464,0.0001494,0.00014989,0.00016039,0.00017563,0.00018314,0.00018658,0.00025761,0.00025771,0.00034263,0.00047132,0.00062875,0.00081552,0.00091115,0.00093786,0.0010032,0.0010636,0.0012195,0.0012379,0.0016037,0.0017106,0.0019444,0.0022752,0.0024998,0.0025264,0.0027256,0.0028671,0.0032431,0.0038851,0.0039509,0.0042724,0.0048275,0.0053251,0.0053494,0.0074459,0.0078506,0.0080517,0.0085886,0.0088797,0.0093561,0.010161,0.010503,0.010996,0.011833,0.012998,0.014201,0.014328,0.015939,0.017084,0.018151,0.020792,0.022104,0.022599,0.024429,0.024544,0.025389,0.02577,0.031285,0.03285,0.033476,0.036461,0.038293,0.038578,0.043186,0.053313,0.056676,0.058475,0.062847,0.063236,0.068488,0.069083,0.076414,0.081004,0.090871,0.091808,0.092694,0.093192,0.094835,0.096191,0.097026,0.10616,0.10816,0.12849,0.1359,0.14098,0.14303,0.16088,0.16121,0.16744,0.17041,0.1859,0.18641,0.18761,0.19982,0.20329,0.20454,0.20835,0.21335,0.21815,0.22068,0.24648,0.24743,0.2617,0.28407,0.30611,0.33832,0.33879,0.35064,0.36587,0.38645,0.38668,0.39393,0.42882,0.4371,0.43801,0.48093,0.49053,0.49608,0.51329,0.53047,0.56238,0.5674,0.59167,0.64599,0.64671,0.65113,0.66016,0.66722,0.6759,0.6861,0.77755,0.80012,0.83315,0.85631,0.85742,0.85995,0.89159,0.89849,0.89905,0.9252,0.96119,0.96216,0.97054,0.97215,0.98706,0.99024,0.99563,0.9976,0.99909,0.9993,0.99998,1,1,0.99721,0.99538,0.99447,0.99097,0.9897,0.98279,0.98097,0.97705,0.96577,0.96566,0.95948,0.95728,0.95728,0.94166,0.94113,0.93403,0.92614,0.90764,0.88949,0.87567,0.8524,0.82961,0.79844,0.79714,0.77206,0.74721,0.73228,0.69147,0.67932,0.65448,0.6397,0.60876,0.60548,0.59874,0.58315,0.55067,0.51763,0.50033,0.48322,0.47438,0.47313,0.45724,0.43913,0.38573,0.37206,0.36463,0.34851,0.3484,0.3329,0.331,0.32075,0.31264,0.28623,0.28253,0.26304,0.24569,0.19432,0.18557,0.18145,0.17095,0.16151,0.15802,0.15122,0.14647,0.14074,0.13163,0.13159,0.11635,0.11254,0.11176,0.11134,0.097784,0.097491,0.096203,0.095241,0.092786,0.088829,0.085396,0.071426,0.047841,0.042237,0.04177,0.041387,0.040167,0.039502,0.033637,0.030193,0.02788,0.026654,0.024242,0.022343,0.022004,0.019588,0.018325,0.016881,0.014769,0.012344,0.012202,0.011473,0.01099,0.010779,0.0087421,0.0082485,0.0063037,0.0058433,0.0051058,0.0047466,0.0046353,0.0040693,0.0040009,0.0038549,0.0035529,0.0030358 1,1.5106e-25,2.5564e-25,2.6245e-25,3.0746e-25,3.4724e-25,4.0737e-25,5.5506e-25,1.1547e-24,1.8353e-24,1.9705e-24,2.8446e-24,3.02e-24,3.8296e-24,6.8108e-24,8.1543e-24,9.2397e-24,1.5852e-23,1.7387e-23,1.9263e-23,2.7155e-23,2.8174e-23,2.8777e-23,3.7357e-23,4.3568e-23,4.3786e-23,5.8783e-23,6.0378e-23,6.8951e-23,7.0166e-23,7.1367e-23,1.7508e-22,4.0963e-22,4.4219e-22,5.6715e-22,7.0787e-22,8.405e-22,1.0301e-21,1.3042e-21,1.9729e-21,2.4759e-21,3.5775e-21,5.6734e-21,5.9192e-21,6.4781e-21,7.0406e-21,1.0849e-20,1.0856e-20,3.0222e-20,3.2593e-20,3.3988e-20,4.6079e-20,4.7121e-20,8.5382e-20,1.0774e-19,1.1867e-19,1.4664e-19,1.6771e-19,2.1106e-19,2.2663e-19,3.9102e-19,5.4654e-19,1.5524e-18,2.0628e-18,2.2679e-18,2.6868e-18,4.2721e-18,4.6967e-18,5.1083e-18,7.5703e-18,1.0928e-17,1.2514e-17,1.3979e-17,2.0859e-17,3.7034e-17,6.7507e-17,1.0089e-16,1.0973e-16,2.3125e-16,2.9875e-16,3.3655e-16,3.5481e-16,4.3932e-16,1.0519e-15,1.0817e-15,1.2583e-15,1.5986e-15,1.6754e-15,2.3542e-15,5.9591e-15,6.0322e-15,7.8205e-15,8.5825e-15,2.4558e-14,3.1904e-14,3.2523e-14,4.105e-14,5.6191e-14,5.6539e-14,5.799e-14,7.0023e-14,7.0141e-14,8.3176e-14,8.8833e-14,2.2581e-13,3.3845e-13,3.431e-13,5.4119e-13,6.1108e-13,7.3705e-13,8.0722e-13,8.5164e-13,9.0358e-13,9.2117e-13,9.6979e-13,1.1924e-12,1.2214e-12,1.2833e-12,1.3363e-12,1.8116e-12,2.5501e-12,3.9453e-12,4.6454e-12,6.5511e-12,9.5881e-12,1.1245e-11,1.2207e-11,2.9942e-11,3.318e-11,3.5776e-11,4.1523e-11,5.0147e-11,5.9015e-11,6.733e-11,6.8925e-11,6.9944e-11,8.2523e-11,1.2708e-10,1.3116e-10,1.5523e-10,2.013e-10,2.322e-10,2.3763e-10,5.3236e-10,5.369e-10,6.285e-10,8.5369e-10,9.0241e-10,1.1091e-09,1.1642e-09,1.6322e-09,2.0312e-09,3.324e-09,3.3632e-09,5.8572e-09,6.2367e-09,6.3627e-09,9.0716e-09,9.2775e-09,1.0533e-08,1.244e-08,1.3102e-08,1.3625e-08,1.589e-08,1.6299e-08,1.6571e-08,1.8709e-08,1.9519e-08,1.9736e-08,2.1814e-08,2.2613e-08,2.7573e-08,3.8208e-08,4.048e-08,4.1107e-08,4.75e-08,5.0414e-08,6.4159e-08,9.7477e-08,1.1083e-07,1.3564e-07,1.4605e-07,1.7912e-07,2.1913e-07,2.2275e-07,2.256e-07,2.2593e-07,2.3968e-07,2.4088e-07,2.8964e-07,3.1508e-07,3.6883e-07,3.7142e-07,3.8751e-07,5.0778e-07,5.1177e-07,5.8146e-07,6.7182e-07,8.6773e-07,8.9725e-07,9.8695e-07,1.0082e-06,1.0638e-06,1.1636e-06,1.3343e-06,1.3393e-06,1.8212e-06,2.5718e-06,2.667e-06,2.7764e-06,2.8113e-06,3.4484e-06,3.9069e-06,5.9314e-06,6.0613e-06,6.3312e-06,6.8128e-06,8.9247e-06,1.1782e-05,1.5895e-05,1.7377e-05,1.8323e-05,2.0948e-05,2.7375e-05,3.0755e-05,3.5729e-05,4.4879e-05,5.4515e-05,5.6447e-05,8.1592e-05,8.5597e-05,8.7105e-05,9.4794e-05,9.8027e-05,0.00012781,0.00014303,0.00014774,0.00014823,0.00015861,0.0001737,0.00018113,0.00018454,0.00025484,0.00025494,0.00033901,0.00046644,0.00062236,0.00080738,0.00090213,0.00092859,0.0009933,0.0010532,0.0012077,0.0012259,0.0015885,0.0016944,0.0019262,0.0022542,0.0024769,0.0025033,0.0027008,0.0028411,0.0032141,0.0038508,0.0039161,0.004235,0.0047857,0.0052794,0.0053036,0.0073842,0.0077859,0.0079855,0.0085184,0.0088074,0.0092803,0.01008,0.010419,0.010909,0.011739,0.012896,0.014091,0.014217,0.015818,0.016955,0.018014,0.020639,0.021943,0.022434,0.024253,0.024367,0.025207,0.025585,0.031067,0.032623,0.033245,0.036212,0.038034,0.038317,0.042899,0.05297,0.056316,0.058106,0.062455,0.062842,0.068067,0.06866,0.075955,0.080522,0.090343,0.091276,0.092158,0.092654,0.094289,0.095639,0.09647,0.10557,0.10755,0.1278,0.13518,0.14024,0.14228,0.16007,0.16039,0.1666,0.16956,0.185,0.1855,0.18669,0.19887,0.20233,0.20357,0.20737,0.21236,0.21714,0.21966,0.24539,0.24633,0.26057,0.28287,0.30486,0.33699,0.33746,0.3493,0.36449,0.38504,0.38527,0.39251,0.42734,0.4356,0.43651,0.47939,0.48897,0.49452,0.51171,0.52888,0.56077,0.56579,0.59006,0.64438,0.6451,0.64953,0.65856,0.66563,0.67431,0.68452,0.77609,0.79869,0.83181,0.85504,0.85615,0.8587,0.89045,0.89738,0.89795,0.92423,0.96047,0.96145,0.96991,0.97154,0.98663,0.98986,0.99538,0.99741,0.99898,0.9992,0.99997,1,1,0.99741,0.99563,0.99475,0.99132,0.99007,0.98327,0.98148,0.97761,0.96645,0.96633,0.96021,0.95803,0.95803,0.94252,0.942,0.93494,0.92711,0.9087,0.89063,0.87686,0.85368,0.83096,0.79986,0.79856,0.77353,0.74872,0.73381,0.69305,0.68091,0.65608,0.64131,0.61037,0.60709,0.60035,0.58476,0.55227,0.51921,0.50189,0.48477,0.47592,0.47467,0.45876,0.44063,0.38715,0.37345,0.36601,0.34985,0.34974,0.33422,0.33231,0.32203,0.31391,0.28744,0.28372,0.26419,0.24678,0.19526,0.18648,0.18234,0.17181,0.16233,0.15883,0.15201,0.14724,0.14148,0.13234,0.13229,0.11699,0.11317,0.11238,0.11197,0.098345,0.098052,0.096757,0.095791,0.093325,0.08935,0.085901,0.071863,0.048156,0.04252,0.04205,0.041665,0.040438,0.039769,0.03387,0.030405,0.028079,0.026845,0.024418,0.022507,0.022166,0.019734,0.018463,0.017009,0.014883,0.012442,0.012298,0.011564,0.011078,0.010865,0.0088139,0.0083166,0.0063573,0.0058933,0.00515,0.004788,0.0046758,0.0041053,0.0040364,0.0038892,0.0035847,0.0030634 1,6.975e-26,1.1846e-25,1.2164e-25,1.4265e-25,1.6124e-25,1.8937e-25,2.5857e-25,5.4061e-25,8.62e-25,9.2594e-25,1.3401e-24,1.4233e-24,1.8078e-24,3.228e-24,3.8697e-24,4.3886e-24,7.5577e-24,8.2951e-24,9.1964e-24,1.2996e-23,1.3487e-23,1.3778e-23,1.7919e-23,2.0921e-23,2.1026e-23,2.8287e-23,2.906e-23,3.3218e-23,3.3807e-23,3.439e-23,8.4912e-23,1.9989e-22,2.159e-22,2.7741e-22,3.468e-22,4.123e-22,5.0606e-22,6.4184e-22,9.7385e-22,1.2242e-21,1.7737e-21,2.8225e-21,2.9457e-21,3.226e-21,3.5084e-21,5.4234e-21,5.427e-21,1.5226e-20,1.643e-20,1.7138e-20,2.3289e-20,2.382e-20,4.3359e-20,5.481e-20,6.0415e-20,7.4777e-20,8.5612e-20,1.0793e-19,1.1596e-19,2.0092e-19,2.8158e-19,8.0644e-19,1.074e-18,1.1817e-18,1.4018e-18,2.2373e-18,2.4615e-18,2.679e-18,3.9829e-18,5.7668e-18,6.6107e-18,7.3916e-18,1.1065e-17,1.974e-17,3.6162e-17,5.4224e-17,5.9017e-17,1.2517e-16,1.6205e-16,1.8275e-16,1.9275e-16,2.3909e-16,5.7679e-16,5.9329e-16,6.9107e-16,8.7978e-16,9.224e-16,1.3e-15,3.3178e-15,3.3589e-15,4.3647e-15,4.794e-15,1.3848e-14,1.8034e-14,1.8387e-14,2.3257e-14,3.1927e-14,3.2127e-14,3.2959e-14,3.9867e-14,3.9935e-14,4.7431e-14,5.0689e-14,1.2998e-13,1.9556e-13,1.9827e-13,3.1411e-13,3.551e-13,4.2907e-13,4.7033e-13,4.9647e-13,5.2705e-13,5.3741e-13,5.6606e-13,6.9741e-13,7.1451e-13,7.5106e-13,7.8239e-13,1.0639e-12,1.5026e-12,2.3347e-12,2.7535e-12,3.8965e-12,5.7248e-12,6.725e-12,7.3061e-12,1.8087e-11,2.0064e-11,2.1651e-11,2.5168e-11,3.0455e-11,3.5902e-11,4.1017e-11,4.1999e-11,4.2627e-11,5.0381e-11,7.7938e-11,8.0466e-11,9.5411e-11,1.2407e-10,1.4334e-10,1.4673e-10,3.3161e-10,3.3447e-10,3.9222e-10,5.3456e-10,5.6542e-10,6.9652e-10,7.3155e-10,1.0295e-09,1.2844e-09,2.1138e-09,2.1389e-09,3.7492e-09,3.995e-09,4.0767e-09,5.8367e-09,5.9708e-09,6.7889e-09,8.0341e-09,8.4667e-09,8.8088e-09,1.0292e-08,1.056e-08,1.0739e-08,1.2142e-08,1.2674e-08,1.2817e-08,1.4184e-08,1.4709e-08,1.798e-08,2.5014e-08,2.652e-08,2.6936e-08,3.1181e-08,3.3118e-08,4.2274e-08,6.4567e-08,7.3532e-08,9.0225e-08,9.7239e-08,1.1958e-07,1.4666e-07,1.4912e-07,1.5105e-07,1.5128e-07,1.6061e-07,1.6142e-07,1.9457e-07,2.1189e-07,2.4855e-07,2.5032e-07,2.6131e-07,3.4365e-07,3.4639e-07,3.9423e-07,4.5638e-07,5.9152e-07,6.1192e-07,6.7397e-07,6.8867e-07,7.2719e-07,7.9643e-07,9.1496e-07,9.1841e-07,1.2543e-06,1.7798e-06,1.8467e-06,1.9235e-06,1.9481e-06,2.3966e-06,2.72e-06,4.1548e-06,4.2471e-06,4.4391e-06,4.7819e-06,6.2894e-06,8.3374e-06,1.1299e-05,1.237e-05,1.3054e-05,1.4956e-05,1.9625e-05,2.2089e-05,2.5723e-05,3.2428e-05,3.9515e-05,4.0939e-05,5.9536e-05,6.2508e-05,6.3627e-05,6.9342e-05,7.1747e-05,9.3969e-05,0.00010536,0.00010889,0.00010925,0.00011704,0.00012838,0.00013397,0.00013653,0.00018962,0.00018969,0.00025353,0.00035086,0.00047066,0.0006136,0.00068706,0.00070761,0.0007579,0.00080453,0.000925,0.00093925,0.0012233,0.0013066,0.0014892,0.0017484,0.0019249,0.0019458,0.0021027,0.0022143,0.0025115,0.0030207,0.003073,0.0033289,0.0037719,0.0041701,0.0041896,0.005877,0.0062043,0.0063671,0.0068022,0.0070385,0.0074255,0.0080809,0.0083595,0.0087621,0.0094459,0.0104,0.011389,0.011493,0.012821,0.013767,0.01465,0.016842,0.017935,0.018347,0.019875,0.019971,0.020678,0.020997,0.025629,0.026949,0.027477,0.030001,0.031554,0.031795,0.035711,0.044368,0.047257,0.048805,0.052573,0.052908,0.057449,0.057965,0.064327,0.068323,0.076943,0.077764,0.07854,0.078976,0.080417,0.081607,0.08234,0.090377,0.092134,0.11014,0.11673,0.12126,0.12309,0.13909,0.13938,0.14499,0.14766,0.16165,0.1621,0.16319,0.17427,0.17742,0.17855,0.18203,0.18658,0.19096,0.19326,0.21691,0.21778,0.23093,0.25162,0.27212,0.30224,0.30268,0.31383,0.32818,0.34766,0.34788,0.35476,0.38802,0.39594,0.39682,0.43815,0.44744,0.45283,0.46955,0.48632,0.51762,0.52257,0.54656,0.60074,0.60147,0.60591,0.615,0.62213,0.6309,0.64124,0.73537,0.75906,0.79416,0.81912,0.82033,0.82309,0.85785,0.86555,0.86618,0.89584,0.93858,0.93978,0.95032,0.95239,0.97251,0.9772,0.98594,0.98968,0.99315,0.99374,0.99678,0.99721,0.99741,1,0.99977,0.99953,0.9982,0.99761,0.99379,0.99267,0.99014,0.98226,0.98217,0.97758,0.97592,0.97592,0.96367,0.96325,0.95749,0.95099,0.93537,0.91966,0.90749,0.88668,0.86594,0.83714,0.83592,0.8124,0.78885,0.77459,0.73523,0.72342,0.69912,0.68459,0.65396,0.65071,0.64399,0.62843,0.59582,0.56239,0.54478,0.5273,0.51824,0.51696,0.50063,0.48194,0.42643,0.41211,0.40432,0.38735,0.38723,0.37087,0.36886,0.35799,0.34938,0.32123,0.31727,0.29637,0.27767,0.22183,0.21225,0.20772,0.19617,0.18575,0.18189,0.17436,0.1691,0.16272,0.15258,0.15252,0.13547,0.13119,0.13031,0.12985,0.11455,0.11422,0.11276,0.11168,0.10889,0.10441,0.1005,0.084561,0.057356,0.050827,0.05028,0.049833,0.048407,0.047629,0.040747,0.036687,0.033954,0.032501,0.029637,0.027376,0.026972,0.024085,0.022573,0.020838,0.018294,0.015361,0.015188,0.014303,0.013715,0.013459,0.010972,0.010367,0.0079735,0.0074043,0.0064899,0.0060434,0.0059049,0.0051992,0.0051137,0.0049313,0.0045532,0.0039041 1,5.5314e-26,9.4044e-26,9.6572e-26,1.1329e-25,1.2809e-25,1.5048e-25,2.0559e-25,4.305e-25,6.8708e-25,7.3815e-25,1.0691e-24,1.1356e-24,1.4431e-24,2.58e-24,3.094e-24,3.5098e-24,6.0511e-24,6.6428e-24,7.3662e-24,1.0417e-23,1.0812e-23,1.1045e-23,1.4373e-23,1.6786e-23,1.6871e-23,2.2711e-23,2.3333e-23,2.6679e-23,2.7153e-23,2.7623e-23,6.8334e-23,1.6115e-22,1.7409e-22,2.2381e-22,2.7993e-22,3.3293e-22,4.0882e-22,5.1878e-22,7.8785e-22,9.9088e-22,1.4369e-21,2.2888e-21,2.3889e-21,2.6168e-21,2.8463e-21,4.4042e-21,4.4072e-21,1.2393e-20,1.3375e-20,1.3954e-20,1.8975e-20,1.9408e-20,3.5376e-20,4.4743e-20,4.9329e-20,6.1086e-20,6.9959e-20,8.8244e-20,9.4824e-20,1.6451e-19,2.3073e-19,6.6244e-19,8.8279e-19,9.7156e-19,1.153e-18,1.8422e-18,2.0274e-18,2.2069e-18,3.2842e-18,4.7593e-18,5.4577e-18,6.104e-18,9.1467e-18,1.634e-17,2.9979e-17,4.4998e-17,4.8986e-17,1.0409e-16,1.3485e-16,1.5211e-16,1.6046e-16,1.9915e-16,4.8152e-16,4.9533e-16,5.7719e-16,7.3526e-16,7.7097e-16,1.0875e-15,2.7824e-15,2.817e-15,3.6631e-15,4.0243e-15,1.1658e-14,1.5192e-14,1.549e-14,1.9606e-14,2.6938e-14,2.7107e-14,2.7811e-14,3.3658e-14,3.3716e-14,4.0063e-14,4.2822e-14,1.1009e-13,1.6583e-13,1.6814e-13,2.6672e-13,3.0163e-13,3.6466e-13,3.9983e-13,4.2211e-13,4.4819e-13,4.5702e-13,4.8146e-13,5.9354e-13,6.0814e-13,6.3934e-13,6.6609e-13,9.0652e-13,1.2816e-12,1.994e-12,2.3528e-12,3.3328e-12,4.9023e-12,5.7616e-12,6.261e-12,1.5543e-11,1.7247e-11,1.8615e-11,2.1649e-11,2.6212e-11,3.0916e-11,3.5336e-11,3.6185e-11,3.6727e-11,4.3431e-11,6.7278e-11,6.9468e-11,8.2414e-11,1.0726e-10,1.2397e-10,1.2691e-10,2.8759e-10,2.9008e-10,3.4034e-10,4.6432e-10,4.9121e-10,6.0553e-10,6.3609e-10,8.9616e-10,1.1189e-09,1.8445e-09,1.8665e-09,3.278e-09,3.4937e-09,3.5654e-09,5.111e-09,5.2288e-09,5.948e-09,7.0431e-09,7.4237e-09,7.7247e-09,9.0307e-09,9.2667e-09,9.4238e-09,1.066e-08,1.1129e-08,1.1255e-08,1.2459e-08,1.2923e-08,1.5807e-08,2.2018e-08,2.3349e-08,2.3716e-08,2.7468e-08,2.9182e-08,3.7283e-08,5.7033e-08,6.4984e-08,7.9797e-08,8.6025e-08,1.0587e-07,1.2995e-07,1.3214e-07,1.3386e-07,1.3406e-07,1.4236e-07,1.4308e-07,1.7259e-07,1.8801e-07,2.2068e-07,2.2226e-07,2.3206e-07,3.0551e-07,3.0795e-07,3.5066e-07,4.0618e-07,5.27e-07,5.4525e-07,6.0077e-07,6.1393e-07,6.4841e-07,7.1041e-07,8.166e-07,8.1969e-07,1.1209e-06,1.5929e-06,1.653e-06,1.722e-06,1.7441e-06,2.1475e-06,2.4387e-06,3.7318e-06,3.815e-06,3.9882e-06,4.2976e-06,5.6593e-06,7.5114e-06,1.0194e-05,1.1164e-05,1.1785e-05,1.351e-05,1.775e-05,1.9989e-05,2.3294e-05,2.9398e-05,3.5857e-05,3.7155e-05,5.4131e-05,5.6846e-05,5.787e-05,6.3094e-05,6.5293e-05,8.5631e-05,9.6067e-05,9.93e-05,9.9634e-05,0.00010678,0.00011717,0.0001223,0.00012465,0.00017341,0.00017348,0.00023222,0.00032192,0.00043253,0.00056472,0.00063273,0.00065176,0.00069836,0.00074157,0.00085331,0.00086652,0.0011303,0.0012077,0.0013776,0.0016189,0.0017834,0.0018029,0.0019492,0.0020533,0.0023307,0.0028065,0.0028554,0.0030948,0.0035094,0.0038824,0.0039007,0.005484,0.0057915,0.0059445,0.0063536,0.0065758,0.0069399,0.0075569,0.0078193,0.0081986,0.008843,0.0097432,0.010676,0.010775,0.012029,0.012923,0.013758,0.015834,0.016869,0.01726,0.018709,0.0188,0.01947,0.019773,0.024173,0.025428,0.02593,0.028332,0.029811,0.030041,0.033773,0.042038,0.044799,0.04628,0.049885,0.050207,0.054556,0.05505,0.06115,0.064985,0.073265,0.074054,0.074801,0.07522,0.076605,0.07775,0.078455,0.086191,0.087883,0.10525,0.11161,0.11599,0.11776,0.13324,0.13352,0.13895,0.14154,0.1551,0.15555,0.1566,0.16736,0.17042,0.17152,0.17489,0.17932,0.18358,0.18582,0.20886,0.2097,0.22253,0.24273,0.26277,0.29228,0.29271,0.30364,0.31773,0.33687,0.33709,0.34386,0.37661,0.38442,0.38528,0.4261,0.43529,0.44062,0.45718,0.4738,0.50488,0.50979,0.53365,0.58769,0.58842,0.59286,0.60195,0.60908,0.61786,0.62821,0.7229,0.74686,0.78246,0.80788,0.8091,0.81192,0.84749,0.8554,0.85605,0.88664,0.9312,0.93246,0.9436,0.94579,0.96736,0.97247,0.98215,0.98639,0.99041,0.99112,0.99483,0.99538,0.99563,0.99977,1,0.99996,0.99926,0.99886,0.99595,0.99503,0.99291,0.98604,0.98596,0.98185,0.98034,0.98034,0.96911,0.96871,0.96336,0.95728,0.94254,0.92759,0.91593,0.89588,0.8758,0.84775,0.84657,0.82356,0.80045,0.78642,0.74758,0.73589,0.7118,0.69737,0.66691,0.66367,0.65697,0.64146,0.60887,0.57539,0.55772,0.54017,0.53106,0.52978,0.51335,0.49453,0.43848,0.42399,0.4161,0.39891,0.39879,0.38219,0.38015,0.36912,0.36038,0.33175,0.32771,0.30641,0.28734,0.23022,0.22039,0.21575,0.20389,0.19319,0.18922,0.18148,0.17606,0.16949,0.15904,0.15899,0.14139,0.13698,0.13607,0.13559,0.11977,0.11943,0.11792,0.1168,0.11392,0.10927,0.10523,0.088684,0.060371,0.053556,0.052986,0.052518,0.051028,0.050215,0.043017,0.038766,0.0359,0.034376,0.031371,0.028996,0.028572,0.025537,0.023945,0.022119,0.019438,0.016343,0.016161,0.015225,0.014605,0.014333,0.011702,0.011061,0.0085232,0.0079188,0.0069471,0.0064724,0.0063249,0.0055737,0.0054828,0.0052885,0.0048855,0.0041932 1,5.0167e-26,8.533e-26,8.7626e-26,1.0281e-25,1.1625e-25,1.3659e-25,1.8667e-25,3.9111e-25,6.2447e-25,6.7093e-25,9.7206e-25,1.0326e-24,1.3125e-24,2.3476e-24,2.8157e-24,3.1945e-24,5.5101e-24,6.0494e-24,6.7088e-24,9.4902e-24,9.85e-24,1.0063e-23,1.3098e-23,1.5299e-23,1.5377e-23,2.0705e-23,2.1272e-23,2.4325e-23,2.4758e-23,2.5187e-23,6.2358e-23,1.4718e-22,1.59e-22,2.0446e-22,2.5578e-22,3.0425e-22,3.7367e-22,4.7428e-22,7.2056e-22,9.0643e-22,1.3148e-21,2.0953e-21,2.1871e-21,2.3959e-21,2.6063e-21,4.0345e-21,4.0371e-21,1.1364e-20,1.2265e-20,1.2796e-20,1.7406e-20,1.7804e-20,3.247e-20,4.1077e-20,4.5291e-20,5.6097e-20,6.4254e-20,8.1066e-20,8.7116e-20,1.5122e-19,2.1216e-19,6.0975e-19,8.1281e-19,8.9463e-19,1.0619e-18,1.6974e-18,1.8682e-18,2.0339e-18,3.0278e-18,4.3895e-18,5.0342e-18,5.631e-18,8.4415e-18,1.5089e-17,2.7702e-17,4.1597e-17,4.5287e-17,9.6305e-17,1.248e-16,1.408e-16,1.4853e-16,1.8439e-16,4.4625e-16,4.5906e-16,5.3501e-16,6.8171e-16,7.1486e-16,1.0088e-15,2.5835e-15,2.6156e-15,3.4023e-15,3.7382e-15,1.0842e-14,1.4133e-14,1.4411e-14,1.8245e-14,2.5077e-14,2.5234e-14,2.589e-14,3.134e-14,3.1394e-14,3.7312e-14,3.9884e-14,1.0265e-13,1.547e-13,1.5686e-13,2.4896e-13,2.8158e-13,3.4049e-13,3.7337e-13,3.9421e-13,4.186e-13,4.2686e-13,4.4971e-13,5.5453e-13,5.6819e-13,5.9738e-13,6.224e-13,8.4738e-13,1.1985e-12,1.8657e-12,2.2019e-12,3.1204e-12,4.5921e-12,5.3981e-12,5.8666e-12,1.458e-11,1.6181e-11,1.7467e-11,2.0317e-11,2.4606e-11,2.9028e-11,3.3184e-11,3.3981e-11,3.4491e-11,4.0796e-11,6.3233e-11,6.5294e-11,7.748e-11,1.0087e-10,1.1661e-10,1.1938e-10,2.7083e-10,2.7317e-10,3.2057e-10,4.3755e-10,4.6293e-10,5.7082e-10,5.9967e-10,8.4526e-10,1.0557e-09,1.7415e-09,1.7623e-09,3.0976e-09,3.3017e-09,3.3695e-09,4.8327e-09,4.9443e-09,5.6254e-09,6.6628e-09,7.0234e-09,7.3086e-09,8.5462e-09,8.7699e-09,8.9187e-09,1.0091e-08,1.0535e-08,1.0654e-08,1.1797e-08,1.2236e-08,1.4972e-08,2.0864e-08,2.2128e-08,2.2477e-08,2.6038e-08,2.7665e-08,3.5358e-08,5.4125e-08,6.1683e-08,7.5768e-08,8.1692e-08,1.0057e-07,1.2349e-07,1.2557e-07,1.272e-07,1.2739e-07,1.353e-07,1.3599e-07,1.6408e-07,1.7877e-07,2.0989e-07,2.1139e-07,2.2072e-07,2.9071e-07,2.9304e-07,3.3376e-07,3.8669e-07,5.0194e-07,5.1935e-07,5.7233e-07,5.8489e-07,6.178e-07,6.7697e-07,7.7834e-07,7.813e-07,1.069e-06,1.52e-06,1.5775e-06,1.6435e-06,1.6646e-06,2.0503e-06,2.3289e-06,3.5665e-06,3.6462e-06,3.8121e-06,4.1083e-06,5.4127e-06,7.188e-06,9.7606e-06,1.0692e-05,1.1287e-05,1.2942e-05,1.7013e-05,1.9164e-05,2.2339e-05,2.8206e-05,3.4416e-05,3.5665e-05,5.2e-05,5.4614e-05,5.5599e-05,6.0629e-05,6.2746e-05,8.2337e-05,9.2394e-05,9.551e-05,9.5832e-05,0.00010272,0.00011274,0.00011769,0.00011995,0.00016699,0.00016706,0.00022377,0.00031043,0.00041737,0.00054526,0.0006111,0.00062953,0.00067464,0.00071649,0.00082472,0.00083752,0.0010932,0.0011683,0.001333,0.0015671,0.0017268,0.0017457,0.0018878,0.0019888,0.0022583,0.0027206,0.0027682,0.0030009,0.0034041,0.0037669,0.0037847,0.0053259,0.0056254,0.0057744,0.006173,0.0063895,0.0067444,0.0073457,0.0076015,0.0079714,0.0085999,0.009478,0.010388,0.010485,0.011709,0.012582,0.013398,0.015426,0.016438,0.016819,0.018236,0.018325,0.018981,0.019277,0.023582,0.024811,0.025302,0.027655,0.029103,0.029328,0.032986,0.041089,0.043798,0.045251,0.04879,0.049105,0.053375,0.053861,0.059853,0.063621,0.071761,0.072537,0.073271,0.073684,0.075046,0.076172,0.076866,0.084477,0.086143,0.10324,0.10951,0.11383,0.11557,0.13083,0.13111,0.13647,0.13902,0.15241,0.15285,0.15389,0.16451,0.16754,0.16862,0.17196,0.17633,0.18054,0.18276,0.20553,0.20636,0.21905,0.23905,0.2589,0.28814,0.28857,0.29941,0.31339,0.33239,0.3326,0.33932,0.37186,0.37962,0.38048,0.42108,0.43022,0.43553,0.45201,0.46857,0.49954,0.50444,0.52825,0.58221,0.58293,0.58737,0.59646,0.60358,0.61237,0.62273,0.71762,0.74168,0.77748,0.80308,0.80432,0.80715,0.84306,0.85105,0.8517,0.88268,0.92799,0.92927,0.94065,0.94289,0.96507,0.97035,0.98042,0.98487,0.98913,0.98988,0.99387,0.99447,0.99475,0.99953,0.99996,1,0.99957,0.99925,0.99672,0.99589,0.99395,0.98749,0.98742,0.98351,0.98207,0.98207,0.97127,0.97089,0.9657,0.9598,0.94544,0.93081,0.91937,0.89966,0.87986,0.85214,0.85097,0.82818,0.80526,0.79133,0.75273,0.74109,0.71711,0.70272,0.67234,0.6691,0.66242,0.64693,0.61436,0.58087,0.56318,0.54561,0.53648,0.53519,0.51872,0.49985,0.44359,0.42903,0.4211,0.40382,0.4037,0.38701,0.38495,0.37385,0.36505,0.33622,0.33216,0.3107,0.29146,0.23381,0.22388,0.21919,0.2072,0.19638,0.19237,0.18453,0.17905,0.1724,0.16182,0.16176,0.14394,0.13947,0.13854,0.13806,0.12202,0.12168,0.12015,0.119,0.11608,0.11136,0.10726,0.090465,0.061677,0.05474,0.054159,0.053683,0.052166,0.051337,0.044004,0.039669,0.036747,0.035193,0.032126,0.029702,0.029269,0.026169,0.024544,0.022678,0.019938,0.016772,0.016586,0.015629,0.014993,0.014716,0.012022,0.011365,0.0087644,0.0081447,0.007148,0.0066608,0.0065095,0.0057385,0.0056451,0.0054456,0.0050318,0.0043206 1,3.651e-26,6.219e-26,6.3868e-26,7.4968e-26,8.4797e-26,9.9678e-26,1.3634e-25,2.8625e-25,4.5764e-25,4.9178e-25,7.1324e-25,7.5779e-25,9.6383e-25,1.7268e-24,2.0722e-24,2.3518e-24,4.0628e-24,4.4616e-24,4.9494e-24,7.0083e-24,7.2748e-24,7.4326e-24,9.6814e-24,1.1314e-23,1.1371e-23,1.5324e-23,1.5746e-23,1.8012e-23,1.8334e-23,1.8652e-23,4.6301e-23,1.0955e-22,1.1838e-22,1.5234e-22,1.907e-22,2.2696e-22,2.7891e-22,3.5426e-22,5.3888e-22,6.7835e-22,9.851e-22,1.572e-21,1.6411e-21,1.7983e-21,1.9567e-21,3.0329e-21,3.0349e-21,8.5698e-21,9.2517e-21,9.6534e-21,1.3143e-20,1.3445e-20,2.4566e-20,3.11e-20,3.4301e-20,4.2514e-20,4.8716e-20,6.1507e-20,6.6113e-20,1.1496e-19,1.6146e-19,4.6561e-19,6.2124e-19,6.8399e-19,8.1233e-19,1.3005e-18,1.4317e-18,1.5591e-18,2.3241e-18,3.3734e-18,3.8707e-18,4.3311e-18,6.5015e-18,1.1644e-17,2.142e-17,3.2209e-17,3.5077e-17,7.4783e-17,9.6996e-17,1.0948e-16,1.1551e-16,1.435e-16,3.4836e-16,3.584e-16,4.1792e-16,5.3297e-16,5.5898e-16,7.8975e-16,2.0294e-15,2.0547e-15,2.6752e-15,2.9403e-15,8.5609e-15,1.1171e-14,1.1391e-14,1.4434e-14,1.9862e-14,1.9988e-14,2.0509e-14,2.4844e-14,2.4887e-14,2.9597e-14,3.1646e-14,8.1739e-14,1.2338e-13,1.251e-13,1.9891e-13,2.2508e-13,2.7238e-13,2.9879e-13,3.1553e-13,3.3512e-13,3.4176e-13,3.6013e-13,4.4444e-13,4.5543e-13,4.7892e-13,4.9906e-13,6.8028e-13,9.6352e-13,1.5025e-12,1.7744e-12,2.5182e-12,3.7116e-12,4.3659e-12,4.7465e-12,1.1841e-11,1.3147e-11,1.4196e-11,1.6523e-11,2.0027e-11,2.3642e-11,2.7042e-11,2.7695e-11,2.8112e-11,3.3274e-11,5.1672e-11,5.3363e-11,6.3369e-11,8.2597e-11,9.5543e-11,9.7824e-11,2.2272e-10,2.2465e-10,2.6382e-10,3.6059e-10,3.816e-10,4.7099e-10,4.949e-10,6.9867e-10,8.7347e-10,1.4442e-09,1.4616e-09,2.5758e-09,2.7463e-09,2.803e-09,4.0271e-09,4.1205e-09,4.691e-09,5.5606e-09,5.863e-09,6.1023e-09,7.1409e-09,7.3287e-09,7.4538e-09,8.4381e-09,8.8117e-09,8.9118e-09,9.8723e-09,1.0242e-08,1.2544e-08,1.751e-08,1.8575e-08,1.887e-08,2.1876e-08,2.325e-08,2.9751e-08,4.564e-08,5.2048e-08,6.4001e-08,6.9031e-08,8.5074e-08,1.0457e-07,1.0634e-07,1.0774e-07,1.079e-07,1.1463e-07,1.1521e-07,1.3915e-07,1.5168e-07,1.7823e-07,1.7952e-07,1.8748e-07,2.473e-07,2.4929e-07,2.8413e-07,3.2945e-07,4.2824e-07,4.4318e-07,4.8865e-07,4.9943e-07,5.2769e-07,5.7853e-07,6.6567e-07,6.6822e-07,9.1586e-07,1.3049e-06,1.3545e-06,1.4115e-06,1.4297e-06,1.7632e-06,2.0041e-06,3.0768e-06,3.146e-06,3.2899e-06,3.5472e-06,4.6811e-06,6.227e-06,8.4714e-06,9.2846e-06,9.8046e-06,1.1252e-05,1.4817e-05,1.6703e-05,1.9489e-05,2.4644e-05,3.0108e-05,3.1208e-05,4.5614e-05,4.7923e-05,4.8793e-05,5.3238e-05,5.511e-05,7.2449e-05,8.1362e-05,8.4125e-05,8.4411e-05,9.0518e-05,9.9411e-05,0.00010381,0.00010582,0.00014766,0.00014772,0.00019827,0.00027571,0.00037151,0.00048632,0.00054551,0.00056209,0.00060269,0.00064037,0.00073791,0.00074945,0.00098031,0.0010482,0.0011972,0.0014094,0.0015542,0.0015714,0.0017003,0.0017921,0.0020371,0.0024581,0.0025014,0.0027135,0.0030815,0.003413,0.0034292,0.0048405,0.0051152,0.005252,0.005618,0.0058169,0.006143,0.006696,0.0069315,0.007272,0.007851,0.0086607,0.0095009,0.0095899,0.010722,0.011529,0.012284,0.014164,0.015103,0.015457,0.016773,0.016856,0.017465,0.01774,0.021749,0.022895,0.023353,0.025549,0.026902,0.027113,0.030534,0.038131,0.040675,0.042041,0.045369,0.045666,0.049687,0.050144,0.055795,0.059353,0.067049,0.067784,0.068479,0.068869,0.070159,0.071225,0.071882,0.079098,0.080678,0.096927,0.1029,0.10701,0.10868,0.12325,0.12351,0.12863,0.13108,0.1439,0.14432,0.14531,0.1555,0.15841,0.15945,0.16266,0.16686,0.17091,0.17304,0.19497,0.19578,0.20802,0.22735,0.24658,0.27497,0.27538,0.28593,0.29953,0.31806,0.31827,0.32483,0.35664,0.36424,0.36509,0.40493,0.41392,0.41914,0.43539,0.45171,0.48232,0.48717,0.51077,0.56443,0.56515,0.56958,0.57864,0.58576,0.59454,0.6049,0.70033,0.7247,0.7611,0.78725,0.78852,0.79143,0.82834,0.83659,0.83727,0.86943,0.9171,0.91847,0.93063,0.93303,0.95711,0.96296,0.97429,0.9794,0.98442,0.98531,0.99021,0.99097,0.99132,0.9982,0.99926,0.99957,1,0.99996,0.99867,0.99812,0.99674,0.99168,0.99162,0.98837,0.98715,0.98715,0.97776,0.97743,0.97281,0.9675,0.95438,0.94082,0.93012,0.91151,0.89266,0.86606,0.86493,0.84291,0.82064,0.80706,0.76926,0.75782,0.73419,0.71998,0.68988,0.68667,0.68004,0.66464,0.63218,0.59869,0.58096,0.56331,0.55413,0.55284,0.53626,0.51723,0.46034,0.44557,0.43752,0.41995,0.41983,0.40283,0.40074,0.38943,0.38045,0.35099,0.34683,0.32484,0.3051,0.24572,0.23546,0.23061,0.21821,0.20699,0.20283,0.1947,0.189,0.18209,0.17108,0.17103,0.15246,0.14778,0.14682,0.14631,0.12955,0.12919,0.12759,0.12639,0.12333,0.11839,0.11409,0.096446,0.066081,0.058734,0.058119,0.057614,0.056005,0.055127,0.047338,0.042727,0.039615,0.037958,0.034686,0.032096,0.031634,0.028319,0.026578,0.024579,0.021638,0.018235,0.018035,0.017004,0.01632,0.016021,0.013114,0.012405,0.0095904,0.0089184,0.0078367,0.0073074,0.007143,0.0063042,0.0062025,0.0059853,0.0055344,0.0047587 1,3.3026e-26,5.6282e-26,5.7802e-26,6.7856e-26,7.6761e-26,9.0244e-26,1.2347e-25,2.594e-25,4.1487e-25,4.4586e-25,6.4684e-25,6.8728e-25,8.7434e-25,1.5673e-24,1.8811e-24,2.1351e-24,3.6903e-24,4.0529e-24,4.4964e-24,6.3688e-24,6.6112e-24,6.7547e-24,8.8006e-24,1.0286e-23,1.0338e-23,1.3936e-23,1.4319e-23,1.6383e-23,1.6675e-23,1.6965e-23,4.2148e-23,9.9805e-23,1.0786e-22,1.3883e-22,1.7382e-22,2.069e-22,2.5432e-22,3.2309e-22,4.9166e-22,6.1904e-22,8.9929e-22,1.4357e-21,1.4989e-21,1.6426e-21,1.7874e-21,2.7717e-21,2.7735e-21,7.8394e-21,8.4639e-21,8.8317e-21,1.2028e-20,1.2304e-20,2.2495e-20,2.8485e-20,3.142e-20,3.8951e-20,4.464e-20,5.6373e-20,6.0599e-20,1.0543e-19,1.4813e-19,4.2761e-19,5.707e-19,6.284e-19,7.4645e-19,1.1956e-18,1.3164e-18,1.4336e-18,2.1379e-18,3.1043e-18,3.5624e-18,3.9867e-18,5.987e-18,1.0729e-17,1.975e-17,2.971e-17,3.2358e-17,6.9043e-17,8.9576e-17,1.0111e-16,1.0669e-16,1.3258e-16,3.2216e-16,3.3146e-16,3.8657e-16,4.9312e-16,5.1721e-16,7.3102e-16,1.8805e-15,1.904e-15,2.4796e-15,2.7257e-15,7.9455e-15,1.0371e-14,1.0576e-14,1.3405e-14,1.8453e-14,1.8569e-14,1.9054e-14,2.3087e-14,2.3127e-14,2.751e-14,2.9416e-14,7.6065e-14,1.1487e-13,1.1648e-13,1.853e-13,2.0971e-13,2.5384e-13,2.7848e-13,2.941e-13,3.1239e-13,3.1859e-13,3.3573e-13,4.1444e-13,4.247e-13,4.4663e-13,4.6544e-13,6.3469e-13,8.9933e-13,1.4032e-12,1.6575e-12,2.3532e-12,3.4702e-12,4.0829e-12,4.4392e-12,1.1087e-11,1.2312e-11,1.3296e-11,1.5478e-11,1.8765e-11,2.2158e-11,2.5349e-11,2.5962e-11,2.6354e-11,3.12e-11,4.8478e-11,5.0067e-11,5.9469e-11,7.7542e-11,8.9713e-11,9.1858e-11,2.0937e-10,2.1119e-10,2.4807e-10,3.3921e-10,3.59e-10,4.4323e-10,4.6576e-10,6.5786e-10,8.2271e-10,1.3613e-09,1.3777e-09,2.4299e-09,2.591e-09,2.6446e-09,3.8016e-09,3.8899e-09,4.4293e-09,5.2517e-09,5.5378e-09,5.7641e-09,6.7468e-09,6.9245e-09,7.0428e-09,7.9744e-09,8.3281e-09,8.4228e-09,9.332e-09,9.6819e-09,1.1862e-08,1.6566e-08,1.7576e-08,1.7855e-08,2.0704e-08,2.2006e-08,2.8171e-08,4.3246e-08,4.9328e-08,6.0676e-08,6.5453e-08,8.0692e-08,9.9219e-08,1.009e-07,1.0222e-07,1.0238e-07,1.0877e-07,1.0933e-07,1.3209e-07,1.44e-07,1.6926e-07,1.7048e-07,1.7806e-07,2.3497e-07,2.3687e-07,2.7003e-07,3.1318e-07,4.0727e-07,4.2151e-07,4.6483e-07,4.7511e-07,5.0204e-07,5.5049e-07,6.3356e-07,6.3599e-07,8.7217e-07,1.2434e-06,1.2907e-06,1.3452e-06,1.3626e-06,1.681e-06,1.9112e-06,2.9364e-06,3.0025e-06,3.1402e-06,3.3862e-06,4.471e-06,5.9506e-06,8.1002e-06,8.8794e-06,9.3776e-06,1.0765e-05,1.4183e-05,1.5992e-05,1.8665e-05,2.3614e-05,2.8861e-05,2.9918e-05,4.3762e-05,4.5982e-05,4.6818e-05,5.1092e-05,5.2893e-05,6.9575e-05,7.8153e-05,8.0813e-05,8.1088e-05,8.6968e-05,9.5531e-05,9.9764e-05,0.0001017,0.00014202,0.00014207,0.00019082,0.00026555,0.00035806,0.00046902,0.00052625,0.00054228,0.00058155,0.000618,0.00071237,0.00072355,0.00094704,0.0010128,0.0011572,0.0013628,0.0015032,0.0015199,0.001645,0.001734,0.0019717,0.0023803,0.0024224,0.0026284,0.0029858,0.003308,0.0033238,0.0046961,0.0049634,0.0050965,0.0054527,0.0056463,0.0059638,0.0065024,0.0067317,0.0070634,0.0076275,0.0084166,0.0092357,0.0093225,0.010426,0.011214,0.011951,0.013785,0.014702,0.015048,0.016334,0.016415,0.01701,0.017279,0.021198,0.022318,0.022767,0.024915,0.026239,0.026445,0.029795,0.037237,0.039731,0.04107,0.044334,0.044625,0.04857,0.049019,0.054565,0.058058,0.065618,0.06634,0.067023,0.067406,0.068674,0.069722,0.070368,0.077462,0.079015,0.095002,0.10088,0.10493,0.10657,0.12093,0.12119,0.12624,0.12865,0.14129,0.14171,0.14269,0.15274,0.15561,0.15664,0.1598,0.16396,0.16795,0.17005,0.19172,0.19252,0.20463,0.22374,0.24277,0.27089,0.27131,0.28176,0.29524,0.31362,0.31383,0.32033,0.35191,0.35947,0.3603,0.3999,0.40885,0.41404,0.4302,0.44645,0.47694,0.48177,0.50529,0.55884,0.55956,0.56399,0.57304,0.58015,0.58892,0.59928,0.69485,0.7193,0.75588,0.78219,0.78347,0.78639,0.82361,0.83194,0.83263,0.86514,0.91354,0.91493,0.92733,0.92978,0.95445,0.96047,0.97219,0.97751,0.98276,0.9837,0.98888,0.9897,0.99007,0.99761,0.99886,0.99925,0.99996,1,0.9991,0.99864,0.99744,0.99283,0.99277,0.98973,0.98858,0.98858,0.97964,0.97932,0.97489,0.96977,0.95705,0.94383,0.93337,0.91511,0.89657,0.87033,0.86922,0.84745,0.8254,0.81194,0.77441,0.76304,0.73953,0.72538,0.69538,0.69218,0.68557,0.6702,0.63779,0.60431,0.58657,0.5689,0.55971,0.55842,0.54181,0.52274,0.46566,0.45083,0.44274,0.42508,0.42496,0.40788,0.40577,0.39439,0.38536,0.35571,0.35152,0.32937,0.30947,0.24956,0.23919,0.23429,0.22175,0.21041,0.2062,0.19798,0.19221,0.18523,0.17408,0.17402,0.15521,0.15048,0.1495,0.14899,0.132,0.13163,0.13,0.12879,0.12569,0.12067,0.11631,0.098393,0.06752,0.060041,0.059415,0.058901,0.057262,0.056367,0.048432,0.043731,0.040556,0.038866,0.035527,0.032884,0.032412,0.029026,0.027248,0.025205,0.022199,0.018719,0.018513,0.017459,0.016759,0.016452,0.013476,0.01275,0.0098646,0.0091755,0.0080657,0.0075225,0.0073537,0.0064925,0.0063881,0.006165,0.0057019,0.0049048 1,2.084e-26,3.559e-26,3.6554e-26,4.294e-26,4.8598e-26,5.7172e-26,7.8318e-26,1.6502e-25,2.6443e-25,2.8426e-25,4.1302e-25,4.3895e-25,5.5896e-25,1.0043e-24,1.2063e-24,1.3699e-24,2.373e-24,2.6071e-24,2.8937e-24,4.1045e-24,4.2614e-24,4.3543e-24,5.6793e-24,6.6419e-24,6.6758e-24,9.0102e-24,9.2592e-24,1.0599e-23,1.079e-23,1.0978e-23,2.7377e-23,6.5062e-23,7.0334e-23,9.0627e-23,1.1358e-22,1.3529e-22,1.6644e-22,2.1167e-22,3.2269e-22,4.0669e-22,5.9175e-22,9.4666e-22,9.8848e-22,1.0837e-21,1.1796e-21,1.8327e-21,1.834e-21,5.2075e-21,5.6241e-21,5.8696e-21,8.005e-21,8.1896e-21,1.5013e-20,1.903e-20,2.1001e-20,2.6059e-20,2.9883e-20,3.7777e-20,4.0622e-20,7.0853e-20,9.9699e-20,2.8921e-19,3.8651e-19,4.2578e-19,5.0616e-19,8.1249e-19,8.9499e-19,9.751e-19,1.4568e-18,2.1191e-18,2.4334e-18,2.7247e-18,4.0997e-18,7.3674e-18,1.3602e-17,2.0502e-17,2.2338e-17,4.7841e-17,6.2148e-17,7.0195e-17,7.4088e-17,9.2164e-17,2.2495e-16,2.3147e-16,2.7016e-16,3.4505e-16,3.62e-16,5.1254e-16,1.3248e-15,1.3415e-15,1.7495e-15,1.924e-15,5.64e-15,7.3721e-15,7.5184e-15,9.5414e-15,1.3157e-14,1.3241e-14,1.3588e-14,1.6481e-14,1.651e-14,1.9657e-14,2.1026e-14,5.4651e-14,8.2718e-14,8.3882e-14,1.3379e-13,1.5152e-13,1.8359e-13,2.0152e-13,2.1289e-13,2.2621e-13,2.3072e-13,2.4321e-13,3.0057e-13,3.0806e-13,3.2406e-13,3.3778e-13,4.6142e-13,6.5511e-13,1.0247e-12,1.2116e-12,1.7237e-12,2.5476e-12,3.0002e-12,3.2637e-12,8.1958e-12,9.1065e-12,9.8386e-12,1.1464e-11,1.3915e-11,1.6447e-11,1.8831e-11,1.9289e-11,1.9582e-11,2.3207e-11,3.6157e-11,3.7349e-11,4.441e-11,5.8001e-11,6.7166e-11,6.8783e-11,1.5759e-10,1.5897e-10,1.8692e-10,2.5611e-10,2.7115e-10,3.3522e-10,3.5237e-10,4.9882e-10,6.2474e-10,1.0372e-09,1.0497e-09,1.8585e-09,1.9826e-09,2.0239e-09,2.9164e-09,2.9847e-09,3.4016e-09,4.0379e-09,4.2594e-09,4.4347e-09,5.1964e-09,5.3342e-09,5.426e-09,6.149e-09,6.4236e-09,6.4972e-09,7.2037e-09,7.4757e-09,9.172e-09,1.284e-08,1.3628e-08,1.3846e-08,1.6072e-08,1.7091e-08,2.1917e-08,3.375e-08,3.8533e-08,4.747e-08,5.1236e-08,6.3262e-08,7.7908e-08,7.9238e-08,8.0285e-08,8.0408e-08,8.5469e-08,8.5912e-08,1.0394e-07,1.1339e-07,1.3344e-07,1.3441e-07,1.4043e-07,1.8571e-07,1.8722e-07,2.1365e-07,2.4807e-07,3.2327e-07,3.3465e-07,3.6933e-07,3.7756e-07,3.9914e-07,4.3797e-07,5.0463e-07,5.0658e-07,6.9646e-07,9.9574e-07,1.034e-06,1.0779e-06,1.092e-06,1.3495e-06,1.5359e-06,2.3683e-06,2.4221e-06,2.5341e-06,2.7344e-06,3.6189e-06,4.8284e-06,6.5902e-06,7.23e-06,7.6393e-06,8.7803e-06,1.1597e-05,1.309e-05,1.5299e-05,1.9397e-05,2.3752e-05,2.4629e-05,3.6155e-05,3.8006e-05,3.8705e-05,4.2273e-05,4.3778e-05,5.7737e-05,6.4929e-05,6.716e-05,6.7391e-05,7.2327e-05,7.9523e-05,8.3081e-05,8.4713e-05,0.00011869,0.00011874,0.00015995,0.00022336,0.00030212,0.00039689,0.00044588,0.00045961,0.00049327,0.00052454,0.00060559,0.0006152,0.00080767,0.00086438,0.00098916,0.0011671,0.0012889,0.0013033,0.0014119,0.0014892,0.001696,0.0020522,0.0020889,0.0022688,0.0025814,0.0028635,0.0028774,0.0040834,0.004319,0.0044363,0.0047505,0.0049215,0.005202,0.0056783,0.0058813,0.006175,0.0066752,0.0073757,0.0081038,0.008181,0.0091639,0.0098663,0.010524,0.012165,0.012986,0.013296,0.01445,0.014522,0.015057,0.015298,0.018826,0.019837,0.020242,0.022183,0.02338,0.023567,0.026602,0.033367,0.035641,0.036862,0.039843,0.040109,0.043718,0.044129,0.049214,0.052423,0.059379,0.060044,0.060673,0.061027,0.062196,0.063163,0.063758,0.070312,0.071749,0.086571,0.092039,0.09581,0.097336,0.11073,0.11098,0.1157,0.11795,0.1298,0.13019,0.13111,0.14056,0.14326,0.14423,0.1472,0.15111,0.15488,0.15686,0.17734,0.17809,0.18956,0.20772,0.22585,0.25272,0.25311,0.26312,0.27607,0.29373,0.29393,0.3002,0.33069,0.338,0.33881,0.37724,0.38595,0.39101,0.40677,0.42266,0.45254,0.45728,0.48042,0.53336,0.53408,0.53847,0.54746,0.55453,0.56326,0.57358,0.66955,0.69433,0.73161,0.75859,0.75991,0.76292,0.80141,0.81008,0.81079,0.84485,0.8964,0.8979,0.91135,0.91403,0.94132,0.94811,0.96157,0.96784,0.97414,0.97529,0.98175,0.98279,0.98327,0.99379,0.99595,0.99672,0.99867,0.9991,1,0.99995,0.99958,0.997,0.99696,0.99488,0.99406,0.99406,0.98722,0.98696,0.98338,0.97913,0.96828,0.95668,0.94733,0.93077,0.91369,0.88921,0.88816,0.8676,0.84662,0.83373,0.79754,0.78651,0.76361,0.74978,0.72034,0.71719,0.71067,0.69549,0.66337,0.63002,0.61229,0.59459,0.58536,0.58406,0.56735,0.54813,0.49029,0.4752,0.46695,0.44893,0.44881,0.43133,0.42918,0.41751,0.40824,0.37774,0.37342,0.35055,0.32995,0.26759,0.25675,0.25162,0.23848,0.22657,0.22215,0.21349,0.20742,0.20005,0.18828,0.18822,0.1683,0.16328,0.16225,0.1617,0.14363,0.14324,0.14151,0.14021,0.1369,0.13155,0.12689,0.10771,0.074442,0.066337,0.065657,0.065099,0.06332,0.062348,0.053712,0.048583,0.045114,0.043264,0.039606,0.036706,0.036187,0.032465,0.030507,0.028254,0.024934,0.021079,0.020851,0.019681,0.018903,0.018562,0.015249,0.014439,0.011212,0.010439,0.0091928,0.0085819,0.0083919,0.0074216,0.0073038,0.0070521,0.0065291,0.0056274 1,1.8759e-26,3.205e-26,3.292e-26,3.8677e-26,4.3778e-26,5.1508e-26,7.058e-26,1.4882e-25,2.3857e-25,2.5648e-25,3.7277e-25,3.962e-25,5.0463e-25,9.0717e-25,1.0898e-24,1.2377e-24,2.1452e-24,2.3571e-24,2.6164e-24,3.7124e-24,3.8544e-24,3.9385e-24,5.1383e-24,6.0101e-24,6.0408e-24,8.1554e-24,8.3811e-24,9.5954e-24,9.7677e-24,9.9382e-24,2.4805e-23,5.9e-23,6.3786e-23,8.2209e-23,1.0305e-22,1.2277e-22,1.5107e-22,1.9217e-22,2.9307e-22,3.6945e-22,5.3777e-22,8.6069e-22,8.9875e-22,9.8539e-22,1.0728e-21,1.6674e-21,1.6685e-21,4.7426e-21,5.1224e-21,5.3463e-21,7.2935e-21,7.4619e-21,1.3687e-20,1.7354e-20,1.9153e-20,2.3771e-20,2.7263e-20,3.4474e-20,3.7073e-20,6.4699e-20,9.1072e-20,2.6448e-19,3.5356e-19,3.8952e-19,4.6315e-19,7.4381e-19,8.1942e-19,8.9285e-19,1.3345e-18,1.942e-18,2.2303e-18,2.4976e-18,3.7597e-18,6.7606e-18,1.249e-17,1.8834e-17,2.0524e-17,4.3992e-17,5.7164e-17,6.4575e-17,6.816e-17,8.481e-17,2.0721e-16,2.1322e-16,2.4891e-16,3.18e-16,3.3363e-16,4.7257e-16,1.2229e-15,1.2382e-15,1.6153e-15,1.7767e-15,5.2148e-15,6.8185e-15,6.954e-15,8.8276e-15,1.2178e-14,1.2255e-14,1.2577e-14,1.5258e-14,1.5285e-14,1.8202e-14,1.9472e-14,5.0671e-14,7.6733e-14,7.7814e-14,1.2418e-13,1.4066e-13,1.7048e-13,1.8715e-13,1.9772e-13,2.101e-13,2.143e-13,2.2591e-13,2.7928e-13,2.8624e-13,3.0113e-13,3.139e-13,4.2897e-13,6.0931e-13,9.5365e-13,1.1278e-12,1.6052e-12,2.3737e-12,2.796e-12,3.0419e-12,7.6482e-12,8.4993e-12,9.1836e-12,1.0703e-11,1.2995e-11,1.5363e-11,1.7593e-11,1.8022e-11,1.8296e-11,2.1687e-11,3.381e-11,3.4927e-11,4.1539e-11,5.4273e-11,6.2862e-11,6.4377e-11,1.4767e-10,1.4897e-10,1.752e-10,2.4015e-10,2.5428e-10,3.1446e-10,3.3058e-10,4.6821e-10,5.8659e-10,9.7457e-10,9.8641e-10,1.7479e-09,1.8648e-09,1.9037e-09,2.7447e-09,2.8091e-09,3.2021e-09,3.8021e-09,4.011e-09,4.1763e-09,4.8948e-09,5.0249e-09,5.1115e-09,5.7937e-09,6.0529e-09,6.1223e-09,6.7892e-09,7.046e-09,8.6475e-09,1.2112e-08,1.2857e-08,1.3063e-08,1.5167e-08,1.6129e-08,2.0693e-08,3.1887e-08,3.6414e-08,4.4875e-08,4.8441e-08,5.9833e-08,7.3711e-08,7.4972e-08,7.5964e-08,7.608e-08,8.0878e-08,8.1297e-08,9.8389e-08,1.0735e-07,1.2637e-07,1.2728e-07,1.33e-07,1.7597e-07,1.774e-07,2.0249e-07,2.3518e-07,3.066e-07,3.1742e-07,3.5038e-07,3.582e-07,3.7871e-07,4.1562e-07,4.79e-07,4.8085e-07,6.6147e-07,9.4633e-07,9.8274e-07,1.0246e-06,1.038e-06,1.2833e-06,1.4609e-06,2.2544e-06,2.3057e-06,2.4126e-06,2.6036e-06,3.4477e-06,4.6026e-06,6.2858e-06,6.8973e-06,7.2886e-06,8.3796e-06,1.1074e-05,1.2502e-05,1.4618e-05,1.8542e-05,2.2714e-05,2.3555e-05,3.4606e-05,3.6382e-05,3.7052e-05,4.0476e-05,4.1919e-05,5.5319e-05,6.2226e-05,6.437e-05,6.4591e-05,6.9333e-05,7.6247e-05,7.9667e-05,8.1235e-05,0.0001139,0.00011395,0.00015361,0.00021467,0.00029057,0.00038197,0.00042924,0.00044249,0.00047498,0.00050516,0.00058344,0.00059271,0.00077869,0.00083351,0.00095416,0.0011263,0.0012441,0.0012581,0.0013632,0.0014381,0.0016383,0.0019834,0.002019,0.0021934,0.0024965,0.0027702,0.0027836,0.0039543,0.0041831,0.0042971,0.0046024,0.0047685,0.0050411,0.0055041,0.0057015,0.0059872,0.0064736,0.0071552,0.0078638,0.007939,0.008896,0.0095801,0.010221,0.01182,0.01262,0.012923,0.014048,0.014119,0.01464,0.014876,0.018319,0.019306,0.019701,0.021597,0.022768,0.02295,0.025917,0.032535,0.03476,0.035956,0.038875,0.039136,0.042671,0.043074,0.048058,0.051203,0.058027,0.05868,0.059297,0.059645,0.060792,0.061741,0.062325,0.068759,0.07017,0.084734,0.090111,0.09382,0.09532,0.1085,0.10874,0.11339,0.11561,0.12728,0.12767,0.12858,0.13789,0.14055,0.1415,0.14443,0.14829,0.15201,0.15396,0.17417,0.17491,0.18624,0.20418,0.2221,0.24868,0.24907,0.25899,0.2718,0.28931,0.28951,0.29572,0.32595,0.3332,0.334,0.37217,0.38081,0.38584,0.40151,0.41731,0.44704,0.45176,0.47481,0.52759,0.5283,0.53268,0.54166,0.54871,0.55743,0.56774,0.66374,0.68858,0.726,0.75313,0.75444,0.75747,0.79623,0.80497,0.80569,0.84008,0.89231,0.89383,0.90752,0.91025,0.93812,0.94508,0.95893,0.9654,0.97194,0.97313,0.97988,0.98097,0.98148,0.99267,0.99503,0.99589,0.99812,0.99864,0.99995,1,0.99981,0.9977,0.99767,0.99581,0.99507,0.99506,0.98871,0.98846,0.98507,0.98103,0.97062,0.9594,0.95031,0.93414,0.91741,0.89334,0.89231,0.87205,0.85131,0.83856,0.80271,0.79176,0.76902,0.75527,0.72597,0.72283,0.71634,0.70122,0.66918,0.63588,0.61815,0.60045,0.59122,0.58992,0.5732,0.55394,0.49596,0.48081,0.47254,0.45444,0.45431,0.43676,0.43459,0.42286,0.41354,0.38285,0.37851,0.35548,0.33472,0.27181,0.26087,0.25568,0.2424,0.23036,0.22589,0.21714,0.211,0.20354,0.19163,0.19157,0.1714,0.16631,0.16526,0.1647,0.14639,0.14599,0.14423,0.14292,0.13956,0.13413,0.1294,0.10992,0.076097,0.067845,0.067152,0.066584,0.064772,0.063781,0.054981,0.04975,0.046211,0.044324,0.04059,0.037629,0.037099,0.033296,0.031295,0.028992,0.025596,0.021652,0.021419,0.020221,0.019424,0.019075,0.015681,0.01485,0.011541,0.010748,0.0094687,0.0088413,0.0086462,0.0076494,0.0075284,0.0072697,0.0067322,0.0058051 1,1.5176e-26,2.5954e-26,2.666e-26,3.133e-26,3.5471e-26,4.1746e-26,5.7236e-26,1.2085e-25,1.9389e-25,2.0847e-25,3.0321e-25,3.223e-25,4.1069e-25,7.391e-25,8.8819e-25,1.009e-24,1.7506e-24,1.9238e-24,2.1358e-24,3.0326e-24,3.1488e-24,3.2176e-24,4.1999e-24,4.9139e-24,4.939e-24,6.6718e-24,6.8567e-24,7.8522e-24,7.9935e-24,8.1333e-24,2.0336e-23,4.8449e-23,5.2387e-23,6.7551e-23,8.4715e-23,1.0096e-22,1.2428e-22,1.5816e-22,2.4141e-22,3.0447e-22,4.435e-22,7.1047e-22,7.4195e-22,8.1363e-22,8.8591e-22,1.3782e-21,1.3791e-21,3.9282e-21,4.2435e-21,4.4293e-21,6.0463e-21,6.1862e-21,1.1361e-20,1.4412e-20,1.5909e-20,1.9754e-20,2.2662e-20,2.867e-20,3.0835e-20,5.3875e-20,7.589e-20,2.2088e-19,2.9546e-19,3.2558e-19,3.8726e-19,6.2256e-19,6.8599e-19,7.4759e-19,1.1184e-18,1.6288e-18,1.8712e-18,2.0959e-18,3.1578e-18,5.6856e-18,1.0518e-17,1.5875e-17,1.7302e-17,3.715e-17,4.8303e-17,5.4579e-17,5.7616e-17,7.1726e-17,1.756e-16,1.8071e-16,2.1103e-16,2.6975e-16,2.8305e-16,4.0124e-16,1.0406e-15,1.0537e-15,1.3755e-15,1.5132e-15,4.4528e-15,5.8259e-15,5.942e-15,7.5473e-15,1.0419e-14,1.0486e-14,1.0762e-14,1.3062e-14,1.3085e-14,1.5589e-14,1.668e-14,4.3507e-14,6.5953e-14,6.6885e-14,1.0687e-13,1.2109e-13,1.4683e-13,1.6122e-13,1.7035e-13,1.8105e-13,1.8467e-13,1.9471e-13,2.4083e-13,2.4685e-13,2.5972e-13,2.7077e-13,3.7032e-13,5.2648e-13,8.2498e-13,9.7606e-13,1.3905e-12,2.0584e-12,2.4257e-12,2.6395e-12,6.6531e-12,7.3956e-12,7.9927e-12,9.3192e-12,1.132e-11,1.339e-11,1.5339e-11,1.5714e-11,1.5953e-11,1.892e-11,2.9532e-11,3.051e-11,3.6304e-11,4.7469e-11,5.5004e-11,5.6333e-11,1.2953e-10,1.3067e-10,1.5375e-10,2.1094e-10,2.2339e-10,2.7643e-10,2.9065e-10,4.1207e-10,5.1661e-10,8.5962e-10,8.7009e-10,1.5444e-09,1.6481e-09,1.6825e-09,2.4287e-09,2.4857e-09,2.8347e-09,3.3676e-09,3.5533e-09,3.7002e-09,4.339e-09,4.4546e-09,4.5316e-09,5.1385e-09,5.3691e-09,5.4309e-09,6.0244e-09,6.253e-09,7.6793e-09,1.0768e-08,1.1432e-08,1.1616e-08,1.3493e-08,1.4352e-08,1.8428e-08,2.8437e-08,3.2489e-08,4.0066e-08,4.3261e-08,5.3473e-08,6.5921e-08,6.7053e-08,6.7944e-08,6.8047e-08,7.2354e-08,7.273e-08,8.8078e-08,9.6126e-08,1.1322e-07,1.1405e-07,1.1918e-07,1.5785e-07,1.5914e-07,1.8172e-07,2.1117e-07,2.7556e-07,2.8532e-07,3.1506e-07,3.2211e-07,3.4062e-07,3.7395e-07,4.3119e-07,4.3287e-07,5.9615e-07,8.5401e-07,8.8698e-07,9.2492e-07,9.3705e-07,1.1594e-06,1.3205e-06,2.0411e-06,2.0878e-06,2.1849e-06,2.3586e-06,3.1266e-06,4.1786e-06,5.7138e-06,6.272e-06,6.6293e-06,7.6259e-06,1.0089e-05,1.1396e-05,1.3333e-05,1.6929e-05,2.0756e-05,2.1527e-05,3.1679e-05,3.3312e-05,3.3928e-05,3.7078e-05,3.8406e-05,5.0744e-05,5.7109e-05,5.9085e-05,5.929e-05,6.3662e-05,7.004e-05,7.3196e-05,7.4643e-05,0.00010482,0.00010486,0.00014155,0.00019813,0.00026858,0.00035353,0.0003975,0.00040984,0.00044009,0.0004682,0.00054113,0.00054978,0.00072329,0.00077449,0.00088722,0.0010482,0.0011585,0.0011716,0.00127,0.0013401,0.0015278,0.0018515,0.0018849,0.0020487,0.0023335,0.0025908,0.0026034,0.0037058,0.0039215,0.004029,0.004317,0.0044738,0.0047311,0.0051684,0.0053548,0.0056248,0.0060847,0.0067295,0.0074003,0.0074715,0.0083782,0.0090266,0.0096344,0.011152,0.011913,0.0122,0.013269,0.013337,0.013833,0.014057,0.017335,0.018275,0.018652,0.020461,0.021577,0.021751,0.024585,0.030914,0.033044,0.03419,0.036988,0.037238,0.040629,0.041015,0.0458,0.048822,0.055385,0.056013,0.056607,0.056941,0.058045,0.058959,0.059522,0.06572,0.06708,0.081135,0.08633,0.089915,0.091366,0.10412,0.10436,0.10886,0.11101,0.12233,0.1227,0.12358,0.13262,0.13521,0.13613,0.13899,0.14273,0.14635,0.14825,0.16792,0.16864,0.17968,0.19718,0.21469,0.2407,0.24108,0.25079,0.26335,0.28052,0.28072,0.28682,0.31653,0.32367,0.32446,0.36205,0.37059,0.37555,0.39102,0.40663,0.43605,0.44074,0.46358,0.51601,0.51672,0.52108,0.53001,0.53704,0.54573,0.556,0.65203,0.67698,0.71465,0.74203,0.74337,0.74643,0.78569,0.79457,0.7953,0.83033,0.88389,0.88547,0.8996,0.90243,0.93144,0.93874,0.95336,0.96025,0.96725,0.96854,0.97586,0.97705,0.97761,0.99014,0.99291,0.99395,0.99674,0.99744,0.99958,0.99981,1,0.99883,0.99881,0.9974,0.9968,0.9968,0.99142,0.99121,0.98821,0.98459,0.97505,0.9646,0.95605,0.9407,0.92468,0.90147,0.90047,0.8808,0.8606,0.84814,0.81297,0.80221,0.77979,0.76622,0.73722,0.73411,0.72767,0.71267,0.68082,0.64764,0.62994,0.61225,0.60301,0.60171,0.58497,0.56568,0.50742,0.49218,0.48384,0.46559,0.46547,0.44775,0.44556,0.43371,0.42429,0.39324,0.38884,0.36549,0.34443,0.28043,0.26927,0.26398,0.25043,0.23813,0.23356,0.22461,0.21832,0.21069,0.19849,0.19843,0.17774,0.17252,0.17144,0.17087,0.15205,0.15164,0.14983,0.14848,0.14503,0.13944,0.13457,0.11449,0.079518,0.070964,0.070245,0.069655,0.067775,0.066747,0.057607,0.052169,0.048486,0.046521,0.042631,0.039544,0.038991,0.035023,0.032933,0.030527,0.026976,0.022846,0.022602,0.021346,0.020511,0.020145,0.016583,0.01571,0.012229,0.011394,0.010046,0.0093847,0.0091788,0.0081269,0.0079991,0.0077259,0.007158,0.0061779 1,8.9379e-27,1.5322e-26,1.5741e-26,1.8512e-26,2.097e-26,2.4698e-26,3.3909e-26,7.1837e-26,1.1551e-25,1.2423e-25,1.81e-25,1.9245e-25,2.455e-25,4.43e-25,5.3281e-25,6.0565e-25,1.0534e-24,1.1582e-24,1.2865e-24,1.8296e-24,1.9e-24,1.9417e-24,2.5377e-24,2.9713e-24,2.9865e-24,4.04e-24,4.1525e-24,4.7584e-24,4.8444e-24,4.9295e-24,1.2379e-23,2.9614e-23,3.2033e-23,4.1356e-23,5.192e-23,6.193e-23,7.6311e-23,9.7227e-23,1.4871e-22,1.8776e-22,2.74e-22,4.3996e-22,4.5955e-22,5.0417e-22,5.4919e-22,8.5622e-22,8.568e-22,2.4532e-21,2.6511e-21,2.7678e-21,3.7841e-21,3.8721e-21,7.133e-21,9.0595e-21,1.0005e-20,1.2437e-20,1.4278e-20,1.8085e-20,1.9459e-20,3.4095e-20,4.8112e-20,1.4081e-19,1.8864e-19,2.0798e-19,2.4761e-19,3.9905e-19,4.3993e-19,4.7966e-19,7.1909e-19,1.0494e-18,1.2064e-18,1.3521e-18,2.0417e-18,3.6878e-18,6.8452e-18,1.0355e-17,1.1291e-17,2.4347e-17,3.1702e-17,3.5846e-17,3.7852e-17,4.718e-17,1.1609e-16,1.1949e-16,1.3966e-16,1.7878e-16,1.8764e-16,2.6652e-16,6.9504e-16,7.0385e-16,9.2021e-16,1.0129e-15,2.9998e-15,3.9311e-15,4.0099e-15,5.1005e-15,7.0552e-15,7.1004e-15,7.2888e-15,8.857e-15,8.8725e-15,1.0582e-14,1.1327e-14,2.9718e-14,4.5166e-14,4.5808e-14,7.3405e-14,8.3237e-14,1.0105e-13,1.1103e-13,1.1736e-13,1.2477e-13,1.2729e-13,1.3425e-13,1.6627e-13,1.7046e-13,1.794e-13,1.8708e-13,2.5638e-13,3.6532e-13,5.741e-13,6.7998e-13,9.7097e-13,1.441e-12,1.7e-12,1.8509e-12,4.6943e-12,5.222e-12,5.6465e-12,6.5905e-12,8.0164e-12,9.4926e-12,1.0885e-11,1.1152e-11,1.1324e-11,1.3445e-11,2.1051e-11,2.1753e-11,2.5916e-11,3.3949e-11,3.9379e-11,4.0338e-11,9.33e-11,9.4127e-11,1.1088e-10,1.5248e-10,1.6155e-10,2.0021e-10,2.1059e-10,2.9933e-10,3.7589e-10,6.2785e-10,6.3555e-10,1.133e-09,1.2097e-09,1.2351e-09,1.7879e-09,1.8302e-09,2.0893e-09,2.4854e-09,2.6235e-09,2.7328e-09,3.2086e-09,3.2948e-09,3.3522e-09,3.8049e-09,3.977e-09,4.0231e-09,4.4664e-09,4.6373e-09,5.7043e-09,8.0198e-09,8.5188e-09,8.6566e-09,1.0068e-08,1.0714e-08,1.3785e-08,2.1348e-08,2.4416e-08,3.0163e-08,3.2589e-08,4.0353e-08,4.9834e-08,5.0697e-08,5.1376e-08,5.1455e-08,5.474e-08,5.5027e-08,6.6748e-08,7.2901e-08,8.5985e-08,8.6618e-08,9.0554e-08,1.2022e-07,1.2121e-07,1.3857e-07,1.6124e-07,2.109e-07,2.1844e-07,2.4141e-07,2.4687e-07,2.6118e-07,2.8698e-07,3.3133e-07,3.3262e-07,4.5941e-07,6.6028e-07,6.8602e-07,7.1563e-07,7.251e-07,8.9891e-07,1.0251e-06,1.591e-06,1.6277e-06,1.7041e-06,1.8409e-06,2.447e-06,3.2795e-06,4.4982e-06,4.9421e-06,5.2265e-06,6.0206e-06,7.9876e-06,9.0339e-06,1.0586e-05,1.3474e-05,1.6555e-05,1.7177e-05,2.538e-05,2.6703e-05,2.7202e-05,2.9755e-05,3.0833e-05,4.0861e-05,4.6046e-05,4.7657e-05,4.7824e-05,5.1391e-05,5.6599e-05,5.9178e-05,6.0362e-05,8.5086e-05,8.5122e-05,0.0001153,0.00016202,0.00022042,0.0002911,0.00032777,0.00033807,0.00036334,0.00038684,0.00044791,0.00045516,0.00060089,0.00064398,0.000739,0.000875,0.0009683,0.0009794,0.0010628,0.0011223,0.0012817,0.0015573,0.0015858,0.0017256,0.001969,0.0021893,0.0022002,0.0031476,0.0033335,0.0034263,0.0036749,0.0038103,0.0040328,0.0044114,0.0045729,0.004807,0.0052063,0.0057668,0.0063509,0.006413,0.007204,0.0077707,0.0083025,0.009633,0.010301,0.010553,0.011494,0.011554,0.011991,0.012188,0.015083,0.015916,0.01625,0.017854,0.018846,0.019,0.021522,0.027175,0.029083,0.030111,0.032623,0.032847,0.035898,0.036246,0.040561,0.043292,0.049235,0.049804,0.050343,0.050646,0.051648,0.052478,0.052989,0.058627,0.059866,0.072701,0.077461,0.08075,0.082082,0.093818,0.094034,0.098184,0.10017,0.11064,0.11098,0.1118,0.12018,0.12258,0.12344,0.12608,0.12957,0.13293,0.1347,0.15305,0.15373,0.16406,0.18049,0.19697,0.22154,0.2219,0.2311,0.24303,0.25937,0.25955,0.26537,0.29376,0.3006,0.30136,0.3375,0.34573,0.35052,0.36547,0.3806,0.40919,0.41375,0.43604,0.48747,0.48817,0.49246,0.50127,0.5082,0.51678,0.52695,0.62273,0.64786,0.68602,0.71394,0.7153,0.71844,0.7588,0.76799,0.76875,0.80522,0.86186,0.86354,0.87874,0.8818,0.91352,0.92163,0.93809,0.94598,0.95412,0.95563,0.96433,0.96577,0.96645,0.98226,0.98604,0.98749,0.99168,0.99283,0.997,0.9977,0.99883,1,1,0.99972,0.9995,0.9995,0.99658,0.99644,0.99445,0.99187,0.98457,0.97608,0.9689,0.95564,0.94147,0.9205,0.91958,0.90151,0.88271,0.87103,0.83773,0.82745,0.80595,0.79286,0.76474,0.76172,0.75544,0.74079,0.70953,0.67676,0.6592,0.64159,0.63238,0.63108,0.61434,0.595,0.53625,0.52079,0.51232,0.49375,0.49363,0.47555,0.47331,0.4612,0.45155,0.41966,0.41512,0.39104,0.36924,0.3026,0.29091,0.28536,0.27113,0.25819,0.25338,0.24394,0.2373,0.22923,0.2163,0.21624,0.19426,0.1887,0.18755,0.18694,0.16684,0.1664,0.16447,0.16303,0.15933,0.15334,0.14811,0.12649,0.088572,0.079236,0.07845,0.077805,0.075749,0.074624,0.0646,0.058618,0.054559,0.05239,0.048091,0.044673,0.04406,0.039657,0.037333,0.034654,0.030691,0.02607,0.025796,0.024388,0.023449,0.023038,0.019028,0.018043,0.014104,0.013156,0.011623,0.010869,0.010635,0.0094338,0.0092878,0.0089754,0.0083255,0.0072017 1,8.8933e-27,1.5246e-26,1.5662e-26,1.842e-26,2.0866e-26,2.4575e-26,3.3742e-26,7.1485e-26,1.1494e-25,1.2363e-25,1.8012e-25,1.9151e-25,2.4431e-25,4.4086e-25,5.3025e-25,6.0273e-25,1.0484e-24,1.1526e-24,1.2803e-24,1.8208e-24,1.891e-24,1.9325e-24,2.5256e-24,2.9572e-24,2.9724e-24,4.0209e-24,4.1329e-24,4.7359e-24,4.8215e-24,4.9063e-24,1.2321e-23,2.9477e-23,3.1884e-23,4.1164e-23,5.168e-23,6.1644e-23,7.596e-23,9.6781e-23,1.4803e-22,1.869e-22,2.7276e-22,4.3797e-22,4.5747e-22,5.0189e-22,5.4671e-22,8.5238e-22,8.5295e-22,2.4423e-21,2.6394e-21,2.7555e-21,3.7674e-21,3.855e-21,7.1017e-21,9.0198e-21,9.9616e-21,1.2383e-20,1.4216e-20,1.8006e-20,1.9374e-20,3.3948e-20,4.7905e-20,1.4021e-19,1.8784e-19,2.071e-19,2.4656e-19,3.9738e-19,4.3809e-19,4.7765e-19,7.1609e-19,1.045e-18,1.2014e-18,1.3466e-18,2.0333e-18,3.6728e-18,6.8174e-18,1.0313e-17,1.1246e-17,2.425e-17,3.1576e-17,3.5704e-17,3.7702e-17,4.6994e-17,1.1564e-16,1.1902e-16,1.3912e-16,1.7808e-16,1.8691e-16,2.6549e-16,6.9239e-16,7.0117e-16,9.1672e-16,1.0091e-15,2.9886e-15,3.9165e-15,3.995e-15,5.0816e-15,7.0292e-15,7.0743e-15,7.262e-15,8.8245e-15,8.8399e-15,1.0543e-14,1.1285e-14,2.9611e-14,4.5004e-14,4.5644e-14,7.3144e-14,8.2942e-14,1.007e-13,1.1064e-13,1.1694e-13,1.2433e-13,1.2684e-13,1.3378e-13,1.6569e-13,1.6986e-13,1.7877e-13,1.8643e-13,2.5549e-13,3.6405e-13,5.7214e-13,6.7766e-13,9.6767e-13,1.4362e-12,1.6943e-12,1.8447e-12,4.6789e-12,5.2048e-12,5.628e-12,6.5689e-12,7.9902e-12,9.4617e-12,1.0849e-11,1.1116e-11,1.1287e-11,1.3402e-11,2.0984e-11,2.1684e-11,2.5833e-11,3.3842e-11,3.9255e-11,4.021e-11,9.301e-11,9.3835e-11,1.1054e-10,1.5201e-10,1.6105e-10,1.996e-10,2.0994e-10,2.9843e-10,3.7476e-10,6.2598e-10,6.3367e-10,1.1297e-09,1.2061e-09,1.2315e-09,1.7827e-09,1.8249e-09,2.0832e-09,2.4783e-09,2.616e-09,2.725e-09,3.1994e-09,3.2854e-09,3.3426e-09,3.7941e-09,3.9657e-09,4.0117e-09,4.4538e-09,4.6242e-09,5.6882e-09,7.9974e-09,8.4951e-09,8.6326e-09,1.004e-08,1.0685e-08,1.3747e-08,2.129e-08,2.435e-08,3.0082e-08,3.2501e-08,4.0245e-08,4.9702e-08,5.0563e-08,5.124e-08,5.1319e-08,5.4596e-08,5.4882e-08,6.6572e-08,7.271e-08,8.5761e-08,8.6392e-08,9.0318e-08,1.1991e-07,1.209e-07,1.3822e-07,1.6083e-07,2.1037e-07,2.1788e-07,2.408e-07,2.4624e-07,2.6052e-07,2.8626e-07,3.305e-07,3.3179e-07,4.5828e-07,6.5867e-07,6.8435e-07,7.139e-07,7.2334e-07,8.9675e-07,1.0226e-06,1.5872e-06,1.6238e-06,1.7001e-06,1.8366e-06,2.4413e-06,3.272e-06,4.488e-06,4.931e-06,5.2148e-06,6.0072e-06,7.97e-06,9.014e-06,1.0563e-05,1.3445e-05,1.6519e-05,1.714e-05,2.5327e-05,2.6647e-05,2.7145e-05,2.9693e-05,3.0769e-05,4.0777e-05,4.5952e-05,4.756e-05,4.7726e-05,5.1287e-05,5.6485e-05,5.9059e-05,6.024e-05,8.4918e-05,8.4954e-05,0.00011508,0.00016171,0.00022,0.00029056,0.00032717,0.00033745,0.00036268,0.00038614,0.00044711,0.00045434,0.00059983,0.00064285,0.00073772,0.0008735,0.00096665,0.00097774,0.001061,0.0011204,0.0012796,0.0015548,0.0015832,0.0017228,0.0019658,0.0021858,0.0021966,0.0031427,0.0033284,0.003421,0.0036693,0.0038045,0.0040267,0.0044047,0.0045661,0.0047998,0.0051985,0.0057583,0.0063417,0.0064037,0.0071937,0.0077596,0.0082907,0.0096196,0.010287,0.010539,0.011479,0.011538,0.011974,0.012172,0.015063,0.015895,0.016229,0.017831,0.018822,0.018976,0.021494,0.027141,0.029048,0.030074,0.032584,0.032808,0.035856,0.036203,0.040514,0.043242,0.049179,0.049748,0.050287,0.05059,0.051591,0.05242,0.052931,0.058563,0.059801,0.072625,0.077381,0.080667,0.081998,0.093724,0.09394,0.098088,0.10007,0.11053,0.11087,0.11169,0.12006,0.12246,0.12332,0.12597,0.12945,0.13281,0.13458,0.15292,0.15359,0.16392,0.18034,0.1968,0.22136,0.22173,0.23092,0.24284,0.25917,0.25936,0.26517,0.29355,0.30039,0.30114,0.33727,0.3455,0.35029,0.36524,0.38036,0.40894,0.4135,0.43578,0.4872,0.4879,0.49219,0.501,0.50793,0.51651,0.52668,0.62245,0.64759,0.68575,0.71367,0.71503,0.71817,0.75855,0.76774,0.76849,0.80498,0.86165,0.86333,0.87854,0.8816,0.91334,0.92146,0.93794,0.94584,0.95398,0.9555,0.96421,0.96566,0.96633,0.98217,0.98596,0.98742,0.99162,0.99277,0.99696,0.99767,0.99881,1,1,0.99973,0.99952,0.99952,0.99661,0.99648,0.99449,0.99192,0.98465,0.97618,0.96901,0.95578,0.94162,0.92067,0.91976,0.90169,0.88292,0.87124,0.83796,0.82769,0.80619,0.79311,0.765,0.76197,0.7557,0.74105,0.7098,0.67703,0.65948,0.64187,0.63266,0.63136,0.61462,0.59528,0.53652,0.52106,0.51259,0.49402,0.49389,0.47581,0.47358,0.46146,0.45181,0.41991,0.41537,0.39128,0.36948,0.30281,0.29112,0.28557,0.27133,0.25839,0.25357,0.24412,0.23748,0.22941,0.21648,0.21641,0.19442,0.18885,0.18771,0.1871,0.16699,0.16655,0.16461,0.16317,0.15947,0.15347,0.14824,0.12661,0.088661,0.079317,0.078531,0.077886,0.075827,0.074701,0.064669,0.058682,0.054619,0.052448,0.048145,0.044724,0.04411,0.039703,0.037377,0.034695,0.030728,0.026102,0.025828,0.024418,0.023479,0.023067,0.019052,0.018066,0.014123,0.013174,0.011639,0.010884,0.010649,0.009447,0.0093008,0.008988,0.0083373,0.0072121 1,6.891e-27,1.1827e-26,1.2151e-26,1.4295e-26,1.6197e-26,1.9084e-26,2.622e-26,5.5638e-26,8.9554e-26,9.6336e-26,1.4047e-25,1.4938e-25,1.9066e-25,3.445e-25,4.1451e-25,4.7131e-25,8.2079e-25,9.026e-25,1.0028e-24,1.4273e-24,1.4824e-24,1.515e-24,1.9812e-24,2.3205e-24,2.3325e-24,3.1574e-24,3.2456e-24,3.7203e-24,3.7877e-24,3.8544e-24,9.6994e-24,2.3251e-23,2.5155e-23,3.2495e-23,4.0818e-23,4.8707e-23,6.0047e-23,7.655e-23,1.172e-22,1.4806e-22,2.1626e-22,3.4763e-22,3.6315e-22,3.985e-22,4.3418e-22,6.7763e-22,6.7809e-22,1.9465e-21,2.1039e-21,2.1967e-21,3.0057e-21,3.0757e-21,5.6744e-21,7.2112e-21,7.9661e-21,9.9077e-21,1.1378e-20,1.442e-20,1.5518e-20,2.7229e-20,3.8456e-20,1.1286e-19,1.5131e-19,1.6686e-19,1.9874e-19,3.2069e-19,3.5363e-19,3.8565e-19,5.7876e-19,8.4541e-19,9.7231e-19,1.0901e-18,1.6477e-18,2.9809e-18,5.542e-18,8.3932e-18,9.1541e-18,1.9779e-17,2.5773e-17,2.9152e-17,3.0788e-17,3.8398e-17,9.4717e-17,9.7496e-17,1.1401e-16,1.4604e-16,1.5329e-16,2.1796e-16,5.6992e-16,5.7717e-16,7.5516e-16,8.3147e-16,2.4701e-15,3.2395e-15,3.3047e-15,4.2064e-15,5.824e-15,5.8615e-15,6.0174e-15,7.3163e-15,7.3291e-15,8.7456e-15,9.363e-15,2.4637e-14,3.7491e-14,3.8026e-14,6.1021e-14,6.9221e-14,8.4088e-14,9.2413e-14,9.7699e-14,1.0389e-13,1.0599e-13,1.1181e-13,1.3857e-13,1.4207e-13,1.4955e-13,1.5597e-13,2.1395e-13,3.052e-13,4.8031e-13,5.6919e-13,8.1369e-13,1.2091e-12,1.4272e-12,1.5543e-12,3.954e-12,4.4e-12,4.759e-12,5.5574e-12,6.7642e-12,8.0143e-12,9.1938e-12,9.4207e-12,9.5658e-12,1.1364e-11,1.782e-11,1.8417e-11,2.1954e-11,2.8786e-11,3.3407e-11,3.4223e-11,7.9386e-11,8.0092e-11,9.4405e-11,1.2997e-10,1.3772e-10,1.7082e-10,1.7969e-10,2.5574e-10,3.2142e-10,5.3786e-10,5.4449e-10,9.7275e-10,1.0388e-09,1.0607e-09,1.5376e-09,1.5741e-09,1.7978e-09,2.1401e-09,2.2594e-09,2.354e-09,2.7654e-09,2.84e-09,2.8897e-09,3.2815e-09,3.4305e-09,3.4705e-09,3.8544e-09,4.0024e-09,4.9272e-09,6.9365e-09,7.3698e-09,7.4895e-09,8.7158e-09,9.2776e-09,1.1948e-08,1.8535e-08,2.1211e-08,2.6225e-08,2.8344e-08,3.5126e-08,4.3418e-08,4.4172e-08,4.4766e-08,4.4836e-08,4.771e-08,4.7961e-08,5.8223e-08,6.3614e-08,7.5082e-08,7.5637e-08,7.9088e-08,1.0512e-07,1.0599e-07,1.2124e-07,1.4117e-07,1.8486e-07,1.9149e-07,2.1172e-07,2.1653e-07,2.2914e-07,2.5187e-07,2.9098e-07,2.9212e-07,4.0404e-07,5.8163e-07,6.044e-07,6.3062e-07,6.39e-07,7.9293e-07,9.0475e-07,1.407e-06,1.4396e-06,1.5076e-06,1.6292e-06,2.1684e-06,2.9101e-06,3.9976e-06,4.3941e-06,4.6482e-06,5.3581e-06,7.1184e-06,8.0557e-06,9.447e-06,1.2039e-05,1.4807e-05,1.5366e-05,2.275e-05,2.3942e-05,2.4392e-05,2.6694e-05,2.7665e-05,3.6717e-05,4.1403e-05,4.286e-05,4.301e-05,4.6236e-05,5.0948e-05,5.3283e-05,5.4354e-05,7.676e-05,7.6793e-05,0.00010419,0.00014669,0.00019991,0.00026445,0.00029798,0.0003074,0.00033051,0.00035203,0.00040796,0.0004146,0.00054827,0.00058784,0.00067515,0.00080025,0.00088615,0.00089638,0.0009732,0.0010281,0.0011751,0.0014296,0.0014559,0.0015851,0.0018103,0.0020143,0.0020244,0.0029033,0.003076,0.0031622,0.0033933,0.0035193,0.0037263,0.0040787,0.0042292,0.0044473,0.0048194,0.0053423,0.0058877,0.0059456,0.0066849,0.0072149,0.0077125,0.0089587,0.0095849,0.0098218,0.010705,0.01076,0.011171,0.011356,0.014078,0.014861,0.015176,0.016687,0.017622,0.017768,0.020147,0.025491,0.027297,0.02827,0.030651,0.030864,0.033758,0.034088,0.038186,0.040782,0.046437,0.046979,0.047493,0.047782,0.048737,0.049527,0.050014,0.05539,0.056573,0.068839,0.073394,0.076544,0.07782,0.089074,0.089281,0.093266,0.095176,0.10523,0.10557,0.10635,0.11442,0.11673,0.11756,0.12011,0.12347,0.12671,0.12842,0.14614,0.14679,0.15678,0.17269,0.18867,0.21254,0.21289,0.22184,0.23346,0.24938,0.24957,0.25524,0.28297,0.28966,0.2904,0.32581,0.33389,0.33859,0.35328,0.36815,0.39631,0.4008,0.4228,0.47367,0.47436,0.47862,0.48735,0.49423,0.50275,0.51285,0.60835,0.63352,0.67185,0.69997,0.70135,0.70451,0.74534,0.75465,0.75542,0.79252,0.85055,0.85228,0.86797,0.87112,0.90409,0.91258,0.92991,0.93827,0.94694,0.94856,0.95792,0.95948,0.96021,0.97758,0.98185,0.98351,0.98837,0.98973,0.99488,0.99581,0.9974,0.99972,0.99973,1,0.99997,0.99997,0.99826,0.99816,0.99666,0.9946,0.98842,0.98092,0.97442,0.96223,0.94899,0.92917,0.9283,0.91104,0.89298,0.88171,0.8494,0.83939,0.81838,0.80555,0.77793,0.77495,0.76877,0.75432,0.72341,0.6909,0.67344,0.65591,0.64672,0.64543,0.62872,0.60938,0.55049,0.53494,0.52642,0.50772,0.50759,0.48936,0.48711,0.47488,0.46513,0.43286,0.42827,0.40385,0.3817,0.31381,0.30187,0.2962,0.28165,0.26839,0.26346,0.25378,0.24697,0.23869,0.22541,0.22534,0.20273,0.197,0.19581,0.19519,0.17445,0.174,0.17201,0.17051,0.16669,0.1605,0.15509,0.1327,0.093295,0.08356,0.08274,0.082067,0.07992,0.078745,0.068269,0.062008,0.057755,0.055481,0.050971,0.047381,0.046738,0.042108,0.039663,0.036842,0.032665,0.027787,0.027498,0.026009,0.025017,0.024582,0.020336,0.019292,0.015111,0.014103,0.012472,0.01167,0.01142,0.01014,0.009984,0.0096508,0.0089572,0.0077566 1,6.3218e-27,1.0854e-26,1.1152e-26,1.3121e-26,1.4869e-26,1.752e-26,2.4077e-26,5.112e-26,8.231e-26,8.8549e-26,1.2915e-25,1.3735e-25,1.7533e-25,3.1694e-25,3.8141e-25,4.3371e-25,7.5563e-25,8.3101e-25,9.2334e-25,1.3145e-24,1.3653e-24,1.3954e-24,1.8251e-24,2.138e-24,2.149e-24,2.9097e-24,2.991e-24,3.4288e-24,3.491e-24,3.5525e-24,8.9461e-24,2.146e-23,2.3218e-23,2.9999e-23,3.7689e-23,4.498e-23,5.5461e-23,7.0717e-23,1.083e-22,1.3685e-22,1.9994e-22,3.2153e-22,3.3589e-22,3.6861e-22,4.0164e-22,6.2707e-22,6.2749e-22,1.8027e-21,1.9487e-21,2.0347e-21,2.7847e-21,2.8497e-21,5.26e-21,6.6858e-21,7.3863e-21,9.1883e-21,1.0553e-20,1.3377e-20,1.4397e-20,2.5273e-20,3.5704e-20,1.0487e-19,1.4064e-19,1.551e-19,1.8477e-19,2.9826e-19,3.2893e-19,3.5874e-19,5.3856e-19,7.8695e-19,9.0518e-19,1.0149e-18,1.5347e-18,2.7778e-18,5.1673e-18,7.8285e-18,8.5389e-18,1.8463e-17,2.4063e-17,2.7221e-17,2.875e-17,3.5864e-17,8.8537e-17,9.1138e-17,1.0659e-16,1.3656e-16,1.4336e-16,2.0389e-16,5.3362e-16,5.4041e-16,7.0725e-16,7.7879e-16,2.316e-15,3.0382e-15,3.0993e-15,3.946e-15,5.4652e-15,5.5003e-15,5.6468e-15,6.867e-15,6.879e-15,8.21e-15,8.7902e-15,2.3152e-14,3.5246e-14,3.5749e-14,5.7395e-14,6.5116e-14,7.9116e-14,8.6957e-14,9.1936e-14,9.777e-14,9.9748e-14,1.0523e-13,1.3044e-13,1.3374e-13,1.4079e-13,1.4684e-13,2.0149e-13,2.8753e-13,4.5272e-13,5.3659e-13,7.6737e-13,1.1408e-12,1.3467e-12,1.4669e-12,3.7353e-12,4.1571e-12,4.4966e-12,5.2519e-12,6.3936e-12,7.5767e-12,8.6931e-12,8.9078e-12,9.0453e-12,1.0748e-11,1.6862e-11,1.7427e-11,2.0778e-11,2.7253e-11,3.1633e-11,3.2406e-11,7.5245e-11,7.5915e-11,8.9499e-11,1.2326e-10,1.3062e-10,1.6205e-10,1.7048e-10,2.4273e-10,3.0515e-10,5.1095e-10,5.1725e-10,9.2474e-10,9.876e-10,1.0085e-09,1.4625e-09,1.4973e-09,1.7104e-09,2.0364e-09,2.1502e-09,2.2402e-09,2.6324e-09,2.7034e-09,2.7508e-09,3.1242e-09,3.2663e-09,3.3044e-09,3.6704e-09,3.8116e-09,4.6935e-09,6.6104e-09,7.0239e-09,7.1381e-09,8.3085e-09,8.8448e-09,1.1394e-08,1.7686e-08,2.0243e-08,2.5036e-08,2.7061e-08,3.3546e-08,4.1476e-08,4.2198e-08,4.2767e-08,4.2833e-08,4.5582e-08,4.5823e-08,5.5642e-08,6.0801e-08,7.1778e-08,7.231e-08,7.5614e-08,1.0054e-07,1.0138e-07,1.1599e-07,1.3507e-07,1.7694e-07,1.833e-07,2.027e-07,2.0731e-07,2.194e-07,2.412e-07,2.787e-07,2.798e-07,3.8718e-07,5.5765e-07,5.7952e-07,6.0469e-07,6.1274e-07,7.6059e-07,8.6802e-07,1.3508e-06,1.3822e-06,1.4475e-06,1.5644e-06,2.0831e-06,2.797e-06,3.844e-06,4.2259e-06,4.4707e-06,5.1546e-06,6.8512e-06,7.7549e-06,9.0966e-06,1.1597e-05,1.4268e-05,1.4808e-05,2.1938e-05,2.309e-05,2.3524e-05,2.5748e-05,2.6687e-05,3.5436e-05,3.9967e-05,4.1375e-05,4.1521e-05,4.4641e-05,4.9199e-05,5.1457e-05,5.2493e-05,7.4179e-05,7.421e-05,0.00010075,0.00014193,0.00019353,0.00025615,0.00028869,0.00029783,0.00032028,0.00034116,0.00039549,0.00040194,0.00053182,0.00057028,0.00065518,0.00077685,0.00086042,0.00087037,0.00094513,0.00099851,0.0011416,0.0013895,0.0014151,0.001541,0.0017605,0.0019593,0.0019691,0.0028263,0.0029949,0.003079,0.0033046,0.0034275,0.0036296,0.0039737,0.0041207,0.0043337,0.0046973,0.0052082,0.0057412,0.0057979,0.0065206,0.0070389,0.0075257,0.0087451,0.0093579,0.0095898,0.010454,0.010509,0.01091,0.011092,0.013758,0.014526,0.014835,0.016316,0.017233,0.017376,0.019709,0.024953,0.026727,0.027683,0.030021,0.03023,0.033074,0.033398,0.037426,0.039979,0.045541,0.046075,0.04658,0.046864,0.047804,0.048581,0.049061,0.054352,0.055517,0.067597,0.072086,0.075191,0.076449,0.087547,0.087751,0.091682,0.093567,0.10349,0.10382,0.1046,0.11256,0.11484,0.11566,0.11818,0.1215,0.1247,0.12639,0.1439,0.14455,0.15443,0.17016,0.18598,0.20962,0.20997,0.21884,0.23035,0.24614,0.24631,0.25194,0.27946,0.2861,0.28683,0.32199,0.33002,0.33469,0.34929,0.36408,0.39208,0.39656,0.41845,0.46913,0.46982,0.47406,0.48277,0.48963,0.49812,0.5082,0.60358,0.62877,0.66714,0.69533,0.69671,0.69988,0.74084,0.7502,0.75097,0.78826,0.84673,0.84848,0.86432,0.86751,0.90088,0.90949,0.9271,0.93561,0.94446,0.94611,0.95568,0.95728,0.95803,0.97592,0.98034,0.98207,0.98715,0.98858,0.99406,0.99507,0.9968,0.9995,0.99952,0.99997,1,1,0.99869,0.9986,0.99727,0.99538,0.98958,0.9824,0.97613,0.9643,0.95138,0.93194,0.93109,0.91411,0.8963,0.88516,0.85319,0.84327,0.82243,0.80969,0.78224,0.77928,0.77313,0.75875,0.72797,0.69556,0.67814,0.66063,0.65146,0.65017,0.63348,0.61415,0.55521,0.53964,0.53111,0.51237,0.51224,0.49396,0.4917,0.47944,0.46966,0.43727,0.43265,0.40812,0.38587,0.31758,0.30555,0.29984,0.28518,0.27182,0.26685,0.2571,0.25023,0.24187,0.22848,0.22841,0.20559,0.1998,0.1986,0.19797,0.17703,0.17657,0.17455,0.17304,0.16918,0.16292,0.15745,0.13481,0.094901,0.085032,0.0842,0.083518,0.081341,0.080149,0.069521,0.063165,0.058846,0.056537,0.051955,0.048307,0.047653,0.042947,0.040461,0.037592,0.033342,0.028376,0.028082,0.026566,0.025555,0.025112,0.020786,0.019721,0.015458,0.01443,0.012765,0.011946,0.011691,0.010384,0.010224,0.0098841,0.0091754,0.0079486 1,6.321e-27,1.0853e-26,1.115e-26,1.3119e-26,1.4867e-26,1.7518e-26,2.4074e-26,5.1114e-26,8.23e-26,8.8538e-26,1.2914e-25,1.3733e-25,1.7531e-25,3.169e-25,3.8136e-25,4.3366e-25,7.5554e-25,8.3091e-25,9.2323e-25,1.3144e-24,1.3651e-24,1.3952e-24,1.8249e-24,2.1377e-24,2.1487e-24,2.9094e-24,2.9906e-24,3.4284e-24,3.4906e-24,3.5521e-24,8.945e-24,2.1457e-23,2.3215e-23,2.9996e-23,3.7685e-23,4.4975e-23,5.5455e-23,7.0708e-23,1.0829e-22,1.3683e-22,1.9992e-22,3.2149e-22,3.3585e-22,3.6857e-22,4.0159e-22,6.27e-22,6.2742e-22,1.8025e-21,1.9485e-21,2.0345e-21,2.7844e-21,2.8494e-21,5.2594e-21,6.6851e-21,7.3855e-21,9.1872e-21,1.0552e-20,1.3376e-20,1.4395e-20,2.527e-20,3.57e-20,1.0486e-19,1.4062e-19,1.5509e-19,1.8475e-19,2.9823e-19,3.289e-19,3.587e-19,5.3851e-19,7.8687e-19,9.0509e-19,1.0148e-18,1.5345e-18,2.7775e-18,5.1668e-18,7.8277e-18,8.538e-18,1.8461e-17,2.4061e-17,2.7218e-17,2.8747e-17,3.586e-17,8.8528e-17,9.1129e-17,1.0657e-16,1.3655e-16,1.4334e-16,2.0387e-16,5.3357e-16,5.4036e-16,7.0718e-16,7.7872e-16,2.3158e-15,3.0379e-15,3.0991e-15,3.9456e-15,5.4647e-15,5.4998e-15,5.6463e-15,6.8664e-15,6.8784e-15,8.2092e-15,8.7894e-15,2.315e-14,3.5242e-14,3.5746e-14,5.739e-14,6.511e-14,7.9109e-14,8.6949e-14,9.1928e-14,9.7761e-14,9.974e-14,1.0522e-13,1.3043e-13,1.3373e-13,1.4077e-13,1.4682e-13,2.0147e-13,2.875e-13,4.5268e-13,5.3654e-13,7.6731e-13,1.1407e-12,1.3466e-12,1.4667e-12,3.735e-12,4.1567e-12,4.4962e-12,5.2514e-12,6.3931e-12,7.5761e-12,8.6924e-12,8.9071e-12,9.0445e-12,1.0747e-11,1.6861e-11,1.7426e-11,2.0777e-11,2.7251e-11,3.163e-11,3.2404e-11,7.5239e-11,7.5909e-11,8.9492e-11,1.2325e-10,1.3061e-10,1.6204e-10,1.7047e-10,2.4271e-10,3.0513e-10,5.1091e-10,5.1721e-10,9.2468e-10,9.8753e-10,1.0084e-09,1.4624e-09,1.4972e-09,1.7102e-09,2.0363e-09,2.15e-09,2.2401e-09,2.6322e-09,2.7032e-09,2.7506e-09,3.124e-09,3.2661e-09,3.3042e-09,3.6702e-09,3.8113e-09,4.6932e-09,6.6099e-09,7.0234e-09,7.1376e-09,8.3079e-09,8.8441e-09,1.1394e-08,1.7685e-08,2.0242e-08,2.5034e-08,2.7059e-08,3.3544e-08,4.1473e-08,4.2195e-08,4.2764e-08,4.283e-08,4.5579e-08,4.582e-08,5.5638e-08,6.0797e-08,7.1774e-08,7.2305e-08,7.5609e-08,1.0054e-07,1.0137e-07,1.1598e-07,1.3507e-07,1.7693e-07,1.8329e-07,2.0269e-07,2.0729e-07,2.1938e-07,2.4118e-07,2.7868e-07,2.7978e-07,3.8715e-07,5.5762e-07,5.7948e-07,6.0465e-07,6.127e-07,7.6054e-07,8.6797e-07,1.3507e-06,1.3821e-06,1.4474e-06,1.5643e-06,2.083e-06,2.7968e-06,3.8438e-06,4.2257e-06,4.4704e-06,5.1543e-06,6.8509e-06,7.7544e-06,9.0961e-06,1.1596e-05,1.4267e-05,1.4807e-05,2.1937e-05,2.3088e-05,2.3523e-05,2.5747e-05,2.6686e-05,3.5435e-05,3.9965e-05,4.1373e-05,4.1519e-05,4.4639e-05,4.9196e-05,5.1455e-05,5.2491e-05,7.4175e-05,7.4207e-05,0.00010074,0.00014192,0.00019353,0.00025613,0.00028868,0.00029782,0.00032026,0.00034115,0.00039547,0.00040192,0.0005318,0.00057026,0.00065515,0.00077682,0.00086038,0.00087033,0.00094509,0.00099847,0.0011416,0.0013895,0.0014151,0.0015409,0.0017604,0.0019593,0.001969,0.0028262,0.0029948,0.0030789,0.0033045,0.0034274,0.0036295,0.0039736,0.0041205,0.0043335,0.0046971,0.005208,0.005741,0.0057977,0.0065204,0.0070387,0.0075254,0.0087448,0.0093576,0.0095895,0.010454,0.010508,0.01091,0.011092,0.013758,0.014526,0.014834,0.016315,0.017232,0.017375,0.019709,0.024953,0.026727,0.027682,0.03002,0.03023,0.033073,0.033397,0.037425,0.039978,0.04554,0.046073,0.046579,0.046863,0.047802,0.04858,0.04906,0.054351,0.055515,0.067596,0.072085,0.075189,0.076447,0.087544,0.087749,0.09168,0.093564,0.10349,0.10382,0.10459,0.11255,0.11484,0.11566,0.11818,0.12149,0.1247,0.12638,0.14389,0.14454,0.15442,0.17016,0.18597,0.20961,0.20996,0.21883,0.23034,0.24613,0.24631,0.25193,0.27945,0.28609,0.28683,0.32199,0.33001,0.33468,0.34928,0.36407,0.39208,0.39655,0.41844,0.46912,0.46981,0.47405,0.48276,0.48962,0.49812,0.50819,0.60358,0.62876,0.66714,0.69532,0.6967,0.69987,0.74084,0.75019,0.75097,0.78826,0.84673,0.84847,0.86431,0.86751,0.90088,0.90949,0.9271,0.93561,0.94445,0.94611,0.95568,0.95728,0.95803,0.97592,0.98034,0.98207,0.98715,0.98858,0.99406,0.99506,0.9968,0.9995,0.99952,0.99997,1,1,0.99869,0.9986,0.99727,0.99538,0.98958,0.9824,0.97613,0.9643,0.95138,0.93194,0.93109,0.91411,0.8963,0.88517,0.8532,0.84328,0.82244,0.8097,0.78225,0.77929,0.77314,0.75876,0.72798,0.69556,0.67815,0.66064,0.65147,0.65017,0.63348,0.61415,0.55522,0.53965,0.53112,0.51238,0.51225,0.49397,0.49171,0.47944,0.46966,0.43727,0.43266,0.40813,0.38588,0.31758,0.30556,0.29985,0.28519,0.27183,0.26686,0.2571,0.25023,0.24188,0.22848,0.22841,0.20559,0.1998,0.19861,0.19797,0.17703,0.17657,0.17456,0.17305,0.16919,0.16293,0.15746,0.13481,0.094903,0.085034,0.084202,0.08352,0.081343,0.080151,0.069522,0.063167,0.058848,0.056539,0.051957,0.048309,0.047655,0.042948,0.040462,0.037593,0.033343,0.028377,0.028082,0.026567,0.025556,0.025113,0.020786,0.019722,0.015458,0.01443,0.012765,0.011946,0.011691,0.010384,0.010225,0.0098844,0.0091758,0.0079489 1,3.5959e-27,6.1896e-27,6.3599e-27,7.4888e-27,8.4912e-27,1.0013e-26,1.3781e-26,2.9364e-26,4.7388e-26,5.0998e-26,7.4516e-26,7.9267e-26,1.0131e-25,1.8366e-25,2.2121e-25,2.517e-25,4.397e-25,4.8379e-25,5.3782e-25,7.67e-25,7.9678e-25,8.1442e-25,1.0666e-24,1.2504e-24,1.2569e-24,1.7044e-24,1.7522e-24,2.0101e-24,2.0467e-24,2.083e-24,5.2694e-24,1.2696e-23,1.3741e-23,1.7777e-23,2.236e-23,2.6709e-23,3.2968e-23,4.2088e-23,6.4599e-23,8.1722e-23,1.1963e-22,1.9285e-22,2.0151e-22,2.2125e-22,2.4118e-22,3.7741e-22,3.7767e-22,1.091e-21,1.1798e-21,1.2322e-21,1.6892e-21,1.7288e-21,3.2014e-21,4.0743e-21,4.5036e-21,5.6088e-21,6.4467e-21,8.1822e-21,8.8093e-21,1.5511e-20,2.1954e-20,6.4867e-20,8.7127e-20,9.6141e-20,1.1464e-19,1.8555e-19,2.0474e-19,2.234e-19,3.3614e-19,4.9221e-19,5.6661e-19,6.3571e-19,9.6353e-19,1.7499e-18,3.2667e-18,4.9609e-18,5.4139e-18,1.1758e-17,1.5349e-17,1.7376e-17,1.8358e-17,2.293e-17,5.6911e-17,5.8592e-17,6.8588e-17,8.8008e-17,9.2413e-17,1.3172e-16,3.4674e-16,3.5118e-16,4.6036e-16,5.0722e-16,1.5186e-15,1.9956e-15,2.036e-15,2.5961e-15,3.6029e-15,3.6263e-15,3.7235e-15,4.5337e-15,4.5417e-15,5.4265e-15,5.8125e-15,1.5404e-14,2.3515e-14,2.3853e-14,3.8415e-14,4.3619e-14,5.3066e-14,5.8361e-14,6.1726e-14,6.5669e-14,6.7007e-14,7.0712e-14,8.7783e-14,9.0015e-14,9.4792e-14,9.8893e-14,1.3599e-13,1.9452e-13,3.0722e-13,3.6456e-13,5.2263e-13,7.7907e-13,9.2078e-13,1.0035e-12,2.5721e-12,2.8647e-12,3.1004e-12,3.6252e-12,4.4195e-12,5.2437e-12,6.0222e-12,6.1721e-12,6.268e-12,7.4572e-12,1.1738e-11,1.2134e-11,1.4486e-11,1.9037e-11,2.2121e-11,2.2666e-11,5.2959e-11,5.3434e-11,6.3073e-11,8.7075e-11,9.2317e-11,1.1472e-10,1.2074e-10,1.7237e-10,2.1708e-10,3.6494e-10,3.6948e-10,6.6358e-10,7.0906e-10,7.2419e-10,1.0533e-09,1.0786e-09,1.2334e-09,1.4706e-09,1.5534e-09,1.619e-09,1.9049e-09,1.9568e-09,1.9913e-09,2.264e-09,2.3678e-09,2.3957e-09,2.6634e-09,2.7666e-09,3.4127e-09,4.8201e-09,5.1242e-09,5.2082e-09,6.0699e-09,6.4651e-09,8.3467e-09,1.3004e-08,1.4902e-08,1.8463e-08,1.997e-08,2.4803e-08,3.0723e-08,3.1262e-08,3.1687e-08,3.1737e-08,3.3792e-08,3.3972e-08,4.1322e-08,4.5189e-08,5.3427e-08,5.3826e-08,5.6308e-08,7.5065e-08,7.5693e-08,8.6706e-08,1.0112e-07,1.3279e-07,1.376e-07,1.5231e-07,1.558e-07,1.6497e-07,1.8152e-07,2.1003e-07,2.1087e-07,2.9268e-07,4.2301e-07,4.3976e-07,4.5905e-07,4.6522e-07,5.7867e-07,6.6126e-07,1.0335e-06,1.0577e-06,1.1082e-06,1.1987e-06,1.6007e-06,2.1556e-06,2.9721e-06,3.2706e-06,3.4621e-06,3.9976e-06,5.3292e-06,6.0399e-06,7.097e-06,9.0712e-06,1.1186e-05,1.1614e-05,1.728e-05,1.8197e-05,1.8544e-05,2.0317e-05,2.1066e-05,2.8062e-05,3.1693e-05,3.2823e-05,3.294e-05,3.5444e-05,3.9107e-05,4.0923e-05,4.1757e-05,5.9245e-05,5.927e-05,8.0756e-05,0.00011423,0.00015637,0.00020768,0.00023443,0.00024194,0.00026042,0.00027763,0.00032244,0.00032777,0.00043528,0.00046719,0.00053774,0.00063906,0.00070879,0.0007171,0.00077957,0.00082423,0.00094412,0.0011523,0.0011738,0.0012798,0.0014648,0.0016328,0.0016411,0.0023681,0.0025115,0.0025831,0.0027753,0.0028802,0.0030527,0.0033467,0.0034725,0.0036548,0.0039664,0.004405,0.0048633,0.0049121,0.0055349,0.0059822,0.0064029,0.0074588,0.0079906,0.008192,0.0089433,0.0089907,0.0093405,0.0094986,0.011826,0.012498,0.012768,0.014066,0.014872,0.014997,0.01705,0.021682,0.023253,0.024101,0.026177,0.026363,0.028893,0.029183,0.032776,0.035058,0.040042,0.040521,0.040974,0.041229,0.042073,0.042772,0.043203,0.047966,0.049016,0.059937,0.064009,0.066829,0.067972,0.078081,0.078268,0.081858,0.08358,0.092669,0.092969,0.09368,0.10099,0.10309,0.10384,0.10616,0.10922,0.11217,0.11373,0.12992,0.13052,0.13968,0.15431,0.16907,0.19121,0.19154,0.19987,0.2107,0.2256,0.22577,0.23108,0.25716,0.26347,0.26417,0.2977,0.30537,0.30984,0.32384,0.33805,0.36505,0.36937,0.39057,0.43988,0.44056,0.4447,0.45322,0.45994,0.46827,0.47815,0.57254,0.59769,0.63625,0.66473,0.66613,0.66934,0.71108,0.72066,0.72145,0.75989,0.82099,0.82283,0.83962,0.84302,0.87888,0.88825,0.90761,0.91708,0.92702,0.92889,0.93982,0.94166,0.94252,0.96367,0.96911,0.97127,0.97776,0.97964,0.98722,0.98871,0.99142,0.99658,0.99661,0.99826,0.99869,0.99869,1,1,0.99974,0.99899,0.99564,0.99063,0.98589,0.97643,0.96563,0.9488,0.94805,0.93295,0.91685,0.90666,0.87704,0.86774,0.8481,0.83601,0.80979,0.80694,0.80103,0.78717,0.75732,0.72565,0.70854,0.69128,0.68222,0.68094,0.6644,0.64518,0.58618,0.5705,0.56189,0.54294,0.54281,0.52427,0.52198,0.5095,0.49954,0.46645,0.46172,0.43654,0.41361,0.34276,0.33021,0.32424,0.30889,0.29488,0.28965,0.27939,0.27215,0.26334,0.24918,0.24911,0.22491,0.21876,0.21749,0.21681,0.19448,0.194,0.19184,0.19023,0.1861,0.17939,0.17353,0.14918,0.10593,0.095153,0.094244,0.093498,0.091116,0.089812,0.078151,0.071157,0.066394,0.063843,0.058774,0.054731,0.054005,0.048776,0.046008,0.042809,0.03806,0.032493,0.032162,0.030458,0.029321,0.028823,0.023941,0.022737,0.0179,0.01673,0.014831,0.013895,0.013604,0.012107,0.011925,0.011534,0.010721,0.0093095 1,3.5322e-27,6.0805e-27,6.2478e-27,7.357e-27,8.3419e-27,9.8374e-27,1.354e-26,2.8853e-26,4.6567e-26,5.0114e-26,7.323e-26,7.7899e-26,9.9565e-26,1.8051e-25,2.1743e-25,2.474e-25,4.3223e-25,4.7557e-25,5.287e-25,7.5403e-25,7.833e-25,8.0064e-25,1.0486e-24,1.2294e-24,1.2357e-24,1.6757e-24,1.7228e-24,1.9764e-24,2.0124e-24,2.048e-24,5.1818e-24,1.2486e-23,1.3515e-23,1.7485e-23,2.1993e-23,2.6272e-23,3.243e-23,4.1402e-23,6.355e-23,8.0398e-23,1.177e-22,1.8975e-22,1.9827e-22,2.177e-22,2.3731e-22,3.7139e-22,3.7165e-22,1.0738e-21,1.1612e-21,1.2128e-21,1.6626e-21,1.7016e-21,3.1514e-21,4.0109e-21,4.4335e-21,5.5218e-21,6.3468e-21,8.0558e-21,8.6732e-21,1.5273e-20,2.1619e-20,6.3887e-20,8.5816e-20,9.4695e-20,1.1292e-19,1.8278e-19,2.0168e-19,2.2007e-19,3.3116e-19,4.8495e-19,5.5826e-19,6.2635e-19,9.4942e-19,1.7244e-18,3.2196e-18,4.8898e-18,5.3362e-18,1.1591e-17,1.5132e-17,1.713e-17,1.8098e-17,2.2607e-17,5.6119e-17,5.7778e-17,6.7636e-17,8.6791e-17,9.1136e-17,1.299e-16,3.4204e-16,3.4642e-16,4.5414e-16,5.0038e-16,1.4984e-15,1.9692e-15,2.009e-15,2.5619e-15,3.5557e-15,3.5787e-15,3.6747e-15,4.4744e-15,4.4823e-15,5.3557e-15,5.7368e-15,1.5207e-14,2.3216e-14,2.3549e-14,3.7929e-14,4.3069e-14,5.2398e-14,5.7628e-14,6.0951e-14,6.4846e-14,6.6167e-14,6.9827e-14,8.6688e-14,8.8893e-14,9.361e-14,9.7662e-14,1.343e-13,1.9213e-13,3.0347e-13,3.6012e-13,5.163e-13,7.6971e-13,9.0975e-13,9.9149e-13,2.5419e-12,2.8311e-12,3.0641e-12,3.5829e-12,4.3681e-12,5.1828e-12,5.9525e-12,6.1007e-12,6.1955e-12,7.3712e-12,1.1603e-11,1.1995e-11,1.4321e-11,1.8822e-11,2.1871e-11,2.241e-11,5.2372e-11,5.2842e-11,6.2377e-11,8.612e-11,9.1306e-11,1.1347e-10,1.1942e-10,1.7051e-10,2.1474e-10,3.6106e-10,3.6555e-10,6.5663e-10,7.0164e-10,7.1662e-10,1.0424e-09,1.0674e-09,1.2207e-09,1.4555e-09,1.5375e-09,1.6024e-09,1.8855e-09,1.9368e-09,1.971e-09,2.241e-09,2.3438e-09,2.3714e-09,2.6364e-09,2.7386e-09,3.3783e-09,4.772e-09,5.0732e-09,5.1564e-09,6.0098e-09,6.4011e-09,8.2646e-09,1.2878e-08,1.4757e-08,1.8286e-08,1.9778e-08,2.4566e-08,3.0431e-08,3.0966e-08,3.1387e-08,3.1436e-08,3.3473e-08,3.3651e-08,4.0934e-08,4.4766e-08,5.2929e-08,5.3324e-08,5.5784e-08,7.4372e-08,7.4994e-08,8.5909e-08,1.0019e-07,1.3158e-07,1.3636e-07,1.5093e-07,1.5439e-07,1.6349e-07,1.7989e-07,2.0815e-07,2.0898e-07,2.9009e-07,4.1932e-07,4.3592e-07,4.5505e-07,4.6117e-07,5.7367e-07,6.5557e-07,1.0247e-06,1.0488e-06,1.0989e-06,1.1886e-06,1.5873e-06,2.1378e-06,2.9479e-06,3.2441e-06,3.4341e-06,3.9654e-06,5.2868e-06,5.9922e-06,7.0412e-06,9.0006e-06,1.1099e-05,1.1524e-05,1.7149e-05,1.806e-05,1.8404e-05,2.0165e-05,2.0909e-05,2.7855e-05,3.146e-05,3.2582e-05,3.2698e-05,3.5185e-05,3.8822e-05,4.0626e-05,4.1454e-05,5.8823e-05,5.8848e-05,8.019e-05,0.00011345,0.00015531,0.0002063,0.00023288,0.00024035,0.00025871,0.00027581,0.00032036,0.00032565,0.00043252,0.00046424,0.00053437,0.00063511,0.00070443,0.0007127,0.00077481,0.00081922,0.00093843,0.0011454,0.0011669,0.0012723,0.0014563,0.0016234,0.0016316,0.0023548,0.0024975,0.0025687,0.00276,0.0028643,0.0030359,0.0033285,0.0034536,0.0036351,0.0039451,0.0043815,0.0048377,0.0048862,0.005506,0.0059513,0.00637,0.0074211,0.0079504,0.0081509,0.0088989,0.0089461,0.0092944,0.0094518,0.011769,0.012438,0.012707,0.014,0.014802,0.014927,0.016971,0.021585,0.02315,0.023994,0.026063,0.026248,0.028769,0.029057,0.032638,0.034911,0.039878,0.040355,0.040807,0.041061,0.041902,0.042599,0.043028,0.047775,0.048821,0.059707,0.063766,0.066577,0.067718,0.077796,0.077982,0.081562,0.083279,0.092342,0.092641,0.093351,0.10064,0.10273,0.10349,0.1058,0.10885,0.11179,0.11334,0.12949,0.13009,0.13923,0.15383,0.16855,0.19065,0.19098,0.19929,0.2101,0.22497,0.22514,0.23044,0.25648,0.26277,0.26347,0.29695,0.30461,0.30907,0.32306,0.33725,0.36421,0.36853,0.3897,0.43897,0.43965,0.44379,0.45229,0.45901,0.46733,0.47721,0.57156,0.59671,0.63527,0.66376,0.66515,0.66837,0.71013,0.71972,0.72051,0.75897,0.82015,0.822,0.83882,0.84222,0.87815,0.88755,0.90696,0.91646,0.92643,0.92831,0.93928,0.94113,0.942,0.96325,0.96871,0.97089,0.97743,0.97932,0.98696,0.98846,0.99121,0.99644,0.99648,0.99816,0.9986,0.9986,1,1,0.99978,0.99906,0.99579,0.99085,0.98616,0.97678,0.96604,0.94929,0.94855,0.93351,0.91746,0.90731,0.87777,0.86849,0.84888,0.83682,0.81064,0.8078,0.8019,0.78805,0.75823,0.72659,0.70949,0.69224,0.68318,0.6819,0.66537,0.64615,0.58716,0.57148,0.56287,0.54391,0.54378,0.52524,0.52294,0.51046,0.5005,0.46738,0.46265,0.43745,0.4145,0.34357,0.33101,0.32503,0.30966,0.29562,0.29039,0.28011,0.27286,0.26404,0.24986,0.24978,0.22554,0.21938,0.2181,0.21743,0.19505,0.19456,0.19241,0.19079,0.18665,0.17993,0.17406,0.14965,0.10629,0.095488,0.094577,0.093829,0.091439,0.090131,0.078438,0.071422,0.066644,0.064086,0.059001,0.054945,0.054217,0.048971,0.046194,0.042983,0.038218,0.032631,0.032299,0.030589,0.029448,0.028947,0.024047,0.022838,0.017982,0.016807,0.014901,0.013961,0.013668,0.012166,0.011982,0.01159,0.010773,0.0093557 1,2.7977e-27,4.8211e-27,4.954e-27,5.8354e-27,6.6182e-27,7.8072e-27,1.0752e-26,2.2946e-26,3.7068e-26,3.9897e-26,5.8344e-26,6.2072e-26,7.9374e-26,1.4407e-25,1.736e-25,1.9758e-25,3.4558e-25,3.803e-25,4.2287e-25,6.0353e-25,6.2701e-25,6.4092e-25,8.3989e-25,9.8497e-25,9.9009e-25,1.3434e-24,1.3812e-24,1.585e-24,1.6139e-24,1.6426e-24,4.1638e-24,1.0051e-23,1.0881e-23,1.4085e-23,1.7725e-23,2.1181e-23,2.6157e-23,3.3411e-23,5.133e-23,6.4969e-23,9.519e-23,1.5361e-22,1.6053e-22,1.7629e-22,1.9221e-22,3.0109e-22,3.013e-22,8.725e-22,9.4369e-22,9.8568e-22,1.3522e-21,1.384e-21,2.5666e-21,3.2683e-21,3.6135e-21,4.5026e-21,5.177e-21,6.5744e-21,7.0794e-21,1.2482e-20,1.7682e-20,5.2379e-20,7.0404e-20,7.7706e-20,9.2696e-20,1.5021e-19,1.6578e-19,1.8093e-19,2.7252e-19,3.9943e-19,4.5996e-19,5.162e-19,7.832e-19,1.4245e-18,2.6635e-18,4.0492e-18,4.4198e-18,9.6185e-18,1.2564e-17,1.4228e-17,1.5034e-17,1.8789e-17,4.6745e-17,4.813e-17,5.6364e-17,7.237e-17,7.6003e-17,1.0843e-16,2.8618e-16,2.8985e-16,3.8024e-16,4.1906e-16,1.2584e-15,1.6549e-15,1.6885e-15,2.1545e-15,2.9928e-15,3.0122e-15,3.0932e-15,3.7683e-15,3.7749e-15,4.5126e-15,4.8346e-15,1.2848e-14,1.9637e-14,1.992e-14,3.2124e-14,3.6489e-14,4.4417e-14,4.8863e-14,5.1688e-14,5.5001e-14,5.6124e-14,5.9237e-14,7.3584e-14,7.5461e-14,7.9477e-14,8.2926e-14,1.1414e-13,1.6344e-13,2.5848e-13,3.0688e-13,4.4042e-13,6.5733e-13,7.7729e-13,8.4734e-13,2.1782e-12,2.4268e-12,2.6271e-12,3.0733e-12,3.749e-12,4.4505e-12,5.1135e-12,5.2411e-12,5.3228e-12,6.3362e-12,9.9876e-12,1.0326e-11,1.2334e-11,1.6224e-11,1.8861e-11,1.9327e-11,4.5284e-11,4.5692e-11,5.3964e-11,7.4579e-11,7.9084e-11,9.8346e-11,1.0352e-10,1.4797e-10,1.865e-10,3.1409e-10,3.1801e-10,5.7231e-10,6.1167e-10,6.2477e-10,9.0993e-10,9.3184e-10,1.0661e-09,1.2719e-09,1.3438e-09,1.4007e-09,1.6491e-09,1.6941e-09,1.7241e-09,1.9611e-09,2.0514e-09,2.0756e-09,2.3084e-09,2.3982e-09,2.9605e-09,4.1867e-09,4.4519e-09,4.5252e-09,5.2768e-09,5.6217e-09,7.2647e-09,1.1337e-08,1.2998e-08,1.6118e-08,1.7439e-08,2.1676e-08,2.6872e-08,2.7346e-08,2.7719e-08,2.7763e-08,2.9568e-08,2.9726e-08,3.6185e-08,3.9585e-08,4.6833e-08,4.7184e-08,4.9368e-08,6.5888e-08,6.6441e-08,7.6149e-08,8.8859e-08,1.1682e-07,1.2107e-07,1.3407e-07,1.3715e-07,1.4526e-07,1.599e-07,1.8512e-07,1.8586e-07,2.5832e-07,3.7392e-07,3.8879e-07,4.0592e-07,4.1139e-07,5.122e-07,5.8562e-07,9.1704e-07,9.3864e-07,9.8365e-07,1.0643e-06,1.423e-06,1.9189e-06,2.6496e-06,2.9169e-06,3.0885e-06,3.5685e-06,4.7635e-06,5.4019e-06,6.352e-06,8.1283e-06,1.0033e-05,1.0419e-05,1.5532e-05,1.636e-05,1.6673e-05,1.8276e-05,1.8953e-05,2.5283e-05,2.8572e-05,2.9596e-05,2.9701e-05,3.1971e-05,3.5292e-05,3.694e-05,3.7696e-05,5.358e-05,5.3603e-05,7.3151e-05,0.00010367,0.00014214,0.00018908,0.00021357,0.00022046,0.00023739,0.00025317,0.00029429,0.00029918,0.00039796,0.00042731,0.00049223,0.00058558,0.00064987,0.00065754,0.00071518,0.0007564,0.00086713,0.0010596,0.0010796,0.0011776,0.0013491,0.0015048,0.0015125,0.0021876,0.002321,0.0023876,0.0025665,0.0026642,0.0028248,0.0030988,0.003216,0.0033861,0.0036768,0.0040863,0.0045146,0.0045602,0.0051426,0.0055613,0.0059553,0.006945,0.0074439,0.0076329,0.0083383,0.0083828,0.0087115,0.0088601,0.011049,0.011682,0.011936,0.01316,0.013919,0.014038,0.015976,0.020355,0.021843,0.022646,0.024614,0.02479,0.02719,0.027465,0.030878,0.033047,0.037789,0.038245,0.038677,0.03892,0.039724,0.04039,0.040801,0.045342,0.046344,0.056777,0.060672,0.063372,0.064467,0.074157,0.074336,0.077781,0.079434,0.088166,0.088454,0.089138,0.096171,0.098191,0.098916,0.10115,0.10409,0.10694,0.10844,0.12405,0.12463,0.13349,0.14764,0.16194,0.18342,0.18374,0.19184,0.20237,0.21687,0.21703,0.22221,0.24765,0.25381,0.25449,0.28728,0.29479,0.29917,0.3129,0.32684,0.35337,0.35762,0.37849,0.42715,0.42782,0.43191,0.44033,0.44698,0.45522,0.46502,0.55882,0.58392,0.62249,0.65105,0.65245,0.65568,0.69768,0.70735,0.70815,0.74701,0.80915,0.81103,0.82821,0.83169,0.86856,0.87825,0.89834,0.90821,0.91862,0.92058,0.93208,0.93403,0.93494,0.95749,0.96336,0.9657,0.97281,0.97489,0.98338,0.98507,0.98821,0.99445,0.99449,0.99666,0.99727,0.99727,0.99974,0.99978,1,0.99975,0.9975,0.99347,0.98942,0.98104,0.9712,0.95557,0.95486,0.94064,0.92533,0.91559,0.88708,0.87808,0.85901,0.84724,0.82161,0.81883,0.81304,0.79943,0.77006,0.73878,0.72185,0.70473,0.69573,0.69446,0.67801,0.65888,0.59996,0.58425,0.57562,0.5566,0.55647,0.53785,0.53554,0.52299,0.51296,0.4796,0.47483,0.44938,0.42618,0.35426,0.34148,0.3354,0.31976,0.30546,0.30012,0.28964,0.28224,0.27323,0.25873,0.25866,0.23385,0.22754,0.22623,0.22554,0.20259,0.20209,0.19988,0.19822,0.19397,0.18706,0.18102,0.1559,0.11112,0.099934,0.09899,0.098214,0.095737,0.094381,0.082244,0.074953,0.069983,0.06732,0.062025,0.057797,0.057038,0.051564,0.048664,0.04531,0.040326,0.034475,0.034127,0.032335,0.031138,0.030613,0.025468,0.024197,0.019087,0.017848,0.015838,0.014846,0.014537,0.012949,0.012756,0.012341,0.011477,0.0099769 1,2.1865e-27,3.7721e-27,3.8763e-27,4.5674e-27,5.1814e-27,6.1143e-27,8.4263e-27,1.801e-26,2.9123e-26,3.1351e-26,4.5882e-26,4.882e-26,6.246e-26,1.1351e-25,1.3683e-25,1.5577e-25,2.7277e-25,3.0024e-25,3.3392e-25,4.7694e-25,4.9553e-25,5.0655e-25,6.6418e-25,7.7918e-25,7.8323e-25,1.0634e-24,1.0934e-24,1.2551e-24,1.2781e-24,1.3008e-24,3.304e-24,7.9907e-24,8.652e-24,1.1206e-23,1.4109e-23,1.6866e-23,2.0838e-23,2.6631e-23,4.0953e-23,5.1862e-23,7.605e-23,1.2286e-22,1.284e-22,1.4104e-22,1.538e-22,2.4117e-22,2.4133e-22,7.0053e-22,7.5782e-22,7.9162e-22,1.0868e-21,1.1124e-21,2.0658e-21,2.632e-21,2.9107e-21,3.6287e-21,4.1735e-21,5.303e-21,5.7113e-21,1.0083e-20,1.4295e-20,4.2454e-20,5.7104e-20,6.3042e-20,7.5235e-20,1.2205e-19,1.3474e-19,1.4709e-19,2.2176e-19,3.2532e-19,3.7476e-19,4.2069e-19,6.3894e-19,1.1638e-18,2.1794e-18,3.3167e-18,3.6211e-18,7.8957e-18,1.0321e-17,1.1691e-17,1.2355e-17,1.545e-17,3.8527e-17,3.9671e-17,4.6477e-17,5.9715e-17,6.272e-17,8.956e-17,2.3698e-16,2.4003e-16,3.1511e-16,3.4737e-16,1.0462e-15,1.3768e-15,1.4048e-15,1.7937e-15,2.4939e-15,2.5101e-15,2.5778e-15,3.1421e-15,3.1477e-15,3.7646e-15,4.0339e-15,1.0749e-14,1.6449e-14,1.6686e-14,2.6946e-14,3.0619e-14,3.7291e-14,4.1036e-14,4.3415e-14,4.6205e-14,4.7152e-14,4.9775e-14,6.1869e-14,6.3451e-14,6.6838e-14,6.9747e-14,9.6088e-14,1.3774e-13,2.1812e-13,2.5909e-13,3.7223e-13,5.5621e-13,6.5805e-13,7.1754e-13,1.8498e-12,2.0616e-12,2.2323e-12,2.6126e-12,3.189e-12,3.7877e-12,4.3539e-12,4.4629e-12,4.5327e-12,5.3985e-12,8.5216e-12,8.8111e-12,1.0531e-11,1.3864e-11,1.6125e-11,1.6525e-11,3.8824e-11,3.9174e-11,4.6291e-11,6.4042e-11,6.7924e-11,8.4528e-11,8.8992e-11,1.2735e-10,1.6063e-10,2.71e-10,2.744e-10,4.9481e-10,5.2896e-10,5.4033e-10,7.8795e-10,8.07e-10,9.2367e-10,1.1027e-09,1.1652e-09,1.2148e-09,1.431e-09,1.4702e-09,1.4963e-09,1.7028e-09,1.7815e-09,1.8025e-09,2.0055e-09,2.0838e-09,2.5743e-09,3.645e-09,3.8767e-09,3.9408e-09,4.5979e-09,4.8995e-09,6.3373e-09,9.9062e-09,1.1363e-08,1.4102e-08,1.5262e-08,1.8986e-08,2.3556e-08,2.3973e-08,2.4301e-08,2.4339e-08,2.5928e-08,2.6068e-08,3.1755e-08,3.4751e-08,4.1139e-08,4.1449e-08,4.3376e-08,5.7954e-08,5.8443e-08,6.7018e-08,7.8251e-08,1.0298e-07,1.0675e-07,1.1825e-07,1.2099e-07,1.2817e-07,1.4113e-07,1.6349e-07,1.6415e-07,2.2845e-07,3.3118e-07,3.444e-07,3.5964e-07,3.6451e-07,4.5423e-07,5.1964e-07,8.1525e-07,8.3453e-07,8.7472e-07,9.4676e-07,1.2674e-06,1.7113e-06,2.3662e-06,2.6061e-06,2.7601e-06,3.1911e-06,4.2652e-06,4.8396e-06,5.695e-06,7.2958e-06,9.0142e-06,9.3624e-06,1.3983e-05,1.4733e-05,1.5016e-05,1.6466e-05,1.708e-05,2.2815e-05,2.5798e-05,2.6727e-05,2.6823e-05,2.8884e-05,3.19e-05,3.3396e-05,3.4084e-05,4.8529e-05,4.855e-05,6.6361e-05,9.4213e-05,0.0001294,0.00017239,0.00019484,0.00020116,0.0002167,0.00023118,0.00026895,0.00027344,0.0003643,0.00039133,0.00045115,0.00053724,0.00059658,0.00060366,0.0006569,0.00069499,0.00079738,0.00097555,0.00099403,0.0010849,0.0012438,0.0013884,0.0013955,0.0020231,0.0021473,0.0022093,0.002376,0.0024669,0.0026167,0.0028722,0.0029816,0.0031403,0.0034118,0.0037944,0.004195,0.0042376,0.0047828,0.005175,0.0055442,0.0064726,0.0069409,0.0071184,0.0077812,0.0078231,0.008132,0.0082717,0.010332,0.010928,0.011168,0.012322,0.013039,0.013151,0.014981,0.019124,0.020533,0.021294,0.023161,0.023328,0.025606,0.025867,0.029109,0.031172,0.035687,0.036121,0.036533,0.036764,0.03753,0.038165,0.038557,0.042889,0.043844,0.053815,0.057543,0.060128,0.061177,0.070467,0.070639,0.073945,0.075533,0.083923,0.0842,0.084858,0.091624,0.093568,0.094266,0.096417,0.099253,0.10199,0.10344,0.11851,0.11907,0.12762,0.14132,0.15516,0.17601,0.17632,0.18418,0.19442,0.20854,0.2087,0.21374,0.23854,0.24456,0.24522,0.27728,0.28464,0.28893,0.30238,0.31606,0.34212,0.3463,0.36683,0.41482,0.41548,0.41953,0.42785,0.43442,0.44257,0.45227,0.54542,0.57045,0.60898,0.6376,0.63901,0.64225,0.68445,0.69419,0.695,0.73423,0.79731,0.79923,0.81676,0.82032,0.85814,0.86813,0.8889,0.89916,0.91,0.91205,0.9241,0.92614,0.92711,0.95099,0.95728,0.9598,0.9675,0.96977,0.97913,0.98103,0.98459,0.99187,0.99192,0.9946,0.99538,0.99538,0.99899,0.99906,0.99975,1,0.99882,0.99576,0.99239,0.98508,0.9762,0.96176,0.96111,0.94776,0.93325,0.92396,0.89658,0.88789,0.8694,0.85796,0.83296,0.83023,0.82457,0.81123,0.78236,0.75151,0.73476,0.7178,0.70888,0.70761,0.69128,0.67225,0.61346,0.59775,0.5891,0.57004,0.56991,0.55122,0.5489,0.53629,0.5262,0.4926,0.48779,0.4621,0.43864,0.36571,0.35272,0.34654,0.33061,0.31604,0.3106,0.29989,0.29234,0.28314,0.26832,0.26824,0.24284,0.23637,0.23503,0.23432,0.21077,0.21025,0.20797,0.20627,0.2019,0.1948,0.18859,0.1627,0.1164,0.1048,0.10382,0.10301,0.10044,0.099035,0.08642,0.078831,0.073653,0.070877,0.065353,0.060939,0.060145,0.054424,0.05139,0.047879,0.042656,0.036517,0.036152,0.034268,0.033011,0.032459,0.027045,0.025706,0.020316,0.019008,0.016883,0.015833,0.015506,0.013825,0.01362,0.01318,0.012264,0.010672 1,1.2756e-27,2.2059e-27,2.2671e-27,2.6733e-27,3.0343e-27,3.5833e-27,4.9452e-27,1.0606e-26,1.7186e-26,1.8507e-26,2.7131e-26,2.8877e-26,3.6986e-26,6.7398e-26,8.1312e-26,9.2625e-26,1.626e-25,1.7906e-25,1.9924e-25,2.8504e-25,2.9621e-25,3.0282e-25,3.9755e-25,4.6673e-25,4.6917e-25,6.3792e-25,6.5599e-25,7.5345e-25,7.673e-25,7.8102e-25,1.9924e-24,4.8386e-24,5.2409e-24,6.7963e-24,8.5662e-24,1.0249e-23,1.2675e-23,1.6218e-23,2.4991e-23,3.1684e-23,4.6546e-23,7.5369e-23,7.8786e-23,8.6578e-23,9.4453e-23,1.4843e-22,1.4853e-22,4.3341e-22,4.6904e-22,4.9006e-22,6.7383e-22,6.8979e-22,1.2849e-21,1.6391e-21,1.8136e-21,2.2634e-21,2.6051e-21,3.3141e-21,3.5706e-21,6.3218e-21,8.9784e-21,2.6813e-20,3.6121e-20,3.9897e-20,4.7657e-20,7.751e-20,8.5611e-20,9.3496e-20,1.4126e-19,2.0766e-19,2.3939e-19,2.6889e-19,4.093e-19,7.4791e-19,1.4053e-18,2.1435e-18,2.3413e-18,5.1268e-18,6.7113e-18,7.6075e-18,8.0421e-18,1.0069e-17,2.5236e-17,2.599e-17,3.0476e-17,3.921e-17,4.1195e-17,5.8943e-17,1.5683e-16,1.5886e-16,2.0887e-16,2.3039e-16,6.9832e-16,9.2048e-16,9.3933e-16,1.2011e-15,1.6732e-15,1.6841e-15,1.7298e-15,2.1109e-15,2.1147e-15,2.5319e-15,2.7141e-15,7.2751e-15,1.1161e-14,1.1323e-14,1.8339e-14,2.0855e-14,2.5431e-14,2.8001e-14,2.9635e-14,3.1552e-14,3.2202e-14,3.4005e-14,4.2324e-14,4.3414e-14,4.5746e-14,4.775e-14,6.5915e-14,9.4699e-14,1.504e-13,1.7885e-13,2.5755e-13,3.8584e-13,4.5698e-13,4.9857e-13,1.2933e-12,1.4424e-12,1.5626e-12,1.8308e-12,2.2377e-12,2.6608e-12,3.0614e-12,3.1386e-12,3.188e-12,3.8015e-12,6.0192e-12,6.2251e-12,7.4491e-12,9.8252e-12,1.144e-11,1.1725e-11,2.7711e-11,2.7963e-11,3.3082e-11,4.5873e-11,4.8674e-11,6.0667e-11,6.3894e-11,9.1671e-11,1.1582e-10,1.9614e-10,1.9862e-10,3.5972e-10,3.8473e-10,3.9307e-10,5.7482e-10,5.8882e-10,6.7463e-10,8.0645e-10,8.5255e-10,8.891e-10,1.0486e-09,1.0776e-09,1.0969e-09,1.2495e-09,1.3076e-09,1.3232e-09,1.4734e-09,1.5314e-09,1.8949e-09,2.6904e-09,2.8628e-09,2.9104e-09,3.3998e-09,3.6247e-09,4.6978e-09,7.3696e-09,8.4627e-09,1.0521e-08,1.1393e-08,1.4199e-08,1.7647e-08,1.7962e-08,1.821e-08,1.8239e-08,1.944e-08,1.9545e-08,2.3849e-08,2.6118e-08,3.0962e-08,3.1197e-08,3.266e-08,4.3743e-08,4.4115e-08,5.0646e-08,5.9212e-08,7.811e-08,8.0991e-08,8.9796e-08,9.1891e-08,9.7394e-08,1.0734e-07,1.245e-07,1.25e-07,1.7447e-07,2.5376e-07,2.6399e-07,2.7577e-07,2.7954e-07,3.4903e-07,3.9978e-07,6.2977e-07,6.448e-07,6.7615e-07,7.3237e-07,9.8306e-07,1.3311e-06,1.8462e-06,2.0352e-06,2.1566e-06,2.4969e-06,3.3467e-06,3.8021e-06,4.4814e-06,5.7552e-06,7.1258e-06,7.4038e-06,1.1103e-05,1.1705e-05,1.1932e-05,1.3097e-05,1.359e-05,1.8209e-05,2.0616e-05,2.1366e-05,2.1444e-05,2.3109e-05,2.5549e-05,2.6761e-05,2.7318e-05,3.9044e-05,3.9061e-05,5.3574e-05,7.6358e-05,0.00010525,0.00014069,0.00015924,0.00016447,0.00017732,0.00018932,0.00022065,0.00022438,0.00029998,0.00032251,0.00037246,0.0004445,0.00049425,0.00050019,0.00054489,0.0005769,0.00066305,0.00081332,0.00082893,0.00090575,0.0010403,0.0011629,0.0011689,0.0017032,0.0018093,0.0018623,0.0020048,0.0020826,0.0022109,0.00243,0.0025238,0.0026602,0.0028936,0.0032231,0.0035685,0.0036053,0.0040764,0.0044159,0.0047358,0.0055418,0.0059492,0.0061037,0.0066813,0.0067177,0.0069873,0.0071092,0.0089113,0.0094342,0.0096445,0.010658,0.011288,0.011387,0.013,0.016664,0.017914,0.01859,0.020249,0.020398,0.022427,0.022659,0.025555,0.0274,0.031447,0.031837,0.032207,0.032415,0.033103,0.033674,0.034026,0.037926,0.038788,0.047802,0.051182,0.053529,0.054482,0.062941,0.063097,0.066115,0.067565,0.075241,0.075495,0.076097,0.082304,0.08409,0.084731,0.086708,0.089316,0.091838,0.093171,0.10708,0.1076,0.11552,0.12823,0.14112,0.1606,0.16089,0.16826,0.17787,0.19114,0.19129,0.19604,0.21947,0.22516,0.2258,0.25624,0.26325,0.26734,0.28019,0.29327,0.31827,0.32229,0.34206,0.3885,0.38914,0.39307,0.40116,0.40755,0.41549,0.42495,0.51643,0.54122,0.57957,0.60819,0.60961,0.61286,0.65536,0.66521,0.66603,0.70592,0.77078,0.77277,0.79099,0.7947,0.83443,0.84501,0.86719,0.87823,0.88998,0.89221,0.90539,0.90764,0.9087,0.93537,0.94254,0.94544,0.95438,0.95705,0.96828,0.97062,0.97505,0.98457,0.98465,0.98842,0.98958,0.98958,0.99564,0.99579,0.9975,0.99882,1,0.99905,0.99719,0.99223,0.98549,0.97374,0.97319,0.96181,0.94912,0.94086,0.91606,0.90808,0.89096,0.88028,0.85675,0.85417,0.8488,0.83612,0.80847,0.77867,0.76239,0.74586,0.73713,0.73589,0.71987,0.70113,0.64285,0.62717,0.61853,0.59943,0.5993,0.58051,0.57818,0.56547,0.55529,0.52127,0.51638,0.49024,0.46629,0.39131,0.37788,0.37147,0.35494,0.33979,0.33413,0.32297,0.31509,0.30547,0.28995,0.28987,0.26319,0.25637,0.25496,0.25421,0.22934,0.22879,0.22638,0.22458,0.21995,0.21242,0.20582,0.17825,0.12858,0.11604,0.11498,0.11411,0.11133,0.1098,0.096103,0.08784,0.082189,0.079156,0.07311,0.068271,0.0674,0.061112,0.057772,0.0539,0.048129,0.041325,0.040919,0.038826,0.037427,0.036813,0.030775,0.029279,0.023235,0.021765,0.019371,0.018186,0.017816,0.015915,0.015683,0.015185,0.014147,0.012338 1,7.8363e-28,1.358e-27,1.3959e-27,1.647e-27,1.8704e-27,2.2102e-27,3.0542e-27,6.5701e-27,1.0667e-26,1.149e-26,1.6871e-26,1.7961e-26,2.3027e-26,4.2064e-26,5.0786e-26,5.7883e-26,1.0185e-25,1.122e-25,1.249e-25,1.7895e-25,1.8599e-25,1.9016e-25,2.4992e-25,2.9361e-25,2.9515e-25,4.0182e-25,4.1325e-25,4.7492e-25,4.8368e-25,4.9237e-25,1.2609e-24,3.0737e-24,3.3304e-24,4.3235e-24,5.4548e-24,6.5314e-24,8.0848e-24,1.0355e-23,1.5986e-23,2.0288e-23,2.9855e-23,4.8442e-23,5.0648e-23,5.5681e-23,6.0768e-23,9.5684e-23,9.575e-23,2.8071e-22,3.0389e-22,3.1757e-22,4.3727e-22,4.4767e-22,8.3623e-22,1.0679e-21,1.1821e-21,1.4768e-21,1.7007e-21,2.1659e-21,2.3344e-21,4.1438e-21,5.8944e-21,1.7692e-20,2.3866e-20,2.6373e-20,3.1528e-20,5.1393e-20,5.6791e-20,6.2048e-20,9.3929e-20,1.3833e-19,1.5957e-19,1.7934e-19,2.7352e-19,5.0124e-19,9.4467e-19,1.4438e-18,1.5778e-18,3.4681e-18,4.5459e-18,5.1562e-18,5.4522e-18,6.8339e-18,1.7206e-17,1.7723e-17,2.0798e-17,2.6793e-17,2.8157e-17,4.036e-17,1.0792e-16,1.0933e-16,1.4395e-16,1.5885e-16,4.8428e-16,6.3927e-16,6.5243e-16,8.3531e-16,1.1657e-15,1.1733e-15,1.2053e-15,1.4725e-15,1.4751e-15,1.7678e-15,1.8958e-15,5.1085e-15,7.8555e-15,7.9703e-15,1.2943e-14,1.4729e-14,1.798e-14,1.9808e-14,2.097e-14,2.2334e-14,2.2797e-14,2.4081e-14,3.0009e-14,3.0785e-14,3.2448e-14,3.3878e-14,4.685e-14,6.7446e-14,1.074e-13,1.2784e-13,1.8448e-13,2.7702e-13,3.2841e-13,3.5848e-13,9.351e-13,1.0436e-12,1.1311e-12,1.3265e-12,1.6232e-12,1.9322e-12,2.2249e-12,2.2814e-12,2.3175e-12,2.7664e-12,4.3924e-12,4.5436e-12,5.443e-12,7.1913e-12,8.3808e-12,8.5914e-12,2.0414e-11,2.06e-11,2.4397e-11,3.39e-11,3.5983e-11,4.4912e-11,4.7317e-11,6.8044e-11,8.6099e-11,1.4631e-10,1.4817e-10,2.694e-10,2.8826e-10,2.9455e-10,4.3184e-10,4.4242e-10,5.0737e-10,6.0723e-10,6.4218e-10,6.6991e-10,7.9097e-10,8.1298e-10,8.2765e-10,9.4362e-10,9.8785e-10,9.9972e-10,1.114e-09,1.1581e-09,1.4352e-09,2.0426e-09,2.1744e-09,2.2108e-09,2.5854e-09,2.7576e-09,3.5806e-09,5.635e-09,6.4771e-09,8.0648e-09,8.7388e-09,1.0908e-08,1.3579e-08,1.3823e-08,1.4015e-08,1.4038e-08,1.4969e-08,1.5051e-08,1.8391e-08,2.0155e-08,2.3923e-08,2.4106e-08,2.5245e-08,3.3886e-08,3.4176e-08,3.9276e-08,4.5974e-08,6.0774e-08,6.3034e-08,6.9942e-08,7.1586e-08,7.5907e-08,8.3719e-08,9.7217e-08,9.7613e-08,1.366e-07,1.9926e-07,2.0735e-07,2.1668e-07,2.1967e-07,2.7477e-07,3.1506e-07,4.9814e-07,5.1013e-07,5.3514e-07,5.8002e-07,7.8046e-07,1.0594e-06,1.4735e-06,1.6257e-06,1.7235e-06,1.998e-06,2.6848e-06,3.0535e-06,3.6042e-06,4.639e-06,5.7547e-06,5.9813e-06,9.0029e-06,9.4952e-06,9.6813e-06,1.0636e-05,1.104e-05,1.4832e-05,1.6812e-05,1.743e-05,1.7494e-05,1.8866e-05,2.0878e-05,2.1878e-05,2.2337e-05,3.2036e-05,3.205e-05,4.4094e-05,6.3068e-05,8.7215e-05,0.00011693,0.00013252,0.00013691,0.00014773,0.00015784,0.00018425,0.0001874,0.00025132,0.00027042,0.00031279,0.00037402,0.00041638,0.00042143,0.00045953,0.00048684,0.00056043,0.00068907,0.00070245,0.00076833,0.00088393,0.00098939,0.00099459,0.0014558,0.0015475,0.0015935,0.0017169,0.0017845,0.0018958,0.0020861,0.0021677,0.0022864,0.0024896,0.002777,0.0030786,0.0031108,0.0035229,0.0038204,0.004101,0.0048091,0.0051676,0.0053037,0.0058127,0.0058449,0.0060827,0.0061904,0.0077842,0.0082477,0.0084342,0.0093342,0.0098944,0.0099819,0.011418,0.014691,0.015811,0.016416,0.017906,0.018039,0.019864,0.020073,0.022681,0.024346,0.028006,0.028359,0.028694,0.028882,0.029506,0.030023,0.030342,0.033883,0.034666,0.042877,0.045965,0.048112,0.048985,0.056739,0.056883,0.059655,0.060989,0.068057,0.068291,0.068846,0.074575,0.076225,0.076818,0.078646,0.08106,0.083395,0.084629,0.097539,0.098021,0.10539,0.11725,0.12931,0.14758,0.14785,0.15478,0.16384,0.17637,0.17651,0.181,0.20319,0.2086,0.2092,0.23819,0.24488,0.24879,0.26107,0.27361,0.29762,0.30149,0.32055,0.36549,0.36611,0.36993,0.37779,0.38401,0.39174,0.40095,0.49066,0.51515,0.55318,0.5817,0.58311,0.58636,0.62895,0.63887,0.63969,0.67999,0.74614,0.74819,0.76694,0.77077,0.81201,0.82307,0.84639,0.85807,0.87056,0.87294,0.88707,0.88949,0.89063,0.91966,0.92759,0.93081,0.94082,0.94383,0.95668,0.9594,0.9646,0.97608,0.97618,0.98092,0.9824,0.9824,0.99063,0.99085,0.99347,0.99576,0.99905,1,0.99951,0.99671,0.99193,0.98267,0.98222,0.97268,0.9617,0.95441,0.93209,0.92479,0.909,0.89906,0.87698,0.87455,0.86947,0.85745,0.83104,0.80235,0.78658,0.7705,0.76199,0.76078,0.74512,0.72674,0.66917,0.65359,0.64498,0.62593,0.6258,0.607,0.60466,0.59192,0.58169,0.5474,0.54247,0.51601,0.49168,0.41505,0.40125,0.39466,0.37762,0.36198,0.35612,0.34457,0.3364,0.32642,0.31029,0.31021,0.2824,0.27527,0.2738,0.27302,0.24696,0.24639,0.24386,0.24196,0.2371,0.22919,0.22224,0.19314,0.14034,0.12694,0.1258,0.12487,0.12188,0.12025,0.10554,0.096634,0.090537,0.087259,0.080718,0.075473,0.074528,0.067699,0.064065,0.059847,0.053548,0.0461,0.045655,0.04336,0.041823,0.041149,0.034503,0.032853,0.026169,0.024538,0.021879,0.020561,0.02015,0.018031,0.017771,0.017216,0.016055,0.014031 1,5.5178e-28,9.5772e-28,9.8448e-28,1.1621e-27,1.3203e-27,1.5609e-27,2.1588e-27,4.6542e-27,7.567e-27,8.1527e-27,1.1983e-26,1.276e-26,1.6371e-26,2.9957e-26,3.6189e-26,4.1262e-26,7.2722e-26,8.0136e-26,8.9236e-26,1.2798e-25,1.3303e-25,1.3603e-25,1.7892e-25,2.1029e-25,2.114e-25,2.8807e-25,2.9629e-25,3.4064e-25,3.4695e-25,3.5319e-25,9.0705e-25,2.217e-24,2.4027e-24,3.1216e-24,3.9412e-24,4.7217e-24,5.8484e-24,7.4966e-24,1.1588e-23,1.4718e-23,2.1683e-23,3.5236e-23,3.6845e-23,4.0518e-23,4.4232e-23,6.9745e-23,6.9793e-23,2.053e-22,2.2231e-22,2.3235e-22,3.2025e-22,3.279e-22,6.1371e-22,7.8434e-22,8.6848e-22,1.0858e-21,1.251e-21,1.5944e-21,1.7188e-21,3.0568e-21,4.3532e-21,1.3113e-20,1.7706e-20,1.9573e-20,2.3413e-20,3.8226e-20,4.2255e-20,4.618e-20,7.0005e-20,1.0323e-19,1.1914e-19,1.3395e-19,2.0459e-19,3.757e-19,7.096e-19,1.0861e-18,1.1873e-18,2.6169e-18,3.4334e-18,3.896e-18,4.1206e-18,5.1688e-18,1.3057e-17,1.345e-17,1.5793e-17,2.0364e-17,2.1404e-17,3.072e-17,8.244e-17,8.3517e-17,1.1008e-16,1.2152e-16,3.7199e-16,4.9155e-16,5.0171e-16,6.4294e-16,8.9834e-16,9.0428e-16,9.2903e-16,1.1358e-15,1.1378e-15,1.3645e-15,1.4637e-15,3.9593e-15,6.0985e-15,6.188e-15,1.0068e-14,1.1463e-14,1.4004e-14,1.5433e-14,1.6343e-14,1.741e-14,1.7772e-14,1.8777e-14,2.342e-14,2.4028e-14,2.5332e-14,2.6452e-14,3.6629e-14,5.2808e-14,8.425e-14,1.0036e-13,1.4503e-13,2.1815e-13,2.588e-13,2.826e-13,7.4012e-13,8.2637e-13,8.9599e-13,1.0515e-12,1.2878e-12,1.534e-12,1.7675e-12,1.8125e-12,1.8414e-12,2.1997e-12,3.4996e-12,3.6206e-12,4.3407e-12,5.7419e-12,6.6962e-12,6.8652e-12,1.6375e-11,1.6525e-11,1.9586e-11,2.7255e-11,2.8937e-11,3.6154e-11,3.8099e-11,5.4879e-11,6.9516e-11,1.1842e-10,1.1993e-10,2.1867e-10,2.3406e-10,2.3918e-10,3.5131e-10,3.5996e-10,4.1307e-10,4.948e-10,5.2342e-10,5.4613e-10,6.4535e-10,6.6339e-10,6.7542e-10,7.7055e-10,8.0685e-10,8.1659e-10,9.1041e-10,9.4668e-10,1.1744e-09,1.6743e-09,1.7829e-09,1.8129e-09,2.1217e-09,2.2638e-09,2.9432e-09,4.6425e-09,5.3402e-09,6.6566e-09,7.2159e-09,9.0173e-09,1.1238e-08,1.1441e-08,1.1601e-08,1.162e-08,1.2395e-08,1.2463e-08,1.5245e-08,1.6715e-08,1.9858e-08,2.0011e-08,2.0961e-08,2.818e-08,2.8423e-08,3.2689e-08,3.8296e-08,5.0701e-08,5.2596e-08,5.8393e-08,5.9773e-08,6.3402e-08,6.9965e-08,8.1311e-08,8.1644e-08,1.1446e-07,1.6733e-07,1.7416e-07,1.8205e-07,1.8457e-07,2.3116e-07,2.6526e-07,4.2052e-07,4.307e-07,4.5194e-07,4.9007e-07,6.6058e-07,8.9832e-07,1.2519e-06,1.382e-06,1.4657e-06,1.7007e-06,2.2895e-06,2.606e-06,3.0791e-06,3.9694e-06,4.9308e-06,5.1263e-06,7.7363e-06,8.1622e-06,8.3232e-06,9.1494e-06,9.4993e-06,1.2787e-05,1.4507e-05,1.5043e-05,1.5099e-05,1.6291e-05,1.8041e-05,1.8911e-05,1.9311e-05,2.7764e-05,2.7776e-05,3.8298e-05,5.4917e-05,7.6121e-05,0.00010227,0.00011602,0.00011989,0.00012944,0.00013836,0.00016171,0.00016449,0.0002211,0.00023803,0.00027564,0.00033006,0.00036775,0.00037225,0.00040618,0.00043052,0.00049616,0.00061107,0.00062304,0.00068198,0.0007855,0.00088004,0.00088471,0.0012992,0.0013818,0.0014232,0.0015344,0.0015953,0.0016957,0.0018676,0.0019413,0.0020485,0.0022324,0.0024925,0.0027659,0.0027951,0.003169,0.0034392,0.0036943,0.0043388,0.0046654,0.0047895,0.0052538,0.0052832,0.0055003,0.0055986,0.0070562,0.0074807,0.0076516,0.0084768,0.0089909,0.0090713,0.010391,0.013405,0.014439,0.014998,0.016374,0.016498,0.018186,0.018379,0.020796,0.022341,0.025741,0.02607,0.026381,0.026556,0.027136,0.027618,0.027915,0.031213,0.031943,0.039613,0.042503,0.044514,0.045332,0.052608,0.052743,0.055348,0.056602,0.063254,0.063475,0.063998,0.069399,0.070956,0.071516,0.073242,0.075521,0.077727,0.078894,0.091114,0.091571,0.098562,0.10983,0.1213,0.13873,0.13899,0.14562,0.15428,0.16628,0.16641,0.17072,0.19204,0.19724,0.19782,0.22576,0.23222,0.236,0.24788,0.26001,0.2833,0.28706,0.30559,0.34942,0.35003,0.35376,0.36144,0.36753,0.3751,0.38412,0.47241,0.49663,0.53436,0.56275,0.56415,0.56739,0.60995,0.61988,0.6207,0.66119,0.72809,0.73017,0.74926,0.75316,0.79535,0.80673,0.83079,0.8429,0.85589,0.85837,0.87313,0.87567,0.87686,0.90749,0.91593,0.91937,0.93012,0.93337,0.94733,0.95031,0.95605,0.9689,0.96901,0.97442,0.97613,0.97613,0.98589,0.98616,0.98942,0.99239,0.99719,0.99951,1,0.99876,0.99541,0.98796,0.98758,0.97941,0.96969,0.96313,0.94265,0.93587,0.92108,0.91171,0.89075,0.88843,0.88358,0.87206,0.84663,0.81881,0.80346,0.78776,0.77943,0.77825,0.76288,0.74481,0.6879,0.67243,0.66387,0.6449,0.64477,0.62601,0.62368,0.61093,0.6007,0.56629,0.56134,0.5347,0.51015,0.43246,0.41841,0.41169,0.39432,0.37834,0.37235,0.36053,0.35217,0.34193,0.32538,0.32529,0.29669,0.28935,0.28783,0.28703,0.26013,0.25954,0.25692,0.25496,0.24993,0.24174,0.23454,0.20434,0.14926,0.13522,0.13403,0.13305,0.12992,0.1282,0.11274,0.10336,0.096929,0.093469,0.086558,0.081009,0.080009,0.072773,0.068917,0.064438,0.057739,0.049804,0.04933,0.04688,0.045239,0.044518,0.037409,0.035641,0.028466,0.026712,0.023849,0.022428,0.021984,0.019696,0.019416,0.018816,0.017561,0.015369 1,3.1528e-28,5.4858e-28,5.6398e-28,6.6625e-28,7.5732e-28,8.9602e-28,1.2411e-27,2.6849e-27,4.3749e-27,4.7152e-27,6.9429e-27,7.3948e-27,9.4984e-27,1.7429e-26,2.1073e-26,2.4042e-26,4.2483e-26,4.6836e-26,5.218e-26,7.4964e-26,7.7936e-26,7.9697e-26,1.0496e-25,1.2346e-25,1.2411e-25,1.6937e-25,1.7423e-25,2.0044e-25,2.0417e-25,2.0786e-25,5.3619e-25,1.3161e-24,1.4269e-24,1.8562e-24,2.3462e-24,2.8132e-24,3.4882e-24,4.4765e-24,6.9345e-24,8.8173e-24,1.3015e-23,2.12e-23,2.2173e-23,2.4395e-23,2.6642e-23,4.2103e-23,4.2133e-23,1.246e-22,1.3498e-22,1.4111e-22,1.948e-22,1.9947e-22,3.7452e-22,4.7924e-22,5.3093e-22,6.6451e-22,7.662e-22,9.7774e-22,1.0544e-21,1.8807e-21,2.6832e-21,8.1288e-21,1.0994e-20,1.2159e-20,1.4558e-20,2.383e-20,2.6356e-20,2.8817e-20,4.3781e-20,6.4691e-20,7.4719e-20,8.4061e-20,1.2868e-19,2.3708e-19,4.4934e-19,6.8938e-19,7.5393e-19,1.669e-18,2.1931e-18,2.4904e-18,2.6347e-18,3.3091e-18,8.4028e-18,8.6574e-18,1.0175e-17,1.3138e-17,1.3813e-17,1.9867e-17,5.3617e-17,5.4321e-17,7.171e-17,7.921e-17,2.4407e-16,3.2306e-16,3.2978e-16,4.2323e-16,5.9253e-16,5.9648e-16,6.129e-16,7.5021e-16,7.5157e-16,9.023e-16,9.6828e-16,2.635e-15,4.0695e-15,4.1296e-15,6.739e-15,7.6789e-15,9.3932e-15,1.0358e-14,1.0972e-14,1.1694e-14,1.1939e-14,1.2618e-14,1.5759e-14,1.6172e-14,1.7055e-14,1.7814e-14,2.4718e-14,3.5719e-14,5.7156e-14,6.8159e-14,9.8737e-14,1.4891e-13,1.7686e-13,1.9323e-13,5.093e-13,5.6907e-13,6.1735e-13,7.2524e-13,8.8944e-13,1.0608e-12,1.2234e-12,1.2548e-12,1.2749e-12,1.5248e-12,2.4336e-12,2.5184e-12,3.023e-12,4.0066e-12,4.6774e-12,4.7963e-12,1.151e-11,1.1616e-11,1.3784e-11,1.9227e-11,2.0423e-11,2.5557e-11,2.6942e-11,3.8911e-11,4.9374e-11,8.4437e-11,8.5522e-11,1.5663e-10,1.6773e-10,1.7144e-10,2.5253e-10,2.588e-10,2.9729e-10,3.5661e-10,3.774e-10,3.939e-10,4.6605e-10,4.7918e-10,4.8794e-10,5.5722e-10,5.8368e-10,5.9078e-10,6.5921e-10,6.8568e-10,8.5201e-10,1.2181e-09,1.2977e-09,1.3198e-09,1.5465e-09,1.6509e-09,2.1508e-09,3.405e-09,3.9211e-09,4.8965e-09,5.3113e-09,6.6494e-09,8.3021e-09,8.4533e-09,8.5725e-09,8.5864e-09,9.164e-09,9.2146e-09,1.129e-08,1.2389e-08,1.474e-08,1.4854e-08,1.5565e-08,2.0978e-08,2.116e-08,2.4365e-08,2.8582e-08,3.7932e-08,3.9363e-08,4.3741e-08,4.4784e-08,4.7526e-08,5.2491e-08,6.1083e-08,6.1336e-08,8.6247e-08,1.265e-07,1.3172e-07,1.3774e-07,1.3966e-07,1.7527e-07,2.0137e-07,3.2059e-07,3.2842e-07,3.4477e-07,3.7414e-07,5.0571e-07,6.8971e-07,9.6421e-07,1.0655e-06,1.1306e-06,1.3137e-06,1.7737e-06,2.0214e-06,2.3924e-06,3.0919e-06,3.8492e-06,4.0033e-06,6.067e-06,6.4045e-06,6.5321e-06,7.1875e-06,7.4653e-06,1.008e-05,1.1451e-05,1.1879e-05,1.1924e-05,1.2876e-05,1.4274e-05,1.497e-05,1.529e-05,2.2069e-05,2.2079e-05,3.055e-05,4.3983e-05,6.1192e-05,8.2495e-05,9.3719e-05,9.6889e-05,0.0001047,0.000112,0.00013114,0.00013343,0.00017998,0.00019394,0.00022499,0.00027001,0.00030125,0.00030498,0.00033315,0.00035337,0.00040798,0.00050382,0.00051381,0.00056308,0.00064976,0.00072906,0.00073298,0.001082,0.0011517,0.0011867,0.0012808,0.0013324,0.0014174,0.0015632,0.0016258,0.0017169,0.0018732,0.0020948,0.0023281,0.002353,0.0026727,0.0029041,0.0031228,0.0036764,0.0039575,0.0040644,0.0044648,0.0044902,0.0046776,0.0047625,0.0060241,0.0063925,0.0065409,0.0072582,0.0077058,0.0077758,0.0089267,0.011566,0.012473,0.012964,0.014176,0.014284,0.015773,0.015944,0.01808,0.019448,0.022466,0.022758,0.023035,0.023191,0.023707,0.024135,0.0244,0.02734,0.027992,0.034857,0.037453,0.03926,0.039996,0.046556,0.046679,0.049033,0.050167,0.056194,0.056394,0.056869,0.061775,0.063191,0.063701,0.065272,0.067348,0.06936,0.070424,0.081595,0.082014,0.088424,0.09878,0.10936,0.12549,0.12573,0.13188,0.13993,0.15111,0.15124,0.15526,0.1752,0.18007,0.18062,0.2069,0.21299,0.21656,0.22779,0.23929,0.26142,0.26499,0.28266,0.32465,0.32523,0.32882,0.33621,0.34208,0.34937,0.35808,0.44388,0.46761,0.50474,0.5328,0.53419,0.5374,0.57973,0.58965,0.59048,0.6311,0.69888,0.701,0.72052,0.72452,0.76802,0.77983,0.80496,0.81767,0.83138,0.83401,0.8497,0.8524,0.85368,0.88668,0.89588,0.89966,0.91151,0.91511,0.93077,0.93414,0.9407,0.95564,0.95578,0.96223,0.9643,0.9643,0.97643,0.97678,0.98104,0.98508,0.99223,0.99671,0.99876,1,0.99894,0.99442,0.99416,0.98819,0.98053,0.97516,0.95775,0.95182,0.93872,0.93031,0.91123,0.9091,0.90464,0.89399,0.87025,0.84398,0.82937,0.81434,0.80634,0.8052,0.7904,0.7729,0.71732,0.70209,0.69365,0.67488,0.67475,0.65614,0.65381,0.64113,0.63091,0.59647,0.59149,0.56466,0.53985,0.46072,0.44631,0.43941,0.42154,0.40506,0.39888,0.38666,0.37799,0.36738,0.35018,0.35008,0.32026,0.31259,0.311,0.31016,0.28195,0.28133,0.27858,0.27652,0.27122,0.26259,0.255,0.22304,0.1643,0.14921,0.14793,0.14687,0.1435,0.14165,0.12495,0.1148,0.10782,0.10405,0.096528,0.090474,0.089382,0.081468,0.077243,0.072326,0.064958,0.056201,0.055677,0.052966,0.051149,0.05035,0.042455,0.040486,0.032475,0.03051,0.027296,0.025699,0.025199,0.022621,0.022305,0.021627,0.020209,0.017728 1,1.8751e-28,3.27e-28,3.3622e-28,3.9746e-28,4.5203e-28,5.3518e-28,7.4229e-28,1.611e-27,2.6304e-27,2.8358e-27,4.1824e-27,4.4558e-27,5.7294e-27,1.054e-26,1.2754e-26,1.4559e-26,2.5789e-26,2.8443e-26,3.1703e-26,4.5616e-26,4.7433e-26,4.8509e-26,6.3963e-26,7.5288e-26,7.5688e-26,1.0342e-25,1.064e-25,1.2249e-25,1.2477e-25,1.2704e-25,3.2906e-25,8.1089e-25,8.7948e-25,1.1454e-24,1.4492e-24,1.7391e-24,2.1584e-24,2.7731e-24,4.3041e-24,5.4785e-24,8.1007e-24,1.3224e-23,1.3834e-23,1.5227e-23,1.6636e-23,2.6345e-23,2.6364e-23,7.8353e-23,8.491e-23,8.8783e-23,1.2275e-22,1.2571e-22,2.3671e-22,3.0325e-22,3.3611e-22,4.2112e-22,4.8588e-22,6.2074e-22,6.6967e-22,1.1977e-21,1.7116e-21,5.2128e-21,7.0601e-21,7.8122e-21,9.3617e-21,1.5361e-20,1.6997e-20,1.8593e-20,2.8305e-20,4.1904e-20,4.8434e-20,5.4521e-20,8.3638e-20,1.5456e-19,2.9387e-19,4.5183e-19,4.9436e-19,1.0988e-18,1.4459e-18,1.6429e-18,1.7386e-18,2.1862e-18,5.5782e-18,5.7481e-18,6.7613e-18,8.7423e-18,9.1938e-18,1.3248e-17,3.5942e-17,3.6417e-17,4.8146e-17,5.321e-17,1.6496e-16,2.1867e-16,2.2324e-16,2.8689e-16,4.0241e-16,4.051e-16,4.1631e-16,5.1015e-16,5.1108e-16,6.142e-16,6.5937e-16,1.8044e-15,2.7936e-15,2.8351e-15,4.6394e-15,5.2904e-15,6.4789e-15,7.1485e-15,7.5749e-15,8.0758e-15,8.246e-15,8.7179e-15,1.0902e-14,1.1189e-14,1.1804e-14,1.2332e-14,1.7144e-14,2.4828e-14,3.984e-14,4.7559e-14,6.9046e-14,1.0439e-13,1.2411e-13,1.3567e-13,3.5969e-13,4.0218e-13,4.3652e-13,5.1332e-13,6.3033e-13,7.5257e-13,8.6872e-13,8.9115e-13,9.0551e-13,1.0842e-12,1.7355e-12,1.7963e-12,2.1588e-12,2.8663e-12,3.3495e-12,3.4352e-12,8.2902e-12,8.3675e-12,9.9402e-12,1.3895e-11,1.4765e-11,1.8504e-11,1.9514e-11,2.8252e-11,3.5905e-11,6.1626e-11,6.2423e-11,1.148e-10,1.2299e-10,1.2573e-10,1.857e-10,1.9034e-10,2.1886e-10,2.6286e-10,2.7829e-10,2.9055e-10,3.4417e-10,3.5394e-10,3.6045e-10,4.1202e-10,4.3173e-10,4.3702e-10,4.8802e-10,5.0775e-10,6.3189e-10,9.057e-10,9.6536e-10,9.8188e-10,1.1519e-09,1.2302e-09,1.6059e-09,2.5508e-09,2.9405e-09,3.678e-09,3.9921e-09,5.0062e-09,6.261e-09,6.3759e-09,6.4665e-09,6.477e-09,6.9161e-09,6.9546e-09,8.5345e-09,9.3712e-09,1.1164e-08,1.1252e-08,1.1795e-08,1.5933e-08,1.6072e-08,1.8527e-08,2.1761e-08,2.8944e-08,3.0044e-08,3.3413e-08,3.4216e-08,3.6329e-08,4.0155e-08,4.6786e-08,4.698e-08,6.6242e-08,9.7466e-08,1.0152e-07,1.0619e-07,1.0769e-07,1.354e-07,1.5574e-07,2.4891e-07,2.5504e-07,2.6785e-07,2.9087e-07,3.9417e-07,5.3901e-07,7.5574e-07,8.3583e-07,8.8741e-07,1.0325e-06,1.3977e-06,1.5948e-06,1.8904e-06,2.4488e-06,3.0547e-06,3.1782e-06,4.8352e-06,5.1068e-06,5.2096e-06,5.7375e-06,5.9613e-06,8.0728e-06,9.1818e-06,9.5285e-06,9.5644e-06,1.0336e-05,1.147e-05,1.2034e-05,1.2294e-05,1.7809e-05,1.7817e-05,2.4734e-05,3.5743e-05,4.9898e-05,6.7481e-05,7.6766e-05,7.9391e-05,8.5862e-05,9.1919e-05,0.00010781,0.00010971,0.00014848,0.00016012,0.00018607,0.00022376,0.00024996,0.0002531,0.00027675,0.00029375,0.00033971,0.00042056,0.000429,0.00047065,0.00054403,0.00061127,0.0006146,0.00091156,0.00097112,0.001001,0.0010814,0.0011255,0.0011983,0.0013231,0.0013768,0.001455,0.0015893,0.0017799,0.0019808,0.0020023,0.0022783,0.0024782,0.0026675,0.0031474,0.0033915,0.0034844,0.0038327,0.0038547,0.004018,0.0040919,0.0051933,0.0055156,0.0056455,0.0062741,0.0066669,0.0067284,0.0077402,0.010068,0.01087,0.011306,0.012379,0.012476,0.013797,0.013949,0.01585,0.01707,0.019766,0.020027,0.020275,0.020415,0.020877,0.021261,0.021497,0.024135,0.02472,0.030902,0.033245,0.034879,0.035545,0.041491,0.041602,0.04374,0.044771,0.050258,0.05044,0.050873,0.055351,0.056645,0.057111,0.058547,0.060447,0.062289,0.063264,0.073519,0.073904,0.079805,0.089361,0.099153,0.11413,0.11435,0.12007,0.12757,0.13801,0.13813,0.14189,0.16059,0.16517,0.16568,0.19044,0.1962,0.19958,0.21021,0.22112,0.24215,0.24556,0.26242,0.30265,0.30321,0.30665,0.31377,0.31941,0.32644,0.33484,0.41812,0.44132,0.47775,0.50541,0.50679,0.50995,0.55191,0.56178,0.5626,0.60316,0.67143,0.67358,0.69339,0.69746,0.74194,0.75409,0.78006,0.79327,0.80757,0.81031,0.82676,0.82961,0.83096,0.86594,0.8758,0.87986,0.89266,0.89657,0.91369,0.91741,0.92468,0.94147,0.94162,0.94899,0.95138,0.95138,0.96563,0.96604,0.9712,0.9762,0.98549,0.99193,0.99541,0.99894,1,0.99822,0.99807,0.99418,0.98848,0.98425,0.96977,0.96468,0.95322,0.94574,0.92853,0.92659,0.92252,0.91274,0.89071,0.86602,0.85217,0.83786,0.83021,0.82912,0.81491,0.79804,0.74398,0.72906,0.72077,0.70229,0.70216,0.68376,0.68146,0.66889,0.65874,0.62441,0.61943,0.59255,0.56759,0.48741,0.47271,0.46567,0.44739,0.43049,0.42414,0.41158,0.40266,0.39172,0.37395,0.37386,0.34296,0.33499,0.33334,0.33246,0.30308,0.30243,0.29956,0.29741,0.29188,0.28285,0.2749,0.24132,0.17915,0.16307,0.1617,0.16058,0.15698,0.155,0.13712,0.12622,0.1187,0.11465,0.10653,0.099984,0.098803,0.090228,0.085642,0.080297,0.072271,0.062705,0.062132,0.059163,0.057171,0.056295,0.047619,0.045449,0.0366,0.034423,0.030856,0.029081,0.028524,0.025653,0.025301,0.024545,0.022961,0.020185 1,9.5302e-29,1.6669e-28,1.7141e-28,2.0282e-28,2.3082e-28,2.7353e-28,3.8004e-28,8.2824e-28,1.3559e-27,1.4624e-27,2.1613e-27,2.3034e-27,2.9659e-27,5.4743e-27,6.6311e-27,7.5749e-27,1.346e-26,1.4853e-26,1.6566e-26,2.3884e-26,2.484e-26,2.5407e-26,3.3553e-26,3.9529e-26,3.974e-26,5.4397e-26,5.5973e-26,6.4483e-26,6.5695e-26,6.6895e-26,1.742e-25,4.3146e-25,4.6817e-25,6.1064e-25,7.7366e-25,9.2937e-25,1.1549e-24,1.4859e-24,2.3121e-24,2.9471e-24,4.3675e-24,7.1501e-24,7.4818e-24,8.2396e-24,9.007e-24,1.4302e-23,1.4312e-23,4.2809e-23,4.6413e-23,4.8543e-23,6.7244e-23,6.8874e-23,1.3018e-22,1.6702e-22,1.8524e-22,2.324e-22,2.6838e-22,3.4337e-22,3.7061e-22,6.6517e-22,9.5266e-22,2.9213e-21,3.964e-21,4.389e-21,5.2655e-21,8.6665e-21,9.5957e-21,1.0502e-20,1.6031e-20,2.3791e-20,2.7524e-20,3.1006e-20,4.7694e-20,8.8485e-20,1.6894e-19,2.6047e-19,2.8515e-19,6.3712e-19,8.3987e-19,9.5513e-19,1.0112e-18,1.2734e-18,3.2695e-18,3.3698e-18,3.968e-18,5.1395e-18,5.4068e-18,7.8102e-18,2.1334e-17,2.1618e-17,2.8635e-17,3.1669e-17,9.8952e-17,1.3143e-16,1.342e-16,1.7277e-16,2.4292e-16,2.4455e-16,2.5137e-16,3.0847e-16,3.0904e-16,3.7188e-16,3.9944e-16,1.1011e-15,1.71e-15,1.7356e-15,2.8505e-15,3.2536e-15,3.9905e-15,4.4061e-15,4.671e-15,4.9822e-15,5.088e-15,5.3814e-15,6.7411e-15,6.9197e-15,7.3027e-15,7.6322e-15,1.0636e-14,1.5447e-14,2.4875e-14,2.9734e-14,4.3291e-14,6.5658e-14,7.8167e-14,8.5509e-14,2.2844e-13,2.5565e-13,2.7766e-13,3.2693e-13,4.0211e-13,4.8077e-13,5.556e-13,5.7006e-13,5.7932e-13,6.9467e-13,1.1162e-12,1.1556e-12,1.3909e-12,1.851e-12,2.1658e-12,2.2217e-12,5.401e-12,5.4517e-12,6.4858e-12,9.0919e-12,9.6661e-12,1.2137e-11,1.2805e-11,1.8597e-11,2.3684e-11,4.0841e-11,4.1374e-11,7.6495e-11,8.2008e-11,8.3847e-11,1.2427e-10,1.274e-10,1.4668e-10,1.7645e-10,1.8691e-10,1.9522e-10,2.3161e-10,2.3824e-10,2.4266e-10,2.7772e-10,2.9112e-10,2.9472e-10,3.2944e-10,3.4289e-10,4.2758e-10,6.1489e-10,6.5579e-10,6.6711e-10,7.8377e-10,8.3758e-10,1.0961e-09,1.7487e-09,2.0186e-09,2.5302e-09,2.7485e-09,3.4542e-09,4.3293e-09,4.4095e-09,4.4728e-09,4.4802e-09,4.7869e-09,4.8138e-09,5.9193e-09,6.5055e-09,7.7638e-09,7.8251e-09,8.2066e-09,1.1119e-08,1.1217e-08,1.2949e-08,1.5234e-08,2.032e-08,2.1101e-08,2.3492e-08,2.4063e-08,2.5564e-08,2.8286e-08,3.3008e-08,3.3146e-08,4.6903e-08,6.929e-08,7.2201e-08,7.5562e-08,7.6638e-08,9.6591e-08,1.1127e-07,1.7873e-07,1.8319e-07,1.9249e-07,2.0921e-07,2.8446e-07,3.9034e-07,5.4936e-07,6.0827e-07,6.4625e-07,7.532e-07,1.0231e-06,1.1692e-06,1.3886e-06,1.8043e-06,2.2566e-06,2.3489e-06,3.5916e-06,3.7958e-06,3.8732e-06,4.2706e-06,4.4394e-06,6.0341e-06,6.874e-06,7.1368e-06,7.1641e-06,7.7492e-06,8.6105e-06,9.04e-06,9.2376e-06,1.3445e-05,1.3451e-05,1.8751e-05,2.7228e-05,3.818e-05,5.1846e-05,5.9084e-05,6.1132e-05,6.6186e-05,7.0922e-05,8.3369e-05,8.4859e-05,0.00011533,0.00012452,0.000145,0.00017484,0.00019563,0.00019812,0.00021692,0.00023045,0.00026709,0.00033171,0.00033847,0.00037185,0.00043079,0.00048491,0.00048759,0.00072768,0.00077601,0.00080025,0.00086563,0.0009015,0.00096079,0.0010626,0.0011065,0.0011703,0.0012803,0.0014365,0.0016016,0.0016192,0.0018464,0.0020114,0.0021678,0.0025652,0.0027678,0.0028449,0.0031346,0.003153,0.003289,0.0033506,0.0042709,0.004541,0.00465,0.005178,0.0055084,0.0055602,0.0064134,0.0083847,0.0090669,0.0094373,0.010352,0.010434,0.011563,0.011693,0.013322,0.01437,0.016691,0.016916,0.01713,0.01725,0.017649,0.017981,0.018185,0.020468,0.020975,0.026351,0.028397,0.029825,0.030408,0.035623,0.03572,0.037601,0.038509,0.04335,0.043511,0.043893,0.047856,0.049003,0.049416,0.050691,0.052378,0.054015,0.054882,0.064026,0.064369,0.06965,0.078227,0.087047,0.10059,0.10079,0.10598,0.11281,0.12233,0.12244,0.12587,0.14299,0.14721,0.14767,0.17051,0.17584,0.17896,0.18883,0.19896,0.21859,0.22177,0.23757,0.27546,0.27599,0.27925,0.28598,0.29133,0.298,0.30598,0.38572,0.40813,0.4435,0.4705,0.47185,0.47495,0.51619,0.52593,0.52674,0.56699,0.63543,0.6376,0.65766,0.6618,0.70721,0.71971,0.74657,0.76031,0.77525,0.77813,0.79544,0.79844,0.79986,0.83714,0.84775,0.85214,0.86606,0.87033,0.88921,0.89334,0.90147,0.9205,0.92067,0.92917,0.93194,0.93194,0.9488,0.94929,0.95557,0.96176,0.97374,0.98267,0.98796,0.99442,0.99822,1,1,0.99883,0.99573,0.99301,0.98248,0.97851,0.96928,0.96308,0.94844,0.94677,0.94323,0.93467,0.91504,0.89262,0.87988,0.86662,0.85948,0.85847,0.84515,0.82923,0.77757,0.76316,0.75512,0.73714,0.73701,0.71904,0.71678,0.70444,0.69446,0.6605,0.65555,0.62877,0.60376,0.52266,0.50766,0.50047,0.48174,0.46438,0.45784,0.44488,0.43567,0.42434,0.40591,0.40581,0.37361,0.36528,0.36355,0.36264,0.33179,0.33111,0.32809,0.32582,0.31999,0.31046,0.30206,0.26641,0.19978,0.18239,0.18091,0.17969,0.17578,0.17364,0.15419,0.14227,0.13404,0.1296,0.12067,0.11346,0.11215,0.10268,0.097595,0.091662,0.082729,0.072041,0.071399,0.068071,0.065836,0.064852,0.055083,0.052633,0.042602,0.040125,0.036057,0.034028,0.033391,0.030101,0.029697,0.028829,0.027008,0.023809 1,9.2709e-29,1.6217e-28,1.6677e-28,1.9733e-28,2.2458e-28,2.6614e-28,3.6981e-28,8.0607e-28,1.3198e-27,1.4234e-27,2.104e-27,2.2423e-27,2.8873e-27,5.3301e-27,6.4566e-27,7.3758e-27,1.3108e-26,1.4465e-26,1.6133e-26,2.3262e-26,2.4193e-26,2.4746e-26,3.2681e-26,3.8504e-26,3.871e-26,5.2991e-26,5.4526e-26,6.2818e-26,6.3999e-26,6.5169e-26,1.6974e-25,4.205e-25,4.5629e-25,5.9518e-25,7.5411e-25,9.0593e-25,1.1258e-24,1.4486e-24,2.2542e-24,2.8735e-24,4.2588e-24,6.973e-24,7.2966e-24,8.0359e-24,8.7845e-24,1.395e-23,1.396e-23,4.1767e-23,4.5284e-23,4.7363e-23,6.5614e-23,6.7205e-23,1.2705e-22,1.6301e-22,1.8079e-22,2.2684e-22,2.6196e-22,3.3518e-22,3.6177e-22,6.4941e-22,9.3016e-22,2.8531e-21,3.8718e-21,4.287e-21,5.1433e-21,8.4665e-21,9.3745e-21,1.0261e-20,1.5663e-20,2.3248e-20,2.6897e-20,3.0301e-20,4.6614e-20,8.6494e-20,1.6517e-19,2.5468e-19,2.7882e-19,6.2311e-19,8.2147e-19,9.3423e-19,9.8905e-19,1.2456e-18,3.199e-18,3.2971e-18,3.8827e-18,5.0294e-18,5.2909e-18,7.6436e-18,2.0885e-17,2.1163e-17,2.8035e-17,3.1006e-17,9.6911e-17,1.2873e-16,1.3144e-16,1.6923e-16,2.3796e-16,2.3957e-16,2.4625e-16,3.0221e-16,3.0276e-16,3.6435e-16,3.9135e-16,1.0791e-15,1.6761e-15,1.7012e-15,2.7944e-15,3.1897e-15,3.9124e-15,4.32e-15,4.5797e-15,4.885e-15,4.9887e-15,5.2765e-15,6.6101e-15,6.7854e-15,7.161e-15,7.4842e-15,1.0431e-14,1.515e-14,2.4401e-14,2.9169e-14,4.2474e-14,6.4427e-14,7.6706e-14,8.3913e-14,2.2425e-13,2.5096e-13,2.7258e-13,3.2096e-13,3.948e-13,4.7205e-13,5.4556e-13,5.5976e-13,5.6886e-13,6.8216e-13,1.0963e-12,1.135e-12,1.3661e-12,1.8183e-12,2.1276e-12,2.1825e-12,5.3073e-12,5.3572e-12,6.3737e-12,8.9358e-12,9.5004e-12,1.193e-11,1.2587e-11,1.8283e-11,2.3285e-11,4.0161e-11,4.0685e-11,7.5238e-11,8.0662e-11,8.2471e-11,1.2225e-10,1.2533e-10,1.443e-10,1.7361e-10,1.839e-10,1.9207e-10,2.2789e-10,2.3442e-10,2.3877e-10,2.7328e-10,2.8647e-10,2.9002e-10,3.242e-10,3.3744e-10,4.2081e-10,6.0524e-10,6.4551e-10,6.5666e-10,7.7154e-10,8.2453e-10,1.0791e-09,1.7219e-09,1.9878e-09,2.4919e-09,2.7069e-09,3.4022e-09,4.2645e-09,4.3436e-09,4.4059e-09,4.4132e-09,4.7155e-09,4.742e-09,5.8314e-09,6.4092e-09,7.6494e-09,7.7098e-09,8.0859e-09,1.0957e-08,1.1054e-08,1.2761e-08,1.5013e-08,2.0029e-08,2.0798e-08,2.3157e-08,2.3719e-08,2.52e-08,2.7884e-08,3.254e-08,3.2677e-08,4.6246e-08,6.833e-08,7.1202e-08,7.4518e-08,7.558e-08,9.5267e-08,1.0975e-07,1.7633e-07,1.8072e-07,1.899e-07,2.0641e-07,2.8069e-07,3.8522e-07,5.4224e-07,6.0041e-07,6.3792e-07,7.4355e-07,1.0102e-06,1.1545e-06,1.3712e-06,1.7819e-06,2.2289e-06,2.3201e-06,3.5482e-06,3.7501e-06,3.8265e-06,4.2194e-06,4.3861e-06,5.9627e-06,6.793e-06,7.0529e-06,7.0799e-06,7.6585e-06,8.5101e-06,8.9348e-06,9.1302e-06,1.3291e-05,1.3297e-05,1.854e-05,2.6926e-05,3.7764e-05,5.1289e-05,5.8454e-05,6.0481e-05,6.5485e-05,7.0173e-05,8.2496e-05,8.3971e-05,0.00011415,0.00012324,0.00014353,0.00017309,0.00019368,0.00019614,0.00021477,0.00022817,0.00026447,0.0003285,0.0003352,0.00036828,0.00042669,0.00048033,0.00048298,0.00072099,0.00076891,0.00079294,0.00085777,0.00089333,0.00095213,0.0010531,0.0010966,0.0011599,0.001269,0.0014239,0.0015877,0.0016052,0.0018306,0.0019942,0.0021494,0.0025438,0.0027448,0.0028214,0.0031089,0.0031271,0.003262,0.0033232,0.0042368,0.0045049,0.0046131,0.0051373,0.0054654,0.0055168,0.0063641,0.008322,0.0089996,0.0093675,0.010276,0.010358,0.01148,0.011609,0.013227,0.014268,0.016575,0.016799,0.017012,0.017131,0.017528,0.017857,0.018061,0.020329,0.020834,0.026179,0.028213,0.029634,0.030213,0.0354,0.035497,0.037368,0.038271,0.043086,0.043247,0.043628,0.04757,0.048712,0.049123,0.050391,0.052069,0.053698,0.054561,0.063662,0.064004,0.069261,0.077799,0.086581,0.10007,0.10027,0.10544,0.11224,0.12172,0.12183,0.12525,0.14231,0.14651,0.14697,0.16973,0.17504,0.17816,0.18799,0.1981,0.21766,0.22084,0.23659,0.27438,0.27491,0.27816,0.28488,0.29022,0.29687,0.30484,0.38442,0.4068,0.44213,0.4691,0.47045,0.47355,0.51475,0.52449,0.5253,0.56552,0.63396,0.63613,0.6562,0.66033,0.70578,0.71829,0.74518,0.75894,0.77391,0.77679,0.79413,0.79714,0.79856,0.83592,0.84657,0.85097,0.86493,0.86922,0.88816,0.89231,0.90047,0.91958,0.91976,0.9283,0.93109,0.93109,0.94805,0.94855,0.95486,0.96111,0.97319,0.98222,0.98758,0.99416,0.99807,1,1,0.99895,0.99595,0.99329,0.98292,0.97901,0.96986,0.96372,0.94919,0.94752,0.94401,0.9355,0.91598,0.89365,0.88096,0.86774,0.86063,0.85962,0.84634,0.83046,0.77891,0.76452,0.75649,0.73854,0.73841,0.72045,0.7182,0.70587,0.6959,0.66196,0.65702,0.63024,0.60524,0.5241,0.5091,0.5019,0.48315,0.46578,0.45923,0.44626,0.43703,0.42569,0.40723,0.40714,0.37489,0.36654,0.36481,0.36389,0.33299,0.33231,0.32928,0.32701,0.32116,0.31161,0.30319,0.26747,0.20065,0.18321,0.18172,0.1805,0.17658,0.17443,0.15491,0.14296,0.1347,0.13023,0.12127,0.11403,0.11272,0.10321,0.098107,0.092149,0.083179,0.072444,0.071798,0.068455,0.06621,0.065221,0.055406,0.052944,0.042863,0.040372,0.036283,0.034243,0.033603,0.030295,0.029889,0.029016,0.027185,0.023967 1,5.4968e-29,9.6371e-29,9.9114e-29,1.1736e-28,1.3363e-28,1.5847e-28,2.205e-28,4.8216e-28,7.9102e-28,8.5343e-28,1.2635e-27,1.3469e-27,1.7362e-27,3.2132e-27,3.8955e-27,4.4525e-27,7.932e-27,8.7567e-27,9.7711e-27,1.411e-26,1.4678e-26,1.5015e-26,1.9853e-26,2.3406e-26,2.3532e-26,3.2256e-26,3.3195e-26,3.8266e-26,3.8989e-26,3.9704e-26,1.0384e-25,2.5825e-25,2.8033e-25,3.6608e-25,4.6431e-25,5.5824e-25,6.9438e-25,8.9444e-25,1.3946e-24,1.7797e-24,2.6422e-24,4.3356e-24,4.5377e-24,4.9996e-24,5.4675e-24,8.7006e-24,8.7068e-24,2.6179e-23,2.8394e-23,2.9703e-23,4.121e-23,4.2214e-23,8.0035e-23,1.0281e-22,1.1408e-22,1.4328e-22,1.6557e-22,2.1209e-22,2.29e-22,4.1219e-22,5.9138e-22,1.8235e-21,2.4781e-21,2.7452e-21,3.2964e-21,5.4392e-21,6.0255e-21,6.5978e-21,1.0092e-20,1.5008e-20,1.7376e-20,1.9586e-20,3.0194e-20,5.6196e-20,1.0765e-19,1.6635e-19,1.822e-19,4.0882e-19,5.3971e-19,6.1419e-19,6.5042e-19,8.2011e-19,2.1163e-18,2.1816e-18,2.5711e-18,3.3349e-18,3.5093e-18,5.0793e-18,1.3951e-17,1.4138e-17,1.8756e-17,2.0755e-17,6.5265e-17,8.6827e-17,8.8666e-17,1.1431e-16,1.6103e-16,1.6212e-16,1.6667e-16,2.0477e-16,2.0515e-16,2.4713e-16,2.6555e-16,7.363e-16,1.1465e-15,1.1637e-15,1.9168e-15,2.1897e-15,2.6888e-15,2.9706e-15,3.1503e-15,3.3615e-15,3.4332e-15,3.6324e-15,4.5564e-15,4.6779e-15,4.9383e-15,5.1625e-15,7.209e-15,1.0493e-14,1.6946e-14,2.0279e-14,2.9593e-14,4.4999e-14,5.363e-14,5.87e-14,1.5779e-13,1.7671e-13,1.9202e-13,2.2633e-13,2.7875e-13,3.3366e-13,3.8596e-13,3.9606e-13,4.0254e-13,4.8325e-13,7.7889e-13,8.0659e-13,9.7195e-13,1.2959e-12,1.5179e-12,1.5573e-12,3.8083e-12,3.8443e-12,4.5788e-12,6.4334e-12,6.8426e-12,8.6051e-12,9.082e-12,1.3224e-11,1.6869e-11,2.92e-11,2.9583e-11,5.4933e-11,5.892e-11,6.0251e-11,8.9549e-11,9.1824e-11,1.0582e-10,1.2747e-10,1.3508e-10,1.4113e-10,1.6765e-10,1.7248e-10,1.7571e-10,2.0129e-10,2.1108e-10,2.137e-10,2.3908e-10,2.4891e-10,3.1089e-10,4.4828e-10,4.7833e-10,4.8665e-10,5.7244e-10,6.1204e-10,8.0255e-10,1.2849e-09,1.4849e-09,1.8645e-09,2.0266e-09,2.5514e-09,3.2034e-09,3.2633e-09,3.3105e-09,3.316e-09,3.5448e-09,3.5649e-09,4.3907e-09,4.8291e-09,5.7712e-09,5.8171e-09,6.103e-09,8.2889e-09,8.3627e-09,9.6646e-09,1.1385e-08,1.5222e-08,1.5811e-08,1.7619e-08,1.805e-08,1.9186e-08,2.1246e-08,2.4824e-08,2.493e-08,3.5377e-08,5.2434e-08,5.4656e-08,5.7222e-08,5.8044e-08,7.3299e-08,8.4542e-08,1.3635e-07,1.3978e-07,1.4694e-07,1.5982e-07,2.1789e-07,2.9984e-07,4.2328e-07,4.691e-07,4.9866e-07,5.8199e-07,7.928e-07,9.0711e-07,1.079e-06,1.4055e-06,1.7615e-06,1.8343e-06,2.8161e-06,2.9779e-06,3.0391e-06,3.3542e-06,3.488e-06,4.7553e-06,5.4241e-06,5.6336e-06,5.6554e-06,6.1221e-06,6.8097e-06,7.1528e-06,7.3107e-06,1.0681e-05,1.0686e-05,1.4948e-05,2.179e-05,3.0664e-05,4.1777e-05,4.7678e-05,4.9349e-05,5.3476e-05,5.7346e-05,6.7531e-05,6.8752e-05,9.3766e-05,0.00010132,0.00011819,0.00014283,0.00016002,0.00016208,0.00017765,0.00018886,0.00021927,0.00027303,0.00027866,0.0003065,0.00035571,0.00040099,0.00040323,0.00060482,0.00064551,0.00066594,0.00072107,0.00075134,0.00080142,0.00088753,0.00092463,0.00097874,0.0010719,0.0012046,0.001345,0.00136,0.0015536,0.0016944,0.001828,0.0021682,0.0023419,0.0024081,0.002657,0.0026728,0.0027897,0.0028428,0.0036363,0.0038698,0.003964,0.0044212,0.0047076,0.0047526,0.0054937,0.0072121,0.0078084,0.0081325,0.008934,0.0090062,0.0099972,0.010111,0.011544,0.012468,0.014518,0.014717,0.014906,0.015013,0.015366,0.01566,0.015841,0.017865,0.018316,0.023103,0.02493,0.026208,0.026729,0.031405,0.031493,0.033183,0.033999,0.03836,0.038505,0.038851,0.042429,0.043467,0.04384,0.044994,0.046521,0.048004,0.048791,0.057098,0.057411,0.062223,0.070058,0.078137,0.090585,0.090772,0.095555,0.10185,0.11066,0.11076,0.11394,0.12984,0.13376,0.13419,0.15551,0.1605,0.16342,0.17267,0.1822,0.20068,0.20369,0.21862,0.25458,0.25509,0.25819,0.26461,0.26971,0.27608,0.28371,0.3604,0.3821,0.4165,0.44287,0.44419,0.44722,0.48771,0.49731,0.49811,0.5379,0.60614,0.60831,0.62846,0.63262,0.67853,0.69123,0.71864,0.73272,0.74809,0.75106,0.76894,0.77206,0.77353,0.8124,0.82356,0.82818,0.84291,0.84745,0.8676,0.87205,0.8808,0.90151,0.90169,0.91104,0.91411,0.91411,0.93295,0.93351,0.94064,0.94776,0.96181,0.97268,0.97941,0.98819,0.99418,0.99883,0.99895,1,0.99903,0.99754,0.99029,0.98727,0.97991,0.9748,0.96235,0.9609,0.95783,0.95031,0.93278,0.91236,0.90062,0.88829,0.88163,0.88068,0.86817,0.85313,0.80376,0.78985,0.78206,0.76461,0.76449,0.74696,0.74475,0.73267,0.72288,0.68943,0.68453,0.65797,0.63307,0.5516,0.53643,0.52914,0.51013,0.49246,0.48579,0.47256,0.46314,0.45154,0.43263,0.43253,0.39937,0.39076,0.38898,0.38803,0.35608,0.35537,0.35223,0.34987,0.34381,0.33389,0.32514,0.28787,0.21763,0.19917,0.1976,0.1963,0.19214,0.18986,0.1691,0.15634,0.14751,0.14273,0.13313,0.12535,0.12394,0.1137,0.1082,0.10176,0.09205,0.080395,0.079693,0.076055,0.073609,0.072531,0.06181,0.059115,0.048047,0.045305,0.040795,0.03854,0.037833,0.03417,0.03372,0.032752,0.030719,0.027142 1,3.3195e-29,5.8325e-29,5.9992e-29,7.108e-29,8.0981e-29,9.6097e-29,1.3388e-28,2.9365e-28,4.8271e-28,5.2095e-28,7.7244e-28,8.2366e-28,1.0628e-27,1.9718e-27,2.3923e-27,2.7358e-27,4.885e-27,5.3951e-27,6.0227e-27,8.7103e-27,9.0621e-27,9.2708e-27,1.2272e-26,1.4478e-26,1.4556e-26,1.9979e-26,2.0562e-26,2.3717e-26,2.4167e-26,2.4612e-26,6.4623e-26,1.6133e-25,1.7518e-25,2.2902e-25,2.9076e-25,3.4985e-25,4.3556e-25,5.6165e-25,8.7737e-25,1.1207e-24,1.6667e-24,2.7407e-24,2.869e-24,3.1623e-24,3.4596e-24,5.5163e-24,5.5202e-24,1.6676e-23,1.8094e-23,1.8932e-23,2.6304e-23,2.6947e-23,5.1233e-23,6.5882e-23,7.3138e-23,9.1952e-23,1.0633e-22,1.3635e-22,1.4727e-22,2.6577e-22,3.8192e-22,1.1836e-21,1.6107e-21,1.7852e-21,2.1454e-21,3.5481e-21,3.9324e-21,4.3077e-21,6.602e-21,9.8358e-21,1.1395e-20,1.2852e-20,1.9852e-20,3.7055e-20,7.1203e-20,1.1025e-19,1.2081e-19,2.7212e-19,3.5973e-19,4.0963e-19,4.3391e-19,5.4773e-19,1.4199e-18,1.4639e-18,1.7268e-18,2.2426e-18,2.3604e-18,3.4227e-18,9.4485e-18,9.5755e-18,1.2722e-17,1.4084e-17,4.4547e-17,5.9351e-17,6.0614e-17,7.8249e-17,1.1043e-16,1.1118e-16,1.1431e-16,1.4059e-16,1.4086e-16,1.6984e-16,1.8257e-16,5.0893e-16,7.9432e-16,8.0634e-16,1.3317e-15,1.5223e-15,1.8714e-15,2.0686e-15,2.1944e-15,2.3424e-15,2.3927e-15,2.5323e-15,3.1803e-15,3.2655e-15,3.4484e-15,3.6058e-15,5.0444e-15,7.3572e-15,1.1914e-14,1.4271e-14,2.087e-14,3.1808e-14,3.7947e-14,4.1555e-14,1.1234e-13,1.2589e-13,1.3686e-13,1.6147e-13,1.991e-13,2.3857e-13,2.762e-13,2.8348e-13,2.8814e-13,3.4629e-13,5.597e-13,5.7973e-13,6.9935e-13,9.3405e-13,1.0951e-12,1.1237e-12,2.7628e-12,2.7891e-12,3.3255e-12,4.6822e-12,4.9818e-12,6.2739e-12,6.6238e-12,9.6673e-12,1.2351e-11,2.1453e-11,2.1736e-11,4.0521e-11,4.3483e-11,4.4471e-11,6.6265e-11,6.796e-11,7.8392e-11,9.4546e-11,1.0023e-10,1.0475e-10,1.2456e-10,1.2818e-10,1.306e-10,1.4974e-10,1.5707e-10,1.5904e-10,1.7806e-10,1.8543e-10,2.3194e-10,3.3527e-10,3.579e-10,3.6417e-10,4.2883e-10,4.5871e-10,6.026e-10,9.6791e-10,1.1196e-09,1.4081e-09,1.5314e-09,1.9311e-09,2.4285e-09,2.4742e-09,2.5102e-09,2.5144e-09,2.6893e-09,2.7046e-09,3.336e-09,3.6716e-09,4.3934e-09,4.4286e-09,4.6479e-09,6.3266e-09,6.3833e-09,7.3849e-09,8.7097e-09,1.167e-08,1.2125e-08,1.3522e-08,1.3856e-08,1.4734e-08,1.6328e-08,1.9101e-08,1.9182e-08,2.7293e-08,4.0572e-08,4.2305e-08,4.4307e-08,4.4948e-08,5.6863e-08,6.5657e-08,1.0629e-07,1.0898e-07,1.1461e-07,1.2474e-07,1.7048e-07,2.352e-07,3.3295e-07,3.693e-07,3.9277e-07,4.59e-07,6.2686e-07,7.1804e-07,8.5539e-07,1.1167e-06,1.4023e-06,1.4607e-06,2.2509e-06,2.3813e-06,2.4307e-06,2.685e-06,2.7931e-06,3.8184e-06,4.3606e-06,4.5305e-06,4.5482e-06,4.927e-06,5.4857e-06,5.7646e-06,5.8931e-06,8.6395e-06,8.6435e-06,1.2129e-05,1.7743e-05,2.5052e-05,3.4234e-05,3.912e-05,4.0505e-05,4.3928e-05,4.7139e-05,5.5603e-05,5.6619e-05,7.7462e-05,8.3768e-05,9.7876e-05,0.00011851,0.00013293,0.00013466,0.00014774,0.00015717,0.00018277,0.00022812,0.00023287,0.0002564,0.00029806,0.00033645,0.00033835,0.00050983,0.00054454,0.00056197,0.00060907,0.00063494,0.00067776,0.00075149,0.00078328,0.00082967,0.00090965,0.0010237,0.0011445,0.0011574,0.0013243,0.0014459,0.0015614,0.0018559,0.0020066,0.002064,0.0022802,0.0022939,0.0023956,0.0024417,0.0031334,0.0033373,0.0034196,0.0038196,0.0040705,0.0041099,0.0047601,0.0062726,0.0067989,0.0070852,0.007794,0.0078579,0.0087357,0.0088369,0.010109,0.01093,0.012756,0.012934,0.013103,0.013198,0.013513,0.013775,0.013937,0.015748,0.016151,0.020448,0.022092,0.023243,0.023713,0.027936,0.028015,0.029545,0.030284,0.034239,0.034371,0.034684,0.037938,0.038882,0.039221,0.040272,0.041664,0.043016,0.043734,0.051327,0.051613,0.056023,0.063219,0.070659,0.082155,0.082329,0.086757,0.092597,0.10077,0.10087,0.10383,0.11865,0.12231,0.12272,0.14268,0.14736,0.15011,0.15881,0.16779,0.18524,0.18809,0.20223,0.23643,0.23692,0.23988,0.246,0.25087,0.25696,0.26426,0.33805,0.35907,0.39249,0.41821,0.4195,0.42246,0.46214,0.47157,0.47236,0.51161,0.57939,0.58156,0.6017,0.60587,0.65203,0.66486,0.69264,0.70698,0.72266,0.72569,0.74401,0.74721,0.74872,0.78885,0.80045,0.80526,0.82064,0.8254,0.84662,0.85131,0.8606,0.88271,0.88292,0.89298,0.8963,0.8963,0.91685,0.91746,0.92533,0.93325,0.94912,0.9617,0.96969,0.98053,0.98848,0.99573,0.99595,0.99903,1,0.99966,0.99544,0.9933,0.9877,0.9836,0.97324,0.97201,0.96937,0.96286,0.94734,0.92886,0.91809,0.90669,0.90049,0.89961,0.88791,0.87376,0.82674,0.81336,0.80585,0.78896,0.78884,0.77181,0.76967,0.75788,0.74831,0.71547,0.71065,0.68441,0.65971,0.57824,0.56296,0.55561,0.5364,0.51851,0.51175,0.49831,0.48872,0.47691,0.45761,0.45751,0.42356,0.41473,0.41289,0.41192,0.37902,0.37829,0.37505,0.37262,0.36635,0.3561,0.34703,0.30833,0.23483,0.21539,0.21373,0.21236,0.20797,0.20556,0.18359,0.17005,0.16065,0.15557,0.14532,0.13701,0.13551,0.12453,0.11863,0.11172,0.10126,0.088682,0.087923,0.083985,0.081336,0.080168,0.068526,0.065592,0.053513,0.050512,0.045567,0.043092,0.042314,0.038284,0.037788,0.036721,0.03448,0.030527 1,2.4639e-29,4.3348e-29,4.4589e-29,5.2851e-29,6.023e-29,7.1501e-29,9.969e-29,2.1905e-28,3.605e-28,3.8912e-28,5.7751e-28,6.1589e-28,7.9516e-28,1.4774e-27,1.7933e-27,2.0515e-27,3.6681e-27,4.052e-27,4.5246e-27,6.5494e-27,6.8145e-27,6.9718e-27,9.235e-27,1.0899e-26,1.0958e-26,1.5052e-26,1.5493e-26,1.7876e-26,1.8216e-26,1.8552e-26,4.8824e-26,1.2216e-25,1.3267e-25,1.7356e-25,2.2048e-25,2.654e-25,3.3061e-25,4.2658e-25,6.671e-25,8.5267e-25,1.2693e-24,2.0898e-24,2.1879e-24,2.4121e-24,2.6395e-24,4.2136e-24,4.2166e-24,1.2774e-23,1.3862e-23,1.4506e-23,2.0171e-23,2.0666e-23,3.9356e-23,5.0642e-23,5.6234e-23,7.0741e-23,8.1831e-23,1.05e-22,1.1344e-22,2.0503e-22,2.9491e-22,9.1668e-22,1.2485e-21,1.3841e-21,1.6642e-21,2.756e-21,3.0553e-21,3.3477e-21,5.1367e-21,7.661e-21,8.8791e-21,1.0017e-20,1.5492e-20,2.8967e-20,5.576e-20,8.6448e-20,9.475e-20,2.1391e-19,2.8299e-19,3.2236e-19,3.4152e-19,4.314e-19,1.1214e-18,1.1563e-18,1.3645e-18,1.7734e-18,1.8669e-18,2.71e-18,7.5031e-18,7.6043e-18,1.0111e-17,1.1198e-17,3.5538e-17,4.7389e-17,4.8401e-17,6.253e-17,8.8335e-17,8.8939e-17,9.1454e-17,1.1255e-16,1.1276e-16,1.3604e-16,1.4627e-16,4.0903e-16,6.3928e-16,6.4899e-16,1.0735e-15,1.2277e-15,1.5102e-15,1.6699e-15,1.7718e-15,1.8916e-15,1.9324e-15,2.0455e-15,2.5707e-15,2.6399e-15,2.7882e-15,2.9159e-15,4.0836e-15,5.9632e-15,9.6714e-15,1.1592e-14,1.6973e-14,2.5905e-14,3.0922e-14,3.3873e-14,9.1871e-14,1.0299e-13,1.12e-13,1.3222e-13,1.6315e-13,1.9561e-13,2.2658e-13,2.3257e-13,2.364e-13,2.8429e-13,4.6026e-13,4.7678e-13,5.7554e-13,7.6946e-13,9.0263e-13,9.2629e-13,2.2847e-12,2.3065e-12,2.7518e-12,3.8792e-12,4.1284e-12,5.2035e-12,5.4948e-12,8.0305e-12,1.0269e-11,1.7873e-11,1.811e-11,3.384e-11,3.6322e-11,3.7151e-11,5.5442e-11,5.6865e-11,6.563e-11,7.921e-11,8.399e-11,8.779e-11,1.0447e-10,1.0752e-10,1.0955e-10,1.2568e-10,1.3185e-10,1.3351e-10,1.4954e-10,1.5576e-10,1.95e-10,2.8227e-10,3.014e-10,3.067e-10,3.6139e-10,3.8668e-10,5.0852e-10,8.1836e-10,9.472e-10,1.1923e-09,1.2972e-09,1.6373e-09,2.061e-09,2.0999e-09,2.1306e-09,2.1342e-09,2.2832e-09,2.2963e-09,2.8349e-09,3.1213e-09,3.7378e-09,3.7678e-09,3.9552e-09,5.3907e-09,5.4393e-09,6.2965e-09,7.4314e-09,9.9695e-09,1.036e-08,1.1559e-08,1.1846e-08,1.26e-08,1.397e-08,1.6352e-08,1.6423e-08,2.3402e-08,3.485e-08,3.6345e-08,3.8073e-08,3.8627e-08,4.8918e-08,5.652e-08,9.1698e-08,9.4032e-08,9.891e-08,1.077e-07,1.474e-07,2.0366e-07,2.8878e-07,3.2047e-07,3.4094e-07,3.9872e-07,5.4535e-07,6.251e-07,7.4531e-07,9.7424e-07,1.2248e-06,1.2761e-06,1.9707e-06,2.0855e-06,2.129e-06,2.3529e-06,2.4482e-06,3.3522e-06,3.8309e-06,3.981e-06,3.9966e-06,4.3313e-06,4.8251e-06,5.0718e-06,5.1854e-06,7.6176e-06,7.6212e-06,1.0714e-05,1.5706e-05,2.2219e-05,3.0417e-05,3.4785e-05,3.6023e-05,3.9085e-05,4.196e-05,4.9542e-05,5.0452e-05,6.9154e-05,7.4818e-05,8.7501e-05,0.00010607,0.00011906,0.00012062,0.00013241,0.00014092,0.00016402,0.00020501,0.00020931,0.0002306,0.00026833,0.00030312,0.00030485,0.00046059,0.00049217,0.00050803,0.0005509,0.00057446,0.00061348,0.00068069,0.00070969,0.00075202,0.00082503,0.0009292,0.0010397,0.0010515,0.0012043,0.0013157,0.0014216,0.0016918,0.0018303,0.0018831,0.0020818,0.0020944,0.002188,0.0022304,0.0028677,0.0030557,0.0031317,0.003501,0.0037328,0.0037692,0.0043706,0.0057722,0.0062607,0.0065265,0.0071851,0.0072445,0.0080609,0.0081551,0.0093396,0.010105,0.01181,0.011976,0.012133,0.012222,0.012517,0.012762,0.012913,0.014606,0.014984,0.019011,0.020555,0.021636,0.022078,0.02605,0.026125,0.027566,0.028262,0.031992,0.032116,0.032412,0.035485,0.036377,0.036698,0.037691,0.039007,0.040287,0.040966,0.04816,0.048431,0.052615,0.059452,0.066531,0.07749,0.077656,0.081883,0.087462,0.095281,0.095371,0.098204,0.11241,0.11592,0.11631,0.1355,0.14,0.14265,0.15103,0.15969,0.17655,0.17929,0.19298,0.22615,0.22661,0.22949,0.23544,0.24018,0.2461,0.2532,0.32524,0.34583,0.37865,0.40396,0.40523,0.40815,0.4473,0.45663,0.4574,0.49627,0.56367,0.56584,0.58594,0.5901,0.63632,0.64921,0.67715,0.6916,0.70743,0.7105,0.72904,0.73228,0.73381,0.77459,0.78642,0.79133,0.80706,0.81194,0.83373,0.83856,0.84814,0.87103,0.87124,0.88171,0.88516,0.88517,0.90666,0.90731,0.91559,0.92396,0.94086,0.95441,0.96313,0.97516,0.98425,0.99301,0.99329,0.99754,0.99966,1,0.99758,0.99596,0.99141,0.98793,0.97882,0.97772,0.97535,0.96944,0.95515,0.93787,0.9277,0.91687,0.91097,0.91012,0.89894,0.88535,0.83982,0.82679,0.81946,0.80294,0.80282,0.78612,0.78402,0.77243,0.76301,0.73061,0.72584,0.69985,0.67531,0.59399,0.57868,0.5713,0.55201,0.53401,0.5272,0.51366,0.504,0.49207,0.47257,0.47247,0.4381,0.42914,0.42728,0.42629,0.39287,0.39212,0.38882,0.38635,0.37997,0.36953,0.36029,0.32077,0.24538,0.22536,0.22364,0.22223,0.2177,0.21521,0.19252,0.17851,0.16879,0.16351,0.15288,0.14425,0.14269,0.13128,0.12513,0.11793,0.10702,0.093873,0.093079,0.088958,0.086184,0.084961,0.072753,0.069672,0.056969,0.053807,0.048592,0.045979,0.045158,0.040899,0.040374,0.039246,0.036874,0.032686 1,1.1061e-29,1.9526e-29,2.0088e-29,2.3835e-29,2.7185e-29,3.2306e-29,4.5134e-29,9.9656e-29,1.6451e-28,1.7766e-28,2.6431e-28,2.8199e-28,3.6465e-28,6.8014e-28,8.2656e-28,9.4636e-28,1.6983e-27,1.8773e-27,2.0977e-27,3.0435e-27,3.1675e-27,3.2411e-27,4.3009e-27,5.0813e-27,5.109e-27,7.0316e-27,7.2389e-27,8.3602e-27,8.5201e-27,8.6785e-27,2.2982e-26,5.7842e-26,6.2854e-26,8.2369e-26,1.048e-25,1.2631e-25,1.5756e-25,2.0364e-25,3.1941e-25,4.0891e-25,6.1033e-25,1.0082e-24,1.0558e-24,1.1648e-24,1.2754e-24,2.0423e-24,2.0438e-24,6.2379e-24,6.7732e-24,7.0899e-24,9.8809e-24,1.0125e-23,1.9367e-23,2.4963e-23,2.774e-23,3.4952e-23,4.0471e-23,5.2022e-23,5.623e-23,1.0205e-22,1.4716e-22,4.6108e-22,6.2937e-22,6.9823e-22,8.4063e-22,1.3971e-21,1.55e-21,1.6995e-21,2.6157e-21,3.9123e-21,4.5392e-21,5.1256e-21,7.9521e-21,1.4937e-20,2.8892e-20,4.4938e-20,4.9287e-20,1.1195e-19,1.4841e-19,1.6923e-19,1.7937e-19,2.2697e-19,5.943e-19,6.1292e-19,7.2421e-19,9.4315e-19,9.9325e-19,1.446e-18,4.0353e-18,4.0901e-18,5.4507e-18,6.0412e-18,1.935e-17,2.5862e-17,2.6418e-17,3.4201e-17,4.845e-17,4.8784e-17,5.0175e-17,6.1854e-17,6.197e-17,7.4879e-17,8.0555e-17,2.2717e-16,3.5637e-16,3.6183e-16,6.0103e-16,6.8812e-16,8.4795e-16,9.3841e-16,9.9616e-16,1.0641e-15,1.0872e-15,1.1514e-15,1.4499e-15,1.4893e-15,1.5737e-15,1.6464e-15,2.3123e-15,3.3876e-15,5.5171e-15,6.6229e-15,9.7296e-15,1.4905e-14,1.782e-14,1.9536e-14,5.3459e-14,5.9993e-14,6.5291e-14,7.7188e-14,9.5427e-14,1.146e-13,1.3292e-13,1.3647e-13,1.3874e-13,1.6713e-13,2.7178e-13,2.8163e-13,3.4055e-13,4.5653e-13,5.3633e-13,5.5053e-13,1.3695e-12,1.3827e-12,1.6524e-12,2.337e-12,2.4887e-12,3.1437e-12,3.3215e-12,4.8722e-12,6.2452e-12,1.0929e-11,1.1075e-11,2.0824e-11,2.2368e-11,2.2884e-11,3.4288e-11,3.5177e-11,4.0658e-11,4.9166e-11,5.2163e-11,5.4548e-11,6.5028e-11,6.6944e-11,6.8222e-11,7.8376e-11,8.2269e-11,8.3315e-11,9.3427e-11,9.7351e-11,1.2216e-10,1.7752e-10,1.8968e-10,1.9305e-10,2.2788e-10,2.4399e-10,3.2181e-10,5.2052e-10,6.0342e-10,7.6149e-10,8.2921e-10,1.0493e-09,1.3241e-09,1.3494e-09,1.3694e-09,1.3717e-09,1.4686e-09,1.4771e-09,1.8278e-09,2.0146e-09,2.4173e-09,2.437e-09,2.5596e-09,3.5007e-09,3.5326e-09,4.0961e-09,4.8435e-09,6.5196e-09,6.778e-09,7.572e-09,7.7618e-09,8.262e-09,9.171e-09,1.0755e-08,1.0802e-08,1.5456e-08,2.3126e-08,2.413e-08,2.5291e-08,2.5663e-08,3.2592e-08,3.7722e-08,6.1561e-08,6.3147e-08,6.6464e-08,7.2444e-08,9.9536e-08,1.3808e-07,1.9666e-07,2.1853e-07,2.3267e-07,2.7264e-07,3.7442e-07,4.2993e-07,5.1379e-07,6.7397e-07,8.4988e-07,8.8596e-07,1.3763e-06,1.4575e-06,1.4884e-06,1.6472e-06,1.7147e-06,2.3582e-06,2.6999e-06,2.8072e-06,2.8183e-06,3.0578e-06,3.4116e-06,3.5885e-06,3.6701e-06,5.421e-06,5.4236e-06,7.6621e-06,1.1296e-05,1.6062e-05,2.2093e-05,2.5318e-05,2.6234e-05,2.8499e-05,3.0629e-05,3.6257e-05,3.6934e-05,5.0876e-05,5.5113e-05,6.4618e-05,7.8574e-05,8.8365e-05,8.9542e-05,9.8446e-05,0.00010488,0.00012238,0.00015353,0.00015681,0.00017304,0.00020187,0.00022853,0.00022985,0.00034981,0.00037423,0.00038651,0.00041973,0.00043801,0.00046832,0.00052061,0.0005432,0.00057621,0.00063324,0.00071476,0.00080143,0.00081074,0.00093091,0.0010187,0.0011023,0.0013163,0.0014262,0.0014682,0.0016263,0.0016364,0.001711,0.0017448,0.0022547,0.0024057,0.0024668,0.002764,0.0029509,0.0029803,0.0034666,0.0046056,0.0050041,0.0052213,0.0057604,0.0058091,0.0064792,0.0065565,0.0075319,0.0081637,0.0095754,0.0097132,0.0098441,0.0099179,0.010163,0.010366,0.010492,0.011903,0.012218,0.015592,0.01689,0.017802,0.018175,0.021536,0.021599,0.022822,0.023413,0.02659,0.026696,0.026948,0.029574,0.030338,0.030613,0.031465,0.032594,0.033693,0.034276,0.040478,0.040712,0.044334,0.050272,0.056446,0.066048,0.066194,0.069911,0.074829,0.081741,0.081821,0.08433,0.096958,0.10009,0.10044,0.11762,0.12167,0.12405,0.13161,0.13943,0.15472,0.15722,0.16969,0.2001,0.20053,0.20318,0.20866,0.21303,0.21851,0.22508,0.29233,0.31174,0.34283,0.36695,0.36816,0.37096,0.40853,0.41752,0.41827,0.45594,0.52195,0.52408,0.54396,0.54808,0.59415,0.60708,0.63527,0.64992,0.66603,0.66916,0.68814,0.69147,0.69305,0.73523,0.74758,0.75273,0.76926,0.77441,0.79754,0.80271,0.81297,0.83773,0.83796,0.8494,0.85319,0.8532,0.87704,0.87777,0.88708,0.89658,0.91606,0.93209,0.94265,0.95775,0.96977,0.98248,0.98292,0.99029,0.99544,0.99758,1,0.99979,0.99809,0.99629,0.99061,0.98987,0.98823,0.98401,0.97314,0.95921,0.95074,0.94155,0.93648,0.93575,0.92603,0.91406,0.87295,0.86095,0.85417,0.83878,0.83867,0.823,0.82102,0.81007,0.80113,0.77014,0.76556,0.74042,0.71651,0.63616,0.62085,0.61345,0.59406,0.57589,0.569,0.55527,0.54544,0.53329,0.51335,0.51324,0.4779,0.46865,0.46672,0.4657,0.43102,0.43024,0.42681,0.42423,0.41758,0.40666,0.39698,0.35539,0.27506,0.2535,0.25165,0.25012,0.24523,0.24254,0.21791,0.20263,0.19199,0.18621,0.17453,0.16502,0.16329,0.15067,0.14385,0.13584,0.12368,0.10895,0.10805,0.10342,0.10029,0.098915,0.085108,0.081611,0.067129,0.063508,0.057521,0.054512,0.053566,0.048648,0.04804,0.046734,0.043984,0.039114 1,8.7379e-30,1.5441e-29,1.5887e-29,1.8856e-29,2.1511e-29,2.5571e-29,3.5745e-29,7.9038e-29,1.3059e-28,1.4105e-28,2.1e-28,2.2407e-28,2.8989e-28,5.413e-28,6.5807e-28,7.5364e-28,1.3539e-27,1.4968e-27,1.6729e-27,2.4289e-27,2.528e-27,2.5869e-27,3.4346e-27,4.0591e-27,4.0812e-27,5.6204e-27,5.7864e-27,6.6844e-27,6.8125e-27,6.9394e-27,1.841e-26,4.6416e-26,5.0446e-26,6.6143e-26,8.4193e-26,1.0151e-25,1.2668e-25,1.6381e-25,2.5715e-25,3.2937e-25,4.9198e-25,8.1346e-25,8.5199e-25,9.4011e-25,1.0295e-24,1.6501e-24,1.6513e-24,5.0511e-24,5.4855e-24,5.7425e-24,8.0084e-24,8.2065e-24,1.5717e-23,2.027e-23,2.2529e-23,2.8399e-23,3.2894e-23,4.2304e-23,4.5732e-23,8.3097e-23,1.1992e-22,3.7661e-22,5.144e-22,5.708e-22,6.8748e-22,1.1438e-21,1.2692e-21,1.3919e-21,2.1442e-21,3.2098e-21,3.7253e-21,4.2076e-21,6.534e-21,1.2289e-20,2.3805e-20,3.7061e-20,4.0656e-20,9.2509e-20,1.2272e-19,1.3997e-19,1.4837e-19,1.8785e-19,4.9292e-19,5.0839e-19,6.0093e-19,7.8306e-19,8.2475e-19,1.2017e-18,3.3614e-18,3.4072e-18,4.5435e-18,5.0369e-18,1.6176e-17,2.1635e-17,2.2102e-17,2.863e-17,4.0592e-17,4.0872e-17,4.204e-17,5.1851e-17,5.1948e-17,6.2798e-17,6.757e-17,1.9103e-16,2.9999e-16,3.046e-16,5.0658e-16,5.8018e-16,7.1531e-16,7.9181e-16,8.4067e-16,8.9817e-16,9.1773e-16,9.7205e-16,1.2247e-15,1.2581e-15,1.3295e-15,1.3911e-15,1.9554e-15,2.8675e-15,4.6757e-15,5.6155e-15,8.2577e-15,1.2664e-14,1.5147e-14,1.661e-14,4.5571e-14,5.1156e-14,5.5686e-14,6.5862e-14,8.1471e-14,9.789e-14,1.1358e-13,1.1662e-13,1.1857e-13,1.429e-13,2.3267e-13,2.4113e-13,2.9173e-13,3.9139e-13,4.6001e-13,4.7222e-13,1.1776e-12,1.189e-12,1.4216e-12,2.0126e-12,2.1435e-12,2.7095e-12,2.8632e-12,4.2044e-12,5.3931e-12,9.4528e-12,9.5799e-12,1.8045e-11,1.9387e-11,1.9835e-11,2.9755e-11,3.0529e-11,3.5301e-11,4.2712e-11,4.5324e-11,4.7402e-11,5.6539e-11,5.8209e-11,5.9324e-11,6.8182e-11,7.1579e-11,7.2492e-11,8.1318e-11,8.4744e-11,1.0642e-10,1.5482e-10,1.6545e-10,1.684e-10,1.9888e-10,2.1299e-10,2.8116e-10,4.5545e-10,5.2823e-10,6.6708e-10,7.266e-10,9.2015e-10,1.162e-09,1.1843e-09,1.2019e-09,1.2039e-09,1.2892e-09,1.2967e-09,1.6056e-09,1.7703e-09,2.1255e-09,2.1428e-09,2.251e-09,3.0817e-09,3.1099e-09,3.6078e-09,4.2684e-09,5.7511e-09,5.9798e-09,6.6828e-09,6.8509e-09,7.2939e-09,8.0992e-09,9.5031e-09,9.5445e-09,1.3674e-08,2.0487e-08,2.138e-08,2.2412e-08,2.2743e-08,2.8908e-08,3.3475e-08,5.4724e-08,5.6139e-08,5.9098e-08,6.4435e-08,8.8633e-08,1.231e-07,1.7555e-07,1.9515e-07,2.0782e-07,2.4367e-07,3.3503e-07,3.849e-07,4.6029e-07,6.0442e-07,7.6285e-07,7.9536e-07,1.2376e-06,1.311e-06,1.3389e-06,1.4823e-06,1.5434e-06,2.1252e-06,2.4345e-06,2.5316e-06,2.5417e-06,2.7586e-06,3.0791e-06,3.2395e-06,3.3134e-06,4.902e-06,4.9044e-06,6.9386e-06,1.0246e-05,1.4592e-05,2.0098e-05,2.3046e-05,2.3883e-05,2.5955e-05,2.7904e-05,3.3056e-05,3.3676e-05,4.6456e-05,5.0343e-05,5.9069e-05,7.1892e-05,8.0895e-05,8.1978e-05,9.017e-05,9.6088e-05,0.00011221,0.00014093,0.00014395,0.00015893,0.00018555,0.00021018,0.0002114,0.00032241,0.00034503,0.00035641,0.00038722,0.00040417,0.00043228,0.00048082,0.0005018,0.00053246,0.00058544,0.00066124,0.00074188,0.00075054,0.00086244,0.00094424,0.0010222,0.0012218,0.0013244,0.0013636,0.0015114,0.0015208,0.0015905,0.0016222,0.0020993,0.0022407,0.002298,0.0025766,0.0027519,0.0027795,0.0032359,0.0043066,0.0046817,0.0048863,0.0053941,0.00544,0.0060717,0.0061447,0.0070652,0.0076618,0.0089962,0.0091266,0.0092504,0.0093202,0.0095517,0.0097444,0.0098636,0.011199,0.011498,0.014698,0.015931,0.016797,0.017151,0.020348,0.020408,0.021573,0.022136,0.025163,0.025265,0.025505,0.028011,0.02874,0.029002,0.029815,0.030894,0.031944,0.032501,0.038432,0.038657,0.042125,0.047817,0.053741,0.062968,0.063108,0.066685,0.071418,0.078078,0.078155,0.080574,0.09276,0.095785,0.096123,0.11273,0.11666,0.11896,0.12629,0.13387,0.14871,0.15114,0.16326,0.19287,0.19329,0.19587,0.20122,0.20549,0.21083,0.21725,0.28307,0.30212,0.33268,0.35643,0.35762,0.36038,0.39745,0.40633,0.40707,0.44434,0.50984,0.51196,0.53174,0.53585,0.5818,0.59472,0.62292,0.63759,0.65376,0.65691,0.67597,0.67932,0.68091,0.72342,0.73589,0.74109,0.75782,0.76304,0.78651,0.79176,0.80221,0.82745,0.82769,0.83939,0.84327,0.84328,0.86774,0.86849,0.87808,0.88789,0.90808,0.92479,0.93587,0.95182,0.96468,0.97851,0.97901,0.98727,0.9933,0.99596,0.99979,1,0.99914,0.99783,0.99319,0.99254,0.99113,0.98741,0.97758,0.96467,0.95672,0.94805,0.94323,0.94254,0.93327,0.9218,0.88209,0.87043,0.86383,0.84881,0.84871,0.83337,0.83143,0.82069,0.81192,0.78142,0.77689,0.75206,0.72839,0.64848,0.63321,0.62582,0.60643,0.58824,0.58134,0.56757,0.55771,0.54551,0.52547,0.52536,0.48979,0.48046,0.47852,0.47749,0.44248,0.4417,0.43822,0.43562,0.42889,0.41785,0.40805,0.36589,0.28416,0.26216,0.26027,0.25871,0.25371,0.25095,0.22576,0.21011,0.1992,0.19326,0.18127,0.17149,0.16972,0.15674,0.14972,0.14146,0.12892,0.1137,0.11278,0.10799,0.10476,0.10333,0.089031,0.085405,0.070373,0.06661,0.060381,0.057249,0.056264,0.051139,0.050506,0.049143,0.046274,0.04119 1,5.4087e-30,9.5775e-30,9.855e-30,1.1704e-29,1.3358e-29,1.5889e-29,2.2239e-29,4.9314e-29,8.1629e-29,8.819e-29,1.3149e-28,1.4034e-28,1.8173e-28,3.4013e-28,4.138e-28,4.7413e-28,8.5362e-28,9.4409e-28,1.0556e-27,1.5347e-27,1.5976e-27,1.6349e-27,2.173e-27,2.5697e-27,2.5838e-27,3.5625e-27,3.6681e-27,4.2397e-27,4.3213e-27,4.4021e-27,1.1722e-26,2.9658e-26,3.2243e-26,4.232e-26,5.3919e-26,6.5054e-26,8.1257e-26,1.0518e-25,1.654e-25,2.1205e-25,3.1724e-25,5.2558e-25,5.5057e-25,6.0775e-25,6.6579e-25,1.0691e-24,1.0699e-24,3.2872e-24,3.5711e-24,3.7391e-24,5.2214e-24,5.3511e-24,1.0276e-23,1.3265e-23,1.475e-23,1.8611e-23,2.1569e-23,2.7768e-23,3.0028e-23,5.4696e-23,7.9052e-23,2.4944e-22,3.4115e-22,3.7872e-22,4.5649e-22,7.6111e-22,8.4495e-22,9.2696e-22,1.4306e-21,2.1453e-21,2.4914e-21,2.8154e-21,4.3803e-21,8.261e-21,1.6048e-20,2.5033e-20,2.7472e-20,6.2736e-20,8.3328e-20,9.5097e-20,1.0083e-19,1.2779e-19,3.3678e-19,3.4741e-19,4.1095e-19,5.3614e-19,5.6482e-19,8.2437e-19,2.3169e-18,2.3486e-18,3.136e-18,3.4782e-18,1.1232e-17,1.5042e-17,1.5368e-17,1.9932e-17,2.8307e-17,2.8503e-17,2.9321e-17,3.6201e-17,3.6269e-17,4.3884e-17,4.7235e-17,1.3421e-16,2.1123e-16,2.1449e-16,3.5761e-16,4.0985e-16,5.0582e-16,5.602e-16,5.9494e-16,6.3585e-16,6.4977e-16,6.8842e-16,8.6838e-16,8.9212e-16,9.4306e-16,9.8697e-16,1.3897e-15,2.0418e-15,3.3377e-15,4.0124e-15,5.9119e-15,9.0864e-15,1.0878e-14,1.1934e-14,3.2917e-14,3.6974e-14,4.0266e-14,4.7666e-14,5.903e-14,7.0996e-14,8.2442e-14,8.466e-14,8.6082e-14,1.0385e-13,1.6954e-13,1.7573e-13,2.1283e-13,2.86e-13,3.3644e-13,3.4541e-13,8.6575e-13,8.7417e-13,1.0463e-12,1.4841e-12,1.5812e-12,2.0014e-12,2.1155e-12,3.1133e-12,3.9992e-12,7.0325e-12,7.1276e-12,1.3476e-11,1.4484e-11,1.4821e-11,2.2286e-11,2.287e-11,2.6467e-11,3.206e-11,3.4033e-11,3.5603e-11,4.251e-11,4.3774e-11,4.4617e-11,5.1322e-11,5.3895e-11,5.4587e-11,6.1275e-11,6.3873e-11,8.0318e-11,1.1712e-10,1.2522e-10,1.2746e-10,1.5068e-10,1.6144e-10,2.1348e-10,3.4687e-10,4.0268e-10,5.0928e-10,5.5502e-10,7.0393e-10,8.903e-10,9.0748e-10,9.2102e-10,9.226e-10,9.8841e-10,9.9419e-10,1.2328e-09,1.3601e-09,1.6349e-09,1.6483e-09,1.732e-09,2.3762e-09,2.3981e-09,2.7847e-09,3.2983e-09,4.4529e-09,4.6313e-09,5.1796e-09,5.3107e-09,5.6565e-09,6.2855e-09,7.3831e-09,7.4154e-09,1.065e-08,1.6001e-08,1.6703e-08,1.7515e-08,1.7776e-08,2.2632e-08,2.6235e-08,4.3038e-08,4.4159e-08,4.6504e-08,5.0735e-08,6.9949e-08,9.7385e-08,1.3924e-07,1.5491e-07,1.6504e-07,1.9375e-07,2.6703e-07,3.071e-07,3.6775e-07,4.8392e-07,6.1187e-07,6.3815e-07,9.9647e-07,1.056e-06,1.0786e-06,1.1952e-06,1.2448e-06,1.7185e-06,1.9708e-06,2.0501e-06,2.0583e-06,2.2354e-06,2.4974e-06,2.6286e-06,2.6891e-06,3.9913e-06,3.9933e-06,5.6661e-06,8.3948e-06,1.1992e-05,1.6565e-05,1.9017e-05,1.9715e-05,2.1441e-05,2.3066e-05,2.7367e-05,2.7885e-05,3.8581e-05,4.184e-05,4.9166e-05,5.995e-05,6.7534e-05,6.8446e-05,7.5355e-05,8.0349e-05,9.3969e-05,0.00011828,0.00012085,0.00013355,0.00015616,0.00017711,0.00017815,0.00027287,0.00029222,0.00030196,0.00032834,0.00034287,0.00036698,0.00040864,0.00042666,0.00045302,0.00049861,0.0005639,0.00063346,0.00064094,0.00073762,0.00080839,0.00087589,0.0010491,0.0011382,0.0011723,0.0013008,0.001309,0.0013697,0.0013973,0.0018138,0.0019374,0.0019875,0.0022315,0.0023853,0.0024094,0.0028103,0.0037535,0.0040847,0.0042655,0.0047147,0.0047553,0.005315,0.0053798,0.0061969,0.0067275,0.0079161,0.0080324,0.0081428,0.0082051,0.0084118,0.0085837,0.0086901,0.0098841,0.010151,0.013022,0.01413,0.01491,0.015229,0.018113,0.018167,0.019219,0.019729,0.022471,0.022562,0.022781,0.025054,0.025717,0.025955,0.026694,0.027675,0.028631,0.029139,0.034549,0.034754,0.037925,0.04314,0.048581,0.057079,0.057208,0.06051,0.064884,0.07105,0.071121,0.073364,0.084681,0.087497,0.087811,0.10331,0.10697,0.10913,0.11599,0.1231,0.13705,0.13933,0.15076,0.17876,0.17916,0.18161,0.18669,0.19074,0.19581,0.20192,0.26482,0.28313,0.3126,0.33557,0.33673,0.33939,0.37539,0.38405,0.38477,0.42116,0.48551,0.4876,0.50714,0.5112,0.55679,0.56965,0.59782,0.61252,0.62875,0.63191,0.6511,0.65448,0.65608,0.69912,0.7118,0.71711,0.73419,0.73953,0.76361,0.76902,0.77979,0.80595,0.80619,0.81838,0.82243,0.82244,0.8481,0.84888,0.85901,0.8694,0.89096,0.909,0.92108,0.93872,0.95322,0.96928,0.96986,0.97991,0.9877,0.99141,0.99809,0.99914,1,0.9997,0.99715,0.99673,0.99577,0.99309,0.98539,0.9746,0.96774,0.96013,0.95586,0.95524,0.94693,0.93653,0.8998,0.88886,0.88263,0.86842,0.86832,0.85373,0.85187,0.84161,0.83319,0.80378,0.7994,0.77527,0.75215,0.67337,0.6582,0.65085,0.63152,0.61334,0.60643,0.59263,0.58272,0.57045,0.55026,0.55015,0.51418,0.50472,0.50275,0.50171,0.4661,0.4653,0.46176,0.4591,0.45224,0.44096,0.43094,0.38768,0.30319,0.28029,0.27832,0.27669,0.27148,0.2686,0.24226,0.22585,0.21439,0.20814,0.19551,0.1852,0.18332,0.16959,0.16215,0.1534,0.14006,0.12385,0.12286,0.11774,0.11429,0.11276,0.097433,0.093538,0.077348,0.073283,0.066546,0.063152,0.062084,0.056521,0.055833,0.054352,0.051231,0.04569 1,4.0696e-30,7.2149e-30,7.4244e-30,8.8205e-30,1.007e-29,1.1983e-29,1.6783e-29,3.7279e-29,6.1775e-29,6.6751e-29,9.9611e-29,1.0633e-28,1.3777e-28,2.5819e-28,3.1425e-28,3.6018e-28,6.493e-28,7.1827e-28,8.0329e-28,1.1689e-27,1.2169e-27,1.2454e-27,1.6563e-27,1.9594e-27,1.9701e-27,2.7183e-27,2.7991e-27,3.2363e-27,3.2987e-27,3.3605e-27,8.9679e-27,2.2738e-26,2.4724e-26,3.2471e-26,4.1394e-26,4.9964e-26,6.2439e-26,8.0867e-26,1.273e-25,1.633e-25,2.4454e-25,4.056e-25,4.2493e-25,4.6917e-25,5.1408e-25,8.2643e-25,8.2703e-25,2.5477e-24,2.7682e-24,2.8988e-24,4.0512e-24,4.1521e-24,7.9853e-24,1.0315e-23,1.1473e-23,1.4484e-23,1.6792e-23,2.163e-23,2.3395e-23,4.2676e-23,6.1735e-23,1.9535e-22,2.6737e-22,2.9689e-22,3.5803e-22,5.977e-22,6.6371e-22,7.2829e-22,1.1252e-21,1.689e-21,1.9623e-21,2.2182e-21,3.4549e-21,6.5264e-21,1.27e-20,1.9832e-20,2.177e-20,4.9822e-20,6.6224e-20,7.5603e-20,8.0176e-20,1.0168e-19,2.6864e-19,2.7714e-19,3.2797e-19,4.2819e-19,4.5116e-19,6.5914e-19,1.8577e-18,1.8831e-18,2.5165e-18,2.7919e-18,9.0446e-18,1.2123e-17,1.2387e-17,1.6077e-17,2.2854e-17,2.3013e-17,2.3675e-17,2.9247e-17,2.9303e-17,3.5474e-17,3.8191e-17,1.0883e-16,1.7152e-16,1.7417e-16,2.9082e-16,3.3343e-16,4.1176e-16,4.5617e-16,4.8454e-16,5.1795e-16,5.2933e-16,5.6091e-16,7.0802e-16,7.2743e-16,7.691e-16,8.0501e-16,1.1347e-15,1.669e-15,2.7323e-15,3.2863e-15,4.8478e-15,7.4607e-15,8.9368e-15,9.8073e-15,2.7135e-14,3.049e-14,3.3213e-14,3.9338e-14,4.8749e-14,5.8665e-14,6.8156e-14,6.9995e-14,7.1174e-14,8.5914e-14,1.4048e-13,1.4563e-13,1.7648e-13,2.3738e-13,2.7939e-13,2.8686e-13,7.2115e-13,7.2819e-13,8.7207e-13,1.2384e-12,1.3197e-12,1.6717e-12,1.7674e-12,2.6044e-12,3.3483e-12,5.8992e-12,5.9793e-12,1.1329e-11,1.218e-11,1.2464e-11,1.877e-11,1.9262e-11,2.2304e-11,2.7035e-11,2.8705e-11,3.0034e-11,3.5883e-11,3.6954e-11,3.7668e-11,4.3351e-11,4.5532e-11,4.6118e-11,5.1791e-11,5.3994e-11,6.7952e-11,9.922e-11,1.0611e-10,1.0802e-10,1.2777e-10,1.3693e-10,1.8125e-10,2.9503e-10,3.4269e-10,4.3379e-10,4.7291e-10,6.0032e-10,7.5993e-10,7.7465e-10,7.8626e-10,7.8761e-10,8.4401e-10,8.4897e-10,1.0536e-09,1.1628e-09,1.3987e-09,1.4103e-09,1.4822e-09,2.0359e-09,2.0547e-09,2.3874e-09,2.8296e-09,3.8246e-09,3.9784e-09,4.4514e-09,4.5646e-09,4.863e-09,5.406e-09,6.3541e-09,6.382e-09,9.1791e-09,1.3814e-08,1.4423e-08,1.5127e-08,1.5353e-08,1.9567e-08,2.2695e-08,3.7308e-08,3.8284e-08,4.0326e-08,4.4011e-08,6.0761e-08,8.4714e-08,1.2131e-07,1.3502e-07,1.439e-07,1.6904e-07,2.3331e-07,2.6849e-07,3.2177e-07,4.2395e-07,5.3662e-07,5.5978e-07,8.7589e-07,9.285e-07,9.4846e-07,1.0514e-06,1.0953e-06,1.5144e-06,1.7379e-06,1.8081e-06,1.8154e-06,1.9724e-06,2.2048e-06,2.3212e-06,2.3748e-06,3.5317e-06,3.5334e-06,5.0223e-06,7.4556e-06,1.067e-05,1.4763e-05,1.6961e-05,1.7586e-05,1.9135e-05,2.0593e-05,2.4455e-05,2.492e-05,3.454e-05,3.7474e-05,4.4074e-05,5.38e-05,6.0646e-05,6.147e-05,6.7711e-05,7.2225e-05,8.4542e-05,0.00010656,0.00010888,0.0001204,0.00014091,0.00015993,0.00016087,0.00024703,0.00026467,0.00027354,0.00029759,0.00031084,0.00033284,0.00037087,0.00038733,0.0004114,0.00045308,0.00051281,0.00057649,0.00058334,0.00067193,0.00073684,0.00079878,0.00095786,0.0010398,0.0010711,0.0011894,0.001197,0.0012529,0.0012783,0.0016622,0.0017763,0.0018226,0.002048,0.0021901,0.0022125,0.0025834,0.0034576,0.003765,0.0039329,0.0043504,0.0043881,0.0049088,0.004969,0.0057299,0.0062244,0.0073335,0.007442,0.0075452,0.0076034,0.0077964,0.0079571,0.0080565,0.0091728,0.009423,0.012112,0.013152,0.013884,0.014184,0.016895,0.016946,0.017936,0.018416,0.020999,0.021085,0.021291,0.023436,0.024061,0.024287,0.024985,0.025911,0.026814,0.027294,0.032413,0.032607,0.035612,0.04056,0.045729,0.053816,0.053939,0.057084,0.061256,0.067141,0.067209,0.069351,0.080174,0.08287,0.083171,0.098026,0.10155,0.10362,0.11021,0.11705,0.13048,0.13268,0.14371,0.17077,0.17116,0.17353,0.17844,0.18237,0.18729,0.19321,0.25439,0.27225,0.30106,0.32355,0.32468,0.3273,0.36264,0.37115,0.37186,0.40769,0.47129,0.47337,0.49273,0.49676,0.54207,0.55489,0.58298,0.59767,0.61391,0.61707,0.63631,0.6397,0.64131,0.68459,0.69737,0.70272,0.71998,0.72538,0.74978,0.75527,0.76622,0.79286,0.79311,0.80555,0.80969,0.8097,0.83601,0.83682,0.84724,0.85796,0.88028,0.89906,0.91171,0.93031,0.94574,0.96308,0.96372,0.9748,0.9836,0.98793,0.99629,0.99783,0.9997,1,0.9987,0.99841,0.99772,0.99566,0.98924,0.97974,0.97354,0.96657,0.96262,0.96205,0.95433,0.94458,0.90971,0.89921,0.89323,0.87952,0.87943,0.8653,0.8635,0.85354,0.84535,0.81664,0.81236,0.78869,0.76595,0.68799,0.6729,0.66558,0.64632,0.62818,0.62127,0.60747,0.59756,0.58527,0.56501,0.5649,0.52874,0.51922,0.51724,0.51619,0.48027,0.47946,0.47588,0.4732,0.46626,0.45485,0.44471,0.40084,0.31478,0.29136,0.28934,0.28768,0.28234,0.2794,0.25238,0.23552,0.22373,0.21731,0.20429,0.19365,0.19172,0.17754,0.16985,0.1608,0.14699,0.13016,0.12914,0.12382,0.12023,0.11864,0.10269,0.098628,0.081728,0.077478,0.070427,0.066872,0.065753,0.059919,0.059197,0.057643,0.054365,0.04854 1,2.2435e-30,3.9875e-30,4.1038e-30,4.8792e-30,5.5737e-30,6.6374e-30,9.3102e-30,2.0754e-29,3.4469e-29,3.7259e-29,5.5701e-29,5.9473e-29,7.7149e-29,1.45e-28,1.7664e-28,2.0258e-28,3.6617e-28,4.0526e-28,4.5345e-28,6.6097e-28,6.8824e-28,7.0442e-28,9.3806e-28,1.1106e-27,1.1167e-27,1.5431e-27,1.5892e-27,1.8386e-27,1.8743e-27,1.9095e-27,5.1191e-27,1.3036e-26,1.418e-26,1.8648e-26,2.3799e-26,2.8751e-26,3.5968e-26,4.6641e-26,7.3581e-26,9.4502e-26,1.4179e-25,2.3575e-25,2.4704e-25,2.7289e-25,2.9914e-25,4.82e-25,4.8235e-25,1.4941e-24,1.6241e-24,1.701e-24,2.3812e-24,2.4408e-24,4.7094e-24,6.0911e-24,6.7782e-24,8.567e-24,9.9396e-24,1.282e-23,1.3871e-23,2.538e-23,3.6782e-23,1.1707e-22,1.605e-22,1.7831e-22,2.1524e-22,3.6027e-22,4.0027e-22,4.3944e-22,6.8046e-22,1.0236e-21,1.1901e-21,1.3462e-21,2.1016e-21,3.9833e-21,7.7786e-21,1.2177e-20,1.3373e-20,3.0742e-20,4.0925e-20,4.6755e-20,4.9599e-20,6.2981e-20,1.6729e-19,1.7261e-19,2.0447e-19,2.6734e-19,2.8176e-19,4.1252e-19,1.1694e-18,1.1855e-18,1.5869e-18,1.7616e-18,5.7453e-18,7.7139e-18,7.8826e-18,1.0246e-17,1.4595e-17,1.4697e-17,1.5123e-17,1.8705e-17,1.8741e-17,2.2713e-17,2.4464e-17,7.0149e-17,1.1085e-16,1.1258e-16,1.8855e-16,2.1636e-16,2.6753e-16,2.9657e-16,3.1513e-16,3.37e-16,3.4444e-16,3.6512e-16,4.6154e-16,4.7427e-16,5.0161e-16,5.2517e-16,7.4179e-16,1.0937e-15,1.796e-15,2.1627e-15,3.1981e-15,4.9351e-15,5.9184e-15,6.4987e-15,1.8098e-14,2.0351e-14,2.2181e-14,2.6301e-14,3.2638e-14,3.9325e-14,4.5732e-14,4.6974e-14,4.777e-14,5.7735e-14,9.4711e-14,9.8206e-14,1.1916e-13,1.606e-13,1.8923e-13,1.9433e-13,4.9158e-13,4.9641e-13,5.9523e-13,8.4733e-13,9.0337e-13,1.1462e-12,1.2122e-12,1.7912e-12,2.3068e-12,4.0806e-12,4.1363e-12,7.8734e-12,8.4688e-12,8.6679e-12,1.3092e-11,1.3438e-11,1.5576e-11,1.8907e-11,2.0083e-11,2.102e-11,2.5147e-11,2.5903e-11,2.6408e-11,3.0423e-11,3.1965e-11,3.238e-11,3.6394e-11,3.7954e-11,4.7847e-11,7.0062e-11,7.4963e-11,7.6323e-11,9.0397e-11,9.6926e-11,1.2857e-10,2.1007e-10,2.4428e-10,3.0979e-10,3.3795e-10,4.298e-10,5.4509e-10,5.5573e-10,5.6412e-10,5.651e-10,6.059e-10,6.0948e-10,7.5765e-10,8.3686e-10,1.0082e-09,1.0165e-09,1.0688e-09,1.4718e-09,1.4856e-09,1.7282e-09,2.0511e-09,2.7792e-09,2.8919e-09,3.2387e-09,3.3217e-09,3.5407e-09,3.9396e-09,4.6367e-09,4.6572e-09,6.7188e-09,1.0146e-08,1.0597e-08,1.1119e-08,1.1287e-08,1.4414e-08,1.674e-08,2.7638e-08,2.8367e-08,2.9894e-08,3.2651e-08,4.5206e-08,6.3213e-08,9.0815e-08,1.0118e-07,1.0789e-07,1.2693e-07,1.7571e-07,2.0246e-07,2.4305e-07,3.2106e-07,4.0729e-07,4.2504e-07,6.6793e-07,7.0845e-07,7.2383e-07,8.0322e-07,8.3707e-07,1.161e-06,1.3342e-06,1.3887e-06,1.3943e-06,1.5161e-06,1.6966e-06,1.7871e-06,1.8288e-06,2.7307e-06,2.732e-06,3.8973e-06,5.8094e-06,8.3456e-06,1.1588e-05,1.3333e-05,1.383e-05,1.5061e-05,1.6222e-05,1.9301e-05,1.9672e-05,2.7366e-05,2.9718e-05,3.5016e-05,4.2842e-05,4.836e-05,4.9024e-05,5.4063e-05,5.771e-05,6.7677e-05,8.5536e-05,8.7422e-05,9.6785e-05,0.00011349,0.00012901,0.00012978,0.00020035,0.00021483,0.00022213,0.00024192,0.00025283,0.00027095,0.00030233,0.00031593,0.00033583,0.00037031,0.00041981,0.00047267,0.00047836,0.00055205,0.00060612,0.00065779,0.00079074,0.00085935,0.00088561,0.00098485,0.00099118,0.0010381,0.0010595,0.0013828,0.0014792,0.0015182,0.0017089,0.0018293,0.0018482,0.002163,0.0029076,0.0031702,0.0033138,0.0036712,0.0037036,0.0041503,0.004202,0.0048564,0.0052825,0.0062402,0.0063341,0.0064233,0.0064737,0.0066407,0.0067798,0.006866,0.0078341,0.0080514,0.010393,0.011302,0.011942,0.012204,0.014582,0.014627,0.015497,0.015919,0.018196,0.018272,0.018454,0.020349,0.020902,0.021102,0.02172,0.022541,0.023341,0.023767,0.028318,0.028491,0.031171,0.035594,0.040228,0.047503,0.047614,0.050451,0.05422,0.059548,0.059609,0.061552,0.07139,0.073846,0.07412,0.087694,0.09092,0.092821,0.09887,0.10516,0.11755,0.11958,0.12978,0.15494,0.15529,0.1575,0.16209,0.16575,0.17035,0.17589,0.23347,0.25039,0.27779,0.29927,0.30035,0.30285,0.33676,0.34495,0.34563,0.38024,0.44209,0.44412,0.46307,0.46703,0.51161,0.52428,0.55213,0.56675,0.58294,0.5861,0.60536,0.60876,0.61037,0.65396,0.66691,0.67234,0.68988,0.69538,0.72034,0.72597,0.73722,0.76474,0.765,0.77793,0.78224,0.78225,0.80979,0.81064,0.82161,0.83296,0.85675,0.87698,0.89075,0.91123,0.92853,0.94844,0.94919,0.96235,0.97324,0.97882,0.99061,0.99319,0.99715,0.9987,1,0.99999,0.99986,0.99911,0.9954,0.98862,0.98384,0.97825,0.97502,0.97455,0.96808,0.95976,0.92894,0.91943,0.91398,0.90141,0.90132,0.88825,0.88657,0.87728,0.86961,0.84253,0.83846,0.81588,0.79402,0.71812,0.70328,0.69606,0.67703,0.65903,0.65216,0.63842,0.62852,0.61624,0.59593,0.59582,0.5594,0.54977,0.54777,0.5467,0.51025,0.50942,0.50578,0.50305,0.49598,0.48433,0.47397,0.42894,0.33975,0.31528,0.31317,0.31143,0.30583,0.30274,0.27435,0.25656,0.24409,0.23728,0.22346,0.21215,0.21009,0.19497,0.18676,0.17706,0.16224,0.14411,0.14301,0.13727,0.13338,0.13166,0.11436,0.10994,0.091505,0.086852,0.079117,0.075209,0.073977,0.06755,0.066754,0.065038,0.061416,0.054967 1,2.1064e-30,3.7447e-30,3.854e-30,4.5826e-30,5.2351e-30,6.2347e-30,8.7468e-30,1.9506e-29,3.2403e-29,3.5027e-29,5.2374e-29,5.5923e-29,7.2552e-29,1.364e-28,1.6618e-28,1.9059e-28,3.4461e-28,3.8141e-28,4.268e-28,6.2222e-28,6.4791e-28,6.6316e-28,8.8323e-28,1.0458e-27,1.0515e-27,1.4533e-27,1.4967e-27,1.7317e-27,1.7653e-27,1.7985e-27,4.8238e-27,1.229e-26,1.3369e-26,1.7583e-26,2.2443e-26,2.7116e-26,3.3927e-26,4.3999e-26,6.9428e-26,8.9181e-26,1.3383e-25,2.2257e-25,2.3324e-25,2.5766e-25,2.8246e-25,4.5524e-25,4.5557e-25,1.4119e-24,1.5348e-24,1.6076e-24,2.2508e-24,2.3072e-24,4.4531e-24,5.7604e-24,6.4106e-24,8.1033e-24,9.4023e-24,1.2129e-23,1.3124e-23,2.402e-23,3.4818e-23,1.1089e-22,1.5204e-22,1.6893e-22,2.0393e-22,3.4145e-22,3.7939e-22,4.1653e-22,6.4514e-22,9.7068e-22,1.1287e-21,1.2768e-21,1.9938e-21,3.7802e-21,7.3848e-21,1.1563e-20,1.27e-20,2.9208e-20,3.8889e-20,4.4433e-20,4.7137e-20,5.9863e-20,1.591e-19,1.6416e-19,1.9448e-19,2.5432e-19,2.6805e-19,3.9253e-19,1.1134e-18,1.1288e-18,1.5112e-18,1.6777e-18,5.4754e-18,7.3529e-18,7.5138e-18,9.7684e-18,1.3918e-17,1.4015e-17,1.4421e-17,1.784e-17,1.7874e-17,2.1665e-17,2.3335e-17,6.6957e-17,1.0584e-16,1.0749e-16,1.8009e-16,2.0666e-16,2.5557e-16,2.8333e-16,3.0107e-16,3.2198e-16,3.291e-16,3.4887e-16,4.4106e-16,4.5324e-16,4.7938e-16,5.0192e-16,7.091e-16,1.0458e-15,1.7178e-15,2.0688e-15,3.06e-15,4.7235e-15,5.6653e-15,6.2212e-15,1.7337e-14,1.9497e-14,2.1252e-14,2.5202e-14,3.1279e-14,3.7692e-14,4.3837e-14,4.5028e-14,4.5792e-14,5.5351e-14,9.0832e-14,9.4186e-14,1.143e-13,1.5408e-13,1.8157e-13,1.8646e-13,4.72e-13,4.7664e-13,5.716e-13,8.1389e-13,8.6776e-13,1.1012e-12,1.1647e-12,1.7214e-12,2.2174e-12,3.9241e-12,3.9777e-12,7.5751e-12,8.1485e-12,8.3402e-12,1.2601e-11,1.2934e-11,1.4994e-11,1.8203e-11,1.9337e-11,2.0239e-11,2.4216e-11,2.4944e-11,2.5431e-11,2.9301e-11,3.0787e-11,3.1187e-11,3.5056e-11,3.656e-11,4.6098e-11,6.7522e-11,7.2249e-11,7.3561e-11,8.7137e-11,9.3436e-11,1.2397e-10,2.0263e-10,2.3566e-10,2.9892e-10,3.2611e-10,4.1483e-10,5.262e-10,5.3648e-10,5.4459e-10,5.4553e-10,5.8495e-10,5.8842e-10,7.316e-10,8.0815e-10,9.7371e-10,9.8181e-10,1.0323e-09,1.422e-09,1.4353e-09,1.6699e-09,1.9822e-09,2.6866e-09,2.7956e-09,3.1312e-09,3.2115e-09,3.4235e-09,3.8094e-09,4.4841e-09,4.504e-09,6.4998e-09,9.8193e-09,1.0256e-08,1.0762e-08,1.0924e-08,1.3954e-08,1.6208e-08,2.6771e-08,2.7478e-08,2.8959e-08,3.1632e-08,4.3808e-08,6.1277e-08,8.8065e-08,9.8123e-08,1.0464e-07,1.2312e-07,1.7049e-07,1.9648e-07,2.3591e-07,3.1171e-07,3.9553e-07,4.1279e-07,6.4896e-07,6.8838e-07,7.0334e-07,7.8057e-07,8.135e-07,1.1287e-06,1.2972e-06,1.3502e-06,1.3557e-06,1.4743e-06,1.6501e-06,1.7381e-06,1.7788e-06,2.657e-06,2.6583e-06,3.7936e-06,5.6574e-06,8.1305e-06,1.1293e-05,1.2996e-05,1.3481e-05,1.4683e-05,1.5816e-05,1.8821e-05,1.9184e-05,2.6697e-05,2.8994e-05,3.417e-05,4.1816e-05,4.7209e-05,4.7859e-05,5.2784e-05,5.6349e-05,6.6095e-05,8.356e-05,8.5405e-05,9.4563e-05,0.00011091,0.00012609,0.00012685,0.00019593,0.00021012,0.00021726,0.00023664,0.00024733,0.00026509,0.00029583,0.00030915,0.00032865,0.00036244,0.00041096,0.00046278,0.00046836,0.00054062,0.00059365,0.00064433,0.00077476,0.00084208,0.00086785,0.00096526,0.00097147,0.0010175,0.0010385,0.001356,0.0014506,0.001489,0.0016762,0.0017945,0.0018131,0.0021224,0.0028544,0.0031126,0.0032538,0.0036054,0.0036372,0.0040767,0.0041275,0.0047715,0.0051909,0.0061337,0.0062261,0.006314,0.0063636,0.0065281,0.0066651,0.0067499,0.0077034,0.0079175,0.010225,0.01112,0.011752,0.01201,0.014355,0.014399,0.015257,0.015674,0.01792,0.017995,0.018174,0.020045,0.020591,0.020788,0.021397,0.022208,0.022998,0.023419,0.027913,0.028084,0.03073,0.0351,0.039681,0.046873,0.046983,0.049789,0.053517,0.058788,0.058849,0.060772,0.070509,0.072941,0.073212,0.086655,0.089851,0.091734,0.097727,0.10396,0.11624,0.11826,0.12837,0.15333,0.15368,0.15588,0.16043,0.16406,0.16863,0.17412,0.23133,0.24815,0.27539,0.29676,0.29784,0.30033,0.33408,0.34224,0.34292,0.37739,0.43905,0.44107,0.45998,0.46392,0.50842,0.52107,0.54889,0.56349,0.57968,0.58283,0.60209,0.60548,0.60709,0.65071,0.66367,0.6691,0.68667,0.69218,0.71719,0.72283,0.73411,0.76172,0.76197,0.77495,0.77928,0.77929,0.80694,0.8078,0.81883,0.83023,0.85417,0.87455,0.88843,0.9091,0.92659,0.94677,0.94752,0.9609,0.97201,0.97772,0.98987,0.99254,0.99673,0.99841,0.99999,1,0.99994,0.99932,0.9959,0.98942,0.98478,0.97934,0.97619,0.97573,0.9694,0.96123,0.93085,0.92146,0.91606,0.90361,0.90352,0.89057,0.88891,0.8797,0.87209,0.84518,0.84113,0.81868,0.79692,0.72127,0.70646,0.69926,0.68025,0.66228,0.65542,0.64168,0.63179,0.61951,0.5992,0.59909,0.56265,0.55302,0.55101,0.54994,0.51344,0.51262,0.50898,0.50623,0.49915,0.48749,0.4771,0.43196,0.34245,0.31787,0.31575,0.314,0.30838,0.30528,0.27673,0.25885,0.24631,0.23946,0.22556,0.21418,0.2121,0.19688,0.18861,0.17884,0.16391,0.14565,0.14454,0.13875,0.13483,0.1331,0.11565,0.1112,0.092591,0.087894,0.080083,0.076137,0.074893,0.068401,0.067596,0.065863,0.062203,0.055685 1,1.8494e-30,3.2897e-30,3.3858e-30,4.0266e-30,4.6005e-30,5.4798e-30,7.6902e-30,1.7163e-29,2.8525e-29,3.0837e-29,4.6127e-29,4.9257e-29,6.3919e-29,1.2025e-28,1.4653e-28,1.6808e-28,3.0407e-28,3.3658e-28,3.7667e-28,5.4935e-28,5.7205e-28,5.8552e-28,7.8006e-28,9.2376e-28,9.2886e-28,1.2841e-27,1.3225e-27,1.5305e-27,1.5602e-27,1.5896e-27,4.2676e-27,1.0883e-26,1.184e-26,1.5576e-26,1.9886e-26,2.4032e-26,3.0074e-26,3.9014e-26,6.1591e-26,7.9133e-26,1.188e-25,1.9769e-25,2.0717e-25,2.2888e-25,2.5094e-25,4.0464e-25,4.0493e-25,1.2565e-24,1.366e-24,1.4308e-24,2.004e-24,2.0542e-24,3.9677e-24,5.1339e-24,5.7141e-24,7.2247e-24,8.3842e-24,1.0818e-23,1.1707e-23,2.1441e-23,3.1092e-23,9.9151e-23,1.36e-22,1.5112e-22,1.8247e-22,3.0568e-22,3.3968e-22,3.7298e-22,5.7797e-22,8.7002e-22,1.0118e-21,1.1447e-21,1.7885e-21,3.3935e-21,6.6343e-21,1.0393e-20,1.1416e-20,2.6282e-20,3.5005e-20,4.0002e-20,4.2439e-20,5.3911e-20,1.4345e-19,1.4802e-19,1.7539e-19,2.2943e-19,2.4183e-19,3.543e-19,1.0063e-18,1.0202e-18,1.3663e-18,1.517e-18,4.9582e-18,6.6607e-18,6.8066e-18,8.852e-18,1.2618e-17,1.2706e-17,1.3075e-17,1.6178e-17,1.6209e-17,1.9652e-17,2.1169e-17,6.0824e-17,9.6201e-17,9.7701e-17,1.638e-16,1.8801e-16,2.3257e-16,2.5786e-16,2.7404e-16,2.9309e-16,2.9958e-16,3.176e-16,4.0165e-16,4.1276e-16,4.366e-16,4.5715e-16,6.4615e-16,9.5344e-16,1.5672e-15,1.8879e-15,2.7939e-15,4.3152e-15,5.1769e-15,5.6855e-15,1.5867e-14,1.7847e-14,1.9455e-14,2.3077e-14,2.865e-14,3.4533e-14,4.0172e-14,4.1265e-14,4.1967e-14,5.0741e-14,8.3325e-14,8.6407e-14,1.0489e-13,1.4145e-13,1.6673e-13,1.7123e-13,4.3403e-13,4.3831e-13,5.2576e-13,7.4902e-13,7.9867e-13,1.0139e-12,1.0725e-12,1.586e-12,2.0438e-12,3.6199e-12,3.6695e-12,6.9951e-12,7.5254e-12,7.7028e-12,1.1645e-11,1.1954e-11,1.3861e-11,1.6832e-11,1.7882e-11,1.8718e-11,2.2403e-11,2.3078e-11,2.3528e-11,2.7115e-11,2.8493e-11,2.8863e-11,3.245e-11,3.3845e-11,4.269e-11,6.2569e-11,6.6956e-11,6.8174e-11,8.0779e-11,8.6628e-11,1.1499e-10,1.8811e-10,2.1882e-10,2.7767e-10,3.0298e-10,3.8556e-10,4.8927e-10,4.9884e-10,5.0639e-10,5.0728e-10,5.44e-10,5.4722e-10,6.8063e-10,7.5198e-10,9.0633e-10,9.1388e-10,9.61e-10,1.3245e-09,1.3369e-09,1.5558e-09,1.8473e-09,2.5051e-09,2.6069e-09,2.9205e-09,2.9955e-09,3.1936e-09,3.5543e-09,4.185e-09,4.2037e-09,6.0704e-09,9.1773e-09,9.5864e-09,1.006e-08,1.0212e-08,1.305e-08,1.5163e-08,2.5068e-08,2.5731e-08,2.712e-08,2.9628e-08,4.1059e-08,5.7469e-08,8.265e-08,9.2109e-08,9.8239e-08,1.1563e-07,1.6022e-07,1.8469e-07,2.2184e-07,2.9328e-07,3.7233e-07,3.886e-07,6.1152e-07,6.4873e-07,6.6286e-07,7.3581e-07,7.6692e-07,1.0648e-06,1.2241e-06,1.2743e-06,1.2795e-06,1.3917e-06,1.5579e-06,1.6413e-06,1.6797e-06,2.5113e-06,2.5125e-06,3.5883e-06,5.356e-06,7.7037e-06,1.0708e-05,1.2327e-05,1.2788e-05,1.3931e-05,1.5009e-05,1.7869e-05,1.8213e-05,2.5366e-05,2.7555e-05,3.2487e-05,3.9777e-05,4.492e-05,4.554e-05,5.0238e-05,5.3641e-05,6.2943e-05,7.9622e-05,8.1385e-05,9.0136e-05,0.00010576,0.00012028,0.000121,0.00018712,0.0002007,0.00020755,0.00022611,0.00023635,0.00025337,0.00028284,0.00029561,0.00031431,0.00034672,0.00039327,0.00044302,0.00044837,0.00051776,0.0005687,0.00061739,0.00074277,0.00080751,0.0008323,0.00092601,0.00093198,0.00097632,0.00099649,0.0013022,0.0013933,0.0014303,0.0016108,0.0017248,0.0017427,0.002041,0.0027476,0.002997,0.0031334,0.0034732,0.0035039,0.0039287,0.0039779,0.0046008,0.0050066,0.0059194,0.0060089,0.006094,0.006142,0.0063014,0.0064341,0.0065162,0.0074403,0.0076478,0.0098855,0.010755,0.011368,0.011619,0.013896,0.013939,0.014773,0.015178,0.017362,0.017435,0.01761,0.01943,0.019961,0.020153,0.020746,0.021535,0.022305,0.022714,0.027093,0.027259,0.029839,0.034102,0.038573,0.045598,0.045705,0.048448,0.052093,0.057248,0.057308,0.059189,0.068721,0.071103,0.071369,0.084544,0.087678,0.089525,0.095405,0.10152,0.11358,0.11556,0.1255,0.15005,0.1504,0.15256,0.15704,0.16062,0.16511,0.17053,0.22695,0.24357,0.2705,0.29164,0.29271,0.29517,0.3286,0.33669,0.33736,0.37155,0.4328,0.43481,0.45362,0.45754,0.50185,0.51446,0.54221,0.55678,0.57295,0.5761,0.59534,0.59874,0.60035,0.64399,0.65697,0.66242,0.68004,0.68557,0.71067,0.71634,0.72767,0.75544,0.7557,0.76877,0.77313,0.77314,0.80103,0.8019,0.81304,0.82457,0.8488,0.86947,0.88358,0.90464,0.92252,0.94323,0.94401,0.95783,0.96937,0.97535,0.98823,0.99113,0.99577,0.99772,0.99986,0.99994,1,0.99967,0.99684,0.99096,0.98664,0.98151,0.97851,0.97807,0.97203,0.96418,0.93472,0.92555,0.92028,0.90809,0.90801,0.8953,0.89367,0.88461,0.87712,0.8506,0.8466,0.82441,0.80287,0.72774,0.713,0.70583,0.68688,0.66896,0.66211,0.6484,0.63852,0.62625,0.60595,0.60584,0.56937,0.55972,0.55771,0.55664,0.52005,0.51922,0.51557,0.51282,0.50571,0.494,0.48357,0.4382,0.34805,0.32325,0.32111,0.31934,0.31367,0.31053,0.2817,0.26361,0.25092,0.24399,0.22992,0.21839,0.21628,0.20086,0.19247,0.18256,0.16741,0.14886,0.14773,0.14184,0.13786,0.1361,0.11835,0.11381,0.094859,0.090071,0.082105,0.078079,0.076809,0.070182,0.06936,0.06759,0.063851,0.05719 1,1.3684e-30,2.4373e-30,2.5086e-30,2.9845e-30,3.4109e-30,4.0644e-30,5.7082e-30,1.2762e-29,2.1235e-29,2.296e-29,3.4376e-29,3.6713e-29,4.767e-29,8.9806e-29,1.0948e-28,1.2562e-28,2.2758e-28,2.5197e-28,2.8205e-28,4.1171e-28,4.2876e-28,4.3889e-28,5.8508e-28,6.9314e-28,6.9697e-28,9.6429e-28,9.9318e-28,1.1497e-27,1.1721e-27,1.1942e-27,3.2136e-27,8.2129e-27,8.937e-27,1.1765e-26,1.5029e-26,1.817e-26,2.2751e-26,2.9531e-26,4.6672e-26,6.0001e-26,9.0166e-26,1.5022e-25,1.5744e-25,1.7399e-25,1.908e-25,3.0801e-25,3.0824e-25,9.591e-25,1.0429e-24,1.0925e-24,1.5314e-24,1.5699e-24,3.0372e-24,3.9324e-24,4.378e-24,5.5386e-24,6.4299e-24,8.3019e-24,8.9857e-24,1.6482e-23,2.3923e-23,7.6515e-23,1.0503e-22,1.1674e-22,1.4103e-22,2.3658e-22,2.6297e-22,2.8881e-22,4.4805e-22,6.7517e-22,7.8551e-22,8.8899e-22,1.3906e-21,2.6429e-21,5.1762e-21,8.1188e-21,8.9202e-21,2.0581e-20,2.7434e-20,3.1361e-20,3.3277e-20,4.2301e-20,1.1286e-19,1.1646e-19,1.3806e-19,1.8074e-19,1.9053e-19,2.7945e-19,7.9598e-19,8.0702e-19,1.0817e-18,1.2014e-18,3.94e-18,5.2974e-18,5.4138e-18,7.046e-18,1.0054e-17,1.0124e-17,1.0419e-17,1.29e-17,1.2925e-17,1.5679e-17,1.6893e-17,4.869e-17,7.7114e-17,7.832e-17,1.3151e-16,1.5101e-16,1.8692e-16,2.0732e-16,2.2036e-16,2.3573e-16,2.4096e-16,2.5551e-16,3.2336e-16,3.3232e-16,3.5158e-16,3.6818e-16,5.2095e-16,7.6962e-16,1.267e-15,1.5271e-15,2.2628e-15,3.4997e-15,4.201e-15,4.6151e-15,1.2922e-14,1.454e-14,1.5855e-14,1.8816e-14,2.3377e-14,2.8195e-14,3.2815e-14,3.3711e-14,3.4286e-14,4.148e-14,6.8229e-14,7.0761e-14,8.5952e-14,1.1603e-13,1.3684e-13,1.4055e-13,3.5737e-13,3.609e-13,4.3319e-13,6.1789e-13,6.5899e-13,8.3725e-13,8.8578e-13,1.3117e-12,1.6918e-12,3.0026e-12,3.0439e-12,5.8159e-12,6.2585e-12,6.4064e-12,9.6997e-12,9.9578e-12,1.1553e-11,1.4039e-11,1.4918e-11,1.5618e-11,1.8705e-11,1.9271e-11,1.9648e-11,2.2655e-11,2.3811e-11,2.4122e-11,2.7131e-11,2.8301e-11,3.5729e-11,5.2441e-11,5.6132e-11,5.7157e-11,6.7768e-11,7.2694e-11,9.66e-11,1.5832e-10,1.8428e-10,2.3405e-10,2.5547e-10,3.254e-10,4.1332e-10,4.2144e-10,4.2784e-10,4.2859e-10,4.5974e-10,4.6248e-10,5.7573e-10,6.3633e-10,7.6751e-10,7.7393e-10,8.1399e-10,1.1233e-09,1.1339e-09,1.3204e-09,1.5688e-09,2.1301e-09,2.2171e-09,2.4849e-09,2.549e-09,2.7182e-09,3.0266e-09,3.5661e-09,3.582e-09,5.1806e-09,7.8458e-09,8.197e-09,8.6037e-09,8.7342e-09,1.1173e-08,1.299e-08,2.1523e-08,2.2095e-08,2.3293e-08,2.5457e-08,3.5329e-08,4.9523e-08,7.1338e-08,7.9542e-08,8.4861e-08,9.9956e-08,1.3871e-07,1.6e-07,1.9235e-07,2.5462e-07,3.2361e-07,3.3782e-07,5.3276e-07,5.6535e-07,5.7772e-07,6.4161e-07,6.6888e-07,9.3018e-07,1.0701e-06,1.1142e-06,1.1187e-06,1.2173e-06,1.3635e-06,1.4368e-06,1.4706e-06,2.2031e-06,2.2042e-06,3.1538e-06,4.7172e-06,6.7979e-06,9.4658e-06,1.0905e-05,1.1315e-05,1.2332e-05,1.3292e-05,1.5839e-05,1.6146e-05,2.2529e-05,2.4484e-05,2.8893e-05,3.5417e-05,4.0025e-05,4.058e-05,4.4792e-05,4.7844e-05,5.6193e-05,7.1183e-05,7.2768e-05,8.0642e-05,9.4708e-05,0.0001078,0.00010845,0.00016815,0.00018044,0.00018663,0.00020344,0.00021271,0.00022812,0.00025483,0.00026642,0.00028338,0.0003128,0.00035508,0.00040031,0.00040518,0.00046832,0.00051472,0.0005591,0.00067348,0.00073259,0.00075524,0.00084088,0.00084635,0.00088689,0.00090534,0.0011853,0.0012689,0.0013028,0.0014684,0.0015731,0.0015896,0.0018638,0.0025145,0.0027446,0.0028705,0.0031842,0.0032126,0.0036053,0.0036508,0.0042272,0.0046031,0.0054496,0.0055327,0.0056117,0.0056563,0.0058042,0.0059275,0.0060038,0.0068625,0.0070555,0.0091395,0.0099504,0.010522,0.010757,0.012885,0.012925,0.013706,0.014085,0.016131,0.0162,0.016363,0.01807,0.018569,0.018749,0.019307,0.020048,0.020771,0.021156,0.025276,0.025433,0.027865,0.031887,0.036111,0.042762,0.042863,0.045463,0.04892,0.053816,0.053873,0.05566,0.06473,0.066999,0.067253,0.079821,0.082815,0.08458,0.090203,0.09606,0.10762,0.10952,0.11906,0.14267,0.14301,0.14509,0.14941,0.15286,0.1572,0.16243,0.21705,0.23319,0.2594,0.28001,0.28105,0.28346,0.31613,0.32404,0.32471,0.35823,0.4185,0.42048,0.43904,0.44292,0.48677,0.49927,0.52683,0.54132,0.55742,0.56057,0.57976,0.58315,0.58476,0.62843,0.64146,0.64693,0.66464,0.6702,0.69549,0.70122,0.71267,0.74079,0.74105,0.75432,0.75875,0.75876,0.78717,0.78805,0.79943,0.81123,0.83612,0.85745,0.87206,0.89399,0.91274,0.93467,0.9355,0.95031,0.96286,0.96944,0.98401,0.98741,0.99309,0.99566,0.99911,0.99932,0.99967,1,0.99855,0.99407,0.99048,0.98607,0.98345,0.98306,0.97768,0.97058,0.94328,0.93465,0.92967,0.9181,0.91802,0.90589,0.90433,0.89565,0.88845,0.86285,0.85897,0.83741,0.81639,0.74257,0.728,0.7209,0.70213,0.68433,0.67753,0.66389,0.65405,0.64181,0.62154,0.62143,0.58493,0.57525,0.57323,0.57216,0.53539,0.53456,0.53088,0.52811,0.52095,0.50915,0.49862,0.45277,0.36118,0.33588,0.33369,0.33188,0.32608,0.32288,0.29337,0.27482,0.26179,0.25467,0.2402,0.22833,0.22616,0.21026,0.2016,0.19136,0.17569,0.15647,0.15529,0.14919,0.14505,0.14322,0.12476,0.12004,0.10027,0.095267,0.086935,0.08272,0.08139,0.074442,0.07358,0.071723,0.067799,0.060798 1,7.2718e-31,1.2986e-30,1.3368e-30,1.5916e-30,1.8202e-30,2.1707e-30,3.0533e-30,6.8521e-30,1.1429e-29,1.2362e-29,1.8543e-29,1.981e-29,2.5753e-29,4.8662e-29,5.938e-29,6.8178e-29,1.2386e-28,1.372e-28,1.5367e-28,2.2471e-28,2.3406e-28,2.3962e-28,3.1988e-28,3.7926e-28,3.8137e-28,5.2846e-28,5.4438e-28,6.3063e-28,6.4295e-28,6.5516e-28,1.7715e-27,4.5481e-27,4.9512e-27,6.5266e-27,8.3475e-27,1.0101e-26,1.2662e-26,1.6457e-26,2.6069e-26,3.3556e-26,5.0528e-26,8.4398e-26,8.8478e-26,9.7824e-26,1.0732e-25,1.7368e-25,1.7381e-25,5.4394e-25,5.9172e-25,6.2003e-25,8.7063e-25,8.9262e-25,1.7328e-24,2.2465e-24,2.5024e-24,3.1697e-24,3.6826e-24,4.7611e-24,5.1554e-24,9.4862e-24,1.3796e-23,4.4398e-23,6.1049e-23,6.7895e-23,8.2101e-23,1.3811e-22,1.536e-22,1.6878e-22,2.6247e-22,3.9639e-22,4.6156e-22,5.2271e-22,8.1963e-22,1.5633e-21,3.0732e-21,4.8324e-21,5.3122e-21,1.2315e-20,1.6442e-20,1.8809e-20,1.9965e-20,2.5414e-20,6.8186e-20,7.0377e-20,8.3511e-20,1.0949e-19,1.1546e-19,1.6972e-19,4.8641e-19,4.9319e-19,6.622e-19,7.3592e-19,2.4307e-18,3.2739e-18,3.3463e-18,4.3621e-18,6.2376e-18,6.2817e-18,6.4657e-18,8.0158e-18,8.0313e-18,9.7541e-18,1.0514e-17,3.0503e-17,4.8448e-17,4.921e-17,8.2902e-17,9.5275e-17,1.1809e-16,1.3106e-16,1.3936e-16,1.4915e-16,1.5248e-16,1.6174e-16,2.05e-16,2.1072e-16,2.2301e-16,2.3361e-16,3.3128e-16,4.9064e-16,8.1032e-16,9.7788e-16,1.4527e-15,2.2532e-15,2.708e-15,2.9768e-15,8.3924e-15,9.4506e-15,1.0311e-14,1.2251e-14,1.5243e-14,1.8408e-14,2.1447e-14,2.2037e-14,2.2415e-14,2.7154e-14,4.4817e-14,4.6492e-14,5.6549e-14,7.6496e-14,9.0318e-14,9.2783e-14,2.3748e-13,2.3985e-13,2.8826e-13,4.1221e-13,4.3983e-13,5.5977e-13,5.9246e-13,8.7986e-13,1.1369e-12,2.0263e-12,2.0544e-12,3.9441e-12,4.2466e-12,4.3478e-12,6.6033e-12,6.7804e-12,7.8752e-12,9.5844e-12,1.0189e-11,1.0671e-11,1.2798e-11,1.3188e-11,1.3448e-11,1.5523e-11,1.6321e-11,1.6536e-11,1.8616e-11,1.9425e-11,2.4568e-11,3.6167e-11,3.8733e-11,3.9446e-11,4.6831e-11,5.0263e-11,6.6943e-11,1.1014e-10,1.2836e-10,1.6335e-10,1.7842e-10,2.2771e-10,2.8979e-10,2.9554e-10,3.0006e-10,3.0059e-10,3.2263e-10,3.2456e-10,4.0477e-10,4.4774e-10,5.4088e-10,5.4545e-10,5.7393e-10,7.9415e-10,8.0166e-10,9.3472e-10,1.1123e-09,1.5141e-09,1.5764e-09,1.7686e-09,1.8146e-09,1.9362e-09,2.1578e-09,2.546e-09,2.5575e-09,3.7107e-09,5.6401e-09,5.8948e-09,6.1899e-09,6.2847e-09,8.0574e-09,9.3802e-09,1.5613e-08,1.6031e-08,1.6908e-08,1.8494e-08,2.5743e-08,3.6198e-08,5.2321e-08,5.8398e-08,6.2341e-08,7.3544e-08,1.0237e-07,1.1825e-07,1.4241e-07,1.8903e-07,2.4081e-07,2.515e-07,3.9842e-07,4.2304e-07,4.3239e-07,4.8072e-07,5.0136e-07,6.9956e-07,8.0593e-07,8.3947e-07,8.4295e-07,9.1804e-07,1.0295e-06,1.0854e-06,1.1112e-06,1.6718e-06,1.6726e-06,2.4023e-06,3.6088e-06,5.2214e-06,7.2974e-06,8.4203e-06,8.7406e-06,9.5355e-06,1.0286e-05,1.2282e-05,1.2523e-05,1.7541e-05,1.9081e-05,2.2561e-05,2.7722e-05,3.1374e-05,3.1815e-05,3.5159e-05,3.7584e-05,4.4229e-05,5.6189e-05,5.7456e-05,6.3754e-05,7.5025e-05,8.5531e-05,8.6055e-05,0.00013418,0.00014411,0.00014913,0.00016273,0.00017025,0.00018276,0.00020445,0.00021387,0.00022768,0.00025164,0.00028615,0.00032312,0.0003271,0.00037883,0.0004169,0.00045337,0.00054754,0.00059631,0.00061501,0.0006858,0.00069032,0.00072387,0.00073915,0.00097148,0.001041,0.0010693,0.0012074,0.0012948,0.0013086,0.001538,0.0020845,0.0022783,0.0023845,0.0026495,0.0026735,0.0030058,0.0030443,0.0035334,0.0038529,0.0045742,0.0046451,0.0047126,0.0047506,0.004877,0.0049823,0.0050475,0.0057826,0.005948,0.0077395,0.0084387,0.0089326,0.0091351,0.010979,0.011014,0.011691,0.012021,0.013801,0.013861,0.014004,0.015494,0.01593,0.016087,0.016574,0.017223,0.017857,0.018194,0.021813,0.021952,0.024094,0.027648,0.031391,0.037305,0.037396,0.039714,0.042803,0.047186,0.047236,0.048839,0.056993,0.059037,0.059266,0.070625,0.073339,0.074941,0.080048,0.085379,0.095923,0.097662,0.1064,0.12812,0.12843,0.13035,0.13434,0.13753,0.14154,0.14638,0.19729,0.21243,0.23712,0.25661,0.2576,0.25988,0.29093,0.29847,0.2991,0.33118,0.38925,0.39117,0.40917,0.41293,0.45568,0.46792,0.49498,0.50927,0.52517,0.52828,0.54731,0.55067,0.55227,0.59582,0.60887,0.61436,0.63218,0.63779,0.66337,0.66918,0.68082,0.70953,0.7098,0.72341,0.72797,0.72798,0.75732,0.75823,0.77006,0.78236,0.80847,0.83104,0.84663,0.87025,0.89071,0.91504,0.91598,0.93278,0.94734,0.95515,0.97314,0.97758,0.98539,0.98924,0.9954,0.9959,0.99684,0.99855,1,0.99848,0.99644,0.99356,0.99172,0.99145,0.98749,0.982,0.95939,0.95194,0.94759,0.93739,0.93731,0.92647,0.92507,0.91723,0.91068,0.88714,0.88355,0.86343,0.84363,0.77291,0.75878,0.75188,0.73356,0.71612,0.70944,0.696,0.68629,0.67419,0.65407,0.65396,0.61754,0.60785,0.60583,0.60475,0.56775,0.56691,0.56319,0.56039,0.55316,0.5412,0.53052,0.48379,0.38944,0.36313,0.36085,0.35897,0.35292,0.34957,0.31869,0.29921,0.28548,0.27797,0.26266,0.25008,0.24778,0.23088,0.22165,0.21072,0.19394,0.1733,0.17203,0.16545,0.16099,0.15901,0.13903,0.13391,0.11237,0.1069,0.097768,0.09314,0.091678,0.084031,0.083081,0.081032,0.076699,0.068952 1,3.7872e-31,6.7816e-31,6.982e-31,8.3199e-31,9.5205e-31,1.1363e-30,1.601e-30,3.6066e-30,6.0302e-30,6.525e-30,9.8067e-30,1.048e-29,1.3642e-29,2.5856e-29,3.1581e-29,3.6285e-29,6.611e-29,7.3267e-29,8.2105e-29,1.2029e-28,1.2532e-28,1.2831e-28,1.7153e-28,2.0354e-28,2.0468e-28,2.8408e-28,2.9268e-28,3.3929e-28,3.4596e-28,3.5256e-28,9.5799e-28,2.4712e-27,2.6913e-27,3.5526e-27,4.5494e-27,5.5107e-27,6.9155e-27,9.0001e-27,1.429e-26,1.8418e-26,2.7791e-26,4.6542e-26,4.8804e-26,5.3987e-26,5.9259e-26,9.6135e-26,9.6205e-26,3.0287e-25,3.2962e-25,3.4548e-25,4.8597e-25,4.9832e-25,9.7071e-25,1.2602e-24,1.4046e-24,1.7814e-24,2.0713e-24,2.6816e-24,2.9049e-24,5.3626e-24,7.8149e-24,2.5309e-23,3.4861e-23,3.8793e-23,4.6959e-23,7.9218e-23,8.8156e-23,9.6919e-23,1.5108e-22,2.287e-22,2.6652e-22,3.0205e-22,4.7481e-22,9.0893e-22,1.7936e-21,2.8277e-21,3.1101e-21,7.2446e-21,9.6886e-21,1.1093e-20,1.1778e-20,1.5014e-20,4.0515e-20,4.1825e-20,4.968e-20,6.5242e-20,6.8821e-20,1.0139e-19,2.9242e-19,2.9652e-19,3.9884e-19,4.4352e-19,1.4756e-18,1.9912e-18,2.0355e-18,2.6577e-18,3.8088e-18,3.8359e-18,3.9489e-18,4.9022e-18,4.9117e-18,5.9726e-18,6.4411e-18,1.8812e-17,2.9967e-17,3.0442e-17,5.1455e-17,5.9187e-17,7.3463e-17,8.1586e-17,8.6787e-17,9.2921e-17,9.5011e-17,1.0082e-16,1.2798e-16,1.3158e-16,1.393e-16,1.4597e-16,2.0747e-16,3.0806e-16,5.1048e-16,6.168e-16,9.187e-16,1.4292e-15,1.7197e-15,1.8917e-15,5.3709e-15,6.053e-15,6.6082e-15,7.861e-15,9.7956e-15,1.1845e-14,1.3815e-14,1.4197e-14,1.4443e-14,1.7519e-14,2.9018e-14,3.011e-14,3.6674e-14,4.9717e-14,5.8769e-14,6.0385e-14,1.5561e-13,1.5717e-13,1.8914e-13,2.7118e-13,2.8949e-13,3.6908e-13,3.908e-13,5.8207e-13,7.5357e-13,1.3489e-12,1.3677e-12,2.6388e-12,2.8428e-12,2.9111e-12,4.4355e-12,4.5554e-12,5.297e-12,6.4564e-12,6.8671e-12,7.1945e-12,8.6404e-12,8.9058e-12,9.0831e-12,1.0496e-11,1.104e-11,1.1187e-11,1.2606e-11,1.3158e-11,1.6672e-11,2.4619e-11,2.638e-11,2.687e-11,3.1944e-11,3.4305e-11,4.5794e-11,7.5652e-11,8.8275e-11,1.1256e-10,1.2303e-10,1.5734e-10,2.0064e-10,2.0465e-10,2.0781e-10,2.0818e-10,2.2357e-10,2.2492e-10,2.8102e-10,3.1113e-10,3.7645e-10,3.7965e-10,3.9964e-10,5.5452e-10,5.5981e-10,6.5358e-10,7.7888e-10,1.0631e-09,1.1073e-09,1.2435e-09,1.2761e-09,1.3624e-09,1.5198e-09,1.7958e-09,1.8039e-09,2.626e-09,4.0063e-09,4.1889e-09,4.4006e-09,4.4685e-09,5.7418e-09,6.6937e-09,1.1193e-08,1.1496e-08,1.2131e-08,1.328e-08,1.8542e-08,2.6156e-08,3.7939e-08,4.2389e-08,4.5279e-08,5.3501e-08,7.4714e-08,8.6424e-08,1.0427e-07,1.3879e-07,1.7724e-07,1.8518e-07,2.9473e-07,3.1313e-07,3.2013e-07,3.563e-07,3.7175e-07,5.205e-07,6.0053e-07,6.2579e-07,6.2841e-07,6.8499e-07,7.6907e-07,8.1131e-07,8.3082e-07,1.2554e-06,1.256e-06,1.8109e-06,2.7326e-06,3.9699e-06,5.5694e-06,6.4369e-06,6.6846e-06,7.2998e-06,7.8812e-06,9.4299e-06,9.6172e-06,1.3524e-05,1.4726e-05,1.7447e-05,2.1491e-05,2.4358e-05,2.4704e-05,2.7334e-05,2.9244e-05,3.4483e-05,4.3938e-05,4.4941e-05,4.9932e-05,5.888e-05,6.7238e-05,6.7655e-05,0.0001061,0.00011406,0.00011808,0.000129,0.00013504,0.0001451,0.00016257,0.00017016,0.0001813,0.00020065,0.00022856,0.00025852,0.00026176,0.00030377,0.00033474,0.00036445,0.00044133,0.00048123,0.00049654,0.00055456,0.00055827,0.00058581,0.00059836,0.00078959,0.000847,0.00087032,0.0009845,0.0010569,0.0010683,0.0012587,0.0017141,0.0018761,0.001965,0.002187,0.0022071,0.0024861,0.0025185,0.0029302,0.0031998,0.0038098,0.0038698,0.0039269,0.0039592,0.0040663,0.0041556,0.0042109,0.0048354,0.0049761,0.0065048,0.0071034,0.0075268,0.0077006,0.0092856,0.0093157,0.0098999,0.010184,0.011723,0.011775,0.011898,0.013189,0.013568,0.013704,0.014128,0.014692,0.015243,0.015536,0.018694,0.018815,0.02069,0.023808,0.027103,0.032328,0.032408,0.034462,0.037203,0.041101,0.041146,0.042574,0.049857,0.051687,0.051892,0.062095,0.06454,0.065984,0.070594,0.075415,0.084978,0.086558,0.094513,0.11437,0.11466,0.11642,0.12008,0.12301,0.1267,0.13116,0.17832,0.19246,0.21557,0.23391,0.23484,0.23698,0.26633,0.27348,0.27408,0.3046,0.36025,0.3621,0.37946,0.38309,0.42454,0.43645,0.46289,0.47688,0.4925,0.49556,0.51431,0.51763,0.51921,0.56239,0.57539,0.58087,0.59869,0.60431,0.63002,0.63588,0.64764,0.67676,0.67703,0.6909,0.69556,0.69556,0.72565,0.72659,0.73878,0.75151,0.77867,0.80235,0.81881,0.84398,0.86602,0.89262,0.89365,0.91236,0.92886,0.93787,0.95921,0.96467,0.9746,0.97974,0.98862,0.98942,0.99096,0.99407,0.99848,1,0.99957,0.99829,0.99729,0.99713,0.99466,0.99088,0.97329,0.96711,0.96346,0.95474,0.95468,0.94525,0.94402,0.9371,0.93129,0.91007,0.9068,0.88831,0.86992,0.80295,0.78937,0.78271,0.765,0.74805,0.74153,0.72841,0.71889,0.707,0.68718,0.68707,0.65097,0.64132,0.6393,0.63823,0.6012,0.60036,0.59663,0.59381,0.58654,0.57449,0.56371,0.51631,0.41949,0.39224,0.38987,0.38791,0.38163,0.37815,0.34593,0.32552,0.3111,0.30319,0.28706,0.27376,0.27133,0.25339,0.24359,0.23195,0.21403,0.19189,0.19053,0.18345,0.17864,0.17652,0.15492,0.14937,0.12594,0.11996,0.10997,0.10489,0.10329,0.09488,0.093834,0.091577,0.086796,0.07823 1,2.6776e-31,4.8016e-31,4.9438e-31,5.8937e-31,6.7465e-31,8.0559e-31,1.136e-30,2.5643e-30,4.293e-30,4.6461e-30,6.9901e-30,7.4713e-30,9.7317e-30,1.8475e-29,2.2577e-29,2.5949e-29,4.7352e-29,5.2492e-29,5.8842e-29,8.6291e-29,8.991e-29,9.206e-29,1.2316e-28,1.4621e-28,1.4703e-28,2.0424e-28,2.1044e-28,2.4405e-28,2.4886e-28,2.5362e-28,6.9095e-28,1.7868e-27,1.9464e-27,2.5712e-27,3.2948e-27,3.993e-27,5.0139e-27,6.53e-27,1.0381e-26,1.3388e-26,2.0225e-26,3.3918e-26,3.5571e-26,3.9359e-26,4.3213e-26,7.0197e-26,7.0249e-26,2.2185e-25,2.415e-25,2.5315e-25,3.5644e-25,3.6551e-25,7.1333e-25,9.2677e-25,1.0332e-24,1.3113e-24,1.5253e-24,1.9762e-24,2.1412e-24,3.9597e-24,5.7766e-24,1.877e-23,2.5878e-23,2.8806e-23,3.4889e-23,5.8946e-23,6.5617e-23,7.216e-23,1.1263e-22,1.707e-22,1.9902e-22,2.2563e-22,3.5516e-22,6.812e-22,1.347e-21,2.1264e-21,2.3395e-21,5.4634e-21,7.313e-21,8.3761e-21,8.8956e-21,1.1348e-20,3.0716e-20,3.1712e-20,3.7688e-20,4.9535e-20,5.2261e-20,7.7087e-20,2.2307e-19,2.2621e-19,3.0455e-19,3.3878e-19,1.1315e-18,1.5283e-18,1.5624e-18,2.0418e-18,2.9296e-18,2.9505e-18,3.0377e-18,3.7737e-18,3.781e-18,4.6007e-18,4.9628e-18,1.4546e-17,2.3207e-17,2.3576e-17,3.9921e-17,4.5941e-17,5.7064e-17,6.3396e-17,6.7452e-17,7.2236e-17,7.3866e-17,7.8399e-17,9.9601e-17,1.0241e-16,1.0844e-16,1.1365e-16,1.6173e-16,2.4047e-16,3.9918e-16,4.8264e-16,7.1988e-16,1.1216e-15,1.3505e-15,1.4861e-15,4.2351e-15,4.775e-15,5.2146e-15,6.2072e-15,7.7409e-15,9.3668e-15,1.0931e-14,1.1235e-14,1.1429e-14,1.3874e-14,2.3023e-14,2.3892e-14,2.9122e-14,3.9525e-14,4.6751e-14,4.8041e-14,1.2424e-13,1.2549e-13,1.5113e-13,2.1698e-13,2.3168e-13,2.9566e-13,3.1313e-13,4.6711e-13,6.0534e-13,1.086e-12,1.1013e-12,2.1303e-12,2.2957e-12,2.351e-12,3.5882e-12,3.6856e-12,4.2883e-12,5.2311e-12,5.5653e-12,5.8318e-12,7.009e-12,7.2252e-12,7.3696e-12,8.5214e-12,8.9648e-12,9.0842e-12,1.0241e-11,1.0692e-11,1.3561e-11,2.0057e-11,2.1499e-11,2.1899e-11,2.6054e-11,2.7988e-11,3.7407e-11,6.1929e-11,7.231e-11,9.2296e-11,1.0092e-10,1.292e-10,1.6494e-10,1.6825e-10,1.7086e-10,1.7116e-10,1.8387e-10,1.8499e-10,2.3136e-10,2.5626e-10,3.1032e-10,3.1297e-10,3.2953e-10,4.5791e-10,4.623e-10,5.4011e-10,6.4416e-10,8.8047e-10,9.1722e-10,1.0306e-09,1.0578e-09,1.1296e-09,1.2607e-09,1.4908e-09,1.4977e-09,2.1839e-09,3.3385e-09,3.4914e-09,3.6686e-09,3.7255e-09,4.7928e-09,5.5914e-09,9.373e-09,9.628e-09,1.0162e-08,1.113e-08,1.5565e-08,2.1994e-08,3.1961e-08,3.573e-08,3.8179e-08,4.515e-08,6.3158e-08,7.3111e-08,8.8293e-08,1.177e-07,1.505e-07,1.5728e-07,2.5093e-07,2.6669e-07,2.7268e-07,3.0366e-07,3.169e-07,4.4452e-07,5.1326e-07,5.3497e-07,5.3722e-07,5.8587e-07,6.582e-07,6.9456e-07,7.1136e-07,1.0773e-06,1.0779e-06,1.5573e-06,2.3555e-06,3.4295e-06,4.8208e-06,5.5765e-06,5.7924e-06,6.3289e-06,6.8361e-06,8.1883e-06,8.352e-06,1.1769e-05,1.2822e-05,1.5207e-05,1.8757e-05,2.1276e-05,2.1581e-05,2.3893e-05,2.5573e-05,3.0187e-05,3.8525e-05,3.941e-05,4.3817e-05,5.1726e-05,5.912e-05,5.9489e-05,9.3574e-05,0.00010065,0.00010422,0.00011393,0.0001193,0.00012825,0.0001438,0.00015057,0.00016049,0.00017776,0.00020267,0.00022944,0.00023233,0.00026991,0.00029764,0.00032426,0.00039322,0.00042904,0.0004428,0.00049495,0.00049829,0.00052306,0.00053435,0.00070662,0.00075842,0.00077946,0.00088257,0.00094802,0.00095834,0.0011306,0.0015435,0.0016906,0.0017714,0.0019733,0.0019916,0.0022456,0.0022751,0.0026505,0.0028965,0.0034538,0.0035088,0.003561,0.0035905,0.0036885,0.0037703,0.0038209,0.0043929,0.004522,0.0059255,0.0064761,0.0068658,0.0070259,0.008487,0.0085148,0.0090541,0.0093164,0.010739,0.010787,0.010901,0.012096,0.012447,0.012573,0.012966,0.013489,0.014,0.014272,0.017205,0.017318,0.019063,0.021968,0.025044,0.02993,0.030005,0.031928,0.034498,0.038156,0.038199,0.03954,0.04639,0.048114,0.048307,0.057932,0.060242,0.061606,0.065967,0.070532,0.079599,0.081099,0.088656,0.10756,0.10784,0.10952,0.11301,0.11581,0.11933,0.12359,0.16882,0.18242,0.20472,0.22243,0.22333,0.22541,0.25384,0.26079,0.26137,0.29104,0.34536,0.34716,0.36416,0.36772,0.40841,0.42014,0.44619,0.46001,0.47544,0.47847,0.49703,0.50033,0.50189,0.54478,0.55772,0.56318,0.58096,0.58657,0.61229,0.61815,0.62994,0.6592,0.65948,0.67344,0.67814,0.67815,0.70854,0.70949,0.72185,0.73476,0.76239,0.78658,0.80346,0.82937,0.85217,0.87988,0.88096,0.90062,0.91809,0.9277,0.95074,0.95672,0.96774,0.97354,0.98384,0.98478,0.98664,0.99048,0.99644,0.99957,1,0.99957,0.99901,0.99892,0.99725,0.99439,0.97952,0.97404,0.97076,0.96287,0.96281,0.95417,0.95303,0.94663,0.94122,0.9213,0.91821,0.90067,0.88308,0.81832,0.80507,0.79857,0.78122,0.76458,0.75818,0.74525,0.73587,0.72413,0.70451,0.70441,0.66857,0.65897,0.65696,0.65589,0.61895,0.6181,0.61437,0.61156,0.60427,0.59221,0.5814,0.53374,0.4358,0.40808,0.40567,0.40368,0.39727,0.39373,0.36084,0.33996,0.32519,0.31708,0.30051,0.28683,0.28433,0.26587,0.25575,0.24374,0.22521,0.20228,0.20087,0.19352,0.18853,0.18632,0.16386,0.15807,0.13361,0.12736,0.11689,0.11157,0.10989,0.10106,0.099957,0.097584,0.092556,0.083535 1,1.8929e-31,3.3993e-31,3.5003e-31,4.1747e-31,4.7803e-31,5.7106e-31,8.0594e-31,1.823e-30,3.0559e-30,3.3079e-30,4.9819e-30,5.3257e-30,6.9417e-30,1.32e-29,1.6139e-29,1.8556e-29,3.3913e-29,3.7604e-29,4.2164e-29,6.1895e-29,6.4498e-29,6.6043e-29,8.8422e-29,1.0502e-28,1.0561e-28,1.4683e-28,1.5129e-28,1.7552e-28,1.7899e-28,1.8242e-28,4.9828e-28,1.2918e-27,1.4075e-27,1.8606e-27,2.3858e-27,2.8928e-27,3.6347e-27,4.737e-27,7.5397e-27,9.7309e-27,1.4716e-26,2.4714e-26,2.5921e-26,2.869e-26,3.1507e-26,5.1249e-26,5.1287e-26,1.6248e-25,1.7691e-25,1.8547e-25,2.6138e-25,2.6806e-25,5.241e-25,6.8142e-25,7.5993e-25,9.6507e-25,1.1231e-24,1.4561e-24,1.578e-24,2.9232e-24,4.2691e-24,1.3918e-23,1.9207e-23,2.1386e-23,2.5916e-23,4.3853e-23,4.8831e-23,5.3714e-23,8.395e-23,1.2739e-22,1.4859e-22,1.6851e-22,2.6561e-22,5.1041e-22,1.0113e-21,1.5987e-21,1.7594e-21,4.1192e-21,5.5186e-21,6.3235e-21,6.7168e-21,8.5746e-21,2.3281e-20,2.4038e-20,2.8583e-20,3.76e-20,3.9676e-20,5.8594e-20,1.7012e-19,1.7252e-19,2.3249e-19,2.5871e-19,8.6738e-19,1.1727e-18,1.199e-18,1.5682e-18,2.2527e-18,2.2688e-18,2.3361e-18,2.9042e-18,2.9098e-18,3.5428e-18,3.8226e-18,1.1244e-17,1.7967e-17,1.8253e-17,3.0963e-17,3.5649e-17,4.4313e-17,4.9247e-17,5.2409e-17,5.6139e-17,5.741e-17,6.0946e-17,7.749e-17,7.9683e-17,8.4393e-17,8.846e-17,1.2603e-16,1.8765e-16,3.1205e-16,3.7754e-16,5.639e-16,8.7997e-16,1.0603e-15,1.167e-15,3.3383e-15,3.7656e-15,4.1136e-15,4.8996e-15,6.1151e-15,7.4047e-15,8.6458e-15,8.887e-15,9.0418e-15,1.0983e-14,1.826e-14,1.8952e-14,2.3118e-14,3.1411e-14,3.7177e-14,3.8206e-14,9.916e-14,1.0016e-13,1.2071e-13,1.7354e-13,1.8535e-13,2.3676e-13,2.508e-13,3.7471e-13,4.8609e-13,8.7409e-13,8.8639e-13,1.7192e-12,1.8531e-12,1.898e-12,2.9017e-12,2.9808e-12,3.4703e-12,4.2367e-12,4.5085e-12,4.7253e-12,5.6834e-12,5.8594e-12,5.977e-12,6.9152e-12,7.2766e-12,7.3739e-12,8.3173e-12,8.6848e-12,1.1026e-11,1.6334e-11,1.7513e-11,1.7841e-11,2.1241e-11,2.2824e-11,3.0543e-11,5.0673e-11,5.9207e-11,7.5651e-11,8.2755e-11,1.0606e-10,1.3553e-10,1.3826e-10,1.4042e-10,1.4067e-10,1.5116e-10,1.5209e-10,1.9039e-10,2.1098e-10,2.557e-10,2.579e-10,2.716e-10,3.7796e-10,3.816e-10,4.4614e-10,5.3251e-10,7.2888e-10,7.5945e-10,8.5376e-10,8.7638e-10,9.3618e-10,1.0454e-09,1.2371e-09,1.2428e-09,1.8154e-09,2.7807e-09,2.9087e-09,3.057e-09,3.1047e-09,3.9988e-09,4.6685e-09,7.8453e-09,8.0597e-09,8.5093e-09,9.3234e-09,1.306e-08,1.8485e-08,2.6912e-08,3.0102e-08,3.2176e-08,3.8083e-08,5.3363e-08,6.1819e-08,7.4727e-08,9.9765e-08,1.2773e-07,1.3351e-07,2.1354e-07,2.2702e-07,2.3215e-07,2.5867e-07,2.7001e-07,3.7943e-07,4.3845e-07,4.571e-07,4.5903e-07,5.0084e-07,5.6303e-07,5.9431e-07,6.0876e-07,9.2405e-07,9.2453e-07,1.3385e-06,2.0293e-06,2.9611e-06,4.1706e-06,4.8286e-06,5.0167e-06,5.4842e-06,5.9264e-06,7.1064e-06,7.2493e-06,1.0237e-05,1.1159e-05,1.3248e-05,1.6361e-05,1.8574e-05,1.8841e-05,2.0874e-05,2.2351e-05,2.6411e-05,3.3759e-05,3.454e-05,3.8429e-05,4.5414e-05,5.1952e-05,5.2279e-05,8.2482e-05,8.8762e-05,9.1933e-05,0.00010056,0.00010534,0.00011329,0.00012713,0.00013316,0.000142,0.00015738,0.00017961,0.00020351,0.00020609,0.00023968,0.0002645,0.00028833,0.00035014,0.00038229,0.00039463,0.00044148,0.00044448,0.00046675,0.0004769,0.00063199,0.00067868,0.00069766,0.00079071,0.00084982,0.00085914,0.0010149,0.001389,0.0015225,0.0015959,0.0017793,0.001796,0.0020271,0.002054,0.0023959,0.0026203,0.0031292,0.0031794,0.0032272,0.0032541,0.0033437,0.0034185,0.0034648,0.0039884,0.0041066,0.0053944,0.0059004,0.0062588,0.0064061,0.007752,0.0077776,0.008275,0.0085171,0.009831,0.0098754,0.0099809,0.011087,0.011411,0.011528,0.011892,0.012376,0.01285,0.013102,0.015825,0.015929,0.017552,0.020257,0.023125,0.027691,0.027761,0.029561,0.031967,0.035398,0.035438,0.036697,0.043134,0.044756,0.044938,0.05401,0.05619,0.057479,0.0616,0.065918,0.074507,0.07593,0.083102,0.10109,0.10135,0.10295,0.10628,0.10895,0.11231,0.11638,0.15971,0.17278,0.19426,0.21136,0.21223,0.21424,0.24176,0.24849,0.24906,0.27787,0.33082,0.33259,0.34921,0.3527,0.3926,0.40412,0.42976,0.44338,0.45862,0.46161,0.47997,0.48322,0.48477,0.5273,0.54017,0.54561,0.56331,0.5689,0.59459,0.60045,0.61225,0.64159,0.64187,0.65591,0.66063,0.66064,0.69128,0.69224,0.70473,0.7178,0.74586,0.7705,0.78776,0.81434,0.83786,0.86662,0.86774,0.88829,0.90669,0.91687,0.94155,0.94805,0.96013,0.96657,0.97825,0.97934,0.98151,0.98607,0.99356,0.99829,0.99957,1,0.99988,0.99985,0.99899,0.99705,0.98493,0.98017,0.97727,0.97022,0.97016,0.96233,0.96129,0.95542,0.95043,0.93186,0.92896,0.91239,0.89565,0.83323,0.82035,0.81401,0.79707,0.78078,0.7745,0.7618,0.75257,0.741,0.72163,0.72152,0.68603,0.67649,0.67449,0.67343,0.63663,0.63579,0.63206,0.62925,0.62198,0.60991,0.59909,0.55125,0.45232,0.42416,0.42171,0.41969,0.41317,0.40956,0.37604,0.35471,0.33959,0.33128,0.31429,0.30025,0.29768,0.27869,0.26827,0.25589,0.23676,0.21302,0.21157,0.20395,0.19877,0.19648,0.17314,0.16711,0.14161,0.13508,0.12413,0.11855,0.11679,0.10753,0.10637,0.10388,0.098601,0.089112 1,1.5791e-31,2.838e-31,2.9224e-31,3.4862e-31,3.9926e-31,4.7707e-31,6.736e-31,1.5253e-30,2.5585e-30,2.7698e-30,4.1737e-30,4.4622e-30,5.8181e-30,1.1073e-29,1.3542e-29,1.5573e-29,2.8483e-29,3.1588e-29,3.5424e-29,5.2027e-29,5.4218e-29,5.5519e-29,7.4361e-29,8.8338e-29,8.8835e-29,1.2356e-28,1.2732e-28,1.4775e-28,1.5067e-28,1.5356e-28,4.2002e-28,1.0903e-27,1.1881e-27,1.5712e-27,2.0154e-27,2.4444e-27,3.0722e-27,4.0054e-27,6.3792e-27,8.2361e-27,1.2463e-26,2.0945e-26,2.197e-26,2.432e-26,2.6711e-26,4.3477e-26,4.351e-26,1.3807e-25,1.5035e-25,1.5763e-25,2.2226e-25,2.2794e-25,4.461e-25,5.8023e-25,6.4719e-25,8.2217e-25,9.5699e-25,1.2412e-24,1.3453e-24,2.4944e-24,3.6448e-24,1.1904e-23,1.6435e-23,1.8302e-23,2.2186e-23,3.757e-23,4.1842e-23,4.6033e-23,7.1993e-23,1.0931e-22,1.2753e-22,1.4467e-22,2.2818e-22,4.3892e-22,8.7057e-22,1.3772e-21,1.5158e-21,3.5537e-21,4.7632e-21,5.4591e-21,5.7993e-21,7.4061e-21,2.014e-20,2.0797e-20,2.4736e-20,3.2553e-20,3.4353e-20,5.0765e-20,1.4764e-19,1.4973e-19,2.0188e-19,2.2469e-19,7.5482e-19,1.021e-18,1.0439e-18,1.366e-18,1.9635e-18,1.9776e-18,2.0364e-18,2.5324e-18,2.5374e-18,3.0904e-18,3.3349e-18,9.8273e-18,1.5716e-17,1.5967e-17,2.711e-17,3.1221e-17,3.8823e-17,4.3154e-17,4.5929e-17,4.9205e-17,5.0321e-17,5.3425e-17,6.7957e-17,6.9883e-17,7.4022e-17,7.7595e-17,1.1062e-16,1.6483e-16,2.7434e-16,3.3203e-16,4.9629e-16,7.7509e-16,9.3421e-16,1.0285e-15,2.9477e-15,3.3257e-15,3.6336e-15,4.3294e-15,5.4057e-15,6.548e-15,7.6478e-15,7.8616e-15,7.9987e-15,9.72e-15,1.6175e-14,1.679e-14,2.0488e-14,2.7853e-14,3.2977e-14,3.3892e-14,8.8127e-14,8.9019e-14,1.0732e-13,1.5441e-13,1.6494e-13,2.1078e-13,2.2331e-13,3.339e-13,4.3338e-13,7.8024e-13,7.9124e-13,1.5367e-12,1.6567e-12,1.6969e-12,2.5966e-12,2.6675e-12,3.1065e-12,3.7942e-12,4.0381e-12,4.2327e-12,5.0929e-12,5.251e-12,5.3566e-12,6.1993e-12,6.524e-12,6.6114e-12,7.4592e-12,7.7895e-12,9.8943e-12,1.467e-11,1.5732e-11,1.6026e-11,1.9088e-11,2.0514e-11,2.7469e-11,4.5624e-11,5.3326e-11,6.8173e-11,7.4591e-11,9.5646e-11,1.2229e-10,1.2477e-10,1.2671e-10,1.2694e-10,1.3643e-10,1.3727e-10,1.7193e-10,1.9056e-10,2.3106e-10,2.3305e-10,2.4547e-10,3.4185e-10,3.4515e-10,4.0367e-10,4.8202e-10,6.6025e-10,6.88e-10,7.7365e-10,7.9421e-10,8.4852e-10,9.4775e-10,1.1221e-09,1.1272e-09,1.6481e-09,2.5269e-09,2.6435e-09,2.7787e-09,2.8221e-09,3.6371e-09,4.2478e-09,7.1475e-09,7.3434e-09,7.7541e-09,8.4978e-09,1.1914e-08,1.6878e-08,2.4595e-08,2.7519e-08,2.942e-08,3.4836e-08,4.8856e-08,5.6619e-08,6.8477e-08,9.1491e-08,1.1721e-07,1.2253e-07,1.9623e-07,2.0866e-07,2.1338e-07,2.3783e-07,2.4829e-07,3.4924e-07,4.0373e-07,4.2094e-07,4.2273e-07,4.6135e-07,5.188e-07,5.4771e-07,5.6107e-07,8.5268e-07,8.5311e-07,1.2365e-06,1.8769e-06,2.7417e-06,3.8658e-06,4.4776e-06,4.6526e-06,5.0876e-06,5.4992e-06,6.5978e-06,6.7309e-06,9.515e-06,1.0375e-05,1.2324e-05,1.5231e-05,1.7298e-05,1.7547e-05,1.9447e-05,2.0828e-05,2.4625e-05,3.1502e-05,3.2233e-05,3.5875e-05,4.242e-05,4.8549e-05,4.8855e-05,7.7203e-05,8.3102e-05,8.6082e-05,9.419e-05,9.8678e-05,0.00010616,0.00011918,0.00012484,0.00013316,0.00014765,0.00016858,0.0001911,0.00019354,0.00022521,0.00024862,0.00027111,0.00032947,0.00035984,0.0003715,0.00041579,0.00041862,0.00043967,0.00044927,0.00059604,0.00064026,0.00065824,0.0007464,0.00080243,0.00081127,0.00095901,0.0013142,0.0014411,0.0015108,0.0016853,0.0017011,0.001921,0.0019466,0.0022722,0.0024859,0.0029711,0.003019,0.0030646,0.0030903,0.0031758,0.0032471,0.0032913,0.0037911,0.003904,0.0051347,0.0056188,0.0059618,0.0061027,0.0073917,0.0074163,0.007893,0.008125,0.0093852,0.0094277,0.009529,0.01059,0.010902,0.011014,0.011363,0.011829,0.012284,0.012526,0.015144,0.015245,0.016806,0.019412,0.022176,0.026581,0.026649,0.028387,0.030712,0.034028,0.034066,0.035284,0.041513,0.043084,0.04326,0.052053,0.054168,0.055418,0.059418,0.063611,0.071958,0.073341,0.080318,0.097837,0.09809,0.09965,0.1029,0.1055,0.10878,0.11275,0.1551,0.1679,0.18896,0.20574,0.20659,0.20857,0.23561,0.24223,0.24279,0.27115,0.32338,0.32512,0.34154,0.34499,0.38446,0.39587,0.42129,0.43481,0.44993,0.4529,0.47114,0.47438,0.47592,0.51824,0.53106,0.53648,0.55413,0.55971,0.58536,0.59122,0.60301,0.63238,0.63266,0.64672,0.65146,0.65147,0.68222,0.68318,0.69573,0.70888,0.73713,0.76199,0.77943,0.80634,0.83021,0.85948,0.86063,0.88163,0.90049,0.91097,0.93648,0.94323,0.95586,0.96262,0.97502,0.97619,0.97851,0.98345,0.99172,0.99729,0.99901,0.99988,1,1,0.99956,0.9981,0.98744,0.98305,0.98036,0.97374,0.97369,0.96629,0.9653,0.95972,0.95494,0.9371,0.9343,0.91825,0.90197,0.84083,0.82815,0.82191,0.8052,0.7891,0.78288,0.77032,0.76117,0.7497,0.73048,0.73037,0.69507,0.68557,0.68359,0.68253,0.64583,0.64499,0.64127,0.63847,0.6312,0.61915,0.60833,0.56043,0.46102,0.43266,0.43018,0.42814,0.42157,0.41793,0.38409,0.36253,0.34723,0.33882,0.32162,0.30739,0.30478,0.28552,0.27495,0.26237,0.24293,0.21878,0.2173,0.20954,0.20427,0.20193,0.17813,0.17198,0.14592,0.13924,0.12804,0.12233,0.12052,0.11103,0.10985,0.10729,0.10187,0.092135 1,1.5393e-31,2.7667e-31,2.849e-31,3.3988e-31,3.8926e-31,4.6514e-31,6.5679e-31,1.4874e-30,2.4953e-30,2.7014e-30,4.0709e-30,4.3523e-30,5.6752e-30,1.0802e-29,1.3211e-29,1.5193e-29,2.7792e-29,3.0821e-29,3.4566e-29,5.077e-29,5.2908e-29,5.4178e-29,7.2568e-29,8.6212e-29,8.6696e-29,1.2059e-28,1.2427e-28,1.442e-28,1.4706e-28,1.4988e-28,4.1003e-28,1.0646e-27,1.1601e-27,1.5342e-27,1.9681e-27,2.387e-27,3.0003e-27,3.9118e-27,6.2308e-27,8.0449e-27,1.2174e-26,2.0462e-26,2.1464e-26,2.376e-26,2.6097e-26,4.2482e-26,4.2513e-26,1.3493e-25,1.4694e-25,1.5406e-25,2.1724e-25,2.228e-25,4.3609e-25,5.6723e-25,6.3271e-25,8.0381e-25,9.3566e-25,1.2136e-24,1.3154e-24,2.4392e-24,3.5645e-24,1.1645e-23,1.6078e-23,1.7905e-23,2.1705e-23,3.676e-23,4.0941e-23,4.5043e-23,7.0451e-23,1.0698e-22,1.2482e-22,1.4159e-22,2.2334e-22,4.2968e-22,8.5239e-22,1.3485e-21,1.4843e-21,3.4806e-21,4.6655e-21,5.3472e-21,5.6805e-21,7.2548e-21,1.9733e-20,2.0376e-20,2.4237e-20,3.1899e-20,3.3663e-20,4.975e-20,1.4473e-19,1.4677e-19,1.979e-19,2.2027e-19,7.4018e-19,1.0013e-18,1.0238e-18,1.3397e-18,1.9258e-18,1.9397e-18,1.9973e-18,2.484e-18,2.4889e-18,3.0315e-18,3.2714e-18,9.6426e-18,1.5423e-17,1.5669e-17,2.6607e-17,3.0643e-17,3.8106e-17,4.2359e-17,4.5083e-17,4.8299e-17,4.9395e-17,5.2443e-17,6.6712e-17,6.8603e-17,7.2667e-17,7.6176e-17,1.0861e-16,1.6184e-16,2.694e-16,3.2607e-16,4.8744e-16,7.6135e-16,9.177e-16,1.0103e-15,2.8965e-15,3.268e-15,3.5707e-15,4.2545e-15,5.3126e-15,6.4355e-15,7.5167e-15,7.7269e-15,7.8617e-15,9.5541e-15,1.5901e-14,1.6505e-14,2.0142e-14,2.7386e-14,3.2425e-14,3.3325e-14,8.6675e-14,8.7552e-14,1.0556e-13,1.5188e-13,1.6225e-13,2.0736e-13,2.1968e-13,3.2852e-13,4.2643e-13,7.6785e-13,7.7867e-13,1.5126e-12,1.6308e-12,1.6703e-12,2.5562e-12,2.6261e-12,3.0584e-12,3.7357e-12,3.9759e-12,4.1675e-12,5.0148e-12,5.1705e-12,5.2745e-12,6.1046e-12,6.4244e-12,6.5105e-12,7.3456e-12,7.671e-12,9.7445e-12,1.445e-11,1.5495e-11,1.5786e-11,1.8803e-11,2.0208e-11,2.7061e-11,4.4954e-11,5.2545e-11,6.718e-11,7.3506e-11,9.4263e-11,1.2054e-10,1.2297e-10,1.2489e-10,1.2512e-10,1.3448e-10,1.353e-10,1.6948e-10,1.8785e-10,2.2779e-10,2.2975e-10,2.4199e-10,3.3705e-10,3.403e-10,3.9802e-10,4.753e-10,6.5111e-10,6.7849e-10,7.6298e-10,7.8326e-10,8.3685e-10,9.3474e-10,1.1067e-09,1.1118e-09,1.6257e-09,2.4931e-09,2.6081e-09,2.7415e-09,2.7844e-09,3.5888e-09,4.1917e-09,7.0543e-09,7.2476e-09,7.6531e-09,8.3875e-09,1.176e-08,1.6663e-08,2.4285e-08,2.7173e-08,2.9051e-08,3.4401e-08,4.8252e-08,5.5922e-08,6.7639e-08,9.0381e-08,1.158e-07,1.2106e-07,1.9391e-07,2.0619e-07,2.1086e-07,2.3503e-07,2.4537e-07,3.4518e-07,3.9906e-07,4.1608e-07,4.1785e-07,4.5604e-07,5.1285e-07,5.4144e-07,5.5465e-07,8.4307e-07,8.435e-07,1.2227e-06,1.8563e-06,2.7122e-06,3.8246e-06,4.4302e-06,4.6034e-06,5.034e-06,5.4414e-06,6.5291e-06,6.6608e-06,9.4174e-06,1.0269e-05,1.2199e-05,1.5078e-05,1.7125e-05,1.7372e-05,1.9254e-05,2.0622e-05,2.4383e-05,3.1196e-05,3.192e-05,3.5529e-05,4.2014e-05,4.8087e-05,4.839e-05,7.6486e-05,8.2333e-05,8.5287e-05,9.3324e-05,9.7774e-05,0.00010519,0.0001181,0.00012371,0.00013196,0.00014632,0.00016708,0.00018941,0.00019183,0.00022324,0.00024645,0.00026876,0.00032665,0.00035678,0.00036835,0.00041228,0.00041509,0.00043598,0.00044551,0.00059114,0.00063501,0.00065286,0.00074035,0.00079596,0.00080473,0.00095138,0.001304,0.00143,0.0014992,0.0016724,0.0016882,0.0019065,0.0019319,0.0022552,0.0024675,0.0029495,0.002997,0.0030423,0.0030679,0.0031528,0.0032236,0.0032675,0.0037641,0.0038762,0.0050991,0.0055801,0.005921,0.0060611,0.0073422,0.0073666,0.0078405,0.0080712,0.0093239,0.0093662,0.0094669,0.010522,0.010832,0.010944,0.011291,0.011753,0.012206,0.012447,0.015051,0.01515,0.016703,0.019295,0.022045,0.026428,0.026495,0.028225,0.030538,0.033838,0.033877,0.035089,0.041289,0.042853,0.043028,0.051782,0.053888,0.055133,0.059116,0.063292,0.071605,0.072982,0.079932,0.097386,0.097638,0.099192,0.10243,0.10502,0.10829,0.11225,0.15446,0.16723,0.18822,0.20496,0.20581,0.20778,0.23475,0.24136,0.24191,0.27021,0.32234,0.32408,0.34047,0.34391,0.38332,0.39472,0.4201,0.4336,0.44871,0.45168,0.4699,0.47313,0.47467,0.51696,0.52978,0.53519,0.55284,0.55842,0.58406,0.58992,0.60171,0.63108,0.63136,0.64543,0.65017,0.65017,0.68094,0.6819,0.69446,0.70761,0.73589,0.76078,0.77825,0.8052,0.82912,0.85847,0.85962,0.88068,0.89961,0.91012,0.93575,0.94254,0.95524,0.96205,0.97455,0.97573,0.97807,0.98306,0.99145,0.99713,0.99892,0.99985,1,1,0.99962,0.99823,0.98777,0.98343,0.98077,0.97422,0.97417,0.96683,0.96585,0.9603,0.95556,0.93782,0.93503,0.91906,0.90285,0.84189,0.82924,0.82301,0.80633,0.79026,0.78406,0.77151,0.76238,0.75092,0.73172,0.73161,0.69634,0.68685,0.68486,0.68381,0.64713,0.64629,0.64257,0.63977,0.6325,0.62044,0.60963,0.56172,0.46225,0.43386,0.43138,0.42934,0.42276,0.41912,0.38523,0.36364,0.34832,0.33989,0.32266,0.3084,0.30579,0.28649,0.2759,0.26329,0.2438,0.2196,0.21811,0.21033,0.20505,0.2027,0.17884,0.17267,0.14653,0.13983,0.12859,0.12286,0.12105,0.11153,0.11034,0.10778,0.10234,0.092568 1,1.1074e-31,1.993e-31,2.0525e-31,2.4495e-31,2.8063e-31,3.3548e-31,4.7408e-31,1.0757e-30,1.8068e-30,1.9564e-30,2.9511e-30,3.1556e-30,4.1174e-30,7.8488e-30,9.6041e-30,1.1048e-29,2.024e-29,2.2452e-29,2.5186e-29,3.7028e-29,3.8591e-29,3.952e-29,5.2972e-29,6.2958e-29,6.3312e-29,8.8137e-29,9.0829e-29,1.0544e-28,1.0753e-28,1.096e-28,3.0057e-28,7.8222e-28,8.5258e-28,1.1284e-27,1.4483e-27,1.7575e-27,2.2102e-27,2.8837e-27,4.5985e-27,5.9412e-27,9.0002e-27,1.5147e-26,1.589e-26,1.7595e-26,1.933e-26,3.1506e-26,3.1529e-26,1.0037e-25,1.0932e-25,1.1463e-25,1.6179e-25,1.6594e-25,3.2537e-25,4.235e-25,4.7252e-25,6.0068e-25,6.9949e-25,9.079e-25,9.8429e-25,1.8282e-24,2.6743e-24,8.7639e-24,1.2111e-23,1.3491e-23,1.6363e-23,2.7753e-23,3.0918e-23,3.4024e-23,5.3282e-23,8.1001e-23,9.4547e-23,1.0729e-22,1.6945e-22,3.2659e-22,6.4912e-22,1.0283e-21,1.1321e-21,2.6611e-21,3.57e-21,4.0933e-21,4.3492e-21,5.5584e-21,1.5163e-20,1.5658e-20,1.8634e-20,2.4545e-20,2.5906e-20,3.833e-20,1.1186e-19,1.1344e-19,1.531e-19,1.7045e-19,5.7488e-19,7.784e-19,7.9592e-19,1.0424e-18,1.5001e-18,1.5109e-18,1.556e-18,1.9364e-18,1.9402e-18,2.3646e-18,2.5523e-18,7.5484e-18,1.2091e-17,1.2285e-17,2.0895e-17,2.4075e-17,2.9959e-17,3.3314e-17,3.5464e-17,3.8002e-17,3.8867e-17,4.1273e-17,5.2543e-17,5.4037e-17,5.7249e-17,6.0023e-17,8.5676e-17,1.2783e-16,2.1315e-16,2.5814e-16,3.864e-16,6.0442e-16,7.29e-16,8.0283e-16,2.3097e-15,2.6071e-15,2.8494e-15,3.3971e-15,4.2452e-15,5.1458e-15,6.0135e-15,6.1823e-15,6.2905e-15,7.6498e-15,1.2754e-14,1.3241e-14,1.6169e-14,2.2007e-14,2.6072e-14,2.6799e-14,6.9936e-14,7.0647e-14,8.5232e-14,1.228e-13,1.3121e-13,1.6784e-13,1.7785e-13,2.6635e-13,3.4606e-13,6.2449e-13,6.3332e-13,1.2333e-12,1.33e-12,1.3624e-12,2.0883e-12,2.1456e-12,2.5003e-12,3.0563e-12,3.2536e-12,3.411e-12,4.1074e-12,4.2354e-12,4.321e-12,5.0038e-12,5.2669e-12,5.3378e-12,6.0253e-12,6.2933e-12,8.0017e-12,1.1884e-11,1.2747e-11,1.2987e-11,1.548e-11,1.6641e-11,2.2311e-11,3.7137e-11,4.3435e-11,5.5588e-11,6.0845e-11,7.8105e-11,9.9974e-11,1.02e-10,1.036e-10,1.0379e-10,1.1159e-10,1.1227e-10,1.4076e-10,1.5609e-10,1.8943e-10,1.9106e-10,2.0129e-10,2.8074e-10,2.8346e-10,3.3176e-10,3.9647e-10,5.4385e-10,5.6681e-10,6.3772e-10,6.5474e-10,6.9973e-10,7.8196e-10,9.2649e-10,9.3078e-10,1.3633e-09,2.0945e-09,2.1916e-09,2.3042e-09,2.3403e-09,3.0199e-09,3.5296e-09,5.9539e-09,6.1178e-09,6.4617e-09,7.0846e-09,9.9489e-09,1.4119e-08,2.0613e-08,2.3077e-08,2.4679e-08,2.9247e-08,4.1089e-08,4.7655e-08,5.7691e-08,7.7197e-08,9.9027e-08,1.0355e-07,1.6625e-07,1.7683e-07,1.8085e-07,2.0169e-07,2.1061e-07,2.9679e-07,3.4337e-07,3.5809e-07,3.5962e-07,3.9266e-07,4.4185e-07,4.6661e-07,4.7805e-07,7.2822e-07,7.2859e-07,1.0582e-06,1.6102e-06,2.3573e-06,3.3305e-06,3.8611e-06,4.0128e-06,4.3904e-06,4.7478e-06,5.7026e-06,5.8184e-06,8.2425e-06,8.9922e-06,1.0693e-05,1.3233e-05,1.5041e-05,1.5259e-05,1.6922e-05,1.8132e-05,2.146e-05,2.7497e-05,2.814e-05,3.1341e-05,3.71e-05,4.2499e-05,4.2769e-05,6.7794e-05,7.3011e-05,7.5648e-05,8.2824e-05,8.6799e-05,9.3427e-05,0.00010497,0.00011,0.00011738,0.00013024,0.00014885,0.00016888,0.00017105,0.00019926,0.00022013,0.00024019,0.00029232,0.00031948,0.00032991,0.00036955,0.00037209,0.00039095,0.00039955,0.00053122,0.00057095,0.00058711,0.0006664,0.00071683,0.00072479,0.00085792,0.0011787,0.0012935,0.0013566,0.0015146,0.0015289,0.0017283,0.0017515,0.0020472,0.0022415,0.0026831,0.0027267,0.0027682,0.0027917,0.0028696,0.0029346,0.0029749,0.003431,0.003534,0.0046597,0.0051032,0.0054177,0.005547,0.0067307,0.0067533,0.0071916,0.0074051,0.0085655,0.0086048,0.0086981,0.0096768,0.0099643,0.010068,0.01039,0.01082,0.011241,0.011465,0.013888,0.013981,0.015429,0.017847,0.020418,0.024522,0.024586,0.026208,0.028379,0.03148,0.031516,0.032655,0.038494,0.039968,0.040133,0.048398,0.050389,0.051567,0.055337,0.059293,0.067179,0.068487,0.075092,0.091716,0.091956,0.093439,0.096527,0.099004,0.10213,0.10591,0.14637,0.15866,0.17889,0.19505,0.19587,0.19777,0.22388,0.23029,0.23083,0.25831,0.3091,0.3108,0.32682,0.33018,0.3688,0.37999,0.40494,0.41824,0.43313,0.43606,0.45404,0.45724,0.45876,0.50063,0.51335,0.51872,0.53626,0.54181,0.56735,0.5732,0.58497,0.61434,0.61462,0.62872,0.63348,0.63348,0.6644,0.66537,0.67801,0.69128,0.71987,0.74512,0.76288,0.7904,0.81491,0.84515,0.84634,0.86817,0.88791,0.89894,0.92603,0.93327,0.94693,0.95433,0.96808,0.9694,0.97203,0.97768,0.98749,0.99466,0.99725,0.99899,0.99956,0.99962,1,0.99949,0.99168,0.98803,0.98575,0.98002,0.97997,0.97342,0.97254,0.96751,0.96319,0.94679,0.94419,0.92919,0.91384,0.85532,0.84305,0.837,0.82076,0.80507,0.799,0.78671,0.77775,0.76649,0.74758,0.74748,0.71263,0.70322,0.70125,0.7002,0.66376,0.66293,0.65923,0.65643,0.64919,0.63717,0.62637,0.57841,0.4782,0.44945,0.44694,0.44487,0.4382,0.4345,0.40006,0.37806,0.36243,0.35383,0.33622,0.32163,0.31895,0.29916,0.28829,0.27534,0.25529,0.23033,0.22879,0.22076,0.2153,0.21288,0.18817,0.18177,0.15462,0.14765,0.13594,0.12996,0.12807,0.11813,0.11689,0.11421,0.10852,0.098279 1,7.5623e-32,1.3632e-31,1.404e-31,1.6764e-31,1.9213e-31,2.2978e-31,3.2503e-31,7.3914e-31,1.2432e-30,1.3465e-30,2.0333e-30,2.1746e-30,2.8395e-30,5.4224e-30,6.6387e-30,7.6401e-30,1.402e-29,1.5556e-29,1.7456e-29,2.5691e-29,2.6779e-29,2.7425e-29,3.6791e-29,4.3747e-29,4.3994e-29,6.1301e-29,6.3179e-29,7.3372e-29,7.483e-29,7.6276e-29,2.0978e-28,5.4742e-28,5.9681e-28,7.9048e-28,1.0154e-27,1.2328e-27,1.5514e-27,2.0256e-27,3.2346e-27,4.1821e-27,6.3431e-27,1.0692e-26,1.1218e-26,1.2425e-26,1.3654e-26,2.2286e-26,2.2303e-26,7.1241e-26,7.7617e-26,8.1399e-26,1.15e-25,1.1796e-25,2.3176e-25,3.019e-25,3.3695e-25,4.2866e-25,4.9939e-25,6.487e-25,7.0345e-25,1.309e-24,1.9171e-24,6.3055e-24,8.7223e-24,9.7199e-24,1.1796e-23,2.0039e-23,2.2332e-23,2.4584e-23,3.8552e-23,5.8686e-23,6.8534e-23,7.78e-23,1.2306e-22,2.3767e-22,4.7343e-22,7.5109e-22,8.2721e-22,1.9498e-21,2.6183e-21,3.0034e-21,3.1918e-21,4.0825e-21,1.1174e-20,1.154e-20,1.3742e-20,1.8117e-20,1.9125e-20,2.8335e-20,8.2989e-20,8.417e-20,1.1371e-19,1.2665e-19,4.2893e-19,5.8139e-19,5.9452e-19,7.7938e-19,1.123e-18,1.1311e-18,1.165e-18,1.4509e-18,1.4538e-18,1.7731e-18,1.9143e-18,5.6835e-18,9.1192e-18,9.2659e-18,1.5791e-17,1.8203e-17,2.2671e-17,2.5219e-17,2.6853e-17,2.8781e-17,2.9439e-17,3.1269e-17,3.9842e-17,4.0979e-17,4.3424e-17,4.5536e-17,6.5083e-17,9.7253e-17,1.6247e-16,1.9691e-16,2.9519e-16,4.6253e-16,5.5826e-16,6.1503e-16,1.7767e-15,2.0063e-15,2.1935e-15,2.617e-15,3.2731e-15,3.9706e-15,4.643e-15,4.7738e-15,4.8577e-15,5.9119e-15,9.8767e-15,1.0255e-14,1.2533e-14,1.708e-14,2.0248e-14,2.0815e-14,5.4532e-14,5.5088e-14,6.6513e-14,9.5973e-14,1.0257e-13,1.3134e-13,1.3921e-13,2.0884e-13,2.7163e-13,4.9141e-13,4.9839e-13,9.733e-13,1.05e-12,1.0757e-12,1.6519e-12,1.6974e-12,1.9793e-12,2.4215e-12,2.5786e-12,2.7039e-12,3.2585e-12,3.3606e-12,3.4288e-12,3.9731e-12,4.1831e-12,4.2396e-12,4.7882e-12,5.0021e-12,6.3669e-12,9.4726e-12,1.0164e-11,1.0356e-11,1.2354e-11,1.3285e-11,1.7835e-11,2.9756e-11,3.4828e-11,4.4623e-11,4.8863e-11,6.2797e-11,8.0473e-11,8.2114e-11,8.3409e-11,8.356e-11,8.9868e-11,9.0423e-11,1.1349e-10,1.2591e-10,1.5294e-10,1.5427e-10,1.6256e-10,2.2709e-10,2.293e-10,2.6858e-10,3.2124e-10,4.4133e-10,4.6006e-10,5.1791e-10,5.318e-10,5.6854e-10,6.3569e-10,7.5382e-10,7.5732e-10,1.1113e-09,1.7111e-09,1.7908e-09,1.8833e-09,1.913e-09,2.4717e-09,2.8911e-09,4.8901e-09,5.0254e-09,5.3094e-09,5.824e-09,8.1932e-09,1.1649e-08,1.7041e-08,1.9089e-08,2.0423e-08,2.4225e-08,3.4097e-08,3.9577e-08,4.7962e-08,6.4282e-08,8.2575e-08,8.6368e-08,1.3903e-07,1.4794e-07,1.5132e-07,1.6887e-07,1.7638e-07,2.4904e-07,2.8837e-07,3.0081e-07,3.021e-07,3.3003e-07,3.7163e-07,3.9258e-07,4.0226e-07,6.1431e-07,6.1463e-07,8.9471e-07,1.3649e-06,2.003e-06,2.836e-06,3.2909e-06,3.4211e-06,3.7452e-06,4.0521e-06,4.8728e-06,4.9723e-06,7.06e-06,7.7066e-06,9.1749e-06,1.137e-05,1.2935e-05,1.3124e-05,1.4564e-05,1.5613e-05,1.85e-05,2.3745e-05,2.4304e-05,2.709e-05,3.2105e-05,3.6813e-05,3.7048e-05,5.8921e-05,6.3489e-05,6.5799e-05,7.209e-05,7.5575e-05,8.139e-05,9.1525e-05,9.5941e-05,0.00010243,0.00011374,0.00013012,0.00014778,0.00014969,0.00017458,0.00019302,0.00021076,0.00025689,0.00028095,0.00029021,0.00032537,0.00032762,0.00034436,0.000352,0.00046909,0.00050447,0.00051886,0.00058956,0.00063456,0.00064167,0.00076061,0.0010478,0.0011508,0.0012075,0.0013494,0.0013623,0.0015417,0.0015626,0.0018289,0.0020041,0.0024029,0.0024424,0.0024799,0.0025011,0.0025716,0.0026304,0.0026668,0.0030798,0.0031732,0.0041951,0.0045984,0.0048847,0.0050024,0.0060817,0.0061023,0.0065025,0.0066976,0.0077587,0.0077946,0.00788,0.0087764,0.0090399,0.0091351,0.0094306,0.009825,0.010211,0.010417,0.012644,0.01273,0.014063,0.016295,0.01867,0.022471,0.022529,0.024033,0.026049,0.028932,0.028965,0.030026,0.035466,0.036842,0.036996,0.044721,0.046585,0.047689,0.051222,0.054935,0.062347,0.063578,0.069799,0.085495,0.085722,0.087124,0.090047,0.092393,0.09535,0.098933,0.13743,0.14916,0.16852,0.18402,0.18481,0.18664,0.21176,0.21793,0.21844,0.24498,0.2942,0.29585,0.31143,0.31471,0.35237,0.36331,0.38774,0.40078,0.41541,0.41829,0.43598,0.43913,0.44063,0.48194,0.49453,0.49985,0.51723,0.52274,0.54813,0.55394,0.56568,0.595,0.59528,0.60938,0.61415,0.61415,0.64518,0.64615,0.65888,0.67225,0.70113,0.72674,0.74481,0.7729,0.79804,0.82923,0.83046,0.85313,0.87376,0.88535,0.91406,0.9218,0.93653,0.94458,0.95976,0.96123,0.96418,0.97058,0.982,0.99088,0.99439,0.99705,0.9981,0.99823,0.99949,1,0.99527,0.99243,0.99059,0.98582,0.98578,0.98015,0.97939,0.97498,0.97115,0.95634,0.95396,0.94014,0.92583,0.87027,0.85848,0.85264,0.83696,0.82175,0.81585,0.80388,0.79513,0.78413,0.7656,0.7655,0.73122,0.72193,0.71999,0.71895,0.68287,0.68204,0.67836,0.67559,0.66839,0.65643,0.64567,0.59774,0.49685,0.46772,0.46517,0.46307,0.45629,0.45254,0.4175,0.39506,0.37909,0.37029,0.35225,0.33729,0.33454,0.3142,0.30301,0.28966,0.26897,0.24315,0.24155,0.23323,0.22756,0.22505,0.19936,0.1927,0.16437,0.15708,0.14481,0.13854,0.13656,0.12611,0.12481,0.12199,0.116,0.10522 1,2.3463e-32,4.2499e-32,4.378e-32,5.235e-32,6.0064e-32,7.1942e-32,1.0205e-31,2.3365e-31,3.947e-31,4.2775e-31,6.4818e-31,6.9361e-31,9.0768e-31,1.7428e-30,2.1373e-30,2.4626e-30,4.542e-30,5.0443e-30,5.666e-30,8.3662e-30,8.7235e-30,8.9358e-30,1.2017e-29,1.4311e-29,1.4392e-29,2.0111e-29,2.0732e-29,2.4108e-29,2.4591e-29,2.507e-29,6.9552e-29,1.8301e-28,1.9967e-28,2.6511e-28,3.4128e-28,4.1506e-28,5.2339e-28,6.8498e-28,1.0983e-27,1.4233e-27,2.1667e-27,3.669e-27,3.8512e-27,4.2695e-27,4.6958e-27,7.6981e-27,7.7039e-27,2.4867e-26,2.7114e-26,2.8447e-26,4.0317e-26,4.1363e-26,8.1769e-26,1.0677e-25,1.1929e-25,1.5209e-25,1.7744e-25,2.3105e-25,2.5074e-25,4.6928e-25,6.897e-25,2.2939e-24,3.1829e-24,3.5506e-24,4.3169e-24,7.3706e-24,8.2225e-24,9.0597e-24,1.4269e-23,2.1808e-23,2.5506e-23,2.899e-23,4.6058e-23,8.9527e-23,1.7954e-22,2.8614e-22,3.1543e-22,7.4986e-22,1.0099e-21,1.1601e-21,1.2336e-21,1.5817e-21,4.3734e-21,4.5183e-21,5.3898e-21,7.1259e-21,7.5267e-21,1.1196e-20,3.3158e-20,3.3634e-20,4.558e-20,5.0823e-20,1.7435e-19,2.3709e-19,2.425e-19,3.1882e-19,4.6119e-19,4.6456e-19,4.7861e-19,5.975e-19,5.9869e-19,7.3173e-19,7.9068e-19,2.3753e-18,3.8311e-18,3.8934e-18,6.674e-18,7.7059e-18,9.6205e-18,1.0715e-17,1.1417e-17,1.2246e-17,1.2529e-17,1.3317e-17,1.7014e-17,1.7505e-17,1.8562e-17,1.9475e-17,2.7947e-17,4.195e-17,7.0491e-17,8.5622e-17,1.2896e-16,2.0311e-16,2.4569e-16,2.7097e-16,7.9257e-16,8.9631e-16,9.8099e-16,1.1728e-15,1.4708e-15,1.7883e-15,2.0951e-15,2.1548e-15,2.1931e-15,2.6754e-15,4.4974e-15,4.6717e-15,5.7234e-15,7.8293e-15,9.3011e-15,9.5645e-15,2.5358e-14,2.562e-14,3.1006e-14,4.4946e-14,4.8077e-14,6.1754e-14,6.5503e-14,9.877e-14,1.289e-13,2.3498e-13,2.3836e-13,4.6956e-13,5.0706e-13,5.1963e-13,8.025e-13,8.2489e-13,9.6387e-13,1.1824e-12,1.2601e-12,1.3222e-12,1.5974e-12,1.6481e-12,1.682e-12,1.9529e-12,2.0575e-12,2.0857e-12,2.3595e-12,2.4663e-12,3.1495e-12,4.7112e-12,5.0599e-12,5.1569e-12,6.1664e-12,6.6379e-12,8.9475e-12,1.5035e-11,1.7637e-11,2.2676e-11,2.4862e-11,3.2066e-11,4.1237e-11,4.209e-11,4.2763e-11,4.2842e-11,4.6124e-11,4.6413e-11,5.8443e-11,6.4935e-11,7.9098e-11,7.9795e-11,8.415e-11,1.1813e-10,1.1929e-10,1.4005e-10,1.6795e-10,2.3182e-10,2.4181e-10,2.727e-10,2.8012e-10,2.9977e-10,3.3574e-10,3.9915e-10,4.0103e-10,5.919e-10,9.1735e-10,9.6076e-10,1.0112e-09,1.0274e-09,1.3326e-09,1.5626e-09,2.6648e-09,2.7397e-09,2.897e-09,3.1825e-09,4.5014e-09,6.4361e-09,9.4739e-09,1.0632e-08,1.1387e-08,1.3545e-08,1.9173e-08,2.231e-08,2.7124e-08,3.6533e-08,4.7129e-08,4.9332e-08,8.0066e-08,8.5285e-08,8.7272e-08,9.7576e-08,1.0199e-07,1.4489e-07,1.682e-07,1.7559e-07,1.7636e-07,1.9296e-07,2.1775e-07,2.3025e-07,2.3603e-07,3.6322e-07,3.6341e-07,5.3267e-07,8.1899e-07,1.2106e-06,1.7256e-06,2.0081e-06,2.0891e-06,2.291e-06,2.4826e-06,2.9962e-06,3.0586e-06,4.3732e-06,4.782e-06,5.7132e-06,7.1111e-06,8.111e-06,8.2321e-06,9.1552e-06,9.8284e-06,1.1687e-05,1.5079e-05,1.5442e-05,1.7251e-05,2.052e-05,2.3597e-05,2.3751e-05,3.8158e-05,4.1185e-05,4.2717e-05,4.6896e-05,4.9215e-05,5.309e-05,5.9859e-05,6.2813e-05,6.7162e-05,7.4758e-05,8.5788e-05,9.7717e-05,9.9009e-05,0.00011589,0.00012843,0.00014052,0.00017209,0.00018861,0.00019498,0.00021921,0.00022076,0.00023232,0.0002376,0.00031889,0.00034356,0.00035361,0.00040309,0.00043467,0.00043965,0.00052342,0.00072709,0.00080054,0.00084101,0.00094268,0.00095195,0.0010809,0.0010959,0.0012882,0.0014152,0.0017054,0.0017342,0.0017616,0.0017771,0.0018286,0.0018716,0.0018982,0.0022012,0.0022699,0.0030253,0.0033252,0.0035386,0.0036264,0.0044349,0.0044504,0.0047515,0.0048985,0.0057005,0.0057277,0.0057924,0.0064733,0.0066739,0.0067464,0.0069717,0.0072727,0.0075679,0.0077255,0.0094368,0.0095028,0.010533,0.012265,0.014118,0.017102,0.017148,0.018335,0.019931,0.022221,0.022247,0.023092,0.027446,0.028552,0.028675,0.034917,0.036431,0.037328,0.040208,0.043244,0.049333,0.050348,0.05549,0.068565,0.068755,0.06993,0.072381,0.074352,0.07684,0.07986,0.11266,0.12277,0.13957,0.15311,0.15381,0.15541,0.17753,0.18299,0.18345,0.20708,0.25144,0.25294,0.26713,0.27012,0.3047,0.31481,0.3375,0.34968,0.36339,0.36609,0.38276,0.38573,0.38715,0.42643,0.43848,0.44359,0.46034,0.46566,0.49029,0.49596,0.50742,0.53625,0.53652,0.55049,0.55521,0.55522,0.58618,0.58716,0.59996,0.61346,0.64285,0.66917,0.6879,0.71732,0.74398,0.77757,0.77891,0.80376,0.82674,0.83982,0.87295,0.88209,0.8998,0.90971,0.92894,0.93085,0.93472,0.94328,0.95939,0.97329,0.97952,0.98493,0.98744,0.98777,0.99168,0.99527,1,0.99966,0.99919,0.99744,0.99742,0.99472,0.99432,0.99187,0.9896,0.97992,0.97826,0.96826,0.95736,0.91177,0.90163,0.89657,0.88282,0.86931,0.86403,0.85324,0.84531,0.83526,0.81818,0.81809,0.78604,0.77727,0.77543,0.77445,0.73996,0.73917,0.73562,0.73295,0.72599,0.71438,0.70389,0.65668,0.55485,0.52487,0.52224,0.52006,0.51304,0.50915,0.47259,0.44899,0.4321,0.42276,0.40353,0.38751,0.38456,0.36266,0.35054,0.33605,0.31345,0.28505,0.28329,0.27408,0.26779,0.265,0.23634,0.22886,0.19684,0.18854,0.17453,0.16734,0.16506,0.15302,0.15151,0.14825,0.14131,0.12875 1,1.7157e-32,3.1117e-32,3.2057e-32,3.8347e-32,4.4012e-32,5.2735e-32,7.4863e-32,1.7171e-31,2.9039e-31,3.1477e-31,4.7741e-31,5.1095e-31,6.6904e-31,1.2864e-30,1.5784e-30,1.8192e-30,3.3599e-30,3.7323e-30,4.1933e-30,6.1971e-30,6.4624e-30,6.62e-30,8.9088e-30,1.0613e-29,1.0674e-29,1.4926e-29,1.5388e-29,1.79e-29,1.826e-29,1.8616e-29,5.1766e-29,1.3651e-28,1.4897e-28,1.9792e-28,2.5493e-28,3.1019e-28,3.9136e-28,5.125e-28,8.2266e-28,1.0667e-27,1.6255e-27,2.7559e-27,2.8931e-27,3.2081e-27,3.5293e-27,5.7924e-27,5.7968e-27,1.8763e-26,2.0463e-26,2.1472e-26,3.0456e-26,3.1248e-26,6.1875e-26,8.0849e-26,9.0351e-26,1.1526e-25,1.3452e-25,1.7527e-25,1.9025e-25,3.5661e-25,5.2461e-25,1.75e-24,2.4302e-24,2.7117e-24,3.2985e-24,5.6395e-24,6.293e-24,6.9354e-24,1.0936e-23,1.6732e-23,1.9576e-23,2.2258e-23,3.5404e-23,6.8935e-23,1.3849e-22,2.2099e-22,2.4367e-22,5.8059e-22,7.8255e-22,8.9921e-22,9.5635e-22,1.2271e-21,3.402e-21,3.5151e-21,4.195e-21,5.5504e-21,5.8634e-21,8.7312e-21,2.5934e-20,2.6308e-20,3.5682e-20,3.9798e-20,1.37e-19,1.8645e-19,1.9072e-19,2.5094e-19,3.6337e-19,3.6603e-19,3.7714e-19,4.7111e-19,4.7205e-19,5.7728e-19,6.2393e-19,1.8803e-18,3.0368e-18,3.0863e-18,5.2989e-18,6.1207e-18,7.6463e-18,8.5186e-18,9.0785e-18,9.7401e-18,9.9659e-18,1.0594e-17,1.3545e-17,1.3938e-17,1.4781e-17,1.5511e-17,2.2282e-17,3.3488e-17,5.6358e-17,6.8496e-17,1.0329e-16,1.6291e-16,1.9717e-16,2.1753e-16,6.3836e-16,7.2219e-16,7.9065e-16,9.4579e-16,1.1869e-15,1.444e-15,1.6926e-15,1.741e-15,1.7721e-15,2.1631e-15,3.6422e-15,3.7839e-15,4.6387e-15,6.3518e-15,7.55e-15,7.7646e-15,2.0651e-14,2.0865e-14,2.5268e-14,3.6672e-14,3.9235e-14,5.0439e-14,5.3512e-14,8.08e-14,1.0554e-13,1.9279e-13,1.9557e-13,3.8617e-13,4.1712e-13,4.2749e-13,6.6119e-13,6.7971e-13,7.9466e-13,9.7551e-13,1.0399e-12,1.0913e-12,1.3193e-12,1.3613e-12,1.3894e-12,1.6141e-12,1.7008e-12,1.7242e-12,1.9514e-12,2.0401e-12,2.6074e-12,3.906e-12,4.1962e-12,4.2769e-12,5.1174e-12,5.5102e-12,7.4354e-12,1.2518e-11,1.4692e-11,1.8908e-11,2.0738e-11,2.6772e-11,3.4462e-11,3.5178e-11,3.5742e-11,3.5808e-11,3.8562e-11,3.8805e-11,4.8905e-11,5.4359e-11,6.6265e-11,6.6851e-11,7.0513e-11,9.9113e-11,1.001e-10,1.1758e-10,1.4111e-10,1.9502e-10,2.0345e-10,2.2955e-10,2.3582e-10,2.5243e-10,2.8284e-10,3.3649e-10,3.3808e-10,4.9976e-10,7.759e-10,8.1277e-10,8.5559e-10,8.6936e-10,1.1289e-09,1.3245e-09,2.2637e-09,2.3276e-09,2.4619e-09,2.7055e-09,3.8322e-09,5.4875e-09,8.0909e-09,9.0845e-09,9.7325e-09,1.1586e-08,1.6424e-08,1.9123e-08,2.327e-08,3.1383e-08,4.0531e-08,4.2434e-08,6.9021e-08,7.3542e-08,7.5263e-08,8.4192e-08,8.8021e-08,1.2524e-07,1.4549e-07,1.5192e-07,1.5258e-07,1.6702e-07,1.8858e-07,1.9946e-07,2.0449e-07,3.1532e-07,3.1549e-07,4.6328e-07,7.1379e-07,1.0571e-06,1.5095e-06,1.758e-06,1.8293e-06,2.007e-06,2.1757e-06,2.6283e-06,2.6834e-06,3.8438e-06,4.2051e-06,5.0286e-06,6.2663e-06,7.1524e-06,7.2598e-06,8.0785e-06,8.6758e-06,1.0326e-05,1.3342e-05,1.3665e-05,1.5275e-05,1.8186e-05,2.0931e-05,2.1068e-05,3.3939e-05,3.6646e-05,3.8018e-05,4.1759e-05,4.3837e-05,4.7309e-05,5.3378e-05,5.6029e-05,5.9932e-05,6.6753e-05,7.6664e-05,8.7393e-05,8.8555e-05,0.00010375,0.00011505,0.00012595,0.00015444,0.00016937,0.00017512,0.00019703,0.00019843,0.00020889,0.00021367,0.00028731,0.00030969,0.00031881,0.00036372,0.00039241,0.00039694,0.00047312,0.00065868,0.00072569,0.00076263,0.00085551,0.00086398,0.00098184,0.0009956,0.0011716,0.001288,0.0015542,0.0015806,0.0016058,0.00162,0.0016673,0.0017068,0.0017313,0.0020098,0.002073,0.0027689,0.0030456,0.0032425,0.0033237,0.004071,0.0040854,0.004364,0.0045001,0.0052432,0.0052684,0.0053285,0.0059602,0.0061464,0.0062138,0.006423,0.0067026,0.006977,0.0071235,0.0087161,0.0087776,0.0097375,0.011353,0.013086,0.015879,0.015922,0.017034,0.018531,0.020681,0.020706,0.0215,0.025595,0.026637,0.026753,0.03264,0.03407,0.034917,0.03764,0.040512,0.04628,0.047242,0.052121,0.064552,0.064733,0.065852,0.068186,0.070064,0.072436,0.075317,0.10669,0.11639,0.13253,0.14557,0.14624,0.14778,0.16912,0.1744,0.17485,0.19771,0.24077,0.24223,0.25603,0.25894,0.29267,0.30255,0.32475,0.33668,0.35012,0.35277,0.36913,0.37206,0.37345,0.41211,0.42399,0.42903,0.44557,0.45083,0.4752,0.48081,0.49218,0.52079,0.52106,0.53494,0.53964,0.53965,0.5705,0.57148,0.58425,0.59775,0.62717,0.65359,0.67243,0.70209,0.72906,0.76316,0.76452,0.78985,0.81336,0.82679,0.86095,0.87043,0.88886,0.89921,0.91943,0.92146,0.92555,0.93465,0.95194,0.96711,0.97404,0.98017,0.98305,0.98343,0.98803,0.99243,0.99966,1,0.9999,0.99895,0.99894,0.99704,0.99674,0.99483,0.99298,0.98471,0.98326,0.97433,0.96438,0.92167,0.91202,0.90719,0.89402,0.88102,0.87592,0.86549,0.85781,0.84806,0.83144,0.83135,0.80003,0.79143,0.78963,0.78866,0.75474,0.75395,0.75046,0.74782,0.74095,0.72947,0.7191,0.67224,0.57048,0.54036,0.53771,0.53552,0.52845,0.52453,0.48765,0.4638,0.4467,0.43723,0.41773,0.40145,0.39845,0.37616,0.36382,0.34904,0.32596,0.29689,0.29509,0.28565,0.2792,0.27633,0.24688,0.23919,0.20618,0.19761,0.18312,0.17568,0.17332,0.16084,0.15928,0.1559,0.14869,0.13564 1,1.4437e-32,2.6202e-32,2.6995e-32,3.2298e-32,3.7075e-32,4.4433e-32,6.3104e-32,1.4488e-31,2.4518e-31,2.6579e-31,4.0332e-31,4.3169e-31,5.6544e-31,1.0881e-30,1.3353e-30,1.5393e-30,2.8451e-30,3.1609e-30,3.5519e-30,5.2517e-30,5.4768e-30,5.6105e-30,7.5531e-30,9e-30,9.0514e-30,1.2663e-29,1.3055e-29,1.5189e-29,1.5495e-29,1.5798e-29,4.3984e-29,1.1613e-28,1.2674e-28,1.6846e-28,2.1705e-28,2.6416e-28,3.3337e-28,4.3672e-28,7.0144e-28,9.0983e-28,1.3871e-27,2.3535e-27,2.4708e-27,2.7402e-27,3.0148e-27,4.9513e-27,4.9551e-27,1.6064e-26,1.752e-26,1.8385e-26,2.609e-26,2.677e-26,5.3055e-26,6.9348e-26,7.7511e-26,9.8914e-26,1.1547e-25,1.505e-25,1.6337e-25,3.0649e-25,4.5112e-25,1.5073e-24,2.0941e-24,2.337e-24,2.8435e-24,4.8651e-24,5.4297e-24,5.9848e-24,9.4427e-24,1.4456e-23,1.6918e-23,1.9238e-23,3.0621e-23,5.9678e-23,1.2001e-22,1.9163e-22,2.1133e-22,5.0415e-22,6.7982e-22,7.8132e-22,8.3105e-22,1.0667e-21,2.9617e-21,3.0603e-21,3.6532e-21,4.8356e-21,5.1087e-21,7.6119e-21,2.2646e-20,2.2974e-20,3.1173e-20,3.4775e-20,1.1993e-19,1.633e-19,1.6705e-19,2.1988e-19,3.1858e-19,3.2092e-19,3.3067e-19,4.1321e-19,4.1404e-19,5.0648e-19,5.4748e-19,1.6528e-18,2.6713e-18,2.715e-18,4.6653e-18,5.3902e-18,6.7361e-18,7.5059e-18,8e-18,8.584e-18,8.7833e-18,9.338e-18,1.1944e-17,1.229e-17,1.3036e-17,1.368e-17,1.9664e-17,2.9572e-17,4.9811e-17,6.0558e-17,9.1382e-17,1.4424e-16,1.7463e-16,1.9269e-16,5.665e-16,6.4103e-16,7.019e-16,8.3989e-16,1.0544e-15,1.2833e-15,1.5046e-15,1.5477e-15,1.5754e-15,1.9236e-15,3.2419e-15,3.3683e-15,4.1307e-15,5.6593e-15,6.729e-15,6.9205e-15,1.8439e-14,1.863e-14,2.2568e-14,3.2777e-14,3.5072e-14,4.5107e-14,4.786e-14,7.2321e-14,9.4514e-14,1.7284e-13,1.7534e-13,3.4665e-13,3.7449e-13,3.8382e-13,5.9414e-13,6.1081e-13,7.1432e-13,8.7724e-13,9.3523e-13,9.8156e-13,1.1871e-12,1.225e-12,1.2503e-12,1.4529e-12,1.5311e-12,1.5522e-12,1.7571e-12,1.8372e-12,2.3492e-12,3.5219e-12,3.7841e-12,3.8571e-12,4.6168e-12,4.9718e-12,6.713e-12,1.1313e-11,1.3283e-11,1.7103e-11,1.8762e-11,2.4234e-11,3.121e-11,3.1859e-11,3.2372e-11,3.2432e-11,3.4931e-11,3.5152e-11,4.4322e-11,4.9276e-11,6.0093e-11,6.0626e-11,6.3954e-11,8.9958e-11,9.0853e-11,1.0676e-10,1.2817e-10,1.7726e-10,1.8494e-10,2.0871e-10,2.1443e-10,2.2957e-10,2.5729e-10,3.062e-10,3.0765e-10,4.5517e-10,7.0735e-10,7.4104e-10,7.8017e-10,7.9275e-10,1.03e-09,1.2089e-09,2.0686e-09,2.1272e-09,2.2502e-09,2.4734e-09,3.5062e-09,5.0249e-09,7.4154e-09,8.3283e-09,8.9238e-09,1.0627e-08,1.5078e-08,1.7562e-08,2.1381e-08,2.8856e-08,3.7291e-08,3.9046e-08,6.3587e-08,6.7761e-08,6.9351e-08,7.7601e-08,8.1139e-08,1.1555e-07,1.3429e-07,1.4023e-07,1.4085e-07,1.5421e-07,1.7417e-07,1.8424e-07,1.8891e-07,2.9162e-07,2.9177e-07,4.2888e-07,6.6156e-07,9.8081e-07,1.4019e-06,1.6333e-06,1.6998e-06,1.8654e-06,2.0226e-06,2.4447e-06,2.4961e-06,3.5791e-06,3.9166e-06,4.686e-06,5.8431e-06,6.672e-06,6.7724e-06,7.5385e-06,8.0976e-06,9.6431e-06,1.2469e-05,1.2771e-05,1.4281e-05,1.7012e-05,1.9588e-05,1.9717e-05,3.1809e-05,3.4355e-05,3.5645e-05,3.9164e-05,4.1119e-05,4.4387e-05,5.0101e-05,5.2597e-05,5.6273e-05,6.2699e-05,7.2041e-05,8.2158e-05,8.3255e-05,9.7592e-05,0.00010826,0.00011855,0.00014547,0.00015958,0.00016501,0.00018573,0.00018706,0.00019696,0.00020148,0.0002712,0.0002924,0.00030104,0.00034361,0.00037082,0.00037512,0.00044739,0.00062362,0.00068731,0.00072244,0.00081076,0.00081882,0.00093098,0.00094408,0.0011117,0.0012226,0.0014763,0.0015015,0.0015255,0.0015391,0.0015842,0.0016219,0.0016453,0.0019111,0.0019714,0.0026363,0.0029009,0.0030893,0.003167,0.0038825,0.0038962,0.0041631,0.0042935,0.0050059,0.0050301,0.0050876,0.0056936,0.0058723,0.0059369,0.0061378,0.0064062,0.0066697,0.0068103,0.0083406,0.0083997,0.0093228,0.010878,0.012546,0.015238,0.01528,0.016353,0.017797,0.019873,0.019898,0.020664,0.024623,0.02563,0.025743,0.031441,0.032826,0.033647,0.036286,0.039071,0.044667,0.045602,0.05034,0.062425,0.062602,0.06369,0.065962,0.06779,0.070099,0.072905,0.10351,0.11299,0.12877,0.14154,0.14219,0.1437,0.16462,0.1698,0.17023,0.19268,0.23502,0.23646,0.25004,0.25291,0.28617,0.29592,0.31785,0.32963,0.34292,0.34554,0.36174,0.36463,0.36601,0.40432,0.4161,0.4211,0.43752,0.44274,0.46695,0.47254,0.48384,0.51232,0.51259,0.52642,0.53111,0.53112,0.56189,0.56287,0.57562,0.5891,0.61853,0.64498,0.66387,0.69365,0.72077,0.75512,0.75649,0.78206,0.80585,0.81946,0.85417,0.86383,0.88263,0.89323,0.91398,0.91606,0.92028,0.92967,0.94759,0.96346,0.97076,0.97727,0.98036,0.98077,0.98575,0.99059,0.99919,0.9999,1,0.9995,0.9995,0.99804,0.99779,0.99617,0.99456,0.98708,0.98574,0.9774,0.968,0.9269,0.91753,0.91282,0.89998,0.88727,0.88229,0.87207,0.86452,0.85494,0.83859,0.8385,0.80761,0.79911,0.79732,0.79637,0.76278,0.762,0.75854,0.75592,0.7491,0.73771,0.7274,0.68077,0.57911,0.54892,0.54627,0.54407,0.53698,0.53305,0.49601,0.47202,0.45481,0.44528,0.42563,0.40922,0.40619,0.3837,0.37124,0.3563,0.33296,0.30354,0.30171,0.29214,0.28561,0.2827,0.25282,0.24501,0.21146,0.20273,0.18798,0.1804,0.17799,0.16527,0.16368,0.16023,0.15288,0.13955 1,9.855e-33,1.7914e-32,1.8457e-32,2.2094e-32,2.537e-32,3.042e-32,4.3242e-32,9.9499e-32,1.6861e-31,1.8283e-31,2.7774e-31,2.9733e-31,3.8972e-31,7.5127e-31,9.225e-31,1.0638e-30,1.9695e-30,2.1887e-30,2.4603e-30,3.6415e-30,3.798e-30,3.891e-30,5.2424e-30,6.2496e-30,6.2855e-30,8.8013e-30,9.0749e-30,1.0563e-29,1.0776e-29,1.0987e-29,3.0676e-29,8.1212e-29,8.8654e-29,1.1792e-28,1.5205e-28,1.8515e-28,2.3382e-28,3.0653e-28,4.93e-28,6.3992e-28,9.7681e-28,1.6598e-27,1.7428e-27,1.9333e-27,2.1277e-27,3.4993e-27,3.502e-27,1.1391e-26,1.2427e-26,1.3043e-26,1.8527e-26,1.9012e-26,3.7754e-26,4.9387e-26,5.5218e-26,7.0516e-26,8.2353e-26,1.0742e-25,1.1664e-25,2.1923e-25,3.2305e-25,1.0833e-24,1.5065e-24,1.6818e-24,2.0475e-24,3.5089e-24,3.9175e-24,4.3192e-24,6.8243e-24,1.0461e-23,1.2248e-23,1.3934e-23,2.221e-23,4.3375e-23,8.742e-23,1.3979e-22,1.5421e-22,3.689e-22,4.9791e-22,5.7251e-22,6.0906e-22,7.8238e-22,2.1795e-21,2.2523e-21,2.6902e-21,3.5641e-21,3.7661e-21,5.6187e-21,1.6777e-20,1.702e-20,2.3118e-20,2.5798e-20,8.9342e-20,1.2178e-19,1.2458e-19,1.6414e-19,2.3811e-19,2.3986e-19,2.4718e-19,3.0911e-19,3.0974e-19,3.7916e-19,4.0996e-19,1.2423e-18,2.0113e-18,2.0443e-18,3.5196e-18,4.0684e-18,5.0884e-18,5.672e-18,6.0468e-18,6.4898e-18,6.641e-18,7.062e-18,9.0407e-18,9.3039e-18,9.8701e-18,1.036e-17,1.491e-17,2.2457e-17,3.7897e-17,4.6107e-17,6.968e-17,1.1017e-16,1.3348e-16,1.4734e-16,4.349e-16,4.9235e-16,5.3928e-16,6.4574e-16,8.1137e-16,9.8821e-16,1.1593e-15,1.1927e-15,1.2141e-15,1.4836e-15,2.5054e-15,2.6034e-15,3.1952e-15,4.383e-15,5.2149e-15,5.364e-15,1.4347e-14,1.4496e-14,1.7574e-14,2.5561e-14,2.7358e-14,3.5222e-14,3.7381e-14,5.658e-14,7.4023e-14,1.357e-13,1.3767e-13,2.7295e-13,2.9496e-13,3.0234e-13,4.6887e-13,4.8209e-13,5.6415e-13,6.9342e-13,7.3946e-13,7.7625e-13,9.3954e-13,9.6966e-13,9.898e-13,1.1509e-12,1.2132e-12,1.2299e-12,1.393e-12,1.4568e-12,1.8648e-12,2.8006e-12,3.01e-12,3.0683e-12,3.6754e-12,3.9594e-12,5.353e-12,9.0423e-12,1.0624e-11,1.3695e-11,1.5029e-11,1.9435e-11,2.5059e-11,2.5582e-11,2.5996e-11,2.6044e-11,2.8061e-11,2.8238e-11,3.5643e-11,3.9646e-11,4.8393e-11,4.8824e-11,5.1517e-11,7.2578e-11,7.3303e-11,8.6203e-11,1.0358e-10,1.4346e-10,1.4971e-10,1.6905e-10,1.7371e-10,1.8603e-10,2.086e-10,2.4847e-10,2.4965e-10,3.7005e-10,5.7629e-10,6.0388e-10,6.3592e-10,6.4623e-10,8.4069e-10,9.8752e-10,1.6943e-09,1.7425e-09,1.8437e-09,2.0276e-09,2.8793e-09,4.1339e-09,6.1128e-09,6.8695e-09,7.3632e-09,8.7768e-09,1.2475e-08,1.4542e-08,1.7722e-08,2.3957e-08,3.1002e-08,3.247e-08,5.3017e-08,5.6518e-08,5.7851e-08,6.4773e-08,6.7743e-08,9.6662e-08,1.1243e-07,1.1744e-07,1.1796e-07,1.2921e-07,1.4604e-07,1.5453e-07,1.5846e-07,2.4523e-07,2.4536e-07,3.6146e-07,5.5898e-07,8.3068e-07,1.1898e-06,1.3876e-06,1.4444e-06,1.586e-06,1.7206e-06,2.0821e-06,2.1261e-06,3.0554e-06,3.3454e-06,4.0072e-06,5.0037e-06,5.7183e-06,5.805e-06,6.4661e-06,6.9489e-06,8.2847e-06,1.073e-05,1.0992e-05,1.2301e-05,1.4671e-05,1.6908e-05,1.702e-05,2.7548e-05,2.9769e-05,3.0894e-05,3.3968e-05,3.5675e-05,3.8531e-05,4.3528e-05,4.5712e-05,4.8931e-05,5.4561e-05,6.2753e-05,7.1633e-05,7.2596e-05,8.5197e-05,9.458e-05,0.00010364,0.00012737,0.00013982,0.00014462,0.00016292,0.0001641,0.00017285,0.00017685,0.00023859,0.00025739,0.00026506,0.00030285,0.00032703,0.00033085,0.00039515,0.00055228,0.00060918,0.00064057,0.00071958,0.00072679,0.00082724,0.00083898,0.00098929,0.0010888,0.001317,0.0013397,0.0013613,0.0013735,0.0014141,0.0014481,0.0014691,0.0017087,0.0017632,0.002364,0.0026036,0.0027743,0.0028447,0.003494,0.0035065,0.0037491,0.0038676,0.004516,0.004538,0.0045904,0.0051428,0.0053058,0.0053648,0.0055481,0.0057932,0.0060339,0.0061624,0.0075625,0.0076167,0.0084628,0.0098901,0.011424,0.013905,0.013943,0.014934,0.016267,0.018187,0.01821,0.01892,0.022589,0.023524,0.023629,0.028928,0.030217,0.030982,0.033443,0.036042,0.041274,0.042148,0.046587,0.057934,0.0581,0.059124,0.061262,0.062983,0.065158,0.067802,0.096746,0.10574,0.12076,0.13293,0.13355,0.13499,0.15498,0.15994,0.16036,0.18188,0.22264,0.22403,0.23715,0.23993,0.27213,0.28159,0.3029,0.31437,0.32732,0.32988,0.34568,0.34851,0.34985,0.38735,0.39891,0.40382,0.41995,0.42508,0.44893,0.45444,0.46559,0.49375,0.49402,0.50772,0.51237,0.51238,0.54294,0.54391,0.5566,0.57004,0.59943,0.62593,0.6449,0.67488,0.70229,0.73714,0.73854,0.76461,0.78896,0.80294,0.83878,0.84881,0.86842,0.87952,0.90141,0.90361,0.90809,0.9181,0.93739,0.95474,0.96287,0.97022,0.97374,0.97422,0.98002,0.98582,0.99744,0.99895,0.9995,1,1,0.99951,0.99939,0.99843,0.99734,0.99161,0.99052,0.98352,0.97532,0.93788,0.92913,0.92473,0.91263,0.9006,0.89586,0.88612,0.8789,0.86972,0.85399,0.8539,0.824,0.81574,0.814,0.81307,0.78028,0.77951,0.77612,0.77355,0.76687,0.75568,0.74554,0.69949,0.59819,0.5679,0.56523,0.56303,0.5559,0.55194,0.5146,0.49035,0.47292,0.46325,0.44329,0.4266,0.42352,0.4006,0.38787,0.3726,0.34871,0.3185,0.31663,0.30678,0.30006,0.29706,0.26624,0.25817,0.22342,0.21436,0.19902,0.19113,0.18862,0.17536,0.1737,0.1701,0.16242,0.14848 1,9.829e-33,1.7867e-32,1.8409e-32,2.2036e-32,2.5304e-32,3.0341e-32,4.313e-32,9.9241e-32,1.6818e-31,1.8235e-31,2.7702e-31,2.9656e-31,3.8873e-31,7.4935e-31,9.2015e-31,1.0611e-30,1.9645e-30,2.1832e-30,2.454e-30,3.6323e-30,3.7884e-30,3.8812e-30,5.2292e-30,6.2339e-30,6.2697e-30,8.7792e-30,9.0522e-30,1.0536e-29,1.0749e-29,1.0959e-29,3.06e-29,8.1012e-29,8.8436e-29,1.1763e-28,1.5167e-28,1.847e-28,2.3325e-28,3.0579e-28,4.918e-28,6.3837e-28,9.7445e-28,1.6558e-27,1.7386e-27,1.9287e-27,2.1226e-27,3.491e-27,3.4936e-27,1.1364e-26,1.2398e-26,1.3012e-26,1.8484e-26,1.8967e-26,3.7665e-26,4.9272e-26,5.5089e-26,7.0351e-26,8.2161e-26,1.0717e-25,1.1637e-25,2.1872e-25,3.223e-25,1.0808e-24,1.5031e-24,1.678e-24,2.0429e-24,3.501e-24,3.9086e-24,4.3095e-24,6.809e-24,1.0438e-23,1.2221e-23,1.3903e-23,2.2161e-23,4.328e-23,8.7229e-23,1.3948e-22,1.5387e-22,3.681e-22,4.9684e-22,5.7128e-22,6.0776e-22,7.8071e-22,2.1749e-21,2.2475e-21,2.6845e-21,3.5566e-21,3.7582e-21,5.607e-21,1.6742e-20,1.6985e-20,2.307e-20,2.5745e-20,8.916e-20,1.2153e-19,1.2433e-19,1.638e-19,2.3763e-19,2.3938e-19,2.4668e-19,3.085e-19,3.0912e-19,3.784e-19,4.0914e-19,1.2399e-18,2.0074e-18,2.0403e-18,3.5127e-18,4.0605e-18,5.0785e-18,5.661e-18,6.0351e-18,6.4773e-18,6.6282e-18,7.0484e-18,9.0234e-18,9.286e-18,9.8512e-18,1.034e-17,1.4882e-17,2.2414e-17,3.7826e-17,4.602e-17,6.9549e-17,1.0996e-16,1.3323e-16,1.4706e-16,4.3411e-16,4.9145e-16,5.383e-16,6.4456e-16,8.0991e-16,9.8643e-16,1.1572e-15,1.1905e-15,1.2119e-15,1.481e-15,2.5009e-15,2.5988e-15,3.1895e-15,4.3753e-15,5.2058e-15,5.3545e-15,1.4322e-14,1.4471e-14,1.7544e-14,2.5517e-14,2.7312e-14,3.5162e-14,3.7317e-14,5.6484e-14,7.3898e-14,1.3547e-13,1.3744e-13,2.725e-13,2.9448e-13,3.0185e-13,4.6811e-13,4.813e-13,5.6323e-13,6.9229e-13,7.3826e-13,7.7499e-13,9.3803e-13,9.6809e-13,9.882e-13,1.149e-12,1.2112e-12,1.228e-12,1.3908e-12,1.4544e-12,1.8618e-12,2.7961e-12,3.0052e-12,3.0634e-12,3.6697e-12,3.9532e-12,5.3446e-12,9.0283e-12,1.0608e-11,1.3674e-11,1.5006e-11,1.9405e-11,2.5021e-11,2.5544e-11,2.5956e-11,2.6005e-11,2.8018e-11,2.8196e-11,3.5589e-11,3.9587e-11,4.8321e-11,4.8751e-11,5.144e-11,7.247e-11,7.3194e-11,8.6076e-11,1.0342e-10,1.4325e-10,1.4949e-10,1.6881e-10,1.7345e-10,1.8576e-10,2.083e-10,2.4811e-10,2.4929e-10,3.6952e-10,5.7548e-10,6.0302e-10,6.3502e-10,6.4532e-10,8.3951e-10,9.8614e-10,1.6919e-09,1.7401e-09,1.8412e-09,2.0248e-09,2.8754e-09,4.1284e-09,6.1046e-09,6.8603e-09,7.3535e-09,8.7652e-09,1.2459e-08,1.4523e-08,1.7699e-08,2.3926e-08,3.0963e-08,3.2428e-08,5.2951e-08,5.6447e-08,5.7779e-08,6.4692e-08,6.7659e-08,9.6543e-08,1.1229e-07,1.1729e-07,1.1781e-07,1.2905e-07,1.4586e-07,1.5434e-07,1.5827e-07,2.4494e-07,2.4507e-07,3.6104e-07,5.5833e-07,8.2972e-07,1.1885e-06,1.386e-06,1.4427e-06,1.5842e-06,1.7186e-06,2.0798e-06,2.1237e-06,3.0521e-06,3.3418e-06,4.0028e-06,4.9983e-06,5.7122e-06,5.7988e-06,6.4593e-06,6.9416e-06,8.276e-06,1.0719e-05,1.0981e-05,1.2289e-05,1.4656e-05,1.6891e-05,1.7003e-05,2.7521e-05,2.974e-05,3.0864e-05,3.3934e-05,3.564e-05,3.8493e-05,4.3486e-05,4.5668e-05,4.8884e-05,5.4508e-05,6.2693e-05,7.1565e-05,7.2528e-05,8.5117e-05,9.4491e-05,0.00010355,0.00012725,0.00013969,0.00014449,0.00016278,0.00016395,0.00017269,0.00017669,0.00023837,0.00025716,0.00026482,0.00030259,0.00032674,0.00033056,0.00039481,0.00055182,0.00060867,0.00064004,0.00071899,0.00072619,0.00082656,0.00083829,0.00098849,0.001088,0.001316,0.0013386,0.0013602,0.0013724,0.001413,0.0014469,0.001468,0.0017074,0.0017618,0.0023622,0.0026016,0.0027722,0.0028426,0.0034915,0.0035039,0.0037464,0.0038648,0.0045127,0.0045348,0.0045872,0.0051392,0.0053021,0.0053611,0.0055442,0.0057892,0.0060297,0.0061582,0.0075574,0.0076115,0.0084571,0.0098836,0.011417,0.013896,0.013934,0.014924,0.016257,0.018176,0.018199,0.018908,0.022576,0.02351,0.023615,0.028911,0.0302,0.030965,0.033424,0.036022,0.041251,0.042125,0.046562,0.057904,0.05807,0.059093,0.06123,0.062951,0.065125,0.067768,0.0967,0.10569,0.1207,0.13287,0.13349,0.13493,0.15492,0.15988,0.16029,0.18181,0.22256,0.22395,0.23707,0.23984,0.27203,0.28149,0.3028,0.31426,0.32721,0.32977,0.34557,0.3484,0.34974,0.38723,0.39879,0.4037,0.41983,0.42496,0.44881,0.45431,0.46547,0.49363,0.49389,0.50759,0.51224,0.51225,0.54281,0.54378,0.55647,0.56991,0.5993,0.6258,0.64477,0.67475,0.70216,0.73701,0.73841,0.76449,0.78884,0.80282,0.83867,0.84871,0.86832,0.87943,0.90132,0.90352,0.90801,0.91802,0.93731,0.95468,0.96281,0.97016,0.97369,0.97417,0.97997,0.98578,0.99742,0.99894,0.9995,1,1,0.99952,0.99939,0.99844,0.99736,0.99164,0.99055,0.98356,0.97537,0.93795,0.92921,0.92481,0.91272,0.90069,0.89595,0.88621,0.879,0.86982,0.85409,0.854,0.82411,0.81585,0.81411,0.81318,0.7804,0.77963,0.77624,0.77367,0.76699,0.7558,0.74566,0.69961,0.59832,0.56803,0.56536,0.56316,0.55603,0.55207,0.51473,0.49047,0.47304,0.46338,0.44342,0.42672,0.42364,0.40071,0.38799,0.37272,0.34882,0.31861,0.31673,0.30689,0.30016,0.29716,0.26634,0.25826,0.2235,0.21444,0.1991,0.19121,0.1887,0.17543,0.17377,0.17017,0.16249,0.14854 1,6.7433e-33,1.2277e-32,1.265e-32,1.5149e-32,1.7402e-32,2.0876e-32,2.9702e-32,6.8492e-32,1.1623e-31,1.2605e-31,1.917e-31,2.0526e-31,2.6924e-31,5.1991e-31,6.3876e-31,7.3689e-31,1.3665e-30,1.519e-30,1.708e-30,2.5307e-30,2.6397e-30,2.7046e-30,3.6468e-30,4.3495e-30,4.3745e-30,6.1311e-30,6.3222e-30,7.3616e-30,7.5105e-30,7.6581e-30,2.1442e-29,5.6916e-29,6.2147e-29,8.273e-29,1.0674e-28,1.3005e-28,1.6435e-28,2.1562e-28,3.4723e-28,4.5105e-28,6.8932e-28,1.173e-27,1.2318e-27,1.3669e-27,1.5048e-27,2.4783e-27,2.4802e-27,8.0946e-27,8.8331e-27,9.2717e-27,1.3184e-26,1.3529e-26,2.692e-26,3.5243e-26,3.9416e-26,5.0372e-26,5.8854e-26,7.683e-26,8.3442e-26,1.5712e-25,2.3179e-25,7.8008e-25,1.0859e-24,1.2126e-24,1.4772e-24,2.5356e-24,2.8318e-24,3.1231e-24,4.9412e-24,7.5844e-24,8.8843e-24,1.0111e-23,1.6139e-23,3.1584e-23,6.3794e-23,1.0216e-22,1.1273e-22,2.7041e-22,3.6532e-22,4.2024e-22,4.4716e-22,5.7486e-22,1.6067e-21,1.6605e-21,1.9844e-21,2.6315e-21,2.7811e-21,4.1546e-21,1.2449e-20,1.263e-20,1.7172e-20,1.9171e-20,6.6663e-20,9.096e-20,9.3059e-20,1.2272e-19,1.7825e-19,1.7957e-19,1.8506e-19,2.3161e-19,2.3208e-19,2.8429e-19,3.0746e-19,9.3526e-19,1.5167e-18,1.5417e-18,2.6592e-18,3.0755e-18,3.8495e-18,4.2926e-18,4.5773e-18,4.9139e-18,5.0287e-18,5.3487e-18,6.8533e-18,7.0535e-18,7.4843e-18,7.8569e-18,1.1323e-17,1.7078e-17,2.8875e-17,3.5155e-17,5.3207e-17,8.4265e-17,1.0216e-16,1.1281e-16,3.3432e-16,3.7866e-16,4.149e-16,4.9713e-16,6.2518e-16,7.62e-16,8.9448e-16,9.2031e-16,9.3689e-16,1.1458e-15,1.9387e-15,2.0148e-15,2.4748e-15,3.3989e-15,4.0467e-15,4.1628e-15,1.1176e-14,1.1293e-14,1.3702e-14,1.9958e-14,2.1367e-14,2.7537e-14,2.9231e-14,4.4317e-14,5.8042e-14,1.0666e-13,1.0822e-13,2.1516e-13,2.3259e-13,2.3843e-13,3.7043e-13,3.8091e-13,4.4604e-13,5.4872e-13,5.8531e-13,6.1456e-13,7.4443e-13,7.6839e-13,7.8442e-13,9.1266e-13,9.6225e-13,9.7562e-13,1.1056e-12,1.1564e-12,1.4818e-12,2.2293e-12,2.3967e-12,2.4433e-12,2.9291e-12,3.1564e-12,4.2729e-12,7.2343e-12,8.5058e-12,1.0976e-11,1.2051e-11,1.5601e-11,2.0139e-11,2.0562e-11,2.0895e-11,2.0934e-11,2.2563e-11,2.2706e-11,2.869e-11,3.1928e-11,3.9007e-11,3.9356e-11,4.1537e-11,5.8609e-11,5.9197e-11,6.9667e-11,8.3779e-11,1.1622e-10,1.213e-10,1.3705e-10,1.4084e-10,1.5088e-10,1.6928e-10,2.0179e-10,2.0276e-10,3.011e-10,4.6991e-10,4.9251e-10,5.1877e-10,5.2722e-10,6.8674e-10,8.0731e-10,1.3887e-09,1.4285e-09,1.5119e-09,1.6634e-09,2.3663e-09,3.4035e-09,5.0427e-09,5.6702e-09,6.08e-09,7.2537e-09,1.0329e-08,1.205e-08,1.47e-08,1.9903e-08,2.5791e-08,2.7019e-08,4.4233e-08,4.717e-08,4.8289e-08,5.4099e-08,5.6593e-08,8.091e-08,9.4189e-08,9.8404e-08,9.8842e-08,1.0833e-07,1.2252e-07,1.2968e-07,1.33e-07,2.0633e-07,2.0645e-07,3.0481e-07,4.7255e-07,7.0387e-07,1.0104e-06,1.1793e-06,1.2279e-06,1.3491e-06,1.4643e-06,1.774e-06,1.8117e-06,2.6094e-06,2.8587e-06,3.428e-06,4.2865e-06,4.9029e-06,4.9777e-06,5.5484e-06,5.9654e-06,7.1201e-06,9.2377e-06,9.4646e-06,1.0599e-05,1.2656e-05,1.4599e-05,1.4697e-05,2.3865e-05,2.5803e-05,2.6785e-05,2.9469e-05,3.0961e-05,3.3457e-05,3.7828e-05,3.974e-05,4.2558e-05,4.749e-05,5.4675e-05,6.2471e-05,6.3317e-05,7.4393e-05,8.2648e-05,9.0628e-05,0.00011154,0.00012253,0.00012677,0.00014294,0.00014398,0.00015172,0.00015525,0.00020993,0.0002266,0.00023341,0.00026697,0.00028845,0.00029185,0.00034905,0.00048915,0.00053997,0.00056803,0.0006387,0.00064516,0.0007351,0.00074562,0.00088042,0.0009698,0.0011749,0.0011953,0.0012148,0.0012258,0.0012623,0.0012929,0.0013119,0.0015278,0.0015769,0.0021198,0.0023367,0.0024913,0.0025551,0.0031443,0.0031556,0.003376,0.0034838,0.0040737,0.0040938,0.0041416,0.0046449,0.0047936,0.0048474,0.0050147,0.0052384,0.0054582,0.0055756,0.0068563,0.0069059,0.0076811,0.0089909,0.010401,0.012686,0.012721,0.013635,0.014866,0.016641,0.016662,0.017319,0.020719,0.021587,0.021684,0.026608,0.027809,0.028521,0.030814,0.033239,0.038128,0.038945,0.0431,0.053749,0.053905,0.054867,0.056878,0.058497,0.060545,0.063036,0.09039,0.098924,0.1132,0.12479,0.12538,0.12675,0.14585,0.15059,0.15099,0.17162,0.21082,0.21215,0.22481,0.22749,0.25864,0.26781,0.28849,0.29964,0.31225,0.31474,0.33015,0.3329,0.33422,0.37087,0.38219,0.38701,0.40283,0.40788,0.43133,0.43676,0.44775,0.47555,0.47581,0.48936,0.49396,0.49397,0.52427,0.52524,0.53785,0.55122,0.58051,0.607,0.62601,0.65614,0.68376,0.71904,0.72045,0.74696,0.77181,0.78612,0.823,0.83337,0.85373,0.8653,0.88825,0.89057,0.8953,0.90589,0.92647,0.94525,0.95417,0.96233,0.96629,0.96683,0.97342,0.98015,0.99472,0.99704,0.99804,0.99951,0.99952,1,0.99999,0.99969,0.99913,0.99515,0.99432,0.98865,0.98167,0.94796,0.93986,0.93576,0.92445,0.91311,0.90862,0.89938,0.89252,0.88375,0.86867,0.86859,0.83975,0.83175,0.83006,0.82916,0.79723,0.79649,0.79317,0.79066,0.78413,0.77317,0.76322,0.71784,0.61712,0.58679,0.58411,0.5819,0.57474,0.57077,0.53319,0.50872,0.49109,0.48131,0.46107,0.44412,0.44099,0.41767,0.4047,0.38912,0.36469,0.33374,0.33181,0.32171,0.31479,0.31172,0.27997,0.27164,0.23571,0.22632,0.2104,0.2022,0.19959,0.18579,0.18405,0.1803,0.17229,0.15773 1,6.4341e-33,1.1716e-32,1.2072e-32,1.4458e-32,1.6609e-32,1.9926e-32,2.8353e-32,6.5399e-32,1.11e-31,1.2038e-31,1.831e-31,1.9606e-31,2.5719e-31,4.9676e-31,6.1036e-31,7.0416e-31,1.3061e-30,1.4519e-30,1.6326e-30,2.4193e-30,2.5235e-30,2.5855e-30,3.4867e-30,4.1588e-30,4.1827e-30,5.8628e-30,6.0457e-30,7.0399e-30,7.1824e-30,7.3236e-30,2.0512e-29,5.4467e-29,5.9474e-29,7.9179e-29,1.0217e-28,1.2449e-28,1.5733e-28,2.0643e-28,3.325e-28,4.3194e-28,6.6021e-28,1.1237e-27,1.1801e-27,1.3095e-27,1.4416e-27,2.3747e-27,2.3765e-27,7.7595e-27,8.4677e-27,8.8883e-27,1.264e-26,1.2972e-26,2.5817e-26,3.3801e-26,3.7806e-26,4.8318e-26,5.6457e-26,7.3708e-26,8.0054e-26,1.5078e-25,2.2246e-25,7.4901e-25,1.0428e-24,1.1645e-24,1.4187e-24,2.4357e-24,2.7203e-24,3.0002e-24,4.7477e-24,7.2885e-24,8.5382e-24,9.7176e-24,1.5514e-23,3.0368e-23,6.1354e-23,9.8268e-23,1.0844e-22,2.6021e-22,3.5159e-22,4.0447e-22,4.3038e-22,5.5335e-22,1.5471e-21,1.599e-21,1.9111e-21,2.5345e-21,2.6787e-21,4.0022e-21,1.1998e-20,1.2172e-20,1.6552e-20,1.8479e-20,6.429e-20,8.7733e-20,8.9759e-20,1.1838e-19,1.7198e-19,1.7325e-19,1.7855e-19,2.2348e-19,2.2393e-19,2.7433e-19,2.967e-19,9.0296e-19,1.4646e-18,1.4887e-18,2.5685e-18,2.9707e-18,3.7188e-18,4.1471e-18,4.4222e-18,4.7475e-18,4.8586e-18,5.1678e-18,6.6223e-18,6.8158e-18,7.2323e-18,7.5925e-18,1.0944e-17,1.6509e-17,2.7919e-17,3.3994e-17,5.146e-17,8.1514e-17,9.8836e-17,1.0914e-16,3.2361e-16,3.6655e-16,4.0164e-16,4.8129e-16,6.0533e-16,7.3787e-16,8.6621e-16,8.9124e-16,9.0731e-16,1.1097e-15,1.8781e-15,1.9519e-15,2.3977e-15,3.2935e-15,3.9216e-15,4.0342e-15,1.0836e-14,1.095e-14,1.3286e-14,1.9356e-14,2.0723e-14,2.671e-14,2.8354e-14,4.2997e-14,5.6321e-14,1.0353e-13,1.0504e-13,2.0891e-13,2.2584e-13,2.3152e-13,3.5977e-13,3.6996e-13,4.3325e-13,5.3304e-13,5.6861e-13,5.9703e-13,7.2328e-13,7.4657e-13,7.6215e-13,8.8682e-13,9.3503e-13,9.4803e-13,1.0744e-12,1.1238e-12,1.4402e-12,2.1672e-12,2.33e-12,2.3754e-12,2.8479e-12,3.069e-12,4.1553e-12,7.0372e-12,8.2747e-12,1.068e-11,1.1726e-11,1.5183e-11,1.9601e-11,2.0013e-11,2.0338e-11,2.0376e-11,2.1962e-11,2.2101e-11,2.793e-11,3.1083e-11,3.7979e-11,3.8319e-11,4.0444e-11,5.7078e-11,5.7651e-11,6.7853e-11,8.1606e-11,1.1322e-10,1.1818e-10,1.3353e-10,1.3723e-10,1.4701e-10,1.6495e-10,1.9666e-10,1.976e-10,2.9351e-10,4.5818e-10,4.8023e-10,5.0585e-10,5.1409e-10,6.6974e-10,7.8741e-10,1.3549e-09,1.3937e-09,1.4751e-09,1.6231e-09,2.3094e-09,3.3225e-09,4.9238e-09,5.537e-09,5.9374e-09,7.0844e-09,1.009e-08,1.1773e-08,1.4364e-08,1.9451e-08,2.521e-08,2.641e-08,4.3251e-08,4.6124e-08,4.7219e-08,5.2905e-08,5.5346e-08,7.9145e-08,9.2144e-08,9.6271e-08,9.67e-08,1.0599e-07,1.1988e-07,1.269e-07,1.3015e-07,2.0196e-07,2.0207e-07,2.9843e-07,4.6281e-07,6.8956e-07,9.9008e-07,1.1558e-06,1.2034e-06,1.3223e-06,1.4353e-06,1.7391e-06,1.7761e-06,2.5589e-06,2.8035e-06,3.3623e-06,4.2051e-06,4.8103e-06,4.8837e-06,5.4441e-06,5.8536e-06,6.9877e-06,9.0677e-06,9.2906e-06,1.0405e-05,1.2426e-05,1.4336e-05,1.4432e-05,2.3444e-05,2.5349e-05,2.6315e-05,2.8954e-05,3.0421e-05,3.2876e-05,3.7175e-05,3.9055e-05,4.1827e-05,4.668e-05,5.3748e-05,6.142e-05,6.2252e-05,7.3152e-05,8.1277e-05,8.9132e-05,0.00010972,0.00012054,0.00012471,0.00014064,0.00014166,0.00014928,0.00015276,0.00020662,0.00022305,0.00022975,0.00026282,0.00028399,0.00028734,0.00034372,0.00048184,0.00053195,0.00055962,0.00062932,0.00063569,0.00072441,0.00073478,0.00086777,0.00095596,0.0011584,0.0011785,0.0011977,0.0012086,0.0012446,0.0012748,0.0012935,0.0015067,0.0015552,0.0020913,0.0023055,0.0024582,0.0025212,0.0031033,0.0031145,0.0033323,0.0034388,0.0040219,0.0040417,0.0040889,0.0045866,0.0047335,0.0047868,0.0049521,0.0051733,0.0053906,0.0055067,0.0067733,0.0068223,0.0075892,0.008885,0.01028,0.012542,0.012577,0.013481,0.014701,0.016458,0.016479,0.01713,0.020498,0.021357,0.021454,0.026333,0.027523,0.028229,0.030502,0.032906,0.037753,0.038564,0.042685,0.05325,0.053404,0.054359,0.056355,0.057962,0.059994,0.062466,0.089629,0.098106,0.11229,0.12381,0.1244,0.12576,0.14475,0.14946,0.14986,0.17038,0.20939,0.21072,0.22332,0.22599,0.257,0.26613,0.28674,0.29785,0.31042,0.3129,0.32825,0.331,0.33231,0.36886,0.38015,0.38495,0.40074,0.40577,0.42918,0.43459,0.44556,0.47331,0.47358,0.48711,0.4917,0.49171,0.52198,0.52294,0.53554,0.5489,0.57818,0.60466,0.62368,0.65381,0.68146,0.71678,0.7182,0.74475,0.76967,0.78402,0.82102,0.83143,0.85187,0.8635,0.88657,0.88891,0.89367,0.90433,0.92507,0.94402,0.95303,0.96129,0.9653,0.96585,0.97254,0.97939,0.99432,0.99674,0.99779,0.99939,0.99939,0.99999,1,0.99978,0.99928,0.99553,0.99472,0.98922,0.98239,0.94915,0.94113,0.93707,0.92585,0.9146,0.91015,0.90097,0.89415,0.88544,0.87044,0.87036,0.84166,0.83369,0.83201,0.83111,0.7993,0.79856,0.79525,0.79275,0.78623,0.7753,0.76538,0.72009,0.61946,0.58913,0.58645,0.58423,0.57708,0.5731,0.5355,0.511,0.49335,0.48355,0.46329,0.44631,0.44317,0.4198,0.4068,0.39118,0.36669,0.33565,0.33372,0.32358,0.31664,0.31355,0.2817,0.27334,0.23725,0.22783,0.21184,0.2036,0.20098,0.18711,0.18536,0.18159,0.17354,0.1589 1,4.9803e-33,9.078e-33,9.3547e-33,1.1207e-32,1.2878e-32,1.5454e-32,2.2004e-32,5.0827e-32,8.6347e-32,9.3661e-32,1.4256e-31,1.5267e-31,2.0037e-31,3.8746e-31,4.7623e-31,5.4956e-31,1.0204e-30,1.1346e-30,1.2761e-30,1.8923e-30,1.974e-30,2.0226e-30,2.729e-30,3.2561e-30,3.2749e-30,4.5931e-30,4.7366e-30,5.5172e-30,5.629e-30,5.7399e-30,1.6107e-29,4.2845e-29,4.6792e-29,6.2328e-29,8.0464e-29,9.8079e-29,1.24e-28,1.6279e-28,2.6243e-28,3.4109e-28,5.2176e-28,8.8893e-28,9.3361e-28,1.0362e-27,1.141e-27,1.8812e-27,1.8827e-27,6.161e-27,6.7244e-27,7.0591e-27,1.0046e-26,1.031e-26,2.0546e-26,2.6914e-26,3.0109e-26,3.85e-26,4.4999e-26,5.8779e-26,6.3851e-26,1.2041e-25,1.7779e-25,6.0004e-25,8.3594e-25,9.3375e-25,1.138e-24,1.9559e-24,2.1849e-24,2.4103e-24,3.8176e-24,5.8658e-24,6.8738e-24,7.8253e-24,1.2505e-23,2.4512e-23,4.9594e-23,7.9511e-23,8.7763e-23,2.1098e-22,2.8524e-22,3.2824e-22,3.4932e-22,4.4936e-22,1.2592e-21,1.3014e-21,1.5561e-21,2.0649e-21,2.1827e-21,3.2639e-21,9.808e-21,9.9509e-21,1.3541e-20,1.512e-20,5.2752e-20,7.2038e-20,7.3705e-20,9.7268e-20,1.4143e-19,1.4247e-19,1.4684e-19,1.8389e-19,1.8426e-19,2.2584e-19,2.443e-19,7.4536e-19,1.2104e-18,1.2303e-18,2.1254e-18,2.459e-18,3.0798e-18,3.4354e-18,3.6639e-18,3.9341e-18,4.0263e-18,4.2832e-18,5.492e-18,5.6528e-18,5.9991e-18,6.2986e-18,9.0864e-18,1.3721e-17,2.3233e-17,2.8302e-17,4.2886e-17,6.801e-17,8.25e-17,9.1127e-17,2.7092e-16,3.0696e-16,3.3643e-16,4.0332e-16,5.0756e-16,6.19e-16,7.2696e-16,7.4802e-16,7.6154e-16,9.3187e-16,1.5793e-15,1.6415e-15,2.0175e-15,2.7735e-15,3.3039e-15,3.399e-15,9.1534e-15,9.2495e-15,1.1229e-14,1.6375e-14,1.7535e-14,2.2616e-14,2.4012e-14,3.6453e-14,4.7783e-14,8.7981e-14,8.9269e-14,1.7788e-13,1.9233e-13,1.9718e-13,3.0679e-13,3.155e-13,3.6964e-13,4.5504e-13,4.8548e-13,5.0982e-13,6.1796e-13,6.3792e-13,6.5127e-13,7.5813e-13,7.9946e-13,8.1061e-13,9.1897e-13,9.6134e-13,1.2329e-12,1.8574e-12,1.9974e-12,2.0364e-12,2.4427e-12,2.6329e-12,3.568e-12,6.0519e-12,7.1195e-12,9.1958e-12,1.0099e-11,1.3087e-11,1.6908e-11,1.7264e-11,1.7545e-11,1.7578e-11,1.8951e-11,1.9071e-11,2.4118e-11,2.6849e-11,3.2826e-11,3.3121e-11,3.4963e-11,4.9395e-11,4.9892e-11,5.8751e-11,7.0699e-11,9.819e-11,1.025e-10,1.1586e-10,1.1908e-10,1.276e-10,1.4322e-10,1.7084e-10,1.7166e-10,2.553e-10,3.991e-10,4.1837e-10,4.4076e-10,4.4797e-10,5.841e-10,6.8707e-10,1.1844e-09,1.2184e-09,1.2898e-09,1.4196e-09,2.0223e-09,2.913e-09,4.3227e-09,4.8629e-09,5.2158e-09,6.2271e-09,8.8798e-09,1.0366e-08,1.2656e-08,1.7157e-08,2.2258e-08,2.3322e-08,3.826e-08,4.0812e-08,4.1784e-08,4.6834e-08,4.9003e-08,7.0167e-08,8.1737e-08,8.5411e-08,8.5793e-08,9.4065e-08,1.0644e-07,1.127e-07,1.156e-07,1.7968e-07,1.7978e-07,2.659e-07,4.1306e-07,6.1639e-07,8.8629e-07,1.0353e-06,1.0781e-06,1.1851e-06,1.2867e-06,1.5603e-06,1.5937e-06,2.2995e-06,2.5203e-06,3.025e-06,3.7867e-06,4.3341e-06,4.4006e-06,4.9078e-06,5.2786e-06,6.3061e-06,8.1925e-06,8.3948e-06,9.4068e-06,1.1242e-05,1.2978e-05,1.3065e-05,2.1271e-05,2.3008e-05,2.3889e-05,2.6296e-05,2.7634e-05,2.9875e-05,3.3801e-05,3.5519e-05,3.8052e-05,4.2488e-05,4.8955e-05,5.5978e-05,5.674e-05,6.6726e-05,7.4175e-05,8.1381e-05,0.00010028,0.00011022,0.00011406,0.0001287,0.00012964,0.00013665,0.00013985,0.00018944,0.00020459,0.00021077,0.00024127,0.00026081,0.0002639,0.00031597,0.00044374,0.00049016,0.0005158,0.0005804,0.00058631,0.00066862,0.00067825,0.00080174,0.00088371,0.001072,0.0010907,0.0011086,0.0011187,0.0011523,0.0011804,0.0011978,0.0013965,0.0014417,0.001942,0.0021422,0.002285,0.0023439,0.0028888,0.0028992,0.0031033,0.0032031,0.0037499,0.0037685,0.0038128,0.0042799,0.004418,0.004468,0.0046233,0.0048312,0.0050355,0.0051447,0.0063366,0.0063828,0.0071053,0.0083274,0.0096449,0.011783,0.011816,0.012672,0.013827,0.015493,0.015512,0.016129,0.019327,0.020143,0.020235,0.024877,0.02601,0.026682,0.028848,0.031141,0.035768,0.036543,0.040482,0.050596,0.050744,0.051659,0.053573,0.055114,0.057064,0.059436,0.085566,0.093741,0.10744,0.11857,0.11915,0.12047,0.13886,0.14343,0.14382,0.16374,0.2017,0.203,0.21529,0.21789,0.24819,0.25713,0.27731,0.2882,0.30053,0.30296,0.31805,0.32075,0.32203,0.35799,0.36912,0.37385,0.38943,0.39439,0.41751,0.42286,0.43371,0.4612,0.46146,0.47488,0.47944,0.47944,0.5095,0.51046,0.52299,0.53629,0.56547,0.59192,0.61093,0.64113,0.66889,0.70444,0.70587,0.73267,0.75788,0.77243,0.81007,0.82069,0.84161,0.85354,0.87728,0.8797,0.88461,0.89565,0.91723,0.9371,0.94663,0.95542,0.95972,0.9603,0.96751,0.97498,0.99187,0.99483,0.99617,0.99843,0.99844,0.99969,0.99978,1,0.99986,0.99729,0.99665,0.99206,0.98607,0.9554,0.94784,0.94399,0.93332,0.92256,0.91829,0.90946,0.90289,0.89447,0.87994,0.87986,0.85192,0.84414,0.8425,0.84162,0.81045,0.80972,0.80647,0.80401,0.7976,0.78684,0.77706,0.7323,0.63219,0.60187,0.59919,0.59697,0.5898,0.58582,0.54811,0.52348,0.50572,0.49585,0.47542,0.45828,0.45512,0.43149,0.41834,0.40252,0.37769,0.34616,0.34419,0.33388,0.32682,0.32368,0.29122,0.28268,0.24581,0.23616,0.21978,0.21133,0.20864,0.1944,0.19261,0.18874,0.18046,0.1654 1,4.0531e-33,7.3941e-33,7.6197e-33,9.131e-33,1.0494e-32,1.2596e-32,1.7944e-32,4.1499e-32,7.0552e-32,7.6536e-32,1.1657e-31,1.2484e-31,1.6391e-31,3.1726e-31,3.9006e-31,4.5022e-31,8.3672e-31,9.3046e-31,1.0466e-30,1.553e-30,1.6201e-30,1.6601e-30,2.2408e-30,2.6743e-30,2.6897e-30,3.7744e-30,3.8924e-30,4.5349e-30,4.6269e-30,4.7182e-30,1.326e-29,3.5323e-29,3.8581e-29,5.1413e-29,6.6399e-29,8.0958e-29,1.0239e-28,1.3447e-28,2.1694e-28,2.8207e-28,4.3176e-28,7.3619e-28,7.7324e-28,8.5839e-28,9.4528e-28,1.5598e-27,1.561e-27,5.1174e-27,5.5862e-27,5.8646e-27,8.3504e-27,8.5702e-27,1.7098e-26,2.2406e-26,2.5071e-26,3.2069e-26,3.7492e-26,4.8994e-26,5.3228e-26,1.0048e-25,1.4845e-25,5.02e-25,6.9971e-25,7.8173e-25,9.5303e-25,1.6394e-24,1.8317e-24,2.0209e-24,3.2033e-24,4.9254e-24,5.7733e-24,6.5738e-24,1.0513e-23,2.0631e-23,4.179e-23,6.7053e-23,7.4023e-23,1.7821e-22,2.4106e-22,2.7747e-22,2.9532e-22,3.8006e-22,1.0669e-21,1.1027e-21,1.3189e-21,1.751e-21,1.8511e-21,2.77e-21,8.3397e-21,8.4615e-21,1.152e-20,1.2867e-20,4.4989e-20,6.1471e-20,6.2896e-20,8.3046e-20,1.2083e-19,1.2172e-19,1.2547e-19,1.5718e-19,1.575e-19,1.9311e-19,2.0892e-19,6.3875e-19,1.0382e-18,1.0553e-18,1.8249e-18,2.112e-18,2.6463e-18,2.9524e-18,3.1492e-18,3.3819e-18,3.4613e-18,3.6826e-18,4.724e-18,4.8627e-18,5.1611e-18,5.4192e-18,7.8233e-18,1.1823e-17,2.004e-17,2.4421e-17,3.7035e-17,5.8784e-17,7.1336e-17,7.881e-17,2.3481e-16,2.6611e-16,2.9171e-16,3.4984e-16,4.4045e-16,5.3738e-16,6.3131e-16,6.4963e-16,6.614e-16,8.0966e-16,1.3737e-15,1.4279e-15,1.7557e-15,2.4151e-15,2.878e-15,2.9611e-15,7.9906e-15,8.0747e-15,9.8064e-15,1.4312e-14,1.5329e-14,1.9781e-14,2.1005e-14,3.1915e-14,4.186e-14,7.7177e-14,7.8309e-14,1.5628e-13,1.69e-13,1.7328e-13,2.6985e-13,2.7753e-13,3.2527e-13,4.0061e-13,4.2748e-13,4.4896e-13,5.4442e-13,5.6204e-13,5.7383e-13,6.6821e-13,7.0473e-13,7.1457e-13,8.1033e-13,8.4778e-13,1.0879e-12,1.6404e-12,1.7644e-12,1.7989e-12,2.1588e-12,2.3273e-12,3.156e-12,5.3597e-12,6.3076e-12,8.152e-12,8.9551e-12,1.1611e-11,1.501e-11,1.5327e-11,1.5578e-11,1.5607e-11,1.6829e-11,1.6936e-11,2.143e-11,2.3863e-11,2.9189e-11,2.9452e-11,3.1094e-11,4.3966e-11,4.441e-11,5.2316e-11,6.2984e-11,8.7546e-11,9.1402e-11,1.0335e-10,1.0622e-10,1.1384e-10,1.2782e-10,1.5253e-10,1.5327e-10,2.2817e-10,3.571e-10,3.7439e-10,3.9448e-10,4.0095e-10,5.2314e-10,6.1563e-10,1.0628e-09,1.0933e-09,1.1576e-09,1.2744e-09,1.8172e-09,2.6201e-09,3.8922e-09,4.38e-09,4.6988e-09,5.6126e-09,8.0113e-09,9.3564e-09,1.143e-08,1.5508e-08,2.0133e-08,2.1098e-08,3.4661e-08,3.6979e-08,3.7863e-08,4.2454e-08,4.4426e-08,6.3679e-08,7.4212e-08,7.7559e-08,7.7907e-08,8.5441e-08,9.6719e-08,1.0242e-07,1.0506e-07,1.6352e-07,1.6361e-07,2.4228e-07,3.7688e-07,5.6311e-07,8.1061e-07,9.4737e-07,9.867e-07,1.0849e-06,1.1783e-06,1.4297e-06,1.4604e-06,2.1097e-06,2.313e-06,2.7778e-06,3.48e-06,3.9848e-06,4.0461e-06,4.5142e-06,4.8565e-06,5.8053e-06,7.5487e-06,7.7358e-06,8.6718e-06,1.037e-05,1.1978e-05,1.2059e-05,1.9666e-05,2.1278e-05,2.2096e-05,2.4331e-05,2.5574e-05,2.7656e-05,3.1304e-05,3.2901e-05,3.5257e-05,3.9384e-05,4.5402e-05,5.1942e-05,5.2652e-05,6.1957e-05,6.8901e-05,7.5622e-05,9.3261e-05,0.00010254,0.00010613,0.00011981,0.00012069,0.00012724,0.00013023,0.00017663,0.00019081,0.0001966,0.00022517,0.00024349,0.00024639,0.00029523,0.00041521,0.00045883,0.00048294,0.00054371,0.00054927,0.00062674,0.00063581,0.00075213,0.00082939,0.001007,0.0010247,0.0010415,0.0010511,0.0010828,0.0011093,0.0011258,0.0013134,0.0013561,0.0018293,0.0020188,0.0021541,0.0022099,0.0027264,0.0027363,0.0029299,0.0030246,0.0035437,0.0035614,0.0036034,0.0040473,0.0041785,0.0042261,0.0043738,0.0045715,0.0047658,0.0048697,0.0060044,0.0060484,0.0067369,0.0079025,0.0091601,0.011203,0.011235,0.012054,0.013159,0.014754,0.014773,0.015364,0.018429,0.019212,0.0193,0.023758,0.024847,0.025493,0.027576,0.029782,0.034238,0.034985,0.038782,0.048545,0.048688,0.049573,0.051422,0.052912,0.054797,0.057092,0.082411,0.090348,0.10366,0.1145,0.11505,0.11634,0.13426,0.13872,0.13909,0.15854,0.19567,0.19694,0.20899,0.21154,0.24126,0.25004,0.26988,0.28059,0.29272,0.29512,0.30998,0.31264,0.31391,0.34938,0.36038,0.36505,0.38045,0.38536,0.40824,0.41354,0.42429,0.45155,0.45181,0.46513,0.46966,0.46966,0.49954,0.5005,0.51296,0.5262,0.55529,0.58169,0.6007,0.63091,0.65874,0.69446,0.6959,0.72288,0.74831,0.76301,0.80113,0.81192,0.83319,0.84535,0.86961,0.87209,0.87712,0.88845,0.91068,0.93129,0.94122,0.95043,0.95494,0.95556,0.96319,0.97115,0.9896,0.99298,0.99456,0.99734,0.99736,0.99913,0.99928,0.99986,1,0.99839,0.99789,0.99404,0.98872,0.96015,0.95295,0.94928,0.93905,0.9287,0.92458,0.91605,0.90967,0.9015,0.88736,0.88728,0.85998,0.85235,0.85074,0.84988,0.81925,0.81853,0.81533,0.81291,0.80659,0.79598,0.78632,0.74202,0.6424,0.61211,0.60943,0.60721,0.60004,0.59605,0.55827,0.53355,0.51571,0.50579,0.48524,0.46798,0.46479,0.44097,0.42771,0.41174,0.38663,0.35473,0.35274,0.34229,0.33513,0.33195,0.299,0.29033,0.25282,0.243,0.2263,0.21768,0.21494,0.20041,0.19858,0.19462,0.18616,0.17076 1,2.0218e-33,3.6987e-33,3.8121e-33,4.5721e-33,5.2579e-33,6.3168e-33,9.0134e-33,2.0928e-32,3.5669e-32,3.8709e-32,5.9074e-32,6.3288e-32,8.3201e-32,1.6155e-31,1.9882e-31,2.2964e-31,4.2805e-31,4.7625e-31,5.3603e-31,7.9686e-31,8.315e-31,8.5209e-31,1.1519e-30,1.3759e-30,1.3838e-30,1.9451e-30,2.0062e-30,2.3391e-30,2.3868e-30,2.4341e-30,6.8754e-30,1.8405e-29,2.0111e-29,2.6839e-29,3.4705e-29,4.2357e-29,5.3635e-29,7.0535e-29,1.1406e-28,1.4851e-28,2.2781e-28,3.8948e-28,4.0919e-28,4.5448e-28,5.0074e-28,8.2836e-28,8.29e-28,2.7344e-27,2.9862e-27,3.1359e-27,4.4732e-27,4.5915e-27,9.1931e-27,1.2065e-26,1.3507e-26,1.73e-26,2.0242e-26,2.6489e-26,2.8791e-26,5.453e-26,8.0733e-26,2.7479e-25,3.837e-25,4.2893e-25,5.2348e-25,9.0315e-25,1.0097e-24,1.1146e-24,1.7712e-24,2.7297e-24,3.2024e-24,3.6491e-24,5.8509e-24,1.1525e-23,2.3437e-23,3.7704e-23,4.1647e-23,1.0076e-22,1.3654e-22,1.5728e-22,1.6746e-22,2.1582e-22,6.0943e-22,6.3006e-22,7.5434e-22,1.0032e-21,1.0608e-21,1.5911e-21,4.8216e-21,4.8925e-21,6.6732e-21,7.4581e-21,2.6273e-20,3.5966e-20,3.6805e-20,4.8678e-20,7.0986e-20,7.1516e-20,7.3727e-20,9.2491e-20,9.268e-20,1.1378e-19,1.2315e-19,3.7912e-19,6.1806e-19,6.2833e-19,1.0903e-18,1.263e-18,1.5847e-18,1.7693e-18,1.8879e-18,2.0283e-18,2.0763e-18,2.2099e-18,2.8393e-18,2.9232e-18,3.1038e-18,3.2601e-18,4.7173e-18,7.148e-18,1.2157e-17,1.4834e-17,2.2557e-17,3.5912e-17,4.3636e-17,4.824e-17,1.4477e-16,1.6421e-16,1.8012e-16,2.1627e-16,2.7272e-16,3.3318e-16,3.9185e-16,4.033e-16,4.1065e-16,5.034e-16,8.5715e-16,8.9122e-16,1.0974e-15,1.5129e-15,1.8051e-15,1.8575e-15,5.0475e-15,5.101e-15,6.2035e-15,9.0783e-15,9.7276e-15,1.2576e-14,1.336e-14,2.036e-14,2.6757e-14,4.9551e-14,5.0284e-14,1.0086e-13,1.0914e-13,1.1192e-13,1.7487e-13,1.7988e-13,2.1108e-13,2.6037e-13,2.7797e-13,2.9204e-13,3.5466e-13,3.6622e-13,3.7396e-13,4.3598e-13,4.5999e-13,4.6646e-13,5.2948e-13,5.5414e-13,7.1242e-13,1.0777e-12,1.1598e-12,1.1826e-12,1.4212e-12,1.533e-12,2.0839e-12,3.5537e-12,4.1876e-12,5.4231e-12,5.9618e-12,7.746e-12,1.0035e-11,1.0248e-11,1.0417e-11,1.0437e-11,1.126e-11,1.1333e-11,1.4367e-11,1.6012e-11,1.9619e-11,1.9797e-11,2.091e-11,2.965e-11,2.9951e-11,3.5331e-11,4.2601e-11,5.9377e-11,6.2014e-11,7.0191e-11,7.216e-11,7.738e-11,8.6965e-11,1.0394e-10,1.0444e-10,1.5601e-10,2.451e-10,2.5707e-10,2.7099e-10,2.7547e-10,3.6026e-10,4.2455e-10,7.3642e-10,7.578e-10,8.0276e-10,8.8453e-10,1.2652e-09,1.8302e-09,2.7286e-09,3.074e-09,3.2998e-09,3.948e-09,5.6539e-09,6.6127e-09,8.0933e-09,1.1013e-08,1.4332e-08,1.5026e-08,2.4804e-08,2.648e-08,2.7119e-08,3.044e-08,3.1869e-08,4.5842e-08,5.3505e-08,5.5943e-08,5.6196e-08,6.1687e-08,6.9917e-08,7.4081e-08,7.601e-08,1.1884e-07,1.189e-07,1.7678e-07,2.7625e-07,4.145e-07,5.9901e-07,7.0124e-07,7.3068e-07,8.0421e-07,8.7423e-07,1.063e-06,1.0861e-06,1.5754e-06,1.7289e-06,2.0806e-06,2.6132e-06,2.9969e-06,3.0435e-06,3.3999e-06,3.6607e-06,4.385e-06,5.7193e-06,5.8627e-06,6.5809e-06,7.8865e-06,9.1247e-06,9.1869e-06,1.5072e-05,1.6323e-05,1.6958e-05,1.8695e-05,1.9662e-05,2.1283e-05,2.4128e-05,2.5375e-05,2.7215e-05,3.0443e-05,3.5159e-05,4.0292e-05,4.085e-05,4.817e-05,5.3643e-05,5.8946e-05,7.2896e-05,8.0252e-05,8.3093e-05,9.3957e-05,9.4655e-05,9.9863e-05,0.00010225,0.00013925,0.00015059,0.00015522,0.00017811,0.00019281,0.00019513,0.00023441,0.00033128,0.00036662,0.00038617,0.00043551,0.00044003,0.00050307,0.00051045,0.00060536,0.00066852,0.00081407,0.00082859,0.00084243,0.00085026,0.00087631,0.00089811,0.00091165,0.0010661,0.0011014,0.0014927,0.00165,0.0017624,0.0018088,0.0022392,0.0022475,0.0024092,0.0024884,0.0029233,0.0029381,0.0029734,0.0033463,0.0034567,0.0034966,0.003621,0.0037876,0.0039514,0.0040391,0.0049986,0.0050359,0.00562,0.0066114,0.0076844,0.0094339,0.0094612,0.010164,0.011115,0.01249,0.012506,0.013016,0.01567,0.01635,0.016426,0.020306,0.021257,0.021822,0.023644,0.025577,0.029493,0.03015,0.033499,0.042146,0.042273,0.043059,0.044703,0.046029,0.047708,0.049754,0.07247,0.079637,0.091701,0.10156,0.10207,0.10324,0.11962,0.12371,0.12405,0.14193,0.1763,0.17749,0.18869,0.19107,0.21887,0.2271,0.24577,0.25588,0.26735,0.26962,0.28371,0.28623,0.28744,0.32123,0.33175,0.33622,0.35099,0.35571,0.37774,0.38285,0.39324,0.41966,0.41991,0.43286,0.43727,0.43727,0.46645,0.46738,0.4796,0.4926,0.52127,0.5474,0.56629,0.59647,0.62441,0.6605,0.66196,0.68943,0.71547,0.73061,0.77014,0.78142,0.80378,0.81664,0.84253,0.84518,0.8506,0.86285,0.88714,0.91007,0.9213,0.93186,0.9371,0.93782,0.94679,0.95634,0.97992,0.98471,0.98708,0.99161,0.99164,0.99515,0.99553,0.99729,0.99839,1,0.99997,0.99862,0.99561,0.97426,0.96834,0.96528,0.95662,0.94769,0.94409,0.93659,0.93094,0.92364,0.91088,0.91081,0.88581,0.87875,0.87725,0.87646,0.8478,0.84712,0.84411,0.84182,0.83585,0.82579,0.81659,0.77406,0.67658,0.64651,0.64384,0.64163,0.63448,0.63049,0.59263,0.56772,0.54967,0.53961,0.51871,0.50111,0.49785,0.47346,0.45983,0.44339,0.41746,0.38434,0.38227,0.37138,0.36391,0.36059,0.32607,0.31695,0.27735,0.26693,0.24918,0.24,0.23707,0.22154,0.21958,0.21534,0.20627,0.18971 1,1.8278e-33,3.3452e-33,3.4479e-33,4.1357e-33,4.7566e-33,5.7152e-33,8.1569e-33,1.895e-32,3.2309e-32,3.5065e-32,5.3528e-32,5.735e-32,7.5409e-32,1.4648e-31,1.8031e-31,2.0828e-31,3.884e-31,4.3217e-31,4.8645e-31,7.2336e-31,7.5482e-31,7.7353e-31,1.0459e-30,1.2494e-30,1.2567e-30,1.7668e-30,1.8224e-30,2.1249e-30,2.1683e-30,2.2113e-30,6.2507e-30,1.6744e-29,1.8298e-29,2.4424e-29,3.1589e-29,3.8559e-29,4.8833e-29,6.4233e-29,1.0391e-28,1.3531e-28,2.0763e-28,3.5512e-28,3.731e-28,4.1444e-28,4.5665e-28,7.5571e-28,7.5629e-28,2.4968e-27,2.7269e-27,2.8636e-27,4.086e-27,4.1941e-27,8.4018e-27,1.1028e-26,1.2348e-26,1.5819e-26,1.8511e-26,2.4228e-26,2.6335e-26,4.9903e-26,7.3905e-26,2.5178e-25,3.5167e-25,3.9316e-25,4.799e-25,8.2831e-25,9.261e-25,1.0224e-24,1.6253e-24,2.5057e-24,2.94e-24,3.3504e-24,5.374e-24,1.0591e-23,2.155e-23,3.4683e-23,3.8313e-23,9.2762e-23,1.2573e-22,1.4485e-22,1.5423e-22,1.9881e-22,5.6188e-22,5.8091e-22,6.956e-22,9.2525e-22,9.7846e-22,1.4681e-21,4.4531e-21,4.5186e-21,6.1648e-21,6.8906e-21,2.43e-20,3.3275e-20,3.4052e-20,4.5047e-20,6.5712e-20,6.6203e-20,6.8252e-20,8.564e-20,8.5815e-20,1.0537e-19,1.1406e-19,3.5148e-19,5.7324e-19,5.8278e-19,1.0117e-18,1.1721e-18,1.471e-18,1.6425e-18,1.7528e-18,1.8833e-18,1.9278e-18,2.052e-18,2.6371e-18,2.7151e-18,2.8829e-18,3.0282e-18,4.3834e-18,6.6444e-18,1.1306e-17,1.3798e-17,2.0991e-17,3.3433e-17,4.0631e-17,4.4922e-17,1.3496e-16,1.5309e-16,1.6794e-16,2.0169e-16,2.5438e-16,3.1084e-16,3.6563e-16,3.7633e-16,3.8319e-16,4.6983e-16,8.0041e-16,8.3226e-16,1.025e-15,1.4136e-15,1.6868e-15,1.7359e-15,4.7218e-15,4.7719e-15,5.8044e-15,8.4976e-15,9.1059e-15,1.1775e-14,1.251e-14,1.9074e-14,2.5073e-14,4.6463e-14,4.715e-14,9.4644e-14,1.0242e-13,1.0503e-13,1.6419e-13,1.689e-13,1.9823e-13,2.4457e-13,2.6112e-13,2.7436e-13,3.3325e-13,3.4413e-13,3.5141e-13,4.0976e-13,4.3235e-13,4.3844e-13,4.9774e-13,5.2094e-13,6.6994e-13,1.0139e-12,1.0912e-12,1.1127e-12,1.3375e-12,1.4428e-12,1.962e-12,3.3478e-12,3.9457e-12,5.1113e-12,5.6196e-12,7.3036e-12,9.4642e-12,9.666e-12,9.8253e-12,9.8439e-12,1.0622e-11,1.069e-11,1.3556e-11,1.5111e-11,1.8518e-11,1.8686e-11,1.9738e-11,2.8e-11,2.8285e-11,3.3372e-11,4.0248e-11,5.612e-11,5.8615e-11,6.6353e-11,6.8218e-11,7.3159e-11,8.2231e-11,9.8301e-11,9.878e-11,1.4762e-10,2.3205e-10,2.434e-10,2.566e-10,2.6085e-10,3.4124e-10,4.0223e-10,6.9818e-10,7.1848e-10,7.6116e-10,8.3879e-10,1.2003e-09,1.7372e-09,2.5913e-09,2.9197e-09,3.1345e-09,3.7511e-09,5.3745e-09,6.2873e-09,7.6971e-09,1.0478e-08,1.3641e-08,1.4302e-08,2.3626e-08,2.5224e-08,2.5834e-08,2.9003e-08,3.0366e-08,4.3702e-08,5.1019e-08,5.3346e-08,5.3588e-08,5.8833e-08,6.6693e-08,7.0671e-08,7.2515e-08,1.1344e-07,1.1351e-07,1.6885e-07,2.6404e-07,3.9643e-07,5.7322e-07,6.7121e-07,6.9942e-07,7.6993e-07,8.3707e-07,1.0182e-06,1.0403e-06,1.5098e-06,1.6572e-06,1.9949e-06,2.5065e-06,2.8752e-06,2.92e-06,3.2624e-06,3.5132e-06,4.2094e-06,5.4928e-06,5.6307e-06,6.3217e-06,7.5783e-06,8.7702e-06,8.8301e-06,1.4499e-05,1.5704e-05,1.6316e-05,1.7991e-05,1.8924e-05,2.0487e-05,2.323e-05,2.4433e-05,2.6208e-05,2.9323e-05,3.3873e-05,3.8828e-05,3.9367e-05,4.6435e-05,5.1722e-05,5.6845e-05,7.0326e-05,7.7436e-05,8.0183e-05,9.0687e-05,9.1363e-05,9.64e-05,9.8704e-05,0.0001345,0.00014548,0.00014996,0.00017213,0.00018636,0.00018861,0.00022666,0.00032055,0.00035481,0.00037378,0.00042165,0.00042602,0.0004872,0.00049436,0.00058649,0.00064782,0.0007892,0.00080331,0.00081676,0.00082436,0.00084968,0.00087086,0.00088402,0.0010342,0.0010684,0.0014491,0.0016021,0.0017115,0.0017567,0.0021758,0.0021838,0.0023414,0.0024185,0.0028423,0.0028567,0.0028911,0.0032546,0.0033622,0.0034012,0.0035225,0.0036849,0.0038447,0.0039302,0.0048665,0.0049029,0.0054731,0.0064413,0.0074896,0.0091998,0.0092264,0.009914,0.010844,0.012189,0.012205,0.012705,0.015303,0.015969,0.016043,0.019845,0.020777,0.021331,0.023117,0.025013,0.028855,0.0295,0.032788,0.041282,0.041407,0.042179,0.043795,0.045098,0.046749,0.048761,0.071116,0.078176,0.090065,0.099787,0.10029,0.10144,0.11761,0.12164,0.12198,0.13964,0.17362,0.17479,0.18588,0.18823,0.21575,0.22391,0.2424,0.25242,0.2638,0.26605,0.28002,0.28253,0.28372,0.31727,0.32771,0.33216,0.34683,0.35152,0.37342,0.37851,0.38884,0.41512,0.41537,0.42827,0.43265,0.43266,0.46172,0.46265,0.47483,0.48779,0.51638,0.54247,0.56134,0.59149,0.61943,0.65555,0.65702,0.68453,0.71065,0.72584,0.76556,0.77689,0.7994,0.81236,0.83846,0.84113,0.8466,0.85897,0.88355,0.9068,0.91821,0.92896,0.9343,0.93503,0.94419,0.95396,0.97826,0.98326,0.98574,0.99052,0.99055,0.99432,0.99472,0.99665,0.99789,0.99997,1,0.99902,0.99635,0.97606,0.97033,0.96736,0.95893,0.95021,0.94669,0.93935,0.93381,0.92663,0.91409,0.91402,0.88937,0.8824,0.88092,0.88013,0.85178,0.85111,0.84813,0.84586,0.83995,0.82997,0.82085,0.7786,0.68149,0.65146,0.6488,0.64659,0.63945,0.63547,0.59761,0.57269,0.55461,0.54454,0.5236,0.50595,0.50269,0.47823,0.46455,0.44805,0.422,0.38872,0.38664,0.37569,0.36818,0.36483,0.33009,0.32092,0.28102,0.27051,0.25261,0.24335,0.24039,0.22471,0.22274,0.21846,0.2093,0.19256 1,1.0595e-33,1.9434e-33,2.0032e-33,2.4045e-33,2.7668e-33,3.3267e-33,4.7541e-33,1.1079e-32,1.8926e-32,2.0547e-32,3.1414e-32,3.3665e-32,4.4311e-32,8.6289e-32,1.0629e-31,1.2285e-31,2.2963e-31,2.5561e-31,2.8784e-31,4.2866e-31,4.4737e-31,4.585e-31,6.2065e-31,7.4194e-31,7.4626e-31,1.0505e-30,1.0837e-30,1.2644e-30,1.2903e-30,1.316e-30,3.7346e-30,1.0042e-29,1.0977e-29,1.4669e-29,1.8991e-29,2.3199e-29,2.9408e-29,3.8723e-29,6.2759e-29,8.181e-29,1.2574e-28,2.1552e-28,2.2648e-28,2.5168e-28,2.7742e-28,4.6001e-28,4.6036e-28,1.5271e-27,1.6684e-27,1.7524e-27,2.504e-27,2.5706e-27,5.1639e-27,6.7857e-27,7.6012e-27,9.7473e-27,1.1414e-26,1.4955e-26,1.6261e-26,3.0895e-26,4.5829e-26,1.5693e-25,2.1949e-25,2.4549e-25,2.9991e-25,5.1883e-25,5.8035e-25,6.4097e-25,1.0209e-24,1.5769e-24,1.8514e-24,2.1111e-24,3.3929e-24,6.7062e-24,1.3688e-23,2.2074e-23,2.4395e-23,5.9295e-23,8.0475e-23,9.277e-23,9.8806e-23,1.2751e-22,3.6205e-22,3.7436e-22,4.4864e-22,5.9753e-22,6.3205e-22,9.501e-22,2.8964e-21,2.9392e-21,4.0157e-21,4.4908e-21,1.593e-20,2.1845e-20,2.2357e-20,2.9616e-20,4.3279e-20,4.3603e-20,4.496e-20,5.6474e-20,5.6589e-20,6.955e-20,7.5316e-20,2.3334e-19,3.8146e-19,3.8784e-19,6.7512e-19,7.8271e-19,9.8341e-19,1.0986e-18,1.1728e-18,1.2605e-18,1.2905e-18,1.374e-18,1.768e-18,1.8205e-18,1.9337e-18,2.0316e-18,2.9461e-18,4.4751e-18,7.6351e-18,9.3273e-18,1.4219e-17,2.2701e-17,2.7616e-17,3.0548e-17,9.2296e-17,1.0477e-16,1.1498e-16,1.3822e-16,1.7455e-16,2.1351e-16,2.5136e-16,2.5875e-16,2.635e-16,3.2342e-16,5.5254e-16,5.7464e-16,7.085e-16,9.7877e-16,1.1691e-15,1.2033e-15,3.2909e-15,3.3259e-15,4.0499e-15,5.9415e-15,6.3693e-15,8.2481e-15,8.7656e-15,1.3396e-14,1.7637e-14,3.2796e-14,3.3284e-14,6.7076e-14,7.262e-14,7.4482e-14,1.1673e-13,1.201e-13,1.4109e-13,1.7429e-13,1.8615e-13,1.9564e-13,2.3791e-13,2.4572e-13,2.5095e-13,2.9288e-13,3.0913e-13,3.1351e-13,3.5617e-13,3.7288e-13,4.8024e-13,7.2857e-13,7.8447e-13,8.0005e-13,9.6272e-13,1.039e-12,1.4155e-12,2.4231e-12,2.8588e-12,3.7092e-12,4.0804e-12,5.3117e-12,6.8942e-12,7.0421e-12,7.1589e-12,7.1726e-12,7.743e-12,7.7933e-12,9.8972e-12,1.104e-11,1.3546e-11,1.367e-11,1.4445e-11,2.0536e-11,2.0747e-11,2.4504e-11,2.9588e-11,4.1344e-11,4.3195e-11,4.8936e-11,5.032e-11,5.3989e-11,6.0731e-11,7.2684e-11,7.304e-11,1.0944e-10,1.7255e-10,1.8105e-10,1.9093e-10,1.9412e-10,2.544e-10,3.002e-10,5.2303e-10,5.3835e-10,5.7055e-10,6.2916e-10,9.0257e-10,1.3096e-09,1.959e-09,2.2091e-09,2.3728e-09,2.8432e-09,4.0842e-09,4.7832e-09,5.8643e-09,8.0009e-09,1.0437e-08,1.0946e-08,1.815e-08,1.9387e-08,1.9859e-08,2.2315e-08,2.3371e-08,3.3728e-08,3.9422e-08,4.1234e-08,4.1423e-08,4.5509e-08,5.1639e-08,5.4744e-08,5.6183e-08,8.8201e-08,8.825e-08,1.317e-07,2.0667e-07,3.1132e-07,4.5152e-07,5.294e-07,5.5184e-07,6.0796e-07,6.6144e-07,8.0585e-07,8.2349e-07,1.199e-06,1.3171e-06,1.588e-06,1.9992e-06,2.2961e-06,2.3322e-06,2.6082e-06,2.8105e-06,3.3729e-06,4.4117e-06,4.5236e-06,5.084e-06,6.1046e-06,7.0742e-06,7.123e-06,1.175e-05,1.2736e-05,1.3237e-05,1.4609e-05,1.5374e-05,1.6657e-05,1.891e-05,1.9899e-05,2.1359e-05,2.3923e-05,2.7675e-05,3.1765e-05,3.221e-05,3.8056e-05,4.2434e-05,4.6681e-05,5.7875e-05,6.3789e-05,6.6076e-05,7.4826e-05,7.5389e-05,7.9589e-05,8.1512e-05,0.00011144,0.00012063,0.00012438,0.00014298,0.00015493,0.00015682,0.00018883,0.00026807,0.00029705,0.00031311,0.00035369,0.0003574,0.00040934,0.00041543,0.00049381,0.00054608,0.00066679,0.00067885,0.00069035,0.00069685,0.0007185,0.00073663,0.00074789,0.00087657,0.00090595,0.0012333,0.0013652,0.0014596,0.0014986,0.0018611,0.0018681,0.0020046,0.0020716,0.0024396,0.0024521,0.002482,0.0027984,0.0028922,0.0029262,0.0030319,0.0031736,0.0033131,0.0033878,0.0042069,0.0042388,0.0047388,0.0055897,0.0065133,0.0080241,0.0080477,0.0086565,0.0094808,0.010676,0.01069,0.011134,0.013449,0.014043,0.01411,0.017511,0.018347,0.018844,0.020449,0.022154,0.025617,0.0262,0.029171,0.036874,0.036988,0.03769,0.03916,0.040346,0.04185,0.043684,0.064162,0.070661,0.081637,0.090639,0.091102,0.092176,0.10719,0.11095,0.11127,0.12776,0.15964,0.16074,0.17119,0.17341,0.19944,0.20717,0.22475,0.23429,0.24514,0.24729,0.26064,0.26304,0.26419,0.29637,0.30641,0.3107,0.32484,0.32937,0.35055,0.35548,0.36549,0.39104,0.39128,0.40385,0.40812,0.40813,0.43654,0.43745,0.44938,0.4621,0.49024,0.51601,0.5347,0.56466,0.59255,0.62877,0.63024,0.65797,0.68441,0.69985,0.74042,0.75206,0.77527,0.78869,0.81588,0.81868,0.82441,0.83741,0.86343,0.88831,0.90067,0.91239,0.91825,0.91906,0.92919,0.94014,0.96826,0.97433,0.9774,0.98352,0.98356,0.98865,0.98922,0.99206,0.99404,0.99862,0.99902,1,0.99915,0.98466,0.97998,0.97751,0.97037,0.96282,0.95974,0.95326,0.94832,0.94188,0.93051,0.93045,0.90777,0.9013,0.89992,0.89919,0.87259,0.87195,0.86913,0.86699,0.86138,0.8519,0.84321,0.80261,0.70777,0.67809,0.67545,0.67326,0.66617,0.66222,0.62449,0.59954,0.58139,0.57125,0.55014,0.5323,0.529,0.50419,0.49028,0.47347,0.44687,0.41274,0.4106,0.39934,0.3916,0.38815,0.35227,0.34276,0.30129,0.29033,0.27162,0.26192,0.25882,0.24236,0.24029,0.23579,0.22614,0.20849 1,6.3687e-34,1.1705e-33,1.2067e-33,1.4492e-33,1.6684e-33,2.0073e-33,2.872e-33,6.712e-33,1.1487e-32,1.2475e-32,1.91e-32,2.0474e-32,2.6974e-32,5.2647e-32,6.4899e-32,7.5045e-32,1.4058e-31,1.5654e-31,1.7635e-31,2.6299e-31,2.7452e-31,2.8137e-31,3.8128e-31,4.5607e-31,4.5874e-31,6.4654e-31,6.6703e-31,7.7866e-31,7.9467e-31,8.1056e-31,2.3087e-30,6.2298e-30,6.8124e-30,9.1127e-30,1.1809e-29,1.4436e-29,1.8315e-29,2.414e-29,3.9193e-29,5.1139e-29,7.8724e-29,1.352e-28,1.421e-28,1.5797e-28,1.7418e-28,2.8937e-28,2.8959e-28,9.6487e-28,1.0545e-27,1.1078e-27,1.585e-27,1.6273e-27,3.2776e-27,4.3114e-27,4.8316e-27,6.2015e-27,7.266e-27,9.5305e-27,1.0366e-26,1.9742e-26,2.9329e-26,1.009e-25,1.4131e-25,1.5813e-25,1.9333e-25,3.3516e-25,3.7507e-25,4.1441e-25,6.6125e-25,1.0231e-24,1.202e-24,1.3713e-24,2.2081e-24,4.3762e-24,8.9575e-24,1.4474e-23,1.6002e-23,3.9035e-23,5.3044e-23,6.1184e-23,6.5181e-23,8.4206e-23,2.4012e-22,2.4832e-22,2.9782e-22,3.9712e-22,4.2017e-22,6.3267e-22,1.9378e-21,1.9665e-21,2.6904e-21,3.0101e-21,1.0736e-20,1.4742e-20,1.509e-20,2.0013e-20,2.9294e-20,2.9515e-20,3.0437e-20,3.827e-20,3.8349e-20,4.7174e-20,5.1103e-20,1.5912e-19,2.607e-19,2.6508e-19,4.6257e-19,5.3665e-19,6.7495e-19,7.5442e-19,8.0556e-19,8.6612e-19,8.8681e-19,9.4448e-19,1.2167e-18,1.253e-18,1.3312e-18,1.399e-18,2.0322e-18,3.0928e-18,5.2897e-18,6.4681e-18,9.88e-18,1.5808e-17,1.9249e-17,2.1302e-17,6.4701e-17,7.349e-17,8.0691e-17,9.7085e-17,1.2274e-16,1.5028e-16,1.7706e-16,1.8229e-16,1.8565e-16,2.281e-16,3.9072e-16,4.0643e-16,5.0162e-16,6.9409e-16,8.2979e-16,8.5417e-16,2.3479e-15,2.373e-15,2.8925e-15,4.2517e-15,4.5594e-15,5.9122e-15,6.2851e-15,9.6263e-15,1.2691e-14,2.3677e-14,2.4031e-14,4.8607e-14,5.2647e-14,5.4004e-14,8.4842e-14,8.7305e-14,1.0265e-13,1.2694e-13,1.3563e-13,1.4259e-13,1.7357e-13,1.7931e-13,1.8314e-13,2.1392e-13,2.2585e-13,2.2907e-13,2.6043e-13,2.7271e-13,3.5172e-13,5.3482e-13,5.7608e-13,5.8759e-13,7.0778e-13,7.6421e-13,1.0429e-12,1.7907e-12,2.1146e-12,2.7477e-12,3.0243e-12,3.9429e-12,5.1252e-12,5.2358e-12,5.3232e-12,5.3334e-12,5.7601e-12,5.7977e-12,7.3731e-12,8.2293e-12,1.011e-11,1.0203e-11,1.0784e-11,1.5364e-11,1.5523e-11,1.8351e-11,2.2184e-11,3.106e-11,3.2458e-11,3.68e-11,3.7847e-11,4.0624e-11,4.5729e-11,5.4789e-11,5.5059e-11,8.2703e-11,1.3076e-10,1.3724e-10,1.4477e-10,1.472e-10,1.9324e-10,2.2826e-10,3.9909e-10,4.1085e-10,4.3558e-10,4.8063e-10,6.9108e-10,1.0051e-09,1.5075e-09,1.7013e-09,1.8282e-09,2.1932e-09,3.158e-09,3.7024e-09,4.5455e-09,6.2145e-09,8.121e-09,8.5204e-09,1.4176e-08,1.515e-08,1.5521e-08,1.7454e-08,1.8287e-08,2.6459e-08,3.0959e-08,3.2393e-08,3.2542e-08,3.5776e-08,4.0631e-08,4.3092e-08,4.4233e-08,6.9666e-08,6.9705e-08,1.0432e-07,1.6427e-07,2.482e-07,3.6099e-07,4.2377e-07,4.4187e-07,4.8717e-07,5.3037e-07,6.4716e-07,6.6144e-07,9.6587e-07,1.0618e-06,1.2821e-06,1.6171e-06,1.8593e-06,1.8888e-06,2.1142e-06,2.2796e-06,2.7399e-06,3.5917e-06,3.6835e-06,4.1439e-06,4.9834e-06,5.7821e-06,5.8223e-06,9.6453e-06,1.0463e-05,1.0878e-05,1.2016e-05,1.265e-05,1.3715e-05,1.5588e-05,1.6411e-05,1.7626e-05,1.9762e-05,2.2891e-05,2.6307e-05,2.6679e-05,3.1568e-05,3.5235e-05,3.8796e-05,4.8196e-05,5.3169e-05,5.5093e-05,6.2462e-05,6.2937e-05,6.6477e-05,6.8098e-05,9.3377e-05,0.00010116,0.00010434,0.0001201,0.00013024,0.00013185,0.00015905,0.00022659,0.00025135,0.00026508,0.00029981,0.00030299,0.00034752,0.00035274,0.00042006,0.00046501,0.00056902,0.00057942,0.00058934,0.00059495,0.00061364,0.0006293,0.00063902,0.00075027,0.0007757,0.0010596,0.0011743,0.0012564,0.0012904,0.0016066,0.0016127,0.001732,0.0017905,0.0021126,0.0021236,0.0021498,0.0024273,0.0025097,0.0025395,0.0026324,0.002757,0.0028797,0.0029454,0.0036673,0.0036955,0.0041372,0.0048903,0.0057096,0.0070533,0.0070743,0.0076168,0.0083524,0.0094202,0.0094327,0.0098302,0.011905,0.012439,0.012499,0.01556,0.016313,0.016762,0.018211,0.019754,0.022892,0.02342,0.02612,0.033139,0.033243,0.033884,0.035227,0.036312,0.037688,0.039368,0.058201,0.064207,0.074375,0.082737,0.083168,0.084166,0.098163,0.10168,0.10197,0.1174,0.14739,0.14843,0.15829,0.16039,0.18504,0.19239,0.20911,0.21821,0.22857,0.23062,0.24339,0.24569,0.24678,0.27767,0.28734,0.29146,0.3051,0.30947,0.32995,0.33472,0.34443,0.36924,0.36948,0.3817,0.38587,0.38588,0.41361,0.4145,0.42618,0.43864,0.46629,0.49168,0.51015,0.53985,0.56759,0.60376,0.60524,0.63307,0.65971,0.67531,0.71651,0.72839,0.75215,0.76595,0.79402,0.79692,0.80287,0.81639,0.84363,0.86992,0.88308,0.89565,0.90197,0.90285,0.91384,0.92583,0.95736,0.96438,0.968,0.97532,0.97537,0.98167,0.98239,0.98607,0.98872,0.99561,0.99635,0.99915,1,0.99098,0.9873,0.98531,0.9794,0.97299,0.97033,0.96468,0.96033,0.95461,0.94439,0.94433,0.92361,0.91762,0.91635,0.91567,0.89082,0.89022,0.88757,0.88555,0.88026,0.87128,0.86303,0.82416,0.73184,0.70259,0.69998,0.69782,0.69081,0.6869,0.64944,0.62455,0.60639,0.59623,0.57502,0.55706,0.55373,0.52867,0.51459,0.49754,0.47048,0.43564,0.43345,0.42193,0.414,0.41046,0.37357,0.36377,0.32089,0.30952,0.29007,0.27997,0.27674,0.25957,0.2574,0.25269,0.2426,0.2241 1,1.1952e-34,2.2112e-34,2.2803e-34,2.7442e-34,3.1642e-34,3.8145e-34,5.4793e-34,1.2926e-33,2.2254e-33,2.4188e-33,3.7212e-33,3.9918e-33,5.2753e-33,1.0374e-32,1.2818e-32,1.4846e-32,2.8007e-32,3.1226e-32,3.5225e-32,5.2769e-32,5.5109e-32,5.65e-32,7.6826e-32,9.2085e-32,9.2629e-32,1.3106e-31,1.3527e-31,1.5818e-31,1.6147e-31,1.6474e-31,4.749e-31,1.2962e-30,1.4189e-30,1.9045e-30,2.4753e-30,3.0332e-30,3.8589e-30,5.1027e-30,8.3319e-30,1.0906e-29,1.6874e-29,2.9165e-29,3.0672e-29,3.414e-29,3.7689e-29,6.2992e-29,6.3041e-29,2.131e-28,2.3315e-28,2.4508e-28,3.5218e-28,3.6169e-28,7.347e-28,9.6968e-28,1.0882e-27,1.401e-27,1.6447e-27,2.1644e-27,2.3566e-27,4.5241e-27,6.754e-27,2.3598e-26,3.3188e-26,3.7189e-26,4.5583e-26,7.9577e-26,8.9179e-26,9.8657e-26,1.5836e-25,2.4639e-25,2.9007e-25,3.3148e-25,5.3704e-25,1.0738e-24,2.2186e-24,3.6075e-24,3.9936e-24,9.8572e-24,1.3449e-23,1.5543e-23,1.6572e-23,2.1482e-23,6.2126e-23,6.4278e-23,7.7279e-23,1.0345e-22,1.0954e-22,1.6586e-22,5.1585e-22,5.236e-22,7.1944e-22,8.0619e-22,2.9267e-21,4.037e-21,4.1334e-21,5.5039e-21,8.1e-21,8.1619e-21,8.4205e-21,1.0622e-20,1.0644e-20,1.3133e-20,1.4243e-20,4.5077e-20,7.4385e-20,7.5652e-20,1.3309e-19,1.5474e-19,1.9528e-19,2.1863e-19,2.3368e-19,2.5151e-19,2.5761e-19,2.7462e-19,3.5509e-19,3.6585e-19,3.8904e-19,4.0914e-19,5.9764e-19,9.1527e-19,1.5781e-18,1.9356e-18,2.9756e-18,4.7953e-18,5.8565e-18,6.4916e-18,2.0058e-17,2.2828e-17,2.5102e-17,3.0289e-17,3.8434e-17,4.7209e-17,5.5766e-17,5.744e-17,5.8516e-17,7.2131e-17,1.2462e-16,1.2971e-16,1.6063e-16,2.2342e-16,2.6787e-16,2.7587e-16,7.7088e-16,7.7928e-16,9.5295e-16,1.4097e-15,1.5135e-15,1.971e-15,2.0974e-15,3.2354e-15,4.2854e-15,8.0795e-15,8.2024e-15,1.6792e-14,1.8213e-14,1.869e-14,2.9593e-14,3.0467e-14,3.5921e-14,4.459e-14,4.7697e-14,5.0187e-14,6.1304e-14,6.3365e-14,6.4745e-14,7.5832e-14,8.0138e-14,8.1301e-14,9.2639e-14,9.7088e-14,1.2578e-13,1.927e-13,2.0784e-13,2.1207e-13,2.563e-13,2.7712e-13,3.803e-13,6.5945e-13,7.8111e-13,1.0199e-12,1.1246e-12,1.4733e-12,1.9245e-12,1.9668e-12,2.0002e-12,2.0041e-12,2.1676e-12,2.182e-12,2.7875e-12,3.1176e-12,3.845e-12,3.881e-12,4.1065e-12,5.8898e-12,5.9518e-12,7.059e-12,8.5643e-12,1.2069e-11,1.2623e-11,1.4347e-11,1.4763e-11,1.5868e-11,1.7903e-11,2.1526e-11,2.1634e-11,3.2757e-11,5.2264e-11,5.4906e-11,5.7984e-11,5.8976e-11,7.7846e-11,9.2263e-11,1.6315e-10,1.6806e-10,1.7839e-10,1.9724e-10,2.8573e-10,4.1884e-10,6.3353e-10,7.1681e-10,7.7146e-10,9.2908e-10,1.3483e-09,1.5861e-09,1.956e-09,2.6924e-09,3.5392e-09,3.7172e-09,6.2551e-09,6.6945e-09,6.8624e-09,7.7376e-09,8.115e-09,1.184e-08,1.3904e-08,1.4563e-08,1.4631e-08,1.6121e-08,1.8362e-08,1.9501e-08,2.0029e-08,3.1881e-08,3.1899e-08,4.8198e-08,7.6719e-08,1.1708e-07,1.7186e-07,2.0256e-07,2.1143e-07,2.3367e-07,2.5493e-07,3.1263e-07,3.197e-07,4.7136e-07,5.1944e-07,6.3028e-07,7.9974e-07,9.2288e-07,9.3789e-07,1.053e-06,1.1376e-06,1.374e-06,1.8142e-06,1.8618e-06,2.1012e-06,2.5395e-06,2.9586e-06,2.9797e-06,5.0057e-06,5.4423e-06,5.6645e-06,6.2747e-06,6.6157e-06,7.1891e-06,8.2007e-06,8.646e-06,9.3054e-06,1.0468e-05,1.2177e-05,1.4051e-05,1.4255e-05,1.6952e-05,1.8983e-05,2.0961e-05,2.621e-05,2.9e-05,3.0082e-05,3.4236e-05,3.4505e-05,3.6507e-05,3.7425e-05,5.1822e-05,5.6279e-05,5.8107e-05,6.7182e-05,7.3043e-05,7.3973e-05,8.9772e-05,0.00012937,0.000144,0.00015214,0.00017277,0.00017467,0.00020126,0.00020439,0.00024484,0.00027199,0.00033515,0.0003415,0.00034755,0.00035098,0.00036239,0.00037197,0.00037792,0.00044623,0.0004619,0.00063806,0.00070977,0.00076132,0.00078268,0.00098242,0.0009863,0.0010621,0.0010994,0.0013054,0.0013124,0.0013293,0.0015079,0.0015611,0.0015803,0.0016404,0.0017212,0.0018009,0.0018436,0.0023156,0.0023341,0.002625,0.0031242,0.0036711,0.0045758,0.00459,0.0049577,0.0054583,0.0061886,0.0061972,0.0064701,0.0079032,0.0082739,0.0083156,0.010457,0.010988,0.011304,0.01233,0.013427,0.015671,0.016051,0.017998,0.023112,0.023188,0.023658,0.024646,0.025445,0.026461,0.027704,0.041841,0.046417,0.05423,0.060712,0.061047,0.061825,0.072792,0.075562,0.075796,0.088058,0.11224,0.11309,0.12114,0.12286,0.14321,0.14932,0.16332,0.17098,0.17974,0.18149,0.19236,0.19432,0.19526,0.22183,0.23022,0.23381,0.24572,0.24956,0.26759,0.27181,0.28043,0.3026,0.30281,0.31381,0.31758,0.31758,0.34276,0.34357,0.35426,0.36571,0.39131,0.41505,0.43246,0.46072,0.48741,0.52266,0.5241,0.5516,0.57824,0.59399,0.63616,0.64848,0.67337,0.68799,0.71812,0.72127,0.72774,0.74257,0.77291,0.80295,0.81832,0.83323,0.84083,0.84189,0.85532,0.87027,0.91177,0.92167,0.9269,0.93788,0.93795,0.94796,0.94915,0.9554,0.96015,0.97426,0.97606,0.98466,0.99098,1,0.99968,0.9993,0.99759,0.99507,0.99388,0.99112,0.98882,0.98562,0.97947,0.97943,0.96573,0.96154,0.96064,0.96015,0.94181,0.94135,0.93932,0.93777,0.93368,0.92664,0.92006,0.88804,0.80662,0.77962,0.77718,0.77516,0.7686,0.76492,0.72931,0.70525,0.68752,0.67752,0.65651,0.63855,0.6352,0.60988,0.59553,0.57804,0.55003,0.51351,0.5112,0.49899,0.49056,0.48679,0.44716,0.43654,0.38954,0.37694,0.35525,0.34391,0.34028,0.32086,0.3184,0.31305,0.30154,0.28028 1,8.712e-35,1.6139e-34,1.6644e-34,2.0037e-34,2.311e-34,2.787e-34,4.0064e-34,9.4677e-34,1.6319e-33,1.774e-33,2.7316e-33,2.9307e-33,3.8753e-33,7.6313e-33,9.4335e-33,1.0929e-32,2.0646e-32,2.3024e-32,2.5979e-32,3.8952e-32,4.0682e-32,4.1711e-32,5.6754e-32,6.8052e-32,6.8455e-32,9.6929e-32,1.0004e-31,1.1703e-31,1.1947e-31,1.2189e-31,3.5218e-31,9.6336e-31,1.0547e-30,1.4166e-30,1.8422e-30,2.2584e-30,2.8747e-30,3.8036e-30,6.2173e-30,8.1426e-30,1.2611e-29,2.1823e-29,2.2953e-29,2.5554e-29,2.8217e-29,4.7214e-29,4.7251e-29,1.6016e-28,1.7526e-28,1.8425e-28,2.6498e-28,2.7216e-28,5.5372e-28,7.3127e-28,8.2086e-28,1.0574e-27,1.2418e-27,1.6353e-27,1.7808e-27,3.4238e-27,5.1161e-27,1.7927e-26,2.5232e-26,2.8282e-26,3.4682e-26,6.0625e-26,6.7959e-26,7.5199e-26,1.2084e-25,1.8821e-25,2.2167e-25,2.5339e-25,4.11e-25,8.2317e-25,1.7037e-24,2.7735e-24,3.0712e-24,7.5971e-24,1.0374e-23,1.1992e-23,1.2789e-23,1.6589e-23,4.81e-23,4.9771e-23,5.9865e-23,8.0197e-23,8.4927e-23,1.2873e-22,4.0153e-22,4.0758e-22,5.6048e-22,6.2824e-22,2.2883e-21,3.159e-21,3.2347e-21,4.3104e-21,6.35e-21,6.3987e-21,6.602e-21,8.3332e-21,8.3506e-21,1.0309e-20,1.1182e-20,3.55e-20,5.8659e-20,5.9662e-20,1.0512e-19,1.2227e-19,1.544e-19,1.7291e-19,1.8485e-19,1.99e-19,2.0384e-19,2.1733e-19,2.8121e-19,2.8976e-19,3.0818e-19,3.2415e-19,4.7398e-19,7.2674e-19,1.255e-18,1.5401e-18,2.3705e-18,3.8253e-18,4.6745e-18,5.1828e-18,1.6066e-17,1.8292e-17,2.0119e-17,2.429e-17,3.0842e-17,3.7907e-17,4.48e-17,4.6149e-17,4.7016e-17,5.799e-17,1.0035e-16,1.0446e-16,1.2944e-16,1.8022e-16,2.162e-16,2.2267e-16,6.2415e-16,6.3097e-16,7.7206e-16,1.1435e-15,1.2279e-15,1.6004e-15,1.7034e-15,2.6311e-15,3.488e-15,6.5892e-15,6.6897e-15,1.3726e-14,1.4891e-14,1.5283e-14,2.4234e-14,2.4952e-14,2.9434e-14,3.6563e-14,3.9119e-14,4.1168e-14,5.032e-14,5.2017e-14,5.3154e-14,6.2288e-14,6.5837e-14,6.6795e-14,7.6143e-14,7.9812e-14,1.0349e-13,1.5876e-13,1.7128e-13,1.7478e-13,2.1137e-13,2.2859e-13,3.1404e-13,5.4556e-13,6.4658e-13,8.4498e-13,9.3203e-13,1.2222e-12,1.598e-12,1.6332e-12,1.6611e-12,1.6643e-12,1.8006e-12,1.8126e-12,2.3175e-12,2.5929e-12,3.2002e-12,3.2303e-12,3.4187e-12,4.9095e-12,4.9613e-12,5.8878e-12,7.1482e-12,1.0086e-11,1.0551e-11,1.1996e-11,1.2346e-11,1.3273e-11,1.4982e-11,1.8026e-11,1.8117e-11,2.7473e-11,4.3908e-11,4.6136e-11,4.8732e-11,4.9569e-11,6.5496e-11,7.7675e-11,1.3765e-10,1.418e-10,1.5055e-10,1.6652e-10,2.4158e-10,3.5464e-10,5.3727e-10,6.0819e-10,6.5475e-10,7.891e-10,1.1468e-09,1.35e-09,1.6662e-09,2.2965e-09,3.022e-09,3.1746e-09,5.3535e-09,5.7312e-09,5.8755e-09,6.6281e-09,6.9528e-09,1.016e-08,1.1939e-08,1.2508e-08,1.2567e-08,1.3851e-08,1.5786e-08,1.6769e-08,1.7226e-08,2.7473e-08,2.7489e-08,4.1608e-08,6.6365e-08,1.0147e-07,1.4921e-07,1.7598e-07,1.8373e-07,2.0315e-07,2.2172e-07,2.7216e-07,2.7835e-07,4.1113e-07,4.5327e-07,5.5049e-07,6.9929e-07,8.0751e-07,8.2071e-07,9.2193e-07,9.9639e-07,1.2045e-06,1.5926e-06,1.6346e-06,1.8459e-06,2.2331e-06,2.6035e-06,2.6222e-06,4.4168e-06,4.804e-06,5.0012e-06,5.5428e-06,5.8457e-06,6.3551e-06,7.2543e-06,7.6504e-06,8.237e-06,9.2714e-06,1.0794e-05,1.2465e-05,1.2647e-05,1.5053e-05,1.6867e-05,1.8635e-05,2.333e-05,2.5828e-05,2.6797e-05,3.052e-05,3.076e-05,3.2555e-05,3.3379e-05,4.6304e-05,5.031e-05,5.1953e-05,6.0117e-05,6.5394e-05,6.6232e-05,8.0468e-05,0.00011621,0.00012944,0.0001368,0.00015547,0.00015719,0.00018128,0.00018411,0.00022079,0.00024544,0.00030283,0.0003086,0.00031411,0.00031722,0.00032761,0.00033632,0.00034173,0.00040393,0.00041821,0.00057893,0.00064444,0.00069158,0.00071111,0.00089395,0.0008975,0.00096697,0.0010011,0.0011901,0.0011966,0.0012121,0.0013762,0.001425,0.0014428,0.001498,0.0015723,0.0016456,0.0016849,0.0021198,0.0021368,0.0024052,0.0028663,0.0033721,0.0042102,0.0042234,0.0045645,0.0050291,0.0057076,0.0057156,0.0059693,0.0073032,0.0076487,0.0076876,0.0096857,0.010182,0.010477,0.011436,0.012462,0.014565,0.014921,0.016748,0.021556,0.021628,0.022071,0.023001,0.023753,0.024711,0.025883,0.039247,0.043586,0.051004,0.057169,0.057488,0.058228,0.068678,0.071322,0.071545,0.08326,0.10643,0.10724,0.11498,0.11663,0.13621,0.1421,0.1556,0.163,0.17147,0.17315,0.18367,0.18557,0.18648,0.21225,0.22039,0.22388,0.23546,0.23919,0.25675,0.26087,0.26927,0.29091,0.29112,0.30187,0.30555,0.30556,0.33021,0.33101,0.34148,0.35272,0.37788,0.40125,0.41841,0.44631,0.47271,0.50766,0.5091,0.53643,0.56296,0.57868,0.62085,0.63321,0.6582,0.6729,0.70328,0.70646,0.713,0.728,0.75878,0.78937,0.80507,0.82035,0.82815,0.82924,0.84305,0.85848,0.90163,0.91202,0.91753,0.92913,0.92921,0.93986,0.94113,0.94784,0.95295,0.96834,0.97033,0.97998,0.9873,0.99968,1,0.99993,0.99902,0.99725,0.99635,0.99415,0.99226,0.98955,0.98421,0.98417,0.97189,0.96806,0.96723,0.96679,0.94978,0.94936,0.94746,0.94601,0.94216,0.93553,0.92931,0.89875,0.81983,0.79339,0.791,0.78902,0.78257,0.77895,0.74386,0.72007,0.7025,0.69257,0.67169,0.65381,0.65047,0.6252,0.61086,0.59335,0.56526,0.52854,0.52621,0.51392,0.50542,0.50162,0.46159,0.45083,0.40317,0.39036,0.36829,0.35673,0.35303,0.33322,0.3307,0.32523,0.31347,0.29172 1,7.4769e-35,1.3859e-34,1.4293e-34,1.721e-34,1.9853e-34,2.3946e-34,3.4436e-34,8.1445e-34,1.4046e-33,1.527e-33,2.3523e-33,2.524e-33,3.3383e-33,6.5784e-33,8.1337e-33,9.4249e-33,1.7815e-32,1.9869e-32,2.2423e-32,3.3633e-32,3.5128e-32,3.6018e-32,4.9023e-32,5.8793e-32,5.9141e-32,8.3771e-32,8.6466e-32,1.0116e-31,1.0328e-31,1.0537e-31,3.0478e-31,8.3455e-31,9.1381e-31,1.2277e-30,1.597e-30,1.9582e-30,2.4932e-30,3.2998e-30,5.3965e-30,7.0697e-30,1.0954e-29,1.8967e-29,1.995e-29,2.2214e-29,2.4531e-29,4.1069e-29,4.1102e-29,1.395e-28,1.5267e-28,1.6051e-28,2.3093e-28,2.3718e-28,4.8294e-28,6.3798e-28,7.1623e-28,9.2291e-28,1.084e-27,1.4279e-27,1.5552e-27,2.9921e-27,4.473e-27,1.5695e-26,2.21e-26,2.4774e-26,3.0387e-26,5.3152e-26,5.9589e-26,6.5945e-26,1.0603e-25,1.6522e-25,1.9463e-25,2.2252e-25,3.6112e-25,7.2385e-25,1.4994e-24,2.4423e-24,2.7048e-24,6.6979e-24,9.1491e-24,1.0579e-23,1.1282e-23,1.4639e-23,4.2501e-23,4.3978e-23,5.2909e-23,7.0904e-23,7.5092e-23,1.1388e-22,3.557e-22,3.6107e-22,4.9671e-22,5.5685e-22,2.0315e-21,2.8057e-21,2.873e-21,3.8297e-21,5.6447e-21,5.688e-21,5.8689e-21,7.4101e-21,7.4256e-21,9.1692e-21,9.9473e-21,3.1626e-20,5.2292e-20,5.3187e-20,9.3783e-20,1.091e-19,1.3781e-19,1.5436e-19,1.6503e-19,1.7768e-19,1.8201e-19,1.9407e-19,2.512e-19,2.5885e-19,2.7533e-19,2.8961e-19,4.2369e-19,6.5001e-19,1.1233e-18,1.3789e-18,2.1236e-18,3.429e-18,4.1914e-18,4.6479e-18,1.4431e-17,1.6432e-17,1.8076e-17,2.183e-17,2.7727e-17,3.4088e-17,4.0296e-17,4.1512e-17,4.2293e-17,5.218e-17,9.0364e-17,9.4072e-17,1.1661e-16,1.6243e-16,1.949e-16,2.0075e-16,5.6353e-16,5.6969e-16,6.9729e-16,1.0333e-15,1.1097e-15,1.4469e-15,1.5402e-15,2.3806e-15,3.1573e-15,5.97e-15,6.0613e-15,1.245e-14,1.3509e-14,1.3865e-14,2.2e-14,2.2653e-14,2.673e-14,3.3214e-14,3.554e-14,3.7404e-14,4.5734e-14,4.7279e-14,4.8314e-14,5.663e-14,5.9862e-14,6.0735e-14,6.9249e-14,7.259e-14,9.4161e-14,1.4456e-13,1.5597e-13,1.5916e-13,1.9254e-13,2.0826e-13,2.8625e-13,4.9772e-13,5.9005e-13,7.7144e-13,8.5105e-13,1.1165e-12,1.4604e-12,1.4927e-12,1.5182e-12,1.5212e-12,1.6459e-12,1.6569e-12,2.1193e-12,2.3717e-12,2.9282e-12,2.9557e-12,3.1284e-12,4.4954e-12,4.5429e-12,5.3928e-12,6.5494e-12,9.2462e-12,9.6731e-12,1.1001e-11,1.1322e-11,1.2174e-11,1.3745e-11,1.6542e-11,1.6626e-11,2.523e-11,4.0356e-11,4.2408e-11,4.4799e-11,4.557e-11,6.0241e-11,7.1465e-11,1.2677e-10,1.3061e-10,1.3868e-10,1.5342e-10,2.2272e-10,3.2718e-10,4.9607e-10,5.6168e-10,6.0476e-10,7.2911e-10,1.0604e-09,1.2486e-09,1.5417e-09,2.1262e-09,2.7995e-09,2.9411e-09,4.9648e-09,5.3158e-09,5.4499e-09,6.1494e-09,6.4513e-09,9.4346e-09,1.109e-08,1.1619e-08,1.1674e-08,1.287e-08,1.4672e-08,1.5587e-08,1.6012e-08,2.5562e-08,2.5577e-08,3.8749e-08,6.1864e-08,9.4678e-08,1.3933e-07,1.6439e-07,1.7165e-07,1.8983e-07,2.0723e-07,2.5448e-07,2.6028e-07,3.8478e-07,4.2431e-07,5.1555e-07,6.5526e-07,7.5691e-07,7.6931e-07,8.6443e-07,9.3441e-07,1.1301e-06,1.4952e-06,1.5347e-06,1.7336e-06,2.0982e-06,2.4471e-06,2.4648e-06,4.1568e-06,4.5222e-06,4.7083e-06,5.2195e-06,5.5054e-06,5.9864e-06,6.8357e-06,7.2099e-06,7.7642e-06,8.7418e-06,1.0181e-05,1.1762e-05,1.1934e-05,1.4211e-05,1.5928e-05,1.7602e-05,2.205e-05,2.4418e-05,2.5336e-05,2.8866e-05,2.9094e-05,3.0796e-05,3.1577e-05,4.3844e-05,4.7649e-05,4.9209e-05,5.6965e-05,6.1979e-05,6.2775e-05,7.631e-05,0.00011032,0.00012292,0.00012992,0.00014772,0.00014935,0.00017231,0.00017501,0.00021,0.00023351,0.0002883,0.0002938,0.00029906,0.00030204,0.00031196,0.00032027,0.00032545,0.00038488,0.00039853,0.00055224,0.00061495,0.00066007,0.00067877,0.00085394,0.00085734,0.00092393,0.00095666,0.0011379,0.0011441,0.001159,0.0013164,0.0013633,0.0013804,0.0014334,0.0015047,0.0015751,0.0016129,0.0020308,0.0020472,0.0023053,0.0027489,0.0032359,0.0040434,0.0040561,0.0043849,0.004833,0.0054877,0.0054954,0.0057403,0.0070285,0.0073623,0.0073998,0.0093317,0.0098114,0.010098,0.011026,0.012019,0.014056,0.014401,0.016173,0.020838,0.020908,0.021338,0.022241,0.022972,0.023902,0.025041,0.038045,0.042271,0.049505,0.05552,0.055831,0.056554,0.066761,0.069345,0.069563,0.081019,0.10371,0.1045,0.11209,0.11371,0.13292,0.1387,0.15197,0.15925,0.16757,0.16923,0.17958,0.18145,0.18234,0.20772,0.21575,0.21919,0.23061,0.23429,0.25162,0.25568,0.26398,0.28536,0.28557,0.2962,0.29984,0.29985,0.32424,0.32503,0.3354,0.34654,0.37147,0.39466,0.41169,0.43941,0.46567,0.50047,0.5019,0.52914,0.55561,0.5713,0.61345,0.62582,0.65085,0.66558,0.69606,0.69926,0.70583,0.7209,0.75188,0.78271,0.79857,0.81401,0.82191,0.82301,0.837,0.85264,0.89657,0.90719,0.91282,0.92473,0.92481,0.93576,0.93707,0.94399,0.94928,0.96528,0.96736,0.97751,0.98531,0.9993,0.99993,1,0.99949,0.99808,0.99731,0.99539,0.99369,0.99123,0.98628,0.98625,0.97465,0.971,0.97021,0.96979,0.95344,0.95303,0.95119,0.94979,0.94607,0.93963,0.93359,0.90377,0.8261,0.79994,0.79758,0.79561,0.78922,0.78564,0.75082,0.72718,0.70968,0.6998,0.67899,0.66116,0.65783,0.63259,0.61826,0.60074,0.57263,0.53584,0.5335,0.52116,0.51264,0.50882,0.46861,0.45779,0.40982,0.39692,0.37467,0.36301,0.35927,0.33927,0.33673,0.33121,0.31933,0.29733 1,5.005e-35,9.2917e-35,9.5836e-35,1.1545e-34,1.3322e-34,1.6077e-34,2.3141e-34,5.4854e-34,9.4733e-34,1.0302e-33,1.5887e-33,1.7049e-33,2.2567e-33,4.4549e-33,5.5112e-33,6.3885e-33,1.2096e-32,1.3495e-32,1.5234e-32,2.2874e-32,2.3894e-32,2.4501e-32,3.3375e-32,4.0046e-32,4.0284e-32,5.7113e-32,5.8955e-32,6.9006e-32,7.045e-32,7.1883e-32,2.0851e-31,5.7251e-31,6.2704e-31,8.4307e-31,1.0975e-30,1.3464e-30,1.7155e-30,2.2722e-30,3.721e-30,4.8783e-30,7.5681e-30,1.3124e-29,1.3806e-29,1.5377e-29,1.6986e-29,2.8478e-29,2.8501e-29,9.7063e-29,1.0625e-28,1.1173e-28,1.6091e-28,1.6528e-28,3.3722e-28,4.4583e-28,5.0068e-28,6.4563e-28,7.5867e-28,1.0002e-27,1.0896e-27,2.1002e-27,3.1434e-27,1.107e-26,1.5603e-26,1.7497e-26,2.1474e-26,3.7624e-26,4.2195e-26,4.671e-26,7.5209e-26,1.1735e-25,1.383e-25,1.5819e-25,2.571e-25,5.1642e-25,1.0721e-24,1.7489e-24,1.9374e-24,4.8112e-24,6.5783e-24,7.6096e-24,8.1172e-24,1.0541e-23,3.0705e-23,3.1776e-23,3.8252e-23,5.1309e-23,5.4349e-23,8.253e-23,2.5873e-22,2.6264e-22,3.6168e-22,4.0562e-22,1.4861e-21,2.0545e-21,2.104e-21,2.8073e-21,4.143e-21,4.1749e-21,4.3081e-21,5.4437e-21,5.4551e-21,6.7407e-21,7.3147e-21,2.3346e-20,3.8668e-20,3.9332e-20,6.9487e-20,8.0881e-20,1.0225e-19,1.1457e-19,1.2251e-19,1.3194e-19,1.3516e-19,1.4415e-19,1.8676e-19,1.9246e-19,2.0475e-19,2.1541e-19,3.1556e-19,4.8484e-19,8.3946e-19,1.0312e-18,1.5906e-18,2.5728e-18,3.1471e-18,3.4911e-18,1.0883e-17,1.2399e-17,1.3644e-17,1.6488e-17,2.0961e-17,2.579e-17,3.0505e-17,3.1429e-17,3.2022e-17,3.9539e-17,6.8612e-17,7.1439e-17,8.8621e-17,1.236e-16,1.4841e-16,1.5288e-16,4.3084e-16,4.3557e-16,5.3354e-16,7.9185e-16,8.5065e-16,1.1103e-15,1.1821e-15,1.8302e-15,2.43e-15,4.6063e-15,4.677e-15,9.6345e-15,1.0457e-14,1.0734e-14,1.7064e-14,1.7572e-14,2.0748e-14,2.5804e-14,2.7619e-14,2.9074e-14,3.5577e-14,3.6784e-14,3.7592e-14,4.4092e-14,4.6619e-14,4.7301e-14,5.3961e-14,5.6576e-14,7.3466e-14,1.1299e-13,1.2195e-13,1.2445e-13,1.5067e-13,1.6302e-13,2.2437e-13,3.9105e-13,4.6393e-13,6.0724e-13,6.7018e-13,8.8026e-13,1.1527e-12,1.1783e-12,1.1985e-12,1.2009e-12,1.2998e-12,1.3085e-12,1.6755e-12,1.8759e-12,2.3183e-12,2.3402e-12,2.4775e-12,3.5658e-12,3.6036e-12,4.2811e-12,5.2037e-12,7.3578e-12,7.6991e-12,8.7612e-12,9.018e-12,9.6998e-12,1.0957e-11,1.3198e-11,1.3265e-11,2.0169e-11,3.233e-11,3.3982e-11,3.5907e-11,3.6527e-11,4.835e-11,5.7404e-11,1.0211e-10,1.0521e-10,1.1175e-10,1.2368e-10,1.7987e-10,2.6472e-10,4.0217e-10,4.5564e-10,4.9077e-10,5.9222e-10,8.629e-10,1.0169e-09,1.2569e-09,1.7363e-09,2.2893e-09,2.4057e-09,4.0719e-09,4.3613e-09,4.4719e-09,5.0491e-09,5.2983e-09,7.7638e-09,9.134e-09,9.572e-09,9.6176e-09,1.0608e-08,1.2102e-08,1.2861e-08,1.3214e-08,2.1148e-08,2.116e-08,3.2129e-08,5.1428e-08,7.8894e-08,1.1636e-07,1.3742e-07,1.4352e-07,1.5881e-07,1.7345e-07,2.1326e-07,2.1814e-07,3.2323e-07,3.5664e-07,4.3383e-07,5.5218e-07,6.384e-07,6.4892e-07,7.2966e-07,7.8911e-07,9.5547e-07,1.2663e-06,1.3e-06,1.4696e-06,1.7808e-06,2.0789e-06,2.094e-06,3.5433e-06,3.8568e-06,4.0166e-06,4.4556e-06,4.7014e-06,5.1149e-06,5.8456e-06,6.1678e-06,6.6452e-06,7.4878e-06,8.7295e-06,1.0094e-05,1.0243e-05,1.2212e-05,1.3698e-05,1.5148e-05,1.9005e-05,2.1061e-05,2.1859e-05,2.4927e-05,2.5125e-05,2.6606e-05,2.7285e-05,3.7973e-05,4.1293e-05,4.2655e-05,4.9429e-05,5.3813e-05,5.451e-05,6.6357e-05,9.6197e-05,0.00010727,0.00011343,0.00012909,0.00013053,0.00015075,0.00015314,0.00018401,0.00020478,0.00025325,0.00025812,0.00026278,0.00026541,0.0002742,0.00028157,0.00028616,0.00033887,0.00035099,0.00048766,0.00054351,0.00058374,0.00060042,0.00075683,0.00075987,0.00081941,0.0008487,0.001011,0.0010166,0.0010299,0.0011711,0.0012132,0.0012285,0.0012761,0.0013402,0.0014035,0.0014374,0.0018136,0.0018284,0.0020611,0.0024617,0.0029023,0.0036343,0.0036458,0.0039443,0.0043515,0.0049472,0.0049542,0.0051772,0.006352,0.0066568,0.0066911,0.0084582,0.0088976,0.0091599,0.010011,0.010923,0.012797,0.013114,0.014746,0.019054,0.019119,0.019517,0.020352,0.021029,0.021891,0.022946,0.03504,0.038984,0.045748,0.051385,0.051677,0.052354,0.061942,0.064373,0.064579,0.075376,0.096834,0.097587,0.10478,0.10632,0.12458,0.13009,0.14275,0.1497,0.15766,0.15925,0.16916,0.17095,0.17181,0.19617,0.20389,0.2072,0.21821,0.22175,0.23848,0.2424,0.25043,0.27113,0.27133,0.28165,0.28518,0.28519,0.30889,0.30966,0.31976,0.33061,0.35494,0.37762,0.39432,0.42154,0.44739,0.48174,0.48315,0.51013,0.5364,0.55201,0.59406,0.60643,0.63152,0.64632,0.67703,0.68025,0.68688,0.70213,0.73356,0.765,0.78122,0.79707,0.8052,0.80633,0.82076,0.83696,0.88282,0.89402,0.89998,0.91263,0.91272,0.92445,0.92585,0.93332,0.93905,0.95662,0.95893,0.97037,0.9794,0.99759,0.99902,0.99949,1,0.99955,0.99914,0.99794,0.99677,0.99494,0.99103,0.991,0.98124,0.97806,0.97737,0.977,0.96241,0.96204,0.96037,0.9591,0.9557,0.94981,0.94424,0.91639,0.84216,0.8168,0.8145,0.81259,0.80637,0.80288,0.76883,0.7456,0.72836,0.7186,0.69801,0.68032,0.67702,0.65192,0.63763,0.62014,0.59199,0.55504,0.55269,0.54027,0.53167,0.52782,0.48718,0.47622,0.42748,0.41434,0.39163,0.37972,0.3759,0.35542,0.35282,0.34716,0.33496,0.31236 1,3.4315e-35,6.38e-35,6.5809e-35,7.9314e-35,9.1555e-35,1.1054e-34,1.5924e-34,3.7826e-34,6.5412e-34,7.1146e-34,1.0984e-33,1.1789e-33,1.5615e-33,3.0877e-33,3.8219e-33,4.4319e-33,8.4047e-33,9.3788e-33,1.0591e-32,1.5919e-32,1.663e-32,1.7054e-32,2.3248e-32,2.7907e-32,2.8074e-32,3.9837e-32,4.1125e-32,4.8155e-32,4.9165e-32,5.0168e-32,1.4591e-31,4.0166e-31,4.4001e-31,5.9206e-31,7.7125e-31,9.4669e-31,1.2069e-30,1.5997e-30,2.6231e-30,3.4413e-30,5.3448e-30,9.2819e-30,9.7656e-30,1.088e-29,1.2021e-29,2.0182e-29,2.0198e-29,6.9008e-29,7.5561e-29,7.9462e-29,1.1455e-28,1.1767e-28,2.4054e-28,3.1826e-28,3.5752e-28,4.6134e-28,5.4235e-28,7.1551e-28,7.7964e-28,1.5055e-27,2.2557e-27,7.9715e-27,1.1246e-26,1.2615e-26,1.5492e-26,2.7184e-26,3.0497e-26,3.3769e-26,5.4445e-26,8.5058e-26,1.0029e-25,1.1475e-25,1.8676e-25,3.7587e-25,7.8195e-25,1.2774e-24,1.4155e-24,3.5242e-24,4.823e-24,5.5816e-24,5.955e-24,7.7388e-24,2.2614e-23,2.3405e-23,2.819e-23,3.7846e-23,4.0095e-23,6.0961e-23,1.9176e-22,1.9467e-22,2.6834e-22,3.0104e-22,1.1073e-21,1.5324e-21,1.5694e-21,2.0959e-21,3.0968e-21,3.1207e-21,3.2206e-21,4.0724e-21,4.081e-21,5.0461e-21,5.4772e-21,1.7545e-20,2.9106e-20,2.9608e-20,5.2402e-20,6.1024e-20,7.7202e-20,8.6538e-20,9.2559e-20,9.9703e-20,1.0215e-19,1.0897e-19,1.4129e-19,1.4561e-19,1.5495e-19,1.6304e-19,2.3914e-19,3.6794e-19,6.382e-19,7.845e-19,1.2118e-18,1.9632e-18,2.403e-18,2.6666e-18,8.3451e-18,9.5114e-18,1.047e-17,1.2661e-17,1.6109e-17,1.9833e-17,2.3473e-17,2.4186e-17,2.4645e-17,3.0452e-17,5.2944e-17,5.5133e-17,6.8445e-17,9.557e-17,1.1483e-16,1.183e-16,3.3461e-16,3.383e-16,4.1469e-16,6.1633e-16,6.6227e-16,8.6522e-16,9.2143e-16,1.4288e-15,1.8991e-15,3.6084e-15,3.664e-15,7.5679e-15,8.2165e-15,8.4346e-15,1.3432e-14,1.3834e-14,1.6345e-14,2.0344e-14,2.1781e-14,2.2932e-14,2.8084e-14,2.904e-14,2.9681e-14,3.4834e-14,3.6838e-14,3.7379e-14,4.2664e-14,4.4739e-14,5.8154e-14,8.9586e-14,9.6722e-14,9.8714e-14,1.196e-13,1.2945e-13,1.7838e-13,3.1158e-13,3.6989e-13,4.8468e-13,5.3513e-13,7.0365e-13,9.2245e-13,9.43e-13,9.5925e-13,9.6115e-13,1.0407e-12,1.0477e-12,1.3428e-12,1.5042e-12,1.8604e-12,1.8781e-12,1.9888e-12,2.8666e-12,2.8972e-12,3.4443e-12,4.19e-12,5.933e-12,6.2094e-12,7.0699e-12,7.2779e-12,7.8306e-12,8.8501e-12,1.0669e-11,1.0723e-11,1.6333e-11,2.6234e-11,2.758e-11,2.915e-11,2.9656e-11,3.9302e-11,4.6697e-11,8.3271e-11,8.5813e-11,9.1169e-11,1.0095e-10,1.4706e-10,2.1681e-10,3.3001e-10,3.741e-10,4.0308e-10,4.8682e-10,7.1056e-10,8.3803e-10,1.0368e-09,1.4344e-09,1.8938e-09,1.9906e-09,3.3777e-09,3.619e-09,3.7113e-09,4.1927e-09,4.4007e-09,6.4606e-09,7.6069e-09,7.9734e-09,8.0116e-09,8.8412e-09,1.0092e-08,1.0729e-08,1.1025e-08,1.7686e-08,1.7696e-08,2.6927e-08,4.3205e-08,6.6427e-08,9.8171e-08,1.1604e-07,1.2122e-07,1.3421e-07,1.4665e-07,1.8051e-07,1.8467e-07,2.7422e-07,3.0273e-07,3.6864e-07,4.6984e-07,5.4365e-07,5.5266e-07,6.2184e-07,6.7279e-07,8.1552e-07,1.0826e-06,1.1116e-06,1.2574e-06,1.5254e-06,1.7824e-06,1.7954e-06,3.0475e-06,3.3189e-06,3.4572e-06,3.8375e-06,4.0504e-06,4.4089e-06,5.0429e-06,5.3226e-06,5.7372e-06,6.4695e-06,7.5495e-06,8.7378e-06,8.8677e-06,1.0584e-05,1.188e-05,1.3146e-05,1.6517e-05,1.8316e-05,1.9014e-05,2.1702e-05,2.1875e-05,2.3173e-05,2.3769e-05,3.3151e-05,3.607e-05,3.7268e-05,4.323e-05,4.709e-05,4.7704e-05,5.815e-05,8.4516e-05,9.4313e-05,9.9769e-05,0.00011365,0.00011492,0.00013287,0.00013499,0.00016241,0.00018088,0.00022404,0.00022839,0.00023254,0.00023489,0.00024273,0.0002493,0.00025339,0.00030044,0.00031127,0.00043356,0.00048362,0.0005197,0.00053467,0.00067518,0.00067791,0.00073147,0.00075782,0.00090402,0.00090905,0.00092103,0.0010484,0.0010864,0.0011002,0.0011433,0.0012011,0.0012583,0.001289,0.0016295,0.0016429,0.0018539,0.0022177,0.0026183,0.0032852,0.0032957,0.0035681,0.0039399,0.0044845,0.0044909,0.004695,0.0057713,0.006051,0.0060825,0.0077061,0.0081105,0.008352,0.0091362,0.0099773,0.011707,0.012,0.01351,0.017504,0.017564,0.017933,0.01871,0.019339,0.02014,0.021122,0.032407,0.0361,0.042445,0.047742,0.048016,0.048654,0.057686,0.059979,0.060173,0.070375,0.090716,0.091431,0.09827,0.099732,0.11713,0.12239,0.13449,0.14114,0.14876,0.15028,0.15979,0.16151,0.16233,0.18575,0.19319,0.19638,0.20699,0.21041,0.22657,0.23036,0.23813,0.25819,0.25839,0.26839,0.27182,0.27183,0.29488,0.29562,0.30546,0.31604,0.33979,0.36198,0.37834,0.40506,0.43049,0.46438,0.46578,0.49246,0.51851,0.53401,0.57589,0.58824,0.61334,0.62818,0.65903,0.66228,0.66896,0.68433,0.71612,0.74805,0.76458,0.78078,0.7891,0.79026,0.80507,0.82175,0.86931,0.88102,0.88727,0.9006,0.90069,0.91311,0.9146,0.92256,0.9287,0.94769,0.95021,0.96282,0.97299,0.99507,0.99725,0.99808,0.99955,1,0.99994,0.99942,0.99873,0.9975,0.99458,0.99456,0.98654,0.98382,0.98322,0.9829,0.97,0.96966,0.96816,0.96701,0.96394,0.95857,0.95345,0.92753,0.85671,0.83216,0.82993,0.82807,0.82202,0.81863,0.78538,0.76259,0.74563,0.73601,0.71567,0.69816,0.69488,0.66996,0.65574,0.6383,0.61018,0.57314,0.57078,0.5583,0.54966,0.54578,0.50479,0.49372,0.44433,0.43098,0.40787,0.39573,0.39183,0.37093,0.36827,0.36248,0.35,0.32684 1,2.9724e-35,5.5294e-35,5.7038e-35,6.8754e-35,7.9376e-35,9.585e-35,1.3813e-34,3.2837e-34,5.6813e-34,6.1798e-34,9.5442e-34,1.0245e-33,1.3573e-33,2.6856e-33,3.3249e-33,3.8561e-33,7.3172e-33,8.1661e-33,9.2223e-33,1.3867e-32,1.4488e-32,1.4857e-32,2.0259e-32,2.4324e-32,2.4469e-32,3.4733e-32,3.5857e-32,4.1993e-32,4.2875e-32,4.375e-32,1.2737e-31,3.5097e-31,3.8452e-31,5.1754e-31,6.7435e-31,8.2791e-31,1.0557e-30,1.3997e-30,2.2963e-30,3.0133e-30,4.6821e-30,8.1354e-30,8.5598e-30,9.5376e-30,1.0539e-29,1.7703e-29,1.7717e-29,6.0605e-29,6.6366e-29,6.9796e-29,1.0066e-28,1.034e-28,2.1152e-28,2.7994e-28,3.1451e-28,4.0594e-28,4.773e-28,6.2987e-28,6.8639e-28,1.3263e-27,1.9881e-27,7.0348e-27,9.9284e-27,1.1138e-26,1.3681e-26,2.4021e-26,2.6951e-26,2.9846e-26,4.8144e-26,7.525e-26,8.8742e-26,1.0155e-25,1.6536e-25,3.3306e-25,6.9343e-25,1.1334e-24,1.2561e-24,3.1304e-24,4.2855e-24,4.9603e-24,5.2926e-24,6.88e-24,2.0128e-23,2.0833e-23,2.5098e-23,3.3705e-23,3.5711e-23,5.432e-23,1.7109e-22,1.737e-22,2.3951e-22,2.6874e-22,9.8995e-22,1.3705e-21,1.4036e-21,1.8752e-21,2.7719e-21,2.7934e-21,2.8829e-21,3.6464e-21,3.6541e-21,4.5194e-21,4.9059e-21,1.5737e-20,2.6122e-20,2.6573e-20,4.7064e-20,5.4817e-20,6.937e-20,7.7769e-20,8.3187e-20,8.9616e-20,9.1815e-20,9.7952e-20,1.2705e-19,1.3094e-19,1.3935e-19,1.4663e-19,2.1517e-19,3.3124e-19,5.7494e-19,7.0693e-19,1.0925e-18,1.7711e-18,2.1684e-18,2.4067e-18,7.5424e-18,8.598e-18,9.4657e-18,1.1449e-17,1.4572e-17,1.7946e-17,2.1244e-17,2.189e-17,2.2305e-17,2.7569e-17,4.7966e-17,4.9952e-17,6.2031e-17,8.6653e-17,1.0414e-16,1.0729e-16,3.039e-16,3.0725e-16,3.7674e-16,5.6022e-16,6.0204e-16,7.8682e-16,8.3801e-16,1.3003e-15,1.7289e-15,3.2879e-15,3.3386e-15,6.9029e-15,7.4954e-15,7.6947e-15,1.2262e-14,1.2629e-14,1.4925e-14,1.8583e-14,1.9897e-14,2.0951e-14,2.5664e-14,2.6539e-14,2.7126e-14,3.1843e-14,3.3677e-14,3.4173e-14,3.9012e-14,4.0912e-14,5.32e-14,8.2006e-14,8.8549e-14,9.0375e-14,1.0953e-13,1.1856e-13,1.6346e-13,2.8575e-13,3.3931e-13,4.4479e-13,4.9116e-13,6.461e-13,8.4736e-13,8.6627e-13,8.8122e-13,8.8297e-13,9.5612e-13,9.6258e-13,1.2342e-12,1.3828e-12,1.7108e-12,1.7271e-12,1.8291e-12,2.6379e-12,2.6661e-12,3.1704e-12,3.858e-12,5.4659e-12,5.7209e-12,6.515e-12,6.7071e-12,7.2173e-12,8.1585e-12,9.8379e-12,9.8881e-12,1.5071e-11,2.4227e-11,2.5472e-11,2.6923e-11,2.7392e-11,3.6319e-11,4.3164e-11,7.7045e-11,7.9401e-11,8.4366e-11,9.3433e-11,1.3619e-10,2.0092e-10,3.0605e-10,3.4702e-10,3.7394e-10,4.5178e-10,6.5985e-10,7.7845e-10,9.6348e-10,1.3337e-09,1.7617e-09,1.8519e-09,3.1455e-09,3.3706e-09,3.4566e-09,3.906e-09,4.1e-09,6.0235e-09,7.0944e-09,7.4369e-09,7.4726e-09,8.2479e-09,9.4174e-09,1.0013e-08,1.0289e-08,1.6521e-08,1.653e-08,2.5173e-08,4.0428e-08,6.221e-08,9.2011e-08,1.088e-07,1.1366e-07,1.2587e-07,1.3756e-07,1.6939e-07,1.733e-07,2.5755e-07,2.8438e-07,3.4645e-07,4.4178e-07,5.1134e-07,5.1983e-07,5.8504e-07,6.3309e-07,7.6771e-07,1.0198e-06,1.0471e-06,1.1848e-06,1.4379e-06,1.6808e-06,1.6931e-06,2.8772e-06,3.134e-06,3.2649e-06,3.625e-06,3.8266e-06,4.1661e-06,4.7666e-06,5.0316e-06,5.4245e-06,6.1185e-06,7.1426e-06,8.2696e-06,8.3928e-06,1.0021e-05,1.1252e-05,1.2454e-05,1.5656e-05,1.7365e-05,1.8029e-05,2.0584e-05,2.0749e-05,2.1983e-05,2.255e-05,3.1477e-05,3.4255e-05,3.5396e-05,4.1074e-05,4.4752e-05,4.5337e-05,5.5292e-05,8.0441e-05,8.9791e-05,9.5e-05,0.00010825,0.00010947,0.00012662,0.00012864,0.00015485,0.00017251,0.0002138,0.00021796,0.00022194,0.00022418,0.00023168,0.00023797,0.00024189,0.00028695,0.00029732,0.00041452,0.00046253,0.00049714,0.0005115,0.00064637,0.00064899,0.00070042,0.00072573,0.00086621,0.00087104,0.00088255,0.001005,0.0010416,0.0010548,0.0010962,0.0011519,0.0012069,0.0012364,0.0015642,0.0015771,0.0017804,0.0021309,0.0025173,0.0031608,0.0031709,0.0034339,0.0037931,0.0043193,0.0043255,0.0045228,0.0055636,0.0058342,0.0058646,0.0074365,0.0078282,0.0080621,0.0088221,0.0096374,0.011315,0.0116,0.013065,0.016944,0.017003,0.017362,0.018116,0.018728,0.019507,0.020462,0.031452,0.035053,0.041243,0.046415,0.046684,0.047306,0.056133,0.058375,0.058565,0.068546,0.088473,0.089174,0.095881,0.097315,0.11439,0.11956,0.13144,0.13798,0.14548,0.14698,0.15633,0.15802,0.15883,0.18189,0.18922,0.19237,0.20283,0.2062,0.22215,0.22589,0.23356,0.25338,0.25357,0.26346,0.26685,0.26686,0.28965,0.29039,0.30012,0.3106,0.33413,0.35612,0.37235,0.39888,0.42414,0.45784,0.45923,0.48579,0.51175,0.5272,0.569,0.58134,0.60643,0.62127,0.65216,0.65542,0.66211,0.67753,0.70944,0.74153,0.75818,0.7745,0.78288,0.78406,0.799,0.81585,0.86403,0.87592,0.88229,0.89586,0.89595,0.90862,0.91015,0.91829,0.92458,0.94409,0.94669,0.95974,0.97033,0.99388,0.99635,0.99731,0.99914,0.99994,1,0.99974,0.99924,0.99824,0.9957,0.99568,0.98833,0.98578,0.98522,0.98492,0.97267,0.97235,0.97091,0.96981,0.96686,0.96169,0.95675,0.93158,0.8621,0.83788,0.83567,0.83384,0.82786,0.8245,0.79157,0.76896,0.75212,0.74256,0.72233,0.70489,0.70162,0.67678,0.6626,0.64519,0.61709,0.58004,0.57768,0.56518,0.55652,0.55263,0.51153,0.50042,0.4508,0.43737,0.41412,0.40189,0.39797,0.3769,0.37422,0.36839,0.3558,0.33243 1,2.2303e-35,4.1536e-35,4.2848e-35,5.1667e-35,5.9665e-35,7.2072e-35,1.0393e-34,2.4747e-34,4.2858e-34,4.6626e-34,7.2068e-34,7.737e-34,1.0256e-33,2.0318e-33,2.5164e-33,2.9193e-33,5.5461e-33,6.1908e-33,6.9931e-33,1.0523e-32,1.0995e-32,1.1276e-32,1.5385e-32,1.8478e-32,1.8588e-32,2.6403e-32,2.726e-32,3.1934e-32,3.2606e-32,3.3273e-32,9.7067e-32,2.6798e-31,2.9365e-31,3.9546e-31,5.1554e-31,6.3319e-31,8.078e-31,1.0716e-30,1.7597e-30,2.3104e-30,3.593e-30,6.2498e-30,6.5765e-30,7.3293e-30,8.1005e-30,1.362e-29,1.3631e-29,4.6744e-29,5.1196e-29,5.3848e-29,7.7713e-29,7.9837e-29,1.6355e-28,2.1657e-28,2.4338e-28,3.1429e-28,3.6967e-28,4.8811e-28,5.32e-28,1.0294e-27,1.5442e-27,5.4786e-27,7.7376e-27,8.6827e-27,1.0669e-26,1.8755e-26,2.1048e-26,2.3314e-26,3.7645e-26,5.8895e-26,6.9479e-26,7.9531e-26,1.2964e-25,2.615e-25,5.453e-25,8.922e-25,9.89e-25,2.4698e-24,3.3834e-24,3.9175e-24,4.1804e-24,5.4374e-24,1.5946e-23,1.6506e-23,1.9892e-23,2.6732e-23,2.8326e-23,4.3128e-23,1.362e-22,1.3827e-22,1.9081e-22,2.1414e-22,7.9121e-22,1.0962e-21,1.1227e-21,1.5009e-21,2.2207e-21,2.238e-21,2.3099e-21,2.9232e-21,2.9294e-21,3.6249e-21,3.9357e-21,1.266e-20,2.104e-20,2.1403e-20,3.796e-20,4.423e-20,5.6003e-20,6.2802e-20,6.7188e-20,7.2393e-20,7.4174e-20,7.9145e-20,1.0272e-19,1.0588e-19,1.1269e-19,1.186e-19,1.7419e-19,2.6844e-19,4.6657e-19,5.7398e-19,8.8804e-19,1.4413e-18,1.7656e-18,1.9601e-18,6.1607e-18,7.0252e-18,7.7361e-18,9.3617e-18,1.1922e-17,1.4691e-17,1.7398e-17,1.7929e-17,1.827e-17,2.2594e-17,3.9368e-17,4.1002e-17,5.0946e-17,7.123e-17,8.5646e-17,8.8245e-17,2.5065e-16,2.5342e-16,3.109e-16,4.6282e-16,4.9747e-16,6.5063e-16,6.9307e-16,1.0767e-15,1.4327e-15,2.7295e-15,2.7717e-15,5.7425e-15,6.2368e-15,6.4032e-15,1.0217e-14,1.0524e-14,1.2443e-14,1.5503e-14,1.6602e-14,1.7484e-14,2.143e-14,2.2163e-14,2.2654e-14,2.6605e-14,2.8143e-14,2.8558e-14,3.2615e-14,3.4208e-14,4.4517e-14,6.8708e-14,7.4206e-14,7.5741e-14,9.1844e-14,9.944e-14,1.3723e-13,2.4029e-13,2.8549e-13,3.7454e-13,4.1371e-13,5.4467e-13,7.1492e-13,7.3092e-13,7.4358e-13,7.4506e-13,8.0698e-13,8.1245e-13,1.0425e-12,1.1684e-12,1.4466e-12,1.4604e-12,1.5468e-12,2.2334e-12,2.2574e-12,2.6858e-12,3.2703e-12,4.6384e-12,4.8555e-12,5.5318e-12,5.6954e-12,6.13e-12,6.9321e-12,8.3641e-12,8.4069e-12,1.2831e-11,2.0657e-11,2.1722e-11,2.2965e-11,2.3365e-11,3.1009e-11,3.6874e-11,6.5945e-11,6.7968e-11,7.2232e-11,8.0023e-11,1.1679e-10,1.7253e-10,2.6318e-10,2.9854e-10,3.2179e-10,3.8903e-10,5.6894e-10,6.7159e-10,8.3184e-10,1.1528e-09,1.5243e-09,1.6026e-09,2.7272e-09,2.9232e-09,2.9981e-09,3.3893e-09,3.5583e-09,5.2351e-09,6.1695e-09,6.4685e-09,6.4997e-09,7.1767e-09,8.1984e-09,8.7185e-09,8.9601e-09,1.4413e-08,1.4421e-08,2.1996e-08,3.5392e-08,5.4552e-08,8.081e-08,9.5617e-08,9.9909e-08,1.1069e-07,1.2101e-07,1.4914e-07,1.526e-07,2.2714e-07,2.5091e-07,3.0593e-07,3.905e-07,4.5226e-07,4.5981e-07,5.1775e-07,5.6046e-07,6.802e-07,9.0462e-07,9.2899e-07,1.0517e-06,1.2775e-06,1.4943e-06,1.5052e-06,2.5641e-06,2.794e-06,2.9112e-06,3.2338e-06,3.4145e-06,3.7189e-06,4.2576e-06,4.4954e-06,4.8481e-06,5.4715e-06,6.3918e-06,7.4055e-06,7.5163e-06,8.9821e-06,1.0091e-05,1.1174e-05,1.4063e-05,1.5606e-05,1.6206e-05,1.8514e-05,1.8663e-05,1.9779e-05,2.0291e-05,2.8371e-05,3.0888e-05,3.1922e-05,3.7071e-05,4.0408e-05,4.0938e-05,4.9979e-05,7.2852e-05,8.1367e-05,8.6113e-05,9.8194e-05,9.9306e-05,0.00011495,0.00011679,0.00014073,0.00015688,0.00019466,0.00019846,0.0002021,0.00020416,0.00021103,0.00021679,0.00022038,0.00026168,0.00027119,0.00037881,0.00042295,0.00045479,0.00046801,0.00059222,0.00059464,0.00064206,0.0006654,0.00079504,0.0007995,0.00081014,0.00092329,0.00095708,0.00096935,0.0010076,0.0010591,0.00111,0.0011373,0.001441,0.0014529,0.0016415,0.0019669,0.002326,0.0029251,0.0029346,0.0031797,0.0035146,0.0040058,0.0040115,0.0041958,0.0051689,0.005422,0.0054506,0.0069233,0.0072906,0.0075101,0.0082235,0.0089894,0.010567,0.010835,0.012214,0.015874,0.015929,0.016268,0.016981,0.017559,0.018296,0.019199,0.029617,0.033039,0.03893,0.043859,0.044115,0.044708,0.053135,0.055279,0.05546,0.065011,0.084126,0.0848,0.091246,0.092626,0.10907,0.11405,0.12552,0.13184,0.13909,0.14053,0.14958,0.15122,0.15201,0.17436,0.18148,0.18453,0.1947,0.19798,0.21349,0.21714,0.22461,0.24394,0.24412,0.25378,0.2571,0.2571,0.27939,0.28011,0.28964,0.29989,0.32297,0.34457,0.36053,0.38666,0.41158,0.44488,0.44626,0.47256,0.49831,0.51366,0.55527,0.56757,0.59263,0.60747,0.63842,0.64168,0.6484,0.66389,0.696,0.72841,0.74525,0.7618,0.77032,0.77151,0.78671,0.80388,0.85324,0.86549,0.87207,0.88612,0.88621,0.89938,0.90097,0.90946,0.91605,0.93659,0.93935,0.95326,0.96468,0.99112,0.99415,0.99539,0.99794,0.99942,0.99974,1,0.99987,0.99933,0.99755,0.99753,0.99152,0.98933,0.98884,0.98858,0.97764,0.97735,0.97604,0.97504,0.97234,0.96757,0.963,0.93936,0.87263,0.84908,0.84692,0.84514,0.8393,0.83602,0.80378,0.78155,0.76495,0.75552,0.73552,0.71825,0.71501,0.69035,0.67624,0.65891,0.63089,0.59383,0.59146,0.57893,0.57025,0.56636,0.52506,0.51387,0.46382,0.45025,0.42671,0.41433,0.41035,0.38898,0.38626,0.38033,0.36754,0.34376 1,1.8139e-35,3.3809e-35,3.4879e-35,4.2068e-35,4.8589e-35,5.8707e-35,8.4701e-35,2.019e-34,3.4993e-34,3.8073e-34,5.8882e-34,6.322e-34,8.3834e-34,1.6624e-33,2.0594e-33,2.3896e-33,4.5437e-33,5.0726e-33,5.731e-33,8.6288e-33,9.0161e-33,9.2467e-33,1.2622e-32,1.5163e-32,1.5254e-32,2.1677e-32,2.2381e-32,2.6224e-32,2.6776e-32,2.7325e-32,7.9832e-32,2.2071e-31,2.4188e-31,3.2587e-31,4.2498e-31,5.2211e-31,6.6631e-31,8.8426e-31,1.453e-30,1.9085e-30,2.9699e-30,5.1699e-30,5.4405e-30,6.0642e-30,6.7033e-30,1.1279e-29,1.1288e-29,3.8778e-29,4.2477e-29,4.468e-29,6.4516e-29,6.6282e-29,1.3592e-28,1.8006e-28,2.0238e-28,2.6145e-28,3.0758e-28,4.063e-28,4.4289e-28,8.5777e-28,1.2876e-27,4.5766e-27,6.467e-27,7.2581e-27,8.9214e-27,1.5696e-26,1.7618e-26,1.9518e-26,3.1538e-26,4.9374e-26,5.8262e-26,6.6704e-26,1.0881e-25,2.1972e-25,4.5871e-25,7.511e-25,8.3272e-25,2.0825e-24,2.8543e-24,3.3055e-24,3.5278e-24,4.5905e-24,1.3485e-23,1.3959e-23,1.6828e-23,2.2625e-23,2.3977e-23,3.6531e-23,1.1558e-22,1.1734e-22,1.6201e-22,1.8186e-22,6.7337e-22,9.3343e-22,9.5608e-22,1.2787e-21,1.8932e-21,1.9079e-21,1.9694e-21,2.4933e-21,2.4986e-21,3.0929e-21,3.3585e-21,1.0825e-20,1.8005e-20,1.8317e-20,3.2518e-20,3.79e-20,4.8008e-20,5.3847e-20,5.7614e-20,6.2086e-20,6.3616e-20,6.7886e-20,8.8146e-20,9.0861e-20,9.6718e-20,1.018e-19,1.4962e-19,2.3075e-19,4.0146e-19,4.9405e-19,7.6498e-19,1.2427e-18,1.5228e-18,1.6909e-18,5.3256e-18,6.0745e-18,6.6903e-18,8.099e-18,1.0319e-17,1.272e-17,1.5069e-17,1.553e-17,1.5826e-17,1.9578e-17,3.4149e-17,3.5569e-17,4.4214e-17,6.1857e-17,7.4402e-17,7.6664e-17,2.1819e-16,2.2061e-16,2.7075e-16,4.0337e-16,4.3362e-16,5.6742e-16,6.0451e-16,9.3991e-16,1.2514e-15,2.3872e-15,2.4242e-15,5.0299e-15,5.4637e-15,5.6098e-15,8.9598e-15,9.2296e-15,1.0916e-14,1.3606e-14,1.4573e-14,1.5349e-14,1.8821e-14,1.9466e-14,1.9898e-14,2.3377e-14,2.4731e-14,2.5096e-14,2.8669e-14,3.0073e-14,3.9156e-14,6.0489e-14,6.534e-14,6.6695e-14,8.0907e-14,8.7613e-14,1.2099e-13,2.1211e-13,2.521e-13,3.3093e-13,3.6562e-13,4.8164e-13,6.3257e-13,6.4676e-13,6.5798e-13,6.5929e-13,7.1421e-13,7.1906e-13,9.232e-13,1.0349e-12,1.2819e-12,1.2942e-12,1.371e-12,1.9811e-12,2.0024e-12,2.3834e-12,2.9034e-12,4.1212e-12,4.3145e-12,4.9169e-12,5.0627e-12,5.4499e-12,6.1648e-12,7.4414e-12,7.4796e-12,1.1427e-11,1.8417e-11,1.9369e-11,2.0479e-11,2.0837e-11,2.7672e-11,3.292e-11,5.8954e-11,6.0767e-11,6.4589e-11,7.1573e-11,1.0456e-10,1.546e-10,2.3607e-10,2.6787e-10,2.8878e-10,3.4929e-10,5.1132e-10,6.0382e-10,7.483e-10,1.0379e-09,1.3733e-09,1.4441e-09,2.4608e-09,2.6381e-09,2.7059e-09,3.06e-09,3.213e-09,4.7318e-09,5.5788e-09,5.85e-09,5.8782e-09,6.4922e-09,7.4191e-09,7.8911e-09,8.1103e-09,1.3062e-08,1.307e-08,1.9959e-08,3.2156e-08,4.9624e-08,7.3593e-08,8.7119e-08,9.1042e-08,1.0089e-07,1.1033e-07,1.3606e-07,1.3922e-07,2.0748e-07,2.2926e-07,2.7969e-07,3.5728e-07,4.1396e-07,4.2089e-07,4.741e-07,5.1333e-07,6.2337e-07,8.2976e-07,8.522e-07,9.6517e-07,1.173e-06,1.3728e-06,1.3829e-06,2.3597e-06,2.572e-06,2.6803e-06,2.9783e-06,3.1452e-06,3.4266e-06,3.9247e-06,4.1446e-06,4.4709e-06,5.0478e-06,5.8999e-06,6.839e-06,6.9417e-06,8.3004e-06,9.3285e-06,1.0334e-05,1.3015e-05,1.4449e-05,1.5006e-05,1.7151e-05,1.729e-05,1.8328e-05,1.8804e-05,2.6323e-05,2.8667e-05,2.963e-05,3.4427e-05,3.7538e-05,3.8033e-05,4.6466e-05,6.7826e-05,7.5785e-05,8.0223e-05,9.1523e-05,9.2563e-05,0.0001072,0.00010893,0.00013135,0.00014648,0.00018191,0.00018549,0.0001889,0.00019083,0.00019728,0.00020269,0.00020605,0.00024484,0.00025377,0.00035496,0.00039651,0.00042649,0.00043893,0.00055598,0.00055826,0.00060297,0.00062499,0.00074733,0.00075154,0.00076158,0.00086845,0.00090037,0.00091196,0.00094812,0.00099679,0.0010449,0.0010708,0.0013581,0.0013694,0.0015479,0.0018564,0.002197,0.0027659,0.0027749,0.0030078,0.0033262,0.0037935,0.003799,0.0039743,0.0049012,0.0051425,0.0051697,0.0065745,0.0069252,0.0071348,0.0078163,0.0085483,0.010057,0.010314,0.011634,0.015142,0.015195,0.01552,0.016205,0.01676,0.017467,0.018334,0.028356,0.031654,0.037337,0.042097,0.042344,0.042917,0.051065,0.053139,0.053315,0.062565,0.08111,0.081765,0.088028,0.089369,0.10537,0.11022,0.12139,0.12755,0.13463,0.13604,0.14487,0.14647,0.14724,0.1691,0.17606,0.17905,0.189,0.19221,0.20742,0.211,0.21832,0.2373,0.23748,0.24697,0.25023,0.25023,0.27215,0.27286,0.28224,0.29234,0.31509,0.3364,0.35217,0.37799,0.40266,0.43567,0.43703,0.46314,0.48872,0.504,0.54544,0.55771,0.58272,0.59756,0.62852,0.63179,0.63852,0.65405,0.68629,0.71889,0.73587,0.75257,0.76117,0.76238,0.77775,0.79513,0.84531,0.85781,0.86452,0.8789,0.879,0.89252,0.89415,0.90289,0.90967,0.93094,0.93381,0.94832,0.96033,0.98882,0.99226,0.99369,0.99677,0.99873,0.99924,0.99987,1,0.99979,0.99856,0.99855,0.99351,0.99157,0.99113,0.9909,0.98091,0.98064,0.97943,0.9785,0.97598,0.97151,0.9672,0.94468,0.87999,0.85694,0.85483,0.85307,0.84735,0.84413,0.8124,0.79047,0.77405,0.76472,0.7449,0.72777,0.72455,0.70004,0.686,0.66874,0.64078,0.60374,0.60137,0.58884,0.58014,0.57624,0.53482,0.52358,0.47325,0.45958,0.43585,0.42336,0.41934,0.39776,0.39501,0.38902,0.37609,0.35203 1,1.4033e-35,2.6182e-35,2.7012e-35,3.2589e-35,3.765e-35,4.5504e-35,6.5691e-35,1.5681e-34,2.7202e-34,2.96e-34,4.5811e-34,4.9192e-34,6.5262e-34,1.2955e-33,1.6056e-33,1.8634e-33,3.547e-33,3.9606e-33,4.4756e-33,6.7432e-33,7.0464e-33,7.2269e-33,9.8698e-33,1.1861e-32,1.1932e-32,1.6966e-32,1.7518e-32,2.0532e-32,2.0965e-32,2.1395e-32,6.2621e-32,1.7342e-31,1.9009e-31,2.5623e-31,3.3431e-31,4.1086e-31,5.2455e-31,6.9647e-31,1.1454e-30,1.5052e-30,2.3441e-30,4.0845e-30,4.2987e-30,4.7924e-30,5.2983e-30,8.9235e-30,8.9306e-30,3.0745e-29,3.3683e-29,3.5434e-29,5.1198e-29,5.2602e-29,1.0801e-28,1.4315e-28,1.6093e-28,2.08e-28,2.4477e-28,3.2349e-28,3.5268e-28,6.8388e-28,1.0273e-27,3.66e-27,5.1751e-27,5.8094e-27,7.1434e-27,1.2581e-26,1.4125e-26,1.5651e-26,2.5312e-26,3.9661e-26,4.6814e-26,5.3611e-26,8.7534e-26,1.7699e-25,3.7002e-25,6.0646e-25,6.725e-25,1.6848e-24,2.3106e-24,2.6767e-24,2.857e-24,3.7195e-24,1.095e-23,1.1335e-23,1.367e-23,1.839e-23,1.9491e-23,2.9721e-23,9.425e-23,9.5692e-23,1.322e-22,1.4844e-22,5.5109e-22,7.6444e-22,7.8303e-22,1.0479e-21,1.5528e-21,1.5648e-21,1.6153e-21,2.046e-21,2.0504e-21,2.5392e-21,2.7578e-21,8.9103e-21,1.4837e-20,1.5095e-20,2.683e-20,3.1281e-20,3.9644e-20,4.4476e-20,4.7595e-20,5.1297e-20,5.2564e-20,5.6101e-20,7.2884e-20,7.5134e-20,7.9988e-20,8.4198e-20,1.2386e-19,1.912e-19,3.3305e-19,4.1005e-19,6.3553e-19,1.0335e-18,1.2671e-18,1.4072e-18,4.4437e-18,5.0701e-18,5.5854e-18,6.7644e-18,8.6232e-18,1.0635e-17,1.2604e-17,1.299e-17,1.3238e-17,1.6385e-17,2.8616e-17,2.9809e-17,3.7073e-17,5.1907e-17,6.2462e-17,6.4365e-17,1.8364e-16,1.8568e-16,2.28e-16,3.4e-16,3.6556e-16,4.7867e-16,5.1004e-16,7.9387e-16,1.0577e-15,2.0209e-15,2.0523e-15,4.266e-15,4.6349e-15,4.7591e-15,7.6101e-15,7.8398e-15,9.2762e-15,1.1569e-14,1.2393e-14,1.3054e-14,1.6016e-14,1.6566e-14,1.6935e-14,1.9904e-14,2.1059e-14,2.1372e-14,2.4422e-14,2.5621e-14,3.3383e-14,5.1628e-14,5.578e-14,5.694e-14,6.9108e-14,7.4852e-14,1.0345e-13,1.8164e-13,2.1598e-13,2.8372e-13,3.1355e-13,4.1335e-13,5.4328e-13,5.555e-13,5.6516e-13,5.663e-13,6.136e-13,6.1778e-13,7.937e-13,8.9003e-13,1.1031e-12,1.1137e-12,1.18e-12,1.7068e-12,1.7252e-12,2.0544e-12,2.504e-12,3.5577e-12,3.7252e-12,4.2468e-12,4.3731e-12,4.7086e-12,5.328e-12,6.4348e-12,6.4679e-12,9.893e-12,1.5967e-11,1.6795e-11,1.776e-11,1.8072e-11,2.4019e-11,2.8588e-11,5.1285e-11,5.2867e-11,5.6202e-11,6.2299e-11,9.111e-11,1.3488e-10,2.0622e-10,2.3409e-10,2.5242e-10,3.0549e-10,4.4772e-10,5.2899e-10,6.5601e-10,9.1084e-10,1.2062e-09,1.2686e-09,2.1655e-09,2.322e-09,2.3818e-09,2.6946e-09,2.8298e-09,4.1727e-09,4.9223e-09,5.1624e-09,5.1874e-09,5.7311e-09,6.5522e-09,6.9704e-09,7.1648e-09,1.1558e-08,1.1565e-08,1.7685e-08,2.8539e-08,4.411e-08,6.5506e-08,7.7593e-08,8.1099e-08,8.9906e-08,9.835e-08,1.2137e-07,1.2421e-07,1.8537e-07,2.049e-07,2.5016e-07,3.1984e-07,3.7079e-07,3.7702e-07,4.2488e-07,4.6017e-07,5.5922e-07,7.452e-07,7.6542e-07,8.673e-07,1.0549e-06,1.2353e-06,1.2444e-06,2.1278e-06,2.3201e-06,2.4182e-06,2.6882e-06,2.8395e-06,3.0946e-06,3.5463e-06,3.7459e-06,4.0421e-06,4.5659e-06,5.3401e-06,6.1938e-06,6.2872e-06,7.5234e-06,8.4595e-06,9.3751e-06,1.182e-05,1.3127e-05,1.3636e-05,1.5594e-05,1.5721e-05,1.6668e-05,1.7103e-05,2.3978e-05,2.6123e-05,2.7004e-05,3.1398e-05,3.4248e-05,3.4701e-05,4.2434e-05,6.2048e-05,6.9365e-05,7.3446e-05,8.3843e-05,8.4801e-05,9.828e-05,9.9872e-05,0.00012054,0.00013449,0.0001672,0.0001705,0.00017365,0.00017544,0.00018139,0.00018639,0.0001895,0.00022536,0.00023363,0.00032734,0.00036586,0.00039367,0.00040521,0.0005139,0.00051602,0.00055757,0.00057804,0.00069185,0.00069577,0.00070512,0.00080462,0.00083436,0.00084517,0.00087886,0.00092423,0.00096911,0.00099321,0.0012613,0.0012719,0.0014387,0.0017272,0.0020462,0.0025795,0.0025879,0.0028064,0.0031054,0.0035445,0.0035496,0.0037145,0.0045866,0.0048139,0.0048395,0.006164,0.006495,0.0066929,0.0073364,0.0080282,0.0094553,0.0096981,0.010949,0.014276,0.014326,0.014635,0.015285,0.015812,0.016484,0.017309,0.026857,0.030006,0.035438,0.039994,0.040231,0.04078,0.048591,0.050582,0.05075,0.059637,0.077491,0.078122,0.084163,0.085457,0.10091,0.1056,0.11642,0.12238,0.12924,0.13061,0.13919,0.14074,0.14148,0.16272,0.16949,0.1724,0.18209,0.18523,0.20005,0.20354,0.21069,0.22923,0.22941,0.23869,0.24187,0.24188,0.26334,0.26404,0.27323,0.28314,0.30547,0.32642,0.34193,0.36738,0.39172,0.42434,0.42569,0.45154,0.47691,0.49207,0.53329,0.54551,0.57045,0.58527,0.61624,0.61951,0.62625,0.64181,0.67419,0.707,0.72413,0.741,0.7497,0.75092,0.76649,0.78413,0.83526,0.84806,0.85494,0.86972,0.86982,0.88375,0.88544,0.89447,0.9015,0.92364,0.92663,0.94188,0.95461,0.98562,0.98955,0.99123,0.99494,0.9975,0.99824,0.99933,0.99979,1,0.99944,0.99943,0.9956,0.99398,0.99361,0.99341,0.98462,0.98438,0.98329,0.98244,0.98015,0.97606,0.97208,0.95097,0.88888,0.86647,0.86441,0.8627,0.85712,0.85397,0.82292,0.80137,0.78521,0.776,0.75643,0.73947,0.73629,0.71198,0.69804,0.68087,0.65302,0.61604,0.61367,0.60113,0.59242,0.58851,0.54697,0.53569,0.48503,0.47125,0.4473,0.43468,0.43062,0.40878,0.406,0.39993,0.38683,0.36242 1,9.1763e-36,1.7149e-35,1.7694e-35,2.1358e-35,2.4684e-35,2.9848e-35,4.3132e-35,1.032e-34,1.7928e-34,1.9514e-34,3.0236e-34,3.2474e-34,4.3115e-34,8.575e-34,1.0633e-33,1.2346e-33,2.3542e-33,2.6295e-33,2.9723e-33,4.4834e-33,4.6856e-33,4.8059e-33,6.5691e-33,7.8981e-33,7.9456e-33,1.1309e-32,1.1678e-32,1.3693e-32,1.3983e-32,1.427e-32,4.1893e-32,1.1635e-31,1.2756e-31,1.7209e-31,2.2471e-31,2.7632e-31,3.5303e-31,4.6911e-31,7.7261e-31,1.0161e-30,1.5843e-30,2.7651e-30,2.9105e-30,3.2458e-30,3.5895e-30,6.0546e-30,6.0594e-30,2.0936e-29,2.2943e-29,2.4138e-29,3.4915e-29,3.5875e-29,7.3818e-29,9.7922e-29,1.1012e-28,1.4243e-28,1.677e-28,2.2181e-28,2.4189e-28,4.6997e-28,7.0686e-28,2.528e-27,3.5782e-27,4.0182e-27,4.944e-27,8.7225e-27,9.7961e-27,1.0858e-26,1.7587e-26,2.7594e-26,3.2588e-26,3.7336e-26,6.1053e-26,1.2372e-25,2.5925e-25,4.2557e-25,4.7207e-25,1.1861e-24,1.6284e-24,1.8872e-24,2.0148e-24,2.6253e-24,7.7555e-24,8.0297e-24,9.6896e-24,1.3048e-23,1.3831e-23,2.112e-23,6.7231e-23,6.8263e-23,9.4411e-23,1.0604e-22,3.9544e-22,5.4914e-22,5.6254e-22,7.5358e-22,1.1181e-21,1.1269e-21,1.1633e-21,1.4747e-21,1.4779e-21,1.8316e-21,1.9898e-21,6.4551e-21,1.0768e-20,1.0956e-20,1.9513e-20,2.2762e-20,2.8871e-20,3.2403e-20,3.4684e-20,3.7392e-20,3.8319e-20,4.0906e-20,5.3194e-20,5.4842e-20,5.8398e-20,6.1483e-20,9.0568e-20,1.4003e-19,2.444e-19,3.0114e-19,4.6748e-19,7.6158e-19,9.3438e-19,1.0381e-18,3.2923e-18,3.7582e-18,4.1417e-18,5.0195e-18,6.4048e-18,7.9052e-18,9.3747e-18,9.663e-18,9.8483e-18,1.22e-17,2.1352e-17,2.2245e-17,2.7689e-17,3.8819e-17,4.6746e-17,4.8175e-17,1.3801e-16,1.3955e-16,1.715e-16,2.5615e-16,2.7548e-16,3.6111e-16,3.8487e-16,6.0011e-16,8.0048e-16,1.5335e-15,1.5574e-15,3.2469e-15,3.5289e-15,3.6238e-15,5.806e-15,5.982e-15,7.083e-15,8.8417e-15,9.4744e-15,9.9821e-15,1.2257e-14,1.268e-14,1.2964e-14,1.5246e-14,1.6136e-14,1.6376e-14,1.8724e-14,1.9647e-14,2.5628e-14,3.9709e-14,4.2916e-14,4.3812e-14,5.3219e-14,5.7662e-14,7.9808e-14,1.4047e-13,1.6715e-13,2.1984e-13,2.4306e-13,3.2081e-13,4.2217e-13,4.317e-13,4.3925e-13,4.4013e-13,4.7707e-13,4.8033e-13,6.178e-13,6.9314e-13,8.599e-13,8.6818e-13,9.201e-13,1.3332e-12,1.3476e-12,1.606e-12,1.9593e-12,2.7883e-12,2.9201e-12,3.331e-12,3.4305e-12,3.6949e-12,4.1834e-12,5.0569e-12,5.0831e-12,7.7903e-12,1.2602e-11,1.3258e-11,1.4024e-11,1.4271e-11,1.8994e-11,2.2626e-11,4.0704e-11,4.1966e-11,4.4626e-11,4.9492e-11,7.2516e-11,1.0756e-10,1.648e-10,1.8719e-10,2.0193e-10,2.4461e-10,3.592e-10,4.2477e-10,5.2734e-10,7.3343e-10,9.7271e-10,1.0233e-09,1.7516e-09,1.8789e-09,1.9276e-09,2.1822e-09,2.2923e-09,3.3871e-09,3.9992e-09,4.1953e-09,4.2157e-09,4.6601e-09,5.3317e-09,5.6739e-09,5.833e-09,9.4343e-09,9.4399e-09,1.447e-08,2.3414e-08,3.6279e-08,5.3999e-08,6.4026e-08,6.6937e-08,7.4251e-08,8.1268e-08,1.0042e-07,1.0278e-07,1.5375e-07,1.7006e-07,2.0787e-07,2.6617e-07,3.0885e-07,3.1407e-07,3.5419e-07,3.8381e-07,4.6699e-07,6.2341e-07,6.4043e-07,7.2625e-07,8.8444e-07,1.0367e-06,1.0444e-06,1.7921e-06,1.9551e-06,2.0384e-06,2.2675e-06,2.3961e-06,2.6128e-06,2.9969e-06,3.1667e-06,3.4189e-06,3.8651e-06,4.5253e-06,5.254e-06,5.3338e-06,6.3904e-06,7.1913e-06,7.9754e-06,1.0071e-05,1.1194e-05,1.163e-05,1.3313e-05,1.3422e-05,1.4237e-05,1.4612e-05,2.0534e-05,2.2386e-05,2.3146e-05,2.6942e-05,2.9406e-05,2.9799e-05,3.6493e-05,5.3515e-05,5.9876e-05,6.3426e-05,7.2479e-05,7.3313e-05,8.5064e-05,8.6453e-05,0.0001045,0.0001167,0.00014532,0.00014822,0.00015098,0.00015254,0.00015776,0.00016215,0.00016488,0.00019635,0.00020361,0.00028608,0.00032005,0.00034459,0.00035478,0.00045085,0.00045273,0.00048951,0.00050764,0.00060854,0.00061202,0.00062031,0.00070868,0.00073511,0.00074471,0.00077467,0.00081503,0.00085497,0.00087643,0.0011155,0.0011249,0.0012739,0.0015319,0.0018177,0.0022965,0.0023041,0.0025007,0.0027698,0.0031656,0.0031702,0.003319,0.004107,0.0043126,0.0043358,0.0055363,0.0058368,0.0060166,0.0066015,0.007231,0.0085316,0.0087531,0.0098953,0.012941,0.012987,0.01327,0.013867,0.014351,0.014968,0.015725,0.02453,0.027444,0.032482,0.036716,0.036936,0.037447,0.044725,0.046583,0.04674,0.055047,0.071799,0.072392,0.078077,0.079295,0.093873,0.098307,0.10855,0.1142,0.12071,0.12201,0.13016,0.13163,0.13234,0.15258,0.15904,0.16182,0.17108,0.17408,0.18828,0.19163,0.19849,0.2163,0.21648,0.22541,0.22848,0.22848,0.24918,0.24986,0.25873,0.26832,0.28995,0.31029,0.32538,0.35018,0.37395,0.40591,0.40723,0.43263,0.45761,0.47257,0.51335,0.52547,0.55026,0.56501,0.59593,0.5992,0.60595,0.62154,0.65407,0.68718,0.70451,0.72163,0.73048,0.73172,0.74758,0.7656,0.81818,0.83144,0.83859,0.85399,0.85409,0.86867,0.87044,0.87994,0.88736,0.91088,0.91409,0.93051,0.94439,0.97947,0.98421,0.98628,0.99103,0.99458,0.9957,0.99755,0.99856,0.99944,1,1,0.99818,0.99709,0.99683,0.99669,0.98989,0.98969,0.9888,0.9881,0.98619,0.98273,0.97931,0.96058,0.90294,0.88165,0.87969,0.87806,0.87272,0.86971,0.83984,0.81897,0.80326,0.79428,0.77516,0.75854,0.75541,0.7315,0.71774,0.70076,0.67314,0.63632,0.63396,0.62143,0.61273,0.60882,0.56715,0.5558,0.50469,0.49073,0.46645,0.45362,0.4495,0.42727,0.42443,0.41824,0.40487,0.37992 1,9.1555e-36,1.711e-35,1.7654e-35,2.1309e-35,2.4628e-35,2.9781e-35,4.3034e-35,1.0297e-34,1.7888e-34,1.947e-34,3.0169e-34,3.2401e-34,4.3019e-34,8.556e-34,1.061e-33,1.2319e-33,2.349e-33,2.6237e-33,2.9658e-33,4.4736e-33,4.6753e-33,4.7954e-33,6.5548e-33,7.8809e-33,7.9283e-33,1.1285e-32,1.1653e-32,1.3663e-32,1.3952e-32,1.4239e-32,4.1803e-32,1.161e-31,1.2729e-31,1.7173e-31,2.2423e-31,2.7573e-31,3.5228e-31,4.6812e-31,7.7098e-31,1.0139e-30,1.581e-30,2.7593e-30,2.9044e-30,3.239e-30,3.582e-30,6.042e-30,6.0468e-30,2.0893e-29,2.2895e-29,2.4089e-29,3.4843e-29,3.5802e-29,7.3668e-29,9.7723e-29,1.099e-28,1.4215e-28,1.6736e-28,2.2136e-28,2.414e-28,4.6903e-28,7.0544e-28,2.5229e-27,3.5711e-27,4.0103e-27,4.9343e-27,8.7053e-27,9.7769e-27,1.0837e-26,1.7552e-26,2.7541e-26,3.2525e-26,3.7263e-26,6.0935e-26,1.2349e-25,2.5876e-25,4.2477e-25,4.7118e-25,1.1839e-24,1.6253e-24,1.8837e-24,2.011e-24,2.6204e-24,7.7412e-24,8.0148e-24,9.6717e-24,1.3024e-23,1.3806e-23,2.1082e-23,6.7109e-23,6.8139e-23,9.4241e-23,1.0585e-22,3.9474e-22,5.4817e-22,5.6154e-22,7.5225e-22,1.1162e-21,1.1249e-21,1.1613e-21,1.4722e-21,1.4753e-21,1.8284e-21,1.9863e-21,6.4439e-21,1.075e-20,1.0937e-20,1.9479e-20,2.2723e-20,2.8822e-20,3.2348e-20,3.4625e-20,3.7329e-20,3.8254e-20,4.0837e-20,5.3104e-20,5.4749e-20,5.83e-20,6.138e-20,9.0416e-20,1.3979e-19,2.44e-19,3.0064e-19,4.6671e-19,7.6033e-19,9.3286e-19,1.0364e-18,3.287e-18,3.7522e-18,4.135e-18,5.0115e-18,6.3946e-18,7.8926e-18,9.3598e-18,9.6476e-18,9.8327e-18,1.218e-17,2.1318e-17,2.221e-17,2.7645e-17,3.8758e-17,4.6673e-17,4.8101e-17,1.378e-16,1.3934e-16,1.7124e-16,2.5576e-16,2.7507e-16,3.6056e-16,3.8429e-16,5.9921e-16,7.9928e-16,1.5312e-15,1.5551e-15,3.2421e-15,3.5238e-15,3.6185e-15,5.7976e-15,5.9733e-15,7.0728e-15,8.8289e-15,9.4607e-15,9.9678e-15,1.224e-14,1.2662e-14,1.2945e-14,1.5225e-14,1.6113e-14,1.6353e-14,1.8697e-14,1.9619e-14,2.5591e-14,3.9653e-14,4.2856e-14,4.375e-14,5.3145e-14,5.7581e-14,7.9697e-14,1.4027e-13,1.6692e-13,2.1954e-13,2.4272e-13,3.2038e-13,4.2159e-13,4.3112e-13,4.3865e-13,4.3954e-13,4.7642e-13,4.7968e-13,6.1697e-13,6.9221e-13,8.5875e-13,8.6702e-13,9.1887e-13,1.3314e-12,1.3458e-12,1.6039e-12,1.9567e-12,2.7846e-12,2.9163e-12,3.3267e-12,3.426e-12,3.6901e-12,4.178e-12,5.0504e-12,5.0765e-12,7.7803e-12,1.2586e-11,1.3241e-11,1.4006e-11,1.4253e-11,1.897e-11,2.2598e-11,4.0653e-11,4.1914e-11,4.4571e-11,4.9431e-11,7.2427e-11,1.0743e-10,1.646e-10,1.8697e-10,2.0169e-10,2.4432e-10,3.5878e-10,4.2427e-10,5.2672e-10,7.3258e-10,9.7159e-10,1.0221e-09,1.7497e-09,1.8768e-09,1.9254e-09,2.1797e-09,2.2897e-09,3.3833e-09,3.9947e-09,4.1906e-09,4.211e-09,4.6549e-09,5.3258e-09,5.6677e-09,5.8266e-09,9.4241e-09,9.4296e-09,1.4455e-08,2.3389e-08,3.6241e-08,5.3943e-08,6.396e-08,6.6868e-08,7.4175e-08,8.1185e-08,1.0031e-07,1.0267e-07,1.536e-07,1.6989e-07,2.0766e-07,2.6591e-07,3.0855e-07,3.1376e-07,3.5385e-07,3.8343e-07,4.6654e-07,6.2281e-07,6.3982e-07,7.2556e-07,8.836e-07,1.0358e-06,1.0434e-06,1.7905e-06,1.9533e-06,2.0365e-06,2.2655e-06,2.3939e-06,2.6104e-06,2.9942e-06,3.1639e-06,3.4158e-06,3.8616e-06,4.5212e-06,5.2494e-06,5.3291e-06,6.3848e-06,7.1851e-06,7.9685e-06,1.0063e-05,1.1184e-05,1.162e-05,1.3302e-05,1.3411e-05,1.4225e-05,1.4599e-05,2.0517e-05,2.2367e-05,2.3127e-05,2.692e-05,2.9382e-05,2.9774e-05,3.6464e-05,5.3472e-05,5.9829e-05,6.3376e-05,7.2422e-05,7.3256e-05,8.4998e-05,8.6386e-05,0.00010442,0.00011661,0.00014521,0.0001481,0.00015087,0.00015243,0.00015765,0.00016203,0.00016475,0.00019621,0.00020346,0.00028588,0.00031982,0.00034434,0.00035453,0.00045054,0.00045241,0.00048917,0.00050729,0.00060812,0.0006116,0.00061989,0.0007082,0.00073461,0.00074421,0.00077415,0.00081448,0.00085439,0.00087584,0.0011147,0.0011241,0.001273,0.0015309,0.0018165,0.0022951,0.0023027,0.0024991,0.0027681,0.0031636,0.0031683,0.003317,0.0041046,0.0043101,0.0043333,0.0055331,0.0058335,0.0060131,0.0065978,0.0072269,0.0085269,0.0087482,0.0098899,0.012934,0.01298,0.013263,0.013859,0.014343,0.01496,0.015717,0.024518,0.027431,0.032466,0.036699,0.036919,0.03743,0.044705,0.046562,0.046719,0.055023,0.071769,0.072362,0.078045,0.079263,0.093837,0.098269,0.10851,0.11416,0.12066,0.12196,0.13011,0.13159,0.13229,0.15252,0.15899,0.16176,0.17103,0.17402,0.18822,0.19157,0.19843,0.21624,0.21641,0.22534,0.22841,0.22841,0.24911,0.24978,0.25866,0.26824,0.28987,0.31021,0.32529,0.35008,0.37386,0.40581,0.40714,0.43253,0.45751,0.47247,0.51324,0.52536,0.55015,0.5649,0.59582,0.59909,0.60584,0.62143,0.65396,0.68707,0.70441,0.72152,0.73037,0.73161,0.74748,0.7655,0.81809,0.83135,0.8385,0.8539,0.854,0.86859,0.87036,0.87986,0.88728,0.91081,0.91402,0.93045,0.94433,0.97943,0.98417,0.98625,0.991,0.99456,0.99568,0.99753,0.99855,0.99943,1,1,0.99819,0.9971,0.99684,0.9967,0.98991,0.98972,0.98882,0.98812,0.98622,0.98276,0.97934,0.96063,0.90301,0.88173,0.87977,0.87814,0.8728,0.86979,0.83992,0.81906,0.80335,0.79438,0.77526,0.75864,0.75552,0.7316,0.71785,0.70087,0.67325,0.63643,0.63407,0.62154,0.61284,0.60893,0.56726,0.55591,0.50479,0.49084,0.46655,0.45373,0.4496,0.42737,0.42453,0.41834,0.40497,0.38001 1,4.2539e-36,7.9735e-36,8.2279e-36,9.9408e-36,1.1497e-35,1.3915e-35,2.0143e-35,4.8397e-35,8.4304e-35,9.1797e-35,1.4254e-34,1.5314e-34,2.0361e-34,4.063e-34,5.0436e-34,5.8603e-34,1.121e-33,1.2528e-33,1.417e-33,2.1417e-33,2.2388e-33,2.2966e-33,3.144e-33,3.7835e-33,3.8063e-33,5.4272e-33,5.6051e-33,6.5775e-33,6.7174e-33,6.8563e-33,2.0236e-32,5.6493e-32,6.1967e-32,8.3725e-32,1.0947e-31,1.3476e-31,1.7238e-31,2.2939e-31,3.7877e-31,4.9883e-31,7.7958e-31,1.3645e-30,1.4366e-30,1.603e-30,1.7737e-30,3e-30,3.0024e-30,1.0441e-29,1.1447e-29,1.2047e-29,1.746e-29,1.7942e-29,3.706e-29,4.9235e-29,5.5403e-29,7.1758e-29,8.456e-29,1.1201e-28,1.2221e-28,2.3829e-28,3.5919e-28,1.2935e-27,1.8344e-27,2.0612e-27,2.539e-27,4.4935e-27,5.0498e-27,5.6004e-27,9.0952e-27,1.4307e-26,1.6911e-26,1.939e-26,3.1794e-26,6.4686e-26,1.3611e-25,2.2407e-25,2.487e-25,6.2818e-25,8.6397e-25,1.0022e-24,1.0703e-24,1.3968e-24,4.1524e-24,4.3e-24,5.1947e-24,7.0073e-24,7.4307e-24,1.1375e-23,3.6459e-23,3.7022e-23,5.1302e-23,5.7664e-23,2.1675e-22,3.0159e-22,3.09e-22,4.1468e-22,6.1677e-22,6.2162e-22,6.4187e-22,8.1487e-22,8.1662e-22,1.0134e-21,1.1015e-21,3.5996e-21,6.024e-21,6.1296e-21,1.0957e-20,1.2794e-20,1.6253e-20,1.8255e-20,1.9548e-20,2.1084e-20,2.161e-20,2.3079e-20,3.0062e-20,3.1e-20,3.3023e-20,3.4779e-20,5.1359e-20,7.963e-20,1.3949e-19,1.7211e-19,2.6794e-19,4.3792e-19,5.3801e-19,5.9817e-19,1.9117e-18,2.1842e-18,2.4086e-18,2.9229e-18,3.7357e-18,4.6175e-18,5.4822e-18,5.6519e-18,5.7611e-18,7.147e-18,1.2557e-17,1.3086e-17,1.6313e-17,2.2924e-17,2.764e-17,2.8492e-17,8.2229e-17,8.3153e-17,1.0234e-16,1.5328e-16,1.6494e-16,2.1663e-16,2.3099e-16,3.6132e-16,4.8296e-16,9.2958e-16,9.4419e-16,1.9792e-15,2.1524e-15,2.2107e-15,3.5544e-15,3.6629e-15,4.3426e-15,5.4298e-15,5.8214e-15,6.1358e-15,7.5458e-15,7.8082e-15,7.9841e-15,9.4017e-15,9.9542e-15,1.0104e-14,1.1564e-14,1.2139e-14,1.5866e-14,2.4666e-14,2.6674e-14,2.7235e-14,3.3133e-14,3.5921e-14,4.9842e-14,8.8113e-14,1.0499e-13,1.3839e-13,1.5313e-13,2.0256e-13,2.6714e-13,2.7322e-13,2.7804e-13,2.786e-13,3.0218e-13,3.0426e-13,3.9213e-13,4.4036e-13,5.4725e-13,5.5257e-13,5.8589e-13,8.5148e-13,8.6076e-13,1.0273e-12,1.2553e-12,1.7917e-12,1.8771e-12,2.1436e-12,2.2081e-12,2.3798e-12,2.6973e-12,3.2656e-12,3.2826e-12,5.0491e-12,8.2008e-12,8.6317e-12,9.1348e-12,9.2971e-12,1.2404e-11,1.4798e-11,2.6758e-11,2.7595e-11,2.936e-11,3.2591e-11,4.7913e-11,7.1316e-11,1.0969e-10,1.2473e-10,1.3464e-10,1.6339e-10,2.4077e-10,2.8516e-10,3.5473e-10,4.9487e-10,6.5805e-10,6.9258e-10,1.1916e-09,1.2791e-09,1.3125e-09,1.4876e-09,1.5634e-09,2.3188e-09,2.7422e-09,2.878e-09,2.8922e-09,3.2002e-09,3.6662e-09,3.9039e-09,4.0144e-09,6.5239e-09,6.5277e-09,1.0049e-08,1.634e-08,2.5431e-08,3.801e-08,4.5148e-08,4.7222e-08,5.2439e-08,5.745e-08,7.1146e-08,7.2835e-08,1.0943e-07,1.2117e-07,1.4843e-07,1.9058e-07,2.215e-07,2.2529e-07,2.544e-07,2.7592e-07,3.3645e-07,4.5061e-07,4.6306e-07,5.2586e-07,6.4184e-07,7.5372e-07,7.5939e-07,1.3112e-06,1.432e-06,1.4936e-06,1.6637e-06,1.7591e-06,1.9202e-06,2.2061e-06,2.3327e-06,2.5207e-06,2.8539e-06,3.3478e-06,3.894e-06,3.9539e-06,4.7477e-06,5.3505e-06,5.9416e-06,7.5249e-06,8.3747e-06,8.7056e-06,9.9826e-06,1.0065e-05,1.0684e-05,1.0969e-05,1.5483e-05,1.6898e-05,1.748e-05,2.0386e-05,2.2277e-05,2.2578e-05,2.7725e-05,4.0867e-05,4.5796e-05,4.8549e-05,5.5581e-05,5.6229e-05,6.5377e-05,6.6459e-05,8.0544e-05,9.0088e-05,0.00011254,0.00011481,0.00011698,0.00011821,0.00012232,0.00012577,0.00012791,0.00015272,0.00015845,0.00022376,0.00025074,0.00027027,0.00027838,0.00035507,0.00035657,0.000386,0.00040052,0.00048149,0.00048429,0.00049095,0.00056207,0.00058337,0.00059111,0.00061528,0.00064786,0.00068013,0.00069748,0.00089118,0.00089884,0.00102,0.0012303,0.0014641,0.0018572,0.0018635,0.0020253,0.0022473,0.0025745,0.0025784,0.0027015,0.0033559,0.003527,0.0035463,0.0045488,0.0048004,0.0049511,0.005442,0.0059713,0.007068,0.0072551,0.0082218,0.010811,0.01085,0.011092,0.0116,0.012014,0.012541,0.01319,0.020773,0.023299,0.027682,0.031379,0.031572,0.032019,0.038405,0.04004,0.040178,0.047511,0.062394,0.062923,0.068,0.06909,0.082169,0.086161,0.095403,0.10052,0.10642,0.1076,0.11501,0.11635,0.11699,0.13547,0.14139,0.14394,0.15246,0.15521,0.1683,0.1714,0.17774,0.19426,0.19442,0.20273,0.20559,0.20559,0.22491,0.22554,0.23385,0.24284,0.26319,0.2824,0.29669,0.32026,0.34296,0.37361,0.37489,0.39937,0.42356,0.4381,0.4779,0.48979,0.51418,0.52874,0.5594,0.56265,0.56937,0.58493,0.61754,0.65097,0.66857,0.68603,0.69507,0.69634,0.71263,0.73122,0.78604,0.80003,0.80761,0.824,0.82411,0.83975,0.84166,0.85192,0.85998,0.88581,0.88937,0.90777,0.92361,0.96573,0.97189,0.97465,0.98124,0.98654,0.98833,0.99152,0.99351,0.9956,0.99818,0.99819,1,0.99987,0.99981,0.99978,0.99663,0.99651,0.99598,0.99556,0.99436,0.99206,0.98967,0.97539,0.92622,0.90712,0.90535,0.90387,0.89901,0.89627,0.86875,0.84927,0.83449,0.826,0.80782,0.79192,0.78892,0.76587,0.75255,0.73603,0.709,0.6727,0.67036,0.65793,0.64928,0.64539,0.60372,0.59231,0.54063,0.52643,0.50165,0.48851,0.48428,0.46143,0.4585,0.45213,0.43832,0.41246 1,3.4684e-36,6.5063e-36,6.7142e-36,8.1139e-36,9.3856e-36,1.1362e-35,1.6456e-35,3.9582e-35,6.8997e-35,7.5138e-35,1.1674e-34,1.2543e-34,1.6683e-34,3.332e-34,4.1373e-34,4.8082e-34,9.2053e-34,1.0289e-33,1.1639e-33,1.7602e-33,1.84e-33,1.8876e-33,2.5852e-33,3.1118e-33,3.1306e-33,4.4658e-33,4.6124e-33,5.4137e-33,5.529e-33,5.6434e-33,1.668e-32,4.663e-32,5.1154e-32,6.9143e-32,9.0436e-32,1.1136e-31,1.4249e-31,1.897e-31,3.1344e-31,4.1294e-31,6.4575e-31,1.1311e-30,1.191e-30,1.3291e-30,1.4709e-30,2.4895e-30,2.4915e-30,8.6793e-30,9.517e-30,1.0016e-29,1.4524e-29,1.4926e-29,3.0861e-29,4.1016e-29,4.6162e-29,5.9811e-29,7.0498e-29,9.3423e-29,1.0194e-28,1.9896e-28,3.0007e-28,1.0826e-27,1.536e-27,1.7263e-27,2.1271e-27,3.7675e-27,4.2347e-27,4.6971e-27,7.6337e-27,1.2016e-26,1.4207e-26,1.6292e-26,2.6734e-26,5.4449e-26,1.147e-25,1.8896e-25,2.0976e-25,5.3056e-25,7.3007e-25,8.4704e-25,9.0473e-25,1.1812e-24,3.5173e-24,3.6425e-24,4.4017e-24,5.9403e-24,6.2998e-24,9.65e-24,3.0987e-23,3.1466e-23,4.3626e-23,4.9045e-23,1.8474e-22,2.5719e-22,2.6352e-22,3.5381e-22,5.2657e-22,5.3072e-22,5.4803e-22,6.9602e-22,6.9751e-22,8.6588e-22,9.413e-22,3.0821e-21,5.1623e-21,5.2529e-21,9.3991e-21,1.0978e-20,1.3951e-20,1.5672e-20,1.6784e-20,1.8106e-20,1.8558e-20,1.9822e-20,2.5831e-20,2.6638e-20,2.838e-20,2.9891e-20,4.417e-20,6.8535e-20,1.2017e-19,1.4832e-19,2.3109e-19,3.7801e-19,4.6458e-19,5.1662e-19,1.6545e-18,1.8907e-18,2.0854e-18,2.5315e-18,3.2369e-18,4.0024e-18,4.7534e-18,4.9009e-18,4.9957e-18,6.1999e-18,1.0904e-17,1.1364e-17,1.4172e-17,1.9928e-17,2.4036e-17,2.4778e-17,7.1651e-17,7.2458e-17,8.9207e-17,1.3372e-16,1.4391e-16,1.891e-16,2.0166e-16,3.1571e-16,4.2224e-16,8.1372e-16,8.2653e-16,1.735e-15,1.8872e-15,1.9384e-15,3.1195e-15,3.2149e-15,3.8127e-15,4.7694e-15,5.1141e-15,5.3908e-15,6.6324e-15,6.8635e-15,7.0184e-15,8.2671e-15,8.754e-15,8.8856e-15,1.0173e-14,1.0679e-14,1.3966e-14,2.1731e-14,2.3504e-14,2.4e-14,2.9208e-14,3.1671e-14,4.3975e-14,7.7832e-14,9.2777e-14,1.2236e-13,1.3541e-13,1.7924e-13,2.3651e-13,2.4191e-13,2.4618e-13,2.4668e-13,2.676e-13,2.6945e-13,3.4746e-13,3.9029e-13,4.8525e-13,4.8997e-13,5.1958e-13,7.5572e-13,7.6398e-13,9.1216e-13,1.1151e-12,1.5927e-12,1.6688e-12,1.9063e-12,1.9639e-12,2.1169e-12,2.3999e-12,2.9068e-12,2.922e-12,4.4987e-12,7.3147e-12,7.7e-12,8.1497e-12,8.2949e-12,1.1074e-11,1.3217e-11,2.3931e-11,2.4681e-11,2.6264e-11,2.9161e-11,4.2908e-11,6.3926e-11,9.8421e-11,1.1195e-10,1.2087e-10,1.4675e-10,2.1644e-10,2.5645e-10,3.1918e-10,4.4565e-10,5.9301e-10,6.242e-10,1.0754e-09,1.1545e-09,1.1848e-09,1.3433e-09,1.4119e-09,2.0962e-09,2.48e-09,2.6032e-09,2.616e-09,2.8953e-09,3.3181e-09,3.5338e-09,3.6341e-09,5.9133e-09,5.9168e-09,9.1188e-09,1.4846e-08,2.3134e-08,3.4614e-08,4.1134e-08,4.303e-08,4.7798e-08,5.2378e-08,6.4903e-08,6.6448e-08,9.995e-08,1.107e-07,1.3569e-07,1.7434e-07,2.0272e-07,2.0619e-07,2.3292e-07,2.5268e-07,3.083e-07,4.1325e-07,4.247e-07,4.8249e-07,5.8925e-07,6.923e-07,6.9752e-07,1.2064e-06,1.3178e-06,1.3748e-06,1.5318e-06,1.62e-06,1.7688e-06,2.033e-06,2.15e-06,2.3239e-06,2.6321e-06,3.0892e-06,3.595e-06,3.6504e-06,4.3859e-06,4.9447e-06,5.4927e-06,6.9618e-06,7.7508e-06,8.0581e-06,9.2443e-06,9.3212e-06,9.8965e-06,1.0161e-05,1.4359e-05,1.5676e-05,1.6218e-05,1.8924e-05,2.0686e-05,2.0966e-05,2.5764e-05,3.8029e-05,4.2632e-05,4.5205e-05,5.1777e-05,5.2384e-05,6.0939e-05,6.1951e-05,7.5134e-05,8.4071e-05,0.00010511,0.00010724,0.00010928,0.00011043,0.00011428,0.00011751,0.00011953,0.0001428,0.00014819,0.00020953,0.00023491,0.00025328,0.00026092,0.00033311,0.00033452,0.00036225,0.00037594,0.00045227,0.00045491,0.00046119,0.0005283,0.0005484,0.00055571,0.00057853,0.00060929,0.00063977,0.00065616,0.00083925,0.0008465,0.0009611,0.0011603,0.0013818,0.0017547,0.0017606,0.0019142,0.002125,0.0024359,0.0024396,0.0025567,0.0031792,0.0033421,0.0033605,0.0043156,0.0045555,0.0046992,0.0051676,0.0056728,0.0067204,0.0068992,0.0078234,0.010302,0.010339,0.010571,0.011058,0.011455,0.01196,0.012582,0.019866,0.022297,0.026518,0.030083,0.030269,0.030701,0.036864,0.038444,0.038577,0.045667,0.06008,0.060593,0.065518,0.066575,0.079275,0.083154,0.092142,0.097122,0.10287,0.10402,0.11123,0.11254,0.11317,0.13119,0.13698,0.13947,0.14778,0.15048,0.16328,0.16631,0.17252,0.1887,0.18885,0.197,0.1998,0.1998,0.21876,0.21938,0.22754,0.23637,0.25637,0.27527,0.28935,0.31259,0.33499,0.36528,0.36654,0.39076,0.41473,0.42914,0.46865,0.48046,0.50472,0.51922,0.54977,0.55302,0.55972,0.57525,0.60785,0.64132,0.65897,0.67649,0.68557,0.68685,0.70322,0.72193,0.77727,0.79143,0.79911,0.81574,0.81585,0.83175,0.83369,0.84414,0.85235,0.87875,0.8824,0.9013,0.91762,0.96154,0.96806,0.971,0.97806,0.98382,0.98578,0.98933,0.99157,0.99398,0.99709,0.9971,0.99987,1,0.99999,0.99999,0.99781,0.99772,0.99728,0.99693,0.99592,0.99394,0.99182,0.97875,0.93192,0.91343,0.91171,0.91027,0.90555,0.90288,0.87604,0.85696,0.84244,0.8341,0.8162,0.80051,0.79755,0.77477,0.76157,0.7452,0.71837,0.68225,0.67992,0.66754,0.65891,0.65503,0.61341,0.602,0.55023,0.53598,0.51109,0.49788,0.49363,0.47064,0.46769,0.46127,0.44735,0.42127 1,3.3237e-36,6.2358e-36,6.4351e-36,7.777e-36,8.9963e-36,1.0892e-35,1.5775e-35,3.7955e-35,6.617e-35,7.2061e-35,1.1197e-34,1.2031e-34,1.6003e-34,3.1969e-34,3.9697e-34,4.6136e-34,8.8343e-34,9.8745e-34,1.1171e-33,1.6895e-33,1.7662e-33,1.8119e-33,2.4817e-33,2.9874e-33,3.0054e-33,4.2876e-33,4.4284e-33,5.198e-33,5.3087e-33,5.4186e-33,1.6021e-32,4.4799e-32,4.9146e-32,6.6435e-32,8.69e-32,1.0701e-31,1.3694e-31,1.8232e-31,3.0129e-31,3.9697e-31,6.2085e-31,1.0877e-30,1.1453e-30,1.2782e-30,1.4145e-30,2.3944e-30,2.3963e-30,8.3508e-30,9.157e-30,9.6377e-30,1.3976e-29,1.4363e-29,2.9704e-29,3.9481e-29,4.4436e-29,5.758e-29,6.7871e-29,8.9949e-29,9.815e-29,1.916e-28,2.8901e-28,1.0431e-27,1.4801e-27,1.6635e-27,2.0499e-27,3.6314e-27,4.0819e-27,4.5278e-27,7.3595e-27,1.1586e-26,1.3699e-26,1.571e-26,2.5784e-26,5.2525e-26,1.1067e-25,1.8235e-25,2.0243e-25,5.1218e-25,7.0484e-25,8.1781e-25,8.7353e-25,1.1405e-24,3.3974e-24,3.5185e-24,4.252e-24,5.7389e-24,6.0863e-24,9.3243e-24,2.9952e-23,3.0416e-23,4.2174e-23,4.7414e-23,1.7868e-22,2.4878e-22,2.549e-22,3.4227e-22,5.0947e-22,5.1348e-22,5.3024e-22,6.7347e-22,6.7492e-22,8.379e-22,9.109e-22,2.9838e-21,4.9985e-21,5.0863e-21,9.1028e-21,1.0632e-20,1.3513e-20,1.5181e-20,1.6259e-20,1.7539e-20,1.7978e-20,1.9202e-20,2.5025e-20,2.5807e-20,2.7495e-20,2.8961e-20,4.2801e-20,6.6421e-20,1.1649e-19,1.4379e-19,2.2406e-19,3.6658e-19,4.5056e-19,5.0105e-19,1.6053e-18,1.8346e-18,2.0235e-18,2.4566e-18,3.1414e-18,3.8847e-18,4.6139e-18,4.757e-18,4.8491e-18,6.0185e-18,1.0587e-17,1.1034e-17,1.3762e-17,1.9353e-17,2.3345e-17,2.4066e-17,6.962e-17,7.0404e-17,8.6686e-17,1.2996e-16,1.3987e-16,1.8381e-16,1.9602e-16,3.0694e-16,4.1055e-16,7.914e-16,8.0387e-16,1.6879e-15,1.836e-15,1.8859e-15,3.0356e-15,3.1285e-15,3.7105e-15,4.6419e-15,4.9775e-15,5.247e-15,6.456e-15,6.681e-15,6.8319e-15,8.048e-15,8.5222e-15,8.6504e-15,9.9039e-15,1.0397e-14,1.3599e-14,2.1164e-14,2.2891e-14,2.3374e-14,2.8449e-14,3.0849e-14,4.2839e-14,7.584e-14,9.0411e-14,1.1925e-13,1.3198e-13,1.7471e-13,2.3057e-13,2.3584e-13,2.4e-13,2.4049e-13,2.609e-13,2.627e-13,3.3879e-13,3.8057e-13,4.7321e-13,4.7782e-13,5.0671e-13,7.3712e-13,7.4518e-13,8.8978e-13,1.0878e-12,1.554e-12,1.6283e-12,1.8602e-12,1.9163e-12,2.0658e-12,2.3421e-12,2.837e-12,2.8518e-12,4.3915e-12,7.142e-12,7.5184e-12,7.9578e-12,8.0996e-12,1.0815e-11,1.2909e-11,2.3379e-11,2.4112e-11,2.5659e-11,2.8491e-11,4.1931e-11,6.2481e-11,9.6218e-11,1.0945e-10,1.1818e-10,1.4349e-10,2.1168e-10,2.5083e-10,3.1222e-10,4.36e-10,5.8026e-10,6.1079e-10,1.0526e-09,1.1301e-09,1.1598e-09,1.3149e-09,1.3821e-09,2.0525e-09,2.4285e-09,2.5491e-09,2.5617e-09,2.8354e-09,3.2496e-09,3.461e-09,3.5593e-09,5.7931e-09,5.7965e-09,8.9355e-09,1.4552e-08,2.2681e-08,3.3944e-08,4.0342e-08,4.2202e-08,4.6881e-08,5.1375e-08,6.3669e-08,6.5186e-08,9.8074e-08,1.0863e-07,1.3317e-07,1.7113e-07,1.99e-07,2.0241e-07,2.2867e-07,2.4808e-07,3.0272e-07,4.0585e-07,4.171e-07,4.7388e-07,5.7881e-07,6.8011e-07,6.8524e-07,1.1856e-06,1.2952e-06,1.3512e-06,1.5056e-06,1.5923e-06,1.7387e-06,1.9986e-06,2.1137e-06,2.2848e-06,2.588e-06,3.0377e-06,3.5354e-06,3.59e-06,4.3138e-06,4.8638e-06,5.4033e-06,6.8496e-06,7.6264e-06,7.9289e-06,9.0969e-06,9.1727e-06,9.7393e-06,9.9997e-06,1.4135e-05,1.5432e-05,1.5965e-05,1.8632e-05,2.0368e-05,2.0644e-05,2.5372e-05,3.7461e-05,4.1999e-05,4.4535e-05,5.1015e-05,5.1613e-05,6.005e-05,6.1048e-05,7.4049e-05,8.2865e-05,0.00010362,0.00010572,0.00010773,0.00010887,0.00011267,0.00011586,0.00011784,0.00014081,0.00014612,0.00020668,0.00023173,0.00024986,0.0002574,0.00032869,0.00033009,0.00035747,0.00037099,0.00044639,0.00044899,0.0004552,0.00052149,0.00054136,0.00054858,0.00057112,0.00060152,0.00063163,0.00064783,0.00082878,0.00083594,0.00094922,0.0011461,0.0013651,0.0017339,0.0017398,0.0018917,0.0021003,0.0024079,0.0024115,0.0025274,0.0031434,0.0033047,0.0033229,0.0042683,0.0045059,0.0046481,0.0051119,0.0056123,0.0066498,0.006827,0.0077426,0.010198,0.010236,0.010465,0.010948,0.011341,0.011842,0.012459,0.019682,0.022093,0.026281,0.029819,0.030003,0.030431,0.03655,0.038117,0.03825,0.04529,0.059607,0.060116,0.065009,0.06606,0.078681,0.082538,0.091473,0.096425,0.10214,0.10328,0.11046,0.11176,0.11238,0.13031,0.13607,0.13854,0.14682,0.1495,0.16225,0.16526,0.17144,0.18755,0.18771,0.19581,0.1986,0.19861,0.21749,0.2181,0.22623,0.23503,0.25496,0.2738,0.28783,0.311,0.33334,0.36355,0.36481,0.38898,0.41289,0.42728,0.46672,0.47852,0.50275,0.51724,0.54777,0.55101,0.55771,0.57323,0.60583,0.6393,0.65696,0.67449,0.68359,0.68486,0.70125,0.71999,0.77543,0.78963,0.79732,0.814,0.81411,0.83006,0.83201,0.8425,0.85074,0.87725,0.88092,0.89992,0.91635,0.96064,0.96723,0.97021,0.97737,0.98322,0.98522,0.98884,0.99113,0.99361,0.99683,0.99684,0.99981,0.99999,1,1,0.99803,0.99794,0.99752,0.99719,0.99622,0.9943,0.99224,0.97942,0.93308,0.91472,0.91301,0.91158,0.90689,0.90424,0.87754,0.85855,0.84409,0.83577,0.81793,0.80229,0.79934,0.77661,0.76345,0.74711,0.72032,0.68424,0.68192,0.66954,0.66092,0.65704,0.61544,0.60402,0.55223,0.53798,0.51306,0.49985,0.49559,0.47256,0.46961,0.46318,0.44925,0.42312 1,3.249e-36,6.0963e-36,6.2912e-36,7.6033e-36,8.7955e-36,1.0649e-35,1.5424e-35,3.7115e-35,6.4711e-35,7.0473e-35,1.0951e-34,1.1767e-34,1.5652e-34,3.1271e-34,3.8832e-34,4.5131e-34,8.6427e-34,9.6605e-34,1.0929e-33,1.653e-33,1.7281e-33,1.7728e-33,2.4282e-33,2.9231e-33,2.9408e-33,4.1956e-33,4.3334e-33,5.0866e-33,5.1949e-33,5.3025e-33,1.568e-32,4.3852e-32,4.8109e-32,6.5035e-32,8.5073e-32,1.0476e-31,1.3407e-31,1.785e-31,2.9501e-31,3.8871e-31,6.0797e-31,1.0652e-30,1.1216e-30,1.2518e-30,1.3853e-30,2.3452e-30,2.3471e-30,8.1808e-30,8.9708e-30,9.4418e-30,1.3693e-29,1.4072e-29,2.9105e-29,3.8687e-29,4.3543e-29,5.6424e-29,6.6511e-29,8.8151e-29,9.6189e-29,1.8779e-28,2.8328e-28,1.0226e-27,1.4512e-27,1.631e-27,2.0099e-27,3.5609e-27,4.0027e-27,4.44e-27,7.2174e-27,1.1363e-26,1.3436e-26,1.5409e-26,2.5291e-26,5.1527e-26,1.0858e-25,1.7892e-25,1.9863e-25,5.0264e-25,6.9175e-25,8.0265e-25,8.5734e-25,1.1194e-24,3.3352e-24,3.4541e-24,4.1743e-24,5.6343e-24,5.9755e-24,9.1552e-24,2.9415e-23,2.987e-23,4.142e-23,4.6568e-23,1.7553e-22,2.4441e-22,2.5042e-22,3.3628e-22,5.0058e-22,5.0452e-22,5.21e-22,6.6176e-22,6.6318e-22,8.2336e-22,8.9511e-22,2.9326e-21,4.9134e-21,4.9997e-21,8.9487e-21,1.0452e-20,1.3285e-20,1.4925e-20,1.5985e-20,1.7244e-20,1.7675e-20,1.888e-20,2.4606e-20,2.5376e-20,2.7036e-20,2.8477e-20,4.2089e-20,6.5321e-20,1.1457e-19,1.4143e-19,2.204e-19,3.6062e-19,4.4326e-19,4.9294e-19,1.5797e-18,1.8054e-18,1.9913e-18,2.4176e-18,3.0917e-18,3.8234e-18,4.5412e-18,4.6821e-18,4.7728e-18,5.924e-18,1.0422e-17,1.0862e-17,1.3548e-17,1.9054e-17,2.2985e-17,2.3695e-17,6.856e-17,6.9333e-17,8.5371e-17,1.28e-16,1.3776e-16,1.8105e-16,1.9308e-16,3.0236e-16,4.0445e-16,7.7976e-16,7.9205e-16,1.6634e-15,1.8094e-15,1.8585e-15,2.9918e-15,3.0834e-15,3.6571e-15,4.5754e-15,4.9062e-15,5.1719e-15,6.3639e-15,6.5858e-15,6.7345e-15,7.9336e-15,8.4012e-15,8.5276e-15,9.7636e-15,1.025e-14,1.3407e-14,2.0867e-14,2.2571e-14,2.3047e-14,2.8052e-14,3.042e-14,4.2246e-14,7.48e-14,8.9174e-14,1.1763e-13,1.3019e-13,1.7235e-13,2.2747e-13,2.3267e-13,2.3677e-13,2.3726e-13,2.5739e-13,2.5917e-13,3.3426e-13,3.7549e-13,4.6692e-13,4.7147e-13,4.9998e-13,7.2739e-13,7.3534e-13,8.7808e-13,1.0736e-12,1.5338e-12,1.6072e-12,1.836e-12,1.8915e-12,2.039e-12,2.3118e-12,2.8005e-12,2.8151e-12,4.3354e-12,7.0517e-12,7.4234e-12,7.8573e-12,7.9974e-12,1.0679e-11,1.2747e-11,2.309e-11,2.3814e-11,2.5343e-11,2.814e-11,4.1419e-11,6.1725e-11,9.5063e-11,1.0814e-10,1.1677e-10,1.4178e-10,2.0919e-10,2.4788e-10,3.0857e-10,4.3094e-10,5.7357e-10,6.0376e-10,1.0406e-09,1.1173e-09,1.1466e-09,1.3001e-09,1.3665e-09,2.0295e-09,2.4015e-09,2.5208e-09,2.5332e-09,2.804e-09,3.2137e-09,3.4228e-09,3.5201e-09,5.73e-09,5.7334e-09,8.8394e-09,1.4397e-08,2.2443e-08,3.3592e-08,3.9926e-08,4.1767e-08,4.6399e-08,5.0849e-08,6.3021e-08,6.4523e-08,9.7089e-08,1.0754e-07,1.3184e-07,1.6944e-07,1.9704e-07,2.0042e-07,2.2643e-07,2.4566e-07,2.9978e-07,4.0195e-07,4.131e-07,4.6936e-07,5.7332e-07,6.737e-07,6.7878e-07,1.1746e-06,1.2832e-06,1.3387e-06,1.4918e-06,1.5777e-06,1.7228e-06,1.9805e-06,2.0946e-06,2.2642e-06,2.5648e-06,3.0106e-06,3.5041e-06,3.5582e-06,4.2759e-06,4.8212e-06,5.3562e-06,6.7905e-06,7.5609e-06,7.8609e-06,9.0194e-06,9.0945e-06,9.6565e-06,9.9148e-06,1.4016e-05,1.5303e-05,1.5833e-05,1.8478e-05,2.02e-05,2.0474e-05,2.5165e-05,3.7161e-05,4.1665e-05,4.4183e-05,5.0614e-05,5.1207e-05,5.9581e-05,6.0572e-05,7.3477e-05,8.2229e-05,0.00010284,0.00010492,0.00010692,0.00010804,0.00011182,0.00011498,0.00011696,0.00013976,0.00014504,0.00020517,0.00023005,0.00024806,0.00025555,0.00032636,0.00032774,0.00035495,0.00036838,0.00044328,0.00044587,0.00045204,0.0005179,0.00053764,0.00054481,0.00056721,0.00059742,0.00062734,0.00064343,0.00082325,0.00083036,0.00094295,0.0011387,0.0013564,0.001723,0.0017288,0.0018799,0.0020872,0.0023931,0.0023967,0.0025119,0.0031245,0.0032849,0.003303,0.0042433,0.0044796,0.0046211,0.0050825,0.0055802,0.0066125,0.0067887,0.0076998,0.010144,0.010181,0.010409,0.01089,0.011281,0.01178,0.012393,0.019584,0.021984,0.026155,0.029678,0.029862,0.030289,0.036383,0.037945,0.038077,0.04509,0.059356,0.059863,0.064739,0.065787,0.078366,0.08221,0.091118,0.096055,0.10175,0.10289,0.11004,0.11134,0.11197,0.12985,0.13559,0.13806,0.14631,0.14899,0.1617,0.1647,0.17087,0.18694,0.1871,0.19519,0.19797,0.19797,0.21681,0.21743,0.22554,0.23432,0.25421,0.27302,0.28703,0.31016,0.33246,0.36264,0.36389,0.38803,0.41192,0.42629,0.4657,0.47749,0.50171,0.51619,0.5467,0.54994,0.55664,0.57216,0.60475,0.63823,0.65589,0.67343,0.68253,0.68381,0.7002,0.71895,0.77445,0.78866,0.79637,0.81307,0.81318,0.82916,0.83111,0.84162,0.84988,0.87646,0.88013,0.89919,0.91567,0.96015,0.96679,0.96979,0.977,0.9829,0.98492,0.98858,0.9909,0.99341,0.99669,0.9967,0.99978,0.99999,1,1,0.99814,0.99805,0.99765,0.99732,0.99637,0.99448,0.99246,0.97978,0.9337,0.91541,0.9137,0.91228,0.9076,0.90496,0.87833,0.85939,0.84496,0.83666,0.81885,0.80324,0.80029,0.77759,0.76444,0.74812,0.72135,0.6853,0.68298,0.67061,0.66199,0.65811,0.61651,0.6051,0.5533,0.53904,0.51412,0.50089,0.49663,0.47359,0.47064,0.4642,0.45026,0.42411 1,1.4851e-36,2.795e-36,2.8848e-36,3.4896e-36,4.0396e-36,4.8953e-36,7.1034e-36,1.7165e-35,3.0009e-35,3.2695e-35,5.0915e-35,5.4727e-35,7.2898e-35,1.4614e-34,1.8166e-34,2.1129e-34,4.0593e-34,4.5398e-34,5.1391e-34,7.7889e-34,8.1444e-34,8.356e-34,1.1463e-33,1.3812e-33,1.3896e-33,1.9861e-33,2.0517e-33,2.4102e-33,2.4618e-33,2.5131e-33,7.472e-33,2.1006e-32,2.3056e-32,3.1216e-32,4.0889e-32,5.0407e-32,6.459e-32,8.6123e-32,1.427e-31,1.8829e-31,2.9518e-31,5.1869e-31,5.4631e-31,6.1005e-31,6.7549e-31,1.1467e-30,1.1476e-30,4.0263e-30,4.4173e-30,4.6505e-30,6.7577e-30,6.9459e-30,1.4421e-29,1.9198e-29,2.1622e-29,2.8057e-29,3.3102e-29,4.3938e-29,4.7967e-29,9.3985e-29,1.4209e-28,5.1654e-28,7.3442e-28,8.2597e-28,1.019e-27,1.8111e-27,2.0371e-27,2.2609e-27,3.6852e-27,5.8165e-27,6.8842e-27,7.9012e-27,1.3005e-26,2.6602e-26,5.6295e-26,9.3028e-26,1.0334e-25,2.629e-25,3.6248e-25,4.2095e-25,4.498e-25,5.8822e-25,1.7638e-24,1.827e-24,2.2104e-24,2.9888e-24,3.1709e-24,4.8705e-24,1.5758e-23,1.6003e-23,2.2235e-23,2.5015e-23,9.5052e-23,1.3262e-22,1.3591e-22,1.8283e-22,2.7283e-22,2.7499e-22,2.8402e-22,3.613e-22,3.6208e-22,4.5013e-22,4.8961e-22,1.616e-21,2.7163e-21,2.7644e-21,4.9661e-21,5.8063e-21,7.3911e-21,8.3098e-21,8.9038e-21,9.6099e-21,9.8517e-21,1.0527e-20,1.3744e-20,1.4176e-20,1.511e-20,1.5921e-20,2.359e-20,3.6716e-20,6.4635e-20,7.9897e-20,1.2487e-19,2.0499e-19,2.523e-19,2.8078e-19,9.0683e-19,1.0373e-18,1.1449e-18,1.3919e-18,1.7829e-18,2.2081e-18,2.6257e-18,2.7078e-18,2.7606e-18,3.4315e-18,6.0605e-18,6.3184e-18,7.8926e-18,1.1127e-17,1.3439e-17,1.3857e-17,4.0397e-17,4.0856e-17,5.0381e-17,7.5756e-17,8.1575e-17,1.0742e-16,1.1461e-16,1.8006e-16,2.4136e-16,4.6757e-16,4.7499e-16,1.003e-15,1.0917e-15,1.1216e-15,1.8119e-15,1.8678e-15,2.2182e-15,2.7798e-15,2.9824e-15,3.1451e-15,3.876e-15,4.0122e-15,4.1035e-15,4.8402e-15,5.1276e-15,5.2054e-15,5.966e-15,6.2656e-15,8.212e-15,1.2825e-14,1.3881e-14,1.4176e-14,1.7281e-14,1.8751e-14,2.6107e-14,4.6431e-14,5.543e-14,7.3276e-14,8.1167e-14,1.0769e-13,1.4245e-13,1.4573e-13,1.4832e-13,1.4863e-13,1.6135e-13,1.6247e-13,2.0997e-13,2.3609e-13,2.941e-13,2.9699e-13,3.151e-13,4.5982e-13,4.6489e-13,5.5594e-13,6.8082e-13,9.7557e-13,1.0226e-12,1.1695e-12,1.2052e-12,1.3e-12,1.4754e-12,1.7902e-12,1.7996e-12,2.7816e-12,4.543e-12,4.7846e-12,5.0667e-12,5.1578e-12,6.9044e-12,8.2541e-12,1.5029e-11,1.5504e-11,1.6508e-11,1.8347e-11,2.7097e-11,4.0525e-11,6.2655e-11,7.136e-11,7.7102e-11,9.3785e-11,1.3886e-10,1.648e-10,2.0557e-10,2.8798e-10,3.8432e-10,4.0474e-10,7.0121e-10,7.5335e-10,7.7332e-10,8.7788e-10,9.232e-10,1.3763e-09,1.6312e-09,1.7131e-09,1.7216e-09,1.9075e-09,2.1891e-09,2.333e-09,2.3999e-09,3.9254e-09,3.9278e-09,6.0818e-09,9.9547e-09,1.5589e-08,2.343e-08,2.7898e-08,2.9198e-08,3.2472e-08,3.5621e-08,4.4248e-08,4.5314e-08,6.8483e-08,7.5941e-08,9.3303e-08,1.2024e-07,1.4006e-07,1.4249e-07,1.612e-07,1.7504e-07,2.1408e-07,2.8799e-07,2.9606e-07,3.3687e-07,4.1242e-07,4.8552e-07,4.8923e-07,8.5199e-07,9.3174e-07,9.7252e-07,1.0851e-06,1.1484e-06,1.2553e-06,1.4454e-06,1.5297e-06,1.6551e-06,1.8776e-06,2.2083e-06,2.575e-06,2.6152e-06,3.1498e-06,3.5568e-06,3.9566e-06,5.031e-06,5.6093e-06,5.8348e-06,6.7063e-06,6.7629e-06,7.1862e-06,7.381e-06,1.0481e-05,1.1456e-05,1.1858e-05,1.3867e-05,1.5177e-05,1.5386e-05,1.8962e-05,2.8148e-05,3.1608e-05,3.3545e-05,3.8499e-05,3.8957e-05,4.5422e-05,4.6188e-05,5.618e-05,6.297e-05,7.9001e-05,8.0626e-05,8.2181e-05,8.3061e-05,8.6003e-05,8.8475e-05,9.0015e-05,0.00010784,0.00011197,0.00015921,0.00017881,0.00019303,0.00019895,0.00025502,0.00025612,0.00027772,0.00028839,0.00034802,0.00035008,0.00035501,0.0004076,0.00042338,0.00042912,0.00044704,0.00047124,0.00049522,0.00050813,0.00065272,0.00065845,0.00074927,0.0009076,0.0010843,0.001383,0.0013877,0.0015112,0.0016809,0.0019318,0.0019348,0.0020295,0.0025343,0.0026667,0.0026817,0.003461,0.0036574,0.0037751,0.0041594,0.0045748,0.0054387,0.0055865,0.0063517,0.0084138,0.008445,0.0086383,0.0090457,0.0093771,0.0098004,0.010322,0.016469,0.018535,0.022137,0.025192,0.025351,0.025722,0.03103,0.032395,0.03251,0.038656,0.051238,0.051688,0.056012,0.056942,0.068147,0.071583,0.079564,0.084,0.089126,0.090152,0.096609,0.097784,0.098345,0.11455,0.11977,0.12202,0.12955,0.132,0.14363,0.14639,0.15205,0.16684,0.16699,0.17445,0.17703,0.17703,0.19448,0.19505,0.20259,0.21077,0.22934,0.24696,0.26013,0.28195,0.30308,0.33179,0.33299,0.35608,0.37902,0.39287,0.43102,0.44248,0.4661,0.48027,0.51025,0.51344,0.52005,0.53539,0.56775,0.6012,0.61895,0.63663,0.64583,0.64713,0.66376,0.68287,0.73996,0.75474,0.76278,0.78028,0.7804,0.79723,0.7993,0.81045,0.81925,0.8478,0.85178,0.87259,0.89082,0.94181,0.94978,0.95344,0.96241,0.97,0.97267,0.97764,0.98091,0.98462,0.98989,0.98991,0.99663,0.99781,0.99803,0.99814,1,1,0.99997,0.99993,0.99971,0.99903,0.99808,0.9901,0.95329,0.93747,0.93598,0.93473,0.93061,0.92827,0.90441,0.88712,0.87383,0.86613,0.84951,0.83483,0.83204,0.81052,0.79796,0.7823,0.75645,0.72134,0.71906,0.70693,0.69846,0.69464,0.65347,0.64211,0.59023,0.57585,0.55063,0.5372,0.53286,0.50937,0.50635,0.49977,0.48548,0.45858 1,1.4589e-36,2.7458e-36,2.834e-36,3.4282e-36,3.9686e-36,4.8094e-36,6.979e-36,1.6866e-35,2.9488e-35,3.2128e-35,5.0034e-35,5.3781e-35,7.164e-35,1.4363e-34,1.7855e-34,2.0767e-34,3.99e-34,4.4624e-34,5.0515e-34,7.6565e-34,8.0059e-34,8.214e-34,1.1269e-33,1.3579e-33,1.3661e-33,1.9526e-33,2.017e-33,2.3695e-33,2.4203e-33,2.4707e-33,7.3469e-33,2.0657e-32,2.2673e-32,3.0698e-32,4.0212e-32,4.9573e-32,6.3524e-32,8.4704e-32,1.4036e-31,1.8521e-31,2.9036e-31,5.1025e-31,5.3742e-31,6.0014e-31,6.6452e-31,1.1282e-30,1.1291e-30,3.9618e-30,4.3466e-30,4.576e-30,6.6498e-30,6.835e-30,1.4192e-29,1.8894e-29,2.128e-29,2.7614e-29,3.2579e-29,4.3246e-29,4.7212e-29,9.2514e-29,1.3988e-28,5.0856e-28,7.2311e-28,8.1326e-28,1.0034e-27,1.7834e-27,2.006e-27,2.2264e-27,3.6292e-27,5.7284e-27,6.78e-27,7.7818e-27,1.2809e-26,2.6204e-26,5.5459e-26,9.1652e-26,1.0181e-25,2.5904e-25,3.5718e-25,4.148e-25,4.4324e-25,5.7965e-25,1.7383e-24,1.8007e-24,2.1786e-24,2.9459e-24,3.1254e-24,4.8009e-24,1.5535e-23,1.5777e-23,2.1922e-23,2.4664e-23,9.3732e-23,1.3079e-22,1.3402e-22,1.8031e-22,2.6908e-22,2.7121e-22,2.8012e-22,3.5634e-22,3.5711e-22,4.4397e-22,4.8292e-22,1.5942e-21,2.6799e-21,2.7273e-21,4.8998e-21,5.729e-21,7.293e-21,8.1996e-21,8.7858e-21,9.4826e-21,9.7212e-21,1.0388e-20,1.3563e-20,1.3989e-20,1.4911e-20,1.5711e-20,2.3281e-20,3.6237e-20,6.3797e-20,7.8863e-20,1.2327e-19,2.0236e-19,2.4908e-19,2.772e-19,8.9542e-19,1.0243e-18,1.1306e-18,1.3745e-18,1.7607e-18,2.1806e-18,2.5931e-18,2.6742e-18,2.7263e-18,3.389e-18,5.986e-18,6.2408e-18,7.796e-18,1.0991e-17,1.3276e-17,1.3689e-17,3.9913e-17,4.0366e-17,4.9778e-17,7.4855e-17,8.0606e-17,1.0615e-16,1.1326e-16,1.7794e-16,2.3854e-16,4.6214e-16,4.6948e-16,9.9148e-16,1.0792e-15,1.1087e-15,1.7913e-15,1.8465e-15,2.193e-15,2.7484e-15,2.9487e-15,3.1096e-15,3.8324e-15,3.9671e-15,4.0574e-15,4.7859e-15,5.0702e-15,5.1471e-15,5.8993e-15,6.1956e-15,8.1207e-15,1.2683e-14,1.3727e-14,1.4019e-14,1.7091e-14,1.8545e-14,2.5822e-14,4.5929e-14,5.4832e-14,7.2489e-14,8.0296e-14,1.0654e-13,1.4094e-13,1.4418e-13,1.4675e-13,1.4705e-13,1.5964e-13,1.6075e-13,2.0776e-13,2.3361e-13,2.9102e-13,2.9387e-13,3.118e-13,4.5503e-13,4.6005e-13,5.5017e-13,6.7378e-13,9.6555e-13,1.0121e-12,1.1576e-12,1.1928e-12,1.2867e-12,1.4604e-12,1.772e-12,1.7813e-12,2.7535e-12,4.4977e-12,4.7369e-12,5.0162e-12,5.1064e-12,6.836e-12,8.1726e-12,1.4882e-11,1.5353e-11,1.6348e-11,1.8169e-11,2.6836e-11,4.0137e-11,6.2061e-11,7.0685e-11,7.6375e-11,9.2904e-11,1.3757e-10,1.6328e-10,2.0367e-10,2.8534e-10,3.8082e-10,4.0106e-10,6.9491e-10,7.466e-10,7.6639e-10,8.7004e-10,9.1496e-10,1.3642e-09,1.6168e-09,1.698e-09,1.7065e-09,1.8907e-09,2.17e-09,2.3127e-09,2.379e-09,3.8917e-09,3.894e-09,6.03e-09,9.8712e-09,1.5459e-08,2.3238e-08,2.767e-08,2.896e-08,3.2209e-08,3.5332e-08,4.3892e-08,4.4949e-08,6.7939e-08,7.5339e-08,9.2569e-08,1.193e-07,1.3897e-07,1.4138e-07,1.5995e-07,1.7369e-07,2.1244e-07,2.858e-07,2.9382e-07,3.3432e-07,4.0933e-07,4.819e-07,4.8558e-07,8.4575e-07,9.2494e-07,9.6544e-07,1.0772e-06,1.14e-06,1.2462e-06,1.435e-06,1.5187e-06,1.6433e-06,1.8643e-06,2.1927e-06,2.5569e-06,2.5969e-06,3.1279e-06,3.5322e-06,3.9293e-06,4.9966e-06,5.5712e-06,5.7951e-06,6.661e-06,6.7172e-06,7.1378e-06,7.3313e-06,1.0411e-05,1.138e-05,1.1779e-05,1.3776e-05,1.5078e-05,1.5285e-05,1.884e-05,2.7969e-05,3.1409e-05,3.3334e-05,3.8259e-05,3.8714e-05,4.5141e-05,4.5902e-05,5.5836e-05,6.2587e-05,7.8525e-05,8.0142e-05,8.1687e-05,8.2563e-05,8.5487e-05,8.7945e-05,8.9477e-05,0.00010721,0.00011131,0.00015828,0.00017779,0.00019193,0.00019781,0.00025358,0.00025468,0.00027616,0.00028677,0.0003461,0.00034815,0.00035305,0.00040537,0.00042107,0.00042678,0.00044461,0.00046868,0.00049255,0.00050539,0.00064925,0.00065496,0.00074534,0.00090289,0.0010787,0.001376,0.0013807,0.0015036,0.0016726,0.0019224,0.0019253,0.0020196,0.0025221,0.002654,0.0026689,0.0034449,0.0036404,0.0037576,0.0041403,0.004554,0.0054144,0.0055616,0.0063237,0.0083777,0.0084088,0.0086014,0.0090072,0.0093374,0.0097591,0.010278,0.016404,0.018462,0.022053,0.025097,0.025256,0.025625,0.030917,0.032277,0.032392,0.038519,0.051065,0.051513,0.055825,0.056753,0.067928,0.071355,0.079316,0.08374,0.088854,0.089878,0.09632,0.097491,0.098052,0.11422,0.11943,0.12168,0.12919,0.13163,0.14324,0.14599,0.15164,0.1664,0.16655,0.174,0.17657,0.17657,0.194,0.19456,0.20209,0.21025,0.22879,0.24639,0.25954,0.28133,0.30243,0.33111,0.33231,0.35537,0.37829,0.39212,0.43024,0.4417,0.4653,0.47946,0.50942,0.51262,0.51922,0.53456,0.56691,0.60036,0.6181,0.63579,0.64499,0.64629,0.66293,0.68204,0.73917,0.75395,0.762,0.77951,0.77963,0.79649,0.79856,0.80972,0.81853,0.84712,0.85111,0.87195,0.89022,0.94135,0.94936,0.95303,0.96204,0.96966,0.97235,0.97735,0.98064,0.98438,0.98969,0.98972,0.99651,0.99772,0.99794,0.99805,1,1,0.99998,0.99994,0.99974,0.99909,0.99817,0.9903,0.95369,0.93794,0.93645,0.9352,0.9311,0.92877,0.90497,0.88773,0.87446,0.86678,0.85018,0.83552,0.83274,0.81124,0.7987,0.78306,0.75724,0.72215,0.71987,0.70775,0.69928,0.69546,0.65431,0.64295,0.59107,0.57669,0.55146,0.53803,0.53369,0.51019,0.50717,0.50059,0.48629,0.45938 1,1.3479e-36,2.5377e-36,2.6192e-36,3.1687e-36,3.6685e-36,4.446e-36,6.4529e-36,1.5602e-35,2.7285e-35,2.9728e-35,4.6307e-35,4.9776e-35,6.6315e-35,1.33e-34,1.6535e-34,1.9233e-34,3.6965e-34,4.1344e-34,4.6806e-34,7.0957e-34,7.4197e-34,7.6127e-34,1.0446e-33,1.2588e-33,1.2664e-33,1.8104e-33,1.8702e-33,2.1972e-33,2.2443e-33,2.2911e-33,6.8165e-33,1.9176e-32,2.1048e-32,2.8503e-32,3.7342e-32,4.604e-32,5.9003e-32,7.8688e-32,1.3042e-31,1.7212e-31,2.6991e-31,4.7445e-31,4.9973e-31,5.5808e-31,6.1798e-31,1.0494e-30,1.0503e-30,3.6878e-30,4.0461e-30,4.2599e-30,6.1915e-30,6.3641e-30,1.322e-29,1.7602e-29,1.9826e-29,2.5731e-29,3.036e-29,4.0307e-29,4.4005e-29,8.6261e-29,1.3045e-28,4.7463e-28,6.7499e-28,7.5919e-28,9.3676e-28,1.6655e-27,1.8735e-27,2.0796e-27,3.3907e-27,5.3534e-27,6.3367e-27,7.2736e-27,1.1976e-26,2.4509e-26,5.1894e-26,8.5786e-26,9.5298e-26,2.4261e-25,3.3458e-25,3.8859e-25,4.1525e-25,5.4313e-25,1.6299e-24,1.6883e-24,2.0429e-24,2.763e-24,2.9314e-24,4.504e-24,1.4585e-23,1.4812e-23,2.0585e-23,2.3161e-23,8.8094e-23,1.2294e-22,1.2599e-22,1.6953e-22,2.5306e-22,2.5506e-22,2.6345e-22,3.3518e-22,3.3591e-22,4.1767e-22,4.5433e-22,1.501e-21,2.5239e-21,2.5686e-21,4.6165e-21,5.3982e-21,6.873e-21,7.728e-21,8.2808e-21,8.938e-21,9.1631e-21,9.792e-21,1.2787e-20,1.3189e-20,1.4058e-20,1.4813e-20,2.1956e-20,3.4185e-20,6.0207e-20,7.4436e-20,1.1638e-19,1.9112e-19,2.3528e-19,2.6186e-19,8.4652e-19,9.6846e-19,1.069e-18,1.2998e-18,1.6653e-18,2.0628e-18,2.4533e-18,2.53e-18,2.5794e-18,3.2068e-18,5.6665e-18,5.9078e-18,7.3812e-18,1.0409e-17,1.2574e-17,1.2966e-17,3.7832e-17,3.8262e-17,4.7191e-17,7.0985e-17,7.6443e-17,1.0069e-16,1.0743e-16,1.6885e-16,2.264e-16,4.3883e-16,4.458e-16,9.4199e-16,1.0254e-15,1.0535e-15,1.7026e-15,1.7552e-15,2.0848e-15,2.6132e-15,2.8038e-15,2.9569e-15,3.6448e-15,3.773e-15,3.859e-15,4.5524e-15,4.823e-15,4.8962e-15,5.6123e-15,5.8945e-15,7.7275e-15,1.2074e-14,1.3068e-14,1.3346e-14,1.6273e-14,1.7658e-14,2.4594e-14,4.3764e-14,5.2255e-14,6.9097e-14,7.6545e-14,1.0159e-13,1.3441e-13,1.3751e-13,1.3996e-13,1.4025e-13,1.5226e-13,1.5333e-13,1.982e-13,2.2289e-13,2.7771e-13,2.8044e-13,2.9756e-13,4.3438e-13,4.3918e-13,5.2528e-13,6.4341e-13,9.223e-13,9.6683e-13,1.1059e-12,1.1396e-12,1.2293e-12,1.3955e-12,1.6935e-12,1.7024e-12,2.6325e-12,4.3018e-12,4.5308e-12,4.7982e-12,4.8846e-12,6.5406e-12,7.8207e-12,1.4249e-11,1.47e-11,1.5653e-11,1.7399e-11,2.5707e-11,3.8463e-11,5.9495e-11,6.777e-11,7.323e-11,8.9094e-11,1.3197e-10,1.5666e-10,1.9546e-10,2.7392e-10,3.6568e-10,3.8513e-10,6.6766e-10,7.1737e-10,7.3641e-10,8.361e-10,8.7931e-10,1.3115e-09,1.5547e-09,1.6328e-09,1.641e-09,1.8183e-09,2.0872e-09,2.2245e-09,2.2884e-09,3.7453e-09,3.7475e-09,5.8058e-09,9.5087e-09,1.4899e-08,2.2404e-08,2.6683e-08,2.7928e-08,3.1064e-08,3.408e-08,4.2346e-08,4.3367e-08,6.5576e-08,7.2727e-08,8.9379e-08,1.1522e-07,1.3424e-07,1.3657e-07,1.5453e-07,1.6782e-07,2.0531e-07,2.7629e-07,2.8406e-07,3.2326e-07,3.9588e-07,4.6615e-07,4.6971e-07,8.1864e-07,8.9539e-07,9.3463e-07,1.043e-06,1.1039e-06,1.2068e-06,1.3899e-06,1.4711e-06,1.5918e-06,1.8062e-06,2.1248e-06,2.4782e-06,2.517e-06,3.0323e-06,3.4248e-06,3.8104e-06,4.8468e-06,5.4048e-06,5.6224e-06,6.4636e-06,6.5182e-06,6.9269e-06,7.1149e-06,1.0108e-05,1.1051e-05,1.1439e-05,1.338e-05,1.4646e-05,1.4848e-05,1.8306e-05,2.7191e-05,3.054e-05,3.2414e-05,3.721e-05,3.7653e-05,4.3914e-05,4.4655e-05,5.4333e-05,6.0913e-05,7.6449e-05,7.8025e-05,7.9532e-05,8.0386e-05,8.3237e-05,8.5634e-05,8.7128e-05,0.00010442,0.00010842,0.00015426,0.00017329,0.0001871,0.00019284,0.0002473,0.00024837,0.00026936,0.00027972,0.00033769,0.00033969,0.00034448,0.00039561,0.00041096,0.00041654,0.00043398,0.00045751,0.00048084,0.0004934,0.0006341,0.00063968,0.00072811,0.0008823,0.0010544,0.0013456,0.0013502,0.0014706,0.0016361,0.0018809,0.0018838,0.0019762,0.0024689,0.0025983,0.0026129,0.0033741,0.003566,0.003681,0.0040567,0.0044628,0.0053076,0.0054522,0.0062009,0.0082196,0.0082501,0.0084394,0.0088384,0.0091631,0.0095778,0.010088,0.016116,0.018144,0.02168,0.024681,0.024837,0.025201,0.030418,0.03176,0.031873,0.037918,0.050303,0.050746,0.055004,0.055921,0.066963,0.070351,0.078223,0.082598,0.087656,0.088669,0.095043,0.096203,0.096757,0.11276,0.11792,0.12015,0.12759,0.13,0.14151,0.14423,0.14983,0.16447,0.16461,0.17201,0.17455,0.17456,0.19184,0.19241,0.19988,0.20797,0.22638,0.24386,0.25692,0.27858,0.29956,0.32809,0.32928,0.35223,0.37505,0.38882,0.42681,0.43822,0.46176,0.47588,0.50578,0.50898,0.51557,0.53088,0.56319,0.59663,0.61437,0.63206,0.64127,0.64257,0.65923,0.67836,0.73562,0.75046,0.75854,0.77612,0.77624,0.79317,0.79525,0.80647,0.81533,0.84411,0.84813,0.86913,0.88757,0.93932,0.94746,0.95119,0.96037,0.96816,0.97091,0.97604,0.97943,0.98329,0.9888,0.98882,0.99598,0.99728,0.99752,0.99765,0.99997,0.99998,1,0.99999,0.99986,0.99933,0.99852,0.99113,0.95549,0.93999,0.93852,0.9373,0.93325,0.93095,0.90745,0.89038,0.87723,0.86962,0.85315,0.8386,0.83584,0.81447,0.80199,0.78643,0.76071,0.72573,0.72346,0.71137,0.70292,0.69911,0.65802,0.64667,0.5948,0.58042,0.55517,0.54172,0.53738,0.51384,0.51082,0.50422,0.48989,0.46291 1,1.2699e-36,2.3914e-36,2.4683e-36,2.9863e-36,3.4574e-36,4.1906e-36,6.083e-36,1.4712e-35,2.5734e-35,2.8039e-35,4.3683e-35,4.6958e-35,6.2566e-35,1.2551e-34,1.5606e-34,1.8153e-34,3.4898e-34,3.9034e-34,4.4192e-34,6.7005e-34,7.0066e-34,7.1889e-34,9.8654e-34,1.1889e-33,1.1962e-33,1.7102e-33,1.7667e-33,2.0758e-33,2.1202e-33,2.1644e-33,6.4424e-33,1.813e-32,1.9901e-32,2.6953e-32,3.5315e-32,4.3545e-32,5.5811e-32,7.4439e-32,1.234e-31,1.6288e-31,2.5546e-31,4.4914e-31,4.7309e-31,5.2835e-31,5.8508e-31,9.9378e-31,9.9458e-31,3.4939e-30,3.8336e-30,4.0362e-30,5.8673e-30,6.0309e-30,1.2531e-29,1.6687e-29,1.8796e-29,2.4397e-29,2.8789e-29,3.8225e-29,4.1734e-29,8.1831e-29,1.2377e-28,4.5057e-28,6.4087e-28,7.2084e-28,8.8952e-28,1.5819e-27,1.7796e-27,1.9754e-27,3.2214e-27,5.0871e-27,6.022e-27,6.9127e-27,1.1384e-26,2.3305e-26,4.9361e-26,8.1616e-26,9.067e-26,2.3092e-25,3.185e-25,3.6994e-25,3.9533e-25,5.1715e-25,1.5526e-24,1.6084e-24,1.9463e-24,2.6327e-24,2.7932e-24,4.2925e-24,1.3907e-23,1.4124e-23,1.9632e-23,2.209e-23,8.4071e-23,1.1735e-22,1.2026e-22,1.6184e-22,2.4162e-22,2.4353e-22,2.5154e-22,3.2007e-22,3.2077e-22,3.9888e-22,4.3391e-22,1.4343e-21,2.4124e-21,2.4551e-21,4.4138e-21,5.1617e-21,6.5725e-21,7.3906e-21,7.9196e-21,8.5484e-21,8.7638e-21,9.3656e-21,1.2231e-20,1.2617e-20,1.3449e-20,1.4171e-20,2.1008e-20,3.2717e-20,5.7636e-20,7.1265e-20,1.1145e-19,1.8307e-19,2.2538e-19,2.5086e-19,8.1145e-19,9.284e-19,1.0248e-18,1.2462e-18,1.5969e-18,1.9782e-18,2.3529e-18,2.4266e-18,2.4739e-18,3.0761e-18,5.4371e-18,5.6687e-18,7.0832e-18,9.9902e-18,1.207e-17,1.2446e-17,3.6337e-17,3.675e-17,4.5331e-17,6.8201e-17,7.3448e-17,9.6756e-17,1.0324e-16,1.6231e-16,2.1766e-16,4.2204e-16,4.2875e-16,9.0633e-16,9.8661e-16,1.0137e-15,1.6387e-15,1.6893e-15,2.0068e-15,2.5157e-15,2.6993e-15,2.8468e-15,3.5095e-15,3.633e-15,3.7158e-15,4.384e-15,4.6447e-15,4.7153e-15,5.4054e-15,5.6772e-15,7.4439e-15,1.1633e-14,1.2592e-14,1.2861e-14,1.5682e-14,1.7018e-14,2.3707e-14,4.22e-14,5.0393e-14,6.6647e-14,7.3835e-14,9.8009e-14,1.297e-13,1.3269e-13,1.3506e-13,1.3533e-13,1.4693e-13,1.4796e-13,1.9129e-13,2.1513e-13,2.6808e-13,2.7072e-13,2.8726e-13,4.1944e-13,4.2408e-13,5.0727e-13,6.2143e-13,8.91e-13,9.3404e-13,1.0685e-12,1.1011e-12,1.1878e-12,1.3484e-12,1.6366e-12,1.6453e-12,2.5448e-12,4.1598e-12,4.3814e-12,4.6402e-12,4.7238e-12,6.3265e-12,7.5655e-12,1.3789e-11,1.4226e-11,1.5149e-11,1.684e-11,2.4887e-11,3.7247e-11,5.7631e-11,6.5653e-11,7.0946e-11,8.6326e-11,1.2791e-10,1.5185e-10,1.8949e-10,2.6562e-10,3.5466e-10,3.7355e-10,6.4783e-10,6.961e-10,7.1458e-10,8.114e-10,8.5336e-10,1.2732e-09,1.5094e-09,1.5853e-09,1.5933e-09,1.7656e-09,2.0269e-09,2.1603e-09,2.2225e-09,3.6386e-09,3.6408e-09,5.6423e-09,9.2444e-09,1.4489e-08,2.1796e-08,2.5961e-08,2.7174e-08,3.0228e-08,3.3165e-08,4.1216e-08,4.2211e-08,6.385e-08,7.0818e-08,8.7048e-08,1.1224e-07,1.3078e-07,1.3306e-07,1.5057e-07,1.6353e-07,2.0009e-07,2.6934e-07,2.7691e-07,3.1517e-07,3.8603e-07,4.5462e-07,4.5809e-07,7.9878e-07,8.7373e-07,9.1206e-07,1.0179e-06,1.0774e-06,1.1779e-06,1.3568e-06,1.4361e-06,1.5541e-06,1.7636e-06,2.075e-06,2.4205e-06,2.4584e-06,2.9622e-06,3.346e-06,3.7231e-06,4.7368e-06,5.2827e-06,5.4956e-06,6.3186e-06,6.3721e-06,6.772e-06,6.956e-06,9.886e-06,1.0808e-05,1.1188e-05,1.3089e-05,1.4329e-05,1.4527e-05,1.7914e-05,2.6619e-05,2.99e-05,3.1738e-05,3.6439e-05,3.6873e-05,4.301e-05,4.3738e-05,5.3228e-05,5.968e-05,7.492e-05,7.6467e-05,7.7945e-05,7.8783e-05,8.158e-05,8.3932e-05,8.5397e-05,0.00010237,0.0001063,0.00015129,0.00016998,0.00018353,0.00018918,0.00024267,0.00024372,0.00026434,0.00027452,0.00033148,0.00033345,0.00033815,0.00038841,0.0004035,0.00040899,0.00042613,0.00044926,0.0004722,0.00048455,0.00062291,0.0006284,0.00071538,0.00086708,0.0010365,0.0013231,0.0013276,0.0014461,0.0016092,0.0018503,0.0018531,0.0019441,0.0024295,0.002557,0.0025714,0.0033217,0.0035109,0.0036243,0.0039947,0.0043951,0.0052285,0.0053711,0.0061098,0.0081022,0.0081324,0.0083193,0.0087132,0.0090337,0.0094432,0.0099475,0.015903,0.017907,0.021403,0.024371,0.024526,0.024886,0.030047,0.031375,0.031487,0.03747,0.049735,0.050174,0.054393,0.055301,0.066244,0.069602,0.077407,0.081746,0.086763,0.087768,0.094091,0.095241,0.095791,0.11168,0.1168,0.119,0.12639,0.12879,0.14021,0.14292,0.14848,0.16303,0.16317,0.17051,0.17304,0.17305,0.19023,0.19079,0.19822,0.20627,0.22458,0.24196,0.25496,0.27652,0.29741,0.32582,0.32701,0.34987,0.37262,0.38635,0.42423,0.43562,0.4591,0.4732,0.50305,0.50623,0.51282,0.52811,0.56039,0.59381,0.61156,0.62925,0.63847,0.63977,0.65643,0.67559,0.73295,0.74782,0.75592,0.77355,0.77367,0.79066,0.79275,0.80401,0.81291,0.84182,0.84586,0.86699,0.88555,0.93777,0.94601,0.94979,0.9591,0.96701,0.96981,0.97504,0.9785,0.98244,0.9881,0.98812,0.99556,0.99693,0.99719,0.99732,0.99993,0.99994,0.99999,1,0.99993,0.99949,0.99876,0.99173,0.95681,0.94152,0.94007,0.93885,0.93485,0.93258,0.90929,0.89236,0.87931,0.87174,0.85538,0.8409,0.83815,0.81688,0.80446,0.78895,0.76331,0.72842,0.72615,0.71409,0.70565,0.70185,0.66081,0.64947,0.59761,0.58323,0.55796,0.5445,0.54015,0.51659,0.51356,0.50695,0.4926,0.46558 1,1.0881e-36,2.0503e-36,2.1163e-36,2.5609e-36,2.9653e-36,3.5948e-36,5.2199e-36,1.2635e-35,2.2113e-35,2.4096e-35,3.7556e-35,4.0373e-35,5.3808e-35,1.0801e-34,1.3433e-34,1.5628e-34,3.0063e-34,3.3629e-34,3.8078e-34,5.7758e-34,6.0399e-34,6.1972e-34,8.5071e-34,1.0254e-33,1.0317e-33,1.4755e-33,1.5243e-33,1.7913e-33,1.8297e-33,1.8678e-33,5.5656e-33,1.5679e-32,1.7212e-32,2.3318e-32,3.0561e-32,3.769e-32,4.8319e-32,6.4465e-32,1.0692e-31,1.4116e-31,2.2151e-31,3.8967e-31,4.1046e-31,4.5846e-31,5.0774e-31,8.6288e-31,8.6357e-31,3.0376e-30,3.3333e-30,3.5096e-30,5.1038e-30,5.2462e-30,1.0909e-29,1.4531e-29,1.637e-29,2.1254e-29,2.5084e-29,3.3315e-29,3.6377e-29,7.1378e-29,1.0801e-28,3.9373e-28,5.6023e-28,6.3023e-28,7.7787e-28,1.3842e-27,1.5574e-27,1.7289e-27,2.821e-27,4.457e-27,5.2771e-27,6.0586e-27,9.9828e-27,2.0453e-26,4.3356e-26,7.1727e-26,7.9693e-26,2.0318e-25,2.8034e-25,3.2567e-25,3.4805e-25,4.5543e-25,1.3691e-24,1.4183e-24,1.7167e-24,2.3228e-24,2.4646e-24,3.7895e-24,1.2294e-23,1.2486e-23,1.7362e-23,1.9538e-23,7.4477e-23,1.04e-22,1.0658e-22,1.4348e-22,2.1432e-22,2.1602e-22,2.2313e-22,2.8401e-22,2.8462e-22,3.5403e-22,3.8516e-22,1.275e-21,2.1459e-21,2.1839e-21,3.9291e-21,4.5956e-21,5.8535e-21,6.5831e-21,7.0549e-21,7.6157e-21,7.8079e-21,8.3447e-21,1.0902e-20,1.1246e-20,1.1988e-20,1.2633e-20,1.8738e-20,2.9196e-20,5.1472e-20,6.366e-20,9.9613e-20,1.6373e-19,2.0163e-19,2.2445e-19,7.2715e-19,8.321e-19,9.1866e-19,1.1174e-18,1.4323e-18,1.7748e-18,2.1115e-18,2.1776e-18,2.2202e-18,2.7614e-18,4.8846e-18,5.093e-18,6.3657e-18,8.9824e-18,1.0855e-17,1.1194e-17,3.2729e-17,3.3101e-17,4.0842e-17,6.1484e-17,6.6221e-17,8.7268e-17,9.3128e-17,1.465e-16,1.9654e-16,3.8145e-16,3.8752e-16,8.2006e-16,8.9281e-16,9.1732e-16,1.484e-15,1.5299e-15,1.8178e-15,2.2796e-15,2.4463e-15,2.5802e-15,3.1817e-15,3.2939e-15,3.3691e-15,3.9758e-15,4.2126e-15,4.2767e-15,4.9036e-15,5.1506e-15,6.7562e-15,1.0566e-14,1.1438e-14,1.1682e-14,1.4249e-14,1.5465e-14,2.1554e-14,3.8402e-14,4.587e-14,6.069e-14,6.7247e-14,8.9302e-14,1.1823e-13,1.2096e-13,1.2312e-13,1.2337e-13,1.3397e-13,1.349e-13,1.7448e-13,1.9626e-13,2.4466e-13,2.4706e-13,2.6218e-13,3.8306e-13,3.873e-13,4.6341e-13,5.6788e-13,8.1469e-13,8.5411e-13,9.7725e-13,1.0071e-12,1.0866e-12,1.2338e-12,1.4979e-12,1.5058e-12,2.3309e-12,3.8131e-12,4.0166e-12,4.2543e-12,4.331e-12,5.8033e-12,6.9419e-12,1.2665e-11,1.3068e-11,1.3917e-11,1.5473e-11,2.2882e-11,3.427e-11,5.3065e-11,6.0465e-11,6.5349e-11,7.9544e-11,1.1794e-10,1.4006e-10,1.7484e-10,2.4524e-10,3.2763e-10,3.451e-10,5.991e-10,6.4383e-10,6.6096e-10,7.5068e-10,7.8958e-10,1.1789e-09,1.3981e-09,1.4685e-09,1.4759e-09,1.6359e-09,1.8784e-09,2.0024e-09,2.06e-09,3.3759e-09,3.3779e-09,5.2393e-09,8.5925e-09,1.348e-08,2.0294e-08,2.4181e-08,2.5313e-08,2.8163e-08,3.0906e-08,3.8426e-08,3.9355e-08,5.958e-08,6.6098e-08,8.1281e-08,1.0486e-07,1.2222e-07,1.2435e-07,1.4075e-07,1.529e-07,1.8716e-07,2.521e-07,2.5921e-07,2.951e-07,3.6161e-07,4.2602e-07,4.2928e-07,7.4947e-07,8.1997e-07,8.5602e-07,9.5558e-07,1.0116e-06,1.1062e-06,1.2746e-06,1.3493e-06,1.4604e-06,1.6578e-06,1.9512e-06,2.2769e-06,2.3127e-06,2.7879e-06,3.1499e-06,3.5058e-06,4.463e-06,4.9787e-06,5.1798e-06,5.9576e-06,6.0081e-06,6.3861e-06,6.5601e-06,9.3315e-06,1.0204e-05,1.0564e-05,1.2364e-05,1.3538e-05,1.3725e-05,1.6934e-05,2.5189e-05,2.8303e-05,3.0047e-05,3.451e-05,3.4923e-05,4.0752e-05,4.1443e-05,5.0462e-05,5.6597e-05,7.1094e-05,7.2566e-05,7.3973e-05,7.477e-05,7.7432e-05,7.9671e-05,8.1065e-05,9.7222e-05,0.00010097,0.00014384,0.00016167,0.0001746,0.00017999,0.00023105,0.00023205,0.00025174,0.00026147,0.0003159,0.00031778,0.00032228,0.00037033,0.00038476,0.00039001,0.0004064,0.00042854,0.00045049,0.0004623,0.00059478,0.00060004,0.00068337,0.00082878,0.00099128,0.0012664,0.0012707,0.0013846,0.0015412,0.0017729,0.0017757,0.0018632,0.0023302,0.0024529,0.0024668,0.0031894,0.0033717,0.003481,0.0038381,0.0042243,0.0050285,0.0051662,0.0058796,0.0078052,0.0078344,0.0080152,0.0083962,0.0087063,0.0091025,0.0095906,0.015362,0.017306,0.020701,0.023584,0.023735,0.024085,0.029105,0.030397,0.030506,0.036332,0.04829,0.048718,0.052835,0.053722,0.064412,0.067694,0.075327,0.079573,0.084483,0.085467,0.091659,0.092786,0.093325,0.10889,0.11392,0.11608,0.12333,0.12569,0.1369,0.13956,0.14503,0.15933,0.15947,0.16669,0.16918,0.16919,0.1861,0.18665,0.19397,0.2019,0.21995,0.2371,0.24993,0.27122,0.29188,0.31999,0.32116,0.34381,0.36635,0.37997,0.41758,0.42889,0.45224,0.46626,0.49598,0.49915,0.50571,0.52095,0.55316,0.58654,0.60427,0.62198,0.6312,0.6325,0.64919,0.66839,0.72599,0.74095,0.7491,0.76687,0.76699,0.78413,0.78623,0.7976,0.80659,0.83585,0.83995,0.86138,0.88026,0.93368,0.94216,0.94607,0.9557,0.96394,0.96686,0.97234,0.97598,0.98015,0.98619,0.98622,0.99436,0.99592,0.99622,0.99637,0.99971,0.99974,0.99986,0.99993,1,0.9998,0.99929,0.9932,0.96016,0.94538,0.94397,0.9428,0.93891,0.9367,0.914,0.89743,0.88462,0.87718,0.86108,0.8468,0.84409,0.82309,0.8108,0.79544,0.77003,0.73536,0.73311,0.72111,0.71271,0.70893,0.66802,0.65671,0.6049,0.5905,0.56521,0.55172,0.54736,0.52373,0.52069,0.51406,0.49966,0.47251 1,8.4213e-37,1.5884e-36,1.6396e-36,1.9846e-36,2.2986e-36,2.7873e-36,4.0498e-36,9.8162e-36,1.7195e-35,1.8739e-35,2.9227e-35,3.1424e-35,4.19e-35,8.4201e-35,1.0475e-34,1.219e-34,2.3474e-34,2.6263e-34,2.9743e-34,4.5146e-34,4.7213e-34,4.8445e-34,6.6536e-34,8.0224e-34,8.0713e-34,1.1551e-33,1.1933e-33,1.4027e-33,1.4328e-33,1.4627e-33,4.3663e-33,1.2321e-32,1.3528e-32,1.8336e-32,2.4042e-32,2.9661e-32,3.8042e-32,5.0778e-32,8.4292e-32,1.1134e-31,1.7483e-31,3.0786e-31,3.2431e-31,3.6231e-31,4.0132e-31,6.8263e-31,6.8318e-31,2.4083e-30,2.643e-30,2.7831e-30,4.0499e-30,4.1631e-30,8.6679e-30,1.1552e-29,1.3016e-29,1.6907e-29,1.9959e-29,2.6522e-29,2.8964e-29,5.6898e-29,8.6161e-29,3.148e-28,4.4821e-28,5.0431e-28,6.2269e-28,1.1092e-27,1.2482e-27,1.386e-27,2.2635e-27,3.5791e-27,4.2389e-27,4.8678e-27,8.028e-27,1.647e-26,3.496e-26,5.7891e-26,6.4333e-26,1.643e-25,2.2684e-25,2.6359e-25,2.8174e-25,3.6885e-25,1.1111e-24,1.1511e-24,1.3938e-24,1.887e-24,2.0025e-24,3.0814e-24,1.002e-23,1.0176e-23,1.4159e-23,1.5938e-23,6.0913e-23,8.5113e-23,8.723e-23,1.175e-22,1.7565e-22,1.7705e-22,1.8289e-22,2.329e-22,2.334e-22,2.9044e-22,3.1604e-22,1.0487e-21,1.7669e-21,1.7983e-21,3.2392e-21,3.7899e-21,4.8297e-21,5.433e-21,5.8232e-21,6.2871e-21,6.4461e-21,6.8902e-21,9.0066e-21,9.2913e-21,9.906e-21,1.044e-20,1.5498e-20,2.417e-20,4.2662e-20,5.2788e-20,8.2679e-20,1.3604e-19,1.6761e-19,1.8662e-19,6.0613e-19,6.9381e-19,7.6615e-19,9.3228e-19,1.1956e-18,1.4823e-18,1.7642e-18,1.8196e-18,1.8552e-18,2.3085e-18,4.0887e-18,4.2636e-18,5.3317e-18,7.5291e-18,9.1029e-18,9.3874e-18,2.7514e-17,2.7828e-17,3.4352e-17,5.1762e-17,5.5759e-17,7.3529e-17,7.8478e-17,1.2358e-16,1.6591e-16,3.225e-16,3.2765e-16,6.946e-16,7.5637e-16,7.7719e-16,1.2587e-15,1.2978e-15,1.5427e-15,1.9356e-15,2.0775e-15,2.1915e-15,2.7038e-15,2.7993e-15,2.8634e-15,3.3804e-15,3.5823e-15,3.6369e-15,4.1714e-15,4.3821e-15,5.7519e-15,9.005e-15,9.7504e-15,9.9588e-15,1.2153e-14,1.3193e-14,1.8403e-14,3.2836e-14,3.9239e-14,5.1954e-14,5.7582e-14,7.6523e-14,1.0138e-13,1.0373e-13,1.0559e-13,1.0581e-13,1.1491e-13,1.1572e-13,1.4977e-13,1.6852e-13,2.1019e-13,2.1227e-13,2.2529e-13,3.2949e-13,3.3314e-13,3.988e-13,4.8897e-13,7.0215e-13,7.3622e-13,8.4266e-13,8.6849e-13,9.3722e-13,1.0645e-12,1.2931e-12,1.3e-12,2.0146e-12,3.3002e-12,3.4767e-12,3.683e-12,3.7497e-12,5.0284e-12,6.018e-12,1.0998e-11,1.1348e-11,1.2088e-11,1.3443e-11,1.9903e-11,2.9842e-11,4.6268e-11,5.274e-11,5.7013e-11,6.9437e-11,1.0307e-10,1.2247e-10,1.5298e-10,2.1479e-10,2.872e-10,3.0257e-10,5.2614e-10,5.6554e-10,5.8063e-10,6.5971e-10,6.94e-10,1.0375e-09,1.231e-09,1.2933e-09,1.2998e-09,1.4411e-09,1.6555e-09,1.7651e-09,1.8161e-09,2.9808e-09,2.9826e-09,4.6326e-09,7.6098e-09,1.1956e-08,1.8024e-08,2.1489e-08,2.2498e-08,2.5041e-08,2.7488e-08,3.4201e-08,3.5031e-08,5.311e-08,5.894e-08,7.2531e-08,9.3654e-08,1.0922e-07,1.1113e-07,1.2585e-07,1.3674e-07,1.6751e-07,2.2587e-07,2.3226e-07,2.6454e-07,3.2441e-07,3.8242e-07,3.8536e-07,6.7418e-07,7.3784e-07,7.7041e-07,8.6037e-07,9.1098e-07,9.9654e-07,1.1489e-06,1.2164e-06,1.317e-06,1.4957e-06,1.7616e-06,2.0569e-06,2.0893e-06,2.5205e-06,2.8492e-06,3.1724e-06,4.0425e-06,4.5116e-06,4.6945e-06,5.4025e-06,5.4485e-06,5.7928e-06,5.9512e-06,8.4777e-06,9.2741e-06,9.6022e-06,1.1246e-05,1.2318e-05,1.249e-05,1.5423e-05,2.2981e-05,2.5835e-05,2.7434e-05,3.1528e-05,3.1906e-05,3.7258e-05,3.7892e-05,4.6179e-05,5.1819e-05,6.516e-05,6.6515e-05,6.781e-05,6.8544e-05,7.0997e-05,7.3058e-05,7.4343e-05,8.9235e-05,9.2687e-05,0.00013227,0.00014874,0.0001607,0.00016568,0.00021294,0.00021387,0.00023211,0.00024112,0.00029159,0.00029333,0.0002975,0.0003421,0.0003555,0.00036037,0.0003756,0.00039616,0.00041656,0.00042754,0.00055076,0.00055566,0.00063325,0.00076878,0.00092039,0.0011774,0.0011814,0.0012879,0.0014344,0.0016514,0.001654,0.001736,0.0021738,0.0022889,0.0023019,0.0029807,0.0031521,0.003255,0.0035909,0.0039546,0.0047123,0.0048422,0.0055152,0.0073346,0.0073622,0.0075332,0.0078937,0.0081871,0.0085622,0.0090243,0.0145,0.016349,0.019581,0.02233,0.022473,0.022807,0.027599,0.028834,0.028938,0.034511,0.045972,0.046383,0.050337,0.051188,0.061467,0.064627,0.07198,0.076074,0.080812,0.081761,0.08774,0.088829,0.08935,0.10441,0.10927,0.11136,0.11839,0.12067,0.13155,0.13413,0.13944,0.15334,0.15347,0.1605,0.16292,0.16293,0.17939,0.17993,0.18706,0.1948,0.21242,0.22919,0.24174,0.26259,0.28285,0.31046,0.31161,0.33389,0.3561,0.36953,0.40666,0.41785,0.44096,0.45485,0.48433,0.48749,0.494,0.50915,0.5412,0.57449,0.59221,0.60991,0.61915,0.62044,0.63717,0.65643,0.71438,0.72947,0.73771,0.75568,0.7558,0.77317,0.7753,0.78684,0.79598,0.82579,0.82997,0.8519,0.87128,0.92664,0.93553,0.93963,0.94981,0.95857,0.96169,0.96757,0.97151,0.97606,0.98273,0.98276,0.99206,0.99394,0.9943,0.99448,0.99903,0.99909,0.99933,0.99949,0.9998,1,0.99984,0.99531,0.96544,0.95152,0.95019,0.94907,0.94538,0.94328,0.92156,0.9056,0.8932,0.88599,0.87033,0.85641,0.85376,0.8332,0.82115,0.80606,0.78103,0.74678,0.74455,0.73266,0.72434,0.72058,0.67994,0.66867,0.61696,0.60257,0.57724,0.56371,0.55934,0.53561,0.53256,0.5259,0.51141,0.48407 1,6.6906e-37,1.263e-36,1.3038e-36,1.5786e-36,1.8287e-36,2.2182e-36,3.2245e-36,7.8256e-36,1.3719e-35,1.4953e-35,2.3336e-35,2.5092e-35,3.3471e-35,6.733e-35,8.379e-35,9.7528e-35,1.8798e-34,2.1035e-34,2.3827e-34,3.6187e-34,3.7847e-34,3.8836e-34,5.3363e-34,6.4357e-34,6.4751e-34,9.2711e-34,9.5787e-34,1.1262e-33,1.1504e-33,1.1745e-33,3.5114e-33,9.9238e-33,1.0897e-32,1.4777e-32,1.9383e-32,2.3921e-32,3.0691e-32,4.0983e-32,6.8084e-32,8.9967e-32,1.4137e-31,2.4915e-31,2.6249e-31,2.9329e-31,3.2492e-31,5.5312e-31,5.5356e-31,1.9551e-30,2.146e-30,2.2599e-30,3.2904e-30,3.3825e-30,7.0506e-30,9.4004e-30,1.0594e-29,1.3766e-29,1.6256e-29,2.1611e-29,2.3604e-29,4.6418e-29,7.0336e-29,2.5751e-28,3.6684e-28,4.1284e-28,5.0991e-28,9.0917e-28,1.0233e-27,1.1364e-27,1.8574e-27,2.9391e-27,3.4819e-27,3.9994e-27,6.6012e-27,1.3558e-26,2.8816e-26,4.7756e-26,5.308e-26,1.3577e-25,1.8755e-25,2.18e-25,2.3303e-25,3.0522e-25,9.2113e-25,9.5435e-25,1.1559e-24,1.5658e-24,1.6618e-24,2.559e-24,8.338e-24,8.4686e-24,1.179e-23,1.3274e-23,5.085e-23,7.1094e-23,7.2865e-23,9.8203e-23,1.4691e-22,1.4808e-22,1.5297e-22,1.9488e-22,1.9531e-22,2.4314e-22,2.646e-22,8.7994e-22,1.4839e-21,1.5103e-21,2.7234e-21,3.1874e-21,4.0637e-21,4.5723e-21,4.9013e-21,5.2926e-21,5.4266e-21,5.8012e-21,7.5869e-21,7.8271e-21,8.346e-21,8.7968e-21,1.3068e-20,2.0398e-20,3.6042e-20,4.4615e-20,6.9937e-20,1.1518e-19,1.4197e-19,1.5811e-19,5.1468e-19,5.893e-19,6.5087e-19,7.923e-19,1.0166e-18,1.2609e-18,1.5011e-18,1.5484e-18,1.5788e-18,1.9654e-18,3.485e-18,3.6343e-18,4.5468e-18,6.4252e-18,7.7712e-18,8.0146e-18,2.3542e-17,2.3811e-17,2.9406e-17,4.4346e-17,4.7778e-17,6.304e-17,6.7292e-17,1.0607e-16,1.4248e-16,2.7735e-16,2.8179e-16,5.9833e-16,6.5166e-16,6.6964e-16,1.0857e-15,1.1194e-15,1.3311e-15,1.671e-15,1.7938e-15,1.8924e-15,2.3359e-15,2.4186e-15,2.4741e-15,2.9219e-15,3.0968e-15,3.1441e-15,3.6073e-15,3.7898e-15,4.9775e-15,7.8004e-15,8.4475e-15,8.6285e-15,1.0535e-14,1.1438e-14,1.5967e-14,2.8526e-14,3.4102e-14,4.5181e-14,5.0087e-14,6.6607e-14,8.8302e-14,9.0352e-14,9.1974e-14,9.2163e-14,1.0012e-13,1.0082e-13,1.3057e-13,1.4695e-13,1.8338e-13,1.852e-13,1.9659e-13,2.8776e-13,2.9096e-13,3.4846e-13,4.2745e-13,6.1434e-13,6.4422e-13,7.376e-13,7.6026e-13,8.2058e-13,9.3233e-13,1.1331e-12,1.1391e-12,1.7671e-12,2.8983e-12,3.0537e-12,3.2354e-12,3.2941e-12,4.4206e-12,5.2929e-12,9.6876e-12,9.997e-12,1.065e-11,1.1848e-11,1.7558e-11,2.6353e-11,4.0904e-11,4.6642e-11,5.0431e-11,6.1452e-11,9.1315e-11,1.0855e-10,1.3567e-10,1.9066e-10,2.5513e-10,2.6882e-10,4.6816e-10,5.0332e-10,5.1679e-10,5.8738e-10,6.1799e-10,9.2487e-10,1.098e-09,1.1536e-09,1.1594e-09,1.2859e-09,1.4777e-09,1.5759e-09,1.6215e-09,2.6651e-09,2.6668e-09,4.1473e-09,6.8224e-09,1.0733e-08,1.62e-08,1.9324e-08,2.0235e-08,2.2529e-08,2.4738e-08,3.08e-08,3.1549e-08,4.7893e-08,5.3167e-08,6.5469e-08,8.4603e-08,9.8715e-08,1.0045e-07,1.1379e-07,1.2368e-07,1.516e-07,2.0461e-07,2.1042e-07,2.3977e-07,2.9422e-07,3.4702e-07,3.497e-07,6.1293e-07,6.7101e-07,7.0073e-07,7.8285e-07,8.2905e-07,9.0719e-07,1.0464e-06,1.1081e-06,1.2001e-06,1.3635e-06,1.6068e-06,1.8771e-06,1.9068e-06,2.3019e-06,2.6032e-06,2.8996e-06,3.698e-06,4.1288e-06,4.2969e-06,4.9474e-06,4.9896e-06,5.3061e-06,5.4517e-06,7.7762e-06,8.5096e-06,8.8118e-06,1.0326e-05,1.1315e-05,1.1473e-05,1.4179e-05,2.1159e-05,2.3797e-05,2.5276e-05,2.9064e-05,2.9414e-05,3.4369e-05,3.4956e-05,4.2634e-05,4.7864e-05,6.0242e-05,6.15e-05,6.2703e-05,6.3384e-05,6.5661e-05,6.7576e-05,6.8769e-05,8.2606e-05,8.5815e-05,0.00012265,0.00013799,0.00014913,0.00015377,0.00019785,0.00019872,0.00021574,0.00022416,0.0002713,0.00027293,0.00027683,0.00031852,0.00033105,0.00033561,0.00034986,0.00036909,0.00038819,0.00039847,0.00051391,0.0005185,0.00059126,0.00071845,0.00086087,0.0011025,0.0011064,0.0012066,0.0013446,0.001549,0.0015514,0.0016287,0.0020419,0.0021506,0.0021628,0.0028044,0.0029665,0.0030638,0.0033818,0.0037262,0.0044444,0.0045675,0.0052061,0.0069346,0.0069608,0.0071234,0.0074663,0.0077455,0.0081024,0.0085423,0.013765,0.015531,0.018623,0.021255,0.021392,0.021712,0.026307,0.027492,0.027592,0.032945,0.043974,0.04437,0.048181,0.049002,0.058922,0.061974,0.069083,0.073044,0.07763,0.078549,0.084341,0.085396,0.085901,0.1005,0.10523,0.10726,0.11409,0.11631,0.12689,0.1294,0.13457,0.14811,0.14824,0.15509,0.15745,0.15746,0.17353,0.17406,0.18102,0.18859,0.20582,0.22224,0.23454,0.255,0.2749,0.30206,0.30319,0.32514,0.34703,0.36029,0.39698,0.40805,0.43094,0.44471,0.47397,0.4771,0.48357,0.49862,0.53052,0.56371,0.5814,0.59909,0.60833,0.60963,0.62637,0.64567,0.70389,0.7191,0.7274,0.74554,0.74566,0.76322,0.76538,0.77706,0.78632,0.81659,0.82085,0.84321,0.86303,0.92006,0.92931,0.93359,0.94424,0.95345,0.95675,0.963,0.9672,0.97208,0.97931,0.97934,0.98967,0.99182,0.99224,0.99246,0.99808,0.99817,0.99852,0.99876,0.99929,0.99984,1,0.99687,0.96986,0.95673,0.95547,0.95441,0.9509,0.9489,0.92808,0.91267,0.90066,0.89366,0.87841,0.86482,0.86223,0.8421,0.83027,0.81543,0.79076,0.75691,0.7547,0.74292,0.73467,0.73094,0.69056,0.67935,0.62777,0.61339,0.58804,0.57449,0.57011,0.54631,0.54325,0.53655,0.522,0.4945 1,2.4021e-37,4.5524e-37,4.7003e-37,5.6977e-37,6.6064e-37,8.0228e-37,1.169e-36,2.8526e-36,5.0183e-36,5.4727e-36,8.5649e-36,9.2137e-36,1.2312e-35,2.4877e-35,3.1001e-35,3.6118e-35,6.9906e-35,7.8282e-35,8.874e-35,1.3514e-34,1.4137e-34,1.4509e-34,1.9977e-34,2.4122e-34,2.427e-34,3.483e-34,3.5994e-34,4.2362e-34,4.3279e-34,4.4191e-34,1.3305e-33,3.7859e-33,4.1598e-33,5.652e-33,7.427e-33,9.1782e-33,1.1795e-32,1.5781e-32,2.6304e-32,3.4822e-32,5.4883e-32,9.7088e-32,1.0232e-31,1.1441e-31,1.2684e-31,2.1669e-31,2.1687e-31,7.7247e-31,8.4843e-31,8.9378e-31,1.3047e-30,1.3414e-30,2.8101e-30,3.7541e-30,4.2342e-30,5.512e-30,6.5163e-30,8.6798e-30,9.486e-30,1.8742e-29,2.8481e-29,1.0522e-28,1.5027e-28,1.6925e-28,2.0937e-28,3.7483e-28,4.2224e-28,4.6926e-28,7.6964e-28,1.2219e-27,1.4493e-27,1.6664e-27,2.7603e-27,5.699e-27,1.2179e-26,2.0259e-26,2.2535e-26,5.8041e-26,8.0368e-26,9.3518e-26,1.0002e-25,1.3126e-25,3.9943e-25,4.1395e-25,5.0211e-25,6.8171e-25,7.2381e-25,1.1183e-24,3.6767e-24,3.7347e-24,5.2126e-24,5.8741e-24,2.2738e-23,3.1874e-23,3.2675e-23,4.414e-23,6.6242e-23,6.6774e-23,6.8999e-23,8.8071e-23,8.8264e-23,1.1007e-22,1.1987e-22,4.0247e-22,6.8159e-22,6.9381e-22,1.2571e-21,1.4731e-21,1.8818e-21,2.1194e-21,2.2732e-21,2.4562e-21,2.5189e-21,2.6943e-21,3.5314e-21,3.6441e-21,3.8878e-21,4.0995e-21,6.1099e-21,9.5723e-21,1.6994e-20,2.1074e-20,3.316e-20,5.4844e-20,6.7717e-20,7.5484e-20,2.4822e-19,2.8453e-19,3.1453e-19,3.8353e-19,4.9318e-19,6.1282e-19,7.3072e-19,7.5392e-19,7.6884e-19,9.5898e-19,1.709e-18,1.7829e-18,2.2349e-18,3.168e-18,3.8381e-18,3.9594e-18,1.1743e-17,1.1879e-17,1.4698e-17,2.2248e-17,2.3987e-17,3.1729e-17,3.389e-17,5.3641e-17,7.2254e-17,1.4152e-16,1.4381e-16,3.0752e-16,3.352e-16,3.4454e-16,5.6116e-16,5.7878e-16,6.8938e-16,8.6729e-16,9.3162e-16,9.8336e-16,1.2163e-15,1.2598e-15,1.2889e-15,1.5247e-15,1.6169e-15,1.6418e-15,1.8862e-15,1.9826e-15,2.6108e-15,4.1095e-15,4.4539e-15,4.5503e-15,5.5664e-15,6.0486e-15,8.4714e-15,1.5223e-14,1.8231e-14,2.4223e-14,2.6881e-14,3.585e-14,4.7663e-14,4.8781e-14,4.9666e-14,4.977e-14,5.411e-14,5.4495e-14,7.076e-14,7.9736e-14,9.9732e-14,1.0073e-13,1.0699e-13,1.5723e-13,1.59e-13,1.9077e-13,2.3452e-13,3.3835e-13,3.5498e-13,4.0702e-13,4.1966e-13,4.5332e-13,5.1576e-13,6.281e-13,6.3148e-13,9.8426e-13,1.6229e-12,1.711e-12,1.8139e-12,1.8471e-12,2.4868e-12,2.9834e-12,5.4972e-12,5.6747e-12,6.0497e-12,6.7379e-12,1.003e-11,1.5123e-11,2.3591e-11,2.694e-11,2.9155e-11,3.5607e-11,5.3154e-11,6.3312e-11,7.9341e-11,1.1195e-10,1.5032e-10,1.5848e-10,2.7784e-10,2.9897e-10,3.0707e-10,3.4956e-10,3.68e-10,5.5346e-10,6.5843e-10,6.9222e-10,6.9575e-10,7.7262e-10,8.8944e-10,9.4924e-10,9.771e-10,1.616e-09,1.617e-09,2.5288e-09,4.1865e-09,6.625e-09,1.0054e-08,1.2021e-08,1.2595e-08,1.4043e-08,1.5439e-08,1.9279e-08,1.9755e-08,3.0158e-08,3.3528e-08,4.1403e-08,5.3693e-08,6.2784e-08,6.3901e-08,7.2515e-08,7.8908e-08,9.7e-08,1.3148e-07,1.3526e-07,1.5442e-07,1.9005e-07,2.2469e-07,2.2645e-07,4.0018e-07,4.3869e-07,4.5841e-07,5.1298e-07,5.4372e-07,5.9577e-07,6.8865e-07,7.2993e-07,7.9146e-07,9.01e-07,1.0644e-06,1.2465e-06,1.2665e-06,1.5333e-06,1.7374e-06,1.9385e-06,2.4817e-06,2.7756e-06,2.8904e-06,3.3355e-06,3.3645e-06,3.5814e-06,3.6813e-06,5.2812e-06,5.7878e-06,5.9968e-06,7.0456e-06,7.732e-06,7.8416e-06,9.7255e-06,1.4612e-05,1.6467e-05,1.7508e-05,2.0181e-05,2.0428e-05,2.3934e-05,2.435e-05,2.9802e-05,3.3526e-05,4.237e-05,4.3271e-05,4.4132e-05,4.4621e-05,4.6253e-05,4.7626e-05,4.8483e-05,5.8432e-05,6.0744e-05,8.7389e-05,9.8538e-05,0.00010665,0.00011003,0.00014225,0.00014289,0.00015537,0.00016156,0.00019626,0.00019746,0.00020034,0.00023115,0.00024042,0.0002438,0.00025436,0.00026863,0.00028281,0.00029045,0.00037652,0.00037995,0.00043444,0.00053003,0.0006375,0.00082076,0.00082368,0.00089995,0.0010052,0.0011617,0.0011635,0.0012228,0.0015407,0.0016247,0.0016341,0.0021314,0.0022576,0.0023334,0.0025815,0.0028509,0.0034147,0.0035117,0.0040153,0.0053866,0.0054075,0.005537,0.0058104,0.0060332,0.0063185,0.0066706,0.010884,0.012322,0.014849,0.017011,0.017124,0.017388,0.021185,0.022168,0.022251,0.026709,0.035971,0.036305,0.039526,0.040222,0.048657,0.051264,0.057355,0.06076,0.064712,0.065505,0.070512,0.071426,0.071863,0.084561,0.088684,0.090465,0.096446,0.098393,0.10771,0.10992,0.11449,0.12649,0.12661,0.1327,0.13481,0.13481,0.14918,0.14965,0.1559,0.1627,0.17825,0.19314,0.20434,0.22304,0.24132,0.26641,0.26747,0.28787,0.30833,0.32077,0.35539,0.36589,0.38768,0.40084,0.42894,0.43196,0.4382,0.45277,0.48379,0.51631,0.53374,0.55125,0.56043,0.56172,0.57841,0.59774,0.65668,0.67224,0.68077,0.69949,0.69961,0.71784,0.72009,0.7323,0.74202,0.77406,0.7786,0.80261,0.82416,0.88804,0.89875,0.90377,0.91639,0.92753,0.93158,0.93936,0.94468,0.95097,0.96058,0.96063,0.97539,0.97875,0.97942,0.97978,0.9901,0.9903,0.99113,0.99173,0.9932,0.99531,0.99687,1,0.98594,0.97645,0.9755,0.9747,0.97203,0.97049,0.9539,0.94112,0.93094,0.92492,0.91166,0.89967,0.89737,0.87932,0.86859,0.85502,0.8322,0.80044,0.79835,0.78718,0.77932,0.77576,0.73691,0.72602,0.67546,0.66122,0.636,0.62245,0.61805,0.59411,0.59101,0.58425,0.56949,0.54149 1,2.6632e-38,5.0892e-38,5.2567e-38,6.3881e-38,7.4212e-38,9.0352e-38,1.323e-37,3.2665e-37,5.7893e-37,6.3206e-37,9.9507e-37,1.0715e-36,1.4374e-36,2.9314e-36,3.6638e-36,4.2773e-36,8.3522e-36,9.3671e-36,1.0636e-35,1.6289e-35,1.7052e-35,1.7506e-35,2.4208e-35,2.9305e-35,2.9488e-35,4.2526e-35,4.3965e-35,5.1858e-35,5.2997e-35,5.4129e-35,1.6544e-34,4.7755e-34,5.254e-34,7.1689e-34,9.4559e-34,1.172e-33,1.5114e-33,2.0303e-33,3.4083e-33,4.5298e-33,7.185e-33,1.2813e-32,1.3513e-32,1.5134e-32,1.6802e-32,2.8922e-32,2.8946e-32,1.0499e-31,1.1546e-31,1.2173e-31,1.7865e-31,1.8376e-31,3.8907e-31,5.2194e-31,5.8971e-31,7.7062e-31,9.1324e-31,1.2215e-30,1.3367e-30,2.6674e-30,4.0784e-30,1.5361e-29,2.2054e-29,2.4883e-29,3.0878e-29,5.5764e-29,6.293e-29,7.0048e-29,1.1575e-28,1.8504e-28,2.2005e-28,2.5354e-28,4.2323e-28,8.8352e-28,1.9103e-27,3.2026e-27,3.5683e-27,9.3268e-27,1.298e-26,1.514e-26,1.6209e-26,2.1364e-26,6.6165e-26,6.8608e-26,8.3476e-26,1.1389e-25,1.2104e-25,1.8831e-25,6.311e-25,6.4122e-25,8.9982e-25,1.016e-24,4.0209e-24,5.668e-24,5.8127e-24,7.8916e-24,1.1923e-23,1.2021e-23,1.2428e-23,1.5928e-23,1.5963e-23,1.9981e-23,2.179e-23,7.4672e-23,1.276e-22,1.2992e-22,2.3781e-22,2.7944e-22,3.5847e-22,4.0455e-22,4.3443e-22,4.7004e-22,4.8225e-22,5.1643e-22,6.8005e-22,7.0215e-22,7.4993e-22,7.9151e-22,1.1879e-21,1.8757e-21,3.3638e-21,4.1872e-21,6.6418e-21,1.1084e-20,1.3737e-20,1.5343e-20,5.1548e-20,5.9237e-20,6.5602e-20,8.0283e-20,1.0371e-19,1.2939e-19,1.5478e-19,1.5978e-19,1.6301e-19,2.0415e-19,3.6772e-19,3.8393e-19,4.8331e-19,6.8956e-19,8.3844e-19,8.6544e-19,2.6202e-18,2.651e-18,3.2935e-18,5.0253e-18,5.4257e-18,7.2158e-18,7.717e-18,1.2324e-17,1.6697e-17,3.3138e-17,3.3683e-17,7.3121e-17,7.9839e-17,8.2108e-17,1.3504e-16,1.3937e-16,1.6659e-16,2.1055e-16,2.265e-16,2.3934e-16,2.973e-16,3.0815e-16,3.1544e-16,3.7441e-16,3.9752e-16,4.0377e-16,4.6519e-16,4.8947e-16,6.4821e-16,1.0299e-15,1.1181e-15,1.1428e-15,1.4038e-15,1.5281e-15,2.1552e-15,3.9207e-15,4.7135e-15,6.3005e-15,7.0074e-15,9.403e-15,1.2578e-14,1.288e-14,1.3118e-14,1.3146e-14,1.4318e-14,1.4422e-14,1.8833e-14,2.1277e-14,2.6742e-14,2.7015e-14,2.8732e-14,4.2581e-14,4.307e-14,5.1885e-14,6.4074e-14,9.3193e-14,9.7879e-14,1.1257e-13,1.1614e-13,1.2568e-13,1.434e-13,1.7541e-13,1.7637e-13,2.7767e-13,4.6308e-13,4.8879e-13,5.1888e-13,5.2861e-13,7.1655e-13,8.6326e-13,1.6134e-12,1.6667e-12,1.7795e-12,1.987e-12,2.9855e-12,4.5457e-12,7.1669e-12,8.2107e-12,8.9026e-12,1.0926e-11,1.647e-11,1.9701e-11,2.4827e-11,3.5329e-11,4.7789e-11,5.0451e-11,8.9709e-11,9.6711e-11,9.9398e-11,1.1352e-10,1.1967e-10,1.8187e-10,2.1734e-10,2.2879e-10,2.2999e-10,2.561e-10,2.959e-10,3.1633e-10,3.2586e-10,5.461e-10,5.4645e-10,8.6482e-10,1.4513e-09,2.3255e-09,3.57e-09,4.2897e-09,4.5004e-09,5.0331e-09,5.5482e-09,6.9716e-09,7.1485e-09,1.1045e-08,1.2316e-08,1.5302e-08,1.9994e-08,2.3486e-08,2.3916e-08,2.7241e-08,2.9716e-08,3.6753e-08,5.0271e-08,5.1761e-08,5.9327e-08,7.3473e-08,8.7307e-08,8.8012e-08,1.5828e-07,1.74e-07,1.8208e-07,2.0447e-07,2.1712e-07,2.3858e-07,2.7704e-07,2.9419e-07,3.198e-07,3.6557e-07,4.3418e-07,5.1103e-07,5.1951e-07,6.3287e-07,7.2001e-07,8.0624e-07,1.0406e-06,1.1682e-06,1.2182e-06,1.4125e-06,1.4252e-06,1.5202e-06,1.5641e-06,2.2715e-06,2.4971e-06,2.5905e-06,3.0605e-06,3.3695e-06,3.4189e-06,4.2722e-06,6.5117e-06,7.3699e-06,7.8532e-06,9.0983e-06,9.214e-06,1.0857e-05,1.1053e-05,1.3629e-05,1.5399e-05,1.9631e-05,2.0064e-05,2.0479e-05,2.0714e-05,2.1501e-05,2.2164e-05,2.2578e-05,2.7404e-05,2.8531e-05,4.1625e-05,4.7157e-05,5.1198e-05,5.2887e-05,6.9074e-05,6.9394e-05,7.5712e-05,7.8848e-05,9.6541e-05,9.7158e-05,9.863e-05,0.00011447,0.00011925,0.000121,0.00012646,0.00013386,0.00014123,0.0001452,0.0001903,0.00019211,0.00022091,0.00027183,0.00032959,0.00042911,0.00043071,0.00047246,0.00053037,0.00061697,0.000618,0.00065096,0.00082903,0.00087637,0.00088173,0.0011646,0.001237,0.0012806,0.0014237,0.0015799,0.0019094,0.0019663,0.0022636,0.0030828,0.0030954,0.0031734,0.0033385,0.0034734,0.0036465,0.0038608,0.0064701,0.0073759,0.0089844,0.010375,0.010448,0.010618,0.013091,0.013736,0.013791,0.016741,0.022979,0.023207,0.025408,0.025885,0.031717,0.033537,0.037817,0.040225,0.043035,0.043601,0.047185,0.047841,0.048156,0.057356,0.060371,0.061677,0.066081,0.06752,0.074442,0.076097,0.079518,0.088572,0.088661,0.093295,0.094901,0.094903,0.10593,0.10629,0.11112,0.1164,0.12858,0.14034,0.14926,0.1643,0.17915,0.19978,0.20065,0.21763,0.23483,0.24538,0.27506,0.28416,0.30319,0.31478,0.33975,0.34245,0.34805,0.36118,0.38944,0.41949,0.4358,0.45232,0.46102,0.46225,0.4782,0.49685,0.55485,0.57048,0.57911,0.59819,0.59832,0.61712,0.61946,0.63219,0.6424,0.67658,0.68149,0.70777,0.73184,0.80662,0.81983,0.8261,0.84216,0.85671,0.8621,0.87263,0.87999,0.88888,0.90294,0.90301,0.92622,0.93192,0.93308,0.9337,0.95329,0.95369,0.95549,0.95681,0.96016,0.96544,0.96986,0.98594,1,0.99875,0.99852,0.99831,0.99756,0.99708,0.99039,0.98391,0.97818,0.97461,0.96631,0.95839,0.95683,0.9442,0.9364,0.92626,0.90861,0.88296,0.88124,0.87193,0.86532,0.8623,0.82865,0.819,0.77302,0.75975,0.73593,0.72296,0.71874,0.6955,0.69247,0.68583,0.67126,0.64326 1,1.3775e-38,2.6388e-38,2.726e-38,3.3152e-38,3.8535e-38,4.6952e-38,6.8849e-38,1.7058e-37,3.03e-37,3.3092e-37,5.219e-37,5.6213e-37,7.5495e-37,1.544e-36,1.9314e-36,2.2562e-36,4.4172e-36,4.9562e-36,5.6306e-36,8.6376e-36,9.0435e-36,9.2854e-36,1.2856e-35,1.5575e-35,1.5673e-35,2.2635e-35,2.3405e-35,2.7625e-35,2.8234e-35,2.8839e-35,8.8541e-35,2.5666e-34,2.8249e-34,3.8594e-34,5.0963e-34,6.3219e-34,8.1611e-34,1.0976e-33,1.8465e-33,2.457e-33,3.9046e-33,6.9794e-33,7.3626e-33,8.2495e-33,9.1627e-33,1.5808e-32,1.5821e-32,5.7691e-32,6.3474e-32,6.6931e-32,9.839e-32,1.0122e-31,2.1498e-31,2.8876e-31,3.2642e-31,4.2704e-31,5.0644e-31,6.7824e-31,7.4248e-31,1.486e-30,2.2762e-30,8.6223e-30,1.2399e-29,1.3997e-29,1.7385e-29,3.1478e-29,3.5542e-29,3.9581e-29,6.5547e-29,1.0501e-28,1.2497e-28,1.4408e-28,2.4106e-28,5.0488e-28,1.0954e-27,1.8408e-27,2.0519e-27,5.3869e-27,7.5084e-27,8.7639e-27,9.3858e-27,1.2386e-26,3.8561e-26,3.9992e-26,4.8703e-26,6.6542e-26,7.074e-26,1.1028e-25,3.7172e-25,3.7771e-25,5.3089e-25,5.9977e-25,2.3894e-24,3.3738e-24,3.4603e-24,4.7048e-24,7.1227e-24,7.1811e-24,7.4257e-24,9.5284e-24,9.5498e-24,1.1966e-23,1.3055e-23,4.5011e-23,7.7118e-23,7.8532e-23,1.4418e-22,1.6955e-22,2.1778e-22,2.4592e-22,2.6419e-22,2.8595e-22,2.9342e-22,3.1432e-22,4.1449e-22,4.2802e-22,4.5731e-22,4.8279e-22,7.2606e-22,1.1491e-21,2.067e-21,2.5759e-21,4.0957e-21,6.8532e-21,8.5033e-21,9.5025e-21,3.2131e-20,3.6951e-20,4.0944e-20,5.0161e-20,6.4888e-20,8.1046e-20,9.7045e-20,1.002e-19,1.0223e-19,1.2819e-19,2.3164e-19,2.419e-19,3.049e-19,4.3587e-19,5.3054e-19,5.4772e-19,1.6684e-18,1.6882e-18,2.0999e-18,3.2116e-18,3.469e-18,4.6209e-18,4.9437e-18,7.9158e-18,1.0743e-17,2.1405e-17,2.176e-17,4.7449e-17,5.1835e-17,5.3317e-17,8.7946e-17,9.078e-17,1.0862e-16,1.3748e-16,1.4795e-16,1.5639e-16,1.9452e-16,2.0166e-16,2.0645e-16,2.453e-16,2.6053e-16,2.6466e-16,3.0517e-16,3.2119e-16,4.2607e-16,6.7884e-16,7.3732e-16,7.5371e-16,9.2703e-16,1.0096e-15,1.4269e-15,2.6054e-15,3.1358e-15,4.199e-15,4.6732e-15,6.2824e-15,8.419e-15,8.622e-15,8.7828e-15,8.8016e-15,9.5916e-15,9.6616e-15,1.2637e-14,1.4288e-14,1.7985e-14,1.8169e-14,1.9331e-14,2.8721e-14,2.9053e-14,3.5041e-14,4.3332e-14,6.3176e-14,6.6374e-14,7.6405e-14,7.8847e-14,8.5362e-14,9.7482e-14,1.194e-13,1.2006e-13,1.8958e-13,3.1724e-13,3.3497e-13,3.5573e-13,3.6245e-13,4.9231e-13,5.9385e-13,1.1145e-12,1.1516e-12,1.2301e-12,1.3746e-12,2.0711e-12,3.1626e-12,5.0021e-12,5.7361e-12,6.223e-12,7.6481e-12,1.1563e-11,1.3849e-11,1.748e-11,2.4938e-11,3.3808e-11,3.5705e-11,6.3756e-11,6.877e-11,7.0695e-11,8.0822e-11,8.5232e-11,1.2994e-10,1.5548e-10,1.6374e-10,1.646e-10,1.8343e-10,2.1217e-10,2.2694e-10,2.3383e-10,3.9341e-10,3.9366e-10,6.2522e-10,1.0535e-09,1.6943e-09,2.6099e-09,3.1407e-09,3.2963e-09,3.6898e-09,4.0706e-09,5.1244e-09,5.2555e-09,8.1493e-09,9.0955e-09,1.1321e-08,1.4825e-08,1.7438e-08,1.776e-08,2.0252e-08,2.2108e-08,2.7393e-08,3.7568e-08,3.8692e-08,4.44e-08,5.5089e-08,6.5561e-08,6.6095e-08,1.1948e-07,1.3146e-07,1.3762e-07,1.547e-07,1.6436e-07,1.8077e-07,2.1019e-07,2.2332e-07,2.4296e-07,2.7807e-07,3.3078e-07,3.8991e-07,3.9644e-07,4.8384e-07,5.5113e-07,6.1779e-07,7.9932e-07,8.9831e-07,9.3711e-07,1.0881e-06,1.098e-06,1.172e-06,1.2061e-06,1.758e-06,1.9344e-06,2.0074e-06,2.3756e-06,2.618e-06,2.6567e-06,3.3273e-06,5.0931e-06,5.7716e-06,6.1542e-06,7.1408e-06,7.2325e-06,8.5371e-06,8.6928e-06,1.0742e-05,1.2153e-05,1.5533e-05,1.588e-05,1.6211e-05,1.64e-05,1.7029e-05,1.756e-05,1.7892e-05,2.1762e-05,2.2667e-05,3.3208e-05,3.7673e-05,4.0939e-05,4.2305e-05,5.5421e-05,5.5681e-05,6.0811e-05,6.336e-05,7.7759e-05,7.8262e-05,7.9462e-05,9.2381e-05,9.6291e-05,9.7716e-05,0.00010218,0.00010823,0.00011426,0.00011752,0.00015451,0.000156,0.00017969,0.00022168,0.00026943,0.00035195,0.00035327,0.00038797,0.00043618,0.00050839,0.00050925,0.00053678,0.00068579,0.00072548,0.00072998,0.00096783,0.0010288,0.0010655,0.0011864,0.0013185,0.0015976,0.001646,0.0018986,0.0025973,0.0026081,0.0026748,0.0028161,0.0029316,0.0030799,0.0032637,0.0055131,0.0062979,0.0076958,0.0089076,0.0089715,0.0091202,0.011284,0.011849,0.011897,0.014491,0.020004,0.020205,0.022159,0.022582,0.027777,0.029402,0.033231,0.03539,0.037913,0.038421,0.041646,0.042237,0.04252,0.050827,0.053556,0.05474,0.058734,0.060041,0.066337,0.067845,0.070964,0.079236,0.079317,0.08356,0.085032,0.085034,0.095153,0.095488,0.099934,0.1048,0.11604,0.12694,0.13522,0.14921,0.16307,0.18239,0.18321,0.19917,0.21539,0.22536,0.2535,0.26216,0.28029,0.29136,0.31528,0.31787,0.32325,0.33588,0.36313,0.39224,0.40808,0.42416,0.43266,0.43386,0.44945,0.46772,0.52487,0.54036,0.54892,0.5679,0.56803,0.58679,0.58913,0.60187,0.61211,0.64651,0.65146,0.67809,0.70259,0.77962,0.79339,0.79994,0.8168,0.83216,0.83788,0.84908,0.85694,0.86647,0.88165,0.88173,0.90712,0.91343,0.91472,0.91541,0.93747,0.93794,0.93999,0.94152,0.94538,0.95152,0.95673,0.97645,0.99875,1,0.99999,0.99997,0.9998,0.99965,0.99605,0.99158,0.98728,0.9845,0.97782,0.97125,0.96994,0.95914,0.95234,0.94339,0.92756,0.90414,0.90255,0.89395,0.8878,0.885,0.85339,0.84424,0.80027,0.78747,0.76437,0.75175,0.74762,0.72488,0.72191,0.71539,0.70104,0.67336 1,1.2994e-38,2.4897e-38,2.572e-38,3.1281e-38,3.6362e-38,4.4307e-38,6.4979e-38,1.6104e-37,2.8611e-37,3.1249e-37,4.929e-37,5.3092e-37,7.131e-37,1.4587e-36,1.8249e-36,2.1319e-36,4.1748e-36,4.6844e-36,5.3221e-36,8.1656e-36,8.5494e-36,8.7783e-36,1.2156e-35,1.4727e-35,1.482e-35,2.1406e-35,2.2134e-35,2.6126e-35,2.6702e-35,2.7275e-35,8.3771e-35,2.4293e-34,2.6738e-34,3.6534e-34,4.8247e-34,5.9855e-34,7.7276e-34,1.0394e-33,1.7489e-33,2.3274e-33,3.6992e-33,6.6137e-33,6.977e-33,7.8178e-33,8.6835e-33,1.4984e-32,1.4997e-32,5.4711e-32,6.0197e-32,6.3477e-32,9.3326e-32,9.6008e-32,2.0397e-31,2.74e-31,3.0976e-31,4.0528e-31,4.8067e-31,6.4379e-31,7.0479e-31,1.4109e-30,2.1616e-30,8.1923e-30,1.1782e-29,1.3301e-29,1.6523e-29,2.9923e-29,3.3787e-29,3.7629e-29,6.2327e-29,9.9867e-29,1.1886e-28,1.3704e-28,2.2933e-28,4.8046e-28,1.0427e-27,1.7526e-27,1.9538e-27,5.1311e-27,7.1529e-27,8.3495e-27,8.9422e-27,1.1802e-26,3.676e-26,3.8124e-26,4.6432e-26,6.3448e-26,6.7452e-26,1.0518e-25,3.5469e-25,3.6041e-25,5.0664e-25,5.724e-25,2.2817e-24,3.2222e-24,3.3048e-24,4.4941e-24,6.8048e-24,6.8607e-24,7.0944e-24,9.1043e-24,9.1247e-24,1.1435e-23,1.2476e-23,4.3036e-23,7.3752e-23,7.5105e-23,1.3792e-22,1.6221e-22,2.0837e-22,2.3531e-22,2.5279e-22,2.7363e-22,2.8078e-22,3.0079e-22,3.9669e-22,4.0965e-22,4.3769e-22,4.6209e-22,6.9506e-22,1.1003e-21,1.9797e-21,2.4673e-21,3.9239e-21,6.5673e-21,8.1493e-21,9.1074e-21,3.0813e-20,3.5437e-20,3.9268e-20,4.8112e-20,6.2245e-20,7.7754e-20,9.3111e-20,9.614e-20,9.809e-20,1.2301e-19,2.2234e-19,2.322e-19,2.927e-19,4.185e-19,5.0944e-19,5.2595e-19,1.603e-18,1.622e-18,2.0177e-18,3.0866e-18,3.3341e-18,4.4419e-18,4.7523e-18,7.6111e-18,1.0331e-17,2.0592e-17,2.0933e-17,4.5664e-17,4.9888e-17,5.1314e-17,8.4664e-17,8.7394e-17,1.0458e-16,1.3238e-16,1.4247e-16,1.506e-16,1.8734e-16,1.9422e-16,1.9884e-16,2.3627e-16,2.5095e-16,2.5493e-16,2.9397e-16,3.0942e-16,4.1051e-16,6.542e-16,7.106e-16,7.264e-16,8.9354e-16,9.7318e-16,1.3757e-15,2.5127e-15,3.0245e-15,4.0506e-15,4.5083e-15,6.0616e-15,8.1245e-15,8.3206e-15,8.4758e-15,8.494e-15,9.2568e-15,9.3244e-15,1.2198e-14,1.3793e-14,1.7363e-14,1.7541e-14,1.8664e-14,2.7736e-14,2.8056e-14,3.3842e-14,4.1854e-14,6.1035e-14,6.4126e-14,7.3823e-14,7.6184e-14,8.2483e-14,9.4202e-14,1.1539e-13,1.1603e-13,1.8327e-13,3.0677e-13,3.2392e-13,3.4402e-13,3.5052e-13,4.7619e-13,5.7446e-13,1.0786e-12,1.1145e-12,1.1905e-12,1.3304e-12,2.005e-12,3.0624e-12,4.845e-12,5.5564e-12,6.0284e-12,7.4099e-12,1.1205e-11,1.3423e-11,1.6945e-11,2.4179e-11,3.2785e-11,3.4626e-11,6.1853e-11,6.672e-11,6.859e-11,7.8421e-11,8.2703e-11,1.2612e-10,1.5093e-10,1.5895e-10,1.5979e-10,1.7808e-10,2.06e-10,2.2035e-10,2.2704e-10,3.8212e-10,3.8237e-10,6.0748e-10,1.0239e-09,1.6474e-09,2.5383e-09,3.055e-09,3.2064e-09,3.5895e-09,3.9602e-09,4.9863e-09,5.1139e-09,7.9323e-09,8.8539e-09,1.1022e-08,1.4437e-08,1.6983e-08,1.7297e-08,1.9725e-08,2.1535e-08,2.6687e-08,3.6609e-08,3.7705e-08,4.3272e-08,5.3699e-08,6.3914e-08,6.4435e-08,1.1654e-07,1.2823e-07,1.3424e-07,1.5092e-07,1.6035e-07,1.7637e-07,2.051e-07,2.1792e-07,2.371e-07,2.7139e-07,3.2288e-07,3.8066e-07,3.8704e-07,4.7243e-07,5.382e-07,6.0335e-07,7.808e-07,8.7759e-07,9.1552e-07,1.0632e-06,1.0729e-06,1.1452e-06,1.1786e-06,1.7184e-06,1.891e-06,1.9625e-06,2.3227e-06,2.5599e-06,2.5979e-06,3.2541e-06,4.9831e-06,5.6476e-06,6.0222e-06,6.9887e-06,7.0785e-06,8.3566e-06,8.5091e-06,1.0517e-05,1.19e-05,1.5213e-05,1.5553e-05,1.5878e-05,1.6063e-05,1.668e-05,1.72e-05,1.7525e-05,2.1321e-05,2.2208e-05,3.2547e-05,3.6928e-05,4.0133e-05,4.1474e-05,5.4346e-05,5.4602e-05,5.9637e-05,6.2139e-05,7.6277e-05,7.6771e-05,7.7949e-05,9.0637e-05,9.4476e-05,9.5876e-05,0.00010026,0.0001062,0.00011213,0.00011533,0.00015168,0.00015314,0.00017642,0.00021769,0.00026464,0.00034579,0.0003471,0.00038123,0.00042865,0.0004997,0.00050055,0.00052764,0.00067431,0.00071338,0.00071781,0.00095201,0.0010121,0.0010482,0.0011673,0.0012974,0.0015725,0.0016201,0.0018691,0.002558,0.0025686,0.0026344,0.0027737,0.0028876,0.0030339,0.0032152,0.005435,0.0062099,0.0075903,0.0087873,0.0088504,0.0089973,0.011135,0.011694,0.011742,0.014306,0.019758,0.019957,0.02189,0.022309,0.02745,0.029058,0.032849,0.034988,0.037486,0.03799,0.041184,0.04177,0.04205,0.05028,0.052986,0.054159,0.058119,0.059415,0.065657,0.067152,0.070245,0.07845,0.078531,0.08274,0.0842,0.084202,0.094244,0.094577,0.09899,0.10382,0.11498,0.1258,0.13403,0.14793,0.1617,0.18091,0.18172,0.1976,0.21373,0.22364,0.25165,0.26027,0.27832,0.28934,0.31317,0.31575,0.32111,0.33369,0.36085,0.38987,0.40567,0.42171,0.43018,0.43138,0.44694,0.46517,0.52224,0.53771,0.54627,0.56523,0.56536,0.58411,0.58645,0.59919,0.60943,0.64384,0.6488,0.67545,0.69998,0.77718,0.791,0.79758,0.8145,0.82993,0.83567,0.84692,0.85483,0.86441,0.87969,0.87977,0.90535,0.91171,0.91301,0.9137,0.93598,0.93645,0.93852,0.94007,0.94397,0.95019,0.95547,0.9755,0.99852,0.99999,1,0.99999,0.99988,0.99976,0.99644,0.99214,0.98797,0.98526,0.97873,0.97228,0.97099,0.96036,0.95365,0.94481,0.92915,0.90593,0.90435,0.89582,0.88971,0.88692,0.85551,0.84641,0.80263,0.78987,0.76684,0.75426,0.75014,0.72745,0.72448,0.71797,0.70365,0.67601 1,1.2381e-38,2.3728e-38,2.4512e-38,2.9814e-38,3.4659e-38,4.2234e-38,6.1946e-38,1.5356e-37,2.7287e-37,2.9803e-37,4.7016e-37,5.0643e-37,6.8026e-37,1.3918e-36,1.7413e-36,2.0344e-36,3.9846e-36,4.4711e-36,5.08e-36,7.795e-36,8.1616e-36,8.3801e-36,1.1605e-35,1.4061e-35,1.4149e-35,2.044e-35,2.1135e-35,2.4949e-35,2.5499e-35,2.6046e-35,8.0023e-35,2.3213e-34,2.5551e-34,3.4914e-34,4.6112e-34,5.721e-34,7.3867e-34,9.9366e-34,1.6722e-33,2.2254e-33,3.5377e-33,6.326e-33,6.6736e-33,7.478e-33,8.3064e-33,1.4336e-32,1.4348e-32,5.2364e-32,5.7617e-32,6.0757e-32,8.9337e-32,9.1905e-32,1.953e-31,2.6238e-31,2.9663e-31,3.8814e-31,4.6036e-31,6.1664e-31,6.7509e-31,1.3518e-30,2.0712e-30,7.8531e-30,1.1295e-29,1.2752e-29,1.5842e-29,2.8696e-29,3.2403e-29,3.6088e-29,5.9784e-29,9.5808e-29,1.1404e-28,1.3149e-28,2.2007e-28,4.6117e-28,1.0011e-27,1.683e-27,1.8762e-27,4.9289e-27,6.8718e-27,8.0218e-27,8.5914e-27,1.134e-26,3.5335e-26,3.6647e-26,4.4636e-26,6.0999e-26,6.485e-26,1.0113e-25,3.412e-25,3.467e-25,4.8743e-25,5.5072e-25,2.1963e-24,3.102e-24,3.1816e-24,4.327e-24,6.5528e-24,6.6066e-24,6.8318e-24,8.768e-24,8.7876e-24,1.1013e-23,1.2016e-23,4.147e-23,7.1081e-23,7.2385e-23,1.3296e-22,1.5638e-22,2.009e-22,2.2689e-22,2.4375e-22,2.6384e-22,2.7074e-22,2.9004e-22,3.8256e-22,3.9506e-22,4.2211e-22,4.4566e-22,6.7043e-22,1.0615e-21,1.9103e-21,2.3811e-21,3.7873e-21,6.34e-21,7.8679e-21,8.7933e-21,2.9764e-20,3.4233e-20,3.7935e-20,4.6482e-20,6.0143e-20,7.5134e-20,8.998e-20,9.2908e-20,9.4794e-20,1.1889e-19,2.1494e-19,2.2447e-19,2.8299e-19,4.0466e-19,4.9264e-19,5.0861e-19,1.5508e-18,1.5692e-18,1.9523e-18,2.9869e-18,3.2266e-18,4.2991e-18,4.5997e-18,7.3682e-18,1.0003e-17,1.9943e-17,2.0273e-17,4.4239e-17,4.8333e-17,4.9716e-17,8.2044e-17,8.4691e-17,1.0135e-16,1.2831e-16,1.3809e-16,1.4598e-16,1.816e-16,1.8827e-16,1.9275e-16,2.2906e-16,2.433e-16,2.4715e-16,2.8503e-16,3.0001e-16,3.9808e-16,6.3452e-16,6.8924e-16,7.0457e-16,8.6677e-16,9.4405e-16,1.3347e-15,2.4385e-15,2.9354e-15,3.9319e-15,4.3764e-15,5.885e-15,7.8889e-15,8.0793e-15,8.2301e-15,8.2478e-15,8.9888e-15,9.0545e-15,1.1847e-14,1.3396e-14,1.6865e-14,1.7039e-14,1.8129e-14,2.6946e-14,2.7258e-14,3.2882e-14,4.0671e-14,5.932e-14,6.2326e-14,7.1755e-14,7.4051e-14,8.0177e-14,9.1573e-14,1.1218e-13,1.1281e-13,1.7821e-13,2.9838e-13,3.1507e-13,3.3462e-13,3.4095e-13,4.6326e-13,5.5892e-13,1.0497e-12,1.0847e-12,1.1587e-12,1.2949e-12,1.9519e-12,2.982e-12,4.7189e-12,5.4122e-12,5.8721e-12,7.2185e-12,1.0918e-11,1.308e-11,1.6514e-11,2.3569e-11,3.1963e-11,3.3759e-11,6.0323e-11,6.5072e-11,6.6896e-11,7.649e-11,8.0669e-11,1.2304e-10,1.4727e-10,1.5509e-10,1.5591e-10,1.7377e-10,2.0104e-10,2.1504e-10,2.2158e-10,3.7304e-10,3.7328e-10,5.9318e-10,1.0001e-09,1.6095e-09,2.4807e-09,2.9859e-09,3.134e-09,3.5086e-09,3.8712e-09,4.8749e-09,4.9997e-09,7.7572e-09,8.6591e-09,1.0781e-08,1.4123e-08,1.6616e-08,1.6923e-08,1.9301e-08,2.1072e-08,2.6117e-08,3.5835e-08,3.6908e-08,4.2361e-08,5.2575e-08,6.2584e-08,6.3094e-08,1.1415e-07,1.2562e-07,1.3151e-07,1.4786e-07,1.5711e-07,1.7281e-07,2.0098e-07,2.1356e-07,2.3236e-07,2.6599e-07,3.165e-07,3.7317e-07,3.7943e-07,4.6321e-07,5.2773e-07,5.9167e-07,7.6582e-07,8.6081e-07,8.9805e-07,1.043e-06,1.0525e-06,1.1235e-06,1.1563e-06,1.6863e-06,1.8559e-06,1.9261e-06,2.2799e-06,2.5129e-06,2.5501e-06,3.1949e-06,4.8939e-06,5.547e-06,5.9153e-06,6.8653e-06,6.9536e-06,8.2102e-06,8.3602e-06,1.0335e-05,1.1694e-05,1.4954e-05,1.5288e-05,1.5608e-05,1.5789e-05,1.6397e-05,1.6908e-05,1.7228e-05,2.0962e-05,2.1835e-05,3.2011e-05,3.6324e-05,3.9479e-05,4.0798e-05,5.3473e-05,5.3725e-05,5.8684e-05,6.1147e-05,7.5073e-05,7.5559e-05,7.672e-05,8.9219e-05,9.3001e-05,9.4381e-05,9.87e-05,0.00010456,0.00011039,0.00011354,0.00014937,0.00015081,0.00017376,0.00021445,0.00026074,0.00034078,0.00034207,0.00037574,0.00042253,0.00049263,0.00049347,0.0005202,0.00066495,0.00070353,0.00070789,0.00093911,0.00099842,0.0010341,0.0011517,0.0012802,0.001552,0.001599,0.001845,0.0025259,0.0025363,0.0026014,0.0027391,0.0028518,0.0029964,0.0031756,0.0053712,0.0061379,0.0075041,0.008689,0.0087515,0.0088969,0.011014,0.011567,0.011614,0.014154,0.019557,0.019754,0.02167,0.022085,0.027182,0.028777,0.032537,0.034658,0.037136,0.037636,0.040805,0.041387,0.041665,0.049833,0.052518,0.053683,0.057614,0.058901,0.065099,0.066584,0.069655,0.077805,0.077886,0.082067,0.083518,0.08352,0.093498,0.093829,0.098214,0.10301,0.11411,0.12487,0.13305,0.14687,0.16058,0.17969,0.1805,0.1963,0.21236,0.22223,0.25012,0.25871,0.27669,0.28768,0.31143,0.314,0.31934,0.33188,0.35897,0.38791,0.40368,0.41969,0.42814,0.42934,0.44487,0.46307,0.52006,0.53552,0.54407,0.56303,0.56316,0.5819,0.58423,0.59697,0.60721,0.64163,0.64659,0.67326,0.69782,0.77516,0.78902,0.79561,0.81259,0.82807,0.83384,0.84514,0.85307,0.8627,0.87806,0.87814,0.90387,0.91027,0.91158,0.91228,0.93473,0.9352,0.9373,0.93885,0.9428,0.94907,0.95441,0.9747,0.99831,0.99997,0.99999,1,0.99993,0.99983,0.99674,0.99258,0.98852,0.98587,0.97946,0.97312,0.97184,0.96135,0.95472,0.94596,0.93044,0.9074,0.90583,0.89735,0.89128,0.88851,0.85725,0.84819,0.80457,0.79185,0.76888,0.75632,0.75222,0.72956,0.7266,0.72011,0.70581,0.6782 1,1.059e-38,2.0307e-38,2.0979e-38,2.5521e-38,2.9672e-38,3.6163e-38,5.3059e-38,1.3164e-37,2.3404e-37,2.5564e-37,4.0345e-37,4.3461e-37,5.8395e-37,1.1956e-36,1.4961e-36,1.7481e-36,3.426e-36,3.8448e-36,4.3688e-36,6.7064e-36,7.0221e-36,7.2103e-36,9.9884e-36,1.2104e-35,1.218e-35,1.7601e-35,1.8201e-35,2.1488e-35,2.1963e-35,2.2434e-35,6.8999e-35,2.0035e-34,2.2055e-34,3.0146e-34,3.9826e-34,4.9421e-34,6.3825e-34,8.5882e-34,1.446e-33,1.9249e-33,3.0614e-33,5.4773e-33,5.7786e-33,6.4759e-33,7.194e-33,1.2423e-32,1.2433e-32,4.5433e-32,4.9995e-32,5.2723e-32,7.7553e-32,7.9785e-32,1.6967e-31,2.2801e-31,2.5781e-31,3.3743e-31,4.0029e-31,5.3634e-31,5.8723e-31,1.1766e-30,1.8037e-30,6.848e-30,9.8533e-30,1.1126e-29,1.3824e-29,2.5056e-29,2.8297e-29,3.1519e-29,5.2242e-29,8.3761e-29,9.9715e-29,1.1499e-28,1.9256e-28,4.0384e-28,8.7739e-28,1.4758e-27,1.6454e-27,4.3272e-27,6.035e-27,7.0461e-27,7.547e-27,9.9648e-27,3.1087e-26,3.2242e-26,3.928e-26,5.3698e-26,5.7092e-26,8.9079e-26,3.0093e-25,3.0579e-25,4.3008e-25,4.8599e-25,1.9412e-24,2.7427e-24,2.8132e-24,3.8273e-24,5.7988e-24,5.8465e-24,6.0459e-24,7.7617e-24,7.7791e-24,9.7517e-24,1.0641e-23,3.6776e-23,6.3076e-23,6.4235e-23,1.1807e-22,1.389e-22,1.7849e-22,2.0161e-22,2.1661e-22,2.3449e-22,2.4063e-22,2.5781e-22,3.4015e-22,3.5128e-22,3.7536e-22,3.9633e-22,5.9651e-22,9.45e-22,1.7018e-21,2.1218e-21,3.3768e-21,5.6563e-21,7.0214e-21,7.8482e-21,2.6605e-20,3.0605e-20,3.3919e-20,4.1573e-20,5.3807e-20,6.7238e-20,8.0542e-20,8.3167e-20,8.4857e-20,1.0645e-19,1.9261e-19,2.0116e-19,2.5368e-19,3.6291e-19,4.4193e-19,4.5627e-19,1.3933e-18,1.4098e-18,1.7544e-18,2.6857e-18,2.9015e-18,3.8675e-18,4.1382e-18,6.6331e-18,9.0085e-18,1.7977e-17,1.8276e-17,3.9922e-17,4.3622e-17,4.4871e-17,7.4101e-17,7.6494e-17,9.1566e-17,1.1595e-16,1.2481e-16,1.3195e-16,1.642e-16,1.7024e-16,1.743e-16,2.0717e-16,2.2007e-16,2.2357e-16,2.5787e-16,2.7145e-16,3.6032e-16,5.7472e-16,6.2435e-16,6.3827e-16,7.8543e-16,8.5556e-16,1.2102e-15,2.2129e-15,2.6646e-15,3.5707e-15,3.9749e-15,5.3475e-15,7.1714e-15,7.3447e-15,7.482e-15,7.4981e-15,8.1728e-15,8.2326e-15,1.0776e-14,1.2187e-14,1.5348e-14,1.5506e-14,1.6501e-14,2.454e-14,2.4824e-14,2.9955e-14,3.7062e-14,5.4087e-14,5.6832e-14,6.5444e-14,6.7541e-14,7.3137e-14,8.355e-14,1.0239e-13,1.0296e-13,1.6276e-13,2.7273e-13,2.8802e-13,3.0592e-13,3.1171e-13,4.2373e-13,5.1138e-13,9.6138e-13,9.9347e-13,1.0614e-12,1.1863e-12,1.7895e-12,2.7357e-12,4.3324e-12,4.97e-12,5.393e-12,6.6319e-12,1.0038e-11,1.2029e-11,1.5193e-11,2.1697e-11,2.9439e-11,3.1096e-11,5.5619e-11,6.0006e-11,6.1691e-11,7.0555e-11,7.4417e-11,1.1359e-10,1.3599e-10,1.4324e-10,1.4399e-10,1.6052e-10,1.8575e-10,1.9872e-10,2.0477e-10,3.4505e-10,3.4528e-10,5.4915e-10,9.2676e-10,1.4928e-09,2.3026e-09,2.7725e-09,2.9102e-09,3.2588e-09,3.5963e-09,4.5307e-09,4.6469e-09,7.2159e-09,8.0566e-09,1.0035e-08,1.3153e-08,1.548e-08,1.5766e-08,1.7986e-08,1.9641e-08,2.4353e-08,3.3435e-08,3.4439e-08,3.9538e-08,4.9093e-08,5.8459e-08,5.8937e-08,1.0676e-07,1.1751e-07,1.2303e-07,1.3836e-07,1.4703e-07,1.6177e-07,1.882e-07,2e-07,2.1764e-07,2.4922e-07,2.9665e-07,3.4989e-07,3.5577e-07,4.3452e-07,4.9519e-07,5.5532e-07,7.1919e-07,8.0861e-07,8.4367e-07,9.802e-07,9.8912e-07,1.056e-06,1.0869e-06,1.5865e-06,1.7464e-06,1.8126e-06,2.1464e-06,2.3663e-06,2.4014e-06,3.0102e-06,4.6156e-06,5.2332e-06,5.5815e-06,6.4803e-06,6.5638e-06,7.7531e-06,7.895e-06,9.7646e-06,1.1053e-05,1.4142e-05,1.4459e-05,1.4762e-05,1.4934e-05,1.551e-05,1.5996e-05,1.6299e-05,1.9841e-05,2.067e-05,3.0332e-05,3.443e-05,3.7429e-05,3.8684e-05,5.0738e-05,5.0977e-05,5.5695e-05,5.804e-05,7.1297e-05,7.176e-05,7.2866e-05,8.4772e-05,8.8376e-05,8.969e-05,9.3807e-05,9.9388e-05,0.00010495,0.00010796,0.00014213,0.0001435,0.00016541,0.00020426,0.0002485,0.00032503,0.00032627,0.00035848,0.00040326,0.00047038,0.00047119,0.00049679,0.00063551,0.00067249,0.00067667,0.00089849,0.00095542,0.00098972,0.0011026,0.0012261,0.0014872,0.0015325,0.0017691,0.0024245,0.0024346,0.0024972,0.0026299,0.0027384,0.0028778,0.0030506,0.0051694,0.0059102,0.0072311,0.0083776,0.0084381,0.0085789,0.010629,0.011165,0.011211,0.013673,0.018917,0.019109,0.02097,0.021374,0.026331,0.027883,0.031543,0.033609,0.036024,0.036511,0.0396,0.040167,0.040438,0.048407,0.051028,0.052166,0.056005,0.057262,0.06332,0.064772,0.067775,0.075749,0.075827,0.07992,0.081341,0.081343,0.091116,0.091439,0.095737,0.10044,0.11133,0.12188,0.12992,0.1435,0.15698,0.17578,0.17658,0.19214,0.20797,0.2177,0.24523,0.25371,0.27148,0.28234,0.30583,0.30838,0.31367,0.32608,0.35292,0.38163,0.39727,0.41317,0.42157,0.42276,0.4382,0.45629,0.51304,0.52845,0.53698,0.5559,0.55603,0.57474,0.57708,0.5898,0.60004,0.63448,0.63945,0.66617,0.69081,0.7686,0.78257,0.78922,0.80637,0.82202,0.82786,0.8393,0.84735,0.85712,0.87272,0.8728,0.89901,0.90555,0.90689,0.9076,0.93061,0.9311,0.93325,0.93485,0.93891,0.94538,0.9509,0.97203,0.99756,0.9998,0.99988,0.99993,1,0.99998,0.99762,0.99395,0.99023,0.98777,0.98176,0.97574,0.97453,0.96448,0.95809,0.94963,0.93456,0.91208,0.91054,0.90224,0.89629,0.89357,0.86283,0.85391,0.81081,0.79822,0.77545,0.76298,0.7589,0.7364,0.73345,0.72699,0.71276,0.68525 1,9.7075e-39,1.8621e-38,1.9237e-38,2.3404e-38,2.7213e-38,3.317e-38,4.8678e-38,1.2083e-37,2.1487e-37,2.3472e-37,3.7051e-37,3.9914e-37,5.3637e-37,1.0986e-36,1.3749e-36,1.6066e-36,3.1497e-36,3.5349e-36,4.017e-36,6.1678e-36,6.4583e-36,6.6314e-36,9.188e-36,1.1136e-35,1.1205e-35,1.6196e-35,1.6748e-35,1.9774e-35,2.0211e-35,2.0645e-35,6.3534e-35,1.8459e-34,2.032e-34,2.778e-34,3.6705e-34,4.5554e-34,5.8839e-34,7.9185e-34,1.3336e-33,1.7756e-33,2.8246e-33,5.0553e-33,5.3335e-33,5.9774e-33,6.6406e-33,1.147e-32,1.148e-32,4.198e-32,4.6198e-32,4.872e-32,7.168e-32,7.3744e-32,1.5689e-31,2.1087e-31,2.3844e-31,3.1213e-31,3.7031e-31,4.9625e-31,5.4337e-31,1.0892e-30,1.67e-30,6.3452e-30,9.1318e-30,1.0312e-29,1.2815e-29,2.3234e-29,2.6241e-29,2.923e-29,4.8463e-29,7.7724e-29,9.2537e-29,1.0672e-28,1.7877e-28,3.7508e-28,8.1527e-28,1.3717e-27,1.5295e-27,4.0246e-27,5.6141e-27,6.5553e-27,7.0216e-27,9.2726e-27,2.8947e-26,3.0024e-26,3.6582e-26,5.0019e-26,5.3183e-26,8.3002e-26,2.8061e-25,2.8515e-25,4.0113e-25,4.5331e-25,1.8122e-24,2.561e-24,2.6269e-24,3.5745e-24,5.4172e-24,5.4618e-24,5.6483e-24,7.2524e-24,7.2686e-24,9.1131e-24,9.9449e-24,3.4397e-23,5.9016e-23,6.0101e-23,1.1052e-22,1.3002e-22,1.6712e-22,1.8878e-22,2.0283e-22,2.1959e-22,2.2534e-22,2.4144e-22,3.1861e-22,3.2904e-22,3.5162e-22,3.7127e-22,5.5895e-22,8.8575e-22,1.5958e-21,1.9898e-21,3.1678e-21,5.3081e-21,6.5901e-21,7.3668e-21,2.4994e-20,2.8754e-20,3.187e-20,3.9067e-20,5.0574e-20,6.3207e-20,7.5723e-20,7.8192e-20,7.9783e-20,1.001e-19,1.812e-19,1.8925e-19,2.3869e-19,3.4156e-19,4.1599e-19,4.295e-19,1.3126e-18,1.3281e-18,1.6531e-18,2.5314e-18,2.7349e-18,3.6462e-18,3.9017e-18,6.2561e-18,8.4983e-18,1.6968e-17,1.725e-17,3.7704e-17,4.12e-17,4.2381e-17,7.0015e-17,7.2279e-17,8.6532e-17,1.096e-16,1.1798e-16,1.2473e-16,1.5524e-16,1.6096e-16,1.648e-16,1.9591e-16,2.0811e-16,2.1142e-16,2.4389e-16,2.5674e-16,3.4087e-16,5.4389e-16,5.9091e-16,6.0408e-16,7.4349e-16,8.0993e-16,1.146e-15,2.0965e-15,2.5248e-15,3.3841e-15,3.7675e-15,5.0697e-15,6.8005e-15,6.965e-15,7.0953e-15,7.1106e-15,7.751e-15,7.8077e-15,1.0222e-14,1.1562e-14,1.4564e-14,1.4714e-14,1.5658e-14,2.3295e-14,2.3565e-14,2.8439e-14,3.5193e-14,5.1376e-14,5.3985e-14,6.2173e-14,6.4167e-14,6.9489e-14,7.9391e-14,9.7307e-14,9.7847e-14,1.5475e-13,2.5942e-13,2.7397e-13,2.9101e-13,2.9653e-13,4.032e-13,4.8668e-13,9.1545e-13,9.4604e-13,1.0108e-12,1.1299e-12,1.7049e-12,2.6075e-12,4.131e-12,4.7395e-12,5.1434e-12,6.3261e-12,9.5785e-12,1.148e-11,1.4503e-11,2.0719e-11,2.812e-11,2.9705e-11,5.316e-11,5.7357e-11,5.8969e-11,6.7451e-11,7.1146e-11,1.0864e-10,1.3009e-10,1.3703e-10,1.3775e-10,1.5358e-10,1.7774e-10,1.9017e-10,1.9596e-10,3.3039e-10,3.306e-10,5.2605e-10,8.8825e-10,1.4314e-09,2.2089e-09,2.6603e-09,2.7926e-09,3.1275e-09,3.4517e-09,4.3496e-09,4.4613e-09,6.9309e-09,7.7393e-09,9.6421e-09,1.2642e-08,1.4881e-08,1.5157e-08,1.7293e-08,1.8885e-08,2.3422e-08,3.2169e-08,3.3135e-08,3.8047e-08,4.7254e-08,5.6281e-08,5.6741e-08,1.0286e-07,1.1322e-07,1.1855e-07,1.3334e-07,1.4171e-07,1.5592e-07,1.8143e-07,1.9282e-07,2.0985e-07,2.4033e-07,2.8614e-07,3.3756e-07,3.4324e-07,4.1931e-07,4.7794e-07,5.3605e-07,6.9445e-07,7.8091e-07,8.1481e-07,9.4685e-07,9.5547e-07,1.0202e-06,1.05e-06,1.5334e-06,1.6882e-06,1.7522e-06,2.0754e-06,2.2883e-06,2.3224e-06,2.9119e-06,4.4675e-06,5.0661e-06,5.4037e-06,6.2751e-06,6.3561e-06,7.5094e-06,7.6471e-06,9.4607e-06,1.0711e-05,1.3709e-05,1.4016e-05,1.4311e-05,1.4478e-05,1.5037e-05,1.5508e-05,1.5803e-05,1.9243e-05,2.0047e-05,2.9435e-05,3.3418e-05,3.6333e-05,3.7553e-05,4.9274e-05,4.9507e-05,5.4096e-05,5.6377e-05,6.9276e-05,6.9726e-05,7.0802e-05,8.2389e-05,8.5898e-05,8.7177e-05,9.1185e-05,9.6619e-05,0.00010204,0.00010496,0.00013824,0.00013958,0.00016093,0.00019879,0.00024192,0.00031657,0.00031777,0.0003492,0.0003929,0.00045842,0.0004592,0.0004842,0.00061965,0.00065578,0.00065987,0.00087661,0.00093225,0.00096578,0.0010761,0.0011969,0.0014523,0.0014966,0.0017281,0.0023697,0.0023796,0.002441,0.0025709,0.0026772,0.0028138,0.002983,0.0050601,0.0057868,0.0070832,0.0082088,0.0082682,0.0084064,0.01042,0.010947,0.010992,0.013412,0.01857,0.018758,0.02059,0.020987,0.025867,0.027396,0.031002,0.033037,0.035418,0.035898,0.038943,0.039502,0.039769,0.047629,0.050215,0.051337,0.055127,0.056367,0.062348,0.063781,0.066747,0.074624,0.074701,0.078745,0.080149,0.080151,0.089812,0.090131,0.094381,0.099035,0.1098,0.12025,0.1282,0.14165,0.155,0.17364,0.17443,0.18986,0.20556,0.21521,0.24254,0.25095,0.2686,0.2794,0.30274,0.30528,0.31053,0.32288,0.34957,0.37815,0.39373,0.40956,0.41793,0.41912,0.4345,0.45254,0.50915,0.52453,0.53305,0.55194,0.55207,0.57077,0.5731,0.58582,0.59605,0.63049,0.63547,0.66222,0.6869,0.76492,0.77895,0.78564,0.80288,0.81863,0.8245,0.83602,0.84413,0.85397,0.86971,0.86979,0.89627,0.90288,0.90424,0.90496,0.92827,0.92877,0.93095,0.93258,0.9367,0.94328,0.9489,0.97049,0.99708,0.99965,0.99976,0.99983,0.99998,1,0.99805,0.99465,0.99112,0.98877,0.98298,0.97714,0.97596,0.96616,0.95992,0.95162,0.93681,0.91463,0.91312,0.90491,0.89903,0.89634,0.8659,0.85705,0.81425,0.80173,0.77908,0.76667,0.76261,0.74018,0.73724,0.7308,0.71661,0.68917 1,4.2403e-39,8.1587e-39,8.4301e-39,1.0266e-38,1.1945e-38,1.4573e-38,2.1426e-38,5.3414e-38,9.5251e-38,1.0409e-37,1.6468e-37,1.7747e-37,2.3882e-37,4.9084e-37,6.1496e-37,7.1915e-37,1.4145e-36,1.5884e-36,1.8062e-36,2.7791e-36,2.9106e-36,2.989e-36,4.148e-36,5.032e-36,5.0637e-36,7.3322e-36,7.5832e-36,8.961e-36,9.1599e-36,9.3577e-36,2.8959e-35,8.4584e-35,9.3159e-35,1.2756e-34,1.6878e-34,2.0969e-34,2.712e-34,3.6552e-34,6.1723e-34,8.2299e-34,1.3123e-33,2.3557e-33,2.486e-33,2.7877e-33,3.0987e-33,5.3675e-33,5.372e-33,1.9777e-32,2.1775e-32,2.297e-32,3.3863e-32,3.4843e-32,7.4422e-32,1.0018e-31,1.1335e-31,1.486e-31,1.7645e-31,2.3683e-31,2.5944e-31,5.2197e-31,8.0214e-31,3.0696e-30,4.4264e-30,5.0016e-30,6.2229e-30,1.1319e-29,1.2792e-29,1.4258e-29,2.3705e-29,3.8116e-29,4.5424e-29,5.2429e-29,8.8072e-29,1.8555e-28,4.0505e-28,6.835e-28,7.6257e-28,2.0176e-27,2.8198e-27,3.2954e-27,3.5312e-27,4.6706e-27,1.4676e-26,1.5225e-26,1.8572e-26,2.544e-26,2.7058e-26,4.2339e-26,1.4416e-25,1.465e-25,2.0651e-25,2.3354e-25,9.4135e-25,1.3331e-24,1.3676e-24,1.8643e-24,2.8325e-24,2.856e-24,2.9541e-24,3.7987e-24,3.8073e-24,4.78e-24,5.219e-24,1.8189e-23,3.1311e-23,3.189e-23,5.8862e-23,6.9322e-23,8.9239e-23,1.0088e-22,1.0844e-22,1.1746e-22,1.2055e-22,1.2922e-22,1.7082e-22,1.7645e-22,1.8863e-22,1.9924e-22,3.0074e-22,4.7797e-22,8.6433e-22,1.0793e-21,1.7234e-21,2.8974e-21,3.6022e-21,4.0296e-21,1.3781e-20,1.5869e-20,1.7601e-20,2.1604e-20,2.8015e-20,3.5065e-20,4.2059e-20,4.344e-20,4.4329e-20,5.5705e-20,1.0123e-19,1.0576e-19,1.336e-19,1.9164e-19,2.3372e-19,2.4136e-19,7.4326e-19,7.5213e-19,9.3757e-19,1.44e-18,1.5566e-18,2.0793e-18,2.2261e-18,3.5812e-18,4.8753e-18,9.7818e-18,9.9454e-18,2.186e-17,2.3902e-17,2.4593e-17,4.0775e-17,4.2103e-17,5.0472e-17,6.4036e-17,6.8968e-17,7.2944e-17,9.0934e-17,9.4308e-17,9.6574e-17,1.1495e-16,1.2217e-16,1.2412e-16,1.4334e-16,1.5094e-16,2.0083e-16,3.2156e-16,3.4957e-16,3.5742e-16,4.4058e-16,4.8027e-16,6.8132e-16,1.2521e-15,1.51e-15,2.0285e-15,2.2602e-15,3.0484e-15,4.0983e-15,4.1983e-15,4.2774e-15,4.2867e-15,4.6759e-15,4.7104e-15,6.1796e-15,6.9964e-15,8.8289e-15,8.9207e-15,9.4978e-15,1.4174e-14,1.434e-14,1.7332e-14,2.1484e-14,3.1457e-14,3.3068e-14,3.8127e-14,3.936e-14,4.2651e-14,4.8781e-14,5.9888e-14,6.0223e-14,9.5597e-14,1.6094e-13,1.7004e-13,1.8071e-13,1.8416e-13,2.5105e-13,3.035e-13,5.739e-13,5.9324e-13,6.3417e-13,7.0958e-13,1.0745e-12,1.6492e-12,2.6231e-12,3.0131e-12,3.2722e-12,4.0318e-12,6.1269e-12,7.3551e-12,9.3111e-12,1.3344e-11,1.8159e-11,1.9192e-11,3.4527e-11,3.7279e-11,3.8337e-11,4.3905e-11,4.6332e-11,7.1026e-11,8.5192e-11,8.9776e-11,9.0256e-11,1.0073e-10,1.1673e-10,1.2497e-10,1.2882e-10,2.1825e-10,2.1839e-10,3.4904e-10,5.9234e-10,9.59e-10,1.4862e-09,1.7932e-09,1.8833e-09,2.1115e-09,2.3327e-09,2.9464e-09,3.0228e-09,4.7172e-09,5.2733e-09,6.5846e-09,8.6573e-09,1.0208e-08,1.0399e-08,1.1881e-08,1.2987e-08,1.6143e-08,2.2246e-08,2.2922e-08,2.6359e-08,3.2813e-08,3.9155e-08,3.9479e-08,7.2031e-08,7.9374e-08,8.3151e-08,9.3646e-08,9.9589e-08,1.097e-07,1.2786e-07,1.3598e-07,1.4813e-07,1.6991e-07,2.0269e-07,2.3957e-07,2.4365e-07,2.9833e-07,3.4056e-07,3.8247e-07,4.9699e-07,5.5964e-07,5.8423e-07,6.8011e-07,6.8637e-07,7.3343e-07,7.5516e-07,1.1078e-06,1.221e-06,1.2679e-06,1.5049e-06,1.6612e-06,1.6863e-06,2.1202e-06,3.2703e-06,3.7143e-06,3.9651e-06,4.6133e-06,4.6736e-06,5.5335e-06,5.6362e-06,6.9922e-06,7.9287e-06,1.0181e-05,1.0413e-05,1.0634e-05,1.076e-05,1.1181e-05,1.1536e-05,1.1758e-05,1.4356e-05,1.4964e-05,2.2086e-05,2.5118e-05,2.7341e-05,2.8271e-05,3.7236e-05,3.7415e-05,4.0934e-05,4.2685e-05,5.2605e-05,5.2952e-05,5.378e-05,6.2718e-05,6.5428e-05,6.6417e-05,6.9515e-05,7.372e-05,7.7915e-05,8.0183e-05,0.00010604,0.00010708,0.00012371,0.00015331,0.00018713,0.00024589,0.00024684,0.00027165,0.00030621,0.00035814,0.00035877,0.00037862,0.00048647,0.0005153,0.00051857,0.00069213,0.00073681,0.00076377,0.00085258,0.00094994,0.0011565,0.0011924,0.0013803,0.0019034,0.0019115,0.0019617,0.0020681,0.0021552,0.0022671,0.0024061,0.0041221,0.0047264,0.0058082,0.006751,0.0068008,0.0069168,0.0086113,0.0090561,0.009094,0.011143,0.015537,0.015699,0.017267,0.017608,0.021806,0.023125,0.026245,0.028011,0.030079,0.030497,0.03315,0.033637,0.03387,0.040747,0.043017,0.044004,0.047338,0.048432,0.053712,0.054981,0.057607,0.0646,0.064669,0.068269,0.069521,0.069522,0.078151,0.078438,0.082244,0.08642,0.096103,0.10554,0.11274,0.12495,0.13712,0.15419,0.15491,0.1691,0.18359,0.19252,0.21791,0.22576,0.24226,0.25238,0.27435,0.27673,0.2817,0.29337,0.31869,0.34593,0.36084,0.37604,0.38409,0.38523,0.40006,0.4175,0.47259,0.48765,0.49601,0.5146,0.51473,0.53319,0.5355,0.54811,0.55827,0.59263,0.59761,0.62449,0.64944,0.72931,0.74386,0.75082,0.76883,0.78538,0.79157,0.80378,0.8124,0.82292,0.83984,0.83992,0.86875,0.87604,0.87754,0.87833,0.90441,0.90497,0.90745,0.90929,0.914,0.92156,0.92808,0.9539,0.99039,0.99605,0.99644,0.99674,0.99762,0.99805,1,0.99915,0.99748,0.99615,0.99248,0.98842,0.98757,0.98021,0.97532,0.96863,0.95632,0.93726,0.93593,0.92872,0.92351,0.92112,0.89367,0.88557,0.84586,0.83409,0.81264,0.80081,0.79693,0.77541,0.77258,0.76636,0.75262,0.72591 1,2.4516e-39,4.7267e-39,4.8845e-39,5.9517e-39,6.9286e-39,8.4583e-39,1.245e-38,3.1128e-38,5.561e-38,6.0789e-38,9.6309e-38,1.0381e-37,1.3984e-37,2.8806e-37,3.6116e-37,4.2256e-37,8.3296e-37,9.3569e-37,1.0644e-36,1.64e-36,1.7179e-36,1.7643e-36,2.451e-36,2.9752e-36,2.994e-36,4.3405e-36,4.4896e-36,5.3081e-36,5.4264e-36,5.5439e-36,1.7219e-35,5.0473e-35,5.5607e-35,7.6219e-35,1.0094e-34,1.255e-34,1.6245e-34,2.1917e-34,3.7074e-34,4.948e-34,7.9021e-34,1.4213e-33,1.5002e-33,1.6829e-33,1.8713e-33,3.2475e-33,3.2502e-33,1.2018e-32,1.3237e-32,1.3966e-32,2.0616e-32,2.1215e-32,4.5432e-32,6.1221e-32,6.9299e-32,9.0928e-32,1.0804e-31,1.4515e-31,1.5906e-31,3.208e-31,4.9373e-31,1.8983e-30,2.7409e-30,3.0985e-30,3.858e-30,7.0325e-30,7.9513e-30,8.8657e-30,1.4767e-29,2.3784e-29,2.8362e-29,3.2753e-29,5.5123e-29,1.1645e-28,2.5493e-28,4.31e-28,4.8106e-28,1.2774e-27,1.7874e-27,2.0902e-27,2.2403e-27,2.9663e-27,9.361e-27,9.7125e-27,1.1856e-26,1.626e-26,1.7299e-26,2.7114e-26,9.2754e-26,9.4268e-26,1.3305e-25,1.5054e-25,6.101e-25,8.6516e-25,8.8763e-25,1.2115e-24,1.8437e-24,1.8591e-24,1.9232e-24,2.4755e-24,2.4812e-24,3.1178e-24,3.4054e-24,1.1928e-23,2.0578e-23,2.096e-23,3.8783e-23,4.5706e-23,5.8898e-23,6.6615e-23,7.1628e-23,7.7609e-23,7.9663e-23,8.5414e-23,1.1304e-22,1.1678e-22,1.2488e-22,1.3194e-22,1.9948e-22,3.1765e-22,5.7584e-22,7.1972e-22,1.1515e-21,1.9401e-21,2.4143e-21,2.7021e-21,9.2897e-21,1.0704e-20,1.1877e-20,1.4591e-20,1.8943e-20,2.3733e-20,2.8489e-20,2.9428e-20,3.0034e-20,3.7778e-20,6.8833e-20,7.1927e-20,9.0955e-20,1.3068e-19,1.5951e-19,1.6475e-19,5.0989e-19,5.1601e-19,6.4387e-19,9.908e-19,1.0714e-18,1.4332e-18,1.5348e-18,2.4744e-18,3.3733e-18,6.7901e-18,6.9042e-18,1.5231e-17,1.6662e-17,1.7145e-17,2.8495e-17,2.9427e-17,3.5307e-17,4.4846e-17,4.8317e-17,5.1116e-17,6.379e-17,6.6169e-17,6.7766e-17,8.0729e-17,8.5822e-17,8.7202e-17,1.0077e-16,1.0615e-16,1.4142e-16,2.2695e-16,2.4682e-16,2.524e-16,3.1144e-16,3.3963e-16,4.8264e-16,8.8966e-16,1.0739e-15,1.4448e-15,1.6107e-15,2.1756e-15,2.9293e-15,3.0011e-15,3.058e-15,3.0647e-15,3.3444e-15,3.3692e-15,4.4262e-15,5.0144e-15,6.3352e-15,6.4015e-15,6.8178e-15,1.0195e-14,1.0315e-14,1.248e-14,1.5487e-14,2.2721e-14,2.3891e-14,2.7566e-14,2.8462e-14,3.0855e-14,3.5315e-14,4.3402e-14,4.3646e-14,6.9454e-14,1.1725e-13,1.2392e-13,1.3174e-13,1.3427e-13,1.8334e-13,2.2187e-13,4.21e-13,4.3527e-13,4.6547e-13,5.2114e-13,7.9093e-13,1.2169e-12,1.9406e-12,2.2309e-12,2.4238e-12,2.99e-12,4.5546e-12,5.4734e-12,6.9383e-12,9.964e-12,1.3585e-11,1.4362e-11,2.5927e-11,2.8006e-11,2.8805e-11,3.3015e-11,3.4852e-11,5.3564e-11,6.4318e-11,6.7801e-11,6.8165e-11,7.6123e-11,8.83e-11,9.4569e-11,9.7497e-11,1.6572e-10,1.6583e-10,2.6581e-10,4.5259e-10,7.3499e-10,1.1423e-09,1.3799e-09,1.4497e-09,1.6266e-09,1.7981e-09,2.2746e-09,2.334e-09,3.653e-09,4.0867e-09,5.1105e-09,6.7316e-09,7.9459e-09,8.0959e-09,9.2581e-09,1.0126e-08,1.2606e-08,1.741e-08,1.7943e-08,2.0653e-08,2.5749e-08,3.0764e-08,3.102e-08,5.684e-08,6.2678e-08,6.5683e-08,7.4037e-08,7.8771e-08,8.6826e-08,1.0131e-07,1.078e-07,1.1751e-07,1.3492e-07,1.6116e-07,1.9071e-07,1.9398e-07,2.3788e-07,2.7182e-07,3.0555e-07,3.9783e-07,4.4838e-07,4.6823e-07,5.4571e-07,5.5078e-07,5.8884e-07,6.0643e-07,8.9229e-07,9.8424e-07,1.0223e-06,1.215e-06,1.3423e-06,1.3627e-06,1.7166e-06,2.657e-06,3.021e-06,3.2267e-06,3.7588e-06,3.8084e-06,4.5154e-06,4.6e-06,5.717e-06,6.4896e-06,8.351e-06,8.5425e-06,8.7259e-06,8.83e-06,9.1788e-06,9.4729e-06,9.6567e-06,1.181e-05,1.2315e-05,1.8239e-05,2.0767e-05,2.2621e-05,2.3398e-05,3.0895e-05,3.1044e-05,3.3993e-05,3.546e-05,4.3785e-05,4.4076e-05,4.4772e-05,5.2288e-05,5.4569e-05,5.5402e-05,5.8011e-05,6.1554e-05,6.509e-05,6.7003e-05,8.8843e-05,8.9724e-05,0.00010381,0.00012891,0.00015766,0.00020773,0.00020854,0.00022973,0.00025927,0.00030374,0.00030427,0.00032128,0.00041389,0.00043868,0.00044149,0.00059108,0.00062967,0.00065295,0.00072976,0.00081406,0.00099328,0.0010244,0.0011878,0.0016441,0.0016511,0.001695,0.001788,0.0018642,0.0019622,0.0020839,0.0035935,0.0041274,0.0050854,0.0059224,0.0059667,0.0060698,0.0075786,0.0079755,0.0080093,0.0098409,0.013786,0.013931,0.015344,0.015651,0.019443,0.020638,0.023467,0.025071,0.026952,0.027332,0.029748,0.030193,0.030405,0.036687,0.038766,0.039669,0.042727,0.043731,0.048583,0.04975,0.052169,0.058618,0.058682,0.062008,0.063165,0.063167,0.071157,0.071422,0.074953,0.078831,0.08784,0.096634,0.10336,0.1148,0.12622,0.14227,0.14296,0.15634,0.17005,0.17851,0.20263,0.21011,0.22585,0.23552,0.25656,0.25885,0.26361,0.27482,0.29921,0.32552,0.33996,0.35471,0.36253,0.36364,0.37806,0.39506,0.44899,0.4638,0.47202,0.49035,0.49047,0.50872,0.511,0.52348,0.53355,0.56772,0.57269,0.59954,0.62455,0.70525,0.72007,0.72718,0.7456,0.76259,0.76896,0.78155,0.79047,0.80137,0.81897,0.81906,0.84927,0.85696,0.85855,0.85939,0.88712,0.88773,0.89038,0.89236,0.89743,0.9056,0.91267,0.94112,0.98391,0.99158,0.99214,0.99258,0.99395,0.99465,0.99915,1,0.99955,0.99891,0.99667,0.99381,0.99318,0.98747,0.9835,0.97792,0.96734,0.95044,0.94925,0.94273,0.938,0.93582,0.91051,0.90296,0.86551,0.8543,0.83377,0.82239,0.81864,0.79783,0.79508,0.78905,0.77568,0.74958 1,1.6438e-39,3.174e-39,3.2802e-39,3.9987e-39,4.6565e-39,5.6872e-39,8.3788e-39,2.0992e-38,3.7552e-38,4.1057e-38,6.5116e-38,7.0201e-38,9.4627e-38,1.9525e-37,2.4493e-37,2.8667e-37,5.6599e-37,6.3597e-37,7.2367e-37,1.1161e-36,1.1693e-36,1.2009e-36,1.6696e-36,2.0277e-36,2.0405e-36,2.9607e-36,3.0627e-36,3.6225e-36,3.7034e-36,3.7838e-36,1.1784e-35,3.4629e-35,3.816e-35,5.2344e-35,6.9369e-35,8.6292e-35,1.1177e-34,1.509e-34,2.5558e-34,3.4134e-34,5.4575e-34,9.8298e-34,1.0377e-33,1.1644e-33,1.2951e-33,2.2506e-33,2.2524e-33,8.3557e-33,9.2051e-33,9.7133e-33,1.4353e-32,1.477e-32,3.1691e-32,4.2736e-32,4.839e-32,6.3537e-32,7.5525e-32,1.0155e-31,1.113e-31,2.2487e-31,3.4647e-31,1.3367e-30,1.9318e-30,2.1845e-30,2.7216e-30,4.9687e-30,5.6196e-30,6.2677e-30,1.0453e-29,1.6858e-29,2.0112e-29,2.3234e-29,3.9156e-29,8.2877e-29,1.8182e-28,3.0783e-28,3.4368e-28,9.1495e-28,1.2815e-27,1.4991e-27,1.6071e-27,2.1295e-27,6.7415e-27,6.9953e-27,8.544e-27,1.1728e-26,1.2479e-26,1.9584e-26,6.7223e-26,6.8323e-26,9.6527e-26,1.0925e-25,4.4451e-25,6.3097e-25,6.4741e-25,8.8444e-25,1.3476e-24,1.3588e-24,1.4058e-24,1.8109e-24,1.815e-24,2.2822e-24,2.4934e-24,8.7649e-24,1.5145e-23,1.5428e-23,2.8598e-23,3.3719e-23,4.3485e-23,4.92e-23,5.2914e-23,5.7345e-23,5.8868e-23,6.3131e-23,8.3621e-23,8.6397e-23,9.2406e-23,9.7641e-23,1.4781e-22,2.357e-22,4.2805e-22,5.3537e-22,8.5776e-22,1.4476e-21,1.8025e-21,2.0181e-21,6.9648e-21,8.0285e-21,8.9114e-21,1.0955e-20,1.4234e-20,1.7846e-20,2.1434e-20,2.2143e-20,2.26e-20,2.8449e-20,5.1933e-20,5.4275e-20,6.8685e-20,9.8797e-20,1.2067e-19,1.2465e-19,3.872e-19,3.9185e-19,4.8931e-19,7.5402e-19,8.1558e-19,1.092e-18,1.1697e-18,1.8888e-18,2.5776e-18,5.2006e-18,5.2883e-18,1.1698e-17,1.28e-17,1.3173e-17,2.1931e-17,2.2651e-17,2.7194e-17,3.457e-17,3.7255e-17,3.9421e-17,4.9233e-17,5.1075e-17,5.2313e-17,6.2357e-17,6.6305e-17,6.7376e-17,7.7899e-17,8.2068e-17,1.0945e-16,1.7594e-16,1.914e-16,1.9574e-16,2.4171e-16,2.6367e-16,3.7516e-16,6.9305e-16,8.3717e-16,1.1275e-15,1.2574e-15,1.7003e-15,2.2919e-15,2.3482e-15,2.3929e-15,2.3981e-15,2.6179e-15,2.6374e-15,3.4682e-15,3.9309e-15,4.9707e-15,5.0228e-15,5.3508e-15,8.0136e-15,8.1081e-15,9.8164e-15,1.2192e-14,1.7913e-14,1.8838e-14,2.1748e-14,2.2458e-14,2.4353e-14,2.7888e-14,3.4301e-14,3.4495e-14,5.4989e-14,9.3018e-14,9.833e-14,1.0456e-13,1.0658e-13,1.457e-13,1.7646e-13,3.3568e-13,3.471e-13,3.7128e-13,4.1587e-13,6.3222e-13,9.7439e-13,1.5568e-12,1.7907e-12,1.9462e-12,2.403e-12,3.6667e-12,4.4097e-12,5.5955e-12,8.0478e-12,1.0986e-11,1.1618e-11,2.1026e-11,2.272e-11,2.3371e-11,2.6803e-11,2.83e-11,4.3576e-11,5.2366e-11,5.5214e-11,5.5512e-11,6.2023e-11,7.1992e-11,7.7126e-11,7.9524e-11,1.3549e-10,1.3558e-10,2.1778e-10,3.7171e-10,6.0499e-10,9.4217e-10,1.1392e-09,1.1971e-09,1.3438e-09,1.4863e-09,1.8822e-09,1.9316e-09,3.0297e-09,3.3912e-09,4.2453e-09,5.5995e-09,6.615e-09,6.7405e-09,7.7132e-09,8.4401e-09,1.0518e-08,1.455e-08,1.4998e-08,1.7275e-08,2.1562e-08,2.5785e-08,2.6001e-08,4.7791e-08,5.2727e-08,5.5267e-08,6.2336e-08,6.6343e-08,7.3164e-08,8.5442e-08,9.094e-08,9.9175e-08,1.1395e-07,1.3625e-07,1.6138e-07,1.6416e-07,2.0153e-07,2.3046e-07,2.5921e-07,3.3799e-07,3.8119e-07,3.9816e-07,4.6444e-07,4.6878e-07,5.0136e-07,5.1642e-07,7.6151e-07,8.4045e-07,8.7318e-07,1.0388e-06,1.1483e-06,1.1658e-06,1.4705e-06,2.2819e-06,2.5965e-06,2.7744e-06,3.2349e-06,3.2778e-06,3.8903e-06,3.9636e-06,4.9326e-06,5.6036e-06,7.222e-06,7.3886e-06,7.5483e-06,7.6389e-06,7.9425e-06,8.1987e-06,8.3587e-06,1.0236e-05,1.0676e-05,1.5851e-05,1.8063e-05,1.9687e-05,2.0368e-05,2.6942e-05,2.7073e-05,2.9662e-05,3.0951e-05,3.8271e-05,3.8527e-05,3.914e-05,4.5758e-05,4.7768e-05,4.8502e-05,5.0802e-05,5.3926e-05,5.7046e-05,5.8734e-05,7.803e-05,7.8809e-05,9.1273e-05,0.00011352,0.00013903,0.00018355,0.00018427,0.00020314,0.00022946,0.00026913,0.00026961,0.0002848,0.00036758,0.00038978,0.0003923,0.00052639,0.00056104,0.00058195,0.00065097,0.0007268,0.00088821,0.0009163,0.0010637,0.0014762,0.0014826,0.0015224,0.0016066,0.0016757,0.0017645,0.001875,0.0032486,0.0037359,0.0046117,0.0053784,0.005419,0.0055135,0.0068986,0.0072634,0.0072945,0.0089806,0.012623,0.012758,0.014065,0.01435,0.017868,0.018978,0.021609,0.023103,0.024856,0.02521,0.027466,0.02788,0.028079,0.033954,0.0359,0.036747,0.039615,0.040556,0.045114,0.046211,0.048486,0.054559,0.054619,0.057755,0.058846,0.058848,0.066394,0.066644,0.069983,0.073653,0.082189,0.090537,0.096929,0.10782,0.1187,0.13404,0.1347,0.14751,0.16065,0.16879,0.19199,0.1992,0.21439,0.22373,0.24409,0.24631,0.25092,0.26179,0.28548,0.3111,0.32519,0.33959,0.34723,0.34832,0.36243,0.37909,0.4321,0.4467,0.45481,0.47292,0.47304,0.49109,0.49335,0.50572,0.51571,0.54967,0.55461,0.58139,0.60639,0.68752,0.7025,0.70968,0.72836,0.74563,0.75212,0.76495,0.77405,0.78521,0.80326,0.80335,0.83449,0.84244,0.84409,0.84496,0.87383,0.87446,0.87723,0.87931,0.88462,0.8932,0.90066,0.93094,0.97818,0.98728,0.98797,0.98852,0.99023,0.99112,0.99748,0.99955,1,0.99986,0.99866,0.99668,0.99622,0.99174,0.98844,0.98369,0.97439,0.95913,0.95804,0.95205,0.94768,0.94566,0.92198,0.91485,0.87916,0.86839,0.84858,0.83755,0.83393,0.81368,0.81101,0.80512,0.79206,0.76647 1,1.3138e-39,2.5388e-39,2.6239e-39,3.1994e-39,3.7265e-39,4.5524e-39,6.7102e-39,1.6831e-38,3.0131e-38,3.2947e-38,5.2286e-38,5.6374e-38,7.6017e-38,1.57e-37,1.97e-37,2.3063e-37,4.5573e-37,5.1216e-37,5.8288e-37,8.995e-37,9.4237e-37,9.6794e-37,1.3463e-36,1.6354e-36,1.6458e-36,2.3891e-36,2.4715e-36,2.9239e-36,2.9893e-36,3.0542e-36,9.5261e-36,2.8034e-35,3.0897e-35,4.2399e-35,5.621e-35,6.9944e-35,9.0623e-35,1.224e-34,2.0746e-34,2.7718e-34,4.4345e-34,7.9937e-34,8.4392e-34,9.4714e-34,1.0536e-33,1.8322e-33,1.8338e-33,6.8149e-33,7.5086e-33,7.9238e-33,1.1715e-32,1.2056e-32,2.5895e-32,3.4934e-32,3.9563e-32,5.1967e-32,6.1787e-32,8.3109e-32,9.1104e-32,1.8425e-31,2.8406e-31,1.098e-30,1.5877e-30,1.7957e-30,2.2378e-30,4.0891e-30,4.6256e-30,5.1599e-30,8.6119e-30,1.3898e-29,1.6585e-29,1.9164e-29,3.2321e-29,6.8486e-29,1.5042e-28,2.5487e-28,2.846e-28,7.5878e-28,1.0633e-27,1.2442e-27,1.3339e-27,1.7683e-27,5.6077e-27,5.8192e-27,7.1097e-27,9.7637e-27,1.039e-26,1.6317e-26,5.6116e-26,5.7036e-26,8.0624e-26,9.127e-26,3.7217e-25,5.2858e-25,5.4238e-25,7.4131e-25,1.1303e-24,1.1397e-24,1.1792e-24,1.5196e-24,1.523e-24,1.9158e-24,2.0934e-24,7.3737e-24,1.2753e-23,1.2991e-23,2.4106e-23,2.843e-23,3.6679e-23,4.1508e-23,4.4646e-23,4.8392e-23,4.9679e-23,5.3283e-23,7.061e-23,7.2957e-23,7.8041e-23,8.247e-23,1.2493e-22,1.9937e-22,3.6244e-22,4.5347e-22,7.2713e-22,1.2282e-21,1.53e-21,1.7133e-21,5.9254e-21,6.8321e-21,7.5848e-21,9.3277e-21,1.2125e-20,1.5208e-20,1.8272e-20,1.8877e-20,1.9267e-20,2.4263e-20,4.434e-20,4.6343e-20,5.8671e-20,8.4448e-20,1.0318e-19,1.0659e-19,3.3178e-19,3.3578e-19,4.1945e-19,6.4689e-19,6.998e-19,9.3747e-19,1.0043e-18,1.6232e-18,2.2164e-18,4.4777e-18,4.5534e-18,1.0087e-17,1.104e-17,1.1362e-17,1.8934e-17,1.9557e-17,2.3488e-17,2.9872e-17,3.2197e-17,3.4073e-17,4.2571e-17,4.4168e-17,4.524e-17,5.3945e-17,5.7367e-17,5.8295e-17,6.7419e-17,7.1035e-17,9.479e-17,1.5251e-16,1.6594e-16,1.6971e-16,2.0965e-16,2.2874e-16,3.2569e-16,6.0241e-16,7.2795e-16,9.8097e-16,1.0943e-15,1.4806e-15,1.9969e-15,2.0462e-15,2.0852e-15,2.0897e-15,2.2816e-15,2.2986e-15,3.0245e-15,3.4289e-15,4.3379e-15,4.3835e-15,4.6703e-15,7.0004e-15,7.0831e-15,8.5789e-15,1.0659e-14,1.5674e-14,1.6486e-14,1.9038e-14,1.9661e-14,2.1324e-14,2.4426e-14,3.0056e-14,3.0226e-14,4.8232e-14,8.1681e-14,8.6356e-14,9.1838e-14,9.3613e-14,1.2807e-13,1.5516e-13,2.9559e-13,3.0567e-13,3.2702e-13,3.6639e-13,5.5751e-13,8.6008e-13,1.3756e-12,1.5828e-12,1.7206e-12,2.1254e-12,3.2463e-12,3.9059e-12,4.9589e-12,7.1382e-12,9.7519e-12,1.0314e-11,1.8692e-11,2.0202e-11,2.0782e-11,2.3841e-11,2.5177e-11,3.8807e-11,4.6656e-11,4.92e-11,4.9466e-11,5.5283e-11,6.4191e-11,6.8781e-11,7.0925e-11,1.21e-10,1.2108e-10,1.9472e-10,3.328e-10,5.4233e-10,8.4556e-10,1.0229e-09,1.075e-09,1.2072e-09,1.3355e-09,1.6923e-09,1.7368e-09,2.7274e-09,3.0538e-09,3.8252e-09,5.0492e-09,5.9676e-09,6.0811e-09,6.9612e-09,7.6191e-09,9.501e-09,1.3155e-08,1.356e-08,1.5626e-08,1.9516e-08,2.3349e-08,2.3545e-08,4.3353e-08,4.7844e-08,5.0157e-08,5.6591e-08,6.024e-08,6.6453e-08,7.764e-08,8.2651e-08,9.0158e-08,1.0364e-07,1.2397e-07,1.4692e-07,1.4946e-07,1.836e-07,2.1003e-07,2.3632e-07,3.0839e-07,3.4794e-07,3.6348e-07,4.2419e-07,4.2817e-07,4.5802e-07,4.7182e-07,6.9659e-07,7.6904e-07,7.9909e-07,9.5117e-07,1.0518e-06,1.0679e-06,1.348e-06,2.0948e-06,2.3846e-06,2.5485e-06,2.973e-06,3.0126e-06,3.5776e-06,3.6452e-06,4.5397e-06,5.1595e-06,6.6555e-06,6.8096e-06,6.9573e-06,7.0411e-06,7.3219e-06,7.5588e-06,7.7069e-06,9.4442e-06,9.8521e-06,1.4648e-05,1.67e-05,1.8207e-05,1.8839e-05,2.4945e-05,2.5067e-05,2.7473e-05,2.8671e-05,3.548e-05,3.5718e-05,3.6288e-05,4.2449e-05,4.4321e-05,4.5004e-05,4.7146e-05,5.0057e-05,5.2965e-05,5.4538e-05,7.2534e-05,7.3261e-05,8.4896e-05,0.00010568,0.00012953,0.0001712,0.00017188,0.00018955,0.00021422,0.00025142,0.00025186,0.00026611,0.00034383,0.00036469,0.00036705,0.00049314,0.00052573,0.00054542,0.00061041,0.00068184,0.00083401,0.00086051,0.00099964,0.0013894,0.0013954,0.001433,0.0015127,0.001578,0.0016621,0.0017666,0.003069,0.0035318,0.0043645,0.0050941,0.0051327,0.0052227,0.0065424,0.0068903,0.0069199,0.008529,0.012011,0.01214,0.013392,0.013664,0.017036,0.0181,0.020626,0.022061,0.023746,0.024086,0.026255,0.026654,0.026845,0.032501,0.034376,0.035193,0.037958,0.038866,0.043264,0.044324,0.046521,0.05239,0.052448,0.055481,0.056537,0.056539,0.063843,0.064086,0.06732,0.070877,0.079156,0.087259,0.093469,0.10405,0.11465,0.1296,0.13023,0.14273,0.15557,0.16351,0.18621,0.19326,0.20814,0.21731,0.23728,0.23946,0.24399,0.25467,0.27797,0.30319,0.31708,0.33128,0.33882,0.33989,0.35383,0.37029,0.42276,0.43723,0.44528,0.46325,0.46338,0.48131,0.48355,0.49585,0.50579,0.53961,0.54454,0.57125,0.59623,0.67752,0.69257,0.6998,0.7186,0.73601,0.74256,0.75552,0.76472,0.776,0.79428,0.79438,0.826,0.8341,0.83577,0.83666,0.86613,0.86678,0.86962,0.87174,0.87718,0.88599,0.89366,0.92492,0.97461,0.9845,0.98526,0.98587,0.98777,0.98877,0.99615,0.99891,0.99986,1,0.99939,0.99791,0.99753,0.99374,0.99083,0.98654,0.97798,0.96365,0.96262,0.95693,0.95277,0.95084,0.9281,0.92121,0.88655,0.87603,0.85664,0.84584,0.84227,0.82237,0.81974,0.81394,0.80106,0.77579 1,8.2195e-40,1.5911e-39,1.6446e-39,2.0063e-39,2.3378e-39,2.8575e-39,4.2162e-39,1.0601e-38,1.9008e-38,2.0789e-38,3.3032e-38,3.5622e-38,4.8072e-38,9.9478e-38,1.249e-37,1.4628e-37,2.8959e-37,3.2555e-37,3.7064e-37,5.7263e-37,6e-37,6.1633e-37,8.5801e-37,1.0428e-36,1.0494e-36,1.525e-36,1.5777e-36,1.8674e-36,1.9093e-36,1.9509e-36,6.1038e-36,1.8016e-35,1.9861e-35,2.7279e-35,3.6194e-35,4.5064e-35,5.843e-35,7.8986e-35,1.3407e-34,1.7928e-34,2.872e-34,5.1857e-34,5.4756e-34,6.1473e-34,6.8403e-34,1.1914e-33,1.1924e-33,4.4481e-33,4.9023e-33,5.1741e-33,7.6581e-33,7.8821e-33,1.6967e-32,2.291e-32,2.5955e-32,3.4119e-32,4.0587e-32,5.4641e-32,5.9913e-32,1.2142e-31,1.8743e-31,7.2742e-31,1.053e-30,1.1914e-30,1.4857e-30,2.7197e-30,3.0776e-30,3.4342e-30,5.7407e-30,9.2778e-30,1.1077e-29,1.2805e-29,2.1632e-29,4.5942e-29,1.0115e-28,1.7167e-28,1.9176e-28,5.1282e-28,7.1939e-28,8.4219e-28,9.0314e-28,1.1983e-27,3.814e-27,3.9583e-27,4.8392e-27,6.6523e-27,7.0805e-27,1.1136e-26,3.845e-26,3.9082e-26,5.5308e-26,6.2636e-26,2.5659e-25,3.6485e-25,3.744e-25,5.1226e-25,7.8213e-25,7.8868e-25,8.161e-25,1.0526e-24,1.055e-24,1.3281e-24,1.4516e-24,5.1348e-24,8.8971e-24,9.0638e-24,1.6854e-23,1.9889e-23,2.5682e-23,2.9076e-23,3.1282e-23,3.3916e-23,3.4821e-23,3.7356e-23,4.9552e-23,5.1206e-23,5.4786e-23,5.7906e-23,8.7848e-23,1.4042e-22,2.5581e-22,3.2031e-22,5.1448e-22,8.7062e-22,1.0854e-21,1.2159e-21,4.2241e-21,4.873e-21,5.4119e-21,6.6605e-21,8.6661e-21,1.0879e-20,1.3079e-20,1.3514e-20,1.3795e-20,1.7386e-20,3.1843e-20,3.3287e-20,4.2179e-20,6.0793e-20,7.4334e-20,7.6798e-20,2.4008e-19,2.4298e-19,3.0379e-19,4.6928e-19,5.0782e-19,6.8105e-19,7.298e-19,1.1817e-18,1.6155e-18,3.2728e-18,3.3283e-18,7.3964e-18,8.0976e-18,8.3348e-18,1.3918e-17,1.4378e-17,1.728e-17,2.1998e-17,2.3718e-17,2.5105e-17,3.1395e-17,3.2577e-17,3.3371e-17,3.9821e-17,4.2357e-17,4.3045e-17,4.9812e-17,5.2494e-17,7.0131e-17,1.1306e-16,1.2306e-16,1.2586e-16,1.5562e-16,1.6985e-16,2.4219e-16,4.4912e-16,5.4314e-16,7.3284e-16,8.1788e-16,1.108e-15,1.4963e-15,1.5334e-15,1.5627e-15,1.5662e-15,1.7106e-15,1.7234e-15,2.2703e-15,2.5752e-15,3.2613e-15,3.2957e-15,3.5123e-15,5.2738e-15,5.3364e-15,6.4687e-15,8.0451e-15,1.185e-14,1.2466e-14,1.4405e-14,1.4879e-14,1.6143e-14,1.8502e-14,2.2788e-14,2.2918e-14,3.6646e-14,6.2207e-14,6.5784e-14,6.9979e-14,7.1338e-14,9.7733e-14,1.1852e-13,2.2644e-13,2.342e-13,2.5063e-13,2.8095e-13,4.2834e-13,6.6216e-13,1.0614e-12,1.2221e-12,1.329e-12,1.6433e-12,2.5151e-12,3.0288e-12,3.8498e-12,5.5515e-12,7.5958e-12,8.0356e-12,1.4606e-11,1.5792e-11,1.6248e-11,1.8653e-11,1.9703e-11,3.0436e-11,3.6626e-11,3.8633e-11,3.8843e-11,4.3436e-11,5.0473e-11,5.4101e-11,5.5797e-11,9.5452e-11,9.5515e-11,1.5399e-10,2.6393e-10,4.3122e-10,6.7393e-10,8.1609e-10,8.579e-10,9.64e-10,1.067e-09,1.3539e-09,1.3897e-09,2.1878e-09,2.4512e-09,3.0743e-09,4.0643e-09,4.8082e-09,4.9001e-09,5.6136e-09,6.1474e-09,7.6755e-09,1.0647e-08,1.0978e-08,1.266e-08,1.5832e-08,1.8962e-08,1.9122e-08,3.5338e-08,3.9021e-08,4.0919e-08,4.6202e-08,4.92e-08,5.4306e-08,6.3509e-08,6.7633e-08,7.3817e-08,8.4924e-08,1.017e-07,1.2065e-07,1.2275e-07,1.5099e-07,1.7287e-07,1.9466e-07,2.5445e-07,2.873e-07,3.0022e-07,3.5071e-07,3.5402e-07,3.7887e-07,3.9036e-07,5.7778e-07,6.3829e-07,6.634e-07,7.9057e-07,8.7476e-07,8.8826e-07,1.123e-06,1.7504e-06,1.9943e-06,2.1324e-06,2.4903e-06,2.5236e-06,3.0005e-06,3.0576e-06,3.8138e-06,4.3384e-06,5.6065e-06,5.7372e-06,5.8626e-06,5.9337e-06,6.1721e-06,6.3733e-06,6.4991e-06,7.9758e-06,8.3228e-06,1.241e-05,1.4162e-05,1.5451e-05,1.5991e-05,2.1219e-05,2.1323e-05,2.3387e-05,2.4415e-05,3.0262e-05,3.0467e-05,3.0957e-05,3.6257e-05,3.7868e-05,3.8457e-05,4.0302e-05,4.2811e-05,4.5317e-05,4.6674e-05,6.2216e-05,6.2845e-05,7.2912e-05,9.0922e-05,0.00011163,0.00014789,0.00014848,0.00016388,0.0001854,0.00021789,0.00021828,0.00023074,0.00029879,0.00031708,0.00031915,0.00042991,0.00045859,0.00047592,0.00053317,0.00059617,0.00073058,0.000754,0.00087715,0.001223,0.0012283,0.0012617,0.0013326,0.0013907,0.0014656,0.0015586,0.0027228,0.0031379,0.0038864,0.0045436,0.0045784,0.0046596,0.0058514,0.006166,0.0061928,0.0076508,0.010817,0.010934,0.012076,0.012325,0.015407,0.016382,0.018698,0.020016,0.021565,0.021878,0.023874,0.024242,0.024418,0.029637,0.031371,0.032126,0.034686,0.035527,0.039606,0.04059,0.042631,0.048091,0.048145,0.050971,0.051955,0.051957,0.058774,0.059001,0.062025,0.065353,0.07311,0.080718,0.086558,0.096528,0.10653,0.12067,0.12127,0.13313,0.14532,0.15288,0.17453,0.18127,0.19551,0.20429,0.22346,0.22556,0.22992,0.2402,0.26266,0.28706,0.30051,0.31429,0.32162,0.32266,0.33622,0.35225,0.40353,0.41773,0.42563,0.44329,0.44342,0.46107,0.46329,0.47542,0.48524,0.51871,0.5236,0.55014,0.57502,0.65651,0.67169,0.67899,0.69801,0.71567,0.72233,0.73552,0.7449,0.75643,0.77516,0.77526,0.80782,0.8162,0.81793,0.81885,0.84951,0.85018,0.85315,0.85538,0.86108,0.87033,0.87841,0.91166,0.96631,0.97782,0.97873,0.97946,0.98176,0.98298,0.99248,0.99667,0.99866,0.99939,1,0.99956,0.99938,0.99703,0.99494,0.99164,0.98463,0.97227,0.97137,0.96633,0.96261,0.96088,0.94015,0.93379,0.90135,0.89141,0.87295,0.86261,0.8592,0.84006,0.83752,0.83192,0.81946,0.7949 1,5.512e-40,1.0686e-39,1.1045e-39,1.3481e-39,1.5714e-39,1.9215e-39,2.8377e-39,7.1498e-39,1.2836e-38,1.4042e-38,2.2335e-38,2.4091e-38,3.2533e-38,6.7434e-38,8.4711e-38,9.9246e-38,1.9679e-37,2.2128e-37,2.52e-37,3.8973e-37,4.084e-37,4.1954e-37,5.845e-37,7.1071e-37,7.1524e-37,1.0403e-36,1.0763e-36,1.2744e-36,1.303e-36,1.3315e-36,4.1771e-36,1.236e-35,1.363e-35,1.8734e-35,2.4873e-35,3.0985e-35,4.0199e-35,5.438e-35,9.2423e-35,1.2367e-34,1.9834e-34,3.5863e-34,3.7873e-34,4.2531e-34,4.7338e-34,8.2562e-34,8.2632e-34,3.0923e-33,3.4088e-33,3.5983e-33,5.3309e-33,5.4872e-33,1.1834e-32,1.5991e-32,1.8122e-32,2.3838e-32,2.8369e-32,3.822e-32,4.1918e-32,8.51e-32,1.3151e-31,5.1213e-31,7.4203e-31,8.3982e-31,1.0479e-30,1.9212e-30,2.1747e-30,2.4274e-30,4.0629e-30,6.5744e-30,7.8532e-30,9.0817e-30,1.5362e-29,3.2691e-29,7.2123e-29,1.2257e-28,1.3696e-28,3.6723e-28,5.156e-28,6.0387e-28,6.477e-28,8.6002e-28,2.7458e-27,2.85e-27,3.4861e-27,4.7965e-27,5.1061e-27,8.0402e-27,2.7856e-26,2.8316e-26,4.0109e-26,4.544e-26,1.8688e-25,2.6598e-25,2.7297e-25,3.7381e-25,5.7141e-25,5.7621e-25,5.963e-25,7.6964e-25,7.714e-25,9.7172e-25,1.0624e-24,3.7716e-24,6.5454e-24,6.6684e-24,1.2422e-23,1.4666e-23,1.8952e-23,2.1464e-23,2.3098e-23,2.5049e-23,2.5719e-23,2.7597e-23,3.6637e-23,3.7863e-23,4.0519e-23,4.2834e-23,6.5062e-23,1.0414e-22,1.9006e-22,2.3814e-22,3.8304e-22,6.4923e-22,8.0992e-22,9.0763e-22,3.1651e-21,3.6529e-21,4.0582e-21,4.9977e-21,6.5079e-21,8.1751e-21,9.8345e-21,1.0163e-20,1.0374e-20,1.3085e-20,2.401e-20,2.5102e-20,3.1832e-20,4.5932e-20,5.6199e-20,5.8068e-20,1.8219e-19,1.844e-19,2.3071e-19,3.5689e-19,3.863e-19,5.1857e-19,5.5581e-19,9.0141e-19,1.2336e-18,2.5049e-18,2.5475e-18,5.6764e-18,6.2164e-18,6.3991e-18,1.0704e-17,1.1059e-17,1.3299e-17,1.6945e-17,1.8274e-17,1.9346e-17,2.4212e-17,2.5127e-17,2.5741e-17,3.0735e-17,3.27e-17,3.3232e-17,3.8476e-17,4.0555e-17,5.4235e-17,8.7577e-17,9.5349e-17,9.7531e-17,1.2068e-16,1.3176e-16,1.8811e-16,3.4958e-16,4.2305e-16,5.7141e-16,6.3797e-16,8.6523e-16,1.1697e-15,1.1988e-15,1.2218e-15,1.2245e-15,1.3379e-15,1.3479e-15,1.7774e-15,2.0171e-15,2.5566e-15,2.5837e-15,2.7541e-15,4.1416e-15,4.1909e-15,5.0837e-15,6.3277e-15,9.3337e-15,9.8211e-15,1.1355e-14,1.1729e-14,1.273e-14,1.4598e-14,1.7993e-14,1.8096e-14,2.8987e-14,4.9305e-14,5.2151e-14,5.549e-14,5.6571e-14,7.7597e-14,9.4166e-14,1.8037e-13,1.8658e-13,1.9972e-13,2.2398e-13,3.4205e-13,5.2967e-13,8.5065e-13,9.7996e-13,1.0661e-12,1.3193e-12,2.0227e-12,2.4376e-12,3.1015e-12,4.4792e-12,6.1366e-12,6.4934e-12,1.1833e-11,1.2797e-11,1.3168e-11,1.5126e-11,1.5982e-11,2.4733e-11,2.9787e-11,3.1427e-11,3.1598e-11,3.5351e-11,4.1105e-11,4.4073e-11,4.546e-11,7.7952e-11,7.8003e-11,1.2602e-10,2.1651e-10,3.5453e-10,5.5521e-10,6.7291e-10,7.0755e-10,7.9548e-10,8.8093e-10,1.119e-09,1.1488e-09,1.8123e-09,2.0315e-09,2.5507e-09,3.3766e-09,3.9978e-09,4.0746e-09,4.671e-09,5.1174e-09,6.3963e-09,8.887e-09,9.1641e-09,1.0576e-08,1.3241e-08,1.5873e-08,1.6007e-08,2.9673e-08,3.2783e-08,3.4385e-08,3.8849e-08,4.1382e-08,4.5701e-08,5.3488e-08,5.6981e-08,6.2218e-08,7.1632e-08,8.5866e-08,1.0196e-07,1.0374e-07,1.2774e-07,1.4636e-07,1.6491e-07,2.1588e-07,2.4391e-07,2.5494e-07,2.9807e-07,3.0089e-07,3.2213e-07,3.3195e-07,4.924e-07,5.4427e-07,5.658e-07,6.7493e-07,7.4722e-07,7.5882e-07,9.6063e-07,1.5011e-06,1.7116e-06,1.8308e-06,2.14e-06,2.1689e-06,2.5813e-06,2.6308e-06,3.2857e-06,3.7405e-06,4.8413e-06,4.9549e-06,5.0638e-06,5.1256e-06,5.3328e-06,5.5077e-06,5.6171e-06,6.902e-06,7.2042e-06,1.0769e-05,1.23e-05,1.3426e-05,1.3898e-05,1.8475e-05,1.8567e-05,2.0375e-05,2.1277e-05,2.641e-05,2.659e-05,2.702e-05,3.1679e-05,3.3096e-05,3.3614e-05,3.5238e-05,3.7446e-05,3.9654e-05,4.0849e-05,5.4557e-05,5.5112e-05,6.4005e-05,7.9935e-05,9.8282e-05,0.00013046,0.00013098,0.00014467,0.00016381,0.00019275,0.00019309,0.0002042,0.00026493,0.00028126,0.00028311,0.00038222,0.00040792,0.00042345,0.0004748,0.00053136,0.00065218,0.00067327,0.00078416,0.0010962,0.0011011,0.0011313,0.0011953,0.0012479,0.0013156,0.0013999,0.0024571,0.0028352,0.0035181,0.0041188,0.0041507,0.0042249,0.0053166,0.0056053,0.0056298,0.0069692,0.0098864,0.0099947,0.011049,0.011279,0.014132,0.015035,0.017185,0.01841,0.01985,0.020142,0.022,0.022343,0.022507,0.027376,0.028996,0.029702,0.032096,0.032884,0.036706,0.037629,0.039544,0.044673,0.044724,0.047381,0.048307,0.048309,0.054731,0.054945,0.057797,0.060939,0.068271,0.075473,0.081009,0.090474,0.099984,0.11346,0.11403,0.12535,0.13701,0.14425,0.16502,0.17149,0.1852,0.19365,0.21215,0.21418,0.21839,0.22833,0.25008,0.27376,0.28683,0.30025,0.30739,0.3084,0.32163,0.33729,0.38751,0.40145,0.40922,0.4266,0.42672,0.44412,0.44631,0.45828,0.46798,0.50111,0.50595,0.5323,0.55706,0.63855,0.65381,0.66116,0.68032,0.69816,0.70489,0.71825,0.72777,0.73947,0.75854,0.75864,0.79192,0.80051,0.80229,0.80324,0.83483,0.83552,0.8386,0.8409,0.8468,0.85641,0.86482,0.89967,0.95839,0.97125,0.97228,0.97312,0.97574,0.97714,0.98842,0.99381,0.99668,0.99791,0.99956,1,0.99998,0.99888,0.99748,0.99503,0.98936,0.97872,0.97793,0.97345,0.97012,0.96856,0.94961,0.94371,0.91325,0.90381,0.8862,0.87629,0.87301,0.85456,0.85211,0.84669,0.83462,0.81072 1,5.1167e-40,9.9221e-40,1.0256e-39,1.2519e-39,1.4593e-39,1.7847e-39,2.636e-39,6.6442e-39,1.1931e-38,1.3053e-38,2.0765e-38,2.2398e-38,3.0251e-38,6.2723e-38,7.8801e-38,9.2329e-38,1.8312e-37,2.0593e-37,2.3453e-37,3.6278e-37,3.8017e-37,3.9054e-37,5.4417e-37,6.6173e-37,6.6595e-37,9.6872e-37,1.0023e-36,1.1869e-36,1.2136e-36,1.2401e-36,3.8922e-36,1.1523e-35,1.2707e-35,1.7468e-35,2.3194e-35,2.8897e-35,3.7494e-35,5.0728e-35,8.6236e-35,1.1541e-34,1.8512e-34,3.3483e-34,3.536e-34,3.971e-34,4.4201e-34,7.711e-34,7.7175e-34,2.8898e-33,3.1858e-33,3.3629e-33,4.9831e-33,5.1292e-33,1.1066e-32,1.4955e-32,1.6949e-32,2.2298e-32,2.6538e-32,3.5759e-32,3.922e-32,7.9648e-32,1.2311e-31,4.7972e-31,6.952e-31,7.8686e-31,9.819e-31,1.8007e-30,2.0385e-30,2.2754e-30,3.8095e-30,6.1658e-30,7.3658e-30,8.5186e-30,1.4413e-29,3.0683e-29,6.7719e-29,1.1512e-28,1.2864e-28,3.4508e-28,4.8459e-28,5.6759e-28,6.088e-28,8.0849e-28,2.5828e-27,2.6808e-27,3.2795e-27,4.5129e-27,4.8044e-27,7.5669e-27,2.6233e-26,2.6666e-26,3.7779e-26,4.2802e-26,1.7616e-25,2.5077e-25,2.5736e-25,3.5249e-25,5.3896e-25,5.4348e-25,5.6244e-25,7.2604e-25,7.277e-25,9.1678e-25,1.0023e-24,3.5609e-24,6.1816e-24,6.2978e-24,1.1736e-23,1.3857e-23,1.7909e-23,2.0284e-23,2.1829e-23,2.3673e-23,2.4307e-23,2.6083e-23,3.4633e-23,3.5793e-23,3.8304e-23,4.0494e-23,6.1522e-23,9.8501e-23,1.7982e-22,2.2535e-22,3.6255e-22,6.1469e-22,7.6692e-22,8.595e-22,2.9994e-21,3.4619e-21,3.8463e-21,4.7373e-21,6.1697e-21,7.7513e-21,9.3256e-21,9.637e-21,9.8376e-21,1.241e-20,2.278e-20,2.3816e-20,3.0205e-20,4.3595e-20,5.3345e-20,5.512e-20,1.7305e-19,1.7516e-19,2.1918e-19,3.3914e-19,3.671e-19,4.9289e-19,5.2831e-19,8.5706e-19,1.1731e-18,2.3831e-18,2.4237e-18,5.4031e-18,5.9175e-18,6.0915e-18,1.0193e-17,1.0531e-17,1.2666e-17,1.614e-17,1.7407e-17,1.8429e-17,2.3068e-17,2.394e-17,2.4526e-17,2.9287e-17,3.116e-17,3.1668e-17,3.6668e-17,3.8651e-17,5.1698e-17,8.3506e-17,9.0922e-17,9.3004e-17,1.1509e-16,1.2567e-16,1.7945e-16,3.3363e-16,4.038e-16,5.4552e-16,6.091e-16,8.2625e-16,1.1172e-15,1.145e-15,1.167e-15,1.1696e-15,1.2779e-15,1.2876e-15,1.6981e-15,1.9273e-15,2.4432e-15,2.4691e-15,2.6321e-15,3.9591e-15,4.0063e-15,4.8605e-15,6.0507e-15,8.9275e-15,9.394e-15,1.0862e-14,1.1221e-14,1.2178e-14,1.3967e-14,1.7218e-14,1.7316e-14,2.7747e-14,4.7214e-14,4.9941e-14,5.3141e-14,5.4178e-14,7.433e-14,9.0215e-14,1.7288e-13,1.7883e-13,1.9144e-13,2.1471e-13,3.28e-13,5.0808e-13,8.1626e-13,9.4044e-13,1.0231e-12,1.2664e-12,1.9422e-12,2.3409e-12,2.979e-12,4.3035e-12,5.8973e-12,6.2404e-12,1.1377e-11,1.2305e-11,1.2662e-11,1.4546e-11,1.537e-11,2.3794e-11,2.866e-11,3.024e-11,3.0405e-11,3.4019e-11,3.9561e-11,4.242e-11,4.3756e-11,7.5063e-11,7.5112e-11,1.214e-10,2.0866e-10,3.4182e-10,5.355e-10,6.4913e-10,6.8258e-10,7.6748e-10,8.5e-10,1.0799e-09,1.1087e-09,1.7497e-09,1.9616e-09,2.4634e-09,3.2619e-09,3.8625e-09,3.9368e-09,4.5136e-09,4.9453e-09,6.1825e-09,8.5925e-09,8.8605e-09,1.0227e-08,1.2806e-08,1.5355e-08,1.5485e-08,2.8721e-08,3.1734e-08,3.3287e-08,3.7612e-08,4.0068e-08,4.4253e-08,5.1802e-08,5.5187e-08,6.0265e-08,6.9393e-08,8.3197e-08,9.8805e-08,1.0054e-07,1.2382e-07,1.4189e-07,1.5989e-07,2.0936e-07,2.3657e-07,2.4728e-07,2.8916e-07,2.919e-07,3.1253e-07,3.2207e-07,4.7793e-07,5.2833e-07,5.4925e-07,6.553e-07,7.2557e-07,7.3685e-07,9.3304e-07,1.4587e-06,1.6635e-06,1.7794e-06,2.0803e-06,2.1084e-06,2.5098e-06,2.558e-06,3.1955e-06,3.6384e-06,4.7105e-06,4.8211e-06,4.9272e-06,4.9874e-06,5.1893e-06,5.3597e-06,5.4662e-06,6.7182e-06,7.0127e-06,1.0488e-05,1.198e-05,1.3078e-05,1.3539e-05,1.8004e-05,1.8093e-05,1.9858e-05,2.0738e-05,2.5747e-05,2.5923e-05,2.6343e-05,3.0891e-05,3.2274e-05,3.278e-05,3.4365e-05,3.6522e-05,3.8677e-05,3.9845e-05,5.3235e-05,5.3777e-05,6.2466e-05,7.8036e-05,9.5972e-05,0.00012744,0.00012795,0.00014134,0.00016007,0.00018838,0.00018872,0.00019959,0.00025904,0.00027503,0.00027685,0.00037391,0.00039909,0.00041431,0.00046463,0.00052005,0.0006385,0.00065917,0.00076791,0.001074,0.0010788,0.0011084,0.0011713,0.0012229,0.0012894,0.0013721,0.0024104,0.0027819,0.0034532,0.0040439,0.0040752,0.0041483,0.0052222,0.0055062,0.0055304,0.0068486,0.0097214,0.0098281,0.010867,0.011094,0.013905,0.014796,0.016916,0.018124,0.019544,0.019832,0.021666,0.022004,0.022166,0.026972,0.028572,0.029269,0.031634,0.032412,0.036187,0.037099,0.038991,0.04406,0.04411,0.046738,0.047653,0.047655,0.054005,0.054217,0.057038,0.060145,0.0674,0.074528,0.080009,0.089382,0.098803,0.11215,0.11272,0.12394,0.13551,0.14269,0.16329,0.16972,0.18332,0.19172,0.21009,0.2121,0.21628,0.22616,0.24778,0.27133,0.28433,0.29768,0.30478,0.30579,0.31895,0.33454,0.38456,0.39845,0.40619,0.42352,0.42364,0.44099,0.44317,0.45512,0.46479,0.49785,0.50269,0.529,0.55373,0.6352,0.65047,0.65783,0.67702,0.69488,0.70162,0.71501,0.72455,0.73629,0.75541,0.75552,0.78892,0.79755,0.79934,0.80029,0.83204,0.83274,0.83584,0.83815,0.84409,0.85376,0.86223,0.89737,0.95683,0.96994,0.97099,0.97184,0.97453,0.97596,0.98757,0.99318,0.99622,0.99753,0.99938,0.99998,1,0.99913,0.99786,0.99556,0.99015,0.97983,0.97905,0.97469,0.97143,0.9699,0.95129,0.94548,0.9154,0.90605,0.8886,0.87877,0.87552,0.8572,0.85477,0.84939,0.83739,0.81362 1,2.914e-40,5.6624e-40,5.8536e-40,7.1495e-40,8.3381e-40,1.0203e-39,1.5089e-39,3.8143e-39,6.8624e-39,7.5095e-39,1.1964e-38,1.2908e-38,1.745e-38,3.6266e-38,4.5596e-38,5.345e-38,1.0624e-37,1.1952e-37,1.3618e-37,2.1094e-37,2.2108e-37,2.2714e-37,3.1683e-37,3.8552e-37,3.8798e-37,5.6507e-37,5.8472e-37,6.9277e-37,7.084e-37,7.2394e-37,2.2806e-36,6.776e-36,7.4745e-36,1.0286e-35,1.3671e-35,1.7044e-35,2.2135e-35,2.9977e-35,5.1051e-35,6.8386e-35,1.0987e-34,1.9912e-34,2.1032e-34,2.3629e-34,2.631e-34,4.5985e-34,4.6025e-34,1.7311e-33,1.9091e-33,2.0156e-33,2.9907e-33,3.0787e-33,6.6595e-33,9.0094e-33,1.0215e-32,1.3452e-32,1.6019e-32,2.1607e-32,2.3707e-32,4.8262e-32,7.471e-32,2.9252e-31,4.2448e-31,4.8065e-31,6.0026e-31,1.1032e-30,1.2494e-30,1.3952e-30,2.3402e-30,3.7942e-30,4.5356e-30,5.2482e-30,8.8967e-30,1.8991e-29,4.2036e-29,7.1599e-29,8.0039e-29,2.155e-28,3.03e-28,3.5511e-28,3.81e-28,5.065e-28,1.6251e-27,1.6871e-27,2.0654e-27,2.8456e-27,3.0301e-27,4.7807e-27,1.6653e-26,1.6929e-26,2.4016e-26,2.7223e-26,1.1266e-25,1.606e-25,1.6483e-25,2.2604e-25,3.4619e-25,3.4911e-25,3.6134e-25,4.6691e-25,4.6798e-25,5.9012e-25,6.4542e-25,2.3045e-24,4.0096e-24,4.0852e-24,7.632e-24,9.0174e-24,1.1666e-23,1.322e-23,1.4232e-23,1.5439e-23,1.5854e-23,1.7018e-23,2.2622e-23,2.3383e-23,2.5031e-23,2.6468e-23,4.0281e-23,6.4619e-23,1.1826e-22,1.4834e-22,2.3914e-22,4.0635e-22,5.0747e-22,5.69e-22,1.9963e-21,2.3055e-21,2.5627e-21,3.1591e-21,4.1191e-21,5.1802e-21,6.2373e-21,6.4465e-21,6.5812e-21,8.3102e-21,1.5295e-20,1.5995e-20,2.0307e-20,2.9356e-20,3.5953e-20,3.7155e-20,1.1725e-19,1.1868e-19,1.4866e-19,2.3048e-19,2.4957e-19,3.3553e-19,3.5976e-19,5.8491e-19,8.0177e-19,1.6341e-18,1.662e-18,3.719e-18,4.0748e-18,4.1952e-18,7.0369e-18,7.2714e-18,8.7532e-18,1.1167e-17,1.2048e-17,1.2759e-17,1.5987e-17,1.6594e-17,1.7002e-17,2.032e-17,2.1627e-17,2.1981e-17,2.5469e-17,2.6854e-17,3.5969e-17,5.8234e-17,6.3431e-17,6.4891e-17,8.0388e-17,8.7808e-17,1.2561e-16,2.3424e-16,2.8378e-16,3.8395e-16,4.2894e-16,5.8274e-16,7.8916e-16,8.0889e-16,8.2452e-16,8.2635e-16,9.033e-16,9.1013e-16,1.202e-15,1.3651e-15,1.7326e-15,1.7511e-15,1.8673e-15,2.8146e-15,2.8483e-15,3.459e-15,4.3109e-15,6.3734e-15,6.7082e-15,7.7625e-15,8.02e-15,8.7084e-15,9.9942e-15,1.2334e-14,1.2405e-14,1.9927e-14,3.4003e-14,3.5978e-14,3.8296e-14,3.9047e-14,5.3662e-14,6.5198e-14,1.2538e-13,1.2972e-13,1.3892e-13,1.5591e-13,2.3872e-13,3.7068e-13,5.9709e-13,6.8847e-13,7.4936e-13,9.2866e-13,1.4277e-12,1.7226e-12,2.1952e-12,3.1779e-12,4.3628e-12,4.6181e-12,8.4491e-12,9.1427e-12,9.4096e-12,1.0819e-11,1.1435e-11,1.7748e-11,2.1402e-11,2.2588e-11,2.2712e-11,2.5429e-11,2.9599e-11,3.1751e-11,3.2758e-11,5.6379e-11,5.6417e-11,9.1451e-11,1.5772e-10,2.5917e-10,4.0719e-10,4.942e-10,5.1983e-10,5.8494e-10,6.4825e-10,8.2488e-10,8.4698e-10,1.3407e-09,1.5042e-09,1.8919e-09,2.5097e-09,2.9753e-09,3.0329e-09,3.4804e-09,3.8157e-09,4.7775e-09,6.6547e-09,6.8638e-09,7.9302e-09,9.9457e-09,1.194e-08,1.2042e-08,2.2432e-08,2.4803e-08,2.6025e-08,2.9433e-08,3.1368e-08,3.467e-08,4.063e-08,4.3305e-08,4.7319e-08,5.4542e-08,6.5479e-08,7.7861e-08,7.9235e-08,9.7735e-08,1.1211e-07,1.2645e-07,1.659e-07,1.8764e-07,1.962e-07,2.297e-07,2.319e-07,2.4841e-07,2.5605e-07,3.8113e-07,4.2165e-07,4.3848e-07,5.2386e-07,5.805e-07,5.8959e-07,7.4797e-07,1.1736e-06,1.3397e-06,1.4339e-06,1.6785e-06,1.7013e-06,2.0281e-06,2.0674e-06,2.5874e-06,2.9492e-06,3.8265e-06,3.9171e-06,4.004e-06,4.0534e-06,4.2188e-06,4.3586e-06,4.446e-06,5.4739e-06,5.7159e-06,8.5781e-06,9.8102e-06,1.0718e-05,1.1099e-05,1.4796e-05,1.487e-05,1.6334e-05,1.7065e-05,2.1228e-05,2.1374e-05,2.1724e-05,2.5512e-05,2.6665e-05,2.7087e-05,2.8409e-05,3.0209e-05,3.2009e-05,3.2984e-05,4.4188e-05,4.4642e-05,5.1929e-05,6.501e-05,8.0112e-05,0.00010668,0.00010711,0.00011843,0.00013429,0.0001583,0.00015859,0.00016782,0.00021839,0.00023202,0.00023356,0.00031644,0.00033798,0.00035101,0.00039411,0.00044166,0.00054346,0.00056125,0.00065493,0.00091946,0.00092359,0.00094923,0.0010037,0.0010484,0.0011061,0.0011779,0.002083,0.0024083,0.0029974,0.003517,0.0035446,0.0036089,0.0045566,0.0048077,0.0048291,0.0059969,0.0085527,0.0086479,0.0095753,0.0097777,0.012295,0.013094,0.015,0.016087,0.017367,0.017627,0.019282,0.019588,0.019734,0.024085,0.025537,0.026169,0.028319,0.029026,0.032465,0.033296,0.035023,0.039657,0.039703,0.042108,0.042947,0.042948,0.048776,0.048971,0.051564,0.054424,0.061112,0.067699,0.072773,0.081468,0.090228,0.10268,0.10321,0.1137,0.12453,0.13128,0.15067,0.15674,0.16959,0.17754,0.19497,0.19688,0.20086,0.21026,0.23088,0.25339,0.26587,0.27869,0.28552,0.28649,0.29916,0.3142,0.36266,0.37616,0.3837,0.4006,0.40071,0.41767,0.4198,0.43149,0.44097,0.47346,0.47823,0.50419,0.52867,0.60988,0.6252,0.63259,0.65192,0.66996,0.67678,0.69035,0.70004,0.71198,0.7315,0.7316,0.76587,0.77477,0.77661,0.77759,0.81052,0.81124,0.81447,0.81688,0.82309,0.8332,0.8421,0.87932,0.9442,0.95914,0.96036,0.96135,0.96448,0.96616,0.98021,0.98747,0.99174,0.99374,0.99703,0.99888,0.99913,1,0.99972,0.99862,0.99512,0.98727,0.98665,0.9831,0.98039,0.97912,0.96309,0.95797,0.93081,0.92222,0.90604,0.89686,0.89381,0.87656,0.87425,0.86915,0.85775,0.83503 1,2.1171e-40,4.1188e-40,4.2581e-40,5.2026e-40,6.0692e-40,7.4296e-40,1.0995e-39,2.7839e-39,5.0138e-39,5.4875e-39,8.7499e-39,9.4415e-39,1.2771e-38,2.6576e-38,3.3426e-38,3.9196e-38,7.8007e-38,8.7773e-38,1.0003e-37,1.5507e-37,1.6254e-37,1.67e-37,2.3308e-37,2.8372e-37,2.8554e-37,4.1615e-37,4.3065e-37,5.1039e-37,5.2193e-37,5.3339e-37,1.6839e-36,5.0132e-36,5.531e-36,7.616e-36,1.0128e-35,1.2632e-35,1.6412e-35,2.224e-35,3.7912e-35,5.0814e-35,8.1714e-35,1.4825e-34,1.5661e-34,1.7599e-34,1.96e-34,3.4293e-34,3.4323e-34,1.2943e-33,1.4276e-33,1.5074e-33,2.2383e-33,2.3043e-33,4.9919e-33,6.7573e-33,7.6634e-33,1.0097e-32,1.2029e-32,1.6234e-32,1.7814e-32,3.6318e-32,5.6268e-32,2.2091e-31,3.208e-31,3.6335e-31,4.5397e-31,8.3536e-31,9.4632e-31,1.057e-30,1.7747e-30,2.8802e-30,3.4442e-30,3.9865e-30,6.7653e-30,1.4464e-29,3.2068e-29,5.468e-29,6.114e-29,1.6495e-28,2.321e-28,2.7211e-28,2.9199e-28,3.884e-28,1.2493e-27,1.297e-27,1.5886e-27,2.1901e-27,2.3324e-27,3.6835e-27,1.2866e-26,1.3079e-26,1.8569e-26,2.1054e-26,8.7402e-26,1.2469e-25,1.2799e-25,1.7564e-25,2.6925e-25,2.7153e-25,2.8106e-25,3.6338e-25,3.6422e-25,4.5952e-25,5.0268e-25,1.8e-24,3.1357e-24,3.195e-24,5.9775e-24,7.0653e-24,9.1462e-24,1.0368e-23,1.1162e-23,1.2112e-23,1.2438e-23,1.3353e-23,1.7762e-23,1.8361e-23,1.9658e-23,2.0789e-23,3.167e-23,5.0862e-23,9.3218e-23,1.1699e-22,1.8881e-22,3.2123e-22,4.0138e-22,4.5017e-22,1.5842e-21,1.8302e-21,2.0349e-21,2.5098e-21,3.2745e-21,4.1203e-21,4.9634e-21,5.1303e-21,5.2378e-21,6.6176e-21,1.2198e-20,1.2758e-20,1.6206e-20,2.345e-20,2.8735e-20,2.9698e-20,9.3987e-20,9.5137e-20,1.1924e-19,1.8507e-19,2.0044e-19,2.6969e-19,2.8921e-19,4.7079e-19,6.4587e-19,1.3188e-18,1.3414e-18,3.008e-18,3.2965e-18,3.3942e-18,5.7011e-18,5.8916e-18,7.0957e-18,9.0583e-18,9.7747e-18,1.0353e-17,1.2981e-17,1.3475e-17,1.3807e-17,1.651e-17,1.7574e-17,1.7863e-17,2.0706e-17,2.1834e-17,2.9269e-17,4.7449e-17,5.1696e-17,5.2889e-17,6.5558e-17,7.1627e-17,1.0256e-16,1.916e-16,2.3224e-16,3.1448e-16,3.5144e-16,4.7787e-16,6.477e-16,6.6393e-16,6.768e-16,6.783e-16,7.4166e-16,7.4728e-16,9.8773e-16,1.1221e-15,1.4252e-15,1.4405e-15,1.5363e-15,2.3185e-15,2.3463e-15,2.851e-15,3.5554e-15,5.2624e-15,5.5398e-15,6.4131e-15,6.6265e-15,7.197e-15,8.263e-15,1.0204e-14,1.0263e-14,1.6509e-14,2.8216e-14,2.986e-14,3.1789e-14,3.2415e-14,4.459e-14,5.4208e-14,1.0446e-13,1.0808e-13,1.1577e-13,1.2997e-13,1.9927e-13,3.0985e-13,4.9985e-13,5.7661e-13,6.2778e-13,7.7851e-13,1.1985e-12,1.447e-12,1.8453e-12,2.6746e-12,3.6757e-12,3.8915e-12,7.1339e-12,7.7216e-12,7.9478e-12,9.142e-12,9.6644e-12,1.5023e-11,1.8127e-11,1.9135e-11,1.9241e-11,2.155e-11,2.5097e-11,2.6928e-11,2.7785e-11,4.791e-11,4.7942e-11,7.7842e-11,1.3451e-10,2.2142e-10,3.4843e-10,4.2318e-10,4.4521e-10,5.0119e-10,5.5564e-10,7.0766e-10,7.2669e-10,1.1523e-09,1.2933e-09,1.628e-09,2.162e-09,2.5647e-09,2.6145e-09,3.0019e-09,3.2922e-09,4.1256e-09,5.754e-09,5.9355e-09,6.8615e-09,8.6129e-09,1.0347e-08,1.0436e-08,1.9488e-08,2.1557e-08,2.2623e-08,2.5598e-08,2.7289e-08,3.0173e-08,3.5382e-08,3.7722e-08,4.1234e-08,4.7555e-08,5.7134e-08,6.7986e-08,6.9191e-08,8.542e-08,9.8039e-08,1.1063e-07,1.4532e-07,1.6445e-07,1.7198e-07,2.0148e-07,2.0342e-07,2.1797e-07,2.247e-07,3.3504e-07,3.7082e-07,3.8569e-07,4.6115e-07,5.1124e-07,5.1929e-07,6.5947e-07,1.0368e-06,1.1843e-06,1.268e-06,1.4853e-06,1.5056e-06,1.7963e-06,1.8312e-06,2.2942e-06,2.6166e-06,3.3991e-06,3.48e-06,3.5576e-06,3.6017e-06,3.7494e-06,3.8742e-06,3.9522e-06,4.8709e-06,5.0873e-06,7.6497e-06,8.7543e-06,9.5683e-06,9.9102e-06,1.3231e-05,1.3297e-05,1.4613e-05,1.527e-05,1.9017e-05,1.9148e-05,1.9463e-05,2.2875e-05,2.3915e-05,2.4295e-05,2.5488e-05,2.7111e-05,2.8735e-05,2.9615e-05,3.9735e-05,4.0146e-05,4.6736e-05,5.858e-05,7.227e-05,9.6385e-05,9.6777e-05,0.00010707,0.00012149,0.00014335,0.00014361,0.00015202,0.00019812,0.00021056,0.00021197,0.00028769,0.00030739,0.00031931,0.00035878,0.00040234,0.00049569,0.00051202,0.00059805,0.00084139,0.00084519,0.0008688,0.00091898,0.0009602,0.0010134,0.0010796,0.0019163,0.0022177,0.0027644,0.0032472,0.0032729,0.0033327,0.0042148,0.0044488,0.0044688,0.0055583,0.0079484,0.0080375,0.0089065,0.0090963,0.011458,0.01221,0.014002,0.015025,0.016232,0.016476,0.018037,0.018325,0.018463,0.022573,0.023945,0.024544,0.026578,0.027248,0.030507,0.031295,0.032933,0.037333,0.037377,0.039663,0.040461,0.040462,0.046008,0.046194,0.048664,0.05139,0.057772,0.064065,0.068917,0.077243,0.085642,0.097595,0.098107,0.1082,0.11863,0.12513,0.14385,0.14972,0.16215,0.16985,0.18676,0.18861,0.19247,0.2016,0.22165,0.24359,0.25575,0.26827,0.27495,0.2759,0.28829,0.30301,0.35054,0.36382,0.37124,0.38787,0.38799,0.4047,0.4068,0.41834,0.42771,0.45983,0.46455,0.49028,0.51459,0.59553,0.61086,0.61826,0.63763,0.65574,0.6626,0.67624,0.686,0.69804,0.71774,0.71785,0.75255,0.76157,0.76345,0.76444,0.79796,0.7987,0.80199,0.80446,0.8108,0.82115,0.83027,0.86859,0.9364,0.95234,0.95365,0.95472,0.95809,0.95992,0.97532,0.9835,0.98844,0.99083,0.99494,0.99748,0.99786,0.99972,1,0.99958,0.99717,0.99074,0.9902,0.98712,0.98474,0.98361,0.96909,0.96436,0.93892,0.93078,0.91536,0.90656,0.90363,0.88702,0.88479,0.87986,0.86882,0.84673 1,1.4323e-40,2.7905e-40,2.8851e-40,3.5266e-40,4.1153e-40,5.0399e-40,7.4646e-40,1.8939e-39,3.4152e-39,3.7386e-39,5.9674e-39,6.4401e-39,8.7168e-39,1.8169e-38,2.2863e-38,2.6819e-38,5.3456e-38,6.0164e-38,6.8586e-38,1.0643e-37,1.1157e-37,1.1463e-37,1.6012e-37,1.9498e-37,1.9624e-37,2.8624e-37,2.9624e-37,3.5122e-37,3.5918e-37,3.6709e-37,1.1619e-36,3.4676e-36,3.8266e-36,5.2729e-36,7.0163e-36,8.7557e-36,1.1383e-35,1.5436e-35,2.6345e-35,3.5334e-35,5.6882e-35,1.0334e-34,1.0918e-34,1.2272e-34,1.3671e-34,2.3951e-34,2.3972e-34,9.0676e-34,1.0004e-33,1.0565e-33,1.5702e-33,1.6166e-33,3.5085e-33,4.7527e-33,5.3916e-33,7.1084e-33,8.4717e-33,1.1442e-32,1.2558e-32,2.5646e-32,3.9777e-32,1.5668e-31,2.2774e-31,2.5802e-31,3.2254e-31,5.9441e-31,6.7357e-31,7.5253e-31,1.2652e-30,2.0557e-30,2.4593e-30,2.8476e-30,4.8388e-30,1.0365e-29,2.3026e-29,3.9316e-29,4.3973e-29,1.1894e-28,1.675e-28,1.9645e-28,2.1084e-28,2.8066e-28,9.0549e-28,9.4016e-28,1.1521e-27,1.5897e-27,1.6933e-27,2.6774e-27,9.3823e-27,9.5384e-27,1.3555e-26,1.5374e-26,6.4063e-26,9.1484e-26,9.3909e-26,1.2898e-25,1.9796e-25,1.9963e-25,2.0666e-25,2.6738e-25,2.68e-25,3.3833e-25,3.702e-25,1.3303e-24,2.321e-24,2.365e-24,4.4324e-24,5.2414e-24,6.7901e-24,7.6995e-24,8.2915e-24,8.9989e-24,9.2421e-24,9.9239e-24,1.3211e-23,1.3658e-23,1.4626e-23,1.547e-23,2.3594e-23,3.7943e-23,6.9661e-23,8.7483e-23,1.4138e-22,2.4091e-22,3.0122e-22,3.3794e-22,1.1936e-21,1.3796e-21,1.5344e-21,1.8936e-21,2.4726e-21,3.1134e-21,3.7525e-21,3.879e-21,3.9606e-21,5.0075e-21,9.2474e-21,9.6725e-21,1.2296e-20,1.7812e-20,2.184e-20,2.2574e-20,7.1695e-20,7.2574e-20,9.1021e-20,1.4147e-19,1.5326e-19,2.0639e-19,2.2138e-19,3.6093e-19,4.9565e-19,1.0143e-18,1.0318e-18,2.3197e-18,2.543e-18,2.6185e-18,4.4057e-18,4.5534e-18,5.4873e-18,7.0106e-18,7.5669e-18,8.0163e-18,1.0058e-17,1.0442e-17,1.0701e-17,1.2803e-17,1.3631e-17,1.3855e-17,1.6068e-17,1.6947e-17,2.274e-17,3.6923e-17,4.024e-17,4.1172e-17,5.107e-17,5.5815e-17,8.0019e-17,1.498e-16,1.8169e-16,2.4629e-16,2.7534e-16,3.7478e-16,5.0851e-16,5.213e-16,5.3143e-16,5.3262e-16,5.8255e-16,5.8698e-16,7.7661e-16,8.8267e-16,1.122e-15,1.134e-15,1.2098e-15,1.8284e-15,1.8504e-15,2.2499e-15,2.8081e-15,4.162e-15,4.3821e-15,5.0757e-15,5.2451e-15,5.6984e-15,6.5457e-15,8.0894e-15,8.1361e-15,1.3111e-14,2.2451e-14,2.3764e-14,2.5306e-14,2.5805e-14,3.554e-14,4.3236e-14,8.3518e-14,8.6429e-14,9.26e-14,1.04e-13,1.5971e-13,2.4876e-13,4.0203e-13,4.6403e-13,5.0537e-13,6.2723e-13,9.6722e-13,1.1686e-12,1.4917e-12,2.1653e-12,2.9795e-12,3.1552e-12,5.7981e-12,6.2777e-12,6.4624e-12,7.4377e-12,7.8645e-12,1.2247e-11,1.4788e-11,1.5615e-11,1.5701e-11,1.7594e-11,2.0503e-11,2.2005e-11,2.2708e-11,3.9245e-11,3.9271e-11,6.3894e-11,1.1066e-10,1.8256e-10,2.8785e-10,3.499e-10,3.682e-10,4.1471e-10,4.5998e-10,5.8645e-10,6.0229e-10,9.5699e-10,1.0747e-09,1.3542e-09,1.8007e-09,2.1378e-09,2.1795e-09,2.504e-09,2.7474e-09,3.4464e-09,4.8142e-09,4.9668e-09,5.7456e-09,7.22e-09,8.6813e-09,8.7562e-09,1.6401e-08,1.815e-08,1.9053e-08,2.1571e-08,2.3003e-08,2.5446e-08,2.9863e-08,3.1848e-08,3.4828e-08,4.0196e-08,4.8336e-08,5.7568e-08,5.8593e-08,7.2414e-08,8.317e-08,9.391e-08,1.2353e-07,1.3988e-07,1.4632e-07,1.7156e-07,1.7321e-07,1.8567e-07,1.9144e-07,2.8604e-07,3.1676e-07,3.2953e-07,3.9438e-07,4.3746e-07,4.4438e-07,5.6507e-07,8.9059e-07,1.018e-06,1.0904e-06,1.2784e-06,1.296e-06,1.5477e-06,1.5779e-06,1.9794e-06,2.2593e-06,2.9393e-06,3.0097e-06,3.0772e-06,3.1155e-06,3.244e-06,3.3526e-06,3.4206e-06,4.2208e-06,4.4094e-06,6.6464e-06,7.6122e-06,8.3245e-06,8.6237e-06,1.1533e-05,1.1592e-05,1.2746e-05,1.3323e-05,1.6614e-05,1.673e-05,1.7007e-05,2.0008e-05,2.0923e-05,2.1258e-05,2.2308e-05,2.3738e-05,2.5169e-05,2.5945e-05,3.4876e-05,3.5239e-05,4.1064e-05,5.1546e-05,6.3681e-05,8.5093e-05,8.5441e-05,9.4592e-05,0.00010743,0.0001269,0.00012713,0.00013462,0.00017577,0.00018689,0.00018815,0.00025592,0.00027357,0.00028426,0.00031966,0.00035877,0.00044269,0.00045738,0.00053486,0.00075443,0.00075786,0.0007792,0.00082456,0.00086184,0.00090994,0.00096987,0.0017295,0.0020039,0.0025025,0.0029436,0.0029671,0.0030217,0.0038293,0.0040438,0.0040621,0.0050622,0.0072627,0.0073449,0.0081468,0.0083221,0.010506,0.011202,0.012864,0.013813,0.014934,0.015161,0.016613,0.016881,0.017009,0.020838,0.022119,0.022678,0.024579,0.025205,0.028254,0.028992,0.030527,0.034654,0.034695,0.036842,0.037592,0.037593,0.042809,0.042983,0.04531,0.047879,0.0539,0.059847,0.064438,0.072326,0.080297,0.091662,0.092149,0.10176,0.11172,0.11793,0.13584,0.14146,0.1534,0.1608,0.17706,0.17884,0.18256,0.19136,0.21072,0.23195,0.24374,0.25589,0.26237,0.26329,0.27534,0.28966,0.33605,0.34904,0.3563,0.3726,0.37272,0.38912,0.39118,0.40252,0.41174,0.44339,0.44805,0.47347,0.49754,0.57804,0.59335,0.60074,0.62014,0.6383,0.64519,0.65891,0.66874,0.68087,0.70076,0.70087,0.73603,0.7452,0.74711,0.74812,0.7823,0.78306,0.78643,0.78895,0.79544,0.80606,0.81543,0.85502,0.92626,0.94339,0.94481,0.94596,0.94963,0.95162,0.96863,0.97792,0.98369,0.98654,0.99164,0.99503,0.99556,0.99862,0.99958,1,0.99892,0.99424,0.99381,0.99131,0.98933,0.98838,0.97572,0.97149,0.9482,0.94063,0.92616,0.91785,0.91507,0.89927,0.89715,0.89244,0.88186,0.8606 1,7.6306e-41,1.49e-40,1.5407e-40,1.8846e-40,2.2004e-40,2.6966e-40,3.9994e-40,1.018e-39,1.8395e-39,2.0143e-39,3.2204e-39,3.4764e-39,4.7104e-39,9.8434e-39,1.2397e-38,1.455e-38,2.9072e-38,3.2734e-38,3.7333e-38,5.8022e-38,6.0834e-38,6.2512e-38,8.7419e-38,1.0653e-37,1.0722e-37,1.566e-37,1.6209e-37,1.923e-37,1.9667e-37,2.0101e-37,6.3888e-37,1.9143e-36,2.1132e-36,2.9153e-36,3.8833e-36,4.8499e-36,6.3112e-36,8.5677e-36,1.4652e-35,1.9672e-35,3.1725e-35,5.7766e-35,6.1042e-35,6.8643e-35,7.6497e-35,1.343e-34,1.3442e-34,5.1098e-34,5.6394e-34,5.9568e-34,8.8666e-34,9.1297e-34,1.9872e-33,2.6951e-33,3.0588e-33,4.0371e-33,4.8146e-33,6.51e-33,7.1479e-33,1.4637e-32,2.274e-32,9.0053e-32,1.3108e-31,1.4858e-31,1.859e-31,3.4342e-31,3.8935e-31,4.3518e-31,7.3313e-31,1.1935e-30,1.4289e-30,1.6554e-30,2.819e-30,6.0567e-30,1.3499e-29,2.3098e-29,2.5846e-29,7.0192e-29,9.8991e-29,1.1618e-28,1.2472e-28,1.6622e-28,5.3888e-28,5.596e-28,6.8634e-28,9.4831e-28,1.0104e-27,1.6006e-27,5.6387e-27,5.733e-27,8.1591e-27,9.259e-27,3.8819e-26,5.552e-26,5.6998e-26,7.8393e-26,1.2054e-25,1.2157e-25,1.2586e-25,1.6303e-25,1.6341e-25,2.065e-25,2.2604e-25,8.1685e-25,1.4287e-24,1.4559e-24,2.7362e-24,3.2381e-24,4.1997e-24,4.7649e-24,5.133e-24,5.573e-24,5.7243e-24,6.1485e-24,8.1959e-24,8.4742e-24,9.0775e-24,9.6037e-24,1.4676e-23,2.3652e-23,4.3544e-23,5.4742e-23,8.8666e-23,1.5146e-22,1.8957e-22,2.128e-22,7.5607e-22,8.7447e-22,9.7305e-22,1.2021e-21,1.5716e-21,1.9811e-21,2.3899e-21,2.4709e-21,2.5231e-21,3.1936e-21,5.915e-21,6.1883e-21,7.8761e-21,1.143e-20,1.4028e-20,1.4502e-20,4.6321e-20,4.6892e-20,5.8877e-20,9.171e-20,9.9391e-20,1.3405e-19,1.4384e-19,2.3508e-19,3.2334e-19,6.6412e-19,6.7561e-19,1.5252e-18,1.6728e-18,1.7228e-18,2.9064e-18,3.0044e-18,3.6241e-18,4.636e-18,5.0059e-18,5.3048e-18,6.6639e-18,6.92e-18,7.0921e-18,8.4931e-18,9.0454e-18,9.1953e-18,1.0672e-17,1.1259e-17,1.5131e-17,2.4632e-17,2.6857e-17,2.7482e-17,3.4129e-17,3.7317e-17,5.3604e-17,1.0069e-16,1.2225e-16,1.66e-16,1.8569e-16,2.5318e-16,3.441e-16,3.528e-16,3.597e-16,3.6051e-16,3.945e-16,3.9752e-16,5.2675e-16,5.9912e-16,7.626e-16,7.7082e-16,8.2261e-16,1.2461e-15,1.2612e-15,1.5352e-15,1.9184e-15,2.8498e-15,3.0014e-15,3.4793e-15,3.5962e-15,3.9088e-15,4.4936e-15,5.5601e-15,5.5924e-15,9.0365e-15,1.5523e-14,1.6436e-14,1.7509e-14,1.7857e-14,2.4639e-14,3.001e-14,5.8197e-14,6.0237e-14,6.4565e-14,7.2567e-14,1.1173e-13,1.7448e-13,2.8282e-13,3.2672e-13,3.5602e-13,4.4246e-13,6.8413e-13,8.2755e-13,1.058e-12,1.5393e-12,2.1225e-12,2.2484e-12,4.148e-12,4.4934e-12,4.6264e-12,5.3295e-12,5.6373e-12,8.804e-12,1.0644e-11,1.1243e-11,1.1306e-11,1.2678e-11,1.4789e-11,1.588e-11,1.6391e-11,2.8431e-11,2.845e-11,4.644e-11,8.0735e-11,1.3365e-10,2.114e-10,2.5732e-10,2.7088e-10,3.0534e-10,3.3892e-10,4.3286e-10,4.4464e-10,7.0884e-10,7.9669e-10,1.0056e-09,1.3399e-09,1.5927e-09,1.6241e-09,1.8678e-09,2.0507e-09,2.5768e-09,3.6085e-09,3.7237e-09,4.3123e-09,5.4282e-09,6.536e-09,6.5929e-09,1.2408e-08,1.3743e-08,1.4432e-08,1.6355e-08,1.7449e-08,1.9318e-08,2.27e-08,2.4221e-08,2.6506e-08,3.0626e-08,3.6883e-08,4.3988e-08,4.4778e-08,5.5435e-08,6.374e-08,7.2043e-08,9.4977e-08,1.0766e-07,1.1266e-07,1.3226e-07,1.3355e-07,1.4324e-07,1.4773e-07,2.2147e-07,2.4547e-07,2.5545e-07,3.0619e-07,3.3994e-07,3.4536e-07,4.4007e-07,6.9634e-07,7.9692e-07,8.5406e-07,1.0028e-06,1.0167e-06,1.2161e-06,1.24e-06,1.5588e-06,1.7813e-06,2.323e-06,2.3791e-06,2.433e-06,2.4636e-06,2.5662e-06,2.6529e-06,2.7072e-06,3.347e-06,3.498e-06,5.293e-06,6.07e-06,6.6437e-06,6.8848e-06,9.2337e-06,9.2809e-06,1.0215e-05,1.0681e-05,1.3349e-05,1.3443e-05,1.3668e-05,1.6106e-05,1.685e-05,1.7122e-05,1.7977e-05,1.9141e-05,2.0307e-05,2.0939e-05,2.8232e-05,2.8529e-05,3.3297e-05,4.1896e-05,5.1873e-05,6.9529e-05,6.9817e-05,7.7379e-05,8.7999e-05,0.00010414,0.00010433,0.00011055,0.00014477,0.00015403,0.00015508,0.00021167,0.00022645,0.00023539,0.00026507,0.0002979,0.00036849,0.00038086,0.00044621,0.00063201,0.00063492,0.00065302,0.00069152,0.00072318,0.00076405,0.00081502,0.0014641,0.0016997,0.0021288,0.0025096,0.0025298,0.0025771,0.0032765,0.0034627,0.0034786,0.0043485,0.0062716,0.0063436,0.0070471,0.0072009,0.0091231,0.009737,0.011205,0.012046,0.01304,0.013241,0.01453,0.014769,0.014883,0.018294,0.019438,0.019938,0.021638,0.022199,0.024934,0.025596,0.026976,0.030691,0.030728,0.032665,0.033342,0.033343,0.03806,0.038218,0.040326,0.042656,0.048129,0.053548,0.057739,0.064958,0.072271,0.082729,0.083179,0.09205,0.10126,0.10702,0.12368,0.12892,0.14006,0.14699,0.16224,0.16391,0.16741,0.17569,0.19394,0.21403,0.22521,0.23676,0.24293,0.2438,0.25529,0.26897,0.31345,0.32596,0.33296,0.34871,0.34882,0.36469,0.36669,0.37769,0.38663,0.41746,0.422,0.44687,0.47048,0.55003,0.56526,0.57263,0.59199,0.61018,0.61709,0.63089,0.64078,0.65302,0.67314,0.67325,0.709,0.71837,0.72032,0.72135,0.75645,0.75724,0.76071,0.76331,0.77003,0.78103,0.79076,0.8322,0.90861,0.92756,0.92915,0.93044,0.93456,0.93681,0.95632,0.96734,0.97439,0.97798,0.98463,0.98936,0.99015,0.99512,0.99717,0.99892,1,0.99813,0.99789,0.99633,0.99501,0.99434,0.98475,0.98133,0.96163,0.95499,0.94213,0.93465,0.93214,0.91772,0.91577,0.91144,0.90165,0.88181 1,3.3184e-41,6.4994e-41,6.7216e-41,8.2292e-41,9.6149e-41,1.1794e-40,1.7523e-40,4.4793e-40,8.116e-40,8.891e-40,1.4245e-39,1.5383e-39,2.0873e-39,4.3766e-39,5.5179e-39,6.481e-39,1.2991e-38,1.4636e-38,1.6702e-38,2.6012e-38,2.7278e-38,2.8034e-38,3.9265e-38,4.7894e-38,4.8204e-38,7.0533e-38,7.3017e-38,8.6692e-38,8.8672e-38,9.0641e-38,2.8966e-37,8.7244e-37,9.6356e-37,1.3313e-36,1.7758e-36,2.2202e-36,2.8928e-36,3.9329e-36,6.7431e-36,9.0666e-36,1.4655e-35,2.6763e-35,2.8288e-35,3.1829e-35,3.5489e-35,6.2478e-35,6.2531e-35,2.3928e-34,2.6421e-34,2.7915e-34,4.1633e-34,4.2875e-34,9.3686e-34,1.2725e-33,1.4452e-33,1.91e-33,2.2798e-33,3.0873e-33,3.3914e-33,6.9699e-33,1.0853e-32,4.3279e-32,6.3118e-32,7.1592e-32,8.9678e-32,1.6619e-31,1.8853e-31,2.1085e-31,3.5617e-31,5.813e-31,6.9659e-31,8.0766e-31,1.3792e-30,2.9751e-30,6.6588e-30,1.1427e-29,1.2794e-29,3.4931e-29,4.9354e-29,5.7972e-29,6.2261e-29,8.3106e-29,2.7115e-28,2.8163e-28,3.458e-28,4.7864e-28,5.1014e-28,8.1019e-28,2.8742e-27,2.9225e-27,4.1674e-27,4.7325e-27,2.0002e-26,2.8665e-26,2.9433e-26,4.0554e-26,6.251e-26,6.3045e-26,6.5287e-26,8.4689e-26,8.4887e-26,1.0742e-25,1.1764e-25,4.283e-25,7.5154e-25,7.6594e-25,1.4448e-24,1.7115e-24,2.2232e-24,2.5243e-24,2.7205e-24,2.9551e-24,3.0358e-24,3.2622e-24,4.3559e-24,4.5047e-24,4.8273e-24,5.1088e-24,7.8267e-24,1.265e-23,2.3374e-23,2.9426e-23,4.78e-23,8.1919e-23,1.0267e-22,1.1533e-22,4.1299e-22,4.781e-22,5.3235e-22,6.5852e-22,8.6238e-22,1.0886e-21,1.3148e-21,1.3597e-21,1.3886e-21,1.7602e-21,3.2729e-21,3.4251e-21,4.366e-21,6.3508e-21,7.8049e-21,8.0702e-21,2.597e-20,2.6293e-20,3.3062e-20,5.1647e-20,5.6003e-20,7.568e-20,8.1241e-20,1.3321e-19,1.8361e-19,3.7893e-19,3.8553e-19,8.7512e-19,9.604e-19,9.893e-19,1.6749e-18,1.7317e-18,2.0916e-18,2.6802e-18,2.8955e-18,3.0696e-18,3.8621e-18,4.0116e-18,4.112e-18,4.9304e-18,5.2534e-18,5.341e-18,6.2053e-18,6.5489e-18,8.8191e-18,1.4406e-17,1.5716e-17,1.6085e-17,2.0005e-17,2.1888e-17,3.1521e-17,5.9474e-17,7.2312e-17,9.84e-17,1.1016e-16,1.5054e-16,2.0505e-16,2.1028e-16,2.1442e-16,2.149e-16,2.3532e-16,2.3713e-16,3.1487e-16,3.5846e-16,4.5708e-16,4.6205e-16,4.9332e-16,7.4957e-16,7.5873e-16,9.2491e-16,1.1577e-15,1.7248e-15,1.8173e-15,2.109e-15,2.1804e-15,2.3714e-15,2.729e-15,3.3822e-15,3.402e-15,5.5171e-15,9.5166e-15,1.0081e-14,1.0744e-14,1.0959e-14,1.5159e-14,1.8491e-14,3.6045e-14,3.7319e-14,4.0022e-14,4.5023e-14,6.9555e-14,1.0901e-13,1.7738e-13,2.0515e-13,2.237e-13,2.785e-13,4.3215e-13,5.2356e-13,6.7072e-13,9.7889e-13,1.3533e-12,1.4343e-12,2.6597e-12,2.8831e-12,2.9692e-12,3.4246e-12,3.6241e-12,5.6814e-12,6.8803e-12,7.2707e-12,7.3115e-12,8.2074e-12,9.5866e-12,1.03e-11,1.0634e-11,1.8534e-11,1.8547e-11,3.0407e-11,5.3122e-11,8.8337e-11,1.4031e-10,1.711e-10,1.802e-10,2.0336e-10,2.2594e-10,2.8921e-10,2.9716e-10,4.758e-10,5.3536e-10,6.7722e-10,9.0486e-10,1.0774e-09,1.0988e-09,1.2653e-09,1.3905e-09,1.7511e-09,2.4603e-09,2.5396e-09,2.9453e-09,3.716e-09,4.4826e-09,4.5219e-09,8.5649e-09,9.4958e-09,9.9768e-09,1.1321e-08,1.2086e-08,1.3395e-08,1.5766e-08,1.6833e-08,1.8439e-08,2.1337e-08,2.5745e-08,3.0762e-08,3.132e-08,3.8861e-08,4.475e-08,5.0645e-08,6.6965e-08,7.6008e-08,7.9577e-08,9.359e-08,9.4511e-08,1.0144e-07,1.0466e-07,1.576e-07,1.7487e-07,1.8207e-07,2.1867e-07,2.4305e-07,2.4698e-07,3.1557e-07,5.0194e-07,5.7534e-07,6.1708e-07,7.2587e-07,7.3606e-07,8.8227e-07,8.9987e-07,1.1342e-06,1.2981e-06,1.6983e-06,1.7399e-06,1.7797e-06,1.8024e-06,1.8784e-06,1.9426e-06,1.9828e-06,2.4578e-06,2.5701e-06,3.9088e-06,4.4902e-06,4.9201e-06,5.101e-06,6.8666e-06,6.9022e-06,7.6059e-06,7.9578e-06,9.9739e-06,1.0045e-05,1.0215e-05,1.2063e-05,1.2628e-05,1.2835e-05,1.3484e-05,1.4369e-05,1.5256e-05,1.5737e-05,2.1303e-05,2.153e-05,2.518e-05,3.1781e-05,3.9465e-05,5.3113e-05,5.3336e-05,5.9197e-05,6.7444e-05,8.0003e-05,8.0155e-05,8.5003e-05,0.00011175,0.000119,0.00011983,0.00016431,0.00017595,0.00018301,0.00020645,0.00023243,0.00028844,0.00029828,0.00035031,0.00049891,0.00050124,0.00051576,0.00054667,0.00057211,0.00060497,0.00064601,0.0011718,0.0013638,0.0017148,0.0020273,0.002044,0.0020829,0.0026595,0.0028135,0.0028266,0.003548,0.0051525,0.0052128,0.0058027,0.0059319,0.0075504,0.008069,0.0093122,0.010026,0.01087,0.011042,0.012141,0.012344,0.012442,0.015361,0.016343,0.016772,0.018235,0.018719,0.021079,0.021652,0.022846,0.02607,0.026102,0.027787,0.028376,0.028377,0.032493,0.032631,0.034475,0.036517,0.041325,0.0461,0.049804,0.056201,0.062705,0.072041,0.072444,0.080395,0.088682,0.093873,0.10895,0.1137,0.12385,0.13016,0.14411,0.14565,0.14886,0.15647,0.1733,0.19189,0.20228,0.21302,0.21878,0.2196,0.23033,0.24315,0.28505,0.29689,0.30354,0.3185,0.31861,0.33374,0.33565,0.34616,0.35473,0.38434,0.38872,0.41274,0.43564,0.51351,0.52854,0.53584,0.55504,0.57314,0.58004,0.59383,0.60374,0.61604,0.63632,0.63643,0.6727,0.68225,0.68424,0.6853,0.72134,0.72215,0.72573,0.72842,0.73536,0.74678,0.75691,0.80044,0.88296,0.90414,0.90593,0.9074,0.91208,0.91463,0.93726,0.95044,0.95913,0.96365,0.97227,0.97872,0.97983,0.98727,0.99074,0.99424,0.99813,1,0.99999,0.9997,0.99924,0.99897,0.9935,0.99119,0.97639,0.97106,0.96043,0.95411,0.95196,0.93951,0.9378,0.934,0.92535,0.90757 1,3.1462e-41,6.1632e-41,6.374e-41,7.8041e-41,9.1186e-41,1.1186e-40,1.6622e-40,4.25e-40,7.7018e-40,8.4375e-40,1.3521e-39,1.4601e-39,1.9813e-39,4.1553e-39,5.2392e-39,6.154e-39,1.2338e-38,1.3901e-38,1.5864e-38,2.4709e-38,2.5913e-38,2.6631e-38,3.7304e-38,4.5504e-38,4.5799e-38,6.7021e-38,6.9383e-38,8.2381e-38,8.4264e-38,8.6135e-38,2.7536e-37,8.2963e-37,9.1631e-37,1.2662e-36,1.6891e-36,2.1119e-36,2.7519e-36,3.7416e-36,6.4163e-36,8.6279e-36,1.3948e-35,2.5476e-35,2.6929e-35,3.03e-35,3.3787e-35,5.949e-35,5.9541e-35,2.2793e-34,2.5169e-34,2.6593e-34,3.9666e-34,4.0849e-34,8.9283e-34,1.2128e-33,1.3774e-33,1.8206e-33,2.1733e-33,2.9433e-33,3.2333e-33,6.6466e-33,1.0351e-32,4.1295e-32,6.0233e-32,6.8322e-32,8.5587e-32,1.5864e-31,1.7998e-31,2.0129e-31,3.4007e-31,5.5513e-31,6.6527e-31,7.7138e-31,1.3174e-30,2.8427e-30,6.3642e-30,1.0923e-29,1.223e-29,3.3405e-29,4.7202e-29,5.5448e-29,5.9551e-29,7.9498e-29,2.5948e-28,2.6952e-28,3.3095e-28,4.5813e-28,4.8829e-28,7.7562e-28,2.7527e-27,2.799e-27,3.9919e-27,4.5334e-27,1.917e-26,2.7477e-26,2.8213e-26,3.8878e-26,5.9935e-26,6.0449e-26,6.2599e-26,8.121e-26,8.14e-26,1.0301e-25,1.1282e-25,4.1094e-25,7.2125e-25,7.3507e-25,1.3869e-24,1.643e-24,2.1345e-24,2.4236e-24,2.612e-24,2.8374e-24,2.9149e-24,3.1324e-24,4.183e-24,4.326e-24,4.6359e-24,4.9064e-24,7.5178e-24,1.2153e-23,2.2461e-23,2.8278e-23,4.5945e-23,7.8756e-23,9.8716e-23,1.109e-22,3.973e-22,4.5996e-22,5.1217e-22,6.3361e-22,8.2985e-22,1.0477e-21,1.2655e-21,1.3086e-21,1.3365e-21,1.6943e-21,3.1512e-21,3.2977e-21,4.204e-21,6.1161e-21,7.5171e-21,7.7728e-21,2.5025e-20,2.5336e-20,3.1861e-20,4.9782e-20,5.3981e-20,7.2957e-20,7.8321e-20,1.2845e-19,1.7707e-19,3.6554e-19,3.7191e-19,8.4451e-19,9.2685e-19,9.5475e-19,1.6168e-18,1.6717e-18,2.0192e-18,2.5877e-18,2.7957e-18,2.9639e-18,3.7294e-18,3.8738e-18,3.9709e-18,4.7616e-18,5.0736e-18,5.1583e-18,5.9934e-18,6.3254e-18,8.5192e-18,1.3919e-17,1.5186e-17,1.5542e-17,1.9332e-17,2.1152e-17,3.0466e-17,5.75e-17,6.9918e-17,9.5156e-17,1.0654e-16,1.4561e-16,1.9836e-16,2.0341e-16,2.0742e-16,2.0789e-16,2.2765e-16,2.2941e-16,3.0465e-16,3.4685e-16,4.4232e-16,4.4713e-16,4.7741e-16,7.2554e-16,7.3441e-16,8.9535e-16,1.1208e-15,1.6702e-15,1.7598e-15,2.0424e-15,2.1115e-15,2.2966e-15,2.6431e-15,3.2761e-15,3.2952e-15,5.3453e-15,9.2226e-15,9.7698e-15,1.0413e-14,1.0621e-14,1.4694e-14,1.7926e-14,3.4954e-14,3.619e-14,3.8813e-14,4.3666e-14,6.7473e-14,1.0577e-13,1.7215e-13,1.9912e-13,2.1713e-13,2.7036e-13,4.1961e-13,5.0841e-13,6.514e-13,9.5088e-13,1.3148e-12,1.3936e-12,2.585e-12,2.8022e-12,2.886e-12,3.3288e-12,3.5228e-12,5.524e-12,6.6903e-12,7.0702e-12,7.1099e-12,7.9816e-12,9.3236e-12,1.0018e-11,1.0343e-11,1.8033e-11,1.8045e-11,2.9591e-11,5.1714e-11,8.6021e-11,1.3667e-10,1.6668e-10,1.7555e-10,1.9812e-10,2.2013e-10,2.8183e-10,2.8957e-10,4.6378e-10,5.2187e-10,6.6025e-10,8.8234e-10,1.0507e-09,1.0715e-09,1.2341e-09,1.3563e-09,1.7082e-09,2.4006e-09,2.478e-09,2.8741e-09,3.6266e-09,4.3754e-09,4.4138e-09,8.3634e-09,9.2731e-09,9.7432e-09,1.1057e-08,1.1805e-08,1.3084e-08,1.5401e-08,1.6445e-08,1.8014e-08,2.0847e-08,2.5158e-08,3.0064e-08,3.0609e-08,3.7985e-08,4.3745e-08,4.9511e-08,6.5479e-08,7.4327e-08,7.782e-08,9.1533e-08,9.2435e-08,9.922e-08,1.0236e-07,1.5419e-07,1.7111e-07,1.7815e-07,2.1399e-07,2.3787e-07,2.4171e-07,3.089e-07,4.915e-07,5.6342e-07,6.0433e-07,7.1095e-07,7.2094e-07,8.6426e-07,8.8151e-07,1.1113e-06,1.272e-06,1.6645e-06,1.7052e-06,1.7443e-06,1.7665e-06,1.8411e-06,1.9041e-06,1.9436e-06,2.4095e-06,2.5197e-06,3.8333e-06,4.404e-06,4.826e-06,5.0036e-06,6.7371e-06,6.772e-06,7.463e-06,7.8087e-06,9.7887e-06,9.8586e-06,1.0026e-05,1.1841e-05,1.2396e-05,1.2599e-05,1.3237e-05,1.4106e-05,1.4978e-05,1.5451e-05,2.092e-05,2.1143e-05,2.4732e-05,3.1221e-05,3.8777e-05,5.22e-05,5.242e-05,5.8186e-05,6.63e-05,7.8658e-05,7.8807e-05,8.3578e-05,0.0001099,0.00011704,0.00011785,0.00016165,0.00017312,0.00018007,0.00020315,0.00022874,0.00028393,0.00029362,0.00034489,0.00049137,0.00049367,0.00050799,0.00053846,0.00056354,0.00059595,0.00063641,0.0011551,0.0013446,0.0016911,0.0019996,0.0020161,0.0020545,0.002624,0.0027761,0.002789,0.0035018,0.0050876,0.0051472,0.0057304,0.0058581,0.0074588,0.0079717,0.0092017,0.0099077,0.010743,0.010913,0.012001,0.012202,0.012298,0.015188,0.016161,0.016586,0.018035,0.018513,0.020851,0.021419,0.022602,0.025796,0.025828,0.027498,0.028082,0.028082,0.032162,0.032299,0.034127,0.036152,0.040919,0.045655,0.04933,0.055677,0.062132,0.071399,0.071798,0.079693,0.087923,0.093079,0.10805,0.11278,0.12286,0.12914,0.14301,0.14454,0.14773,0.15529,0.17203,0.19053,0.20087,0.21157,0.2173,0.21811,0.22879,0.24155,0.28329,0.29509,0.30171,0.31663,0.31673,0.33181,0.33372,0.34419,0.35274,0.38227,0.38664,0.4106,0.43345,0.5112,0.52621,0.5335,0.55269,0.57078,0.57768,0.59146,0.60137,0.61367,0.63396,0.63407,0.67036,0.67992,0.68192,0.68298,0.71906,0.71987,0.72346,0.72615,0.73311,0.74455,0.7547,0.79835,0.88124,0.90255,0.90435,0.90583,0.91054,0.91312,0.93593,0.94925,0.95804,0.96262,0.97137,0.97793,0.97905,0.98665,0.9902,0.99381,0.99789,0.99999,1,0.99979,0.99939,0.99914,0.99394,0.9917,0.97721,0.97197,0.96149,0.95524,0.95312,0.9408,0.93911,0.93534,0.92677,0.90912 1,2.3716e-41,4.6505e-41,4.8098e-41,5.8908e-41,6.8846e-41,8.4482e-41,1.2561e-40,3.2163e-40,5.834e-40,6.3922e-40,1.025e-39,1.1071e-39,1.503e-39,3.1558e-39,3.9804e-39,4.6766e-39,9.3864e-39,1.0577e-38,1.2073e-38,1.8818e-38,1.9736e-38,2.0284e-38,2.8428e-38,3.4689e-38,3.4914e-38,5.1123e-38,5.2927e-38,6.2859e-38,6.4298e-38,6.5728e-38,2.1051e-37,6.3537e-37,7.0186e-37,9.7036e-37,1.295e-36,1.6198e-36,2.1116e-36,2.8725e-36,4.9301e-36,6.6327e-36,1.0731e-35,1.9619e-35,2.074e-35,2.3341e-35,2.6031e-35,4.5878e-35,4.5917e-35,1.7617e-34,1.9456e-34,2.0559e-34,3.0686e-34,3.1603e-34,6.9163e-34,9.3998e-34,1.0678e-33,1.4121e-33,1.6861e-33,2.2847e-33,2.5102e-33,5.1663e-33,8.0514e-33,3.2199e-32,4.6995e-32,5.3318e-32,6.6818e-32,1.2398e-31,1.4069e-31,1.5738e-31,2.6613e-31,4.348e-31,5.2123e-31,6.0453e-31,1.0334e-30,2.233e-30,5.0062e-30,8.6008e-30,9.6321e-30,2.6355e-29,3.7265e-29,4.3787e-29,4.7033e-29,6.282e-29,2.0549e-28,2.1345e-28,2.622e-28,3.6318e-28,3.8714e-28,6.1547e-28,2.1895e-27,2.2264e-27,3.1773e-27,3.6092e-27,1.5304e-26,2.195e-26,2.2539e-26,3.1078e-26,4.7951e-26,4.8363e-26,5.0086e-26,6.501e-26,6.5162e-26,8.2502e-26,9.0374e-26,3.3e-25,5.7982e-25,5.9096e-25,1.1164e-24,1.323e-24,1.7196e-24,1.953e-24,2.1052e-24,2.2872e-24,2.3498e-24,2.5255e-24,3.3745e-24,3.49e-24,3.7406e-24,3.9593e-24,6.0718e-24,9.8246e-24,1.8181e-23,2.29e-23,3.7244e-23,6.3912e-23,8.0146e-23,9.0056e-23,3.2349e-22,3.7463e-22,4.1725e-22,5.1641e-22,6.7673e-22,8.5479e-22,1.0329e-21,1.0682e-21,1.091e-21,1.3838e-21,2.577e-21,2.6971e-21,3.4401e-21,5.0088e-21,6.1588e-21,6.3688e-21,2.0557e-20,2.0812e-20,2.6186e-20,4.0954e-20,4.4417e-20,6.0071e-20,6.4498e-20,1.0589e-19,1.4608e-19,3.0206e-19,3.0733e-19,6.9916e-19,7.6749e-19,7.9064e-19,1.3405e-18,1.3861e-18,1.675e-18,2.1478e-18,2.3209e-18,2.4608e-18,3.0981e-18,3.2183e-18,3.2991e-18,3.9577e-18,4.2177e-18,4.2882e-18,4.9842e-18,5.261e-18,7.0905e-18,1.1598e-17,1.2656e-17,1.2954e-17,1.6121e-17,1.7643e-17,2.5433e-17,4.8074e-17,5.8483e-17,7.9653e-17,8.9202e-17,1.2201e-16,1.6634e-16,1.7059e-16,1.7396e-16,1.7435e-16,1.9096e-16,1.9244e-16,2.5574e-16,2.9125e-16,3.7164e-16,3.7569e-16,4.012e-16,6.1035e-16,6.1783e-16,7.5359e-16,9.4389e-16,1.4079e-15,1.4837e-15,1.7226e-15,1.781e-15,1.9376e-15,2.2307e-15,2.7664e-15,2.7826e-15,4.5192e-15,7.8083e-15,8.2728e-15,8.8187e-15,8.9958e-15,1.2456e-14,1.5203e-14,2.9697e-14,3.075e-14,3.2984e-14,3.712e-14,5.7424e-14,9.0125e-14,1.4688e-13,1.6996e-13,1.8537e-13,2.3095e-13,3.5888e-13,4.3506e-13,5.5779e-13,8.1509e-13,1.1281e-12,1.1958e-12,2.2221e-12,2.4094e-12,2.4816e-12,2.8635e-12,3.0309e-12,4.7588e-12,5.7667e-12,6.0951e-12,6.1295e-12,6.8832e-12,8.0442e-12,8.6452e-12,8.9266e-12,1.5588e-11,1.5599e-11,2.5617e-11,4.4844e-11,7.4708e-11,1.1886e-10,1.4505e-10,1.5279e-10,1.725e-10,1.9173e-10,2.4566e-10,2.5243e-10,4.0489e-10,4.5578e-10,5.7706e-10,7.7188e-10,9.1964e-10,9.3799e-10,1.0808e-09,1.1881e-09,1.4976e-09,2.1069e-09,2.1751e-09,2.524e-09,3.1873e-09,3.8477e-09,3.8816e-09,7.3708e-09,8.1754e-09,8.5912e-09,9.7536e-09,1.0416e-08,1.1548e-08,1.3602e-08,1.4526e-08,1.5918e-08,1.8431e-08,2.2256e-08,2.6613e-08,2.7098e-08,3.3653e-08,3.8775e-08,4.3906e-08,5.8124e-08,6.6008e-08,6.9121e-08,8.135e-08,8.2154e-08,8.8207e-08,9.1013e-08,1.373e-07,1.5242e-07,1.5871e-07,1.9078e-07,2.1215e-07,2.1559e-07,2.7577e-07,4.3956e-07,5.0415e-07,5.409e-07,6.3674e-07,6.4572e-07,7.7463e-07,7.9016e-07,9.9699e-07,1.1418e-06,1.4958e-06,1.5325e-06,1.5678e-06,1.5878e-06,1.6551e-06,1.712e-06,1.7476e-06,2.1684e-06,2.268e-06,3.4564e-06,3.9733e-06,4.3557e-06,4.5166e-06,6.0891e-06,6.1208e-06,6.7481e-06,7.062e-06,8.8613e-06,8.9248e-06,9.0767e-06,1.0728e-05,1.1233e-05,1.1418e-05,1.1998e-05,1.279e-05,1.3584e-05,1.4015e-05,1.9001e-05,1.9205e-05,2.248e-05,2.8408e-05,3.5318e-05,4.761e-05,4.7811e-05,5.3096e-05,6.0537e-05,7.1879e-05,7.2016e-05,7.6397e-05,0.00010059,0.00010716,0.00010791,0.00014824,0.00015881,0.00016522,0.00018651,0.00021013,0.00026111,0.00027007,0.00031749,0.00045316,0.0004553,0.00046857,0.00049683,0.0005201,0.00055018,0.00058774,0.0010703,0.0012469,0.0015703,0.0018586,0.001874,0.0019099,0.0024429,0.0025854,0.0025975,0.0032658,0.0047559,0.004812,0.0053609,0.0054811,0.0069898,0.0074738,0.0086352,0.0093025,0.010093,0.010253,0.011282,0.011473,0.011564,0.014303,0.015225,0.015629,0.017004,0.017459,0.019681,0.020221,0.021346,0.024388,0.024418,0.026009,0.026566,0.026567,0.030458,0.030589,0.032335,0.034268,0.038826,0.04336,0.04688,0.052966,0.059163,0.068071,0.068455,0.076055,0.083985,0.088958,0.10342,0.10799,0.11774,0.12382,0.13727,0.13875,0.14184,0.14919,0.16545,0.18345,0.19352,0.20395,0.20954,0.21033,0.22076,0.23323,0.27408,0.28565,0.29214,0.30678,0.30689,0.32171,0.32358,0.33388,0.34229,0.37138,0.37569,0.39934,0.42193,0.49899,0.51392,0.52116,0.54027,0.5583,0.56518,0.57893,0.58884,0.60113,0.62143,0.62154,0.65793,0.66754,0.66954,0.67061,0.70693,0.70775,0.71137,0.71409,0.72111,0.73266,0.74292,0.78718,0.87193,0.89395,0.89582,0.89735,0.90224,0.90491,0.92872,0.94273,0.95205,0.95693,0.96633,0.97345,0.97469,0.9831,0.98712,0.99131,0.99633,0.9997,0.99979,1,0.9999,0.99978,0.99599,0.99414,0.98135,0.97657,0.96687,0.96103,0.95905,0.94742,0.94582,0.94224,0.93407,0.91717 1,1.9485e-41,3.8237e-41,3.9548e-41,4.8446e-41,5.6629e-41,6.9506e-41,1.0339e-40,2.6499e-40,4.8096e-40,5.2703e-40,8.4557e-40,9.1332e-40,1.2403e-39,2.6064e-39,3.2883e-39,3.8641e-39,7.7615e-39,8.747e-39,9.9859e-39,1.5572e-38,1.6333e-38,1.6787e-38,2.3535e-38,2.8724e-38,2.8911e-38,4.2351e-38,4.3847e-38,5.2085e-38,5.3279e-38,5.4465e-38,1.7466e-37,5.2781e-37,5.8311e-37,8.0647e-37,1.0767e-36,1.347e-36,1.7565e-36,2.3902e-36,4.1049e-36,5.5244e-36,8.9429e-36,1.6361e-35,1.7297e-35,1.9469e-35,2.1715e-35,3.8296e-35,3.8329e-35,1.4728e-34,1.6268e-34,1.7191e-34,2.5671e-34,2.6439e-34,5.7914e-34,7.8737e-34,8.9457e-34,1.1834e-33,1.4133e-33,1.9157e-33,2.105e-33,4.3362e-33,6.7612e-33,2.7084e-32,3.9547e-32,4.4875e-32,5.6252e-32,1.0445e-31,1.1855e-31,1.3263e-31,2.2442e-31,3.6688e-31,4.399e-31,5.1029e-31,8.7292e-31,1.8879e-30,4.2368e-30,7.2838e-30,8.1583e-30,2.2351e-29,3.1616e-29,3.7158e-29,3.9916e-29,5.3333e-29,1.7472e-28,1.815e-28,2.2301e-28,3.0902e-28,3.2943e-28,5.2404e-28,1.8673e-27,1.8988e-27,2.7111e-27,3.0801e-27,1.3085e-26,1.8776e-26,1.9281e-26,2.6597e-26,4.1061e-26,4.1414e-26,4.2892e-26,5.5691e-26,5.5821e-26,7.0698e-26,7.7453e-26,2.8331e-25,4.9817e-25,5.0775e-25,9.6005e-25,1.138e-24,1.4796e-24,1.6808e-24,1.8119e-24,1.9688e-24,2.0228e-24,2.1742e-24,2.9063e-24,3.006e-24,3.2221e-24,3.4107e-24,5.2336e-24,8.4741e-24,1.5695e-23,1.9776e-23,3.2185e-23,5.5271e-23,6.9334e-23,7.7919e-23,2.8041e-22,3.248e-22,3.6181e-22,4.4793e-22,5.8723e-22,7.4199e-22,8.9683e-22,9.2754e-22,9.4734e-22,1.202e-21,2.2405e-21,2.3452e-21,2.9922e-21,4.3592e-21,5.3617e-21,5.5447e-21,1.7928e-20,1.8152e-20,2.2846e-20,3.5755e-20,3.8783e-20,5.2476e-20,5.6349e-20,9.2584e-20,1.2778e-19,2.6452e-19,2.6915e-19,6.1309e-19,6.731e-19,6.9344e-19,1.1767e-18,1.2168e-18,1.4708e-18,1.8867e-18,2.039e-18,2.1621e-18,2.7231e-18,2.8289e-18,2.9001e-18,3.48e-18,3.709e-18,3.7711e-18,4.3842e-18,4.6281e-18,6.2405e-18,1.0216e-17,1.115e-17,1.1412e-17,1.4208e-17,1.5551e-17,2.2431e-17,4.2444e-17,5.1651e-17,7.0383e-17,7.8836e-17,1.0789e-16,1.4716e-16,1.5093e-16,1.5391e-16,1.5426e-16,1.6899e-16,1.703e-16,2.2642e-16,2.5792e-16,3.2925e-16,3.3284e-16,3.5548e-16,5.4118e-16,5.4782e-16,6.6843e-16,8.3755e-16,1.2502e-15,1.3175e-15,1.5301e-15,1.5821e-15,1.7214e-15,1.9823e-15,2.4593e-15,2.4738e-15,4.0211e-15,6.9544e-15,7.3688e-15,7.856e-15,8.014e-15,1.1103e-14,1.3557e-14,2.6513e-14,2.7454e-14,2.9453e-14,3.3153e-14,5.1328e-14,8.0626e-14,1.3152e-13,1.5222e-13,1.6606e-13,2.0697e-13,3.2188e-13,3.9036e-13,5.0072e-13,7.3222e-13,1.014e-12,1.075e-12,2e-12,2.169e-12,2.2341e-12,2.5787e-12,2.7297e-12,4.2897e-12,5.2003e-12,5.497e-12,5.5281e-12,6.2093e-12,7.2589e-12,7.8024e-12,8.0568e-12,1.4085e-11,1.4095e-11,2.3171e-11,4.0608e-11,6.7724e-11,1.0786e-10,1.3168e-10,1.3872e-10,1.5666e-10,1.7416e-10,2.2326e-10,2.2943e-10,3.6837e-10,4.1477e-10,5.2542e-10,7.0326e-10,8.3821e-10,8.5497e-10,9.8543e-10,1.0835e-09,1.3665e-09,1.9239e-09,1.9863e-09,2.3057e-09,2.9132e-09,3.5184e-09,3.5495e-09,6.7502e-09,7.4888e-09,7.8707e-09,8.9382e-09,9.5465e-09,1.0587e-08,1.2474e-08,1.3325e-08,1.4604e-08,1.6916e-08,2.0436e-08,2.4447e-08,2.4893e-08,3.0931e-08,3.5652e-08,4.0382e-08,5.3495e-08,6.0771e-08,6.3645e-08,7.4935e-08,7.5677e-08,8.1268e-08,8.386e-08,1.2664e-07,1.4062e-07,1.4645e-07,1.7612e-07,1.959e-07,1.9909e-07,2.5482e-07,4.0667e-07,4.6659e-07,5.007e-07,5.8967e-07,5.9801e-07,7.1775e-07,7.3218e-07,9.2442e-07,1.0591e-06,1.3884e-06,1.4226e-06,1.4555e-06,1.4741e-06,1.5368e-06,1.5897e-06,1.6229e-06,2.0149e-06,2.1077e-06,3.216e-06,3.6984e-06,4.0554e-06,4.2057e-06,5.6748e-06,5.7044e-06,6.2909e-06,6.5844e-06,8.2676e-06,8.327e-06,8.4691e-06,1.0015e-05,1.0488e-05,1.0661e-05,1.1204e-05,1.1946e-05,1.269e-05,1.3094e-05,1.7769e-05,1.796e-05,2.1033e-05,2.6599e-05,3.3092e-05,4.4651e-05,4.484e-05,4.9814e-05,5.6819e-05,6.7503e-05,6.7632e-05,7.176e-05,9.4573e-05,0.00010077,0.00010148,0.00013955,0.00014954,0.00015559,0.00017572,0.00019805,0.00024629,0.00025477,0.00029968,0.0004283,0.00043032,0.00044291,0.00046973,0.00049181,0.00052036,0.00055602,0.0010148,0.001183,0.0014912,0.0017662,0.0017809,0.0018151,0.002324,0.0024601,0.0024717,0.0031107,0.0045373,0.004591,0.0051172,0.0052325,0.00668,0.0071447,0.0082605,0.0089019,0.0096618,0.0098164,0.010806,0.01099,0.011078,0.013715,0.014605,0.014993,0.01632,0.016759,0.018903,0.019424,0.020511,0.023449,0.023479,0.025017,0.025555,0.025556,0.029321,0.029448,0.031138,0.033011,0.037427,0.041823,0.045239,0.051149,0.057171,0.065836,0.06621,0.073609,0.081336,0.086184,0.10029,0.10476,0.11429,0.12023,0.13338,0.13483,0.13786,0.14505,0.16099,0.17864,0.18853,0.19877,0.20427,0.20505,0.2153,0.22756,0.26779,0.2792,0.28561,0.30006,0.30016,0.31479,0.31664,0.32682,0.33513,0.36391,0.36818,0.3916,0.414,0.49056,0.50542,0.51264,0.53167,0.54966,0.55652,0.57025,0.58014,0.59242,0.61273,0.61284,0.64928,0.65891,0.66092,0.66199,0.69846,0.69928,0.70292,0.70565,0.71271,0.72434,0.73467,0.77932,0.86532,0.8878,0.88971,0.89128,0.89629,0.89903,0.92351,0.938,0.94768,0.95277,0.96261,0.97012,0.97143,0.98039,0.98474,0.98933,0.99501,0.99924,0.99939,0.9999,1,0.99998,0.99717,0.99559,0.98399,0.97952,0.97038,0.96483,0.96294,0.9518,0.95026,0.94682,0.93894,0.92257 1,1.7839e-41,3.5017e-41,3.6218e-41,4.4371e-41,5.187e-41,6.367e-41,9.4724e-41,2.429e-40,4.4099e-40,4.8325e-40,7.755e-40,8.3767e-40,1.1378e-39,2.3917e-39,3.0178e-39,3.5465e-39,7.1259e-39,8.0312e-39,9.1694e-39,1.4302e-38,1.5001e-38,1.5418e-38,2.162e-38,2.6389e-38,2.6561e-38,3.8915e-38,4.0291e-38,4.7865e-38,4.8962e-38,5.0053e-38,1.606e-37,4.856e-37,5.3651e-37,7.4214e-37,9.9091e-37,1.2399e-36,1.617e-36,2.2008e-36,3.7806e-36,5.0886e-36,8.2394e-36,1.5079e-35,1.5941e-35,1.7944e-35,2.0016e-35,3.5309e-35,3.534e-35,1.3589e-34,1.501e-34,1.5862e-34,2.3692e-34,2.4401e-34,5.3473e-34,7.2711e-34,8.2616e-34,1.093e-33,1.3055e-33,1.7699e-33,1.9449e-33,4.0079e-33,6.2508e-33,2.5058e-32,3.6596e-32,4.1529e-32,5.2065e-32,9.671e-32,1.0977e-31,1.2281e-31,2.0787e-31,3.3991e-31,4.0761e-31,4.7287e-31,8.0914e-31,1.7507e-30,3.9307e-30,6.7595e-30,7.5715e-30,2.0755e-29,2.9365e-29,3.4515e-29,3.7078e-29,4.9549e-29,1.6243e-28,1.6874e-28,2.0735e-28,2.8739e-28,3.0638e-28,4.875e-28,1.7384e-27,1.7677e-27,2.5244e-27,2.8682e-27,1.2195e-26,1.7504e-26,1.7974e-26,2.4799e-26,3.8295e-26,3.8624e-26,4.0004e-26,5.1949e-26,5.2071e-26,6.5957e-26,7.2264e-26,2.6454e-25,4.6532e-25,4.7427e-25,8.9709e-25,1.0635e-24,1.383e-24,1.5711e-24,1.6938e-24,1.8405e-24,1.891e-24,2.0327e-24,2.7176e-24,2.8108e-24,3.013e-24,3.1896e-24,4.8956e-24,7.9291e-24,1.4691e-23,1.8514e-23,3.014e-23,5.1778e-23,6.4961e-23,7.301e-23,2.6296e-22,3.0462e-22,3.3935e-22,4.2019e-22,5.5095e-22,6.9626e-22,8.4166e-22,8.705e-22,8.8909e-22,1.1283e-21,2.104e-21,2.2023e-21,2.8104e-21,4.0953e-21,5.0378e-21,5.2099e-21,1.6859e-20,1.7069e-20,2.1487e-20,3.3638e-20,3.6489e-20,4.9382e-20,5.3029e-20,8.7159e-20,1.2032e-19,2.4921e-19,2.5357e-19,5.7792e-19,6.3454e-19,6.5372e-19,1.1097e-18,1.1475e-18,1.3873e-18,1.7799e-18,1.9237e-18,2.04e-18,2.5696e-18,2.6695e-18,2.7368e-18,3.2845e-18,3.5007e-18,3.5594e-18,4.1386e-18,4.369e-18,5.8924e-18,9.6493e-18,1.0532e-17,1.078e-17,1.3423e-17,1.4693e-17,2.1199e-17,4.0132e-17,4.8845e-17,6.6575e-17,7.4577e-17,1.0208e-16,1.3928e-16,1.4284e-16,1.4567e-16,1.46e-16,1.5995e-16,1.6119e-16,2.1436e-16,2.4421e-16,3.118e-16,3.152e-16,3.3666e-16,5.1269e-16,5.1899e-16,6.3335e-16,7.9373e-16,1.1851e-15,1.249e-15,1.4507e-15,1.5001e-15,1.6323e-15,1.8799e-15,2.3326e-15,2.3463e-15,3.8154e-15,6.6015e-15,6.9952e-15,7.458e-15,7.6082e-15,1.0543e-14,1.2876e-14,2.5194e-14,2.609e-14,2.7991e-14,3.1511e-14,4.8803e-14,7.6688e-14,1.2515e-13,1.4486e-13,1.5804e-13,1.9702e-13,3.0652e-13,3.7178e-13,4.7699e-13,6.9775e-13,9.6655e-13,1.0248e-12,1.9075e-12,2.0688e-12,2.131e-12,2.46e-12,2.6042e-12,4.0941e-12,4.964e-12,5.2475e-12,5.2772e-12,5.9281e-12,6.9312e-12,7.4506e-12,7.6938e-12,1.3457e-11,1.3467e-11,2.2148e-11,3.8836e-11,6.48e-11,1.0325e-10,1.2607e-10,1.3282e-10,1.5001e-10,1.6679e-10,2.1386e-10,2.1978e-10,3.5304e-10,3.9756e-10,5.0373e-10,6.7442e-10,8.0397e-10,8.2006e-10,9.4533e-10,1.0395e-09,1.3113e-09,1.8468e-09,1.9068e-09,2.2138e-09,2.7977e-09,3.3796e-09,3.4095e-09,6.4883e-09,7.1991e-09,7.5665e-09,8.5939e-09,9.1795e-09,1.0181e-08,1.1998e-08,1.2817e-08,1.4049e-08,1.6275e-08,1.9666e-08,2.3531e-08,2.3961e-08,2.978e-08,3.433e-08,3.889e-08,5.1535e-08,5.8553e-08,6.1325e-08,7.2217e-08,7.2933e-08,7.8327e-08,8.0828e-08,1.2212e-07,1.3562e-07,1.4124e-07,1.6989e-07,1.89e-07,1.9208e-07,2.4592e-07,3.9268e-07,4.5062e-07,4.836e-07,5.6965e-07,5.7771e-07,6.9354e-07,7.075e-07,8.9351e-07,1.0239e-06,1.3427e-06,1.3758e-06,1.4076e-06,1.4257e-06,1.4863e-06,1.5376e-06,1.5697e-06,1.9494e-06,2.0393e-06,3.1133e-06,3.5809e-06,3.9271e-06,4.0728e-06,5.4977e-06,5.5264e-06,6.0954e-06,6.3801e-06,8.0135e-06,8.0712e-06,8.2091e-06,9.7095e-06,1.0169e-05,1.0337e-05,1.0865e-05,1.1585e-05,1.2307e-05,1.2699e-05,1.7241e-05,1.7426e-05,2.0413e-05,2.5823e-05,3.2136e-05,4.338e-05,4.3564e-05,4.8404e-05,5.5221e-05,6.5621e-05,6.5746e-05,6.9766e-05,9.1982e-05,9.8019e-05,9.8706e-05,0.00013581,0.00014554,0.00015144,0.00017107,0.00019284,0.0002399,0.00024817,0.00029199,0.00041755,0.00041953,0.00043182,0.00045801,0.00047958,0.00050747,0.0005423,0.0009908,0.0011553,0.0014569,0.0017261,0.0017405,0.001774,0.0022724,0.0024057,0.0024171,0.0030432,0.0044421,0.0044948,0.005011,0.0051242,0.0065449,0.0070012,0.008097,0.0087271,0.0094737,0.0096256,0.010599,0.010779,0.010865,0.013459,0.014333,0.014716,0.016021,0.016452,0.018562,0.019075,0.020145,0.023038,0.023067,0.024582,0.025112,0.025113,0.028823,0.028947,0.030613,0.032459,0.036813,0.041149,0.044518,0.05035,0.056295,0.064852,0.065221,0.072531,0.080168,0.084961,0.098915,0.10333,0.11276,0.11864,0.13166,0.1331,0.1361,0.14322,0.15901,0.17652,0.18632,0.19648,0.20193,0.2027,0.21288,0.22505,0.265,0.27633,0.2827,0.29706,0.29716,0.31172,0.31355,0.32368,0.33195,0.36059,0.36483,0.38815,0.41046,0.48679,0.50162,0.50882,0.52782,0.54578,0.55263,0.56636,0.57624,0.58851,0.60882,0.60893,0.64539,0.65503,0.65704,0.65811,0.69464,0.69546,0.69911,0.70185,0.70893,0.72058,0.73094,0.77576,0.8623,0.885,0.88692,0.88851,0.89357,0.89634,0.92112,0.93582,0.94566,0.95084,0.96088,0.96856,0.9699,0.97912,0.98361,0.98838,0.99434,0.99897,0.99914,0.99978,0.99998,1,0.99764,0.99617,0.98511,0.98079,0.9719,0.96648,0.96462,0.95371,0.9522,0.94882,0.94107,0.92494 1,6.9357e-42,1.3661e-41,1.4132e-41,1.7331e-41,2.0275e-41,2.4914e-41,3.714e-41,9.5693e-41,1.7426e-40,1.9105e-40,3.0734e-40,3.3211e-40,4.518e-40,9.5336e-40,1.2044e-39,1.4165e-39,2.8566e-39,3.2215e-39,3.6805e-39,5.754e-39,6.0367e-39,6.2055e-39,8.717e-39,1.0651e-38,1.0721e-38,1.5739e-38,1.6298e-38,1.9379e-38,1.9826e-38,2.027e-38,6.544e-38,1.9903e-37,2.2001e-37,3.0486e-37,4.0768e-37,5.1071e-37,6.6701e-37,9.0932e-37,1.5666e-36,2.112e-36,3.4287e-36,6.2954e-36,6.6575e-36,7.4988e-36,8.3696e-36,1.481e-35,1.4823e-35,5.742e-35,6.3461e-35,6.7084e-35,1.0042e-34,1.0344e-34,2.2767e-34,3.1011e-34,3.526e-34,4.6723e-34,5.5862e-34,7.5862e-34,8.3408e-34,1.7257e-33,2.6983e-33,1.0902e-32,1.5957e-32,1.8121e-32,2.2747e-32,4.2404e-32,4.8164e-32,5.3923e-32,9.1548e-32,1.5012e-31,1.8021e-31,2.0925e-31,3.5918e-31,7.8066e-31,1.7611e-30,3.0383e-30,3.4056e-30,9.3916e-30,1.3315e-29,1.5665e-29,1.6836e-29,2.2539e-29,7.4418e-29,7.7326e-29,9.5141e-29,1.3213e-28,1.4091e-28,2.2485e-28,8.0811e-28,8.2183e-28,1.1762e-27,1.3375e-27,5.7386e-27,8.2553e-27,8.4787e-27,1.1722e-26,1.8151e-26,1.8308e-26,1.8966e-26,2.467e-26,2.4729e-26,3.1371e-26,3.439e-26,1.2695e-25,2.2412e-25,2.2846e-25,4.3393e-25,5.1498e-25,6.7086e-25,7.6276e-25,8.2272e-25,8.9449e-25,9.1919e-25,9.8851e-25,1.3241e-24,1.3699e-24,1.4691e-24,1.5557e-24,2.3947e-24,3.891e-24,7.2392e-24,9.1369e-24,1.4923e-23,2.5731e-23,3.2332e-23,3.6368e-23,1.3214e-22,1.5323e-22,1.7083e-22,2.1184e-22,2.7828e-22,3.5225e-22,4.2638e-22,4.4109e-22,4.5058e-22,5.7274e-22,1.0727e-21,1.1232e-21,1.4358e-21,2.0979e-21,2.5845e-21,2.6734e-21,8.7241e-21,8.8337e-21,1.1139e-20,1.7494e-20,1.8988e-20,2.5754e-20,2.767e-20,4.5645e-20,6.3163e-20,1.3153e-19,1.3384e-19,3.0694e-19,3.3724e-19,3.4752e-19,5.9226e-19,6.1262e-19,7.417e-19,9.534e-19,1.031e-18,1.0938e-18,1.3802e-18,1.4343e-18,1.4707e-18,1.7675e-18,1.8848e-18,1.9167e-18,2.2311e-18,2.3563e-18,3.1853e-18,5.2362e-18,5.719e-18,5.8548e-18,7.3026e-18,7.9992e-18,1.1575e-17,2.2022e-17,2.6845e-17,3.668e-17,4.1126e-17,5.6435e-17,7.719e-17,7.9183e-17,8.0764e-17,8.0949e-17,8.8747e-17,8.9441e-17,1.1922e-16,1.3596e-16,1.7394e-16,1.7585e-16,1.8792e-16,2.8717e-16,2.9073e-16,3.5537e-16,4.4619e-16,6.6843e-16,7.0477e-16,8.1959e-16,8.4771e-16,9.2306e-16,1.0643e-15,1.323e-15,1.3309e-15,2.1731e-15,3.7774e-15,4.0046e-15,4.272e-15,4.3587e-15,6.0571e-15,7.4098e-15,1.4583e-14,1.5106e-14,1.6217e-14,1.8275e-14,2.8412e-14,4.4825e-14,7.3469e-14,8.5155e-14,9.2975e-14,1.1613e-13,1.814e-13,2.2041e-13,2.8343e-13,4.1605e-13,5.7806e-13,6.1322e-13,1.1481e-12,1.2461e-12,1.2839e-12,1.4841e-12,1.572e-12,2.4819e-12,3.0148e-12,3.1886e-12,3.2069e-12,3.6064e-12,4.2229e-12,4.5426e-12,4.6923e-12,8.2519e-12,8.2576e-12,1.3647e-11,2.4063e-11,4.0356e-11,6.4603e-11,7.9045e-11,8.3322e-11,9.4222e-11,1.0487e-10,1.3482e-10,1.3858e-10,2.2371e-10,2.5223e-10,3.2039e-10,4.3028e-10,5.1389e-10,5.2429e-10,6.0529e-10,6.6629e-10,8.4256e-10,1.1911e-09,1.2302e-09,1.4305e-09,1.8125e-09,2.194e-09,2.2136e-09,4.2428e-09,4.7131e-09,4.9564e-09,5.6375e-09,6.0261e-09,6.6916e-09,7.9005e-09,8.4459e-09,9.2676e-09,1.0754e-08,1.3023e-08,1.5615e-08,1.5904e-08,1.9816e-08,2.2882e-08,2.5959e-08,3.4515e-08,3.9274e-08,4.1156e-08,4.8561e-08,4.9048e-08,5.2721e-08,5.4425e-08,8.264e-08,9.1893e-08,9.5751e-08,1.1544e-07,1.2859e-07,1.3071e-07,1.6786e-07,2.6962e-07,3.0994e-07,3.3292e-07,3.9298e-07,3.9862e-07,4.7967e-07,4.8944e-07,6.2001e-07,7.1173e-07,9.3667e-07,9.6009e-07,9.8259e-07,9.9537e-07,1.0383e-06,1.0746e-06,1.0973e-06,1.3667e-06,1.4306e-06,2.1966e-06,2.5314e-06,2.7796e-06,2.8842e-06,3.9095e-06,3.9302e-06,4.3408e-06,4.5465e-06,5.7288e-06,5.7707e-06,5.8707e-06,6.9603e-06,7.2943e-06,7.4166e-06,7.8009e-06,8.3257e-06,8.8526e-06,9.1388e-06,1.2463e-05,1.2599e-05,1.4792e-05,1.8778e-05,2.3446e-05,3.1795e-05,3.1932e-05,3.5537e-05,4.0625e-05,4.8405e-05,4.8499e-05,5.1513e-05,6.8214e-05,7.2765e-05,7.3283e-05,0.00010135,0.00010874,0.00011322,0.00012815,0.00014475,0.00018072,0.00018707,0.00022071,0.00031756,0.00031909,0.00032861,0.0003489,0.00036562,0.00038727,0.00041434,0.00076531,0.00089496,0.0011335,0.0013473,0.0013588,0.0013854,0.0017833,0.00189,0.0018991,0.0024021,0.0035337,0.0035765,0.0039964,0.0040886,0.0052497,0.0056239,0.0065249,0.0070444,0.0076612,0.0077868,0.0085927,0.0087421,0.0088139,0.010972,0.011702,0.012022,0.013114,0.013476,0.015249,0.015681,0.016583,0.019028,0.019052,0.020336,0.020786,0.020786,0.023941,0.024047,0.025468,0.027045,0.030775,0.034503,0.037409,0.042455,0.047619,0.055083,0.055406,0.06181,0.068526,0.072753,0.085108,0.089031,0.097433,0.10269,0.11436,0.11565,0.11835,0.12476,0.13903,0.15492,0.16386,0.17314,0.17813,0.17884,0.18817,0.19936,0.23634,0.24688,0.25282,0.26624,0.26634,0.27997,0.2817,0.29122,0.299,0.32607,0.33009,0.35227,0.37357,0.44716,0.46159,0.46861,0.48718,0.50479,0.51153,0.52506,0.53482,0.54697,0.56715,0.56726,0.60372,0.61341,0.61544,0.61651,0.65347,0.65431,0.65802,0.66081,0.66802,0.67994,0.69056,0.73691,0.82865,0.85339,0.85551,0.85725,0.86283,0.8659,0.89367,0.91051,0.92198,0.9281,0.94015,0.94961,0.95129,0.96309,0.96909,0.97572,0.98475,0.9935,0.99394,0.99599,0.99717,0.99764,1,0.99982,0.99456,0.99182,0.98566,0.98167,0.98028,0.97182,0.97063,0.96792,0.96163,0.94817 1,5.3514e-42,1.055e-41,1.0914e-41,1.3389e-41,1.5667e-41,1.9257e-41,2.8723e-41,7.4103e-41,1.3506e-40,1.4809e-40,2.3838e-40,2.5762e-40,3.5062e-40,7.4064e-40,9.3594e-40,1.1011e-39,2.2226e-39,2.5069e-39,2.8647e-39,4.4814e-39,4.7019e-39,4.8336e-39,6.7931e-39,8.3026e-39,8.357e-39,1.2275e-38,1.2712e-38,1.5119e-38,1.5468e-38,1.5815e-38,5.1144e-38,1.558e-37,1.7225e-37,2.3879e-37,3.1947e-37,4.0034e-37,5.2306e-37,7.1339e-37,1.23e-36,1.659e-36,2.6952e-36,4.953e-36,5.2384e-36,5.9014e-36,6.5877e-36,1.1667e-35,1.1677e-35,4.5325e-35,5.0101e-35,5.2966e-35,7.9333e-35,8.1725e-35,1.8009e-34,2.4541e-34,2.7909e-34,3.6998e-34,4.4247e-34,6.0117e-34,6.6106e-34,1.3693e-33,2.1424e-33,8.6749e-33,1.2704e-32,1.443e-32,1.8121e-32,3.3812e-32,3.8413e-32,4.3014e-32,7.3087e-32,1.1995e-31,1.4403e-31,1.6727e-31,2.8737e-31,6.2536e-31,1.4126e-30,2.4392e-30,2.7346e-30,7.5536e-30,1.0715e-29,1.261e-29,1.3554e-29,1.8153e-29,6.0058e-29,6.2408e-29,7.6813e-29,1.0673e-28,1.1384e-28,1.818e-28,6.5477e-28,6.6591e-28,9.5364e-28,1.0846e-27,4.6652e-27,6.7153e-27,6.8973e-27,9.5409e-27,1.4785e-26,1.4913e-26,1.545e-26,2.0106e-26,2.0154e-26,2.5578e-26,2.8044e-26,1.0376e-25,1.8336e-25,1.8692e-25,3.5544e-25,4.2195e-25,5.4993e-25,6.2541e-25,6.7466e-25,7.3363e-25,7.5392e-25,8.1088e-25,1.0868e-24,1.1244e-24,1.206e-24,1.2772e-24,1.9675e-24,3.1997e-24,5.9598e-24,7.5252e-24,1.2302e-23,2.1233e-23,2.6691e-23,3.0029e-23,1.0937e-22,1.2687e-22,1.4146e-22,1.7549e-22,2.3066e-22,2.921e-22,3.5369e-22,3.6592e-22,3.7381e-22,4.7537e-22,8.9142e-22,9.3346e-22,1.1938e-21,1.7455e-21,2.1513e-21,2.2255e-21,7.2791e-21,7.3707e-21,9.2981e-21,1.4617e-20,1.5867e-20,2.1534e-20,2.314e-20,3.821e-20,5.2908e-20,1.1033e-19,1.1228e-19,2.5793e-19,2.8345e-19,2.921e-19,4.9836e-19,5.1553e-19,6.244e-19,8.0303e-19,8.6855e-19,9.2156e-19,1.1634e-18,1.2091e-18,1.2399e-18,1.4907e-18,1.5898e-18,1.6167e-18,1.8826e-18,1.9884e-18,2.6896e-18,4.426e-18,4.8351e-18,4.9502e-18,6.1771e-18,6.7676e-18,9.8003e-18,1.8672e-17,2.2771e-17,3.1134e-17,3.4917e-17,4.7947e-17,6.5625e-17,6.7323e-17,6.8671e-17,6.8828e-17,7.5474e-17,7.6065e-17,1.0145e-16,1.1573e-16,1.4814e-16,1.4978e-16,1.6008e-16,2.4485e-16,2.4789e-16,3.0315e-16,3.8081e-16,5.7101e-16,6.0213e-16,7.0046e-16,7.2455e-16,7.8911e-16,9.1018e-16,1.132e-15,1.1387e-15,1.8613e-15,3.2396e-15,3.435e-15,3.6648e-15,3.7394e-15,5.2005e-15,6.3648e-15,1.2547e-14,1.2998e-14,1.3956e-14,1.5731e-14,2.4483e-14,3.8668e-14,6.3453e-14,7.3573e-14,8.0346e-14,1.0041e-13,1.5702e-13,1.9087e-13,2.456e-13,3.6086e-13,5.018e-13,5.324e-13,9.9834e-13,1.0838e-12,1.1168e-12,1.2914e-12,1.368e-12,2.1625e-12,2.6281e-12,2.78e-12,2.796e-12,3.1453e-12,3.6845e-12,3.9641e-12,4.0951e-12,7.2123e-12,7.2173e-12,1.1944e-11,2.1092e-11,3.5422e-11,5.6778e-11,6.951e-11,7.3281e-11,8.2896e-11,9.2295e-11,1.1873e-10,1.2206e-10,1.973e-10,2.2253e-10,2.8285e-10,3.8018e-10,4.5429e-10,4.635e-10,5.3534e-10,5.8945e-10,7.459e-10,1.0555e-09,1.0903e-09,1.2684e-09,1.6082e-09,1.9478e-09,1.9653e-09,3.7741e-09,4.1938e-09,4.411e-09,5.0191e-09,5.3662e-09,5.9607e-09,7.0411e-09,7.5288e-09,8.2636e-09,9.5937e-09,1.1625e-08,1.3946e-08,1.4205e-08,1.7711e-08,2.0461e-08,2.3222e-08,3.0903e-08,3.518e-08,3.6871e-08,4.3528e-08,4.3966e-08,4.727e-08,4.8802e-08,7.4204e-08,8.2542e-08,8.6019e-08,1.0377e-07,1.1563e-07,1.1754e-07,1.5108e-07,2.4306e-07,2.7954e-07,3.0035e-07,3.5473e-07,3.5983e-07,4.3328e-07,4.4214e-07,5.6055e-07,6.4379e-07,8.4809e-07,8.6937e-07,8.8981e-07,9.0143e-07,9.4043e-07,9.7345e-07,9.9413e-07,1.2392e-06,1.2973e-06,1.995e-06,2.3003e-06,2.5267e-06,2.6222e-06,3.5583e-06,3.5773e-06,3.9525e-06,4.1405e-06,5.2219e-06,5.2602e-06,5.3517e-06,6.3492e-06,6.655e-06,6.767e-06,7.1191e-06,7.5999e-06,8.0828e-06,8.3452e-06,1.1394e-05,1.1519e-05,1.3533e-05,1.7197e-05,2.1491e-05,2.9179e-05,2.9306e-05,3.2629e-05,3.7321e-05,4.4502e-05,4.4589e-05,4.7371e-05,6.2805e-05,6.7014e-05,6.7492e-05,9.3472e-05,0.00010032,0.00010447,0.00011831,0.00013371,0.00016711,0.000173,0.00020427,0.0002944,0.00029583,0.00030469,0.0003236,0.00033918,0.00035936,0.00038461,0.00071252,0.00083387,0.0010574,0.001258,0.0012687,0.0012938,0.0016675,0.0017678,0.0017764,0.0022497,0.0033166,0.003357,0.0037534,0.0038405,0.0049382,0.0052923,0.0061456,0.006638,0.0072228,0.0073419,0.0081066,0.0082485,0.0083166,0.010367,0.011061,0.011365,0.012405,0.01275,0.014439,0.01485,0.01571,0.018043,0.018066,0.019292,0.019721,0.019722,0.022737,0.022838,0.024197,0.025706,0.029279,0.032853,0.035641,0.040486,0.045449,0.052633,0.052944,0.059115,0.065592,0.069672,0.081611,0.085405,0.093538,0.098628,0.10994,0.1112,0.11381,0.12004,0.13391,0.14937,0.15807,0.16711,0.17198,0.17267,0.18177,0.1927,0.22886,0.23919,0.24501,0.25817,0.25826,0.27164,0.27334,0.28268,0.29033,0.31695,0.32092,0.34276,0.36377,0.43654,0.45083,0.45779,0.47622,0.49372,0.50042,0.51387,0.52358,0.53569,0.5558,0.55591,0.59231,0.602,0.60402,0.6051,0.64211,0.64295,0.64667,0.64947,0.65671,0.66867,0.67935,0.72602,0.819,0.84424,0.84641,0.84819,0.85391,0.85705,0.88557,0.90296,0.91485,0.92121,0.93379,0.94371,0.94548,0.95797,0.96436,0.97149,0.98133,0.99119,0.9917,0.99414,0.99559,0.99617,0.99982,1,0.99634,0.99404,0.98864,0.98506,0.98379,0.97603,0.97492,0.97241,0.96653,0.95384 1,1.6377e-42,3.2424e-42,3.355e-42,4.1209e-42,4.8269e-42,5.9405e-42,8.8828e-42,2.3054e-41,4.2177e-41,4.6273e-41,7.4712e-41,8.0782e-41,1.1016e-40,2.338e-40,2.959e-40,3.4847e-40,7.0658e-40,7.9759e-40,9.122e-40,1.4311e-39,1.502e-39,1.5443e-39,2.1752e-39,2.662e-39,2.6795e-39,3.9457e-39,4.087e-39,4.8664e-39,4.9794e-39,5.0919e-39,1.6593e-38,5.0916e-38,5.6329e-38,7.8258e-38,1.049e-37,1.3165e-37,1.7231e-37,2.3549e-37,4.0752e-37,5.5073e-37,8.9761e-37,1.6563e-36,1.7524e-36,1.9758e-36,2.2072e-36,3.924e-36,3.9275e-36,1.5386e-35,1.7018e-35,1.7998e-35,2.7032e-35,2.7853e-35,6.1709e-35,8.4273e-35,9.5925e-35,1.2741e-34,1.5256e-34,2.0772e-34,2.2856e-34,4.7583e-34,7.4683e-34,3.0538e-33,4.4844e-33,5.0981e-33,6.4123e-33,1.2018e-32,1.3666e-32,1.5315e-32,2.6121e-32,4.302e-32,5.1725e-32,6.0138e-32,1.0372e-31,2.2698e-31,5.1578e-31,8.9418e-31,1.0033e-30,2.7922e-30,3.9712e-30,4.679e-30,5.032e-30,6.7542e-30,2.2546e-29,2.3435e-29,2.8889e-29,4.0241e-29,4.2942e-29,6.8819e-29,2.5029e-28,2.5459e-28,3.6559e-28,4.1622e-28,1.8105e-27,2.6136e-27,2.685e-27,3.7235e-27,5.79e-27,5.8406e-27,6.0526e-27,7.8929e-27,7.9117e-27,1.006e-26,1.1038e-26,4.1264e-26,7.3255e-26,7.4688e-26,1.4276e-25,1.6971e-25,2.2166e-25,2.5235e-25,2.7239e-25,2.9639e-25,3.0466e-25,3.2787e-25,4.4047e-25,4.5584e-25,4.892e-25,5.1835e-25,8.0131e-25,1.3084e-24,2.4495e-24,3.0989e-24,5.0869e-24,8.8198e-24,1.1108e-23,1.251e-23,4.6065e-23,5.35e-23,5.9711e-23,7.4211e-23,9.7768e-23,1.2406e-22,1.5047e-22,1.5572e-22,1.591e-22,2.0275e-22,3.8228e-22,4.0047e-22,5.1327e-22,7.5297e-22,9.2971e-22,9.6205e-22,3.1798e-21,3.2202e-21,4.0706e-21,6.4249e-21,6.9798e-21,9.4985e-21,1.0213e-20,1.6941e-20,2.3528e-20,4.9395e-20,5.0276e-20,1.1638e-19,1.28e-19,1.3195e-19,2.2624e-19,2.3411e-19,2.8405e-19,3.6618e-19,3.9635e-19,4.2078e-19,5.3238e-19,5.5349e-19,5.677e-19,6.8372e-19,7.2963e-19,7.4211e-19,8.6538e-19,9.145e-19,1.2406e-18,2.0512e-18,2.2427e-18,2.2965e-18,2.8719e-18,3.1492e-18,4.5767e-18,8.7745e-18,1.0722e-17,1.4704e-17,1.6509e-17,2.2741e-17,3.1223e-17,3.2039e-17,3.2686e-17,3.2762e-17,3.5959e-17,3.6243e-17,4.8478e-17,5.5375e-17,7.1056e-17,7.1849e-17,7.6843e-17,1.1804e-16,1.1952e-16,1.4646e-16,1.8441e-16,2.7766e-16,2.9294e-16,3.4131e-16,3.5318e-16,3.8498e-16,4.447e-16,5.543e-16,5.5763e-16,9.1616e-16,1.6038e-15,1.7016e-15,1.8167e-15,1.854e-15,2.5874e-15,3.1735e-15,6.3012e-15,6.5302e-15,7.0168e-15,7.9196e-15,1.2385e-14,1.9657e-14,3.2432e-14,3.7666e-14,4.1173e-14,5.1583e-14,8.1062e-14,9.8757e-14,1.2743e-13,1.8805e-13,2.6247e-13,2.7867e-13,5.2633e-13,5.7192e-13,5.8952e-13,6.8284e-13,7.2386e-13,1.1503e-12,1.4012e-12,1.4832e-12,1.4918e-12,1.6805e-12,1.9723e-12,2.1238e-12,2.1948e-12,3.8916e-12,3.8943e-12,6.4838e-12,1.1529e-11,1.9486e-11,3.1417e-11,3.8559e-11,4.0678e-11,4.6087e-11,5.1382e-11,6.6308e-11,6.819e-11,1.109e-10,1.2528e-10,1.5973e-10,2.1552e-10,2.5813e-10,2.6343e-10,3.0483e-10,3.3607e-10,4.2659e-10,6.0644e-10,6.2669e-10,7.3055e-10,9.2922e-10,1.1283e-09,1.1386e-09,2.2062e-09,2.455e-09,2.584e-09,2.9455e-09,3.1521e-09,3.5064e-09,4.1516e-09,4.4433e-09,4.8833e-09,5.6812e-09,6.9027e-09,8.3024e-09,8.4587e-09,1.058e-08,1.2248e-08,1.3926e-08,1.861e-08,2.1225e-08,2.226e-08,2.6344e-08,2.6613e-08,2.8643e-08,2.9586e-08,4.5266e-08,5.0432e-08,5.2589e-08,6.3619e-08,7.101e-08,7.2202e-08,9.3157e-08,1.5097e-07,1.7401e-07,1.8717e-07,2.2164e-07,2.2488e-07,2.7157e-07,2.7722e-07,3.5278e-07,4.0607e-07,5.3731e-07,5.5102e-07,5.6418e-07,5.7167e-07,5.9682e-07,6.1812e-07,6.3146e-07,7.8995e-07,8.2763e-07,1.2819e-06,1.4815e-06,1.63e-06,1.6926e-06,2.3088e-06,2.3213e-06,2.5692e-06,2.6935e-06,3.4107e-06,3.4361e-06,3.4969e-06,4.1611e-06,4.3651e-06,4.4399e-06,4.6751e-06,4.9965e-06,5.3198e-06,5.4956e-06,7.5453e-06,7.6295e-06,8.9895e-06,1.1473e-05,1.4397e-05,1.9659e-05,1.9745e-05,2.2029e-05,2.5261e-05,3.0222e-05,3.0282e-05,3.2209e-05,4.2937e-05,4.5872e-05,4.6206e-05,6.4404e-05,6.9218e-05,7.2144e-05,8.1903e-05,9.2793e-05,0.0001165,0.00012069,0.000143,0.00020768,0.00020871,0.0002151,0.00022874,0.00024,0.00025459,0.00027288,0.00051244,0.00060185,0.00076733,0.0009166,0.00092461,0.0009433,0.0012231,0.0012985,0.001305,0.0016622,0.0024743,0.0025052,0.002809,0.0028759,0.0037221,0.0039963,0.0046592,0.0050429,0.0054998,0.005593,0.0061923,0.0063037,0.0063573,0.0079735,0.0085232,0.0087644,0.0095904,0.0098646,0.011212,0.011541,0.012229,0.014104,0.014123,0.015111,0.015458,0.015458,0.0179,0.017982,0.019087,0.020316,0.023235,0.026169,0.028466,0.032475,0.0366,0.042602,0.042863,0.048047,0.053513,0.056969,0.067129,0.070373,0.077348,0.081728,0.091505,0.092591,0.094859,0.10027,0.11237,0.12594,0.13361,0.14161,0.14592,0.14653,0.15462,0.16437,0.19684,0.20618,0.21146,0.22342,0.2235,0.23571,0.23725,0.24581,0.25282,0.27735,0.28102,0.30129,0.32089,0.38954,0.40317,0.40982,0.42748,0.44433,0.4508,0.46382,0.47325,0.48503,0.50469,0.50479,0.54063,0.55023,0.55223,0.5533,0.59023,0.59107,0.5948,0.59761,0.6049,0.61696,0.62777,0.67546,0.77302,0.80027,0.80263,0.80457,0.81081,0.81425,0.84586,0.86551,0.87916,0.88655,0.90135,0.91325,0.9154,0.93081,0.93892,0.9482,0.96163,0.97639,0.97721,0.98135,0.98399,0.98511,0.99456,0.99634,1,0.99972,0.99785,0.99614,0.99548,0.99098,0.99028,0.98868,0.98475,0.9757 1,1.178e-42,2.3348e-42,2.4161e-42,2.9687e-42,3.4783e-42,4.2822e-42,6.4076e-42,1.6657e-41,3.0507e-41,3.3475e-41,5.4093e-41,5.8496e-41,7.9811e-41,1.6962e-40,2.1475e-40,2.5298e-40,5.136e-40,5.7988e-40,6.6337e-40,1.0416e-39,1.0932e-39,1.1241e-39,1.5843e-39,1.9395e-39,1.9523e-39,2.8768e-39,2.9801e-39,3.5495e-39,3.6321e-39,3.7142e-39,1.2129e-38,3.7295e-38,4.1267e-38,5.7367e-38,7.6936e-38,9.6596e-38,1.2649e-37,1.7297e-37,2.9963e-37,4.0515e-37,6.6093e-37,1.221e-36,1.2919e-36,1.4569e-36,1.6279e-36,2.8973e-36,2.8998e-36,1.1389e-35,1.26e-35,1.3327e-35,2.0031e-35,2.064e-35,4.5798e-35,6.2581e-35,7.1251e-35,9.4688e-35,1.1342e-34,1.5452e-34,1.7005e-34,3.5452e-34,5.569e-34,2.2834e-33,3.3556e-33,3.8158e-33,4.8016e-33,9.0102e-33,1.0248e-32,1.1487e-32,1.9613e-32,3.2334e-32,3.8891e-32,4.523e-32,7.8092e-32,1.7117e-31,3.8958e-31,6.7615e-31,7.5884e-31,2.1162e-30,3.012e-30,3.5501e-30,3.8185e-30,5.1284e-30,1.7161e-29,1.7839e-29,2.2001e-29,3.0667e-29,3.273e-29,5.2505e-29,1.9148e-28,1.9477e-28,2.799e-28,3.1875e-28,1.3909e-27,2.0094e-27,2.0644e-27,2.8649e-27,4.4591e-27,4.4982e-27,4.6618e-27,6.0827e-27,6.0973e-27,7.7567e-27,8.5126e-27,3.1916e-26,5.673e-26,5.7843e-26,1.1072e-25,1.3167e-25,1.7208e-25,1.9596e-25,2.1156e-25,2.3025e-25,2.3668e-25,2.5476e-25,3.4247e-25,3.5445e-25,3.8045e-25,4.0317e-25,6.2387e-25,1.0198e-24,1.9119e-24,2.4201e-24,3.9771e-24,6.9044e-24,8.7006e-24,9.801e-24,3.62e-23,4.2057e-23,4.6952e-23,5.8383e-23,7.6966e-23,9.7719e-23,1.1857e-22,1.2272e-22,1.2539e-22,1.5989e-22,3.0192e-22,3.1632e-22,4.0566e-22,5.9565e-22,7.3583e-22,7.6149e-22,2.5242e-21,2.5563e-21,3.2333e-21,5.1091e-21,5.5515e-21,7.5605e-21,8.1311e-21,1.3504e-20,1.877e-20,3.9479e-20,4.0185e-20,9.3216e-20,1.0255e-19,1.0572e-19,1.8152e-19,1.8785e-19,2.2804e-19,2.9417e-19,3.1847e-19,3.3815e-19,4.281e-19,4.4512e-19,4.5657e-19,5.5014e-19,5.8719e-19,5.9725e-19,6.9674e-19,7.364e-19,9.9975e-19,1.6552e-18,1.8101e-18,1.8537e-18,2.3195e-18,2.5441e-18,3.701e-18,7.108e-18,8.6898e-18,1.1928e-17,1.3396e-17,1.8469e-17,2.5379e-17,2.6045e-17,2.6572e-17,2.6634e-17,2.924e-17,2.9472e-17,3.9452e-17,4.5082e-17,5.7888e-17,5.8535e-17,6.2616e-17,9.63e-17,9.7511e-17,1.1956e-16,1.5063e-16,2.2706e-16,2.396e-16,2.7928e-16,2.8901e-16,3.1511e-16,3.6414e-16,4.5417e-16,4.5691e-16,7.5174e-16,1.3181e-15,1.3987e-15,1.4936e-15,1.5244e-15,2.1294e-15,2.6133e-15,5.1993e-15,5.3888e-15,5.7916e-15,6.5391e-15,1.0239e-14,1.6274e-14,2.6891e-14,3.1245e-14,3.4163e-14,4.283e-14,6.74e-14,8.2162e-14,1.061e-13,1.5676e-13,2.1903e-13,2.3259e-13,4.4017e-13,4.7843e-13,4.932e-13,5.7154e-13,6.0598e-13,9.6442e-13,1.1755e-12,1.2445e-12,1.2517e-12,1.4106e-12,1.6564e-12,1.7841e-12,1.8439e-12,3.2755e-12,3.2779e-12,5.4666e-12,9.7389e-12,1.6489e-11,2.6629e-11,3.2706e-11,3.4509e-11,3.9114e-11,4.3624e-11,5.6347e-11,5.7952e-11,9.4412e-11,1.0669e-10,1.3615e-10,1.839e-10,2.204e-10,2.2495e-10,2.6044e-10,2.8723e-10,3.649e-10,5.1941e-10,5.3681e-10,6.2613e-10,7.9711e-10,9.6862e-10,9.7746e-10,1.8986e-09,2.1136e-09,2.2251e-09,2.5376e-09,2.7163e-09,3.0228e-09,3.5814e-09,3.834e-09,4.2152e-09,4.9068e-09,5.9663e-09,7.1812e-09,7.3169e-09,9.1601e-09,1.061e-08,1.207e-08,1.6148e-08,1.8427e-08,1.9329e-08,2.289e-08,2.3125e-08,2.4897e-08,2.5719e-08,3.9418e-08,4.3937e-08,4.5824e-08,5.5479e-08,6.1952e-08,6.2996e-08,8.1365e-08,1.3213e-07,1.5239e-07,1.6396e-07,1.9429e-07,1.9715e-07,2.3828e-07,2.4325e-07,3.0988e-07,3.5691e-07,4.7284e-07,4.8496e-07,4.966e-07,5.0321e-07,5.2545e-07,5.4429e-07,5.5609e-07,6.9636e-07,7.2973e-07,1.1325e-06,1.3097e-06,1.4416e-06,1.4972e-06,2.0453e-06,2.0564e-06,2.277e-06,2.3878e-06,3.0269e-06,3.0496e-06,3.1038e-06,3.6964e-06,3.8785e-06,3.9452e-06,4.1552e-06,4.4424e-06,4.7312e-06,4.8883e-06,6.7219e-06,6.7972e-06,8.0153e-06,1.0242e-05,1.2867e-05,1.7597e-05,1.7675e-05,1.973e-05,2.2641e-05,2.7113e-05,2.7167e-05,2.8905e-05,3.859e-05,4.1243e-05,4.1545e-05,5.8011e-05,6.237e-05,6.5022e-05,7.3869e-05,8.3748e-05,0.00010528,0.00010909,0.00012937,0.00018829,0.00018923,0.00019506,0.0002075,0.00021777,0.00023109,0.00024779,0.00046708,0.00054912,0.00070116,0.0008385,0.00084588,0.00086309,0.001121,0.0011906,0.0011965,0.0015265,0.0022783,0.002307,0.0025888,0.0026508,0.0034371,0.0036922,0.0043093,0.0046669,0.005093,0.0051799,0.0057393,0.0058433,0.0058933,0.0074043,0.0079188,0.0081447,0.0089184,0.0091755,0.010439,0.010748,0.011394,0.013156,0.013174,0.014103,0.01443,0.01443,0.01673,0.016807,0.017848,0.019008,0.021765,0.024538,0.026712,0.03051,0.034423,0.040125,0.040372,0.045305,0.050512,0.053807,0.063508,0.06661,0.073283,0.077478,0.086852,0.087894,0.090071,0.095267,0.1069,0.11996,0.12736,0.13508,0.13924,0.13983,0.14765,0.15708,0.18854,0.19761,0.20273,0.21436,0.21444,0.22632,0.22783,0.23616,0.243,0.26693,0.27051,0.29033,0.30952,0.37694,0.39036,0.39692,0.41434,0.43098,0.43737,0.45025,0.45958,0.47125,0.49073,0.49084,0.52643,0.53598,0.53798,0.53904,0.57585,0.57669,0.58042,0.58323,0.5905,0.60257,0.61339,0.66122,0.75975,0.78747,0.78987,0.79185,0.79822,0.80173,0.83409,0.8543,0.86839,0.87603,0.89141,0.90381,0.90605,0.92222,0.93078,0.94063,0.95499,0.97106,0.97197,0.97657,0.97952,0.98079,0.99182,0.99404,0.99972,1,0.99913,0.99794,0.99745,0.99387,0.99329,0.99195,0.98858,0.98058 1,6.5839e-43,1.3077e-42,1.3533e-42,1.6639e-42,1.9504e-42,2.4028e-42,3.5997e-42,9.3853e-42,1.722e-41,1.8901e-41,3.0588e-41,3.3085e-41,4.5184e-41,9.625e-41,1.2195e-40,1.4373e-40,2.9245e-40,3.3031e-40,3.7803e-40,5.9438e-40,6.2397e-40,6.4164e-40,9.0526e-40,1.109e-39,1.1163e-39,1.6469e-39,1.7062e-39,2.0333e-39,2.0808e-39,2.128e-39,6.9752e-39,2.1524e-38,2.3824e-38,3.3154e-38,4.4505e-38,5.5918e-38,7.3288e-38,1.0032e-37,1.7408e-37,2.3562e-37,3.8498e-37,7.1261e-37,7.5416e-37,8.5081e-37,9.51e-37,1.6957e-36,1.6972e-36,6.6957e-36,7.4101e-36,7.8391e-36,1.1799e-35,1.2159e-35,2.705e-35,3.7001e-35,4.2145e-35,5.6062e-35,6.7193e-35,9.1634e-35,1.0088e-34,2.1083e-34,3.3169e-34,1.3665e-33,2.0108e-33,2.2876e-33,2.8809e-33,5.4177e-33,6.1648e-33,6.9129e-33,1.1825e-32,1.9528e-32,2.3503e-32,2.7348e-32,4.7308e-32,1.0398e-31,2.3735e-31,4.1274e-31,4.634e-31,1.2971e-30,1.8484e-30,2.1799e-30,2.3453e-30,3.1532e-30,1.0598e-29,1.1018e-29,1.3599e-29,1.8978e-29,2.026e-29,3.2557e-29,1.193e-28,1.2135e-28,1.7463e-28,1.9897e-28,8.7301e-28,1.263e-27,1.2977e-27,1.8031e-27,2.8111e-27,2.8358e-27,2.9394e-27,3.8392e-27,3.8484e-27,4.9003e-27,5.3798e-27,2.0272e-26,3.6115e-26,3.6826e-26,7.0668e-26,8.4098e-26,1.1002e-25,1.2535e-25,1.3537e-25,1.4738e-25,1.5151e-25,1.6313e-25,2.1955e-25,2.2726e-25,2.44e-25,2.5864e-25,4.009e-25,6.5659e-25,1.2341e-24,1.5636e-24,2.5747e-24,4.4798e-24,5.6505e-24,6.3682e-24,2.3647e-23,2.749e-23,3.0703e-23,3.8213e-23,5.0433e-23,6.4095e-23,7.7837e-23,8.057e-23,8.2333e-23,1.0509e-22,1.9897e-22,2.085e-22,2.6766e-22,3.9366e-22,4.8674e-22,5.0379e-22,1.6785e-21,1.7e-21,2.1524e-21,3.4078e-21,3.7042e-21,5.0514e-21,5.4343e-21,9.0455e-21,1.259e-20,2.6569e-20,2.7046e-20,6.2973e-20,6.9311e-20,7.1462e-20,1.23e-19,1.2731e-19,1.5468e-19,1.9976e-19,2.1634e-19,2.2977e-19,2.912e-19,3.0283e-19,3.1066e-19,3.7464e-19,3.9999e-19,4.0688e-19,4.7499e-19,5.0215e-19,6.8269e-19,1.1329e-18,1.2395e-18,1.2695e-18,1.5901e-18,1.7448e-18,2.5426e-18,4.8982e-18,5.9939e-18,8.2398e-18,9.2592e-18,1.2785e-17,1.7595e-17,1.8059e-17,1.8426e-17,1.8469e-17,2.0285e-17,2.0447e-17,2.741e-17,3.1341e-17,4.0292e-17,4.0745e-17,4.3599e-17,6.7194e-17,6.8043e-17,8.3509e-17,1.0533e-16,1.591e-16,1.6793e-16,1.9589e-16,2.0275e-16,2.2116e-16,2.5575e-16,3.1933e-16,3.2126e-16,5.2988e-16,9.3173e-16,9.8899e-16,1.0564e-15,1.0783e-15,1.5089e-15,1.8537e-15,3.701e-15,3.8366e-15,4.1249e-15,4.6602e-15,7.3142e-15,1.1654e-14,1.9307e-14,2.245e-14,2.4559e-14,3.0827e-14,4.8628e-14,5.9342e-14,7.6738e-14,1.1362e-13,1.5904e-13,1.6894e-13,3.2084e-13,3.4889e-13,3.5972e-13,4.172e-13,4.4249e-13,7.0606e-13,8.6154e-13,9.1242e-13,9.1775e-13,1.0349e-12,1.2164e-12,1.3107e-12,1.3549e-12,2.4148e-12,2.4165e-12,4.042e-12,7.2252e-12,1.2271e-11,1.9874e-11,2.4439e-11,2.5795e-11,2.926e-11,3.2655e-11,4.2244e-11,4.3455e-11,7.1006e-11,8.0304e-11,1.0263e-10,1.3888e-10,1.6664e-10,1.701e-10,1.9711e-10,2.1752e-10,2.7677e-10,3.9484e-10,4.0816e-10,4.7654e-10,6.0761e-10,7.3928e-10,7.4607e-10,1.4554e-09,1.6214e-09,1.7075e-09,1.9491e-09,2.0872e-09,2.3245e-09,2.7571e-09,2.9529e-09,3.2486e-09,3.7855e-09,4.6089e-09,5.5544e-09,5.6601e-09,7.0968e-09,8.2286e-09,9.3691e-09,1.256e-08,1.4346e-08,1.5053e-08,1.7848e-08,1.8032e-08,1.9424e-08,2.007e-08,3.0854e-08,3.4417e-08,3.5906e-08,4.3531e-08,4.8649e-08,4.9475e-08,6.4022e-08,1.0434e-07,1.2046e-07,1.2968e-07,1.5387e-07,1.5615e-07,1.8899e-07,1.9296e-07,2.4628e-07,2.8396e-07,3.7701e-07,3.8675e-07,3.961e-07,4.0142e-07,4.193e-07,4.3445e-07,4.4395e-07,5.5691e-07,5.8381e-07,9.0917e-07,1.0527e-06,1.1596e-06,1.2047e-06,1.6499e-06,1.6589e-06,1.8384e-06,1.9286e-06,2.4496e-06,2.4681e-06,2.5124e-06,2.9963e-06,3.1453e-06,3.1998e-06,3.3716e-06,3.6066e-06,3.8432e-06,3.9719e-06,5.4765e-06,5.5384e-06,6.5402e-06,8.3749e-06,1.0542e-05,1.4458e-05,1.4523e-05,1.6227e-05,1.8644e-05,2.2364e-05,2.2409e-05,2.3856e-05,3.1934e-05,3.415e-05,3.4403e-05,4.8188e-05,5.1845e-05,5.407e-05,6.1502e-05,6.9812e-05,8.7954e-05,9.1169e-05,0.0001083,0.00015822,0.00015901,0.00016396,0.00017453,0.00018326,0.00019459,0.0002088,0.0003962,0.0004666,0.00059738,0.0007158,0.00072217,0.00073702,0.00096005,0.0010204,0.0010255,0.001312,0.0019675,0.0019925,0.002239,0.0022933,0.002983,0.0032073,0.0037507,0.004066,0.0044422,0.004519,0.0050137,0.0051058,0.00515,0.0064899,0.0069471,0.007148,0.0078367,0.0080657,0.0091928,0.0094687,0.010046,0.011623,0.011639,0.012472,0.012765,0.012765,0.014831,0.014901,0.015838,0.016883,0.019371,0.021879,0.023849,0.027296,0.030856,0.036057,0.036283,0.040795,0.045567,0.048592,0.057521,0.060381,0.066546,0.070427,0.079117,0.080083,0.082105,0.086935,0.097768,0.10997,0.11689,0.12413,0.12804,0.12859,0.13594,0.14481,0.17453,0.18312,0.18798,0.19902,0.1991,0.2104,0.21184,0.21978,0.2263,0.24918,0.25261,0.27162,0.29007,0.35525,0.36829,0.37467,0.39163,0.40787,0.41412,0.42671,0.43585,0.4473,0.46645,0.46655,0.50165,0.51109,0.51306,0.51412,0.55063,0.55146,0.55517,0.55796,0.56521,0.57724,0.58804,0.636,0.73593,0.76437,0.76684,0.76888,0.77545,0.77908,0.81264,0.83377,0.84858,0.85664,0.87295,0.8862,0.8886,0.90604,0.91536,0.92616,0.94213,0.96043,0.96149,0.96687,0.97038,0.9719,0.98566,0.98864,0.99785,0.99913,1,0.99975,0.99956,0.99761,0.99725,0.99636,0.99399,0.98786 1,4.8188e-43,9.5817e-43,9.9168e-43,1.2197e-42,1.43e-42,1.7623e-42,2.6419e-42,6.8988e-42,1.267e-41,1.3909e-41,2.2527e-41,2.437e-41,3.3298e-41,7.102e-41,9.002e-41,1.0613e-40,2.1619e-40,2.4423e-40,2.7957e-40,4.399e-40,4.6183e-40,4.7494e-40,6.7045e-40,8.2159e-40,8.2704e-40,1.221e-39,1.265e-39,1.508e-39,1.5432e-39,1.5783e-39,5.1837e-39,1.6026e-38,1.7742e-38,2.4704e-38,3.3179e-38,4.1703e-38,5.4683e-38,7.4893e-38,1.3008e-37,1.7616e-37,2.8807e-37,5.3379e-37,5.6497e-37,6.3751e-37,7.1272e-37,1.2721e-36,1.2733e-36,5.0352e-36,5.5734e-36,5.8966e-36,8.8816e-36,9.1531e-36,2.0392e-35,2.7909e-35,3.1797e-35,4.2318e-35,5.0736e-35,6.9229e-35,7.6228e-35,1.5952e-34,2.5117e-34,1.0374e-33,1.5277e-33,1.7384e-33,2.1901e-33,4.1234e-33,4.6931e-33,5.2637e-33,9.0128e-33,1.4898e-32,1.7937e-32,2.0877e-32,3.6151e-32,7.9572e-32,1.8192e-31,3.1668e-31,3.5563e-31,9.9736e-31,1.4223e-30,1.6779e-30,1.8054e-30,2.4287e-30,8.1821e-30,8.5072e-30,1.0504e-29,1.4669e-29,1.5661e-29,2.519e-29,9.2539e-29,9.4138e-29,1.3557e-28,1.545e-28,6.7989e-28,9.843e-28,1.0114e-27,1.4063e-27,2.1944e-27,2.2138e-27,2.2948e-27,2.9989e-27,3.0061e-27,3.8296e-27,4.2051e-27,1.5889e-26,2.834e-26,2.8899e-26,5.5531e-26,6.6109e-26,8.6534e-26,9.862e-26,1.0652e-25,1.1599e-25,1.1925e-25,1.2841e-25,1.7294e-25,1.7902e-25,1.9224e-25,2.0379e-25,3.1618e-25,5.1837e-25,9.7563e-25,1.2367e-24,2.0386e-24,3.5513e-24,4.4816e-24,5.0522e-24,1.8813e-23,2.1878e-23,2.4442e-23,3.0435e-23,4.0192e-23,5.1107e-23,6.2091e-23,6.4276e-23,6.5686e-23,8.3885e-23,1.5905e-22,1.6668e-22,2.1411e-22,3.1517e-22,3.8987e-22,4.0356e-22,1.3483e-21,1.3656e-21,1.7299e-21,2.7417e-21,2.9808e-21,4.0678e-21,4.3769e-21,7.294e-21,1.016e-20,2.1479e-20,2.1865e-20,5.1012e-20,5.6159e-20,5.7906e-20,9.9795e-20,1.033e-19,1.2557e-19,1.6226e-19,1.7576e-19,1.867e-19,2.3676e-19,2.4624e-19,2.5262e-19,3.0479e-19,3.2546e-19,3.3108e-19,3.8664e-19,4.0881e-19,5.5621e-19,9.2415e-19,1.0113e-18,1.0358e-18,1.2982e-18,1.4248e-18,2.0783e-18,4.0102e-18,4.9098e-18,6.7549e-18,7.5929e-18,1.0493e-17,1.4452e-17,1.4834e-17,1.5136e-17,1.5172e-17,1.6668e-17,1.6801e-17,2.2539e-17,2.5781e-17,3.3165e-17,3.3539e-17,3.5894e-17,5.5382e-17,5.6083e-17,6.8867e-17,8.6917e-17,1.3142e-16,1.3874e-16,1.619e-16,1.6759e-16,1.8284e-16,2.1153e-16,2.6427e-16,2.6587e-16,4.3911e-16,7.7328e-16,8.2093e-16,8.7707e-16,8.953e-16,1.2539e-15,1.5413e-15,3.0831e-15,3.1964e-15,3.4373e-15,3.8847e-15,6.1046e-15,9.7389e-15,1.6158e-14,1.8796e-14,2.0567e-14,2.5833e-14,4.0803e-14,4.9822e-14,6.4474e-14,9.557e-14,1.3391e-13,1.4226e-13,2.7069e-13,2.9443e-13,3.036e-13,3.5227e-13,3.7368e-13,5.9709e-13,7.2902e-13,7.722e-13,7.7673e-13,8.7623e-13,1.0303e-12,1.1105e-12,1.1481e-12,2.0497e-12,2.0512e-12,3.4364e-12,6.1538e-12,1.0469e-11,1.6981e-11,2.0895e-11,2.2059e-11,2.5031e-11,2.7946e-11,3.6182e-11,3.7223e-11,6.0919e-11,6.8924e-11,8.8158e-11,1.1942e-10,1.4337e-10,1.4635e-10,1.6968e-10,1.8731e-10,2.3853e-10,3.4069e-10,3.5223e-10,4.1146e-10,5.2506e-10,6.3927e-10,6.4517e-10,1.2615e-09,1.4059e-09,1.4809e-09,1.6911e-09,1.8115e-09,2.0181e-09,2.3951e-09,2.5659e-09,2.8238e-09,3.2923e-09,4.0113e-09,4.8375e-09,4.9298e-09,6.1863e-09,7.1767e-09,8.1753e-09,1.0971e-08,1.2537e-08,1.3158e-08,1.5611e-08,1.5773e-08,1.6995e-08,1.7563e-08,2.7043e-08,3.0179e-08,3.149e-08,3.8205e-08,4.2715e-08,4.3443e-08,5.6272e-08,9.1883e-08,1.0614e-07,1.143e-07,1.3571e-07,1.3773e-07,1.6682e-07,1.7035e-07,2.1762e-07,2.5107e-07,3.3373e-07,3.4238e-07,3.507e-07,3.5543e-07,3.7133e-07,3.848e-07,3.9325e-07,4.9377e-07,5.1772e-07,8.0776e-07,9.3588e-07,1.0313e-06,1.0716e-06,1.4696e-06,1.4777e-06,1.6383e-06,1.719e-06,2.1857e-06,2.2023e-06,2.242e-06,2.6759e-06,2.8095e-06,2.8585e-06,3.0127e-06,3.2236e-06,3.436e-06,3.5516e-06,4.9042e-06,4.9599e-06,5.8615e-06,7.5143e-06,9.4689e-06,1.3006e-05,1.3064e-05,1.4605e-05,1.6792e-05,2.0159e-05,2.02e-05,2.1511e-05,2.8836e-05,3.0847e-05,3.1076e-05,4.3602e-05,4.6928e-05,4.8953e-05,5.5717e-05,6.3286e-05,7.9827e-05,8.2761e-05,9.84e-05,0.00014404,0.00014477,0.0001493,0.00015898,0.00016697,0.00017735,0.00019038,0.00036253,0.00042734,0.0005479,0.00065721,0.00066308,0.00067681,0.000883,0.00093881,0.00094359,0.001209,0.0018176,0.0018409,0.0020702,0.0021207,0.0027632,0.0029723,0.0034795,0.0037741,0.0041258,0.0041976,0.0046604,0.0047466,0.004788,0.0060434,0.0064724,0.0066608,0.0073074,0.0075225,0.0085819,0.0088413,0.0093847,0.010869,0.010884,0.01167,0.011946,0.011946,0.013895,0.013961,0.014846,0.015833,0.018186,0.020561,0.022428,0.025699,0.029081,0.034028,0.034243,0.03854,0.043092,0.045979,0.054512,0.057249,0.063152,0.066872,0.075209,0.076137,0.078079,0.08272,0.09314,0.10489,0.11157,0.11855,0.12233,0.12286,0.12996,0.13854,0.16734,0.17568,0.1804,0.19113,0.19121,0.2022,0.2036,0.21133,0.21768,0.24,0.24335,0.26192,0.27997,0.34391,0.35673,0.36301,0.37972,0.39573,0.40189,0.41433,0.42336,0.43468,0.45362,0.45373,0.48851,0.49788,0.49985,0.50089,0.5372,0.53803,0.54172,0.5445,0.55172,0.56371,0.57449,0.62245,0.72296,0.75175,0.75426,0.75632,0.76298,0.76667,0.80081,0.82239,0.83755,0.84584,0.86261,0.87629,0.87877,0.89686,0.90656,0.91785,0.93465,0.95411,0.95524,0.96103,0.96483,0.96648,0.98167,0.98506,0.99614,0.99794,0.99975,1,0.99997,0.99891,0.99866,0.99802,0.99619,0.99108 1,4.3549e-43,8.6625e-43,8.9655e-43,1.1028e-42,1.2931e-42,1.5937e-42,2.3897e-42,6.2434e-42,1.147e-41,1.2592e-41,2.04e-41,2.2069e-41,3.016e-41,6.4353e-41,8.1579e-41,9.6183e-41,1.9601e-40,2.2144e-40,2.5351e-40,3.9899e-40,4.1889e-40,4.3078e-40,6.0824e-40,7.4543e-40,7.5038e-40,1.108e-39,1.148e-39,1.3686e-39,1.4007e-39,1.4325e-39,4.7079e-39,1.4564e-38,1.6125e-38,2.2456e-38,3.0164e-38,3.7919e-38,4.9728e-38,6.8119e-38,1.1835e-37,1.603e-37,2.6221e-37,4.8604e-37,5.1445e-37,5.8054e-37,6.4907e-37,1.1589e-36,1.1599e-36,4.5906e-36,5.0816e-36,5.3764e-36,8.1e-36,8.3477e-36,1.8606e-35,2.547e-35,2.902e-35,3.8628e-35,4.6317e-35,6.3211e-35,6.9605e-35,1.4572e-34,2.2951e-34,9.4876e-34,1.3974e-33,1.5902e-33,2.0038e-33,3.774e-33,4.2957e-33,4.8184e-33,8.2529e-33,1.3646e-32,1.6431e-32,1.9126e-32,3.313e-32,7.2959e-32,1.6688e-31,2.906e-31,3.2637e-31,9.1588e-31,1.3064e-30,1.5413e-30,1.6586e-30,2.2316e-30,7.5235e-30,7.8226e-30,9.66e-30,1.3493e-29,1.4406e-29,2.3179e-29,8.5221e-29,8.6694e-29,1.2488e-28,1.4233e-28,6.2692e-28,9.0784e-28,9.3287e-28,1.2973e-27,2.025e-27,2.0429e-27,2.1177e-27,2.7679e-27,2.7746e-27,3.5353e-27,3.8821e-27,1.4682e-26,2.6196e-26,2.6713e-26,5.1354e-26,6.1143e-26,8.0049e-26,9.1237e-26,9.855e-26,1.0732e-25,1.1034e-25,1.1882e-25,1.6005e-25,1.6569e-25,1.7793e-25,1.8863e-25,2.9274e-25,4.8011e-25,9.0401e-25,1.1461e-24,1.8899e-24,3.2935e-24,4.157e-24,4.6866e-24,1.7468e-23,2.0316e-23,2.2698e-23,2.8268e-23,3.7338e-23,4.7487e-23,5.7701e-23,5.9733e-23,6.1044e-23,7.7971e-23,1.479e-22,1.5501e-22,1.9914e-22,2.9323e-22,3.6279e-22,3.7553e-22,1.2558e-21,1.2719e-21,1.6115e-21,2.5549e-21,2.7779e-21,3.7918e-21,4.0801e-21,6.802e-21,9.4775e-21,2.0046e-20,2.0407e-20,4.7642e-20,5.2453e-20,5.4086e-20,9.325e-20,9.6526e-20,1.1735e-19,1.5168e-19,1.6431e-19,1.7454e-19,2.2138e-19,2.3025e-19,2.3622e-19,2.8505e-19,3.044e-19,3.0966e-19,3.6167e-19,3.8242e-19,5.2043e-19,8.6506e-19,9.467e-19,9.6969e-19,1.2155e-18,1.3342e-18,1.9466e-18,3.7582e-18,4.602e-18,6.3331e-18,7.1194e-18,9.841e-18,1.3558e-17,1.3916e-17,1.4201e-17,1.4234e-17,1.5639e-17,1.5764e-17,2.1152e-17,2.4197e-17,3.1135e-17,3.1486e-17,3.3699e-17,5.2013e-17,5.2673e-17,6.4691e-17,8.1662e-17,1.2352e-16,1.304e-16,1.5219e-16,1.5754e-16,1.719e-16,1.9889e-16,2.4853e-16,2.5004e-16,4.1313e-16,7.2789e-16,7.7278e-16,8.2567e-16,8.4285e-16,1.1808e-15,1.4517e-15,2.9057e-15,3.0125e-15,3.2398e-15,3.6618e-15,5.7568e-15,9.1878e-15,1.525e-14,1.7743e-14,1.9417e-14,2.4392e-14,3.8545e-14,4.7073e-14,6.0931e-14,9.0351e-14,1.2663e-13,1.3455e-13,2.5616e-13,2.7865e-13,2.8733e-13,3.3344e-13,3.5373e-13,5.6547e-13,6.9054e-13,7.3149e-13,7.3578e-13,8.3013e-13,9.7628e-13,1.0523e-12,1.0879e-12,1.9435e-12,1.9449e-12,3.26e-12,5.8413e-12,9.9428e-12,1.6135e-11,1.9859e-11,2.0966e-11,2.3795e-11,2.6568e-11,3.4407e-11,3.5398e-11,5.7963e-11,6.5588e-11,8.3913e-11,1.137e-10,1.3654e-10,1.3938e-10,1.6163e-10,1.7844e-10,2.2728e-10,3.2476e-10,3.3577e-10,3.923e-10,5.0075e-10,6.098e-10,6.1543e-10,1.2043e-09,1.3423e-09,1.4139e-09,1.6149e-09,1.73e-09,1.9276e-09,2.2882e-09,2.4515e-09,2.6982e-09,3.1464e-09,3.8344e-09,4.6251e-09,4.7136e-09,5.9165e-09,6.8649e-09,7.8213e-09,1.05e-08,1.2001e-08,1.2596e-08,1.4947e-08,1.5102e-08,1.6273e-08,1.6818e-08,2.5909e-08,2.8918e-08,3.0175e-08,3.6619e-08,4.0948e-08,4.1646e-08,5.3962e-08,8.8166e-08,1.0187e-07,1.0971e-07,1.3029e-07,1.3222e-07,1.602e-07,1.6359e-07,2.0905e-07,2.4122e-07,3.2077e-07,3.291e-07,3.371e-07,3.4165e-07,3.5696e-07,3.6993e-07,3.7806e-07,4.7484e-07,4.9791e-07,7.7732e-07,9.0078e-07,9.9276e-07,1.0316e-06,1.4154e-06,1.4232e-06,1.5781e-06,1.656e-06,2.1062e-06,2.1222e-06,2.1605e-06,2.5794e-06,2.7084e-06,2.7556e-06,2.9045e-06,3.1082e-06,3.3133e-06,3.4249e-06,4.7314e-06,4.7852e-06,5.6564e-06,7.2541e-06,9.1442e-06,1.2566e-05,1.2622e-05,1.4113e-05,1.623e-05,1.949e-05,1.953e-05,2.0799e-05,2.7895e-05,2.9844e-05,3.0066e-05,4.2207e-05,4.5433e-05,4.7396e-05,5.3957e-05,6.1299e-05,7.7351e-05,8.0198e-05,9.538e-05,0.00013971,0.00014042,0.00014482,0.00015422,0.000162,0.00017208,0.00018474,0.00035221,0.0004153,0.00053271,0.0006392,0.00064493,0.0006583,0.0008593,0.00091372,0.00091838,0.0011773,0.0017713,0.0017941,0.002018,0.0020674,0.0026952,0.0028997,0.0033956,0.0036837,0.0040277,0.004098,0.0045509,0.0046353,0.0046758,0.0059049,0.0063249,0.0065095,0.007143,0.0073537,0.0083919,0.0086462,0.0091788,0.010635,0.010649,0.01142,0.011691,0.011691,0.013604,0.013668,0.014537,0.015506,0.017816,0.02015,0.021984,0.025199,0.028524,0.033391,0.033603,0.037833,0.042314,0.045158,0.053566,0.056264,0.062084,0.065753,0.073977,0.074893,0.076809,0.08139,0.091678,0.10329,0.10989,0.11679,0.12052,0.12105,0.12807,0.13656,0.16506,0.17332,0.17799,0.18862,0.1887,0.19959,0.20098,0.20864,0.21494,0.23707,0.24039,0.25882,0.27674,0.34028,0.35303,0.35927,0.3759,0.39183,0.39797,0.41035,0.41934,0.43062,0.4495,0.4496,0.48428,0.49363,0.49559,0.49663,0.53286,0.53369,0.53738,0.54015,0.54736,0.55934,0.57011,0.61805,0.71874,0.74762,0.75014,0.75222,0.7589,0.76261,0.79693,0.81864,0.83393,0.84227,0.8592,0.87301,0.87552,0.89381,0.90363,0.91507,0.93214,0.95196,0.95312,0.95905,0.96294,0.96462,0.98028,0.98379,0.99548,0.99745,0.99956,0.99997,1,0.99922,0.99901,0.99845,0.99679,0.99201 1,2.5069e-43,4.9961e-43,5.1715e-43,6.3648e-43,7.4667e-43,9.2079e-43,1.3823e-42,3.6212e-42,6.6646e-42,7.3186e-42,1.1873e-41,1.2847e-41,1.7573e-41,3.7578e-41,4.7669e-41,5.623e-41,1.1483e-40,1.2977e-40,1.4862e-40,2.3423e-40,2.4595e-40,2.5295e-40,3.5751e-40,4.3841e-40,4.4133e-40,6.5242e-40,6.7603e-40,8.0637e-40,8.253e-40,8.4412e-40,2.784e-39,8.6416e-39,9.5701e-39,1.3341e-38,1.7936e-38,2.2563e-38,2.9614e-38,4.0605e-38,7.0667e-38,9.5802e-38,1.5694e-37,2.9146e-37,3.0855e-37,3.4832e-37,3.8956e-37,6.968e-37,6.9741e-37,2.7718e-36,3.0693e-36,3.2479e-36,4.8995e-36,5.0498e-36,1.1284e-35,1.5461e-35,1.7623e-35,2.3479e-35,2.8169e-35,3.8481e-35,4.2387e-35,8.8947e-35,1.4029e-34,5.8257e-34,8.5911e-34,9.7807e-34,1.2333e-33,2.3277e-33,2.6506e-33,2.9741e-33,5.103e-33,8.4515e-33,1.0183e-32,1.1859e-32,2.0579e-32,4.5435e-32,1.0421e-31,1.8181e-31,2.0426e-31,5.7519e-31,8.214e-31,9.6965e-31,1.0437e-30,1.4057e-30,4.7587e-30,4.9485e-30,6.1153e-30,8.5515e-30,9.1325e-30,1.4717e-29,5.4355e-29,5.5298e-29,7.9754e-29,9.094e-29,4.0266e-28,5.8386e-28,6.0001e-28,8.3541e-28,1.3061e-27,1.3176e-27,1.366e-27,1.7872e-27,1.7915e-27,2.2847e-27,2.5096e-27,9.5366e-27,1.7052e-26,1.739e-26,3.351e-26,3.9923e-26,5.2319e-26,5.966e-26,6.4461e-26,7.0217e-26,7.2201e-26,7.7774e-26,1.0488e-25,1.0858e-25,1.1663e-25,1.2367e-25,1.9225e-25,3.1588e-25,5.9619e-25,7.5655e-25,1.2499e-24,2.1827e-24,2.7574e-24,3.1101e-24,1.1651e-23,1.3558e-23,1.5155e-23,1.8889e-23,2.4977e-23,3.1795e-23,3.8664e-23,4.0031e-23,4.0913e-23,5.2308e-23,9.9472e-23,1.0427e-22,1.3409e-22,1.9774e-22,2.4486e-22,2.535e-22,8.5178e-22,8.6274e-22,1.0942e-21,1.738e-21,1.8903e-21,2.5835e-21,2.7808e-21,4.6456e-21,6.4816e-21,1.3752e-20,1.4001e-20,3.2801e-20,3.6128e-20,3.7258e-20,6.4384e-20,6.6655e-20,8.1104e-20,1.0494e-19,1.1372e-19,1.2083e-19,1.5341e-19,1.5958e-19,1.6374e-19,1.9774e-19,2.1123e-19,2.1489e-19,2.5115e-19,2.6563e-19,3.6197e-19,6.0298e-19,6.6015e-19,6.7625e-19,8.485e-19,9.3172e-19,1.3617e-18,2.6365e-18,3.2314e-18,4.4531e-18,5.0086e-18,6.9333e-18,9.5657e-18,9.8197e-18,1.0021e-17,1.0045e-17,1.1041e-17,1.1129e-17,1.4954e-17,1.7117e-17,2.2049e-17,2.2299e-17,2.3874e-17,3.6921e-17,3.7391e-17,4.5966e-17,5.8087e-17,8.8029e-17,9.2955e-17,1.0857e-16,1.124e-16,1.2269e-16,1.4205e-16,1.7769e-16,1.7878e-16,2.9608e-16,5.2305e-16,5.5547e-16,5.9368e-16,6.0609e-16,8.5047e-16,1.0466e-15,2.1019e-15,2.1795e-15,2.3448e-15,2.6518e-15,4.178e-15,6.6834e-15,1.1121e-14,1.2949e-14,1.4176e-14,1.783e-14,2.8239e-14,3.4521e-14,4.4743e-14,6.6479e-14,9.3336e-14,9.9199e-14,1.8949e-13,2.0622e-13,2.1268e-13,2.47e-13,2.6211e-13,4.2004e-13,5.1348e-13,5.4409e-13,5.473e-13,6.1787e-13,7.2728e-13,7.8421e-13,8.1093e-13,1.4532e-12,1.4542e-12,2.4443e-12,4.3937e-12,7.5008e-12,1.2205e-11,1.504e-11,1.5883e-11,1.8038e-11,2.0153e-11,2.6138e-11,2.6895e-11,4.4164e-11,5.001e-11,6.4073e-11,8.6975e-11,1.0455e-10,1.0674e-10,1.2389e-10,1.3685e-10,1.7456e-10,2.4996e-10,2.5848e-10,3.0228e-10,3.8642e-10,4.7113e-10,4.7551e-10,9.3431e-10,1.0421e-09,1.098e-09,1.2552e-09,1.3452e-09,1.4998e-09,1.7823e-09,1.9103e-09,2.1038e-09,2.4556e-09,2.9964e-09,3.6186e-09,3.6883e-09,4.6362e-09,5.3846e-09,6.1399e-09,8.2585e-09,9.4471e-09,9.9188e-09,1.1783e-08,1.1906e-08,1.2836e-08,1.3268e-08,2.05e-08,2.2897e-08,2.39e-08,2.9041e-08,3.2499e-08,3.3057e-08,4.2908e-08,7.0343e-08,8.1355e-08,8.7662e-08,1.0423e-07,1.0579e-07,1.2835e-07,1.3108e-07,1.6781e-07,1.9383e-07,2.5827e-07,2.6503e-07,2.7152e-07,2.7521e-07,2.8763e-07,2.9816e-07,3.0476e-07,3.8342e-07,4.0218e-07,6.2994e-07,7.308e-07,8.0601e-07,8.378e-07,1.1522e-06,1.1586e-06,1.2858e-06,1.3497e-06,1.7198e-06,1.733e-06,1.7645e-06,2.1095e-06,2.2158e-06,2.2548e-06,2.3776e-06,2.5457e-06,2.715e-06,2.8072e-06,3.888e-06,3.9326e-06,4.6548e-06,5.9816e-06,7.5544e-06,1.0408e-05,1.0456e-05,1.1702e-05,1.3472e-05,1.6203e-05,1.6237e-05,1.7301e-05,2.3262e-05,2.4902e-05,2.5089e-05,3.5325e-05,3.8049e-05,3.9708e-05,4.5257e-05,5.1474e-05,6.5089e-05,6.7507e-05,8.0414e-05,0.00011821,0.00011881,0.00012257,0.00013061,0.00013725,0.00014588,0.00015672,0.00030066,0.0003551,0.00045663,0.00054894,0.00055392,0.00056552,0.00074024,0.00078762,0.00079168,0.0010175,0.0015379,0.0015578,0.0017546,0.001798,0.0023511,0.0025315,0.00297,0.0032251,0.00353,0.0035923,0.0039943,0.0040693,0.0041053,0.0051992,0.0055737,0.0057385,0.0063042,0.0064925,0.0074216,0.0076494,0.0081269,0.0094338,0.009447,0.01014,0.010384,0.010384,0.012107,0.012166,0.012949,0.013825,0.015915,0.018031,0.019696,0.022621,0.025653,0.030101,0.030295,0.03417,0.038284,0.040899,0.048648,0.051139,0.056521,0.059919,0.06755,0.068401,0.070182,0.074442,0.084031,0.09488,0.10106,0.10753,0.11103,0.11153,0.11813,0.12611,0.15302,0.16084,0.16527,0.17536,0.17543,0.18579,0.18711,0.1944,0.20041,0.22154,0.22471,0.24236,0.25957,0.32086,0.33322,0.33927,0.35542,0.37093,0.3769,0.38898,0.39776,0.40878,0.42727,0.42737,0.46143,0.47064,0.47256,0.47359,0.50937,0.51019,0.51384,0.51659,0.52373,0.53561,0.54631,0.59411,0.6955,0.72488,0.72745,0.72956,0.7364,0.74018,0.77541,0.79783,0.81368,0.82237,0.84006,0.85456,0.8572,0.87656,0.88702,0.89927,0.91772,0.93951,0.9408,0.94742,0.9518,0.95371,0.97182,0.97603,0.99098,0.99387,0.99761,0.99891,0.99922,1,0.99999,0.99987,0.99917,0.99621 1,2.3339e-43,4.6526e-43,4.8159e-43,5.9276e-43,6.9543e-43,8.5767e-43,1.2877e-42,3.3747e-42,6.2122e-42,6.8221e-42,1.1069e-41,1.1978e-41,1.6386e-41,3.505e-41,4.4466e-41,5.2455e-41,1.0715e-40,1.211e-40,1.387e-40,2.1862e-40,2.2956e-40,2.361e-40,3.3374e-40,4.0929e-40,4.1202e-40,6.0918e-40,6.3124e-40,7.53e-40,7.7067e-40,7.8826e-40,2.6009e-39,8.0769e-39,8.9451e-39,1.2471e-38,1.6769e-38,2.1097e-38,2.7692e-38,3.7974e-38,6.6103e-38,8.9625e-38,1.4685e-37,2.7278e-37,2.8879e-37,3.2602e-37,3.6465e-37,6.5238e-37,6.5296e-37,2.5966e-36,2.8753e-36,3.0428e-36,4.5907e-36,4.7316e-36,1.0576e-35,1.4493e-35,1.6521e-35,2.2014e-35,2.6413e-35,3.6086e-35,3.975e-35,8.344e-35,1.3163e-34,5.4692e-34,8.0666e-34,9.1841e-34,1.1582e-33,2.1865e-33,2.4899e-33,2.794e-33,4.795e-33,7.9431e-33,9.571e-33,1.1147e-32,1.9348e-32,4.2733e-32,9.8047e-32,1.7109e-31,1.9223e-31,5.4156e-31,7.735e-31,9.1318e-31,9.8293e-31,1.324e-30,4.4846e-30,4.6636e-30,5.7637e-30,8.0611e-30,8.609e-30,1.3877e-29,5.128e-29,5.217e-29,7.5255e-29,8.5815e-29,3.8022e-28,5.5142e-28,5.6668e-28,7.8912e-28,1.2339e-27,1.2449e-27,1.2906e-27,1.6888e-27,1.6928e-27,2.1591e-27,2.3718e-27,9.0184e-27,1.613e-26,1.6449e-26,3.1708e-26,3.7779e-26,4.9516e-26,5.6467e-26,6.1012e-26,6.6463e-26,6.8342e-26,7.362e-26,9.9288e-26,1.028e-25,1.1042e-25,1.1709e-25,1.8206e-25,2.9921e-25,5.649e-25,7.1692e-25,1.1847e-24,2.0694e-24,2.6146e-24,2.9492e-24,1.1055e-23,1.2866e-23,1.4382e-23,1.7928e-23,2.371e-23,3.0185e-23,3.671e-23,3.8008e-23,3.8846e-23,4.9672e-23,9.449e-23,9.905e-23,1.2739e-22,1.879e-22,2.327e-22,2.4092e-22,8.1001e-22,8.2044e-22,1.0406e-21,1.6534e-21,1.7983e-21,2.4582e-21,2.6461e-21,4.4217e-21,6.1703e-21,1.3097e-20,1.3334e-20,3.1253e-20,3.4424e-20,3.5501e-20,6.1367e-20,6.3533e-20,7.7314e-20,1.0005e-19,1.0842e-19,1.1521e-19,1.4629e-19,1.5218e-19,1.5615e-19,1.8859e-19,2.0146e-19,2.0496e-19,2.3956e-19,2.5338e-19,3.4534e-19,5.7544e-19,6.3002e-19,6.454e-19,8.0989e-19,8.8937e-19,1.3001e-18,2.5181e-18,3.0866e-18,4.2545e-18,4.7855e-18,6.6257e-18,9.143e-18,9.3859e-18,9.5787e-18,9.6013e-18,1.0554e-17,1.0639e-17,1.4297e-17,1.6366e-17,2.1085e-17,2.1324e-17,2.2831e-17,3.5318e-17,3.5768e-17,4.3975e-17,5.5579e-17,8.4248e-17,8.8966e-17,1.0392e-16,1.0759e-16,1.1745e-16,1.3599e-16,1.7013e-16,1.7117e-16,2.8357e-16,5.0113e-16,5.3221e-16,5.6883e-16,5.8073e-16,8.1506e-16,1.0032e-15,2.0155e-15,2.09e-15,2.2485e-15,2.5432e-15,4.008e-15,6.4134e-15,1.0675e-14,1.2431e-14,1.361e-14,1.712e-14,2.7123e-14,3.3161e-14,4.2987e-14,6.3887e-14,8.9717e-14,9.5357e-14,1.8223e-13,1.9833e-13,2.0454e-13,2.3757e-13,2.5212e-13,4.0415e-13,4.9413e-13,5.2361e-13,5.267e-13,5.9467e-13,7.0004e-13,7.5488e-13,7.8062e-13,1.3994e-12,1.4004e-12,2.3547e-12,4.2345e-12,7.2316e-12,1.1771e-11,1.4507e-11,1.5321e-11,1.7402e-11,1.9444e-11,2.5223e-11,2.5954e-11,4.2634e-11,4.8282e-11,6.1871e-11,8.4004e-11,1.0099e-10,1.0311e-10,1.1969e-10,1.3222e-10,1.6869e-10,2.4162e-10,2.4986e-10,2.9223e-10,3.7364e-10,4.5563e-10,4.5986e-10,9.0406e-10,1.0084e-09,1.0626e-09,1.2148e-09,1.302e-09,1.4518e-09,1.7254e-09,1.8495e-09,2.037e-09,2.378e-09,2.9021e-09,3.5053e-09,3.5728e-09,4.4919e-09,5.2176e-09,5.9502e-09,8.0053e-09,9.1584e-09,9.6161e-09,1.1425e-08,1.1545e-08,1.2447e-08,1.2867e-08,1.9887e-08,2.2214e-08,2.3188e-08,2.8181e-08,3.1539e-08,3.2081e-08,4.1651e-08,6.8312e-08,7.9016e-08,8.5148e-08,1.0126e-07,1.0278e-07,1.2471e-07,1.2737e-07,1.6309e-07,1.884e-07,2.5111e-07,2.5768e-07,2.64e-07,2.676e-07,2.7968e-07,2.8993e-07,2.9636e-07,3.7292e-07,3.9119e-07,6.1299e-07,7.1123e-07,7.845e-07,8.1548e-07,1.1218e-06,1.1281e-06,1.252e-06,1.3143e-06,1.6752e-06,1.688e-06,1.7188e-06,2.0552e-06,2.1588e-06,2.1969e-06,2.3166e-06,2.4805e-06,2.6457e-06,2.7357e-06,3.7902e-06,3.8337e-06,4.5385e-06,5.8337e-06,7.3694e-06,1.0157e-05,1.0203e-05,1.142e-05,1.315e-05,1.582e-05,1.5852e-05,1.6893e-05,2.272e-05,2.4323e-05,2.4506e-05,3.4517e-05,3.7182e-05,3.8805e-05,4.4235e-05,5.0319e-05,6.3646e-05,6.6013e-05,7.8651e-05,0.00011567,0.00011626,0.00011994,0.00012782,0.00013433,0.00014279,0.00015341,0.00029454,0.00034795,0.00044758,0.00053819,0.00054307,0.00055446,0.00072602,0.00077256,0.00077655,0.00099843,0.0015098,0.0015295,0.0017229,0.0017656,0.0023097,0.0024872,0.0029187,0.0031698,0.0034699,0.0035313,0.0039271,0.0040009,0.0040364,0.0051137,0.0054828,0.0056451,0.0062025,0.0063881,0.0073038,0.0075284,0.0079991,0.0092878,0.0093008,0.009984,0.010224,0.010225,0.011925,0.011982,0.012756,0.01362,0.015683,0.017771,0.019416,0.022305,0.025301,0.029697,0.029889,0.03372,0.037788,0.040374,0.04804,0.050506,0.055833,0.059197,0.066754,0.067596,0.06936,0.07358,0.083081,0.093834,0.099957,0.10637,0.10985,0.11034,0.11689,0.12481,0.15151,0.15928,0.16368,0.1737,0.17377,0.18405,0.18536,0.19261,0.19858,0.21958,0.22274,0.24029,0.2574,0.3184,0.3307,0.33673,0.35282,0.36827,0.37422,0.38626,0.39501,0.406,0.42443,0.42453,0.4585,0.46769,0.46961,0.47064,0.50635,0.50717,0.51082,0.51356,0.52069,0.53256,0.54325,0.59101,0.69247,0.72191,0.72448,0.7266,0.73345,0.73724,0.77258,0.79508,0.81101,0.81974,0.83752,0.85211,0.85477,0.87425,0.88479,0.89715,0.91577,0.9378,0.93911,0.94582,0.95026,0.9522,0.97063,0.97492,0.99028,0.99329,0.99725,0.99866,0.99901,0.99999,1,0.99994,0.99937,0.99664 1,1.9958e-43,3.9808e-43,4.1207e-43,5.0728e-43,5.9521e-43,7.342e-43,1.1027e-42,2.892e-42,5.3264e-42,5.8497e-42,9.4952e-42,1.0275e-41,1.406e-41,3.0094e-41,3.8187e-41,4.5054e-41,9.2081e-41,1.0408e-40,1.1922e-40,1.8799e-40,1.9741e-40,2.0304e-40,2.8708e-40,3.5214e-40,3.5448e-40,5.2428e-40,5.4328e-40,6.4817e-40,6.634e-40,6.7855e-40,2.2411e-39,6.9663e-39,7.7158e-39,1.076e-38,1.4472e-38,1.8211e-38,2.391e-38,3.2796e-38,5.7116e-38,7.746e-38,1.2697e-37,2.3598e-37,2.4984e-37,2.8208e-37,3.1553e-37,5.6479e-37,5.6529e-37,2.2507e-36,2.4925e-36,2.6378e-36,3.9811e-36,4.1034e-36,9.1784e-36,1.2582e-35,1.4343e-35,1.9117e-35,2.2941e-35,3.1351e-35,3.4537e-35,7.2545e-35,1.1449e-34,4.7631e-34,7.0277e-34,8.0022e-34,1.0094e-33,1.9066e-33,2.1715e-33,2.4369e-33,4.1842e-33,6.9345e-33,8.3571e-33,9.7347e-33,1.6905e-32,3.7365e-32,8.5797e-32,1.4979e-31,1.6832e-31,4.7466e-31,6.7817e-31,8.0076e-31,8.6199e-31,1.1614e-30,3.9385e-30,4.0959e-30,5.0631e-30,7.0835e-30,7.5654e-30,1.22e-29,4.5142e-29,4.5926e-29,6.6273e-29,7.5582e-29,3.3538e-28,4.8656e-28,5.0003e-28,6.9655e-28,1.0897e-27,1.0993e-27,1.1398e-27,1.4918e-27,1.4954e-27,1.9077e-27,2.0959e-27,7.98e-27,1.4281e-26,1.4564e-26,2.8093e-26,3.3478e-26,4.3891e-26,5.006e-26,5.4094e-26,5.8932e-26,6.0599e-26,6.5285e-26,8.8073e-26,9.1191e-26,9.7963e-26,1.0389e-25,1.616e-25,2.6572e-25,5.0201e-25,6.3727e-25,1.0536e-24,1.8416e-24,2.3273e-24,2.6255e-24,9.856e-24,1.1472e-23,1.2825e-23,1.5991e-23,2.1155e-23,2.694e-23,3.277e-23,3.393e-23,3.4679e-23,4.4355e-23,8.4437e-23,8.8516e-23,1.1388e-22,1.6804e-22,2.0815e-22,2.1551e-22,7.2557e-22,7.3493e-22,9.3242e-22,1.4822e-21,1.6123e-21,2.2048e-21,2.3734e-21,3.9684e-21,5.54e-21,1.1769e-20,1.1982e-20,2.8113e-20,3.097e-20,3.194e-20,5.5247e-20,5.7199e-20,6.9622e-20,9.0124e-20,9.7676e-20,1.038e-19,1.3184e-19,1.3715e-19,1.4073e-19,1.7001e-19,1.8162e-19,1.8478e-19,2.1602e-19,2.285e-19,3.1154e-19,5.1944e-19,5.6878e-19,5.8268e-19,7.3138e-19,8.0325e-19,1.1747e-18,2.2772e-18,2.7921e-18,3.8499e-18,4.3311e-18,5.999e-18,8.2816e-18,8.5019e-18,8.6768e-18,8.6972e-18,9.5611e-18,9.6381e-18,1.2957e-17,1.4835e-17,1.9119e-17,1.9336e-17,2.0704e-17,3.2045e-17,3.2454e-17,3.9912e-17,5.0458e-17,7.6528e-17,8.0819e-17,9.4421e-17,9.7762e-17,1.0673e-16,1.2361e-16,1.5468e-16,1.5563e-16,2.5799e-16,4.5627e-16,4.8461e-16,5.1801e-16,5.2886e-16,7.4259e-16,9.1422e-16,1.8385e-15,1.9066e-15,2.0514e-15,2.3206e-15,3.6596e-15,5.8596e-15,9.7603e-15,1.1368e-14,1.2448e-14,1.5663e-14,2.483e-14,3.0367e-14,3.938e-14,5.8559e-14,8.2275e-14,8.7455e-14,1.6729e-13,1.8208e-13,1.878e-13,2.1818e-13,2.3155e-13,3.7144e-13,4.5427e-13,4.8142e-13,4.8426e-13,5.4685e-13,6.4391e-13,6.9443e-13,7.1814e-13,1.2885e-12,1.2895e-12,2.1699e-12,3.9056e-12,6.6755e-12,1.0874e-11,1.3406e-11,1.4159e-11,1.6086e-11,1.7977e-11,2.3329e-11,2.4006e-11,3.9467e-11,4.4703e-11,5.7308e-11,7.7848e-11,9.3622e-11,9.559e-11,1.1098e-10,1.2263e-10,1.5651e-10,2.243e-10,2.3197e-10,2.7138e-10,3.4712e-10,4.2343e-10,4.2738e-10,8.4116e-10,9.3845e-10,9.8896e-10,1.1309e-09,1.2122e-09,1.3519e-09,1.6072e-09,1.723e-09,1.898e-09,2.2163e-09,2.7057e-09,3.2692e-09,3.3323e-09,4.1912e-09,4.8697e-09,5.5547e-09,7.4773e-09,8.5565e-09,8.9849e-09,1.0679e-08,1.0791e-08,1.1636e-08,1.2029e-08,1.8606e-08,2.0789e-08,2.1701e-08,2.6384e-08,2.9534e-08,3.0043e-08,3.9024e-08,6.4065e-08,7.4125e-08,7.9888e-08,9.5035e-08,9.6462e-08,1.1709e-07,1.196e-07,1.5321e-07,1.7704e-07,2.3611e-07,2.423e-07,2.4825e-07,2.5164e-07,2.6303e-07,2.7269e-07,2.7874e-07,3.5092e-07,3.6815e-07,5.7742e-07,6.7018e-07,7.3937e-07,7.6862e-07,1.0581e-06,1.064e-06,1.1811e-06,1.2401e-06,1.5814e-06,1.5935e-06,1.6226e-06,1.9409e-06,2.0391e-06,2.075e-06,2.1884e-06,2.3436e-06,2.5e-06,2.5852e-06,3.5843e-06,3.6256e-06,4.2938e-06,5.5222e-06,6.9797e-06,9.6269e-06,9.6706e-06,1.0827e-05,1.2472e-05,1.501e-05,1.504e-05,1.603e-05,2.1575e-05,2.3102e-05,2.3276e-05,3.2812e-05,3.5352e-05,3.6899e-05,4.2075e-05,4.7878e-05,6.0594e-05,6.2854e-05,7.492e-05,0.00011029,0.00011086,0.00011438,0.00012191,0.00012814,0.00013622,0.00014638,0.00028156,0.00033277,0.00042835,0.00051534,0.00052003,0.00053097,0.00069581,0.00074055,0.00074438,0.00095778,0.0014502,0.0014691,0.0016556,0.0016967,0.0022214,0.0023928,0.0028093,0.0030518,0.0033418,0.0034011,0.0037836,0.0038549,0.0038892,0.0049313,0.0052885,0.0054456,0.0059853,0.006165,0.0070521,0.0072697,0.0077259,0.0089754,0.008988,0.0096508,0.0098841,0.0098844,0.011534,0.01159,0.012341,0.01318,0.015185,0.017216,0.018816,0.021627,0.024545,0.028829,0.029016,0.032752,0.036721,0.039246,0.046734,0.049143,0.054352,0.057643,0.065038,0.065863,0.06759,0.071723,0.081032,0.091577,0.097584,0.10388,0.10729,0.10778,0.11421,0.12199,0.14825,0.1559,0.16023,0.1701,0.17017,0.1803,0.18159,0.18874,0.19462,0.21534,0.21846,0.23579,0.25269,0.31305,0.32523,0.33121,0.34716,0.36248,0.36839,0.38033,0.38902,0.39993,0.41824,0.41834,0.45213,0.46127,0.46318,0.4642,0.49977,0.50059,0.50422,0.50695,0.51406,0.5259,0.53655,0.58425,0.68583,0.71539,0.71797,0.72011,0.72699,0.7308,0.76636,0.78905,0.80512,0.81394,0.83192,0.84669,0.84939,0.86915,0.87986,0.89244,0.91144,0.934,0.93534,0.94224,0.94682,0.94882,0.96792,0.97241,0.98868,0.99195,0.99636,0.99802,0.99845,0.99987,0.99994,1,0.9997,0.99749 1,1.4174e-43,2.8306e-43,2.9302e-43,3.6085e-43,4.2352e-43,5.2261e-43,7.8546e-43,2.0635e-42,3.8046e-42,4.1791e-42,6.7893e-42,7.3482e-42,1.0061e-41,2.1562e-41,2.7372e-41,3.2304e-41,6.6108e-41,7.4741e-41,8.5631e-41,1.3514e-40,1.4192e-40,1.4597e-40,2.0653e-40,2.5342e-40,2.5511e-40,3.7758e-40,3.9129e-40,4.6698e-40,4.7797e-40,4.8891e-40,1.6183e-39,5.0408e-39,5.5842e-39,7.7924e-39,1.0486e-38,1.32e-38,1.734e-38,2.3799e-38,4.149e-38,5.63e-38,9.2372e-38,1.7188e-37,1.8199e-37,2.0552e-37,2.2994e-37,4.1204e-37,4.1241e-37,1.6463e-36,1.8235e-36,1.93e-36,2.9152e-36,3.0049e-36,6.7317e-36,9.2332e-36,1.0529e-35,1.4041e-35,1.6855e-35,2.3048e-35,2.5395e-35,5.3419e-35,8.438e-35,3.5203e-34,5.198e-34,5.9203e-34,7.4711e-34,1.413e-33,1.6097e-33,1.8069e-33,3.1058e-33,5.1525e-33,6.2118e-33,7.238e-33,1.2583e-32,2.7857e-32,6.4074e-32,1.1199e-31,1.2588e-31,3.5572e-31,5.0862e-31,6.0077e-31,6.468e-31,8.7202e-31,2.9647e-30,3.0834e-30,3.8132e-30,5.3386e-30,5.7026e-30,9.2055e-30,3.4156e-29,3.475e-29,5.0185e-29,5.725e-29,2.5485e-28,3.7003e-28,3.803e-28,5.3015e-28,8.3018e-28,8.3755e-28,8.6844e-28,1.1373e-27,1.1401e-27,1.4552e-27,1.599e-27,6.1064e-27,1.0942e-26,1.116e-26,2.1558e-26,2.57e-26,3.3714e-26,3.8464e-26,4.1571e-26,4.5298e-26,4.6582e-26,5.0192e-26,6.7759e-26,7.0163e-26,7.5386e-26,7.9955e-26,1.245e-25,2.0495e-25,3.8776e-25,4.9251e-25,8.1524e-25,1.4268e-24,1.8041e-24,2.0358e-24,7.6661e-24,8.9264e-24,9.9818e-24,1.2453e-23,1.6484e-23,2.1004e-23,2.5562e-23,2.6469e-23,2.7055e-23,3.4624e-23,6.6014e-23,6.9211e-23,8.9096e-23,1.316e-22,1.6309e-22,1.6887e-22,5.7025e-22,5.7762e-22,7.3328e-22,1.167e-21,1.2697e-21,1.7376e-21,1.8709e-21,3.1322e-21,4.3762e-21,9.3147e-21,9.4839e-21,2.23e-20,2.4572e-20,2.5343e-20,4.3899e-20,4.5454e-20,5.5354e-20,7.1703e-20,7.7728e-20,8.2613e-20,1.0499e-19,1.0924e-19,1.121e-19,1.3549e-19,1.4477e-19,1.4729e-19,1.7226e-19,1.8224e-19,2.4867e-19,4.1518e-19,4.5472e-19,4.6586e-19,5.8511e-19,6.4277e-19,9.4099e-19,1.8274e-18,2.2417e-18,3.0938e-18,3.4816e-18,4.8266e-18,6.669e-18,6.8469e-18,6.9881e-18,7.0047e-18,7.7025e-18,7.7646e-18,1.0447e-17,1.1966e-17,1.5432e-17,1.5607e-17,1.6715e-17,2.5902e-17,2.6234e-17,3.2281e-17,4.0838e-17,6.201e-17,6.5497e-17,7.6554e-17,7.9271e-17,8.6564e-17,1.0029e-16,1.2559e-16,1.2636e-16,2.0978e-16,3.7161e-16,3.9476e-16,4.2204e-16,4.3091e-16,6.0566e-16,7.461e-16,1.5035e-15,1.5593e-15,1.6782e-15,1.8991e-15,2.9988e-15,4.8084e-15,8.0218e-15,9.3474e-15,1.0238e-14,1.2892e-14,2.0466e-14,2.5045e-14,3.2504e-14,4.8395e-14,6.8067e-14,7.2366e-14,1.3871e-13,1.5102e-13,1.5578e-13,1.8106e-13,1.922e-13,3.0878e-13,3.7788e-13,4.0053e-13,4.0291e-13,4.5516e-13,5.3623e-13,5.7844e-13,5.9826e-13,1.0755e-12,1.0763e-12,1.8143e-12,3.2719e-12,5.6025e-12,9.1419e-12,1.1278e-11,1.1914e-11,1.3541e-11,1.5139e-11,1.9664e-11,2.0237e-11,3.3327e-11,3.7766e-11,4.8457e-11,6.5897e-11,7.9301e-11,8.0975e-11,9.4063e-11,1.0397e-10,1.3282e-10,1.906e-10,1.9714e-10,2.3076e-10,2.9543e-10,3.6065e-10,3.6402e-10,7.1828e-10,8.0169e-10,8.45e-10,9.6674e-10,1.0365e-09,1.1565e-09,1.3758e-09,1.4753e-09,1.6257e-09,1.8995e-09,2.3208e-09,2.8062e-09,2.8605e-09,3.6011e-09,4.1865e-09,4.7779e-09,6.4392e-09,7.3726e-09,7.7432e-09,9.2093e-09,9.3062e-09,1.0038e-08,1.0378e-08,1.6082e-08,1.7977e-08,1.8769e-08,2.2838e-08,2.5576e-08,2.6019e-08,3.3834e-08,5.566e-08,6.444e-08,6.9472e-08,8.2706e-08,8.3953e-08,1.0199e-07,1.0418e-07,1.3361e-07,1.5449e-07,2.0629e-07,2.1172e-07,2.1695e-07,2.1992e-07,2.2992e-07,2.384e-07,2.4372e-07,3.0715e-07,3.223e-07,5.0653e-07,5.8829e-07,6.4932e-07,6.7513e-07,9.3078e-07,9.3598e-07,1.0396e-06,1.0917e-06,1.3937e-06,1.4045e-06,1.4302e-06,1.7122e-06,1.7992e-06,1.8311e-06,1.9317e-06,2.0694e-06,2.2082e-06,2.2838e-06,3.1714e-06,3.208e-06,3.8024e-06,4.8964e-06,6.1959e-06,8.5597e-06,8.5988e-06,9.6329e-06,1.1104e-05,1.3376e-05,1.3404e-05,1.429e-05,1.9264e-05,2.0634e-05,2.079e-05,2.9362e-05,3.1647e-05,3.304e-05,3.7702e-05,4.2931e-05,5.4404e-05,5.6444e-05,6.7346e-05,9.9361e-05,9.9873e-05,0.00010306,0.00010989,0.00011553,0.00012287,0.00013209,0.00025505,0.00030174,0.00038902,0.00046856,0.00047284,0.00048285,0.00063384,0.00067486,0.00067838,0.00087429,0.0013274,0.0013449,0.0015168,0.0015547,0.0020393,0.0021978,0.0025833,0.0028079,0.0030767,0.0031317,0.0034867,0.0035529,0.0035847,0.0045532,0.0048855,0.0050318,0.0055344,0.0057019,0.0065291,0.0067322,0.007158,0.0083255,0.0083373,0.0089572,0.0091754,0.0091758,0.010721,0.010773,0.011477,0.012264,0.014147,0.016055,0.017561,0.020209,0.022961,0.027008,0.027185,0.030719,0.03448,0.036874,0.043984,0.046274,0.051231,0.054365,0.061416,0.062203,0.063851,0.067799,0.076699,0.086796,0.092556,0.098601,0.10187,0.10234,0.10852,0.116,0.14131,0.14869,0.15288,0.16242,0.16249,0.17229,0.17354,0.18046,0.18616,0.20627,0.2093,0.22614,0.2426,0.30154,0.31347,0.31933,0.33496,0.35,0.3558,0.36754,0.37609,0.38683,0.40487,0.40497,0.43832,0.44735,0.44925,0.45026,0.48548,0.48629,0.48989,0.4926,0.49966,0.51141,0.522,0.56949,0.67126,0.70104,0.70365,0.70581,0.71276,0.71661,0.75262,0.77568,0.79206,0.80106,0.81946,0.83462,0.83739,0.85775,0.86882,0.88186,0.90165,0.92535,0.92677,0.93407,0.93894,0.94107,0.96163,0.96653,0.98475,0.98858,0.99399,0.99619,0.99679,0.99917,0.99937,0.9997,1,0.99892 1,7.3672e-44,1.4746e-43,1.5267e-43,1.8814e-43,2.2093e-43,2.7281e-43,4.1058e-43,1.0822e-42,1.9993e-42,2.1968e-42,3.5748e-42,3.8701e-42,5.3043e-42,1.1398e-41,1.4481e-41,1.7099e-41,3.5078e-41,3.9676e-41,4.5478e-41,7.1883e-41,7.5503e-41,7.7667e-41,1.1002e-40,1.3509e-40,1.36e-40,2.0155e-40,2.089e-40,2.4946e-40,2.5535e-40,2.6122e-40,8.6823e-40,2.7151e-39,3.0089e-39,4.2037e-39,5.6628e-39,7.1343e-39,9.3808e-39,1.2889e-38,2.2514e-38,3.0584e-38,5.0268e-38,9.3743e-38,9.9277e-38,1.1216e-37,1.2554e-37,2.2543e-37,2.2563e-37,9.0521e-37,1.003e-36,1.0618e-36,1.6063e-36,1.6559e-36,3.7205e-36,5.1089e-36,5.8287e-36,7.7809e-36,9.3467e-36,1.2796e-35,1.4104e-35,2.975e-35,4.7072e-35,1.9743e-34,2.9195e-34,3.3268e-34,4.2019e-34,7.966e-34,9.0795e-34,1.0196e-33,1.7562e-33,2.9191e-33,3.5218e-33,4.106e-33,7.1535e-33,1.5885e-32,3.6655e-32,6.4208e-32,7.22e-32,2.0487e-31,2.9333e-31,3.467e-31,3.7337e-31,5.0399e-31,1.7218e-30,1.791e-30,2.2168e-30,3.1077e-30,3.3205e-30,5.3705e-30,2.0032e-29,2.0383e-29,2.948e-29,3.3648e-29,1.5071e-28,2.1916e-28,2.2527e-28,3.1445e-28,4.9333e-28,4.9773e-28,5.1617e-28,6.7673e-28,6.7838e-28,8.6677e-28,9.5283e-28,3.6592e-27,6.5732e-27,6.7045e-27,1.2988e-26,1.5495e-26,2.0351e-26,2.3231e-26,2.5116e-26,2.7378e-26,2.8158e-26,3.035e-26,4.1024e-26,4.2487e-26,4.5663e-26,4.8443e-26,7.5576e-26,1.2468e-25,2.3656e-25,3.0078e-25,4.9898e-25,8.7543e-25,1.1081e-24,1.2511e-24,4.7393e-24,5.5222e-24,6.1782e-24,7.7152e-24,1.0226e-23,1.3045e-23,1.5889e-23,1.6456e-23,1.6821e-23,2.1552e-23,4.1213e-23,4.3218e-23,5.57e-23,8.2418e-23,1.0225e-22,1.0589e-22,3.596e-22,3.6427e-22,4.6295e-22,7.3839e-22,8.037e-22,1.1015e-21,1.1864e-21,1.9912e-21,2.7865e-21,5.9526e-21,6.0613e-21,1.4312e-20,1.5777e-20,1.6275e-20,2.8267e-20,2.9274e-20,3.5684e-20,4.6283e-20,5.0192e-20,5.3362e-20,6.79e-20,7.0659e-20,7.2517e-20,8.7731e-20,9.377e-20,9.5413e-20,1.1168e-19,1.1818e-19,1.6151e-19,2.7035e-19,2.9624e-19,3.0353e-19,3.8167e-19,4.1948e-19,6.153e-19,1.199e-18,1.4724e-18,2.0354e-18,2.2919e-18,3.1828e-18,4.4051e-18,4.5233e-18,4.617e-18,4.628e-18,5.0916e-18,5.1329e-18,6.9168e-18,7.9279e-18,1.0238e-17,1.0355e-17,1.1094e-17,1.7232e-17,1.7454e-17,2.1501e-17,2.7235e-17,4.1447e-17,4.3791e-17,5.1227e-17,5.3054e-17,5.7963e-17,6.721e-17,8.4264e-17,8.4784e-17,1.4114e-16,2.5082e-16,2.6653e-16,2.8506e-16,2.9108e-16,4.0989e-16,5.0553e-16,1.0227e-15,1.0609e-15,1.1422e-15,1.2935e-15,2.0479e-15,3.2925e-15,5.509e-15,6.425e-15,7.041e-15,8.8776e-15,1.4132e-14,1.7314e-14,2.2505e-14,3.3587e-14,4.7335e-14,5.0343e-14,9.6876e-14,1.0553e-13,1.0887e-13,1.2666e-13,1.345e-13,2.167e-13,2.6553e-13,2.8155e-13,2.8323e-13,3.202e-13,3.7761e-13,4.0753e-13,4.2158e-13,7.6065e-13,7.612e-13,1.2874e-12,2.3304e-12,4.0043e-12,6.5547e-12,8.0976e-12,8.5573e-12,9.734e-12,1.089e-11,1.417e-11,1.4586e-11,2.4101e-11,2.7334e-11,3.513e-11,4.7874e-11,5.7684e-11,5.891e-11,6.8502e-11,7.5769e-11,9.6953e-11,1.3948e-10,1.443e-10,1.691e-10,2.1686e-10,2.6511e-10,2.676e-10,5.3059e-10,5.9267e-10,6.2492e-10,7.1565e-10,7.6769e-10,8.5722e-10,1.0211e-09,1.0955e-09,1.208e-09,1.4131e-09,1.729e-09,2.0936e-09,2.1344e-09,2.6917e-09,3.1327e-09,3.5788e-09,4.8341e-09,5.5404e-09,5.8211e-09,6.9325e-09,7.006e-09,7.5613e-09,7.8197e-09,1.2158e-08,1.3602e-08,1.4207e-08,1.7313e-08,1.9406e-08,1.9744e-08,2.5728e-08,4.2494e-08,4.9255e-08,5.3134e-08,6.3345e-08,6.4309e-08,7.8253e-08,7.9945e-08,1.0274e-07,1.1894e-07,1.592e-07,1.6343e-07,1.675e-07,1.6981e-07,1.776e-07,1.842e-07,1.8835e-07,2.3783e-07,2.4966e-07,3.9389e-07,4.5807e-07,5.0603e-07,5.2632e-07,7.2766e-07,7.3177e-07,8.1349e-07,8.5464e-07,1.0935e-06,1.102e-06,1.1224e-06,1.3459e-06,1.4149e-06,1.4402e-06,1.52e-06,1.6294e-06,1.7397e-06,1.7998e-06,2.5069e-06,2.5362e-06,3.0108e-06,3.8862e-06,4.9285e-06,6.8299e-06,6.8614e-06,7.695e-06,8.8822e-06,1.0719e-05,1.0742e-05,1.146e-05,1.5494e-05,1.6607e-05,1.6734e-05,2.3716e-05,2.5581e-05,2.6719e-05,3.053e-05,3.4812e-05,4.4224e-05,4.59e-05,5.4867e-05,8.1288e-05,8.1712e-05,8.4351e-05,8.9997e-05,9.4674e-05,0.00010075,0.0001084,0.00021086,0.00024994,0.00032319,0.00039013,0.00039374,0.00040217,0.00052966,0.00056437,0.00056735,0.00073347,0.0011195,0.0011344,0.0012814,0.0013139,0.0017295,0.0018657,0.0021977,0.0023915,0.0026237,0.0026713,0.0029785,0.0030358,0.0030634,0.0039041,0.0041932,0.0043206,0.0047587,0.0049048,0.0056274,0.0058051,0.0061779,0.0072017,0.0072121,0.0077566,0.0079486,0.0079489,0.0093095,0.0093557,0.0099769,0.010672,0.012338,0.014031,0.015369,0.017728,0.020185,0.023809,0.023967,0.027142,0.030527,0.032686,0.039114,0.04119,0.04569,0.04854,0.054967,0.055685,0.05719,0.060798,0.068952,0.07823,0.083535,0.089112,0.092135,0.092568,0.098279,0.10522,0.12875,0.13564,0.13955,0.14848,0.14854,0.15773,0.1589,0.1654,0.17076,0.18971,0.19256,0.20849,0.2241,0.28028,0.29172,0.29733,0.31236,0.32684,0.33243,0.34376,0.35203,0.36242,0.37992,0.38001,0.41246,0.42127,0.42312,0.42411,0.45858,0.45938,0.46291,0.46558,0.47251,0.48407,0.4945,0.54149,0.64326,0.67336,0.67601,0.6782,0.68525,0.68917,0.72591,0.74958,0.76647,0.77579,0.7949,0.81072,0.81362,0.83503,0.84673,0.8606,0.88181,0.90757,0.90912,0.91717,0.92257,0.92494,0.94817,0.95384,0.9757,0.98058,0.98786,0.99108,0.99201,0.99621,0.99664,0.99749,0.99892,1 ================================================ FILE: bayesian_ml/3/run.py ================================================ # variational-inference for linear regression # y(i) ~ N( x(i).dot(w), 1/lambda ) # w ~ N( 0, diag(alpha_1, alpha_2, ..., alpha_D)^-1 ) # alpha_i ~ Gamma(a, b) # lambda ~ Gamma(e, f) import numpy as np import pandas as pd import matplotlib.pyplot as plt from scipy.stats import multivariate_normal as mvn from scipy.stats import gamma as gamma_dist from scipy.special import gamma, digamma def e_ln_q_gamma(a, b): return np.log(b) - a - np.log(np.abs(gamma(a))) + (a - 1)*digamma(a) def objective(X, Y, C, mu, a, b, e, f, a0, b0, e0, f0): log2pi = np.log(2*np.pi) N, D = X.shape # E(lnX) = digamma(a) - ln(b) for X ~ Gamma(a,b) E_ln_lambda = digamma(e) - np.log(f) E_ln_alpha = digamma(a) - np.log(b) # model likelihood total = (N/2.0)*(E_ln_lambda - log2pi) data_total = 0 for i in xrange(N): delta = Y[i] - X[i].dot(mu) data_total += delta*delta + X[i].dot(C).dot(X[i]) total -= (float(e)/f)/2.0 * data_total # print "total after model likelihood:", total # w likelihood total -= (D/2.0)*log2pi for k in xrange(D): total += 0.5*(E_ln_alpha[k] - (float(a[k])/b[k])*(C[k,k] + mu[k]*mu[k])) # print "total after w likelihood:", total # lambda likelihood total += e0*np.log(f0) - np.log(gamma(e0)) + (e0 - 1)*E_ln_lambda - f0*(float(e)/f) # print "total after lambda likelihood:", total # alpha likelihood for k in xrange(D): total += a0*np.log(b0) - np.log(gamma(a0)) + (a0 - 1)*E_ln_alpha[k] - b0*(float(a[k])/b[k]) # print "total after alpha likelihood:", total # entropy # TODO: calculate this manually # total -= mvn.entropy(mean=mu, cov=C) # e1 = mvn.entropy(cov=C) # e2 = 0.5*np.log( np.linalg.det(2*np.pi*np.e*C) ) # print "e1:", e1, "e2:", e2 # total += 0.5*np.log( np.linalg.det(2*np.pi*np.e*C) ) total += mvn.entropy(cov=C) # print "det(C):", np.linalg.det(C) # print "total after lnq(w):", total # total -= gamma_dist.entropy(e, scale=1.0/f) # e3 = gamma_dist.entropy(e, scale=1.0/f) # e4 = -e_ln_q_gamma(e, f) # print "e3:", e3, "e4:", e4 # assert(np.abs(e3 - e4) < 1e-8) total += gamma_dist.entropy(e, scale=1.0/f) # total -= e_ln_q_gamma(e, f) # print "total after lnq(lambda):", total for k in xrange(D): # total -= e_ln_q_gamma(a[k], b[k]) total += gamma_dist.entropy(a[k], scale=1.0/b[k]) return total def run(num=1, T=500): X = pd.read_csv('X_set%s.csv' % num, header=None).as_matrix() Y = pd.read_csv('y_set%s.csv' % num, header=None).as_matrix().flatten() Z = pd.read_csv('z_set%s.csv' % num, header=None).as_matrix().flatten() N, D = X.shape print X.shape, Y.shape, Z.shape a0 = 1e-16 b0 = 1e-16 e0 = 1 f0 = 1 # params for q(w) - doesn't matter what we set it to, we'll update this first C = np.eye(D) mu = np.zeros(D) # params for q(lambda) e = e0 f = f0 # params for q(alpha) a = np.ones(D)*a0 b = np.ones(D)*b0 a0ones = np.ones(D)*a0 # objective L = np.empty(T) for t in xrange(T): # update q(w) C = np.linalg.inv(np.diag(1.0*a/b) + (1.0*e/f)*X.T.dot(X)) mu = C.dot((1.0*e/f)*X.T.dot(Y)) # update q(alpha) a = a0ones + 0.5 b = b0 + 0.5*(np.diag(C) + mu*mu) # for k in xrange(D): # a[k] = a0 + 0.5 # b[k] = b0 + 0.5*(C[k,k] + mu[k]*mu[k]) # update q(lambda) e = e0 + N/2.0 sum_for_f = 0 # for i in xrange(N): # delta = Y[i] - X[i].dot(mu) # sum_for_f += delta*delta + X[i].dot(C).dot(X[i]) delta = Y - X.dot(mu) sum_for_f = delta.dot(delta) + np.trace(X.dot(C).dot(X.T)) f = f0 + 0.5*sum_for_f # update L L[t] = objective(X, Y, C, mu, a, b, e, f, a0, b0, e0, f0) if t % 20 == 0: print "t:", t if num == 3: print "L:", L[t] # plot 1/E[alpha] plt.plot(b/a) plt.show() # 1/E[lambda] print "1/E[lambda]:", f/e # plot L plt.plot(L) plt.show() Yhat = X.dot(mu) plt.plot(Z, Yhat) plt.scatter(Z, Y) plt.plot(Z, 10*np.sinc(Z)) plt.show() run(1) run(2) run(3) ================================================ FILE: bayesian_ml/3/y_set1.csv ================================================ -1.9807 1.3977 0.39627 0.11422 0.59669 1.6194 1.9997 0.27002 -1.2381 0.71259 1.1677 -0.56528 -0.16157 1.4075 1.3544 -0.0078934 1.1667 0.83691 -0.75035 -0.76558 0.26084 -1.4914 -0.11861 -0.77599 0.65591 1.753 0.53411 0.2034 3.2292 -1.9822 -1.7943 -1.167 0.49746 -1.9873 -2.7712 -2.2993 -3.1986 -1.6758 -1.3253 -2.7287 0.26081 -2.1141 -1.7219 -1.0972 0.39853 1.278 5.6629 4.4801 7.797 8.4042 6.9353 8.2126 5.4825 9.6335 11.187 11.906 9.3574 7.6739 8.2142 6.3477 5.4952 2.8962 0.48351 -0.30745 -1.6697 -1.567 -3.1646 -1.103 -1.578 -2.5523 -2.1199 -2.1978 -1.8076 -2.9934 -1.1843 -0.94178 -0.97797 -1.0436 -2.7953 -0.74118 0.62131 0.41625 1.3788 1.4919 0.11158 0.51488 -0.95601 -1.0738 0.069906 -2.1404 -0.90422 -0.31789 -0.34168 1.0552 -1.2299 0.55841 -1.0027 -0.038141 -1.3129 -0.47181 ================================================ FILE: bayesian_ml/3/y_set2.csv ================================================ 1.0719 0.11583 0.93244 0.57572 0.31694 0.83109 -1.0948 -0.96628 -0.70567 -0.42234 0.50279 -0.62063 1.4233 0.15329 0.29718 1.9027 -0.29558 0.70807 -1.7488 -0.055268 -0.11002 0.29835 -1.2306 0.12409 0.87917 0.11703 2.1908 1.9126 1.3058 1.2737 1.3056 0.041982 -0.11861 -0.0028592 0.91428 -0.88784 -0.14079 -0.47711 -1.017 -0.47484 -2.1037 -1.8068 -1.1703 -0.66441 0.27772 -1.43 -0.38931 -0.21783 -0.23204 -1.7272 -1.5208 1.7792 -1.4753 -1.1052 0.11862 1.7058 2.9352 1.5628 1.3946 0.11424 0.4934 1.2871 2.5238 2.0262 1.0801 -0.9816 -0.36913 2.1336 0.61729 0.2564 0.84102 0.23374 -0.26162 -2.0896 -1.1948 -1.937 -1.435 -0.81724 -1.2405 -2.9074 -4.0468 -2.4879 -2.7022 0.64254 -1.4789 0.081845 -1.3779 -0.23709 0.28329 0.17127 -0.091373 0.21315 -0.054294 0.47168 1.0184 0.50646 0.34773 0.63896 1.9126 1.882 3.6891 2.5319 1.5174 2.2353 3.4245 5.2983 3.8079 5.8691 4.2966 6.1311 6.8197 10.243 8.5904 8.5367 10.189 10.478 10.912 9.3415 9.3864 11.178 8.9284 10.957 9.5685 9.5365 10.038 8.5009 9.8221 10.111 8.9823 7.4138 6.0708 5.0509 6.1225 3.1199 3.2787 4.1355 2.0782 2.6844 0.59051 0.67348 0.9691 -0.35254 -0.82645 -0.22224 -0.65941 -0.89189 -2.1968 -1.6648 -2.2095 -2.7901 -0.91662 -2.7168 -2.1209 -2.3851 -0.82882 -1.7077 -2.1833 -2.2892 -0.88709 -0.97589 -2.6419 0.95409 -0.46452 -1.5276 -0.84018 -1.9559 -0.81199 0.48569 -1.2974 -1.3495 1.2276 -1.3513 -0.69919 -0.57888 -0.02456 1.7478 0.1268 0.74479 1.5368 0.28655 1.1954 -1.1805 -0.15926 1.946 2.1353 1.6037 1.8437 1.1915 0.19297 2.1556 0.26826 -0.65444 -0.7975 1.0501 0.0019153 0.47655 -0.50907 0.96367 -0.329 0.48126 2.3427 0.14366 -0.34113 0.023812 0.85333 0.81691 -2.7054 -1.062 -1.2612 -1.1259 -2.5775 -1.2307 -0.9116 -2.7058 -1.7947 0.032767 1.361 -1.4488 0.78974 1.0157 -0.79251 -0.46814 0.52801 1.801 -0.39036 1.387 -0.51833 1.3714 -0.031317 0.35643 -0.36886 1.4649 0.63804 0.27513 -1.7868 0.15545 1.8684 0.32499 2.4063 1.9406 0.75147 0.65898 0.72895 0.28186 2.2324 -0.53944 0.54644 0.117 0.41722 1.3173 ================================================ FILE: bayesian_ml/3/y_set3.csv ================================================ 1.2493 0.34608 -0.65115 -0.65096 0.43414 1.8492 -0.4061 -0.38145 -1.2443 1.1232 -0.20684 0.39811 2.4196 0.030414 0.81584 1.1718 1.5879 1.4314 1.4397 -1.1339 0.69808 -0.3128 1.1161 1.2201 1.6538 -0.35806 0.72805 1.7007 1.2565 -1.1105 1.3889 0.55208 0.22673 -0.21678 0.44269 -0.33804 0.39935 1.2985 2.2668 1.4106 0.11432 0.4936 -1.3862 2.6217 -0.31597 0.82576 2.5351 -0.10319 -0.40329 -0.40897 -0.24345 1.4331 0.16827 0.36301 0.16318 2.1634 -0.68517 0.78599 -0.64304 0.1045 -0.86334 -0.65277 0.25854 -0.089523 -0.11344 -0.017831 -0.34328 0.53786 -0.58527 -2.1837 -0.60024 -1.2742 -1.0972 -1.5656 -1.1829 -1.219 -0.29995 -1.3236 -1.5228 -2.175 -2.7898 -1.1056 -1.327 -1.4542 0.10067 0.23424 -1.4687 -0.72758 -0.45606 -2.2871 0.97331 -1.1038 0.9757 -1.244 1.222 -0.031121 0.50533 -0.013989 0.64676 -1.0884 0.90698 2.0415 -0.38962 1.7227 0.83094 -0.74901 -0.96453 2.1476 0.46637 0.76593 0.51508 1.0626 2.1497 -0.30601 0.16019 0.31719 -0.76152 2.0413 1.0623 0.19511 0.46962 1.2896 0.47874 1.5794 2.1143 0.9692 2.5658 -0.038618 2.6827 1.4048 0.62164 0.031624 1.2829 0.86453 1.4091 2.088 0.27013 1.2093 -0.092303 1.3038 1.7231 0.26136 0.52718 1.0105 -0.1066 -0.3479 0.03181 0.73896 -1.1217 0.40028 -0.9078 -1.4733 0.82008 -1.6905 0.0035708 -2.9985 -0.2411 -0.2193 -2.0608 0.01023 -1.8287 -0.99157 -1.8855 -2.6693 -1.5502 -1.3649 -2.8221 -1.0708 -3.424 -1.2715 -1.6072 -1.9263 -2.5412 -1.4759 -3.3407 -1.3589 -3.2652 -2.7701 -1.3492 -1.714 -3.1749 -3.09 -2.4606 -1.5065 -3.14 -2.6178 -3.5084 -1.124 -1.7163 -0.68931 -2.8995 -2.5311 -1.4396 -2.2828 -2.8695 -2.1709 -1.2409 -2.82 -1.2289 0.42502 -1.8517 -0.80668 -0.37975 -0.33459 -0.96075 -0.6551 2.0577 1.0784 -0.60036 1.4198 0.96653 -0.22334 2.0814 2.1007 1.8345 2.3843 2.2154 2.3614 3.0337 2.4449 3.4899 4.7464 3.6022 4.5685 4.9579 6.5489 6.1826 8.9815 6.6195 4.8026 6.3658 5.2625 6.9559 5.7759 8.0737 7.6743 5.7853 9.151 5.7291 7.5521 6.4452 8.7975 7.5657 10.933 8.1625 11.465 10.255 8.5447 10.529 8.2317 10.387 9.6344 10.132 8.8802 12.059 8.9192 10.167 8.8654 11.663 8.9277 7.5368 7.809 10.241 10.957 8.7962 8.1113 9.8184 8.1635 8.8731 8.6392 8.5438 7.2449 6.9828 6.7644 8.412 6.7862 7.1257 7.0037 5.1117 7.1309 3.25 5.9281 5.4059 6.7685 5.7655 4.0587 3.9134 5.2006 5.8704 4.6025 3.8403 2.8321 1.6716 5.3248 1.8202 5.583 2.0066 3.45 0.71284 0.17722 -0.14384 -0.58807 -0.14126 1.3068 -0.29165 0.74503 1.1632 0.10811 -1.8745 -1.2791 -2.0427 -1.0949 0.5153 -2.7345 -1.1477 -2.9508 -0.82559 -1.9091 -1.2254 -1.1877 -2.783 -3.1284 -0.31351 -0.53083 -1.9842 -1.8107 -2.072 -1.4959 -0.40421 -1.5028 -2.3395 -2.5132 -0.63996 -2.5281 -3.5389 -1.2183 -2.7964 -2.7305 -1.7721 -2.1682 -4.5821 -0.99998 -3.6361 -0.62262 -1.7563 -1.8093 -1.5712 -0.58419 -0.88992 -1.1049 -1.0056 -0.95563 -1.724 -0.25034 -0.53804 -0.57163 -0.58468 0.19074 -1.6817 0.65123 0.33642 0.60973 1.4934 0.98693 1.0309 -0.74636 0.092361 -0.64439 2.0457 0.73481 1.5588 0.23443 0.27491 1.669 0.17705 0.73712 2.8887 1.0358 1.3774 0.79075 0.81847 0.66837 1.3098 0.46651 1.2713 1.1663 0.97329 -0.49777 3.224 1.1858 1.1946 1.1575 0.98207 0.052651 -1.1588 1.3643 0.52026 1.4307 -0.37155 0.57522 3.3092 1.3529 -0.15252 0.57262 1.5748 1.0346 1.9275 -0.71601 0.32853 -0.74274 -3.8771 0.95606 -1.6782 -0.53801 0.19508 0.32788 -0.18941 -0.80008 -1.9245 -0.27624 -0.77962 1.1747 -1.8651 0.046986 -0.52209 -0.91784 -0.97409 -0.56569 -0.7398 -0.90443 -1.0496 -0.5113 -0.71248 -0.5631 -0.53569 -1.5918 -0.47134 -2.0132 -1.1266 -0.5549 -0.2684 -1.5061 -0.027946 -1.2328 0.24876 -0.65791 -0.81527 -0.35707 -0.81745 -1.5423 -1.1902 -0.23834 -0.88487 1.4281 0.1909 -0.22065 1.088 0.043623 1.244 0.72797 -0.25048 -0.097561 -0.19166 1.4331 1.2264 0.13112 0.29906 2.4459 1.0515 1.4143 -0.099597 -0.8996 -0.26254 2.5685 1.0277 1.5229 0.81648 1.2022 1.5323 -0.37481 0.69914 1.5554 0.11952 1.0232 0.37087 0.92954 0.15541 0.79317 1.8288 1.2101 0.082028 1.7327 -1.3822 -0.5564 2.1984 -1.0316 0.52191 0.3748 -0.62216 0.70765 ================================================ FILE: bayesian_ml/3/z_set1.csv ================================================ -4.9721 -4.9644 -4.8984 -4.8012 -4.7609 -4.7172 -4.5434 -4.5347 -4.4954 -4.4841 -4.4806 -4.4494 -4.3964 -4.3493 -4.3348 -4.1115 -4.1092 -4.064 -3.9887 -3.8479 -3.6875 -3.5039 -3.1283 -3.0908 -3.0679 -2.8088 -2.7464 -2.6872 -2.4361 -2.0802 -1.7881 -1.6403 -1.5986 -1.5728 -1.5019 -1.4374 -1.3605 -1.3552 -1.2699 -1.2649 -1.2424 -1.1851 -1.1478 -1.0591 -0.89585 -0.8062 -0.64684 -0.60975 -0.46749 -0.45814 -0.43733 -0.36286 -0.32266 -0.13261 -0.027699 -0.018297 0.098857 0.34143 0.34161 0.48671 0.72093 0.90776 1.0157 1.0277 1.183 1.1881 1.227 1.2457 1.2758 1.3855 1.4545 1.4829 1.4978 1.5107 1.5649 1.6524 1.6583 1.7102 1.7265 1.7456 2.0177 2.0619 2.5383 2.657 2.6603 2.6838 2.9611 3.1443 3.2889 3.3979 3.4234 3.6852 3.7243 4.0176 4.0548 4.2511 4.4312 4.7979 4.8796 4.9119 ================================================ FILE: bayesian_ml/3/z_set2.csv ================================================ -4.9765 -4.9613 -4.9528 -4.9236 -4.8866 -4.8857 -4.8759 -4.8363 -4.7532 -4.7377 -4.7316 -4.7314 -4.7074 -4.6649 -4.6594 -4.6303 -4.5411 -4.4546 -4.4431 -4.3895 -4.3588 -4.3341 -4.3252 -4.2924 -4.2905 -4.2591 -4.2126 -4.1717 -4.1544 -4.076 -4.0729 -4.0091 -3.9728 -3.9633 -3.9224 -3.8991 -3.8987 -3.8864 -3.7039 -3.5211 -3.4777 -3.4763 -3.4762 -3.4289 -3.3513 -3.3399 -3.3322 -3.209 -3.1948 -3.1872 -3.0625 -2.9618 -2.8997 -2.8583 -2.8083 -2.624 -2.5591 -2.5514 -2.4628 -2.3633 -2.3183 -2.3181 -2.254 -2.218 -2.1932 -2.1615 -2.1348 -2.0976 -2.0817 -2.0356 -1.9548 -1.9188 -1.8617 -1.7471 -1.7356 -1.6913 -1.6651 -1.5879 -1.4535 -1.4169 -1.3156 -1.2344 -1.1901 -1.1122 -1.1017 -1.092 -1.043 -1.0154 -1.0148 -0.99199 -0.9747 -0.94525 -0.94279 -0.94171 -0.93568 -0.9191 -0.8916 -0.87727 -0.81128 -0.81116 -0.73165 -0.7306 -0.71359 -0.70257 -0.69548 -0.67237 -0.64835 -0.57223 -0.56135 -0.52631 -0.37393 -0.32748 -0.31186 -0.21541 -0.20386 -0.19103 -0.09329 -0.079393 -0.03808 -0.02132 -0.015546 -0.0044207 0.067874 0.14238 0.15005 0.16991 0.20516 0.3118 0.31648 0.32398 0.50465 0.62527 0.67597 0.69745 0.75686 0.78574 0.79969 0.852 0.95128 1.0048 1.0158 1.027 1.0287 1.0535 1.2647 1.3018 1.31 1.3295 1.3842 1.4111 1.493 1.5035 1.5178 1.5246 1.5462 1.5795 1.595 1.6073 1.6493 1.6646 1.7112 1.7234 1.7612 1.7706 1.7846 1.7853 1.7957 1.8252 1.8866 1.8879 1.939 1.9662 1.9899 2.1183 2.1591 2.1631 2.2643 2.2876 2.2902 2.3418 2.3431 2.3861 2.4438 2.5224 2.5352 2.5658 2.6266 2.6528 2.6764 2.7016 2.7756 2.8139 2.8143 2.8341 2.8639 2.8686 2.9098 2.9258 2.9401 2.9788 2.9892 3.0096 3.0318 3.0738 3.1109 3.2397 3.2542 3.2701 3.2979 3.3347 3.3391 3.3935 3.3966 3.4124 3.4318 3.4588 3.7823 3.8058 3.8168 3.8369 3.8445 3.8677 3.9517 3.9631 3.983 4.0057 4.0207 4.0905 4.0963 4.1593 4.232 4.2943 4.2997 4.3686 4.4294 4.433 4.4595 4.5141 4.5154 4.5181 4.5848 4.5911 4.6296 4.6485 4.6909 4.7025 4.758 4.7679 4.8249 4.8402 ================================================ FILE: bayesian_ml/3/z_set3.csv ================================================ -4.9868 -4.9519 -4.9502 -4.9396 -4.9315 -4.9209 -4.9002 -4.8511 -4.8198 -4.815 -4.7901 -4.786 -4.7699 -4.7306 -4.7182 -4.7096 -4.6725 -4.6661 -4.659 -4.6353 -4.6327 -4.6312 -4.6131 -4.6024 -4.602 -4.5815 -4.5796 -4.5703 -4.5691 -4.5679 -4.5048 -4.4445 -4.439 -4.4213 -4.4054 -4.3931 -4.3785 -4.3615 -4.3316 -4.3151 -4.2883 -4.2547 -4.2516 -4.2449 -4.2388 -4.207 -4.207 -4.131 -4.1254 -4.1223 -4.0995 -4.0978 -4.0531 -4.0356 -4.0282 -4.0122 -4.002 -3.9845 -3.9791 -3.9373 -3.9115 -3.8305 -3.8083 -3.8009 -3.7876 -3.751 -3.7435 -3.7369 -3.7056 -3.6763 -3.6655 -3.6566 -3.6244 -3.5779 -3.5289 -3.4959 -3.4889 -3.4271 -3.4058 -3.3958 -3.3914 -3.3734 -3.2996 -3.2972 -3.2843 -3.2638 -3.2598 -3.2306 -3.15 -3.1489 -3.1262 -3.118 -3.0249 -3.0015 -2.9998 -2.9788 -2.9505 -2.9499 -2.9476 -2.9305 -2.9304 -2.9149 -2.9089 -2.8231 -2.7855 -2.7842 -2.7415 -2.7301 -2.7124 -2.7037 -2.6987 -2.693 -2.6912 -2.6863 -2.6666 -2.6644 -2.6596 -2.6558 -2.6266 -2.5936 -2.5512 -2.5352 -2.5015 -2.4638 -2.448 -2.4398 -2.3495 -2.339 -2.3314 -2.3161 -2.2968 -2.2801 -2.2665 -2.264 -2.2625 -2.2454 -2.2004 -2.1971 -2.1794 -2.152 -2.1368 -2.1344 -2.0479 -2.047 -2.0299 -1.9965 -1.9904 -1.9678 -1.9624 -1.925 -1.9007 -1.8453 -1.8439 -1.7807 -1.7735 -1.7712 -1.7302 -1.7275 -1.7128 -1.6933 -1.6872 -1.6826 -1.6645 -1.6615 -1.6596 -1.6452 -1.6402 -1.6389 -1.627 -1.6227 -1.599 -1.5597 -1.5527 -1.5509 -1.5333 -1.526 -1.4965 -1.4448 -1.4288 -1.4035 -1.3942 -1.3684 -1.3427 -1.3406 -1.339 -1.3388 -1.3312 -1.3306 -1.3069 -1.2961 -1.2756 -1.2747 -1.2692 -1.2339 -1.2329 -1.216 -1.1969 -1.1628 -1.1584 -1.1456 -1.1427 -1.1355 -1.1234 -1.1048 -1.1043 -1.0623 -1.0145 -1.0094 -1.0038 -1.0021 -0.97338 -0.95574 -0.89607 -0.89295 -0.88666 -0.87605 -0.83668 -0.79571 -0.75097 -0.73753 -0.72952 -0.70918 -0.66817 -0.65016 -0.62682 -0.59099 -0.56011 -0.55454 -0.49508 -0.48726 -0.4844 -0.47054 -0.46502 -0.42104 -0.40219 -0.39675 -0.39619 -0.38477 -0.36937 -0.36224 -0.35906 -0.3035 -0.30343 -0.25345 -0.19644 -0.14387 -0.095543 -0.074672 -0.069207 -0.056429 -0.045271 -0.019002 -0.01611 0.034415 0.04716 0.072667 0.10431 0.12347 0.12563 0.1412 0.15163 0.17724 0.21526 0.21882 0.23551 0.26181 0.28315 0.28414 0.35762 0.3696 0.37536 0.3901 0.39776 0.40981 0.42899 0.43673 0.44751 0.46484 0.48725 0.50859 0.51076 0.53679 0.5539 0.56897 0.60319 0.6188 0.62447 0.64458 0.6458 0.65461 0.6585 0.70988 0.72304 0.72816 0.75148 0.765 0.76705 0.79859 0.85904 0.877 0.88625 0.90779 0.90964 0.93382 0.93647 0.96761 0.98591 1.0226 1.0259 1.029 1.0307 1.0364 1.0411 1.0439 1.0736 1.0799 1.1388 1.1585 1.1715 1.1767 1.2195 1.2203 1.2344 1.241 1.2741 1.2752 1.2776 1.3022 1.309 1.3115 1.3188 1.3283 1.3373 1.342 1.3878 1.3894 1.4134 1.4494 1.4832 1.5302 1.5309 1.5475 1.5685 1.5962 1.5965 1.6061 1.6511 1.6615 1.6627 1.7156 1.7273 1.734 1.7546 1.775 1.8126 1.8184 1.8468 1.9102 1.911 1.9162 1.9268 1.9351 1.9454 1.9574 2.0696 2.099 2.144 2.1774 2.179 2.1828 2.2325 2.2441 2.245 2.2924 2.3723 2.3748 2.3983 2.4032 2.4571 2.4722 2.5051 2.5222 2.5411 2.5448 2.5673 2.5712 2.5731 2.624 2.6393 2.6457 2.6665 2.673 2.703 2.7098 2.7236 2.7579 2.7582 2.7746 2.7802 2.7802 2.8164 2.8176 2.8325 2.8482 2.8825 2.9134 2.9356 2.9709 3.0034 3.0457 3.0474 3.0799 3.1111 3.1294 3.1786 3.1931 3.2223 3.2396 3.2757 3.2796 3.2874 3.3056 3.3436 3.3827 3.4034 3.424 3.4348 3.4363 3.4558 3.4784 3.5473 3.5656 3.5757 3.5979 3.5981 3.62 3.6227 3.6376 3.6495 3.6897 3.6955 3.7268 3.756 3.8512 3.869 3.8777 3.9003 3.9215 3.9295 3.9456 3.9572 3.9715 3.9952 3.9953 4.0379 4.0492 4.0516 4.0528 4.096 4.097 4.1014 4.1046 4.1131 4.1272 4.1398 4.1958 4.3148 4.3501 4.3532 4.3558 4.3642 4.3688 4.413 4.4421 4.4633 4.4751 4.4999 4.5209 4.5248 4.5544 4.5711 4.5915 4.6243 4.6676 4.6703 4.6849 4.6951 4.6997 4.7483 4.7616 4.8221 4.8389 4.8685 4.8843 4.8894 4.9174 4.921 4.9289 4.9461 4.979 ================================================ FILE: bayesian_ml/4/data.txt ================================================ 4.1018,2.7755 -2.7843,-2.5328 4.9085,1.7415 -0.98785,-0.096165 5.0936,1.4871 -3.2698,-2.0138 4.322,1.7522 1.1916,1.0932 2.8191,2.5074 4.6657,1.7354 -2.5031,3.9679 2.4564,2.9697 -6.737,-8.7944 -3.3788,-4.7085 2.9108,2.7162 -3.4432,-1.5452 2.2044,2.2752 3.1178,2.0867 2.0801,4.5122 -0.4534,-0.40019 -3.9462,-3.4262 -2.7851,-2.8649 -6.1236,-6.1929 5.7535,0.34864 -3.3615,3.2837 -4.2186,5.1414 2.9101,4.2141 0.84418,-2.1573 1.578,0.24561 -3.4763,4.7377 3.0744,2.1029 3.4406,1.6932 2.9462,3.1246 5.3141,1.5204 3.2627,1.7641 1.3692,0.019343 0.93969,4.4613 0.84051,3.5441 -4.4498,4.2623 0.24152,-0.96248 2.1622,3.4838 -3.4546,4.983 0.16953,0.58335 -0.027432,-1.4383 3.6449,3.4297 -0.079127,-1.7929 2.046,3.7616 -5.4619,-4.3469 0.66641,-0.53428 -3.7058,-6.0215 -3.8574,-5.3334 2.2173,-0.91211 -4.588,4.9909 -0.29331,-0.6333 -0.79856,-1.3326 -2.1379,-3.148 -3.3361,4.1204 3.3964,2.8128 -6.1827,-9.194 -1.9853,-3.7974 -0.12541,-0.92221 4.3319,2.9815 -2.9299,-5.7147 -6.2677,-6.8165 3.3636,1.8345 -2.246,-2.6986 2.4218,3.3688 1.2219,-0.50176 -3.9583,2.6322 -5.1256,-6.3729 0.54738,4.0857 1.7943,-1.1886 -0.69529,-0.70864 3.4995,2.9259 -3.7161,5.5869 -5.675,-4.773 -3.1841,-1.647 1.3342,-1.3613 2.0226,3.3061 1.5212,3.6252 -2.9016,-4.4155 1.3775,-0.95756 -2.9503,-3.7117 5.0034,1.932 0.76731,-0.74763 0.032336,-2.7383 -6.3487,-6.5736 -0.2545,-0.75344 -4.169,-4.1116 2.3763,3.0075 2.7965,3.1516 -5.6324,-8.3578 -1.5831,-2.5032 3.8007,2.7588 6.4521,1.3254 -1.6098,-3.3926 4.0821,2.7777 1.845,-1.9623 -1.3677,-0.55576 2.9786,2.0606 1.5702,3.6537 -0.11889,-0.39907 2.2032,4.5764 3.0725,2.9404 4.8477,2.3742 3.051,3.4929 2.0157,3.0993 1.6125,5.1709 4.9322,2.9016 3.2214,1.1894 3.9556,2.2825 -0.57541,0.88392 3.0282,2.5043 3.3044,2.5408 6.084,0.41893 5.2028,1.8809 1.1464,-1.4103 -0.99623,-1.873 3.1967,3.157 -0.81208,0.49219 5.6915,1.7463 1.3163,-1.5315 -4.9834,4.4425 -5.0667,-5.3556 2.7229,1.9391 0.94494,-1.2182 3.8887,1.3523 2.3424,4.1084 4.3535,2.5696 0.079367,0.25433 4.4885,2.1952 -3.3392,4.5667 -0.83181,-2.5322 1.0295,-1.5603 -2.6943,-3.7788 1.1898,-1.0653 -0.25662,-0.43771 -3.8077,-5.9955 0.45538,3.307 2.7107,4.3586 -4.4701,-6.4745 2.4627,3.404 2.9282,2.7614 3.3275,2.9878 4.4574,1.255 -2.769,-3.073 -3.1109,-3.9208 4.0042,2.8929 -8.463,-8.9882 -3.1489,-2.696 -3.9129,-3.7642 4.243,2.8379 -5.6065,-6.5221 -1.189,-1.1011 -1.5842,-1.6023 -0.41358,-0.63273 2.4407,3.3573 3.9408,1.7018 5.9457,1.1287 1.0341,-0.52669 -2.8595,4.4397 0.63557,-0.30127 -3.7764,-6.9249 0.91297,-1.954 5.0938,3.5936 3.9196,2.5586 -0.46777,-1.0298 3.6313,1.6239 -0.031369,-0.10111 -4.3877,-4.8732 1.2262,0.65494 -2.6655,-2.2333 3.9422,2.4165 1.2014,-0.098558 4.501,2.944 -5.6844,-5.7906 -4.0166,2.947 0.28418,-1.8048 4.6023,0.8213 0.24267,-3.878 -2.2338,-5.1638 2.9347,1.7524 -1.3805,-2.5762 -0.90795,1.2333 4.2075,3.1063 -2.1278,4.3067 -4.0478,-5.1684 1.9329,2.1893 -7.6256,-8.1264 -4.7174,-7.1461 -0.13106,0.014465 -5.8557,-5.1366 -5.9314,-4.6967 4.2642,2.0679 -6.727,-6.2622 3.2245,3.4363 -5.1829,5.1906 -5.5965,-6.3422 2.9379,3.3463 5.2847,1.5374 2.8052,2.5514 -4.7574,5.5592 -2.9844,-5.2619 -3.31,4.0064 2.8413,2.407 3.8481,2.4584 0.65418,-1.8281 3.6013,2.1847 2.4326,0.29105 -4.5797,-3.4686 -3.3286,3.1836 -0.34821,-1.0012 -5.3663,-9.3532 -2.3033,-4.401 5.0091,1.5007 -3.7659,4.7209 -4.4302,4.4777 -4.3974,3.0623 -6.6131,-5.6686 0.25319,-1.2064 3.6856,1.0241 -5.6857,-6.4256 3.0639,2.8238 3.7332,1.5943 -0.14387,-2.4385 0.88598,-0.56042 5.3827,1.2769 -3.0166,-4.7408 -2.4587,4.1896 -0.62788,-1.3862 2.4177,3.9261 -0.85756,1.1946 -6.3911,-5.8408 4.5023,3.372 -4.4713,-4.049 2.1595,2.8096 1.2035,4.5017 3.5571,3.5699 -3.4531,4.6434 -3.3611,-5.4515 4.5575,1.9208 -3.9329,-5.3362 2.9503,2.3361 1.4231,-0.14189 3.2051,2.5119 -4.5733,4.2999 -2.5123,-3.5152 -4.4529,-5.1957 -3.235,-3.6716 0.57698,-2.2389 ================================================ FILE: bayesian_ml/4/emgmm.py ================================================ # GMM using Expectation-Maximization import numpy as np import pandas as pd import matplotlib.pyplot as plt from scipy.stats import multivariate_normal def gmm(X, K, max_iter=20, smoothing=1e-2): N, D = X.shape M = np.zeros((K, D)) R = np.zeros((N, K)) C = np.zeros((K, D, D)) pi = np.ones(K) / K # uniform # initialize M to random, initialize C to spherical with variance 1 for k in xrange(K): M[k] = X[np.random.choice(N)] C[k] = np.eye(D) costs = np.zeros(max_iter) weighted_pdfs = np.zeros((N, K)) # we'll use these to store the PDF value of sample n and Gaussian k for i in xrange(max_iter): # step 1: determine assignments / resposibilities for k in xrange(K): weighted_pdfs[:,k] = pi[k]*multivariate_normal.pdf(X, M[k], C[k]) R = weighted_pdfs / weighted_pdfs.sum(axis=1, keepdims=True) # for k in xrange(K): # for n in xrange(N): # R[n,k] = weighted_pdfs[n,k] / weighted_pdfs[n,:].sum() # step 2: recalculate params for k in xrange(K): Nk = R[:,k].sum() pi[k] = Nk / N M[k] = R[:,k].dot(X) / Nk C[k] = np.sum(R[n,k]*np.outer(X[n] - M[k], X[n] - M[k]) for n in xrange(N)) / Nk + np.eye(D)*smoothing costs[i] = np.log(weighted_pdfs.sum(axis=1)).sum() if i > 0: if np.abs(costs[i] - costs[i-1]) < 0.1: break plt.plot(costs) plt.title("Costs") plt.show() random_colors = np.random.random((K, 3)) # colors = R.dot(random_colors) # plt.scatter(X[:,0], X[:,1], c=colors) plt.scatter(X[:,0], X[:,1], c=R.argmax(axis=1)) plt.show() print "pi:", pi print "means:", M print "covariances:", C return R def main(): X = pd.read_csv('data.txt', header=None).as_matrix() # what does it look like without clustering? plt.scatter(X[:,0], X[:,1]) plt.show() for K in (2,4,8,10): gmm(X, K, max_iter=100, smoothing=0) if __name__ == '__main__': main() ================================================ FILE: bayesian_ml/4/npbgmm.py ================================================ # GMM using Bayesian Nonparametric Clustering # Gaussian Mixture Model # Dirichlet Process # Gibbs Sampling import numpy as np import pandas as pd import matplotlib.pyplot as plt from scipy import stats from scipy.stats import multivariate_normal as mvn, dirichlet, wishart from scipy.special import digamma, gamma # scipy wishart!!! # parameters are df, sigma=scale # for us, df = a, inv(sigma) = B def marginal(x, c, m, a, B): D = len(x) k0 = ( c / (np.pi * (1 + c)) )**(D/2.0) k1top = np.linalg.det(B + (c/(1+c)*np.outer(x - m, x - m)))**(-(a + 1.0)/2.0) k1bot = np.linalg.det(B)**(-a/2.0) k1 = k1top/k1bot k2log = 0 for d in xrange(D): k2log += np.log(gamma( (a+1.0)/2.0 + (1.0-d)/2.0 )) - np.log(gamma( a/2.0 + (1.0-d)/2.0 )) k2 = np.exp(k2log) return k0*k1*k2 def normalize_phi_hat(phi_hat): # phi_hat is a dictionary: cluster index -> non-normalized probability of that cluster # normalization done in place so no need to return anything total = np.sum(phi_hat.values()) for j, p_hat in phi_hat.iteritems(): phi_hat[j] = p_hat / total def sample_cluster_identity(phi): # phi is a dictionary: cluster index -> probability of that cluster # print "dictionary sample from:", phi p = np.random.random() cumulative = 0 for j, q in phi.iteritems(): cumulative += q if p < cumulative: return j # print "cumulative:", cumulative assert(False) # should never get here because cumulative = 1 by now def sample_from_prior(c0, m0, a0, B0): precision0 = wishart.rvs(df=a0, scale=np.linalg.inv(B0)) cov = np.linalg.inv(precision0) mean = mvn.rvs(mean=m0, cov=cov/c0) return mean, cov # samples mu, sigma from P(mu, sigma | X) def sample_from_X(X, m0, c0, a0, B0): N = len(X) s = float(N) m = (c0 / (s + c0))*m0 + (1 / (s + c0))*X.sum(axis=0) c = s + c0 a = s + a0 meanX = X.mean(axis=0) B = (s / (a0*s + 1)) * np.outer(meanX - m0, meanX - m0) + B0 for i in xrange(N): B += np.outer(X[i] - meanX, X[i] - meanX) return sample_from_prior(c, m, a, B) def gmm(X, T=500): N, D = X.shape m0 = X.mean(axis=0) c0 = 0.1 a0 = float(D) B0 = c0*D*np.cov(X.T) alpha0 = 1.0 # cluster assignments - originally everything is assigned to cluster 0 C = np.zeros(N) # keep as many as we need for each gaussian # originally we sample from the prior # TODO: just use the function above precision0 = wishart.rvs(df=a0, scale=np.linalg.inv(B0)) covariances = [np.linalg.inv(precision0)] means = [mvn.rvs(mean=m0, cov=covariances[0]/c0)] cluster_counts = [1] K = 1 observations_per_cluster = np.zeros((T, 6)) for t in xrange(T): if t % 20 == 0: print t # 1) calculate phi[i,j] # Notes: # MANY new clusters can be made each iteration # A cluster can be DESTROYED if a x[i] is the only pt in cluster j and gets assigned to a new cluster # phi = np.empty((N, K)) list_of_cluster_indices = range(K) next_cluster_index = K # phi = [] # TODO: do we need this at all? for i in xrange(N): phi_i = {} for j in list_of_cluster_indices: # don't loop through xrange(K) because clusters can be created or destroyed as we loop through i nj_noti = np.sum(C[:i] == j) + np.sum(C[i+1:] == j) if nj_noti > 0: # existing cluster # phi[i,j] = N(x[i] | mu[j], cov[j]) * nj_noti / (alpha0 + N - 1) # using the sampled mu / covs phi_i[j] = mvn.pdf(X[i], mean=means[j], cov=covariances[j]) * nj_noti / (alpha0 + N - 1.0) # new cluster # create a possible new cluster for every sample i # but only keep it if sample i occupies this new cluster j' # i.e. if C[i] = j' when we sample C[i] # phi[i,j'] = alpha0 / (alpha0 + N - 1) * p(x[i]) # p(x[i]) is a marginal integrated over mu and precision phi_i[next_cluster_index] = alpha0 / (alpha0 + N - 1.0) * marginal(X[i], c0, m0, a0, B0) # normalize phi[i] and assign C[i] to its new cluster by sampling from phi[i] normalize_phi_hat(phi_i) # if C[i] = j' (new cluster), generate mu[j'] and cov[j'] C[i] = sample_cluster_identity(phi_i) if C[i] == next_cluster_index: list_of_cluster_indices.append(next_cluster_index) next_cluster_index += 1 new_mean, new_cov = sample_from_prior(c0, m0, a0, B0) means.append(new_mean) covariances.append(new_cov) # destroy any cluster with no points in it clusters_to_remove = [] tot = 0 for j in list_of_cluster_indices: nj = np.sum(C == j) # print "number of pts in cluster %d:" % j, nj tot += nj if nj == 0: clusters_to_remove.append(j) # print "tot:", tot assert(tot == N) for j in clusters_to_remove: list_of_cluster_indices.remove(j) # DEBUG - make sure no clusters are empty # counts = [np.sum(C == j) for j in list_of_cluster_indices] # for c in counts: # assert(c > 0) # re-order the cluster indexes so they range from 0..new K - 1 new_C = np.zeros(N) for new_j in xrange(len(list_of_cluster_indices)): old_j = list_of_cluster_indices[new_j] new_C[C == old_j] = new_j C = new_C K = len(list_of_cluster_indices) list_of_cluster_indices = range(K) # redundant but if removed will break counts cluster_counts.append(K) # 2) calculate the new mu, covariance for every currently non-empty cluster # i.e. SAMPLE mu, cov from the new cluster assignments means = [] covariances = [] for j in xrange(K): # first calculate m', c', a', B' # then call the function that samples a mean and covariance using these mean, cov = sample_from_X(X[C == j], m0, c0, a0, B0) means.append(mean) covariances.append(cov) # plot number of observations per cluster for 6 most probable clusters per iteration counts = sorted([np.sum(C == j) for j in list_of_cluster_indices], reverse=True) # print "counts:", counts if len(counts) < 6: observations_per_cluster[t,:len(counts)] = counts else: observations_per_cluster[t] = counts[:6] # plot number of clusters per iteration plt.plot(cluster_counts) plt.show() # plot number of observations per cluster for 6 most probable clusters per iteration plt.plot(observations_per_cluster) plt.show() def main(): X = pd.read_csv('data.txt', header=None).as_matrix() gmm(X) if __name__ == '__main__': main() ================================================ FILE: bayesian_ml/4/vigmm.py ================================================ # GMM using Variational Inference import numpy as np import pandas as pd import matplotlib.pyplot as plt from scipy import stats from scipy.stats import multivariate_normal as mvn, dirichlet, wishart from scipy.special import digamma, gamma def get_cost(X, K, cluster_assignments, phi, alphas, mu_means, mu_covs, a, B, orig_alphas, orig_c, orig_a, orig_B): N, D = X.shape total = 0 ln2pi = np.log(2*np.pi) # calculate B inverse since we will need it Binv = np.empty((K, D, D)) for j in xrange(K): Binv[j] = np.linalg.inv(B[j]) # calculate expectations first Elnpi = digamma(alphas) - digamma(alphas.sum()) # E[ln(pi)] Elambda = np.empty((K, D, D)) Elnlambda = np.empty(K) for j in xrange(K): Elambda[j] = a[j]*Binv[j] Elnlambda[j] = D*np.log(2) - np.log(np.linalg.det(B[j])) for d in xrange(D): Elnlambda[j] += digamma(a[j]/2.0 + (1 - d)/2.0) # now calculate the log joint likelihood # Gaussian part # total -= N*D*ln2pi # total += 0.5*Elnlambda.sum() # for j in xrange(K): # # total += 0.5*Elnlambda[j] # vectorized # for i in xrange(N): # if cluster_assignments[i] == j: # diff_ij = X[i] - mu_means[j] # total -= 0.5*( diff_ij.dot(Elambda[j]).dot(diff_ij) + np.trace(Elambda[j].dot(mu_covs[j])) ) # mixture coefficient part # total += Elnpi.sum() # use phi instead for j in xrange(K): for i in xrange(N): diff_ij = X[i] - mu_means[j] inside = Elnlambda[j] - D*ln2pi inside += -diff_ij.dot(Elambda[j]).dot(diff_ij) - np.trace(Elambda[j].dot(mu_covs[j])) # inside += Elnpi[j] total += phi[i,j]*(0.5*inside + Elnpi[j]) # E{lnp(mu)} - based on original prior for j in xrange(K): E_mu_dot_mu = np.trace(mu_covs[j]) + mu_means[j].dot(mu_means[j]) total += -0.5*D*np.log(2*np.pi*orig_c) - 0.5*E_mu_dot_mu/orig_c # print "total:", total # E{lnp(lambda)} - based on original prior for j in xrange(K): total += (orig_a[j] - D - 1)/2.0*Elnlambda[j] - 0.5*np.trace(orig_B[j].dot(Elambda[j])) # print "total 1:", total total += -orig_a[j]*D/2.0*np.log(2) + 0.5*orig_a[j]*np.log(np.linalg.det(orig_B[j])) # print "total 2:", total total -= D*(D-1)/4.0*np.log(np.pi) # print "total 3:", total for d in xrange(D): total -= np.log(gamma(orig_a[j]/2.0 + (1 - d)/2.0)) # E{lnp(pi)} - based on original prior # - lnB(orig_alpha) + sum[j]{ orig_alpha[j] - 1}*E[lnpi_j] total += np.log(gamma(orig_alphas.sum())) - np.log(gamma(orig_alphas)).sum() total += ((orig_alphas - 1)*Elnpi).sum() # should be 0 since orig_alpha = 1 # calculate entropies of the q distributions # q(c) for i in xrange(N): total += stats.entropy(phi[i]) # categorical entropy # q(pi) total += dirichlet.entropy(alphas) # q(mu) for j in xrange(K): total += mvn.entropy(cov=mu_covs[j]) # q(lambda) for j in xrange(K): total += wishart.entropy(df=a[j], scale=Binv[j]) return total def gmm(X, K, max_iter=100): N, D = X.shape # parameters for pi, mu, and precision alphas = np.ones(K, dtype=np.float32) # prior parameter for pi (dirichlet) orig_alphas = np.ones(K, dtype=np.float32) # prior parameter for pi (dirichlet) # mu_means = np.zeros((K, D), dtype=np.float32) # prior mean for mu (normal) ### No! # mu_covs = np.empty((K, D, D), dtype=np.float32) # prior covariance for mu (normal) orig_c = 10.0 # for k in xrange(K): # mu_covs[k] = np.eye(D)*orig_c orig_a = np.ones(K, dtype=np.float32)*D a = np.ones(K, dtype=np.float32)*D # prior for precision (wishart) orig_B = np.empty((K, D, D)) B = np.empty((K, D, D)) # precision (wishart) empirical_cov = np.cov(X.T) for k in xrange(K): B[k] = (D/10.0)*empirical_cov orig_B[k] = (D/10.0)*empirical_cov # try random init instead # mu_means = np.random.randn(K, D)*orig_c mu_means = np.empty((K, D)) for j in xrange(K): mu_means[j] = X[np.random.choice(N)] mu_covs = wishart.rvs(df=orig_a[0], scale=np.linalg.inv(B[0]), size=K) costs = np.zeros(max_iter) for iter_idx in xrange(max_iter): # calculate q(c[i]) # phi = np.empty((N,K)) # index i = sample, index j = cluster t1 = np.empty(K) t2 = np.empty((N,K)) t3 = np.empty(K) t4 = np.empty(K) # calculate this first because we will use it multiple times Binv = np.empty((K, D, D)) for j in range(K): Binv[j] = np.linalg.inv(B[j]) for j in xrange(K): # calculate t1 t1[j] = -np.log(np.linalg.det(B[j])) for d in xrange(D): t1[j] += digamma( (1 - d + a[j])/2.0 ) # calculate t2 for i in xrange(N): diff_ij = X[i] - mu_means[j] t2[i,j] = diff_ij.dot( (a[j]*Binv[j] ).dot(diff_ij) ) # calculate t3 t3[j] = np.trace( a[j]*Binv[j].dot(mu_covs[j]) ) # calculate t4 t4[j] = digamma(alphas[j]) - digamma(alphas.sum()) # calculate phi from t's # MAKE SURE 1-d array gets added to 2-d array correctly phi = np.exp(0.5*t1 - 0.5*t2 - 0.5*t3 + t4) # print "phi before normalize:", phi phi = phi / phi.sum(axis=1, keepdims=True) # print "phi:", phi cluster_assignments = phi.argmax(axis=1) n = phi.sum(axis=0) # there should be K of these # print "n[j]:", n # update q(pi) alphas = orig_alphas + n # print "alphas:", alphas # update q(mu) for j in xrange(K): mu_covs[j] = np.linalg.inv( (1.0/orig_c)*np.eye(D) + n[j]*a[j]*Binv[j] ) mu_means[j] = mu_covs[j].dot( a[j]*Binv[j] ).dot(phi[:,j].dot(X)) # print "means:", mu_means # print "mu_covs:", mu_covs # update q(lambda) a = orig_a + n for j in xrange(K): B[j] = orig_B[j].copy() for i in xrange(N): diff_ij = X[i] - mu_means[j] B[j] += phi[i,j]*(np.outer(diff_ij, diff_ij) + mu_covs[j]) # print "a[j]:", a # print "B[j]:", B costs[iter_idx] = get_cost(X, K, cluster_assignments, phi, alphas, mu_means, mu_covs, a, B, orig_alphas, orig_c, orig_a, orig_B) plt.plot(costs) plt.title("Costs") plt.show() print "cluster assignments:\n", cluster_assignments plt.scatter(X[:,0], X[:,1], c=cluster_assignments, s=100, alpha=0.7) plt.show() def main(): X = pd.read_csv('data.txt', header=None).as_matrix() # for K in (2,4): for K in (2,4,10,25): gmm(X, K) if __name__ == '__main__': main() ================================================ FILE: best_fit_line.py ================================================ from pulp import * ### remove variable b because it is unconstrained ### it's just a linear combination of the others ### you can get the result: # status: Optimal # values: # a: 20000.0 # b: -10000.0 # c: 0.0 # z: 10000.0 ### or any other multiple thereof ### ax + by - c = 0 ### is the same as y = (-a/b)x + (c/b) prob = LpProblem("best_fit_line", LpMinimize) z = LpVariable('z',0) a = LpVariable('a',0) # b = LpVariable('b') c = LpVariable('c',0) # objective function prob += z points = [ (1,3), (2,5), (3,7), (5,11), (7,14), (8,15), (10,19), ] prob += (a != 0) for x,y in points: prob += (a*x - y - c <= z) prob += (a*x - y - c >= -z) status = prob.solve(GLPK(msg = 0)) print "status:", LpStatus[status] print "values:" print "\ta:", value(a) # print "\tb:", value(b) print "\tc:", value(c) print "\tz:", value(z) # extra part to plot everything import numpy as np import matplotlib.pyplot as plt data = np.array(points) plt.scatter(data[:,0], data[:,1]) x = np.linspace(0, 11, 100) y = value(a)*x - value(c) plt.plot(x, y) plt.show() ================================================ FILE: calculus/WHERE ARE THE NOTEBOOKS.txt ================================================ As stated in the "where to get the code" / "where to get the notebooks" lecture, the notebooks are NOT on Github. If you missed this, please review the lecture for the actual location of the notebooks. If, after reviewing it, you still need assistance, please contact info@deeplearningcourses.com. ================================================ FILE: calculus/extra_reading.txt ================================================ Calculus: Early Transcendentals https://amzn.to/3Kwmabe ================================================ FILE: chatgpt_trading/WHERE ARE THE NOTEBOOKS.txt ================================================ As stated in the "where to get the code" / "where to get the notebooks" lecture, the notebooks are NOT on Github. If you missed this, please review the lecture for the actual location of the notebooks. If, after reviewing it, you still need assistance, please contact info@deeplearningcourses.com. ================================================ FILE: chatgpt_trading/extra_reading.txt ================================================ ARIMA (for mean reversion) https://deeplearningcourses.com/c/time-series-analysis Financial Engineering https://deeplearningcourses.com/c/ai-finance ================================================ FILE: cnn_class/WHERE ARE THE NOTEBOOKS.txt ================================================ As stated in the "where to get the code" / "where to get the notebooks" lecture, the notebooks are NOT on Github. If you missed this, please review the lecture for the actual location of the notebooks. If, after reviewing it, you still need assistance, please contact info@deeplearningcourses.com. ================================================ FILE: cnn_class/benchmark.py ================================================ # Vanilla deep network # https://deeplearningcourses.com/c/deep-learning-convolutional-neural-networks-theano-tensorflow # https://udemy.com/deep-learning-convolutional-neural-networks-theano-tensorflow # get the data: http://ufldl.stanford.edu/housenumbers/ from __future__ import print_function, division from builtins import range # Note: you may need to update your version of future # sudo pip install -U future import os import numpy as np import tensorflow as tf import matplotlib.pyplot as plt from scipy.io import loadmat from sklearn.utils import shuffle from datetime import datetime def error_rate(p, t): return np.mean(p != t) def flatten(X): # input will be (32, 32, 3, N) # output will be (N, 3072) N = X.shape[-1] flat = np.zeros((N, 3072)) for i in range(N): flat[i] = X[:,:,:,i].reshape(3072) return flat # In [6]: train['X'].shape # Out[6]: (32, 32, 3, 73257) # In [7]: train['y'].shape # Out[7]: (73257, 1) # In [8]: set(train['y'].flatten().tolist()) # Out[8]: {1, 2, 3, 4, 5, 6, 7, 8, 9, 10} # We will change these to 0..9 to be 0-indexed # In [12]: test['X'].shape # Out[12]: (32, 32, 3, 26032) # In [13]: test['y'].shape # Out[13]: (26032, 1) def get_data(): if not os.path.exists('../large_files/train_32x32.mat'): print('Looking for ../large_files/train_32x32.mat') print('You have not downloaded the data and/or not placed the files in the correct location.') print('Please get the data from: http://ufldl.stanford.edu/housenumbers') print('Place train_32x32.mat and test_32x32.mat in the folder large_files adjacent to the class folder') exit() train = loadmat('../large_files/train_32x32.mat') test = loadmat('../large_files/test_32x32.mat') return train, test def main(): train, test = get_data() # Need to scale! don't leave as 0..255 # Y is a N x 1 matrix with values 1..10 (MATLAB indexes by 1) # So flatten it and make it 0..9 # Also need indicator matrix for cost calculation Xtrain = flatten(train['X'].astype(np.float32) / 255.) Ytrain = train['y'].flatten() - 1 Xtrain, Ytrain = shuffle(Xtrain, Ytrain) Xtest = flatten(test['X'].astype(np.float32) / 255.) Ytest = test['y'].flatten() - 1 # gradient descent params max_iter = 20 print_period = 10 N, D = Xtrain.shape batch_sz = 500 n_batches = N // batch_sz # initial weights M1 = 1000 # hidden layer size M2 = 500 K = 10 W1_init = np.random.randn(D, M1) / np.sqrt(D + M1) b1_init = np.zeros(M1) W2_init = np.random.randn(M1, M2) / np.sqrt(M1 + M2) b2_init = np.zeros(M2) W3_init = np.random.randn(M2, K) / np.sqrt(M2 + K) b3_init = np.zeros(K) # define variables and expressions X = tf.placeholder(tf.float32, shape=(None, D), name='X') T = tf.placeholder(tf.int32, shape=(None,), name='T') W1 = tf.Variable(W1_init.astype(np.float32)) b1 = tf.Variable(b1_init.astype(np.float32)) W2 = tf.Variable(W2_init.astype(np.float32)) b2 = tf.Variable(b2_init.astype(np.float32)) W3 = tf.Variable(W3_init.astype(np.float32)) b3 = tf.Variable(b3_init.astype(np.float32)) Z1 = tf.nn.relu( tf.matmul(X, W1) + b1 ) Z2 = tf.nn.relu( tf.matmul(Z1, W2) + b2 ) logits = tf.matmul(Z2, W3) + b3 cost = tf.reduce_sum( tf.nn.sparse_softmax_cross_entropy_with_logits( logits=logits, labels=T ) ) train_op = tf.train.RMSPropOptimizer(0.0001, decay=0.99, momentum=0.9).minimize(cost) # we'll use this to calculate the error rate predict_op = tf.argmax(logits, 1) t0 = datetime.now() LL = [] init = tf.global_variables_initializer() with tf.Session() as session: session.run(init) for i in range(max_iter): for j in range(n_batches): Xbatch = Xtrain[j*batch_sz:(j*batch_sz + batch_sz),] Ybatch = Ytrain[j*batch_sz:(j*batch_sz + batch_sz),] session.run(train_op, feed_dict={X: Xbatch, T: Ybatch}) if j % print_period == 0: test_cost = session.run(cost, feed_dict={X: Xtest, T: Ytest}) prediction = session.run(predict_op, feed_dict={X: Xtest}) err = error_rate(prediction, Ytest) print("Cost / err at iteration i=%d, j=%d: %.3f / %.3f" % (i, j, test_cost, err)) LL.append(test_cost) print("Elapsed time:", (datetime.now() - t0)) plt.plot(LL) plt.show() if __name__ == '__main__': main() ================================================ FILE: cnn_class/blur.py ================================================ # https://deeplearningcourses.com/c/deep-learning-convolutional-neural-networks-theano-tensorflow # https://udemy.com/deep-learning-convolutional-neural-networks-theano-tensorflow from __future__ import print_function, division from builtins import range # Note: you may need to update your version of future # sudo pip install -U future import numpy as np from scipy.signal import convolve2d import matplotlib.pyplot as plt import matplotlib.image as mpimg # load the famous Lena image img = mpimg.imread('lena.png') # what does it look like? plt.imshow(img) plt.show() # make it B&W bw = img.mean(axis=2) plt.imshow(bw, cmap='gray') plt.show() # create a Gaussian filter W = np.zeros((20, 20)) for i in range(20): for j in range(20): dist = (i - 9.5)**2 + (j - 9.5)**2 W[i, j] = np.exp(-dist / 50.) W /= W.sum() # normalize the kernel # let's see what the filter looks like plt.imshow(W, cmap='gray') plt.show() # now the convolution out = convolve2d(bw, W) plt.imshow(out, cmap='gray') plt.show() # what's that weird black stuff on the edges? let's check the size of output print(out.shape) # after convolution, the output signal is N1 + N2 - 1 # we can also just make the output the same size as the input out = convolve2d(bw, W, mode='same') plt.imshow(out, cmap='gray') plt.show() print(out.shape) # in color out3 = np.zeros(img.shape) print(out3.shape) for i in range(3): out3[:,:,i] = convolve2d(img[:,:,i], W, mode='same') # out3 /= out3.max() # can also do this if you didn't normalize the kernel plt.imshow(out3) plt.show() # does not look like anything ================================================ FILE: cnn_class/cifar.py ================================================ # https://deeplearningcourses.com/c/deep-learning-convolutional-neural-networks-theano-tensorflow import os import numpy as np import pandas as pd import theano import theano.tensor as T import matplotlib.pyplot as plt from PIL import Image from sklearn.utils import shuffle from theano.tensor.nnet import conv2d from theano.tensor.signal import downsample # from util import getImageData, error_rate, init_weight_and_bias, init_filter # from ann_theano import HiddenLayer def init_weight_and_bias(M1, M2): W = np.random.randn(M1, M2) / np.sqrt(M1 + M2) b = np.zeros(M2) return W.astype(np.float32), b.astype(np.float32) def init_filter(shape, poolsz): w = np.random.randn(*shape) / np.sqrt(np.prod(shape[1:]) + shape[0]*np.prod(shape[2:] / np.prod(poolsz))) return w.astype(np.float32) def error_rate(targets, predictions): return np.mean(targets != predictions) def image2array(im): arr = np.array(im) # will be (H, W, 3) return arr.transpose((2, 1, 0)) def getImageData(): N = 50000 savedXpath = '../large_files/cifar10/train_all.npy' if not os.path.exists(savedXpath): X = np.zeros((N, 3, 32, 32)) for i in xrange(N): im = Image.open("../large_files/cifar10/train/%s.png" % (i + 1)) X[i] = image2array(im) if i % 1000 == 0: print i np.save(savedXpath, X.astype(np.uint8)) else: X = np.load(savedXpath) X = X.astype(np.float32) / 255.0 # load labels Y = np.zeros(N) df = pd.read_csv('../large_files/cifar10/trainLabels.csv') S = df['label'].tolist() idx = 0 label2idx = {} i = 0 for s in S: if s not in label2idx: label2idx[s] = idx idx += 1 Y[i] = label2idx[s] i += 1 print "done loading data" X, Y = shuffle(X, Y) return X[:30000], Y[:30000] class HiddenLayer(object): def __init__(self, M1, M2, an_id): self.id = an_id self.M1 = M1 self.M2 = M2 W, b = init_weight_and_bias(M1, M2) self.W = theano.shared(W, 'W_%s' % self.id) self.b = theano.shared(b, 'b_%s' % self.id) self.params = [self.W, self.b] def forward(self, X): return T.nnet.relu(X.dot(self.W) + self.b) class ConvPoolLayer(object): def __init__(self, mi, mo, fw=5, fh=5, poolsz=(2, 2)): # mi = input feature map size # mo = output feature map size sz = (mo, mi, fw, fh) W0 = init_filter(sz, poolsz) self.W = theano.shared(W0) b0 = np.zeros(mo, dtype=np.float32) self.b = theano.shared(b0) self.poolsz = poolsz self.params = [self.W, self.b] def forward(self, X): conv_out = conv2d(input=X, filters=self.W) pooled_out = downsample.max_pool_2d( input=conv_out, ds=self.poolsz, ignore_border=True ) return T.nnet.relu(pooled_out + self.b.dimshuffle('x', 0, 'x', 'x')) class CNN(object): def __init__(self, convpool_layer_sizes, hidden_layer_sizes): self.convpool_layer_sizes = convpool_layer_sizes self.hidden_layer_sizes = hidden_layer_sizes def fit(self, X, Y, lr=1e-4, mu=0.99, reg=1e-6, decay=0.99999, eps=1e-2, batch_sz=30, epochs=100, show_fig=True): lr = np.float32(lr) mu = np.float32(mu) reg = np.float32(reg) decay = np.float32(decay) eps = np.float32(eps) # make a validation set X, Y = shuffle(X, Y) X = X.astype(np.float32) Y = Y.astype(np.int32) Xvalid, Yvalid = X[-1000:], Y[-1000:] X, Y = X[:-1000], Y[:-1000] # initialize convpool layers N, c, width, height = X.shape mi = c outw = width outh = height self.convpool_layers = [] for mo, fw, fh in self.convpool_layer_sizes: layer = ConvPoolLayer(mi, mo, fw, fh) self.convpool_layers.append(layer) outw = (outw - fw + 1) / 2 outh = (outh - fh + 1) / 2 mi = mo # initialize mlp layers K = len(set(Y)) self.hidden_layers = [] M1 = self.convpool_layer_sizes[-1][0]*outw*outh # size must be same as output of last convpool layer count = 0 for M2 in self.hidden_layer_sizes: h = HiddenLayer(M1, M2, count) self.hidden_layers.append(h) M1 = M2 count += 1 # logistic regression layer W, b = init_weight_and_bias(M1, K) self.W = theano.shared(W, 'W_logreg') self.b = theano.shared(b, 'b_logreg') # collect params for later use self.params = [self.W, self.b] for c in self.convpool_layers: self.params += c.params for h in self.hidden_layers: self.params += h.params # for momentum dparams = [theano.shared(np.zeros(p.get_value().shape, dtype=np.float32)) for p in self.params] # for rmsprop cache = [theano.shared(np.zeros(p.get_value().shape, dtype=np.float32)) for p in self.params] # set up theano functions and variables thX = T.tensor4('X', dtype='float32') thY = T.ivector('Y') pY = self.forward(thX) rcost = reg*T.sum([(p*p).sum() for p in self.params]) cost = -T.mean(T.log(pY[T.arange(thY.shape[0]), thY])) + rcost prediction = self.predict(thX) cost_predict_op = theano.function(inputs=[thX, thY], outputs=[cost, prediction]) # momentum only updates = [ (p, p + mu*dp - lr*T.grad(cost, p)) for p, dp in zip(self.params, dparams) ] + [ (dp, mu*dp - lr*T.grad(cost, p)) for p, dp in zip(self.params, dparams) ] train_op = theano.function( inputs=[thX, thY], updates=updates ) n_batches = N / batch_sz costs = [] for i in xrange(epochs): X, Y = shuffle(X, Y) for j in xrange(n_batches): Xbatch = X[j*batch_sz:(j*batch_sz+batch_sz)] Ybatch = Y[j*batch_sz:(j*batch_sz+batch_sz)] train_op(Xbatch, Ybatch) if j % 20 == 0: c, p = cost_predict_op(Xvalid, Yvalid) costs.append(c) e = error_rate(Yvalid, p) print "i:", i, "j:", j, "nb:", n_batches, "cost:", c, "error rate:", e if show_fig: plt.plot(costs) plt.show() def forward(self, X): Z = X for c in self.convpool_layers: Z = c.forward(Z) Z = Z.flatten(ndim=2) for h in self.hidden_layers: Z = h.forward(Z) return T.nnet.softmax(Z.dot(self.W) + self.b) def predict(self, X): pY = self.forward(X) return T.argmax(pY, axis=1) def main(): X, Y = getImageData() model = CNN( convpool_layer_sizes=[(20, 5, 5), (20, 5, 5)], hidden_layer_sizes=[500, 300], ) model.fit(X, Y) if __name__ == '__main__': main() ================================================ FILE: cnn_class/cnn_tf.py ================================================ # New concepts and differences from Theano: # - stride is the interval at which to apply the convolution # - unlike previous course, we use constant-size input to the network # since not doing that caused us to start swapping # - the output after convpool is a different size (8,8) here, (5,5) in Theano # https://deeplearningcourses.com/c/deep-learning-convolutional-neural-networks-theano-tensorflow # https://udemy.com/deep-learning-convolutional-neural-networks-theano-tensorflow from __future__ import print_function, division from builtins import range # Note: you may need to update your version of future # sudo pip install -U future import numpy as np import tensorflow as tf import matplotlib.pyplot as plt from datetime import datetime from scipy.signal import convolve2d from scipy.io import loadmat from sklearn.utils import shuffle from benchmark import get_data, error_rate def convpool(X, W, b): # just assume pool size is (2,2) because we need to augment it with 1s conv_out = tf.nn.conv2d(X, W, strides=[1, 1, 1, 1], padding='SAME') conv_out = tf.nn.bias_add(conv_out, b) pool_out = tf.nn.max_pool(conv_out, ksize=[1, 2, 2, 1], strides=[1, 2, 2, 1], padding='SAME') return tf.nn.relu(pool_out) def init_filter(shape, poolsz): w = np.random.randn(*shape) * np.sqrt(2.0 / np.prod(shape[:-1])) return w.astype(np.float32) def rearrange(X): # input is (32, 32, 3, N) # output is (N, 32, 32, 3) # N = X.shape[-1] # out = np.zeros((N, 32, 32, 3), dtype=np.float32) # for i in xrange(N): # for j in xrange(3): # out[i, :, :, j] = X[:, :, j, i] # return out / 255 return (X.transpose(3, 0, 1, 2) / 255).astype(np.float32) def main(): train, test = get_data() # Need to scale! don't leave as 0..255 # Y is a N x 1 matrix with values 1..10 (MATLAB indexes by 1) # So flatten it and make it 0..9 # Also need indicator matrix for cost calculation Xtrain = rearrange(train['X']) Ytrain = train['y'].flatten() - 1 # print len(Ytrain) del train Xtrain, Ytrain = shuffle(Xtrain, Ytrain) Xtest = rearrange(test['X']) Ytest = test['y'].flatten() - 1 del test # gradient descent params max_iter = 6 print_period = 10 N = Xtrain.shape[0] batch_sz = 500 n_batches = N // batch_sz # limit samples since input will always have to be same size # you could also just do N = N / batch_sz * batch_sz Xtrain = Xtrain[:73000,] Ytrain = Ytrain[:73000] Xtest = Xtest[:26000,] Ytest = Ytest[:26000] # print "Xtest.shape:", Xtest.shape # print "Ytest.shape:", Ytest.shape # initial weights M = 500 K = 10 poolsz = (2, 2) W1_shape = (5, 5, 3, 20) # (filter_width, filter_height, num_color_channels, num_feature_maps) W1_init = init_filter(W1_shape, poolsz) b1_init = np.zeros(W1_shape[-1], dtype=np.float32) # one bias per output feature map W2_shape = (5, 5, 20, 50) # (filter_width, filter_height, old_num_feature_maps, num_feature_maps) W2_init = init_filter(W2_shape, poolsz) b2_init = np.zeros(W2_shape[-1], dtype=np.float32) # vanilla ANN weights W3_init = np.random.randn(W2_shape[-1]*8*8, M) / np.sqrt(W2_shape[-1]*8*8 + M) b3_init = np.zeros(M, dtype=np.float32) W4_init = np.random.randn(M, K) / np.sqrt(M + K) b4_init = np.zeros(K, dtype=np.float32) # define variables and expressions # using None as the first shape element takes up too much RAM unfortunately X = tf.placeholder(tf.float32, shape=(batch_sz, 32, 32, 3), name='X') T = tf.placeholder(tf.int32, shape=(batch_sz,), name='T') W1 = tf.Variable(W1_init.astype(np.float32)) b1 = tf.Variable(b1_init.astype(np.float32)) W2 = tf.Variable(W2_init.astype(np.float32)) b2 = tf.Variable(b2_init.astype(np.float32)) W3 = tf.Variable(W3_init.astype(np.float32)) b3 = tf.Variable(b3_init.astype(np.float32)) W4 = tf.Variable(W4_init.astype(np.float32)) b4 = tf.Variable(b4_init.astype(np.float32)) Z1 = convpool(X, W1, b1) Z2 = convpool(Z1, W2, b2) Z2_shape = Z2.get_shape().as_list() Z2r = tf.reshape(Z2, [Z2_shape[0], np.prod(Z2_shape[1:])]) Z3 = tf.nn.relu( tf.matmul(Z2r, W3) + b3 ) Yish = tf.matmul(Z3, W4) + b4 cost = tf.reduce_sum( tf.nn.sparse_softmax_cross_entropy_with_logits( logits=Yish, labels=T ) ) train_op = tf.train.RMSPropOptimizer(0.0001, decay=0.99, momentum=0.9).minimize(cost) # we'll use this to calculate the error rate predict_op = tf.argmax(Yish, 1) t0 = datetime.now() LL = [] W1_val = None W2_val = None init = tf.global_variables_initializer() with tf.Session() as session: session.run(init) for i in range(max_iter): for j in range(n_batches): Xbatch = Xtrain[j*batch_sz:(j*batch_sz + batch_sz),] Ybatch = Ytrain[j*batch_sz:(j*batch_sz + batch_sz),] if len(Xbatch) == batch_sz: session.run(train_op, feed_dict={X: Xbatch, T: Ybatch}) if j % print_period == 0: # due to RAM limitations we need to have a fixed size input # so as a result, we have this ugly total cost and prediction computation test_cost = 0 prediction = np.zeros(len(Xtest)) for k in range(len(Xtest) // batch_sz): Xtestbatch = Xtest[k*batch_sz:(k*batch_sz + batch_sz),] Ytestbatch = Ytest[k*batch_sz:(k*batch_sz + batch_sz),] test_cost += session.run(cost, feed_dict={X: Xtestbatch, T: Ytestbatch}) prediction[k*batch_sz:(k*batch_sz + batch_sz)] = session.run( predict_op, feed_dict={X: Xtestbatch}) err = error_rate(prediction, Ytest) print("Cost / err at iteration i=%d, j=%d: %.3f / %.3f" % (i, j, test_cost, err)) LL.append(test_cost) W1_val = W1.eval() W2_val = W2.eval() print("Elapsed time:", (datetime.now() - t0)) plt.plot(LL) plt.show() W1_val = W1_val.transpose(3, 2, 0, 1) W2_val = W2_val.transpose(3, 2, 0, 1) # visualize W1 (20, 3, 5, 5) # W1_val = W1.get_value() grid = np.zeros((8*5, 8*5)) m = 0 n = 0 for i in range(20): for j in range(3): filt = W1_val[i,j] grid[m*5:(m+1)*5,n*5:(n+1)*5] = filt m += 1 if m >= 8: m = 0 n += 1 plt.imshow(grid, cmap='gray') plt.title("W1") plt.show() # visualize W2 (50, 20, 5, 5) # W2_val = W2.get_value() grid = np.zeros((32*5, 32*5)) m = 0 n = 0 for i in range(50): for j in range(20): filt = W2_val[i,j] grid[m*5:(m+1)*5,n*5:(n+1)*5] = filt m += 1 if m >= 32: m = 0 n += 1 plt.imshow(grid, cmap='gray') plt.title("W2") plt.show() if __name__ == '__main__': main() ================================================ FILE: cnn_class/cnn_tf_plot_filters.py ================================================ # New concepts and differences from Theano: # - stride is the interval at which to apply the convolution # - unlike previous course, we use constant-size input to the network # since not doing that caused us to start swapping # - the output after convpool is a different size (8,8) here, (5,5) in Theano # https://deeplearningcourses.com/c/deep-learning-convolutional-neural-networks-theano-tensorflow # https://udemy.com/deep-learning-convolutional-neural-networks-theano-tensorflow from __future__ import print_function, division from builtins import range # Note: you may need to update your version of future # sudo pip install -U future import numpy as np import tensorflow as tf import matplotlib.pyplot as plt from datetime import datetime from scipy.signal import convolve2d from scipy.io import loadmat from sklearn.utils import shuffle from benchmark import get_data, error_rate def convpool(X, W, b): # just assume pool size is (2,2) because we need to augment it with 1s conv_out = tf.nn.conv2d(X, W, strides=[1, 1, 1, 1], padding='SAME') conv_out = tf.nn.bias_add(conv_out, b) pool_out = tf.nn.max_pool(conv_out, ksize=[1, 2, 2, 1], strides=[1, 2, 2, 1], padding='SAME') return tf.nn.relu(pool_out) def init_filter(shape, poolsz): w = np.random.randn(*shape) * np.sqrt(2.0 / np.prod(shape[:-1])) return w.astype(np.float32) def rearrange(X): # input is (32, 32, 3, N) # output is (N, 32, 32, 3) # N = X.shape[-1] # out = np.zeros((N, 32, 32, 3), dtype=np.float32) # for i in xrange(N): # for j in xrange(3): # out[i, :, :, j] = X[:, :, j, i] # return out / 255 return (X.transpose(3, 0, 1, 2) / 255).astype(np.float32) train, test = get_data() # Need to scale! don't leave as 0..255 # Y is a N x 1 matrix with values 1..10 (MATLAB indexes by 1) # So flatten it and make it 0..9 # Also need indicator matrix for cost calculation Xtrain = rearrange(train['X']) Ytrain = train['y'].flatten() - 1 # print len(Ytrain) del train Xtrain, Ytrain = shuffle(Xtrain, Ytrain) Xtest = rearrange(test['X']) Ytest = test['y'].flatten() - 1 del test # gradient descent params max_iter = 6 print_period = 10 N = Xtrain.shape[0] batch_sz = 500 n_batches = N // batch_sz # limit samples since input will always have to be same size # you could also just do N = N / batch_sz * batch_sz Xtrain = Xtrain[:73000,] Ytrain = Ytrain[:73000] Xtest = Xtest[:26000,] Ytest = Ytest[:26000] # print "Xtest.shape:", Xtest.shape # print "Ytest.shape:", Ytest.shape # initial weights M = 500 K = 10 poolsz = (2, 2) W1_shape = (5, 5, 3, 20) # (filter_width, filter_height, num_color_channels, num_feature_maps) W1_init = init_filter(W1_shape, poolsz) b1_init = np.zeros(W1_shape[-1], dtype=np.float32) # one bias per output feature map W2_shape = (5, 5, 20, 50) # (filter_width, filter_height, old_num_feature_maps, num_feature_maps) W2_init = init_filter(W2_shape, poolsz) b2_init = np.zeros(W2_shape[-1], dtype=np.float32) # vanilla ANN weights W3_init = np.random.randn(W2_shape[-1]*8*8, M) / np.sqrt(W2_shape[-1]*8*8 + M) b3_init = np.zeros(M, dtype=np.float32) W4_init = np.random.randn(M, K) / np.sqrt(M + K) b4_init = np.zeros(K, dtype=np.float32) # define variables and expressions # using None as the first shape element takes up too much RAM unfortunately X = tf.placeholder(tf.float32, shape=(batch_sz, 32, 32, 3), name='X') T = tf.placeholder(tf.int32, shape=(batch_sz,), name='T') W1 = tf.Variable(W1_init.astype(np.float32)) b1 = tf.Variable(b1_init.astype(np.float32)) W2 = tf.Variable(W2_init.astype(np.float32)) b2 = tf.Variable(b2_init.astype(np.float32)) W3 = tf.Variable(W3_init.astype(np.float32)) b3 = tf.Variable(b3_init.astype(np.float32)) W4 = tf.Variable(W4_init.astype(np.float32)) b4 = tf.Variable(b4_init.astype(np.float32)) params = [W1, b1, W2, b2, W3, b3, W4, b4] Z1 = convpool(X, W1, b1) Z2 = convpool(Z1, W2, b2) Z2_shape = Z2.get_shape().as_list() Z2r = tf.reshape(Z2, [Z2_shape[0], np.prod(Z2_shape[1:])]) Z3 = tf.nn.relu( tf.matmul(Z2r, W3) + b3 ) Yish = tf.matmul(Z3, W4) + b4 cost = tf.reduce_sum( tf.nn.sparse_softmax_cross_entropy_with_logits( logits=Yish, labels=T ) ) + 0.01*sum(tf.reduce_sum(p*p) for p in params) train_op = tf.train.RMSPropOptimizer(0.0001, decay=0.99, momentum=0.9).minimize(cost) # train_op = tf.train.MomentumOptimizer(0.00001, momentum=0.99).minimize(cost) # we'll use this to calculate the error rate predict_op = tf.argmax(Yish, 1) t0 = datetime.now() LL = [] W1_val = None W2_val = None init = tf.global_variables_initializer() with tf.Session() as session: session.run(init) for i in range(max_iter): for j in range(n_batches): Xbatch = Xtrain[j*batch_sz:(j*batch_sz + batch_sz),] Ybatch = Ytrain[j*batch_sz:(j*batch_sz + batch_sz),] if len(Xbatch) == batch_sz: session.run(train_op, feed_dict={X: Xbatch, T: Ybatch}) if j % print_period == 0: # due to RAM limitations we need to have a fixed size input # so as a result, we have this ugly total cost and prediction computation test_cost = 0 prediction = np.zeros(len(Xtest)) for k in range(len(Xtest) // batch_sz): Xtestbatch = Xtest[k*batch_sz:(k*batch_sz + batch_sz),] Ytestbatch = Ytest[k*batch_sz:(k*batch_sz + batch_sz),] test_cost += session.run(cost, feed_dict={X: Xtestbatch, T: Ytestbatch}) prediction[k*batch_sz:(k*batch_sz + batch_sz)] = session.run( predict_op, feed_dict={X: Xtestbatch}) err = error_rate(prediction, Ytest) print("Cost / err at iteration i=%d, j=%d: %.3f / %.3f" % (i, j, test_cost, err)) LL.append(test_cost) W1_val = W1.eval() W2_val = W2.eval() print("Elapsed time:", (datetime.now() - t0)) plt.plot(LL) plt.show() W1_val = W1_val.transpose(3, 2, 0, 1) W2_val = W2_val.transpose(3, 2, 0, 1) # visualize W1 (20, 3, 5, 5) # W1_val = W1.get_value() grid = np.zeros((8*5, 8*5)) m = 0 n = 0 for i in range(20): for j in range(3): filt = W1_val[i,j] grid[m*5:(m+1)*5,n*5:(n+1)*5] = filt m += 1 if m >= 8: m = 0 n += 1 plt.imshow(grid, cmap='gray') plt.title("W1") plt.show() # visualize W2 (50, 20, 5, 5) # W2_val = W2.get_value() grid = np.zeros((32*5, 32*5)) m = 0 n = 0 for i in range(50): for j in range(20): filt = W2_val[i,j] grid[m*5:(m+1)*5,n*5:(n+1)*5] = filt m += 1 if m >= 32: m = 0 n += 1 plt.imshow(grid, cmap='gray') plt.title("W2") plt.show() ================================================ FILE: cnn_class/cnn_theano.py ================================================ # https://deeplearningcourses.com/c/deep-learning-convolutional-neural-networks-theano-tensorflow # https://udemy.com/deep-learning-convolutional-neural-networks-theano-tensorflow from __future__ import print_function, division from builtins import range # Note: you may need to update your version of future # sudo pip install -U future import numpy as np import theano import theano.tensor as T import matplotlib.pyplot as plt from theano.tensor.nnet import conv2d from theano.tensor.signal import pool from scipy.io import loadmat from sklearn.utils import shuffle from datetime import datetime from benchmark import get_data, error_rate def relu(a): return a * (a > 0) def convpool(X, W, b, poolsize=(2, 2)): conv_out = conv2d(input=X, filters=W) # downsample each feature map individually, using maxpooling pooled_out = pool.pool_2d( input=conv_out, ws=poolsize, ignore_border=True ) # add the bias term. Since the bias is a vector (1D array), we first # reshape it to a tensor of shape (1, n_filters, 1, 1). Each bias will # thus be broadcasted across mini-batches and feature map # width & height # return T.tanh(pooled_out + b.dimshuffle('x', 0, 'x', 'x')) return relu(pooled_out + b.dimshuffle('x', 0, 'x', 'x')) def init_filter(shape, poolsz): w = np.random.randn(*shape) * np.sqrt(2.0 / np.prod(shape[1:])) return w.astype(np.float32) def rearrange(X): # input is (32, 32, 3, N) # output is (N, 3, 32, 32) # N = X.shape[-1] # out = np.zeros((N, 3, 32, 32), dtype=np.float32) # for i in range(N): # for j in range(3): # out[i, j, :, :] = X[:, :, j, i] # return out / 255 return (X.transpose(3, 2, 0, 1) / 255).astype(np.float32) def main(): # step 1: load the data, transform as needed train, test = get_data() # Need to scale! don't leave as 0..255 # Y is a N x 1 matrix with values 1..10 (MATLAB indexes by 1) # So flatten it and make it 0..9 # Also need indicator matrix for cost calculation Xtrain = rearrange(train['X']) Ytrain = train['y'].flatten() - 1 del train Xtrain, Ytrain = shuffle(Xtrain, Ytrain) Xtest = rearrange(test['X']) Ytest = test['y'].flatten() - 1 del test max_iter = 6 print_period = 10 lr = np.float32(1e-3) mu = np.float32(0.9) N = Xtrain.shape[0] batch_sz = 500 n_batches = N // batch_sz M = 500 K = 10 poolsz = (2, 2) # after conv will be of dimension 32 - 5 + 1 = 28 # after downsample 28 / 2 = 14 W1_shape = (20, 3, 5, 5) # (num_feature_maps, num_color_channels, filter_width, filter_height) W1_init = init_filter(W1_shape, poolsz) b1_init = np.zeros(W1_shape[0], dtype=np.float32) # one bias per output feature map # after conv will be of dimension 14 - 5 + 1 = 10 # after downsample 10 / 2 = 5 W2_shape = (50, 20, 5, 5) # (num_feature_maps, old_num_feature_maps, filter_width, filter_height) W2_init = init_filter(W2_shape, poolsz) b2_init = np.zeros(W2_shape[0], dtype=np.float32) # vanilla ANN weights W3_init = np.random.randn(W2_shape[0]*5*5, M) / np.sqrt(W2_shape[0]*5*5 + M) b3_init = np.zeros(M, dtype=np.float32) W4_init = np.random.randn(M, K) / np.sqrt(M + K) b4_init = np.zeros(K, dtype=np.float32) # step 2: define theano variables and expressions X = T.tensor4('X', dtype='float32') Y = T.ivector('T') W1 = theano.shared(W1_init, 'W1') b1 = theano.shared(b1_init, 'b1') W2 = theano.shared(W2_init, 'W2') b2 = theano.shared(b2_init, 'b2') W3 = theano.shared(W3_init.astype(np.float32), 'W3') b3 = theano.shared(b3_init, 'b3') W4 = theano.shared(W4_init.astype(np.float32), 'W4') b4 = theano.shared(b4_init, 'b4') # forward pass Z1 = convpool(X, W1, b1) Z2 = convpool(Z1, W2, b2) Z3 = relu(Z2.flatten(ndim=2).dot(W3) + b3) pY = T.nnet.softmax( Z3.dot(W4) + b4) # define the cost function and prediction cost = -(T.log(pY[T.arange(Y.shape[0]), Y])).mean() prediction = T.argmax(pY, axis=1) # step 3: training expressions and functions params = [W1, b1, W2, b2, W3, b3, W4, b4] # momentum changes dparams = [ theano.shared( np.zeros_like( p.get_value(), dtype=np.float32 ) ) for p in params ] updates = [] grads = T.grad(cost, params) for p, dp, g in zip(params, dparams, grads): dp_update = mu*dp - lr*g p_update = p + dp_update updates.append((dp, dp_update)) updates.append((p, p_update)) train = theano.function( inputs=[X, Y], updates=updates, ) # create another function for this because we want it over the whole dataset get_prediction = theano.function( inputs=[X, Y], outputs=[cost, prediction], ) t0 = datetime.now() costs = [] for i in range(max_iter): Xtrain, Ytrain = shuffle(Xtrain, Ytrain) for j in range(n_batches): Xbatch = Xtrain[j*batch_sz:(j*batch_sz + batch_sz),] Ybatch = Ytrain[j*batch_sz:(j*batch_sz + batch_sz),] train(Xbatch, Ybatch) if j % print_period == 0: cost_val, prediction_val = get_prediction(Xtest, Ytest) err = error_rate(prediction_val, Ytest) print("Cost / err at iteration i=%d, j=%d: %.3f / %.3f" % (i, j, cost_val, err)) costs.append(cost_val) print("Elapsed time:", (datetime.now() - t0)) plt.plot(costs) plt.show() if __name__ == '__main__': main() ================================================ FILE: cnn_class/cnn_theano_plot_filters.py ================================================ # https://deeplearningcourses.com/c/deep-learning-convolutional-neural-networks-theano-tensorflow # https://udemy.com/deep-learning-convolutional-neural-networks-theano-tensorflow from __future__ import print_function, division from builtins import range # Note: you may need to update your version of future # sudo pip install -U future import numpy as np import theano import theano.tensor as T import matplotlib.pyplot as plt from scipy.io import loadmat from sklearn.utils import shuffle from datetime import datetime from benchmark import get_data, error_rate, y2indicator from cnn_theano import convpool, relu, init_filter, rearrange def main(): # step 1: load the data, transform as needed train, test = get_data() # Need to scale! don't leave as 0..255 # Y is a N x 1 matrix with values 1..10 (MATLAB indexes by 1) # So flatten it and make it 0..9 # Also need indicator matrix for cost calculation Xtrain = rearrange(train['X']) Ytrain = train['y'].flatten() - 1 del train Xtrain, Ytrain = shuffle(Xtrain, Ytrain) Ytrain_ind = y2indicator(Ytrain) Xtest = rearrange(test['X']) Ytest = test['y'].flatten() - 1 del test Ytest_ind = y2indicator(Ytest) max_iter = 8 print_period = 10 lr = np.float32(0.00001) reg = np.float32(0.01) mu = np.float32(0.99) N = Xtrain.shape[0] batch_sz = 500 n_batches = N // batch_sz M = 500 K = 10 poolsz = (2, 2) # after conv will be of dimension 32 - 5 + 1 = 28 # after downsample 28 / 2 = 14 W1_shape = (20, 3, 5, 5) # (num_feature_maps, num_color_channels, filter_width, filter_height) W1_init = init_filter(W1_shape, poolsz) b1_init = np.zeros(W1_shape[0], dtype=np.float32) # one bias per output feature map # after conv will be of dimension 14 - 5 + 1 = 10 # after downsample 10 / 2 = 5 W2_shape = (50, 20, 5, 5) # (num_feature_maps, old_num_feature_maps, filter_width, filter_height) W2_init = init_filter(W2_shape, poolsz) b2_init = np.zeros(W2_shape[0], dtype=np.float32) # vanilla ANN weights W3_init = np.random.randn(W2_shape[0]*5*5, M) / np.sqrt(W2_shape[0]*5*5 + M) b3_init = np.zeros(M, dtype=np.float32) W4_init = np.random.randn(M, K) / np.sqrt(M + K) b4_init = np.zeros(K, dtype=np.float32) # step 2: define theano variables and expressions X = T.tensor4('X', dtype='float32') Y = T.matrix('T') W1 = theano.shared(W1_init, 'W1') b1 = theano.shared(b1_init, 'b1') W2 = theano.shared(W2_init, 'W2') b2 = theano.shared(b2_init, 'b2') W3 = theano.shared(W3_init.astype(np.float32), 'W3') b3 = theano.shared(b3_init, 'b3') W4 = theano.shared(W4_init.astype(np.float32), 'W4') b4 = theano.shared(b4_init, 'b4') # momentum changes dW1 = theano.shared(np.zeros(W1_init.shape, dtype=np.float32), 'dW1') db1 = theano.shared(np.zeros(b1_init.shape, dtype=np.float32), 'db1') dW2 = theano.shared(np.zeros(W2_init.shape, dtype=np.float32), 'dW2') db2 = theano.shared(np.zeros(b2_init.shape, dtype=np.float32), 'db2') dW3 = theano.shared(np.zeros(W3_init.shape, dtype=np.float32), 'dW3') db3 = theano.shared(np.zeros(b3_init.shape, dtype=np.float32), 'db3') dW4 = theano.shared(np.zeros(W4_init.shape, dtype=np.float32), 'dW4') db4 = theano.shared(np.zeros(b4_init.shape, dtype=np.float32), 'db4') # forward pass Z1 = convpool(X, W1, b1) Z2 = convpool(Z1, W2, b2) Z3 = relu(Z2.flatten(ndim=2).dot(W3) + b3) pY = T.nnet.softmax( Z3.dot(W4) + b4) # define the cost function and prediction params = (W1, b1, W2, b2, W3, b3, W4, b4) reg_cost = reg*sum((param*param).sum() for param in params) cost = -(Y * T.log(pY)).sum() + reg_cost prediction = T.argmax(pY, axis=1) # step 3: training expressions and functions update_W1 = W1 + mu*dW1 - lr*T.grad(cost, W1) update_b1 = b1 + mu*db1 - lr*T.grad(cost, b1) update_W2 = W2 + mu*dW2 - lr*T.grad(cost, W2) update_b2 = b2 + mu*db2 - lr*T.grad(cost, b2) update_W3 = W3 + mu*dW3 - lr*T.grad(cost, W3) update_b3 = b3 + mu*db3 - lr*T.grad(cost, b3) update_W4 = W4 + mu*dW4 - lr*T.grad(cost, W4) update_b4 = b4 + mu*db4 - lr*T.grad(cost, b4) # update weight changes update_dW1 = mu*dW1 - lr*T.grad(cost, W1) update_db1 = mu*db1 - lr*T.grad(cost, b1) update_dW2 = mu*dW2 - lr*T.grad(cost, W2) update_db2 = mu*db2 - lr*T.grad(cost, b2) update_dW3 = mu*dW3 - lr*T.grad(cost, W3) update_db3 = mu*db3 - lr*T.grad(cost, b3) update_dW4 = mu*dW4 - lr*T.grad(cost, W4) update_db4 = mu*db4 - lr*T.grad(cost, b4) train = theano.function( inputs=[X, Y], updates=[ (W1, update_W1), (b1, update_b1), (W2, update_W2), (b2, update_b2), (W3, update_W3), (b3, update_b3), (W4, update_W4), (b4, update_b4), (dW1, update_dW1), (db1, update_db1), (dW2, update_dW2), (db2, update_db2), (dW3, update_dW3), (db3, update_db3), (dW4, update_dW4), (db4, update_db4), ], ) # create another function for this because we want it over the whole dataset get_prediction = theano.function( inputs=[X, Y], outputs=[cost, prediction], ) t0 = datetime.now() LL = [] for i in range(max_iter): for j in range(n_batches): Xbatch = Xtrain[j*batch_sz:(j*batch_sz + batch_sz),] Ybatch = Ytrain_ind[j*batch_sz:(j*batch_sz + batch_sz),] train(Xbatch, Ybatch) if j % print_period == 0: cost_val, prediction_val = get_prediction(Xtest, Ytest_ind) err = error_rate(prediction_val, Ytest) print("Cost / err at iteration i=%d, j=%d: %.3f / %.3f" % (i, j, cost_val, err)) LL.append(cost_val) print("Elapsed time:", (datetime.now() - t0)) plt.plot(LL) plt.show() # visualize W1 (20, 3, 5, 5) W1_val = W1.get_value() grid = np.zeros((8*5, 8*5)) m = 0 n = 0 for i in range(20): for j in range(3): filt = W1_val[i,j] grid[m*5:(m+1)*5,n*5:(n+1)*5] = filt m += 1 if m >= 8: m = 0 n += 1 plt.imshow(grid, cmap='gray') plt.title("W1") plt.show() # visualize W2 (50, 20, 5, 5) W2_val = W2.get_value() grid = np.zeros((32*5, 32*5)) m = 0 n = 0 for i in range(50): for j in range(20): filt = W2_val[i,j] grid[m*5:(m+1)*5,n*5:(n+1)*5] = filt m += 1 if m >= 32: m = 0 n += 1 plt.imshow(grid, cmap='gray') plt.title("W2") plt.show() if __name__ == '__main__': main() ================================================ FILE: cnn_class/custom_blur.py ================================================ # https://deeplearningcourses.com/c/deep-learning-convolutional-neural-networks-theano-tensorflow # https://udemy.com/deep-learning-convolutional-neural-networks-theano-tensorflow from __future__ import print_function, division from builtins import range # Note: you may need to update your version of future # sudo pip install -U future import numpy as np # from scipy.signal import convolve2d import matplotlib.pyplot as plt import matplotlib.image as mpimg from datetime import datetime # def convolve2d(X, W): # t0 = datetime.now() # n1, n2 = X.shape # m1, m2 = W.shape # Y = np.zeros((n1 + m1 - 1, n2 + m2 - 1)) # for i in xrange(n1 + m1 - 1): # for ii in xrange(m1): # for j in xrange(n2 + m2 - 1): # for jj in xrange(m2): # if i >= ii and j >= jj and i - ii < n1 and j - jj < n2: # Y[i,j] += W[ii,jj]*X[i - ii,j - jj] # print "elapsed time:", (datetime.now() - t0) # return Y # def convolve2d(X, W): # t0 = datetime.now() # n1, n2 = X.shape # m1, m2 = W.shape # Y = np.zeros((n1 + m1 - 1, n2 + m2 - 1)) # for i in xrange(n1): # for j in xrange(n2): # Y[i:i+m1,j:j+m2] += X[i,j]*W # print "elapsed time:", (datetime.now() - t0) # return Y # same size as input def convolve2d(X, W): n1, n2 = X.shape m1, m2 = W.shape Y = np.zeros((n1 + m1 - 1, n2 + m2 - 1)) for i in range(n1): for j in range(n2): Y[i:i+m1,j:j+m2] += X[i,j]*W ret = Y[m1//2:-m1//2+1,m2//2:-m2//2+1] assert(ret.shape == X.shape) return ret # smaller than input # def convolve2d(X, W): # n1, n2 = X.shape # m1, m2 = W.shape # Y = np.zeros((n1 + m1 - 1, n2 + m2 - 1)) # for i in xrange(n1): # for j in xrange(n2): # Y[i:i+m1,j:j+m2] += X[i,j]*W # ret = Y[m1-1:-m1+1,m2-1:-m2+1] # return ret # load the famous Lena image img = mpimg.imread('lena.png') # what does it look like? plt.imshow(img) plt.show() # make it B&W bw = img.mean(axis=2) plt.imshow(bw, cmap='gray') plt.show() # create a Gaussian filter W = np.zeros((20, 20)) for i in range(20): for j in range(20): dist = (i - 9.5)**2 + (j - 9.5)**2 W[i, j] = np.exp(-dist / 50.) # let's see what the filter looks like plt.imshow(W, cmap='gray') plt.show() # now the convolution out = convolve2d(bw, W) plt.imshow(out, cmap='gray') plt.show() # what's that weird black stuff on the edges? let's check the size of output print(out.shape) # after convolution, the output signal is N1 + N2 - 1 # try it in color out = np.zeros(img.shape) W /= W.sum() for i in range(3): out[:,:,i] = convolve2d(img[:,:,i], W) plt.imshow(out) plt.show() ================================================ FILE: cnn_class/echo.py ================================================ # https://deeplearningcourses.com/c/deep-learning-convolutional-neural-networks-theano-tensorflow # https://udemy.com/deep-learning-convolutional-neural-networks-theano-tensorflow from __future__ import print_function, division from builtins import range # Note: you may need to update your version of future # sudo pip install -U future import matplotlib.pyplot as plt import numpy as np import wave import sys from scipy.io.wavfile import write # If you right-click on the file and go to "Get Info", you can see: # sampling rate = 16000 Hz # bits per sample = 16 # The first is quantization in time # The second is quantization in amplitude # We also do this for images! # 2^16 = 65536 is how many different sound levels we have # 2^8 * 2^8 * 2^8 = 2^24 is how many different colors we can represent spf = wave.open('helloworld.wav', 'r') #Extract Raw Audio from Wav File signal = spf.readframes(-1) signal = np.fromstring(signal, 'Int16') print("numpy signal:", signal.shape) plt.plot(signal) plt.title("Hello world without echo") plt.show() delta = np.array([1., 0., 0.]) noecho = np.convolve(signal, delta) print("noecho signal:", noecho.shape) assert(np.abs(noecho[:len(signal)] - signal).sum() < 0.000001) noecho = noecho.astype(np.int16) # make sure you do this, otherwise, you will get VERY LOUD NOISE write('noecho.wav', 16000, noecho) filt = np.zeros(16000) filt[0] = 1 filt[4000] = 0.6 filt[8000] = 0.3 filt[12000] = 0.2 filt[15999] = 0.1 out = np.convolve(signal, filt) out = out.astype(np.int16) # make sure you do this, otherwise, you will get VERY LOUD NOISE write('out.wav', 16000, out) # plt.plot(out) # plt.title("Hello world with small echo") # plt.show() ================================================ FILE: cnn_class/edge.py ================================================ # https://deeplearningcourses.com/c/deep-learning-convolutional-neural-networks-theano-tensorflow # https://udemy.com/deep-learning-convolutional-neural-networks-theano-tensorflow from __future__ import print_function, division from builtins import range # Note: you may need to update your version of future # sudo pip install -U future import numpy as np from scipy.signal import convolve2d import matplotlib.pyplot as plt import matplotlib.image as mpimg # load the famous Lena image img = mpimg.imread('lena.png') # make it B&W bw = img.mean(axis=2) # Sobel operator - approximate gradient in X dir Hx = np.array([ [-1, 0, 1], [-2, 0, 2], [-1, 0, 1], ], dtype=np.float32) # Sobel operator - approximate gradient in Y dir Hy = np.array([ [-1, -2, -1], [0, 0, 0], [1, 2, 1], ], dtype=np.float32) Gx = convolve2d(bw, Hx) plt.imshow(Gx, cmap='gray') plt.show() Gy = convolve2d(bw, Hy) plt.imshow(Gy, cmap='gray') plt.show() # Gradient magnitude G = np.sqrt(Gx*Gx + Gy*Gy) plt.imshow(G, cmap='gray') plt.show() # The gradient's direction theta = np.arctan2(Gy, Gx) plt.imshow(theta, cmap='gray') plt.show() ================================================ FILE: cnn_class/edge_benchmark.py ================================================ # Vanilla deep network # https://deeplearningcourses.com/c/deep-learning-convolutional-neural-networks-theano-tensorflow # https://udemy.com/deep-learning-convolutional-neural-networks-theano-tensorflow from __future__ import print_function, division from builtins import range # Note: you may need to update your version of future # sudo pip install -U future import numpy as np import tensorflow as tf import matplotlib.pyplot as plt from scipy.signal import convolve2d from scipy.io import loadmat from sklearn.utils import shuffle from benchmark import error_rate Hx = np.array([ [-1, 0, 1], [-2, 0, 2], [-1, 0, 1], ], dtype=np.float32) # Sobel operator - approximate gradient in Y dir Hy = np.array([ [-1, -2, -1], [0, 0, 0], [1, 2, 1], ], dtype=np.float32) def convolve_flatten(X): # input will be (32, 32, 3, N) # output will be (N, 32*32) N = X.shape[-1] flat = np.zeros((N, 32*32)) for i in range(N): #flat[i] = X[:,:,:,i].reshape(3072) bw = X[:,:,:,i].mean(axis=2) # make it grayscale Gx = convolve2d(bw, Hx, mode='same') Gy = convolve2d(bw, Hy, mode='same') G = np.sqrt(Gx*Gx + Gy*Gy) G /= G.max() # normalize it flat[i] = G.reshape(32*32) return flat def main(): train = loadmat('../large_files/train_32x32.mat') test = loadmat('../large_files/test_32x32.mat') # Need to scale! don't leave as 0..255 # Y is a N x 1 matrix with values 1..10 (MATLAB indexes by 1) # So flatten it and make it 0..9 # Also need indicator matrix for cost calculation Xtrain = convolve_flatten(train['X'].astype(np.float32)) Ytrain = train['y'].flatten() - 1 Xtrain, Ytrain = shuffle(Xtrain, Ytrain) Xtest = convolve_flatten(test['X'].astype(np.float32)) Ytest = test['y'].flatten() - 1 # gradient descent params max_iter = 15 print_period = 10 N, D = Xtrain.shape batch_sz = 500 n_batches = N // batch_sz # initial weights M1 = 1000 # hidden layer size M2 = 500 K = 10 W1_init = np.random.randn(D, M1) / np.sqrt(D + M1) b1_init = np.zeros(M1) W2_init = np.random.randn(M1, M2) / np.sqrt(M1 + M2) b2_init = np.zeros(M2) W3_init = np.random.randn(M2, K) / np.sqrt(M2 + K) b3_init = np.zeros(K) # define variables and expressions X = tf.placeholder(tf.float32, shape=(None, D), name='X') T = tf.placeholder(tf.int32, shape=(None,), name='T') W1 = tf.Variable(W1_init.astype(np.float32)) b1 = tf.Variable(b1_init.astype(np.float32)) W2 = tf.Variable(W2_init.astype(np.float32)) b2 = tf.Variable(b2_init.astype(np.float32)) W3 = tf.Variable(W3_init.astype(np.float32)) b3 = tf.Variable(b3_init.astype(np.float32)) Z1 = tf.nn.relu( tf.matmul(X, W1) + b1 ) Z2 = tf.nn.relu( tf.matmul(Z1, W2) + b2 ) Yish = tf.matmul(Z2, W3) + b3 cost = tf.reduce_sum( tf.nn.sparse_softmax_cross_entropy_with_logits( logits=Yish, labels=T ) ) train_op = tf.train.RMSPropOptimizer(0.0001, decay=0.99, momentum=0.9).minimize(cost) # we'll use this to calculate the error rate predict_op = tf.argmax(Yish, 1) LL = [] init = tf.global_variables_initializer() with tf.Session() as session: session.run(init) for i in range(max_iter): for j in range(n_batches): Xbatch = Xtrain[j*batch_sz:(j*batch_sz + batch_sz),] Ybatch = Ytrain[j*batch_sz:(j*batch_sz + batch_sz),] session.run(train_op, feed_dict={X: Xbatch, T: Ybatch}) if j % print_period == 0: test_cost = session.run(cost, feed_dict={X: Xtest, T: Ytest}) prediction = session.run(predict_op, feed_dict={X: Xtest}) err = error_rate(prediction, Ytest) print("Cost / err at iteration i=%d, j=%d: %.3f / %.3f" % (i, j, test_cost, err)) LL.append(test_cost) plt.plot(LL) plt.show() if __name__ == '__main__': main() ================================================ FILE: cnn_class/exercises.txt ================================================ Logistic Regression https://www.kaggle.com/uciml/pima-indians-diabetes-database https://lazyprogrammer.me/course_files/exercises/diabetes.csv Linear Regression https://www.cs.toronto.edu/~delve/data/boston/bostonDetail.html https://lazyprogrammer.me/course_files/exercises/boston.txt ANN https://archive.ics.uci.edu/ml/datasets/ecoli (orig) https://www.kaggle.com/elikplim/ecoli-data-set (alt) https://lazyprogrammer.me/course_files/exercises/ecoli.csv CNN https://www.kaggle.com/c/challenges-in-representation-learning-facial-expression-recognition-challenge https://archive.org/download/fer2013_202311/fer2013.csv NLP https://www.kaggle.com/crowdflower/twitter-airline-sentiment https://lazyprogrammer.me/course_files/exercises/AirlineSentimentTweets.csv ================================================ FILE: cnn_class/extra_reading.txt ================================================ Gradient-Based Learning Applied to Document Recognition http://yann.lecun.com/exdb/publis/pdf/lecun-01a.pdf ImageNet Classification with Deep Convolutional Neural Networks https://papers.nips.cc/paper/4824-imagenet-classification-with-deep-convolutional-neural-networks.pdf Convolution arithmetic tutorial https://theano-pymc.readthedocs.io/en/latest/tutorial/conv_arithmetic.html Very Deep Convolutional Networks for Large-Scale Visual Recognition http://www.robots.ox.ac.uk/~vgg/research/very_deep/ ImageNet Classification with Deep Convolutional Neural Networks http://image-net.org/challenges/LSVRC/2012/supervision.pdf Going deeper with convolutions https://arxiv.org/pdf/1409.4842.pdf ================================================ FILE: cnn_class/keras_example.py ================================================ # https://deeplearningcourses.com/c/advanced-computer-vision # https://www.udemy.com/advanced-computer-vision from __future__ import print_function, division from builtins import range # Note: you may need to update your version of future # sudo pip install -U future from keras.models import Sequential, Model from keras.layers import Dense, Activation, Conv2D, MaxPooling2D, Flatten, Dropout, BatchNormalization, Input import matplotlib.pyplot as plt import pandas as pd import numpy as np from datetime import datetime from scipy.io import loadmat from sklearn.utils import shuffle from benchmark import get_data, error_rate # helper # def y2indicator(Y): # N = len(Y) # K = len(set(Y)) # I = np.zeros((N, K)) # I[np.arange(N), Y] = 1 # return I def rearrange(X): # input is (32, 32, 3, N) # output is (N, 32, 32, 3) # N = X.shape[-1] # out = np.zeros((N, 32, 32, 3), dtype=np.float32) # for i in xrange(N): # for j in xrange(3): # out[i, :, :, j] = X[:, :, j, i] # return out / 255 return (X.transpose(3, 0, 1, 2) / 255.).astype(np.float32) # get the data train, test = get_data() # Need to scale! don't leave as 0..255 # Y is a N x 1 matrix with values 1..10 (MATLAB indexes by 1) # So flatten it and make it 0..9 # Also need indicator matrix for cost calculation Xtrain = rearrange(train['X']) Ytrain = train['y'].flatten() - 1 del train Xtest = rearrange(test['X']) Ytest = test['y'].flatten() - 1 del test # get shapes K = len(set(Ytrain)) # make the CNN i = Input(shape=Xtrain.shape[1:]) x = Conv2D(filters=20, kernel_size=(5, 5))(i) x = BatchNormalization()(x) x = Activation('relu')(x) x = MaxPooling2D()(x) x = Conv2D(filters=50, kernel_size=(5, 5))(x) x = BatchNormalization()(x) x = Activation('relu')(x) x = MaxPooling2D()(x) x = Flatten()(x) x = Dense(units=500)(x) x = Activation('relu')(x) x = Dropout(0.3)(x) x = Dense(units=K)(x) x = Activation('softmax')(x) model = Model(inputs=i, outputs=x) # list of losses: https://keras.io/losses/ # list of optimizers: https://keras.io/optimizers/ # list of metrics: https://keras.io/metrics/ model.compile( loss='sparse_categorical_crossentropy', optimizer='adam', metrics=['accuracy'] ) # note: multiple ways to choose a backend # either theano, tensorflow, or cntk # https://keras.io/backend/ # gives us back a r = model.fit(Xtrain, Ytrain, validation_data=(Xtest, Ytest), epochs=10, batch_size=32) print("Returned:", r) # print the available keys # should see: dict_keys(['val_loss', 'acc', 'loss', 'val_acc']) print(r.history.keys()) # plot some data plt.plot(r.history['loss'], label='loss') plt.plot(r.history['val_loss'], label='val_loss') plt.legend() plt.show() # accuracies plt.plot(r.history['accuracy'], label='acc') plt.plot(r.history['val_accuracy'], label='val_acc') plt.legend() plt.show() ================================================ FILE: cnn_class2/WHERE ARE THE NOTEBOOKS.txt ================================================ As stated in the "where to get the code" / "where to get the notebooks" lecture, the notebooks are NOT on Github. If you missed this, please review the lecture for the actual location of the notebooks. If, after reviewing it, you still need assistance, please contact info@deeplearningcourses.com. ================================================ FILE: cnn_class2/class_activation_maps.py ================================================ # https://deeplearningcourses.com/c/advanced-computer-vision # https://www.udemy.com/advanced-computer-vision from __future__ import print_function, division from builtins import range, input # Note: you may need to update your version of future # sudo pip install -U future from keras.models import Model from keras.applications.resnet50 import ResNet50, preprocess_input, decode_predictions from keras.preprocessing import image import numpy as np import scipy as sp import matplotlib.pyplot as plt from glob import glob # get the image files # http://www.vision.caltech.edu/Image_Datasets/Caltech101/ # http://www.vision.caltech.edu/Image_Datasets/Caltech256/ image_files = glob('../large_files/256_ObjectCategories/*/*.jp*g') image_files += glob('../large_files/101_ObjectCategories/*/*.jp*g') # look at an image for fun plt.imshow(image.load_img(np.random.choice(image_files))) plt.show() # add preprocessing layer to the front of VGG resnet = ResNet50(input_shape=(224, 224, 3), weights='imagenet', include_top=True) # view the structure of the model # if you want to confirm we need activation_49 resnet.summary() # make a model to get output before flatten activation_layer = resnet.get_layer('activation_49') # create a model object model = Model(inputs=resnet.input, outputs=activation_layer.output) # get the feature map weights final_dense = resnet.get_layer('fc1000') W = final_dense.get_weights()[0] while True: img = image.load_img(np.random.choice(image_files), target_size=(224, 224)) x = preprocess_input(np.expand_dims(img, 0)) fmaps = model.predict(x)[0] # 7 x 7 x 2048 # get predicted class probs = resnet.predict(x) classnames = decode_predictions(probs)[0] print(classnames) classname = classnames[0][1] pred = np.argmax(probs[0]) # get the 2048 weights for the relevant class w = W[:, pred] # "dot" w with fmaps cam = fmaps.dot(w) # upsample to 224 x 224 # 7 x 32 = 224 cam = sp.ndimage.zoom(cam, (32, 32), order=1) plt.subplot(1,2,1) plt.imshow(img, alpha=0.8) plt.imshow(cam, cmap='jet', alpha=0.5) plt.subplot(1,2,2) plt.imshow(img) plt.title(classname) plt.show() ans = input("Continue? (Y/n)") if ans and ans[0].lower() == 'n': break # def slowversion(A, w): # N = len(w) # result = np.zeros(A.shape[:-1]) # for i in range(N): # result += A[:,:,i]*w[i] # return result ================================================ FILE: cnn_class2/extra_reading.txt ================================================ A Neural Algorithm of Artistic Style https://arxiv.org/abs/1508.06576 SSD: Single Shot MultiBox Detector https://arxiv.org/abs/1512.02325 Very Deep Convolutional Networks for Large-Scale Image Recognition (VGG) https://arxiv.org/abs/1409.1556 Deep Residual Learning for Image Recognition https://arxiv.org/abs/1512.03385 Going Deeper with Convolutions (Inception) https://arxiv.org/abs/1409.4842 Batch Normalization: Accelerating Deep Network Training by Reducing Internal Covariate Shift https://arxiv.org/abs/1502.03167 Deep learning improved by biological activation functions https://arxiv.org/pdf/1804.11237.pdf ================================================ FILE: cnn_class2/fashion.py ================================================ # https://deeplearningcourses.com/c/advanced-computer-vision # https://www.udemy.com/advanced-computer-vision from __future__ import print_function, division from builtins import range # Note: you may need to update your version of future # sudo pip install -U future from keras.models import Sequential from keras.layers import Dense, Activation, Conv2D, MaxPooling2D, Flatten, Dropout, BatchNormalization import matplotlib.pyplot as plt import pandas as pd import numpy as np # helper def y2indicator(Y): N = len(Y) K = len(set(Y)) I = np.zeros((N, K)) I[np.arange(N), Y] = 1 return I # get the data # https://www.kaggle.com/zalando-research/fashionmnist data = pd.read_csv('../large_files/fashionmnist/fashion-mnist_train.csv') data = data.values np.random.shuffle(data) X = data[:, 1:].reshape(-1, 28, 28, 1) / 255.0 Y = data[:, 0].astype(np.int32) # get shapes # N = len(Y) K = len(set(Y)) # by default Keras wants one-hot encoded labels # there's another cost function we can use # where we can just pass in the integer labels directly # just like Tensorflow / Theano Y = y2indicator(Y) # the model will be a sequence of layers model = Sequential() # make the CNN # model.add(Input(shape=(28, 28, 1))) model.add(Conv2D(input_shape=(28, 28, 1), filters=32, kernel_size=(3, 3))) model.add(BatchNormalization()) model.add(Activation('relu')) model.add(MaxPooling2D()) model.add(Conv2D(filters=64, kernel_size=(3, 3))) model.add(BatchNormalization()) model.add(Activation('relu')) model.add(MaxPooling2D()) model.add(Conv2D(filters=128, kernel_size=(3, 3))) model.add(BatchNormalization()) model.add(Activation('relu')) model.add(MaxPooling2D()) model.add(Flatten()) model.add(Dense(units=300)) model.add(Activation('relu')) model.add(Dropout(0.2)) model.add(Dense(units=K)) model.add(Activation('softmax')) # list of losses: https://keras.io/losses/ # list of optimizers: https://keras.io/optimizers/ # list of metrics: https://keras.io/metrics/ model.compile( loss='categorical_crossentropy', optimizer='adam', metrics=['accuracy'] ) # note: multiple ways to choose a backend # either theano, tensorflow, or cntk # https://keras.io/backend/ # gives us back a r = model.fit(X, Y, validation_split=0.33, epochs=15, batch_size=32) print("Returned:", r) # print the available keys # should see: dict_keys(['val_loss', 'acc', 'loss', 'val_acc']) print(r.history.keys()) # plot some data plt.plot(r.history['loss'], label='loss') plt.plot(r.history['val_loss'], label='val_loss') plt.legend() plt.show() # accuracies plt.plot(r.history['accuracy'], label='acc') plt.plot(r.history['val_accuracy'], label='val_acc') plt.legend() plt.show() ================================================ FILE: cnn_class2/fashion2.py ================================================ # https://deeplearningcourses.com/c/advanced-computer-vision # https://www.udemy.com/advanced-computer-vision from __future__ import print_function, division from builtins import range # Note: you may need to update your version of future # sudo pip install -U future from keras.models import Sequential, Model from keras.layers import Dense, Activation, Conv2D, MaxPooling2D, Flatten, Dropout, BatchNormalization, Input import matplotlib.pyplot as plt import pandas as pd import numpy as np # helper def y2indicator(Y): N = len(Y) K = len(set(Y)) I = np.zeros((N, K)) I[np.arange(N), Y] = 1 return I # get the data # https://www.kaggle.com/zalando-research/fashionmnist data = pd.read_csv('../large_files/fashionmnist/fashion-mnist_train.csv') data = data.values np.random.shuffle(data) X = data[:, 1:].reshape(-1, 28, 28, 1) / 255.0 Y = data[:, 0].astype(np.int32) # get shapes # N = len(Y) K = len(set(Y)) # by default Keras wants one-hot encoded labels # there's another cost function we can use # where we can just pass in the integer labels directly # just like Tensorflow / Theano Y = y2indicator(Y) # make the CNN i = Input(shape=(28, 28, 1)) x = Conv2D(filters=32, kernel_size=(3, 3))(i) x = BatchNormalization()(x) x = Activation('relu')(x) x = MaxPooling2D()(x) x = Conv2D(filters=64, kernel_size=(3, 3))(x) x = BatchNormalization()(x) x = Activation('relu')(x) x = MaxPooling2D()(x) x = Flatten()(x) x = Dense(units=100)(x) x = Activation('relu')(x) x = Dropout(0.3)(x) x = Dense(units=K)(x) x = Activation('softmax')(x) model = Model(inputs=i, outputs=x) # list of losses: https://keras.io/losses/ # list of optimizers: https://keras.io/optimizers/ # list of metrics: https://keras.io/metrics/ model.compile( loss='categorical_crossentropy', optimizer='adam', metrics=['accuracy'] ) # note: multiple ways to choose a backend # either theano, tensorflow, or cntk # https://keras.io/backend/ # gives us back a r = model.fit(X, Y, validation_split=0.33, epochs=15, batch_size=32) print("Returned:", r) # print the available keys # should see: dict_keys(['val_loss', 'acc', 'loss', 'val_acc']) print(r.history.keys()) # plot some data plt.plot(r.history['loss'], label='loss') plt.plot(r.history['val_loss'], label='val_loss') plt.legend() plt.show() # accuracies plt.plot(r.history['accuracy'], label='acc') plt.plot(r.history['val_accuracy'], label='val_acc') plt.legend() plt.show() ================================================ FILE: cnn_class2/make_limited_datasets.py ================================================ # https://deeplearningcourses.com/c/advanced-computer-vision # https://www.udemy.com/advanced-computer-vision import os def mkdir(p): if not os.path.exists(p): os.mkdir(p) def link(src, dst): if not os.path.exists(dst): os.symlink(src, dst, target_is_directory=True) mkdir('../large_files/fruits-360-small') classes = [ 'Apple Golden 1', 'Avocado', 'Lemon', 'Mango', 'Kiwi', 'Banana', 'Strawberry', 'Raspberry' ] train_path_from = os.path.abspath('../large_files/fruits-360/Training') valid_path_from = os.path.abspath('../large_files/fruits-360/Validation') train_path_to = os.path.abspath('../large_files/fruits-360-small/Training') valid_path_to = os.path.abspath('../large_files/fruits-360-small/Validation') mkdir(train_path_to) mkdir(valid_path_to) for c in classes: link(train_path_from + '/' + c, train_path_to + '/' + c) link(valid_path_from + '/' + c, valid_path_to + '/' + c) ================================================ FILE: cnn_class2/siamese.py ================================================ # https://deeplearningcourses.com/c/advanced-computer-vision from __future__ import print_function, division from builtins import range, input # Note: you may need to update your version of future # sudo pip install -U future from keras.layers import Input, Lambda, Dense, Flatten, Conv2D, BatchNormalization, Activation, MaxPooling2D from keras.models import Model from keras.preprocessing import image import keras.backend as K import numpy as np import matplotlib.pyplot as plt from glob import glob from collections import Counter # get the data from: http://vision.ucsd.edu/content/yale-face-database files = glob('../large_files/yalefaces/subject*') # easier to randomize later np.random.shuffle(files) # number of samples N = len(files) def load_img(filepath): # load image and downsample img = image.img_to_array(image.load_img(filepath, target_size=[60, 80])).astype('uint8') return img # look at an image for fun img = load_img(np.random.choice(files)) plt.imshow(img) plt.show() # try load images as arrays # yes, I cheated and checked beforehand that all the images were the same shape! shape = [N] + list(img.shape) images = np.zeros(shape) for i, f in enumerate(files): # img = image.img_to_array(image.load_img(f)).astype('uint8') img = load_img(f) images[i] = img # make the labels # all the filenames are something like 'subject13.happy' labels = np.zeros(N) for i, f in enumerate(files): filename = f.rsplit('/', 1)[-1] subject_num = filename.split('.', 1)[0] # subtract 1 since the filenames start from 1 idx = int(subject_num.replace('subject', '')) - 1 labels[i] = idx # how many of each subject do we have? label_count = Counter(labels) # set of unique labels unique_labels = set(label_count.keys()) # get the number of subjects n_subjects = len(label_count) # let's make it so 3 images for each subject are test data # number of test points is then n_test = 3 * n_subjects n_train = N - n_test # initialize arrays to hold train and test images train_images = np.zeros([n_train] + list(img.shape)) train_labels = np.zeros(n_train) test_images = np.zeros([n_test] + list(img.shape)) test_labels = np.zeros(n_test) count_so_far = {} train_idx = 0 test_idx = 0 for img, label in zip(images, labels): # increment the count count_so_far[label] = count_so_far.get(label, 0) + 1 if count_so_far[label] > 3: # we have already added 3 test images for this subject # so add the rest to train train_images[train_idx] = img train_labels[train_idx] = label train_idx += 1 else: # add the first 3 images to test test_images[test_idx] = img test_labels[test_idx] = label test_idx += 1 # create label2idx mapping for easy access train_label2idx = {} test_label2idx = {} for i, label in enumerate(train_labels): if label not in train_label2idx: train_label2idx[label] = [i] else: train_label2idx[label].append(i) for i, label in enumerate(test_labels): if label not in test_label2idx: test_label2idx[label] = [i] else: test_label2idx[label].append(i) # come up with all possible training sample indices train_positives = [] train_negatives = [] test_positives = [] test_negatives = [] for label, indices in train_label2idx.items(): # all indices that do NOT belong to this subject other_indices = set(range(n_train)) - set(indices) for i, idx1 in enumerate(indices): for idx2 in indices[i+1:]: train_positives.append((idx1, idx2)) for idx2 in other_indices: train_negatives.append((idx1, idx2)) for label, indices in test_label2idx.items(): # all indices that do NOT belong to this subject other_indices = set(range(n_test)) - set(indices) for i, idx1 in enumerate(indices): for idx2 in indices[i+1:]: test_positives.append((idx1, idx2)) for idx2 in other_indices: test_negatives.append((idx1, idx2)) batch_size = 64 def train_generator(): # for each batch, we will send 1 pair of each subject # and the same number of non-matching pairs n_batches = int(np.ceil(len(train_positives) / batch_size)) while True: np.random.shuffle(train_positives) n_samples = batch_size * 2 shape = [n_samples] + list(img.shape) x_batch_1 = np.zeros(shape) x_batch_2 = np.zeros(shape) y_batch = np.zeros(n_samples) for i in range(n_batches): pos_batch_indices = train_positives[i * batch_size: (i + 1) * batch_size] # fill up x_batch and y_batch j = 0 for idx1, idx2 in pos_batch_indices: x_batch_1[j] = train_images[idx1] x_batch_2[j] = train_images[idx2] y_batch[j] = 1 # match j += 1 # get negative samples neg_indices = np.random.choice(len(train_negatives), size=len(pos_batch_indices), replace=False) for neg in neg_indices: idx1, idx2 = train_negatives[neg] x_batch_1[j] = train_images[idx1] x_batch_2[j] = train_images[idx2] y_batch[j] = 0 # non-match j += 1 x1 = x_batch_1[:j] x2 = x_batch_2[:j] y = y_batch[:j] yield [x1, x2], y # same thing as the train generator except no shuffling and it uses the test set def test_generator(): n_batches = int(np.ceil(len(test_positives) / batch_size)) while True: n_samples = batch_size * 2 shape = [n_samples] + list(img.shape) x_batch_1 = np.zeros(shape) x_batch_2 = np.zeros(shape) y_batch = np.zeros(n_samples) for i in range(n_batches): pos_batch_indices = test_positives[i * batch_size: (i + 1) * batch_size] # fill up x_batch and y_batch j = 0 for idx1, idx2 in pos_batch_indices: x_batch_1[j] = test_images[idx1] x_batch_2[j] = test_images[idx2] y_batch[j] = 1 # match j += 1 # get negative samples neg_indices = np.random.choice(len(test_negatives), size=len(pos_batch_indices), replace=False) for neg in neg_indices: idx1, idx2 = test_negatives[neg] x_batch_1[j] = test_images[idx1] x_batch_2[j] = test_images[idx2] y_batch[j] = 0 # non-match j += 1 x1 = x_batch_1[:j] x2 = x_batch_2[:j] y = y_batch[:j] yield [x1, x2], y # build the base neural network i = Input(shape=img.shape) x = Conv2D(filters=32, kernel_size=(3, 3))(i) x = BatchNormalization()(x) x = Activation('relu')(x) x = MaxPooling2D()(x) x = Conv2D(filters=64, kernel_size=(3, 3))(x) x = BatchNormalization()(x) x = Activation('relu')(x) x = MaxPooling2D()(x) x = Flatten()(x) x = Dense(units=128, activation='relu')(x) x = Dense(units=50)(x) # feature vector cnn = Model(inputs=i, outputs=x) # feed both images into the same CNN img_placeholder1 = Input(shape=img.shape) img_placeholder2 = Input(shape=img.shape) # get image features feat1 = cnn(img_placeholder1) feat2 = cnn(img_placeholder2) # calculate the Euclidean distance between feature 1 and feature 2 def euclidean_distance(features): x, y = features return K.sqrt(K.sum(K.square(x - y), axis=1, keepdims=True)) # lambda layer to output distance between feat1 and feat2 dist_layer = Lambda(euclidean_distance)([feat1, feat2]) # the model we will actually train model = Model(inputs=[img_placeholder1, img_placeholder2], outputs=dist_layer) # loss function for siamese network def contrastive_loss(y_true, y_pred): margin = 1 return K.mean(y_true * K.square(y_pred) + (1 - y_true) * K.square(K.maximum(margin - y_pred, 0))) # compile the model model.compile( loss=contrastive_loss, optimizer='adam', ) # calculate accuracy before training # since the dataset is imbalanced, we'll report tp, tn, fp, fn def get_train_accuracy(threshold=0.85): positive_distances = [] negative_distances = [] tp = 0 tn = 0 fp = 0 fn = 0 batch_size = 64 x_batch_1 = np.zeros([batch_size] + list(img.shape)) x_batch_2 = np.zeros([batch_size] + list(img.shape)) n_batches = int(np.ceil(len(train_positives) / batch_size)) for i in range(n_batches): print(f"pos batch: {i+1}/{n_batches}") pos_batch_indices = train_positives[i * batch_size: (i + 1) * batch_size] # fill up x_batch and y_batch j = 0 for idx1, idx2 in pos_batch_indices: x_batch_1[j] = train_images[idx1] x_batch_2[j] = train_images[idx2] j += 1 x1 = x_batch_1[:j] x2 = x_batch_2[:j] distances = model.predict([x1, x2]).flatten() positive_distances += distances.tolist() # update tp, tn, fp, fn tp += (distances < threshold).sum() fn += (distances > threshold).sum() n_batches = int(np.ceil(len(train_negatives) / batch_size)) for i in range(n_batches): print(f"neg batch: {i+1}/{n_batches}") neg_batch_indices = train_negatives[i * batch_size: (i + 1) * batch_size] # fill up x_batch and y_batch j = 0 for idx1, idx2 in neg_batch_indices: x_batch_1[j] = train_images[idx1] x_batch_2[j] = train_images[idx2] j += 1 x1 = x_batch_1[:j] x2 = x_batch_2[:j] distances = model.predict([x1, x2]).flatten() negative_distances += distances.tolist() # update tp, tn, fp, fn fp += (distances < threshold).sum() tn += (distances > threshold).sum() tpr = tp / (tp + fn) tnr = tn / (tn + fp) print(f"sensitivity (tpr): {tpr}, specificity (tnr): {tnr}") plt.hist(negative_distances, bins=20, density=True, label='negative_distances') plt.hist(positive_distances, bins=20, density=True, label='positive_distances') plt.legend() plt.show() def get_test_accuracy(threshold=0.85): positive_distances = [] negative_distances = [] tp = 0 tn = 0 fp = 0 fn = 0 batch_size = 64 x_batch_1 = np.zeros([batch_size] + list(img.shape)) x_batch_2 = np.zeros([batch_size] + list(img.shape)) n_batches = int(np.ceil(len(test_positives) / batch_size)) for i in range(n_batches): print(f"pos batch: {i+1}/{n_batches}") pos_batch_indices = test_positives[i * batch_size: (i + 1) * batch_size] # fill up x_batch and y_batch j = 0 for idx1, idx2 in pos_batch_indices: x_batch_1[j] = test_images[idx1] x_batch_2[j] = test_images[idx2] j += 1 x1 = x_batch_1[:j] x2 = x_batch_2[:j] distances = model.predict([x1, x2]).flatten() positive_distances += distances.tolist() # update tp, tn, fp, fn tp += (distances < threshold).sum() fn += (distances > threshold).sum() n_batches = int(np.ceil(len(test_negatives) / batch_size)) for i in range(n_batches): print(f"neg batch: {i+1}/{n_batches}") neg_batch_indices = test_negatives[i * batch_size: (i + 1) * batch_size] # fill up x_batch and y_batch j = 0 for idx1, idx2 in neg_batch_indices: x_batch_1[j] = test_images[idx1] x_batch_2[j] = test_images[idx2] j += 1 x1 = x_batch_1[:j] x2 = x_batch_2[:j] distances = model.predict([x1, x2]).flatten() negative_distances += distances.tolist() # update tp, tn, fp, fn fp += (distances < threshold).sum() tn += (distances > threshold).sum() tpr = tp / (tp + fn) tnr = tn / (tn + fp) print(f"sensitivity (tpr): {tpr}, specificity (tnr): {tnr}") plt.hist(negative_distances, bins=20, density=True, label='negative_distances') plt.hist(positive_distances, bins=20, density=True, label='positive_distances') plt.legend() plt.show() # params for training train_steps = int(np.ceil(len(train_positives) * 2 / batch_size)) valid_steps = int(np.ceil(len(test_positives) * 2 / batch_size)) # fit the model r = model.fit( train_generator(), steps_per_epoch=train_steps, epochs=20, validation_data=test_generator(), validation_steps=valid_steps, ) # plot the loss plt.plot(r.history['loss'], label='train loss') plt.plot(r.history['val_loss'], label='val loss') plt.legend() plt.show() get_train_accuracy() get_test_accuracy() ================================================ FILE: cnn_class2/ssd.py ================================================ # https://deeplearningcourses.com/c/advanced-computer-vision # https://www.udemy.com/advanced-computer-vision # simple script to adapt object detection notebook from # https://github.com/tensorflow/models # to work on videos from __future__ import print_function, division from builtins import range, input # Note: you may need to update your version of future # sudo pip install -U future import os, sys from datetime import datetime import numpy as np import tensorflow as tf from matplotlib import pyplot as plt from PIL import Image import imageio if tf.__version__ < '1.4.0': raise ImportError( 'Please upgrade your tensorflow installation to v1.4.* or later!' ) # change this to wherever you cloned the tensorflow models repo # which I assume you've already downloaded from: # https://github.com/tensorflow/models RESEARCH_PATH = '../../tf-models/research' MODELS_PATH = '../../tf-models/research/object_detection' sys.path.append(RESEARCH_PATH) sys.path.append(MODELS_PATH) # import local modules import object_detection from utils import label_map_util from utils import visualization_utils as vis_util # I've assumed you already ran the notebook and downloaded the model MODEL_NAME = 'ssd_mobilenet_v1_coco_2017_11_17' PATH_TO_CKPT = '%s/%s/frozen_inference_graph.pb' % (MODELS_PATH, MODEL_NAME) PATH_TO_LABELS = '%s/data/mscoco_label_map.pbtxt' % MODELS_PATH NUM_CLASSES = 90 # load the model into memory detection_graph = tf.Graph() with detection_graph.as_default(): od_graph_def = tf.GraphDef() with tf.gfile.GFile(PATH_TO_CKPT, 'rb') as fid: serialized_graph = fid.read() od_graph_def.ParseFromString(serialized_graph) tf.import_graph_def(od_graph_def, name='') # load label map label_map = label_map_util.load_labelmap(PATH_TO_LABELS) categories = label_map_util.convert_label_map_to_categories(label_map, max_num_classes=NUM_CLASSES, use_display_name=True) category_index = label_map_util.create_category_index(categories) print("categories:") print(categories) # convert image -> numpy array def load_image_into_numpy_array(image): (im_width, im_height) = image.size return np.array(image.getdata()).reshape( (im_height, im_width, 3)).astype(np.uint8) # do some object detection with detection_graph.as_default(): with tf.Session(graph=detection_graph) as sess: # Definite input and output Tensors for detection_graph image_tensor = detection_graph.get_tensor_by_name('image_tensor:0') # Each box represents a part of the image where a particular object was detected. detection_boxes = detection_graph.get_tensor_by_name('detection_boxes:0') # Each score represent how level of confidence for each of the objects. # Score is shown on the result image, together with the class label. detection_scores = detection_graph.get_tensor_by_name('detection_scores:0') detection_classes = detection_graph.get_tensor_by_name('detection_classes:0') num_detections = detection_graph.get_tensor_by_name('num_detections:0') # instead of looping through test images, we'll now loop # through our video! # get the videos from: # https://lazyprogrammer.me/cnn_class2_videos.zip # and put them into the same folder as this file # open the video # input_video = 'catdog' # input_video = 'safari' input_video = 'traffic' video_reader = imageio.get_reader('%s.mp4' % input_video) video_writer = imageio.get_writer('%s_annotated.mp4' % input_video, fps=10) # loop through and process each frame t0 = datetime.now() n_frames = 0 for frame in video_reader: # rename for convenience image_np = frame n_frames += 1 # Expand dimensions since the model expects images to have shape: [1, None, None, 3] image_np_expanded = np.expand_dims(image_np, axis=0) # Actual detection. (boxes, scores, classes, num) = sess.run( [detection_boxes, detection_scores, detection_classes, num_detections], feed_dict={image_tensor: image_np_expanded}) # Visualization of the results of a detection. vis_util.visualize_boxes_and_labels_on_image_array( image_np, np.squeeze(boxes), np.squeeze(classes).astype(np.int32), np.squeeze(scores), category_index, use_normalized_coordinates=True, line_thickness=8) # instead of plotting image, we write the frame to video video_writer.append_data(image_np) fps = n_frames / (datetime.now() - t0).total_seconds() print("Frames processed: %s, Speed: %s fps" % (n_frames, fps)) # clean up video_writer.close() ================================================ FILE: cnn_class2/style_transfer1.py ================================================ # https://deeplearningcourses.com/c/advanced-computer-vision # https://www.udemy.com/advanced-computer-vision from __future__ import print_function, division from builtins import range, input # Note: you may need to update your version of future # sudo pip install -U future # In this script, we will focus on generating the content # E.g. given an image, can we recreate the same image from keras.layers import Input, Lambda, Dense, Flatten from keras.layers import AveragePooling2D, MaxPooling2D from keras.layers.convolutional import Conv2D from keras.models import Model, Sequential from keras.applications.vgg16 import VGG16 from keras.applications.vgg16 import preprocess_input from keras.preprocessing import image import keras.backend as K import numpy as np import matplotlib.pyplot as plt from scipy.optimize import fmin_l_bfgs_b import tensorflow as tf if tf.__version__.startswith('2'): tf.compat.v1.disable_eager_execution() def VGG16_AvgPool(shape): # we want to account for features across the entire image # so get rid of the maxpool which throws away information vgg = VGG16(input_shape=shape, weights='imagenet', include_top=False) # new_model = Sequential() # for layer in vgg.layers: # if layer.__class__ == MaxPooling2D: # # replace it with average pooling # new_model.add(AveragePooling2D()) # else: # new_model.add(layer) i = vgg.input x = i for layer in vgg.layers: if layer.__class__ == MaxPooling2D: # replace it with average pooling x = AveragePooling2D()(x) else: x = layer(x) return Model(i, x) def VGG16_AvgPool_CutOff(shape, num_convs): # there are 13 convolutions in total # we can pick any of them as the "output" # of our content model if num_convs < 1 or num_convs > 13: print("num_convs must be in the range [1, 13]") return None model = VGG16_AvgPool(shape) # new_model = Sequential() # n = 0 # for layer in model.layers: # if layer.__class__ == Conv2D: # n += 1 # new_model.add(layer) # if n >= num_convs: # break n = 0 output = None for layer in model.layers: if layer.__class__ == Conv2D: n += 1 if n >= num_convs: output = layer.output break return Model(model.input, output) def unpreprocess(img): img[..., 0] += 103.939 img[..., 1] += 116.779 img[..., 2] += 126.68 img = img[..., ::-1] return img def scale_img(x): x = x - x.min() x = x / x.max() return x if __name__ == '__main__': # open an image # feel free to try your own # path = '../large_files/caltech101/101_ObjectCategories/elephant/image_0002.jpg' path = 'content/elephant.jpg' img = image.load_img(path) # convert image to array and preprocess for vgg x = image.img_to_array(img) x = np.expand_dims(x, axis=0) x = preprocess_input(x) # we'll use this throughout the rest of the script batch_shape = x.shape shape = x.shape[1:] # see the image # plt.imshow(img) # plt.show() # make a content model # try different cutoffs to see the images that result content_model = VGG16_AvgPool_CutOff(shape, 11) # make the target target = K.variable(content_model.predict(x)) # try to match the image # define our loss in keras loss = K.mean(K.square(target - content_model.output)) # gradients which are needed by the optimizer grads = K.gradients(loss, content_model.input) # just like theano.function get_loss_and_grads = K.function( inputs=[content_model.input], outputs=[loss] + grads ) def get_loss_and_grads_wrapper(x_vec): # scipy's minimizer allows us to pass back # function value f(x) and its gradient f'(x) # simultaneously, rather than using the fprime arg # # we cannot use get_loss_and_grads() directly # input to minimizer func must be a 1-D array # input to get_loss_and_grads must be [batch_of_images] # # gradient must also be a 1-D array # and both loss and gradient must be np.float64 # will get an error otherwise l, g = get_loss_and_grads([x_vec.reshape(*batch_shape)]) return l.astype(np.float64), g.flatten().astype(np.float64) from datetime import datetime t0 = datetime.now() losses = [] x = np.random.randn(np.prod(batch_shape)) for i in range(10): x, l, _ = fmin_l_bfgs_b( func=get_loss_and_grads_wrapper, x0=x, # bounds=[[-127, 127]]*len(x.flatten()), maxfun=20 ) x = np.clip(x, -127, 127) # print("min:", x.min(), "max:", x.max()) print("iter=%s, loss=%s" % (i, l)) losses.append(l) print("duration:", datetime.now() - t0) plt.plot(losses) plt.show() newimg = x.reshape(*batch_shape) final_img = unpreprocess(newimg) plt.imshow(scale_img(final_img[0])) plt.show() ================================================ FILE: cnn_class2/style_transfer2.py ================================================ # https://deeplearningcourses.com/c/advanced-computer-vision # https://www.udemy.com/advanced-computer-vision from __future__ import print_function, division from builtins import range, input # Note: you may need to update your version of future # sudo pip install -U future # In this script, we will focus on generating an image # with the same style as the input image. # But NOT the same content. # It should capture only the essence of the style. from keras.models import Model, Sequential from keras.applications.vgg16 import preprocess_input from keras.preprocessing import image from keras.applications.vgg16 import VGG16 from style_transfer1 import VGG16_AvgPool, unpreprocess, scale_img # from skimage.transform import resize from scipy.optimize import fmin_l_bfgs_b from datetime import datetime import numpy as np import matplotlib.pyplot as plt import keras.backend as K def gram_matrix(img): # input is (H, W, C) (C = # feature maps) # we first need to convert it to (C, H*W) X = K.batch_flatten(K.permute_dimensions(img, (2, 0, 1))) # now, calculate the gram matrix # gram = XX^T / N # the constant is not important since we'll be weighting these G = K.dot(X, K.transpose(X)) / img.get_shape().num_elements() return G def style_loss(y, t): return K.mean(K.square(gram_matrix(y) - gram_matrix(t))) # let's generalize this and put it into a function def minimize(fn, epochs, batch_shape): t0 = datetime.now() losses = [] x = np.random.randn(np.prod(batch_shape)) for i in range(epochs): x, l, _ = fmin_l_bfgs_b( func=fn, x0=x, maxfun=20 ) x = np.clip(x, -127, 127) print("iter=%s, loss=%s" % (i, l)) losses.append(l) print("duration:", datetime.now() - t0) plt.plot(losses) plt.show() newimg = x.reshape(*batch_shape) final_img = unpreprocess(newimg) return final_img[0] if __name__ == '__main__': # try these, or pick your own! path = 'styles/starrynight.jpg' # path = 'styles/flowercarrier.jpg' # path = 'styles/monalisa.jpg' # path = 'styles/lesdemoisellesdavignon.jpg' # load the data img = image.load_img(path) # convert image to array and preprocess for vgg x = image.img_to_array(img) # look at the image # plt.imshow(x) # plt.show() # make it (1, H, W, C) x = np.expand_dims(x, axis=0) # preprocess into VGG expected format x = preprocess_input(x) # we'll use this throughout the rest of the script batch_shape = x.shape shape = x.shape[1:] # let's take the first convolution at each block of convolutions # to be our target outputs # remember that you can print out the model summary if you want vgg = VGG16_AvgPool(shape) # Note: need to select output at index 1, since outputs at # index 0 correspond to the original vgg with maxpool symbolic_conv_outputs = [ layer.get_output_at(1) for layer in vgg.layers \ if layer.name.endswith('conv1') ] # pick the earlier layers for # a more "localized" representation # this is opposed to the content model # where the later layers represent a more "global" structure # symbolic_conv_outputs = symbolic_conv_outputs[:2] # make a big model that outputs multiple layers' outputs multi_output_model = Model(vgg.input, symbolic_conv_outputs) # calculate the targets that are output at each layer style_layers_outputs = [K.variable(y) for y in multi_output_model.predict(x)] # calculate the total style loss loss = 0 for symbolic, actual in zip(symbolic_conv_outputs, style_layers_outputs): # gram_matrix() expects a (H, W, C) as input loss += style_loss(symbolic[0], actual[0]) grads = K.gradients(loss, multi_output_model.input) # just like theano.function get_loss_and_grads = K.function( inputs=[multi_output_model.input], outputs=[loss] + grads ) def get_loss_and_grads_wrapper(x_vec): l, g = get_loss_and_grads([x_vec.reshape(*batch_shape)]) return l.astype(np.float64), g.flatten().astype(np.float64) final_img = minimize(get_loss_and_grads_wrapper, 10, batch_shape) plt.imshow(scale_img(final_img)) plt.show() ================================================ FILE: cnn_class2/style_transfer3.py ================================================ # https://deeplearningcourses.com/c/advanced-computer-vision # https://www.udemy.com/advanced-computer-vision from __future__ import print_function, division from builtins import range, input # Note: you may need to update your version of future # sudo pip install -U future # In this script, we will focus on generating an image # that attempts to match the content of one input image # and the style of another input image. # # We accomplish this by balancing the content loss # and style loss simultaneously. from keras.layers import Input, Lambda, Dense, Flatten from keras.layers import AveragePooling2D, MaxPooling2D from keras.layers.convolutional import Conv2D from keras.models import Model, Sequential from keras.applications.vgg16 import VGG16 from keras.applications.vgg16 import preprocess_input from keras.preprocessing import image from skimage.transform import resize import keras.backend as K import numpy as np import matplotlib.pyplot as plt from style_transfer1 import VGG16_AvgPool, VGG16_AvgPool_CutOff, unpreprocess, scale_img from style_transfer2 import gram_matrix, style_loss, minimize from scipy.optimize import fmin_l_bfgs_b # load the content image def load_img_and_preprocess(path, shape=None): img = image.load_img(path, target_size=shape) # convert image to array and preprocess for vgg x = image.img_to_array(img) x = np.expand_dims(x, axis=0) x = preprocess_input(x) return x content_img = load_img_and_preprocess( # '../large_files/caltech101/101_ObjectCategories/elephant/image_0002.jpg', # 'batman.jpg', 'content/sydney.jpg', # (225, 300), ) # resize the style image # since we don't care too much about warping it h, w = content_img.shape[1:3] style_img = load_img_and_preprocess( # 'styles/starrynight.jpg', # 'styles/flowercarrier.jpg', # 'styles/monalisa.jpg', 'styles/lesdemoisellesdavignon.jpg', (h, w) ) # we'll use this throughout the rest of the script batch_shape = content_img.shape shape = content_img.shape[1:] # we want to make only 1 VGG here # as you'll see later, the final model needs # to have a common input vgg = VGG16_AvgPool(shape) # create the content model # we only want 1 output # remember you can call vgg.summary() to see a list of layers # 1,2,4,5,7-9,11-13,15-17 content_model = Model(vgg.input, vgg.layers[13].get_output_at(0)) content_target = K.variable(content_model.predict(content_img)) # create the style model # we want multiple outputs # we will take the same approach as in style_transfer2.py symbolic_conv_outputs = [ layer.get_output_at(1) for layer in vgg.layers \ if layer.name.endswith('conv1') ] # make a big model that outputs multiple layers' outputs style_model = Model(vgg.input, symbolic_conv_outputs) # calculate the targets that are output at each layer style_layers_outputs = [K.variable(y) for y in style_model.predict(style_img)] # we will assume the weight of the content loss is 1 # and only weight the style losses style_weights = [0.2,0.4,0.3,0.5,0.2] # create the total loss which is the sum of content + style loss loss = K.mean(K.square(content_model.output - content_target)) for w, symbolic, actual in zip(style_weights, symbolic_conv_outputs, style_layers_outputs): # gram_matrix() expects a (H, W, C) as input loss += w * style_loss(symbolic[0], actual[0]) # once again, create the gradients and loss + grads function # note: it doesn't matter which model's input you use # they are both pointing to the same keras Input layer in memory grads = K.gradients(loss, vgg.input) # just like theano.function get_loss_and_grads = K.function( inputs=[vgg.input], outputs=[loss] + grads ) def get_loss_and_grads_wrapper(x_vec): l, g = get_loss_and_grads([x_vec.reshape(*batch_shape)]) return l.astype(np.float64), g.flatten().astype(np.float64) final_img = minimize(get_loss_and_grads_wrapper, 10, batch_shape) plt.imshow(scale_img(final_img)) plt.show() ================================================ FILE: cnn_class2/test_softmax.py ================================================ # https://deeplearningcourses.com/c/advanced-computer-vision # https://www.udemy.com/advanced-computer-vision from __future__ import print_function, division from builtins import range, input # Note: you may need to update your version of future # sudo pip install -U future import tensorflow as tf import numpy as np import keras import keras.backend as K def custom_softmax(x): m = tf.reduce_max(x, 1) x = x - m e = tf.exp(x) return e / tf.reduce_sum(e, -1) a = np.random.randn(1, 1000) tfy = tf.nn.softmax(a) ky = keras.activations.softmax(K.variable(a)) tfc = custom_softmax(a) session = K.get_session() tfy_ = session.run(tfy) ky_ = session.run(ky) tfc_ = session.run(tfc) print("tf vs k", np.abs(tfy_ - ky_).sum()) print("tf vs custom", np.abs(tfy_ - tfc_).sum()) print("custom vs k", np.abs(tfc_ - ky_).sum()) ================================================ FILE: cnn_class2/tf_resnet.py ================================================ # https://deeplearningcourses.com/c/advanced-computer-vision # https://www.udemy.com/advanced-computer-vision from __future__ import print_function, division from builtins import range, input # Note: you may need to update your version of future # sudo pip install -U future # Let's go up to the end of the first conv block # to make sure everything has been loaded correctly # compared to keras import tensorflow as tf import numpy as np import matplotlib.pyplot as plt import keras from keras.applications.resnet50 import ResNet50 from keras.models import Model from keras.preprocessing import image from keras.layers import Dense from keras.applications.resnet50 import preprocess_input, decode_predictions from tf_resnet_convblock import ConvLayer, BatchNormLayer, ConvBlock from tf_resnet_identity_block import IdentityBlock from tf_resnet_first_layers import ReLULayer, MaxPoolLayer # NOTE: dependent on your Keras version # this script used 2.1.1 # [, # , # , # , # , # # ConvBlock # IdentityBlock x 2 # # ConvBlock # IdentityBlock x 3 # # ConvBlock # IdentityBlock x 5 # # ConvBlock # IdentityBlock x 2 # # AveragePooling2D # Flatten # Dense (Softmax) # ] # define some additional layers so they have a forward function class AvgPool: def __init__(self, ksize): self.ksize = ksize def forward(self, X): return tf.nn.avg_pool( X, ksize=[1, self.ksize, self.ksize, 1], strides=[1, 1, 1, 1], padding='VALID' ) def get_params(self): return [] class Flatten: def forward(self, X): return tf.contrib.layers.flatten(X) def get_params(self): return [] def custom_softmax(x): m = tf.reduce_max(x, 1) x = x - m e = tf.exp(x) return e / tf.reduce_sum(e, -1) class DenseLayer: def __init__(self, mi, mo): self.W = tf.Variable((np.random.randn(mi, mo) * np.sqrt(2.0 / mi)).astype(np.float32)) self.b = tf.Variable(np.zeros(mo, dtype=np.float32)) def forward(self, X): # unfortunately these all yield slightly different answers # return tf.nn.softmax(tf.matmul(X, self.W) + self.b) # return custom_softmax(tf.matmul(X, self.W) + self.b) # return keras.activations.softmax(tf.matmul(X, self.W) + self.b) return tf.matmul(X, self.W) + self.b def copyFromKerasLayers(self, layer): W, b = layer.get_weights() op1 = self.W.assign(W) op2 = self.b.assign(b) self.session.run((op1, op2)) def get_params(self): return [self.W, self.b] class TFResNet: def __init__(self): self.layers = [ # before conv block ConvLayer(d=7, mi=3, mo=64, stride=2, padding='SAME'), BatchNormLayer(64), ReLULayer(), MaxPoolLayer(dim=3), # conv block ConvBlock(mi=64, fm_sizes=[64, 64, 256], stride=1), # identity block x 2 IdentityBlock(mi=256, fm_sizes=[64, 64, 256]), IdentityBlock(mi=256, fm_sizes=[64, 64, 256]), # conv block ConvBlock(mi=256, fm_sizes=[128, 128, 512], stride=2), # identity block x 3 IdentityBlock(mi=512, fm_sizes=[128, 128, 512]), IdentityBlock(mi=512, fm_sizes=[128, 128, 512]), IdentityBlock(mi=512, fm_sizes=[128, 128, 512]), # conv block ConvBlock(mi=512, fm_sizes=[256, 256, 1024], stride=2), # identity block x 5 IdentityBlock(mi=1024, fm_sizes=[256, 256, 1024]), IdentityBlock(mi=1024, fm_sizes=[256, 256, 1024]), IdentityBlock(mi=1024, fm_sizes=[256, 256, 1024]), IdentityBlock(mi=1024, fm_sizes=[256, 256, 1024]), IdentityBlock(mi=1024, fm_sizes=[256, 256, 1024]), # conv block ConvBlock(mi=1024, fm_sizes=[512, 512, 2048], stride=2), # identity block x 2 IdentityBlock(mi=2048, fm_sizes=[512, 512, 2048]), IdentityBlock(mi=2048, fm_sizes=[512, 512, 2048]), # pool / flatten / dense AvgPool(ksize=7), Flatten(), DenseLayer(mi=2048, mo=1000) ] self.input_ = tf.placeholder(tf.float32, shape=(None, 224, 224, 3)) self.output = self.forward(self.input_) def copyFromKerasLayers(self, layers): # conv self.layers[0].copyFromKerasLayers(layers[1]) # bn self.layers[1].copyFromKerasLayers(layers[2]) # cb self.layers[4].copyFromKerasLayers(layers[5:17]) # size=12 # ib x 2 self.layers[5].copyFromKerasLayers(layers[17:27]) # size=10 self.layers[6].copyFromKerasLayers(layers[27:37]) # cb self.layers[7].copyFromKerasLayers(layers[37:49]) # ib x 3 self.layers[8].copyFromKerasLayers(layers[49:59]) self.layers[9].copyFromKerasLayers(layers[59:69]) self.layers[10].copyFromKerasLayers(layers[69:79]) # cb self.layers[11].copyFromKerasLayers(layers[79:91]) # ib x 5 self.layers[12].copyFromKerasLayers(layers[91:101]) self.layers[13].copyFromKerasLayers(layers[101:111]) self.layers[14].copyFromKerasLayers(layers[111:121]) self.layers[15].copyFromKerasLayers(layers[121:131]) self.layers[16].copyFromKerasLayers(layers[131:141]) # cb self.layers[17].copyFromKerasLayers(layers[141:153]) # ib x 2 self.layers[18].copyFromKerasLayers(layers[153:163]) self.layers[19].copyFromKerasLayers(layers[163:173]) # dense self.layers[22].copyFromKerasLayers(layers[175]) def forward(self, X): for layer in self.layers: X = layer.forward(X) return X def predict(self, X): assert(self.session is not None) return self.session.run( self.output, feed_dict={self.input_: X} ) def set_session(self, session): self.session = session for layer in self.layers: if isinstance(layer, ConvBlock) or isinstance(layer, IdentityBlock): layer.set_session(session) else: layer.session = session def get_params(self): params = [] for layer in self.layers: params += layer.get_params() if __name__ == '__main__': # you can also set weights to None, it doesn't matter resnet_ = ResNet50(weights='imagenet') # make a new resnet without the softmax x = resnet_.layers[-2].output W, b = resnet_.layers[-1].get_weights() y = Dense(1000)(x) resnet = Model(resnet_.input, y) resnet.layers[-1].set_weights([W, b]) # you can determine the correct layer # by looking at resnet.layers in the console partial_model = Model( inputs=resnet.input, outputs=resnet.layers[175].output ) # maybe useful when building your model # to look at the layers you're trying to copy print(partial_model.summary()) # create an instance of our own model my_partial_resnet = TFResNet() # make a fake image X = np.random.random((1, 224, 224, 3)) # get keras output keras_output = partial_model.predict(X) ### get my model output ### # init only the variables in our net init = tf.variables_initializer(my_partial_resnet.get_params()) # note: starting a new session messes up the Keras model session = keras.backend.get_session() my_partial_resnet.set_session(session) session.run(init) # first, just make sure we can get any output first_output = my_partial_resnet.predict(X) print("first_output.shape:", first_output.shape) # copy params from Keras model my_partial_resnet.copyFromKerasLayers(partial_model.layers) # compare the 2 models output = my_partial_resnet.predict(X) diff = np.abs(output - keras_output).sum() if diff < 1e-10: print("Everything's great!") else: print("diff = %s" % diff) ================================================ FILE: cnn_class2/tf_resnet_convblock.py ================================================ # https://deeplearningcourses.com/c/advanced-computer-vision # https://www.udemy.com/advanced-computer-vision from __future__ import print_function, division from builtins import range, input # Note: you may need to update your version of future # sudo pip install -U future import tensorflow as tf import numpy as np import matplotlib.pyplot as plt def init_filter(d, mi, mo, stride): return (np.random.randn(d, d, mi, mo) * np.sqrt(2.0 / (d * d * mi))).astype(np.float32) class ConvLayer: def __init__(self, d, mi, mo, stride=2, padding='VALID'): self.W = tf.Variable(init_filter(d, mi, mo, stride)) self.b = tf.Variable(np.zeros(mo, dtype=np.float32)) self.stride = stride self.padding = padding def forward(self, X): X = tf.nn.conv2d( X, self.W, strides=[1, self.stride, self.stride, 1], padding=self.padding ) X = X + self.b return X def copyFromKerasLayers(self, layer): # only 1 layer to copy from W, b = layer.get_weights() op1 = self.W.assign(W) op2 = self.b.assign(b) self.session.run((op1, op2)) # def copyFromWeights(self, W, b): # op1 = self.W.assign(W) # op2 = self.b.assign(b) # self.session.run((op1, op2)) def get_params(self): return [self.W, self.b] class BatchNormLayer: def __init__(self, D): self.running_mean = tf.Variable(np.zeros(D, dtype=np.float32), trainable=False) self.running_var = tf.Variable(np.ones(D, dtype=np.float32), trainable=False) self.gamma = tf.Variable(np.ones(D, dtype=np.float32)) self.beta = tf.Variable(np.zeros(D, dtype=np.float32)) def forward(self, X): return tf.nn.batch_normalization( X, self.running_mean, self.running_var, self.beta, self.gamma, 1e-3 ) def copyFromKerasLayers(self, layer): # only 1 layer to copy from # order: # gamma, beta, moving mean, moving variance gamma, beta, running_mean, running_var = layer.get_weights() op1 = self.running_mean.assign(running_mean) op2 = self.running_var.assign(running_var) op3 = self.gamma.assign(gamma) op4 = self.beta.assign(beta) self.session.run((op1, op2, op3, op4)) def get_params(self): return [self.running_mean, self.running_var, self.gamma, self.beta] class ConvBlock: def __init__(self, mi, fm_sizes, stride=2, activation=tf.nn.relu): # conv1, conv2, conv3 # note: # feature maps shortcut = # feauture maps conv 3 assert(len(fm_sizes) == 3) # note: kernel size in 2nd conv is always 3 # so we won't bother including it as an arg # note: stride only applies to conv 1 in main branch # and conv in shortcut, otherwise stride is 1 self.session = None self.f = tf.nn.relu # init main branch # Conv -> BN -> F() ---> Conv -> BN -> F() ---> Conv -> BN self.conv1 = ConvLayer(1, mi, fm_sizes[0], stride) self.bn1 = BatchNormLayer(fm_sizes[0]) self.conv2 = ConvLayer(3, fm_sizes[0], fm_sizes[1], 1, 'SAME') self.bn2 = BatchNormLayer(fm_sizes[1]) self.conv3 = ConvLayer(1, fm_sizes[1], fm_sizes[2], 1) self.bn3 = BatchNormLayer(fm_sizes[2]) # init shortcut branch # Conv -> BN self.convs = ConvLayer(1, mi, fm_sizes[2], stride) self.bns = BatchNormLayer(fm_sizes[2]) # in case needed later self.layers = [ self.conv1, self.bn1, self.conv2, self.bn2, self.conv3, self.bn3, self.convs, self.bns ] # this will not be used when input passed in from # a previous layer self.input_ = tf.placeholder(tf.float32, shape=(1, 224, 224, mi)) self.output = self.forward(self.input_) def forward(self, X): # main branch FX = self.conv1.forward(X) FX = self.bn1.forward(FX) FX = self.f(FX) FX = self.conv2.forward(FX) FX = self.bn2.forward(FX) FX = self.f(FX) FX = self.conv3.forward(FX) FX = self.bn3.forward(FX) # shortcut branch SX = self.convs.forward(X) SX = self.bns.forward(SX) return self.f(FX + SX) def predict(self, X): assert(self.session is not None) return self.session.run( self.output, feed_dict={self.input_: X} ) def set_session(self, session): # need to make this a session # so assignment happens on sublayers too self.session = session self.conv1.session = session self.bn1.session = session self.conv2.session = session self.bn2.session = session self.conv3.session = session self.bn3.session = session self.convs.session = session self.bns.session = session def copyFromKerasLayers(self, layers): # [, # , # , # , # , # , # , # , # , # , # , # ] self.conv1.copyFromKerasLayers(layers[0]) self.bn1.copyFromKerasLayers(layers[1]) self.conv2.copyFromKerasLayers(layers[3]) self.bn2.copyFromKerasLayers(layers[4]) self.conv3.copyFromKerasLayers(layers[6]) self.bn3.copyFromKerasLayers(layers[8]) self.convs.copyFromKerasLayers(layers[7]) self.bns.copyFromKerasLayers(layers[9]) def get_params(self): params = [] for layer in self.layers: params += layer.get_params() return params if __name__ == '__main__': conv_block = ConvBlock(mi=3, fm_sizes=[64, 64, 256], stride=1) # make a fake image X = np.random.random((1, 224, 224, 3)) init = tf.global_variables_initializer() with tf.Session() as session: conv_block.set_session(session) session.run(init) output = conv_block.predict(X) print("output.shape:", output.shape) ================================================ FILE: cnn_class2/tf_resnet_convblock_starter.py ================================================ # https://deeplearningcourses.com/c/advanced-computer-vision # https://www.udemy.com/advanced-computer-vision from __future__ import print_function, division from builtins import range, input # Note: you may need to update your version of future # sudo pip install -U future import tensorflow as tf import numpy as np import matplotlib.pyplot as plt class ConvBlock: def __init__(self): pass def predict(self, X): pass if __name__ == '__main__': conv_block = ConvBlock() # make a fake image X = np.random.random((1, 224, 224, 3)) init = tf.global_variables_initializer() with tf.Session() as session: conv_block.session = session session.run(init) output = conv_block.predict(X): print("output.shape:", output.shape) ================================================ FILE: cnn_class2/tf_resnet_first_layers.py ================================================ # https://deeplearningcourses.com/c/advanced-computer-vision # https://www.udemy.com/advanced-computer-vision from __future__ import print_function, division from builtins import range, input # Note: you may need to update your version of future # sudo pip install -U future # Let's go up to the end of the first conv block # to make sure everything has been loaded correctly # compared to keras import tensorflow as tf import numpy as np import matplotlib.pyplot as plt import keras from keras.applications.resnet50 import ResNet50 from keras.models import Model from keras.preprocessing import image from keras.applications.resnet50 import preprocess_input, decode_predictions from tf_resnet_convblock import ConvLayer, BatchNormLayer, ConvBlock # NOTE: dependent on your Keras version # this script used 2.1.1 # [, # , # , # , # , # , # , # , # , # , # , # , # , # , # , # , # ] # define some additional layers so they have a forward function class ReLULayer: def forward(self, X): return tf.nn.relu(X) def get_params(self): return [] class MaxPoolLayer: def __init__(self, dim): self.dim = dim def forward(self, X): return tf.nn.max_pool( X, ksize=[1, self.dim, self.dim, 1], strides=[1, 2, 2, 1], padding='VALID' ) def get_params(self): return [] class PartialResNet: def __init__(self): self.layers = [ # before conv block ConvLayer(d=7, mi=3, mo=64, stride=2, padding='SAME'), BatchNormLayer(64), ReLULayer(), MaxPoolLayer(dim=3), # conv block ConvBlock(mi=64, fm_sizes=[64, 64, 256], stride=1), ] self.input_ = tf.placeholder(tf.float32, shape=(None, 224, 224, 3)) self.output = self.forward(self.input_) def copyFromKerasLayers(self, layers): self.layers[0].copyFromKerasLayers(layers[1]) self.layers[1].copyFromKerasLayers(layers[2]) self.layers[4].copyFromKerasLayers(layers[5:]) def forward(self, X): for layer in self.layers: X = layer.forward(X) return X def predict(self, X): assert(self.session is not None) return self.session.run( self.output, feed_dict={self.input_: X} ) def set_session(self, session): self.session = session self.layers[0].session = session self.layers[1].session = session self.layers[4].set_session(session) def get_params(self): params = [] for layer in self.layers: params += layer.get_params() if __name__ == '__main__': # you can also set weights to None, it doesn't matter resnet = ResNet50(weights='imagenet') # you can determine the correct layer # by looking at resnet.layers in the console partial_model = Model( inputs=resnet.input, outputs=resnet.layers[16].output ) print(partial_model.summary()) # for layer in partial_model.layers: # layer.trainable = False my_partial_resnet = PartialResNet() # make a fake image X = np.random.random((1, 224, 224, 3)) # get keras output keras_output = partial_model.predict(X) # get my model output init = tf.variables_initializer(my_partial_resnet.get_params()) # note: starting a new session messes up the Keras model session = keras.backend.get_session() my_partial_resnet.set_session(session) session.run(init) # first, just make sure we can get any output first_output = my_partial_resnet.predict(X) print("first_output.shape:", first_output.shape) # copy params from Keras model my_partial_resnet.copyFromKerasLayers(partial_model.layers) # compare the 2 models output = my_partial_resnet.predict(X) diff = np.abs(output - keras_output).sum() if diff < 1e-10: print("Everything's great!") else: print("diff = %s" % diff) ================================================ FILE: cnn_class2/tf_resnet_first_layers_starter.py ================================================ # https://deeplearningcourses.com/c/advanced-computer-vision # https://www.udemy.com/advanced-computer-vision from __future__ import print_function, division from builtins import range, input # Note: you may need to update your version of future # sudo pip install -U future # Let's go up to the end of the first conv block # to make sure everything has been loaded correctly # compared to keras import tensorflow as tf import numpy as np import matplotlib.pyplot as plt import keras from keras.applications.resnet50 import ResNet50 from keras.models import Model from keras.preprocessing import image from keras.applications.resnet50 import preprocess_input, decode_predictions from tf_resnet_convblock import ConvLayer, BatchNormLayer, ConvBlock class PartialResNet: def __init__(self): # TODO pass def copyFromKerasLayers(self, layers): # TODO pass def predict(self, X): # TODO pass def set_session(self, session): self.session = session # TODO: finish this def get_params(self): params = [] # TODO: finish this if __name__ == '__main__': # you can also set weights to None, it doesn't matter resnet = ResNet50(weights='imagenet') # you can determine the correct layer # by looking at resnet.layers in the console partial_model = Model( inputs=resnet.input, outputs=resnet.layers[16].output ) print(partial_model.summary()) # for layer in partial_model.layers: # layer.trainable = False my_partial_resnet = PartialResNet() # make a fake image X = np.random.random((1, 224, 224, 3)) # get keras output keras_output = partial_model.predict(X) # get my model output init = tf.variables_initializer(my_partial_resnet.get_params()) # note: starting a new session messes up the Keras model session = keras.backend.get_session() my_partial_resnet.set_session(session) session.run(init) # first, just make sure we can get any output first_output = my_partial_resnet.predict(X) print("first_output.shape:", first_output.shape) # copy params from Keras model my_partial_resnet.copyFromKerasLayers(partial_model.layers) # compare the 2 models output = my_partial_resnet.predict(X) diff = np.abs(output - keras_output).sum() if diff < 1e-10: print("Everything's great!") else: print("diff = %s" % diff) ================================================ FILE: cnn_class2/tf_resnet_identity_block.py ================================================ # https://deeplearningcourses.com/c/advanced-computer-vision # https://www.udemy.com/advanced-computer-vision from __future__ import print_function, division from builtins import range, input # Note: you may need to update your version of future # sudo pip install -U future import tensorflow as tf import numpy as np import matplotlib.pyplot as plt from tf_resnet_convblock import ConvLayer, BatchNormLayer class IdentityBlock: def __init__(self, mi, fm_sizes, activation=tf.nn.relu): # conv1, conv2, conv3 # note: # feature maps shortcut = # feauture maps conv 3 assert(len(fm_sizes) == 3) # note: kernel size in 2nd conv is always 3 # so we won't bother including it as an arg self.session = None self.f = tf.nn.relu # init main branch # Conv -> BN -> F() ---> Conv -> BN -> F() ---> Conv -> BN self.conv1 = ConvLayer(1, mi, fm_sizes[0], 1) self.bn1 = BatchNormLayer(fm_sizes[0]) self.conv2 = ConvLayer(3, fm_sizes[0], fm_sizes[1], 1, 'SAME') self.bn2 = BatchNormLayer(fm_sizes[1]) self.conv3 = ConvLayer(1, fm_sizes[1], fm_sizes[2], 1) self.bn3 = BatchNormLayer(fm_sizes[2]) # in case needed later self.layers = [ self.conv1, self.bn1, self.conv2, self.bn2, self.conv3, self.bn3, ] # this will not be used when input passed in from # a previous layer self.input_ = tf.placeholder(tf.float32, shape=(1, 224, 224, mi)) self.output = self.forward(self.input_) def forward(self, X): # main branch FX = self.conv1.forward(X) FX = self.bn1.forward(FX) FX = self.f(FX) FX = self.conv2.forward(FX) FX = self.bn2.forward(FX) FX = self.f(FX) FX = self.conv3.forward(FX) FX = self.bn3.forward(FX) return self.f(FX + X) def predict(self, X): assert(self.session is not None) return self.session.run( self.output, feed_dict={self.input_: X} ) def set_session(self, session): # need to make this a session # so assignment happens on sublayers too self.session = session self.conv1.session = session self.bn1.session = session self.conv2.session = session self.bn2.session = session self.conv3.session = session self.bn3.session = session def copyFromKerasLayers(self, layers): assert(len(layers) == 10) # , # , # , # , # , # , # , # , # , # self.conv1.copyFromKerasLayers(layers[0]) self.bn1.copyFromKerasLayers(layers[1]) self.conv2.copyFromKerasLayers(layers[3]) self.bn2.copyFromKerasLayers(layers[4]) self.conv3.copyFromKerasLayers(layers[6]) self.bn3.copyFromKerasLayers(layers[7]) def get_params(self): params = [] for layer in self.layers: params += layer.get_params() return params if __name__ == '__main__': identity_block = IdentityBlock(mi=256, fm_sizes=[64, 64, 256]) # make a fake image X = np.random.random((1, 224, 224, 256)) init = tf.global_variables_initializer() with tf.Session() as session: identity_block.set_session(session) session.run(init) output = identity_block.predict(X) print("output.shape:", output.shape) ================================================ FILE: cnn_class2/tf_resnet_identity_block_starter.py ================================================ # https://deeplearningcourses.com/c/advanced-computer-vision # https://www.udemy.com/advanced-computer-vision from __future__ import print_function, division from builtins import range, input # Note: you may need to update your version of future # sudo pip install -U future import tensorflow as tf import numpy as np import matplotlib.pyplot as plt from tf_resnet_convblock import ConvLayer, BatchNormLayer class IdentityBlock: def __init__(self): # TODO pass def predict(self, X): # TODO pass if __name__ == '__main__': identity_block = IdentityBlock() # make a fake image X = np.random.random((1, 224, 224, 256)) init = tf.global_variables_initializer() with tf.Session() as session: identity_block.set_session(session) session.run(init) output = identity_block.predict(X) print("output.shape:", output.shape) ================================================ FILE: cnn_class2/use_pretrained_weights_resnet.py ================================================ # https://deeplearningcourses.com/c/advanced-computer-vision # https://www.udemy.com/advanced-computer-vision from __future__ import print_function, division from builtins import range, input # Note: you may need to update your version of future # sudo pip install -U future from keras.layers import Input, Lambda, Dense, Flatten from keras.models import Model from keras.applications.resnet import ResNet50, preprocess_input # from keras.applications.inception_v3 import InceptionV3, preprocess_input from keras.preprocessing import image from keras.preprocessing.image import ImageDataGenerator from sklearn.metrics import confusion_matrix import numpy as np import matplotlib.pyplot as plt from glob import glob # re-size all the images to this IMAGE_SIZE = [100, 100] # feel free to change depending on dataset # training config: epochs = 16 batch_size = 32 # https://www.kaggle.com/paultimothymooney/blood-cells # train_path = '../large_files/blood_cell_images/TRAIN' # valid_path = '../large_files/blood_cell_images/TEST' # https://www.kaggle.com/moltean/fruits # train_path = '../large_files/fruits-360/Training' # valid_path = '../large_files/fruits-360/Validation' train_path = '../large_files/fruits-360-small/Training' valid_path = '../large_files/fruits-360-small/Validation' # useful for getting number of files image_files = glob(train_path + '/*/*.jp*g') valid_image_files = glob(valid_path + '/*/*.jp*g') # useful for getting number of classes folders = glob(train_path + '/*') # look at an image for fun plt.imshow(image.load_img(np.random.choice(image_files))) plt.show() # add preprocessing layer to the front of VGG res = ResNet50(input_shape=IMAGE_SIZE + [3], weights='imagenet', include_top=False) # don't train existing weights for layer in res.layers: layer.trainable = False # our layers - you can add more if you want x = Flatten()(res.output) # x = Dense(1000, activation='relu')(x) prediction = Dense(len(folders), activation='softmax')(x) # create a model object model = Model(inputs=res.input, outputs=prediction) # view the structure of the model model.summary() # tell the model what cost and optimization method to use model.compile( loss='categorical_crossentropy', optimizer='rmsprop', metrics=['accuracy'] ) # create an instance of ImageDataGenerator gen = ImageDataGenerator( rotation_range=20, width_shift_range=0.1, height_shift_range=0.1, shear_range=0.1, zoom_range=0.2, horizontal_flip=True, vertical_flip=True, preprocessing_function=preprocess_input ) # test generator to see how it works and some other useful things # get label mapping for confusion matrix plot later test_gen = gen.flow_from_directory(valid_path, target_size=IMAGE_SIZE) print(test_gen.class_indices) labels = [None] * len(test_gen.class_indices) for k, v in test_gen.class_indices.items(): labels[v] = k # should be a strangely colored image (due to VGG weights being BGR) for x, y in test_gen: print("min:", x[0].min(), "max:", x[0].max()) plt.title(labels[np.argmax(y[0])]) plt.imshow(x[0]) plt.show() break # create generators train_generator = gen.flow_from_directory( train_path, target_size=IMAGE_SIZE, shuffle=True, batch_size=batch_size, ) valid_generator = gen.flow_from_directory( valid_path, target_size=IMAGE_SIZE, shuffle=True, batch_size=batch_size, ) # fit the model r = model.fit( train_generator, validation_data=valid_generator, epochs=epochs, steps_per_epoch=len(image_files) // batch_size, validation_steps=len(valid_image_files) // batch_size, ) def get_confusion_matrix(data_path, N): # we need to see the data in the same order # for both predictions and targets print("Generating confusion matrix", N) predictions = [] targets = [] i = 0 for x, y in gen.flow_from_directory(data_path, target_size=IMAGE_SIZE, shuffle=False, batch_size=batch_size * 2): i += 1 if i % 50 == 0: print(i) p = model.predict(x) p = np.argmax(p, axis=1) y = np.argmax(y, axis=1) predictions = np.concatenate((predictions, p)) targets = np.concatenate((targets, y)) if len(targets) >= N: break cm = confusion_matrix(targets, predictions) return cm cm = get_confusion_matrix(train_path, len(image_files)) print(cm) valid_cm = get_confusion_matrix(valid_path, len(valid_image_files)) print(valid_cm) # plot some data # loss plt.plot(r.history['loss'], label='train loss') plt.plot(r.history['val_loss'], label='val loss') plt.legend() plt.show() # accuracies plt.plot(r.history['accuracy'], label='train acc') plt.plot(r.history['val_accuracy'], label='val acc') plt.legend() plt.show() from util import plot_confusion_matrix plot_confusion_matrix(cm, labels, title='Train confusion matrix') plot_confusion_matrix(valid_cm, labels, title='Validation confusion matrix') ================================================ FILE: cnn_class2/use_pretrained_weights_vgg.py ================================================ # https://deeplearningcourses.com/c/advanced-computer-vision # https://www.udemy.com/advanced-computer-vision from __future__ import print_function, division from builtins import range, input # Note: you may need to update your version of future # sudo pip install -U future from keras.layers import Input, Lambda, Dense, Flatten from keras.models import Model from keras.applications.vgg16 import VGG16 from keras.applications.vgg16 import preprocess_input from keras.preprocessing import image from keras.preprocessing.image import ImageDataGenerator from sklearn.metrics import confusion_matrix import numpy as np import matplotlib.pyplot as plt from glob import glob # re-size all the images to this IMAGE_SIZE = [100, 100] # feel free to change depending on dataset # training config: epochs = 5 batch_size = 32 # https://www.kaggle.com/paultimothymooney/blood-cells # train_path = '../large_files/blood_cell_images/TRAIN' # valid_path = '../large_files/blood_cell_images/TEST' # https://www.kaggle.com/moltean/fruits train_path = '../large_files/fruits-360/Training' valid_path = '../large_files/fruits-360/Validation' # train_path = '../large_files/fruits-360-small/Training' # valid_path = '../large_files/fruits-360-small/Validation' # useful for getting number of files image_files = glob(train_path + '/*/*.jp*g') valid_image_files = glob(valid_path + '/*/*.jp*g') # useful for getting number of classes folders = glob(train_path + '/*') # look at an image for fun plt.imshow(image.img_to_array(image.load_img(np.random.choice(image_files))).astype('uint8')) plt.show() # add preprocessing layer to the front of VGG vgg = VGG16(input_shape=IMAGE_SIZE + [3], weights='imagenet', include_top=False) # don't train existing weights for layer in vgg.layers: layer.trainable = False # our layers - you can add more if you want x = Flatten()(vgg.output) # x = Dense(1000, activation='relu')(x) prediction = Dense(len(folders), activation='softmax')(x) # create a model object model = Model(inputs=vgg.input, outputs=prediction) # view the structure of the model model.summary() # tell the model what cost and optimization method to use model.compile( loss='categorical_crossentropy', optimizer='rmsprop', metrics=['accuracy'] ) # create an instance of ImageDataGenerator gen = ImageDataGenerator( rotation_range=20, width_shift_range=0.1, height_shift_range=0.1, shear_range=0.1, zoom_range=0.2, horizontal_flip=True, vertical_flip=True, preprocessing_function=preprocess_input ) # test generator to see how it works and some other useful things # get label mapping for confusion matrix plot later test_gen = gen.flow_from_directory(valid_path, target_size=IMAGE_SIZE) print(test_gen.class_indices) labels = [None] * len(test_gen.class_indices) for k, v in test_gen.class_indices.items(): labels[v] = k # should be a strangely colored image (due to VGG weights being BGR) for x, y in test_gen: print("min:", x[0].min(), "max:", x[0].max()) plt.title(labels[np.argmax(y[0])]) plt.imshow(x[0]) plt.show() break # create generators train_generator = gen.flow_from_directory( train_path, target_size=IMAGE_SIZE, shuffle=True, batch_size=batch_size, ) valid_generator = gen.flow_from_directory( valid_path, target_size=IMAGE_SIZE, shuffle=True, batch_size=batch_size, ) # fit the model r = model.fit( train_generator, validation_data=valid_generator, epochs=epochs, steps_per_epoch=len(image_files) // batch_size, validation_steps=len(valid_image_files) // batch_size, ) def get_confusion_matrix(data_path, N): # we need to see the data in the same order # for both predictions and targets print("Generating confusion matrix", N) predictions = [] targets = [] i = 0 for x, y in gen.flow_from_directory(data_path, target_size=IMAGE_SIZE, shuffle=False, batch_size=batch_size * 2): i += 1 if i % 50 == 0: print(i) p = model.predict(x) p = np.argmax(p, axis=1) y = np.argmax(y, axis=1) predictions = np.concatenate((predictions, p)) targets = np.concatenate((targets, y)) if len(targets) >= N: break cm = confusion_matrix(targets, predictions) return cm cm = get_confusion_matrix(train_path, len(image_files)) print(cm) valid_cm = get_confusion_matrix(valid_path, len(valid_image_files)) print(valid_cm) # plot some data # loss plt.plot(r.history['loss'], label='train loss') plt.plot(r.history['val_loss'], label='val loss') plt.legend() plt.show() # accuracies plt.plot(r.history['accuracy'], label='train acc') plt.plot(r.history['val_accuracy'], label='val acc') plt.legend() plt.show() from util import plot_confusion_matrix plot_confusion_matrix(cm, labels, title='Train confusion matrix') plot_confusion_matrix(valid_cm, labels, title='Validation confusion matrix') ================================================ FILE: cnn_class2/util.py ================================================ # https://deeplearningcourses.com/advanced-computer-vision # https://www.udemy.com/advanced-computer-vision from __future__ import print_function, division from builtins import range, input # Note: you may need to update your version of future # sudo pip install -U future import itertools import numpy as np import matplotlib.pyplot as plt def plot_confusion_matrix(cm, classes, normalize=False, title='Confusion matrix', cmap=plt.cm.Blues): """ This function prints and plots the confusion matrix. Normalization can be applied by setting `normalize=True`. """ if normalize: cm = cm.astype('float') / cm.sum(axis=1)[:, np.newaxis] print("Normalized confusion matrix") else: print('Confusion matrix, without normalization') print(cm) plt.imshow(cm, interpolation='nearest', cmap=cmap) plt.title(title) plt.colorbar() tick_marks = np.arange(len(classes)) plt.xticks(tick_marks, classes, rotation=45) plt.yticks(tick_marks, classes) fmt = '.2f' if normalize else 'd' thresh = cm.max() / 2. for i, j in itertools.product(range(cm.shape[0]), range(cm.shape[1])): plt.text(j, i, format(cm[i, j], fmt), horizontalalignment="center", color="white" if cm[i, j] > thresh else "black") plt.tight_layout() plt.ylabel('True label') plt.xlabel('Predicted label') plt.show() def y2indicator(Y): K = len(set(Y)) N = len(Y) I = np.empty((N, K)) I[np.arange(N), Y] = 1 return I ================================================ FILE: data_csv/X.txt ================================================ 1,1.4821,1.0759,0.66329,0.61975,-1.2836,-1.6232 1,1.4821,1.4868,1.5726,0.84226,-1.4649,-1.6232 1,1.4821,1.181,1.1829,0.53969,-1.6461,-1.6232 1,1.4821,1.0472,1.1829,0.53616,-1.2836,-1.6232 1,1.4821,1.0281,0.92308,0.555,-1.8273,-1.6232 1,1.4821,2.2418,2.4299,1.6051,-2.0086,-1.6232 1,1.4821,2.4807,3.0015,1.6205,-2.371,-1.6232 1,1.4821,2.3469,2.8716,1.571,-2.5523,-1.6232 1,1.4821,2.4902,3.1314,1.704,-2.0086,-1.6232 1,1.4821,1.8691,2.2221,1.0271,-2.5523,-1.6232 1,1.4821,1.8022,1.7025,0.68921,-2.0086,-1.6232 1,1.4821,1.3913,1.4427,0.74336,-2.7335,-1.6232 1,1.4821,1.9646,1.1829,0.92231,-2.1898,-1.6232 1,1.4821,2.4902,3.1314,0.12764,-2.0086,-1.6232 1,-0.86291,-0.77799,-0.24601,-0.71295,-0.19621,-1.6232 1,0.30957,0.034288,-0.24601,-0.17022,-0.01498,-1.6232 1,0.30957,0.043844,-0.19405,-0.23968,-0.01498,-1.6232 1,0.30957,0.0534,-0.50581,-0.45983,0.16625,-1.6232 1,-0.86291,-0.93089,-0.42787,-0.99786,-0.37745,-1.6232 1,-0.86291,-0.93089,-1.519,-1.3452,1.7974,-1.6232 1,-0.86291,-0.80666,-0.45385,-0.35976,0.70996,-1.6232 1,-0.86291,-0.83533,-0.37591,-0.64467,-0.37745,-1.6232 1,-0.86291,-0.864,-0.24601,-0.70942,0.70996,-1.6232 1,-0.86291,-0.70154,0.22163,-0.87542,-1.1024,-1.6232 1,0.30957,0.043844,-0.37591,-0.38802,-0.19621,-1.6232 1,1.4821,1.5824,2.8716,1.9277,-0.55868,-1.6232 1,1.4821,1.0759,2.4819,1.6464,-0.19621,-1.6232 1,1.4821,1.181,2.7417,1.6534,-0.73992,-1.6232 1,1.4821,1.0472,2.3,2.0655,1.0724,-1.6232 1,-0.86291,-0.93089,-0.42787,-0.99786,-0.37745,-1.3518 1,-0.86291,-0.51997,-0.37591,-0.8401,-0.01498,-1.3518 1,-0.86291,-0.77799,-0.24601,-0.88248,-0.55868,-1.3518 1,0.30957,0.3592,-0.11611,-0.4045,-0.92115,-1.3518 1,0.30957,0.29231,0.013785,0.54322,-0.01498,-1.3518 1,0.30957,0.53121,-0.11611,0.41372,-0.01498,-1.3518 1,0.30957,0.53121,-0.42787,0.38193,-0.01498,-1.3518 1,0.30957,0.3592,-0.11611,0.36545,-0.01498,-1.3518 1,1.4821,1.4868,1.5726,1.4497,-1.2836,-1.3518 1,1.4821,1.9646,1.8324,1.75,-1.4649,-1.3518 1,1.4821,1.4964,1.2608,1.385,-0.73992,-1.3518 1,1.4821,1.181,1.1829,1.3167,-0.92115,-1.3518 1,1.4821,1.8022,1.9623,2.328,-1.4649,-1.3518 1,1.4821,1.9646,1.7025,2.082,-1.2836,-1.3518 1,1.4821,1.9646,1.8324,2.5458,-1.2836,-1.3518 1,0.30957,0.60766,0.14369,-0.018347,-0.73992,-1.3518 1,-0.86291,-0.51997,-0.84355,-0.67057,1.2537,-1.3518 1,0.30957,0.53121,-0.11611,0.35839,-0.19621,-1.3518 1,0.30957,0.53121,-0.42787,0.19003,-0.37745,-1.3518 1,-0.86291,-0.69198,-0.47983,-0.8919,-0.55868,-1.3518 1,-0.86291,-0.74932,-0.37591,-1.0061,-0.55868,-1.3518 1,-0.86291,-1.1029,-0.89551,-1.0638,1.4349,-1.3518 1,-0.86291,-1.0169,-0.73963,-1.0744,-0.37745,-1.3518 1,-0.86291,-1.1794,-1.0254,-1.4182,1.2537,-1.3518 1,-0.86291,-1.1698,-0.92149,-1.6065,0.89119,-1.3518 1,-0.86291,-0.93089,-1.1553,-1.3463,1.2537,-1.3518 1,-0.86291,-0.98823,-0.89551,-1.2039,1.7974,-1.3518 1,-0.86291,-0.77799,-0.24601,-0.82362,-0.01498,-1.0803 1,-0.86291,-0.92611,-0.63571,-1.0026,0.52872,-1.0803 1,-0.86291,-0.93089,-1.3112,-0.85187,2.8848,-1.0803 1,-0.86291,-0.51997,-0.37591,-0.67057,1.4349,-1.0803 1,-0.86291,-0.69198,-0.47983,-0.88484,0.34749,-1.0803 1,1.4821,1.4868,1.5726,1.5263,-1.2836,-1.0803 1,1.4821,1.9646,1.8324,1.6569,-1.2836,-1.0803 1,1.4821,1.181,1.1829,1.3626,-0.73992,-1.0803 1,1.4821,1.4964,1.2608,1.3556,-0.92115,-1.0803 1,1.4821,1.0472,1.1829,0.81753,-1.4649,-1.0803 1,1.4821,2.2418,2.6897,1.9489,-1.6461,-1.0803 1,1.4821,1.4868,1.3128,1.7947,-0.73992,-1.0803 1,1.4821,1.4868,1.4427,1.7405,-0.73992,-1.0803 1,1.4821,1.9646,2.2221,1.7005,-1.1024,-1.0803 1,-1.4492,-1.1889,-0.19405,-0.7624,-0.73992,-1.0803 1,1.4821,1.0472,1.1829,1.0765,-1.1024,-1.0803 1,1.4821,1.0759,0.66329,1.3191,-0.55868,-1.0803 1,1.4821,1.0281,0.92308,1.5498,0.16625,-1.0803 1,1.4821,1.181,1.1829,1.2943,-0.55868,-1.0803 1,-0.86291,-0.70154,0.19565,-0.052489,-0.37745,-1.0803 1,-0.86291,-0.70154,-0.73963,-0.54931,0.89119,-1.0803 1,-0.86291,-0.7111,-0.45385,0.0016668,1.4349,-1.0803 1,-0.86291,-0.94045,-0.92149,-0.9284,0.89119,-1.0803 1,-0.86291,-0.69198,-0.47983,-0.68588,0.16625,-1.0803 1,-0.86291,-0.93089,-0.32395,-0.81185,0.52872,-1.0803 1,-0.86291,-0.7111,-0.19405,-0.5552,-0.37745,-1.0803 1,-0.86291,-0.92133,-0.63571,-0.95783,-0.19621,-1.0803 1,-0.86291,-0.93089,-0.42787,-1.0332,0.34749,-1.0803 1,1.4821,1.4868,1.8324,1.3214,-0.92115,-0.80885 1,1.4821,1.0472,1.1829,0.81753,-1.4649,-0.80885 1,1.4821,1.4868,1.053,1.1896,-0.92115,-0.80885 1,1.4821,1.0281,0.84515,1.2531,-0.37745,-0.80885 1,1.4821,1.181,1.1829,0.94115,-1.1024,-0.80885 1,1.4821,2.2418,2.4299,2.3245,-1.4649,-0.80885 1,1.4821,1.9646,1.1829,1.75,-1.2836,-0.80885 1,1.4821,1.4964,1.3907,1.631,-0.92115,-0.80885 1,1.4821,1.181,1.1829,1.4827,-0.37745,-0.80885 1,1.4821,2.3469,2.8716,2.069,-1.6461,-0.80885 1,1.4821,2.4902,3.1314,2.3233,-1.6461,-0.80885 1,1.4821,1.5824,1.8324,0.99295,-1.6461,-0.80885 1,0.30957,0.29231,0.013785,0.16884,0.34749,-0.80885 1,0.30957,0.53121,-0.11611,0.35368,0.89119,-0.80885 1,0.30957,0.3592,-0.11611,-0.038361,0.16625,-0.80885 1,0.30957,0.53121,-0.42787,0.051113,0.34749,-0.80885 1,0.30957,0.034288,-0.24601,-0.086631,0.16625,-0.80885 1,-0.86291,-0.93089,-1.519,-1.2098,1.9786,-0.80885 1,1.4821,1.9646,1.1829,2.3775,-0.55868,-0.80885 1,1.4821,1.9646,1.6245,2.2703,-1.1024,-0.80885 1,1.4821,1.5824,1.7025,1.9736,-0.92115,-0.80885 1,1.4821,1.4868,1.9623,1.7912,-1.1024,-0.80885 1,0.30957,0.3592,-0.11611,-0.22202,-0.19621,-0.80885 1,-0.86291,-0.93089,-0.42787,-0.82244,1.2537,-0.80885 1,-0.86291,-0.51997,-0.84355,-0.67881,1.4349,-0.80885 1,-0.86291,-0.82577,-0.27199,-0.70471,0.34749,-0.80885 1,-1.4492,-1.1889,-0.37591,-1.0049,-0.73992,-0.80885 1,-0.86291,-0.69198,-0.50581,-0.78595,1.0724,-0.80885 1,0.30957,-0.37663,0.065745,-0.59522,-0.55868,-0.80885 1,-0.86291,-0.92133,-0.37591,-0.83892,-0.01498,-0.80885 1,1.4821,1.4868,1.053,1.3002,-0.92115,-0.80885 1,1.4821,1.9646,3.2613,1.531,-2.1898,-0.80885 1,-0.86291,-1.208,-1.4411,-1.3075,1.4349,-0.80885 1,-0.86291,-0.74932,-0.76561,-0.96489,-0.01498,-0.80885 1,-0.86291,-0.76843,-0.34993,-0.46572,-0.55868,-0.80885 1,-0.86291,-0.70154,0.19565,-0.12901,-0.01498,-0.80885 1,1.4821,1.181,1.1829,0.49613,-1.6461,-0.80885 1,-0.86291,-0.70154,0.14369,-0.37389,-0.55868,-0.80885 1,0.30957,-0.36707,0.45545,-0.20083,-0.73992,-0.80885 1,1.4821,1.4868,1.9623,0.80812,-1.6461,-0.80885 1,0.30957,0.034288,-0.24601,0.14647,0.34749,-0.53739 1,0.30957,0.3592,-0.11611,-0.090162,0.16625,-0.53739 1,0.30957,0.53121,-0.11611,0.42196,0.52872,-0.53739 1,-0.86291,-1.1029,-0.97345,-1.2098,1.2537,-0.53739 1,-0.86291,-0.69198,-0.63571,-0.61995,0.34749,-0.53739 1,-0.86291,-1.1794,-1.0254,-1.344,1.9786,-0.53739 1,-0.86291,-0.51997,-0.76561,-0.51281,0.52872,-0.53739 1,0.30957,0.53121,-0.11611,0.94586,0.52872,-0.53739 1,0.30957,0.60766,0.14369,0.77044,0.89119,-0.53739 1,0.30957,0.29231,0.013785,0.74807,0.34749,-0.53739 1,1.4821,1.0281,0.92308,1.3697,-0.55868,-0.53739 1,1.4821,1.4868,1.1829,2.0266,-0.37745,-0.53739 1,1.4821,1.181,1.1829,1.7417,-0.73992,-0.53739 1,1.4821,1.0281,0.92308,1.9548,0.16625,-0.53739 1,1.4821,1.0472,1.1829,1.5063,-0.01498,-0.53739 1,-0.86291,-0.92133,-0.55777,-0.89308,0.34749,-0.53739 1,-0.86291,-1.1029,-0.97345,-1.1945,-0.01498,-0.53739 1,-0.86291,-0.93089,-0.68767,-0.79772,-0.37745,-0.53739 1,-0.86291,-1.1316,-1.3632,-1.5641,0.34749,-0.53739 1,-0.86291,-1.0647,-1.1293,-1.1474,1.2537,-0.53739 1,-0.86291,-0.99778,-0.76561,-1.0037,-0.37745,-0.53739 1,-0.86291,-0.99778,-0.76561,-1.0238,-0.01498,-0.53739 1,-0.86291,-0.74932,-0.76561,-0.86129,-0.55868,-0.53739 1,-0.86291,-0.7111,-0.19405,-0.57521,-0.19621,-0.53739 1,-0.86291,-0.82577,-0.29797,-0.69058,-0.01498,-0.53739 1,-0.86291,-1.1029,-0.97345,-1.1509,0.16625,-0.53739 1,0.30957,0.29231,-0.24601,0.3372,0.16625,-0.26592 1,0.30957,0.53121,0.013785,0.56677,0.16625,-0.26592 1,0.30957,0.53121,-0.84355,0.53498,1.9786,-0.26592 1,0.30957,0.53121,-0.84355,0.2124,1.4349,-0.26592 1,1.4821,1.9646,1.7025,1.9901,-1.4649,-0.26592 1,1.4821,1.4868,1.053,1.7217,-0.55868,-0.26592 1,1.4821,1.181,1.1829,1.79,-0.37745,-0.26592 1,1.4821,1.4964,1.1309,1.9772,-0.73992,-0.26592 1,0.30957,0.34964,0.14369,1.0942,1.9786,-0.26592 1,0.30957,0.53121,0.013785,1.0824,1.0724,-0.26592 1,0.30957,0.60766,0.14369,0.88582,1.2537,-0.26592 1,0.30957,0.29231,-0.24601,0.95057,1.2537,-0.26592 1,0.30957,0.34964,0.14369,0.072305,-0.19621,-0.26592 1,1.4821,0.64589,0.14369,0.28657,-0.73992,-0.26592 1,1.4821,1.0281,0.63731,0.22535,-1.2836,-0.26592 1,-0.86291,-0.93089,-0.76561,-0.94959,0.16625,-0.26592 1,-0.86291,-0.51997,-0.55777,-0.39861,0.52872,-0.26592 1,0.30957,0.3592,-0.11611,-0.074858,0.16625,-0.26592 1,-0.86291,-0.51997,-0.68767,-0.45395,1.0724,-0.26592 1,-0.86291,-0.57731,-0.22003,-0.32444,-0.73992,-0.26592 1,-0.86291,-0.99778,-0.86953,-0.88837,0.34749,-0.26592 1,-0.86291,-0.72065,-0.19405,-0.50928,0.52872,-0.26592 1,0.30957,-0.22373,-0.19405,0.0075533,-0.37745,-0.26592 1,-0.86291,-0.99778,-0.89551,-1.2251,-0.55868,-0.26592 1,0.30957,0.3592,-0.37591,0.2748,0.52872,-0.26592 1,-0.86291,-0.75888,-0.24601,-0.33386,-0.19621,-0.26592 1,-0.86291,-0.7111,-0.42787,-0.024234,0.52872,-0.26592 1,-0.86291,-0.70154,-0.16807,-0.038361,-0.37745,-0.26592 1,-0.86291,-0.70154,0.27359,-0.36094,-0.73992,-0.26592 1,-0.86291,-0.98823,-1.3372,-1.3923,0.70996,-0.26592 1,-0.86291,-0.83533,-0.47983,-0.60464,-0.01498,0.0055401 1,-0.86291,-0.74932,-0.60973,-0.8919,0.49248,0.0055401 1,-0.86291,-0.51997,-0.32395,-0.47749,-0.23246,0.0055401 1,-0.86291,-0.92133,-0.66169,-0.8507,0.78245,0.0055401 1,-0.86291,-0.89266,-0.55777,-0.91309,-0.087473,0.0055401 1,1.4821,1.0568,0.92308,1.4568,-0.92115,0.0055401 1,1.4821,1.181,1.1829,1.4274,-0.92115,0.0055401 1,1.4821,1.0472,0.40349,1.159,-0.59493,0.0055401 1,1.4821,1.4964,1.2348,1.4568,-0.99364,0.0055401 1,0.30957,0.29231,-0.11611,0.3007,-0.051226,0.0055401 1,0.30957,0.53121,0.013785,0.44198,-0.37745,0.0055401 1,0.30957,0.0534,-0.60973,0.040518,0.7462,0.0055401 1,0.30957,0.3592,-0.37591,0.12646,0.7462,0.0055401 1,-0.86291,-1.0456,-1.3632,-1.1097,2.4136,0.0055401 1,-0.86291,-0.92133,-1.1553,-0.95783,2.3773,0.0055401 1,-0.86291,-0.99778,-0.89551,-1.2251,-0.48619,0.0055401 1,-0.86291,-0.98823,-1.3372,-1.3923,0.67371,0.0055401 1,0.30957,0.29231,-0.11611,0.79281,0.78245,0.0055401 1,0.30957,0.53121,-0.68767,0.70216,1.9786,0.0055401 1,0.30957,0.53121,0.14369,0.78575,0.23875,0.0055401 1,0.30957,0.60766,-0.24601,0.25361,0.8187,0.0055401 1,-0.86291,-0.93089,-0.86953,-1.3569,-1.2111,0.0055401 1,-0.86291,-1.0456,-0.89551,-1.1627,0.52872,0.0055401 1,-0.86291,-0.93089,-0.76561,-0.96843,0.31124,0.0055401 1,-0.86291,-0.51997,-0.84355,-0.48573,-0.70367,0.0055401 1,-0.86291,-0.61553,-0.064155,0.20298,0.057514,0.0055401 1,1.4821,1.181,1.1829,1.1331,-0.84866,0.0055401 1,-0.86291,-0.7111,-0.42787,0.34426,2.3048,0.0055401 1,0.30957,-0.36707,0.091725,-0.056021,-0.01498,0.0055401 1,0.30957,-0.2524,0.40349,0.99177,0.41998,0.0055401 1,1.4821,1.4868,1.9623,1.6511,-1.2474,0.0055401 1,1.4821,1.4868,1.053,1.2684,-1.2836,0.0055401 1,1.4821,1.0281,0.66329,1.0506,-0.19621,0.0055401 1,1.4821,1.181,1.1829,0.91525,-0.55868,0.0055401 1,-0.86291,-0.92133,-0.94747,-1.0979,1.0724,0.277 1,-0.86291,-0.7971,-0.63571,-0.96843,-0.26871,0.277 1,-0.86291,-1.1029,-1.2073,-1.3569,1.1087,0.277 1,-0.86291,-0.69198,-0.22003,-0.79772,-0.01498,0.277 1,-0.86291,-1.0456,-0.89551,-1.2157,0.45623,0.277 1,1.4821,1.0568,1.053,1.0624,-1.1024,0.277 1,1.4821,0.62677,0.14369,1.2743,1.2537,0.277 1,1.4821,1.181,1.053,1.3685,-0.66742,0.277 1,1.4821,1.0281,0.66329,1.551,-0.23246,0.277 1,0.30957,0.53121,0.14369,0.63859,0.31124,0.277 1,0.30957,0.34964,0.013785,0.52674,0.49248,0.277 1,0.30957,0.29231,-0.11611,0.76809,0.78245,0.277 1,0.30957,0.53121,-0.16807,0.64447,1.2537,0.277 1,1.4821,1.9646,1.9623,1.4627,-1.6098,0.277 1,1.4821,1.4868,1.7025,1.3979,-1.5011,0.277 1,1.4821,1.9646,2.2221,1.5863,-1.2111,0.277 1,1.4821,1.4964,1.1569,1.5981,-0.37745,0.277 1,-0.86291,-0.93089,-0.68767,-1.2215,-0.37745,0.277 1,-0.86291,-0.41485,-0.42787,-0.27971,0.16625,0.277 1,-0.86291,-0.93089,-0.76561,-0.83892,0.96368,0.277 1,-0.86291,-0.51997,-0.40189,-0.26205,0.093761,0.277 1,-0.86291,-0.92133,-1.0774,-1.0909,0.52872,0.277 1,-0.86291,-0.92133,-0.55777,-1.0626,0.13001,0.277 1,-0.86291,-0.93089,-0.97345,-1.1686,0.31124,0.277 1,-0.86291,-0.93089,-0.68767,-0.92722,-0.52243,0.277 1,0.30957,-0.46264,-0.19405,-0.19141,-0.37745,0.277 1,-0.86291,-0.70154,0.14369,-0.44453,-0.99364,0.277 1,-1.4492,-1.0933,0.14369,-0.30325,-0.73992,0.277 1,-0.86291,-0.99778,-1.4671,-1.1686,2.1598,0.54847 1,-0.86291,-0.92133,-0.99943,-1.3864,-0.41369,0.54847 1,-0.86291,-1.1125,-1.3632,-1.1686,1.3986,0.54847 1,-0.86291,-1.0456,-0.89551,-1.0685,1.1087,0.54847 1,-0.86291,-0.98823,-1.1553,-1.3864,0.31124,0.54847 1,1.4821,0.62677,0.14369,0.4561,-0.01498,0.54847 1,1.4821,1.181,0.92308,0.8917,-0.84866,0.54847 1,1.4821,1.0281,0.89711,0.69745,-0.99364,0.54847 1,0.30957,0.34964,0.013785,0.65624,1.3262,0.54847 1,0.30957,0.0534,-0.24601,0.20887,0.96368,0.54847 1,0.30957,0.0534,-0.50581,-0.014815,0.093761,0.54847 1,-0.86291,-0.51997,-0.42787,-0.30325,-0.051226,0.54847 1,0.30957,0.29231,-0.11611,0.53263,0.60122,0.54847 1,0.30957,0.3592,-0.37591,0.27362,0.60122,0.54847 1,0.30957,0.34964,0.013785,0.47376,0.093761,0.54847 1,0.30957,0.0534,-0.50581,0.1088,0.41998,0.54847 1,0.30957,0.29231,0.14369,0.75631,1.1449,0.54847 1,0.30957,0.60766,0.40349,0.50908,-0.15997,0.54847 1,1.4821,1.0568,1.053,0.52674,-0.84866,0.54847 1,0.30957,0.34964,1.5726,0.55029,-0.77616,0.54847 1,1.4821,1.0281,0.89711,0.26774,-1.5736,0.54847 1,1.4821,1.181,0.92308,1.2979,-0.66742,0.54847 1,-0.86291,-0.92133,-0.94747,-0.96843,0.34749,0.54847 1,-0.86291,-0.57731,-0.24601,-0.49162,-0.48619,0.54847 1,-0.86291,-0.72065,-0.19405,-0.79772,-0.30495,0.54847 1,-0.86291,-0.85444,-0.76561,-0.88013,-0.37745,0.54847 1,-0.86291,-0.57731,-0.24601,-0.5446,-0.26871,0.54847 1,-0.86291,-0.36707,0.013785,-0.27382,0.41998,0.54847 1,-0.86291,-0.41485,-0.50581,-0.14432,0.7462,0.54847 1,-0.86291,-0.72065,-0.19405,-0.6741,-0.23246,0.54847 1,-0.27667,-0.60598,-0.038175,-0.17375,0.13001,0.54847 1,0.30957,-0.30018,0.53339,0.19121,-0.70367,0.54847 1,-0.86291,-0.70154,0.27359,-0.21496,0.057514,0.54847 1,0.30957,-0.30018,0.74123,0.50908,0.093761,0.54847 1,-0.86291,-1.0073,-0.86953,-1.1627,-0.23246,0.54847 1,-0.86291,-0.92133,-0.94747,-0.99197,0.38374,0.54847 1,0.30957,0.34964,0.27359,0.31483,-0.051226,0.81993 1,0.30957,0.0534,-0.50581,0.014617,0.96368,0.81993 1,-0.86291,-0.51997,-0.42787,-0.10311,0.63746,0.81993 1,0.30957,0.3592,-0.37591,0.33837,0.96368,0.81993 1,0.30957,0.29231,0.14369,0.45022,0.38374,0.81993 1,1.4821,1.0568,0.66329,1.0153,-0.051226,0.81993 1,1.4821,1.0281,0.63731,0.87993,-0.77616,0.81993 1,1.4821,1.4964,0.87113,1.1507,-0.84866,0.81993 1,1.4821,1.181,0.79319,1.0035,-0.12372,0.81993 1,1.4821,1.4868,1.3128,1.6275,-0.23246,0.81993 1,1.4821,1.4964,0.97504,1.2673,-0.44994,0.81993 1,1.4821,0.69367,0.53339,0.73866,-0.19621,0.81993 1,1.4821,1.5824,1.1829,1.1331,-0.92115,0.81993 1,-0.86291,-1.0073,-0.86953,-1.2392,-0.55868,0.81993 1,-0.86291,-1.036,-1.0254,-1.1803,-0.12372,0.81993 1,-0.86291,-0.92133,-0.63571,-1.251,-0.41369,0.81993 1,-0.86291,-0.70154,-0.63571,-0.36212,-0.19621,0.81993 1,-0.27667,-0.10906,-0.71365,0.65036,1.6524,0.81993 1,1.4821,1.4868,0.53339,1.086,0.67371,0.81993 1,-0.86291,-0.51042,-0.86953,0.25008,3.356,0.81993 1,1.4821,0.62677,-0.37591,0.52086,2.4136,0.81993 1,-0.86291,-0.85444,-0.89551,-0.91545,-0.84866,0.81993 1,-0.86291,-0.85444,-0.89551,-0.97431,-0.23246,0.81993 1,-0.86291,-1.0456,-1.0254,-1.1274,1.3262,0.81993 1,-0.86291,-0.98823,-0.92149,-0.99786,-0.30495,0.81993 1,-0.86291,-0.41485,-0.37591,-0.36212,0.16625,0.81993 1,0.30957,-0.20462,0.27359,-0.45042,-1.5373,0.81993 1,0.30957,-0.20462,0.27359,-0.3268,-0.9574,0.81993 1,-0.86291,-0.41485,-0.37591,-0.49633,-0.84866,0.81993 1,-0.86291,-0.92133,-0.73963,-0.98138,-0.30495,1.0914 1,-0.86291,-1.0073,-1.1553,-1.1886,1.1812,1.0914 1,-0.86291,-0.92133,-0.89551,-1.0096,-0.01498,1.0914 1,-0.86291,-1.036,-1.0254,-1.1285,0.31124,1.0914 1,-0.86291,-0.41485,-0.37591,-0.3527,0.34749,1.0914 1,-0.86291,-0.51997,-0.42787,-0.12666,0.92744,1.0914 1,-0.86291,-0.41485,-0.37591,0.029922,1.6524,1.0914 1,0.30957,0.29231,-0.37591,0.47494,1.1449,1.0914 1,-0.86291,-0.93089,-0.68767,-0.92958,0.093761,1.0914 1,-0.86291,-0.57731,-0.37591,-0.31385,-0.01498,1.0914 1,-0.86291,-0.7111,-0.76561,-0.51281,0.70996,1.0914 1,-0.86291,-0.72065,-0.32395,-0.63996,-0.19621,1.0914 1,-0.86291,-0.82577,-0.76561,-0.83892,-0.12372,1.0914 1,-0.86291,-1.036,-1.0254,-1.0214,0.85494,1.0914 1,-0.86291,-0.36707,0.013785,-0.20907,-0.41369,1.0914 1,-0.86291,-1.0456,-1.0254,-1.0214,1.3262,1.0914 1,-0.86291,-0.99778,-1.4671,-1.0508,2.2323,1.0914 1,-0.86291,-0.99778,-1.4671,-0.75651,2.9573,1.0914 1,-0.27667,-0.70154,-0.97345,-0.032475,1.5799,1.0914 1,-0.86291,-0.46264,-0.97345,0.32071,2.2686,1.0914 1,-0.86291,-0.98823,-0.97345,-1.3275,-0.63118,1.0914 1,-0.86291,-0.93089,-0.97345,-0.9802,0.89119,1.0914 1,-0.86291,-1.0073,-1.1034,-1.3334,-0.087473,1.0914 1,0.30957,-0.2524,0.71525,-0.079567,-1.5011,1.0914 1,-1.4492,-1.1889,-0.11611,-0.65644,-1.1024,1.0914 1,-0.86291,-0.69198,-0.42787,-0.56226,-0.15997,1.0914 1,-0.86291,-0.83533,-0.84355,-0.80949,0.52872,1.0914 1,-0.86291,-0.56775,-0.53179,-0.57403,0.057514,1.3629 1,-0.86291,-0.41485,-0.53179,-0.40332,0.31124,1.3629 1,-0.86291,-0.36707,-0.32395,-0.42098,-0.41369,1.3629 1,0.30957,-0.20462,0.14369,-0.29737,-1.0661,1.3629 1,-0.86291,-0.56775,-0.53179,-0.69765,-0.9574,1.3629 1,-0.86291,-1.1029,-1.2073,-1.4393,0.49248,1.3629 1,-0.86291,-1.036,-1.0514,-1.2981,0.31124,1.3629 1,-0.86291,-1.0838,-1.1553,-1.4335,0.2025,1.3629 1,-0.86291,-0.93089,-0.97345,-1.0744,0.8187,1.3629 1,-0.86291,-1.0456,-1.0254,-1.1803,1.3986,1.3629 1,-0.86291,-1.0073,-1.1034,-1.092,0.63746,1.3629 1,-0.86291,-0.98823,-0.94747,-1.1686,0.16625,1.3629 1,-0.86291,-0.85444,-1.0774,-0.89779,-0.23246,1.3629 1,-0.86291,-0.92133,-1.0254,-1.0979,0.23875,1.3629 1,-0.86291,-0.92133,-1.0254,-0.70353,1.8699,1.3629 1,-0.86291,-0.85444,-0.79159,-0.92722,-0.48619,1.3629 1,-0.86291,-0.83533,-0.76561,-0.90368,-0.41369,1.3629 1,-0.86291,-0.82577,-0.76561,-0.73885,0.45623,1.3629 1,-0.86291,-0.72065,-0.11611,-0.42687,-0.26871,1.3629 1,-0.86291,-0.7111,-0.79159,-0.40332,0.99993,1.3629 1,-0.86291,-0.51042,-0.63571,0.29717,1.7611,1.3629 1,0.30957,-0.47219,-0.73963,0.21476,1.4711,1.3629 1,0.30957,-0.2524,0.29957,-0.09134,-1.0661,1.3629 1,0.30957,-0.46264,0.40349,-0.056021,-0.63118,1.3629 1,0.30957,0.34964,0.14369,0.51497,0.093761,1.3629 1,1.4821,1.4868,0.013785,0.87993,1.2537,1.3629 1,0.30957,0.0534,-0.42787,0.097028,0.56497,1.3629 1,0.30957,0.29231,-0.50581,0.57383,0.38374,1.3629 1,-0.86291,-0.78755,-0.42787,-0.43864,1.4711,1.6343 1,-0.86291,-0.78755,-0.42787,-0.39744,1.1087,1.6343 1,-0.86291,-0.78755,-0.42787,-0.68588,0.89119,1.6343 1,-0.86291,-0.78755,-0.50581,-0.47396,0.23875,1.6343 1,-0.86291,-0.56775,-0.53179,-0.53283,0.16625,1.6343 1,-0.86291,-0.41485,-0.37591,-0.28559,0.89119,1.6343 1,-0.86291,-0.51997,-0.32395,-0.13255,0.31124,1.6343 1,-0.86291,-0.85444,-0.79159,-1.1745,-0.087473,1.6343 1,-0.86291,-0.98823,-0.94747,-1.1215,0.96368,1.6343 1,-0.86291,-0.98823,-0.94747,-1.1862,0.7462,1.6343 1,-0.86291,-0.85444,-1.0774,-1.0037,-0.30495,1.6343 1,-0.86291,-0.92133,-0.89551,-1.0037,0.63746,1.6343 1,-0.86291,-0.7111,-0.42787,-0.96254,-0.37745,1.6343 1,-0.86291,-0.83533,-0.76561,-0.90956,-0.37745,1.6343 1,-0.86291,-0.82577,-0.89551,-0.86247,0.49248,1.6343 1,-0.86291,-0.98823,-0.97345,-1.1921,-0.19621,1.6343 1,-0.86291,-0.98823,-0.97345,-1.1921,0.057514,1.6343 1,-0.86291,-0.98823,-0.97345,-1.1568,0.23875,1.6343 1,0.30957,-0.12817,0.14369,-0.038361,0.31124,1.6343 1,0.30957,0.64589,-0.50581,0.04405,0.52872,1.6343 1,-0.86291,-0.36707,-0.32395,-0.46219,-0.37745,1.6343 1,0.30957,0.3592,0.19565,-0.16786,-0.30495,1.6343 1,-0.86291,-0.48175,-0.22003,-0.368,-0.59493,1.6343 1,-0.86291,-0.56775,-0.53179,-0.71531,-0.92115,1.6343 1,-0.86291,-0.41485,-0.37591,-0.032475,0.63746,1.6343 1,-0.86291,-0.51997,-0.47983,-0.22084,0.021267,1.6343 1,-0.86291,-0.93089,-1.3632,-0.99786,3.2835,1.6343 1,-0.86291,-0.56775,-0.53179,-0.80361,-1.4286,1.6343 1,-0.86291,-0.7111,-0.66169,-0.4151,1.1087,1.6343 1,-0.86291,-0.72065,-0.58375,-0.30325,1.3986,1.6343 ================================================ FILE: data_csv/X_orig.txt ================================================ 1,8,307,130,3504,12,70 1,8,350,165,3693,11.5,70 1,8,318,150,3436,11,70 1,8,304,150,3433,12,70 1,8,302,140,3449,10.5,70 1,8,429,198,4341,10,70 1,8,454,220,4354,9,70 1,8,440,215,4312,8.5,70 1,8,455,225,4425,10,70 1,8,390,190,3850,8.5,70 1,8,383,170,3563,10,70 1,8,340,160,3609,8,70 1,8,400,150,3761,9.5,70 1,8,455,225,3086,10,70 1,4,113,95,2372,15,70 1,6,198,95,2833,15.5,70 1,6,199,97,2774,15.5,70 1,6,200,85,2587,16,70 1,4,97,88,2130,14.5,70 1,4,97,46,1835,20.5,70 1,4,110,87,2672,17.5,70 1,4,107,90,2430,14.5,70 1,4,104,95,2375,17.5,70 1,4,121,113,2234,12.5,70 1,6,199,90,2648,15,70 1,8,360,215,4615,14,70 1,8,307,200,4376,15,70 1,8,318,210,4382,13.5,70 1,8,304,193,4732,18.5,70 1,4,97,88,2130,14.5,71 1,4,140,90,2264,15.5,71 1,4,113,95,2228,14,71 1,6,232,100,2634,13,71 1,6,225,105,3439,15.5,71 1,6,250,100,3329,15.5,71 1,6,250,88,3302,15.5,71 1,6,232,100,3288,15.5,71 1,8,350,165,4209,12,71 1,8,400,175,4464,11.5,71 1,8,351,153,4154,13.5,71 1,8,318,150,4096,13,71 1,8,383,180,4955,11.5,71 1,8,400,170,4746,12,71 1,8,400,175,5140,12,71 1,6,258,110,2962,13.5,71 1,4,140,72,2408,19,71 1,6,250,100,3282,15,71 1,6,250,88,3139,14.5,71 1,4,122,86,2220,14,71 1,4,116,90,2123,14,71 1,4,79,70,2074,19.5,71 1,4,88,76,2065,14.5,71 1,4,71,65,1773,19,71 1,4,72,69,1613,18,71 1,4,97,60,1834,19,71 1,4,91,70,1955,20.5,71 1,4,113,95,2278,15.5,72 1,4,97.5,80,2126,17,72 1,4,97,54,2254,23.5,72 1,4,140,90,2408,19.5,72 1,4,122,86,2226,16.5,72 1,8,350,165,4274,12,72 1,8,400,175,4385,12,72 1,8,318,150,4135,13.5,72 1,8,351,153,4129,13,72 1,8,304,150,3672,11.5,72 1,8,429,208,4633,11,72 1,8,350,155,4502,13.5,72 1,8,350,160,4456,13.5,72 1,8,400,190,4422,12.5,72 1,3,70,97,2330,13.5,72 1,8,304,150,3892,12.5,72 1,8,307,130,4098,14,72 1,8,302,140,4294,16,72 1,8,318,150,4077,14,72 1,4,121,112,2933,14.5,72 1,4,121,76,2511,18,72 1,4,120,87,2979,19.5,72 1,4,96,69,2189,18,72 1,4,122,86,2395,16,72 1,4,97,92,2288,17,72 1,4,120,97,2506,14.5,72 1,4,98,80,2164,15,72 1,4,97,88,2100,16.5,72 1,8,350,175,4100,13,73 1,8,304,150,3672,11.5,73 1,8,350,145,3988,13,73 1,8,302,137,4042,14.5,73 1,8,318,150,3777,12.5,73 1,8,429,198,4952,11.5,73 1,8,400,150,4464,12,73 1,8,351,158,4363,13,73 1,8,318,150,4237,14.5,73 1,8,440,215,4735,11,73 1,8,455,225,4951,11,73 1,8,360,175,3821,11,73 1,6,225,105,3121,16.5,73 1,6,250,100,3278,18,73 1,6,232,100,2945,16,73 1,6,250,88,3021,16.5,73 1,6,198,95,2904,16,73 1,4,97,46,1950,21,73 1,8,400,150,4997,14,73 1,8,400,167,4906,12.5,73 1,8,360,170,4654,13,73 1,8,350,180,4499,12.5,73 1,6,232,100,2789,15,73 1,4,97,88,2279,19,73 1,4,140,72,2401,19.5,73 1,4,108,94,2379,16.5,73 1,3,70,90,2124,13.5,73 1,4,122,85,2310,18.5,73 1,6,155,107,2472,14,73 1,4,98,90,2265,15.5,73 1,8,350,145,4082,13,73 1,8,400,230,4278,9.5,73 1,4,68,49,1867,19.5,73 1,4,116,75,2158,15.5,73 1,4,114,91,2582,14,73 1,4,121,112,2868,15.5,73 1,8,318,150,3399,11,73 1,4,121,110,2660,14,73 1,6,156,122,2807,13.5,73 1,8,350,180,3664,11,73 1,6,198,95,3102,16.5,74 1,6,232,100,2901,16,74 1,6,250,100,3336,17,74 1,4,79,67,1950,19,74 1,4,122,80,2451,16.5,74 1,4,71,65,1836,21,74 1,4,140,75,2542,17,74 1,6,250,100,3781,17,74 1,6,258,110,3632,18,74 1,6,225,105,3613,16.5,74 1,8,302,140,4141,14,74 1,8,350,150,4699,14.5,74 1,8,318,150,4457,13.5,74 1,8,302,140,4638,16,74 1,8,304,150,4257,15.5,74 1,4,98,83,2219,16.5,74 1,4,79,67,1963,15.5,74 1,4,97,78,2300,14.5,74 1,4,76,52,1649,16.5,74 1,4,83,61,2003,19,74 1,4,90,75,2125,14.5,74 1,4,90,75,2108,15.5,74 1,4,116,75,2246,14,74 1,4,120,97,2489,15,74 1,4,108,93,2391,15.5,74 1,4,79,67,2000,16,74 1,6,225,95,3264,16,75 1,6,250,105,3459,16,75 1,6,250,72,3432,21,75 1,6,250,72,3158,19.5,75 1,8,400,170,4668,11.5,75 1,8,350,145,4440,14,75 1,8,318,150,4498,14.5,75 1,8,351,148,4657,13.5,75 1,6,231,110,3907,21,75 1,6,250,105,3897,18.5,75 1,6,258,110,3730,19,75 1,6,225,95,3785,19,75 1,6,231,110,3039,15,75 1,8,262,110,3221,13.5,75 1,8,302,129,3169,12,75 1,4,97,75,2171,16,75 1,4,140,83,2639,17,75 1,6,232,100,2914,16,75 1,4,140,78,2592,18.5,75 1,4,134,96,2702,13.5,75 1,4,90,71,2223,16.5,75 1,4,119,97,2545,17,75 1,6,171,97,2984,14.5,75 1,4,90,70,1937,14,75 1,6,232,90,3211,17,75 1,4,115,95,2694,15,75 1,4,120,88,2957,17,75 1,4,121,98,2945,14.5,75 1,4,121,115,2671,13.5,75 1,4,91,53,1795,17.5,75 1,4,107,86,2464,15.5,76 1,4,116,81,2220,16.9,76 1,4,140,92,2572,14.9,76 1,4,98,79,2255,17.7,76 1,4,101,83,2202,15.3,76 1,8,305,140,4215,13,76 1,8,318,150,4190,13,76 1,8,304,120,3962,13.9,76 1,8,351,152,4215,12.8,76 1,6,225,100,3233,15.4,76 1,6,250,105,3353,14.5,76 1,6,200,81,3012,17.6,76 1,6,232,90,3085,17.6,76 1,4,85,52,2035,22.2,76 1,4,98,60,2164,22.1,76 1,4,90,70,1937,14.2,76 1,4,91,53,1795,17.4,76 1,6,225,100,3651,17.7,76 1,6,250,78,3574,21,76 1,6,250,110,3645,16.2,76 1,6,258,95,3193,17.8,76 1,4,97,71,1825,12.2,76 1,4,85,70,1990,17,76 1,4,97,75,2155,16.4,76 1,4,140,72,2565,13.6,76 1,4,130,102,3150,15.7,76 1,8,318,150,3940,13.2,76 1,4,120,88,3270,21.9,76 1,6,156,108,2930,15.5,76 1,6,168,120,3820,16.7,76 1,8,350,180,4380,12.1,76 1,8,350,145,4055,12,76 1,8,302,130,3870,15,76 1,8,318,150,3755,14,76 1,4,98,68,2045,18.5,77 1,4,111,80,2155,14.8,77 1,4,79,58,1825,18.6,77 1,4,122,96,2300,15.5,77 1,4,85,70,1945,16.8,77 1,8,305,145,3880,12.5,77 1,8,260,110,4060,19,77 1,8,318,145,4140,13.7,77 1,8,302,130,4295,14.9,77 1,6,250,110,3520,16.4,77 1,6,231,105,3425,16.9,77 1,6,225,100,3630,17.7,77 1,6,250,98,3525,19,77 1,8,400,180,4220,11.1,77 1,8,350,170,4165,11.4,77 1,8,400,190,4325,12.2,77 1,8,351,149,4335,14.5,77 1,4,97,78,1940,14.5,77 1,4,151,88,2740,16,77 1,4,97,75,2265,18.2,77 1,4,140,89,2755,15.8,77 1,4,98,63,2051,17,77 1,4,98,83,2075,15.9,77 1,4,97,67,1985,16.4,77 1,4,97,78,2190,14.1,77 1,6,146,97,2815,14.5,77 1,4,121,110,2600,12.8,77 1,3,80,110,2720,13.5,77 1,4,90,48,1985,21.5,78 1,4,98,66,1800,14.4,78 1,4,78,52,1985,19.4,78 1,4,85,70,2070,18.6,78 1,4,91,60,1800,16.4,78 1,8,260,110,3365,15.5,78 1,8,318,140,3735,13.2,78 1,8,302,139,3570,12.8,78 1,6,231,105,3535,19.2,78 1,6,200,95,3155,18.2,78 1,6,200,85,2965,15.8,78 1,4,140,88,2720,15.4,78 1,6,225,100,3430,17.2,78 1,6,232,90,3210,17.2,78 1,6,231,105,3380,15.8,78 1,6,200,85,3070,16.7,78 1,6,225,110,3620,18.7,78 1,6,258,120,3410,15.1,78 1,8,305,145,3425,13.2,78 1,6,231,165,3445,13.4,78 1,8,302,139,3205,11.2,78 1,8,318,140,4080,13.7,78 1,4,98,68,2155,16.5,78 1,4,134,95,2560,14.2,78 1,4,119,97,2300,14.7,78 1,4,105,75,2230,14.5,78 1,4,134,95,2515,14.8,78 1,4,156,105,2745,16.7,78 1,4,151,85,2855,17.6,78 1,4,119,97,2405,14.9,78 1,5,131,103,2830,15.9,78 1,6,163,125,3140,13.6,78 1,4,121,115,2795,15.7,78 1,6,163,133,3410,15.8,78 1,4,89,71,1990,14.9,78 1,4,98,68,2135,16.6,78 1,6,231,115,3245,15.4,79 1,6,200,85,2990,18.2,79 1,4,140,88,2890,17.3,79 1,6,232,90,3265,18.2,79 1,6,225,110,3360,16.6,79 1,8,305,130,3840,15.4,79 1,8,302,129,3725,13.4,79 1,8,351,138,3955,13.2,79 1,8,318,135,3830,15.2,79 1,8,350,155,4360,14.9,79 1,8,351,142,4054,14.3,79 1,8,267,125,3605,15,79 1,8,360,150,3940,13,79 1,4,89,71,1925,14,79 1,4,86,65,1975,15.2,79 1,4,98,80,1915,14.4,79 1,4,121,80,2670,15,79 1,5,183,77,3530,20.1,79 1,8,350,125,3900,17.4,79 1,4,141,71,3190,24.8,79 1,8,260,90,3420,22.2,79 1,4,105,70,2200,13.2,79 1,4,105,70,2150,14.9,79 1,4,85,65,2020,19.2,79 1,4,91,69,2130,14.7,79 1,4,151,90,2670,16,79 1,6,173,115,2595,11.3,79 1,6,173,115,2700,12.9,79 1,4,151,90,2556,13.2,79 1,4,98,76,2144,14.7,80 1,4,89,60,1968,18.8,80 1,4,98,70,2120,15.5,80 1,4,86,65,2019,16.4,80 1,4,151,90,2678,16.5,80 1,4,140,88,2870,18.1,80 1,4,151,90,3003,20.1,80 1,6,225,90,3381,18.7,80 1,4,97,78,2188,15.8,80 1,4,134,90,2711,15.5,80 1,4,120,75,2542,17.5,80 1,4,119,92,2434,15,80 1,4,108,75,2265,15.2,80 1,4,86,65,2110,17.9,80 1,4,156,105,2800,14.4,80 1,4,85,65,2110,19.2,80 1,4,90,48,2085,21.7,80 1,4,90,48,2335,23.7,80 1,5,121,67,2950,19.9,80 1,4,146,67,3250,21.8,80 1,4,91,67,1850,13.8,80 1,4,97,67,2145,18,80 1,4,89,62,1845,15.3,80 1,6,168,132,2910,11.4,80 1,3,70,100,2420,12.5,80 1,4,122,88,2500,15.1,80 1,4,107,72,2290,17,80 1,4,135,84,2490,15.7,81 1,4,151,84,2635,16.4,81 1,4,156,92,2620,14.4,81 1,6,173,110,2725,12.6,81 1,4,135,84,2385,12.9,81 1,4,79,58,1755,16.9,81 1,4,86,64,1875,16.4,81 1,4,81,60,1760,16.1,81 1,4,97,67,2065,17.8,81 1,4,85,65,1975,19.4,81 1,4,89,62,2050,17.3,81 1,4,91,68,1985,16,81 1,4,105,63,2215,14.9,81 1,4,98,65,2045,16.2,81 1,4,98,65,2380,20.7,81 1,4,105,74,2190,14.2,81 1,4,107,75,2210,14.4,81 1,4,108,75,2350,16.8,81 1,4,119,100,2615,14.8,81 1,4,120,74,2635,18.3,81 1,4,141,80,3230,20.4,81 1,6,145,76,3160,19.6,81 1,6,168,116,2900,12.6,81 1,6,146,120,2930,13.8,81 1,6,231,110,3415,15.8,81 1,8,350,105,3725,19,81 1,6,200,88,3060,17.1,81 1,6,225,85,3465,16.6,81 1,4,112,88,2605,19.6,82 1,4,112,88,2640,18.6,82 1,4,112,88,2395,18,82 1,4,112,85,2575,16.2,82 1,4,135,84,2525,16,82 1,4,151,90,2735,18,82 1,4,140,92,2865,16.4,82 1,4,105,74,1980,15.3,82 1,4,91,68,2025,18.2,82 1,4,91,68,1970,17.6,82 1,4,105,63,2125,14.7,82 1,4,98,70,2125,17.3,82 1,4,120,88,2160,14.5,82 1,4,107,75,2205,14.5,82 1,4,108,70,2245,16.9,82 1,4,91,67,1965,15,82 1,4,91,67,1965,15.7,82 1,4,91,67,1995,16.2,82 1,6,181,110,2945,16.4,82 1,6,262,85,3015,17,82 1,4,156,92,2585,14.5,82 1,6,232,112,2835,14.7,82 1,4,144,96,2665,13.9,82 1,4,135,84,2370,13,82 1,4,151,90,2950,17.3,82 1,4,140,86,2790,15.6,82 1,4,97,52,2130,24.6,82 1,4,135,84,2295,11.6,82 1,4,120,79,2625,18.6,82 1,4,119,82,2720,19.4,82 ================================================ FILE: data_csv/legend.txt ================================================ chevrolet chevelle malibu buick skylark 320 plymouth satellite amc rebel sst ford torino ford galaxie 500 chevrolet impala plymouth fury iii pontiac catalina amc ambassador dpl dodge challenger se plymouth 'cuda 340 chevrolet monte carlo buick estate wagon (sw) toyota corona mark ii plymouth duster amc hornet ford maverick datsun pl510 volkswagen 1131 deluxe sedan peugeot 504 audi 100 ls saab 99e bmw 2002 amc gremlin ford f250 chevy c20 dodge d200 hi 1200d datsun pl510 chevrolet vega 2300 toyota corona amc gremlin plymouth satellite custom chevrolet chevelle malibu ford torino 500 amc matador chevrolet impala pontiac catalina brougham ford galaxie 500 plymouth fury iii dodge monaco (sw) ford country squire (sw) pontiac safari (sw) amc hornet sportabout (sw) chevrolet vega (sw) pontiac firebird ford mustang mercury capri 2000 opel 1900 peugeot 304 fiat 124b toyota corolla 1200 datsun 1200 volkswagen model 111 plymouth cricket toyota corona hardtop dodge colt hardtop volkswagen type 3 chevrolet vega ford pinto runabout chevrolet impala pontiac catalina plymouth fury iii ford galaxie 500 amc ambassador sst mercury marquis buick lesabre custom oldsmobile delta 88 royale chrysler newport royal mazda rx2 coupe amc matador (sw) chevrolet chevelle concours (sw) ford gran torino (sw) plymouth satellite custom (sw) volvo 145e (sw) volkswagen 411 (sw) peugeot 504 (sw) renault 12 (sw) ford pinto (sw) datsun 510 (sw) toyouta corona mark ii (sw) dodge colt (sw) toyota corolla 1600 (sw) buick century 350 amc matador chevrolet malibu ford gran torino dodge coronet custom mercury marquis brougham chevrolet caprice classic ford ltd plymouth fury gran sedan chrysler new yorker brougham buick electra 225 custom amc ambassador brougham plymouth valiant chevrolet nova custom amc hornet ford maverick plymouth duster volkswagen super beetle chevrolet impala ford country plymouth custom suburb oldsmobile vista cruiser amc gremlin toyota carina chevrolet vega datsun 610 maxda rx3 ford pinto mercury capri v6 fiat 124 sport coupe chevrolet monte carlo s pontiac grand prix fiat 128 opel manta audi 100ls volvo 144ea dodge dart custom saab 99le toyota mark ii oldsmobile omega plymouth duster amc hornet chevrolet nova datsun b210 ford pinto toyota corolla 1200 chevrolet vega chevrolet chevelle malibu classic amc matador plymouth satellite sebring ford gran torino buick century luxus (sw) dodge coronet custom (sw) ford gran torino (sw) amc matador (sw) audi fox volkswagen dasher opel manta toyota corona datsun 710 dodge colt fiat 128 fiat 124 tc honda civic subaru fiat x1.9 plymouth valiant custom chevrolet nova mercury monarch ford maverick pontiac catalina chevrolet bel air plymouth grand fury ford ltd buick century chevroelt chevelle malibu amc matador plymouth fury buick skyhawk chevrolet monza 2+2 ford mustang ii toyota corolla ford pinto amc gremlin pontiac astro toyota corona volkswagen dasher datsun 710 ford pinto volkswagen rabbit amc pacer audi 100ls peugeot 504 volvo 244dl saab 99le honda civic cvcc fiat 131 opel 1900 capri ii dodge colt renault 12tl chevrolet chevelle malibu classic dodge coronet brougham amc matador ford gran torino plymouth valiant chevrolet nova ford maverick amc hornet chevrolet chevette chevrolet woody vw rabbit honda civic dodge aspen se ford granada ghia pontiac ventura sj amc pacer d/l volkswagen rabbit datsun b-210 toyota corolla ford pinto volvo 245 plymouth volare premier v8 peugeot 504 toyota mark ii mercedes-benz 280s cadillac seville chevy c10 ford f108 dodge d100 honda accord cvcc buick opel isuzu deluxe renault 5 gtl plymouth arrow gs datsun f-10 hatchback chevrolet caprice classic oldsmobile cutlass supreme dodge monaco brougham mercury cougar brougham chevrolet concours buick skylark plymouth volare custom ford granada pontiac grand prix lj chevrolet monte carlo landau chrysler cordoba ford thunderbird volkswagen rabbit custom pontiac sunbird coupe toyota corolla liftback ford mustang ii 2+2 chevrolet chevette dodge colt m/m subaru dl volkswagen dasher datsun 810 bmw 320i mazda rx-4 volkswagen rabbit custom diesel ford fiesta mazda glc deluxe datsun b210 gx honda civic cvcc oldsmobile cutlass salon brougham dodge diplomat mercury monarch ghia pontiac phoenix lj chevrolet malibu ford fairmont (auto) ford fairmont (man) plymouth volare amc concord buick century special mercury zephyr dodge aspen amc concord d/l chevrolet monte carlo landau buick regal sport coupe (turbo) ford futura dodge magnum xe chevrolet chevette toyota corona datsun 510 dodge omni toyota celica gt liftback plymouth sapporo oldsmobile starfire sx datsun 200-sx audi 5000 volvo 264gl saab 99gle peugeot 604sl volkswagen scirocco honda accord lx pontiac lemans v6 mercury zephyr 6 ford fairmont 4 amc concord dl 6 dodge aspen 6 chevrolet caprice classic ford ltd landau mercury grand marquis dodge st. regis buick estate wagon (sw) ford country squire (sw) chevrolet malibu classic (sw) chrysler lebaron town @ country (sw) vw rabbit custom maxda glc deluxe dodge colt hatchback custom amc spirit dl mercedes benz 300d cadillac eldorado peugeot 504 oldsmobile cutlass salon brougham plymouth horizon plymouth horizon tc3 datsun 210 fiat strada custom buick skylark limited chevrolet citation oldsmobile omega brougham pontiac phoenix vw rabbit toyota corolla tercel chevrolet chevette datsun 310 chevrolet citation ford fairmont amc concord dodge aspen audi 4000 toyota corona liftback mazda 626 datsun 510 hatchback toyota corolla mazda glc dodge colt datsun 210 vw rabbit c (diesel) vw dasher (diesel) audi 5000s (diesel) mercedes-benz 240d honda civic 1500 gl subaru dl vokswagen rabbit datsun 280-zx mazda rx-7 gs triumph tr7 coupe honda accord plymouth reliant buick skylark dodge aries wagon (sw) chevrolet citation plymouth reliant toyota starlet plymouth champ honda civic 1300 subaru datsun 210 mpg toyota tercel mazda glc 4 plymouth horizon 4 ford escort 4w ford escort 2h volkswagen jetta honda prelude toyota corolla datsun 200sx mazda 626 peugeot 505s turbo diesel volvo diesel toyota cressida datsun 810 maxima buick century oldsmobile cutlass ls ford granada gl chrysler lebaron salon chevrolet cavalier chevrolet cavalier wagon chevrolet cavalier 2-door pontiac j2000 se hatchback dodge aries se pontiac phoenix ford fairmont futura volkswagen rabbit l mazda glc custom l mazda glc custom plymouth horizon miser mercury lynx l nissan stanza xe honda accord toyota corolla honda civic honda civic (auto) datsun 310 gx buick century limited oldsmobile cutlass ciera (diesel) chrysler lebaron medallion ford granada l toyota celica gt dodge charger 2.2 chevrolet camaro ford mustang gl vw pickup dodge rampage ford ranger chevy s-10 ================================================ FILE: data_csv/readme.txt ================================================ ___Data information___ - The output we wish to predict is in "y": y: miles per gallon - Each row in "X" contains seven numbers. These numbers are scaled and should be used for your experiments. The original numbers are in "X_orig". The 7 columns of "X" correspond to: x1: intercept term x2: number of cylinders x3: displacement x4: horsepower x5: weight x6: acceleration x7: model year - "legend" contains car name for each entry of y and row of X - "X_orig" contains the original, unscaled numbers for those interested. This matrix is not necessary for completing the homework. ================================================ FILE: data_csv/y.txt ================================================ 18 15 18 16 17 15 14 14 14 15 15 14 15 14 24 22 18 21 27 26 25 24 25 26 21 10 10 11 9 27 28 25 19 16 17 19 18 14 14 14 14 12 13 13 18 22 19 18 23 28 30 30 31 35 27 26 24 25 23 20 21 13 14 15 14 17 11 13 12 13 19 15 13 13 14 18 22 21 26 22 28 23 28 27 13 14 13 14 15 12 13 13 14 13 12 13 18 16 18 18 23 26 11 12 13 12 18 20 21 22 18 19 21 26 15 16 29 24 20 19 15 24 20 11 20 19 15 31 26 32 25 16 16 18 16 13 14 14 14 29 26 26 31 32 28 24 26 24 26 31 19 18 15 15 16 15 16 14 17 16 15 18 21 20 13 29 23 20 23 24 25 24 18 29 19 23 23 22 25 33 28 25 25 26 27 17.5 16 15.5 14.5 22 22 24 22.5 29 24.5 29 33 20 18 18.5 17.5 29.5 32 28 26.5 20 13 19 19 16.5 16.5 13 13 13 31.5 30 36 25.5 33.5 17.5 17 15.5 15 17.5 20.5 19 18.5 16 15.5 15.5 16 29 24.5 26 25.5 30.5 33.5 30 30.5 22 21.5 21.5 43.1 36.1 32.8 39.4 36.1 19.9 19.4 20.2 19.2 20.5 20.2 25.1 20.5 19.4 20.6 20.8 18.6 18.1 19.2 17.7 18.1 17.5 30 27.5 27.2 30.9 21.1 23.2 23.8 23.9 20.3 17 21.6 16.2 31.5 29.5 21.5 19.8 22.3 20.2 20.6 17 17.6 16.5 18.2 16.9 15.5 19.2 18.5 31.9 34.1 35.7 27.4 25.4 23 27.2 23.9 34.2 34.5 31.8 37.3 28.4 28.8 26.8 33.5 41.5 38.1 32.1 37.2 28 26.4 24.3 19.1 34.3 29.8 31.3 37 32.2 46.6 27.9 40.8 44.3 43.4 36.4 30 44.6 33.8 29.8 32.7 23.7 35 32.4 27.2 26.6 25.8 23.5 30 39.1 39 35.1 32.3 37 37.7 34.1 34.7 34.4 29.9 33 33.7 32.4 32.9 31.6 28.1 30.7 25.4 24.2 22.4 26.6 20.2 17.6 28 27 34 31 29 27 24 36 37 31 38 36 36 36 34 38 32 38 25 38 26 22 32 36 27 27 44 32 28 31 ================================================ FILE: financial_engineering/go_here_instead.txt ================================================ https://github.com/lazyprogrammer/financial_engineering ================================================ FILE: hmm_class/__init__.py ================================================ ================================================ FILE: hmm_class/coin_data.txt ================================================ THTHTHHHTTTTTHTHTHTHTTHHHHTTTH HHHHHHHHHTTHHTHHTTTTTHTTTTHTHT TTHHTTHTTTHTTTHHTTTTHTHHTHTHTT THHHTHHHHTHHHTTHTTTTHHTHHTHTHH HTTHHTTTTTHTHTHTHTHTTTTHHTTHHH THHTTHHHTHHHHHTTHTHTTHHHHHTHTT THTTHTTHTHHHHTHHTHTTTHTTTTHHTT HTTHTHHTTHTTTHHHTHTHHHHHTHTHHH TTHTTTTTTHTHTHHTTHTHTHTHTTHTTT THHTHHHHTHTHTTHHTTTHTHHHTHHTHT TTHHTTHTTHHTHTHTHTHTHTTHTHHTTH HTHTHTHTHHTTHTTHTHTHHTHTHTHTTT TTTHHTTTHHHTTHTTHTHTHTHTHHTHHT TTHHHTHHHHHHTHHTHHHHHHTHTHTTTT TTHTTTTTTTTTTHTHHHTHHHHHHHTHHH HHHTTHTTTTTHTTTHTHHTTHTTHTTHTH HHTHTHHHHHTTHTTHTTHHHHTTTHHHTT THTTTHHTHTTHTHTHHTTHHTHHTHTHTH THTTTHTHHTTTTHTTHTHHHHTTHHTTTT TTTTTTHTTTTHTTHTTHHTHHTHHTHTHT HHHTTTTTTHTHTHHHHTTTHHTTTHHTHT HTHTTTTTTHTTTHHHTTTTTHHTHTHHTT TTTHTHHHTTTHTHHHHHTHTTHTHHTTTH HHHHTTHHTTTTTTTTHHTHTHTTHTTTHH HTHHHTTHTTHTHTHTTTHTTHHTTTHTHT TTTTTTHTHTHTHHTTHTHTTHHTTHTHHT HTTTHTHHTHHHHTHTHTHHHTHHHTTTHH THHTTTTHTHTHTTTHTTTHTTHTTTTHTH TTTTTTTHTTTHHTHTTHHTHHTTHTTTHT HTHTHTTTTTHHTTHTHHHTHTTHHTHHHT HTTTHHTTHTTTTTTTTTTHHHHHTTHTHH HTHTTHTHTTHTTHHTTHTTTTTTTTHTHH THTTHTHTTHTTHHTTTHHHTHHHTTHTHT TTHTTHTTTHTHHTTHHHHTHTTHTHTTTT THTTTTTHTTHHHTHHHHHTTHTHTHTHTH TTHTHTHHHHTTTHHTHHHHHHTTHTHHHT TTHTHTTTTTTTHTHTTHHTHTHHHTHHTT HHTHTTTTHTHTTTHHHTHHHTHTHTTTHT HTTTTTTHTTHTTTHHTTHHTTTTHTHHTH HHTHHHTHHTHHHHTTTHHHTHHTHTTTHT HTTTHTHHHTTHTHHHTHHTTHTTTTHHTT TTHHTHTTTTHTTTHTTHTHTTHTHTTHTT HHHHTTTHHTTTTHTTTTTHHHHTHHHTTT THTTTTHTHHHTHTHTHTHTHTHTTTHTHT HHTTHHTHTHTTHTHTTTTTTHHTHTTTTT HTTTTTHHTHTTHHTTHTHTTTHHHHTHTH HTHTHTHHTHHTHHHTTTTHHTHTHTHHTT HTTHTHHHHTTHHHHTHTTHTTHHTTTHHT TTTHTHTTHTTHTTTHHTTTTHTHHTTHTH THTHTHTTHTHTTHHTHTTTHHTTTTTTHT ================================================ FILE: hmm_class/edgar_allan_poe.txt ================================================ LO! Death hath rear'd himself a throne In a strange city, all alone, Far down within the dim west Where the good, and the bad, and the worst, and the best, Have gone to their eternal rest.   There shrines, and palaces, and towers Are not like any thing of ours Oh no! O no! ours never loom To heaven with that ungodly gloom! Time-eaten towers that tremble not! Resemble nothing that is ours. Around, by lifting winds forgot, Resignedly beneath the sky The melancholy waters lie.   No holy rays from heaven come down On the long night-time of that town, But light from out the lurid sea Streams up the turrets silently Up thrones up long-forgotten bowers Of scultur'd ivy and stone flowers Up domes up spires up kingly halls Up fanes up Babylon-like walls Up many a melancholy shrine Whose entablatures intertwine The mask the viol and the vine.   There open temples open graves Are on a level with the waves But not the riches there that lie In each idol's diamond eye, Not the gaily-jewell'd dead Tempt the waters from their bed: For no ripples curl, alas! Along that wilderness of glass No swellings hint that winds may be Upon a far-off happier sea: So blend the turrets and shadows there That all seem pendulous in air, While from the high towers of the town Death looks gigantically down.   But lo! a stir is in the air! The wave there is a ripple there! As if the towers had thrown aside, In slightly sinking, the dull tide As if the turret-tops had given A vacuum in the filmy heaven. The waves have now a redder glow The very hours are breathing low And when, amid no earthly moans, Down, down, that town shall settle hence, All Hades, from a thousand thrones, Shall do it reverence, And Death to some more happy clime Shall give his undivided time. The skies they were ashen and sober; The leaves they were crisped and sere - The leaves they were withering and sere; It was night in the lonesome October Of my most immemorial year; It was hard by the dim lake of Auber, In the misty mid region of Weir - It was down by the dank tarn of Auber, In the ghoul-haunted woodland of Weir. Here once, through an alley Titanic, Of cypress, I roamed with my Soul - Of cypress, with Psyche, my Soul. These were days when my heart was volcanic As the scoriac rivers that roll - As the lavas that restlessly roll Their sulphurous currents down Yaanek In the ultimate climes of the pole - That groan as they roll down Mount Yaanek In the realms of the boreal pole. Our talk had been serious and sober, But our thoughts they were palsied and sere - Our memories were treacherous and sere, - For we knew not the month was October, And we marked not the night of the year - (Ah, night of all nights in the year!) We noted not the dim lake of Auber - (Though once we had journey down here), Remembered not the dank tarn of Auber, Nor the ghoul-haunted woodland of Weir. And now, as the night was senescent, And star-dials pointed to morn - As the star-dials hinted of morn - At the end of our path a liquescent And nebulous lustre was born, Out of which a miraculous crescent Arose with a duplicate horn - Astarte's bediamonded crescent Distinct with its duplicate horn. And I said - "She is warmer than Dian: She rolls through an ether of sighs - She revels in a region of sighs: She has seen that the tears are not dry on These cheeks, where the worm never dies, And has come past the stars of the Lion To point us the path to the skies - To the Lethean peace of the skies - Come up, in despite of the Lion, To shine on us with her bright eyes - Come up through the lair of the Lion, With love in her luminous eyes." But Psyche, uplifting her finger, Said - "Sadly this star I mistrust - Her pallor I strangely mistrust: - Oh, hasten! - oh, let us not linger! Oh, fly! - let us fly! - for we must." In terror she spoke, letting sink her Wings until they trailed in the dust - In agony sobbed, letting sink her Plumes till they trailed in the dust - Till they sorrowfully trailed in the dust. I replied - "This is nothing but dreaming: Let us on by this tremulous light! Let us bathe in this crystalline light! Its Sybilic splendor is beaming With Hope and in Beauty to-night! - See! - it flickers up the sky through the night! Ah, we safely may trust to its gleaming, And be sure it will lead us aright - We safely may trust to a gleaming, That cannot but guide us aright, Since it flickers up to Heaven through the night." Thus I pacified Psyche and kissed her, And tempted her out of her gloom - And conquered her scruples and gloom; And we passed to the end of the vista, But were stopped by the door of a tomb - By the door of a legended tomb; And I said - "What is written, sweet sister, On the door of this legended tomb?" She replied - "Ulalume - Ulalume - ‘Tis the vault of thy lost Ulalume!" Then my heart it grew ashen and sober As the leaves that were crisped and sere - As the leaves that were withering and sere, And I cried - "It was surely October On this very night of last year That I journeyed - I journeyed down here - That I brought a dread burden down here! On this night of all nights in the year, Ah, what demon has tempted me here? Well I know, now, this dim lake of Auber - This misty mid region of Weir - Well I know, now, this dank tarn of Auber, - This ghoul-haunted woodland of Weir." Wreathed in myrtle, my sword I'll conceal Like those champions devoted and brave, When they plunged in the tyrant their steel, And to Athens deliverance gave. Beloved heroes! your deathless souls roam In the joy breathing isles of the blest; Where the mighty of old have their home - Where Achilles and Diomed rest. In fresh myrtle my blade I'll entwine, Like Harmodious, the gallant and good, When he made at the tutelar shrine A libation of Tyranny's blood. Ye deliverers of Athens from shame! Ye avengers of Liberty's wrongs! Endless ages shall cherish your fame Embalmed in their echoing songs! Of all who hail thy presence as the morning- Of all to whom thine absence is the night- The blotting utterly from out high heaven The sacred sun- of all who, weeping, bless thee Hourly for hope- for life- ah! above all, For the resurrection of deep-buried faith In Truth- in Virtue- in Humanity- Of all who, on Despair's unhallowed bed Lying down to die, have suddenly arisen At thy soft-murmured words, 'Let there be light!' At the soft-murmured words that were fulfilled In the seraphic glancing of thine eyes- Of all who owe thee most- whose gratitude Nearest resembles worship- oh, remember The truest- the most fervently devoted, And think that these weak lines are written by him- By him who, as he pens them, thrills to think His spirit is communing with an angel's. Thou wouldst be loved?- then let thy heart From its present pathway part not! Being everything which now thou art, Be nothing which thou art not. So with the world thy gentle ways, Thy grace, thy more than beauty, Shall be an endless theme of praise, And love- a simple duty. When from your gems of thought I turn To those pure orbs, your heart to learn, I scarce know which to prize most high The bright i-dea, or the bright dear-eye. Of all who hail thy presence as the morning- Of all to whom thine absence is the night- The blotting utterly from out high heaven The sacred sun- of all who, weeping, bless thee Hourly for hope- for life- ah! above all, For the resurrection of deep-buried faith In Truth- in Virtue- in Humanity- Of all who, on Despair's unhallowed bed Lying down to die, have suddenly arisen At thy soft-murmured words, "Let there be light!" At the soft-murmured words that were fulfilled In the seraphic glancing of thine eyes- Of all who owe thee most- whose gratitude Nearest resembles worship- oh, remember The truest- the most fervently devoted, And think that these weak lines are written by him- By him who, as he pens them, thrills to think His spirit is communing with an angel's. Fair isle, that from the fairest of all flowers, Thy gentlest of all gentle names dost take! How many memories of what radiant hours At sight of thee and thine at once awake! How many scenes of what departed bliss! How many thoughts of what entombed hopes! How many visions of a maiden that is No more- no more upon thy verdant slopes! No more! alas, that magical sad sound Transforming all! Thy charms shall please no more- Thy memory no more! Accursed ground Henceforth I hold thy flower-enameled shore, O hyacinthine isle! O purple Zante! "Isola d'oro! Fior di Levante!" O! I care not that my earthly lot Hath little of Earth in it, That years of love have been forgot In the fever of a minute: I heed not that the desolate Are happier, sweet, than I, But that you meddle with my fate Who am a passer by. It is not that my founts of bliss Are gushing- strange! with tears- Or that the thrill of a single kiss Hath palsied many years- 'Tis not that the flowers of twenty springs Which have wither'd as they rose Lie dead on my heart-strings With the weight of an age of snows. Not that the grass- O! may it thrive! On my grave is growing or grown- But that, while I am dead yet alive I cannot be, lady, alone. Sancta Maria! turn thine eyes - Upon the sinner's sacrifice, Of fervent prayer and humble love, From thy holy throne above. At morn - at noon - at twilight dim - Maria! thou hast heard my hymn! In joy and wo - in good and ill - Mother of God, be with me still! When the Hours flew brightly by, And not a cloud obscured the sky, My soul, lest it should truant be, Thy grace did guide to thine and thee; Now, when storms of Fate o'ercast Darkly my Present and my Past, Let my Future radiant shine With sweet hopes of thee and thine! The bells! ah, the bells! The little silver bells! How fairy-like a melody there floats From their throats. From their merry little throats From the silver, tinkling throats Of the bells, bells, bells Of the bells! The bells! ah, the bells! The heavy iron bells! How horrible a monody there floats From their throats From their deep-toned throats From their melancholy throats! How I shudder at the notes Of the bells, bells, bells Of the bells! How often we forget all time, when lone Admiring Nature's universal throne; Her woods- her wilds- her mountains- the intense Reply of HERS to OUR intelligence! In youth have I known one with whom the Earth In secret communing held- as he with it, In daylight, and in beauty from his birth: Whose fervid, flickering torch of life was lit From the sun and stars, whence he had drawn forth A passionate light- such for his spirit was fit- And yet that spirit knew not, in the hour Of its own fervor what had o'er it power. Perhaps it may be that my mind is wrought To a fever by the moonbeam that hangs o'er, But I will half believe that wild light fraught With more of sovereignty than ancient lore Hath ever told- or is it of a thought The unembodied essence, and no more, That with a quickening spell doth o'er us pass As dew of the night-time o'er the summer grass? Doth o'er us pass, when, as th' expanding eye To the loved object- so the tear to the lid Will start, which lately slept in apathy? And yet it need not be- (that object) hid From us in life- but common- which doth lie Each hour before us- but then only, bid With a strange sound, as of a harp-string broken, To awake us- 'Tis a symbol and a token Of what in other worlds shall be- and given In beauty by our God, to those alone Who otherwise would fall from life and Heaven Drawn by their heart's passion, and that tone, That high tone of the spirit which hath striven, Tho' not with Faith- with godliness- whose throne With desperate energy 't hath beaten down; Wearing its own deep feeling as a crown. Not long ago, the writer of these lines, In the mad pride of intellectuality, Maintained "the power of words"- denied that ever A thought arose within the human brain Beyond the utterance of the human tongue: And now, as if in mockery of that boast, Two words- two foreign soft dissyllables- Italian tones, made only to be murmured By angels dreaming in the moonlit "dew That hangs like chains of pearl on Hermon hill," Have stirred from out the abysses of his heart, Unthought-like thoughts that are the souls of thought, Richer, far wilder, far diviner visions Than even seraph harper, Israfel, (Who has "the sweetest voice of all God's creatures,") Could hope to utter. And I! my spells are broken. The pen falls powerless from my shivering hand. With thy dear name as text, though bidden by thee, I cannot write- I cannot speak or think- Alas, I cannot feel; for 'tis not feeling, This standing motionless upon the golden Threshold of the wide-open gate of dreams. Gazing, entranced, adown the gorgeous vista, And thrilling as I see, upon the right, Upon the left, and all the way along, Amid empurpled vapors, far away To where the prospect terminates- thee only. Beloved! amid the earnest woes That crowd around my earthly path- (Drear path, alas! where grows Not even one lonely rose)- My soul at least a solace hath In dreams of thee, and therein knows An Eden of bland repose. And thus thy memory is to me Like some enchanted far-off isle In some tumultuous sea- Some ocean throbbing far and free With storms- but where meanwhile Serenest skies continually Just o'er that one bright island smile. I saw thee once- once only- years ago: I must not say how many- but not many. It was a July midnight; and from out A full-orbed moon, that, like thine own soul, soaring, Sought a precipitate pathway up through heaven, There fell a silvery-silken veil of light, With quietude, and sultriness, and slumber, Upon the upturned faces of a thousand Roses that grew in an enchanted garden, Where no wind dared to stir, unless on tiptoe- Fell on the upturn'd faces of these roses That gave out, in return for the love-light, Their odorous souls in an ecstatic death- Fell on the upturn'd faces of these roses That smiled and died in this parterre, enchanted By thee, and by the poetry of thy presence. Clad all in white, upon a violet bank I saw thee half reclining; while the moon Fell on the upturn'd faces of the roses, And on thine own, upturn'd- alas, in sorrow! Was it not Fate, that, on this July midnight- Was it not Fate, (whose name is also Sorrow,) That bade me pause before that garden-gate, To breathe the incense of those slumbering roses? No footstep stirred: the hated world an slept, Save only thee and me. (Oh, Heaven!- oh, God! How my heart beats in coupling those two words!) Save only thee and me. I paused- I looked- And in an instant all things disappeared. (Ah, bear in mind this garden was enchanted!) The pearly lustre of the moon went out: The mossy banks and the meandering paths, The happy flowers and the repining trees, Were seen no more: the very roses' odors Died in the arms of the adoring airs. All- all expired save thee- save less than thou: Save only the divine light in thine eyes- Save but the soul in thine uplifted eyes. I saw but them- they were the world to me! I saw but them- saw only them for hours, Saw only them until the moon went down. What wild heart-histories seemed to he enwritten Upon those crystalline, celestial spheres! How dark a woe, yet how sublime a hope! How silently serene a sea of pride! How daring an ambition; yet how deep- How fathomless a capacity for love! But now, at length, dear Dian sank from sight, Into a western couch of thunder-cloud; And thou, a ghost, amid the entombing trees Didst glide away. Only thine eyes remained; They would not go- they never yet have gone; Lighting my lonely pathway home that night, They have not left me (as my hopes have) since; They follow me- they lead me through the years. They are my ministers- yet I their slave. Their office is to illumine and enkindle- My duty, to be saved by their bright light, And purified in their electric fire, And sanctified in their elysian fire. They fill my soul with Beauty (which is Hope), And are far up in Heaven- the stars I kneel to In the sad, silent watches of my night; While even in the meridian glare of day I see them still- two sweetly scintillant Venuses, unextinguished by the sun! The bowers whereat, in dreams, I see The wantonest singing birds, Are lips- and all thy melody Of lip-begotten words- Thine eyes, in Heaven of heart enshrined, Then desolately fall, O God! on my funereal mind Like starlight on a pall- Thy heart- thy heart!- I wake and sigh, And sleep to dream till day Of the truth that gold can never buy- Of the baubles that it may. In Heaven a spirit doth dwell "Whose heart-strings are a lute"; None sing so wildly well As the angel Israfel, And the giddy stars (so legends tell), Ceasing their hymns, attend the spell Of his voice, all mute. Tottering above In her highest noon, The enamored moon Blushes with love, While, to listen, the red levin (With the rapid Pleiads, even, Which were seven,) Pauses in Heaven. And they say (the starry choir And the other listening things) That Israfeli's fire Is owing to that lyre By which he sits and sings- The trembling living wire Of those unusual strings. But the skies that angel trod, Where deep thoughts are a duty- Where Love's a grown-up God- Where the Houri glances are Imbued with all the beauty Which we worship in a star. Therefore thou art not wrong, Israfeli, who despisest An unimpassioned song; To thee the laurels belong, Best bard, because the wisest! Merrily live, and long! The ecstasies above With thy burning measures suit- Thy grief, thy joy, thy hate, thy love, With the fervor of thy lute- Well may the stars be mute! Yes, Heaven is thine; but this Is a world of sweets and sours; Our flowers are merely- flowers, And the shadow of thy perfect bliss Is the sunshine of ours. If I could dwell Where Israfel Hath dwelt, and he where I, He might not sing so wildly well A mortal melody, While a bolder note than this might swell From my lyre within the sky. Science! true daughter of Old Time thou art! Who alterest all things with thy peering eyes. Why preyest thou thus upon the poet's heart, Vulture, whose wings are dull realities? How should he love thee? or how deem thee wise, Who wouldst not leave him in his wandering To seek for treasure in the jewelled skies, Albeit he soared with an undaunted wing? Hast thou not dragged Diana from her car? And driven the Hamadryad from the wood To seek a shelter in some happier star? Hast thou not torn the Naiad from her flood, The Elfin from the green grass, and from me The summer dream beneath the tamarind tree? I'll tell you a plan for gaining wealth, Better than banking, trade or leases Take a bank note and fold it up, And then you will find your money in creases! This wonderful plan, without danger or loss, Keeps your cash in your hands, where nothing can trouble it; And every time that you fold it across, 'Tis as plain as the light of the day that you double it! The skies they were ashen and sober; The leaves they were crisped and sere- The leaves they were withering and sere; It was night in the lonesome October Of my most immemorial year; It was hard by the dim lake of Auber, In the misty mid region of Weir- It was down by the dank tarn of Auber, In the ghoul-haunted woodland of Weir. Here once, through an alley Titanic, Of cypress, I roamed with my Soul- Of cypress, with Psyche, my Soul. There were days when my heart was volcanic As the scoriac rivers that roll- As the lavas that restlessly roll Their sulphurous currents down Yaanek In the ultimate climes of the pole- That groan as they roll down Mount Yaanek In the realms of the boreal pole. Our talk had been serious and sober, But our thoughts they were palsied and sere- Our memories were treacherous and sere- For we knew not the month was October, And we marked not the night of the year- (Ah, night of all nights in the year!) We noted not the dim lake of Auber- (Though once we had journeyed down here), Remembered not the dank tarn of Auber, Nor the ghoul-haunted woodland of Weir. And now, as the night was senescent, And star-dials pointed to morn- As the star-dials hinted of morn- At the end of our path a liquescent And nebulous lustre was born, Out of which a miraculous crescent Arose with a duplicate horn- Astarte's bediamonded crescent Distinct with its duplicate horn. And I said- 'She is warmer than Dian: She rolls through an ether of sighs- She revels in a region of sighs: She has seen that the tears are not dry on These cheeks, where the worm never dies, And has come past the stars of the Lion, To point us the path to the skies- To the Lethean peace of the skies- Come up, in despite of the Lion, To shine on us with her bright eyes- Come up through the lair of the Lion, With love in her luminous eyes.' But Psyche, uplifting her finger, Said- 'Sadly this star I mistrust- Her pallor I strangely mistrust:- Oh, hasten!- oh, let us not linger! Oh, fly!- let us fly!- for we must.' In terror she spoke, letting sink her Wings until they trailed in the dust- In agony sobbed, letting sink her Plumes till they trailed in the dust- Till they sorrowfully trailed in the dust. I replied- 'This is nothing but dreaming: Let us on by this tremulous light! Let us bathe in this crystalline light! Its Sybilic splendor is beaming With Hope and in Beauty to-night:- See!- it flickers up the sky through the night! Ah, we safely may trust to its gleaming, And be sure it will lead us aright- We safely may trust to a gleaming That cannot but guide us aright, Since it flickers up to Heaven through the night.' Thus I pacified Psyche and kissed her, And tempted her out of her gloom- And conquered her scruples and gloom; And we passed to the end of the vista, But were stopped by the door of a tomb- By the door of a legended tomb; And I said- 'What is written, sweet sister, On the door of this legended tomb?' She replied- 'Ulalume- Ulalume- 'Tis the vault of thy lost Ulalume!' Then my heart it grew ashen and sober As the leaves that were crisped and sere- As the leaves that were withering and sere- And I cried- 'It was surely October On this very night of last year That I journeyed- I journeyed down here- That I brought a dread burden down here- On this night of all nights in the year, Ah, what demon has tempted me here? Well I know, now, this dim lake of Auber- This misty mid region of Weir- Well I know, now, this dank tarn of Auber, This ghoul-haunted woodland of Weir.' How often we forget all time, when lone Admiring Nature's universal throne; Her woods - her winds - her mountains - the intense Reply of Hers to Our intelligence! In youth I have known one with whom the Earth In secret communing held - as he with it, In daylight, and in beauty, from his birth: Whose fervid, flickering torch of life was lit From the sun and stars, whence he had drawn forth A passionate light - such for his spirit was fit - And yet that spirit knew - not in the hour Of its own fervour - what had o'er it power. Perhaps it may be that my mind is wrought To a fever by the moonbeam that hangs o'er, But I will half believe that wild light fraught With more of sovereignty than ancient lore Hath ever told - or is it of a thought The unembodied essence, and no more That with a quickening spell doth o'er us pass As dew of the night time, o'er the summer grass? Doth o'er us pass, when as th' expanding eye To the loved object - so the tear to the lid Will start, which lately slept in apathy? And yet it need not be - (that object) hid From us in life - but common - which doth lie Each hour before us - but then only bid With a strange sound, as of a harpstring broken T' awake us - 'Tis a symbol and a token - Of what in other worlds shall be - and given In beauty by our God, to those alone Who otherwise would fall from life and Heaven Drawn by their heart's passion, and that tone, That high tone of the spirit which hath striven Though not with Faith - with godliness - whose throne With desperate energy 't hath beaten down; Wearing its own deep feeling as a crown. 'Tis said that when The hands of men Tamed this primeval wood, And hoary trees with groans of woe, Like warriors by an unknown foe, Were in their strength subdued, The virgin Earth Gave instant birth To springs that ne'er did flow That in the sun Did rivulets run, And all around rare flowers did blow The wild rose pale Perfumed the gale And the queenly lily adown the dale (Whom the sun and the dew And the winds did woo), With the gourd and the grape luxuriant grew. So when in tears The love of years Is wasted like the snow, And the fine fibrils of its life By the rude wrong of instant strife Are broken at a blow Within the heart Do springs upstart Of which it doth now know, And strange, sweet dreams, Like silent streams That from new fountains overflow, With the earlier tide Of rivers glide Deep in the heart whose hope has died-- Quenching the fires its ashes hide,-- Its ashes, whence will spring and grow Sweet flowers, ere long, The rare and radiant flowers of song! In the greenest of our valleys, By good angels tenanted, Once fair and stately palace -- Radiant palace --reared its head. In the monarch Thought's dominion -- It stood there! Never seraph spread a pinion Over fabric half so fair. Banners yellow, glorious, golden, On its roof did float and flow; (This --all this --was in the olden Time long ago) And every gentle air that dallied, In that sweet day, Along the ramparts plumed and pallid, A winged odour went away. Wanderers in that happy valley Through two luminous windows saw Spirits moving musically To a lute's well-tuned law, Round about a throne, where sitting (Porphyrogene!) In state his glory well befitting, The ruler of the realm was seen. And all with pearl and ruby glowing Was the fair palace door, Through which came flowing, flowing, flowing And sparkling evermore, A troop of Echoes whose sweet duty Was but to sing, In voices of surpassing beauty, The wit and wisdom of their king. But evil things, in robes of sorrow, Assailed the monarch's high estate; (Ah, let us mourn, for never morrow Shall dawn upon him, desolate!) And, round about his home, the glory That blushed and bloomed Is but a dim-remembered story Of the old time entombed. And travellers now within that valley, Through the red-litten windows, see Vast forms that move fantastically To a discordant melody; While, like a rapid ghastly river, Through the pale door, A hideous throng rush out forever, And laugh --but smile no more. ================================================ FILE: hmm_class/extra_reading.txt ================================================ A Tutorial on Hidden Markov Models and Selected Applications in Speech Recognition https://www.ece.ucsb.edu/Faculty/Rabiner/ece259/Reprints/tutorial%20on%20hmm%20and%20applications.pdf Some Mathematics for HMM by Dawei Shen https://pdfs.semanticscholar.org/4ce1/9ab0e07da9aa10be1c336400c8e4d8fc36c5.pdf A Revealing Introduction to Hidden Markov Models https://www.cs.sjsu.edu/~stamp/RUA/HMM.pdf ================================================ FILE: hmm_class/frost.py ================================================ # https://deeplearningcourses.com/c/unsupervised-machine-learning-hidden-markov-models-in-python # https://udemy.com/unsupervised-machine-learning-hidden-markov-models-in-python # http://lazyprogrammer.me # Model and generate Robert Frost poems. from __future__ import print_function, division from future.utils import iteritems from builtins import range # Note: you may need to update your version of future # sudo pip install -U future import numpy as np import string import sys initial = {} # start of a phrase second_word = {} transitions = {} # unfortunately these work different ways def remove_punctuation_2(s): return s.translate(None, string.punctuation) def remove_punctuation_3(s): return s.translate(str.maketrans('','',string.punctuation)) if sys.version.startswith('2'): remove_punctuation = remove_punctuation_2 else: remove_punctuation = remove_punctuation_3 def add2dict(d, k, v): if k not in d: d[k] = [] d[k].append(v) for line in open('robert_frost.txt'): tokens = remove_punctuation(line.rstrip().lower()).split() T = len(tokens) for i in range(T): t = tokens[i] if i == 0: # measure the distribution of the first word initial[t] = initial.get(t, 0.) + 1 else: t_1 = tokens[i-1] if i == T - 1: # measure probability of ending the line add2dict(transitions, (t_1, t), 'END') if i == 1: # measure distribution of second word # given only first word add2dict(second_word, t_1, t) else: t_2 = tokens[i-2] add2dict(transitions, (t_2, t_1), t) # normalize the distributions initial_total = sum(initial.values()) for t, c in iteritems(initial): initial[t] = c / initial_total def list2pdict(ts): # turn each list of possibilities into a dictionary of probabilities d = {} n = len(ts) for t in ts: d[t] = d.get(t, 0.) + 1 for t, c in iteritems(d): d[t] = c / n return d for t_1, ts in iteritems(second_word): # replace list with dictionary of probabilities second_word[t_1] = list2pdict(ts) for k, ts in iteritems(transitions): transitions[k] = list2pdict(ts) # generate 4 lines def sample_word(d): # print "d:", d p0 = np.random.random() # print "p0:", p0 cumulative = 0 for t, p in iteritems(d): cumulative += p if p0 < cumulative: return t assert(False) # should never get here def generate(): for i in range(4): sentence =[] # initial word w0 = sample_word(initial) sentence.append(w0) # sample second word w1 = sample_word(second_word[w0]) sentence.append(w1) # second-order transitions until END while True: w2 = sample_word(transitions[(w0, w1)]) if w2 == 'END': break sentence.append(w2) w0 = w1 w1 = w2 print(' '.join(sentence)) generate() # exercise: make them rhyme! ================================================ FILE: hmm_class/generate_c.py ================================================ # https://deeplearningcourses.com/c/unsupervised-machine-learning-hidden-markov-models-in-python # https://udemy.com/unsupervised-machine-learning-hidden-markov-models-in-python # http://lazyprogrammer.me # Generate continuous data from an HMM. from __future__ import print_function, division from builtins import range # Note: you may need to update your version of future # sudo pip install -U future import numpy as np import matplotlib.pyplot as plt def simple_init(): M = 1 K = 1 D = 1 pi = np.array([1]) A = np.array([[1]]) R = np.array([[1]]) mu = np.array([[[0]]]) sigma = np.array([[[[1]]]]) return M, K, D, pi, A, R, mu, sigma def big_init(): M = 5 K = 3 D = 2 pi = np.array([1, 0, 0, 0, 0]) # initial state distribution A = np.array([ [0.9, 0.025, 0.025, 0.025, 0.025], [0.025, 0.9, 0.025, 0.025, 0.025], [0.025, 0.025, 0.9, 0.025, 0.025], [0.025, 0.025, 0.025, 0.9, 0.025], [0.025, 0.025, 0.025, 0.025, 0.9], ]) # state transition matrix - likes to stay where it is R = np.ones((M, K)) / K # mixture proportions mu = np.array([ [[0, 0], [1, 1], [2, 2]], [[5, 5], [6, 6], [7, 7]], [[10, 10], [11, 11], [12, 12]], [[15, 15], [16, 16], [17, 17]], [[20, 20], [21, 21], [22, 22]], ]) # M x K x D sigma = np.zeros((M, K, D, D)) for m in range(M): for k in range(K): sigma[m,k] = np.eye(D) return M, K, D, pi, A, R, mu, sigma def get_signals(N=20, T=100, init=big_init): M, K, D, pi, A, R, mu, sigma = init() X = [] for n in range(N): x = np.zeros((T, D)) s = 0 # initial state is 0 since pi[0] = 1 r = np.random.choice(K, p=R[s]) # choose mixture x[0] = np.random.multivariate_normal(mu[s][r], sigma[s][r]) for t in range(1, T): s = np.random.choice(M, p=A[s]) # choose state r = np.random.choice(K, p=R[s]) # choose mixture x[t] = np.random.multivariate_normal(mu[s][r], sigma[s][r]) X.append(x) return X if __name__ == '__main__': T = 500 x = get_signals(1, T)[0] axis = range(T) plt.plot(axis, x[:, 0], axis, x[:, 1]) plt.show() ================================================ FILE: hmm_class/generate_ht.py ================================================ # https://deeplearningcourses.com/c/unsupervised-machine-learning-hidden-markov-models-in-python # https://udemy.com/unsupervised-machine-learning-hidden-markov-models-in-python # http://lazyprogrammer.me # Generate discrete data from an HMM. from __future__ import print_function, division from future.utils import iteritems from builtins import range # Note: you may need to update your version of future # sudo pip install -U future import numpy as np symbol_map = ['H', 'T'] pi = np.array([0.5, 0.5]) A = np.array([[0.1, 0.9], [0.8, 0.2]]) B = np.array([[0.6, 0.4], [0.3, 0.7]]) M, V = B.shape def generate_sequence(N): s = np.random.choice(xrange(M), p=pi) # initial state x = np.random.choice(xrange(V), p=B[s]) # initial observation sequence = [x] for n in range(N-1): s = np.random.choice(xrange(M), p=A[s]) # next state x = np.random.choice(xrange(V), p=B[s]) # next observation sequence.append(x) return sequence def main(): with open('coin_data.txt', 'w') as f: for n in range(50): sequence = generate_sequence(30) sequence = ''.join(symbol_map[s] for s in sequence) print sequence f.write("%s\n" % sequence) if __name__ == '__main__': main() ================================================ FILE: hmm_class/hmm_classifier.py ================================================ # https://deeplearningcourses.com/c/unsupervised-machine-learning-hidden-markov-models-in-python # https://udemy.com/unsupervised-machine-learning-hidden-markov-models-in-python # http://lazyprogrammer.me # Demonstrate how HMMs can be used for classification. from __future__ import print_function, division from future.utils import iteritems from builtins import range # Note: you may need to update your version of future # sudo pip install -U future import string import numpy as np import matplotlib.pyplot as plt from hmmd_theano2 import HMM from sklearn.utils import shuffle from nltk import pos_tag, word_tokenize class HMMClassifier: def __init__(self): pass def fit(self, X, Y, V): K = len(set(Y)) # number of classes - assume 0..K-1 N = len(Y) self.models = [] self.priors = [] for k in range(K): # gather all the training data for this class thisX = [x for x, y in zip(X, Y) if y == k] C = len(thisX) self.priors.append(np.log(C) - np.log(N)) hmm = HMM(5) hmm.fit(thisX, V=V, print_period=1, learning_rate=1e-2, max_iter=80) self.models.append(hmm) def score(self, X, Y): N = len(Y) correct = 0 for x, y in zip(X, Y): lls = [hmm.log_likelihood(x) + prior for hmm, prior in zip(self.models, self.priors)] p = np.argmax(lls) if p == y: correct += 1 return float(correct) / N # def remove_punctuation(s): # return s.translate(None, string.punctuation) def get_tags(s): tuples = pos_tag(word_tokenize(s)) return [y for x, y in tuples] def get_data(): word2idx = {} current_idx = 0 X = [] Y = [] for fn, label in zip(('robert_frost.txt', 'edgar_allan_poe.txt'), (0, 1)): count = 0 for line in open(fn): line = line.rstrip() if line: print(line) # tokens = remove_punctuation(line.lower()).split() tokens = get_tags(line) if len(tokens) > 1: # scan doesn't work nice here, technically could fix... for token in tokens: if token not in word2idx: word2idx[token] = current_idx current_idx += 1 sequence = np.array([word2idx[w] for w in tokens]) X.append(sequence) Y.append(label) count += 1 print(count) if count >= 50: break print("Vocabulary:", word2idx.keys()) return X, Y, current_idx def main(): X, Y, V = get_data() print("len(X):", len(X)) print("Vocabulary size:", V) X, Y = shuffle(X, Y) N = 20 # number to test Xtrain, Ytrain = X[:-N], Y[:-N] Xtest, Ytest = X[-N:], Y[-N:] model = HMMClassifier() model.fit(Xtrain, Ytrain, V) print("Score:", model.score(Xtest, Ytest)) if __name__ == '__main__': main() ================================================ FILE: hmm_class/hmmc.py ================================================ # https://deeplearningcourses.com/c/unsupervised-machine-learning-hidden-markov-models-in-python # https://udemy.com/unsupervised-machine-learning-hidden-markov-models-in-python # http://lazyprogrammer.me # Continuous-observation HMM with no scaling, but allowing multiple observations from __future__ import print_function, division from builtins import range # Note: you may need to update your version of future # sudo pip install -U future import wave import numpy as np import matplotlib.pyplot as plt from generate_c import get_signals, big_init, simple_init from scipy.stats import multivariate_normal as mvn def random_normalized(d1, d2): x = np.random.random((d1, d2)) return x / x.sum(axis=1, keepdims=True) class HMM: def __init__(self, M, K): self.M = M # number of hidden states self.K = K # number of Gaussians def fit(self, X, max_iter=30, eps=1e0): # train the HMM model using the Baum-Welch algorithm # a specific instance of the expectation-maximization algorithm N = len(X) D = X[0].shape[1] # assume each x is organized (T, D) self.pi = np.ones(self.M) / self.M # initial state distribution self.A = random_normalized(self.M, self.M) # state transition matrix self.R = np.ones((self.M, self.K)) / self.K # mixture proportions print("initial A:", self.A) print("initial R:", self.R) self.mu = np.zeros((self.M, self.K, D)) for i in range(self.M): for k in range(self.K): random_idx = np.random.choice(N) x = X[random_idx] random_time_idx = np.random.choice(len(x)) self.mu[i,k] = x[random_time_idx] self.sigma = np.zeros((self.M, self.K, D, D)) for j in range(self.M): for k in range(self.K): self.sigma[j,k] = np.eye(D) costs = [] for it in range(max_iter): if it % 1 == 0: print("it:", it) alphas = [] betas = [] gammas = [] Bs = [] # components = [] P = np.zeros(N) for n in range(N): x = X[n] T = len(x) # calculate B so we can lookup when updating alpha and beta B = np.zeros((self.M, T)) component = np.zeros((self.M, self.K, T)) # we'll need these later for j in range(self.M): for t in range(T): for k in range(self.K): p = self.R[j,k] * mvn.pdf(x[t], self.mu[j,k], self.sigma[j,k]) component[j,k,t] = p B[j,t] += p Bs.append(B) alpha = np.zeros((T, self.M)) alpha[0] = self.pi*B[:,0] for t in range(1, T): alpha[t] = alpha[t-1].dot(self.A) * B[:,t] P[n] = alpha[-1].sum() assert(P[n] <= 1) alphas.append(alpha) beta = np.zeros((T, self.M)) beta[-1] = 1 for t in range(T - 2, -1, -1): beta[t] = self.A.dot(B[:,t+1] * beta[t+1]) betas.append(beta) # update for Gaussians gamma = np.zeros((T, self.M, self.K)) for t in range(T): alphabeta = (alphas[n][t,:] * betas[n][t,:]).sum() for j in range(self.M): factor = alphas[n][t,j] * betas[n][t,j] / alphabeta # mixture_j = component[j,:,t].sum() for k in range(self.K): gamma[t,j,k] = factor * component[j,k,t] / B[j,t] gammas.append(gamma) cost = np.log(P).sum() costs.append(cost) # now re-estimate pi, A, R, mu, sigma self.pi = np.sum((alphas[n][0] * betas[n][0])/P[n] for n in range(N)) / N a_den = np.zeros((self.M, 1)) a_num = 0 r_num = np.zeros((self.M, self.K)) r_den = np.zeros(self.M) mu_num = np.zeros((self.M, self.K, D)) sigma_num = np.zeros((self.M, self.K, D, D)) for n in range(N): x = X[n] T = len(x) B = Bs[n] gamma = gammas[n] # denominator for A a_den += (alphas[n][:-1] * betas[n][:-1]).sum(axis=0, keepdims=True).T / P[n] # numerator for A a_num_n = np.zeros((self.M, self.M)) for i in range(self.M): for j in range(self.M): for t in range(T-1): a_num_n[i,j] += alphas[n][t,i] * self.A[i,j] * B[j,t+1] * betas[n][t+1,j] a_num += a_num_n / P[n] # update mixture components r_num_n = np.zeros((self.M, self.K)) r_den_n = np.zeros(self.M) for j in range(self.M): for k in range(self.K): for t in range(T): r_num_n[j,k] += gamma[t,j,k] r_den_n[j] += gamma[t,j,k] r_num += r_num_n / P[n] r_den += r_den_n / P[n] mu_num_n = np.zeros((self.M, self.K, D)) sigma_num_n = np.zeros((self.M, self.K, D, D)) for j in range(self.M): for k in range(self.K): for t in range(T): # update means mu_num_n[j,k] += gamma[t,j,k] * x[t] # update covariances sigma_num_n[j,k] += gamma[t,j,k] * np.outer(x[t] - self.mu[j,k], x[t] - self.mu[j,k]) mu_num += mu_num_n / P[n] sigma_num += sigma_num_n / P[n] self.A = a_num / a_den assert(np.all(self.A <= 1)) # update R, mu, sigma for j in range(self.M): for k in range(self.K): self.R[j,k] = r_num[j,k] / r_den[j] self.mu[j,k] = mu_num[j,k] / r_num[j,k] self.sigma[j,k] = sigma_num[j,k] / r_num[j,k] print("A:", self.A) print("mu:", self.mu) print("sigma:", self.sigma) print("R:", self.R) print("pi:", self.pi) plt.plot(costs) plt.show() def likelihood(self, x): # returns log P(x | model) # using the forward part of the forward-backward algorithm T = len(x) alpha = np.zeros((T, self.M)) B = np.zeros((self.M, T)) for j in range(self.M): for t in range(T): for k in range(self.K): p = self.R[j,k] * mvn.pdf(x[t], self.mu[j,k], self.sigma[j,k]) B[j,t] += p alpha[0] = self.pi*B[:,0] for t in range(1, T): alpha[t] = alpha[t-1].dot(self.A) * B[:,t] return alpha[-1].sum() def get_state_sequence(self, x): # returns the most likely state sequence given observed sequence x # using the Viterbi algorithm T = len(x) # make the emission matrix B B = np.zeros((self.M, T)) for j in range(self.M): for t in range(T): for k in range(self.K): p = self.R[j,k] * mvn.pdf(x[t], self.mu[j,k], self.sigma[j,k]) B[j,t] += p # perform Viterbi as usual delta = np.zeros((T, self.M)) psi = np.zeros((T, self.M)) delta[0] = self.pi*B[:,0] for t in range(1, T): for j in range(self.M): delta[t,j] = np.max(delta[t-1]*self.A[:,j]) * B[j,t] psi[t,j] = np.argmax(delta[t-1]*self.A[:,j]) # backtrack states = np.zeros(T, dtype=np.int32) states[T-1] = np.argmax(delta[T-1]) for t in range(T-2, -1, -1): states[t] = psi[t+1, states[t+1]] return states def likelihood_multi(self, X): return np.array([self.likelihood(x) for x in X]) def log_likelihood_multi(self, X): return np.log(self.likelihood_multi(X)) def set(self, pi, A, R, mu, sigma): self.pi = pi self.A = A self.R = R self.mu = mu self.sigma = sigma M, K = R.shape self.M = M self.K = K def real_signal(): spf = wave.open('helloworld.wav', 'r') #Extract Raw Audio from Wav File # If you right-click on the file and go to "Get Info", you can see: # sampling rate = 16000 Hz # bits per sample = 16 # The first is quantization in time # The second is quantization in amplitude # We also do this for images! # 2^16 = 65536 is how many different sound levels we have signal = spf.readframes(-1) signal = np.fromstring(signal, 'Int16') T = len(signal) hmm = HMM(10) hmm.fit(signal.reshape(1, T)) def fake_signal(init=simple_init): signals = get_signals(N=10, T=10, init=init) # for signal in signals: # for d in xrange(signal.shape[1]): # plt.plot(signal[:,d]) # plt.show() hmm = HMM(2, 2) hmm.fit(signals) L = hmm.log_likelihood_multi(signals).sum() print("LL for fitted params:", L) # test in actual params _, _, _, pi, A, R, mu, sigma = init() hmm.set(pi, A, R, mu, sigma) L = hmm.log_likelihood_multi(signals).sum() print("LL for actual params:", L) # print most likely state sequence print("Most likely state sequence for initial observation:") print(hmm.get_state_sequence(signals[0])) if __name__ == '__main__': # real_signal() # will break fake_signal(init=simple_init) # fake_signal(init=big_init) # will break ================================================ FILE: hmm_class/hmmc_concat.py ================================================ # https://deeplearningcourses.com/c/unsupervised-machine-learning-hidden-markov-models-in-python # https://udemy.com/unsupervised-machine-learning-hidden-markov-models-in-python # http://lazyprogrammer.me # Continuous-observation HMM with no scaling, but treats multiple observations # as a concatenated single observation from __future__ import print_function, division from builtins import range # Note: you may need to update your version of future # sudo pip install -U future import wave import numpy as np import matplotlib.pyplot as plt from generate_c import get_signals, big_init, simple_init from scipy.stats import multivariate_normal as mvn def random_normalized(d1, d2): x = np.random.random((d1, d2)) return x / x.sum(axis=1, keepdims=True) class HMM: def __init__(self, M, K): self.M = M # number of hidden states self.K = K # number of Gaussians def fit(self, X, max_iter=30, eps=1e0): # train the HMM model using the Baum-Welch algorithm # a specific instance of the expectation-maximization algorithm N = len(X) D = X[0].shape[1] # assume each x is organized (T, D) self.pi = np.ones(self.M) / self.M # initial state distribution self.A = random_normalized(self.M, self.M) # state transition matrix self.R = np.ones((self.M, self.K)) / self.K # mixture proportions print("initial A:", self.A) print("initial R:", self.R) self.mu = np.zeros((self.M, self.K, D)) for i in range(self.M): for k in range(self.K): random_idx = np.random.choice(N) x = X[random_idx] random_time_idx = np.random.choice(len(x)) self.mu[i,k] = x[random_time_idx] self.sigma = np.zeros((self.M, self.K, D, D)) for j in range(self.M): for k in range(self.K): self.sigma[j,k] = np.eye(D) costs = [] for it in range(max_iter): if it % 1 == 0: print("it:", it) alphas = [] betas = [] gammas = [] Bs = [] # components = [] P = np.zeros(N) for n in range(N): x = X[n] T = len(x) # calculate B so we can lookup when updating alpha and beta B = np.zeros((self.M, T)) component = np.zeros((self.M, self.K, T)) # we'll need these later for j in range(self.M): for t in range(T): for k in range(self.K): p = self.R[j,k] * mvn.pdf(x[t], self.mu[j,k], self.sigma[j,k]) component[j,k,t] = p B[j,t] += p Bs.append(B) alpha = np.zeros((T, self.M)) alpha[0] = self.pi*B[:,0] for t in range(1, T): alpha[t] = alpha[t-1].dot(self.A) * B[:,t] P[n] = alpha[-1].sum() assert(P[n] <= 1) alphas.append(alpha) beta = np.zeros((T, self.M)) beta[-1] = 1 for t in range(T - 2, -1, -1): beta[t] = self.A.dot(B[:,t+1] * beta[t+1]) betas.append(beta) # update for Gaussians gamma = np.zeros((T, self.M, self.K)) for t in range(T): alphabeta = (alphas[n][t,:] * betas[n][t,:]).sum() for j in range(self.M): factor = alphas[n][t,j] * betas[n][t,j] / alphabeta # mixture_j = component[j,:,t].sum() for k in range(self.K): gamma[t,j,k] = factor * component[j,k,t] / B[j,t] gammas.append(gamma) cost = np.log(P).sum() costs.append(cost) # now re-estimate pi, A, R, mu, sigma self.pi = np.sum((alphas[n][0] * betas[n][0])/P[n] for n in range(N)) / N a_den = np.zeros((self.M, 1)) a_num = 0 r_num = np.zeros((self.M, self.K)) r_den = np.zeros(self.M) mu_num = np.zeros((self.M, self.K, D)) sigma_num = np.zeros((self.M, self.K, D, D)) for n in range(N): x = X[n] T = len(x) B = Bs[n] gamma = gammas[n] # denominator for A a_den += (alphas[n][:-1] * betas[n][:-1]).sum(axis=0, keepdims=True).T / P[n] # numerator for A a_num_n = np.zeros((self.M, self.M)) for i in range(self.M): for j in range(self.M): for t in range(T-1): a_num_n[i,j] += alphas[n][t,i] * self.A[i,j] * B[j,t+1] * betas[n][t+1,j] a_num += a_num_n / P[n] # update mixture components r_num_n = np.zeros((self.M, self.K)) r_den_n = np.zeros(self.M) for j in range(self.M): for k in range(self.K): for t in range(T): r_num_n[j,k] += gamma[t,j,k] r_den_n[j] += gamma[t,j,k] r_num += r_num_n / P[n] r_den += r_den_n / P[n] mu_num_n = np.zeros((self.M, self.K, D)) sigma_num_n = np.zeros((self.M, self.K, D, D)) for j in range(self.M): for k in range(self.K): for t in range(T): # update means mu_num_n[j,k] += gamma[t,j,k] * x[t] # update covariances sigma_num_n[j,k] += gamma[t,j,k] * np.outer(x[t] - self.mu[j,k], x[t] - self.mu[j,k]) mu_num += mu_num_n / P[n] sigma_num += sigma_num_n / P[n] self.A = a_num / a_den assert(np.all(self.A <= 1)) # update R, mu, sigma for j in range(self.M): for k in range(self.K): self.R[j,k] = r_num[j,k] / r_den[j] self.mu[j,k] = mu_num[j,k] / r_num[j,k] self.sigma[j,k] = sigma_num[j,k] / r_num[j,k] print("A:", self.A) print("mu:", self.mu) print("sigma:", self.sigma) print("R:", self.R) print("pi:", self.pi) plt.plot(costs) plt.show() def likelihood(self, x): # returns log P(x | model) # using the forward part of the forward-backward algorithm T = len(x) alpha = np.zeros((T, self.M)) B = np.zeros((self.M, T)) for j in range(self.M): for t in range(T): for k in range(self.K): p = self.R[j,k] * mvn.pdf(x[t], self.mu[j,k], self.sigma[j,k]) B[j,t] += p alpha[0] = self.pi*B[:,0] for t in range(1, T): alpha[t] = alpha[t-1].dot(self.A) * B[:,t] return alpha[-1].sum() def likelihood_multi(self, X): return np.array([self.likelihood(x) for x in X]) def log_likelihood_multi(self, X): return np.log(self.likelihood_multi(X)) def set(self, pi, A, R, mu, sigma): self.pi = pi self.A = A self.R = R self.mu = mu self.sigma = sigma M, K = R.shape self.M = M self.K = K def real_signal(): spf = wave.open('helloworld.wav', 'r') #Extract Raw Audio from Wav File # If you right-click on the file and go to "Get Info", you can see: # sampling rate = 16000 Hz # bits per sample = 16 # The first is quantization in time # The second is quantization in amplitude # We also do this for images! # 2^16 = 65536 is how many different sound levels we have signal = spf.readframes(-1) signal = np.fromstring(signal, 'Int16') T = len(signal) hmm = HMM(10) hmm.fit(signal.reshape(1, T)) def fake_signal(init=simple_init): signals = get_signals(N=10, T=10, init=init) # for signal in signals: # for d in xrange(signal.shape[1]): # plt.plot(signal[:,d]) # plt.show() hmm = HMM(2, 2) hmm.fit(signals) L = hmm.log_likelihood_multi(signals).sum() print("LL for fitted params:", L) # test in actual params _, _, _, pi, A, R, mu, sigma = init() hmm.set(pi, A, R, mu, sigma) L = hmm.log_likelihood_multi(signals).sum() print("LL for actual params:", L) if __name__ == '__main__': # real_signal() # will break fake_signal(init=simple_init) # fake_signal(init=big_init) # will break ================================================ FILE: hmm_class/hmmc_scaled_concat.py ================================================ # https://deeplearningcourses.com/c/unsupervised-machine-learning-hidden-markov-models-in-python # https://udemy.com/unsupervised-machine-learning-hidden-markov-models-in-python # https://lazyprogrammer.me # Continuous-observation HMM with scaling and multiple observations (treated as concatenated sequence) from __future__ import print_function, division from builtins import range # Note: you may need to update your version of future # sudo pip install -U future import wave import numpy as np import matplotlib.pyplot as plt from generate_c import get_signals, big_init, simple_init from scipy.stats import multivariate_normal as mvn def random_normalized(d1, d2): x = np.random.random((d1, d2)) return x / x.sum(axis=1, keepdims=True) class HMM: def __init__(self, M, K): self.M = M # number of hidden states self.K = K # number of Gaussians def fit(self, X, max_iter=25, eps=1e-1): # train the HMM model using the Baum-Welch algorithm # a specific instance of the expectation-maximization algorithm # concatenate sequences in X and determine start/end positions sequenceLengths = [] for x in X: sequenceLengths.append(len(x)) Xc = np.concatenate(X) T = len(Xc) startPositions = np.zeros(len(Xc), dtype=np.bool) endPositions = np.zeros(len(Xc), dtype=np.bool) startPositionValues = [] last = 0 for length in sequenceLengths: startPositionValues.append(last) startPositions[last] = 1 if last > 0: endPositions[last - 1] = 1 last += length D = X[0].shape[1] # assume each x is organized (T, D) # randomly initialize all parameters self.pi = np.ones(self.M) / self.M # initial state distribution self.A = random_normalized(self.M, self.M) # state transition matrix self.R = np.ones((self.M, self.K)) / self.K # mixture proportions self.mu = np.zeros((self.M, self.K, D)) for i in range(self.M): for k in range(self.K): random_idx = np.random.choice(T) self.mu[i,k] = Xc[random_idx] self.sigma = np.zeros((self.M, self.K, D, D)) for j in range(self.M): for k in range(self.K): self.sigma[j,k] = np.eye(D) # main EM loop costs = [] for it in range(max_iter): if it % 1 == 0: print("it:", it) scale = np.zeros(T) # calculate B so we can lookup when updating alpha and beta B = np.zeros((self.M, T)) component = np.zeros((self.M, self.K, T)) # we'll need these later for j in range(self.M): for k in range(self.K): p = self.R[j,k] * mvn.pdf(Xc, self.mu[j,k], self.sigma[j,k]) component[j,k,:] = p B[j,:] += p alpha = np.zeros((T, self.M)) alpha[0] = self.pi*B[:,0] scale[0] = alpha[0].sum() alpha[0] /= scale[0] for t in range(1, T): if startPositions[t] == 0: alpha_t_prime = alpha[t-1].dot(self.A) * B[:,t] else: alpha_t_prime = self.pi * B[:,t] scale[t] = alpha_t_prime.sum() alpha[t] = alpha_t_prime / scale[t] logP = np.log(scale).sum() beta = np.zeros((T, self.M)) beta[-1] = 1 for t in range(T - 2, -1, -1): if startPositions[t + 1] == 1: beta[t] = 1 else: beta[t] = self.A.dot(B[:,t+1] * beta[t+1]) / scale[t+1] # update for Gaussians gamma = np.zeros((T, self.M, self.K)) for t in range(T): alphabeta = alpha[t,:].dot(beta[t,:]) for j in range(self.M): factor = alpha[t,j] * beta[t,j] / alphabeta for k in range(self.K): gamma[t,j,k] = factor * component[j,k,t] / B[j,t] costs.append(logP) # now re-estimate pi, A, R, mu, sigma self.pi = np.sum((alpha[t] * beta[t]) for t in startPositionValues) / len(startPositionValues) a_den = np.zeros((self.M, 1)) # prob don't need this a_num = np.zeros((self.M, self.M)) r_num = np.zeros((self.M, self.K)) r_den = np.zeros(self.M) mu_num = np.zeros((self.M, self.K, D)) sigma_num = np.zeros((self.M, self.K, D, D)) nonEndPositions = (1 - endPositions).astype(np.bool) a_den += (alpha[nonEndPositions] * beta[nonEndPositions]).sum(axis=0, keepdims=True).T # numerator for A for i in range(self.M): for j in range(self.M): for t in range(T-1): if endPositions[t] != 1: a_num[i,j] += alpha[t,i] * beta[t+1,j] * self.A[i,j] * B[j,t+1] / scale[t+1] self.A = a_num / a_den # update mixture components r_num_n = np.zeros((self.M, self.K)) r_den_n = np.zeros(self.M) for j in range(self.M): for k in range(self.K): for t in range(T): r_num_n[j,k] += gamma[t,j,k] r_den_n[j] += gamma[t,j,k] r_num = r_num_n r_den = r_den_n mu_num_n = np.zeros((self.M, self.K, D)) sigma_num_n = np.zeros((self.M, self.K, D, D)) for j in range(self.M): for k in range(self.K): for t in range(T): # update means mu_num_n[j,k] += gamma[t,j,k] * Xc[t] # update covariances sigma_num_n[j,k] += gamma[t,j,k] * np.outer(Xc[t] - self.mu[j,k], Xc[t] - self.mu[j,k]) mu_num = mu_num_n sigma_num = sigma_num_n # update R, mu, sigma for j in range(self.M): for k in range(self.K): self.R[j,k] = r_num[j,k] / r_den[j] self.mu[j,k] = mu_num[j,k] / r_num[j,k] self.sigma[j,k] = sigma_num[j,k] / r_num[j,k] + np.eye(D)*eps assert(np.all(self.R <= 1)) assert(np.all(self.A <= 1)) print("A:", self.A) print("mu:", self.mu) print("sigma:", self.sigma) print("R:", self.R) print("pi:", self.pi) plt.plot(costs) plt.show() def log_likelihood(self, x): # returns log P(x | model) # using the forward part of the forward-backward algorithm T = len(x) scale = np.zeros(T) B = np.zeros((self.M, T)) for j in range(self.M): for k in range(self.K): p = self.R[j,k] * mvn.pdf(x, self.mu[j,k], self.sigma[j,k]) B[j,:] += p alpha = np.zeros((T, self.M)) alpha[0] = self.pi*B[:,0] scale[0] = alpha[0].sum() alpha[0] /= scale[0] for t in range(1, T): alpha_t_prime = alpha[t-1].dot(self.A) * B[:,t] scale[t] = alpha_t_prime.sum() alpha[t] = alpha_t_prime / scale[t] return np.log(scale).sum() def log_likelihood_multi(self, X): return np.array([self.log_likelihood(x) for x in X]) def set(self, pi, A, R, mu, sigma): self.pi = pi self.A = A self.R = R self.mu = mu self.sigma = sigma M, K = R.shape self.M = M self.K = K def real_signal(): spf = wave.open('helloworld.wav', 'r') #Extract Raw Audio from Wav File # If you right-click on the file and go to "Get Info", you can see: # sampling rate = 16000 Hz # bits per sample = 16 # The first is quantization in time # The second is quantization in amplitude # We also do this for images! # 2^16 = 65536 is how many different sound levels we have signal = spf.readframes(-1) signal = np.fromstring(signal, 'Int16') T = len(signal) signal = (signal - signal.mean()) / signal.std() hmm = HMM(5, 3) hmm.fit(signal.reshape(1, T, 1)) print("LL for fitted params:", hmm.log_likelihood(signal.reshape(T, 1))) def fake_signal(init=big_init): signals = get_signals(init=init) # for signal in signals: # for d in xrange(signal.shape[1]): # plt.plot(signal[:,d]) # plt.show() hmm = HMM(5, 3) hmm.fit(signals) L = hmm.log_likelihood_multi(signals).sum() print("LL for fitted params:", L) # test in actual params _, _, _, pi, A, R, mu, sigma = init() hmm.set(pi, A, R, mu, sigma) L = hmm.log_likelihood_multi(signals).sum() print("LL for actual params:", L) if __name__ == '__main__': # real_signal() fake_signal() ================================================ FILE: hmm_class/hmmc_scaled_concat_diag.py ================================================ # https://deeplearningcourses.com/c/unsupervised-machine-learning-hidden-markov-models-in-python # https://udemy.com/unsupervised-machine-learning-hidden-markov-models-in-python # https://lazyprogrammer.me # Continuous-observation HMM with scaling and multiple observations (treated as concatenated sequence) from __future__ import print_function, division from builtins import range # Note: you may need to update your version of future # sudo pip install -U future import wave import numpy as np import matplotlib.pyplot as plt from generate_c import get_signals, big_init, simple_init from scipy.stats import multivariate_normal as mvn def random_normalized(d1, d2): x = np.random.random((d1, d2)) return x / x.sum(axis=1, keepdims=True) class HMM: def __init__(self, M, K): self.M = M # number of hidden states self.K = K # number of Gaussians def fit(self, X, max_iter=25, eps=1e-1): # train the HMM model using the Baum-Welch algorithm # a specific instance of the expectation-maximization algorithm # concatenate sequences in X and determine start/end positions sequenceLengths = [] for x in X: sequenceLengths.append(len(x)) Xc = np.concatenate(X) T = len(Xc) startPositions = np.zeros(len(Xc), dtype=np.bool) endPositions = np.zeros(len(Xc), dtype=np.bool) startPositionValues = [] last = 0 for length in sequenceLengths: startPositionValues.append(last) startPositions[last] = 1 if last > 0: endPositions[last - 1] = 1 last += length D = X[0].shape[1] # assume each x is organized (T, D) # randomly initialize all parameters self.pi = np.ones(self.M) / self.M # initial state distribution self.A = random_normalized(self.M, self.M) # state transition matrix self.R = np.ones((self.M, self.K)) / self.K # mixture proportions self.mu = np.zeros((self.M, self.K, D)) for i in range(self.M): for k in range(self.K): random_idx = np.random.choice(T) self.mu[i,k] = Xc[random_idx] self.sigma = np.ones((self.M, self.K, D)) # main EM loop costs = [] for it in range(max_iter): if it % 1 == 0: print("it:", it) scale = np.zeros(T) # calculate B so we can lookup when updating alpha and beta B = np.zeros((self.M, T)) component = np.zeros((self.M, self.K, T)) # we'll need these later for j in range(self.M): for k in range(self.K): p = self.R[j,k] * mvn.pdf(Xc, self.mu[j,k], self.sigma[j,k]) component[j,k,:] = p B[j,:] += p alpha = np.zeros((T, self.M)) alpha[0] = self.pi*B[:,0] scale[0] = alpha[0].sum() alpha[0] /= scale[0] for t in range(1, T): if startPositions[t] == 0: alpha_t_prime = alpha[t-1].dot(self.A) * B[:,t] else: alpha_t_prime = self.pi * B[:,t] scale[t] = alpha_t_prime.sum() alpha[t] = alpha_t_prime / scale[t] logP = np.log(scale).sum() beta = np.zeros((T, self.M)) beta[-1] = 1 for t in range(T - 2, -1, -1): if startPositions[t + 1] == 1: beta[t] = 1 else: beta[t] = self.A.dot(B[:,t+1] * beta[t+1]) / scale[t+1] # update for Gaussians gamma = np.zeros((T, self.M, self.K)) for t in range(T): alphabeta = alpha[t,:].dot(beta[t,:]) for j in range(self.M): factor = alpha[t,j] * beta[t,j] / alphabeta for k in range(self.K): gamma[t,j,k] = factor * component[j,k,t] / B[j,t] costs.append(logP) # now re-estimate pi, A, R, mu, sigma self.pi = np.sum((alpha[t] * beta[t]) for t in startPositionValues) / len(startPositionValues) a_den = np.zeros((self.M, 1)) # prob don't need this a_num = np.zeros((self.M, self.M)) r_num = np.zeros((self.M, self.K)) r_den = np.zeros(self.M) mu_num = np.zeros((self.M, self.K, D)) sigma_num = np.zeros((self.M, self.K, D)) nonEndPositions = (1 - endPositions).astype(np.bool) a_den += (alpha[nonEndPositions] * beta[nonEndPositions]).sum(axis=0, keepdims=True).T # numerator for A for i in range(self.M): for j in range(self.M): for t in range(T-1): if endPositions[t] != 1: a_num[i,j] += alpha[t,i] * beta[t+1,j] * self.A[i,j] * B[j,t+1] / scale[t+1] self.A = a_num / a_den # update mixture components r_num_n = np.zeros((self.M, self.K)) r_den_n = np.zeros(self.M) for j in range(self.M): for k in range(self.K): for t in range(T): r_num_n[j,k] += gamma[t,j,k] r_den_n[j] += gamma[t,j,k] r_num = r_num_n r_den = r_den_n mu_num_n = np.zeros((self.M, self.K, D)) sigma_num_n = np.zeros((self.M, self.K, D)) for j in range(self.M): for k in range(self.K): for t in range(T): # update means mu_num_n[j,k] += gamma[t,j,k] * Xc[t] # update covariances sigma_num_n[j,k] += gamma[t,j,k] * (Xc[t] - self.mu[j,k])**2 mu_num = mu_num_n sigma_num = sigma_num_n # update R, mu, sigma for j in range(self.M): for k in range(self.K): self.R[j,k] = r_num[j,k] / r_den[j] self.mu[j,k] = mu_num[j,k] / r_num[j,k] self.sigma[j,k] = sigma_num[j,k] / r_num[j,k] + np.ones(D)*eps assert(np.all(self.R <= 1)) assert(np.all(self.A <= 1)) print("A:", self.A) print("mu:", self.mu) print("sigma:", self.sigma) print("R:", self.R) print("pi:", self.pi) plt.plot(costs) plt.show() def log_likelihood(self, x): # returns log P(x | model) # using the forward part of the forward-backward algorithm T = len(x) scale = np.zeros(T) B = np.zeros((self.M, T)) for j in range(self.M): for k in range(self.K): p = self.R[j,k] * mvn.pdf(x, self.mu[j,k], self.sigma[j,k]) B[j,:] += p alpha = np.zeros((T, self.M)) alpha[0] = self.pi*B[:,0] scale[0] = alpha[0].sum() alpha[0] /= scale[0] for t in range(1, T): alpha_t_prime = alpha[t-1].dot(self.A) * B[:,t] scale[t] = alpha_t_prime.sum() alpha[t] = alpha_t_prime / scale[t] return np.log(scale).sum() def get_state_sequence(self, x): # returns the most likely state sequence given observed sequence x # using the Viterbi algorithm T = len(x) # make the emission matrix B logB = np.zeros((self.M, T)) for j in range(self.M): for t in range(T): for k in range(self.K): p = np.log(self.R[j,k]) + mvn.logpdf(x[t], self.mu[j,k], self.sigma[j,k]) logB[j,t] += p print("logB:", logB) # perform Viterbi as usual delta = np.zeros((T, self.M)) psi = np.zeros((T, self.M)) # smooth pi in case it is 0 pi = self.pi + 1e-10 pi /= pi.sum() delta[0] = np.log(pi) + logB[:,0] for t in range(1, T): for j in range(self.M): next_delta = delta[t-1] + np.log(self.A[:,j]) delta[t,j] = np.max(next_delta) + logB[j,t] psi[t,j] = np.argmax(next_delta) # backtrack states = np.zeros(T, dtype=np.int32) states[T-1] = np.argmax(delta[T-1]) for t in range(T-2, -1, -1): states[t] = psi[t+1, states[t+1]] return states def log_likelihood_multi(self, X): return np.array([self.log_likelihood(x) for x in X]) def set(self, pi, A, R, mu, sigma): self.pi = pi self.A = A self.R = R self.mu = mu self.sigma = sigma M, K = R.shape self.M = M self.K = K def real_signal(): spf = wave.open('helloworld.wav', 'r') #Extract Raw Audio from Wav File # If you right-click on the file and go to "Get Info", you can see: # sampling rate = 16000 Hz # bits per sample = 16 # The first is quantization in time # The second is quantization in amplitude # We also do this for images! # 2^16 = 65536 is how many different sound levels we have signal = spf.readframes(-1) signal = np.fromstring(signal, 'Int16') T = len(signal) signal = (signal - signal.mean()) / signal.std() hmm = HMM(5, 3) hmm.fit(signal.reshape(1, T, 1), max_iter=35) print("LL for fitted params:", hmm.log_likelihood(signal.reshape(T, 1))) def fake_signal(init=big_init): signals = get_signals(init=init) # for signal in signals: # for d in xrange(signal.shape[1]): # plt.plot(signal[:,d]) # plt.show() hmm = HMM(5, 3) hmm.fit(signals) L = hmm.log_likelihood_multi(signals).sum() print("LL for fitted params:", L) # test in actual params _, _, _, pi, A, R, mu, sigma = init() hmm.set(pi, A, R, mu, sigma) L = hmm.log_likelihood_multi(signals).sum() print("LL for actual params:", L) # print most likely state sequence print("Most likely state sequence for initial observation:") print(hmm.get_state_sequence(signals[0])) if __name__ == '__main__': # real_signal() fake_signal() ================================================ FILE: hmm_class/hmmc_tf.py ================================================ # https://deeplearningcourses.com/c/unsupervised-machine-learning-hidden-markov-models-in-python # https://udemy.com/unsupervised-machine-learning-hidden-markov-models-in-python # http://lazyprogrammer.me # Continuous-observation HMM in Theano using gradient descent. # TODO: seems to be broken on TF v1.2, but fine with TF v1.0 from __future__ import print_function, division from builtins import range # Note: you may need to update your version of future # sudo pip install -U future import wave import tensorflow as tf import numpy as np import matplotlib.pyplot as plt MVN = tf.contrib.distributions.MultivariateNormalDiag from generate_c import get_signals, big_init class HMM: def __init__(self, M, K, D): self.M = M # number of hidden states self.K = K # number of Gaussians self.D = D # Gaussian dimensionality def set_session(self, session): self.session = session def init_random(self, X): pi0 = np.ones(self.M).astype(np.float32) # initial state distribution A0 = np.random.randn(self.M, self.M).astype(np.float32) # state transition matrix R0 = np.ones((self.M, self.K)).astype(np.float32) # mixture proportions # mu0 = np.random.randn(self.M, self.K, self.D).astype(np.float32) mu0 = np.zeros((self.M, self.K, self.D)) for j in range(self.M): for k in range(self.K): n = np.random.randint(X.shape[0]) t = np.random.randint(X.shape[1]) mu0[j,k] = X[n,t] mu0 = mu0.astype(np.float32) sigma0 = np.random.randn(self.M, self.K, self.D).astype(np.float32) self.build(pi0, A0, R0, mu0, sigma0) def build(self, preSoftmaxPi, preSoftmaxA, preSoftmaxR, mu, logSigma): self.preSoftmaxPi = tf.Variable(preSoftmaxPi) self.preSoftmaxA = tf.Variable(preSoftmaxA) self.preSoftmaxR = tf.Variable(preSoftmaxR) self.mu = tf.Variable(mu) self.logSigma = tf.Variable(logSigma) pi = tf.nn.softmax(self.preSoftmaxPi) A = tf.nn.softmax(self.preSoftmaxA) R = tf.nn.softmax(self.preSoftmaxR) sigma = tf.exp(self.logSigma) # X will be TxD self.tfx = tf.placeholder(tf.float32, shape=(None, self.D), name='X') # first we need to calculate B # B[j,t] = probability of X being in state j at time t # = Gaussian mixture P( x(t) | mu(j), sigma(j) ) # idea: first calculate components and sum # note: we can use a for loop because M and K are not TF variables self.mvns = [] for j in range(self.M): self.mvns.append([]) for k in range(self.K): self.mvns[j].append( MVN(self.mu[j,k], sigma[j,k]) ) # note: we can use a for loop because M and K are not TF variables B = [] for j in range(self.M): components = [] for k in range(self.K): components.append( self.mvns[j][k].prob(self.tfx) ) # why? # because we can stack a list of tensors # but not a list of lists of tensors # components[j] will be K x T # we now want to multiply by the mixture probability (R) # result is M x T # which gives us P( X(t) | state j ) components = tf.stack(components) R_j = tf.reshape(R[j], [1, self.K]) p_x_t_j = tf.matmul(R_j, components) # now components[j] is just 1 x T --> T components = tf.reshape(p_x_t_j, [-1]) # now append it to B B.append(components) # should now be M x T B = tf.stack(B) # we should make it T x M since scan will loop through first index B = tf.transpose(B, [1, 0]) # now perform the forward algorithm def recurrence(old_a_old_s, B_t): old_a = tf.reshape(old_a_old_s[0], (1, self.M)) a = tf.matmul(old_a, A) * B_t a = tf.reshape(a, (self.M,)) s = tf.reduce_sum(a) return (a / s), s alpha, scale = tf.scan( fn=recurrence, elems=B[1:], initializer=(pi*B[0], np.float32(1.0)), ) # note: tensorflow is very strict about what types you pass in to initializer! # - cannot be list, must be tuple # - cannot be 1 (int), must be float32 self.cost_op = -tf.reduce_sum(tf.log(scale)) self.train_op = tf.train.AdamOptimizer(1e-2).minimize(self.cost_op) def set(self, preSoftmaxPi, preSoftmaxA, preSoftmaxR, mu, logSigma): # assume build has already been called # we just assign these new variables op1 = self.preSoftmaxPi.assign(preSoftmaxPi) op2 = self.preSoftmaxA.assign(preSoftmaxA) op3 = self.preSoftmaxR.assign(preSoftmaxR) op4 = self.mu.assign(mu) op5 = self.logSigma.assign(logSigma) self.session.run([op1, op2, op3, op4, op5]) def fit(self, X, max_iter=10): # train the HMM model using stochastic gradient descent N = len(X) print("number of train samples:", N) costs = [] for it in range(max_iter): if it % 1 == 0: print("it:", it) for n in range(N): # this would of course be much faster if we didn't do this on # every iteration of the loop c = self.get_cost_multi(X).sum() costs.append(c) self.session.run(self.train_op, feed_dict={self.tfx: X[n]}) plt.plot(costs) plt.show() def get_cost(self, x): return self.session.run(self.cost_op, feed_dict={self.tfx: x}) def get_cost_multi(self, X): return np.array([self.get_cost(x) for x in X]) def real_signal(): spf = wave.open('helloworld.wav', 'r') #Extract Raw Audio from Wav File # If you right-click on the file and go to "Get Info", you can see: # sampling rate = 16000 Hz # bits per sample = 16 # The first is quantization in time # The second is quantization in amplitude # We also do this for images! # 2^16 = 65536 is how many different sound levels we have signal = spf.readframes(-1) signal = np.fromstring(signal, 'Int16') T = len(signal) signal = (signal - signal.mean()) / signal.std() # signal needs to be of shape N x T(n) x D signals = signal.reshape(1, T, 1) hmm = HMM(3, 3, 1) hmm.init_random(signals) init = tf.global_variables_initializer() session = tf.InteractiveSession() session.run(init) hmm.set_session(session) hmm.fit(signals, max_iter=30) def fake_signal(): signals = get_signals() # assume all signals are same length signals = np.array(signals) hmm = HMM(5, 3, signals[0].shape[1]) # M, K, D hmm.init_random(signals) init = tf.global_variables_initializer() session = tf.InteractiveSession() session.run(init) hmm.set_session(session) hmm.fit(signals, max_iter=30) L = hmm.get_cost_multi(signals).sum() print("LL for fitted params:", L) # test in actual params _, _, _, pi, A, R, mu, sigma = big_init() # turn these into their "pre-softmax" forms pi = np.log(pi) A = np.log(A) R = np.log(R) M, K, D, _ = sigma.shape # need to convert full cov into diag cov logSigma = np.zeros((M, K, D)) for j in range(M): for k in range(D): logSigma[j,k] = np.log(np.diag(sigma[j,k])) hmm.set(pi, A, R, mu, logSigma) L = hmm.get_cost_multi(signals).sum() print("LL for actual params:", L) if __name__ == '__main__': # real_signal() fake_signal() ================================================ FILE: hmm_class/hmmc_theano.py ================================================ # https://deeplearningcourses.com/c/unsupervised-machine-learning-hidden-markov-models-in-python # https://udemy.com/unsupervised-machine-learning-hidden-markov-models-in-python # http://lazyprogrammer.me # Continuous-observation HMM in Theano using gradient descent. from __future__ import print_function, division from builtins import range # Note: you may need to update your version of future # sudo pip install -U future import wave import theano import theano.tensor as T import numpy as np import matplotlib.pyplot as plt # from theano.sandbox import solve # does not have gradient functionality from generate_c import get_signals, big_init def random_normalized(d1, d2): x = np.random.random((d1, d2)) return x / x.sum(axis=1, keepdims=True) class HMM: def __init__(self, M, K): self.M = M # number of hidden states self.K = K # number of Gaussians def fit(self, X, learning_rate=1e-2, max_iter=10): # train the HMM model using gradient descent N = len(X) D = X[0].shape[1] # assume each x is organized (T, D) pi0 = np.ones(self.M) / self.M # initial state distribution A0 = random_normalized(self.M, self.M) # state transition matrix R0 = np.ones((self.M, self.K)) / self.K # mixture proportions mu0 = np.zeros((self.M, self.K, D)) for i in range(self.M): for k in range(self.K): random_idx = np.random.choice(N) x = X[random_idx] random_time_idx = np.random.choice(len(x)) mu0[i,k] = x[random_time_idx] sigma0 = np.zeros((self.M, self.K, D, D)) for j in range(self.M): for k in range(self.K): sigma0[j,k] = np.eye(D) thx, cost = self.set(pi0, A0, R0, mu0, sigma0) pi_update = self.pi - learning_rate*T.grad(cost, self.pi) pi_update = pi_update / pi_update.sum() A_update = self.A - learning_rate*T.grad(cost, self.A) A_update = A_update / A_update.sum(axis=1).dimshuffle(0, 'x') R_update = self.R - learning_rate*T.grad(cost, self.R) R_update = R_update / R_update.sum(axis=1).dimshuffle(0, 'x') updates = [ (self.pi, pi_update), (self.A, A_update), (self.R, R_update), (self.mu, self.mu - learning_rate*T.grad(cost, self.mu)), (self.sigma, self.sigma - learning_rate*T.grad(cost, self.sigma)), ] train_op = theano.function( inputs=[thx], updates=updates, ) costs = [] for it in range(max_iter): print("it:", it) for n in range(N): c = self.log_likelihood_multi(X).sum() print("c:", c) costs.append(c) train_op(X[n]) print("A:", self.A.get_value()) print("mu:", self.mu.get_value()) print("sigma:", self.sigma.get_value()) print("R:", self.R.get_value()) print("pi:", self.pi.get_value()) plt.plot(costs) plt.show() def set(self, pi, A, R, mu, sigma): self.pi = theano.shared(pi) self.A = theano.shared(A) self.R = theano.shared(R) self.mu = theano.shared(mu) self.sigma = theano.shared(sigma) M, K = R.shape self.M = M self.K = K D = self.mu.shape[2] twopiD = (2*np.pi)**D # set up theano variables and functions thx = T.matrix('X') # represents a TxD matrix of sequential observations def mvn_pdf(x, mu, sigma): k = 1 / T.sqrt(twopiD * T.nlinalg.det(sigma)) e = T.exp(-0.5*(x - mu).T.dot(T.nlinalg.matrix_inverse(sigma).dot(x - mu))) return k*e def gmm_pdf(x): def state_pdfs(xt): def component_pdf(j, xt): Bj_t = 0 for k in range(self.K): Bj_t += self.R[j,k] * mvn_pdf(xt, self.mu[j,k], self.sigma[j,k]) return Bj_t Bt, _ = theano.scan( fn=component_pdf, sequences=T.arange(self.M), n_steps=self.M, outputs_info=None, non_sequences=[xt], ) return Bt B, _ = theano.scan( fn=state_pdfs, sequences=x, n_steps=x.shape[0], outputs_info=None, ) return B.T B = gmm_pdf(thx) # scale = T.zeros((thx.shape[0], 1), dtype=theano.config.floatX) # scale[0] = (self.pi*B[:,0]).sum() def recurrence(t, old_a, B): a = old_a.dot(self.A) * B[:, t] s = a.sum() return (a / s), s [alpha, scale], _ = theano.scan( fn=recurrence, sequences=T.arange(1, thx.shape[0]), outputs_info=[self.pi*B[:,0], None], n_steps=thx.shape[0]-1, non_sequences=[B], ) cost = -T.log(scale).sum() self.cost_op = theano.function( inputs=[thx], outputs=cost, ) return thx, cost def log_likelihood_multi(self, X): return np.array([self.cost_op(x) for x in X]) def real_signal(): spf = wave.open('helloworld.wav', 'r') #Extract Raw Audio from Wav File # If you right-click on the file and go to "Get Info", you can see: # sampling rate = 16000 Hz # bits per sample = 16 # The first is quantization in time # The second is quantization in amplitude # We also do this for images! # 2^16 = 65536 is how many different sound levels we have signal = spf.readframes(-1) signal = np.fromstring(signal, 'Int16') T = len(signal) signal = (signal - signal.mean()) / signal.std() hmm = HMM(5, 3) # signal needs to be of shape N x T(n) x D hmm.fit(signal.reshape(1, T, 1), learning_rate=1e-5, max_iter=20) def fake_signal(): signals = get_signals() hmm = HMM(5, 3) hmm.fit(signals) L = hmm.log_likelihood_multi(signals).sum() print("LL for fitted params:", L) # test in actual params _, _, _, pi, A, R, mu, sigma = big_init() hmm.set(pi, A, R, mu, sigma) L = hmm.log_likelihood_multi(signals).sum() print("LL for actual params:", L) if __name__ == '__main__': # real_signal() fake_signal() ================================================ FILE: hmm_class/hmmc_theano2.py ================================================ # https://deeplearningcourses.com/c/unsupervised-machine-learning-hidden-markov-models-in-python # https://udemy.com/unsupervised-machine-learning-hidden-markov-models-in-python # http://lazyprogrammer.me # Continuous-observation HMM in Theano using gradient descent. # This script differs from hmmc_theano.py in the following way: # Instead of re-normalizing the parameters at each iteration, # we instead make the parameters free to vary between -inf to +inf. # We then use softmax to ensure the probabilities are positive and sum to 1. from __future__ import print_function, division from builtins import range # Note: you may need to update your version of future # sudo pip install -U future import wave import theano import theano.tensor as T import numpy as np import matplotlib.pyplot as plt # from theano.sandbox import solve # does not have gradient functionality from generate_c import get_signals, big_init class HMM: def __init__(self, M, K): self.M = M # number of hidden states self.K = K # number of Gaussians def fit(self, X, learning_rate=1e-2, max_iter=10): # train the HMM model using gradient descent N = len(X) D = X[0].shape[1] # assume each x is organized (T, D) pi0 = np.ones(self.M) # initial state distribution A0 = np.random.randn(self.M, self.M) # state transition matrix R0 = np.ones((self.M, self.K)) # mixture proportions mu0 = np.zeros((self.M, self.K, D)) for i in range(self.M): for k in range(self.K): random_idx = np.random.choice(N) x = X[random_idx] random_time_idx = np.random.choice(len(x)) mu0[i,k] = x[random_time_idx] sigma0 = np.random.randn(self.M, self.K, D, D) thx, cost = self.set(pi0, A0, R0, mu0, sigma0) pi_update = self.preSoftmaxPi - learning_rate*T.grad(cost, self.preSoftmaxPi) A_update = self.preSoftmaxA - learning_rate*T.grad(cost, self.preSoftmaxA) R_update = self.preSoftmaxR - learning_rate*T.grad(cost, self.preSoftmaxR) mu_update = self.mu - learning_rate*T.grad(cost, self.mu) sigma_update = self.sigmaFactor - learning_rate*T.grad(cost, self.sigmaFactor) updates = [ (self.preSoftmaxPi, pi_update), (self.preSoftmaxA, A_update), (self.preSoftmaxR, R_update), (self.mu, mu_update), (self.sigmaFactor, sigma_update), ] train_op = theano.function( inputs=[thx], updates=updates, ) costs = [] for it in range(max_iter): print("it:", it) for n in range(N): c = self.log_likelihood_multi(X).sum() print("c:", c) costs.append(c) train_op(X[n]) plt.plot(costs) plt.show() def set(self, preSoftmaxPi, preSoftmaxA, preSoftmaxR, mu, sigmaFactor): self.preSoftmaxPi = theano.shared(preSoftmaxPi) self.preSoftmaxA = theano.shared(preSoftmaxA) self.preSoftmaxR = theano.shared(preSoftmaxR) self.mu = theano.shared(mu) self.sigmaFactor = theano.shared(sigmaFactor) M, K = preSoftmaxR.shape self.M = M self.K = K pi = T.nnet.softmax(self.preSoftmaxPi).flatten() A = T.nnet.softmax(self.preSoftmaxA) R = T.nnet.softmax(self.preSoftmaxR) D = self.mu.shape[2] twopiD = (2*np.pi)**D # set up theano variables and functions thx = T.matrix('X') # represents a TxD matrix of sequential observations def mvn_pdf(x, m, S): k = 1 / T.sqrt(twopiD * T.nlinalg.det(S)) e = T.exp(-0.5*(x - m).T.dot(T.nlinalg.matrix_inverse(S).dot(x - m))) return k*e def gmm_pdf(x): def state_pdfs(xt): def component_pdf(j, xt): Bj_t = 0 # j = T.cast(j, 'int32') for k in range(self.K): # k = int(k) # a = R[j,k] # b = mu[j,k] # c = sigma[j,k] L = self.sigmaFactor[j,k] S = L.dot(L.T) Bj_t += R[j,k] * mvn_pdf(xt, self.mu[j,k], S) return Bj_t Bt, _ = theano.scan( fn=component_pdf, sequences=T.arange(self.M), n_steps=self.M, outputs_info=None, non_sequences=[xt], ) return Bt B, _ = theano.scan( fn=state_pdfs, sequences=x, n_steps=x.shape[0], outputs_info=None, ) return B.T B = gmm_pdf(thx) # scale = T.zeros((thx.shape[0], 1), dtype=theano.config.floatX) # scale[0] = (self.pi*B[:,0]).sum() def recurrence(t, old_a, B): a = old_a.dot(A) * B[:, t] s = a.sum() return (a / s), s [alpha, scale], _ = theano.scan( fn=recurrence, sequences=T.arange(1, thx.shape[0]), outputs_info=[pi*B[:,0], None], n_steps=thx.shape[0]-1, non_sequences=[B], ) cost = -T.log(scale).sum() self.cost_op = theano.function( inputs=[thx], outputs=cost, ) return thx, cost def log_likelihood_multi(self, X): return np.array([self.cost_op(x) for x in X]) def real_signal(): spf = wave.open('helloworld.wav', 'r') #Extract Raw Audio from Wav File # If you right-click on the file and go to "Get Info", you can see: # sampling rate = 16000 Hz # bits per sample = 16 # The first is quantization in time # The second is quantization in amplitude # We also do this for images! # 2^16 = 65536 is how many different sound levels we have signal = spf.readframes(-1) signal = np.fromstring(signal, 'Int16') T = len(signal) signal = (signal - signal.mean()) / signal.std() hmm = HMM(3, 3) # signal needs to be of shape N x T(n) x D hmm.fit(signal.reshape(1, T, 1), learning_rate=2e-7, max_iter=20) def fake_signal(): signals = get_signals() hmm = HMM(5, 3) hmm.fit(signals, max_iter=3) L = hmm.log_likelihood_multi(signals).sum() print("LL for fitted params:", L) # test in actual params _, _, _, pi, A, R, mu, sigma = big_init() # turn these into their "pre-softmax" forms pi = np.log(pi) A = np.log(A) R = np.log(R) # decompose sigma using cholesky factorization sigma = np.linalg.cholesky(sigma) hmm.set(pi, A, R, mu, sigma) L = hmm.log_likelihood_multi(signals).sum() print("LL for actual params:", L) if __name__ == '__main__': # real_signal() fake_signal() ================================================ FILE: hmm_class/hmmd.py ================================================ # https://deeplearningcourses.com/c/unsupervised-machine-learning-hidden-markov-models-in-python # https://udemy.com/unsupervised-machine-learning-hidden-markov-models-in-python # http://lazyprogrammer.me # Discrete Hidden Markov Model (HMM) from __future__ import print_function, division from builtins import range # Note: you may need to update your version of future # sudo pip install -U future import numpy as np import matplotlib.pyplot as plt from datetime import datetime def random_normalized(d1, d2): x = np.random.random((d1, d2)) return x / x.sum(axis=1, keepdims=True) class HMM: def __init__(self, M): self.M = M # number of hidden states def fit(self, X, max_iter=30): t0 = datetime.now() np.random.seed(123) # train the HMM model using the Baum-Welch algorithm # a specific instance of the expectation-maximization algorithm # determine V, the vocabulary size # assume observables are already integers from 0..V-1 # X is a jagged array of observed sequences V = max(max(x) for x in X) + 1 N = len(X) self.pi = np.ones(self.M) / self.M # initial state distribution self.A = random_normalized(self.M, self.M) # state transition matrix self.B = random_normalized(self.M, V) # output distribution print("initial A:", self.A) print("initial B:", self.B) costs = [] for it in range(max_iter): if it % 10 == 0: print("it:", it) alphas = [] betas = [] P = np.zeros(N) for n in range(N): x = X[n] T = len(x) alpha = np.zeros((T, self.M)) alpha[0] = self.pi*self.B[:,x[0]] for t in range(1, T): tmp1 = alpha[t-1].dot(self.A) * self.B[:, x[t]] # tmp2 = np.zeros(self.M) # for i in range(self.M): # for j in range(self.M): # tmp2[j] += alpha[t-1,i] * self.A[i,j] * self.B[j, x[t]] # print "diff:", np.abs(tmp1 - tmp2).sum() alpha[t] = tmp1 P[n] = alpha[-1].sum() alphas.append(alpha) beta = np.zeros((T, self.M)) beta[-1] = 1 for t in range(T - 2, -1, -1): beta[t] = self.A.dot(self.B[:, x[t+1]] * beta[t+1]) betas.append(beta) # print "P:", P # break assert(np.all(P > 0)) cost = np.sum(np.log(P)) costs.append(cost) # now re-estimate pi, A, B self.pi = np.sum((alphas[n][0] * betas[n][0])/P[n] for n in range(N)) / N # print "self.pi:", self.pi # break den1 = np.zeros((self.M, 1)) den2 = np.zeros((self.M, 1)) a_num = 0 b_num = 0 for n in range(N): x = X[n] T = len(x) # print "den shape:", den.shape # test = (alphas[n][:-1] * betas[n][:-1]).sum(axis=0, keepdims=True).T # print "shape (alphas[n][:-1] * betas[n][:-1]).sum(axis=0): ", test.shape den1 += (alphas[n][:-1] * betas[n][:-1]).sum(axis=0, keepdims=True).T / P[n] den2 += (alphas[n] * betas[n]).sum(axis=0, keepdims=True).T / P[n] # tmp2 = np.zeros((self.M, 1)) # for i in range(self.M): # for t in range(T-1): # tmp2[i] += alphas[n][t,i] * betas[n][t,i] # tmp2 /= P[n] # # print "diff:", np.abs(tmp1 - tmp2).sum() # den += tmp1 # numerator for A a_num_n = np.zeros((self.M, self.M)) for i in range(self.M): for j in range(self.M): for t in range(T-1): a_num_n[i,j] += alphas[n][t,i] * self.A[i,j] * self.B[j, x[t+1]] * betas[n][t+1,j] a_num += a_num_n / P[n] # numerator for B # b_num_n = np.zeros((self.M, V)) # for i in range(self.M): # for j in range(V): # for t in range(T): # if x[t] == j: # b_num_n[i,j] += alphas[n][t][i] * betas[n][t][i] b_num_n2 = np.zeros((self.M, V)) for i in range(self.M): for t in range(T): b_num_n2[i,x[t]] += alphas[n][t,i] * betas[n][t,i] b_num += b_num_n2 / P[n] # tmp1 = a_num / den1 # tmp2 = np.zeros(a_num.shape) # for i in range(self.M): # for j in range(self.M): # tmp2[i,j] = a_num[i,j] / den1[i] # print "diff:", np.abs(tmp1 - tmp2).sum() # print "tmp1:", tmp1 # print "tmp2:", tmp2 self.A = a_num / den1 self.B = b_num / den2 # print "P:", P # break print("A:", self.A) print("B:", self.B) print("pi:", self.pi) print("Fit duration:", (datetime.now() - t0)) plt.plot(costs) plt.show() def likelihood(self, x): # returns log P(x | model) # using the forward part of the forward-backward algorithm T = len(x) alpha = np.zeros((T, self.M)) alpha[0] = self.pi*self.B[:,x[0]] for t in range(1, T): alpha[t] = alpha[t-1].dot(self.A) * self.B[:, x[t]] return alpha[-1].sum() def likelihood_multi(self, X): return np.array([self.likelihood(x) for x in X]) def log_likelihood_multi(self, X): return np.log(self.likelihood_multi(X)) def get_state_sequence(self, x): # returns the most likely state sequence given observed sequence x # using the Viterbi algorithm T = len(x) delta = np.zeros((T, self.M)) psi = np.zeros((T, self.M)) delta[0] = self.pi*self.B[:,x[0]] for t in range(1, T): for j in range(self.M): delta[t,j] = np.max(delta[t-1]*self.A[:,j]) * self.B[j, x[t]] psi[t,j] = np.argmax(delta[t-1]*self.A[:,j]) # backtrack states = np.zeros(T, dtype=np.int32) states[T-1] = np.argmax(delta[T-1]) for t in range(T-2, -1, -1): states[t] = psi[t+1, states[t+1]] return states def fit_coin(): X = [] for line in open('coin_data.txt'): # 1 for H, 0 for T x = [1 if e == 'H' else 0 for e in line.rstrip()] X.append(x) hmm = HMM(2) hmm.fit(X) L = hmm.log_likelihood_multi(X).sum() print("LL with fitted params:", L) # try true values hmm.pi = np.array([0.5, 0.5]) hmm.A = np.array([[0.1, 0.9], [0.8, 0.2]]) hmm.B = np.array([[0.6, 0.4], [0.3, 0.7]]) L = hmm.log_likelihood_multi(X).sum() print("LL with true params:", L) # try viterbi print("Best state sequence for:", X[0]) print(hmm.get_state_sequence(X[0])) if __name__ == '__main__': fit_coin() ================================================ FILE: hmm_class/hmmd_scaled.py ================================================ # https://deeplearningcourses.com/c/unsupervised-machine-learning-hidden-markov-models-in-python # https://udemy.com/unsupervised-machine-learning-hidden-markov-models-in-python # http://lazyprogrammer.me # Discrete Hidden Markov Model (HMM) with scaling from __future__ import print_function, division from builtins import range # Note: you may need to update your version of future # sudo pip install -U future import numpy as np import matplotlib.pyplot as plt def random_normalized(d1, d2): x = np.random.random((d1, d2)) return x / x.sum(axis=1, keepdims=True) class HMM: def __init__(self, M): self.M = M # number of hidden states def fit(self, X, max_iter=30): np.random.seed(123) # train the HMM model using the Baum-Welch algorithm # a specific instance of the expectation-maximization algorithm # determine V, the vocabulary size # assume observables are already integers from 0..V-1 # X is a jagged array of observed sequences V = max(max(x) for x in X) + 1 N = len(X) self.pi = np.ones(self.M) / self.M # initial state distribution self.A = random_normalized(self.M, self.M) # state transition matrix self.B = random_normalized(self.M, V) # output distribution print("initial A:", self.A) print("initial B:", self.B) costs = [] for it in range(max_iter): if it % 10 == 0: print("it:", it) # alpha1 = np.zeros((N, self.M)) alphas = [] betas = [] scales = [] logP = np.zeros(N) for n in range(N): x = X[n] T = len(x) scale = np.zeros(T) # alpha1[n] = self.pi*self.B[:,x[0]] alpha = np.zeros((T, self.M)) alpha[0] = self.pi*self.B[:,x[0]] scale[0] = alpha[0].sum() alpha[0] /= scale[0] for t in range(1, T): alpha_t_prime = alpha[t-1].dot(self.A) * self.B[:, x[t]] scale[t] = alpha_t_prime.sum() alpha[t] = alpha_t_prime / scale[t] logP[n] = np.log(scale).sum() alphas.append(alpha) scales.append(scale) beta = np.zeros((T, self.M)) beta[-1] = 1 for t in range(T - 2, -1, -1): beta[t] = self.A.dot(self.B[:, x[t+1]] * beta[t+1]) / scale[t+1] betas.append(beta) cost = np.sum(logP) costs.append(cost) # now re-estimate pi, A, B self.pi = np.sum((alphas[n][0] * betas[n][0]) for n in range(N)) / N den1 = np.zeros((self.M, 1)) den2 = np.zeros((self.M, 1)) a_num = np.zeros((self.M, self.M)) b_num = np.zeros((self.M, V)) for n in range(N): x = X[n] T = len(x) den1 += (alphas[n][:-1] * betas[n][:-1]).sum(axis=0, keepdims=True).T den2 += (alphas[n] * betas[n]).sum(axis=0, keepdims=True).T # numerator for A # a_num_n = np.zeros((self.M, self.M)) for i in range(self.M): for j in range(self.M): for t in range(T-1): a_num[i,j] += alphas[n][t,i] * betas[n][t+1,j] * self.A[i,j] * self.B[j, x[t+1]] / scales[n][t+1] # a_num += a_num_n # numerator for B # for i in range(self.M): # for j in range(V): # for t in range(T): # if x[t] == j: # b_num[i,j] += alphas[n][t][i] * betas[n][t][i] for i in range(self.M): for t in range(T): b_num[i,x[t]] += alphas[n][t,i] * betas[n][t,i] self.A = a_num / den1 self.B = b_num / den2 print("A:", self.A) print("B:", self.B) print("pi:", self.pi) plt.plot(costs) plt.show() def log_likelihood(self, x): # returns log P(x | model) # using the forward part of the forward-backward algorithm T = len(x) scale = np.zeros(T) alpha = np.zeros((T, self.M)) alpha[0] = self.pi*self.B[:,x[0]] scale[0] = alpha[0].sum() alpha[0] /= scale[0] for t in range(1, T): alpha_t_prime = alpha[t-1].dot(self.A) * self.B[:, x[t]] scale[t] = alpha_t_prime.sum() alpha[t] = alpha_t_prime / scale[t] return np.log(scale).sum() def log_likelihood_multi(self, X): return np.array([self.log_likelihood(x) for x in X]) def get_state_sequence(self, x): # returns the most likely state sequence given observed sequence x # using the Viterbi algorithm T = len(x) delta = np.zeros((T, self.M)) psi = np.zeros((T, self.M)) delta[0] = np.log(self.pi) + np.log(self.B[:,x[0]]) for t in range(1, T): for j in range(self.M): delta[t,j] = np.max(delta[t-1] + np.log(self.A[:,j])) + np.log(self.B[j, x[t]]) psi[t,j] = np.argmax(delta[t-1] + np.log(self.A[:,j])) # backtrack states = np.zeros(T, dtype=np.int32) states[T-1] = np.argmax(delta[T-1]) for t in range(T-2, -1, -1): states[t] = psi[t+1, states[t+1]] return states def fit_coin(): X = [] for line in open('coin_data.txt'): # 1 for H, 0 for T x = [1 if e == 'H' else 0 for e in line.rstrip()] X.append(x) hmm = HMM(2) hmm.fit(X) L = hmm.log_likelihood_multi(X).sum() print("LL with fitted params:", L) # try true values hmm.pi = np.array([0.5, 0.5]) hmm.A = np.array([[0.1, 0.9], [0.8, 0.2]]) hmm.B = np.array([[0.6, 0.4], [0.3, 0.7]]) L = hmm.log_likelihood_multi(X).sum() print("LL with true params:", L) # try viterbi print("Best state sequence for:", X[0]) print(hmm.get_state_sequence(X[0])) if __name__ == '__main__': fit_coin() ================================================ FILE: hmm_class/hmmd_tf.py ================================================ # https://deeplearningcourses.com/c/unsupervised-machine-learning-hidden-markov-models-in-python # https://udemy.com/unsupervised-machine-learning-hidden-markov-models-in-python # http://lazyprogrammer.me # Discrete Hidden Markov Model (HMM) in Tensorflow using gradient descent. from __future__ import print_function, division from builtins import range # Note: you may need to update your version of future # sudo pip install -U future import numpy as np import tensorflow as tf import matplotlib.pyplot as plt class HMM: def __init__(self, M): self.M = M # number of hidden states def set_session(self, session): self.session = session def fit(self, X, max_iter=10, print_period=1): # train the HMM model using stochastic gradient descent N = len(X) print("number of train samples:", N) costs = [] for it in range(max_iter): if it % print_period == 0: print("it:", it) for n in range(N): # this would of course be much faster if we didn't do this on # every iteration of the loop c = self.get_cost_multi(X).sum() costs.append(c) self.session.run(self.train_op, feed_dict={self.tfx: X[n]}) plt.plot(costs) plt.show() def get_cost(self, x): # returns log P(x | model) # using the forward part of the forward-backward algorithm # print "getting cost for:", x return self.session.run(self.cost, feed_dict={self.tfx: x}) def log_likelihood(self, x): return -self.session.run(self.cost, feed_dict={self.tfx: x}) def get_cost_multi(self, X): return np.array([self.get_cost(x) for x in X]) def build(self, preSoftmaxPi, preSoftmaxA, preSoftmaxB): M, V = preSoftmaxB.shape self.preSoftmaxPi = tf.Variable(preSoftmaxPi) self.preSoftmaxA = tf.Variable(preSoftmaxA) self.preSoftmaxB = tf.Variable(preSoftmaxB) pi = tf.nn.softmax(self.preSoftmaxPi) A = tf.nn.softmax(self.preSoftmaxA) B = tf.nn.softmax(self.preSoftmaxB) # define cost self.tfx = tf.placeholder(tf.int32, shape=(None,), name='x') def recurrence(old_a_old_s, x_t): old_a = tf.reshape(old_a_old_s[0], (1, M)) a = tf.matmul(old_a, A) * B[:, x_t] a = tf.reshape(a, (M,)) s = tf.reduce_sum(a) return (a / s), s # remember, tensorflow scan is going to loop through # all the values! # we treat the first value differently than the rest # so we only want to loop through tfx[1:] # the first scale being 1 doesn't affect the log-likelihood # because log(1) = 0 alpha, scale = tf.scan( fn=recurrence, elems=self.tfx[1:], initializer=(pi*B[:,self.tfx[0]], np.float32(1.0)), ) self.cost = -tf.reduce_sum(tf.log(scale)) self.train_op = tf.train.AdamOptimizer(1e-2).minimize(self.cost) def init_random(self, V): preSoftmaxPi0 = np.zeros(self.M).astype(np.float32) # initial state distribution preSoftmaxA0 = np.random.randn(self.M, self.M).astype(np.float32) # state transition matrix preSoftmaxB0 = np.random.randn(self.M, V).astype(np.float32) # output distribution self.build(preSoftmaxPi0, preSoftmaxA0, preSoftmaxB0) def set(self, preSoftmaxPi, preSoftmaxA, preSoftmaxB): op1 = self.preSoftmaxPi.assign(preSoftmaxPi) op2 = self.preSoftmaxA.assign(preSoftmaxA) op3 = self.preSoftmaxB.assign(preSoftmaxB) self.session.run([op1, op2, op3]) def fit_coin(): X = [] for line in open('coin_data.txt'): # 1 for H, 0 for T x = [1 if e == 'H' else 0 for e in line.rstrip()] X.append(x) # X = np.array(X).astype(np.int32) hmm = HMM(2) # the entire graph (including optimizer's variables) must be built # before calling global variables initializer! hmm.init_random(2) init = tf.global_variables_initializer() with tf.Session() as session: session.run(init) hmm.set_session(session) hmm.fit(X, max_iter=5) L = hmm.get_cost_multi(X).sum() print("LL with fitted params:", L) # try true values # remember these must be in their "pre-softmax" forms pi = np.log( np.array([0.5, 0.5]) ).astype(np.float32) A = np.log( np.array([[0.1, 0.9], [0.8, 0.2]]) ).astype(np.float32) B = np.log( np.array([[0.6, 0.4], [0.3, 0.7]]) ).astype(np.float32) hmm.set(pi, A, B) L = hmm.get_cost_multi(X).sum() print("LL with true params:", L) if __name__ == '__main__': fit_coin() ================================================ FILE: hmm_class/hmmd_theano.py ================================================ # https://deeplearningcourses.com/c/unsupervised-machine-learning-hidden-markov-models-in-python # https://udemy.com/unsupervised-machine-learning-hidden-markov-models-in-python # http://lazyprogrammer.me # Discrete Hidden Markov Model (HMM) in Theano using gradient descent. from __future__ import print_function, division from builtins import range # Note: you may need to update your version of future # sudo pip install -U future import numpy as np import theano import theano.tensor as T import matplotlib.pyplot as plt def random_normalized(d1, d2): x = np.random.random((d1, d2)) return x / x.sum(axis=1, keepdims=True) class HMM: def __init__(self, M): self.M = M # number of hidden states def fit(self, X, learning_rate=0.001, max_iter=10, V=None, p_cost=1.0, print_period=10): # train the HMM model using stochastic gradient descent # determine V, the vocabulary size # assume observables are already integers from 0..V-1 # X is a jagged array of observed sequences if V is None: V = max(max(x) for x in X) + 1 N = len(X) print("number of train samples:", N) pi0 = np.ones(self.M) / self.M # initial state distribution A0 = random_normalized(self.M, self.M) # state transition matrix B0 = random_normalized(self.M, V) # output distribution thx, cost = self.set(pi0, A0, B0) pi_update = self.pi - learning_rate*T.grad(cost, self.pi) pi_update = pi_update / pi_update.sum() A_update = self.A - learning_rate*T.grad(cost, self.A) A_update = A_update / A_update.sum(axis=1).dimshuffle(0, 'x') B_update = self.B - learning_rate*T.grad(cost, self.B) B_update = B_update / B_update.sum(axis=1).dimshuffle(0, 'x') updates = [ (self.pi, pi_update), (self.A, A_update), (self.B, B_update), ] train_op = theano.function( inputs=[thx], updates=updates, allow_input_downcast=True, ) # self.cost_op = theano.function( # inputs=[thx], # outputs=cost, # allow_input_downcast=True, # ) costs = [] for it in range(max_iter): if it % print_period == 0: print("it:", it) for n in range(N): # print "about to get the cost" # this would of course be much faster if we didn't do this on # every iteration of the loop c = self.get_cost_multi(X, p_cost).sum() costs.append(c) train_op(X[n]) print("A:", self.A.get_value()) print("B:", self.B.get_value()) print("pi:", self.pi.get_value()) print("len(costs):", len(costs)) plt.plot(costs) plt.show() def get_cost(self, x): # returns log P(x | model) # using the forward part of the forward-backward algorithm return self.cost_op(x) def log_likelihood(self, x): return -self.cost_op(x) def get_cost_multi(self, X, p_cost=1.0): P = np.random.random(len(X)) return np.array([self.get_cost(x) for x, p in zip(X, P) if p < p_cost]) def set(self, pi, A, B): self.pi = theano.shared(pi) self.A = theano.shared(A) self.B = theano.shared(B) # define cost thx = T.ivector('thx') def recurrence(t, old_a, x): a = old_a.dot(self.A) * self.B[:, x[t]] s = a.sum() return (a / s), s [alpha, scale], _ = theano.scan( fn=recurrence, sequences=T.arange(1, thx.shape[0]), outputs_info=[self.pi*self.B[:,thx[0]], None], n_steps=thx.shape[0]-1, non_sequences=thx ) cost = -T.log(scale).sum() self.cost_op = theano.function( inputs=[thx], outputs=cost, allow_input_downcast=True, ) return thx, cost def fit_coin(): X = [] for line in open('coin_data.txt'): # 1 for H, 0 for T x = [1 if e == 'H' else 0 for e in line.rstrip()] X.append(x) hmm = HMM(2) hmm.fit(X) L = hmm.get_cost_multi(X).sum() print("LL with fitted params:", L) # try true values pi = np.array([0.5, 0.5]) A = np.array([[0.1, 0.9], [0.8, 0.2]]) B = np.array([[0.6, 0.4], [0.3, 0.7]]) hmm.set(pi, A, B) L = hmm.get_cost_multi(X).sum() print("LL with true params:", L) if __name__ == '__main__': fit_coin() ================================================ FILE: hmm_class/hmmd_theano2.py ================================================ # https://deeplearningcourses.com/c/unsupervised-machine-learning-hidden-markov-models-in-python # https://udemy.com/unsupervised-machine-learning-hidden-markov-models-in-python # http://lazyprogrammer.me # Discrete Hidden Markov Model (HMM) in Theano using gradient descent. # This script differs from hmmd_theano.py in the following way: # Instead of re-normalizing the parameters at each iteration, # we instead make the parameters free to vary between -inf to +inf. # We then use softmax to ensure the probabilities are positive and sum to 1. from __future__ import print_function, division from builtins import range # Note: you may need to update your version of future # sudo pip install -U future import numpy as np import theano import theano.tensor as T import matplotlib.pyplot as plt class HMM: def __init__(self, M): self.M = M # number of hidden states def fit(self, X, learning_rate=0.001, max_iter=10, V=None, print_period=1): # train the HMM model using stochastic gradient descent # print "X to train:", X # determine V, the vocabulary size # assume observables are already integers from 0..V-1 # X is a jagged array of observed sequences if V is None: V = max(max(x) for x in X) + 1 N = len(X) print("number of train samples:", N) preSoftmaxPi0 = np.zeros(self.M) # initial state distribution preSoftmaxA0 = np.random.randn(self.M, self.M) # state transition matrix preSoftmaxB0 = np.random.randn(self.M, V) # output distribution thx, cost = self.set(preSoftmaxPi0, preSoftmaxA0, preSoftmaxB0) pi_update = self.preSoftmaxPi - learning_rate*T.grad(cost, self.preSoftmaxPi) A_update = self.preSoftmaxA - learning_rate*T.grad(cost, self.preSoftmaxA) B_update = self.preSoftmaxB - learning_rate*T.grad(cost, self.preSoftmaxB) updates = [ (self.preSoftmaxPi, pi_update), (self.preSoftmaxA, A_update), (self.preSoftmaxB, B_update), ] train_op = theano.function( inputs=[thx], updates=updates, allow_input_downcast=True, ) costs = [] for it in range(max_iter): if it % print_period == 0: print("it:", it) for n in range(N): # this would of course be much faster if we didn't do this on # every iteration of the loop c = self.get_cost_multi(X).sum() costs.append(c) train_op(X[n]) # print "A:", self.A.get_value() # print "B:", self.B.get_value() # print "pi:", self.pi.get_value() plt.plot(costs) plt.show() def get_cost(self, x): # returns log P(x | model) # using the forward part of the forward-backward algorithm # print "getting cost for:", x return self.cost_op(x) def log_likelihood(self, x): return -self.cost_op(x) def get_cost_multi(self, X): return np.array([self.get_cost(x) for x in X]) def set(self, preSoftmaxPi, preSoftmaxA, preSoftmaxB): self.preSoftmaxPi = theano.shared(preSoftmaxPi) self.preSoftmaxA = theano.shared(preSoftmaxA) self.preSoftmaxB = theano.shared(preSoftmaxB) pi = T.nnet.softmax(self.preSoftmaxPi).flatten() # softmax returns 1xD if input is a 1-D array of size D A = T.nnet.softmax(self.preSoftmaxA) B = T.nnet.softmax(self.preSoftmaxB) # define cost thx = T.ivector('thx') def recurrence(t, old_a, x): a = old_a.dot(A) * B[:, x[t]] s = a.sum() return (a / s), s [alpha, scale], _ = theano.scan( fn=recurrence, sequences=T.arange(1, thx.shape[0]), outputs_info=[pi*B[:,thx[0]], None], n_steps=thx.shape[0]-1, non_sequences=thx ) cost = -T.log(scale).sum() self.cost_op = theano.function( inputs=[thx], outputs=cost, allow_input_downcast=True, ) return thx, cost def fit_coin(): X = [] for line in open('coin_data.txt'): # 1 for H, 0 for T x = [1 if e == 'H' else 0 for e in line.rstrip()] X.append(x) hmm = HMM(2) hmm.fit(X) L = hmm.get_cost_multi(X).sum() print("LL with fitted params:", L) # try true values # remember these must be in their "pre-softmax" forms pi = np.log( np.array([0.5, 0.5]) ) A = np.log( np.array([[0.1, 0.9], [0.8, 0.2]]) ) B = np.log( np.array([[0.6, 0.4], [0.3, 0.7]]) ) hmm.set(pi, A, B) L = hmm.get_cost_multi(X).sum() print("LL with true params:", L) if __name__ == '__main__': fit_coin() ================================================ FILE: hmm_class/robert_frost.txt ================================================ Two roads diverged in a yellow wood, And sorry I could not travel both And be one traveler, long I stood And looked down one as far as I could To where it bent in the undergrowth; Then took the other, as just as fair, And having perhaps the better claim Because it was grassy and wanted wear, Though as for that the passing there Had worn them really about the same, And both that morning equally lay In leaves no step had trodden black. Oh, I kept the first for another day! Yet knowing how way leads on to way I doubted if I should ever come back. I shall be telling this with a sigh Somewhere ages and ages hence: Two roads diverged in a wood, and I, I took the one less traveled by, And that has made all the difference. Whose woods these are I think I know. His house is in the village, though; He will not see me stopping here To watch his woods fill up with snow. My little horse must think it queer To stop without a farmhouse near Between the woods and frozen lake The darkest evening of the year. He gives his harness bells a shake To ask if there is some mistake. The only other sound's the sweep Of easy wind and downy flake. The woods are lovely, dark and deep, But I have promises to keep, And miles to go before I sleep, And miles to go before I sleep. Some say the world will end in fire, Some say in ice. From what I've tasted of desire I hold with those who favor fire. But if it had to perish twice, I think I know enough of hate To say that for destruction ice Is also great And would suffice. Nature's first green is gold, Her hardest hue to hold. Her early leaf's a flower; But only so an hour. Then leaf subsides to leaf, So Eden sank to grief, So dawn goes down to day Nothing gold can stay. I have been one acquainted with the night. I have walked out in rain - and back in rain. I have outwalked the furthest city light. I have looked down the saddest city lane. I have passed by the watchman on his beat And dropped my eyes, unwilling to explain. I have stood still and stopped the sound of feet When far away an interrupted cry Came over houses from another street, But not to call me back or say good-bye; And further still at an unearthly height, One luminary clock against the sky Proclaimed the time was neither wrong nor right. I have been one acquainted with the night. When I go up through the mowing field, The headless aftermath, Smooth-laid like thatch with the heavy dew, Half closes the garden path. And when I come to the garden ground, The whir of sober birds Up from the tangle of withered weeds Is sadder than any words A tree beside the wall stands bare, But a leaf that lingered brown, Disturbed, I doubt not, by my thought, Comes softly rattling down. I end not far from my going forth By picking the faded blue Of the last remaining aster flower To carry again to you. A voice said, Look me in the stars And tell me truly, men of earth, If all the soul-and-body scars Were not too much to pay for birth. To think to know the country and now know The hillside on the day the sun lets go Ten million silver lizards out of snow! As often as I've seen it done before I can't pretend to tell the way it's done. It looks as if some magic of the sun Lifted the rug that bred them on the floor And the light breaking on them made them run. But if I though to stop the wet stampede, And caught one silver lizard by the tail, And put my foot on one without avail, And threw myself wet-elbowed and wet-kneed In front of twenty others' wriggling speed,- In the confusion of them all aglitter, And birds that joined in the excited fun By doubling and redoubling song and twitter, I have no doubt I'd end by holding none. It takes the moon for this. The sun's a wizard By all I tell; but so's the moon a witch. From the high west she makes a gentle cast And suddenly, without a jerk or twitch, She has her speel on every single lizard. I fancied when I looked at six o'clock The swarm still ran and scuttled just as fast. The moon was waiting for her chill effect. I looked at nine: the swarm was turned to rock In every lifelike posture of the swarm, Transfixed on mountain slopes almost erect. Across each other and side by side they lay. The spell that so could hold them as they were Was wrought through trees without a breath of storm To make a leaf, if there had been one, stir. One lizard at the end of every ray. The thought of my attempting such a stray! ONCE on the kind of day called "weather breeder," When the heat slowly hazes and the sun By its own power seems to be undone, I was half boring through, half climbing through A swamp of cedar. Choked with oil of cedar And scurf of plants, and weary and over-heated, And sorry I ever left the road I knew, I paused and rested on a sort of hook That had me by the coat as good as seated, And since there was no other way to look, Looked up toward heaven, and there against the blue, Stood over me a resurrected tree, A tree that had been down and raised again— A barkless spectre. He had halted too, As if for fear of treading upon me. I saw the strange position of his hands— Up at his shoulders, dragging yellow strands Of wire with something in it from men to men. "You here?" I said. "Where aren't you nowadays And what's the news you carry—if you know? And tell me where you're off for—Montreal? Me? I'm not off for anywhere at all. Sometimes I wander out of beaten ways Half looking for the orchid Calypso." Brown lived at such a lofty farm That everyone for miles could see His lantern when he did his chores In winter after half-past three. And many must have seen him make His wild descent from there one night, 'Cross lots, 'cross walls, 'cross everything, Describing rings of lantern light. Between the house and barn the gale Got him by something he had on And blew him out on the icy crust That cased the world, and he was gone! Walls were all buried, trees were few: He saw no stay unless he stove A hole in somewhere with his heel. But though repeatedly he strove And stamped and said things to himself, And sometimes something seemed to yield, He gained no foothold, but pursued His journey down from field to field. Sometimes he came with arms outspread Like wings, revolving in the scene Upon his longer axis, and With no small dignity of mien. Faster or slower as he chanced, Sitting or standing as he chose, According as he feared to risk His neck, or thought to spare his clothes, He never let the lantern drop. And some exclaimed who saw afar The figures he described with it, "I wonder what those signals are Brown makes at such an hour of night! He's celebrating something strange. I wonder if he's sold his farm, Or been made Master of the Grange." He reeled, he lurched, he bobbed, he checked; He fell and made the lantern rattle (But saved the light from going out.) So half-way down he fought the battle Incredulous of his own bad luck. And then becoming reconciled To everything, he gave it up And came down like a coasting child. "Well—I—be—" that was all he said, As standing in the river road, He looked back up the slippery slope (Two miles it was) to his abode. Sometimes as an authority On motor-cars, I'm asked if I Should say our stock was petered out, And this is my sincere reply: Yankees are what they always were. Don't think Brown ever gave up hope Of getting home again because He couldn't climb that slippery slope; Or even thought of standing there Until the January thaw Should take the polish off the crust. He bowed with grace to natural law, And then went round it on his feet, After the manner of our stock; Not much concerned for those to whom, At that particular time o'clock, It must have looked as if the course He steered was really straight away From that which he was headed for— Not much concerned for them, I say: No more so than became a man— And politician at odd seasons. I've kept Brown standing in the cold While I invested him with reasons; But now he snapped his eyes three times; Then shook his lantern, saying, "Ile's 'Bout out!" and took the long way home By road, a matter of several miles. NOW that they've got it settled whose I be, I'm going to tell them something they won't like: They've got it settled wrong, and I can prove it. Flattered I must be to have two towns fighting To make a present of me to each other. They don't dispose me, either one of them, To spare them any trouble. Double trouble's Always the witch's motto anyway. I'll double theirs for both of them- you watch me. They'll find they've got the whole thing to do over, That is, if facts is what they want to go by. They set a lot (now don't they?) by a record Of Arthur Amy's having once been up For Hog Reeve in March Meeting here in Warren. I could have told them any time this twelvemonth The Arthur Amy I was married to Couldn't have been the one they say was up In Warren at March Meeting for the reason He wa'n't but fifteen at the time they say. The Arthur Amy I was married to voted the only times he ever voted, Which wasn't many, in the town of Wentworth. One of the times was when 'twas in the warrant To see if the town wanted to take over The tote road to our clearing where we lived. I'll tell you who'd remember- Heman Lapish. Their Arthur Amy was the father of mine. So now they've dragged it through the law courts once I guess they'd better drag it through again. Wentworth and Warren's both good towns to live in, Only I happen to prefer to live In Wentworth from now on; and when all's said, Right's right, and the temptation to do right When I can hurt someone by doing it Has always been too much for me, it has. I know of some folks that'd be set up At having in their town a noted witch: But most would have to think of the expense That even I would be. They ought to know That as a witch I'd often milk a bat And that'd be enough to last for days. It'd make my position stronger, I think, If I was to consent to give some sign To make it surer that I was a witch? It wa'n't no sign, I s'pose, when Mallice Huse Said that I took him out in his old age And rode all over everything on him Until I'd had him worn to skin and bones, And if I'd left him hitched unblanketed In front of one Town Hall, I'd left him hitched In front of every one in Grafton County. Some cried shame on me not to blanket him, The poor old man. It would have been all right If some one hadn't said to gnaw the posts He stood beside and leave his trade mark on them, So they could recognize them. Not a post That they could hear tell of was scarified. They made him keep on gnawing till he whined. Then that same smarty someone said to look- He'd bet Huse was a cribber and had gnawed The crib he slept in- and as sure's you're born They found he'd gnawed the four posts of his bed, All four of them to splinters. What did that prove? Not that he hadn't gnawed the hitching posts He said he had besides. Because a horse Gnaws in the stable ain't no proof to me He don't gnaw trees and posts and fences too. But everybody took it for proof. I was a strapping girl of twenty then. The smarty someone who spoiled everything Was Arthur Amy. You know who he was. That was the way he started courting me. He never said much after we were married, But I mistrusted he was none too proud Of having interfered in the Huse business. I guess he found he got more out of me By having me a witch. Or something happened To turn him round. He got to saying things To undo what he'd done and make it right, Like, 'No, she ain't come back from kiting yet. Last night was one of her nights out. She's kiting. She thinks when the wind makes a night of it She might as well herself.' But he liked best To let on he was plagued to death with me: If anyone had seen me coming home Over the ridgepole, 'stride of a broomstick, As often as he had in the tail of the night, He guessed they'd know what he had to put up with. Well, I showed Arthur Amy signs enough Off from the house as far as we could keep And from barn smells you can't wash out of ploughed ground With all the rain and snow of seven years; And I don't mean just skulls of Roger's Rangers On Moosilauke, but woman signs to man, Only bewitched so I would last him longer. Up where the trees grow short, the mosses tall, I made him gather me wet snow berries On slippery rocks beside a waterfall. I made him do it for me in the dark. And he liked everything I made him do. I hope if he is where he sees me now He's so far off he can't see what I've come to. You _can_ come down from everything to nothing. All is, if I'd a-known when I was young And full of it, that this would be the end, It doesn't seem as if I'd had the courage To make so free and kick up in folks' faces. I might have, but it doesn't seem as if. Old Davis owned a solid mica mountain In Dalton that would someday make his fortune. There'd been some Boston people out to see it: And experts said that deep down in the mountain The mica sheets were big as plate-glass windows. He'd like to take me there and show it to me. 'I'll tell you what you show me. You remember You said you knew the place where once, on Kinsman, The early Mormons made a settlement And built a stone baptismal font outdoors- But Smith, or someone, called them off the mountain To go West to a worse fight with the desert. You said you'd seen the stone baptismal font. Well, take me there.' Someday I will.' 'Today.' 'Huh, that old bathtub, what is that to see? Let's talk about it.' 'Let's go see the place.' 'To shut you up I'll tell you what I'll do: I'll find that fountain if it takes all summer, And both of our united strengths, to do it.' 'You've lost it, then?' 'Not so but I can find it. No doubt it's grown up some to woods around it. The mountain may have shifted since I saw it In eighty-five.' 'As long ago as that?' 'If I remember rightly, it had sprung A leak and emptied then. And forty years Can do a good deal to bad masonry. You won't see any Mormon swimming in it. But you have said it, and we're off to find it. Old as I am, I'm going to let myself Be dragged by you all over everywhere- ' 'I thought you were a guide.' 'I am a guide, And that's why I can't decently refuse you.' We made a day of it out of the world, Ascending to descend to reascend. The old man seriously took his bearings, And spoke his doubts in every open place. We came out on a look-off where we faced A cliff, and on the cliff a bottle painted, Or stained by vegetation from above, A likeness to surprise the thrilly tourist. 'Well, if I haven't brought you to the fountain, At least I've brought you to the famous Bottle.' 'I won't accept the substitute. It's empty.' 'So's everything.' 'I want my fountain.' 'I guess you'd find the fountain just as empty. And anyway this tells me where I am.' 'Hadn't you long suspected where you were?' 'You mean miles from that Mormon settlement? Look here, you treat your guide with due respect If you don't want to spend the night outdoors. I vow we must be near the place from where The two converging slides, the avalanches, On Marshall, look like donkey's ears. We may as well see that and save the day.' 'Don't donkey's ears suggest we shake our own?' 'For God's sake, aren't you fond of viewing nature? You don't like nature. All you like is books. What signify a donkey's cars and bottle, However natural? Give you your books! Well then, right here is where I show you books. Come straight down off this mountain just as fast As we can fall and keep a-bouncing on our feet. It's hell for knees unless done hell-for-leather.' Be ready, I thought, for almost anything. We struck a road I didn't recognize, But welcomed for the chance to lave my shoes In dust once more. We followed this a mile, Perhaps, to where it ended at a house I didn't know was there. It was the kind To bring me to for broad-board paneling. I never saw so good a house deserted. 'Excuse me if I ask you in a window That happens to be broken, Davis said. 'The outside doors as yet have held against us. I want to introduce you to the people Who used to live here. They were Robinsons. You must have heard of Clara Robinson, The poetess who wrote the book of verses And had it published. It was all about The posies on her inner windowsill, And the birds on her outer windowsill, And how she tended both, or had them tended: She never tended anything herself. She was 'shut in' for life. She lived her whole Life long in bed, and wrote her things in bed. I'll show You how she had her sills extended To entertain the birds and hold the flowers. Our business first's up attic with her books.' We trod uncomfortably on crunching glass Through a house stripped of everything Except, it seemed, the poetess's poems. Books, I should say!- if books are what is needed. A whole edition in a packing case That, overflowing like a horn of plenty, Or like the poetess's heart of love, Had spilled them near the window, toward the light Where driven rain had wet and swollen them. Enough to stock a village library- Unfortunately all of one kind, though. They bad been brought home from some publisher And taken thus into the family. Boys and bad hunters had known what to do With stone and lead to unprotected glass: Shatter it inward on the unswept floors. How had the tender verse escaped their outrage? By being invisible for what it was, Or else by some remoteness that defied them To find out what to do to hurt a poem. Yet oh! the tempting flatness of a book, To send it sailing out the attic window Till it caught wind and, opening out its covers, Tried to improve on sailing like a tile By flying like a bird (silent in flight, But all the burden of its body song), Only to tumble like a stricken bird, And lie in stones and bushes unretrieved. Books were not thrown irreverently about. They simply lay where someone now and then, Having tried one, had dropped it at his feet And left it lying where it fell rejected. Here were all those the poetess's life Had been too short to sell or give away. 'Take one,' Old Davis bade me graciously. 'Why not take two or three?' 'Take all you want.' Good-looking books like that.' He picked one fresh In virgin wrapper from deep in the box, And stroked it with a horny-handed kindness. He read in one and I read in another, Both either looking for or finding something. The attic wasps went missing by like bullets. I was soon satisfied for the time being. All the way home I kept remembering The small book in my pocket. It was there. The poetess had sighed, I knew, in heaven At having eased her heart of one more copy- Legitimately. My demand upon her, Though slight, was a demand. She felt the tug. In time she would be rid of all her books. I stay; But it isn't as if There wasn't always Hudson's Bay And the fur trade, A small skiff And a paddle blade. I can just see my tent pegged, And me on the floor, Cross-legged, And a trapper looking in at the door With furs to sell. His name's Joe, Alias John, And between what he doesn't know And won't tell About where Henry Hudson's gone, I can't say he's much help; But we get on. The seal yelp On an ice cake. It's not men by some mistake? No, There's not a soul For a windbreak Between me and the North Pole— Except always John-Joe, My French Indian Esquimaux, And he's off setting traps In one himself perhaps. Give a headshake Over so much bay Thrown away In snow and mist That doesn't exist, I was going to say, For God, man, or beast's sake, Yet does perhaps for all three. Don't ask Joe What it is to him. It's sometimes dim What it is to me, Unless it be It's the old captain's dark fate Who failed to find or force a strait In its two-thousand-mile coast; And his crew left him where be failed, And nothing came of all be sailed. It's to say, 'You and I—' To such a ghost— You and I Off here With the dead race of the Great Auk!' And, 'Better defeat almost, If seen clear, Than life's victories of doubt That need endless talk-talk To make them out.' I staid the night for shelter at a farm Behind the mountains, with a mother and son, Two old-believers. They did all the talking. MOTHER Folks think a witch who has familiar spirits She could call up to pass a winter evening, But won't, should be burned at the stake or something. Summoning spirits isn't 'Button, button, Who's got the button,' I would have them know. SON: Mother can make a common table rear And kick with two legs like an army mule. MOTHER: And when I've done it, what good have I done? Rather than tip a table for you, let me Tell you what Ralle the Sioux Control once told me. He said the dead had souls, but when I asked him How could that be - I thought the dead were souls, He broke my trance. Don't that make you suspicious That there's something the dead are keeping back? Yes, there's something the dead are keeping back. SON: You wouldn't want to tell him what we have Up attic, mother? MOTHER: Bones - a skeleton. SON: But the headboard of mother's bed is pushed Against the' attic door: the door is nailed. It's harmless. Mother hears it in the night Halting perplexed behind the barrier Of door and headboard. Where it wants to get Is back into the cellar where it came from. MOTHER: We'll never let them, will we, son! We'll never ! SON: It left the cellar forty years ago And carried itself like a pile of dishes Up one flight from the cellar to the kitchen, Another from the kitchen to the bedroom, Another from the bedroom to the attic, Right past both father and mother, and neither stopped it. Father had gone upstairs; mother was downstairs. I was a baby: I don't know where I was. MOTHER: The only fault my husband found with me - I went to sleep before I went to bed, Especially in winter when the bed Might just as well be ice and the clothes snow. The night the bones came up the cellar-stairs Toffile had gone to bed alone and left me, But left an open door to cool the room off So as to sort of turn me out of it. I was just coming to myself enough To wonder where the cold was coming from, When I heard Toffile upstairs in the bedroom And thought I heard him downstairs in the cellar. The board we had laid down to walk dry-shod on When there was water in the cellar in spring Struck the hard cellar bottom. And then someone Began the stairs, two footsteps for each step, The way a man with one leg and a crutch, Or a little child, comes up. It wasn't Toffile: It wasn't anyone who could be there. The bulkhead double-doors were double-locked And swollen tight and buried under snow. The cellar windows were banked up with sawdust And swollen tight and buried under snow. It was the bones. I knew them - and good reason. My first impulse was to get to the knob And hold the door. But the bones didn't try The door; they halted helpless on the landing, Waiting for things to happen in their favour.' The faintest restless rustling ran all through them. I never could have done the thing I did If the wish hadn't been too strong in me To see how they were mounted for this walk. I had a vision of them put together Not like a man, but like a chandelier. So suddenly I flung the door wide on him. A moment he stood balancing with emotion, And all but lost himself. (A tongue of fire Flashed out and licked along his upper teeth. Smoke rolled inside the sockets of his eyes.) Then he came at me with one hand outstretched, The way he did in life once; but this time I struck the hand off brittle on the floor, And fell back from him on the floor myself. The finger-pieces slid in all directions. (Where did I see one of those pieces lately? Hand me my button-box- it must be there.) I sat up on the floor and shouted, 'Toffile, It's coming up to you.' It had its choice Of the door to the cellar or the hall. It took the hall door for the novelty, And set off briskly for so slow a thing, Stillgoing every which way in the joints, though, So that it looked like lightning or a scribble, >From the slap I had just now given its hand. I listened till it almost climbed the stairs >From the hall to the only finished bedroom, Before I got up to do anything; Then ran and shouted, 'Shut the bedroom door, Toffile, for my sake!' 'Company?' he said, 'Don't make me get up; I'm too warm in bed.' So lying forward weakly on the handrail I pushed myself upstairs, and in the light (The kitchen had been dark) I had to own I could see nothing. 'Toffile, I don't see it. It's with us in the room though. It's the bones.' 'What bones?' 'The cellar bones- out of the grave.' That made him throw his bare legs out of bed And sit up by me and take hold of me. I wanted to put out the light and see If I could see it, or else mow the room, With our arms at the level of our knees, And bring the chalk-pile down. 'I'll tell you what- It's looking for another door to try. The uncommonly deep snow has made him think Of his old song, The Wild Colonial Boy, He always used to sing along the tote-road. He's after an open door to get out-doors. Let's trap him with an open door up attic.' Toffile agreed to that, and sure enough, Almost the moment he was given an opening, The steps began to climb the attic stairs. I heard them. Toffile didn't seem to hear them. 'Quick !' I slammed to the door and held the knob. 'Toffile, get nails.' I made him nail the door shut, And push the headboard of the bed against it. Then we asked was there anything Up attic that we'd ever want again. The attic was less to us than the cellar. If the bones liked the attic, let them have it. Let them stay in the attic. When they sometimes Come down the stairs at night and stand perplexed Behind the door and headboard of the bed, Brushing their chalky skull with chalky fingers, With sounds like the dry rattling of a shutter, That's what I sit up in the dark to say- To no one any more since Toffile died. 2o3 Let them stay in the attic since they went there. I promised Toffile to be cruel to them For helping them be cruel once to him. SON: We think they had a grave down in the cellar. MOTHER: We know they had a grave down in the cellar. SON: We never could find out whose bones they were. MOTHER: Yes, we could too, son. Tell the truth for once. They were a man's his father killed for me. I mean a man he killed instead of me. The least I could do was to help dig their grave. We were about it one night in the cellar. Son knows the story: but 'twas not for him To tell the truth, suppose the time had come. Son looks surprised to see me end a lie We'd kept all these years between ourselves So as to have it ready for outsiders. But to-night I don't care enough to lie- I don't remember why I ever cared. Toffile, if he were here, I don't believe Could tell you why he ever cared himself- She hadn't found the finger-bone she wanted Among the buttons poured out in her lap. I verified the name next morning: Toffile. The rural letter-box said Toffile Lajway. The west was getting out of gold, The breath of air had died of cold, When shoeing home across the white, I thought I saw a bird alight. In summer when I passed the place I had to stop and lift my face; A bird with an angelic gift Was singing in it sweet and swift. No bird was singing in it now. A single leaf was on a bough, And that was all there was to see In going twice around the tree. From my advantage on a hill I judged that such a crystal chill Was only adding frost to snow As gilt to gold that wouldn't show. A brush had left a crooked stroke Of what was either cloud or smoke From north to south across the blue; A piercing little star was through. A governor it was proclaimed this time, When all who would come seeking in New Hampshire Ancestral memories might come together. And those of the name Stark gathered in Bow, A rock-strewn town where farming has fallen off, And sprout-lands flourish where the axe has gone. Someone had literally run to earth In an old cellar hole in a by-road The origin of all the family there. Thence they were sprung, so numerous a tribe That now not all the houses left in town Made shift to shelter them without the help Of here and there a tent in grove and orchard. They were at Bow, but that was not enough: Nothing would do but they must fix a day To stand together on the crater's verge That turned them on the world, and try to fathom The past and get some strangeness out of it. But rain spoiled all. The day began uncertain, With clouds low trailing and moments of rain that misted. The young folk held some hope out to each other Till well toward noon when the storm settled down With a swish in the grass. 'What if the others Are there,' they said. 'It isn't going to rain.' Only one from a farm not far away Strolled thither, not expecting he would find Anyone else, but out of idleness. One, and one other, yes, for there were two. The second round the curving hillside road Was a girl; and she halted some way off To reconnoitre, and then made up her mind At least to pass by and see who he was, And perhaps hear some word about the weather. This was some Stark she didn't know. He nodded. 'No fête to-day,' he said. 'It looks that way.' She swept the heavens, turning on her heel. 'I only idled down.' 'I idled down.' Provision there had been for just such meeting Of stranger cousins, in a family tree Drawn on a sort of passport with the branch Of the one bearing it done in detail- Some zealous one's laborious device. She made a sudden movement toward her bodice, As one who clasps her heart. They laughed together. 'Stark?' he inquired. 'No matter for the proof.' 'Yes, Stark. And you?' 'I'm Stark.' He drew his passport. 'You know we might not be and still be cousins: The town is full of Chases, Lowes, and Baileys, All claiming some priority in Starkness. My mother was a Lane, yet might have married Anyone upon earth and still her children Would have been Starks, and doubtless here to-day.' 'You riddle with your genealogy Like a Viola. I don't follow you.' 'I only mean my mother was a Stark Several times over, and by marrying father No more than brought us back into the name.' 'One ought not to be thrown into confusion By a plain statement of relationship, But I own what you say makes my head spin. You take my card- you seem so good at such things- And see if you can reckon our cousinship. Why not take seats here on the cellar wall And dangle feet among the raspberry vines?' 'Under the shelter of the family tree.' 'Just so- that ought to be enough protection.' 'Not from the rain. I think it's going to rain.' 'It's raining.' 'No, it's misting; let's be fair. Does the rain seem to you to cool the eyes?' The situation was like this: the road Bowed outward on the mountain half-way up, And disappeared and ended not far off. No one went home that way. The only house Beyond where they were was a shattered seedpod. And below roared a brook hidden in trees, The sound of which was silence for the place. This he sat listening to till she gave judgment. 'On father's side, it seems, we're- let me see- - ' 'Don't be too technical.- You have three cards.' 'Four cards, one yours, three mine, one for each branch Of the Stark family I'm a member of.' 'D'you know a person so related to herself Is supposed to be mad.' 'I may be mad.' 'You look so, sitting out here in the rain Studying genealogy with me You never saw before. What will we come to With all this pride of ancestry, we Yankees? I think we're all mad. Tell me why we're here Drawn into town about this cellar hole Like wild geese on a lake before a storm? What do we see in such a hole, I wonder.' 'The Indians had a myth of Chicamoztoc, Which means The Seven Caves that We Came out of. This is the pit from which we Starks were digged.' 'You must be learned. That's what you see in it?' 'And what do you see?' 'Yes, what do I see? First let me look. I see raspberry vines- - ' 'Oh, if you're going to use your eyes, just hear What I see. It's a little, little boy, As pale and dim as a match flame in the sun; He's groping in the cellar after jam, He thinks it's dark and it's flooded with daylight.' 'He's nothing. Listen. When I lean like this I can make out old Grandsir Stark distinctly,- With his pipe in his mouth and his brown jug- Bless you, it isn't Grandsir Stark, it's Granny, But the pipe's there and smoking and the jug. She's after cider, the old girl, she's thirsty; Here's hoping she gets her drink and gets out safely.' 'Tell me about her. Does she look like me?' 'She should, shouldn't she, you're so many times Over descended from her. I believe She does look like you. Stay the way you are. The nose is just the same, and so's the chin- Making allowance, making due allowance.' 'You poor, dear, great, great, great, great Granny!' 'See that you get her greatness right. Don't stint her.' 'Yes, it's important, though you think it isn't. I won't be teased. But see how wet I am.' 'Yes, you must go; we can't stay here for ever. But wait until I give you a hand up. A bead of silver water more or less Strung on your hair won't hurt your summer looks. I wanted to try something with the noise That the brook raises in the empty valley. We have seen visions- now consult the voices. Something I must have learned riding in trains When I was young. I used the roar To set the voices speaking out of it, Speaking or singing, and the band-music playing. Perhaps you have the art of what I mean. I've never listened in among the sounds That a brook makes in such a wild descent. It ought to give a purer oracle.' 'It's as you throw a picture on a screen: The meaning of it all is out of you; The voices give you what you wish to hear.' 'Strangely, it's anything they wish to give.' 'Then I don't know. It must be strange enough. I wonder if it's not your make-believe. What do you think you're like to hear to-day?' 'From the sense of our having been together- But why take time for what I'm like to hear? I'll tell you what the voices really say. You will do very well right where you are A little longer. I mustn't feel too hurried, Or I can't give myself to hear the voices.' 'Is this some trance you are withdrawing into?' 'You must be very still; you mustn't talk.' 'I'll hardly breathe.' 'The voices seem to say- - ' 'I'm waiting.' 'Don't! The voices seem to say: Call her Nausicaa, the unafraid Of an acquaintance made adventurously.' 'I let you say that- on consideration.' 'I don't see very well how you can help it. You want the truth. I speak but by the voices. You see they know I haven't had your name, Though what a name should matter between us- - ' 'I shall suspect- - ' 'Be good. The voices say: Call her Nausicaa, and take a timber That you shall find lies in the cellar charred Among the raspberries, and hew and shape it For a door-sill or other corner piece In a new cottage on the ancient spot. The life is not yet all gone out of it. And come and make your summer dwelling here, And perhaps she will come, still unafraid, And sit before you in the open door With flowers in her lap until they fade, But not come in across the sacred sill- - ' 'I wonder where your oracle is tending. You can see that there's something wrong with it, Or it would speak in dialect. Whose voice Does it purport to speak in? Not old Grandsir's Nor Granny's, surely. Call up one of them. They have best right to be heard in this place.' 'You seem so partial to our great-grandmother (Nine times removed. Correct me if I err.) You will be likely to regard as sacred Anything she may say. But let me warn you, Folks in her day were given to plain speaking. You think you'd best tempt her at such a time?' 'It rests with us always to cut her off.' 'Well then, it's Granny speaking: 'I dunnow! Mebbe I'm wrong to take it as I do. There ain't no names quite like the old ones though, Nor never will be to my way of thinking. One mustn't bear too hard on the new comers, But there's a dite too many of them for comfort. I should feel easier if I could see More of the salt wherewith they're to be salted. Son, you do as you're told! You take the timber- It's as sound as the day when it was cut- And begin over- - ' There, she'd better stop. You can see what is troubling Granny, though. But don't you think we sometimes make too much Of the old stock? What counts is the ideals, And those will bear some keeping still about.' 'I can see we are going to be good friends.' 'I like your 'going to be.' You said just now It's going to rain.' 'I know, and it was raining. I let you say all that. But I must go now.' 'You let me say it? on consideration? How shall we say good-bye in such a case?' 'How shall we?' 'Will you leave the way to me?' 'No, I don't trust your eyes. You've said enough. Now give me your hand up.- Pick me that flower.' 'Where shall we meet again?' 'Nowhere but here Once more before we meet elsewhere.' 'In rain?' 'It ought to be in rain. Sometime in rain. In rain to-morrow, shall we, if it rains? But if we must, in sunshine.' So she went. Builder, in building the little house, In every way you may please yourself; But please please me in the kitchen chimney: Don't build me a chimney upon a shelf. However far you must go for bricks, Whatever they cost a-piece or a pound, But me enough for a full-length chimney, And build the chimney clear from the ground. It's not that I'm greatly afraid of fire, But I never heard of a house that throve (And I know of one that didn't thrive) Where the chimney started above the stove. And I dread the ominous stain of tar That there always is on the papered walls, And the smell of fire drowned in rain That there always is when the chimney's false. A shelf's for a clock or vase or picture, But I don't see why it should have to bear A chimney that only would serve to remind me Of castles I used to build in air. I had for my winter evening walk- No one at all with whom to talk, But I had the cottages in a row Up to their shining eyes in snow. And I thought I had the folk within: I had the sound of a violin; I had a glimpse through curtain laces Of youthful forms and youthful faces. I had such company outward bound. I went till there were no cottages found. I turned and repented, but coming back I saw no window but that was black. Over the snow my creaking feet Disturbed the slumbering village street Like profanation, by your leave, At ten o'clock of a winter eve. Inscription for a Garden Wall Winds blow the open grassy places bleak; But where this old wall burns a sunny cheek, They eddy over it too toppling weak To blow the earth or anything self-clear; Moisture and color and odor thicken here. The hours of daylight gather atmosphere. To Ridgely Torrence On Last Looking into His 'Hesperides' I often see flowers from a passing car That are gone before I can tell what they are. I want to get out of the train and go back To see what they were beside the track. I name all the flowers I am sure they weren't; Not fireweed loving where woods have burnt- Not bluebells gracing a tunnel mouth- Not lupine living on sand and drouth. Was something brushed across my mind That no one on earth will ever find? Heaven gives it glimpses only to those Not in position to look too close. Back out of all this now too much for us, Back in a time made simple by the loss Of detail, burned, dissolved, and broken off Like graveyard marble sculpture in the weather, There is a house that is no more a house Upon a farm that is no more a farm And in a town that is no more a town. The road there, if you'll let a guide direct you Who only has at heart your getting lost, May seem as if it should have been a quarry - Great monolithic knees the former town Long since gave up pretense of keeping covered. And there's a story in a book about it: Besides the wear of iron wagon wheels The ledges show lines ruled southeast-northwest, The chisel work of an enormous Glacier That braced his feet against the Arctic Pole. You must not mind a certain coolness from him Still said to haunt this side of Panther Mountain. Nor need you mind the serial ordeal Of being watched from forty cellar holes As if by eye pairs out of forty firkins. As for the woods' excitement over you That sends light rustle rushes to their leaves, Charge that to upstart inexperience. Where were they all not twenty years ago? They think too much of having shaded out A few old pecker-fretted apple trees. Make yourself up a cheering song of how Someone's road home from work this once was, Who may be just ahead of you on foot Or creaking with a buggy load of grain. The height of the adventure is the height Of country where two village cultures faded Into each other. Both of them are lost. And if you're lost enough to find yourself By now, pull in your ladder road behind you And put a sign up CLOSED to all but me. Then make yourself at home. The only field Now left's no bigger than a harness gall. First there's the children's house of make-believe, Some shattered dishes underneath a pine, The playthings in the playhouse of the children. Weep for what little things could make them glad. Then for the house that is no more a house, But only a belilaced cellar hole, Now slowly closing like a dent in dough. This was no playhouse but a house in earnest. Your destination and your destiny's A brook that was the water of the house, Cold as a spring as yet so near its source, Too lofty and original to rage. (We know the valley streams that when aroused Will leave their tatters hung on barb and thorn.) I have kept hidden in the instep arch Of an old cedar at the waterside A broken drinking goblet like the Grail Under a spell so the wrong ones can't find it, So can't get saved, as Saint Mark says they mustn't. (I stole the goblet from the children's playhouse.) Here are your waters and your watering place. Drink and be whole again beyond confusion. I WALKED down alone Sunday after church To the place where John has been cutting trees To see for myself about the birch He said I could have to bush my peas. The sun in the new-cut narrow gap Was hot enough for the first of May, And stifling hot with the odor of sap From stumps still bleeding their life away. The frogs that were peeping a thousand shrill Wherever the ground was low and wet, The minute they heard my step went still To watch me and see what I came to get. Birch boughs enough piled everywhere!— All fresh and sound from the recent axe. Time someone came with cart and pair And got them off the wild flower's backs. They might be good for garden things To curl a little finger round, The same as you seize cat's-cradle strings, And lift themselves up off the ground. Small good to anything growing wild, They were crooking many a trillium That had budded before the boughs were piled And since it was coming up had to come. Over back where they speak of life as staying ('You couldn't call it living, for it ain't'), There was an old, old house renewed with paint, And in it a piano loudly playing. Out in the plowed ground in the cold a digger, Among unearthed potatoes standing still, Was counting winter dinners, one a hill, With half an ear to the piano's vigor. All that piano and new paint back there, Was it some money suddenly come into? Or some extravagance young love had been to? Or old love on an impulse not to care- Not to sink under being man and wife, But get some color and music out of life? It was long I lay Awake that night Wishing that night Would name the hour And tell me whether To call it day (Though not yet light) And give up sleep. The snow fell deep With the hiss of spray; Two winds would meet, One down one street, One down another, And fight in a smother Of dust and feather. I could not say, But feared the cold Had checked the pace Of the tower clock By tying together Its hands of gold Before its face. Then cane one knock! A note unruffled Of earthly weather, Though strange and muffled. The tower said, 'One!' And then a steeple. They spoke to themselves And such few people As winds might rouse From sleeping warm (But not unhouse). They left the storm That struck en masse My window glass Like a beaded fur. In that grave One They spoke of the sun And moon and stars, Saturn and Mars And Jupiter. Still more unfettered, They left the named And spoke of the lettered, The sigmas and taus Of constellations. They filled their throats With the furthest bodies To which man sends his Speculation, Beyond which God is; The cosmic motes Of yawning lenses. Their solemn peals Were not their own: They spoke for the clock With whose vast wheels Theirs interlock. In that grave word Uttered alone The utmost star Trembled and stirred, Though set so far Its whirling frenzies Appear like standing in one self station. It has not ranged, And save for the wonder Of once expanding To be a nova, It has not changed To the eye of man On planets over Around and under It in creation Since man began To drag down man And nation nation. The surest thing there is is we are riders, And though none too successful at it, guiders, Through everything presented, land and tide And now the very air, of what we ride. What is this talked-of mystery of birth But being mounted bareback on the earth? We can just see the infant up astride, His small fist buried in the bushy hide. There is our wildest mount- a headless horse. But though it runs unbridled off its course, And all our blandishments would seem defied, We have ideas yet that we haven't tried. I let myself in at the kitchen door. 'It's you,' she said. 'I can't get up. Forgive me Not answering your knock. I can no more Let people in than I can keep them out. I'm getting too old for my size, I tell them. My fingers are about all I've the use of So's to take any comfort. I can sew: I help out with this beadwork what I can.' 'That's a smart pair of pumps you're beading there. Who are they for?' 'You mean?- oh, for some miss. I can't keep track of other people's daughters. Lord, if I were to dream of everyone Whose shoes I primped to dance in!' 'And where's John?' 'Haven't you seen him? Strange what set you off To come to his house when he's gone to yours. You can't have passed each other. I know what: He must have changed his mind and gone to Garlands. He won't be long in that case. You can wait. Though what good you can be, or anyone- It's gone so far. You've heard? Estelle's run off.' 'Yes, what's it all about? When did she go?' 'Two weeks since.' 'She's in earnest, it appears.' 'I'm sure she won't come back. She's hiding somewhere. I don't know where myself. John thinks I do. He thinks I only have to say the word, And she'll come back. But, bless you, I'm her mother- I can't talk to her, and, Lord, if I could!' 'It will go hard with John. What will he do? He can't find anyone to take her place.' 'Oh, if you ask me that, what will he do? He gets some sort of bakeshop meals together, With me to sit and tell him everything, What's wanted and how much and where it is. But when I'm gone- of course I can't stay here: Estelle's to take me when she's settled down. He and I only hinder one another. I tell them they can't get me through the door, though: I've been built in here like a big church organ. We've been here fifteen years.' 'That's a long time To live together and then pull apart. How do you see him living when you're gone? Two of you out will leave an empty house.' 'I don't just see him living many years, Left here with nothing but the furniture. I hate to think of the old place when we're gone, With the brook going by below the yard, And no one here but hens blowing about. If he could sell the place, but then, he can't: No one will ever live on it again. It's too run down. This is the last of it. What I think he will do, is let things smash. He'll sort of swear the time away. He's awful! I never saw a man let family troubles Make so much difference in his man's affairs. He's just dropped everything. He's like a child. I blame his being brought up by his mother. He's got hay down that's been rained on three times. He hoed a little yesterday for me: I thought the growing things would do him good. Something went wrong. I saw him throw the hoe Sky-high with both hands. I can see it now- Come here- I'll show you- in that apple tree. That's no way for a man to do at his age: He's fifty-five, you know, if he's a day.' 'Aren't you afraid of him? What's that gun for?' 'Oh, that's been there for hawks since chicken-time. John Hall touch me! Not if he knows his friends. I'll say that for him, John's no threatener Like some men folk. No one's afraid of him; All is, he's made up his mind not to stand What he has got to stand.' 'Where is Estelle? Couldn't one talk to her? What does she say? You say you don't know where she is.' 'Nor want to! She thinks if it was bad to live with him, It must be right to leave him.' 'Which is wrong!' 'Yes, but he should have married her.' 'I know.' 'The strain's been too much for her all these years: I can't explain it any other way. It's different with a man, at least with John: He knows he's kinder than the run of men. Better than married ought to be as good As married- that's what he has always said. I know the way he's felt- but all the same!' 'I wonder why he doesn't marry her And end it.' 'Too late now: she wouldn't have him. He's given her time to think of something else. That's his mistake. The dear knows my interest Has been to keep the thing from breaking up. This is a good home: I don't ask for better. But when I've said, 'Why shouldn't they be married,' He'd say, 'Why should they?' no more words than that.' 'And after all why should they? John's been fair I take it. What was his was always hers. There was no quarrel about property.' 'Reason enough, there was no property. A friend or two as good as own the farm, Such as it is. It isn't worth the mortgage.' 'I mean Estelle has always held the purse.' 'The rights of that are harder to get at. I guess Estelle and I have filled the purse. 'Twas we let him have money, not he us. John's a bad farmer. I'm not blaming him. Take it year in, year out, he doesn't make much. We came here for a home for me, you know, Estelle to do the housework for the board Of both of us. But look how it turns out: She seems to have the housework, and besides, Half of the outdoor work, though as for that, He'd say she does it more because she likes it. You see our pretty things are all outdoors. Our hens and cows and pigs are always better Than folks like us have any business with. Farmers around twice as well off as we Haven't as good. They don't go with the farm. One thing you can't help liking about John, He's fond of nice things- too fond, some would say. But Estelle don't complain: she's like him there. She wants our hens to be the best there are. You never saw this room before a show, Full of lank, shivery, half-drowned birds In separate coops, having their plumage done. The smell of the wet feathers in the heat! You spoke of John's not being safe to stay with. You don't know what a gentle lot we are: We wouldn't hurt a hen! You ought to see us Moving a flock of hens from place to place. We're not allowed to take them upside down, All we can hold together by the legs. Two at a time's the rule, one on each arm, No matter how far and how many times We have to go.' 'You mean that's John's idea.' 'And we live up to it; or I don't know What childishness he wouldn't give way to. He manages to keep the upper hand On his own farm. He's boss. But as to hens: We fence our flowers in and the hens range. Nothing's too good for them. We say it pays. John likes to tell the offers he has had, Twenty for this cock, twenty-five for that. He never takes the money. If they're worth That much to sell, they're worth as much to keep. Bless you, it's all expense, though. Reach me down The little tin box on the cupboard shelf, The upper shelf, the tin box. That's the one. I'll show you. Here you are.' 'What's this?' 'A bill- For fifty dollars for one Langshang cock- Receipted. And the cock is in the yard.' 'Not in a glass case, then?' 'He'd need a tall one: He can eat off a barrel from the ground. He's been in a glass case, as you may say, The Crystal Palace, London. He's imported. John bought him, and we paid the bill with beads- Wampum, I call it. Mind, we don't complain. But you see, don't you, we take care of him.' 'And like it, too. It makes it all the worse.' 'It seems as if. And that's not all: he's helpless In ways that I can hardly tell you of. Sometimes he gets possessed to keep accounts To see where all the money goes so fast. You know how men will be ridiculous. But it's just fun the way he gets bedeviled- If he's untidy now, what will he be- - ? 'It makes it all the worse. You must be blind.' 'Estelle's the one. You needn't talk to me.' 'Can't you and I get to the root of it? What's the real trouble? What will satisfy her?' 'It's as I say: she's turned from him, that's all.' 'But why, when she's well off? Is it the neighbours, Being cut off from friends?' 'We have our friends. That isn't it. Folks aren't afraid of us.' 'She's let it worry her. You stood the strain, And you're her mother.' 'But I didn't always. I didn't relish it along at first. But I got wonted to it. And besides- John said I was too old to have grandchildren. But what's the use of talking when it's done? She won't come back- it's worse than that- she can't.' 'Why do you speak like that? What do you know? What do you mean?- she's done harm to herself?' 'I mean she's married- married someone else.' 'Oho, oho!' 'You don't believe me.' 'Yes, I do, Only too well. I knew there must be something! So that was what was back. She's bad, that's all!' 'Bad to get married when she had the chance?' 'Nonsense! See what's she done! But who, who- - ' 'Who'd marry her straight out of such a mess? Say it right out- no matter for her mother. The man was found. I'd better name no names. John himself won't imagine who he is.' 'Then it's all up. I think I'll get away. You'll be expecting John. I pity Estelle; I suppose she deserves some pity, too. You ought to have the kitchen to yourself To break it to him. You may have the job.' 'You needn't think you're going to get away. John's almost here. I've had my eye on someone Coming down Ryan's Hill. I thought 'twas him. Here he is now. This box! Put it away. And this bill.' 'What's the hurry? He'll unhitch.' 'No, he won't, either. He'll just drop the reins And turn Doll out to pasture, rig and all. She won't get far before the wheels hang up On something- there's no harm. See, there he is! My, but he looks as if he must have heard!' John threw the door wide but he didn't enter. 'How are you, neighbour? Just the man I'm after. Isn't it Hell,' he said. 'I want to know. Come out here if you want to hear me talk. I'll talk to you, old woman, afterward. I've got some news that maybe isn't news. What are they trying to do to me, these two?' 'Do go along with him and stop his shouting.' She raised her voice against the closing door: 'Who wants to hear your news, you- dreadful fool?' A winter garden in an alder swamp, Where conies now come out to sun and romp, As near a paradise as it can be And not melt snow or start a dormant tree. It lifts existence on a plane of snow One level higher than the earth below, One level nearer heaven overhead, And last year's berries shining scarlet red. It lifts a gaunt luxuriating beast Where he can stretch and hold his highest feat On some wild apple tree's young tender bark, What well may prove the year's high girdle mark. So near to paradise all pairing ends: Here loveless birds now flock as winter friends, Content with bud-inspecting. They presume To say which buds are leaf and which are bloom. A feather-hammer gives a double knock. This Eden day is done at two o'clock. An hour of winter day might seem too short To make it worth life's while to wake and sport. ================================================ FILE: hmm_class/scan1.py ================================================ # https://deeplearningcourses.com/c/unsupervised-machine-learning-hidden-markov-models-in-python # https://udemy.com/unsupervised-machine-learning-hidden-markov-models-in-python # http://lazyprogrammer.me # theano scan example: calculate x^2 from __future__ import print_function, division from builtins import range # Note: you may need to update your version of future # sudo pip install -U future import numpy as np import theano import theano.tensor as T x = T.vector('x') def square(x): return x*x outputs, updates = theano.scan( fn=square, sequences=x, n_steps=x.shape[0], ) square_op = theano.function( inputs=[x], outputs=[outputs], ) o_val = square_op(np.array([1, 2, 3, 4, 5])) print("output:", o_val) ================================================ FILE: hmm_class/scan2.py ================================================ # https://deeplearningcourses.com/c/unsupervised-machine-learning-hidden-markov-models-in-python # https://udemy.com/unsupervised-machine-learning-hidden-markov-models-in-python # http://lazyprogrammer.me # theano scan example: calculate fibonacci from __future__ import print_function, division from builtins import range # Note: you may need to update your version of future # sudo pip install -U future import numpy as np import theano import theano.tensor as T N = T.iscalar('N') def recurrence(n, fn_1, fn_2): return fn_1 + fn_2, fn_1 outputs, updates = theano.scan( fn=recurrence, sequences=T.arange(N), n_steps=N, outputs_info=[1., 1.] ) fibonacci = theano.function( inputs=[N], outputs=outputs, ) o_val = fibonacci(8) print("output:", o_val) ================================================ FILE: hmm_class/scan3.py ================================================ # https://deeplearningcourses.com/c/unsupervised-machine-learning-hidden-markov-models-in-python # https://udemy.com/unsupervised-machine-learning-hidden-markov-models-in-python # http://lazyprogrammer.me # theano scan example - low pass filter from __future__ import print_function, division from builtins import range # Note: you may need to update your version of future # sudo pip install -U future import numpy as np import matplotlib.pyplot as plt import theano import theano.tensor as T X = 2*np.random.randn(300) + np.sin(np.linspace(0, 3*np.pi, 300)) plt.plot(X) plt.title("original") plt.show() decay = T.scalar('decay') sequence = T.vector('sequence') def recurrence(x, last, decay): return (1-decay)*x + decay*last outputs, _ = theano.scan( fn=recurrence, sequences=sequence, n_steps=sequence.shape[0], outputs_info=[np.float64(0)], non_sequences=[decay] ) lpf = theano.function( inputs=[sequence, decay], outputs=outputs, ) Y = lpf(X, 0.99) plt.plot(Y) plt.title("filtered") plt.show() ================================================ FILE: hmm_class/site_data.csv ================================================ -1,8 4,8 -1,2 1,B -1,5 7,5 7,C -1,9 -1,0 0,3 2,B -1,6 3,C -1,5 0,5 1,0 -1,7 3,4 8,B -1,5 3,0 -1,9 4,6 7,2 3,2 6,B 3,2 9,9 7,6 4,3 1,6 -1,6 7,B 2,B 3,B 4,B 2,8 4,B -1,5 -1,7 -1,8 5,B 2,3 1,4 1,6 3,1 5,0 4,4 0,8 4,5 3,7 -1,8 -1,0 -1,1 6,2 9,C 4,5 0,5 -1,7 8,0 6,0 -1,0 6,8 -1,0 0,C 8,8 -1,1 4,C 0,B 2,C -1,9 9,9 3,6 -1,4 6,4 -1,2 8,5 8,1 9,C -1,7 4,1 9,3 6,2 0,B 5,4 0,9 6,4 4,8 -1,2 8,4 1,C -1,8 -1,4 2,C 9,B 6,2 9,0 7,B 4,0 9,9 3,B 8,8 6,2 5,6 0,4 7,2 8,0 3,0 -1,8 -1,7 2,1 7,9 1,9 1,B -1,9 9,5 8,1 -1,7 9,7 4,C 5,8 2,B 7,7 2,9 -1,3 -1,9 9,6 7,3 6,4 6,C 3,9 8,1 3,9 -1,5 2,7 0,6 -1,7 -1,7 1,0 6,4 3,0 1,0 3,C 1,8 -1,7 1,5 1,5 0,4 -1,6 4,C 2,2 6,7 9,9 8,9 -1,2 3,5 8,4 -1,8 -1,6 -1,4 2,5 4,6 -1,1 -1,4 9,9 7,6 9,B 4,7 5,B -1,7 7,9 -1,6 -1,3 5,7 7,C 0,7 5,7 4,7 9,B -1,7 3,4 4,0 9,C 2,0 3,1 -1,8 2,B 9,5 5,B 6,0 5,5 5,1 8,C -1,3 -1,7 7,3 1,C 0,B 9,7 6,4 7,6 4,7 2,6 2,4 2,0 1,7 6,4 9,C 9,4 9,C 3,2 6,4 9,8 -1,1 -1,3 6,7 5,7 0,9 5,5 7,8 9,9 -1,4 1,6 7,9 2,9 5,2 0,6 6,5 -1,9 9,0 -1,8 2,B 4,B 5,9 -1,6 -1,2 1,1 7,C 7,2 -1,8 -1,5 -1,6 0,9 6,B -1,1 2,9 1,C 2,9 0,C 7,1 1,B 1,7 6,0 9,7 2,B 8,7 5,2 3,B 8,6 2,B 6,2 0,8 3,4 8,3 -1,1 0,6 9,5 4,2 8,B 6,B 2,9 4,6 -1,7 8,0 3,7 -1,7 3,3 -1,5 1,8 3,3 -1,1 -1,9 4,2 0,C 3,7 0,8 -1,0 1,8 -1,7 8,2 6,9 -1,8 4,B 8,9 3,C -1,2 0,0 5,7 -1,8 1,C 8,5 3,5 7,C 6,B 6,7 0,6 0,C 8,C 2,6 -1,4 3,B 0,5 9,2 3,3 4,7 6,5 1,3 4,2 6,B 1,6 -1,8 5,2 2,1 8,1 4,1 6,7 6,7 7,1 7,4 9,5 3,9 5,1 8,B 2,8 2,8 9,6 2,2 2,B 8,4 9,3 3,7 3,6 9,6 4,5 -1,5 -1,2 8,B 6,9 4,5 6,0 6,6 -1,4 7,C 0,2 8,6 5,6 8,B 4,C 4,1 0,7 9,8 3,C -1,3 7,C 3,6 0,C 9,1 9,7 0,0 5,0 -1,5 3,9 6,B 5,C 0,4 6,7 3,0 0,9 8,B 7,8 -1,0 7,9 5,C 9,C 2,1 2,9 6,B 1,8 7,3 0,5 4,1 0,6 -1,3 2,B -1,8 4,C 1,5 6,4 3,7 1,B 3,1 4,7 4,C 5,0 9,8 0,6 -1,3 6,5 1,B 6,6 -1,9 -1,9 0,7 0,B 9,4 9,9 8,C 2,3 6,7 4,C 1,7 -1,5 4,1 8,3 -1,9 1,4 1,9 1,1 7,0 8,9 6,B 6,1 8,7 8,1 7,1 9,5 1,6 9,C 4,B -1,8 5,0 4,1 -1,1 2,7 5,9 5,4 2,3 2,1 0,B 8,6 6,C 1,3 5,B 6,8 7,3 4,8 -1,1 0,8 6,6 2,8 1,2 4,6 -1,3 -1,4 1,9 -1,8 3,3 -1,9 1,B 5,3 5,9 5,8 -1,4 -1,2 -1,4 4,B 3,5 9,8 -1,8 7,C -1,8 8,B -1,1 -1,6 -1,5 -1,5 6,4 0,2 2,1 0,8 -1,0 5,C 1,9 2,7 1,7 5,3 8,5 7,4 4,2 4,C 9,B 1,9 3,5 0,5 0,B 1,2 7,0 4,6 2,8 5,2 0,B 1,3 1,B 7,B 0,C -1,8 7,9 8,0 -1,2 -1,3 8,4 8,1 7,B 7,0 7,0 1,6 9,C 5,C 0,7 8,C 6,4 6,2 1,7 3,0 1,B -1,5 1,B 8,7 9,2 9,7 1,0 2,5 3,0 -1,9 9,B 9,2 5,B 2,B 9,7 1,4 3,B -1,9 -1,7 7,2 -1,5 -1,6 0,2 -1,8 1,C -1,3 6,B 6,B 9,B 0,B 6,7 8,8 4,6 2,C 9,4 -1,7 7,6 8,1 -1,5 -1,2 4,C 2,6 2,1 2,B -1,5 1,4 1,7 0,4 3,5 7,7 6,2 0,5 0,C -1,4 6,7 0,0 2,0 8,2 0,2 7,7 7,1 0,C 2,6 2,5 2,9 0,5 1,8 8,3 3,B 9,2 9,4 2,C 1,2 6,9 -1,3 2,8 -1,7 -1,2 -1,7 -1,9 3,8 7,3 9,B 9,C 2,7 -1,3 8,6 1,7 7,1 1,8 9,4 -1,8 -1,1 9,8 6,7 5,5 -1,6 9,5 4,C 8,0 7,2 1,C 5,C -1,9 2,5 -1,4 4,7 0,C 3,1 7,2 -1,8 7,4 0,0 3,6 5,7 -1,3 2,6 -1,3 3,C 2,C 7,C 7,7 1,0 1,B 8,1 2,5 6,8 7,0 8,5 0,6 7,4 9,8 -1,3 4,6 1,8 3,8 9,5 -1,0 0,2 3,9 6,0 -1,7 7,6 4,B 7,1 1,B 1,2 8,3 8,C 2,4 8,B 3,B 7,C -1,5 0,6 9,8 2,C 4,0 1,3 4,B 9,2 1,0 -1,4 7,C 8,9 1,0 8,C 8,8 6,4 3,0 -1,6 -1,1 -1,5 5,6 -1,7 2,7 2,4 -1,3 6,9 3,0 1,9 6,3 3,B 5,C 7,6 8,2 -1,8 3,0 -1,5 -1,9 2,5 -1,3 2,B 1,B 7,1 9,B -1,7 2,2 5,C 5,0 1,7 7,6 -1,0 3,8 2,8 0,0 4,2 0,B 4,B 0,5 1,6 0,6 -1,5 5,0 5,B 0,B 2,8 7,5 9,C -1,7 7,2 9,4 8,0 0,1 5,B -1,6 5,0 8,3 6,8 7,3 2,2 6,8 0,7 -1,6 1,4 -1,1 2,5 7,B 3,0 4,2 -1,0 4,9 -1,3 4,B 2,6 6,4 8,0 1,4 2,B 1,4 5,C 7,C 5,9 5,C 3,5 0,9 5,0 -1,7 -1,4 -1,7 1,B -1,3 5,0 -1,8 8,6 5,B 4,1 -1,9 0,1 5,2 6,3 8,C 0,3 0,6 4,C 5,1 7,8 6,7 -1,1 -1,2 -1,0 -1,3 1,C 1,C 1,2 0,1 -1,5 6,C 5,8 5,B -1,2 3,7 1,B 6,7 5,4 8,B 2,6 8,7 7,3 -1,5 3,B 1,C 8,5 6,0 0,7 5,2 3,6 -1,0 1,0 -1,8 5,2 9,C 7,5 0,5 2,1 -1,0 0,B 6,7 1,8 7,8 2,2 8,3 0,2 9,9 8,0 0,1 7,B 0,8 3,C -1,0 4,B -1,0 0,1 5,6 8,B -1,0 4,B 2,0 3,4 -1,0 4,8 8,7 0,7 6,6 5,4 7,3 5,C 1,5 3,5 -1,8 1,6 -1,5 7,3 -1,0 1,B 1,3 4,C 0,5 7,2 4,C 2,7 2,2 9,1 6,8 -1,0 5,5 -1,3 -1,0 2,B 9,B 3,C 4,8 -1,9 9,2 5,2 8,6 -1,9 6,9 9,3 2,6 5,0 -1,3 4,B 1,7 0,2 6,C 5,1 -1,0 3,B 3,C 3,1 2,3 6,B -1,4 1,2 4,B 5,6 -1,8 4,0 1,0 7,B -1,0 1,8 6,7 5,C 9,B 6,8 4,6 7,2 4,1 5,C -1,5 9,C 7,5 -1,5 -1,1 2,7 7,2 9,C 0,C 0,C -1,0 7,1 4,4 5,0 4,1 2,4 2,8 0,8 8,9 6,9 9,B 1,B 7,1 6,4 -1,5 9,1 5,5 4,2 3,C 5,5 8,C 4,2 9,C 0,4 8,B 5,1 1,1 2,3 0,C 8,2 -1,6 5,7 5,7 6,C 0,4 -1,6 -1,0 -1,2 9,1 -1,5 1,C -1,2 7,7 -1,0 4,B 4,7 9,9 9,9 2,C -1,5 6,1 8,9 3,0 -1,1 6,6 7,6 9,4 2,C -1,6 6,9 3,7 5,3 3,0 9,7 8,1 7,4 5,B 3,1 5,0 -1,4 -1,2 0,9 5,B 2,1 0,8 8,1 0,4 4,8 0,6 0,6 6,6 5,8 8,9 8,4 1,8 6,5 3,2 0,7 -1,5 -1,2 2,7 3,5 0,B 7,6 7,B 0,C 6,2 -1,4 4,3 9,C -1,2 8,B 1,1 3,9 0,B 7,B 6,B 9,0 6,B -1,7 8,6 3,6 0,B -1,4 1,0 9,C 3,9 6,0 -1,3 3,C 8,B 8,3 1,C -1,7 4,1 0,C 9,0 7,C 1,B 3,9 0,5 2,C 8,2 5,9 7,9 9,8 -1,4 1,C 0,B 4,7 8,6 3,4 3,9 -1,4 6,9 -1,6 5,C 0,B 7,7 2,C 5,C 9,C 2,1 -1,6 6,9 9,8 2,C 6,8 -1,8 2,4 9,1 -1,5 5,6 5,7 7,8 6,7 7,3 0,1 1,B 7,B 9,8 -1,0 9,8 4,B -1,6 -1,9 3,4 7,2 3,5 8,6 8,0 8,9 0,6 2,9 7,8 9,1 -1,1 -1,7 -1,0 4,1 7,4 5,8 -1,1 0,C 8,9 0,3 3,0 7,0 8,0 -1,2 6,2 6,1 4,B -1,5 -1,0 -1,2 4,B 9,1 3,5 2,5 0,8 3,3 0,6 9,4 0,2 8,8 6,B 9,2 9,B 8,8 9,2 8,8 2,8 8,C 3,C 5,0 9,C 6,1 9,2 1,9 5,2 5,5 9,0 2,3 6,5 -1,9 6,8 3,7 8,C 7,2 9,2 7,7 0,5 3,C 0,B -1,4 -1,9 5,8 1,9 8,9 -1,2 4,1 1,4 1,7 3,0 6,7 1,B -1,5 4,0 9,6 5,1 0,3 8,8 -1,0 5,B 0,3 3,5 3,C 1,4 4,0 8,C 4,7 4,4 -1,8 8,7 4,3 0,C 0,B 2,0 8,7 1,1 9,9 0,1 7,3 -1,4 0,3 0,B 1,C 2,C 3,1 3,C 8,B 7,5 2,1 -1,6 1,1 7,C -1,6 1,2 5,B -1,3 3,3 4,3 5,5 0,2 1,B 5,1 8,8 3,5 -1,1 -1,7 7,B 8,3 0,9 4,8 6,6 -1,3 3,C 6,5 3,C 4,3 5,4 4,2 9,C -1,8 8,8 0,6 -1,9 -1,4 2,2 0,8 -1,9 3,C 4,0 -1,0 8,4 5,9 -1,6 0,2 7,9 2,5 4,3 -1,2 -1,9 8,9 8,9 5,7 5,3 3,1 3,2 1,8 2,3 -1,9 7,1 7,9 6,4 4,3 3,6 5,4 -1,0 -1,7 -1,6 1,7 8,B 7,B 8,7 4,0 2,B -1,6 6,C 5,2 -1,8 1,6 -1,9 2,3 -1,1 6,7 -1,1 2,B 8,9 -1,5 -1,2 -1,3 3,5 -1,0 7,0 1,4 1,4 -1,7 1,9 8,4 6,9 -1,8 3,0 7,9 5,C 9,1 -1,1 2,C 5,0 5,9 -1,4 5,4 8,3 3,4 6,7 6,2 0,8 2,1 4,8 -1,3 2,C 9,8 1,B 7,7 0,3 7,7 1,C 8,B -1,5 7,1 1,6 7,7 7,4 6,B 1,9 7,C 8,5 3,6 4,6 5,0 8,3 1,3 -1,4 2,1 8,8 -1,6 3,7 -1,5 5,6 1,C 6,4 9,C 7,0 -1,5 2,C 7,2 -1,3 4,0 8,9 4,3 -1,4 0,1 -1,9 7,2 8,3 -1,4 2,2 -1,0 -1,2 5,1 1,4 -1,5 0,0 7,B 6,1 7,9 5,7 5,C 9,B 7,4 9,9 2,2 -1,8 9,1 0,8 7,5 7,3 1,B 1,0 3,2 -1,8 -1,6 0,7 -1,9 9,4 6,9 2,3 4,4 1,9 0,5 9,3 -1,6 7,3 0,9 5,5 4,3 2,8 6,C 2,B -1,3 9,0 8,5 2,C 1,B -1,7 5,7 7,8 1,5 2,0 6,0 -1,1 -1,0 9,2 9,8 4,2 8,B 9,3 2,6 1,C 0,0 1,7 7,7 1,6 4,9 0,7 4,9 -1,8 -1,1 3,C -1,3 5,5 7,3 -1,1 6,6 8,9 -1,1 1,1 4,6 9,6 -1,4 2,7 5,B 0,B 2,2 2,B 8,6 7,C 9,B 1,6 -1,5 3,B 3,C 4,B -1,4 2,0 3,B -1,1 0,9 4,3 7,6 5,4 9,6 9,7 9,0 2,6 2,1 8,C 5,8 -1,5 -1,8 7,5 6,B 1,B 0,C 6,C 2,4 9,B 5,7 5,C 0,3 9,B 1,7 -1,6 0,8 5,4 3,6 5,B -1,3 7,7 1,4 0,5 7,9 7,3 3,1 7,1 8,B 6,1 5,2 7,C 7,5 -1,9 5,1 1,6 -1,6 5,5 8,5 -1,2 3,3 6,5 6,1 1,1 5,6 8,7 0,7 2,2 5,C -1,4 9,3 0,C 5,0 0,2 8,3 3,3 1,4 5,B 7,8 6,B 6,1 8,8 8,1 8,1 1,8 -1,4 3,B 0,6 -1,3 2,6 2,7 1,8 7,1 8,5 0,7 9,4 4,6 4,9 1,9 7,7 4,C 1,B -1,7 9,0 4,B 3,C 6,9 5,7 -1,8 9,9 8,0 1,C 5,2 7,4 9,6 2,4 -1,2 1,7 6,8 -1,8 9,8 7,2 -1,9 7,8 -1,1 3,6 -1,9 3,B 0,2 5,8 6,0 6,3 9,B -1,6 1,1 6,C 0,B 5,3 5,C 7,9 3,9 -1,8 4,2 -1,1 -1,7 9,8 7,6 1,B -1,5 9,5 6,C 6,7 -1,4 8,9 8,1 0,8 6,5 1,C 3,1 2,0 5,1 3,5 5,3 8,0 2,2 2,5 5,1 1,C -1,2 7,B 0,7 -1,3 5,2 -1,8 0,3 -1,1 7,3 6,4 3,C 2,4 9,6 1,5 3,2 0,5 5,6 -1,9 9,3 1,4 9,8 8,5 6,1 4,B -1,9 4,6 2,3 2,7 4,0 6,8 -1,7 -1,2 8,6 -1,6 1,B 5,9 0,6 8,8 0,4 -1,3 3,1 -1,5 6,2 9,7 2,3 3,5 7,0 4,5 9,5 6,1 0,0 6,1 8,8 2,2 3,C 3,5 9,4 -1,0 4,2 2,5 0,B -1,1 3,3 5,4 1,7 -1,9 -1,5 7,7 4,6 2,0 3,C 8,4 4,0 3,0 -1,2 0,B -1,4 1,5 0,C 8,C -1,0 7,B 7,9 9,C -1,9 4,5 6,B 7,4 6,B 6,6 4,0 -1,4 4,9 4,B -1,8 4,6 -1,9 7,0 -1,5 3,1 8,6 1,C 7,5 7,0 -1,0 -1,7 9,5 7,3 6,B 1,9 0,1 2,6 -1,1 -1,9 1,4 0,2 4,5 7,B 8,6 2,5 1,5 4,8 5,C 0,0 1,8 -1,9 -1,9 1,2 5,2 7,5 3,9 5,1 8,7 -1,5 4,B 4,5 6,9 6,9 9,2 9,1 0,9 2,9 3,8 3,B 9,1 2,8 -1,7 8,9 9,2 -1,1 8,3 1,C -1,2 1,8 -1,0 6,9 8,7 -1,7 5,B -1,4 -1,4 2,2 3,0 6,5 -1,1 1,6 3,9 2,2 2,6 3,B 9,5 8,B 4,C -1,4 0,6 0,B 4,3 1,0 7,9 8,B 9,9 -1,1 4,6 8,8 -1,4 7,C -1,0 8,C 5,C 4,7 4,C 4,8 1,9 1,2 5,0 -1,4 7,C 6,5 6,7 7,1 1,C 1,C 1,B 1,9 -1,1 1,6 7,B -1,6 -1,5 3,C -1,6 -1,3 1,5 9,5 6,9 -1,3 8,2 5,0 -1,0 6,2 9,9 -1,7 0,6 1,1 -1,5 -1,5 9,B 9,6 6,B 0,C -1,4 -1,8 2,B 3,2 8,2 2,1 4,4 1,C 2,3 4,6 5,0 1,2 5,C 6,B 9,C -1,0 8,6 9,8 8,1 6,2 3,4 -1,3 -1,7 1,B 5,3 -1,7 1,6 4,1 3,0 3,5 4,C 8,9 2,7 0,C 4,2 7,B 4,4 -1,0 0,9 8,6 6,9 -1,5 5,C 0,4 0,B 0,B 9,3 4,3 7,B 3,4 -1,1 1,0 3,8 2,8 5,3 2,9 6,2 9,7 4,0 3,9 9,3 6,7 6,5 6,0 -1,8 -1,6 9,3 4,5 1,7 9,8 2,2 1,B 8,0 4,1 -1,5 2,2 4,9 -1,7 -1,4 6,8 8,B 2,8 6,5 7,C 0,C 7,2 -1,6 3,2 9,3 0,8 4,9 -1,8 2,7 2,6 3,6 0,4 9,9 -1,3 0,0 3,9 6,1 -1,9 -1,5 -1,9 4,2 8,2 -1,0 0,B -1,5 0,B 2,B 7,2 8,B 4,6 9,6 7,4 7,7 -1,4 8,2 4,2 7,8 5,B 5,C 0,2 -1,7 5,6 -1,3 1,B 7,C 8,C 1,4 7,8 3,7 0,8 8,8 5,3 0,8 9,1 9,0 2,6 -1,2 -1,9 5,2 0,9 0,0 -1,3 6,8 6,C 0,3 6,9 -1,3 2,5 -1,3 -1,0 2,4 9,6 -1,1 0,6 -1,1 7,1 9,0 5,6 2,9 6,B 1,2 2,8 9,4 8,C 5,5 6,B 1,0 2,8 3,1 6,6 -1,7 -1,3 9,C 0,9 0,4 9,4 3,C 0,0 -1,2 4,C 7,1 3,B 7,C 7,1 -1,2 3,B -1,9 2,B 0,8 4,9 -1,5 9,6 5,8 0,5 9,2 3,7 -1,7 9,8 1,C 1,5 6,3 7,C 2,4 2,3 3,B -1,5 8,1 -1,9 1,C 2,9 5,8 5,6 -1,0 -1,4 8,7 2,6 5,C 9,C 4,4 2,8 -1,8 3,C 4,1 4,3 5,B 6,9 4,6 1,B 0,8 2,6 8,8 -1,5 5,5 0,C 9,0 7,C 0,C 2,6 -1,0 9,9 2,B 4,8 3,C 5,2 3,C -1,0 5,5 -1,5 1,6 1,B 9,7 0,B 0,3 1,C 2,8 8,6 8,C 3,3 2,0 -1,2 9,1 4,7 -1,5 9,5 -1,9 8,2 8,6 4,5 3,4 -1,6 3,C 6,3 9,9 9,6 0,7 6,B -1,0 3,6 1,1 -1,3 4,1 -1,6 8,9 2,C 8,3 7,5 -1,8 -1,6 8,B 3,6 5,6 -1,2 7,6 0,7 2,9 -1,6 9,1 9,C -1,5 7,B 9,4 1,8 0,C -1,3 3,6 0,B 7,C 3,6 -1,6 8,5 5,6 3,C 0,1 8,6 9,B 2,5 2,B 5,C 5,6 2,0 3,6 4,B 8,1 2,C 8,B 9,4 3,8 7,B -1,5 6,C 7,7 1,8 7,B 0,0 1,0 3,4 8,4 -1,8 0,9 7,2 8,2 4,C 2,2 8,1 5,1 4,B 0,8 7,2 2,1 6,6 0,8 6,7 2,1 5,7 9,B 9,6 9,C 3,4 -1,9 -1,9 5,4 0,6 8,B 0,C -1,2 -1,3 -1,8 7,1 5,5 -1,1 1,4 -1,2 0,4 9,1 9,C 8,3 5,7 5,3 2,3 5,1 3,C 1,6 3,4 5,2 3,5 -1,8 4,2 -1,3 0,6 1,B -1,4 8,0 9,B 1,C 6,0 3,8 4,2 -1,0 2,C 7,C -1,8 6,1 2,5 1,B 9,C 9,1 4,3 9,6 2,8 0,5 6,9 9,8 8,3 9,B 2,B 1,1 1,7 -1,2 0,7 6,C -1,2 -1,9 2,1 -1,3 0,9 9,5 -1,2 -1,6 3,6 7,3 9,3 1,7 2,8 8,0 -1,6 1,7 0,0 3,7 1,B 5,5 7,1 3,9 1,B 2,0 4,C 6,C 0,3 9,9 4,8 7,8 4,8 1,6 8,B 0,C 1,5 9,C -1,8 7,C 2,1 0,1 -1,7 3,6 8,7 3,3 -1,4 6,0 -1,5 5,3 2,9 3,C 3,2 -1,2 8,8 8,1 4,9 3,8 3,7 6,0 7,4 1,6 5,0 4,5 9,C 4,B -1,4 6,C 8,9 -1,0 4,0 0,5 6,8 1,0 6,C 4,4 2,C 5,9 0,0 -1,3 0,C 0,B 1,C -1,2 1,C 1,B 6,B 4,0 3,C -1,5 8,4 4,B -1,3 3,8 -1,1 5,7 4,7 -1,2 3,4 4,1 3,C -1,8 4,1 4,9 8,2 7,9 8,7 -1,4 7,4 1,9 7,B 2,0 4,2 0,5 6,5 1,C 4,7 8,3 5,5 3,2 -1,9 4,C 0,5 8,8 7,B 9,9 2,3 9,7 8,3 8,1 3,1 3,B 1,6 3,C -1,9 -1,6 -1,6 5,C 3,2 1,9 7,B 6,8 0,5 1,C 7,2 -1,3 9,0 8,0 1,2 4,B 9,7 4,B 4,B 8,4 4,2 7,C 2,8 2,B 8,8 9,8 9,0 -1,0 5,2 2,8 -1,7 -1,3 -1,9 2,B 2,6 1,3 -1,3 4,C 5,8 1,8 1,2 -1,0 3,3 -1,9 9,9 9,C 4,5 -1,6 5,7 4,1 3,7 1,2 7,B 7,5 8,0 0,6 5,3 2,2 6,0 0,8 1,2 9,3 -1,4 4,C -1,7 -1,7 8,6 5,B 5,8 -1,4 -1,8 6,5 6,4 4,2 1,6 1,7 4,6 0,7 -1,5 0,7 0,3 -1,5 3,4 -1,4 4,6 -1,7 -1,3 -1,7 4,C 9,B 8,0 6,0 8,B -1,6 0,1 -1,6 8,0 2,B 6,B 6,C 1,9 3,C 6,3 -1,8 5,B 1,0 1,B 5,B 0,9 0,3 -1,3 8,4 1,6 9,3 1,7 5,8 8,C 0,0 -1,3 4,5 9,8 3,B 1,6 7,8 0,C 1,1 9,6 8,5 3,B 8,1 -1,8 -1,6 9,B -1,0 1,7 1,5 -1,5 2,4 0,3 -1,4 9,3 1,7 0,7 5,6 9,1 5,C 9,C 6,3 9,3 -1,4 4,5 -1,8 3,2 4,9 5,C 0,5 6,7 5,B 0,3 1,6 0,7 2,6 3,B 2,B 5,2 4,0 9,0 2,9 8,9 -1,1 1,0 -1,8 7,2 5,5 8,9 5,6 2,5 1,6 5,0 0,5 5,2 1,C 6,7 1,7 4,B -1,6 4,8 1,3 0,B 0,2 3,B 8,B 9,3 6,B 9,9 0,5 9,C 5,6 3,6 7,B 3,B 1,6 6,2 -1,9 5,8 6,C -1,5 -1,5 7,2 7,B 0,0 9,9 3,3 9,C 4,B 1,9 2,B 1,6 6,0 1,C -1,2 5,C -1,0 4,4 0,8 4,5 6,3 3,7 6,0 5,5 -1,8 4,C 3,6 3,B -1,3 7,B 8,2 1,B 0,B 8,3 7,B 0,5 4,0 3,4 -1,0 3,3 2,1 0,7 4,8 -1,0 8,B 3,8 6,2 8,9 4,0 5,8 8,7 -1,5 8,3 7,B 9,5 2,C 1,7 0,5 4,0 4,C 2,7 5,B 9,5 5,1 9,5 2,1 7,1 0,7 2,9 4,3 4,4 0,8 3,1 8,B 0,6 1,C 3,C -1,7 8,0 8,0 -1,9 0,5 5,C 0,B -1,7 -1,4 3,2 0,C 9,9 9,3 5,4 0,C 8,8 3,1 3,8 8,B 3,6 -1,0 0,C -1,8 -1,3 5,4 1,B 1,6 6,5 3,1 5,6 5,C 6,5 8,3 -1,2 9,C 7,6 6,C -1,0 -1,6 1,0 -1,9 7,8 -1,5 1,4 -1,7 -1,5 9,0 -1,4 7,8 -1,5 3,8 2,7 6,4 -1,4 8,3 1,7 1,1 2,3 5,6 6,5 2,4 8,3 1,2 5,4 -1,8 8,3 9,1 4,7 6,2 -1,0 8,C 4,B -1,1 -1,3 -1,2 7,B 2,8 1,C 8,6 4,4 0,B -1,3 -1,1 -1,5 -1,4 0,3 8,9 9,C 9,1 8,4 3,2 2,1 -1,8 8,7 1,3 9,1 8,C 5,0 9,B 0,2 9,2 -1,2 -1,7 2,3 -1,4 2,1 1,6 -1,6 9,8 3,9 9,9 -1,8 9,5 1,2 7,2 -1,7 4,7 2,5 2,1 5,7 7,C 4,B 4,6 9,1 9,4 -1,8 5,7 5,4 7,C 6,C 0,C -1,6 5,8 1,2 0,7 3,7 2,C 0,B 2,4 -1,6 -1,6 6,4 8,C 2,B 4,0 2,6 4,2 -1,9 2,5 7,8 -1,6 0,8 8,9 1,9 6,9 4,5 7,8 3,9 4,6 5,B 7,1 6,6 -1,8 7,5 6,2 2,0 3,4 -1,8 7,1 6,8 2,5 0,0 5,5 1,4 8,C 0,7 1,7 4,C -1,3 6,3 7,0 -1,9 -1,0 1,7 5,9 7,9 4,B 8,C 5,0 1,C 5,8 6,7 5,5 -1,9 4,6 -1,8 8,3 2,2 0,8 2,5 8,C 3,B 5,6 7,6 8,2 -1,5 6,8 6,2 4,7 -1,8 0,B 9,C 2,3 -1,1 6,2 5,5 6,2 2,4 2,5 -1,5 4,C -1,7 3,0 3,B 2,3 6,1 6,3 -1,2 -1,5 7,6 7,6 0,B 0,0 9,B 5,5 4,4 4,B 3,5 1,9 1,5 9,8 1,5 1,B -1,3 0,C 6,C 5,1 2,2 5,8 6,C 4,C 5,6 0,9 4,3 9,7 1,2 0,2 6,C 6,8 9,4 7,8 9,B 0,B -1,3 5,0 1,9 3,B 9,B -1,8 0,5 8,2 7,B 0,7 7,0 9,0 4,C 4,4 8,B 6,6 3,5 4,3 8,1 4,8 -1,8 6,C 9,8 3,5 2,C 7,2 -1,8 6,1 -1,2 2,3 5,B 1,C 3,9 1,2 5,4 -1,9 0,C -1,4 3,1 7,1 5,4 0,B 7,C 2,2 1,0 3,0 2,C 9,0 5,2 4,2 1,6 0,B -1,5 4,1 4,8 -1,3 6,B -1,3 3,C -1,9 8,3 7,4 8,C 5,7 3,2 0,B 1,1 0,5 -1,8 8,B 6,7 5,B 7,5 8,5 8,5 9,6 9,B -1,5 4,8 4,C 1,5 4,B 5,8 8,3 1,9 3,0 4,6 -1,4 4,8 0,2 2,0 0,1 8,7 4,7 2,C 6,C 5,4 -1,6 9,2 2,3 8,B 7,0 5,8 8,7 -1,8 -1,9 1,5 9,C 6,1 6,6 8,7 5,C 4,7 3,9 3,3 7,C 5,4 4,B 7,7 9,C 1,4 4,B 1,B 6,8 -1,8 -1,5 6,B 8,7 3,8 2,C -1,1 -1,2 4,3 -1,4 2,5 6,C 3,7 4,9 2,2 6,B -1,0 5,0 -1,7 3,5 -1,3 1,C 0,C -1,1 3,4 7,B 2,7 7,9 0,6 -1,2 -1,3 5,B 6,C 8,6 0,B 1,B 9,3 8,C 9,3 -1,7 8,1 8,C -1,8 -1,5 4,C 3,1 1,C 4,4 -1,5 1,4 0,5 9,6 9,2 9,8 7,3 -1,3 -1,6 4,5 0,C 9,C 3,1 3,B 8,2 3,7 1,6 6,2 -1,5 6,C -1,4 2,C 0,5 -1,5 -1,0 2,4 2,7 7,6 5,B -1,9 0,9 6,8 6,6 2,5 7,C 4,C 1,C 4,B 6,4 2,1 4,7 6,8 4,B 0,2 1,3 4,5 5,1 -1,5 1,B -1,3 -1,4 4,6 4,2 -1,9 8,5 9,C 1,B 8,8 6,B 5,B -1,8 -1,2 1,0 -1,2 2,0 7,0 3,1 9,2 -1,0 4,9 0,C 3,B 1,8 0,3 -1,4 6,5 -1,0 1,8 7,9 1,4 0,1 2,5 -1,9 8,8 8,6 4,C 9,2 3,7 9,0 6,B 6,4 1,B 7,B -1,7 1,1 6,5 9,C 8,4 -1,0 -1,7 7,6 4,4 0,B 3,B 3,3 3,7 7,0 4,3 -1,5 -1,0 -1,7 0,5 0,B 7,0 8,3 -1,6 -1,6 6,6 6,7 3,C 0,0 6,3 -1,7 -1,1 9,4 8,0 1,4 -1,0 5,C 4,C 4,6 -1,7 9,9 8,3 -1,5 -1,9 9,3 7,1 4,2 0,2 7,C -1,3 4,0 3,5 3,4 6,9 1,4 8,8 0,B 1,0 9,9 3,5 4,B 8,2 0,8 -1,2 -1,8 1,9 -1,1 6,2 0,7 8,B -1,3 -1,3 7,C -1,4 5,1 -1,7 2,C 5,7 8,7 -1,4 4,C 8,1 -1,9 2,2 8,6 -1,8 -1,6 3,9 6,8 5,5 9,0 7,0 8,B -1,0 3,8 4,0 9,2 0,5 3,9 1,9 3,4 -1,0 7,5 9,8 1,B 3,C -1,3 9,5 -1,5 2,0 6,5 0,C 8,B 3,C -1,8 9,8 -1,3 -1,7 4,9 8,B -1,3 2,4 8,6 1,1 6,7 0,B 9,C 2,6 4,2 5,2 7,6 0,8 9,9 2,0 1,9 4,0 -1,1 1,4 6,B 3,1 1,C 5,9 0,7 0,B 8,9 7,0 4,1 2,5 1,0 0,5 -1,9 -1,1 7,C 2,C 3,2 0,6 5,B 8,C 2,C 6,7 6,7 1,7 3,2 6,B 9,C 1,3 8,8 9,C -1,4 4,9 -1,6 8,6 0,3 6,6 4,1 7,2 6,7 4,4 7,3 5,8 0,0 6,1 2,1 -1,5 0,3 8,C 3,9 -1,8 4,5 7,1 8,4 6,7 7,C 4,3 2,1 2,2 4,B 0,9 3,2 5,3 -1,0 7,4 1,4 4,9 -1,4 -1,0 8,5 4,2 1,8 -1,2 -1,8 4,B 6,0 7,3 9,6 0,2 5,3 -1,3 -1,3 8,8 6,B -1,0 -1,0 -1,0 8,4 4,5 -1,8 -1,3 9,1 4,4 9,9 1,4 7,C -1,4 3,5 1,C 2,B 7,C 5,3 5,3 6,3 9,5 3,C 0,B 5,B -1,0 2,C 0,8 7,9 5,1 4,B -1,7 7,C 7,1 9,B 7,4 7,0 6,0 -1,3 -1,6 8,B 1,3 7,6 -1,4 0,9 3,9 -1,5 3,C 6,2 -1,4 2,9 0,7 3,B 8,0 5,4 9,0 2,5 7,1 5,0 0,8 -1,9 6,9 5,4 3,C 4,0 0,6 9,2 4,0 1,5 6,B 8,8 -1,9 4,C 1,C 0,4 2,1 -1,3 0,4 8,6 4,1 -1,2 8,6 -1,6 8,2 8,1 -1,5 -1,8 -1,0 5,C 0,9 5,1 4,6 3,6 0,8 2,0 3,9 4,4 5,0 2,3 7,B -1,4 -1,9 3,C -1,0 7,6 7,B 4,7 5,C 3,4 1,B 3,6 0,7 -1,9 9,8 2,4 8,6 1,9 -1,7 4,B 0,6 -1,1 0,2 1,6 -1,0 8,C 7,0 9,1 4,0 6,B 0,4 3,B 0,B -1,3 3,6 -1,9 2,1 2,B -1,5 -1,7 6,C 2,C 8,9 0,0 -1,2 5,3 0,7 1,3 -1,9 2,9 7,4 -1,5 1,7 4,C 5,9 1,5 3,C 7,5 3,3 6,3 8,9 -1,2 7,7 0,5 -1,2 9,4 1,C 7,4 8,1 3,9 -1,0 8,C 3,1 4,6 1,B 6,3 -1,3 5,8 -1,5 4,7 5,2 5,5 3,B -1,6 3,5 4,1 -1,8 4,8 6,5 8,2 -1,9 -1,7 5,C 4,7 6,B 2,1 9,B 8,6 1,0 4,B 9,5 -1,1 -1,2 0,C -1,9 7,C 5,5 -1,4 0,5 -1,2 9,8 2,4 9,8 2,3 7,3 7,2 6,8 -1,7 5,9 8,7 8,1 4,7 -1,0 5,6 1,9 1,C 8,9 7,2 6,7 0,B 2,C 2,3 9,B 9,9 9,9 1,2 8,2 0,6 9,B 0,C 0,8 5,C -1,8 4,1 4,0 5,9 -1,3 0,4 2,7 1,7 2,B 8,8 3,9 -1,8 9,0 -1,0 3,2 5,C 7,C 9,4 6,4 0,B 2,5 6,7 7,C 3,C -1,7 -1,7 3,4 4,6 6,3 7,1 -1,6 1,9 3,C -1,5 0,3 6,6 7,3 9,9 2,9 -1,4 0,2 2,4 0,C 6,B 0,7 5,1 8,2 5,5 2,4 9,3 4,8 7,1 2,3 0,B 5,C 9,3 1,1 -1,0 -1,7 -1,7 -1,5 0,4 0,B -1,1 8,8 -1,5 8,0 1,0 6,3 0,6 0,B 0,1 7,7 3,3 -1,8 3,1 -1,4 1,C 8,9 0,8 4,7 8,2 5,9 -1,8 9,9 0,8 6,1 -1,3 9,9 8,C 8,7 6,4 4,8 8,0 7,6 7,4 9,4 0,4 0,B 0,6 9,4 9,7 4,6 6,0 9,1 -1,4 4,7 4,B 1,1 7,5 8,C 9,9 9,7 5,3 2,7 -1,4 1,4 9,3 2,6 0,B 2,4 7,1 7,9 6,1 8,9 6,7 0,2 0,C 9,1 9,6 -1,7 9,C 0,C -1,5 8,7 4,2 -1,0 1,5 6,6 4,9 -1,4 0,3 2,3 -1,6 0,0 6,8 8,1 9,1 7,7 0,1 1,0 2,0 -1,8 -1,8 6,2 1,1 4,7 4,4 8,4 2,7 9,3 2,2 -1,0 2,3 5,5 1,9 9,5 3,8 2,B -1,0 7,7 -1,4 1,5 9,9 -1,1 5,2 -1,4 8,C 4,C 4,1 3,2 -1,7 -1,6 8,5 -1,2 5,2 7,2 3,8 3,8 0,C 7,0 5,5 3,6 5,2 4,9 3,1 4,7 -1,0 9,9 1,C 0,4 3,8 8,1 2,8 9,C 5,2 1,B 1,2 6,1 1,2 7,B 3,8 9,2 0,6 1,0 6,7 6,4 -1,1 -1,8 1,4 6,1 7,3 7,5 6,B 1,B 0,2 3,C 3,7 0,C -1,1 3,2 0,5 -1,9 -1,7 6,1 8,4 8,8 0,C 8,2 5,C -1,5 0,4 8,6 3,5 9,6 5,C 8,6 3,0 8,2 2,B -1,9 6,1 9,0 5,B 9,5 9,2 -1,1 9,B 7,9 7,B 0,6 5,3 -1,0 6,0 5,6 -1,0 9,3 2,6 4,3 6,5 5,5 -1,5 2,B 2,9 0,B -1,9 2,C 4,9 -1,1 -1,9 5,5 -1,2 -1,2 1,0 0,1 2,B 4,6 4,0 9,B 4,B 6,1 6,2 1,C 8,B -1,3 -1,6 9,B 5,4 3,7 6,7 6,0 0,8 8,9 -1,8 7,B 5,8 2,5 0,3 7,C 9,7 1,7 7,2 6,0 3,B 8,B 8,9 -1,8 -1,7 2,8 5,3 7,3 3,6 9,B -1,0 5,1 6,C -1,0 2,7 2,B 9,C 0,4 -1,1 6,5 -1,2 -1,5 -1,3 0,7 0,4 6,C -1,1 5,2 8,5 9,C 6,B 6,2 0,1 3,2 2,C -1,9 0,9 4,B -1,8 9,3 1,C -1,5 0,4 -1,1 9,6 7,0 1,B 3,5 3,6 -1,9 9,C -1,9 6,4 2,3 5,7 8,0 4,C 4,1 6,C 5,1 4,B 0,5 6,6 9,7 1,5 8,6 -1,2 7,3 1,3 -1,8 8,1 9,4 0,C -1,7 2,1 1,5 7,7 -1,5 5,5 2,8 7,7 2,8 8,2 7,7 0,0 0,2 4,8 3,C 6,3 3,4 2,5 1,0 -1,6 0,C -1,8 -1,1 5,C 1,9 8,9 -1,7 2,2 4,8 6,9 5,3 8,9 2,C 8,3 3,5 8,2 6,1 -1,0 8,9 7,5 8,9 7,6 -1,1 5,4 9,8 -1,1 2,8 2,B 5,0 8,5 -1,1 4,8 6,C 5,5 1,9 -1,9 -1,2 8,5 6,C 6,1 -1,8 8,B 0,9 8,8 1,2 8,6 3,C 6,B -1,0 2,5 7,8 0,0 1,1 6,8 6,5 2,0 -1,9 0,6 3,7 2,2 1,1 8,9 5,7 0,2 -1,7 4,3 8,5 7,3 0,5 6,B 8,B 0,0 4,6 6,C 1,6 3,C 9,1 1,5 -1,1 1,0 9,B 0,5 3,3 0,8 -1,5 6,8 0,7 8,6 3,2 4,C -1,8 2,B 8,8 6,8 4,6 5,9 0,0 6,C -1,7 3,1 7,9 -1,2 2,3 4,C 8,C 8,9 -1,2 0,0 5,B 7,1 8,3 -1,1 6,9 7,3 0,6 3,7 6,1 0,6 -1,0 9,7 6,C -1,1 5,2 -1,2 9,6 2,B 2,4 5,1 7,9 -1,0 3,1 2,2 1,5 -1,2 5,3 -1,4 3,6 -1,7 5,6 2,1 -1,8 -1,5 8,5 5,5 9,B 4,6 8,B -1,2 2,6 4,C 3,8 -1,5 3,1 6,9 9,9 9,1 -1,6 4,0 4,4 2,0 8,6 7,6 3,7 5,B 5,3 0,4 4,C 9,0 0,B 5,1 9,1 5,2 -1,3 2,3 8,8 6,7 -1,3 -1,8 8,7 -1,3 -1,7 3,8 0,3 -1,5 9,5 -1,5 -1,3 -1,2 0,0 2,B 5,C 7,C 3,1 -1,6 5,C 9,7 5,2 6,3 -1,5 0,3 5,2 4,8 0,8 0,1 4,9 3,1 6,B -1,0 -1,2 2,0 3,9 2,0 1,3 5,8 4,8 7,C -1,2 6,3 1,3 5,3 -1,2 -1,9 3,9 4,B 0,5 -1,2 6,8 -1,7 -1,7 8,C 2,7 5,3 1,B 8,7 7,8 8,B 3,8 -1,2 2,1 6,C 8,0 0,B -1,9 5,4 0,3 7,9 0,2 6,7 8,9 6,B 5,7 5,7 4,2 5,1 5,6 1,1 -1,9 -1,8 -1,6 9,1 3,0 2,3 -1,2 5,C -1,8 -1,3 -1,7 6,1 -1,3 7,1 1,9 -1,0 -1,6 4,6 1,0 4,C 7,3 8,C -1,6 2,1 2,6 2,C 8,C 3,0 1,6 -1,2 7,3 -1,3 6,C 0,2 5,7 1,8 0,3 9,4 -1,7 8,7 7,0 -1,2 3,C 8,1 -1,5 7,1 3,9 2,B -1,7 6,9 -1,9 -1,9 0,4 -1,6 4,1 4,2 7,8 -1,2 8,5 6,0 8,2 2,2 -1,4 1,7 6,4 0,9 8,5 5,4 2,5 -1,0 6,C 4,C 0,2 4,2 9,4 8,1 3,B 3,0 5,1 -1,2 1,8 9,4 9,C 6,C -1,4 -1,7 3,7 8,1 6,3 0,5 0,7 6,8 7,0 9,8 1,1 0,7 -1,4 6,1 6,5 9,B 4,2 0,5 4,2 3,C 2,2 6,7 7,9 -1,6 9,6 9,B -1,5 4,B 3,B 6,8 1,0 -1,2 4,C 5,7 7,9 -1,9 8,0 3,C 8,6 9,C 9,1 5,7 3,1 4,1 8,8 5,9 8,6 3,C 1,3 5,0 2,9 3,C 6,6 -1,3 -1,8 -1,0 5,4 -1,4 1,B 0,8 6,6 0,4 6,6 3,5 3,6 -1,0 2,9 -1,8 0,4 7,6 6,8 6,1 2,4 8,3 6,6 -1,3 4,9 3,6 -1,9 6,1 1,6 1,C 9,4 -1,6 4,0 0,8 5,B 3,0 8,B -1,3 2,6 8,9 -1,8 -1,4 9,0 -1,0 1,B 7,8 0,3 -1,2 0,C 1,6 3,4 8,9 6,8 0,8 7,C -1,1 3,B -1,6 6,8 4,1 4,C 7,5 -1,2 0,B 2,8 0,4 1,8 9,5 -1,0 2,3 -1,8 4,B 6,B 4,0 8,2 6,5 5,0 5,9 2,3 1,2 -1,6 -1,6 8,B 3,0 0,2 9,9 6,8 -1,0 9,1 -1,3 1,6 -1,4 3,B 3,5 7,4 8,8 4,7 6,7 5,7 7,6 8,B 0,3 2,B 3,9 7,4 5,1 -1,0 8,7 -1,6 6,2 1,8 -1,4 4,8 2,3 1,4 4,9 6,9 1,2 0,5 -1,7 4,7 -1,2 8,B 4,6 1,3 8,8 6,8 3,9 3,6 7,0 9,1 3,7 1,9 3,5 5,3 6,2 1,1 0,4 3,1 0,5 3,6 -1,4 3,2 1,0 6,3 0,B 6,3 -1,6 5,8 -1,3 1,5 4,4 5,5 8,4 2,C 4,6 0,3 7,1 5,B 1,0 -1,4 8,6 0,9 0,9 9,B 4,5 6,3 -1,6 3,1 9,B 4,5 5,6 -1,7 7,7 0,7 -1,4 9,4 -1,7 6,3 -1,6 4,1 5,8 -1,8 0,9 6,C -1,0 3,3 3,8 5,2 3,3 -1,4 5,1 1,7 -1,6 -1,7 1,4 1,7 9,0 6,1 9,1 2,B -1,1 6,2 6,6 3,3 5,5 5,B -1,9 8,2 5,C 0,5 4,8 5,0 7,7 1,7 2,C 1,2 -1,0 -1,3 -1,8 2,2 -1,3 -1,7 -1,3 3,8 0,C 1,2 8,C -1,9 4,B 1,6 -1,7 1,0 3,B 1,6 4,B 6,C 9,B 0,3 8,4 5,7 8,5 8,B 9,6 6,9 5,0 3,7 8,1 2,C -1,0 6,3 6,3 0,7 -1,5 6,C -1,0 7,1 1,7 9,9 6,9 -1,6 1,2 1,1 3,2 -1,7 1,8 3,0 5,2 5,B 7,5 7,B 2,C 3,1 0,8 2,9 2,2 8,3 3,0 3,2 -1,6 -1,8 2,C 9,9 3,B 6,B 0,C 7,C 6,C 0,B 5,B 1,4 4,3 0,4 6,4 7,3 -1,3 6,3 8,1 1,C 1,4 9,8 1,2 3,3 -1,4 1,5 6,7 4,0 7,2 0,2 6,B -1,8 -1,5 -1,4 -1,8 9,6 -1,0 0,2 0,2 -1,5 -1,9 0,9 5,6 6,9 2,0 -1,7 -1,5 6,2 -1,6 1,B 2,8 5,4 -1,2 9,8 3,8 5,4 2,0 3,5 -1,6 -1,4 4,2 1,1 5,B -1,9 -1,0 5,C 2,3 3,8 2,5 -1,4 -1,8 8,2 0,1 5,6 5,B 7,1 7,4 0,5 2,5 -1,0 7,7 -1,0 5,4 5,7 8,5 7,C 0,5 7,6 5,C 4,6 1,5 2,8 6,7 9,B 6,B 8,8 3,2 -1,1 3,0 7,6 0,B 1,B -1,7 9,9 1,2 8,B 7,C 5,2 9,1 -1,8 -1,9 -1,1 0,C -1,1 9,3 9,C 5,C 8,8 3,1 3,B 5,B -1,3 2,6 0,3 4,8 6,5 5,2 -1,1 -1,6 5,B 8,4 9,7 -1,7 -1,4 2,B 5,7 -1,3 9,0 8,C 8,6 6,C -1,9 1,B 2,0 1,B 1,8 4,1 -1,6 4,9 9,9 1,9 8,7 4,C 9,C 8,8 2,4 -1,3 4,8 2,0 -1,0 6,B 4,8 7,1 1,2 1,5 9,3 -1,9 9,7 5,9 -1,9 0,5 5,3 5,0 6,2 4,5 2,4 5,0 7,5 3,C 5,C 1,9 6,C 3,0 -1,4 1,8 1,4 -1,9 8,5 -1,3 0,3 0,4 6,8 7,4 9,5 8,3 5,0 1,1 9,9 -1,0 8,6 1,0 5,9 3,5 8,4 1,7 0,7 0,1 3,2 5,2 3,0 2,B 4,1 5,C 7,C 6,5 3,B 1,7 8,C 4,C 7,0 1,B 6,0 -1,2 7,1 -1,1 4,7 5,0 8,0 -1,4 -1,8 -1,9 -1,1 0,C -1,8 8,C -1,8 7,5 9,9 -1,9 -1,3 9,0 9,3 8,4 8,1 0,3 8,4 -1,5 2,3 2,1 8,6 3,9 0,8 5,B 6,3 1,4 2,C 4,3 -1,5 0,7 5,2 7,4 -1,4 7,8 3,9 -1,4 3,9 0,C 2,B 4,1 1,B 9,1 -1,8 3,1 6,5 6,C 6,7 8,1 1,8 1,5 0,0 0,B 1,2 -1,4 7,0 8,5 5,B -1,5 6,0 1,C 7,0 -1,6 -1,0 2,C -1,7 -1,4 4,C 4,8 1,6 8,6 -1,7 4,1 -1,2 9,B 7,0 8,3 5,4 9,B -1,0 8,3 0,3 9,5 -1,1 -1,7 -1,2 -1,3 -1,2 0,8 1,5 9,8 3,4 3,9 9,3 5,7 -1,7 3,3 4,B -1,5 9,C 0,9 7,7 0,6 6,4 3,2 0,3 9,C -1,4 1,9 -1,1 9,C 7,C 7,B 7,9 2,C 6,9 1,0 1,4 9,8 5,6 1,B 5,2 -1,1 1,C 8,2 3,7 -1,2 3,0 5,4 4,8 -1,3 -1,7 -1,2 0,C 4,1 3,8 -1,6 3,1 -1,8 5,7 6,C -1,1 8,B 7,2 6,C 1,2 7,0 -1,0 3,B 8,7 7,0 5,C 2,9 -1,1 1,9 -1,6 4,5 2,7 4,4 7,B -1,5 4,2 1,B 1,3 -1,4 8,8 6,B -1,1 7,3 1,B -1,4 5,1 3,2 4,1 -1,2 -1,1 4,2 5,C -1,5 8,4 1,5 7,8 3,C 7,C 3,7 0,B 2,7 -1,7 -1,0 5,1 9,5 -1,5 -1,2 1,5 -1,7 -1,4 6,C 8,2 3,C 0,6 -1,5 0,C 4,6 1,B 0,C 2,C 4,5 1,4 -1,0 1,0 7,6 6,4 0,3 6,B 7,B -1,2 -1,4 1,C 2,6 -1,2 2,5 -1,0 6,8 -1,1 0,4 -1,7 5,3 5,7 1,7 8,7 2,C 0,1 -1,2 8,C 8,7 3,C -1,1 1,2 4,C 7,9 6,9 -1,5 5,0 8,5 3,4 5,B 0,B 4,9 -1,0 2,B 7,C 1,8 9,9 9,0 0,B -1,7 0,2 8,3 0,7 5,9 1,3 8,8 0,9 3,1 5,B 8,2 -1,0 9,B 6,7 8,2 -1,6 7,C 8,0 8,6 9,6 7,B -1,6 -1,4 3,1 -1,4 7,3 3,2 1,B 1,1 -1,3 2,B 6,2 0,C 5,8 0,8 2,5 -1,6 3,2 7,B 6,8 4,C 6,6 0,9 7,1 0,1 8,C 3,C 3,7 4,9 -1,4 1,2 0,6 4,9 8,5 1,0 9,C 8,7 7,0 6,B -1,8 7,5 6,6 7,4 5,7 8,B 9,C 7,5 5,7 6,7 8,2 -1,0 -1,3 3,2 2,B -1,2 0,5 1,2 4,B 0,4 -1,8 6,B -1,0 8,1 0,1 5,8 -1,5 4,5 1,2 7,8 1,B 6,B 5,9 3,B 3,2 2,0 4,7 -1,8 -1,6 5,C -1,9 2,0 -1,4 6,B -1,6 6,9 -1,1 4,0 5,9 2,C 1,5 8,2 4,C 6,3 3,7 9,0 1,1 9,1 -1,9 6,5 -1,3 -1,2 -1,7 6,B 9,4 5,6 7,5 -1,1 9,5 5,7 2,8 5,2 6,1 3,9 8,4 7,3 7,2 -1,0 6,C -1,1 6,C 9,B 2,8 3,0 3,8 4,3 4,C 7,4 4,B -1,9 2,7 7,7 5,7 9,C -1,0 -1,1 2,B 1,2 9,B -1,5 8,8 0,B 5,6 4,6 3,C 1,7 6,B 0,C 0,3 9,5 7,C 3,5 2,3 1,2 -1,8 6,2 8,9 3,0 0,7 8,B 3,9 1,0 3,7 -1,0 9,8 7,B -1,6 8,4 -1,3 6,6 6,C 7,1 7,0 1,C -1,0 5,6 9,7 0,2 6,7 7,5 -1,5 4,7 -1,3 -1,8 -1,5 0,4 8,C 1,C -1,2 6,8 7,7 -1,1 0,4 3,2 7,7 -1,2 5,1 9,3 -1,0 3,C 7,2 2,C 2,0 2,7 -1,4 -1,4 8,2 8,0 3,C -1,3 3,C -1,8 7,B 7,9 0,4 2,3 4,3 2,3 -1,0 7,7 6,9 6,9 -1,3 6,9 -1,0 -1,4 5,2 -1,8 1,0 -1,4 -1,7 0,C 9,0 5,C 6,C 3,0 -1,9 -1,5 1,C -1,3 9,1 2,7 7,3 9,B 6,8 -1,3 1,C 6,9 8,3 0,1 -1,6 -1,9 4,7 0,5 9,7 1,B -1,2 -1,3 -1,7 6,4 -1,3 -1,7 -1,4 6,1 1,6 8,7 1,3 0,7 -1,0 9,B 8,8 3,5 5,2 4,6 3,5 7,3 1,C 1,4 1,3 3,1 9,0 7,2 8,B 9,5 9,2 9,1 2,9 2,3 9,9 -1,0 -1,4 8,2 1,6 9,2 2,6 2,B -1,1 8,B 9,B 5,0 -1,1 -1,6 1,1 -1,7 8,9 7,3 -1,5 8,C 5,8 3,9 3,3 6,4 9,3 7,1 4,B 6,9 -1,9 6,8 -1,7 4,6 4,1 9,7 3,8 6,2 9,8 4,9 -1,8 9,B 1,6 -1,3 5,2 2,8 -1,3 -1,6 3,6 6,9 8,3 9,C 4,B 5,C 5,2 -1,9 -1,1 0,9 -1,8 1,7 6,1 7,1 -1,5 7,5 -1,7 6,C 9,3 1,C 9,4 -1,2 7,9 1,4 5,6 1,3 0,C 3,4 9,9 -1,8 4,7 2,B 8,8 8,2 3,3 -1,6 4,C 6,8 -1,4 1,8 8,2 0,2 1,5 4,4 3,0 5,4 5,6 6,8 3,2 9,2 4,3 7,5 -1,1 3,C 7,0 5,2 4,1 6,C 2,9 5,4 -1,6 2,1 3,3 3,9 9,8 -1,0 8,6 6,4 8,2 2,B 7,B -1,5 8,9 5,8 4,8 8,5 -1,0 -1,1 4,3 -1,4 0,B 3,2 -1,3 2,5 1,4 3,B 2,5 -1,7 3,9 9,1 5,1 5,8 4,9 6,B -1,1 1,4 1,2 7,7 0,0 -1,7 -1,5 3,5 5,7 8,B 0,C 4,6 -1,7 -1,6 0,B 2,0 3,1 0,9 -1,5 1,C -1,9 -1,6 3,1 0,0 2,B 3,3 2,2 7,B 3,2 4,3 1,0 5,9 -1,4 -1,9 -1,3 2,6 6,C 6,6 9,1 5,0 7,6 6,B 8,1 2,C 6,B -1,7 -1,4 2,2 -1,1 9,0 4,4 3,8 7,B 5,1 9,9 3,C 3,C -1,8 2,4 6,0 -1,3 7,1 7,B 4,2 0,9 2,6 4,B 7,1 7,0 0,6 2,3 5,4 9,7 7,3 -1,3 7,8 6,1 2,2 7,4 5,3 -1,7 3,3 6,2 4,0 6,9 6,0 -1,1 -1,7 8,C 1,C 0,7 1,C 6,2 8,7 4,C 9,B 2,6 7,4 3,1 6,C 0,B 1,C 6,1 5,7 7,6 6,9 3,B 5,7 2,B 7,B 6,1 4,C -1,6 -1,4 -1,1 6,C 8,9 5,4 -1,8 -1,2 0,9 8,2 9,C 6,5 0,2 -1,3 -1,3 5,7 -1,5 4,7 -1,3 -1,9 -1,1 -1,0 7,C -1,1 0,B 1,2 9,6 0,C 6,C -1,3 0,6 9,2 7,6 0,C 1,B 7,0 1,0 7,7 4,C 0,6 6,2 -1,1 6,2 3,7 6,6 5,B 7,7 1,2 -1,2 7,C 1,B 5,2 5,B 4,1 -1,8 9,7 4,C -1,0 4,1 8,B -1,9 1,1 6,C 2,8 -1,3 8,6 -1,5 8,3 -1,8 5,B 6,2 3,5 3,9 2,0 3,1 0,C -1,6 2,B 5,2 2,B 3,9 3,3 -1,5 4,6 -1,2 5,B -1,8 6,8 9,8 8,3 -1,8 -1,4 3,C -1,4 1,1 3,3 6,C 3,8 7,0 -1,0 8,3 4,2 2,2 6,9 8,0 -1,2 6,1 7,1 8,8 8,5 5,8 5,7 8,0 1,B 2,8 1,3 9,4 8,7 1,1 0,C -1,1 -1,3 1,8 -1,0 9,7 8,9 -1,6 1,B -1,6 0,5 4,6 0,1 1,9 5,8 -1,3 9,7 0,C 4,8 6,1 3,7 3,9 3,7 7,8 9,C 4,C 4,C 0,9 8,0 7,B 1,5 4,B 6,2 2,9 8,B -1,1 4,8 8,C 6,7 4,5 0,7 3,7 7,6 7,0 7,6 8,5 3,2 9,4 7,9 2,0 -1,4 0,5 0,C 6,4 5,9 1,8 -1,9 2,4 7,C 2,C -1,7 2,0 -1,9 0,8 3,0 8,6 3,B 4,C 2,5 -1,6 9,1 3,C -1,6 4,C -1,9 2,5 7,C 1,B 8,B 5,8 8,8 1,8 4,4 5,9 -1,7 5,5 0,7 2,0 8,B 2,7 7,B 6,B 1,2 3,C 1,B 2,6 7,0 -1,3 7,3 9,4 9,6 -1,5 4,6 0,6 3,8 1,6 -1,6 7,C -1,2 7,6 5,5 0,9 -1,4 9,2 6,2 0,9 3,0 -1,4 3,9 -1,6 6,C 9,0 7,C -1,9 3,C 6,2 5,8 -1,3 -1,5 -1,7 3,4 4,1 7,4 8,C 5,C 7,0 0,5 0,8 5,9 8,3 8,B 3,7 8,4 8,9 -1,4 1,2 -1,7 -1,7 -1,4 1,B -1,5 8,5 1,7 2,7 0,C -1,8 1,3 8,9 9,C 5,5 1,8 7,7 2,5 0,B 3,6 9,2 -1,3 4,B -1,8 1,8 -1,1 2,B 1,B 5,C 7,3 -1,8 0,8 9,C 0,8 5,C 6,9 1,3 4,3 1,B -1,1 1,2 4,C 2,3 3,B 0,C 6,5 5,C 3,9 6,8 -1,9 3,1 9,7 8,9 6,5 7,1 9,B 6,9 7,6 0,5 7,4 9,3 2,0 6,0 5,0 7,8 -1,0 2,6 1,2 8,9 3,1 9,6 8,5 2,0 4,B 6,0 0,1 6,6 1,9 -1,8 -1,4 6,2 -1,6 -1,1 6,3 -1,7 1,5 4,C 7,0 5,B -1,3 3,4 2,2 2,2 2,C 6,2 6,C -1,1 -1,7 1,9 5,4 3,9 6,9 -1,8 2,6 6,8 1,9 0,8 0,8 1,1 9,5 4,6 1,B 4,C 1,C 3,C -1,7 4,B 0,4 3,B 6,9 9,8 -1,2 7,4 -1,4 1,B 4,C 6,3 5,9 2,4 1,0 -1,1 4,6 3,B 9,4 9,8 -1,0 0,4 0,0 2,B 4,8 -1,0 9,5 4,5 3,9 1,9 4,C -1,8 1,9 5,1 9,B 1,B 1,3 0,2 -1,4 6,C -1,6 3,3 5,C 6,4 -1,7 2,6 5,5 6,3 5,8 8,B 6,7 7,B 5,7 3,2 5,8 0,7 8,1 3,C 2,B 1,7 6,5 5,2 9,8 2,4 4,3 0,5 0,B 8,8 5,8 7,1 3,0 4,4 1,7 1,3 -1,9 2,2 3,7 1,9 8,9 0,5 0,9 5,B 8,C 4,8 6,1 6,8 -1,3 8,4 7,9 1,2 3,4 8,6 0,6 -1,9 -1,7 -1,3 8,5 4,5 4,8 9,3 0,4 6,4 -1,9 2,6 9,9 7,2 7,5 4,7 -1,2 0,7 -1,6 5,9 -1,4 9,4 0,4 5,C 2,6 5,2 2,3 -1,2 8,8 9,1 1,1 4,3 8,B -1,4 2,B 4,C 6,2 -1,9 -1,7 0,C -1,3 5,8 9,5 2,C 8,6 0,5 4,1 -1,7 2,6 0,2 0,8 0,1 -1,0 5,C 0,9 7,6 8,9 7,B -1,9 8,B -1,0 4,4 8,C 5,8 4,4 2,B 0,5 0,C 2,B -1,1 6,5 -1,8 1,C 1,4 0,C 9,6 6,1 8,3 5,6 -1,8 2,2 8,5 0,1 5,5 8,8 7,3 -1,4 7,2 4,B 9,B -1,3 1,C -1,8 8,4 0,C 8,6 -1,2 1,1 4,5 2,C 6,7 -1,5 6,5 -1,5 0,3 -1,3 9,5 8,6 0,5 8,7 4,4 -1,7 9,8 9,2 5,B 0,7 -1,1 4,7 8,6 -1,5 6,5 9,2 2,7 -1,1 8,1 -1,0 2,B 6,5 4,3 -1,1 1,C 5,1 2,5 7,C -1,6 -1,6 6,2 9,3 6,4 2,B -1,1 -1,7 1,7 1,8 0,0 3,B 0,3 -1,7 -1,7 0,2 1,B 7,6 -1,7 2,1 4,B 1,C 9,6 7,C 5,B 9,8 0,0 6,8 -1,9 9,3 2,3 -1,5 -1,3 -1,9 2,4 4,C -1,2 4,5 8,6 0,C 5,4 5,3 2,7 2,1 0,6 3,2 3,8 5,B 7,6 -1,8 4,C 2,9 -1,3 0,2 7,3 -1,5 2,C 0,6 2,B 7,8 3,B 4,3 5,8 4,6 9,C 9,B 1,1 -1,1 1,6 2,3 3,8 3,5 0,8 8,9 1,0 8,3 8,8 4,3 9,B 6,B -1,2 5,2 9,2 3,1 -1,1 1,8 5,9 7,2 5,2 8,5 -1,6 6,B 9,2 2,C 1,7 8,1 -1,6 4,5 6,0 3,B 3,2 8,C 0,5 9,5 3,9 6,7 6,1 4,9 -1,1 -1,9 8,6 4,6 1,C 0,9 7,8 -1,7 -1,6 6,2 3,B 0,2 1,6 -1,0 -1,5 5,C 8,C -1,8 0,7 8,8 8,5 -1,1 6,6 -1,2 5,C -1,9 4,2 0,C 4,3 -1,1 -1,7 6,7 -1,6 7,B 6,6 1,B 0,0 6,8 0,C -1,2 -1,7 8,1 0,6 4,1 -1,5 3,0 0,7 9,8 2,8 -1,5 -1,3 0,5 5,2 8,6 9,9 7,C 0,B 5,2 2,4 -1,9 -1,7 9,B 7,4 1,C 9,2 6,2 -1,7 2,4 7,6 3,C 9,6 -1,3 8,4 2,B 3,0 4,B 0,4 7,4 7,B 2,8 8,3 8,5 7,7 -1,7 2,9 -1,3 5,B 3,9 7,C 1,B -1,9 3,5 3,2 1,0 3,2 2,B 9,4 3,8 -1,0 -1,9 4,1 5,5 -1,5 -1,8 0,B -1,4 5,1 -1,8 9,8 -1,5 1,6 -1,0 -1,3 7,5 0,4 5,B 4,C 4,4 3,7 6,4 7,5 8,4 2,5 2,3 -1,6 -1,1 8,B -1,8 5,8 8,C 6,6 0,0 1,7 -1,8 4,9 6,4 7,2 9,C -1,0 5,7 -1,8 -1,8 4,4 6,3 2,0 -1,3 -1,8 0,9 -1,1 2,3 5,5 9,8 6,2 -1,4 2,3 -1,0 3,6 7,7 2,6 -1,4 9,6 -1,3 0,2 0,9 -1,0 2,8 6,2 5,7 9,6 8,0 7,8 -1,9 -1,5 9,4 5,6 1,8 -1,5 1,6 -1,2 8,5 6,7 4,2 7,1 6,6 7,0 3,C 5,2 1,C 9,1 4,0 5,1 6,5 4,8 1,4 4,0 2,B 0,3 -1,5 4,9 6,8 6,9 -1,0 3,8 2,3 5,B -1,6 9,1 -1,3 -1,3 6,B 1,5 3,3 6,5 2,7 7,2 -1,3 9,9 6,3 4,8 -1,1 7,8 2,6 3,1 -1,8 -1,7 -1,4 9,4 7,4 9,3 2,6 0,8 -1,7 1,C 4,C 1,4 8,B -1,9 1,1 -1,0 6,B 5,5 0,3 0,9 5,3 2,C 8,C 0,0 1,C 8,1 8,4 7,1 9,B 6,1 6,B -1,6 0,5 6,8 -1,4 1,3 7,7 8,B 2,6 9,1 6,4 4,C 0,C 9,5 -1,4 -1,8 4,2 4,C 8,7 -1,8 8,C 8,6 5,7 9,C 3,C -1,3 7,7 6,3 5,7 -1,0 8,8 4,B 3,7 9,6 3,9 0,3 6,5 4,8 7,2 -1,2 -1,3 2,9 -1,6 4,1 6,6 -1,0 -1,0 -1,7 -1,2 3,1 6,3 -1,3 -1,0 8,4 7,5 2,8 8,3 4,9 0,8 -1,4 9,9 -1,4 -1,2 5,C 6,C 2,6 0,C 0,3 2,5 -1,2 2,1 6,7 3,6 5,5 -1,9 9,8 5,2 4,5 3,9 6,6 0,5 5,8 3,6 4,4 3,0 4,3 0,5 3,9 0,8 2,3 7,3 3,9 -1,2 8,7 1,C -1,1 -1,8 2,B 5,9 1,B 7,7 0,0 -1,1 0,2 3,5 -1,9 0,5 6,6 -1,7 -1,7 0,7 5,1 6,B -1,9 5,C 4,3 4,C 2,0 -1,7 -1,7 -1,3 6,B 0,4 1,7 3,1 6,7 7,C 7,5 -1,8 -1,5 -1,4 -1,6 4,0 -1,8 8,3 6,8 4,2 -1,0 1,5 0,3 7,B 8,0 9,7 3,2 8,6 7,4 6,4 8,1 7,1 4,B 3,5 2,B 5,B -1,8 5,B -1,4 -1,6 4,B 2,9 8,9 -1,7 3,C 4,C 3,C -1,6 1,C 8,3 3,B 6,2 5,0 5,5 8,8 -1,5 -1,8 4,9 5,B -1,6 5,C 3,B 6,1 5,3 9,C 2,2 0,9 -1,4 9,3 5,8 6,3 -1,5 -1,0 -1,7 3,B 9,7 6,6 9,5 4,6 3,7 6,4 3,6 1,3 7,1 6,3 -1,4 8,C 1,C 0,C 1,B 5,8 -1,3 5,5 3,4 5,8 7,0 8,6 6,6 5,8 2,B 1,6 4,B 9,1 -1,9 3,9 2,0 2,6 5,1 3,C 9,C 1,1 -1,0 5,2 3,B 3,3 5,7 6,6 4,3 -1,6 6,2 2,9 0,9 0,7 1,0 1,6 5,2 3,7 1,6 6,4 4,B -1,3 -1,8 3,8 8,3 -1,0 -1,1 6,7 -1,5 2,9 8,B 3,8 4,0 4,6 2,5 4,B 3,8 -1,6 4,5 -1,5 9,5 8,3 5,3 4,3 1,4 2,6 2,0 2,7 -1,9 0,3 8,3 3,1 7,5 4,2 -1,7 5,6 4,6 -1,6 9,C 9,3 -1,3 9,C 7,8 2,0 2,3 6,C 0,B 9,1 2,3 -1,3 8,3 7,0 5,2 4,4 0,9 -1,4 7,2 7,B 8,C 2,7 -1,3 2,0 0,4 8,1 5,8 -1,5 3,1 8,C -1,1 4,6 1,5 8,5 5,0 5,2 3,0 5,C 4,0 -1,5 9,7 9,9 8,1 7,8 2,C 5,3 2,5 0,B 8,4 6,B 0,C -1,3 4,8 1,1 6,0 1,2 2,B 6,9 1,4 9,2 5,3 0,C 8,6 4,6 0,4 5,B -1,3 7,C 8,B -1,5 4,3 -1,0 3,8 -1,4 1,B 3,4 -1,4 4,9 4,6 -1,6 3,2 -1,5 5,8 0,7 6,7 -1,2 3,2 5,5 4,B 2,5 0,3 0,8 5,0 2,7 7,9 -1,1 -1,7 -1,5 3,4 -1,8 2,8 8,B 0,2 8,B 0,4 6,9 9,5 6,1 7,B 2,8 -1,0 5,9 6,7 3,C 8,C 9,4 0,9 1,B 2,C 0,1 4,C 0,3 -1,8 -1,3 8,3 8,4 8,8 6,B -1,0 8,1 8,B 0,5 4,3 9,3 0,C 2,5 3,0 -1,6 2,7 3,2 -1,1 5,0 0,9 8,7 7,C 0,7 6,1 7,2 0,7 -1,8 8,8 5,C 0,B -1,0 5,8 1,6 6,C 4,8 5,C -1,9 3,7 3,5 7,1 9,2 7,0 1,B -1,8 5,1 -1,1 2,B 3,9 4,9 7,C 9,7 6,5 8,C 9,5 5,4 4,B -1,8 4,9 3,B 8,B 2,B -1,2 -1,0 3,C -1,1 -1,3 -1,6 2,4 7,1 3,9 0,7 -1,9 3,6 6,6 3,C 9,7 7,C 3,6 7,2 4,7 0,C 0,B -1,1 8,5 4,7 2,6 5,7 6,9 3,1 4,7 7,6 5,0 -1,6 -1,3 3,8 3,8 6,B 3,C 5,3 6,7 -1,2 6,B 0,B 2,0 -1,1 -1,4 2,C 2,B -1,5 -1,1 4,0 5,5 7,9 5,9 6,3 4,1 9,1 9,9 5,1 0,6 6,B 1,C 7,7 0,7 8,8 0,2 3,C 4,3 1,C 0,5 6,7 7,8 0,7 8,B 2,7 7,C 1,7 2,6 5,0 -1,9 6,0 1,1 3,C 1,8 0,9 -1,8 1,8 4,4 7,8 0,4 8,B -1,1 1,C 5,6 8,1 4,6 5,B 1,3 -1,4 2,B -1,0 2,4 2,4 1,3 -1,1 0,6 2,6 8,5 0,4 5,8 2,8 0,C 9,7 4,5 -1,7 1,2 5,4 -1,2 0,8 -1,2 1,4 9,9 9,2 9,7 0,5 3,2 -1,3 2,B -1,3 -1,9 9,6 8,3 -1,4 1,2 5,8 0,3 4,4 4,1 0,8 6,7 2,8 5,6 5,C -1,6 9,4 5,3 7,C 7,9 5,B 3,C 7,C 1,0 -1,9 0,5 2,C 9,9 3,3 -1,5 8,6 5,4 8,C -1,4 1,5 8,6 1,4 3,C 8,C 5,4 -1,2 0,2 8,2 4,8 4,B -1,1 2,C 9,8 2,B 9,0 2,C 8,1 7,0 6,B -1,7 5,8 -1,1 3,4 8,C -1,6 1,7 1,6 -1,3 0,8 6,6 1,8 8,B -1,3 6,8 1,2 4,8 7,5 -1,2 2,C 6,8 4,6 3,3 0,0 3,B 3,B -1,2 -1,7 2,5 4,0 8,8 5,5 -1,1 7,4 -1,4 8,9 7,2 8,C -1,0 8,B 6,9 5,9 8,8 1,C 7,1 -1,3 2,3 4,4 -1,6 0,C -1,3 -1,8 1,0 9,3 0,2 8,C 1,C 9,5 -1,4 8,0 9,8 1,3 -1,2 -1,3 -1,7 3,1 7,7 5,4 1,C 8,6 8,3 5,1 4,9 0,B 8,5 5,5 6,5 0,9 0,C -1,5 4,1 -1,2 2,9 4,7 4,9 3,6 1,B 6,C 6,6 0,0 9,4 3,4 9,C -1,6 -1,5 0,1 9,2 -1,5 0,1 1,1 9,1 9,5 8,7 0,0 -1,3 5,1 -1,3 2,5 9,5 6,C -1,9 -1,8 -1,4 7,4 -1,4 -1,5 -1,9 1,3 2,7 3,7 0,4 1,C 6,B 4,C 4,8 -1,6 4,8 -1,2 -1,0 1,1 6,9 6,C 5,0 1,C 4,C 6,7 6,C 6,8 -1,2 -1,4 8,7 8,2 4,C 8,6 -1,3 8,5 2,7 6,8 5,C 6,9 8,0 4,4 6,2 6,6 3,1 8,0 6,4 6,4 7,1 4,C -1,9 2,9 5,B 7,2 1,2 -1,8 7,B 8,B 6,9 3,B 9,6 -1,4 5,0 0,9 -1,9 1,7 2,6 1,B 1,5 2,C 4,C -1,9 -1,7 2,1 9,6 6,5 5,1 -1,5 0,2 5,C -1,0 0,4 4,B -1,2 1,1 5,C 6,0 0,8 9,2 7,8 3,9 6,5 2,2 6,C -1,5 4,1 -1,9 5,9 1,7 1,B -1,1 5,7 -1,8 6,6 5,B 8,7 5,B 2,3 8,7 3,1 6,2 8,2 0,8 8,2 5,5 4,3 7,9 3,1 -1,7 -1,7 -1,5 8,2 5,8 6,8 7,4 1,C 1,8 6,C 2,6 8,5 6,1 -1,2 -1,1 5,3 8,5 4,8 0,2 6,C -1,0 -1,1 0,1 0,0 4,9 2,B 0,C -1,6 6,4 8,9 -1,1 5,4 3,0 7,8 3,8 7,7 -1,0 3,2 3,5 4,B 3,5 -1,5 4,7 5,6 7,4 7,B 1,7 -1,5 1,4 7,0 3,B 0,B 0,8 0,0 1,7 -1,7 4,6 1,2 0,1 9,2 6,1 9,5 0,4 9,B 0,7 1,B 7,C 2,2 3,0 -1,6 1,6 9,1 4,C 1,3 9,C 5,1 4,B 7,3 1,3 8,5 5,B 8,8 8,6 2,0 0,3 4,2 -1,2 -1,1 9,2 8,3 3,9 8,0 8,2 -1,9 1,C -1,8 3,7 1,8 5,C 4,C -1,4 8,0 -1,7 4,6 0,2 7,3 7,3 5,0 -1,5 -1,2 6,7 9,0 1,1 6,2 0,2 4,4 8,5 5,B 2,7 2,8 5,B 2,7 0,0 7,8 4,0 4,3 0,C 4,0 5,B -1,5 5,2 2,C 7,C 4,4 4,5 8,C 0,6 1,5 0,C 2,1 9,0 9,8 6,5 6,0 8,5 5,B 4,1 1,9 7,4 4,B -1,5 6,C -1,9 -1,5 4,2 6,B 4,8 -1,7 7,5 6,9 6,B -1,9 6,8 3,0 9,B 8,1 9,7 3,C 7,8 8,1 0,2 8,B 7,C -1,7 9,2 -1,9 -1,7 3,0 7,8 0,2 4,4 -1,2 0,8 -1,4 2,0 2,5 -1,0 -1,3 5,9 8,6 8,B -1,8 7,8 1,4 3,B 6,3 0,9 3,9 -1,8 4,3 6,1 1,1 2,5 -1,1 -1,4 9,B 5,2 7,B 5,B 4,2 7,9 -1,9 4,9 4,9 6,B 2,0 5,5 1,C 7,2 1,1 9,7 4,2 4,6 3,9 3,6 6,1 6,C 4,1 7,0 -1,7 0,9 7,B -1,2 9,C 0,6 5,1 1,1 1,3 6,C 6,6 3,C 7,0 8,5 5,C 7,7 -1,9 3,0 -1,5 3,2 8,6 -1,4 4,1 1,B 7,9 0,2 6,1 -1,7 1,9 -1,9 5,C 9,8 2,B -1,9 -1,1 1,6 6,4 -1,4 1,0 -1,6 -1,9 -1,9 4,8 4,B 4,7 -1,2 -1,5 1,5 3,6 7,B 6,4 0,4 6,9 6,7 5,3 6,0 0,5 4,3 1,2 -1,6 2,9 5,1 0,B 0,C 9,C -1,9 2,1 -1,0 7,4 9,4 4,5 1,3 6,0 -1,0 -1,6 5,B 7,7 8,1 -1,6 3,5 -1,8 5,2 7,6 7,B -1,2 4,9 6,8 4,9 8,0 3,B 5,5 2,C 3,5 2,3 4,8 4,4 7,B 0,2 7,2 8,1 6,B 2,0 -1,6 4,2 8,1 6,0 5,9 4,C 3,5 3,4 1,5 8,4 9,C -1,6 6,7 8,8 -1,0 6,B -1,7 0,8 -1,7 0,1 0,C 6,3 0,3 -1,1 1,6 -1,2 -1,6 5,2 8,C 6,C 9,7 -1,2 -1,2 3,3 -1,2 7,7 9,5 2,C 7,B 6,2 2,9 1,B 4,6 7,C 1,5 6,3 -1,9 -1,1 -1,7 0,1 0,4 4,4 6,C 7,4 -1,3 6,7 8,4 -1,3 1,5 8,B 4,8 9,B 8,5 3,1 8,2 1,9 3,2 -1,5 9,6 3,2 9,B 8,7 5,3 6,0 3,2 0,B -1,5 -1,8 -1,8 3,C 2,5 -1,5 7,C 8,4 6,8 6,0 7,2 7,3 1,8 -1,2 1,C 9,6 9,3 1,5 2,9 1,3 3,2 1,0 5,2 6,4 3,6 -1,2 2,2 -1,1 -1,6 3,2 -1,7 9,4 -1,7 9,7 8,6 5,1 2,1 -1,8 4,5 3,3 8,C 7,1 6,6 4,B 1,1 6,3 4,9 5,6 6,8 4,1 9,C 8,4 0,8 -1,9 4,8 4,0 1,B -1,2 9,C 0,4 -1,6 -1,9 1,4 0,C 0,5 -1,7 6,3 0,0 8,3 9,1 7,7 9,C 6,8 2,5 5,9 2,0 6,B 3,2 -1,9 5,1 0,7 8,1 -1,1 0,6 7,7 3,B 4,6 -1,9 5,4 2,8 2,2 3,8 5,0 7,5 5,9 9,6 7,2 -1,3 9,C 9,C 4,5 2,0 4,6 3,7 8,1 2,C -1,6 5,2 3,1 4,B 3,B 3,5 5,8 1,9 -1,7 4,6 2,B 4,4 2,C 1,0 -1,9 8,3 3,8 7,1 3,8 2,4 3,0 0,7 0,C 7,8 2,0 -1,5 8,2 0,B -1,1 -1,4 6,5 6,6 0,8 7,C 9,9 8,9 9,0 6,3 -1,1 7,0 3,5 0,4 5,5 4,9 4,6 -1,4 8,4 9,1 4,2 3,6 1,1 4,2 7,4 8,5 1,C -1,4 5,7 -1,2 4,8 8,C 7,B -1,9 -1,5 1,4 6,5 6,2 7,B 4,2 5,8 -1,5 1,8 3,1 8,3 8,3 -1,2 2,1 -1,8 6,0 5,C 7,5 9,C 1,2 7,B 9,B 0,7 -1,8 -1,7 5,3 0,3 4,8 4,C 6,2 8,7 3,0 3,4 8,2 6,3 6,2 -1,7 1,B 2,3 -1,3 0,8 9,8 9,0 6,3 7,0 -1,5 -1,4 9,8 7,2 4,5 4,6 9,C 7,C 4,4 0,4 2,C 6,4 5,6 -1,5 5,8 4,7 -1,1 0,7 4,9 -1,8 -1,1 2,6 7,B 2,6 1,7 3,1 8,2 5,8 2,8 6,1 8,6 3,8 5,0 2,7 3,1 8,C 4,B 8,2 -1,6 -1,5 1,3 9,5 4,2 -1,3 0,C 0,8 6,C -1,0 0,8 2,9 4,0 6,B 3,6 5,9 -1,4 1,7 -1,4 9,8 3,9 4,0 4,0 -1,0 0,C 6,9 4,C 6,3 1,5 0,7 0,3 -1,2 6,C 8,B 1,C 2,4 4,C -1,7 -1,0 0,7 8,4 3,4 8,C 5,9 -1,4 0,C -1,9 -1,7 4,8 3,4 -1,2 7,B 6,4 2,B 9,B 0,0 6,7 4,B 8,B 6,1 -1,9 -1,6 -1,7 -1,3 9,6 -1,6 7,4 4,4 7,9 -1,1 4,8 0,B -1,9 1,C 1,C 0,7 2,4 6,5 6,B 2,2 1,8 -1,4 4,C -1,0 8,1 9,7 0,4 6,C 5,9 -1,3 3,C -1,2 3,0 8,B 4,B 9,2 7,5 5,B -1,6 9,0 6,9 0,1 2,B 3,B 0,3 -1,3 7,4 0,B 8,0 3,6 -1,6 2,9 0,C -1,4 9,5 7,8 8,4 5,9 9,6 7,6 2,4 -1,9 7,4 3,6 3,3 -1,0 8,B 3,0 7,0 6,9 6,B 1,8 3,6 7,B 6,B 5,C 4,3 8,9 1,1 5,3 4,8 1,1 -1,0 4,8 3,0 6,3 2,3 6,B -1,7 9,6 7,8 -1,3 6,B 9,2 3,0 8,1 7,6 3,4 5,8 5,C 9,2 5,7 -1,0 1,0 0,9 -1,0 2,1 3,C 8,0 9,6 4,3 -1,0 -1,1 4,1 0,7 7,6 3,4 -1,6 6,2 7,B 5,9 -1,7 -1,6 5,B -1,3 0,2 6,1 1,C 4,9 4,2 -1,2 1,0 8,1 7,4 8,8 0,5 9,5 6,5 4,B 3,6 5,7 -1,7 9,0 4,8 0,B -1,7 7,7 6,8 9,1 8,4 3,4 2,C -1,2 0,C 8,8 -1,4 0,4 -1,1 7,0 5,5 8,2 7,4 7,4 0,5 4,C 0,2 3,4 5,7 9,3 2,3 2,B 3,5 6,B -1,3 3,B 0,6 -1,1 1,9 4,5 8,B 7,C 0,4 4,3 3,9 7,8 4,2 2,1 0,7 9,C -1,1 5,4 7,4 5,3 -1,3 1,1 4,9 4,7 5,2 9,9 9,8 9,5 7,4 6,1 6,7 8,3 3,3 1,B -1,7 2,B 1,5 8,2 1,C -1,2 -1,6 -1,4 2,9 1,6 2,1 8,2 1,3 -1,9 4,2 4,5 -1,4 2,7 -1,9 7,2 2,4 7,C 2,0 8,B 0,C 3,3 -1,7 -1,4 2,5 4,B 5,B 3,6 4,7 9,3 5,B 7,8 5,4 6,3 -1,4 8,2 5,4 1,5 8,C 4,B -1,5 6,0 -1,9 1,8 8,B 0,5 7,0 6,B 5,2 2,5 6,6 9,0 6,1 1,C 2,B 5,0 8,7 4,8 -1,6 8,2 5,9 9,6 4,4 2,8 -1,9 7,C 8,0 9,4 -1,7 9,B -1,2 6,7 -1,4 4,0 1,8 4,B 6,4 4,B 4,9 0,C -1,5 9,4 4,5 7,7 9,9 1,6 -1,9 2,7 0,8 8,C 8,B 5,7 2,B 0,4 -1,8 -1,8 -1,5 8,C 9,3 4,6 0,B 1,4 7,2 3,7 0,4 7,5 -1,9 0,C 0,7 8,B 4,2 -1,8 9,2 6,7 1,7 -1,2 -1,1 4,B 9,B 4,6 5,2 8,0 0,C 3,C 6,1 1,7 8,3 -1,1 -1,0 5,4 4,7 -1,4 1,6 6,7 -1,2 8,1 3,C 6,4 1,3 4,8 0,B 0,3 -1,0 3,0 3,C 2,C 9,1 0,3 5,3 -1,4 3,5 -1,0 2,8 6,C 7,C 0,1 2,8 6,9 7,1 0,8 -1,6 6,9 5,C 4,C 5,C 1,7 7,C -1,9 0,3 2,C 8,1 6,2 9,1 -1,8 7,C 7,5 -1,3 3,8 0,8 2,6 7,0 8,5 -1,6 5,3 0,C 5,9 8,C -1,1 8,6 1,8 0,B 3,B -1,2 7,2 4,6 5,6 -1,3 8,6 -1,6 5,C 9,4 9,5 2,6 0,B -1,9 9,0 8,1 4,2 8,B 3,2 7,5 9,8 4,7 3,1 3,C 4,9 5,8 -1,3 4,3 -1,5 5,9 5,6 7,6 3,0 7,8 9,2 9,9 9,9 7,6 -1,2 2,C -1,6 -1,9 0,6 4,B -1,7 5,C 8,B -1,3 -1,2 9,7 6,3 7,B 5,B 0,C -1,5 8,B 2,9 3,C 5,5 0,1 0,2 3,4 1,9 5,4 5,9 1,B -1,3 3,2 6,0 7,4 1,B 2,B 0,9 5,9 0,4 -1,7 8,1 3,7 -1,7 2,9 -1,1 -1,8 4,5 2,6 9,5 -1,7 3,0 5,0 9,5 -1,2 3,6 -1,5 1,0 5,2 9,9 8,2 0,3 1,7 0,4 8,C 8,9 -1,9 9,2 -1,4 9,1 1,0 -1,2 8,C 2,6 9,1 2,7 4,8 9,9 0,0 0,C 3,0 3,1 -1,9 0,C 4,C 8,B 8,4 3,C 0,5 4,0 6,8 3,1 0,7 -1,2 5,6 3,6 -1,9 -1,3 8,9 1,4 -1,9 -1,0 1,7 5,2 -1,1 9,5 6,3 5,B 3,5 2,5 1,7 7,7 -1,4 2,B 7,9 -1,7 8,3 0,7 0,6 2,4 1,2 6,8 7,C 4,2 6,1 -1,6 7,5 -1,2 1,1 2,0 3,8 3,B 5,2 1,B 3,B 1,4 2,8 8,3 0,9 0,C 0,9 -1,6 7,4 5,5 7,0 1,9 7,B 3,C 1,B -1,6 2,C 8,4 9,3 5,7 4,9 1,3 3,C 1,0 6,7 0,9 -1,2 7,6 3,B 8,4 4,6 5,B 3,8 9,B 8,2 8,1 1,4 -1,7 1,C 0,C 3,7 8,7 9,1 1,C 4,C 4,9 1,5 -1,0 1,3 0,8 6,0 7,2 7,9 6,1 2,4 7,C 9,C 1,C 2,3 3,C -1,9 2,4 1,1 5,7 9,C 9,6 6,C -1,2 -1,3 0,7 -1,9 5,3 9,9 2,9 -1,0 6,2 1,B 9,5 0,8 4,7 4,B 3,4 8,3 -1,5 0,2 5,1 3,C -1,3 4,1 1,5 6,5 5,1 6,9 5,4 0,2 7,5 6,5 0,C 0,0 1,4 5,5 -1,5 0,C 3,B 3,1 2,B 7,8 0,6 3,3 8,7 -1,2 7,7 6,8 6,B 7,5 1,7 9,B 3,2 9,0 5,4 5,3 7,5 -1,6 -1,9 7,3 -1,7 3,7 7,9 9,6 7,3 9,B 6,7 -1,9 2,1 9,6 7,7 9,B 6,6 -1,6 -1,3 2,4 0,0 -1,9 5,2 2,2 2,7 9,5 5,C 3,6 -1,1 4,2 1,1 9,2 8,5 5,4 -1,1 -1,3 2,6 4,C 6,B -1,2 5,B 7,C -1,0 8,C -1,2 9,9 7,0 5,7 -1,0 0,B -1,0 7,1 7,B -1,6 1,2 5,3 4,4 0,B 3,9 1,9 4,5 2,9 3,9 4,1 3,9 2,C 6,2 4,2 8,9 6,4 2,5 1,7 2,3 -1,8 4,5 0,5 6,B 1,B -1,4 1,7 0,2 7,1 5,4 0,6 5,C 3,3 9,4 5,0 -1,2 1,2 0,6 0,2 -1,6 0,C 9,0 9,2 1,C 5,0 9,9 7,8 6,1 2,8 2,B 7,2 3,3 7,5 4,6 1,8 5,4 1,3 1,8 3,8 6,C 3,8 -1,0 0,5 5,6 6,2 9,7 5,2 2,B 5,6 5,1 7,9 9,1 3,0 -1,0 -1,5 3,2 -1,9 4,B 0,8 -1,7 0,C 2,7 3,5 3,8 4,C 3,3 0,6 4,6 -1,7 -1,9 8,4 8,4 7,5 1,B 0,8 -1,5 2,3 4,2 -1,4 1,1 1,7 6,6 -1,9 -1,5 0,7 1,3 5,4 1,3 -1,6 1,5 5,B 7,0 3,B -1,8 -1,9 2,8 3,7 -1,2 6,B -1,6 7,9 4,0 0,6 7,8 8,2 -1,7 -1,9 5,2 5,7 8,0 -1,6 5,7 6,7 7,3 2,9 0,7 0,C 4,B 9,B 7,B -1,2 6,2 -1,8 -1,0 8,C 0,8 2,1 5,5 -1,1 0,2 8,6 4,4 0,0 1,4 9,9 8,B 1,1 -1,0 9,2 5,4 3,7 9,9 9,0 9,B 8,3 8,7 0,2 9,8 7,B 4,B -1,9 8,7 5,5 -1,9 0,8 6,C 4,2 7,8 0,B 2,C 0,7 1,C 8,3 2,C 3,7 0,5 7,0 3,C -1,4 -1,3 5,6 9,9 1,0 3,9 5,5 -1,4 0,1 7,3 7,1 8,B 8,B 4,5 9,8 -1,1 3,7 1,5 0,5 8,B 2,9 3,6 0,6 5,9 1,2 5,B -1,9 -1,1 0,6 -1,8 5,7 7,8 5,4 7,C 1,2 9,0 8,0 7,0 7,5 0,0 2,3 3,6 2,7 0,8 6,C 1,B 8,C 8,2 8,B 3,9 8,C 7,6 -1,0 2,6 -1,4 1,2 0,7 -1,6 -1,2 9,C 7,0 3,2 7,5 4,9 4,B -1,5 2,9 7,C -1,3 7,B -1,2 -1,2 7,2 9,4 7,9 3,7 -1,6 -1,8 1,C -1,0 8,5 -1,4 2,6 6,B 3,9 7,B 0,9 8,7 9,0 8,5 9,2 -1,6 0,B 1,5 -1,2 -1,7 5,4 1,0 2,0 5,4 7,B 1,1 4,C 8,2 2,1 2,B 3,C 6,4 -1,9 -1,2 -1,6 3,6 -1,3 3,B 0,2 7,6 3,C 3,C 8,3 7,3 9,C -1,5 5,C 1,B 5,B 1,2 0,9 6,6 5,B 7,0 2,2 6,C 0,6 0,2 9,B 1,5 -1,7 6,6 -1,0 2,9 -1,2 0,4 6,2 7,8 7,1 -1,9 -1,7 3,C -1,7 2,9 4,0 9,5 2,C 2,6 8,0 -1,1 5,2 8,4 6,C 2,8 8,9 2,4 3,3 -1,9 -1,1 -1,7 8,6 2,C 0,B 0,7 9,7 6,7 0,2 0,3 8,6 3,B 9,2 -1,8 6,9 6,8 2,C 1,5 3,0 5,5 8,8 3,B 9,8 1,9 4,1 8,0 2,1 8,C 1,8 -1,1 -1,7 6,2 0,2 2,B 8,C 4,B 5,C 6,4 9,1 8,1 -1,4 4,1 1,6 -1,0 8,3 4,3 -1,7 5,B 6,5 6,2 -1,2 8,4 8,2 4,4 -1,1 2,7 6,9 6,9 7,0 8,C 4,8 0,1 1,8 9,4 5,1 5,2 6,6 7,C -1,8 -1,7 -1,6 -1,5 7,5 9,C 8,4 6,8 4,B 2,B 0,8 -1,1 4,5 2,7 8,B -1,6 6,1 0,3 0,7 9,5 7,8 4,9 -1,9 8,B 7,C 1,4 4,3 9,7 8,C 1,2 9,B 4,9 2,1 9,4 6,0 1,9 3,9 6,C 6,6 3,8 2,1 8,6 9,C 7,2 1,8 0,2 -1,1 6,C 2,1 -1,1 -1,3 9,7 9,7 4,C -1,3 -1,2 -1,8 9,B -1,9 6,C 7,4 6,3 6,4 3,3 6,0 0,3 5,7 8,6 1,2 7,C 1,8 5,3 9,0 4,B 0,B 2,7 1,8 8,C 1,5 2,3 1,0 1,C 5,8 8,2 5,B 7,3 -1,8 8,4 -1,5 -1,2 5,4 6,8 -1,4 -1,7 2,5 4,B 3,3 2,9 2,8 3,9 -1,9 4,7 7,7 -1,8 5,6 3,6 6,1 6,5 2,2 7,9 -1,9 3,9 -1,9 9,0 2,9 6,8 1,C 3,8 0,9 6,2 9,3 8,2 6,6 7,0 5,7 2,4 3,8 -1,6 0,C 9,7 5,6 6,B -1,0 4,7 3,C 3,3 2,2 3,C 2,9 5,9 8,C 8,1 7,7 1,B 9,6 9,C -1,3 2,9 8,C -1,1 4,0 4,9 0,9 9,0 1,3 -1,3 7,0 8,8 6,5 1,6 0,8 -1,7 9,3 3,4 6,3 4,0 9,5 9,3 7,0 6,0 2,7 8,7 4,3 0,B 4,C 0,7 2,8 1,3 1,2 5,B 1,2 -1,4 4,3 6,8 -1,8 1,6 6,B 4,1 0,4 8,C 1,7 -1,4 2,C 1,2 0,2 6,5 6,C 7,C -1,8 2,4 1,2 -1,7 4,4 3,3 3,C -1,8 2,B 0,B 6,5 -1,2 9,3 -1,7 7,C -1,0 7,4 5,0 5,7 -1,3 2,5 -1,1 -1,7 6,9 -1,4 -1,4 2,1 -1,0 8,B 7,B 9,9 3,8 5,7 5,5 9,8 5,3 5,4 0,8 2,9 9,C 0,3 -1,5 8,0 3,0 3,C 0,2 -1,8 2,0 5,5 3,9 -1,3 2,2 6,8 -1,5 8,4 1,0 3,7 9,5 9,7 3,C 0,4 9,B 0,C -1,3 1,4 3,3 -1,8 7,0 -1,3 -1,3 3,0 4,C 5,0 2,8 8,C 6,6 9,5 -1,1 0,0 4,0 1,2 0,8 6,4 6,0 0,4 5,B 8,B 7,B 1,1 -1,6 2,5 6,4 8,B 5,5 5,B -1,2 7,1 9,6 5,C 1,0 3,2 5,C 5,4 0,5 8,9 7,4 1,7 2,1 4,4 3,B 1,1 0,C -1,0 4,C 5,2 -1,4 1,2 2,5 4,2 -1,7 -1,9 6,B -1,2 -1,8 5,7 9,9 7,B 2,8 0,6 6,C 1,5 7,8 1,B 2,1 5,0 2,2 2,5 -1,4 5,4 4,3 5,B 5,C 6,2 8,C 8,1 -1,4 -1,1 1,B 3,9 5,1 3,8 0,9 8,1 7,9 8,6 6,C 1,5 5,6 3,5 -1,7 5,1 -1,1 2,5 5,8 4,1 4,1 3,3 7,8 6,0 9,B 0,9 0,B 9,B 9,0 -1,5 0,B 2,1 5,2 6,2 0,C 6,3 5,C 2,6 5,7 -1,1 2,7 4,C -1,1 3,C -1,2 5,C 3,0 8,C 4,2 1,C 3,B -1,8 8,1 9,C 2,B 3,0 2,9 2,2 1,0 0,C 7,3 7,9 1,B 7,2 7,1 4,0 6,7 2,8 2,3 4,1 8,4 5,1 5,6 -1,7 3,1 0,C 7,7 1,B 4,B 5,4 7,9 -1,7 0,6 4,B 8,8 0,4 -1,8 -1,4 2,3 8,0 8,5 6,1 6,B 7,C 3,2 6,7 4,C 6,B -1,3 5,C 3,9 3,6 8,7 0,2 9,9 2,C 0,5 9,9 5,7 -1,0 9,B 5,C 8,8 4,4 6,C 5,B 0,0 0,9 3,B 9,2 8,7 2,3 8,4 4,9 2,7 9,C 7,B 8,B 9,C 2,B -1,5 -1,4 6,4 1,0 0,C 0,3 2,6 9,5 -1,1 0,5 1,B 2,0 5,C -1,2 9,C 9,0 -1,0 4,9 9,7 -1,9 -1,9 -1,8 -1,3 6,C -1,7 7,B 9,B 2,2 3,3 9,7 -1,7 5,3 2,6 5,8 -1,0 3,B 6,4 0,C 7,6 2,1 8,7 5,4 5,C 9,7 0,C 7,9 0,9 0,0 9,B 5,5 4,1 7,4 6,3 5,4 5,C 6,B 6,9 3,9 7,7 4,2 9,6 7,3 7,0 2,4 5,C 0,6 7,6 0,6 0,5 4,B 3,B 2,7 4,B 4,8 2,6 9,C 5,4 0,2 2,0 7,3 9,B 7,3 8,C 8,B 4,C -1,6 0,C 9,C 3,0 6,0 4,9 -1,7 9,7 0,0 8,2 3,B 8,1 -1,8 5,5 2,0 -1,5 2,2 7,2 9,B 5,1 -1,5 4,5 3,3 -1,1 -1,4 6,6 5,5 1,9 1,6 0,2 1,9 1,5 0,4 3,4 6,C 2,1 -1,7 4,8 5,7 -1,5 6,6 9,9 4,4 9,0 9,C 3,2 1,0 9,C 5,2 9,1 1,8 9,C -1,6 -1,6 7,9 8,2 2,4 7,B 7,8 5,B 9,5 0,7 9,8 8,B 0,5 6,C 2,9 9,C 6,9 6,4 0,7 9,2 -1,4 6,C 8,3 9,8 0,6 2,C 4,9 -1,2 9,9 6,C 8,8 1,8 3,7 -1,5 0,B 0,6 3,B 0,C 2,0 4,1 3,4 3,C -1,2 8,7 4,5 6,8 -1,5 7,2 5,B 9,2 1,8 0,8 9,1 -1,9 7,9 9,8 4,7 -1,6 -1,2 -1,3 3,4 9,7 6,4 -1,4 -1,5 2,B 4,6 6,8 -1,4 3,7 2,6 5,B 3,0 -1,4 0,C -1,5 7,B -1,3 -1,5 5,8 8,B -1,7 7,1 3,B 4,8 3,B 3,B 3,8 -1,6 5,B 0,6 4,3 4,8 6,6 2,5 5,2 4,6 4,6 8,5 -1,6 3,9 5,6 3,7 -1,6 5,B 3,B 9,1 1,B 2,C 6,9 -1,0 6,5 -1,4 3,4 3,6 6,9 -1,5 -1,5 -1,0 -1,4 -1,3 9,2 1,4 9,1 5,9 1,9 4,6 2,4 2,9 -1,9 -1,5 0,B 3,1 1,3 6,5 -1,9 1,4 8,0 3,B 4,7 9,6 2,2 2,3 -1,7 3,C -1,5 -1,8 9,7 8,3 8,C -1,2 0,C -1,2 8,6 7,0 3,2 3,C 4,B -1,7 -1,9 6,C 1,0 8,2 -1,3 9,9 -1,1 2,C 3,B 9,6 8,B 7,C -1,9 5,7 6,B 9,3 -1,7 5,4 1,8 0,5 -1,2 8,0 7,0 2,9 7,B -1,9 0,2 8,9 -1,0 9,B 0,9 -1,7 -1,6 6,7 6,6 7,6 0,C 1,0 -1,5 3,0 0,5 4,7 3,7 7,6 2,1 9,B 3,0 7,C 3,5 2,9 -1,5 0,B 5,B 2,B 3,5 5,9 2,1 6,1 -1,7 3,5 -1,7 0,C 5,1 8,1 4,0 0,7 7,B 8,5 7,B 4,5 3,9 2,4 1,8 3,8 -1,8 4,8 9,9 4,8 8,9 1,2 -1,6 2,3 3,8 -1,9 -1,2 0,2 -1,5 8,3 8,1 8,6 -1,9 0,8 9,4 9,B 4,2 7,3 5,6 8,5 7,C 2,6 -1,0 3,7 9,8 -1,7 0,6 3,7 4,1 7,4 0,C 8,C 5,9 4,4 4,6 7,C -1,3 3,0 6,0 -1,7 3,6 -1,7 1,7 0,8 3,9 9,9 4,0 7,C -1,7 6,7 3,1 6,1 6,C 8,5 -1,4 -1,7 8,5 -1,0 5,3 2,0 6,5 6,C 7,7 7,9 5,C 4,1 2,2 5,2 -1,8 -1,7 -1,3 -1,5 3,7 1,7 -1,0 7,7 2,5 3,B 2,0 -1,2 5,9 -1,2 0,0 7,1 8,4 7,8 -1,1 1,C 4,9 7,2 2,5 9,1 -1,7 6,5 1,0 1,7 9,2 -1,6 8,9 1,2 4,8 9,9 3,B 6,5 6,1 4,8 3,9 3,C 2,0 -1,7 -1,2 4,4 1,2 5,C 3,9 7,B 2,7 5,1 3,7 0,8 4,4 6,B 9,7 4,4 4,1 8,4 1,C 3,5 -1,9 -1,8 8,8 5,C -1,3 6,1 -1,1 3,2 9,5 4,B 1,C 5,0 1,2 7,1 5,B 1,5 5,1 -1,1 2,5 2,7 1,C -1,7 8,1 9,1 4,C 2,1 1,C 9,7 3,B -1,4 3,5 8,5 4,5 6,6 9,9 -1,7 8,4 7,C -1,9 4,3 0,2 8,1 5,4 8,5 0,8 0,0 9,3 8,9 -1,9 8,7 4,B 8,8 5,9 3,B -1,9 -1,2 4,9 -1,3 4,0 5,7 1,6 -1,0 9,C 5,9 1,3 7,2 4,C -1,4 0,C 2,6 4,8 6,9 2,3 2,0 4,3 6,5 7,2 3,7 7,C 8,0 -1,2 4,3 2,6 3,7 0,2 5,C 2,8 -1,1 7,5 5,7 6,9 9,C -1,0 7,1 1,C 1,6 3,9 -1,6 -1,3 7,8 5,B 7,6 9,C 7,2 1,0 8,C 6,3 8,8 2,9 0,0 1,0 1,0 -1,8 6,1 4,9 -1,9 8,B 8,7 2,B 1,4 6,6 9,6 7,1 0,6 3,1 -1,6 -1,0 -1,2 8,B 2,4 8,7 0,2 -1,9 6,7 5,4 -1,8 3,1 7,8 3,4 -1,5 2,3 -1,3 3,9 9,4 3,C -1,0 6,6 3,4 4,3 1,1 8,B 3,6 6,2 7,C 1,3 1,B 6,3 -1,0 -1,6 9,8 0,B -1,4 8,B -1,2 8,C 7,5 -1,3 8,B 5,3 5,1 6,C 9,5 -1,8 9,0 3,7 5,0 4,5 8,0 4,4 4,4 -1,8 8,C 8,9 7,8 6,3 8,8 0,6 6,3 5,3 0,C -1,5 2,8 4,2 1,0 1,C 6,8 -1,9 -1,9 9,5 1,6 4,5 3,B -1,8 1,4 8,3 -1,8 4,1 1,0 8,4 8,9 0,8 7,7 -1,1 7,7 -1,6 8,8 2,7 7,9 4,9 0,B 9,3 2,8 -1,8 1,B 3,4 8,6 1,9 3,4 2,4 6,0 1,C -1,9 3,2 7,1 2,2 -1,2 8,B 2,5 0,1 7,8 6,4 6,2 8,6 3,B -1,9 2,5 -1,4 -1,8 8,8 5,0 1,1 -1,3 3,0 2,5 -1,3 4,8 -1,1 -1,8 9,8 4,3 7,5 6,7 7,1 -1,5 1,4 9,3 3,C 1,C 8,4 7,1 7,8 -1,3 7,3 3,8 9,B 4,6 -1,2 8,B 8,B 3,3 6,7 4,3 8,0 4,1 4,5 6,2 -1,6 4,8 6,C 4,9 7,4 9,C 2,9 6,2 1,5 0,3 8,0 0,3 3,5 0,7 -1,4 9,9 2,4 4,B 6,B 9,3 5,6 8,7 8,9 8,1 8,2 0,2 0,9 0,3 4,C -1,8 3,8 0,2 -1,5 7,2 6,3 9,4 1,3 0,9 1,0 4,3 8,B 0,C 5,2 0,8 -1,6 1,B 7,2 1,C 6,1 -1,3 -1,2 6,7 1,5 -1,1 -1,4 7,0 0,3 -1,2 7,2 5,3 8,C 0,B 3,B -1,4 4,B 0,6 0,9 6,C 2,0 7,C -1,1 6,1 5,0 5,1 -1,6 2,6 -1,5 0,2 -1,0 9,1 8,1 3,8 0,4 -1,8 3,B 4,B 0,B 3,3 -1,2 7,B 4,8 2,0 -1,2 8,2 4,1 2,B 3,0 9,7 6,5 6,1 2,3 5,7 5,B 2,7 9,9 4,7 7,9 1,5 0,B 7,3 5,4 -1,0 -1,4 2,1 2,4 9,1 -1,5 6,6 8,5 5,C 5,0 7,7 9,1 -1,5 -1,5 7,5 1,1 3,C 8,5 5,C 3,9 3,1 4,1 3,C 7,1 4,B -1,8 -1,7 -1,5 -1,4 2,1 3,C -1,8 -1,4 5,7 1,C 4,6 3,5 5,B 5,1 -1,6 6,B 6,9 6,4 5,2 8,B 2,2 1,B 7,9 -1,6 7,2 1,8 2,1 2,8 1,5 5,8 2,6 6,2 0,B 8,3 5,1 -1,1 7,C 3,9 4,0 5,9 6,8 6,8 -1,0 7,7 0,C 8,6 2,5 9,5 6,7 8,7 2,C 9,C 8,C 5,1 4,B 9,6 4,5 7,1 9,B -1,9 2,1 8,9 -1,4 1,7 8,5 2,6 5,5 7,7 7,3 3,0 0,5 -1,2 9,4 4,2 6,2 7,8 4,5 3,8 2,B -1,0 -1,7 0,9 -1,1 4,2 8,6 3,1 8,3 7,C 5,3 7,3 1,0 5,8 3,C 2,7 6,8 4,1 1,6 7,B -1,0 8,6 8,7 -1,7 1,5 -1,9 0,6 4,C 2,4 3,5 -1,2 7,2 4,4 1,B 6,9 7,C 6,B 7,C 9,B 5,C 5,C 9,4 0,C 8,5 2,B -1,2 7,2 -1,8 6,6 0,0 3,6 0,C -1,1 4,5 3,5 4,C 4,5 1,C 3,1 -1,3 2,5 -1,3 6,C 0,B 2,2 7,2 0,C 2,C -1,8 -1,7 0,C 1,3 5,1 -1,9 6,1 0,C 8,B 3,8 2,C -1,8 9,4 9,3 1,C -1,8 8,C 3,2 4,C -1,2 1,3 9,3 4,C -1,2 -1,1 3,5 0,9 3,7 2,C -1,6 3,7 2,9 6,8 7,5 0,9 9,9 6,9 4,4 8,B 6,C 5,0 9,0 0,2 5,8 9,7 3,B -1,4 0,B 3,1 9,0 2,B 4,8 -1,2 8,6 8,1 7,B 3,1 9,7 3,7 5,B 6,6 0,4 2,8 3,4 0,5 -1,1 -1,8 8,5 0,2 4,4 7,B 0,7 5,7 9,B 3,6 -1,9 9,B 3,3 7,5 9,6 0,9 -1,2 6,0 -1,2 -1,6 3,3 5,B 4,C 0,3 -1,3 4,6 -1,0 7,0 -1,6 1,9 -1,5 7,6 8,7 2,5 0,0 -1,3 0,9 0,7 2,5 9,8 4,9 9,0 3,1 9,C 6,8 6,C -1,8 6,6 6,7 -1,9 5,6 3,B -1,7 5,3 -1,5 7,8 2,C 2,1 4,1 9,C -1,9 -1,5 6,9 5,1 -1,9 7,3 9,9 1,8 0,3 3,2 -1,5 3,5 3,7 -1,6 -1,0 9,B 7,8 3,C -1,1 7,1 1,8 -1,1 8,C 0,C 4,8 0,B 0,3 8,4 2,9 1,B -1,0 1,B 2,7 3,3 1,8 -1,7 -1,1 8,8 1,6 -1,3 5,B 3,7 3,C 9,5 5,0 2,7 6,2 -1,8 -1,6 4,1 4,3 9,2 9,6 6,5 0,0 4,5 0,C 7,B 8,1 3,B -1,8 9,7 1,5 9,6 -1,7 1,C -1,7 5,7 7,8 -1,7 8,4 8,B -1,0 2,2 9,1 1,1 9,B 7,8 7,8 4,9 1,9 5,4 9,4 9,8 0,6 9,C 8,6 0,4 3,1 8,0 1,4 1,7 9,B 4,4 1,9 8,9 7,2 9,5 7,5 7,3 5,5 8,0 0,0 5,6 0,B -1,3 7,5 4,C 4,3 3,2 1,9 2,3 4,0 8,B 2,0 2,3 1,B 0,0 7,5 -1,2 9,9 2,7 -1,6 2,3 3,5 4,7 1,B 3,3 8,2 3,C 7,3 2,0 4,2 5,B 6,B 6,B 9,2 3,7 2,5 7,2 2,3 2,9 8,B 8,B 3,4 0,3 3,C 0,6 9,B 0,1 1,1 7,B 6,7 -1,6 -1,2 0,2 -1,4 4,B 1,8 2,1 8,7 5,5 -1,7 -1,4 4,B 1,6 7,3 3,3 6,C -1,6 5,9 6,4 1,B 1,9 9,1 7,8 2,8 6,4 7,2 -1,1 1,9 4,8 2,6 9,0 7,5 2,3 6,5 4,5 -1,9 3,9 7,6 -1,2 4,8 1,B -1,4 7,0 -1,1 4,6 5,4 -1,8 7,7 7,3 2,1 -1,6 0,9 7,4 3,0 -1,5 4,C 0,8 4,C 1,B 8,2 5,B -1,8 1,5 2,1 7,8 5,7 1,1 1,6 -1,1 8,9 0,7 9,9 1,3 9,1 1,B 4,3 -1,2 2,C 1,1 1,5 4,2 -1,2 0,0 0,C 5,8 5,C 9,B 0,B -1,4 -1,1 5,B -1,9 -1,6 3,C 2,6 7,6 3,C 0,B -1,9 1,B 2,3 -1,5 -1,6 9,9 0,6 -1,4 2,B 0,2 8,9 9,C 9,0 0,4 8,1 2,7 3,1 3,0 7,B 9,3 4,9 0,8 6,1 0,2 9,B 2,7 9,C 0,2 4,8 1,C -1,8 9,8 8,9 -1,5 -1,9 7,4 5,8 3,B 7,0 9,C 7,0 8,5 2,9 9,7 6,C -1,0 8,B 4,0 1,4 -1,8 4,3 5,6 0,3 7,5 0,2 -1,0 7,C 9,0 2,B 8,1 4,8 1,5 4,2 0,6 2,6 6,C 3,B -1,3 7,6 7,B 9,B 2,7 -1,6 3,7 -1,5 0,8 1,6 8,3 -1,5 7,1 9,7 -1,6 6,6 1,9 6,4 4,8 9,5 0,2 -1,5 5,C 2,8 9,B -1,4 1,6 4,2 -1,1 7,6 8,1 8,9 2,3 9,B 3,9 7,6 4,C 3,9 2,C 3,0 5,4 3,7 -1,4 -1,5 5,4 1,2 2,0 0,C 1,1 4,4 7,4 5,C 7,9 -1,5 -1,8 4,7 8,4 -1,1 -1,2 2,C 4,0 4,2 1,8 -1,1 8,C 9,7 -1,2 -1,6 -1,5 -1,1 0,B 3,2 -1,0 6,B -1,7 -1,2 4,6 9,8 4,1 3,9 9,9 6,9 2,C 0,B 0,9 8,0 2,9 -1,7 5,1 2,0 2,5 4,6 8,8 6,4 0,B 9,2 -1,7 1,0 8,C 4,4 6,6 6,C -1,5 8,C 3,7 3,7 -1,5 8,C 8,B -1,6 1,4 8,B 9,B 4,B 5,2 2,1 2,3 -1,7 3,5 4,8 6,C 1,5 -1,0 7,5 7,9 2,3 1,5 1,8 6,5 -1,4 7,0 -1,4 -1,0 1,B -1,2 6,1 -1,3 0,1 4,6 2,9 4,3 2,C 4,6 4,1 6,B -1,3 9,1 7,C -1,0 -1,6 5,B 5,C 4,B 2,B -1,7 -1,6 8,C 5,B 8,6 9,1 6,C 3,0 6,2 1,3 9,8 6,6 8,C 2,7 -1,5 -1,7 -1,2 3,7 4,5 -1,0 -1,0 6,4 5,C 8,5 2,B 5,8 4,C -1,8 4,9 7,5 1,C 4,8 7,C 3,3 -1,7 0,3 -1,7 7,C -1,5 1,8 8,5 8,0 -1,3 3,C -1,5 -1,4 8,9 8,2 4,C -1,5 4,8 -1,9 5,4 2,3 6,8 9,1 -1,7 8,7 -1,3 3,1 4,B 6,1 4,7 7,B 3,9 3,9 8,4 1,3 -1,8 9,9 7,2 5,B 9,5 9,9 7,8 -1,4 7,B -1,6 -1,3 6,C -1,8 6,6 9,2 -1,4 -1,8 8,C 0,8 4,7 0,1 9,3 6,6 3,4 7,2 -1,4 9,C -1,6 8,B -1,8 8,B 8,3 1,C 4,8 8,5 -1,7 -1,9 3,C 9,1 4,C 7,5 -1,3 4,C 6,1 7,1 8,4 8,C 1,0 3,0 6,2 9,7 0,1 9,9 -1,8 -1,5 0,1 -1,1 0,6 9,8 7,B -1,2 -1,2 9,C 1,6 -1,6 -1,3 7,2 0,7 5,6 5,3 2,6 4,5 -1,3 3,5 8,2 -1,7 5,4 2,2 2,6 1,3 1,0 1,8 -1,5 3,2 2,9 -1,1 -1,9 2,B 8,8 9,4 -1,9 6,4 2,4 -1,5 3,0 -1,2 1,C 5,3 -1,4 9,1 -1,7 6,9 1,5 1,0 8,4 1,7 1,C -1,0 4,8 -1,3 -1,4 -1,5 7,B 1,1 -1,0 2,0 9,3 2,B 7,B 6,7 -1,4 1,3 3,6 5,C 3,7 1,5 -1,9 5,0 8,0 0,3 2,1 8,C 9,2 8,7 3,B 6,9 3,6 0,5 7,C 2,9 -1,1 0,0 5,7 4,7 9,0 5,7 3,8 1,1 4,B 7,C 3,6 3,C 8,1 6,6 -1,5 9,C 2,3 1,5 2,7 -1,3 -1,6 8,0 9,0 9,1 1,1 9,8 1,1 3,6 3,7 -1,6 5,5 -1,7 7,8 6,6 1,2 2,2 5,7 0,2 4,7 7,1 -1,1 -1,4 8,5 5,7 3,1 0,9 0,C 8,1 8,0 3,8 3,3 8,9 -1,0 4,9 1,9 -1,8 4,0 5,5 5,6 -1,4 2,8 0,2 -1,6 1,B 3,3 5,C 9,4 -1,5 2,4 -1,5 6,8 7,C -1,5 -1,8 -1,3 -1,2 7,6 -1,7 1,B -1,9 8,3 7,4 0,9 6,C 6,B 1,8 1,2 5,4 -1,8 -1,5 8,5 6,4 1,C 4,0 0,B 9,B 7,4 2,7 -1,5 0,7 0,B 6,4 2,B 0,4 4,9 0,4 -1,4 8,3 7,6 4,B 7,C 4,2 8,9 -1,9 3,6 2,2 8,0 -1,0 -1,5 3,B 6,1 -1,1 -1,5 0,3 9,7 -1,7 -1,5 8,B 7,8 9,6 3,8 0,6 0,0 9,0 1,3 2,3 4,5 3,1 1,C 0,C 1,B -1,3 3,8 -1,6 9,C 0,1 4,9 -1,0 -1,3 5,B -1,5 4,3 5,2 1,9 1,B 6,6 3,9 -1,1 4,2 7,2 2,1 -1,3 -1,0 8,5 5,4 0,6 4,5 2,4 5,6 6,3 2,B -1,4 3,B 9,4 3,B 7,6 4,1 7,1 -1,2 0,0 5,2 8,8 6,9 4,C 2,5 2,C 8,0 0,B -1,3 6,7 -1,8 4,6 2,3 1,9 8,C 4,6 2,9 0,B 1,C 6,C 9,B 3,C 9,B 2,B -1,2 4,3 8,9 9,2 -1,3 0,2 7,1 8,B 4,7 -1,3 0,7 -1,4 1,C -1,0 0,5 2,B 5,5 -1,4 9,6 1,0 0,8 7,0 -1,0 0,0 -1,8 8,2 -1,2 1,1 6,8 2,4 6,6 1,2 7,2 -1,8 1,7 0,0 0,5 7,9 6,6 6,7 9,0 6,1 5,C 2,6 9,4 -1,6 0,1 7,0 -1,6 0,9 9,2 0,8 7,C -1,3 3,1 -1,3 2,C 0,3 -1,6 9,7 0,0 5,7 4,C 0,7 4,B 9,6 -1,0 3,9 5,4 -1,7 -1,0 8,C -1,6 8,6 -1,6 -1,8 4,C 0,4 0,9 5,8 3,B 1,1 3,8 4,B 4,2 9,8 3,C 6,8 3,6 -1,5 -1,8 -1,8 2,B 3,7 6,B 6,3 8,3 6,B 5,5 7,3 -1,3 6,1 9,4 8,B 8,3 8,3 8,C 6,9 8,4 7,B 9,B -1,0 9,8 5,B 3,3 0,4 0,7 0,C 4,8 3,2 0,B 1,8 1,C 6,0 -1,5 0,2 0,B 7,5 4,B 6,5 -1,5 7,8 -1,4 -1,7 1,8 8,C 5,C 5,0 0,5 3,C -1,3 6,B 5,4 0,1 6,C 2,0 6,1 2,6 3,C 4,C 8,0 1,1 6,4 2,2 9,1 8,7 8,B 1,2 7,B -1,0 5,4 8,7 5,4 6,B 5,7 -1,9 -1,2 9,C 1,6 3,4 2,B -1,1 3,8 0,B 7,B 4,2 7,3 1,9 8,B -1,3 6,B -1,8 8,4 8,C 9,7 2,8 9,1 2,C 5,8 6,4 -1,0 7,6 7,0 0,8 0,9 -1,8 -1,4 -1,9 8,1 3,1 8,7 6,3 8,4 8,C 7,0 0,5 -1,7 6,3 1,4 -1,4 -1,1 8,1 8,6 2,B 1,5 4,8 -1,1 1,3 1,8 -1,0 0,7 4,1 4,C 9,5 0,4 2,7 8,3 7,0 1,3 0,2 2,3 2,4 6,3 2,5 5,3 -1,2 9,3 -1,8 2,7 -1,1 3,7 4,C 0,5 -1,4 0,0 -1,1 4,4 -1,5 -1,4 6,5 -1,5 9,B -1,7 8,1 -1,4 -1,3 0,2 0,B 1,7 2,8 8,B -1,6 -1,9 4,0 1,6 1,5 -1,5 0,0 3,7 5,7 4,1 5,5 8,4 0,7 7,9 9,B 0,3 7,4 1,8 7,C 3,7 3,B -1,3 -1,6 0,8 7,C -1,4 0,1 2,B 4,0 6,1 7,8 0,9 3,B -1,9 -1,0 9,B 6,B 1,0 6,B -1,5 3,1 0,2 2,0 1,3 5,C 7,9 1,0 8,7 3,4 9,1 9,2 -1,4 3,4 -1,7 7,1 -1,8 9,7 -1,1 5,2 0,9 0,B 5,7 7,6 -1,6 0,4 -1,9 7,5 0,7 -1,1 0,B -1,4 4,C 0,7 6,C 4,2 -1,5 7,B 9,B 4,0 -1,1 8,9 8,2 8,6 5,7 5,7 0,0 4,9 -1,0 -1,9 4,4 2,5 -1,3 6,7 4,B 7,4 7,4 6,7 8,2 3,1 9,6 2,B 5,1 1,5 -1,5 7,C 5,4 3,B 7,6 -1,9 -1,0 6,8 8,2 -1,9 -1,8 -1,3 9,4 0,3 2,6 -1,2 5,B 3,C 9,1 -1,4 -1,0 8,B 1,1 1,8 5,C 7,2 8,7 1,3 9,4 7,C 7,C 6,7 -1,9 2,6 7,C 0,C 1,0 6,C 8,0 6,C 5,3 3,8 8,3 5,1 4,B -1,7 9,3 2,5 -1,3 8,2 6,6 8,7 4,5 0,0 -1,8 6,B 3,4 0,6 1,4 8,0 -1,0 2,3 6,4 6,0 5,B -1,4 -1,9 -1,2 8,4 -1,6 4,3 -1,1 0,B 4,5 6,C 3,2 5,B -1,0 2,4 3,1 0,9 9,7 6,0 7,5 8,B 5,9 8,B 7,6 8,4 -1,6 -1,1 0,2 -1,1 5,7 3,4 5,0 4,2 7,8 8,4 9,B 1,6 1,9 0,C 7,2 5,9 9,C 9,2 8,3 4,5 9,9 0,B 2,B 1,B 2,1 -1,7 5,C 7,C 2,0 -1,8 0,7 -1,3 0,3 2,8 4,6 4,C 8,2 7,9 7,1 -1,8 9,B 0,B 5,C 0,B 7,6 8,1 4,1 4,9 -1,1 5,5 6,3 4,3 1,6 0,0 6,7 5,3 -1,0 -1,4 4,2 -1,0 0,B -1,9 2,0 -1,8 8,2 6,2 4,1 7,B 7,C 4,B 2,C 0,2 6,2 2,2 5,7 6,7 2,5 8,8 1,1 3,0 7,1 9,8 -1,5 4,5 1,3 3,8 5,4 6,C 5,4 -1,8 1,0 4,1 -1,5 6,C 6,C 9,B 1,3 9,B 9,3 1,0 -1,6 3,3 5,7 0,7 5,7 9,4 8,C 3,9 9,B 0,B -1,3 6,1 4,C 4,C -1,6 -1,8 2,B 8,B 3,C 9,0 2,0 1,5 8,1 -1,0 3,C -1,3 5,C 6,C 0,B 9,1 -1,7 -1,4 0,B 5,C 6,9 -1,7 3,6 5,8 -1,1 -1,6 3,0 -1,1 -1,1 -1,9 8,0 0,B -1,3 6,1 -1,2 -1,0 9,C 7,4 5,0 0,C 3,C 5,B 3,1 8,6 4,3 1,5 9,4 3,C 2,6 9,B 0,2 8,1 6,6 -1,9 1,2 8,2 8,6 2,4 5,7 2,6 0,9 5,2 2,4 4,8 -1,4 5,9 -1,9 7,0 2,7 8,8 0,4 2,C -1,2 3,6 4,2 7,4 0,B 8,6 -1,4 3,0 2,B 8,2 7,7 -1,8 5,8 2,B 4,C 1,2 4,0 3,9 0,0 -1,7 1,1 5,8 3,C -1,6 3,B 3,C -1,5 -1,6 1,8 7,1 0,B 4,6 2,6 4,2 1,2 0,C 7,B -1,5 1,B -1,6 4,0 6,1 4,5 0,B 3,2 2,0 0,6 1,5 9,1 4,B 8,5 1,B -1,2 2,B 3,5 5,B 2,1 2,1 3,2 -1,0 0,5 6,0 9,3 9,0 5,5 6,0 8,3 7,5 -1,7 -1,9 5,6 5,B 4,6 7,B 5,9 7,0 8,7 -1,0 3,B 6,7 5,2 5,3 1,3 3,C 4,5 -1,0 6,B 2,5 4,B 7,6 5,5 4,8 6,B 4,1 0,6 8,2 8,B -1,7 5,6 9,C -1,8 7,C 8,4 6,3 1,6 -1,0 5,8 -1,0 6,2 7,5 6,0 4,0 0,1 4,1 -1,5 6,8 0,6 9,5 6,8 -1,8 0,5 3,7 -1,7 -1,3 8,2 4,C -1,5 3,1 0,4 1,6 -1,9 0,2 4,2 -1,9 3,0 6,6 -1,9 0,2 5,9 -1,6 2,0 5,6 1,4 6,3 6,1 6,8 5,B -1,4 4,B 4,B 9,C 4,3 9,C -1,2 7,7 3,C 8,7 0,B 6,3 9,B 5,B -1,4 6,5 9,9 9,B -1,6 2,7 1,B 8,5 6,1 8,4 7,9 5,8 9,3 0,0 5,5 -1,2 3,9 0,2 -1,1 2,C 1,2 3,2 1,7 2,3 9,4 8,1 9,2 4,0 6,5 8,B 3,3 -1,8 -1,2 3,2 8,B 8,9 3,1 8,0 5,2 2,4 2,4 8,6 9,C 9,7 0,5 2,1 8,5 -1,5 6,9 2,2 -1,6 6,C 6,1 -1,3 5,9 4,2 -1,9 1,5 -1,7 5,7 4,6 -1,1 7,0 7,2 -1,5 0,5 -1,9 1,1 8,1 8,4 -1,5 1,5 3,0 -1,3 2,9 2,1 0,7 0,C -1,0 8,B 0,5 2,1 -1,5 7,6 4,0 6,4 9,7 9,C 7,4 8,6 -1,7 5,B 6,B 0,7 1,C 8,5 4,2 2,6 6,7 2,9 9,C 7,B 0,9 -1,6 1,4 6,9 1,4 6,C 4,1 9,7 6,0 -1,0 -1,4 1,4 2,3 2,9 -1,4 -1,2 7,9 1,C 9,3 -1,5 5,1 4,B 8,1 2,B 5,C 2,7 3,1 4,0 9,2 1,3 7,3 1,9 3,B -1,6 7,2 -1,5 -1,0 5,0 0,3 -1,0 2,6 -1,1 7,8 -1,6 5,1 7,4 0,1 3,C 0,8 0,8 8,B -1,9 -1,2 2,3 2,6 6,5 0,0 -1,5 0,7 7,3 2,C 2,2 7,7 -1,3 6,7 4,8 4,3 8,C 4,7 2,7 -1,2 1,0 -1,4 4,7 0,0 -1,9 0,B 8,C 8,C 4,C 5,6 7,8 -1,9 3,5 5,C 8,C 6,C 1,6 2,2 0,3 9,4 2,1 6,5 4,C 3,C 0,C 0,2 -1,7 5,C 3,C 8,C -1,1 4,4 3,8 -1,4 -1,2 1,C 3,B 5,3 2,B 1,8 1,0 7,0 2,B -1,7 -1,6 3,0 7,B -1,1 3,3 3,C 7,6 7,0 7,B -1,4 -1,5 -1,3 6,9 0,9 3,2 5,4 5,B -1,4 9,7 1,3 2,9 2,2 9,1 2,9 7,0 -1,9 7,B 2,6 5,B -1,6 6,C -1,8 5,5 4,4 4,5 0,0 7,5 3,2 8,7 4,7 9,2 -1,3 9,5 7,5 5,7 -1,4 1,4 6,3 2,B 0,C -1,4 9,8 1,0 1,3 3,0 -1,1 -1,7 8,0 0,3 8,1 6,1 6,7 4,C 5,4 4,7 8,8 -1,6 4,3 4,3 2,9 7,8 2,0 1,2 2,B 3,3 -1,4 8,C 2,C 0,7 8,1 2,5 -1,6 -1,2 7,2 3,3 -1,3 9,8 1,5 0,4 1,4 6,2 1,3 6,0 -1,8 3,6 8,7 0,0 5,1 6,6 8,6 5,B 0,7 2,7 -1,0 6,B 1,7 4,0 -1,0 -1,2 0,B 9,0 -1,6 -1,5 2,B 6,6 5,9 4,6 4,6 7,C 4,1 -1,5 4,0 5,B -1,6 7,0 3,9 5,1 6,B 1,2 -1,3 1,2 -1,6 -1,4 0,8 5,C -1,6 -1,0 3,B 9,7 0,1 -1,6 9,3 3,2 0,3 8,2 3,0 2,0 -1,6 9,1 8,C -1,5 -1,6 4,C 4,C -1,7 2,4 9,B 6,9 -1,3 3,B -1,3 5,3 1,5 8,4 0,5 -1,3 4,7 5,9 -1,9 8,4 2,C 5,B 6,5 5,9 7,C 0,8 7,C 7,3 -1,3 8,9 -1,7 0,9 4,8 7,3 -1,1 5,C 0,7 6,B 1,9 5,0 7,2 5,0 6,8 2,0 6,B 9,B 4,2 9,C 9,4 0,3 0,9 3,C 9,6 6,9 3,4 9,0 7,5 8,4 3,3 6,5 7,C -1,9 1,9 7,4 -1,4 1,C 5,2 8,C 7,8 5,9 4,2 6,6 -1,6 8,5 1,8 4,4 -1,7 -1,8 0,3 2,2 2,C 6,7 -1,6 3,C 8,C -1,9 8,5 3,B 0,7 -1,1 8,6 6,3 6,3 -1,3 7,5 -1,6 7,9 5,4 3,9 8,4 6,C 0,6 9,C 7,B 8,9 9,B 4,C -1,2 -1,6 9,6 0,7 6,6 4,9 8,2 -1,2 1,2 8,0 7,B -1,4 1,6 -1,8 4,0 4,9 8,9 3,B -1,4 1,2 5,7 -1,7 1,1 8,9 2,5 3,C 5,C 0,C 1,B 5,8 1,5 -1,3 5,0 8,8 8,3 -1,9 2,3 9,2 8,3 9,6 1,9 -1,6 3,5 -1,4 -1,8 2,6 9,5 -1,3 -1,1 4,C 8,9 8,4 -1,9 1,3 -1,5 1,0 2,7 9,C -1,9 -1,7 5,4 7,6 0,3 6,4 7,1 4,0 7,B -1,2 4,1 1,3 3,C 7,C -1,3 5,3 -1,9 3,8 3,9 -1,3 0,6 2,7 9,B 8,B 3,C 7,3 1,B 5,3 1,1 2,B 5,8 9,9 9,7 4,8 1,7 6,0 0,B 5,2 9,8 -1,5 5,9 3,C 8,C 3,0 0,2 2,6 4,8 3,C 8,6 8,8 -1,3 7,7 7,9 5,4 1,2 7,8 -1,7 -1,5 8,2 3,C 3,4 6,4 0,3 8,4 0,2 5,2 3,3 3,2 9,C 5,9 0,5 -1,9 -1,2 1,4 1,C 1,2 5,9 8,6 0,6 3,8 5,6 2,5 -1,9 8,0 1,B 3,3 4,1 7,3 9,4 8,B 3,8 6,1 3,B 6,5 7,9 -1,5 3,8 3,8 -1,2 8,6 6,C 5,6 9,B -1,1 5,2 7,B 9,3 0,1 7,5 2,8 6,9 -1,8 -1,7 -1,8 2,B 9,9 0,C 1,6 -1,3 5,9 9,6 -1,7 8,C 1,C 4,C 8,6 0,4 4,1 9,5 7,B 6,6 5,7 0,1 2,7 5,8 -1,1 8,8 6,1 -1,2 0,2 8,8 8,5 -1,5 4,1 6,7 9,7 3,B 7,2 -1,9 3,4 2,9 4,C 7,0 4,0 5,3 0,5 5,4 1,7 0,B 0,9 5,C -1,4 8,B 4,8 8,C -1,9 8,B 2,6 -1,4 7,0 0,8 -1,8 -1,8 -1,4 8,B 1,C 9,8 1,9 9,2 9,6 5,0 8,3 5,7 -1,2 2,1 9,8 8,3 -1,7 5,5 7,3 7,4 6,4 4,8 5,8 -1,9 4,0 2,5 5,3 3,5 7,5 7,9 7,2 -1,8 2,C 2,5 3,7 8,7 -1,8 2,6 3,B 9,6 7,C -1,3 6,3 -1,1 3,B 6,8 1,2 -1,1 0,0 6,1 5,4 -1,1 0,2 -1,4 7,2 3,8 7,6 2,3 2,C -1,7 5,5 -1,2 9,B -1,1 2,4 -1,4 5,1 1,9 8,8 0,5 0,1 0,6 1,0 8,C -1,9 5,5 -1,7 -1,0 3,7 6,3 8,4 3,0 4,6 5,B 4,4 1,9 8,6 3,3 7,9 7,1 5,1 6,C 7,5 9,6 1,5 8,B 1,7 -1,5 2,9 3,B -1,9 8,3 9,5 1,6 8,1 5,0 6,4 7,1 4,3 2,4 -1,7 -1,9 6,5 5,B 1,6 2,C 3,4 4,2 7,3 7,5 3,9 2,8 -1,3 0,3 -1,5 2,C -1,8 -1,4 -1,2 0,9 6,9 4,C 0,7 -1,4 9,4 -1,6 6,6 -1,1 3,6 -1,3 4,2 -1,8 3,7 1,C 4,0 6,1 6,1 0,3 4,6 2,0 2,1 2,7 8,B 5,C 5,0 1,C 2,8 2,2 2,4 1,0 5,5 5,2 4,B 3,1 7,6 -1,6 5,8 8,8 1,6 4,C 4,9 2,B 6,3 7,5 4,C 2,B -1,3 7,4 5,9 1,5 1,3 1,6 3,4 2,5 7,7 6,5 4,1 7,B 4,7 3,7 -1,5 8,8 6,B -1,1 0,2 6,2 -1,8 5,5 0,B 9,4 3,2 7,2 7,3 5,1 0,B 5,3 8,0 5,7 1,B 7,3 4,3 1,7 -1,3 1,5 -1,9 1,0 1,5 5,B -1,0 9,5 8,5 1,8 3,C 3,3 1,9 -1,5 -1,1 6,B 5,8 7,7 8,3 3,2 -1,7 2,B 7,0 1,B -1,1 -1,7 0,9 6,9 1,B 0,5 2,8 6,9 7,9 3,7 8,9 0,4 7,0 9,C 2,3 5,B 2,3 -1,8 7,0 5,8 3,B -1,4 -1,5 -1,5 3,C -1,1 7,5 3,6 -1,3 -1,9 6,B 4,2 -1,9 -1,6 0,8 0,7 4,5 8,8 -1,9 4,5 8,C -1,1 0,7 3,7 3,9 2,4 3,0 -1,2 8,6 2,8 6,9 7,C 6,B 3,5 8,4 -1,1 -1,4 7,0 9,C 1,0 6,3 -1,0 5,5 6,8 9,7 0,0 -1,2 0,C 8,4 3,B 5,5 9,C -1,9 3,B 8,1 8,3 2,0 -1,2 4,9 6,C 8,B 1,6 -1,4 -1,2 6,7 -1,1 2,0 8,8 7,9 8,4 3,2 0,7 5,B 6,5 9,B -1,1 -1,1 5,8 5,5 9,C 2,B 4,7 1,5 4,0 5,5 3,3 7,4 7,6 1,6 -1,6 3,C 2,2 -1,3 5,C 1,4 6,1 3,4 2,1 7,1 4,5 5,7 -1,2 7,6 7,4 2,8 6,3 9,2 -1,9 8,7 7,6 -1,9 9,4 -1,3 1,2 5,8 6,0 5,0 4,3 9,C 5,C 9,9 -1,6 0,1 4,4 7,3 -1,9 5,B 5,0 7,0 8,4 4,2 -1,2 4,0 7,8 1,C 3,2 5,4 5,3 5,0 4,1 3,6 1,2 3,7 -1,0 2,3 -1,6 7,3 9,B 0,0 -1,6 2,8 9,2 -1,7 3,3 1,3 7,2 3,1 1,C 5,2 5,0 7,C 4,9 9,2 8,C 4,5 0,7 -1,4 8,2 8,3 1,6 6,C 3,3 4,2 7,1 8,3 -1,9 2,C 8,1 2,4 6,C 0,2 9,B 6,8 6,C 9,2 0,B 2,6 5,7 -1,9 7,5 5,4 8,1 9,B -1,1 9,8 8,8 2,9 7,4 3,8 1,9 7,C 9,C -1,1 6,B 6,B 7,2 -1,5 -1,9 4,7 4,1 7,4 2,3 9,1 1,7 8,8 1,1 -1,4 2,C 9,7 8,2 6,4 6,C 2,5 8,3 6,0 3,B -1,0 5,4 4,C 9,6 5,2 9,B 6,B 8,2 8,B 3,7 8,3 -1,7 -1,3 0,4 0,6 0,B -1,9 -1,1 3,2 1,8 7,9 -1,3 3,3 -1,4 2,4 6,B 0,5 7,4 -1,2 7,4 8,6 5,3 -1,8 0,9 1,C 5,4 2,8 9,1 0,4 2,B 0,9 3,9 -1,9 4,8 8,7 7,2 1,3 -1,7 2,1 5,2 -1,5 9,C -1,5 7,2 -1,3 1,6 2,8 1,B 6,9 -1,0 0,C 3,C 1,9 2,4 5,7 2,C 0,B 7,1 0,B 4,B 0,9 8,C 8,1 9,7 3,C 9,2 6,3 5,5 5,7 0,2 -1,2 8,6 6,7 3,4 6,6 -1,5 2,B 7,1 4,B 4,7 3,5 2,4 9,8 2,0 5,B 4,2 1,5 -1,5 1,C 0,4 -1,6 -1,8 -1,9 1,B 3,8 6,C 8,5 9,B 7,7 6,3 -1,1 -1,5 -1,1 -1,6 1,6 4,8 0,0 0,7 2,4 0,C 9,9 7,9 6,9 4,2 6,2 2,4 5,5 3,9 2,7 1,6 6,1 3,8 7,5 9,6 -1,0 -1,6 0,C 1,B -1,7 9,4 4,4 5,0 2,5 1,C -1,4 7,4 -1,9 4,2 -1,6 2,8 2,6 -1,8 -1,5 7,8 0,2 7,3 7,4 2,3 5,9 1,9 -1,5 -1,1 9,5 5,3 -1,8 9,C 8,3 6,C 9,C 5,7 6,8 -1,8 0,3 -1,7 2,4 9,C 1,8 -1,7 9,C 3,3 9,9 -1,0 -1,6 -1,9 2,1 3,2 6,8 0,C 4,3 3,8 4,8 5,C 6,B -1,1 1,2 8,7 9,C 8,6 9,B 8,3 -1,5 4,3 4,0 6,7 7,1 6,9 9,3 5,2 0,6 5,C 7,3 2,0 8,B 0,7 2,B 8,7 5,8 1,4 8,5 1,4 7,0 8,0 5,B 5,C 6,B 1,5 3,C 5,8 0,8 8,6 4,9 -1,9 4,2 0,C 6,B 2,9 7,5 6,9 -1,7 8,4 -1,6 0,7 0,1 1,C -1,0 -1,3 -1,6 -1,4 3,6 -1,0 -1,7 7,B 4,8 7,2 1,0 4,1 9,6 9,C 0,B 6,6 7,5 6,0 0,B 5,B 3,7 -1,6 1,6 7,1 5,5 7,1 8,4 3,2 3,5 5,8 5,2 4,4 2,9 7,C 6,B 6,4 8,7 5,6 6,0 9,B 1,8 -1,3 3,4 8,C 8,5 4,8 3,2 0,0 0,B 2,B 1,9 4,B -1,9 4,6 5,4 2,1 -1,9 5,2 -1,9 3,6 5,4 8,5 5,8 9,B -1,9 -1,4 0,5 6,7 0,9 0,5 -1,0 3,B 8,4 4,7 9,B 1,5 9,6 -1,7 5,1 8,5 8,4 -1,4 1,2 6,9 -1,0 7,0 -1,7 1,7 5,5 7,B 0,C 8,9 -1,9 3,B 4,8 0,3 0,9 7,1 5,0 0,1 5,4 1,0 2,C 4,4 6,1 9,B 7,1 9,5 -1,7 8,3 8,1 -1,1 1,2 3,2 4,1 5,7 8,5 -1,7 8,4 5,C 2,4 -1,5 -1,6 1,1 9,3 -1,3 0,9 -1,5 0,7 8,6 3,8 2,7 9,B 3,2 -1,7 1,5 1,C 6,0 -1,6 -1,9 -1,6 -1,8 -1,9 6,5 0,2 4,1 6,5 4,4 2,C -1,5 1,4 4,3 -1,8 0,C 3,2 -1,4 -1,6 1,1 -1,2 4,0 0,0 5,9 1,1 8,C 4,B 4,4 4,5 4,C 4,B -1,0 2,0 3,0 4,C 3,3 4,0 3,B 0,C 5,C 3,6 0,B 1,B 9,2 -1,2 -1,3 2,9 6,8 4,C 8,1 9,8 5,5 4,6 -1,3 -1,1 -1,5 4,4 3,9 8,5 -1,4 5,3 5,6 3,1 -1,9 9,C 3,7 7,B 8,8 9,0 5,7 8,1 4,C -1,9 6,B 7,C 2,0 3,8 -1,9 3,8 4,7 1,B -1,8 1,8 1,9 -1,5 6,C -1,7 0,4 7,6 0,8 -1,6 -1,3 8,B -1,3 -1,6 5,C 4,4 -1,6 4,B 3,3 0,C -1,3 6,8 0,C -1,8 5,0 -1,0 -1,8 3,4 1,C 9,3 0,C 6,5 6,9 2,1 -1,8 8,4 -1,7 8,5 9,C 9,7 8,5 -1,4 8,3 6,C 6,4 0,0 0,6 2,8 2,7 7,3 0,5 7,3 -1,5 -1,9 7,3 6,0 -1,4 9,C 5,8 3,9 3,3 0,6 3,4 9,9 -1,1 -1,7 7,5 4,7 0,9 8,0 3,1 7,5 3,C 8,5 8,6 0,B 5,C 7,4 5,1 7,0 2,C 4,4 1,4 2,5 -1,1 8,0 0,7 2,8 7,B -1,7 2,C 0,9 2,0 0,B -1,4 1,0 0,7 5,2 -1,6 -1,9 6,5 5,1 -1,5 0,5 9,2 4,0 9,8 9,9 2,0 7,4 7,0 7,8 1,2 -1,6 3,0 3,7 5,2 4,0 7,9 2,0 6,0 8,8 8,5 2,B 1,9 3,8 6,3 2,7 0,7 1,7 7,9 6,3 -1,6 -1,2 7,8 3,1 1,B 5,3 2,2 -1,3 0,2 -1,0 2,9 7,8 1,5 1,7 1,5 -1,1 9,7 -1,8 6,C 0,C 8,B 1,B 0,6 -1,7 0,1 6,C 5,6 6,6 8,5 -1,1 7,6 -1,0 0,1 -1,0 3,7 5,4 7,7 7,8 2,0 0,0 1,C 4,C 4,5 0,1 5,4 3,5 5,3 1,6 3,C 8,8 3,1 4,6 0,2 1,4 1,C 5,7 9,2 2,1 2,3 4,2 6,C 3,C 5,C -1,4 7,C 5,C 8,5 7,3 3,B 8,0 4,C 2,7 5,C 1,2 6,C 9,2 -1,9 2,5 3,C -1,7 4,2 6,6 4,0 2,1 0,B -1,7 7,4 9,B 1,7 2,C -1,5 -1,0 5,7 5,C 4,3 5,2 8,2 3,8 -1,3 5,3 -1,2 1,B 0,1 3,B 5,9 -1,3 1,0 -1,4 6,B -1,4 5,4 -1,0 -1,4 3,0 -1,3 2,4 -1,5 -1,2 -1,7 2,B 4,3 8,3 -1,2 6,0 1,6 7,6 4,5 -1,9 9,2 9,8 9,1 -1,9 -1,4 3,4 3,5 8,1 3,B 9,C 4,7 0,6 -1,8 8,5 2,8 1,2 3,C 0,5 1,5 6,8 2,9 9,C 8,9 6,5 3,C 1,3 5,B 5,B 7,7 5,B -1,8 2,B 3,0 -1,6 6,2 0,7 2,B 7,5 -1,2 4,5 -1,7 8,C 9,5 -1,6 1,3 4,1 0,0 -1,7 3,3 2,C 8,C 4,1 7,5 3,5 6,B 8,1 5,9 7,B 4,6 -1,8 7,C 1,9 0,9 6,9 -1,7 7,2 3,3 1,1 6,1 -1,7 4,C 0,C 3,7 7,5 4,C 8,9 9,1 3,2 -1,7 9,0 5,B 5,B 6,C -1,5 6,B 8,6 1,9 2,B 2,6 0,C 4,7 9,6 0,0 6,8 9,3 0,C 5,0 5,0 2,1 6,4 3,7 4,B 0,B 2,8 0,B -1,4 -1,8 0,C -1,4 9,9 8,8 6,9 9,B 7,2 -1,5 6,1 4,0 8,0 3,7 1,0 7,9 7,4 -1,0 8,7 8,B 9,7 3,3 9,2 -1,3 9,5 3,C 0,6 2,2 0,1 6,B 2,9 -1,1 -1,4 9,B 2,B 8,C -1,3 9,B 3,4 8,8 2,C 5,6 -1,6 1,C -1,1 7,7 9,C 9,5 6,4 6,6 -1,1 0,5 0,C 8,0 5,2 8,B 6,B 9,4 1,6 1,5 0,1 7,6 -1,8 4,B 4,4 6,C 7,5 1,B 0,2 -1,2 4,8 7,2 1,4 6,4 4,6 0,6 -1,6 5,4 1,4 4,7 1,B -1,2 7,B 6,4 2,6 9,5 8,3 8,7 1,7 -1,4 -1,5 1,5 3,C 6,7 1,4 7,2 2,C 1,3 8,6 0,9 2,0 0,6 8,8 6,6 6,B 1,0 -1,7 2,B 9,1 4,6 3,9 0,B 9,2 -1,1 -1,2 4,7 5,B 0,B 3,5 -1,9 1,8 3,1 1,B 1,B 6,5 -1,8 9,B 7,9 0,4 0,C -1,0 4,C -1,3 7,B 6,2 4,C -1,2 8,1 -1,4 -1,6 0,C -1,0 -1,0 5,C -1,9 0,8 9,9 2,0 3,3 8,C -1,7 3,B -1,4 0,9 0,B -1,9 3,5 8,4 1,9 4,9 6,9 5,0 3,3 -1,7 5,6 8,1 -1,6 4,2 1,B 3,8 7,B 7,2 6,8 2,7 6,3 4,3 7,7 -1,5 2,3 5,3 -1,9 -1,8 5,7 6,7 5,0 4,7 9,C 3,7 1,8 2,9 3,4 -1,1 -1,8 7,6 7,B 8,9 0,1 7,3 9,9 -1,2 -1,8 7,8 8,3 3,C 6,7 6,3 3,B 0,6 9,8 -1,1 2,0 7,3 3,B 8,7 4,1 8,1 2,5 -1,4 1,2 0,1 3,C -1,3 9,4 0,2 3,B 1,8 8,0 3,C -1,1 4,C 7,2 9,5 5,7 -1,4 3,2 3,1 3,0 0,4 4,3 2,B 6,5 -1,6 2,3 8,C 3,B 7,1 2,8 5,3 9,5 0,5 9,B 2,7 1,B 1,C 8,3 6,5 5,B -1,9 0,7 2,9 -1,1 -1,8 -1,9 6,B 4,2 -1,5 8,9 5,9 4,9 1,9 6,C 6,B 6,B 1,9 8,C 0,3 1,4 3,B -1,4 8,C 7,6 4,B -1,7 5,3 6,3 6,4 3,7 6,3 3,4 4,9 8,B -1,8 2,8 -1,7 -1,4 3,4 7,9 3,3 1,B 2,C 4,1 7,C 5,B -1,0 1,9 7,0 -1,6 -1,8 5,1 -1,7 -1,6 7,8 4,5 8,C -1,6 -1,6 -1,3 6,3 -1,7 8,C 6,4 -1,1 7,0 0,4 8,9 8,2 1,B 3,B 8,8 -1,6 5,5 -1,0 9,7 7,6 -1,2 -1,8 1,9 8,3 -1,8 7,2 4,9 -1,7 -1,1 6,5 9,1 0,6 3,0 -1,4 5,9 6,C 2,8 1,5 0,6 -1,4 -1,0 7,7 3,1 3,7 5,C -1,3 1,C 4,B -1,0 1,2 7,8 0,0 4,1 4,4 -1,6 8,9 7,6 7,9 -1,2 4,3 1,9 9,B 6,B 3,5 8,8 7,C 1,1 -1,1 8,8 -1,4 8,0 4,5 -1,8 7,2 0,4 6,8 -1,7 2,1 9,8 8,5 0,B 2,8 -1,7 0,4 2,0 3,4 -1,3 3,0 7,4 -1,5 3,3 1,5 7,0 2,B -1,1 1,5 7,B 2,6 0,1 8,C 1,7 2,6 7,9 3,9 4,C 3,1 -1,1 6,0 6,8 3,C 7,B -1,2 -1,4 7,4 0,3 6,8 4,3 4,B 6,C 6,C 4,6 7,C 3,2 6,8 1,7 9,2 4,3 1,2 -1,3 -1,5 -1,9 1,B 5,B 8,C 7,2 7,0 7,8 -1,4 5,2 9,8 0,0 -1,6 0,2 8,1 0,7 0,B 9,9 -1,6 7,1 8,1 3,5 0,4 5,C 2,5 6,B 2,9 5,9 1,2 0,3 3,C 0,3 -1,1 2,6 8,7 8,2 6,B 4,7 -1,7 -1,7 4,3 2,9 8,3 -1,2 1,C 1,9 1,7 9,2 6,4 1,C 0,4 7,5 -1,9 -1,9 7,C 9,8 8,6 8,C -1,8 1,9 -1,8 -1,9 9,B 5,6 7,7 3,8 -1,5 6,6 4,9 -1,8 1,4 1,2 7,3 7,1 2,9 -1,9 1,6 5,C 4,0 5,6 4,6 2,7 -1,1 -1,5 5,8 -1,5 5,C 0,2 -1,8 1,4 3,C 1,5 2,C 3,1 4,B 3,C 6,C 2,B 1,3 6,5 8,5 0,3 7,8 2,7 1,3 7,1 2,C 7,C -1,5 -1,4 0,4 -1,4 8,B 4,3 -1,1 4,6 -1,8 8,C -1,5 -1,3 4,6 -1,3 2,9 2,6 -1,5 0,C 5,5 1,5 -1,5 4,4 5,6 7,1 6,5 2,1 4,4 2,2 3,B 8,8 -1,1 3,C 3,7 -1,9 -1,4 6,6 1,4 -1,3 -1,5 -1,3 2,8 -1,4 7,4 4,8 0,7 3,B 6,7 1,C -1,5 4,6 4,6 3,9 2,C 6,1 -1,8 -1,5 3,2 2,0 9,B 4,B 5,7 -1,6 0,1 0,5 -1,9 2,B 2,0 0,2 4,3 -1,0 7,4 6,0 9,4 5,8 9,5 8,5 -1,3 -1,6 -1,2 6,2 9,3 8,2 -1,3 -1,0 -1,7 -1,4 6,6 6,C 8,5 0,C 8,5 0,3 -1,1 -1,6 9,0 8,8 7,C 7,2 1,1 0,4 -1,4 4,C 8,6 0,4 3,0 -1,3 2,1 -1,0 5,5 6,8 0,2 3,9 8,C -1,9 2,1 -1,6 3,C -1,3 -1,9 1,9 4,7 2,C 4,B 0,7 8,1 -1,3 0,5 3,2 7,3 -1,2 1,4 3,C 4,C 3,B 8,8 -1,1 0,2 9,1 4,C 5,4 8,0 -1,8 5,5 6,8 3,1 9,B 8,8 4,4 9,2 7,B 6,9 -1,5 3,5 0,5 1,C 7,6 6,2 0,1 4,7 -1,3 7,3 1,8 4,2 3,9 -1,4 -1,6 9,8 3,9 3,2 1,0 -1,4 3,6 0,2 6,8 2,0 0,8 6,8 0,B -1,5 -1,2 9,2 8,1 2,9 8,8 -1,9 3,9 2,B 4,3 7,C 7,3 4,2 5,5 2,3 3,4 0,C 4,C 7,1 9,7 7,0 2,4 1,9 0,B 6,0 5,4 0,C 5,C 2,5 -1,6 2,C 7,8 7,9 5,C 8,0 6,6 8,2 -1,6 -1,6 2,1 6,2 8,5 2,5 6,1 9,7 9,7 2,7 9,1 2,9 7,5 5,4 8,C 3,B 5,3 0,6 5,2 8,4 -1,6 7,B 6,2 9,4 2,B -1,8 0,3 0,5 5,6 9,4 -1,2 2,9 8,C 3,2 4,5 6,1 8,6 2,B 7,3 1,3 7,4 7,6 8,5 2,9 1,0 3,7 0,C 2,C 8,C -1,6 4,4 -1,7 8,C 5,3 -1,9 3,8 5,8 0,B -1,3 0,C 1,3 -1,3 5,9 3,0 7,6 -1,6 -1,9 8,2 2,9 9,8 -1,0 7,2 -1,2 1,9 1,C 6,5 -1,1 6,7 7,C 0,B 3,4 6,8 -1,4 2,0 -1,6 6,2 -1,1 2,5 9,C 5,5 0,6 2,5 4,C 2,8 7,2 8,1 7,8 1,4 3,2 3,7 6,3 -1,0 2,B 1,0 5,1 -1,0 3,6 3,C 2,4 2,4 6,5 -1,3 -1,3 4,8 2,7 3,B 3,2 9,4 0,5 8,6 -1,6 6,2 -1,0 7,6 0,B 5,B 1,2 2,9 7,2 9,C 6,B 5,C -1,2 1,C -1,1 9,1 3,9 4,9 1,2 0,B -1,7 9,C 1,7 -1,3 1,9 -1,6 8,7 6,4 5,3 0,0 4,1 5,0 8,B -1,0 6,4 1,3 2,2 9,C -1,1 7,2 2,B 0,4 8,7 -1,3 -1,2 4,2 4,2 3,6 3,C 3,1 9,2 -1,4 1,9 5,6 5,1 -1,9 9,C 9,0 -1,1 8,4 5,B 4,1 1,8 -1,3 5,B -1,6 9,6 -1,7 3,B 2,4 4,7 -1,2 1,9 1,8 5,0 -1,9 6,B 9,5 5,B 2,7 4,9 9,7 7,C 6,2 6,C -1,1 9,4 2,B 7,5 1,C 6,C 3,7 2,6 8,C 7,1 6,9 -1,4 6,1 -1,3 -1,8 5,8 -1,5 -1,9 4,8 9,7 1,2 4,8 3,C 3,3 -1,5 5,4 8,C 8,6 4,3 1,3 8,2 3,6 -1,1 0,C 5,9 0,8 1,8 0,5 8,3 -1,4 1,6 5,2 9,5 -1,9 -1,9 6,0 8,1 3,B -1,0 1,6 1,3 6,B 7,0 2,0 5,5 -1,5 4,3 6,6 1,C -1,8 9,5 2,1 7,8 -1,0 0,8 4,8 3,6 -1,1 8,0 8,7 6,6 -1,3 3,1 1,B 0,1 -1,3 9,B 5,6 3,6 4,1 8,8 2,0 -1,3 3,7 5,3 0,B 1,2 1,C 6,C -1,8 1,C 7,B 4,6 1,6 3,C 4,B 0,6 8,5 -1,8 9,C 2,C 1,7 1,C 6,6 5,0 1,4 -1,9 0,2 7,B 6,5 3,9 6,8 -1,6 -1,3 1,B 0,2 4,1 4,7 4,9 -1,4 4,2 7,2 0,C -1,7 3,C 8,0 -1,3 3,1 6,5 -1,9 4,6 -1,3 8,1 -1,8 5,C 7,C 7,7 1,2 5,1 5,5 7,0 5,0 1,7 -1,8 7,9 7,8 6,B 7,2 -1,3 -1,8 9,3 -1,9 -1,4 8,9 7,C 6,2 0,4 1,C 4,C 0,B 8,B 7,8 3,C 3,5 5,8 1,B 6,B 8,5 7,6 -1,5 5,C 6,C 4,6 6,5 7,4 5,8 5,B 5,C -1,3 -1,2 8,7 -1,1 -1,1 2,5 -1,4 0,5 0,B 0,6 2,2 8,7 9,9 0,B 6,4 -1,9 9,5 2,C 5,0 8,9 0,C -1,9 1,3 2,6 4,9 1,4 5,B 7,B 8,0 1,8 -1,2 9,8 0,1 4,7 6,2 -1,1 5,2 6,5 3,3 7,0 0,0 6,7 -1,3 1,7 -1,0 9,3 8,B 1,C 1,0 -1,8 6,9 7,7 0,1 4,3 -1,0 5,C 3,B 2,C 1,3 7,0 -1,6 2,8 -1,8 -1,0 -1,2 8,2 2,B 4,B 1,1 6,0 4,6 -1,8 0,C 9,B 2,0 4,0 1,5 -1,7 7,0 9,4 -1,7 1,2 2,0 2,4 8,5 7,5 5,2 -1,2 0,1 1,6 -1,0 1,9 1,C 8,0 4,7 1,C 0,B 2,9 8,3 -1,0 7,C 2,7 6,4 8,3 9,C 4,C 5,B 9,4 0,0 5,0 8,C 0,9 3,5 0,3 1,7 3,2 -1,7 -1,9 0,B 9,C 4,C 1,B 6,8 2,1 -1,0 1,3 9,6 1,1 4,C 8,2 9,1 3,7 -1,3 -1,1 4,0 9,1 0,7 -1,1 2,1 -1,0 8,2 2,8 0,C 6,C 5,4 7,8 3,3 -1,9 8,0 5,5 3,8 0,8 6,2 8,6 0,1 4,C 3,9 1,9 7,3 3,C -1,4 9,3 2,9 6,B 2,6 4,1 6,4 2,2 6,8 1,2 4,3 5,2 6,0 6,4 -1,6 0,5 6,3 7,C 0,5 5,0 5,1 -1,6 8,0 1,0 5,1 9,1 9,7 9,B 1,C 3,0 6,0 4,4 1,3 -1,9 3,9 6,C 4,1 -1,9 -1,4 -1,8 -1,5 1,1 1,2 0,B 9,8 1,1 6,3 0,7 2,5 9,1 7,5 5,B 9,B 6,0 7,C 2,0 2,4 -1,5 -1,8 3,C 1,8 0,3 7,1 5,B 1,4 9,7 5,8 3,0 4,0 -1,0 -1,3 -1,2 6,4 1,9 1,C 8,C 5,5 -1,8 2,C -1,0 -1,7 8,0 2,1 7,2 3,7 2,C -1,4 8,C 8,7 1,8 0,9 -1,3 7,C 6,B -1,7 -1,8 2,7 4,B 8,3 1,3 4,8 4,C -1,2 4,B -1,1 3,7 -1,7 7,2 1,2 -1,1 5,4 1,3 -1,3 -1,7 0,C 0,4 0,6 2,6 3,3 4,4 5,B 6,4 -1,1 -1,2 8,3 9,B 2,3 1,B 5,C 9,2 6,0 7,5 1,9 2,7 2,7 9,B 0,C 2,5 0,1 3,7 6,9 1,C 3,5 2,7 -1,7 6,2 1,8 3,6 2,1 3,6 6,1 1,5 5,9 -1,0 -1,3 5,C 8,0 -1,5 4,9 4,7 6,C 8,3 7,6 3,C -1,4 3,C 3,1 4,1 3,3 0,9 -1,6 9,4 2,B 5,7 3,B -1,8 3,2 -1,9 2,8 -1,8 -1,7 0,4 1,C 6,C 9,B -1,1 4,4 4,7 4,7 -1,3 6,7 9,C 2,1 -1,1 6,3 -1,6 4,1 2,4 6,8 -1,9 -1,7 7,1 0,C -1,5 0,0 5,5 7,2 8,C 0,0 9,B 7,5 5,C 1,9 8,C 3,3 3,1 7,9 2,2 -1,1 -1,4 -1,7 4,5 3,6 8,9 5,2 -1,4 1,1 0,3 9,2 7,8 6,2 4,C -1,0 6,4 -1,4 0,6 7,5 -1,3 5,7 1,9 4,6 6,7 4,9 2,1 -1,6 6,5 0,9 7,C 2,1 1,0 2,C 3,8 1,C -1,4 1,9 5,B 8,1 6,B 5,6 -1,4 1,6 3,5 -1,1 -1,2 -1,5 7,8 8,7 9,B 8,3 4,4 2,C 5,C -1,8 9,6 1,C 7,5 2,5 6,5 6,B 6,7 -1,1 7,C 3,5 8,1 9,C 4,0 4,C -1,5 0,7 -1,5 -1,8 3,3 7,0 6,6 -1,2 1,9 8,B 6,6 4,4 8,2 1,0 8,7 5,0 1,7 -1,2 3,1 4,6 7,6 2,6 -1,0 0,7 -1,3 4,6 1,8 4,C 3,7 4,0 2,B 7,2 3,0 -1,4 4,7 3,C -1,5 2,9 2,B 7,2 2,0 9,B 1,9 7,6 4,8 8,3 2,9 -1,1 2,B -1,0 7,8 3,3 -1,1 1,B -1,3 -1,1 7,7 5,0 0,9 -1,0 -1,3 4,7 6,8 3,3 -1,7 4,B 7,3 5,0 6,4 6,5 0,2 3,B 6,9 1,4 5,0 7,0 6,5 0,B 5,8 6,B 9,B 9,8 0,9 6,0 0,4 3,2 1,1 2,5 3,0 2,0 3,9 8,7 -1,4 6,4 9,2 7,0 5,1 -1,7 -1,4 4,4 -1,8 -1,9 4,9 4,C 5,0 -1,2 0,2 3,C 9,6 6,0 1,3 7,8 -1,4 6,6 -1,7 3,2 5,5 -1,9 4,B 1,B 2,0 5,5 -1,4 8,0 2,4 1,2 3,1 3,8 2,C 6,9 4,6 1,7 5,C 9,B 0,8 7,7 9,7 8,B 0,C 1,9 9,7 6,C 5,B 1,C 8,2 -1,7 8,6 -1,4 7,1 3,4 1,8 8,3 7,C 0,8 1,C 6,2 6,2 1,6 8,0 8,2 -1,6 6,2 3,6 0,9 5,2 1,6 -1,7 6,C 6,9 -1,4 0,6 5,7 8,4 6,9 9,0 -1,7 0,2 4,0 0,8 0,C 1,B 9,1 4,B 2,4 -1,7 7,0 4,1 3,1 8,7 3,3 1,5 5,B 4,B 3,2 4,2 4,4 2,B 5,1 8,5 2,B 0,6 5,C 0,9 -1,6 8,B -1,5 0,1 7,6 9,8 -1,1 7,2 3,8 2,5 -1,2 -1,6 -1,7 7,5 5,6 3,B 7,7 8,1 9,9 -1,8 3,4 9,7 0,C -1,0 2,9 -1,1 9,0 9,3 6,B 7,6 2,2 -1,7 6,2 2,0 5,C 5,6 1,2 5,C 8,6 1,B -1,8 9,B 0,8 7,C 8,0 -1,9 4,2 5,7 4,1 8,9 -1,7 9,9 4,C 8,C 0,C -1,3 6,5 4,1 0,B 8,2 -1,9 2,C 0,B 5,1 3,C 9,3 5,C -1,5 0,2 4,3 6,C 8,C 5,4 -1,9 7,9 7,4 8,2 5,7 6,4 8,1 6,8 7,1 5,1 0,8 2,4 -1,5 -1,9 8,B 6,B 3,4 7,C 1,1 9,C 6,4 -1,8 9,8 0,2 -1,8 5,C 9,C 1,C 8,8 1,B -1,5 8,2 -1,9 8,8 0,C -1,2 0,0 -1,6 8,5 2,C -1,9 2,C 9,5 -1,8 9,0 0,B -1,0 2,6 -1,4 -1,3 2,C -1,4 1,B 8,6 7,C 0,C -1,6 -1,5 7,2 2,2 0,5 5,8 9,2 2,4 1,7 6,4 2,2 4,5 -1,6 4,5 4,0 4,0 9,6 5,4 3,1 5,4 6,9 8,0 7,0 1,1 -1,9 -1,3 6,B 7,B 5,B 7,C -1,3 -1,0 -1,1 -1,4 0,1 1,2 3,6 8,C -1,9 8,9 9,9 2,1 0,4 5,1 5,5 3,C 7,B -1,0 3,7 8,8 0,0 -1,9 3,0 1,B 3,C 5,4 0,4 -1,6 -1,6 3,9 -1,3 0,B 5,8 9,C 4,B 3,B 5,8 6,B -1,6 3,B 0,C -1,0 3,C 8,1 1,C 9,7 5,3 -1,6 8,7 6,8 -1,9 2,2 2,B 4,4 2,5 3,5 -1,6 0,4 7,C 4,7 -1,6 4,0 1,3 8,2 5,B 2,6 6,C 5,B 1,5 1,5 3,5 7,0 1,B 5,6 5,1 5,4 0,4 9,6 6,4 5,B 9,B 4,2 3,B 4,B 5,3 -1,4 0,5 -1,7 -1,5 -1,0 2,4 4,8 2,2 7,B -1,8 4,B 0,5 -1,0 8,9 3,B 7,7 8,C 0,4 8,C -1,6 3,7 2,1 6,1 -1,2 1,7 2,3 2,1 -1,6 9,C 7,0 3,C 3,B -1,6 7,3 6,6 9,8 0,7 7,3 9,2 -1,1 -1,8 6,9 -1,6 9,C 9,B 4,B -1,1 0,1 -1,4 -1,9 0,6 3,3 -1,6 1,1 1,C -1,5 9,3 3,C -1,2 0,B 1,7 1,8 5,6 1,C -1,5 7,0 3,2 9,C 5,3 9,4 -1,4 9,9 0,B 8,2 4,6 3,2 6,2 -1,4 9,9 7,C 7,8 7,5 6,2 6,2 -1,6 -1,0 9,9 -1,4 -1,5 9,4 1,9 6,4 1,6 0,C 7,B 8,3 7,7 7,7 4,0 -1,5 5,B -1,2 5,1 7,2 -1,5 7,C -1,6 4,B 9,C -1,1 1,B -1,2 5,1 5,9 9,6 1,4 0,1 4,1 1,2 2,2 6,3 4,3 6,4 0,5 1,8 6,C 8,8 9,9 -1,7 -1,6 0,1 -1,7 1,3 2,B 9,7 1,6 4,B 9,9 8,C 1,3 7,4 9,7 1,B 6,C 3,C 0,4 -1,6 1,7 8,5 -1,6 5,2 9,1 4,B 3,8 -1,9 3,5 9,2 7,7 3,3 6,9 6,5 7,9 7,B 8,B 5,4 8,3 8,7 7,9 3,0 8,5 7,B 7,7 -1,6 3,0 4,B 7,0 -1,1 1,0 1,0 7,C 3,C -1,4 4,7 7,4 -1,1 9,9 2,0 7,4 2,2 6,0 -1,4 9,B -1,1 5,2 8,1 -1,1 8,B 2,B 5,3 1,9 9,3 8,2 -1,9 7,3 -1,3 8,4 4,4 1,B 3,B 2,4 3,4 9,C -1,5 1,1 9,5 8,9 8,B 0,9 -1,3 2,3 9,1 0,B -1,1 4,3 2,1 0,1 8,1 5,8 -1,9 -1,7 0,B 8,9 7,4 4,5 2,1 7,B 7,C 4,9 9,3 7,7 9,1 1,7 1,4 -1,3 4,6 1,C 5,C 7,B 5,6 1,1 3,6 -1,4 1,C -1,9 2,5 3,0 6,4 2,7 3,6 6,2 1,C 5,C 3,C 1,3 6,0 -1,1 3,4 6,7 1,3 2,3 -1,9 6,0 3,9 7,8 5,2 7,0 4,B 2,6 3,7 3,0 2,1 4,9 8,5 8,C 3,6 0,B 3,0 -1,0 7,5 2,3 5,5 5,B -1,5 5,0 5,3 4,1 1,3 7,9 -1,2 2,B 6,6 6,0 -1,3 8,4 8,1 4,5 1,7 -1,7 -1,8 -1,6 9,8 3,5 3,4 7,3 8,0 3,9 4,0 6,9 8,B 2,4 -1,2 -1,0 4,6 -1,9 -1,4 6,7 -1,4 -1,8 4,5 2,B 2,6 4,6 -1,2 0,B 4,9 2,9 5,7 9,2 6,4 9,7 8,8 3,2 -1,5 8,B 0,9 3,1 8,8 -1,9 1,6 3,8 0,4 6,0 5,3 -1,1 -1,1 9,C 4,B 9,B 1,C 6,4 9,8 2,0 7,3 -1,3 8,7 9,1 -1,9 -1,2 1,4 -1,0 3,3 7,C 8,2 8,C 7,8 -1,1 0,0 8,9 -1,3 7,4 1,6 1,C -1,8 4,8 4,B 0,B 7,C 5,8 3,4 4,2 6,1 1,9 2,2 7,C -1,0 1,7 3,1 1,1 2,7 3,0 0,0 5,3 7,3 9,4 -1,9 6,6 -1,5 5,5 4,2 4,7 3,3 2,4 0,4 8,8 -1,0 5,3 -1,9 2,8 -1,4 -1,4 7,C 9,5 4,4 -1,8 5,9 6,1 7,6 2,9 3,6 0,C 3,B 7,C 4,6 -1,4 5,B -1,3 1,4 6,6 -1,7 5,6 0,B 4,C 5,C 4,3 -1,3 9,0 1,6 3,8 7,C 3,5 0,0 4,C 2,5 8,C 3,5 8,C 2,3 -1,8 -1,5 6,7 4,5 7,7 6,9 4,9 7,6 -1,2 -1,8 -1,6 5,C 9,9 -1,2 -1,1 -1,0 7,9 3,1 3,5 0,0 0,0 1,1 -1,4 4,2 5,8 8,9 -1,2 4,6 7,7 -1,1 2,6 9,4 2,3 -1,9 -1,4 5,C 4,1 3,B 0,0 9,5 4,5 2,3 8,3 6,B 5,6 1,C 0,C 9,C 0,B -1,6 -1,5 8,C 2,8 2,1 2,5 -1,0 7,4 2,8 3,B 4,4 1,2 4,7 6,5 3,8 0,7 8,6 -1,3 6,0 9,C 2,2 1,9 0,0 -1,0 3,5 5,C 1,4 6,C -1,6 0,B 5,7 3,5 1,6 5,8 1,4 6,6 6,8 0,1 9,B -1,8 1,2 4,B 1,B 0,0 7,5 6,B -1,4 4,1 2,7 9,3 -1,1 -1,0 8,9 4,9 0,2 1,5 4,B 4,0 3,C 3,8 2,7 -1,4 5,C 9,6 -1,6 3,B 9,7 2,2 5,7 2,2 0,2 2,5 6,4 3,7 3,C 4,7 6,6 8,9 6,4 8,5 1,7 7,9 2,0 8,1 3,3 5,1 4,8 8,9 -1,5 -1,1 5,7 5,2 2,8 9,8 0,1 3,5 6,2 9,B 8,C -1,2 6,C -1,7 -1,0 5,9 6,B 9,B 1,0 -1,7 -1,8 -1,5 -1,0 0,6 7,6 7,5 6,9 2,4 3,2 -1,6 8,6 8,9 7,2 1,B 0,4 0,C 6,C 9,C 2,8 -1,6 5,2 -1,6 7,C 6,3 5,C 3,C 5,8 0,8 -1,7 6,0 6,3 3,B 9,8 9,2 3,B 4,7 6,6 7,B 0,9 7,2 2,8 9,2 3,5 9,C 3,4 5,B 0,B 7,C 4,0 3,C 6,8 4,3 9,2 4,1 5,7 8,C 7,B 3,2 1,7 7,C -1,7 -1,9 8,B 5,B 2,9 -1,8 -1,6 9,0 -1,8 3,B 6,1 2,2 2,B 3,B 9,3 8,4 4,B 2,B 5,C 3,C 2,1 7,8 -1,8 5,0 7,2 5,0 -1,4 -1,9 4,5 9,9 5,C 6,2 9,B 5,4 8,6 2,C 3,B 0,4 6,2 8,B 1,9 -1,2 3,3 5,4 6,2 3,5 -1,4 4,B 5,0 5,2 5,0 3,8 8,9 7,C 4,5 5,6 5,3 -1,6 8,C -1,9 0,7 -1,8 0,3 -1,6 -1,2 -1,0 8,8 1,8 -1,3 -1,8 -1,6 7,7 4,6 2,C 1,3 9,3 3,1 9,3 -1,8 -1,2 5,C -1,8 6,4 7,6 -1,4 5,0 2,7 3,C 6,1 9,5 9,2 4,B 6,1 -1,1 1,4 3,8 0,5 9,6 8,4 7,2 8,C 5,3 8,1 0,6 -1,9 -1,8 2,B 9,0 4,C -1,9 6,B 9,C 9,0 2,5 2,4 -1,6 3,C 6,1 2,5 -1,4 5,B 9,7 1,4 5,6 0,1 7,5 4,8 -1,4 7,4 3,1 4,0 8,B 7,6 -1,7 -1,5 0,2 7,8 7,5 -1,6 0,8 9,B 6,2 7,C -1,4 -1,2 1,C 5,9 -1,9 6,5 0,9 9,8 5,5 1,B 2,7 3,B 9,8 8,1 3,7 3,0 -1,6 3,3 1,2 4,4 5,8 3,6 4,C 2,5 -1,1 6,0 9,C 2,6 -1,8 0,C 6,8 5,3 3,6 5,5 -1,1 0,4 3,3 2,B 9,4 5,4 -1,6 -1,9 6,1 8,5 1,B 2,0 5,8 4,5 9,7 -1,0 4,2 0,B 5,2 -1,4 2,8 -1,1 -1,1 2,0 8,7 9,8 4,B 3,3 2,1 1,B 0,5 2,5 -1,1 5,0 6,4 -1,7 9,6 4,8 5,8 3,5 -1,2 4,4 3,C 1,0 9,C 2,9 0,B 7,7 -1,3 0,B -1,6 4,0 4,7 3,C 2,B 9,C 7,1 5,C 3,4 -1,5 1,2 4,2 1,1 1,5 0,2 -1,2 2,0 4,C 2,4 4,8 0,7 1,1 8,5 5,B 1,3 9,B 8,B 4,3 8,4 7,3 -1,1 -1,9 7,2 -1,5 -1,5 8,9 2,7 4,9 -1,7 1,B 4,C 4,B 1,C 4,5 8,C 4,4 3,C 0,C -1,8 6,8 2,B 6,B 9,3 0,9 1,9 -1,9 9,3 0,1 0,9 0,0 3,0 9,3 0,2 9,B 1,2 8,3 3,C 7,1 7,1 -1,9 -1,5 7,1 5,5 8,B 4,0 3,2 7,7 1,9 0,B 6,0 -1,5 6,3 -1,3 7,8 5,B -1,9 8,B -1,5 8,9 -1,3 4,1 8,8 0,9 3,4 0,2 8,3 7,6 5,8 8,C 5,1 5,B 8,C 0,C 7,3 2,4 -1,6 9,0 -1,0 6,3 7,0 6,2 6,4 8,4 1,6 7,4 8,9 1,3 9,C 5,C 9,7 -1,9 -1,4 0,C 9,C 8,B 7,0 3,1 4,2 0,B 5,5 -1,4 5,B -1,0 4,0 5,5 5,6 6,2 -1,4 9,C -1,8 8,0 7,5 -1,0 4,8 1,9 7,3 1,7 7,4 3,9 9,B -1,0 6,5 -1,4 3,0 6,9 -1,0 -1,2 1,4 -1,1 8,C 4,C 7,C 3,B 0,5 4,1 0,6 1,2 8,6 -1,5 -1,9 6,7 6,2 1,4 6,8 1,8 7,5 8,0 0,B 8,7 8,2 0,1 3,3 -1,8 -1,9 1,1 3,3 7,9 3,2 8,3 5,0 2,B 2,2 0,9 5,B 1,7 5,5 1,7 -1,4 9,8 5,C 1,2 4,8 6,B -1,9 6,6 7,C 2,2 7,4 1,2 7,8 8,5 4,2 4,C 2,C -1,8 1,B 1,7 1,1 8,B 4,0 2,1 6,3 3,6 1,B 2,5 2,1 6,7 1,9 3,B 1,3 9,B 1,9 1,3 7,C -1,9 0,8 9,B 9,1 0,C 7,3 4,B 4,3 9,3 1,9 7,7 3,6 9,2 9,8 4,2 4,B 0,2 -1,7 2,0 6,B 6,5 1,7 -1,1 0,3 2,4 8,B 1,C 1,1 5,C 8,4 9,7 4,5 -1,7 1,C 5,C 2,C 8,B 1,5 0,B 6,8 0,3 0,8 4,3 9,C 0,5 1,1 7,6 4,2 5,2 2,3 9,2 3,5 5,B 9,B 0,8 -1,8 4,2 -1,2 1,7 5,3 0,C 7,9 4,5 8,6 6,B 2,2 6,2 2,6 7,1 8,C 1,B 4,3 3,B 1,7 2,1 5,4 2,2 4,9 -1,9 8,B 2,3 2,8 5,B 3,9 4,7 2,6 5,5 -1,0 9,B 5,1 -1,8 3,C 9,5 3,0 6,2 7,2 2,4 5,0 6,1 8,C 7,1 0,C 4,B 0,9 6,4 1,1 7,4 8,C 1,5 0,B 9,7 9,8 6,7 3,7 3,0 6,5 3,9 2,0 1,7 -1,7 2,B 6,0 9,7 6,6 4,8 0,B 2,C -1,0 0,B 3,1 7,2 5,9 -1,6 1,B 0,0 1,2 3,8 -1,5 -1,8 5,3 5,C -1,8 5,C 3,5 5,3 4,7 0,9 7,0 8,6 6,5 2,9 8,8 7,C 0,B 5,B 6,5 -1,9 -1,3 2,C 5,B 3,7 6,6 -1,7 3,C 9,1 5,3 7,8 9,B 9,C 5,7 9,6 0,3 8,4 1,7 5,7 2,C 1,C 6,3 -1,8 5,5 -1,8 2,C 3,0 5,8 7,B 7,7 -1,8 0,C 0,B 8,B -1,0 0,2 0,8 -1,1 -1,1 -1,3 7,0 2,5 5,9 9,B 2,1 -1,4 6,0 -1,9 6,4 8,5 0,7 4,B 3,4 -1,0 8,4 4,0 9,9 2,B 4,C 6,7 6,3 9,B 2,0 -1,8 7,9 5,C 7,4 8,3 7,8 8,1 1,C 4,8 -1,3 5,3 8,6 3,B -1,5 2,C 0,5 -1,1 9,5 1,B 6,1 3,2 1,5 3,9 0,9 1,4 8,2 4,9 4,C 1,0 1,8 0,8 -1,1 7,4 -1,1 3,C 7,8 6,8 6,C 8,6 3,6 -1,5 6,7 -1,6 9,5 -1,4 4,6 4,B 7,8 1,6 -1,6 1,4 5,B 3,B 6,9 4,6 8,9 2,4 -1,8 0,C 8,4 -1,9 5,5 0,0 0,9 1,0 -1,7 8,C 9,9 6,8 8,2 8,2 2,8 1,5 -1,0 1,B 4,4 -1,2 8,6 -1,1 -1,4 -1,4 -1,4 3,2 0,B -1,9 9,C -1,2 6,8 8,8 4,3 5,5 -1,4 -1,5 9,C 6,C 9,7 7,5 1,7 1,0 6,2 -1,8 1,B 5,9 6,4 2,6 2,6 -1,9 6,2 4,B 7,C 9,9 2,C 8,2 6,3 3,1 4,3 -1,9 5,4 7,0 1,7 0,B 9,C 8,C 8,5 0,3 6,2 -1,5 4,B -1,6 5,B 0,C -1,0 4,6 6,0 -1,6 5,5 4,8 1,C 7,C 6,3 7,0 -1,4 2,2 -1,0 7,B 8,9 7,9 3,2 3,C -1,6 4,4 6,5 1,4 -1,4 3,C 0,0 1,B 5,B 4,0 6,4 7,2 9,C 8,6 8,9 0,C 7,B 1,C 9,5 5,2 3,7 4,4 -1,8 7,6 0,4 -1,7 6,C 9,6 -1,6 -1,0 7,9 0,3 9,9 2,1 6,3 7,5 2,3 7,B 9,C 2,4 3,9 6,5 3,2 0,2 9,6 2,5 4,C 1,6 3,1 3,C 4,4 6,2 -1,9 1,C -1,6 8,1 1,4 5,3 0,C -1,8 3,8 -1,6 3,9 3,2 4,B -1,1 7,5 5,B 2,6 0,5 0,3 3,3 -1,2 -1,7 -1,1 3,1 0,5 8,2 3,4 -1,9 5,B -1,4 3,C -1,5 1,9 4,4 9,1 5,B 8,6 -1,2 -1,5 -1,6 -1,4 4,B 0,7 2,0 6,B 6,1 4,3 2,B 4,2 7,7 2,3 7,0 9,C 4,B 1,8 2,0 8,2 7,C 8,4 6,8 8,3 1,8 5,B -1,0 8,2 4,C 3,3 0,0 6,8 -1,6 2,B -1,9 5,1 6,B -1,4 5,C 8,B -1,1 0,B 4,C 8,4 8,7 9,C 4,9 4,7 8,C 3,4 -1,7 3,4 3,3 0,7 8,6 7,7 7,4 2,2 8,C 9,0 -1,0 8,5 0,B -1,2 7,B 4,1 -1,7 1,7 6,5 4,0 2,C 2,B 5,C 5,C 0,9 -1,5 7,9 -1,4 4,C 7,C 2,4 8,6 -1,5 1,7 5,5 9,B -1,2 6,0 7,B 6,9 9,9 9,8 7,4 3,C -1,3 -1,5 7,6 5,6 -1,2 -1,9 -1,5 9,C 2,3 2,6 1,2 0,B 9,8 4,9 3,9 1,B 8,5 6,0 8,1 -1,3 9,0 -1,0 8,6 4,2 4,B 8,C 9,C 6,3 5,5 -1,5 -1,7 5,0 3,1 -1,1 -1,3 7,C 5,B 6,6 7,5 5,1 0,B -1,2 0,B 3,1 8,7 7,7 7,3 1,B 4,B -1,7 3,7 6,7 4,6 6,7 6,B 3,B 1,C -1,1 8,C 3,3 3,2 2,9 6,C 9,5 -1,5 3,1 1,B 3,7 4,C 6,1 0,B 0,7 5,C 5,B 6,C 9,4 6,5 -1,9 6,3 2,2 1,6 6,C -1,5 8,C 6,3 4,8 0,5 2,5 9,7 -1,5 5,C 4,5 -1,3 2,1 0,C 2,8 9,4 7,6 0,7 4,0 -1,3 9,6 1,8 7,8 9,0 -1,8 8,C 6,1 6,0 2,B 7,8 0,4 1,3 -1,7 4,7 -1,1 9,5 7,0 0,8 4,8 0,4 -1,9 1,3 0,9 9,B 0,0 9,2 -1,2 9,8 5,3 4,0 7,2 8,2 5,1 1,C 6,1 -1,8 2,2 -1,4 2,B 9,5 4,9 9,B -1,4 3,0 4,9 -1,1 -1,5 0,3 6,2 9,2 6,B 5,7 -1,5 5,C 5,C 7,8 0,3 9,4 7,B 6,5 -1,5 8,C 4,C 8,8 7,5 0,4 6,2 9,C 7,B -1,7 6,3 -1,3 5,2 7,2 2,0 0,B 4,2 1,6 2,5 5,B 7,9 2,9 -1,8 7,4 7,8 6,C 8,8 5,8 -1,0 8,0 -1,9 4,1 9,7 -1,7 3,2 -1,0 0,C 8,5 8,2 5,2 6,C 1,0 7,9 -1,2 4,7 3,9 1,2 -1,3 4,2 -1,8 2,8 3,2 3,C 4,C -1,6 -1,7 -1,3 1,C 3,7 3,B 1,6 9,1 1,1 5,C 0,C 0,1 8,8 7,4 9,B 1,7 5,8 1,9 -1,7 0,3 1,6 7,8 8,C 2,B 9,8 7,B -1,5 8,6 9,6 8,4 1,6 2,4 7,C 1,4 9,0 3,C -1,1 5,B 7,6 6,2 -1,2 4,8 5,0 2,9 4,C 5,0 -1,3 1,9 9,1 -1,9 6,B 0,B 2,C -1,6 6,C 9,3 5,3 3,9 9,4 -1,0 -1,1 8,0 4,9 1,C 5,9 -1,8 8,B 8,C -1,5 5,6 8,0 5,9 -1,5 5,B 4,C 2,4 7,C 1,B 0,3 0,2 9,B 6,5 7,5 0,2 2,4 5,C 9,5 1,9 2,2 6,9 6,6 9,C 5,6 5,9 1,6 7,4 7,8 2,9 3,1 2,9 0,3 2,3 7,1 1,3 5,6 -1,8 7,5 -1,5 -1,8 -1,9 3,5 4,1 6,0 1,B -1,4 1,8 9,0 2,B -1,7 6,6 7,C -1,3 0,6 9,1 9,9 1,9 6,9 0,1 -1,4 5,1 9,B 2,5 2,0 1,4 1,3 7,1 2,1 -1,2 7,5 2,C 5,3 8,B 7,9 4,B 2,8 8,6 5,8 5,0 8,2 7,1 2,B 6,7 1,B 2,5 2,B 5,C 3,1 2,C 4,B 4,C 1,C 1,1 0,8 0,B 1,9 7,8 7,3 8,9 -1,5 2,0 8,4 8,C 2,1 1,C -1,9 0,5 4,1 0,6 8,B -1,4 3,2 -1,0 2,B 2,C -1,1 8,5 -1,2 1,B 3,9 3,1 5,0 -1,1 6,0 9,7 1,6 2,0 -1,6 6,5 -1,2 -1,5 5,6 3,0 7,5 3,4 -1,2 8,5 0,B 9,3 -1,9 -1,0 4,1 5,5 -1,3 3,8 9,6 4,0 1,7 7,B 3,6 8,6 1,8 8,7 7,0 -1,4 7,8 9,1 6,B 9,3 2,6 3,6 4,6 3,B 3,C 9,9 3,9 2,B 5,8 2,9 4,4 3,5 5,B 0,4 4,4 9,4 1,6 4,B 1,B -1,9 0,2 4,C 2,4 5,8 7,B 9,5 3,4 -1,5 2,7 5,2 9,8 2,4 -1,3 -1,9 -1,1 5,5 2,1 5,9 9,C 2,4 3,B -1,2 9,C 5,7 0,9 0,8 6,1 -1,8 3,9 1,B 5,5 6,7 1,3 2,8 6,5 0,C 7,6 6,3 4,C 5,C -1,3 3,7 -1,2 7,6 -1,4 4,C 8,8 1,C -1,4 8,9 9,7 5,B 3,C 6,C 6,C 9,B 4,C 7,2 5,3 1,C 6,5 5,1 5,B 4,B 1,2 -1,5 -1,0 4,3 2,8 -1,2 8,2 1,0 -1,8 9,6 2,2 6,B 1,8 -1,7 -1,1 5,3 0,B 8,2 -1,5 6,5 2,3 3,3 -1,4 4,4 8,1 9,B -1,9 0,B -1,4 5,9 -1,3 -1,2 -1,4 9,2 5,B 4,B 6,C 9,C 5,2 6,4 2,9 8,7 -1,0 8,0 8,4 1,5 8,7 1,6 2,8 9,8 1,B 3,9 3,9 1,5 7,9 -1,4 -1,7 6,0 1,8 4,B -1,9 4,5 8,6 0,9 6,8 6,7 6,C 9,9 3,3 7,4 1,B -1,9 6,4 2,C 6,1 1,B 6,2 9,B 5,C 7,0 3,5 3,0 5,3 7,C 6,4 1,2 -1,9 5,1 0,9 4,8 -1,7 3,B -1,6 -1,0 8,7 4,5 -1,9 9,6 2,8 7,3 -1,0 -1,8 -1,7 5,0 5,9 5,3 7,B 8,5 9,7 4,C -1,4 -1,9 2,2 1,3 7,8 7,6 6,3 8,8 -1,6 8,2 4,B 6,B 2,3 7,B 1,B 7,0 0,C 2,3 8,0 2,6 5,B 3,6 3,4 7,5 3,0 5,B 6,4 2,2 8,0 -1,8 1,3 2,B -1,8 -1,0 3,5 3,8 2,7 3,C 1,0 -1,9 7,3 3,9 -1,2 8,C 5,6 4,9 5,4 8,C 5,5 8,5 0,C 1,4 4,7 2,C 2,8 8,0 -1,5 -1,8 6,7 0,6 5,1 4,6 5,B 4,4 3,9 8,B 4,7 -1,9 2,5 7,C -1,1 -1,7 5,C 7,3 -1,9 6,3 6,9 0,2 4,0 7,C -1,3 5,5 0,2 2,B 2,B 1,8 6,B 0,B 3,B -1,7 0,8 3,3 3,8 7,C 6,7 -1,9 0,8 0,0 3,1 9,1 4,5 7,0 5,7 3,3 7,7 3,C 7,6 3,8 6,C 6,C 8,3 0,7 2,7 2,B 1,5 3,9 4,1 5,1 -1,7 2,4 0,6 2,B 7,5 0,2 6,6 0,C 4,9 8,C 0,B -1,6 2,7 4,5 8,1 8,9 3,5 1,1 -1,1 6,5 6,9 5,6 2,C 9,C 7,7 3,3 3,B 7,5 5,1 6,1 6,7 5,9 9,B -1,9 6,5 3,B 4,8 -1,5 3,B -1,7 -1,5 5,2 9,4 9,4 0,3 -1,0 5,7 -1,5 1,1 2,0 4,3 -1,0 4,0 7,C -1,2 0,3 2,5 8,3 -1,3 6,3 3,3 3,3 -1,2 -1,5 4,7 6,1 3,C -1,4 3,2 2,5 6,0 4,B -1,7 3,B 4,0 7,C 0,1 2,0 5,4 3,C 1,4 3,B 5,C 3,0 4,7 4,1 7,C 4,B 0,B 0,6 -1,4 6,0 9,7 -1,7 5,0 9,1 -1,8 7,6 6,6 7,0 2,0 4,B -1,7 7,4 1,9 -1,2 6,6 4,B 4,0 2,C 9,9 2,1 2,0 -1,6 9,B 5,B 3,8 -1,4 5,0 4,C -1,3 -1,4 4,B 7,3 7,8 0,1 7,9 6,3 5,9 9,8 -1,3 6,3 7,7 2,1 8,4 4,7 -1,9 4,3 2,C 3,8 9,9 9,1 0,7 1,B 3,5 -1,4 1,4 -1,1 2,4 5,1 3,6 9,5 1,5 -1,0 5,6 -1,1 9,B -1,6 7,9 8,6 1,B 3,6 5,B 2,8 -1,7 -1,3 2,B 0,7 0,6 -1,8 5,C 3,7 -1,5 7,B 6,B 6,B -1,3 3,5 -1,4 -1,9 4,2 6,3 1,0 5,6 8,8 0,7 4,1 1,0 0,C 7,0 1,6 -1,6 3,0 7,6 8,9 -1,7 -1,6 5,B -1,6 3,6 7,8 0,9 -1,5 5,9 -1,0 7,B 5,4 -1,9 8,9 -1,9 6,2 6,1 6,C 9,9 6,2 -1,8 1,0 -1,5 7,4 5,2 -1,6 -1,2 4,8 9,9 0,8 -1,0 6,C -1,9 9,1 4,2 2,4 6,5 9,7 5,7 4,8 9,5 1,3 6,3 -1,7 4,8 -1,3 3,4 5,C 4,C 2,8 -1,9 1,9 2,C 9,C 8,6 8,C 0,0 0,3 4,3 4,4 2,B 4,8 6,8 6,C 7,9 8,6 7,9 4,0 7,2 0,B 6,7 6,1 8,C 9,7 9,2 9,0 8,C -1,7 5,0 4,9 3,9 1,1 8,B 4,9 9,6 7,6 3,8 4,7 6,8 0,B 1,8 4,C 3,3 -1,7 6,7 8,B 6,B 9,0 -1,0 9,1 -1,7 1,8 8,6 1,2 5,0 -1,5 1,6 3,1 9,7 1,B 1,B 4,1 0,B 0,8 2,6 0,B 6,3 2,B 5,0 3,3 -1,2 -1,9 -1,6 4,B 4,7 6,2 2,8 5,8 0,1 -1,5 4,1 8,2 4,8 7,8 -1,2 5,2 5,1 2,0 -1,1 0,1 -1,1 6,6 -1,7 0,7 -1,5 5,9 9,C 8,4 5,C 1,1 -1,4 8,C 4,8 -1,4 -1,4 9,9 2,3 4,1 6,C 3,9 -1,9 -1,0 -1,6 6,B 3,5 5,B 6,8 9,6 0,4 4,B -1,0 9,3 3,4 3,0 4,7 3,3 5,C 3,C 7,3 -1,8 9,4 6,8 7,2 -1,3 7,B 7,C 0,4 6,6 -1,1 7,7 2,5 -1,6 1,2 -1,0 8,1 2,2 -1,8 9,9 -1,3 8,9 4,9 -1,1 9,C -1,8 9,3 1,C -1,9 -1,4 2,6 5,7 7,6 -1,4 8,2 -1,2 0,9 0,3 7,7 1,4 -1,8 7,B 8,C -1,7 -1,0 -1,0 0,B -1,7 -1,3 7,B 0,4 -1,8 -1,1 5,5 -1,8 8,6 3,5 5,C -1,1 4,B 8,9 8,6 6,B 5,5 9,8 4,7 3,7 6,2 -1,6 9,5 -1,9 -1,0 6,4 6,5 -1,9 7,8 3,7 0,4 7,9 1,8 2,C 3,1 1,4 -1,9 -1,8 4,1 -1,9 5,6 2,6 -1,5 -1,5 9,9 9,3 9,B 8,0 0,9 -1,1 1,1 7,7 7,1 7,8 1,5 -1,6 -1,2 4,0 0,5 -1,1 7,7 2,2 -1,1 6,8 6,7 4,4 8,8 6,C 0,C 6,1 5,7 1,3 -1,5 7,1 2,B 5,B 3,C 0,B -1,1 7,8 5,7 5,7 7,1 0,C 1,7 2,C 8,C 4,C 7,1 6,7 0,B 1,0 1,7 7,3 4,2 9,C -1,3 -1,4 1,3 6,4 0,1 -1,0 -1,1 5,8 2,2 3,C 0,6 6,5 0,1 -1,1 -1,0 6,9 2,9 9,0 -1,7 4,B 2,7 2,6 6,7 3,C 4,8 4,7 -1,2 7,2 8,1 6,C -1,2 7,0 -1,7 3,B -1,4 7,0 0,9 -1,6 0,9 7,B 0,6 0,8 0,2 1,6 7,5 6,9 6,0 8,4 6,1 -1,7 7,6 8,B -1,9 8,9 3,1 -1,6 8,9 -1,3 1,0 9,0 8,3 6,B 4,4 5,9 7,7 9,9 8,3 -1,5 6,B 2,0 -1,7 7,5 8,9 -1,4 8,2 9,B 6,3 3,8 -1,9 9,9 -1,7 7,8 -1,4 1,7 0,8 2,0 -1,3 5,4 2,5 1,B 1,8 2,7 5,4 -1,3 4,3 5,1 5,9 8,B 5,C 2,4 1,5 0,B -1,9 9,4 6,B 6,B 6,0 0,4 9,1 9,4 0,0 6,2 5,0 8,0 7,B 8,7 6,4 7,5 3,2 2,5 -1,1 6,B 2,5 -1,1 4,9 4,B 1,C 0,B 7,0 5,0 -1,7 -1,9 3,7 1,9 -1,9 7,3 2,2 4,3 8,7 3,8 -1,2 2,8 -1,4 8,7 4,8 6,1 -1,6 1,6 8,8 7,C 8,7 -1,8 6,1 7,3 8,B 5,7 9,0 7,9 -1,2 5,B -1,5 7,1 5,6 -1,8 9,8 1,7 -1,0 3,3 -1,0 1,6 3,2 9,6 -1,9 6,6 2,5 1,8 9,9 9,6 9,4 7,B -1,3 3,8 8,1 1,7 8,3 0,C -1,1 3,4 8,8 8,8 2,3 1,5 -1,9 0,B 5,7 3,B -1,9 7,0 6,9 9,2 -1,7 8,3 3,B -1,5 -1,0 -1,4 2,8 8,B 6,3 -1,6 0,3 2,C 3,C 4,1 6,B 8,4 6,1 6,1 -1,9 7,2 6,4 3,B 3,3 -1,4 1,8 9,C -1,1 9,2 -1,4 6,0 4,6 5,9 9,C 5,7 9,5 -1,2 4,B -1,9 2,8 9,C 9,4 2,4 7,4 7,7 8,6 2,C 5,9 0,B 0,0 -1,6 7,6 4,0 1,3 8,C 9,9 3,5 -1,1 9,8 5,2 1,5 6,2 4,0 7,0 5,6 -1,8 -1,5 9,9 6,B 8,0 6,B 6,C 5,0 9,3 1,8 2,4 6,7 6,3 5,8 -1,8 2,9 8,9 7,1 7,C 1,6 2,1 1,5 1,B 2,1 3,2 -1,7 9,5 7,5 8,C 4,6 4,B 5,C 4,C 9,5 2,1 -1,4 2,7 9,C 5,7 -1,5 5,7 3,B 0,8 5,C -1,6 8,9 -1,8 3,B 0,9 6,C 3,1 -1,0 9,3 5,4 -1,7 1,1 8,5 -1,6 -1,0 5,8 5,1 -1,9 9,1 4,B -1,1 0,3 -1,7 -1,0 3,4 2,7 8,9 6,B 9,B 6,C -1,4 -1,8 -1,7 9,5 -1,1 4,2 9,5 2,9 1,0 4,9 3,9 -1,7 8,6 -1,9 7,3 9,1 9,2 6,9 -1,5 9,0 3,1 7,2 -1,6 -1,9 0,C 1,C 5,B 9,7 4,4 1,8 3,8 0,9 4,B -1,0 3,2 6,8 1,8 -1,9 5,0 -1,3 -1,3 -1,0 7,2 -1,5 0,B 9,B 3,6 1,6 6,4 9,4 0,9 8,B 4,B -1,9 4,6 1,2 3,C -1,8 -1,3 2,4 8,3 3,2 -1,8 7,7 4,2 4,4 3,9 6,4 -1,9 9,B 5,5 -1,5 0,1 8,8 0,0 1,0 1,B 1,4 -1,9 4,5 -1,5 2,6 8,9 7,6 9,2 3,B 8,3 1,0 6,3 0,9 8,B 5,2 0,0 6,0 4,7 -1,7 0,4 9,B -1,2 3,0 8,3 4,2 1,5 6,4 4,4 7,4 3,7 2,1 8,1 -1,5 -1,2 -1,6 8,C 1,B 4,7 7,8 5,8 9,B 1,4 5,3 -1,2 3,0 6,1 6,C 1,6 4,3 6,6 4,9 -1,5 -1,5 0,C 7,2 5,4 7,B 9,B 1,1 6,7 5,C -1,0 -1,0 0,0 0,1 6,4 5,7 9,2 9,C -1,4 5,8 2,B 0,5 6,C -1,4 6,7 0,7 1,8 8,1 3,C -1,2 5,9 -1,7 5,9 1,7 2,9 0,8 3,7 9,6 2,C 1,2 0,5 3,2 7,3 4,B -1,6 6,1 -1,1 1,5 0,0 6,2 6,6 7,B 1,C 7,0 8,5 3,1 -1,6 8,B 0,8 -1,4 5,6 2,C 9,2 1,B -1,7 6,9 3,4 4,0 0,C -1,3 5,0 5,B 4,8 6,4 3,9 6,8 7,4 -1,2 -1,6 6,C -1,8 3,9 6,4 -1,0 0,C -1,7 5,7 0,C 7,C 6,8 7,2 -1,4 7,C 9,5 8,1 6,3 6,C 6,B 0,4 9,4 2,3 3,2 2,2 3,9 6,1 -1,5 8,3 4,7 6,3 2,4 4,4 -1,8 7,5 -1,3 9,2 9,0 1,6 1,C 1,9 -1,4 7,C -1,6 4,2 5,6 6,5 -1,0 -1,9 0,C 1,7 7,B 7,1 8,8 5,C 2,1 9,C -1,0 1,5 3,C -1,5 5,2 4,5 3,9 9,C 7,C 6,1 6,3 2,7 4,1 8,2 7,C 0,3 -1,7 6,9 8,9 5,B -1,2 4,C 2,2 1,B 6,8 8,B 4,9 7,7 7,8 0,8 0,9 1,B 6,C 3,8 2,B 5,8 -1,0 2,C -1,4 7,2 3,4 3,0 6,7 -1,6 9,7 -1,5 6,6 9,9 2,9 -1,6 0,2 4,6 1,5 -1,5 9,C 2,1 7,0 1,0 -1,4 6,4 2,8 6,3 0,7 6,0 -1,9 0,9 -1,5 9,6 9,B 4,2 8,7 9,B 9,1 5,7 1,2 -1,1 0,4 2,4 5,0 -1,7 7,3 -1,9 7,3 6,5 7,5 -1,8 2,7 6,9 6,8 4,8 -1,1 0,B 0,3 5,C 3,0 1,B 5,0 -1,1 8,3 -1,7 1,7 3,1 8,8 3,6 2,3 6,8 -1,3 -1,2 3,C 4,B 7,0 -1,5 4,9 0,9 5,7 4,3 7,8 -1,7 -1,1 6,4 5,1 -1,2 5,0 0,2 -1,5 5,6 9,0 1,7 2,9 4,5 3,4 9,3 3,B -1,9 1,0 4,8 -1,2 4,7 3,7 6,9 2,3 -1,3 7,2 6,8 9,B -1,8 4,0 5,4 -1,7 5,9 8,3 1,B 2,7 7,4 3,B 4,1 0,B 5,0 6,B 2,B 4,C -1,3 3,6 -1,0 -1,7 6,8 -1,4 7,1 5,9 0,4 -1,4 -1,4 3,3 1,3 1,1 0,9 4,3 4,9 1,2 -1,1 2,B 9,B 9,1 1,5 0,B 1,8 4,B 8,2 6,0 2,1 9,C 4,1 0,0 0,8 5,4 1,C -1,5 8,0 4,2 8,7 7,2 4,C -1,1 -1,3 5,6 -1,1 5,1 6,C 5,4 7,1 1,C 4,2 5,1 6,2 3,8 5,8 8,4 4,B 1,2 1,5 -1,0 9,8 0,C 4,9 3,9 7,0 8,6 3,6 1,2 8,C 9,2 0,3 8,C 3,2 0,1 4,8 4,4 -1,9 5,2 0,4 -1,0 1,6 1,B 8,1 6,6 7,6 9,7 4,2 -1,6 2,B 1,1 6,C 9,2 7,8 3,0 1,9 6,0 -1,7 0,3 -1,4 8,8 3,6 1,2 6,5 1,1 6,3 4,6 -1,2 -1,1 -1,9 4,4 -1,1 7,0 9,0 6,9 0,B 3,6 3,3 6,5 3,5 1,6 7,9 4,B 8,3 9,C -1,1 8,9 6,5 7,C -1,8 7,4 -1,9 8,4 1,4 0,B 1,1 4,B 4,B 1,5 6,C 8,2 1,9 -1,3 -1,7 -1,8 5,C 1,C 0,C 4,6 6,C 6,2 -1,5 8,1 9,4 5,0 2,0 5,8 -1,2 9,7 7,C 9,B 2,7 5,B 7,C 5,6 5,9 3,6 -1,4 5,8 3,B -1,6 1,6 4,6 8,7 1,6 -1,0 7,6 0,3 6,0 0,9 7,3 9,C 3,C 4,6 0,0 7,2 8,7 9,9 -1,3 -1,1 6,8 0,3 0,B -1,3 4,6 4,4 5,B -1,7 7,B -1,5 8,B 0,3 9,7 8,1 9,9 9,8 8,0 1,8 1,C -1,9 -1,7 -1,8 4,C -1,7 0,C -1,2 3,7 0,3 6,0 9,C 4,2 -1,0 9,9 1,9 5,4 2,9 7,6 -1,9 4,C -1,3 0,4 -1,6 0,1 0,1 2,3 6,5 2,1 2,1 2,4 3,0 0,8 5,2 6,C 3,C 6,2 8,6 2,1 0,C -1,1 2,6 2,9 -1,7 0,4 6,6 1,5 2,C 3,8 1,9 2,4 2,B 0,1 -1,6 -1,0 2,7 4,7 5,C 5,B 2,4 8,6 2,0 -1,4 6,C 4,2 -1,3 -1,8 9,5 9,5 -1,7 2,8 5,2 3,3 6,6 -1,2 7,3 7,1 5,2 -1,8 -1,8 0,3 0,9 3,9 6,7 7,5 -1,4 4,6 -1,7 1,2 8,7 -1,7 -1,8 -1,1 1,C 9,0 0,B 3,2 9,3 9,6 8,6 7,2 9,4 8,0 0,3 4,4 5,8 5,7 6,C 9,7 -1,1 2,0 0,4 1,C 4,5 9,3 6,1 2,5 7,6 5,C 0,C -1,9 2,C 3,2 -1,9 3,3 3,2 3,B 8,C 8,6 -1,3 3,3 1,3 5,9 1,C 1,1 5,1 9,4 3,0 0,7 -1,0 2,7 8,B 6,9 6,4 4,5 6,5 -1,2 8,C 8,5 -1,4 5,C 2,C 1,C 6,4 -1,3 2,6 -1,8 6,2 1,9 -1,6 0,B 2,1 1,0 4,0 5,4 5,2 5,5 4,5 1,B -1,4 -1,1 6,3 2,9 0,5 8,3 8,0 5,5 0,3 -1,0 7,1 9,0 5,B -1,4 0,2 -1,7 6,4 1,8 5,B 4,B 0,4 0,B 4,6 -1,6 -1,4 -1,0 0,C 3,5 6,1 -1,1 3,0 2,C 7,0 -1,1 3,2 3,5 8,B 8,B 0,6 3,B 0,4 2,9 -1,7 1,B 0,9 9,4 8,B 2,8 -1,5 6,1 5,3 -1,4 3,3 -1,0 1,7 -1,7 0,6 8,5 -1,2 9,B -1,3 3,9 5,4 -1,4 -1,4 5,4 6,4 0,C 1,5 4,3 6,9 1,9 4,1 0,0 1,3 7,C 7,5 8,4 1,9 -1,3 3,7 5,3 9,4 6,4 -1,4 5,C 0,7 9,C 3,1 8,C 6,4 7,3 9,2 9,8 6,4 7,C 1,1 4,1 -1,3 -1,7 9,6 1,7 4,C -1,6 8,C 4,0 5,7 0,6 4,C -1,2 7,0 4,C 7,6 1,2 1,0 3,0 9,2 1,0 6,B 2,6 6,C 3,C 3,B -1,1 4,5 -1,1 -1,5 8,2 -1,4 4,3 3,8 -1,2 -1,8 -1,8 1,C -1,5 -1,1 1,0 8,0 3,7 3,1 2,3 9,0 9,5 8,C 0,5 -1,8 6,9 3,C 6,3 -1,6 5,B -1,3 8,1 0,5 6,C 6,9 2,8 6,8 7,C -1,0 1,8 0,7 4,9 3,7 2,3 6,B 5,8 3,0 1,3 -1,9 -1,6 2,2 8,2 -1,7 -1,1 0,8 4,B 2,B 1,C 0,2 0,4 8,8 3,C 6,3 2,4 2,C 3,2 -1,5 1,6 7,6 6,1 8,9 7,C 3,B 3,5 8,9 2,6 2,B 7,8 8,6 4,0 6,2 6,B 2,9 5,B 1,B 0,B -1,0 -1,0 -1,5 9,0 5,3 5,7 8,7 -1,9 5,5 1,7 -1,7 5,B 2,C -1,1 5,3 -1,9 2,2 6,5 9,C 4,1 0,B 2,9 4,4 9,1 4,4 -1,6 7,3 8,1 5,4 7,1 1,3 5,3 2,B 7,C 9,0 7,8 0,9 0,B 6,3 5,6 -1,3 3,2 8,6 8,B 7,6 3,8 9,B 2,9 1,C 1,1 4,6 -1,1 1,C -1,8 2,C 2,2 6,6 3,B 4,7 0,C 7,B -1,3 1,3 9,1 6,0 6,7 3,0 6,5 3,5 -1,3 8,C 5,3 8,3 8,4 3,1 5,6 1,C 4,1 9,1 1,7 0,7 -1,0 8,0 8,B 9,C -1,3 6,C 4,4 7,B 1,C 2,5 4,1 -1,2 1,2 1,1 5,7 3,0 4,1 3,9 7,9 -1,6 8,2 4,C 5,9 6,0 -1,5 -1,7 1,2 0,3 -1,8 5,6 -1,5 7,3 -1,7 -1,2 -1,9 7,4 1,6 5,0 0,2 -1,2 6,C 1,B -1,6 6,7 0,1 8,1 5,C 7,B 0,B -1,6 -1,1 -1,7 7,B 7,1 -1,1 3,3 -1,9 -1,8 4,6 8,C 2,3 4,8 9,5 4,1 3,7 1,B -1,4 3,B 3,C -1,4 9,7 -1,1 1,4 -1,0 7,C -1,5 3,B 9,6 5,2 9,5 9,2 2,1 8,3 8,0 0,C 5,5 6,3 6,C 5,1 3,7 0,4 -1,6 7,7 0,B 6,B 0,B 6,C 2,B 0,8 2,B 6,5 -1,1 6,C 9,3 8,8 3,B -1,3 9,B 8,0 -1,5 -1,0 1,0 3,1 5,C 1,6 3,7 2,6 9,C 8,5 6,3 0,7 3,7 -1,5 6,2 3,0 -1,1 2,C -1,4 0,B 4,B -1,6 4,C 8,B 9,8 -1,9 7,B 6,B -1,2 -1,5 2,4 1,4 5,6 2,3 2,5 9,C 2,C -1,5 8,4 1,1 2,8 4,0 3,C 2,7 7,8 -1,9 0,2 6,2 7,2 4,4 2,6 0,6 5,B -1,1 9,C 7,6 2,B -1,5 1,C -1,0 2,C 0,C 9,8 1,0 6,6 9,4 3,9 7,2 0,2 3,9 -1,4 -1,7 9,9 2,7 -1,2 5,C 9,C 4,7 7,C 3,3 7,B 9,2 3,9 1,6 7,1 2,2 5,B 8,5 0,7 2,B 1,6 8,C 6,7 2,9 7,2 5,0 6,B 5,C -1,8 2,9 8,9 -1,9 0,5 8,4 8,B 1,7 4,C 8,2 9,B 7,5 1,1 6,7 -1,8 6,C 7,7 8,2 0,2 5,5 4,C 4,B 0,3 5,5 -1,1 4,0 9,4 5,0 5,1 2,B -1,3 -1,4 0,0 4,5 -1,9 -1,8 9,B 0,9 9,B 7,0 7,C 4,1 2,8 -1,0 -1,4 8,7 2,1 7,8 9,5 4,8 -1,5 -1,9 7,5 5,7 -1,1 6,2 9,C -1,4 9,6 1,0 7,2 6,0 -1,1 -1,1 3,3 7,2 7,5 2,5 3,9 4,C 4,C 1,B 9,0 7,0 -1,4 9,2 4,9 8,0 9,1 1,8 7,C 4,6 0,5 -1,0 0,6 3,3 5,B 2,5 1,5 2,9 6,0 -1,1 4,7 3,C 8,1 7,9 -1,1 9,1 6,2 6,9 5,7 7,4 8,2 4,3 2,4 4,9 7,7 8,1 -1,9 9,2 0,8 9,3 5,0 1,6 -1,8 -1,8 6,B 6,2 1,C 6,9 8,0 4,0 -1,6 3,3 8,9 -1,2 8,C 6,4 2,B 2,C 7,1 8,6 1,8 7,4 4,6 9,9 -1,0 6,6 3,3 -1,8 1,3 2,2 8,C 8,2 9,B -1,0 8,1 2,B 1,5 4,7 6,3 3,6 0,1 7,7 -1,1 2,6 0,C 0,8 2,1 -1,1 2,4 5,B 2,4 9,3 -1,0 8,8 7,7 0,2 3,B -1,7 5,B 0,9 -1,1 2,B 2,5 6,3 3,B 8,C 0,2 5,6 2,0 1,C -1,3 8,4 3,9 8,3 6,0 1,5 1,8 1,1 1,8 9,3 2,8 3,6 3,5 0,1 -1,9 6,C -1,6 5,5 -1,8 3,4 4,3 6,4 -1,3 5,5 8,2 -1,3 6,2 1,C 6,2 9,6 0,4 1,B 9,0 9,4 7,9 9,B 4,7 1,0 5,1 -1,5 6,9 -1,7 1,8 6,7 -1,2 6,1 1,2 2,7 4,3 9,1 6,2 -1,1 8,9 5,4 6,4 7,5 -1,9 8,B 2,9 3,5 3,B -1,9 -1,9 4,5 4,5 8,B 5,4 5,6 5,C 7,6 5,C 3,1 9,7 4,B 7,B -1,8 -1,1 5,0 4,2 4,B 3,7 3,0 4,0 1,7 7,C 4,5 3,C -1,8 0,2 -1,8 9,4 4,7 8,5 9,2 3,0 6,5 1,1 3,5 2,4 -1,2 0,0 6,2 7,C 3,B 4,C -1,0 1,C 9,C 2,C 4,C 2,3 3,7 6,0 -1,8 4,5 -1,2 0,7 3,4 -1,1 6,B 8,0 5,2 7,6 -1,8 7,B -1,0 -1,0 -1,1 0,C 8,B 4,7 6,4 8,9 -1,3 6,4 1,4 -1,6 6,B 6,2 1,B 6,0 -1,1 -1,6 3,6 2,8 7,2 7,2 8,B 5,B 8,6 7,8 6,4 0,9 -1,9 -1,6 5,C 2,5 -1,6 -1,9 4,B 3,B -1,4 7,5 2,C 3,9 4,0 -1,7 1,7 4,1 8,7 9,5 9,1 1,0 4,4 -1,9 -1,1 9,1 2,8 3,6 5,1 6,2 4,B 4,0 8,1 5,C 8,0 8,8 0,B -1,0 2,B 8,1 5,4 -1,1 4,6 -1,3 7,7 7,9 9,3 -1,4 7,1 -1,1 5,B 2,5 -1,0 5,B 9,3 3,6 6,5 4,4 3,4 3,8 9,3 -1,7 -1,5 8,C 8,9 5,9 0,B -1,5 9,B -1,5 9,0 9,B 3,2 0,8 4,0 5,7 -1,9 -1,7 3,B 9,2 -1,3 2,3 6,2 7,7 8,6 0,B 1,B 9,8 -1,1 6,9 -1,0 2,1 6,4 -1,4 2,8 4,6 3,B 9,9 4,3 9,2 1,2 3,9 9,B 3,3 1,3 9,8 -1,5 7,8 7,B -1,1 0,6 -1,3 1,4 6,B 9,C 3,6 8,B 8,5 9,5 6,1 3,4 1,1 3,6 7,B 4,5 5,B 1,4 6,2 -1,9 1,5 5,6 3,6 8,4 2,1 -1,7 1,5 7,3 5,8 6,B 4,7 -1,5 8,6 6,B 9,2 6,3 4,C 1,2 1,7 -1,7 6,0 1,1 9,1 8,6 -1,9 3,4 3,7 0,6 5,2 8,8 2,5 2,B 4,B 4,7 9,9 -1,2 0,6 3,C 6,2 8,7 0,8 2,9 6,2 2,9 -1,9 5,5 -1,8 2,8 -1,0 7,1 7,6 -1,7 -1,6 2,B -1,9 2,9 1,4 0,3 0,9 -1,4 5,6 -1,7 -1,8 1,C 8,B 5,9 3,0 -1,5 4,B -1,0 -1,4 5,0 2,8 -1,1 5,0 2,6 -1,0 4,1 -1,6 -1,5 7,7 2,8 5,9 8,0 8,9 6,5 4,9 0,6 9,2 0,6 7,C 0,0 9,1 -1,9 0,5 5,4 2,2 3,2 9,C -1,9 7,B 3,4 2,0 0,B 0,1 8,C 2,4 2,2 3,C 2,0 6,1 5,3 1,1 6,3 -1,5 0,6 -1,9 9,C 2,C 3,2 3,9 8,1 5,B 5,0 -1,8 2,0 2,6 9,8 9,0 4,1 7,3 4,2 4,9 9,8 9,3 7,6 2,3 7,0 3,5 2,4 3,1 5,4 5,C 9,B 9,5 2,3 8,6 0,3 3,5 3,B 0,4 3,3 5,7 -1,1 -1,6 7,9 -1,4 6,B -1,8 -1,8 -1,2 -1,1 4,C 5,B 2,C -1,7 1,0 -1,0 3,6 9,6 0,7 2,4 2,3 -1,7 4,B 8,B -1,2 1,4 8,8 9,5 1,1 5,5 2,5 -1,8 2,B -1,2 -1,1 7,6 4,B 1,6 6,4 3,C 4,8 -1,7 8,5 9,B 4,6 9,9 0,1 -1,8 4,6 1,4 1,2 9,5 -1,2 2,5 3,B 3,C 4,3 4,C 9,7 3,7 -1,7 3,6 6,3 -1,8 9,8 8,6 -1,0 0,7 3,7 4,4 9,8 5,0 4,8 2,7 1,6 8,6 6,7 7,5 9,B 1,6 -1,8 8,6 3,2 4,0 0,4 -1,2 3,B 3,B 9,6 8,B 7,7 7,4 2,6 1,9 8,8 8,7 5,B -1,3 1,2 8,5 6,5 6,1 4,8 5,0 -1,5 2,7 1,B 8,1 2,6 0,B 3,B 2,4 3,9 5,4 -1,3 9,B 1,C 1,5 -1,0 9,4 2,C -1,2 -1,8 -1,2 7,B -1,6 1,0 5,5 5,B 6,2 9,3 5,6 7,8 3,2 7,6 6,B 9,6 7,C 8,9 2,7 1,B 6,C 4,5 2,C 6,3 9,5 6,C 6,B 0,6 7,2 9,1 -1,1 3,3 8,B -1,6 -1,5 5,2 6,3 1,4 -1,1 0,9 3,9 -1,7 8,3 9,B 3,6 -1,1 3,0 -1,8 9,C 2,7 7,0 -1,7 -1,9 2,4 2,5 1,C 9,C 5,4 7,9 7,7 6,5 2,4 -1,7 -1,2 -1,0 5,8 4,0 -1,1 -1,9 7,0 -1,3 -1,4 8,4 3,7 5,9 3,0 9,6 6,1 -1,2 9,7 0,8 0,5 9,B 0,9 -1,2 4,C 1,3 6,B 0,6 -1,9 8,7 7,B 4,C 0,4 4,3 8,C 5,2 -1,8 7,B 1,C 2,3 5,6 0,3 -1,6 2,1 0,C 5,B 5,3 2,6 0,C -1,6 6,2 0,9 6,0 8,2 -1,0 7,3 5,3 3,0 0,C 6,B -1,7 -1,4 0,B -1,9 3,7 8,6 5,C 0,C 6,1 2,5 5,0 0,3 8,5 -1,1 -1,5 3,9 5,2 -1,0 3,7 4,2 -1,0 -1,4 1,8 5,2 7,6 -1,7 0,1 6,C 5,C 5,C 5,C 0,B 6,6 7,9 -1,5 6,C 2,4 7,7 4,3 6,C -1,6 4,B 1,C -1,0 -1,5 4,4 -1,9 9,B 5,5 7,5 5,9 7,2 -1,1 6,0 3,1 4,6 2,5 0,B 8,7 9,3 8,C 6,0 9,2 0,7 3,4 1,6 3,8 -1,8 9,C -1,0 2,C 7,5 9,7 5,0 -1,5 2,C 0,8 5,0 -1,1 3,B 2,3 3,7 2,B 1,B 4,6 8,B 5,B 7,2 -1,0 3,B 5,2 8,9 3,C 3,6 -1,1 7,5 8,7 9,5 4,1 6,8 0,8 7,2 0,6 2,3 3,C 7,9 9,1 7,B 6,0 -1,2 3,6 8,5 3,5 1,4 5,B 8,2 -1,5 6,4 1,B 0,8 0,6 0,1 2,C -1,9 4,B 1,7 2,7 0,0 4,7 0,7 3,3 -1,6 3,1 5,2 5,2 -1,7 8,1 0,0 -1,1 0,9 0,4 7,8 1,8 7,0 4,7 8,5 8,4 4,7 2,6 -1,8 -1,1 7,5 8,C -1,5 5,4 2,1 -1,4 -1,6 3,1 8,C 1,B -1,6 -1,8 5,1 0,0 0,9 6,8 -1,3 2,5 0,B 7,B 2,C 0,4 5,C 2,B 4,6 4,C 9,1 -1,4 3,9 9,5 4,9 9,5 8,0 9,6 2,5 4,1 1,3 8,7 1,C 5,3 -1,2 2,9 0,9 5,C -1,0 9,4 -1,2 6,C 9,0 9,7 2,3 9,0 1,7 -1,9 2,C 9,8 4,2 8,0 8,B 2,B -1,4 5,1 -1,8 5,3 7,4 8,1 -1,8 -1,5 7,C 6,C 4,1 3,7 3,3 6,C 1,9 3,5 -1,0 6,3 3,8 -1,5 5,C 5,8 -1,6 7,C 6,6 2,4 1,9 6,9 6,C 2,1 -1,2 9,C 1,7 4,0 5,1 9,9 7,B -1,3 9,3 5,9 7,5 3,0 2,1 -1,0 8,9 4,6 5,2 -1,7 9,1 4,9 6,8 5,C 2,6 9,8 3,5 1,C 8,B 7,9 5,2 -1,5 5,4 1,6 1,3 3,3 4,9 -1,7 3,C -1,1 -1,0 8,8 3,4 3,5 -1,9 5,1 8,B 8,2 -1,2 8,C 6,C -1,7 -1,3 5,C 5,1 7,6 0,C 8,1 1,2 7,8 9,7 2,B 2,C -1,3 8,C 9,C 0,3 0,8 -1,4 6,3 2,3 1,8 5,6 0,9 9,4 6,1 8,8 -1,0 9,B 6,1 -1,5 5,8 2,B 4,7 4,3 0,B 7,9 -1,1 7,4 0,6 -1,6 7,1 4,9 -1,4 5,7 5,C 3,C 4,B 5,8 2,8 6,C 9,1 0,C -1,5 4,C 2,2 3,8 4,0 1,1 3,7 -1,7 8,5 8,5 6,5 7,B 9,C 3,9 -1,0 -1,2 6,1 3,B 5,B -1,9 7,9 8,3 -1,1 8,C 3,0 6,B 0,9 8,8 -1,1 -1,4 6,8 4,4 1,B 3,5 1,8 -1,7 2,9 1,4 3,2 3,6 -1,7 4,9 -1,3 2,7 8,9 -1,5 1,6 -1,2 2,C 9,C 4,3 8,7 7,6 0,9 6,7 -1,7 9,2 4,C -1,4 6,C -1,2 4,B 1,5 -1,1 2,B -1,6 6,8 0,3 5,B 3,C 8,C -1,1 9,9 1,1 8,9 2,C 7,7 -1,8 6,C 1,2 5,2 6,9 -1,4 3,5 8,B 4,B -1,9 7,5 -1,7 7,4 5,B 8,6 -1,8 3,1 3,6 2,8 7,3 3,1 -1,8 5,8 1,2 9,8 8,3 -1,7 5,4 8,5 6,1 5,8 6,3 4,8 8,3 -1,4 7,6 8,7 1,4 4,2 -1,4 9,5 -1,1 -1,7 5,C 3,9 2,8 -1,2 -1,4 8,9 -1,8 0,7 6,1 -1,3 6,1 6,3 5,0 -1,1 -1,6 -1,2 1,C 9,7 2,C 3,5 -1,1 6,C 3,C 1,1 5,9 9,0 -1,3 4,1 1,C -1,5 -1,6 8,6 3,5 2,3 0,2 0,B 3,2 -1,6 3,1 7,2 -1,2 9,8 0,4 9,9 1,3 -1,2 2,0 1,3 1,1 2,2 9,2 -1,6 2,0 6,6 4,7 5,4 3,B 1,1 4,0 7,B -1,7 8,0 -1,7 5,9 4,C 8,6 0,0 -1,7 4,0 6,6 9,B -1,0 -1,8 7,C 5,4 8,7 4,4 0,B -1,8 -1,0 -1,8 5,B 6,8 0,B 8,7 8,6 1,6 0,8 1,B -1,0 -1,4 1,7 6,C 9,1 1,6 0,B -1,9 0,8 1,1 9,4 1,5 1,B -1,2 0,7 2,5 8,7 4,7 -1,4 7,C -1,4 1,8 2,B -1,5 4,B 5,C 7,5 2,1 4,3 4,3 9,2 8,8 7,7 2,C 0,6 8,4 7,4 0,B 4,C -1,1 8,0 4,2 5,2 7,5 -1,1 4,8 3,8 4,B -1,9 -1,3 1,0 6,3 2,B 9,3 -1,4 6,0 6,8 4,2 4,C 7,5 7,5 4,B 9,B 7,B 1,5 6,B 9,B 5,0 5,7 6,8 5,3 9,0 8,0 2,1 5,C 2,6 5,6 6,6 2,0 5,1 7,2 9,3 6,2 8,6 7,6 7,3 -1,1 6,C 0,9 9,2 3,0 3,6 0,3 7,7 -1,6 0,B 8,5 -1,5 9,7 7,1 6,5 9,4 6,1 1,7 -1,0 8,8 7,C 3,1 1,2 7,0 7,B 1,C 2,5 9,B 5,2 -1,0 1,0 -1,3 4,7 7,4 6,4 5,9 -1,0 6,B 7,C 9,B -1,1 8,B -1,2 6,C 4,1 8,1 3,3 2,C 8,1 0,4 4,3 9,9 0,9 -1,5 2,7 -1,3 2,4 0,5 3,3 -1,6 6,5 1,9 9,8 2,9 -1,5 2,4 9,3 0,6 8,9 3,9 1,9 1,B 4,8 3,5 9,B -1,8 9,8 -1,1 -1,4 3,9 1,9 1,8 2,5 -1,9 2,5 6,9 8,3 -1,4 4,4 0,4 5,B 9,7 1,C -1,7 -1,6 2,0 0,C 2,9 3,5 7,4 2,8 -1,4 -1,5 -1,4 -1,3 1,3 2,C 9,6 5,3 9,9 -1,1 2,9 -1,2 1,B 6,9 2,8 5,C 9,1 1,0 5,6 -1,1 4,0 8,C 8,B 9,2 3,1 7,B 3,8 -1,4 6,4 -1,6 6,2 -1,9 2,1 -1,0 -1,1 9,8 8,1 7,6 0,9 1,0 3,7 2,3 5,5 8,3 2,7 5,6 6,9 4,7 9,8 4,0 -1,7 5,3 -1,6 5,3 1,2 7,2 1,C 5,7 2,2 1,C 7,3 8,B 1,C 8,C 7,9 0,B -1,9 9,C 0,9 2,4 6,4 4,1 3,B 1,9 7,B 5,C 0,4 -1,5 -1,6 -1,7 4,7 3,0 2,0 1,C 1,5 4,3 4,4 2,7 -1,1 6,5 -1,9 0,0 7,C 3,7 2,7 -1,2 -1,8 2,2 9,8 4,1 4,5 5,9 5,C 4,C 2,6 2,B 3,0 -1,2 -1,7 -1,5 4,C 5,C 2,8 2,8 3,B 0,7 0,C 4,1 -1,3 9,9 9,B -1,3 -1,9 6,1 3,C 4,0 3,3 8,6 3,5 7,1 4,B 2,2 5,0 0,5 1,B 8,B 7,2 9,8 0,7 3,4 9,0 6,7 7,C 5,0 7,C 1,1 6,C 7,2 -1,1 -1,1 0,1 7,7 9,9 3,7 3,C 2,4 -1,8 6,9 -1,4 5,9 4,C -1,4 8,9 4,8 5,B -1,7 5,1 -1,7 6,B 2,7 9,6 7,5 1,0 7,5 8,B 0,B 0,9 1,3 -1,6 1,5 3,7 -1,4 -1,0 5,3 5,9 7,B -1,6 1,3 8,2 6,6 6,8 5,3 3,3 4,2 2,3 2,2 -1,7 2,3 4,2 3,1 6,4 6,8 1,C 3,6 6,C 9,4 -1,5 1,3 1,C 4,2 4,7 1,2 4,C 8,C 0,7 3,2 8,C -1,8 5,B 2,1 8,7 9,6 6,B 8,4 -1,6 3,B 5,9 5,4 1,5 0,2 9,5 2,4 1,3 5,6 7,9 6,C 3,3 4,7 2,B 6,1 9,1 8,B 0,0 3,1 7,6 9,1 6,8 -1,7 5,8 4,6 2,3 1,9 -1,0 -1,6 4,B 3,8 6,2 -1,9 8,3 2,B 3,5 1,4 3,4 9,2 5,9 1,6 6,5 -1,3 0,C 3,0 3,0 0,6 4,B 8,8 -1,8 -1,0 6,B -1,4 2,B 1,4 -1,6 2,4 6,0 7,5 2,0 8,1 4,9 6,9 -1,1 2,B 7,1 -1,0 -1,5 9,7 0,9 0,1 2,5 3,3 3,0 2,7 3,B -1,5 8,5 -1,0 6,6 1,1 6,1 2,2 2,2 5,C 2,B -1,1 5,4 -1,5 3,8 8,8 4,5 5,7 -1,9 8,0 3,5 7,B 6,5 2,B 7,C 0,3 -1,9 8,5 1,3 6,9 6,C 4,5 4,0 -1,2 8,9 2,0 6,9 1,C 7,1 3,1 5,0 4,8 -1,4 7,9 2,1 0,B 0,9 6,5 9,4 -1,9 7,7 2,8 8,9 1,C 5,3 -1,7 3,0 6,7 6,B -1,1 6,8 1,8 4,9 3,9 4,9 -1,7 5,9 9,1 3,0 9,B 7,9 1,5 7,B 2,0 -1,1 4,6 9,5 3,5 0,6 4,4 3,3 7,C 2,C 6,3 5,2 3,7 5,7 4,4 7,1 -1,3 6,5 -1,1 7,1 3,6 3,8 5,8 2,B 7,1 5,5 2,B -1,3 4,5 1,B -1,4 9,C 4,8 -1,2 1,4 5,1 2,B 0,7 -1,2 0,B 0,C -1,3 7,B 7,3 -1,2 4,1 7,B 2,6 -1,7 5,0 8,4 -1,9 5,5 -1,2 9,5 8,7 9,4 -1,6 -1,9 -1,0 9,6 4,B 0,2 2,8 -1,0 -1,9 5,8 5,5 2,2 -1,8 0,C -1,8 8,6 9,7 -1,6 0,6 -1,6 3,3 0,6 4,8 -1,8 7,B -1,5 9,0 1,C -1,5 -1,8 2,4 9,0 4,6 9,7 8,8 1,5 5,B 6,8 1,6 2,1 3,8 0,7 0,B 0,3 9,C 0,C 9,9 5,0 1,B 3,C 2,C 5,B -1,6 9,9 8,6 5,C 8,0 3,3 6,B 7,C 3,4 8,C 5,9 9,0 5,4 -1,3 3,0 0,C 3,B -1,1 -1,9 5,3 -1,3 -1,5 1,1 2,B 2,1 7,C 1,B 5,C -1,5 -1,2 -1,6 8,1 7,C -1,2 2,9 1,6 2,9 6,6 2,9 3,0 7,B 6,1 -1,9 5,3 2,3 7,6 2,3 -1,9 2,6 -1,0 2,C 1,5 6,8 2,B -1,1 3,7 -1,4 2,B -1,5 1,C -1,9 1,B 5,8 5,C 4,9 6,0 -1,7 4,8 2,9 9,C 0,9 5,3 -1,1 2,6 1,7 1,6 5,B -1,7 9,B -1,2 -1,9 8,C 6,8 1,8 -1,6 -1,0 4,C 8,2 -1,8 6,C -1,7 -1,5 6,C 9,C 1,B 0,C 5,B 6,7 5,7 -1,5 0,8 6,9 3,6 1,5 -1,5 4,9 3,B 1,3 1,6 -1,4 2,7 1,1 -1,6 2,9 -1,6 4,0 -1,2 -1,6 -1,7 9,B -1,7 7,2 4,B 9,6 5,B 6,8 2,B 1,2 -1,4 4,3 1,4 6,6 8,C 6,C 8,4 6,2 8,9 5,2 7,9 2,8 7,8 7,9 6,1 -1,7 4,0 8,7 1,7 9,2 -1,2 0,C 9,7 7,3 3,6 4,C 6,B 9,B 9,2 0,4 -1,5 6,C 3,8 1,9 9,5 3,B 3,8 9,9 -1,9 9,8 1,2 8,4 -1,3 5,B -1,9 -1,5 3,B 7,9 3,B 9,2 6,8 9,B 4,0 1,2 0,1 2,2 6,5 2,8 6,C 9,8 -1,8 2,1 2,9 3,6 0,2 0,B 7,C 8,B -1,1 4,B -1,7 9,B 6,C 6,C 6,6 7,7 3,8 2,2 5,C 7,2 2,2 8,6 7,2 0,6 -1,8 0,8 -1,3 4,3 -1,8 1,8 8,C 4,0 5,4 3,2 3,8 9,C 9,C 4,0 5,5 -1,9 8,4 -1,8 8,C 2,6 -1,0 9,C 4,6 1,8 2,C -1,7 2,5 4,7 9,1 3,B 1,C 2,9 4,C -1,4 -1,6 1,3 6,2 8,2 7,6 7,1 2,7 8,B 3,6 4,6 2,2 -1,8 -1,5 0,C -1,1 1,7 7,C 2,5 5,8 0,6 9,9 4,2 -1,6 6,4 9,2 0,2 -1,3 1,4 -1,1 3,1 7,0 9,5 4,9 5,7 8,B 1,5 -1,2 2,2 7,3 2,5 6,6 4,B 2,C 3,C 9,9 3,6 8,7 3,B 6,2 5,7 8,B 6,C 2,6 7,6 5,6 1,1 6,3 -1,6 4,7 7,0 6,5 4,8 -1,6 2,B 3,C 7,2 8,B 2,4 6,6 7,9 4,4 3,B -1,3 8,8 -1,4 6,B 1,2 3,0 5,2 -1,7 -1,6 6,5 -1,7 -1,9 -1,6 -1,0 5,7 8,B 0,8 6,C 4,C 4,1 4,1 -1,1 3,3 5,7 5,2 4,B 7,9 7,B -1,4 3,7 4,4 5,5 8,4 4,8 6,9 8,6 5,8 0,7 8,9 6,5 -1,7 7,6 2,0 3,C 0,2 4,5 6,B 6,7 3,6 5,8 8,4 0,6 -1,3 2,2 -1,4 7,6 3,C 8,9 5,C 7,7 2,2 -1,1 8,9 -1,4 0,6 0,5 8,8 1,B 0,C 1,C 1,B 2,5 4,8 0,6 0,0 4,9 3,1 7,9 9,9 0,7 8,4 3,9 5,2 1,3 7,2 2,6 9,0 4,8 0,3 -1,6 4,B 2,5 9,7 9,4 -1,9 8,9 4,0 -1,9 4,3 4,B 7,4 2,5 5,B 2,3 1,3 9,5 8,1 5,7 5,4 4,B 1,0 6,6 -1,6 5,8 2,C 6,C 7,C 0,2 7,7 2,B 1,1 8,8 2,9 -1,5 9,7 6,C 5,1 3,6 1,C 8,C 8,8 9,9 7,7 0,9 0,6 7,0 -1,9 -1,5 -1,6 3,5 5,B 8,C 1,5 8,C 9,1 5,0 9,6 -1,6 -1,5 9,1 0,6 1,8 8,1 3,4 8,1 -1,7 4,7 2,2 -1,0 9,2 7,8 3,C 9,9 2,7 2,4 -1,1 -1,4 9,C 3,6 0,0 0,7 9,2 4,2 2,3 8,3 6,B 9,C -1,3 7,6 8,6 4,4 5,6 6,7 3,4 7,C 7,7 -1,1 8,6 -1,0 3,C 3,B -1,8 0,2 7,C 2,3 6,1 -1,1 2,2 5,7 -1,3 -1,3 9,B -1,2 9,9 6,1 -1,6 7,C 1,9 8,6 7,7 9,0 1,5 4,1 6,B -1,9 8,C -1,8 7,C -1,4 4,2 9,B 0,6 -1,0 0,3 4,0 -1,4 2,B 5,5 6,1 8,7 8,7 -1,0 7,4 0,5 6,4 0,7 9,C 9,C 5,2 8,B 8,4 5,8 8,C 7,4 5,8 1,7 4,3 3,2 8,7 9,2 7,B -1,1 1,9 1,7 -1,0 6,B 2,8 0,5 -1,9 4,3 -1,1 2,4 -1,9 3,1 9,9 3,3 -1,1 -1,0 6,7 -1,0 0,1 2,8 0,5 8,0 -1,5 -1,3 -1,4 -1,3 8,1 4,B -1,9 5,C 6,B 6,8 8,8 3,9 8,4 1,C 1,7 -1,1 4,9 1,C 6,9 3,1 9,8 1,8 3,7 -1,5 8,4 7,C -1,8 0,9 -1,0 8,3 7,C 8,C 9,C 1,4 9,1 6,7 -1,8 1,7 -1,2 -1,7 4,C 3,0 2,2 7,C 3,C -1,7 -1,6 4,6 4,5 2,1 4,2 -1,1 9,1 3,3 8,B -1,0 7,5 9,1 3,0 7,2 -1,7 5,9 6,4 0,7 7,7 7,C 9,5 -1,3 6,8 5,5 -1,8 6,6 3,1 7,0 8,0 -1,5 0,4 1,4 0,9 3,B 0,7 3,1 3,2 -1,7 -1,5 3,7 -1,3 -1,2 -1,4 8,2 6,7 5,7 9,0 2,9 3,6 6,B 3,C 5,B 9,1 5,C 3,C 3,3 8,4 2,8 1,6 -1,3 -1,7 4,7 9,1 -1,8 5,0 7,0 1,0 3,2 4,C 0,6 0,8 8,3 2,8 -1,9 7,1 1,7 5,C -1,3 6,0 5,6 7,2 1,9 2,3 7,5 9,7 3,C 7,6 0,7 3,C -1,4 0,B 6,4 1,6 8,C 9,C 7,7 4,C 7,9 -1,0 5,B -1,6 -1,1 8,C 3,7 -1,2 8,6 1,3 -1,6 3,2 5,5 2,1 7,2 1,2 2,B 4,0 2,6 7,3 -1,3 8,C 6,B 6,3 2,1 4,0 -1,4 -1,4 6,B 7,4 8,5 2,4 -1,7 -1,0 4,3 9,C 3,C 7,8 7,4 1,4 8,2 7,1 -1,4 -1,0 2,8 7,7 8,5 -1,0 4,C 1,9 -1,0 8,2 6,1 7,1 8,2 -1,6 -1,6 0,C 4,B -1,8 1,8 4,9 8,0 -1,6 9,9 1,5 2,B 5,8 7,3 5,7 -1,3 9,6 -1,8 9,C 2,1 2,0 7,1 2,1 -1,2 1,3 -1,7 3,7 1,2 1,2 2,9 7,5 9,2 5,8 0,C 1,C -1,9 5,C 0,B 7,5 0,9 5,8 1,4 0,C 4,C -1,6 8,3 0,8 -1,6 0,6 3,0 5,7 4,7 0,0 8,6 7,4 -1,3 9,4 7,B 5,8 1,B -1,7 8,1 -1,2 7,B 2,6 3,5 0,1 9,2 -1,7 -1,7 9,4 2,7 4,7 8,7 4,9 -1,3 1,8 7,C -1,7 9,8 4,3 5,5 -1,4 7,1 4,2 -1,2 5,6 3,3 9,6 6,6 0,1 1,5 6,7 7,C 0,2 1,B 3,0 -1,6 6,1 7,8 9,3 -1,2 3,6 -1,6 8,7 4,C 7,5 1,2 8,2 5,4 0,0 -1,0 -1,2 1,7 8,0 5,2 6,4 2,C 6,2 7,7 2,0 4,6 3,9 -1,4 -1,5 5,4 1,0 3,C 5,B 3,9 5,4 -1,6 6,3 5,6 9,6 8,0 5,8 -1,5 0,2 5,4 5,2 -1,4 -1,2 -1,7 6,5 7,1 5,8 7,4 7,B 2,4 8,4 9,0 4,0 -1,1 -1,8 0,C -1,4 -1,2 0,C 5,B 1,9 9,C -1,0 3,4 7,4 0,3 1,3 7,3 -1,9 2,C 9,B 9,5 1,8 5,B -1,1 -1,8 3,5 8,C 1,B -1,7 3,C 3,6 3,9 6,8 3,C 9,3 6,7 8,C 7,4 3,C 2,5 3,4 -1,2 8,0 7,3 -1,5 4,B 7,2 4,5 1,0 6,B 4,B 4,5 9,2 4,B 1,0 4,9 9,B 2,5 3,0 4,5 3,2 0,B 5,B 1,5 8,6 9,0 -1,9 0,C 2,2 0,6 3,5 5,7 5,5 -1,0 9,2 4,3 3,C -1,6 0,B 6,9 3,6 -1,1 1,6 7,B 2,9 -1,2 8,B 2,B 4,3 6,7 -1,7 4,C -1,1 1,5 0,5 6,4 8,C 5,9 8,5 1,2 7,1 9,6 7,9 6,B 8,0 -1,2 8,9 8,9 6,7 -1,1 3,B 4,5 9,2 5,C 7,2 7,2 9,4 0,3 3,4 9,B 6,0 3,C 2,C 6,7 1,4 -1,1 3,4 2,0 8,C -1,9 5,6 -1,0 3,7 1,3 0,8 9,0 3,1 0,1 5,2 -1,9 2,3 5,9 -1,1 4,B 8,B 6,3 1,4 3,1 -1,1 9,7 7,B 5,6 9,5 4,0 1,7 7,6 0,C -1,3 6,9 2,C 6,C -1,5 2,C 9,4 3,1 3,0 3,1 6,1 -1,2 -1,7 9,C 2,8 1,C 4,5 1,3 1,B -1,2 7,6 1,B 3,0 7,3 2,C 7,3 -1,1 8,8 -1,5 2,B 8,5 7,9 3,B -1,2 3,C -1,7 2,5 9,C 5,6 6,4 2,8 0,3 -1,1 9,9 7,6 7,5 7,C 8,7 2,1 5,C -1,8 5,6 6,9 3,3 -1,3 7,5 -1,9 5,C 1,1 4,7 5,0 1,1 5,4 4,9 -1,9 7,C 0,B 2,0 9,6 6,B 3,7 1,5 1,9 7,1 1,B 4,2 3,4 5,2 9,6 -1,7 6,4 3,C 8,C 4,3 7,3 7,2 -1,7 4,7 3,4 6,0 6,8 5,1 0,8 1,6 2,4 2,9 2,C 0,1 4,C 3,2 2,2 0,1 -1,3 1,9 0,7 0,3 9,B 4,7 5,9 9,3 2,6 2,9 8,0 3,0 5,8 6,9 4,7 4,8 1,1 7,5 4,1 -1,1 6,7 -1,4 7,3 9,6 -1,7 1,2 9,3 0,8 9,7 -1,1 9,6 -1,6 8,C 6,C 4,9 3,2 4,8 5,5 2,B 1,7 6,9 0,8 8,7 -1,7 3,B 3,4 -1,7 5,C 8,6 5,2 1,2 4,1 3,1 -1,6 5,9 7,9 4,2 7,4 -1,7 -1,9 1,4 5,5 9,0 1,6 8,0 0,6 1,0 -1,9 5,7 5,5 0,3 8,2 1,4 8,2 5,B 7,9 9,4 0,9 -1,4 3,9 4,6 -1,3 -1,7 0,1 7,B 4,B -1,7 7,1 -1,1 -1,6 3,C -1,3 0,B 0,9 6,6 -1,8 2,B 9,2 5,C 1,9 2,C 2,4 6,0 4,B 7,6 6,C 6,7 9,0 -1,8 3,6 -1,8 2,5 5,3 6,4 5,8 4,5 6,6 -1,3 3,3 6,8 3,5 2,8 9,3 1,0 2,1 3,5 3,3 8,0 8,5 7,6 5,8 2,C 9,6 3,7 0,3 1,9 3,C 9,7 3,2 6,8 3,C -1,6 -1,1 2,3 3,0 6,5 -1,0 -1,7 2,C 7,3 3,3 -1,2 -1,2 -1,5 6,4 5,6 0,8 0,3 2,0 6,8 6,8 8,2 6,2 -1,3 0,C 8,1 -1,4 4,B 4,9 9,C 5,C -1,6 4,9 1,1 3,0 7,4 -1,0 6,2 7,C 5,C 7,0 0,5 8,B 4,0 0,2 2,8 -1,7 9,1 2,4 7,C 9,5 -1,7 -1,8 5,8 4,2 -1,4 3,0 -1,1 4,7 4,3 0,2 7,4 6,8 0,C 9,B 0,C -1,5 3,2 4,C 0,8 3,C 9,B 4,3 2,3 1,4 8,1 0,B 0,5 5,4 5,B 4,7 0,C 0,B -1,8 6,7 3,9 2,8 8,C 3,9 6,0 6,0 1,C 4,9 1,B -1,5 7,8 9,1 3,5 -1,6 4,1 8,7 3,C 2,8 5,B 0,8 5,C 9,1 8,4 8,0 0,3 6,0 6,B 9,8 1,3 6,6 8,C 4,5 4,7 7,2 -1,9 3,6 8,2 8,4 3,0 9,B -1,8 4,0 3,B 9,8 -1,3 9,6 0,8 5,B 2,0 3,C -1,8 -1,3 0,B 1,B 6,0 3,2 1,7 6,8 8,B 4,3 9,3 7,6 8,5 0,5 5,3 9,9 1,3 -1,6 0,1 1,9 9,7 -1,6 -1,7 -1,2 5,6 5,9 -1,3 1,0 -1,1 3,B -1,1 2,C 1,5 -1,4 -1,6 -1,0 -1,3 -1,0 6,5 4,4 0,6 -1,1 5,0 6,2 9,C 7,0 -1,4 -1,3 8,1 -1,3 1,2 7,7 1,8 -1,8 1,7 4,1 -1,5 3,8 5,4 6,6 7,4 6,2 0,6 7,2 -1,3 6,7 7,B 9,9 8,C 5,8 -1,4 1,9 5,5 -1,7 5,5 7,8 6,0 8,6 -1,7 9,6 3,B 7,4 -1,6 -1,5 2,2 4,0 5,C -1,4 0,3 1,B -1,6 3,3 3,B -1,9 9,B 2,C 6,0 7,7 -1,3 7,C 9,8 -1,6 2,C 0,1 0,3 7,7 -1,0 9,5 5,B 7,0 3,7 9,5 -1,6 6,4 4,C -1,6 2,4 7,C -1,9 0,8 6,C 3,C -1,9 5,5 2,C -1,8 -1,2 9,2 4,5 8,4 0,0 1,4 7,8 0,8 4,C 9,3 1,2 1,B 1,4 -1,5 9,5 1,B 5,1 2,1 5,6 7,8 9,6 2,1 4,7 3,B 9,2 9,C 0,2 -1,4 0,B 3,3 8,9 2,C 9,C 3,2 7,6 -1,5 5,0 3,0 2,1 6,2 5,8 7,1 8,5 5,B 4,1 7,2 -1,7 -1,1 5,6 -1,9 3,3 9,0 -1,2 0,B 2,3 4,5 6,6 9,5 3,0 -1,1 5,5 6,3 2,C 4,9 1,6 8,B 6,2 1,5 9,B -1,1 7,9 8,3 -1,1 7,6 1,0 6,3 3,4 3,7 3,C -1,0 9,0 4,3 0,9 1,7 9,5 -1,8 6,7 0,1 -1,6 -1,4 1,8 8,B -1,8 8,0 -1,8 -1,0 1,C 1,7 0,8 0,3 6,9 9,8 1,5 0,7 4,6 6,0 -1,0 3,6 3,3 5,2 -1,9 4,7 3,B -1,2 -1,2 5,4 5,C 0,2 7,7 4,6 1,C 2,3 8,B 1,1 6,C 6,3 3,1 6,B -1,3 8,B 0,3 2,4 6,B 1,3 1,5 1,8 0,B -1,3 8,B 9,0 2,B 3,7 7,4 -1,0 8,3 9,2 2,8 -1,9 6,4 7,8 8,1 6,5 7,2 7,9 8,7 -1,0 1,5 3,1 0,0 9,2 0,5 -1,9 2,C 6,C 7,9 8,3 8,3 0,B -1,1 5,3 6,6 7,C -1,9 -1,5 2,1 7,6 2,1 7,3 3,6 7,3 1,3 5,0 -1,0 5,6 2,C 8,0 3,1 8,9 3,C 3,C 3,5 2,1 9,0 0,C 1,7 -1,5 2,9 0,3 1,7 -1,5 3,8 9,7 0,B 8,7 5,7 -1,7 5,B -1,6 5,3 3,3 0,5 3,5 8,6 2,5 -1,8 1,5 -1,8 4,2 6,1 -1,5 7,1 -1,7 5,3 -1,0 0,5 6,5 7,C 8,4 2,4 5,7 0,9 7,4 4,2 5,B 9,1 -1,8 4,0 -1,9 2,1 -1,4 8,5 3,1 -1,7 8,1 9,9 1,3 1,3 2,0 3,5 -1,7 4,C 4,C 5,4 2,C 2,2 8,0 4,4 2,2 2,B 7,7 4,C 6,9 8,4 8,1 2,6 -1,3 3,2 0,2 1,1 -1,8 4,5 1,2 2,3 6,6 4,C 1,B 7,B 2,B 4,4 8,B 9,5 3,6 -1,0 0,2 2,8 0,C 0,6 7,0 -1,4 7,3 -1,3 8,3 0,2 -1,9 9,B 7,B 7,C 6,5 4,C 3,5 4,2 -1,9 2,4 1,6 0,8 6,B 8,C 5,2 0,5 1,5 2,3 -1,6 -1,4 2,7 9,6 -1,3 2,7 0,1 7,9 5,B 8,7 6,8 1,7 1,7 1,B 8,0 4,C 6,6 5,2 3,C 9,6 6,8 8,8 6,8 1,6 7,3 0,C 9,C -1,9 5,8 1,8 2,3 4,5 3,8 5,0 -1,9 3,C 9,1 1,B 6,C -1,4 1,B -1,0 9,8 5,C 6,9 7,0 0,B 3,1 1,3 0,1 -1,7 9,0 7,7 1,C 3,9 3,C 7,7 7,C 6,7 9,3 1,0 3,C 9,2 2,B 2,9 5,B -1,1 7,7 9,9 7,0 9,1 5,6 7,5 4,5 0,C -1,1 -1,5 -1,1 7,0 3,5 8,4 2,B 5,3 6,1 1,2 6,5 3,0 6,2 4,B 8,5 -1,6 9,C 8,C 0,0 4,2 7,3 8,3 -1,0 9,5 0,9 -1,9 6,4 7,0 7,4 0,B 7,0 4,7 -1,2 -1,9 2,9 -1,0 -1,7 1,0 8,3 -1,8 7,C -1,9 9,4 9,C 4,7 -1,8 6,B -1,1 -1,6 2,B -1,9 0,2 -1,9 8,6 3,8 3,5 0,1 4,3 -1,9 3,B -1,3 3,1 -1,7 9,5 7,6 -1,8 1,9 -1,7 1,3 7,6 4,5 0,B 6,9 4,9 4,0 5,0 -1,3 2,6 7,1 6,2 9,B 6,B 9,C 6,1 0,C 2,C 3,3 3,B 3,7 0,B 4,B 1,2 -1,0 1,1 9,9 3,B 8,2 8,4 4,5 4,C 8,0 0,2 1,6 -1,8 -1,5 -1,9 -1,4 -1,6 4,7 3,C 9,8 -1,9 0,B 6,B 9,6 1,4 8,7 1,7 0,6 8,3 8,6 6,5 -1,1 2,9 6,2 1,4 3,6 3,1 0,1 0,9 6,B 3,B 3,0 7,1 6,3 3,2 1,5 0,B 2,6 1,7 7,4 9,2 -1,2 8,9 -1,0 9,7 -1,8 -1,8 7,7 7,2 5,C 9,B 1,C 0,9 3,4 2,3 2,8 3,4 2,0 -1,3 3,7 3,4 -1,8 -1,0 -1,1 -1,5 7,0 6,9 3,C -1,6 2,0 7,1 3,5 5,C 7,0 6,2 4,B 1,C 5,7 -1,0 3,7 7,9 -1,8 5,C -1,0 2,C 1,C 1,5 3,6 0,7 7,2 -1,8 1,C 8,8 1,9 3,8 -1,1 -1,6 9,7 4,2 0,7 1,3 0,9 6,8 5,C 7,3 -1,9 1,1 9,3 7,C 5,1 6,B 5,5 9,2 -1,3 -1,0 1,6 2,3 6,4 5,3 -1,2 2,B -1,5 0,6 9,9 3,B 4,3 4,3 2,B 4,7 7,2 -1,9 8,7 2,3 1,B 7,7 7,2 0,B 5,B 1,0 0,C -1,4 2,8 6,3 1,0 -1,2 0,B 0,9 6,6 8,C 7,8 -1,2 3,2 3,B 0,C -1,3 6,2 6,B 1,4 8,3 6,5 2,0 -1,2 6,7 1,0 8,2 5,9 3,4 -1,8 3,9 9,2 8,C 6,6 2,B -1,8 3,C -1,1 9,C 0,C -1,3 3,3 2,B 9,5 2,B 6,9 1,7 3,C 1,C 1,9 0,4 2,4 -1,8 1,1 2,8 5,C 8,6 5,1 9,1 -1,5 2,1 5,7 1,1 1,6 2,7 1,C 6,8 -1,2 2,B 9,3 1,6 3,5 6,0 4,2 5,B 0,B 6,0 6,0 0,2 4,1 7,1 6,1 8,8 0,4 9,3 6,3 4,1 5,8 3,1 8,3 4,C 7,2 3,1 4,1 9,6 5,2 5,4 9,B -1,9 -1,5 8,0 3,8 4,1 -1,0 -1,8 6,0 -1,1 -1,4 2,8 5,3 2,0 4,4 7,9 0,9 -1,1 7,B -1,9 -1,7 1,9 1,7 -1,1 -1,9 -1,7 2,5 8,6 2,C 3,5 -1,9 5,6 6,B 1,B 4,C -1,5 7,C -1,4 -1,7 8,3 3,8 3,4 0,B 6,4 1,8 0,9 9,6 5,7 8,3 -1,7 -1,2 1,0 -1,0 4,6 -1,5 -1,8 2,7 2,8 3,0 -1,8 1,0 6,8 3,3 -1,3 8,8 -1,0 -1,6 9,4 -1,0 3,9 -1,1 1,0 -1,2 2,2 1,0 -1,1 6,6 4,3 -1,2 6,B 5,B 9,2 2,1 1,5 0,C -1,0 1,6 -1,2 1,2 0,4 2,2 -1,1 0,1 -1,3 0,5 -1,7 1,C -1,3 1,9 9,6 -1,1 7,5 5,0 -1,7 8,0 2,B 9,5 3,C 0,6 -1,2 5,3 3,B -1,1 6,C 4,4 5,7 2,8 5,7 2,5 -1,4 8,7 6,0 -1,3 5,4 4,2 2,7 0,5 8,5 5,5 1,B 3,B 3,2 -1,5 2,4 9,8 7,3 3,C -1,1 0,9 1,0 5,2 9,1 -1,7 5,4 3,1 -1,1 0,3 7,4 6,7 7,6 3,C 7,4 1,3 5,8 7,B -1,3 4,7 5,3 3,5 9,9 2,9 0,8 6,C 7,C 9,B 3,6 -1,0 -1,3 5,2 3,0 8,0 -1,8 5,1 0,6 3,B -1,2 2,8 1,B 0,4 -1,9 2,5 2,0 9,8 0,C 5,9 9,B 3,9 3,B 8,9 8,8 3,9 8,3 9,9 3,B 1,6 1,0 2,B 9,1 -1,1 2,1 6,5 2,6 0,5 5,4 9,6 7,6 3,B 6,0 -1,1 -1,2 8,7 6,B 5,0 4,4 1,0 -1,6 0,6 8,6 7,6 0,6 7,7 4,5 9,8 -1,3 -1,8 -1,4 3,C 8,1 8,9 8,C 0,5 0,9 4,4 6,1 9,2 3,2 2,7 7,1 5,5 1,2 9,0 5,C -1,6 0,5 2,9 2,B -1,4 7,4 1,7 3,C 4,B 2,C 9,B 6,4 3,2 -1,8 7,C 5,8 3,0 7,7 6,8 2,C 2,4 1,9 7,C 1,0 0,1 4,2 7,8 9,0 4,9 3,0 0,C 2,8 3,2 -1,2 -1,2 3,7 8,6 0,7 -1,7 -1,3 3,5 3,7 5,0 -1,1 3,4 -1,1 7,C 8,B 3,4 5,6 0,8 6,C 4,3 -1,0 7,0 3,B -1,8 2,2 4,4 3,0 8,B 3,0 9,8 1,5 2,4 1,C 6,8 9,3 -1,2 -1,7 3,4 5,5 4,9 -1,9 9,5 5,4 0,C 3,9 2,4 3,1 9,C 9,1 0,4 -1,9 6,2 5,0 6,9 -1,5 3,9 7,8 3,6 9,8 4,7 6,5 2,0 0,3 9,5 7,7 9,7 8,2 0,8 1,3 0,2 5,C 1,B -1,3 -1,4 4,3 -1,6 1,2 -1,0 4,8 0,B 4,1 3,5 -1,9 1,1 0,7 8,8 5,6 7,1 9,C 6,2 -1,7 5,7 3,B 7,4 1,7 6,3 8,7 0,5 2,6 5,8 8,B 0,B 1,9 2,B 0,B 1,1 4,8 2,B 0,3 3,3 9,4 7,B -1,0 -1,7 9,6 9,C 5,3 6,3 2,B 7,C 6,8 8,5 2,2 0,C 2,3 0,C 5,B 4,7 2,1 3,8 5,2 -1,3 9,7 -1,6 2,B -1,8 3,5 6,C -1,5 7,1 4,C 6,8 -1,7 2,C 4,6 -1,8 -1,6 2,7 -1,3 0,7 3,C -1,1 -1,9 8,9 6,4 7,5 -1,2 0,8 6,5 -1,1 7,5 0,0 4,C -1,1 -1,3 -1,0 5,3 4,5 -1,8 2,C -1,2 -1,2 7,9 1,C 0,7 6,7 0,1 4,0 -1,1 6,3 2,3 0,4 4,4 6,5 2,C 2,B 2,B -1,5 7,3 5,B -1,8 -1,5 9,5 -1,8 7,3 -1,7 8,C 6,9 7,1 4,4 7,8 -1,8 8,B 5,2 1,B 7,1 6,C -1,4 9,6 1,C 6,5 3,0 8,C 7,C 6,8 6,9 -1,1 3,6 7,9 7,5 0,2 1,1 -1,1 6,7 5,7 4,B -1,7 -1,1 -1,1 4,9 9,3 3,C 8,5 2,4 -1,2 1,C 2,0 3,0 4,6 -1,0 2,0 8,5 0,9 3,5 7,9 -1,8 6,1 8,6 3,9 8,0 5,C 3,B 3,3 6,9 8,9 4,8 0,3 -1,0 8,5 8,3 9,5 9,7 1,3 2,2 7,C 0,6 3,0 8,0 -1,4 7,6 7,5 9,4 3,B 2,0 5,0 6,B 5,6 2,5 2,1 -1,3 -1,4 -1,2 2,2 1,C 9,1 4,1 -1,5 3,6 7,B 7,3 -1,2 0,9 2,9 -1,4 8,3 9,3 8,3 -1,2 7,C 8,C 0,7 7,0 3,3 6,C 2,0 6,9 4,5 4,6 6,2 0,7 1,C 9,5 1,6 6,8 0,9 4,6 4,4 -1,7 -1,3 6,0 7,1 8,0 7,6 5,8 6,3 7,B -1,4 8,5 4,7 9,3 3,6 -1,2 1,B -1,7 9,C 2,6 1,C 0,B 2,9 1,C 1,7 9,7 -1,8 4,2 9,9 7,0 7,2 0,0 4,2 -1,1 5,4 0,6 -1,5 3,C 0,6 -1,2 2,2 0,C 2,C 8,B 4,7 5,8 1,0 6,8 0,C 5,7 8,C 2,4 4,8 3,6 -1,0 -1,1 3,9 -1,6 2,0 -1,3 1,5 9,3 4,1 6,3 5,C 6,0 -1,0 9,5 1,C 0,0 1,0 9,4 5,B 1,7 5,C 7,C -1,0 7,2 -1,8 -1,5 4,1 -1,3 4,C 2,3 -1,8 4,1 -1,4 0,4 4,1 -1,9 7,C -1,9 0,9 -1,3 -1,9 8,B 8,5 6,C 9,0 1,6 6,8 3,9 4,8 -1,9 -1,4 -1,6 2,3 6,4 0,6 8,B -1,1 -1,4 2,9 6,9 4,2 2,7 3,2 1,8 7,C 4,6 0,6 0,6 -1,9 8,4 5,4 6,2 1,C 2,2 6,B 4,5 3,8 5,1 4,2 -1,0 3,5 9,0 6,9 6,4 8,8 0,B 1,6 5,1 9,8 5,6 5,8 4,2 -1,7 7,8 8,3 -1,6 0,B 1,0 1,1 0,7 5,C -1,6 4,B -1,6 7,B 9,0 7,4 4,5 4,7 8,9 -1,7 -1,4 6,8 4,4 8,9 6,6 2,2 1,9 -1,1 -1,1 5,3 7,4 6,4 9,C -1,8 0,B 5,5 0,B 2,B 4,1 7,9 4,4 5,B 8,7 3,8 7,0 7,0 -1,7 0,9 1,B 8,3 3,8 6,C -1,8 4,8 2,6 5,B 8,5 8,2 1,0 6,B -1,1 0,C 3,8 -1,8 4,6 8,0 4,0 7,0 4,8 9,B 4,B 0,C 8,4 1,0 2,3 -1,2 0,8 2,0 4,6 6,2 4,9 2,C 4,5 2,9 -1,4 3,5 2,0 1,0 7,4 9,4 7,8 3,C 6,4 -1,0 -1,9 3,0 8,7 5,5 8,B 2,2 0,B 4,5 2,0 5,5 8,0 5,5 9,C 3,9 -1,6 -1,5 -1,9 9,3 6,9 7,7 1,9 6,6 1,0 0,4 -1,8 9,B 0,B 7,0 5,6 9,1 9,3 0,5 7,3 2,0 8,5 0,1 9,4 3,B -1,4 3,7 0,9 3,6 8,3 2,5 7,9 2,C 8,C 8,5 0,6 4,9 5,B 6,5 4,8 -1,2 9,7 6,0 1,3 6,2 5,8 -1,5 -1,5 8,C 3,0 4,9 4,4 -1,4 7,5 6,1 -1,2 -1,9 2,3 4,C 2,5 2,4 6,B 4,6 8,4 2,4 9,C 3,9 -1,5 5,9 -1,7 9,3 2,C -1,0 6,C 0,6 8,2 8,B -1,9 9,3 -1,6 7,8 4,8 1,C 2,0 6,5 -1,7 5,8 1,1 -1,7 0,3 1,9 -1,3 -1,9 7,0 -1,5 5,9 9,8 2,1 9,8 7,8 8,6 3,4 6,8 -1,9 0,4 6,1 -1,2 -1,6 -1,7 8,2 9,2 8,3 2,4 -1,2 -1,4 9,B 1,4 -1,3 -1,5 6,1 0,6 -1,3 1,1 2,4 2,7 -1,7 -1,8 5,6 8,9 -1,9 0,3 0,5 9,C -1,5 8,B 7,C 2,5 4,4 4,C 2,4 9,5 6,B 8,B 5,B 6,C 1,B 0,2 6,B 9,1 5,9 6,2 4,2 7,3 7,4 4,C -1,7 9,7 -1,4 8,5 7,3 8,7 0,1 9,5 8,7 9,5 6,8 -1,1 -1,8 8,2 7,0 2,C 6,2 5,1 -1,5 -1,6 8,0 5,9 2,8 9,7 5,B 3,1 -1,5 6,5 -1,1 9,5 4,9 -1,7 -1,8 5,8 5,5 -1,0 6,4 7,4 7,5 1,6 7,B 2,1 3,7 5,1 -1,2 -1,8 -1,6 7,B 3,2 5,B 6,0 2,6 0,0 1,C 8,C 2,2 -1,2 0,5 4,1 8,C 8,C 5,3 2,8 -1,6 4,7 1,5 4,7 4,7 8,0 1,5 6,2 6,B 3,7 3,B 7,7 -1,3 0,3 5,2 9,8 1,B -1,5 -1,1 6,C 9,C 0,7 5,B 9,3 7,C 5,1 -1,4 9,9 4,C 4,5 6,4 9,C -1,8 2,6 0,B -1,6 8,7 4,B 1,5 4,5 4,C -1,5 8,C 6,0 -1,7 4,4 4,3 -1,8 9,C 5,6 -1,8 0,3 4,4 1,4 -1,4 7,B 3,3 2,8 -1,9 2,9 1,3 6,B 6,1 6,3 7,8 9,B 3,6 2,1 6,1 0,7 7,B 8,8 0,8 -1,1 9,1 7,C 7,6 9,0 8,2 9,8 8,0 5,C 1,0 -1,0 -1,5 7,3 -1,0 8,8 5,C -1,4 3,3 0,6 3,3 1,C 9,8 -1,4 6,7 7,B 9,B 3,1 -1,1 3,B -1,1 6,B 5,1 1,C 8,2 9,B 8,7 9,B 1,6 7,C 2,7 -1,3 7,7 7,0 0,1 -1,5 2,5 1,C 4,8 3,0 -1,5 6,9 4,7 -1,5 3,B 9,9 3,3 -1,4 1,C -1,3 -1,4 2,4 0,0 8,C 6,9 9,C 6,8 0,B 1,1 9,7 7,8 0,6 7,C 1,1 5,8 3,3 5,9 5,C 4,6 7,9 2,1 9,C 6,C 2,C 7,2 0,7 2,0 4,7 4,2 9,B 4,B -1,9 2,C 9,C -1,2 3,3 -1,7 5,7 0,0 -1,1 6,2 2,6 8,4 6,1 -1,1 8,9 0,1 -1,8 8,3 6,0 9,B 1,2 9,1 7,3 6,6 -1,0 2,6 9,8 -1,7 -1,2 -1,9 3,B 2,0 7,2 0,8 1,2 -1,2 -1,5 5,B 1,7 -1,6 8,7 5,B 0,2 1,9 2,2 3,7 -1,0 9,3 5,8 5,B 2,2 2,B 8,C -1,6 6,7 8,3 -1,4 4,0 4,1 6,B 8,0 -1,0 4,8 0,C 6,9 9,9 -1,7 1,C 4,4 2,3 9,5 8,3 -1,2 4,3 1,C 6,4 0,B 9,7 9,8 -1,9 0,7 2,8 3,C 2,4 4,2 3,C 3,5 5,7 0,5 0,C -1,9 6,8 6,6 1,B -1,8 -1,6 7,9 3,B 6,7 -1,7 3,5 -1,8 5,0 1,C 3,0 9,6 -1,8 6,1 -1,3 -1,9 -1,1 6,2 6,0 9,2 1,1 5,4 6,4 3,5 5,0 7,6 3,8 7,B 0,9 2,1 -1,5 8,4 -1,9 2,B 0,6 8,C -1,7 5,7 2,7 -1,4 5,C 6,C 4,9 4,1 1,B 4,7 -1,5 9,C -1,2 1,1 -1,0 2,9 -1,2 -1,2 -1,9 1,3 -1,2 6,B 8,C 2,B 3,7 9,C -1,9 2,8 0,9 3,6 8,1 9,C 7,9 -1,4 5,6 9,2 2,9 3,7 1,B 8,C 9,2 6,3 -1,5 -1,0 0,0 7,1 8,3 5,5 2,9 9,B 5,9 9,C -1,3 4,9 9,B 6,8 0,C 7,4 9,9 1,4 4,5 1,9 8,2 -1,0 -1,4 9,3 7,0 6,2 5,3 -1,2 5,B 0,7 7,8 5,2 2,7 4,2 6,8 4,C 2,6 -1,9 8,0 0,2 0,6 1,4 1,4 -1,2 7,B 8,C 7,8 0,0 5,5 0,B 4,B -1,0 3,4 6,C 7,B 4,4 1,3 7,1 5,B 4,3 4,4 1,C 7,9 -1,6 6,C 7,3 6,8 3,5 6,C 2,0 1,C 9,B 5,4 7,0 5,9 7,8 4,0 0,2 1,1 8,4 3,0 0,8 -1,2 9,4 1,B 5,7 -1,7 -1,3 6,3 2,7 4,B 1,1 2,5 1,C 4,1 8,6 6,8 8,3 7,2 8,5 3,8 0,9 7,4 9,6 1,3 4,6 6,7 3,8 8,8 7,0 1,7 0,C 9,7 2,5 4,3 4,4 2,9 1,5 1,5 1,2 4,2 -1,0 8,1 7,6 2,0 7,0 5,0 -1,0 3,C -1,9 7,B 5,6 4,5 7,3 1,C -1,9 4,B 6,C 5,C 4,3 6,1 -1,8 7,4 0,6 7,0 1,1 5,5 9,4 8,5 6,2 9,B -1,1 -1,6 -1,6 5,1 2,C -1,0 8,4 1,1 5,0 -1,3 -1,2 8,B 7,1 -1,9 0,6 0,1 1,7 -1,1 -1,0 9,7 1,7 7,8 -1,1 -1,0 4,0 1,3 4,1 8,3 -1,8 2,8 -1,0 1,2 4,B 4,C -1,7 3,8 7,1 5,2 8,4 3,0 5,6 1,C 6,1 9,4 5,3 3,7 8,6 7,1 0,7 5,C 5,9 9,C 6,1 3,2 -1,6 8,1 5,7 4,B -1,3 8,C -1,5 3,C 7,5 1,5 -1,0 -1,8 9,3 4,8 -1,0 0,4 0,B -1,4 8,B 7,2 -1,7 -1,6 0,8 0,2 7,4 6,B 7,9 5,3 9,C 6,2 -1,8 7,C 8,7 5,2 6,6 2,5 7,1 0,4 8,3 7,1 7,7 4,4 -1,4 4,0 4,9 0,5 5,7 8,5 0,9 7,0 6,0 3,C 1,1 -1,7 -1,5 4,7 -1,6 -1,2 2,6 5,4 -1,2 -1,4 -1,8 3,9 -1,1 -1,4 9,3 1,0 -1,3 4,1 8,0 8,8 5,2 9,0 6,1 3,8 -1,0 3,6 4,0 -1,4 0,2 9,2 7,2 0,8 0,8 -1,5 0,9 9,C 7,1 3,2 -1,0 6,6 3,0 5,2 3,4 -1,4 6,3 9,5 8,6 -1,2 -1,2 8,0 6,0 3,5 -1,6 -1,8 9,3 3,2 -1,7 2,8 5,C 4,9 -1,9 8,7 5,7 4,3 3,B -1,2 -1,4 -1,5 6,6 0,C 1,7 -1,4 -1,5 4,B 8,2 5,1 8,B 2,7 -1,7 7,1 6,4 1,9 -1,7 7,8 6,5 0,C 9,B 5,2 0,6 -1,1 0,3 7,C 7,3 9,B 6,3 2,C 7,0 -1,8 4,1 9,0 7,6 5,7 3,8 2,6 7,C -1,8 7,7 -1,0 1,3 3,3 0,C 4,0 -1,6 4,9 2,C 2,3 3,4 -1,5 8,C 5,8 4,3 7,5 6,6 0,3 -1,8 5,C -1,7 3,7 5,1 2,3 6,6 2,B 8,C 1,2 1,8 8,9 -1,0 7,1 -1,5 -1,7 0,8 4,B 4,0 7,B -1,3 8,B 5,0 6,7 1,0 4,3 6,7 6,5 1,2 1,9 -1,7 1,C 3,1 7,6 8,6 5,1 7,C 3,5 4,B 4,9 0,4 -1,4 5,9 -1,0 9,C -1,9 3,9 -1,4 -1,2 2,3 8,6 4,0 -1,9 0,1 -1,0 9,C 6,6 -1,2 2,8 9,8 -1,0 3,3 3,1 -1,6 7,C 3,0 5,B 3,9 -1,8 4,0 7,7 -1,3 2,9 0,C 7,0 3,C 9,4 -1,1 -1,3 2,7 1,4 -1,8 -1,9 5,9 2,9 4,4 -1,0 0,0 5,7 2,B 8,2 9,C 1,9 9,C -1,9 5,7 -1,4 0,3 -1,8 -1,1 4,4 4,5 1,C 6,0 8,5 1,4 9,4 0,B 3,C 8,C 8,5 9,1 4,6 -1,8 -1,1 3,0 8,5 3,1 -1,9 6,9 -1,0 9,5 8,3 1,4 -1,8 0,B -1,9 7,4 -1,1 3,C 8,2 -1,5 1,B -1,0 0,C 7,5 -1,9 7,5 1,9 2,B 0,C 0,B -1,3 5,C -1,2 5,B 8,B 2,2 3,2 5,3 7,9 4,9 4,7 4,7 8,B 0,0 9,C 1,8 7,2 3,B 4,8 -1,7 -1,3 2,7 4,7 0,9 1,B 5,B 3,5 0,B 7,0 -1,9 5,9 -1,1 0,4 4,9 3,8 7,2 9,C 8,B -1,6 -1,8 7,B -1,9 9,1 6,5 5,B 0,4 -1,2 4,9 3,7 4,0 6,B 1,9 6,8 3,C 6,5 5,3 6,9 2,2 -1,6 -1,2 6,1 -1,9 2,8 6,4 3,C 8,5 7,5 2,4 4,3 1,0 0,4 1,B 4,4 3,6 4,5 8,5 -1,0 -1,7 -1,2 7,4 1,2 7,5 4,1 4,9 5,5 5,8 -1,0 4,C 9,8 3,B 1,7 -1,8 2,C 3,3 2,4 8,4 1,9 -1,0 3,0 4,6 -1,3 5,2 4,7 0,2 6,3 5,5 -1,2 2,3 -1,8 0,5 2,B 4,C 0,3 -1,0 7,5 9,C 8,8 1,6 3,1 6,9 3,2 -1,9 1,6 -1,1 3,0 -1,5 -1,6 5,8 2,C 8,2 8,8 4,5 2,9 9,9 3,C -1,2 7,C -1,8 1,C -1,1 8,4 8,C -1,5 -1,7 8,5 9,6 2,3 6,8 6,8 7,6 5,2 -1,0 8,B -1,2 9,7 8,6 -1,5 -1,8 6,B 9,B 0,9 7,8 9,8 1,2 7,0 0,4 7,1 3,1 3,B 0,0 2,6 -1,1 7,C 4,8 1,C 4,3 1,8 7,C -1,1 8,3 0,B 3,C 6,0 4,3 -1,6 8,B 2,5 -1,9 8,0 5,2 5,3 0,8 9,3 -1,4 7,7 -1,6 2,C 0,0 3,B 7,C 9,3 0,6 2,B 6,9 8,3 9,7 0,3 5,2 2,C -1,7 3,6 9,7 0,0 -1,1 0,1 7,7 4,8 3,7 8,B 0,9 5,3 3,1 4,2 1,C -1,6 6,1 -1,8 1,2 9,1 8,4 0,8 2,1 -1,8 4,6 3,8 1,1 5,9 5,C -1,6 3,3 4,9 3,2 -1,2 8,0 5,4 6,C 6,C 3,8 -1,0 -1,5 3,5 9,0 2,B 1,4 1,2 -1,3 9,C -1,7 4,7 8,4 -1,7 7,C 8,B 6,C 6,8 0,8 5,4 -1,0 5,3 9,B 0,0 7,2 6,B 9,3 1,7 2,0 9,2 1,6 5,9 9,1 3,7 4,B 0,B 2,7 9,4 0,4 9,9 1,2 4,3 6,C 4,0 -1,0 4,1 8,2 2,3 3,B 3,2 -1,1 1,9 9,6 2,B 8,C 1,4 6,0 8,B -1,0 -1,9 8,7 -1,3 8,B 6,0 5,3 4,0 -1,2 8,C 5,9 2,8 1,8 6,2 -1,4 -1,5 2,1 6,4 6,B 7,0 0,B 7,2 0,8 7,3 5,1 8,1 2,4 7,0 -1,9 -1,1 3,4 4,8 7,B 8,1 3,4 7,8 2,5 -1,0 3,B 9,4 -1,9 8,C 1,7 2,0 5,3 -1,6 7,3 9,4 2,C 1,B 1,8 6,6 0,5 9,B 5,5 7,3 1,B 7,6 7,6 7,6 0,8 4,3 9,B 2,5 -1,2 6,3 7,7 5,8 -1,8 6,C 2,3 8,C 4,1 5,3 6,C 3,3 4,9 1,9 9,7 -1,5 8,5 -1,8 1,5 1,C 4,0 -1,1 5,C 5,8 5,1 2,C 0,3 2,6 2,8 3,5 -1,9 3,0 7,1 -1,2 0,4 -1,9 -1,1 -1,6 0,9 0,6 -1,8 9,C 2,C 2,C 6,8 8,4 -1,9 -1,9 9,C 3,3 8,3 3,9 2,5 -1,5 9,0 -1,4 8,6 7,0 -1,0 3,9 -1,8 7,8 3,5 6,7 6,7 -1,6 8,B 6,2 9,8 -1,1 9,5 4,1 9,C 3,2 -1,1 1,2 1,2 3,6 8,5 3,8 5,1 3,B 8,5 1,0 7,7 7,2 -1,8 9,7 6,B -1,6 9,C 8,B -1,0 0,0 -1,6 5,3 5,2 -1,3 1,5 2,B 7,1 8,B 0,6 8,9 2,8 1,5 6,7 2,6 3,0 7,9 0,9 0,0 0,C 9,B 2,C 9,C 1,5 6,B 3,0 1,0 8,B 8,6 -1,0 6,B 5,0 2,B 6,5 9,3 7,C -1,7 8,1 1,6 8,3 3,6 8,6 -1,9 6,4 4,B 7,7 -1,8 0,B 6,B 1,1 2,2 3,4 2,7 7,C 3,6 8,B 9,6 6,6 1,2 7,9 4,6 1,5 2,B 4,4 0,2 0,C -1,1 6,C -1,7 -1,0 -1,7 0,5 0,B 8,8 -1,9 3,4 1,5 0,7 9,B 2,B -1,6 -1,3 -1,4 3,2 6,2 -1,0 7,C -1,9 0,C 9,B 4,3 9,0 9,0 2,2 1,6 0,2 0,3 -1,3 2,6 2,B -1,7 8,C 9,C 0,4 2,0 1,C 7,5 -1,0 1,B 1,B 8,4 3,9 8,B 8,5 1,3 4,3 4,7 3,3 0,5 3,1 5,B 3,6 1,1 6,4 4,9 3,7 0,B -1,4 8,9 1,2 2,1 2,1 3,8 4,B 3,4 -1,6 1,9 3,7 -1,7 8,5 8,5 9,5 6,1 2,6 -1,5 4,C 4,5 7,8 6,0 1,C 1,1 -1,5 -1,8 0,7 8,0 -1,4 6,C 8,3 -1,4 2,5 -1,7 2,3 8,1 9,B 5,0 8,6 2,B 4,6 0,8 9,3 2,0 8,C -1,8 -1,3 9,5 -1,1 -1,1 -1,9 8,1 -1,0 8,0 4,9 6,5 -1,8 3,5 7,7 -1,4 9,7 -1,3 -1,5 0,1 4,5 -1,0 0,C 7,3 0,7 1,1 6,9 8,8 8,0 6,7 0,4 0,B 1,6 1,6 1,C 1,C -1,4 4,5 3,8 4,C 8,8 -1,3 1,4 8,9 2,0 4,C 8,5 -1,4 9,6 7,3 -1,6 8,B 0,B 9,5 6,B -1,6 2,0 9,0 9,4 1,C 4,6 1,6 9,0 3,0 9,4 8,1 2,B 0,B -1,2 1,8 3,3 0,2 -1,2 -1,7 5,6 -1,5 8,2 5,4 5,7 0,3 4,B -1,4 3,B -1,8 -1,0 -1,4 7,2 3,4 0,8 3,5 7,C 9,3 2,C 1,3 3,9 -1,7 8,7 9,5 0,7 8,0 5,C -1,1 5,B 2,C 5,9 0,2 9,9 3,1 9,B 7,1 0,0 8,6 1,C 9,3 -1,8 3,B -1,8 3,9 2,3 0,0 9,4 7,4 2,B 3,3 2,3 7,3 8,C 2,C 4,5 2,5 2,C 3,6 4,4 4,7 8,C -1,3 1,4 5,B -1,9 7,B -1,1 1,9 -1,6 1,0 5,6 -1,6 9,C 1,0 2,8 8,6 3,9 3,1 7,B 0,7 5,3 0,8 7,2 -1,2 4,9 -1,3 9,8 3,4 7,3 9,6 2,B 2,4 6,1 9,1 8,1 0,8 2,9 5,8 4,2 3,7 5,9 0,9 7,7 9,1 4,C 0,2 9,1 9,8 7,C 1,B 9,9 8,1 6,1 0,4 5,7 7,4 -1,8 -1,2 5,7 -1,0 8,7 4,1 6,B 5,B 5,5 4,3 6,6 8,8 7,C 0,9 2,4 5,0 9,C 8,2 4,3 2,8 1,7 -1,9 -1,8 5,B 0,8 -1,1 9,3 -1,1 -1,7 9,2 6,9 5,6 -1,5 2,3 7,B -1,1 4,B 2,7 -1,1 5,6 1,B 1,1 2,C 7,7 2,0 1,C 4,7 9,0 1,B 7,3 3,B 3,C 0,3 0,C 2,9 0,2 1,0 5,2 7,6 -1,4 -1,1 3,8 3,1 5,0 5,1 -1,6 0,4 4,0 0,2 -1,6 3,1 3,C -1,5 -1,3 0,C -1,8 6,B -1,3 2,C 8,8 9,C 4,5 1,C 1,B 6,6 -1,5 4,4 9,5 2,4 5,1 -1,4 -1,6 5,2 2,8 7,B 5,7 -1,8 3,B 9,C 2,B -1,2 2,5 7,B 6,4 4,0 1,0 5,5 4,B 4,B 0,9 7,4 6,3 1,7 5,8 -1,1 2,9 1,5 8,4 2,9 3,B -1,9 8,1 6,4 9,7 7,7 -1,8 -1,3 1,7 3,6 3,7 8,7 4,B 2,5 3,0 9,8 -1,8 0,1 6,0 9,2 6,0 7,9 8,6 -1,5 6,3 -1,0 6,C 5,4 6,5 -1,8 9,C -1,9 3,1 7,5 6,6 4,7 5,B 9,B -1,1 5,3 -1,8 -1,0 -1,1 4,7 9,0 -1,0 2,4 9,C 6,C 3,2 8,6 2,6 6,8 2,C -1,6 -1,2 -1,4 9,3 -1,2 3,4 2,7 3,6 2,9 1,5 1,5 7,2 1,8 -1,4 8,1 -1,5 5,7 9,B -1,5 1,C 1,6 5,C 0,9 3,2 4,5 4,9 9,0 -1,9 3,4 -1,0 -1,9 4,8 9,4 3,6 1,8 9,9 0,C 6,5 -1,2 4,2 1,4 4,3 9,0 -1,0 1,C 1,6 5,3 3,3 -1,2 2,7 1,4 7,B -1,9 1,B 6,9 0,4 7,3 -1,7 1,8 0,4 -1,6 0,B 8,2 0,9 -1,8 -1,4 2,3 8,B 9,8 2,2 1,6 9,5 8,B 7,7 9,0 2,C 0,3 -1,1 6,6 1,7 8,6 5,6 4,9 1,2 1,6 -1,4 6,B -1,2 5,6 4,2 7,8 -1,7 1,9 7,7 -1,2 9,2 6,9 2,3 8,1 -1,1 7,3 2,7 4,4 7,C 9,8 -1,1 1,4 8,3 6,6 9,B 2,0 6,6 9,1 2,2 -1,2 8,4 9,C -1,1 -1,4 -1,8 -1,5 3,B 2,9 4,C -1,2 8,5 0,5 8,9 0,8 9,7 9,C 9,7 1,8 1,B 2,6 6,5 3,B 2,C 8,7 8,0 0,4 5,0 8,1 -1,1 3,8 8,4 -1,5 -1,4 -1,5 0,8 1,C -1,0 5,B 0,9 7,6 1,C 9,3 2,C 3,3 8,5 0,9 3,1 1,2 8,B 2,3 4,3 0,3 -1,5 -1,4 3,7 3,C 4,C 5,8 5,8 5,9 9,5 5,C 5,1 -1,0 -1,4 -1,9 -1,8 2,B 5,1 0,C 1,C 5,3 3,6 9,C 3,6 4,0 9,6 -1,7 6,C 0,3 5,C -1,6 -1,2 6,9 2,5 -1,4 9,3 5,C 8,0 2,6 6,1 6,C -1,3 9,B 1,1 -1,7 2,1 9,8 4,7 2,B 2,7 4,0 5,B 7,2 7,7 6,2 -1,0 9,C 8,2 1,6 8,C 7,7 0,C 9,2 2,7 -1,3 5,C 9,1 1,C 0,2 -1,1 -1,1 3,3 6,3 7,9 9,0 0,1 3,5 4,8 9,1 8,6 -1,2 9,4 8,6 7,9 0,6 9,C 0,5 -1,7 2,0 -1,4 9,6 1,0 3,C 3,9 3,7 -1,9 4,2 1,7 -1,5 2,1 0,1 6,0 0,5 2,2 6,1 3,B 0,B 3,2 9,0 3,5 7,B 6,B 8,B -1,6 2,6 3,5 0,4 9,0 -1,0 7,B 9,7 -1,9 9,C 7,4 -1,6 5,B 8,4 -1,4 5,B 1,0 4,5 -1,1 3,3 5,1 7,9 9,0 -1,5 -1,1 -1,1 4,4 5,9 7,C 0,2 3,B 5,3 3,B 4,C 5,9 2,9 0,9 2,5 3,8 8,7 9,1 6,5 7,4 8,9 -1,7 2,9 -1,9 -1,1 8,B 2,4 1,4 4,7 9,B 9,B -1,6 2,7 7,B 7,C -1,4 5,0 4,C 2,B 1,9 -1,7 8,B 1,3 -1,2 2,5 3,6 7,C 3,8 4,C 6,B 7,B 1,C 7,8 5,C 9,9 -1,5 5,3 1,3 -1,2 0,6 0,C 3,7 2,B 5,C -1,5 2,B 5,3 0,B 1,7 6,8 9,0 7,1 -1,9 3,2 0,3 6,2 7,7 2,C 6,0 9,C 6,0 -1,4 6,2 3,B -1,5 7,7 1,4 3,C -1,4 7,B 9,3 -1,7 3,9 2,B 8,4 6,8 8,9 0,3 5,B 6,1 9,3 0,C 7,7 2,0 -1,7 4,B 3,9 7,2 5,9 6,1 -1,2 0,6 2,5 3,7 2,4 -1,6 4,6 3,7 9,B 2,5 8,1 1,C 8,6 6,8 -1,8 6,9 9,3 4,0 7,2 8,5 8,6 6,5 9,B 0,C 1,B 6,8 8,7 4,9 1,B 6,1 1,B 2,9 9,1 4,2 6,B -1,9 7,C 8,7 2,5 6,B 0,6 7,3 -1,5 3,C 1,3 4,0 0,B -1,6 4,3 6,6 4,5 5,8 7,5 0,1 5,1 5,B 9,0 6,C 4,0 7,0 0,8 2,1 -1,9 2,8 7,4 -1,3 8,6 0,0 -1,3 9,7 0,9 7,7 6,C 6,3 7,6 2,9 9,C 6,C 5,0 7,2 8,9 -1,7 0,3 8,3 1,4 9,7 2,5 5,B 9,2 -1,3 -1,7 3,2 9,6 8,7 -1,6 2,6 8,9 8,2 3,3 -1,0 6,5 -1,7 0,0 7,B 3,B 3,5 4,1 6,7 9,C 7,B 4,C 6,0 8,6 -1,7 4,1 -1,2 3,1 2,C -1,1 8,3 -1,5 8,C 7,C 8,0 8,C 4,6 8,B 7,0 -1,7 2,8 -1,3 -1,6 5,3 4,B 6,9 -1,5 9,0 5,4 9,9 7,8 5,6 8,C 1,B 5,3 8,6 2,B 8,8 6,C 9,8 4,1 2,6 0,8 1,5 6,5 -1,0 -1,2 0,0 6,2 -1,4 0,8 5,1 2,9 -1,7 8,B -1,3 7,3 -1,1 9,4 -1,3 8,B 9,5 -1,6 8,C 7,9 1,9 5,3 9,B 0,0 7,7 9,3 4,5 1,7 0,4 2,B -1,8 2,0 9,3 4,1 3,B 0,B -1,9 0,6 6,B 3,0 -1,9 -1,0 2,2 8,C 0,0 6,1 6,5 0,1 3,6 -1,5 -1,1 8,C -1,9 6,C 7,5 4,C 8,C 9,C 5,2 4,2 3,3 -1,5 1,0 -1,7 1,5 4,1 -1,4 1,6 7,9 3,9 -1,4 4,1 6,6 8,3 -1,5 8,1 9,8 3,B 6,B 5,B 8,C 5,3 7,C 6,3 5,C 4,C 1,9 8,8 4,5 0,5 9,2 2,9 4,5 6,C -1,1 8,C 7,B 6,B 0,6 -1,8 5,0 9,9 -1,3 1,7 -1,3 3,8 -1,6 -1,1 -1,7 9,B 3,C -1,9 1,C 4,4 2,3 4,5 -1,3 8,C 5,0 7,6 2,B 6,3 0,7 6,1 9,5 2,2 5,9 9,0 -1,1 3,2 1,2 7,9 -1,0 4,8 1,2 0,B 6,6 9,6 6,4 1,5 8,C 3,1 1,0 -1,7 6,2 9,3 4,9 9,2 9,2 0,1 3,4 4,5 2,C 0,6 6,5 -1,8 8,B 6,2 5,1 2,9 9,3 7,C -1,5 9,0 7,6 5,5 2,2 -1,7 0,0 5,C 0,6 2,7 4,3 7,C 1,9 0,3 0,3 1,2 -1,3 0,8 -1,7 -1,0 7,4 5,1 2,4 0,1 7,6 5,6 -1,2 6,B 8,0 3,C -1,4 7,3 5,2 7,1 0,1 8,B -1,8 7,1 0,9 0,3 8,4 7,C 1,1 -1,9 3,5 3,3 0,9 5,0 1,5 5,B 5,2 3,B 1,3 -1,7 2,3 7,4 -1,4 9,4 8,6 8,6 8,B 1,4 5,4 5,B 6,6 -1,7 5,9 -1,5 5,1 3,2 4,C 8,1 -1,0 -1,5 6,9 7,1 3,3 -1,4 6,0 1,1 7,1 6,B 0,4 8,0 7,0 -1,4 1,C 1,9 7,8 8,C 1,3 -1,2 3,2 0,C 9,4 0,C 8,1 7,5 2,3 3,4 4,0 2,1 5,B 3,8 2,C 0,B 0,C 8,B -1,0 2,9 7,B 9,4 4,3 9,1 9,B 4,B 5,C 7,C -1,9 6,C 3,3 6,3 2,4 0,2 2,7 4,5 6,0 6,5 8,4 0,7 3,9 4,9 9,3 8,1 2,5 7,7 5,5 6,4 1,8 9,6 6,7 0,0 1,5 8,C -1,4 3,7 2,B 4,2 6,1 7,7 0,0 0,4 -1,8 6,8 4,8 8,4 3,C 7,B 3,7 9,3 2,7 9,3 6,5 0,2 -1,8 6,3 -1,7 -1,0 -1,8 8,4 2,9 6,2 1,0 9,B -1,2 5,C 6,4 8,9 1,1 -1,6 3,0 9,6 9,2 6,5 -1,1 4,C -1,6 2,9 9,5 5,5 -1,4 -1,9 1,7 1,B 3,0 7,8 8,7 8,4 7,7 7,6 -1,1 -1,8 8,B 3,B 4,6 8,8 -1,9 0,C 2,2 -1,8 3,C -1,1 3,0 3,0 6,C 8,B 6,3 3,C 9,4 2,6 6,8 9,C 8,0 -1,7 -1,6 1,7 7,5 8,C 5,9 -1,5 5,B 9,8 9,B 2,2 6,7 7,2 2,C -1,7 -1,1 3,8 -1,9 -1,4 7,C 7,0 0,2 -1,3 8,5 5,1 -1,6 -1,1 4,8 -1,2 -1,0 8,3 2,B 0,C 8,8 2,2 9,0 7,4 6,0 1,8 4,C 4,B 7,7 7,B 9,B 6,1 6,B 0,1 3,B 3,8 4,1 7,7 9,0 5,C 3,6 -1,8 0,6 2,B 1,3 7,1 0,C 5,5 0,0 3,5 -1,5 -1,6 -1,6 6,6 0,2 7,0 1,1 -1,5 1,2 9,B 4,B 2,1 7,4 0,1 2,C 4,3 5,7 9,B 5,B 8,3 0,4 2,4 1,C 7,2 5,7 -1,0 2,C 5,0 8,5 8,4 8,B 9,B -1,7 1,C 7,5 1,3 4,C 9,0 5,2 6,B 7,0 5,1 7,B 3,0 1,C -1,4 9,C -1,4 7,B 3,C 2,4 1,6 9,2 8,8 6,C -1,1 5,3 -1,1 2,5 7,5 -1,7 3,C 7,C 3,9 6,9 5,6 0,3 -1,3 8,1 7,0 0,C 0,0 4,9 8,7 4,0 3,5 2,0 3,2 -1,0 8,9 5,3 0,2 -1,1 9,1 7,7 3,9 2,0 -1,4 2,4 -1,5 9,6 2,7 -1,3 2,9 -1,6 1,1 9,9 -1,6 -1,2 1,B 7,8 -1,7 5,9 3,1 1,2 -1,5 7,B 1,7 6,8 8,C -1,7 2,4 -1,6 -1,5 6,1 3,B 0,1 2,5 1,8 4,4 0,B 7,2 2,B -1,0 0,C 6,5 2,8 8,2 -1,6 9,B 5,C -1,5 3,B -1,9 6,4 6,B 0,4 6,7 4,C 5,7 6,C -1,6 2,3 -1,2 0,6 -1,2 -1,8 7,4 5,1 -1,1 -1,1 8,1 1,5 1,0 6,3 7,6 1,0 4,5 2,C 6,B -1,9 -1,9 5,1 1,8 6,9 3,C 0,C 5,7 2,8 8,2 3,2 -1,4 0,C 9,C 1,7 9,3 8,4 -1,7 0,7 8,1 3,8 -1,2 3,1 4,3 0,2 6,C 6,7 3,B -1,7 6,C 1,7 -1,5 -1,2 -1,1 9,3 8,4 8,C 9,7 3,B 6,C 4,8 6,C 9,0 6,C -1,6 6,3 7,5 3,5 3,9 -1,3 -1,8 5,7 4,0 -1,7 2,0 4,1 3,5 9,6 -1,3 5,2 -1,4 0,1 5,0 1,3 5,2 -1,6 7,3 0,1 -1,4 4,C 1,3 -1,9 7,B 3,8 2,0 5,C 4,7 1,8 2,3 -1,0 8,8 0,C -1,9 -1,5 2,C 6,B 4,C 7,0 -1,2 2,6 -1,7 1,6 9,9 -1,2 4,7 -1,8 9,2 6,3 0,9 6,2 -1,4 1,2 0,0 3,B 3,9 4,8 6,6 9,B -1,5 -1,6 -1,3 -1,9 3,4 3,2 9,6 0,0 -1,3 -1,0 1,B 7,1 5,6 7,0 3,4 8,3 -1,3 1,C -1,7 -1,6 3,B 4,B 0,C 0,B 0,B 2,C 4,B -1,9 5,7 -1,2 -1,7 1,6 1,8 8,3 -1,2 8,B 2,3 -1,6 1,B 7,1 -1,7 4,6 0,3 5,3 3,C -1,5 1,3 -1,5 6,B 9,6 3,9 4,3 6,B 6,0 -1,1 1,C 1,2 3,7 6,C 7,4 7,2 9,9 9,C -1,0 5,7 -1,9 1,9 7,0 7,5 -1,6 9,C 0,4 8,5 -1,0 -1,6 -1,7 4,6 6,0 -1,7 6,C 2,9 1,7 6,4 3,9 7,8 -1,8 1,C 8,4 -1,6 -1,5 3,C 5,8 7,C 5,C 8,4 8,B -1,7 5,5 0,9 0,8 0,5 9,5 9,3 0,B 3,9 7,2 9,7 1,6 -1,5 4,7 6,3 1,C 1,7 -1,8 1,5 3,8 7,7 3,0 6,4 4,3 4,8 -1,5 -1,9 8,1 6,5 4,2 9,9 5,7 1,0 -1,3 -1,4 3,1 -1,4 -1,9 9,B 1,8 0,8 3,C 4,9 3,5 4,B 9,7 3,2 8,B 6,6 -1,2 0,7 5,0 0,2 8,5 5,2 8,6 -1,7 -1,8 2,9 0,2 2,3 3,C -1,9 5,3 -1,6 1,3 5,C -1,9 -1,4 6,0 1,B 4,8 1,2 3,5 7,B 9,9 1,4 -1,4 8,8 7,7 1,4 4,4 3,4 0,C 3,1 4,7 5,5 -1,1 1,7 1,2 0,5 7,2 7,1 5,5 7,7 2,7 8,7 0,0 4,4 9,B 1,7 -1,7 7,7 0,7 7,C 6,C 4,C 5,1 9,3 8,2 8,B 8,0 7,C 8,1 6,B -1,5 8,0 -1,9 3,9 3,8 7,C -1,9 0,1 5,1 6,0 5,7 9,2 8,4 2,C -1,8 1,C 2,1 7,8 -1,0 5,7 0,6 9,4 7,9 3,6 2,C 0,7 7,B 8,0 3,0 7,6 -1,8 -1,9 2,C 0,2 0,6 -1,7 1,5 8,7 4,6 6,6 9,1 1,3 -1,0 2,8 -1,6 8,9 1,7 1,0 -1,1 8,0 0,2 7,5 0,2 2,2 5,8 -1,1 9,C -1,8 2,5 4,2 -1,6 8,C 4,8 2,9 2,8 7,5 7,8 -1,3 3,5 2,5 5,C 3,B 9,7 0,6 -1,3 -1,4 3,0 1,2 -1,3 8,4 -1,9 5,2 -1,6 9,1 1,5 6,C 2,7 9,1 5,8 5,5 6,B -1,9 2,1 -1,9 0,B 1,0 5,6 0,B 5,6 2,B 0,5 9,C -1,9 0,4 4,8 3,8 -1,9 9,4 -1,2 5,B -1,0 8,C -1,2 7,3 1,B 5,8 1,1 7,1 7,8 5,3 8,2 8,7 2,3 5,C 7,9 1,5 8,8 2,2 8,2 -1,1 -1,0 -1,4 9,9 5,9 -1,8 9,2 7,8 -1,9 5,B -1,2 -1,0 3,3 5,4 -1,0 4,6 2,3 4,C 1,7 -1,6 -1,2 0,4 7,2 6,8 -1,4 0,B 2,0 -1,8 2,8 2,B 4,7 8,B 1,B 8,B 1,C -1,8 8,3 4,5 1,5 7,6 6,9 7,1 9,C 5,B 8,B 3,6 6,5 -1,5 5,B 1,9 7,7 9,B -1,6 9,7 3,4 6,7 4,8 0,C 9,C 0,B 1,C 4,B 3,B 5,6 4,7 -1,9 -1,7 7,8 2,9 3,2 5,0 5,1 3,4 5,3 -1,3 -1,8 -1,6 7,C 7,2 0,1 -1,9 8,C 6,5 4,8 -1,1 7,5 0,B 5,B 4,2 7,C 7,4 7,C 6,6 -1,4 -1,3 3,1 -1,6 0,2 7,5 0,1 8,9 4,2 5,7 9,4 9,B 2,8 -1,6 7,1 5,4 5,1 1,6 8,B 7,3 0,1 2,B -1,6 -1,3 -1,4 9,8 9,9 0,7 3,0 7,4 0,1 9,C 0,B 1,2 0,9 8,0 7,B 7,8 8,B 6,7 8,9 -1,9 7,0 3,B -1,9 6,4 6,4 -1,4 6,3 4,B 6,6 2,8 -1,1 5,0 9,B -1,5 5,2 -1,3 -1,9 7,6 8,4 1,5 -1,6 5,C 9,B 1,C -1,5 2,4 7,C 9,4 7,3 5,8 5,C 1,C -1,2 -1,0 4,4 0,8 7,0 6,7 4,7 -1,4 6,7 2,C 4,5 -1,3 -1,3 5,9 1,6 5,1 -1,5 1,0 9,3 1,C 0,0 5,C -1,3 6,3 -1,7 4,8 5,6 5,4 9,8 1,6 0,9 -1,8 -1,1 -1,2 -1,2 3,3 -1,5 5,C 7,8 4,6 8,C 1,B -1,2 -1,6 -1,9 -1,2 7,7 3,6 -1,7 -1,9 2,5 7,4 0,1 5,1 9,C 3,C 4,B 6,B 4,7 -1,4 0,2 -1,3 9,C -1,2 0,4 5,B 8,4 2,3 9,6 0,6 2,4 2,C 9,B 4,B 9,5 -1,1 3,C 1,8 -1,2 -1,4 3,B 4,B 7,B 4,4 4,5 7,3 7,5 9,2 8,1 -1,3 1,2 7,C 1,0 8,5 -1,0 4,C -1,7 7,2 -1,3 5,C -1,0 3,C 0,1 3,0 -1,3 9,1 -1,1 6,2 1,1 -1,9 0,1 -1,9 4,8 2,1 -1,3 8,B 9,6 1,2 -1,1 1,C 0,3 2,3 -1,0 4,0 8,C 5,B 8,8 -1,1 2,0 8,B 2,C 7,1 9,B -1,8 6,9 -1,6 -1,5 5,7 4,0 8,7 0,5 -1,8 -1,3 6,6 2,5 6,6 0,6 7,4 -1,0 4,C 0,9 2,B 5,B 7,C -1,5 8,5 3,9 4,0 -1,9 1,C 4,C -1,8 9,3 4,8 2,C 2,B -1,8 4,8 5,9 -1,3 9,1 7,2 6,7 -1,3 -1,3 3,B 9,C 0,7 -1,0 4,3 9,3 3,C -1,3 1,9 1,4 8,C 2,4 1,3 2,9 -1,3 6,C 4,2 -1,2 6,6 4,8 7,B -1,3 8,3 3,1 2,B 1,6 7,5 0,C 3,8 -1,5 3,B -1,8 7,9 5,0 -1,1 7,3 7,B 7,C -1,2 7,B 1,4 9,B 0,4 -1,0 -1,1 8,2 8,0 7,B 0,8 -1,0 9,3 1,8 -1,3 1,7 7,C 4,9 5,0 9,8 4,4 7,3 -1,9 -1,2 9,4 1,8 -1,7 3,C 8,5 5,0 4,C 5,4 4,7 9,6 -1,1 2,C 0,C -1,4 2,1 3,5 -1,0 9,B 2,8 2,8 8,8 3,7 -1,1 6,0 7,C 4,1 4,B -1,6 -1,9 8,7 -1,5 3,7 6,1 3,9 3,0 7,6 7,4 3,9 2,6 5,7 6,1 -1,4 5,2 -1,8 -1,6 0,6 8,8 8,0 3,8 6,5 5,9 8,B -1,6 0,3 2,C 6,0 3,6 2,3 3,1 2,0 7,0 -1,8 6,B 3,B 2,4 3,7 7,1 2,2 1,0 4,2 8,2 9,8 -1,8 9,C 7,C 7,1 9,B 5,B 6,7 9,2 4,1 3,6 6,B -1,9 3,2 -1,0 0,C 7,B 2,1 7,C -1,6 8,C 7,3 0,3 -1,4 4,C 5,2 8,C 6,7 5,4 4,3 7,7 0,B 9,B 5,7 8,0 -1,7 9,9 5,5 9,C 6,3 2,5 1,C -1,9 1,B 4,0 2,3 9,7 3,B 5,0 9,5 -1,3 0,6 9,C 8,5 1,7 -1,9 -1,5 -1,6 1,5 8,B 7,1 3,7 7,1 4,3 8,B 2,B 9,5 3,2 9,3 6,6 9,B -1,0 1,4 2,B 9,1 0,8 -1,2 5,B 0,6 9,1 -1,5 9,8 8,5 4,0 -1,5 6,B 9,6 -1,4 1,4 0,6 -1,0 7,B 8,0 -1,2 4,8 2,7 8,B 0,C 1,0 -1,0 3,3 -1,3 9,1 9,3 6,4 -1,5 0,C -1,0 -1,3 0,B -1,2 9,5 6,0 5,2 -1,5 8,7 -1,3 -1,4 4,5 -1,7 0,7 -1,0 7,0 1,7 6,3 6,8 -1,4 6,4 6,5 0,5 -1,8 1,6 3,6 5,4 0,7 5,4 6,9 2,8 0,7 2,9 4,2 7,7 -1,4 -1,9 0,9 -1,9 1,6 1,B 6,7 -1,3 3,7 0,1 4,6 -1,9 -1,8 3,9 -1,1 7,1 6,0 6,8 0,2 8,1 1,9 0,C 0,1 -1,7 4,3 5,6 2,2 9,1 -1,0 1,B 2,5 5,9 9,4 0,0 9,C 8,B 7,B -1,9 8,6 5,8 1,1 5,B 0,2 6,C 8,6 7,3 -1,1 3,3 8,C 6,4 1,0 -1,8 1,7 8,4 5,1 1,9 -1,9 6,1 8,4 9,4 5,0 4,6 7,2 8,2 6,3 3,7 -1,6 8,C 0,8 3,C 3,6 7,9 -1,9 -1,8 5,B -1,2 0,B 8,4 3,6 -1,9 3,3 8,3 9,B 7,0 8,B 6,C 1,7 -1,8 0,C -1,8 -1,3 5,6 3,B 2,2 5,7 -1,1 2,4 6,6 1,C 5,0 4,7 7,2 5,6 1,3 6,B 4,C 9,5 7,2 3,C 0,7 -1,5 -1,3 3,3 7,8 1,B 1,8 1,B 4,8 7,1 -1,8 1,0 -1,0 5,2 3,B -1,1 9,3 4,5 -1,4 -1,9 -1,2 4,7 2,5 4,C 5,9 -1,7 -1,0 6,8 5,1 7,B 2,B 0,6 1,C 9,C 3,2 9,5 6,0 0,1 8,3 8,8 7,6 9,8 9,B 2,9 2,5 2,3 2,C 5,3 7,9 -1,7 6,8 0,B 1,B 2,4 4,4 4,7 1,4 6,7 7,B 3,C 3,B 1,B 0,1 0,7 6,2 0,1 2,B 3,B -1,2 -1,8 -1,2 2,4 1,C 5,3 -1,1 9,3 -1,1 0,9 6,6 6,4 9,B -1,7 3,7 3,0 7,1 3,0 7,0 1,6 0,8 0,8 1,3 9,4 7,0 4,5 0,7 5,C 7,1 7,C 2,B 2,9 -1,8 3,4 -1,2 2,C 1,6 4,C 0,6 0,7 4,4 -1,1 1,4 5,6 0,B 9,0 -1,4 7,5 0,B 4,B 4,C 1,B 9,4 3,C -1,7 9,5 5,4 7,9 9,3 3,4 5,0 -1,0 9,5 9,C 1,B 6,4 -1,6 7,1 9,2 -1,8 6,C 9,8 8,C 5,4 2,C -1,8 5,3 7,B -1,4 2,1 8,9 -1,1 8,5 2,C 3,8 1,6 4,9 2,0 8,C 0,6 6,7 6,4 3,C 0,4 6,2 5,2 7,6 8,2 0,0 4,3 8,2 6,6 5,9 -1,7 8,6 6,5 7,B 4,7 5,8 1,0 4,C 6,2 8,C 4,0 6,C 1,0 5,2 0,B 0,2 3,5 7,9 2,1 8,C 6,B 0,5 2,6 0,4 8,9 -1,3 -1,1 -1,2 7,7 3,9 6,1 6,B -1,8 6,7 3,B 4,B 8,2 9,4 -1,4 -1,0 7,0 2,4 9,4 7,4 -1,6 7,8 4,3 9,1 -1,5 1,4 -1,1 1,4 7,7 2,1 -1,7 1,9 2,1 9,1 1,9 -1,4 -1,8 1,1 4,3 2,8 -1,8 4,7 2,C 2,3 6,9 3,8 4,3 -1,5 5,C 0,9 -1,8 8,C 5,7 4,5 5,5 9,C 6,5 4,1 6,B 8,C -1,2 5,2 -1,2 -1,1 -1,3 2,6 4,C 7,0 2,1 -1,9 9,B 3,8 7,B -1,3 3,0 4,2 4,2 7,C 8,C 2,C 3,7 2,3 6,0 9,8 8,8 0,6 1,C 9,B 7,8 7,C 2,8 6,4 8,C 2,4 6,B 2,B 0,3 5,1 7,8 4,5 4,2 9,2 1,4 4,7 1,5 8,1 2,7 8,7 0,6 -1,7 7,8 8,B 5,4 5,C -1,9 2,5 2,2 8,2 8,1 2,9 2,1 7,B 7,C 0,2 7,2 5,8 9,5 3,2 2,5 6,2 5,B 5,6 1,3 8,1 -1,8 8,9 -1,1 2,8 8,6 8,B -1,1 0,C 1,C 5,3 4,1 -1,3 5,3 7,B 6,6 0,0 -1,9 3,1 1,C 4,2 9,C -1,9 7,0 -1,5 0,2 0,C -1,0 9,3 0,7 3,4 6,0 7,B 9,B 6,7 9,5 0,4 2,B 6,6 -1,3 2,2 0,7 -1,9 4,6 5,6 2,2 9,9 5,6 5,3 6,8 0,4 -1,5 9,3 -1,7 3,6 -1,7 -1,9 2,2 0,2 -1,7 0,7 8,5 -1,0 9,5 6,C 3,B 4,2 1,2 1,5 4,3 0,0 9,B -1,6 8,5 2,C 5,4 -1,8 3,5 9,5 2,B 7,0 -1,7 7,4 4,9 7,7 -1,2 5,6 3,2 8,8 1,9 0,3 7,8 6,3 1,3 8,4 3,5 4,4 -1,8 8,9 8,9 4,2 4,1 4,9 -1,8 8,B -1,2 4,B -1,1 0,0 3,4 6,0 1,3 9,B -1,5 1,7 4,5 4,C 5,5 3,5 9,C 1,4 5,C 2,B 6,6 1,C 8,B 7,5 -1,5 5,7 1,0 0,9 3,2 8,B 2,4 8,1 2,7 0,9 9,1 5,2 -1,1 8,0 3,B 4,2 5,B 9,B 1,8 3,0 4,C 3,2 8,9 9,5 1,9 2,8 8,5 0,5 -1,7 2,C -1,7 0,B 0,3 1,8 5,9 7,C -1,0 0,C 3,8 -1,1 4,C 7,C 6,7 1,9 7,3 -1,0 -1,5 1,C -1,2 7,1 6,8 7,4 -1,6 9,8 9,4 4,C 1,3 3,0 0,B -1,7 5,3 8,8 -1,6 0,5 3,C -1,1 6,9 0,9 9,7 6,6 2,C 4,5 3,8 8,6 5,B -1,4 5,2 4,7 2,B 3,3 1,8 0,5 9,8 2,9 1,5 1,0 7,B 4,6 -1,6 -1,2 8,5 5,C 0,7 -1,9 3,4 3,B -1,9 6,7 -1,5 -1,8 5,6 -1,0 6,4 1,4 9,9 -1,6 1,1 9,1 5,B 0,5 3,B -1,2 -1,9 2,7 0,C 9,B 7,9 4,5 -1,2 6,C 5,4 -1,9 9,6 7,9 9,C 0,6 2,2 4,5 1,6 0,0 3,5 6,2 5,8 -1,9 8,7 1,B 3,0 0,1 -1,1 1,8 2,C 0,2 -1,2 2,5 1,B -1,8 8,1 -1,9 0,2 -1,7 2,2 5,6 5,7 9,7 5,1 3,C 2,0 -1,6 1,2 0,6 2,2 7,3 -1,4 5,1 0,3 -1,4 8,5 3,9 1,6 -1,1 3,2 6,B 2,C 6,0 8,6 -1,3 9,4 -1,8 2,7 2,1 3,2 5,7 -1,0 -1,5 1,0 -1,6 3,8 3,0 7,C 6,5 8,B 1,C 0,7 9,5 8,0 8,2 5,5 3,5 -1,9 6,7 6,B 4,7 7,9 -1,5 -1,0 5,2 -1,8 9,5 9,B 1,C 3,4 2,4 2,B 0,2 -1,4 -1,3 5,C 7,2 8,6 3,7 8,8 -1,0 -1,1 -1,3 4,1 3,4 1,1 5,1 8,7 2,8 5,5 6,6 8,0 -1,3 7,4 9,B 4,6 3,3 4,4 6,6 -1,3 2,B -1,9 7,3 3,9 2,B 9,8 9,5 -1,3 6,9 5,6 1,8 5,C 5,B 3,7 7,4 5,5 9,1 8,B 9,2 -1,4 5,5 5,2 2,B -1,6 9,4 0,B 5,B 6,1 0,4 0,9 9,0 -1,4 3,4 5,9 1,C 3,B 6,5 4,3 8,C 6,7 8,4 5,9 7,6 9,9 -1,3 1,0 2,5 4,B 1,2 4,B 2,9 0,3 5,B 2,B 2,9 -1,1 4,C -1,0 -1,0 7,B 7,0 2,0 -1,2 1,C -1,5 8,B 1,4 -1,4 9,9 -1,2 3,B 7,2 4,B 3,6 -1,1 5,5 7,4 3,7 1,9 9,3 0,8 8,5 2,0 6,4 7,5 9,C 2,9 3,5 8,5 4,C 1,5 -1,5 1,2 6,3 7,3 9,0 2,8 -1,2 -1,2 9,4 2,2 2,2 0,1 1,C 2,5 5,8 5,4 -1,8 3,C 4,4 -1,0 9,3 9,3 8,B 9,B 0,7 3,B 7,C 5,3 8,9 1,B 8,5 0,B 7,0 1,0 3,1 6,8 2,6 -1,8 -1,2 1,8 5,3 -1,5 1,C 5,C 5,6 -1,3 8,2 2,0 -1,7 8,4 6,B 2,2 7,9 4,5 6,6 -1,6 -1,5 8,3 -1,0 0,C 7,9 6,0 8,2 1,6 5,7 2,3 3,2 -1,7 0,4 1,C -1,0 6,6 2,C 1,7 0,5 -1,8 4,6 3,0 -1,7 9,B -1,5 9,9 5,5 9,7 5,B 3,1 2,5 7,C 0,2 9,2 7,2 -1,6 1,B 1,9 -1,0 5,C -1,4 -1,9 7,8 8,B 4,6 7,2 0,2 -1,9 4,C -1,1 -1,9 -1,1 1,2 -1,0 3,0 9,8 7,C 4,4 4,8 3,8 5,1 1,6 8,4 6,3 -1,0 6,2 -1,4 6,B 1,7 6,7 3,B 8,B -1,7 -1,1 -1,3 9,8 9,C -1,0 1,1 2,3 8,5 0,6 3,5 -1,6 7,B 9,9 4,3 9,3 0,3 -1,1 3,5 6,5 6,5 -1,6 1,C 5,4 -1,0 9,C 3,B 5,6 5,C -1,1 -1,9 1,2 -1,3 5,B 6,B 5,1 5,7 8,C 1,1 6,0 6,5 4,9 9,5 5,4 -1,3 8,C 1,9 6,0 2,B -1,8 3,C 6,5 3,5 7,B 1,8 8,3 -1,2 -1,3 7,6 -1,3 8,1 3,3 3,C 6,0 8,2 8,7 6,5 6,1 5,4 9,4 0,B 9,7 1,C 1,5 8,7 6,B 3,1 8,2 7,0 4,1 5,7 -1,8 1,0 6,2 1,9 -1,3 6,6 1,1 9,C 1,4 9,1 -1,9 -1,3 1,9 4,C 2,4 8,5 1,B -1,1 -1,3 3,C 3,9 7,5 6,6 -1,3 7,C -1,3 -1,6 -1,1 3,B -1,1 -1,8 2,C 3,3 9,8 5,3 5,2 7,2 8,3 7,B 6,0 9,C 9,9 7,8 9,9 7,9 -1,2 3,0 7,8 6,1 -1,6 9,1 -1,0 3,B -1,8 -1,1 3,C 7,B 7,C -1,3 -1,4 5,1 2,5 8,7 9,6 2,C -1,7 3,6 3,B 2,5 5,7 4,4 -1,9 2,0 3,7 -1,8 3,1 9,1 2,C 6,0 8,2 9,9 3,0 8,0 4,4 0,5 4,6 -1,5 -1,6 9,6 0,C -1,2 7,0 -1,1 5,6 -1,3 3,B 2,C 2,4 3,2 -1,3 0,9 2,1 7,3 3,C 1,1 5,1 0,1 9,B 2,8 -1,1 1,6 2,8 2,5 4,3 5,2 7,9 2,4 6,C 9,0 3,4 7,1 -1,6 -1,3 4,C 5,9 0,B 8,C -1,3 6,6 6,2 6,B 1,1 6,C 2,B 5,C 3,6 5,B 4,0 6,B 5,C 2,C 9,1 2,7 -1,4 1,B 9,1 7,1 7,C 1,7 3,4 -1,3 4,3 2,4 7,B 2,5 2,8 3,C 5,B 1,1 7,9 1,6 1,5 8,7 7,3 0,7 9,2 -1,1 8,C 2,1 -1,3 9,8 -1,2 6,7 4,1 7,C 5,2 3,6 6,0 8,0 6,1 5,3 -1,7 -1,0 -1,2 4,4 8,6 -1,0 6,2 2,9 7,9 0,B 2,B 0,2 0,4 1,4 6,3 4,B -1,7 2,7 3,0 3,B 4,B -1,4 -1,5 0,6 1,7 -1,7 5,4 2,6 6,0 1,2 7,0 -1,0 -1,3 5,3 -1,8 4,6 -1,5 5,B 5,0 -1,1 -1,9 0,2 9,3 5,C 7,2 2,C 8,0 -1,3 4,5 2,5 -1,2 4,2 5,0 3,7 2,9 6,9 6,0 5,C -1,6 7,2 -1,1 3,5 6,C 4,C 3,B 9,0 5,6 6,5 -1,6 -1,6 4,7 5,0 8,7 6,2 8,6 1,6 3,6 -1,3 0,2 5,6 -1,3 -1,0 6,4 -1,2 0,B 0,C 7,B 0,8 6,C 5,9 -1,7 3,7 6,1 6,1 3,C 7,7 9,9 5,9 -1,8 3,B -1,3 9,5 0,9 3,5 -1,8 -1,8 6,0 0,6 9,C 9,6 1,6 3,B 6,8 6,C -1,8 -1,6 3,6 2,C 7,6 3,8 0,0 3,1 7,7 7,8 0,B 9,B 8,1 9,7 1,B 4,8 8,5 2,0 0,8 1,5 -1,7 7,2 -1,5 8,8 0,3 2,2 1,9 5,2 2,8 3,3 2,1 8,2 8,B -1,9 5,1 3,9 0,2 7,B -1,1 9,4 4,4 1,8 9,1 -1,4 4,6 -1,8 8,C 0,8 3,4 4,2 1,B 0,B 7,6 3,9 6,5 0,9 7,8 -1,0 8,6 -1,9 0,4 4,2 9,9 8,1 3,0 -1,4 3,3 6,3 -1,7 0,3 6,C 6,B 0,5 0,6 -1,1 1,1 7,4 0,2 7,C 5,7 3,6 5,9 9,8 7,C 8,3 6,0 2,1 6,2 6,4 -1,6 7,6 7,9 3,3 1,7 7,2 -1,1 -1,8 -1,3 -1,2 3,C -1,4 -1,4 -1,7 7,1 1,B 2,7 -1,5 -1,9 9,6 -1,7 5,5 4,7 0,6 0,0 3,B 3,B 6,5 -1,3 8,7 2,C 0,B 0,B 3,9 8,9 4,4 5,3 4,3 9,C 1,B 6,B 9,8 0,7 1,B 1,1 9,2 0,5 2,8 3,1 4,C 3,8 -1,7 6,5 -1,3 4,4 2,8 5,2 4,8 9,9 8,B 7,C 7,1 2,5 2,C 6,B 3,6 1,5 -1,3 -1,1 2,0 3,4 3,6 0,4 -1,2 7,4 -1,4 9,B -1,6 8,B 5,4 0,2 -1,1 7,B 8,B 4,5 -1,6 -1,0 5,2 7,0 -1,1 -1,2 9,9 8,8 2,6 5,4 3,B 2,1 5,2 8,7 -1,3 6,9 4,4 -1,7 -1,1 4,C 7,1 5,6 6,2 -1,9 -1,8 5,7 7,B 5,B 6,C 1,B 2,7 2,B 9,7 4,1 4,8 -1,8 9,1 8,9 5,8 4,C -1,7 2,9 8,1 8,5 6,9 6,2 2,6 2,B 9,0 -1,9 8,2 1,8 7,5 -1,4 5,1 4,0 -1,0 6,6 -1,7 9,2 2,0 -1,4 1,6 4,B -1,0 3,9 5,B 6,B 9,2 1,9 1,1 2,B 3,B 7,B 5,5 1,4 5,6 4,1 -1,7 -1,1 8,5 -1,9 -1,3 -1,5 3,B 9,7 -1,9 6,3 -1,3 6,7 1,B 0,7 2,9 8,3 -1,5 7,C -1,7 -1,3 -1,1 -1,9 5,9 6,5 -1,8 5,7 6,B 3,7 3,C 1,B -1,4 -1,3 8,5 6,9 2,C 2,2 8,8 9,7 -1,2 8,1 6,8 -1,8 3,1 4,C 6,3 1,3 -1,6 8,1 9,3 7,8 5,7 1,8 7,8 5,0 8,C 5,4 4,4 5,4 6,2 4,3 6,2 -1,2 5,0 2,9 2,3 4,6 9,7 7,C 0,7 -1,1 -1,8 2,3 9,7 0,8 9,0 1,5 -1,4 1,2 2,1 -1,2 2,B 6,7 9,3 5,6 3,3 2,7 3,8 7,6 6,B -1,8 7,4 4,8 -1,4 8,B 1,9 4,C 1,7 5,7 6,0 3,1 6,C 8,4 4,6 6,1 3,3 2,9 8,9 8,B 0,6 4,2 8,1 9,3 -1,6 2,1 4,7 9,1 -1,4 2,C 4,C 3,6 9,B 3,C 6,4 6,7 -1,4 4,B 3,B 8,4 -1,9 7,3 5,5 -1,0 5,1 9,9 -1,7 9,5 -1,7 1,4 2,1 4,1 9,7 1,4 9,6 6,5 4,4 7,C -1,8 -1,2 2,6 3,C 9,6 3,4 7,3 1,B 9,0 -1,6 4,C 5,9 2,4 0,3 9,3 1,C -1,8 5,7 3,4 0,4 0,C 5,9 0,2 7,6 2,8 0,B 9,B 9,5 -1,9 4,B 5,C 8,B 1,0 -1,1 -1,5 4,B 3,8 4,5 -1,1 -1,5 -1,4 6,B -1,1 2,1 -1,2 5,C 2,2 6,2 -1,7 0,2 -1,2 2,0 9,3 1,3 -1,6 -1,9 4,9 3,9 1,0 7,B -1,4 -1,0 6,C -1,9 6,2 5,2 6,B -1,3 9,7 -1,6 -1,0 7,2 7,8 9,8 -1,5 2,8 9,C 8,C 7,0 -1,6 0,0 8,B 4,6 3,3 1,C 4,1 5,3 5,9 5,3 3,1 -1,9 4,C 6,1 -1,4 6,4 7,B 4,0 9,C 4,9 0,B 4,7 3,9 5,6 4,0 5,2 6,B 2,8 7,5 0,2 4,0 -1,7 5,8 5,2 2,0 5,7 6,8 2,C 1,6 -1,4 1,C 3,7 0,C 1,6 -1,0 1,8 1,2 2,C 0,6 7,2 3,B 4,4 2,1 0,4 0,5 1,9 7,B 3,5 7,9 1,9 8,8 9,C 2,7 6,8 9,3 6,3 5,7 8,2 -1,6 0,3 4,C 1,7 8,C 7,6 4,7 9,C 7,C 4,3 -1,4 -1,3 -1,6 8,B -1,3 1,1 8,1 6,7 9,7 3,2 -1,9 5,C -1,7 9,0 5,8 -1,9 9,7 6,8 -1,1 3,1 9,2 7,B -1,9 4,C -1,0 -1,4 7,0 -1,9 9,5 3,9 4,B 4,4 -1,4 -1,8 6,4 5,9 0,5 5,6 4,3 -1,4 -1,5 0,5 2,B 4,C 9,8 1,3 5,2 3,8 8,2 3,0 3,2 0,C -1,2 2,C 8,0 8,B 0,8 0,9 1,8 1,4 -1,5 2,B -1,7 -1,7 3,3 8,7 5,3 4,C 5,8 -1,5 0,C 9,7 0,1 8,C -1,6 7,6 4,8 0,4 6,3 5,B 1,0 6,9 0,4 7,7 1,0 9,0 5,9 5,2 4,B 7,5 -1,4 2,6 7,4 -1,3 8,B 1,2 1,9 0,6 -1,6 -1,5 -1,9 9,5 5,9 7,C -1,9 0,7 7,2 8,9 6,1 -1,1 5,C 4,8 1,1 9,C 9,1 4,C 0,9 8,7 8,C -1,8 -1,8 9,4 3,9 7,4 -1,6 8,3 5,8 1,2 5,C 5,0 1,1 7,4 0,2 2,4 2,5 4,8 7,2 6,6 4,0 2,6 5,1 9,7 5,3 2,4 8,6 7,4 4,B 8,C 6,C 6,B -1,6 -1,5 -1,4 -1,7 6,5 2,B 8,C 5,8 9,B 1,7 9,8 5,5 1,1 7,3 9,B 7,4 5,C 2,7 0,0 0,4 8,1 3,4 4,C 8,B 1,2 1,7 -1,0 4,5 5,4 8,B 9,6 -1,6 7,B 8,5 -1,4 -1,6 0,C 6,5 2,5 2,8 5,C 5,1 8,C 5,4 -1,5 0,C 3,2 0,0 6,7 3,0 3,8 -1,8 5,2 9,2 4,2 4,C 6,6 4,2 4,8 0,0 6,B -1,8 1,1 9,0 -1,4 -1,3 -1,6 0,B 8,9 6,B 8,9 6,5 4,6 5,C -1,7 -1,7 0,6 3,5 -1,7 -1,1 9,C 8,3 5,B 8,C 8,7 2,9 2,9 -1,7 1,4 4,4 9,7 8,7 0,6 -1,0 2,5 -1,2 3,5 7,C 6,0 -1,5 3,6 -1,4 6,5 3,C 1,2 1,B 9,3 7,2 0,B 6,C 9,C 5,1 1,2 -1,6 4,9 4,7 5,B -1,5 3,B -1,7 1,4 6,9 5,5 0,B 4,6 4,1 -1,0 6,B 1,3 -1,8 6,6 4,1 5,C 0,0 0,0 -1,0 0,6 6,7 6,3 -1,2 1,5 2,5 -1,5 8,B -1,3 -1,5 -1,1 3,C 6,0 0,9 4,5 8,5 8,8 -1,2 6,4 4,0 7,8 0,8 2,3 6,7 8,6 8,1 5,5 0,8 6,8 4,5 4,1 0,0 4,1 7,B -1,8 5,5 9,7 6,0 -1,2 -1,9 2,3 9,7 4,C 4,C -1,5 1,8 2,0 4,2 1,6 9,6 -1,0 1,5 6,C 8,C 1,1 0,6 6,0 9,B 1,6 -1,4 7,5 4,5 0,7 -1,6 -1,6 -1,1 -1,9 -1,9 4,5 -1,6 1,9 0,B 4,C -1,6 9,4 2,6 7,1 -1,3 2,9 -1,5 3,0 6,C 1,3 4,7 7,5 6,2 5,6 -1,6 9,C 5,C 1,3 -1,0 7,7 2,4 -1,8 8,6 7,3 1,8 7,C 7,6 -1,3 3,B 1,2 0,0 9,8 1,6 -1,3 8,C 0,7 6,5 1,C 3,B 8,5 3,8 1,9 6,B -1,9 8,B -1,2 -1,6 -1,6 0,B 1,5 8,4 -1,8 1,4 7,4 2,C 3,8 3,5 7,C 8,C 8,C -1,4 -1,7 -1,2 2,3 -1,9 0,1 0,4 7,B 7,4 4,5 -1,7 3,8 6,7 0,7 3,6 8,0 8,4 -1,6 7,0 7,3 -1,3 6,7 6,4 7,3 7,5 7,B 4,7 7,7 -1,7 4,0 7,1 6,7 0,7 2,3 -1,0 -1,8 6,6 0,C 0,5 0,C 4,6 1,C 0,B 7,B 2,5 5,6 3,C 4,B 7,6 6,B -1,3 -1,4 4,B -1,4 -1,5 -1,9 6,4 3,5 6,6 -1,2 -1,7 2,2 4,2 1,9 9,2 7,6 0,C -1,5 3,9 0,C 0,7 6,0 5,5 1,2 8,5 8,1 -1,7 5,C 2,2 6,5 -1,1 4,4 5,5 7,C -1,3 -1,9 4,9 -1,8 0,7 3,4 1,2 -1,9 6,C 3,6 9,6 5,2 7,4 3,0 8,1 7,B 5,2 1,2 8,9 8,4 5,9 9,7 2,6 3,2 0,7 8,9 5,B 3,1 9,C 4,4 -1,0 -1,9 6,C 0,7 6,1 2,4 1,2 5,3 7,9 3,1 9,0 4,B 9,8 -1,4 1,3 0,9 -1,1 -1,5 1,4 -1,9 9,1 2,7 -1,7 2,1 9,5 3,C -1,7 7,0 1,B 3,9 3,3 0,0 -1,5 0,4 0,1 9,0 2,7 6,6 3,8 -1,5 -1,1 6,8 3,0 -1,4 2,3 0,C 5,3 5,1 6,0 -1,0 6,3 -1,8 2,C 1,C 5,4 4,2 -1,9 9,5 2,6 6,5 7,1 7,7 -1,3 -1,0 -1,2 3,2 5,6 8,9 -1,4 9,6 0,2 0,B 3,5 -1,5 2,8 2,C -1,5 6,9 7,C 3,C 7,2 6,8 -1,4 7,7 1,C 0,4 -1,9 4,C 0,6 1,7 0,C -1,3 9,7 1,8 8,3 -1,1 3,1 3,1 -1,0 3,0 4,C 6,1 0,B -1,7 3,B 6,C 4,9 9,4 -1,4 -1,2 2,1 7,2 1,0 2,0 6,C 8,9 1,4 8,C 9,B 6,1 7,B 5,1 6,C -1,4 8,9 -1,5 0,9 0,0 4,1 3,2 6,B 5,5 3,4 1,2 1,7 1,3 -1,5 9,9 1,3 7,6 -1,4 0,B 6,4 8,3 7,5 8,8 -1,5 3,6 8,B 9,C 4,7 6,6 9,B 6,3 0,5 4,B 4,1 9,5 6,C 5,8 3,2 -1,4 1,0 2,4 8,3 2,B 5,C 7,B 1,4 -1,2 1,C 3,6 3,4 8,4 2,4 4,1 1,3 6,8 8,5 -1,8 3,7 6,8 -1,2 4,9 -1,9 6,2 -1,0 4,C 8,6 1,1 8,C 2,6 4,3 -1,0 8,0 -1,5 -1,8 7,3 3,5 0,2 4,4 5,C 9,6 -1,1 5,2 5,8 7,C 3,3 5,6 8,9 0,8 8,5 1,4 9,4 -1,9 2,6 4,C 3,6 0,0 -1,1 5,4 2,4 7,8 4,6 7,B 9,B 7,B 8,7 -1,5 7,0 5,C 3,1 -1,1 7,9 1,7 1,0 8,1 2,8 3,5 4,C 2,B 9,3 0,5 9,8 3,6 -1,8 2,B 2,5 9,B 5,7 4,B 1,4 6,9 4,7 9,9 1,C 0,5 1,0 8,C 8,C 7,C 3,3 5,4 7,0 3,2 6,C 5,1 0,1 6,4 9,7 1,1 4,3 8,C -1,6 9,8 4,2 6,5 8,5 -1,7 8,3 7,2 -1,5 4,8 4,B 9,4 1,6 6,C 2,1 5,1 4,7 7,B 8,4 3,8 3,B 5,4 5,0 -1,8 9,1 0,5 7,6 0,0 8,B 4,7 3,0 -1,7 9,C 4,7 -1,4 -1,9 8,C 2,B 7,8 7,2 2,3 8,8 -1,3 2,2 7,4 7,5 3,C 7,C 1,B 8,4 8,8 -1,7 5,7 3,4 6,B -1,4 7,7 -1,2 5,1 0,1 -1,2 8,8 0,9 6,9 -1,0 1,B 8,2 6,1 0,4 -1,5 9,2 8,0 8,6 0,0 6,3 0,4 4,3 -1,3 3,4 2,6 6,1 8,B 0,1 8,5 -1,8 3,2 4,1 4,4 -1,2 3,1 3,B 4,3 3,0 1,3 8,B 7,9 -1,3 2,B 5,3 1,8 -1,4 6,1 4,8 2,1 4,3 5,6 0,8 5,0 2,B 8,9 1,2 4,0 9,9 9,0 1,B 9,7 -1,5 -1,0 6,B 6,4 7,5 1,6 2,2 6,4 0,7 6,B 3,3 3,B 0,1 1,4 5,6 4,B 7,C -1,0 2,8 4,2 1,C 4,B 7,B 5,8 2,9 1,5 -1,6 8,0 6,1 2,B 6,2 6,C -1,2 0,B 7,4 -1,0 1,6 1,5 3,6 8,B 0,B 6,7 0,7 0,2 8,B 7,6 1,9 9,8 -1,6 0,3 3,2 2,3 7,B 9,0 6,2 1,2 8,C 9,B -1,4 -1,4 -1,0 7,C 3,4 5,5 -1,8 4,3 -1,7 1,0 1,7 6,1 4,B 5,C -1,5 8,9 2,8 5,0 3,B -1,3 2,C 1,4 8,6 2,5 7,3 -1,3 -1,5 8,5 5,B 1,2 2,6 0,7 1,1 3,9 1,1 0,6 3,1 3,2 0,4 -1,7 2,2 2,2 -1,2 6,B 0,5 -1,9 -1,7 0,2 -1,2 1,1 9,C 2,3 8,0 3,7 -1,1 8,2 0,5 3,6 8,5 3,7 5,8 4,C 5,B 1,B -1,7 9,5 0,5 6,1 2,9 7,7 7,B -1,8 5,3 5,2 -1,6 -1,7 3,B -1,4 4,9 5,5 4,2 4,2 4,8 7,C 5,0 6,1 1,8 -1,7 6,6 2,8 2,C 0,8 8,3 1,2 -1,9 6,7 3,C 4,4 8,C 9,B 8,5 7,7 7,6 3,4 6,C -1,4 9,5 9,B 7,4 4,C 7,8 8,6 2,9 2,5 7,6 2,C 0,1 7,C -1,1 2,0 0,7 9,7 -1,5 8,B 5,C 2,C 3,5 7,5 5,2 4,0 0,B 1,2 9,2 4,2 0,C 8,C 8,0 6,1 4,C 9,B 0,B -1,2 8,2 2,3 4,9 0,0 -1,8 8,4 2,0 -1,2 -1,7 -1,3 9,1 3,2 4,5 0,5 0,B 3,9 5,3 1,8 -1,5 3,3 6,6 7,1 9,B 4,7 7,B 4,4 9,0 1,3 3,B -1,0 1,5 0,C 3,9 4,B 5,1 1,1 9,B 1,1 0,C 6,8 1,7 6,8 -1,7 2,C 7,C 0,2 9,9 0,1 0,0 9,6 -1,0 -1,9 9,1 2,7 3,C 5,9 9,9 -1,2 3,B 4,9 6,3 6,3 2,C 8,4 9,2 1,9 3,1 7,4 -1,1 5,8 1,6 9,6 8,7 7,4 1,6 4,0 2,5 2,C -1,1 -1,0 3,4 6,C 2,C 0,7 3,2 7,9 5,5 1,B -1,3 6,C 1,3 9,2 1,0 -1,8 0,3 4,C 3,C 8,7 8,1 1,8 0,3 -1,3 9,C -1,7 9,5 6,0 -1,3 2,7 -1,9 9,C 4,1 4,5 3,4 8,3 3,1 1,0 0,6 9,6 6,B -1,5 5,C 2,1 -1,0 1,B 0,C 8,B -1,1 2,4 5,C 7,3 4,B 0,B 2,3 9,8 -1,3 4,8 3,B 0,B -1,4 5,3 9,6 6,2 6,5 5,1 -1,1 9,6 5,B -1,4 6,B -1,0 3,C 4,C 4,4 2,8 8,1 3,6 2,1 -1,4 7,2 -1,3 9,1 5,C 4,6 8,3 9,1 9,2 8,7 3,B 3,1 7,8 0,C -1,9 9,3 8,9 0,4 4,8 -1,8 9,5 -1,7 2,9 2,B 1,9 3,3 9,B -1,5 -1,4 -1,1 6,C 3,B 5,2 4,0 2,6 6,C 7,4 4,6 0,6 5,B 4,C 4,0 2,2 1,3 6,B -1,2 8,5 7,1 9,9 -1,5 2,2 4,7 4,1 -1,1 0,4 0,C 9,3 0,6 8,6 8,C 8,6 -1,5 2,C -1,6 4,0 4,B 8,0 3,9 -1,1 -1,8 7,2 7,5 2,1 -1,9 5,6 -1,1 4,9 9,8 0,B 0,B 5,8 4,C 6,8 1,6 3,0 8,B -1,6 3,8 2,4 3,2 7,6 1,B 8,9 9,5 2,4 0,0 6,2 -1,5 -1,1 -1,4 1,3 0,4 6,B 2,B 7,B -1,7 3,B 0,B -1,1 1,3 8,9 1,8 1,C 7,1 3,1 0,B 3,2 5,1 2,0 5,2 8,3 0,C 8,2 6,5 6,1 2,4 2,1 9,4 -1,3 -1,8 0,3 6,7 0,6 5,7 -1,8 8,0 4,C 5,B -1,1 8,B 0,4 0,C 3,C -1,1 2,3 3,2 2,1 -1,6 0,5 9,4 4,C 5,6 9,7 0,8 7,9 9,3 5,5 8,9 8,6 6,2 4,7 5,5 -1,0 -1,6 7,6 1,9 9,2 4,C 4,7 4,9 6,C 9,2 4,0 9,8 9,6 4,8 2,3 9,3 5,2 2,2 5,B 2,9 -1,7 8,B 5,C 2,8 5,6 -1,1 5,7 9,B 3,1 7,0 3,7 4,C 7,B -1,1 4,3 -1,8 -1,9 2,6 1,1 1,8 7,4 5,C -1,9 4,4 -1,5 8,2 0,9 8,B 5,7 8,6 3,2 7,8 3,1 6,8 -1,4 -1,7 6,2 9,B 7,0 6,B -1,2 3,3 3,6 3,2 4,6 2,B 0,8 7,5 4,6 -1,5 9,8 9,3 1,0 2,2 0,6 6,3 -1,8 8,9 3,4 -1,9 2,3 -1,5 9,3 8,2 1,9 6,B 7,C 1,8 8,4 -1,1 1,5 -1,2 1,4 7,4 2,4 3,6 -1,8 6,3 1,3 -1,8 5,4 9,7 0,B 8,0 4,B -1,7 -1,7 1,7 2,B 9,7 8,B -1,6 -1,2 0,9 3,3 4,B 6,C 2,C 0,6 9,3 1,3 -1,6 6,6 2,1 -1,8 -1,2 -1,0 3,1 5,7 4,C 8,5 0,C 9,8 1,C 3,C 1,9 1,7 5,8 4,9 -1,5 -1,6 -1,8 0,C -1,6 0,5 -1,4 2,3 -1,6 3,2 -1,5 1,4 9,7 -1,6 2,C 0,C 4,7 -1,8 8,C 5,3 0,0 3,B -1,0 7,5 0,C 8,0 3,C 2,4 4,7 -1,3 4,C 1,1 7,9 7,0 -1,6 4,9 1,9 5,1 1,3 1,3 0,4 0,6 1,C 5,C 6,6 -1,9 6,8 -1,4 9,C 4,8 0,1 0,3 -1,9 -1,2 0,8 -1,7 8,C 9,B 6,B 2,5 3,5 -1,9 1,9 1,B -1,2 1,7 4,3 0,7 -1,8 0,5 -1,4 2,C 7,2 -1,1 -1,4 8,9 7,7 9,1 9,0 2,2 2,5 1,B 9,0 9,0 -1,8 6,2 2,9 0,4 1,3 8,5 6,6 2,7 6,0 4,8 -1,8 6,5 9,C 4,8 4,2 4,B 5,B -1,6 7,C 5,4 1,6 9,0 -1,3 8,8 -1,6 5,B 6,2 5,C 9,B -1,9 4,9 -1,7 0,6 7,B 2,8 6,1 -1,0 4,2 8,8 -1,6 -1,6 1,7 5,1 -1,2 2,7 -1,7 -1,9 2,4 4,6 3,C 2,7 3,4 6,C 2,8 -1,6 2,0 -1,1 4,C 8,8 2,4 0,1 1,B 9,C -1,7 2,4 6,1 8,5 -1,8 -1,4 3,0 2,B 7,5 9,B 9,5 6,8 6,B 0,9 -1,3 9,5 5,3 4,B -1,5 5,B 0,8 7,0 4,7 -1,5 2,9 0,8 -1,5 2,C -1,2 7,1 1,3 3,4 -1,5 4,B 4,B 0,1 -1,0 -1,4 5,B 9,4 -1,6 -1,9 6,8 7,6 9,C -1,0 -1,8 -1,1 7,C 3,8 3,C -1,8 6,3 -1,1 -1,6 6,2 6,6 4,C -1,1 -1,1 4,B -1,8 -1,8 3,3 1,3 9,B 8,6 -1,9 6,C 9,B 4,5 8,0 7,1 -1,6 5,8 4,7 1,0 5,6 0,8 -1,8 -1,3 7,2 7,1 -1,8 8,9 4,5 3,7 9,8 7,3 0,0 -1,2 5,C -1,3 -1,0 4,1 2,6 6,5 0,5 3,C 5,3 8,B -1,1 2,0 7,8 2,7 -1,0 9,5 8,3 7,C 9,B 9,8 8,B -1,6 2,B 0,B 3,8 7,8 -1,0 8,2 4,1 9,1 1,3 6,2 3,7 6,3 8,8 5,2 6,8 -1,3 1,8 -1,6 5,9 3,5 3,7 -1,7 -1,5 7,B 8,5 5,C 2,8 9,0 9,2 8,9 3,7 3,1 8,C 3,B 5,3 0,5 1,7 -1,5 9,5 -1,2 9,C 9,6 8,0 8,4 2,7 -1,3 3,C 1,1 9,7 0,1 3,9 9,5 7,8 6,4 -1,5 -1,7 5,B 1,2 8,6 3,1 8,C 0,6 5,2 5,3 9,8 5,7 9,0 1,4 8,6 4,B -1,9 2,6 7,6 4,8 -1,7 4,1 8,0 -1,6 -1,3 7,6 3,B 9,6 -1,0 5,B 0,6 -1,5 6,9 6,B 7,7 3,B 0,5 3,B 2,0 4,7 8,2 8,2 8,B 9,6 7,6 6,1 6,7 9,8 0,2 -1,6 3,B 4,4 6,5 5,B -1,2 1,1 4,2 3,B -1,1 -1,2 3,3 -1,6 1,2 6,9 9,B -1,6 2,8 7,7 -1,4 -1,2 5,8 4,3 8,B 8,9 6,9 7,7 5,4 0,0 9,1 -1,9 5,4 8,1 0,B 5,5 4,8 7,4 3,B -1,8 4,6 4,2 3,6 -1,3 -1,5 2,4 -1,6 6,5 3,0 9,3 7,B 3,2 2,B 4,C 0,8 1,B 1,0 1,0 0,4 4,5 3,5 7,7 0,6 9,8 6,9 -1,5 7,1 -1,8 5,8 9,0 -1,5 8,4 -1,6 0,3 -1,5 0,6 8,3 3,2 8,9 2,5 8,1 7,6 0,C 7,C 0,5 2,B 3,8 7,8 7,C 8,2 9,8 -1,9 -1,0 -1,8 4,6 3,0 -1,7 6,C 4,8 8,6 7,B 3,2 0,8 0,6 6,8 5,C 2,7 1,B 9,B 5,4 7,6 6,6 3,2 0,8 1,7 9,5 5,5 -1,3 4,6 3,1 8,9 3,7 8,3 3,3 2,B -1,8 8,2 8,4 0,3 5,6 0,9 1,7 -1,2 7,4 7,0 1,1 2,C 5,1 3,7 -1,7 2,4 9,B 5,B 2,0 6,B 9,0 -1,2 -1,0 3,0 6,C 4,C 4,B 5,3 3,3 -1,0 0,C 3,9 0,B 5,7 4,0 5,3 5,1 2,3 8,2 1,3 -1,7 7,9 9,C 3,8 -1,4 4,8 2,2 -1,8 9,2 3,4 5,B -1,4 8,4 -1,8 -1,9 -1,4 5,0 9,4 0,1 -1,3 8,3 3,2 8,9 -1,6 3,4 7,B 9,1 8,C -1,3 2,1 4,9 4,0 8,2 -1,7 3,5 8,4 -1,3 6,3 9,6 -1,1 4,6 0,8 8,3 4,5 0,2 4,6 -1,1 5,B 1,5 -1,1 -1,8 8,0 -1,1 -1,0 -1,6 0,9 5,C 5,2 7,1 -1,4 2,C 7,8 -1,7 -1,1 5,B 1,1 0,4 2,4 4,1 1,B 1,0 3,8 2,B 6,4 4,C 7,C 5,2 4,C -1,0 -1,8 0,B -1,9 5,C 7,7 3,B -1,4 2,1 1,6 8,0 0,B -1,9 9,5 0,1 -1,4 -1,6 5,8 0,B 2,3 1,C 7,0 6,C 8,9 6,1 3,B -1,9 5,6 -1,8 8,3 8,B -1,3 4,C 6,C 8,C 3,2 0,5 9,5 5,B 5,C 6,6 1,9 5,C 8,4 5,7 4,2 -1,2 6,C 3,C 0,7 7,B 1,C 7,4 1,5 -1,0 0,4 5,4 6,8 -1,2 9,2 1,4 4,1 -1,6 8,B -1,5 1,4 9,9 7,B 6,8 4,3 9,5 3,B 3,1 2,6 6,8 4,7 -1,6 -1,3 2,6 6,0 1,1 -1,7 0,7 7,1 -1,5 -1,9 4,B 4,3 6,1 7,7 0,5 2,2 2,4 2,B 2,B 2,8 5,1 8,5 -1,3 -1,0 0,2 8,B 3,3 6,C 2,8 7,7 4,5 9,5 1,8 -1,9 1,B -1,1 2,0 9,7 0,B 8,6 9,0 -1,9 -1,3 -1,9 9,C -1,3 8,3 3,B 6,9 0,4 8,C 2,6 9,C 3,B 1,8 9,C 0,4 6,3 2,C 4,4 -1,6 -1,8 7,8 4,C 8,4 9,B 4,9 5,5 8,8 7,C 7,B 9,3 5,2 0,0 1,4 3,3 3,9 -1,3 8,7 6,2 1,B 2,B 5,B 3,4 2,2 9,8 1,B -1,6 4,7 -1,8 9,0 8,0 3,1 1,9 1,B 7,6 0,1 0,4 4,B 6,5 4,1 5,2 3,C 2,B 1,1 7,0 6,6 6,4 -1,0 6,8 6,5 3,4 -1,5 7,5 8,9 5,4 6,8 8,2 5,3 -1,5 5,B 4,B 7,B 9,4 2,1 7,C 0,5 0,1 6,4 3,4 1,9 6,5 0,3 3,B 2,B 8,8 3,7 8,B 1,7 5,8 -1,1 3,9 5,C -1,1 -1,9 0,2 2,B 2,C 5,9 8,4 4,3 3,0 6,C 3,1 -1,6 1,B 2,8 5,0 0,9 2,7 -1,1 9,0 8,9 3,4 8,9 2,8 7,B 4,7 -1,4 9,5 6,5 9,2 1,7 -1,0 -1,4 3,3 3,3 7,1 2,3 2,1 6,0 7,6 2,6 6,1 5,B 6,6 6,8 2,3 1,5 1,7 0,6 0,8 -1,9 0,C 7,B 0,7 5,B 1,B 1,7 0,4 5,5 0,C 9,4 0,3 4,4 0,5 2,4 9,7 6,0 6,8 0,2 0,B 8,9 -1,5 -1,0 8,3 3,C 3,9 3,B 0,9 6,2 -1,9 4,4 4,7 -1,7 5,B 9,2 4,9 0,7 -1,2 -1,3 8,9 5,0 -1,4 4,9 -1,6 8,2 7,2 6,B 5,1 8,C 6,1 1,3 7,0 7,1 5,4 9,6 6,6 4,9 0,4 0,5 -1,4 0,7 5,3 -1,9 2,3 3,C 7,C 1,5 -1,9 7,B 1,6 8,C 2,3 4,0 8,B 0,C 1,0 -1,8 6,9 -1,3 1,7 -1,3 3,8 5,8 0,7 0,C 4,3 1,C 4,9 4,B 6,C 5,5 9,9 8,0 4,0 5,9 8,8 5,8 9,2 4,7 4,C 6,7 -1,9 9,B 7,0 -1,3 6,7 -1,2 -1,4 5,C -1,0 9,4 7,8 8,8 0,B 1,4 -1,3 7,5 -1,1 1,5 2,2 4,5 4,B 3,B 9,0 2,B 2,2 3,C 6,4 5,4 -1,0 8,7 8,2 9,9 -1,7 -1,8 -1,5 1,6 0,6 3,7 9,0 0,1 6,B 3,C -1,6 6,5 -1,0 1,C 9,2 -1,4 -1,5 -1,3 7,5 4,C 1,9 -1,1 7,C 3,3 2,B 1,7 6,2 2,0 6,4 0,B 9,8 6,9 6,8 4,3 8,C -1,3 5,7 3,8 8,4 1,8 8,6 8,0 1,C 5,9 6,4 3,9 -1,7 -1,2 7,0 1,2 2,6 -1,2 6,2 8,3 2,1 2,4 -1,3 9,8 1,3 -1,3 5,0 -1,1 1,7 0,B 1,5 8,C 5,9 -1,0 3,5 0,2 9,7 4,6 4,0 0,2 7,6 -1,9 2,9 4,3 0,6 2,C 2,2 4,B 0,9 3,0 -1,7 1,B 0,6 4,B 9,7 -1,1 0,B 4,2 -1,8 0,4 5,B 2,8 5,5 1,0 2,1 -1,7 -1,2 3,C 7,B 3,3 4,3 8,5 6,3 9,9 0,6 1,0 1,B -1,2 4,9 -1,8 7,C 2,7 -1,1 3,3 8,C 2,4 9,B -1,9 8,B 2,4 7,C 0,C 4,8 4,7 7,9 2,4 5,4 8,2 4,1 1,7 3,7 5,C -1,0 8,3 5,4 5,8 2,3 -1,0 2,C -1,5 6,1 -1,5 4,9 0,2 5,7 3,3 0,6 6,8 8,6 9,7 0,0 6,5 0,4 1,B 8,7 0,2 -1,2 -1,0 3,5 0,C 9,1 -1,1 9,8 7,8 -1,9 4,3 -1,8 7,6 -1,5 6,0 -1,4 4,1 7,6 6,8 -1,2 9,1 -1,6 0,8 9,C 9,7 1,C 1,6 6,2 2,8 -1,6 7,7 5,B 0,B -1,4 2,4 -1,7 7,1 9,7 -1,1 9,8 5,7 8,3 3,4 -1,9 4,B 1,B 8,0 -1,1 9,B 2,8 9,5 -1,1 -1,1 -1,8 3,9 7,2 4,5 3,2 0,C -1,4 9,4 0,2 9,9 4,3 3,B 5,0 9,9 0,4 3,8 7,1 6,B 5,0 8,2 -1,3 9,5 2,1 2,B 5,2 1,1 0,7 6,1 7,6 1,B -1,8 2,6 8,8 7,0 -1,5 4,B 3,C 7,0 7,C -1,0 8,C 1,9 2,C 6,2 1,0 7,C 3,3 9,B 6,9 7,2 3,2 -1,6 9,B 3,6 1,9 9,1 -1,5 7,B 5,C -1,3 2,9 0,B 2,7 3,6 3,B 9,9 9,C 5,8 -1,5 4,C 7,2 -1,6 -1,0 1,3 -1,0 9,3 0,4 -1,6 -1,2 -1,5 9,2 -1,2 9,B 2,5 4,B 6,7 8,0 4,C 7,6 5,C 1,B 1,C 2,B 1,B 3,9 4,5 1,3 -1,1 5,8 9,5 -1,3 1,6 -1,4 -1,6 2,4 6,2 7,0 6,0 8,C 7,3 9,1 4,4 9,5 4,3 3,2 -1,0 3,1 9,9 0,7 6,8 1,4 9,4 9,6 -1,2 3,8 4,3 3,5 6,1 2,3 3,B 6,3 1,9 2,0 -1,6 0,5 5,2 7,7 -1,1 6,B 3,1 -1,9 -1,4 2,B 4,0 -1,8 -1,8 2,5 4,C 7,2 7,7 -1,4 -1,9 -1,5 8,7 -1,6 -1,0 7,B 7,7 -1,6 4,4 2,4 9,C -1,4 -1,9 0,5 4,5 1,6 7,5 1,1 0,7 -1,2 6,9 1,3 5,9 6,8 -1,9 -1,8 3,6 4,0 5,2 4,9 4,6 5,2 2,B 9,B 6,6 3,4 -1,8 0,1 4,8 -1,0 -1,8 8,B 2,8 9,2 2,B 3,7 2,4 1,C 9,B 8,B -1,6 3,2 4,1 1,B 6,3 5,4 9,0 -1,0 6,B -1,1 -1,3 8,4 4,B 1,B 0,4 -1,0 2,6 1,C 7,B 6,2 7,5 9,9 5,4 -1,8 2,6 9,4 6,0 4,1 4,9 4,2 0,B 7,4 1,6 1,1 -1,5 8,C -1,3 9,2 1,8 -1,8 6,6 -1,5 1,C -1,7 -1,5 0,B 8,4 -1,4 0,7 5,B 7,C -1,0 -1,6 6,C 0,B 6,B 2,C -1,1 8,3 1,3 1,C 5,8 2,B 4,1 6,7 7,8 5,B -1,1 0,7 0,4 5,9 -1,8 -1,3 8,7 6,C -1,8 7,0 3,7 4,B 0,2 -1,6 9,C 4,9 9,1 -1,5 1,2 4,2 -1,2 5,6 8,2 5,C 6,B 7,4 9,3 3,C 3,9 3,5 4,B 9,3 8,1 5,C 2,4 3,3 7,B 1,5 0,B -1,0 0,B 4,B 9,3 1,C -1,2 5,2 1,C 2,5 1,7 3,0 -1,8 9,0 3,8 9,2 8,8 -1,6 -1,2 6,1 -1,9 2,2 -1,4 5,1 3,C 5,B 4,4 6,0 8,0 6,2 9,B 1,B 7,B 9,7 4,B 2,4 9,8 1,7 -1,7 1,C 8,6 -1,3 0,8 7,C 3,0 4,6 7,3 -1,8 0,9 1,C -1,3 1,C 2,4 7,4 6,7 1,1 8,8 -1,8 7,B 1,C 7,5 6,5 0,8 -1,0 -1,6 7,B 2,7 0,3 0,C 2,9 1,3 9,B -1,4 2,1 5,C 8,C 5,C 9,B 8,1 6,C 0,1 -1,9 9,3 1,4 0,7 9,6 8,1 2,5 -1,6 5,6 1,6 -1,9 -1,7 -1,6 3,B 3,B 4,B 8,C 6,7 5,5 2,9 7,4 5,C 7,B 5,1 1,2 1,7 8,9 1,9 -1,4 8,C 9,9 0,0 6,7 7,9 4,0 7,4 2,4 3,B 7,4 8,8 0,9 6,8 -1,0 -1,4 8,1 6,5 0,7 0,B 2,9 0,0 3,9 8,3 3,4 -1,8 6,9 6,5 0,4 9,8 8,B 1,8 9,6 -1,1 9,0 -1,0 5,7 -1,8 -1,7 4,B 3,5 4,0 4,C -1,9 -1,6 7,3 2,7 3,5 -1,5 3,2 4,6 6,9 8,B 0,B 7,2 2,0 7,9 -1,5 1,4 -1,0 2,0 5,C 3,5 5,9 1,0 -1,9 5,C 2,9 2,4 3,C -1,8 -1,9 1,8 -1,1 9,5 6,4 1,7 -1,9 1,B 3,B 3,1 0,6 5,2 6,5 6,4 0,C 7,4 7,3 6,7 6,5 8,6 -1,3 1,7 1,9 7,9 -1,7 1,C -1,6 1,9 -1,5 8,C 8,0 2,3 3,3 3,3 4,0 1,9 -1,1 7,1 9,5 5,7 4,4 6,C 1,2 -1,5 -1,2 -1,1 2,B 8,B 6,7 3,B 8,3 9,B 3,5 9,B 9,1 -1,9 5,6 5,0 6,9 4,C -1,9 8,4 4,4 4,0 7,C 7,6 5,2 2,C 1,B 9,3 2,1 -1,0 7,9 1,8 4,9 7,8 2,9 2,C 3,2 2,B 5,C 7,0 6,9 8,2 6,9 0,7 1,B 5,B 7,1 -1,5 0,1 4,C -1,0 0,6 3,B 4,2 9,8 1,0 3,8 7,7 6,C 4,C 6,2 2,0 3,B -1,3 0,1 9,5 -1,1 4,4 0,2 8,3 -1,1 7,2 3,2 3,4 6,4 -1,4 9,6 1,7 9,0 -1,1 2,8 -1,4 -1,1 0,7 6,B -1,9 4,8 3,4 5,B 6,8 -1,5 1,6 6,C 8,8 -1,2 0,8 7,B 7,5 2,C 2,7 7,0 9,1 9,9 6,6 -1,8 8,8 9,8 0,3 6,9 9,C 1,9 1,5 0,3 4,8 6,7 -1,9 5,0 3,5 8,3 4,1 -1,7 7,C 2,1 0,5 0,1 1,1 6,5 4,C 8,7 9,B -1,4 0,6 7,2 4,B 8,3 4,3 3,2 5,C 2,0 0,4 -1,0 1,0 3,2 0,9 2,6 8,C 0,B 7,6 6,6 -1,4 1,2 -1,6 3,3 -1,4 2,2 2,5 -1,9 2,C 7,1 0,C -1,3 -1,0 2,0 9,3 7,6 -1,6 6,4 0,9 -1,0 -1,2 6,4 6,5 9,8 4,C 7,8 3,6 7,2 -1,8 5,8 1,C 6,C 4,3 3,B 5,0 2,0 -1,9 4,3 4,C 5,2 9,B 6,9 4,C 1,B -1,3 -1,8 6,C 4,9 -1,0 -1,8 8,7 -1,1 9,5 5,1 7,7 6,8 9,3 2,1 5,C 3,4 0,9 -1,1 -1,3 4,6 1,2 6,6 2,7 3,B 3,0 0,1 -1,1 0,C -1,3 -1,0 7,4 -1,5 3,5 4,8 8,0 9,7 -1,8 -1,8 -1,5 -1,3 8,2 1,B -1,0 5,C 5,0 6,3 9,1 5,3 5,9 8,3 7,C -1,0 5,1 2,C 3,B 0,1 -1,7 2,C 4,8 7,B 2,7 -1,7 9,3 9,6 -1,8 2,0 4,3 1,6 6,B 1,B 6,C 2,C 8,C 5,9 1,3 8,6 -1,7 -1,4 3,7 7,7 7,9 7,B 6,3 -1,0 7,7 5,4 6,0 4,1 -1,0 4,0 -1,5 3,3 8,8 5,4 8,6 2,C 4,0 5,5 5,7 6,2 1,C 5,3 0,B 4,8 -1,8 7,0 2,B 0,B 5,C 7,B 5,7 -1,1 2,B 2,6 3,7 0,4 6,6 5,6 6,7 -1,2 6,7 8,1 9,4 3,6 9,0 3,0 1,C 4,1 -1,0 5,C 7,5 9,B 2,7 2,8 4,C 5,1 8,7 8,5 -1,1 -1,4 3,0 -1,2 3,1 2,B 4,6 2,C 7,0 0,B 3,8 5,C 8,7 4,9 9,3 3,5 8,6 1,3 5,4 6,1 9,B 9,B 6,C -1,5 4,8 -1,9 4,C 0,8 6,9 9,C 1,8 0,B 4,B -1,9 9,B 6,5 4,4 4,5 9,C 1,9 5,B 7,2 3,8 2,1 3,4 0,5 4,B 4,2 3,4 1,C 2,7 7,6 8,B -1,0 1,3 -1,8 2,7 8,B 4,9 -1,5 8,5 -1,9 4,B 2,B 6,8 4,C -1,5 4,6 0,8 -1,8 1,1 6,0 2,5 7,8 9,6 3,8 -1,0 9,7 3,3 0,4 5,C 4,7 8,5 0,C 9,3 6,2 7,7 9,C 3,B 9,2 8,3 0,B -1,3 1,9 -1,1 4,1 -1,6 9,2 9,C -1,6 4,B 1,8 9,4 4,9 2,2 8,8 -1,5 0,4 -1,8 -1,2 9,6 2,0 6,7 7,C 5,5 4,1 1,B 8,2 3,6 0,0 3,9 2,9 3,8 -1,2 9,3 6,1 7,B 1,7 6,7 4,7 -1,1 0,5 6,3 1,6 4,C 5,C -1,5 9,1 -1,6 1,1 -1,7 4,7 4,5 5,2 6,6 -1,2 5,6 -1,9 3,0 5,C 7,7 2,8 -1,5 9,B 8,B -1,1 1,1 -1,3 4,C 4,3 3,1 1,C 4,0 4,6 4,3 0,2 1,0 -1,5 3,C 1,9 8,B 3,7 6,6 7,2 3,C 6,8 4,C 2,B 5,8 -1,2 0,3 -1,3 4,B 5,C 5,4 -1,1 -1,2 5,3 4,5 -1,8 4,5 9,C -1,5 2,2 3,2 6,2 2,C 5,5 7,3 -1,8 4,9 -1,3 0,B 5,B 7,2 8,7 3,8 0,8 8,B 2,0 6,1 9,C -1,8 0,B 9,7 1,0 4,9 1,C 6,2 -1,7 9,5 -1,5 2,9 1,9 -1,0 4,C -1,9 0,6 2,C 3,C 6,2 -1,7 -1,8 3,2 9,8 6,2 9,8 7,4 5,7 7,4 -1,0 9,6 8,C -1,8 9,B 1,7 0,0 5,2 5,0 -1,4 4,8 6,C -1,3 -1,2 5,7 7,3 3,C 6,8 3,2 9,6 1,C 7,4 4,3 7,4 2,7 -1,4 8,C 8,B 3,4 2,9 1,8 8,C 8,B 1,7 6,7 7,8 -1,5 6,C 9,9 0,B -1,2 9,B 3,9 -1,5 4,B 7,2 1,3 8,5 1,B 6,5 -1,0 5,5 9,2 1,8 1,5 -1,7 6,4 2,2 -1,4 6,B 7,1 5,0 4,2 3,8 8,B 4,6 6,B 7,C -1,4 -1,5 -1,1 6,4 3,C -1,7 9,3 0,5 9,4 0,5 8,4 -1,4 3,3 3,8 1,4 1,6 8,2 -1,0 5,1 4,1 2,1 -1,5 2,5 2,0 7,3 0,5 2,1 7,C 1,7 6,B -1,5 8,B -1,9 8,B 1,4 5,5 6,6 1,9 8,6 8,C 3,9 7,9 5,0 -1,9 4,0 8,6 3,C 1,7 -1,8 9,4 2,9 8,C 6,9 7,1 -1,0 6,C 6,4 -1,8 -1,9 7,5 -1,3 3,0 0,0 2,8 6,2 8,0 5,9 -1,8 5,B 3,B -1,0 5,9 -1,6 9,B 9,3 7,C 0,0 8,4 -1,7 -1,8 4,6 0,0 0,C 4,B 7,4 -1,1 4,C 8,4 4,4 2,B 1,6 7,5 0,7 2,B 8,C 1,C 0,5 0,9 1,7 2,C 7,7 3,8 8,5 6,B 4,9 7,C -1,9 1,2 0,B 8,C 1,3 9,8 -1,7 4,0 -1,7 4,C 3,B -1,3 4,5 3,5 2,B 7,8 -1,6 0,C 4,5 -1,6 6,3 0,6 -1,0 8,0 4,0 2,6 7,6 4,5 7,2 7,C 2,4 6,C 4,C 6,4 8,3 3,B 9,2 8,1 7,6 2,0 3,C -1,7 5,C 4,C 6,2 -1,1 -1,1 3,5 -1,1 8,5 4,C 5,B 7,B -1,9 6,3 -1,0 2,1 0,3 -1,8 8,7 5,9 1,9 4,0 -1,3 5,7 4,6 1,C 0,C 1,4 6,1 9,9 2,3 0,3 1,1 -1,3 -1,8 -1,7 5,B 2,8 -1,6 -1,4 8,B 5,2 1,3 3,C 3,9 7,3 -1,2 4,0 4,7 0,7 2,0 -1,7 0,6 4,B 1,3 6,0 4,5 3,B 9,B 8,2 5,3 -1,8 6,8 2,3 2,4 7,7 -1,6 0,6 -1,9 8,2 8,9 -1,4 0,B 4,6 9,7 0,6 8,1 7,9 0,B 6,0 5,2 5,4 2,B 3,3 -1,0 8,9 -1,3 2,9 7,0 1,C 0,9 4,8 9,9 5,B 9,B 7,8 7,2 1,B 6,8 2,9 5,B 4,7 9,1 4,B 4,8 6,6 3,B 4,C 2,9 1,3 1,4 1,8 1,1 4,6 2,9 8,5 3,4 3,C 8,B 3,5 9,8 4,5 8,6 0,5 -1,9 4,B 1,B 4,7 2,2 7,7 6,3 2,1 3,3 4,2 3,5 7,7 1,7 0,C 5,2 5,B 6,B 6,4 -1,7 -1,3 8,7 7,3 -1,3 6,B 6,6 9,C 0,3 3,8 1,3 0,C 3,1 5,5 2,0 9,C 7,2 5,2 2,0 3,2 -1,3 -1,4 4,C 4,1 -1,1 0,4 4,3 8,B 9,8 5,C 5,7 1,4 0,B -1,5 -1,4 2,8 1,3 3,B 7,2 6,5 1,6 1,1 5,9 3,B -1,2 5,4 -1,6 2,6 3,3 -1,2 0,5 1,2 4,4 3,7 6,C -1,2 7,7 -1,3 0,B 9,2 6,9 0,5 -1,3 4,1 7,5 -1,8 2,B 0,8 5,9 1,6 9,9 7,C 8,B 6,4 0,9 7,7 9,3 6,C 0,9 4,8 -1,6 1,3 8,0 -1,2 0,1 6,3 5,4 5,3 7,4 3,B 1,6 -1,9 9,B 9,1 7,2 9,7 -1,2 -1,2 -1,1 1,5 -1,3 0,C 6,8 5,5 5,6 8,6 2,C 3,B -1,0 7,5 -1,8 7,3 9,C 9,7 8,9 7,B 1,B 2,5 5,9 -1,9 -1,6 2,5 9,7 8,1 3,9 5,4 2,0 9,9 -1,8 7,4 6,6 6,6 8,B 1,3 -1,2 6,C 0,6 2,C 0,9 -1,0 3,2 -1,2 7,C 8,C 0,6 -1,7 0,8 -1,2 4,C 6,8 5,9 -1,5 5,B 3,0 -1,3 2,8 4,C 0,7 8,B 3,9 1,2 2,2 1,B 1,B -1,4 6,5 3,3 2,C 6,2 4,0 1,4 1,0 -1,5 4,9 -1,9 6,2 2,4 6,7 1,2 -1,0 6,7 5,9 -1,4 -1,5 5,B -1,6 -1,3 6,C 5,0 1,0 4,4 7,B 2,0 5,1 9,7 4,0 2,1 6,4 4,B -1,1 -1,9 9,2 3,1 7,C 6,3 5,2 1,9 3,0 1,B -1,4 7,2 1,0 0,7 7,5 3,1 -1,4 4,3 3,2 0,3 1,7 4,C 2,1 -1,7 -1,3 9,B 8,8 6,5 1,0 3,4 9,5 1,2 9,7 3,8 4,1 0,B 2,B 8,4 3,9 5,C 3,B 6,7 8,3 6,5 3,B -1,5 4,2 2,2 0,C -1,9 9,C -1,8 7,4 1,6 7,5 1,9 1,5 7,B -1,8 7,1 -1,0 -1,8 -1,1 3,0 -1,2 6,1 -1,6 1,6 -1,8 0,5 -1,5 -1,1 5,7 3,5 5,8 1,B 9,B 1,0 -1,0 0,5 -1,7 8,4 2,C 1,B 0,3 8,2 4,C -1,8 -1,4 1,8 7,B -1,4 1,7 8,4 5,8 9,1 9,8 3,8 0,5 -1,4 -1,4 4,9 5,B 0,6 3,B 5,9 9,9 8,9 -1,6 4,6 6,5 5,9 -1,1 8,0 3,6 3,C 5,B 1,B 6,4 3,B 4,4 3,C 8,C -1,3 0,6 5,5 7,4 -1,5 9,2 3,0 -1,7 3,7 7,6 3,B 1,B 1,9 -1,3 5,9 6,0 4,B -1,5 8,5 6,8 2,3 8,1 0,6 7,6 9,B 3,B 3,1 -1,3 4,B 6,6 1,1 2,9 4,5 1,C 5,5 -1,3 7,0 3,0 -1,3 6,0 6,7 4,4 -1,9 9,1 -1,0 2,9 6,3 9,0 7,8 4,B -1,9 1,9 6,5 5,C -1,6 9,6 0,7 6,3 6,5 1,C 6,B 0,8 1,5 5,9 -1,0 -1,8 0,3 -1,1 -1,6 -1,0 8,5 0,2 7,4 9,6 0,5 -1,6 -1,7 8,C 1,B 0,9 1,1 -1,3 2,0 4,6 1,7 8,6 4,B 3,1 2,C 3,B 4,2 8,3 2,8 9,6 -1,4 8,3 5,5 5,B -1,3 7,5 3,B -1,1 -1,0 2,B 2,B 8,C -1,9 1,2 2,B 7,8 -1,8 1,C 5,8 1,B 5,6 5,B -1,6 4,8 -1,4 -1,2 7,1 -1,3 2,5 4,5 -1,3 2,0 1,4 -1,5 3,B 7,8 3,7 1,4 2,C 9,4 4,8 6,2 1,C 7,B -1,3 -1,6 3,4 4,2 7,1 4,9 4,1 0,B 1,8 -1,5 0,1 1,C 1,0 1,1 9,7 8,6 5,C 4,2 3,7 8,2 -1,3 -1,7 7,0 9,6 5,B 5,2 9,5 0,0 5,7 3,5 5,B 6,4 -1,9 9,9 3,C 6,B -1,8 2,C 3,6 4,4 6,5 6,6 2,B 1,1 2,6 -1,8 9,8 2,1 7,3 2,C 5,8 9,C 1,8 9,5 3,5 5,4 9,C 2,8 0,C 7,0 6,7 1,6 8,7 -1,6 4,C 4,7 0,3 6,4 3,B 2,1 2,7 7,B 5,9 5,2 3,0 9,2 7,8 -1,6 9,2 5,C 7,0 2,9 1,2 9,0 2,8 1,4 4,5 2,9 3,9 4,9 2,9 1,6 -1,7 0,3 -1,0 7,1 6,9 2,2 8,7 -1,0 -1,1 -1,8 -1,3 8,2 3,3 1,C -1,7 -1,9 -1,5 -1,1 8,C 6,B 4,7 6,9 -1,0 6,9 1,2 -1,2 7,7 8,3 4,3 -1,3 7,5 9,7 8,B -1,5 4,1 9,B 5,0 1,B 2,1 2,6 4,8 6,1 2,5 9,6 -1,4 8,2 3,4 9,6 1,6 2,6 -1,1 6,B 7,5 6,2 4,0 1,B 7,4 9,9 -1,3 -1,7 5,9 9,C -1,4 -1,7 -1,8 -1,8 9,C 7,4 7,7 3,6 6,1 7,2 0,C 6,3 2,8 6,5 7,1 8,5 9,5 8,7 -1,9 -1,1 1,4 -1,4 3,1 3,5 -1,0 -1,8 8,C 2,5 7,6 -1,3 8,C 6,0 3,2 -1,5 3,8 -1,6 7,8 -1,5 7,1 9,6 2,C -1,0 8,4 8,B 2,0 -1,2 6,0 -1,3 7,C 0,3 -1,3 9,3 9,5 1,B 9,8 -1,8 -1,0 4,C 4,B 0,C 2,B 8,7 -1,1 7,0 6,6 7,0 1,2 9,0 7,5 7,5 7,1 -1,1 8,2 4,3 9,3 0,9 2,9 4,C 4,C 8,2 -1,9 9,B -1,2 4,6 0,0 0,7 -1,3 5,5 3,9 6,0 0,C -1,1 -1,1 6,3 8,C 3,C 7,1 3,C 9,9 -1,0 4,B 6,C 1,B 3,1 1,C 6,3 9,9 -1,6 8,C 8,1 7,4 3,8 2,4 7,9 6,7 6,4 4,9 2,2 4,B 9,B 6,1 3,C 8,6 -1,3 7,C 8,0 2,0 0,1 6,1 2,C 4,8 -1,1 9,0 4,1 6,8 0,C 9,6 9,8 3,7 4,B 9,7 9,7 0,8 6,9 8,8 7,C -1,3 -1,8 7,4 1,C 5,4 4,1 4,9 5,7 8,4 2,9 1,7 8,9 1,C -1,1 7,5 6,C 1,C 9,C 9,6 2,B 7,5 8,4 3,B -1,0 8,8 2,9 3,0 -1,7 -1,1 -1,3 4,7 5,4 8,3 1,2 -1,2 4,0 0,8 3,1 1,3 -1,5 -1,9 -1,1 6,6 6,1 5,B 0,B 7,0 4,B -1,9 9,5 6,B -1,5 8,B 8,8 4,1 -1,9 9,3 4,7 -1,2 2,B -1,7 5,3 9,C 5,B 2,C -1,9 -1,7 4,9 6,C 4,0 5,C 2,C 3,B 2,C 1,3 2,3 -1,1 0,C 6,2 -1,5 2,8 -1,7 5,5 7,9 -1,6 1,C -1,1 6,5 9,7 0,B -1,2 0,7 4,B 5,0 2,C 0,C 0,4 1,C 5,0 1,0 3,3 -1,9 5,5 -1,9 3,1 5,6 0,0 3,4 7,0 -1,2 5,0 1,C -1,3 0,6 2,4 0,0 1,8 3,3 -1,0 2,1 7,B 8,5 4,B 7,C 6,6 -1,4 3,3 6,2 -1,1 2,2 6,B 4,C 5,8 5,1 8,0 0,8 -1,2 1,7 3,8 8,6 4,8 9,B 7,9 7,5 4,8 -1,0 0,5 1,7 8,C -1,6 -1,0 1,8 9,2 7,B -1,0 4,8 1,3 9,1 8,8 7,C 9,C 2,3 4,1 5,6 4,7 4,7 -1,7 9,0 1,2 4,B 9,7 -1,9 4,4 -1,6 4,9 9,5 1,6 2,1 4,0 6,6 6,4 -1,2 -1,6 8,2 9,9 8,B 3,B 1,6 2,2 -1,6 8,0 9,8 6,1 2,0 6,0 4,8 -1,3 8,8 3,1 -1,3 4,C 5,4 8,7 -1,2 1,2 6,B 9,3 5,7 7,C -1,6 1,C 2,6 -1,5 0,B 1,5 -1,8 9,5 -1,2 6,3 3,0 4,9 0,C 2,6 9,6 3,2 4,C 2,B 0,6 1,5 -1,7 -1,3 7,2 0,1 6,0 8,C 6,4 3,4 7,0 4,4 9,0 6,7 3,0 5,1 5,9 4,0 1,1 7,3 8,2 2,8 4,C 7,1 -1,5 0,0 5,0 6,0 2,2 0,7 -1,5 4,4 0,4 2,2 -1,5 -1,4 8,9 0,8 2,5 0,4 -1,5 -1,0 3,0 1,6 -1,4 6,6 6,3 -1,2 8,7 -1,5 5,1 -1,6 9,B -1,6 8,4 0,2 3,4 6,3 0,1 3,B 5,5 -1,2 3,B 2,2 9,0 2,4 -1,4 0,0 6,7 3,C 6,1 8,B 1,2 -1,0 -1,5 4,8 2,3 0,9 7,B 3,5 5,5 1,9 7,1 1,5 -1,0 6,9 -1,1 7,2 -1,2 -1,1 8,7 -1,1 -1,5 4,C 1,C 8,0 4,8 6,8 2,8 7,7 5,0 -1,5 2,1 0,6 4,B -1,2 2,8 -1,5 3,B 2,4 -1,6 -1,3 4,9 2,8 9,8 1,6 3,5 8,C 8,9 7,9 9,B -1,6 4,7 3,2 0,B 4,B 7,8 1,B 7,C -1,4 6,5 3,B 8,4 3,1 0,8 9,0 1,1 7,7 4,B 0,B 5,6 0,B 1,C -1,7 1,3 7,5 3,9 3,1 0,9 -1,8 5,B 2,B -1,2 8,5 3,0 4,7 -1,7 2,1 3,0 0,3 2,1 2,3 -1,4 1,5 5,C 5,6 2,2 -1,5 -1,3 0,9 7,9 1,C 1,4 3,B -1,5 3,C 3,4 8,2 4,3 4,4 7,3 8,4 8,2 7,0 4,C 2,1 -1,7 8,B 3,7 0,C 1,5 -1,9 9,C 6,9 0,9 9,6 0,4 -1,7 2,C 0,C -1,6 1,2 5,4 6,B 1,B 3,1 -1,5 1,1 6,1 8,3 7,3 1,8 3,2 3,4 5,8 8,B 9,8 4,7 -1,9 -1,6 2,B 4,3 4,C 6,C 6,2 3,B 9,C 9,4 -1,8 2,3 2,5 0,5 3,6 3,4 -1,3 6,C 5,0 2,3 -1,1 5,8 6,8 0,5 -1,9 6,8 9,1 7,7 5,7 2,8 5,1 7,C 3,7 5,B 6,8 3,6 4,1 9,0 4,C 7,6 9,C 0,1 8,9 -1,3 3,3 3,4 -1,0 4,2 3,C 3,C 8,3 5,9 2,9 9,B 9,2 8,B 3,1 -1,0 1,C 6,5 1,9 3,B 7,6 7,1 0,4 -1,0 3,8 0,0 7,2 0,C 0,C 8,6 -1,3 5,3 8,0 6,8 1,2 1,3 4,9 4,3 1,B -1,4 6,0 6,9 -1,6 -1,1 -1,8 0,8 5,7 0,9 9,0 9,C 1,8 1,9 7,B 9,0 4,0 6,5 -1,1 6,5 0,1 6,C -1,9 -1,0 -1,8 1,0 1,1 4,0 1,3 5,6 -1,3 3,6 4,B -1,2 -1,7 3,6 -1,8 -1,9 0,9 9,C 6,9 5,1 1,1 1,1 6,B 3,8 6,7 1,9 7,8 6,8 4,1 0,C -1,2 2,8 5,0 3,C 5,C -1,7 8,B 2,4 1,9 1,2 7,B 8,9 -1,2 -1,8 -1,3 3,B 7,9 1,9 3,C 6,C -1,0 -1,6 9,8 -1,8 2,9 3,4 3,1 -1,4 -1,0 1,3 0,1 2,B 3,1 5,5 -1,0 -1,4 0,8 -1,9 4,5 4,9 1,7 0,3 -1,4 3,3 -1,6 4,9 -1,0 0,1 6,8 1,9 1,7 -1,6 -1,1 -1,5 7,3 8,1 9,2 4,6 -1,4 7,9 -1,8 8,B 8,6 -1,8 6,B -1,8 2,0 3,6 0,4 3,7 9,9 8,9 6,B 3,B -1,2 1,8 8,0 8,B 7,3 1,C 8,3 6,4 4,1 -1,8 2,3 8,3 9,B 0,4 0,4 0,7 2,6 9,7 5,3 9,B 9,B 4,1 8,6 -1,0 3,B 7,C 4,C 4,9 -1,4 -1,3 -1,1 -1,9 1,7 5,B 0,B -1,9 0,5 7,6 3,C 1,B 9,8 5,7 5,9 5,B 0,7 7,C 4,C -1,3 3,8 -1,3 2,9 3,B 8,1 -1,1 7,7 5,6 1,C 6,C 3,2 -1,3 9,1 4,C 4,5 0,7 5,5 9,1 -1,7 1,B 1,6 5,4 5,2 2,0 8,5 1,6 7,4 7,3 -1,2 4,B 2,9 2,C 2,C 3,1 3,4 6,2 7,B 5,3 2,9 -1,7 -1,9 3,B 5,5 9,6 9,0 5,5 8,C 5,B 0,8 5,7 9,7 0,8 1,B 9,5 4,1 6,C 3,5 1,8 -1,1 6,3 6,B 9,3 3,3 9,8 7,5 5,6 6,6 5,C -1,4 -1,0 0,5 9,B 1,8 8,8 5,1 9,3 6,C 2,2 5,B 6,6 3,7 7,1 -1,2 0,C 0,9 4,7 0,2 2,6 6,2 6,6 1,0 4,7 0,C 2,7 2,B -1,2 -1,8 -1,0 4,1 9,B 9,4 9,2 6,2 3,4 7,0 2,9 4,2 8,3 2,7 8,C 8,B -1,8 8,5 6,C 0,8 2,C 7,B 7,7 0,4 3,C 7,5 -1,8 5,9 9,9 7,B 8,0 9,1 -1,9 3,8 -1,2 2,C 6,B 5,8 -1,9 2,1 1,7 0,8 -1,9 1,3 6,0 7,0 9,0 2,7 6,5 8,4 6,7 2,9 1,0 6,B 2,2 3,0 3,1 -1,5 3,C -1,1 8,5 4,5 -1,4 4,7 3,7 4,3 1,0 8,C 8,7 2,6 8,5 6,C 8,C 7,9 9,6 2,8 -1,1 6,3 2,6 2,C 8,5 1,B -1,6 -1,1 1,1 9,4 6,2 9,7 7,5 4,C -1,8 9,B 9,3 4,7 1,7 6,0 6,2 2,C -1,0 0,4 3,C -1,1 2,C 5,2 -1,6 8,C 4,3 6,5 -1,0 9,B 1,3 7,4 9,9 4,1 9,3 6,0 3,4 4,8 -1,1 3,6 4,C 9,7 6,5 8,B 4,B 6,0 5,B 7,C -1,6 -1,8 -1,4 9,3 9,3 5,9 8,C 3,7 -1,6 1,1 8,C 9,3 5,B 5,1 -1,4 -1,3 4,7 5,5 -1,2 9,9 5,B 1,4 0,B 3,7 -1,3 7,9 4,C 4,7 1,C 4,4 4,1 -1,3 1,B 3,1 -1,3 3,C 8,7 -1,4 0,B -1,2 -1,8 0,3 9,2 9,B 9,C 1,1 7,C 5,7 3,3 3,1 1,0 9,C 2,C 3,1 -1,7 7,4 6,6 4,3 6,7 6,5 3,1 -1,9 0,2 2,1 1,0 6,4 3,1 2,3 3,6 2,5 7,1 0,7 6,1 7,7 4,0 -1,5 8,C -1,4 4,8 1,B 9,0 7,7 9,3 5,7 8,1 3,8 3,B -1,5 4,2 -1,7 6,B 9,C 0,B -1,0 -1,4 0,8 6,B 5,6 1,0 7,B 9,7 -1,7 7,9 -1,7 -1,9 5,7 -1,8 -1,7 4,B 0,1 3,B 7,8 -1,7 4,9 -1,1 5,5 5,4 4,5 1,4 1,5 7,B 5,B 6,B 6,B 8,6 9,9 6,4 4,2 2,6 5,C 9,4 1,5 -1,9 6,C 6,9 9,3 3,2 9,7 1,8 9,B 0,3 -1,1 9,3 1,C 0,0 2,0 6,1 0,6 9,B 5,B 3,0 2,2 1,9 0,8 2,9 -1,7 4,9 7,1 6,B 9,2 2,6 7,7 2,8 6,B 7,4 8,C 3,0 -1,2 1,8 7,1 9,9 2,6 3,B 7,6 -1,8 2,B -1,3 3,7 2,C 0,5 0,C 5,6 3,7 4,9 3,B -1,4 8,1 -1,2 5,6 8,4 4,8 0,7 0,5 3,6 2,7 5,6 3,7 5,4 2,7 9,B 5,5 2,3 7,2 1,3 8,6 9,B 6,6 -1,7 0,0 -1,5 7,0 8,C 5,9 -1,7 4,B 4,C -1,1 2,4 -1,1 7,4 2,B 9,2 0,0 7,1 -1,3 4,2 1,8 9,C 5,1 4,C -1,7 -1,4 8,4 2,B 4,C 8,6 7,3 0,4 9,B 5,4 5,4 9,B 6,C 1,8 2,1 -1,3 2,0 5,6 -1,9 -1,8 -1,4 6,1 2,C -1,9 5,5 -1,8 -1,3 4,5 4,2 4,1 8,C 7,B -1,0 8,B 3,8 6,1 8,8 8,1 -1,6 8,3 -1,3 7,1 9,4 6,C 0,2 -1,1 -1,2 0,6 -1,0 4,2 9,9 5,C 6,C 4,4 6,1 5,B 1,8 4,4 8,2 6,4 -1,8 2,3 5,5 4,B -1,7 2,2 -1,8 0,9 7,4 -1,8 5,5 -1,8 7,C 9,C 5,1 -1,1 3,1 -1,7 6,9 7,5 -1,3 3,C -1,7 6,C 2,5 -1,6 2,8 8,C 0,C -1,9 3,1 8,0 7,1 3,9 -1,5 6,9 -1,2 6,4 0,6 4,C 9,5 5,B 6,6 7,5 3,5 8,4 5,4 9,2 5,8 9,7 2,5 9,0 3,7 6,C 6,4 3,5 -1,5 -1,5 9,3 4,2 7,8 4,6 2,B 1,0 7,C 2,B -1,2 5,2 4,4 9,7 6,0 -1,0 9,1 6,2 5,1 6,B 8,9 5,B 8,9 8,9 3,9 9,7 0,7 3,5 2,0 -1,8 0,6 -1,3 5,C 9,4 1,B 5,3 -1,6 -1,5 9,1 7,7 5,5 -1,0 5,9 6,4 8,5 1,C 9,B 9,4 8,0 7,7 8,3 4,6 4,9 9,1 1,4 3,B 2,B -1,1 8,0 2,0 -1,0 8,8 1,B 4,7 7,B 0,B 6,1 4,3 0,5 6,3 6,2 0,3 -1,5 -1,4 0,C 8,B -1,7 -1,2 8,9 5,C 8,4 -1,5 -1,9 -1,6 7,5 5,6 0,1 7,9 5,4 9,0 0,9 5,9 -1,3 3,2 0,C 1,4 2,1 8,2 -1,8 3,C 8,7 8,6 -1,2 7,3 4,0 1,1 7,3 4,0 8,9 0,1 2,9 -1,2 0,7 5,1 -1,3 0,B 1,B 8,9 8,C 3,B 3,B 5,B 9,9 2,9 8,6 9,9 6,B 5,4 2,B 3,2 7,5 2,6 -1,8 0,C 4,B 5,3 -1,3 -1,8 2,7 -1,4 5,7 1,9 -1,8 5,C 7,0 0,B 3,C 5,3 2,B -1,4 3,1 8,4 4,9 8,B 1,0 3,4 3,7 5,6 4,C -1,1 2,C 5,1 8,5 6,3 6,1 -1,6 7,2 -1,2 4,B -1,6 -1,2 2,5 -1,2 -1,1 5,0 1,9 3,C -1,0 9,3 8,7 -1,5 2,5 4,5 6,8 3,6 0,C 9,C 2,5 -1,1 2,6 4,C 4,3 -1,3 8,4 4,B -1,4 8,7 6,1 -1,5 -1,3 1,8 -1,6 3,B 4,8 -1,2 -1,4 2,C 8,2 0,B 9,5 6,C 9,5 9,2 3,9 -1,1 -1,0 5,4 3,3 7,3 5,4 8,7 5,7 4,9 1,0 -1,0 -1,2 -1,5 -1,8 1,B 8,5 2,3 1,C 4,C 3,8 3,B 0,B 2,3 4,3 -1,3 3,6 -1,6 2,0 4,6 7,0 4,9 4,7 6,8 -1,7 6,8 -1,8 0,0 -1,3 3,3 3,6 -1,4 0,B -1,7 1,9 0,6 7,9 1,8 -1,0 7,B 9,9 -1,4 0,8 4,C -1,5 1,B 5,5 -1,9 8,5 1,B 8,B 4,8 9,7 9,9 7,9 8,0 2,1 4,1 3,C -1,8 -1,9 0,8 -1,7 5,6 1,9 6,8 4,B -1,1 5,B 2,3 -1,1 2,7 6,1 1,B 2,C 7,0 5,1 0,2 7,0 6,C 5,2 6,9 7,B 3,B -1,2 5,7 -1,0 -1,3 6,7 9,3 2,9 3,B 8,8 -1,8 2,4 1,C 8,B 1,6 -1,5 0,3 7,4 6,2 0,5 8,3 0,0 6,C 9,5 8,7 5,B 9,C 7,B -1,1 -1,8 6,1 4,4 4,4 9,0 5,8 2,B 0,4 -1,6 4,0 3,B -1,8 -1,3 2,B 1,0 8,0 8,4 9,4 9,4 6,7 3,2 7,5 9,0 7,6 6,0 -1,5 5,6 6,C 9,9 6,2 1,C -1,7 5,6 4,7 0,1 3,4 8,6 9,C 3,1 1,9 -1,8 2,8 4,4 4,3 -1,5 8,0 -1,3 -1,0 5,8 1,1 7,7 4,8 6,B -1,8 4,8 -1,3 0,4 2,8 2,7 0,3 8,0 7,B 1,C -1,2 1,4 3,3 8,0 4,6 0,5 2,8 6,5 2,C -1,9 6,4 6,B 1,C -1,3 0,4 8,8 3,4 -1,9 4,8 9,0 7,6 8,4 0,7 6,6 2,B 7,B 9,0 4,0 2,0 -1,5 5,1 6,5 3,6 -1,9 8,4 7,8 -1,9 -1,6 4,6 5,3 1,9 7,6 8,5 0,1 -1,3 6,1 3,B 0,6 9,9 9,1 9,8 0,2 5,5 6,4 4,5 2,0 7,2 8,4 2,B -1,9 1,7 4,C 7,0 4,4 3,7 9,B 8,1 -1,1 -1,2 6,7 -1,1 1,2 3,0 3,5 7,B -1,1 -1,5 2,3 0,8 8,C 9,C 2,4 3,0 7,2 4,8 -1,8 2,B 4,4 9,6 -1,7 0,7 -1,7 9,4 -1,6 7,B 2,2 3,5 4,B 2,C 2,8 8,C 5,5 2,5 5,9 -1,4 8,B -1,1 -1,4 8,6 2,9 3,1 -1,7 2,2 2,6 0,B 6,0 0,9 -1,0 6,6 2,B 6,7 -1,4 -1,5 2,3 9,0 2,5 -1,1 9,C 7,9 -1,9 7,0 6,4 3,7 4,5 7,6 2,9 8,7 7,7 9,2 1,3 5,C 1,B 9,7 6,8 -1,5 6,5 3,C 1,6 0,0 3,0 -1,1 -1,6 5,4 0,C 0,8 8,4 0,0 2,2 3,6 -1,9 2,8 9,2 1,7 1,0 1,C 4,9 4,C 2,4 -1,9 3,6 0,2 5,6 9,0 5,0 -1,8 -1,8 3,8 7,7 -1,3 4,C 4,4 -1,9 2,C 8,8 -1,1 0,1 -1,5 2,1 5,B 1,8 7,6 2,4 2,0 4,C -1,4 4,9 2,7 2,7 5,9 2,B 7,0 5,4 2,8 -1,3 -1,7 3,8 2,7 9,4 6,1 5,C 6,B 7,1 2,5 5,4 7,0 2,B 3,1 2,7 3,B 1,B 6,2 3,0 4,6 8,5 3,9 9,C 7,5 3,2 6,3 8,4 9,0 6,2 2,B 0,4 -1,5 7,1 -1,8 -1,8 0,2 1,8 8,8 -1,8 7,1 -1,2 7,3 7,9 1,4 7,7 6,B -1,9 1,3 2,4 -1,5 3,9 -1,5 4,6 1,0 -1,4 -1,0 9,5 1,1 3,3 3,3 -1,6 -1,1 8,B -1,4 8,2 1,1 9,3 2,3 4,9 4,1 7,0 6,B 1,C -1,7 -1,2 -1,5 3,B 5,5 -1,4 6,3 3,2 -1,3 2,8 9,B 9,9 4,3 3,6 -1,8 9,0 7,2 0,8 2,C 6,5 1,6 4,1 3,6 2,B 1,C 4,4 0,4 0,0 7,1 5,2 9,4 2,3 8,B 2,8 3,5 0,7 3,5 6,7 7,2 8,1 0,1 6,C 8,7 4,7 2,2 7,3 5,B 1,C 4,B -1,3 2,6 6,3 8,6 6,3 7,6 0,7 6,B 4,C 9,6 2,5 9,5 5,7 -1,9 1,8 6,1 0,8 7,8 7,9 6,0 9,6 8,C 7,7 8,1 8,4 7,2 5,5 2,B -1,8 1,2 8,7 6,3 3,1 6,8 3,0 2,2 2,C 4,4 -1,6 9,0 7,7 -1,1 4,C 4,0 1,0 2,C -1,2 8,2 2,7 0,C 5,B 5,3 3,7 8,4 -1,3 9,8 3,0 2,1 4,0 3,C 5,2 2,8 2,0 8,C 0,6 1,3 3,7 6,B 2,5 8,3 6,5 -1,9 -1,6 1,5 9,1 0,C -1,1 -1,8 6,8 8,0 4,3 2,1 9,3 8,8 2,6 9,C 5,C 8,4 6,9 -1,7 0,4 -1,7 6,6 7,B 9,8 2,B 5,B 1,5 8,0 2,2 8,8 7,0 9,2 3,C 2,C 4,5 1,C 5,7 1,5 -1,6 9,1 -1,8 6,1 9,9 4,1 9,B 1,B 4,8 -1,1 -1,4 -1,4 6,0 0,0 9,5 5,1 0,5 -1,9 5,5 3,7 6,B 7,2 1,5 3,9 4,3 9,9 2,B -1,3 6,2 -1,9 6,7 1,9 6,0 -1,6 3,3 8,4 1,6 4,C 2,B 4,C 3,9 5,0 5,9 -1,7 5,9 -1,6 -1,6 4,4 1,5 4,C 1,2 3,6 4,3 5,2 1,3 -1,0 1,B 8,C 7,2 0,2 9,2 4,2 -1,1 9,8 6,6 3,9 4,5 7,3 2,6 3,4 5,6 8,6 6,C 6,2 0,4 4,B 8,5 2,C 8,2 1,2 -1,9 0,3 5,8 7,4 9,C 3,1 4,2 9,6 8,C -1,0 -1,7 1,8 2,B 0,6 2,6 -1,9 3,2 6,C 0,C 2,5 8,8 -1,0 0,C -1,7 5,C 0,5 0,1 -1,2 0,C -1,6 -1,3 -1,5 5,C 2,7 3,5 1,0 9,B 2,C 8,7 9,7 -1,9 9,9 2,8 1,5 3,B 4,7 -1,8 0,1 1,4 4,0 -1,7 -1,1 -1,4 3,C 4,1 0,B 6,B 7,C 1,6 8,2 6,7 -1,9 4,2 8,4 9,4 0,9 0,3 0,3 -1,9 5,2 -1,3 3,0 -1,5 7,8 7,8 -1,2 0,1 2,B 7,9 4,3 3,B 1,5 -1,1 -1,8 1,C 5,B 8,B 5,9 -1,5 -1,2 -1,9 1,C 0,8 7,B 3,7 7,6 6,6 2,2 6,3 2,3 -1,5 8,C 9,9 5,B 2,B 6,1 2,1 0,C -1,1 -1,4 8,B 9,C -1,4 7,4 6,1 5,2 2,C -1,2 9,8 2,3 2,6 4,1 1,B 8,9 1,8 -1,9 6,5 3,0 0,4 9,3 4,B 7,C 2,9 2,1 6,B -1,0 7,9 -1,4 -1,6 2,7 -1,6 0,7 -1,4 8,B 8,2 3,8 7,B 7,3 9,3 -1,6 6,5 5,6 3,9 1,6 2,C 1,8 0,9 7,3 1,6 -1,5 7,B -1,8 1,0 -1,6 1,6 8,0 0,B 5,8 5,B 8,6 5,3 4,C -1,5 1,0 9,8 2,C 6,5 7,0 7,C 6,C 3,2 0,3 8,1 8,3 8,8 3,0 -1,2 -1,8 2,5 3,0 -1,9 4,0 2,4 5,C 5,7 4,0 3,C 6,4 7,1 7,B -1,2 7,B -1,6 4,0 9,4 -1,3 1,B 6,C 7,8 8,3 2,4 9,6 1,5 1,5 -1,1 4,6 -1,3 7,0 1,0 0,2 2,C 7,6 0,0 6,7 8,9 5,1 6,6 2,4 1,6 3,C 2,C 8,9 -1,8 2,5 7,7 8,3 0,B 8,2 2,5 6,B -1,3 4,7 2,2 8,0 6,8 2,1 -1,2 9,C 7,4 6,6 5,B -1,5 3,0 6,9 9,6 6,C 4,9 5,7 9,0 4,5 1,6 4,2 -1,5 -1,8 2,7 -1,6 -1,6 7,C 1,0 7,9 3,8 9,7 9,C 8,5 8,B -1,8 -1,4 1,5 5,3 6,C 8,9 -1,1 7,3 5,C 8,6 5,0 4,C 1,1 9,1 5,8 3,1 -1,1 0,1 -1,1 4,C 1,B 9,1 3,6 5,7 7,7 2,5 5,6 1,C 0,9 9,2 -1,6 2,C -1,6 6,4 5,C -1,7 8,B -1,9 6,B 8,C 3,8 4,7 -1,1 1,5 7,7 0,9 8,C 9,5 1,8 4,B -1,4 -1,8 -1,2 4,B 7,0 0,C 1,C 0,8 4,4 -1,9 8,7 1,1 -1,4 2,1 9,B 3,1 2,0 8,9 3,C -1,7 -1,7 4,0 4,6 9,B 7,0 -1,1 8,6 5,0 4,0 2,1 1,5 -1,1 4,B 9,C -1,1 1,8 9,1 4,3 9,4 6,4 7,B -1,2 4,B 6,9 8,7 -1,1 5,0 -1,3 9,8 -1,9 0,2 6,7 6,4 4,0 2,6 7,8 7,2 5,5 0,4 7,0 9,2 6,1 7,0 6,2 6,4 -1,7 1,1 9,6 3,8 8,C 6,4 1,6 4,4 -1,2 8,9 2,1 2,5 1,2 6,6 0,B 2,3 0,0 -1,8 0,5 7,B 2,3 -1,4 6,6 7,5 -1,7 -1,7 5,6 9,6 9,3 4,8 8,9 6,2 6,0 2,B 8,3 2,3 5,1 9,3 7,2 2,0 -1,9 9,5 2,6 3,5 -1,9 9,B 5,0 3,9 5,C -1,2 7,B 4,5 1,B -1,2 6,C 3,C 0,1 -1,7 -1,1 4,4 0,2 9,9 0,8 0,C 2,5 8,C 3,6 -1,0 5,B -1,8 4,7 -1,9 6,8 4,B 5,8 4,C 4,1 8,4 6,9 6,7 1,B 7,9 3,8 -1,7 4,9 7,2 8,1 -1,6 4,C 8,C 8,B 5,7 0,B 3,4 5,5 7,9 3,5 -1,8 3,0 8,C 5,3 8,6 -1,4 -1,8 6,B 4,4 3,C 9,B -1,4 5,C 7,B 7,7 -1,6 -1,8 2,B -1,5 4,3 8,8 8,3 -1,0 6,5 6,6 0,6 9,1 0,9 8,5 5,7 -1,3 3,0 8,0 8,C 9,9 0,1 -1,4 0,B 8,3 3,0 7,B -1,1 4,B 7,B 5,1 -1,6 3,3 -1,5 6,0 5,7 -1,8 8,3 -1,8 -1,3 -1,4 0,4 3,7 2,6 4,7 6,8 -1,6 -1,3 -1,3 -1,4 7,B 5,2 0,B 7,C 2,4 3,1 4,2 6,C 7,9 0,2 1,B 6,8 -1,4 1,1 -1,4 5,B 6,0 8,7 1,1 6,C 7,0 1,3 3,6 3,5 1,5 9,5 1,8 4,C 0,1 0,5 9,6 -1,8 3,B -1,7 5,1 1,C 3,C 9,4 -1,9 9,8 1,C 2,5 8,9 1,2 5,7 2,5 1,4 2,1 -1,0 7,5 4,8 6,7 8,B -1,0 5,8 2,8 3,3 -1,8 -1,5 -1,7 9,6 8,4 0,6 1,C 7,6 -1,5 3,B 8,C 4,3 7,6 4,1 5,B 7,0 9,2 -1,4 9,8 4,1 1,1 6,C -1,4 2,8 4,5 7,7 -1,9 -1,4 6,B 1,7 0,2 -1,1 4,6 8,B 9,C 2,8 4,2 5,3 5,0 4,3 1,0 3,7 9,B 6,7 6,3 4,C 9,6 3,2 2,C 8,8 1,7 -1,7 -1,0 7,B 2,9 -1,6 -1,4 -1,0 5,4 9,7 7,B 3,4 -1,4 6,C -1,9 7,5 -1,8 1,2 -1,1 7,9 -1,3 7,8 1,4 5,2 1,4 6,5 -1,3 4,9 7,5 7,C 1,7 6,3 5,0 1,C 9,4 7,6 -1,8 9,4 7,B 9,1 4,0 8,C 0,5 9,5 3,3 9,C 9,9 2,3 5,5 6,3 2,C -1,1 5,5 7,9 -1,2 6,4 4,B 3,C -1,2 2,C 5,3 2,0 4,5 8,1 5,5 5,B -1,6 9,8 0,7 0,7 4,0 -1,1 2,7 1,7 1,B 7,B -1,1 -1,5 6,5 3,C 5,2 -1,7 1,C -1,9 9,6 8,1 3,6 -1,4 6,7 -1,0 5,B 0,B 4,2 8,6 7,5 -1,6 9,C 6,3 8,5 6,C -1,1 8,1 6,B -1,2 7,0 1,B 7,2 -1,9 3,5 9,6 4,4 5,5 0,C -1,7 4,2 4,8 -1,6 -1,6 7,4 7,3 -1,0 8,B 2,5 0,3 2,3 7,1 9,4 2,5 -1,9 5,B 2,5 9,B -1,1 6,B 9,1 7,1 7,B 7,2 6,1 9,4 2,1 3,1 6,B 6,6 -1,6 8,9 1,C 7,4 1,4 -1,4 8,B 4,7 1,5 0,6 1,5 -1,9 6,2 2,9 5,5 7,4 -1,0 0,6 2,1 9,4 0,3 -1,4 1,6 2,9 2,6 -1,9 9,B 1,B -1,7 8,8 -1,5 8,5 -1,8 7,8 5,B 8,7 1,3 0,3 8,0 9,1 0,C 9,4 -1,0 8,C 5,7 4,4 0,9 1,7 5,4 3,C 1,B 7,1 -1,6 -1,3 7,5 9,6 3,3 -1,1 2,0 -1,7 -1,8 5,2 9,1 -1,4 2,C 7,3 1,B 4,9 -1,1 1,B -1,3 -1,4 -1,9 8,2 6,5 5,3 0,C -1,5 -1,5 -1,0 9,9 3,4 -1,1 8,5 -1,4 4,5 0,B 9,C -1,9 -1,5 3,C 2,B 8,0 -1,8 7,4 4,9 -1,6 7,C 2,8 0,2 7,4 6,4 -1,9 7,4 7,9 3,B 6,2 8,7 -1,1 3,4 4,7 2,6 1,7 9,2 0,6 2,7 2,3 2,5 4,5 3,9 -1,3 -1,3 4,0 4,3 7,4 1,C 3,4 -1,6 0,1 9,8 9,4 6,8 7,0 1,1 -1,6 9,9 9,C 5,6 0,6 2,7 6,7 1,3 6,3 9,1 3,5 -1,3 8,8 -1,5 8,C 3,6 8,0 4,4 4,1 2,4 -1,6 9,8 -1,3 1,B 3,7 -1,0 5,C 5,3 5,1 0,0 2,6 3,8 -1,5 3,8 -1,1 6,C 8,3 -1,6 7,2 -1,9 3,3 9,5 4,9 6,3 3,4 -1,3 -1,2 3,B 0,3 4,3 4,6 0,3 6,B 4,4 8,6 -1,0 0,2 8,2 9,B 4,5 2,0 4,4 8,4 7,B 6,6 2,2 5,0 9,8 0,5 -1,8 1,1 5,7 7,2 9,B 6,5 9,9 7,C 2,9 -1,8 8,9 5,B 9,B 8,9 1,5 0,4 5,B -1,8 -1,9 -1,8 7,3 7,2 5,3 -1,5 5,7 8,0 0,B 1,6 1,0 4,1 -1,2 4,B 4,5 2,6 0,B 6,4 -1,8 6,0 9,6 2,9 2,9 3,1 3,C -1,0 7,1 -1,7 0,0 6,5 4,8 -1,4 7,7 8,5 2,6 4,8 -1,7 -1,9 -1,2 9,C 7,C 2,0 9,5 5,6 1,C 8,4 5,C 7,B 2,4 1,0 2,2 7,9 -1,4 3,3 2,C 2,6 8,5 7,1 6,6 1,B -1,8 7,6 3,1 0,C 3,7 8,7 1,6 -1,4 9,6 0,9 9,7 4,7 3,1 0,B 0,7 0,6 7,B 3,7 -1,4 2,2 -1,9 -1,0 -1,3 1,8 4,3 1,1 7,C 5,2 0,1 0,1 -1,3 -1,4 5,0 4,C 8,8 -1,9 8,8 6,C 4,B 0,B -1,2 4,5 6,5 6,8 5,1 5,2 6,7 2,C 8,C 2,0 0,8 4,7 1,3 8,6 9,1 0,B 9,C -1,5 -1,8 2,C -1,6 -1,6 -1,7 9,C 5,7 1,0 5,3 -1,8 8,B -1,9 1,3 8,C 0,9 9,C 8,5 8,3 -1,7 4,3 0,6 7,1 4,7 -1,2 3,3 -1,5 2,7 5,4 -1,5 5,9 2,5 0,1 3,8 -1,1 8,8 9,9 9,1 -1,9 5,7 4,0 9,7 -1,1 6,4 6,7 7,B 9,3 0,3 1,7 9,C 3,0 0,2 0,7 2,7 1,C 7,4 1,0 7,C 8,6 6,5 6,B 0,6 9,4 8,1 -1,2 4,4 -1,1 8,B 0,1 5,C -1,1 -1,1 7,1 0,B -1,5 -1,8 0,2 1,9 7,9 3,9 -1,3 -1,8 8,4 -1,6 2,C 4,B 0,4 4,C -1,4 3,1 0,5 -1,3 4,4 6,2 5,6 1,3 7,9 1,B 1,1 0,0 1,B 6,B 9,5 5,0 5,9 0,2 9,0 -1,4 1,C 5,1 6,2 6,9 8,0 7,C 9,B -1,2 7,B 3,4 0,0 0,3 2,4 6,4 1,7 9,3 4,7 -1,2 3,4 7,0 9,C 1,3 3,2 9,9 0,1 6,4 5,2 7,3 1,3 5,2 7,2 8,6 9,9 3,B -1,4 4,3 3,1 7,9 1,0 -1,1 4,3 0,2 6,6 5,1 0,C -1,3 6,0 4,8 5,6 -1,1 -1,6 3,B 8,7 5,9 1,6 -1,4 4,C 1,1 -1,5 5,C 7,1 -1,2 9,7 -1,3 -1,8 7,B 7,9 3,4 -1,5 1,2 2,7 7,B 8,1 -1,1 5,6 -1,0 7,3 7,B 9,2 2,7 6,8 9,7 8,3 0,C -1,7 2,3 0,8 6,2 6,7 9,4 4,9 0,B 9,1 3,6 6,7 6,8 7,2 1,7 1,9 6,1 2,5 4,9 0,7 -1,3 6,3 0,9 4,8 4,3 6,0 7,B 5,7 7,5 -1,5 2,9 5,B -1,2 -1,8 2,0 9,C 5,5 5,2 -1,4 6,0 8,3 7,3 0,5 7,3 2,C 5,5 -1,2 -1,4 3,1 1,5 9,4 4,8 8,7 9,9 5,6 6,6 7,C 5,5 4,8 -1,0 9,9 3,6 0,8 9,5 3,C -1,8 1,C 7,B 4,8 -1,9 5,7 5,C 7,6 2,3 -1,0 7,0 8,C 5,C -1,7 4,2 -1,0 2,8 -1,8 6,2 -1,5 -1,5 4,B -1,4 8,6 7,0 1,B 8,3 6,0 6,9 8,6 6,B 3,2 -1,2 6,4 4,8 2,0 6,3 -1,2 2,5 7,B 2,3 -1,5 0,8 0,5 -1,6 -1,3 0,B -1,7 1,9 6,6 3,6 8,B 8,1 0,8 -1,2 3,2 1,9 7,8 5,9 1,3 2,B 6,7 6,B 1,0 1,C 2,6 5,C 3,2 9,2 -1,6 4,5 -1,9 2,3 0,C -1,2 0,2 9,5 3,C 1,3 8,6 4,9 0,7 9,6 8,C 6,B 9,5 3,B 0,B 0,0 9,9 3,4 3,9 -1,6 4,C -1,3 9,0 5,4 2,9 7,B 1,B -1,6 0,7 7,7 7,6 4,5 6,2 0,0 7,C 8,B -1,5 2,4 6,4 -1,0 1,4 0,C -1,5 8,3 -1,2 3,C 3,B 1,7 -1,4 5,4 9,2 4,6 -1,1 8,4 -1,8 9,5 9,4 3,C 9,B 3,8 2,9 1,8 -1,2 6,0 8,5 7,5 -1,4 6,C 8,1 4,0 9,8 9,6 3,5 3,C 6,6 2,C 6,B 8,7 2,B 4,B 0,6 5,8 3,1 6,7 7,7 -1,3 -1,2 -1,4 5,9 5,0 7,B 5,5 6,3 1,B 7,4 2,0 0,0 2,0 6,3 -1,0 -1,6 -1,9 -1,3 1,B 8,7 2,C 7,B 3,2 -1,5 8,5 5,0 7,1 3,C 5,4 1,B 7,6 -1,4 9,8 2,6 0,C 9,5 5,B 9,2 3,C 8,4 8,3 4,2 -1,0 9,C 0,C 7,4 3,1 1,5 2,3 3,B 2,C 7,6 7,1 -1,4 6,0 -1,9 7,4 6,5 1,5 4,1 -1,3 1,7 -1,5 0,1 6,2 -1,2 5,C 5,0 -1,9 1,0 4,6 3,4 8,1 1,2 6,7 2,B 7,9 2,2 6,9 -1,9 -1,7 5,9 4,B -1,9 -1,9 7,8 -1,1 7,B 6,5 -1,4 7,1 2,6 7,3 -1,7 4,0 2,0 -1,0 8,9 -1,4 -1,9 6,B 6,3 9,0 5,B 9,6 -1,3 2,7 8,8 8,B 7,5 8,0 9,6 9,0 0,1 0,6 8,4 8,7 9,1 2,6 7,2 5,5 0,6 -1,0 3,8 5,2 9,6 6,0 0,0 2,9 -1,5 -1,1 7,C 0,1 4,9 0,1 1,8 5,0 -1,0 0,B 4,C 1,1 4,2 2,3 -1,0 7,C 5,6 4,3 8,3 9,B 0,1 -1,7 0,5 4,4 5,4 2,5 7,8 -1,1 9,1 9,2 2,2 8,C 7,C 5,C 8,2 9,7 -1,8 6,8 -1,4 -1,7 -1,3 3,2 -1,3 2,5 0,8 6,2 1,6 1,C 2,6 0,1 9,0 8,C 0,1 -1,7 4,3 4,C 3,1 -1,3 5,2 6,6 -1,4 8,7 -1,8 8,1 1,4 9,7 8,7 0,9 5,3 -1,0 3,3 7,6 6,B 5,3 7,7 6,B 2,7 4,8 5,6 3,0 4,2 8,3 4,3 8,C -1,8 8,6 8,6 -1,0 5,8 8,6 -1,0 1,7 -1,2 5,9 6,6 8,8 2,0 4,C -1,2 8,B 7,C 0,C 6,6 3,C 2,2 4,9 9,B 7,B 4,0 -1,9 4,5 8,0 0,6 -1,4 -1,4 -1,4 1,0 4,7 1,B 3,1 2,5 1,9 -1,2 1,5 2,B 5,7 8,1 1,2 4,2 9,9 5,0 8,8 9,8 -1,0 -1,0 7,8 6,9 1,1 0,9 1,B 4,9 8,B -1,9 1,4 0,C 0,1 1,9 -1,7 3,3 7,0 -1,6 -1,1 8,7 6,1 8,0 -1,6 -1,7 -1,0 8,7 2,7 5,2 9,7 7,1 -1,1 -1,5 9,5 7,6 0,7 -1,4 5,1 2,B 1,2 0,6 8,2 4,0 -1,8 9,B 2,B 8,C 9,0 0,1 9,3 -1,1 9,0 8,3 7,0 2,C 2,C 5,2 0,C 2,B 6,2 6,B 4,C 0,9 4,7 5,B 2,0 5,9 -1,6 -1,4 -1,9 5,3 -1,7 8,9 -1,1 0,C -1,1 4,3 8,6 1,8 6,0 9,9 5,4 0,8 9,9 2,3 8,4 6,B -1,4 -1,9 5,B 4,C -1,1 -1,0 2,5 3,5 8,8 3,3 -1,8 3,B -1,1 7,C 0,8 -1,8 9,6 3,1 6,1 5,8 8,C 1,B -1,7 3,5 9,2 2,3 -1,8 8,7 -1,8 3,7 0,7 3,1 4,2 6,8 5,1 -1,3 8,6 -1,1 -1,7 7,4 8,7 4,7 1,4 9,B -1,0 5,6 6,9 -1,9 5,1 -1,1 7,9 3,0 2,8 -1,3 1,B 4,6 -1,3 8,B 5,B 5,1 5,B 7,8 2,9 2,5 -1,4 7,8 4,2 6,4 6,B 3,2 2,3 1,1 9,9 7,4 2,7 3,5 8,8 9,1 8,6 -1,8 0,9 1,2 -1,5 1,3 2,2 -1,5 -1,1 7,C -1,9 2,4 8,6 3,4 2,3 3,4 4,0 3,2 8,4 -1,7 -1,5 4,B 4,7 9,1 8,8 -1,4 5,C 2,1 7,3 0,5 5,9 5,4 0,2 3,C 7,B 5,0 -1,0 8,4 8,5 8,6 2,B 6,2 8,3 0,2 5,4 -1,0 -1,6 5,5 -1,9 -1,9 6,0 -1,1 6,3 -1,5 0,7 9,C 3,1 9,9 2,9 8,0 7,3 2,C -1,5 1,1 -1,0 3,7 9,6 9,6 9,6 -1,6 7,6 1,8 -1,2 8,0 0,B -1,1 -1,2 2,8 2,C 8,6 1,C 7,4 4,C 3,5 -1,3 4,2 3,9 6,6 0,B 4,C 9,B -1,1 0,9 1,2 -1,2 -1,9 0,8 8,B -1,4 3,0 3,B 5,1 4,B 8,B 4,3 2,0 5,3 3,C 0,C 5,2 -1,3 8,2 1,1 2,B 5,4 2,B 9,7 6,3 1,C 9,6 8,5 3,3 6,1 -1,1 4,9 1,2 9,7 3,2 1,0 -1,0 1,0 9,1 5,5 8,0 1,9 -1,3 -1,8 -1,5 7,C -1,8 2,2 7,B -1,5 0,3 3,3 0,8 0,7 -1,3 2,5 3,3 7,5 5,B -1,3 2,6 -1,9 0,8 -1,1 1,8 1,9 4,C 6,9 -1,6 9,B 9,C -1,1 3,C 5,6 7,8 2,0 2,4 7,8 1,1 8,6 1,2 7,0 1,4 2,9 -1,0 3,0 5,5 -1,9 3,1 6,8 2,8 5,7 -1,6 7,4 1,6 1,6 6,3 8,C 5,B -1,0 6,8 -1,7 9,C -1,9 1,C 4,4 8,3 8,0 -1,9 -1,5 1,C 4,0 9,B 3,8 8,3 5,3 -1,1 -1,4 3,B 9,C 7,B 1,C 6,3 1,9 8,1 1,2 -1,4 -1,5 8,6 5,B 9,4 8,4 0,9 3,B 3,7 9,7 2,C -1,1 7,2 -1,4 9,2 3,7 8,3 7,0 3,7 9,B 4,7 2,B 7,8 8,7 4,3 8,B 2,8 9,5 6,4 -1,8 0,7 5,3 7,B 3,8 0,7 1,4 -1,4 6,0 -1,2 -1,0 9,8 6,1 6,4 1,B 4,6 8,9 3,C 9,2 -1,1 5,C 1,B 1,3 -1,0 7,8 8,8 1,9 -1,9 7,C 0,C 6,6 -1,3 8,B 4,9 -1,7 9,7 0,C 8,6 3,8 4,7 -1,3 9,C 0,3 2,6 0,5 6,5 0,4 3,B 9,5 9,7 2,2 5,4 4,1 4,3 6,2 0,1 4,B 3,0 -1,1 5,6 0,3 0,0 1,1 4,4 3,C 8,5 7,1 6,C -1,3 7,3 2,5 2,B -1,9 4,B 2,5 4,3 -1,8 2,3 1,C 4,C 3,B 2,3 9,0 7,2 8,C 2,C -1,5 8,4 2,0 -1,5 -1,4 1,8 8,4 4,6 9,7 -1,6 1,C 0,3 8,9 8,B 3,2 0,9 1,3 4,1 7,B 3,5 6,9 4,6 7,C 3,2 6,1 3,B -1,3 7,C -1,2 0,7 8,B 4,5 2,3 5,1 2,9 2,6 1,C 6,6 -1,7 2,3 -1,1 1,9 -1,9 -1,6 9,B 8,5 5,0 -1,3 7,B 9,0 9,7 5,5 5,C 7,2 2,9 0,C 3,9 -1,1 7,C 5,B -1,8 -1,5 7,2 -1,2 1,4 6,1 -1,6 -1,6 -1,6 4,B 4,C 8,8 -1,4 -1,4 4,C 1,9 -1,3 -1,6 0,8 7,5 9,6 8,5 1,4 8,3 6,3 9,7 9,2 0,4 8,B 7,8 -1,0 1,4 8,C 6,0 2,0 1,5 5,7 -1,2 3,B 0,4 3,6 7,C 1,9 4,6 4,6 4,B 6,6 4,B 8,B 0,7 4,6 8,0 6,B -1,6 0,9 4,1 8,0 -1,3 3,5 0,4 4,B 7,C 6,0 2,5 5,0 -1,4 -1,9 4,5 5,1 0,7 3,4 3,B 1,0 7,B 3,0 1,2 -1,7 9,C 8,3 7,3 -1,7 7,B 2,B 7,5 6,C 5,7 -1,9 2,0 4,1 6,7 -1,8 6,1 3,4 -1,6 -1,5 9,0 9,4 6,5 1,7 -1,6 -1,4 2,5 2,4 4,8 6,2 8,C 7,C 2,1 -1,3 5,6 6,B 1,1 1,B 9,1 1,8 4,0 9,3 0,0 2,3 8,9 4,2 4,B 6,C 5,4 6,C 1,C 6,C 2,3 3,B 8,9 8,C 7,B -1,7 8,9 4,5 -1,9 6,C 1,7 -1,5 9,B 2,2 1,6 1,6 1,7 -1,9 3,C 2,8 0,1 7,B 0,B 2,9 6,8 -1,4 2,0 6,2 -1,0 9,0 2,8 8,4 -1,4 8,0 7,B 7,7 2,1 7,8 5,7 4,3 4,9 7,9 6,0 7,B 4,1 5,9 3,B 0,1 5,9 2,3 4,8 5,2 2,B -1,9 -1,2 1,4 0,7 8,6 -1,1 6,8 4,2 9,1 9,8 4,6 3,3 5,7 7,4 4,C 0,6 2,9 -1,5 -1,7 8,8 -1,2 9,8 6,3 6,C 3,5 -1,5 7,0 0,B 4,3 1,3 0,6 3,7 -1,3 7,8 -1,3 0,2 9,B 4,1 1,3 -1,0 5,5 -1,0 -1,3 1,3 -1,0 5,2 3,0 8,0 6,4 0,7 -1,7 -1,7 3,7 9,8 1,8 5,0 9,2 9,1 -1,9 2,B 1,1 0,B -1,1 6,2 2,1 -1,7 6,0 3,7 8,7 9,6 3,B 8,B 0,9 -1,1 2,3 6,6 1,2 3,2 6,1 0,7 0,5 1,5 8,3 -1,3 2,3 -1,3 5,C 4,1 0,4 -1,1 2,2 9,9 -1,1 9,4 -1,4 1,B 9,1 0,4 4,5 6,8 0,B -1,6 7,4 8,B 1,0 0,0 0,3 2,1 5,7 3,5 8,9 0,4 6,7 8,8 8,B 0,1 -1,6 -1,6 1,8 4,B 0,5 1,0 -1,0 8,2 -1,8 9,5 7,8 9,C 3,0 6,C 9,B 2,5 0,3 1,4 0,0 -1,1 8,C -1,2 1,1 8,8 1,3 7,3 1,B 1,1 6,3 8,3 0,5 -1,5 7,6 -1,8 -1,1 1,B -1,0 2,2 -1,8 5,9 4,2 9,C 8,0 2,3 -1,0 -1,7 0,B 9,8 -1,6 2,B 5,5 -1,7 9,1 0,6 8,5 6,B 2,1 9,C -1,5 7,B 1,B 4,C 1,B 7,9 2,B -1,6 5,9 7,C -1,5 8,3 0,0 4,3 6,2 1,9 4,5 5,6 8,7 0,2 7,2 5,5 4,9 4,6 8,4 0,8 8,B 5,0 1,2 4,1 1,8 1,B -1,1 -1,7 -1,1 -1,1 -1,2 3,6 -1,2 -1,5 5,2 9,1 0,6 4,2 -1,5 2,C 8,9 -1,9 7,9 4,B -1,5 7,9 0,1 3,C 2,1 9,5 3,C 2,B 9,1 7,4 -1,0 5,C -1,3 0,9 9,1 4,C -1,3 -1,6 7,8 -1,7 1,C -1,3 8,7 1,1 8,C 9,C 5,B 4,C -1,1 7,0 6,7 5,3 8,8 1,C 7,B 9,6 3,6 -1,7 4,7 0,2 -1,2 4,5 9,0 8,B 6,0 9,7 8,7 8,2 -1,1 7,3 8,C 5,8 2,2 3,1 2,C -1,4 9,B 6,2 3,9 0,3 9,B 4,6 -1,3 1,4 5,5 2,4 -1,2 -1,8 1,9 1,3 5,6 2,3 0,5 2,6 5,6 -1,0 1,5 5,7 1,9 9,C 5,8 9,B 3,1 5,B -1,0 5,8 0,B 9,1 7,8 1,6 7,2 -1,3 1,C 2,5 2,B -1,9 2,8 5,2 5,1 6,C 1,B 3,6 1,7 -1,1 0,C 9,C 0,0 4,0 -1,1 1,1 9,C 8,9 8,C 7,0 3,5 7,6 9,C -1,3 1,2 8,4 0,3 2,8 0,B 1,0 8,5 6,C 5,1 1,B 6,9 -1,4 0,B 9,8 6,5 -1,8 9,4 0,0 -1,5 2,5 1,B 8,3 3,3 4,5 0,5 1,8 -1,1 3,C 8,3 0,4 9,3 7,B 1,4 2,3 -1,9 6,2 4,B -1,0 6,3 7,4 5,1 -1,2 4,6 2,6 4,C 2,3 6,5 -1,7 3,9 1,1 -1,9 0,C 0,6 0,9 6,5 1,8 -1,0 1,7 3,7 9,B 7,B 1,C -1,5 4,0 2,C 0,2 6,6 4,5 1,5 6,4 -1,7 0,5 2,5 2,7 4,0 1,9 6,6 5,3 9,5 -1,0 0,2 2,B 8,4 -1,9 7,3 0,9 2,8 3,6 3,9 -1,9 6,6 8,9 6,B 5,4 6,6 9,B 9,8 -1,1 3,1 3,B 5,7 4,6 9,1 1,4 5,C 5,7 8,C 3,3 0,1 7,4 1,1 8,B 2,2 2,8 8,7 3,5 2,1 3,8 4,8 9,4 -1,4 6,9 4,1 1,6 3,0 1,0 0,3 5,1 9,B 0,B 7,9 0,3 -1,6 1,B 8,C 9,5 -1,0 4,0 3,B 1,3 8,B 6,3 -1,9 -1,5 -1,3 7,7 1,6 -1,7 6,B 5,8 8,8 9,B -1,6 5,5 6,6 4,4 1,B 0,8 4,8 8,C 0,8 2,6 -1,4 -1,7 0,8 2,8 8,5 -1,9 0,5 0,4 6,9 8,3 7,8 1,0 5,9 9,4 9,2 5,0 6,C 0,7 4,0 5,3 8,3 6,5 2,B 4,5 8,3 6,0 6,7 -1,7 7,9 3,C 8,3 -1,8 -1,3 9,B 3,5 -1,1 -1,0 0,4 5,B 5,0 3,3 4,5 8,B 8,6 -1,0 7,B 6,7 -1,2 -1,8 -1,0 0,B 8,C 7,2 9,0 9,B 2,9 -1,2 6,0 -1,1 -1,6 2,B 3,C 3,C 1,0 1,C 4,8 3,7 -1,2 1,B 0,0 -1,6 0,B 4,B 5,C 1,9 -1,8 2,2 -1,1 0,B -1,1 7,4 6,C -1,3 5,C -1,7 5,C 4,0 4,2 9,0 9,6 4,B 4,2 -1,0 7,7 -1,1 8,4 1,6 9,6 -1,3 -1,5 6,C -1,1 7,2 7,3 7,2 8,C -1,2 1,7 6,C 3,C 1,C 4,5 -1,2 6,0 5,3 8,0 1,6 -1,8 6,6 -1,1 0,B 9,B 4,1 7,3 -1,7 7,B 7,0 9,B 0,5 3,5 1,B -1,1 1,5 4,2 -1,6 -1,5 0,8 2,B -1,4 7,7 3,0 8,7 6,8 7,0 -1,7 3,9 9,1 8,3 1,5 -1,6 4,7 3,8 9,5 1,5 3,9 5,0 -1,2 4,7 -1,1 2,7 2,C 5,8 6,1 7,1 8,2 -1,1 -1,2 3,5 9,7 2,C 0,0 -1,1 5,9 3,B 5,4 4,B 4,B 9,2 1,0 5,2 1,3 -1,7 4,5 0,C 2,9 0,0 8,2 7,3 9,7 4,2 -1,2 5,6 0,4 0,5 3,B 4,6 5,7 3,6 6,9 -1,8 6,6 0,2 -1,1 6,B 4,8 5,7 -1,7 -1,2 0,9 4,2 6,1 2,3 8,B 0,9 5,C 2,6 3,1 -1,5 9,8 8,7 5,C -1,8 5,4 3,B -1,0 2,C 6,C 7,4 8,2 8,2 -1,4 1,4 1,C -1,3 9,6 7,C -1,3 4,2 4,5 9,3 7,4 0,4 0,1 -1,2 -1,9 3,0 1,7 6,C 0,1 0,8 5,B -1,8 6,4 -1,3 3,4 8,7 7,9 5,B 7,B 1,7 2,B 4,1 -1,6 5,5 8,B 0,7 -1,4 6,0 4,5 -1,8 3,3 2,C 7,4 4,B 4,C 2,9 8,3 6,7 -1,0 2,5 2,2 2,9 6,5 1,C 3,C 5,B -1,4 1,0 0,6 1,C 6,C 2,B -1,7 1,C 1,C 4,1 1,3 1,B -1,5 6,0 3,6 -1,8 1,5 9,0 -1,2 -1,3 8,B 0,C 6,2 1,B 4,1 5,B 8,C 5,6 -1,1 4,2 6,7 7,4 8,4 4,8 4,8 2,5 3,C 8,C 3,C 5,6 2,1 8,4 2,C 4,3 6,8 5,6 0,7 -1,8 8,C 4,7 6,5 8,2 6,7 8,B -1,0 9,0 3,4 -1,3 -1,6 5,B 9,2 4,B 6,7 -1,1 6,C 7,6 1,0 8,C 6,8 -1,8 -1,3 -1,6 -1,3 7,0 2,6 2,8 1,6 9,2 -1,3 3,6 5,4 1,0 7,B 7,6 1,6 6,7 4,7 3,3 7,8 5,7 7,3 9,2 0,C 7,B -1,3 9,7 2,2 9,7 4,C -1,4 3,3 2,9 1,2 -1,7 7,5 8,C 5,5 1,9 9,7 -1,2 8,6 4,9 1,C 4,4 -1,0 1,1 9,B 0,9 9,4 6,3 9,5 6,5 7,4 8,6 5,0 -1,8 2,2 6,9 4,4 7,7 6,C 7,9 5,2 9,B 0,B -1,4 0,8 0,5 6,2 -1,7 -1,6 2,B 0,C 2,4 -1,9 1,C 9,0 6,5 7,9 6,3 3,8 -1,0 3,0 6,9 8,9 2,1 5,9 2,C -1,3 0,7 1,0 9,5 -1,1 9,1 1,2 7,5 8,8 8,1 3,4 6,6 -1,3 6,3 -1,5 5,2 9,3 2,5 -1,4 8,1 6,7 -1,2 2,7 -1,8 0,0 0,3 5,2 -1,3 7,B -1,1 5,B 2,C 7,5 7,B 3,8 7,2 5,5 7,6 7,8 3,8 7,2 1,3 7,3 3,3 9,8 4,0 2,B 4,0 8,0 6,5 -1,9 3,0 6,7 -1,3 4,C 9,4 -1,8 9,0 -1,1 3,9 3,3 0,C 0,C 6,3 5,9 5,4 6,4 2,1 7,6 0,9 8,9 6,7 7,8 5,B 5,6 8,9 6,9 -1,8 -1,9 2,B -1,5 9,1 3,2 2,9 6,0 8,3 4,0 3,C 4,2 8,3 -1,9 6,B -1,2 8,0 8,1 8,4 0,6 -1,9 1,0 0,6 2,7 5,1 1,4 0,B 1,1 -1,3 -1,2 7,7 3,B 8,C 2,B 4,8 3,9 -1,7 1,4 0,2 2,1 2,C 7,6 2,3 3,B 3,9 3,9 5,C 7,8 4,3 9,B 8,6 7,1 8,3 1,C 0,6 7,C 0,3 9,C 3,3 1,8 7,C 8,3 9,8 7,7 2,9 -1,1 1,B -1,8 7,6 6,8 3,9 4,5 -1,8 -1,4 5,B 5,5 7,C 4,C -1,8 2,8 6,3 -1,1 5,6 4,C 4,1 7,7 -1,7 -1,2 5,9 1,B 0,C 2,5 3,4 8,9 -1,9 -1,8 9,5 9,0 7,0 -1,5 -1,9 2,3 -1,1 -1,9 5,5 6,8 -1,8 1,3 6,B 2,4 5,9 3,B -1,6 -1,8 4,C 5,1 5,B -1,0 9,1 4,3 8,2 3,C 2,8 5,2 3,B 4,0 3,B 4,0 7,B 8,2 0,3 0,5 9,C 2,3 2,6 0,B 7,0 8,5 -1,6 1,3 7,9 -1,7 2,3 2,7 -1,4 8,2 7,5 6,6 1,3 5,1 1,9 8,B 2,9 2,6 -1,5 5,B 2,8 4,9 3,B 9,0 3,9 7,8 7,0 -1,4 1,4 8,C 3,7 6,8 0,5 0,B -1,2 -1,5 6,7 4,7 -1,9 4,B 9,6 9,6 9,2 1,5 9,9 0,0 7,6 6,C -1,7 3,C -1,6 3,1 -1,9 -1,3 -1,5 9,B 2,0 -1,5 5,C 7,4 4,3 1,B -1,8 2,C -1,7 4,C 9,2 1,3 2,C 3,9 -1,7 5,C 2,0 4,4 3,8 3,B 3,6 -1,4 9,C -1,1 1,1 9,B 9,4 3,C 8,8 1,8 6,3 7,6 7,5 7,C 4,8 6,8 8,C 7,6 1,5 7,6 9,B 1,9 6,2 4,1 -1,7 -1,5 5,B 5,6 3,6 6,0 8,C 4,C -1,6 1,C -1,2 6,7 5,7 3,3 4,8 2,1 -1,2 -1,5 -1,2 4,6 3,C 7,B 2,0 -1,5 6,0 2,1 8,5 -1,1 6,7 4,7 5,6 1,9 2,B 1,B 4,0 0,5 2,4 7,5 0,3 7,9 3,B 2,8 8,7 -1,1 8,B 0,1 3,4 2,6 8,5 9,6 4,2 8,5 5,1 9,5 1,2 4,5 5,5 0,2 1,B 1,0 5,3 3,0 -1,0 7,3 4,1 8,6 9,B 9,1 9,3 5,4 3,B 7,C -1,0 6,B -1,3 5,8 3,C 5,8 3,6 7,B 3,B 8,1 9,0 -1,1 7,6 4,9 9,C 7,0 1,B 6,8 0,B 0,0 2,2 2,7 -1,9 -1,9 7,5 9,B 1,B 1,4 7,5 6,4 4,4 5,7 -1,7 7,3 2,B -1,2 -1,3 5,0 1,C 0,9 7,2 7,0 3,1 8,3 6,B 6,1 3,8 9,2 4,2 -1,7 -1,3 5,7 2,9 0,8 6,B 6,1 0,8 6,C 6,5 3,2 8,4 4,9 -1,6 4,C 4,B 9,2 4,0 9,3 7,0 4,1 7,1 -1,8 5,0 4,3 0,B -1,2 6,9 8,4 -1,5 6,3 2,9 8,5 0,6 0,6 0,B 3,4 -1,0 1,C 6,3 0,8 9,3 6,7 2,3 -1,6 -1,6 7,1 -1,5 -1,7 6,B 8,6 8,0 9,C 1,1 2,5 3,7 7,6 0,9 3,B -1,2 6,4 4,9 7,4 0,0 -1,2 9,0 1,1 9,3 -1,3 6,2 -1,2 7,5 -1,8 -1,9 7,C 9,4 4,6 -1,9 1,8 6,7 8,0 9,B 0,C 4,8 -1,8 6,B 6,B 7,B 2,C 2,4 3,6 5,B -1,7 9,C 8,B 8,1 2,9 0,B 6,3 0,2 -1,7 6,4 -1,8 9,7 -1,9 6,1 0,3 -1,7 -1,8 3,1 7,1 6,8 7,B 7,B 0,2 0,8 2,9 0,1 9,5 4,6 -1,0 7,6 2,8 2,9 2,0 6,8 -1,4 0,9 2,2 4,0 4,3 2,9 0,4 6,B 6,6 3,0 8,6 2,9 -1,5 5,2 4,0 0,0 3,8 1,B 3,9 4,B 1,B -1,2 5,6 8,B 4,5 5,2 4,5 2,C 0,C -1,6 4,8 -1,0 9,2 3,7 4,8 9,B 6,4 4,B 2,B 4,7 -1,9 -1,5 8,3 5,0 7,B 5,6 3,4 3,2 7,7 -1,2 4,5 5,7 4,C 9,4 4,7 -1,1 4,C 1,C 5,1 3,1 -1,6 4,C 8,B 1,0 8,9 -1,8 6,5 4,B 1,9 -1,7 2,2 -1,9 9,C 2,0 6,C 9,7 5,3 -1,5 7,1 1,1 -1,4 5,B 9,9 -1,6 4,1 8,2 8,2 7,C -1,8 9,0 9,3 8,B 5,C 9,6 3,B -1,3 7,8 3,5 3,2 2,7 0,7 4,7 8,8 3,2 5,7 5,C 2,3 0,0 -1,2 2,5 5,2 3,3 8,9 -1,8 9,9 3,5 -1,2 0,4 -1,1 3,7 8,4 6,B 0,6 9,B 5,C 2,B 3,4 -1,4 -1,7 0,7 5,1 6,B 1,2 2,3 -1,8 7,1 6,7 5,0 1,0 4,1 6,2 -1,3 8,0 4,2 0,9 0,9 2,4 1,6 6,B 9,4 2,C 1,6 -1,0 1,6 8,C 2,3 6,3 -1,0 1,2 9,C -1,3 -1,7 2,4 3,B -1,0 -1,0 -1,2 -1,5 -1,7 -1,7 5,B 7,0 9,3 9,1 -1,3 -1,8 4,4 -1,4 2,6 9,5 7,1 7,1 9,1 5,B -1,8 1,4 0,5 4,5 1,7 4,8 -1,8 6,1 8,6 9,5 5,2 -1,0 1,8 5,5 1,5 8,6 -1,3 8,3 -1,5 -1,9 6,B 8,C 5,4 -1,0 -1,8 8,3 6,2 2,3 7,0 -1,8 0,1 6,1 8,C 3,5 6,8 6,5 -1,4 4,B 7,3 2,B -1,3 1,9 4,8 -1,8 7,7 1,5 -1,7 -1,2 2,1 -1,8 5,3 2,5 1,B 2,9 -1,0 1,4 -1,5 7,6 9,4 2,5 -1,0 8,7 -1,7 1,8 5,2 2,C 7,B 1,5 5,C 3,9 -1,0 0,3 3,7 8,0 5,0 9,9 -1,1 2,2 3,B 3,2 1,9 0,3 2,6 -1,9 1,5 7,7 8,B 3,4 7,3 -1,4 -1,9 -1,9 2,0 4,1 -1,6 6,6 7,1 9,9 8,9 3,2 2,2 6,1 0,8 9,3 9,6 2,9 3,9 -1,1 -1,8 5,C 3,3 5,4 6,C -1,9 1,5 6,8 8,8 9,1 4,7 4,B 2,5 1,9 6,4 5,4 4,9 1,8 -1,6 9,B 9,6 2,4 2,5 0,0 -1,5 5,0 9,2 0,2 9,2 -1,4 1,2 -1,3 8,3 6,C 2,8 0,0 8,1 -1,4 6,5 -1,3 6,C 6,5 -1,2 4,8 9,C 8,4 9,C 1,9 -1,9 -1,9 6,6 8,C 0,8 9,0 2,6 -1,2 2,0 0,C -1,1 1,6 7,5 6,0 5,7 5,4 6,6 -1,8 1,B 3,C 2,C 6,8 9,C -1,8 8,2 -1,2 2,5 -1,4 8,B 5,7 -1,6 -1,8 0,C 3,5 -1,4 5,4 1,B 9,8 5,B -1,7 1,4 5,6 1,0 8,B 7,6 6,1 -1,1 2,0 6,9 5,B 1,6 6,1 8,7 1,9 1,9 1,C 2,4 -1,4 -1,8 5,8 4,7 2,3 -1,0 8,1 1,4 -1,3 3,8 4,6 1,8 9,B 8,1 4,8 0,1 5,B 4,9 7,0 8,7 1,B 9,6 2,5 -1,4 5,6 8,C 4,3 2,1 7,B 1,7 2,1 8,7 6,3 0,4 -1,9 1,0 7,3 2,2 7,B 6,C 0,9 0,8 -1,1 -1,8 3,B -1,9 0,6 5,B 0,C 0,1 9,8 -1,9 9,B -1,0 -1,7 4,B 7,7 4,2 8,8 0,C 2,7 3,B 0,5 -1,3 9,B 5,C -1,5 7,7 -1,7 1,6 6,9 9,3 1,3 1,3 6,4 4,4 -1,1 2,C 3,6 4,0 -1,9 1,1 5,4 7,5 -1,6 6,0 2,0 2,3 -1,1 7,1 -1,7 7,B 9,0 -1,6 5,3 1,C 2,0 3,7 1,8 1,1 6,1 -1,3 -1,8 6,B 4,2 5,0 1,2 3,8 0,0 4,7 2,9 2,2 8,9 3,5 4,B 2,7 1,C 5,B -1,0 0,B -1,8 2,5 9,0 1,B 5,9 6,6 3,5 -1,3 5,3 3,B 0,8 0,C 2,8 7,C 3,1 1,C 1,8 3,7 4,7 -1,2 5,8 7,C 5,2 8,1 3,B 1,C 8,9 3,8 7,C -1,4 4,C -1,1 7,5 3,1 1,2 3,9 3,B -1,3 4,B 0,B -1,4 6,B -1,8 -1,5 7,3 -1,2 -1,4 4,C -1,8 4,3 1,6 2,B 8,5 6,C 7,4 3,6 -1,2 1,2 3,B -1,3 1,4 8,2 2,B -1,2 3,6 0,B 6,2 3,B -1,5 5,1 2,C 7,6 4,9 9,6 -1,6 6,2 2,4 4,9 7,C 1,4 1,4 -1,8 -1,6 2,8 6,B -1,8 -1,2 7,6 3,1 4,B 2,8 9,8 9,7 -1,1 3,3 0,8 9,B -1,9 4,B 5,1 9,C 9,5 4,8 8,B 7,1 0,3 -1,6 1,9 -1,4 4,0 1,0 4,1 5,8 2,3 4,9 -1,5 -1,6 6,5 -1,4 1,3 9,4 5,0 1,0 7,7 6,9 2,B -1,6 3,8 4,5 2,6 8,6 7,2 2,6 1,5 -1,4 3,C -1,1 -1,4 4,4 1,9 8,B 9,1 4,3 6,1 9,7 -1,6 7,2 4,6 1,C -1,9 6,9 9,C -1,7 7,B 1,C 0,C 4,3 4,5 -1,2 -1,3 6,7 5,3 8,B 7,C 0,9 8,0 7,3 2,4 9,4 8,0 3,4 0,7 0,B 1,4 5,9 3,8 7,8 5,5 5,C 7,4 3,6 -1,9 9,1 3,5 0,9 -1,1 2,7 4,3 0,0 5,B 3,2 4,C 8,1 -1,8 4,6 4,B 2,C 5,C 7,4 4,1 7,9 5,8 7,8 9,0 0,8 1,7 2,B 6,7 -1,0 9,9 6,9 -1,1 0,B 8,3 -1,3 5,1 2,C 2,3 0,C 1,8 9,4 1,3 3,0 -1,5 0,8 9,6 1,5 9,B 7,1 0,9 9,4 9,0 6,0 6,9 3,2 3,0 2,7 1,0 -1,1 1,1 -1,9 4,B 8,1 4,0 5,4 1,1 -1,4 1,8 8,8 9,3 3,3 5,3 -1,7 0,B 9,8 8,C 9,9 4,4 2,8 9,2 2,8 8,7 8,C 9,0 9,1 9,4 1,8 -1,4 -1,4 -1,0 3,B 0,7 7,6 9,C -1,0 2,1 -1,8 1,4 4,1 -1,8 4,9 -1,4 6,2 3,6 6,0 6,5 4,3 0,C -1,2 -1,1 6,C 0,0 3,4 0,7 -1,4 -1,1 8,0 8,5 0,C 2,B -1,7 -1,1 4,C -1,1 6,3 -1,2 4,5 5,5 -1,5 4,5 -1,6 1,B 2,2 5,3 9,2 -1,6 6,C 2,4 4,3 5,1 9,1 9,B 9,0 8,3 1,7 -1,7 4,0 4,3 2,6 9,1 -1,9 2,4 8,9 5,B 1,5 0,6 5,1 -1,1 -1,7 2,8 8,1 0,8 7,4 0,0 7,B 9,B 3,C 3,0 7,8 0,B 0,5 3,B 0,8 2,2 2,5 1,4 7,3 9,0 8,7 7,0 2,C 1,6 7,8 2,C 9,B 5,2 7,8 -1,7 -1,2 5,3 1,5 5,2 6,9 4,7 2,2 3,C 0,4 7,9 8,4 0,3 8,9 6,C 0,C 9,C -1,1 6,0 4,0 3,2 -1,6 7,6 9,8 5,4 4,1 -1,8 -1,2 8,2 5,8 3,7 1,0 -1,7 0,2 1,C 8,8 7,5 0,4 5,0 6,1 4,4 8,B 8,C 5,9 -1,4 6,0 5,C 9,0 -1,4 4,2 4,C 6,C 6,7 5,9 2,1 -1,0 1,3 6,4 8,C -1,3 3,7 3,5 2,6 9,4 5,3 4,3 0,B 7,4 3,3 6,8 7,B 5,3 5,6 -1,2 3,0 9,1 1,9 5,9 2,6 -1,1 2,B 9,2 6,4 0,7 0,9 6,5 8,5 3,0 7,9 -1,5 9,0 6,4 3,6 5,C -1,6 9,1 2,9 4,1 -1,0 -1,4 0,B 2,2 -1,9 2,4 2,C 5,1 4,C 7,8 8,8 2,B 6,B 4,6 7,0 2,1 -1,0 3,B 9,8 -1,3 6,8 3,8 -1,9 2,B 2,0 4,0 6,C 9,8 -1,0 3,4 5,0 9,9 4,5 -1,1 2,5 4,6 1,0 6,6 -1,7 9,5 6,1 1,2 -1,0 1,C 6,2 9,5 7,7 5,1 5,6 -1,1 3,8 3,1 2,C 6,C 0,B 1,6 2,6 1,0 9,B 8,0 3,C 2,B -1,7 8,3 5,9 9,5 7,9 5,4 -1,6 3,0 6,B 3,2 7,3 3,C 6,6 2,C 3,2 9,3 1,0 3,2 7,B 7,0 -1,4 6,7 8,2 6,4 1,5 7,4 -1,3 5,C 7,2 6,2 -1,5 1,0 -1,9 -1,9 4,1 1,2 -1,0 -1,0 2,4 2,3 2,2 3,9 5,C -1,9 3,3 -1,7 -1,1 -1,1 -1,5 4,9 6,5 3,4 4,C 0,7 1,B 9,4 3,7 -1,0 1,5 7,8 -1,6 8,3 8,8 4,6 1,B 5,7 -1,8 0,9 5,7 2,2 4,2 4,6 -1,7 5,4 0,5 -1,1 6,0 -1,3 0,0 1,7 7,7 9,2 6,5 5,8 0,9 6,4 4,5 5,6 7,C 0,0 3,7 0,9 0,3 8,5 -1,3 4,B 1,5 -1,9 4,6 1,0 -1,7 2,2 0,8 3,4 1,2 4,B 8,B 1,2 4,3 2,3 8,C 9,C 6,3 9,2 6,1 0,9 3,B -1,8 0,3 5,B -1,6 5,6 -1,6 4,C 9,5 -1,4 3,2 1,7 2,7 4,5 2,5 -1,2 3,B 0,C 6,0 1,8 9,B -1,4 5,0 8,B 8,2 8,4 7,5 -1,1 1,5 4,3 0,0 -1,3 2,6 -1,3 1,3 5,8 -1,0 8,7 7,8 3,2 -1,0 4,6 4,9 7,0 6,5 4,4 4,C -1,8 0,B 2,9 6,6 9,8 8,C -1,1 8,8 0,3 9,0 -1,2 -1,2 7,8 4,3 2,C 1,B -1,1 -1,5 2,6 4,9 2,3 4,9 8,1 4,3 -1,4 8,5 6,C -1,2 3,2 -1,6 7,C -1,5 3,C 2,0 7,3 6,3 8,5 -1,2 -1,3 1,2 9,1 -1,1 4,8 -1,9 9,0 -1,8 -1,3 6,B 0,8 3,4 0,5 -1,0 5,5 9,7 3,B -1,2 9,C -1,7 9,C 6,C 5,7 -1,3 7,0 7,0 1,3 8,B 3,2 8,9 1,4 -1,5 -1,9 7,8 1,8 9,C -1,1 -1,3 4,2 0,1 -1,5 5,4 0,2 2,C 4,B 1,9 6,B 4,4 7,3 0,4 3,C 9,3 7,9 0,C 6,6 5,3 1,7 9,0 9,3 -1,2 3,B 3,4 -1,8 2,6 3,6 7,3 -1,6 -1,5 5,8 1,7 9,0 1,3 -1,9 -1,9 8,9 -1,6 3,C -1,0 4,7 2,9 8,9 4,C 5,3 6,3 9,0 -1,8 6,6 0,7 1,4 0,B 3,2 -1,6 -1,6 5,2 6,2 -1,4 0,0 1,8 8,C 2,C -1,0 1,4 4,5 6,B 2,5 9,9 0,9 0,4 5,4 8,8 1,3 -1,0 6,6 4,3 -1,1 0,4 6,2 6,C 5,B 7,C 2,4 6,3 5,B 1,4 -1,8 4,8 9,3 4,7 1,4 6,C 0,0 1,9 8,8 4,1 1,0 1,C 1,1 1,C 9,0 5,B 3,C 8,5 9,0 5,9 1,5 7,4 2,6 -1,2 1,6 3,2 3,6 7,4 4,6 5,1 0,3 9,C 5,9 -1,4 1,2 8,4 6,4 -1,4 -1,6 3,4 9,6 2,B 7,2 -1,3 5,0 6,B 4,4 9,1 5,5 -1,2 4,7 3,5 6,1 2,5 2,B 7,8 3,B -1,1 -1,5 1,4 0,3 1,0 -1,2 0,C 6,6 -1,8 7,7 1,6 7,C 3,1 5,6 7,3 -1,2 -1,8 3,8 1,C -1,0 5,7 -1,1 2,8 9,C 2,3 9,1 7,2 1,B 5,8 3,5 9,9 6,1 3,8 0,1 1,7 0,7 1,B -1,0 5,C 8,C 1,9 -1,0 0,C 1,0 3,9 -1,9 9,B 3,6 -1,1 6,B 9,6 2,B 0,3 5,1 -1,9 0,B 9,6 7,0 9,3 9,B 9,0 8,5 4,C 9,9 9,7 -1,3 -1,9 4,B 6,0 -1,8 8,9 5,5 -1,8 3,C -1,1 0,B 1,6 6,9 9,9 4,2 -1,6 4,9 7,2 -1,3 2,0 6,7 -1,8 -1,0 -1,8 7,4 6,2 3,B -1,3 9,C 0,C 2,2 2,B 1,2 6,8 1,5 -1,1 0,8 -1,7 1,2 1,7 2,4 6,B -1,8 -1,2 -1,6 -1,5 9,3 0,B 6,8 -1,4 5,2 9,5 6,1 -1,6 1,4 7,B 4,3 1,1 6,B -1,6 5,9 1,5 0,2 -1,6 9,2 9,3 0,7 1,2 -1,0 4,C 5,6 -1,3 9,2 1,4 3,4 0,C 1,0 8,0 1,6 5,3 9,B 9,9 0,8 7,1 0,8 -1,1 -1,0 3,B -1,8 0,C 8,6 -1,4 6,4 0,C 6,9 -1,8 6,1 6,9 7,0 -1,2 3,C 9,0 4,C 2,7 8,C 4,C 4,B -1,5 0,0 7,9 0,9 1,C -1,8 0,2 -1,2 -1,1 5,B 5,C 7,6 1,6 9,4 4,1 2,7 4,2 3,8 6,9 5,5 2,2 9,8 0,2 1,B 0,C -1,0 9,4 -1,2 2,5 1,C 8,7 -1,1 7,5 4,4 6,B 0,B -1,8 6,0 6,C 6,3 3,1 1,7 1,6 5,1 8,C -1,3 -1,9 7,2 7,7 0,8 -1,3 8,B 3,5 -1,2 2,C -1,8 1,5 7,C 5,1 -1,0 2,6 7,C -1,0 1,7 1,B -1,4 0,1 4,0 1,C -1,3 8,C 1,3 6,9 -1,6 9,4 7,7 5,8 -1,2 8,7 4,8 2,9 1,B 2,9 0,3 5,2 9,5 9,2 8,4 9,7 2,1 9,7 5,B 6,9 0,B 3,2 0,0 9,C 9,2 6,5 0,B 9,1 1,3 6,2 9,9 6,C 5,5 2,5 3,C -1,8 3,4 7,8 6,7 2,4 1,B -1,6 0,3 1,0 5,6 2,8 -1,8 6,C 0,C 7,5 4,5 9,5 9,B 9,5 -1,1 -1,3 0,9 3,8 6,6 -1,0 0,2 3,B 8,5 -1,8 0,2 4,5 -1,7 3,C -1,8 6,0 -1,5 2,5 -1,1 4,5 7,7 4,5 2,6 8,B 4,6 3,3 4,2 4,B -1,7 -1,7 5,C 5,B 1,0 7,1 5,C 6,0 -1,2 -1,7 1,9 0,5 9,1 0,0 7,5 8,3 -1,3 1,C -1,8 -1,1 8,2 4,B 7,4 0,B 6,0 3,7 1,C 6,C 0,4 7,8 8,1 -1,7 7,7 5,2 2,0 4,C 4,C 8,B 9,0 2,6 5,6 0,B 6,9 8,8 6,4 -1,7 6,0 7,4 5,5 -1,3 -1,5 4,7 8,4 8,3 7,6 7,C 6,3 -1,6 0,0 7,0 4,6 4,C 3,6 6,8 4,0 -1,2 4,3 9,4 4,9 -1,3 9,0 1,0 0,0 -1,0 4,5 0,C 3,8 5,0 2,B -1,7 7,C 6,B 3,8 -1,9 2,5 -1,6 4,8 -1,6 9,1 5,3 4,6 2,9 7,C 3,5 5,2 5,C 7,8 1,2 3,9 7,9 4,2 7,2 5,B 6,4 1,1 9,8 6,B 8,1 3,4 6,0 4,6 3,C 0,8 2,C -1,0 0,5 3,6 1,8 5,B -1,4 1,9 6,8 8,3 6,2 -1,5 7,5 4,1 4,3 -1,8 -1,6 1,4 -1,0 9,C 7,C 7,1 3,8 1,9 5,9 7,B 4,5 7,2 8,1 -1,0 9,5 -1,5 1,3 -1,1 3,C 4,4 6,2 1,0 2,8 6,2 9,C 3,8 5,9 -1,7 6,8 5,8 -1,0 -1,0 6,C 8,3 5,C 8,C 6,4 7,8 6,B 2,8 8,B -1,7 -1,7 3,8 8,6 4,C 3,B 6,2 -1,9 8,B -1,0 0,4 -1,2 1,4 2,3 3,2 -1,9 5,7 0,B 0,C 3,3 -1,7 -1,3 -1,9 6,0 8,2 2,2 0,7 3,7 -1,6 -1,1 -1,1 9,1 3,6 7,8 5,5 -1,1 6,3 -1,7 1,B 2,B -1,7 1,B -1,0 5,2 8,C -1,9 2,9 -1,5 -1,4 0,C 3,4 5,B 7,C 0,B 7,2 -1,6 0,3 8,3 7,4 0,5 0,6 6,8 -1,5 3,8 6,3 3,9 7,C 8,1 7,C 9,B 7,8 3,B 3,4 1,1 8,1 5,7 -1,1 3,8 7,7 8,B 6,2 0,1 5,0 8,B 5,4 8,3 9,8 5,1 9,9 4,5 8,7 -1,4 8,3 6,8 2,0 -1,5 -1,4 1,9 9,2 -1,3 4,8 1,8 5,7 2,0 4,8 4,C 8,4 7,0 5,8 2,3 5,C 0,7 -1,0 9,3 3,0 3,5 7,B 8,5 0,0 -1,9 -1,9 9,C 7,1 1,2 4,4 1,B 9,3 1,5 2,6 9,1 -1,4 2,6 -1,6 7,6 7,C 1,4 5,1 4,5 1,C 5,1 8,0 9,1 2,8 8,2 0,6 7,0 2,4 1,C 9,C -1,6 9,C 2,C 7,B 4,3 9,5 2,2 8,0 3,7 5,0 3,3 4,4 6,1 6,0 -1,9 6,B 8,3 6,2 4,1 2,1 8,B 2,5 1,1 7,1 5,0 4,B 1,C -1,1 0,1 4,B 6,7 0,C -1,7 5,6 7,B 5,5 0,4 7,C 2,2 5,7 0,5 2,C 9,2 5,4 0,B 9,6 8,B 5,B 8,C 0,2 1,5 6,1 9,7 6,5 3,B 1,5 9,B 2,2 7,B 9,2 1,7 1,2 -1,5 5,2 4,C 7,B 3,3 2,1 3,3 8,4 5,4 5,8 5,8 4,B -1,4 1,B -1,6 0,2 4,6 -1,4 0,5 7,8 1,1 6,3 0,5 8,B 2,1 8,6 5,B 3,C -1,8 3,0 8,2 4,9 4,C 3,4 0,1 4,7 1,C -1,1 -1,0 7,B 5,8 2,1 9,6 5,3 2,B 1,2 9,5 0,8 7,C 7,C -1,2 -1,8 7,C 6,B 8,5 -1,5 3,3 7,C 1,8 7,2 -1,1 -1,1 -1,2 9,6 9,4 7,4 5,5 2,B 1,5 6,3 -1,9 -1,8 6,8 5,2 2,B 2,B 3,2 3,9 7,0 5,3 5,0 0,1 4,5 3,7 -1,4 5,4 6,1 -1,0 6,6 7,9 8,5 1,9 -1,2 9,3 7,1 6,B -1,2 -1,1 1,8 5,C -1,5 5,6 2,9 -1,5 -1,8 7,9 4,5 -1,1 -1,3 0,1 4,3 3,7 -1,3 0,7 1,2 9,0 5,7 1,C 6,2 3,3 0,2 -1,5 5,8 3,6 2,C -1,6 9,4 1,1 6,8 9,B -1,8 0,1 6,6 -1,0 1,C 4,9 3,1 2,9 3,C 0,8 -1,6 9,B 7,3 9,6 0,C 1,C 5,B 3,8 0,C 3,8 5,4 4,C 9,0 3,B -1,5 3,C 3,9 7,4 5,C -1,1 1,6 2,C 7,4 7,7 5,2 -1,5 -1,9 9,B 3,3 7,6 -1,9 7,4 5,8 6,6 2,9 0,9 7,2 8,2 9,6 6,2 -1,4 3,C 7,4 8,C 4,B -1,1 7,9 4,8 2,4 3,1 3,5 9,1 6,B -1,0 6,B 2,5 5,B 3,0 6,C 7,5 -1,2 6,4 9,3 8,C 7,0 -1,6 4,2 8,9 -1,9 -1,7 -1,3 8,1 9,C -1,2 4,B 3,5 7,9 -1,2 5,6 6,2 7,9 7,6 8,8 4,1 -1,6 8,1 1,2 3,6 9,5 7,6 2,8 8,B 2,7 -1,2 5,B 5,B 2,8 2,1 5,0 -1,7 4,2 1,5 -1,8 1,3 5,5 8,4 -1,5 0,3 6,4 3,1 8,5 2,3 1,1 2,C 9,9 -1,1 3,5 7,2 -1,9 8,B -1,1 3,0 5,0 -1,7 1,2 8,2 7,7 5,C 4,4 -1,2 8,1 4,7 -1,0 -1,0 4,9 8,6 -1,0 1,C -1,9 0,B 7,8 5,2 3,C 8,B 6,4 9,C 2,B 7,B -1,0 -1,4 1,C 0,C 9,0 -1,2 9,6 4,6 1,0 8,9 6,7 6,8 6,5 8,5 0,7 3,2 -1,8 4,2 3,C 0,0 2,B 2,5 8,6 -1,1 3,B 8,B 1,3 0,1 2,2 0,B 3,C 8,0 5,8 4,9 2,B 5,C -1,2 0,8 3,0 5,9 4,6 1,8 9,2 -1,5 8,2 1,C 8,1 1,7 5,6 8,6 9,5 -1,4 -1,8 1,7 -1,1 8,1 -1,4 0,5 -1,2 -1,8 4,3 6,B 6,7 1,9 -1,1 2,C 8,1 -1,8 7,3 9,5 8,2 2,B 7,4 4,B -1,5 4,3 1,6 1,C 7,C 2,2 6,4 9,8 9,B 4,C 6,3 8,7 2,1 -1,2 3,B 2,C 0,B 5,3 1,C 2,5 3,2 8,6 3,B 2,B 9,4 1,3 -1,4 -1,0 7,9 4,4 8,0 6,3 -1,7 7,C 8,9 0,2 8,5 1,3 0,1 3,B 3,3 5,C 7,5 1,9 5,9 7,7 5,6 2,9 7,4 -1,9 -1,8 3,4 4,3 6,B 6,1 3,7 5,2 1,7 -1,6 7,9 4,8 7,C 1,7 9,B 9,8 0,2 6,5 1,3 -1,1 3,1 3,2 -1,2 -1,9 -1,9 4,B 1,8 -1,1 -1,7 6,7 0,4 4,2 -1,2 7,C 2,B 7,4 2,7 5,4 7,C 5,2 1,6 0,7 7,0 4,2 4,C 8,B 6,0 3,0 3,B 1,C 5,B 8,B 9,B 9,4 -1,6 5,4 8,7 2,8 2,4 -1,5 7,5 3,5 2,B 4,B 6,C -1,0 3,8 7,6 1,7 4,8 1,B 0,8 5,9 5,B -1,0 9,9 9,4 3,C 3,0 1,2 1,7 0,C 0,B 6,B 7,2 8,2 -1,5 2,3 6,6 2,9 3,9 1,1 -1,1 7,7 -1,7 -1,5 6,0 3,1 -1,2 1,1 4,B 2,7 0,C 2,2 6,6 1,C 5,C 8,B -1,1 6,1 5,C 5,B 4,8 9,B 5,2 6,3 7,1 8,2 4,1 3,2 -1,4 5,B -1,9 -1,4 5,9 7,7 3,1 7,0 -1,6 7,0 9,6 0,6 -1,2 5,5 4,C 6,B 9,B 6,0 5,7 3,B 3,1 5,C -1,1 7,C 5,5 0,8 1,8 8,6 -1,8 3,1 4,4 6,4 -1,4 4,3 3,0 8,C 5,C 0,5 3,5 9,B -1,0 0,0 6,B 4,7 8,B 0,3 0,1 -1,3 8,5 0,4 9,0 -1,8 7,5 0,2 5,2 8,4 3,8 0,1 1,3 2,9 4,0 1,4 -1,0 7,C 8,8 3,4 7,8 0,B 7,3 7,B -1,1 7,1 -1,6 1,9 6,0 6,7 1,0 6,8 3,5 -1,4 5,6 4,B 6,8 4,B 1,B -1,5 7,B 6,3 -1,0 -1,0 -1,4 5,9 2,3 8,3 -1,8 6,B 0,8 3,3 2,2 9,8 6,3 -1,9 0,B 0,B 3,1 3,B 1,8 4,9 -1,8 3,9 -1,7 6,7 4,9 9,0 0,C 9,9 9,4 1,7 -1,1 1,3 8,C 1,7 9,9 2,9 9,B 6,B 4,3 1,9 4,B 2,6 8,C 5,6 -1,7 3,1 1,C 6,9 -1,5 9,4 8,1 2,C 7,B 0,4 8,C 3,9 -1,7 0,0 4,3 9,2 6,3 0,8 2,3 8,1 7,6 1,2 3,C 9,6 7,B 8,C 5,0 5,1 -1,0 2,7 1,C 6,1 8,2 3,3 -1,7 8,8 7,7 6,C -1,2 3,9 -1,4 2,C 5,B 3,5 -1,6 9,5 -1,0 2,1 9,8 1,C -1,0 8,1 7,5 3,7 4,B 4,0 8,8 6,B 5,C 7,C 6,5 -1,5 2,C -1,1 9,B 6,7 9,8 5,C 4,4 7,B 5,C 5,2 0,1 1,2 0,2 0,4 -1,8 5,1 6,2 3,0 0,1 2,8 5,C 5,5 9,C 3,9 4,9 1,C -1,5 1,2 7,6 -1,1 3,C 6,3 1,5 8,7 -1,7 1,B 5,3 1,5 2,B 7,B -1,2 1,7 -1,1 2,5 -1,8 9,8 9,B 8,4 8,6 -1,9 0,C 5,C 6,1 0,2 1,6 -1,6 4,C 1,5 -1,2 5,3 4,4 -1,9 -1,0 -1,0 -1,3 5,3 3,4 1,6 6,2 1,C 6,6 6,9 5,1 4,3 6,6 -1,8 6,C -1,0 -1,1 -1,9 0,6 -1,1 7,7 1,5 6,2 -1,0 -1,6 1,1 5,3 1,C 7,9 6,0 6,5 5,7 8,6 1,9 4,3 -1,2 9,0 4,1 9,1 4,9 2,1 2,B -1,3 9,8 9,9 -1,2 7,6 6,2 4,7 -1,4 4,8 6,B 5,9 0,3 1,0 -1,3 5,9 9,5 2,2 -1,4 5,0 3,B 9,C -1,7 4,B 5,C 0,9 5,8 9,C 3,5 4,3 6,5 5,2 7,1 6,9 1,4 -1,1 -1,1 -1,4 -1,8 2,8 3,C -1,6 6,0 9,4 9,0 7,B 9,4 -1,0 4,B 4,1 3,C -1,2 7,7 -1,8 3,3 -1,3 -1,9 -1,1 0,6 9,7 -1,8 4,3 4,B 7,4 0,B 5,6 -1,1 5,8 5,C -1,3 4,5 8,3 4,6 -1,3 -1,6 8,C 2,3 3,B -1,6 -1,2 4,B -1,2 3,8 3,8 0,4 6,4 7,4 0,7 5,4 5,9 -1,3 0,B 8,3 8,8 2,3 6,4 4,6 3,B 2,6 5,6 9,3 7,C 2,C -1,9 4,3 1,C 8,B 2,B -1,2 9,C 9,B 0,5 6,6 5,1 4,7 -1,0 -1,8 9,B 5,5 5,C 8,0 -1,6 -1,9 0,9 9,7 -1,8 -1,8 3,6 9,4 -1,6 5,3 3,6 1,C 9,3 8,C 4,C -1,2 8,6 7,B 8,7 4,B 5,C 9,1 4,3 7,C -1,7 7,2 7,3 7,C 2,9 1,2 7,5 7,4 6,C -1,5 6,6 9,5 0,7 6,C 3,3 3,2 1,4 -1,8 3,8 -1,5 5,2 5,7 3,0 -1,8 4,7 -1,1 1,7 0,1 9,C 0,1 2,9 6,4 9,3 2,B 6,9 5,1 6,9 4,C -1,3 3,5 9,B 2,C 0,9 1,6 4,7 -1,6 3,2 -1,8 4,3 9,B 0,8 9,7 8,6 4,8 0,C 8,C 6,0 4,6 0,C -1,9 4,0 0,6 -1,3 2,4 6,8 2,5 6,2 -1,0 5,6 0,8 -1,1 -1,8 5,B 2,0 6,B 9,B 5,B -1,0 8,8 -1,0 5,3 8,2 1,2 1,3 1,7 -1,8 7,4 9,9 2,C 7,3 -1,6 6,7 2,B 0,4 4,B 9,8 7,C 4,0 8,6 -1,1 7,1 9,3 1,9 2,2 -1,1 5,2 -1,5 7,0 1,8 0,4 -1,7 0,2 7,2 6,0 -1,2 7,C 2,B 4,4 -1,0 2,3 4,8 5,5 2,2 8,2 8,C 1,B 7,3 4,0 -1,8 5,0 0,0 7,4 9,B -1,9 -1,9 1,5 -1,9 3,7 4,B 7,1 7,1 3,3 4,C -1,5 -1,4 2,0 0,5 0,9 2,C 3,7 8,4 7,9 8,0 3,B 7,4 8,6 3,3 3,5 5,4 3,9 -1,7 1,6 -1,5 4,B 2,B 6,3 1,8 6,8 6,1 7,1 9,3 6,1 -1,6 0,7 6,B -1,6 9,C 3,0 0,9 5,0 1,B 1,2 6,1 0,3 -1,5 -1,9 7,5 2,3 0,1 5,1 -1,7 6,C 5,C 1,B 4,0 8,C 0,3 2,8 4,2 6,5 1,5 2,B 8,B -1,1 6,1 -1,9 1,8 -1,5 5,8 -1,6 7,B 7,1 2,9 7,2 8,C 1,C -1,6 8,9 1,5 3,C 4,C -1,5 0,8 6,5 -1,5 -1,6 5,7 5,5 7,2 1,5 -1,3 2,0 9,7 3,3 9,3 7,C 4,C 9,8 8,5 7,9 7,5 3,C 0,C 3,7 3,B 1,8 6,1 6,8 -1,3 8,5 -1,5 9,4 -1,0 -1,3 0,3 7,4 -1,1 1,B 3,B -1,9 -1,6 5,0 8,2 1,C 9,9 2,4 6,0 2,5 -1,0 6,5 0,1 8,9 4,8 7,7 0,4 -1,5 5,C 3,8 -1,2 1,8 1,7 1,9 1,4 6,9 2,5 7,B 5,1 3,5 3,4 2,0 4,9 5,3 9,5 5,9 -1,1 9,2 1,1 3,8 2,1 3,9 6,7 9,7 4,2 7,4 7,B 9,3 4,B 0,2 8,4 1,5 4,5 1,B 8,9 8,B 9,8 -1,0 0,4 3,3 2,0 -1,9 7,8 8,C 8,4 4,1 5,5 -1,4 -1,5 -1,2 2,B 7,B 2,3 2,C 4,4 7,3 0,7 1,8 0,B 6,C 8,3 0,4 6,5 1,3 4,6 9,4 -1,4 8,8 1,2 8,B 4,3 1,8 6,2 5,B -1,6 -1,1 5,B 1,8 0,8 3,9 5,8 3,4 9,C 9,B 7,3 8,0 8,C 0,2 -1,1 6,2 6,5 1,B 7,9 1,2 4,B 7,C 3,4 4,9 3,C 0,B 0,B 7,5 -1,0 9,6 2,1 -1,4 -1,4 7,9 2,7 0,9 7,8 7,2 9,1 2,B 8,3 8,7 3,3 -1,3 9,8 6,C 3,0 4,6 4,2 0,B 6,7 -1,9 9,B 3,9 9,6 3,5 7,8 5,1 6,4 2,3 7,2 5,7 2,B 5,5 1,1 3,0 3,1 -1,6 1,0 9,B 4,1 8,0 9,1 4,9 1,1 3,7 8,3 -1,0 2,C 8,0 1,6 1,C 5,B 2,C -1,2 6,5 9,3 5,B 9,1 4,9 5,7 9,B 7,3 7,3 -1,7 2,9 5,B 3,5 3,C 2,3 9,6 6,9 7,4 5,0 0,1 8,1 5,8 -1,6 7,9 9,5 0,B 7,3 9,8 9,2 -1,1 2,C 9,5 -1,6 0,3 5,9 -1,1 2,B -1,4 0,0 -1,1 -1,7 7,5 0,C 9,C -1,7 6,4 3,2 0,3 2,4 -1,4 9,C 4,1 0,9 -1,8 2,5 0,6 3,6 2,3 0,C 4,9 -1,2 -1,5 1,C 2,6 3,B 8,8 2,9 7,6 -1,3 0,B 0,5 6,2 2,0 -1,3 5,B -1,8 9,1 2,5 7,B 8,C 6,9 -1,5 6,4 7,2 4,6 7,B 4,0 -1,1 9,3 -1,9 -1,9 1,3 4,8 0,1 -1,6 7,8 1,5 1,5 2,5 -1,5 -1,0 -1,6 8,C 0,4 1,5 -1,3 9,C 2,4 7,8 4,B 1,9 9,C 1,8 0,B 5,0 6,5 4,0 -1,0 2,7 6,B 8,0 6,0 6,8 2,C 0,1 9,3 3,0 -1,2 4,8 -1,2 2,B 4,4 -1,0 -1,2 9,5 4,0 7,C -1,3 1,3 5,9 3,B 2,1 5,0 8,1 6,6 9,B 7,5 7,7 9,2 8,7 5,4 -1,9 -1,3 5,9 1,C 2,7 8,0 2,B -1,3 2,8 2,9 6,1 4,9 0,8 9,3 3,C -1,1 0,8 3,5 6,9 2,0 7,B 5,3 9,0 6,B 8,7 8,0 6,4 -1,8 7,0 2,8 3,B 0,B 1,0 2,B 6,C 7,8 1,4 7,7 -1,4 3,9 2,3 1,8 2,8 -1,4 -1,1 3,9 5,0 8,B 3,0 8,7 7,0 2,4 4,1 3,C 6,3 2,B 6,9 1,B 8,4 -1,8 6,3 9,B 6,6 1,1 -1,1 2,B 6,7 3,6 2,5 1,6 7,C -1,4 -1,7 0,2 3,C 9,5 -1,7 9,0 9,5 0,1 -1,0 1,7 -1,9 8,C 1,1 6,2 -1,2 -1,9 6,5 8,C 6,9 2,0 0,B 4,9 1,6 4,8 3,4 4,B -1,0 -1,3 6,9 -1,1 2,9 0,C 7,6 6,2 2,3 0,7 5,9 1,4 8,9 6,8 8,7 9,C 2,9 -1,3 2,8 4,6 1,5 7,B 1,3 0,4 9,8 2,B 8,3 0,0 0,2 5,2 2,C 5,1 0,2 3,7 2,C 8,1 6,C 3,4 2,B 6,C 2,6 3,B -1,9 8,1 9,2 3,6 4,2 -1,6 -1,2 8,3 8,9 6,9 8,5 4,C 1,C -1,0 6,6 2,9 -1,0 1,B -1,3 5,7 9,5 -1,7 8,0 -1,5 1,5 -1,7 6,7 2,9 7,2 0,1 1,7 8,7 2,C 7,6 1,8 9,7 6,C 5,C 8,7 -1,4 2,7 3,C 2,6 7,0 5,B 8,1 7,6 -1,0 -1,3 2,3 1,7 -1,8 -1,1 5,3 1,B 0,7 0,2 6,8 0,0 6,7 8,8 -1,6 2,3 -1,8 -1,8 5,8 0,4 1,3 8,B 2,1 -1,7 9,B 9,5 8,6 7,0 0,7 4,3 9,4 7,7 5,4 -1,8 2,2 -1,3 5,9 -1,0 5,0 7,5 5,8 8,7 8,6 3,8 5,7 4,1 3,C 8,5 -1,6 2,B 4,8 8,3 2,4 8,5 9,2 3,5 0,6 1,B -1,3 6,2 -1,7 3,B 7,7 2,0 4,5 -1,2 6,C -1,6 9,8 4,6 4,2 -1,3 -1,6 0,5 0,5 3,4 5,0 8,1 9,3 -1,7 4,4 4,5 7,3 9,B 3,0 8,2 0,3 2,B 3,9 9,0 2,C -1,0 -1,2 5,5 3,1 6,8 0,7 4,C 1,8 8,3 3,C 3,8 4,B 0,4 4,B -1,9 2,4 5,3 6,4 -1,8 3,9 9,0 2,3 -1,0 8,0 2,4 5,3 7,1 5,4 1,5 1,B 5,1 -1,0 2,5 -1,8 7,4 -1,9 4,7 0,0 8,5 -1,1 3,1 4,1 4,0 3,3 2,2 -1,5 4,6 0,6 9,2 7,9 8,1 2,4 1,B -1,0 0,2 -1,3 1,5 -1,2 3,C 7,9 7,2 3,7 3,5 2,3 2,7 8,8 6,4 2,2 9,9 1,1 7,5 7,7 4,C -1,8 6,3 9,9 6,C 3,C 7,7 6,0 4,7 2,C 2,6 5,5 4,B 4,2 6,1 9,B 2,5 7,6 6,0 1,6 -1,8 9,4 5,8 -1,7 9,2 1,8 9,1 1,1 5,8 4,C 9,4 4,B 7,B 4,B 7,B 4,5 5,6 2,5 2,3 9,1 8,9 -1,1 3,5 1,6 2,4 4,2 2,6 2,7 -1,7 -1,9 -1,9 3,3 1,7 -1,3 6,4 4,C 1,4 -1,9 1,5 -1,0 8,0 -1,2 8,C 6,1 8,C 0,7 1,3 9,2 0,9 2,1 6,6 9,3 4,3 1,2 4,B 0,0 -1,7 -1,3 -1,0 3,5 7,5 -1,1 -1,7 2,5 1,B 7,C -1,6 3,4 5,6 -1,7 8,7 0,8 -1,0 -1,4 9,C -1,2 9,B 1,5 5,1 7,6 8,1 -1,1 -1,3 1,1 8,B 1,9 -1,9 -1,3 -1,9 3,4 3,8 0,9 4,2 4,4 8,4 6,B -1,3 7,4 -1,6 2,5 -1,6 -1,8 0,2 3,6 5,B 7,4 8,1 8,5 9,1 7,C 8,0 3,5 4,B 1,7 2,1 8,6 8,2 8,C 5,6 4,4 0,C 2,7 0,2 1,B 7,8 5,3 -1,8 5,8 4,3 3,3 -1,0 9,0 4,B -1,5 0,4 8,5 0,3 6,5 -1,6 6,0 -1,3 6,4 3,7 6,7 3,9 -1,7 -1,0 2,5 4,C 8,C 3,C 1,1 5,0 -1,7 1,B 3,5 8,9 -1,2 2,1 4,4 1,0 0,B 1,B 5,3 2,7 6,7 2,6 1,3 7,7 2,3 -1,5 4,B 2,4 -1,8 6,C 5,2 8,C 6,9 -1,5 4,8 3,9 5,C -1,8 -1,4 6,C 3,B 8,0 5,2 5,8 -1,4 8,C 2,6 -1,6 1,0 3,0 -1,1 -1,1 -1,6 3,7 8,B 7,0 0,B 8,6 3,B 3,B -1,7 1,8 8,3 -1,3 0,5 5,0 9,C 4,1 9,5 3,3 3,7 0,C 0,C -1,2 8,7 1,1 -1,3 7,9 6,4 -1,5 7,7 5,9 -1,8 8,8 6,3 5,7 3,1 8,B -1,8 1,0 -1,0 5,6 5,6 -1,1 -1,9 0,2 8,7 8,5 7,9 7,1 4,2 -1,1 2,6 1,9 -1,8 8,2 5,B 4,4 9,8 1,9 2,7 9,6 9,B -1,2 7,3 -1,8 -1,3 2,3 -1,7 -1,8 3,4 4,C 3,2 5,1 3,9 -1,2 1,C 1,C -1,4 8,5 9,5 9,6 0,1 0,8 5,B 1,2 2,4 1,B 2,0 9,C 5,C 6,4 3,9 1,0 2,B 4,C 8,3 7,B 3,5 4,C 7,0 3,1 3,8 -1,2 9,7 -1,0 1,C 8,B 9,1 1,1 -1,7 5,B 7,C 0,B 2,9 0,3 1,2 -1,4 9,3 1,C 3,7 -1,9 8,0 1,B -1,5 -1,9 0,3 -1,8 -1,6 2,2 8,7 8,7 9,0 9,9 9,0 9,B 5,9 8,C 6,C 6,C 5,5 5,C 5,B 5,8 0,8 0,6 6,B 7,4 1,0 5,1 6,6 7,B 3,4 5,B 2,3 5,0 8,C -1,8 6,B 1,5 4,5 5,5 9,2 5,7 2,2 -1,2 9,5 6,6 7,8 3,7 -1,0 6,3 6,0 -1,7 4,4 1,4 -1,9 4,7 -1,1 8,2 1,B 4,6 9,8 -1,5 1,2 7,B 7,1 5,1 -1,9 -1,1 0,9 0,1 9,4 6,4 0,4 1,C 1,6 4,3 0,B 7,3 5,9 6,9 1,4 -1,5 3,9 1,2 7,9 4,9 9,9 1,6 6,8 -1,1 4,1 2,3 -1,5 2,5 -1,7 8,0 0,6 5,C 3,3 2,7 7,8 1,4 0,C -1,4 4,8 5,8 8,0 4,C 8,1 1,1 5,3 8,7 3,0 0,4 3,1 2,3 0,9 2,0 7,5 -1,3 2,5 7,4 9,3 0,9 6,1 5,7 -1,2 -1,8 3,0 6,9 4,5 8,B 1,2 -1,5 7,9 7,8 4,9 1,6 6,7 7,6 6,C 9,7 0,4 2,1 8,8 -1,5 4,8 8,1 8,8 0,1 1,3 2,B 4,8 2,1 9,7 -1,7 7,B -1,2 0,3 9,8 6,3 2,9 5,6 3,B 5,0 3,0 3,1 -1,6 -1,8 3,6 8,C 9,9 2,0 1,7 -1,8 3,4 -1,8 0,1 4,8 -1,2 1,6 5,C 8,6 5,1 -1,8 3,C 7,2 -1,3 3,4 8,B 7,1 7,1 8,4 -1,7 5,C -1,8 0,4 2,7 6,2 1,7 2,7 6,B 3,B 3,9 -1,3 4,7 5,8 7,C -1,5 -1,2 -1,8 1,3 9,3 -1,5 6,9 6,8 2,7 -1,6 6,6 1,1 -1,2 3,4 3,6 1,B -1,1 4,4 -1,0 2,B 1,6 0,7 6,8 1,2 7,0 6,7 8,1 4,4 -1,2 6,C 1,9 6,7 4,B 9,7 0,6 1,C -1,1 9,4 3,6 9,4 2,6 6,4 6,C 1,B 7,0 -1,7 9,5 2,7 -1,7 -1,4 8,7 6,B -1,8 5,2 6,1 -1,6 1,6 2,4 7,8 9,1 -1,7 1,0 1,C 9,B 5,0 3,4 -1,0 4,5 9,9 -1,2 4,9 7,C 1,B 3,5 -1,0 9,9 1,7 0,3 9,B 8,2 5,2 7,4 3,8 7,5 0,8 4,0 -1,8 3,2 1,C -1,6 -1,5 3,5 -1,2 -1,2 1,6 -1,2 8,5 5,7 2,6 3,0 -1,3 3,0 8,9 5,6 2,0 -1,4 9,7 3,B -1,1 4,9 3,5 0,C -1,1 0,1 7,B -1,2 8,6 0,2 -1,7 3,9 -1,3 2,6 2,B 7,C 2,9 2,8 6,2 -1,4 6,0 0,3 9,2 6,7 7,9 1,B 9,2 4,B 6,0 3,9 9,1 -1,3 7,0 3,3 9,B -1,9 8,5 -1,2 1,2 -1,7 1,0 1,9 8,3 9,8 -1,3 8,C 6,5 5,8 5,8 -1,9 1,B 7,7 9,6 6,1 8,C -1,9 8,B 8,6 3,4 1,6 -1,7 -1,7 0,9 7,2 2,1 6,C -1,8 2,3 1,2 0,C -1,3 8,C -1,4 0,4 3,C 2,8 2,B 4,2 8,B 8,C 2,0 6,B 6,2 7,5 5,C 9,1 -1,4 -1,1 -1,4 9,3 1,2 2,B 8,9 -1,8 -1,9 6,C 1,2 7,6 7,B 5,8 0,C -1,2 -1,1 6,B -1,7 5,B 2,2 5,6 -1,4 8,7 9,0 5,8 6,5 -1,6 6,4 8,4 5,5 3,2 -1,6 -1,2 -1,8 -1,7 0,4 6,0 9,3 6,C -1,9 -1,7 9,6 -1,4 9,B -1,6 2,2 8,4 -1,5 9,4 7,B -1,0 -1,8 3,C -1,5 -1,4 8,7 2,9 -1,6 1,1 2,6 -1,9 6,4 7,9 5,1 -1,5 -1,7 8,B 0,2 2,C 5,6 1,B 5,0 6,9 1,3 2,7 -1,3 5,1 -1,5 7,4 0,0 3,2 1,8 7,2 1,C 7,B 6,9 4,3 3,C 5,B 3,2 -1,6 4,8 -1,0 2,2 1,B -1,5 -1,5 -1,3 2,B 8,C 6,2 -1,3 -1,1 9,9 3,6 2,2 1,B 0,6 9,0 1,5 2,6 2,4 7,C 9,B 8,4 -1,3 -1,3 0,C 1,5 5,4 7,6 -1,5 8,9 8,5 9,6 3,4 -1,5 3,2 1,0 2,1 -1,9 9,2 9,8 8,2 9,3 -1,3 8,2 9,7 6,1 -1,0 5,B 1,B 8,4 7,C 6,B 6,3 3,7 5,7 4,8 6,2 0,8 5,9 -1,8 7,1 4,8 7,0 -1,1 6,3 4,7 9,7 3,9 6,2 1,3 -1,8 6,C 9,9 4,B 4,2 0,1 5,5 7,0 0,8 1,9 -1,8 3,0 0,5 1,4 4,7 3,8 6,5 8,0 7,B 5,C 1,5 4,5 5,9 3,6 9,2 -1,0 2,C 2,2 1,0 -1,7 -1,4 5,7 7,1 6,2 3,2 -1,9 -1,6 4,C 9,3 4,0 8,7 9,2 0,9 1,7 -1,9 9,0 7,6 8,C 2,9 4,4 2,C 5,C 5,8 -1,7 0,C 2,3 2,5 6,0 0,8 9,7 4,B -1,9 4,8 1,B 7,C -1,6 2,5 8,7 -1,4 8,3 0,2 7,3 6,2 2,2 2,1 3,6 -1,8 0,8 8,6 8,6 5,8 2,1 8,8 -1,8 5,9 -1,1 -1,5 1,6 -1,7 -1,6 2,6 7,3 9,8 3,2 3,0 2,2 0,8 9,1 5,B 0,7 7,0 8,5 1,8 0,C 0,9 2,0 8,3 1,9 3,0 8,4 -1,2 1,B 5,7 9,7 1,8 6,2 5,1 9,4 5,5 8,C 9,4 3,9 3,4 5,3 9,0 6,2 5,C 3,7 8,8 5,1 -1,4 -1,6 6,C 6,7 -1,5 7,B 2,B -1,1 -1,5 6,5 6,1 -1,0 4,C -1,1 -1,6 7,7 -1,0 6,1 8,C 5,4 1,3 9,9 5,5 8,C 2,4 -1,2 3,0 6,1 -1,1 0,C 2,6 2,C 8,8 7,1 0,6 2,6 6,0 5,5 4,3 5,0 8,2 1,B 5,8 1,5 6,8 7,B -1,5 0,1 7,0 8,4 9,8 -1,0 9,4 -1,5 7,C -1,6 1,3 1,C 6,4 5,8 2,2 0,6 1,6 7,9 5,9 -1,4 1,C -1,4 6,6 -1,9 3,3 8,0 7,1 0,1 7,1 5,2 1,2 -1,7 0,7 2,2 6,6 0,B 9,2 -1,3 -1,7 8,4 4,1 4,8 4,C 1,5 8,C 1,5 -1,9 8,B -1,9 0,2 2,8 2,C 7,4 2,3 9,B 1,9 0,3 2,1 2,9 1,1 7,8 0,0 -1,6 8,5 -1,2 0,0 6,C -1,9 5,5 -1,7 2,2 3,5 1,C -1,4 7,2 7,3 7,1 1,6 0,4 2,C 1,0 4,7 2,B -1,5 -1,7 8,C 3,8 -1,4 4,0 1,B 2,9 5,B 6,B -1,2 6,3 2,9 9,C -1,2 -1,1 2,C 5,4 9,B 7,4 9,2 0,B 1,1 9,8 7,C 0,C 6,2 2,9 4,C 0,C 1,B 5,C 7,3 1,2 3,8 3,8 6,7 7,9 2,7 5,C 4,5 8,0 -1,6 -1,4 0,7 9,3 2,8 0,B -1,1 4,7 6,5 7,5 6,2 9,0 9,C 6,5 7,5 -1,9 3,B 4,B 2,6 1,0 8,2 0,0 3,8 1,8 -1,3 4,3 -1,3 1,B 9,C 6,5 4,B 7,4 6,B -1,6 2,0 2,0 1,7 -1,1 5,B -1,0 9,0 9,9 1,C 4,8 0,7 3,9 2,9 -1,2 2,0 9,1 1,8 8,5 0,8 9,2 5,C 6,8 0,6 1,8 4,C -1,7 4,6 8,8 7,4 7,5 -1,6 4,5 6,C 3,2 2,5 2,1 -1,6 8,2 1,0 0,3 8,C 4,2 -1,8 4,5 1,5 2,3 3,3 7,9 7,5 9,2 -1,0 1,6 8,6 9,B -1,8 2,4 6,B 7,8 1,5 4,7 6,3 3,3 9,4 0,8 5,3 3,C 7,2 2,2 9,6 0,C 0,8 -1,3 7,3 4,5 2,B 6,B 1,4 4,B 4,0 9,C 6,0 4,1 -1,0 6,6 4,7 3,B 4,7 2,B -1,9 -1,9 9,2 -1,4 -1,6 5,2 -1,3 -1,0 6,1 9,3 8,C 7,B 1,9 4,B 5,0 2,3 -1,9 0,1 7,7 6,8 4,7 -1,8 1,2 -1,3 7,2 -1,7 -1,9 -1,4 0,C -1,0 0,2 -1,9 2,9 0,B 9,B -1,1 -1,6 4,B -1,7 1,C -1,3 3,4 7,C 5,1 -1,9 -1,4 4,3 5,8 -1,5 9,B -1,7 5,7 7,1 6,3 6,4 5,7 3,1 -1,9 -1,2 9,8 8,9 2,4 1,4 0,3 4,3 5,0 8,3 9,8 -1,3 8,3 8,2 5,6 -1,6 6,B 7,9 0,4 2,2 7,5 2,C 2,B -1,0 -1,7 0,0 3,4 0,1 3,5 -1,0 -1,5 -1,0 9,1 8,6 -1,3 6,9 1,3 4,4 -1,9 -1,4 3,3 8,B -1,2 6,C 8,1 1,8 4,B 1,1 7,3 1,0 2,C 6,7 8,8 9,3 9,8 -1,0 1,2 0,4 -1,4 9,7 4,B 0,B 7,B 8,3 4,1 1,8 4,4 -1,0 1,5 6,4 5,1 1,5 6,B 8,5 6,9 -1,8 -1,5 5,4 -1,9 5,C 4,3 2,6 7,B -1,4 3,C 0,B 0,C -1,3 9,B 4,B 9,0 8,B 4,C 7,9 6,5 -1,6 3,8 6,0 0,6 1,B 5,B 5,2 8,0 -1,5 7,B 0,5 8,B 3,9 3,2 4,8 -1,3 7,8 2,5 5,9 5,8 4,1 7,C 1,0 6,8 5,2 8,6 -1,3 1,1 8,B 9,1 7,4 7,4 5,1 9,B 1,3 6,4 0,B 7,3 -1,1 5,4 6,C 3,C -1,9 8,3 0,1 7,1 0,1 2,6 8,B -1,0 6,7 4,8 7,8 8,7 3,5 6,0 2,9 3,4 -1,8 3,2 9,C -1,8 -1,1 2,8 8,4 6,7 -1,6 9,2 6,B 2,C 7,9 0,8 4,4 -1,9 2,4 8,B 5,C 9,7 -1,5 1,3 3,0 4,B 4,B 3,3 7,4 1,B 9,8 4,1 7,0 2,4 3,C 3,9 1,B 9,3 -1,6 9,0 1,5 9,C 4,2 6,6 -1,2 3,1 5,8 5,8 3,4 9,5 8,2 4,8 2,6 8,4 2,8 5,0 1,C 1,3 6,C 1,7 2,B 2,6 9,2 6,B 7,C 2,9 3,4 3,4 5,C 7,2 8,7 2,1 0,6 -1,7 7,2 6,2 1,0 1,C 1,C 9,5 7,8 -1,3 8,C 1,8 1,C 0,5 0,0 0,4 2,C 2,C -1,7 2,2 0,8 5,2 3,6 0,4 7,4 5,9 8,8 2,1 4,8 3,8 1,3 -1,9 9,2 2,B 9,3 1,7 7,3 7,B 7,B -1,2 3,B -1,9 2,C 0,5 3,8 2,8 8,7 6,3 0,0 1,B 8,7 4,5 1,B 8,B 8,B 8,C 1,2 4,6 0,C -1,1 9,3 7,2 4,B 8,3 0,9 4,8 1,6 3,3 3,C 2,1 -1,8 4,B 2,7 -1,1 0,B 1,C -1,0 1,B 4,0 -1,5 8,3 8,5 1,1 2,C 7,2 3,8 5,6 -1,2 2,5 7,2 0,B 9,1 7,B 6,5 6,C 5,C 1,4 4,6 0,8 3,2 0,7 -1,5 1,1 0,5 7,4 -1,0 5,9 -1,6 9,B 0,3 0,B 5,C 4,4 1,5 5,3 5,1 1,6 -1,9 5,1 6,1 -1,0 3,1 8,8 8,6 6,0 5,4 4,0 7,8 9,7 2,9 4,5 4,C 6,0 0,2 -1,1 -1,1 9,C 3,1 5,C 5,8 2,9 0,9 8,4 9,8 7,8 7,C 7,0 3,6 3,5 6,8 5,5 1,5 4,5 1,1 0,C 1,0 4,9 2,6 5,6 6,6 3,0 3,8 9,B 3,B 8,2 6,7 4,B 7,9 3,8 1,9 9,0 9,5 5,8 8,0 -1,4 2,6 -1,0 -1,5 3,B 5,2 4,0 -1,2 5,8 8,1 4,5 -1,1 9,9 0,2 4,3 8,6 -1,0 4,3 0,3 -1,5 2,B 8,9 -1,6 -1,8 2,3 -1,2 1,2 9,4 3,2 2,0 4,1 6,7 5,8 -1,0 3,4 6,B 7,4 4,4 8,9 7,6 8,4 6,1 9,3 0,3 1,5 -1,2 2,C 1,1 9,1 4,C 2,C 1,B -1,9 7,B -1,9 7,C -1,0 9,4 9,2 9,3 0,8 -1,5 3,2 -1,8 5,6 4,1 4,4 5,C 0,4 -1,5 2,1 -1,9 -1,4 7,5 4,0 1,8 7,0 4,3 -1,9 6,9 9,9 9,3 9,8 3,5 9,B 5,4 0,1 0,4 3,6 3,5 5,C -1,4 0,B 7,4 6,B -1,6 0,7 1,2 0,3 2,C 2,7 4,9 4,C 9,5 4,5 2,B 4,6 2,7 -1,7 6,7 -1,4 7,B 7,1 2,C 5,B 7,5 5,0 4,0 0,1 -1,3 4,0 6,5 2,2 0,4 1,5 0,0 2,6 6,2 2,7 -1,9 3,B 0,0 6,B 5,1 1,5 -1,3 2,C 9,3 -1,3 6,C 7,9 3,6 2,4 8,1 9,2 3,4 -1,9 -1,2 -1,9 -1,2 7,3 0,8 1,5 -1,0 8,8 -1,4 6,3 -1,5 9,8 0,5 1,5 7,8 2,2 9,2 1,6 0,8 0,C 4,C -1,5 -1,1 9,1 4,1 2,1 6,B 4,8 6,4 0,4 0,3 -1,3 3,2 9,C 5,1 8,2 8,9 1,C 5,0 -1,8 6,B 2,1 -1,6 -1,7 -1,0 1,3 0,6 6,7 -1,2 1,C 2,0 2,1 0,7 0,C -1,3 6,C 8,3 8,4 3,5 0,B 5,4 0,2 4,4 -1,5 -1,5 1,2 -1,8 4,5 0,0 2,B 7,8 5,C -1,2 1,C 8,3 7,3 9,5 4,7 2,8 6,9 9,1 6,3 -1,3 7,7 3,C 2,4 7,9 9,9 2,1 -1,0 6,0 1,C 0,3 8,6 -1,1 3,6 -1,0 0,6 7,6 3,2 3,2 7,3 0,4 -1,6 4,6 8,8 6,6 -1,2 3,5 2,B 7,6 5,5 8,9 2,0 -1,2 2,1 3,9 6,6 4,B 8,0 6,9 4,6 9,C 4,6 2,B 6,8 9,6 8,6 9,B 6,8 1,B 1,B -1,7 1,B 6,6 7,8 0,B 1,7 6,6 9,C 7,7 -1,2 9,7 3,8 2,8 8,7 3,2 8,B 7,6 8,8 3,6 2,3 -1,5 -1,3 5,9 7,B 1,8 1,C 1,3 1,B 9,C 6,C 2,3 8,C 0,1 -1,2 1,8 8,B 9,B 4,0 4,5 4,0 7,B 4,9 3,5 8,7 5,B -1,8 -1,3 6,7 8,B -1,7 1,3 7,0 3,7 6,2 5,3 6,B 1,6 -1,3 8,0 8,1 -1,6 2,6 1,2 0,3 8,3 2,C -1,4 5,7 0,2 2,B 3,B 1,C -1,2 2,C 4,4 -1,0 8,C 7,C 8,4 0,0 8,0 5,B 6,9 6,C 6,0 5,1 1,C 8,8 -1,7 4,1 5,4 0,B 8,3 7,8 3,8 3,9 9,1 4,5 -1,5 8,9 -1,8 6,6 5,C 3,8 0,1 4,9 9,6 8,0 0,0 5,3 0,3 4,2 -1,2 7,7 7,0 4,7 1,3 -1,4 -1,3 -1,6 5,C -1,6 2,3 4,C -1,5 9,4 -1,2 8,1 8,4 0,3 6,3 6,3 2,7 -1,1 0,9 -1,6 2,2 9,B 5,C 8,B 9,8 -1,1 8,5 4,5 0,B 6,3 1,5 1,5 4,6 1,4 -1,2 1,2 8,1 1,8 9,7 8,5 6,C 8,5 6,1 3,8 8,B 6,3 4,8 1,6 6,8 3,2 7,1 1,7 4,C 3,4 7,3 -1,8 8,B 0,C 5,5 -1,6 3,C 7,1 6,4 8,B 3,3 -1,7 6,7 -1,7 8,9 9,9 8,4 9,6 1,5 6,3 1,B 2,3 1,5 6,2 5,C 9,0 -1,1 1,3 9,B -1,0 9,9 2,1 0,7 1,0 8,C 9,8 -1,0 4,7 1,B -1,0 9,9 8,4 -1,4 7,7 0,B -1,1 2,C 7,B 9,B 9,1 -1,9 4,B 7,1 -1,8 7,0 1,6 5,2 0,C -1,1 5,C 3,1 -1,4 4,1 2,0 9,C 1,9 5,B 1,4 3,C 8,0 -1,6 2,6 1,C 2,8 6,5 5,8 7,4 2,5 -1,8 7,C -1,0 5,C 9,8 3,1 4,6 3,B 9,6 -1,3 9,B 9,C 2,7 7,4 6,5 -1,9 5,9 9,0 6,2 5,2 7,0 2,0 8,3 8,B 8,4 7,1 2,2 4,8 0,B 0,B 7,7 0,2 3,6 6,9 5,0 8,1 6,8 5,6 7,C 5,4 -1,7 1,9 1,5 2,7 3,0 8,6 0,1 0,6 9,7 4,9 -1,2 8,8 4,1 4,4 7,7 7,B -1,0 0,B 1,4 4,C 3,6 9,B -1,6 -1,4 3,9 4,C 4,6 8,B 9,0 -1,5 9,3 1,6 -1,9 0,1 -1,5 5,2 -1,8 7,4 8,B 8,C -1,1 9,2 -1,4 -1,5 2,B 1,C 6,9 7,2 1,0 -1,1 2,1 2,6 2,8 -1,5 3,6 5,0 1,6 9,9 8,5 6,1 0,1 3,9 5,7 6,5 3,1 2,6 2,8 5,B 0,1 -1,2 1,3 4,6 8,3 -1,7 0,8 4,6 3,4 -1,5 1,8 -1,7 5,B 9,8 5,C 9,4 2,2 0,2 9,6 6,B 1,C -1,3 3,5 4,0 4,7 2,4 -1,4 6,6 9,0 4,1 7,0 -1,8 7,6 2,8 7,0 6,B 6,B 8,C 7,1 2,5 9,8 9,C 2,1 0,C -1,2 -1,9 1,B 5,B 9,6 -1,6 8,0 1,B 2,7 -1,7 0,2 1,8 9,4 4,B 3,C 6,0 3,7 7,3 -1,7 -1,5 -1,0 -1,7 0,B 2,B 6,6 -1,6 6,B -1,7 4,1 9,4 0,B 1,6 -1,6 4,6 3,C 5,B 8,6 4,C 4,C -1,7 -1,5 0,9 -1,0 6,0 8,C 1,4 8,B 1,9 -1,6 3,6 8,1 -1,5 9,C 3,4 -1,4 -1,4 -1,0 6,0 2,8 7,4 3,7 -1,0 1,9 8,3 -1,8 7,5 4,3 0,B 4,C 3,3 -1,0 5,B 4,3 2,9 3,9 3,B 8,6 4,B 3,2 6,4 -1,2 5,7 2,1 -1,7 3,5 1,1 -1,4 4,C -1,3 4,7 2,B -1,1 -1,6 2,5 2,6 2,3 1,2 9,3 6,3 2,C 8,B 2,B 9,3 -1,4 4,7 1,7 7,B 9,2 2,2 5,2 4,2 7,0 2,0 3,B 8,C 3,8 4,B 1,2 6,C 1,4 1,8 5,B 5,5 -1,3 9,7 1,5 3,9 4,B 3,C 7,C 0,C 6,7 9,5 5,B 0,0 5,C 9,5 -1,6 6,8 -1,1 0,2 4,B 7,7 1,2 6,0 1,9 -1,3 -1,9 7,7 4,2 5,C 4,C -1,8 0,5 -1,7 4,4 2,6 3,3 9,6 6,7 2,9 5,C 2,9 2,B 1,9 2,0 -1,1 0,5 9,7 2,1 -1,1 3,7 3,C 9,9 0,8 7,8 3,3 5,6 -1,5 5,6 1,2 9,C 7,7 6,7 7,1 9,8 7,B 7,5 4,2 8,B 8,2 9,5 9,4 6,0 7,2 8,3 3,2 5,8 -1,4 9,B 3,9 4,4 5,B 2,B 6,6 6,8 2,C -1,0 4,7 2,1 -1,0 6,9 -1,5 -1,4 2,4 0,7 -1,6 0,C -1,8 9,1 4,1 8,8 -1,9 6,3 8,4 8,B 1,B 3,B 6,1 -1,1 9,B 2,4 -1,2 6,8 3,3 3,9 5,6 0,1 3,3 4,3 -1,0 3,3 9,3 9,0 -1,9 4,7 5,C 6,2 -1,3 -1,6 0,6 5,7 4,3 3,9 4,B 1,4 6,4 7,3 7,7 7,7 -1,4 -1,5 3,1 7,4 1,4 0,C 1,2 1,B -1,5 3,B 2,5 1,8 3,8 1,1 5,3 7,4 4,B 4,4 -1,7 6,C 4,B 3,5 4,2 5,C 0,0 2,4 -1,1 1,C 8,6 8,1 5,9 -1,8 0,6 8,7 2,4 9,B 1,1 0,B 1,5 -1,2 2,B -1,8 4,3 4,2 8,3 6,1 4,4 9,7 6,8 -1,1 8,5 7,0 5,C 5,3 6,7 9,6 -1,8 9,B 9,3 9,9 2,B 6,C 3,4 -1,3 5,8 6,9 8,6 1,9 4,3 7,C -1,5 3,2 5,C 1,C 8,8 0,3 0,0 -1,1 8,B 6,7 -1,5 0,9 -1,6 -1,4 7,1 3,7 -1,7 0,3 0,C 1,C 2,5 -1,9 3,2 4,7 -1,4 3,1 -1,8 -1,7 9,B 8,B 6,8 6,7 -1,7 -1,2 4,7 3,3 9,8 2,4 8,4 -1,8 1,C 5,C 1,4 0,2 0,0 7,B 4,C -1,2 3,C 9,9 0,0 -1,3 9,3 -1,2 -1,1 8,0 7,9 8,5 0,B -1,3 -1,9 6,7 4,6 0,C -1,4 -1,9 6,C -1,7 -1,5 1,5 -1,5 6,B 4,3 4,1 6,C 3,1 2,B 7,9 3,8 1,8 6,1 6,C -1,4 7,B -1,8 -1,9 -1,6 0,9 7,2 8,4 0,3 1,5 1,B 0,5 5,5 7,0 -1,4 0,B 6,0 7,1 4,C 9,9 5,9 4,9 0,9 1,7 9,7 9,9 8,3 -1,6 -1,0 6,7 1,0 7,5 8,B 5,7 3,1 -1,5 7,8 1,4 7,3 -1,3 3,3 1,B 4,1 4,0 6,5 4,1 0,4 8,1 2,3 7,1 8,2 1,7 2,C -1,8 9,4 8,7 2,7 7,7 5,7 5,1 8,1 4,6 -1,0 0,8 8,5 3,5 6,5 4,6 1,5 -1,5 2,9 -1,0 5,6 7,B 7,3 6,5 8,0 7,B 0,7 2,4 8,8 5,0 3,2 9,B 1,4 5,1 1,6 2,1 9,B -1,6 6,9 2,8 2,3 9,B 6,8 4,2 7,8 6,8 -1,4 -1,0 2,5 8,7 4,6 2,B 6,6 9,4 8,1 1,B 4,3 -1,5 3,8 9,8 7,C 7,C -1,7 0,B 4,2 -1,8 4,C 5,C 4,3 8,C 4,5 -1,2 -1,1 8,7 5,4 7,5 -1,6 0,C -1,5 1,2 8,C -1,5 -1,7 -1,4 8,B 4,3 0,C 2,6 2,C 4,C 7,7 5,C 0,B -1,0 8,8 -1,4 2,1 -1,9 -1,8 0,B 8,B 0,9 -1,8 8,5 4,2 3,0 4,4 -1,7 0,C -1,7 2,0 0,2 7,B 1,2 -1,6 2,6 5,2 -1,2 4,C 2,3 8,8 7,4 1,6 1,C 2,C 2,B 2,1 0,C 0,1 2,6 0,2 5,3 9,1 -1,4 -1,8 3,0 8,B -1,0 0,2 1,C -1,1 -1,2 9,7 9,B 2,8 4,1 2,2 7,4 2,6 2,7 3,0 2,7 0,B -1,6 0,B 1,5 3,8 -1,2 -1,2 3,0 4,4 5,6 -1,6 6,6 0,5 3,3 -1,4 9,7 -1,6 3,1 5,B 2,C 5,0 3,C 5,0 1,4 1,0 -1,8 3,C 7,B 5,6 9,8 3,4 8,1 6,B -1,4 7,B 4,4 -1,9 1,0 5,6 -1,5 1,4 6,B -1,8 -1,4 -1,0 3,B 9,4 7,B -1,2 6,0 4,9 -1,1 8,7 5,4 4,4 9,3 3,B -1,5 3,6 3,2 4,B 9,3 5,B 6,0 -1,8 8,2 8,B 1,1 0,9 1,2 3,4 0,1 -1,4 7,1 3,C -1,2 7,B -1,5 5,8 9,4 2,B 9,6 6,6 1,9 1,9 -1,8 8,C 5,2 8,3 -1,0 9,4 -1,4 -1,9 5,6 1,8 5,6 8,7 7,9 -1,3 3,B 5,C 7,8 1,B 9,3 4,4 5,C 5,6 3,B 3,1 -1,6 2,5 2,8 8,3 8,8 0,C 5,C 9,8 6,7 -1,9 -1,6 9,5 8,8 6,4 2,B 2,6 -1,0 7,7 1,0 9,4 8,C -1,5 7,2 1,C 6,B 9,5 7,C -1,8 8,7 8,5 6,4 9,B 2,6 2,7 -1,1 4,7 0,0 -1,2 8,9 9,9 2,9 5,3 2,B 1,4 7,C -1,6 -1,7 1,4 7,6 -1,9 2,0 7,9 6,7 7,8 7,6 -1,7 1,C 8,9 1,C 7,C 5,1 3,8 8,C 9,2 0,5 -1,7 0,7 1,C -1,4 2,4 2,0 4,C -1,5 9,9 0,C 6,B 6,B -1,5 -1,2 1,6 5,8 -1,9 0,2 6,0 9,8 2,B 3,C 0,0 -1,7 4,6 5,9 -1,2 -1,4 -1,9 8,5 2,1 5,6 -1,5 -1,6 8,B 5,C 3,3 1,2 8,B -1,7 6,2 4,B 1,C 3,9 7,4 5,9 -1,5 -1,4 6,B 3,6 9,6 4,0 6,B 7,B 7,3 -1,5 -1,1 7,C 4,5 7,5 4,C -1,7 0,B -1,9 9,B 6,4 8,0 0,B 5,1 0,3 7,1 9,6 0,1 -1,6 2,9 4,B 7,5 1,C 7,5 -1,1 5,8 0,0 5,C 5,2 9,4 2,2 7,9 4,B 6,4 4,3 5,8 -1,2 3,B -1,6 8,C 5,C 7,B 4,5 -1,1 0,2 8,1 -1,9 0,B 6,3 3,C -1,8 5,8 0,0 6,B -1,4 7,C 6,9 9,B 6,B -1,1 7,5 9,B 5,3 -1,6 3,8 -1,4 0,3 6,9 4,0 2,B 6,3 5,6 5,C -1,7 1,5 2,0 6,9 6,5 2,4 5,C 0,C 7,6 8,3 -1,4 0,6 -1,3 4,3 1,5 3,2 8,6 0,7 -1,2 8,7 3,3 1,2 -1,7 6,9 0,B 1,B 8,3 2,B 2,C 6,6 -1,3 6,4 0,7 7,C 7,2 7,2 2,4 0,2 -1,5 5,8 1,5 9,7 9,8 4,C 7,6 6,6 9,B 0,3 -1,7 7,B 4,4 7,3 0,9 9,C 3,2 5,3 -1,8 4,9 8,7 8,2 3,2 7,5 6,3 8,4 -1,5 -1,0 -1,6 4,3 6,6 8,0 -1,2 -1,9 0,5 1,1 7,8 3,9 -1,6 2,8 -1,1 5,6 -1,1 0,9 2,0 3,7 8,2 3,B 5,9 9,7 9,8 7,1 3,7 1,8 0,2 4,C 9,1 9,9 1,3 -1,6 3,9 -1,6 4,3 6,6 6,8 3,B 8,0 0,4 9,4 3,2 3,8 -1,3 0,8 -1,8 6,3 7,B 4,3 5,5 5,5 5,4 1,C -1,3 -1,9 2,B 2,6 3,7 7,6 6,2 -1,8 4,0 9,8 -1,3 2,B 2,C 2,7 0,9 0,6 -1,9 -1,2 2,4 9,C -1,3 1,7 1,0 3,6 6,5 7,C 1,6 6,4 9,B -1,7 7,4 2,7 0,8 7,B 3,4 3,9 8,2 2,2 5,9 8,9 -1,2 4,6 7,B 7,3 1,6 6,5 0,4 9,5 2,6 8,8 -1,8 1,C -1,3 5,2 1,C 3,2 7,C 4,7 9,9 -1,0 0,1 4,4 5,C 1,9 8,C -1,1 -1,3 6,0 3,8 5,C 2,B 8,5 8,B 7,B -1,8 7,3 1,B 3,4 1,2 8,C -1,9 1,2 2,B -1,9 1,4 6,0 4,2 -1,9 9,0 0,7 1,3 5,3 1,B 5,2 0,6 1,0 2,8 1,2 5,1 7,9 6,1 -1,7 0,4 7,6 8,C 7,B 4,C 2,B 7,1 5,1 1,C 1,0 -1,4 5,9 7,1 3,8 6,B 3,5 8,2 6,9 6,7 1,4 -1,7 6,9 -1,1 9,7 3,C 2,1 8,1 9,B -1,8 0,8 6,C -1,1 8,C 0,5 6,7 7,0 8,C 4,B 7,5 -1,5 -1,2 1,C 8,1 -1,9 -1,0 1,8 -1,3 4,6 7,C 7,7 5,9 0,1 7,4 8,7 -1,2 2,8 -1,9 -1,1 9,1 1,9 8,5 7,C 5,B -1,3 1,C -1,3 -1,0 9,6 2,C 5,7 4,8 5,4 4,B -1,7 -1,0 6,C 6,7 -1,8 6,8 3,4 4,C 2,C -1,9 8,C -1,5 0,B 4,0 5,C -1,4 2,7 8,2 1,1 4,3 2,1 -1,2 4,C 7,5 0,3 1,1 0,B 7,6 2,C 2,9 2,5 1,8 6,2 -1,1 7,1 -1,5 8,8 6,2 6,C 8,2 4,4 2,9 5,2 5,C 7,1 -1,5 8,2 -1,3 4,5 5,B -1,4 2,1 3,5 -1,0 -1,6 0,C 4,0 9,6 3,2 -1,8 0,9 2,3 9,C 3,2 -1,4 8,6 2,C -1,6 1,C 1,1 3,8 1,8 8,5 8,C -1,6 6,1 9,2 -1,3 8,0 5,8 9,B 6,8 8,B 7,2 3,6 9,1 0,B 2,1 5,5 8,C -1,7 9,3 8,B 3,1 7,4 7,3 7,6 -1,3 0,9 9,B 4,4 3,3 6,C -1,9 5,3 5,B 0,9 7,C 4,C -1,8 5,7 -1,3 5,2 1,4 1,3 3,4 4,8 -1,5 3,B -1,6 -1,8 4,2 8,2 3,8 0,C 0,B 3,B -1,4 1,B 2,6 2,1 6,C 7,B 5,C 9,3 4,C 9,7 9,2 1,7 -1,5 -1,8 -1,1 -1,3 8,B -1,6 -1,9 4,4 7,4 2,B 4,0 -1,8 -1,5 -1,8 6,4 3,6 1,8 -1,7 8,B 1,C 7,7 9,C -1,1 1,9 9,2 0,9 4,1 2,7 9,4 8,0 1,8 0,6 3,1 5,C 7,2 0,6 4,7 4,5 9,B 0,B 3,8 4,6 4,C 6,8 6,6 8,C -1,5 9,C 5,2 5,B 3,9 9,5 1,C 2,7 -1,0 3,B 2,4 9,0 2,7 7,8 0,C 2,8 4,2 5,2 2,7 1,0 3,5 4,3 1,4 9,6 8,2 2,C 2,1 6,4 -1,2 0,3 3,0 -1,9 5,6 2,B 4,C 3,C 5,0 5,C 2,8 3,B 0,0 4,9 5,2 -1,0 -1,5 2,7 6,3 3,1 5,5 7,C -1,9 0,B 4,C 4,2 3,3 1,0 5,2 0,C 3,6 -1,6 0,5 -1,0 5,5 -1,8 8,B 8,3 8,7 7,C 5,4 7,8 0,5 2,9 7,8 1,0 2,0 5,C 4,3 1,6 8,4 9,5 7,4 3,5 -1,8 0,5 3,C 0,0 -1,0 1,C 4,C 9,0 -1,2 5,1 3,8 5,9 6,5 1,0 -1,7 1,5 9,C -1,1 5,5 0,8 -1,5 7,8 0,6 6,0 4,7 2,C 9,1 2,B 9,C 5,9 3,5 6,1 6,1 2,4 -1,4 5,B 2,C 2,3 5,B 3,5 -1,1 5,3 4,8 7,1 6,3 1,2 6,4 2,C 4,0 6,9 5,1 7,7 5,8 2,C 7,C 1,C 5,5 3,5 7,0 -1,0 9,B 5,6 0,C 4,9 8,9 0,8 5,C 8,2 0,2 4,B 7,3 7,8 2,B 8,B -1,7 6,B 4,C 0,5 -1,2 -1,4 7,0 4,7 1,8 2,9 2,C 4,8 5,8 3,5 7,1 8,4 9,B -1,0 5,C -1,6 5,5 1,9 -1,8 8,C 9,3 -1,0 -1,4 9,C 1,7 1,2 1,6 0,1 2,B -1,0 4,5 2,5 6,B -1,7 2,0 3,8 7,9 -1,0 0,C 4,8 2,8 -1,9 -1,3 7,B 7,B 0,7 7,1 2,7 7,5 0,8 7,2 -1,2 5,8 7,B 1,C 6,B 4,1 -1,3 1,C 5,3 0,6 8,8 3,2 3,2 8,9 -1,5 5,8 -1,9 5,5 0,B 8,6 0,B 2,2 4,C -1,0 4,5 9,6 0,6 8,4 2,2 1,5 7,4 2,4 5,6 1,7 1,B 6,2 9,5 4,2 6,2 1,0 6,3 1,5 6,6 -1,6 9,0 9,C 9,5 -1,6 4,9 -1,9 1,0 8,1 4,0 4,3 8,B 0,1 2,4 8,3 2,9 5,5 8,7 6,1 4,0 -1,1 2,6 6,7 4,7 8,0 5,8 9,3 2,B 7,5 6,8 6,7 1,2 0,B 6,8 5,B 1,C 4,4 5,8 4,2 9,2 8,6 2,B -1,4 4,1 4,0 1,3 1,9 4,C -1,2 4,C 7,8 7,1 0,3 -1,5 0,8 4,9 1,2 0,5 1,C 0,5 4,3 5,C -1,5 8,3 1,9 2,0 -1,5 8,6 2,8 9,5 9,6 4,5 0,0 1,7 5,C 7,2 -1,0 0,B 8,1 0,5 2,9 -1,1 2,0 -1,4 7,C 4,5 1,1 7,9 8,B 4,C 1,3 -1,2 7,C 4,B 9,0 -1,5 1,6 7,0 9,3 3,7 -1,4 -1,0 8,5 0,7 6,9 -1,1 1,3 3,6 3,B 8,3 4,7 0,5 7,6 5,0 -1,0 -1,3 -1,6 1,3 9,0 0,9 7,3 8,7 3,9 9,7 4,2 2,4 7,8 6,0 8,1 1,C 3,C -1,9 9,4 4,6 1,3 -1,9 7,8 4,6 2,7 -1,3 6,3 7,0 5,3 7,7 8,0 9,7 3,B 7,0 0,8 3,1 -1,9 7,7 7,7 5,5 5,B 0,C -1,7 6,6 4,4 8,5 -1,1 6,C -1,3 9,9 3,0 7,9 0,0 7,6 2,6 4,2 8,6 3,B 8,1 -1,8 2,0 6,B 6,B 4,2 4,C 9,1 6,0 0,8 2,0 0,9 7,2 4,9 1,7 -1,6 6,1 3,8 3,B 1,9 4,9 9,B 1,B 3,3 6,C 0,3 1,0 0,B 9,5 6,0 -1,9 2,5 7,0 6,B 2,B 5,C -1,7 6,0 9,9 3,5 9,7 3,8 6,3 7,7 3,2 -1,0 4,5 2,1 -1,4 7,2 3,2 -1,2 6,5 8,C 5,B 1,5 -1,1 5,C 5,1 7,5 3,8 8,B -1,5 2,0 3,6 5,C 8,7 -1,9 2,1 9,C -1,4 4,2 -1,1 6,5 -1,8 1,1 8,2 0,5 5,C -1,7 4,C 5,C 1,1 9,B 9,2 4,C 8,C 8,0 2,3 6,6 2,C 4,9 3,8 0,5 7,9 5,3 0,8 6,C 2,B 3,8 9,5 4,B -1,2 1,6 6,7 5,2 1,5 1,6 3,2 1,9 -1,1 5,5 9,0 8,C 8,4 2,B 8,1 4,0 9,9 4,C 5,3 7,9 0,5 4,B 6,C 1,3 9,4 6,3 8,2 -1,0 4,C -1,4 8,9 -1,2 8,0 4,1 7,4 -1,1 5,6 1,3 -1,0 3,B 8,C 1,9 0,5 1,4 9,B 6,5 8,7 0,2 2,1 4,2 9,0 -1,2 9,6 7,7 -1,8 3,3 2,8 5,7 -1,0 -1,1 0,1 -1,5 5,1 -1,4 9,0 2,2 -1,0 9,C 2,C 0,B -1,4 0,C 6,1 -1,2 7,C 7,1 -1,4 2,5 4,0 1,7 0,5 7,6 2,B 2,3 1,2 4,3 5,5 3,1 9,8 7,3 3,2 -1,0 9,9 8,3 3,2 2,7 8,5 3,0 9,7 1,B -1,5 -1,6 -1,4 5,2 4,6 1,9 7,8 4,7 8,B 1,0 1,2 6,C -1,1 8,C 3,9 3,1 9,1 0,0 3,B 4,4 9,C 1,8 0,B 9,7 3,C 1,1 -1,9 0,6 2,3 6,7 7,1 0,2 -1,2 6,3 7,4 9,C -1,8 2,6 -1,3 1,7 -1,5 3,8 5,7 3,C 1,C -1,3 8,2 -1,4 1,C 2,9 -1,3 6,9 -1,0 7,4 8,5 4,6 4,7 3,8 3,B 4,3 4,C 7,7 2,0 3,C 0,0 8,B -1,8 9,3 6,B -1,1 0,8 -1,6 6,C 0,7 8,C 1,4 1,1 8,1 -1,3 3,9 0,6 -1,9 4,0 8,7 1,4 7,3 8,2 5,7 9,4 2,1 7,6 1,3 7,5 3,4 1,B 0,C 4,1 4,1 5,6 9,2 -1,9 -1,8 3,9 -1,7 3,2 5,1 9,4 -1,1 2,C -1,8 8,9 3,3 9,B -1,8 9,C -1,1 8,1 7,5 6,5 8,5 -1,7 5,5 1,1 3,1 5,9 1,3 -1,9 0,8 7,0 1,8 2,2 7,4 7,0 7,B 9,1 4,6 5,7 1,9 4,2 5,B 6,4 7,4 9,1 7,C 3,6 1,2 -1,0 -1,9 1,7 8,C 6,9 5,6 -1,5 5,3 1,9 0,5 0,5 6,5 8,C 9,5 6,0 6,8 -1,7 1,6 4,B 3,C 2,3 -1,9 7,2 0,B 6,9 -1,5 7,5 4,4 3,3 8,8 4,6 4,5 6,1 1,4 3,4 9,8 -1,9 0,9 2,C 8,2 0,9 2,7 3,3 6,5 3,B 0,9 3,7 4,4 5,0 1,7 -1,6 -1,6 8,9 7,2 2,2 2,B -1,2 8,3 6,6 2,C -1,5 5,2 6,B 8,7 1,B -1,4 8,B 5,2 4,6 5,1 6,8 3,5 8,B 5,4 0,5 5,6 -1,0 5,9 2,3 5,6 -1,8 4,9 -1,7 9,5 2,3 0,7 7,6 -1,5 9,7 5,B -1,9 6,4 2,C 3,C 0,2 6,7 -1,8 -1,5 2,4 5,6 4,8 6,1 8,B 7,B 5,5 -1,9 -1,5 8,7 5,5 -1,9 3,2 6,C -1,8 6,C -1,2 2,4 5,C 9,7 2,5 4,C 8,6 -1,3 1,3 6,8 -1,9 5,2 3,8 7,3 0,4 8,8 5,7 -1,9 9,B -1,9 9,B 6,B 3,3 -1,9 9,7 7,B 7,3 -1,5 5,2 0,8 1,B -1,1 3,0 0,5 -1,6 9,C 9,1 7,5 1,B 7,8 -1,5 5,3 2,C 5,6 -1,3 6,C 6,1 1,3 -1,8 3,7 0,0 1,6 1,6 2,3 4,2 7,C -1,8 7,B 8,9 1,6 -1,8 8,C 7,C 4,2 -1,6 9,B 1,C 7,0 -1,4 1,4 5,B -1,9 0,B -1,0 0,9 6,7 -1,7 2,9 0,B 1,6 9,0 -1,1 5,8 0,9 1,2 0,2 3,C 0,B 5,7 4,1 0,5 -1,1 -1,1 -1,6 -1,1 3,B 6,3 -1,8 9,9 0,5 7,0 2,4 -1,9 5,5 -1,1 5,8 -1,6 3,B 6,4 6,C 5,6 4,1 9,7 6,C -1,9 -1,9 7,5 9,5 1,0 6,2 -1,9 -1,8 6,7 4,5 1,3 3,7 0,C -1,5 9,7 1,6 -1,2 -1,9 9,3 2,1 4,B 3,B 4,2 3,1 6,2 2,6 9,5 3,C 6,1 2,2 2,8 -1,8 3,7 8,6 0,8 7,9 7,C 4,B 3,0 -1,4 -1,5 5,B -1,2 7,9 1,1 -1,5 2,2 7,7 3,B 0,6 0,C -1,1 -1,3 3,6 7,1 2,3 6,6 9,3 1,4 2,9 1,9 3,4 2,4 0,3 7,2 -1,4 3,7 4,B 6,4 2,B 9,C 9,6 7,6 2,0 7,5 7,C 3,3 4,9 7,B 3,6 -1,4 5,3 8,1 -1,0 0,5 2,5 -1,3 6,6 4,B 9,9 1,4 3,6 0,B 8,0 3,5 5,9 3,5 3,2 1,7 4,6 0,0 2,C 4,B -1,9 6,9 8,5 1,5 0,4 2,B 7,B 0,8 9,C 2,2 7,4 0,C -1,2 -1,9 2,4 6,3 0,6 9,2 -1,8 -1,6 2,B 8,7 7,B -1,2 5,8 2,6 9,4 4,5 2,B 6,4 0,2 -1,4 8,C -1,8 -1,9 1,0 7,4 -1,5 -1,6 -1,2 9,9 3,4 2,3 3,8 0,C 5,6 2,3 4,1 4,7 -1,2 5,6 7,5 8,6 3,C 5,2 9,B 6,B 4,C 6,1 8,6 7,2 9,4 4,3 7,5 3,B 3,6 2,2 -1,4 1,7 7,7 7,B 6,B 2,3 9,5 1,B -1,4 3,C -1,6 9,2 4,2 8,5 3,6 8,1 5,1 4,3 1,B 5,1 7,9 -1,6 3,6 4,C 0,8 -1,4 4,8 7,7 8,9 1,B 0,8 7,7 -1,5 2,4 9,C 5,8 -1,7 8,C 1,4 6,B 3,9 0,9 -1,8 8,6 2,C 3,C -1,9 4,6 5,8 8,5 5,6 0,4 8,0 7,7 1,4 -1,4 5,C -1,9 -1,6 -1,4 4,5 -1,4 -1,5 5,0 -1,2 7,7 3,2 -1,5 -1,1 8,0 7,2 1,5 6,7 -1,3 9,4 2,6 1,8 -1,0 8,9 0,7 5,B -1,0 2,6 7,7 -1,0 5,5 9,C 6,8 1,4 2,5 6,5 5,8 5,0 3,0 8,C 3,1 0,0 3,B 5,1 8,6 7,8 7,8 9,1 4,B 5,5 0,2 -1,2 4,1 2,C 3,0 8,1 1,8 -1,8 -1,7 8,3 1,7 -1,4 1,7 5,B 0,C 6,C 5,C 4,6 8,6 2,C 8,8 6,0 2,8 0,C 7,8 3,B -1,2 7,6 3,B 9,2 -1,3 6,C 4,0 5,C 6,6 2,2 7,3 4,B 5,6 1,B 4,4 1,9 2,1 6,7 4,C 8,B 7,4 -1,8 -1,6 5,4 9,0 4,7 0,1 8,C -1,2 -1,0 3,0 4,6 1,4 9,2 2,9 -1,9 9,9 1,C 0,3 2,C 3,4 6,8 3,C 2,6 6,B 5,3 7,B 1,1 3,2 1,8 0,8 -1,5 9,C 7,B 9,B -1,5 -1,2 -1,1 9,1 -1,4 5,8 6,7 9,1 0,C 0,5 4,9 5,9 1,C -1,4 0,C 8,6 6,0 -1,7 9,9 -1,5 1,8 -1,2 -1,5 2,1 4,1 1,8 2,6 8,B 0,2 -1,5 6,C 3,4 -1,5 4,B 2,4 0,3 0,7 -1,9 8,2 8,2 -1,0 -1,9 2,9 7,B 1,6 8,1 5,3 2,2 7,C 4,4 8,3 -1,7 8,1 6,6 4,0 1,0 0,9 0,B 7,8 3,2 8,C 0,7 8,6 4,5 1,4 8,0 1,7 1,C 2,6 5,9 5,C 8,1 5,B 3,0 0,C 8,9 4,6 1,1 -1,1 5,3 6,0 6,B -1,5 -1,7 0,B 5,1 1,2 0,C 8,B 7,B -1,7 1,8 4,2 3,B 9,C 7,C 3,0 7,C 6,4 8,B 6,B 9,4 1,C 4,0 9,0 8,0 -1,9 7,B 5,9 -1,9 5,5 -1,3 3,C 8,C 6,B 2,0 3,B 1,3 7,8 2,6 0,C -1,7 5,2 5,2 4,C 4,2 4,3 -1,4 9,C -1,0 3,5 2,6 0,1 7,5 -1,5 6,1 8,3 -1,1 2,0 2,3 -1,2 7,2 -1,7 3,5 8,C 2,C 8,6 2,4 0,9 4,C -1,4 8,6 8,5 6,1 6,6 5,C 5,B 4,0 3,6 6,1 4,5 7,2 3,4 2,7 7,6 -1,1 8,0 -1,6 6,C -1,6 7,1 2,9 7,6 4,9 3,B 3,7 1,9 0,7 9,2 9,9 -1,8 7,5 5,3 6,0 9,6 8,1 6,7 6,C -1,4 -1,5 7,C 5,9 7,0 3,5 6,B 6,5 7,9 -1,3 3,2 1,6 6,6 6,9 8,6 3,B 3,1 5,6 3,9 0,C -1,3 0,9 9,B 3,5 9,9 5,2 5,8 -1,9 2,6 9,1 -1,9 8,5 6,4 4,4 6,C -1,3 2,7 6,5 7,9 -1,9 4,8 7,2 0,6 7,C -1,4 -1,4 5,9 7,B 3,C -1,8 7,3 1,8 7,3 5,B 8,0 1,2 8,9 9,C 2,8 -1,0 -1,0 8,8 -1,8 9,9 2,1 2,8 -1,7 1,8 3,6 3,3 8,9 0,4 -1,0 3,C -1,7 -1,1 4,5 8,0 7,B 5,8 4,B 2,5 -1,4 7,1 -1,0 1,B 4,1 -1,0 -1,5 4,8 7,B 8,8 -1,4 5,1 -1,9 -1,6 -1,8 -1,5 0,5 4,2 1,7 -1,7 2,C 1,3 5,0 -1,2 -1,8 -1,9 -1,8 2,C 6,1 9,7 0,4 3,8 2,4 9,C 6,0 8,C 7,0 0,2 0,0 8,2 6,2 3,B 2,9 6,3 1,8 -1,2 8,B 1,4 6,6 -1,7 7,3 -1,2 8,0 5,8 5,0 7,B -1,8 5,0 7,9 2,8 7,9 8,B 1,B 4,1 7,5 -1,0 0,4 0,9 -1,6 5,2 7,C -1,1 2,9 9,6 9,9 3,C 6,2 -1,2 0,B 3,0 8,7 4,5 -1,5 -1,1 4,B 7,8 6,C 3,8 2,9 -1,5 -1,7 3,C -1,6 1,9 2,5 8,6 3,5 3,7 -1,8 5,C -1,3 -1,2 6,8 1,8 9,1 -1,0 4,C 0,8 9,2 0,1 8,9 6,1 2,4 9,3 0,1 6,6 -1,5 6,3 8,2 7,B 7,B 9,C 8,B -1,7 -1,0 7,4 0,4 7,C 8,3 7,0 2,B 7,6 6,7 -1,8 -1,2 3,7 0,2 1,6 -1,2 5,C 0,2 6,4 0,C 8,6 4,1 -1,9 -1,8 2,B 2,4 3,3 -1,4 1,8 8,7 4,0 8,8 4,0 -1,8 4,6 7,B 0,4 1,7 2,5 9,4 3,7 6,0 -1,0 1,7 9,8 2,C 0,0 2,2 1,B 7,7 -1,7 1,2 4,8 7,8 9,4 5,B 2,B 4,4 -1,2 0,9 8,3 8,7 6,9 2,7 6,3 4,2 6,9 -1,2 7,7 3,7 7,4 2,2 5,1 3,C 4,1 9,8 7,3 1,2 -1,4 -1,4 1,9 -1,9 3,4 3,7 9,5 5,5 0,5 5,0 6,3 -1,0 0,9 8,9 2,0 2,C 2,B 6,C 9,3 4,0 0,3 6,5 -1,7 3,8 -1,4 6,3 4,1 -1,1 3,C 5,2 6,2 8,6 4,C -1,5 2,C -1,0 4,8 -1,2 1,2 9,1 1,3 5,1 -1,3 2,0 3,6 5,6 9,B -1,5 -1,7 -1,4 -1,7 6,6 5,3 1,1 8,2 0,6 4,C -1,6 5,9 -1,3 7,1 -1,9 5,9 1,6 4,B -1,4 8,3 -1,1 0,8 1,1 -1,5 9,8 5,8 9,C 2,2 3,B 1,0 -1,0 6,4 2,0 -1,0 -1,0 8,5 0,C 0,5 3,1 -1,4 9,5 3,8 -1,5 1,2 2,C 4,5 4,8 0,4 5,8 0,B 0,7 0,B 5,9 0,4 -1,0 8,C 4,B 2,6 0,3 9,3 6,C -1,3 4,8 0,B -1,1 9,4 6,9 3,6 7,2 5,4 6,C 5,9 2,2 9,2 -1,8 2,C 6,0 -1,0 1,1 5,5 6,1 7,9 8,B 2,8 -1,9 0,6 -1,8 8,5 2,5 1,B 1,6 5,B -1,0 6,B 5,5 5,4 -1,2 3,5 2,1 8,1 5,8 -1,1 9,9 2,6 7,6 -1,1 0,5 -1,7 7,9 -1,9 8,5 9,2 1,4 -1,4 0,0 -1,5 1,3 9,4 2,1 6,B 8,4 8,B 6,B -1,6 5,4 -1,4 6,C 9,B 8,2 2,7 2,C -1,1 4,8 4,1 -1,1 -1,9 8,8 0,5 0,7 6,2 8,6 5,5 3,C -1,0 -1,7 2,B -1,5 7,B 9,B 7,C -1,6 1,C 3,5 1,B -1,9 9,1 -1,5 5,7 -1,9 3,6 3,5 1,3 4,7 7,B 2,B 6,B 8,4 9,C 7,0 8,B 3,4 9,2 4,5 -1,2 2,C -1,8 3,4 -1,8 4,1 1,C 0,4 7,0 5,2 6,9 -1,5 8,B 9,8 3,3 6,4 -1,0 7,8 3,4 -1,7 5,5 3,1 5,8 7,1 1,C 1,C -1,2 4,6 -1,3 4,0 -1,7 3,4 4,2 5,4 5,2 6,0 2,3 2,0 -1,5 -1,6 2,B 2,1 3,4 1,5 8,7 -1,3 -1,8 -1,8 0,5 7,6 -1,9 1,C 4,7 5,C 9,3 5,7 1,C 0,C 0,C 7,4 6,7 -1,4 4,1 3,9 9,3 -1,9 3,B 7,1 0,2 0,2 4,7 4,B 0,8 7,5 7,9 0,0 8,2 -1,8 1,B -1,1 -1,9 6,B 0,9 -1,0 5,C -1,0 -1,7 8,5 -1,2 6,B 6,9 7,C 0,6 5,5 -1,3 7,C 7,B 6,1 4,2 4,8 5,B 9,7 4,C 7,5 -1,2 1,9 9,8 7,6 0,5 7,4 1,4 6,0 4,0 1,1 4,1 2,8 5,2 1,6 -1,9 -1,4 1,1 3,8 9,2 8,4 9,5 2,C -1,3 6,0 2,4 -1,0 8,0 -1,4 4,2 -1,6 8,B 3,C 9,9 2,B 5,5 -1,3 1,9 1,3 -1,3 -1,9 9,2 3,C 9,9 9,0 7,6 2,2 5,9 4,1 3,B 8,8 0,C 2,B 3,1 0,4 -1,3 3,5 5,9 3,C 0,4 5,C 0,6 -1,7 9,5 -1,0 -1,2 4,8 3,B -1,2 2,2 9,C 8,9 2,2 1,2 4,4 -1,5 3,2 3,3 1,5 6,4 -1,7 4,3 8,5 4,5 1,B 4,0 8,9 7,5 7,4 5,C -1,9 4,7 9,1 3,4 3,6 4,2 4,9 7,5 -1,5 2,8 2,1 3,5 9,C 2,7 8,B 7,B 2,6 -1,5 4,8 2,0 -1,8 8,2 9,B 3,8 9,B 9,7 9,9 -1,1 8,B 4,C 1,7 6,5 6,1 1,5 4,3 0,C -1,0 5,2 3,6 4,0 7,9 9,7 6,5 7,4 -1,7 0,7 9,C 2,3 4,6 4,4 -1,1 0,1 2,6 9,B 2,0 -1,9 2,C 6,8 4,B -1,0 -1,8 1,B 7,7 0,6 7,B 2,8 3,3 -1,1 8,8 9,1 -1,6 9,B -1,4 4,7 -1,5 3,9 0,4 8,C -1,0 3,B 7,9 4,8 9,B 3,B 3,B 9,C 8,B 8,7 8,1 5,B 8,9 7,3 7,2 -1,0 -1,7 1,0 -1,1 6,7 -1,5 3,6 5,B 8,0 -1,0 2,9 2,9 0,1 6,0 7,0 1,9 4,2 6,B 6,7 1,3 -1,4 0,2 0,0 5,5 -1,1 2,B 6,C -1,2 -1,4 6,4 1,C 6,B -1,9 6,3 4,2 6,9 1,B 3,9 3,C 1,B 6,B -1,8 5,8 8,7 -1,5 8,2 5,6 -1,5 9,9 -1,5 4,9 7,4 -1,6 -1,9 7,0 0,8 9,5 -1,9 2,8 0,0 0,B 0,9 3,5 4,4 -1,0 0,C -1,9 6,5 0,6 7,2 -1,8 0,2 1,B 8,8 5,C -1,1 6,4 6,1 -1,6 0,4 9,4 4,2 -1,0 8,9 4,4 -1,7 0,1 -1,2 -1,1 0,4 4,3 -1,5 -1,0 6,1 5,C 3,B -1,2 7,8 9,B -1,9 1,C 9,0 3,9 0,9 3,4 7,C 3,3 6,1 8,9 9,6 9,8 1,2 4,4 6,8 7,B 1,7 2,2 6,8 -1,8 7,8 0,B 9,4 -1,3 2,4 -1,6 8,B 5,0 6,2 2,9 0,8 5,9 6,8 0,C 0,B 2,0 0,1 -1,5 1,1 5,7 7,6 1,B 2,6 3,1 7,6 -1,3 4,6 4,3 -1,0 -1,4 9,6 1,1 7,0 1,1 8,6 -1,0 0,3 -1,6 -1,4 2,9 9,C -1,7 -1,3 8,2 -1,2 4,9 7,1 8,9 -1,9 8,C 8,7 8,8 4,7 6,7 8,4 -1,4 -1,1 7,6 6,9 6,6 3,1 2,B 8,1 0,3 1,B 3,B -1,6 4,B 9,4 7,9 3,C 4,C 3,5 9,C 7,8 2,7 0,4 7,7 0,2 -1,9 0,9 4,2 1,B -1,8 9,5 2,6 5,3 6,B 3,7 7,1 1,3 6,0 5,0 -1,7 3,5 -1,4 4,0 1,9 -1,9 7,4 1,C 0,0 -1,8 1,7 4,3 6,7 9,3 -1,8 4,4 -1,2 -1,9 6,3 0,B 9,4 -1,6 4,0 2,3 -1,5 -1,5 4,4 4,2 6,3 8,C 1,7 8,B 9,7 0,C -1,6 -1,8 8,9 -1,6 7,0 0,1 3,7 7,6 9,1 9,6 4,9 9,3 -1,7 1,4 9,1 5,B -1,3 2,4 7,2 7,6 1,4 0,B 8,2 4,1 -1,8 9,8 9,7 4,C 5,3 1,C 0,0 5,6 -1,7 8,2 4,9 6,B 9,9 7,2 5,3 4,B 0,B -1,2 -1,7 2,4 5,7 -1,5 -1,6 6,3 9,5 -1,5 -1,3 2,2 -1,3 -1,9 4,8 9,B 7,B 3,C 8,0 1,2 4,7 -1,5 1,4 4,3 4,9 -1,3 -1,4 -1,5 0,0 4,6 9,B 9,1 8,4 8,C 4,3 5,2 9,9 4,7 -1,7 0,2 -1,5 9,5 8,6 0,1 -1,3 8,7 4,4 5,C 8,2 2,1 5,9 7,8 6,C 3,0 1,2 6,9 0,1 -1,4 8,5 5,3 9,8 9,C 8,9 4,2 0,5 8,3 1,0 7,7 4,6 5,3 0,6 4,5 1,2 2,B 7,0 0,4 7,B 1,6 8,8 8,3 4,8 1,4 -1,7 1,2 -1,4 1,C 8,9 2,8 7,C -1,0 6,C -1,5 4,5 0,B 1,C 4,0 -1,9 5,C 7,4 4,9 5,9 2,1 4,1 8,4 -1,4 1,3 1,9 6,B 4,C 2,3 8,7 3,0 -1,8 3,3 1,9 0,C 2,5 7,C 9,C -1,9 3,8 2,1 4,5 0,5 6,5 4,6 2,8 -1,6 -1,4 8,6 2,7 8,0 9,5 4,C 8,7 0,1 -1,1 8,B 9,5 5,C 3,2 -1,4 7,C 8,5 2,0 1,5 3,6 1,B 2,0 -1,0 0,9 5,4 4,9 7,4 -1,3 -1,0 -1,8 2,2 0,3 3,6 1,8 6,B 4,4 8,8 2,1 0,9 1,B 8,B 1,0 8,3 7,7 3,9 6,4 9,6 4,7 -1,5 -1,2 -1,8 1,9 -1,5 4,1 9,B -1,1 5,B -1,3 6,5 5,9 3,5 1,B 1,B 9,3 7,B 1,2 7,2 3,1 7,8 6,C 0,7 0,B 3,2 8,C 1,3 6,C -1,0 0,6 3,4 2,6 -1,4 2,0 4,3 7,0 7,0 8,5 4,3 7,4 3,5 9,2 0,5 5,C 0,7 1,0 4,3 -1,1 1,8 2,2 2,9 4,2 1,3 6,C -1,3 0,3 -1,9 -1,0 5,6 -1,1 -1,7 -1,0 2,5 6,6 -1,8 -1,2 8,B 2,7 0,3 0,7 8,4 6,5 7,3 2,B 5,6 4,B 3,1 -1,0 -1,1 3,7 6,6 -1,9 4,7 2,9 -1,5 0,B -1,7 4,3 0,0 2,9 8,C 2,0 4,B 3,7 7,6 -1,6 7,4 0,4 5,1 2,2 -1,7 -1,2 -1,5 3,B -1,3 2,6 7,1 7,5 3,B -1,0 -1,9 -1,7 -1,0 -1,8 4,0 8,0 4,C 9,3 4,2 7,B 1,9 4,6 -1,4 8,7 -1,7 -1,4 0,8 -1,5 6,2 7,9 7,2 3,9 2,B 8,5 3,6 6,C 8,B 9,B 0,8 7,6 0,8 9,8 0,4 4,6 -1,4 3,7 -1,1 6,2 -1,7 8,1 -1,1 5,B 1,2 -1,0 5,6 2,0 5,2 -1,5 7,0 4,5 -1,2 8,7 -1,8 4,2 9,5 7,8 -1,7 -1,2 8,5 4,9 4,B 3,B -1,2 7,1 1,C 7,4 -1,8 2,8 1,0 -1,6 5,B 2,B 5,B 6,5 9,2 2,9 8,6 8,5 -1,3 4,3 8,C 7,5 8,2 5,C 2,4 9,C 8,5 8,3 9,8 -1,9 8,3 5,9 3,2 6,7 7,B 2,2 2,1 4,1 0,2 1,9 1,9 5,C 5,5 1,C 6,4 2,7 5,4 -1,9 7,3 5,7 -1,3 2,1 7,0 2,4 -1,0 4,0 6,8 0,7 9,4 3,C 7,9 1,5 3,7 4,4 3,9 -1,7 -1,7 4,4 -1,0 0,B 4,1 -1,8 0,5 5,1 3,0 1,C 3,B 6,1 5,C 6,9 0,1 2,C -1,8 -1,5 1,B -1,6 1,7 0,C 3,B 8,3 0,B 9,C 5,1 9,7 0,C 1,2 -1,5 0,6 4,8 3,1 0,0 -1,2 -1,7 2,2 8,5 4,7 3,3 2,0 7,3 2,C 7,8 2,4 2,B 6,0 -1,7 0,C 5,C 6,4 3,B 9,2 -1,9 -1,2 3,5 3,4 -1,9 2,9 1,1 3,3 6,1 -1,5 2,3 9,5 -1,6 2,7 5,C 9,9 8,B 6,0 2,8 0,C 3,8 -1,9 8,B 6,9 3,C 7,C 1,5 2,2 9,4 7,0 6,B 3,9 3,1 4,4 2,7 -1,4 1,9 3,C -1,7 0,C 0,4 -1,1 0,3 7,9 8,9 8,5 -1,1 -1,4 1,B -1,0 0,0 4,0 6,7 3,9 -1,8 5,9 9,6 2,9 3,3 4,3 1,8 8,0 6,1 5,3 6,9 2,5 1,1 9,C 1,1 2,6 -1,2 6,2 1,C 1,2 8,9 4,8 -1,5 -1,8 9,9 6,8 4,5 4,6 9,B 6,3 -1,6 7,1 8,6 -1,2 8,3 -1,9 7,7 5,C 9,3 6,9 0,2 4,0 -1,8 5,9 -1,4 5,7 -1,2 2,8 4,9 5,6 7,1 9,B 1,8 -1,6 3,4 9,9 -1,4 0,1 3,1 7,C 5,8 -1,2 0,5 5,C 7,5 0,1 4,1 2,7 -1,4 4,2 -1,6 3,4 9,8 6,C 4,1 5,2 -1,9 7,7 -1,0 5,3 7,B 8,5 0,9 4,0 -1,7 3,2 0,5 8,9 2,C 3,3 1,4 7,9 3,9 6,B 9,3 4,B -1,8 1,1 3,4 2,C 2,C 7,0 9,5 8,9 -1,2 0,5 4,B 6,4 2,5 -1,3 0,2 7,9 -1,3 -1,2 -1,7 6,C 9,4 2,6 0,B 7,2 7,9 0,4 -1,2 7,3 2,C 6,C -1,0 -1,2 -1,0 1,3 8,8 7,B 4,4 -1,4 5,C -1,7 1,7 2,4 5,0 7,0 1,7 2,9 -1,7 6,4 5,6 1,1 1,1 6,7 0,7 -1,7 5,B 1,C 2,B -1,2 0,C 0,3 2,3 3,6 5,C 9,8 4,6 3,B 2,7 6,9 2,6 4,5 8,0 3,B 1,8 1,4 -1,9 5,B 5,C 0,C -1,9 9,0 5,8 -1,6 2,5 1,9 8,5 5,C -1,0 -1,1 6,8 5,3 -1,8 6,5 -1,6 7,4 -1,7 3,C 4,3 9,0 5,4 2,B 1,2 4,C 8,8 6,5 5,2 8,4 7,3 6,C 5,4 3,6 3,9 9,7 -1,2 6,5 -1,0 5,0 -1,8 -1,0 -1,1 0,7 -1,6 8,6 2,C -1,9 7,7 -1,4 7,4 7,9 4,5 -1,1 7,6 9,B 9,3 0,2 4,B 4,C 8,4 -1,4 2,6 0,1 8,8 1,1 3,6 -1,5 5,C 6,3 5,6 0,0 5,6 4,7 -1,4 -1,9 8,7 1,C -1,9 2,7 -1,3 8,9 6,2 9,7 1,8 2,5 5,1 -1,3 -1,2 -1,1 2,9 7,0 5,0 9,C 2,0 7,9 3,C 4,2 0,C 5,6 8,5 3,B 6,9 -1,8 7,5 -1,5 4,8 6,B -1,7 -1,0 1,7 9,B 1,9 7,C -1,9 2,9 -1,7 0,C -1,1 1,1 0,C -1,5 3,7 -1,1 4,B 4,7 8,B 1,B 3,4 8,6 5,C 8,3 3,0 -1,7 6,1 1,8 0,B -1,8 -1,3 2,2 3,6 1,2 -1,6 4,2 8,B 6,4 6,2 4,0 7,C -1,8 7,3 6,B 1,C 4,1 6,B 2,7 4,1 -1,0 -1,5 -1,2 0,9 3,1 6,8 1,0 4,9 -1,3 0,1 -1,7 7,C 3,3 9,4 7,2 6,6 -1,9 4,C 6,C -1,6 2,6 2,3 3,2 4,8 9,7 2,C 3,B -1,3 -1,9 -1,2 1,3 3,8 8,0 3,B 8,C 8,5 6,6 0,5 4,B 2,4 6,B 4,C 4,2 3,3 3,8 -1,7 -1,4 6,5 -1,4 7,1 4,C -1,0 0,3 9,C -1,8 2,C 4,3 1,9 -1,4 3,4 3,0 2,C 6,5 5,3 2,9 5,B 1,4 8,9 8,9 2,7 -1,5 0,0 9,2 4,3 1,4 0,2 6,6 8,C 5,5 0,9 2,7 -1,9 -1,2 9,6 5,C 1,B 3,0 7,3 5,5 8,6 1,2 0,B -1,6 6,9 -1,8 -1,9 8,7 4,3 5,3 4,6 -1,8 -1,2 9,1 0,B -1,0 6,C 5,6 8,2 5,B 7,2 1,B 0,2 -1,4 3,C -1,8 5,4 8,2 -1,5 7,B -1,6 5,5 9,2 9,9 8,6 1,2 4,7 9,4 6,9 9,7 8,8 9,9 7,3 9,5 4,5 7,6 2,7 0,8 6,C 9,8 9,2 7,9 8,4 7,9 4,7 3,B 2,6 0,8 3,7 4,7 4,8 -1,7 2,B 9,3 -1,1 7,8 8,9 8,6 -1,6 3,C 7,C 0,4 2,B 7,C 4,3 -1,1 7,8 0,6 1,3 7,4 -1,6 2,2 8,0 1,C 2,6 4,0 0,4 0,2 3,3 7,C 4,3 9,B -1,9 -1,6 0,6 1,7 7,5 2,6 8,5 5,C 3,6 -1,8 -1,7 -1,8 0,4 8,9 2,1 7,8 6,5 0,C 5,B 0,C 7,9 3,3 7,4 0,9 1,4 6,8 0,7 5,0 4,5 8,C -1,4 0,9 0,2 2,1 2,C 9,8 3,2 3,C 3,4 5,B 7,B 7,0 0,9 3,B 5,B 8,8 -1,5 2,2 7,4 1,C -1,6 4,5 7,0 -1,8 -1,2 2,C 3,4 9,8 -1,9 4,1 -1,1 -1,8 -1,3 -1,6 -1,0 6,8 -1,7 6,4 9,B 0,9 8,2 -1,2 7,2 2,C 6,C -1,4 8,5 5,6 -1,1 9,9 1,3 5,9 -1,1 9,4 5,2 8,8 3,6 0,3 9,3 2,2 3,3 5,2 0,8 -1,1 2,4 4,1 2,7 0,1 2,6 8,B 7,1 5,C 2,3 1,7 -1,9 4,B 9,4 -1,7 2,6 9,1 4,C -1,3 7,2 -1,5 5,7 -1,8 -1,3 7,5 4,0 1,1 -1,5 8,3 6,9 0,9 7,9 -1,1 -1,7 -1,9 -1,3 9,B 1,B 4,7 0,B 9,8 4,5 5,7 2,B 6,B 7,0 -1,0 3,9 4,3 9,3 2,B -1,7 5,5 3,C 7,C 3,0 -1,9 8,3 -1,9 -1,0 4,3 3,4 7,9 -1,2 5,4 9,0 -1,8 3,0 9,3 7,0 -1,6 1,4 4,B 5,4 8,C 3,1 0,1 1,1 4,5 8,9 3,B 2,C 1,B 8,C 9,C 9,B 6,7 -1,9 3,6 1,B 9,0 3,B 0,6 9,1 2,C 2,B 0,3 3,6 6,1 -1,4 -1,6 -1,3 0,6 1,2 6,6 3,1 6,C -1,9 -1,2 0,4 4,0 -1,3 2,8 6,0 6,5 0,C 9,9 7,8 -1,0 3,9 3,C 5,1 0,4 8,C -1,7 -1,3 -1,0 5,7 4,1 1,4 3,C 9,0 7,9 2,2 -1,2 9,0 3,1 0,6 5,6 -1,8 8,2 -1,3 1,3 4,8 3,B 5,B 0,9 8,5 1,C -1,9 2,2 1,1 1,5 8,6 6,8 2,4 9,9 1,5 0,0 4,4 7,2 3,2 -1,5 5,B 2,1 5,5 7,3 0,0 1,B 6,B 4,8 8,0 0,7 6,C 1,1 -1,4 3,C 1,2 9,8 5,3 9,9 -1,2 4,1 -1,1 8,C 4,C 1,B -1,7 6,9 2,B 9,B 7,5 3,2 8,1 8,2 1,0 2,5 8,1 -1,0 -1,7 6,0 -1,4 0,5 0,4 1,4 6,6 5,4 3,C 1,5 -1,1 -1,2 8,B 8,B 9,B 5,8 8,B 1,9 -1,4 7,8 4,0 5,3 1,9 5,2 8,B 8,C -1,0 8,1 5,7 5,5 1,2 9,C 2,0 3,5 8,2 4,2 5,B 7,9 -1,3 9,B 0,C -1,8 9,1 -1,9 7,4 2,3 4,C -1,6 8,C -1,5 0,3 6,B 9,1 8,B 4,B 2,B 5,4 8,3 3,B 3,5 3,1 4,2 5,0 8,B 2,8 2,8 3,B 7,7 -1,7 5,B 5,1 6,B 9,5 -1,7 8,6 5,7 9,B 4,4 3,1 0,1 5,0 0,7 -1,8 7,8 9,5 8,9 1,5 2,B 1,5 9,4 7,2 -1,2 -1,1 4,5 4,6 9,3 8,C -1,3 7,2 -1,0 -1,3 -1,8 5,5 4,9 -1,9 5,8 1,C 6,4 -1,4 0,C 1,8 4,3 7,2 -1,4 8,4 -1,8 0,B 9,4 8,3 5,4 6,0 -1,9 5,C 2,0 3,2 3,B -1,8 -1,4 3,8 5,8 5,C 3,1 6,7 -1,8 5,8 8,8 0,7 0,9 3,8 2,C 8,0 -1,4 4,2 -1,0 4,8 2,3 5,4 6,C 9,1 8,8 7,B 1,4 1,B 9,C -1,9 2,8 9,2 3,4 -1,7 1,3 -1,5 7,C 3,7 -1,1 7,4 4,3 -1,8 -1,4 8,9 2,8 5,6 4,C -1,4 9,C 6,1 7,B 4,1 0,8 0,5 -1,6 6,3 -1,4 6,B 8,6 -1,8 2,B 6,B 3,3 4,1 6,0 2,0 3,1 5,B 4,7 7,4 8,8 2,6 5,B 8,B -1,1 -1,3 -1,5 6,C 5,9 8,5 8,1 8,6 -1,2 7,C 2,3 -1,7 5,C 7,7 2,2 6,B 3,9 9,3 5,5 2,B -1,4 9,C 4,B 1,4 4,B -1,1 -1,3 2,3 1,0 -1,8 2,C 8,B 0,2 0,B 0,B 4,5 8,1 7,B 6,4 7,6 9,1 9,8 4,5 -1,1 2,9 6,6 0,2 7,B 4,5 5,9 9,2 -1,0 -1,2 0,8 8,5 0,7 3,2 2,4 5,9 1,B 0,0 -1,4 -1,7 5,7 -1,3 0,1 9,C 1,9 7,8 7,7 1,7 3,9 7,0 8,6 0,5 5,7 8,0 6,5 1,5 3,8 8,6 3,5 8,C 1,2 7,B -1,8 3,6 1,2 1,1 8,1 0,6 1,7 -1,6 6,C 6,8 5,5 6,7 2,1 2,C 8,C 7,9 1,8 1,7 -1,1 2,3 9,2 7,9 0,8 7,5 8,8 5,C 4,0 5,2 3,4 9,9 -1,5 5,1 8,1 5,9 -1,8 5,B 8,B 5,6 5,B -1,3 7,C 1,2 7,B 1,5 1,C 0,B 6,6 5,6 4,B 6,7 2,8 -1,6 9,9 -1,2 3,C -1,1 4,9 7,2 7,8 8,6 3,1 1,C -1,0 1,C 4,7 8,C 2,8 8,1 0,1 -1,8 9,4 2,B 9,7 2,C 9,8 6,3 3,5 -1,3 7,C 0,0 0,1 5,B 2,4 2,C 0,5 6,C 7,4 4,5 5,5 2,7 5,2 7,B -1,7 6,B 9,1 -1,3 4,8 -1,1 -1,5 0,3 9,8 1,4 -1,0 0,3 3,4 7,4 9,1 5,B 1,0 9,2 5,4 8,5 1,3 -1,1 1,4 -1,3 6,0 9,1 8,C 7,1 0,5 7,6 5,6 9,9 0,9 0,5 -1,5 9,B 7,7 -1,9 2,0 -1,4 -1,8 -1,3 4,0 9,8 0,6 6,B 7,7 4,3 5,7 3,4 8,4 4,B 8,C 2,8 7,C 5,0 6,5 5,6 3,0 8,1 -1,5 6,1 8,5 0,7 8,8 5,1 3,7 4,6 -1,1 6,5 1,B 7,1 4,9 -1,5 -1,7 5,7 6,8 8,C 5,1 3,8 2,B 2,C -1,1 4,5 6,2 -1,3 6,7 0,7 7,7 6,C -1,0 0,C 4,3 3,0 5,6 6,C 1,2 9,C 2,C -1,6 1,6 -1,5 1,0 8,1 5,B -1,9 -1,9 5,7 2,7 4,C 5,5 2,3 3,7 4,C 6,6 9,2 5,3 -1,0 6,6 1,7 -1,4 4,9 9,0 0,5 3,3 7,B -1,9 0,6 3,6 2,C -1,2 6,B 5,5 5,2 2,B 8,7 0,2 0,6 8,3 0,3 4,9 8,6 4,B 9,C 3,2 3,7 -1,7 5,5 1,7 4,0 0,9 5,B 9,7 -1,8 6,5 7,C -1,0 5,9 9,3 4,4 3,2 -1,9 6,0 2,2 2,7 2,6 4,3 6,6 0,9 1,C -1,7 8,1 4,5 0,9 -1,2 2,B 2,C 2,5 4,7 -1,7 -1,7 0,2 0,C 8,C 2,7 3,4 6,0 4,5 5,3 2,B -1,5 0,9 5,9 0,0 1,8 7,B 6,1 3,1 9,4 -1,0 -1,6 -1,3 8,2 1,2 0,9 -1,5 3,C 3,C 5,3 9,7 9,0 4,7 -1,1 3,C 5,8 9,7 -1,8 5,6 -1,2 -1,1 7,4 8,9 9,B 6,9 3,9 -1,3 1,2 3,2 4,8 7,5 1,9 8,C 5,B 4,1 -1,8 -1,3 -1,3 -1,3 7,C 6,B 9,C -1,7 7,9 -1,0 -1,7 7,8 -1,6 1,1 1,C 4,1 3,7 4,7 -1,6 8,1 0,0 2,C -1,9 8,5 8,3 9,1 3,B 1,2 2,6 5,B 9,0 2,1 -1,0 4,4 -1,4 6,C 8,6 -1,0 3,3 1,9 6,5 3,8 6,2 6,8 8,B 6,2 0,9 7,3 4,B -1,2 4,9 6,4 0,B -1,9 9,7 7,5 3,3 8,8 -1,1 0,2 0,0 1,7 4,C 3,9 -1,7 0,7 5,B 3,2 4,0 -1,2 7,2 3,7 5,5 1,2 4,8 -1,2 3,6 2,8 7,4 2,9 3,6 -1,1 6,B 1,1 3,1 8,2 -1,1 9,5 5,5 8,9 5,9 6,6 1,7 1,C 8,0 5,C 6,3 -1,7 4,5 3,6 1,B 6,1 0,B 4,9 7,7 1,1 6,0 8,7 2,C 8,6 8,B 2,1 5,0 6,1 3,9 5,9 3,B 6,6 -1,0 8,3 8,C 4,4 6,C 8,C 9,7 6,7 2,1 -1,0 8,3 7,2 8,9 8,3 3,4 7,4 4,0 4,C 3,4 6,1 6,B 8,C 5,B 0,3 6,C 5,7 8,B 8,4 4,6 4,C 2,3 6,B 6,0 -1,2 -1,2 0,B 0,7 5,B -1,5 3,3 7,C 7,C 8,3 2,B 6,2 3,7 1,C 5,6 -1,8 4,2 -1,1 7,7 -1,0 9,4 8,1 4,3 3,4 -1,7 9,B 2,0 2,3 -1,5 0,B 4,C 7,6 4,3 8,5 0,7 -1,2 2,6 -1,0 9,B 9,9 5,9 -1,1 4,2 -1,8 -1,0 9,0 8,0 6,0 1,1 5,4 2,2 7,9 7,2 9,6 7,6 7,4 -1,7 6,3 0,9 8,8 1,1 5,C 4,3 -1,0 -1,2 9,2 4,B 1,7 4,5 -1,6 -1,2 -1,1 -1,0 6,3 0,3 6,B 4,B 7,6 0,B -1,8 8,6 4,8 6,B -1,9 4,8 -1,6 2,5 -1,3 3,3 5,2 4,9 1,1 5,B 8,3 8,1 3,5 0,B 1,B 5,B 7,9 6,6 2,3 2,4 7,9 8,4 -1,2 4,4 9,4 3,C 4,3 6,9 8,B 0,5 7,8 7,C -1,6 0,B -1,1 8,4 5,3 1,1 7,8 7,8 6,0 9,8 6,7 8,7 1,5 8,5 8,C 0,7 3,6 2,8 4,C 5,6 5,3 2,0 6,9 4,2 -1,9 -1,3 7,C 7,8 1,7 4,0 5,4 1,7 -1,7 2,6 5,2 5,7 -1,5 -1,9 1,C 2,C 8,B 4,3 0,0 7,3 1,0 3,9 -1,4 -1,6 -1,4 2,8 6,4 4,2 8,B -1,0 8,6 4,B 8,C 6,7 3,8 7,C 9,5 8,C 1,8 8,8 9,5 -1,9 -1,8 -1,5 4,6 9,5 0,7 -1,8 7,C -1,4 8,9 5,3 7,0 1,9 9,4 -1,0 1,0 3,2 2,8 -1,1 8,8 2,C 9,8 2,B 7,C 4,9 4,2 -1,9 7,0 -1,5 -1,0 8,6 1,0 1,2 9,8 2,C 4,5 7,2 1,8 9,3 8,6 6,9 5,9 0,8 2,8 -1,3 9,0 9,1 4,4 4,3 6,9 0,0 -1,7 -1,2 2,B 6,3 1,1 4,6 -1,4 -1,0 7,7 4,5 6,B 0,3 3,B 8,5 8,5 5,7 7,5 2,8 1,5 1,8 7,C 5,C 1,7 -1,1 0,6 9,B 8,6 4,4 5,1 4,8 3,6 -1,1 0,6 3,C 8,B 9,2 6,3 1,5 2,9 2,2 -1,3 -1,5 1,3 6,4 9,0 7,7 -1,5 0,3 1,4 2,6 9,3 1,B -1,8 2,4 5,8 2,7 0,1 -1,2 -1,1 0,6 -1,9 9,8 5,C 3,7 -1,6 -1,8 -1,8 4,B 2,3 9,5 5,C -1,4 2,6 5,0 -1,8 7,1 6,C 5,1 6,8 8,1 4,3 2,6 -1,8 6,2 2,5 0,1 9,8 -1,4 -1,4 5,9 9,0 -1,8 1,B 0,2 9,8 8,4 0,3 6,3 9,C 3,1 1,3 0,6 -1,3 6,8 -1,8 5,5 3,7 9,C 8,8 9,9 5,C -1,5 4,3 7,0 8,2 0,2 0,B 3,1 2,1 -1,7 7,B 4,1 9,1 1,4 9,B 7,5 3,2 8,9 5,C 2,8 3,9 9,5 -1,0 3,3 5,2 8,0 -1,8 8,B 2,C 4,4 -1,4 6,9 7,8 7,C 2,6 8,8 5,4 -1,8 8,B -1,1 8,6 3,3 -1,1 8,0 8,C 4,2 0,7 4,9 4,C 2,B 9,5 9,0 9,9 1,7 -1,1 6,2 3,7 2,6 7,9 5,7 1,5 8,3 2,2 1,4 -1,2 9,C -1,7 -1,2 3,1 -1,8 8,5 9,B 4,0 1,9 5,0 5,6 5,4 -1,0 -1,5 6,6 6,6 3,C 9,C 1,2 0,C 2,4 -1,3 5,B 3,0 7,C -1,1 -1,6 1,B 6,B 6,C -1,2 7,2 8,3 6,C -1,8 9,7 -1,1 4,0 7,C 3,1 8,7 -1,6 3,2 8,B 8,3 -1,6 0,2 -1,4 7,5 6,5 6,9 -1,7 6,B 6,2 5,0 8,2 2,8 7,6 3,6 8,C 4,6 6,8 1,9 9,2 -1,9 1,7 1,3 4,B -1,7 -1,7 -1,6 4,4 -1,8 5,6 4,C 5,C 3,3 -1,2 2,B -1,5 -1,2 -1,5 3,6 7,C 8,6 2,4 5,7 7,B 6,9 4,3 4,6 3,0 -1,9 3,1 7,0 3,0 -1,3 9,2 4,8 -1,1 3,0 1,3 0,2 2,0 1,6 -1,8 2,8 9,C 7,0 4,6 5,5 0,3 9,4 3,1 6,1 -1,3 6,8 9,9 6,C -1,8 -1,9 4,8 6,9 -1,7 6,5 3,B 2,4 0,9 -1,7 4,C 0,9 4,B 8,3 -1,7 9,1 7,7 9,C 9,5 7,4 1,7 6,8 3,7 4,0 -1,2 0,0 -1,9 6,3 -1,2 2,3 9,7 9,2 4,0 0,9 -1,5 8,4 6,C 8,B 8,2 -1,1 0,7 7,2 3,2 4,0 2,9 8,1 3,3 0,5 3,3 2,5 3,C 2,8 -1,9 9,C 7,9 3,7 8,9 5,8 4,C 9,0 8,6 6,9 -1,7 4,8 3,0 -1,1 -1,7 5,7 -1,8 2,9 7,C -1,5 -1,5 7,1 8,C 0,C 9,C 0,4 5,9 0,9 1,B 6,4 4,1 2,2 0,C 6,5 7,B -1,2 3,7 1,6 7,1 -1,8 0,6 7,2 -1,5 4,8 -1,1 3,2 1,6 -1,8 -1,2 1,B 6,1 -1,2 1,0 -1,0 3,6 1,3 3,8 3,6 9,9 9,0 2,7 9,6 1,B 1,0 2,C 2,2 2,5 3,0 3,B -1,1 0,6 5,8 1,C -1,5 0,C 9,0 5,0 9,B 1,C 6,9 -1,7 -1,2 -1,7 8,2 -1,2 0,B 1,8 7,7 0,C 8,B 7,5 7,0 5,4 5,C -1,3 -1,4 -1,2 -1,4 9,5 3,C 0,8 -1,5 -1,8 -1,5 -1,1 0,B -1,5 8,0 1,5 -1,3 9,9 1,7 3,4 -1,9 6,0 9,6 0,5 8,5 9,C 0,4 -1,9 -1,1 3,B 3,0 -1,1 5,4 2,6 3,6 0,8 7,2 -1,8 -1,2 9,2 -1,8 6,2 -1,6 1,7 8,B -1,1 1,B 5,2 0,4 0,9 1,7 8,4 4,0 0,3 5,8 4,C 6,C 2,4 2,8 5,6 6,7 1,C 2,7 2,9 0,1 9,5 8,C 8,4 -1,5 2,B 1,0 2,4 -1,3 6,3 1,8 8,B -1,1 5,8 2,B 1,2 4,C 4,C -1,3 -1,8 4,8 7,2 6,C -1,5 2,1 6,9 5,B 1,4 5,5 7,8 0,0 -1,6 2,3 -1,0 6,0 8,8 -1,7 -1,1 5,3 2,C -1,1 7,5 8,4 3,C 4,5 1,1 8,B -1,0 -1,4 -1,7 9,C -1,9 6,8 5,C 4,1 -1,5 -1,4 2,0 -1,0 6,C 9,6 -1,7 0,6 2,0 3,1 3,8 7,0 8,B 8,1 8,2 9,B 5,C 6,7 9,1 2,8 5,8 6,5 -1,3 0,8 5,0 8,8 4,2 2,6 4,9 7,5 1,3 2,1 5,8 2,1 3,2 4,7 0,C 6,8 9,1 -1,6 2,B 0,1 2,7 6,4 1,6 -1,2 -1,8 2,8 5,C 5,9 1,B 9,1 8,C 3,7 1,8 7,1 -1,0 8,0 4,9 2,4 1,B -1,7 6,9 9,C 0,1 6,5 7,7 -1,6 1,6 0,7 3,6 1,0 5,B -1,6 4,3 6,B -1,0 0,6 6,1 9,4 2,C -1,9 6,C 0,0 9,5 -1,9 5,0 1,1 7,6 -1,1 3,1 6,B 5,4 5,1 2,8 3,2 9,8 3,8 5,4 4,B 3,1 4,6 2,2 9,0 7,1 8,6 4,5 0,5 8,7 -1,9 3,3 7,0 4,6 7,C 0,4 1,C 7,3 8,7 6,4 -1,1 8,7 9,3 -1,4 -1,0 -1,1 9,9 5,9 1,9 0,7 0,6 3,C 1,6 4,7 2,C 2,6 8,B 4,2 1,8 0,0 2,7 3,9 3,8 6,9 0,8 2,3 -1,5 2,0 3,6 7,B 4,8 0,3 2,3 2,2 6,7 -1,4 3,5 0,C 2,B 0,4 9,C 1,0 8,3 3,1 5,3 3,1 7,2 2,7 9,C 0,3 -1,4 9,4 -1,2 4,8 2,6 2,5 9,6 5,6 0,5 4,6 -1,0 4,B 9,8 -1,7 1,C 8,2 7,7 -1,6 1,5 2,9 8,8 7,7 3,B 4,5 4,1 2,8 2,4 4,5 5,5 1,0 7,C -1,5 9,8 -1,1 9,0 3,3 -1,3 8,7 2,5 0,3 -1,3 1,1 -1,3 6,8 3,8 -1,5 0,8 2,4 4,5 1,B 6,6 5,2 9,9 8,1 7,1 1,6 -1,3 -1,5 -1,8 0,B 3,B 0,C 5,B 3,6 -1,9 -1,4 3,2 6,1 -1,2 0,0 6,1 -1,1 3,4 0,B -1,1 8,B 9,8 4,4 6,0 3,2 7,0 2,0 9,0 -1,3 1,7 2,6 -1,3 8,4 3,2 5,6 5,6 3,4 9,B 9,B 2,4 -1,4 9,6 9,B 4,3 1,4 8,0 1,8 -1,0 6,9 3,9 1,B -1,3 8,C 7,0 5,C 9,C 3,4 6,C 9,1 5,5 6,B 5,C -1,4 4,C 5,6 8,2 1,3 -1,5 -1,1 2,C -1,9 3,8 9,B 0,9 -1,1 2,1 -1,9 4,4 9,1 1,6 8,5 -1,1 1,C 6,B 4,7 4,4 3,6 0,C 1,6 -1,7 4,8 -1,5 3,5 7,9 7,5 3,B 0,B 3,3 0,C 5,9 1,3 -1,0 2,B -1,1 6,0 2,B 6,B 2,4 9,9 4,2 3,3 6,6 2,5 8,8 6,8 6,4 0,2 0,8 -1,1 1,8 0,9 4,6 1,C 9,3 3,4 8,6 9,9 9,6 -1,7 6,2 6,0 6,0 9,B 7,B -1,8 7,4 8,2 5,C 5,4 4,7 8,8 3,2 -1,9 7,C -1,1 7,0 6,9 8,6 2,C -1,1 4,0 6,5 8,1 0,B -1,3 9,B -1,6 9,C 6,9 3,3 8,2 7,C 2,2 0,C 2,C 9,8 -1,3 1,B 5,7 -1,7 2,7 5,6 2,4 1,C -1,5 5,7 6,8 6,B 1,2 5,C 8,3 6,6 6,4 5,8 9,B -1,5 0,8 3,C 4,C 8,B 2,B 3,7 5,C 8,B 4,6 8,C 1,6 -1,9 5,C 8,0 5,8 -1,5 3,B 5,2 8,C 1,3 -1,7 7,B 4,9 8,0 -1,6 -1,9 9,C -1,8 2,7 3,C 0,3 8,7 9,5 2,C 4,5 8,8 -1,3 1,3 2,B 3,C 7,5 7,B -1,8 9,3 1,C 5,2 9,C 7,8 -1,0 9,C 8,2 2,5 3,5 4,C 1,8 7,9 4,C -1,0 9,3 9,7 9,2 -1,3 1,2 6,7 9,B 2,B 2,8 7,B 4,0 -1,5 9,B 8,B 2,C 4,2 5,4 2,C 6,3 0,4 1,7 0,6 7,6 8,1 2,3 -1,8 0,2 8,3 9,1 7,7 7,3 1,C 5,4 4,0 5,2 5,6 8,8 5,6 2,B -1,1 -1,3 -1,2 9,7 9,7 9,4 1,3 8,C 1,C 1,4 6,B 5,6 1,3 0,9 5,1 -1,7 8,9 6,9 5,3 2,3 8,6 8,7 9,7 6,C -1,5 8,5 1,2 -1,5 2,0 9,1 9,B 1,B 2,6 7,C 8,B 5,B 1,4 1,8 0,4 9,5 0,B -1,0 5,C -1,0 6,B -1,6 5,B 0,1 0,1 9,1 7,9 -1,7 9,1 2,4 7,2 -1,6 8,5 -1,8 2,5 4,2 -1,5 7,B 8,9 7,B 5,2 1,3 1,9 4,4 1,B 5,4 7,8 6,B 1,B 7,7 2,4 6,6 6,B 7,3 8,7 7,8 2,C 8,2 0,0 0,3 8,6 7,6 -1,1 3,5 8,7 7,C 6,5 8,1 -1,6 9,7 7,C 7,1 -1,5 -1,9 -1,0 7,4 7,3 2,2 2,0 5,C 1,B 9,B 7,4 -1,7 0,2 5,6 2,1 6,3 8,9 6,0 6,C 2,C -1,9 8,5 2,5 5,B 4,B -1,1 3,6 5,4 5,C 5,3 4,7 -1,5 4,C 0,8 4,B 1,8 9,C 2,C 7,7 3,4 4,5 7,0 9,6 4,B 0,3 0,0 0,1 2,9 -1,6 7,7 0,B 6,2 4,7 9,C -1,5 3,C 8,B -1,6 4,4 4,8 -1,1 4,B 9,6 6,6 6,C 1,3 -1,6 9,8 5,C 3,2 7,B -1,4 0,8 6,4 7,6 7,7 -1,6 3,1 6,8 -1,7 4,2 8,9 -1,3 9,7 1,9 0,5 -1,2 1,0 -1,9 2,0 9,0 -1,2 1,0 9,9 7,3 3,B 5,C 1,5 -1,6 1,8 6,C 7,3 1,3 3,B 3,4 5,5 9,9 8,9 5,3 7,C 3,6 7,9 4,3 2,4 2,5 1,7 5,8 6,2 1,3 -1,1 -1,5 6,5 5,9 9,0 6,C 3,0 -1,9 0,7 0,9 -1,6 1,B 9,C 0,2 -1,6 3,5 -1,8 -1,2 -1,3 8,5 6,B -1,9 4,C 8,0 6,1 3,7 7,B 7,9 -1,2 -1,0 9,3 3,5 2,6 8,0 -1,7 6,6 7,2 5,0 6,8 1,7 9,7 5,7 -1,5 -1,9 -1,3 5,C 7,5 4,C 2,8 -1,5 0,1 1,5 7,5 -1,8 -1,4 1,9 0,2 -1,4 4,5 8,9 0,8 5,4 3,3 2,1 -1,9 1,9 2,6 9,3 3,B 3,B 6,C 7,C -1,6 7,2 2,6 -1,7 -1,1 1,5 0,B 0,0 0,C -1,7 1,B 6,4 -1,7 -1,4 5,B 1,7 8,0 8,B 0,3 3,7 0,5 1,4 1,6 4,6 6,5 0,9 6,C -1,0 9,8 9,1 1,8 -1,0 -1,3 6,6 6,7 2,9 3,2 8,1 -1,5 9,B 4,B 0,8 1,B 1,B 3,3 3,4 7,5 7,C 8,1 9,9 7,1 -1,2 3,B 7,1 4,3 7,9 9,6 8,1 7,1 4,5 -1,9 0,6 7,2 9,7 -1,1 -1,1 -1,5 0,2 3,C 2,1 6,7 1,8 -1,4 0,6 -1,0 7,C 3,4 -1,0 9,1 9,9 -1,0 9,B 9,4 5,6 4,4 -1,6 0,0 2,6 0,C -1,2 2,7 5,0 9,0 9,C -1,1 8,5 2,8 2,5 8,9 8,5 -1,7 8,4 7,8 -1,7 7,4 8,4 8,2 2,9 -1,9 0,6 7,0 8,8 -1,8 4,0 -1,8 8,B 9,B 0,4 3,8 -1,2 4,B -1,5 -1,0 0,5 6,4 3,0 6,1 3,7 4,C 9,2 3,6 -1,2 8,4 6,1 0,2 4,6 8,6 3,6 6,1 4,4 -1,5 1,5 -1,5 6,3 -1,5 0,B 4,8 2,0 9,1 -1,9 7,0 8,3 5,7 5,5 8,3 6,C 5,B 2,6 -1,2 -1,9 0,9 5,6 0,8 2,C -1,6 5,B 8,B 5,C 3,7 7,0 5,B -1,3 2,1 3,0 0,7 9,7 6,B 0,1 -1,7 5,9 -1,7 4,4 3,9 3,5 -1,0 5,6 9,4 6,C 8,8 0,C 3,C 1,6 1,B -1,0 -1,6 -1,2 -1,8 -1,7 -1,5 7,4 2,B 6,9 3,4 0,C -1,9 1,C -1,5 -1,5 4,6 -1,6 6,7 6,6 9,C 3,0 6,1 -1,2 0,B 9,3 3,B -1,8 5,1 3,7 5,2 4,6 8,2 8,0 6,9 0,8 6,9 6,4 2,0 5,C 8,9 3,2 2,B 7,C -1,2 2,3 7,8 -1,0 2,C 2,0 6,5 6,0 9,B 6,7 1,3 9,4 -1,7 3,C 4,B 7,3 2,B 3,B 8,7 5,C 8,3 8,4 6,6 7,3 2,3 8,B 5,5 0,1 7,1 6,C 3,1 6,8 -1,9 8,C -1,0 1,6 3,5 2,0 9,8 4,B 3,5 2,7 3,2 9,B 5,7 0,4 4,5 2,5 8,2 -1,0 3,9 8,C -1,0 8,4 0,2 9,3 -1,3 2,0 5,B 4,2 -1,9 0,4 0,7 -1,6 1,4 1,6 7,5 0,C 2,4 0,7 6,3 -1,1 -1,7 4,B 4,1 5,C 0,2 7,5 7,B 8,0 0,7 8,C 1,5 -1,3 -1,6 -1,5 3,C -1,6 2,1 1,C 4,B 8,B -1,5 0,7 2,C 5,C 1,8 -1,6 4,3 6,7 2,B -1,7 8,1 1,8 7,9 3,B 4,C -1,4 4,B -1,2 -1,6 9,B 8,0 8,6 2,C -1,4 4,4 9,C 8,9 0,8 7,9 7,3 -1,7 7,3 2,7 -1,0 6,4 8,8 8,C 8,6 4,7 5,3 1,7 2,5 8,6 6,8 8,B 8,B 7,3 2,8 -1,5 -1,7 0,9 6,B 6,3 6,7 8,B 3,8 9,0 4,3 2,5 3,B 3,C 5,9 4,4 -1,6 2,C -1,3 5,3 -1,0 9,C 3,B -1,1 5,C 5,3 8,7 3,6 3,B 3,4 -1,8 1,1 9,9 -1,8 4,B 9,6 -1,9 -1,2 6,5 4,B 3,B 5,7 -1,0 0,8 9,C -1,6 1,0 7,7 0,B 3,B 8,7 6,B 1,2 4,B -1,9 0,3 6,2 -1,3 -1,1 -1,2 6,1 2,3 -1,0 3,9 -1,4 -1,7 -1,4 9,1 7,0 0,C 0,5 2,B -1,2 4,5 8,7 3,C 4,8 1,B 8,B 6,B 0,C 6,5 7,3 0,2 -1,9 0,4 0,8 8,7 7,C 8,B 1,7 3,B 2,1 3,3 2,C 0,9 2,9 2,4 -1,7 4,5 4,0 5,0 -1,8 4,9 7,7 6,B 4,0 7,5 6,8 -1,5 -1,7 -1,3 8,8 9,6 5,2 8,1 0,4 3,0 6,6 1,C -1,7 9,B 2,B 8,2 7,3 3,6 8,4 8,1 4,1 0,2 3,3 7,4 5,B 1,1 3,4 1,C 3,4 8,3 0,7 3,2 0,1 7,7 6,C 8,0 4,0 7,2 -1,3 2,4 5,C -1,0 -1,0 9,2 9,7 3,C 7,7 -1,2 3,1 8,7 3,1 6,6 8,1 9,6 7,8 -1,6 4,4 3,9 0,4 5,0 9,5 8,4 -1,2 2,B 6,C 9,7 7,8 9,0 7,1 7,9 -1,4 5,2 2,2 7,C 3,2 0,7 2,B 8,C 3,5 5,3 1,9 5,C -1,6 8,8 2,7 8,C 6,7 0,7 5,3 -1,6 -1,7 6,C 8,C 4,B -1,4 7,5 9,9 -1,7 7,2 5,5 5,1 1,9 5,C 2,B 6,4 2,0 -1,6 4,B 1,6 3,C 6,8 5,0 -1,7 -1,3 3,3 -1,8 -1,4 5,3 8,3 1,C 9,8 -1,2 0,B -1,6 -1,9 -1,6 2,6 3,C 1,8 0,4 5,7 7,6 6,4 0,3 7,7 -1,7 5,5 1,3 8,3 6,3 1,B 0,3 -1,5 8,6 5,5 9,2 3,7 9,C 9,1 -1,6 9,C 1,4 0,0 8,6 0,7 1,B 1,C 1,5 5,6 4,6 8,C 4,5 0,8 0,4 6,9 9,9 4,0 4,C 5,9 1,1 5,9 3,9 -1,8 1,2 0,0 9,3 -1,9 -1,5 7,5 -1,7 -1,9 0,C 6,4 0,6 4,3 6,3 0,6 9,3 4,0 0,2 8,0 9,0 5,6 7,1 9,6 5,7 1,9 9,1 1,C 7,2 -1,6 -1,2 5,8 6,C -1,9 3,3 8,3 1,9 3,5 4,0 -1,2 1,9 3,1 1,8 1,B -1,0 -1,9 0,0 9,C 9,C 4,9 6,1 3,0 7,9 8,3 5,3 4,2 8,C 5,1 1,0 -1,8 3,1 -1,2 2,1 0,1 4,2 6,2 0,8 0,6 4,7 1,2 9,4 0,9 9,8 1,C 3,2 0,9 1,3 6,8 7,5 -1,0 5,6 2,B 1,2 1,1 4,0 7,C 8,4 0,2 -1,9 -1,6 6,B -1,4 7,1 0,C -1,9 5,1 7,5 0,3 -1,0 7,5 -1,2 -1,4 9,C 3,0 6,B -1,2 0,C 5,8 0,9 5,0 0,3 -1,3 1,B 2,9 4,1 -1,8 6,7 -1,7 7,2 4,4 4,3 1,1 -1,5 0,6 4,3 0,6 -1,0 1,8 0,6 2,C 4,7 4,B 2,3 6,3 9,B 8,C 5,1 0,0 5,0 2,B -1,0 6,C 2,3 6,4 0,2 5,5 2,8 7,5 8,8 7,4 1,B 0,3 4,7 6,0 5,9 7,1 -1,1 -1,6 3,B 1,C -1,0 3,C 6,3 8,1 8,8 4,8 -1,1 0,B -1,7 -1,9 9,6 1,5 6,9 -1,0 4,B 3,1 4,0 6,4 1,6 -1,0 -1,4 4,0 6,2 3,1 -1,4 1,7 7,4 9,C -1,1 1,9 4,9 2,C 9,B -1,7 4,C 2,2 6,C -1,7 8,2 8,6 4,8 2,2 8,0 3,0 0,0 7,0 3,8 5,5 -1,7 -1,9 3,6 9,5 8,9 5,9 7,1 4,9 3,C 4,0 7,C -1,2 7,C -1,8 6,3 5,7 3,B -1,6 4,2 -1,0 9,4 0,3 8,C 3,5 3,C 0,2 6,C -1,8 7,1 1,9 0,9 -1,4 -1,4 8,2 -1,1 2,3 1,2 8,4 -1,8 -1,4 3,C 7,2 7,1 -1,0 1,C 4,4 7,B 4,2 3,9 4,9 2,C 6,5 4,5 0,4 2,B 8,2 -1,6 3,B 5,4 9,1 -1,8 1,1 -1,7 5,B -1,5 9,B 7,2 -1,1 4,C 7,2 5,1 2,3 2,C 5,4 7,0 6,8 1,B 5,4 0,3 -1,0 8,9 0,B 9,3 9,B 8,B 0,C 4,3 -1,7 9,0 4,5 9,2 2,2 2,3 6,C 1,6 1,0 6,0 -1,8 7,B 8,B 1,0 -1,4 9,B 9,5 6,4 1,B 2,9 2,1 -1,4 -1,5 -1,5 4,8 -1,6 9,7 3,5 1,5 6,8 6,3 -1,6 9,C 5,2 8,C 2,0 6,B -1,6 7,9 -1,4 8,7 -1,5 -1,7 5,7 -1,5 3,6 1,B 5,8 4,4 0,C -1,9 6,5 4,0 6,2 1,1 9,C 2,4 8,5 3,0 1,6 -1,5 -1,6 4,1 6,B 4,6 -1,8 4,7 0,B 4,9 1,8 7,1 -1,7 6,8 6,C 8,5 7,0 1,6 5,5 9,0 0,5 1,6 3,5 3,3 2,0 4,9 -1,1 0,2 3,3 0,C 3,1 9,B 9,4 2,6 -1,3 3,6 2,6 -1,9 0,1 9,1 7,6 0,1 -1,3 8,1 2,5 8,5 7,4 2,1 1,9 3,7 1,7 3,C 8,C 3,7 6,6 9,3 1,3 5,8 6,0 1,1 5,8 5,8 1,7 6,1 -1,1 5,7 9,0 6,4 8,0 -1,2 4,B -1,2 1,7 6,9 -1,8 8,C 2,5 2,1 8,4 2,C 4,8 1,9 0,7 6,8 4,9 8,9 -1,8 8,7 1,6 -1,4 5,9 9,7 5,6 0,B 3,C 8,6 5,6 7,1 4,8 -1,1 -1,1 1,5 2,6 9,8 -1,7 1,B 4,B 5,B 0,C 5,B 7,1 8,B 9,7 7,8 2,3 -1,4 9,B 0,B 6,5 -1,0 5,6 -1,1 3,4 9,1 -1,6 9,1 4,C 0,B 7,8 0,5 7,B 6,B 3,4 0,C -1,8 4,8 3,8 0,5 3,6 9,B 4,7 -1,4 1,7 7,5 -1,6 3,8 4,3 -1,0 4,7 8,C 0,1 -1,0 -1,9 3,5 6,1 2,0 0,9 3,3 6,3 9,6 3,7 2,C 6,C -1,5 2,3 1,1 6,B 5,5 8,0 6,4 3,7 7,9 8,9 5,2 2,4 4,6 3,7 -1,2 1,9 6,C 5,6 4,3 9,7 0,B 6,9 6,0 9,0 4,1 -1,8 -1,4 -1,1 4,2 1,0 -1,6 5,0 5,5 6,4 7,0 5,B 3,5 -1,0 -1,7 0,2 1,B -1,4 7,7 8,C 3,5 2,2 -1,2 -1,0 9,C 4,3 6,B 0,B 8,C 3,1 -1,9 9,B 9,2 7,9 3,C 8,9 3,0 -1,5 6,0 3,6 1,8 2,B -1,9 9,9 -1,8 8,C 8,C -1,7 -1,6 8,C 0,3 9,C 1,2 8,5 -1,0 -1,3 8,3 6,8 0,9 0,8 2,5 7,0 6,1 0,3 9,4 7,C 2,6 9,8 1,8 2,B 2,C 2,B 1,5 4,9 4,B -1,6 5,1 6,B -1,5 -1,6 -1,8 6,6 -1,1 -1,1 7,5 -1,1 7,1 -1,5 6,9 0,5 6,0 -1,3 8,7 7,B 7,3 2,4 -1,0 6,4 0,6 1,4 2,3 4,4 5,0 3,6 6,4 3,9 3,9 8,B 5,9 2,1 3,0 6,C 7,3 0,6 1,5 4,B -1,1 4,B 7,1 -1,7 5,1 6,C 2,3 7,4 -1,4 6,4 3,6 2,5 8,0 -1,4 5,9 5,6 5,5 0,C 9,2 7,4 2,3 7,C 2,5 7,5 2,4 0,1 2,4 2,5 9,1 -1,4 -1,8 6,6 5,7 -1,3 6,3 0,7 -1,2 3,4 6,2 6,1 2,3 -1,4 1,9 0,C 3,B 8,3 -1,6 0,2 6,7 -1,1 7,B 5,C 9,6 6,2 9,7 7,8 9,4 -1,4 9,C 9,0 0,C 2,B 1,6 0,5 1,5 6,9 -1,5 5,B 5,1 0,C 8,8 9,4 9,0 1,4 4,2 5,0 8,C -1,4 7,2 3,2 2,6 7,9 5,7 7,5 6,B 2,4 -1,4 2,8 -1,3 -1,7 8,3 -1,6 0,2 -1,9 5,5 4,9 2,9 1,B 4,3 5,6 9,8 3,4 3,9 4,3 3,7 0,2 3,6 6,C 0,9 7,4 3,3 3,9 1,B 5,9 3,4 -1,0 5,C 9,8 9,C 2,5 1,B 8,1 1,4 1,3 9,3 -1,7 -1,0 6,8 0,0 2,9 9,6 -1,2 4,5 5,B 3,B 2,8 1,5 0,4 0,6 9,1 6,6 0,B 5,3 1,3 4,B 3,4 -1,1 3,6 8,1 2,8 2,C 4,5 3,6 7,6 8,7 8,4 6,1 5,B 5,1 -1,4 1,8 2,9 -1,1 -1,0 4,2 3,7 -1,6 8,1 8,0 3,9 4,C 1,B 8,6 2,8 -1,6 8,2 0,6 -1,4 6,1 7,8 1,7 4,0 -1,0 5,9 3,8 2,B 6,8 -1,1 3,4 7,C 5,1 6,C 6,6 5,C 2,0 7,5 7,C 5,9 6,9 0,5 8,6 4,1 0,4 0,8 -1,7 5,C 0,3 4,7 -1,7 1,3 9,B 5,7 3,B 5,B 1,3 5,2 3,2 -1,0 7,1 7,B 1,4 -1,9 8,7 5,4 7,2 1,0 7,C 9,4 6,6 7,C 7,2 9,B 6,B 7,9 8,8 -1,8 -1,7 2,0 2,2 1,4 -1,6 4,0 6,2 1,C 2,6 3,8 -1,7 2,7 6,4 -1,5 -1,7 -1,4 2,2 1,C 0,1 5,7 5,5 7,5 3,0 6,4 -1,1 3,8 0,9 6,7 -1,7 4,9 5,B 2,7 1,5 7,0 7,3 8,3 -1,6 3,B 1,8 8,0 9,4 -1,9 9,B 4,B 0,5 3,5 8,6 1,0 5,4 1,B 0,5 5,5 1,1 2,C 8,C -1,1 6,6 9,B 4,C 6,B 4,C 8,C 3,8 7,4 2,5 4,3 6,C 8,C 4,C 7,3 4,1 5,5 -1,3 -1,8 2,B 6,5 9,9 3,7 7,7 4,1 9,C 7,5 -1,6 9,6 1,0 5,8 -1,5 7,2 8,1 1,B 9,6 1,4 6,1 6,6 9,1 -1,4 -1,2 1,6 8,3 -1,0 -1,7 8,9 1,0 3,4 -1,1 7,3 4,B 8,C 6,7 4,3 -1,2 -1,4 0,8 8,2 0,2 6,1 1,3 9,4 -1,9 6,1 7,4 9,C 0,9 -1,3 2,8 5,5 2,1 6,B 6,9 9,9 4,0 -1,0 4,3 3,3 6,8 0,5 -1,6 9,C 0,0 -1,6 7,B 7,6 7,7 -1,4 6,C 2,7 9,7 -1,0 2,7 6,0 4,C 2,0 0,3 3,0 0,B 7,3 2,7 4,C -1,7 8,6 2,7 2,0 -1,3 3,5 1,C 6,C 6,B -1,3 2,2 -1,0 8,C 4,7 5,B -1,9 7,0 -1,8 8,2 4,6 2,0 8,5 1,3 9,C 7,4 2,C -1,7 4,8 5,2 -1,0 -1,8 -1,8 5,4 5,7 1,4 -1,8 4,B 0,C 3,0 5,8 -1,1 -1,7 8,6 2,2 4,2 5,6 5,8 9,9 1,3 7,5 1,5 4,6 0,B 7,5 1,4 8,C 2,2 4,C 1,2 -1,8 8,0 -1,8 -1,6 -1,4 9,C 8,9 8,C -1,6 2,6 -1,6 9,C 1,B 5,8 3,6 5,B 8,6 5,3 1,5 -1,5 3,3 6,B 3,B 3,C 7,8 8,9 -1,1 6,B -1,7 -1,8 3,2 5,2 8,9 9,8 6,6 3,B -1,1 3,0 6,5 -1,9 7,8 5,7 1,C 4,5 2,3 -1,4 5,5 6,8 8,1 9,0 9,0 -1,0 -1,4 -1,1 9,2 8,7 -1,6 8,4 3,7 7,9 3,6 9,B -1,4 7,8 1,4 1,9 8,C 2,6 9,8 4,5 7,6 -1,6 3,5 3,B 4,7 3,C 4,8 -1,6 4,0 8,0 -1,1 5,7 0,C 1,4 0,8 -1,7 -1,5 2,B 9,B 4,4 6,6 -1,9 -1,8 8,6 3,B 6,B -1,9 -1,0 2,B 7,5 4,5 -1,0 4,9 -1,0 1,3 3,3 8,C 7,1 7,6 -1,6 -1,9 7,0 0,5 4,B 5,9 0,9 3,B -1,5 5,5 -1,8 9,6 2,B 5,C 7,5 9,2 9,1 0,9 7,1 -1,0 5,5 9,6 1,B 7,B -1,8 5,2 8,2 2,9 2,9 4,2 8,0 3,B 3,2 3,3 8,B 0,9 4,7 3,7 1,5 6,9 -1,5 1,9 0,9 0,C -1,3 -1,5 8,0 6,9 4,B 9,B 0,8 7,B -1,9 6,8 0,C 6,C 2,3 -1,3 -1,8 -1,1 8,8 7,8 -1,0 8,2 5,9 8,4 3,B 4,C 7,3 7,9 9,C 4,C -1,0 9,7 4,7 7,C 0,B 7,0 8,1 4,C 2,1 7,8 7,6 6,B 5,6 2,C 5,C 7,1 -1,3 -1,7 4,8 1,4 0,B -1,7 4,2 -1,4 5,B 1,3 4,7 -1,2 6,B 7,6 1,9 -1,5 5,1 4,0 7,5 -1,3 4,4 9,5 5,B 2,4 0,7 1,6 -1,8 7,C 7,6 7,1 0,2 6,C 7,8 9,2 8,0 7,5 2,B 9,0 -1,3 6,1 4,6 -1,6 -1,7 1,1 -1,0 -1,8 5,6 5,C 2,6 0,6 6,0 1,6 -1,4 2,6 9,2 2,2 6,9 4,2 5,5 6,4 1,3 7,B 4,B 7,5 4,4 -1,7 1,3 3,8 7,C 6,6 3,9 9,C 8,3 1,0 7,B 1,8 2,4 9,C 1,0 6,4 8,7 9,B 0,6 1,7 -1,9 5,0 4,6 -1,2 -1,4 9,7 7,C -1,5 0,8 6,B -1,0 6,0 6,6 2,1 4,B 6,4 6,7 0,8 -1,0 2,3 6,3 4,B 3,6 4,2 2,B 4,B 4,5 1,9 5,B 5,B 5,7 5,1 3,8 7,C 1,B -1,6 3,6 5,8 -1,5 0,B 8,2 -1,1 7,9 -1,9 -1,5 -1,0 2,4 -1,9 -1,6 2,0 -1,2 5,9 9,0 -1,2 2,9 9,C 5,6 0,9 -1,4 1,B 4,9 4,7 8,5 0,4 3,2 -1,3 5,3 -1,8 3,3 1,B -1,1 7,C 0,6 1,B 6,7 7,5 6,4 5,0 8,B 4,C 3,8 4,C 6,8 -1,9 2,1 -1,7 4,9 -1,9 5,4 5,9 8,7 5,C 4,B 4,B -1,5 2,9 4,B 4,7 1,8 2,1 1,2 8,5 0,1 6,0 6,6 -1,9 1,B -1,9 5,5 4,9 7,5 3,7 0,4 9,7 0,8 7,B 8,9 8,C 5,B 5,3 5,2 -1,9 4,7 0,5 9,C 0,2 2,6 2,5 9,7 6,3 1,1 1,7 2,0 -1,2 6,8 -1,0 1,C -1,9 2,8 0,6 3,8 3,0 3,9 7,6 2,C -1,1 6,8 -1,9 -1,6 1,6 9,7 0,8 4,2 9,0 9,6 -1,0 7,C 0,4 4,C 6,3 0,5 8,4 1,7 0,C 8,9 -1,7 -1,9 -1,5 6,0 5,2 7,3 7,C 7,B -1,6 4,B 3,8 -1,2 2,0 3,1 7,2 6,7 -1,0 8,C 5,C 6,C 9,4 6,9 -1,5 -1,9 0,B 9,0 -1,8 6,8 1,C -1,4 0,C 8,5 3,9 0,1 9,4 9,B 6,0 -1,6 6,8 0,5 4,4 7,9 6,9 7,9 7,0 -1,6 -1,4 7,C 4,0 0,B -1,8 5,8 2,B -1,7 -1,0 8,6 1,6 4,0 6,4 5,2 5,2 6,6 0,4 -1,0 -1,7 5,4 3,8 6,0 7,1 6,9 1,1 -1,3 3,3 8,6 1,C 6,8 3,6 3,B 4,5 3,4 -1,9 0,0 -1,3 5,1 5,2 -1,9 -1,4 2,5 7,5 5,4 4,2 1,2 -1,6 3,4 3,B -1,2 9,5 -1,7 -1,9 4,5 -1,3 0,5 1,5 9,3 6,2 -1,2 8,0 -1,2 2,B 8,6 0,C 7,3 8,3 -1,9 9,1 5,5 7,6 -1,5 0,0 4,8 -1,8 -1,5 -1,6 5,B 8,4 1,3 6,B 0,B 0,7 0,9 1,B 0,8 1,3 0,C -1,4 7,C 8,6 7,4 4,6 1,9 2,B 6,6 -1,8 7,C -1,9 0,3 7,B 5,2 7,9 5,4 9,5 9,9 1,B 3,5 -1,2 4,C 9,1 8,0 4,2 3,0 5,0 9,B -1,8 2,9 2,C 2,6 -1,0 7,7 3,8 9,9 6,C -1,2 4,5 9,9 5,3 7,B 4,4 3,5 8,3 -1,5 4,3 4,3 -1,6 -1,5 -1,9 2,C -1,1 0,6 7,B 2,2 -1,3 4,6 -1,1 1,6 8,C 4,B 3,1 8,3 6,0 9,1 9,4 2,B 0,2 1,5 1,5 3,C 0,B 4,5 3,1 3,5 0,6 7,1 2,9 3,4 8,7 2,8 8,C -1,1 -1,3 -1,4 4,3 9,8 8,1 6,6 5,C 7,3 7,C 5,B 8,B 0,4 5,9 2,8 4,9 1,3 9,4 5,4 7,0 1,0 6,4 8,8 -1,1 3,1 -1,1 4,B 1,C 4,0 1,2 1,1 3,7 5,5 -1,3 5,9 1,6 6,5 -1,7 6,B 1,5 1,1 3,B 7,2 7,7 -1,3 3,5 4,8 3,C 2,2 6,9 8,C 5,B 6,6 4,5 6,1 9,2 7,0 2,1 1,2 3,1 -1,5 9,B 7,C -1,5 5,0 7,8 9,4 8,3 1,1 0,B 8,C 6,8 5,B 1,C 7,B 5,C 7,B 2,C -1,2 8,B 3,2 9,9 4,B 6,7 6,5 1,2 3,B -1,9 -1,3 1,6 8,B 4,B 3,B 7,B -1,6 0,C -1,6 7,4 8,8 0,7 4,B 6,2 1,1 2,9 6,B 6,6 3,1 3,2 6,5 7,8 6,6 7,C 0,C 6,B 5,B 0,2 6,0 4,B 7,5 0,8 6,B 5,3 9,B 7,C -1,7 4,0 0,B 1,8 5,4 2,B 6,6 5,1 6,B -1,1 5,5 4,6 -1,5 -1,1 6,B 0,4 -1,6 5,3 -1,4 4,1 1,4 9,C 8,9 -1,5 9,C -1,5 7,1 0,0 6,B 6,7 9,9 6,0 4,B 6,C 9,9 -1,4 6,7 2,4 -1,6 8,4 6,9 8,0 6,C 0,8 7,5 -1,8 3,C 2,9 4,3 6,5 5,8 4,9 -1,2 -1,1 4,5 3,4 5,2 -1,6 9,B 0,8 6,8 3,0 -1,3 0,5 3,4 5,0 -1,4 2,6 6,6 0,2 0,5 -1,0 6,9 1,1 5,6 -1,4 2,7 0,3 5,B 3,1 8,0 5,B -1,6 -1,7 6,2 -1,6 1,0 4,B -1,8 7,4 6,5 7,4 -1,8 3,B 8,6 0,2 3,0 -1,1 6,C -1,8 3,4 -1,6 8,5 4,5 3,2 0,4 -1,0 1,7 5,6 9,2 2,5 8,C 2,4 6,9 -1,4 4,9 6,6 -1,0 3,6 8,7 3,0 7,7 5,C 1,8 5,5 4,B 1,9 8,2 0,6 -1,7 -1,5 -1,6 4,6 -1,9 -1,2 4,3 -1,2 8,5 -1,5 8,B 9,3 5,7 3,7 0,5 7,B 4,7 1,B -1,9 5,3 -1,2 6,2 2,3 1,C 9,0 -1,3 -1,5 4,3 5,6 3,9 1,3 -1,5 -1,1 -1,5 8,8 8,6 -1,6 -1,4 9,3 5,4 3,2 5,7 5,6 2,B -1,0 1,C 2,2 1,C -1,3 6,4 5,3 9,8 1,8 0,4 8,C 3,3 -1,5 -1,0 5,5 6,2 3,1 8,7 1,C 9,4 9,8 1,C 6,B 0,5 3,C 4,B 3,9 7,C 8,C 2,0 1,B 4,6 3,1 4,6 0,C 9,C -1,1 9,B 0,C 3,8 3,3 6,7 6,0 9,3 3,1 4,9 -1,6 7,C 8,3 0,C 5,4 6,B 2,3 -1,8 6,8 1,5 0,8 7,B 1,4 4,C 7,5 4,7 -1,0 5,B -1,8 8,9 9,5 3,C 2,3 8,5 4,2 2,B -1,1 1,7 8,1 4,0 -1,2 0,B 4,B -1,6 6,C 2,C 8,0 9,C 4,7 0,6 5,B 4,B -1,3 2,C 2,3 7,5 -1,8 2,C 4,C -1,7 5,7 -1,9 7,8 2,8 -1,0 -1,5 7,2 5,C 9,3 0,0 5,8 8,C 9,2 4,5 9,C 5,8 -1,9 6,B -1,0 -1,1 8,B 0,0 9,4 -1,9 5,7 0,6 1,0 2,3 -1,0 0,B 6,9 4,9 5,4 5,7 9,0 7,6 2,6 4,0 7,0 7,B 9,4 8,4 7,2 1,4 1,8 -1,7 2,6 -1,0 4,7 4,5 2,C 0,5 -1,8 2,7 -1,2 0,9 9,6 -1,6 7,6 6,C -1,4 0,7 9,8 -1,3 7,B 3,7 6,1 0,B 3,4 9,9 6,0 8,5 3,8 9,1 1,1 6,7 8,8 4,2 5,2 8,1 2,9 5,0 -1,8 4,4 -1,7 1,C 6,9 9,7 1,9 7,5 4,1 -1,8 0,4 6,8 8,B 3,C 3,4 2,C 7,C -1,8 8,2 9,9 -1,0 -1,8 -1,9 -1,0 0,C 0,C 2,4 -1,5 0,B -1,4 7,1 1,B 7,4 8,C -1,1 2,2 4,8 5,2 9,0 -1,3 1,6 7,6 2,4 6,6 2,B -1,8 9,1 -1,3 5,0 0,4 6,1 7,1 9,2 5,5 5,7 6,7 2,B 3,4 8,8 3,B 7,B -1,5 8,7 -1,4 7,9 0,C 0,C -1,0 -1,7 5,1 5,6 6,B -1,9 -1,2 3,9 -1,2 4,4 -1,1 1,8 5,7 7,7 0,9 1,0 5,C 2,8 -1,0 7,1 3,3 6,B 3,1 -1,9 -1,6 -1,7 5,1 8,8 1,4 4,4 6,7 5,3 0,B 3,6 1,0 4,3 9,0 9,5 6,4 -1,0 9,3 6,4 7,4 3,2 -1,2 2,C 4,6 2,C 3,8 4,0 9,6 2,0 9,4 9,9 8,B -1,1 7,2 2,3 4,7 -1,5 0,2 8,5 7,7 0,B 9,4 2,4 3,8 0,1 3,B 8,3 9,C 0,B 6,C 6,B 6,C 5,7 3,8 -1,5 4,5 5,C 7,0 -1,9 0,1 8,6 -1,4 4,6 3,C 0,7 6,B 5,8 0,3 6,8 4,C -1,4 9,7 -1,9 -1,1 1,2 4,1 1,3 5,C 1,0 -1,2 5,B 6,6 7,B 8,7 6,3 6,1 -1,6 9,1 1,2 4,4 -1,3 -1,2 -1,4 9,9 -1,9 2,3 -1,0 0,7 0,B 6,1 1,3 6,8 1,C 5,2 4,2 0,4 7,5 9,9 1,5 7,5 3,3 2,7 5,1 0,6 5,C 9,1 5,8 7,8 3,C 7,B -1,2 0,4 8,5 1,8 6,C 3,4 -1,4 6,4 -1,5 7,1 4,5 6,0 0,7 2,1 0,9 0,C 9,4 8,B 1,6 3,3 8,3 -1,9 9,0 8,0 9,6 3,4 6,1 6,9 -1,2 -1,3 6,6 -1,8 7,5 7,C -1,7 8,C 8,B -1,1 6,B -1,7 8,1 1,C 4,9 -1,5 2,6 -1,0 3,C 2,0 6,1 9,0 9,8 5,7 7,B 5,8 4,8 6,C 1,7 0,5 6,8 1,C 3,8 -1,8 6,6 4,3 -1,4 3,4 1,5 6,9 9,1 3,4 6,5 -1,2 9,8 7,8 8,3 -1,5 4,2 1,9 1,1 5,6 6,1 9,3 -1,1 -1,9 5,B 2,B 6,8 -1,4 4,C -1,7 9,3 9,B 3,3 -1,4 7,B 7,4 -1,1 9,1 -1,8 5,1 8,1 8,8 8,C 2,8 1,6 6,2 2,0 -1,2 -1,8 5,4 4,9 -1,0 9,3 0,2 4,9 -1,5 2,6 8,9 5,3 -1,7 4,1 -1,8 0,C 0,4 4,B 3,B 9,1 6,6 0,3 3,0 -1,1 -1,9 8,8 -1,5 -1,0 -1,0 9,3 1,5 4,5 6,2 6,2 3,4 6,9 4,0 -1,4 2,8 2,6 0,4 -1,1 5,B -1,5 8,2 -1,7 4,3 7,2 4,B -1,3 4,4 7,2 1,2 7,4 5,1 7,0 5,9 -1,1 4,B -1,1 3,5 4,8 2,0 2,B 2,2 4,4 4,B 5,C 4,8 1,B 5,C 5,C 0,4 1,B 0,5 7,9 2,6 8,4 0,C 3,1 -1,3 -1,9 8,9 6,2 4,8 3,9 2,B 8,0 3,C 1,5 0,1 2,5 -1,1 2,1 1,3 0,8 4,7 2,C 9,B -1,8 -1,8 0,9 -1,4 4,5 3,6 -1,6 -1,4 4,6 2,C 2,8 8,8 4,1 0,8 1,B -1,5 1,1 0,8 9,5 2,0 2,2 -1,3 0,2 3,6 1,B 2,0 6,4 2,2 -1,7 9,3 8,6 3,3 6,1 9,B 3,7 8,8 1,1 -1,4 8,C -1,1 -1,0 9,B 4,8 -1,4 3,6 0,2 5,5 4,B -1,2 7,B 4,9 3,B 8,C 0,B 2,6 0,7 8,0 6,7 -1,3 7,5 2,9 1,9 5,B -1,6 1,0 3,4 2,5 8,B 1,3 7,4 1,C 5,0 5,3 0,4 2,7 8,2 -1,3 9,B 8,B -1,4 3,5 5,6 -1,6 0,7 4,C 0,B 2,C 5,3 0,7 7,3 5,7 5,4 4,9 2,7 6,4 9,4 4,5 -1,7 4,0 0,C 1,6 5,B 2,7 1,7 9,0 9,1 0,B 6,1 1,7 -1,4 3,5 -1,2 -1,5 9,3 3,0 6,6 1,9 0,7 7,6 5,8 7,9 1,6 4,0 0,C 6,8 2,9 1,B 7,4 1,8 4,5 4,8 5,7 3,C -1,2 1,7 6,C 9,8 4,8 2,2 3,1 5,B 7,4 0,1 3,7 2,9 2,C 1,3 3,C -1,8 2,8 6,B -1,3 9,0 7,2 4,5 9,8 6,7 9,0 -1,2 5,4 6,9 -1,3 8,6 0,B 3,0 9,C 0,0 9,6 9,2 6,1 7,8 -1,8 2,8 5,4 1,C 1,1 8,8 -1,2 5,6 4,6 5,9 -1,4 6,6 3,4 3,5 -1,6 0,2 8,5 5,9 3,2 4,C 9,7 8,8 6,6 1,3 7,2 -1,8 -1,2 6,6 1,B 4,B -1,4 7,7 4,7 -1,1 2,4 -1,8 9,7 1,6 8,C 1,6 -1,5 0,C 1,B 9,B 9,C 7,8 0,B 4,1 8,5 -1,8 -1,0 0,2 4,B 7,B 5,2 5,1 6,5 8,0 1,9 6,2 4,2 9,5 1,8 7,2 1,3 1,0 -1,4 -1,2 3,7 8,8 4,9 7,7 -1,6 2,4 1,C 5,B 4,C 9,6 5,C 9,3 6,7 1,C -1,9 7,B -1,7 9,5 6,3 -1,2 5,B 5,5 3,6 9,C 7,9 8,C 9,3 9,2 9,C -1,6 -1,6 5,4 5,C -1,7 7,9 -1,9 -1,2 3,7 9,1 -1,5 2,4 5,4 6,B 1,1 0,9 5,8 4,4 7,C 6,3 -1,0 6,B 7,B 4,3 2,0 8,5 7,4 0,B -1,4 7,4 6,8 3,6 -1,6 -1,6 9,5 2,2 -1,4 1,5 8,4 2,1 -1,8 7,9 5,B -1,3 8,B 8,C 1,C 3,5 4,4 2,0 2,2 7,9 4,3 -1,8 8,B -1,1 -1,8 0,C 8,B 4,5 0,C 0,9 -1,2 -1,7 6,9 -1,7 9,3 -1,2 3,C -1,8 -1,9 -1,3 0,3 0,7 -1,4 7,C 8,B -1,6 1,8 9,5 0,5 -1,1 7,1 5,9 1,6 6,5 -1,2 2,4 3,1 5,3 1,C 3,8 7,6 9,C -1,6 2,0 2,6 7,3 -1,2 4,C 5,9 6,7 3,9 3,7 6,C 5,3 -1,2 3,6 4,2 -1,0 9,B 1,4 -1,0 0,4 6,0 9,4 -1,3 2,1 -1,0 3,1 3,8 4,B 4,6 -1,9 6,6 7,4 -1,7 5,9 -1,2 0,C 1,0 2,8 8,C 9,4 0,6 7,2 -1,7 1,5 0,9 -1,5 -1,3 5,6 2,B 5,6 -1,7 -1,7 3,B 7,3 4,8 8,0 4,C 5,4 1,5 3,3 6,C 8,4 -1,9 3,0 6,6 -1,4 8,0 -1,2 7,3 4,B 7,4 4,8 5,5 1,6 1,0 6,7 1,B 8,5 9,B 3,C 1,9 -1,9 -1,4 -1,2 9,5 3,3 -1,0 1,B 8,4 1,C -1,6 7,4 -1,3 5,2 5,9 7,9 9,B 2,3 4,C 9,9 2,1 7,9 8,B -1,6 3,0 3,9 2,7 4,9 9,5 2,8 2,0 -1,8 -1,0 8,6 4,0 7,B 8,2 2,B 1,0 0,8 2,1 2,8 -1,3 4,5 5,1 8,2 -1,4 7,5 7,4 3,4 1,3 5,4 7,B 2,3 -1,6 2,2 7,B -1,9 -1,5 3,5 4,7 4,2 7,9 7,7 -1,7 0,4 4,B 5,2 3,3 8,3 -1,5 8,1 1,6 -1,8 7,9 8,0 -1,9 6,C -1,4 1,8 1,3 9,6 6,3 -1,2 9,3 0,9 9,8 -1,7 3,3 -1,2 7,0 3,C -1,4 4,5 1,B 5,6 6,0 9,6 3,4 0,C -1,6 5,5 1,0 8,1 8,6 5,2 7,B 7,7 8,B 2,1 1,B 7,C 7,6 4,9 9,8 3,8 4,7 -1,3 3,4 7,9 -1,3 5,0 7,3 -1,6 -1,5 6,C -1,9 2,6 4,C 8,5 -1,0 9,1 7,8 7,9 1,2 -1,3 5,6 -1,0 2,6 5,2 8,7 2,2 6,7 7,4 -1,1 0,7 7,8 0,8 6,0 6,C -1,1 9,6 2,0 6,8 4,7 -1,4 7,4 0,8 2,C 3,6 1,1 -1,2 5,4 2,5 4,7 -1,5 -1,3 -1,0 5,2 9,6 6,5 3,9 5,8 5,3 4,4 3,5 0,1 3,5 7,4 4,3 4,B 4,B 5,6 9,8 -1,1 -1,0 0,7 -1,4 -1,5 9,B 4,C 0,C 5,9 8,B -1,6 3,B 3,B 0,9 8,5 3,4 0,9 2,0 4,8 9,3 -1,1 -1,2 0,2 4,1 5,5 6,9 8,C -1,9 1,4 0,2 9,5 -1,4 6,8 7,B 3,4 4,6 9,5 1,6 1,7 2,B 2,C 8,1 7,6 -1,1 6,4 9,B -1,4 1,6 2,9 1,6 5,C 5,C 5,C 7,B 5,2 9,7 -1,7 -1,4 1,1 1,0 0,1 1,2 7,7 3,2 5,B 1,7 5,6 1,0 2,8 6,4 8,6 7,8 7,9 -1,2 -1,4 -1,6 3,6 9,B 3,0 6,4 -1,6 5,1 1,8 -1,4 -1,5 6,9 4,8 0,C -1,1 -1,8 6,0 -1,4 0,3 -1,6 4,B 4,1 -1,5 9,7 6,1 4,7 5,0 -1,5 0,C 8,1 2,2 0,5 2,2 2,4 0,3 6,B -1,2 8,6 2,4 7,1 -1,4 1,6 -1,1 1,5 6,6 0,1 9,6 4,5 4,B 2,7 5,1 4,6 8,0 9,9 6,4 6,5 7,9 0,8 -1,7 2,8 -1,1 8,7 4,7 2,B 4,4 4,C 7,8 9,8 4,C 7,0 -1,3 2,1 -1,3 8,4 4,2 7,1 8,3 -1,5 4,1 -1,6 7,B -1,4 -1,9 5,8 1,0 6,2 8,1 4,1 5,2 -1,0 -1,3 -1,2 8,3 8,C 6,5 -1,0 7,5 -1,0 5,4 1,2 3,2 7,7 4,0 9,1 5,4 -1,0 5,1 5,9 1,8 -1,7 -1,3 3,8 8,8 -1,5 -1,9 4,3 2,4 1,6 8,9 -1,1 6,6 4,7 3,2 -1,5 6,B 2,6 4,1 5,7 1,B 1,B 8,2 8,1 9,8 1,C 6,B -1,6 6,8 7,1 7,8 6,6 3,C 0,5 6,B 5,0 2,5 0,7 5,7 -1,5 8,2 2,3 2,C -1,0 8,9 2,5 8,9 1,B -1,8 9,3 5,7 7,0 3,C 1,3 4,8 5,5 4,C 1,C 5,B -1,0 0,5 5,7 -1,5 -1,2 2,0 5,3 2,B 6,6 8,3 7,5 -1,7 7,0 0,4 9,3 5,5 -1,6 7,0 7,2 3,6 6,7 -1,4 8,B 4,C -1,5 5,3 1,8 0,7 4,8 9,7 6,C 2,C 1,B 9,3 8,4 -1,0 3,1 5,B 3,0 5,0 5,5 -1,0 -1,2 3,C -1,9 -1,6 0,B 9,0 4,2 8,C 1,6 -1,4 8,8 9,B 6,1 4,9 8,B 4,1 2,5 -1,5 7,C -1,9 8,4 3,8 4,6 3,C 6,B 3,3 3,8 9,C 4,2 8,3 -1,1 0,3 -1,1 3,C 5,B 5,8 0,C 7,2 -1,5 3,4 1,0 3,2 9,1 3,5 9,8 -1,9 7,C 8,3 2,3 4,C -1,4 4,4 1,1 -1,4 -1,1 2,4 0,8 -1,0 1,5 5,6 3,7 9,7 1,2 1,C -1,6 2,3 9,0 5,B 5,7 -1,3 6,6 0,8 5,9 7,8 -1,4 5,C 6,B 7,B 8,3 3,0 9,1 9,C 7,3 8,7 8,0 2,C 2,4 1,C 6,2 7,8 3,C 1,5 5,2 -1,2 8,B 9,3 -1,4 0,2 7,2 6,7 -1,6 -1,6 4,7 0,4 5,6 -1,5 6,6 -1,2 -1,3 3,C -1,7 3,5 1,5 5,3 7,8 5,B 2,3 -1,3 3,3 4,4 0,C 6,8 2,8 1,0 9,4 5,3 7,1 9,4 1,4 2,5 4,0 -1,3 7,2 8,3 8,4 -1,6 6,2 7,6 7,7 -1,7 0,4 3,4 -1,0 8,2 2,0 8,B 4,5 7,3 2,0 -1,7 5,B 4,B 6,C 1,9 3,8 9,1 5,B 4,C 3,2 1,2 -1,5 9,C 5,9 6,3 -1,9 6,4 -1,3 8,2 3,B 5,C 2,3 5,8 7,8 3,6 9,7 6,1 3,B 6,1 -1,4 9,5 -1,3 7,7 4,1 7,5 8,4 7,8 5,3 6,0 -1,5 -1,0 4,1 6,B 1,9 -1,7 8,9 -1,1 0,4 9,5 2,9 9,3 3,2 4,8 -1,0 0,7 5,B 1,8 9,4 4,5 3,8 2,9 4,B 7,B 7,9 -1,9 8,C 5,8 -1,4 7,3 6,B 8,C -1,5 2,6 5,C 2,3 -1,9 0,6 8,C 5,B 3,0 -1,6 2,4 3,2 8,B -1,9 -1,6 -1,3 2,4 3,4 7,1 3,6 7,C -1,9 -1,0 9,5 8,C 2,6 0,4 2,8 -1,5 8,C 3,7 2,1 8,B -1,4 3,8 6,B 7,0 8,8 6,1 9,B 4,C 5,C 2,1 6,8 2,9 2,B 0,8 8,0 6,2 4,C 1,C 7,5 2,8 2,4 7,B -1,4 8,B 4,5 3,B 3,6 5,1 -1,4 3,2 9,6 7,3 0,1 7,C 8,4 -1,2 1,2 5,1 2,3 -1,2 -1,2 -1,6 9,1 2,4 7,7 7,9 -1,8 3,0 -1,9 4,4 6,7 1,5 4,B -1,0 5,5 4,B 9,4 4,6 9,3 8,5 -1,6 8,C 8,4 -1,3 5,C 9,2 3,9 9,8 -1,1 5,5 -1,6 -1,1 7,1 3,9 4,4 4,1 -1,7 4,5 2,3 4,C 7,5 4,5 9,C 3,5 5,8 5,1 -1,3 4,5 -1,1 7,B 1,9 -1,3 5,1 8,1 1,9 5,3 4,C 4,C 2,0 3,8 9,2 0,5 -1,3 1,2 9,9 3,8 8,4 3,B -1,7 4,7 2,B 5,4 -1,0 5,4 6,C -1,0 5,0 2,4 -1,0 2,C 8,B 4,7 -1,8 4,B 5,B 4,8 1,4 -1,4 9,B 1,1 -1,2 7,1 -1,4 -1,8 0,B 0,7 7,B -1,3 8,3 9,8 2,B 7,5 8,3 1,6 -1,2 -1,4 5,3 7,7 9,6 -1,7 7,B 9,C 0,8 3,4 -1,8 9,8 8,B -1,9 -1,4 0,9 4,4 9,C 3,8 5,7 9,0 0,8 3,1 -1,8 6,9 0,8 1,B 4,2 -1,0 3,9 4,6 0,5 3,4 2,3 -1,3 0,B -1,5 0,0 5,7 -1,0 1,8 8,6 -1,0 9,7 1,4 2,6 0,1 2,5 3,5 1,7 -1,7 -1,8 4,8 2,C -1,3 2,6 9,1 2,C 1,0 0,C 3,3 3,7 6,C -1,4 -1,4 4,5 1,1 2,8 1,9 0,B 4,C 4,8 9,2 7,6 8,1 -1,2 2,3 5,5 7,4 5,2 5,C 9,4 -1,6 0,3 7,B 6,B 7,9 -1,4 -1,4 3,5 2,1 5,9 3,5 0,3 8,C 1,B 8,0 3,3 2,0 7,3 0,6 -1,9 1,7 -1,5 -1,2 1,3 6,5 0,0 -1,8 3,C 6,1 -1,1 1,C -1,5 4,2 7,3 8,B 7,0 -1,5 0,7 7,0 7,8 7,2 -1,9 9,B -1,8 -1,2 8,C 1,5 3,2 4,5 2,5 -1,4 4,B 3,6 7,2 4,8 4,7 1,C 6,3 7,B 2,0 -1,8 7,5 4,9 2,C 1,B 1,9 6,7 4,2 -1,2 1,7 8,C 4,2 9,B 7,6 4,7 5,7 2,0 -1,6 3,3 6,B 8,B -1,0 3,6 7,9 5,6 7,9 8,2 -1,6 -1,4 3,B 0,3 5,4 4,8 5,6 1,8 3,2 5,4 5,1 7,8 2,3 7,1 2,C -1,4 3,6 -1,0 1,5 6,C -1,2 7,C 1,9 -1,8 5,9 8,1 6,4 5,0 3,6 5,B 2,0 -1,5 2,5 7,6 5,6 6,B 8,B 3,C 1,B 1,4 0,1 1,2 -1,2 8,2 8,B 1,5 0,5 1,9 7,5 7,C 1,C -1,5 -1,1 9,0 4,0 6,5 7,9 1,1 5,8 -1,3 5,0 8,0 9,2 -1,4 -1,8 4,9 0,3 -1,1 7,B 1,0 3,2 -1,6 -1,9 0,5 -1,6 1,4 -1,0 5,3 6,8 -1,3 -1,4 2,5 6,4 1,4 -1,4 -1,2 -1,8 -1,3 2,5 -1,1 3,2 1,B 1,8 8,7 6,2 -1,7 -1,6 0,2 4,2 2,C 7,9 -1,6 0,4 3,6 -1,1 0,0 -1,7 3,6 7,8 5,2 -1,7 0,B 1,B -1,5 -1,0 5,7 3,C 2,9 0,4 8,3 9,C 0,B -1,2 4,7 -1,0 -1,0 6,B -1,1 8,4 1,9 -1,6 5,C 8,C -1,5 6,B 8,9 3,3 3,9 4,3 2,B 1,4 4,2 0,7 0,5 3,7 4,0 -1,2 9,3 -1,1 9,1 7,7 7,0 5,1 9,8 4,3 3,C 0,0 0,6 4,7 0,1 3,2 -1,1 8,1 0,2 8,C 0,2 -1,5 4,C -1,2 7,2 -1,2 2,7 4,3 6,1 2,C 7,9 9,9 -1,5 -1,1 8,0 2,0 5,9 -1,7 5,3 -1,0 6,8 -1,2 3,8 -1,4 3,0 -1,1 -1,2 8,0 -1,8 7,4 -1,3 1,0 9,2 4,3 4,4 -1,3 5,4 1,7 1,9 0,3 3,0 1,4 2,0 1,8 4,0 8,B 8,8 8,2 -1,3 6,C 9,7 9,1 7,B 2,C 3,0 9,0 6,6 7,7 9,5 1,0 8,3 8,2 4,7 1,1 2,8 3,5 2,C 4,8 8,1 -1,7 2,0 1,B 8,2 9,2 1,1 8,B 3,B -1,6 5,0 4,3 6,9 0,3 -1,0 -1,8 8,1 1,9 -1,7 5,0 7,4 -1,6 0,B -1,5 1,7 4,6 1,B -1,9 -1,5 -1,7 2,C 3,1 1,2 8,0 1,5 6,0 2,B 7,B 4,B 9,8 3,3 7,C 4,C -1,8 4,7 -1,8 7,6 9,B -1,7 6,1 3,4 9,B 1,3 -1,8 -1,8 1,1 4,B 9,B 7,8 6,0 7,8 2,8 -1,6 0,6 3,B 8,4 5,9 1,B -1,0 3,B 6,5 1,B 0,9 6,9 -1,1 1,3 9,B -1,8 1,4 4,C 7,1 4,7 -1,3 3,6 -1,6 -1,5 -1,4 3,8 8,6 5,7 5,2 4,8 0,8 4,8 -1,1 2,6 1,C 2,C 6,8 -1,7 8,8 3,9 1,B 5,5 -1,3 3,B -1,3 2,8 7,C 0,B 7,1 8,9 1,C 6,6 4,2 9,2 8,8 1,2 -1,9 9,0 1,9 4,C 7,5 4,7 7,3 7,2 6,B -1,9 4,5 1,6 6,8 -1,2 -1,4 1,8 4,9 9,4 4,4 1,7 6,C -1,2 -1,9 -1,6 5,2 1,5 4,C 9,B 1,6 6,5 8,1 8,5 9,9 5,9 3,2 3,C 9,9 1,C 0,B 3,0 3,C -1,6 7,6 3,B 2,C 6,B 5,0 -1,3 7,5 6,C -1,8 1,8 1,9 6,2 1,3 8,2 5,1 4,9 6,B -1,2 4,9 -1,8 8,4 7,C 1,9 0,8 -1,4 4,8 3,C 1,2 5,8 -1,2 0,8 5,9 3,C 0,6 -1,1 5,C 3,7 5,C 8,0 -1,1 4,4 3,8 -1,0 9,5 9,9 -1,8 9,C 0,0 8,B 8,3 -1,5 0,B 4,B 5,9 -1,0 4,B 0,6 5,8 5,C 9,2 1,5 8,B 0,6 5,9 7,8 6,5 -1,4 0,0 1,C 8,6 1,0 5,2 4,9 9,3 3,3 -1,9 1,B -1,4 9,C -1,1 3,7 2,4 7,8 1,6 6,8 4,8 0,1 3,B 6,8 -1,6 6,C 3,1 4,C -1,6 5,6 3,B 0,7 0,C 4,5 9,9 -1,7 4,2 9,8 8,0 1,0 3,B 9,1 8,9 8,6 6,B 9,1 2,C 0,C 6,1 5,6 4,B 1,8 7,B 1,3 6,0 -1,0 4,4 6,7 2,9 1,C 7,3 -1,1 8,3 1,8 5,8 6,B -1,7 9,9 4,C 0,9 -1,6 -1,4 6,5 0,5 2,3 8,6 -1,2 2,1 8,9 7,1 7,5 5,B 1,2 9,9 1,5 2,1 1,7 0,9 3,9 -1,7 7,4 7,3 9,4 0,5 -1,2 3,3 4,C 4,C 6,1 4,3 6,2 3,0 1,8 5,3 2,8 7,1 4,B 6,C 3,B 7,8 2,4 0,4 7,3 5,0 9,4 7,C 6,2 1,0 4,C 1,C 4,8 1,3 0,3 4,C 7,B 9,1 7,3 5,7 9,B 7,6 9,1 0,1 8,9 0,B 9,9 -1,1 1,3 8,C 5,1 9,2 7,0 7,6 2,B 1,6 7,C 0,C 2,1 1,2 0,8 1,2 5,7 4,0 5,C 5,B 5,8 3,3 3,0 8,2 4,9 2,6 7,8 5,5 7,C 3,C -1,3 1,B 4,5 1,0 3,1 -1,4 7,5 -1,1 9,4 3,6 8,4 7,3 7,4 7,C 3,3 7,6 7,7 -1,1 8,8 4,1 -1,7 1,0 4,6 4,6 0,3 -1,8 7,B 9,1 9,6 1,8 6,6 7,7 1,B 4,8 7,6 2,2 4,2 -1,2 8,1 8,0 3,2 3,5 7,9 3,C 6,8 9,C 0,2 7,C 7,B 9,C -1,4 1,2 0,C 0,3 -1,3 0,7 -1,8 6,B 0,3 1,8 9,C -1,7 9,8 8,B 0,5 -1,5 1,C -1,1 1,8 -1,4 5,3 3,4 4,8 9,7 8,2 7,8 2,1 6,6 9,3 -1,0 -1,6 8,B 7,C 4,5 2,B -1,8 3,4 9,1 8,B 7,6 -1,6 5,B 2,8 5,3 0,C 9,4 9,8 0,4 0,C -1,2 2,5 5,B 2,8 3,4 8,B 6,9 3,1 1,8 5,2 2,C -1,0 4,3 0,B 6,4 2,9 4,B 7,5 9,7 2,9 2,7 4,9 4,9 8,0 6,6 5,8 2,7 3,8 3,7 -1,4 4,C 5,2 2,C 8,1 -1,6 -1,6 9,5 5,9 3,0 4,8 -1,7 1,5 5,7 8,4 8,C 5,5 8,C 2,3 1,9 3,7 9,5 3,3 6,0 4,1 6,7 8,7 4,0 2,B 8,3 9,B 8,0 7,3 -1,7 -1,6 9,B 9,5 1,1 3,0 2,1 -1,5 -1,5 5,B 8,6 8,B 0,3 1,1 -1,3 8,4 -1,3 8,8 9,5 -1,2 4,8 3,4 -1,8 1,7 8,B 7,2 5,4 -1,1 5,0 -1,3 5,B 5,5 9,1 8,6 7,5 8,9 5,8 4,B 3,5 8,B 6,0 -1,3 6,3 4,6 7,7 4,6 6,9 8,4 4,8 7,2 -1,0 8,C 3,5 6,2 -1,1 2,2 -1,1 1,C 7,1 8,6 1,9 5,2 9,6 7,1 0,9 -1,8 0,C 6,C 7,9 2,4 0,1 -1,8 0,0 4,4 2,1 -1,3 9,B 1,1 -1,2 5,0 7,7 2,1 -1,4 3,C 0,B 4,8 9,9 3,2 3,B 3,9 0,1 4,0 3,3 9,1 -1,7 2,C -1,4 7,1 7,9 1,C 0,0 6,B -1,4 4,9 0,8 -1,3 4,7 1,7 6,C 2,7 6,2 6,1 6,3 3,7 9,7 -1,1 6,3 0,3 1,1 -1,5 -1,2 3,5 -1,3 2,C 0,4 5,1 1,C 6,5 9,4 3,C 0,8 5,3 5,B 8,5 -1,5 -1,5 8,B 8,7 8,4 9,C 5,5 7,7 -1,4 0,B 0,1 7,C 1,2 -1,6 -1,5 6,1 2,8 1,0 -1,1 6,6 5,8 5,1 1,7 3,4 6,C -1,6 -1,0 3,C 5,8 5,7 3,1 4,6 5,9 3,B 8,6 -1,1 5,B 2,1 5,1 -1,7 9,2 -1,2 -1,7 5,1 4,4 9,6 9,9 2,9 -1,3 -1,5 -1,6 4,7 6,5 -1,8 6,C 1,8 1,0 4,B 4,0 5,9 -1,3 3,5 8,8 4,3 7,7 2,B -1,0 0,8 -1,3 4,8 6,C -1,0 4,C -1,7 1,6 0,6 5,5 2,B 7,B 3,7 0,5 2,3 -1,7 7,C 6,8 4,C -1,0 -1,9 7,4 3,5 6,9 4,4 0,0 1,C 6,3 2,4 5,6 6,B 2,6 9,C -1,5 2,6 4,8 8,5 -1,7 2,1 -1,7 2,0 8,0 -1,0 -1,8 0,6 6,7 3,C 4,5 9,1 1,1 0,5 0,B 6,5 0,3 9,B 9,9 8,4 2,C 1,3 0,3 7,7 6,7 -1,4 5,B 6,C 4,8 0,6 -1,8 0,B 5,1 8,7 -1,5 -1,7 6,2 7,4 1,4 9,2 1,C 4,2 -1,8 4,B 6,6 8,9 0,C -1,3 7,8 -1,4 8,1 -1,5 -1,1 9,3 2,3 3,6 1,7 -1,1 2,B 9,C 8,6 7,5 -1,9 -1,9 -1,9 -1,7 -1,0 5,C -1,1 4,C -1,5 8,6 -1,9 5,5 2,7 -1,1 7,6 -1,7 2,B 1,6 0,8 -1,0 8,1 5,C -1,1 3,3 3,1 6,7 5,8 6,6 5,6 2,8 8,C 8,6 3,6 6,3 6,0 5,C -1,0 -1,3 0,B 3,7 9,7 6,0 8,0 0,C 9,3 8,0 -1,4 2,8 9,8 8,C -1,8 2,B -1,7 2,4 2,6 1,B -1,2 4,C 4,B 7,C 5,3 6,C 8,C 8,9 2,8 4,7 -1,7 3,3 0,6 8,C 0,3 -1,8 9,0 4,9 9,4 -1,1 3,C -1,3 9,6 -1,8 -1,5 -1,2 3,B 5,9 7,B -1,9 1,6 2,4 8,6 3,2 1,7 1,B 4,8 5,9 -1,4 9,8 -1,1 -1,0 0,1 7,0 4,6 1,3 3,0 0,6 9,7 -1,2 2,C 5,2 1,5 -1,6 3,7 4,3 9,5 9,4 0,B -1,1 7,4 2,2 4,6 8,5 -1,2 7,1 5,8 4,1 4,C 6,8 1,5 5,7 -1,7 5,B 0,B 8,0 2,1 7,C 7,B 3,1 2,C 5,1 1,C 2,7 8,4 -1,7 6,8 2,6 9,6 6,B -1,5 -1,7 2,7 1,3 -1,2 6,0 9,5 9,2 8,7 1,7 1,C 4,B -1,4 6,1 0,4 -1,9 -1,2 4,0 8,5 2,2 -1,5 1,5 -1,5 2,C 1,C 0,8 9,4 1,2 6,7 6,9 0,C 6,0 9,B 1,B -1,9 8,B -1,2 0,2 5,1 3,9 6,9 -1,1 9,B -1,7 6,2 -1,7 6,0 -1,6 1,1 -1,3 2,B 5,5 9,9 2,2 9,4 0,6 2,4 9,7 -1,9 4,6 -1,9 9,3 1,4 9,4 0,3 5,C 2,1 9,5 8,2 3,B 3,C 7,B 1,C 0,6 1,2 -1,0 -1,6 7,B 0,B 2,1 2,8 8,3 7,C 4,2 4,C 1,0 1,7 0,5 0,0 3,B -1,1 -1,2 6,9 5,3 -1,9 6,4 5,4 -1,2 2,B 7,1 9,6 1,1 8,8 -1,1 1,B 4,6 5,9 4,C 3,3 5,1 3,B -1,0 0,8 -1,0 2,3 9,6 9,4 0,8 4,2 -1,7 -1,4 4,C -1,7 8,0 8,B 2,1 5,5 -1,8 7,0 8,6 2,0 1,B 2,3 8,C 7,9 7,4 6,B 1,C 8,B 3,5 -1,6 8,9 5,9 3,5 6,4 6,4 1,2 3,6 6,4 -1,7 8,7 -1,4 9,B 5,3 8,1 9,1 -1,2 9,1 6,B -1,7 6,9 9,3 9,1 5,5 -1,3 6,7 8,6 8,5 0,1 9,0 7,6 3,4 -1,4 4,6 0,2 8,C 2,0 5,6 2,2 0,3 -1,1 7,5 -1,3 -1,1 2,2 1,0 8,9 0,5 4,4 3,1 1,6 8,4 -1,4 8,C 0,9 8,2 8,C 3,8 7,5 -1,0 9,5 2,3 7,7 4,3 3,2 3,B 3,9 3,0 4,3 4,8 3,5 -1,3 -1,4 1,2 -1,7 1,B 4,8 8,4 9,7 7,B -1,6 3,B 0,9 7,2 6,2 0,9 7,8 0,9 2,4 6,B -1,5 -1,6 9,1 8,C 0,1 3,2 2,4 5,0 0,0 7,B 3,9 1,1 -1,0 -1,5 6,C 0,3 -1,4 7,0 9,C 7,B 6,C 3,B 6,5 1,B 6,C 4,4 1,0 1,1 -1,1 9,5 -1,3 0,7 2,B 1,7 8,7 9,7 8,3 -1,6 -1,6 -1,4 5,5 -1,5 -1,4 2,B 2,9 7,3 2,1 9,9 6,B 4,B -1,8 7,B 6,8 1,1 -1,8 -1,3 2,B 2,C 3,5 -1,3 3,3 2,B -1,2 4,1 3,1 5,8 4,3 8,6 0,8 6,3 2,B -1,9 -1,0 4,9 7,8 0,8 2,6 9,3 -1,5 -1,4 9,1 9,B 7,B -1,8 -1,7 -1,5 5,7 0,1 8,9 5,C 0,3 6,C 4,C 6,0 2,8 0,9 7,8 7,6 8,7 6,0 7,7 -1,5 3,1 5,3 1,C 2,7 4,0 8,0 -1,6 6,8 -1,2 4,1 7,8 0,B 4,3 8,5 -1,6 -1,8 3,5 8,2 -1,2 8,C 8,5 6,B 2,1 -1,4 3,7 2,1 4,7 6,0 9,C 7,5 5,9 0,9 2,B 2,B 1,8 5,C 0,8 0,B 6,4 9,6 6,4 1,1 3,6 2,7 0,7 -1,5 9,3 8,1 2,8 7,6 2,1 8,3 8,2 5,9 -1,9 5,5 -1,6 -1,6 6,6 -1,1 2,7 0,8 9,B 8,9 4,3 0,2 8,3 5,2 1,3 9,5 6,0 0,B 7,3 5,0 6,2 9,C 9,0 -1,7 5,7 3,4 5,C 8,5 8,B 2,C 6,4 9,4 -1,5 9,6 -1,1 8,8 3,8 9,1 2,9 2,4 6,B 5,1 1,C -1,1 8,9 6,2 0,3 9,7 2,3 -1,6 -1,0 5,B 9,C -1,7 -1,3 2,9 5,9 -1,9 -1,6 2,3 4,3 3,5 8,3 5,4 8,2 5,C 9,B -1,1 -1,6 8,9 2,3 -1,0 5,0 8,6 8,0 9,B 4,4 8,0 2,7 9,B 4,0 9,4 1,C 5,0 3,8 -1,6 0,7 1,4 7,9 9,7 0,C -1,0 9,0 -1,2 2,B 4,9 5,B 1,7 -1,4 1,0 4,2 4,5 3,1 -1,9 5,1 2,1 -1,7 9,0 6,1 0,7 0,B 1,0 -1,1 7,5 0,5 1,1 0,2 6,7 2,8 7,5 3,0 7,1 8,8 5,8 2,9 2,5 -1,4 0,C 0,0 2,4 8,2 5,B -1,7 -1,7 -1,1 8,C 9,9 5,4 0,B 7,5 2,C 9,2 -1,4 2,C 0,0 2,2 2,B 7,0 0,1 8,6 9,2 9,3 7,7 6,0 -1,4 7,B 2,3 6,C -1,0 8,C 9,9 5,9 0,C 9,2 2,B 4,C 9,1 3,0 2,2 1,5 1,8 0,9 5,1 9,4 1,B 6,6 6,0 6,8 3,3 4,6 4,2 4,3 -1,1 2,6 5,4 1,3 2,2 1,3 6,8 3,C 6,4 8,1 1,0 7,5 4,4 2,C 8,C -1,2 1,6 3,0 0,5 0,9 9,6 3,C 8,3 9,B 8,7 3,9 5,6 5,6 0,6 7,7 9,6 9,3 6,5 8,7 1,B 1,9 3,0 9,2 3,9 7,6 6,C 9,9 -1,6 9,4 6,3 4,4 3,2 2,9 6,1 -1,4 4,B 5,1 8,5 3,C -1,2 4,B 3,0 -1,6 5,0 6,0 5,6 -1,2 -1,4 8,4 9,8 8,8 8,B 6,6 2,C 0,5 -1,4 -1,8 1,1 6,9 4,0 0,3 7,4 7,4 6,2 -1,0 7,C 2,8 9,2 2,3 5,4 4,6 -1,7 2,2 4,6 3,3 4,4 7,7 1,0 7,4 -1,4 6,1 4,2 6,6 2,C 2,4 9,4 1,7 4,8 3,C 3,2 8,2 -1,9 3,B 6,2 9,B -1,5 6,0 1,C 3,7 8,8 5,1 4,B 1,C 5,8 5,2 6,B 1,6 1,6 -1,2 -1,7 1,1 0,8 -1,3 9,C 7,1 0,8 3,1 -1,0 5,B 5,4 7,0 3,5 5,8 7,C 3,8 6,8 -1,1 -1,2 1,8 8,9 1,6 1,C 1,3 -1,7 6,C 2,2 7,1 -1,7 3,1 -1,2 4,3 -1,4 1,2 1,1 6,7 9,C -1,9 -1,2 4,C -1,8 5,3 1,C 0,9 2,6 8,B 2,4 -1,9 9,3 0,B 6,9 2,0 -1,8 5,B 5,8 -1,4 2,9 4,3 -1,9 7,C 2,C 9,5 7,0 5,B 2,C 7,1 3,3 7,7 9,3 1,2 9,B -1,7 6,B 3,C 9,7 8,5 4,6 1,9 1,B 7,4 0,1 6,C 0,C 3,2 4,0 2,C 6,0 -1,5 5,3 0,9 6,3 7,4 -1,8 -1,4 3,7 7,C 8,9 3,0 1,6 3,0 2,6 -1,9 -1,7 7,9 -1,6 -1,7 2,C -1,3 4,8 5,0 2,7 -1,3 5,8 4,B 8,8 2,7 5,3 2,9 3,6 -1,6 3,0 4,7 0,3 0,8 1,5 0,B -1,2 9,4 7,9 0,7 9,C 6,4 9,2 9,9 9,0 2,B 9,3 4,6 3,0 6,0 -1,0 -1,6 1,3 9,9 6,B 4,0 7,9 -1,3 2,7 8,3 -1,9 -1,6 1,6 -1,2 -1,4 -1,1 3,3 1,9 3,B 1,B 5,3 5,5 8,6 3,9 4,B -1,4 8,B -1,6 1,4 0,6 8,B 7,1 2,5 7,2 0,8 9,C 4,B 1,9 2,C 4,6 4,C 0,C 6,7 5,8 0,C -1,7 8,B 0,1 0,7 2,9 5,9 2,8 -1,3 2,6 9,4 -1,4 5,7 1,4 5,6 2,1 9,2 8,1 0,3 5,8 9,3 1,B -1,2 2,6 -1,1 6,C 8,0 9,C 8,9 5,C -1,2 2,7 6,3 -1,5 -1,6 7,5 8,1 -1,0 -1,2 9,5 9,3 -1,0 1,7 -1,1 6,9 0,9 1,5 0,1 -1,6 3,8 9,9 4,1 -1,2 7,0 1,8 8,8 6,1 5,3 2,7 9,2 8,2 0,3 2,0 7,5 3,8 -1,8 1,8 3,1 3,2 -1,4 -1,1 3,5 5,C 6,C 4,6 -1,9 7,8 2,4 -1,8 -1,5 8,B 9,C 7,1 -1,4 6,9 6,B 8,6 7,0 -1,6 1,C 0,C 1,B 3,4 2,0 -1,8 -1,3 -1,7 1,6 7,2 3,9 3,2 5,C 4,8 -1,8 -1,5 2,3 2,7 6,5 0,9 5,7 7,4 5,1 -1,8 0,6 4,0 1,5 7,7 9,C 4,3 5,4 7,B 8,9 -1,7 9,7 4,4 8,9 6,9 -1,3 2,7 -1,9 7,7 8,C 0,6 0,B 4,5 4,8 2,5 3,B 2,6 9,0 -1,1 4,1 6,6 7,B 4,0 8,3 3,4 3,5 2,1 -1,7 9,9 6,B 7,8 4,1 9,B 0,4 8,C 4,9 0,B 7,B 1,C 0,C 4,C 7,2 -1,2 8,C 7,3 5,C 0,6 2,6 7,C 7,C 1,C 4,4 0,7 3,1 2,3 0,B -1,6 7,C -1,9 0,5 -1,5 7,B 9,0 8,B 8,C 4,1 1,B 7,0 -1,2 0,0 4,3 -1,1 2,5 9,B 8,0 6,7 1,B 0,7 8,2 8,B 4,5 7,7 8,2 4,B 1,7 7,C 0,B 9,B 1,6 0,4 3,2 -1,0 6,5 6,C 5,3 2,9 8,3 -1,7 2,0 9,7 -1,0 8,4 2,C 4,1 0,3 2,0 -1,4 0,2 8,6 8,C 6,6 -1,8 -1,6 3,B -1,0 5,C 9,7 4,4 0,2 6,2 -1,9 -1,6 -1,8 2,1 -1,0 -1,6 5,2 -1,6 -1,8 -1,4 8,0 2,5 7,7 5,3 5,4 7,C 0,1 1,1 6,8 0,C 3,C 4,4 9,1 8,2 7,6 -1,5 6,9 0,1 -1,3 9,8 0,9 1,4 -1,6 4,7 1,0 -1,2 8,B -1,0 1,9 -1,6 7,2 3,5 7,1 1,B -1,4 -1,2 5,2 0,3 2,5 8,4 9,7 -1,6 3,2 5,6 8,7 3,9 2,9 -1,9 4,5 -1,6 8,8 0,9 2,C 1,B 5,3 4,0 8,4 -1,6 -1,2 2,9 2,9 0,C -1,4 3,C 4,0 5,6 -1,5 4,0 0,2 0,3 9,1 5,7 -1,2 4,C 4,9 2,6 8,3 6,4 -1,1 -1,6 1,C 0,7 1,6 6,B 8,7 -1,5 6,8 -1,5 0,1 1,C 4,6 6,8 2,9 2,B 8,1 2,1 4,3 0,C 9,9 3,C 4,5 4,C 4,1 -1,7 4,B -1,2 5,0 0,1 9,2 7,7 9,9 9,9 9,7 3,2 -1,1 -1,3 1,3 7,C 6,2 -1,8 7,C 7,0 6,5 1,B 4,5 4,8 1,B -1,0 8,4 1,B 2,4 1,3 4,C 3,7 -1,7 3,2 -1,5 7,9 3,0 3,2 9,4 9,8 6,2 6,0 0,1 9,B 7,C 5,6 0,8 -1,0 9,6 -1,7 9,8 1,B 4,B 4,4 6,3 -1,5 5,9 9,5 2,6 -1,7 4,C -1,7 0,5 -1,3 4,C -1,6 9,C 2,C 9,2 7,8 8,C 0,C 7,B 5,9 8,5 2,2 4,9 1,3 -1,6 7,4 -1,6 0,8 9,2 9,3 6,3 -1,6 3,3 7,C -1,1 1,B 3,4 1,B 8,7 5,B 2,8 4,2 9,2 2,C 6,3 7,B 5,B 0,7 -1,2 7,6 8,7 -1,8 5,0 1,8 -1,6 -1,5 -1,6 5,B 1,C 5,7 5,4 0,9 -1,0 3,4 4,6 6,4 8,B 2,9 1,3 4,8 6,C -1,6 -1,4 -1,7 6,7 8,4 -1,8 7,4 2,C -1,5 8,7 -1,0 8,8 6,B -1,2 3,7 7,9 -1,7 3,B 8,9 7,6 3,5 9,B 2,4 5,C -1,8 9,4 5,9 6,B 8,C -1,2 7,0 0,C -1,3 7,B 3,6 4,6 5,B 1,0 5,4 5,B -1,5 9,3 6,8 -1,6 6,2 8,7 2,3 -1,0 8,C 3,7 3,C -1,7 7,C -1,6 7,2 -1,2 -1,6 6,C 3,C 9,B 7,7 7,6 1,0 -1,7 9,9 8,0 7,0 6,7 -1,3 4,6 -1,4 6,2 -1,2 -1,8 1,6 3,1 4,9 2,C 5,8 1,1 0,7 0,1 9,4 6,8 5,8 6,C 9,B -1,4 2,4 7,1 5,B 6,0 1,5 8,8 4,3 5,1 3,5 7,B 8,1 5,0 4,9 5,7 9,5 6,0 0,6 7,6 5,B 5,6 0,3 8,B 3,1 -1,4 2,2 8,B -1,6 -1,3 1,4 7,B -1,1 0,7 1,B 6,B 9,5 3,9 2,5 0,8 8,B 9,C 1,5 1,5 9,C 4,0 6,7 -1,7 5,1 1,9 -1,0 9,7 6,7 -1,8 1,8 0,8 2,C -1,1 -1,2 2,8 -1,9 0,B 9,6 0,6 4,9 4,B 5,1 3,0 0,2 4,5 -1,3 0,C 6,7 9,4 8,2 6,7 4,C 7,3 9,3 6,6 0,8 4,7 5,C 2,5 -1,1 -1,6 2,1 5,1 2,7 6,B 4,B 6,C 2,7 9,C 0,1 6,B 1,C 4,2 5,C 9,2 0,8 0,C -1,8 5,C 6,6 0,C 2,1 3,0 9,3 9,B 6,C 1,8 -1,0 8,B 9,B -1,3 7,5 5,5 -1,1 3,4 -1,3 0,7 7,4 8,0 -1,3 3,B 8,1 1,3 2,4 7,3 2,3 9,9 9,4 -1,5 2,8 7,0 2,1 5,6 8,1 -1,4 2,2 5,6 -1,9 1,1 7,C 9,B 9,C 1,1 6,B 5,7 9,5 7,7 3,9 8,3 -1,2 3,5 0,0 5,7 0,5 -1,4 -1,3 2,C 7,2 8,9 1,6 4,9 -1,1 1,5 0,0 4,B 3,B 4,4 5,2 -1,3 3,3 9,6 2,B 4,B -1,2 9,3 6,5 0,6 6,3 9,3 4,7 7,C 5,6 8,1 9,9 -1,1 5,0 0,C 9,4 5,1 -1,2 2,0 5,9 9,3 6,9 7,B -1,8 4,C 8,C 5,6 7,3 6,9 0,4 5,7 8,5 0,1 9,C 8,1 9,8 -1,2 1,4 1,7 4,7 -1,1 8,0 4,7 2,0 2,2 1,2 5,C 7,B 9,8 4,C -1,8 3,8 2,3 9,7 8,7 -1,4 9,C -1,4 2,2 -1,5 0,3 -1,1 4,7 -1,4 9,5 8,B 9,6 6,9 1,2 6,3 9,4 9,3 5,8 9,B 1,3 2,9 5,4 -1,4 5,2 -1,7 4,8 5,2 8,5 5,5 4,5 -1,3 5,0 2,5 4,9 6,1 9,B -1,0 9,2 7,4 -1,7 3,7 4,1 8,B 4,3 8,9 -1,1 8,8 -1,9 8,C 1,C 0,4 0,0 -1,7 1,0 1,5 -1,4 7,0 8,9 4,2 8,1 6,7 1,5 9,6 6,1 -1,1 2,9 2,B 5,7 0,4 5,9 0,6 -1,3 0,8 5,7 2,0 2,9 4,4 -1,9 -1,7 7,5 9,5 2,7 0,C 7,1 -1,9 2,7 9,B 6,C -1,7 6,5 2,3 0,6 6,4 1,4 6,4 1,5 5,4 -1,9 2,5 2,2 -1,7 -1,1 3,0 0,1 9,3 0,0 5,3 0,7 1,B 7,3 7,1 -1,0 1,6 8,B 5,3 6,5 8,C 8,B 5,1 -1,4 -1,5 3,C -1,3 4,1 8,4 9,5 2,5 8,B 2,8 -1,9 2,7 4,2 8,6 0,B 5,C 5,5 8,9 7,C 7,9 -1,6 -1,3 1,4 3,B 9,7 -1,7 2,B -1,7 0,C 7,2 6,7 -1,0 -1,0 4,B 0,6 7,1 8,7 -1,9 1,C 3,4 5,8 -1,5 -1,4 8,B 5,C 8,3 0,C 1,6 2,C 6,4 -1,8 2,1 5,C 7,5 3,7 6,2 1,4 8,0 0,2 7,7 8,2 -1,9 5,B 8,B 7,4 -1,8 1,C -1,0 -1,3 5,5 -1,3 8,5 6,5 3,4 6,0 5,1 9,6 2,3 6,B -1,4 0,C -1,8 4,0 1,8 -1,4 -1,2 9,8 6,8 9,8 2,7 6,C -1,7 4,5 1,C -1,7 -1,4 9,5 9,7 -1,8 1,0 -1,6 3,3 2,5 5,8 9,0 1,2 0,7 0,0 9,8 -1,4 3,0 -1,6 -1,2 -1,6 -1,5 0,C 1,8 -1,1 3,5 3,2 -1,5 0,2 1,B 1,8 7,1 0,6 -1,2 -1,7 8,0 2,7 8,2 0,7 -1,9 -1,4 3,B 9,6 8,C 6,C 5,C 3,B 9,5 8,6 8,9 3,B 7,5 0,B 0,4 3,1 5,4 0,C 3,B 7,7 6,5 5,7 1,7 8,1 -1,8 2,6 0,0 0,C 4,5 1,5 7,3 8,0 -1,9 1,6 1,5 -1,8 7,5 0,9 7,9 0,6 9,6 8,B 0,9 0,7 4,1 2,0 1,B 7,8 -1,3 1,9 2,6 6,B 6,3 3,C 8,B 1,6 -1,8 -1,2 4,C 1,1 6,4 0,8 -1,7 0,B -1,0 1,C 6,B 0,1 2,9 1,3 9,7 3,6 7,B 4,4 2,7 6,4 6,6 3,B 4,3 6,6 7,B 6,4 3,8 9,C -1,1 7,1 5,1 2,2 7,C 3,7 -1,4 7,B 9,4 0,C 5,6 7,C 9,7 6,C 4,B 5,B -1,2 6,6 8,5 5,6 8,0 -1,8 -1,0 5,C 7,1 5,9 7,6 9,9 7,C -1,6 8,6 8,2 3,B 1,4 5,3 7,3 0,2 8,2 7,B 4,B -1,3 1,9 7,3 5,7 6,B 7,7 7,1 3,B 7,6 -1,8 -1,0 -1,1 7,7 8,8 8,3 9,8 1,C 8,3 8,2 6,4 0,B 8,1 -1,2 1,1 6,C 7,8 -1,9 6,B -1,2 1,7 -1,4 5,9 2,5 8,5 -1,3 -1,8 1,B -1,9 2,1 1,8 -1,8 2,0 7,8 0,8 9,8 3,C 1,5 8,4 3,0 6,4 -1,9 -1,8 4,B 0,B 8,7 -1,7 7,8 0,8 -1,6 4,9 6,B -1,9 9,7 5,9 5,6 8,4 9,5 -1,2 -1,3 4,5 1,2 4,7 8,8 0,3 8,C 0,B 1,C 2,7 8,9 -1,9 9,B -1,3 -1,3 -1,8 4,0 4,9 5,3 1,8 1,2 9,8 -1,8 -1,0 9,7 3,3 3,2 3,1 1,2 4,5 6,5 -1,6 7,1 -1,2 7,2 7,B 3,C 7,2 -1,9 -1,5 0,6 4,6 4,9 5,8 0,6 7,B 6,5 8,0 1,C 8,7 0,2 -1,8 -1,9 7,0 0,3 2,3 9,3 1,B -1,7 -1,4 6,B 1,0 -1,9 4,C 5,1 6,2 6,2 -1,9 9,3 3,8 3,7 0,2 8,8 9,6 4,B 7,0 7,B -1,2 1,C -1,2 9,B 0,7 7,1 6,B -1,1 1,1 6,9 4,7 -1,4 8,C 6,1 5,C -1,8 5,4 6,8 1,7 3,4 1,B 8,1 3,1 7,7 1,7 -1,4 2,5 5,7 5,1 5,1 9,1 1,1 -1,3 0,8 5,1 -1,7 2,1 1,2 0,6 7,8 9,0 1,8 1,5 4,9 2,C -1,5 9,C 1,5 2,B 2,C 4,2 3,C 6,7 6,5 5,3 -1,7 -1,5 0,1 5,9 5,5 8,5 -1,9 6,8 7,B 1,4 3,6 4,3 -1,0 4,3 5,0 9,1 1,9 -1,3 3,4 -1,7 6,3 7,2 0,3 3,3 7,C 7,2 5,C 0,2 3,B 3,B 2,B -1,6 2,7 9,7 7,1 5,9 1,5 -1,8 5,C 3,0 0,B 3,4 4,8 7,9 3,3 6,1 9,B 9,5 -1,9 7,3 1,8 2,9 9,B 8,C 4,4 9,9 9,1 9,5 2,1 9,5 1,8 4,B 2,7 9,9 -1,2 0,8 -1,3 8,4 5,8 -1,1 3,B 8,C 2,1 -1,5 4,0 7,0 -1,1 4,4 0,C 4,1 8,5 5,9 1,B 1,C 9,0 2,C 3,B -1,0 5,3 5,B -1,1 2,6 1,6 6,C 3,2 5,2 -1,4 0,8 1,C 1,1 2,5 6,8 0,B -1,8 -1,4 -1,9 7,C -1,6 -1,5 1,3 3,5 4,8 -1,2 8,7 5,C 5,5 6,2 -1,6 -1,5 -1,0 2,9 3,B 7,C 5,C 7,C 9,B -1,7 1,6 7,6 5,6 9,C 4,4 5,7 7,B 1,4 4,9 6,C 5,0 2,3 8,3 5,C 1,C 1,6 7,C 5,2 5,4 6,5 -1,6 1,7 1,4 1,B -1,3 9,5 4,9 -1,2 7,B 2,1 8,3 4,B 9,9 2,3 0,C -1,9 5,5 -1,8 5,1 7,B 4,5 8,7 9,0 -1,5 3,6 -1,4 1,6 0,B -1,6 3,B 6,C 8,6 5,1 0,6 8,5 8,8 -1,2 4,8 8,B -1,5 4,6 3,4 -1,5 -1,6 5,0 1,C 2,0 6,8 9,C 3,0 7,2 9,B 8,3 -1,3 0,4 3,C -1,6 0,7 2,6 1,B 2,0 1,8 -1,4 -1,2 2,0 8,5 5,0 2,8 1,C -1,3 4,4 4,9 -1,5 -1,4 1,9 2,B 4,0 1,4 9,2 -1,8 0,7 1,1 3,8 6,1 8,5 0,0 8,B 3,4 -1,5 7,6 2,C 0,5 -1,5 4,5 1,4 -1,5 6,9 1,1 7,0 -1,3 4,B 8,C -1,6 -1,1 8,6 9,8 5,3 2,4 1,4 5,1 1,1 -1,6 5,1 -1,5 1,B 9,0 -1,2 2,2 9,6 -1,3 2,5 4,4 8,C 9,0 4,3 6,6 9,B 3,1 8,1 1,B 5,C 0,8 -1,9 8,6 2,2 0,C 3,0 -1,7 -1,4 2,B 4,B -1,4 8,5 2,5 4,1 2,7 6,2 -1,0 3,1 3,6 0,B 0,1 0,B 1,6 -1,9 4,5 0,C 5,B -1,2 0,0 7,1 2,5 9,0 6,4 2,9 5,C 7,C 5,7 0,3 7,8 4,0 9,1 6,B 9,6 2,C 5,8 6,3 4,0 2,5 4,9 -1,6 6,8 2,8 1,1 -1,6 1,B -1,8 8,8 -1,4 -1,6 7,1 6,5 5,4 3,3 2,B 8,6 -1,5 1,6 6,6 4,C -1,8 6,5 -1,9 -1,0 -1,6 4,3 7,7 4,9 2,3 9,0 2,3 9,9 2,B 8,7 7,2 2,5 4,2 7,6 2,9 5,6 3,2 0,7 6,4 1,4 3,5 9,5 9,0 4,9 5,8 0,C 7,9 -1,6 9,B 5,8 6,3 8,7 6,8 0,4 3,9 -1,4 9,7 -1,5 5,4 8,2 6,0 1,1 3,B 5,7 -1,5 -1,2 -1,8 0,7 8,6 1,C 3,5 6,7 5,8 1,8 4,6 -1,7 0,2 2,B 6,5 7,7 1,9 5,0 8,9 -1,9 -1,3 0,9 2,C 8,6 3,3 8,8 4,B 2,8 6,7 -1,1 1,C -1,0 -1,6 -1,5 -1,5 1,7 3,6 9,9 2,7 6,B 6,9 9,7 -1,7 5,2 7,2 8,C 9,B 1,0 1,7 7,5 2,0 4,4 8,6 -1,8 -1,0 7,7 -1,2 -1,8 6,C 5,B 8,8 1,2 3,4 2,8 -1,5 5,1 4,B 8,8 6,1 9,4 1,1 3,B -1,1 9,2 1,8 -1,4 7,5 8,0 3,2 8,4 -1,3 8,8 -1,9 -1,8 -1,2 1,9 3,1 9,0 5,3 5,0 6,4 -1,0 3,C 5,B -1,5 -1,0 1,1 6,B 0,3 0,2 9,C 0,9 0,C 7,B 1,B 8,8 3,7 2,2 1,B 9,0 4,5 5,4 -1,0 8,B 7,5 4,3 8,C 1,8 8,8 8,C 9,2 7,1 6,8 6,8 1,C -1,9 7,C -1,9 8,C 2,2 3,C 1,2 6,2 3,8 6,3 8,B 2,B 0,B 8,8 9,B 8,B 3,8 4,8 9,3 0,C 3,0 -1,3 3,1 6,8 7,B 1,9 2,B 0,6 6,B 9,2 2,B 3,6 9,C 6,3 4,8 7,7 -1,8 4,C -1,7 -1,1 7,0 -1,6 3,1 -1,1 1,9 6,0 8,2 -1,9 2,2 3,4 -1,9 1,8 1,C 6,C -1,1 -1,1 3,3 8,C 7,4 9,0 2,0 4,2 3,5 8,0 -1,8 5,B 4,5 5,B 8,0 8,C -1,9 3,3 8,B 0,7 5,7 4,2 7,C 7,0 6,0 6,7 6,9 5,0 3,6 7,5 2,B 1,6 8,2 4,B 1,2 3,B 5,B 3,C 0,C -1,6 2,9 7,C 3,B 0,8 6,2 9,8 7,4 -1,3 4,5 -1,5 8,2 0,9 4,6 9,C 2,5 -1,4 -1,5 0,0 3,1 -1,4 -1,1 2,6 8,3 0,0 2,7 8,8 3,B 9,8 -1,3 4,8 3,3 4,1 -1,2 1,3 3,B 7,0 0,3 -1,1 6,1 6,4 6,C 2,5 1,6 1,1 9,C -1,4 1,0 5,B 8,B -1,0 3,0 -1,0 8,B 0,3 0,6 3,3 3,2 9,4 -1,7 0,4 7,1 4,B 7,9 7,9 2,5 9,1 -1,3 3,B 8,C 9,9 7,B -1,8 7,7 4,8 -1,1 -1,1 7,4 2,9 0,B 3,B 8,4 8,B 7,B 9,B 2,B 9,B 6,6 -1,3 4,6 2,C 0,8 7,6 3,9 -1,6 1,C 4,1 -1,9 4,C 2,B 5,8 1,8 9,C 4,9 2,4 4,7 5,9 -1,3 0,1 -1,5 -1,7 2,6 1,5 5,6 -1,6 9,3 -1,1 -1,7 -1,9 2,C -1,1 3,1 4,4 4,7 -1,5 7,3 7,1 3,B 9,5 6,B -1,5 -1,0 6,3 -1,7 2,9 -1,9 1,1 1,4 5,3 0,7 -1,4 -1,6 6,1 0,B 3,9 9,B 0,2 2,3 9,8 -1,5 9,B 4,B 7,6 5,2 9,4 -1,6 -1,4 5,0 4,1 2,B 6,B 7,9 7,1 6,2 -1,9 -1,4 7,9 0,0 2,B -1,9 2,4 5,B 1,5 -1,1 -1,1 9,7 8,C -1,4 2,2 1,6 1,5 1,2 9,8 1,1 0,8 3,C 6,C -1,3 -1,0 6,4 7,0 5,5 -1,4 4,3 2,3 8,B 0,2 4,B 9,1 0,6 0,5 2,B 7,1 7,8 7,6 -1,1 9,7 4,5 4,6 -1,2 8,B 6,5 -1,5 -1,7 6,1 -1,0 4,9 -1,2 -1,5 0,5 5,C 8,6 8,0 1,7 1,2 0,B 8,B 9,3 -1,4 0,B 0,B -1,4 8,5 -1,6 5,5 5,C 4,9 5,9 -1,4 9,5 0,8 3,4 -1,1 -1,3 -1,2 6,9 9,9 -1,8 0,3 4,C 5,B -1,6 6,3 9,4 3,9 -1,3 -1,9 2,8 -1,1 0,4 -1,1 -1,4 1,3 5,3 5,C -1,1 -1,2 2,4 2,9 0,6 3,6 0,9 -1,4 3,0 1,8 -1,1 -1,3 1,C 7,7 9,7 3,5 3,0 1,C 7,1 3,B 9,B -1,8 -1,8 9,0 1,0 6,2 2,C 9,B -1,7 0,0 -1,5 3,0 9,3 -1,8 -1,4 5,3 9,7 0,1 8,5 2,9 5,4 0,C 6,7 0,7 0,4 2,4 9,0 7,5 4,7 6,5 -1,6 7,9 6,8 4,0 3,8 6,4 4,B -1,5 -1,7 2,3 8,8 6,C 0,9 0,2 7,6 -1,7 9,9 8,C -1,7 5,C 2,1 4,6 8,7 9,B 6,9 6,4 4,B 4,6 2,C -1,3 5,1 6,5 -1,3 3,B 8,4 5,5 4,C 3,1 3,8 3,1 2,7 5,B 5,8 2,3 -1,2 -1,0 -1,6 2,0 9,B 8,5 6,0 4,1 -1,9 6,0 2,2 -1,4 9,1 3,5 9,C 0,8 4,4 1,9 -1,7 3,C 1,7 -1,1 1,B 9,9 7,C 9,7 7,C 2,B 0,4 6,6 0,0 2,3 0,4 4,4 6,2 1,9 6,1 -1,3 6,2 -1,8 9,2 4,2 9,C 1,9 -1,5 2,3 -1,7 -1,8 6,5 6,1 3,4 0,B 0,6 9,3 1,B 1,B 6,C 1,6 -1,8 8,C 8,B 7,7 1,1 -1,3 2,3 4,B 4,6 6,4 -1,4 3,8 2,2 5,0 9,7 9,0 -1,9 4,C 6,6 4,C 7,5 3,C 4,C 9,9 6,B 0,B -1,5 8,3 4,5 -1,9 -1,0 7,0 6,B 4,C -1,7 3,1 1,1 0,C 1,B 3,3 8,7 4,3 7,4 7,2 -1,0 1,B 1,C 0,0 -1,1 -1,1 -1,1 8,8 2,B 4,1 5,5 5,9 8,8 9,3 -1,1 -1,9 0,5 4,5 -1,7 1,C 1,C -1,8 5,6 -1,3 -1,8 3,2 2,C 6,B -1,9 8,9 4,B 0,1 8,C -1,3 3,B 0,1 2,3 -1,3 -1,9 -1,3 7,8 5,C -1,0 5,4 4,2 1,B 7,9 1,B 7,2 -1,7 5,B 1,B 4,8 2,1 1,9 6,1 -1,5 5,7 8,9 6,7 7,4 1,1 8,2 0,2 3,B 7,0 8,6 0,0 8,B -1,4 4,C 4,0 1,C 9,2 8,4 5,0 1,7 3,6 9,6 -1,5 5,0 8,1 2,4 -1,0 0,9 6,3 4,3 7,2 6,9 2,6 3,B 5,5 -1,4 1,B 4,1 5,9 6,8 9,7 8,C 7,4 7,3 2,B -1,1 -1,3 4,C 9,2 8,0 7,5 7,B 6,7 -1,2 -1,0 7,B 9,C 5,0 7,C 6,9 8,8 5,C 8,5 -1,8 -1,7 4,1 3,9 -1,3 5,B -1,1 8,4 1,8 8,B -1,4 7,3 5,4 0,B -1,3 9,4 -1,0 5,B -1,7 0,C 8,C -1,8 1,9 5,2 9,5 2,0 1,4 8,5 0,6 1,2 1,4 8,7 -1,5 -1,3 1,7 0,6 7,8 -1,4 9,0 -1,1 3,9 1,3 1,C 7,1 0,9 2,8 5,3 5,4 7,B 1,9 2,9 9,B 7,8 3,7 9,C 0,C -1,4 4,1 5,6 9,C 7,8 9,4 -1,0 5,C 5,2 5,C -1,7 2,C 5,8 -1,2 -1,6 7,6 8,8 9,B 3,3 7,7 3,C 5,0 2,5 7,4 1,4 -1,6 -1,9 2,8 -1,6 1,8 4,B -1,8 -1,7 9,7 8,7 0,C -1,5 -1,8 4,6 7,C 3,3 6,B 1,2 -1,8 -1,1 8,7 0,0 6,B 9,6 6,B 2,C 9,2 -1,8 0,C 6,8 3,0 8,C -1,3 1,B 6,C -1,3 9,6 2,9 9,B 0,B 4,3 6,C 9,6 8,5 6,2 6,7 -1,3 2,2 8,C 2,0 4,1 -1,0 8,1 4,2 -1,8 9,B 8,2 -1,2 3,8 -1,2 -1,8 3,0 -1,3 6,6 1,1 0,C 4,1 7,0 5,2 5,0 5,3 0,1 -1,3 8,9 6,0 8,4 5,C 1,4 5,5 1,3 5,7 -1,2 8,6 6,2 5,B 4,B 3,B 2,1 1,3 2,3 9,0 8,0 8,6 1,C 1,C -1,3 -1,8 7,7 9,4 -1,8 6,2 7,B 9,8 3,9 5,0 4,3 6,0 2,5 1,B 6,3 -1,6 5,C -1,8 9,4 4,3 8,C 1,5 5,4 2,C 0,9 6,5 6,3 4,1 -1,5 1,2 -1,2 -1,7 1,5 9,8 6,8 2,C 7,5 2,5 3,3 2,8 3,7 9,6 2,9 -1,8 7,6 3,B 3,8 2,6 2,C -1,4 5,7 -1,1 -1,3 5,9 5,B 7,C 0,4 -1,8 3,1 3,2 4,4 5,4 2,6 8,B 6,2 8,5 9,8 -1,6 7,C -1,2 1,5 2,5 9,C 6,C 7,C 6,6 7,B 4,C -1,2 7,6 6,2 6,9 -1,5 6,0 1,7 -1,9 2,1 6,4 9,C 5,B 0,B 7,9 6,5 7,1 8,2 -1,7 3,5 3,8 1,3 2,4 1,8 7,B 7,4 1,9 6,2 6,6 -1,9 0,C 2,0 1,5 8,9 5,5 8,3 2,2 7,0 8,9 9,B -1,3 0,1 1,5 -1,3 3,5 2,3 1,1 1,C -1,7 -1,5 8,C 5,6 9,5 -1,8 1,8 -1,5 1,5 7,B 8,C 6,2 6,C 4,C 1,4 2,7 9,5 4,8 0,2 0,9 7,2 -1,8 0,2 9,0 8,8 2,2 7,6 4,1 -1,3 -1,4 7,9 7,C 7,1 0,0 7,B -1,2 2,1 6,1 3,0 1,8 2,1 -1,1 -1,2 4,6 9,0 7,2 -1,2 4,7 9,9 6,B -1,4 4,4 0,4 6,5 7,B 2,B 6,3 7,7 -1,1 0,3 8,6 6,5 -1,0 0,6 -1,4 -1,0 -1,5 8,9 1,B 9,1 7,7 8,C 6,C 8,4 4,6 2,5 4,C 6,2 6,5 2,C 4,7 9,6 2,1 3,3 1,B 1,B 0,4 8,0 8,1 -1,3 1,3 0,C 2,C 9,4 -1,8 0,9 6,1 5,5 5,2 0,4 2,8 9,0 8,1 3,0 3,C 1,B 8,C 0,0 5,0 -1,4 7,5 -1,9 6,B -1,5 1,0 -1,1 3,6 4,C 9,2 -1,0 5,7 1,1 0,4 3,1 5,C 7,2 7,2 1,9 -1,6 9,B 5,8 1,6 9,6 -1,8 6,6 8,4 -1,0 7,9 9,9 6,B 3,9 1,2 7,3 9,0 1,5 5,7 6,C 0,0 6,0 -1,7 -1,5 -1,6 3,9 5,0 5,C 6,C 2,6 9,B 3,1 -1,1 6,2 7,2 4,7 7,0 4,2 4,7 1,2 6,9 6,1 9,3 2,8 9,C 7,4 7,3 0,3 -1,1 9,5 0,5 6,7 1,1 8,2 8,7 -1,1 7,5 4,6 1,B 8,C 9,7 4,7 9,C 1,2 9,2 0,7 5,1 -1,2 3,8 2,C -1,1 3,5 8,5 8,5 4,5 8,B 8,B 0,4 3,1 1,3 -1,6 5,5 6,C 9,C 8,2 0,2 -1,4 3,1 -1,5 9,C 6,6 7,9 1,7 1,6 9,9 7,1 3,2 6,2 9,C 1,1 8,C -1,5 5,1 7,4 8,6 5,5 6,8 0,5 -1,4 1,B -1,5 3,6 6,0 3,8 9,B -1,0 1,7 2,C 7,0 3,0 1,B 9,0 0,8 5,7 -1,5 5,5 0,0 9,B 3,2 0,B 2,3 4,0 4,C 6,C -1,7 -1,7 9,1 5,C 2,7 3,0 0,C -1,8 7,0 -1,2 3,8 6,7 -1,1 8,5 1,0 3,2 0,3 -1,1 8,1 5,4 1,C 9,9 3,0 4,C 2,2 1,2 7,5 2,6 -1,7 3,3 3,3 1,9 1,4 9,2 4,4 -1,1 -1,5 -1,9 1,4 7,7 -1,1 7,3 -1,8 0,C 4,4 5,B -1,2 9,7 1,3 9,4 8,0 4,6 0,7 9,B 7,C 6,6 6,C -1,2 4,2 -1,3 1,3 8,6 -1,8 5,6 9,2 4,3 9,4 3,9 -1,9 7,8 1,C 4,7 3,8 2,C 7,0 2,9 3,C 1,8 -1,7 6,1 8,3 8,C -1,4 2,8 0,7 6,8 7,1 -1,0 1,7 4,2 -1,9 -1,9 -1,5 4,2 8,9 9,4 9,1 9,4 -1,4 9,8 1,0 5,4 3,6 2,C -1,6 0,6 5,4 8,6 0,8 8,0 4,B 1,B 9,3 3,4 0,7 1,2 3,1 3,9 -1,5 3,C 0,B 5,C -1,8 -1,0 8,C 5,7 9,5 2,8 4,4 -1,8 0,4 -1,4 8,4 7,7 2,8 2,3 8,C 5,2 -1,1 8,B 3,C 5,5 -1,5 2,0 2,3 8,8 3,2 3,6 -1,9 1,5 0,0 2,9 4,C 1,2 1,4 9,2 5,8 0,3 0,5 3,4 2,5 4,C 3,8 6,3 6,2 6,4 -1,5 -1,9 -1,1 1,2 6,5 7,5 -1,7 6,6 -1,2 8,2 8,6 3,3 -1,1 0,0 7,3 1,8 6,C 0,3 5,6 0,7 2,6 3,8 6,7 3,6 -1,8 -1,5 -1,9 0,2 4,B 1,C 0,0 2,C 7,7 9,1 6,6 8,C 9,0 2,4 3,4 -1,7 -1,0 8,2 8,6 0,1 3,9 -1,6 5,7 4,3 -1,0 5,7 -1,2 3,0 0,2 9,5 -1,2 5,7 3,C 3,C 5,4 9,2 -1,6 8,C 6,9 6,2 0,0 8,1 -1,1 2,C 8,0 3,9 9,6 1,6 -1,8 -1,0 7,6 -1,9 7,6 1,6 2,B 5,6 1,C 3,7 9,1 0,5 0,6 -1,9 8,4 8,C -1,9 8,4 -1,6 3,1 7,5 0,3 9,4 7,B -1,0 7,1 5,3 -1,1 0,0 7,5 6,C 4,9 -1,4 -1,4 1,3 2,0 1,0 -1,4 -1,8 9,8 4,3 3,C -1,8 9,1 8,8 -1,8 6,1 8,4 8,B -1,0 -1,1 -1,9 -1,7 -1,1 8,B 0,1 6,0 8,6 5,2 9,2 -1,0 5,9 0,9 8,9 6,1 8,2 4,C 9,7 0,1 -1,5 7,5 5,9 4,C 5,B 8,0 5,1 5,6 -1,8 9,0 3,7 0,5 5,8 2,5 2,6 3,C -1,4 -1,9 8,0 4,4 9,5 8,0 6,7 8,B 3,4 -1,3 -1,4 5,2 6,7 2,B 4,C 3,6 8,5 8,1 6,3 9,6 9,B 2,7 8,6 4,C 3,7 -1,0 5,9 1,8 3,5 1,1 -1,3 3,2 0,4 1,4 4,8 0,2 -1,1 -1,6 1,2 1,6 9,C 4,C 6,5 3,3 5,3 9,2 3,1 3,C 1,B 5,B 4,C 4,C 1,0 2,B -1,6 -1,9 1,3 2,C 9,3 0,6 7,B -1,5 1,C -1,1 9,1 6,C 1,C 0,B 8,B 2,8 2,C 0,1 0,5 9,B 7,1 1,1 8,B 0,6 2,5 1,7 -1,7 4,3 7,0 3,7 1,C 9,0 7,3 7,0 3,1 2,C 2,8 2,8 8,0 -1,0 8,2 1,C 9,C 9,8 9,8 3,4 -1,2 4,C 9,C 6,1 -1,3 1,0 7,C 4,3 4,7 4,4 2,C -1,0 4,2 -1,1 3,2 7,0 -1,3 -1,3 6,8 3,3 2,C 8,8 -1,0 7,5 1,5 -1,0 -1,8 0,0 -1,2 0,2 9,B 7,4 -1,3 0,2 7,4 -1,3 7,0 9,3 5,5 -1,1 6,8 -1,5 8,B 3,9 -1,0 -1,2 5,2 3,4 -1,4 5,B 4,0 8,2 6,7 3,7 9,C 3,B -1,8 0,6 -1,0 2,7 -1,2 3,5 6,9 -1,3 1,1 7,7 1,B 4,5 2,3 9,8 5,5 5,2 8,9 5,5 8,0 6,C 6,7 3,3 7,C 8,2 3,3 9,1 1,C 9,B -1,4 -1,0 0,1 2,B 2,C 6,B -1,4 7,1 0,9 1,B 2,8 -1,9 -1,0 9,4 3,8 -1,6 9,3 4,0 -1,9 5,B 7,0 2,C 7,8 3,3 6,4 -1,2 9,B 2,C 4,1 8,9 -1,3 8,5 0,B 5,C -1,0 3,C 0,5 6,8 2,C 8,4 7,C 0,5 -1,2 8,7 0,5 7,9 4,B 4,2 0,1 1,2 -1,7 -1,0 -1,4 1,3 2,4 4,1 5,C 3,0 8,9 1,0 3,9 7,7 9,B 3,4 7,0 8,C 9,C 9,C 4,6 8,6 0,C 5,0 9,3 -1,8 6,7 -1,6 -1,7 -1,8 8,B 9,2 4,0 5,8 7,8 8,6 5,5 0,3 1,1 9,B 4,5 9,5 7,C 2,9 7,4 1,4 7,B 7,B 6,4 2,9 1,C 1,0 5,8 5,4 7,6 7,7 2,0 9,4 0,3 0,1 -1,6 8,1 -1,7 4,C -1,2 2,9 -1,8 6,8 2,C 1,3 9,8 7,0 9,7 4,0 2,C 3,2 7,B 0,8 9,B 2,3 9,5 0,B 5,C 0,C 2,C 8,B 3,0 7,1 8,B 1,B 4,6 6,B 3,B 7,8 5,1 5,B 2,C -1,2 8,8 6,2 7,B 7,C 8,2 3,7 0,0 1,3 1,1 9,6 2,C 0,7 0,3 4,8 7,8 2,4 0,B 5,4 4,1 6,9 9,8 1,3 -1,8 5,C 2,4 5,5 4,C 5,C 8,0 -1,0 -1,5 1,C -1,0 9,3 8,4 4,5 1,C -1,6 6,9 -1,3 -1,5 -1,7 2,0 6,B 4,5 -1,7 7,5 -1,0 6,C 8,7 -1,1 7,4 7,B 2,9 1,C 4,9 3,7 2,4 2,2 2,3 8,6 -1,7 9,C 8,C 5,4 9,8 -1,3 2,0 5,C 6,2 9,4 9,1 7,1 2,7 2,B 4,1 2,6 0,8 -1,2 9,5 2,1 6,1 6,C 7,B 1,C 7,6 6,8 2,2 1,4 -1,1 7,7 0,1 3,1 -1,8 7,C 8,1 -1,9 -1,7 0,2 8,5 -1,4 8,B 3,B 7,B 0,8 5,6 9,B 5,5 9,8 2,C 8,3 1,5 -1,7 0,C -1,9 6,C 0,1 0,B 7,8 7,0 2,5 -1,4 -1,6 5,5 2,3 1,2 9,0 -1,9 9,1 2,B 5,4 9,3 3,0 1,7 4,4 0,B 4,8 2,2 6,C 9,8 2,7 -1,3 2,3 1,B 8,0 7,9 1,B 8,2 -1,5 -1,0 2,C 6,4 -1,9 8,8 -1,4 9,B 2,0 9,C 9,0 3,B 4,2 2,2 -1,4 4,9 -1,7 7,2 -1,8 6,2 -1,0 2,6 2,B 4,2 2,B -1,0 1,9 0,3 9,B 2,4 6,1 3,8 4,4 5,7 3,1 -1,6 7,B 2,2 8,3 9,B 3,7 -1,5 0,3 9,8 5,9 9,B 0,3 7,B 7,1 0,9 0,1 -1,6 9,9 0,4 7,B 3,8 -1,0 9,7 -1,2 8,0 6,6 5,1 2,5 9,C 7,C 5,B 5,2 -1,2 6,9 -1,8 3,5 9,7 5,0 9,B 9,9 -1,4 8,C 8,1 0,1 0,1 -1,1 8,7 7,1 3,4 -1,2 1,5 4,5 7,8 2,0 -1,0 8,1 1,2 -1,3 2,0 6,8 4,6 3,6 6,C -1,8 5,6 2,3 -1,9 2,8 4,5 9,9 1,7 5,8 0,4 -1,7 4,7 9,9 -1,5 6,4 7,9 -1,2 6,C 4,5 4,B -1,9 3,0 8,B -1,3 6,3 4,8 -1,5 -1,2 9,9 3,4 0,C -1,1 -1,0 3,2 6,9 0,7 7,9 0,2 9,2 3,B -1,4 5,5 1,1 7,4 7,4 4,1 2,2 8,B 6,4 2,1 2,6 0,0 5,B 2,9 0,3 2,7 8,0 2,C 0,8 1,6 0,7 2,4 7,B 7,3 -1,9 9,B 3,1 -1,2 5,5 7,4 3,4 -1,4 1,0 5,C 8,5 5,9 3,5 2,C 9,C 5,2 -1,6 6,C 7,4 6,0 3,9 -1,8 8,8 1,C 6,5 8,0 7,9 3,3 6,0 -1,5 0,3 0,C 4,9 0,B 3,1 -1,4 4,8 0,C 0,B 3,4 0,5 3,C 6,2 2,B 2,1 2,B 5,0 3,5 1,9 2,3 9,9 -1,9 5,9 6,6 6,0 8,4 -1,1 3,3 7,2 3,1 7,C -1,7 9,C 4,C 0,B -1,2 0,2 -1,1 0,9 4,7 -1,9 1,5 2,C 1,8 3,7 2,B 1,B 4,3 9,1 1,6 -1,8 4,5 5,8 9,5 -1,7 7,2 8,9 7,C 1,1 4,3 -1,4 9,7 -1,2 7,0 4,1 7,8 6,C 3,5 7,3 9,C 9,6 4,0 7,6 9,8 -1,4 8,2 8,B 6,0 7,5 7,8 0,9 0,9 1,8 1,7 3,0 6,B -1,5 9,4 4,4 9,C 4,B 7,2 9,B 0,5 3,8 0,6 -1,6 8,5 8,B 8,6 1,7 8,8 3,2 8,7 8,9 4,6 8,B 3,C -1,5 -1,8 1,6 7,8 6,4 2,5 3,9 4,6 7,6 2,C 6,3 9,B 9,9 5,1 2,9 3,5 4,C 4,6 8,9 3,8 8,C 9,B -1,6 4,C -1,4 -1,2 7,9 -1,2 6,8 -1,0 2,8 -1,0 3,3 9,0 5,B 0,7 0,2 5,6 -1,6 5,C 8,2 8,7 3,C 7,9 9,2 9,2 5,B 0,B 1,2 6,0 3,C 3,7 4,0 8,1 0,4 1,4 5,4 2,9 2,7 -1,6 1,7 3,C 5,C 3,1 7,1 7,7 6,8 4,9 8,7 8,C 2,3 2,2 -1,3 4,2 -1,4 -1,9 -1,4 6,6 7,6 -1,4 0,5 3,1 1,2 5,8 3,1 3,C 2,1 5,2 4,8 6,4 0,3 7,5 -1,2 2,3 2,B 0,3 0,5 6,6 5,B -1,3 9,5 4,5 2,9 5,C 3,9 3,C 2,0 -1,3 1,2 -1,8 4,2 4,7 4,2 8,0 1,B 9,B -1,0 6,1 -1,4 6,1 7,7 4,3 8,5 7,B 6,4 8,6 1,8 5,6 8,B -1,8 -1,2 6,C 4,8 7,0 6,1 6,9 1,6 0,1 3,7 8,7 9,0 2,0 4,5 2,7 4,9 2,1 4,1 3,C 6,9 0,4 5,2 7,5 4,2 9,4 6,C 3,6 8,B 9,9 7,B 7,0 5,1 3,4 7,6 0,2 9,2 -1,3 -1,6 9,8 5,2 2,7 -1,0 -1,4 2,3 3,7 0,B 2,2 1,2 0,7 1,7 7,B 7,C 6,3 5,8 9,2 9,8 0,0 3,1 1,2 -1,3 -1,3 5,7 -1,7 7,B -1,0 1,7 -1,9 -1,8 6,C -1,3 4,B 4,7 9,C -1,0 9,7 -1,0 -1,3 6,6 8,B 8,7 2,B 6,2 9,C 4,1 1,B -1,1 2,7 2,2 -1,4 -1,5 3,8 -1,7 0,8 -1,8 2,0 -1,0 3,0 9,6 5,9 -1,6 7,B 8,C 9,0 4,B 5,5 3,6 9,8 4,6 7,6 9,C 4,3 5,4 5,C 0,2 7,9 2,7 5,4 -1,9 3,7 8,9 3,6 3,6 0,8 -1,5 7,0 7,5 -1,2 6,5 7,1 3,C 5,4 -1,7 8,1 3,5 2,7 -1,7 -1,1 -1,3 3,7 2,C 1,8 1,2 -1,6 0,3 -1,0 -1,8 7,B -1,0 1,1 -1,3 4,C 6,B 9,B -1,8 0,8 2,C 0,0 5,7 3,6 9,3 0,B 5,2 -1,9 5,4 5,9 9,7 -1,5 3,B 3,3 9,C -1,0 5,C 2,8 8,4 -1,4 4,C 8,C -1,8 7,B 2,7 4,B 7,6 2,8 0,C 3,0 4,5 5,3 0,7 2,7 8,C 2,6 0,C 9,9 0,7 2,3 3,9 4,0 5,B 3,4 3,1 2,5 6,C 1,8 8,C 4,B 0,2 4,2 3,8 3,3 7,2 -1,8 2,5 5,0 -1,6 4,2 -1,4 6,B 1,3 9,6 2,B 4,C 1,B -1,2 3,1 4,B 5,B -1,6 6,B 9,B 7,9 7,7 -1,5 8,4 2,6 1,4 3,C 0,C 3,8 8,6 4,5 7,7 0,B 1,9 9,1 8,1 2,1 6,3 4,5 3,3 9,9 0,0 -1,7 6,C 0,C 0,B 2,1 -1,5 8,8 8,6 9,3 -1,2 -1,5 -1,7 8,9 6,1 3,C 8,B 4,C 9,1 -1,4 3,5 6,1 5,8 -1,1 2,7 5,9 8,5 -1,9 3,4 3,4 -1,3 5,1 5,C 4,8 0,5 6,7 7,7 -1,2 4,4 3,5 0,7 -1,1 4,B 5,6 -1,8 5,8 2,5 6,0 9,5 6,2 -1,2 7,7 -1,5 4,8 -1,0 3,0 -1,3 1,2 -1,5 5,2 3,B -1,3 2,9 6,3 -1,8 -1,4 0,6 -1,8 8,1 1,B 8,0 7,2 3,9 6,C -1,9 3,3 -1,5 3,C 3,6 2,9 1,1 -1,0 -1,8 -1,1 8,6 2,6 5,8 1,9 3,7 7,2 6,6 3,8 3,0 -1,3 6,4 -1,7 9,4 -1,8 2,3 6,8 0,B 7,2 -1,4 7,2 6,0 8,9 -1,1 7,6 4,2 1,0 7,B 9,8 1,C -1,9 8,6 -1,4 -1,3 0,7 4,0 7,8 -1,7 6,5 -1,7 4,5 8,3 1,B 7,C 1,B 1,8 4,1 7,7 -1,3 5,C 4,4 6,C 0,2 -1,1 -1,4 1,5 7,5 -1,0 2,5 9,C 2,7 5,B 1,6 0,0 3,9 7,C 9,6 1,9 5,8 1,1 9,2 2,B 6,4 4,3 1,C 1,3 -1,9 0,B 8,7 6,9 0,C 8,5 4,7 8,6 -1,8 6,8 -1,6 2,1 8,5 -1,3 2,4 5,B 9,B 1,4 0,B 2,0 8,B 0,C 0,2 5,C 5,0 -1,3 6,3 6,1 4,B 7,1 1,1 -1,7 6,8 8,6 9,C 9,C 6,7 1,5 0,C 8,4 -1,9 3,B -1,3 5,C -1,8 8,7 9,9 5,8 7,C 4,5 3,1 2,C 5,3 8,B 2,C 2,9 1,9 4,2 2,3 9,8 -1,2 -1,3 1,8 0,7 9,B 7,2 9,2 4,8 7,4 6,B 6,8 2,2 5,3 3,5 8,1 7,C 0,0 1,4 -1,7 2,4 -1,9 7,6 5,2 0,C -1,9 5,7 2,8 3,3 8,9 -1,0 -1,4 -1,0 6,1 2,4 -1,7 -1,7 7,9 1,6 6,3 -1,8 4,B 4,9 3,B 1,7 -1,3 -1,0 6,0 5,C 6,3 -1,6 7,2 -1,8 0,B 2,2 0,C 0,4 2,1 8,9 -1,9 1,3 3,C 3,2 0,6 7,0 2,0 -1,2 -1,3 1,C 2,7 -1,3 1,C 6,1 8,5 0,4 -1,8 5,C 5,5 1,6 -1,8 8,5 0,B 6,C 8,C 0,2 8,5 7,B 3,7 7,4 9,7 -1,8 7,6 -1,9 5,3 9,C 1,6 -1,0 -1,6 5,9 2,2 0,7 2,9 6,9 -1,7 3,B 6,C 8,2 9,B 2,5 2,C 7,B 6,6 9,4 -1,2 0,7 8,C -1,0 1,9 -1,4 7,7 -1,7 -1,9 8,5 9,C -1,3 4,5 6,9 7,B 9,8 9,B 9,9 -1,4 -1,5 2,C 8,7 3,8 -1,6 0,B 0,C 5,9 1,5 9,5 6,6 8,C -1,9 6,6 8,B 2,C 3,7 7,2 0,6 4,7 1,3 5,8 6,9 -1,4 -1,2 1,5 1,6 8,C 8,0 1,C 7,C 4,2 9,3 1,C 3,3 3,2 3,B 6,C 3,2 2,8 7,2 7,C -1,0 9,5 5,C 0,1 8,B 5,7 4,6 0,2 3,4 0,7 -1,7 9,3 -1,1 3,5 0,2 3,4 9,7 7,1 -1,6 -1,3 8,C 2,9 4,C 3,B 7,0 6,C 6,5 9,3 8,C 9,C 1,C -1,4 1,7 8,9 4,3 -1,0 2,3 -1,5 -1,2 3,C 1,8 8,1 3,2 2,0 9,0 1,B 2,9 8,0 8,6 -1,4 4,B 9,3 7,6 4,5 3,B 0,9 7,B 7,0 7,C 5,9 8,9 8,2 5,5 2,3 0,B 2,C 0,0 -1,6 8,1 6,C -1,3 1,B -1,5 9,9 6,C 4,C 1,4 9,0 8,8 3,1 1,8 8,4 3,3 2,5 7,B -1,1 3,2 9,6 6,3 -1,2 4,B 5,B 5,2 5,C 8,6 4,4 8,4 6,8 7,7 -1,6 1,3 6,B -1,9 9,6 4,0 0,B 9,9 -1,2 3,2 4,B 2,9 4,1 -1,5 3,9 6,0 9,9 3,B 6,4 8,C 9,6 1,2 -1,1 2,1 4,1 8,C 0,3 2,8 1,7 2,6 1,2 4,4 6,B 8,9 7,8 8,8 6,C 9,6 9,2 1,4 3,3 7,5 0,5 8,4 3,7 1,2 -1,0 1,3 0,0 9,6 4,8 -1,2 8,6 -1,9 9,3 4,3 7,4 -1,8 4,1 -1,5 -1,9 8,4 7,8 9,8 2,C 3,8 7,C 6,9 -1,9 -1,1 7,9 -1,9 1,9 -1,2 -1,9 0,6 5,5 3,8 -1,2 3,2 9,2 4,0 0,3 -1,2 3,7 9,9 0,7 5,B 0,3 -1,5 7,B 4,C 9,4 5,8 5,1 7,5 1,3 0,6 8,2 8,C -1,3 0,6 3,8 8,C -1,4 4,8 3,7 9,4 -1,1 7,7 6,8 8,1 -1,3 9,0 1,C -1,9 4,4 -1,5 5,0 6,6 0,B 4,7 5,9 4,9 -1,9 3,B 6,B 8,5 1,6 3,B 4,3 7,4 3,C 8,3 6,5 5,5 5,0 5,C 2,8 1,5 -1,4 -1,6 0,9 -1,0 7,C 0,1 -1,5 0,C 8,7 3,3 1,6 1,B 8,0 4,0 1,0 -1,5 0,2 4,2 0,B 7,3 -1,7 -1,2 3,7 1,B 7,2 6,9 -1,8 -1,0 0,9 -1,4 2,8 2,C -1,7 4,1 3,9 8,6 4,2 5,2 9,C -1,3 4,4 -1,8 4,7 6,9 9,5 7,4 9,5 -1,4 6,9 1,C 4,4 8,6 0,6 6,6 3,8 2,8 2,B 7,0 4,5 3,C -1,2 7,0 8,B 1,1 -1,8 5,C 8,B 0,9 -1,0 -1,5 -1,0 6,0 2,2 4,6 9,7 8,8 8,1 -1,1 9,1 0,C 7,C 7,7 6,C 1,C 6,2 3,7 8,8 -1,7 0,7 -1,1 7,C 6,4 8,C 5,8 5,2 -1,4 1,7 2,8 9,2 1,3 0,3 0,4 4,2 2,3 2,0 8,6 0,5 -1,7 9,6 -1,1 7,2 9,8 2,1 -1,9 5,7 -1,3 6,1 3,4 7,3 -1,1 8,6 9,1 2,3 3,C 4,B 3,C -1,1 2,0 -1,7 9,C 9,4 1,B 1,5 4,8 6,C 3,5 6,B 9,6 6,0 1,B -1,6 9,1 -1,7 2,6 2,9 6,9 7,3 2,1 -1,0 6,4 4,4 0,2 9,7 6,4 -1,8 -1,4 -1,4 -1,1 -1,4 1,0 1,5 3,4 -1,0 2,2 1,C 8,9 -1,9 -1,0 -1,0 7,5 5,B 4,C -1,6 3,C 2,8 5,4 9,B -1,8 7,8 7,7 7,7 2,4 7,2 1,B -1,5 -1,5 -1,8 3,8 0,8 9,1 -1,1 1,C -1,8 3,C 2,B 7,9 1,3 -1,7 9,9 8,8 3,3 9,6 8,C 4,B 1,C 6,9 8,6 8,B 8,7 9,2 9,8 6,5 -1,8 2,7 1,4 0,C 7,8 9,B 6,5 3,B -1,8 -1,9 9,6 5,B 9,7 1,6 1,5 2,B 3,2 3,7 3,1 -1,1 -1,1 9,5 3,3 0,7 2,C 0,6 0,9 8,4 5,4 8,1 1,5 6,B 9,9 9,4 -1,6 0,5 8,0 8,3 -1,4 7,C -1,2 3,3 7,B 6,9 9,B 5,6 1,7 5,9 3,C 1,3 0,7 6,8 6,9 6,7 0,2 1,2 -1,5 1,4 9,6 -1,0 9,7 8,7 -1,0 9,B 4,5 8,6 0,8 5,5 5,B 8,9 -1,8 9,9 -1,7 8,1 5,3 -1,9 2,3 -1,0 3,8 -1,9 8,1 5,4 0,8 3,2 3,C -1,0 3,1 9,B 4,7 -1,6 -1,9 4,B -1,8 0,1 -1,0 7,6 8,B -1,2 -1,4 3,5 -1,7 1,6 -1,6 -1,6 -1,9 1,2 4,2 0,3 7,0 2,7 -1,8 1,B 9,C 5,5 9,0 -1,1 6,6 4,2 2,7 -1,1 3,0 0,3 9,8 -1,7 4,0 6,4 6,9 9,B -1,6 -1,8 3,C -1,3 9,7 2,B 0,B 8,C 3,7 9,C 3,4 1,5 1,9 1,4 4,7 -1,3 -1,5 7,B 1,2 4,3 5,2 3,2 1,1 5,2 5,8 2,3 1,C 8,4 3,1 6,B -1,7 9,C 0,2 9,5 2,3 -1,6 1,9 0,1 -1,0 8,4 6,8 8,1 -1,5 2,B 1,4 5,8 6,9 -1,2 8,7 8,C 5,B 6,B 8,4 9,1 0,5 5,9 -1,7 7,9 6,3 -1,2 4,4 3,C 7,C 5,6 7,C 8,6 4,9 3,4 -1,0 4,2 8,4 -1,3 4,6 9,B 2,B -1,9 6,4 3,6 9,6 -1,5 9,B 0,8 -1,1 7,8 -1,6 8,7 5,8 8,1 6,C 7,C 1,5 8,B 8,C 9,C 3,4 5,C 4,B 7,9 2,3 9,4 -1,5 0,8 8,2 8,3 9,C 3,6 1,1 -1,7 6,2 -1,4 4,0 1,3 0,2 3,5 4,0 5,4 2,4 3,B 0,3 1,0 3,7 7,5 0,4 7,B 0,1 5,7 4,2 8,0 4,C 1,1 6,6 8,2 4,C 1,1 -1,3 9,1 9,B 8,B 9,3 -1,3 5,C 2,2 4,2 4,4 -1,3 2,0 0,9 8,C 0,0 -1,2 9,4 3,8 1,B 3,2 6,6 -1,0 -1,1 2,B 3,C 4,2 0,3 0,5 -1,8 7,9 -1,0 2,0 -1,1 4,0 2,8 8,1 2,B 6,3 7,C 6,6 8,0 3,0 0,B 3,1 -1,9 4,0 8,6 -1,7 8,6 3,9 7,5 8,4 3,5 -1,1 4,B -1,6 3,6 1,C 4,9 -1,5 2,7 1,4 9,5 8,B 7,7 6,6 6,B 5,0 2,8 4,B 4,3 7,9 -1,1 9,0 2,6 2,C 9,0 0,1 -1,7 1,3 0,B 8,3 4,1 2,4 3,7 5,B 8,0 0,0 8,0 6,3 0,3 0,7 -1,8 2,C 9,B 7,C -1,0 2,2 6,2 9,5 -1,6 -1,8 6,9 -1,2 6,7 7,2 5,C 4,5 9,3 8,C 5,5 6,4 3,C 9,7 2,3 -1,6 -1,0 9,2 9,6 -1,3 2,B 1,1 5,C 5,1 7,8 0,5 8,2 0,9 5,0 7,2 5,C 0,5 0,B 1,6 3,1 -1,3 2,B 9,B -1,7 5,2 2,B 6,2 5,6 -1,0 1,1 3,C -1,4 1,C 1,C 2,7 6,4 6,C 5,0 -1,1 9,5 5,9 0,0 5,1 5,C 3,5 4,C 5,9 -1,7 9,8 3,2 8,2 -1,0 -1,2 4,5 4,9 -1,7 -1,4 -1,1 -1,2 0,3 -1,9 8,6 9,B 7,3 -1,2 8,2 1,5 3,2 7,5 4,1 -1,5 5,6 -1,8 6,2 6,3 0,5 4,1 -1,4 3,4 5,2 5,3 6,B 1,8 0,2 -1,7 2,1 -1,7 4,4 -1,0 4,C 4,B 8,3 2,7 7,C 9,7 1,C 2,B 2,B 3,6 9,3 2,5 6,1 7,7 8,0 9,C 6,3 8,C 6,3 2,C -1,6 5,0 -1,7 4,B 1,8 -1,7 2,2 6,1 -1,8 1,0 4,2 6,7 2,0 -1,7 3,7 -1,1 -1,4 1,8 5,C 9,1 9,3 8,4 4,2 -1,3 1,1 9,1 9,8 6,B 1,C 3,2 -1,0 6,0 9,0 3,1 8,2 3,4 6,7 6,6 0,6 -1,2 4,2 7,8 5,2 -1,6 8,9 9,C 0,1 9,1 -1,7 -1,4 -1,4 2,1 -1,6 -1,1 5,C 6,8 5,2 1,1 3,5 7,0 6,6 8,9 0,0 -1,9 5,B 1,1 3,4 -1,0 -1,7 -1,0 -1,4 3,B 4,6 5,4 2,4 2,C 9,6 4,B 3,5 5,7 7,1 5,B 9,8 1,6 2,6 1,7 8,7 8,5 1,2 9,C 8,1 6,C 6,9 7,6 -1,2 8,5 4,4 7,0 -1,0 -1,1 4,8 5,7 5,4 -1,0 -1,7 2,5 8,C -1,0 -1,5 7,5 3,6 9,5 -1,2 -1,9 6,5 5,8 5,6 7,C -1,5 -1,4 -1,9 2,6 0,0 1,6 4,8 -1,1 8,0 9,B 8,5 -1,1 -1,2 7,9 0,3 9,1 0,C 2,C -1,7 -1,8 -1,4 6,3 8,B 7,2 9,5 9,B -1,8 0,5 -1,8 6,C -1,4 6,C 7,4 -1,6 8,9 8,B 3,5 9,8 9,B 1,5 2,7 3,4 2,7 6,3 2,1 4,B -1,6 3,B 3,C 2,8 2,B 8,2 6,B 3,6 4,C 5,8 2,C 6,4 9,0 -1,4 -1,3 3,6 9,B 9,0 8,C 4,5 -1,3 4,C 2,4 1,9 5,1 0,0 6,6 6,C 1,8 4,C 0,4 -1,7 5,9 9,5 4,0 9,3 8,B 6,C 8,6 4,9 0,0 7,4 7,4 6,C 1,6 0,B 6,0 6,C 2,9 6,1 9,7 2,9 3,B 5,0 -1,2 8,5 -1,1 6,3 -1,4 3,2 3,8 3,7 5,7 6,6 8,9 -1,1 4,9 9,8 -1,2 9,8 9,4 -1,1 9,9 7,4 -1,9 7,5 0,6 4,0 -1,7 8,C 4,C 6,0 -1,2 7,B 8,8 -1,8 5,1 8,1 9,1 8,6 1,5 0,8 9,C -1,4 7,6 9,3 6,9 9,3 1,2 8,8 7,C 5,1 -1,6 9,B 1,2 4,4 4,6 8,B 3,4 6,2 5,2 8,8 8,7 0,5 5,4 7,1 9,9 6,3 -1,5 3,B 0,0 6,C -1,3 8,1 1,B 4,6 3,C -1,5 7,9 3,0 5,C -1,0 8,B -1,2 1,8 7,9 4,8 -1,2 9,C -1,3 6,8 0,B -1,0 5,1 9,5 2,6 4,0 -1,1 0,4 2,4 6,5 4,0 8,B 6,1 -1,1 3,5 4,C 8,7 1,C 5,8 8,8 9,8 2,C 0,B -1,9 -1,4 3,B 5,6 9,C 3,3 -1,6 -1,6 4,C 3,1 9,B 4,9 5,C 7,7 -1,3 9,1 4,0 4,B -1,9 8,7 3,9 1,7 8,5 4,8 6,B 5,3 7,9 9,2 3,C 3,2 9,9 1,5 3,7 1,5 1,4 3,3 2,8 9,9 7,1 -1,1 9,B 3,4 7,B -1,7 6,4 6,7 1,C 7,2 7,0 2,B 3,5 4,5 7,3 1,6 0,9 -1,9 0,0 9,3 1,4 2,4 7,B -1,4 9,1 0,C 8,0 -1,8 8,7 2,6 1,3 2,3 0,3 7,C -1,0 6,B 5,2 3,3 0,2 3,6 1,8 7,2 9,C 6,6 -1,8 3,1 0,4 9,B 4,C 2,0 7,3 8,B 9,4 1,8 8,5 0,B -1,4 7,8 3,3 -1,2 2,3 -1,6 4,9 7,B 3,5 3,C 6,0 -1,3 8,0 7,B 9,5 -1,7 9,B -1,1 2,C 4,2 6,3 7,B -1,7 -1,7 -1,4 4,1 8,5 -1,9 4,7 3,2 1,5 1,C 7,1 7,2 -1,9 2,0 -1,0 8,B 0,8 4,7 0,4 -1,4 4,3 0,C 1,2 4,4 6,9 6,2 3,9 0,9 0,C 7,7 3,B 1,2 8,8 4,1 2,2 8,C -1,2 -1,0 9,8 6,B 6,7 4,C 4,9 -1,8 9,7 3,2 -1,8 2,C -1,4 5,3 8,3 4,7 -1,1 2,C 7,3 8,B 9,5 9,4 9,5 -1,3 -1,1 8,C 6,0 6,7 -1,8 9,C 5,2 0,2 3,7 9,5 7,0 9,3 -1,6 1,8 -1,0 -1,8 1,1 3,3 -1,1 -1,6 -1,0 5,8 4,9 5,3 6,6 8,4 2,1 1,B 2,C 9,3 8,6 0,1 9,0 0,5 2,3 4,3 4,9 -1,3 5,7 1,9 1,7 2,8 2,9 4,B 8,0 8,B 8,0 3,0 4,3 5,0 8,6 -1,7 5,5 2,1 -1,6 4,0 9,C 2,C 1,7 1,B -1,5 7,0 4,7 1,8 0,1 -1,7 0,1 8,4 4,1 8,6 2,2 -1,0 4,3 1,B 0,5 0,7 8,6 -1,5 5,3 -1,5 7,B 7,5 0,1 1,C 4,C 2,B 3,6 5,1 3,8 9,C 8,7 4,2 6,2 -1,5 9,C 4,9 6,0 -1,7 0,0 -1,0 8,0 7,C 8,2 9,3 1,0 7,0 1,2 2,7 4,5 5,0 5,4 4,9 9,B -1,2 2,C 4,C -1,9 7,0 4,0 4,5 2,5 6,0 8,9 -1,1 -1,4 5,6 -1,6 8,C 5,5 -1,6 -1,5 -1,4 8,5 -1,5 6,8 8,0 0,5 -1,6 9,9 4,9 1,9 2,B 3,6 3,C -1,1 1,6 9,6 4,B 3,3 4,4 0,0 0,C 2,7 4,9 2,6 3,0 8,C 5,9 4,B 0,3 7,B 1,5 9,C 4,C 4,4 0,1 2,5 -1,6 3,B 3,4 2,9 4,B 3,4 7,2 9,8 0,C 2,C 9,2 9,B 2,0 -1,2 9,3 3,6 1,B 3,C -1,5 1,2 8,2 0,B -1,9 2,C 0,5 2,9 9,0 2,2 6,C 4,8 1,C 4,4 4,9 8,0 1,C 1,2 0,9 6,6 6,7 5,8 -1,2 -1,4 4,9 1,8 6,1 -1,1 3,B -1,2 7,B 5,C 9,2 6,1 -1,4 1,B 3,3 2,8 1,B 6,0 2,0 3,1 -1,0 5,B 1,5 1,C 9,2 8,6 1,4 3,5 -1,7 9,0 -1,1 9,B 3,5 6,9 4,6 4,1 9,C 5,5 6,0 1,9 2,0 0,1 9,3 9,8 6,C 6,5 -1,5 0,7 -1,1 4,B 9,0 5,9 0,C 8,0 4,7 3,C 7,B 3,2 5,C -1,8 6,0 7,0 3,3 -1,7 0,C 9,7 -1,0 1,7 3,3 7,1 2,C 8,5 2,5 8,0 6,6 -1,2 0,C 4,5 1,B 9,5 1,C 0,0 6,C 9,6 2,4 9,5 8,5 5,7 3,4 3,8 2,B 7,3 0,2 5,B 3,B 9,5 0,7 -1,0 -1,7 3,4 6,0 3,C -1,4 7,1 8,0 6,C 4,6 9,8 8,C -1,4 0,8 -1,6 1,0 -1,0 -1,2 7,8 1,4 8,4 8,6 -1,7 6,7 8,9 2,B -1,3 0,9 1,7 6,2 5,B 7,1 -1,3 5,0 2,C 6,C -1,8 6,2 3,7 2,0 2,7 -1,4 6,6 5,C 9,9 5,7 6,B 5,1 -1,5 -1,7 -1,2 2,B 4,8 1,0 2,9 8,B 0,7 7,3 9,1 9,C 9,3 9,8 -1,3 0,B 8,3 6,8 1,0 5,B 4,B 8,9 0,8 -1,0 2,3 8,6 -1,1 7,5 1,2 -1,4 -1,2 4,B -1,0 0,4 4,6 8,C 2,6 8,B 8,3 2,9 -1,9 6,4 -1,9 1,9 5,5 2,8 2,5 -1,8 4,7 2,7 2,9 5,0 3,1 3,0 1,6 6,5 4,2 3,0 -1,3 -1,9 -1,9 8,B 1,B 9,7 5,1 5,C -1,8 8,6 4,9 4,4 4,C 7,C 3,2 4,2 -1,5 2,B 3,B -1,4 -1,0 -1,0 4,8 2,5 -1,0 6,1 5,8 9,1 1,4 -1,5 4,B 3,4 7,0 0,6 7,C 0,8 3,C -1,9 6,4 3,4 6,2 3,4 9,3 0,2 0,5 2,0 5,6 9,5 5,5 2,4 -1,8 1,7 9,B 1,2 3,3 0,9 7,8 5,8 -1,7 3,7 7,4 2,8 2,5 1,2 7,B 5,5 7,6 0,C -1,8 0,4 4,6 0,0 5,9 4,C -1,4 0,4 3,8 8,B 2,1 5,C 7,7 -1,8 9,5 1,3 4,1 3,C 2,1 0,1 -1,1 -1,6 1,1 5,C -1,1 -1,6 0,9 9,B 6,C 4,B 7,0 5,4 3,B 6,7 8,5 4,3 4,2 1,C 6,5 1,C -1,1 7,7 -1,9 7,B 9,0 7,B 1,1 7,B 7,7 5,5 6,5 9,9 1,1 0,0 -1,7 5,9 5,2 2,0 2,1 -1,5 9,B -1,3 0,7 7,5 9,7 -1,3 3,3 0,2 9,7 3,0 4,5 0,2 9,2 1,5 1,7 6,9 1,B 6,C 5,1 6,B 6,3 -1,1 2,3 7,1 0,5 2,3 1,5 9,9 3,C 7,1 1,9 -1,9 9,C 5,9 0,0 5,0 8,9 5,B -1,9 -1,3 -1,5 0,4 8,4 1,3 8,1 2,B -1,2 -1,1 9,1 -1,8 -1,7 -1,5 1,1 7,1 6,6 4,4 5,B 1,5 9,5 6,9 -1,4 5,7 7,B 5,4 2,2 3,9 7,7 2,0 2,8 1,9 0,6 7,4 0,6 1,3 -1,2 -1,9 -1,6 -1,4 2,3 3,6 6,1 -1,4 3,C 5,2 2,5 0,7 5,8 2,B 3,6 0,2 5,8 6,C 2,5 -1,0 6,1 9,0 5,5 6,1 2,B -1,8 6,3 5,6 4,C 0,4 -1,4 7,4 -1,9 2,8 2,7 -1,4 8,5 6,6 9,5 5,9 8,3 6,B 8,2 -1,2 5,8 0,3 -1,4 1,C -1,8 6,C 1,8 7,2 8,3 -1,1 9,5 5,8 3,2 -1,1 1,C 2,4 5,5 3,1 9,4 -1,7 5,3 -1,0 3,7 4,9 -1,7 5,1 0,8 8,5 -1,4 6,B 3,2 2,B 0,C -1,5 0,3 5,C 6,9 8,2 -1,1 0,7 2,3 8,9 1,C 4,5 5,C 4,B 6,B 8,7 5,5 7,6 -1,6 6,B -1,4 9,4 4,C -1,7 2,C 7,5 -1,7 2,9 8,8 8,C 1,7 -1,2 6,0 0,7 0,6 5,C 2,0 -1,1 -1,3 3,C 4,B 4,7 1,8 0,1 0,C 9,C 1,8 2,8 4,C 6,9 7,8 -1,3 6,0 -1,9 0,C 5,9 1,5 0,6 9,1 0,1 -1,7 -1,2 5,7 4,8 7,B 3,0 0,7 1,7 8,5 8,6 8,8 9,8 8,4 8,8 8,C 4,C 3,5 -1,0 -1,3 6,6 0,0 -1,1 0,B 7,9 0,6 0,0 7,0 -1,5 9,0 7,5 0,1 -1,8 -1,0 9,C 2,9 7,6 7,B 9,8 5,0 2,7 0,B 6,4 7,1 8,6 7,0 5,0 9,2 -1,6 3,B 4,5 4,B 6,2 2,B 0,0 6,0 -1,2 -1,8 8,C -1,8 1,C -1,8 3,2 4,2 2,C 0,C -1,7 8,4 7,C 0,8 6,7 3,0 4,9 7,6 -1,4 4,6 5,B -1,6 6,4 0,7 -1,1 5,C 2,C 8,C 8,6 9,3 -1,4 4,B 8,C 2,9 6,5 4,1 7,1 0,9 5,5 8,2 5,0 2,C 8,5 -1,2 8,9 7,0 -1,4 2,B 4,9 9,9 3,C 1,3 -1,3 0,7 2,2 6,3 -1,7 1,C 7,8 1,C 9,3 2,8 2,5 -1,8 4,3 1,1 8,2 7,B -1,6 6,3 9,7 8,7 5,C 6,0 8,B 9,1 -1,3 5,4 1,6 7,7 8,1 -1,4 1,B 2,8 4,4 3,C 6,1 0,B 0,1 7,1 8,9 7,6 4,5 -1,8 -1,8 5,B 5,6 8,3 4,5 -1,6 1,3 7,4 0,5 1,2 9,6 8,1 -1,2 6,1 3,2 7,6 5,B 4,5 -1,3 1,9 -1,7 2,0 9,7 3,1 8,0 7,1 7,2 3,3 -1,1 -1,9 -1,1 8,2 4,4 -1,5 4,4 9,B 1,6 6,C 1,B 3,C -1,6 -1,7 8,5 3,1 0,B 3,1 2,C 6,4 5,7 1,6 5,0 3,5 4,1 -1,3 7,B 7,7 3,5 9,2 -1,4 9,1 -1,3 3,3 1,8 -1,7 3,0 9,C 7,6 -1,2 -1,8 8,C 4,C 4,5 2,1 9,2 9,4 3,C 3,6 0,1 -1,7 -1,7 4,8 8,8 1,8 4,4 2,C 7,0 4,8 2,4 8,6 7,0 -1,1 1,B -1,6 2,C 4,B 6,1 5,5 0,7 9,8 -1,3 4,B 7,3 3,4 2,B 0,2 -1,1 5,B 7,5 1,5 2,4 8,8 1,4 2,6 0,7 1,1 2,B 8,C 8,C 0,4 6,4 5,4 8,5 2,B -1,8 8,C 7,C -1,2 8,C -1,3 3,C -1,2 7,7 1,B 3,1 -1,8 0,5 6,5 5,8 4,1 4,7 -1,1 8,9 3,1 4,4 -1,0 4,5 8,2 8,C 7,5 2,4 8,C -1,6 6,1 5,8 4,5 7,B -1,2 8,3 7,6 -1,9 8,5 8,1 0,C 9,5 -1,6 -1,8 3,0 0,C 6,3 7,5 -1,5 5,1 6,C 8,8 1,6 3,0 6,7 3,C 2,0 1,C -1,0 -1,3 -1,5 9,9 -1,0 8,9 -1,7 0,5 7,5 1,2 -1,0 6,2 8,8 3,3 6,4 5,C 8,5 9,B 0,B 4,5 7,5 2,1 2,B 5,3 8,4 7,5 8,6 -1,1 0,3 1,9 9,B -1,5 -1,4 4,C 4,2 4,C 4,2 -1,9 8,B 7,B 7,5 -1,3 5,7 5,8 6,C 9,5 7,2 3,9 -1,7 4,9 -1,6 7,9 2,C -1,5 5,0 5,5 3,3 1,3 2,1 4,C 8,2 4,3 -1,8 -1,9 3,1 1,2 5,2 7,3 8,5 8,9 4,4 9,B 6,C -1,1 -1,7 3,7 3,9 -1,3 -1,2 -1,7 4,B 4,0 8,8 0,3 5,1 -1,9 -1,0 2,6 9,8 5,1 8,9 1,B 0,5 6,5 0,C -1,2 8,C 6,0 2,5 8,9 5,B -1,3 4,6 4,7 0,1 7,9 8,C -1,7 3,4 6,1 -1,4 1,4 3,4 5,0 -1,3 7,C -1,7 2,5 0,8 9,8 3,5 -1,9 -1,4 8,C -1,0 9,8 6,7 2,5 4,0 2,6 -1,7 6,4 3,6 0,C 9,4 3,7 0,1 9,4 -1,1 5,7 8,4 -1,5 6,6 8,C 0,4 0,6 3,6 8,3 -1,6 7,5 -1,3 3,9 9,6 0,2 6,3 9,C -1,6 4,B -1,1 3,7 9,6 4,6 9,6 2,9 2,1 -1,1 -1,6 6,5 1,7 1,9 3,1 3,6 1,8 7,8 -1,8 4,3 8,2 -1,5 0,C 3,5 9,B 7,1 0,9 7,7 9,7 1,1 0,1 8,8 8,2 3,4 8,3 -1,6 7,2 0,7 -1,9 7,5 2,6 0,6 3,1 0,0 2,9 8,1 6,6 8,4 3,B 6,9 6,2 1,B 9,1 1,B 8,6 -1,2 -1,9 5,5 5,B 2,7 -1,0 3,2 0,9 -1,4 4,5 -1,6 -1,4 7,6 4,6 2,1 8,2 7,8 4,5 0,C 9,4 -1,9 3,2 3,2 5,8 6,2 -1,4 0,0 5,9 -1,9 3,C -1,0 0,2 5,5 0,C 1,7 0,B 9,B 6,0 9,2 0,4 6,8 8,9 3,5 3,4 0,8 0,1 1,3 5,4 9,7 1,2 4,B 5,7 -1,9 3,6 -1,1 5,C -1,2 -1,1 9,6 0,7 -1,3 -1,3 -1,4 6,9 5,B 8,3 6,4 6,B 8,B 5,0 6,9 9,6 -1,9 3,C 3,3 1,3 3,B 5,4 9,3 2,7 -1,9 3,7 -1,5 6,9 7,5 7,C 3,3 1,7 6,5 7,2 8,3 7,8 1,C 0,8 1,7 3,9 6,B 6,4 7,7 1,8 0,C 0,C 3,5 -1,4 3,C 9,8 4,B 0,7 0,8 1,6 1,5 6,B 3,C 1,C 8,7 2,C 9,7 1,6 1,0 1,4 5,0 0,B 2,B 3,C 0,2 3,2 0,9 8,0 1,3 0,7 6,1 5,3 7,8 -1,5 1,9 -1,8 5,B 5,0 4,4 3,5 7,6 2,9 2,B -1,6 7,1 -1,1 0,2 -1,0 -1,3 1,6 -1,2 -1,1 1,5 -1,5 -1,5 9,C 0,4 2,C 0,B 8,B 3,2 -1,9 3,5 2,B -1,2 7,B 5,6 2,6 0,B 3,5 3,5 -1,1 0,3 3,3 0,8 3,5 6,8 0,9 2,C 5,8 7,6 4,2 9,3 -1,6 9,4 8,6 7,6 -1,4 4,C -1,4 0,0 9,5 9,4 7,8 -1,0 -1,9 7,7 -1,8 4,7 0,8 -1,9 0,7 -1,9 -1,6 1,2 6,9 -1,2 9,B 0,B 9,6 2,C -1,1 1,B 2,6 9,3 3,8 8,1 8,8 6,1 -1,4 5,4 -1,4 -1,0 7,B 7,9 3,9 6,7 2,B 9,C 7,3 -1,8 -1,6 7,2 8,C 0,C 3,C 4,C 9,5 0,2 1,7 -1,7 9,2 0,5 8,B -1,7 5,1 -1,5 -1,4 0,4 4,3 9,6 -1,4 2,7 1,C -1,5 3,6 4,7 8,C 7,6 -1,7 0,C 4,0 -1,0 6,5 2,C 1,2 8,B 5,8 2,4 -1,6 -1,3 1,2 4,C 7,4 4,B 9,B 4,6 7,0 3,B 2,3 -1,2 2,3 8,6 -1,2 -1,6 -1,6 -1,7 0,5 -1,0 6,0 7,C 9,7 4,B 6,9 7,B 1,B 1,2 8,8 7,B 4,B 4,7 0,1 9,7 0,1 5,9 4,B 5,C 5,B 6,B 3,B 2,7 8,1 1,B 8,9 6,5 -1,2 0,B 6,2 9,C 6,1 5,9 4,5 1,9 6,2 6,B 5,B 6,3 0,7 7,3 -1,7 6,C -1,6 2,8 9,7 4,9 7,6 -1,6 2,C 5,6 -1,0 0,B 9,B 6,4 9,9 2,3 -1,8 7,5 6,8 9,9 -1,4 6,5 2,1 6,9 5,3 0,0 3,7 5,8 5,5 -1,7 4,C 9,6 0,0 -1,2 7,5 -1,7 2,6 3,4 8,B 8,7 2,3 -1,6 9,2 2,3 7,7 -1,9 6,6 3,5 8,1 5,3 -1,1 6,B -1,7 3,B 1,2 0,4 5,9 -1,7 2,5 9,8 8,3 3,9 1,C 3,1 6,B 6,B -1,7 3,8 5,B 1,0 -1,9 7,C -1,9 4,6 -1,2 4,B 4,9 2,1 2,1 -1,5 0,2 3,9 -1,7 7,3 -1,7 3,4 0,C 4,8 8,4 -1,7 1,0 -1,9 8,6 9,5 9,8 8,9 3,9 9,7 1,B 6,C 1,B 0,9 3,6 8,C 1,2 -1,0 2,0 2,2 8,C 4,9 4,9 -1,7 1,5 2,C 0,1 7,3 1,7 8,B 8,7 0,9 2,1 2,3 4,2 9,6 4,2 1,4 8,C 1,7 4,5 -1,6 7,2 2,C 2,8 7,C 7,9 2,9 3,B -1,1 2,1 9,8 -1,8 -1,3 -1,2 -1,5 5,4 -1,4 -1,6 2,C 2,8 4,C 1,C 9,8 1,3 5,6 6,B 7,8 8,4 5,7 7,7 4,8 6,C 4,6 7,B 4,B -1,6 5,8 5,C -1,2 4,8 5,B 5,C 9,5 7,B 3,B 0,C 8,B 6,0 -1,9 9,3 2,C -1,3 6,4 8,6 2,8 9,4 7,4 1,6 -1,1 0,5 1,5 6,9 3,5 7,C 4,7 3,2 0,B 4,C 9,4 1,0 2,0 5,4 3,B -1,0 1,C 7,1 8,2 -1,5 8,B -1,3 2,C -1,3 8,9 -1,8 5,B 2,2 7,3 -1,3 7,0 4,0 -1,4 8,8 4,3 0,8 -1,8 0,C 0,B 7,1 9,8 8,B -1,1 2,7 1,2 -1,0 5,4 5,3 7,C 2,6 4,1 7,4 -1,5 3,B 6,1 0,4 7,9 7,1 -1,1 2,9 8,5 -1,0 2,C -1,9 5,B 5,6 -1,7 6,0 3,4 0,2 3,C 4,B -1,3 8,0 4,3 9,0 5,C 0,5 2,C 3,7 4,9 -1,8 4,8 5,C 9,3 3,5 4,B 8,4 5,2 -1,8 2,7 6,0 1,5 3,4 2,1 9,1 7,0 -1,3 4,5 8,5 -1,9 -1,3 -1,0 5,C 3,C 6,C -1,0 7,7 3,0 3,2 -1,5 6,3 6,6 -1,9 5,9 9,6 8,5 5,B 9,C 8,4 4,1 4,B 0,1 5,5 5,2 9,2 9,7 9,0 -1,6 5,8 -1,6 5,5 0,3 0,B 5,4 0,C 7,B 0,C 4,6 -1,4 -1,3 4,0 9,2 -1,9 4,C 7,C 2,9 -1,0 6,1 9,7 1,1 0,9 3,5 5,3 1,B 6,B 3,C 4,9 -1,0 9,4 4,5 2,9 0,3 -1,9 9,0 0,5 4,4 4,5 5,7 4,5 8,C 7,0 3,0 -1,3 8,0 1,3 -1,9 6,7 6,7 5,2 9,3 9,7 3,9 5,1 -1,9 3,5 7,3 -1,9 5,B 7,3 2,0 0,6 7,B 7,B -1,2 7,C 5,B 7,0 8,B -1,8 -1,2 -1,3 2,B 9,1 6,C 6,6 1,8 4,B -1,6 2,8 2,8 5,B 5,0 3,0 -1,8 0,B 8,C 5,C 8,5 6,9 5,B 8,7 4,1 1,8 0,9 1,4 0,4 5,4 7,3 3,B 5,9 -1,8 2,2 -1,0 5,1 7,0 9,5 -1,0 -1,0 1,5 9,6 1,4 -1,6 0,6 -1,0 1,B 3,7 5,C 7,B 9,0 -1,4 2,B 1,8 5,B -1,4 9,2 7,3 4,4 6,6 2,5 -1,5 7,4 5,B 2,0 8,1 5,2 3,4 8,3 8,3 3,0 0,B 7,C 5,C 4,B 9,7 7,9 5,9 5,6 1,C 7,1 5,5 7,4 5,4 7,1 8,2 8,5 -1,4 9,1 9,4 4,9 5,C 8,C 8,8 9,8 4,3 6,6 3,4 -1,7 6,C 2,8 0,1 7,2 6,2 1,7 -1,0 1,8 -1,7 3,6 1,B 6,B 7,B 8,4 1,1 4,5 1,B -1,0 4,4 -1,6 7,1 6,7 2,4 7,C 4,7 0,1 7,B -1,3 7,7 6,B -1,1 0,B 4,C 8,C 0,8 1,B 7,2 7,B 4,0 9,6 6,B 7,6 -1,2 9,8 8,2 3,C 4,0 6,8 5,5 -1,1 9,0 5,B 6,7 5,7 9,4 4,5 -1,8 5,B 7,8 0,5 1,9 0,2 9,0 9,5 9,1 7,1 0,0 5,0 2,C 4,4 4,B 3,6 -1,7 9,C 9,2 4,0 -1,0 -1,4 2,C 6,5 4,1 1,7 4,0 9,1 3,0 7,6 9,0 5,C 1,B 7,8 9,8 2,8 -1,2 6,B 0,B 7,4 -1,3 7,2 5,5 2,9 4,5 2,0 4,B 9,C -1,0 4,9 7,8 0,8 2,7 5,B 1,B 2,7 0,2 -1,8 2,3 4,6 3,C 6,C 2,6 5,8 1,4 5,5 2,6 -1,6 2,0 2,9 -1,1 2,2 4,8 4,1 7,9 9,9 9,3 8,0 8,8 -1,2 4,3 7,7 -1,1 -1,3 -1,8 9,3 8,1 -1,3 -1,3 9,9 0,6 7,7 0,B 1,1 5,3 2,B 6,4 6,C 3,4 2,9 8,C 4,C 3,5 7,6 5,4 4,0 9,B 6,C -1,0 9,3 9,C 3,9 5,7 8,3 -1,8 8,6 5,B 0,4 0,2 1,1 2,2 3,9 3,2 3,8 5,C 0,8 9,C 3,7 6,0 7,8 7,4 8,8 0,C 6,7 9,C 9,2 3,1 3,B 2,C 1,B 8,8 5,C 7,7 5,7 7,3 7,6 6,0 -1,1 8,B 7,7 0,6 3,C 3,9 4,C 4,5 6,C 1,3 9,9 1,C -1,9 4,B 9,3 8,1 2,B -1,0 7,2 9,B 1,B 6,7 8,7 7,2 7,0 4,5 -1,9 4,2 3,B 6,6 0,5 4,C 9,B 1,6 3,C 9,0 7,9 9,8 5,2 -1,0 8,8 0,B 3,0 0,9 0,7 -1,9 -1,4 7,2 7,9 2,8 2,0 2,7 3,4 -1,8 2,1 6,B -1,5 3,2 4,6 -1,8 -1,6 -1,9 2,9 -1,6 0,4 4,B 7,0 4,5 0,7 1,5 -1,3 -1,0 8,C 8,C 0,5 1,3 8,C 2,1 1,2 9,3 2,1 8,5 -1,3 -1,4 6,2 3,7 7,3 1,5 2,C -1,6 9,3 4,9 0,0 4,2 0,5 5,6 -1,4 9,C 9,7 8,5 3,B 6,B 7,2 -1,1 -1,7 3,8 8,8 6,9 -1,0 9,B -1,9 3,7 8,1 5,1 2,C 9,2 -1,7 1,0 2,5 -1,8 -1,0 -1,7 -1,5 5,3 5,C 3,2 7,B 4,1 7,1 8,7 4,3 9,C 5,C 5,5 3,4 7,1 -1,7 -1,2 0,4 1,6 3,C 2,1 9,4 7,0 -1,0 3,1 4,0 -1,9 4,5 9,5 1,4 9,C 9,C 5,C -1,3 1,0 9,9 7,B 5,C -1,7 1,C -1,5 2,C 9,B 4,8 -1,4 1,2 -1,5 2,9 4,8 2,8 8,3 2,B 4,3 1,B 5,5 8,3 7,7 7,2 3,8 8,2 7,8 -1,8 8,B 6,2 -1,4 0,6 6,9 -1,9 9,4 1,5 5,6 8,6 1,4 0,6 8,9 6,5 6,5 9,B 1,B 2,B 8,C -1,6 8,9 5,5 5,0 1,B 8,5 5,B 8,1 -1,0 5,5 9,3 6,5 7,0 5,6 1,2 5,1 5,B -1,0 -1,6 0,3 4,0 8,3 -1,7 4,C 4,9 4,1 7,7 7,B 2,6 7,8 0,4 -1,3 8,6 4,4 0,0 7,7 -1,4 9,5 -1,9 4,3 4,C 0,9 5,C 4,3 1,8 -1,0 9,0 1,6 6,3 1,3 5,B 3,B 9,B 3,C 1,0 -1,1 3,C 4,1 9,B 6,6 8,B 6,2 1,B 9,6 1,5 7,6 9,3 -1,2 1,B -1,5 3,B 2,2 1,8 0,7 2,B 2,7 9,6 0,0 5,2 5,5 1,B 9,C 2,5 5,C 8,B 5,4 3,2 -1,4 0,3 1,4 4,8 5,0 3,7 -1,7 7,9 5,9 9,4 7,9 0,6 6,4 -1,3 2,8 -1,7 6,9 1,6 0,3 -1,5 -1,5 9,9 5,0 1,8 5,0 -1,7 -1,0 8,6 4,0 3,1 -1,1 -1,0 7,4 8,4 7,4 4,1 1,6 7,3 9,B -1,5 4,B -1,3 -1,5 1,8 5,7 9,2 -1,9 8,0 2,B 3,C 8,1 1,2 2,3 7,3 -1,6 -1,9 8,1 0,8 9,0 0,0 7,C 0,5 6,C 9,2 3,1 8,0 2,8 8,7 1,2 -1,8 5,9 8,8 7,B -1,0 7,5 7,7 3,2 5,B 7,0 3,9 0,C 2,8 2,C 5,1 4,B 3,2 4,8 8,B 0,0 4,9 3,9 -1,8 7,8 0,B 3,4 9,1 1,8 6,C 8,B -1,7 5,8 -1,3 -1,4 -1,0 4,0 7,8 5,6 -1,6 1,9 -1,2 3,B 6,B 0,1 1,B 1,7 7,0 -1,2 -1,1 0,4 8,4 2,6 8,8 -1,4 -1,8 -1,5 6,B 2,4 4,3 4,8 -1,6 0,8 2,8 2,C 6,1 2,0 1,6 4,B 3,4 -1,5 -1,3 1,1 4,6 1,4 7,0 5,4 5,C 9,2 0,5 9,B 0,7 5,7 4,0 -1,4 -1,4 2,6 4,8 3,1 9,2 5,3 -1,5 -1,6 7,C 6,B 4,8 6,6 -1,0 3,0 7,C 9,8 1,B -1,6 3,B 7,3 -1,4 3,B -1,6 9,6 6,1 -1,3 0,5 -1,8 8,8 -1,9 -1,1 1,3 -1,3 4,C 7,8 7,2 5,9 7,8 5,4 -1,0 -1,3 7,B 3,B 9,1 3,B 8,C 0,2 6,4 8,6 -1,2 3,1 -1,3 9,5 9,C 0,1 -1,4 2,B 9,2 -1,3 7,2 3,3 6,B -1,2 8,C 7,6 8,7 5,4 6,6 0,B 0,B 4,3 7,7 7,3 3,5 5,6 3,6 6,4 7,2 6,1 4,2 1,4 1,5 9,6 6,7 -1,9 9,C 9,6 -1,0 6,0 3,6 -1,9 -1,4 3,2 5,B 9,0 7,2 6,B -1,9 6,5 -1,3 -1,2 -1,3 8,5 4,6 5,B 2,5 9,B 1,B 9,B 2,C 3,B -1,7 0,C 1,6 -1,8 -1,7 -1,5 8,2 -1,1 2,B 8,B 3,B 3,0 7,3 5,4 9,0 7,1 9,B 1,B -1,0 9,7 4,0 7,9 1,0 4,5 -1,8 7,1 6,C 3,0 6,3 4,0 -1,6 6,8 -1,6 2,0 4,9 -1,0 -1,6 8,1 -1,2 5,B -1,3 9,1 8,C 5,9 0,5 6,8 3,2 -1,2 5,1 -1,1 2,2 5,8 8,9 3,B 6,2 3,7 7,6 1,1 -1,9 6,6 9,1 7,2 7,C 5,4 6,3 5,0 9,9 8,B 6,4 5,1 4,9 0,5 -1,7 2,7 4,8 9,C 6,B 0,0 7,7 8,5 3,7 0,C 7,B 5,C 7,0 5,2 8,B -1,9 3,C 9,1 9,1 1,9 9,9 -1,9 5,1 3,6 6,8 4,B 0,8 3,4 -1,1 -1,1 7,C 1,6 -1,7 7,B 3,7 1,C -1,2 4,6 9,B 0,3 6,5 2,2 -1,8 6,C 8,1 1,B 7,7 1,6 -1,8 -1,2 4,2 9,B 4,4 3,C 8,1 2,7 8,C 8,C 9,5 9,8 4,C 7,6 6,9 -1,8 4,1 9,4 6,8 -1,0 -1,8 0,6 9,6 2,3 -1,3 8,5 3,5 7,C 4,7 0,4 5,6 8,1 -1,2 6,B -1,0 4,B 1,6 4,C -1,8 -1,8 -1,4 -1,8 9,8 -1,9 3,3 3,B 8,0 -1,8 0,3 6,2 8,6 2,C -1,6 6,4 8,3 4,B 8,C 9,2 8,9 4,3 1,2 6,0 8,4 9,5 -1,6 0,B 9,3 9,1 5,3 8,8 4,B 4,B 7,7 4,5 4,7 0,8 0,9 8,2 4,C 4,7 -1,6 -1,3 3,1 -1,5 -1,4 0,8 5,3 -1,8 4,6 0,6 3,C 6,B 5,5 7,3 7,B 0,2 4,3 2,8 6,3 9,1 -1,6 9,3 7,7 9,8 -1,3 -1,5 4,B 3,3 9,5 -1,2 6,B 6,2 8,C -1,6 2,1 3,9 6,0 3,1 4,0 9,1 -1,7 1,0 -1,5 5,3 -1,4 3,B 8,0 2,0 5,3 5,5 6,3 5,B 6,C 2,4 -1,8 1,8 0,4 1,B 7,8 1,3 4,5 8,1 0,6 -1,2 8,2 5,0 -1,1 5,9 5,B 8,B -1,1 1,3 8,8 1,C -1,9 -1,5 1,4 6,5 -1,0 7,3 7,6 6,B -1,2 5,0 0,C 4,7 6,2 1,B 8,5 7,2 8,7 4,4 7,B 5,4 1,8 1,B 4,9 -1,8 -1,5 3,B 8,3 4,C -1,7 4,1 4,4 3,C 3,9 7,6 3,1 2,6 4,8 3,C 8,B 7,8 3,B 0,0 9,9 4,C 7,4 4,B -1,9 1,2 1,B 8,1 8,C -1,6 3,B 0,5 8,C 5,C 7,B 0,C 6,5 6,6 0,7 8,5 8,9 6,3 1,3 4,C -1,6 6,8 9,6 8,0 -1,1 7,B 3,1 0,2 5,B 0,3 4,7 -1,7 -1,7 5,4 7,6 2,7 1,8 8,2 7,5 6,2 0,4 8,B 6,3 4,C 5,5 1,5 1,6 0,6 -1,1 5,C -1,4 8,6 -1,3 -1,8 -1,3 5,B 1,2 -1,3 0,1 1,4 8,7 4,5 5,4 -1,5 2,C 7,1 9,3 5,2 -1,7 6,B 1,7 1,B 7,C 1,6 0,4 5,C -1,8 7,8 2,C 2,0 1,0 0,B 6,6 8,9 -1,2 -1,4 -1,8 1,4 3,5 8,0 0,4 5,0 5,B 3,C 6,7 -1,5 5,3 7,6 2,2 9,4 3,4 -1,3 3,0 1,8 7,7 1,3 -1,2 -1,1 7,B -1,8 4,1 8,B 5,B 7,B 6,4 7,4 -1,0 9,7 3,0 7,2 6,4 3,9 8,9 3,C 4,0 4,1 6,3 0,3 6,7 3,B 6,2 6,6 0,9 2,C 8,0 7,4 -1,8 6,1 8,0 -1,4 0,7 6,0 1,3 7,0 -1,3 5,0 2,7 3,0 6,5 -1,6 -1,6 -1,0 2,6 5,B 9,3 -1,4 2,B -1,7 4,0 3,7 5,9 -1,2 0,0 -1,7 -1,8 3,B 8,B 9,C 7,5 4,1 0,1 -1,4 8,0 -1,8 4,C -1,5 -1,1 -1,9 6,2 9,3 -1,1 0,C 0,2 3,5 1,C -1,2 -1,0 7,6 0,3 9,2 6,2 9,2 8,6 0,6 1,0 3,B 2,0 0,C 7,0 1,3 8,9 1,8 7,9 4,0 8,B 1,B 0,8 -1,2 0,C -1,5 2,2 1,1 6,4 8,4 3,0 7,5 -1,8 -1,5 1,B -1,3 0,4 6,C 6,B 9,0 -1,6 9,8 7,3 8,C 6,C 5,3 5,6 7,7 6,1 4,4 7,7 8,C 6,8 8,6 1,5 5,4 4,B -1,4 7,8 3,8 -1,8 3,C -1,9 2,2 8,B 2,2 3,9 6,B 9,7 -1,0 -1,0 7,8 2,6 7,B 7,2 4,0 1,B 9,6 8,9 5,C 1,B 4,B 2,4 1,2 -1,8 -1,7 3,C 8,1 1,B 6,1 7,B -1,1 7,2 5,1 9,4 5,9 2,3 4,C 3,7 1,6 9,6 8,C 4,4 9,3 0,9 7,2 5,1 -1,6 0,0 9,8 5,C 4,3 -1,4 0,6 3,6 -1,6 8,1 0,6 2,2 8,1 4,2 1,C 1,4 3,2 9,9 -1,5 1,B 7,1 5,7 4,B 3,5 0,6 -1,0 5,9 4,3 8,5 7,C 8,C 3,C -1,1 7,C 6,C -1,2 2,2 2,5 6,3 8,B 3,1 8,4 9,6 4,B 2,3 4,4 -1,1 8,2 -1,4 -1,6 -1,4 3,C 7,5 9,6 8,0 0,1 3,9 -1,0 -1,4 2,B 9,4 -1,6 6,5 2,2 -1,5 2,8 8,5 9,B 0,4 2,C -1,5 4,2 1,C 7,C 2,0 7,B -1,6 6,5 4,0 5,4 1,7 6,6 8,C 9,0 7,8 3,B 1,C 9,0 2,3 2,8 1,B 3,1 -1,8 5,6 4,7 2,7 2,5 4,B 5,2 0,2 4,0 8,6 9,9 2,C -1,8 0,4 7,4 2,6 4,B 0,2 -1,5 -1,7 9,6 5,C 9,4 5,5 9,0 6,1 9,B 8,3 2,B 3,7 6,5 3,3 -1,7 0,6 5,7 6,0 2,2 2,3 6,4 4,B 5,1 2,5 7,C 4,0 9,C 1,0 5,2 7,7 4,8 -1,4 7,9 3,0 -1,6 -1,0 2,8 9,5 0,3 7,7 0,3 7,5 7,3 1,B 6,5 7,1 6,6 0,C -1,5 -1,5 -1,8 -1,2 7,5 -1,7 1,0 9,9 -1,9 -1,5 2,C 6,6 1,4 2,5 7,C 8,0 0,B 3,C 2,4 8,4 1,C 4,9 -1,7 -1,4 8,2 8,5 6,B 5,B 9,B -1,4 6,0 4,1 3,C 6,1 6,6 2,9 -1,5 8,8 4,C -1,6 9,C -1,6 1,9 7,C 3,8 4,B 3,C -1,5 6,9 0,6 -1,2 5,3 1,B 1,8 5,4 -1,5 6,3 -1,3 2,6 0,9 9,9 -1,1 6,1 5,0 6,3 8,B 9,4 -1,9 1,9 -1,8 3,3 -1,8 0,B 3,B -1,3 4,2 8,8 -1,3 7,5 7,2 5,4 -1,9 3,C 9,1 1,C 9,4 2,9 0,0 -1,0 2,0 2,4 9,C 7,B 2,6 8,5 7,5 9,5 2,5 -1,3 -1,9 -1,4 8,8 4,C 2,C 4,1 9,9 -1,9 -1,4 3,5 0,C -1,9 2,B 7,7 -1,0 3,3 -1,9 1,0 9,2 -1,1 -1,6 5,B 0,C 0,0 8,8 6,C 2,9 1,9 1,B 7,0 -1,6 2,3 3,8 0,4 1,8 3,1 3,B -1,7 9,2 6,8 0,2 3,6 -1,2 0,4 0,9 -1,0 -1,7 -1,0 7,C 7,1 5,B -1,4 6,7 7,0 2,5 9,8 -1,2 0,B 0,8 -1,5 1,6 3,C 1,2 7,4 6,B 8,8 0,5 6,1 2,6 2,4 7,C 5,3 3,4 0,8 4,4 2,7 1,8 2,4 -1,6 -1,3 -1,1 -1,2 -1,0 8,4 5,C 2,7 8,7 2,8 -1,3 8,B -1,0 0,6 0,6 1,B 6,0 6,5 9,C 3,B 1,8 2,B 6,0 5,3 -1,2 3,4 1,3 5,2 6,9 3,8 2,B 6,C -1,2 3,C -1,7 -1,0 1,2 5,B -1,7 5,5 9,4 5,6 2,B 7,7 7,1 6,0 1,6 3,5 8,3 -1,1 -1,4 5,B 2,C -1,0 9,B 7,B 6,2 4,3 8,5 9,1 3,5 -1,4 5,2 1,5 3,B 9,C 9,4 7,B -1,8 7,8 3,1 5,4 9,9 9,9 8,8 3,3 5,C 7,0 9,0 -1,2 3,C -1,7 8,5 -1,2 0,B 3,6 4,B 5,7 2,0 8,0 9,B 0,2 7,9 1,5 1,0 -1,2 7,C 3,2 2,8 -1,9 8,8 8,0 2,9 -1,8 4,7 4,9 7,4 9,6 4,B 0,C 9,5 7,6 3,5 6,C 8,7 6,6 -1,4 -1,9 8,3 8,2 4,2 3,C 0,3 9,2 8,C -1,5 -1,5 6,6 4,4 2,4 7,6 2,2 -1,2 5,3 9,B 6,3 7,6 -1,5 9,C 8,B -1,6 -1,6 -1,5 6,B -1,2 2,C 5,3 -1,7 2,9 2,C -1,9 4,7 5,C 8,B -1,1 7,1 4,8 -1,0 7,2 5,7 1,B 3,9 7,5 -1,8 7,9 0,9 6,1 8,C 0,9 -1,4 -1,9 0,3 1,6 9,6 9,C 8,3 7,C 2,C -1,2 3,1 3,C 5,0 1,8 6,2 0,8 3,C 2,2 2,9 6,5 -1,7 9,1 -1,1 0,4 9,6 6,B 8,9 2,3 1,1 8,6 1,B 9,7 8,4 -1,5 0,0 2,9 7,1 3,7 7,B 3,B 5,7 2,4 3,6 3,1 0,B 9,C 2,8 -1,4 9,0 -1,2 8,C 6,1 5,3 2,4 4,1 1,4 7,4 0,8 7,7 -1,1 3,8 6,9 2,4 5,0 6,2 6,0 6,C 3,C 7,B 6,0 3,7 9,4 0,5 -1,1 4,6 2,6 2,4 7,8 5,C 2,B 3,1 0,1 1,1 8,0 9,C 8,5 7,9 0,6 5,1 5,5 3,9 6,C 5,5 -1,4 9,C 8,6 5,5 -1,7 5,8 1,B -1,6 5,9 1,9 6,2 3,5 6,B 5,C 6,2 -1,4 9,C -1,2 3,6 -1,6 7,B 4,5 -1,0 7,5 1,5 3,2 6,5 3,0 2,B 0,1 1,2 8,2 -1,9 5,0 9,1 0,B 8,8 4,3 7,3 1,C 7,6 7,1 -1,2 4,8 7,1 4,C 2,8 -1,7 0,C 5,6 3,C 5,5 1,C 4,9 -1,5 0,0 2,6 8,B -1,5 6,8 6,2 4,9 4,8 -1,4 -1,5 1,5 4,2 5,6 1,0 0,C -1,6 1,9 3,2 -1,2 9,2 3,8 1,B 9,C 5,C 4,1 3,7 3,B 0,B 1,B 3,7 4,1 1,1 -1,7 5,C 9,B 0,8 2,9 6,B -1,4 -1,2 7,1 6,B 7,B 4,4 2,9 0,6 7,3 7,B 7,3 3,8 9,6 1,6 9,7 1,6 5,7 5,B -1,3 9,6 9,4 9,B 6,C -1,5 7,7 1,C 0,2 4,7 5,B 0,3 5,C 4,B -1,8 2,8 6,C -1,8 -1,3 8,B 9,2 6,7 -1,5 6,0 6,5 1,C 0,3 -1,5 7,4 2,B 6,3 1,7 9,1 4,C 0,2 4,C 5,1 8,9 0,1 8,3 7,7 9,C 0,7 2,3 -1,2 2,B 8,6 -1,3 5,1 9,9 1,0 8,C -1,1 5,6 4,8 0,7 4,1 7,8 9,6 6,0 3,1 -1,0 3,B 5,C 5,6 4,9 4,2 0,8 8,5 6,6 5,7 1,0 7,4 -1,3 7,1 8,0 -1,5 4,B 0,B 7,B 3,8 5,2 1,9 -1,1 -1,3 -1,4 8,6 7,9 4,3 -1,9 2,1 8,1 9,1 9,B 1,6 -1,5 3,4 5,1 7,B 6,1 8,6 -1,2 2,4 7,0 3,B -1,8 2,C 6,C 5,9 -1,2 8,B -1,2 -1,7 8,1 9,4 9,3 2,2 9,C 2,B 4,B 1,3 1,5 7,5 0,4 -1,4 8,4 0,6 9,2 6,5 -1,5 3,9 2,3 2,3 7,B 4,9 -1,0 -1,9 -1,0 4,8 -1,6 8,2 4,1 -1,1 8,9 3,1 8,4 4,C 0,5 -1,9 2,2 2,0 4,5 -1,7 1,9 6,8 -1,6 8,6 1,C 6,0 2,4 8,4 -1,1 0,6 4,6 -1,2 9,5 0,B 3,2 4,B 6,C 2,9 4,3 1,B 3,4 -1,1 2,C -1,0 7,6 -1,7 0,7 0,4 -1,8 4,C 8,4 1,4 -1,0 1,C -1,3 7,6 5,B 1,0 8,B 6,6 7,4 4,5 4,3 -1,8 -1,0 -1,7 -1,5 2,6 8,0 7,0 0,B 2,1 7,3 2,9 5,B 0,1 2,5 -1,8 5,1 4,C 9,C 6,6 -1,3 1,8 0,9 8,8 -1,2 -1,2 1,3 2,6 0,7 1,B 8,7 6,4 9,3 7,2 -1,7 8,C 3,B -1,8 -1,8 4,1 0,0 4,7 7,B 2,5 7,3 9,9 0,B 3,0 5,9 3,1 1,4 4,0 7,8 -1,6 4,B 1,0 5,C 0,B -1,0 5,7 0,2 4,C -1,0 -1,6 -1,7 3,1 6,4 8,C 2,2 0,8 2,9 5,C 6,B -1,0 3,C -1,0 4,4 -1,2 7,3 -1,9 8,0 -1,8 4,4 8,0 -1,0 8,0 4,1 9,B 6,B -1,7 9,B 0,B 7,2 8,3 0,9 2,C 4,7 0,9 9,0 6,2 -1,5 9,B 9,B 5,4 3,4 5,0 8,2 7,C 6,C -1,1 -1,1 0,9 0,9 7,7 4,4 0,5 -1,4 6,4 5,8 8,C -1,1 -1,3 6,4 9,C -1,1 0,9 7,1 8,2 6,0 -1,2 5,1 9,7 5,5 9,2 5,1 5,2 0,3 1,7 5,C 7,0 -1,5 3,2 -1,0 3,2 -1,0 4,3 -1,4 5,C -1,5 6,5 6,0 -1,5 3,1 1,C -1,7 6,B 1,9 4,9 1,5 6,3 1,1 -1,0 9,7 7,6 9,6 9,1 -1,4 -1,4 9,1 -1,5 2,C 4,C 0,6 0,9 6,9 6,B -1,0 -1,3 9,1 2,9 0,5 3,4 0,1 7,B 4,8 1,4 -1,2 7,5 -1,9 5,5 -1,1 -1,1 2,B 1,4 -1,4 6,2 5,4 9,9 1,2 2,5 4,2 -1,4 0,1 8,7 9,7 5,5 2,3 4,5 2,8 6,7 4,2 6,4 9,C 0,5 0,B 5,8 7,5 -1,2 2,5 2,B 2,4 -1,8 -1,0 9,2 1,B -1,4 -1,0 -1,4 9,5 1,C -1,8 7,5 9,4 0,6 4,9 -1,0 5,C -1,6 3,C 2,0 1,6 7,0 4,3 0,2 8,4 7,4 2,6 1,9 -1,0 -1,9 6,4 0,8 7,B -1,1 2,8 -1,8 7,2 -1,5 0,0 -1,0 -1,9 5,9 6,3 9,8 2,B 1,3 1,3 4,3 -1,9 9,C -1,0 -1,1 -1,4 0,C 2,C 1,7 6,C 5,7 8,3 1,B -1,1 5,9 9,B 2,B 2,3 4,1 3,9 -1,2 -1,1 9,9 0,C 7,7 3,C 9,7 3,B 6,1 -1,1 3,C -1,1 2,2 7,C -1,0 7,2 -1,6 6,8 3,7 3,3 1,8 9,2 6,C 3,0 -1,3 7,2 5,2 1,8 0,9 6,8 -1,2 1,8 2,2 7,4 4,8 2,9 2,5 -1,4 -1,1 -1,6 3,1 8,6 1,9 8,9 -1,9 1,3 6,5 5,3 -1,2 5,4 -1,5 -1,1 6,B 4,4 4,4 9,3 6,B 8,C 8,9 4,3 5,6 -1,7 5,0 8,0 5,6 0,C 6,6 3,0 4,9 3,6 3,5 -1,3 1,2 2,C 9,8 7,3 4,B 0,0 2,C 1,1 5,B 2,5 5,3 5,C 8,5 3,C 4,0 3,B 7,1 2,8 6,4 4,C 9,5 1,9 5,C 2,2 6,0 5,B 4,C -1,7 0,8 9,C 5,0 8,8 -1,4 1,B 9,4 8,3 8,B 1,8 5,4 3,6 8,7 2,0 6,6 8,B 2,4 0,8 6,6 5,1 0,5 8,B 1,5 9,4 4,B 2,0 5,1 3,4 4,6 -1,4 4,9 -1,1 2,5 9,9 2,9 1,4 0,C 9,5 2,7 9,2 5,C 3,3 4,B 6,9 3,C 2,8 0,5 5,5 2,9 0,8 6,1 4,2 6,2 3,9 1,4 2,3 0,8 8,C 2,8 6,8 4,3 6,4 6,5 1,1 2,6 8,3 -1,1 0,8 -1,5 0,2 7,3 3,C -1,3 -1,6 5,1 -1,1 2,B 6,5 2,0 -1,1 -1,3 6,7 -1,1 2,C 7,2 7,3 -1,7 7,9 2,B 2,C 3,2 5,6 -1,6 9,6 2,B 9,9 2,B 6,C -1,1 7,2 8,8 5,B 4,B 3,2 2,0 7,6 8,7 8,1 5,4 -1,3 5,3 2,3 8,B 3,5 4,8 7,1 3,2 5,B 9,5 8,8 8,5 5,6 3,2 6,7 4,1 3,9 7,8 3,2 7,2 4,B 7,C -1,9 5,B 0,1 7,6 8,1 7,7 7,7 1,8 8,9 -1,7 -1,7 0,0 9,3 6,8 7,0 5,1 -1,6 2,5 1,B -1,0 7,2 1,B -1,3 5,C 8,C 7,6 1,4 5,8 0,1 6,C -1,1 1,6 5,3 -1,0 3,5 -1,6 8,B 1,3 8,6 8,4 0,7 5,B 6,0 6,6 9,C 2,9 6,4 1,C 7,2 4,B 2,B 3,B -1,8 2,2 9,B 6,B 8,8 3,4 3,4 7,0 7,B 7,B 7,9 3,8 6,0 0,B 6,7 9,5 1,6 -1,8 -1,7 9,B 0,1 2,2 6,B 0,5 7,6 0,3 6,C -1,5 4,B 7,7 3,C -1,9 3,B 9,C 3,4 7,C 6,3 6,4 8,1 -1,4 8,B 3,B 3,2 0,C -1,7 5,4 2,2 4,1 1,3 9,4 -1,6 6,C 2,8 0,B 5,C 9,B 3,B -1,5 4,B 3,C 2,1 4,0 9,5 4,3 1,9 5,1 2,7 -1,9 -1,9 -1,6 1,4 7,8 5,C 6,C 8,C 5,0 9,5 6,B 7,0 3,8 2,B 4,0 5,1 2,2 7,1 -1,8 -1,5 4,1 8,4 2,B 6,6 4,5 5,B -1,4 8,8 5,B 9,6 8,7 4,B 3,2 0,3 5,4 0,7 6,4 4,9 0,7 -1,5 5,0 3,B 7,5 2,6 1,7 -1,2 8,B 7,2 -1,0 7,0 7,1 6,B 9,6 -1,8 0,B 1,5 4,0 4,1 0,C 4,9 2,1 -1,2 9,9 2,4 4,3 8,8 7,7 -1,3 -1,1 4,4 -1,9 -1,0 4,1 0,4 3,9 5,9 0,5 -1,7 8,0 -1,1 8,8 3,4 1,2 9,1 0,2 0,7 -1,4 -1,6 1,2 1,2 6,8 0,5 -1,4 9,7 8,9 -1,0 7,6 2,B 6,7 9,7 7,B 2,5 -1,4 1,2 6,B 3,9 -1,7 4,B 1,B -1,2 6,B 8,4 8,B 1,B 0,B 1,5 -1,4 6,1 2,9 6,5 -1,0 5,6 8,2 1,1 -1,8 9,9 0,B 9,0 9,0 -1,7 1,3 9,9 9,1 -1,7 -1,0 6,5 -1,9 8,3 8,4 9,9 -1,7 1,1 6,2 1,C 2,B 8,7 5,5 -1,2 -1,3 -1,4 1,1 3,8 5,6 8,9 8,C 5,0 0,8 9,7 4,6 1,1 6,C 9,C 3,9 1,8 4,B -1,2 1,0 -1,3 8,9 4,4 0,C 6,C -1,9 4,7 -1,1 0,6 -1,2 7,B 4,B 4,3 -1,9 3,5 -1,8 -1,7 3,7 -1,1 4,B -1,2 1,8 0,0 8,4 0,9 -1,4 0,2 3,C 4,5 0,8 9,B 7,6 5,C -1,0 8,C 1,0 6,B 4,9 -1,9 -1,7 3,B 6,8 8,B -1,4 -1,9 0,C 4,0 -1,0 4,B 4,8 7,0 0,1 0,6 -1,0 -1,9 2,1 -1,3 0,7 2,9 9,B 8,4 3,7 3,5 1,7 9,1 5,0 7,1 8,5 4,C 5,4 2,6 1,5 8,8 8,1 6,1 -1,9 1,9 4,C -1,6 1,0 4,B 5,B 5,3 2,B 7,7 4,8 5,1 5,B 0,3 2,6 7,8 6,2 6,C 8,5 5,7 0,3 -1,1 3,1 4,B 6,4 6,5 4,2 8,0 0,2 1,9 1,4 1,3 8,9 -1,0 9,1 7,9 -1,3 5,6 7,0 -1,8 2,C 4,4 2,9 1,6 1,2 6,0 8,7 4,7 8,C -1,3 5,5 1,2 -1,6 3,C 2,6 0,4 8,1 7,8 6,5 -1,3 4,2 5,0 8,0 0,0 6,0 3,2 2,2 9,5 7,1 -1,2 4,1 3,8 9,0 4,6 1,C -1,7 2,3 8,4 7,4 7,B 1,B 2,0 -1,7 -1,9 1,3 0,3 -1,4 -1,3 3,B 8,1 8,C 0,9 9,B 1,C 1,B -1,7 8,B 5,2 7,5 7,7 7,0 6,B 4,8 4,C 2,0 8,5 7,7 5,C 5,B 5,9 5,8 2,C 2,1 5,1 4,8 -1,8 2,5 2,0 0,7 6,0 4,8 7,0 0,2 4,2 9,B 7,6 6,8 8,4 1,4 6,3 -1,2 2,4 0,5 5,0 3,9 9,4 1,2 6,3 1,8 6,8 0,9 5,7 -1,7 1,B 2,B 0,4 7,3 9,4 -1,9 -1,6 1,C 1,C 7,C 7,8 5,C 0,4 0,4 7,2 4,8 -1,9 5,0 7,8 1,5 5,9 1,9 -1,1 2,C 4,2 4,9 8,6 8,4 3,8 6,8 1,0 9,9 9,B 0,3 7,6 2,7 0,4 5,8 6,6 -1,2 4,3 5,C 8,6 8,7 3,9 0,6 1,B 9,B 8,B 7,4 4,6 5,5 4,2 7,B 8,C -1,0 8,4 7,3 7,9 4,5 9,5 5,9 -1,5 2,6 4,C -1,2 1,B 1,0 7,B 0,8 2,B 5,B 3,C 6,9 1,B 3,7 4,2 -1,1 -1,2 -1,3 2,C 6,5 -1,7 3,7 5,8 -1,4 8,7 7,C -1,1 6,3 2,B 9,C 8,5 0,5 2,0 1,7 0,3 4,9 3,5 6,5 4,9 0,6 0,0 4,B 8,B -1,5 5,2 9,1 7,C 2,3 -1,9 2,3 2,2 7,2 1,B 4,C 5,6 -1,4 8,7 9,1 9,2 -1,6 4,B -1,8 1,5 4,5 2,1 -1,1 -1,2 9,6 -1,7 7,9 3,7 -1,4 3,8 -1,1 7,6 3,0 3,0 3,B 6,7 9,B 2,6 7,5 -1,4 3,7 2,C -1,2 -1,4 3,5 -1,3 -1,7 7,9 9,4 8,8 2,0 7,7 9,B 2,1 9,5 5,7 5,9 6,2 8,4 -1,1 5,4 6,7 5,4 -1,0 -1,7 7,B 5,8 9,5 3,0 9,6 3,B -1,4 6,0 2,B -1,7 6,6 -1,3 5,4 8,B 0,0 -1,9 7,C 3,5 5,C 3,4 2,5 1,0 9,0 -1,0 1,2 9,2 2,6 6,B -1,9 1,5 7,1 7,5 3,C -1,3 5,2 7,B -1,4 0,6 -1,4 6,4 3,8 5,8 1,4 8,C 1,0 5,1 4,0 7,4 5,5 2,3 -1,9 2,3 6,2 6,7 3,C -1,7 -1,0 8,C 6,B -1,6 -1,4 5,9 3,5 0,1 -1,4 3,5 3,1 7,B -1,6 9,4 4,9 2,1 3,3 7,B 9,7 -1,7 5,4 -1,1 -1,4 5,0 4,C 2,1 2,4 1,0 5,1 2,2 7,4 4,0 0,B 7,2 3,B -1,7 1,0 1,B 3,8 6,9 3,B 5,1 -1,5 4,9 6,7 -1,7 9,B -1,2 2,B -1,4 3,7 9,4 -1,0 0,3 8,1 0,2 5,0 8,2 7,3 1,B 4,4 3,0 3,4 2,3 6,4 0,3 0,9 2,7 8,C 3,0 7,5 7,C 1,6 0,2 3,B -1,2 4,1 -1,8 9,8 2,B 7,3 4,B 1,6 6,3 5,2 9,C 2,3 1,B -1,7 2,3 2,C 9,9 4,3 1,B 3,4 4,B 2,0 2,1 9,1 -1,0 -1,8 3,C -1,9 -1,0 5,C 0,1 5,3 0,C -1,1 9,8 -1,8 3,9 8,5 -1,7 0,8 6,5 -1,9 -1,8 -1,6 8,9 2,C -1,0 5,B 7,1 7,C 5,2 1,6 3,2 8,6 -1,1 1,C 3,1 -1,6 1,B 6,7 6,9 9,C 5,5 6,0 5,8 6,4 9,4 0,7 3,1 2,0 2,5 3,8 4,C 4,C 5,6 2,9 0,B 0,C 0,2 -1,8 -1,5 -1,5 6,C 8,3 5,0 -1,0 3,C 0,4 9,C 0,3 -1,5 1,C 6,9 2,1 -1,0 5,1 8,8 3,C -1,6 6,2 7,5 3,B 5,3 -1,7 4,C 2,C 5,5 2,4 -1,2 9,7 4,0 -1,1 1,2 2,2 3,5 1,B 5,C 7,B 9,1 0,7 -1,2 9,4 5,C 1,0 8,C 7,B 5,B -1,4 -1,5 8,2 0,B 0,0 2,1 9,B 2,4 4,5 3,8 -1,0 6,6 -1,6 7,C 0,9 4,2 -1,0 0,8 0,0 7,9 4,1 3,1 2,B 6,4 6,1 0,C 5,3 3,0 9,0 5,1 -1,4 7,2 -1,6 0,2 5,6 2,6 6,2 0,9 -1,5 0,9 7,C 6,7 -1,5 5,1 0,0 7,C 4,3 8,9 6,1 -1,3 5,0 1,6 7,2 7,B 7,7 -1,0 7,2 -1,1 7,5 2,B 7,4 -1,7 7,7 -1,2 8,9 9,5 7,9 3,4 8,B 6,B 6,B -1,4 0,5 8,0 3,5 4,B -1,4 -1,9 2,6 9,6 8,C -1,8 1,9 7,6 1,4 9,8 1,5 9,4 -1,9 4,B 4,B -1,3 0,5 8,4 9,B 3,8 9,4 4,9 -1,5 0,6 9,0 7,1 -1,6 -1,4 5,1 2,6 9,1 8,5 0,1 3,B 6,C 0,0 5,9 7,1 1,2 8,1 5,C 8,9 3,6 3,0 -1,4 1,9 2,8 6,B 4,0 6,6 8,1 -1,2 -1,9 8,9 5,4 0,8 -1,2 4,C 6,C 0,B 2,C 0,6 3,C -1,6 6,9 0,9 4,2 5,2 -1,0 7,B 5,3 9,1 -1,3 7,B -1,5 -1,0 3,3 2,2 3,0 5,8 9,2 -1,4 0,C 5,7 4,1 4,9 9,7 4,B 0,3 6,0 0,B 5,0 7,C 9,2 4,0 3,6 9,9 -1,9 -1,3 -1,8 -1,7 9,5 2,7 1,9 2,B -1,8 -1,0 7,B 5,C 9,6 -1,4 1,6 1,C 6,4 2,8 8,2 7,3 1,8 4,5 3,1 7,1 7,1 4,7 9,9 7,B 7,0 2,B 2,5 6,4 2,6 9,0 -1,8 1,4 9,4 1,3 6,B 8,B 6,6 -1,8 5,B -1,1 5,2 7,B 6,2 8,7 4,B 8,B 0,1 4,7 7,5 0,0 1,B 3,3 6,5 7,6 -1,9 6,4 -1,5 4,B 6,2 -1,1 3,1 -1,2 -1,8 7,9 4,7 6,7 6,0 -1,5 2,1 6,3 4,9 -1,5 9,5 6,7 -1,0 6,C 1,0 4,2 -1,9 8,9 2,C 9,8 3,7 8,1 1,8 6,C 5,0 -1,9 -1,1 1,5 1,5 7,6 -1,0 -1,2 2,B -1,1 4,7 -1,5 1,C 2,7 3,3 2,4 1,3 3,6 8,C -1,8 0,C -1,8 9,B 2,C 1,8 3,2 5,2 8,7 -1,9 3,5 -1,4 -1,7 -1,7 5,C -1,6 7,6 6,B 0,0 4,C -1,1 7,C 9,B 9,9 0,8 1,3 2,5 1,5 9,9 6,C -1,4 4,1 0,C 9,7 0,7 0,4 -1,2 5,4 0,4 2,2 -1,0 6,B 9,5 1,8 5,4 4,2 8,7 8,6 6,C -1,1 8,8 4,9 -1,9 1,5 6,2 4,9 -1,5 5,4 9,0 -1,6 3,C 0,C 7,0 3,B 6,7 8,8 0,9 7,5 -1,0 9,0 3,6 4,C -1,7 6,7 -1,6 -1,1 8,9 2,5 3,9 4,C 0,0 1,C 9,9 9,C 8,5 7,B 6,2 -1,1 4,C 8,3 -1,8 1,0 0,3 -1,5 3,7 4,0 4,9 1,B 2,4 8,1 8,4 3,7 2,5 -1,5 6,2 9,8 5,1 9,6 -1,4 -1,5 2,B 4,7 6,C 4,7 7,8 -1,7 3,8 4,8 -1,1 -1,5 3,0 8,C 1,0 2,0 5,9 7,9 7,C 6,9 5,0 9,8 -1,2 8,0 7,7 5,C 3,B -1,5 4,5 4,3 9,0 4,1 8,C 9,C 3,B 7,2 2,C 1,2 2,2 4,B -1,2 8,C 0,3 8,6 9,3 -1,1 7,C 6,3 2,B -1,2 8,6 4,6 4,1 1,9 0,3 -1,0 1,C 2,C -1,2 2,1 9,4 9,2 1,C 7,C -1,9 -1,2 8,B 0,8 -1,1 2,3 3,3 -1,5 7,B 2,B 4,8 -1,3 5,8 1,2 1,1 5,C 0,6 8,6 6,5 0,6 -1,2 3,8 -1,7 2,4 9,B 4,2 7,0 5,6 1,9 -1,6 4,2 0,0 -1,2 4,6 9,8 6,8 0,B 0,C -1,6 9,4 5,5 -1,1 4,4 4,7 -1,7 -1,4 2,5 4,7 -1,3 -1,3 2,B 6,2 9,9 0,6 8,C 3,1 7,7 4,0 0,1 7,8 7,0 6,5 -1,4 7,B -1,3 -1,7 -1,8 3,4 0,2 -1,2 6,2 3,3 0,9 6,5 -1,4 -1,1 0,1 3,1 6,4 -1,5 -1,3 1,4 -1,1 3,B 4,3 1,1 1,7 -1,3 2,1 -1,0 3,2 3,5 5,B 8,C 2,B 9,6 1,3 8,4 0,2 1,C -1,4 9,9 3,C 1,5 1,1 4,C 6,6 6,C 5,B 2,6 -1,4 -1,1 7,7 8,1 4,3 0,0 -1,0 5,5 3,9 -1,2 -1,9 1,B 7,3 6,1 -1,7 3,B 7,9 6,6 8,7 1,8 9,7 1,C 3,2 -1,0 2,2 0,C 9,4 7,B 7,8 4,8 -1,4 0,0 8,9 9,9 8,9 -1,2 -1,0 5,C 4,C 9,7 0,5 5,6 -1,1 4,C 1,C 5,9 3,0 7,9 4,7 7,0 7,8 3,1 3,B 6,4 8,0 4,2 -1,2 6,5 7,0 2,C -1,9 9,C -1,3 7,8 8,6 3,7 -1,3 0,0 0,1 -1,8 5,3 -1,5 2,1 -1,0 5,2 9,7 5,5 -1,1 7,2 5,2 -1,1 4,6 8,9 8,0 6,3 -1,0 9,4 -1,4 0,5 6,C 2,7 3,9 2,9 -1,7 9,8 2,5 2,1 3,1 -1,0 0,B -1,1 4,7 -1,9 1,4 -1,7 2,5 2,9 4,9 -1,4 9,2 -1,5 3,9 7,5 0,8 4,4 1,C 9,C -1,0 -1,5 9,0 0,C 0,4 6,B 9,5 8,7 9,3 6,C 5,C -1,1 -1,1 8,0 4,C 3,6 -1,3 8,0 0,0 1,1 6,7 3,0 4,7 9,B 3,B 2,C 3,B 0,2 3,3 5,9 8,5 2,2 3,6 -1,4 9,2 6,5 3,5 -1,1 -1,1 -1,2 -1,4 1,1 -1,0 6,8 4,7 9,0 5,C 0,1 9,3 -1,4 5,4 3,7 4,0 6,B -1,0 0,4 -1,6 6,0 5,C 5,0 5,6 1,1 -1,7 -1,5 0,C 1,C 8,2 -1,9 4,3 3,8 1,0 -1,8 3,0 2,B 6,1 6,0 9,1 2,0 3,1 -1,7 -1,2 -1,6 -1,5 3,B 4,9 0,6 1,4 3,9 0,C 9,6 7,5 -1,8 0,3 -1,7 0,C 4,C 7,C -1,8 -1,4 0,4 4,1 3,6 8,8 7,4 -1,3 4,5 5,B 6,2 7,8 -1,0 -1,1 5,B 8,8 3,4 6,1 -1,6 6,0 8,9 1,0 7,9 5,7 4,C 1,B -1,2 3,8 7,0 6,0 1,1 -1,4 -1,2 -1,9 2,B 9,4 9,C 9,C -1,7 8,3 6,3 1,9 9,C 7,5 8,2 5,B 5,1 -1,9 -1,2 6,B 4,2 -1,7 8,4 0,7 8,3 7,0 -1,3 -1,1 8,4 1,C 9,0 5,B -1,6 5,C 5,C 8,8 5,C 1,3 6,C 8,0 7,3 4,4 5,4 3,0 7,2 2,2 4,4 9,4 -1,3 5,0 7,9 1,6 7,2 5,7 5,B 6,5 6,2 0,4 1,0 7,1 0,4 -1,7 6,C -1,6 1,C 9,2 3,2 8,8 4,2 4,4 5,7 -1,4 -1,0 7,C -1,9 7,6 1,2 0,0 0,B 4,8 5,2 6,3 3,9 -1,9 2,3 9,0 -1,6 -1,9 9,8 6,1 7,C 7,B 2,4 -1,0 -1,3 1,2 0,2 6,8 6,9 4,8 2,0 6,3 4,7 9,2 6,6 6,7 -1,4 6,C 8,8 5,C 8,5 2,9 -1,2 1,5 -1,2 -1,5 3,9 1,B 4,B 8,C 7,4 1,1 -1,3 -1,5 9,8 -1,4 0,B 6,0 1,2 -1,7 4,8 -1,0 0,7 0,1 -1,8 -1,6 6,2 7,C 4,5 5,0 -1,7 -1,4 5,0 5,B 5,4 5,6 -1,4 -1,6 3,B -1,4 -1,5 8,5 0,6 1,7 -1,3 -1,6 -1,8 4,4 6,4 7,9 5,B 9,3 0,C 3,2 5,B 0,7 3,C 1,7 4,B 6,C 0,C -1,5 0,9 0,7 8,C 4,C -1,1 1,3 7,3 5,B 0,C -1,6 5,0 2,4 0,B 9,0 4,B -1,8 2,8 -1,4 1,C 4,8 7,2 -1,0 2,3 5,0 0,9 6,C 0,4 4,6 -1,1 1,2 4,5 7,C -1,1 5,3 5,9 5,6 6,9 -1,1 -1,7 8,8 -1,0 2,8 7,8 1,6 9,B 1,9 7,3 -1,0 5,0 0,1 -1,4 2,8 5,9 0,C 4,1 0,B 9,3 6,4 -1,5 -1,7 -1,3 6,C 4,C 0,8 1,7 1,7 8,7 4,2 3,5 7,C -1,7 5,7 3,4 9,1 4,3 9,0 1,C -1,8 4,B 9,5 8,4 4,B 6,4 9,6 2,6 6,4 8,6 1,4 8,3 -1,8 8,3 6,9 -1,4 7,1 6,0 -1,3 2,1 -1,9 9,5 6,2 0,7 3,C 4,1 1,C 9,8 1,6 9,B 2,5 -1,6 -1,7 1,0 6,1 7,0 1,9 -1,6 0,7 9,C 7,8 2,8 9,2 1,B 0,5 -1,8 0,0 8,3 5,4 8,C 9,7 6,2 9,B 9,C -1,0 5,6 5,3 1,1 6,1 8,7 -1,7 2,5 7,C 7,C -1,4 -1,5 8,B -1,2 6,7 4,8 9,B 6,0 9,4 -1,8 -1,9 8,B 4,C 5,B -1,0 3,9 4,7 0,0 6,6 2,C 7,1 0,7 9,C 0,8 2,B -1,9 5,6 4,5 8,C 2,B 7,5 2,9 -1,0 1,7 1,1 -1,7 -1,9 3,8 0,8 4,2 1,7 6,8 0,7 2,6 -1,2 5,5 4,0 5,7 -1,1 6,C 2,B 4,3 7,C 8,6 3,B 1,C -1,6 0,8 4,6 7,5 -1,9 9,0 9,B 0,5 6,C 3,C -1,2 2,B 8,C -1,7 -1,5 6,B 6,1 6,9 -1,6 -1,2 -1,2 9,1 9,C -1,9 0,3 6,C 4,6 0,6 2,0 0,3 6,9 6,5 2,B -1,8 9,7 1,7 0,2 1,9 -1,3 -1,5 8,3 5,B 5,C 8,0 -1,2 7,1 2,7 7,6 2,C 5,0 4,5 6,1 8,6 3,0 5,7 -1,7 -1,0 5,3 -1,8 3,1 3,C -1,0 3,C 3,6 5,8 6,C 6,9 3,1 -1,1 0,C 9,3 1,B 0,7 -1,9 3,7 5,3 9,B 9,6 0,6 8,4 1,6 6,6 -1,5 4,3 2,B 2,C -1,9 5,8 9,0 8,3 -1,9 1,4 5,0 8,C 3,9 5,6 7,1 3,B -1,3 0,0 -1,4 -1,1 1,5 0,5 -1,9 5,C 9,C 5,2 1,3 4,C 2,4 0,9 9,7 5,B 3,0 9,8 1,0 0,8 7,1 -1,5 5,9 2,8 1,B 1,B 5,1 3,2 7,2 9,B 3,0 6,6 -1,1 -1,3 -1,1 5,1 0,3 -1,9 5,2 -1,0 1,8 7,3 5,B 4,B 0,C 1,4 3,B -1,3 7,4 -1,0 -1,3 5,C 1,B -1,7 8,4 -1,5 8,B 9,2 5,C 0,C 4,5 -1,3 9,C -1,8 0,2 9,4 9,C 8,C 5,0 0,6 -1,5 3,B 0,7 4,C 6,9 8,2 7,6 -1,2 8,B 4,1 8,2 -1,8 4,1 1,C 8,5 2,1 7,4 6,3 5,5 8,3 -1,1 1,1 8,7 -1,6 -1,6 1,4 6,0 -1,5 1,B 4,7 9,5 9,1 -1,0 4,B 0,1 9,6 3,5 1,2 2,1 6,6 9,1 5,B 2,7 4,7 1,7 -1,5 1,6 7,3 5,C -1,8 8,1 -1,0 0,2 8,B 3,B 8,0 -1,2 -1,7 -1,2 9,C 5,1 -1,3 2,0 8,6 4,B 5,7 8,8 -1,7 8,7 5,6 5,2 1,3 0,1 -1,3 5,5 -1,3 -1,4 -1,4 6,7 6,0 2,2 4,2 5,C 2,1 4,1 3,0 8,4 1,8 1,2 9,0 1,4 5,B 0,C 2,B 6,9 -1,9 2,5 4,3 1,1 -1,5 1,0 0,3 5,6 0,6 -1,6 6,B 0,8 2,7 -1,3 -1,1 -1,2 6,4 1,5 -1,7 4,B -1,6 0,6 1,3 0,9 7,3 8,6 0,1 0,B 6,C -1,0 8,5 5,B 7,2 6,B -1,0 4,0 6,2 8,3 -1,5 5,0 -1,0 2,3 4,8 -1,0 2,C 3,B 7,B 7,6 4,8 -1,0 9,B -1,2 5,2 -1,6 0,B 9,C 4,7 9,8 2,C 4,7 1,C 5,C 4,B 5,6 9,6 1,C -1,0 -1,5 -1,2 2,9 8,5 0,C -1,7 4,6 0,B 1,5 9,0 9,0 0,7 0,B 8,B 7,8 8,2 -1,5 6,9 9,B 6,3 5,B 9,B 4,1 -1,2 5,3 0,B 7,B 0,2 8,9 8,1 7,0 -1,2 -1,4 8,9 -1,3 6,6 -1,4 6,B 0,C 0,4 -1,4 -1,2 0,1 5,3 0,5 8,4 4,3 -1,0 1,4 -1,0 4,5 -1,0 8,B 1,3 6,5 -1,3 2,9 7,3 8,2 -1,8 8,7 -1,0 7,8 2,8 0,6 3,0 0,B 8,7 4,B 4,1 8,0 9,C 3,B 0,0 5,B 6,0 -1,9 3,7 -1,1 0,6 0,4 7,C 6,7 4,1 6,4 8,6 6,1 1,C 0,C -1,6 6,6 2,C 0,C 8,C 7,B -1,8 -1,6 1,3 -1,1 3,6 4,C 8,9 -1,0 -1,4 9,8 -1,4 4,7 6,6 5,9 8,0 -1,8 -1,9 7,2 0,5 8,0 4,1 1,C 8,0 -1,2 9,2 2,B -1,9 -1,1 -1,9 -1,3 -1,0 1,2 5,8 6,2 2,6 5,6 3,C 8,B -1,3 3,5 0,3 -1,0 1,2 5,8 -1,0 9,2 6,7 -1,5 8,0 5,3 -1,3 2,6 3,6 -1,3 2,7 -1,2 9,9 -1,0 4,4 -1,3 3,B -1,8 0,B 6,0 1,2 8,B 8,C 1,3 9,1 -1,3 2,B 7,1 2,9 5,0 8,2 1,1 -1,0 3,9 1,3 3,8 4,B -1,3 4,6 3,7 1,9 -1,0 8,8 6,9 3,3 8,3 4,C -1,0 9,4 7,8 0,7 9,3 4,7 9,0 8,5 2,0 9,9 4,C 7,9 8,3 7,3 -1,1 6,3 7,6 4,7 1,9 -1,2 -1,0 -1,1 2,B 0,8 7,9 5,1 5,3 6,5 -1,2 -1,7 0,B 0,7 3,1 6,7 4,C 6,B 0,2 0,B 8,B 9,4 9,5 9,C 1,2 3,B 9,B 6,1 5,7 -1,0 -1,9 0,6 -1,0 8,4 -1,7 4,4 -1,0 8,7 -1,6 2,8 -1,6 7,0 -1,4 7,5 2,9 6,C 8,8 4,7 -1,9 -1,8 0,6 4,1 -1,8 5,B 3,1 -1,1 6,3 2,5 -1,8 9,6 8,C -1,2 0,5 3,B 5,2 1,B -1,8 0,8 -1,9 3,C 5,B 5,0 1,B 8,C 9,3 9,8 -1,9 -1,0 8,2 -1,7 -1,0 6,5 2,6 9,B -1,9 6,5 9,4 8,4 6,8 2,0 3,3 9,6 4,5 1,3 0,1 1,3 -1,6 2,B 4,4 -1,4 4,4 5,1 -1,3 3,5 9,0 8,B 6,C 9,C 0,0 4,8 1,C 6,8 6,7 9,4 8,1 3,0 4,7 9,8 -1,4 4,1 2,6 -1,2 -1,4 7,9 -1,7 5,2 0,C 7,C 4,2 5,B 7,3 9,1 0,2 8,6 4,8 9,1 -1,4 3,7 2,C 4,0 -1,8 -1,2 0,3 -1,9 7,3 1,4 6,C 1,2 9,7 0,4 -1,2 8,B 5,C 1,C 9,B 7,7 -1,8 9,6 7,7 5,8 0,B -1,1 -1,8 5,C -1,8 5,0 6,5 0,1 -1,5 -1,3 9,2 -1,2 7,6 1,6 7,0 5,C 9,1 0,5 -1,4 -1,9 6,3 1,2 2,0 3,3 5,2 1,6 1,4 9,B 1,2 0,5 -1,2 -1,6 9,7 0,2 4,7 -1,5 5,C 2,4 6,C 1,6 2,3 0,B 1,5 0,0 -1,0 4,9 9,3 8,B 9,9 0,B 9,0 1,5 -1,6 -1,7 7,0 3,2 9,3 9,B 9,C 7,8 3,0 9,6 1,0 8,C 5,B 6,7 6,C 9,5 5,2 7,B 9,B 9,9 8,6 8,4 1,C 6,7 -1,4 -1,5 -1,0 9,5 1,2 0,4 -1,1 2,B 5,6 4,C 0,2 -1,0 -1,7 9,C 9,9 8,1 7,B 6,9 3,0 4,5 6,0 6,6 6,1 9,7 3,2 1,0 -1,7 1,3 1,3 3,5 3,2 -1,6 0,B 2,6 -1,6 7,9 2,C -1,5 -1,2 9,0 9,9 0,C 8,6 8,5 7,9 7,1 7,7 7,7 3,3 7,2 1,0 7,0 8,C 1,9 2,7 8,C 9,1 1,B 3,0 2,5 -1,4 6,B -1,6 1,6 4,2 5,9 -1,2 6,B 5,9 8,2 7,9 5,8 -1,3 6,6 5,6 7,3 6,8 9,B 7,1 4,8 5,C 1,5 4,B 7,8 1,C 9,1 8,2 0,B 6,B -1,5 6,7 6,1 5,C 8,B 2,9 9,2 6,1 7,1 8,6 6,0 -1,0 4,B -1,4 3,3 -1,2 2,7 2,2 -1,3 2,0 -1,2 7,1 8,C 1,3 -1,6 0,6 8,7 2,0 -1,5 -1,0 1,0 4,B -1,1 6,C 3,B 9,B -1,7 -1,0 1,0 -1,8 4,C -1,5 9,9 5,7 9,1 1,6 8,4 9,0 -1,3 6,6 1,1 -1,0 2,0 9,7 5,6 9,C 0,8 6,B 7,8 1,7 1,0 4,C 3,9 7,7 2,4 2,8 8,5 0,7 8,4 6,6 8,B 3,8 1,3 2,8 7,6 7,B 7,3 7,0 3,2 0,3 1,5 -1,8 2,C 0,0 2,4 7,4 5,B -1,9 6,2 2,B -1,0 5,B 0,3 -1,3 7,9 2,4 9,B 9,5 4,3 -1,7 8,9 9,2 5,1 5,6 8,7 5,5 -1,6 7,5 6,6 3,B -1,4 6,1 6,4 3,4 -1,5 -1,2 6,6 -1,2 2,7 9,4 5,B 2,C 2,B 2,C 0,6 0,0 7,0 1,1 1,2 -1,7 -1,9 1,2 4,5 2,5 1,3 4,3 8,5 5,0 7,B -1,7 1,B 7,7 4,0 8,2 2,B 5,B 8,4 6,7 -1,4 7,9 -1,0 -1,4 1,C 4,2 2,C -1,3 -1,3 2,2 2,5 -1,4 9,9 5,0 6,4 1,3 0,C 9,4 0,2 5,B -1,5 -1,6 3,B -1,0 4,3 -1,1 6,C 8,3 0,8 3,7 4,3 5,C 4,B 8,6 1,B 4,8 3,6 1,8 0,6 3,1 3,5 5,6 1,3 5,5 4,3 3,1 -1,7 1,B 2,B 9,6 7,1 9,6 5,6 9,0 0,9 7,8 7,9 1,9 2,5 3,6 0,5 -1,4 8,5 9,3 -1,6 -1,9 -1,3 6,8 1,5 5,2 3,7 1,8 0,3 0,6 8,3 -1,9 9,B 6,5 -1,5 4,6 6,1 7,8 3,6 -1,4 1,9 5,2 1,C 0,B -1,2 -1,8 9,9 3,B 9,4 -1,3 2,7 9,B 9,2 -1,7 9,6 6,C 9,0 2,C 9,8 7,6 1,8 3,2 3,8 6,6 3,9 0,6 8,C 8,3 9,5 7,C 6,4 7,C -1,4 3,1 8,4 1,6 4,3 0,1 7,3 -1,3 -1,4 3,C 7,B 5,3 -1,2 4,B 6,8 -1,6 -1,3 4,5 -1,8 1,B 9,8 6,B -1,7 -1,7 -1,7 3,6 -1,4 -1,1 4,B 4,B -1,2 1,4 -1,0 2,7 -1,1 4,C 4,3 7,6 1,3 -1,5 -1,0 -1,6 7,8 5,9 -1,8 4,0 0,3 0,4 3,3 8,3 9,8 3,C 3,6 5,2 9,4 3,0 -1,6 -1,1 9,0 0,3 -1,4 8,5 1,0 2,9 6,6 4,C 1,8 5,4 7,8 4,9 7,1 1,C 6,B 1,4 4,B 9,0 1,8 9,B 4,5 0,3 1,B -1,4 3,0 4,9 4,4 9,B -1,8 2,0 4,8 9,7 4,4 -1,5 9,4 -1,5 8,6 9,6 2,1 -1,6 2,5 1,7 4,6 1,7 -1,2 9,7 1,6 6,9 9,1 -1,0 1,7 1,6 1,C -1,8 8,B 8,7 6,B 8,1 5,C 7,8 7,1 -1,4 2,B -1,5 -1,6 3,2 9,0 6,7 3,C 1,C -1,0 2,9 -1,1 6,5 0,B -1,2 2,1 4,B 3,0 2,2 2,C -1,5 1,7 5,8 3,5 1,1 7,C 9,2 0,7 5,9 1,6 4,4 -1,8 0,B -1,0 1,6 1,B 4,0 -1,5 -1,5 7,0 4,7 5,6 7,0 -1,7 5,0 1,4 3,2 -1,4 9,9 3,0 0,2 7,6 -1,8 3,3 8,C 6,C 4,8 9,4 3,9 -1,9 2,3 7,B 7,2 -1,5 3,4 5,8 4,6 2,B -1,6 -1,9 2,7 3,4 -1,2 5,1 4,1 7,7 8,0 6,4 -1,1 6,5 7,9 3,B -1,0 4,C -1,3 1,4 0,8 -1,0 -1,4 5,9 0,1 2,B -1,3 3,0 6,8 -1,9 3,C 5,3 8,2 -1,6 2,7 7,5 -1,9 6,B 8,2 7,0 -1,5 4,0 1,8 2,1 -1,5 0,8 1,9 6,C 9,5 -1,7 -1,9 -1,7 5,6 8,B 8,B 8,4 6,3 -1,5 -1,5 6,C 5,B 8,3 8,1 3,6 3,4 -1,2 8,4 2,6 4,B 3,C 2,3 -1,7 0,9 4,2 4,6 5,9 1,4 4,7 8,0 8,B 7,5 6,4 7,2 -1,0 3,7 -1,3 -1,7 8,5 8,5 0,2 9,C 0,5 6,B 4,2 3,7 1,B -1,3 6,B 0,C 9,2 -1,3 -1,8 2,B 6,0 8,7 0,3 6,0 5,9 5,0 2,9 7,0 -1,4 7,B -1,5 8,6 -1,9 9,4 3,8 2,2 -1,1 6,6 -1,3 -1,2 -1,5 6,C 4,9 -1,1 0,7 3,0 6,C 4,0 3,6 7,C 3,4 8,7 -1,2 4,B 5,0 5,8 6,4 -1,2 5,4 2,8 -1,5 8,4 1,5 2,B 7,4 6,6 5,5 -1,2 1,C 5,2 4,7 -1,7 9,7 0,B 3,C 0,8 0,0 -1,9 -1,6 2,8 -1,5 9,2 6,5 5,3 -1,9 8,8 5,9 1,3 -1,8 9,0 0,4 1,4 7,7 -1,0 1,C 3,C 6,B 2,8 2,9 2,0 8,6 0,1 1,1 -1,4 2,C 5,C 2,4 -1,9 -1,1 -1,4 6,6 6,8 1,3 -1,9 9,8 4,C 6,9 3,C 7,4 5,6 7,1 3,B -1,5 7,0 7,1 4,0 2,C 2,0 -1,7 -1,7 3,8 6,4 -1,9 0,B 3,2 7,6 -1,2 8,8 5,7 0,C 5,B 7,9 8,9 6,3 9,2 7,1 2,0 1,2 6,5 7,5 4,9 7,6 7,C 9,4 6,3 4,0 1,6 1,1 9,3 3,4 7,5 -1,6 0,0 9,3 1,0 4,5 0,C 0,7 7,C 7,4 6,8 2,4 0,1 5,3 -1,3 4,1 -1,4 0,B 2,5 0,2 2,4 6,1 2,C 3,9 9,0 2,9 2,3 3,1 2,7 6,B 1,B 2,1 6,0 0,C 0,2 5,B 2,5 8,0 7,9 9,4 0,2 -1,4 2,8 6,7 8,1 1,6 3,2 -1,9 0,4 7,0 8,B 6,8 3,0 1,6 8,C 8,C -1,1 -1,4 5,0 2,B 7,0 4,2 5,C 9,B 6,B 0,9 4,3 5,5 7,2 4,6 8,5 0,5 5,1 4,5 2,C 0,5 2,4 3,C 5,3 4,7 4,1 1,4 2,B 9,6 -1,9 -1,5 0,C -1,7 4,9 8,4 2,B 7,8 3,4 3,4 7,C 6,7 3,4 0,6 3,C -1,8 1,7 5,8 2,8 -1,6 -1,7 9,3 6,6 7,C 7,7 -1,7 5,4 1,2 8,3 9,1 4,8 6,6 1,6 0,C 3,9 4,B 9,1 -1,3 8,9 6,C 2,6 0,6 7,0 9,9 2,0 0,3 -1,2 1,2 -1,3 3,8 0,9 5,1 9,B 6,B -1,8 1,8 1,7 0,1 -1,5 2,5 5,6 -1,9 3,2 7,0 9,4 6,B 0,1 -1,2 9,9 6,6 8,3 0,B 6,7 -1,6 2,3 7,3 7,4 -1,3 -1,7 8,7 8,7 6,4 6,2 9,3 -1,6 8,C 3,0 5,B 9,7 3,7 -1,8 9,6 9,9 7,4 -1,3 1,9 4,1 -1,8 6,6 2,0 -1,1 2,C -1,3 2,1 4,4 1,2 1,C 9,1 -1,0 7,6 9,2 7,3 4,6 3,9 2,0 2,C 4,1 -1,3 4,5 -1,4 -1,1 9,C 0,0 -1,9 2,5 -1,9 3,4 3,2 3,5 1,6 -1,8 6,6 -1,0 9,B 3,7 2,9 5,1 7,B 9,B -1,2 3,5 5,2 0,5 3,8 6,B 0,6 3,C -1,0 3,4 -1,1 5,B 0,1 -1,4 7,0 1,8 3,1 5,9 7,6 9,0 -1,0 8,0 4,1 0,6 2,7 -1,0 0,8 -1,2 4,0 3,1 -1,0 4,C 0,B 0,2 1,0 1,3 7,2 4,0 -1,9 3,0 3,8 7,7 -1,4 3,9 -1,1 3,2 9,0 3,B 1,9 -1,4 9,C 5,3 -1,9 -1,3 4,8 4,8 1,9 5,7 3,9 3,B 9,9 4,0 2,5 3,B 8,0 9,9 8,3 4,1 8,4 0,8 -1,2 2,9 -1,0 6,7 6,2 4,8 1,9 8,3 6,6 1,1 2,7 1,8 8,5 -1,8 2,3 5,9 3,6 1,8 9,3 6,C 9,9 -1,8 4,9 -1,4 7,6 5,3 -1,0 6,4 5,1 -1,9 1,C 7,C 0,4 -1,1 -1,4 -1,2 3,5 -1,8 4,B 0,B 0,1 0,5 7,B 0,9 1,B 2,3 3,5 6,7 6,9 9,8 7,4 2,5 0,C 6,4 -1,8 7,1 -1,4 7,9 7,9 7,5 0,4 3,7 3,0 1,4 7,9 -1,9 7,4 9,9 9,3 5,9 -1,2 6,C 1,B 1,3 -1,1 2,9 -1,3 1,0 4,8 6,2 2,3 0,3 6,9 7,3 -1,1 2,C 8,1 3,9 3,0 5,B 2,B -1,8 2,C -1,3 9,4 -1,1 3,1 4,C 2,4 7,C 9,9 -1,1 5,2 -1,5 7,3 -1,5 6,4 6,4 1,2 8,9 -1,5 -1,5 1,7 2,0 4,C -1,1 -1,3 0,C 0,1 3,B 1,1 7,C 5,6 6,5 8,1 5,1 4,C 9,4 2,B 2,B 5,C 8,7 1,2 7,C -1,0 7,B 9,4 8,4 -1,9 3,0 7,9 1,1 4,0 1,9 -1,1 8,0 6,C 5,2 4,1 8,B 6,7 -1,2 1,4 -1,2 -1,4 7,C 6,0 4,B 6,1 7,3 4,C 2,4 8,8 5,0 2,9 3,1 -1,3 -1,5 2,0 -1,2 0,9 4,C 1,0 -1,6 3,C -1,3 1,9 4,5 -1,1 4,5 8,2 -1,8 2,7 4,7 6,C 3,3 9,1 8,4 0,7 5,6 4,B 5,9 1,B 5,4 -1,4 4,4 4,2 1,8 9,4 6,6 -1,3 -1,2 7,0 7,0 8,4 6,0 9,0 3,5 2,3 -1,7 2,3 -1,2 4,7 0,0 3,2 -1,1 4,6 2,4 0,0 6,C 6,6 0,2 8,B 4,3 -1,9 -1,1 1,4 9,4 7,2 -1,2 0,6 5,C -1,7 1,C 5,5 3,B 6,0 5,B 4,C -1,6 0,C 5,9 3,1 5,C 3,9 7,8 -1,1 5,0 -1,2 9,B 0,0 3,C 6,7 8,C 5,6 3,9 7,5 6,1 9,B 6,8 -1,8 -1,1 3,3 -1,0 1,1 1,1 6,0 9,4 1,6 2,6 8,3 7,6 8,5 -1,2 3,6 0,B 4,4 0,4 8,4 0,2 7,6 6,4 2,0 -1,2 4,C 9,1 2,5 2,8 7,0 2,3 9,B 0,0 6,8 5,C 9,2 3,7 1,8 -1,9 6,9 7,5 7,2 9,C 8,B 9,0 -1,1 5,6 -1,5 8,C 2,B 6,0 2,0 -1,3 7,2 8,7 3,1 2,B 4,7 2,C 3,5 -1,2 6,B 1,3 0,0 7,6 2,B -1,2 4,2 9,C 1,4 2,0 -1,5 2,6 9,9 7,B 9,6 8,2 8,6 9,6 6,C 2,0 3,2 0,C 4,4 8,7 5,2 -1,1 7,6 7,B 6,5 1,9 2,B -1,5 4,3 -1,4 7,7 1,7 4,8 5,B 6,B 1,4 8,9 0,C -1,7 -1,0 2,1 2,5 3,2 2,4 7,2 1,B 7,7 4,1 -1,6 2,7 3,2 9,6 1,B -1,4 4,5 4,4 9,8 3,5 3,7 2,C 2,4 9,2 2,1 -1,6 2,C -1,6 -1,0 9,1 -1,6 8,B 2,C 5,5 -1,3 2,9 2,9 3,9 5,0 5,4 -1,4 -1,9 0,B -1,6 9,1 0,6 -1,0 7,1 5,7 0,2 2,1 6,9 9,1 1,7 3,7 -1,0 6,3 2,1 0,5 1,3 0,7 5,C 5,C 0,8 -1,0 -1,5 6,3 0,5 5,0 4,B 0,B 5,C -1,7 5,9 0,B 7,5 6,5 2,8 6,9 2,1 -1,5 7,0 -1,1 3,3 7,5 4,7 8,C -1,0 9,8 4,8 4,C -1,8 4,6 -1,7 -1,1 8,0 4,5 0,C -1,1 8,6 -1,9 -1,9 1,9 5,8 5,8 4,9 4,6 3,2 5,C 2,2 8,C 4,C 4,6 0,0 7,8 0,2 -1,2 -1,9 -1,9 7,5 -1,7 8,2 1,4 9,8 7,2 4,4 2,3 6,7 -1,2 2,B 4,C 3,5 0,5 9,1 9,0 7,3 9,9 6,3 5,7 6,2 7,C 5,8 4,8 -1,9 6,0 4,3 -1,9 -1,7 4,8 0,B 8,6 4,0 0,0 9,6 5,B 0,C 9,C -1,4 4,B 3,5 5,3 8,5 2,C 5,0 0,7 1,5 5,0 7,B 4,B 3,6 6,4 -1,6 9,3 5,2 6,9 -1,3 0,6 2,6 6,7 3,7 7,B 9,6 9,B 7,B 7,5 8,6 4,6 7,7 7,8 7,1 6,B 8,8 0,C 1,B 3,C 8,7 4,C 8,B -1,3 3,C 9,9 -1,4 8,1 2,9 8,7 -1,4 7,8 2,3 -1,2 6,C 1,B 1,4 5,B 4,C 5,3 8,3 0,2 0,7 7,0 -1,8 2,2 2,B -1,0 -1,4 9,4 5,2 7,B 8,B 3,5 -1,6 9,B 0,4 6,B 7,B 8,8 -1,3 7,3 5,B 7,3 1,4 0,C 1,9 -1,4 7,3 1,C 2,4 5,2 3,6 5,3 7,9 9,5 8,B 9,0 6,8 7,9 -1,4 6,7 9,2 5,8 4,B 5,5 0,3 2,C 9,1 2,C 2,1 6,2 7,5 2,B -1,8 9,3 9,4 6,4 -1,3 -1,3 4,3 3,1 7,7 -1,9 4,1 1,0 2,B 4,1 7,1 4,9 4,C 9,9 6,2 0,C 5,7 5,0 -1,7 0,3 5,8 2,9 6,1 1,6 1,6 2,4 5,0 6,9 -1,1 4,2 4,0 8,8 1,9 3,8 0,B 6,B 0,0 0,C 8,0 -1,4 8,1 8,2 -1,9 2,9 0,C 6,8 5,9 5,6 -1,1 3,0 5,0 0,4 1,2 -1,0 3,7 4,C 1,2 -1,9 2,5 -1,1 7,0 7,2 8,9 4,9 7,6 0,4 8,3 8,2 0,8 5,8 -1,1 2,9 2,C 9,9 6,4 3,7 2,3 -1,0 7,9 -1,6 9,3 3,B 2,7 -1,0 4,2 3,8 2,2 2,4 0,9 -1,0 1,C 0,1 4,8 1,8 9,1 -1,8 5,7 2,1 9,0 5,4 7,0 9,0 -1,1 0,3 9,C -1,0 3,B 2,1 4,B 7,6 -1,8 5,B 9,B 4,2 -1,8 4,B -1,9 6,0 -1,1 -1,1 1,0 7,4 4,8 -1,1 -1,2 6,B -1,7 9,7 7,B 6,6 5,C -1,5 6,4 -1,8 4,C -1,3 4,3 7,2 6,3 6,C 4,1 8,2 0,B 2,C 7,9 4,9 0,1 2,1 2,3 0,B 5,0 1,B 3,1 0,0 9,C -1,2 2,B -1,0 -1,8 -1,3 3,0 7,0 4,B 1,9 8,B 0,3 -1,8 8,0 7,1 -1,2 0,4 5,6 1,8 -1,5 1,0 -1,6 -1,7 9,B 9,C 1,B -1,1 6,9 6,5 7,2 2,B 6,6 8,1 5,6 3,C 9,6 -1,0 9,9 2,7 9,0 7,C 5,C 0,0 -1,5 -1,6 7,C 7,3 8,7 7,B 3,7 -1,9 3,0 6,9 8,4 9,5 6,4 -1,1 6,B -1,8 7,8 8,9 0,9 6,5 6,B 0,9 3,5 6,C -1,7 -1,7 5,2 3,6 4,4 -1,2 8,C -1,8 -1,6 2,9 2,7 9,7 2,9 8,C -1,2 7,9 1,B 0,B 5,2 7,5 -1,4 0,6 -1,3 9,9 7,7 2,C 7,C 4,C -1,9 6,6 1,B 1,5 0,6 4,3 1,3 0,3 4,2 -1,8 4,B 6,1 -1,2 7,B 1,5 4,4 3,1 0,C 6,0 3,7 -1,8 0,3 9,3 -1,6 4,B -1,1 6,4 2,0 8,3 4,9 1,3 4,6 9,0 -1,0 8,2 1,9 -1,3 6,4 6,0 -1,9 8,B 0,4 1,6 9,5 7,5 1,4 1,1 8,1 -1,2 6,9 -1,1 9,1 1,3 7,B -1,9 9,2 2,3 2,7 9,0 2,8 2,6 9,B 6,6 9,C -1,1 -1,5 -1,8 3,1 -1,4 1,0 0,5 1,B 0,0 -1,5 1,3 2,C 5,9 7,9 -1,2 -1,0 -1,9 -1,7 8,5 1,2 5,5 5,7 0,B 2,5 6,C 1,9 4,7 1,5 -1,2 -1,2 3,3 5,6 3,4 8,B 5,8 2,B 8,5 1,2 -1,9 -1,8 2,B 7,1 5,6 8,5 -1,2 8,4 8,C 2,B 9,C 9,B 2,9 5,7 -1,0 -1,4 3,6 7,2 3,8 6,8 9,1 2,0 6,C -1,0 0,1 2,7 2,7 1,2 4,7 9,8 -1,5 7,9 8,B 0,6 4,1 1,1 8,0 7,0 9,2 1,C 9,1 2,5 -1,0 2,5 8,B 2,0 -1,9 5,9 2,6 7,C 0,3 1,3 8,4 9,8 8,3 -1,7 -1,5 3,0 8,1 2,8 5,6 6,9 4,5 -1,3 6,4 8,2 -1,3 7,4 8,5 8,4 2,C 8,2 -1,1 0,9 9,8 8,6 0,9 -1,3 9,2 4,4 9,7 1,7 -1,6 1,2 -1,9 5,3 8,9 -1,8 -1,7 5,4 3,B 3,B -1,3 1,2 7,4 5,B 6,1 8,5 5,C 3,C 9,0 1,5 1,7 2,6 6,C -1,2 5,5 8,9 9,0 4,7 3,3 0,7 7,6 5,2 0,4 3,9 2,7 -1,1 1,2 3,3 5,C 6,1 1,2 5,B 3,0 4,8 9,C 7,1 9,5 2,7 6,0 -1,4 4,C 1,1 -1,2 -1,7 -1,1 -1,6 9,9 2,0 -1,0 2,B 1,7 5,3 2,7 6,3 2,2 3,C 1,3 5,C 7,3 9,B 6,3 4,2 1,B 0,7 1,8 9,1 1,5 9,9 1,5 7,3 4,6 -1,1 5,1 9,6 4,B 2,0 1,9 2,B 8,3 2,1 3,3 -1,8 3,1 6,7 -1,1 1,0 9,9 -1,7 4,C 2,B 0,7 1,7 3,8 1,3 0,0 7,C 2,4 2,1 -1,8 8,6 -1,9 5,3 1,5 8,B 6,8 8,B 9,3 5,2 8,5 2,3 0,C 9,5 2,4 0,8 2,B -1,3 8,7 2,C 9,C 4,7 6,B 7,8 1,C 6,B 6,0 7,5 7,7 5,4 7,5 -1,9 7,C 3,1 0,B 6,4 -1,4 8,B 9,6 0,C 9,B 0,8 1,4 -1,8 9,2 1,B -1,9 7,6 0,8 5,B 5,4 9,4 9,C 4,6 1,8 2,C 3,3 6,4 5,C 0,2 9,3 -1,5 5,B 8,7 9,1 1,8 -1,3 2,3 7,5 2,C 8,7 4,9 5,4 -1,7 8,5 7,9 2,4 -1,3 5,0 -1,5 0,3 -1,9 0,1 1,5 6,3 7,2 2,6 5,7 0,5 0,B -1,0 -1,7 -1,8 -1,3 0,8 3,C 2,3 3,0 5,9 3,6 0,7 2,8 2,9 1,C 9,2 5,0 0,3 7,B 9,1 3,B 5,9 3,6 -1,4 6,3 -1,9 2,C -1,8 7,5 2,2 2,5 5,9 4,0 6,5 8,3 1,1 3,0 9,6 8,8 7,7 4,B 7,3 4,6 1,9 1,2 1,C -1,8 8,C -1,1 8,4 -1,5 -1,2 -1,3 5,1 -1,8 0,2 9,3 8,1 3,7 6,9 9,8 3,C 2,B 0,3 6,4 7,8 6,3 -1,7 0,B 7,5 7,0 8,B 4,2 3,C 6,6 5,C 9,5 -1,0 6,5 -1,7 5,B -1,4 6,C 0,7 5,B 1,B 3,5 -1,7 0,6 5,3 3,5 8,8 7,6 6,1 2,6 3,5 7,C 5,3 1,6 0,8 -1,3 7,2 5,B -1,6 9,2 9,2 8,1 -1,7 -1,5 6,6 7,7 3,C 5,B 5,1 6,5 9,2 9,8 0,B 8,2 6,2 4,3 7,4 9,9 6,6 2,8 8,B 3,3 6,B 3,8 0,2 6,B 7,8 -1,1 9,8 2,1 8,7 5,B 2,9 9,6 4,9 7,5 0,B 1,1 1,9 0,B -1,6 6,5 8,0 6,C 9,C 1,5 8,5 5,3 -1,3 7,5 5,1 2,7 -1,8 8,6 5,4 6,2 8,B 8,5 8,B 8,C 2,6 8,C 8,8 1,6 5,6 -1,3 5,0 2,2 7,4 0,9 0,B 9,3 4,4 -1,8 8,B 0,3 5,C 6,B 1,C 0,1 6,9 0,0 -1,6 3,9 7,9 3,C -1,7 7,B 4,C 0,6 5,2 -1,3 -1,0 0,C 5,B 1,8 5,B 5,C 7,1 4,0 4,B 5,1 -1,5 7,1 -1,9 0,9 -1,5 8,8 5,3 1,9 8,3 0,1 8,3 0,5 5,B 1,6 -1,4 5,3 5,1 -1,0 3,C 4,8 9,C 8,7 4,4 6,9 3,B 4,4 6,8 6,4 1,3 1,1 5,5 3,B -1,6 4,2 1,8 3,9 -1,5 4,C 2,3 0,0 4,9 -1,4 9,4 7,5 0,6 4,3 4,2 1,B 3,B 0,3 -1,0 9,C -1,5 8,1 4,9 2,C 1,C 1,1 7,5 -1,2 -1,1 3,2 -1,5 0,B 4,7 1,7 3,6 -1,6 2,2 6,2 4,6 1,4 2,7 0,1 -1,9 1,7 0,4 -1,2 -1,8 -1,1 -1,5 7,6 9,7 7,B 9,4 8,C 4,4 5,1 5,1 -1,5 8,2 9,C 1,2 3,4 5,0 0,0 4,0 7,2 1,C 2,6 7,0 4,3 9,9 8,5 3,6 8,6 8,9 -1,8 1,6 -1,9 2,4 6,5 3,2 -1,3 1,4 8,9 3,5 5,0 -1,9 9,8 3,B 7,3 -1,0 1,C -1,7 5,0 3,1 5,3 2,9 -1,0 -1,7 8,9 1,C 6,3 9,3 6,C 2,9 2,6 1,5 -1,6 0,2 0,3 2,C 8,0 -1,7 3,3 1,5 6,4 -1,0 5,2 6,6 3,B 1,4 3,B 1,2 1,8 8,3 7,3 4,2 -1,9 8,0 4,C -1,8 0,B 1,B 7,5 8,5 -1,9 -1,7 7,6 1,1 -1,9 7,C -1,0 -1,1 1,5 -1,2 2,C 0,1 -1,1 0,6 2,8 -1,2 4,B -1,2 0,C 9,7 5,C -1,3 -1,0 6,1 3,B -1,3 -1,3 8,7 4,C 4,8 0,9 6,2 5,3 6,7 -1,6 2,B 4,9 6,3 3,6 -1,2 9,4 2,7 4,0 3,2 2,9 4,9 3,4 9,5 0,C 7,1 5,2 7,4 7,3 -1,8 8,4 -1,2 5,9 1,6 -1,6 9,9 2,2 4,1 -1,8 3,3 0,B -1,9 9,1 9,1 4,C 7,B 2,B 0,3 8,0 -1,5 -1,3 9,B 6,B 5,5 1,0 4,C 8,8 3,6 8,5 0,8 2,6 -1,2 -1,4 5,4 4,7 -1,2 -1,3 1,2 1,3 0,B 6,2 5,7 3,1 -1,2 -1,1 8,B 1,1 4,1 7,1 -1,2 0,9 -1,0 3,C 7,B 9,2 7,3 -1,3 1,0 -1,4 -1,5 7,C -1,2 2,2 3,3 1,B 5,2 1,5 4,6 8,B 6,C 7,B 1,5 1,2 0,2 0,8 0,C 7,8 0,2 5,B 2,9 7,C 3,1 9,3 1,5 -1,8 5,4 4,2 0,C 3,1 9,2 2,2 3,2 -1,4 7,9 1,B 4,3 3,5 5,7 2,1 1,B 9,6 -1,4 0,8 3,1 4,7 6,6 6,B 1,4 9,B -1,1 -1,2 4,C 5,1 6,2 -1,4 6,C 5,6 0,5 6,1 4,2 -1,0 9,3 1,2 -1,3 9,3 1,0 9,8 -1,0 6,6 0,0 6,1 7,9 3,9 5,6 3,3 5,8 2,6 4,6 7,5 9,3 -1,4 9,6 5,0 9,1 4,1 3,4 9,2 -1,5 2,2 -1,6 2,8 8,7 3,9 -1,6 -1,6 5,9 5,8 5,B -1,2 9,1 3,5 3,6 2,3 -1,7 3,2 6,C -1,4 7,3 8,3 3,B 3,4 3,6 -1,9 2,2 7,6 6,6 6,8 3,3 1,C 6,1 8,6 6,8 4,8 3,5 6,B -1,3 6,7 3,2 0,3 5,0 9,7 8,6 6,9 9,9 6,6 4,8 -1,1 4,5 1,2 -1,9 6,7 1,7 3,1 6,B 0,B 6,4 2,C 5,B 1,2 5,8 -1,6 8,6 2,9 -1,2 1,B -1,0 0,7 6,C -1,6 3,6 2,4 6,B 3,C 0,3 7,7 5,4 2,5 5,2 1,C 3,B -1,9 -1,8 0,B 6,3 2,7 2,1 5,1 9,8 1,0 1,C 3,0 5,4 3,9 9,9 4,2 -1,5 -1,6 8,C -1,9 3,0 2,B 5,B 0,7 1,8 2,C 2,7 -1,7 4,0 0,8 3,3 5,7 6,9 2,1 1,7 2,3 8,C 6,8 -1,7 4,6 6,0 7,C 6,2 7,4 7,8 -1,7 9,C 1,C 0,1 8,8 6,7 -1,0 3,8 -1,1 6,9 6,2 9,B 0,6 9,5 9,4 9,2 -1,5 0,7 3,9 2,0 1,B 7,4 1,0 5,9 -1,8 3,5 -1,1 8,B 3,6 0,C 6,C 1,8 -1,4 3,0 -1,1 6,0 7,C 0,B 3,C 4,0 7,8 7,9 0,9 2,1 0,2 1,5 3,8 -1,0 8,7 -1,3 4,7 0,4 4,7 8,5 4,B 9,1 3,B -1,2 0,7 8,5 4,B -1,8 3,5 9,1 1,C 9,5 6,3 6,7 6,1 6,4 9,7 2,5 6,B -1,2 2,5 6,8 9,7 -1,9 0,C 6,5 1,C -1,0 9,C 0,B 6,C 5,B 7,9 -1,1 -1,6 5,2 7,C -1,6 5,2 -1,2 8,C 2,4 7,6 5,C 3,4 2,5 0,2 6,0 7,C 1,5 6,B -1,4 9,B 3,3 -1,1 4,2 9,6 2,1 9,4 -1,0 5,C 0,2 -1,9 0,2 -1,1 8,5 7,3 4,5 8,7 6,3 0,8 7,3 -1,3 1,2 4,C 2,9 1,C 8,5 -1,4 7,B 2,4 1,1 7,C -1,7 -1,6 -1,9 9,4 1,0 3,B 4,8 -1,3 9,9 0,B 1,5 2,B -1,7 -1,5 4,C 5,6 8,5 1,C -1,7 5,9 5,C 9,C 5,0 6,7 5,C 7,5 7,9 0,9 2,B 3,4 -1,9 7,3 0,3 8,C 8,7 5,4 1,2 0,8 4,7 -1,4 4,3 5,9 1,3 0,8 0,1 8,2 7,5 4,6 4,7 5,B 1,9 5,6 5,7 1,9 0,8 5,6 -1,0 4,4 9,8 -1,3 -1,1 8,9 2,6 6,8 1,0 8,2 6,C 3,5 8,5 4,3 -1,3 8,2 6,9 4,6 0,7 2,7 5,3 4,5 5,C 5,4 5,1 9,6 -1,2 8,6 -1,6 4,3 4,6 6,4 0,8 8,4 0,5 3,B -1,9 0,4 4,6 7,8 2,3 -1,5 1,B 6,6 -1,5 8,B 7,5 -1,6 1,8 -1,9 4,2 4,5 6,7 3,2 3,3 -1,5 9,B 6,C 4,9 6,6 3,5 0,6 9,C 8,5 0,C 1,C 4,B -1,0 4,C -1,5 9,5 0,6 4,3 1,4 5,9 6,1 -1,6 0,2 6,C 1,9 8,8 3,2 9,C 8,2 4,2 7,C 2,C 8,C -1,8 6,1 8,1 9,0 4,2 7,C 0,9 4,1 -1,3 -1,7 1,4 8,C 1,2 1,1 7,C 1,4 -1,9 5,6 7,0 9,C 0,8 3,7 8,1 -1,3 5,5 9,4 7,1 1,5 3,9 4,1 6,C 3,7 1,8 -1,5 1,7 2,0 7,6 7,C -1,7 -1,9 0,8 8,2 7,9 4,C 1,0 -1,2 1,1 1,6 2,6 5,B 7,C 4,5 1,4 3,5 2,7 -1,5 7,1 8,7 9,2 8,9 0,7 -1,6 -1,5 5,B 0,4 9,6 6,C 5,2 3,1 9,1 -1,4 2,7 3,3 8,B 9,9 7,9 2,1 -1,7 9,C 3,3 2,6 -1,4 4,8 3,9 3,7 1,3 8,3 7,6 5,C -1,1 1,2 4,C -1,7 -1,1 3,3 -1,4 1,9 3,B 0,3 0,3 0,2 5,8 -1,9 7,4 0,B 6,3 6,3 -1,8 6,1 8,B 8,8 1,8 1,2 2,9 2,8 5,7 1,5 8,1 -1,5 7,C -1,1 0,9 -1,1 4,6 4,6 7,0 2,0 -1,7 8,2 6,3 -1,0 9,2 5,2 7,8 8,8 -1,6 4,9 5,1 9,2 4,2 2,2 6,4 8,8 9,8 7,1 4,2 3,B 2,5 5,6 4,3 2,7 9,3 1,7 6,7 2,C 3,2 8,C -1,1 1,C 5,7 -1,5 4,C 2,8 1,2 1,6 5,3 8,4 1,B 9,B 1,4 -1,8 8,1 -1,5 -1,8 6,0 2,2 0,7 -1,7 -1,7 -1,3 3,0 0,0 2,8 9,5 5,9 -1,6 3,1 5,9 7,2 8,C -1,2 2,0 9,8 0,1 4,3 2,2 7,8 7,C 4,3 -1,6 0,7 -1,7 -1,4 2,6 -1,9 7,7 5,B 2,3 6,B 0,8 2,8 3,9 3,8 1,C 9,1 4,4 -1,0 -1,9 4,B -1,8 8,0 5,4 2,9 2,7 4,4 2,7 0,8 -1,7 7,8 -1,4 -1,4 4,0 7,7 4,7 -1,9 1,0 0,2 7,3 7,B 2,3 4,C 7,B -1,3 7,2 8,1 1,9 -1,5 9,3 1,7 2,7 4,B 2,7 9,C 1,B 0,6 6,C 2,C 0,5 0,C 3,B 7,B -1,2 9,4 4,5 -1,4 4,1 3,4 0,3 4,B 0,7 -1,4 4,2 -1,8 -1,3 8,0 0,3 6,B 9,2 2,4 6,8 -1,8 2,7 2,3 1,4 3,4 5,B -1,6 3,9 1,C 9,8 6,4 8,3 9,3 4,8 5,9 -1,7 0,B -1,1 6,8 9,0 -1,4 -1,8 6,C 6,3 2,3 7,3 8,7 6,3 4,B 2,3 -1,5 0,1 7,6 6,C 9,2 7,4 0,9 -1,2 6,0 5,7 9,7 6,5 6,2 0,1 7,0 2,B 6,5 5,3 0,8 8,B -1,8 9,5 7,B 0,3 3,2 1,C -1,3 0,C 0,0 7,2 3,8 7,C 1,C 0,C 6,4 5,6 2,3 -1,0 6,6 7,C -1,9 -1,2 0,B -1,6 5,B 1,C 9,8 9,B 2,1 0,7 4,4 3,6 6,9 9,C -1,0 3,7 0,3 6,B 7,0 3,1 2,C 1,8 -1,1 3,6 6,0 3,6 7,4 2,1 -1,5 -1,9 0,3 2,C 8,7 3,2 6,1 4,5 9,2 2,2 3,9 -1,7 -1,4 7,6 -1,2 5,1 1,6 6,1 7,0 1,7 0,6 6,6 -1,5 0,1 1,2 -1,8 0,B 6,7 8,3 0,1 6,1 6,8 4,3 -1,5 3,2 3,1 -1,1 5,0 0,8 1,9 3,B -1,9 -1,5 -1,7 4,7 0,1 -1,1 4,1 6,2 4,4 7,6 -1,2 5,B 5,0 1,9 9,3 6,6 9,4 -1,6 6,4 -1,5 0,1 6,8 9,B -1,3 9,9 2,9 5,7 2,2 3,8 5,4 0,8 -1,5 -1,5 9,6 7,C 2,0 7,B 0,6 -1,4 9,4 2,2 -1,8 7,7 -1,9 7,9 5,7 3,B 7,B 3,3 -1,2 3,5 5,B 0,B 4,1 2,8 3,8 -1,2 8,6 8,8 2,1 9,C 2,1 7,1 7,7 -1,8 3,9 -1,2 9,6 -1,4 2,C -1,8 3,4 1,B 9,4 1,1 9,C 3,B 2,C 7,2 8,8 5,5 -1,1 2,9 1,1 -1,7 3,4 7,8 9,B 1,C 0,5 7,5 2,B 6,6 6,C -1,0 5,B 0,8 6,B 1,B -1,7 4,2 2,5 6,5 5,4 9,6 5,6 5,C 0,4 -1,1 8,9 7,9 -1,8 4,3 0,1 8,0 2,7 -1,1 3,5 4,C 3,4 4,7 -1,5 -1,6 8,7 4,C 5,1 -1,1 3,C 0,7 4,C 7,7 1,2 -1,2 4,C 6,6 8,1 7,8 5,7 0,3 2,0 0,4 4,6 9,7 5,1 0,5 -1,0 1,6 3,2 8,1 4,1 -1,1 -1,0 5,6 6,9 1,C -1,9 -1,8 9,2 2,0 6,3 -1,1 -1,6 4,C 8,5 7,8 8,0 6,4 6,9 6,9 -1,4 0,C -1,4 4,C 9,B 0,6 0,1 -1,6 8,8 -1,3 4,3 2,7 4,0 6,C 9,6 4,1 1,C 1,5 5,2 1,7 0,B 8,C 6,5 2,7 5,5 8,5 9,B -1,3 1,4 5,B 7,6 2,2 -1,5 -1,2 8,2 9,C 4,7 8,6 -1,7 -1,3 6,0 3,C 9,1 4,B 4,6 2,8 4,2 7,9 6,B -1,5 0,1 5,5 5,8 3,8 8,8 5,4 8,B -1,2 2,2 5,8 -1,5 7,B 3,1 7,6 5,5 -1,5 -1,4 -1,6 -1,9 4,4 3,9 8,3 3,B -1,2 -1,2 6,5 2,C 9,5 0,C 5,1 7,2 5,B -1,6 -1,5 3,C -1,8 4,4 9,C 6,5 6,7 9,6 5,1 5,6 9,9 -1,0 2,1 9,7 3,B 1,2 8,6 3,7 5,0 -1,9 0,4 3,5 1,B 1,8 5,2 0,6 7,B 3,1 9,0 3,4 5,2 5,C 1,1 3,B 8,6 -1,9 -1,6 5,3 -1,2 7,B -1,3 3,B -1,6 -1,9 7,8 3,2 8,1 8,0 7,3 3,3 1,9 8,2 3,C 0,0 2,6 7,9 9,2 0,5 6,6 6,8 0,B 5,C -1,5 8,9 7,9 9,8 3,8 0,3 4,4 -1,6 2,4 -1,9 0,5 9,8 3,5 5,B -1,0 -1,6 2,5 2,7 3,9 3,C 4,8 7,8 7,C 3,8 0,C 4,B 3,5 2,1 9,B 7,8 -1,0 4,9 2,C -1,1 5,B 5,7 1,0 -1,6 7,5 4,8 7,8 5,C 5,9 8,B 9,4 4,0 4,C 2,2 2,B -1,2 5,B 4,4 9,C 5,5 5,B 8,C 9,5 1,5 1,B 6,9 3,1 -1,3 0,C 9,4 -1,6 3,2 5,C 3,C -1,7 3,9 5,C 0,C 6,1 5,3 3,4 8,1 2,B 6,3 5,4 8,6 8,9 6,B 3,B 6,9 4,8 8,C 7,C 7,C -1,7 7,4 5,5 8,4 -1,2 3,6 7,5 1,3 4,7 5,2 1,3 -1,2 -1,6 3,0 7,C 8,C 8,0 -1,9 5,3 6,B 0,6 3,8 9,3 4,9 4,3 3,4 -1,0 -1,7 5,C 2,B 6,9 7,4 4,0 6,4 8,4 4,B 5,2 0,5 0,4 5,C 0,0 0,5 7,C 0,6 7,8 8,6 -1,4 5,8 -1,0 5,1 6,0 2,9 0,3 -1,8 4,8 -1,9 8,7 1,7 1,3 6,B 6,0 9,7 7,C -1,6 6,9 4,6 1,9 9,5 -1,7 3,C 5,2 8,B 2,B 6,B -1,7 5,B 6,2 0,C 8,5 9,B 9,C 7,4 6,2 1,6 5,2 3,5 7,B 4,C 8,9 7,C 3,3 2,6 4,B 5,C 0,0 2,5 1,2 6,3 1,2 9,4 3,7 6,5 8,7 1,5 -1,4 2,9 8,8 0,5 8,8 1,6 -1,1 2,B -1,0 8,2 0,6 9,7 -1,9 -1,0 0,1 2,0 0,8 8,9 3,4 -1,2 9,1 0,6 2,5 6,C -1,4 -1,7 -1,6 4,7 1,6 -1,8 9,9 -1,2 -1,0 5,3 -1,8 0,5 9,6 2,B 0,3 3,1 -1,9 3,B 8,1 -1,1 4,3 4,9 4,2 7,0 7,B -1,0 5,8 4,7 6,4 5,6 0,B 3,0 1,9 -1,5 4,1 0,2 -1,2 -1,4 2,C 7,8 -1,2 9,4 5,9 4,B 9,C 0,9 7,5 2,6 7,3 6,5 2,7 -1,0 0,B -1,3 -1,8 4,7 6,7 6,3 0,7 5,8 -1,2 3,8 7,5 -1,1 2,5 -1,4 1,0 5,0 -1,4 0,4 -1,5 0,3 1,7 8,6 1,2 7,0 0,C -1,2 -1,0 -1,1 4,3 0,8 7,9 3,3 8,1 7,8 9,B 8,5 -1,7 -1,3 1,4 -1,9 8,9 8,B 3,7 4,6 1,2 6,3 3,0 4,B -1,4 6,5 9,C 9,B 0,4 9,9 8,1 0,7 9,B 1,C 3,3 5,5 4,1 9,9 -1,5 3,7 -1,1 9,4 8,B 5,8 8,1 1,6 -1,6 5,8 1,0 -1,2 -1,0 4,8 5,3 5,6 5,4 8,8 5,B 2,7 0,4 5,B 9,2 8,6 0,1 1,7 1,B 7,C 3,1 1,7 3,9 3,C 7,C 5,7 1,4 3,1 5,4 -1,1 5,3 8,9 9,B -1,4 4,2 0,5 3,B -1,8 0,B 9,0 -1,1 5,C -1,6 8,1 8,0 3,5 4,7 8,0 0,C 0,9 4,4 4,C 9,5 1,0 0,6 8,8 1,6 6,4 0,2 6,8 3,0 5,3 8,2 1,0 6,4 -1,8 7,5 2,9 6,3 4,0 -1,4 2,7 7,1 7,4 9,2 2,4 5,7 0,2 7,2 8,7 7,5 7,C 6,3 -1,9 9,C 5,8 9,4 5,B 9,B 9,6 -1,4 5,9 -1,8 -1,9 -1,3 -1,1 7,6 3,B 0,7 5,5 -1,8 4,3 -1,3 2,9 8,4 -1,1 6,4 9,B 2,B 9,C 4,C 5,0 1,2 5,5 6,7 -1,5 1,C -1,3 0,3 3,3 9,C 4,6 4,2 1,B 1,0 3,8 9,3 5,0 2,5 2,4 3,B 3,B 6,B 7,C 9,9 5,9 -1,5 7,B 1,7 2,8 0,2 3,4 6,B -1,7 -1,7 -1,7 7,4 0,C 4,B 6,1 9,7 3,7 2,3 8,3 3,6 -1,5 0,C 4,5 7,4 3,B 0,C 3,2 0,C 9,2 -1,1 5,4 1,8 6,1 7,B 6,B -1,8 1,2 9,1 7,C 0,5 4,6 6,6 7,9 4,0 2,9 3,1 9,C 9,8 1,3 3,7 -1,6 1,7 -1,8 0,5 0,B 5,B 6,1 3,B 9,9 4,0 1,C 4,4 7,2 -1,7 7,3 7,6 -1,3 -1,0 5,2 -1,6 4,0 7,0 4,6 9,7 1,2 8,0 1,8 1,2 5,4 -1,9 -1,8 -1,6 7,0 8,5 4,C 0,B -1,1 2,B 7,C 7,B -1,1 -1,7 6,8 4,8 6,2 9,C 3,B -1,6 2,9 5,C 7,4 -1,9 6,2 2,C -1,2 7,7 7,B 8,B 3,C 1,B 6,6 0,B 6,B 5,8 1,5 5,B -1,5 9,0 -1,4 7,0 6,B 1,6 8,C -1,7 7,C 6,8 0,C 8,2 1,7 6,C 2,6 2,C 7,0 9,C 5,C 2,C 6,C 3,0 5,1 -1,0 1,0 8,2 -1,6 3,9 7,0 0,9 0,0 -1,6 7,2 8,8 0,B 0,B 4,2 -1,9 5,9 4,7 -1,4 2,6 3,8 8,B 4,C 3,8 9,5 -1,9 3,B -1,9 7,7 -1,8 -1,4 0,0 8,0 8,2 4,8 -1,7 4,3 -1,5 6,9 7,4 -1,2 4,1 4,C 9,6 0,C 4,3 -1,5 8,7 0,4 -1,0 8,8 -1,8 6,B -1,9 5,7 1,6 7,6 6,8 3,5 2,B 6,B 2,4 3,B 4,C 8,9 -1,4 7,3 1,5 -1,3 7,8 0,4 3,9 8,7 4,8 4,3 -1,2 4,5 9,8 -1,2 5,B 2,9 9,4 2,2 6,6 -1,0 5,3 1,6 -1,0 0,C 1,6 1,1 9,6 6,3 1,8 0,C -1,7 3,2 1,8 2,B 7,0 0,C 4,6 0,3 5,4 -1,6 5,C 4,C -1,1 4,C 2,1 8,7 3,8 6,C 7,6 7,0 6,B 3,9 7,1 -1,4 3,B 2,B 8,C 3,C 6,5 4,B 5,2 7,2 1,C 5,C 0,9 4,5 0,4 1,7 4,B -1,5 7,6 3,1 3,C 5,6 7,7 1,0 4,9 -1,1 7,6 1,1 5,4 4,5 0,3 -1,9 9,7 2,1 6,5 7,6 2,4 1,1 -1,7 -1,9 4,B -1,1 -1,3 7,B 8,6 0,2 8,8 -1,0 3,8 7,C 5,7 -1,6 3,7 4,1 3,2 -1,2 -1,8 -1,6 -1,8 7,7 -1,4 -1,2 9,4 9,0 3,C 1,C -1,4 5,5 -1,5 2,4 2,6 0,7 4,1 9,0 6,2 -1,5 7,6 4,8 0,7 2,1 5,1 6,6 8,9 2,B 0,9 -1,3 4,9 3,7 9,B 6,0 4,0 5,0 -1,7 8,3 -1,7 3,B 0,3 4,C -1,0 7,7 0,1 3,C 9,1 -1,0 7,7 3,1 0,2 5,4 0,0 0,8 9,1 3,3 2,B 2,3 2,3 4,7 -1,5 9,2 5,C -1,2 8,9 2,2 6,9 3,7 -1,9 2,7 7,2 -1,1 -1,3 0,9 -1,7 1,1 5,6 6,1 3,5 0,C -1,2 9,B 0,7 9,2 9,0 -1,7 5,6 -1,9 0,B 6,8 7,5 4,5 5,3 0,3 8,1 6,B 1,B 6,2 8,0 4,0 0,7 0,2 -1,8 3,B -1,5 1,4 9,B 2,0 2,4 2,6 2,B 5,2 4,7 2,3 0,5 0,4 4,7 -1,2 3,2 -1,9 8,C 6,5 9,9 9,C -1,3 3,9 -1,9 3,5 7,9 8,3 4,B 2,6 -1,9 -1,3 1,8 6,9 -1,3 1,5 -1,1 5,6 3,2 2,C -1,4 8,7 6,1 9,B 8,3 7,6 1,0 4,5 8,2 7,C 7,7 2,3 3,0 6,2 -1,5 3,6 7,B -1,0 5,9 6,9 4,2 1,1 7,6 6,C -1,7 0,5 6,C 2,0 9,7 8,4 4,B -1,4 2,8 0,2 5,8 3,3 8,1 7,5 -1,4 -1,6 6,0 5,3 0,1 6,3 -1,2 8,2 -1,7 3,8 6,7 0,6 8,9 -1,4 -1,5 5,9 0,2 -1,7 3,4 2,9 8,8 8,8 6,3 7,5 1,7 0,C 6,9 2,9 -1,4 0,8 -1,3 8,3 0,5 -1,4 9,6 4,0 2,7 8,C 4,0 1,4 -1,8 1,8 -1,8 7,6 9,7 0,6 9,2 -1,2 1,9 -1,2 -1,1 8,C 4,B 5,8 7,6 2,2 3,C -1,9 9,B -1,0 8,C 6,B 0,6 3,1 7,7 8,6 -1,2 6,4 9,9 5,7 2,3 -1,9 8,C 6,C -1,2 3,1 -1,6 -1,4 8,B 5,4 4,B 1,8 0,6 2,1 6,4 -1,9 9,0 0,2 7,C -1,6 5,B -1,6 -1,0 1,C 3,5 8,6 3,2 4,6 1,C -1,4 6,C -1,7 3,6 6,B 7,9 8,9 6,9 -1,4 9,4 -1,7 5,2 -1,4 5,4 9,6 0,1 8,C 0,5 1,6 -1,3 -1,5 5,5 8,4 8,9 7,B -1,6 0,7 8,1 5,6 3,8 3,5 0,1 8,5 6,C 2,3 5,C 2,9 5,7 3,C 9,C -1,9 9,6 6,7 2,3 9,3 2,2 6,7 4,5 1,3 0,7 9,7 -1,2 4,2 3,5 0,5 9,0 -1,2 8,9 8,3 9,8 7,1 -1,6 6,C 5,2 7,B 3,C 8,4 8,7 7,7 8,B 2,7 1,6 4,1 -1,4 4,8 8,0 -1,4 5,7 1,C 0,C -1,4 2,5 -1,4 5,B 0,1 2,5 6,9 9,9 0,B 6,4 7,5 -1,4 0,9 9,C 5,B 4,9 2,1 4,3 7,0 6,8 5,7 -1,9 5,8 -1,1 3,9 3,5 5,8 4,C 5,0 -1,8 0,6 5,8 -1,3 9,B 9,0 2,1 8,4 8,7 -1,6 -1,6 -1,8 9,7 0,1 6,2 9,0 1,8 3,5 -1,3 1,6 -1,3 5,5 5,3 9,2 5,0 0,4 5,B 3,0 9,3 -1,9 4,B 4,B 1,7 3,7 3,5 5,0 7,3 -1,2 6,0 3,0 -1,0 9,4 1,7 8,0 8,1 6,5 -1,1 8,9 4,5 3,B 4,9 5,2 -1,7 -1,2 2,2 4,4 6,C 6,3 2,1 8,C 9,C 8,B 1,9 9,0 0,7 5,C 1,B 4,7 9,4 9,3 -1,8 3,0 6,8 9,0 1,4 3,7 6,C -1,1 8,B 0,9 8,B 6,4 0,2 6,7 1,2 4,5 6,C -1,6 5,3 0,2 -1,5 3,3 7,6 6,3 3,B 1,6 7,6 0,5 5,C 9,5 9,2 9,B 5,1 1,B 1,B 3,0 9,1 9,C -1,2 5,1 2,0 3,1 -1,6 -1,6 8,0 5,9 -1,0 -1,9 -1,4 4,0 -1,7 2,8 7,2 -1,6 2,3 4,1 1,3 6,C 4,C 7,8 0,6 -1,3 -1,8 8,5 -1,4 9,B 8,7 2,7 4,5 2,3 9,2 6,4 8,C 2,2 0,4 5,1 3,2 6,1 9,8 -1,9 9,4 2,7 0,9 3,B 6,2 2,8 0,1 1,9 2,B 8,8 8,B 7,7 -1,5 7,1 -1,4 -1,3 5,1 7,7 0,B -1,0 6,2 -1,5 0,B 6,C -1,8 9,9 -1,5 7,9 9,C 0,4 6,6 -1,1 1,6 5,4 6,8 3,6 6,5 5,7 4,2 9,1 5,B 1,1 4,8 7,0 -1,1 8,4 9,4 6,9 -1,8 -1,8 -1,4 0,4 5,4 4,C -1,5 3,4 6,6 6,0 8,8 -1,9 9,9 0,3 8,B 1,C 7,8 5,8 4,8 8,0 6,4 9,4 0,B 0,7 5,B 7,C 2,C -1,6 9,C 9,B 8,B 6,1 9,B -1,4 8,8 1,4 8,1 5,5 8,C 3,9 2,B 6,B 0,1 3,7 0,8 3,7 8,1 2,B 9,8 5,4 9,B 9,8 5,B 3,6 8,1 4,6 4,5 3,4 9,C 5,2 8,B -1,2 6,3 4,6 1,2 9,1 -1,7 8,B 5,1 0,2 6,2 1,2 -1,4 0,8 -1,7 7,5 -1,9 0,9 9,C -1,2 9,B 9,9 -1,3 2,4 -1,1 -1,5 5,3 -1,0 5,5 3,C 4,4 1,4 6,9 -1,4 9,8 3,B -1,0 9,3 2,9 6,0 -1,7 6,6 4,B -1,9 2,C 7,9 4,B 1,B -1,9 -1,8 2,1 -1,6 4,C -1,5 0,9 -1,9 1,5 3,C 1,3 6,1 8,9 2,B 9,8 7,1 -1,2 6,7 -1,3 2,B 4,C 1,0 7,C 4,1 7,B 8,0 8,1 0,1 6,9 7,9 7,4 -1,2 6,B 6,5 9,C -1,8 2,7 6,5 2,6 4,C 7,C 5,0 0,3 8,6 -1,9 8,5 2,5 8,6 4,8 4,3 1,C 1,C 5,B 2,B 1,8 -1,7 1,C 3,9 -1,6 6,C -1,5 1,C -1,7 8,B 2,6 4,4 -1,0 0,1 -1,0 1,2 9,1 7,C -1,3 -1,7 6,5 4,2 3,2 -1,9 7,2 5,B 7,C 7,5 -1,2 4,B 8,B 4,7 0,6 -1,7 -1,3 0,0 3,3 4,C 1,B -1,4 9,9 9,1 -1,6 -1,4 -1,7 -1,0 -1,4 9,4 0,2 8,7 4,4 6,5 -1,2 8,1 3,B -1,0 0,4 0,5 7,1 3,B 1,9 2,2 7,2 5,8 -1,4 5,0 5,7 2,B 4,7 2,8 3,0 9,3 1,4 2,7 8,5 3,1 5,B -1,4 -1,2 6,7 -1,5 2,C 8,9 -1,8 9,3 -1,1 4,6 -1,4 9,3 1,C 8,7 -1,2 3,B 6,4 8,1 9,C 9,C 9,8 3,6 3,5 2,4 -1,4 3,4 -1,3 5,B 0,3 6,0 5,9 8,B 6,B -1,5 6,8 8,0 7,B -1,0 7,8 3,3 9,2 3,C 0,C -1,7 -1,5 7,5 9,3 1,2 0,1 8,C 2,3 -1,4 9,3 -1,3 4,7 7,5 6,3 4,C 7,B 3,C 3,1 1,3 4,5 2,B 1,1 -1,2 -1,2 5,2 9,4 1,2 5,C 5,B -1,9 6,C 8,2 7,7 3,6 4,7 5,4 4,9 5,C 8,B 5,C 8,B 4,3 1,1 4,6 1,6 -1,9 2,6 8,B 1,3 4,6 8,7 1,C 3,C 2,6 8,C 2,7 4,8 5,B 2,3 9,B 6,9 4,2 5,9 -1,6 5,9 7,0 0,5 9,1 6,9 3,C -1,3 7,B 6,4 7,C 1,C 5,1 0,2 0,8 -1,4 2,1 1,3 6,2 2,1 4,0 8,C -1,1 4,4 0,B 1,0 9,B -1,4 6,4 5,5 -1,2 9,1 6,C 6,4 -1,4 5,C 1,7 1,9 8,1 9,C -1,3 7,1 7,0 3,6 6,6 1,C 6,C 9,2 2,C 9,B -1,9 0,C -1,9 6,2 8,8 6,0 2,C 7,7 7,C 1,7 4,B 4,8 4,6 -1,6 6,B 2,4 -1,5 4,C 2,8 3,6 3,5 5,4 2,7 4,6 -1,1 2,C 4,3 7,9 8,7 8,6 4,1 4,6 9,B 3,5 -1,0 7,6 5,7 5,1 9,9 3,B 1,6 5,C 3,9 1,2 1,B 0,5 3,2 -1,3 1,B 6,C 3,2 6,3 6,0 1,3 -1,4 -1,9 3,6 -1,8 -1,6 3,7 2,2 9,3 2,6 9,C 8,9 3,B 9,B 4,2 5,1 0,2 0,B 7,4 2,C 6,5 5,4 -1,0 3,7 9,9 1,B 1,8 3,C 9,1 3,1 4,C -1,8 0,3 2,8 7,0 4,0 0,0 5,7 3,C -1,1 8,B -1,9 1,8 8,B 5,2 0,8 9,5 -1,7 4,C 6,6 7,9 -1,0 8,8 0,5 9,3 2,7 0,B 7,0 2,B 7,B 4,5 -1,0 4,4 6,0 -1,3 4,6 7,6 5,B 4,4 5,C -1,7 -1,6 2,9 1,5 -1,0 0,9 1,9 5,B 0,6 -1,0 0,3 1,5 5,6 1,3 2,2 8,7 6,4 -1,4 5,3 1,8 -1,4 4,4 0,9 7,C 4,5 -1,7 8,B -1,8 1,B 5,7 7,5 7,1 8,9 2,4 -1,7 9,7 6,9 8,C 4,0 6,9 0,1 -1,5 2,4 8,B 4,5 3,3 6,B 1,4 2,5 9,B 2,4 7,0 2,C -1,8 5,C 5,B 8,C -1,5 2,6 4,9 1,4 0,B 2,1 -1,0 1,2 -1,4 6,7 4,7 3,9 -1,0 7,4 6,8 -1,3 -1,9 4,8 3,3 6,B 1,5 7,4 0,7 -1,5 2,7 1,2 -1,3 -1,9 -1,6 8,B 7,9 6,5 8,1 2,2 -1,5 4,0 -1,3 2,B 6,B 4,1 8,B 8,2 3,1 2,4 1,C 3,6 8,3 5,8 9,0 -1,1 9,C -1,1 -1,6 3,B 6,5 8,C 3,0 8,9 3,9 6,5 -1,7 7,B 8,1 5,9 1,2 -1,7 7,B 5,B 7,7 0,9 7,2 5,4 -1,1 -1,9 9,B 6,2 3,7 0,4 6,4 -1,1 0,C 6,4 4,C -1,3 7,B 7,9 3,6 8,6 -1,4 3,6 5,5 -1,8 6,C 7,2 4,2 3,2 1,7 -1,2 5,9 0,9 9,7 5,4 4,7 1,7 -1,4 7,8 6,C 7,6 7,0 3,4 1,B -1,3 -1,8 4,8 3,9 8,1 5,C 4,B 7,7 0,8 6,6 3,1 -1,7 1,9 9,4 4,B 6,2 1,8 7,7 6,9 9,7 0,3 1,9 5,0 4,7 -1,6 0,4 -1,9 6,4 5,3 4,4 4,4 2,B 3,1 2,5 8,5 9,1 9,8 -1,9 3,B 4,3 4,C 7,1 3,B 4,C -1,2 4,C 9,C 8,1 0,1 0,7 -1,3 -1,1 7,1 7,5 2,B 5,7 1,1 3,B 6,9 7,C 4,9 3,7 8,2 2,8 2,4 4,B 8,5 6,1 0,1 1,6 5,B 7,C 7,C -1,9 6,6 -1,0 0,1 2,1 -1,5 -1,9 -1,1 0,6 -1,4 2,3 -1,5 0,0 9,1 5,1 2,0 8,C 2,4 2,2 9,9 7,C 7,7 4,6 3,5 2,5 0,7 9,5 5,2 1,B 8,5 3,6 7,4 7,6 1,0 1,C 8,9 -1,7 -1,7 5,6 8,B 5,9 4,1 3,7 8,4 -1,0 1,2 9,1 0,3 -1,1 1,9 8,3 7,B -1,0 6,B -1,5 -1,9 1,0 7,B -1,5 8,2 9,2 7,0 -1,1 -1,0 9,0 6,C 8,6 8,2 8,7 -1,2 4,5 -1,0 3,1 2,3 2,4 2,0 -1,6 -1,1 7,5 6,B 8,B 0,2 -1,0 -1,8 -1,1 8,3 -1,7 4,C 8,2 9,C 5,5 4,0 6,9 1,B 4,9 2,7 7,3 0,4 4,9 -1,8 -1,8 4,B -1,7 -1,9 6,0 9,9 8,C 5,C 3,B 8,4 1,C 7,8 9,1 -1,2 6,C 7,6 1,6 -1,5 0,7 0,7 -1,3 7,1 2,B 2,B -1,5 8,C 4,4 9,C -1,4 3,5 -1,0 3,2 -1,5 3,3 8,8 -1,1 0,9 1,5 4,0 1,1 -1,1 7,0 -1,4 3,2 1,6 5,5 2,B 5,5 6,B 9,2 9,4 3,2 -1,1 6,1 7,C -1,6 6,B 5,8 0,5 -1,2 -1,5 4,C 0,3 7,8 2,B 5,8 -1,0 6,1 9,9 0,3 1,C 4,8 7,9 -1,4 -1,0 3,C 5,8 -1,6 4,2 8,B 4,B 0,6 -1,9 1,3 7,6 -1,7 2,8 5,8 6,C 3,B 6,C -1,0 5,C 8,B 2,6 3,4 2,B 8,0 6,7 -1,3 8,0 4,1 0,B 2,3 3,7 2,6 8,1 6,6 -1,4 8,9 3,3 6,C 9,9 3,8 -1,0 9,C 0,3 5,9 3,B 9,2 3,B 8,6 9,8 7,7 9,8 5,6 8,8 -1,2 -1,7 2,B 0,8 1,C 0,3 -1,7 1,0 -1,3 8,0 3,B 3,8 -1,9 2,B 2,7 5,2 6,3 7,5 7,3 0,2 6,B -1,8 2,3 -1,2 7,4 -1,7 8,3 5,9 -1,0 -1,7 2,5 4,B -1,5 -1,5 3,9 3,C 5,0 5,2 6,7 7,2 0,9 7,8 6,B -1,9 1,C 4,2 8,7 4,4 9,0 8,7 -1,5 0,C 1,8 7,C 2,3 9,5 5,0 7,6 -1,5 -1,0 -1,2 9,9 3,C 2,2 6,B 3,2 9,4 2,4 -1,8 2,6 7,C 9,0 9,C 0,3 -1,7 -1,2 9,0 1,C 4,B -1,2 6,4 9,B -1,0 -1,5 9,C 8,3 0,B 7,4 -1,0 -1,5 0,5 0,1 3,7 8,8 -1,1 -1,4 0,1 3,6 2,1 8,2 7,1 7,1 5,5 1,3 8,7 -1,9 0,5 0,9 -1,3 4,B 5,9 6,4 5,B 2,1 3,3 -1,8 9,4 8,C 6,6 9,6 7,C -1,6 9,3 9,C 8,B 5,7 0,B 2,9 3,B 3,2 5,7 0,1 6,2 -1,8 1,0 1,5 4,2 5,B 6,8 9,5 -1,3 2,B 5,1 4,6 3,8 -1,6 -1,6 5,4 9,0 0,9 9,8 -1,4 -1,4 3,C 2,3 -1,4 8,7 6,B 1,5 6,4 9,B 6,5 -1,4 2,0 0,9 6,2 -1,1 -1,3 5,1 -1,9 7,B 8,3 1,C -1,4 7,9 5,C 9,4 8,4 7,8 -1,6 -1,0 1,B 1,C 5,C 0,C 1,3 -1,2 2,3 -1,1 -1,8 -1,9 5,6 9,8 -1,8 2,5 -1,9 2,1 0,6 2,1 6,4 -1,3 3,B -1,2 9,5 -1,7 8,4 3,7 2,2 0,1 -1,1 9,4 -1,4 6,C 9,1 7,C 1,4 4,2 -1,2 7,2 8,7 9,5 -1,3 1,B -1,0 9,9 3,B 4,1 9,9 5,3 5,6 3,C 9,0 8,6 6,6 7,7 8,2 9,9 0,7 3,6 5,C 1,7 4,2 6,2 -1,8 7,C -1,8 1,3 9,4 4,B -1,1 -1,4 5,3 1,1 1,8 5,B 8,C 7,B -1,2 -1,8 4,7 -1,5 0,0 0,C 7,6 2,0 9,8 8,9 6,9 9,B 7,4 6,B 0,B 6,B 4,B 6,7 4,4 -1,3 -1,1 9,B 4,B 2,B 8,C 6,5 4,8 -1,1 4,2 4,1 2,0 -1,5 9,1 -1,2 4,1 -1,1 1,4 7,B 5,1 4,8 5,5 -1,1 0,2 3,1 2,5 -1,1 2,5 0,7 6,6 5,3 -1,9 4,7 5,0 4,6 6,8 8,6 -1,1 4,C -1,9 5,3 5,3 7,9 9,9 6,C 4,8 2,4 -1,2 2,C 2,2 -1,8 6,8 9,5 0,0 0,0 8,4 -1,6 6,6 6,C 6,3 6,7 0,4 5,9 5,5 -1,3 4,3 1,C 1,2 -1,7 1,1 -1,9 7,6 5,C -1,1 -1,8 -1,0 6,B 5,2 5,9 0,2 1,C 2,4 6,5 5,8 1,C 3,0 2,3 5,C 5,5 -1,0 3,1 1,5 6,C 7,7 -1,9 5,C 4,9 -1,3 -1,3 8,1 1,0 4,9 5,C -1,8 1,5 1,6 2,7 7,7 7,9 -1,7 9,8 7,5 7,3 9,9 4,7 6,5 4,9 -1,3 0,C 4,C -1,8 6,C -1,5 0,1 5,1 4,B -1,9 8,4 5,8 -1,9 8,B 1,8 8,3 4,5 5,7 1,7 5,2 1,C 2,B -1,6 2,9 5,4 -1,3 9,8 2,C -1,1 0,7 -1,2 9,9 0,5 -1,7 -1,6 9,3 1,B 2,B 0,5 8,C 9,6 3,C 4,9 5,9 4,5 2,7 -1,0 2,8 0,C 0,6 1,3 0,3 -1,1 8,1 1,C 0,9 8,7 1,9 3,C -1,8 6,B 3,9 8,3 -1,0 2,C 4,C 3,6 2,4 6,0 0,9 1,1 8,4 -1,5 5,B 6,5 1,B 4,1 9,4 -1,5 4,B -1,0 6,0 -1,5 3,6 8,6 -1,5 0,2 2,3 0,4 -1,3 7,1 9,8 1,C 2,7 6,B 4,3 8,8 4,1 4,C 6,7 -1,8 1,B 5,2 8,7 -1,5 5,C 1,9 -1,3 0,4 3,5 8,6 5,7 7,C -1,9 2,1 8,5 3,B 6,9 0,1 0,B 9,3 -1,6 2,7 -1,2 9,C 3,4 9,5 4,8 3,B 7,4 7,3 1,5 9,0 8,6 7,B 9,8 2,7 8,B 9,4 -1,5 3,0 6,C 6,9 2,3 5,8 3,5 1,0 8,4 2,B 7,6 9,5 8,9 9,B 9,8 2,3 3,4 9,1 -1,7 4,C 7,9 5,4 9,8 -1,9 5,C 5,8 8,7 0,1 1,6 9,B 8,C -1,5 7,4 5,C 2,5 -1,5 7,6 5,7 2,C -1,3 -1,0 8,8 2,3 3,3 9,8 8,C 3,7 -1,6 5,2 9,0 5,7 9,2 6,B 3,3 -1,5 9,9 8,C 6,9 2,9 1,5 1,8 2,B -1,0 4,2 4,B 1,C 2,2 8,7 5,B 6,C -1,3 8,B -1,3 9,B 0,0 9,3 7,0 7,9 9,B -1,9 8,4 0,5 7,3 6,8 0,B 6,4 9,1 1,0 0,5 9,2 9,3 3,2 9,8 5,B 6,3 8,6 2,3 -1,1 1,2 0,0 4,5 -1,2 4,5 -1,2 0,5 -1,3 5,B 0,9 -1,2 9,9 -1,3 -1,4 -1,6 0,6 2,7 9,1 6,C 4,5 -1,5 9,9 7,8 9,7 5,B 3,C -1,6 -1,9 1,3 -1,0 9,C -1,2 1,5 2,6 3,7 3,6 -1,9 0,1 0,4 8,9 0,B 2,7 6,9 3,3 4,C 6,7 6,4 -1,6 5,5 4,6 5,1 8,6 -1,5 8,9 1,8 6,4 1,8 -1,6 9,0 2,8 6,6 6,6 8,8 8,7 9,7 8,7 -1,2 7,9 5,9 6,B 3,9 5,1 1,B 9,3 9,C -1,7 -1,4 1,8 5,B -1,3 -1,1 0,2 5,B 9,C -1,0 -1,1 -1,4 5,9 -1,4 6,0 2,C 0,6 0,0 8,C 0,8 3,0 5,8 -1,3 0,2 5,B 5,7 5,B 2,6 8,4 -1,2 -1,2 5,3 5,5 0,4 7,C -1,1 -1,7 5,3 2,2 2,0 1,8 3,4 6,7 4,C -1,7 5,7 0,7 5,3 6,B -1,2 9,6 6,3 -1,5 4,C 1,0 6,5 0,6 8,C 5,8 2,9 0,1 3,1 9,2 -1,3 5,6 9,9 -1,5 5,C 5,6 7,6 -1,8 9,C -1,4 5,C 8,9 1,3 7,6 6,0 -1,0 7,1 -1,5 -1,7 8,6 9,4 4,4 4,B 3,8 -1,3 6,6 1,0 9,C 2,2 6,2 -1,0 5,4 3,7 1,3 2,C -1,0 1,5 0,5 7,C 0,2 5,3 -1,7 7,0 6,C 9,8 4,B -1,8 7,9 -1,1 -1,8 0,9 1,8 7,C -1,6 7,0 -1,1 1,7 5,B 8,C 0,1 6,4 -1,3 1,9 -1,1 5,4 2,B 7,8 3,2 8,C -1,7 2,2 -1,1 9,B 8,5 2,6 -1,1 3,C 3,3 7,C 7,0 9,1 8,1 2,6 8,B 3,9 1,3 8,C 4,1 -1,4 0,B 3,3 6,5 2,5 3,4 6,6 9,9 5,1 -1,8 -1,3 -1,6 -1,4 3,5 1,4 9,2 2,9 8,1 2,B 5,B -1,1 0,2 1,8 5,8 0,0 -1,7 2,3 7,1 4,2 -1,2 -1,6 0,9 4,1 -1,5 7,6 6,5 4,B 1,2 6,C 2,8 6,2 -1,9 6,5 5,7 0,B 8,6 8,4 3,9 8,7 -1,2 6,0 6,0 1,C 5,1 5,2 7,2 2,C -1,7 6,3 -1,1 3,C 9,B 7,1 -1,5 -1,0 7,5 6,B 4,0 -1,9 -1,3 -1,3 8,1 7,7 0,1 4,C -1,5 9,C 6,3 8,9 8,C 7,B 0,6 1,6 3,B -1,8 4,3 9,3 2,0 -1,7 9,B 8,C -1,0 -1,8 -1,2 4,C 2,4 7,8 -1,5 6,3 7,9 5,C 2,9 8,2 9,1 4,3 0,C 4,6 7,4 0,B 1,2 2,5 -1,1 3,6 0,C 4,8 6,C 3,5 4,2 7,7 4,B 8,C -1,1 -1,5 6,4 0,B -1,9 1,1 8,4 4,C 7,7 -1,8 2,C 3,C 2,0 6,0 -1,3 9,C 6,C -1,0 3,1 4,2 7,2 -1,9 1,9 8,2 6,0 3,1 -1,1 -1,3 7,C 2,B 8,6 7,2 0,9 -1,4 7,B 1,5 6,8 2,2 6,5 6,3 -1,7 5,8 4,6 1,9 2,5 9,C 1,B -1,0 4,C 3,C 1,B 7,3 4,1 4,5 -1,5 3,C 3,1 0,5 1,C 8,6 -1,4 9,3 -1,7 0,8 0,2 6,2 8,1 9,3 -1,9 0,C -1,8 0,C 8,5 4,1 5,7 9,9 5,7 8,4 5,1 0,C 1,8 9,4 1,0 9,3 2,1 8,C 1,4 -1,6 3,B 4,7 3,5 5,9 8,7 5,1 8,8 9,4 3,9 8,0 7,9 5,7 2,6 -1,8 9,3 7,3 -1,4 3,3 9,6 -1,2 3,1 -1,2 3,8 5,5 8,6 3,3 1,3 0,7 -1,4 2,2 8,2 8,B 3,B 1,B -1,5 5,2 2,8 6,4 -1,2 1,6 -1,1 -1,6 -1,8 6,9 7,B 6,6 -1,8 2,2 5,5 3,6 9,9 2,1 3,B 9,9 4,4 -1,9 8,8 2,C 9,0 9,9 0,7 -1,7 -1,7 7,2 9,2 9,C 0,B 9,B 3,1 7,4 -1,9 7,3 9,B 2,6 4,8 3,2 5,C 0,1 0,B 7,B -1,0 6,C -1,8 5,B 0,4 2,6 6,0 8,1 -1,6 6,C 2,4 1,B 4,4 1,6 2,2 3,B 9,2 2,5 1,B 2,7 6,C 8,9 7,C 0,C 8,4 4,4 0,1 0,9 1,9 2,7 1,4 4,1 1,B 0,8 3,7 1,7 5,3 1,2 2,4 -1,9 4,8 7,0 6,5 2,4 2,5 9,2 0,8 5,3 5,2 9,5 -1,5 -1,4 0,5 3,2 7,8 -1,3 4,B 6,5 0,0 -1,3 3,7 0,B -1,8 3,4 -1,7 9,C 3,5 2,5 -1,4 2,0 -1,6 1,0 5,6 8,1 2,1 4,4 6,6 4,0 6,5 8,8 -1,3 9,6 0,2 -1,1 8,0 3,3 -1,2 2,B 6,7 2,C -1,6 -1,3 8,5 9,B 9,8 7,5 6,B 6,8 4,8 9,B 6,1 2,9 4,8 -1,3 0,2 -1,3 5,C 8,7 -1,8 3,4 7,1 2,0 0,B 8,0 2,C 8,5 2,C 6,7 9,4 -1,0 3,5 6,8 0,1 -1,3 1,B 8,B 2,9 3,8 4,6 9,5 4,6 0,B 5,7 0,B 2,B 6,3 5,0 8,1 7,9 8,2 6,C 5,2 6,B 5,0 -1,2 8,B 3,1 0,9 7,1 4,1 6,7 0,2 6,1 8,6 3,C 3,7 1,7 5,9 4,B 4,7 3,3 6,8 0,B 8,C -1,6 1,3 7,7 2,9 1,1 3,5 1,C 3,4 2,0 5,2 4,2 1,1 -1,3 -1,3 -1,0 6,2 2,7 4,4 9,B 9,9 5,0 -1,4 -1,6 8,5 4,9 5,C -1,5 1,4 5,3 0,0 4,C 3,3 0,5 0,1 4,1 7,1 -1,3 5,9 9,3 0,8 -1,8 0,8 8,1 5,C 0,3 1,2 6,0 3,B 3,7 8,C 2,1 9,7 8,8 4,4 6,C 0,B 4,6 6,8 1,9 4,8 -1,7 2,9 -1,6 2,C 4,2 2,C -1,9 2,B 9,9 8,9 7,2 4,0 1,0 3,9 7,9 9,C 3,6 -1,1 1,5 0,6 4,B 5,1 7,C -1,7 7,6 8,8 2,7 0,8 5,7 0,3 2,8 2,4 7,8 7,3 -1,2 0,B -1,8 4,2 8,0 5,7 4,B 2,2 0,1 -1,7 1,B 6,8 -1,3 5,8 -1,0 6,1 -1,5 -1,1 7,0 1,0 -1,6 -1,5 -1,3 7,1 -1,3 2,B 3,0 9,0 -1,2 2,0 9,2 9,4 -1,0 4,6 6,7 4,C 2,4 3,7 8,1 2,6 2,1 -1,3 2,3 -1,7 5,2 1,8 4,C 8,9 -1,2 0,B 3,B 6,2 9,C 0,3 7,3 -1,9 3,B -1,4 1,C 4,7 5,0 0,4 3,5 -1,8 3,6 5,8 3,6 -1,9 9,7 -1,2 -1,8 0,C 5,1 7,3 7,2 -1,0 2,2 -1,6 5,B -1,0 0,1 0,5 -1,1 5,B 7,8 -1,6 7,2 -1,2 4,C 3,4 0,3 7,1 6,8 1,C -1,4 9,1 -1,4 1,7 -1,4 -1,0 4,C 4,3 8,B 6,1 -1,4 1,C 2,4 -1,6 7,8 6,9 -1,7 7,7 -1,8 1,C 9,B 0,B 2,5 3,7 1,2 8,8 9,B 3,0 0,B 2,6 0,6 3,3 8,9 -1,1 8,B 3,C -1,4 5,9 4,2 4,3 9,9 2,3 8,C 2,0 9,7 1,C 0,5 -1,9 9,7 7,1 3,0 -1,2 -1,0 -1,9 8,3 7,B 0,5 9,2 9,1 5,6 6,4 8,8 6,C 7,C 0,C 6,0 8,6 6,9 9,0 3,B 9,C 4,7 3,1 3,C 1,3 7,B -1,4 7,0 7,2 0,C -1,0 -1,8 7,8 9,B 2,7 9,2 8,4 0,1 1,B 0,1 6,1 -1,8 -1,2 8,1 8,B -1,6 5,0 1,6 -1,2 4,3 5,3 2,8 -1,3 1,9 0,3 8,B 4,C 1,6 7,C 2,7 -1,2 -1,5 7,B 7,9 6,6 1,4 2,7 7,B 4,7 0,7 -1,2 9,7 -1,4 -1,8 -1,9 -1,5 -1,1 0,1 3,4 5,C 6,3 5,6 2,B 8,0 -1,6 -1,0 7,C 9,8 0,1 4,2 7,1 5,2 -1,7 5,4 -1,7 6,B 4,4 3,B 5,8 8,C 0,6 5,0 -1,7 0,6 6,7 5,7 8,8 6,2 0,C 1,B 8,7 3,0 4,7 1,5 -1,7 -1,7 -1,8 9,8 7,2 0,5 9,0 -1,9 2,8 7,9 7,C 5,1 2,9 3,C 0,0 3,7 8,7 -1,8 0,2 0,4 -1,2 6,C 4,8 1,8 7,B 9,2 6,7 1,4 6,B 4,3 4,1 0,7 3,B 9,2 5,9 4,4 2,2 2,B 9,7 9,4 3,3 -1,1 5,6 7,7 8,6 4,6 5,3 0,C 0,6 0,C 7,0 6,2 7,6 5,2 3,1 3,B 8,5 4,2 4,C 2,0 5,0 -1,3 2,C 0,B 9,1 9,0 5,C -1,3 3,B 2,1 1,0 6,6 3,B -1,9 1,8 7,2 -1,1 2,4 4,6 -1,1 -1,1 6,C 8,3 -1,2 -1,0 8,2 2,1 -1,6 2,7 1,3 9,3 4,7 4,9 -1,2 0,2 7,5 9,0 -1,4 4,B 2,9 3,9 3,2 2,1 8,5 -1,4 0,3 7,6 2,9 -1,3 5,B 8,2 3,0 0,C -1,5 2,B -1,1 0,4 9,0 2,B 4,3 7,C -1,2 1,7 4,6 5,0 2,0 2,5 -1,0 5,1 6,1 -1,6 5,0 -1,7 5,1 8,3 1,5 4,3 -1,3 5,5 1,4 -1,6 -1,4 6,5 9,8 5,0 -1,9 6,B -1,7 -1,8 8,B 6,9 7,3 -1,6 2,C -1,5 8,6 9,9 7,0 -1,0 8,0 6,1 8,1 9,1 5,9 4,B -1,0 2,9 7,8 9,9 8,B -1,1 8,3 4,7 4,5 -1,5 2,C 1,4 7,9 3,8 9,5 5,C 5,4 8,6 1,C 9,9 -1,4 5,2 3,0 9,3 1,4 1,9 -1,6 7,2 5,4 3,0 1,C 8,9 -1,4 5,7 -1,9 8,6 -1,4 2,6 -1,0 -1,2 7,5 9,C 6,C 1,3 7,C 4,0 -1,1 7,7 0,0 7,9 4,0 1,7 0,3 6,5 2,0 -1,9 7,3 4,9 6,B 3,0 9,2 5,7 2,8 -1,2 1,8 -1,1 -1,9 -1,0 5,8 8,C 6,C 8,C 2,7 6,8 8,3 -1,8 -1,1 2,7 1,8 1,8 3,6 0,C 4,6 -1,9 4,C 9,B 8,5 -1,9 6,5 2,1 -1,5 8,6 2,B 2,C 3,7 5,5 0,1 2,7 3,0 1,9 4,2 1,5 2,C 7,B 1,7 -1,4 1,0 2,1 6,5 3,C 4,4 5,C 5,4 8,C -1,0 2,B 3,5 9,3 9,5 2,1 0,C 3,8 5,5 4,B 2,B -1,1 4,4 4,1 4,5 7,6 -1,0 7,C 4,B 3,B 2,5 4,B -1,5 7,0 2,4 2,C -1,7 -1,5 5,C 0,2 5,B 3,6 1,B -1,9 0,7 4,B 7,9 -1,6 7,7 5,8 2,3 1,4 9,8 5,C -1,9 5,6 9,0 8,8 2,B 5,B 4,2 2,3 1,0 6,5 8,2 9,B 3,1 -1,2 6,9 7,4 -1,9 5,C 9,9 0,1 8,3 5,6 2,6 5,7 0,4 -1,7 3,2 9,7 4,0 9,4 3,1 0,B 9,6 7,7 4,5 2,3 8,C 0,3 7,C 4,B 0,0 1,5 4,C 7,9 -1,8 -1,7 6,B 0,4 4,4 4,9 2,5 0,6 8,B 1,8 9,6 -1,8 6,6 5,0 3,0 -1,7 6,2 -1,0 2,7 8,C -1,2 2,4 5,9 4,6 2,6 7,8 3,C 4,0 2,C 7,5 6,6 6,C 9,2 -1,0 4,4 8,4 7,B -1,7 4,5 6,B 7,5 -1,7 -1,8 7,1 6,6 4,0 3,7 -1,8 -1,5 6,6 3,9 0,1 3,5 1,6 3,C 3,3 4,B -1,7 8,B 3,B -1,1 5,0 0,B 9,6 5,4 3,9 5,9 7,4 0,7 8,2 9,3 -1,9 9,2 6,4 9,5 9,C -1,2 6,0 1,B -1,1 0,9 -1,3 6,5 7,8 1,B -1,9 8,3 -1,8 5,0 -1,5 2,1 5,2 -1,4 6,B 7,8 0,C -1,2 3,0 1,B 3,C 0,5 -1,9 4,B 4,4 0,3 1,9 7,4 5,3 -1,8 0,9 -1,8 4,6 3,5 9,1 -1,4 4,B 6,2 4,C 9,8 4,C 8,4 6,C 6,7 7,4 1,7 3,5 1,8 -1,6 1,0 4,7 -1,6 8,B 6,C 0,2 6,6 6,6 1,C 8,0 9,2 5,9 2,6 2,C 7,C 8,8 1,B 4,6 3,4 6,9 3,1 9,9 -1,0 2,4 6,1 8,2 1,1 6,2 8,5 8,6 6,B 5,2 -1,6 0,4 0,5 0,2 2,8 3,6 7,9 -1,5 1,5 2,2 3,4 8,1 -1,5 9,8 -1,9 6,4 4,7 6,B 8,B 8,7 -1,5 -1,9 -1,9 3,8 4,9 3,B 7,C 7,2 0,C 8,C -1,6 0,7 7,3 -1,8 4,0 1,8 7,2 4,B 3,5 9,C -1,6 -1,7 -1,7 8,5 -1,1 6,1 2,0 -1,8 -1,8 9,B 9,6 4,7 4,C 5,5 2,6 5,9 9,7 0,5 9,2 6,8 9,4 0,5 0,C 3,7 7,7 8,C 0,7 3,C 3,4 8,5 2,8 2,6 9,3 -1,4 3,0 2,4 0,9 3,C 8,3 2,5 7,C 4,B 3,C 8,4 6,7 -1,0 -1,7 4,1 -1,6 -1,7 3,8 8,B 3,1 9,9 9,C 5,9 -1,9 6,2 5,1 -1,8 4,1 9,3 -1,7 8,C 7,C 0,B 6,B 7,B 5,4 3,1 7,6 2,7 -1,9 9,4 7,B -1,4 0,C -1,2 4,1 6,4 8,3 6,C 3,5 4,4 8,3 3,2 4,C 7,0 8,C 8,8 7,B 8,7 -1,6 2,6 -1,4 4,B 8,7 2,6 6,1 2,9 6,5 -1,0 6,5 6,7 6,B 7,6 -1,6 -1,3 -1,2 6,8 3,4 3,3 9,1 -1,2 4,8 -1,3 3,B 8,2 5,5 -1,5 5,9 0,4 8,C 8,8 -1,0 1,3 8,8 4,8 6,0 -1,6 2,9 0,7 -1,8 6,0 4,C 4,2 5,2 9,0 8,5 4,6 -1,9 -1,9 0,C 2,4 8,B 9,0 3,3 2,6 9,0 6,9 -1,0 6,3 4,C 3,6 -1,7 8,6 2,4 3,B 3,5 1,B 0,2 0,9 6,5 0,0 9,4 3,B 6,C 9,3 8,4 -1,9 0,C -1,4 4,9 5,3 2,C -1,2 6,0 7,5 8,6 8,3 -1,6 9,2 5,9 9,5 3,B 7,6 8,B 9,4 -1,6 3,B -1,1 7,8 0,6 4,C 1,5 8,3 -1,7 -1,6 4,1 -1,9 -1,1 4,7 -1,9 1,6 0,4 3,2 4,5 0,7 9,C 4,5 1,B 7,3 2,6 0,8 -1,3 4,2 7,8 -1,0 8,3 6,C 1,4 -1,1 8,B -1,6 1,C 5,B -1,0 8,C 9,1 -1,1 9,2 2,C -1,1 6,9 1,8 -1,4 -1,8 9,B 5,0 0,5 -1,9 -1,9 -1,9 3,8 1,C 4,0 0,6 3,8 0,2 5,7 3,7 4,6 6,5 9,7 7,B 4,B -1,7 -1,0 0,4 3,4 0,7 8,7 5,9 8,B 4,B 3,B 1,B -1,7 9,1 9,B 9,8 5,9 3,6 9,0 -1,9 2,2 3,1 9,1 0,B 6,7 5,1 0,2 4,3 2,C 7,4 9,C 1,7 4,B -1,4 3,B 8,1 8,B 5,1 9,9 -1,6 -1,9 6,6 5,C 6,9 3,8 9,B 9,1 9,5 4,5 9,5 7,C 5,5 2,4 6,2 0,B 7,C 1,C 4,0 0,1 9,C -1,3 3,0 4,3 4,5 9,4 1,2 0,1 9,5 9,B 7,0 -1,6 2,8 -1,2 9,2 2,6 4,8 6,1 9,6 4,4 6,5 5,3 -1,0 5,8 0,4 -1,6 6,C 3,3 1,9 2,9 1,C -1,8 5,9 6,9 7,9 3,1 1,2 0,B 8,7 6,C 6,B 5,1 2,3 -1,7 9,8 5,7 2,C 1,C 9,2 1,5 5,6 3,8 2,3 7,5 -1,5 -1,8 7,4 -1,5 0,5 8,8 3,2 2,3 8,1 3,8 9,9 4,9 1,6 7,C 6,7 9,5 -1,1 4,B 3,B -1,1 6,5 4,9 6,B 9,5 3,4 5,4 1,8 8,3 5,0 9,7 9,3 1,6 9,0 -1,0 -1,7 5,2 3,9 6,C 7,1 3,1 4,1 2,0 3,B 7,7 7,B 7,5 -1,5 2,1 -1,8 7,3 9,4 3,7 6,3 3,5 6,7 2,8 3,B 5,B 7,9 0,2 -1,4 4,5 6,C -1,0 8,5 2,0 1,1 1,5 6,9 1,9 -1,0 7,B 0,C 5,B 7,C -1,4 0,C 4,6 4,1 0,5 7,2 7,B 9,B 9,3 6,3 0,2 3,C 9,8 9,1 0,1 3,4 2,B -1,7 3,9 8,1 5,C 0,6 8,1 8,4 1,1 1,4 7,2 8,3 2,0 9,C 5,9 -1,6 3,B 0,0 4,6 -1,7 2,7 0,C 7,C 9,5 -1,4 7,C 7,6 6,4 2,B 5,1 8,B 5,3 8,B 9,2 2,2 0,8 6,2 8,6 -1,5 5,6 -1,1 7,3 9,B 6,3 1,5 3,2 4,C 7,3 5,1 -1,2 0,C 7,B 8,3 8,5 0,7 0,B 5,2 2,9 2,C 8,B -1,5 3,4 0,B 9,C 5,3 7,8 0,7 0,C 7,8 3,6 3,6 9,8 7,0 -1,0 7,5 -1,0 6,9 3,9 7,B 0,5 6,1 8,7 -1,6 7,C 0,0 0,C 1,1 6,6 0,C 9,C 5,5 -1,4 7,B 8,7 7,2 -1,7 5,7 6,8 -1,1 9,2 0,6 -1,8 -1,3 6,2 7,6 1,7 -1,1 1,3 6,1 5,8 6,9 7,3 0,1 2,C -1,8 -1,8 3,4 1,4 9,8 1,9 3,8 -1,8 8,3 4,5 6,0 8,9 4,B -1,7 8,7 -1,0 7,8 2,7 4,0 3,7 -1,0 1,7 -1,2 2,2 0,1 -1,6 7,5 -1,4 3,9 3,C -1,5 4,0 3,3 2,3 0,4 4,9 4,C 3,5 -1,0 -1,7 7,0 8,C -1,4 5,C -1,9 6,7 2,2 7,3 -1,5 7,5 8,9 6,5 8,4 2,6 -1,0 4,4 3,C 0,C -1,6 7,8 5,3 0,C 5,C -1,7 5,0 2,5 4,7 9,B -1,0 8,C 4,B 7,8 0,C 6,8 2,4 0,9 3,5 4,1 -1,6 -1,0 6,0 0,B -1,3 -1,3 9,3 3,6 1,C 4,C -1,1 2,4 -1,8 1,3 3,2 5,0 7,4 1,B 1,9 3,9 -1,1 9,C 1,7 2,0 2,6 5,9 2,0 5,C 4,9 6,B 3,B 2,0 8,9 6,7 2,4 6,6 -1,7 2,5 3,B 9,5 3,2 0,7 5,8 8,2 4,0 -1,2 6,0 5,6 2,9 8,7 8,8 6,B 3,5 -1,4 5,B -1,8 8,B 7,3 -1,1 -1,0 3,C 9,B 2,C 8,9 -1,8 3,3 -1,0 -1,5 2,B 7,5 -1,9 2,9 5,4 -1,5 1,C -1,8 0,B 5,2 1,4 -1,0 1,8 -1,8 4,2 3,0 -1,7 7,7 4,3 -1,3 9,9 0,B 9,4 8,4 9,2 6,0 -1,6 6,C 7,2 7,1 -1,4 2,4 4,2 9,7 -1,8 9,8 5,9 -1,8 6,2 5,B 0,B 8,2 2,B 5,2 8,1 9,B 2,B 0,8 0,9 7,9 9,4 -1,9 3,4 7,0 3,B 3,7 5,0 6,B 4,4 2,9 8,3 -1,3 4,4 -1,7 8,9 5,B -1,1 9,1 9,C 8,0 2,1 5,B 7,9 -1,5 6,C 0,9 -1,8 2,8 7,C 9,1 8,5 9,6 2,5 2,C 9,3 8,5 7,3 -1,3 7,8 8,4 -1,9 4,B 3,8 9,3 9,4 9,4 -1,4 -1,6 7,2 0,1 6,0 4,2 -1,5 -1,8 5,3 7,0 5,2 9,7 4,C 0,B -1,5 9,7 1,1 2,2 0,7 -1,4 7,3 2,6 1,2 0,9 3,8 -1,1 2,0 7,3 2,3 9,B 0,0 6,B 9,8 4,6 0,B 1,5 6,5 -1,1 8,6 3,2 1,8 7,4 -1,6 4,7 4,B 5,B 4,4 -1,5 1,2 -1,5 2,B 3,B 7,2 -1,5 8,1 4,8 -1,0 0,9 2,B -1,5 1,C 0,C 6,4 9,7 0,8 8,4 2,4 8,2 2,3 -1,4 3,3 5,7 8,2 -1,0 1,C 9,0 3,3 5,2 9,5 4,9 2,7 7,B -1,0 -1,4 2,8 7,8 0,7 6,4 6,B 0,7 1,9 6,4 9,B 5,C 6,9 6,2 -1,2 5,4 -1,6 1,6 -1,6 -1,1 2,9 8,4 2,B 1,B 8,9 5,B -1,3 -1,7 -1,0 -1,4 5,4 3,9 -1,6 -1,1 2,4 0,C 6,7 8,9 2,8 5,B 3,9 5,5 7,C -1,1 2,2 -1,5 2,7 6,B 1,5 -1,1 3,B 7,B 1,B 7,2 0,8 7,C -1,8 4,B -1,5 8,2 4,6 6,1 5,0 -1,4 7,B 1,4 -1,7 -1,3 1,2 9,0 0,1 6,5 3,3 -1,6 1,8 0,9 4,9 4,3 3,3 9,5 1,9 7,3 1,7 3,1 -1,1 -1,0 0,3 1,9 6,B 5,C 5,3 7,1 -1,0 -1,3 1,C 6,7 2,5 2,0 -1,1 1,0 2,2 8,B -1,9 7,9 9,B 7,0 4,0 -1,0 9,7 3,B 6,3 4,2 7,0 1,2 2,4 0,3 2,C 9,1 2,5 1,5 0,3 -1,0 2,0 7,8 3,9 -1,5 2,1 9,5 9,C -1,8 6,0 1,2 -1,1 3,7 1,7 3,5 8,7 2,B 0,9 9,C 5,C 9,4 9,7 2,9 1,9 -1,0 -1,2 6,5 4,9 8,2 3,1 9,7 5,5 -1,7 7,3 1,1 0,5 0,3 -1,8 8,4 1,9 3,6 1,B 5,1 8,C 9,3 4,B 6,B 1,1 -1,5 -1,9 1,3 -1,5 0,2 6,7 5,1 -1,1 8,B 9,7 2,4 6,C -1,3 0,2 1,9 5,C 3,3 -1,4 9,6 7,7 8,7 1,5 1,B 0,2 6,C 1,0 0,2 5,5 2,8 1,7 -1,5 9,4 9,3 4,6 3,6 7,4 -1,2 4,1 7,B 2,8 -1,3 4,2 2,0 7,7 -1,1 4,C 2,C -1,6 -1,9 4,9 0,3 9,7 2,B 2,2 3,5 6,8 -1,5 7,C 3,1 4,9 8,B -1,0 7,2 2,5 5,4 8,0 9,3 3,1 0,C -1,5 6,B 3,0 7,8 -1,4 9,7 7,1 -1,4 0,0 0,9 6,6 1,8 2,0 2,B 0,2 9,3 3,9 1,6 6,7 8,6 5,5 -1,1 8,3 3,C 5,2 -1,0 3,1 7,6 1,8 3,1 8,5 1,B 1,1 3,5 0,C -1,5 0,8 7,2 2,4 5,8 -1,1 5,1 8,B 3,9 8,0 5,9 -1,0 4,1 7,B 3,8 5,0 0,5 3,5 3,C 9,6 6,5 0,C 8,6 2,6 6,1 6,9 4,4 7,2 5,2 -1,2 4,9 -1,7 4,4 -1,8 7,3 -1,5 3,5 -1,0 6,3 4,9 2,8 4,9 2,C 6,1 7,5 -1,9 0,8 2,9 -1,5 0,1 9,B 6,B 5,3 0,3 1,6 9,1 8,1 -1,6 9,7 8,5 -1,4 7,6 0,B 1,4 1,6 1,C 6,2 2,0 -1,9 5,B 4,4 0,5 6,8 4,C 1,8 5,5 3,C 9,C 2,3 6,B 7,4 -1,4 3,C -1,4 5,9 -1,4 4,7 8,9 0,3 -1,2 5,8 -1,7 2,B 4,1 -1,5 -1,0 1,B 5,1 0,B -1,7 4,6 -1,9 -1,9 4,2 4,9 8,4 3,3 0,B 6,C -1,4 5,C -1,3 2,7 6,9 7,B 7,5 0,0 4,B 6,6 6,2 1,C -1,7 4,C -1,3 -1,4 5,0 9,1 3,5 3,6 7,C 6,8 8,8 2,8 9,3 5,5 7,7 5,6 3,3 3,5 8,5 5,5 9,0 -1,9 0,7 4,0 8,7 5,5 0,B 4,C 4,5 7,B 4,4 5,9 -1,6 3,5 3,B 6,9 5,4 -1,3 1,3 1,0 7,2 4,9 6,6 7,3 -1,7 9,3 0,C 4,7 5,8 6,B -1,5 -1,4 -1,4 0,0 3,1 1,3 9,8 7,7 7,1 0,9 7,9 4,5 2,5 -1,4 8,0 4,B 0,5 7,7 8,9 3,7 1,B 0,8 -1,5 0,9 7,C 2,2 6,3 8,B 3,2 5,6 -1,5 0,C 4,0 -1,1 4,6 6,7 0,9 9,1 2,0 7,5 2,1 -1,0 0,B 0,C 4,B 2,9 3,1 3,B -1,3 -1,4 -1,8 6,3 5,3 8,4 9,B 7,B 3,C 3,9 6,2 8,3 9,5 5,1 0,5 2,C 9,B 8,4 -1,7 -1,2 9,B -1,2 2,2 5,2 6,8 6,5 6,3 1,C 5,B 2,8 3,C 0,4 0,B 0,B 3,8 8,6 -1,1 5,9 8,B -1,6 -1,7 -1,8 9,3 5,0 7,4 7,8 5,5 6,9 0,8 1,5 -1,0 5,3 -1,8 5,C 3,6 3,0 6,9 8,B 0,C 9,1 7,B 2,0 0,C 0,0 8,0 2,5 0,7 1,9 0,C 3,3 -1,3 6,B 0,0 2,0 9,7 3,0 3,2 9,3 6,6 5,7 6,8 3,5 9,0 2,7 9,6 2,9 4,B 6,3 -1,9 8,6 -1,6 2,B 1,5 6,9 8,3 2,C -1,0 1,C 5,1 0,9 0,3 4,B 1,8 6,6 -1,4 6,B 8,B -1,4 4,8 7,9 3,7 -1,7 6,1 1,5 -1,0 2,0 4,4 7,B 1,C 4,7 -1,2 7,B 6,2 0,6 6,1 1,5 8,3 9,0 4,6 -1,3 -1,0 -1,3 0,C 2,1 4,C 1,C 0,9 -1,0 7,9 7,B 2,B 4,C 7,6 0,9 6,9 5,B -1,0 0,2 -1,9 8,2 6,C 3,B 1,C 6,9 5,C 9,8 1,2 0,9 3,2 3,B 2,5 0,C 1,2 5,B 8,3 8,3 9,C 1,C 3,6 3,2 3,3 9,7 9,1 4,0 4,0 -1,4 -1,4 3,7 8,B 5,B 7,6 2,9 1,7 8,6 4,6 0,6 -1,1 2,3 4,4 5,5 8,B 3,1 5,8 -1,3 1,2 8,4 7,1 -1,0 3,6 4,9 9,0 3,3 -1,1 -1,6 4,1 6,B 5,9 6,B 5,2 -1,2 -1,0 -1,9 7,0 0,9 0,0 6,4 -1,9 4,C 0,2 8,9 5,5 -1,4 6,B 2,4 -1,2 3,9 -1,6 -1,3 1,2 7,9 3,C 5,2 -1,7 6,9 4,9 7,7 3,6 7,6 5,7 5,0 -1,4 7,1 2,0 7,C -1,0 -1,6 4,1 2,0 -1,6 -1,0 1,7 6,1 7,8 8,8 5,1 5,1 1,4 -1,4 -1,8 8,9 -1,1 3,4 4,7 0,3 2,C 4,B -1,0 2,9 -1,8 2,3 -1,3 7,6 9,5 5,1 5,0 4,7 6,2 5,7 7,5 4,B 1,9 8,6 -1,0 8,4 6,6 -1,9 4,C 7,2 6,9 0,2 4,6 0,6 8,2 2,C 2,8 8,2 -1,0 3,2 -1,2 1,6 7,4 6,8 6,4 6,0 2,3 7,8 2,3 -1,8 3,7 3,2 -1,5 -1,4 9,2 -1,1 5,3 4,4 1,3 7,4 0,2 -1,3 8,0 8,C 2,1 5,7 7,4 7,C -1,1 1,1 0,6 9,7 4,7 7,4 2,0 6,8 7,3 -1,9 7,5 6,6 1,C 2,6 8,B 0,B 8,0 -1,7 9,0 7,C 9,B -1,2 9,4 9,C 7,0 4,2 8,B 2,2 1,8 7,C 7,8 -1,0 -1,6 6,4 -1,0 8,1 1,0 7,B 2,5 -1,5 -1,4 3,C 3,9 -1,2 6,0 2,1 7,6 -1,5 9,9 6,6 3,8 2,5 0,2 3,9 8,7 -1,7 9,3 3,8 5,8 7,7 -1,4 8,0 3,7 5,C 6,2 9,1 4,9 3,6 5,9 0,B 5,3 6,6 8,5 -1,5 7,0 8,4 -1,4 8,3 -1,3 7,9 2,4 0,1 1,9 5,4 -1,9 2,C 5,7 -1,4 -1,8 0,0 -1,6 0,C 0,7 9,4 -1,1 7,6 7,0 1,9 0,6 7,6 7,B 0,0 6,3 3,7 2,7 7,5 7,8 -1,1 4,9 5,1 7,C 0,C 4,5 7,C 4,2 8,2 -1,8 5,1 5,2 8,5 4,B 3,7 2,B 8,B 3,B 8,C 2,B 0,B 3,B 3,9 0,1 4,2 3,5 -1,4 -1,0 2,7 8,C 6,B 6,B 6,B 6,6 0,B 6,C 1,1 7,B 8,0 7,C -1,5 4,8 0,8 8,7 9,7 8,B 5,4 0,C 9,4 -1,0 7,7 8,6 4,4 5,4 1,C 2,2 2,1 6,1 9,0 0,B 7,3 6,1 7,9 0,6 4,B -1,4 2,7 -1,6 -1,3 6,0 3,1 9,7 5,3 -1,0 9,6 5,6 7,1 3,9 9,C 6,2 1,3 9,4 5,3 -1,4 5,6 6,C 6,2 5,B 3,8 7,6 8,B 9,0 7,1 -1,7 -1,0 5,6 -1,1 2,7 4,B 9,8 6,7 2,8 7,5 4,B 3,B 1,B -1,2 6,2 -1,6 -1,9 5,8 -1,7 2,B 1,9 -1,2 2,9 9,C 7,B -1,3 4,2 -1,1 8,8 -1,9 8,6 -1,6 -1,9 4,B -1,9 0,5 2,B -1,3 1,4 9,8 6,C 9,4 7,B 7,C -1,3 3,5 -1,0 9,B 4,8 8,4 2,3 3,9 8,3 2,5 5,C 6,0 5,C 0,9 1,2 5,3 -1,8 -1,7 8,3 8,1 4,1 9,B 2,2 -1,2 4,B 3,C 0,B 1,B 9,3 3,B 2,6 4,4 7,B 5,B -1,9 1,9 9,5 4,9 5,C 8,3 4,0 0,3 -1,5 3,9 9,7 6,1 -1,1 9,C -1,4 9,C -1,7 1,2 -1,8 3,1 5,1 4,3 -1,4 2,2 6,6 2,4 5,5 -1,9 8,8 6,B 9,1 6,5 6,B -1,7 1,3 -1,1 9,B 2,5 3,C 5,B 8,5 7,4 -1,9 2,9 0,5 -1,2 -1,5 8,7 -1,6 -1,7 -1,4 0,4 3,2 1,3 4,1 7,C -1,2 0,5 9,0 2,6 -1,8 -1,5 3,9 -1,2 -1,3 9,0 3,C 3,8 -1,5 9,B 3,5 -1,5 8,C -1,8 6,2 2,0 6,C 6,4 4,6 5,8 -1,4 0,2 0,3 6,9 -1,4 -1,4 7,C 0,7 4,2 -1,6 5,4 5,B -1,6 9,C 0,C 8,2 3,3 8,5 5,8 1,C 1,3 1,0 5,9 8,8 5,6 -1,1 1,9 3,1 7,B 6,0 -1,9 -1,9 1,2 7,7 9,B -1,7 2,1 4,6 1,5 9,9 7,3 0,7 9,0 2,6 3,4 4,6 7,8 2,6 7,0 -1,4 -1,1 6,B 8,2 5,C 6,4 4,5 7,2 9,C 6,B 7,8 3,2 7,B 2,2 2,C 4,4 7,9 3,6 8,1 -1,1 8,4 8,6 -1,7 2,1 1,1 0,8 -1,3 3,5 -1,6 9,8 6,3 3,9 1,2 3,2 9,3 -1,2 4,C 4,4 6,C -1,2 7,0 1,5 5,3 3,8 1,6 6,7 5,9 1,8 1,4 9,6 6,2 9,6 3,6 0,B -1,7 -1,8 0,2 7,3 -1,5 -1,9 3,1 3,C 3,2 6,7 5,2 2,5 0,4 3,3 0,6 4,5 3,B 5,6 3,0 3,B 6,4 6,8 6,4 5,B 9,0 2,C 9,9 9,7 1,5 9,7 7,1 3,8 5,B 4,C 7,C 6,6 4,0 -1,6 6,C -1,7 1,5 8,3 2,C 2,7 4,2 9,5 3,C 6,1 3,2 -1,8 -1,2 -1,4 -1,5 0,0 8,4 -1,5 -1,2 3,C 4,8 1,2 7,2 0,B 3,1 9,0 1,4 -1,2 1,6 5,9 6,B 6,0 1,6 5,4 3,B 6,3 -1,4 6,3 6,1 3,B -1,6 4,7 6,0 9,3 4,1 9,4 6,2 7,2 6,8 -1,6 -1,0 8,0 -1,1 -1,4 1,B 8,7 7,7 0,3 1,1 -1,1 0,8 -1,5 8,7 3,C 0,7 -1,2 5,2 8,6 -1,7 4,6 0,5 -1,2 7,0 7,8 3,5 3,2 5,C 9,B 7,7 8,C 9,6 8,0 0,5 2,9 -1,6 -1,5 2,5 3,6 0,7 8,1 6,3 2,2 4,C 5,4 6,B 5,2 -1,4 -1,0 7,0 6,1 7,8 -1,0 5,B -1,6 4,7 9,1 6,B 4,3 4,C 6,C 2,3 3,C -1,6 3,8 8,1 1,3 -1,7 3,3 3,9 3,C 4,6 -1,2 2,8 -1,8 -1,1 9,9 2,B 3,3 1,C -1,5 0,B 5,C 5,8 -1,5 2,C 3,1 3,7 8,C 8,C -1,9 7,B 0,0 2,C 5,6 2,3 9,B 0,2 1,9 6,C -1,2 2,C -1,0 9,5 8,0 7,6 9,B -1,2 0,C -1,4 9,0 0,3 8,5 8,0 0,8 8,3 7,3 2,5 -1,5 9,3 0,1 2,8 5,7 -1,6 3,1 3,8 7,3 -1,2 8,B 3,3 -1,6 4,4 3,4 3,7 2,4 2,C 6,3 7,0 4,8 1,0 8,8 -1,5 2,8 8,2 8,2 4,3 6,5 9,B 2,8 1,3 2,2 -1,5 3,8 -1,3 -1,0 0,3 4,4 3,7 5,1 4,9 -1,1 0,5 0,6 4,7 4,5 5,C 1,1 0,6 6,9 2,B -1,0 6,2 6,1 8,5 2,0 7,2 6,5 7,5 4,7 5,6 1,3 4,3 -1,1 8,1 0,9 5,2 3,5 -1,7 0,7 4,3 3,5 0,6 5,3 3,4 1,C 8,8 2,4 0,6 -1,2 4,5 2,9 -1,6 3,7 5,8 5,0 4,9 -1,1 7,7 4,0 4,5 7,B 8,6 8,2 1,4 9,0 0,6 4,1 2,B 6,7 9,B -1,6 5,7 0,8 1,8 7,C 2,C 4,3 6,C 8,8 -1,9 9,6 0,9 8,B 7,B 0,1 8,8 -1,6 -1,2 0,6 -1,6 8,4 4,B 8,6 4,B 5,2 9,8 1,1 -1,7 -1,7 9,4 2,3 -1,6 3,0 3,1 -1,5 -1,9 3,0 4,B -1,6 7,6 7,5 6,6 -1,3 8,4 -1,2 2,0 8,0 0,8 7,7 -1,3 8,2 8,2 9,5 2,3 2,B 6,8 3,7 2,C 2,1 4,0 -1,9 -1,1 3,6 6,3 -1,2 9,C 4,C -1,7 3,9 4,3 9,8 7,6 9,2 6,B -1,8 1,5 -1,2 5,1 -1,2 4,0 8,3 8,7 2,3 5,2 8,5 2,9 -1,1 4,7 -1,8 4,8 1,1 -1,7 0,B -1,0 9,0 3,8 1,B 2,0 5,1 2,4 2,2 -1,6 0,B 2,9 6,C 0,1 4,9 7,7 4,0 4,0 9,0 9,7 9,0 -1,9 4,4 -1,0 -1,6 6,4 6,B 5,2 -1,3 6,4 2,7 -1,0 5,0 3,2 6,3 9,9 8,0 -1,0 2,0 9,3 2,8 1,9 7,5 -1,1 6,5 0,3 9,4 2,B -1,2 3,7 -1,9 4,4 4,8 8,2 5,B 5,7 1,1 1,5 5,2 -1,6 4,B 5,4 3,3 3,C 7,7 8,9 -1,8 9,5 6,2 1,B -1,2 8,B 4,8 7,9 5,1 -1,7 9,1 -1,4 2,B -1,1 0,8 8,4 8,B 4,5 9,8 5,7 4,0 3,B 4,7 3,8 -1,1 3,4 -1,6 8,B 2,3 1,0 5,9 9,3 8,0 -1,3 0,5 9,C 5,4 5,B 3,5 5,1 2,2 7,3 0,5 2,C 8,7 -1,7 7,2 7,1 7,B 7,4 -1,8 5,9 4,B 7,0 1,5 -1,9 -1,3 9,5 -1,9 -1,7 8,1 8,5 -1,6 9,B 6,4 9,6 -1,2 5,0 4,2 0,8 4,1 6,9 1,0 6,B 0,4 5,8 -1,9 7,0 9,5 6,5 3,9 8,1 3,C -1,2 5,5 2,B 5,C 6,C 8,B 2,2 5,5 7,8 5,B 2,B 2,6 7,9 -1,2 4,6 3,2 5,0 5,7 8,C 8,5 4,0 9,8 -1,6 -1,0 6,8 3,6 3,B 4,0 8,0 3,C 7,B 7,6 7,6 3,B 7,2 1,C 5,3 8,0 6,C 9,1 -1,1 1,C 2,B 2,6 7,C 3,2 8,5 -1,8 4,0 9,0 4,1 3,B 7,C 3,C 7,5 -1,6 -1,9 4,B -1,9 1,5 1,4 -1,5 6,1 1,B 6,9 9,7 4,B 1,5 -1,8 0,2 -1,6 0,9 2,2 9,3 9,3 5,7 8,2 7,9 5,5 6,7 2,B 2,3 -1,7 4,5 -1,3 1,C 0,4 9,8 9,3 5,5 6,9 -1,1 -1,0 2,8 3,7 1,2 9,7 6,B -1,6 1,4 3,7 6,6 8,4 6,B 9,C 8,2 7,9 6,C 7,C -1,4 3,2 0,8 7,7 -1,0 8,2 6,2 4,3 1,1 9,6 5,B 9,7 5,7 3,5 8,4 -1,8 7,5 3,B 8,6 4,6 5,1 0,C 6,9 6,0 7,B 0,7 -1,6 5,B -1,5 -1,6 7,6 8,9 -1,6 4,C 0,8 3,B 3,2 -1,8 2,C 0,4 2,9 4,6 -1,1 5,4 3,6 2,1 -1,1 7,5 4,6 1,3 2,9 3,B -1,2 8,8 -1,0 7,8 0,B 4,6 8,C 3,B 1,8 9,9 -1,5 -1,7 9,7 4,C 9,6 3,1 -1,0 7,4 5,9 1,4 9,4 9,C 0,2 5,B 7,3 7,B -1,7 7,C 9,3 3,B 4,B 8,9 0,7 0,8 8,0 5,B 5,1 9,C 4,8 3,2 0,3 -1,7 2,4 -1,7 -1,0 -1,6 8,B 0,C -1,9 9,9 0,B 0,8 5,3 0,4 6,2 -1,4 0,2 3,6 0,8 5,9 6,9 4,8 -1,9 1,C 6,1 7,8 9,B 0,4 4,7 4,0 -1,7 1,0 -1,2 7,6 1,5 2,5 -1,6 4,2 7,B 7,C -1,8 -1,8 9,C 5,1 0,C 7,B -1,9 6,2 -1,6 2,3 4,1 4,1 5,2 7,1 9,B 0,6 7,6 4,3 4,0 9,C 5,3 2,6 4,C 8,6 -1,8 7,C 3,3 4,C 1,C -1,9 9,9 6,1 6,2 1,0 -1,9 -1,1 -1,1 3,0 3,C 7,0 8,9 8,3 6,6 5,0 4,8 6,3 5,C 8,B 3,4 -1,0 -1,3 3,B 0,9 9,0 4,5 -1,9 5,9 3,1 9,C 0,B 2,9 2,1 -1,9 1,C 4,8 3,C 4,7 2,6 2,9 5,6 3,2 0,B 6,2 8,8 -1,1 7,7 3,5 3,2 2,6 1,4 8,B -1,3 8,7 5,2 9,6 3,8 7,1 2,2 8,0 -1,9 8,4 8,6 3,3 9,B 4,4 2,1 6,3 -1,2 -1,8 0,1 9,1 8,7 9,3 4,3 -1,6 7,B 0,0 -1,4 4,5 2,7 6,7 -1,6 6,B 9,5 3,9 -1,1 8,8 -1,6 1,4 4,2 1,0 6,1 -1,8 -1,0 3,4 1,1 8,9 5,C -1,7 5,6 5,5 1,5 4,B 0,6 0,8 4,1 4,C -1,4 1,8 7,2 0,9 5,C 9,C 7,B 8,5 -1,4 6,B -1,6 -1,5 5,1 0,0 3,B 3,3 3,5 1,B 2,C 6,B -1,1 1,8 6,2 1,9 -1,1 5,B 1,B 7,0 -1,2 6,2 -1,7 1,B 5,8 9,C 8,C -1,3 7,3 7,C 0,1 4,8 9,9 -1,8 3,B -1,0 5,3 1,C 7,B 6,B -1,4 0,5 -1,2 3,C 8,C 2,3 2,3 -1,8 -1,3 2,3 5,B 0,3 -1,8 2,7 -1,7 5,9 6,C 2,2 9,1 5,6 2,B -1,1 -1,0 9,2 -1,5 -1,3 -1,2 -1,5 -1,8 -1,1 6,6 9,9 -1,0 1,C 1,0 -1,4 5,4 3,C 0,2 1,7 9,4 3,9 3,C 4,C 5,3 -1,6 1,C 9,B 6,3 7,1 2,6 6,B 6,7 4,C 7,9 3,B 4,2 -1,0 4,5 4,7 6,7 3,5 -1,1 8,5 8,7 0,1 0,6 8,6 7,5 6,B -1,5 0,4 3,5 -1,1 1,9 3,2 4,4 0,5 7,3 -1,4 3,C 0,2 5,6 1,8 -1,5 5,C 0,0 -1,9 1,B 6,9 6,0 2,5 1,2 2,4 8,B 9,2 5,9 3,9 -1,8 1,2 0,C 0,7 9,2 4,2 -1,6 3,9 9,3 9,3 2,4 -1,3 -1,3 -1,1 8,5 5,3 7,4 5,C 7,5 7,9 3,B 5,C -1,2 7,1 8,7 8,7 5,8 9,8 8,5 2,0 4,5 4,C 6,2 -1,6 -1,9 3,B 1,B 3,7 -1,4 3,C -1,7 2,6 4,0 5,1 8,B 0,5 8,5 9,C 2,C 6,B 4,B 5,8 4,5 -1,5 8,7 7,C 6,8 1,1 4,C 4,8 8,4 9,6 8,B 0,2 7,6 9,4 2,0 1,9 7,1 6,2 3,1 2,1 3,3 3,C 0,3 2,5 1,7 -1,5 8,1 -1,0 1,9 6,7 3,2 -1,6 2,2 7,C -1,1 7,B 1,0 4,9 2,3 8,C 5,9 5,C 6,5 3,3 -1,8 2,4 0,5 1,B 1,4 4,0 1,6 0,0 1,B 9,5 4,9 3,B -1,6 1,7 -1,7 9,2 -1,6 -1,2 8,C 1,4 7,4 3,3 5,8 5,4 3,B 4,C -1,6 5,0 9,B 3,9 7,B -1,9 9,4 8,1 3,B -1,3 5,1 0,B 2,8 4,1 5,0 -1,2 6,3 5,B 2,0 8,9 -1,3 0,7 7,B -1,8 7,3 9,C 3,1 -1,4 8,C -1,0 2,B 8,3 7,C -1,5 2,B 9,4 -1,0 -1,1 9,0 9,5 0,3 -1,2 -1,4 4,B -1,2 -1,5 -1,9 6,0 0,C 9,9 6,4 8,3 2,6 -1,1 -1,8 7,4 9,B 1,5 8,3 3,C 0,4 0,4 4,6 1,6 3,C -1,1 9,B -1,1 -1,0 7,C 7,2 7,C -1,0 9,9 5,C 4,5 7,3 6,3 0,2 2,C 7,8 2,0 -1,7 8,0 4,7 -1,3 7,3 -1,1 -1,2 7,2 9,6 4,C 0,1 1,2 9,1 -1,0 0,8 2,1 8,C 6,3 0,C 7,C -1,2 1,C 3,4 7,C 7,0 6,6 7,B 7,5 7,6 3,7 -1,7 5,6 9,2 2,C 0,9 9,0 -1,1 3,2 7,0 2,8 4,7 0,C 8,C 9,5 9,2 7,B 9,0 8,6 3,7 2,6 -1,7 4,1 8,0 2,0 8,1 -1,1 4,5 1,B 9,9 0,7 0,1 2,3 2,4 -1,3 3,4 9,2 3,B -1,4 1,3 9,9 -1,6 -1,4 5,6 7,B 2,0 0,2 9,2 2,C 1,5 3,4 5,5 8,5 5,7 -1,7 -1,3 8,7 0,0 0,2 -1,5 2,6 4,7 1,6 5,4 -1,7 2,B 9,9 5,8 4,2 0,1 6,2 7,C -1,7 9,0 2,3 7,6 2,7 0,C -1,9 -1,3 0,6 1,9 -1,6 -1,9 -1,8 -1,0 7,5 -1,2 6,2 8,9 8,6 3,7 6,0 7,4 8,5 4,4 5,0 7,8 8,6 5,3 -1,4 3,C 8,C -1,6 9,C 6,7 2,8 7,8 -1,9 2,B 7,2 7,1 0,8 7,7 -1,0 8,B 4,1 2,0 6,B 3,7 7,6 1,B 7,6 -1,0 1,1 6,0 2,9 4,2 1,C 5,1 -1,2 8,6 7,1 4,C 0,5 6,6 -1,2 1,5 2,B 3,7 4,7 -1,9 4,4 2,9 -1,3 3,9 -1,1 -1,4 -1,9 6,3 5,7 3,7 7,5 1,7 0,B 5,9 5,C -1,9 -1,6 2,4 0,9 9,0 9,0 -1,1 4,4 8,6 4,1 1,6 8,7 7,3 9,4 1,B -1,4 1,C 6,2 8,4 4,C 8,5 -1,5 2,9 9,C 1,5 -1,7 0,C -1,2 3,7 5,4 8,1 4,1 9,8 9,0 3,C 8,1 5,3 5,C -1,4 8,C 9,2 1,4 1,6 5,3 4,0 0,0 2,5 8,1 1,5 8,0 3,1 1,B 1,2 5,C 1,3 9,5 6,9 6,9 9,3 3,3 4,B 5,6 7,5 8,0 6,9 2,C 0,C -1,5 6,0 -1,5 -1,1 9,1 8,8 0,B 3,7 -1,9 -1,9 3,B 3,3 3,2 1,C 1,4 1,3 8,C 4,1 -1,4 9,5 9,5 9,B 1,2 7,0 -1,2 5,9 5,C -1,9 3,0 3,4 1,5 2,2 3,0 7,2 6,1 -1,0 -1,1 4,2 0,0 7,8 6,C -1,9 0,3 3,3 5,4 2,C 7,B 0,8 6,3 6,7 1,0 3,1 2,7 1,1 -1,6 2,5 6,0 2,8 0,0 -1,6 4,7 2,0 -1,4 7,7 5,9 4,4 9,0 5,9 -1,4 4,B 2,9 9,9 8,0 6,B 9,3 9,1 8,7 -1,2 5,C -1,1 -1,9 4,9 4,C 8,5 9,B -1,4 3,7 6,C 5,1 8,C 1,2 2,4 3,9 7,6 4,B 6,5 3,2 -1,2 8,2 4,0 -1,2 2,B 3,B 1,8 8,B 5,5 9,6 8,0 -1,9 9,6 1,C 4,5 1,C 3,3 -1,8 -1,5 6,1 6,7 6,7 7,8 4,C 0,3 -1,7 1,8 -1,1 9,6 7,1 4,0 3,8 1,1 3,B 2,5 -1,0 5,4 6,C 5,2 7,4 7,C 9,1 6,1 4,7 -1,0 5,8 0,1 5,C 1,B 4,C 7,2 -1,0 6,5 -1,9 2,2 6,C 2,4 1,8 -1,9 0,1 -1,7 9,7 4,2 5,3 -1,0 7,1 9,4 9,5 3,9 8,2 5,7 -1,6 -1,5 2,C -1,4 -1,5 5,C -1,3 4,4 -1,2 1,B 7,6 6,B 0,4 6,B 8,5 -1,1 4,B -1,9 5,6 3,4 3,6 8,7 -1,9 2,6 -1,0 2,C 2,2 8,4 -1,5 2,B 5,8 4,1 7,7 2,9 0,8 8,5 -1,0 -1,9 9,6 7,C 4,7 -1,6 6,6 1,3 5,6 6,C 1,4 0,9 4,6 -1,5 0,5 6,B -1,2 -1,1 0,9 5,3 2,9 4,8 6,4 0,6 3,C 0,9 -1,7 2,B 5,5 5,6 -1,0 6,2 5,7 3,6 1,C 8,1 5,3 6,B 2,1 8,7 2,B 3,B 1,4 3,0 1,7 1,4 8,2 2,1 8,4 -1,1 3,B -1,0 2,8 5,C 1,C 2,1 5,3 -1,6 -1,7 2,2 2,2 8,C 3,9 9,B -1,4 9,6 6,1 -1,1 5,6 1,C 1,5 2,B -1,7 6,9 7,3 9,4 -1,9 -1,3 4,4 9,7 5,8 7,9 1,6 2,4 3,C 9,B 0,C -1,6 9,5 2,C 8,0 7,C 0,5 4,3 0,7 9,3 6,C 1,0 -1,4 -1,4 2,1 5,9 2,7 4,8 4,B 0,8 -1,4 0,7 5,9 -1,1 0,6 6,4 4,2 3,9 6,3 4,C 1,4 0,6 -1,8 1,6 7,B 9,0 8,4 3,4 3,1 -1,1 -1,6 5,5 1,7 4,9 8,C -1,5 -1,2 4,2 0,C 4,0 5,B -1,4 1,C -1,1 5,0 6,1 6,4 6,B 6,7 1,B 2,5 -1,8 1,5 -1,8 1,0 5,9 7,B 0,C 0,7 3,C 1,C 8,3 5,1 7,4 0,2 6,3 -1,3 0,3 2,4 -1,0 5,9 7,C 6,B -1,3 1,C 4,3 0,0 6,1 4,C 5,1 2,5 2,6 0,0 2,3 0,8 -1,6 1,C 6,0 1,2 6,B -1,2 1,C 2,9 9,4 0,8 -1,4 3,B 1,5 4,8 7,9 -1,4 0,4 -1,6 7,3 7,9 5,C 1,C -1,8 -1,4 9,3 6,9 8,2 1,B -1,3 6,0 0,3 -1,2 6,8 8,2 3,0 3,4 2,0 7,6 -1,3 1,7 5,2 6,8 5,5 -1,3 1,B 9,C 0,6 3,7 6,8 8,8 8,6 9,0 0,B 9,7 3,0 4,B 6,4 0,1 1,C 5,2 6,B 8,8 4,B 4,2 -1,3 -1,7 4,1 7,3 1,B 4,B -1,9 4,0 0,5 9,8 -1,2 0,B 5,B -1,2 7,1 2,7 3,8 -1,8 5,0 3,C 1,0 9,B 8,4 9,4 1,1 6,4 -1,3 0,3 -1,6 -1,9 7,5 6,2 -1,5 2,B -1,8 4,B -1,4 0,5 4,1 -1,1 3,2 3,4 9,0 5,7 4,0 -1,1 4,B 0,2 7,9 -1,1 3,0 -1,2 -1,7 7,C 2,9 -1,7 -1,2 0,5 1,9 3,9 -1,9 2,9 4,1 5,5 1,C 2,7 8,C 0,3 6,4 8,0 -1,9 -1,8 1,6 5,C -1,3 9,C 5,6 9,C 6,C 3,B 5,9 3,5 2,9 4,7 9,2 4,6 3,C 2,1 2,1 2,C 0,C -1,3 8,4 4,8 5,5 1,1 6,7 7,0 8,3 8,2 9,3 7,1 5,5 -1,8 9,2 4,4 -1,4 -1,0 -1,6 -1,2 7,4 4,B 6,7 -1,7 7,C 2,7 2,B 1,2 -1,3 4,7 -1,5 2,1 4,8 6,6 8,2 1,5 8,6 0,0 8,9 6,8 4,6 3,0 -1,9 -1,8 -1,1 1,6 8,B 6,C 0,6 8,3 4,B 7,2 4,1 3,8 4,8 7,9 0,7 3,0 7,B 3,C -1,3 -1,1 2,2 7,5 0,C -1,0 9,B 9,4 -1,3 -1,8 2,B 5,0 8,3 0,2 8,4 8,3 9,2 2,2 5,8 9,2 2,5 7,2 2,1 6,4 -1,4 5,4 7,B -1,1 9,3 9,C 6,2 -1,6 0,B 7,B -1,2 3,2 8,6 3,7 0,7 2,1 2,4 9,3 4,4 3,9 -1,6 1,9 1,4 9,5 9,1 -1,2 6,3 9,5 9,3 3,B 3,B 1,4 5,C 2,B 9,9 4,1 1,2 6,C 1,1 5,B 5,1 8,B 3,C -1,7 5,C 1,1 -1,5 0,1 2,7 8,9 6,2 2,B 1,8 2,C 3,7 4,3 6,4 7,B 4,9 8,C 5,5 -1,9 4,7 -1,7 -1,4 6,C 7,2 -1,3 1,6 -1,6 7,9 4,5 5,2 6,2 -1,9 4,2 1,9 9,8 -1,2 5,1 -1,3 2,1 5,7 1,C 0,C 2,0 5,5 9,B 0,8 7,C -1,7 -1,1 6,0 0,B 2,C 9,6 8,7 5,7 -1,1 7,6 9,5 5,C 4,B 7,3 0,8 -1,7 8,C 3,2 9,4 0,9 1,5 1,1 4,C 4,0 5,6 8,2 1,1 9,1 7,3 -1,1 8,0 4,9 4,8 -1,8 4,B 6,B 1,3 3,6 8,8 2,0 2,9 8,1 8,6 1,7 -1,0 -1,2 6,8 9,9 0,7 -1,5 1,B -1,8 -1,7 1,2 -1,9 5,5 3,1 2,C 5,6 4,1 -1,0 0,C 6,6 5,4 -1,7 2,7 1,9 1,8 5,7 9,C 6,4 6,9 1,9 7,7 9,B 9,8 4,C 3,8 4,5 9,C 1,9 1,6 1,C 4,9 -1,0 -1,4 2,C 0,5 2,6 8,1 3,4 1,5 4,7 -1,6 7,9 7,B 4,2 -1,4 2,7 7,5 6,B 1,3 2,0 2,6 0,6 3,2 -1,6 0,0 -1,7 1,6 0,7 2,0 -1,0 7,2 9,0 -1,5 5,6 3,8 -1,1 -1,2 -1,0 4,C 1,1 1,C 5,7 6,4 -1,7 2,1 5,C -1,1 -1,5 3,B -1,8 0,6 -1,3 2,5 5,5 6,2 9,8 8,C 8,B 1,1 3,8 -1,1 6,5 -1,1 3,5 -1,1 6,9 0,B 3,C -1,7 9,5 3,0 -1,6 0,0 4,6 3,B 4,8 7,B 2,7 -1,7 4,4 7,C -1,8 5,2 4,B 7,B 1,8 2,B -1,2 0,6 7,6 -1,6 -1,1 8,8 8,B 7,2 2,C 5,7 -1,9 4,1 2,6 9,1 8,6 -1,1 6,4 -1,4 -1,8 3,7 3,0 0,4 -1,4 7,6 3,2 9,1 4,4 5,C 7,5 6,8 0,7 7,C 5,B -1,1 6,C -1,2 5,4 2,6 0,C 0,B 4,3 2,4 2,B 3,2 7,B 5,C 2,9 7,9 -1,5 6,B 0,9 9,B 3,6 3,4 2,7 0,4 4,3 -1,0 2,C 4,4 0,5 -1,4 0,8 6,8 1,B -1,0 0,4 4,8 -1,2 1,0 -1,1 8,8 6,2 1,C 7,5 1,0 -1,9 2,5 -1,2 6,4 5,0 0,0 0,4 5,4 1,4 0,B 2,5 0,8 3,9 2,B 3,B -1,8 1,7 1,4 8,0 7,9 0,0 2,8 2,8 5,B 7,B -1,5 -1,1 7,3 4,7 -1,3 9,8 0,2 -1,2 9,3 8,7 4,C 1,8 6,5 8,5 4,C 5,4 9,3 -1,9 1,5 -1,9 4,9 1,C 1,8 -1,6 9,9 6,3 1,2 1,4 7,2 7,5 5,5 7,7 0,C 9,7 9,6 3,1 -1,2 0,C 7,B 5,9 -1,9 3,8 7,6 5,C 5,6 -1,4 5,7 2,8 2,1 5,7 1,2 3,0 9,4 -1,8 0,3 4,C 1,C 0,6 9,6 3,3 4,8 6,B 1,4 5,3 4,9 -1,4 3,2 4,7 4,C 5,1 3,7 2,4 -1,1 7,0 5,C 7,6 4,2 5,9 9,0 7,1 -1,6 8,0 5,7 -1,1 4,4 7,B 8,B 5,C -1,4 -1,6 1,7 4,C 5,C 8,3 9,C 8,8 -1,9 1,C -1,1 -1,2 0,1 4,4 6,4 3,7 3,9 6,1 4,6 5,6 8,0 6,5 9,C -1,9 8,C 0,6 4,B -1,7 9,9 8,0 2,C -1,4 3,5 5,0 -1,0 6,7 9,3 3,5 3,8 7,6 8,C 3,C 2,6 3,4 6,6 -1,8 -1,3 8,2 0,C 5,2 0,B 2,7 9,C -1,3 7,0 8,5 3,6 7,9 9,C 0,3 3,6 -1,5 0,C 4,9 3,2 -1,2 7,6 8,3 -1,4 -1,5 -1,5 8,B 6,9 6,5 -1,7 6,7 9,7 5,B -1,8 1,2 5,7 5,8 6,2 -1,9 4,0 3,5 -1,6 7,5 3,6 9,0 2,6 1,5 4,9 -1,7 -1,7 2,5 -1,6 2,1 0,0 4,C 1,0 3,7 3,7 8,7 0,9 8,3 9,7 4,C 6,4 0,4 0,B 6,2 4,B 6,C 2,7 5,1 0,1 -1,2 9,4 1,C 5,0 8,9 4,3 5,7 6,5 1,1 3,3 4,4 5,3 0,7 1,8 -1,1 0,B 7,C 3,5 7,2 4,0 4,C 2,7 0,3 -1,2 3,2 3,8 2,3 4,2 9,C 6,4 8,5 -1,3 2,5 -1,2 0,B 2,B 6,B 9,2 -1,9 4,B 4,7 6,7 5,1 4,7 -1,7 9,4 5,1 8,2 7,3 1,0 3,9 4,B 5,7 1,1 9,6 7,7 0,0 6,0 1,C 7,1 3,C 9,6 6,5 6,C 1,3 0,8 2,6 6,0 -1,9 -1,3 3,5 2,0 -1,5 0,0 -1,5 8,9 -1,2 5,7 6,2 9,C 1,2 8,4 3,B 2,9 -1,5 2,C 2,0 9,B 6,0 -1,7 -1,7 0,C 8,B 1,6 8,0 -1,9 3,B 1,5 -1,1 2,7 1,2 8,1 3,7 3,7 9,2 2,7 0,0 4,C -1,1 9,8 4,2 9,5 4,9 5,8 8,3 7,8 0,4 0,B 5,1 3,7 1,C 3,2 7,2 3,9 8,B 2,4 -1,7 7,0 -1,6 1,C 3,0 1,7 -1,3 5,9 3,3 6,B 6,9 2,C 4,C 0,B 7,B 3,C 8,B 9,6 -1,7 5,4 4,9 3,0 -1,3 0,5 4,5 -1,2 9,5 -1,4 9,8 2,6 1,7 -1,2 0,0 3,0 -1,5 0,6 5,C 9,C 6,9 -1,4 8,C -1,9 6,3 4,C 3,4 6,3 8,2 5,4 5,2 4,7 4,9 0,8 4,5 -1,8 8,9 0,5 -1,8 1,6 -1,7 -1,6 -1,1 4,0 8,C -1,8 -1,7 2,3 1,0 0,4 0,7 -1,2 4,8 1,C 7,B 2,9 5,6 4,6 5,B 8,6 1,7 0,8 7,8 6,3 4,1 -1,4 -1,7 2,3 2,9 -1,2 8,0 4,1 2,B -1,6 2,6 7,0 6,3 -1,9 3,4 3,9 -1,8 8,3 -1,1 2,B 2,2 0,B 1,B 9,0 8,0 2,8 4,B 6,5 -1,7 2,3 -1,3 0,0 0,B -1,6 8,7 0,2 1,6 1,C 0,5 5,9 4,7 5,2 7,5 2,B -1,7 9,B 7,B 5,C 8,C 5,4 6,2 -1,8 9,8 5,6 6,4 -1,4 5,4 9,C 8,2 7,5 9,B 6,6 7,1 -1,2 8,2 2,B 4,1 0,C 1,1 8,7 1,3 1,5 7,5 7,4 -1,0 6,3 2,9 -1,2 0,5 3,6 8,6 -1,2 0,B 9,8 4,B 2,C 6,6 9,1 1,B 9,0 0,B 8,5 4,0 5,9 0,C 3,3 5,3 7,4 8,C -1,3 9,2 1,B -1,2 9,0 -1,2 7,2 3,7 9,B 8,C 5,5 2,1 -1,0 5,C 0,3 -1,0 -1,2 4,4 8,2 0,6 3,B -1,5 4,5 8,B 6,B 1,8 -1,9 -1,9 3,5 1,B 2,B -1,2 4,2 -1,9 2,8 3,8 6,2 6,C -1,9 -1,4 7,4 8,9 -1,8 1,9 -1,4 -1,8 6,8 4,4 8,C 0,9 -1,3 4,9 6,4 2,2 -1,9 3,8 0,B 3,C -1,4 -1,4 5,8 3,7 4,3 3,B 2,6 3,3 -1,8 -1,6 7,3 7,9 4,B 6,B -1,9 0,7 2,B -1,6 3,1 3,6 9,C 2,2 -1,5 -1,0 6,0 2,4 8,9 7,B 6,0 -1,4 8,7 3,5 7,6 8,3 -1,6 -1,2 -1,1 5,4 1,8 9,C 0,5 -1,7 9,8 7,9 3,0 -1,0 5,9 -1,6 -1,8 4,1 5,3 -1,7 4,2 6,2 5,6 9,2 -1,2 9,3 4,0 4,9 9,9 7,7 4,9 -1,9 4,9 4,4 0,0 3,9 1,C 0,C 0,1 7,B 0,2 9,9 -1,6 5,3 -1,8 1,6 5,C 4,2 8,5 7,5 1,6 3,C 0,B 4,7 9,B 5,B 9,3 0,2 -1,0 1,7 -1,3 3,B 3,B -1,7 7,C -1,8 2,1 1,0 3,3 -1,6 2,0 7,4 -1,4 -1,3 6,5 9,8 7,4 4,7 4,7 -1,5 5,C 3,4 5,C 5,0 4,5 6,B 0,1 -1,0 -1,1 1,B -1,7 6,4 4,0 -1,5 7,9 3,7 6,C 6,4 7,B -1,9 -1,7 5,B 7,0 4,C 2,4 5,6 4,C -1,7 0,9 4,8 5,0 6,8 0,2 3,7 6,8 9,6 3,4 -1,6 2,1 -1,4 1,B 4,C 4,2 6,1 2,3 5,3 -1,5 1,7 3,4 1,B 8,1 6,7 5,1 -1,5 -1,8 5,C 0,2 4,B 7,3 1,9 -1,5 6,C 5,2 -1,9 9,C 2,8 1,2 8,8 1,C 1,C 3,C 0,5 -1,4 1,B 1,0 3,4 8,8 2,B -1,6 -1,0 2,1 6,9 1,0 2,3 3,B 9,B 6,C 8,2 2,9 9,C 5,3 8,C 8,4 2,6 8,0 8,B 4,7 7,3 5,1 3,C 9,7 8,6 6,B 0,4 0,3 3,B 0,B 9,0 6,1 1,2 6,5 -1,8 4,7 4,9 8,C 0,7 1,7 1,7 1,0 8,7 1,8 7,7 4,2 5,4 -1,2 6,2 9,7 4,C 2,6 5,1 -1,2 0,1 5,0 1,4 8,1 4,6 6,B 8,7 9,C -1,9 3,3 6,C 1,3 7,9 9,1 -1,6 7,5 2,8 9,4 -1,6 7,9 4,5 8,B -1,2 6,4 4,B -1,4 4,5 2,2 2,5 8,0 3,4 3,9 0,0 2,5 4,7 -1,7 1,B -1,1 5,9 -1,6 2,B -1,5 7,C 6,8 -1,9 6,4 -1,5 0,B 0,B 3,2 0,3 1,2 1,2 -1,4 4,6 8,3 0,C 7,B 4,5 2,1 1,9 -1,9 -1,1 3,B 8,8 9,7 7,2 3,4 4,4 9,8 9,9 8,C 6,4 5,6 5,9 -1,5 4,9 2,6 9,2 9,8 4,4 7,B -1,1 8,3 4,3 2,5 0,9 8,C 3,4 8,5 -1,7 3,C -1,9 4,7 4,8 9,B 5,4 8,C 7,6 -1,6 9,8 8,4 9,7 -1,9 2,3 0,4 -1,2 3,9 8,B 4,0 8,7 9,6 0,C 6,6 -1,6 8,9 3,0 1,9 -1,2 8,6 6,5 2,C -1,7 0,4 1,7 -1,2 8,0 -1,9 3,9 8,5 -1,6 2,C -1,6 8,B 6,8 9,C 2,0 0,2 2,6 6,C 5,7 1,B -1,7 0,8 2,B 0,4 5,7 0,9 -1,7 2,2 3,3 -1,6 -1,4 2,2 6,8 4,B -1,1 8,3 -1,4 6,8 8,3 4,2 1,2 1,0 7,5 2,4 7,7 9,C 4,9 0,1 -1,6 2,C 5,7 1,1 7,B 9,B 4,B -1,8 7,0 3,8 2,5 -1,4 6,2 1,0 -1,9 3,0 8,5 6,8 1,B 6,1 -1,1 7,6 8,6 -1,0 6,C 9,7 7,C 4,C 6,3 8,4 8,2 3,5 6,9 -1,3 6,0 5,2 7,2 2,8 2,2 5,2 6,C 9,1 2,C 1,4 3,C 7,0 4,5 0,8 5,5 0,1 -1,4 5,9 8,C 8,2 3,4 6,B 7,C 9,4 -1,0 9,6 -1,2 -1,7 2,5 8,6 4,5 2,3 -1,3 0,C 0,B -1,9 1,3 5,B -1,1 0,C 1,1 -1,4 0,8 5,6 3,B 0,C 8,8 9,2 5,7 1,B 0,4 9,3 7,1 8,4 2,1 -1,2 4,8 1,B 8,B 0,4 1,9 1,5 6,4 -1,3 -1,8 1,0 0,4 2,5 -1,5 1,3 1,8 3,0 7,5 0,9 5,1 1,6 1,9 0,C 5,2 6,C -1,3 2,1 -1,1 6,9 6,0 9,5 2,9 1,6 5,9 -1,2 7,B 0,5 9,0 8,7 9,B 2,C 0,9 5,1 -1,0 6,C -1,3 8,4 8,9 -1,1 1,6 8,6 6,C -1,6 -1,7 7,8 8,0 -1,9 -1,6 2,C 3,5 6,C 1,9 -1,7 8,8 5,7 -1,2 -1,3 8,B 6,B 6,B 3,1 6,5 9,1 1,0 7,0 0,1 -1,2 7,9 6,2 6,B 9,B 0,B 6,3 6,0 1,7 3,2 0,6 4,B 6,B -1,7 4,C -1,1 8,5 -1,2 4,0 7,5 5,6 -1,4 3,8 5,C 1,9 0,8 4,0 6,8 -1,9 5,0 7,C 6,2 -1,1 -1,4 2,8 8,9 3,8 4,3 0,1 -1,3 1,C -1,9 9,7 8,C 3,5 1,4 7,3 1,0 5,2 3,5 3,B -1,0 2,B 0,2 -1,4 -1,4 -1,6 8,0 4,4 1,0 -1,3 5,2 6,8 1,0 6,5 6,7 1,B -1,3 2,2 -1,0 -1,9 5,6 7,8 4,C -1,9 6,C -1,8 3,C 1,7 -1,2 2,C 1,B 5,9 2,C 1,1 -1,9 0,0 -1,1 -1,6 7,B -1,7 6,6 1,3 7,0 8,5 3,5 9,8 0,2 4,9 4,9 9,0 2,2 4,2 -1,3 8,3 7,0 5,6 0,6 5,C -1,9 -1,4 0,3 6,4 5,7 0,1 3,6 8,7 -1,8 5,9 0,0 7,B -1,0 0,6 5,0 9,2 -1,0 2,6 2,3 5,B 7,8 5,8 0,1 1,5 6,9 6,1 0,9 1,2 5,1 1,4 1,6 -1,5 6,7 7,C -1,1 6,1 6,C 6,1 6,9 0,C 9,6 8,4 -1,4 2,8 -1,9 3,3 1,2 5,1 1,2 8,7 1,4 0,C 1,7 2,6 5,4 -1,7 6,1 7,6 3,7 6,5 4,B 1,5 2,9 3,1 -1,4 -1,2 8,C 8,6 1,2 3,1 9,B 5,6 9,C 4,7 4,0 7,6 8,0 8,9 -1,0 3,1 -1,3 5,7 1,9 7,6 3,8 6,C -1,6 -1,2 2,1 -1,1 9,6 9,9 7,C -1,8 3,7 5,1 9,8 4,5 8,9 3,5 0,2 0,2 0,3 6,2 8,9 7,B 4,C 5,C 0,5 3,7 4,B -1,6 -1,6 -1,2 1,9 4,4 3,2 1,9 0,7 8,B 3,8 9,3 8,C 1,6 -1,6 7,8 2,B -1,7 1,8 3,B -1,0 -1,3 9,0 8,1 -1,5 8,7 8,0 0,4 0,0 -1,1 -1,3 -1,0 8,5 2,8 9,3 2,B 4,7 6,0 6,6 -1,0 4,4 -1,2 4,C 1,8 3,2 3,3 3,C 0,3 2,C -1,1 9,7 0,9 7,2 9,4 8,2 2,C 8,B 8,2 2,0 -1,1 9,4 3,5 9,B 6,8 -1,2 0,B 8,8 -1,7 3,5 3,6 -1,9 3,B 7,9 8,2 1,4 5,B 2,0 2,C 7,5 2,5 4,2 -1,9 2,6 -1,4 -1,4 9,7 0,5 6,B 2,5 2,B 8,3 6,9 0,1 -1,6 3,5 8,4 -1,4 5,0 9,9 4,9 3,2 3,2 0,5 0,9 8,9 8,0 -1,3 9,4 -1,9 -1,8 6,B -1,8 9,8 7,0 8,0 8,8 8,0 3,8 4,C 6,9 0,B 0,7 1,B 3,8 -1,6 6,C -1,8 7,3 5,1 4,B -1,7 3,1 8,9 -1,9 2,3 0,8 4,1 5,3 6,5 4,C 2,8 -1,8 9,5 1,7 1,5 3,B 3,7 4,2 -1,5 -1,2 3,1 3,8 4,2 7,B -1,9 -1,6 0,6 8,0 3,2 -1,5 5,5 7,4 7,0 6,1 1,1 6,2 -1,9 0,3 5,7 -1,0 0,5 1,1 -1,8 -1,8 2,8 -1,6 0,8 6,0 5,7 6,2 8,2 0,7 3,0 5,5 7,6 2,1 0,1 1,7 3,B 7,5 7,8 5,2 2,B 0,2 -1,7 1,8 6,6 4,B 5,3 3,0 -1,7 6,B 2,9 3,C -1,5 4,B 5,B 3,4 8,1 -1,0 7,4 5,C -1,3 1,2 3,9 1,8 6,C 5,4 0,2 1,B 9,2 5,7 -1,8 1,5 5,2 7,C 4,8 -1,1 0,5 2,4 1,C 6,7 4,9 1,1 2,0 -1,9 3,B 6,1 0,B 4,B 6,3 6,6 8,8 2,8 4,8 9,8 3,7 2,1 8,0 -1,0 6,3 -1,9 9,4 2,8 0,2 2,1 -1,0 2,C 4,B -1,8 7,8 7,4 -1,6 0,7 3,6 9,7 0,6 9,8 6,6 5,3 -1,2 -1,6 5,4 6,4 4,5 0,B 4,C 9,5 7,B 5,7 4,2 6,4 -1,8 1,4 9,3 6,2 3,1 5,2 9,5 7,1 4,B 0,5 4,1 4,2 -1,7 1,5 1,C 5,C 5,C 9,3 6,1 2,4 6,4 9,7 8,C -1,6 1,8 0,1 -1,2 2,B -1,4 6,4 -1,6 3,0 -1,2 -1,5 5,5 1,1 8,B -1,5 8,8 -1,0 1,1 1,C 1,8 3,5 5,C -1,5 9,1 3,4 3,2 6,2 2,5 1,5 9,4 -1,8 4,4 -1,3 0,9 7,0 3,2 5,2 9,4 9,B 8,3 5,7 -1,5 5,0 -1,3 -1,8 6,C 4,B 3,8 4,9 -1,1 4,4 7,C 2,3 2,C 4,3 9,B -1,4 -1,4 9,6 6,7 3,B 6,4 8,0 3,B -1,7 9,6 2,5 5,C 9,6 -1,1 8,B 5,B 9,5 -1,6 1,9 9,4 3,7 2,1 -1,8 2,3 6,0 6,C 8,C 6,C 9,B -1,8 5,0 -1,6 3,C 4,B 8,6 7,5 5,5 5,7 1,7 1,3 4,6 3,C 0,6 4,2 2,1 1,B 4,B 5,C 4,C 2,B 6,4 3,6 6,7 8,2 7,0 0,4 0,5 8,0 -1,3 9,B 8,4 -1,8 2,8 -1,5 2,9 -1,2 1,6 7,9 6,0 -1,9 1,C 2,6 -1,6 2,0 7,8 -1,7 8,7 8,2 7,C 6,7 0,2 0,C 4,3 8,6 8,4 2,8 2,9 7,9 5,0 8,B 8,6 3,3 5,5 7,8 1,C 0,3 1,1 -1,8 6,8 7,2 0,4 5,C 2,B 9,8 5,C 8,8 8,C 1,7 -1,0 0,6 3,1 -1,9 5,6 -1,7 5,C -1,0 4,5 3,4 -1,7 8,9 7,3 9,B 4,8 4,C 0,B 6,C 9,3 -1,4 7,1 3,7 -1,6 9,8 -1,1 9,2 0,6 4,B 7,9 -1,8 3,1 7,8 1,C 7,1 0,5 -1,3 -1,9 3,7 7,8 7,7 0,C 9,6 5,4 -1,4 9,4 4,3 2,7 8,3 9,C 8,0 3,B -1,1 2,8 8,1 -1,9 -1,7 4,B 2,4 7,8 -1,9 2,1 -1,6 7,C -1,5 0,1 6,9 4,3 4,B 5,7 -1,1 -1,1 0,C -1,5 8,2 6,4 9,0 9,0 0,1 8,9 0,B 5,1 8,4 9,6 0,B 2,7 3,2 2,4 9,6 -1,7 5,1 4,4 1,8 2,C 8,B -1,0 -1,2 3,9 0,B 9,3 1,4 -1,9 3,2 0,5 -1,8 -1,2 9,C 8,5 8,8 4,C 1,B -1,3 5,7 -1,3 -1,5 1,2 0,4 9,B 0,2 1,B 9,0 0,1 8,5 1,C -1,9 3,7 1,C 4,2 1,8 8,6 -1,0 6,0 4,9 6,3 7,B 2,4 -1,2 -1,1 7,B 8,9 1,1 7,1 7,8 5,5 -1,6 3,B 0,5 -1,5 8,C 7,B 7,C 3,3 5,1 2,3 5,2 0,7 7,4 -1,9 8,1 2,0 8,B 9,1 -1,2 4,8 -1,9 -1,1 9,C 0,C 5,7 7,3 9,2 2,B -1,4 5,6 6,5 9,5 6,8 2,C 3,8 8,5 7,6 7,3 8,4 2,3 5,8 6,8 3,4 -1,5 0,C 9,C 6,6 7,C 3,5 3,C 1,6 -1,6 -1,3 3,6 3,B -1,9 9,9 3,7 3,C 6,3 5,6 -1,8 3,C 9,C 5,1 9,4 0,7 2,0 0,6 -1,3 6,9 7,2 -1,0 1,B 8,9 0,4 6,9 5,9 9,7 -1,7 8,C 5,B 6,B 7,0 -1,8 8,9 -1,1 -1,2 3,C 5,C 0,6 -1,5 4,7 4,3 7,B 9,1 -1,7 8,7 0,C 1,7 6,9 7,8 -1,2 0,4 -1,0 5,B 8,8 1,B 0,0 8,C 2,1 4,0 4,0 5,7 8,B 3,4 8,C 9,9 -1,0 0,C 1,9 4,6 7,C 6,7 -1,8 9,0 8,2 9,5 2,2 7,2 7,5 -1,6 2,C 8,3 -1,4 -1,5 5,8 7,C 3,C 2,B 1,7 5,0 -1,0 -1,6 5,6 -1,8 8,1 -1,5 -1,5 4,7 -1,4 0,B 1,6 2,C 2,C 9,B 0,7 4,C 9,3 7,C 0,B 5,3 5,7 4,7 -1,3 0,6 1,9 0,7 2,4 6,B -1,5 6,0 5,3 8,8 5,5 8,3 7,B 1,6 3,7 7,8 6,C 4,6 1,B -1,6 5,5 8,1 9,8 7,6 1,0 -1,4 6,B 6,C 7,5 3,1 4,6 2,7 5,3 0,B 6,0 -1,8 4,8 1,C 9,B 8,9 8,B 6,0 2,7 8,C -1,2 1,6 -1,7 5,C 6,0 -1,1 3,9 8,1 -1,5 -1,5 -1,8 4,9 0,B 3,5 5,B -1,4 3,C 6,9 1,0 0,B 7,4 5,2 3,7 7,5 8,4 2,3 -1,9 8,3 -1,7 6,6 7,9 9,2 -1,0 1,8 7,3 5,0 1,3 -1,5 -1,1 7,7 -1,0 1,B 2,9 7,8 -1,4 9,4 4,C 8,0 3,0 9,6 8,6 8,0 4,B 3,8 2,1 0,0 9,B 3,8 1,0 9,2 5,9 7,4 -1,6 0,1 9,7 5,B 6,5 9,5 9,6 -1,7 3,9 3,B 7,8 5,1 5,6 5,2 -1,2 1,C 6,7 1,4 -1,5 6,5 0,0 -1,8 2,9 7,8 5,2 7,9 -1,9 9,7 4,3 2,C -1,6 3,5 9,3 6,6 -1,7 9,B 8,8 3,C 8,8 -1,8 7,0 4,B 4,4 4,3 8,C 7,1 3,3 4,5 2,4 3,9 4,3 6,C 2,C 4,9 9,4 8,9 0,C 6,1 1,9 1,B 9,C -1,9 1,2 2,4 -1,6 0,2 7,6 -1,6 3,6 -1,9 3,5 3,1 6,8 3,3 1,7 8,0 -1,6 8,C 1,5 -1,3 7,1 4,6 5,7 -1,2 9,2 4,B 8,B -1,6 0,6 -1,4 7,3 -1,6 1,8 -1,7 8,C 9,C 3,C 4,5 5,9 4,B 7,5 1,B -1,8 6,8 7,7 -1,0 1,8 2,8 5,5 6,3 -1,1 3,7 6,8 6,0 3,9 4,4 4,2 1,0 6,8 7,4 7,2 0,B 0,8 4,B 3,0 0,0 9,B -1,7 9,4 0,C 7,1 8,0 1,0 -1,1 4,C 9,9 1,B 9,C 7,0 -1,4 0,2 5,0 7,2 0,8 -1,5 8,8 -1,4 6,5 3,2 -1,0 3,3 0,4 5,C 1,5 2,C 7,7 4,0 -1,8 1,4 2,2 3,7 0,6 3,6 -1,8 5,6 1,9 -1,9 -1,1 6,0 6,8 7,7 0,3 9,B 2,8 1,8 1,1 5,8 0,8 0,B 2,1 7,3 -1,5 3,9 2,9 9,6 1,2 3,C -1,7 5,9 0,1 7,3 7,C 9,9 6,8 8,9 3,4 -1,7 4,C 5,C 6,5 6,B 1,6 4,8 4,2 -1,6 2,B 3,C 2,C 1,2 0,5 -1,6 0,9 1,6 -1,8 8,4 -1,1 9,4 3,0 7,6 5,5 -1,7 -1,2 -1,9 9,9 0,1 6,8 7,5 5,9 0,0 7,8 9,B -1,9 5,C -1,0 7,C 5,3 8,6 4,1 8,B 2,C 4,8 0,0 -1,4 3,6 7,0 8,2 -1,0 4,C 5,B 7,2 -1,9 -1,2 8,6 -1,1 6,9 2,3 -1,2 2,B 6,B 9,3 4,8 3,1 8,3 9,B 8,9 7,B -1,3 3,C -1,8 2,B 3,3 3,1 9,4 9,1 -1,3 4,6 -1,4 6,8 3,C 6,C 4,C 5,9 1,7 6,4 2,3 2,B 4,4 3,B 9,0 2,8 4,C 7,5 0,6 2,4 -1,8 8,1 3,0 7,C -1,6 -1,9 -1,8 0,0 2,C 0,1 -1,5 7,5 0,2 5,B 4,7 2,C 0,2 6,2 3,B 3,7 9,3 8,2 9,5 -1,9 -1,9 2,5 -1,6 8,3 9,C 8,7 3,5 2,B -1,9 7,B 2,7 8,7 7,0 5,5 1,8 0,8 5,8 6,0 -1,8 0,B 8,0 0,4 -1,0 -1,7 3,5 8,C 7,8 -1,5 8,0 3,5 9,3 2,0 8,8 4,C 8,6 7,9 0,0 6,8 9,6 9,0 -1,1 6,B -1,6 8,4 8,B -1,6 -1,0 4,B -1,8 4,7 7,0 3,4 2,6 3,3 6,7 9,5 -1,5 6,B 9,7 4,4 1,9 1,3 0,C 7,B 9,4 -1,0 6,7 5,0 -1,9 8,9 8,C 3,6 8,6 4,6 6,1 2,6 4,9 5,4 9,1 5,4 5,2 -1,1 -1,1 4,3 3,7 3,2 7,2 7,2 1,3 8,8 0,B 0,4 0,1 -1,8 8,9 -1,4 -1,2 7,0 0,C 9,B 7,3 -1,0 9,8 -1,3 8,3 -1,8 9,8 -1,0 1,B -1,3 -1,9 7,1 -1,2 0,C 2,0 3,7 8,8 4,0 6,8 2,B 0,B -1,4 -1,6 1,7 5,B 9,7 8,4 6,3 6,C -1,2 5,B 6,B 9,B 2,C 5,C 8,C 3,4 8,8 6,9 6,C 4,0 -1,7 3,3 7,1 7,3 1,9 3,0 2,3 -1,7 9,8 8,B 5,3 9,4 -1,8 4,4 8,9 6,9 8,3 5,C 5,8 6,9 6,0 -1,9 6,4 3,6 9,9 2,9 9,B -1,9 -1,0 4,2 -1,9 1,5 7,1 7,C 4,4 8,1 6,C 5,B -1,9 3,0 5,8 -1,2 7,5 -1,6 2,7 -1,9 2,6 -1,5 5,5 3,2 1,5 8,8 4,C 6,6 7,3 5,8 7,3 5,9 1,B 9,8 -1,7 9,0 6,9 0,C 9,B 1,C -1,4 7,0 7,B -1,3 -1,0 6,8 1,3 5,B 6,C 6,B 3,5 -1,3 8,9 4,7 0,3 -1,4 7,2 -1,0 5,1 9,7 8,8 -1,9 4,2 1,7 8,4 5,1 6,5 4,4 5,4 8,4 5,8 1,9 -1,0 8,5 0,9 -1,6 7,3 2,2 9,7 2,7 7,6 7,C -1,1 8,2 4,5 -1,9 -1,6 -1,1 4,4 2,4 0,B 8,B 0,C 1,8 0,6 2,2 7,4 1,0 1,C 7,C 7,B -1,0 2,C 9,7 4,4 6,6 7,7 1,2 -1,1 2,6 -1,5 2,1 2,5 3,5 2,9 5,7 8,7 8,B -1,7 7,0 -1,8 6,3 1,4 -1,8 5,C 1,2 7,4 4,8 4,1 0,0 -1,5 4,4 1,9 2,2 -1,6 0,1 -1,4 9,4 -1,5 9,0 1,4 8,B 9,0 -1,3 -1,0 4,9 6,6 1,2 -1,9 8,C 7,0 0,C 3,3 -1,8 9,7 9,0 -1,5 9,9 2,B 9,6 9,2 7,7 5,9 1,0 1,5 6,B 3,6 7,2 4,8 0,2 8,B -1,3 8,C -1,7 4,C 2,C 6,6 6,B 0,9 4,0 3,6 1,3 8,5 0,B 5,1 2,4 -1,0 9,4 0,7 5,2 5,7 -1,5 3,7 4,7 2,9 6,1 2,7 -1,0 6,2 9,8 8,0 -1,2 -1,1 1,C 2,6 7,0 9,3 7,2 -1,8 -1,2 0,B 5,3 2,2 -1,4 6,B 6,6 4,2 7,3 4,7 9,2 8,9 4,5 8,B 6,7 1,8 -1,4 8,6 -1,5 7,4 -1,7 8,2 -1,2 5,0 8,B 7,9 1,5 5,5 7,8 1,B 0,0 7,4 0,8 3,7 6,6 1,6 2,B 8,C 5,0 -1,7 -1,2 6,6 -1,5 5,0 2,5 3,8 4,8 1,2 9,2 0,4 4,8 5,8 8,B 9,B 5,3 4,8 0,2 -1,0 -1,4 5,5 -1,4 9,B 2,4 -1,8 9,8 0,1 2,7 3,9 -1,1 7,8 7,8 6,7 4,B -1,4 6,0 -1,8 4,3 -1,4 6,3 3,1 -1,0 6,B -1,7 -1,9 -1,3 -1,2 0,0 3,C 1,6 6,0 2,6 -1,6 -1,8 7,1 9,6 6,1 9,9 -1,2 3,5 5,2 4,C 8,8 4,4 2,8 -1,4 3,B 4,8 8,B -1,6 6,0 0,1 8,C 4,B -1,4 4,B 5,2 7,B 8,3 3,5 5,C 9,3 4,6 5,3 6,3 8,4 -1,1 2,1 -1,8 2,5 -1,9 -1,2 7,1 3,B -1,8 0,3 1,1 6,4 4,5 0,5 2,3 3,4 3,2 6,2 7,9 0,6 1,0 3,9 8,B 0,3 7,4 4,B 7,8 9,1 3,0 7,4 -1,7 9,C 3,7 7,6 1,7 0,6 6,6 6,9 1,2 9,1 4,5 9,2 7,B 8,0 2,2 -1,2 0,C 1,C 4,2 4,B 8,9 2,5 7,8 5,B 4,0 6,C 3,5 6,8 3,6 4,4 4,8 -1,1 3,8 -1,4 6,7 -1,8 5,C 6,B 3,B 2,0 4,0 -1,0 -1,2 4,5 2,2 3,7 0,3 1,0 0,7 4,8 4,1 6,6 4,1 0,B 9,3 3,2 9,3 9,C 6,C -1,7 -1,4 8,2 6,7 8,6 -1,4 4,7 5,0 1,1 -1,8 4,C 4,3 0,2 6,2 1,8 -1,1 -1,3 5,C 2,2 7,8 7,0 9,7 2,B 6,9 7,B 1,5 6,2 8,0 -1,0 -1,8 6,B 0,1 -1,8 6,5 5,C 0,7 9,3 -1,0 7,8 3,1 8,4 1,9 8,1 6,C 9,8 2,7 7,2 1,C 3,5 1,8 3,7 1,0 7,C 9,8 4,9 9,1 0,1 -1,2 8,1 1,C -1,2 -1,9 -1,5 -1,3 7,4 7,7 -1,2 -1,6 -1,9 2,5 2,3 9,7 5,B -1,4 5,B 3,3 8,5 -1,0 8,B 2,9 -1,5 1,5 6,4 6,0 -1,9 9,6 9,0 8,6 9,0 7,8 9,3 5,8 6,9 -1,9 7,9 -1,4 5,4 3,0 0,4 -1,1 7,5 -1,1 4,B 4,9 0,0 7,C 1,3 2,3 8,8 6,C 6,3 -1,1 8,7 9,5 -1,1 9,2 -1,1 4,9 -1,6 5,8 3,3 8,4 5,7 0,9 8,3 2,5 0,4 5,8 0,9 6,3 7,5 2,8 7,8 3,B 1,2 8,C -1,1 -1,2 9,6 2,B 9,3 8,4 -1,0 7,B 6,1 3,5 2,6 2,B 2,1 -1,3 -1,5 6,C 4,8 9,6 -1,7 9,7 -1,5 8,C 2,7 6,C 7,C 5,3 2,C 7,B 1,5 2,8 0,C -1,3 9,5 -1,7 3,0 6,C 2,2 6,0 -1,7 9,2 3,7 -1,1 8,3 -1,8 9,C 5,2 1,B 5,1 9,0 4,1 4,6 3,8 7,9 5,1 2,7 4,4 8,B 4,C -1,3 7,6 8,C -1,9 8,5 0,3 7,4 4,6 5,7 9,2 -1,3 7,2 -1,2 8,5 -1,7 1,9 6,9 4,4 -1,1 5,4 0,C 2,3 3,2 2,6 8,C 2,4 1,2 0,0 5,6 6,6 0,4 2,6 5,B 7,7 2,3 1,C 0,8 2,3 2,8 -1,8 8,0 9,0 1,4 1,3 6,3 1,1 5,3 -1,1 9,7 -1,0 0,C 3,8 7,B 4,9 1,0 7,6 5,C 1,B 4,B -1,5 7,1 -1,8 -1,5 -1,0 4,C 5,2 3,6 8,6 0,2 3,6 -1,6 6,C 7,6 4,C 3,5 0,9 7,C 7,5 1,B 3,6 -1,2 6,6 4,B 8,1 -1,4 3,C 0,2 0,7 7,5 6,9 8,0 -1,0 5,2 7,C 8,0 8,0 -1,4 2,2 -1,7 8,7 6,4 6,9 7,5 0,1 -1,0 1,8 6,7 1,2 1,B 6,5 3,9 7,4 6,B 9,1 -1,8 3,8 5,1 0,1 3,4 -1,6 4,4 9,3 6,3 8,5 -1,8 6,6 7,9 0,C 4,B 5,9 5,3 2,3 7,4 6,2 0,7 7,0 -1,0 6,1 4,B 1,0 3,1 8,C 0,7 6,0 2,4 6,3 6,6 -1,8 6,8 8,6 8,5 5,9 5,0 7,1 -1,9 5,6 2,6 2,8 1,C 9,1 3,C 7,C 7,1 9,6 2,B 3,7 0,0 -1,4 -1,5 -1,1 2,7 2,3 6,2 2,0 -1,4 0,7 2,3 1,6 6,C 5,8 4,6 3,B 9,C 7,B 5,0 9,3 6,0 7,B 6,C 9,6 -1,8 8,B 0,2 7,3 -1,6 0,0 8,4 4,0 5,2 4,3 1,0 5,5 -1,2 7,3 -1,8 1,9 4,7 -1,8 3,4 3,2 0,6 4,9 5,5 -1,6 2,3 1,2 5,6 -1,2 0,0 1,C -1,6 8,B 0,4 4,6 6,4 7,5 -1,0 7,2 2,8 -1,3 5,8 -1,0 5,7 -1,3 2,C 7,1 4,B 3,9 9,0 8,6 5,6 8,5 7,8 -1,0 1,7 7,C 2,0 -1,6 2,3 -1,5 1,6 4,3 5,B 5,6 7,5 5,5 6,C -1,6 1,8 0,C -1,7 -1,4 9,6 6,0 5,7 4,1 -1,9 -1,6 0,0 2,4 -1,0 6,2 6,7 8,3 8,8 3,B 7,6 -1,4 6,5 5,B 8,C -1,4 3,9 7,0 0,0 -1,1 1,B 8,7 9,B 4,6 3,7 6,5 9,B 3,2 2,4 5,B 1,3 9,2 5,3 3,1 7,6 9,0 2,2 5,C 5,B 0,5 2,2 4,B 4,9 8,3 6,3 9,1 5,4 -1,8 9,2 1,B -1,7 6,3 0,B 6,7 9,8 7,2 0,3 -1,6 0,4 6,4 8,0 2,5 0,7 4,0 5,C -1,9 8,0 2,B 4,3 2,6 1,7 3,8 3,6 -1,6 5,7 5,5 -1,9 7,4 0,1 8,C 6,2 8,2 2,0 5,2 9,2 5,3 4,0 6,7 7,0 7,4 5,2 4,B -1,0 -1,5 8,1 1,4 1,2 -1,3 6,9 -1,6 4,5 8,1 7,6 8,9 7,2 1,C 5,2 9,3 1,2 0,8 8,B 9,C -1,9 3,0 4,4 5,C -1,9 7,1 8,5 5,2 4,3 -1,8 -1,9 0,4 -1,0 -1,1 8,8 5,C 9,6 -1,4 2,4 4,6 0,C 4,B 6,6 2,C -1,6 1,B 0,1 6,C 1,6 8,4 4,8 -1,5 4,6 2,0 2,2 3,7 8,B 1,1 5,9 8,2 5,8 2,9 -1,7 3,8 6,4 -1,8 5,9 7,2 1,0 1,5 7,5 -1,2 8,C 5,8 2,2 1,9 7,2 -1,1 1,7 1,B 6,7 -1,5 4,9 -1,3 5,2 6,3 3,6 8,B 4,8 9,B 2,8 9,3 5,0 -1,9 0,0 7,4 7,B 9,B 5,9 9,1 -1,7 8,8 6,3 0,3 2,3 8,C 1,3 2,C 8,6 7,4 5,B 3,6 -1,8 5,5 1,2 3,5 1,C -1,1 5,0 6,0 4,3 1,1 -1,0 2,C 4,C 1,5 9,7 7,6 4,5 7,1 9,3 9,1 -1,3 7,B 0,B 4,5 6,9 6,0 5,2 7,1 1,7 2,9 8,1 -1,9 4,7 0,8 7,B 9,B 3,1 6,3 -1,4 8,3 0,4 -1,1 9,8 5,2 7,4 2,5 7,B 7,1 8,8 1,B 0,C 0,B -1,3 2,C 0,0 5,7 6,1 8,2 8,C 2,3 -1,5 7,9 5,9 9,0 7,5 -1,2 8,1 -1,6 -1,9 4,8 5,C 5,7 6,C 0,2 0,8 3,2 0,8 -1,7 5,5 2,6 8,5 8,3 2,B 8,6 1,5 3,6 1,8 7,B 0,1 5,7 5,1 2,C 1,C 7,2 0,0 6,C -1,1 0,B 0,3 3,2 1,3 -1,7 0,0 0,0 6,8 2,6 6,9 0,8 0,C 4,6 8,7 2,1 6,1 2,0 0,0 5,B 4,6 1,C -1,3 4,C -1,7 4,0 1,2 -1,1 4,4 6,6 9,C -1,5 -1,9 8,9 9,7 -1,7 5,5 -1,4 7,C -1,9 3,B 6,3 9,9 3,1 4,1 8,B 2,2 9,0 0,2 1,B 0,1 1,B 7,B 3,5 -1,5 8,0 9,C 7,0 4,8 4,0 4,B 6,8 4,5 4,B 6,8 3,8 1,6 9,B 0,C 9,1 5,B 8,6 8,C 2,8 0,3 -1,2 1,9 5,6 0,8 3,3 7,8 7,6 -1,4 0,7 4,7 2,8 -1,9 4,8 0,0 4,9 1,C 6,2 6,2 3,7 9,0 -1,4 7,3 9,3 4,0 9,5 3,8 2,C -1,2 9,2 5,0 0,B 7,5 2,6 2,0 3,8 -1,3 0,C 7,4 -1,3 5,7 1,6 7,5 0,0 5,B 8,9 -1,8 2,C 0,B 9,2 6,B 0,5 5,C 9,3 5,0 8,7 9,8 9,9 -1,6 -1,6 3,1 -1,3 5,8 1,B 2,2 -1,7 -1,8 3,1 2,4 7,1 -1,1 -1,1 -1,5 6,9 3,2 3,C -1,8 3,1 1,7 8,B 9,8 -1,6 1,4 9,5 -1,7 0,B 0,8 9,3 1,2 1,0 6,2 8,1 6,5 2,3 2,0 -1,9 7,1 -1,3 2,C 8,6 5,C 1,7 8,B 1,C 3,2 6,6 0,C -1,1 -1,8 6,B 0,1 4,0 6,B 1,5 -1,0 0,5 3,9 5,3 9,B 6,3 2,4 -1,2 7,C -1,8 -1,7 6,C 6,B 5,5 4,2 4,4 9,1 5,C 4,4 -1,9 4,1 8,B 9,7 7,B 8,0 8,6 9,2 2,C -1,1 8,1 7,6 9,6 -1,9 8,9 3,7 1,1 6,6 4,4 7,4 7,4 2,3 8,3 -1,5 3,7 4,B 3,4 7,C 2,C 4,B 5,5 5,3 5,B -1,8 9,4 4,C -1,5 0,B 8,9 7,1 3,0 5,0 5,C -1,0 9,B 1,B 0,B 6,0 -1,5 0,9 6,2 6,1 4,C 0,3 7,B 8,B -1,9 3,6 7,3 -1,2 8,2 9,4 5,C 3,C -1,9 6,C 0,B 2,2 -1,0 -1,2 -1,9 5,7 3,6 0,B 7,7 -1,4 -1,5 3,3 8,2 2,5 -1,6 3,C 0,B -1,3 0,9 3,2 9,7 -1,4 1,1 5,5 7,5 0,2 -1,1 -1,6 4,2 0,2 4,B 1,2 -1,4 7,C -1,0 6,6 8,4 1,5 5,9 -1,1 0,6 -1,7 1,C 6,9 -1,4 3,1 1,3 2,6 5,7 2,5 -1,0 -1,0 3,6 -1,7 7,4 6,0 4,5 9,3 5,5 -1,0 5,B 6,4 -1,9 3,C 3,C 9,3 1,5 -1,3 -1,6 4,7 1,3 3,5 6,0 0,6 6,2 3,4 3,C 7,3 1,6 9,9 -1,9 7,3 3,2 9,7 2,9 2,C 2,2 0,B 1,4 -1,7 2,4 8,6 6,8 1,1 -1,7 2,3 0,B 5,B 9,B 4,2 -1,7 -1,5 8,2 2,C 4,5 9,C 8,3 1,7 6,4 7,0 3,C 9,3 8,7 6,1 4,6 2,B 9,0 2,7 6,2 5,7 6,3 1,0 2,6 5,4 -1,7 1,0 7,1 9,C -1,0 1,B 1,4 0,4 2,7 0,C 7,7 8,2 0,3 5,5 1,8 -1,3 3,2 6,5 5,4 7,1 5,5 9,7 -1,9 -1,7 4,5 6,3 2,7 7,7 3,2 5,0 1,B 7,B 8,4 9,8 4,1 0,2 4,0 9,C 3,C 7,7 -1,0 6,1 6,7 -1,0 -1,4 2,C 1,6 -1,7 6,B 5,2 3,4 2,7 9,1 -1,8 0,2 9,2 4,7 -1,8 6,5 5,1 7,9 1,2 -1,4 5,1 9,8 3,7 -1,1 5,B 5,1 9,9 0,3 0,1 0,C 5,0 -1,3 9,3 1,5 -1,0 9,C 4,C 5,B 2,0 3,5 1,1 3,B 0,B 1,4 1,0 4,B 5,B 6,3 5,8 -1,1 -1,1 5,B 2,1 6,7 1,6 2,4 6,7 4,C 6,9 6,6 5,3 -1,7 0,4 8,9 6,5 1,8 5,8 4,4 -1,4 0,3 2,5 -1,4 -1,3 4,5 2,0 9,2 4,5 4,9 7,B -1,5 6,B 8,2 7,9 0,5 1,B 2,2 0,1 1,8 8,0 4,6 6,6 7,0 6,0 3,B 8,C 3,4 2,B -1,5 7,7 3,2 -1,9 -1,6 4,2 -1,5 -1,4 8,4 -1,5 -1,9 9,2 8,8 8,9 -1,1 3,C 5,4 -1,7 6,3 7,4 7,8 0,5 8,3 -1,3 1,9 7,2 6,7 6,C 0,8 4,4 3,B -1,1 9,1 0,4 1,8 3,9 6,3 0,4 2,C -1,8 7,1 8,9 -1,9 -1,4 2,B 4,8 4,9 3,4 0,7 1,4 -1,2 0,7 7,3 -1,1 -1,4 6,2 3,0 5,C 4,9 0,7 5,C 8,4 7,C 1,8 9,9 -1,9 1,8 4,7 7,B 2,5 0,B 0,6 -1,9 2,C 6,8 3,0 6,0 1,4 2,B 8,0 6,C 5,1 6,9 -1,6 3,1 6,5 4,8 -1,0 6,C 1,C -1,4 1,6 8,9 -1,6 3,7 7,8 5,1 9,C 7,6 -1,3 -1,5 6,4 5,1 8,C 6,C 1,7 3,6 8,1 6,6 7,9 -1,1 0,8 3,B 7,4 6,5 9,6 4,B -1,2 2,7 5,5 6,C 5,B 2,8 3,4 6,2 8,4 -1,1 8,4 4,6 9,C 0,4 2,6 -1,0 7,1 -1,5 3,B 4,2 5,5 5,9 0,3 4,1 7,C 7,C 3,7 7,0 7,1 3,C 0,7 5,2 6,6 8,5 3,2 9,B 5,7 2,B 9,4 4,B -1,3 5,C 1,B -1,6 9,C 4,0 8,B 9,3 6,C 6,4 6,C 1,0 1,C 8,B 9,1 -1,1 -1,8 7,C 2,5 4,5 6,2 9,0 -1,3 -1,9 0,0 8,8 3,B 3,7 3,3 6,9 1,B 4,B -1,4 5,5 2,8 4,9 4,C 5,1 -1,7 8,4 7,B 5,0 5,8 8,B 1,7 -1,6 0,2 0,0 8,B 1,3 8,7 -1,7 5,B 5,0 2,0 4,0 6,2 3,4 -1,6 -1,0 7,B -1,6 7,B -1,3 6,4 8,8 2,C -1,7 7,B 2,5 -1,9 -1,5 1,2 -1,3 3,4 2,8 6,0 3,3 -1,4 8,3 3,0 5,4 7,4 -1,7 6,8 6,B 1,5 7,C 6,C 8,6 0,3 1,0 8,6 -1,6 0,7 1,C 5,4 9,5 8,B 6,C 9,2 2,0 6,6 9,1 -1,2 7,0 9,4 0,2 6,5 4,1 5,0 -1,5 7,4 -1,0 2,2 6,B 8,4 0,9 2,C 8,4 2,2 6,8 0,5 6,C 5,5 6,4 9,5 9,0 7,C 0,9 -1,0 9,4 9,C 7,3 5,1 6,6 1,2 2,C 5,1 8,1 7,5 5,3 0,B 8,2 6,4 3,C 8,3 5,0 8,6 9,1 7,C -1,6 0,4 -1,8 -1,8 5,C 2,1 7,5 -1,8 9,C 7,B 4,2 3,8 4,9 4,4 -1,8 8,1 -1,2 -1,6 3,7 5,7 4,7 1,0 2,5 0,6 -1,9 3,1 -1,8 8,B -1,1 -1,3 6,2 0,5 5,1 -1,5 5,C -1,3 9,B 3,0 3,2 9,C 5,B -1,6 -1,5 8,6 8,C -1,7 4,2 4,5 5,9 5,8 6,5 5,0 4,3 9,9 0,6 9,5 5,0 0,C 1,7 2,3 6,5 -1,6 0,9 5,3 4,7 -1,6 4,2 4,0 3,9 4,0 9,6 4,9 8,7 -1,7 -1,6 6,B 7,B 1,5 5,4 -1,3 1,C -1,2 1,C 7,6 -1,8 7,6 -1,9 8,4 1,0 4,B 3,5 0,4 1,6 0,C 7,8 6,8 9,B -1,3 6,7 8,3 1,3 -1,6 9,3 9,4 1,4 1,C -1,1 7,7 7,C 0,5 4,C 3,8 7,3 6,7 -1,7 9,C 0,C 2,C 0,9 -1,1 9,4 4,2 6,C 5,4 8,8 3,1 1,B -1,5 3,2 7,1 9,B 2,1 2,7 1,3 0,7 8,C 0,5 2,6 9,3 3,7 5,5 8,6 6,C 4,C 8,6 0,B 4,B 6,9 3,2 6,3 5,6 3,8 3,5 -1,0 2,2 -1,1 5,2 0,B 8,4 -1,8 5,6 1,4 5,8 1,0 5,1 3,4 5,6 0,7 6,1 0,B -1,2 8,0 4,2 4,5 6,7 -1,9 8,8 2,8 5,2 1,5 3,4 8,8 6,2 6,8 6,5 5,B 3,2 8,3 4,6 9,B 7,6 7,5 9,C -1,5 7,6 0,2 4,C 3,B 0,0 5,6 2,B 6,0 5,B -1,7 5,B 8,C 2,C -1,7 1,3 4,1 9,4 4,B 6,C -1,8 8,0 8,8 -1,5 -1,8 1,7 3,9 3,5 2,9 9,8 5,6 2,2 9,B 6,7 1,6 -1,6 5,B 0,1 3,B -1,4 9,B -1,3 5,9 -1,8 -1,4 0,8 6,9 9,7 -1,8 5,1 4,0 0,C 7,5 -1,2 9,1 4,6 -1,6 8,5 1,B 8,6 8,9 4,3 -1,0 2,3 2,C 2,3 5,6 8,4 9,2 9,B 6,C 7,1 -1,1 2,0 3,7 -1,6 5,9 9,5 4,3 1,B 3,4 3,C 9,3 3,6 2,1 9,8 9,7 4,4 1,B 7,7 2,4 9,B 3,B 5,7 7,9 -1,0 9,8 9,1 6,6 5,B -1,5 9,0 2,1 8,3 8,B 1,2 0,B 4,1 -1,6 5,B 6,8 2,4 2,2 1,7 7,1 5,C 7,9 -1,9 4,C 9,4 6,1 3,5 3,1 6,B 6,7 9,8 4,7 8,2 5,1 0,5 0,B 0,3 -1,9 8,1 9,4 6,B 3,B 7,4 0,1 3,0 6,3 5,8 6,5 0,3 1,9 -1,5 5,3 7,9 0,B 9,1 -1,3 3,B 1,7 5,B 9,7 4,C 3,B 5,1 9,3 4,0 6,2 0,0 9,B 2,2 0,9 1,8 3,7 6,1 -1,2 -1,7 -1,1 5,9 2,0 -1,2 1,B 6,9 -1,5 -1,1 1,C 2,C 0,2 5,9 -1,8 2,4 -1,0 6,3 6,0 8,C 5,9 7,C 4,7 7,0 -1,1 7,4 5,2 7,C 2,2 4,2 0,0 0,5 5,C 0,4 9,9 -1,9 7,B 2,C 8,1 9,5 3,8 -1,2 1,4 2,3 3,3 7,7 3,B 2,6 5,8 1,7 2,6 1,4 1,2 -1,7 -1,4 2,8 2,9 7,0 3,C 6,9 -1,6 6,1 7,0 1,7 -1,8 4,C 0,7 7,5 5,C -1,3 8,6 3,8 3,1 7,5 0,6 -1,3 5,B 5,2 -1,2 -1,1 -1,3 5,B 8,6 2,9 -1,7 9,2 7,7 -1,1 6,C 4,2 1,B -1,2 8,4 8,C 9,7 5,2 -1,5 1,3 0,7 1,C -1,4 8,4 6,7 1,6 3,6 8,9 3,8 8,4 4,0 0,C 3,3 6,6 1,3 7,2 1,6 0,8 4,9 2,7 0,6 9,C 9,5 9,8 7,1 4,0 8,7 1,7 4,7 -1,0 8,2 6,3 7,6 3,8 5,6 9,B 9,B -1,2 -1,8 0,4 0,0 6,6 -1,3 5,8 2,6 0,5 6,B 1,0 1,3 4,8 5,4 2,4 1,1 8,5 6,6 0,4 0,1 8,6 -1,1 2,7 2,B 2,0 0,2 -1,3 6,2 5,6 6,3 7,3 -1,9 9,1 1,9 -1,8 5,9 -1,3 -1,8 6,3 -1,0 9,7 1,B 7,5 -1,6 3,0 0,6 5,C -1,6 4,2 2,B 2,3 8,7 2,7 3,B -1,6 6,2 3,B 3,B 6,C 6,B 5,B 5,C 3,3 3,1 3,C -1,6 3,C 5,2 9,B 8,C 5,7 3,0 -1,6 1,7 3,2 6,B 8,C 7,3 -1,6 0,2 -1,1 7,7 0,7 2,6 6,0 2,4 6,4 5,5 6,C 0,2 4,B 6,0 0,4 5,2 6,7 7,0 9,C 6,5 0,2 0,9 0,B -1,6 3,4 5,C 5,7 7,6 9,B -1,8 5,1 0,5 1,3 7,1 0,5 5,6 6,3 4,4 6,B 4,C 0,C 6,3 0,B 6,6 6,5 7,9 1,0 4,5 -1,7 8,C 0,0 8,7 -1,0 9,B 4,6 -1,0 1,8 -1,6 3,4 3,0 -1,7 2,2 8,1 3,B 7,C 4,8 7,0 1,C 6,3 5,C 4,B 7,C 0,B 5,6 3,C 5,4 8,3 6,1 7,6 8,7 -1,2 -1,3 9,9 2,B 6,0 -1,8 -1,8 -1,2 0,B 1,6 6,B 8,8 9,6 3,9 8,B 3,8 9,B 3,2 0,B 7,C -1,5 6,9 -1,6 3,3 7,C -1,0 1,4 9,0 1,C 9,C 3,3 0,4 1,8 9,5 2,B 4,3 0,3 5,3 0,C 2,5 8,8 4,C 6,4 0,2 -1,5 4,9 5,3 2,4 5,5 4,1 7,7 6,4 8,5 -1,1 6,1 5,C 3,9 9,2 4,9 -1,0 3,8 6,3 -1,5 8,7 3,9 7,9 7,C -1,4 5,7 1,7 7,C -1,3 2,B 8,4 5,7 3,4 6,B -1,2 6,5 -1,5 9,4 -1,3 6,3 6,2 7,5 -1,6 -1,1 6,4 2,6 7,3 0,6 9,8 6,C 5,C 5,3 -1,0 0,9 2,5 2,7 6,2 3,3 3,8 -1,8 5,2 5,0 8,5 3,C -1,4 0,2 5,C -1,5 7,5 8,8 -1,2 8,C 6,4 -1,6 0,0 2,9 8,B -1,6 7,4 9,C 2,6 -1,0 -1,4 -1,9 6,5 6,9 2,0 2,5 6,8 0,0 9,C 1,7 -1,1 6,B 9,3 0,4 4,8 1,9 9,3 8,0 0,C 0,1 0,9 5,C 9,7 3,0 3,1 6,5 -1,3 0,3 7,3 9,B 4,0 1,8 4,9 1,4 -1,1 1,7 6,B 5,6 1,B 4,2 -1,5 2,6 9,B 7,C -1,8 0,C 9,1 6,5 8,3 8,C 3,6 7,9 -1,0 9,1 -1,2 5,C 4,9 -1,5 4,4 7,7 -1,2 -1,9 1,1 4,6 -1,8 -1,7 9,B 5,7 -1,6 -1,7 0,7 4,B 4,5 -1,3 8,5 1,6 8,4 2,5 0,9 4,7 0,5 3,B 7,B 3,8 2,B 9,9 -1,0 5,0 1,B 4,9 8,7 7,9 3,3 -1,2 6,B -1,3 -1,3 1,B -1,4 -1,6 7,C -1,8 -1,9 7,5 5,B 6,5 5,0 8,C 7,7 8,3 -1,1 8,C 1,C -1,8 7,C 4,B 5,5 7,B 4,0 5,7 1,B 9,8 8,B 4,5 8,0 9,4 5,0 1,1 1,C -1,6 -1,7 -1,6 -1,9 8,4 1,2 2,9 3,9 8,0 7,7 4,5 8,3 5,7 -1,0 7,C 7,3 1,7 0,9 5,9 8,7 5,C 3,6 5,7 1,1 1,4 9,2 2,C 4,2 5,7 3,B 9,B -1,6 -1,3 7,B 8,4 -1,4 0,0 4,7 1,B 4,1 7,3 -1,4 -1,2 8,6 -1,5 9,5 7,5 1,5 5,5 -1,8 5,2 0,6 0,7 4,1 7,C 8,C -1,5 4,4 -1,4 0,8 2,B -1,5 -1,8 7,6 3,9 6,0 3,B 7,2 6,C -1,2 5,B 3,7 7,1 3,C -1,8 7,4 4,1 6,0 3,7 -1,5 6,C 0,8 4,0 6,8 4,0 0,8 8,6 1,4 5,4 -1,3 -1,3 6,0 2,8 -1,5 1,C 1,C 8,1 6,2 -1,5 1,9 9,8 7,1 4,0 3,B -1,4 -1,2 -1,7 0,6 4,1 6,1 -1,5 -1,8 4,3 -1,9 0,4 4,9 8,0 2,4 5,9 9,0 1,2 0,B -1,1 8,5 -1,4 6,C 2,1 -1,8 6,9 4,5 7,7 -1,4 8,5 5,C 3,0 5,4 6,3 3,7 1,4 2,7 7,B 5,8 4,1 4,7 -1,5 8,0 2,0 6,B 1,C 0,B 2,0 7,9 4,C 2,2 3,8 9,2 7,3 7,C 9,4 2,2 5,B 5,5 -1,2 4,C -1,8 1,0 7,2 0,1 0,B 5,3 1,1 9,1 9,B 5,6 -1,6 -1,7 5,C 4,9 2,C 2,5 0,C 2,C -1,0 1,9 -1,6 1,2 -1,4 4,2 4,C 0,4 8,3 9,3 6,4 7,B 0,7 0,0 0,7 -1,7 5,2 8,8 5,0 -1,9 6,3 8,6 0,9 7,8 7,5 9,8 8,1 7,5 7,5 2,3 -1,3 6,0 9,4 -1,6 -1,7 1,9 2,2 0,4 7,4 -1,0 1,3 -1,9 5,6 8,8 0,7 -1,9 -1,4 -1,7 5,B 3,7 3,3 1,8 8,9 0,B 7,9 3,4 5,3 4,7 7,C 5,1 -1,3 6,0 1,1 1,6 7,8 2,6 3,B -1,5 1,6 -1,9 -1,5 2,2 5,7 9,B 1,4 -1,7 1,B -1,3 -1,8 -1,1 1,C 7,4 6,4 8,B 9,1 1,C 6,3 4,1 -1,0 3,C 0,3 0,9 -1,4 -1,7 1,5 6,6 2,B 5,8 -1,1 6,2 0,C -1,3 8,B 1,B -1,7 7,5 5,0 -1,6 8,4 5,5 6,8 -1,1 3,C 1,B -1,6 0,B 4,3 0,C 8,8 6,B 7,8 3,8 8,7 6,0 3,0 9,2 6,8 0,2 2,5 2,B 6,C 1,2 1,B -1,4 3,0 7,3 6,4 0,C 3,C 2,6 1,B 7,9 7,1 1,2 2,C 0,4 8,C -1,9 6,C -1,3 4,7 3,6 3,8 0,1 -1,4 9,9 -1,4 5,9 5,4 9,7 -1,8 5,4 5,8 5,1 6,1 9,0 5,5 -1,3 0,7 6,5 7,B 1,B -1,9 7,C 8,6 3,8 6,9 8,B 4,6 -1,1 3,B 7,2 9,6 6,B -1,6 4,6 -1,0 9,2 8,8 3,2 9,7 6,0 6,0 2,C 4,C 8,B 9,8 0,5 -1,8 9,5 -1,9 4,B 7,6 9,B 2,0 0,9 4,5 9,0 9,2 7,B 5,1 2,C 2,2 6,3 -1,3 0,2 8,6 9,C 2,0 -1,3 5,9 -1,1 7,8 8,5 4,4 3,6 3,0 -1,6 -1,6 3,2 7,6 7,0 4,B 6,1 0,B -1,7 1,5 9,6 -1,3 -1,4 3,5 6,B 3,4 5,2 -1,8 3,C 6,8 6,0 6,6 -1,2 2,7 8,8 5,5 7,8 3,5 -1,8 2,3 3,2 4,1 -1,4 8,1 9,C 2,6 3,C 6,7 5,6 0,6 4,7 1,B 3,B -1,3 -1,3 -1,4 7,4 6,3 1,C 5,B 6,6 -1,3 6,9 3,2 9,4 1,C 6,9 5,6 0,9 0,4 8,4 9,0 8,1 8,9 6,6 4,C 6,B 1,C 5,6 2,6 8,5 8,C 1,9 9,9 -1,3 0,4 1,4 -1,9 7,2 5,1 -1,0 1,B 4,2 6,7 -1,3 -1,2 -1,6 0,C 1,B 3,B 0,5 7,C 9,1 5,1 -1,8 9,3 9,7 7,8 2,7 -1,1 3,9 6,7 5,1 6,4 2,2 0,C 1,1 1,8 8,3 3,5 -1,3 9,3 -1,9 -1,2 1,C -1,4 3,8 -1,4 7,3 7,C 5,0 6,3 -1,9 8,1 5,9 8,3 3,9 7,0 1,3 4,3 7,C -1,6 6,3 4,3 3,C 2,0 5,C -1,9 1,3 1,8 5,0 -1,1 3,3 7,5 6,2 8,3 3,C -1,9 5,0 2,B 9,6 3,5 6,C 3,8 7,5 5,2 3,7 -1,9 5,5 6,3 6,7 2,0 7,B 7,6 7,B 2,C 4,5 -1,7 5,4 -1,6 7,C 1,C 4,B 9,5 9,9 3,1 6,B 1,7 3,6 8,5 9,6 1,1 2,C 3,9 9,6 1,6 5,B -1,6 0,4 4,C 1,B 7,9 8,2 4,3 0,B 8,B 2,C 7,C -1,2 5,3 -1,0 4,8 -1,1 -1,6 1,3 1,6 3,8 6,B 8,C -1,0 6,B -1,4 7,C 2,7 8,4 6,C -1,6 0,B 9,4 -1,9 8,3 3,9 6,5 4,2 2,5 9,2 -1,3 -1,8 8,7 1,5 6,B 9,8 -1,8 4,C -1,6 8,5 9,8 4,4 4,9 6,2 4,3 -1,2 1,2 8,5 -1,8 4,6 2,0 2,2 2,5 2,1 2,8 0,2 -1,1 9,3 4,6 9,B 9,B -1,1 -1,1 4,6 3,8 0,1 3,0 -1,1 0,2 -1,1 3,C 8,5 -1,4 8,7 4,5 7,C 9,0 6,2 6,1 1,9 6,1 0,B 6,5 6,B 1,0 2,1 5,C 1,B 2,C -1,4 7,B 3,0 8,1 4,7 9,5 0,6 8,8 7,6 2,4 -1,0 0,2 1,6 -1,4 -1,8 6,4 9,8 -1,0 4,6 2,C 1,6 -1,8 8,8 9,7 0,0 2,7 0,0 3,C 9,B -1,6 5,5 -1,4 -1,3 9,6 3,C 4,7 -1,9 0,4 -1,9 9,6 3,B -1,1 8,B 2,6 1,C 4,C -1,7 1,9 0,B 9,4 5,0 8,7 8,C 3,B 0,0 7,0 -1,2 5,3 0,8 -1,3 0,2 4,2 7,1 -1,9 5,4 8,5 2,5 3,8 1,B 7,B 3,5 -1,7 6,0 2,6 5,0 -1,4 -1,5 5,8 7,7 -1,5 4,3 3,3 8,B 1,5 6,6 7,7 8,7 2,0 3,4 7,4 1,0 8,1 5,C -1,2 8,8 3,0 6,7 7,3 5,5 0,8 -1,1 9,C 6,C 7,1 9,3 -1,1 3,2 9,C 6,5 7,C -1,9 -1,7 5,B 8,B 9,9 0,B 1,7 4,1 1,7 2,7 -1,1 9,B 8,1 -1,9 2,4 -1,2 9,C 7,4 -1,0 7,5 5,1 4,8 -1,4 6,3 -1,1 6,2 0,0 8,6 -1,8 6,C 6,B 6,9 -1,3 -1,9 9,1 4,B 5,C 0,6 -1,1 7,B -1,8 3,2 1,B 3,C -1,9 4,3 7,2 7,3 4,8 9,7 3,6 9,7 1,B 0,7 -1,2 4,9 -1,8 -1,1 -1,0 7,4 0,5 8,C 5,0 -1,1 1,8 -1,0 2,B 3,6 2,4 -1,6 7,4 2,0 9,5 -1,4 4,9 2,0 3,B 6,9 0,2 8,0 0,5 6,1 -1,2 8,B 8,B 1,0 -1,4 0,8 5,0 3,7 0,1 3,B 0,B 2,B -1,1 -1,0 9,B 0,C 7,4 3,7 9,3 2,C 4,3 8,7 3,B 9,1 2,4 6,9 1,9 4,B 5,8 1,3 7,B 4,3 5,2 4,B 1,8 -1,1 9,2 8,C 8,7 6,4 2,8 2,1 4,0 5,3 7,B 0,5 9,0 0,B 6,B 3,1 0,B 1,3 -1,2 6,4 -1,3 1,8 9,8 0,5 -1,4 7,8 5,6 3,1 -1,9 -1,3 -1,1 -1,6 0,9 3,2 -1,0 0,C 4,2 3,2 8,8 3,B 1,7 1,4 3,6 4,0 4,5 -1,4 3,6 9,1 5,7 -1,3 8,8 -1,0 6,6 2,4 4,9 8,7 7,C 2,C 4,4 1,B 1,9 -1,6 8,C 1,0 7,B 7,6 9,B 9,B 0,1 -1,3 6,3 -1,8 1,5 -1,4 6,5 2,2 4,6 -1,8 -1,3 -1,0 0,5 -1,8 4,C -1,0 4,B 1,6 -1,6 2,C 8,C 9,6 4,3 5,5 2,2 2,1 0,2 3,5 0,B 4,4 9,1 1,C -1,9 1,7 9,3 2,8 0,6 2,C 5,5 6,2 9,5 8,1 0,C 0,8 -1,0 0,5 7,B 5,9 9,5 3,4 0,4 -1,4 8,C 3,0 6,1 -1,2 9,9 6,0 6,0 7,4 9,4 -1,6 5,0 0,3 1,B 5,6 8,8 9,C -1,9 -1,1 4,5 5,2 -1,7 6,2 6,4 2,5 1,B 2,5 9,C -1,4 9,8 6,C 8,3 5,5 2,1 9,9 8,0 -1,0 4,7 7,8 2,7 5,B 0,6 6,9 3,C 7,4 7,7 -1,3 -1,0 -1,7 -1,6 8,C 4,B 2,8 5,6 2,B -1,3 3,1 -1,4 9,9 -1,4 7,3 -1,9 0,5 5,1 2,2 6,6 0,6 5,B -1,7 5,2 3,B 8,0 8,C 8,7 7,B -1,9 2,C 0,C 5,5 -1,3 4,3 7,B 4,9 8,3 1,3 9,6 2,C -1,5 6,C -1,9 -1,8 4,1 6,9 1,1 3,7 5,7 7,0 1,5 3,6 8,1 9,2 -1,5 9,0 -1,0 7,9 1,0 3,C 9,3 4,B 7,1 3,5 1,C 7,2 4,7 1,1 9,9 8,5 -1,7 5,0 4,B 5,1 9,3 2,5 8,2 6,8 5,4 4,B 9,4 4,5 -1,1 0,B 7,8 -1,1 8,3 0,1 2,7 5,6 0,1 0,3 4,0 1,5 3,3 3,C 1,B 6,2 6,2 1,5 9,B 9,9 4,C 6,9 -1,1 2,5 -1,8 8,3 -1,4 0,6 -1,9 1,B -1,3 0,B 6,B 7,3 2,5 -1,5 1,2 -1,9 4,B 5,1 9,B 7,C 6,4 7,0 6,9 -1,7 -1,9 5,0 -1,4 6,8 -1,7 3,5 -1,3 9,B 3,5 2,B 5,C 3,6 7,2 7,5 3,4 9,B 6,3 3,7 8,9 7,C 2,1 1,4 4,C 7,C 2,2 2,B -1,7 6,C 5,8 8,2 -1,3 3,3 2,C 9,0 5,4 -1,7 7,4 -1,2 4,7 -1,9 2,6 -1,4 -1,8 9,C -1,8 4,1 -1,8 4,B 1,B 2,1 -1,4 4,4 1,3 4,5 5,2 0,C 0,0 8,0 6,B -1,0 1,5 6,C 1,8 1,B 3,C 5,3 4,9 8,5 7,1 7,5 9,2 5,0 4,4 6,7 7,0 -1,0 6,C -1,6 9,B 2,3 -1,7 -1,1 7,2 8,5 7,1 7,7 2,B 7,C 0,4 5,0 1,8 3,7 3,2 -1,5 1,C 2,C 4,5 9,9 8,B 5,6 3,6 2,7 -1,2 2,9 3,2 -1,4 4,2 8,B 8,1 7,0 7,2 6,B 4,0 4,C 6,3 8,4 3,6 6,B 4,9 9,5 3,C 4,9 -1,3 2,6 4,5 -1,1 9,0 2,B -1,2 2,8 -1,9 9,B 3,0 2,9 6,3 6,2 -1,7 1,4 -1,5 5,3 1,0 7,C 8,9 6,5 3,C 4,C 7,C 1,6 6,C 5,C 0,2 0,0 8,2 0,5 0,7 4,0 4,9 ================================================ FILE: hmm_class/sites.py ================================================ # https://deeplearningcourses.com/c/unsupervised-machine-learning-hidden-markov-models-in-python # https://udemy.com/unsupervised-machine-learning-hidden-markov-models-in-python # http://lazyprogrammer.me # Create a Markov model for site data. from __future__ import print_function, division from future.utils import iteritems import numpy as np transitions = {} row_sums = {} # collect counts for line in open('site_data.csv'): s, e = line.rstrip().split(',') transitions[(s, e)] = transitions.get((s, e), 0.) + 1 row_sums[s] = row_sums.get(s, 0.) + 1 # normalize for k, v in iteritems(transitions): s, e = k transitions[k] = v / row_sums[s] # initial state distribution print("initial state distribution:") for k, v in iteritems(transitions): s, e = k if s == '-1': print(e, v) # which page has the highest bounce? for k, v in iteritems(transitions): s, e = k if e == 'B': print("bounce rate for %s: %s" % (s, v)) ================================================ FILE: hmm_class/tf_scan1.py ================================================ # https://deeplearningcourses.com/c/unsupervised-machine-learning-hidden-markov-models-in-python # https://udemy.com/unsupervised-machine-learning-hidden-markov-models-in-python # https://lazyprogrammer.me # tensorflow scan example: calculate x^2 from __future__ import print_function, division from builtins import range # Note: you may need to update your version of future # sudo pip install -U future import numpy as np import tensorflow as tf # sequence of elements we want to square x = tf.placeholder(tf.int32, shape=(None,), name='x') # thing to do to every element of the sequence # notice how it always ignores the last output def square(last, current): return current*current # this is a "fancy for loop" # it says: apply square to every element of x square_op = tf.scan( fn=square, elems=x, ) # run it! with tf.Session() as session: o_val = session.run(square_op, feed_dict={x: [1, 2, 3, 4, 5]}) print("output:", o_val) ================================================ FILE: hmm_class/tf_scan2.py ================================================ # https://deeplearningcourses.com/c/unsupervised-machine-learning-hidden-markov-models-in-python # https://udemy.com/unsupervised-machine-learning-hidden-markov-models-in-python # https://lazyprogrammer.me # tensorflow scan example: calculate fibonacci from __future__ import print_function, division from builtins import range # Note: you may need to update your version of future # sudo pip install -U future import numpy as np import tensorflow as tf # N = number of fibonacci numbers we want # shape=() means scalar N = tf.placeholder(tf.int32, shape=(), name='N') # recurrence and loop # notice how we don't use current_input at all! def recurrence(last_output, current_input): return (last_output[1], last_output[0] + last_output[1]) fibonacci = tf.scan( fn=recurrence, elems=tf.range(N), initializer=(0, 1), ) # run it! with tf.Session() as session: o_val = session.run(fibonacci, feed_dict={N: 8}) print("output:", o_val) ================================================ FILE: hmm_class/tf_scan3.py ================================================ # https://deeplearningcourses.com/c/unsupervised-machine-learning-hidden-markov-models-in-python # https://udemy.com/unsupervised-machine-learning-hidden-markov-models-in-python # https://lazyprogrammer.me # tensorflow scan example - low pass filter from __future__ import print_function, division from builtins import range # Note: you may need to update your version of future # sudo pip install -U future import numpy as np import matplotlib.pyplot as plt import tensorflow as tf # original sequence is a noisy sine wave original = np.sin(np.linspace(0, 3*np.pi, 300)) X = 2*np.random.randn(300) + original plt.plot(X) plt.title("original") plt.show() # set up placeholders decay = tf.placeholder(tf.float32, shape=(), name='decay') sequence = tf.placeholder(tf.float32, shape=(None,), name='sequence') # the recurrence function and loop def recurrence(last, x): return (1.0-decay)*x + decay*last lpf = tf.scan( fn=recurrence, elems=sequence, initializer=0.0, # sequence[0] to use the first value of the sequence ) # run it! with tf.Session() as session: Y = session.run(lpf, feed_dict={sequence: X, decay: 0.97}) plt.plot(Y) plt.plot(original) plt.title("filtered") plt.show() ================================================ FILE: keras_examples/ann.py ================================================ from __future__ import print_function, division from builtins import range # Note: you may need to update your version of future # sudo pip install -U future import numpy as np import matplotlib.pyplot as plt from util import getKaggleMNIST from keras.models import Model from keras.layers import Dense, Activation, Input # get the data Xtrain, Ytrain, Xtest, Ytest = getKaggleMNIST() # get shapes N, D = Xtrain.shape K = len(set(Ytrain)) # ANN with layers [784] -> [500] -> [300] -> [10] i = Input(shape=(D,)) x = Dense(500, activation='relu')(i) x = Dense(300, activation='relu')(x) x = Dense(K, activation='softmax')(x) # instantiate the model object model = Model(inputs=i, outputs=x) # list of losses: https://keras.io/losses/ # list of optimizers: https://keras.io/optimizers/ # list of metrics: https://keras.io/metrics/ model.compile( loss='sparse_categorical_crossentropy', optimizer='adam', metrics=['accuracy'] ) # note: multiple ways to choose a backend # either theano, tensorflow, or cntk # https://keras.io/backend/ # gives us back a r = model.fit(Xtrain, Ytrain, validation_data=(Xtest, Ytest), epochs=15, batch_size=32) print("Returned:", r) # print the available keys # should see: dict_keys(['val_loss', 'acc', 'loss', 'val_acc']) print(r.history.keys()) # plot some data plt.plot(r.history['loss'], label='loss') plt.plot(r.history['val_loss'], label='val_loss') plt.legend() plt.show() # accuracies plt.plot(r.history['acc'], label='acc') plt.plot(r.history['val_acc'], label='val_acc') plt.legend() plt.show() # make predictions and evaluate probs = model.predict(Xtest) # N x K matrix of probabilities Ptest = np.argmax(probs, axis=1) print("Validation acc:", np.mean(Ptest == Ytest)) ================================================ FILE: keras_examples/basic_mlp.py ================================================ from __future__ import print_function, division from builtins import range # Note: you may need to update your version of future # sudo pip install -U future import numpy as np import matplotlib.pyplot as plt from util import getKaggleMNIST, getKaggleFashionMNIST from sklearn.neural_network import MLPClassifier # get the data Xtrain, Ytrain, Xtest, Ytest = getKaggleFashionMNIST() # inspect your data print(Xtrain.shape) print(Ytrain.shape) # look at an example i = np.random.choice(Xtrain.shape[0]) plt.imshow(Xtrain[i].reshape(28, 28)) plt.title(Ytrain[i]) plt.show() # instantiate the model model = MLPClassifier() # train the model model.fit(Xtrain, Ytrain) # evaluate the model print(model.score(Xtrain, Ytrain)) print(model.score(Xtest, Ytest)) # for completion's sake, this is how you make predictions Ptest = model.predict(Xtest) # an alternate way to calculate accuracy print(np.mean(Ptest == Ytest)) # get output probabilities probs = model.predict_proba(Xtest) print("np.argmax(probs, axis=1) == Ptest?", np.all(np.argmax(probs, axis=1) == Ptest)) ================================================ FILE: keras_examples/batchnorm.py ================================================ from __future__ import print_function, division from builtins import range # Note: you may need to update your version of future # sudo pip install -U future import numpy as np import matplotlib.pyplot as plt from util import getKaggleMNIST from keras.models import Model from keras.layers import Dense, Activation, Input, BatchNormalization # get the data Xtrain, Ytrain, Xtest, Ytest = getKaggleMNIST() # get shapes N, D = Xtrain.shape K = len(set(Ytrain)) # ANN with layers [784] -> [500] -> [300] -> [10] i = Input(shape=(D,)) x = Dense(500)(i) x = BatchNormalization()(x) x = Activation('relu')(x) x = Dense(300)(x) x = BatchNormalization()(x) x = Activation('relu')(x) x = Dense(K, activation='softmax')(x) # instantiate the model object model = Model(inputs=i, outputs=x) # list of losses: https://keras.io/losses/ # list of optimizers: https://keras.io/optimizers/ # list of metrics: https://keras.io/metrics/ model.compile( loss='sparse_categorical_crossentropy', optimizer='adam', metrics=['accuracy'] ) # note: multiple ways to choose a backend # either theano, tensorflow, or cntk # https://keras.io/backend/ # gives us back a r = model.fit(Xtrain, Ytrain, validation_data=(Xtest, Ytest), epochs=15, batch_size=32) print("Returned:", r) # print the available keys # should see: dict_keys(['val_loss', 'acc', 'loss', 'val_acc']) print(r.history.keys()) # plot some data plt.plot(r.history['loss'], label='loss') plt.plot(r.history['val_loss'], label='val_loss') plt.legend() plt.show() # accuracies plt.plot(r.history['acc'], label='acc') plt.plot(r.history['val_acc'], label='val_acc') plt.legend() plt.show() # make predictions and evaluate probs = model.predict(Xtest) # N x K matrix of probabilities Ptest = np.argmax(probs, axis=1) print("Validation acc:", np.mean(Ptest == Ytest)) ================================================ FILE: keras_examples/cnn.py ================================================ # https://deeplearningcourses.com/c/data-science-deep-learning-in-theano-tensorflow # https://www.udemy.com/data-science-deep-learning-in-theano-tensorflow from __future__ import print_function, division from builtins import range # Note: you may need to update your version of future # sudo pip install -U future from keras.models import Model from keras.layers import Dense, Activation, Conv2D, MaxPooling2D, Flatten, Input import matplotlib.pyplot as plt import pandas as pd import numpy as np from util import getKaggleMNIST3D, getKaggleFashionMNIST3D, getCIFAR10 # get the data Xtrain, Ytrain, Xtest, Ytest = getKaggleFashionMNIST3D() # get shapes N, H, W, C = Xtrain.shape K = len(set(Ytrain)) # make the CNN i = Input(shape=(H, W, C)) x = Conv2D(filters=32, kernel_size=(3, 3))(i) x = Activation('relu')(x) x = MaxPooling2D()(x) x = Conv2D(filters=64, kernel_size=(3, 3))(x) x = Activation('relu')(x) x = MaxPooling2D()(x) x = Flatten()(x) x = Dense(units=100)(x) x = Activation('relu')(x) x = Dense(units=K)(x) x = Activation('softmax')(x) model = Model(inputs=i, outputs=x) # list of losses: https://keras.io/losses/ # list of optimizers: https://keras.io/optimizers/ # list of metrics: https://keras.io/metrics/ model.compile( loss='sparse_categorical_crossentropy', optimizer='adam', metrics=['accuracy'] ) # note: multiple ways to choose a backend # either theano, tensorflow, or cntk # https://keras.io/backend/ # gives us back a r = model.fit(Xtrain, Ytrain, validation_data=(Xtest, Ytest), epochs=15, batch_size=32) print("Returned:", r) # print the available keys # should see: dict_keys(['val_loss', 'acc', 'loss', 'val_acc']) print(r.history.keys()) # plot some data plt.plot(r.history['loss'], label='loss') plt.plot(r.history['val_loss'], label='val_loss') plt.legend() plt.show() # accuracies plt.plot(r.history['acc'], label='acc') plt.plot(r.history['val_acc'], label='val_acc') plt.legend() plt.show() ================================================ FILE: keras_examples/cnn_cifar.py ================================================ # https://deeplearningcourses.com/c/data-science-deep-learning-in-theano-tensorflow # https://www.udemy.com/data-science-deep-learning-in-theano-tensorflow from __future__ import print_function, division from builtins import range # Note: you may need to update your version of future # sudo pip install -U future from keras.models import Sequential, Model from keras.layers import Dense, Activation, Lambda, Conv2D, MaxPooling2D, Flatten, Dropout, BatchNormalization, Input import matplotlib.pyplot as plt import pandas as pd import numpy as np from util import getCIFAR10 # get the data Xtrain, Ytrain, Xtest, Ytest = getCIFAR10() # get shapes N, H, W, C = Xtrain.shape K = len(set(Ytrain)) # make the CNN i = Input(shape=(H, W, C)) x = Lambda(lambda x: (x - 127.5) / 127.5)(i) x = Conv2D(filters=32, kernel_size=(3, 3))(x) x = BatchNormalization()(x) x = Activation('relu')(x) x = MaxPooling2D()(x) x = Conv2D(filters=64, kernel_size=(3, 3))(x) x = BatchNormalization()(x) x = Activation('relu')(x) x = MaxPooling2D()(x) x = Conv2D(filters=128, kernel_size=(3, 3))(x) x = BatchNormalization()(x) x = Activation('relu')(x) x = MaxPooling2D()(x) x = Flatten()(x) x = Dropout(0.5)(x) x = Dense(units=300)(x) x = Activation('relu')(x) x = Dropout(0.2)(x) x = Dense(units=K)(x) x = Activation('softmax')(x) model = Model(inputs=i, outputs=x) # list of losses: https://keras.io/losses/ # list of optimizers: https://keras.io/optimizers/ # list of metrics: https://keras.io/metrics/ model.compile( loss='sparse_categorical_crossentropy', optimizer='adam', metrics=['accuracy'] ) # note: multiple ways to choose a backend # either theano, tensorflow, or cntk # https://keras.io/backend/ # gives us back a r = model.fit(Xtrain, Ytrain, validation_data=(Xtest, Ytest), epochs=80, batch_size=32) print("Returned:", r) # print the available keys # should see: dict_keys(['val_loss', 'acc', 'loss', 'val_acc']) print(r.history.keys()) # plot some data plt.plot(r.history['loss'], label='loss') plt.plot(r.history['val_loss'], label='val_loss') plt.legend() plt.show() # accuracies plt.plot(r.history['acc'], label='acc') plt.plot(r.history['val_acc'], label='val_acc') plt.legend() plt.show() ================================================ FILE: keras_examples/cnn_dropout_batchnorm.py ================================================ # https://deeplearningcourses.com/c/data-science-deep-learning-in-theano-tensorflow # https://www.udemy.com/data-science-deep-learning-in-theano-tensorflow from __future__ import print_function, division from builtins import range # Note: you may need to update your version of future # sudo pip install -U future from keras.models import Sequential, Model from keras.layers import Dense, Activation, Conv2D, MaxPooling2D, Flatten, Dropout, BatchNormalization, Input import matplotlib.pyplot as plt import pandas as pd import numpy as np from util import getKaggleMNIST3D, getKaggleFashionMNIST3D, getCIFAR10 # get the data Xtrain, Ytrain, Xtest, Ytest = getKaggleFashionMNIST3D() # get shapes N, H, W, C = Xtrain.shape K = len(set(Ytrain)) # make the CNN i = Input(shape=(H, W, C)) x = Conv2D(filters=32, kernel_size=(3, 3))(i) x = BatchNormalization()(x) x = Activation('relu')(x) x = MaxPooling2D()(x) x = Conv2D(filters=64, kernel_size=(3, 3))(x) x = BatchNormalization()(x) x = Activation('relu')(x) x = MaxPooling2D()(x) x = Flatten()(x) x = Dense(units=100)(x) x = Activation('relu')(x) x = Dropout(0.2)(x) x = Dense(units=K)(x) x = Activation('softmax')(x) model = Model(inputs=i, outputs=x) # list of losses: https://keras.io/losses/ # list of optimizers: https://keras.io/optimizers/ # list of metrics: https://keras.io/metrics/ model.compile( loss='sparse_categorical_crossentropy', optimizer='adam', metrics=['accuracy'] ) # note: multiple ways to choose a backend # either theano, tensorflow, or cntk # https://keras.io/backend/ # gives us back a r = model.fit(Xtrain, Ytrain, validation_data=(Xtest, Ytest), epochs=15, batch_size=32) print("Returned:", r) # print the available keys # should see: dict_keys(['val_loss', 'acc', 'loss', 'val_acc']) print(r.history.keys()) # plot some data plt.plot(r.history['loss'], label='loss') plt.plot(r.history['val_loss'], label='val_loss') plt.legend() plt.show() # accuracies plt.plot(r.history['acc'], label='acc') plt.plot(r.history['val_acc'], label='val_acc') plt.legend() plt.show() ================================================ FILE: keras_examples/dropout.py ================================================ from __future__ import print_function, division from builtins import range # Note: you may need to update your version of future # sudo pip install -U future import numpy as np import matplotlib.pyplot as plt from util import getKaggleMNIST from keras.models import Model from keras.layers import Dense, Activation, Input, Dropout # get the data Xtrain, Ytrain, Xtest, Ytest = getKaggleMNIST() # get shapes N, D = Xtrain.shape K = len(set(Ytrain)) # ANN with layers [784] -> [500] -> [300] -> [10] i = Input(shape=(D,)) x = Dropout(0.2)(i) x = Dense(500, activation='relu')(x) x = Dropout(0.5)(x) x = Dense(300, activation='relu')(x) x = Dropout(0.5)(x) x = Dense(K, activation='softmax')(x) # instantiate the model object model = Model(inputs=i, outputs=x) # list of losses: https://keras.io/losses/ # list of optimizers: https://keras.io/optimizers/ # list of metrics: https://keras.io/metrics/ model.compile( loss='sparse_categorical_crossentropy', optimizer='adam', metrics=['accuracy'] ) # note: multiple ways to choose a backend # either theano, tensorflow, or cntk # https://keras.io/backend/ # gives us back a r = model.fit(Xtrain, Ytrain, validation_data=(Xtest, Ytest), epochs=15, batch_size=32) print("Returned:", r) # print the available keys # should see: dict_keys(['val_loss', 'acc', 'loss', 'val_acc']) print(r.history.keys()) # plot some data plt.plot(r.history['loss'], label='loss') plt.plot(r.history['val_loss'], label='val_loss') plt.legend() plt.show() # accuracies plt.plot(r.history['acc'], label='acc') plt.plot(r.history['val_acc'], label='val_acc') plt.legend() plt.show() # make predictions and evaluate probs = model.predict(Xtest) # N x K matrix of probabilities Ptest = np.argmax(probs, axis=1) print("Validation acc:", np.mean(Ptest == Ytest)) ================================================ FILE: keras_examples/sentiment_analysis.py ================================================ # https://deeplearningcourses.com/c/deep-learning-advanced-nlp from __future__ import print_function, division from builtins import range # Note: you may need to update your version of future # sudo pip install -U future import os import sys import numpy as np import pandas as pd import matplotlib.pyplot as plt from keras.models import Model from keras.layers import Dense, Embedding, Input from keras.layers import LSTM, GRU from keras.preprocessing.text import Tokenizer from keras.preprocessing.sequence import pad_sequences import keras.backend as K if len(K.tensorflow_backend._get_available_gpus()) > 0: from keras.layers import CuDNNLSTM as LSTM from keras.layers import CuDNNGRU as GRU # some configuration MAX_SEQUENCE_LENGTH = 50 MAX_VOCAB_SIZE = 20000 EMBEDDING_DIM = 10 VALIDATION_SPLIT = 0.2 BATCH_SIZE = 128 EPOCHS = 5 # get the data at: https://www.kaggle.com/c/sentiment-analysis-on-movie-reviews # prepare text samples and their labels print('Loading in data...') train = pd.read_csv("../large_files/kaggle-sentiment-analysis/train.tsv", sep='\t') sentences = train["Phrase"].values targets = (train['Sentiment'].values > 3) K = len(set(targets)) # convert the sentences (strings) into integers tokenizer = Tokenizer(num_words=MAX_VOCAB_SIZE) tokenizer.fit_on_texts(sentences) sequences = tokenizer.texts_to_sequences(sentences) print("max sequence length:", max(len(s) for s in sequences)) print("min sequence length:", min(len(s) for s in sequences)) s = sorted(len(s) for s in sequences) print("median sequence length:", s[len(s) // 2]) maxlen = min(max(len(s) for s in sequences), MAX_SEQUENCE_LENGTH) # get word -> integer mapping word2idx = tokenizer.word_index print('Found %s unique tokens.' % len(word2idx)) # pad sequences so that we get a N x T matrix data = pad_sequences(sequences, maxlen=maxlen) print('Shape of data tensor:', data.shape) print('Building model...') # create an LSTM network with a single LSTM input_ = Input(shape=(maxlen,)) x = Embedding(len(word2idx) + 1, EMBEDDING_DIM)(input_) x = LSTM(5)(x) output = Dense(K, activation='softmax')(x) model = Model(input_, output) model.compile( loss='sparse_categorical_crossentropy', optimizer='adam', metrics=['accuracy'] ) print('Training model...') r = model.fit( data, targets, batch_size=BATCH_SIZE, epochs=EPOCHS, validation_split=VALIDATION_SPLIT ) # plot some data plt.plot(r.history['loss'], label='loss') plt.plot(r.history['val_loss'], label='val_loss') plt.legend() plt.show() # accuracies plt.plot(r.history['acc'], label='acc') plt.plot(r.history['val_acc'], label='val_acc') plt.legend() plt.show() ================================================ FILE: keras_examples/sine.py ================================================ # https://lazyprogrammer.me import numpy as np import pandas as pd import matplotlib.pyplot as plt from keras.models import Model from keras.layers import Input, LSTM, GRU, SimpleRNN, Dense import keras.backend as K from keras.optimizers import SGD, Adam # make the original data series = np.sin(0.1*np.arange(200)) + np.random.randn(200)*0.1 # plot it plt.plot(series) plt.show() ### build the dataset # let's see if we can use T past values to predict the next value T = 10 D = 1 X = [] Y = [] for t in range(len(series) - T - 1): x = series[t:t+T] # print("x[-1]:", x[-1]) X.append(x) y = series[t+T] # print("y:", y) Y.append(y) X = np.array(X) Y = np.array(Y) N = len(X) ### many-to-one RNN inputs = np.expand_dims(X, -1) # make the RNN i = Input(shape=(T, D)) x = SimpleRNN(5)(i) x = Dense(1)(x) model = Model(i, x) model.compile( loss='mse', optimizer=Adam(lr=0.1), ) # train the RNN r = model.fit( inputs[:-N//2], Y[:-N//2], batch_size=32, epochs=80, validation_data=(inputs[-N//2:], Y[-N//2:]), ) # plot some data plt.plot(r.history['loss'], label='loss') plt.plot(r.history['val_loss'], label='val_loss') plt.legend() plt.show() # plot predictions vs targets outputs = model.predict(inputs) print(outputs.shape) predictions = outputs[:,0] plt.plot(Y, label='targets') plt.plot(predictions, label='predictions') plt.title("many-to-one RNN") plt.legend() plt.show() ================================================ FILE: keras_examples/sine2.py ================================================ # https://lazyprogrammer.me import numpy as np import pandas as pd import matplotlib.pyplot as plt from keras.models import Model from keras.layers import Input, SimpleRNN, Dense from keras.optimizers import SGD, Adam # make the original data series1 = np.sin(0.1*np.arange(200)) series2 = np.sin(0.2*np.arange(200)) # plot it plt.plot(series1) plt.plot(series2) plt.show() ### build the dataset # let's see if we can use T past values to predict the next value T = 10 D = 2 X = [] Y = [] for t in range(len(series1) - T - 1): x = [series1[t:t+T], series2[t:t+T]] # print("x[-1]:", x[-1]) X.append(x) y = series1[t+T] + series2[t+T] # print("y:", y) Y.append(y) X = np.array(X) print("X.shape:", X.shape) X = np.transpose(X, (0, 2, 1)) Y = np.array(Y) N = len(X) ### many-to-one RNN # make the RNN i = Input(shape=(T, D)) x = SimpleRNN(5)(i) x = Dense(1)(x) model = Model(i, x) model.compile( loss='mse', optimizer=Adam(lr=0.1), ) # train the RNN r = model.fit( X[:-N//2], Y[:-N//2], batch_size=32, epochs=80, validation_data=(X[-N//2:], Y[-N//2:]), ) # plot some data plt.plot(r.history['loss'], label='loss') plt.plot(r.history['val_loss'], label='val_loss') plt.legend() plt.show() # plot predictions vs targets outputs = model.predict(X) print(outputs.shape) predictions = outputs[:,0] plt.plot(Y, label='targets') plt.plot(predictions, label='predictions') plt.title("many-to-one RNN") plt.legend() plt.show() ================================================ FILE: keras_examples/translation.py ================================================ # https://deeplearningcourses.com/c/deep-learning-advanced-nlp from __future__ import print_function, division from builtins import range # Note: you may need to update your version of future # sudo pip install -U future import os import sys import numpy as np import pandas as pd import matplotlib.pyplot as plt from keras.models import Model from keras.layers import Dense, Embedding, Input from keras.layers import LSTM, Bidirectional from keras.preprocessing.text import Tokenizer from keras.preprocessing.sequence import pad_sequences from keras.optimizers import Adam import keras.backend as K if len(K.tensorflow_backend._get_available_gpus()) > 0: from keras.layers import CuDNNLSTM as LSTM from keras.layers import CuDNNGRU as GRU # some configuration MAX_VOCAB_SIZE = 20000 EMBEDDING_DIM = 20 VALIDATION_SPLIT = 0.2 BATCH_SIZE = 128 EPOCHS = 30 NUM_SAMPLES = 10000 # Where we will store the data input_texts = [] # sentence in original language target_texts = [] # sentence in target language # load in the data # download the data at: http://www.manythings.org/anki/ t = 0 for line in open('../large_files/translation/spa.txt'): # only keep a limited number of samples t += 1 if t > NUM_SAMPLES: break # input and target are separated by tab if '\t' not in line: continue # split up the input and translation input_text, translation = line.rstrip().split('\t') input_texts.append(input_text) target_texts.append(translation) print("num samples:", len(input_texts)) # tokenize the inputs tokenizer_inputs = Tokenizer(num_words=MAX_VOCAB_SIZE) tokenizer_inputs.fit_on_texts(input_texts) input_sequences = tokenizer_inputs.texts_to_sequences(input_texts) # get the word to index mapping for input language word2idx_inputs = tokenizer_inputs.word_index print('Found %s unique input tokens.' % len(word2idx_inputs)) num_words_input = len(word2idx_inputs) + 1 # determine maximum length input sequence max_len_input = max(len(s) for s in input_sequences) # tokenize the outputs # don't filter out special characters # otherwise and won't appear tokenizer_outputs = Tokenizer(num_words=MAX_VOCAB_SIZE, filters='') tokenizer_outputs.fit_on_texts(target_texts) target_sequences = tokenizer_outputs.texts_to_sequences(target_texts) # get the word to index mapping for output language word2idx_outputs = tokenizer_outputs.word_index print('Found %s unique output tokens.' % len(word2idx_outputs)) # store number of output words for later # remember to add 1 since indexing starts at 1 num_words_output = len(word2idx_outputs) + 1 # determine maximum length output sequence max_len_target = max(len(s) for s in target_sequences) max_len_both = max(max_len_input, max_len_target) # pad the sequences inputs_padded = pad_sequences(input_sequences, maxlen=max_len_both) targets_padded = pad_sequences(target_sequences, maxlen=max_len_both) # create targets, since we cannot use sparse # categorical cross entropy when we have sequences targets_padded_one_hot = np.zeros( ( len(targets_padded), max_len_both, num_words_output ), dtype='float32' ) # assign the values for i, d in enumerate(targets_padded): for t, word in enumerate(d): targets_padded_one_hot[i, t, word] = 1 print('Building model...') # create an LSTM network with a single LSTM input_ = Input(shape=(max_len_both,)) x = Embedding(num_words_input, EMBEDDING_DIM)(input_) x = Bidirectional(LSTM(15, return_sequences=True))(x) output = Dense(num_words_output, activation='softmax')(x) model = Model(input_, output) model.compile( loss='categorical_crossentropy', optimizer=Adam(lr=0.1), metrics=['accuracy'] ) print('Training model...') r = model.fit( inputs_padded, targets_padded_one_hot, batch_size=BATCH_SIZE, epochs=EPOCHS, validation_split=VALIDATION_SPLIT ) # plot some data plt.plot(r.history['loss'], label='loss') plt.plot(r.history['val_loss'], label='val_loss') plt.legend() plt.show() # accuracies plt.plot(r.history['acc'], label='acc') plt.plot(r.history['val_acc'], label='val_acc') plt.legend() plt.show() ================================================ FILE: keras_examples/util.py ================================================ from __future__ import print_function, division from builtins import range # Note: you may need to update your version of future # sudo pip install -U future import numpy as np import pandas as pd from sklearn.utils import shuffle from scipy.io import loadmat def getKaggleMNIST(): # https://www.kaggle.com/c/digit-recognizer return getMNISTFormat('../large_files/train.csv') def getKaggleFashionMNIST(): # https://www.kaggle.com/zalando-research/fashionmnist return getMNISTFormat('../large_files/fashionmnist/fashion-mnist_train.csv') def getMNISTFormat(path): # MNIST data: # column 0 is labels # column 1-785 is data, with values 0 .. 255 # total size of CSV: (42000, 1, 28, 28) train = pd.read_csv(path).values.astype(np.float32) train = shuffle(train) Xtrain = train[:-1000,1:] / 255.0 Ytrain = train[:-1000,0].astype(np.int32) Xtest = train[-1000:,1:] / 255.0 Ytest = train[-1000:,0].astype(np.int32) return Xtrain, Ytrain, Xtest, Ytest def getKaggleMNIST3D(): Xtrain, Ytrain, Xtest, Ytest = getKaggleMNIST() Xtrain = Xtrain.reshape(-1, 28, 28, 1) Xtest = Xtest.reshape(-1, 28, 28, 1) return Xtrain, Ytrain, Xtest, Ytest def getKaggleFashionMNIST3D(): Xtrain, Ytrain, Xtest, Ytest = getKaggleFashionMNIST() Xtrain = Xtrain.reshape(-1, 28, 28, 1) Xtest = Xtest.reshape(-1, 28, 28, 1) return Xtrain, Ytrain, Xtest, Ytest def getCIFAR10(): Xtrain = np.zeros((50000, 32, 32, 3), dtype=np.uint8) Ytrain = np.zeros(50000, dtype=np.uint8) # train data for i in range(5): fn = 'data_batch_%s.mat' % (i+1) d = loadmat('../large_files/cifar-10-batches-mat/' + fn) x = d['data'] y = d['labels'].flatten() x = x.reshape(10000, 3, 32, 32) x = np.transpose(x, (0, 2, 3, 1)) Xtrain[i*10000:(i+1)*10000] = x Ytrain[i*10000:(i+1)*10000] = y # test data d = loadmat('../large_files/cifar-10-batches-mat/test_batch.mat') x = d['data'] y = d['labels'].flatten() x = x.reshape(10000, 3, 32, 32) x = np.transpose(x, (0, 2, 3, 1)) Xtest = x Ytest = y return Xtrain, Ytrain, Xtest, Ytest ================================================ FILE: kerascv/extra_reading.txt ================================================ KerasCV List of Models https://keras.io/api/keras_cv/models/ Fast R-CNN (Ross Girshick) https://arxiv.org/pdf/1504.08083.pdf Focal Loss for Dense Object Detection (Lin et al.) https://arxiv.org/abs/1708.02002 ================================================ FILE: kerascv/imagenet_label_names.json ================================================ ["tench", "goldfish", "great white shark", "tiger shark", "hammerhead shark", "electric ray", "stingray", "cock", "hen", "ostrich", "brambling", "goldfinch", "house finch", "junco", "indigo bunting", "American robin", "bulbul", "jay", "magpie", "chickadee", "American dipper", "kite", "bald eagle", "vulture", "great grey owl", "fire salamander", "smooth newt", "newt", "spotted salamander", "axolotl", "American bullfrog", "tree frog", "tailed frog", "loggerhead sea turtle", "leatherback sea turtle", "mud turtle", "terrapin", "box turtle", "banded gecko", "green iguana", "Carolina anole", "desert grassland whiptail lizard", "agama", "frilled-necked lizard", "alligator lizard", "Gila monster", "European green lizard", "chameleon", "Komodo dragon", "Nile crocodile", "American alligator", "triceratops", "worm snake", "ring-necked snake", "eastern hog-nosed snake", "smooth green snake", "kingsnake", "garter snake", "water snake", "vine snake", "night snake", "boa constrictor", "African rock python", "Indian cobra", "green mamba", "sea snake", "Saharan horned viper", "eastern diamondback rattlesnake", "sidewinder", "trilobite", "harvestman", "scorpion", "yellow garden spider", "barn spider", "European garden spider", "southern black widow", "tarantula", "wolf spider", "tick", "centipede", "black grouse", "ptarmigan", "ruffed grouse", "prairie grouse", "peacock", "quail", "partridge", "grey parrot", "macaw", "sulphur-crested cockatoo", "lorikeet", "coucal", "bee eater", "hornbill", "hummingbird", "jacamar", "toucan", "duck", "red-breasted merganser", "goose", "black swan", "tusker", "echidna", "platypus", "wallaby", "koala", "wombat", "jellyfish", "sea anemone", "brain coral", "flatworm", "nematode", "conch", "snail", "slug", "sea slug", "chiton", "chambered nautilus", "Dungeness crab", "rock crab", "fiddler crab", "red king crab", "American lobster", "spiny lobster", "crayfish", "hermit crab", "isopod", "white stork", "black stork", "spoonbill", "flamingo", "little blue heron", "great egret", "bittern", "crane (bird)", "limpkin", "common gallinule", "American coot", "bustard", "ruddy turnstone", "dunlin", "common redshank", "dowitcher", "oystercatcher", "pelican", "king penguin", "albatross", "grey whale", "killer whale", "dugong", "sea lion", "Chihuahua", "Japanese Chin", "Maltese", "Pekingese", "Shih Tzu", "King Charles Spaniel", "Papillon", "toy terrier", "Rhodesian Ridgeback", "Afghan Hound", "Basset Hound", "Beagle", "Bloodhound", "Bluetick Coonhound", "Black and Tan Coonhound", "Treeing Walker Coonhound", "English foxhound", "Redbone Coonhound", "borzoi", "Irish Wolfhound", "Italian Greyhound", "Whippet", "Ibizan Hound", "Norwegian Elkhound", "Otterhound", "Saluki", "Scottish Deerhound", "Weimaraner", "Staffordshire Bull Terrier", "American Staffordshire Terrier", "Bedlington Terrier", "Border Terrier", "Kerry Blue Terrier", "Irish Terrier", "Norfolk Terrier", "Norwich Terrier", "Yorkshire Terrier", "Wire Fox Terrier", "Lakeland Terrier", "Sealyham Terrier", "Airedale Terrier", "Cairn Terrier", "Australian Terrier", "Dandie Dinmont Terrier", "Boston Terrier", "Miniature Schnauzer", "Giant Schnauzer", "Standard Schnauzer", "Scottish Terrier", "Tibetan Terrier", "Australian Silky Terrier", "Soft-coated Wheaten Terrier", "West Highland White Terrier", "Lhasa Apso", "Flat-Coated Retriever", "Curly-coated Retriever", "Golden Retriever", "Labrador Retriever", "Chesapeake Bay Retriever", "German Shorthaired Pointer", "Vizsla", "English Setter", "Irish Setter", "Gordon Setter", "Brittany", "Clumber Spaniel", "English Springer Spaniel", "Welsh Springer Spaniel", "Cocker Spaniels", "Sussex Spaniel", "Irish Water Spaniel", "Kuvasz", "Schipperke", "Groenendael", "Malinois", "Briard", "Australian Kelpie", "Komondor", "Old English Sheepdog", "Shetland Sheepdog", "collie", "Border Collie", "Bouvier des Flandres", "Rottweiler", "German Shepherd Dog", "Dobermann", "Miniature Pinscher", "Greater Swiss Mountain Dog", "Bernese Mountain Dog", "Appenzeller Sennenhund", "Entlebucher Sennenhund", "Boxer", "Bullmastiff", "Tibetan Mastiff", "French Bulldog", "Great Dane", "St. Bernard", "husky", "Alaskan Malamute", "Siberian Husky", "Dalmatian", "Affenpinscher", "Basenji", "pug", "Leonberger", "Newfoundland", "Pyrenean Mountain Dog", "Samoyed", "Pomeranian", "Chow Chow", "Keeshond", "Griffon Bruxellois", "Pembroke Welsh Corgi", "Cardigan Welsh Corgi", "Toy Poodle", "Miniature Poodle", "Standard Poodle", "Mexican hairless dog", "grey wolf", "Alaskan tundra wolf", "red wolf", "coyote", "dingo", "dhole", "African wild dog", "hyena", "red fox", "kit fox", "Arctic fox", "grey fox", "tabby cat", "tiger cat", "Persian cat", "Siamese cat", "Egyptian Mau", "cougar", "lynx", "leopard", "snow leopard", "jaguar", "lion", "tiger", "cheetah", "brown bear", "American black bear", "polar bear", "sloth bear", "mongoose", "meerkat", "tiger beetle", "ladybug", "ground beetle", "longhorn beetle", "leaf beetle", "dung beetle", "rhinoceros beetle", "weevil", "fly", "bee", "ant", "grasshopper", "cricket", "stick insect", "cockroach", "mantis", "cicada", "leafhopper", "lacewing", "dragonfly", "damselfly", "red admiral", "ringlet", "monarch butterfly", "small white", "sulphur butterfly", "gossamer-winged butterfly", "starfish", "sea urchin", "sea cucumber", "cottontail rabbit", "hare", "Angora rabbit", "hamster", "porcupine", "fox squirrel", "marmot", "beaver", "guinea pig", "common sorrel", "zebra", "pig", "wild boar", "warthog", "hippopotamus", "ox", "water buffalo", "bison", "ram", "bighorn sheep", "Alpine ibex", "hartebeest", "impala", "gazelle", "dromedary", "llama", "weasel", "mink", "European polecat", "black-footed ferret", "otter", "skunk", "badger", "armadillo", "three-toed sloth", "orangutan", "gorilla", "chimpanzee", "gibbon", "siamang", "guenon", "patas monkey", "baboon", "macaque", "langur", "black-and-white colobus", "proboscis monkey", "marmoset", "white-headed capuchin", "howler monkey", "titi", "Geoffroy's spider monkey", "common squirrel monkey", "ring-tailed lemur", "indri", "Asian elephant", "African bush elephant", "red panda", "giant panda", "snoek", "eel", "coho salmon", "rock beauty", "clownfish", "sturgeon", "garfish", "lionfish", "pufferfish", "abacus", "abaya", "academic gown", "accordion", "acoustic guitar", "aircraft carrier", "airliner", "airship", "altar", "ambulance", "amphibious vehicle", "analog clock", "apiary", "apron", "waste container", "assault rifle", "backpack", "bakery", "balance beam", "balloon", "ballpoint pen", "Band-Aid", "banjo", "baluster", "barbell", "barber chair", "barbershop", "barn", "barometer", "barrel", "wheelbarrow", "baseball", "basketball", "bassinet", "bassoon", "swimming cap", "bath towel", "bathtub", "station wagon", "lighthouse", "beaker", "military cap", "beer bottle", "beer glass", "bell-cot", "bib", "tandem bicycle", "bikini", "ring binder", "binoculars", "birdhouse", "boathouse", "bobsleigh", "bolo tie", "poke bonnet", "bookcase", "bookstore", "bottle cap", "bow", "bow tie", "brass", "bra", "breakwater", "breastplate", "broom", "bucket", "buckle", "bulletproof vest", "high-speed train", "butcher shop", "taxicab", "cauldron", "candle", "cannon", "canoe", "can opener", "cardigan", "car mirror", "carousel", "tool kit", "carton", "car wheel", "automated teller machine", "cassette", "cassette player", "castle", "catamaran", "CD player", "cello", "mobile phone", "chain", "chain-link fence", "chain mail", "chainsaw", "chest", "chiffonier", "chime", "china cabinet", "Christmas stocking", "church", "movie theater", "cleaver", "cliff dwelling", "cloak", "clogs", "cocktail shaker", "coffee mug", "coffeemaker", "coil", "combination lock", "computer keyboard", "confectionery store", "container ship", "convertible", "corkscrew", "cornet", "cowboy boot", "cowboy hat", "cradle", "crane (machine)", "crash helmet", "crate", "infant bed", "Crock Pot", "croquet ball", "crutch", "cuirass", "dam", "desk", "desktop computer", "rotary dial telephone", "diaper", "digital clock", "digital watch", "dining table", "dishcloth", "dishwasher", "disc brake", "dock", "dog sled", "dome", "doormat", "drilling rig", "drum", "drumstick", "dumbbell", "Dutch oven", "electric fan", "electric guitar", "electric locomotive", "entertainment center", "envelope", "espresso machine", "face powder", "feather boa", "filing cabinet", "fireboat", "fire engine", "fire screen sheet", "flagpole", "flute", "folding chair", "football helmet", "forklift", "fountain", "fountain pen", "four-poster bed", "freight car", "French horn", "frying pan", "fur coat", "garbage truck", "gas mask", "gas pump", "goblet", "go-kart", "golf ball", "golf cart", "gondola", "gong", "gown", "grand piano", "greenhouse", "grille", "grocery store", "guillotine", "barrette", "hair spray", "half-track", "hammer", "hamper", "hair dryer", "hand-held computer", "handkerchief", "hard disk drive", "harmonica", "harp", "harvester", "hatchet", "holster", "home theater", "honeycomb", "hook", "hoop skirt", "horizontal bar", "horse-drawn vehicle", "hourglass", "iPod", "clothes iron", "jack-o'-lantern", "jeans", "jeep", "T-shirt", "jigsaw puzzle", "pulled rickshaw", "joystick", "kimono", "knee pad", "knot", "lab coat", "ladle", "lampshade", "laptop computer", "lawn mower", "lens cap", "paper knife", "library", "lifeboat", "lighter", "limousine", "ocean liner", "lipstick", "slip-on shoe", "lotion", "speaker", "loupe", "sawmill", "magnetic compass", "mail bag", "mailbox", "tights", "tank suit", "manhole cover", "maraca", "marimba", "mask", "match", "maypole", "maze", "measuring cup", "medicine chest", "megalith", "microphone", "microwave oven", "military uniform", "milk can", "minibus", "miniskirt", "minivan", "missile", "mitten", "mixing bowl", "mobile home", "Model T", "modem", "monastery", "monitor", "moped", "mortar", "square academic cap", "mosque", "mosquito net", "scooter", "mountain bike", "tent", "computer mouse", "mousetrap", "moving van", "muzzle", "nail", "neck brace", "necklace", "nipple", "notebook computer", "obelisk", "oboe", "ocarina", "odometer", "oil filter", "organ", "oscilloscope", "overskirt", "bullock cart", "oxygen mask", "packet", "paddle", "paddle wheel", "padlock", "paintbrush", "pajamas", "palace", "pan flute", "paper towel", "parachute", "parallel bars", "park bench", "parking meter", "passenger car", "patio", "payphone", "pedestal", "pencil case", "pencil sharpener", "perfume", "Petri dish", "photocopier", "plectrum", "Pickelhaube", "picket fence", "pickup truck", "pier", "piggy bank", "pill bottle", "pillow", "ping-pong ball", "pinwheel", "pirate ship", "pitcher", "hand plane", "planetarium", "plastic bag", "plate rack", "plow", "plunger", "Polaroid camera", "pole", "police van", "poncho", "billiard table", "soda bottle", "pot", "potter's wheel", "power drill", "prayer rug", "printer", "prison", "projectile", "projector", "hockey puck", "punching bag", "purse", "quill", "quilt", "race car", "racket", "radiator", "radio", "radio telescope", "rain barrel", "recreational vehicle", "reel", "reflex camera", "refrigerator", "remote control", "restaurant", "revolver", "rifle", "rocking chair", "rotisserie", "eraser", "rugby ball", "ruler", "running shoe", "safe", "safety pin", "salt shaker", "sandal", "sarong", "saxophone", "scabbard", "weighing scale", "school bus", "schooner", "scoreboard", "CRT screen", "screw", "screwdriver", "seat belt", "sewing machine", "shield", "shoe store", "shoji", "shopping basket", "shopping cart", "shovel", "shower cap", "shower curtain", "ski", "ski mask", "sleeping bag", "slide rule", "sliding door", "slot machine", "snorkel", "snowmobile", "snowplow", "soap dispenser", "soccer ball", "sock", "solar thermal collector", "sombrero", "soup bowl", "space bar", "space heater", "space shuttle", "spatula", "motorboat", "spider web", "spindle", "sports car", "spotlight", "stage", "steam locomotive", "through arch bridge", "steel drum", "stethoscope", "scarf", "stone wall", "stopwatch", "stove", "strainer", "tram", "stretcher", "couch", "stupa", "submarine", "suit", "sundial", "sunglass", "sunglasses", "sunscreen", "suspension bridge", "mop", "sweatshirt", "swimsuit", "swing", "switch", "syringe", "table lamp", "tank", "tape player", "teapot", "teddy bear", "television", "tennis ball", "thatched roof", "front curtain", "thimble", "threshing machine", "throne", "tile roof", "toaster", "tobacco shop", "toilet seat", "torch", "totem pole", "tow truck", "toy store", "tractor", "semi-trailer truck", "tray", "trench coat", "tricycle", "trimaran", "tripod", "triumphal arch", "trolleybus", "trombone", "tub", "turnstile", "typewriter keyboard", "umbrella", "unicycle", "upright piano", "vacuum cleaner", "vase", "vault", "velvet", "vending machine", "vestment", "viaduct", "violin", "volleyball", "waffle iron", "wall clock", "wallet", "wardrobe", "military aircraft", "sink", "washing machine", "water bottle", "water jug", "water tower", "whiskey jug", "whistle", "wig", "window screen", "window shade", "Windsor tie", "wine bottle", "wing", "wok", "wooden spoon", "wool", "split-rail fence", "shipwreck", "yawl", "yurt", "website", "comic book", "crossword", "traffic sign", "traffic light", "dust jacket", "menu", "plate", "guacamole", "consomme", "hot pot", "trifle", "ice cream", "ice pop", "baguette", "bagel", "pretzel", "cheeseburger", "hot dog", "mashed potato", "cabbage", "broccoli", "cauliflower", "zucchini", "spaghetti squash", "acorn squash", "butternut squash", "cucumber", "artichoke", "bell pepper", "cardoon", "mushroom", "Granny Smith", "strawberry", "orange", "lemon", "fig", "pineapple", "banana", "jackfruit", "custard apple", "pomegranate", "hay", "carbonara", "chocolate syrup", "dough", "meatloaf", "pizza", "pot pie", "burrito", "red wine", "espresso", "cup", "eggnog", "alp", "bubble", "cliff", "coral reef", "geyser", "lakeshore", "promontory", "shoal", "seashore", "valley", "volcano", "baseball player", "bridegroom", "scuba diver", "rapeseed", "daisy", "yellow lady's slipper", "corn", "acorn", "rose hip", "horse chestnut seed", "coral fungus", "agaric", "gyromitra", "stinkhorn mushroom", "earth star", "hen-of-the-woods", "bolete", "ear", "toilet paper"] ================================================ FILE: kerascv/makelist.py ================================================ ''' Use this script to generate a list of all XML files in a folder. ''' from glob import glob files = glob('*.xml') with open('xml_list.txt', 'w') as f: for fn in files: f.write("%s\n" % fn) ================================================ FILE: kerascv/pascal2coco.py ================================================ # adapted from https://blog.roboflow.com/how-to-convert-annotations-from-voc-xml-to-coco-json/ import os import argparse import json import xml.etree.ElementTree as ET from typing import Dict, List from tqdm import tqdm import re def get_label2id(labels_path: str) -> Dict[str, int]: """id is 1 start""" with open(labels_path, 'r') as f: labels_str = f.read().split() labels_ids = list(range(0, len(labels_str))) return dict(zip(labels_str, labels_ids)) def get_annpaths(ann_dir_path: str = None, ann_ids_path: str = None, ext: str = '', annpaths_list_path: str = None) -> List[str]: # If use annotation paths list if annpaths_list_path is not None: with open(annpaths_list_path, 'r') as f: ann_paths = f.read().split() return ann_paths # If use annotaion ids list ext_with_dot = '.' + ext if ext != '' else '' with open(ann_ids_path, 'r') as f: ann_ids = f.read().split() ann_paths = [os.path.join(ann_dir_path, aid+ext_with_dot) for aid in ann_ids] return ann_paths def get_image_info(annotation_root, extract_num_from_imgid=True): path = annotation_root.findtext('path') if path is None: filename = annotation_root.findtext('filename') else: filename = os.path.basename(path) img_name = os.path.basename(filename) img_id = os.path.splitext(img_name)[0] if extract_num_from_imgid and isinstance(img_id, str): img_id = int(re.findall(r'\d+', img_id)[0]) size = annotation_root.find('size') width = int(size.findtext('width')) height = int(size.findtext('height')) image_info = { 'file_name': filename, 'height': height, 'width': width, 'id': img_id } return image_info def get_coco_annotation_from_obj(obj, label2id): label = obj.findtext('name') assert label in label2id, f"Error: {label} is not in label2id !" category_id = label2id[label] bndbox = obj.find('bndbox') xmin = int(bndbox.findtext('xmin')) - 1 ymin = int(bndbox.findtext('ymin')) - 1 xmax = int(bndbox.findtext('xmax')) ymax = int(bndbox.findtext('ymax')) assert xmax > xmin and ymax > ymin, f"Box size error !: (xmin, ymin, xmax, ymax): {xmin, ymin, xmax, ymax}" o_width = xmax - xmin o_height = ymax - ymin ann = { 'area': o_width * o_height, 'iscrowd': 0, 'bbox': [xmin, ymin, o_width, o_height], 'category_id': category_id, 'ignore': 0, 'segmentation': [] # This script is not for segmentation } return ann def convert_xmls_to_cocojson(annotation_paths: List[str], label2id: Dict[str, int], output_jsonpath: str, extract_num_from_imgid: bool = True): output_json_dict = { "images": [], "type": "instances", "annotations": [], "categories": [] } bnd_id = 1 # START_BOUNDING_BOX_ID, TODO input as args ? print('Start converting !') for a_path in tqdm(annotation_paths): # Read annotation xml ann_tree = ET.parse(a_path) ann_root = ann_tree.getroot() img_info = get_image_info(annotation_root=ann_root, extract_num_from_imgid=extract_num_from_imgid) img_id = img_info['id'] output_json_dict['images'].append(img_info) for obj in ann_root.findall('object'): ann = get_coco_annotation_from_obj(obj=obj, label2id=label2id) ann.update({'image_id': img_id, 'id': bnd_id}) output_json_dict['annotations'].append(ann) bnd_id = bnd_id + 1 for label, label_id in label2id.items(): category_info = {'supercategory': 'none', 'id': label_id, 'name': label} output_json_dict['categories'].append(category_info) with open(output_jsonpath, 'w') as f: output_json = json.dumps(output_json_dict) f.write(output_json) def main(): parser = argparse.ArgumentParser( description='This script support converting voc format xmls to coco format json') parser.add_argument('--ann_dir', type=str, default=None, help='path to annotation files directory. It is not need when use --ann_paths_list') parser.add_argument('--ann_ids', type=str, default=None, help='path to annotation files ids list. It is not need when use --ann_paths_list') parser.add_argument('--ann_paths_list', type=str, default=None, help='path of annotation paths list. It is not need when use --ann_dir and --ann_ids') parser.add_argument('--labels', type=str, default=None, help='path to label list.') parser.add_argument('--output', type=str, default='output.json', help='path to output json file') parser.add_argument('--ext', type=str, default='', help='additional extension of annotation file') args = parser.parse_args() label2id = get_label2id(labels_path=args.labels) ann_paths = get_annpaths( ann_dir_path=args.ann_dir, ann_ids_path=args.ann_ids, ext=args.ext, annpaths_list_path=args.ann_paths_list ) convert_xmls_to_cocojson( annotation_paths=ann_paths, label2id=label2id, output_jsonpath=args.output, extract_num_from_imgid=True ) if __name__ == '__main__': main() ================================================ FILE: linear_algebra/WHERE ARE THE NOTEBOOKS.txt ================================================ As stated in the "where to get the code" / "where to get the notebooks" lecture, the notebooks are NOT on Github. If you missed this, please review the lecture for the actual location of the notebooks. If, after reviewing it, you still need assistance, please contact info@deeplearningcourses.com. ================================================ FILE: linear_algebra/extra_reading.txt ================================================ Introduction to Linear Algebra by Gilbert Strang https://amzn.to/2G3bvW1 Still Don't Understand Gravity? This Will Help - this is included not because it's about calculus, but because it's yet another educator explaining why practice is important https://www.youtube.com/watch?v=cP2uVarXi1A ================================================ FILE: linear_regression_class/data_1d.csv ================================================ 95.724162408,197.179636092 35.7576189281,67.5906695414 28.8168474238,60.8541328206 99.9584813087,196.907396981 66.8097483121,125.311128524 58.2156926413,115.785784589 53.8210763379,110.762772705 81.2960821704,157.98528569 80.6486970595,159.61941373 78.2528136925,149.003865539 16.8634836868,31.4675908827 90.799147557,184.185219661 53.312737012,103.220610158 71.6187890238,143.271818357 18.4105917769,46.7364180117 57.124346762,107.123794204 81.1346839164,168.309374007 82.0152554217,166.82994267 36.924908251,70.5014555898 44.5871260438,96.8693702549 26.662354456,50.3732358383 74.065057115,145.519170708 17.7405767273,46.5518746077 6.8197438189,13.2437863094 26.3173600923,62.5006665037 82.8041190512,159.916649576 39.446536962,77.9842041485 76.7281205911,147.269183138 42.2158561432,83.6452954011 94.3585758425,191.956072692 42.141785126,91.7327341584 3.21124860748,8.2514167727 6.8856734002,16.0963894188 13.8757721557,33.3544421438 63.2974036434,131.505745533 60.4925193638,128.698843062 79.6072852308,160.310380503 83.4443630603,160.603245737 54.8920701084,104.400293158 62.0459441682,126.969456046 66.6537579409,124.519167614 61.3198131584,125.217414427 47.3195529929,98.7194843794 81.1509876011,166.432455477 91.0215136709,179.236872614 16.8434620066,33.7772337402 76.5064365659,161.372965132 71.8657046789,138.575401004 9.84808948357,17.9033282786 35.7897124122,74.1085917146 35.8886919974,74.8213229656 90.8294487116,179.241547046 7.26207283678,6.43437237688 35.359288168,78.086356791 79.0792537554,154.591789763 21.5534583299,50.0307538993 79.4764277802,165.441966192 48.7679666405,110.897287971 54.7938620084,114.691885107 87.5035255175,186.744206306 38.9491304682,70.6972229828 9.39561282267,19.1790300473 11.1211868171,27.022959917 46.1355582629,87.2924492169 85.6975735819,167.924614121 50.1102964028,96.0205484441 11.0736667277,24.9463246457 22.2281308507,54.0041458755 67.5539548043,133.165254434 12.7871856602,28.0062232213 46.9654908412,100.605589468 4.84854064839,13.8572726025 40.5373319344,82.5906629412 26.3304612748,50.2318039097 38.8847263526,79.4817724245 93.8382665331,191.324317836 60.0816599704,120.495115436 50.1139652204,111.352322885 17.7186852835,44.9376064869 85.0730311421,172.133203076 41.3215097262,84.889236 35.45154709,69.9189912445 74.0210255434,149.778646331 90.5197211027,187.593909745 34.5405970412,66.326858951 94.5616621258,189.144964109 52.9562678505,103.44683588 80.1064364142,158.529430067 49.822757583,98.6988396336 61.7817253103,122.647395062 60.2861083596,124.763346322 77.3206901868,155.67749312 15.6463587542,35.4106082545 71.5406183401,151.323458712 62.4523981129,129.43395879 79.0598323714,163.096902614 72.1976934443,142.898522638 71.4177534183,148.09420854 31.0088200801,63.7968762483 40.3252822158,86.7236853299 ================================================ FILE: linear_regression_class/data_2d.csv ================================================ 17.9302012052,94.5205919533,320.259529602 97.1446971852,69.5932819844,404.634471526 81.7759007845,5.73764809688,181.485107741 55.8543424175,70.3259016768,321.773638018 49.3665499855,75.1140401571,322.465485583 3.19270246506,29.2562988631,94.6188108954 49.2007840582,86.1444385075,356.348092747 21.882803904,46.8415051959,181.653769226 79.5098627219,87.397355535,423.557743194 88.1538874975,65.2056419279,369.229245443 60.7438543399,99.9576339008,427.605803661 67.4155819451,50.3683096094,292.471821553 48.3181157719,99.1289531425,395.529811407 28.8299719729,87.1849488537,319.031348455 43.853742664,64.4736390798,287.4281441 25.3136940868,83.5452942552,292.768908839 10.807726675,45.6955685904,159.663307674 98.365745882,82.6973935253,438.798963866 29.1469099692,66.3651067611,250.986309034 65.1003018959,33.3538834975,231.711507921 24.6441134909,39.5400527406,163.398160832 37.5598048804,1.34572784158,83.4801551365 88.1645062351,95.1536625708,466.265805791 13.8346208354,25.494048204,100.886430268 64.4108437467,77.2598381277,365.641048062 68.925991798,97.4536007955,426.140015493 39.4884422375,50.8561281903,235.532389457 52.4631776831,59.7765096878,283.291640318 48.4847869797,66.9703542227,298.581440375 8.06208781377,98.2426001448,309.234108782 32.7318877149,18.8535355289,129.610139015 11.6523787962,66.2645117418,224.150542091 13.7303535349,70.4725091314,235.305665631 8.18555176536,41.8519894198,153.484189455 53.6098761481,94.560121637,394.939444253 95.3686098922,47.2955069599,336.126738879 87.3336092062,93.8039343271,449.363351987 66.3576110919,81.8475512843,387.014816485 19.7547175302,65.5233009197,240.389441595 21.1334404504,47.4371819938,177.14828058 22.37386481,25.9556275364,119.61125795 93.9904040537,0.127890520058,196.716166657 86.7201980995,18.413766785,236.260808358 98.9983729904,60.2312656882,384.381344695 3.59396564372,96.2522173231,293.237183045 15.1023633732,92.5569035696,304.890882807 97.8341407695,2.02390810433,201.293598424 19.9382196923,46.7782734632,170.610093035 30.3735111369,58.7775251616,242.373484227 73.2928831485,67.6696277593,353.082991304 52.2309008804,81.9024482531,348.725688557 86.4295761137,66.5402275975,365.959970954 93.4008021441,18.0752459352,235.472381633 13.213460059,91.4888587787,300.606878255 4.59346270394,46.3359315158,145.818745251 15.6692915825,35.5437439971,138.880334695 52.9593597724,68.7202096086,317.163707741 56.8175212312,47.5727319202,254.903631301 51.1335430813,78.0421674552,334.5843335 7.86216471526,17.7290817759,69.3555888141 54.6986037014,92.7445841407,386.859937239 86.3990630133,41.8886945857,294.871713576 11.9475060186,42.9613867358,156.754219545 70.3584010648,83.7062345104,391.806135291 29.0223663255,84.327783082,319.310462851 42.7594799067,97.4933260814,376.291589478 96.2156564389,25.8342825832,280.617043873 53.2277276552,27.9055085669,194.430465068 30.3609896715,0.939644215313,69.6488631767 83.2775653897,73.1793485695,384.597184993 30.1876924786,7.1465385989,89.5390083986 11.7884184617,51.6977608445,181.550682802 18.2924240117,61.9779760484,224.773382884 96.7126676927,9.0291015125,219.567093701 31.0127386947,78.2833824603,298.490216481 11.3972607536,61.728693243,199.944044715 17.3925557906,4.24114086314,43.9156923531 72.1826937267,34.5390721676,256.068378234 73.980020785,3.71649343826,159.372580639 94.4930583509,88.41719702,447.132703621 84.5628207335,20.2411621935,233.078829579 51.7424739723,11.009747964,131.070179635 53.7485903953,60.0251022958,298.814332704 85.0508347563,95.7369969538,451.80352299 46.7772504514,90.2022062395,368.366435952 49.7584341737,52.834494361,254.706774007 24.1192565017,42.1028107802,168.308432759 27.2015764537,29.9787492892,146.34226 7.00959616769,55.876058392,176.810148976 97.6469496688,8.14762512696,219.16028041 1.38298250945,84.9440869198,252.905652954 22.3235303534,27.5150750402,127.570478844 45.0454062325,93.5204022248,375.822340339 40.1639914677,0.161699234822,80.3890193252 53.182739793,8.17031616228,142.718183077 46.4567791559,82.000170914,336.876154384 77.1303006946,95.1887594549,438.460586127 68.600607572,72.5711807231,355.900286918 41.6938871165,69.241125973,284.834636711 4.1426693978,52.2547263792,168.034400947 ================================================ FILE: linear_regression_class/data_poly.csv ================================================ 76.7007086033,663.797275569 95.2735441552,1014.3622816 73.0957232493,618.938826916 46.9516354572,288.012877367 33.3137480056,144.977555864 58.8001284334,412.327812022 86.4775958313,844.415014024 26.1438291437,89.351909563 97.6793058523,1053.20525097 43.7453159626,240.908778383 27.3960599569,115.936712225 97.7709380144,1034.55054041 0.477748646463,3.44508498982 45.8230852085,254.058885722 54.8058554165,353.273447055 90.1526491199,926.945048811 7.25055401942,30.7577367238 45.32559552,241.735203861 78.0299288822,692.797188617 56.9992954919,382.995647161 94.0058295504,978.718285869 26.9031773559,98.2290062278 23.0527128171,84.9785703587 72.1620607036,584.521550996 99.03856132,1082.25149734 3.8567282135,5.37807424483 29.1370660814,122.013630198 86.1406581482,841.297543579 30.6637414672,131.606512241 45.7038082016,267.357505947 20.8365297577,52.1846807158 57.1870229314,388.795855138 35.6458427285,155.657694842 19.3869531878,87.1260781016 21.9669393722,83.7232155716 68.2754384479,530.711261039 0.0499320826943,14.4928408734 88.0160403117,843.24850174 52.302680128,340.811945309 30.8083679391,128.066959237 36.7450495784,172.783502591 32.497674786,147.228458255 69.2984401147,538.180640028 8.50775977301,18.1584427007 70.340432818,559.410466793 57.5800635973,384.884606047 88.4806455787,875.860995014 18.4605500858,58.9483005575 55.8041981373,376.843030927 16.4395710474,24.9459291843 11.5900497701,32.6626606312 46.8705089511,262.885902286 84.33492545,798.336107587 47.0879172063,278.115426472 25.3595168427,104.171319469 57.5279893076,411.579592637 64.1988259571,471.645130755 4.21211019461,-4.60107066464 54.0943345308,363.848079875 74.1390699605,634.232884203 73.6494046203,614.61698055 36.128161214,165.31378043 52.0563603735,326.302161959 47.1946296354,282.326194483 38.4175210129,199.427772234 54.6207713889,349.23680114 64.7683580294,489.500982377 84.4005467356,805.013871913 21.4404800201,67.0955374565 73.2615461079,611.057504623 20.1698478817,69.446653099 31.4337548498,138.906777891 12.5179786376,48.9516001981 3.61761195371,5.32627355217 81.2515736807,731.3845794 56.8424497509,378.289439943 82.2665238066,748.343138324 37.4722110019,175.748739041 84.6946340015,800.047623475 39.7685020685,203.056324686 2.05616850915,6.23518914756 97.1247091279,1042.6919584 31.1291991206,130.113663552 84.6126409599,790.864163252 85.9561287143,827.455642687 80.9652012247,738.33866824 88.8979965529,893.81365673 58.3641047494,402.882690162 50.3024480011,314.117036852 12.7419734701,12.9681174938 77.320666256,687.654958048 98.9646405094,1089.94766197 56.3266253207,372.340305154 79.8360680928,722.043849621 84.2993047538,798.10497093 45.3458596295,251.755172506 3.13987798949,4.26261828882 70.1062835334,550.923455067 80.3106828908,728.06984768 72.0680436903,581.130210853 ================================================ FILE: linear_regression_class/gd.py ================================================ import matplotlib.pyplot as plt lr = 1e-2 x1 = 5 x2 = -5 def J(x1, x2): return x1**2 + x2**4 def g1(x1): return 2*x1 def g2(x2): return 4*x2**3 values = [] for i in range(1000): values.append(J(x1, x2)) x1 -= lr * g1(x1) x2 -= lr * g2(x2) values.append(J(x1, x2)) print(x1, x2) plt.plot(values) plt.show() ================================================ FILE: linear_regression_class/generate_1d.py ================================================ # generates 1-dimensional data for linear regression analysis # # notes for this course can be found at: # https://deeplearningcourses.com/c/data-science-linear-regression-in-python # https://www.udemy.com/data-science-linear-regression-in-python from __future__ import print_function, division from builtins import range # Note: you may need to update your version of future # sudo pip install -U future import numpy as np N = 100 with open('data_1d.csv', 'w') as f: X = np.random.uniform(low=0, high=100, size=N) Y = 2*X + 1 + np.random.normal(scale=5, size=N) for i in range(N): f.write("%s,%s\n" % (X[i], Y[i])) ================================================ FILE: linear_regression_class/generate_2d.py ================================================ # generates 2-dimensional data for linear regression analysis # # notes for this course can be found at: # https://deeplearningcourses.com/c/data-science-linear-regression-in-python # https://www.udemy.com/data-science-linear-regression-in-python from __future__ import print_function, division from builtins import range # Note: you may need to update your version of future # sudo pip install -U future import numpy as np N = 100 w = np.array([2, 3]) with open('data_2d.csv', 'w') as f: X = np.random.uniform(low=0, high=100, size=(N,2)) Y = np.dot(X, w) + 1 + np.random.normal(scale=5, size=N) for i in range(N): f.write("%s,%s,%s\n" % (X[i,0], X[i,1], Y[i])) ================================================ FILE: linear_regression_class/generate_poly.py ================================================ # generates 1-dimensional polynomial data for linear regression analysis # # notes for this course can be found at: # https://deeplearningcourses.com/c/data-science-linear-regression-in-python # https://www.udemy.com/data-science-linear-regression-in-python from __future__ import print_function, division from builtins import range # Note: you may need to update your version of future # sudo pip install -U future import numpy as np N = 100 with open('data_poly.csv', 'w') as f: X = np.random.uniform(low=0, high=100, size=N) X2 = X*X Y = 0.1*X2 + X + 3 + np.random.normal(scale=10, size=N) for i in range(N): f.write("%s,%s\n" % (X[i], Y[i])) ================================================ FILE: linear_regression_class/gradient_descent.py ================================================ # notes for this course can be found at: # https://deeplearningcourses.com/c/data-science-linear-regression-in-python # https://www.udemy.com/data-science-linear-regression-in-python from __future__ import print_function, division from builtins import range # Note: you may need to update your version of future # sudo pip install -U future import numpy as np import matplotlib.pyplot as plt N = 10 D = 3 X = np.zeros((N, D)) X[:,0] = 1 # bias term X[:5,1] = 1 X[5:,2] = 1 Y = np.array([0]*5 + [1]*5) # print X so you know what it looks like print("X:", X) # won't work! # w = np.linalg.solve(X.T.dot(X), X.T.dot(Y)) # let's try gradient descent costs = [] # keep track of squared error cost w = np.random.randn(D) / np.sqrt(D) # randomly initialize w learning_rate = 0.001 for t in range(1000): # update w Yhat = X.dot(w) delta = Yhat - Y w = w - learning_rate*X.T.dot(delta) # find and store the cost mse = delta.dot(delta) / N costs.append(mse) # plot the costs plt.plot(costs) plt.show() print("final w:", w) # plot prediction vs target plt.plot(Yhat, label='prediction') plt.plot(Y, label='target') plt.legend() plt.show() ================================================ FILE: linear_regression_class/l1_regularization.py ================================================ # notes for this course can be found at: # https://deeplearningcourses.com/c/data-science-linear-regression-in-python # https://www.udemy.com/data-science-linear-regression-in-python from __future__ import print_function, division from builtins import range # Note: you may need to update your version of future # sudo pip install -U future import numpy as np import matplotlib.pyplot as plt N = 50 D = 50 # uniformly distributed numbers between -5, +5 X = (np.random.random((N, D)) - 0.5)*10 # true weights - only the first 3 dimensions of X affect Y true_w = np.array([1, 0.5, -0.5] + [0]*(D - 3)) # generate Y - add noise Y = X.dot(true_w) + np.random.randn(N)*0.5 # perform gradient descent to find w costs = [] # keep track of squared error cost w = np.random.randn(D) / np.sqrt(D) # randomly initialize w learning_rate = 0.001 l1 = 10.0 # Also try 5.0, 2.0, 1.0, 0.1 - what effect does it have on w? for t in range(500): # update w Yhat = X.dot(w) delta = Yhat - Y w = w - learning_rate*(X.T.dot(delta) + l1*np.sign(w)) # find and store the cost mse = delta.dot(delta) / N costs.append(mse) # plot the costs plt.plot(costs) plt.show() print("final w:", w) # plot our w vs true w plt.plot(true_w, label='true w') plt.plot(w, label='w_map') plt.legend() plt.show() ================================================ FILE: linear_regression_class/l2_regularization.py ================================================ # demonstration of L2 regularization # # notes for this course can be found at: # https://deeplearningcourses.com/c/data-science-linear-regression-in-python # https://www.udemy.com/data-science-linear-regression-in-python from __future__ import print_function, division from builtins import range # Note: you may need to update your version of future # sudo pip install -U future import numpy as np import matplotlib.pyplot as plt N = 50 # generate the data X = np.linspace(0,10,N) Y = 0.5*X + np.random.randn(N) # make outliers Y[-1] += 30 Y[-2] += 30 # plot the data plt.scatter(X, Y) plt.show() # add bias term X = np.vstack([np.ones(N), X]).T # plot the maximum likelihood solution w_ml = np.linalg.solve(X.T.dot(X), X.T.dot(Y)) Yhat_ml = X.dot(w_ml) plt.scatter(X[:,1], Y) plt.plot(X[:,1], Yhat_ml) plt.show() # plot the regularized solution # probably don't need an L2 regularization this high in many problems # everything in this example is exaggerated for visualization purposes l2 = 1000.0 w_map = np.linalg.solve(l2*np.eye(2) + X.T.dot(X), X.T.dot(Y)) Yhat_map = X.dot(w_map) plt.scatter(X[:,1], Y) plt.plot(X[:,1], Yhat_ml, label='maximum likelihood') plt.plot(X[:,1], Yhat_map, label='map') plt.legend() plt.show() ================================================ FILE: linear_regression_class/lr_1d.py ================================================ # shows how linear regression analysis can be applied to 1-dimensional data # # notes for this course can be found at: # https://deeplearningcourses.com/c/data-science-linear-regression-in-python # https://www.udemy.com/data-science-linear-regression-in-python from __future__ import print_function, division from builtins import range # Note: you may need to update your version of future # sudo pip install -U future import numpy as np import matplotlib.pyplot as plt # load the data X = [] Y = [] for line in open('data_1d.csv'): x, y = line.split(',') X.append(float(x)) Y.append(float(y)) # let's turn X and Y into numpy arrays since that will be useful later X = np.array(X) Y = np.array(Y) # let's plot the data to see what it looks like plt.scatter(X, Y) plt.show() # apply the equations we learned to calculate a and b # denominator is common # note: this could be more efficient if # we only computed the sums and means once denominator = X.dot(X) - X.mean() * X.sum() a = ( X.dot(Y) - Y.mean()*X.sum() ) / denominator b = ( Y.mean() * X.dot(X) - X.mean() * X.dot(Y) ) / denominator # let's calculate the predicted Y Yhat = a*X + b # let's plot everything together to make sure it worked plt.scatter(X, Y) plt.plot(X, Yhat) plt.show() # determine how good the model is by computing the r-squared d1 = Y - Yhat d2 = Y - Y.mean() r2 = 1 - d1.dot(d1) / d2.dot(d2) print("the r-squared is:", r2) ================================================ FILE: linear_regression_class/lr_2d.py ================================================ # shows how linear regression analysis can be applied to 2-dimensional data # # notes for this course can be found at: # https://deeplearningcourses.com/c/data-science-linear-regression-in-python # https://www.udemy.com/data-science-linear-regression-in-python from __future__ import print_function, division from builtins import range # Note: you may need to update your version of future # sudo pip install -U future import numpy as np from mpl_toolkits.mplot3d import Axes3D import matplotlib.pyplot as plt # load the data X = [] Y = [] for line in open('data_2d.csv'): x1, x2, y = line.split(',') X.append([float(x1), float(x2), 1]) # add the bias term Y.append(float(y)) # let's turn X and Y into numpy arrays since that will be useful later X = np.array(X) Y = np.array(Y) # let's plot the data to see what it looks like fig = plt.figure() ax = fig.add_subplot(111, projection='3d') ax.scatter(X[:,0], X[:,1], Y) plt.show() # apply the equations we learned to calculate a and b # numpy has a special method for solving Ax = b # so we don't use x = inv(A)*b # note: the * operator does element-by-element multiplication in numpy # np.dot() does what we expect for matrix multiplication w = np.linalg.solve(np.dot(X.T, X), np.dot(X.T, Y)) Yhat = np.dot(X, w) # determine how good the model is by computing the r-squared d1 = Y - Yhat d2 = Y - Y.mean() r2 = 1 - d1.dot(d1) / d2.dot(d2) print("the r-squared is:", r2) ================================================ FILE: linear_regression_class/lr_poly.py ================================================ # shows how linear regression analysis can be applied to polynomial data # # notes for this course can be found at: # https://deeplearningcourses.com/c/data-science-linear-regression-in-python # https://www.udemy.com/data-science-linear-regression-in-python from __future__ import print_function, division from builtins import range # Note: you may need to update your version of future # sudo pip install -U future import numpy as np import matplotlib.pyplot as plt # load the data X = [] Y = [] for line in open('data_poly.csv'): x, y = line.split(',') x = float(x) X.append([1, x, x*x]) # add the bias term x0 = 1 # our model is therefore y_hat = w0 + w1 * x + w2 * x**2 Y.append(float(y)) # let's turn X and Y into numpy arrays since that will be useful later X = np.array(X) Y = np.array(Y) # let's plot the data to see what it looks like plt.scatter(X[:,1], Y) plt.title("The data we're trying to fit") plt.show() # apply the equations we learned to calculate a and b # numpy has a special method for solving Ax = b # so we don't use x = inv(A)*b # note: the * operator does element-by-element multiplication in numpy # np.dot() does what we expect for matrix multiplication w = np.linalg.solve(np.dot(X.T, X), np.dot(X.T, Y)) # let's plot everything together to make sure it worked plt.scatter(X[:,1], Y) # to plot our quadratic model predictions, let's # create a line of x's and calculate the predicted y's x_line = np.linspace(X[:,1].min(), X[:,1].max()) y_line = w[0] + w[1] * x_line + w[2] * x_line * x_line plt.plot(x_line, y_line) plt.title("Our fitted quadratic") plt.show() # determine how good the model is by computing the r-squared Yhat = X.dot(w) d1 = Y - Yhat d2 = Y - Y.mean() r2 = 1 - d1.dot(d1) / d2.dot(d2) print("the r-squared is:", r2) ================================================ FILE: linear_regression_class/moore.csv ================================================ Intel 4004 2,300 1971 Intel 10,000 nm 12 mm² Intel 8008 3,500 1972 Intel 10,000 nm 14 mm² Intel 8080 4,500 1974 Intel 6,000 nm 20 mm² Motorola 6800 4,100 1974 Motorola 6,000 nm 16 mm² RCA 1802 5,000 1974 RCA 5,000 nm 27 mm² TMS 1000 8,000 1974[7] Texas Instruments 8,000 nm MOS Technology 6502 3,510[8] 1975 MOS Technology 8,000 nm 21 mm² Intel 8085 6,500 1976 Intel 3,000 nm 20 mm² Zilog Z80 8,500 1976 Zilog 4,000 nm 18 mm² Intel 8086 29,000 1978 Intel 3,000 nm 33 mm² Motorola 6809 9,000 1978 Motorola 5,000 nm 21 mm² Intel 8088 29,000 1979 Intel 3,000 nm 33 mm² Motorola 68000 68,000 1979 Motorola 3,500 nm 44 mm² WDC 65C02 11,500[9] 1981 WDC 3,000 nm 6 mm² Intel 80186 55,000 1982 Intel 3,000 nm 60 mm² Intel 80286 134,000 1982 Intel 1,500 nm 49 mm² WDC 65C816 22,000[10] 1983 WDC 9 mm² Motorola 68020 190,000[11] 1984 Motorola 2,000 nm 85 mm² ARM 1 25,000[11] 1985 Acorn 3,000 nm 50 mm² Intel 80386 275,000 1985 Intel 1,500 nm 104 mm² Novix NC4016 16,000[12] 1985[13] Harris Corporation 3,000 nm[14] ARM 2 30,000[11] 1986 Acorn 2,000 nm 30 mm² TI Explorer's 32-bit Lisp machine chip 553,000[15] 1987 Texas Instruments DEC WRL MultiTitan 180,000[16] 1988 DEC WRL 1,500 nm 61 mm² Intel i960 250,000[17] 1988 Intel 600 nm ARM 3 300,000 1989 Acorn Intel 80486 1,180,235 1989 Intel 1000 nm 173 mm² ARM 6 35,000 1991 ARM R4000 1,350,000 1991 MIPS 1,000 nm 213 mm² Pentium 3,100,000 1993 Intel 800 nm 294 mm² ARM700 578,977[18] 1994 ARM 68.51 mm² Pentium Pro 5,500,000[19] 1995 Intel 500 nm 307 mm² SA-110 2,500,000[11] 1995 Acorn/DEC/Apple 350 nm 50 mm² AMD K5 4,300,000 1996 AMD 500 nm 251 mm² AMD K6 8,800,000 1997 AMD 350 nm 162 mm² Pentium II Klamath 7,500,000 1997 Intel 350 nm 195 mm² Pentium II Deschutes 7,500,000 1998 Intel 250 nm 113 mm² AMD K6-III 21,300,000 1999 AMD 250 nm 118 mm² AMD K7 22,000,000 1999 AMD 250 nm 184 mm² ARM 9TDMI 111,000[11] 1999 Acorn 350 nm 4.8 mm² Pentium II Mobile Dixon 27,400,000 1999 Intel 180 nm 180 mm² Pentium III Katmai 9,500,000 1999 Intel 250 nm 128 mm² Pentium 4 Willamette 42,000,000 2000 Intel 180 nm 217 mm² Pentium III Coppermine 21,000,000 2000 Intel 180 nm 80 mm² Pentium III Tualatin 45,000,000 2001 Intel 130 nm 81 mm² Itanium 2 McKinley 220,000,000 2002 Intel 180 nm 421 mm² Pentium 4 Northwood 55,000,000 2002 Intel 130 nm 145 mm² AMD K8 105,900,000 2003 AMD 130 nm 193 mm² Barton 54,300,000 2003 AMD 130 nm 101 mm² Itanium 2 Madison 6M 410,000,000 2003 Intel 130 nm 374 mm² Itanium 2 with 9 MB cache 592,000,000 2004 Intel 130 nm 432 mm² Pentium 4 Prescott 112,000,000 2004 Intel 90 nm 110 mm² Pentium 4 Prescott-2M 169,000,000 2005 Intel 90 nm 143 mm² Pentium D Smithfield 228,000,000 2005 Intel 90 nm 206 mm² Cell 241,000,000 2006 Sony/IBM/Toshiba 90 nm 221 mm² Core 2 Duo Conroe 291,000,000 2006 Intel 65 nm 143 mm² Dual-core Itanium 2 1,700,000,000[26] 2006 Intel 90 nm 596 mm² Pentium 4 Cedar Mill 184,000,000 2006 Intel 65 nm 90 mm² Pentium D Presler 362,000,000 2006 Intel 65 nm 162 mm² AMD K10 quad-core 2M L3 463,000,000[20] 2007 AMD 65 nm 283 mm² ARM Cortex-A9 26,000,000[21] 2007 ARM 45 nm 31 mm² Core 2 Duo Allendale 169,000,000 2007 Intel 65 nm 111 mm² Core 2 Duo Wolfdale 411,000,000 2007 Intel 45 nm 107 mm² POWER6 789,000,000 2007 IBM 65 nm 341 mm² AMD K10 quad-core 6M L3 758,000,000[20] 2008 AMD 45 nm 258 mm² Atom 47,000,000 2008 Intel 45 nm 24 mm² Core 2 Duo Wolfdale 3M 230,000,000 2008 Intel 45 nm 83 mm² Core i7 (Quad) 731,000,000 2008 Intel 45 nm 263 mm² Six-core Xeon 7400 1,900,000,000 2008 Intel 45 nm 503 mm² Six-core Opteron 2400 904,000,000 2009 AMD 45 nm 346 mm² 16-core SPARC T3 1,000,000,000[22] 2010 Sun/Oracle 40 nm 377 mm² 8-core POWER7 32M L3 1,200,000,000 2010 IBM 45 nm 567 mm² 8-core Xeon Nehalem-EX 2,300,000,000[30] 2010 Intel 45 nm 684 mm² Quad-core Itanium Tukwila 2,000,000,000[28] 2010 Intel 65 nm 699 mm² Quad-core z196[24] 1,400,000,000 2010 IBM 45 nm 512 mm² Six-core Core i7 (Gulftown) 1,170,000,000 2010 Intel 32 nm 240 mm² 10-core Xeon Westmere-EX 2,600,000,000 2011 Intel 32 nm 512 mm² Quad-core + GPU Core i7 1,160,000,000 2011 Intel 32 nm 216 mm² Six-core Core i7/8-core Xeon E5 (Sandy Bridge-E/EP) 2,270,000,000[29] 2011 Intel 32 nm 434 mm² 61-core Xeon Phi 5,000,000,000[34] 2012 Intel 22 nm 350 mm² 8-core AMD Bulldozer 1,200,000,000[23] 2012 AMD 32 nm 315 mm² 8-core Itanium Poulson 3,100,000,000 2012 Intel 32 nm 544 mm² 8-core POWER7+ 80 MB L3 cache 2,100,000,000 2012 IBM 32 nm 567 mm² Quad-core + GPU AMD Trinity 1,303,000,000 2012 AMD 32 nm 246 mm² Quad-core + GPU Core i7 Ivy Bridge 1,400,000,000 2012 Intel 22 nm 160 mm² Six-core zEC12 2,750,000,000 2012 IBM 32 nm 597 mm² 12-core POWER8 4,200,000,000 2013 IBM 22 nm 650 mm² Apple A7 (dual-core ARM64 "mobile SoC") 1,000,000,000 2013 Apple 28 nm 102 mm² Six-core Core i7 Ivy Bridge E 1,860,000,000 2013 Intel 22 nm 256 mm² Xbox One main SoC 5,000,000,000 2013 Microsoft/AMD 28 nm 363 mm² 15-core Xeon Ivy Bridge-EX 4,310,000,000[33] 2014 Intel 22 nm 541 mm² 18-core Xeon Haswell-E5 5,560,000,000[35] 2014 Intel 22 nm 661 mm² 8-core Core i7 Haswell-E 2,600,000,000[31] 2014 Intel 22 nm 355 mm² Apple A8 (dual-core ARM64 "mobile SoC") 2,000,000,000 2014 Apple 20 nm 89 mm² Apple A8X (tri-core ARM64 "mobile SoC") 3,000,000,000[32] 2014 Apple 20 nm 128 mm² Quad-core + GPU Core i7 Haswell 1,400,000,000[25] 2014 Intel 22 nm 177 mm² Duo-core + GPU Iris Core i7 Broadwell-U 1,900,000,000[27] 2015 Intel 14 nm 133 mm² IBM z13 3,990,000,000 2015 IBM 22 nm 678 mm² IBM z13 Storage Controller 7,100,000,000 2015 IBM 22 nm 678 mm² Quad-core + GPU GT2 Core i7 Skylake K cca 1,750,000,000 2015 Intel 14 nm 122 mm² SPARC M7 10,000,000,000[37] 2015 Oracle 20 nm 22-core Xeon Broadwell-E5 ~7,200,000,000[36] 2016 Intel 14 nm 456 mm² ================================================ FILE: linear_regression_class/moore.py ================================================ # shows how linear regression analysis can be applied to moore's law # # notes for this course can be found at: # https://deeplearningcourses.com/c/data-science-linear-regression-in-python # https://www.udemy.com/data-science-linear-regression-in-python # transistor count from: https://en.wikipedia.org/wiki/Transistor_count from __future__ import print_function, division from builtins import range # Note: you may need to update your version of future # sudo pip install -U future import re import numpy as np import matplotlib.pyplot as plt X = [] Y = [] # some numbers show up as 1,170,000,000 (commas) # some numbers have references in square brackets after them non_decimal = re.compile(r'[^\d]+') for line in open('moore.csv'): r = line.split('\t') x = int(non_decimal.sub('', r[2].split('[')[0])) y = int(non_decimal.sub('', r[1].split('[')[0])) X.append(x) Y.append(y) X = np.array(X) Y = np.array(Y) plt.scatter(X, Y) plt.show() Y = np.log(Y) plt.scatter(X, Y) plt.show() # copied from lr_1d.py denominator = X.dot(X) - X.mean() * X.sum() a = ( X.dot(Y) - Y.mean()*X.sum() ) / denominator b = ( Y.mean() * X.dot(X) - X.mean() * X.dot(Y) ) / denominator # let's calculate the predicted Y Yhat = a*X + b plt.scatter(X, Y) plt.plot(X, Yhat) plt.show() # determine how good the model is by computing the r-squared d1 = Y - Yhat d2 = Y - Y.mean() r2 = 1 - d1.dot(d1) / d2.dot(d2) print("a:", a, "b:", b) print("the r-squared is:", r2) # how long does it take to double? # log(transistorcount) = a*year + b # transistorcount = exp(b) * exp(a*year) # 2*transistorcount = 2 * exp(b) * exp(a*year) = exp(ln(2)) * exp(b) * exp(a * year) = exp(b) * exp(a * year + ln(2)) # a*year2 = a*year1 + ln2 # year2 = year1 + ln2/a print("time to double:", np.log(2)/a, "years") ================================================ FILE: linear_regression_class/overfitting.py ================================================ # notes for this course can be found at: # https://deeplearningcourses.com/c/data-science-linear-regression-in-python # https://www.udemy.com/data-science-linear-regression-in-python from __future__ import print_function, division from builtins import range # Note: you may need to update your version of future # sudo pip install -U future import numpy as np import matplotlib.pyplot as plt def make_poly(X, deg): n = len(X) data = [np.ones(n)] for d in range(deg): data.append(X**(d+1)) return np.vstack(data).T def fit(X, Y): return np.linalg.solve(X.T.dot(X), X.T.dot(Y)) def fit_and_display(X, Y, sample, deg): N = len(X) train_idx = np.random.choice(N, sample) Xtrain = X[train_idx] Ytrain = Y[train_idx] plt.scatter(Xtrain, Ytrain) plt.show() # fit polynomial Xtrain_poly = make_poly(Xtrain, deg) w = fit(Xtrain_poly, Ytrain) # display the polynomial X_poly = make_poly(X, deg) Y_hat = X_poly.dot(w) plt.plot(X, Y) plt.plot(X, Y_hat) plt.scatter(Xtrain, Ytrain) plt.title("deg = %d" % deg) plt.show() def get_mse(Y, Yhat): d = Y - Yhat return d.dot(d) / len(d) def plot_train_vs_test_curves(X, Y, sample=20, max_deg=20): N = len(X) train_idx = np.random.choice(N, sample) Xtrain = X[train_idx] Ytrain = Y[train_idx] test_idx = [idx for idx in range(N) if idx not in train_idx] # test_idx = np.random.choice(N, sample) Xtest = X[test_idx] Ytest = Y[test_idx] mse_trains = [] mse_tests = [] for deg in range(max_deg+1): Xtrain_poly = make_poly(Xtrain, deg) w = fit(Xtrain_poly, Ytrain) Yhat_train = Xtrain_poly.dot(w) mse_train = get_mse(Ytrain, Yhat_train) Xtest_poly = make_poly(Xtest, deg) Yhat_test = Xtest_poly.dot(w) mse_test = get_mse(Ytest, Yhat_test) mse_trains.append(mse_train) mse_tests.append(mse_test) plt.plot(mse_trains, label="train mse") plt.plot(mse_tests, label="test mse") plt.legend() plt.show() plt.plot(mse_trains, label="train mse") plt.legend() plt.show() if __name__ == "__main__": # make up some data and plot it N = 100 X = np.linspace(0, 6*np.pi, N) Y = np.sin(X) plt.plot(X, Y) plt.show() for deg in (5, 6, 7, 8, 9): fit_and_display(X, Y, 10, deg) plot_train_vs_test_curves(X, Y) ================================================ FILE: linear_regression_class/systolic.py ================================================ # https://deeplearningcourses.com/c/data-science-linear-regression-in-python # need to sudo pip install xlrd to use pd.read_excel # data is from: # http://college.cengage.com/mathematics/brase/understandable_statistics/7e/students/datasets/mlr/frames/mlr02.html # The data (X1, X2, X3) are for each patient. # X1 = systolic blood pressure # X2 = age in years # X3 = weight in pounds from __future__ import print_function, division from builtins import range # Note: you may need to update your version of future # sudo pip install -U future import matplotlib.pyplot as plt import numpy as np import pandas as pd df = pd.read_excel('mlr02.xls', engine='xlrd') X = df.values # using age to predict systolic blood pressure plt.scatter(X[:,1], X[:,0]) plt.show() # looks pretty linear! # using weight to predict systolic blood pressure plt.scatter(X[:,2], X[:,0]) plt.show() # looks pretty linear! df['ones'] = 1 Y = df['X1'] X = df[['X2', 'X3', 'ones']] X2only = df[['X2', 'ones']] X3only = df[['X3', 'ones']] def get_r2(X, Y): w = np.linalg.solve( X.T.dot(X), X.T.dot(Y) ) Yhat = X.dot(w) # determine how good the model is by computing the r-squared d1 = Y - Yhat d2 = Y - Y.mean() r2 = 1 - d1.dot(d1) / d2.dot(d2) return r2 print("r2 for x2 only:", get_r2(X2only, Y)) print("r2 for x3 only:", get_r2(X3only, Y)) print("r2 for both:", get_r2(X, Y)) ================================================ FILE: logistic_regression_class/bad_xor.py ================================================ # logisitc regression classifier for the XOR problem. # # the notes for this class can be found at: # https://deeplearningcourses.com/c/data-science-logistic-regression-in-python # https://www.udemy.com/data-science-logistic-regression-in-python from __future__ import print_function, division from builtins import range # Note: you may need to update your version of future # sudo pip install -U future import numpy as np import matplotlib.pyplot as plt N = 4 D = 2 # XOR X = np.array([ [0, 0], [0, 1], [1, 0], [1, 1], ]) T = np.array([0, 1, 1, 0]) # add a column of ones ones = np.ones((N, 1)) # add a column of xy = x*y Xb = np.concatenate((ones, X), axis=1) # randomly initialize the weights w = np.random.randn(D + 1) # calculate the model output z = Xb.dot(w) def sigmoid(z): return 1/(1 + np.exp(-z)) Y = sigmoid(z) # calculate the cross-entropy error def cross_entropy(T, Y): return -(T*np.log(Y) + (1-T)*np.log(1-Y)).sum() # let's do gradient descent 100 times learning_rate = 0.001 error = [] w_mags = [] for i in range(100000): e = cross_entropy(T, Y) error.append(e) if i % 1000 == 0: print(e) # gradient descent weight udpate with regularization w += learning_rate * Xb.T.dot(T - Y) w_mags.append(w.dot(w)) # recalculate Y Y = sigmoid(Xb.dot(w)) plt.plot(error) plt.title("Cross-entropy per iteration") plt.show() plt.plot(w_mags) plt.title("w^2 magnitudes") plt.show() print("Final w:", w) print("Final classification rate:", 1 - np.abs(T - np.round(Y)).sum() / N) ================================================ FILE: logistic_regression_class/l1_regularization.py ================================================ # notes for this course can be found at: # https://deeplearningcourses.com/c/data-science-logistic-regression-in-python # https://www.udemy.com/data-science-logistic-regression-in-python from __future__ import print_function, division from builtins import range # Note: you may need to update your version of future # sudo pip install -U future import numpy as np from mpl_toolkits.mplot3d import Axes3D import matplotlib.pyplot as plt def sigmoid(z): return 1/(1 + np.exp(-z)) N = 50 D = 50 # uniformly distributed numbers between -5, +5 X = (np.random.random((N, D)) - 0.5)*10 # X = (np.random.randn(N, D) - 0.5)*10 # true weights - only the first 3 dimensions of X affect Y true_w = np.array([1, 0.5, -0.5] + [0]*(D - 3)) # generate Y - add noise with variance 0.5 Y = np.round(sigmoid(X.dot(true_w) + np.random.randn(N)*0.5)) # let's plot the data to see what it looks like fig = plt.figure() ax = fig.add_subplot(111, projection='3d') ax.scatter(X[:,0], X[:,1], X[:,2], c=Y) plt.show() # perform gradient descent to find w costs = [] # keep track of squared error cost w = np.random.randn(D) / np.sqrt(D) # randomly initialize w learning_rate = 0.001 l1 = 3.0 # try different values - what effect does it have on w? for t in range(5000): # update w Yhat = sigmoid(X.dot(w)) delta = Yhat - Y w = w - learning_rate*(X.T.dot(delta) + l1*np.sign(w)) # find and store the cost cost = -(Y*np.log(Yhat) + (1-Y)*np.log(1 - Yhat)).mean() + l1*np.abs(w).mean() costs.append(cost) # plot the costs plt.plot(costs) plt.show() print("final w:", w) # plot our w vs true w plt.plot(true_w, label='true w') plt.plot(w, label='w_map') plt.legend() plt.show() ================================================ FILE: logistic_regression_class/logistic1.py ================================================ # demonstrates how to calculate the output of a logistic unit using numpy. # the data X and weight matrix w are randomly generated from a # standard normal distribution. # # the notes for this class can be found at: # https://deeplearningcourses.com/c/data-science-logistic-regression-in-python # https://www.udemy.com/data-science-logistic-regression-in-python from __future__ import print_function, division from builtins import range # Note: you may need to update your version of future # sudo pip install -U future import numpy as np N = 100 D = 2 X = np.random.randn(N,D) # ones = np.array([[1]*N]).T # old ones = np.ones((N, 1)) Xb = np.concatenate((ones, X), axis=1) w = np.random.randn(D + 1) z = Xb.dot(w) def sigmoid(z): return 1/(1 + np.exp(-z)) print(sigmoid(z)) ================================================ FILE: logistic_regression_class/logistic2.py ================================================ # demonstrates how to calculate the cross-entropy error function # in numpy. # # the notes for this class can be found at: # https://deeplearningcourses.com/c/data-science-logistic-regression-in-python # https://www.udemy.com/data-science-logistic-regression-in-python from __future__ import print_function, division from builtins import range # Note: you may need to update your version of future # sudo pip install -U future import numpy as np N = 100 D = 2 X = np.random.randn(N,D) # center the first 50 points at (-2,-2) X[:50,:] = X[:50,:] - 2*np.ones((50,D)) # center the last 50 points at (2, 2) X[50:,:] = X[50:,:] + 2*np.ones((50,D)) # labels: first 50 are 0, last 50 are 1 T = np.array([0]*50 + [1]*50) # add a column of ones # ones = np.array([[1]*N]).T # old ones = np.ones((N, 1)) Xb = np.concatenate((ones, X), axis=1) # randomly initialize the weights w = np.random.randn(D + 1) # calculate the model output z = Xb.dot(w) def sigmoid(z): return 1/(1 + np.exp(-z)) Y = sigmoid(z) # calculate the cross-entropy error def cross_entropy(T, Y): E = 0 for i in range(len(T)): if T[i] == 1: E -= np.log(Y[i]) else: E -= np.log(1 - Y[i]) return E print(cross_entropy(T, Y)) # try it with our closed-form solution w = np.array([0, 4, 4]) # calculate the model output z = Xb.dot(w) Y = sigmoid(z) # calculate the cross-entropy error print(cross_entropy(T, Y)) ================================================ FILE: logistic_regression_class/logistic3.py ================================================ # demonstrates how to do gradient descent with numpy matrices. # # the notes for this class can be found at: # https://deeplearningcourses.com/c/data-science-logistic-regression-in-python # https://www.udemy.com/data-science-logistic-regression-in-python from __future__ import print_function, division from builtins import range # Note: you may need to update your version of future # sudo pip install -U future import numpy as np import matplotlib.pyplot as plt N = 100 D = 2 N_per_class = N//2 X = np.random.randn(N,D) # center the first 50 points at (-2,-2) X[:N_per_class,:] = X[:N_per_class,:] - 2*np.ones((N_per_class,D)) # center the last 50 points at (2, 2) X[N_per_class:,:] = X[N_per_class:,:] + 2*np.ones((N_per_class,D)) # labels: first N_per_class are 0, last N_per_class are 1 T = np.array([0]*N_per_class + [1]*N_per_class) # add a column of ones # ones = np.array([[1]*N]).T # old ones = np.ones((N, 1)) Xb = np.concatenate((ones, X), axis=1) # randomly initialize the weights w = np.random.randn(D + 1) # calculate the model output z = Xb.dot(w) def sigmoid(z): return 1/(1 + np.exp(-z)) Y = sigmoid(z) # calculate the cross-entropy error def cross_entropy(T, Y): E = 0 for i in range(len(T)): if T[i] == 1: E -= np.log(Y[i]) else: E -= np.log(1 - Y[i]) return E # let's do gradient descent 100 times learning_rate = 0.1 for i in range(100): if i % 10 == 0: print(cross_entropy(T, Y)) # gradient descent weight udpate w += learning_rate * Xb.T.dot(T - Y) # recalculate Y Y = sigmoid(Xb.dot(w)) print("Final w:", w) # plot the data and separating line plt.scatter(X[:,0], X[:,1], c=T, s=100, alpha=0.5) x_axis = np.linspace(-6, 6, 100) y_axis = -(w[0] + x_axis*w[1]) / w[2] plt.plot(x_axis, y_axis) plt.show() ================================================ FILE: logistic_regression_class/logistic4.py ================================================ # demonstrates how to do gradient descent with numpy matrices, # with regularization. # # the notes for this class can be found at: # https://deeplearningcourses.com/c/data-science-logistic-regression-in-python # https://www.udemy.com/data-science-logistic-regression-in-python from __future__ import print_function, division from builtins import range # Note: you may need to update your version of future # sudo pip install -U future import numpy as np N = 100 D = 2 X = np.random.randn(N,D) # center the first 50 points at (-2,-2) X[:50,:] = X[:50,:] - 2*np.ones((50,D)) # center the last 50 points at (2, 2) X[50:,:] = X[50:,:] + 2*np.ones((50,D)) # labels: first 50 are 0, last 50 are 1 T = np.array([0]*50 + [1]*50) # add a column of ones # ones = np.array([[1]*N]).T ones = np.ones((N, 1)) Xb = np.concatenate((ones, X), axis=1) # randomly initialize the weights w = np.random.randn(D + 1) # calculate the model output z = Xb.dot(w) def sigmoid(z): return 1/(1 + np.exp(-z)) Y = sigmoid(z) # calculate the cross-entropy error def cross_entropy(T, Y): E = 0 for i in range(len(T)): if T[i] == 1: E -= np.log(Y[i]) else: E -= np.log(1 - Y[i]) return E # let's do gradient descent 100 times learning_rate = 0.1 for i in range(100): if i % 10 == 0: print(cross_entropy(T, Y)) # gradient descent weight udpate with regularization w += learning_rate * ( Xb.T.dot(T - Y) - 0.1*w ) # recalculate Y Y = sigmoid(Xb.dot(w)) print("Final w:", w) ================================================ FILE: logistic_regression_class/logistic_donut.py ================================================ # logisitc regression classifier for the donut problem. # # the notes for this class can be found at: # https://deeplearningcourses.com/c/data-science-logistic-regression-in-python # https://www.udemy.com/data-science-logistic-regression-in-python from __future__ import print_function, division from builtins import range # Note: you may need to update your version of future # sudo pip install -U future import numpy as np import matplotlib.pyplot as plt N = 1000 D = 2 R_inner = 5 R_outer = 10 # distance from origin is radius + random normal # angle theta is uniformly distributed between (0, 2pi) R1 = np.random.randn(N//2) + R_inner theta = 2*np.pi*np.random.random(N//2) X_inner = np.concatenate([[R1 * np.cos(theta)], [R1 * np.sin(theta)]]).T R2 = np.random.randn(N//2) + R_outer theta = 2*np.pi*np.random.random(N//2) X_outer = np.concatenate([[R2 * np.cos(theta)], [R2 * np.sin(theta)]]).T X = np.concatenate([ X_inner, X_outer ]) T = np.array([0]*(N//2) + [1]*(N//2)) # labels: first 50 are 0, last 50 are 1 plt.scatter(X[:,0], X[:,1], c=T) plt.show() # add a column of ones # ones = np.array([[1]*N]).T # old ones = np.ones((N, 1)) # add a column of r = sqrt(x^2 + y^2) r = np.sqrt( (X * X).sum(axis=1) ).reshape(-1, 1) Xb = np.concatenate((ones, r, X), axis=1) # randomly initialize the weights w = np.random.randn(D + 2) # calculate the model output z = Xb.dot(w) def sigmoid(z): return 1/(1 + np.exp(-z)) Y = sigmoid(z) # calculate the cross-entropy error def cross_entropy(T, Y): return -(T*np.log(Y) + (1-T)*np.log(1-Y)).sum() # let's do gradient descent 100 times learning_rate = 0.0001 error = [] for i in range(5000): e = cross_entropy(T, Y) error.append(e) if i % 500 == 0: print(e) # gradient descent weight udpate with regularization w += learning_rate * ( Xb.T.dot(T - Y) - 0.1*w ) # recalculate Y Y = sigmoid(Xb.dot(w)) plt.plot(error) plt.title("Cross-entropy per iteration") plt.show() print("Final w:", w) print("Final classification rate:", 1 - np.abs(T - np.round(Y)).sum() / N) ================================================ FILE: logistic_regression_class/logistic_visualize.py ================================================ # visualizes the Bayes solution # # the notes for this class can be found at: # https://deeplearningcourses.com/c/data-science-logistic-regression-in-python # https://www.udemy.com/data-science-logistic-regression-in-python from __future__ import print_function, division from builtins import range # Note: you may need to update your version of future # sudo pip install -U future import numpy as np import matplotlib.pyplot as plt N = 100 D = 2 X = np.random.randn(N,D) # center the first 50 points at (-2,-2) X[:50,:] = X[:50,:] - 2*np.ones((50,D)) # center the last 50 points at (2, 2) X[50:,:] = X[50:,:] + 2*np.ones((50,D)) # labels: first 50 are 0, last 50 are 1 T = np.array([0]*50 + [1]*50) # add a column of ones # ones = np.array([[1]*N]).T ones = np.ones((N, 1)) Xb = np.concatenate((ones, X), axis=1) def sigmoid(z): return 1/(1 + np.exp(-z)) # get the closed-form solution w = np.array([0, 4, 4]) # calculate the model output z = Xb.dot(w) Y = sigmoid(z) plt.scatter(X[:,0], X[:,1], c=T, s=100, alpha=0.5) x_axis = np.linspace(-6, 6, 100) y_axis = -x_axis plt.plot(x_axis, y_axis) plt.show() ================================================ FILE: logistic_regression_class/logistic_xor.py ================================================ # logisitc regression classifier for the XOR problem. # # the notes for this class can be found at: # https://deeplearningcourses.com/c/data-science-logistic-regression-in-python # https://www.udemy.com/data-science-logistic-regression-in-python from __future__ import print_function, division from builtins import range # Note: you may need to update your version of future # sudo pip install -U future import numpy as np import matplotlib.pyplot as plt N = 4 D = 2 # XOR X = np.array([ [0, 0], [0, 1], [1, 0], [1, 1], ]) T = np.array([0, 1, 1, 0]) # add a column of ones # ones = np.array([[1]*N]).T ones = np.ones((N, 1)) # add a column of xy = x*y xy = (X[:,0] * X[:,1]).reshape(N, 1) Xb = np.concatenate((ones, xy, X), axis=1) # randomly initialize the weights w = np.random.randn(D + 2) # calculate the model output z = Xb.dot(w) def sigmoid(z): return 1/(1 + np.exp(-z)) Y = sigmoid(z) # calculate the cross-entropy error def cross_entropy(T, Y): E = 0 for i in range(len(T)): if T[i] == 1: E -= np.log(Y[i]) else: E -= np.log(1 - Y[i]) return E # let's do gradient descent 100 times learning_rate = 0.01 error = [] for i in range(10000): e = cross_entropy(T, Y) error.append(e) if i % 1000 == 0: print(e) # gradient descent weight udpate with regularization w += learning_rate * ( Xb.T.dot(T - Y) - 0.01*w ) # recalculate Y Y = sigmoid(Xb.dot(w)) plt.plot(error) plt.title("Cross-entropy per iteration") plt.show() print("Final w:", w) print("Final classification rate:", 1 - np.abs(T - np.round(Y)).sum() / N) ================================================ FILE: matrix_calculus/extra_reading.txt ================================================ The Matrix Cookbook https://www.math.uwaterloo.ca/~hwolkowi/matrixcookbook.pdf ================================================ FILE: mnist_csv/Q.txt ================================================ 3.2092e-17,-1.0408e-17,3.4694e-18,-2.4286e-17,-1.7347e-18,-1.2143e-17,-3.4694e-18,-4.9873e-18,-1.8215e-17,3.4694e-18,2.4286e-17,2.0817e-17,2.4286e-17,4.6838e-17,-2.3094e-17,3.296e-17,1.7347e-18,1.7347e-17,3.708e-17,1.3444e-17 1.816e-18,-1.0842e-19,-4.3368e-19,-5.9631e-19,-2.1684e-19,-4.3368e-19,8.6736e-19,-4.8789e-19,-2.7105e-19,-2.1684e-19,1.1926e-18,5.6921e-19,8.6736e-19,1.1384e-18,-2.3378e-19,4.8789e-19,5.15e-19,6.5052e-19,8.0638e-19,7.4539e-20 3.1225e-17,0,3.4694e-18,-1.301e-17,1.1276e-17,-5.2042e-18,-3.4694e-18,-1.1709e-17,-5.2042e-18,-1.3878e-17,1.3878e-17,1.2143e-17,1.8215e-17,2.6455e-17,-1.0354e-17,4.3368e-18,-9.541e-18,6.9389e-18,1.3227e-17,3.6863e-18 1.5829e-17,4.3368e-18,-6.0715e-18,-7.3726e-18,4.7705e-18,-3.4694e-18,3.4694e-18,-3.6863e-18,-3.0358e-18,-6.0715e-18,1.1276e-17,8.6736e-19,1.1818e-17,6.5052e-18,-3.5508e-18,3.9031e-18,8.6736e-19,3.4694e-18,1.4583e-17,2.5479e-18 9.541e-17,2.0817e-17,8.6736e-18,-2.2551e-17,1.0408e-17,0,4.5103e-17,-1.7347e-17,-1.7347e-18,-1.7347e-17,4.8572e-17,-8.6736e-18,2.4286e-17,5.3776e-17,-2.1901e-17,0,-8.6736e-18,3.4694e-17,4.8572e-17,1.0408e-17 1.1796e-16,5.8981e-17,-3.1225e-17,-2.7756e-17,4.5103e-17,-3.8164e-17,3.4694e-17,-2.1684e-18,-1.5613e-17,-1.0408e-17,6.245e-17,1.3878e-17,2.2551e-17,7.4593e-17,-3.1876e-17,-1.0408e-17,5.2042e-18,1.0408e-17,7.7629e-17,4.6404e-17 5.2042e-17,3.1225e-17,-2.6021e-17,-1.3878e-17,8.6736e-18,-1.3878e-17,2.0817e-17,-1.5613e-17,8.6736e-19,8.6736e-18,4.1633e-17,2.4286e-17,4.8139e-17,6.4185e-17,-1.648e-17,-6.9389e-18,-2.949e-17,0,6.8955e-17,3.9031e-18 1.0408e-16,1.3878e-17,-6.9389e-18,-4.8572e-17,3.1225e-17,-1.7347e-17,6.9389e-18,2.6021e-18,-2.7756e-17,-1.3878e-17,9.7145e-17,1.0408e-17,5.7246e-17,6.9389e-17,-6.9931e-17,3.4694e-18,1.0408e-17,-1.7347e-17,6.1583e-17,8.6736e-18 6.1583e-17,3.1225e-17,-2.7756e-17,-2.6021e-17,2.2551e-17,-1.5613e-17,2.7756e-17,-5.3776e-17,-1.1276e-17,-1.7347e-17,3.1225e-17,1.3878e-17,4.5536e-17,4.5103e-17,-4.429e-17,1.0408e-17,1.1276e-17,3.4694e-18,3.5562e-17,7.8063e-18 5.6379e-17,3.4694e-18,5.2042e-18,-5.2042e-18,1.9082e-17,-1.3878e-17,2.4286e-17,-3.4694e-18,-1.9082e-17,-1.7347e-17,2.7756e-17,-1.7347e-18,4.5103e-17,8.3267e-17,-2.678e-17,8.6736e-18,6.9389e-18,3.4694e-17,6.1149e-17,7.3726e-18 7.0256e-17,1.3878e-17,-8.6736e-18,-2.949e-17,6.9389e-18,-1.7347e-18,-1.3878e-17,-3.4694e-18,-3.1225e-17,-8.6736e-18,5.5511e-17,3.4694e-17,2.472e-17,5.3776e-17,-4.7163e-18,1.7347e-17,-6.9389e-18,-3.4694e-18,4.4886e-17,-3.0358e-18 2.1684e-17,2.0817e-17,-2.4286e-17,6.9389e-18,-1.5613e-17,-6.9389e-18,1.7347e-17,-1.9516e-17,-1.9949e-17,-1.3878e-17,5.8981e-17,1.4745e-17,4.7705e-18,5.3776e-17,-6.142e-17,-1.3878e-17,-1.8215e-17,1.3878e-17,5.5511e-17,1.1926e-17 9.4558e-07,1.5393e-06,-3.3601e-07,-7.7021e-06,-1.2422e-06,2.392e-06,-3.8105e-06,1.8838e-06,-1.8036e-06,5.6665e-06,-3.079e-06,2.2444e-06,3.8633e-06,3.5416e-06,1.7515e-06,-7.5881e-06,8.9441e-06,-1.931e-05,8.2533e-07,1.2333e-05 3.7237e-06,5.1964e-06,4.7208e-06,-2.9399e-05,-4.898e-06,2.1689e-07,-1.5798e-05,1.2156e-05,-3.4351e-06,5.6052e-06,-6.7451e-06,-5.5274e-06,-1.5854e-05,-9.8858e-07,1.1223e-06,-2.5559e-05,3.1186e-05,-4.0592e-05,1.8497e-06,3.2885e-05 1.8397e-06,2.0319e-06,6.0721e-06,-1.3948e-05,-2.4236e-06,-5.5872e-06,-8.2949e-06,8.9373e-06,5.7204e-07,-7.5698e-06,-3.5951e-09,-1.162e-05,-2.7056e-05,-9.7299e-06,-3.0189e-06,-9.9527e-06,1.2911e-05,1.8799e-06,4.7322e-08,6.5434e-06 7.6656e-08,8.4663e-08,2.5301e-07,-5.8117e-07,-1.0098e-07,-2.328e-07,-3.4562e-07,3.7239e-07,2.3835e-08,-3.1541e-07,-1.4979e-10,-4.8416e-07,-1.1273e-06,-4.0541e-07,-1.2579e-07,-4.1469e-07,5.3795e-07,7.8328e-08,1.9717e-09,2.7264e-07 5.8981e-17,3.1225e-17,-2.7756e-17,-1.2143e-17,2.2551e-17,0,5.8981e-17,-9.1073e-18,-3.4694e-17,3.4694e-18,5.5511e-17,1.0408e-17,3.9031e-17,5.7246e-17,-2.3636e-17,-1.9082e-17,3.4694e-18,0,5.9631e-17,5.2042e-18 1.648e-17,1.0408e-17,-8.6736e-18,-3.4694e-18,3.4694e-18,-6.0715e-18,6.9389e-18,-3.5779e-18,-6.5052e-18,-5.6379e-18,1.301e-17,3.6863e-18,1.4962e-17,1.4311e-17,3.0764e-18,-2.1684e-18,5.421e-18,7.8063e-18,1.4691e-17,-2.0058e-18 3.5562e-17,3.6429e-17,-1.3878e-17,-1.2143e-17,-5.2042e-18,-2.7756e-17,2.4286e-17,-2.2551e-17,-3.0358e-17,-1.0408e-17,4.1633e-17,1.9949e-17,2.3852e-17,5.4644e-17,-2.1684e-17,6.9389e-18,-8.6736e-18,2.4286e-17,3.4911e-17,-1.0842e-17 8.8471e-17,1.0408e-17,-1.2143e-17,-2.7756e-17,3.1225e-17,1.5613e-17,-3.4694e-18,-1.3444e-17,-1.9949e-17,-6.9389e-18,4.1633e-17,2.2551e-17,4.2934e-17,3.6429e-17,-1.6155e-17,1.7347e-18,3.4694e-18,6.9389e-18,3.6429e-17,2.1684e-19 4.8572e-17,2.4286e-17,-3.1225e-17,6.9389e-18,1.0408e-17,-1.3878e-17,1.0408e-17,-3.0358e-18,-5.5511e-17,-2.0817e-17,3.4694e-17,2.0817e-17,3.9899e-17,7.6328e-17,-4.7163e-17,1.0408e-17,2.949e-17,3.8164e-17,7.8496e-17,1.2577e-17 2.7756e-17,1.3878e-17,-1.7347e-18,-8.6736e-18,3.4694e-18,0,1.7347e-18,-2.1034e-17,-2.0817e-17,-8.6736e-18,3.8164e-17,7.8063e-18,2.5587e-17,3.296e-17,-8.1857e-18,3.4694e-18,-3.4694e-18,1.5613e-17,2.8406e-17,4.12e-18 6.0715e-18,8.6736e-18,-6.9389e-18,-8.6736e-18,-8.6736e-19,-2.6021e-18,2.0817e-17,-1.0842e-18,-7.8063e-18,7.8063e-18,1.3878e-17,1.9949e-17,2.0166e-17,1.6914e-17,-1.4664e-17,0,-8.6736e-19,5.2042e-18,1.854e-17,6.2884e-18 1.5396e-17,8.6736e-18,-1.1709e-17,-4.7705e-18,5.6379e-18,0,0,1.9516e-18,-4.7705e-18,-2.1684e-18,1.8215e-17,4.7705e-18,1.1709e-17,1.8215e-17,-5.5294e-18,-8.6736e-19,2.6021e-18,7.8063e-18,1.442e-17,5.9631e-18 9.7145e-17,1.3878e-17,-3.4694e-17,-6.9389e-18,3.4694e-18,0,6.245e-17,-1.4311e-17,-2.7756e-17,-1.3878e-17,5.5511e-17,3.6429e-17,4.0766e-17,7.8063e-17,-3.7513e-17,-2.0817e-17,1.3878e-17,2.4286e-17,8.2616e-17,2.3852e-17 1.0842e-17,2.4286e-17,-6.9389e-18,-2.6021e-18,1.2143e-17,-1.5613e-17,1.7347e-17,-1.301e-17,-2.0817e-17,5.2042e-18,2.949e-17,6.9389e-18,1.713e-17,3.2092e-17,-4.0658e-18,1.2143e-17,1.2577e-17,8.6736e-18,3.1767e-17,4.12e-18 2.3419e-17,2.4286e-17,2.6021e-18,-8.6736e-18,7.8063e-18,-6.0715e-18,1.7347e-17,-4.5536e-18,-1.301e-17,-3.4694e-18,1.9082e-17,8.6736e-19,1.713e-17,3.5996e-17,-1.1953e-17,6.0715e-18,-3.9031e-18,1.7347e-17,2.9382e-17,4.12e-18 4.4235e-17,1.0408e-17,-1.2143e-17,-6.9389e-18,-3.4694e-18,-4.3368e-17,3.8164e-17,-5.2042e-18,-2.7756e-17,-1.7347e-17,5.5511e-17,-2.6021e-18,1.5179e-17,4.4235e-17,-3.1984e-17,-1.7347e-18,7.8063e-18,2.0817e-17,5.3126e-17,5.421e-18 1.0235e-16,3.4694e-18,-3.4694e-18,-3.4694e-18,1.7347e-17,-3.4694e-18,-1.0408e-17,-1.6046e-17,-2.0817e-17,-5.5511e-17,1.3878e-17,-2.4286e-17,4.4235e-17,7.9797e-17,-2.9816e-17,2.0817e-17,-1.2143e-17,2.0817e-17,6.9389e-17,1.301e-17 2.9057e-17,-3.4694e-18,-7.8063e-18,-1.5613e-17,0,-1.5613e-17,1.5613e-17,-1.1493e-17,-1.2143e-17,-1.5613e-17,2.0817e-17,1.2143e-17,2.4286e-17,3.1225e-17,-1.1493e-17,-4.3368e-18,4.3368e-18,8.6736e-18,2.949e-17,1.4962e-17 6.245e-17,1.7347e-17,-2.0817e-17,-2.4286e-17,1.2143e-17,-1.0408e-17,3.8164e-17,2.6021e-18,-1.9082e-17,3.4694e-18,9.7145e-17,1.7347e-17,6.3317e-17,7.4593e-17,-4.8789e-18,1.0408e-17,-3.4694e-18,0,4.8572e-17,2.2551e-17 1.0755e-16,1.3878e-17,-4.5103e-17,0,4.5103e-17,3.4694e-18,1.3878e-17,-1.5613e-17,-5.3776e-17,-3.8164e-17,4.8572e-17,2.949e-17,5.8113e-17,7.9797e-17,-6.4185e-17,-6.9389e-18,1.2143e-17,5.2042e-17,9.5843e-17,1.3878e-17 -2.1682e-07,2.9086e-07,3.6303e-07,-1.1535e-06,-1.8115e-07,4.6438e-07,4.1527e-07,-1.172e-06,3.252e-07,1.1138e-06,-1.0605e-06,3.1162e-07,8.6617e-08,1.4199e-06,-6.5463e-07,-1.4448e-06,1.9363e-06,-4.0945e-07,-2.0885e-07,-1.2971e-07 -4.2949e-07,1.8537e-06,2.6433e-06,-6.8212e-06,-7.4008e-08,1.2162e-06,-1.8705e-08,-1.5101e-06,2.3485e-06,3.4867e-06,-6.2165e-07,-1.6838e-06,7.9668e-07,2.5052e-06,8.019e-07,-4.9243e-06,8.0626e-06,-4.4588e-06,-2.2379e-06,4.7958e-06 -4.8771e-06,2.6279e-05,9.2442e-06,-6.295e-05,5.1859e-06,7.4684e-06,-7.2934e-06,3.4582e-05,3.7787e-06,2.011e-05,3.3817e-05,-8.9671e-06,-2.1872e-06,2.1183e-05,2.7768e-05,-5.2313e-08,1.3214e-05,-5.2695e-05,4.2265e-05,0.00011135 -1.6523e-05,5.4818e-05,7.4125e-06,-0.00013048,3.977e-06,1.487e-05,6.6511e-06,5.0042e-05,-1.4884e-05,4.9848e-05,4.62e-05,3.4598e-05,-2.1395e-07,7.318e-05,2.0765e-05,-1.7611e-06,4.9614e-06,-9.4206e-05,0.00011309,0.00021976 -2.2036e-05,6.54e-05,1.4371e-05,-0.00024202,8.5524e-06,-1.8275e-05,3.8465e-05,4.1038e-05,-7.4541e-05,5.1857e-05,6.3584e-05,0.00016255,8.0749e-05,8.2561e-05,9.4712e-06,-5.5962e-05,2.8982e-06,-0.00017337,9.67e-05,0.00027038 -3.8881e-05,8.662e-05,3.2369e-05,-0.00035924,1.8752e-06,-4.7243e-05,9.5654e-05,2.2114e-05,-0.00011134,6.9696e-05,6.1764e-05,0.00027448,0.00016372,0.00012518,-8.439e-06,-9.1992e-05,-1.2406e-05,-0.00025926,8.0666e-05,0.00039411 -7.4061e-05,0.00017687,7.0769e-05,-0.00067223,-2.7825e-05,-3.3701e-07,0.00017443,2.8238e-06,-0.00014546,0.00018377,2.5636e-05,0.00044307,0.00026658,0.00031377,-2.3375e-05,-7.5962e-05,2.1503e-05,-0.00074343,0.00024743,0.00082037 -8.8325e-05,0.00027049,0.00011082,-0.0009405,-6.4961e-05,5.9466e-05,0.00023148,-1.2666e-05,-7.272e-05,0.0003696,-0.0001303,0.00050483,0.00035898,0.00052213,4.2785e-05,-0.00012057,0.00026226,-0.0011484,0.00031678,0.001117 -8.085e-05,0.00031474,0.00016061,-0.0009904,-0.00011415,0.00017601,0.00022838,-7.9603e-05,8.502e-05,0.00049433,-0.00026795,0.00042999,0.00049001,0.00063392,-4.8875e-05,-7.8786e-05,0.00051482,-0.0014358,0.00022778,0.0010911 -8.9569e-05,0.00026941,0.00017392,-0.00094822,-0.00016202,0.00034293,0.00018235,-0.0002501,0.00020399,0.0004832,-0.00038576,0.00023487,0.00042567,0.00069791,-0.00025257,-0.00012161,0.00068233,-0.0015544,0.00039986,0.000778 -0.00010618,0.00024655,0.00022569,-0.0010318,-0.00012965,0.00038161,0.00020166,-0.00029601,0.00028776,0.00036849,-0.00041289,0.00013425,0.00032203,0.00071863,-0.00032305,-0.00021043,0.00081215,-0.0015045,0.00027446,0.00058911 -7.936e-05,0.00019886,0.00026045,-0.00086178,-9.6092e-05,0.00036957,0.00018004,-0.00025401,0.000337,0.0002397,-0.00041598,-2.7506e-05,0.00017898,0.00056894,-0.00033995,-0.0003056,0.00078531,-0.0010681,-0.00013203,0.00037082 -3.6081e-05,0.00015445,0.00030575,-0.00072382,-9.6212e-05,0.00038898,9.8166e-05,-0.00019087,0.00025646,9.5089e-05,-0.00033509,-0.00019667,-5.7139e-05,0.00033237,-0.00036728,-0.00037254,0.00048665,-0.00064902,-0.00029296,0.00031738 -3.0809e-05,0.00012703,0.00031423,-0.00057665,-0.0001235,0.00044282,7.7847e-05,-0.00015924,0.00018129,5.4624e-05,-0.0001119,-0.00034837,-2.5702e-05,0.00021978,-0.0002295,-0.0004278,0.00032479,-0.00032261,-0.00027244,0.00031149 -2.3908e-05,7.4661e-05,0.0002646,-0.0003608,-9.2354e-05,0.00036489,2.7754e-05,-0.00012458,5.706e-06,9.5085e-06,4.0805e-05,-0.0003432,-8.4717e-05,0.00014034,-0.00010444,-0.00032134,0.00018446,-2.4186e-05,-0.00023474,0.00030875 -3.6453e-06,2.9169e-05,0.00020633,-0.0002103,-4.637e-05,0.00027328,-2.7242e-05,1.8374e-05,-9.9519e-05,-5.7079e-05,0.00011224,-0.00026324,-0.00019349,5.5693e-05,-6.4516e-05,-0.00011523,4.8096e-05,2.5818e-05,-0.00026918,0.00042753 2.9419e-06,8.5887e-06,0.00015151,-0.00014158,-3.8743e-05,0.000183,-4.8587e-05,7.3416e-05,-0.00013705,-2.9477e-05,0.00010299,-0.0001286,-0.0001268,4.5137e-06,-1.3056e-05,-0.00011513,2.5383e-05,-2.6551e-05,-0.00027415,0.00035379 -1.8846e-06,3.5586e-06,6.2162e-05,-5.274e-05,-1.7173e-05,4.5584e-05,-3.1743e-05,3.5158e-05,-8.5431e-05,-1.0631e-05,3.5508e-05,-1.2887e-05,-1.6182e-05,-2.0704e-05,1.0515e-05,-7.3243e-05,6.7413e-05,-4.0345e-05,-0.0001264,0.00014453 -1.149e-06,7.9436e-06,2.3528e-05,-3.211e-05,-1.0429e-05,1.7453e-05,-1.1718e-05,2.8133e-07,-2.506e-05,8.2505e-06,1.0615e-05,-1.2727e-05,5.9735e-06,-3.6587e-07,1.1181e-05,-2.8663e-05,3.5227e-05,-2.7116e-05,-2.8681e-05,6.6366e-05 -4.8341e-07,6.1498e-06,1.3849e-06,-1.5017e-05,-4.0423e-06,3.2398e-06,-4.6317e-07,-8.5459e-06,3.3915e-06,1.3685e-05,-5.2949e-06,-6.1513e-06,8.7834e-06,1.5792e-05,2.6029e-06,-5.9935e-07,9.7988e-06,-2.2617e-05,1.4526e-05,2.8321e-05 3.7297e-17,1.5613e-17,-2.0817e-17,1.7347e-18,-8.6736e-19,-2.4286e-17,-1.7347e-18,-7.5894e-18,-6.9389e-18,-5.2042e-18,2.0817e-17,-4.3368e-18,3.2092e-17,3.7297e-17,-1.4583e-17,0,5.2042e-18,2.0817e-17,2.7972e-17,1.0408e-17 5.3776e-17,0,5.2042e-18,-5.2042e-18,1.0408e-17,-1.9082e-17,4.1633e-17,-3.2526e-17,-2.4286e-17,-3.4694e-17,4.5103e-17,8.6736e-18,4.2067e-17,7.4593e-17,6.9389e-18,-1.7347e-18,-6.0715e-18,4.5103e-17,4.1417e-17,1.0842e-17 6.4185e-17,3.4694e-18,-2.6021e-17,-3.6429e-17,1.5613e-17,-1.7347e-17,1.3878e-17,-3.773e-17,-2.0817e-17,-2.0817e-17,2.7756e-17,1.0408e-17,7.1124e-17,6.5919e-17,-2.5804e-17,1.0408e-17,1.0408e-17,1.0408e-17,6.5919e-17,3.9031e-18 4.0766e-17,3.4694e-18,-5.2042e-18,-1.7347e-18,8.6736e-18,-1.7347e-17,3.4694e-17,-1.301e-17,-4.6838e-17,-1.2143e-17,3.4694e-17,0,2.3419e-17,3.7297e-17,-8.0231e-18,1.7347e-17,-8.6736e-19,8.6736e-18,4.5103e-17,-1.301e-18 7.893e-17,6.9389e-18,-3.9899e-17,-8.6736e-18,6.9389e-18,0,1.7347e-17,-1.648e-17,-1.0408e-17,0,4.1633e-17,6.9389e-18,3.5562e-17,6.4185e-17,1.0517e-17,-2.2551e-17,-1.648e-17,6.9389e-18,4.8789e-17,1.9949e-17 1.9949e-17,4.3368e-18,-2.6021e-18,-3.4694e-18,5.2042e-18,-6.0715e-18,8.6736e-18,-5.5294e-18,-5.6379e-18,-3.4694e-18,1.2143e-17,0,1.1384e-17,1.1709e-17,-5.8818e-18,-8.6736e-19,-3.2526e-18,8.6736e-18,1.03e-17,4.8789e-18 -1.7135e-06,-3.493e-08,1.2285e-06,-3.2438e-06,-2.6186e-06,5.8474e-06,2.1984e-07,-4.2756e-06,-2.4312e-06,3.2346e-06,-2.9881e-06,-9.0803e-07,6.4976e-07,2.6952e-06,-1.2291e-07,-1.0999e-05,-5.2643e-07,1.6672e-06,-1.9062e-06,5.73e-07 -9.4241e-07,1.0468e-06,2.2231e-06,-1.0396e-06,1.2542e-06,1.4314e-06,-8.7938e-08,4.3348e-07,-5.1459e-07,1.1775e-06,2.6026e-07,-1.9785e-06,9.2287e-08,-2.3357e-06,-2.609e-06,-6.4799e-07,3.8651e-06,-2.6313e-06,-5.9443e-06,-1.4421e-06 -3.4097e-06,2.3966e-06,1.4276e-05,-2.1686e-05,-6.1561e-06,1.4259e-05,5.1597e-06,4.1401e-06,-1.1108e-05,1.1973e-05,1.8465e-06,-3.2382e-06,-6.4994e-06,1.1697e-06,-6.1577e-06,3.5353e-06,1.9137e-06,-9.1712e-06,7.7326e-07,4.0559e-05 -4.8593e-08,-5.9744e-06,1.848e-05,-4.1434e-05,-1.3323e-05,1.1743e-06,2.5192e-05,1.5777e-05,-9.46e-06,-9.7495e-06,-2.1455e-05,1.0568e-05,-4.8608e-06,3.2096e-06,-1.6407e-05,-2.8341e-05,-6.0181e-06,-5.2978e-06,1.0995e-05,2.1442e-05 -2.8749e-05,3.2931e-05,4.4768e-05,-0.00027144,-6.4075e-07,-1.7466e-05,8.7637e-05,6.2635e-05,-8.1785e-05,3.5823e-05,-1.5472e-05,0.00012427,6.5865e-05,-2.6247e-05,-1.0967e-05,-0.0001701,-0.00013567,-5.5284e-05,0.0001253,0.00022038 -7.3057e-05,0.00013169,6.1189e-05,-0.00069682,1.8922e-05,-3.4838e-05,0.00021229,0.00017172,-0.00023323,0.00015678,2.1313e-05,0.00046974,0.0002195,-3.4112e-05,-3.1361e-05,-0.00025569,-0.00039381,-0.00022565,0.00046178,0.00059005 -0.00017742,0.00021449,0.00012525,-0.0013811,-2.0782e-05,-0.00013216,0.00053861,0.00032989,-0.00057134,0.00025095,8.6796e-05,0.0012031,0.0005907,-3.0213e-05,-0.00015118,-0.0002765,-0.00075845,-0.0005681,0.00084052,0.00090367 -0.00036853,0.00034463,0.00026695,-0.0026541,-0.00011377,-0.00023638,0.0010749,0.0004264,-0.0010352,0.00056402,-0.00012423,0.0025254,0.001322,5.1667e-05,-0.00013708,-0.00016744,-0.0013012,-0.0015189,0.0014065,0.0015367 -0.00057588,0.00067327,0.00043702,-0.0046137,-0.00036736,-0.00013347,0.0017581,0.0003676,-0.0011583,0.0014231,-0.00083284,0.004069,0.0022073,0.00072165,-9.5301e-06,0.00021158,-0.0016409,-0.0036076,0.002546,0.0030018 -0.00094043,0.0010937,0.000691,-0.007033,-0.00094967,0.00046399,0.00258,-0.00023097,-0.00073555,0.0029304,-0.0022842,0.0054454,0.0033718,0.0020128,-0.00032148,0.00097781,-0.0014065,-0.00679,0.0042433,0.0044333 -0.0014556,0.0015255,0.0011574,-0.0095977,-0.0019078,0.0019097,0.0035992,-0.001352,0.00049486,0.0048531,-0.0045096,0.0064916,0.0052584,0.0037851,-0.0015049,0.0013362,-0.00044279,-0.010688,0.0059078,0.0046617 -0.0021348,0.0019225,0.0021903,-0.012019,-0.0033214,0.0047521,0.0048275,-0.0031658,0.0027074,0.0068282,-0.0070187,0.0059852,0.0073449,0.006162,-0.0031489,0.00050456,0.0015375,-0.014188,0.0074704,0.0028932 -0.002645,0.002009,0.0037241,-0.014051,-0.0045815,0.0084288,0.0055981,-0.004891,0.0052676,0.0076767,-0.0086744,0.0037765,0.0086238,0.0081917,-0.0047447,-0.002136,0.0020111,-0.014759,0.0075532,-0.00036129 -0.0027531,0.0016936,0.0055571,-0.014314,-0.0052705,0.011951,0.0055213,-0.0054956,0.0065938,0.0068579,-0.0080451,-0.00026402,0.0074426,0.0079056,-0.0056491,-0.0056509,-4.0012e-05,-0.010866,0.0050788,-0.0028282 -0.0026286,0.0012028,0.0072282,-0.01307,-0.0051094,0.014229,0.0051123,-0.0048644,0.0058209,0.0049862,-0.0056623,-0.0045641,0.004153,0.006035,-0.0050271,-0.0088486,-0.0035634,-0.0039303,0.0005166,-0.0016848 -0.0021671,0.00052215,0.0078072,-0.010618,-0.0043295,0.013964,0.0042899,-0.0033439,0.0029707,0.0022184,-0.0023291,-0.0073329,0.00034941,0.0040952,-0.0031857,-0.0083249,-0.0067289,0.0025383,-0.0027511,0.0026618 -0.0014447,-0.00018448,0.0074201,-0.0076521,-0.0029926,0.011754,0.0028513,-0.00085975,-0.00044435,-0.00019366,0.0004482,-0.0077227,-0.0028101,0.0023983,-0.0014566,-0.0052238,-0.0083351,0.0053961,-0.0052235,0.0075294 -0.00091231,-0.00057395,0.0059895,-0.0049393,-0.0018579,0.0083832,0.0012098,0.00076373,-0.0026834,-0.0014313,0.0012831,-0.0059029,-0.0041489,0.0011508,-0.00069949,-0.0022306,-0.0075379,0.004535,-0.005278,0.0096997 -0.00053545,-0.00049636,0.00383,-0.0026775,-0.00097552,0.0048207,0.0002539,0.0011712,-0.0028363,-0.0013777,0.00080241,-0.0033839,-0.0035103,0.00043922,-0.00062033,-6.8185e-05,-0.0044142,0.0024396,-0.0031516,0.0081419 -0.00023455,-0.00029107,0.0020601,-0.0012607,-0.00049559,0.0023254,-0.00018581,0.00099539,-0.0019453,-0.00092949,0.00046101,-0.0015314,-0.0020524,0.00013223,-0.00061644,0.00057082,-0.0020038,0.0009177,-0.0015337,0.0049416 -0.00010378,-0.0001206,0.0009721,-0.00058654,-0.00019502,0.00098525,-0.00021917,0.00054196,-0.0009894,-0.00048211,0.00019512,-0.00055321,-0.00088196,4.5763e-05,-0.00042064,0.00029646,-0.00079124,0.00023025,-0.0006603,0.0023121 -3.0889e-05,-4.1013e-05,0.00029977,-0.00018945,-5.384e-05,0.00027122,-0.00012386,0.00015177,-0.00031412,-0.00017388,3.477e-05,-0.00011512,-0.00024025,-2.7528e-05,-0.00019174,9.429e-05,-0.00027921,-3.0236e-06,-0.00016464,0.00067728 -8.6771e-06,-1.4758e-05,0.00010816,-6.0795e-05,-3.4086e-05,7.5831e-05,-3.2829e-05,5.1373e-05,-0.00013809,-6.4101e-05,2.7329e-05,-5.2512e-06,-2.3541e-05,-3.7369e-05,-8.6471e-05,6.4354e-05,-2.7778e-05,-7.051e-05,-8.4447e-05,0.00022515 -3.422e-06,-2.1622e-06,2.9175e-05,-1.6844e-05,-1.6544e-05,1.9081e-05,-8.7147e-07,8.7227e-07,-4.0898e-05,-1.6854e-05,1.631e-05,9.2147e-06,1.7181e-05,-1.8434e-05,-2.8769e-05,1.0368e-05,1.8394e-06,-3.6914e-05,-3.7829e-05,4.9095e-05 5.8981e-17,2.4286e-17,-1.2143e-17,-5.2042e-17,2.949e-17,-1.0408e-17,5.5511e-17,1.301e-18,-2.7756e-17,3.4694e-18,-6.9389e-18,1.7347e-17,2.949e-17,8.1532e-17,-2.3636e-17,-8.6736e-18,1.0408e-17,0,4.0983e-17,5.6379e-18 3.2526e-17,0,-6.0715e-18,-9.541e-18,9.541e-18,-2.3419e-17,1.3878e-17,-4.7705e-18,-6.0715e-18,1.7347e-18,3.6429e-17,2.6021e-18,1.9949e-17,2.1684e-17,-1.0625e-17,9.541e-18,2.1684e-18,1.7347e-17,2.4828e-17,4.7705e-18 2.949e-17,2.0817e-17,-1.9082e-17,-3.296e-17,0,-3.4694e-18,-1.7347e-18,-9.9747e-18,-2.6021e-18,-5.2042e-18,2.0817e-17,1.301e-17,3.1659e-17,3.9031e-17,-3.1442e-18,8.6736e-18,0,1.0408e-17,2.537e-17,5.6379e-18 5.7246e-17,2.0817e-17,-5.5511e-17,1.3878e-17,1.0408e-17,-2.0817e-17,5.2042e-17,-1.1276e-17,-2.2551e-17,2.4286e-17,3.4694e-17,2.6021e-17,4.3368e-17,9.0206e-17,-5.4535e-17,2.0817e-17,-5.2042e-18,3.8164e-17,8.717e-17,8.6736e-19 -2.2857e-06,-1.7923e-06,4.4072e-06,-8.0462e-06,-6.4122e-06,1.3683e-05,2.5792e-06,-1.0389e-05,-6.108e-06,4.3468e-06,-4.5149e-06,4.1336e-07,1.8297e-06,6.634e-06,2.7938e-06,-2.4091e-05,-1.7614e-06,8.7451e-06,-5.7018e-06,1.4291e-06 -6.8306e-06,3.3368e-06,1.7061e-05,-8.9902e-06,-1.0292e-06,1.7905e-05,4.3044e-06,8.2782e-06,-8.0587e-06,7.1812e-06,1.2934e-06,-5.7267e-06,-4.0918e-06,-3.6576e-06,-6.0519e-06,-3.3149e-06,1.6788e-05,-1.5345e-05,-4.1278e-05,6.6106e-06 -1.4846e-05,-4.3916e-06,2.1537e-05,-2.3014e-05,1.1662e-05,2.5009e-05,1.1504e-05,1.844e-05,3.8295e-08,-2.3658e-06,-2.4346e-05,-7.6143e-06,-2.0487e-05,-2.5476e-06,-2.3753e-05,-3.5025e-05,-2.4809e-05,1.1387e-05,-3.2409e-05,1.246e-05 -6.331e-05,-4.8134e-05,2.7831e-05,-0.00021086,9.594e-07,2.4551e-05,0.00013918,7.2172e-05,-5.2528e-05,3.5374e-05,-7.6645e-06,0.00010554,8.6509e-06,-0.00012192,-0.00010431,3.7279e-05,-0.00013634,-4.5408e-05,0.00014183,-9.7026e-05 -0.00010524,-0.00017553,6.0538e-05,-0.00081488,-7.8053e-05,-6.1252e-05,0.00053867,0.00033685,-0.00024543,-1.5123e-06,5.7608e-05,0.00050359,0.00010854,-0.00049777,-0.00022268,1.0567e-05,-0.00053401,-0.00017591,0.00072169,-0.00025042 -0.00021978,-0.00036129,0.00018502,-0.0021567,-0.00031873,-0.00012975,0.0013288,0.00095238,-0.00074386,0.00010442,5.9435e-05,0.0015697,0.00041307,-0.0013217,-0.00039517,0.00013856,-0.0016055,-0.000669,0.0020415,-0.00035231 -0.00051859,-0.00086848,0.00050848,-0.0046439,-0.00084713,-0.00044991,0.0029905,0.0023646,-0.0013674,0.00022439,-0.00025013,0.0037687,0.00053155,-0.002541,-0.00094653,0.0008796,-0.0030991,-0.001432,0.0039326,-0.0011811 -0.0010877,-0.00168,0.0010426,-0.0089173,-0.0016833,-0.00068111,0.0053323,0.0043418,-0.0019065,0.001135,-0.0011886,0.0075609,0.0007787,-0.0040685,-0.0012246,0.0028886,-0.0052208,-0.0035925,0.0069716,-0.0016877 -0.0019346,-0.0024659,0.0017609,-0.014862,-0.0032484,-0.00088189,0.0080522,0.0064432,-0.0011929,0.0032466,-0.0039605,0.012221,0.0011724,-0.0044547,-0.00084196,0.006468,-0.0069166,-0.0070363,0.011379,-0.0014278 -0.0032133,-0.0035588,0.0028694,-0.021908,-0.0056628,-0.00032985,0.011193,0.0081142,0.0012961,0.0063288,-0.0092537,0.016996,0.0021947,-0.0038644,-0.0022076,0.010971,-0.0076628,-0.011601,0.015836,-0.0019917 -0.0050034,-0.0045609,0.005022,-0.028839,-0.0089632,0.0025603,0.013774,0.0082561,0.0065141,0.010175,-0.016373,0.020437,0.0043482,-0.00093416,-0.0048104,0.013107,-0.0059695,-0.016865,0.018515,-0.0057337 -0.0071601,-0.0053457,0.0083852,-0.035587,-0.013202,0.0084108,0.01623,0.00661,0.01451,0.013572,-0.023416,0.020529,0.0074751,0.0035853,-0.0081597,0.0114,-0.0031165,-0.018296,0.020285,-0.012622 -0.0090772,-0.0061005,0.012968,-0.040182,-0.016866,0.017274,0.017052,0.0030872,0.022205,0.01446,-0.026997,0.0151,0.010697,0.0074573,-0.01192,0.0049128,-0.0045452,-0.01252,0.018213,-0.019159 -0.010129,-0.0071089,0.018462,-0.040448,-0.019062,0.026267,0.015328,0.0006355,0.025993,0.011168,-0.024705,0.0047444,0.0092098,0.0083738,-0.013291,-0.0054089,-0.011788,0.0032885,0.010903,-0.020401 -0.0096009,-0.0077338,0.022828,-0.035304,-0.017932,0.031361,0.011078,0.00096266,0.022751,0.0037964,-0.015647,-0.0061911,0.0039249,0.007347,-0.010201,-0.012654,-0.021344,0.022295,0.0005338,-0.010301 -0.0075933,-0.0077591,0.024234,-0.027247,-0.014081,0.03141,0.0059563,0.0031351,0.014502,-0.0044018,-0.00459,-0.013541,-0.0030126,0.0057942,-0.005747,-0.011746,-0.029126,0.034928,-0.0066423,0.0069813 -0.0055486,-0.0068547,0.022284,-0.019068,-0.0096798,0.026731,0.0017163,0.0052586,0.004671,-0.0083977,0.0019373,-0.014708,-0.0077387,0.0045141,-0.0023487,-0.0055187,-0.03,0.034506,-0.0094775,0.022609 -0.0036964,-0.0053637,0.017363,-0.011699,-0.0056235,0.018748,-0.0015498,0.0062628,-0.0022926,-0.0086083,0.0032363,-0.011198,-0.0090626,0.0028618,-0.0015538,0.00052946,-0.024041,0.024658,-0.0081379,0.028199 -0.0023088,-0.0033492,0.011424,-0.0059887,-0.0027176,0.010811,-0.0026477,0.0053632,-0.0051454,-0.0062953,0.0020403,-0.0057724,-0.0076751,0.00118,-0.0020192,0.0030747,-0.01427,0.013696,-0.0045942,0.023548 -0.0011328,-0.0017229,0.0063101,-0.0026665,-0.00096688,0.0053775,-0.0023609,0.0034736,-0.0041285,-0.0036842,0.00069692,-0.0018836,-0.0043911,0.00024194,-0.0019295,0.0030922,-0.0073553,0.0063794,-0.001643,0.014604 -0.00056356,-0.00080315,0.0030242,-0.0010803,-0.00017548,0.0024425,-0.0013073,0.0018291,-0.0022315,-0.0017886,6.6118e-05,-0.00033225,-0.0020236,0.0001981,-0.0016027,0.0019612,-0.0032596,0.0026183,-0.00036387,0.0071138 -0.00017802,-0.00029009,0.0011862,-0.00033061,5.7681e-05,0.000855,-0.0006208,0.00079159,-0.0009244,-0.0006684,-1.1209e-06,0.00024239,-0.00071156,5.186e-05,-0.00088834,0.0010821,-0.001136,0.00057823,-5.052e-05,0.0025915 -2.8028e-05,-0.00013004,0.0004773,-0.00011728,2.3072e-05,0.00028845,-0.00024277,0.00037783,-0.00040363,-0.00025959,2.6497e-05,0.00018921,-0.00021253,-6.1774e-05,-0.00034581,0.00059364,-0.00036488,-3.1526e-05,-4.2306e-07,0.00095671 -6.4509e-07,-3.065e-05,9.4142e-05,-2.9189e-05,-5.528e-06,5.372e-05,-4.1146e-05,4.7348e-05,-8.7293e-05,-6.9766e-05,1.793e-05,2.2805e-05,5.1913e-07,-7.1851e-05,-4.3024e-05,0.00012767,-0.00011014,-6.6802e-05,-1.9333e-05,0.00017357 3.6308e-06,-6.2781e-06,1.3837e-05,-1.844e-06,-1.6202e-07,6.8711e-06,-1.103e-05,6.3366e-06,-1.3602e-05,-1.1856e-05,8.8275e-07,-3.0661e-06,-4.4632e-06,-2.3948e-05,-4.4256e-06,2.9822e-05,-2.5599e-05,-1.9174e-05,8.7819e-06,2.7821e-05 5.9848e-17,4.8572e-17,-2.2551e-17,-2.2551e-17,3.4694e-18,-2.0817e-17,3.4694e-18,-2.5587e-17,-1.7347e-17,-1.3878e-17,3.8164e-17,3.4694e-17,3.9465e-17,7.8063e-17,-4.5536e-18,3.4694e-18,-5.2042e-18,1.7347e-17,5.3776e-17,2.8189e-17 2.7756e-17,2.0817e-17,-1.0408e-17,-1.7347e-18,1.2143e-17,-3.4694e-18,2.949e-17,-9.9747e-18,-2.4286e-17,-5.2042e-18,1.3878e-17,6.9389e-18,1.9516e-17,3.1225e-17,-1.8377e-17,-1.5613e-17,3.4694e-18,8.6736e-18,3.7513e-17,1.5179e-17 -1.4538e-07,-1.4148e-06,-4.3865e-07,5.478e-07,-1.371e-06,-1.5916e-07,-1.634e-06,4.3191e-06,1.5051e-06,1.6879e-06,-7.5275e-07,4.1163e-06,-5.9188e-07,5.358e-06,-5.056e-07,-1.4532e-06,-1.296e-06,-2.7854e-06,2.5883e-06,1.0245e-08 4.2869e-06,-9.3459e-06,5.7747e-06,-5.3325e-06,-4.3076e-06,2.4298e-06,3.0532e-06,-2.5251e-06,-1.9893e-06,-1.2824e-05,5.5091e-06,9.5787e-06,-6.4869e-07,2.5988e-06,9.8523e-06,1.9081e-06,-4.2968e-06,2.7929e-05,-5.5096e-06,1.2518e-06 -1.409e-05,-6.0451e-06,1.7855e-05,-1.0459e-05,2.612e-06,2.1617e-05,-2.2583e-06,4.2356e-05,-2.7514e-05,1.1764e-05,2.0792e-05,1.2394e-05,-2.1058e-05,6.4663e-06,-1.9903e-05,-4.5498e-06,6.727e-06,-1.3039e-06,-1.621e-05,1.1859e-05 -4.9524e-05,-8.2476e-05,-7.9175e-05,-0.00012494,2.4985e-05,1.5281e-05,7.7399e-05,0.00015818,-9.9201e-05,0.00013647,0.00016196,3.0534e-05,-9.1347e-06,-0.00021997,-0.00017297,-3.4353e-05,5.3652e-05,6.8731e-05,0.00031433,-8.2896e-05 -0.00018511,-0.00052966,-0.00036948,-0.00074628,-0.00016713,2.4925e-05,0.00073358,0.00062442,-0.0004692,0.0008051,0.00048393,0.00029945,-0.00011599,-0.0013357,-0.0007707,0.00018715,-0.00033395,0.00045758,0.001367,-0.00069656 -0.0004805,-0.0016565,-0.0010336,-0.0022562,-0.00058129,4.8801e-05,0.0021561,0.0019846,-0.0010988,0.0019163,0.0010495,0.001128,-0.00052489,-0.003639,-0.0018128,0.00093599,-0.00089659,0.00059477,0.0038909,-0.0019754 -0.0010925,-0.0040606,-0.0022514,-0.0054043,-0.0015772,-0.00019218,0.0050378,0.0054118,-0.0022028,0.004314,0.0019015,0.0037643,-0.0013302,-0.0080116,-0.0035323,0.0031974,-0.0018491,0.00151,0.0092872,-0.0048391 -0.002476,-0.0079652,-0.0041462,-0.010993,-0.0033373,-0.0010862,0.0094642,0.011276,-0.0031412,0.0082615,0.0028946,0.0094357,-0.0033145,-0.014071,-0.0054554,0.0083363,-0.0033726,0.0024925,0.017444,-0.0095704 -0.0049709,-0.013715,-0.0069107,-0.019743,-0.0059811,-0.0022352,0.015361,0.019379,-0.0024563,0.0148,0.0018028,0.018703,-0.0053083,-0.021268,-0.0056059,0.018512,-0.0052015,0.002007,0.02782,-0.014774 -0.008583,-0.021183,-0.01059,-0.030357,-0.010386,-0.0031613,0.022307,0.028738,0.0024285,0.023598,-0.002717,0.030474,-0.0074695,-0.026734,-0.0056975,0.033253,-0.004066,-0.00027364,0.039029,-0.021092 -0.013462,-0.029893,-0.013327,-0.042275,-0.015918,-0.0020871,0.030102,0.036,0.014968,0.031729,-0.012739,0.042794,-0.0070564,-0.030749,-0.0063442,0.04876,0.00249,-0.0039132,0.047007,-0.032874 -0.018989,-0.03916,-0.013627,-0.053373,-0.021362,0.0038934,0.038601,0.037134,0.036611,0.036843,-0.025439,0.051868,-0.0029221,-0.031094,-0.0060635,0.056094,0.014686,-0.0047095,0.04899,-0.05299 -0.024432,-0.049397,-0.0087719,-0.060768,-0.026301,0.015802,0.046633,0.031946,0.062006,0.036847,-0.036664,0.054688,0.0001997,-0.028108,0.0012453,0.04836,0.024185,0.0104,0.042686,-0.076061 -0.02818,-0.058557,0.0033921,-0.061358,-0.029149,0.029629,0.048642,0.023944,0.079769,0.029712,-0.041269,0.046337,-0.0045204,-0.018902,0.016249,0.027088,0.021766,0.044546,0.025541,-0.086809 -0.031083,-0.064403,0.020755,-0.053605,-0.029374,0.038188,0.03841,0.020653,0.08147,0.015756,-0.040819,0.025834,-0.017674,-0.0035389,0.03523,0.00531,0.0028105,0.087969,0.0027632,-0.068364 -0.030899,-0.06407,0.037557,-0.040796,-0.026513,0.037242,0.017001,0.022123,0.065751,-0.0028661,-0.035219,0.0030696,-0.029934,0.013379,0.045522,-0.0061736,-0.021524,0.11737,-0.016304,-0.020201 -0.026658,-0.056844,0.047865,-0.026337,-0.019339,0.028605,-0.0079663,0.024476,0.040466,-0.020072,-0.026383,-0.010015,-0.030142,0.026641,0.041132,-0.0078634,-0.03559,0.11979,-0.0205,0.038104 -0.020968,-0.044125,0.048155,-0.014093,-0.012191,0.01823,-0.025791,0.024296,0.018229,-0.027927,-0.017116,-0.011233,-0.018899,0.028878,0.024402,-0.0053686,-0.03501,0.099958,-0.0098028,0.076926 -0.014727,-0.030431,0.040586,-0.0060515,-0.0060416,0.0087274,-0.033015,0.01933,0.0041727,-0.026803,-0.010207,-0.004096,-0.0063791,0.024158,0.0063228,-0.0036307,-0.024263,0.069193,0.0056184,0.083938 -0.0089326,-0.017418,0.028246,-0.0011331,-0.0024069,0.0035573,-0.029642,0.012369,-0.0020911,-0.018367,-0.0049213,0.0031617,0.0011316,0.015105,-0.0060527,-0.0020374,-0.013225,0.040743,0.013481,0.066072 -0.0050086,-0.0084422,0.016825,0.0011847,-0.00040786,0.0027952,-0.020513,0.0072266,-0.0031189,-0.0097429,-0.00053913,0.0055296,0.003274,0.0080628,-0.0093189,0.00065712,-0.0078667,0.021117,0.012322,0.040795 -0.0024638,-0.0033867,0.0085804,0.001917,0.00058288,0.0026115,-0.011503,0.003115,-0.002034,-0.0036846,0.00072346,0.0043318,0.0024325,0.0039505,-0.0074679,0.003381,-0.0047351,0.010021,0.0087001,0.02007 -0.00097998,-0.001176,0.0037525,0.0013743,0.00052661,0.0018041,-0.0054378,0.00071983,-0.00084411,-0.00083925,0.00071649,0.0021756,0.0010547,0.001944,-0.0043627,0.0038215,-0.0027988,0.0040855,0.00451,0.0079869 -0.00025841,-0.00049305,0.0015365,0.00057297,0.00030812,0.00080764,-0.0020262,0.00016418,-0.00031907,-0.00026944,0.00027866,0.00074891,0.00030098,0.00052731,-0.0019673,0.0025923,-0.0014614,0.0013096,0.0015849,0.0028879 -1.1928e-05,-0.00015394,0.00038867,0.0001896,6.0458e-05,0.0002384,-0.00045313,-5.9843e-05,-5.3521e-05,-0.00013251,-5.9673e-05,0.00018873,0.00013255,-5.4048e-05,-0.00047212,0.00089638,-0.0006036,4.1406e-05,0.00029143,0.00067591 1.0426e-05,-9.8049e-06,5.8965e-05,2.8146e-05,1.3921e-05,4.2172e-05,-0.00010785,-6.3413e-05,-3.167e-05,1.4837e-05,-7.8527e-05,4.6321e-05,0.00010285,-9.6395e-05,-2.3336e-05,0.00014335,-0.00011764,-6.2403e-05,5.3785e-05,6.0091e-05 2.8406e-06,-1.9243e-06,2.7768e-06,-1.4211e-06,1.2892e-06,-2.1243e-06,-6.7851e-06,-1.7637e-06,-2.6752e-06,2.5884e-06,-5.7653e-06,2.5315e-06,1.159e-05,-9.463e-06,2.4763e-06,2.398e-06,-2.7721e-06,-1.0559e-05,2.4206e-06,3.5956e-07 2.3419e-17,-6.9389e-18,-9.541e-18,-2.6021e-18,8.6736e-19,-5.2042e-18,-8.6736e-18,-1.2794e-17,-1.0842e-17,0,2.6021e-17,9.541e-18,1.5829e-17,2.1684e-17,-1.0192e-17,1.7347e-18,-1.2577e-17,3.4694e-18,2.7213e-17,2.1684e-19 1.8872e-09,-9.2155e-07,1.3663e-07,8.6177e-07,-4.3673e-07,2.8983e-08,7.2808e-07,3.6136e-06,3.6779e-08,3.8454e-07,-1.1834e-06,8.646e-07,-4.9419e-07,2.2497e-06,3.0049e-07,-7.4636e-07,1.0079e-06,-9.9253e-07,-1.6722e-06,-8.6837e-07 -3.4887e-06,-8.7984e-06,2.0138e-05,-1.1383e-05,-4.4063e-06,1.9318e-05,1.3993e-06,2.2687e-05,-9.2805e-06,-3.172e-06,-6.4905e-06,-2.4388e-05,-2.8751e-05,3.5787e-06,-9.3162e-07,2.3406e-05,-5.2333e-06,2.6262e-05,8.9393e-07,3.8377e-05 -1.5363e-05,-7.3339e-05,-9.4188e-05,-1.9185e-05,-3.1994e-06,-1.3871e-06,-5.2003e-06,0.00011678,-0.00011008,0.00017198,0.00012428,-6.2754e-05,-3.2012e-05,-0.00018316,-0.00019558,-3.9039e-05,3.5329e-05,3.1958e-05,0.00017081,-3.8425e-05 -0.00020093,-0.00048298,-0.00085546,-0.00039308,-0.00019733,-6.1899e-05,0.00030492,0.00072694,-0.00087148,0.0014093,0.0011402,-2.6802e-05,-0.00050382,-0.0012008,-0.0013141,-0.00023562,0.00028798,0.00034578,0.001451,-0.00035288 -0.00069816,-0.0019894,-0.0029125,-0.001771,-0.00092564,-0.00019836,0.0018146,0.0026397,-0.0028456,0.0044492,0.0038526,0.00040675,-0.0016475,-0.0047183,-0.0037188,0.00013668,0.00048849,0.0011256,0.004964,-0.0017479 -0.0016113,-0.0052929,-0.0068431,-0.004907,-0.0025351,-0.0012148,0.0049545,0.0070998,-0.0053755,0.0093897,0.0088864,0.0019405,-0.0040898,-0.011513,-0.0081209,0.0019361,0.00064951,0.0016657,0.012229,-0.0046267 -0.0035251,-0.011268,-0.013163,-0.010349,-0.0055098,-0.00325,0.010167,0.015277,-0.0082208,0.017043,0.015655,0.0064883,-0.0078633,-0.021396,-0.012838,0.0078278,0.0012407,0.0022849,0.024273,-0.0083086 -0.0072571,-0.020232,-0.022722,-0.019088,-0.010654,-0.0070707,0.016691,0.027546,-0.01011,0.028156,0.023733,0.016066,-0.012996,-0.032733,-0.0175,0.021062,0.0026234,0.00085384,0.039325,-0.0128 -0.013784,-0.031933,-0.036107,-0.030702,-0.017998,-0.012377,0.024925,0.040577,-0.0074819,0.04218,0.029162,0.030829,-0.017061,-0.042156,-0.0199,0.044068,0.0072183,-0.0060888,0.052651,-0.015579 -0.023067,-0.045744,-0.050503,-0.042168,-0.027941,-0.016656,0.033543,0.048639,0.0060779,0.054852,0.026837,0.046931,-0.017706,-0.045171,-0.021242,0.071783,0.02117,-0.020808,0.057254,-0.022512 -0.034704,-0.060451,-0.062344,-0.05098,-0.039299,-0.015414,0.042647,0.04584,0.034988,0.063051,0.015834,0.056886,-0.011156,-0.043173,-0.021519,0.089971,0.048322,-0.039349,0.048761,-0.040428 -0.045738,-0.075973,-0.065918,-0.053066,-0.049753,-0.0027328,0.052749,0.029791,0.074568,0.0607,0.0038338,0.057296,0.001314,-0.038832,-0.018866,0.083672,0.079241,-0.041387,0.029327,-0.073582 -0.052841,-0.093472,-0.05784,-0.045053,-0.054653,0.019027,0.062009,0.0079049,0.11072,0.044197,0.0026355,0.047711,0.0036077,-0.036426,-0.0043591,0.05095,0.095424,-0.0097685,0.00044038,-0.10551 -0.055486,-0.10965,-0.037097,-0.030083,-0.053293,0.036407,0.062239,-0.0080067,0.12444,0.019664,0.010899,0.028287,-0.017748,-0.029224,0.027816,0.012435,0.085712,0.046768,-0.033033,-0.10468 -0.055529,-0.12129,-0.0095981,-0.010921,-0.049015,0.037539,0.043596,-0.0092691,0.11014,-0.0047505,0.014517,0.0013312,-0.055271,-0.012103,0.069663,-0.0062017,0.052068,0.10229,-0.062323,-0.055499 -0.054776,-0.12227,0.01794,0.00711,-0.043889,0.020206,0.0044256,-0.00066485,0.079468,-0.02615,0.0016515,-0.020943,-0.082854,0.012392,0.095385,-0.0020515,0.01619,0.12984,-0.069663,0.028111 -0.051874,-0.11017,0.039782,0.021248,-0.037155,-0.0043969,-0.041802,0.0088922,0.050678,-0.042933,-0.015416,-0.023692,-0.073976,0.033501,0.088,0.002175,-0.0057086,0.12951,-0.043991,0.11293 -0.045985,-0.085386,0.052047,0.030677,-0.026487,-0.019863,-0.077334,0.01137,0.032503,-0.050455,-0.018724,-0.0083454,-0.035541,0.044012,0.052759,-0.0026389,-0.0088865,0.11199,0.0032551,0.16255 -0.037049,-0.05706,0.05277,0.032998,-0.013919,-0.022675,-0.088453,0.0062267,0.022199,-0.046429,-0.0054513,0.011099,0.0038923,0.045618,0.011055,-0.010109,-0.0017426,0.085585,0.042449,0.16379 -0.025759,-0.031849,0.044036,0.028556,-0.0043905,-0.015801,-0.078289,0.00053679,0.012385,-0.033325,0.0099662,0.021751,0.023722,0.037798,-0.017785,-0.0094269,0.0038362,0.055445,0.056385,0.12762 -0.015563,-0.014091,0.030641,0.022082,0.00055896,-0.0058683,-0.055334,-0.0043983,0.0043194,-0.017274,0.017995,0.020471,0.023304,0.026207,-0.025794,0.0002484,0.0013876,0.028636,0.046835,0.080505 -0.0079494,-0.0040432,0.018174,0.015155,0.0021185,0.00045252,-0.033137,-0.0068674,0.0002891,-0.0060668,0.016383,0.013111,0.015239,0.016211,-0.021076,0.010754,-0.0012813,0.01148,0.030631,0.041336 -0.0032217,-0.00036581,0.0091959,0.0092124,0.0015943,0.0024531,-0.017476,-0.0062729,-0.00072536,-0.00031992,0.0098266,0.0065194,0.0079444,0.0084651,-0.012706,0.013823,-0.0036902,0.002771,0.016778,0.017393 -0.00089933,-2.5299e-05,0.0038993,0.0044703,0.00099552,0.0017987,-0.0077839,-0.0038569,-0.00056724,7.0885e-05,0.0038942,0.0024464,0.0026458,0.0026368,-0.0061908,0.010189,-0.0038673,-0.00081598,0.0076016,0.006027 -1.4726e-05,-7.9961e-05,0.0011061,0.001292,0.00035502,0.00054248,-0.0020392,-0.0013824,-0.00013929,-0.00020234,0.00072879,0.00048302,0.00062962,-0.00011534,-0.0016826,0.0039219,-0.0017879,-0.0014093,0.0020499,0.0013829 7.4157e-06,1.2409e-05,0.00014909,0.00026802,5.7791e-05,0.00010307,-0.00033898,-0.0003921,1.3748e-05,-0.00010112,6.0995e-05,2.3608e-05,0.00013795,-0.00020144,-0.00010908,0.00082785,-0.00038353,-0.00046335,0.00046693,0.00023712 4.8656e-06,-3.41e-06,5.8204e-06,8.9267e-07,7.119e-06,1.3667e-06,-1.0739e-05,-5.9833e-07,-5.4816e-06,4.5681e-06,-5.8527e-06,-3.1599e-06,1.4541e-05,-2.4193e-05,2.3567e-06,1.8703e-05,-1.2588e-05,-2.608e-05,9.3065e-06,3.7743e-06 3.9031e-17,2.4286e-17,-2.6021e-17,-6.9389e-18,9.541e-18,-3.4694e-18,1.7347e-17,-5.6379e-18,-1.9082e-17,1.7347e-18,5.8981e-17,4.3368e-18,2.8189e-17,4.0766e-17,5.421e-19,-6.9389e-18,-1.648e-17,1.0408e-17,3.4694e-17,7.8063e-18 9.8466e-08,-2.7086e-07,-8.9458e-09,4.027e-07,-3.9268e-09,-5.6987e-08,-5.535e-08,9.1438e-07,1.8884e-07,6.1283e-08,-1.8775e-07,3.1152e-07,-3.9945e-07,5.9756e-07,-4.1219e-07,-5.2244e-07,-5.5561e-07,4.0003e-08,-3.0874e-07,-2.6928e-07 4.1056e-06,1.1942e-05,-3.4519e-05,-2.7071e-06,2.1282e-05,4.3439e-06,5.9486e-06,7.3201e-05,-1.9095e-05,-5.8162e-07,1.6533e-05,-0.0001023,7.228e-05,2.8017e-05,-2.695e-05,-6.6178e-05,2.1644e-05,5.4425e-05,5.5928e-05,3.0838e-05 -2.5571e-05,-0.00020271,-0.00061821,-0.00013941,1.5417e-05,-1.9206e-06,7.957e-05,0.00046802,-0.00052369,0.00079706,0.00075372,-0.00034946,5.1883e-05,-0.00061205,-0.00083188,-0.00057271,0.00029121,0.00015256,0.00059179,1.3836e-05 -0.00044505,-0.0010052,-0.0028436,-0.00069221,-0.00040581,-0.00035538,0.001014,0.0023088,-0.002608,0.0037518,0.003911,-0.00052271,-0.0009841,-0.0030947,-0.0037678,-0.0015191,0.00099191,0.00030103,0.0034943,0.00012436 -0.0013281,-0.0031361,-0.0077185,-0.0028396,-0.0018498,-0.0016413,0.0040663,0.006736,-0.0063167,0.0090325,0.011084,-0.00066359,-0.0028302,-0.0090186,-0.0085778,-0.0022847,0.0014005,-0.00045257,0.01043,-0.00024832 -0.0028508,-0.0077824,-0.016491,-0.0074474,-0.0054995,-0.0051517,0.0094776,0.014806,-0.011482,0.017253,0.023599,0.00090793,-0.0073749,-0.01939,-0.016773,-0.00041269,0.0013812,-0.0029106,0.022656,-0.0005119 -0.0064956,-0.015806,-0.030581,-0.015475,-0.011507,-0.012454,0.01691,0.027688,-0.016985,0.028882,0.041598,0.0063247,-0.014217,-0.032108,-0.025734,0.0080767,0.0010736,-0.0084517,0.040251,0.0020464 -0.013321,-0.026436,-0.050401,-0.025786,-0.020641,-0.023525,0.026613,0.041191,-0.019529,0.042086,0.060305,0.018139,-0.01963,-0.040739,-0.032553,0.027865,0.0016791,-0.020652,0.054355,0.0083357 -0.025303,-0.03708,-0.073616,-0.03754,-0.033064,-0.036496,0.036139,0.046571,-0.011899,0.053474,0.069725,0.034213,-0.019267,-0.037424,-0.03504,0.058432,0.010212,-0.045451,0.053658,0.016409 -0.041568,-0.046929,-0.093854,-0.043572,-0.04926,-0.044632,0.044611,0.034776,0.013467,0.057373,0.060612,0.042434,-0.0115,-0.018571,-0.03629,0.082285,0.036578,-0.082275,0.033641,0.013714 -0.058821,-0.055445,-0.10173,-0.039087,-0.066772,-0.036999,0.05237,0.0032581,0.056688,0.047068,0.038442,0.036162,0.0042448,0.005059,-0.041027,0.075414,0.075061,-0.11168,-0.0011346,-0.013781 -0.069574,-0.06328,-0.094467,-0.021442,-0.078015,-0.010079,0.059302,-0.037329,0.099056,0.019785,0.027466,0.015034,0.014291,0.018288,-0.048294,0.028372,0.10271,-0.10556,-0.036048,-0.056412 -0.069983,-0.073873,-0.07331,0.0048868,-0.076752,0.023546,0.066244,-0.069447,0.11966,-0.017529,0.045797,-0.0092194,-0.0012614,0.012926,-0.045671,-0.035915,0.10108,-0.054818,-0.067427,-0.086469 -0.06265,-0.087586,-0.046381,0.03216,-0.066852,0.042706,0.06914,-0.078829,0.10287,-0.048705,0.075807,-0.031363,-0.052007,0.0068928,-0.016596,-0.076674,0.07091,0.0097523,-0.097044,-0.076567 -0.054782,-0.10121,-0.020415,0.053716,-0.056842,0.032791,0.054483,-0.065857,0.059822,-0.062739,0.082595,-0.049226,-0.12243,0.013979,0.030293,-0.063448,0.029271,0.049517,-0.11906,-0.024498 -0.052171,-0.10791,0.0010678,0.067714,-0.054006,-0.0039302,0.014593,-0.040922,0.019242,-0.06272,0.047825,-0.057952,-0.16927,0.025849,0.068295,-0.016074,-0.0016488,0.053106,-0.11378,0.047673 -0.055699,-0.10209,0.02151,0.075545,-0.051004,-0.045789,-0.041903,-0.01974,0.0053535,-0.057354,-0.00037482,-0.048052,-0.15662,0.030386,0.073603,0.017887,-0.01541,0.046186,-0.069562,0.11442 -0.059498,-0.082635,0.041955,0.078012,-0.040132,-0.069845,-0.09281,-0.01113,0.013356,-0.0518,-0.017325,-0.017448,-0.08978,0.030186,0.046204,0.017743,-0.0094659,0.050062,-0.0014991,0.15526 -0.057062,-0.055912,0.055945,0.074398,-0.022104,-0.065964,-0.11508,-0.013657,0.023668,-0.046384,0.0061572,0.017824,-0.0074705,0.036763,0.0026941,0.0056727,0.0064557,0.053179,0.059096,0.1573 -0.046647,-0.031262,0.057269,0.062427,-0.0036829,-0.044943,-0.10661,-0.019931,0.019856,-0.037747,0.036808,0.035757,0.040655,0.043382,-0.032996,0.0029154,0.016561,0.040918,0.084561,0.12714 -0.031075,-0.012494,0.046504,0.046338,0.0061203,-0.021059,-0.078731,-0.021848,0.0067086,-0.02364,0.049399,0.035264,0.046964,0.040805,-0.044806,0.014251,0.01357,0.017481,0.073835,0.083544 -0.016227,-0.0021925,0.030775,0.03086,0.0076365,-0.005142,-0.048947,-0.01921,-0.0037829,-0.010609,0.039165,0.023405,0.033111,0.027039,-0.038082,0.026717,0.0034116,-0.0018446,0.049113,0.044448 -0.0062181,0.0013617,0.016267,0.018325,0.0051923,0.0013201,-0.026322,-0.013722,-0.0054361,-0.0023481,0.021935,0.012338,0.018376,0.01289,-0.024076,0.029091,-0.0044813,-0.0095772,0.027163,0.017926 -0.0014584,0.0011275,0.0071574,0.0096643,0.0027165,0.0024327,-0.012388,-0.0083377,-0.003198,-0.00039021,0.0085155,0.0050547,0.0073507,0.0028983,-0.011821,0.021102,-0.006599,-0.0087557,0.013743,0.0044598 -2.7969e-05,0.00032872,0.0023515,0.0034752,0.0012095,0.00094061,-0.0038995,-0.003668,-0.0012085,-0.00046856,0.002034,0.0011998,0.0021215,-0.0011893,-0.0037709,0.0095283,-0.0031889,-0.0052445,0.0052318,0.00067333 5.3677e-05,0.00011312,0.00042807,0.00069663,0.0002646,0.00017611,-0.00069403,-0.001041,-0.00024025,-7.8263e-05,8.44e-05,2.059e-05,0.00051421,-0.00077763,-0.00046031,0.0023022,-0.00068615,-0.0014162,0.0011798,0.00011783 1.9304e-05,1.0117e-05,4.4068e-05,3.8399e-05,3.4519e-05,1.6804e-05,-3.4579e-05,-8.1673e-05,-5.1435e-05,5.2944e-05,-3.005e-05,-3.6312e-05,6.8104e-05,-0.00012321,4.8424e-06,0.0001622,-3.274e-05,-0.00019828,4.6884e-05,9.3494e-06 5.4674e-07,2.599e-06,-1.7701e-06,5.1804e-07,3.56e-07,-5.6337e-07,1.5653e-06,4.7442e-06,5.6606e-08,-4.0543e-06,-2.4812e-06,-2.079e-06,4.0479e-06,-2.1472e-06,-2.515e-06,3.4995e-07,-1.8603e-07,4.9172e-06,1.0806e-06,-5.9078e-07 8.7391e-06,2.7788e-05,-3.0007e-05,1.7199e-05,9.8203e-06,-1.1703e-05,1.3384e-05,0.00011165,1.4505e-06,-3.5413e-05,-2.3102e-05,-6.8288e-05,4.3611e-05,1.5481e-05,-4.5805e-05,-5.2585e-05,-1.8568e-05,1.134e-05,-2.5674e-05,-3.8834e-05 3.0473e-05,0.00020431,-0.00027051,-3.4395e-05,0.00017793,-1.5696e-05,0.00011821,0.00054432,-5.3929e-05,-0.00015219,-3.3769e-06,-0.00059958,0.000481,-6.7483e-05,-2.4921e-05,-0.00033852,-2.0461e-05,0.00016014,0.00032516,3.4545e-05 -1.1125e-05,0.00043972,-0.0016614,-0.0001151,0.00034715,-8.0008e-05,0.00071107,0.0022025,-0.0010837,0.00076826,0.0015233,-0.0016846,0.0012554,-0.0010106,-0.001061,-0.0018314,0.00011984,8.174e-05,0.0016381,0.00063372 -0.0004622,0.00044477,-0.0058819,-0.00069573,-2.342e-05,-0.0011999,0.0033894,0.006759,-0.0042639,0.0041433,0.0071674,-0.0034993,0.0016393,-0.0049984,-0.0050477,-0.0048396,-9.053e-05,-0.00094824,0.0071169,0.0025802 -0.0014181,-0.00021677,-0.013767,-0.0032936,-0.0019405,-0.0052841,0.0094303,0.01455,-0.0099031,0.0096162,0.019095,-0.0054877,0.0010327,-0.01249,-0.011703,-0.0089066,-0.0031398,-0.0044045,0.018122,0.0067924 -0.0036116,-0.0024722,-0.027467,-0.0086718,-0.0065025,-0.013996,0.019495,0.027064,-0.017263,0.016767,0.040089,-0.006079,-0.0016286,-0.022857,-0.021018,-0.010272,-0.010024,-0.011567,0.035512,0.015658 -0.0092161,-0.0062811,-0.047949,-0.017774,-0.01309,-0.030044,0.032005,0.041133,-0.024708,0.024908,0.067135,-0.0010465,-0.0055584,-0.030834,-0.029996,-0.0023467,-0.021226,-0.023211,0.053305,0.033369 -0.020096,-0.0092472,-0.074391,-0.02856,-0.022892,-0.051006,0.045659,0.047066,-0.026277,0.029933,0.088848,0.0094153,-0.0039715,-0.02508,-0.034226,0.019569,-0.030016,-0.04362,0.056522,0.055961 -0.037142,-0.0092425,-0.1006,-0.034749,-0.03756,-0.068938,0.056225,0.032815,-0.01121,0.027478,0.084351,0.018928,0.004827,0.0042164,-0.03338,0.047443,-0.021878,-0.081928,0.033793,0.072204 -0.056576,-0.0043523,-0.11233,-0.026828,-0.055523,-0.070663,0.063546,-0.0084863,0.02632,0.012265,0.048738,0.012961,0.018391,0.04997,-0.034606,0.047766,0.0098111,-0.1295,-0.0083254,0.059408 -0.071596,0.0031075,-0.10048,-0.0010861,-0.071735,-0.04512,0.068993,-0.063352,0.070932,-0.016137,0.0084108,-0.014143,0.028994,0.079783,-0.050421,-0.0022009,0.039966,-0.14957,-0.042497,0.0132 -0.07333,0.007269,-0.068834,0.035187,-0.074177,-0.0021792,0.073187,-0.10506,0.091668,-0.051708,0.0068879,-0.051006,0.022432,0.0736,-0.077339,-0.081304,0.038363,-0.11572,-0.052891,-0.041226 -0.060386,0.0032382,-0.032384,0.069123,-0.058685,0.03741,0.084754,-0.11541,0.07132,-0.084593,0.053047,-0.076781,-0.010782,0.040876,-0.08933,-0.1438,0.003368,-0.045756,-0.052099,-0.068142 -0.040699,-0.010015,-0.0077348,0.090468,-0.035354,0.049718,0.097258,-0.097441,0.014747,-0.1016,0.10368,-0.087063,-0.074037,0.018023,-0.067871,-0.14722,-0.034328,0.0072209,-0.06117,-0.059967 -0.024469,-0.026961,-0.00042116,0.099373,-0.021973,0.024843,0.095412,-0.064121,-0.0514,-0.099552,0.10521,-0.089682,-0.14904,0.021359,-0.023628,-0.088542,-0.054801,0.0074728,-0.075429,-0.031195 -0.021224,-0.03953,-0.0013871,0.1012,-0.02679,-0.026964,0.066072,-0.026067,-0.090152,-0.08459,0.042363,-0.086083,-0.20332,0.025232,0.013855,-0.0089871,-0.058842,-0.031511,-0.071742,0.00052616 -0.031804,-0.041183,0.0060283,0.10154,-0.037653,-0.082409,0.011295,0.0027802,-0.077689,-0.062447,-0.033779,-0.067915,-0.20001,0.0069864,0.026668,0.038646,-0.053179,-0.054837,-0.039239,0.029506 -0.049226,-0.032782,0.027817,0.10262,-0.037862,-0.11599,-0.046173,0.0092356,-0.031567,-0.036344,-0.054294,-0.032223,-0.12593,-0.019895,0.019132,0.042174,-0.03855,-0.028823,0.011219,0.046809 -0.06133,-0.019472,0.054205,0.099473,-0.01988,-0.11324,-0.082984,-0.0025606,0.009526,-0.021043,-0.0075507,0.010168,-0.016406,-0.017905,-0.0023185,0.032561,-0.011787,0.0088206,0.056365,0.04925 -0.060021,-0.007428,0.068412,0.084777,0.0049073,-0.082135,-0.088745,-0.018845,0.016452,-0.018753,0.05192,0.038731,0.06182,0.014016,-0.030755,0.032536,0.012915,0.016004,0.074518,0.039768 -0.04509,-0.00033287,0.063192,0.062609,0.019913,-0.044205,-0.072101,-0.027647,4.3042e-05,-0.016297,0.073574,0.043361,0.076464,0.036081,-0.050294,0.04111,0.020357,-0.0045091,0.069222,0.027524 -0.025501,0.003479,0.044576,0.040365,0.019957,-0.016264,-0.047191,-0.024949,-0.014153,-0.010963,0.055759,0.033016,0.055999,0.03015,-0.047957,0.047604,0.01088,-0.024309,0.048925,0.012706 -0.0092689,0.0041013,0.025035,0.023864,0.012325,-0.0026071,-0.026236,-0.016336,-0.015868,-0.002716,0.028241,0.018575,0.03261,0.011545,-0.033322,0.044351,-0.0010182,-0.027779,0.02681,-0.00080455 -0.0014992,0.0021812,0.010963,0.012011,0.0055575,0.0014836,-0.012603,-0.0089644,-0.0096723,0.0005003,0.009538,0.0083601,0.014618,-0.0011979,-0.017603,0.030519,-0.0073742,-0.019209,0.012641,-0.0074568 0.00024886,0.00091751,0.0039182,0.0043997,0.0023208,0.00094799,-0.004424,-0.0041638,-0.0038136,0.00029075,0.0017214,0.0029021,0.0050113,-0.0038114,-0.0056658,0.014916,-0.0041872,-0.009625,0.0053951,-0.0047826 0.00011862,0.00024291,0.00068503,0.00080812,0.0004305,0.00019665,-0.0008233,-0.0012965,-0.00074769,0.00023328,-9.094e-05,0.00036726,0.0010943,-0.0013368,-0.00052624,0.003419,-0.0007664,-0.0023991,0.0012102,-0.00089518 1.5234e-05,1.554e-05,4.5766e-05,3.5745e-05,2.4992e-05,2.0167e-05,-3.209e-05,-8.9674e-05,-4.3399e-05,2.1592e-05,-7.5459e-06,-5.7127e-05,6.5307e-05,-0.00013741,8.7002e-06,0.00014984,-8.5785e-06,-0.00018777,4.696e-05,7.8941e-06 2.807e-06,1.215e-05,-4.8939e-06,1.3011e-06,2.001e-06,-3.4759e-06,7.5011e-06,2.143e-05,-7.1557e-07,-1.5103e-05,-1.2994e-05,-1.2536e-05,1.3065e-05,-1.3378e-05,-1.4206e-05,3.8642e-06,1.7063e-06,2.2905e-05,-1.9266e-06,-1.4243e-06 1.1904e-05,0.00013421,-0.00013215,-9.5616e-06,7.461e-05,-1.2623e-05,2.0252e-06,0.00035692,-5.6625e-05,-9.6667e-05,-7.5521e-05,-0.00031547,0.00026967,-2.6778e-05,-3.834e-05,-8.1174e-05,1.6879e-05,0.00024206,3.0611e-05,-0.00017122 4.1713e-05,0.00082795,-0.00080917,-8.6092e-05,0.00065213,6.9354e-06,0.00035047,0.0019871,-0.00023732,-0.00052308,-0.00018478,-0.0017029,0.0019539,-0.00038147,0.00051861,-0.00089518,9.6397e-05,0.00086892,0.00077062,1.0975e-05 -1.1758e-05,0.0021778,-0.0031358,6.3183e-05,0.0014267,-0.00047735,0.0019091,0.0057604,-0.0017107,-2.95e-06,0.0018933,-0.0043999,0.0049036,-0.0018666,0.00031089,-0.0036141,-0.00065958,0.00098674,0.0034932,0.0012229 -0.00043304,0.0040873,-0.0085871,-0.00053676,0.0017982,-0.0025813,0.0063469,0.012971,-0.0058554,0.0024063,0.0086564,-0.0081557,0.0080473,-0.0062608,-0.0027834,-0.0089378,-0.0039819,-0.00018581,0.010897,0.0054745 -0.0013671,0.0071243,-0.017988,-0.0029023,0.00063735,-0.0095363,0.016051,0.024263,-0.012696,0.0042379,0.022865,-0.012838,0.011826,-0.013597,-0.0076076,-0.016072,-0.012954,-0.003402,0.024756,0.014936 -0.004703,0.0099426,-0.033945,-0.0091572,-0.0019062,-0.024371,0.030296,0.038605,-0.022156,0.0071257,0.047793,-0.014887,0.015057,-0.021133,-0.015297,-0.020454,-0.031966,-0.008494,0.043627,0.033972 -0.013296,0.01492,-0.057653,-0.019094,-0.0047004,-0.048502,0.047488,0.049004,-0.031806,0.0067827,0.076021,-0.01141,0.019559,-0.020387,-0.018915,-0.013002,-0.058729,-0.015982,0.055617,0.064665 -0.028713,0.024376,-0.086581,-0.027528,-0.01139,-0.074955,0.062235,0.041073,-0.03206,-0.0010148,0.085235,-0.0026127,0.030643,0.0044372,-0.015127,0.011594,-0.077241,-0.031908,0.043159,0.095833 -0.048475,0.04088,-0.1052,-0.022498,-0.024322,-0.087642,0.071701,0.0033139,-0.0097677,-0.017185,0.048576,0.00098867,0.045616,0.054187,-0.0048445,0.03279,-0.062761,-0.067983,0.0065012,0.10652 -0.065658,0.060386,-0.095798,0.0045781,-0.040265,-0.069983,0.074644,-0.059368,0.033237,-0.036215,-0.021509,-0.018477,0.05371,0.097361,-0.010775,0.0076548,-0.022528,-0.10394,-0.027479,0.068938 -0.071589,0.073635,-0.053696,0.04709,-0.04702,-0.022152,0.075424,-0.108,0.061742,-0.051556,-0.063849,-0.060046,0.050721,0.094697,-0.042168,-0.061006,-0.0054249,-0.095168,-0.019312,0.0028478 -0.061393,0.074115,0.00027062,0.086162,-0.034862,0.030107,0.079563,-0.11212,0.048015,-0.067298,-0.036043,-0.099926,0.037016,0.043805,-0.07962,-0.12364,-0.034036,-0.03417,0.017172,-0.048803 -0.03744,0.061187,0.036367,0.10585,-0.0051861,0.062221,0.096339,-0.07998,-0.007322,-0.083119,0.040526,-0.10954,0.011264,-0.010025,-0.090468,-0.14049,-0.069551,0.032967,0.03871,-0.062639 -0.0088728,0.039163,0.041732,0.1058,0.026442,0.06121,0.11877,-0.036107,-0.081,-0.090373,0.098336,-0.096423,-0.029041,-0.02502,-0.060136,-0.098659,-0.076837,0.053803,0.030844,-0.055116 0.011808,0.016172,0.021381,0.095801,0.034712,0.02349,0.12782,0.0044849,-0.14838,-0.086574,0.082429,-0.08316,-0.085798,-0.0024789,-0.018646,-0.025257,-0.055926,0.01037,0.010323,-0.048741 0.014755,0.0039703,-0.0038843,0.086451,0.012049,-0.035117,0.10514,0.042206,-0.17677,-0.077314,-0.0074677,-0.074949,-0.13545,0.010331,0.0013426,0.039538,-0.032486,-0.063921,0.0040418,-0.044641 -0.00060798,0.0056611,-0.012124,0.084624,-0.021281,-0.095624,0.057227,0.06761,-0.14083,-0.056372,-0.10083,-0.0566,-0.14846,-0.023685,0.0016733,0.060714,-0.028047,-0.096857,0.015043,-0.046828 -0.029116,0.015235,0.0091508,0.090754,-0.037136,-0.13535,0.0019734,0.065218,-0.062166,-0.019573,-0.11344,-0.02848,-0.095098,-0.076829,0.0063111,0.044447,-0.030246,-0.057502,0.025753,-0.058918 -0.056251,0.021616,0.045318,0.09416,-0.020372,-0.13795,-0.037744,0.034314,0.0018347,0.0076696,-0.032285,0.0066106,0.0083495,-0.08401,0.011411,0.031984,-0.015895,-0.006635,0.026959,-0.07037 -0.066767,0.019829,0.070087,0.08271,0.01351,-0.10643,-0.052317,-0.0027755,0.015956,0.0073615,0.05711,0.036033,0.088184,-0.034848,-0.0030872,0.041206,0.0094664,0.0016338,0.023099,-0.063135 -0.055945,0.013741,0.070212,0.061381,0.035337,-0.06277,-0.04688,-0.024237,-0.0053135,-0.0047251,0.085644,0.045448,0.10204,0.014959,-0.030375,0.05286,0.023441,-0.022778,0.026307,-0.041169 -0.034362,0.0078685,0.051817,0.03909,0.033813,-0.027238,-0.032548,-0.025613,-0.021955,-0.010222,0.061192,0.038727,0.074265,0.026557,-0.042492,0.053451,0.018733,-0.039646,0.024231,-0.022446 -0.012968,0.0044298,0.029225,0.021861,0.020253,-0.0073336,-0.01839,-0.015055,-0.023377,-0.0038669,0.026232,0.023122,0.043185,0.0090165,-0.035114,0.044545,0.0059936,-0.037228,0.012185,-0.018116 -0.0016106,0.0020872,0.012954,0.01002,0.0077484,-0.00061195,-0.0088609,-0.0068446,-0.013514,0.0016146,0.007071,0.010449,0.021513,-0.0052279,-0.019022,0.029534,-0.0039932,-0.023417,0.0027833,-0.01715 0.00068841,0.00087995,0.0044755,0.0035441,0.0025986,0.00025156,-0.0033762,-0.0029265,-0.0051798,0.0015685,0.00072839,0.0040529,0.0083418,-0.0059664,-0.0058659,0.014612,-0.0031976,-0.010904,0.00054483,-0.00889 0.00019615,0.00026014,0.00076606,0.00061366,0.00054925,0.00013817,-0.00066322,-0.0010083,-0.00095651,0.00054608,-0.00025509,0.00059344,0.0015286,-0.0017129,-0.00031159,0.0031678,-0.00035158,-0.0026698,0.00046461,-0.0013254 2.1513e-05,1.6189e-05,3.722e-05,1.6938e-05,3.1233e-05,1.1932e-05,-2.7166e-05,-9.3581e-05,-3.5986e-06,3.9831e-05,-2.1341e-05,-1.2543e-05,7.5996e-05,-0.00012249,2.0918e-05,0.00015724,-3.8762e-05,-0.00015704,4.3217e-05,3.2145e-05 6.6109e-06,1.6459e-05,-9.1131e-06,1.4275e-06,1.2899e-05,2.3828e-06,3.2338e-06,3.6379e-05,8.3008e-06,-3.0265e-06,-1.2249e-05,-2.7988e-05,1.9497e-05,-1.7907e-05,-1.5163e-05,-6.9237e-06,-6.5706e-06,3.7163e-05,1.3161e-05,-5.5171e-06 2.2796e-05,0.00022912,-0.00022186,-3.5074e-05,0.000159,-9.4681e-06,-2.9114e-05,0.0006043,-9.8817e-05,-0.00017087,-0.00014345,-0.0005743,0.00050611,-7.0954e-05,3.9203e-05,-0.00013981,3.1103e-05,0.00045924,9.7371e-05,-0.00029329 3.8871e-05,0.0013859,-0.0011626,-2.7155e-05,0.0010192,-3.3398e-05,0.00057168,0.0030749,-0.00042679,-0.00097055,-0.00035532,-0.0024599,0.0032821,-0.00077829,0.0012532,-0.0011556,0.00028197,0.0015784,0.0009582,-0.00015844 -3.8564e-05,0.0037787,-0.0036783,0.00021976,0.0025316,-0.00062221,0.0026469,0.0083635,-0.0021434,-0.0011361,0.0012164,-0.0061348,0.0086583,-0.00229,0.0026218,-0.0041339,-0.0010123,0.00287,0.004426,0.0012357 -0.00050862,0.0077101,-0.0089047,-0.00015976,0.0040142,-0.0035518,0.0074644,0.017066,-0.0067113,-0.00047874,0.007333,-0.011137,0.015245,-0.006007,0.00269,-0.0096626,-0.006217,0.0036662,0.011587,0.0061418 -0.0021474,0.013839,-0.018305,-0.0031353,0.0050858,-0.012404,0.017936,0.029549,-0.015006,-0.00065866,0.022373,-0.016693,0.02329,-0.011715,0.0013374,-0.018267,-0.020401,0.0052208,0.025723,0.01879 -0.0081315,0.021942,-0.035296,-0.011201,0.0075429,-0.032187,0.03353,0.042548,-0.027868,-0.0030855,0.047675,-0.018289,0.03361,-0.01645,-0.0013104,-0.022452,-0.050954,0.0094559,0.040599,0.041713 -0.021321,0.035741,-0.060147,-0.021695,0.010366,-0.060932,0.050319,0.04462,-0.04051,-0.011604,0.068639,-0.012059,0.046144,-0.0059106,0.003626,-0.0091018,-0.08648,0.017476,0.04101,0.075266 -0.040761,0.057176,-0.085057,-0.02468,0.0068506,-0.083762,0.061308,0.018682,-0.039838,-0.025356,0.053695,0.00013595,0.061835,0.034556,0.018719,0.023253,-0.096046,0.013521,0.011857,0.10462 -0.061078,0.084243,-0.088444,-0.0059579,-0.0053279,-0.078332,0.06364,-0.040189,-0.01232,-0.035627,-0.019392,0.0011063,0.070786,0.083448,0.031532,0.041242,-0.05629,-0.012484,-0.02585,0.094762 -0.071655,0.10226,-0.052713,0.035391,-0.018712,-0.033207,0.059632,-0.10072,0.025205,-0.031291,-0.10116,-0.029771,0.069414,0.091181,0.010363,0.0093032,-0.00096742,-0.032353,-0.021704,0.038114 -0.066651,0.10141,0.0091787,0.078896,-0.017654,0.029918,0.055396,-0.11067,0.029368,-0.021312,-0.11306,-0.079517,0.062507,0.037244,-0.033915,-0.044986,0.0058782,-0.0054987,0.033808,-0.024982 -0.047089,0.082401,0.061319,0.10198,0.0023365,0.077162,0.060944,-0.066138,-0.013271,-0.023873,-0.044406,-0.10772,0.060203,-0.037996,-0.065606,-0.067759,-0.027774,0.054347,0.083363,-0.052019 -0.01725,0.05309,0.075736,0.097775,0.036868,0.091654,0.083828,-0.0068063,-0.075566,-0.038972,0.045237,-0.089738,0.055812,-0.081282,-0.055593,-0.046439,-0.035625,0.095689,0.086843,-0.045679 0.015956,0.021283,0.05444,0.079901,0.065806,0.073006,0.11114,0.036082,-0.13573,-0.047568,0.08819,-0.053353,0.036302,-0.064553,-0.0091413,6.448e-05,-0.0016978,0.08299,0.056804,-0.036641 0.038441,-0.003643,0.01526,0.060615,0.060799,0.027103,0.1193,0.063637,-0.18556,-0.052955,0.045712,-0.032504,-0.0015737,-0.013096,0.031218,0.043543,0.044967,0.014721,0.03136,-0.035013 0.040539,-0.0068364,-0.021279,0.050739,0.017449,-0.033502,0.096486,0.088857,-0.1967,-0.0575,-0.063156,-0.024998,-0.046191,0.0089996,0.026588,0.059738,0.06307,-0.061843,0.030455,-0.035947 0.021996,0.013195,-0.032689,0.053838,-0.035342,-0.094494,0.055615,0.10786,-0.14487,-0.043446,-0.15709,-0.015322,-0.072282,-0.034202,-5.6581e-05,0.036447,0.041811,-0.080026,0.039041,-0.053096 -0.01294,0.039491,-0.0063754,0.066022,-0.057804,-0.13582,0.013452,0.1003,-0.052752,-0.0018791,-0.14466,-0.0064186,-0.035659,-0.10471,0.0048708,0.00096041,0.007028,-0.028205,0.022391,-0.092413 -0.050413,0.050003,0.036373,0.072166,-0.033352,-0.14042,-0.013594,0.060265,0.015153,0.031575,-0.032987,0.0058654,0.047634,-0.12031,0.037574,-0.0039237,-0.0032797,0.01472,-0.019391,-0.12683 -0.070073,0.038687,0.065077,0.063744,0.013676,-0.11099,-0.02341,0.009129,0.023163,0.02782,0.068337,0.024089,0.10756,-0.065377,0.041003,0.020065,0.01301,0.0019609,-0.042435,-0.11522 -0.064926,0.020755,0.065706,0.046033,0.045596,-0.068953,-0.020369,-0.023015,-0.0044311,0.0021043,0.089132,0.039701,0.10612,-0.0032095,0.0054148,0.039792,0.025303,-0.031499,-0.024232,-0.071432 -0.043342,0.0077002,0.048571,0.028691,0.046211,-0.03284,-0.014413,-0.026932,-0.025001,-0.013299,0.056158,0.038726,0.072541,0.022322,-0.026777,0.041593,0.020325,-0.042722,-0.0012885,-0.033723 -0.018328,0.0021724,0.026893,0.015502,0.027115,-0.01051,-0.0091991,-0.016337,-0.024446,-0.0087723,0.020232,0.02424,0.03996,0.010754,-0.03003,0.031138,0.0082685,-0.034443,0.0030785,-0.017465 -0.0030018,0.00089848,0.011026,0.0061636,0.0082922,-0.0017955,-0.0049109,-0.0062617,-0.012517,-0.00014555,0.0038483,0.0096035,0.019822,-0.0044703,-0.015169,0.018451,0.00013147,-0.019121,-0.0034684,-0.012997 0.00058385,0.0005797,0.0034175,0.0017894,0.0016121,-0.00016283,-0.0018236,-0.0020283,-0.0040081,0.0017418,0.00022691,0.0028095,0.007805,-0.0051378,-0.0032387,0.0083836,-0.00068099,-0.0077548,-0.002965,-0.006511 0.00016028,0.00016937,0.00064046,0.00027972,0.00031192,4.6968e-05,-0.00030346,-0.00072391,-0.00060883,0.0004998,-0.00036035,0.00042454,0.0014381,-0.0013083,-9.304e-05,0.0017507,-0.00029121,-0.0017852,-0.00029328,-0.00093058 2.6866e-05,2.4667e-05,4.0163e-05,5.9514e-06,2.2903e-05,-7.7571e-07,-2.2525e-05,-0.00010839,-1.2703e-05,4.3874e-05,-2.9108e-05,-1.1641e-05,0.00013198,-0.00013631,5.1534e-05,5.0994e-05,-8.0857e-05,-0.00018812,-1.195e-05,-3.8029e-07 8.2552e-06,2.5298e-05,-1.6695e-05,-1.8811e-07,2.0187e-05,2.6778e-06,9.2791e-07,5.8241e-05,8.9875e-06,-8.3928e-06,-1.8558e-05,-5.3332e-05,3.2348e-05,-2.0728e-05,-2.0126e-05,-1.1797e-05,-1.5971e-05,5.9257e-05,2.0157e-05,-1.7832e-05 1.573e-05,0.00025461,-0.00024537,-6.6415e-05,0.0002244,1.1792e-05,-6.2158e-05,0.00065744,-0.00016212,-0.00015446,-0.00017411,-0.00068639,0.0006125,-7.6738e-05,0.00016518,-0.000165,7.2165e-05,0.00058469,0.00012956,-0.00031819 -5.738e-06,0.0014522,-0.0011054,-3.1772e-06,0.0011317,3.779e-05,0.00043921,0.0031447,-0.00057262,-0.00085574,-0.00046269,-0.0024481,0.0035045,-0.00081657,0.0016508,-0.00087729,0.00042386,0.0019041,0.00062389,-0.00046595 -0.00016725,0.0039332,-0.0032049,0.00026796,0.0028141,-0.0006289,0.0021783,0.0082092,-0.0024402,-0.00096957,0.00058468,-0.0056459,0.0092841,-0.0020758,0.0039938,-0.0033091,-0.00035779,0.0042634,0.0031824,0.00046029 -0.0010109,0.0087046,-0.0074909,-0.000543,0.0052671,-0.0037534,0.0056917,0.016565,-0.007656,-0.00087739,0.0061852,-0.010446,0.017393,-0.0043896,0.006964,-0.0086835,-0.0056206,0.007664,0.0092627,0.0041642 -0.0045851,0.016287,-0.016287,-0.0055438,0.0096516,-0.014195,0.013942,0.027378,-0.017859,-0.0028441,0.021563,-0.014923,0.028303,-0.0092464,0.0092162,-0.016561,-0.023394,0.014586,0.019106,0.014631 -0.014773,0.027826,-0.033599,-0.015795,0.017388,-0.036393,0.02746,0.035235,-0.034811,-0.0099732,0.045163,-0.011132,0.044121,-0.010263,0.01294,-0.01716,-0.060325,0.03086,0.026171,0.035855 -0.033397,0.048203,-0.057228,-0.025319,0.024105,-0.063635,0.038291,0.024862,-0.050328,-0.022998,0.054037,0.0041298,0.058814,0.010913,0.028458,0.004921,-0.090515,0.053959,0.011281,0.06402 -0.056256,0.077445,-0.073803,-0.021137,0.020631,-0.074173,0.040927,-0.019443,-0.048871,-0.029531,0.011232,0.024494,0.064676,0.058142,0.049169,0.044617,-0.075605,0.058604,-0.02747,0.081538 -0.07348,0.10218,-0.059271,0.0093229,0.0057211,-0.041981,0.034473,-0.086264,-0.02039,-0.01411,-0.080709,0.019282,0.059893,0.086973,0.046426,0.065386,-0.004652,0.035826,-0.048921,0.060154 -0.074751,0.1037,-0.0065763,0.054767,-0.0090607,0.02506,0.025243,-0.12094,0.0041784,0.017016,-0.14082,-0.027089,0.057366,0.048887,0.0028084,0.041522,0.055849,0.019082,-0.0072388,0.011107 -0.060812,0.076916,0.052873,0.086886,-0.007573,0.08793,0.021326,-0.08574,-0.0093362,0.035171,-0.10712,-0.080869,0.065739,-0.033333,-0.045055,0.0093434,0.050112,0.044279,0.059952,-0.021678 -0.036716,0.037966,0.080539,0.088946,0.012076,0.11468,0.032526,-0.0092563,-0.057163,0.022609,-0.013983,-0.08705,0.081887,-0.096948,-0.05429,0.0085497,0.022818,0.084951,0.082865,-0.016356 -0.0042667,-0.00038178,0.065702,0.071043,0.042199,0.107,0.061184,0.048603,-0.10252,-0.0027324,0.065429,-0.040311,0.086644,-0.10534,-0.01829,0.023138,0.04186,0.09972,0.050015,-0.0026545 0.031072,-0.035009,0.026759,0.047783,0.060853,0.072796,0.085297,0.067427,-0.14028,-0.016196,0.077291,0.0052065,0.067098,-0.054767,0.042848,0.036471,0.095087,0.066511,0.005815,-0.0029526 0.05358,-0.053077,-0.014931,0.030661,0.039723,0.022777,0.085126,0.072812,-0.17217,-0.029338,0.0081522,0.025985,0.038599,0.0071121,0.072259,0.034394,0.13516,0.0018892,-0.0064454,-0.0057315 0.052478,-0.037468,-0.044013,0.027726,-0.018251,-0.036699,0.061141,0.085982,-0.17085,-0.041138,-0.10783,0.032444,-0.0014714,0.022272,0.03903,0.011944,0.12716,-0.048618,0.016056,-0.0011491 0.031754,0.0099108,-0.043975,0.036483,-0.076362,-0.095617,0.028011,0.10135,-0.10726,-0.027122,-0.18174,0.029313,-0.021706,-0.033731,-0.01143,-0.033356,0.074855,-0.031608,0.040883,-0.021448 -0.0065122,0.057207,-0.0087282,0.048166,-0.08957,-0.13099,0.004753,0.095348,-0.015089,0.019746,-0.12967,0.012116,0.013326,-0.10879,0.00094937,-0.063573,0.021367,0.031142,0.0078371,-0.083095 -0.049097,0.071772,0.036143,0.049746,-0.049105,-0.12819,-0.0035937,0.060329,0.036248,0.052856,0.00025769,-0.0022083,0.074315,-0.11878,0.063298,-0.046942,0.0031916,0.045898,-0.061061,-0.13007 -0.073534,0.050321,0.059863,0.04011,0.012149,-0.097483,-0.0036171,0.01052,0.028018,0.04068,0.084028,0.0068794,0.10463,-0.065296,0.082679,-0.0057538,0.018292,-0.0018464,-0.086178,-0.11366 -0.071566,0.021802,0.056114,0.026372,0.05198,-0.061484,-0.00024005,-0.023672,-0.0051929,0.0036311,0.08222,0.02873,0.086883,-0.0055431,0.037768,0.019681,0.024116,-0.040265,-0.051604,-0.062896 -0.051443,0.0043163,0.038577,0.015323,0.05541,-0.032446,0.0019106,-0.030039,-0.025138,-0.019975,0.042641,0.035926,0.052225,0.020259,-0.01213,0.023411,0.011898,-0.041482,-0.011149,-0.02481 -0.024733,-0.0010525,0.020577,0.0080752,0.033569,-0.012335,0.00041677,-0.019066,-0.022652,-0.016704,0.010846,0.024651,0.025749,0.014607,-0.026221,0.016106,0.0019886,-0.025244,0.0032348,-0.0097497 -0.0057214,-0.00027338,0.0075495,0.0027374,0.0096251,-0.0027,-0.0010853,-0.0074068,-0.009916,-0.0037308,0.00080386,0.0083676,0.011745,0.00055572,-0.012279,0.0084707,-0.0011054,-0.011987,-0.0015754,-0.0050992 0.00015675,0.0002945,0.0019352,0.0005145,0.00063771,-0.00027637,-0.00076712,-0.0017154,-0.0020005,0.0011984,0.0001913,0.0009483,0.0046361,-0.0026706,-0.0012021,0.0031184,-0.00027626,-0.0044887,-0.0028852,-0.0027319 0.00010077,9.5592e-05,0.00037589,1.1127e-05,0.0001403,4.4344e-05,-0.00011168,-0.00050933,-0.00030659,0.00035762,-0.00028431,0.0001451,0.00088088,-0.00075487,0.00016929,0.00065481,-0.00030806,-0.0010761,-0.00042704,-0.00046652 1.7881e-05,1.9927e-05,3.2259e-05,2.9685e-06,1.0211e-05,-2.6371e-06,-1.5645e-05,-0.00011001,-1.2681e-05,2.4256e-05,-2.1511e-05,-2.6467e-05,8.5809e-05,-8.9588e-05,4.2802e-05,-3.0763e-06,-9.1477e-05,-0.00015809,-3.2131e-05,1.3362e-05 4.5937e-06,1.5656e-05,-1.2014e-05,-1.5622e-06,1.4259e-05,1.6753e-07,-1.7918e-06,3.2236e-05,1.79e-06,-1.4535e-05,-1.5426e-05,-3.3173e-05,1.9186e-05,-1.1266e-05,-9.3347e-06,-1.4242e-06,-1.3453e-05,3.2839e-05,2.475e-06,-9.8486e-06 1.6571e-05,0.00016903,-0.00017562,-6.6875e-05,0.00017967,1.8965e-05,-8.3484e-05,0.00043744,-0.00014108,-5.0347e-05,-0.00014896,-0.0004899,0.00039607,-2.6366e-05,0.00010293,-0.00013152,8.1526e-05,0.00048114,7.7351e-05,-0.00021234 -4.108e-05,0.0011259,-0.00081384,-8.9542e-06,0.00095338,5.6558e-05,8.4999e-05,0.0024523,-0.00061539,-0.00034151,-0.00038791,-0.0017812,0.0027337,-0.00060247,0.0014913,-0.00051292,0.00052814,0.0017806,0.00019256,-0.00069895 -0.00032236,0.002989,-0.0022238,-6.7538e-05,0.0024102,-0.00044335,0.00081215,0.0060973,-0.0025195,-0.00013289,0.0003345,-0.0038251,0.0071404,-0.0014106,0.0038318,-0.0024605,0.00037217,0.0041348,0.0015232,-0.00040443 -0.0017505,0.0072982,-0.0056958,-0.0016028,0.0052341,-0.0038417,0.0029496,0.012608,-0.0080199,-4.8981e-05,0.0062435,-0.0073594,0.014338,-0.0029868,0.0074722,-0.0076871,-0.0045597,0.0087409,0.0058703,0.0014377 -0.0083034,0.014907,-0.014405,-0.0088493,0.012918,-0.016322,0.0091895,0.02027,-0.020683,-0.0041577,0.022779,-0.0081233,0.026186,-0.0063243,0.011926,-0.015299,-0.026356,0.019991,0.011869,0.0077381 -0.023474,0.028966,-0.030941,-0.02103,0.025411,-0.039769,0.018498,0.020374,-0.040215,-0.014807,0.042887,0.0042098,0.041802,-0.0014772,0.02171,-0.012319,-0.062899,0.046074,0.009497,0.022594 -0.047252,0.054957,-0.050623,-0.028247,0.034405,-0.061228,0.02143,-0.0021647,-0.058817,-0.026482,0.037398,0.031232,0.047934,0.030646,0.044312,0.015471,-0.078091,0.077623,-0.015489,0.040489 -0.070948,0.086241,-0.0563,-0.016112,0.028145,-0.052871,0.014509,-0.057913,-0.055936,-0.014767,-0.026951,0.05449,0.035785,0.073043,0.05804,0.060926,-0.03434,0.081345,-0.053204,0.050827 -0.081953,0.099752,-0.028595,0.021038,0.0064372,0.003787,0.00033691,-0.1145,-0.031742,0.029834,-0.1137,0.03629,0.020259,0.070081,0.02844,0.085873,0.052383,0.047665,-0.053263,0.036416 -0.074005,0.076436,0.02189,0.063149,-0.013984,0.081157,-0.0098327,-0.11261,-0.01914,0.074513,-0.13327,-0.024523,0.0309,0.003549,-0.035497,0.073274,0.096826,0.024931,0.00030683,0.019106 -0.05418,0.026423,0.058707,0.083141,-0.017535,0.12745,-0.0076808,-0.04349,-0.037795,0.080413,-0.06417,-0.068924,0.065202,-0.070618,-0.071514,0.053742,0.073375,0.038917,0.038944,0.024559 -0.029137,-0.022593,0.054743,0.076533,-0.0051903,0.12678,0.010036,0.035688,-0.070861,0.047719,0.024795,-0.05204,0.094569,-0.097138,-0.054464,0.044407,0.0522,0.061718,0.023723,0.045324 0.0048455,-0.060336,0.020887,0.057218,0.017938,0.10058,0.04034,0.068444,-0.094313,0.014242,0.075636,0.0084311,0.094586,-0.071441,0.0014182,0.023831,0.083946,0.063739,-0.022526,0.041746 0.042174,-0.089421,-0.017215,0.034995,0.027522,0.058089,0.055604,0.060001,-0.11928,-0.00032548,0.05247,0.050637,0.071765,-0.0084986,0.067237,-0.0041054,0.13059,0.030778,-0.055309,0.024599 0.060095,-0.092755,-0.045141,0.0234,-0.0049165,0.010375,0.051062,0.046524,-0.13967,-0.015561,-0.029293,0.070637,0.048688,0.037826,0.076231,-0.038883,0.14857,-0.012819,-0.042228,0.017554 0.052924,-0.052499,-0.054933,0.026478,-0.070597,-0.047623,0.030626,0.049985,-0.12796,-0.020882,-0.13765,0.071283,0.013339,0.033087,0.018928,-0.075147,0.11627,-0.0221,0.0060824,0.03039 0.027127,0.021949,-0.03781,0.033102,-0.1188,-0.098139,0.0080193,0.066784,-0.054623,0.0067748,-0.17047,0.051198,0.0083853,-0.03528,-0.040814,-0.10976,0.056914,0.0315,0.034542,0.0032898 -0.012462,0.08056,0.0036204,0.034825,-0.10988,-0.11585,0.0033426,0.074339,0.023333,0.054438,-0.077727,0.0085904,0.043362,-0.092781,-0.0020542,-0.10835,0.011468,0.082904,-0.015599,-0.063423 -0.054572,0.086961,0.041663,0.026178,-0.053375,-0.10093,0.0068412,0.054028,0.046917,0.073618,0.043536,-0.019506,0.081627,-0.087426,0.086873,-0.067395,0.0075475,0.052114,-0.08779,-0.10424 -0.078223,0.053757,0.054837,0.015121,0.014158,-0.07024,0.012814,0.012235,0.021869,0.047329,0.087918,-0.0084916,0.084722,-0.042298,0.11271,-0.020909,0.02483,-0.020876,-0.098479,-0.08356 -0.076708,0.018479,0.044538,0.0057962,0.056255,-0.044448,0.014879,-0.022837,-0.012006,0.0026122,0.06056,0.022676,0.057129,0.00095556,0.057058,0.0038304,0.023149,-0.053309,-0.052569,-0.041119 -0.056846,0.00043386,0.027826,0.0019185,0.06114,-0.027693,0.01363,-0.03248,-0.026571,-0.024294,0.022335,0.036823,0.028812,0.018464,-0.0058018,0.010182,0.0026177,-0.039538,-0.008874,-0.014894 -0.030306,-0.0033284,0.014032,0.00042762,0.039721,-0.014579,0.0085827,-0.022741,-0.021872,-0.02282,0.0011935,0.027925,0.013361,0.015245,-0.027092,0.007722,-0.0093624,-0.017783,0.0062922,-0.0063251 -0.0084028,-0.0010996,0.0047531,-0.00025064,0.012032,-0.0038558,0.0020536,-0.0087028,-0.0085087,-0.0073576,-0.0016559,0.0096178,0.0053265,0.0035779,-0.012808,0.0035073,-0.0052484,-0.0072866,0.0016463,-0.0014941 -0.00012443,0.00014744,0.00071619,-0.00030063,0.00043131,-0.00022442,-0.00010776,-0.0012598,-0.00074051,0.00040549,0.00018176,0.00044901,0.00186,-0.0010341,-0.00036978,0.00057547,-0.00052016,-0.0023396,-0.0016889,-0.00022528 3.4988e-05,6.5231e-05,0.00015306,-4.0983e-05,2.7745e-05,5.9876e-05,-1.8895e-05,-0.00031166,-0.00014657,0.00014853,-4.6168e-05,-4.1193e-05,0.00034156,-0.00033511,9.6582e-05,0.00016323,-0.00018075,-0.0007342,-0.00034625,-4.921e-05 9.352e-06,6.2578e-06,5.1835e-06,-1.4904e-05,1.0568e-05,1.2148e-05,-2.8751e-06,-3.5207e-05,-2.0532e-06,1.3416e-05,-9.3341e-06,5.9856e-06,2.4775e-05,-2.5064e-05,7.0417e-06,-6.0761e-06,-1.4092e-05,-5.8813e-05,-5.827e-06,1.3572e-05 2.4841e-06,1.1274e-05,-7.9065e-06,1.7227e-06,6.2142e-06,-6.5648e-07,2.9123e-06,1.7042e-05,3.2157e-06,-1.9018e-05,-1.0084e-05,-1.5233e-05,8.4214e-06,-9.5746e-06,-1.027e-05,1.1926e-06,-1.271e-05,1.9787e-05,-5.3651e-06,-1.1234e-06 5.4765e-06,9.4547e-05,-9.8271e-05,-4.9548e-05,9.4786e-05,1.8254e-05,-8.5262e-05,0.00026669,-9.6848e-05,-1.5118e-06,-8.5377e-05,-0.00025442,0.00019014,3.362e-06,6.1234e-05,-7.1407e-05,7.3061e-05,0.00030523,6.3452e-07,-0.00012942 -4.3605e-05,0.00060033,-0.00044808,-8.2208e-05,0.00060128,7.3257e-05,-0.00016629,0.001387,-0.00053486,1.3377e-05,-0.00025478,-0.0010487,0.0015288,-0.0002926,0.00083734,-0.00025989,0.00050041,0.001202,-0.00013343,-0.00059797 -0.00040334,0.0019017,-0.0013472,-0.00046908,0.0016351,-0.00036862,-0.00023987,0.0036405,-0.0024,0.00051456,0.00072012,-0.0021129,0.004257,-0.0007118,0.0025619,-0.0022188,0.00039503,0.0030025,0.00033845,-0.00052524 -0.0025415,0.005544,-0.0043613,-0.0029749,0.0050947,-0.0040672,0.00048606,0.0080325,-0.0080588,-6.5474e-05,0.0070995,-0.0041836,0.0098812,-0.0015832,0.0059745,-0.0077909,-0.005103,0.0077754,0.0036291,-0.0006322 -0.012534,0.01314,-0.012772,-0.012284,0.016887,-0.018918,0.005907,0.011923,-0.02227,-0.0073653,0.024088,0.00015621,0.021868,-0.0026269,0.011195,-0.015451,-0.030482,0.022157,0.0066542,0.00084151 -0.033364,0.029816,-0.026898,-0.025161,0.034032,-0.042681,0.010329,0.0042383,-0.044057,-0.020653,0.039654,0.022567,0.032422,0.010642,0.025202,-0.01094,-0.061795,0.054283,-0.0005848,0.0083071 -0.060776,0.059428,-0.039444,-0.029335,0.043334,-0.054682,0.0043632,-0.026645,-0.063711,-0.023828,0.020304,0.05789,0.021566,0.046042,0.050756,0.01854,-0.056613,0.088205,-0.028366,0.017664 -0.082011,0.088249,-0.03548,-0.012407,0.029827,-0.025365,-0.013233,-0.079554,-0.064056,0.0097264,-0.050527,0.07689,-0.0098516,0.072382,0.050042,0.063774,0.0092326,0.081585,-0.057096,0.024527 -0.08464,0.086805,-0.0073418,0.026214,-0.0012353,0.048142,-0.032837,-0.11145,-0.04886,0.073493,-0.11401,0.046118,-0.028126,0.044064,-0.0059373,0.090593,0.082216,0.029906,-0.045282,0.029454 -0.068885,0.043206,0.025776,0.064327,-0.028827,0.11909,-0.039635,-0.079442,-0.042432,0.1158,-0.093552,-0.015427,0.0032974,-0.02084,-0.078032,0.088279,0.085583,-0.0069589,-0.014935,0.044607 -0.045671,-0.016976,0.032622,0.080837,-0.040473,0.13939,-0.030797,-0.0043929,-0.052746,0.10229,-0.012164,-0.041211,0.05961,-0.060863,-0.098575,0.072116,0.040396,-0.0032416,-0.016772,0.068999 -0.020728,-0.063409,0.0081623,0.078725,-0.038165,0.11381,-0.010746,0.049439,-0.066465,0.05788,0.053063,-0.0083356,0.097323,-0.052314,-0.066042,0.042537,0.021224,0.012871,-0.055294,0.081451 0.016478,-0.097743,-0.025648,0.063347,-0.022135,0.078165,0.016796,0.050366,-0.079012,0.024745,0.070817,0.051594,0.10092,-0.010972,0.0001616,-0.012296,0.05686,0.021722,-0.092358,0.053944 0.052504,-0.11759,-0.048877,0.041613,-0.018724,0.038342,0.025044,0.024583,-0.098584,0.012052,0.02456,0.086359,0.084303,0.042999,0.056024,-0.070566,0.089519,0.0066893,-0.095692,0.025998 0.062327,-0.10278,-0.057609,0.032062,-0.05774,-8.9127e-05,0.02617,0.0036839,-0.11003,0.0046227,-0.051294,0.099449,0.061242,0.065908,0.045523,-0.11884,0.092495,0.00015731,-0.059486,0.025747 0.045805,-0.037534,-0.047503,0.033819,-0.11927,-0.051614,0.013118,0.011071,-0.083176,0.022119,-0.13555,0.083785,0.027608,0.040584,-0.02988,-0.14831,0.060896,0.030002,0.0074652,0.051444 0.012139,0.050486,-0.020562,0.030312,-0.14155,-0.081369,0.0058012,0.045376,-0.0069645,0.061689,-0.11916,0.039788,0.026794,-0.021924,-0.072007,-0.15132,0.020891,0.093524,0.019889,0.02802 -0.028477,0.099102,0.016011,0.016661,-0.10862,-0.078717,0.012119,0.071092,0.042109,0.096098,-0.015324,-0.014551,0.050699,-0.053015,0.0038027,-0.11895,0.0047962,0.10491,-0.040432,-0.024309 -0.065025,0.088535,0.042603,-0.00074085,-0.044668,-0.055648,0.018793,0.060606,0.037519,0.094316,0.068421,-0.038177,0.070759,-0.040074,0.10601,-0.072619,0.02091,0.033986,-0.094203,-0.051411 -0.083358,0.046825,0.046476,-0.012028,0.018081,-0.031266,0.023969,0.015425,0.0049754,0.0538,0.069317,-0.015457,0.05936,-0.014463,0.12426,-0.0359,0.037754,-0.047133,-0.084643,-0.03759 -0.079549,0.012289,0.034182,-0.013939,0.056468,-0.022857,0.023942,-0.024375,-0.021252,0.0059257,0.027538,0.025274,0.030465,0.0067731,0.059954,-0.013245,0.026529,-0.062606,-0.039666,-0.0182 -0.060089,-0.0027146,0.020079,-0.010938,0.061999,-0.0222,0.021375,-0.036511,-0.029109,-0.022848,0.0010857,0.04244,0.01305,0.014402,-0.006969,-0.001417,-0.0029857,-0.036195,-0.003533,-0.009357 -0.034133,-0.004308,0.0092889,-0.0069807,0.04339,-0.016819,0.015194,-0.026656,-0.022278,-0.025259,-0.0064479,0.033594,0.0074008,0.011493,-0.029088,0.002873,-0.01908,-0.012019,0.0069229,-0.0070748 -0.010635,-0.0012498,0.002847,-0.0038241,0.014637,-0.0061243,0.0055275,-0.010463,-0.0087471,-0.0099651,-0.0037425,0.013223,0.0033984,0.0033582,-0.014392,0.0020324,-0.011027,-0.0041492,0.0024263,-0.0017678 -0.00038249,0.00014005,0.0002792,-0.00087262,0.00038072,-0.00035503,0.00035627,-0.0011079,-0.00063096,-7.5613e-06,7.1551e-05,0.00071881,0.00073359,-0.0002199,-0.00036058,-5.0372e-05,-0.00074082,-0.0014983,-0.00059299,0.00065653 6.8756e-06,2.9798e-05,8.5778e-05,-8.3881e-05,-2.406e-05,6.5673e-05,-3.0216e-05,-0.00017828,-0.00011438,0.00011473,-8.8736e-06,-9.1338e-05,0.00010982,-0.00010062,7.383e-06,-6.5779e-05,-6.5932e-05,-0.00044228,-0.00014654,5.4844e-05 6.5419e-06,-1.0373e-06,2.2106e-06,-1.3453e-05,1.7736e-06,9.8527e-06,4.7262e-06,-2.7302e-05,7.9328e-06,1.6363e-05,7.6187e-06,-1.4792e-06,1.8574e-05,-8.5208e-06,8.014e-06,-5.1203e-07,-3.517e-07,-5.2377e-05,5.916e-06,2.3682e-05 1.3441e-06,-5.2634e-07,4.7612e-08,-4.2125e-07,1.4141e-06,3.4966e-07,7.6228e-07,-1.1572e-06,3.0593e-07,5.3217e-07,1.7234e-06,5.4264e-07,-1.1466e-06,1.2036e-06,1.1888e-06,-1.7153e-06,9.7638e-07,7.3728e-07,-7.6586e-07,-1.6235e-06 3.6499e-07,3.4091e-05,-3.271e-05,-2.6602e-05,3.2454e-05,9.4672e-06,-5.4973e-05,0.00011266,-4.1429e-05,3.0587e-05,-2.122e-05,-8.3937e-05,4.6073e-05,-1.5265e-06,2.5077e-05,-4.07e-05,2.3698e-05,0.00010304,-9.1445e-06,-4.743e-05 -3.3676e-05,0.00026942,-0.00021551,-8.2147e-05,0.00030259,3.9598e-05,-0.00015073,0.00066451,-0.00033633,8.7837e-05,-0.00013063,-0.00054005,0.00070714,-0.0001409,0.00034754,-0.00020044,0.00029458,0.00066428,-0.00011963,-0.00034017 -0.00038838,0.0012524,-0.00077553,-0.00066722,0.0011461,-0.00044833,-0.00062701,0.0021917,-0.0019005,0.0005189,0.00097501,-0.0013207,0.0024764,-0.00037777,0.0017118,-0.0019408,0.00025356,0.0020134,0.00014541,-0.00064094 -0.003575,0.0045914,-0.0033531,-0.0036986,0.0057161,-0.0048171,-0.00052554,0.0053003,-0.0076965,-0.0012282,0.0079702,-0.0018284,0.0074845,-0.00034306,0.005183,-0.008109,-0.0065098,0.0065702,0.0029415,-0.0020985 -0.018055,0.012686,-0.010207,-0.014352,0.022861,-0.022298,0.004433,0.0042026,-0.023982,-0.013478,0.023859,0.0091664,0.018793,0.0026965,0.0094158,-0.015831,-0.03324,0.023802,0.0040681,-0.0053275 -0.043528,0.031596,-0.019026,-0.027463,0.043219,-0.043352,0.0027562,-0.0088282,-0.04752,-0.026161,0.033958,0.039639,0.018996,0.022123,0.026329,-0.011561,-0.051228,0.060494,-0.0045236,-0.0069774 -0.072141,0.062039,-0.022964,-0.031457,0.048948,-0.04381,-0.013152,-0.040368,-0.068443,-0.018291,0.0081708,0.076734,-0.010725,0.050099,0.052564,0.013243,-0.026402,0.08777,-0.027279,-0.0063112 -0.088344,0.085882,-0.01404,-0.015331,0.02517,0.001607,-0.039865,-0.079255,-0.075605,0.030102,-0.053853,0.086968,-0.060254,0.054301,0.042462,0.050616,0.037927,0.064055,-0.04525,0.00064733 -0.081706,0.07539,0.0055177,0.020406,-0.016829,0.078279,-0.063325,-0.085558,-0.068891,0.095455,-0.087281,0.053873,-0.076116,0.018402,-0.024122,0.077401,0.066581,-0.0059397,-0.039024,0.015483 -0.059072,0.027391,0.016742,0.055462,-0.0528,0.13114,-0.068065,-0.043306,-0.065218,0.12513,-0.040902,0.011175,-0.029372,-0.021965,-0.094157,0.081139,0.019534,-0.054004,-0.040366,0.037083 -0.033943,-0.026432,0.0034907,0.076036,-0.073403,0.12527,-0.057777,0.0084531,-0.065705,0.10089,0.033684,0.011903,0.039318,-0.025962,-0.10817,0.067017,-0.046771,-0.054544,-0.073586,0.050626 -0.0084441,-0.065555,-0.023851,0.082371,-0.079759,0.084849,-0.040697,0.024322,-0.06989,0.057918,0.069502,0.052155,0.085493,-0.0023988,-0.073227,0.028802,-0.062377,-0.035592,-0.11543,0.04097 0.033214,-0.098359,-0.043479,0.068338,-0.068614,0.049472,-0.020216,-0.0043233,-0.081125,0.026893,0.062754,0.10001,0.10153,0.040061,-0.0048416,-0.041213,-0.029272,-0.012608,-0.13333,0.00060303 0.062143,-0.10708,-0.049394,0.045505,-0.071044,0.02386,-0.0090156,-0.034733,-0.090013,0.018365,0.020116,0.11912,0.088342,0.076805,0.031206,-0.10652,-0.0068004,0.0030157,-0.10969,-0.022467 0.064118,-0.075694,-0.041449,0.035748,-0.10857,-0.005297,0.0034781,-0.047775,-0.085817,0.024846,-0.036095,0.11048,0.056513,0.087907,0.001157,-0.14405,0.0041468,0.033709,-0.045609,-0.0027218 0.034844,0.0044287,-0.025627,0.034643,-0.15103,-0.039823,0.0057295,-0.009823,-0.039242,0.061001,-0.082348,0.067816,0.018106,0.05932,-0.086331,-0.14386,-0.0064886,0.085451,0.021702,0.046774 -0.0049971,0.081101,-0.0080848,0.021903,-0.14228,-0.041997,0.0085378,0.055865,0.021613,0.10085,-0.041473,0.0083122,0.0088955,0.020652,-0.092067,-0.12401,-0.013316,0.1281,0.0069161,0.05162 -0.044768,0.10175,0.013851,-0.00013457,-0.095068,-0.024474,0.013075,0.096725,0.038256,0.12173,0.035521,-0.041944,0.027744,0.0081121,0.014728,-0.098889,0.0014631,0.10002,-0.050193,0.029279 -0.075612,0.073748,0.030673,-0.022008,-0.03466,-0.0021456,0.01788,0.077681,0.014612,0.10675,0.070442,-0.049757,0.044062,0.007938,0.11538,-0.078952,0.033591,0.010482,-0.073606,0.01397 -0.08792,0.032079,0.03402,-0.031644,0.019647,0.0076031,0.023716,0.018486,-0.016395,0.064992,0.038927,-0.014775,0.031166,0.0071429,0.1173,-0.058229,0.050013,-0.060538,-0.051126,0.010398 -0.081769,0.0053451,0.025799,-0.029062,0.052484,-0.0035954,0.026562,-0.030488,-0.031268,0.017716,-0.002259,0.030277,0.010916,0.0085832,0.049266,-0.033982,0.030589,-0.061929,-0.017967,0.0049156 -0.062026,-0.0038298,0.014315,-0.022269,0.058331,-0.017201,0.026404,-0.043201,-0.032027,-0.015374,-0.015035,0.04936,0.0049934,0.0094522,-0.010403,-0.012525,-0.0055103,-0.030101,0.0022056,-0.0025352 -0.036265,-0.0036041,0.0059846,-0.014652,0.042977,-0.018242,0.020328,-0.030649,-0.023912,-0.023064,-0.011177,0.039757,0.005964,0.006498,-0.030002,-0.0015997,-0.024607,-0.0073415,0.0050514,-0.0061917 -0.012105,-0.00078418,0.0014362,-0.0080086,0.015725,-0.0081496,0.0088799,-0.01218,-0.0099919,-0.010559,-0.0046013,0.017333,0.0039654,0.00097526,-0.015481,0.00089187,-0.015774,-0.002437,0.00011885,-0.0022312 -0.00054469,0.00020588,0.00014333,-0.0017201,0.00049898,-0.000531,0.00075017,-0.0011934,-0.00093542,-0.00021747,5.7675e-05,0.0015941,0.00068546,-0.00012694,-0.00064672,-0.00022002,-0.0011108,-0.0016544,-0.00061063,0.0011427 3.7777e-05,2.5399e-05,6.7359e-05,-0.00019713,-4.6037e-06,6.9172e-05,-4.6011e-05,-0.00012558,-0.00011151,3.6887e-05,6.1967e-05,-6.0457e-05,6.5838e-05,-6.3616e-05,-3.1527e-05,-7.6476e-05,2.9058e-05,-0.0004586,-1.3885e-05,0.00020778 8.3541e-06,2.8969e-06,7.3049e-07,-2.5014e-05,1.6269e-05,1.6619e-05,-1.2937e-05,-1.2039e-05,-4.7395e-06,2.1066e-06,3.1936e-06,-2.0917e-05,3.328e-05,-1.2092e-05,-8.2911e-07,6.7116e-06,-5.3223e-06,-7.1349e-05,-1.3255e-05,5.2272e-05 -1.207e-07,-2.2657e-07,-3.2307e-06,2.4647e-06,2.0608e-06,5.7385e-06,-3.0666e-06,-3.2234e-07,5.8579e-06,5.0959e-07,-3.2524e-06,-6.5343e-06,6.4804e-07,1.3028e-05,-4.0355e-06,-5.2071e-06,-7.2473e-06,-2.6085e-06,5.6059e-06,-2.0983e-06 -1.2531e-06,5.1033e-06,-9.6882e-06,-9.8539e-06,6.7303e-06,-6.5434e-07,-2.7158e-05,3.3285e-05,1.0403e-06,1.9523e-05,-1.5106e-06,-1.7282e-05,5.317e-06,1.4058e-05,3.2431e-06,-2.4933e-05,6.9824e-06,3.7944e-05,-1.2633e-05,-2.409e-05 -2.3249e-05,0.00010238,-9.7399e-05,-5.0471e-05,0.00011895,2.8528e-06,-9.7553e-05,0.00025451,-0.00013858,9.414e-05,-3.2432e-05,-0.00020867,0.00024834,-1.3305e-05,0.00013477,-0.00017643,0.0001,0.00029392,9.6115e-07,-0.00015463 -0.00038312,0.00089321,-0.00045165,-0.00077473,0.0007503,-0.00051006,-0.00084207,0.0014415,-0.0014118,0.00032058,0.0011473,-0.00084429,0.0013619,-5.4331e-05,0.0010576,-0.0018113,3.8096e-05,0.0015624,0.00022947,-0.00074878 -0.0050886,0.0040616,-0.0019005,-0.0040122,0.0068518,-0.0056478,-0.0010069,0.0031653,-0.0075676,-0.0033609,0.0079522,0.00073767,0.0063359,0.0014826,0.0042592,-0.0075597,-0.0062473,0.0065617,0.002435,-0.0031823 -0.024306,0.012196,-0.0049639,-0.01506,0.029873,-0.02431,0.0026696,-0.0025373,-0.025617,-0.019188,0.021417,0.018906,0.014822,0.0095825,0.0048262,-0.015004,-0.028888,0.026576,0.0023753,-0.011907 -0.052761,0.031648,-0.005735,-0.029173,0.050689,-0.040418,-0.0052353,-0.017497,-0.04947,-0.029837,0.027962,0.053284,0.0036902,0.028875,0.022163,-0.013968,-0.028651,0.06113,-0.0041121,-0.021395 -0.080476,0.059806,-0.0015381,-0.037421,0.049887,-0.031945,-0.028068,-0.042011,-0.070986,-0.015611,0.0051804,0.085199,-0.043487,0.039816,0.049745,-0.0002508,0.0078701,0.077807,-0.01941,-0.026498 -0.09044,0.08122,0.008597,-0.029559,0.013817,0.01872,-0.05985,-0.062789,-0.081304,0.032386,-0.037851,0.086253,-0.10321,0.023918,0.048495,0.023268,0.048992,0.037897,-0.028552,-0.023872 -0.075697,0.072868,0.018755,-0.0041221,-0.039784,0.086552,-0.087106,-0.054536,-0.080686,0.083476,-0.044053,0.059919,-0.11667,-0.0096478,-0.0033818,0.044847,0.025625,-0.039774,-0.024782,-0.018096 -0.047019,0.037626,0.015549,0.026776,-0.083571,0.11728,-0.095728,-0.023973,-0.078474,0.096422,0.0093323,0.04555,-0.069417,-0.027168,-0.060314,0.053376,-0.059786,-0.086543,-0.033958,-0.020093 -0.020213,-0.00020488,-0.0024378,0.051113,-0.10927,0.092486,-0.091491,-0.0077594,-0.077486,0.069093,0.066213,0.06754,-0.0041074,-0.015821,-0.073485,0.04467,-0.13273,-0.08638,-0.064875,-0.033529 0.0075454,-0.033164,-0.018649,0.05903,-0.12115,0.045238,-0.081787,-0.028815,-0.085682,0.030569,0.07853,0.10408,0.045716,0.010473,-0.038444,0.012778,-0.14375,-0.066604,-0.090124,-0.057166 0.049896,-0.062944,-0.022243,0.042304,-0.11219,0.017642,-0.060827,-0.0741,-0.089905,0.0032796,0.069947,0.12779,0.065173,0.05032,0.024236,-0.041322,-0.10553,-0.02554,-0.087655,-0.0931 0.070518,-0.061653,-0.016462,0.022322,-0.1147,0.0041751,-0.036872,-0.099942,-0.079693,-0.0028223,0.049976,0.12338,0.051524,0.077117,0.03385,-0.075302,-0.069818,0.0151,-0.045015,-0.1001 0.064826,-0.0203,-0.0051622,0.019286,-0.13959,-0.015631,-0.0046847,-0.084945,-0.053234,0.013923,0.017419,0.091952,0.012943,0.086393,-0.029904,-0.072205,-0.036635,0.066535,0.021027,-0.052261 0.025367,0.057205,-0.0030514,0.024969,-0.15517,-0.022973,0.0086754,-0.0027214,-0.00077487,0.053414,-0.00042572,0.038593,-0.027302,0.070733,-0.11993,-0.042219,-0.034269,0.10686,0.043769,0.017233 -0.014617,0.10263,-0.0053978,0.014829,-0.1277,-0.0028969,0.0034108,0.090118,0.029343,0.085485,0.030319,-0.01771,-0.036624,0.065804,-0.091676,-0.032716,-0.031431,0.11593,0.00071498,0.047408 -0.05377,0.091925,0.00080928,-0.0075229,-0.081407,0.023218,-0.0030337,0.13253,0.017398,0.10545,0.071481,-0.055844,-0.010925,0.064062,0.027333,-0.055853,-0.0019483,0.072244,-0.033789,0.055008 -0.08218,0.049463,0.012295,-0.030336,-0.028687,0.042312,0.0012054,0.096223,-0.013759,0.10379,0.06737,-0.054882,0.010259,0.046013,0.11099,-0.084797,0.040291,-0.0081374,-0.025667,0.058307 -0.09132,0.01467,0.019807,-0.040362,0.016807,0.036778,0.014237,0.019063,-0.03623,0.077331,0.017337,-0.013843,0.0047374,0.021218,0.095687,-0.084775,0.057081,-0.058031,-0.0025288,0.048215 -0.083732,-0.00096255,0.017133,-0.038082,0.046422,0.0098964,0.026164,-0.03739,-0.041698,0.032492,-0.020162,0.033873,-0.0037686,0.0077511,0.031914,-0.055102,0.033209,-0.050324,0.0099348,0.027096 -0.062521,-0.0040172,0.0090423,-0.031163,0.052958,-0.01343,0.029736,-0.049407,-0.03635,-0.005728,-0.023262,0.053983,-0.00078898,0.0033273,-0.016972,-0.022474,-0.007162,-0.021358,0.010586,0.0076372 -0.03637,-0.0022642,0.0030262,-0.021915,0.039024,-0.018743,0.023893,-0.033519,-0.025549,-0.018849,-0.012618,0.043208,0.0045913,0.00051331,-0.030388,-0.005082,-0.028164,-0.0042199,0.0048025,-0.0016496 -0.012644,-0.00013616,0.00019642,-0.01189,0.014611,-0.0092118,0.011556,-0.01313,-0.011131,-0.0098335,-0.003894,0.019201,0.0036695,-0.002394,-0.015523,0.00027458,-0.018471,-0.0027206,-0.0012756,-0.00055773 -0.0007891,0.00029617,7.4007e-05,-0.0027497,0.0003202,-0.00064624,0.0012872,-0.0013922,-0.0015315,-0.00041016,0.00016142,0.0025466,0.00046147,-0.00047452,-0.0011955,-0.00037351,-0.001317,-0.0026748,-0.00050322,0.001804 3.6329e-05,-2.7634e-05,4.1393e-05,-0.00027947,-2.3722e-05,0.00011761,4.7455e-05,-4.101e-05,-0.00019071,-5.8491e-05,0.00020139,-8.2465e-06,2.6636e-05,-0.00017885,-0.00018828,-4.6244e-05,3.916e-05,-0.00078539,-4.4565e-05,0.00022524 1.5782e-06,-2.6366e-06,-2.0787e-06,-5.9141e-06,6.7139e-08,2.9484e-06,9.6845e-07,-5.4042e-07,-2.8335e-06,1.6208e-08,5.2075e-06,-1.0902e-06,4.1087e-06,-1.77e-06,-4.4439e-06,4.9128e-06,-5.9847e-06,-1.5121e-05,-2.3087e-06,2.4875e-06 -1.6144e-08,2.0634e-07,-1.2645e-06,8.6805e-07,9.5968e-07,2.185e-06,-1.109e-06,3.2149e-07,2.0055e-06,-5.1992e-08,-1.6063e-06,-2.4507e-06,1.054e-06,4.015e-06,-9.5507e-07,-1.4543e-06,-1.8394e-06,-3.0312e-07,1.6804e-06,-5.6097e-07 -1.9281e-06,-1.2823e-06,-2.2998e-06,1.8551e-08,2.7383e-06,-2.7544e-06,-1.0182e-05,3.8067e-06,3.1081e-05,-2.2879e-06,7.6351e-06,-8.2293e-06,3.994e-06,1.5018e-05,4.5148e-06,5.6103e-07,1.2507e-05,2.6109e-05,7.5778e-06,-2.4238e-05 -2.2519e-05,1.0207e-05,-1.86e-05,-6.3071e-06,3.8786e-05,-3.502e-05,-9.1019e-05,0.0001897,3.2094e-05,1.3691e-05,-2.9969e-06,-6.251e-05,8.1283e-05,8.838e-05,8.7797e-05,-0.00021776,-3.0588e-05,0.00019868,3.0353e-06,-0.00013058 -0.00047043,0.00067045,-7.3195e-05,-0.00083033,0.00060313,-0.00051576,-0.0011804,0.0012706,-0.0010131,8.671e-05,0.0013805,-0.00018302,0.00097713,0.00036814,0.00067377,-0.001779,-8.1744e-06,0.0016091,5.5581e-05,-0.00062612 -0.0071252,0.003037,0.00060436,-0.0039717,0.0085481,-0.0063276,-0.0012796,0.0018937,-0.0073929,-0.005782,0.0071095,0.0039828,0.0051919,0.0042131,0.0013384,-0.0073366,-0.0039014,0.0079264,0.0019008,-0.0050061 -0.030872,0.0098487,0.0039563,-0.014757,0.035992,-0.024584,0.00029053,-0.0066304,-0.026652,-0.02502,0.017698,0.028291,0.0078236,0.015802,-0.0047353,-0.014238,-0.015246,0.029634,0.0012942,-0.018159 -0.060762,0.025915,0.011517,-0.0308,0.054696,-0.036101,-0.010984,-0.019152,-0.048373,-0.034926,0.024642,0.061128,-0.01519,0.026211,0.0080884,-0.018725,0.0025545,0.055973,-0.0043215,-0.029877 -0.085638,0.049128,0.022167,-0.047022,0.045677,-0.023864,-0.033275,-0.033394,-0.065154,-0.022553,0.011534,0.079487,-0.068792,0.017101,0.040611,-0.018404,0.040399,0.05898,-0.015293,-0.036929 -0.090565,0.069167,0.033426,-0.05259,0.00019938,0.021719,-0.062668,-0.039931,-0.072875,0.01404,-0.012228,0.069008,-0.12384,-0.017781,0.062198,-0.011486,0.057581,0.01196,-0.013325,-0.035005 -0.070252,0.070431,0.037928,-0.042177,-0.061495,0.072993,-0.089228,-0.029683,-0.071511,0.042202,-0.0027324,0.044734,-0.13349,-0.05295,0.044831,0.0012149,0.010113,-0.055065,0.0097635,-0.037533 -0.038786,0.052833,0.030301,-0.020209,-0.10984,0.083886,-0.10389,-0.018736,-0.070081,0.035103,0.045122,0.042978,-0.090851,-0.062577,0.012952,0.01268,-0.076493,-0.085939,0.030685,-0.056108 -0.010245,0.028595,0.018427,-0.00051648,-0.13729,0.047629,-0.10826,-0.03193,-0.072732,-0.00023081,0.078838,0.066539,-0.031749,-0.051402,0.0085653,0.011409,-0.13038,-0.08023,0.034958,-0.078677 0.021234,-0.0010525,0.016444,0.0019091,-0.14671,-0.000316,-0.10008,-0.075054,-0.083607,-0.034736,0.073911,0.079921,0.01216,-0.018907,0.049853,0.00093228,-0.12037,-0.052531,0.032072,-0.094998 0.059348,-0.022038,0.023537,-0.014392,-0.13165,-0.01751,-0.066358,-0.12145,-0.074644,-0.05162,0.078831,0.082193,0.02022,0.020347,0.0895,-0.01388,-0.061432,0.00066605,0.042775,-0.1171 0.075522,-0.012806,0.034258,-0.02179,-0.12387,-0.025503,-0.024657,-0.13169,-0.048647,-0.045247,0.077776,0.067294,0.0041145,0.043547,0.058565,-0.0017925,-0.003248,0.045995,0.070348,-0.10725 0.062254,0.037136,0.034794,-0.0016071,-0.13193,-0.030409,0.021499,-0.085058,-0.0081182,-0.018219,0.065187,0.052992,-0.037981,0.04947,-0.042815,0.039711,0.027579,0.082197,0.082188,-0.057007 0.020694,0.098851,0.014721,0.01978,-0.13266,-0.015206,0.020309,0.022564,0.027628,0.0043642,0.05414,0.022968,-0.069257,0.052864,-0.11745,0.083093,-0.002009,0.08404,0.041135,-0.00084937 -0.018721,0.11187,-0.0058296,0.016465,-0.10749,0.016244,-0.0084714,0.12262,0.026793,0.019698,0.071002,-0.020729,-0.065443,0.081591,-0.062295,0.065623,-0.02186,0.068874,-0.0092688,0.02277 -0.058521,0.074516,-0.011305,-0.0047138,-0.070703,0.050204,-0.026417,0.15671,-0.0043427,0.048219,0.088855,-0.05818,-0.033854,0.097364,0.048287,-0.0057565,0.0048003,0.03099,-0.0083563,0.040188 -0.086096,0.024479,-0.0026155,-0.028248,-0.026529,0.067327,-0.016932,0.10416,-0.036239,0.080801,0.062348,-0.060507,-0.013823,0.073066,0.094636,-0.081579,0.048894,-0.02394,0.026316,0.06308 -0.094416,-0.0019697,0.0066429,-0.042619,0.013246,0.051529,0.0084776,0.017044,-0.050563,0.079692,0.005555,-0.018487,-0.014496,0.02962,0.063379,-0.10096,0.061784,-0.051014,0.044186,0.063342 -0.084747,-0.0077323,0.007362,-0.044577,0.040745,0.015872,0.028853,-0.042913,-0.049863,0.042514,-0.026408,0.033259,-0.013292,0.0047536,0.0074987,-0.069779,0.032049,-0.037163,0.036502,0.042301 -0.061575,-0.0057977,0.0021656,-0.038316,0.045811,-0.012522,0.034365,-0.052354,-0.040127,0.002992,-0.023086,0.054167,-0.0047358,-0.0050657,-0.028637,-0.029749,-0.01036,-0.01298,0.017859,0.01983 -0.034078,-0.0023016,-0.00052974,-0.027079,0.032325,-0.018635,0.026888,-0.033516,-0.025869,-0.01374,-0.010161,0.041641,0.002281,-0.0076753,-0.03237,-0.0071046,-0.029697,-0.0031732,0.004136,0.0045343 -0.011409,-5.0351e-05,-0.00077798,-0.014279,0.01143,-0.008955,0.012754,-0.012338,-0.011418,-0.008375,-0.0017892,0.01791,0.0023903,-0.0058078,-0.015367,-0.00091935,-0.018009,-0.0044571,-0.0015096,0.0018188 -0.00080868,0.00028865,0.00013235,-0.0038812,-6.5117e-05,-0.00049384,0.00182,-0.0014189,-0.0023113,-0.00071691,0.00048885,0.0028201,0.00027729,-0.00079948,-0.0020331,-0.00084851,-0.0011374,-0.0043834,0.00012372,0.0023956 4.433e-05,-6.5238e-05,3.4225e-05,-0.00040815,-7.3463e-05,0.0001661,0.00015409,-7.4051e-05,-0.00035553,-0.0001808,0.00022688,-1.5829e-05,8.8966e-05,-0.00018307,-0.00033852,-0.0001318,2.8457e-05,-0.0012123,-4.0204e-05,0.00033442 8.3524e-06,-6.418e-06,-4.1751e-06,-3.2462e-05,-2.5505e-06,1.5573e-05,5.1481e-06,-3.2163e-06,-2.6544e-05,-1.2055e-05,9.3064e-06,-9.428e-07,1.4805e-05,-6.2201e-06,-2.4962e-05,1.0884e-05,-7.202e-06,-9.2256e-05,-2.9872e-05,2.0531e-05 1.3359e-07,1.603e-06,-1.1812e-06,3.487e-07,1.6281e-06,1.7488e-06,-5.9955e-07,2.4402e-06,4.9988e-07,-1.2506e-06,-3.0933e-06,-1.7782e-06,4.8101e-06,-1.4329e-06,2.0931e-06,1.4324e-06,3.0492e-06,3.1485e-06,-8.8645e-07,7.2039e-07 -4.5937e-07,-9.2477e-09,2.7853e-06,2.1566e-06,-2.335e-08,9.949e-07,1.2973e-06,1.1242e-05,1.3249e-05,-5.8422e-06,-3.4261e-06,-9.404e-06,4.5495e-06,4.0515e-06,-3.9302e-06,-1.678e-05,5.9565e-06,7.0451e-06,-2.1836e-05,-1.7441e-05 -4.399e-05,-8.6463e-05,4.9142e-05,3.5618e-05,-1.6612e-05,-8.659e-05,-0.00010257,0.00031951,9.8488e-05,1.366e-07,-3.2721e-06,1.2063e-05,9.4002e-05,0.00023885,2.6936e-05,-0.00057384,-2.248e-05,0.00017169,-0.00012656,-0.00022155 -0.00066709,0.00012406,0.00052402,-0.00067472,0.00042153,-0.00057716,-0.0012189,0.0016984,-0.00040118,-0.00037014,0.0014363,0.00047894,0.00089684,0.0008146,0.00011061,-0.0022594,0.00058183,0.0019793,-0.00061758,-0.00082094 -0.0094508,0.00094304,0.0046299,-0.0034195,0.010183,-0.0066538,-0.0019721,0.0028045,-0.0064407,-0.0089359,0.0067432,0.0076129,0.0036755,0.0080828,-0.0041627,-0.007985,0.0020124,0.0096544,0.00035831,-0.0061787 -0.036623,0.004135,0.01506,-0.01327,0.039363,-0.023406,-0.0026661,-0.0046284,-0.025344,-0.032128,0.01502,0.034095,-0.0019249,0.020656,-0.021379,-0.01622,0.004625,0.029619,-0.00057101,-0.022635 -0.06613,0.012988,0.028914,-0.031123,0.054642,-0.032399,-0.011556,-0.012175,-0.04159,-0.044271,0.02276,0.059801,-0.031571,0.017907,-0.017306,-0.02642,0.03153,0.044774,-0.011066,-0.033968 -0.088678,0.027402,0.04374,-0.052955,0.039997,-0.020193,-0.02415,-0.019474,-0.049364,-0.036663,0.015848,0.061962,-0.078744,-0.01291,0.018038,-0.035572,0.064089,0.035549,-0.021312,-0.033019 -0.090315,0.042432,0.055522,-0.070826,-0.010566,0.015791,-0.041211,-0.018273,-0.049517,-0.013398,0.0047807,0.034955,-0.11309,-0.063747,0.060178,-0.038679,0.067484,-0.0098641,-0.011049,-0.017531 -0.06747,0.048401,0.057483,-0.074523,-0.073609,0.049368,-0.059303,-0.012732,-0.044164,-0.0048577,0.01566,0.0013408,-0.10191,-0.10188,0.073116,-0.033569,0.023996,-0.059244,0.033282,-0.0041239 -0.034606,0.041393,0.050588,-0.063045,-0.12056,0.045297,-0.073335,-0.018878,-0.041724,-0.02894,0.045695,-0.0087906,-0.048527,-0.10844,0.064523,-0.021064,-0.032496,-0.073138,0.087005,-0.0058712 -0.0039852,0.022839,0.045844,-0.051571,-0.14187,0.0034298,-0.080816,-0.046213,-0.048585,-0.068316,0.053367,-0.0054823,0.0063111,-0.087243,0.073097,-0.008384,-0.046259,-0.056118,0.11587,-0.0081527 0.02903,-0.0005867,0.053347,-0.054226,-0.1393,-0.036994,-0.063547,-0.089133,-0.059176,-0.087665,0.045413,-0.014352,0.026183,-0.037914,0.10968,0.0092996,-0.0041261,-0.015962,0.11775,-0.015905 0.061829,-0.0089978,0.066264,-0.062428,-0.11446,-0.047233,-0.018528,-0.12155,-0.044266,-0.079851,0.065068,-0.012988,0.014249,0.0025995,0.1144,0.022193,0.070949,0.033802,0.11449,-0.038124 0.075651,0.015713,0.075654,-0.046197,-0.096291,-0.051132,0.033702,-0.11625,-0.011236,-0.046617,0.080512,0.0022721,-0.020662,0.016092,0.048677,0.052522,0.12151,0.064877,0.10734,-0.039716 0.056809,0.074671,0.061833,-0.0029217,-0.098682,-0.03902,0.06671,-0.05304,0.032253,-0.030634,0.078928,0.042263,-0.063611,-0.0010622,-0.056405,0.10007,0.11116,0.062164,0.067719,-0.0075608 0.016999,0.11831,0.027977,0.025274,-0.10252,-0.014998,0.033722,0.052974,0.044614,-0.050438,0.063049,0.040494,-0.072615,0.01539,-0.090864,0.13994,0.044716,0.031344,-0.0030645,0.011505 -0.025021,0.10489,-0.0034348,0.021986,-0.089412,0.025751,-0.015679,0.14311,0.01983,-0.061562,0.073131,-0.0056422,-0.053617,0.075999,-0.018004,0.11488,0.0058422,0.010379,-0.039963,0.0016423 -0.06574,0.049676,-0.014704,-0.0031585,-0.061121,0.064522,-0.039079,0.16094,-0.019479,-0.020355,0.080605,-0.061053,-0.026827,0.11531,0.059876,0.021895,0.022821,-0.01407,0.00048602,0.0045077 -0.091887,0.0006089,-0.0094739,-0.028632,-0.023907,0.076756,-0.020961,0.095882,-0.046012,0.047542,0.047136,-0.069178,-0.020429,0.090586,0.067392,-0.07447,0.055939,-0.042499,0.060265,0.035051 -0.098238,-0.017775,-0.0046512,-0.046677,0.011345,0.052991,0.013866,0.0057617,-0.055492,0.070992,-0.0012529,-0.023638,-0.022782,0.036367,0.023758,-0.10523,0.058284,-0.04749,0.075868,0.054256 -0.083818,-0.015945,-0.0045387,-0.05029,0.034293,0.012436,0.036911,-0.046949,-0.052557,0.043869,-0.022967,0.029551,-0.016664,-0.001939,-0.023588,-0.07373,0.021817,-0.028151,0.050484,0.046557 -0.057155,-0.0095627,-0.0061825,-0.043465,0.036294,-0.015233,0.04002,-0.050036,-0.039728,0.0078241,-0.015871,0.048651,-0.0056502,-0.017131,-0.043744,-0.032341,-0.019239,-0.0092405,0.018433,0.026816 -0.029057,-0.0042142,-0.0044148,-0.029604,0.023171,-0.018415,0.028473,-0.028471,-0.024485,-0.0092959,-0.0034178,0.035317,0.00031144,-0.017299,-0.035462,-0.0087833,-0.031045,-0.0050884,0.0013954,0.010367 -0.0088608,-0.0009384,-0.0013993,-0.015364,0.0064923,-0.0081627,0.012597,-0.0097477,-0.010861,-0.0068564,0.0012184,0.0145,0.0005906,-0.0086726,-0.015319,-0.0024627,-0.015781,-0.0077044,-0.0021957,0.0043768 -0.00060716,-0.00016571,0.00021438,-0.0046848,-0.00072039,-0.00040896,0.0025531,-0.001229,-0.002818,-0.0014427,0.0010277,0.0022476,0.00037375,-0.0011187,-0.0030705,-0.0011752,-0.0010933,-0.0065494,0.00078546,0.0028379 8.9831e-05,-9.1327e-05,4.0255e-05,-0.00056237,-7.4315e-05,0.00020936,0.00016511,-0.00011511,-0.00036448,-0.00020019,0.00028918,-9.5089e-05,0.00011427,-0.00025552,-0.00048258,-0.00012273,6.6639e-06,-0.0014872,8.9973e-05,0.00033012 9.5692e-06,-8.3198e-06,1.974e-06,-4.2391e-05,6.2304e-06,3.2866e-05,2.0113e-06,-7.5643e-06,-1.4063e-05,-9.1714e-06,2.466e-05,-1.8048e-05,2.4085e-05,-3.7746e-05,-4.1119e-05,1.2733e-05,-3.218e-06,-0.00013868,-1.4587e-05,3.0005e-05 2.6021e-17,1.7347e-17,-1.7347e-17,-3.4694e-18,-2.949e-17,-2.6021e-17,6.5919e-17,-9.1073e-18,-5.7246e-17,-5.2042e-18,7.2858e-17,6.9389e-18,3.2092e-17,5.7246e-17,-3.3936e-17,-1.0408e-17,-3.4694e-18,3.4694e-17,8.9121e-17,3.1008e-17 2.2396e-06,-9.1484e-06,-3.2542e-06,2.7738e-06,-5.4471e-06,-2.9114e-06,-9.0185e-06,2.4764e-05,3.413e-07,-1.2247e-05,-1.7627e-05,-1.4802e-07,1.4334e-05,2.1421e-05,5.5165e-06,-2.3313e-05,-1.2384e-05,-1.7619e-06,-9.2852e-06,-1.0487e-05 -6.7422e-05,-0.00014634,6.1802e-05,5.7628e-05,-2.6172e-05,-9.0156e-05,-0.00014896,0.00050767,0.00013718,1.8424e-05,-2.2641e-05,3.1626e-05,0.00010166,0.00030964,-3.6273e-05,-0.00073888,9.8388e-05,0.00026445,-0.00022851,-0.00030093 -0.0010428,-0.00068372,0.0014861,-0.00068801,7.9817e-05,-0.0010093,-0.0017034,0.0029954,0.00051768,-0.0010493,0.0022083,0.001336,0.00065815,0.0016008,-0.0010911,-0.0035861,0.0020057,0.0027511,-0.0017196,-0.0012776 -0.012205,-0.0021398,0.0098124,-0.0025859,0.011478,-0.0072749,-0.0037671,0.0069684,-0.0049754,-0.012741,0.0078473,0.010438,0.0014849,0.012926,-0.012492,-0.011161,0.010216,0.011883,-0.001569,-0.0074674 -0.040728,-0.0046315,0.025688,-0.0095892,0.039755,-0.021704,-0.0053223,0.0040768,-0.021019,-0.039273,0.014274,0.03597,-0.009056,0.024416,-0.042419,-0.020159,0.023061,0.02692,-0.004175,-0.023873 -0.068655,-0.0048034,0.042327,-0.025918,0.051807,-0.029807,-0.007549,0.0012054,-0.030863,-0.054964,0.019434,0.053317,-0.036908,0.0083461,-0.049656,-0.032801,0.047003,0.032375,-0.021177,-0.032292 -0.088925,-0.0012442,0.057075,-0.048157,0.03395,-0.02001,-0.0075529,-0.0020328,-0.031089,-0.050276,0.01236,0.043881,-0.069726,-0.039447,-0.01814,-0.044289,0.064953,0.014153,-0.04199,-0.019989 -0.088405,0.0046223,0.066205,-0.070688,-0.015532,0.0066895,-0.0071005,-0.0026954,-0.025849,-0.033244,0.001045,0.0054226,-0.07425,-0.099168,0.030607,-0.051639,0.051813,-0.029725,-0.038589,0.014502 -0.065729,0.0080573,0.066404,-0.083326,-0.074715,0.027691,-0.012563,-0.0087239,-0.017379,-0.030717,0.0032743,-0.036807,-0.028979,-0.13144,0.058371,-0.047176,0.01442,-0.066663,0.0061062,0.05207 -0.032083,0.0027072,0.061435,-0.081733,-0.1162,0.016492,-0.02271,-0.024081,-0.016088,-0.055805,0.012155,-0.060548,0.039291,-0.12058,0.061443,-0.027699,-0.010179,-0.068149,0.067583,0.07626 0.00091698,-0.011909,0.06162,-0.078308,-0.12703,-0.023161,-0.024724,-0.051042,-0.028631,-0.083391,0.006823,-0.075457,0.079313,-0.072098,0.071244,0.002132,0.012088,-0.040699,0.094889,0.083576 0.032648,-0.024303,0.072923,-0.079628,-0.11164,-0.05501,0.00034088,-0.079198,-0.041949,-0.07945,0.011078,-0.088203,0.065419,-0.0052437,0.089655,0.030816,0.074858,0.0037343,0.084102,0.063564 0.061523,-0.015465,0.090153,-0.073946,-0.078305,-0.063795,0.049754,-0.095439,-0.028631,-0.040093,0.046432,-0.069148,0.022157,0.031986,0.069551,0.042253,0.14531,0.043536,0.071107,0.025344 0.070095,0.028965,0.09843,-0.037506,-0.057849,-0.056942,0.10039,-0.079865,0.012797,0.0021676,0.076856,-0.0037733,-0.032338,0.012029,0.0011343,0.053507,0.1697,0.052662,0.05437,0.02017 0.046626,0.090071,0.078183,0.011715,-0.065377,-0.032186,0.10313,-0.013469,0.054041,-0.025681,0.069017,0.075385,-0.057679,-0.035422,-0.067699,0.084037,0.13016,0.015923,0.0045656,0.05092 0.0047535,0.11484,0.040078,0.032361,-0.079002,0.00096522,0.046308,0.082819,0.050971,-0.098503,0.042644,0.075207,-0.042984,-0.0072281,-0.05646,0.12519,0.057157,-0.026492,-0.064332,0.043135 -0.041232,0.081224,0.0056418,0.019063,-0.075911,0.045151,-0.013673,0.15077,0.014915,-0.12854,0.043724,0.0059664,-0.015191,0.080904,0.015337,0.10663,0.01854,-0.039017,-0.070857,-0.011911 -0.079886,0.020136,-0.010618,-0.011619,-0.053844,0.076262,-0.032968,0.14381,-0.022404,-0.066214,0.046299,-0.064885,-0.004451,0.131,0.054623,0.021274,0.029225,-0.04459,0.0082221,-0.039034 -0.10084,-0.021436,-0.015096,-0.039683,-0.021266,0.074101,-0.0080808,0.069115,-0.043831,0.022607,0.023166,-0.069971,-0.014928,0.10029,0.031697,-0.067348,0.047855,-0.050888,0.083402,-0.0051887 -0.10002,-0.031459,-0.017918,-0.056087,0.0097435,0.039495,0.027166,-0.012636,-0.052156,0.057442,-0.0050493,-0.021089,-0.022684,0.032487,-0.017698,-0.093343,0.038005,-0.038622,0.091227,0.033239 -0.078363,-0.024639,-0.018515,-0.056821,0.025113,-0.00055216,0.04584,-0.048836,-0.049327,0.04008,-0.010664,0.027985,-0.017137,-0.014912,-0.054831,-0.063828,-0.00064373,-0.018215,0.049923,0.042231 -0.048683,-0.014826,-0.014474,-0.045707,0.024226,-0.020846,0.042354,-0.04188,-0.036685,0.0096069,-0.0016192,0.041572,-0.0070972,-0.030206,-0.057508,-0.028356,-0.031606,-0.0069779,0.012372,0.028999 -0.022288,-0.0071561,-0.0072308,-0.029205,0.012105,-0.018167,0.027505,-0.020435,-0.021342,-0.0055721,0.0046934,0.027398,-0.002655,-0.023798,-0.037162,-0.0085947,-0.030462,-0.0082931,-0.0028478,0.013405 -0.0059505,-0.0027182,-0.0014994,-0.014725,0.0012858,-0.0071167,0.012002,-0.0053294,-0.0092942,-0.0061409,0.0035192,0.010041,-0.0016455,-0.010209,-0.015443,-0.0032417,-0.012474,-0.011173,-0.0020885,0.0049374 -0.00036018,-0.00093869,0.00027139,-0.0048782,-0.0015504,-0.0006281,0.003242,-0.00025882,-0.0025982,-0.0021747,0.0012845,0.0015433,-0.00049106,-0.0018648,-0.004278,-0.0011389,-0.0011514,-0.0078951,0.00090727,0.0018887 0.00010018,-0.0001792,7.8922e-05,-0.00061998,-0.00018622,0.00014246,0.00034227,-1.4667e-05,-0.00031857,-0.00027535,0.00030201,-9.077e-05,5.1713e-05,-0.00029227,-0.00063832,-4.4713e-05,-3.2303e-06,-0.0015038,0.0001162,0.00019258 1.05e-05,-2.1044e-06,5.632e-06,-3.4165e-05,9.7597e-06,2.7499e-05,-6.7473e-06,3.6688e-06,-1.2186e-06,-9.7965e-07,1.8279e-05,-2.8918e-05,1.8135e-05,-3.4143e-05,-2.7234e-05,-5.8426e-06,2.351e-05,-8.3638e-05,1.887e-06,2.7642e-05 3.3633e-06,7.8765e-07,1.6575e-06,2.5413e-06,1.4217e-06,-2.4793e-07,8.6882e-07,4.4906e-06,-2.7262e-06,1.1884e-05,-2.3499e-06,-1.635e-06,-3.4102e-06,-3.4657e-06,-7.886e-06,2.1772e-06,1.2285e-06,2.7312e-06,-5.4804e-06,-2.1285e-06 3.0317e-07,-6.406e-06,-4.2594e-06,-1.6183e-06,-5.0058e-06,-2.3912e-06,-1.1965e-05,3.0276e-05,1.1354e-05,-2.3203e-06,-2.9849e-06,-1.0801e-06,-4.131e-06,2.1474e-05,8.8266e-06,-2.5172e-05,1.0686e-05,-5.4529e-06,-2.0116e-06,-2.0169e-05 -0.00011716,-0.00027617,7.6011e-05,0.00019532,-0.0001122,-0.00014025,-0.00027008,0.00085781,0.0003496,6.5548e-05,-6.1626e-05,0.00020062,0.00017827,0.0006281,-0.00012235,-0.001147,0.0001328,0.00054274,-0.00022787,-0.00057249 -0.001738,-0.001697,0.0024932,-0.00058246,-0.00048361,-0.00188,-0.0026668,0.0051953,0.001998,-0.0018052,0.0034231,0.0022459,0.00084577,0.0030662,-0.0026308,-0.0060355,0.0038551,0.0041644,-0.0021315,-0.0018893 -0.01446,-0.0059382,0.014218,-0.00087436,0.010592,-0.0084058,-0.0065305,0.013649,-0.0012241,-0.015056,0.01094,0.012744,0.00043223,0.018578,-0.021152,-0.016032,0.018853,0.014794,-0.0019373,-0.0074869 -0.04205,-0.014142,0.0333,-0.0032087,0.035622,-0.020657,-0.0085521,0.017761,-0.013093,-0.042445,0.015288,0.036006,-0.011065,0.029847,-0.061632,-0.026326,0.036751,0.026555,-0.0044184,-0.023644 -0.068573,-0.023074,0.05015,-0.013949,0.046906,-0.028652,-0.0056614,0.019056,-0.02025,-0.05927,0.015073,0.050363,-0.033204,0.0062835,-0.08092,-0.035874,0.048656,0.025083,-0.027241,-0.033251 -0.087146,-0.028864,0.061557,-0.032336,0.029504,-0.023084,0.0037523,0.014402,-0.018468,-0.056571,0.0037569,0.038431,-0.051748,-0.05177,-0.056996,-0.045609,0.044483,0.0026146,-0.062567,-0.015391 -0.086512,-0.030254,0.06654,-0.054251,-0.016292,-0.0046401,0.015728,0.0036634,-0.011892,-0.042356,-0.014191,-0.00046063,-0.032912,-0.11371,-0.0081979,-0.049394,0.01163,-0.03573,-0.077266,0.026901 -0.064821,-0.030854,0.067002,-0.073479,-0.070349,0.0093986,0.020986,-0.012608,-0.0070712,-0.037473,-0.025628,-0.045003,0.031147,-0.13646,0.024528,-0.038302,-0.028586,-0.065903,-0.048517,0.076946 -0.031566,-0.035584,0.065929,-0.084431,-0.10483,-0.00042593,0.019096,-0.031477,-0.011859,-0.050764,-0.032077,-0.075931,0.10003,-0.099792,0.031176,-0.0084872,-0.037441,-0.064894,-0.00033653,0.10725 0.0024836,-0.042104,0.071057,-0.088604,-0.1065,-0.030411,0.024814,-0.050776,-0.030165,-0.055669,-0.033311,-0.097226,0.11829,-0.022364,0.031912,0.029638,0.0076075,-0.036433,0.017703,0.10002 0.03243,-0.03972,0.08768,-0.086038,-0.081032,-0.056006,0.053223,-0.062094,-0.044948,-0.025533,-0.0090295,-0.10048,0.076367,0.053384,0.03032,0.053722,0.075328,0.0032712,0.0056023,0.057095 0.055893,-0.014061,0.10932,-0.065089,-0.045754,-0.059156,0.1059,-0.064298,-0.028825,0.030679,0.041373,-0.054782,0.0086525,0.074332,0.0063985,0.045951,0.12838,0.031781,-0.001596,0.018013 0.055545,0.038942,0.11512,-0.019269,-0.0312,-0.037229,0.14529,-0.03885,0.020392,0.044503,0.071147,0.048333,-0.042713,0.01492,-0.038061,0.022738,0.12862,0.016945,-0.0075579,0.042456 0.025515,0.086837,0.092558,0.022681,-0.045887,-0.00041272,0.12652,0.026475,0.058522,-0.035099,0.046065,0.12762,-0.036032,-0.039883,-0.058414,0.038338,0.083013,-0.034794,-0.044577,0.091558 -0.020437,0.090411,0.05131,0.02892,-0.06607,0.040201,0.056761,0.10295,0.050328,-0.14021,0.0037201,0.10359,0.00098631,0.0039,-0.020123,0.078125,0.02662,-0.068492,-0.084159,0.059184 -0.065675,0.046138,0.011651,0.0042042,-0.066997,0.073945,-0.0043179,0.13786,0.014349,-0.16079,-0.0073255,0.0070569,0.029169,0.098985,0.031605,0.071638,0.0038501,-0.059864,-0.049004,-0.03782 -0.097084,-0.0090204,-0.01419,-0.029385,-0.048324,0.080401,-0.015244,0.10447,-0.017973,-0.078993,-0.00035281,-0.064336,0.020549,0.13481,0.03619,0.0080232,0.014733,-0.043466,0.047131,-0.08237 -0.10771,-0.040091,-0.03001,-0.0544,-0.019842,0.055654,0.011466,0.030801,-0.03707,0.014192,2.8691e-05,-0.058277,-0.0062579,0.085145,-0.0036298,-0.053222,0.025977,-0.031388,0.11008,-0.041686 -0.094713,-0.04234,-0.035446,-0.064863,0.0035186,0.013239,0.040355,-0.028428,-0.046207,0.04939,0.00090555,-0.010351,-0.022079,0.0080082,-0.053928,-0.064234,0.0070426,-0.012518,0.094094,0.014534 -0.066555,-0.031496,-0.030489,-0.060073,0.011981,-0.018591,0.049573,-0.041983,-0.042818,0.035611,0.0079724,0.028232,-0.020119,-0.037155,-0.075054,-0.040784,-0.02508,-0.0022664,0.042222,0.034577 -0.037557,-0.019403,-0.019449,-0.044256,0.0094412,-0.026706,0.040235,-0.027652,-0.030481,0.010644,0.014279,0.033119,-0.013302,-0.04302,-0.062995,-0.01662,-0.038468,-0.0026256,0.0060878,0.027809 -0.015244,-0.010037,-0.0077772,-0.026779,0.001492,-0.017765,0.024178,-0.010134,-0.016412,-0.0038834,0.010863,0.019245,-0.0079195,-0.027742,-0.036376,-0.005212,-0.0273,-0.0096189,-0.0029582,0.011894 -0.0035152,-0.0045565,-0.0013135,-0.012952,-0.002992,-0.0064403,0.011061,-0.0012375,-0.0066774,-0.0059842,0.0040387,0.0062917,-0.0042583,-0.010708,-0.01533,-0.0020726,-0.0099997,-0.01166,-0.00029254,0.0027306 -0.00018625,-0.0016734,0.00011117,-0.0042651,-0.0020585,-0.00090506,0.0033575,0.00042308,-0.0020845,-0.0026184,0.00081652,0.0011651,-0.0014035,-0.0025779,-0.004372,-0.00042111,-0.0016922,-0.0073294,0.00069099,0.00041327 6.3109e-05,-0.00026988,1.4157e-05,-0.0004799,-0.00013885,7.6335e-05,0.00039569,8.5769e-06,-0.00019467,-0.00024468,7.8693e-05,-3.697e-05,-8.3956e-05,-0.00031663,-0.00048895,0.00014586,-0.00029124,-0.0011348,-1.9648e-05,-2.6839e-05 1.1229e-05,-1.7686e-05,-1.5694e-06,-2.3329e-05,1.4927e-05,3.541e-05,2.1503e-05,-1.0297e-05,5.9409e-06,1.1795e-05,1.6227e-05,-8.3265e-06,-1.329e-05,-6.9834e-05,-2.2328e-05,3.1702e-05,-3.451e-05,-8.598e-06,1.9417e-07,-3.2218e-05 5.8959e-07,-6.3026e-07,2.2252e-07,-2.3037e-07,5.3848e-08,-5.7163e-07,-8.3361e-08,-2.8022e-07,-9.2844e-07,-8.5866e-08,-8.9217e-07,-7.5576e-07,-3.8499e-07,1.2065e-06,1.1549e-06,3.1421e-07,-5.1231e-08,1.0233e-07,-7.8245e-07,4.118e-08 9.0193e-06,-3.1157e-06,-5.9595e-06,-1.65e-06,-1.6241e-06,-6.8938e-06,-1.4581e-05,4.3456e-05,1.8585e-05,1.5671e-05,1.6661e-05,-2.2396e-05,-2.6872e-05,1.6893e-05,1.7012e-05,-4.4905e-05,3.8879e-05,-1.4284e-05,-2.4835e-05,-2.5863e-05 -0.00016465,-0.00043441,0.00015353,0.00036071,-0.00019977,-0.00020633,-0.00047046,0.0013833,0.00054338,0.00010566,-0.0001053,0.00039978,0.00033138,0.0011095,-0.00024233,-0.0017818,0.00016642,0.00070373,-0.00026592,-0.00056284 -0.0022509,-0.0025714,0.0032906,1.0107e-05,-0.0012236,-0.0027712,-0.0036253,0.0073731,0.003751,-0.0024151,0.0046014,0.002897,0.0017157,0.005218,-0.0041335,-0.0085906,0.0049882,0.0052638,-0.0016309,-0.0023645 -0.014915,-0.0091395,0.016425,0.0017188,0.0077139,-0.0092012,-0.0096121,0.02018,0.0044842,-0.015052,0.013493,0.01431,0.0011964,0.024119,-0.025574,-0.019874,0.02487,0.016187,0.0016861,-0.0065082 -0.040671,-0.022098,0.036118,0.0055674,0.027864,-0.019989,-0.014104,0.031818,-0.002681,-0.039075,0.017332,0.036963,-0.0086306,0.038931,-0.070879,-0.031794,0.045213,0.027295,0.003755,-0.02109 -0.066581,-0.038017,0.0525,0.0028341,0.039357,-0.029498,-0.012026,0.036828,-0.0080594,-0.056742,0.014778,0.052843,-0.025019,0.015863,-0.10145,-0.037586,0.048241,0.025038,-0.015885,-0.033204 -0.085289,-0.051623,0.062655,-0.0087562,0.026793,-0.02982,-0.00098573,0.030916,-0.0074594,-0.058715,0.00052261,0.044718,-0.033781,-0.044747,-0.090651,-0.03999,0.027079,0.0059505,-0.059179,-0.019404 -0.087165,-0.059658,0.066585,-0.030532,-0.011935,-0.020657,0.016336,0.01431,-0.0041083,-0.04855,-0.024721,0.0096478,-0.0074473,-0.1088,-0.048332,-0.035413,-0.018374,-0.021637,-0.096633,0.021541 -0.069524,-0.063118,0.068514,-0.05701,-0.05905,-0.011366,0.031517,-0.0083085,-0.0074538,-0.039697,-0.050424,-0.035271,0.054058,-0.1254,-0.01267,-0.012525,-0.065098,-0.043438,-0.099654,0.066355 -0.038352,-0.064265,0.074395,-0.08048,-0.087497,-0.013583,0.042609,-0.027105,-0.023262,-0.034825,-0.064832,-0.071401,0.10942,-0.070171,-0.002459,0.026824,-0.072297,-0.042657,-0.074787,0.084518 -0.0059661,-0.060087,0.087668,-0.092181,-0.083225,-0.029049,0.060713,-0.037347,-0.044744,-0.013669,-0.057275,-0.088878,0.11057,0.025764,-0.0082976,0.064788,-0.030933,-0.021617,-0.057089,0.054272 0.020591,-0.043565,0.11097,-0.083655,-0.05541,-0.041898,0.097559,-0.038352,-0.054991,0.038209,-0.020055,-0.074014,0.054116,0.10113,-0.017091,0.074791,0.021782,0.0045298,-0.048951,0.0031319 0.036012,-0.0076172,0.13011,-0.04982,-0.024802,-0.029794,0.14952,-0.028545,-0.027843,0.083239,0.030716,0.0023382,-0.016738,0.097642,-0.026893,0.038495,0.048219,0.013336,-0.031859,-0.0083397 0.027398,0.039602,0.12574,-0.0019224,-0.01644,0.0075313,0.17254,0.0029818,0.027166,0.051747,0.044562,0.11493,-0.043073,0.021116,-0.034469,-0.00784,0.031191,-0.01992,-0.014409,0.051218 -0.0066233,0.065791,0.091352,0.028306,-0.034631,0.053317,0.13479,0.054515,0.061306,-0.063085,0.00060441,0.16926,-0.0040358,-0.023671,-0.017831,-0.0037594,-0.0051022,-0.063246,-0.019411,0.097235 -0.051893,0.050708,0.039653,0.021921,-0.056619,0.085612,0.058205,0.097771,0.050955,-0.16071,-0.050605,0.10966,0.050096,0.025764,0.022519,0.036843,-0.030428,-0.0673,-0.020143,0.030786 -0.089215,0.0072103,-0.0088494,-0.0088706,-0.058803,0.090155,0.0039932,0.096585,0.017774,-0.15016,-0.059888,0.00096928,0.064274,0.10018,0.04262,0.047024,-0.026039,-0.032692,0.032034,-0.082325 -0.10757,-0.03394,-0.041707,-0.041432,-0.042718,0.063662,0.00010607,0.050151,-0.012319,-0.059328,-0.033368,-0.05893,0.035135,0.10359,0.018514,0.012772,-0.0045454,0.0030954,0.10341,-0.11165 -0.10262,-0.051739,-0.057297,-0.062196,-0.020786,0.019802,0.024587,-0.0050153,-0.032218,0.022131,-0.0020998,-0.04311,-0.0040355,0.036348,-0.034126,-0.0198,0.0014522,0.021528,0.12035,-0.053841 -0.079411,-0.047183,-0.052752,-0.066263,-0.0057165,-0.017277,0.04398,-0.032915,-0.038958,0.047113,0.019568,-0.00015365,-0.023315,-0.032147,-0.075652,-0.022299,-0.019719,0.027117,0.078737,0.009004 -0.050357,-0.034134,-0.036909,-0.055129,-0.00081638,-0.032949,0.044526,-0.027497,-0.033085,0.032108,0.028476,0.024399,-0.024881,-0.05852,-0.079881,-0.011306,-0.038822,0.018989,0.027951,0.030422 -0.025281,-0.020545,-0.019065,-0.037953,-0.0029771,-0.028177,0.032569,-0.011411,-0.021558,0.010332,0.024734,0.02321,-0.01863,-0.048126,-0.057901,-0.0023699,-0.036685,0.0041915,0.003167,0.021561 -0.0091109,-0.010498,-0.0059617,-0.021938,-0.0059449,-0.015651,0.018922,-0.001038,-0.010184,-0.0028183,0.01251,0.011181,-0.011493,-0.025611,-0.031236,-0.00047575,-0.020373,-0.0072762,-0.00064119,0.0070709 -0.0018057,-0.0048773,-0.00090699,-0.010295,-0.0050992,-0.0054618,0.0090074,0.0015965,-0.0039618,-0.0048286,0.0033084,0.0035471,-0.005448,-0.0095732,-0.013038,-0.00021358,-0.0074668,-0.0093643,0.0016175,0.00017803 -6.3117e-05,-0.0016937,-2.0113e-05,-0.0033609,-0.0020238,-0.001005,0.0027241,0.00073101,-0.0012282,-0.0020567,0.00065162,0.00070647,-0.0018734,-0.0031362,-0.0037165,0.00030368,-0.0018508,-0.0051618,0.00078847,-0.00052669 4.3285e-05,-0.00024544,8.4116e-06,-0.00044899,-0.0001672,4.9882e-05,0.00035403,6.9773e-05,-7.5321e-05,-0.00014686,7.455e-05,-2.848e-05,-0.00021318,-0.00049255,-0.00046237,0.00032289,-0.00029971,-0.00083903,1.7982e-05,-7.1833e-05 6.0788e-06,-1.2712e-05,-1.9467e-07,-1.1348e-05,7.1432e-06,1.9392e-05,1.4552e-05,-1.0084e-06,-1.1202e-06,7.5929e-06,1.1662e-05,1.4015e-06,-6.1763e-06,-3.9738e-05,-7.4891e-06,2.0827e-05,-3.0791e-05,3.6492e-06,-2.4157e-06,-2.4967e-05 2.7322e-17,9.541e-18,-1.3878e-17,-7.8063e-18,6.0715e-18,-7.8063e-18,2.6021e-18,-4.0115e-18,-4.3368e-19,-2.6021e-18,1.8215e-17,-3.0358e-18,9.541e-18,1.2577e-17,-1.1493e-17,0,-1.5179e-18,7.8063e-18,1.1818e-17,4.7705e-18 1.0775e-06,-1.576e-05,-1.9361e-05,1.355e-05,-4.9517e-06,6.1508e-07,-2.2774e-05,6.9754e-05,1.423e-05,5.9952e-06,3.8307e-06,-2.5861e-05,-7.8811e-06,3.4468e-05,1.5117e-05,-5.1909e-05,2.263e-05,-1.7958e-05,-3.2016e-05,-3.4428e-05 -0.00019439,-0.00055163,0.00013836,0.00049521,-0.00033246,-0.00025017,-0.00058812,0.0016763,0.00066658,0.00014101,-9.9452e-05,0.00050615,0.00034938,0.0013622,-0.00029452,-0.0019536,0.00036505,0.00068548,-0.00010814,-0.00040296 -0.0022286,-0.0030969,0.003157,0.0010862,-0.001922,-0.0031209,-0.0042263,0.0084372,0.0051236,-0.0021951,0.0047464,0.0032442,0.0024689,0.0068301,-0.0045293,-0.0094606,0.0052536,0.0049849,-1.1095e-05,-0.0022321 -0.012811,-0.010492,0.014784,0.0039999,0.0028731,-0.009405,-0.011596,0.02304,0.0094705,-0.011828,0.014913,0.013468,0.0027035,0.025764,-0.023675,-0.021763,0.025032,0.01443,0.0067624,-0.005082 -0.034584,-0.025407,0.03294,0.013088,0.016987,-0.018469,-0.020342,0.039828,0.0077186,-0.029939,0.020546,0.034267,-0.0033911,0.045585,-0.064257,-0.035875,0.047691,0.023185,0.019667,-0.01619 -0.060367,-0.045952,0.050507,0.020764,0.028546,-0.030324,-0.024756,0.050194,0.0060184,-0.048215,0.019104,0.054028,-0.012487,0.035033,-0.10282,-0.040857,0.052908,0.023304,0.016159,-0.027979 -0.081308,-0.067227,0.060778,0.02015,0.023593,-0.038276,-0.020123,0.048612,0.0075876,-0.054508,0.0054846,0.053508,-0.01686,-0.015395,-0.10762,-0.037465,0.030112,0.013688,-0.018413,-0.020268 -0.088794,-0.084354,0.064802,0.0047173,-0.0022929,-0.039564,-0.0040222,0.036089,0.0077503,-0.049116,-0.024603,0.024983,0.0020663,-0.075653,-0.080257,-0.018067,-0.016805,0.00082732,-0.071669,0.0088452 -0.078965,-0.093464,0.069578,-0.02245,-0.036864,-0.03447,0.019433,0.016448,-0.00498,-0.036065,-0.061468,-0.020601,0.043869,-0.091086,-0.045722,0.02177,-0.069483,-0.0051563,-0.11308,0.037553 -0.055182,-0.092668,0.080499,-0.050481,-0.058254,-0.029193,0.047021,-0.00072043,-0.029496,-0.011731,-0.081881,-0.059634,0.077842,-0.034571,-0.024543,0.072896,-0.097254,-0.00041609,-0.12046,0.03548 -0.028457,-0.079708,0.099804,-0.064893,-0.054052,-0.025795,0.083653,-0.0087722,-0.051304,0.033982,-0.071858,-0.069648,0.068164,0.059352,-0.020528,0.10568,-0.090114,0.012955,-0.094264,-0.0082235 -0.0067314,-0.052989,0.12201,-0.050839,-0.031923,-0.016608,0.13038,-0.0092076,-0.049483,0.091757,-0.034086,-0.031532,0.012329,0.11889,-0.01385,0.093748,-0.074232,0.024283,-0.046868,-0.047411 0.0026263,-0.015052,0.12703,-0.012617,-0.0093286,0.014933,0.1741,-7.5544e-05,-0.0084784,0.10684,0.0050415,0.066095,-0.037989,0.092203,0.0029909,0.031892,-0.073984,0.014737,0.011399,-0.023813 -0.0099499,0.018665,0.10151,0.027877,-0.0078344,0.061895,0.17469,0.021584,0.046113,0.033792,0.00040576,0.16476,-0.026776,0.013343,0.023177,-0.026954,-0.084757,-0.019147,0.058082,0.047351 -0.04108,0.027258,0.048687,0.042895,-0.026677,0.099437,0.11943,0.04787,0.070288,-0.084794,-0.049132,0.17859,0.035082,-0.024137,0.047252,-0.022113,-0.082906,-0.03864,0.07286,0.063598 -0.076541,0.0075266,-0.013836,0.024567,-0.046818,0.10406,0.044794,0.057498,0.051773,-0.14741,-0.087714,0.089906,0.085494,0.01628,0.059398,0.026701,-0.060142,-0.012325,0.075884,-0.026417 -0.09884,-0.023381,-0.062883,-0.01088,-0.04871,0.073746,0.0021831,0.036438,0.013957,-0.10748,-0.076468,-0.014126,0.076842,0.058329,0.03997,0.053141,-0.028825,0.038628,0.097488,-0.1154 -0.10009,-0.047125,-0.086444,-0.042829,-0.036166,0.02492,0.003581,-0.00010453,-0.018348,-0.021207,-0.024825,-0.054778,0.030599,0.035692,-0.0073159,0.041425,-0.0066926,0.074563,0.11126,-0.10467 -0.082485,-0.051729,-0.082391,-0.058123,-0.021079,-0.017598,0.022965,-0.024813,-0.034908,0.036837,0.023082,-0.033686,-0.011375,-0.024096,-0.057454,0.021887,-0.011282,0.077741,0.084425,-0.033144 -0.056375,-0.042528,-0.060078,-0.055154,-0.011295,-0.036783,0.033653,-0.025012,-0.033939,0.044066,0.044073,-0.0010086,-0.028981,-0.062619,-0.078193,0.012218,-0.028924,0.058087,0.041135,0.017715 -0.031642,-0.028857,-0.034285,-0.042363,-0.008961,-0.03534,0.031152,-0.0108,-0.023928,0.026124,0.04108,0.013969,-0.027307,-0.062683,-0.067614,0.0094806,-0.035036,0.031583,0.010828,0.026166 -0.014103,-0.016684,-0.014763,-0.027569,-0.0092102,-0.023682,0.021735,0.00018447,-0.012708,0.0081959,0.025565,0.012209,-0.018961,-0.040781,-0.043171,0.006912,-0.025431,0.0097499,0.0015505,0.013564 -0.0047185,-0.0084887,-0.0039925,-0.01568,-0.0081808,-0.012001,0.012885,0.0034737,-0.0050369,-0.0015072,0.010273,0.0062493,-0.010621,-0.019416,-0.021781,0.0035478,-0.013242,-0.0028652,0.0023384,0.002265 -0.00088558,-0.0040635,-0.00065003,-0.0074418,-0.0049777,-0.0045462,0.0063143,0.0024041,-0.0019805,-0.0030217,0.0025608,0.0022671,-0.004908,-0.0078422,-0.0092602,0.0016087,-0.0049376,-0.0047759,0.002782,-0.0014075 -2.0236e-05,-0.0012312,-4.8455e-05,-0.0022472,-0.0016108,-0.00095109,0.0018824,0.00062044,-0.00060632,-0.0011713,0.00036736,0.00043398,-0.0013669,-0.0023129,-0.0024223,0.00084289,-0.0012449,-0.0023879,0.00071361,-0.00056442 2.8115e-05,-0.00017517,5.3844e-07,-0.00030979,-0.00018378,-1.986e-06,0.00026284,6.3615e-05,-9.1281e-05,-0.00016327,5.615e-05,4.5393e-05,-0.00022544,-0.00031925,-0.00027268,0.00021371,-0.00016961,-0.00057107,-2.2161e-06,-0.00012399 2.382e-06,-1.6093e-06,5.701e-07,1.9522e-06,2.3483e-06,-9.1343e-07,-4.3105e-06,-2.9256e-06,1.4177e-07,-8.0349e-07,-4.0358e-06,-6.754e-07,1.9447e-06,3.9423e-07,-7.135e-07,4.7451e-06,4.7476e-07,-6.406e-06,8.3466e-07,5.8297e-06 1.3117e-06,-1.1684e-06,5.5238e-07,5.5986e-08,3.286e-07,-1.1109e-06,5.7269e-07,-6.6761e-07,-1.5863e-06,4.9188e-07,-1.0215e-06,-1.8862e-07,-2.6493e-06,2.8151e-06,3.3853e-06,7.4862e-07,6.7329e-07,1.7397e-06,2.1238e-08,1.4269e-06 -4.0157e-06,-1.6189e-05,-1.2034e-05,5.3798e-06,-6.4919e-06,-9.9915e-07,-6.0784e-06,5.7235e-05,3.8565e-05,-3.8607e-06,-8.2438e-06,-2.044e-05,-2.3864e-06,3.9857e-05,8.2026e-06,-5.4778e-05,2.0681e-05,-1.8344e-06,-2.2157e-05,-3.8943e-05 -0.00016217,-0.00050693,4.0752e-05,0.00045217,-0.00032655,-0.00026339,-0.00046663,0.001379,0.00065622,0.00015619,-8.3283e-05,0.00040108,0.0002883,0.0010672,-0.00024915,-0.0013463,0.00044477,0.00051652,0.00016696,-0.00035557 -0.0017224,-0.0026659,0.0020439,0.001613,-0.0019265,-0.0026403,-0.0033741,0.0070323,0.0044397,-0.0012549,0.0035395,0.0023733,0.002244,0.0061123,-0.0033323,-0.0076065,0.0039472,0.0030755,0.0017539,-0.001505 -0.0087653,-0.0090952,0.0099409,0.0050652,-0.0009947,-0.0078679,-0.010188,0.019834,0.010729,-0.0065811,0.012356,0.0096535,0.0039329,0.021332,-0.016402,-0.018806,0.018915,0.009075,0.0095441,-0.0025142 -0.024602,-0.022809,0.024653,0.016262,0.0063327,-0.016401,-0.022681,0.036872,0.0145,-0.017804,0.021585,0.025824,0.0034877,0.043575,-0.046319,-0.03505,0.04145,0.01417,0.031375,-0.0077661 -0.046868,-0.044879,0.040841,0.033206,0.015075,-0.028935,-0.035654,0.051803,0.018813,-0.031709,0.024754,0.044996,0.0013772,0.051189,-0.081725,-0.046055,0.05588,0.013446,0.052748,-0.015048 -0.069325,-0.07138,0.050913,0.047153,0.016711,-0.042568,-0.042263,0.05785,0.023827,-0.039774,0.015035,0.052273,0.00033771,0.027459,-0.09743,-0.042546,0.048145,0.0082323,0.048699,-0.01276 -0.082409,-0.097066,0.053601,0.048681,0.0053345,-0.054301,-0.036244,0.053084,0.023752,-0.035891,-0.012571,0.033328,0.0090111,-0.015137,-0.082961,-0.015093,0.014169,0.0039671,0.0083439,0.0017366 -0.081866,-0.11437,0.055598,0.036874,-0.012296,-0.057839,-0.014675,0.040912,0.0091904,-0.016254,-0.050943,-0.0095411,0.024562,-0.030602,-0.04855,0.038562,-0.035843,0.01013,-0.048367,0.010315 -0.068858,-0.11746,0.063764,0.022216,-0.024346,-0.050399,0.020906,0.025495,-0.015493,0.023139,-0.072096,-0.048063,0.030955,0.0068639,-0.010039,0.097075,-0.084658,0.026926,-0.080937,-0.0088421 -0.050155,-0.10296,0.07756,0.017367,-0.022284,-0.033072,0.071216,0.012655,-0.032066,0.081527,-0.063852,-0.05192,0.0071478,0.069413,0.021278,0.12706,-0.11758,0.049162,-0.059284,-0.05012 -0.035549,-0.073334,0.085342,0.031999,-0.010007,-0.0032046,0.12342,0.0032165,-0.019164,0.12609,-0.033759,0.0025517,-0.035995,0.090478,0.0543,0.098656,-0.13641,0.05958,0.0083872,-0.064693 -0.03025,-0.038602,0.069059,0.058779,0.00014114,0.04248,0.15538,-0.0014045,0.025501,0.10534,-0.009467,0.098245,-0.053463,0.038555,0.086003,0.023888,-0.13891,0.046631,0.085914,-0.01829 -0.039937,-0.014653,0.023142,0.076347,-0.0043626,0.084972,0.13884,0.0026426,0.067684,0.011207,-0.021565,0.16539,-0.010778,-0.039666,0.10264,-0.02509,-0.11312,0.024314,0.12995,0.039814 -0.060705,-0.010443,-0.038271,0.068499,-0.021372,0.10015,0.077608,0.0063516,0.072703,-0.085263,-0.055873,0.14003,0.05527,-0.067025,0.096009,-0.001965,-0.063976,0.027445,0.12365,0.024454 -0.079538,-0.02086,-0.09305,0.035858,-0.036182,0.077146,0.014918,0.00097798,0.03901,-0.10925,-0.06824,0.044428,0.084394,-0.036034,0.06266,0.054862,-0.014397,0.065887,0.092073,-0.056327 -0.085056,-0.033918,-0.12094,-0.0041395,-0.037621,0.030007,-0.013025,-0.012922,-0.0062353,-0.057152,-0.033739,-0.039241,0.055662,-0.011203,0.011684,0.083815,0.012048,0.10868,0.065375,-0.097184 -0.07363,-0.040399,-0.11434,-0.033133,-0.028861,-0.014276,-0.0063831,-0.024174,-0.035197,0.0086946,0.02085,-0.05907,0.0080562,-0.028282,-0.035101,0.06987,0.011657,0.11876,0.043322,-0.058468 -0.053124,-0.036538,-0.085552,-0.043617,-0.019087,-0.03651,0.0091141,-0.022584,-0.040652,0.039615,0.055226,-0.03476,-0.023603,-0.054486,-0.063117,0.042031,-0.0069912,0.094906,0.019966,-0.00041211 -0.032042,-0.027053,-0.051618,-0.038798,-0.013579,-0.037733,0.017175,-0.011144,-0.030822,0.034573,0.056736,-0.0087335,-0.029354,-0.061284,-0.062532,0.022274,-0.020457,0.057964,0.0039674,0.025467 -0.015916,-0.017128,-0.024726,-0.027984,-0.011306,-0.027337,0.016646,-0.00040324,-0.016704,0.01821,0.038611,0.0033373,-0.022353,-0.045678,-0.044601,0.011764,-0.020594,0.027727,0.00015869,0.019985 -0.006538,-0.0094892,-0.0090268,-0.017701,-0.0096468,-0.016213,0.011832,0.0041657,-0.0070314,0.0051899,0.019495,0.0047256,-0.01334,-0.025296,-0.025007,0.0064193,-0.013046,0.008371,0.002045,0.0076586 -0.0023192,-0.0051389,-0.0022835,-0.009974,-0.0068893,-0.0082763,0.0074625,0.0038734,-0.0021139,-0.00090435,0.0077399,0.0029417,-0.0076149,-0.012038,-0.012386,0.0038671,-0.0066223,-0.00033484,0.0034123,0.00020324 -0.00050429,-0.0024784,-0.00038808,-0.0045712,-0.0036036,-0.0033208,0.0036344,0.0020483,-0.00059607,-0.0015092,0.0018443,0.0013356,-0.0035622,-0.0049575,-0.0052868,0.0017232,-0.0023804,-0.0019422,0.001882,-0.001497 -3.715e-05,-0.00059823,-5.8889e-05,-0.0011916,-0.00098331,-0.00065933,0.00097557,0.00044931,-0.00022154,-0.00051933,0.00019936,0.00024826,-0.00091716,-0.0011431,-0.0014124,0.00054815,-0.00053107,-0.0010214,8.855e-05,-0.00031043 -6.3203e-06,-6.3594e-05,2.3327e-05,-0.00013154,-0.00012062,-1.2384e-05,0.0001011,3.8069e-05,-1.6057e-05,-5.5413e-05,-1.5276e-05,1.6359e-05,-0.00017168,-0.00014474,-9.6285e-05,4.8212e-05,-4.8072e-05,-0.00023385,-0.00010624,-0.00012033 -2.0805e-06,-9.5002e-07,-7.0716e-07,1.3428e-07,-4.5108e-07,5.0981e-07,6.2098e-07,-1.8551e-06,3.2428e-07,2.3831e-06,-5.6903e-06,-2.6945e-06,-6.91e-07,-5.5814e-06,3.8879e-06,-7.1863e-08,1.9674e-06,-2.7323e-06,-8.5931e-07,-1.9506e-06 1.2707e-06,-1.1319e-06,5.3511e-07,5.4236e-08,3.1833e-07,-1.0762e-06,5.5479e-07,-6.4675e-07,-1.5367e-06,4.765e-07,-9.896e-07,-1.8272e-07,-2.5665e-06,2.7271e-06,3.2795e-06,7.2523e-07,6.5225e-07,1.6854e-06,2.0575e-08,1.3823e-06 5.2407e-07,-1.8634e-06,-1.8853e-06,8.8198e-07,4.344e-07,-3.1171e-07,-1.6645e-06,2.9352e-06,1.1605e-06,2.4025e-07,-1.5701e-06,-2.3023e-06,-1.3952e-06,3.9995e-06,3.062e-06,-4.2804e-06,4.4989e-06,1.2057e-06,6.5894e-07,1.72e-07 -7.4542e-05,-0.00030144,-6.9424e-05,0.00030095,-0.00017776,-0.00016134,-0.00027223,0.0007998,0.00035392,0.00012802,-9.2833e-05,0.00020214,0.00015224,0.00067408,-2.9598e-05,-0.00081599,0.00020109,7.0885e-05,0.00034879,-0.00015874 -0.00093718,-0.0016364,0.00064331,0.0014015,-0.0013025,-0.0014903,-0.0016863,0.0040046,0.0026195,-9.3194e-05,0.0017802,0.0012555,0.0014247,0.0040656,-0.0014717,-0.0043561,0.0017392,0.00069846,0.0016871,-0.00075161 -0.0042414,-0.0056909,0.0039077,0.0047205,-0.0023173,-0.0050893,-0.0062498,0.011747,0.0074647,-0.0018669,0.0072741,0.0048659,0.0037325,0.013487,-0.0075928,-0.012736,0.0090815,0.0017736,0.008247,-0.00059089 -0.012883,-0.015086,0.013035,0.014077,-0.00058793,-0.012251,-0.017828,0.023755,0.012539,-0.0068117,0.016738,0.013329,0.0081378,0.030766,-0.024183,-0.027572,0.025963,0.00076479,0.028919,-0.00117 -0.027595,-0.032403,0.025103,0.033445,0.0034239,-0.023805,-0.034804,0.036322,0.018927,-0.013762,0.025778,0.026149,0.012156,0.047711,-0.047793,-0.043495,0.045225,-0.0063805,0.062571,-0.0019685 -0.045347,-0.056879,0.034429,0.057953,0.0053727,-0.039252,-0.051459,0.045198,0.026327,-0.019115,0.023672,0.032676,0.016473,0.052467,-0.062515,-0.050142,0.056116,-0.018737,0.089944,0.00047918 -0.059327,-0.084002,0.03642,0.079552,0.0037367,-0.058178,-0.059399,0.044124,0.029562,-0.012681,0.0080906,0.018743,0.021274,0.040717,-0.054471,-0.030876,0.048642,-0.029435,0.086238,0.0064107 -0.064585,-0.10542,0.032003,0.093243,-0.00029702,-0.07276,-0.050315,0.033789,0.022652,0.012971,-0.016745,-0.015039,0.022555,0.033604,-0.020575,0.018206,0.022281,-0.027994,0.050734,0.0023855 -0.059859,-0.11286,0.026936,0.10191,-0.002819,-0.075042,-0.020681,0.015968,0.0084516,0.060343,-0.031203,-0.047337,0.0075118,0.043742,0.028922,0.074567,-0.016816,-0.0089104,0.013591,-0.018813 -0.049428,-0.10174,0.020308,0.11372,-0.00090895,-0.059571,0.02514,-0.0035345,0.0034234,0.11079,-0.022064,-0.04617,-0.028954,0.05391,0.079828,0.10093,-0.05369,0.020846,0.014579,-0.041057 -0.040413,-0.07666,0.0049182,0.1284,0.0035607,-0.02638,0.068922,-0.019934,0.018251,0.12617,0.0029085,0.0045635,-0.066091,0.026234,0.12587,0.075034,-0.075534,0.041646,0.05187,-0.023673 -0.037166,-0.048854,-0.028626,0.13611,0.0052607,0.018029,0.089736,-0.032384,0.049353,0.076105,0.019675,0.076408,-0.063369,-0.046152,0.1491,0.0192,-0.062867,0.04682,0.090283,0.027737 -0.040797,-0.02898,-0.075781,0.12352,-0.0023697,0.050995,0.070526,-0.0378,0.067485,-0.014313,0.012216,0.10805,-0.011624,-0.11225,0.13471,-0.00041665,-0.014724,0.050358,0.087552,0.05828 -0.049531,-0.019689,-0.12056,0.08819,-0.017916,0.053544,0.024249,-0.03928,0.05104,-0.077767,-0.0045443,0.066077,0.041345,-0.119,0.085254,0.036264,0.040052,0.070108,0.044355,0.02814 -0.055189,-0.016597,-0.14319,0.040613,-0.029015,0.028093,-0.015159,-0.03582,0.0078931,-0.076074,-0.0010551,-0.010933,0.052535,-0.081703,0.023014,0.082957,0.065369,0.10237,-0.0064375,-0.028675 -0.052064,-0.015679,-0.13481,-0.001212,-0.03002,-0.006351,-0.0284,-0.029302,-0.032818,-0.029764,0.027574,-0.060241,0.023781,-0.046897,-0.026657,0.092134,0.053212,0.11783,-0.030593,-0.044375 -0.040354,-0.015233,-0.10265,-0.02478,-0.023267,-0.028395,-0.018174,-0.020734,-0.047507,0.013322,0.05637,-0.058957,-0.0097226,-0.037525,-0.050022,0.064195,0.024331,0.10258,-0.029927,-0.012738 -0.026139,-0.011977,-0.064308,-0.030501,-0.015829,-0.032681,-0.004479,-0.0094232,-0.040946,0.026843,0.062613,-0.034093,-0.023993,-0.037747,-0.049715,0.029956,-0.0010589,0.068404,-0.019391,0.015473 -0.014013,-0.0081929,-0.033353,-0.025141,-0.011486,-0.025668,0.0031632,-0.00069054,-0.025752,0.020178,0.047706,-0.013251,-0.021131,-0.03159,-0.036857,0.0094682,-0.0094527,0.036012,-0.007669,0.019352 -0.0064714,-0.0052428,-0.013805,-0.017156,-0.0086169,-0.016476,0.0056744,0.0034894,-0.012019,0.0091552,0.027676,-0.0027692,-0.013979,-0.020108,-0.022229,0.0025705,-0.0086573,0.014909,-5.6347e-05,0.010939 -0.0027543,-0.0032802,-0.0044905,-0.010348,-0.0063986,-0.0094891,0.004664,0.0036279,-0.0043207,0.0024082,0.012998,0.00062333,-0.008139,-0.011065,-0.011926,0.001371,-0.0047496,0.0043524,0.0025659,0.0034019 -0.0011177,-0.0018634,-0.0010673,-0.0056866,-0.0038881,-0.0048003,0.003218,0.0026091,-0.0010464,-0.00040326,0.0053251,0.00092224,-0.0044598,-0.0053913,-0.0059393,0.0010443,-0.0023963,-3.7383e-05,0.0024347,-0.00012915 -0.00030636,-0.00090817,-0.00020317,-0.0022949,-0.001743,-0.0018465,0.0015919,0.0011643,-0.00014702,-0.00052246,0.0012009,0.00041289,-0.0018385,-0.002282,-0.002409,0.00039911,-0.00072772,-0.00078926,0.0007336,-0.00045095 -4.4767e-05,-0.0001707,-5.7746e-05,-0.00047596,-0.0003855,-0.00029942,0.00040439,0.00020882,-2.1099e-05,-0.00011361,8.33e-05,8.1302e-05,-0.00038979,-0.00039641,-0.00056262,0.00020181,-0.00021353,-0.00041352,6.7743e-06,3.0124e-05 -6.3909e-06,-1.594e-05,1.9284e-05,-3.2525e-05,-4.3347e-05,-8.7799e-06,3.4782e-05,9.3717e-06,-8.9539e-06,-1.163e-05,-3.8521e-05,-5.0784e-06,-4.6075e-05,-1.6224e-05,-1.8902e-05,2.2958e-05,5.4414e-06,-4.7333e-05,-3.6349e-05,6.1945e-06 -3.8409e-06,-1.7539e-06,-1.3055e-06,2.479e-07,-8.3275e-07,9.412e-07,1.1464e-06,-3.4248e-06,5.9867e-07,4.3996e-06,-1.0505e-05,-4.9744e-06,-1.2757e-06,-1.0304e-05,7.1777e-06,-1.3267e-07,3.6321e-06,-5.0443e-06,-1.5864e-06,-3.601e-06 3.3827e-17,1.7347e-18,-2.3419e-17,0,8.6736e-19,5.2042e-18,1.0408e-17,-4.7705e-18,-2.6021e-18,6.9389e-18,1.3878e-17,1.1276e-17,2.4937e-17,3.3827e-17,-1.2848e-17,-2.1684e-17,-2.1684e-18,0,2.5912e-17,1.6046e-17 1.8872e-09,-9.2155e-07,1.3663e-07,8.6177e-07,-4.3673e-07,2.8983e-08,7.2808e-07,3.6136e-06,3.6779e-08,3.8454e-07,-1.1834e-06,8.646e-07,-4.9419e-07,2.2497e-06,3.0049e-07,-7.4636e-07,1.0079e-06,-9.9253e-07,-1.6722e-06,-8.6837e-07 -1.7999e-05,-9.0056e-05,-6.6094e-05,0.00012343,-4.2275e-05,-4.0913e-05,-7.0376e-05,0.00026518,6.8096e-05,9.1218e-05,-2.7024e-05,5.3875e-05,1.3897e-05,0.00027851,3.7068e-05,-0.00031845,4.2687e-05,-0.00017222,0.00013662,2.899e-08 -0.00025545,-0.0006018,-4.9787e-05,0.00071255,-0.00049073,-0.00049285,-0.00059719,0.0013165,0.00072274,0.00031425,0.0006982,0.0004085,0.00043464,0.0017188,-0.00030521,-0.0017153,0.00035482,-0.00069238,0.00079813,-0.00011363 -0.0011178,-0.0022216,0.0006814,0.0028317,-0.001453,-0.0025006,-0.0027674,0.0042876,0.0027614,0.00020421,0.0031159,0.001447,0.0023349,0.0060614,-0.0022665,-0.0062766,0.0023383,-0.0026428,0.0037504,-0.00027352 -0.0035587,-0.0061361,0.0038204,0.0084658,-0.0022178,-0.0071577,-0.009092,0.0091536,0.0056218,-0.00065906,0.0087697,0.0032568,0.0075915,0.01444,-0.0080523,-0.015294,0.0086712,-0.0082298,0.013924,0.00012089 -0.0087306,-0.014229,0.0098219,0.022099,-0.002183,-0.015594,-0.021599,0.01399,0.0086088,-0.001613,0.017673,0.0057465,0.015844,0.027239,-0.018598,-0.027938,0.020043,-0.021012,0.037228,0.0017883 -0.016553,-0.027726,0.017515,0.045539,-0.0021172,-0.029574,-0.038194,0.017368,0.011298,-0.00053092,0.024424,0.0041257,0.02614,0.041939,-0.02809,-0.039219,0.034875,-0.042576,0.068843,0.0042483 -0.024658,-0.044686,0.022258,0.075167,-0.0020176,-0.048083,-0.052254,0.015258,0.012913,0.0084623,0.02541,-0.010133,0.033707,0.055274,-0.023845,-0.037093,0.046592,-0.066593,0.090514,0.0087521 -0.02944,-0.058796,0.020319,0.10466,-0.0020713,-0.06619,-0.05475,0.0020525,0.012914,0.032749,0.020812,-0.037111,0.030901,0.064408,0.00098566,-0.014738,0.048696,-0.080549,0.086347,0.0079678 -0.029277,-0.063527,0.0092373,0.13026,-0.0015011,-0.074689,-0.038136,-0.019032,0.012723,0.072486,0.019398,-0.060881,0.0064416,0.064494,0.043021,0.016804,0.04123,-0.076145,0.065553,-0.00035376 -0.026324,-0.054093,-0.013058,0.14833,-0.001006,-0.066383,-0.0058327,-0.042398,0.020004,0.10477,0.027888,-0.057269,-0.031704,0.039412,0.08987,0.033601,0.028171,-0.059103,0.046786,0.0038994 -0.022458,-0.034864,-0.04613,0.1535,-0.0019081,-0.041527,0.026107,-0.060888,0.034356,0.097924,0.04162,-0.018919,-0.059941,-0.018529,0.12247,0.022088,0.024367,-0.03789,0.039188,0.039074 -0.018955,-0.015082,-0.083579,0.14049,-0.0054149,-0.0096472,0.040447,-0.068975,0.044582,0.043559,0.050801,0.025726,-0.050834,-0.086928,0.12189,0.0021713,0.04445,-0.017975,0.022167,0.084144 -0.017517,0.00047605,-0.1165,0.10723,-0.012145,0.013289,0.02838,-0.067011,0.038088,-0.027527,0.047432,0.040083,-0.010439,-0.12598,0.0818,0.0098317,0.080731,0.0092036,-0.017843,0.096837 -0.019293,0.010638,-0.13205,0.063149,-0.021089,0.01604,-0.00035207,-0.054552,0.0095078,-0.067123,0.039303,0.010953,0.026569,-0.11111,0.021953,0.045677,0.10083,0.041364,-0.063364,0.060631 -0.021464,0.015436,-0.12415,0.0214,-0.026377,0.0021675,-0.024474,-0.035482,-0.025008,-0.060714,0.036997,-0.033212,0.029181,-0.062492,-0.025182,0.070202,0.085041,0.066453,-0.086546,0.011114 -0.019704,0.015434,-0.097895,-0.0076722,-0.02358,-0.012801,-0.031198,-0.016739,-0.046104,-0.030043,0.043877,-0.054398,0.00921,-0.020485,-0.043622,0.06049,0.048502,0.071235,-0.074061,-0.010369 -0.01449,0.0116,-0.064253,-0.02035,-0.016453,-0.019086,-0.022839,-0.0039316,-0.046801,-0.0029359,0.048157,-0.04628,-0.0089541,-0.0037204,-0.038674,0.030617,0.016051,0.055791,-0.043461,-0.003493 -0.0088807,0.0074599,-0.036088,-0.020546,-0.010146,-0.017329,-0.012355,0.0025022,-0.034313,0.0077021,0.042216,-0.028066,-0.013767,-0.0016912,-0.025869,0.0054681,-0.00068137,0.032213,-0.016075,0.0052675 -0.0048447,0.0041743,-0.017075,-0.015711,-0.0059529,-0.012646,-0.0047471,0.0041494,-0.02025,0.0074785,0.028719,-0.012614,-0.011068,-0.0032531,-0.013981,-0.0052657,-0.0052902,0.014909,-0.0013515,0.0061489 -0.0024978,0.0015993,-0.0065452,-0.0096466,-0.003678,-0.0080034,-0.00040419,0.0031892,-0.0092377,0.0038138,0.016266,-0.0045239,-0.0067512,-0.0036119,-0.0072902,-0.0053229,-0.0041381,0.0052944,0.0023272,0.0038898 -0.0011229,0.00040564,-0.0022277,-0.0053467,-0.0022051,-0.0044734,0.00083375,0.0019821,-0.0037253,0.0011836,0.007768,-0.0011544,-0.0033495,-0.0024464,-0.0041104,-0.0030218,-0.0021285,0.0010808,0.0022589,0.0015598 -0.00042556,9.3759e-05,-0.00068095,-0.0026244,-0.0011552,-0.0020717,0.00088355,0.0010278,-0.0013207,0.00017881,0.0029766,-0.00025363,-0.0014944,-0.0015135,-0.0016565,-0.0014853,-0.0010583,-0.00035711,0.0015989,0.0004749 -0.00010889,-3.3031e-05,-0.00015685,-0.00077772,-0.00036611,-0.00056861,0.0003957,0.00026518,-0.00035377,3.6249e-05,0.000572,7.5101e-05,-0.00031903,-0.00040295,-0.00063692,-0.00051116,-0.00039388,-0.00031457,0.00017331,0.00021578 -8.4373e-06,7.5693e-06,-3.626e-05,-0.00011452,-6.259e-05,-8.9211e-05,6.8579e-05,1.0153e-05,-7.5178e-06,-1.048e-05,4.0309e-05,-1.9713e-05,-5.8175e-05,-2.1836e-05,-0.00010141,-9.4034e-06,-6.2973e-05,-5.4083e-05,-4.1428e-05,0.0001028 6.4107e-06,-8.2284e-06,5.1973e-06,-1.9012e-06,-1.0523e-05,-3.7429e-06,8.8819e-06,-1.0602e-05,-8.0493e-06,-1.3371e-05,5.8268e-06,-1.243e-05,-1.0028e-05,7.8646e-07,2.4592e-05,-1.1733e-06,-6.5768e-06,-1.9272e-05,-1.5859e-05,1.5626e-05 5.2042e-18,-6.9389e-18,-2.4286e-17,-2.2551e-17,-1.7347e-18,-2.4286e-17,3.8164e-17,-2.2985e-17,-3.296e-17,-1.3878e-17,3.4694e-17,1.7347e-17,5.5945e-17,6.0715e-17,-3.1333e-17,-8.6736e-18,3.4694e-18,2.0817e-17,5.4427e-17,6.5052e-18 3.1225e-17,8.6736e-19,-8.6736e-18,-4.3368e-18,6.9389e-18,3.4694e-18,5.2042e-18,-4.3368e-18,-1.2577e-17,5.2042e-18,2.7756e-17,7.8063e-18,1.2577e-17,1.648e-17,-9.297e-18,8.6736e-18,-8.6736e-19,8.6736e-19,2.2443e-17,-4.3368e-18 6.7654e-17,-2.4286e-17,-2.0817e-17,-1.7347e-17,-2.6021e-17,1.0408e-17,1.0408e-17,1.8648e-17,-7.1124e-17,-6.9389e-18,8.3267e-17,2.949e-17,5.9848e-17,5.5511e-17,-3.8164e-17,6.9389e-18,-6.9389e-18,0,4.3368e-17,5.6379e-18 -3.2728e-06,-8.7522e-06,-1.5088e-05,2.3961e-05,3.8399e-06,-1.7891e-05,-5.26e-06,5.2518e-05,2.0738e-05,5.8012e-06,-9.8421e-06,-3.851e-06,5.4718e-06,7.7648e-05,2.1139e-05,-7.6832e-05,-3.9812e-05,-8.0896e-05,5.5125e-05,-5.8257e-06 -2.7351e-05,-0.00011474,-7.4326e-05,0.00022172,-0.00011575,-0.0001942,-0.00013116,0.00025191,0.00015478,0.00011073,0.00022668,1.1103e-05,0.00010261,0.0004867,-7.3068e-05,-0.00051728,-1.2155e-05,-0.00040016,0.00018702,1.0246e-05 -7.3262e-05,-0.0003723,5.1364e-05,0.00097694,-0.00029976,-0.00097529,-0.00076129,0.0008683,0.00052551,0.00036774,0.0011044,-0.00010404,0.00091948,0.001671,-0.00066928,-0.001927,0.00034955,-0.0019586,0.00063506,-0.00054256 -0.00018257,-0.00086116,0.00076837,0.0028835,-0.00069759,-0.0029715,-0.002523,0.0017001,0.0010363,0.0009422,0.0032463,-0.0012288,0.0036343,0.0043868,-0.0023538,-0.0047176,0.0013758,-0.0059525,0.0024955,-0.0014475 -0.00034636,-0.0016691,0.0028518,0.0082522,-0.001204,-0.0076633,-0.0062575,0.0015945,0.00087217,0.0029247,0.0079702,-0.0047539,0.0093342,0.0095983,-0.0062642,-0.0081272,0.0038954,-0.014223,0.0087265,-0.003685 -0.00048033,-0.0024554,0.0069652,0.01935,-0.0016508,-0.016503,-0.010954,-0.00068627,0.00027741,0.0090167,0.015667,-0.013526,0.017854,0.01816,-0.011489,-0.010627,0.0082897,-0.029435,0.020089,-0.0078751 -0.0003299,-0.0020828,0.011445,0.037566,-0.0024854,-0.028715,-0.014434,-0.0067485,-0.00050615,0.021845,0.02513,-0.027629,0.025919,0.030382,-0.014315,-0.010847,0.012797,-0.05,0.033796,-0.013199 0.00098613,0.00090677,0.012911,0.060873,-0.0037695,-0.042527,-0.013332,-0.017798,-0.00023378,0.042187,0.033849,-0.044872,0.025845,0.038939,-0.010138,-0.0072752,0.016428,-0.071128,0.043927,-0.016747 0.0034617,0.0092593,0.0076104,0.084741,-0.0053913,-0.051419,-0.0032807,-0.032194,0.0031895,0.064106,0.040486,-0.055159,0.0099144,0.034774,0.0042842,-0.0050378,0.015661,-0.086613,0.044015,-0.0083868 0.0054344,0.021792,-0.0088047,0.10066,-0.0086353,-0.048573,0.011608,-0.043957,0.008578,0.069921,0.045059,-0.04714,-0.013842,0.010011,0.024806,-0.0090116,0.014049,-0.094459,0.033537,0.021866 0.0066882,0.034721,-0.032926,0.10218,-0.012587,-0.036158,0.023309,-0.049804,0.013696,0.04667,0.044595,-0.024069,-0.027819,-0.028896,0.038227,-0.017939,0.017811,-0.089051,0.010979,0.067332 0.0069237,0.04253,-0.05705,0.087407,-0.015381,-0.018586,0.024808,-0.047005,0.01041,7.6918e-05,0.039479,-0.0021801,-0.021112,-0.062296,0.03266,-0.020541,0.033298,-0.068516,-0.020683,0.1007 0.0056974,0.045008,-0.071914,0.060621,-0.017483,-0.0043088,0.012671,-0.03609,-0.00050064,-0.043552,0.028735,0.0036204,-0.00057634,-0.069016,0.0090857,-0.0071358,0.049688,-0.035389,-0.053788,0.095867 0.002542,0.042825,-0.073954,0.029865,-0.018081,0.00064177,-0.0060281,-0.019398,-0.016804,-0.062949,0.017936,-0.0088489,0.017104,-0.045039,-0.017285,0.013358,0.052517,-0.0011489,-0.072102,0.054992 -0.00051555,0.037049,-0.063998,0.0053561,-0.016617,-0.0016001,-0.019788,-0.0042593,-0.03009,-0.056442,0.012723,-0.02701,0.018088,-0.010271,-0.029897,0.023184,0.037608,0.023297,-0.069552,0.0074181 -0.0023606,0.028906,-0.047653,-0.0092013,-0.012649,-0.0052897,-0.023609,0.005213,-0.035385,-0.035886,0.014077,-0.03435,0.007849,0.013504,-0.027733,0.016203,0.017104,0.032428,-0.046723,-0.01749 -0.0027405,0.019518,-0.030374,-0.014022,-0.0077941,-0.0071214,-0.01829,0.0081006,-0.03135,-0.015123,0.017447,-0.028245,-0.0014239,0.01943,-0.017826,0.0021075,0.0024265,0.026634,-0.021037,-0.017129 -0.00237,0.011935,-0.017062,-0.012554,-0.0039931,-0.0069121,-0.01073,0.0068904,-0.0228,-0.0034595,0.016999,-0.0183,-0.0047366,0.013523,-0.0087385,-0.0077431,-0.0036649,0.01562,-0.0039942,-0.0084928 -0.0016941,0.0065551,-0.0081903,-0.0088005,-0.0017296,-0.0052229,-0.0052877,0.0040951,-0.01397,0.00066464,0.012724,-0.0095116,-0.0043839,0.0061516,-0.0035108,-0.010491,-0.0042977,0.0070067,0.002454,-0.0024418 -0.00097624,0.0030367,-0.0032568,-0.0049038,-0.00043776,-0.0032113,-0.0018819,0.0018411,-0.0070799,0.0013016,0.0076126,-0.0040842,-0.0025034,0.0014145,-0.00178,-0.0077871,-0.0026617,0.0017713,0.0026223,0.00076646 -0.00048112,0.0012802,-0.0011567,-0.0024576,-0.00014836,-0.0018041,-0.00049156,0.00066214,-0.0030309,0.00055511,0.0038216,-0.0014551,-0.0011051,7.0981e-05,-0.0010013,-0.004211,-0.0012537,-0.00013605,0.0013724,0.0010649 -0.0001819,0.00057325,-0.00040863,-0.0010552,-3.2455e-05,-0.00076277,-3.043e-05,0.00021713,-0.0011734,0.00022266,0.0014889,-0.00052403,-0.00044886,-8.1911e-05,-0.00026379,-0.001928,-0.00061068,-0.00035815,0.00059311,0.00062591 -2.3708e-05,0.00012774,-0.00011371,-0.00022007,1.6227e-05,-0.00017332,0.0001029,3.3771e-05,-0.00021762,5.6945e-05,0.00027477,-0.00010759,-5.2129e-05,-2.0471e-05,-0.00011696,-0.0004682,-0.00025955,-9.91e-05,6.6305e-05,0.00018633 3.7324e-06,2.5247e-05,-3.0085e-05,-5.1936e-06,-1.1488e-05,-1.0556e-05,5.3782e-05,-8.4521e-06,-1.2129e-05,-4.2884e-07,2.9594e-05,3.1275e-06,-1.2916e-05,1.2744e-05,-5.0603e-05,6.2206e-06,-3.5531e-05,-1.1313e-05,1.152e-05,-3.7698e-05 1.8744e-06,1.3537e-06,-2.4516e-07,-2.2441e-06,-2.4309e-06,1.129e-06,-1.0281e-06,-6.0749e-06,-3.3871e-06,-9.1734e-06,-3.02e-06,-4.1267e-06,-3.3606e-06,-4.1102e-06,-5.3351e-06,-9.6163e-06,-5.1631e-07,-8.8487e-06,4.1157e-06,-9.1353e-06 2.6455e-17,-1.7347e-18,-8.6736e-18,-8.6736e-19,7.8063e-18,-1.301e-17,1.0408e-17,-3.6863e-18,-1.2577e-17,-4.3368e-18,5.2042e-18,8.2399e-18,1.3444e-17,2.1684e-17,-5.6107e-18,-4.3368e-18,-5.2042e-18,4.3368e-18,1.8431e-17,8.6736e-19 5.3776e-17,5.2042e-18,-1.2143e-17,-8.6736e-18,1.301e-17,-2.2551e-17,1.9082e-17,-3.2526e-18,-2.3419e-17,-1.0408e-17,3.4694e-17,2.0817e-17,1.4745e-17,3.1225e-17,-5.3668e-18,1.2143e-17,6.9389e-18,2.0817e-17,2.3961e-17,1.1709e-17 8.9338e-17,3.6429e-17,1.5613e-17,-1.0408e-17,3.4694e-18,-1.3878e-17,2.0817e-17,-1.5613e-17,-3.0358e-17,-1.3878e-17,3.4694e-17,-7.8063e-18,3.773e-17,3.8164e-17,-5.8547e-18,1.0408e-17,-3.4694e-18,1.7347e-17,4.3151e-17,-1.1059e-17 -4.1474e-07,1.9591e-06,-9.0845e-07,9.5436e-07,4.7113e-07,-3.2919e-06,5.8051e-07,1.8981e-06,3.64e-06,-3.7218e-06,-1.0972e-06,-1.5327e-06,7.1571e-07,2.4332e-06,1.7488e-06,-5.9154e-06,-2.8402e-06,-4.0479e-06,2.2733e-06,-2.1058e-07 6.8562e-06,7.2284e-06,4.0752e-06,1.0062e-05,9.2321e-06,-5.2393e-05,-1.7376e-05,8.1061e-07,1.0139e-05,7.3921e-07,3.8974e-05,-7.2764e-05,4.085e-05,2.2321e-05,-7.4218e-05,-8.3664e-05,-4.3895e-05,-2.7191e-05,-4.1826e-06,2.4445e-05 6.1735e-05,5.8426e-05,0.00015949,0.00013662,6.2601e-05,-0.00038561,-0.00014639,5.7802e-05,-4.6036e-05,5.2495e-05,0.00025083,-0.00048421,0.00054332,0.00010948,-0.00049324,-0.00022201,8.8999e-05,-0.00032453,-4.5778e-06,-0.00034273 0.00019091,0.00041416,0.00082865,0.0005861,0.00032798,-0.0014443,-5.373e-05,0.00021137,-0.00026161,0.00079445,0.00080689,-0.0020348,0.0020687,0.00096953,-0.0015796,0.00013405,0.00049231,-0.001118,-0.00024336,-0.0014808 0.00058554,0.0015319,0.0025236,0.0020576,0.00096429,-0.004239,0.00055045,0.00030686,-0.00084861,0.0033635,0.0020903,-0.0063017,0.0052406,0.0034759,-0.004028,0.0015655,0.00098881,-0.0030399,-0.00045139,-0.0049122 0.0015116,0.0040418,0.0055367,0.0053248,0.0019975,-0.0094954,0.0024106,5.4672e-05,-0.00177,0.009621,0.0041482,-0.014187,0.0091984,0.0083107,-0.0072247,0.0048025,0.0006824,-0.0062026,-0.00033966,-0.01195 0.0033863,0.0091001,0.0095962,0.011738,0.0034826,-0.016745,0.0070276,-0.00075053,-0.0026945,0.022155,0.0064622,-0.024083,0.011448,0.015147,-0.010309,0.0097954,-0.0020313,-0.010211,0.0011992,-0.022324 0.0061053,0.016771,0.012477,0.020457,0.0052141,-0.023167,0.015261,-0.0016318,-0.0024826,0.037988,0.0079126,-0.030422,0.0071519,0.019648,-0.0092847,0.012266,-0.0089569,-0.015001,0.0049459,-0.029653 0.0092895,0.027145,0.011958,0.030533,0.0065244,-0.025813,0.026628,-0.001508,-8.9159e-05,0.049712,0.0072963,-0.02746,-0.0051535,0.015166,-0.0026154,0.0071803,-0.018844,-0.019588,0.010722,-0.024638 0.011611,0.037335,0.0060054,0.037258,0.0065581,-0.023001,0.036209,0.00022518,0.0038573,0.044604,0.0041766,-0.013298,-0.018062,-0.00067137,0.0068616,-0.0062876,-0.027662,-0.023448,0.015045,-0.0024347 0.012383,0.044574,-0.0039251,0.037893,0.0054391,-0.014796,0.038705,0.004005,0.0061855,0.021468,-0.0015947,0.0046039,-0.020761,-0.021161,0.013176,-0.021988,-0.028632,-0.023583,0.014122,0.026146 0.011614,0.046164,-0.014209,0.031733,0.0034939,-0.0053062,0.032151,0.0078127,0.0045794,-0.010364,-0.0089002,0.014552,-0.010715,-0.034239,0.010139,-0.029368,-0.018316,-0.017913,0.0050219,0.043507 0.0091826,0.042372,-0.02156,0.021189,0.0010156,0.0014971,0.018632,0.011728,-0.0011219,-0.035533,-0.015022,0.011379,0.004896,-0.030653,0.00069443,-0.023921,-0.0053987,-0.005802,-0.0089032,0.036989 0.0063231,0.035258,-0.024465,0.0095636,-0.00072825,0.0036264,0.004321,0.01434,-0.008618,-0.044929,-0.017264,-0.00057551,0.015312,-0.014451,-0.0087122,-0.013277,0.0025833,0.0073,-0.018892,0.013013 0.0033907,0.027986,-0.022984,0.00029574,-0.0017042,0.0025643,-0.0061816,0.014262,-0.014507,-0.040352,-0.014239,-0.013057,0.016125,0.0033133,-0.011678,-0.0060473,0.0036146,0.017637,-0.02121,-0.012343 0.0012383,0.020152,-0.018441,-0.0050753,-0.0015397,0.00032441,-0.0093973,0.012022,-0.016837,-0.027477,-0.0069803,-0.018864,0.010857,0.013999,-0.010529,-0.0051291,0.00086305,0.020474,-0.015029,-0.022711 1.5652e-05,0.012806,-0.012454,-0.0066602,-0.0012371,-0.0015118,-0.0074801,0.0083292,-0.015077,-0.013907,0.0002589,-0.016853,0.0047142,0.014549,-0.0068545,-0.0071815,-0.0016441,0.015502,-0.0059653,-0.018291 -0.00048513,0.0074335,-0.0073604,-0.0056703,-0.00066369,-0.0021581,-0.0040125,0.0051191,-0.01125,-0.0054099,0.003862,-0.011583,0.0012131,0.0097719,-0.0035192,-0.0086707,-0.0026214,0.0088648,2.6166e-05,-0.0096821 -0.00053958,0.0038523,-0.0036233,-0.0037266,-2.4387e-05,-0.001804,-0.0015118,0.0025186,-0.0069709,-0.0013514,0.0041138,-0.0063831,-0.00011992,0.0045398,-0.001375,-0.0076142,-0.0024206,0.0039099,0.0020037,-0.0036533 -0.00033188,0.0017339,-0.0015397,-0.0020332,0.00026189,-0.0011142,-0.00040127,0.0011036,-0.0034524,0.00010453,0.0026213,-0.0030236,-0.00023827,0.0014615,-0.00074968,-0.0049708,-0.0012841,0.00109,0.0017255,-0.00061773 -0.00014595,0.00073287,-0.00057836,-0.00091603,0.00017245,-0.0005751,-9.5429e-05,0.00035163,-0.0015228,0.00016385,0.0012558,-0.0009422,-0.00018915,0.0003643,-0.0004222,-0.0022826,-0.00059033,8.0258e-05,0.00064159,0.00021792 -7.6874e-05,0.00028995,-0.00015543,-0.00035292,2.8755e-05,-0.00024884,-2.6907e-05,3.0248e-05,-0.00056966,2.3319e-05,0.0004567,-0.00024557,-0.00011312,2.2261e-05,-0.00011524,-0.0008709,-0.00028354,-0.00012119,0.00013277,0.00022644 -1.5657e-05,7.0821e-05,-2.4685e-05,-7.2845e-05,1.1881e-05,-6.2901e-05,1.0197e-05,1.8103e-05,-0.00010624,-2.9939e-06,0.00011474,-4.6754e-05,-1.8591e-05,1.103e-05,1.4659e-06,-0.00016445,-8.0446e-05,-5.689e-05,4.5741e-06,0.0001025 1.1097e-06,1.115e-05,-7.9191e-06,-1.9201e-06,-1.1054e-05,-1.5362e-06,-1.8955e-06,-4.7296e-06,-3.4289e-06,-2.1852e-05,-2.0845e-06,5.3257e-06,-7.4379e-06,-6.216e-06,-5.2339e-06,-5.7992e-06,-5.7558e-06,-1.1363e-05,-1.1163e-05,-1.4577e-05 1.3625e-06,1.7649e-06,-3.1337e-07,-2.4309e-06,-3.1156e-06,4.1914e-07,-2.0014e-06,-5.314e-06,-4.0067e-06,-1.0048e-05,-4.7728e-06,-4.6976e-06,-4.8423e-06,-3.736e-06,-5.9824e-06,-9.6337e-06,-1.2365e-06,-9.3643e-06,4.1875e-06,-8.9757e-06 7.0256e-17,2.0817e-17,-1.7347e-17,-5.2042e-18,4.1633e-17,0,1.0408e-17,-1.0842e-17,4.3368e-18,1.0408e-17,1.7347e-17,0,1.3444e-17,6.6787e-17,-2.6888e-17,1.5613e-17,-1.5613e-17,1.7347e-17,4.0115e-17,1.8648e-17 3.4694e-17,4.8572e-17,-2.4286e-17,-3.4694e-18,-5.2042e-18,-1.0408e-17,2.4286e-17,-1.6914e-17,-4.8572e-17,2.4286e-17,1.3878e-17,2.6021e-17,4.3368e-17,5.8981e-17,-1.5721e-17,-1.0408e-17,3.4694e-18,4.5103e-17,6.4185e-17,6.0715e-18 3.1659e-17,1.2143e-17,-1.1276e-17,8.6736e-19,4.3368e-18,3.4694e-18,6.9389e-18,-3.2526e-18,-1.301e-17,6.9389e-18,1.0408e-17,-4.3368e-19,9.541e-18,1.9082e-17,-7.481e-18,3.4694e-18,3.9031e-18,6.0715e-18,2.6997e-17,5.3126e-18 1.0929e-16,5.5511e-17,-1.3878e-17,-5.2042e-17,6.9389e-18,-3.1225e-17,2.7756e-17,-3.4694e-17,-5.2042e-17,-1.7347e-17,8.3267e-17,2.4286e-17,9.6277e-17,9.3675e-17,-3.2526e-17,1.3878e-17,-1.5613e-17,5.8981e-17,7.5894e-17,2.8623e-17 8.4421e-07,-6.9845e-08,1.1271e-06,2.5527e-07,4.2676e-07,-6.7452e-07,-1.4236e-06,4.7647e-08,-9.4849e-07,1.5081e-06,1.6773e-06,-2.8279e-06,2.8976e-06,-1.0232e-06,-3.0014e-06,-1.5746e-07,-1.9396e-06,1.0923e-06,-1.8083e-06,-2.1747e-06 2.8937e-05,2.9524e-05,7.3078e-05,1.9884e-05,2.7081e-05,-9.6648e-05,-3.0002e-05,1.9169e-05,-5.461e-05,8.4856e-05,2.2901e-05,-0.00015537,0.00023462,-2.4752e-05,-0.00014395,3.9064e-05,6.0581e-05,4.4403e-06,-3.9708e-05,-0.00014583 9.3402e-05,0.00024772,0.00038032,0.00016738,0.00024573,-0.00054126,0.00011789,0.00012512,-0.0001808,0.0005105,8.8647e-05,-0.00085165,0.00090911,0.00025152,-0.00052378,0.00042166,0.00034804,-9.8066e-05,-0.00019052,-0.00082145 0.00028119,0.00098386,0.0012413,0.00070393,0.00092065,-0.0018811,0.00088754,0.00056461,-0.00049775,0.0019977,0.00047777,-0.0028946,0.0027759,0.0013648,-0.0013513,0.0018512,0.00075305,-0.00046267,-0.0004303,-0.0027392 0.00070837,0.0024139,0.0025748,0.0018472,0.0019701,-0.0042063,0.0025266,0.0012658,-0.00089785,0.0051693,0.00090985,-0.0063298,0.0051167,0.003177,-0.0022657,0.0042669,0.00073454,-0.0007406,-0.00012716,-0.0062499 0.0015428,0.005146,0.0043027,0.0041148,0.0036736,-0.007226,0.0056007,0.0024576,-0.0011479,0.011253,0.0010049,-0.010256,0.0066515,0.0052114,-0.0026115,0.007215,-0.00047081,-0.00075067,0.0010832,-0.011162 0.0025901,0.0085964,0.005094,0.00708,0.0053485,-0.0094333,0.0098089,0.0041041,-0.00063411,0.017208,0.00030808,-0.01172,0.0051841,0.0051417,-0.00097837,0.0075207,-0.0039366,-0.0007464,0.0034366,-0.013432 0.0037741,0.013106,0.0044527,0.010473,0.0069619,-0.010409,0.015359,0.0070667,0.001067,0.020604,-0.0010673,-0.0093046,0.0018378,0.0013918,0.0028653,0.004274,-0.0090454,-0.00073333,0.0067869,-0.0091019 0.0048469,0.017607,0.002121,0.013138,0.0078976,-0.0093459,0.019793,0.010261,0.0029045,0.017762,-0.0037364,-0.0036801,-0.0015261,-0.0063834,0.0065932,-0.0026791,-0.013932,-0.0011553,0.010166,0.00096073 0.0052004,0.020233,-0.001768,0.013377,0.0078867,-0.005989,0.020145,0.013322,0.0036099,0.0070289,-0.0072195,0.0023028,-0.00048097,-0.015111,0.0083694,-0.0095867,-0.015037,-0.00060087,0.01082,0.012975 0.0047671,0.02012,-0.0057258,0.010934,0.0071483,-0.0020747,0.01618,0.014908,0.0020178,-0.0061465,-0.010735,0.0042608,0.0046288,-0.018725,0.0062897,-0.012645,-0.010779,0.0016308,0.0076601,0.018041 0.0036828,0.01799,-0.0083503,0.0071785,0.0060718,0.00056725,0.010034,0.015627,-0.00076917,-0.015262,-0.0124,0.0009004,0.01112,-0.015661,0.0024712,-0.010405,-0.0054018,0.0059222,0.0027195,0.013531 0.002341,0.014092,-0.0088531,0.002948,0.0047483,0.0013112,0.0036313,0.014068,-0.0036458,-0.017424,-0.011162,-0.005186,0.014033,-0.0075563,-0.0009186,-0.0063372,-0.0019801,0.010301,-0.0012547,0.0025012 0.001348,0.010837,-0.0079915,0.00017286,0.0034648,0.0010119,-0.00059471,0.011359,-0.0057129,-0.014509,-0.0087696,-0.0087264,0.012644,-0.0005783,-0.0024091,-0.0039756,-0.0012836,0.01227,-0.0030373,-0.0063556 0.00070818,0.0074992,-0.006226,-0.0013437,0.0024961,0.00053727,-0.0021527,0.0080815,-0.0062467,-0.0091448,-0.0052078,-0.009157,0.0090404,0.0034328,-0.0028463,-0.0033972,-0.00186,0.010952,-0.0020743,-0.0089221 0.0002593,0.0045252,-0.0041244,-0.0017924,0.0016116,1.7144e-05,-0.0018795,0.0049132,-0.0055551,-0.0041749,-0.0016895,-0.0071852,0.005161,0.0040512,-0.0022639,-0.0035644,-0.0020011,0.0076297,0.00013249,-0.0065022 -4.8515e-06,0.0025881,-0.0024126,-0.0015923,0.00086613,-0.00034986,-0.0010599,0.0027078,-0.0043099,-0.0014799,0.00030874,-0.0046888,0.0026628,0.0028159,-0.0011164,-0.0038166,-0.0015847,0.0045793,0.0014415,-0.0033997 -0.00010674,0.0013714,-0.0011554,-0.0010922,0.00047793,-0.00034831,-0.00049663,0.0011299,-0.0028496,-0.0002969,0.00082032,-0.0025739,0.0010387,0.0013137,-0.00033898,-0.0031168,-0.0010947,0.0021582,0.0013603,-0.0014671 -5.3751e-05,0.0005648,-0.000472,-0.00053951,0.00036037,-0.00018782,-0.00020287,0.00044943,-0.0012751,0.00015685,0.00040794,-0.0010944,0.00043221,0.00035648,-0.00014687,-0.0016904,-0.00055089,0.00068079,0.00066113,-0.00028016 -1.8124e-05,0.00018114,-0.00013066,-0.00017036,0.00015743,-7.765e-05,-4.8148e-05,0.00011076,-0.00040336,9.8463e-05,0.00010039,-0.00026678,0.00020552,4.989e-05,-7.198e-05,-0.00054255,-0.00013556,0.0002475,0.00016106,-3.1566e-05 -7.3383e-07,5.6717e-05,-1.9219e-05,-2.4821e-05,2.4317e-05,-2.31e-05,-6.215e-06,1.381e-05,-7.7691e-05,3.6725e-05,2.5651e-05,-2.376e-05,2.4785e-05,1.0739e-05,-4.2719e-06,-0.00010553,-3.9947e-05,3.0419e-05,1.3482e-05,-2.9764e-05 -6.673e-07,2.5052e-06,-1.2834e-06,-1.3607e-06,1.9256e-07,-1.1567e-06,-3.299e-07,1.078e-06,-4.3548e-06,1.3766e-06,3.2446e-06,2.5111e-06,2.209e-07,-3.175e-08,3.1852e-06,-7.2264e-06,-4.2304e-06,-1.6584e-06,-1.9822e-06,1.9994e-06 6.5748e-07,1.5109e-06,2.8012e-06,1.1258e-06,1.824e-06,-3.3529e-06,1.424e-06,1.2329e-06,3.6794e-07,3.5228e-06,6.864e-07,-6.2866e-06,5.9163e-06,1.5743e-06,-3.6993e-06,4.2429e-06,3.2823e-06,3.2038e-07,8.4186e-07,-5.585e-06 1.9516e-17,2.6021e-18,-3.4694e-18,-4.3368e-18,2.6021e-18,-6.0715e-18,1.9082e-17,-8.2399e-18,-1.1276e-17,-1.0408e-17,3.1225e-17,3.4694e-18,9.3241e-18,2.7756e-17,1.301e-18,0,3.4694e-18,6.9389e-18,1.8974e-17,-4.3368e-19 1.3878e-17,-1.3878e-17,-3.4694e-17,-6.9389e-18,-1.7347e-17,1.3878e-17,3.4694e-17,-3.6429e-17,-1.7347e-18,-2.4286e-17,1.249e-16,2.6021e-17,4.5103e-17,7.1124e-17,-4.0224e-17,4.1633e-17,-1.3878e-17,2.0817e-17,9.1073e-17,3.2526e-17 7.8063e-17,2.7756e-17,-1.7347e-17,-4.5103e-17,-2.4286e-17,-1.7347e-17,3.4694e-17,-3.296e-17,-5.2042e-17,-2.4286e-17,9.7145e-17,2.949e-17,4.3368e-17,7.9797e-17,-4.2826e-17,-3.8164e-17,-2.2551e-17,1.0408e-17,6.8088e-17,3.1659e-17 2.6021e-17,1.5613e-17,4.3368e-18,-6.0715e-18,8.6736e-19,-6.9389e-18,0,-4.12e-18,-1.1276e-17,8.6736e-18,2.0817e-17,1.301e-17,1.6046e-17,2.3419e-17,-1.6263e-17,4.3368e-18,0,1.2143e-17,2.5153e-17,1.0625e-17 1.6914e-17,2.2551e-17,-5.2042e-18,-6.0715e-18,5.2042e-18,-4.3368e-18,1.5613e-17,-8.6736e-18,-3.4694e-18,-9.541e-18,1.3878e-17,1.0842e-17,8.6736e-18,1.9516e-17,-1.2089e-17,8.6736e-19,3.4694e-18,1.3878e-17,2.7105e-17,1.1493e-17 1.1926e-18,9.7578e-19,-5.9631e-19,-5.9631e-19,4.3368e-19,-3.2526e-19,4.3368e-19,-9.6223e-19,-1.1926e-18,1.0842e-19,2.1684e-18,7.5894e-19,1.2875e-18,1.8974e-18,-5.2855e-19,-2.7105e-19,5.9631e-19,9.7578e-19,1.6805e-18,6.7763e-19 1.7672e-06,4.0033e-06,5.0892e-06,1.4266e-06,3.4417e-06,-9.0656e-06,4.2437e-06,4.3445e-06,-5.6799e-06,7.0562e-06,-4.2297e-06,-1.251e-05,2.2791e-05,9.9737e-07,-1.6482e-06,4.2663e-06,1.2292e-05,6.7597e-06,-2.3918e-06,-1.2655e-05 7.7967e-06,2.9286e-05,2.7453e-05,1.1574e-05,3.7644e-05,-3.9897e-05,3.3087e-05,4.5504e-05,-2.8105e-05,5.5943e-05,-8.6192e-06,-5.7247e-05,0.0001061,1.9157e-05,9.3085e-06,5.1926e-05,5.5472e-05,1.4327e-05,-2.8065e-05,-5.4311e-05 1.9785e-05,8.2471e-05,6.9809e-05,2.9805e-05,0.00012142,-9.4789e-05,8.8777e-05,0.00012749,-5.0652e-05,0.00015879,1.1637e-05,-0.0001517,0.00024845,6.4701e-05,4.0102e-05,0.00018235,0.00010612,-2.0224e-05,-5.7855e-05,-0.00014466 4.8622e-05,0.00020524,0.00014689,7.512e-05,0.00027291,-0.00020454,0.00019895,0.00027886,-8.4175e-05,0.00043088,5.8638e-05,-0.00032512,0.00051671,0.00012849,0.00013055,0.0004273,0.00020841,2.1373e-05,-0.000116,-0.00032244 5.7081e-05,0.00033714,0.00017677,0.00015521,0.00039504,-0.00024583,0.00036969,0.00043623,-0.00011824,0.00062415,6.3382e-05,-0.00036709,0.00073986,0.00015628,0.00035941,0.00047753,0.00022193,6.3865e-06,-7.677e-05,-0.00033643 0.00010122,0.00055471,0.00016186,0.00028763,0.000561,-0.00033247,0.00064253,0.00068786,-8.267e-05,0.0008236,6.446e-06,-0.0003689,0.00095263,4.946e-05,0.00071285,0.00039095,4.3845e-05,-2.9251e-05,0.00012486,-0.0002436 0.00023008,0.00093703,0.00011447,0.00046406,0.00085909,-0.00043519,0.0010012,0.001194,2.0392e-05,0.0011525,-0.00017599,-0.00038002,0.0013589,-0.00047866,0.0011616,0.00031901,-7.5618e-05,0.00017282,0.0004023,0.00016573 0.00028236,0.0012705,-7.9032e-06,0.00061987,0.001096,-0.00040507,0.0012866,0.0016416,0.00016582,0.00099216,-0.0003374,-0.00029111,0.0016466,-0.0010961,0.0016024,0.00013761,-0.0002378,0.00030668,0.00064115,0.00063285 0.00029796,0.0016343,-0.0003058,0.00067632,0.0014181,-0.00018386,0.0012737,0.0021719,0.00020873,0.00025082,-0.00074844,-0.00020683,0.0023214,-0.0019068,0.0019858,-0.00012128,-0.00025013,0.00050705,0.00059299,0.0012536 0.00029066,0.0018782,-0.00071191,0.0006191,0.0015826,9.8544e-05,0.0010038,0.0027887,2.0248e-05,-0.00071706,-0.001291,-0.00037381,0.0033239,-0.0023683,0.0020745,-0.00030023,3.5156e-05,0.0010905,0.00018282,0.0015427 0.00026332,0.002158,-0.0011537,0.00040291,0.001832,0.00026852,0.00062119,0.003537,-0.00034174,-0.0015531,-0.0018663,-0.0012466,0.0044277,-0.002374,0.0020581,-0.00033521,0.00034598,0.0021164,-7.5577e-05,0.0009118 0.00018603,0.0018507,-0.0012672,6.3899e-05,0.0015947,0.00021753,0.00015785,0.0034339,-0.00061068,-0.0017607,-0.0017479,-0.0021218,0.0043653,-0.0014584,0.0013681,-0.00013244,0.0002979,0.0027906,-5.5374e-05,-0.00027514 9.8629e-05,0.0013989,-0.0011293,-0.00020222,0.0013302,0.00016135,-0.00016092,0.0027883,-0.00095846,-0.0011787,-0.0013309,-0.0024488,0.0036361,-0.000606,0.00084365,-0.00023534,0.00041236,0.0027765,0.00013561,-0.0011047 5.5041e-05,0.00087495,-0.00082959,-0.00032295,0.0010105,7.6986e-05,-0.00027596,0.0018676,-0.0009457,-0.00045709,-0.00084552,-0.0021583,0.0024294,-3.4198e-05,0.00039083,-0.000385,0.00030181,0.002113,0.00028709,-0.0011337 2.314e-05,0.00048732,-0.00046851,-0.00024269,0.00057866,3.3295e-05,-0.0002244,0.0010305,-0.00072487,-2.2465e-05,-0.0004049,-0.0012776,0.0013191,4.7297e-05,0.00013102,-0.00036423,0.0002084,0.0013427,0.00028266,-0.00068235 -3.2902e-06,0.00023245,-0.00023451,-0.00013478,0.0002695,2.8264e-05,-0.00011762,0.00045935,-0.00047429,0.00011165,-0.00011161,-0.00057895,0.00068693,6.4703e-05,-5.68e-06,-0.00031569,0.0001113,0.00069929,0.0001572,-0.00023647 5.7476e-07,0.00010755,-9.4114e-05,-7.9801e-05,0.00012994,-1.3054e-05,-4.1316e-05,0.00017581,-0.00021665,3.953e-05,2.8721e-06,-0.00025965,0.00025909,8.5764e-06,-5.5166e-06,-0.00021397,-3.982e-05,0.00026357,0.00013327,-6.6896e-05 6.0348e-07,3.0285e-05,-2.7509e-05,-3.9023e-05,5.9247e-05,-1.0869e-05,-2.3237e-05,3.2022e-05,-7.8575e-05,4.2786e-05,-1.1382e-05,-5.8668e-05,6.2758e-05,-3.0068e-05,-7.5382e-06,-0.00011384,-1.6178e-05,4.6278e-05,3.2121e-05,1.3906e-05 7.8381e-07,1.8108e-05,-1.3828e-05,-3.8754e-05,6.8548e-05,-1.7225e-05,-2.0589e-05,1.5949e-05,-3.8138e-05,2.9428e-05,-5.3785e-06,-2.2514e-05,4.5409e-05,-5.7419e-05,1.9101e-06,-7.6987e-05,-4.2044e-08,5.5623e-06,7.4385e-06,2.732e-05 -6.5095e-08,1.9003e-06,-1.5715e-06,-5.5703e-06,1.1223e-05,-3.3391e-06,-3.1033e-06,2.1791e-06,-4.7098e-06,3.6039e-06,-8.4039e-07,2.1941e-07,6.9606e-06,-1.0142e-05,1.1103e-06,-1.0107e-05,4.6668e-07,1.4142e-06,-7.1159e-07,2.0127e-06 6.0715e-17,2.4286e-17,-1.7347e-17,1.9082e-17,2.6021e-17,-1.7347e-18,2.0817e-17,-1.7347e-17,-2.949e-17,-2.4286e-17,1.0408e-17,8.6736e-18,2.3419e-17,3.296e-17,-1.6046e-17,2.0817e-17,6.0715e-18,1.3878e-17,3.3177e-17,-6.0715e-18 1.1796e-16,-5.2042e-17,-6.245e-17,-1.3878e-17,-2.4286e-17,-4.1633e-17,4.8572e-17,-3.4694e-18,-2.6021e-17,-2.7756e-17,6.245e-17,4.1633e-17,4.8572e-17,7.8063e-17,-6.245e-17,-1.0408e-17,-1.9082e-17,-3.4694e-18,5.0741e-17,3.2526e-17 1.0625e-17,3.4694e-18,-3.2526e-18,-1.9516e-18,2.8189e-18,-2.1684e-19,4.7705e-18,-1.0842e-19,-2.1684e-18,-2.1684e-18,1.7347e-18,2.1684e-19,5.15e-18,8.6736e-18,-5.6243e-18,-8.6736e-19,-1.0842e-18,2.6021e-18,8.7549e-18,1.2197e-18 5.8981e-17,3.4694e-17,-4.1633e-17,6.9389e-18,1.2143e-17,-4.5103e-17,2.7756e-17,-1.5179e-17,-5.7246e-17,0,1.1102e-16,3.6429e-17,3.6429e-17,3.6429e-17,-2.0817e-17,1.3878e-17,-3.1225e-17,3.4694e-18,7.7629e-17,-9.9747e-18 ================================================ FILE: mnist_csv/Xtest.txt ================================================ -3.7361,-0.50598,1.5505,-0.21144,-1.331,0.15785,1.29,-0.21137,-0.093135,0.022976,-0.59622,0.59524,0.14981,0.61427,1.0268,0.74283,0.26004,-0.24116,-0.090842,0.74336 -2.8598,-0.79404,-0.58453,-0.071963,0.10653,-0.96736,0.80482,-0.84818,-0.10991,-0.41964,0.1345,1.0729,0.35133,-0.031616,-0.47077,0.64388,-0.18166,0.91572,0.20148,0.007816 -2.0248,-0.31111,1.498,1.81,-0.55755,0.57453,0.0081843,0.47713,-1.0187,0.069129,0.6973,0.21529,-0.1346,-0.47365,0.30331,0.46413,0.25088,-0.61824,0.26359,0.84855 -1.7868,-0.30369,-0.48574,1.0878,-1.6699,0.50183,0.72441,0.18685,-0.89494,0.3006,0.15026,-1.2324,-0.32351,-0.82629,0.048414,-0.0076411,0.44456,-0.060102,-0.028146,-0.34505 -3.415,-0.29351,1.7987,2.4276,0.091691,0.13246,0.52024,0.19115,-1.7444,-0.38839,0.0041162,0.74059,-0.65895,0.16717,-0.10425,0.15628,0.65367,-0.24902,0.73646,-0.27526 -5.7953,-0.39618,1.7281,1.3224,-1.5111,0.16704,1.8187,-0.50043,-1.2632,-0.48623,0.14276,0.86343,0.13875,0.3019,0.34761,0.50308,0.45956,0.061204,-0.66511,-0.10654 -2.9172,-0.57925,1.0287,2.255,-0.95566,0.48451,0.037411,0.38886,-1.2085,-0.3266,0.53722,-0.4666,-0.052654,-0.78438,1.0007,0.16751,0.30474,-0.48552,0.37234,0.27317 -5.7396,-0.77908,1.097,1.5313,-0.63814,-0.19216,1.8658,-0.69087,-1.5132,-0.55265,-0.18871,0.75767,-0.19562,0.1986,-0.11535,0.15016,0.40646,0.58272,-0.04272,-0.50282 -3.7742,0.61246,1.1713,-0.24999,-0.64831,-0.84373,1.9426,-0.73706,-0.9988,-1.2751,0.34273,0.39416,0.25593,1.0785,0.53714,-0.13099,0.16995,-0.61609,-0.63517,0.47863 -2.7146,0.5713,1.1209,1.3136,-1.2465,-0.46397,0.60903,0.60255,0.75037,0.19388,-0.21028,0.66039,-0.34259,0.33636,0.71447,0.011051,0.48828,0.57038,-0.5663,-0.10752 -0.65165,-0.16297,1.1154,0.52071,-1.5778,-0.86653,0.040161,0.65393,-0.72811,0.1809,0.07516,0.86229,0.32423,-0.25735,-0.65673,-0.096899,0.3497,-0.0090324,-0.38009,-0.29398 -3.5455,-0.0131,0.52322,0.80281,-1.8214,0.66961,1.288,0.39725,0.26362,0.16557,-1.1197,-0.017954,-0.56001,0.20721,0.9853,-0.037225,0.34078,0.042733,-0.28667,-0.67723 -3.1062,-0.1381,1.8643,1.8695,0.13365,0.40704,0.48417,-0.067891,-1.147,-0.56887,0.39414,0.38379,-0.33517,1.4563,-0.16838,-0.022736,0.66358,0.33352,0.42649,0.47353 -3.9166,0.27571,1.1156,1.8718,-0.0026199,-0.062983,1.2996,-0.70299,-1.2729,-0.71077,-0.3553,0.77397,-0.45602,0.97869,-0.1121,0.16272,0.17847,-0.4832,0.64141,-0.26314 -4.6688,-0.26498,1.147,1.5538,-0.80831,-0.059365,0.96747,-0.44692,-0.025237,-0.26997,-0.30477,0.72632,-0.3107,0.62329,0.89697,0.024236,0.67315,-0.34249,-0.16412,-0.35733 -3.0002,-0.52215,0.7467,1.6808,-2.2459,0.88994,0.75057,0.47553,-0.054828,0.012141,0.036827,-0.81156,0.094892,-0.96768,1.2446,0.075516,-0.27295,-0.068569,-0.11356,-0.44636 -3.1144,0.88836,0.47009,-0.62964,-0.23347,-1.1635,2.0369,-0.37316,-1.8641,-1.1431,0.28685,0.14079,0.30106,0.14548,0.44078,-0.64469,-0.21797,-0.58554,-0.010944,0.13876 -2.8183,-0.14979,1.2037,2.3439,-2.1507,0.72049,1.1683,0.73833,-0.4654,-0.015369,0.36844,-0.6501,-0.17482,-0.96232,0.85704,0.013369,-0.33883,-0.47626,-0.37085,-0.39158 -3.5717,0.28973,-1.0403,0.52593,-1.8002,-0.3526,0.87828,0.4855,-0.21599,0.0070066,-0.66427,0.016176,-0.47688,-0.050375,1.3294,0.69104,0.64015,0.39593,-0.48473,-0.37419 -1.1702,-0.31089,0.45106,0.51788,-1.0778,1.0232,0.72976,0.96562,-1.1604,0.37066,-0.62888,0.16925,0.29558,-0.42549,0.79189,-0.16329,0.35896,-0.0030532,0.16236,0.092412 -2.1718,-0.54825,-0.97088,-0.042048,-0.20319,-1.116,1.2832,-0.13442,-1.0783,0.079124,0.70207,0.17275,-0.61418,-1.1869,-0.050915,0.12732,-0.081158,0.46745,-0.15635,-0.25356 -4.4846,-0.22834,1.9353,0.64858,-0.18232,0.27625,1.4354,-0.9573,-1.3706,-1.067,-0.20953,0.57855,-0.015833,1.0702,-0.41952,-0.023714,0.15175,0.27841,-0.075036,0.27768 -4.0729,-0.67413,-0.34916,1.3586,0.13103,-0.99063,1.5292,-1.2702,-0.69023,-0.75485,-0.12484,0.47103,-0.39664,0.37564,0.21198,-0.2369,-0.038288,1.0555,0.25998,-0.59737 -4.6937,-1.3531,-0.73188,0.031069,0.0286,-1.6183,1.573,-0.5248,-0.45297,-0.69052,0.83861,1.4603,0.34342,0.29417,-0.091265,0.49834,-0.43666,0.81527,0.50052,0.071963 -3.1428,-0.32722,-0.065514,0.99468,-1.0687,0.23724,0.56509,-0.23278,0.57888,-0.012932,-0.5775,0.071525,-0.27122,0.27843,1.4498,0.037605,0.58387,0.39476,-0.20175,-0.40859 -3.0764,-0.35271,-0.49564,1.2831,-1.2513,0.088934,0.76429,-1.1515,-0.35546,0.34654,0.082194,-0.98018,-0.58575,-1.0789,0.036713,-0.25372,0.8463,-0.52189,-0.27602,-0.26379 -4.6279,-0.77504,-0.93578,1.5794,-0.17174,-2.3336,1.669,-1.1903,-1.3521,-1.0186,0.5702,0.85133,-0.47946,-0.51688,-0.58657,0.58851,0.016771,0.51326,0.096818,-0.39127 -2.3303,0.50533,2.0781,0.99177,-0.17069,-0.49278,0.86878,0.12293,-1.8756,-0.65441,0.18641,0.15808,-0.20046,0.43186,-0.65085,0.63398,1.1871,0.33366,-0.2545,0.28553 -3.7869,-0.12912,1.935,2.0454,0.15941,-0.042402,0.24486,-0.15891,-0.68468,-0.49401,0.45719,0.67979,-0.034787,1.3536,0.20798,-0.1964,0.65021,0.35651,0.59906,0.090885 -3.6001,-0.7436,-0.50709,-0.14389,-1.0723,-0.54536,1.1042,-0.83118,-0.17202,0.30239,-0.32658,0.37669,-0.2982,-0.32044,1.2827,0.74447,0.17634,0.27748,-0.19835,-0.14904 -2.9988,0.038887,-0.95214,-0.27234,-1.6543,0.38891,1.1702,-0.79623,-0.43614,0.72008,-0.47924,-0.45166,0.098147,-0.1856,0.63506,0.20308,0.68634,-0.067032,0.19105,-0.3079 -5.0239,-0.71947,-0.59615,0.5275,-0.74671,-1.375,1.178,-0.95416,-0.46783,-0.34568,0.58661,0.35691,0.20813,0.043383,1.2169,0.26393,0.15801,0.56139,-0.40386,0.41045 -3.5897,-0.68437,-0.90853,0.74542,-0.17947,-2.1721,0.45124,-0.50714,-0.12849,-0.052878,1.2954,0.51433,0.30193,-0.18391,0.12272,-0.22432,0.82714,0.39509,-0.11077,0.14861 -4.6192,-0.62034,1.4178,0.93812,-0.29517,0.45552,1.2233,-0.82058,-0.78421,-0.3419,-0.188,0.4621,-0.12157,0.53913,-0.019225,-0.27084,0.087418,1.0904,0.0030979,-0.18893 -4.003,-0.12525,-0.99055,1.5329,-0.78384,-1.3061,1.2092,-0.93531,-1.1483,-0.15597,-0.20217,-0.37777,-0.98977,-0.31564,0.40743,-0.4412,1.0629,0.7184,-0.38114,-0.27923 -5.2427,-0.33237,0.9101,2.517,-0.3675,0.046858,1.4727,-0.30393,-2.333,-0.83145,0.016077,1.1537,0.053805,0.65184,0.11814,0.21462,1.0212,-0.028907,0.4408,-0.12878 -4.3446,0.16487,1.6459,0.89938,-0.1551,0.58254,1.4398,-0.69438,-1.6217,-0.4971,-0.051311,0.54886,-0.0064839,0.49432,0.059785,-0.13457,-0.0031153,0.18978,-0.43346,-0.4576 -4.3474,-0.72658,2.3031,2.2851,-0.78897,0.45912,0.37832,0.71963,-2.263,-0.27394,0.30648,0.81709,-0.24319,0.1784,0.44785,0.22981,0.57867,-0.14612,0.50006,0.024641 -3.5435,0.57294,0.89628,0.79292,-0.96545,0.71539,0.63308,0.78361,-3.1464,-0.16016,-0.3367,1.8563,0.49214,-0.096688,0.30608,-0.95157,1.008,0.18605,-0.1118,-0.9441 -3.8614,-0.547,0.65032,0.86586,0.15584,-0.68864,1.3565,-1.3968,-0.54712,-1.0721,-0.074999,0.80042,-0.032975,0.42943,-0.36739,0.0095985,-0.44759,1.0277,-0.19823,-0.49324 -3.9943,-0.25503,0.51418,1.5881,-0.63098,0.30151,1.2969,-0.26254,-0.18176,-0.28249,-0.51212,0.25102,-0.60891,0.75782,0.97542,-0.26308,0.55637,0.16453,0.24064,-0.72378 -2.0234,-0.68599,-0.048051,0.36834,0.115,-0.1744,0.30437,0.49735,-0.042534,-0.28546,0.62203,0.63965,0.3563,0.28672,0.68804,0.0099839,0.0261,0.16272,0.90913,0.17905 -3.8332,-0.62883,-0.68936,0.83252,-0.092867,-2.0904,0.98427,-0.99928,-0.34092,-0.125,0.067491,1.0648,-0.29875,-0.37201,0.12745,0.6819,0.19535,0.64619,-0.44418,-0.23939 -3.2397,-0.34067,0.39009,1.2536,-2.2966,1.143,1.3223,-0.12155,-0.52141,0.13693,-0.33497,-0.76196,0.13446,-0.66892,1.0328,0.30222,-0.031388,-0.38559,-0.0039659,-0.80258 -4.6553,-0.14091,0.84357,1.5853,-2.2062,0.78045,1.482,0.02781,-0.99091,0.13327,-0.19932,-0.30137,0.16324,-0.88282,0.8748,0.21753,0.26198,-0.85871,-0.015026,-0.83655 -4.5922,-1.1125,0.13894,0.94128,-1.0804,-0.46185,1.0681,-1.3044,-0.0036003,-0.020273,-0.83837,0.56095,-0.55311,-0.3159,0.55805,0.66305,0.23538,0.22216,-0.015571,-0.44824 -3.3078,-0.62878,2.2758,2.2231,-0.92996,0.61602,0.37512,0.96191,-0.96362,-0.20197,0.93698,0.31579,-0.39112,-0.094291,0.61014,0.13392,0.18867,-0.020132,-0.1027,0.15565 -3.8239,0.44706,2.1221,1.1087,-1.1894,0.39345,1.2565,0.27702,-1.0897,-0.032089,-0.23829,-0.068327,-0.34848,-0.10171,0.1794,-0.23946,0.4351,-0.26034,-0.85942,-0.48084 -3.4524,-0.52287,-0.36751,0.78856,-1.2164,-0.02762,1.228,-0.60762,0.11272,-0.059455,-0.59478,-0.11912,-0.40731,0.046442,1.3326,0.36256,0.29615,-0.18932,-0.3533,-0.6129 -2.9144,0.46078,1.2593,1.4458,-2.1152,0.07349,1.014,0.51294,0.662,0.15481,-0.59757,0.29933,-0.84021,-0.25512,0.67922,-0.052513,0.25565,0.5848,-0.78865,-0.056998 0.16773,-1.6466,0.75249,0.57475,-1.7244,-0.82876,0.3894,-0.29569,-1.7481,-0.44168,-0.32293,-0.12751,0.1906,0.58454,0.83762,0.29961,0.10837,0.073827,-0.23089,0.22662 0.36973,-1.4063,0.84397,1.1268,-1.6195,-0.184,1.5936,-0.73664,-1.8524,-0.16154,0.69,-0.10844,-0.17107,0.60617,0.91828,0.13161,0.27072,0.35026,-0.21577,-0.27557 0.38855,-0.89632,0.52373,0.90726,-1.1682,0.29637,1.7664,-0.69913,-0.84003,-0.3711,0.8561,0.82382,-0.36794,0.27898,0.94963,-0.21634,0.54159,0.81099,0.077996,-0.13253 0.10087,-1.0618,0.88343,0.63089,-2.0344,-1.579,0.096885,-0.30316,-1.223,-0.14453,-0.77679,-0.03448,0.32801,0.44452,0.42238,0.0666,0.23023,0.18615,0.29348,0.19307 0.35032,-0.83944,0.45867,0.68527,-0.73083,-0.016619,1.3137,-0.62597,-0.78168,0.099995,0.69439,0.28619,-0.34063,0.56781,0.77647,-0.13302,0.4161,0.3954,-0.14057,-0.19245 0.11508,-0.36978,0.13613,0.80182,-0.81032,0.63531,1.4893,-0.41186,-0.048791,-0.46202,0.72031,1.1067,0.093473,-0.19842,0.3348,-0.25853,0.61388,0.52247,0.12459,-0.1297 0.065276,-0.26464,0.056762,0.64242,-0.77835,0.58267,1.2573,-0.37092,-0.011425,-0.63119,0.60215,0.98211,0.12033,-0.20404,0.23107,-0.20265,0.566,0.45465,0.065345,-0.20968 -0.1834,-0.1566,-0.11519,0.50163,-0.95596,0.66877,0.89003,-0.22149,-0.14796,-0.65936,0.54404,0.50319,0.57479,-0.089516,-0.27581,0.1548,0.6493,0.50624,-0.018856,-0.50507 -0.38397,-0.21069,-0.091241,0.76303,-1.6771,0.99755,1.3342,-0.63665,-0.43609,-0.85103,0.93625,0.64992,0.87619,-0.1404,-0.37704,0.33326,0.78568,0.68474,0.14142,-0.68397 0.14955,-1.4543,1.0173,0.53972,-2.0631,-1.2931,0.52539,-0.20844,-1.5763,-0.38621,-0.70118,-0.085308,0.087351,0.59686,0.52529,0.15249,0.33915,0.38231,0.12093,0.33833 0.073394,-1.5814,0.88643,0.53966,-1.8904,-1.1526,0.13787,-0.18767,-1.7511,-0.67353,-0.58954,-0.012512,0.31154,0.35879,0.60809,0.11054,0.22082,0.0018837,0.0048832,0.43851 0.10606,-0.4582,0.16388,0.74656,-1.2178,0.72703,1.7869,-0.60068,-0.38583,-0.60642,0.93761,1.1256,0.53369,-0.1772,0.24339,0.053215,0.86553,0.49092,0.2547,-0.36135 0.365,-1.163,0.6136,0.78668,-1.3743,-0.71218,1.107,-0.39976,-1.3168,-0.0018272,-0.27656,0.35909,-0.54198,0.74132,1.0934,0.20246,0.28031,0.49124,0.13822,0.14927 0.21023,-0.49197,0.29177,0.84512,-0.89914,0.70789,1.7177,-0.54334,-0.40931,-0.64564,0.94071,0.99866,0.1751,-0.14791,0.45742,-0.24524,0.72762,0.65447,0.10622,-0.28015 0.30621,-1.5368,1.0313,1.0512,-1.7949,-0.28945,1.4978,-0.54161,-1.8567,-0.25651,0.36684,0.23488,-0.32582,0.56689,1.1521,0.37594,0.052166,0.67322,-0.064824,0.11358 0.083951,-1.8753,1.0772,0.75126,-2.1499,-0.91977,0.67874,-0.28668,-1.982,-0.53521,-0.26,-0.12876,0.036042,0.48981,0.79801,0.21054,0.16165,0.29226,-0.2266,0.20543 -0.36713,-1.6171,1.2377,0.43302,-2.1228,-1.1564,-0.11998,0.063478,-1.8353,-0.75925,-0.63487,0.2662,0.51109,-0.22007,0.3192,-0.082787,0.0066171,-0.14956,-0.13637,0.52299 0.25357,-0.26266,-0.02315,0.63251,-0.72549,0.50305,1.0033,-0.38583,-0.58605,-0.69584,0.67815,0.70221,0.36469,-0.067454,0.15443,-0.22183,0.63605,0.44975,-0.045402,-0.24952 -0.004365,-0.19675,0.086685,0.61767,-0.80722,0.61711,1.0998,-0.53828,-0.044565,-0.45832,0.61153,0.7429,0.48205,-0.25036,0.039799,-0.12707,0.56158,0.39409,0.15939,-0.23139 0.52733,-0.90672,0.50974,1.0825,-1.3898,-0.48244,1.6711,-0.52264,-1.3343,-0.086583,0.2223,0.6373,-0.79031,0.56553,0.98353,0.038454,0.59799,0.42899,0.053094,0.11335 0.33071,-0.82664,0.64065,0.58531,-0.96655,-0.45465,1.2095,-0.34223,-0.88215,0.18233,-0.097575,0.42426,-0.6427,0.78032,0.74927,0.19269,0.22901,0.41927,0.086641,0.046131 0.15815,-0.30913,0.083081,0.69748,-0.4015,0.27962,1.1021,-0.29088,-0.36196,-0.34645,0.5113,0.61369,-0.32653,-0.078489,0.48682,-0.18666,0.31494,0.30869,0.0086626,0.078637 0.30459,-1.116,0.85619,1.7942,-2.1706,-0.56603,1.5859,-0.53998,-1.9285,-0.31277,0.35352,0.77205,-0.31721,0.089463,1.1432,0.31174,0.32774,0.47246,0.34165,0.48368 0.2937,-0.52914,0.23914,0.91981,-1.0753,0.57473,1.8199,-0.49409,-0.47359,-0.54875,0.81818,1.1496,-0.050795,-0.017674,0.42197,-0.34321,0.79038,0.66701,0.078244,-0.20388 0.26342,-1.1296,0.48831,0.58243,-1.4223,-1.0085,0.37435,-0.27068,-1.4024,-0.085741,-0.61507,0.010841,0.011682,0.59211,0.791,0.24797,0.17029,0.058245,0.03339,-0.0074939 -0.011712,-0.82728,0.94345,0.4694,-1.8577,-1.5309,-0.11323,-0.19054,-0.9697,-0.32202,-0.68441,0.1627,0.64152,0.24055,-0.0031037,-0.080373,0.39321,0.23603,0.56818,0.2419 0.36778,-1.3856,0.87895,1.1062,-1.5662,-0.10389,1.8255,-0.56818,-1.5991,-0.23951,0.48444,0.49418,-0.42225,0.56459,1.1297,0.22243,0.24292,0.72928,-0.10597,0.095239 0.23974,-0.64106,0.39357,1.469,-1.7843,0.74073,2.3784,-0.66507,-0.92343,-0.77148,0.93931,1.1681,0.0097919,0.13983,0.46407,-0.21434,0.81755,0.80254,0.12929,-0.25066 0.38948,-0.84945,0.43164,0.53388,-0.73748,-0.15981,1.0508,-0.42141,-0.97759,-0.00963,0.36571,0.29991,-0.45701,0.62172,0.82536,0.064409,0.35269,0.45438,-0.12145,-0.12396 -0.13018,-1.2708,1.0212,0.72631,-2.2177,-1.6601,-0.22947,-0.028104,-1.4574,-0.5828,-0.67714,0.34051,0.69029,0.024986,0.19377,-0.25906,0.34854,0.065476,0.29308,0.25789 -0.083692,-0.14147,-0.08305,0.59801,-0.91784,0.65241,0.9795,-0.25578,-0.25892,-0.76091,0.70676,0.53085,0.52509,-0.012376,-0.24173,0.038566,0.65767,0.42899,-0.15129,-0.46475 0.2794,-0.31178,0.25822,0.80707,-0.79696,0.40483,1.5592,-0.47619,-0.31932,-0.39539,0.80497,0.80999,-0.16354,0.058269,0.20302,-0.43605,0.6947,0.4618,-0.0072313,-0.033374 0.40386,-1.3969,0.65314,0.71127,-1.4023,-0.50581,0.90378,-0.47363,-1.7885,-0.17424,0.21396,-0.14409,0.024884,0.81064,0.7686,0.25874,0.26986,0.19245,-0.34743,-0.13489 0.31984,-1.4399,0.91531,1.3573,-1.8799,-0.95433,1.3004,-0.55608,-1.7978,0.0065099,0.054415,0.15727,-0.42344,0.66293,1.1034,0.35082,0.28532,0.31826,0.049073,0.23809 0.44037,-0.40965,0.85779,1.0103,-1.565,0.097251,1.8715,-0.24343,-0.86534,0.05754,0.88829,0.78612,-0.47677,0.70404,0.30995,0.012772,0.43296,0.99257,-0.083195,0.067764 0.4588,-0.89203,0.6391,0.78878,-1.0781,0.16687,1.7335,-0.66204,-0.92253,-0.15634,0.80866,0.69157,-0.36907,0.42838,0.89649,-0.13669,0.53998,0.77814,0.011967,-0.12314 -0.064447,-0.52677,-0.1606,0.75403,-0.84695,0.51987,1.2193,-0.65171,-0.16141,-0.67826,0.826,0.51858,-0.048974,-0.14769,0.20156,-0.28753,0.61495,0.52779,-0.28443,-0.35986 0.40496,-0.95977,0.56887,0.51685,-0.86886,-0.13537,1.1716,-0.47261,-1.1178,-0.064749,0.38855,0.35262,-0.33329,0.62197,1.001,0.11769,0.27382,0.43034,-0.057902,-0.052571 -0.08963,-0.20862,-0.048118,0.8102,-1.1505,0.76857,1.2949,-0.53724,-0.17042,-0.52125,0.7359,0.99636,0.76568,-0.25826,-0.055719,0.086089,0.74196,0.23374,0.057204,-0.099447 0.24341,-1.0466,0.80542,1.4444,-2.234,0.31981,2.452,-0.57135,-1.1679,-0.58788,0.75936,0.96034,-0.39789,0.32742,0.6805,0.0090968,0.66603,0.99721,-0.05213,-0.050395 0.52253,-0.49429,0.57112,0.69446,-1.0517,0.15156,1.7279,-0.45375,-0.73319,-0.21532,0.67118,1.0084,-0.36907,0.36911,0.58651,-0.08136,0.64744,0.65003,0.12211,-0.058148 0.5207,-0.69318,0.40666,0.83697,-1.0541,0.18701,1.6722,-0.50015,-0.9924,-0.39705,0.67569,0.94193,-0.40115,0.32514,0.66399,-0.27345,0.6621,0.63572,-0.033603,-0.070691 -0.035539,-0.40011,0.2713,0.87054,-0.88067,0.70289,1.2165,-0.68734,-0.21686,-0.57179,0.87605,0.48619,0.17749,-0.22012,0.14406,-0.29783,0.51483,0.50703,-0.16814,-0.14625 0.2551,-0.85095,0.56336,1.6309,-2.1492,0.27102,2.3091,-0.47163,-1.3983,-0.74731,0.66755,0.94943,-0.50577,0.13973,0.62974,-0.051481,0.69941,1.0693,0.037832,-0.03118 -0.13671,-1.2463,0.78352,0.87612,-1.2022,-1.1443,-0.10938,-0.18135,-1.4984,-0.57442,-0.086067,-0.084227,0.48781,0.2966,0.64724,0.31472,0.24451,-0.3287,0.11804,0.23212 0.29185,-0.93206,0.53575,0.46082,-0.68671,0.11216,1.1627,-0.53474,-0.8422,0.088099,0.68535,0.16019,-0.0094988,0.46711,0.77036,0.060426,0.30289,0.55975,-0.13141,-0.43525 0.2336,-1.588,1.0075,0.66263,-1.4576,-0.58397,0.91124,-0.39578,-1.7409,-0.23068,0.041634,-0.06772,-0.062871,0.82793,1.0123,0.4171,0.023103,0.33785,-0.20457,0.24396 0.29738,-1.0772,0.69868,0.80729,-0.93053,0.20169,1.4878,-0.68408,-0.83069,0.027949,0.94155,0.35133,-0.29338,0.51519,0.87709,-0.02897,0.347,0.82834,-0.20032,-0.20396 0.50524,-0.72729,0.33946,1.0791,-1.1035,0.070788,1.7308,-0.60244,-1.1178,-0.21154,0.68212,0.75581,-0.43932,0.25482,0.82934,-0.21469,0.71182,0.66367,0.064641,0.086474 0.33684,-0.5145,0.29602,0.88572,-0.92034,0.50148,1.7213,-0.39829,-0.56361,-0.54469,0.80982,1.1205,-0.15731,-0.0098965,0.52153,-0.24989,0.71978,0.54639,0.016812,-0.09752 -1.9554,-2.7272,0.86314,0.18244,-3.0778,-0.2111,2.0573,0.24339,-1.7444,-0.79408,-0.41772,1.0524,-0.1535,-0.18496,0.39936,0.11415,-0.048906,0.13344,0.59631,-0.53665 -2.9098,-0.14786,1.5171,-0.010309,-2.336,-1.3265,0.94922,-0.11497,-1.2468,-1.0487,1.9979,0.40992,-0.77951,0.61819,-0.7141,-0.16381,0.64748,-1.0633,0.45893,-0.10955 -1.7063,-0.024313,1.2182,1.3546,-1.4424,-0.57834,0.44517,1.299,-0.12858,0.77933,-0.099789,0.95595,-0.40209,0.52284,0.082681,-0.12182,0.59731,0.96144,-0.49453,0.22935 -1.8057,-1.6908,0.021896,1.6611,-2.6874,-0.0087383,1.8681,-0.88955,-1.0264,-1.2005,-0.87258,-0.17549,0.23672,0.63855,1.1173,0.13381,-0.33128,0.36826,0.39798,-0.21242 -2.0703,0.40494,2.1226,0.016221,-1.7925,-0.5485,0.25413,1.0074,0.075985,0.069351,1.0688,0.95692,-0.17764,0.5776,0.73308,0.029264,0.34804,0.65983,0.35598,-0.24185 -2.733,0.25653,2.0205,-0.069246,-2.0901,-0.96626,0.36332,0.16845,-1.3172,-0.14879,1.0733,0.71343,1.5314,0.79048,-0.3542,0.11007,1.0094,1.5585,-0.48212,0.72307 -1.53,-1.9309,0.67749,-0.55795,-2.6216,0.56176,2.2027,0.13698,-1.6244,-0.59892,0.86649,0.822,0.38178,-0.35621,-0.36627,0.14978,-0.022859,-0.80786,0.035866,-0.36808 -1.3013,-1.7007,0.59751,0.031143,-2.7087,-0.21639,0.60806,0.04058,-1.0538,-1.582,0.12635,0.76266,-0.1842,-0.66679,0.092337,0.17568,0.66845,0.24021,-0.048316,0.11567 -1.3072,-0.51491,0.92912,0.27704,-2.5279,-0.28773,1.0366,0.93937,-0.72807,1.1059,-0.28485,0.95298,-1.0745,-0.11953,-0.20073,-0.25624,-0.12296,0.37088,-0.46714,0.19215 -1.7112,-0.6821,0.42923,1.6996,-2.1132,-1.1038,0.73883,-1.0992,0.25182,-0.62183,-0.46199,-0.17708,0.65941,0.96072,0.67757,-0.15157,-0.094663,0.62069,0.78205,0.22129 -3.6648,-0.3162,2.1874,0.24802,-1.6575,-0.57447,1.2187,0.12359,0.16892,-1.2788,1.206,0.44867,-0.17874,0.13718,0.61575,-0.023771,1.0124,0.77123,-0.71925,0.29553 -0.81244,-1.5761,0.28595,0.24032,-2.1747,-0.97044,1.6645,0.13019,-0.44144,0.29497,-0.84721,0.6108,-0.32871,0.40324,0.471,0.67735,0.1485,0.58148,0.99665,-0.43637 -2.7669,-0.4905,1.6889,0.76298,-3.3424,-0.52473,2.2297,0.18577,-0.64018,-0.7225,0.18884,-0.96959,-0.4528,-0.2158,-0.65056,0.45585,0.75883,0.4788,0.27382,-0.2759 -2.4581,-0.53688,1.8963,0.49526,-3.2864,-1.2855,0.24912,-0.081576,0.074676,-1.4183,1.011,-0.40611,0.40691,0.27822,-0.691,-0.85609,0.75489,0.89415,0.25041,-0.091025 -1.716,-0.98737,0.94907,0.23925,-2.4311,-1.7201,0.58436,0.13477,0.65786,0.10841,0.54292,0.24844,0.70471,-0.45195,-0.04405,0.54339,0.71854,1.3657,-0.020978,0.16925 -2.3603,-2.8926,-0.20983,0.84655,-3.0616,-1.2443,1.0754,-0.077589,-0.79203,-0.62661,-0.39714,0.91319,0.042647,-0.46431,0.5554,0.24477,-0.32361,0.15366,0.77917,0.0102 -2.0616,-0.65598,0.75535,-0.084136,-3.4206,-1.2323,2.1198,0.74955,-0.015495,0.17361,0.77191,-0.027468,-0.84794,-0.10001,0.16789,0.55025,0.17402,-0.40689,0.53141,-0.20175 -1.5846,0.18416,1.61,0.20676,-0.87306,-0.078004,0.2387,0.59234,-0.1758,-0.14715,0.53973,0.94501,0.22719,0.7089,0.40437,0.52643,-0.072428,0.14864,-0.28629,-0.011765 -2.7797,-0.61011,1.383,1.0432,-3.4748,-1.6816,2.4493,0.38124,-0.040129,-0.63434,0.14198,-0.47208,0.094884,-0.0083906,-0.76792,0.43728,0.57262,0.78911,0.20639,-0.15723 -1.3882,-0.90554,-0.37273,0.71868,-2.6321,-1.2727,2.1258,-0.12766,0.53812,0.33504,-0.083538,0.054222,-0.49916,0.16749,0.13305,1.155,0.40708,0.98079,0.088657,-0.038696 -2.074,-0.25932,1.1628,0.45071,-3.1073,-1.3737,0.91554,0.085719,0.50798,-0.31288,0.61932,0.41682,0.078367,0.27903,-0.3371,0.2865,0.072119,0.61053,-0.088776,-0.19262 -1.3066,-2.1462,1.1365,0.68784,-2.7648,-1.1595,1.0233,-0.31182,-1.1844,-1.6515,-0.23142,0.21994,0.064986,0.37649,-0.22391,-0.52301,0.78756,0.065105,0.026933,0.39997 -2.3118,0.10898,1.2929,0.33695,-2.5238,-0.86476,0.48506,0.020619,0.33935,-0.58029,0.92085,0.27683,-0.039142,0.52723,-0.37295,0.38144,0.51357,1.2653,-0.58478,-0.67871 -1.8809,-1.6665,-0.24339,1.0546,-3.0257,-1.3849,0.93908,-0.46228,-0.5723,-0.76539,-0.80535,0.42047,0.38962,-0.19973,0.63764,0.035106,-0.42991,0.82694,0.097989,0.25605 -1.0134,-1.5774,-0.47447,0.080652,-1.5266,0.45014,1.9721,-0.44995,-0.58221,-0.054601,0.6485,0.6464,0.42671,0.44444,0.75589,0.40978,0.16916,0.04966,0.94199,-0.71132 -2.4348,-0.34752,1.4163,-0.55462,-3.5824,-1.2569,-0.021294,0.27598,-0.20639,-0.90736,0.42929,0.86427,-0.52029,-0.49721,-0.45601,-0.00062429,0.83325,0.92291,0.091326,-0.49348 -1.6096,-1.7823,0.075427,0.86116,-1.9943,-1.1621,-0.10556,0.13116,0.080514,0.031673,-0.19189,0.98036,0.21114,-1.0377,0.48229,-0.027476,-0.023396,0.99748,0.79469,-0.26838 -1.9617,-0.66588,1.6451,-0.76327,-3.5285,-1.3983,1.2142,0.66373,-0.22488,0.12063,0.55312,0.068155,-0.76807,-0.54093,0.22618,0.59154,0.36928,0.34489,-0.025245,-0.32016 -3.1309,-0.48179,1.6628,-0.55288,-1.6333,-1.1506,1.551,0.1692,-0.62124,-1.021,1.4515,0.016129,-0.42922,0.33684,-0.21055,-0.094242,1.0654,-1.0894,-0.14501,0.24103 -0.70003,-0.30078,0.032069,0.018501,-1.3973,0.21605,0.39089,-0.3961,-1.3828,-0.17602,0.1648,0.20558,-0.021444,0.20813,-0.18286,-0.60682,0.53499,0.096868,-0.17275,0.095787 -2.557,-0.65445,0.21683,0.14366,-2.5635,-0.50038,2.533,0.88889,0.17538,-0.081456,0.4341,-0.17162,-0.17787,0.027193,1.2536,0.79405,0.48674,-0.66286,0.42788,0.19891 -1.2503,-0.87795,0.37035,0.44113,-2.8892,-1.1267,2.0496,-0.1147,0.26747,-0.52376,-0.55444,-0.23246,-0.35006,0.53208,-0.49916,0.7439,0.5062,0.52428,-0.2749,-0.23471 -3.2245,-1.1422,1.5286,-0.096201,-1.9037,-0.48885,0.70071,0.63409,0.15342,-0.61663,1.3876,1.3024,-0.15474,-0.050735,0.78291,0.88708,0.78156,0.12704,0.42324,-0.11702 -0.69265,-0.80451,0.72758,0.12461,-2.0966,0.65232,1.4001,0.20409,-1.1428,0.63414,0.42895,0.79963,-0.48604,0.238,-0.30526,0.27478,0.18172,0.075931,-0.26523,0.0092594 -1.2987,0.53895,0.43014,-0.51073,-3.0694,-0.8201,0.62446,-0.37782,-1.0828,-0.44303,0.61439,0.1163,-0.86015,-0.10347,-0.18133,-0.63308,0.53705,-0.48716,0.021408,-0.075665 -1.1787,-0.078185,-0.25075,0.094912,-2.3036,-1.0026,0.54339,-0.3308,-0.96311,-1.3294,0.32772,0.16561,-0.64528,0.062712,-0.33071,-0.59879,-0.074752,-0.30786,0.24394,-0.14363 -0.63747,-1.104,-0.52833,0.82014,-1.9927,-0.50506,2.1976,-0.17851,-0.42691,0.28113,0.099661,0.65784,-0.68187,0.39146,0.47448,0.52959,0.71027,0.27904,1.1771,-0.43668 -3.3496,0.59757,1.1518,-0.49127,-2.7198,-0.95819,2.2302,0.26138,-1.1123,-0.96683,0.96309,0.25135,-0.60557,0.16421,0.34495,-0.326,0.1165,-1.0209,-0.29834,-0.22656 -0.95137,-0.82465,1.7015,-0.24332,-2.2275,-1.167,0.62693,0.24471,-0.34225,-0.56081,-0.69941,0.48103,0.55144,0.17809,-0.40546,-0.3291,0.012986,0.94627,0.42279,0.25917 -2.3574,-0.87486,0.85151,-0.063516,-1.5124,-1.0463,1.1523,0.8108,0.76839,-0.12416,1.034,0.47776,0.85475,0.5706,-0.48051,0.98755,0.30606,0.64112,-0.087931,0.58066 -2.2602,-0.56321,0.77346,-0.29106,-1.9574,1.7521,1.9004,-0.48999,-0.65582,0.11381,-0.13061,0.14945,0.65763,-0.74067,-0.83756,0.58015,-0.25373,-0.49434,0.63738,-0.26374 -1.0145,-1.9138,-0.16202,0.18931,-2.2818,-0.51032,2.635,0.063157,-0.71006,-0.017234,0.080454,0.74911,-0.43629,0.52959,0.26285,1.0596,0.36771,0.40121,1.0269,-0.62428 -2.682,-1.4161,0.67139,2.1403,-3.0276,-1.8261,1.405,-0.93142,-0.71605,-0.92309,-0.17212,0.039406,0.82992,0.11177,0.14856,-0.56659,-0.50617,0.30627,1.0509,-0.17672 -1.4901,-1.1807,-0.6134,1.1383,-2.4216,-2.0503,0.55802,-0.7339,0.27259,0.19653,0.50618,-0.21759,0.34005,-0.19333,0.26305,0.51303,0.6809,0.91198,0.39553,0.39028 -2.1235,-0.070477,2.207,-0.87807,-2.7298,-0.74281,0.76221,0.79575,-0.36832,-0.32336,0.48251,0.34678,-0.92314,-0.36031,0.35306,0.29096,0.41985,0.36634,-0.24106,-0.14611 -1.4176,-0.97295,1.6415,-0.17146,-2.924,-1.0627,0.66655,-0.1302,-0.21015,-0.94233,-0.24443,0.29183,0.055944,-0.32319,-0.33846,-0.29863,0.40184,0.73145,0.2184,-0.10532 -2.503,-0.18385,1.5765,-0.26331,-2.6279,-1.022,0.38856,1.3335,-0.69458,0.59929,0.77843,1.0779,-0.65797,0.65234,-0.58785,0.019638,0.6365,1.0404,0.052861,-0.36601 -2.1946,-0.3148,0.65108,0.50517,-0.95194,-0.35312,-0.05134,0.59859,0.49761,-0.33628,0.73794,0.76762,0.086715,0.41752,1.2177,0.11472,0.70161,-0.26867,0.69853,-0.35736 -2.3633,-0.17062,2.2301,-0.052639,-1.6276,-0.60247,0.60109,0.29666,-0.2924,-0.86859,1.5229,-0.30488,-0.49785,0.47019,0.091024,-0.32302,0.68966,0.5767,-0.4302,0.43442 -1.1376,-0.40809,1.3029,0.28862,-2.1583,-0.82015,0.90203,0.34599,0.6623,-0.087331,0.39084,-0.25116,-0.30989,0.055583,0.51361,0.50276,0.44556,0.27517,-0.098846,-0.048103 -1.3873,-1.3183,-1.297,1.5891,-2.0968,-0.44288,0.021531,0.74352,-0.48142,0.35901,0.29584,0.63881,0.045513,0.36245,0.32707,-0.36996,0.81372,-0.11318,0.58521,-0.12551 -1.0426,-0.88103,-0.74269,1.9455,-2.4063,-0.32327,0.93991,-0.00071924,0.18451,-0.89258,0.49857,0.92552,-0.43075,0.75478,0.88624,0.36519,0.2751,-0.43273,0.1893,-0.10103 -0.8362,-0.10423,-1.3914,0.86562,-1.7739,0.56683,0.71058,-0.029104,-1.968,-0.14548,1.2961,-0.050332,-0.27714,-0.11809,-0.89168,0.60987,0.7165,-0.18101,-0.12169,-0.11372 -2.5203,-2.084,-0.4562,1.7843,-3.0638,0.21621,1.5764,2.0594,-1.0628,-0.1112,0.27172,0.93024,-0.4106,0.24938,0.29868,0.19998,0.42238,0.55046,0.044096,-0.15135 -1.1862,0.37537,-0.67569,0.48545,-1.2601,-0.045922,1.3578,0.81072,-0.62782,0.13505,-0.20252,0.14063,0.55172,0.36836,0.15724,-0.85701,-0.34242,0.52839,1.0599,-0.15857 -1.2329,0.28526,-1.595,0.79706,-3.1505,-1.4058,1.4896,0.011857,-1.6524,-0.42226,1.2409,-0.48132,-0.26139,0.14216,-0.54515,-0.42629,-0.045994,0.17804,0.51243,-0.11593 -1.9721,0.083577,-1.1922,1.8161,-1.9685,-0.92619,0.54483,0.1114,-2.0856,0.72288,0.76706,-0.20265,0.11493,0.20917,-1.2241,-1.0259,0.70259,0.094947,0.046693,0.60341 -1.4018,-1.0965,-1.2795,1.5408,-2.2769,-0.28285,-0.02041,0.19577,-1.002,0.32477,0.86781,0.44634,-0.41496,-0.2352,-0.19657,0.86147,1.177,0.017058,0.21733,-0.33761 -1.8717,-0.20719,-1.838,1.6812,-2.1652,-0.61247,1.2703,-0.52442,-2.0478,0.5268,0.90365,0.14246,0.44243,0.0091153,-0.55196,-0.93,0.52295,0.13797,0.15996,0.43459 -2.6402,-1.9916,-0.5085,2.2483,-2.1409,0.058583,0.7933,1.3014,-0.78905,-0.012378,-0.42263,0.78473,-0.17943,0.4245,0.17254,1.06,1.2318,1.1407,0.64326,-0.1633 -1.9402,-1.2827,-1.6287,2.1762,-1.5419,-0.11946,1.5516,0.24056,-1.0643,0.37698,0.77561,-0.76867,-0.26014,-0.03331,0.013924,-0.28954,1.4176,0.25134,0.49994,0.34872 -0.62149,-0.026961,-0.88892,0.97879,-1.3896,0.41192,1.3132,-0.61618,-1.2672,-1.293,1.1396,-0.27134,0.44229,0.087679,-0.20935,0.31576,0.57137,0.067218,-0.54327,-0.063984 -1.6578,-0.66811,0.055786,2.0075,-1.8611,0.13147,0.37117,1.4827,-0.54028,0.43883,-0.0011831,0.64828,-0.035999,0.53352,1.1016,-0.095264,0.81483,-0.3793,0.029515,0.34796 -1.3323,-1.4952,-1.1833,1.1657,-1.7757,0.77452,1.1423,0.90528,-0.63122,0.41122,0.58197,0.43929,0.26779,0.24802,0.25819,0.57025,0.33698,0.77599,0.10116,-0.48549 -2.9119,-1.5453,-1.189,2.0223,-2.4322,-0.6042,0.23989,0.29429,-0.8454,0.62396,0.069585,0.15258,-0.090121,0.14647,0.010528,-0.45244,0.87909,0.07163,-0.29251,0.48916 -0.89027,-0.33911,0.79903,2.0728,-2.6855,-0.95854,0.76127,-0.84179,-0.13294,-0.60768,0.47452,0.94749,-0.36606,0.22459,0.51095,-0.71475,-0.012801,-0.34296,0.69687,-0.030207 -2.1237,-2.1247,-1.0051,1.8212,-2.3326,0.47822,0.92744,1.5322,-1.0506,0.17063,-0.063156,0.83708,-0.36924,0.36286,0.10161,0.83795,0.83897,0.45228,0.29522,-0.35887 -2.4131,-1.8087,0.19466,0.62443,-0.58507,-0.092097,1.479,0.35061,-1.113,-0.1143,-0.40381,0.5093,-0.11545,-0.68375,-0.10955,0.05946,0.68154,0.46675,-0.12832,-0.16588 -1.0701,-1.1575,-0.5961,1.6255,-2.6325,-0.25966,0.76895,0.70698,-0.37295,0.075704,0.30597,0.86143,-0.54532,1.1316,0.45579,-0.1959,-0.11082,-0.45773,0.34878,-0.50653 -1.2148,-0.98226,-1.0644,2.014,-1.5871,0.94992,1.3397,0.07026,-0.53736,-0.2042,0.69436,-0.17099,0.16956,0.64821,0.46648,-0.054337,0.38044,0.23938,-0.32193,-0.19368 -1.5648,-1.6166,-2.12,1.5518,-2.3576,-0.12415,1.3401,0.46778,-1.1881,0.19172,1.1127,0.14757,-0.26636,0.53487,0.048967,0.14661,0.7259,0.13095,0.28584,-0.27178 -2.4669,-0.18502,-0.78145,2.4439,-2.2445,-0.28036,1.4313,0.51938,-0.88245,-0.35473,-0.26931,-0.14053,0.54436,0.92022,0.58619,-0.60377,-0.13946,1.2031,0.54748,-1.1461 -1.0012,-1.2347,-1.2223,1.4619,-2.1848,-0.2142,0.53553,0.45675,-0.88943,-0.31279,0.25477,0.53184,-0.23565,0.29598,-0.17339,0.27502,0.6148,0.14216,0.13923,-0.96412 -1.8951,-1.1108,-1.3392,1.9501,-2.7188,-0.16311,0.59247,0.77673,-0.77611,0.036019,0.15054,0.73139,-0.60266,0.97487,0.57165,-0.046113,0.4056,-0.53258,0.2817,-0.30797 -0.49303,-0.41075,-0.5422,0.82699,-2.0901,-0.098582,0.13471,-0.29844,-0.29236,-0.99039,-0.0032207,0.45854,-0.42262,0.06662,0.74787,0.041554,0.24737,-0.2457,0.070193,-0.32269 -1.4123,-1.1102,-0.38003,2.1446,-2.8015,0.4497,1.1458,1.1375,-0.91326,0.048911,-0.25191,1.4033,-0.48487,0.79581,0.11827,0.44622,0.30391,-0.22475,0.092542,-0.73977 -1.2759,-1.115,-0.6475,1.3252,-1.5584,-0.13332,0.91083,1.4021,-0.16711,-0.046261,-0.45319,0.54909,-0.11642,0.32491,0.52285,0.10597,0.61262,0.23241,0.40312,-0.2943 -2.8311,-0.70535,-1.1067,2.2031,-3.086,-0.22424,-0.064694,0.028903,-1.0888,0.26702,0.076573,0.30662,-0.12254,0.63578,0.39028,-0.30322,0.50117,0.2907,-0.38445,0.15902 -2.795,-0.65748,-1.3549,2.1928,-2.6732,-0.41343,-0.23325,-0.27644,-0.91429,0.69903,0.49912,0.23671,0.17115,0.58841,0.045982,-0.99554,1.0632,0.2581,0.10533,0.51714 -0.35235,-0.58551,-0.23556,0.55819,-2.2013,0.13016,0.92465,-0.48654,-1.004,-1.2577,-0.021946,0.37425,0.02965,-0.33356,0.43264,-0.15603,0.53986,-0.5661,-0.40753,-0.12009 -0.28018,-0.76687,-0.28745,1.2812,-1.2573,-0.19375,0.84194,0.36579,-0.12241,-0.27042,-0.26435,1.0899,-0.48545,0.036949,0.55194,0.25383,0.32102,-0.11389,-0.028172,-0.06004 -1.9552,-1.8192,-1.3522,2.2116,-2.7217,-0.28809,1.2158,0.46675,-0.96391,0.10257,0.5053,0.49328,-0.32263,1.0982,0.35761,-0.24506,0.34189,-0.22143,0.83847,-0.19002 -1.3755,-0.80192,0.30685,1.3488,-1.6589,-0.71127,0.16479,1.4961,0.50755,-0.00025122,-0.11462,1.1465,0.10887,0.86477,0.028712,-0.43569,0.41538,0.53814,0.4534,0.21468 -2.6644,-1.3212,1.5312,1.25,-2.7278,0.32965,1.8012,1.5114,-0.84546,-0.87863,-0.35276,0.21594,-0.36896,0.35296,0.17399,-0.098619,1.4534,0.75447,-0.016539,0.55297 -2.2452,-0.62075,1.5013,2.2128,-2.4645,-0.29663,0.35572,0.92212,-0.79486,-0.50068,0.516,0.26912,0.2049,0.57979,0.90891,-1.1358,-0.37115,0.88832,0.82412,-0.45062 -2.1682,-2.0145,0.66238,0.83587,-2.2462,0.6682,1.305,1.6985,-0.95698,0.35694,-0.74372,0.96304,0.2476,0.77984,-0.079775,0.20931,0.39345,0.46003,0.17641,0.14866 -1.3694,0.038577,0.82775,3.0948,-2.6259,-0.43029,1.3026,0.59952,-1.0565,-0.35949,-0.24554,0.63833,-0.12116,0.88348,-0.36498,-0.29347,-0.25681,0.28406,-0.058071,-0.10674 -2.8024,-2.4802,-0.47291,1.5635,-2.1652,-0.57231,1.1921,0.94757,-0.50405,0.43693,-0.49196,1.1821,0.15507,0.12482,0.36631,-0.67681,0.72158,0.36441,0.29459,-0.39239 -1.5796,-0.17258,-0.020736,1.8055,-2.3823,-0.9338,-0.14684,-0.60321,-0.17784,-0.29741,1.2919,1.1447,0.90544,0.20403,0.28555,0.056614,0.41109,-0.21378,0.42615,0.14497 -1.6161,-0.92513,0.67325,1.3318,-2.0485,-0.11844,1.1371,1.5627,-0.51838,-0.31452,-0.45225,0.75526,-0.80135,-0.36273,0.80617,0.69953,-0.003056,0.075504,0.22013,-0.061161 -1.1843,-0.64791,-1.0895,1.6936,-1.5244,0.32134,1.0926,-0.59565,-0.70547,-0.69899,1.5653,-0.69402,-0.40629,-0.30735,-0.36049,0.53441,0.51262,0.33107,-0.16051,-0.054101 -1.8443,-0.709,-0.85156,2.861,-2.7355,-0.22791,0.63181,0.88703,-0.93104,-0.091107,0.22272,0.78055,0.048695,0.4628,-0.4155,-0.1235,0.54296,-0.49152,0.48317,-0.62078 -0.60144,-0.36549,-1.5761,0.98918,-2.1302,-0.06847,1.2899,0.48245,-1.0164,-1.1297,0.3081,0.85905,-0.18115,0.17806,0.32412,0.23808,0.67967,-0.028273,0.61055,-0.33977 -0.33175,-0.1058,-0.34199,0.01139,-1.0666,0.15899,0.30253,-0.06951,-0.60689,-0.18994,1.1229,0.047077,0.24991,-0.033537,-0.3409,0.17938,-0.014894,-0.043509,0.42454,-0.23236 -2.3818,-0.73051,-1.4336,0.83933,-2.2898,0.017341,1.9101,-0.10311,-2.471,0.8141,0.25368,0.69918,-0.17391,-0.16444,-0.52129,-0.58518,-0.52866,0.078047,-0.17433,0.32471 -1.9351,-1.7976,1.3591,2.8888,-2.4642,-0.20244,1.0402,0.47503,-1.0548,-0.76956,-0.20788,1.2123,0.31696,0.178,0.25732,1.0555,0.8344,0.99706,0.26751,-0.22718 -1.5218,-1.3542,0.53081,1.9154,-2.2779,-0.12672,1.4829,1.9439,-0.8088,0.010277,-0.27657,0.70142,-0.15158,0.93882,0.3012,-0.10032,0.57056,0.063481,-0.29594,-0.21903 -1.4051,-0.38063,-1.2282,1.4742,-2.0919,1.1533,1.5345,0.45587,-0.67504,0.10562,1.0117,0.20664,0.75706,0.49607,-0.22154,0.55788,0.11648,0.53773,0.44166,-0.14147 -0.22266,-0.048077,-1.0747,0.56744,-1.2605,-0.13159,1.13,-0.15354,-1.1586,-1.0797,0.87089,0.03834,0.14849,0.37158,-0.31128,0.13525,0.62302,-0.27419,-0.36241,-0.20987 -1.7894,-0.94502,-0.72248,2.1244,-3.0629,-0.0089219,0.6627,0.83562,-0.88008,0.29734,0.10509,0.88678,-0.56201,0.98886,0.6254,-0.4402,0.057458,-0.683,0.46823,-0.57802 -0.042217,-0.18263,0.79055,0.93875,-1.7375,-0.75002,0.71174,-0.61481,-0.69853,0.57863,-0.27209,-0.058173,0.81127,0.32024,-0.29369,-0.081147,0.37961,0.42007,0.19329,-0.58044 -1.5239,1.3025,1.2816,1.5008,-3.0919,-0.33034,0.76811,-0.79309,-1.3729,1.1035,-0.4145,0.70646,-0.84988,0.54274,0.7317,0.019622,0.71766,0.075015,0.63084,0.42533 0.0443,0.16765,1.0216,1.3124,-2.485,-0.29342,0.54848,0.00049165,-1.1973,0.62621,0.40309,0.72779,-0.33094,-0.068928,0.098357,0.25338,0.077832,0.54328,0.73119,0.22696 -0.95939,1.4641,-0.61261,0.078679,-2.1197,-0.73219,-0.077701,0.43871,-0.85792,-0.39308,0.23647,0.85044,-0.29198,0.094479,0.051335,0.75029,-0.19802,0.70464,0.28813,-0.075362 -0.44991,0.58051,-0.90318,1.0734,-1.7741,-0.045154,0.70907,0.60641,-1.1426,-0.56236,-0.40949,1.2169,0.11332,0.18168,-0.38685,0.68261,0.42589,0.25911,-0.33643,0.78966 -0.50548,0.13798,-0.52216,0.72783,-1.4766,0.64151,0.37199,-0.38559,-0.92081,-0.38274,0.18542,0.31293,0.36677,0.56788,-0.42629,0.35689,0.070485,0.16824,-0.23779,-0.35397 -1.4222,1.754,0.033111,0.3148,-1.9177,-0.71668,0.11066,0.028916,-0.15732,-0.72583,0.5373,1.27,-0.03819,-0.19443,0.78895,0.44479,0.27776,0.46271,0.33191,0.43613 -1.7384,0.958,0.89949,0.90138,-2.5242,0.92133,1.5593,-0.55267,-1.722,-0.97853,-0.28541,0.33505,-1.0511,-0.30791,0.032645,-0.22825,1.5133,0.5256,0.31385,0.62595 -0.28207,-0.014507,1.0553,1.1336,-2.492,0.22949,1.0954,-0.15539,-2.2831,0.41756,0.71269,0.84876,-0.78619,-0.59479,0.82206,-0.47425,0.54627,0.077251,0.041287,0.23216 -1.2043,0.94118,-0.12536,-0.62487,-1.206,0.044522,-0.070058,-0.33874,-0.80901,0.47579,0.58565,0.32304,-0.50757,0.22825,0.41173,0.22553,0.32797,-0.16398,0.48267,0.27519 -2.6938,2.4175,1.4656,1.2683,-2.403,-0.44982,0.67527,-0.70579,-1.108,0.72416,0.25472,1.6062,-0.010894,-0.16695,1.1074,-0.070823,0.75812,0.40231,0.59434,0.35262 -2.4477,1.3031,0.518,-1.0046,-0.86581,-1.027,0.45039,0.65361,-1.0142,-0.32951,1.6537,-0.071901,0.84811,0.42239,0.74555,0.3478,0.38595,0.57679,-0.054625,0.12663 -0.93395,1.355,0.49152,1.5543,-2.1275,0.064719,0.3916,-0.55163,-0.76302,1.2719,-0.26606,1.4386,-0.22118,0.16883,0.03667,-0.24329,0.30529,0.56144,-0.11183,0.35166 -1.3098,0.86467,-0.59249,0.018967,-2.3111,-0.57117,0.19153,0.48215,-2.1735,0.6411,0.57318,0.30168,-0.80566,0.34024,0.091827,-0.40446,-0.21248,0.79463,0.44093,0.0086049 -2.4443,1.7236,1.6011,1.1167,-2.04,0.95581,0.96124,-1.0287,-0.70009,0.25008,1.1842,1.057,-0.37544,0.43471,1.0508,0.27119,0.55502,0.07946,0.048954,-0.39904 -1.536,1.7791,0.17213,0.44031,-2.638,-0.45128,-0.086434,-0.0034893,-0.96584,-0.69225,-0.32123,1.5573,-0.52421,0.14851,0.88339,0.049331,0.14007,0.63326,0.21281,0.48202 -2.6145,1.0415,-0.29582,-0.84,-0.82882,-0.83016,0.12072,0.18543,-1.035,-0.28883,1.5282,0.1751,0.78872,0.50164,1.0533,0.48531,0.5995,0.09391,0.61595,0.090369 -2.7531,0.92281,1.1468,-1.2996,-0.85204,-1.509,0.29376,-0.24629,-1.5591,-0.43738,2.0293,0.98652,0.46708,-0.16792,0.1948,-0.50431,0.25537,0.29456,0.50958,0.41053 -2.958,1.4974,0.29244,-0.32531,-2.0216,-0.34685,-0.76213,-0.070269,-1.0322,-0.34375,0.79967,0.37462,0.43263,0.38582,0.74299,0.27124,0.73432,0.59508,0.035682,-0.49272 -0.68308,0.48845,-0.87139,1.7055,-2.671,0.54808,0.87438,0.026294,-1.5512,-0.8466,-0.52835,0.84689,0.2616,0.47221,-0.56147,0.66071,0.74956,0.29243,-0.56505,0.037163 -2.6844,1.0955,-0.9104,-0.24913,-1.705,-0.63767,-0.038413,-0.37619,-0.99824,0.3767,1.3637,0.46126,0.39764,0.97014,0.41658,0.40135,0.046138,0.080115,-0.045436,-0.75583 -0.80355,1.361,0.37847,0.82046,-2.0784,-0.2263,-0.17953,-0.067018,-0.20534,0.0028936,0.30965,1.3974,-0.17985,0.054548,0.36378,0.47756,-0.23185,0.57356,0.018717,0.1831 -2.8382,1.9733,-0.42734,0.22905,-3.1146,-0.65847,0.05887,-0.02472,-0.98102,-0.51994,0.13056,1.4916,-0.02823,0.15392,0.74991,0.49604,0.79666,0.3429,0.60334,0.38391 -0.98757,0.71983,-0.17834,0.076434,-2.0328,0.060545,0.73914,-0.15803,-1.1144,-0.86434,-0.18943,0.52211,-0.59866,0.64313,0.62478,0.72738,1.0331,0.15529,0.19733,0.69618 -1.4492,0.9212,0.53382,0.5895,-2.4297,0.29082,0.33104,0.13653,-0.19555,-0.62601,-0.35039,0.012454,0.057256,-0.66151,-0.34723,0.20525,1.0379,-0.093821,0.31169,0.27132 -2.0673,1.2832,0.50014,0.27859,-2.2669,-0.31839,1.4814,-0.37096,-1.043,-1.0037,-0.95406,0.79604,-0.60922,0.65588,0.65488,0.14752,0.9837,0.77565,0.63624,1.007 -1.6816,1.5388,-0.51648,0.39269,-1.7244,0.0414,0.050588,0.36555,-0.65395,-0.47369,1.0849,1.326,0.85558,0.75158,0.70008,-0.010219,-0.39901,0.3115,-0.67576,-0.26697 -1.9606,1.5343,0.56741,0.30983,-2.7508,-0.30527,0.28167,-0.021985,0.039781,-0.48055,-0.48038,0.31445,0.19356,-0.51853,0.34979,0.69051,1.219,0.22356,0.15891,0.42484 -1.9298,0.85533,-0.13998,-0.72451,-1.2513,-0.85812,-0.32274,0.44648,-1.1529,0.45351,1.5023,-0.051806,0.081491,0.075555,0.73382,-0.64615,-0.13297,0.97381,0.93066,-0.17832 -0.015807,0.38293,-0.063018,0.98611,-1.4828,-0.047728,0.54484,-0.68167,-1.2478,-0.17826,-0.51829,1.3095,-0.59225,0.055187,0.32172,0.24354,0.38528,-0.14845,0.019129,0.11772 -0.40653,0.6647,-0.29507,1.1985,-1.5351,-0.30454,0.66283,-0.074691,-0.45594,0.09856,-0.57563,1.4964,-0.013617,-0.010786,-0.14956,0.19053,0.17546,0.28735,-0.16393,0.98359 -1.2973,0.69269,-0.054587,0.27826,-3.0949,0.47604,0.12311,-0.081732,-1.3953,-0.31721,-0.33859,0.12114,-0.055315,0.2318,0.14378,-0.12387,0.44131,-0.25987,-0.25016,-0.055579 -2.2437,2.0933,0.32523,0.63781,-1.6598,-0.034552,0.18091,-0.53332,-0.10308,-0.81485,0.80204,0.9322,0.65519,0.11952,1.3981,0.47453,0.70666,-0.01303,0.18104,-0.03898 -2.7812,1.9301,0.5575,1.0159,-3.2858,0.57903,0.38424,-0.12218,-0.72922,-0.0033338,-0.041619,1.0791,0.25808,-0.24296,0.85243,0.2522,1.0232,0.35025,0.67032,-0.48612 -1.5239,1.339,0.51098,1.0481,-1.0274,-0.56424,0.3103,0.24259,-0.18226,0.53393,0.47841,1.3661,0.27202,0.73811,0.5856,0.12447,0.0055857,0.41047,-0.28218,0.22622 -1.5949,1.5558,-0.41857,0.11235,-2.2516,-0.094164,1.0132,-0.5807,-1.5841,-0.86458,-0.11779,1.7466,-0.47606,0.68773,0.47269,0.089002,0.7625,0.13006,0.48149,0.29369 -1.0905,1.3821,1.0383,0.31787,-1.5401,-0.65762,0.58152,-0.21361,0.011022,0.012721,-0.10167,0.68041,-0.02559,-0.1794,0.46901,0.39353,0.70742,0.53063,0.1856,0.82712 -1.6733,1.8309,0.3135,0.4047,-2.0941,-0.82383,0.52987,0.32333,-0.12933,-0.437,0.1737,1.1446,-0.018071,0.20624,0.8287,0.48341,0.41303,0.50647,0.4613,0.8727 -0.15628,-0.014801,0.85975,0.99993,-2.2631,-0.091513,-0.044665,-0.4206,-1.5842,0.85016,-0.27824,0.21469,-0.40193,0.41029,-0.046104,0.38047,0.19548,0.30137,0.3987,-0.054133 -0.2379,0.66399,0.65604,0.84412,-2.0679,-0.83059,0.27854,-0.52411,-0.86624,0.70274,-0.45968,0.82356,-0.50098,0.54987,0.22283,0.28072,0.29967,0.55831,0.6328,0.024813 -1.811,0.93566,0.0084813,-0.28094,-2.9559,-0.69912,-0.26742,0.55849,-2.1915,0.33101,1.0177,0.31443,-1.0106,0.26461,0.76622,-0.44307,-0.0039077,0.80931,0.37958,-0.26996 -1.879,1.6039,-0.99481,0.49444,-3.2733,-0.53729,-0.15322,0.23211,-1.0549,-0.39234,-0.23737,0.68134,-0.22675,0.6497,0.18541,1.0064,0.35834,0.50444,0.15324,-0.34698 -0.4765,0.58848,-0.58912,1.2942,-2.2402,-0.080594,0.37119,0.27588,-0.84353,-0.3335,-0.70818,1.4867,0.1423,0.089095,-0.20934,0.36371,0.18692,0.13434,-0.3166,0.63914 -1.9526,1.4443,1.1438,0.62122,-1.2255,0.34486,1.1184,-0.6888,0.04458,-0.1442,0.3898,0.27765,0.21687,0.16813,0.64144,0.38589,0.87104,-0.36004,-0.32672,0.38056 -2.2925,0.55048,1.0722,0.035566,-2.4725,-1.5947,1.548,-0.80022,-1.5557,-0.39437,-0.88242,1.0962,0.074459,1.134,0.21653,0.20119,0.69229,0.17305,0.2717,0.88528 -1.2656,1.5413,1.2413,1.1258,-2.3822,-0.2214,0.5541,-0.88627,-0.37412,0.80688,0.30547,0.22532,-0.3493,0.065845,0.040245,0.21274,0.81155,0.43493,0.66468,-0.36862 -1.7496,0.84708,1.6058,1.6317,-2.5293,-0.83642,0.40001,-1.2273,-1.8153,1.3826,0.058395,0.17228,0.85886,0.65596,0.031896,-0.14989,0.4174,0.68343,-0.072241,-0.666 -1.1354,0.88328,0.86251,1.4359,-2.6292,-0.035627,1.0799,-0.82327,-0.55072,1.4747,0.4123,0.47816,0.78677,1.0398,-0.33306,0.010238,0.59418,0.12749,-0.91677,-0.51691 -0.85177,0.6264,-0.37047,0.18957,-2.1343,0.23988,0.60116,-0.23192,-1.3681,-0.58462,0.32659,0.29023,-0.57007,0.73569,0.27091,0.65002,0.84653,0.24631,0.20216,0.24618 -0.17779,0.5171,-0.6377,0.50786,-1.6366,0.070082,0.2546,0.072742,-1.2214,-0.33384,-0.066962,0.79016,0.33386,0.57804,-0.38305,0.52898,0.03009,0.3183,-0.063776,0.026936 -1.6349,0.71013,0.1317,2.5208,-1.42,0.21793,0.26647,-1.269,-0.89529,-1.0398,0.13454,0.32872,-0.20103,0.079704,0.40171,1.2117,0.079784,0.21187,0.85107,0.46748 -1.1558,-0.018562,1.6991,1.7833,-1.5875,0.36223,1.1389,-0.056074,-1.5514,0.21486,-0.093578,1.2699,0.62302,-0.77742,-0.019352,1.079,-0.021824,-0.0005827,-0.05512,-0.75717 -1.9491,-1.0714,-0.2316,1.9637,-1.8023,0.34939,0.512,0.27751,0.57219,-0.14713,-0.066991,1.1945,0.027025,1.0006,0.10186,0.88789,0.34242,0.3342,0.042772,0.77675 -2.6831,-0.0016928,-0.15167,2.211,-1.479,0.79155,0.21816,0.2607,-0.35924,-0.12864,-0.066509,0.29726,-0.089376,0.75079,0.56216,-0.098904,1.498,0.17843,0.22209,0.64174 -0.65464,0.047617,0.79065,0.69703,-0.45969,-0.021181,0.30941,-0.30185,-0.88674,0.69524,-0.2964,-0.086322,0.36601,-0.15191,0.49489,0.43103,0.61749,0.04679,0.3125,-0.19778 -2.5849,-1.1506,-0.87036,1.6992,-2.2703,0.5862,0.55237,-0.67025,-0.66657,0.055973,-0.0012007,-0.31909,0.085298,0.55121,-0.18154,0.11815,0.23162,0.80657,-0.46694,0.99793 -2.0888,0.11229,-0.35518,2.5748,-1.7441,0.43544,0.58476,-0.6223,0.078365,-0.78269,0.18726,0.69866,-0.27376,1.1398,0.1961,0.82051,0.0087284,0.20121,-0.23676,1.0323 -2.3252,-0.33588,-1.2786,1.4366,-2.1291,0.60284,0.93922,-0.59647,-1.0879,0.35044,0.094238,-0.42956,-0.032283,1.293,0.21565,0.12402,-0.18622,0.84709,-0.91741,0.58767 -1.4913,0.54075,0.42304,2.8055,-1.3875,0.18067,0.047461,-1.067,-1.3394,-0.649,0.29954,0.19221,-0.16757,-0.4292,0.25075,1.4806,0.58295,0.0138,1.0506,-0.051237 -2.7961,-1.3952,0.28224,2.3005,-1.823,1.1221,0.59747,0.25488,-0.24881,-0.16045,-0.28298,-0.30051,0.24444,0.63557,-0.024423,-0.28699,0.42167,1.0621,-0.056658,0.61213 -0.78914,0.55036,1.0784,0.59571,-1.2015,-0.40542,0.62858,-0.79826,-0.69154,0.51298,-0.16751,0.99537,0.43091,0.50062,-0.2331,0.95699,-0.10016,0.2656,-0.47498,-0.35515 -1.5056,-1.4527,0.47637,1.7778,-1.5728,0.90247,0.75956,0.40426,0.19194,-0.72481,0.56981,0.40078,0.10184,0.95888,0.31756,0.21999,-0.37304,1.0837,0.39368,-0.14923 -0.9658,-0.778,0.99377,2.1461,-2.3425,0.87338,1.9343,-0.27664,-0.51048,-0.12132,0.48207,0.4955,-0.2165,-0.013952,-0.32737,0.54263,-0.47938,0.28854,-0.39765,0.17261 -1.8558,-0.574,-1.4216,1.2459,-1.3642,0.040747,0.67473,-0.2621,-0.22902,0.37637,0.44484,-0.5648,0.15789,0.50235,0.0022754,-0.36008,1.2228,0.11548,0.17027,0.90859 -1.257,1.155,-0.23519,0.95269,-0.92655,0.17879,0.11522,-0.29078,-1.5612,-0.75974,0.26889,0.25178,0.062341,0.080655,0.13165,0.8247,0.50069,0.66346,0.24506,-1.0662 -1.6772,-0.58614,1.2386,3.1993,-2.0861,0.25914,1.081,-0.61891,-0.87511,-0.16411,0.2412,0.72968,0.36894,0.16075,-0.8802,0.75586,-0.17571,-0.36908,-0.021895,0.34927 -3.2373,-0.46128,-1.2533,2.6218,-2.0478,-0.08024,0.15329,-0.97185,-0.52657,-0.42154,0.65954,0.13429,-0.058636,1.4126,-0.25439,0.76357,0.22217,0.55037,0.4329,0.55043 -0.50434,-0.76853,0.77217,2.0445,-0.98491,0.30045,0.94229,-0.5018,0.0083957,-0.45921,1.1983,0.68761,-0.21956,0.20139,0.40165,0.052063,0.1475,0.30687,0.36891,0.40421 -1.5754,-1.326,1.1546,2.8396,-1.6652,0.52482,0.58966,-0.12356,-0.85986,-0.93745,0.62405,0.59483,-0.022266,0.011399,-0.2124,1.0051,-0.69243,0.60407,0.40962,0.3134 -4.1703,-0.90866,-1.1393,0.72955,-2.5801,0.53286,1.6632,-0.66303,-1.4674,1.0338,-0.44823,0.73716,0.43339,0.16328,0.85017,-0.024902,0.28297,0.38979,-0.71157,0.26297 -1.7446,0.040507,-1.4297,2.2811,-1.7976,-0.16016,0.89598,-0.14871,-0.95283,-0.23946,0.72801,-0.36994,0.28952,0.33338,-0.64926,0.86529,0.78704,-0.43777,0.045195,-0.096252 -1.5661,0.90628,0.47912,2.0204,-1.1017,0.33053,0.45844,-0.66341,-1.8765,-0.83495,-0.082685,0.53479,0.29125,-1.09,0.65675,1.331,1.2946,0.25194,0.91382,0.15057 -2.8694,-1.5663,-0.23971,1.7657,-2.5308,0.66049,0.63411,-0.96451,-0.17504,0.073141,0.49913,0.10511,-0.42761,0.535,-0.6622,0.51717,-0.32404,1.3572,0.061906,0.16787 -0.86396,0.75211,0.78007,0.92234,-0.64254,0.23323,0.60431,-0.15344,-1.2379,-0.24771,-0.052935,1.1216,0.19512,-0.50858,0.86592,0.90057,0.52781,0.36414,0.54566,-0.53252 -0.67798,-1.2414,1.2134,2.2975,-0.81613,-0.43439,0.44276,-0.60251,-0.90895,-0.031732,0.96704,-0.51868,-0.2118,0.44222,0.30782,0.33082,-0.15656,0.20563,0.75197,0.46511 -2.1188,-0.28631,-1.3487,0.60036,-1.7372,-0.16156,1.1889,-0.41814,-1.6507,0.84223,1.0224,0.44455,-0.31144,0.37448,-0.21368,-0.59012,-0.29934,0.77663,-0.80592,1.0275 -2.0447,-0.38333,0.5959,1.5374,-1.9717,0.82494,0.61886,-0.82657,-0.31895,-0.99912,0.041738,0.24441,-0.050103,0.73467,-0.50428,0.87454,-0.50687,0.39882,0.14825,-0.19485 -0.91509,1.1329,0.24173,1.8927,-0.81701,0.27512,0.88918,-0.4317,-1.9458,-0.023204,-0.25663,1.302,0.88671,-0.78796,0.29692,0.76651,0.98218,0.44304,-0.26608,-0.1235 -1.3943,-0.22381,1.2299,3.1763,-2.0113,0.12891,0.75677,-0.80296,-1.0599,-0.79599,0.42328,0.37017,-0.15961,-0.48355,0.33213,1.1683,-0.11057,-0.084547,1.0881,0.11251 -1.0395,0.55286,0.062536,0.056383,-1.0223,-0.038885,0.19898,-0.80734,-0.54559,-0.74422,0.2483,-0.43325,-0.59739,0.33861,0.024697,0.23142,0.26342,0.14486,0.24632,0.40749 -0.55872,-0.39203,1.5046,0.51842,-1.0977,-0.30892,0.40586,0.18176,-1.4114,0.11585,0.053034,0.76862,0.63829,-0.51299,-0.56681,0.61283,0.66871,-0.31965,-0.31408,-0.27868 -1.9095,-0.1312,-0.23536,3.2053,-2.1463,0.9398,0.99435,-0.27729,-0.83002,-0.50029,-0.16222,0.052901,-0.052955,0.86613,0.078547,0.57302,-0.11456,0.24046,-0.04449,0.60641 -2.2063,-0.26535,-0.60441,0.75681,-2.545,0.39111,0.45978,-1.043,-0.24197,-0.0094583,0.0020799,-0.064166,-0.56116,0.34607,0.3048,1.0101,-0.15565,0.50405,0.13811,-0.84522 -0.51642,-0.030281,0.20711,0.87918,-1.2636,0.78055,1.0559,0.43445,0.25118,-0.23639,0.054806,0.79024,0.32637,0.47746,-0.10344,0.28396,-0.03634,0.37433,0.094582,-0.039897 -3.9379,-0.30826,-0.89492,2.0018,-2.1856,0.29669,0.054715,-1.4754,-1.4647,0.57154,0.59091,0.67459,-0.32473,1.1498,0.063024,-0.57183,0.34386,0.38948,0.75669,0.54159 -0.050921,-0.19326,1.2927,0.31662,-0.97556,-0.46822,0.95768,-0.16512,-1.2783,-0.45495,0.56317,0.24743,0.93992,-0.47298,-0.25142,0.057128,0.95969,0.35642,-0.18974,-0.27722 -3.7851,-2.0691,0.95874,1.9072,-2.4871,0.35851,2.2093,-0.083595,-0.64961,-0.013355,0.0023067,0.1083,0.60277,0.85271,-0.48917,-0.68084,0.79542,0.91542,0.49231,1.1988 -0.51491,-0.44074,0.83061,0.4458,-1.0743,-0.25463,-0.083027,-0.030579,-1.2713,0.64186,-0.15537,0.29886,0.51782,-0.072421,0.3065,0.53179,0.34488,-0.37526,-0.18965,-0.32014 -0.93893,0.080891,1.0382,1.0411,-1.1697,0.35138,0.58046,0.4704,-1.2682,0.31,-0.42586,1.2469,0.68671,0.26928,-0.68993,0.65527,0.57983,0.13909,-0.94808,-0.14765 -2.7176,-1.6213,0.5395,1.7208,-1.6723,0.96321,1.487,0.7135,-0.35905,-0.084215,-0.49319,-0.21495,0.4691,0.0017237,0.70112,-0.30307,0.48193,0.79912,-0.15827,0.25908 -2.4198,-0.39304,1.9004,0.84083,-1.515,0.73824,1.0509,0.76948,-1.6112,-0.458,-0.18154,0.04078,-0.35796,0.36487,0.36572,0.052972,0.74647,0.85758,0.3599,0.9735 -3.2462,-0.14778,-0.97367,1.5567,-1.3322,-0.59372,0.69972,-1.2101,-1.9979,0.40355,0.36655,0.030071,-0.23165,-0.21214,-0.22067,-0.36494,0.13467,0.61813,-0.68881,1.5583 -2.8071,0.45036,0.23642,2.4942,-2.6293,0.22436,0.82995,-1.0241,-2.2211,-0.7244,0.13154,0.30887,0.25936,0.36152,0.087422,1.9032,-0.38648,0.62555,0.47222,-0.54228 -1.7698,-0.45888,-0.15825,2.1549,-2.0024,0.80921,0.47829,-1.0823,-0.25501,-0.82887,0.039188,-0.29521,0.19374,0.25885,-0.15807,0.81769,-0.18448,0.31934,-0.39898,0.29089 -0.74719,0.77518,0.65992,2.3029,-0.66343,0.21673,1.0588,-0.60038,-0.99301,0.15097,-0.044445,0.49528,0.69742,-0.81684,0.20769,0.62151,0.6775,-0.37296,0.84016,-0.28411 -1.6098,-0.76908,-0.96896,0.75718,-1.435,0.89551,0.33541,-0.10763,-0.0090029,0.67985,0.24673,-0.061538,0.44213,0.22485,-0.18643,0.10326,0.15967,0.35564,0.63626,-0.34035 -3.0531,-1.3538,-0.43736,2.3337,-2.1427,0.27556,1.3412,0.14148,-0.21508,-0.91125,0.46962,0.17842,0.10027,1.5539,-0.42127,0.29285,0.26094,0.95762,0.38932,0.59457 -2.3001,-1.4096,1.4802,2.6224,-2.2535,0.52858,1.233,0.57031,-0.035589,-0.64058,0.37862,0.45237,0.094014,1.68,-0.81531,-0.12346,0.24707,0.76558,-0.011616,0.69105 -1.0256,0.26609,1.0945,1.6889,-1.2689,0.48087,0.33714,0.19783,-1.2508,-0.038749,-0.09339,1.2171,-0.4472,0.51549,-0.22401,1.1639,-0.21474,0.41775,0.34739,0.14359 -1.9493,-0.3308,-1.8623,1.2234,-1.6591,0.46565,0.7656,-0.45555,-0.70204,0.4787,0.4682,-0.13793,-0.21019,0.56546,0.13431,0.30546,0.92218,0.64222,-0.66699,0.65078 -2.9885,-0.21779,0.26767,0.20307,-1.9304,1.3223,1.4085,-0.89535,-0.22853,0.34261,-0.56331,-0.30675,-0.47462,0.13473,-0.16517,-0.055085,-0.23807,1.0835,0.06596,0.010834 -1.2764,-0.68661,0.75293,0.69474,-2.8051,1.6387,0.99632,-0.43118,-0.63814,-1.0322,0.79849,-0.26679,0.28135,0.32745,0.39384,0.39251,-0.61698,1.0178,0.63732,-0.45185 -1.5257,-0.40079,2.1055,0.6166,-1.6809,1.0046,1.2242,1.1795,-1.2746,-0.42337,1.0049,-0.036179,-0.90357,0.18451,-0.083937,0.45251,0.17846,0.43803,-0.79885,0.86047 -2.4841,0.46166,0.043082,-1.5247,-1.0127,-0.52417,1.74,0.82773,-0.56116,-0.053138,1.0083,0.6425,0.39123,0.3635,0.13574,0.21313,-0.27298,-0.13301,-0.04364,0.42851 -1.1399,0.0073442,1.9874,0.34378,-3.0274,1.6772,1.4869,0.18509,-0.82971,-0.38103,1.0302,-0.4326,-0.074994,0.41367,0.096956,0.4127,-0.086098,0.70818,-0.062922,0.43889 -2.7666,0.34832,1.4615,0.0854,-3.656,1.0783,1.9987,-1.218,-0.71747,0.22365,-0.30096,0.43701,0.78406,0.0070924,0.15942,-0.20079,0.40889,0.16475,0.28922,-0.61035 -2.5621,0.78001,0.068382,-0.60844,-1.687,-0.5081,1.1589,0.24303,-0.61547,0.31076,-0.6461,1.0585,0.40163,0.34608,0.48205,0.22613,0.17306,-0.086136,0.18117,-0.20142 -2.1843,1.6274,0.86022,-0.99215,-1.6783,-0.2985,1.1851,-0.78515,-1.0124,-0.82776,0.73166,0.31276,0.15798,1.0971,0.38722,-0.60814,0.64965,0.30146,0.06918,0.62207 -3.1536,0.76672,0.76406,-0.64793,-3.7472,1.3033,1.9933,-0.76023,-0.58882,0.58503,0.060903,0.55534,0.26837,0.69662,0.1577,0.57933,0.55026,-0.38483,0.99937,0.15832 -2.791,-0.4089,0.88241,0.22628,-1.9624,0.95706,0.24684,-1.1134,-0.92691,0.12019,0.026484,0.53969,-0.66916,0.2175,-0.030001,-0.5802,-0.41211,0.91654,0.57139,-0.13919 -2.2727,-0.35664,2.2109,0.26622,-2.4106,1.3264,1.5164,-0.32845,-1.3746,0.071834,0.17211,0.288,-0.18774,0.074329,0.13815,-0.72177,0.18759,0.61302,-0.56765,0.17168 -2.3773,-0.31528,1.312,0.29034,-2.5825,1.7216,1.2095,-0.64725,-0.76909,0.22113,0.01438,-0.47676,-0.26111,0.0035123,0.51455,-0.2978,-0.22449,1.0488,0.66472,0.12655 -2.3232,-0.51743,0.36793,0.26061,-2.8935,1.6354,0.71503,-1.0087,-0.60479,0.21927,0.16397,-0.242,-0.1134,0.23343,0.038185,0.02422,-0.45298,1.0984,0.71741,-0.23091 -0.92894,1.1017,0.92526,-0.62273,-1.7806,-0.094063,1.0176,0.14894,-0.35386,0.43874,0.086573,0.17701,0.17115,0.71958,0.31914,0.19262,0.65585,0.11782,-0.35035,0.786 -0.67851,0.64169,0.45704,0.012578,-1.485,-0.50729,1.2467,0.067192,-0.79969,0.26118,0.15085,0.93797,-0.043552,0.17159,1.0018,0.39194,0.74912,-0.21366,-0.053469,0.38997 -1.3745,0.36213,1.4804,0.12263,-1.6177,1.3929,1.0311,-0.0028465,-0.45965,0.35764,0.49907,-0.69972,-0.25794,0.31357,0.038273,0.28105,0.50208,0.012281,-0.096443,0.35344 -1.1803,-0.65501,0.44416,1.9641,-1.5681,1.2137,0.30933,0.060188,-1.0454,-0.79821,0.50644,0.25637,-0.13119,-0.59417,0.32107,0.61901,-0.58072,0.33519,-0.016192,0.64544 -0.68997,0.042871,0.46765,0.63147,-1.8699,0.56186,1.3015,0.11969,-0.89792,-0.088709,0.096672,0.33598,0.46877,0.15984,0.73012,0.5319,0.066037,-0.26073,0.19616,-0.23499 -3.1722,-0.025088,2.2862,0.068537,-2.8318,0.8863,1.1966,-0.87838,-1.6314,-0.080869,-0.18541,0.38246,-0.032022,0.34118,0.35801,-1.1046,-0.050735,0.86447,-0.57275,0.18917 -2.3843,0.25395,2.0757,-0.013707,-2.8062,1.8241,1.5755,-0.29178,-1.532,-0.46392,0.4396,-0.36756,-0.66455,0.39619,0.28644,0.32843,0.48634,0.77832,0.47562,0.72545 -1.2465,0.73327,0.7414,-0.26587,-2.1517,-0.017552,1.2936,-0.45441,-0.46418,0.68434,-0.13602,0.74331,0.25865,0.63443,0.41961,0.25645,0.57331,-0.3091,0.56562,0.25781 -1.8598,-0.07942,1.0863,0.046306,-2.9372,1.3396,1.1877,-0.071383,-0.79726,0.26251,-0.41933,0.18662,1.0545,0.1708,0.79477,-0.76324,0.2695,-0.62267,-0.1521,-0.47618 -0.88548,0.38256,-0.36148,-0.19788,-1.3259,0.00083697,0.39401,0.50979,-0.60651,0.20426,-0.079602,0.21139,0.094655,0.3398,0.44058,-0.014647,0.086548,0.5193,0.44738,0.078304 -1.7498,0.75534,1.7711,-0.30679,-3.1604,1.3093,1.5149,-0.14457,-0.47116,0.45923,0.21956,-0.23589,0.13381,0.39772,-0.2729,-0.13545,0.90237,0.032836,-0.032617,0.20782 -1.2323,0.14377,0.36041,-0.31668,-2.4053,0.36487,0.98039,-1.035,-0.65733,0.62963,-0.14223,0.49338,0.86694,0.28514,-0.014036,-0.10625,0.35832,-0.18744,1.0564,-0.26197 -1.3525,-0.49399,0.60346,1.0476,-1.9756,1.2557,1.3794,-0.58613,-0.4742,-0.99708,0.43926,-0.61334,-0.049892,-0.34863,0.10091,0.86539,0.2666,0.77814,0.25563,-0.048576 -0.36513,-0.49652,1.2667,0.91826,-2.1955,1.1952,1.3904,-0.11756,-0.77001,-0.92449,1.0228,0.47048,0.17216,0.18823,0.42308,0.37312,-0.65587,0.71154,-0.058793,0.27221 -3.7322,0.2272,0.45029,-1.2833,-3.0038,-0.12653,2.3044,-1.5555,-1.0838,0.38258,-0.40413,1.4661,0.63085,0.62851,0.52688,-0.04101,0.13411,0.28686,0.42023,0.001313 -3.6788,-0.044827,1.0183,-0.26804,-3.0882,1.5537,1.6746,-1.4239,-0.80663,0.31724,-0.16776,0.46484,-0.023983,0.24771,0.27657,-0.18835,-0.13937,0.48458,0.46534,-0.27657 -2.6354,0.89243,1.014,-0.93225,-2.2884,-0.39436,2.0697,-0.73504,-0.38463,0.49918,-0.61633,1.1271,0.51507,0.47844,-0.027453,0.43741,0.48982,-0.046347,0.036764,-0.039416 -0.80477,0.2915,0.53874,-0.27272,-2.1165,0.5865,0.86664,-0.29908,-0.37707,0.29069,-0.29834,0.49269,0.55205,0.91023,0.43846,-0.061018,0.28725,-0.31058,0.58374,0.079777 -1.4582,0.2869,0.77562,0.18884,-2.0838,1.4081,1.4801,-0.043949,0.14418,0.029488,0.40631,0.1066,0.23942,0.83623,-0.16256,0.48161,0.48179,-0.18058,0.73051,-0.23829 -1.642,-0.17742,0.99879,1.4662,-3.1625,1.4187,1.3996,-0.76148,-0.87112,-0.97937,0.57421,-0.43504,-0.34207,0.027748,0.48338,1.1101,0.071704,0.76826,0.54358,-0.31854 -2.3695,-0.52062,2.2716,0.63211,-1.8992,0.76778,1.0721,0.37006,-1.36,-0.11772,0.1766,-0.49863,-0.96117,0.48739,-0.023494,0.054615,0.33104,0.71802,-0.021024,0.61496 -1.3429,0.38474,0.21268,-0.62878,-1.5453,-0.41483,1.3004,-0.16496,-1.2622,-0.1824,-0.14816,1.2635,0.5228,0.26434,1.2745,-0.16691,0.67284,-0.079191,0.64109,0.20302 -1.4517,-0.21321,0.67941,-0.11551,-1.686,0.96319,0.85546,-0.4293,-0.45031,0.46774,-0.45396,-0.18409,0.30821,0.1235,0.32161,-0.87547,0.15665,0.26041,0.39311,-0.3103 -0.34622,-0.59811,1.1268,0.70995,-1.3967,0.40361,0.70545,0.15198,-0.94929,-0.59508,0.45116,0.61183,-0.19066,-0.3693,0.52734,0.69809,-0.6095,0.0034686,-0.023434,0.52455 -0.95237,0.32124,0.79788,-0.39871,-2.7021,0.72095,0.86526,-0.33302,-0.35728,0.28417,-0.22286,0.33704,0.55893,1.044,0.36353,-0.21174,0.17221,-0.15996,0.45845,-0.095973 -1.3948,0.11446,0.8546,-0.15667,-2.533,1.4412,0.82445,-0.58878,-0.30456,0.055198,-0.16315,-0.13056,0.49693,0.57711,0.36359,-0.39903,-0.013379,0.26183,0.82232,-0.34043 -2.1789,-0.27828,0.93321,-0.071873,-2.9349,1.6563,1.2375,-0.88647,-0.24041,0.054932,-0.038757,-0.63249,0.16402,0.53575,0.37691,0.54219,0.06801,0.253,0.90955,-0.49824 -2.2886,1.1435,1.0672,-0.18355,-2.6282,1.6984,1.4487,0.14036,0.24221,0.27899,-0.10235,-0.15683,0.17223,0.70784,-0.051958,0.26107,0.80542,-0.42271,0.17205,0.1119 -1.95,0.58187,2.108,0.21445,-3.879,1.2446,1.7095,0.010873,-0.90087,0.23536,0.22033,0.084643,0.41992,0.10362,0.27839,-0.44827,0.55068,0.42381,-0.26012,-0.19338 -1.4187,0.17705,1.1172,-0.38668,-2.8048,1.2991,1.1688,-0.46112,-0.44598,0.3118,-0.075148,0.075296,0.69947,0.61548,-0.015147,-0.47093,0.54712,-0.37801,0.39112,-0.19523 -1.3358,1.0039,0.72376,-0.67751,-2.5343,0.46614,0.85392,-0.19593,-0.64805,0.54902,0.061463,0.44893,0.25472,0.93933,0.40787,0.17916,0.7556,-0.5513,0.45161,0.56598 -3.1498,-0.023279,0.63463,-1.1649,-1.9255,0.031448,1.6645,-1.3988,-0.70255,-0.45224,-0.28333,1.1373,0.56391,0.70773,0.078003,-0.70936,-0.52297,0.67757,-0.44285,-0.16935 -1.9487,0.44928,0.86426,-0.74717,-2.1508,0.29436,1.4754,-0.67748,-0.25758,0.67168,-0.63411,0.50799,0.37374,0.73791,0.45539,0.15355,0.46064,-0.14029,0.3159,-0.14605 -1.9011,-0.41656,1.4026,1.7398,-2.0141,1.1322,0.59712,-0.78357,-0.52797,-1.0042,0.11728,-0.10874,-0.30392,-0.85375,0.55849,0.99051,-0.33237,0.57934,0.39052,0.66609 -2.7873,0.45496,1.515,-0.18107,-2.0228,1.9085,1.6564,-0.2372,-0.26436,-0.071365,-0.27104,-0.12074,-0.5068,0.42664,-0.10812,0.17646,0.35113,0.17098,0.038375,0.26244 -3.6547,-0.51621,1.3681,-0.14001,-2.181,1.1226,0.97847,-1.2778,-1.8651,-0.081408,-0.38819,0.84007,-0.16238,-0.012461,-0.32021,-1.162,-0.59749,0.96378,-0.46152,0.014856 -1.9794,0.76304,0.95371,-0.78095,-3.0948,0.6426,1.464,-0.45672,-0.38518,0.54533,-0.49069,0.54482,0.61482,0.92955,0.68108,0.014193,0.85037,-0.56965,0.15296,0.25058 -1.3387,0.54622,1.2237,1.4436,-1.6209,-1.6558,1.3505,-0.1177,0.30065,0.41895,1.1564,-0.58945,0.22938,1.0211,-0.31221,0.24123,0.24055,-0.018634,-0.23528,0.014792 -0.46755,1.4844,0.0032004,1.0361,-1.4822,-0.43697,1.5757,-0.017657,-0.76048,-0.79145,-0.63248,0.72387,0.54158,-0.055293,-0.025297,0.31642,0.88951,0.62912,0.38079,0.27467 -2.2076,2.3888,0.22174,2.0222,-0.8092,-0.27146,1.5609,0.42072,-0.80652,-0.24326,0.082659,0.60336,0.25083,-0.22226,0.98325,0.53822,0.3341,0.46723,-0.2372,0.19639 -0.36221,0.31753,-0.4862,1.4397,-1.5121,-0.49546,1.6915,-0.20019,0.038084,-0.55261,-0.060036,0.6401,-0.90939,-0.091159,-0.12224,-0.3712,0.20338,-0.13279,0.17202,0.56754 -1.4573,1.7323,-0.29073,1.2214,-0.98292,-0.079853,0.68963,0.91012,-0.86213,-0.83802,-0.25348,-0.58614,0.47555,-0.045565,0.21573,0.32122,0.12255,1.0466,-0.25469,-0.64417 -0.41363,0.26962,0.88016,0.94713,-1.1111,-1.2646,0.55258,-0.34645,-1.2538,0.43957,-0.43012,-0.1545,1.2236,0.032305,0.34625,0.35403,0.56648,0.58088,0.18841,-0.65367 -1.0076,-0.30193,0.20934,0.90789,-2.5111,0.36268,1.5832,-0.94245,-1.9652,1.0153,1.2958,0.035292,0.38942,0.83687,0.34348,-0.39673,0.19456,-0.47845,-0.086915,0.18869 -0.13122,0.5214,0.50996,1.0045,-1.1517,0.0050796,1.0448,-0.17254,-0.38079,0.78326,-0.012826,0.0043439,0.037279,-0.11452,-0.35746,-0.13148,0.44815,0.34483,0.32319,-0.16602 -0.40714,0.71413,0.34593,0.9563,-1.1461,-0.48105,1.6687,0.5294,0.029771,0.54502,0.36228,0.0052076,-0.38626,0.22101,-0.13124,0.056568,0.25088,0.017731,0.055139,-0.29531 -1.9845,1.733,1.6091,2.1061,-1.0588,-1.2206,1.539,-0.30591,-1.4782,1.1808,0.17185,-0.058355,0.72262,0.71619,0.053595,1.021,1.0715,0.41445,-0.12342,-0.56221 -0.28658,1.2283,0.10407,1.5498,-1.1757,-0.84558,2.003,-0.062812,-0.5812,-0.019105,-0.26417,0.11956,-0.38598,-0.0047923,-0.21544,-0.25866,-0.18146,0.31009,0.66568,0.36486 -0.20637,-0.042065,0.68791,0.98079,-1.8258,-1.287,1.2236,-0.50512,-1.3694,-0.71741,-0.09458,-0.65705,0.063645,0.97519,0.25199,0.29012,0.22536,-0.17539,0.4213,0.21509 -1.2498,1.2794,-0.1937,1.9866,-2.0047,-0.68566,2.7482,1.2709,-0.37069,0.0089147,0.49134,0.044359,-0.38298,0.41689,0.40887,-0.26274,-0.0086934,-0.34555,0.42573,0.22408 -1.0904,1.2566,0.30023,1.1389,-1.5943,-0.71629,1.8591,0.63542,0.075589,-0.59064,0.37236,-0.078372,0.064647,-0.1244,0.087088,-0.17735,-0.45769,-0.0042059,0.024314,0.59792 -1.0342,0.9869,0.87773,1.3142,-0.91275,-1.3149,1.3767,-0.17915,-0.11857,0.33909,0.78025,-0.5691,0.043172,0.8276,-0.062453,0.36177,-0.10652,0.050012,-0.31299,-0.29361 -1.2897,1.979,-0.63611,2.0821,-1.834,-0.39665,1.9762,1.1301,-1.358,-1.0162,-0.34565,0.4491,0.86965,-0.33674,0.29131,0.26788,0.53801,1.3127,0.37023,0.44483 -0.9555,1.741,0.77324,1.7574,-1.4884,-1.1759,2.6868,0.57585,-0.80735,0.59018,0.59802,0.31115,0.71706,0.0051877,0.58556,-0.020296,0.42794,0.52528,0.40946,0.18024 -1.4044,1.6226,0.085672,1.3395,-0.76081,0.1686,1.7751,1.2944,-0.7463,-0.17815,0.12343,0.32495,0.80833,-0.11285,1.2822,0.036103,0.39401,0.348,0.070165,0.37465 -0.61794,-0.7613,1.1524,0.52987,-1.9303,-1.5073,-0.068292,-0.28444,0.18989,-0.18193,0.05988,0.034552,0.52941,0.18372,-0.086929,-0.31926,0.61543,0.96665,0.09591,0.12242 -0.33114,1.1462,0.60306,1.7907,-1.1167,-0.6321,1.8035,0.0098516,-0.65963,0.26745,-0.43373,0.027235,-0.56603,-0.14536,-0.16985,-0.028571,0.028003,0.60061,0.55928,-0.0279 -0.81903,0.85029,1.3755,1.5522,-1.5534,-0.95927,1.1615,-0.69449,-1.0906,0.82456,-0.45326,-0.66357,0.30633,0.2257,-0.45677,0.32353,0.6721,0.40484,0.2495,-0.93789 -0.44228,-0.68708,0.535,1.2344,-2.1861,-1.8799,1.062,-0.63002,-0.66874,-0.14253,-0.33078,-0.64452,-0.2184,0.77865,-0.19431,-0.26266,0.31954,-0.1683,0.04599,-0.21674 -1.6752,1.3272,1.5927,2.3723,-1.9297,-1.7047,2.4795,0.51682,-1.5451,0.67039,0.39119,-0.48307,0.90838,0.74022,0.59168,0.59786,0.5207,0.50338,0.25523,0.13084 -0.85748,1.2118,-0.99198,1.3449,-1.8438,-0.13652,1.9674,0.71139,-0.20903,-1.1898,0.087836,0.3253,-0.10404,-0.024677,-0.55379,-0.11494,0.12494,0.084208,0.2876,0.30202 -1.5622,1.3878,0.306,1.6982,-1.9696,-0.90903,3.1502,1.0234,-0.56329,0.33613,0.84717,-0.34986,-0.11404,0.63831,0.63366,0.13326,0.22116,-0.42781,0.40506,0.19705 -1.5468,1.4022,-0.18061,1.942,-1.8327,-0.79488,2.3992,0.70549,0.21634,-0.1003,0.34557,-0.053988,-0.60006,0.4862,0.56471,-0.17233,-0.18427,-0.42422,-0.19886,0.19656 -1.1772,1.7161,-0.994,1.4961,-1.5815,-0.22245,1.741,1.3237,-1.0901,-1.0517,-0.41865,0.24418,0.90514,-0.078541,0.13502,0.14188,0.39384,0.64378,0.22462,0.60061 -0.83869,1.8581,-0.059613,2.0922,-1.725,-1.1045,2.6844,0.29096,-0.5315,-0.081138,0.074673,0.49981,-0.018643,-0.15418,0.20742,-0.094751,-0.019084,0.45419,0.45807,0.52753 -1.6596,1.7703,-0.086911,1.1163,-1.393,0.016846,2.249,1.4385,-0.84636,-0.24806,0.22738,0.30442,1.0188,0.073322,0.93503,0.14659,0.65371,0.89928,0.42612,0.14897 -1.5094,-0.73316,1.268,0.27096,-2.96,-1.5473,-0.041499,-0.12237,-0.60244,-0.61263,0.42842,0.1951,-0.097912,-0.2383,0.13836,-0.57067,0.90694,-0.041746,0.10828,-0.28716 -1.2139,0.77167,1.8455,1.3061,-1.0129,-0.69471,0.75446,-0.3529,-1.2067,0.576,0.35347,-0.61292,0.51804,0.15924,-0.33971,0.93839,0.87142,0.49075,0.085693,-0.39381 -0.60282,0.94395,0.2642,1.5494,-2.0317,-0.88262,2.5131,0.47856,-0.20142,0.21838,0.19084,0.028205,-0.35541,0.95518,-0.38666,-0.010002,0.31505,-0.33657,0.27442,0.06304 -1.7276,1.9941,-0.85972,1.5971,-1.8193,-0.29045,1.7661,1.7571,-1.3552,-0.90953,0.11199,-0.014543,0.95085,-0.26142,0.51821,0.039562,0.40452,1.2614,0.45081,0.066907 -0.54006,0.82484,-0.37422,1.2632,-2.2513,0.0027859,1.6991,-0.5121,-1.1739,-1.0588,0.89252,0.60846,-0.59934,0.47171,0.38714,-0.46956,0.18713,-0.10195,0.20143,0.51058 -0.42487,0.98783,0.16566,1.4296,-1.1942,-0.064844,1.8074,-0.060678,0.010833,0.11526,-0.19041,0.16801,-0.327,0.37384,-0.34429,-0.2369,0.34157,0.026506,0.26606,0.15685 -0.54581,0.94753,0.36789,1.8503,-1.9699,-0.8375,2.2089,-0.17831,0.091646,0.24286,-0.15557,0.045849,-0.85919,0.25678,-0.35176,-0.36199,0.21018,0.10837,0.22748,-0.10711 -0.84323,1.7562,-0.28022,1.3264,-1.0455,-0.28669,1.5965,1.0716,-0.46809,-0.73216,-0.10148,0.077268,0.52727,-0.47457,0.11706,-0.029734,-0.12356,0.46133,0.22359,0.34425 -1.2235,0.89892,1.7636,1.3841,-1.0716,-1.0202,0.97394,-0.62509,-1.1355,0.65503,0.21838,-0.66249,0.45799,0.2241,-0.26619,0.60881,0.72087,0.42818,0.04735,-0.97553 -1.6196,1.9638,0.70276,1.94,-1.2644,-1.5278,2.504,0.39975,-0.64728,0.43607,0.85025,-0.35711,0.044379,0.6824,0.73953,0.31091,-0.30849,0.20588,-0.19089,0.022109 -0.57313,1.0897,0.017548,1.8446,-1.7941,-0.55158,2.161,-0.55564,-0.017347,-0.22397,-0.38523,0.32659,-0.87261,0.31043,-0.23502,-0.42924,0.14714,0.25598,0.13011,0.39607 -1.8986,1.2372,2.0263,2.3728,-1.9995,-1.5252,2.0025,-0.23165,-1.7377,0.6671,0.10344,-0.055698,1.0481,0.87434,0.052091,0.63115,0.84704,0.65236,0.034229,-0.3945 -0.39135,0.999,0.4987,1.5947,-0.95667,-0.22852,1.2203,0.3745,-0.88578,0.41843,-0.52666,0.68625,-0.26342,-0.68876,-0.093347,0.41191,0.63723,0.66442,0.3865,0.29261 -1.7828,2.2587,0.13051,1.7066,-0.93795,-1.1401,2.1603,0.72589,-0.61564,0.092797,0.6054,0.9149,0.75688,0.16384,1.037,0.10725,0.17737,0.48114,0.03008,0.27863 -1.0176,0.79904,1.4219,0.99293,-2.3104,-1.6275,1.3808,0.034456,-0.49683,0.37714,1.2319,-0.62742,0.032851,0.45316,0.29072,0.52755,0.19454,-0.34983,0.47304,-0.60785 -0.94746,1.3107,0.21844,1.3736,-1.54,-0.059473,1.1196,0.48863,-0.56242,0.84337,0.44785,1.6388,0.86716,-0.17897,0.43561,0.011062,0.67286,0.85096,-0.67786,0.60343 -0.58756,1.0481,0.81213,1.6794,-1.1538,-1.4518,1.6277,0.12438,-0.55736,0.50071,-0.040639,-0.090858,-0.050782,0.29053,-0.17581,0.25628,-0.27607,0.59623,0.53761,-0.17537 -1.7548,1.1318,-1.5653,0.069822,-1.0916,-0.17177,0.93854,1.0483,-1.8676,-0.21927,0.34696,-0.53837,1.0016,1.012,-0.088372,-0.24903,0.25227,1.4475,0.47187,0.29517 -2.0547,2.3395,0.024372,2.3699,-1.1672,-0.99247,2.312,0.44605,-0.47854,-0.49096,0.66883,0.29334,0.35797,0.077047,0.84,0.10608,-0.30998,0.33018,0.016329,0.28061 -0.67744,1.3451,-0.36243,0.51036,-1.5228,-0.017446,1.2922,0.78726,-0.64274,-0.91255,0.25023,-0.30997,0.57236,0.42711,0.055799,0.22517,0.81287,0.4425,0.59622,0.45988 -0.23275,0.65075,0.17529,1.3506,-1.05,-1.0023,1.4042,-0.1871,-0.29198,0.0090884,-0.22429,0.26117,-0.61543,-0.073705,-0.021108,-0.40477,-0.20119,0.17956,0.42525,0.14158 -1.6805,-1.0925,-0.15167,1.7276,-2.9446,-0.3524,0.58954,-0.96415,-0.90766,0.34532,-0.50285,-0.69303,0.1722,0.6918,0.10378,-0.20905,0.7329,0.6097,0.40485,0.091618 -2.9096,-0.35413,0.0041799,1.0769,-2.7901,-0.35109,0.0081456,-0.87832,-0.30022,-0.090175,0.5729,-0.007962,0.22678,0.63485,1.2863,-0.041867,-0.06447,0.47007,-0.18803,-0.20926 -1.3205,-0.12005,-0.23331,1.3813,-1.7992,0.62043,0.43568,-1.0269,-1.6093,-0.64087,0.58922,-0.43016,0.04622,0.71662,0.22672,0.70625,-0.28157,0.86928,-0.30814,0.18974 -1.2452,-0.83219,1.5404,2.1098,-2.7709,-1.0252,0.88617,-1.1228,-0.64121,0.45476,0.30947,0.0074122,0.87145,-0.31785,0.16453,-0.46446,0.12967,-0.23798,0.094404,-0.43046 -1.0827,-0.97227,0.4995,1.5985,-3.4923,-0.30577,1.8109,-0.027173,-0.52381,-0.88658,-0.70157,0.33718,0.25169,0.202,0.64684,0.23503,0.47642,0.23205,-0.0054933,0.059436 -2.8424,-0.32578,0.60981,2.4998,-3.3249,0.054243,1.0105,0.070513,-1.4999,-0.53033,0.62347,-0.77548,0.58189,-0.58251,0.90368,-0.20312,0.82957,0.19092,0.31575,-0.61014 -1.3109,-0.11081,-0.09272,1.2714,-2.9816,-0.86692,0.82336,-0.818,0.0061605,-0.0023337,0.18528,0.68156,0.8312,0.30413,0.32225,1.2299,0.86025,1.0789,-0.35676,0.17766 -2.8281,-0.59818,-0.14228,2.5876,-2.5928,-0.17058,0.15287,-0.62553,-1.7383,0.18798,0.0085038,-0.22128,0.50952,-0.43596,-0.056846,-1.2805,0.83103,0.53322,0.44976,0.49904 -0.35389,-0.80515,0.010639,0.95359,-1.7188,0.039501,0.73099,-0.16455,-0.45757,-0.43128,-0.20297,0.72952,0.30604,-0.64151,0.69954,-0.011272,0.13686,0.19951,-0.036168,-0.15291 -3.3696,-0.26204,1.5928,2.9894,-3.8146,-1.1888,1.5007,-1.2928,-1.6188,-0.31808,0.31964,0.73011,1.0159,-0.071712,0.42183,0.43246,0.63984,0.26239,-0.12687,0.10078 -1.3922,-0.70544,-0.87724,1.2761,-3.0574,-0.40879,1.2643,-1.1801,-0.81176,-0.58875,0.039843,0.28668,0.58328,0.71631,0.34598,1.3871,1.0428,0.50091,-0.4785,-0.0069273 -1.3225,0.35867,0.3012,1.1665,-2.5637,-1.2014,0.97285,-0.84625,0.1619,-0.10695,0.31712,-0.058447,0.048771,-0.27255,0.59787,0.37122,0.52244,0.51773,-0.63171,0.013226 -1.4213,-0.051318,-0.70034,1.372,-3.825,-0.55461,1.614,-0.93018,-1.1324,-0.39196,0.20431,-0.23399,0.95034,0.24489,-0.063756,0.67764,0.64654,0.44669,-0.24369,-0.73525 -2.0707,-1.6562,-0.82694,1.4991,-3.2093,-0.42633,1.1662,-0.5927,-1.3346,-0.62384,0.37557,-0.22507,0.00087331,-0.37438,0.23977,1.13,0.53279,0.053623,-0.25176,-0.082322 -2.7552,-0.38544,0.82585,1.5559,-4.1699,0.24239,1.129,-0.65675,0.089185,-0.47411,0.5126,-0.33897,1.0576,-0.25214,0.78713,0.65394,0.15205,1.2536,-0.42667,-0.11837 -2.1672,-0.68375,-0.38473,1.4434,-3.1265,0.17546,0.01779,-0.50957,-0.38697,-0.37773,-0.43215,0.53718,0.30315,0.28076,0.55627,0.37034,-0.21395,0.1939,-0.31947,0.031043 -2.6537,-0.63965,-0.45167,1.9914,-3.4333,-1.0099,-0.33937,-1.0361,-0.80228,-0.64312,0.62905,0.93855,0.54613,-0.48799,0.20442,0.46392,0.96166,0.10773,-0.60784,0.22423 -1.3326,0.12918,0.23107,1.4148,-2.263,-0.04495,-0.15282,-0.23456,0.064232,-0.34688,0.14008,-0.3581,-0.03256,-0.30734,0.01826,-0.27781,0.13461,0.26489,0.15041,-0.2954 -2.5347,-0.23896,-0.44244,0.25726,-3.6029,-0.73019,0.80793,-0.77282,-0.78299,0.73956,0.97492,0.33761,0.76305,0.08849,0.41046,1.1136,-0.0048425,0.61726,-0.17852,0.40108 -0.67235,-1.2616,1.3074,1.8267,-1.9166,-0.72375,0.83864,-0.69127,-0.96935,-0.25253,0.9424,0.72723,0.51957,-0.58033,0.94649,-0.27708,0.26714,0.044821,-0.0048533,-0.086934 -0.7889,-0.58651,1.1168,1.2424,-2.1384,-0.80167,0.64404,-0.79039,-0.56635,0.2112,-0.1025,0.96335,1.0541,0.14612,-0.20945,0.13573,0.30129,-0.40527,0.27911,0.12511 -3.1496,-0.92803,0.48086,1.2353,-2.9989,-0.4169,1.7101,-0.046797,-0.89467,-0.076244,0.86287,0.16529,0.92342,1.1555,0.55135,0.25702,0.27089,-0.42142,0.56762,0.67892 -1.1092,-1.0703,0.35402,0.74375,-2.5889,1.0184,1.3948,0.2344,-0.76621,-0.61614,-0.47564,0.69035,0.63158,0.22386,0.47748,0.68781,-0.41842,-0.032474,0.0083067,-0.60154 -2.2923,0.33505,-0.6677,1.0163,-2.9853,-1.4234,0.90128,-0.16791,-0.69935,0.20216,1.6613,-0.23374,0.12067,0.062158,0.16401,1.5931,0.32803,0.60359,-0.46967,-0.024615 -1.8926,-1.3657,-1.164,0.48102,-3.5238,-0.57115,1.5476,0.14582,-1.4494,0.079415,0.11314,0.018111,0.52397,0.23813,0.8024,1.0466,0.47531,0.9275,0.64682,0.10769 -1.5796,-1.049,1.689,1.1055,-2.1665,-0.26909,0.28372,-0.91643,-0.24789,0.42675,0.46225,-0.075396,1.1248,-0.11142,-0.14556,-0.22436,-0.019422,0.17626,0.017363,-0.54751 -1.843,-0.98686,-0.63205,0.50707,-3.4037,0.37031,0.94691,-0.80569,-0.26397,-0.31509,0.25817,0.23662,0.6695,0.4124,0.43589,1.3335,-0.12006,0.62092,0.028123,0.22872 -0.51661,-0.22144,-0.098806,1.6803,-2.4102,0.032432,1.6548,-1.1742,-0.56301,-0.1964,-0.2542,0.44697,0.035718,0.58322,0.10115,0.5237,0.66981,-0.055847,-0.069016,-0.32447 -0.70333,-0.72408,0.55008,1.5064,-1.944,0.37462,0.36426,-0.56889,-0.32908,-0.83198,-0.0085571,0.13852,0.4002,-0.0030755,0.33667,-0.24266,-0.29197,0.42424,0.087173,0.55775 -2.0456,-0.17533,0.050944,2.0121,-3.8922,-0.37922,1.9767,0.006322,-0.57155,-0.60449,-0.12878,-0.16239,0.95049,0.17395,0.88747,0.39401,1.0044,0.47671,-0.3045,-0.19413 -1.8651,-0.32152,-0.1215,1.3831,-2.1712,-0.080758,-0.41502,-0.6693,-0.0034015,0.21306,0.28996,-0.36982,0.74972,-0.013796,0.20885,-0.47594,0.27724,0.41306,-0.049605,0.053006 -1.6105,0.35195,1.2726,2.3676,-2.9509,-0.72904,0.5767,-1.5714,-0.48167,-0.16376,-0.02684,0.034643,0.55367,-0.24826,0.45796,0.18921,0.53499,0.65323,0.38872,0.19466 -1.2506,0.28628,0.046436,1.2115,-2.3651,-0.21142,-0.067256,-0.68878,-0.071565,0.015933,0.124,-0.55379,0.010874,0.16743,0.25563,0.35744,0.23055,0.59186,-0.12814,-0.61682 -1.5189,-1.0141,0.32209,0.90988,-2.4941,-0.28388,0.85606,-0.94679,-0.11546,0.22664,-0.16573,1.3597,0.51641,-0.72151,0.74864,-0.15659,0.25135,-0.27896,-0.36095,-0.15278 -0.84074,0.26034,-0.1803,0.76696,-2.4569,-0.38912,0.96648,-0.43911,-0.23295,-0.073311,0.57088,-0.14984,0.42352,-0.1001,0.25457,0.69147,0.21347,0.081373,-0.31794,-0.27766 -1.4791,1.367,-1.501,1.0296,-2.3557,-0.16762,1.0786,0.0584,-0.88301,-1.1696,0.39503,0.38572,0.31757,0.30166,-0.43852,0.66047,0.086965,0.53729,-0.33552,-0.37547 -0.5979,-1.0733,1.3994,1.9455,-2.2382,-0.96441,1.1254,-0.97194,-0.78769,-0.048088,0.079533,0.10133,0.66674,-0.039483,0.5473,-0.070625,0.30956,0.0077567,0.29562,-0.019869 -2.2136,0.15408,2.3146,1.8261,-2.7185,-0.48043,0.64905,-1.0121,-1.4446,0.28555,0.90973,-1.0035,0.30172,-0.12118,-0.22542,0.22831,0.41871,-0.32067,-0.053308,0.1284 -3.1401,-0.42408,-0.35117,1.9016,-3.419,-0.17534,0.35224,-0.84786,-0.93079,0.31435,-0.43284,0.0065655,0.71844,0.13312,1.1962,-0.88254,0.57429,-0.075234,-0.29266,0.044678 -0.56971,-0.92116,1.1094,1.2337,-2.1099,-0.9831,0.6633,-0.16231,-0.70439,-0.2076,0.2799,0.45297,-0.43909,-0.49527,0.74672,-0.88469,0.080802,0.83875,0.028027,-0.051664 -1.1541,0.13847,1.971,2.1839,-2.1877,-0.79851,0.68123,-0.9046,-1.0654,0.85926,0.83664,-0.74649,0.52565,-0.28494,0.098936,0.4914,-0.25599,0.28054,0.51543,-0.16902 -1.2601,-1.1648,2.1646,1.8494,-1.9906,-1.1801,-0.0030587,-0.37863,-1.3827,0.0063277,1.0983,0.28581,0.82745,-0.13167,0.081718,-0.62007,0.13093,0.25876,0.13191,-0.21836 -1.7158,-0.32042,-1.0516,1.425,-2.9627,0.0056932,0.71362,-1.0833,-1.1648,0.41755,-0.045837,-0.70937,-0.087885,0.29427,-0.09673,-0.2036,0.11279,0.33146,-0.46964,-0.18192 -0.54939,-1.091,1.012,2.1339,-2.217,-0.51856,1.0409,-0.94877,-0.95332,-0.15985,0.087823,0.16321,0.31575,-0.24233,0.64144,-0.24023,0.027535,0.4909,0.12398,0.37209 -4.0907,-0.83655,0.9162,2.2996,-4.4115,-1.2547,1.1413,-0.47002,-1.1064,-0.73544,0.50716,0.8642,1.0025,0.49071,-0.14552,0.76702,0.47582,0.46582,0.34252,0.2985 -1.4705,-0.77906,1.8611,2.433,-3.0896,-0.75535,1.257,-1.2937,-0.2454,0.27539,0.8755,0.20085,1.0911,-0.36505,0.25801,-0.22513,0.21034,0.6026,-0.15043,0.24895 -1.4578,-0.59683,-1.5391,0.53396,-2.6555,0.15707,0.67786,-0.44338,-1.2552,-0.14409,0.71981,0.098951,0.33452,0.48973,0.13972,1.0717,0.34989,0.20311,-0.69338,0.3803 -3.8454,-0.10028,0.70679,1.8129,-2.8722,0.46176,1.6416,0.09091,-1.2409,-0.36837,0.88156,1.4366,0.072439,0.90592,-0.047904,0.29816,0.46527,-0.36748,-0.52958,-0.84462 -1.7073,-0.85732,1.8569,2.6162,-2.8043,-0.82104,0.67544,-0.42658,-0.56272,-0.62968,1.0744,0.91524,0.75811,0.027384,-0.18979,-0.86615,0.28126,0.27142,0.30776,0.20227 -1.5906,-0.66433,0.71393,1.7318,-2.1904,-0.39,0.4849,-0.46317,0.30986,-0.11707,0.43158,1.4787,1.2196,-0.44718,0.087115,-0.56991,0.58268,-0.12911,0.52995,-0.67399 -1.6787,1.196,1.6402,2.4608,-2.9058,-1.1929,1.322,-1.0485,-2.1803,0.91894,0.1989,0.45907,-0.033172,0.67367,0.59533,0.29572,0.25225,0.48469,-0.27544,-0.64709 -2.346,1.5334,1.7175,1.3992,-1.4803,0.18573,0.67862,-0.08359,-1.5794,-0.30263,0.96135,0.82841,-0.53324,0.09417,0.99834,0.2076,0.54546,0.43517,0.6243,0.31084 -2.8612,1.4242,0.35774,0.60852,-1.6178,-0.44364,0.54074,-0.40021,-1.155,-1.3846,0.52451,-0.85433,0.029178,0.35513,0.38785,0.035705,0.81228,1.3097,-0.11613,-0.2461 -1.789,1.1106,-0.67614,-0.41125,-1.7601,-0.47493,0.60806,-0.017221,-0.63513,-0.36578,0.90173,-0.58882,-0.61599,0.82452,0.38016,0.14257,0.40872,0.24183,0.016351,0.001004 -1.7742,0.61325,-1.0145,0.84333,-1.5149,0.22629,0.46768,-0.20075,-1.4936,-0.68693,0.228,-0.23602,-0.18366,0.46768,1.1482,-0.57785,0.39426,0.18236,-0.34969,-0.38521 -0.3874,0.30437,-0.46073,2.0939,-2.2239,1.1798,1.7066,-0.3904,-1.5232,-1.2223,0.12773,0.62653,0.57161,0.046126,-0.70136,0.0090032,1.0016,0.66666,-0.31361,-0.23961 -4.0806,0.31666,0.48245,-1.5694,-1.1635,-0.52527,3.047,-0.31154,-1.0349,-0.78701,1.2233,0.74905,0.19993,0.58547,-0.063885,-0.022885,-0.08069,-0.72182,0.017323,0.67164 -0.98859,0.66368,-1.3761,0.34077,-2.0353,0.1048,0.616,0.38162,-1.0249,-0.43967,0.75432,0.53388,0.1572,0.63365,-0.46633,0.41302,0.11485,0.38531,0.01862,-0.067172 -0.74982,1.2406,-0.50839,1.2447,-2.2837,0.60374,0.69045,-0.55062,-1.6225,-1.2994,-0.51882,0.77934,-0.042277,0.47541,-0.15425,0.088424,0.33715,0.29429,-0.14456,-0.38839 -0.28726,1.1145,0.58931,1.928,-1.9559,0.36987,1.1861,0.21879,-1.1151,0.3069,0.14397,0.66136,-0.52069,-0.46313,-0.15205,-0.089769,-0.20748,0.33563,0.31392,-0.14171 -1.3493,1.3506,-0.57812,-0.10599,-1.7212,-0.24026,0.38622,0.13499,-0.84517,-0.54323,0.32787,-0.43155,0.14413,0.72652,0.57132,-0.28083,0.40636,0.56475,0.20588,-0.26129 -0.50087,1.1493,0.12566,2.2628,-2.2693,-0.20749,1.8059,-0.54035,-0.34399,0.10378,-0.11829,0.82634,0.13176,-0.082458,-0.19451,-0.39924,0.30363,0.27783,-0.053334,0.18772 -0.95114,1.1974,1.116,1.6676,-1.8585,-0.60213,1.0531,-0.38439,-0.48547,0.56843,0.46139,0.48108,-0.83708,0.11352,0.268,-0.26847,0.07976,0.63904,-0.060333,-0.54466 -0.89167,0.93352,-0.92051,1.0402,-2.7634,0.46491,0.60831,-0.37041,-1.0609,-0.99509,-0.19955,0.62292,-0.044853,0.92741,-0.29241,0.049982,0.49189,0.15465,-0.47373,-0.46143 -2.4778,1.9581,-0.066661,0.14162,-1.7522,-0.42228,0.57899,-0.0094136,-1.406,-1.0869,0.58572,-0.88188,-0.074461,0.50791,0.97837,0.049611,0.53799,0.89461,0.26135,-0.90095 -1.2028,1.78,-0.63036,1.527,-2.4598,-0.20787,1.2145,-0.36138,-0.32274,-0.83558,-0.21228,0.7797,-0.40162,0.06133,-0.088363,0.40691,0.21458,-0.0090615,-0.43002,0.10285 -0.50922,1.0147,0.32896,2.478,-2.7644,0.59247,1.4871,-0.11701,-0.9365,-0.061568,0.095103,0.99162,-0.40143,-0.47746,-0.38383,-0.50289,-0.019122,0.3696,-0.13479,-0.10975 -1.809,1.4048,-0.43099,0.45591,-2.4795,-0.42907,-0.033965,-0.21178,-0.66288,-0.82838,-0.3161,-0.61428,-0.47743,0.48786,0.42498,-0.08587,0.40926,0.73851,-0.053724,-0.52695 -0.2088,0.82637,0.051336,2.4243,-1.8712,0.8531,2.0981,-0.20888,-1.2907,-0.25766,-0.3599,0.96614,0.19991,-0.17663,-0.47908,-0.28264,0.86428,0.46002,0.0050283,0.52627 -2.4199,2.1901,-0.10129,2.0733,-2.7027,0.27703,0.53171,-0.16281,-1.4993,-0.82744,0.25379,0.67649,-0.046046,0.083613,0.69608,-0.029909,0.049274,0.8643,-0.61827,-0.74621 -2.007,1.2445,-0.63546,1.846,-2.8889,-0.66907,0.43746,-0.35272,-1.5266,-1.0443,-0.48169,0.13788,-0.1678,0.25716,1.3678,-0.50309,0.79071,0.22136,-0.1721,-0.33472 -1.7118,1.9897,-0.23014,1.0059,-1.6807,-0.038725,0.66386,-0.1204,-0.36552,-0.9456,-0.43693,-0.083735,-0.039951,0.033599,0.32806,-0.12193,0.17296,0.57674,-0.25447,-0.35092 -0.33447,0.79165,0.88438,1.9138,-2.2687,-0.5175,1.0377,-0.61404,-0.66519,0.43751,0.12638,-0.059285,-0.53832,-0.36368,-0.1586,-0.6614,0.18724,0.29533,0.75471,-0.3839 -0.82879,1.3316,-0.48495,0.36741,-2.1057,0.008932,0.51886,-0.71137,-1.5243,-0.91246,0.096829,0.099931,0.17803,1.0438,-0.051055,0.065733,0.17677,0.70967,0.4618,-0.43645 -0.9123,0.94726,-0.51066,2.1936,-3.0681,1.172,0.92854,-0.021751,-1.8433,-1.1405,-0.24529,0.54067,0.19145,-0.017012,-0.55914,0.11723,0.58314,0.57987,-0.16263,-0.62514 -1.5701,1.82,-0.7994,1.2619,-2.8501,0.025654,0.80678,-0.30273,-0.27285,-1.0055,-0.21115,0.73774,-0.19417,0.38141,0.20702,0.019853,0.14394,0.32192,-0.36204,-0.25521 -0.6228,1.5953,0.19327,1.9258,-2.6595,0.62297,1.0234,-0.038849,-1.1122,-0.62055,-0.085869,0.50656,-0.10559,-0.76129,-0.34958,0.011778,0.29573,0.59976,0.28778,-0.20341 0.1095,-0.40538,0.63597,1.8007,-1.7759,0.13582,1.3568,-0.75721,-1.5695,0.58029,-0.011036,0.10048,-0.38372,0.64466,-0.3414,-0.19002,0.3754,0.26752,-0.14405,-0.27224 -0.69778,1.6043,0.30205,2.1323,-2.18,0.3291,1.1328,-0.075068,-1.3879,-0.0011365,-0.51963,1.2205,-0.56438,-0.46518,-0.05024,-0.053086,-0.042332,0.46988,0.11334,-0.081211 -1.7716,2.327,0.37675,1.4535,-1.9856,-0.57615,1.4188,-0.17494,-0.78893,-0.59286,1.217,0.83809,-0.45544,0.19349,1.1385,-0.050976,-0.57654,0.11864,0.11035,-0.061206 -0.75811,0.77196,0.40726,0.69502,-1.6985,0.58245,-0.0035697,0.10851,-0.51688,0.097433,0.11836,-0.12988,0.10541,-0.38325,0.28463,-0.56392,-0.00050688,0.30956,0.0015272,0.095654 -0.84639,1.8689,0.032471,1.8295,-2.1166,-0.20967,1.2206,-0.60632,-0.80276,-0.1812,-0.20155,1.2291,-0.39668,-0.20466,0.16387,-0.30594,-0.378,0.51181,-0.10166,-0.17823 -1.2813,1.6994,1.102,2.5299,-2.0312,0.11652,1.0643,-0.28767,-1.1605,0.78205,0.68373,0.76517,-0.21464,0.16641,0.33064,0.49263,-0.27849,0.20941,0.11537,-0.28562 -0.9365,1.3099,0.38064,2.0041,-2.619,0.065693,1.4325,-0.99958,0.11105,0.31488,0.14508,0.44418,-0.57278,-0.25749,-0.26451,-0.035471,0.41124,0.19568,0.10024,0.20859 -1.7846,1.8114,-0.48638,2.3834,-3.1532,0.12502,1.1463,-0.44787,-0.93244,-0.47407,-0.044358,1.1064,-0.37014,0.18246,0.50282,-0.35337,-0.011771,0.22448,-0.77386,-0.16691 -0.69625,0.98655,-0.32616,1.7161,-2.3713,-0.041577,1.1777,-0.88223,-1.1095,-0.70407,-0.53187,1.5023,-0.61843,0.039745,0.043898,-0.30807,0.49221,-0.020733,-0.28288,-0.071791 -1.366,2.0645,0.10381,0.89839,-2.2717,0.032545,0.92562,-0.21628,-0.50393,-1.0128,-0.59787,0.18288,-0.273,-0.11706,0.23842,0.088979,0.67051,0.34542,0.048873,0.1516 -1.1744,1.3373,-0.35918,1.4407,-2.8945,1.0042,0.28368,-0.17721,-2.2229,-0.87234,-0.4699,0.40424,0.33842,-0.070148,0.01426,-0.17145,0.56064,0.5489,-0.20403,-0.64837 -1.8118,1.9272,0.14264,0.9971,-2.1233,-0.36556,0.71451,-0.32363,-0.060159,-1.0799,0.31489,0.31232,-0.31187,-0.082754,1.02,-0.20278,0.21905,0.68261,-0.26002,0.12301 -0.70675,1.7452,0.79108,1.2366,-2.1785,0.28815,1.2179,-0.35032,-0.77808,-0.11302,-0.24738,0.35433,-0.42967,-0.84627,0.08831,-0.086497,0.69244,0.49202,0.60897,0.16992 -1.7397,2.0266,0.46714,2.0161,-1.7146,0.12613,1.0333,-0.053059,-0.83409,0.0045394,0.5262,0.68539,-0.15278,0.12322,1.0944,0.37325,-0.36687,0.018499,0.10182,-0.33267 -1.1502,1.332,-0.60041,0.818,-1.923,0.1998,0.59734,-0.41578,-0.33832,-1.1681,-0.35624,0.54134,-0.41674,0.40195,0.18267,0.050351,0.26625,0.37127,-0.21283,0.10999 -1.1058,1.6723,1.3995,1.4857,-1.6888,0.057631,0.84314,-0.19898,-1.0985,0.28059,0.63639,0.8255,-0.69316,-0.60596,0.51609,0.64398,0.52529,0.4814,0.76696,0.064435 -1.5853,2.4535,-0.10355,2.1526,-2.8723,-0.25479,1.7101,-0.45234,-1.4038,-0.49259,0.24282,1.3629,-0.087015,-0.0048373,0.78066,-0.1451,-0.24658,0.41634,-0.14297,-0.18407 -1.2417,1.1361,-0.66766,2.3626,-2.6309,0.52941,1.2902,-0.04735,-0.65482,-0.60591,-0.73235,0.90706,-0.20882,0.15972,-0.29737,-0.17739,0.51004,0.27886,-0.805,0.28519 -1.8632,1.6577,-0.68257,-0.12433,-2.5418,-0.088936,1.0413,-0.17159,-1.147,-1.1425,0.21553,-0.55117,-0.003901,1.0732,0.26093,0.22646,1.1684,0.53686,0.10368,-0.012233 -0.53514,1.1877,-0.55094,1.4575,-1.9549,0.2159,0.92251,-0.17064,-0.56755,-0.48406,-0.68879,1.1036,0.16679,0.22022,-0.3958,-0.36205,0.099197,0.0835,-0.32334,0.18823 -0.27764,0.74093,-0.41199,1.5309,-2.0699,0.50251,0.82724,-0.41073,-0.87851,-0.81524,-0.57077,0.72875,0.26534,0.1964,-0.70101,-0.32049,0.2154,0.10896,-0.17296,-0.14404 -0.61669,0.57101,1.4549,2.143,-2.5086,-0.3159,0.85722,-0.84834,-1.3436,1.0043,0.33578,0.20114,-0.34464,0.15297,-0.29409,-0.036081,0.019037,0.59833,0.10363,-0.65384 -0.20841,0.7915,-0.25187,1.5579,-2.0716,0.78917,0.73368,-0.35769,-1.0564,-0.75835,-0.33362,0.83326,0.12974,0.13047,-0.73463,-0.20741,0.13999,0.23784,-0.13819,-0.17481 ================================================ FILE: mnist_csv/Xtrain.txt ================================================ -2.5633,-0.62572,0.9354,1.6618,-0.97179,0.3452,-0.086273,0.87996,-0.46192,0.00062521,0.4244,-0.30342,-0.41417,-0.57815,1.1077,-0.21329,0.154,0.11203,0.18448,-0.093481 -3.4637,-0.88703,0.74867,1.4345,-1.1526,0.75139,0.50723,-0.40091,-0.1255,0.20046,-0.039145,-0.64153,-0.26893,-0.80914,1.0531,-0.17146,0.24931,0.32698,0.19354,-0.47485 -2.0966,-0.25018,0.042457,1.9007,-2.52,0.77663,0.79751,0.24791,-0.2292,-0.37454,0.28623,-0.92112,0.13,-0.68851,0.67607,0.38099,-0.33922,-0.095522,-0.28631,-0.28957 -1.6135,-0.5942,1.5332,1.4663,-0.49371,0.57962,0.018415,0.77533,-1.6506,-0.24357,0.78662,0.26431,-0.07185,0.062487,-0.30933,0.30549,0.3462,-0.50883,0.1399,0.52282 -2.9356,-1.2356,-0.51063,0.046622,-0.16494,-1.4683,1.5013,-0.36378,-0.42991,-0.54596,0.88328,0.87492,-0.065224,-0.57691,-0.38417,0.58898,-0.97846,0.57542,-0.047799,-0.094497 -4.0263,-0.96807,0.75996,2.724,-0.14465,-0.077638,0.5657,-0.77676,-1.1641,-0.50154,0.25196,0.14318,-0.43215,-0.20554,-0.076072,-0.015377,1.0078,0.06351,0.96108,-0.39936 -5.0891,-0.64209,-0.7486,1.3494,-0.3626,-1.1144,2.084,-1.4247,-1.5473,-0.48028,0.40631,0.40376,0.15505,-0.64653,-0.090916,0.62909,-0.22876,0.86306,-0.085747,0.031134 -3.5264,-0.38759,-0.6753,-0.001241,-0.48224,-1.143,2.2922,-0.72716,-1.52,0.075687,0.26208,0.41196,-0.34666,-1.3307,0.42261,0.56815,-0.16468,0.65497,-0.44499,-0.28946 -4.6369,-0.65609,-0.12027,1.9549,0.13187,-1.062,1.2602,-1.8696,-1.3119,-0.94539,0.2012,0.6394,-0.23581,-0.1418,-0.77214,0.59345,-0.051728,0.9167,0.32325,-0.011969 -3.8666,-0.66834,1.8361,2.0643,-0.7928,0.48488,0.28274,0.76064,-1.3391,0.045211,0.11991,0.082976,-0.52784,-0.29964,0.84911,-0.06749,0.37721,0.22235,0.2258,0.073934 -2.4246,0.067623,0.2688,2.098,-1.4084,0.1152,0.54797,0.29192,-1.0523,-0.20957,-0.57328,-0.73263,-0.8021,-0.69488,0.65346,-0.51098,0.85079,0.19154,0.051604,-0.41445 -3.8331,-1.0327,1.5066,1.8019,-0.18653,0.98736,0.17381,-0.41622,-1.4183,-0.44788,0.26162,0.51708,-0.49407,0.28995,-0.54015,-0.13046,0.36479,-0.055512,1.1469,0.057486 -4.586,-0.98762,1.2184,1.4689,-0.33383,-0.22827,0.93798,-1.4516,-0.44768,-0.21687,-0.59074,0.792,-0.50363,0.23878,-0.29289,0.10612,0.20819,0.56624,0.49966,-0.36803 -4.9067,-0.83902,-0.61447,0.29024,-0.94471,-1.626,2.3294,-0.50867,-0.82109,-0.30486,0.29031,0.44641,-0.21344,-0.50571,0.94514,0.13867,-0.37041,0.25786,-0.082971,-0.36287 -3.9517,-0.082298,2.1304,2.562,-1.7973,0.35076,0.64268,1.2479,-1.2834,-0.15093,0.13969,0.23128,-0.48844,-0.21891,0.53527,0.2429,0.3831,0.66917,0.11954,0.32342 -1.8683,-0.62152,-0.5997,0.62327,-0.0894,-1.26,0.38953,-0.5668,-0.0565,-0.54644,1.1178,0.21214,0.06754,-0.075128,-0.7526,-0.067903,0.083469,0.10115,-0.073121,0.7626 -3.1027,-0.3874,1.5573,1.73,-0.79035,0.33979,0.66442,0.7413,-0.76501,-0.055325,-0.33581,0.040146,-0.76352,-0.10227,0.72213,-0.26961,0.52762,-0.014013,0.12186,-0.45764 -4.2367,-0.34394,2.4203,1.1322,0.090594,0.14785,1.3633,-0.38842,-1.3442,-1.0709,-0.077364,0.77287,0.40277,1.2961,-0.23783,0.20357,0.14952,0.71953,0.26126,0.31303 -4.9112,-0.10639,0.87488,0.41765,-0.89584,-1.0862,2.9561,-0.9871,-1.9143,-1.1366,-0.064877,0.42757,0.25627,-0.2608,0.010478,0.53747,-0.0022215,0.76225,-0.24404,-0.089485 -2.2137,0.063032,1.5451,0.45092,-0.28186,-0.073042,0.68861,0.89121,-1.5867,0.16421,-0.50479,0.79937,0.0016187,-0.17967,-0.20919,-0.0028566,0.8423,-0.20387,-0.44886,-0.42979 -4.1611,-1.1077,0.48004,0.57409,0.22236,-1.3979,1.2504,-0.7023,-0.19346,-1.0917,0.25568,1.3267,0.38172,0.9246,-0.11775,0.02315,-0.56469,0.44098,0.077716,-0.15607 -3.9294,-0.35425,1.9557,1.6086,-0.71494,0.35163,0.74461,0.39293,-1.0637,-0.28477,-0.19938,0.039634,-0.24983,0.020561,0.70817,0.19255,0.058111,0.80131,0.12231,-0.12633 -1.0461,0.11692,0.89035,0.3509,0.089828,0.060719,0.37395,0.14897,-0.93335,-0.28271,-0.21052,0.3047,-0.060344,0.017055,-0.39064,0.4327,0.33497,0.077693,-0.079149,0.0052685 -3.1278,-0.68028,-0.18401,0.16076,-0.15555,-0.66816,1.6371,-0.46781,-0.27033,-0.78933,-0.25786,0.72472,0.45199,0.65927,-0.096821,-0.3351,-0.53013,1.0934,0.1987,-0.23383 -3.7203,0.26861,-0.79329,-0.20838,-0.96096,-1.3544,2.6594,-0.91574,-1.6674,-0.28377,0.15933,0.57549,0.079758,-1.237,0.21755,0.64521,-0.48338,0.20183,-0.37391,-0.3638 -4.1161,0.84434,3.261,0.26867,-1.709,-0.082918,0.24368,-0.71019,-1.3239,-0.85887,0.71571,0.63287,0.40503,0.73954,-0.38552,0.48118,1.2257,0.2296,-0.19024,1.0488 -2.3783,0.10298,2.2192,1.2551,-0.85219,-0.12831,0.20121,0.58619,-2.3033,0.43679,0.65734,0.8334,0.037795,-0.02205,-0.35999,1.068,1.0904,-0.27468,-0.4646,0.12073 -4.5481,0.24735,-0.58686,1.2325,-1.8458,-0.82424,1.4286,-0.10025,-0.782,-0.029358,-0.33767,-0.38879,-0.27537,-0.063458,1.6721,0.099382,0.096337,-0.094624,-0.31761,0.18872 -3.2836,-0.55891,0.68464,1.572,-2.209,0.93255,1.03,0.090017,-0.73857,0.39198,-0.31794,-1.1137,-0.37258,-1.1673,0.85758,-0.44096,-0.15738,0.54394,0.038763,-0.20373 -2.3016,0.0093755,-0.51745,1.0671,-1.8388,0.19185,0.7651,0.25896,0.0078447,-0.063764,-1.0949,-0.15511,-0.64128,0.16722,0.80627,0.28505,0.5405,0.036179,-0.27611,-0.33055 -3.4862,-0.68684,2.2262,2.0035,-0.49763,0.17153,0.6209,0.55435,-1.6807,-0.54233,0.10423,0.59942,-0.59528,0.62313,-0.63119,-0.23872,0.80135,0.24568,0.22584,-0.01504 -4.6677,-0.69083,-0.25639,0.2732,-0.44017,-1.4025,1.9604,-1.332,-0.85437,-0.95002,0.068182,0.52355,0.077757,0.0012836,0.48156,0.20334,-0.68627,0.51207,-0.08787,-0.12436 -4.0135,-0.0099171,0.018917,0.27895,-0.34686,-0.85953,1.9562,-1.1613,-0.95447,-0.91396,-0.55411,0.81132,-0.067201,0.25814,0.1228,0.23964,-0.47839,-0.12403,-0.49286,-0.33172 -3.2557,0.33705,0.070936,2.1663,-3.1,0.60496,2.0234,0.44041,-1.0888,-0.14243,0.18609,-0.60222,0.41781,-0.53619,1.1068,0.81958,-0.16755,-0.42237,-0.44888,0.34234 -5.0953,-0.72162,1.7775,2.0239,-0.3407,0.48621,1.0366,-0.44431,-1.6811,-0.87444,0.071681,0.76262,-0.38727,1.0069,-0.067948,0.21402,0.49412,0.48293,0.60629,0.17207 -5.0786,-0.014657,0.3009,1.6706,-0.93225,-1.2416,1.2872,-0.44832,-1.3835,0.04324,-0.62345,0.23105,-0.30915,0.027245,1.0784,-0.29644,0.62524,-0.28784,0.015835,-0.39636 -2.2504,0.33876,1.9239,0.34433,-0.1193,0.33627,0.73547,-0.38799,-1.3677,-0.55948,0.12299,0.19595,-0.22066,0.31713,-0.74662,0.36436,0.75641,0.18124,-0.47242,0.46574 -2.6469,-0.11567,-0.97523,-0.19942,-1.2063,-0.64171,1.2195,-0.50287,-1.0231,0.64079,-0.08008,-0.041587,-0.53583,-0.85169,0.6684,0.51307,-0.0048968,0.080996,-0.16182,0.10863 -1.782,-0.43267,-0.64575,-0.034397,-0.21194,-1.1158,0.50084,-0.39011,-0.46571,0.10813,0.69528,0.33107,-0.36935,-0.7947,0.18981,0.51762,0.0080103,0.20188,-0.55523,0.29853 -4.2809,-0.53398,1.3207,1.6204,0.1591,0.085008,0.95499,-0.97312,-1.6357,-1.142,-0.6404,0.69188,-0.32509,0.78392,-0.66165,0.089702,-0.093305,0.45953,0.7753,0.302 -3.5855,-0.11981,-0.30451,-0.46982,-0.72353,-0.95026,1.5401,-0.64033,-0.79263,0.20695,-0.7547,0.72196,-0.11738,-0.34534,0.85163,0.53813,-0.23581,0.23274,-0.14064,-0.01876 -3.598,-0.58321,0.11168,1.0641,-1.3097,0.40343,0.72299,-0.68215,0.22378,0.26412,-0.71131,-0.19988,-0.3472,-0.29833,1.2026,0.15305,0.43151,-0.37775,-0.0043081,-0.51939 -4.8945,-0.70711,0.51871,1.4179,-1.261,0.3691,0.82537,-1.3214,-0.49632,-0.1988,-0.50397,-0.080876,-0.21716,-0.42447,0.86631,0.15944,0.3082,0.15755,-0.042699,0.013961 -4.2638,-1.2643,-0.99224,0.81894,0.17668,-2.3664,0.7828,-1.1317,-0.88631,-0.66036,1.6117,0.82078,-0.47397,-0.14907,-0.5172,0.15785,0.27727,0.36458,-0.086301,0.859 -3.2194,-0.67173,-0.61897,0.56439,0.00026006,-1.5481,0.64348,-1.139,-0.42296,-0.3039,-0.028931,0.95461,-0.46789,-0.29077,-0.062203,0.89776,0.20982,0.53152,-0.37521,0.026696 -3.8316,-0.72435,-0.89669,0.64655,-0.32088,-1.7196,1.1742,-1.2566,-0.62542,-0.34196,0.34157,0.99326,-0.64971,-0.64633,-0.087096,1.0947,-0.045669,0.47509,-0.63369,-0.1642 -2.8442,-0.065561,2.3798,2.2586,-1.652,0.37182,0.65225,1.1174,-0.60483,0.15668,0.96713,0.30759,-0.51019,-0.24685,0.043808,0.2098,0.28622,0.58295,-0.3703,0.2231 -3.9531,-0.71378,-0.39469,0.38262,-0.58318,-0.75542,0.92847,-0.57315,-0.16862,0.082467,-0.39219,0.8781,-0.29735,-0.14941,1.2722,0.60885,0.29813,-0.13034,0.13429,-0.16998 -4.1183,-1.0926,0.91142,2.563,-0.56544,0.11023,0.51815,-1.0314,-1.5267,-0.37734,0.20454,0.091106,-0.49059,-0.85414,-0.30862,-0.099914,0.73296,-0.16146,0.67979,-0.22375 -3.3232,0.17402,-0.7224,0.0066392,-1.3529,-0.19975,1.7616,-1.0421,-0.88418,0.47136,-0.58477,-0.36261,-0.42013,-0.50468,0.67857,0.042432,0.31985,0.23853,-0.1914,-0.35971 -2.8683,-0.29978,0.11503,1.703,-0.9687,0.34115,0.80485,-0.74645,-1.0032,-0.07804,-0.28241,-1.0031,-0.47307,-1.161,0.31646,-0.49981,0.79365,-0.37694,-0.015862,-0.33637 -4.182,-0.75148,-0.74392,0.81661,-0.51633,-1.3639,1.0668,-0.29331,-0.23388,-0.19934,0.08629,0.42257,-0.33168,0.24451,1.0141,-0.008523,0.51351,0.33461,0.026734,-0.57164 -2.4253,-0.11225,-0.40676,0.90077,-2.515,0.52942,0.91449,-0.12289,0.075583,0.41542,-1.2877,-0.15141,0.11623,-0.10039,0.67539,-0.43004,0.31414,0.15707,0.28038,-0.40211 -5.1626,-0.47715,-0.38014,1.4408,-0.79502,-1.2439,0.75159,-1.1032,-0.39385,-0.417,0.36381,0.51578,-0.26146,-0.027419,0.93142,-0.025543,0.75031,-0.34901,-0.01906,-0.017354 -4.2348,-0.14063,0.27607,1.3027,-3.0851,0.85368,2.0225,0.48773,-0.94164,0.26751,-0.65403,-0.51799,-0.26943,-0.66,0.77617,0.35625,0.29281,0.0020759,-0.13657,-0.45546 -1.7463,-0.34832,1.111,1.5144,-1.1496,0.40607,0.30381,1.0806,-0.74768,0.19058,0.24822,-0.23357,-0.73297,-0.66937,0.64582,-0.030474,-0.20835,0.077317,-0.31493,0.36973 -2.6696,0.2012,0.65399,1.5463,-1.0671,0.51954,0.059448,-0.55821,0.12087,-0.15129,0.18648,-0.17563,0.063315,0.032899,0.69962,-0.28928,0.65171,-0.60401,0.075172,0.35475 -2.5706,0.15913,0.6196,-0.072156,-0.093072,-0.99528,2.2412,-0.37803,-1.6748,-1.3063,-0.071517,0.42498,0.62972,0.16163,-0.32871,-0.29319,-0.67382,-0.06539,-0.1944,-0.34067 -3.3761,-0.84291,-0.70171,0.46638,-0.35715,-1.2153,0.85127,-1.1497,-0.29192,-0.061237,-0.20528,0.77054,-0.56878,-0.64654,0.30405,0.9303,0.34881,0.11909,-0.32269,-0.32915 -3.4678,-0.8733,-0.65543,0.41644,-0.41191,-1.6027,2.3168,-0.53878,-0.74222,-0.83694,0.7156,0.54764,0.011401,-0.55192,-0.52945,0.36477,-1.3722,0.23009,0.16495,-0.13582 -3.9866,-0.50653,0.48622,2.1215,0.16442,-0.64846,0.78652,-1.0121,-1.6029,-0.60672,-0.44986,0.19802,-0.74016,-0.29835,-0.031227,-0.18867,0.76724,0.56264,0.7314,-0.44558 -4.0565,-0.13853,-0.85614,1.579,0.042893,-1.9464,1.6923,-1.1396,-2.2459,-0.97319,0.35057,0.03778,-0.040747,-0.66034,-0.16349,-0.12804,0.57821,0.3463,-0.24894,0.02398 -4.4304,-0.42478,0.17399,1.3644,-0.16089,-1.13,2.442,-0.83654,-2.6252,-0.57687,-0.52085,0.86717,0.41639,-0.37188,0.096927,-0.19112,0.032988,0.87681,-0.39484,-0.71707 -2.6333,-0.67637,1.0154,1.7013,-0.568,0.79709,0.77834,-0.020929,-0.79969,-0.30608,0.086441,-0.28678,-0.33692,-0.67252,0.5946,-0.075623,-0.014157,-0.18628,0.40077,-0.41531 -2.414,0.02578,-0.71493,0.69345,0.17393,-1.5564,1.6596,-0.59957,-0.99956,-0.75863,0.40451,0.27984,0.23276,-0.37856,-0.41197,0.25482,-0.92601,0.37202,-0.17583,-0.3853 -4.3494,-1.0395,0.55377,1.7078,0.19513,-0.30184,1.1825,-1.3642,-0.77969,-0.68009,0.049653,0.77516,-0.11142,0.48172,-0.28383,-0.007333,0.37817,1.3819,0.58159,-0.42316 -4.7586,-0.19862,1.455,2.2084,-1.8182,0.29083,0.77895,0.31724,-0.53168,-0.069425,-0.38484,-0.1975,-0.49947,0.018424,0.85507,-0.38225,0.41251,0.79326,0.048593,-0.093808 -3.2338,-0.079223,1.702,2.022,-1.2582,0.58307,0.62674,0.26554,0.051497,0.22677,0.47293,-0.24212,-0.25987,-0.043428,0.85516,0.070331,0.19924,0.37714,-0.3386,0.035531 -3.4387,-1.2712,-0.46084,1.8138,0.3236,-1.6109,1.2969,-0.65848,-1.3909,-1.1991,1.1916,0.81461,0.15042,0.065398,-0.62202,0.13935,0.1254,0.88609,0.67795,0.14114 -2.1206,-0.08986,1.9952,1.8001,-0.53873,-0.32003,0.33124,1.2562,-2.0162,0.32686,0.69996,0.74322,-0.24699,0.5521,-0.12414,0.69783,1.367,-0.34266,-0.13656,-0.0067331 -1.8781,0.30627,1.2516,0.89591,-1.3326,0.5236,0.53506,0.75978,0.13964,0.09553,-0.28976,-0.1137,-0.48431,-0.30413,0.5051,-0.013903,-0.24496,0.39235,-0.53653,0.12915 -2.6193,-0.25969,1.9012,1.1363,0.053301,0.24588,0.69074,-0.091381,-1.6043,-0.61563,-0.13374,0.52612,-0.5149,0.28437,-1.0265,0.46514,0.15184,0.117,0.057723,-0.17775 -2.7426,0.16102,0.39571,1.8841,-2.241,0.8677,0.80657,0.04313,0.062066,-0.20028,0.021814,-0.89314,0.21267,-0.70509,1.1638,0.21558,-0.096455,-0.43143,-0.40068,0.058301 -4.061,-0.17967,2.0816,1.9209,0.19148,-0.037142,0.98216,0.073446,-1.3753,-0.57753,0.26257,0.79371,0.013781,1.3948,0.18134,0.17551,0.43426,0.42946,0.687,0.093767 -4.1703,-0.24389,1.852,1.6766,-0.84737,0.037037,0.7771,0.22852,-0.60422,-0.22783,-0.37171,0.33791,-0.61395,0.55294,0.48683,-0.33759,0.36131,0.80014,0.056665,-0.16006 -3.667,-0.66195,2.1374,2.5721,-3.1234,0.35465,1.3096,1.233,-1.8065,0.057816,0.24477,0.79859,-0.39812,0.013384,0.55989,-0.79665,0.88802,0.26582,-0.50064,-0.31329 -4.0196,0.69473,0.79384,-0.1974,-0.20523,-1.3798,2.7871,-0.58772,-2.0706,-0.93104,0.3522,0.29907,0.61555,-0.25488,0.16431,-0.23155,-1.0393,-0.029808,0.22206,-0.063055 -2.7918,-0.38002,0.38256,0.66365,-0.62095,0.078399,0.32173,-0.46682,0.18559,0.25961,-0.71088,0.38697,-0.091105,0.030114,0.92046,0.23202,0.3764,-0.43729,0.24112,-0.05732 -2.2948,0.037706,0.36335,0.011706,0.14813,-0.93845,1.7296,-0.087563,-0.88367,-0.98075,0.0033689,0.6423,0.34422,0.45377,-0.5503,-0.16285,-0.94608,-0.20759,-0.11884,-0.41792 -3.9535,-1.0124,1.1877,1.8431,-0.53083,0.69018,0.30391,-0.31671,-0.9071,-0.3308,0.2713,-0.20562,-0.54144,-0.35897,0.59266,-0.17855,0.38645,0.28545,0.54608,-0.016291 -2.6822,-1.5181,-0.79206,0.57511,-0.22455,-1.3709,0.9398,-0.33842,0.031808,-0.11752,0.67495,0.62942,-0.11042,-0.56134,-0.092815,0.7694,-0.15995,0.61006,0.16255,-0.03571 -4.5608,-0.42459,1.701,1.6655,-0.28141,0.2754,0.66485,-0.45741,-0.11009,-0.55436,0.14582,0.912,0.071978,1.6001,0.26148,-0.12624,0.77414,0.46156,0.27821,-0.065702 -3.9561,-0.60066,1.2192,2.2614,-0.47374,0.20776,-0.10378,-1.1267,-1.2941,-0.45589,0.19665,0.43719,-0.57834,-0.36828,-0.2002,-0.11231,0.39746,-0.12421,1.3331,-0.10903 -2.5751,0.17589,-0.067568,1.6689,-2.1852,0.37439,0.41789,0.17818,-0.6612,-0.17391,-0.46833,-1.498,-0.74192,-0.62605,0.46863,0.00087186,0.34263,0.10842,-0.51127,-0.23023 -4.2027,-1.0324,1.3891,1.7851,-0.25285,0.60649,0.26704,-0.86983,-0.37154,-0.50843,-0.082923,0.62592,-0.50546,1.0183,-0.19365,-0.26182,0.69485,0.46586,0.90669,-0.053025 -4.3932,-0.63305,-0.21792,1.6389,-0.20575,-0.7071,0.87284,-1.6526,-0.4509,-0.52087,0.012228,0.50342,-0.3989,0.3318,0.044227,0.031456,0.79041,-0.32421,0.49706,-0.25474 -2.8595,-0.24921,-0.12467,2.1156,-1.7275,0.99438,0.62822,-0.046067,-1.092,0.070989,0.20413,-1.2167,-0.32796,-1.1054,0.5476,-0.33182,0.72943,-0.24057,0.23383,-0.41108 -2.0244,-0.067015,-0.643,0.42189,-1.0879,-0.45712,0.94884,-1.0558,-0.71154,0.32276,0.040753,-0.4763,-0.44064,-1.0637,-0.25929,0.41668,0.24069,-0.79351,-0.62653,-0.048415 -4.4092,-0.68201,-0.97972,1.8147,-0.38851,-1.9707,1.7506,-0.53123,-2.0205,-0.33148,0.82854,0.11875,0.16685,1.7175e-05,0.2352,-0.38077,0.83862,0.53638,0.15459,0.2352 -2.4985,-0.21492,-0.30159,1.2775,0.20627,-1.1962,0.66579,-0.48012,-1.5953,-0.18272,1.3783,0.12606,-0.12162,-1.0628,-0.98881,0.38929,-0.16016,0.2078,-0.035338,0.25905 -2.843,-0.63405,0.54026,0.8991,-0.013255,0.30059,-0.081795,-1.2379,-0.8148,-0.64676,0.29765,0.19783,-0.53911,-0.37137,-1.3341,-0.28351,0.96793,1.0441,0.039802,0.35912 -2.9129,-0.31881,0.8821,1.5747,-1.5221,0.59907,0.38419,0.21389,0.39702,0.088166,-0.35973,-0.31463,-0.46777,-0.53346,0.92802,-0.15537,0.19809,0.057063,-0.27833,-0.2701 -3.7176,0.20098,2.7787,2.3418,-1.17,-0.11077,0.67826,1.1879,-1.0677,-0.2927,0.56379,0.35993,-0.37681,0.62342,-0.10593,0.25596,0.83613,0.68891,-0.15453,0.10668 -4.8935,-0.91179,1.2165,0.73365,-0.18782,-0.42832,1.4082,-1.2891,-0.34419,-0.65517,-0.40433,1.1267,0.11727,1.0378,-0.43966,0.077338,0.088531,0.50927,0.0042619,0.015609 -3.4707,-1.093,-1.1575,-0.18308,-0.55796,-1.4241,1.5178,-0.61082,-0.55241,0.10181,0.38345,0.71701,-0.48242,-0.94171,0.63064,0.94466,-0.36026,0.62396,-0.18859,0.0746 -6.0193,-0.54265,0.53197,1.003,-0.68898,-1.3296,2.593,-0.65382,-1.1813,-0.77913,0.5266,0.50313,0.5321,0.14246,0.26311,0.10492,-0.0044476,0.92216,-0.092736,-0.1106 -2.7654,-0.81031,0.039435,0.27806,0.26205,-0.7936,0.55762,-0.4576,-0.65238,-0.29094,0.097898,1.1823,0.58193,-0.047145,-0.26674,0.71868,-0.80492,1.4527,0.39468,0.53843 -2.674,-1.0461,-0.2953,0.6683,-0.19445,-1.0225,1.0486,-0.29405,-0.52185,-0.23156,1.0888,0.3874,0.29113,-1.0861,-0.58133,0.60445,-0.61313,0.7666,-0.14291,0.24688 -3.9107,-0.88199,1.5286,2.4281,-0.092569,0.54745,0.27629,-0.16555,-1.8464,-0.43403,0.2852,0.70015,-0.41871,0.36002,0.00030873,0.11143,0.70148,0.16241,1.259,-0.020427 -4.4372,-0.53046,0.32599,0.73709,-1.1107,-0.15242,0.99107,-0.90591,-0.046842,0.32882,-0.76476,0.056782,-0.15583,-0.14093,1.3895,0.082793,0.36157,0.54376,-0.28099,-0.25502 -3.0659,-0.91762,2.6254,1.7535,-1.5921,-0.33741,0.28618,1.5522,-2.2594,-0.15285,0.68223,1.4789,0.44278,0.41346,0.24673,0.27977,0.78787,-0.93463,-0.10632,0.19501 -3.7144,-0.57152,0.070707,1.1023,-0.17709,-0.5429,0.96544,-0.8275,-0.089484,-0.58735,-0.14497,0.8303,-0.49695,0.76408,0.51295,-0.051049,0.57,-0.41028,0.20955,-0.67556 -4.262,1.0256,2.3725,1.5226,-2.0795,-0.45227,1.8798,0.39956,-2.5394,-0.54731,0.23076,0.9678,0.46069,0.86193,-0.35055,-0.08941,1.3424,0.37809,-0.8674,-0.18913 -4.8526,-1.1381,2.3434,1.9749,-1.0178,0.6244,1.2105,0.14804,-2.0777,-0.60207,0.59778,0.99593,-0.16164,0.13003,-0.14373,0.054527,0.70025,-0.37313,0.19195,-0.39383 -1.3192,-0.21147,0.06797,1.3277,-1.7805,0.72516,0.67644,0.31062,-0.27062,-0.32171,-0.26575,-0.54626,-0.19061,-0.60176,0.1505,0.26784,-0.20768,0.068917,-0.13434,-0.2098 -4.5268,-0.90504,2.2702,1.8584,-0.23088,0.71249,1.0433,-0.15703,-1.6971,-0.77584,0.18505,0.90764,-0.6041,0.92585,-0.50979,0.11237,0.71087,0.19597,0.47242,0.11424 -1.4016,-0.069934,0.40628,1.6983,-2.6332,0.78406,1.4915,0.60297,-0.75597,-0.69824,0.13248,-0.5944,0.17544,-0.40625,0.61732,0.064528,-0.32099,0.22257,-0.078751,0.016489 -4.3051,-1.0946,0.33633,1.3436,-0.0034961,-1.0651,1.748,-1.0167,-0.63506,-1.1945,0.18887,0.70891,0.29348,1.2242,-0.65014,0.044331,-0.68819,0.6483,0.84925,0.13438 -4.335,-0.04845,0.22615,2.3628,-1.1823,0.064083,0.83538,0.19247,-0.90099,-0.11476,-0.030927,-0.28174,-0.61447,-0.28288,0.70761,-0.3646,1.3991,-0.012606,0.58309,-0.69683 -4.7657,0.44215,2.2657,0.906,-0.70996,0.0023955,1.8163,-0.41689,-2.3625,-1.0247,0.20546,0.40927,0.20739,0.70987,-0.12278,0.48167,0.47531,-0.074503,-0.65403,0.37531 -2.3943,0.040264,1.0323,0.27429,0.014181,0.20153,0.67562,-0.57704,-0.23956,-0.37824,-0.69286,0.96629,0.1602,0.7649,0.15783,0.16369,-0.20679,0.22037,-0.023877,0.22208 -2.4787,-0.84427,-1.4009,0.80943,-0.39924,-1.748,1.6727,-0.36509,-0.59789,-0.26407,0.99744,-0.026367,-0.42591,-0.74728,-0.38323,0.22306,-0.26627,0.080577,-0.38724,-0.12172 -3.4942,-0.011266,2.5493,2.132,-0.47681,0.12401,0.39357,1.0842,-1.5707,-0.17605,0.77888,0.76205,-0.098996,0.61485,-0.098107,0.64896,0.69999,0.097135,-0.1404,-0.13484 -2.8819,0.45236,-0.83322,0.71739,0.16787,-2.0031,1.5543,-0.6399,-1.374,-0.75222,0.82047,0.31129,0.013652,0.056158,-0.82276,-0.65346,0.34509,0.020934,-0.26153,-0.47139 -4.1689,-0.36696,-0.57742,0.73775,-1.6882,-0.47551,1.8162,-0.98153,-0.84572,0.35656,-1.0114,0.32179,-0.9966,-0.33869,0.15959,-0.37232,0.58865,0.87005,-0.35444,-0.2767 -4.8495,-0.10192,1.9589,2.1784,-0.51345,0.08362,0.83942,-0.13485,-0.55776,-0.71764,0.4054,0.62764,-0.20887,1.3482,0.57315,-0.0091388,0.62537,0.56483,-0.029404,0.18408 -5.1622,-1.1093,-0.63145,0.89943,-0.24773,-1.5576,1.3922,-0.58286,-0.27893,-0.64208,0.51059,0.76814,-0.031378,0.59847,0.78585,0.021085,0.18632,0.50385,0.16361,-0.35862 -2.2839,-0.17662,1.7821,2.2579,-1.8416,0.43676,0.53499,0.84324,-0.45951,0.098306,1.0891,-0.19331,-0.19052,-0.84055,0.69738,0.27551,-0.42956,0.052784,-0.39828,0.57485 -4.0124,-1.2975,0.58067,1.3463,-0.74461,-1.028,1.4282,-0.40542,0.28034,-0.66806,-0.15008,0.2999,-0.079749,0.71999,0.6775,-0.19114,-0.17949,0.34176,0.089334,-0.13829 -4.35,-0.73768,0.61717,1.3862,-0.26448,-1.2541,0.88383,-0.43394,-0.5865,-0.79485,-0.98675,1.4577,0.0099947,1.2676,-0.027535,0.13698,0.49657,0.093074,0.88642,-0.30726 -4.0134,-1.2514,-1.1821,1.0535,0.022362,-2.1975,0.78643,-1.2593,-0.52864,-0.79406,1.2249,0.85318,-0.25943,-0.091945,-0.51304,0.53458,0.1753,0.59559,0.024311,0.49981 -3.6931,-0.4411,1.6291,2.0106,-2.0243,0.92723,1.4421,0.93425,-0.78116,0.12465,-0.22661,-0.32166,-0.58643,-0.60242,1.0003,0.11622,0.27621,-0.092168,-0.33027,-0.60335 -3.1641,0.5652,1.8866,0.78637,-0.1964,-0.61538,2.0754,0.0049651,-2.0848,-1.1263,-0.238,0.084329,0.68365,0.34088,-0.48536,0.22797,0.32098,-0.047772,-0.24154,0.036058 -3.8509,-0.67874,1.1339,1.4737,-3.0832,0.90378,1.9613,-0.56856,-1.9312,-0.093972,-0.48557,0.28276,-0.023933,-0.56041,0.94148,-0.20472,0.41473,0.10927,-0.11363,-0.3098 -3.9585,-0.562,-0.88941,1.6216,-0.54475,-1.7395,1.2069,-0.82489,-1.3866,-0.35894,-0.091067,-0.029736,-0.56523,0.043638,0.54788,-0.47298,0.98727,0.65144,-0.35032,0.078817 -4.1723,-0.4352,0.068028,0.85139,-1.7252,0.52083,0.69016,-0.74193,0.21402,-0.032431,-0.47557,-0.040555,0.01924,-0.13238,1.486,0.46067,0.5432,-0.59173,-0.2087,-0.02157 -3.3262,-0.029841,-0.7735,0.75282,-0.84925,-0.79919,1.277,-1.2425,-0.95799,0.07995,-0.037014,-0.55684,-0.60385,-0.94177,0.29153,-0.11337,0.64922,-0.11967,-0.7784,-0.31476 -3.4458,0.30839,0.5852,2.6054,-0.37578,-0.61229,-0.2328,0.19023,-1.1815,-0.10008,0.49481,-0.32491,0.26174,0.3626,0.49625,-0.12182,1.1476,0.85576,0.85548,-0.3568 -3.2734,-0.76039,0.042449,-0.20144,-0.069627,-1.5474,0.92308,-0.28492,-0.52066,0.13111,0.11779,1.1764,0.10335,-0.6704,0.56634,0.76096,-0.63293,0.95892,-0.13582,0.057285 -3.8119,-0.66423,2.4355,1.8009,-0.3121,0.63204,0.6645,0.29836,-1.3205,-0.47626,0.11185,0.54829,-0.061137,0.65691,0.039142,0.29264,0.5706,0.37109,0.30101,0.16504 -4.1026,-0.2459,1.9532,2.0458,-0.51515,0.044932,0.9592,0.30465,-1.854,-0.51474,-0.65909,0.82079,-0.37933,0.47671,0.1651,-0.17214,0.82746,0.4067,0.0085495,-0.26637 -4.1437,-0.50538,1.8619,2.254,-1.3848,0.50559,0.51044,0.54107,-0.57671,-0.19017,0.12912,-0.27246,-0.54116,-0.13577,0.90804,-0.32441,0.32154,0.19029,0.12507,-0.25456 -2.0304,-0.52484,1.2121,1.9393,4.0172e-05,0.080938,0.50358,0.6728,-1.908,-0.42131,-0.055983,0.68713,-0.14926,0.49866,-0.20723,0.1221,0.62868,-0.061037,0.77901,-0.12476 -4.7205,-1.0931,0.58287,1.3722,-0.44701,-0.47826,0.68982,-1.3645,-0.00040595,-0.26898,-0.50046,0.97869,-0.52919,0.21613,-0.051885,0.060368,0.65795,0.26775,0.45399,-0.47237 -3.5308,0.74795,1.7451,2.5034,-0.67306,-0.68136,0.91856,0.88416,-1.1351,-0.12082,-0.12474,0.46415,-0.19493,0.77768,0.6545,-0.17279,0.64781,0.50146,0.23867,-0.43801 -2.2768,-0.48571,-0.41274,0.29311,-0.81543,-0.2977,0.21291,-0.33523,0.048707,0.5217,-0.35486,-0.0023762,-0.25033,-0.48114,1.0476,0.45849,0.50605,-0.053774,0.053805,-0.013397 -2.1573,-0.97589,0.23937,2.156,-1.4213,0.65147,0.54154,0.11882,-1.5005,-0.26416,0.11568,-0.84881,0.071609,-0.84175,0.99891,-0.1711,0.68548,-0.13772,-0.19446,0.22792 -3.6283,-0.731,0.057326,0.42175,-0.031124,-0.96413,1.3452,-1.2388,-0.43947,-0.94197,-0.36096,0.79676,-0.078472,0.67063,-0.1126,0.27109,-0.59995,0.62259,-0.2689,-0.18836 -3.4751,0.53456,2.9753,1.3278,-0.76224,-0.67161,1.1503,0.10091,-1.755,-0.63787,0.74415,0.14407,-0.070406,0.49279,-0.33035,0.53838,1.3727,0.72699,-0.90337,0.22411 -2.1444,-0.043951,1.5016,2.7318,-2.6136,0.31513,1.122,0.56429,-1.0108,0.073907,0.51785,0.065286,-0.49992,-0.97177,0.30716,-0.035738,-0.14248,-0.094198,-0.54663,-0.35153 -3.0954,0.2262,0.57221,0.84376,-2.1373,0.54966,1.1199,0.5699,0.37558,0.52291,-0.60953,0.032658,-0.4357,-0.13261,1.4002,0.52346,0.127,-0.54493,-0.50967,-0.2021 -3.7482,-0.18864,1.0509,1.5289,-0.43405,0.13104,0.46667,-0.23324,-0.070297,-0.3701,-0.32191,0.28941,-0.45129,0.63936,0.98159,-0.29546,0.53041,0.26734,-0.050509,-0.44332 -2.0759,0.11686,0.96729,2.359,-2.4141,0.28894,0.75455,0.23733,0.15451,0.015853,0.21909,-0.49861,0.40391,-0.6937,0.72937,0.17558,-0.41816,0.0061234,-0.28634,0.29961 -4.4993,-0.8993,0.46555,1.2551,-0.13075,-0.11604,0.83146,-1.3712,-0.15011,-0.92601,-0.44529,1.1925,-0.23461,1.2615,-0.085185,0.093442,0.24328,0.70652,0.58697,0.28983 -3.2339,-0.41698,1.0361,1.9159,-1.6242,0.96271,0.67734,0.28169,-0.67642,-0.09465,-0.052162,-0.77867,-0.32704,-0.99368,1.3008,0.063414,-0.21599,0.12232,-0.24338,-0.36141 -3.7655,-1.6335,-0.85319,0.30953,-0.079208,-1.0398,1.1961,-0.36204,-0.053593,-0.49606,0.6576,1.2324,0.28595,0.49008,0.099814,0.53305,-0.35551,0.68291,1.083,0.42863 -3.0674,-0.22622,-0.24544,1.1756,-0.21297,-0.75476,0.31885,-1.5139,-1.0185,-0.26396,0.698,0.20545,-0.11004,-0.54867,-0.38246,0.41208,-0.072084,0.62082,-0.52283,0.87793 -2.6667,-0.081032,1.0123,2.3255,-2.286,0.81675,1.0256,0.99556,-0.88891,0.079183,-0.53959,-0.032854,-0.76966,-0.55237,0.78731,-0.39157,0.1667,0.38458,-0.51123,0.19075 -3.8912,-0.72589,-0.14717,1.29,0.017605,-1.0881,1.1659,-1.4067,-0.25871,-0.78088,-0.1165,0.62356,-0.47359,0.18633,-0.013788,-0.13622,0.073431,0.82252,0.23512,-0.59317 -3.3933,-0.65628,-1.1257,1.0717,0.0013061,-1.8936,0.81692,-1.2226,-0.45536,-0.79777,0.9117,0.747,-0.45226,0.24851,-0.58249,0.19983,0.51077,0.078379,0.2039,0.071164 -3.8489,1.0258,1.7284,-0.20519,-0.9786,-0.6635,2.3829,-1.1018,-2.0989,-1.7625,0.48513,0.22402,0.089094,0.36289,0.41627,0.074425,0.28186,-0.41902,0.13987,0.10801 -3.9155,0.84822,2.0304,0.53697,-0.84111,-0.29215,2.1379,-0.13079,-2.3853,-0.58927,-0.31535,0.40343,0.39454,0.09159,-0.46192,-0.15585,1.619,-0.40507,-0.99239,-0.49884 -4.4326,-0.25183,1.1008,1.1804,-1.2931,0.86597,0.37208,-0.55803,-0.61193,0.26406,-0.44465,-0.01701,0.38909,-0.34813,1.1497,0.27411,0.15294,-0.1305,0.10928,0.15687 -5.2661,-0.24217,-0.67783,0.97603,-1.4691,-1.2988,2.2678,-1.0374,-2.1681,0.0090338,0.11541,-0.23029,-0.35245,-1.2393,0.72947,0.074306,0.15242,0.2236,-0.12197,0.15129 -3.3291,-0.2573,2.5959,1.4538,-0.36704,0.43703,0.70703,0.61679,-2.1193,-0.38415,0.41071,0.66491,-0.28509,0.23578,-0.58239,0.55757,0.64808,-0.61809,-0.04992,0.0054137 -3.6872,-0.89383,-0.71633,0.40445,-0.64576,-1.5372,1.3001,-0.055349,-0.46738,-0.030605,-0.39407,0.50276,-0.36332,-0.28944,1.0173,0.12152,0.074884,0.73855,-0.10757,-0.45015 -3.0694,-0.30194,-0.37973,0.78937,-1.3098,0.24577,1.1255,-1.008,-0.42621,0.51235,-0.56505,-0.75351,-0.4537,-1.0302,0.49601,0.037831,0.55095,-0.13483,-0.24926,-0.70765 -4.9968,-0.065421,-0.10735,0.43931,-1.863,-0.11163,2.4275,-0.80248,-1.2725,0.006118,-0.47933,-0.019046,-0.1592,-0.71099,0.97281,0.41665,-0.066638,-0.25117,0.0039968,-0.58705 -4.0864,-0.28545,0.51959,-0.065123,-0.54658,-1.5199,2.7291,-0.021797,-1.3031,-1.2531,0.10615,0.496,0.34858,0.26451,-0.060302,-0.42098,-0.75447,-0.59961,-0.1773,-0.38059 -3.6545,-0.26379,0.052444,1.8327,0.4111,-1.6859,0.31481,-1.736,-1.1242,-1.0273,0.54343,0.36733,-0.58497,0.16838,-0.93155,-0.028003,0.57935,0.71227,-0.094303,0.14333 -4.0426,-0.65925,0.891,1.7466,0.0035548,-0.31905,1.2115,-0.89334,-1.1438,-1.076,-0.5975,0.7656,-0.65144,0.99982,-0.22466,-0.044904,0.2731,0.38911,0.64269,-0.51791 -3.0101,-0.17768,0.44106,1.6117,-1.0442,0.26501,0.61922,-0.49247,-0.10902,-0.020084,-0.48498,-0.48286,-0.5395,-0.59387,0.91654,-0.55004,0.53355,-0.63749,-0.083281,-0.53908 -4.5002,-0.13117,-0.72855,0.66514,-1.5448,-0.34863,1.8776,-1.1888,-1.002,0.23513,-0.59984,-0.081438,-0.44281,-1.0595,0.46507,0.44657,0.062346,0.026849,-0.22295,-0.36746 -3.1287,-0.14125,-0.88831,0.71148,-1.5594,-0.59581,1.1904,-1.3486,-0.83515,0.69845,0.12428,-0.73,-0.16379,-1.1152,0.087932,0.48848,0.010095,-0.5145,-0.59222,0.43275 -2.9391,-0.53353,2.2975,1.8811,-0.58817,0.25167,0.1971,1.4448,-1.6518,-0.12991,0.92592,0.80747,-0.19853,0.29009,0.24689,0.38313,0.58765,-0.56152,0.095384,0.2587 -2.9114,-0.61066,2.3513,1.9007,-1.2051,0.029914,0.27683,1.0405,-0.94738,0.064727,1.0537,-0.13131,-0.43221,-0.26424,0.33972,0.27808,0.21305,-0.1019,-0.60623,0.30512 -3.3407,-0.44702,1.8949,2.2366,-0.086949,0.69412,0.37929,-0.17478,-1.6018,-0.40964,0.25622,0.60111,-0.60995,0.62474,-0.3369,0.079396,0.60903,-0.32748,0.92722,0.32362 -4.0945,-0.33969,1.9984,1.7293,-1.2364,0.57923,0.93846,-0.33237,-0.38128,-0.23397,-0.17225,0.0024833,-0.36013,0.21346,0.86691,0.16217,0.22982,-0.20706,-0.27033,0.38236 -3.2171,0.14159,0.43667,1.6579,-2.7642,1.338,2.2675,0.51766,-1.0815,0.14165,-0.56152,-0.48331,-0.067639,-0.16383,0.87734,0.1267,0.28552,-0.48921,-0.17009,-0.0044312 -4.4415,0.37827,1.4717,0.59012,-0.50038,-0.47489,2.3376,-0.7689,-1.761,-1.1121,-0.78601,0.44207,-0.0059893,0.22416,0.010106,-0.072264,-0.035598,0.031377,-0.47624,-0.55555 -3.9137,-1.0066,-0.50138,1.0837,-0.25351,-1.4152,0.82821,-0.64449,0.1982,-0.49501,0.014235,0.80241,0.0070569,0.69086,0.61274,-0.20683,0.22084,0.7291,0.63207,-0.0623 -5.131,0.028757,0.67166,1.8,-1.1984,-1.6307,1.2361,-0.43896,-0.61364,-0.45251,-0.15109,0.99843,-0.072487,0.95971,0.26341,-0.49322,0.65338,1.2607,0.60132,-0.66922 -4.2101,-0.54974,-0.27437,0.43682,-0.32499,-1.2334,2.5227,-1.2059,-1.2108,-0.96304,-0.3913,0.71283,-0.17164,-0.26533,-0.15434,0.37794,-0.44757,0.93791,-0.58071,-0.82193 -4.3817,-1.1965,-0.31775,0.36406,-0.18155,-1.1656,0.88771,-1.1852,-0.32758,-0.19108,-0.094353,1.4418,-0.19341,0.10086,0.18777,0.94017,0.070759,0.72541,0.25789,0.33216 -2.5876,0.43351,-0.041008,-0.61123,-0.4969,-0.99282,2.2386,-0.6745,-1.1143,-0.96162,0.11836,0.33845,0.40466,-0.10348,-0.034386,-0.25677,-0.83018,-0.18388,-0.18694,-0.12609 -3.6984,0.46112,2.1479,2.2417,-0.55873,-0.20807,0.84256,1.5264,-1.6976,0.093601,0.21797,0.87518,0.38668,0.63148,0.25931,0.37512,0.98728,0.46491,0.34755,-0.51456 -3.6234,-0.36176,-0.28252,1.3229,-1.0337,-0.65468,0.74906,-1.4036,-1.1317,0.15149,-0.72928,-0.37479,-0.62696,-1.1452,0.52507,0.15133,1.0174,-0.22504,-0.47479,-0.16193 -4.0655,-0.50027,1.2915,2.0689,-0.41063,0.67315,0.8405,-0.24167,-0.7052,-0.38152,-0.070128,0.27504,-0.67316,0.31706,0.40328,-0.18309,0.65813,-0.13116,0.38771,-0.68818 -3.3667,-0.77938,-0.26831,0.43953,-0.13777,-0.59751,0.33349,-1.2219,-0.097412,-0.12375,-0.43929,0.80216,-0.064502,0.082169,0.30791,0.47022,0.56863,0.42299,0.25585,0.1526 -2.9766,-0.28839,-0.34755,0.77587,-0.77586,-0.33038,1.0349,-0.42845,-0.22321,-0.03927,-0.75904,-0.078214,-0.49403,-0.053837,1.0477,-0.41174,0.74934,-0.08458,-0.22812,-0.71934 -3.8689,-1.0882,-0.1458,0.66581,-1.5951,-1.3077,1.7884,-1.673,-1.4919,-0.83148,-0.26154,0.83843,-0.62338,-0.28373,-0.032243,0.88043,0.073475,0.7116,-0.10282,0.2929 -3.5849,-0.32951,0.70838,-0.10906,0.036177,-0.37337,1.2506,-0.973,-0.27088,-0.62212,-0.5782,1.2031,0.82178,1.1279,-0.50316,0.16959,-0.14496,0.23734,0.15829,-0.15174 -3.8021,-0.37357,0.094341,1.8555,0.35511,-1.2638,0.84331,-0.61867,-1.7875,-0.80067,-0.28736,0.20699,0.0019592,0.19236,0.36701,-0.086326,0.4941,1.029,0.68887,-0.11025 -2.9119,-0.40934,-0.6767,-0.12603,-0.64863,-0.63439,0.92128,-1.1173,-0.26788,0.31333,-0.34342,0.17595,-0.49677,-0.4292,0.808,0.35443,0.39672,0.39679,-0.81138,0.26655 -3.9837,-0.53786,0.378,1.3041,-0.64032,-0.17549,0.72066,-1.3575,-0.19237,-0.13858,-0.48895,-0.095251,-0.42056,-0.085684,0.98321,0.01847,0.28994,0.7733,-0.25252,-0.092743 -4.5105,-0.39042,1.0605,0.60059,-0.2938,-0.50376,1.5754,-1.1146,-0.5781,-0.8205,-0.85405,0.96361,-0.24035,0.42057,-0.11902,0.11665,-0.19892,0.50605,-0.43105,-0.73499 -2.8674,-0.56207,-0.91836,1.0041,0.035239,-1.8523,2.1205,-0.084646,-1.97,-0.64189,0.93455,0.37726,0.29015,-1.3316,-0.18218,0.34612,-0.23014,0.49216,-0.30772,-0.23666 -3.6667,-0.30636,0.48412,0.9033,-2.8202,0.66573,1.2738,-0.67959,-0.64013,0.24429,-0.46585,-0.79268,0.14466,-0.51052,1.4017,0.40275,0.18401,-0.60816,-0.13143,-0.56747 -2.9497,-0.0060611,0.18185,1.7429,-2.5788,0.6897,1.0511,0.13244,-0.23273,-0.34616,-1.1619,-0.65492,-0.62108,-0.2082,0.72431,0.28443,0.041419,0.55429,-0.4152,0.044058 -2.4376,-0.16033,1.2386,1.9606,-1.6875,0.74116,0.77206,0.71192,-0.36599,-0.15949,-0.15359,-0.59004,-0.7811,-0.86718,0.84924,0.010088,-0.49211,0.35824,-0.32268,0.046012 -4.604,0.049811,-0.50218,0.79555,-1.9498,-0.58959,1.9446,-0.53921,-1.0324,-0.071727,-0.41829,-0.55446,-0.43484,-0.30104,1.3294,0.15916,0.16317,0.17511,-0.41998,-0.10878 -2.2474,-0.82788,-0.26423,-0.00094625,-0.47748,-1.013,1.9707,0.022854,-0.76066,-0.31714,0.24948,0.23999,0.073262,-0.66201,-0.65618,0.27271,-0.8993,-0.14888,0.20374,-0.70017 -4.166,-0.68195,0.69005,1.7032,0.086857,0.15929,0.18232,-1.2675,-0.53232,-0.58961,0.043517,0.34859,-0.33923,0.82159,0.079539,-0.40829,0.92418,0.74921,0.72437,-0.010681 -4.2414,-0.46311,1.1826,1.8176,-0.49686,0.19134,0.31244,-0.43434,0.0016064,-0.43759,-0.13805,0.37907,-0.4002,0.68852,0.96506,-0.41356,0.67706,0.75944,0.20649,-0.050332 -4.7307,0.106,0.46468,1.0413,-0.20112,-1.3681,2.708,-0.12357,-1.9591,-0.83081,-0.42597,0.57124,0.81296,0.12595,0.16275,-0.42456,-0.30573,0.42537,0.21106,-0.70082 -3.7045,-0.65022,0.58303,1.3779,0.16903,0.098673,0.63105,-1.023,-0.45436,-1.0655,-0.28823,0.72415,-0.21202,1.4382,-0.17626,-0.29086,0.10513,0.82219,0.78979,0.16223 -3.7933,-0.40129,1.4355,0.54423,-0.28503,-1.2946,2.338,0.36379,-1.201,-1.4414,0.013134,0.70759,0.52471,0.92395,-0.1993,-0.059484,0.059697,-0.35556,-0.40743,-0.51715 -4.0296,-0.98939,0.97094,1.8859,-0.35662,-0.22566,1.1584,-0.042503,-2.1351,0.0069286,-0.80594,0.92911,-0.15426,-0.82038,-0.4655,0.01463,0.70128,0.67874,1.0725,-0.96248 -2.6209,-0.37311,1.1732,1.6145,0.28375,-0.24254,0.34908,-0.30727,-1.0006,-0.79152,-0.11226,0.52558,-0.43155,1.2877,-0.36359,-0.068213,0.092817,0.20251,0.93298,0.070752 -2.5364,-0.84886,1.5789,1.9434,-0.45735,0.5334,0.52699,0.42953,-1.1768,0.04742,0.28719,-0.055677,-0.50421,-0.35554,0.75683,0.26228,0.081191,0.072884,0.019292,0.45449 -4.1533,-0.92383,-0.37135,0.64597,-0.11472,-1.5411,1.6314,-1.1882,-0.26715,-0.76339,-0.073697,1.0436,-0.079401,-0.034983,-0.14369,0.36714,-0.42934,0.83875,-0.34625,-0.7198 -3.0122,-0.78294,-0.11418,1.1041,-0.15904,-0.50961,0.65749,-1.327,-0.26257,-0.15858,-0.10484,0.18737,-0.71035,-0.60028,0.05652,0.27898,0.552,0.77137,-0.10492,-0.43916 -3.4412,-0.6724,-0.77753,0.36384,-1.0333,-0.44012,1.2297,-1.7821,-0.14525,0.13393,-0.26728,0.21255,-0.35145,-0.80744,0.26313,0.97692,0.19995,0.20406,-0.49291,-0.071029 -4.0387,-0.85427,1.0328,0.77545,-0.2476,-0.27998,1.2043,-0.86309,0.0039079,-0.54201,-0.75374,0.83484,-0.21102,0.79812,-0.076084,-0.067287,0.048174,0.98152,0.0093866,-0.76767 -3.6457,-0.35224,-0.3864,0.18264,-1.8307,-0.029461,1.0251,-1.1544,-0.43003,0.91416,-0.71315,-0.34479,-0.28038,-0.76686,1.0513,0.6679,0.39938,-0.071281,-0.18173,-0.1533 -3.9143,-0.003673,-0.65613,1.5633,-1.3437,-0.80543,1.2602,-0.30675,-0.5467,-0.24786,-0.17246,-0.66806,-0.53027,-0.17116,1.4116,-0.21729,0.52023,0.28338,-0.41567,-0.36798 -3.5023,-0.1877,2.7439,1.3787,-0.94344,0.8149,0.64161,0.92149,-1.4449,-0.28964,0.86668,0.33507,-0.51839,0.42597,0.049289,0.25809,0.562,0.33472,-0.53153,0.44811 -3.109,-0.62282,0.57356,1.1147,-0.22311,0.48255,0.051327,-0.99405,0.029811,-0.23582,-0.29744,0.32244,-0.039855,0.25971,0.35305,-0.19317,0.79673,0.14087,0.59824,0.062373 -3.4955,-0.54457,-0.57017,-1.2107,-0.72625,-1.3763,2.3621,-0.49944,-0.79313,-0.051428,0.3363,1.0047,0.25345,-0.91004,0.46485,0.49347,-0.72403,0.33387,-0.028941,-0.10861 -3.1682,0.038363,-0.8431,-0.23582,-1.2452,-0.67364,1.5804,-0.82737,-1.1119,0.55349,0.055636,-0.073177,-0.30276,-0.60237,0.6831,0.46092,-0.090588,-0.42705,0.0047501,-0.018376 -3.3784,-0.43856,-0.97589,1.7706,-0.012058,-1.3051,1.0565,-1.3944,-1.0918,-0.55952,0.44114,0.27236,-0.026048,0.31314,-0.59071,0.43064,0.61355,0.28507,0.48998,-0.019098 -4.8141,-0.31941,2.4609,2.331,-0.76751,0.16847,0.87645,0.32764,-1.0503,-0.3649,0.63323,0.54968,-0.28001,1.1212,0.1889,0.10299,0.89038,0.4496,0.21812,0.082972 -4.1269,-0.99371,-0.29304,1.517,0.093542,-1.4395,1.5329,-0.6982,-0.61022,-1.0978,0.57355,0.54888,0.030844,1.0134,-0.1409,-0.27943,-0.55036,0.25971,1.0376,-0.24245 -4.7858,-0.41332,1.0316,1.5694,-0.57326,-0.36252,1.0109,-0.58372,-0.22778,-0.53794,-0.43025,0.48442,-0.25232,0.80645,0.95865,-0.14811,0.36277,0.25082,-0.0049725,-0.41987 -4.4305,-1.2514,-0.35052,0.8559,-0.099889,-0.93487,1.1626,-1.3437,0.13236,-0.58671,0.052449,1.4289,0.176,0.86268,-0.48495,0.50044,0.15191,0.86203,0.92624,-0.040717 -3.2156,-0.30251,2.5968,1.7066,-2.7679,0.34092,1.2994,1.3255,-0.74274,-0.005611,0.28459,-0.34394,-0.47988,-0.45007,0.37838,-0.039384,0.1286,0.31457,-0.47263,0.15508 -2.931,-0.38937,0.72154,2.6464,0.22771,0.011828,0.12427,-0.53244,-1.4812,-0.75289,-0.04837,0.25776,-0.13403,0.29455,-0.43762,0.23692,0.98527,0.22283,1.4431,-0.075283 -2.64,-0.32705,1.4364,1.158,0.10558,0.53192,0.84804,-0.36552,-1.5477,-0.75133,-0.092448,0.66548,-0.11829,0.52926,-1.0791,0.19786,-0.20919,0.46754,0.16725,-0.048333 -3.3686,-0.6245,1.8247,2.0154,-0.36302,0.80574,0.24362,-0.063206,-1.0099,-0.45278,0.16945,0.26042,-0.55143,0.22239,0.073597,-0.13066,0.38382,0.079743,0.68227,0.281 -2.8369,-0.81852,-0.747,0.71894,0.025062,-1.5879,0.82918,-0.84478,-0.030131,-0.41746,0.3337,0.77381,-0.25002,-0.19078,0.074574,0.40679,0.12315,0.74538,-0.41561,-0.37416 -4.6826,-0.2065,0.75691,1.1325,-0.71454,-1.302,2.763,-0.56013,-2.0472,-0.87047,-0.7638,0.8376,0.35463,-0.16165,-0.31073,-0.11505,0.18551,0.93531,-0.3212,-0.56059 -2.2877,-0.26493,1.8655,0.89277,-0.39357,-0.24028,0.43505,1.2193,-1.8985,-0.015878,0.014504,1.2756,0.26453,0.042707,-0.51301,0.47051,1.2304,-0.60148,-0.61227,-0.39609 -3.3569,-0.24741,2.6106,2.3087,-0.84363,0.28101,0.19391,1.1234,-1.0346,-0.051719,1.1872,0.53842,-0.38566,0.32986,0.21885,0.37704,0.48451,0.31179,-0.13308,0.41625 -2.5324,0.079493,-0.97275,-0.34499,-1.242,-0.45754,1.5878,-0.61274,-1.144,0.63132,-0.16791,0.064426,-0.26799,-0.70019,0.29715,0.25125,0.31273,0.063002,-0.26888,0.29246 -2.852,-0.70034,1.6104,2.02,-0.29271,0.73459,0.13258,0.59109,-1.3621,-0.39451,0.94341,0.3146,-0.50988,0.57353,0.37615,-0.089437,0.59662,-0.41444,0.63654,0.35057 -2.3208,0.13022,1.9827,1.0726,0.16471,0.13513,0.56554,0.65564,-1.5007,-0.26975,0.39846,0.87248,0.012474,0.81016,-0.41607,0.81223,0.79631,-0.0027676,0.11046,0.25764 -4.6164,-0.099325,0.49507,2.5066,-0.13593,-0.8408,0.46232,-0.56455,-1.3385,-0.11101,0.42736,-0.021965,0.070213,0.32009,0.17589,-0.36427,1.051,0.89913,0.90359,-0.6041 -3.5349,-0.59689,0.2875,1.1836,-0.55307,0.11372,0.51345,-1.2218,-0.31675,-0.011352,-0.63519,-0.10094,-0.76708,-0.51034,0.57844,-0.19971,0.46588,0.60355,-0.054388,-0.20791 -2.2192,-0.28265,1.8911,0.87902,-0.48437,0.68056,1.0677,0.73481,-2.1382,-0.27179,-0.081168,0.57653,-0.15445,-0.34393,-0.70338,0.26554,0.65897,-0.42734,-0.39529,-0.33324 -1.7844,0.45214,0.0067577,0.93997,-1.9993,0.70388,1.2866,0.38139,0.12253,-0.1166,-0.8069,0.13129,-0.40973,0.061756,0.38963,0.20313,0.13477,-0.30215,-0.11104,-0.22722 -3.4084,-0.041852,1.5414,1.2755,0.22912,0.19905,1.1295,-0.3855,-1.5774,-0.79141,-0.59799,0.65846,-0.34534,0.37666,-0.1638,0.32533,-0.16157,0.21083,0.42222,-0.40939 -2.79,0.45914,0.70592,1.501,-0.6586,-0.32377,0.23984,-0.0021706,0.71038,-0.22176,0.54956,0.5752,0.22529,1.0231,0.85501,-0.3665,0.85576,-0.0096002,-0.15153,-0.059245 -5.5906,-0.98179,0.51163,1.3386,-0.4466,-1.2328,2.1994,-1.022,-1.3228,-1.0764,-0.10678,1.0871,-0.104,0.3547,-0.36386,0.73785,0.11607,0.39214,0.35969,-0.35666 -0.77947,-0.25771,0.86993,1.0755,-1.0389,0.071663,0.57909,0.18063,0.06265,0.26824,0.23536,-0.01518,-0.34675,-0.52134,0.081263,0.18027,-0.43463,0.44506,-0.09916,0.28243 -3.7874,-0.47175,1.3649,1.2884,0.3746,0.25758,1.0728,-0.64796,-1.1048,-0.88616,-0.093227,0.71618,0.24616,1.3338,-0.23168,0.059573,-0.14389,0.83558,0.68657,0.089575 -1.8819,-0.5589,0.62357,1.4678,-1.9287,0.74117,0.69612,1.0867,-0.4019,-0.095178,-0.10521,-0.38293,-0.25428,-1.016,0.76444,0.28698,-0.42871,0.26942,-0.18886,-0.14869 -3.2799,-1.6207,-0.31525,0.35632,-0.36094,-1.1086,1.1768,-0.50433,-0.27933,-0.35581,0.46817,0.79359,-0.23989,-0.5142,0.3066,0.73395,-0.58,0.74096,0.41813,0.10326 -3.8985,0.1311,-1.2773,0.2455,-1.2497,-1.2425,1.447,-1.0481,-0.96739,0.51285,0.067629,-0.21072,-0.62007,-0.77363,0.96577,0.32003,0.26014,0.40866,-0.8723,0.24422 -3.6339,-0.20208,0.283,1.7817,0.40401,-1.3866,0.64513,-0.61031,-1.2141,-0.35669,0.4633,0.15212,0.17694,0.25513,0.2972,-0.32508,0.25473,0.98684,0.86751,-0.39821 -2.921,-0.75812,-0.8102,0.97089,0.17528,-1.5972,0.37208,-1.2743,-0.22754,-0.72232,1.079,0.67684,-0.051379,0.27971,-0.35046,0.22393,0.4674,0.5854,-0.092907,0.48404 -2.4034,-0.4816,-0.56016,-0.41449,-0.80407,-1.323,1.4742,-0.22803,-0.82748,-0.051352,0.45681,0.51757,-0.48404,-1.1767,0.59513,0.95644,-0.53091,0.35512,-0.63527,-0.19389 -3.2099,0.010317,2.1206,2.1441,-2.8255,0.44403,1.0672,0.63631,0.017808,0.23891,0.10776,-0.16173,-0.36736,-0.55322,0.15057,0.14913,-0.010509,0.39079,-0.6731,0.24361 -4.8306,-0.00092828,1.2757,1.6266,0.062809,-0.09076,1.7738,-0.58932,-2.085,-0.80272,-0.37366,0.89464,0.024595,0.51202,-0.3145,0.26553,-0.047522,0.21583,0.1498,-0.51994 -5.6524,-0.99127,0.034983,0.75212,-0.62065,-1.7009,2.715,-0.56337,-1.0975,-0.79451,0.57765,0.63103,0.1989,-0.14181,0.30047,0.15382,-0.26346,0.60466,0.19318,-0.21129 -2.3127,-0.12962,-0.1933,0.27384,-1.6568,0.57293,0.55169,-0.44834,0.086787,0.43483,-0.71637,-0.42229,0.079139,-0.16208,0.89867,0.49343,0.37228,-0.20683,0.18923,-0.32831 -4.0021,0.43835,2.1415,0.34043,-0.27234,-0.60782,2.0997,-0.17925,-2.8414,-0.85662,-0.46169,0.61338,0.62518,-0.12959,-0.10681,0.093849,0.8449,0.13444,-0.17131,-0.021434 -4.2896,-0.5703,0.095567,0.1485,-0.17715,-1.308,1.1013,-1.0925,-0.80544,-0.41027,-0.27001,1.6594,0.2749,0.20165,-0.22644,1.1806,-0.55743,0.23443,0.38322,0.39189 -2.6566,0.12108,1.899,0.98252,0.29715,-0.20718,0.99597,0.56965,-1.9033,-0.48216,-0.3166,0.94365,0.21226,0.62292,-0.56056,0.77084,0.64263,0.040887,0.05924,-0.23043 -1.6847,0.12224,1.2083,-0.32689,-0.15102,-0.78813,0.883,0.24886,-1.2415,-0.77827,0.41396,0.39702,0.0021388,-0.18726,-0.090796,-0.069164,-0.10258,-0.54768,0.22629,0.31534 -3.9801,-0.65706,0.55188,0.85608,-0.26841,-0.21626,1.4451,-0.99105,-0.35082,-0.57704,-0.84866,0.59774,-0.24597,0.26653,0.20059,0.038695,-0.19935,0.94111,0.030595,-0.83731 -3.8224,0.040862,2.8388,2.4552,-0.86044,0.22534,0.91303,0.73549,-1.5501,-0.15287,0.84095,0.61544,-0.41271,0.9707,0.15772,0.67483,0.94629,0.61608,-0.30254,0.53031 -2.0342,-0.0097625,2.1208,1.4086,-1.7419,0.38264,0.89045,0.48338,-0.10387,0.27266,0.55736,-0.48844,-0.42826,-0.13988,0.25945,0.55976,-0.17735,0.42333,-0.81582,0.32565 -3.4064,-0.03889,-0.054203,0.51011,-1.6807,0.73163,1.7472,-0.63057,-1.7405,0.78293,-0.66413,-0.76173,-0.26079,-0.93568,0.57079,0.051352,0.60521,0.73154,0.091938,-0.22181 -1.7464,-0.021822,0.10869,0.40819,0.19208,-0.65758,1.3977,-0.20477,-0.80788,-0.70839,-0.16271,0.19264,0.35946,0.073913,-0.27438,-0.091963,-0.96192,0.063079,0.29185,-0.4791 -4.5013,-0.38416,-0.083946,1.4906,-0.7081,-0.47065,1.5282,-0.63496,-1.1653,0.26966,-0.50925,-0.1185,-0.74321,-0.4277,0.24652,-0.48423,0.91534,1.1227,-0.08187,-0.92326 -5.0152,-1.0796,-0.092083,0.72734,-0.63857,-0.91979,1.4382,-0.65531,-0.34049,-0.44512,0.053779,1.2317,-0.40269,0.583,0.80607,0.76586,0.19108,-0.24741,0.2613,-0.031001 -3.3252,-0.62079,-0.51374,0.60966,-0.98425,-0.34378,1.2131,-0.89317,0.099069,0.41038,-0.77661,0.10786,-0.18463,-0.62575,0.92147,0.53232,0.28156,0.0194,0.065306,-0.41193 -2.7013,-0.65424,0.77967,1.4468,-2.6088,1.4851,1.3592,0.32877,-1.0709,-0.032798,-0.4905,-0.9307,0.062743,-0.17526,1.0617,-0.22807,-0.15529,0.61682,0.44101,0.32722 -3.4604,1.8313,0.89888,-1.4837,-1.4294,-0.65629,1.5488,-0.21016,-1.5961,-0.26385,0.032457,0.58345,0.74995,0.38164,0.97523,-0.57034,0.38596,-0.095983,0.25503,0.72372 -4.684,-0.099012,-0.16223,1.9824,-0.060402,-0.86433,0.93265,-1.5275,-1.5721,-0.36438,0.22749,-0.017569,-0.32075,-0.58513,-0.35223,-0.14057,1.2339,0.28606,-0.014363,-0.58024 -4.1538,0.21941,2.1777,1.0436,-0.47696,0.26603,1.6397,0.19626,-2.5865,-0.43023,-0.34717,0.65941,-0.085749,-0.10469,-0.38443,-0.26648,0.74369,-0.34097,-0.41287,-0.71766 -3.9415,-1.1223,-0.25922,1.465,0.034267,-1.6137,0.75997,-1.0408,-0.28996,-0.99431,-0.042588,0.88263,-0.14739,0.94478,-0.16759,0.14034,0.036267,0.71494,0.68195,0.053329 -3.2109,-0.23469,2.653,2.0817,-0.93241,0.077393,0.25983,1.3284,-1.3717,-0.11353,0.85781,0.31504,-0.31116,0.16767,0.051148,0.32868,0.68519,0.2151,-0.34893,0.27784 -3.7204,0.07468,0.57797,0.6849,0.35681,-1.1131,2.1971,-0.77371,-2.0641,-0.9781,-0.37077,0.55184,0.57956,-0.43027,-0.03582,0.3556,-0.90904,0.91677,0.28694,-0.69869 -4.3813,-1.8258,-0.62519,0.47203,0.097155,-2.2101,0.91676,-0.15178,-0.33761,-0.43761,1.2874,1.2988,0.07457,-0.38671,-0.1701,0.384,-0.11032,0.90892,0.82411,-0.066083 -3.8089,-0.45051,-0.49548,0.95043,-1.7325,-0.12129,0.7209,-1.6267,-0.83911,0.31728,0.45438,-0.63021,0.19717,-0.65759,0.67245,0.60812,0.4731,-0.053802,-0.41079,0.31656 -2.7879,-0.684,0.1522,1.039,-0.59724,0.2113,0.41267,-1.1364,-0.10657,0.29471,-0.28518,-0.23068,-0.47722,-0.91441,0.16376,0.031256,0.52422,0.33504,-0.085113,-0.39136 -2.7573,-0.094658,-0.60786,0.010699,-1.8639,0.11063,0.94379,-0.15008,-0.30549,0.67517,-0.50433,-0.41612,-0.15782,-0.21058,1.2056,0.83273,0.31312,-0.1844,0.053204,-0.18167 -3.6279,0.099535,-0.36383,2.0799,-1.3684,-0.60813,1.4045,0.059838,-0.81204,-0.52614,-0.50073,-0.19815,-0.46566,0.25019,0.92286,-0.67965,1.1106,0.32991,-0.05771,-0.59516 -3.826,-0.98675,0.50869,1.9577,0.27166,-0.2905,0.52723,-1.3481,-0.45037,-0.61012,0.14439,0.55781,-0.11037,0.68758,-0.11247,-0.11626,0.67777,1.1775,1.0442,-0.26949 -3.6638,-0.34051,-0.92738,0.54309,-1.3078,-0.98543,1.471,-1.044,-0.68458,0.60608,-0.20815,-0.17632,-0.55958,-1.2064,0.3553,0.37192,0.33563,-0.55041,-0.3424,-0.19991 -4.9317,0.37964,1.7927,1.4136,-2.6163,-1.6407,2.0877,-0.67898,-1.8351,-0.98921,0.31932,0.89279,0.66284,1.2168,0.49743,-0.29686,0.43419,1.3312,0.56296,0.017181 -4.656,-0.74849,-0.77153,0.71587,-0.3475,-2.0598,1.6903,-1.2376,-1.2879,-0.74074,0.19347,0.69835,-0.53413,-0.54223,-0.23862,0.63986,-0.18206,0.46163,-0.31025,-0.64007 -2.5636,-0.66456,3.0612,2.2691,-2.4759,-0.38078,0.78402,0.65667,-1.1623,-0.16343,1.3629,0.040719,0.36111,-0.45015,-0.040245,0.26539,0.081567,0.1849,-0.51081,0.43423 -5.2924,-0.6919,0.70299,1.1843,-0.44521,-1.15,2.6677,-0.82482,-1.8818,-1.1311,0.008268,0.82194,0.27015,-0.12196,-0.33086,0.56721,-0.19442,0.72221,-0.058153,-0.086684 -2.4463,-0.68582,0.59231,1.6143,-1.5444,1.2226,0.34023,0.44155,-1.1382,0.12478,0.21851,-0.55775,0.4204,-0.86834,1.4246,0.05174,0.26581,0.4999,-0.35211,0.0011135 -2.1439,-0.25664,-0.3086,0.58874,-1.7416,0.64802,0.77872,0.11414,-0.37998,0.58108,-0.37904,-0.7626,-0.16859,-0.62448,0.63109,0.49604,0.31088,0.03537,-0.044903,-0.63862 -4.7217,-0.92682,1.0671,0.66838,-0.048166,-1.1582,1.0453,-0.94222,-0.6887,-0.74289,-0.64922,1.5389,-0.15104,0.87391,-0.22532,0.52235,-0.24413,0.58928,0.23187,0.17094 -3.3493,-0.73564,-0.049719,1.0345,0.14325,-0.5073,0.34801,-1.5103,-0.1318,-0.35677,-0.26969,0.71039,-0.085807,0.33129,-0.10951,0.16411,0.55789,0.8563,0.36312,-0.12855 -2.728,0.20014,2.2701,1.969,-1.4226,0.0093244,0.66181,1.0412,-0.39476,0.19934,0.26044,0.0046778,-0.88344,-0.10257,0.16572,0.17868,0.27616,0.79997,-0.56897,0.18701 -1.4469,-0.49018,1.9799,1.4612,-2.1617,-1.1592,0.27196,1.4061,-1.2834,0.27204,0.38159,0.98433,0.20532,-0.20746,-0.084417,0.22355,0.39112,-0.14811,-0.36775,0.18626 -5.7919,-0.94993,0.55578,0.89687,-1.489,-0.4695,2.0087,-1.1763,-0.90706,-0.16985,-0.31873,0.99769,-0.37457,-0.61615,-0.018606,0.87703,0.23018,-0.14269,-0.084287,-0.2448 -3.5228,-0.30224,-1.445,-0.015111,-1.0906,-0.69381,1.4061,-1.0166,-0.61824,0.38844,-0.12381,0.070544,-0.67667,-0.5971,0.59802,0.43582,0.35031,0.027912,-0.34718,-0.074066 -4.1591,-1.5421,-0.75046,0.14923,-0.60563,-1.8143,1.9152,0.010419,-0.69104,0.21246,0.77303,0.66825,-0.53251,-1.1042,0.57857,0.33974,-0.30536,0.67664,0.045467,-0.40536 -3.8435,-0.11329,0.72084,0.83727,-0.13434,-0.88322,2.3548,-0.10303,-1.4545,-1.3511,-0.23753,0.59739,0.55322,0.96252,-0.045516,-0.3962,-0.20518,-0.3961,-0.12848,-0.47541 -3.1917,-0.19296,2.588,1.7495,-0.60508,0.33004,0.3059,0.46794,-0.9602,-0.16898,0.76629,0.22256,-0.48261,0.5942,-0.22276,0.0033481,0.75137,0.14956,-0.090066,0.40684 -4.1931,-0.70886,1.5163,2.427,-0.4292,0.42411,0.071694,0.67223,-1.8979,-0.26036,0.31741,0.58855,-0.31497,0.033922,0.70872,-0.059157,1.0484,0.26417,0.91075,-0.035849 -4.2909,0.19008,0.2744,2.3711,-0.94009,-0.60508,0.31442,-0.097546,-1.1892,-0.20215,-0.12607,-0.69544,-0.55293,-0.10021,0.71091,-0.44869,1.225,0.84346,0.09453,-0.38743 -3.4216,-1.0326,0.58606,2.2592,-0.96291,0.37239,0.4233,-0.72007,-1.6391,-0.29434,0.21754,-0.46684,-0.27018,-1.1782,0.38558,-0.34207,1.1113,-0.22904,0.39965,0.14568 -4.575,-0.51309,1.3064,2.1587,-0.17137,0.31648,0.45621,-0.14604,-1.3867,-0.11934,0.32309,0.27502,-0.26647,0.82051,0.28796,-0.28292,0.74361,1.0334,1.0646,0.14943 -3.291,-0.64757,-0.39126,1.2097,0.016934,-1.0456,1.167,-0.98081,-0.55594,-0.77236,-0.33663,0.42976,-0.61199,0.21378,0.25247,-0.1625,0.35086,0.7552,0.15004,-0.62654 -2.4178,-0.59608,2.5277,1.4577,-0.94635,-0.076718,0.4424,1.1033,-1.933,-0.37084,1.3649,0.58527,-0.18942,0.46844,-0.47697,0.50665,0.96409,-0.44161,-0.5338,0.38396 -4.5533,-0.74927,0.61341,2.1623,0.35732,-1.1635,0.81655,-0.91649,-1.1936,-0.81989,0.39239,0.39376,0.076138,1.0631,0.2687,-0.1806,0.45012,0.90596,0.88794,-0.1231 -4.5012,-0.41291,0.31714,1.2544,-1.4279,0.72252,1.8228,-0.66534,-0.99293,0.07859,-0.6488,-0.4359,-0.74911,-0.65717,0.84113,0.031935,0.27351,0.39205,-0.14721,-0.54464 -2.9966,-1.1068,1.5448,1.7176,-0.66021,0.44731,0.5476,-0.1133,-2.2316,-0.50432,0.17061,1.5538,-0.044025,0.45214,-1.1042,-0.20223,-0.3397,0.2731,0.44029,-0.54525 -3.3661,-0.12833,0.6225,1.6327,-0.83389,-0.12289,0.40685,-0.087515,0.28715,-0.40417,-0.2935,0.076504,-0.62206,0.4206,1.3274,-0.2057,0.56338,0.11661,-0.33433,-0.38395 -3.4954,0.096019,2.4567,1.7288,-0.31545,0.025828,0.58787,0.53093,-2.4404,-0.34421,0.15069,0.64305,-0.22831,0.2617,-0.59986,0.77358,1.1079,-0.34606,-0.4568,0.055904 -4.9653,-0.88919,2.4061,1.6687,-0.71311,0.58899,1.3125,-0.24775,-1.0912,-0.77386,0.22774,0.64748,-0.38623,0.56816,-0.12512,0.11493,0.71309,0.060709,0.068147,0.0019516 -3.5332,0.30031,0.066089,-0.04166,-0.018756,-1.2901,2.778,-0.21863,-1.8845,-0.73421,-0.32765,0.70122,0.97984,-0.52141,-0.07752,0.016447,-1.0751,0.48045,0.29677,-0.27572 -3.8091,-0.61972,1.7953,2.0149,-0.039003,0.5962,0.50047,-0.35856,-1.0218,-0.70849,0.056821,0.54298,-0.64051,0.63074,0.15928,-0.1515,0.59391,0.19708,0.68126,0.15697 -3.6939,-0.26427,-0.81221,-0.69531,-1.0319,-1.2482,3.0546,-0.22326,-1.3992,-0.13207,0.031263,0.81636,0.34878,-0.72688,0.050005,-0.22939,-0.38461,0.62835,-0.13068,-0.20658 -2.5734,-0.49849,-0.70687,-0.24188,-0.50737,-0.78109,0.93628,-0.44651,-0.54688,0.26026,0.056441,0.3648,-0.29048,-0.7225,0.87606,0.56651,-0.069277,0.096568,-0.038503,-0.11334 -3.1393,-0.66923,1.4103,1.7256,-0.99328,0.65864,0.12383,0.7573,-0.30826,0.14304,0.38167,0.57697,-0.18687,0.0029456,1.1125,-0.099567,0.53488,0.61166,-0.46216,0.065127 -3.4139,0.95975,0.075003,-0.84432,-0.85206,-0.96382,2.7519,-0.64052,-1.9268,-0.65173,-0.064683,0.46821,0.52665,-0.29595,0.31763,-0.08417,-0.62937,-0.18855,0.52181,0.13504 -4.3805,-0.15438,2.0296,1.743,-0.44678,-0.081958,0.72708,-0.39004,-0.29285,-0.59113,0.16633,0.79938,-0.35648,1.4792,0.18445,0.12691,0.75116,0.10977,-0.16508,0.039519 -3.1071,-1.0991,1.9036,2.0246,-0.58176,0.64011,0.50536,0.82259,-1.6641,-0.42379,0.4518,0.25069,-0.58079,0.080613,0.51804,0.025328,0.39602,-0.36104,0.32151,0.20662 -3.789,0.077681,1.373,2.3518,-0.90699,-0.61585,0.25949,0.48322,-0.23315,-0.26015,-0.36564,0.50792,-0.14584,0.74613,0.68687,-0.54587,0.83326,0.574,0.37061,-0.36924 -3.1938,0.18904,1.2347,1.9715,-2.5894,0.51285,1.3445,0.76025,-0.14243,-0.059537,-0.89053,-0.3284,-0.99109,-0.31831,0.59889,-0.10368,0.026528,0.085902,-0.46228,-0.10299 -4.1018,-0.79513,-1.3504,0.43044,-0.7173,-2.1099,1.9305,-0.46752,-1.2393,-0.0075144,0.83013,0.26963,-0.7145,-1.3172,0.36155,0.080454,-0.050807,0.25106,-0.47846,-0.061824 -2.85,-0.94418,-0.64432,-0.92152,-1.2746,-0.77581,2.5416,0.72528,-0.96544,0.32471,0.10701,0.38765,0.011625,-0.80056,0.13244,-0.28542,-0.22716,0.59539,0.35572,-0.18423 -2.1284,-0.60086,-1.0115,0.38941,-0.15651,-1.6247,1.0342,0.098832,-0.4795,0.21668,0.85589,0.37823,-0.17067,-0.57372,-0.18001,-0.057736,0.31845,-0.20659,0.1197,-0.24462 -3.0977,-0.67436,0.36952,1.2719,-0.39586,0.42825,0.48866,-1.1425,-0.1449,-0.14499,-0.20703,-0.10151,-0.33883,-0.18651,0.11407,-0.24254,0.65081,0.033957,0.48074,-0.31687 -4.3674,-0.27392,0.83344,2.5014,-0.046545,-0.054588,0.47403,-0.92347,-0.68144,-0.88098,0.15629,0.4984,-0.34502,1.0382,0.50027,-0.12337,0.74547,0.17062,0.87168,0.13775 -3.3924,-0.29776,1.9712,2.0529,-0.70232,-0.17648,0.9715,0.54373,-1.2269,-0.52402,-0.31765,0.33091,-0.98746,0.679,0.24386,-0.30935,0.99799,0.043529,-0.29057,-0.37577 -4.7221,-0.70175,1.2389,1.5645,-0.52572,0.096823,0.97782,-0.83283,-0.23143,-0.76185,-0.25602,0.77788,-0.45399,1.0238,0.53168,0.0491,0.51911,-0.13981,0.20981,0.052581 -4.1615,-0.54668,-0.0021691,1.2777,-0.57615,-0.59356,0.70122,-1.5332,-0.63264,0.19084,-0.18456,0.017115,-0.88319,-1.081,-0.14976,-0.23586,0.9652,0.18438,-0.3185,-0.5192 -4.0564,0.1166,1.9126,2.2149,-0.86733,0.069151,0.55317,0.9838,-1.1056,-0.20853,0.074985,0.08951,-0.68353,0.26801,0.80568,-0.22195,0.58814,0.40885,0.22157,-0.26127 -2.7914,-1.5364,-0.44125,0.18036,0.27176,-0.9219,0.63744,-0.025724,-0.14137,-0.16168,0.59529,1.2867,0.27903,0.038683,-0.24924,0.49084,-0.19435,0.73956,1.4381,0.14516 -4.2459,-0.53713,0.97288,1.5586,0.07755,0.23832,0.62994,-1.1715,-0.54399,-0.71353,-0.20738,0.59565,-0.0925,0.84055,0.37432,-0.19712,0.36406,0.66688,0.46631,0.10555 -4.3948,-0.66718,1.8754,1.9569,-0.16163,0.81541,0.7894,-0.59785,-1.3839,-0.63157,0.012436,0.72146,-0.45933,0.9501,-0.11555,0.001386,0.43019,0.17081,0.7506,0.29984 -2.7456,-0.53681,-0.73445,0.85934,-0.11497,-1.0286,0.3286,-1.3705,-0.26862,-0.33951,0.59729,0.35169,-0.41745,0.20718,-0.10347,0.1362,0.85437,-0.03758,-0.15544,0.47314 -3.7882,-0.78675,-0.42044,0.62686,-0.086949,-1.1005,0.91515,-1.5034,-0.31919,-0.86658,0.33254,0.87217,0.17895,-0.16479,-0.30982,0.53988,-0.21314,1.4071,-0.17911,0.44012 -4.684,-1.0856,0.9205,2.3349,0.003828,-0.39993,1.1489,-1.1751,-2.0521,-0.9576,0.1294,1.149,0.0060749,0.27302,-0.10658,0.12821,0.41675,0.71505,0.32413,-0.0008226 -5.4948,-0.13503,1.8601,2.1261,-2.1042,0.049932,1.5089,0.08112,-1.6527,-0.48499,0.028707,0.49194,-0.045201,-0.081257,0.77491,0.26767,0.83433,0.21824,-0.33975,-0.093811 -4.4928,-1.6506,-0.57891,0.68489,-0.078154,-1.4931,1.021,-0.74533,-0.27081,-0.75103,1.0703,0.80167,0.15843,0.45394,-0.039845,0.15144,-0.12595,0.84181,0.50141,0.58085 -3.7991,-1.007,1.4082,2.3621,-0.53299,0.94611,0.059662,-0.47326,-1.0089,-0.53057,0.55941,0.16326,-0.47828,0.27159,-0.17407,-0.37552,0.61682,-0.41776,1.2016,0.16906 -4.1727,-0.23494,2.4159,1.1622,-0.33927,0.028356,1.3032,0.090243,-1.402,-1.0846,0.098554,0.48681,-0.21241,1.0558,-0.30093,0.18399,0.59564,0.54051,-0.17076,0.17044 -3.1406,-0.76536,0.32357,1.465,-0.3766,0.05407,0.37067,-0.83176,0.13357,0.14644,-0.10774,-0.01672,-0.3252,-0.1534,0.54271,-0.31801,0.74386,0.88296,0.52889,-0.50221 -4.6109,-0.25732,0.015867,-0.39844,-1.1716,-1.5657,3.0302,-0.36525,-1.9651,-0.6338,0.063661,0.85832,0.059739,-0.5924,0.61758,-0.068,-0.28496,-0.21935,0.18987,-0.21238 -4.1351,-0.25579,-0.19446,0.7972,-2.5645,0.241,1.1559,-0.073209,-0.55082,0.40683,-1.2466,-0.42999,-0.38281,-0.43064,1.3432,0.1621,0.53601,0.13932,0.0072587,-0.19013 -2.4841,-0.18452,1.3521,1.9151,-2.1942,0.78392,1.2596,1.19,-0.1481,0.17456,0.24373,-0.047923,-0.65247,-0.8887,0.34346,0.1353,-0.24007,0.13575,-0.47154,-0.36225 -3.0462,-0.45296,1.4003,2.3856,-0.51098,0.35505,0.56428,-0.75926,-1.1775,-0.83217,0.87847,1.0478,-0.15862,1.6386,-0.10904,-0.075907,0.62205,0.27401,0.37944,0.040367 -3.341,-0.5046,-0.31459,1.4781,0.20974,-0.81621,0.57707,-1.5806,-0.77789,-1.0678,0.42447,0.085672,-0.27351,0.32577,-0.24423,-0.18706,0.52765,0.55817,0.19156,0.30496 -3.8864,-0.67331,-0.64014,1.4617,0.30297,-1.7065,0.6001,-1.4178,-0.3632,-0.86332,0.94379,0.57035,0.15003,0.86791,-0.13199,-0.30558,0.54753,0.50768,0.51606,0.011511 -2.3193,-0.63706,-0.98686,0.78323,-0.10577,-1.5492,0.8316,-0.52511,-0.3904,-0.46175,0.80927,0.45496,-0.30131,-0.33834,-0.18731,0.46312,-0.24457,0.23527,-0.085204,-0.071065 -3.0982,-0.71813,-0.95902,1.4908,-0.10652,-2.2355,1.2441,-0.79689,-0.65348,-1.084,1.316,0.062881,-0.14361,-0.35525,-0.74417,0.22755,-0.60494,0.40862,-0.37581,0.37745 -3.6238,-1.4307,-0.15489,0.77145,-0.27072,-0.65542,0.87501,0.20348,0.35509,-0.66395,0.47545,1.2361,0.35795,1.1678,0.66964,0.5286,0.021728,0.19771,0.87791,0.5526 -4.6313,-0.15383,1.9528,1.3381,0.33128,-0.21609,1.0283,-0.3761,-2.185,-0.66237,-0.30111,0.95972,0.12382,0.33448,-0.46844,0.11155,0.11929,0.47296,0.46418,-0.24322 -3.0526,-0.61345,0.73454,1.8728,0.12064,-0.55127,0.36175,-0.11553,-1.7426,-0.011891,-0.37343,0.55829,-0.31186,-0.20492,0.022394,-0.041031,0.81659,0.88446,1.1808,-0.012316 -4.821,-0.69829,0.82602,1.0232,-0.31765,-0.3464,0.89552,-0.87273,-0.25871,-0.87278,-0.043788,1.3046,-0.1223,1.3866,0.538,0.30722,0.20029,0.093601,0.071161,0.70305 -4.1448,-0.25715,-0.18149,0.80741,-1.1145,0.046307,0.59833,-0.97331,-0.2873,0.13854,-0.50697,-0.16222,-0.38148,-0.70244,0.60304,-0.0512,1.0611,-0.29496,-0.23687,-0.68335 -3.3177,-0.98478,1.3084,1.984,-2.5667,0.74344,0.81381,1.5592,-1.5036,-0.3333,0.22974,-0.3258,-0.14357,-0.89988,1.3231,-0.13266,-0.1431,0.30608,-0.1837,-0.066896 -1.8908,0.30767,0.41922,0.42226,-1.8905,0.9851,1.2734,0.34471,-0.44195,0.11973,-0.81848,-0.46952,0.42712,-0.12627,0.71206,-0.1955,0.22166,-0.25491,0.4746,-0.70682 -1.8819,-0.25118,2.4896,2.0264,-2.7674,-0.11422,1.3839,0.48878,-1.4983,0.22018,-0.23947,0.024797,-0.90764,-0.74917,-0.12047,0.68423,0.21325,0.92677,-0.40519,0.79965 -2.3174,0.2533,-0.45497,0.25949,0.14294,-1.3257,0.54001,-1.0968,-0.6099,-0.72089,0.54356,0.33297,-0.17855,0.47562,-0.85483,-0.23384,0.057575,0.1169,-0.43677,0.080765 -2.314,0.65601,0.687,-0.016782,-0.3371,-0.79534,2.0031,-0.62382,-1.6454,-1.0393,-0.48777,0.0075095,-0.027732,-0.1858,-0.054009,-0.39737,-0.36231,0.2288,-0.16889,-0.17108 -5.6017,-0.026009,1.4489,1.3921,-0.92916,-0.0017939,1.7261,-0.23807,-1.7381,-0.72784,0.13733,0.77002,0.047822,0.41084,-0.059523,0.091643,0.51613,0.023846,-0.31153,-0.36377 -3.7338,-0.26579,1.0852,1.1535,0.016579,-0.9131,1.8188,-0.39061,-1.3845,-1.1622,-0.60813,0.67295,0.037756,0.90079,-0.14294,-0.2958,-0.48197,0.32933,0.18847,-0.52454 -3.1991,-0.4272,1.9928,1.0881,0.37512,0.15731,0.99547,0.0035528,-1.7515,-0.79699,0.42765,0.76236,-0.0052291,0.69856,-0.47517,0.10814,0.42394,0.47491,-0.30061,0.11825 -2.6826,0.039557,2.3737,1.2089,-0.83757,-0.52656,1.2987,1.1145,-2.5278,-0.15666,-0.078157,0.85134,0.28739,0.096927,-0.56241,-0.090057,1.6717,0.015235,-0.66819,-0.46502 -4.142,-1.3655,-0.92421,0.54516,-0.16831,-1.8759,1.7419,-0.77233,-0.5043,-0.54496,0.67161,1.0246,-0.22542,-0.41613,-0.19823,0.64273,-0.38293,0.50694,0.032329,-0.45591 -2.5423,-0.18569,2.3672,1.619,-0.62,0.41455,0.16349,0.63577,-0.98999,-0.14924,1.2359,0.1948,-0.49349,0.48513,-0.50621,0.22817,0.71418,0.29263,-0.36645,0.54774 -2.2879,-0.83185,0.47375,2.1487,-0.062419,-0.24392,-0.069535,-0.78629,-0.69706,-0.34738,0.51176,-0.11918,-0.57136,-0.25096,-0.31037,0.26658,0.54754,0.60784,0.68324,0.18767 -3.3934,-0.79846,-0.3373,-0.25432,-0.27737,-1.2136,2.1172,0.041429,-1.13,-0.38775,0.061689,1.0955,-0.26432,-0.463,0.11727,0.66733,-1.041,0.19589,0.40835,-0.56306 -4.505,-0.66073,1.9382,1.8413,-0.49615,1.1234,0.32061,-0.43775,-0.79703,-0.60142,0.46446,0.63541,-0.24995,0.83483,0.086241,-0.37309,0.83182,0.067567,0.57825,0.2821 -1.5855,-0.44274,1.3533,0.47035,-0.49131,0.26448,0.14274,0.35674,-2.2147,-0.54566,0.18502,1.0998,-0.42195,0.28047,-0.41038,0.03546,0.52314,-0.35666,-0.34018,-0.056 -4.5026,-0.89658,0.048581,1.7787,0.16515,-0.55074,0.39378,-1.9424,-0.52384,-0.68718,0.085407,0.90364,-0.30903,0.70831,-0.67167,0.017548,0.74772,0.89873,1.0015,0.10541 -3.756,-0.45943,-0.70723,1.1576,0.16904,-2.1124,0.84656,-1.545,-0.59403,-0.78449,0.97664,0.80678,-0.23462,0.10021,-0.65271,0.41179,0.2228,0.33153,-0.62355,0.37486 -4.2703,-1.0546,-0.67565,1.1788,-0.19789,-1.915,2.0744,-1.0043,-0.72,-1.0448,0.45465,0.58832,-0.19334,-0.32509,-0.049532,0.40311,-0.68645,0.80886,-0.17592,-0.54356 -3.3173,-0.12878,-0.21113,0.85897,-1.7872,0.60772,1.3852,-0.71723,-0.13004,0.077001,-0.70164,-0.72052,-0.25211,-0.21704,1.1146,0.17334,0.17373,-0.25954,-0.029224,-0.65387 -4.0883,-0.432,-0.54742,1.5071,-0.20123,-0.98542,1.0479,-1.4861,-0.27341,-0.61561,0.020963,0.50008,-0.47121,0.36601,0.49531,-0.20899,0.45461,0.060583,0.36098,-0.37847 -4.1445,0.13033,1.9431,2.1621,-1.9986,0.46938,1.0857,0.51042,-1.097,0.043222,-0.30356,-0.33295,-0.46183,-0.48129,0.99426,-0.18474,0.12588,-0.23086,-0.5178,0.084868 -4.5453,-0.45217,2.5227,2.2023,-1.1529,0.10456,0.97996,0.35518,-0.48172,-0.53546,0.26008,0.054589,-0.090806,0.37818,0.36855,-0.12067,0.60123,0.10196,-0.062676,0.077045 -3.571,0.55624,1.9723,0.60366,-0.14738,-0.35987,1.9601,-0.53639,-2.0761,-1.266,-0.049015,0.1847,0.14539,0.43907,-0.46448,0.14582,0.62385,-0.032175,-0.54786,-0.050725 -3.4063,-0.39605,0.31634,2.1211,0.21978,0.009968,0.5608,-1.1846,-0.77552,-0.65501,0.34568,0.35688,0.16022,0.96754,0.51823,-0.55406,1.0546,0.47955,0.89477,-0.17682 -2.0552,-0.42074,0.70907,1.4362,0.037364,-0.056216,-0.068841,-0.5908,-1.0559,-0.054908,0.41584,-0.13543,-0.44815,-0.6837,-0.50444,-0.054235,0.50253,-0.06791,0.50548,0.17053 -3.641,0.15121,2.375,2.2298,-1.8689,0.43471,1.5961,1.0239,-1.3778,0.053589,0.28309,0.16595,-0.76385,-0.13711,0.62315,0.33696,0.87873,0.33613,-0.6952,-0.29988 -4.5356,-0.50833,1.2747,1.9751,-0.45675,-0.3529,2.2467,-0.35853,-1.3835,-0.88024,-0.20033,0.88208,0.20499,1.2311,-0.70457,0.66485,0.56768,0.031961,0.6581,-0.43544 -2.5951,0.34747,2.128,2.5618,-2.1209,0.10423,1.0293,0.23247,-0.72209,0.16858,0.97988,-0.32001,0.5253,-0.27836,0.37227,0.84817,-0.3573,-0.57054,-0.084551,0.70614 -4.0581,-0.61501,0.30534,2.2825,-0.033526,-0.30673,0.78433,-1.3691,-1.3556,-0.64282,0.0364,0.049219,-0.39385,0.16949,-0.15109,0.044984,0.72041,0.29026,1.0986,0.11961 -3.6368,-0.78544,0.47143,1.0028,0.29559,-0.82028,0.81607,-1.2065,-0.42885,-1.0489,-0.079681,0.91413,-0.091471,1.1306,-0.376,-0.16,-0.25354,0.79902,0.38452,-0.040562 -4.4865,-0.7457,0.23641,2.4869,-0.63312,-0.15758,1.1126,-0.88661,-1.1018,-0.048621,-0.065282,-0.074414,-0.49951,-0.38279,0.39765,-0.03955,1.0601,0.37771,0.72943,-0.38926 -3.8735,-0.15075,0.91177,1.4174,-0.76237,-0.18059,0.7052,-0.031726,0.26245,-0.23053,-0.52312,0.48527,0.23724,0.76469,1.028,0.23168,0.36991,0.2353,0.0034615,-0.20087 -5.2574,-0.41804,0.72262,2.2615,-0.060191,-0.53002,1.3002,-1.0621,-1.4069,-1.0521,0.0075743,0.82158,-0.11687,0.58898,-0.19425,0.2131,0.38335,0.033845,0.76976,-0.26961 -4.6831,-0.18542,-1.4102,1.2392,-0.069274,-1.7601,1.8688,-1.0312,-1.1511,-0.52634,0.96975,0.085061,0.020548,-0.29421,0.035228,-0.36055,0.10027,0.66049,0.30565,-0.19513 -3.1573,-0.26387,0.61063,1.0122,0.55892,-0.69841,1.1052,0.074255,-1.6015,-0.80048,-0.30864,1.2084,0.4784,1.0037,-0.23743,0.50171,-0.11311,0.15543,0.84134,-0.17566 -1.389,0.0155,0.59458,1.2428,-2.2049,0.65169,1.1655,0.58946,0.25916,-0.080638,0.038485,-0.048431,0.24571,-0.37919,0.46268,0.38348,-0.45783,0.18153,-0.097282,-0.17057 -2.2379,1.0068,1.9867,0.60843,-1.8082,0.50183,1.1432,0.13765,-3.0622,-0.24552,0.40877,0.76599,0.9603,-0.039484,0.94414,0.754,0.79287,-0.48906,-0.52453,-0.066304 -2.2005,-1.0896,1.1901,1.4109,-0.0874,0.4666,-0.11577,0.45779,-1.4521,-0.20222,0.5016,0.75035,-0.13908,0.40694,-0.031331,0.072671,0.33804,-0.30593,0.92606,0.42959 -3.2732,0.19146,-0.54241,1.1873,-1.1093,-1.1869,0.089125,-0.23174,-0.088158,-0.055541,0.095461,-0.36852,-0.25929,0.25896,0.80685,-0.46436,1.0528,0.73883,-0.78402,-0.1101 -4.8868,-0.41087,1.4377,2.388,0.1166,0.19836,0.57646,-0.62326,-1.5096,-0.59649,0.31834,0.71579,-0.17013,0.88904,0.22729,-0.084691,0.75688,0.37173,0.9418,-0.074719 -3.5441,0.4093,2.8553,2.1971,-1.3036,-0.030306,0.62313,0.82478,-1.1043,0.046014,0.45723,0.19101,-0.16425,-0.039216,0.030972,0.47892,0.42155,0.16434,-0.34901,0.34312 -3.9641,-1.0271,-1.0379,-0.26386,-0.29082,-1.9377,1.8425,-0.67012,-0.71078,-0.34069,0.42728,1.1045,0.14632,-0.93368,-0.017243,0.95046,-0.57771,0.63092,-0.1015,-0.22616 -2.5782,-0.30424,-0.984,-0.1595,-1.9892,-0.13465,1.2746,-0.45253,-0.85522,0.94122,-0.07808,-0.28487,-0.54279,-0.63711,0.64661,0.72068,0.31778,-0.11341,0.11095,-0.01429 -5.0635,-0.36769,0.62074,1.2878,-1.943,0.50223,1.7288,-0.15038,-1.0698,0.28955,-0.69223,-0.19218,-0.47247,-0.74342,0.81166,-0.1554,0.47676,0.19607,-0.046002,-0.90398 -3.9742,-0.8598,1.8903,1.6253,-0.79831,0.82658,0.6992,-0.33714,-0.56299,-0.30148,0.024282,0.28463,-0.60156,0.018281,0.24219,-0.20174,0.22045,-0.23079,0.26213,-0.096916 -2.6342,-0.91914,0.37989,0.64842,-2.6781,-0.057826,0.8314,-1.4858,-1.1352,0.026185,-0.42768,0.15782,0.43469,0.24563,1.3637,0.37784,0.57523,-0.78551,0.22688,-0.026975 -3.3289,-0.27463,2.4511,1.6152,-1.6596,0.37564,0.93703,1.7535,-1.1125,-0.14642,0.26992,0.50347,-0.68686,-0.35238,0.67026,0.40564,0.28861,0.81905,-0.61088,0.17692 -4.1155,-0.97878,-0.72374,-0.16926,-0.95454,-1.0835,1.5859,0.28366,-0.47155,-0.081097,0.66197,0.24979,-0.080115,-0.38908,1.3174,0.40531,-0.17692,0.4402,-0.18053,-0.29193 -3.0276,-0.30058,-0.024881,1.2708,-0.55007,-0.20887,0.21256,-1.0703,-0.40538,-0.30449,-0.33685,-0.47393,-0.69288,-0.32355,0.54191,-0.19832,0.92868,-0.24348,-0.23116,-0.18624 -3.738,-0.51285,1.8555,1.9479,-0.9471,0.86078,0.42915,0.39604,-0.33117,-0.043421,0.31662,0.062787,-0.40473,-0.10828,0.81728,-0.30207,0.42186,0.27286,0.018391,-0.18485 -3.2008,-0.28914,-0.61988,-0.19949,-0.68828,-0.79183,1.8994,-0.55171,-0.81208,-0.014079,-0.50764,0.63134,-0.27795,-0.39703,0.41133,0.32455,-0.27172,-0.10628,-0.087074,-0.50085 -4.3291,-0.11194,2.3462,1.5706,-0.39046,0.34507,1.309,-0.01107,-1.4845,-0.68918,-0.11846,0.63303,-0.73649,0.31265,0.034,0.205,0.55766,0.12962,-0.29849,-0.34758 -2.7468,-0.1548,0.25498,0.019733,0.0024996,-1.001,1.5379,-0.70129,-0.79578,-1.0931,-0.17393,0.51651,0.12226,0.63323,-0.35231,0.0068263,-0.9807,-0.056479,-0.42201,-0.30587 -4.5354,-0.99796,0.075838,0.3239,-0.68146,-0.48434,1.6417,-0.76535,0.054375,-0.39404,-0.53944,1.2022,-0.13171,0.70229,0.60833,0.71614,0.16453,0.30591,0.18931,-0.018705 -3.7394,-0.044663,-0.028417,1.8256,-1.781,0.41705,1.049,-0.45452,-0.38398,0.056368,-0.37137,-1.0954,-0.2354,-0.57597,1.1782,0.02663,0.50768,-0.67974,-0.32389,-0.52811 -3.8394,-0.4494,-0.63216,1.4697,0.12258,-1.6822,1.6695,-0.89238,-0.99542,-0.75401,0.18382,0.36007,0.044873,0.20527,-0.02272,-0.12189,-0.19532,0.26192,0.33923,-0.66881 -3.5873,-0.13262,1.7563,1.6834,-2.1088,0.37102,1.4602,0.63787,-0.0065196,0.21543,-0.29646,-0.23197,-0.87733,0.068046,0.54201,0.314,0.47909,-0.24941,-0.63776,-0.51729 -2.9768,-0.25739,1.8274,1.0706,0.15849,-0.018243,0.41776,0.68328,-1.8962,0.0009304,-0.38824,1.473,0.43722,0.1898,-0.46812,0.43144,1.1327,-0.28934,0.2926,-0.57276 -2.6564,-0.42137,0.44488,1.4068,-1.655,0.98293,0.72708,0.23408,-0.64452,0.14821,-0.2672,-0.94853,0.023185,-1.1142,1.1819,0.1724,-0.035526,0.40511,0.18614,-0.47774 -2.744,-0.52744,-0.086637,1.5711,0.55583,-0.77858,0.95516,-0.96596,-1.3897,-0.8488,0.38775,0.5533,0.22854,-0.037589,-0.39244,0.30894,-0.14368,1.1491,0.32948,-0.013611 -4.0127,-0.75219,-0.66316,0.56648,-0.50641,-1.933,2.7908,0.049704,-2.1748,-0.58382,0.30836,0.60525,0.35675,-0.78831,0.0259,-0.70929,-0.36902,0.28271,0.16676,-0.45456 -1.3605,-0.28767,0.8552,1.4344,-2.5643,0.14784,0.97721,0.72912,0.038305,0.13699,-0.25848,0.081377,-0.10479,-0.83618,0.39827,0.55504,-0.52999,0.35919,-0.19623,0.053507 -3.0665,1.073,0.58563,-0.52626,-0.42512,-0.87233,2.3373,-0.79153,-1.976,-1.2602,-0.046647,0.35217,0.71109,-0.022913,-0.013185,-0.082104,-0.21372,-0.34848,0.36467,-0.022281 -2.4074,0.3552,0.42094,1.4619,-1.9655,0.91261,0.73297,0.56249,-0.35396,-0.064018,-0.81173,-0.55644,-0.57015,-0.35064,0.50687,-0.17928,0.031262,-0.10159,-0.014771,-0.29326 -3.9685,-0.51853,0.54147,0.39603,-1.5811,0.46503,1.7675,-0.3825,-0.029518,0.1843,-1.2782,0.13145,-0.46743,-0.12987,0.8998,0.26894,0.24246,-0.11463,-0.15697,-0.76154 -3.4494,-0.22305,1.5562,2.2766,-0.83817,0.26384,0.42105,0.25154,-0.27167,-0.10108,0.32533,-0.0073421,-0.66564,-0.0038517,0.72537,-0.3449,0.58216,-0.40355,0.032536,-0.32857 -2.9196,-0.48439,1.6921,2.155,-0.39438,0.93725,0.36804,-0.043771,-1.2543,-0.41751,0.48711,0.28185,-0.538,0.2276,-0.21411,-0.092607,0.36776,-0.64112,0.8586,0.36374 -5.1189,-0.72173,0.87951,2.4452,0.12165,-0.13664,1.0831,-0.99991,-1.7089,-0.66892,0.19715,0.88749,-0.1736,0.62509,-0.38201,0.17997,0.91446,0.41761,1.1173,-0.55577 -3.5806,-0.58245,-0.74287,0.16384,-0.66608,-0.21477,1.2116,-1.438,-0.297,0.066323,-0.22936,0.45199,-0.45144,-0.40377,0.67598,0.52207,0.30373,0.60182,-0.20891,-0.22244 -2.9704,-0.39265,1.858,2.1567,-2.3407,0.7978,0.95606,1.3386,-1.3427,-0.038884,0.24617,-0.30125,-0.18618,-0.75125,1.3695,0.52556,-0.27129,0.15981,-0.34236,0.42286 -2.1647,0.16049,0.24554,0.83577,-1.3051,-0.041946,0.35932,0.50016,0.67582,0.14359,-0.66336,0.32286,-0.21693,-0.10535,0.96328,0.28098,0.32574,0.036695,-0.22488,-0.072339 -3.9473,-0.91808,1.3491,1.3082,-0.79522,0.44044,0.70243,-0.74286,-0.0711,-0.15637,-0.60288,0.30243,-0.23153,-0.025892,0.48363,0.016055,0.13591,0.036133,0.29924,-0.13799 -4.5795,-0.75284,-0.64308,0.33559,-0.44854,-1.8238,1.9055,-1.076,-0.69766,-0.33773,-0.06684,1.0872,-0.29064,-0.63399,0.24807,0.82121,-0.30263,0.66666,-0.59431,-0.42575 -3.2839,-0.69707,0.73323,2.0712,-0.11436,0.56809,0.039423,-1.2194,-1.1216,-0.36992,0.30617,0.26602,-0.55168,-0.24405,-0.56912,-0.10295,0.58181,0.26696,1.1649,0.29874 -2.9118,0.52441,1.546,0.60733,0.078705,-0.26213,1.1739,-0.92886,-1.3996,-0.96699,-0.32627,0.57958,-0.10881,0.628,-0.58059,0.21312,-0.27132,0.18217,-0.3896,-0.0050888 -1.7395,-0.23187,-0.39814,-0.14156,-0.16043,-0.88429,0.22946,-0.015966,-0.31258,0.19741,0.44142,0.18569,-0.32643,-0.0035906,0.091262,-0.12165,0.56877,0.054199,-0.21068,-0.1029 -4.1443,-0.00049599,-0.23387,1.3789,-0.45646,-1.3102,1.6634,-1.5486,-1.6846,-0.27178,0.042079,-0.040947,-0.39035,-1.2326,-0.2782,0.56599,0.30816,0.48026,-1.0831,-0.14701 -3.2322,0.13215,2.5501,1.2926,-0.18869,0.32437,0.7377,-0.059587,-1.6582,-0.59951,0.19209,0.58494,-0.55522,0.63258,-0.82078,0.55221,0.65562,0.021936,-0.22637,0.41935 -1.4563,-0.161,0.40303,0.93221,-1.0163,0.52759,0.48818,0.15298,0.43109,0.080528,-0.11893,-0.26577,0.063491,-0.26543,0.77108,0.096385,-0.16648,-0.11492,-0.074463,-0.19649 -1.9151,-0.40248,2.0808,1.8873,-1.5857,-0.50432,0.78623,1.7166,-0.89341,0.14927,0.54638,0.23301,-0.60386,-0.18957,0.24336,0.64621,0.08973,0.44031,-0.60802,0.40988 -5.3067,-0.7257,1.2511,2.5469,-0.51204,-0.40193,1.8046,-0.26396,-2.0355,-0.73168,0.11157,1.0526,0.26657,0.9026,0.066028,0.20465,1.153,0.38802,0.30731,-0.31346 -1.884,-0.35851,0.13191,1.9587,-2.3714,0.8758,0.40762,0.551,-0.93754,-0.15623,0.16358,-0.717,0.52662,-0.80468,0.95066,-0.12229,0.099614,0.092234,-0.60768,-0.016176 -3.3214,-0.39844,-0.97194,0.88307,-0.44847,-1.5149,1.0101,-1.1493,-0.56506,-0.11431,0.18507,0.18279,-0.71983,-0.68521,0.43494,0.21826,0.63473,-0.11593,-0.76123,-0.24355 -2.6703,-0.58475,2.2148,0.80574,-0.47721,0.39514,0.65235,0.70484,-2.4539,-0.42153,0.074362,0.73547,-0.27775,0.12137,-0.73758,0.72366,0.73495,-0.56625,-0.43741,0.2474 -2.2028,-0.62069,0.71805,0.033969,0.084946,-0.18665,0.26943,-0.12269,-0.18601,-0.045037,-0.31257,0.79812,0.017875,0.27192,0.74181,0.27565,-0.1451,0.55744,0.17557,-0.17668 -2.7586,0.0090787,3.1788,1.8564,-2.0742,0.11299,0.59614,0.52807,-1.9392,-0.39928,1.008,0.54847,0.16942,-0.17325,-0.3827,1.2235,0.54186,-0.14138,-0.31767,0.36718 -5.8926,-0.20175,0.8854,1.5317,-1.594,-1.6897,2.5135,0.40874,-1.446,-0.82698,0.30282,0.96356,0.17515,1.0807,-0.11843,-0.21127,0.47424,1.4059,0.28132,0.003583 -3.0225,-0.20091,1.578,1.5914,-1.2304,0.5788,0.42079,0.51283,0.21043,0.27306,0.24249,-0.016519,-0.64599,-0.14479,0.66054,-0.2428,0.41287,0.12089,-0.4185,-0.26553 -1.9057,-0.17026,0.50981,1.6374,-2.2963,0.77357,0.81071,0.54274,-0.064318,-0.30119,-0.42975,-0.71731,-0.31453,-0.3247,0.70284,0.32134,-0.66312,0.4569,-0.15961,-0.05403 -2.3712,-0.19845,0.47961,0.49841,-0.21473,-0.24577,0.84548,-1.0633,-0.36531,0.044869,-0.51458,0.074092,-0.36462,-0.49886,0.44572,-0.12249,-0.07883,0.37296,-0.46628,-0.32759 -3.3684,0.63792,1.2003,0.29663,0.18617,-0.55754,1.9454,-0.23813,-2.1748,-0.72387,-1.1671,0.84259,0.62417,-0.038743,-0.18028,0.03516,-0.12069,0.44312,-0.12585,-0.76518 -5.199,-0.1618,-0.22382,-0.0040663,-2.2827,-0.42854,3.1075,0.16395,-2.7004,-0.11694,0.057736,0.58378,0.42471,0.12414,0.054163,-0.63693,0.58935,1.0778,-0.28503,-0.0083704 -3.2757,-0.17314,-1.0293,0.77146,-0.22681,-0.85974,1.5259,-1.0611,-1.2089,-0.41545,0.55718,-0.39504,-0.11789,-0.53897,0.00094651,0.16401,0.18372,0.0019849,0.041193,-0.24796 -3.0167,-0.68565,1.8886,2.0364,-0.0092589,0.53377,0.046424,0.61668,-1.5927,-0.44588,0.32144,0.78994,-0.39584,0.95339,0.094478,0.46306,0.73048,0.063012,0.87718,0.57997 -2.7827,-0.17237,1.0005,1.5437,0.013051,-0.50959,0.99628,-0.01085,-1.5209,-0.52534,-0.95018,0.86685,-0.023908,0.41112,-0.083385,-0.27119,-0.065776,0.50095,0.32791,-0.80677 -2.3488,-0.50047,0.633,1.8487,-1.59,0.082323,-0.12792,1.1829,-1.0724,-0.35901,0.32094,-0.13943,-0.26741,-0.73528,1.1905,-0.38199,0.53039,-0.3217,0.12127,-0.0064416 -2.8314,0.43226,0.38176,-0.069184,-0.12017,-0.60355,2.5116,-0.60321,-1.5035,-0.91743,-0.4263,0.24291,0.55642,0.13905,0.0051703,-0.63953,-0.48015,0.1018,-0.12959,-0.48221 -2.4742,0.21623,1.485,0.92263,0.14206,-0.08907,0.86767,-0.25216,-0.8842,-0.94048,-0.0055465,0.53126,-0.16342,1.1298,-0.5472,0.12967,-0.066344,0.37623,-0.14673,0.26705 -3.2455,-1.0474,-1.0598,0.8557,-1.2211,-1.4303,0.65196,-1.1895,-0.69777,-0.23421,1.0274,0.10767,0.25421,-1.0112,0.10314,0.54651,-0.42711,-0.55292,-0.43766,0.51204 -4.1492,-1.1183,0.12772,0.25922,-0.05817,-1.8605,1.8056,-0.73397,-0.67576,-0.93931,0.52441,0.99138,0.34078,0.223,-0.3036,0.23301,-0.92728,0.30123,-0.048265,-0.054363 -4.4669,-0.95288,-0.27521,0.62368,-0.28625,-0.85162,0.8871,-1.7062,-0.41635,-0.86047,0.053545,0.76524,-0.08211,0.23804,0.15807,0.32825,-0.10783,0.99379,0.027657,0.56028 -3.8653,-0.33567,1.3451,2.5388,-0.42282,0.56324,0.31186,-0.52175,-0.9935,-0.45137,0.24285,0.013848,-0.41691,0.29684,0.43702,-0.21141,0.72011,-0.51364,0.85002,0.19368 -3.804,-1.3964,-0.3982,0.55712,-0.28842,-1.1017,1.0262,-0.42763,-0.0036938,-0.071093,0.095919,1.0813,-0.18228,0.017384,0.90981,0.75729,0.017388,0.44537,0.50788,-0.24901 -4.4675,0.40717,0.87491,1.489,-2.2408,-0.20263,1.3567,0.081098,-0.02014,-0.60386,-0.38979,-0.07014,-0.40805,0.11736,1.5107,0.14558,0.18798,0.5219,-0.65208,0.42665 -3.3851,-0.21048,1.0332,1.8872,-0.53911,0.86832,0.55381,-0.30049,-1.0228,-0.059576,-0.13928,0.020063,-0.37445,-0.26382,0.28953,0.009025,0.34888,-0.68106,0.71327,-0.48428 -4.1644,-0.44084,-0.51763,0.47221,-0.82949,-0.77706,1.6726,-1.0861,-0.67181,0.044266,-0.72305,0.48967,-0.65373,-0.42007,0.66115,0.32438,0.16948,-0.061314,-0.33217,-0.58864 -2.0496,-0.089558,0.39901,1.1148,-1.7655,0.75085,0.3481,0.30251,0.1841,-0.067035,-0.6486,-0.47194,-0.19873,-0.73563,0.53838,0.1488,-0.13491,0.29367,-0.11576,-0.19235 -4.7762,-0.97045,0.38052,0.9605,-0.31322,-0.62883,0.97003,-1.0129,-0.0054531,-0.44791,-0.47468,1.2277,-0.21582,0.91302,0.43672,0.2607,0.4776,0.15327,0.41716,-0.27837 -3.2919,-1.0554,-0.91128,0.25719,-0.34222,-2.0776,1.5349,-0.55609,-0.87773,-0.40348,1.302,0.41556,-0.45275,-1.2615,0.046333,0.59231,-0.5555,0.37214,-0.8279,0.075631 -3.5737,-0.62886,0.41828,-0.95426,-0.31576,-0.49825,1.7126,0.17586,-0.30191,-0.64951,0.16669,1.5591,0.8499,0.81403,0.029921,0.60901,-0.42379,0.15385,0.47528,0.29847 -4.7877,0.58156,0.39136,1.7554,-2.0792,0.06226,1.4554,-0.23551,-1.001,-0.26988,-0.073813,-0.65222,0.098993,-0.34508,1.3996,0.37654,0.24839,-0.01433,-0.37094,0.13133 -3.5142,-0.3187,-0.44269,0.31871,-1.4713,-0.4306,1.6129,-1.6185,-0.72767,0.35871,-0.30812,-0.017734,-0.082231,-0.47583,0.54243,0.87606,-0.077613,-0.60133,0.26387,-0.25031 -4.7245,-1.1016,-0.39234,1.0556,-0.1403,-1.521,1.8369,-1.065,-0.65014,-0.96551,0.024067,0.84333,-0.43963,0.40047,0.23595,0.21492,-0.29718,0.453,0.13829,-0.45116 -2.1963,-0.52076,1.6665,1.6,-2.9211,0.35279,1.8436,0.88227,-0.17973,-0.19104,0.90933,-0.37892,-0.017615,-0.11901,1.0737,0.4197,-0.35311,0.068269,-0.59757,-0.20634 -2.4069,-0.20582,-0.65278,0.0941,-1.3409,-0.22862,1.3065,-1.0575,-0.66531,0.66523,-0.4255,-0.30431,-0.17145,-0.84154,0.3593,0.73705,0.32397,-0.29731,-0.19106,-0.25064 -2.9276,-0.8112,-1.427,0.25729,-0.057688,-1.6573,0.91418,-0.50254,-0.80176,-0.39886,1.4084,0.08743,-0.28331,-0.78664,-0.52826,-0.10603,0.1959,0.16443,0.10459,0.20463 -3.1132,-0.36745,0.57181,1.2681,-1.4749,0.60464,0.45188,0.16738,0.45208,0.33084,-0.28925,-0.17716,-0.11595,-0.5537,1.2418,0.24526,0.41201,-0.33801,-0.12955,-0.33253 -4.1397,-0.9349,0.45706,1.6713,-1.2624,0.13548,1.3443,-1.0469,-0.90714,0.31363,-0.42175,-0.48991,-0.83318,-1.2193,0.25315,-0.0011088,0.10134,0.81913,-0.039672,-0.12108 -1.7238,-0.15315,0.19009,0.95759,-1.8417,0.58437,0.27286,0.22558,0.36506,-0.025581,-0.36755,-0.50755,0.26153,-0.46128,0.72108,0.38468,-0.12044,0.2211,0.024943,-0.053283 -5.309,-0.91365,-0.5322,-0.047561,-0.67899,-1.371,1.9521,-1.0291,-0.68625,-0.20061,-0.14107,1.3323,-0.41167,-0.43999,0.040557,0.82624,-0.15059,0.46427,-0.179,-0.43842 -4.6695,0.13217,0.61153,1.3334,-2.2986,0.089332,1.6197,0.17928,-0.71763,-0.15488,-0.9606,-0.2931,-0.6374,-0.067051,1.3303,-0.12248,0.20454,0.21316,-0.4078,-0.38856 -3.9395,-0.77862,0.88399,1.6824,0.2871,-0.59538,0.92626,-1.2535,-0.76921,-1.0506,-0.26745,0.66058,-0.02635,0.66643,-0.36962,0.052414,-0.3088,1.0444,0.6561,-0.20932 -4.2512,0.64111,1.2727,0.26173,-0.35003,-0.98013,2.3717,-0.83817,-1.5689,-1.1973,-0.41254,0.44095,0.19241,0.51261,0.16293,-0.27148,-0.29188,-0.29671,-0.63956,-0.37341 -4.5587,0.14418,1.2129,0.39021,0.09149,-0.68101,2.1712,-1.3393,-2.0469,-0.93446,-0.42084,0.81681,0.35936,0.0087013,-0.44304,0.24161,-0.49369,0.11101,0.060808,-0.42772 -5.1114,-0.19259,1.1552,0.40068,-0.57127,-1.0483,2.1601,-0.88484,-0.95037,-1.1235,-0.37898,1.036,0.0013193,0.74802,-0.14725,0.18208,0.09531,-0.031218,-0.44868,-0.36648 -1.5241,0.80753,0.53563,-0.13905,-0.34452,-0.11164,1.4273,-0.40787,-1.6486,-0.74441,0.043075,-0.0077725,0.81502,-0.38324,0.13437,-0.40936,0.44106,0.3673,0.35793,0.12608 -5.7648,-0.51441,1.5337,1.5172,-0.94704,-0.18706,1.8339,-0.52974,-1.1146,-0.37948,-0.1693,0.62719,-0.1196,0.30822,0.41075,0.14995,0.49327,0.36355,-0.16172,-0.44574 -3.2426,-0.62427,0.1787,0.70739,-0.90577,0.48209,0.61065,-1.3582,0.13712,0.25664,-0.50985,-0.046671,-0.10469,-0.46049,0.69613,0.16794,0.52725,0.01818,-0.044816,-0.24769 -3.6382,-0.11105,-0.44588,2.0885,-2.8755,1.0178,1.8218,0.37077,-1.7171,0.095654,-0.49788,-0.61424,0.22833,-0.48915,0.8033,0.051121,0.73487,-0.16784,-0.49338,-0.0056614 -3.8062,-0.27941,-0.78979,1.307,-0.11196,-2.0771,1.6429,-1.1021,-0.97015,-0.6612,0.70912,0.14206,-0.14874,-0.65624,-0.22328,0.27809,0.069976,0.47779,-1.0221,-0.31795 -3.7399,-0.046788,2.0856,1.4118,-0.082348,0.31648,1.1585,-0.48038,-1.3803,-0.89246,-0.26807,0.63196,-0.47867,0.92653,-0.39642,0.2972,0.23186,0.22829,-0.18146,0.18433 -3.4422,-0.26563,1.7263,1.404,-1.7144,1.2403,0.68186,0.97164,-0.62924,-0.088608,0.12008,-0.39374,-0.46369,-0.44322,0.89365,-0.16737,-0.3976,0.77791,-0.30562,-0.052681 -3.7716,-0.038994,0.47442,-0.40205,-0.63545,-1.4174,3.08,-0.33819,-2.1645,-0.85853,0.63225,0.8432,1.2,-0.60512,0.025106,-0.16735,-0.26663,-0.080078,0.32965,-0.12178 -4.4241,-0.20772,-0.55157,0.76132,-1.1158,-0.65478,2.2014,-1.3372,-1.1625,0.20234,-0.61135,0.34172,-0.64976,-1.2935,0.11178,0.38959,0.049172,0.36341,-0.49009,-0.56703 -4.1253,-0.80518,2.0812,2.2273,-0.22117,0.47271,1.048,-0.24115,-1.2455,-0.73311,0.050307,0.54932,-0.16852,1.3199,-0.15226,0.30023,0.45617,0.36286,0.5111,0.44242 -3.7081,-0.66362,-0.62765,0.89273,-0.13605,-1.5288,0.43612,-1.3651,-0.26308,-0.48285,0.54541,0.44224,-0.39669,0.0099675,-0.018762,-0.017082,0.8346,0.1423,-0.38262,0.12756 -4.1857,-0.49349,0.075836,-0.49122,-0.94742,-0.46003,1.6015,-1.2253,-0.43347,0.17227,-0.9403,1.1964,0.06988,-0.36662,0.4079,1.0566,-0.48626,-0.045167,0.16168,-0.16741 -3.0471,-0.89801,-0.51509,0.93745,-0.76385,-0.32983,0.96149,-0.9216,0.24956,0.1979,-0.52841,0.017695,-0.58812,-0.49979,0.66571,0.12977,0.64144,0.21012,-0.012797,-0.70994 -3.2557,0.23616,2.367,0.84083,-0.19456,-0.32899,1.2914,0.45351,-2.6225,-0.73122,0.012356,0.7064,-0.018227,0.21664,-0.26845,0.56603,1.2674,-0.033484,-0.63141,-0.036076 -4.3949,0.21267,-0.84964,-0.013995,-1.751,-1.0899,1.9556,-1.1269,-1.6584,0.67404,-0.13409,-0.10134,-0.60408,-1.053,0.65781,0.21814,0.038617,0.11042,-0.65534,0.38029 -2.1066,-0.28965,-0.79309,0.99113,-0.016354,-1.7786,0.71549,-0.69805,-0.54317,-0.94168,1.1212,0.1948,-0.36435,0.25374,-0.76897,-0.01488,0.2281,-0.065632,-0.40296,-0.17777 -2.1847,-0.66315,-1.1861,0.12576,-0.43944,-1.0457,1.315,-0.42853,-1.0612,0.087979,-0.10355,0.62448,-0.38026,-0.6437,0.55204,0.44734,0.56797,0.38188,-0.71261,0.018654 -3.1484,0.10166,2.7965,1.685,-0.82019,-0.32064,0.92813,0.91386,-1.6879,-0.29462,0.64631,0.2881,-0.53895,0.25382,-0.22817,0.71153,1.0815,0.33202,-0.87258,-0.036504 -4.3327,-1.2877,0.11583,1.0617,-0.2154,-0.36767,0.64809,-1.566,0.10458,-0.34167,-0.39089,1.0038,-0.21802,0.10625,-0.25957,0.31746,0.70888,0.94896,0.39257,-0.18397 -4.2009,-0.23775,-0.37514,0.7521,-1.9158,-0.55616,0.88497,-1.4068,-0.8883,0.53795,-0.18702,-0.54169,-0.47682,-0.7616,1.2344,0.25822,0.16228,-0.18296,-0.58305,-0.01296 -3.3959,-0.49636,2.5938,2.1559,-0.68236,0.33258,0.52358,0.94277,-1.5635,-0.30464,0.66756,0.47136,-0.69239,0.17203,0.12617,0.46659,0.53485,-0.23113,-0.029579,0.37055 -3.0658,-1.7145,-0.66961,0.10752,-0.098035,-1.2806,1.0654,-0.2517,-0.043124,-0.16051,0.72986,1.2127,0.090177,-0.46414,-0.11497,0.97238,-0.54393,1.1147,0.65651,0.22802 -3.5216,-0.56304,0.19469,0.51435,-0.49976,-0.20903,0.44238,-0.36899,0.31383,-0.085936,-0.36484,0.82922,0.19081,0.51582,1.2286,0.49783,0.59758,-0.15257,0.09824,0.016024 -2.1854,0.70792,-0.57288,1.3066,-0.24074,-0.7399,1.3891,-0.56708,-2.0699,-0.14768,-0.10337,-0.18978,-0.32957,-0.23442,-0.052651,-1.1437,1.257,0.70229,-0.37018,-0.12895 -3.4675,0.40693,-0.8981,1.1344,-1.1622,-0.41767,2.0086,-0.25891,-2.4685,0.44669,-0.49257,-0.054709,1.1325,-1.0186,0.80976,0.50751,0.50944,0.38623,0.55573,0.18242 -3.7008,-0.98712,-0.48665,-0.58057,-0.78223,-1.3558,2.7833,0.12446,-1.0931,-0.49471,0.1728,0.99645,-0.076893,-0.83835,-0.14731,0.40915,-0.87668,0.15749,0.18386,-0.58379 -3.1592,-1.0446,-0.3087,-0.048885,-0.059746,-1.6929,2.0125,0.37537,-0.97119,-0.50677,0.50157,1.1375,0.19933,-0.52,-0.61644,0.73495,-1.0814,0.2451,0.54993,-0.88088 -3.515,-0.47013,-0.58473,1.0969,-1.1324,-0.072062,1.8088,-0.92027,-0.26037,0.057228,-0.77518,-0.048478,-0.56514,-0.47946,0.51228,0.11116,0.22914,-0.17156,0.26526,-0.85744 -4.1541,-0.30532,-0.28213,0.97459,-0.65457,-0.85215,0.95061,-0.98627,-0.56218,0.21649,-0.43049,-0.132,-0.82287,-0.51696,0.5591,-0.49945,0.84417,0.89384,-0.54076,-0.5415 -4.8885,-0.72065,-0.093517,1.1158,-0.54522,-1.0278,0.8069,-0.37726,0.18362,-0.52625,0.48356,0.63871,0.21199,0.93268,1.2596,-0.087609,0.47827,0.60899,-0.004804,-0.05647 -5.3782,-0.76383,0.61445,1.389,-1.6706,0.10707,1.602,-0.38166,-1.6178,0.52457,-0.35092,-0.080778,-0.56834,-1.1318,0.39168,-0.29501,0.61098,0.86569,-0.18998,-0.56325 -3.3903,-0.50647,0.039142,0.03682,-1.2193,0.13151,2.0726,-1.0761,-0.96194,0.052859,-1.2116,0.3313,-0.45761,-0.2641,0.52966,-0.47729,0.29154,0.62013,-0.45686,-0.43125 -2.981,-0.59176,1.2563,1.2116,-0.37129,0.61974,0.40315,-0.39224,-0.10067,-0.33129,-0.25907,0.33249,-0.34037,0.60188,0.63918,-0.073733,0.1752,0.22359,0.19251,0.36382 -3.2939,-0.24514,0.014219,1.8637,-2.2388,0.68407,0.66183,-0.42748,-0.69156,0.079561,0.1343,-1.6878,0.047058,-0.9922,0.90191,0.30748,0.24116,0.30263,-0.35867,-0.37138 0.12545,-0.64953,0.22109,1.2884,-1.003,0.76585,1.959,-0.7377,-0.90307,-0.71407,1.1096,0.56797,0.056105,-0.25618,0.49499,-0.25503,0.78073,0.57551,-0.12641,-0.19833 0.063387,-1.1161,0.84367,0.66053,-1.8302,-1.5017,0.099952,-0.24121,-1.2453,-0.12546,-0.82086,0.070366,0.3594,0.44579,0.4784,0.1433,0.19501,0.25359,0.34531,0.1977 -0.40003,-0.6446,0.87369,0.15053,-1.6868,-1.0849,-0.50621,-0.083514,-0.67289,-0.59718,-0.42591,0.47077,0.66509,-0.53485,-0.10454,-0.68982,0.023416,0.079774,0.28856,0.17943 0.40735,-0.416,0.25428,0.63627,-0.62656,0.32066,1.2073,-0.41656,-0.63475,-0.34961,0.7669,0.78312,-0.042452,0.054433,0.4584,-0.28339,0.56653,0.37458,-0.061249,-0.04147 0.070091,-0.17054,0.017355,0.72842,-0.74318,0.62281,1.1672,-0.46637,-0.32875,-0.83599,0.80434,0.56645,0.26314,-0.17915,0.044079,-0.18441,0.62265,0.58842,-0.11626,-0.28344 0.50003,-1.2939,0.84571,0.88181,-1.6768,-0.53386,1.5887,-0.52827,-1.6655,-0.042268,0.18112,0.31364,-0.45941,0.80405,0.94334,0.21806,0.37718,0.56592,-0.095351,-0.13235 0.31174,-1.5674,0.97522,1.1076,-1.8292,-0.017536,1.7574,-0.65671,-1.7263,-0.17165,0.68458,0.17916,-0.27651,0.52667,1.0165,0.29053,0.28357,0.63707,-0.17894,-0.26492 -0.18109,-0.31357,-0.22855,0.72226,-1.308,0.88082,1.4339,-0.22089,-0.25417,-1.0367,0.71112,0.90118,0.61984,-0.044132,-0.11424,0.14602,0.95538,0.62889,0.01758,-0.64679 0.45656,-0.97508,0.5539,0.69299,-1.1237,-0.40859,1.4409,-0.44766,-1.167,-0.011131,0.15093,0.37747,-0.69392,0.68631,0.90299,0.12827,0.54656,0.5244,-0.0038796,-0.14316 0.63685,-0.74406,0.58654,1.0515,-1.3606,-0.48893,1.7882,-0.59584,-1.6297,-0.12707,0.39839,0.23729,-0.55402,0.61271,0.67008,-0.11296,0.62099,0.22997,0.059319,-0.2819 0.41121,-1.2851,0.70234,0.83472,-1.2512,-0.55185,1.1895,-0.62992,-1.5154,-0.02602,0.38743,-0.13378,-0.3656,0.88043,0.97485,0.30006,0.39463,0.26477,-0.17415,-0.18655 0.3985,-0.9902,0.78539,0.83811,-1.2451,0.24282,1.9247,-0.86545,-1.048,-0.12902,0.94777,0.48543,-0.0039905,0.3895,0.86651,-0.096438,0.48424,0.64084,0.095228,-0.34823 0.21913,-1.2891,0.82921,0.49149,-1.5813,-1.1007,0.30871,-0.268,-1.5522,-0.2804,-0.5566,0.027202,0.29424,0.622,0.61147,0.32629,0.2326,0.061158,0.093508,0.23566 0.27581,-1.2198,0.40858,0.51325,-1.0497,-0.44396,0.65158,-0.37439,-1.4099,-0.25676,0.059222,-0.19912,-0.093022,0.67041,0.8325,0.21162,0.20106,0.058965,-0.36141,-0.13042 0.38443,-0.77689,0.45796,0.5259,-0.66505,0.11524,1.1823,-0.52373,-0.82773,-0.055695,0.71816,0.35577,-0.21196,0.3814,0.78408,-0.047413,0.41717,0.57112,-0.084194,-0.20924 -0.2813,-0.46437,0.86403,0.3898,-1.8928,-1.3024,-0.49471,-0.16911,-0.76166,-0.32333,-0.17304,0.59986,1.1599,-0.40026,-0.040267,-0.67077,0.14597,0.02722,0.35102,-0.21496 0.1059,-0.33696,-0.040706,0.81444,-1.0859,0.69728,1.4698,-0.38339,-0.22543,-0.80511,0.71953,1.06,0.35236,-0.14161,0.12797,-0.17337,0.91476,0.57815,-0.021447,-0.30859 0.45619,-1.1278,0.70644,0.53219,-1.2881,-0.68327,0.94591,-0.39321,-1.7147,-0.26471,-0.036118,-0.079624,-0.21156,0.75282,0.79378,0.29749,0.34222,0.11509,-0.16202,-0.071305 0.32133,-0.32111,0.17354,0.61778,-0.64091,0.35154,1.2805,-0.44913,-0.40194,-0.37993,0.67578,0.79201,-0.028596,0.012458,0.28433,-0.31961,0.66289,0.45196,0.023017,-0.081933 -0.17297,-0.12514,-0.032573,0.75151,-1.3362,0.86682,1.0642,-0.41273,-0.25217,-0.69507,0.67928,0.88205,0.88648,-0.17381,-0.22164,0.31871,0.68553,0.34402,0.089373,-0.34532 0.28673,-1.2035,1.0583,0.84579,-1.9326,-1.3101,1.12,-0.16981,-1.471,0.11522,-0.65144,0.17522,-0.32203,0.87148,0.58977,0.28895,0.31498,0.60003,0.12564,0.17635 -0.46277,-0.31717,1.0652,0.23952,-1.9892,-1.2641,-0.52436,-0.15674,-0.67602,-0.34978,0.11431,0.7188,1.1061,-0.47706,-0.15479,-0.87573,0.24919,0.17579,0.27227,-0.30475 0.20973,-0.42749,0.13064,1.4018,-1.3828,0.88801,2.1315,-0.41021,-0.87937,-0.83392,0.86687,1.1968,0.32783,-0.13674,0.22181,-0.16726,1.008,0.68689,0.0050395,-0.061964 0.32109,-0.93568,0.4194,0.59024,-0.86809,-0.21752,0.81925,-0.52209,-1.1504,-0.26925,0.40583,0.18921,-0.23804,0.47433,0.98259,0.12768,0.28151,0.32611,-0.11069,0.25262 -0.026483,-1.4524,0.82847,0.7405,-1.7121,-1.3846,-0.032954,-0.16187,-1.4071,-0.43649,-0.73056,-0.014177,0.28041,0.50033,0.49843,0.1107,0.25537,0.033491,0.24939,0.40689 0.24748,-1.6161,1.1309,0.79974,-1.8649,-0.69078,1.3853,-0.51308,-1.8649,-0.34556,0.010186,-0.14288,-0.20608,0.58799,0.8932,0.34885,0.15246,0.55891,-0.28631,0.19796 0.298,-1.5416,0.99983,0.7105,-2.2715,-0.99337,0.96154,-0.31828,-1.9438,-0.33942,-0.29172,-0.055227,-0.073221,0.55865,0.72258,0.19032,0.28292,0.52818,-0.22252,0.082551 -0.10674,-0.055181,-0.035038,0.75423,-0.93636,0.68262,1.0377,-0.56212,-0.17601,-0.50529,0.51439,0.79365,0.75296,-0.22505,-0.018907,-0.031031,0.50651,0.18661,0.11174,-0.07083 0.30565,-0.57689,0.25735,0.86473,-1.203,0.64922,1.7005,-0.52732,-0.65646,-0.82608,0.86934,1.1399,0.14752,-0.013912,0.55345,-0.20376,0.7974,0.77339,-0.010399,-0.22081 0.22013,-0.98553,0.38482,0.42694,-0.87452,-0.43997,0.35657,-0.27158,-1.2492,-0.32155,0.013839,-0.19603,0.0098461,0.45143,0.75717,0.28222,0.15588,-0.026156,-0.21621,0.13123 0.33206,-0.8481,0.44095,0.80387,-0.95811,0.42456,1.6526,-0.67756,-0.77152,-0.38974,0.9875,0.6977,-0.19675,0.099151,0.84665,-0.12994,0.58386,0.80329,-0.03468,-0.20189 0.25544,-1.4321,1.0926,0.99774,-2.3271,-1.0024,1.4624,-0.37581,-1.6987,-0.23751,-0.28468,0.24888,-0.49202,0.56924,0.94266,0.20488,0.16434,0.789,-0.068238,0.22581 0.25858,-0.44157,0.24655,0.65132,-0.6146,0.37008,1.3533,-0.38652,-0.34959,-0.36223,0.63273,0.84271,-0.22271,0.0027983,0.52969,-0.22358,0.52853,0.55516,0.019165,-0.013849 0.45893,-1.0499,0.76396,0.92651,-1.3389,-0.14061,1.8918,-0.63249,-1.0681,0.085236,0.65024,0.57122,-0.46013,0.70652,0.91989,0.17203,0.57162,0.69281,0.096895,-0.23953 0.47066,-0.52034,0.39812,0.84854,-1.0978,0.49151,1.6026,-0.60867,-0.87035,-0.65502,1.05,0.96453,0.034428,0.068088,0.45619,-0.23264,0.75609,0.59762,-0.13978,-0.05434 0.14632,-0.47508,0.19104,0.5933,-0.8192,0.59319,1.2848,-0.6086,-0.23467,-0.37075,0.79384,0.79406,0.32213,-0.10388,0.3112,-0.21751,0.57662,0.68572,0.084805,-0.36493 0.095219,-0.98176,0.86762,0.47671,-1.673,-1.4079,0.29767,-0.1086,-1.0378,-0.19731,-0.85295,-0.0062951,0.034196,0.54387,0.14223,0.12479,0.42976,0.40582,0.22133,0.31614 0.18129,-1.3638,0.76984,1.3712,-1.6072,0.39457,1.9167,-0.54277,-1.6106,-0.46497,0.63882,0.66491,-0.22111,0.20747,1.1264,0.12336,0.17345,0.70284,-0.081106,0.038605 0.029873,-0.13999,-0.051101,0.43097,-0.62565,0.44415,0.76938,-0.32227,-0.10629,-0.49711,0.50469,0.55181,0.35469,-0.11399,-0.058537,-0.079439,0.49436,0.34979,-0.030102,-0.25295 0.21774,-1.2879,1.2012,1.4682,-2.2036,-1.543,1.0924,-0.31723,-1.8109,0.1476,-0.28339,0.29158,-0.04771,0.60107,0.83213,0.33325,0.27741,0.2985,0.33676,0.22767 0.20074,-0.51265,0.23196,0.63952,-0.67582,0.48775,1.1685,-0.59646,-0.42303,-0.44791,0.91233,0.5548,0.0653,-0.060165,0.43169,-0.27725,0.50579,0.61847,-0.13316,-0.16621 0.35342,-0.99816,0.56435,0.51261,-0.76581,-0.18524,1.0286,-0.41383,-1.0951,0.0032124,0.36829,0.16174,-0.34054,0.68036,0.91879,0.20162,0.25945,0.46847,-0.16701,-0.090635 0.056635,-1.2679,1.2831,1.5214,-2.6898,0.2075,2.2827,-0.35396,-1.5436,-0.49483,0.60136,0.6468,-0.19039,0.38878,0.63483,0.35673,0.27611,0.69655,-0.11932,-0.083497 0.051067,-1.3359,0.15782,0.82273,-1.4738,0.5905,1.5808,-0.73549,-1.2569,-0.42339,0.82169,0.42085,0.29395,0.057774,0.83883,-0.004685,0.33401,0.70135,-0.20261,-0.53099 0.2809,-0.55307,0.16422,0.84868,-0.71138,0.46245,1.312,-0.55522,-0.56825,-0.50632,0.92657,0.76451,-0.10444,-0.076576,0.60287,-0.3007,0.54661,0.54814,-0.15086,-0.012775 -1.3899,0.016057,-0.010577,0.85125,-2.4272,1.7693,0.91662,-0.76547,-1.4608,-0.61011,1.0126,0.60154,-0.23891,-0.19776,-0.56864,0.54341,0.88803,0.53428,-0.14916,-1.0222 0.3053,-1.0958,0.48175,0.79492,-0.88451,0.04752,1.2538,-0.64626,-1.1343,-0.084299,0.78951,0.0088396,-0.16962,0.45687,0.95381,-0.0085304,0.37119,0.48259,-0.2844,-0.13212 0.44812,-0.90777,0.71015,0.608,-1.1026,-0.45086,1.2343,-0.45477,-1.122,0.075169,0.17151,0.29845,-0.61726,0.91099,0.71105,0.193,0.33562,0.56482,-0.034486,-0.020567 0.37067,-0.86109,0.4883,0.52311,-1.2711,-0.84567,0.50829,-0.40805,-1.2972,-0.0564,-0.28544,0.014806,-0.23781,0.6221,0.80644,0.18469,0.31815,-0.010182,0.20405,0.031976 0.19359,-1.2218,0.48333,0.78435,-0.90751,0.095895,1.1971,-0.51743,-1.1631,-0.21151,0.54619,0.19528,-0.20375,0.40064,1.2067,0.16013,0.057778,0.61662,-0.14018,-0.03163 -0.052402,-0.10295,-0.15537,0.52963,-0.666,0.52142,0.77733,-0.28934,-0.12309,-0.54637,0.4342,0.52972,0.52297,-0.19213,-0.11778,-0.035634,0.61999,0.27337,-0.02918,-0.17122 0.36382,-1.2558,0.76422,0.79739,-1.1336,-0.10948,1.2658,-0.58424,-1.5262,-0.18789,0.65102,0.073526,-0.2633,0.63203,1.0106,0.22127,0.21569,0.5691,-0.25626,-0.015818 0.42135,-0.65882,0.4131,0.85535,-1.4247,0.48933,1.9862,-0.67638,-0.76509,-0.35624,0.85248,1.1863,0.15614,0.20145,0.35477,-0.39311,0.7855,0.66828,0.20966,-0.34924 -0.033927,-0.29072,-0.017705,1.0479,-1.5558,0.95037,1.7234,-0.39757,-0.42018,-1.1347,0.9405,1.0524,0.48046,0.018338,-0.0065389,-0.026796,0.91669,0.65905,-0.012462,-0.55671 0.38931,-1.0957,0.61311,0.45927,-0.96373,-0.48387,0.90892,-0.39304,-1.2712,-0.032719,0.056318,-0.02885,-0.26901,0.84484,0.84061,0.33252,0.35407,0.41763,-0.13133,-0.076616 -1.0453,-1.2259,-0.44956,0.87783,-1.5858,-0.56648,2.6992,-0.67688,-0.6089,-0.39875,0.33828,0.40079,-0.30495,0.66272,0.3434,0.34861,-0.02782,0.63746,0.3258,-0.11909 0.33529,-0.83228,0.32248,0.74701,-0.98966,-0.45086,1.0768,-0.46615,-0.82004,0.018256,0.087996,0.38802,-0.73772,0.54235,0.87804,0.035433,0.50202,0.28301,0.032602,-0.026964 -0.092161,0.63648,0.51667,2.0813,-1.6266,0.31938,1.8879,-0.079966,-1.2505,0.13123,-0.18272,0.73235,-0.71668,-0.47047,-0.19999,0.23346,0.71511,0.72418,0.36055,0.51791 0.3842,-1.2988,0.66088,0.50064,-1.1752,-0.46406,0.97572,-0.4952,-1.3749,-0.1405,0.17607,-0.090497,-0.21527,0.86683,0.87704,0.2495,0.41864,0.46099,-0.26375,-0.1734 0.26107,-1.2589,0.52549,0.46379,-1.3029,-0.78649,0.44933,-0.2937,-1.4291,-0.43701,-0.3626,-0.20117,-0.049927,0.63319,0.72988,0.15195,0.35695,0.12364,-0.10704,0.15755 0.30358,-0.65765,0.37919,0.33872,-0.4628,-0.036513,0.81192,-0.3363,-0.76114,0.014862,0.41118,0.11999,-0.17599,0.46211,0.6276,0.052267,0.27589,0.38529,-0.11745,-0.18256 0.49861,-1.0668,0.59759,0.74889,-1.2208,-0.43008,1.4268,-0.48686,-1.3617,-0.069917,0.15069,0.37985,-0.65995,0.76981,1.0176,0.10729,0.4255,0.50112,0.0037577,-0.081568 0.3158,-0.30605,0.38027,1.1905,-1.0144,0.62394,1.5751,-0.67278,-1.0551,-0.78961,1.0839,0.63264,0.05056,-0.12533,0.19879,-0.2781,0.43633,0.50052,-0.031424,-0.16898 0.35421,-1.4933,0.94495,0.60816,-1.4133,-0.43732,1.4037,-0.62118,-1.4917,-0.093073,0.31111,-0.082932,-0.14942,0.90268,0.88958,0.30602,0.32951,0.58131,-0.26609,-0.24062 0.48478,-0.71913,0.43743,0.74012,-0.79603,0.14729,1.4898,-0.55776,-0.97119,-0.18218,0.81503,0.59955,-0.32528,0.3553,0.72559,-0.20137,0.56271,0.47378,-0.065145,-0.15156 0.43031,-1.3868,0.76976,0.9627,-1.6561,-0.52967,1.2182,-0.50701,-1.9795,-0.26033,0.24296,-0.032236,-0.22353,0.52344,1.0329,0.24147,0.38952,0.35189,-0.17078,0.11544 0.26499,-0.41425,0.27909,0.40031,-0.44474,0.014677,0.91349,-0.26768,-0.45323,-0.029118,0.32983,0.41234,-0.39776,0.28039,0.46074,-0.072607,0.31918,0.3533,0.040267,-0.064982 0.43137,-1.2329,0.58632,1.104,-1.6923,-0.86053,1.0636,-0.43618,-1.7284,0.038846,-0.11738,0.2454,-0.45245,0.70398,1.0622,0.162,0.29692,0.28229,0.073608,-0.0030733 0.22404,-0.56885,0.39799,0.72813,-0.70044,0.54913,1.4025,-0.57449,-0.39609,-0.074794,0.92853,0.72459,0.16889,-0.041451,0.43886,-0.26635,0.45697,0.53904,0.10588,-0.26711 0.19943,-1.4697,0.88352,0.44665,-1.9797,-0.94386,0.39783,-0.29613,-1.8066,-0.77315,-0.35962,-0.076312,0.13702,0.37106,0.62633,-0.033064,0.33334,0.18912,-0.035155,0.45334 -0.19546,0.0075049,-0.012805,0.73889,-1.1368,0.74641,0.95722,-0.55353,-0.12455,-0.57416,0.54993,0.63305,0.76535,-0.13309,-0.33382,0.089582,0.59598,0.24742,-0.041367,-0.26622 0.25282,-1.3506,0.82087,0.60915,-1.6077,-1.1531,0.58424,-0.28341,-1.4764,-0.24673,-0.55356,-0.071515,-0.16825,0.79387,0.68461,0.32328,0.36786,0.30599,-0.02171,0.14251 0.39629,-1.1637,0.6066,0.7228,-0.94854,-0.19534,1.1013,-0.52771,-1.4589,-0.087015,0.58775,-0.091144,-0.15031,0.73924,0.82264,0.18493,0.32779,0.371,-0.29627,-0.23702 0.39942,-1.1341,0.59882,0.94559,-1.2064,0.22508,1.5667,-0.79859,-1.3919,-0.030236,1.002,0.2855,0.048964,0.39837,0.83535,-0.02327,0.36535,0.5367,-0.24843,-0.33811 0.41182,-1.3331,0.9809,0.90382,-1.7486,-0.94942,1.1972,-0.38852,-1.698,-0.075019,-0.16068,0.24375,-0.47703,0.84402,0.95646,0.41549,0.33547,0.48352,0.010724,0.10877 0.12523,-0.45375,0.10931,0.79778,-1.055,0.74723,1.7323,-0.38594,-0.54769,-0.79096,0.69881,1.1174,0.36772,0.013493,0.39852,-0.066284,0.70143,0.64046,0.29061,-0.43285 0.0050221,-0.34331,0.050416,0.54704,-0.68514,0.60811,1.1018,-0.48134,-0.098082,-0.44683,0.62253,0.70612,0.42615,-0.21032,0.15598,-0.22471,0.50762,0.41551,0.10089,-0.33655 0.40434,-1.4179,0.6699,0.81215,-1.3593,-0.16905,1.6815,-0.6327,-1.4215,-0.075699,0.43569,0.27704,-0.34463,0.69223,1.1387,0.13837,0.41246,0.68775,-0.14229,-0.30303 0.13826,-1.4241,0.95447,1.0861,-1.7952,-1.4383,0.32861,-0.35466,-1.7629,-0.11298,-0.35204,-0.017878,0.24681,0.72476,0.70407,0.36515,0.24468,-0.11314,0.27267,0.1562 0.19763,-0.86683,0.67082,0.54017,-1.213,-1.0999,0.35407,-0.24565,-0.97299,0.044018,-0.57692,-0.025777,-0.11615,0.75987,0.36559,0.28883,0.36989,0.24783,0.32619,0.15443 0.31048,-0.57628,0.24341,1.0336,-0.83293,0.54204,1.6063,-0.61194,-0.82312,-0.56468,1.0972,0.70412,-0.12419,-0.08189,0.51506,-0.25314,0.63047,0.6414,-0.2003,-0.11287 0.21587,-0.66869,0.13216,1.0889,-1.3115,0.70467,2.1183,-0.48809,-0.66457,-0.77882,0.71552,1.2113,0.041483,-0.015881,0.46853,-0.33528,0.94811,0.84932,0.048509,-0.34265 0.34631,-1.0631,0.52366,0.7156,-0.92186,-0.26212,1.2868,-0.6595,-1.0871,-0.0018793,0.5632,-0.076907,-0.39666,0.73282,0.87196,0.083891,0.51915,0.39768,-0.13682,-0.3352 -0.61376,-0.70116,-0.087673,1.8384,-1.4238,1.1529,2.0859,-0.43172,-0.92416,-0.33285,0.35841,0.48,-0.09231,-0.25834,0.080519,0.2821,0.60027,1.4974,0.21308,-0.22375 0.51095,-0.88583,0.44335,1.3757,-1.8669,-0.26384,1.9939,-0.5965,-1.5544,-0.4749,0.49638,0.79379,-0.60744,0.26786,0.86072,-0.0037723,0.70906,0.61213,-0.038837,0.09644 0.40831,-0.88556,0.44413,0.66769,-0.7514,-0.032619,1.313,-0.51401,-1.0149,-0.042245,0.5996,0.38595,-0.38346,0.47108,0.94314,-0.0072891,0.45815,0.39387,-0.12291,-0.074951 -0.16038,-1.3211,0.90861,0.69131,-1.9902,-1.4961,-0.30928,-0.14669,-1.3685,-0.45244,-0.74777,0.2161,0.74261,0.052877,0.38203,-0.066873,0.1226,-0.010859,0.27214,0.38253 0.39652,-0.52332,0.30246,0.49879,-0.61942,0.18175,1.1596,-0.36008,-0.56014,-0.091607,0.54824,0.74318,-0.23296,0.26263,0.49958,-0.21461,0.49875,0.52665,-0.015352,-0.07598 0.17632,-0.78509,0.52865,1.1248,-1.7726,0.7301,2.3812,-0.39571,-0.74401,-0.99299,0.79122,1.2321,-0.10125,0.33009,0.73792,-0.14331,0.8254,0.82007,0.0463,-0.3386 0.3283,-1.3872,0.7493,0.87782,-1.7205,-1.0502,0.77578,-0.51095,-1.738,-0.063198,-0.21809,-0.053089,-0.15458,0.71507,0.99596,0.44466,0.21451,0.083777,-0.018578,0.07137 0.2973,-1.4895,1.0588,0.91794,-1.7995,-0.78354,1.565,-0.48367,-1.5614,-0.13973,-0.091678,0.046324,-0.56011,0.78231,1.0821,0.39415,0.29228,0.69135,-0.030406,0.18642 0.1939,-0.56542,0.19179,0.64077,-1.0474,0.63534,1.3522,-0.66022,-0.50796,-0.56969,0.95465,0.89687,0.32686,-0.13594,0.43432,-0.13493,0.58681,0.69651,0.003181,-0.40154 0.48837,-1.04,0.88606,0.77062,-1.917,-0.90674,1.4168,-0.39187,-1.4564,-0.024341,-0.2831,0.43821,-0.5958,0.74461,0.86033,0.24173,0.40596,0.62097,0.067964,0.18917 -0.31461,-0.28163,0.028365,0.25488,-0.74029,0.53337,0.78999,-0.46714,-0.15167,-0.29922,0.5631,0.1169,0.42333,-0.32885,-0.13894,0.067321,0.20949,0.55369,0.27549,-0.41668 0.060292,-0.49382,-0.017114,0.96372,-1.2255,0.72578,1.8337,-0.74515,-0.30027,-0.48005,0.97642,1.1218,0.42425,-0.21638,0.2727,-0.081333,0.92451,0.73656,0.19379,-0.32439 0.62654,-0.75536,0.61767,0.76422,-1.281,-0.32211,1.6197,-0.53309,-1.284,-0.010026,0.43823,0.54519,-0.61388,0.72735,0.69911,-0.0023629,0.66254,0.47954,0.066012,-0.066724 0.34839,-1.1884,0.8196,1.3828,-1.8078,0.22861,2.0821,-0.96648,-1.5246,-0.10416,1.0247,0.406,-0.040693,0.36898,0.83301,-0.056053,0.40472,0.44438,-0.021685,-0.23989 0.303,-0.96388,0.66454,0.52781,-0.86706,0.15828,1.4937,-0.73038,-0.78881,0.028742,0.82121,0.14583,-0.054423,0.49365,0.71432,-0.064637,0.44903,0.65251,-0.10798,-0.47186 0.42044,-0.93839,0.66567,1.037,-1.2771,0.25342,2.063,-0.73857,-0.929,-0.05558,0.88782,0.77185,-0.1726,0.37746,0.84592,-0.073078,0.66468,0.82786,0.16553,-0.29678 -0.23242,-1.0293,0.89717,0.46632,-1.9226,-1.3367,-0.5011,-0.017216,-1.1835,-0.73392,-0.52514,0.55927,0.76415,-0.20361,0.028949,-0.57756,0.31948,-0.048128,0.45975,0.30306 0.47769,-0.87845,0.4506,0.73691,-0.96318,-0.41343,1.1634,-0.49779,-1.2889,0.0068587,0.24189,0.30553,-0.49674,0.64264,0.95415,0.14537,0.38388,0.19972,-0.013137,-0.018226 0.17139,-0.17462,0.1362,0.69964,-1.1219,0.66798,1.3977,-0.23641,-0.20263,-0.71301,0.73433,1.1587,0.39402,-0.075002,-0.023881,-0.0035291,0.82276,0.54139,0.024436,-0.20826 0.29767,-0.4143,0.10049,0.95602,-0.92266,0.592,1.573,-0.56777,-0.5869,-0.69445,0.89485,0.98101,0.11,-0.1206,0.39458,-0.36037,0.75034,0.60393,0.016905,-0.11997 0.57667,-1.0779,0.68773,0.34417,-1.2303,-0.46919,1.1227,-0.45769,-1.5491,-0.081112,0.094256,0.13919,-0.08662,0.8823,0.68847,0.25967,0.47497,0.43995,-0.17838,-0.22956 0.43092,-1.1331,0.63959,0.69548,-1.0072,0.010922,1.4509,-0.63563,-1.157,0.083139,0.71377,0.30097,-0.13452,0.63427,0.94992,0.056926,0.44938,0.64595,-0.10326,-0.35736 0.38146,-0.99905,0.51634,0.61869,-0.88873,0.077508,1.5063,-0.65053,-0.88727,0.070582,0.70911,0.35632,-0.17668,0.52728,0.83592,-0.036707,0.51681,0.62417,-0.081386,-0.42599 -0.18464,-0.98595,0.77396,0.47507,-1.7136,-1.3079,-0.45259,-0.054141,-1.0135,-0.67979,-0.6898,0.31582,0.52569,-0.098578,0.12912,-0.38154,0.17325,-0.0026856,0.44785,0.42269 0.073056,-0.34851,-0.091449,0.69424,-1.0291,0.70125,1.3576,-0.39514,-0.26891,-0.74157,0.75409,1.0377,0.44472,-0.18469,0.12405,-0.0087414,0.81608,0.65812,0.06238,-0.37534 -0.65953,-0.48643,1.5286,0.53897,-2.3493,-1.8111,-0.4684,-0.053873,-0.79716,-0.15341,0.13718,0.53877,1.5301,-0.17899,-0.24564,-0.53184,0.42522,0.15334,0.39882,-0.22411 0.51175,-1.0063,0.73328,0.79928,-1.2911,-0.0062959,1.868,-0.51952,-1.2331,-0.28086,0.5378,0.73331,-0.50424,0.55887,0.96462,-0.034872,0.55414,0.65017,0.0041453,-0.12034 -0.13993,-1.7032,0.93245,0.69316,-1.9301,-1.2066,-0.1112,-0.079163,-1.6808,-0.70495,-0.57958,0.12374,0.42728,0.20444,0.47279,0.018798,0.16072,-0.034367,0.009631,0.53516 0.311,-1.2251,0.73457,0.52593,-1.4674,-1.0406,0.54222,-0.30572,-1.4762,-0.15809,-0.54883,0.016559,-0.090237,0.79459,0.73101,0.3457,0.29512,0.28563,0.01333,0.17675 0.2049,-0.90424,0.17297,0.85037,-0.81665,-0.11297,1.1241,-0.72086,-0.97666,-0.19479,0.48523,-0.15697,-0.24774,0.42555,0.81619,-0.10959,0.33872,0.26627,-0.24096,-0.23628 0.20986,-1.0607,0.47015,0.25916,-0.85931,-0.44069,0.41519,-0.31162,-1.0704,-0.2202,-0.067865,-0.17408,0.069897,0.6368,0.67151,0.26621,0.16579,0.14813,-0.25477,0.00063483 0.12567,-0.27747,-0.014425,0.67658,-1.2054,0.6414,1.3774,-0.36599,-0.23763,-0.84719,0.73365,1.1314,0.36517,-0.054202,0.10924,-0.029173,0.86797,0.56534,0.035432,-0.31886 0.11976,-0.45152,0.014262,1.0456,-1.2949,0.80244,1.8567,-0.46468,-0.48837,-1.0159,0.87439,1.1963,0.22722,-0.11243,0.3388,-0.16004,0.89179,0.72994,0.019254,-0.36595 0.27025,-0.46857,0.41386,1.0333,-1.4457,0.4413,2.3766,-0.4869,-0.52787,-0.57262,0.71103,1.2045,-0.19875,0.16408,0.47795,-0.026531,0.91021,0.63686,0.29736,-0.22886 0.22544,-1.1322,0.53481,0.53585,-1.0855,-0.82736,0.54141,-0.20999,-1.2736,-0.16093,-0.37671,-0.19362,-0.21882,0.67609,0.83645,0.32143,0.34472,0.20986,-0.10048,0.0094402 0.24458,-0.49237,0.20326,0.69919,-0.95086,0.64522,1.524,-0.49295,-0.40615,-0.66421,0.80499,1.0147,0.26586,-0.070758,0.34866,-0.27379,0.81094,0.61957,0.044533,-0.3196 0.31339,-1.1593,0.64365,0.44088,-0.90895,-0.42192,0.79892,-0.36772,-1.3292,-0.11575,0.084053,-0.12892,-0.1218,0.82125,0.84668,0.32696,0.21921,0.36906,-0.1828,0.012299 0.45565,-0.40935,0.2017,0.79538,-1.0066,0.24003,1.5246,-0.6619,-0.5919,-0.25737,0.75192,0.89106,-0.073825,0.15419,0.36429,-0.49023,0.79855,0.52415,0.096358,-0.069934 -0.037265,-1.1231,0.84614,0.49745,-1.7475,-1.4309,-0.12632,-0.15607,-1.1627,-0.44585,-0.82488,0.073716,0.50145,0.22921,0.28533,-0.015377,0.23232,0.12417,0.30042,0.3649 0.33757,-1.115,0.54646,0.45363,-0.90506,-0.17288,1.1143,-0.59472,-1.0665,0.035692,0.45175,0.0008901,-0.13696,0.70577,0.90812,0.18024,0.30097,0.44993,-0.23871,-0.35198 0.28599,-0.49018,0.15662,0.77057,-0.94316,0.48497,1.5989,-0.46435,-0.37948,-0.44948,0.69042,1.0949,-0.029735,0.012071,0.38754,-0.35918,0.71771,0.57212,0.12027,-0.20633 0.19646,-0.90568,0.8426,0.51805,-1.4048,-1.1766,0.61941,-0.24061,-1.0067,0.1254,-0.67265,0.025734,-0.15652,0.74366,0.36273,0.38251,0.27846,0.39457,0.23641,0.14984 0.076482,-0.932,0.47862,0.91528,-1.0232,0.66421,1.5258,-0.81252,-0.63948,-0.26873,1.0392,0.43475,0.22981,-0.014661,0.79954,-0.26811,0.37517,0.68664,-0.027411,-0.20216 -0.27607,-0.20643,0.046616,0.86574,-1.4056,0.95599,1.4609,-0.76208,-0.13617,-0.49212,0.60385,0.91177,0.93454,-0.2039,-0.13862,0.22846,0.77806,0.40173,0.29194,-0.33188 -0.058143,-0.62056,0.30822,1.152,-1.8356,0.96319,2.2009,-0.96787,-0.49208,-0.51371,1.0238,1.0791,0.71056,-0.086114,0.23448,0.031034,0.86888,0.60053,0.31327,-0.44723 -0.27158,-1.0408,1.0368,0.65299,-2.0275,-1.6074,-0.4871,-0.11258,-1.1458,-0.48566,-0.45252,0.46338,1.1485,-0.15405,0.076739,-0.3947,0.33566,-0.087123,0.44196,0.12266 0.47054,-0.72489,0.31113,1.0363,-1.0985,-0.064745,1.1033,-0.27223,-1.2951,0.061961,0.3631,0.9688,-0.42973,0.37055,0.62522,0.056634,0.37233,0.10559,-0.13943,0.28004 0.35549,-0.99694,0.52058,0.5655,-1.2481,-0.95168,0.48636,-0.34291,-1.3332,-0.045604,-0.41816,-0.037758,-0.11924,0.76304,0.70406,0.23592,0.38296,0.059231,0.12455,0.041937 0.23322,-0.42289,0.26309,0.8568,-0.90017,0.68895,1.6256,-0.40908,-0.3912,-0.61552,0.88879,1.0882,0.11242,-0.096266,0.34527,-0.22884,0.66765,0.64867,0.0059664,-0.20271 0.43034,-0.58888,0.30635,0.61809,-0.72778,-0.17483,1.1842,-0.40824,-0.87745,-0.070085,0.31998,0.47078,-0.52137,0.41136,0.6917,-0.035159,0.53635,0.34212,0.021554,0.055271 0.34367,-1.0055,0.58746,1.0035,-1.1948,0.20994,1.9112,-0.6182,-0.91997,-0.38235,0.68063,0.86798,-0.49979,0.3431,1.1421,-0.010647,0.52244,0.80333,0.064005,0.022408 0.23852,-0.49041,0.14588,1.1624,-1.0474,0.71707,1.8335,-0.64664,-0.57294,-0.69922,1.0703,1.0175,0.095283,-0.18268,0.41685,-0.35683,0.82127,0.6648,-0.1112,-0.098783 0.3839,-1.0506,0.57883,0.56249,-0.94143,0.052497,1.3611,-0.66106,-0.96818,0.086915,0.71037,0.24316,-0.066359,0.62491,0.75494,-0.039196,0.43189,0.65769,-0.13401,-0.50382 0.21142,-1.5222,0.78704,1.1766,-1.5957,-0.89369,0.75345,-0.43999,-1.9208,-0.091906,0.016189,-0.14359,-0.021263,0.5689,1.1181,0.47824,0.12832,-0.045573,-0.016493,0.24981 0.15267,-0.64428,0.39306,0.95478,-1.1299,0.78227,2.0577,-0.63111,-0.43998,-0.63117,0.94871,1.0944,0.18984,-0.033719,0.60482,-0.18366,0.71461,0.69742,0.18993,-0.34535 0.37979,-1.1116,0.85366,1.3254,-2.0251,-0.074713,2.1908,-0.45513,-1.2995,-0.075628,0.54164,0.71626,-0.57748,0.69414,0.71568,-0.11221,0.49969,1.0139,0.012991,-0.2003 0.46949,-0.57991,0.34169,0.7629,-0.84888,0.062842,1.4929,-0.54785,-0.77371,-0.23112,0.67127,0.77444,-0.44447,0.25512,0.72205,-0.18444,0.67515,0.41629,-0.062252,0.077895 0.20499,-1.7509,0.94801,0.8384,-1.6942,-0.88879,0.91892,-0.38086,-1.7289,-0.28807,-0.12755,-0.19531,-0.14268,0.81492,0.87854,0.36295,0.36234,0.37335,-0.22249,0.14458 0.25546,-0.4965,0.41307,0.89741,-0.82082,0.47083,1.6262,-0.77927,-0.41989,-0.14036,1.0572,0.69367,0.057103,-0.0098883,0.48874,-0.33885,0.55477,0.45022,0.12185,-0.23126 0.31201,-1.5098,0.84384,0.69672,-1.2748,-0.16488,1.2606,-0.56433,-1.5308,-0.089299,0.51521,-0.079356,-0.040704,0.72853,1.02,0.31809,0.22744,0.61797,-0.33574,-0.2018 0.19751,-0.463,0.13725,0.56533,-0.59628,0.39876,1.2412,-0.43664,-0.18447,-0.18992,0.66936,0.85171,-0.025618,-0.10434,0.46395,-0.15948,0.55556,0.49963,0.043628,-0.15908 0.39363,-0.72725,0.32062,0.50036,-0.63299,0.018331,1.0508,-0.4976,-0.88951,-0.11625,0.6165,0.27017,-0.27598,0.42128,0.70117,-0.12252,0.4485,0.38078,-0.15353,-0.2254 0.43138,-0.3858,0.31858,0.67229,-0.69443,0.044919,1.3151,-0.45077,-0.65328,-0.13814,0.58166,0.64882,-0.42716,0.25054,0.4827,-0.21078,0.54287,0.40944,0.055438,0.043573 0.31126,-0.7609,0.56568,0.57128,-0.90426,0.4013,1.4974,-0.74448,-0.61169,-0.057927,0.93396,0.55077,0.14348,0.24145,0.57316,-0.25203,0.43894,0.62347,0.068642,-0.45284 -1.0348,-0.66834,-0.29618,1.4252,-1.1263,1.24,1.3371,-0.48935,-0.32749,0.012661,0.60969,0.55616,0.11003,-0.41188,-0.075804,0.55252,0.4054,0.87187,0.19748,-0.51087 0.41593,-1.1265,0.82401,1.3183,-1.9992,0.14017,2.0465,-0.51399,-1.6175,-0.54459,0.61743,0.9344,-0.38901,0.26818,0.95972,0.093504,0.45216,0.72734,-0.011602,0.10822 0.10427,-0.28628,0.048923,0.61048,-0.67768,0.56697,1.1657,-0.40904,-0.16732,-0.53309,0.61529,0.80986,0.30543,-0.19342,0.16923,-0.24279,0.61853,0.43254,0.11127,-0.26131 0.036815,-1.6044,1.2331,0.88201,-2.1857,-1.5083,0.43535,-0.2326,-1.7218,-0.26564,-0.623,0.088222,0.15608,0.61518,0.64178,0.31249,0.17946,0.38846,0.17393,0.45454 0.23516,-1.5414,0.74891,0.64417,-1.2836,-0.42962,0.74606,-0.31179,-1.6836,-0.22436,0.14098,-0.1664,0.059427,0.69698,0.90765,0.4317,0.1522,0.25621,-0.37027,0.0045816 0.39577,-0.79582,0.67663,1.0751,-1.5446,0.38211,2.108,-0.66944,-0.82734,-0.37915,0.9158,1.118,-0.16546,0.37771,0.8506,-0.044323,0.60287,0.72989,0.17223,-0.18568 0.4234,-1.3343,0.91376,0.81162,-1.7492,-0.96666,1.0496,-0.38945,-1.7374,-0.070746,-0.24615,0.18262,-0.36014,0.89999,0.87473,0.33876,0.31029,0.42909,0.0066761,0.14869 0.3292,-0.94305,0.58744,0.82042,-1.1718,0.38707,1.9308,-0.82433,-0.7974,-0.18121,0.94987,0.73034,0.071997,0.23048,0.84549,-0.088371,0.57875,0.68316,0.10845,-0.31353 0.42218,-0.97134,0.56757,0.55154,-0.9047,-0.25553,1.2007,-0.45701,-1.0877,-0.012632,0.31664,0.27775,-0.52612,0.72514,0.89688,0.15597,0.40372,0.53956,-0.10421,-0.12843 0.52454,-0.29479,0.37493,0.78029,-0.78849,0.2198,1.5358,-0.5481,-0.87864,-0.33917,0.81716,0.68875,-0.19243,0.22916,0.29704,-0.36379,0.61456,0.44623,0.060277,-0.11602 0.24017,-1.4338,0.95765,1.4971,-2.5681,-0.57841,1.9191,-0.66593,-1.7948,-0.085764,0.36629,0.27145,-0.42009,0.37984,0.85867,0.05478,0.29456,0.48846,-0.15097,0.085804 0.15575,-1.0733,0.33287,0.98231,-1.2691,0.5628,1.8984,-0.7143,-0.92843,-0.74139,0.79668,0.72433,-0.070657,0.15579,1.0078,-0.17253,0.57467,0.82947,0.013581,-0.29599 0.27701,-0.93536,0.3529,0.49821,-0.69489,-0.21672,0.73744,-0.43128,-1.0482,-0.085236,0.38059,-0.16129,-0.12853,0.6094,0.71067,0.10644,0.26995,0.17907,-0.29694,-0.22341 0.42327,-0.63274,0.38324,0.69368,-0.84701,-0.32176,1.2209,-0.41025,-0.91412,0.032536,0.23414,0.41877,-0.69767,0.54349,0.68337,0.024882,0.46366,0.31434,0.046797,-0.013742 0.25172,-1.1726,0.64774,0.3842,-1.2598,-0.88869,0.43225,-0.21763,-1.2278,-0.27141,-0.4372,-0.017115,-0.0049218,0.8009,0.41254,0.16521,0.42818,0.18446,0.038216,0.068866 0.31822,-1.0359,0.59819,1.3104,-1.9755,0.14533,2.3179,-0.49306,-1.1467,-0.5322,0.49968,1.0432,-0.52097,0.35787,0.90918,-0.018817,0.66624,0.99196,0.086889,-0.088795 0.077752,-1.1791,0.74212,1.2225,-1.8262,0.76804,1.6911,-0.90225,-1.6475,-0.66791,0.90793,0.35599,0.28709,-0.063665,0.89703,-0.068217,0.11001,0.74051,0.0079336,0.099855 0.37339,-0.88313,0.50278,0.62839,-1.1315,-0.57385,1.2236,-0.50804,-1.0821,0.060696,0.069822,-0.065589,-0.54821,0.86698,0.49911,0.072724,0.50158,0.33379,-0.06929,-0.32169 0.1573,-1.0448,1.3573,1.2877,-2.4824,-1.7548,0.86953,-0.14798,-1.762,0.17973,-0.30874,0.34795,0.2684,0.46916,0.51028,0.3449,0.36115,0.34039,0.29275,0.10441 0.21876,-0.58513,0.28586,1.2252,-1.1901,0.81789,1.9394,-0.89726,-0.59193,-0.51917,1.2332,0.98862,0.2589,-0.17753,0.4246,-0.44903,0.76821,0.57979,-0.020925,-0.2103 0.41415,-1.3077,0.75215,0.70291,-1.3553,-0.13011,1.4384,-0.67049,-1.394,-0.178,0.60867,0.25477,-0.34139,0.66609,1.1016,0.19496,0.32489,0.60127,-0.17552,-0.15115 -0.12558,-1.3447,0.72946,0.74028,-1.6874,-1.2673,-0.29449,-0.15429,-1.3647,-0.51452,-0.5723,0.17494,0.57728,0.057881,0.46438,-0.05831,0.19797,-0.24968,0.31059,0.40069 0.37851,-1.3926,0.8919,1.2151,-1.6657,-1.0288,1.2636,-0.46187,-1.7683,0.026106,-0.041718,0.072751,-0.4493,0.79941,1.0439,0.434,0.42652,0.26243,0.067466,0.16382 0.15638,-1.6766,0.95254,0.46559,-1.9197,-0.99452,0.46571,-0.29886,-1.6843,-0.4946,-0.44091,-0.067464,0.2054,0.56143,0.71041,0.2368,0.27255,0.20441,-0.16376,0.35308 0.25637,-0.4658,0.28058,0.73984,-0.712,0.50989,1.5333,-0.46768,-0.33588,-0.37518,0.81164,0.97571,-0.053467,-0.04992,0.48248,-0.27161,0.58402,0.5222,0.074117,-0.15132 0.22994,-0.43366,0.30017,0.42386,-0.4643,0.17729,0.99674,-0.51082,-0.37839,0.049888,0.67328,0.28492,0.028783,0.19519,0.33643,-0.19559,0.37878,0.27852,-0.033193,-0.23608 0.42663,-0.56813,0.32126,0.84832,-0.80359,0.01939,1.5612,-0.52811,-0.85825,-0.25376,0.62412,0.56907,-0.5865,0.27314,0.64986,-0.21121,0.64957,0.47226,-0.016258,0.041888 -0.43405,0.10824,-0.12124,1.5938,-1.6396,1.4403,1.4297,-0.32978,-1.1102,-1.0153,0.40737,0.56169,0.19188,-0.11065,-0.43622,0.22813,1.1291,0.93664,-0.23211,-0.264 0.34492,-0.97213,0.64766,0.81838,-1.3673,-1.1497,0.77089,-0.31897,-1.2875,0.16769,-0.45693,-0.0021792,-0.40108,0.87559,0.60701,0.26771,0.46134,0.1654,0.19975,0.033759 0.42675,-1.0929,0.64891,0.59007,-1.4613,-1.0173,0.8037,-0.26277,-1.5705,0.010521,-0.47489,0.031584,-0.072627,0.65887,0.82218,0.30064,0.44783,0.065135,-0.017313,-0.041731 0.1954,-0.50301,0.36406,0.54841,-0.68282,0.43914,1.38,-0.53247,-0.25721,0.022453,0.77446,0.78386,0.21866,-0.01034,0.37973,-0.13396,0.49396,0.43204,0.19391,-0.25305 0.34874,-1.0468,0.47542,0.53507,-0.91042,-0.38045,0.93776,-0.5341,-1.2062,-0.047622,0.29495,-0.16927,-0.19822,0.75977,0.80134,0.19312,0.35196,0.20469,-0.21262,-0.28236 0.25652,-1.6078,0.7325,0.62118,-1.4323,-0.47284,0.87844,-0.43445,-1.7009,-0.27424,0.11403,-0.19043,-0.052731,0.72301,1.0269,0.36605,0.13765,0.33366,-0.40559,-0.071497 0.35381,-0.97533,0.47868,0.36699,-0.85942,-0.40981,0.81097,-0.38723,-1.1355,-0.034901,0.053755,-0.036857,-0.24091,0.7701,0.73634,0.23756,0.30696,0.29362,-0.18988,-0.21552 -0.010165,-1.0578,0.71305,1.4269,-2.1518,0.81708,2.4243,-0.98263,-0.87109,-0.32225,1.177,0.81291,0.24913,0.064943,0.52165,0.31116,0.60735,0.67726,-0.0010732,-0.33468 0.29287,-0.96177,0.4246,0.87262,-0.97645,0.25006,1.1374,-0.59692,-1.2663,-0.37291,0.91303,0.32642,-0.10149,0.1553,0.95275,0.11283,0.2586,0.55589,-0.21894,0.12752 0.34205,-0.52581,0.24986,0.45413,-0.65153,-0.23044,0.85571,-0.35007,-0.6939,-0.050848,0.15959,0.33737,-0.50351,0.41119,0.59965,-0.042556,0.37971,0.21465,0.051088,-0.049129 0.39285,-0.8991,0.51606,0.60546,-0.84862,0.066354,1.5261,-0.51652,-0.85459,-0.10525,0.57778,0.55676,-0.45076,0.46811,0.88899,-0.067742,0.50674,0.60547,-0.024843,-0.16362 0.33995,-0.44613,0.26999,0.94838,-0.65949,0.36778,1.6001,-0.48652,-0.64953,-0.38451,0.83938,0.80571,-0.30206,-0.00602,0.59068,-0.2977,0.57591,0.44697,-0.021609,0.056189 0.24241,-0.6761,0.53941,0.45638,-1.1568,-1.0263,0.25385,-0.29672,-0.9026,0.054089,-0.5121,0.042876,-0.01864,0.58942,0.39648,0.14557,0.28501,0.12631,0.303,-0.034278 0.022529,-1.4641,0.82918,0.60772,-1.8618,-1.2737,0.014126,-0.10865,-1.6101,-0.61188,-0.71063,0.056369,0.33999,0.37068,0.45007,-0.0088871,0.22108,0.0095942,0.16731,0.4014 0.36275,-0.96937,0.35677,0.40015,-0.889,-0.22438,0.86672,-0.51354,-1.1208,-0.061202,0.30569,0.030202,-0.049603,0.66448,0.76241,0.054489,0.30531,0.19828,-0.18225,-0.3902 0.383,-1.2846,0.67445,0.42392,-1.1729,-0.39848,0.95586,-0.49567,-1.403,-0.18903,0.1864,-0.097173,-0.15343,0.83205,0.91095,0.22992,0.34728,0.45911,-0.24985,-0.18518 0.12382,-0.34401,0.13422,0.9537,-1.1595,0.64911,1.7371,-0.89248,-0.31733,-0.38942,0.90892,0.98922,0.52887,-0.13692,0.23438,-0.25731,0.84837,0.39241,0.19323,-0.18614 -0.072894,-1.1284,1.1632,0.55188,-2.0654,-1.6674,-0.088491,-0.23494,-1.1512,-0.35085,-0.65818,0.25603,0.73251,0.2623,0.10771,-0.038347,0.35864,0.20115,0.40752,0.2665 0.45437,-0.71528,0.55864,0.88362,-1.3857,0.050479,2.0582,-0.42031,-0.86894,-0.31871,0.45601,1.0728,-0.61089,0.47488,0.69129,-0.011997,0.65808,0.64853,0.032147,-0.11977 0.22855,-0.34685,0.23207,1.2649,-1.47,0.70046,2.0746,-0.78968,-0.63772,-0.46977,1.0316,1.0565,0.38074,-0.0481,0.083886,-0.3842,0.97017,0.37353,0.16076,-0.14195 0.27295,-0.95816,0.51882,0.40722,-0.6907,0.11347,1.0704,-0.5017,-0.82899,0.048496,0.65582,0.10424,0.008852,0.48274,0.74156,0.052273,0.31215,0.5507,-0.24819,-0.3571 0.22968,-0.36727,0.34908,0.45728,-0.82898,0.44408,1.2723,-0.49812,-0.0058415,-0.195,0.63553,1.0765,0.14021,-0.054073,0.34294,-0.15706,0.52114,0.53696,0.1956,-0.18076 0.39208,-0.52592,0.26276,0.74234,-0.70967,0.14365,1.3132,-0.49224,-0.63671,-0.17582,0.65138,0.77914,-0.37771,0.21674,0.65304,-0.22295,0.4579,0.38869,-0.00853,-0.013234 0.42089,-0.85237,0.77503,1.5771,-2.0708,-0.44985,2.1307,-0.39821,-1.4522,-0.22491,0.3794,0.78714,-0.7229,0.46386,0.84931,0.12483,0.55013,0.63754,0.050233,0.16137 -0.15154,-0.86196,0.89187,0.49034,-1.8697,-1.5051,-0.33768,-0.16116,-0.8128,-0.38155,-0.68634,0.20388,0.71768,0.015667,0.025648,-0.29186,0.25664,0.2258,0.55877,0.28924 -0.25911,-0.78462,0.019866,1.9755,-1.4079,1.0089,2.1141,-0.082477,-1.0087,-0.49101,0.59488,0.87088,-0.2577,-0.18132,0.28203,0.15469,0.46131,1.0551,-0.11187,-0.039047 0.43365,-1.3329,0.76822,0.83858,-1.3555,-0.55078,1.2742,-0.61962,-1.5364,-0.033013,0.37568,-0.083868,-0.28889,0.95273,0.81637,0.20773,0.48279,0.37879,-0.22712,-0.1712 0.1126,-0.81762,0.59221,1.1524,-1.7643,0.87098,2.2455,-0.96359,-0.82097,-0.45879,1.0374,0.93021,0.52449,-0.017327,0.46208,-0.16375,0.71626,0.57111,0.24402,-0.39551 0.14604,-1.0349,0.62731,0.40843,-1.2676,-1.0212,0.056989,-0.23978,-1.0852,-0.25828,-0.60137,0.023358,0.23371,0.60518,0.40779,0.1785,0.26455,0.15131,0.20512,0.28048 0.14308,-1.2019,1.0308,0.60346,-2.0094,-1.532,0.26621,-0.25194,-1.3843,-0.1688,-0.75737,0.15928,0.34962,0.53901,0.44575,0.17957,0.29741,0.36638,0.23391,0.24465 -0.086793,-1.0024,0.55804,0.34948,-1.3939,-0.9693,-0.31997,-0.048097,-0.99272,-0.6176,-0.61861,0.27457,0.47924,-0.013817,0.19978,-0.28936,0.11908,-0.14299,0.23834,0.35047 -0.3857,-1.5649,1.3613,1.2464,-2.65,-1.287,-0.13899,-0.0046291,-2.2968,-0.44699,-0.23222,0.15535,0.62092,-0.33355,0.30508,-0.018844,0.18028,-0.13194,0.075462,0.2858 0.34151,-0.58453,0.46212,1.0861,-0.79759,0.31287,1.8158,-0.6404,-0.93774,-0.19715,0.99574,0.41469,-0.27881,0.15866,0.47977,-0.2942,0.52898,0.41056,0.068767,-0.39136 -0.67574,-0.93679,0.18204,1.4059,-1.8697,0.55871,2.9225,-1.0894,-0.48223,-0.60044,0.29334,0.60784,0.64907,0.57062,0.49138,0.36175,0.50208,0.75534,0.034498,-0.60399 -0.33831,-1.3592,1.2924,0.90997,-2.4193,-1.8785,-0.31652,-0.09743,-1.5629,-0.50137,-0.55374,0.2443,0.75779,0.019996,0.18283,-0.19969,0.2827,-0.12027,0.39828,0.24765 -0.59934,-0.35211,-0.35338,0.37108,-0.9904,0.76076,0.96984,-0.34884,-0.16987,-0.5275,0.48772,0.41851,0.74095,-0.2069,-0.19028,0.26615,0.48198,0.49068,0.54261,-0.5763 0.079544,-0.83959,0.79503,0.52894,-1.8748,-1.5308,0.025601,-0.14693,-1.0358,-0.31383,-0.8044,0.055957,0.24028,0.32076,0.14833,-0.11455,0.36528,0.28837,0.36773,0.21141 0.42034,-0.81244,0.23662,0.70784,-0.83674,0.10987,1.1683,-0.60905,-0.99015,-0.29315,0.74883,0.48547,-0.31298,0.31631,0.79193,-0.23813,0.45257,0.42093,-0.20841,-0.16284 -0.055733,-0.23893,0.17285,0.86275,-1.5033,0.8339,1.671,-0.66627,-0.20185,-0.59885,0.8412,1.1846,0.82203,-0.19452,0.043611,0.17608,0.84214,0.27005,0.32129,-0.20182 0.19275,-0.56268,0.28414,1.1957,-1.4557,0.84937,2.1572,-0.58008,-0.61541,-0.77317,1.006,1.1313,0.096115,-0.065081,0.28746,-0.18689,0.95427,0.93722,0.036056,-0.34197 0.43786,-0.98927,0.42898,0.73778,-0.90771,-0.28893,1.1307,-0.51812,-1.2863,0.0033045,0.41039,0.20038,-0.44016,0.67324,0.93461,0.11014,0.35796,0.28469,-0.19055,-0.13278 0.21751,-0.46405,0.31599,0.79301,-0.82245,0.54062,1.532,-0.70277,-0.39855,-0.16182,0.95653,0.78052,0.29134,-0.067483,0.36049,-0.26195,0.59348,0.4306,0.10331,-0.2038 -0.0098845,-0.4768,0.14768,0.66837,-0.84546,0.7388,1.0973,-0.62797,-0.34221,-0.32536,0.85356,0.57678,0.55835,-0.31048,0.22882,-0.095706,0.43099,0.57516,0.07285,-0.32907 0.37631,-0.59795,0.28293,0.48643,-0.62599,0.03177,1.1415,-0.5529,-0.69013,-0.082172,0.63245,0.39179,-0.25119,0.32082,0.63832,-0.14698,0.5098,0.28495,-0.065605,-0.1972 0.11988,-0.75411,0.2097,0.68542,-1.297,0.66784,1.6951,-0.93692,-0.52028,-0.4549,0.97466,0.71762,0.58529,-0.042069,0.39292,-0.20311,0.83084,0.61079,0.14169,-0.54832 -0.013678,-1.7928,1.2632,0.94577,-2.5055,-1.3675,0.5057,-0.15994,-2.0321,-0.4092,-0.48734,0.018715,0.15328,0.36454,0.64659,0.1864,0.14302,0.28093,0.011044,0.36564 -0.12693,-1.1188,1.3462,0.72858,-2.3803,-1.8759,0.057315,-0.12003,-1.2789,-0.28978,-0.66364,0.22124,0.61714,0.26863,0.13392,0.058111,0.38624,0.3489,0.40053,0.33829 0.18987,-1.4188,0.80657,0.35476,-1.9818,-1.105,0.25901,-0.29248,-1.6306,-0.62702,-0.64901,-0.060644,0.21064,0.3757,0.63096,0.042316,0.27812,0.099311,-0.01703,0.4001 0.015682,-0.48633,0.26717,1.3571,-1.8658,1.0453,2.1271,-0.48003,-0.60276,-1.0463,1.0262,1.2278,0.23161,0.083645,0.21362,-0.13678,0.82333,0.83047,-0.018041,-0.41079 0.43833,-0.77103,0.40563,0.99244,-0.88237,-0.074924,1.1729,-0.51848,-1.3339,-0.23386,0.68553,0.53394,-0.30873,0.26443,0.89469,0.064133,0.29512,0.28246,0.011025,0.089867 0.092708,-1.3979,0.86957,0.74141,-1.5769,-1.1065,0.14849,-0.20731,-1.6821,-0.22484,-0.38119,0.094628,0.49612,0.49366,0.69642,0.46909,0.11329,-0.04915,0.16001,0.16452 0.45038,-1.1178,0.63762,0.57867,-1.1818,-0.33685,1.2921,-0.52026,-1.2585,-0.069563,0.17905,0.37342,-0.42885,0.73755,1.053,0.16973,0.37728,0.57923,-0.021156,-0.017575 0.40705,-0.45444,0.22235,1.0942,-0.94117,0.19447,1.9384,-0.4301,-0.76097,-0.20084,0.61535,0.9732,-0.46958,0.2321,0.43677,-0.35044,0.70289,0.41463,0.084409,-0.012095 0.2292,-0.58522,0.19106,1.2647,-1.5699,0.79052,2.1143,-0.39662,-0.74614,-0.85912,0.87022,1.3571,0.030695,0.044695,0.388,-0.17692,0.8438,0.80628,0.020717,-0.26541 0.18196,-0.89104,0.86367,0.57886,-1.4086,-1.2042,0.6048,-0.24682,-0.96873,0.20672,-0.68218,0.12049,-0.11291,0.76818,0.39168,0.32592,0.24667,0.39493,0.37145,0.12646 0.17327,-0.49118,0.37144,0.45363,-0.51465,0.32814,1.1242,-0.52773,-0.2768,-0.0073626,0.71392,0.43532,0.057263,0.045383,0.45789,-0.19119,0.36057,0.42966,0.12494,-0.2843 -0.18101,-1.1624,0.69005,0.67026,-1.5488,-1.1931,-0.27828,-0.13481,-1.0634,-0.25277,-0.67685,0.24841,0.66392,0.073667,0.42424,-0.0088193,-0.10167,-0.070677,0.29746,0.26519 0.11808,-1.0641,0.50906,0.69709,-0.81019,0.14538,1.1016,-0.4732,-0.94915,-0.19613,0.58803,0.1666,-0.22814,0.34978,1.0739,0.12826,-0.068445,0.47627,-0.13036,-0.088779 0.18218,-0.38175,0.18833,0.64499,-0.82282,0.55163,1.3908,-0.53325,-0.14346,-0.46045,0.7847,0.97936,0.19196,-0.17274,0.31783,-0.22278,0.68597,0.5135,0.087406,-0.18897 0.24744,-1.323,0.90345,1.4095,-2.137,0.025467,2.3528,-0.64926,-1.2707,-0.32349,0.66142,0.64586,-0.41124,0.52413,0.89212,0.193,0.56045,0.79129,-0.03594,-0.10801 0.41341,-0.67612,0.37594,0.72267,-0.82938,0.01106,1.5065,-0.40647,-0.74611,-0.089045,0.48761,0.70775,-0.60969,0.39557,0.71586,-0.1011,0.6056,0.53607,0.038549,-0.068004 -0.089759,-0.98059,0.86103,0.42785,-1.8584,-1.411,-0.27223,-0.1551,-1.0671,-0.49737,-0.65427,0.36316,0.87134,-0.0039194,0.030177,-0.32691,0.34038,0.037579,0.45591,0.19909 0.05544,-0.29194,0.34458,0.76426,-1.0764,0.71091,1.5411,-0.74062,-0.10506,-0.33369,0.8247,0.93027,0.49337,-0.16626,0.053421,-0.22492,0.62376,0.37596,0.23895,-0.30601 0.44573,-1.2396,0.82034,0.91239,-1.3218,0.070188,1.7619,-0.69823,-1.4607,-0.20633,0.80697,0.29367,-0.29497,0.55228,1.0065,0.048125,0.42893,0.77716,-0.10002,-0.22177 -0.22603,-1.2827,0.90152,0.59421,-2.2412,-1.2947,-0.34429,0.0231,-1.6108,-0.85076,-0.59833,0.43979,0.41094,-0.27275,0.17899,-0.53313,0.24845,-0.10662,0.19945,0.46969 -0.13152,0.029706,-0.046333,0.74908,-1.0649,0.65179,1.0264,-0.57695,-0.054614,-0.5426,0.53284,0.78202,0.72552,-0.23154,-0.1362,0.14998,0.66242,0.16705,0.066106,-0.029774 0.42041,-1.0522,0.65642,0.81306,-1.2447,0.2482,1.8085,-0.77199,-1.0096,-0.094961,0.96721,0.70279,-0.11775,0.3357,1.0048,0.032329,0.52491,0.62438,0.035907,-0.31301 0.45078,-0.75385,0.45737,0.62591,-0.87545,0.039411,1.5034,-0.53422,-0.83873,-0.034889,0.58729,0.53841,-0.40803,0.51173,0.6602,-0.16312,0.54897,0.6535,-0.0095592,-0.23431 0.04663,-0.37115,0.031171,0.77886,-0.69428,0.706,1.292,-0.41073,-0.17387,-0.593,0.75275,0.85929,0.24655,-0.28013,0.22261,-0.29534,0.54492,0.50393,0.004902,-0.22665 0.43572,-1.0965,0.85159,1.0827,-1.9713,-1.2753,1.1516,-0.38027,-1.6637,0.13901,-0.33347,0.27966,-0.43126,0.71609,0.85745,0.32221,0.4042,0.33925,0.16461,0.056322 -0.073796,-0.28991,0.086414,0.89111,-1.4145,0.91938,1.523,-0.68496,-0.19987,-0.81502,0.89487,1.0543,0.74601,-0.28152,0.056472,0.018297,0.78885,0.48015,0.20344,-0.39952 0.0075246,-1.6427,0.99874,0.61511,-2.1121,-1.2258,0.13859,-0.16064,-1.7556,-0.63451,-0.58737,0.024094,0.30402,0.36301,0.51381,0.0089753,0.22621,0.092176,0.038868,0.48944 0.2752,-1.17,0.58812,0.50063,-1.2638,-0.91246,0.47609,-0.31425,-1.398,-0.1864,-0.4419,-0.1535,-0.021149,0.66854,0.80385,0.36114,0.30979,0.07877,0.026955,0.15498 0.22707,-1.5243,0.73405,0.55812,-1.8045,-1.004,0.46762,-0.27754,-1.7394,-0.43444,-0.5032,-0.098854,0.10122,0.56655,0.74481,0.20905,0.213,0.098261,-0.18253,0.11353 0.512,-0.91586,0.5512,1.2033,-1.7893,-0.019931,1.9258,-0.51936,-1.4873,-0.57458,0.60114,0.95415,-0.5181,0.30989,0.86916,0.053965,0.66785,0.66036,-0.06547,0.048701 0.21698,-1.3938,0.48539,0.48617,-1.619,-0.51062,0.6971,-0.35892,-1.6373,-0.403,-0.35637,0.17151,0.18728,0.18674,1.0318,0.19819,-0.060801,0.18012,-0.26972,0.27585 0.42955,-1.1033,0.57689,0.77503,-1.3875,-0.9149,0.63778,-0.3998,-1.6175,-0.063622,-0.20854,0.18901,-0.0065343,0.66151,0.8821,0.30719,0.43011,0.10814,0.12319,0.18206 0.42385,-1.3782,0.84335,1.0878,-1.6136,-0.31283,1.6667,-0.76119,-1.7161,-0.061036,0.6368,-0.048673,-0.229,0.7313,0.89195,0.15753,0.38166,0.48519,-0.19102,-0.23216 0.29685,-1.4421,0.67374,0.72557,-1.5012,-0.9028,0.55867,-0.29829,-1.8088,-0.36808,-0.21699,-0.18184,0.081948,0.62008,0.80067,0.3196,0.34907,-0.016429,-0.15221,0.051105 -0.15393,-0.028502,-0.23707,0.78081,-1.0508,0.78967,1.1241,-0.13355,-0.32267,-1.0088,0.61629,0.62737,0.67037,-0.037757,-0.25167,0.15874,0.8631,0.46057,-0.13842,-0.36255 0.16658,-1.2795,0.85228,0.41888,-1.8137,-1.2572,0.35341,-0.25131,-1.3153,-0.31491,-0.78041,-0.11843,0.069588,0.60013,0.54059,0.18548,0.31749,0.29667,0.10529,0.29123 0.38154,-0.62769,0.3071,0.88394,-0.78401,0.2635,1.5652,-0.64866,-0.81106,-0.39167,0.88848,0.58311,-0.32711,0.098334,0.76495,-0.27902,0.62837,0.53304,0.032323,-0.083158 -0.057823,-0.52746,0.22869,0.74296,-1.2494,0.87713,1.4565,-0.6963,-0.29518,-0.4779,0.85642,0.94984,0.74774,-0.24466,0.32555,0.026503,0.54142,0.43146,0.29597,-0.40038 0.32828,-0.595,0.63375,0.7342,-0.70092,0.41597,1.4754,-0.67132,-0.75209,-0.01551,0.93769,0.45488,0.16419,0.22255,0.53414,-0.22467,0.28041,0.66074,0.12383,-0.24264 0.32378,-0.71809,0.4874,0.4477,-0.56951,0.10128,1.1915,-0.42244,-0.65144,0.0035751,0.55842,0.42087,-0.29788,0.43543,0.71686,-0.10852,0.35255,0.51854,-0.069523,-0.13827 0.20273,-1.2463,1.0761,0.90964,-2.3367,-1.5124,0.94732,-0.21932,-1.4941,-0.0013621,-0.59655,-0.026562,-0.34571,0.74885,0.64197,0.14443,0.31113,0.63997,0.047709,0.10047 0.43522,-1.1455,0.58616,0.67843,-0.99932,-0.41388,1.1117,-0.31729,-1.6848,-0.11851,0.14176,-0.069164,-0.14022,0.80025,0.7236,0.22681,0.29348,0.23684,-0.21504,-0.36614 0.39082,-0.94343,0.66117,0.66967,-1.3081,-1.0517,0.6846,-0.38175,-1.2833,0.053515,-0.34673,0.000599,-0.28929,0.89773,0.55771,0.31245,0.50981,0.15042,0.18926,0.086216 -0.093664,-0.86359,0.30918,0.82845,-1.2118,0.86936,1.5321,-0.90874,-0.52236,-0.424,1.1087,0.43751,0.41693,-0.19249,0.4865,-0.072511,0.37902,0.82083,0.025228,-0.57358 -0.049217,-1.2617,1.1654,0.72301,-2.1779,-1.6798,0.11233,-0.26128,-1.3512,-0.24217,-0.71261,0.041071,0.35633,0.4046,0.50248,0.22174,0.15965,0.32657,0.28487,0.34288 0.044229,-0.21515,0.00016114,0.89579,-1.0629,0.84338,1.4902,-0.21943,-0.26807,-0.89584,0.72924,1.0477,0.4656,-0.19473,0.026804,-0.052686,0.88892,0.57103,0.0067746,-0.23901 0.41655,-0.90886,0.43775,0.56911,-0.72329,-0.085824,1.212,-0.37315,-1.0625,-0.012378,0.37992,0.37367,-0.38047,0.56896,0.89854,0.028388,0.44094,0.45867,-0.097462,-0.12002 -0.067279,-0.30797,-0.038443,0.39202,-0.81361,0.54451,0.97957,-0.43423,-0.15612,-0.48694,0.69196,0.57046,0.49608,-0.20477,-0.021706,0.035047,0.62077,0.43986,0.050615,-0.42288 0.076692,-0.43293,0.1279,0.76881,-0.92865,0.78707,1.4403,-0.54022,-0.21408,-0.50987,0.80437,1.0037,0.50803,-0.28014,0.22952,-0.1637,0.69404,0.59062,0.15768,-0.30596 0.048402,-1.7492,1.0339,0.70621,-2.2274,-1.0049,0.38597,-0.22016,-2.0322,-0.65951,-0.35568,-0.079473,0.15481,0.26487,0.69971,0.14539,0.13043,0.16025,-0.19299,0.3638 -0.26594,-1.6964,1.2405,1.202,-2.3086,0.34442,2.1607,-0.33361,-1.3272,-0.78653,0.47778,0.48806,0.064973,0.58846,1.0911,0.47537,0.078934,0.32351,-0.27951,-0.14042 0.36363,-0.69646,0.34559,0.79191,-0.92197,0.33065,1.7005,-0.51052,-0.65998,-0.38398,0.81418,0.98855,-0.30565,0.15237,0.77353,-0.1726,0.65954,0.57862,0.0077274,-0.071351 0.32733,-1.3391,0.93294,0.9869,-1.8447,-1.094,1.1097,-0.43325,-1.5713,0.0090951,-0.35831,0.29567,-0.40783,0.78766,1.0091,0.37725,0.24488,0.50513,0.175,0.30733 0.35975,-0.56396,0.52752,1.0343,-1.619,0.40414,2.3053,-0.66981,-0.60149,-0.35884,0.87552,1.1079,-0.11824,0.29716,0.48053,-0.16362,0.85356,0.85311,0.18719,-0.24309 0.34643,-1.3548,0.88309,0.75492,-1.5578,-1.0485,0.78628,-0.31789,-1.6079,-0.073124,-0.38574,0.11177,-0.2252,0.9338,0.79947,0.37034,0.35027,0.40207,0.053583,0.22263 0.042894,-1.4087,1.3887,1.5214,-2.7272,-1.491,0.89024,-0.23783,-1.986,0.069253,-0.10871,0.051445,0.087092,0.24815,0.77795,0.23662,0.32925,0.39482,0.18536,0.41014 0.28172,-1.2346,1.056,0.65667,-1.8262,-1.3465,0.72478,-0.31081,-1.4481,-0.039805,-0.65912,0.1002,-0.11505,0.86242,0.58151,0.38054,0.33062,0.39728,0.22465,0.28248 0.1237,-1.0168,0.67528,0.15863,-1.4608,-0.95221,0.13726,-0.18348,-1.1628,-0.28345,-0.7346,0.1083,0.54543,0.29585,0.36927,0.073221,0.034239,0.072404,-0.029203,0.17212 0.12081,-1.1317,0.70821,0.58915,-1.6291,-1.305,-0.02853,-0.186,-1.4234,-0.44253,-0.64546,0.052415,0.52371,0.32721,0.4253,0.064012,0.37546,-0.13395,0.35874,0.22211 0.22827,-1.3052,1.2254,1.3678,-2.359,-0.85769,1.1147,-0.37904,-2.1797,-0.12203,0.11103,0.049874,-0.058178,0.18755,0.88761,0.36617,0.31768,0.23212,0.11825,0.40188 0.50241,-1.02,0.69777,1.4284,-1.8863,-0.28847,2.1528,-0.54632,-1.6117,-0.075598,0.42771,0.52075,-0.46833,0.50164,0.85929,-0.0082501,0.6141,0.66652,0.061977,0.10412 0.38867,-1.099,0.79199,0.76724,-1.3616,-1.1273,0.70373,-0.31633,-1.4813,0.055641,-0.33054,0.083999,-0.099139,0.88447,0.65794,0.37915,0.54007,0.13602,0.25183,0.061017 0.29139,-0.71245,0.67961,0.67221,-0.83954,0.43951,1.7855,-0.73907,-0.67671,-0.080656,0.97115,0.47405,0.087918,0.22852,0.50566,-0.16904,0.42511,0.67685,0.033278,-0.41638 0.07561,-0.20411,0.11265,0.85573,-1.1057,0.73075,1.733,-0.30654,-0.12125,-0.79308,0.75872,1.1866,0.17806,-0.10203,0.046099,-0.12527,0.79474,0.53287,0.043705,-0.26025 0.3428,-1.1324,0.66763,1.1071,-1.2873,0.14275,1.8744,-0.94831,-1.205,-0.089509,1.0789,0.1991,-0.13376,0.4297,0.86742,-0.004343,0.48686,0.56205,-0.10745,-0.37858 0.29434,-0.53031,0.34742,0.93624,-1.0108,0.50459,1.8479,-0.44234,-0.49832,-0.55114,0.76863,1.1198,-0.23778,0.050326,0.61739,-0.20178,0.71623,0.75717,0.058945,-0.011144 0.22225,-1.1595,1.2146,1.1227,-2.2882,-1.3056,1.3573,-0.051534,-1.3305,0.1335,-0.40037,0.32704,-0.47868,0.9303,0.61011,0.37627,0.48062,0.75279,0.13311,0.50545 0.51958,-0.49675,0.28335,1.0806,-1.3069,0.12841,1.9299,-0.49796,-1.0034,-0.53907,0.66652,1.1081,-0.49177,0.18874,0.62202,-0.11923,0.80116,0.53392,0.045281,-0.013641 0.30216,-1.3257,0.99995,1.0345,-1.979,0.35897,2.1383,-0.84529,-1.3855,-0.1859,0.89192,0.53041,0.045077,0.27367,0.82094,0.097113,0.39362,0.84049,-0.017149,-0.19099 -0.029381,-1.2282,0.8372,0.66779,-1.9326,-1.5649,-0.16882,-0.11156,-1.3747,-0.58396,-0.77425,0.14527,0.49627,0.21188,0.29615,-0.1719,0.3353,-0.033995,0.34507,0.28601 0.10539,-1.0962,1.378,0.72967,-2.5788,-1.7067,0.52964,-0.12699,-1.5776,-0.11021,-0.62591,0.24156,0.34474,0.38445,0.38278,0.19998,0.34063,0.45612,0.34389,0.3356 0.47049,-1.0144,0.60729,0.68737,-1.1059,-0.35432,1.3435,-0.49511,-1.142,0.048754,0.25552,0.36916,-0.59062,0.7945,0.94169,0.11321,0.48558,0.60088,-0.0050393,-0.074046 -0.20874,-0.77534,0.73128,0.47969,-1.7804,-1.3043,-0.4698,-0.033726,-0.90745,-0.53683,-0.51947,0.57723,0.8211,-0.30252,-0.018487,-0.65677,0.25887,0.0069801,0.44058,0.1081 0.28401,-1.1024,0.5791,1.3592,-2.0291,0.19682,2.3047,-0.54722,-1.1489,-0.53201,0.57858,1.0741,-0.49267,0.39876,0.90869,0.076592,0.57128,0.90391,-0.048481,-0.11977 0.29407,-0.68226,0.35461,0.70941,-0.82815,0.47448,1.196,-0.69645,-0.95746,-0.29893,0.98852,0.30411,0.35119,0.026371,0.56063,-0.2169,0.40158,0.49015,-0.083849,-0.19584 -0.26476,-0.28151,-0.051695,1.0616,-1.8808,1.0999,1.9324,-0.53643,-0.40124,-1.1575,0.90411,0.97906,0.82383,0.080482,-0.11568,0.20209,1.0856,0.5516,0.087163,-0.6354 0.16683,-1.5367,0.67893,0.50622,-1.5375,-0.84051,0.40883,-0.30439,-1.5455,-0.56776,-0.35773,-0.16221,0.0066938,0.64995,0.71009,0.13344,0.24775,0.17222,-0.22743,0.23059 0.085929,-1.7123,1.0569,0.88223,-2.2827,-1.1241,0.41101,-0.25574,-2.0687,-0.39441,-0.39834,-0.052181,0.18916,0.35024,0.82092,0.28048,0.098755,0.1959,-0.058754,0.43017 0.39842,-1.381,0.79722,0.83385,-1.5297,-0.64008,1.2368,-0.4868,-1.5593,-0.057806,0.025816,0.19619,-0.44348,0.78713,1.0951,0.38485,0.33001,0.5464,-0.11739,0.13112 -0.11943,-1.6346,1.1283,0.36564,-2.0392,-1.0842,0.14252,-0.085102,-1.7453,-0.81834,-0.60154,0.13153,0.28663,0.15803,0.38705,-0.06404,0.082523,0.070768,-0.13008,0.56836 0.1813,-1.0176,0.68726,0.91252,-1.1796,0.55967,1.7796,-0.83923,-0.76075,-0.1023,1.1541,0.53694,0.023118,0.14762,0.78885,-0.096813,0.28129,0.67667,-0.071327,-0.36814 0.16007,-0.66672,0.073396,0.90304,-1.0704,0.59689,1.9882,-0.64936,-0.4438,-0.52635,0.90023,1.0126,0.011556,-0.067015,0.45756,-0.14695,0.89564,0.69881,0.081799,-0.4049 -0.18398,-1.6068,1.0157,0.76305,-2.4438,-1.3251,-0.13857,0.032373,-1.7893,-0.77416,-0.61876,0.18882,0.32167,-0.055876,0.4477,-0.29824,0.20489,0.12675,0.026765,0.54838 0.31003,-1.3909,0.87668,0.66773,-1.3704,-0.58232,1.3724,-0.53123,-1.4136,-0.030908,0.0066916,-0.024602,-0.41439,0.89164,1.0265,0.34256,0.20845,0.49481,-0.094821,-0.096545 0.19268,-1.2855,0.6553,0.7317,-1.2769,-0.98981,0.29609,-0.32952,-1.5337,-0.2225,-0.27889,-0.16427,0.12189,0.69885,0.76883,0.40479,0.21562,-0.12885,0.017799,0.18594 0.41137,-0.84028,0.28754,1.0549,-0.87774,0.022511,1.4483,-0.52448,-1.0748,-0.28977,0.6598,0.70135,-0.56903,0.2247,1.1024,-0.11094,0.53298,0.34549,-0.031109,0.14757 0.30893,-0.82691,0.40554,0.38604,-0.62296,-0.24141,0.701,-0.35199,-0.96905,-0.0030875,0.22227,0.034699,-0.19256,0.59965,0.79353,0.20499,0.24023,0.28819,-0.1194,-0.085243 -0.41614,-1.4318,1.0001,0.90657,-2.1038,-1.425,-0.56738,0.093083,-1.6402,-0.73722,-0.50749,0.46818,0.7084,-0.29406,0.17697,-0.34889,0.20486,-0.31002,0.30638,0.41304 0.25544,-0.58999,0.27678,0.55924,-0.57239,0.32747,1.4062,-0.47539,-0.4823,-0.21704,0.72985,0.62193,-0.1807,0.086234,0.598,-0.14185,0.54806,0.56259,-0.048121,-0.19853 -0.21038,-1.0353,0.89437,0.63459,-1.8703,-1.4889,-0.43703,-0.073522,-1.2491,-0.60122,-0.5269,0.46501,0.96765,-0.15377,0.12318,-0.35194,0.29985,-0.14581,0.38543,0.17956 -0.76335,-0.7879,2.0616,0.99754,-2.9416,-2.1124,-0.019554,0.21372,-1.5866,0.048218,0.3379,0.6394,1.399,-0.090129,0.026267,-0.14148,0.69338,0.074519,0.081895,-0.10552 0.31712,-1.3302,0.86441,0.67936,-1.5824,-1.1137,0.68185,-0.316,-1.5582,-0.092878,-0.46781,0.025517,-0.10806,0.84449,0.78063,0.40713,0.36716,0.30216,0.069682,0.2038 0.29163,-0.97604,0.4143,0.53471,-0.69483,-0.30999,0.75825,-0.35845,-1.1886,-0.052939,0.28164,-0.19281,-0.098017,0.64729,0.73274,0.2467,0.27639,0.1294,-0.25491,-0.20191 0.2448,-1.6168,1.0883,1.1312,-1.9128,-0.82796,1.4622,-0.39937,-1.729,-0.11282,-0.13306,0.32203,-0.37768,0.66413,1.1022,0.4144,0.16208,0.6089,0.002258,0.34491 0.49967,-0.91954,0.52609,0.90274,-1.0237,-0.15418,1.4584,-0.70497,-1.2709,-0.071234,0.74451,0.28975,-0.45374,0.53368,0.98848,0.058609,0.48881,0.44766,-0.032283,-0.082802 0.1229,-0.97588,0.77345,0.56103,-1.6931,-1.4298,0.02933,-0.25243,-1.216,-0.24538,-0.71428,0.032552,0.46531,0.45303,0.26774,0.073308,0.35846,0.028135,0.43105,0.15084 -0.034139,-1.5047,1.1692,1.4617,-2.3804,-1.5919,0.35414,-0.47377,-1.9177,-0.046204,-0.22676,0.26208,0.44354,0.35157,0.80017,0.43328,0.14675,-0.033853,0.50751,0.43855 0.31589,-0.5313,-0.1292,0.93782,-1.1115,0.50956,1.6928,-0.58956,-0.7973,-0.66615,0.80127,0.96738,0.25684,-0.073127,0.29959,-0.35205,1.0669,0.58309,-0.061791,-0.23011 -0.049726,-0.28207,-0.19785,0.75106,-1.3276,0.76182,1.3884,-0.35358,-0.52475,-0.97834,0.80972,0.82574,0.64817,-0.010253,-0.13634,0.12121,0.94235,0.60964,0.067428,-0.62007 0.42201,-1.0741,0.84276,0.51013,-1.9552,-1.1904,0.68824,-0.38766,-1.4899,-0.029832,-0.57173,0.13717,-0.11031,0.8001,0.60091,0.25351,0.3034,0.40584,0.089077,0.12049 0.37192,-1.3273,1.01,1.0819,-2.2286,-0.93165,1.6602,-0.31004,-1.5787,-0.063317,-0.231,0.44937,-0.64306,0.66543,1.0243,0.17962,0.36067,0.82712,-0.0023292,0.10338 0.25501,-1.1485,0.55512,0.59586,-1.6909,-1.2019,0.32033,-0.20656,-1.5105,-0.36486,-0.67465,-0.066882,0.010784,0.49042,0.57873,0.040467,0.3477,0.026894,0.011071,0.032544 0.22452,-0.2846,-0.089317,1.1991,-1.7324,0.55513,2.1907,-0.53339,-0.5221,-0.71451,0.93969,1.4466,0.27159,0.027702,0.14433,-0.11246,1.2033,0.42858,0.044214,-0.049209 0.44704,-1.0107,0.80139,1.1155,-1.5691,-0.22378,2.043,-0.53084,-1.2591,-0.27124,0.36466,0.72111,-0.76688,0.62933,0.96863,-0.086075,0.48229,0.76678,0.076351,0.040729 0.35619,-1.3624,0.83059,0.66003,-1.511,-0.93368,0.90055,-0.38081,-1.6099,-0.17054,-0.26786,-0.13542,-0.25416,0.90309,0.80654,0.35921,0.40619,0.36048,-0.034505,0.035691 0.20561,-1.242,0.68618,0.61297,-1.3872,-1.1074,0.24023,-0.3069,-1.378,-0.21538,-0.47898,-0.090156,0.18606,0.72745,0.57818,0.26439,0.35835,-0.018486,0.13606,0.24613 0.16422,-1.6579,0.84252,0.66613,-1.5359,-0.61631,1.1152,-0.53782,-1.5273,-0.35158,-0.019591,-0.28975,-0.30396,0.8558,0.89677,0.21535,0.15871,0.48837,-0.34476,-0.10232 0.10352,-1.0993,0.98101,0.64833,-1.9486,-1.585,0.15296,-0.20752,-1.2024,-0.17551,-0.75881,0.148,0.33687,0.54632,0.26184,0.13958,0.4281,0.39622,0.32556,0.30217 0.062787,-1.0922,0.51164,0.35682,-1.2346,-0.89698,-0.074753,-0.12467,-1.1165,-0.51046,-0.59123,0.021351,0.29956,0.32348,0.42063,0.0096763,0.20619,-0.092046,0.09459,0.35555 0.15235,-0.46697,0.37864,0.58379,-0.48016,0.39432,1.1817,-0.51419,-0.23066,0.051759,0.74989,0.52683,0.049197,0.033071,0.4354,-0.24491,0.27769,0.45304,0.12825,-0.2592 0.37807,-0.79179,0.54536,0.51217,-0.77759,0.062895,1.3925,-0.61171,-0.66999,0.11431,0.69076,0.42782,-0.23178,0.53747,0.64789,-0.077625,0.47246,0.59267,-0.035735,-0.38361 0.21614,-1.0802,0.58606,0.92446,-0.8889,0.092165,1.4951,-0.43648,-0.90046,-0.18641,0.45771,0.58901,-0.45537,0.52601,1.2341,0.13032,0.2092,0.64192,0.09523,0.093419 0.23126,-0.21481,0.066831,0.71571,-0.60045,0.48746,1.2724,-0.38408,-0.40046,-0.53454,0.71928,0.7066,0.12746,-0.14787,0.096336,-0.32647,0.69896,0.42044,-0.031551,-0.10813 0.011016,-0.70237,0.36553,0.90602,-1.0557,0.85317,1.7978,-0.61634,-0.23224,-0.52812,0.94193,1.0572,0.2733,-0.13301,0.68666,-0.26679,0.50081,0.54085,0.12214,-0.34397 -0.31643,-0.19775,-0.2092,0.37705,-0.8715,0.50186,0.63635,-0.48963,0.071786,-0.39929,0.40528,0.34529,0.54503,-0.16411,-0.11176,0.16758,0.43219,0.14479,0.0016601,-0.31883 0.3339,-0.80818,0.41164,0.34763,-0.59478,0.022405,0.85391,-0.36642,-0.88401,-0.028564,0.47835,0.20908,-0.093079,0.44366,0.78098,0.082539,0.2974,0.44682,-0.15292,-0.17434 0.083773,-0.44606,0.42536,1.0761,-1.3959,0.97326,2.091,-0.58429,-0.50108,-0.86094,0.98868,1.094,0.45344,-0.014545,0.22852,-0.166,0.84396,0.56007,0.13061,-0.39391 -0.59142,-1.0691,1.7286,0.56157,-2.4804,-1.8576,-0.32035,-0.08406,-1.3319,-0.44963,-0.1997,0.66412,1.1917,-0.28153,-0.17728,-0.3798,0.512,0.031977,0.29292,0.0068563 0.44815,-0.67405,0.55662,0.5867,-1.2145,-0.80471,0.99003,-0.35562,-1.1045,0.14401,-0.27937,0.21204,-0.56201,0.75593,0.57453,0.20906,0.45108,0.32829,0.23234,0.048654 0.38248,-0.61653,0.32555,0.78471,-0.77448,0.12416,1.5562,-0.59266,-0.70162,-0.21222,0.70438,0.6223,-0.44332,0.2755,0.6783,-0.29551,0.60144,0.41906,-0.064908,-0.031307 0.30961,-1.0264,0.6108,0.4462,-0.85996,-0.46117,0.81028,-0.3802,-1.141,0.023318,0.023003,0.011423,-0.24444,0.82545,0.8192,0.34536,0.19481,0.34956,-0.0675,0.0015572 0.3278,-0.48328,0.25369,0.80769,-1.4687,0.51549,1.9829,-0.40102,-0.62111,-0.82715,0.72383,1.3065,0.067427,0.15419,0.40208,-0.039224,0.98865,0.59488,0.13863,-0.24926 0.25194,-1.0772,0.40232,0.46945,-0.98105,-0.5534,0.41423,-0.33544,-1.2992,-0.32565,-0.080531,-0.20546,0.0049413,0.61937,0.69874,0.17402,0.21843,-0.013949,-0.18619,0.009344 0.36915,-0.73712,0.47597,0.60181,-1.226,-0.87727,0.79686,-0.37414,-1.0577,0.14134,-0.33153,0.011659,-0.55022,0.78745,0.53126,0.17427,0.43174,0.25439,0.11693,-0.0067264 0.55375,-0.80975,0.55428,0.97803,-1.3603,-0.43506,1.4962,-0.54884,-1.2986,-0.16588,0.34777,0.63565,-0.77127,0.62674,0.85319,0.021054,0.55634,0.45375,0.089742,0.17044 0.26538,-0.7459,0.41235,0.44069,-0.6,0.19252,1.128,-0.52652,-0.67319,0.061169,0.67116,0.3004,0.022397,0.33975,0.66292,-0.040263,0.21072,0.47041,-0.022213,-0.4052 -0.31848,-1.8156,1.4414,1.0742,-2.5872,-1.5557,0.055419,-0.0086639,-1.9734,-0.55792,-0.39497,0.15145,0.40111,0.074487,0.36357,-0.025961,0.33087,0.15692,0.14997,0.54112 -0.010134,-1.2182,0.86303,0.66929,-1.8547,-1.5208,-0.081309,-0.20574,-1.1979,-0.34998,-0.82373,0.03643,0.3336,0.4309,0.35517,0.037446,0.25433,0.24422,0.30365,0.43211 0.47019,-1.146,0.95341,0.54898,-1.6665,-0.68758,1.4962,-0.41305,-1.4863,-0.21336,-0.031852,0.17813,-0.53688,0.88036,0.58289,0.3641,0.43721,0.56498,-0.27348,-0.099604 0.45916,-0.66453,0.40846,0.86073,-0.95342,0.22552,1.6702,-0.53876,-0.87921,-0.21038,0.71051,0.80758,-0.36264,0.29733,0.64605,-0.30531,0.57641,0.72043,0.095813,-0.14919 -0.21194,-1.4026,0.87747,0.91143,-1.8939,-1.2662,-0.25792,-0.060568,-1.7224,-0.36749,-0.39982,0.18221,0.8994,-0.17168,0.56709,0.11028,0.11769,-0.46039,0.2019,0.15087 -0.35916,-0.33691,0.11339,0.97869,-1.5306,0.9113,1.3296,-0.8336,-0.50232,-1.0014,1.1219,0.21823,0.29659,-0.1404,-0.21506,0.017647,0.4909,0.51211,-0.19507,-0.60642 0.54546,-0.66706,0.73154,0.59293,-1.5942,-0.95331,1.2217,-0.26946,-1.2954,0.055443,-0.30284,0.22294,-0.5951,0.87555,0.34138,0.22435,0.62957,0.42439,0.066568,-0.032031 0.25936,-0.30475,0.29821,0.59705,-0.5887,0.39746,1.373,-0.31783,-0.29056,-0.37364,0.58368,0.8837,-0.12507,-0.048022,0.39156,-0.20875,0.55325,0.53994,0.13811,-0.02102 0.075577,-0.50937,0.20923,0.82895,-1.0076,0.80391,1.7095,-0.64806,-0.24373,-0.44096,0.88749,0.99549,0.44608,-0.2541,0.35385,-0.094433,0.82316,0.75542,0.16792,-0.3351 0.34421,-0.99535,0.40225,0.37126,-0.94343,-0.56137,0.45907,-0.27379,-1.3595,-0.2524,-0.13276,-0.11588,0.089487,0.61342,0.67751,0.26253,0.30302,-0.046263,-0.1538,-0.056406 0.2864,-0.7574,0.55328,0.67505,-0.81808,0.40437,1.5707,-0.64156,-0.61658,0.060364,0.9063,0.67883,0.13773,0.25324,0.61553,-0.1546,0.38441,0.4706,0.037105,-0.3829 0.29841,-1.4379,0.78945,1.0868,-1.4789,0.30729,1.947,-0.74811,-1.3325,0.04779,0.84296,0.4383,0.066956,0.42478,0.96335,0.038302,0.43556,0.77223,-0.11516,-0.31875 -0.13623,-1.8438,1.2551,1.5681,-2.0874,-0.69801,0.69119,-0.4666,-2.2728,-0.18577,0.29014,-0.28608,0.12193,0.26601,0.8823,0.47558,-0.078354,-0.063987,-0.040405,0.45896 0.39345,-1.1909,0.76438,0.63702,-1.1516,0.17386,1.5934,-0.68705,-1.1975,0.056465,0.75381,0.32555,0.12307,0.56313,0.86185,0.060424,0.3079,0.71242,-0.094021,-0.41089 -0.12547,-0.13743,-0.18836,1.0468,-1.5926,0.91573,1.648,-0.60283,-0.42223,-1.103,0.97887,0.93579,0.7774,-0.1277,-0.1267,0.13698,1.0244,0.51581,0.032976,-0.38476 0.35834,-0.98951,0.5178,0.79378,-0.98044,-0.31056,1.3664,-0.40754,-1.0377,0.040741,0.083509,0.51496,-0.62419,0.65597,1.0596,0.12912,0.34251,0.52991,0.12762,0.06257 0.33089,-0.76509,0.3773,0.5561,-0.68999,0.16759,1.3557,-0.48947,-0.58794,-0.092625,0.63956,0.62967,-0.33999,0.25592,0.8447,-0.082144,0.5365,0.58915,0.036787,-0.19103 -0.59754,-0.66874,1.3469,0.7759,-2.4103,-1.496,-0.38584,-0.1684,-1.0957,0.076677,0.060302,0.48377,1.7838,-0.33153,0.024005,-0.42972,0.68496,0.18734,0.086687,-0.048248 0.44833,-1.0089,0.67287,0.72548,-1.2631,-0.87463,0.91231,-0.41602,-1.3647,0.084128,-0.13664,0.073811,-0.3908,0.94283,0.70856,0.31376,0.53089,0.25226,0.096751,0.097928 0.32751,-1.3779,0.77873,0.61365,-1.4635,-0.87792,0.61499,-0.32719,-1.7192,-0.25187,-0.28718,-0.048663,-0.03612,0.79246,0.85628,0.40136,0.24549,0.22989,-0.07195,0.17449 0.16654,-1.3281,1.2822,1.2248,-2.4826,-1.4028,1.2844,-0.17286,-1.5265,-0.035861,-0.35224,0.27212,-0.40493,0.71109,0.74345,0.26061,0.34087,0.65744,0.15027,0.28801 -0.47048,0.13408,-0.16815,1.7369,-1.7193,1.6139,1.6316,-0.54501,-0.89764,-0.8516,0.43292,0.84068,0.58574,-0.21396,-0.53757,0.16887,1.1649,0.8112,-0.15118,-0.16056 0.3752,-0.93516,0.43064,0.6457,-0.80799,-0.052408,1.0493,-0.48723,-1.241,-0.064721,0.5918,0.18122,-0.17355,0.47505,0.94601,0.088756,0.24676,0.26221,-0.21339,-0.050614 -0.055588,-0.11103,-0.20246,0.79572,-1.0019,0.72252,1.0503,-0.35397,-0.22964,-0.91234,0.59184,0.78954,0.58093,-0.08251,-0.12523,-0.14985,0.62016,0.40394,-0.12185,-0.3204 -0.081485,-0.46308,0.28752,1.1431,-1.6181,0.92908,2.2078,-0.72966,-0.38136,-0.4893,0.91881,1.2638,0.73621,-0.089027,0.27055,0.21719,0.82761,0.39864,0.35388,-0.28998 0.39788,-0.85682,0.9455,0.53469,-1.3689,0.01706,1.7307,-0.56768,-0.91774,0.042102,0.90138,0.31027,-0.19146,0.63587,0.66691,0.27629,0.46964,0.77599,-0.15804,-0.22791 0.33497,-0.89502,0.42719,0.39385,-0.73884,-0.32073,0.71256,-0.37767,-1.1344,-0.18824,0.22405,-0.16247,-0.13958,0.66716,0.60788,0.14959,0.35282,0.22691,-0.22994,-0.15073 -0.029727,-1.3335,0.9306,0.75148,-1.6752,-1.4712,-0.081324,-0.080128,-1.4173,-0.4081,-0.67998,0.16114,0.60213,0.49584,0.2766,0.077096,0.37459,0.06121,0.45393,0.30925 0.38845,-1.1436,0.60735,0.87954,-1.1926,0.066466,1.7638,-0.78264,-1.1807,-0.10776,0.93207,0.19423,-0.23673,0.63198,0.76169,-0.083461,0.66837,0.4649,-0.2441,-0.43188 0.18787,-0.23864,0.14384,0.79872,-0.81925,0.48402,1.4796,-0.17966,-0.17821,-0.41774,0.55383,1.1451,-0.11226,-0.055563,0.2829,-0.20328,0.56444,0.46043,0.14275,-1.1176e-05 -0.29037,-1.6273,0.31933,0.44519,-1.5649,-0.090727,0.39026,-0.23483,-1.9386,-0.90832,0.41475,-0.51961,0.2208,-0.1942,0.61279,0.31317,-0.079042,0.54679,-0.52918,0.16782 0.24813,-1.5892,0.77725,0.56085,-1.5821,-0.68395,0.71215,-0.29603,-1.866,-0.48117,-0.15079,-0.22985,0.099062,0.56781,0.8209,0.29615,0.23713,0.11933,-0.37175,0.14537 -0.48354,-0.47285,0.049675,1.0562,-2.4058,1.3505,1.9963,-0.7473,-0.80649,-0.65192,0.99484,1.0092,0.88389,-0.04355,-0.36724,0.54815,0.87924,0.62266,0.25712,-0.78842 0.3647,-0.93389,0.63788,0.91784,-1.2246,0.078017,1.8461,-0.64855,-0.8141,-0.27061,0.71582,0.74587,-0.66099,0.43175,1.0231,-0.01699,0.52972,0.75172,0.077036,-0.044647 0.43872,-0.82173,0.59285,0.61226,-0.81035,0.045123,1.533,-0.52507,-0.86531,0.057523,0.69809,0.45986,-0.32253,0.5534,0.68878,-0.0035676,0.56728,0.6045,-0.042353,-0.34732 0.28765,-1.5597,0.81376,0.79498,-1.7227,-0.96419,0.9024,-0.33848,-1.8953,-0.3415,-0.23147,-0.25961,-0.02032,0.68593,0.73602,0.20578,0.37581,0.1395,-0.21421,0.0018884 -0.12969,-0.55739,0.21172,1.3029,-2.0252,1.1792,2.0197,-0.52064,-0.77688,-1.2026,1.0635,1.0448,0.42439,0.02094,0.23193,0.083681,0.79595,0.92527,0.09279,-0.59259 0.46479,-0.95826,0.64933,1.2357,-2.0677,-0.44173,1.6724,-0.62901,-1.4334,-0.029102,0.63185,0.39987,-0.67841,0.95093,0.7185,0.066817,0.41807,0.47364,-0.031859,-0.23523 0.42414,-1.24,0.65464,0.62636,-1.3122,-0.42473,1.0429,-0.47348,-1.5514,-0.015449,0.10543,0.1056,-0.32,0.82748,0.94194,0.31952,0.27323,0.36748,-0.20696,-0.025511 0.21662,-0.65573,0.21283,0.45636,-0.51104,0.10749,0.94879,-0.46206,-0.45491,0.12946,0.65763,0.27892,-0.098494,0.31021,0.50151,-0.059391,0.38665,0.25067,-0.15896,-0.3756 -0.049538,-0.21181,-0.11695,0.64855,-0.95563,0.64367,1.233,-0.45004,-0.13278,-0.71377,0.62155,0.80465,0.49889,-0.12032,-0.088109,-0.10132,0.73109,0.47785,0.070446,-0.41929 0.32933,-1.0182,0.57062,0.70376,-1.1444,-0.96385,0.64745,-0.33635,-1.3002,0.068375,-0.34588,-0.03247,-0.29876,0.82381,0.74801,0.3381,0.38981,0.063936,0.12087,0.019275 0.5276,-0.91458,0.57349,0.87606,-0.96843,-0.59009,1.186,-0.31815,-1.692,-0.013891,0.19317,0.0092538,-0.32474,0.61468,0.78741,0.32789,0.54796,0.084261,-0.043261,-0.14696 0.34865,-0.97837,0.51642,0.6625,-0.98664,-0.672,0.75265,-0.40183,-1.3454,0.065651,-0.06151,0.045397,-0.35354,0.79148,0.89061,0.33193,0.35832,0.095638,-0.010815,-0.032134 0.36889,-0.52657,0.26563,0.48534,-0.67332,0.074718,1.207,-0.40546,-0.55292,-0.10565,0.45763,0.65565,-0.37393,0.27601,0.52435,-0.16124,0.53147,0.47198,-0.0016552,-0.12565 0.053373,-0.68685,0.29217,1.1471,-1.799,0.90175,1.8543,-0.60799,-1.1397,-1.1741,1.0753,0.79729,0.30257,-0.0029394,0.37884,0.13208,0.79586,1.148,-0.072445,-0.29588 0.37644,-1.452,0.77519,0.74527,-1.5988,-0.92022,0.83731,-0.38802,-1.8378,-0.20089,-0.18337,-0.13375,-0.05964,0.82518,0.81829,0.32374,0.3664,0.1155,-0.14493,-0.011474 -0.13567,-0.88509,1.1149,0.64018,-2.0969,-1.7565,-0.18892,-0.22925,-1.1125,-0.20479,-0.55053,0.25592,0.98254,0.16496,0.023031,-0.13374,0.34404,0.061905,0.55116,-0.014761 -0.32813,-0.72608,0.86988,0.61739,-1.748,-1.5224,-0.54461,-0.050151,-0.74546,-0.4087,-0.46654,0.4484,0.96655,-0.24454,-0.049805,-0.52497,0.26487,0.036209,0.57817,0.026259 0.27133,-1.3729,0.71372,0.53189,-1.2434,-0.60594,0.6179,-0.39759,-1.5438,-0.16181,-0.031193,-0.11624,0.039115,0.74113,0.99502,0.46371,0.12307,0.19234,-0.16199,0.15938 0.33489,-1.2835,0.7584,0.76619,-1.0484,-0.018458,1.4841,-0.56312,-1.3282,-0.00057532,0.62223,0.18391,-0.20351,0.69074,1.0553,0.18262,0.18146,0.56116,-0.16676,-0.28181 0.33044,-1.2236,1.086,0.80837,-2.1153,-1.3174,1.0532,-0.24978,-1.6095,-0.017486,-0.58391,0.21221,-0.31162,0.75723,0.71693,0.30531,0.27173,0.58481,0.080525,0.15671 -0.43272,-0.76557,0.21767,0.1505,-0.85064,0.44758,1.5551,-0.1023,0.0388,-0.048834,0.11787,0.84828,0.19366,0.11747,0.12118,0.35543,0.0077526,0.51014,0.43933,-0.5949 0.23075,-1.6857,0.9966,0.85804,-1.701,-0.94351,0.6716,-0.32535,-1.9128,-0.31743,-0.18039,-0.10158,0.024095,0.77458,0.89186,0.44518,0.24655,0.37563,-0.05331,0.37289 0.31947,-1.2043,0.62188,1.3338,-1.2969,0.085478,1.9421,-0.86862,-1.3388,0.014414,0.95076,0.14797,-0.19411,0.49808,0.84444,-0.084377,0.56261,0.47813,-0.080991,-0.35618 0.52775,-1.1691,0.93849,1.1155,-2.1389,-0.63193,1.6071,-0.56444,-1.8231,-0.049668,0.35762,0.32961,-0.43857,0.73578,0.75528,0.28822,0.40518,0.41108,-0.11723,0.036422 0.28105,-1.3584,0.90337,0.62014,-1.6696,-1.0009,1.0637,-0.36749,-1.4445,-0.097185,-0.41835,-0.064486,-0.41653,0.87803,0.68196,0.35001,0.31317,0.55044,-0.14447,0.054408 0.22291,-0.59003,0.27141,1.2819,-1.26,0.45966,2.1495,-1.026,-0.62486,-0.51092,1.1116,0.74273,-0.11464,0.16504,0.55275,-0.45349,0.77736,0.42866,0.0007673,-0.20086 0.042831,-1.2271,1.0374,0.64942,-2.2049,-1.668,0.11763,-0.24117,-1.3519,-0.22927,-0.86435,0.058471,0.36951,0.43551,0.41599,0.1089,0.20443,0.36605,0.25288,0.33029 0.31614,-0.93788,0.46806,0.65443,-0.79931,0.2455,1.4372,-0.67123,-0.80777,-0.017069,0.88844,0.35587,-0.07845,0.35148,0.77635,-0.15539,0.46748,0.58543,-0.12848,-0.4188 0.065083,-0.41496,0.10482,0.92336,-1.3746,0.82333,1.8464,-0.61938,-0.51942,-0.96954,0.84151,0.99351,0.54052,0.021452,0.1187,-0.23575,0.94402,0.60867,0.10056,-0.5156 0.38057,-1.4704,0.84314,1.1429,-1.5507,-0.48742,1.5037,-0.68208,-1.8322,-0.080472,0.46917,-0.13489,-0.2509,0.82707,0.94459,0.1849,0.30167,0.27369,-0.18911,-0.19747 -0.30628,-0.21722,-0.31992,0.80287,-1.4358,0.88305,1.5517,-0.30518,-0.083054,-0.92023,0.6407,0.95729,0.66536,-0.12602,-0.27749,0.16158,0.95827,0.58938,0.18415,-0.57977 0.1724,-0.88405,0.52367,0.55446,-0.70521,0.12256,1.1918,-0.64405,-0.69585,-0.0090723,0.73146,-0.043278,-0.11165,0.5278,0.59321,-0.10216,0.21053,0.48172,-0.26305,-0.45463 0.18091,-0.3724,0.13984,0.71692,-0.87035,0.63992,1.4534,-0.46464,-0.28144,-0.63765,0.80862,1.012,0.2224,-0.1835,0.29521,-0.18027,0.7139,0.57384,0.082648,-0.27253 0.26133,-0.54652,0.27129,1.1478,-1.4728,0.61008,2.184,-0.44387,-0.55004,-0.75848,0.80613,1.3168,-0.19218,0.097699,0.46454,-0.22897,0.90068,0.77293,0.076824,-0.23316 0.30236,-1.3514,0.8394,1.081,-1.7369,-1.259,0.83938,-0.42845,-1.68,-0.031788,-0.28149,-0.045719,-0.37205,0.84569,0.90978,0.34622,0.34993,0.18693,0.083739,0.059695 0.22296,-0.45937,-0.056407,1.0483,-1.1146,0.69706,1.5361,-0.52608,-0.52606,-0.87586,0.94853,1.0886,0.15448,-0.16606,0.38947,-0.29018,0.81858,0.73756,-0.18792,-0.079003 0.11215,-0.8529,1.2871,1.031,-2.4168,-1.9253,0.5506,-0.17174,-1.3283,0.16868,-0.49587,0.30159,0.38846,0.60132,0.25148,0.25091,0.47082,0.38483,0.36691,0.089716 -0.0034968,-1.3198,0.60296,0.40603,-1.3483,-0.83215,0.060713,-0.086835,-1.3695,-0.53312,-0.58636,-0.060714,0.3205,0.34967,0.59027,0.16915,0.026143,-0.11446,-0.10578,0.37435 -0.0075583,-0.16714,-0.17732,0.8276,-1.2156,0.71535,1.4561,-0.32543,-0.23394,-0.91433,0.6886,1.0243,0.44067,-0.10991,-0.11884,-0.032283,0.84518,0.55572,0.041369,-0.39912 -0.31574,-1.2517,0.85576,1.2177,-1.4961,0.72101,2.1809,-0.30489,-0.54017,-0.67669,0.48251,0.83808,-0.077329,0.23852,0.5847,0.11748,-0.11704,1.2432,-0.34112,-0.10023 0.47125,-0.96774,0.41593,1.0876,-1.1216,-0.43439,1.5182,-0.56928,-1.3177,-0.0017019,0.36071,0.31201,-0.77035,0.63601,0.97168,0.0071852,0.56366,0.32907,-0.055595,-0.041517 0.25784,-0.65008,0.32299,1.2596,-1.4851,0.58954,2.244,-0.46566,-0.69497,-0.75936,0.85357,1.2154,-0.30959,0.10261,0.58458,-0.14422,0.86484,0.89902,-0.021394,-0.1351 0.49028,-0.95554,0.57868,0.86736,-1.2671,-0.59264,1.3549,-0.42136,-1.3401,0.020622,-0.021151,0.50079,-0.64226,0.69388,0.92778,0.13687,0.46095,0.47514,0.11616,0.10642 0.099117,-0.35246,0.14725,0.90451,-1.0454,0.84144,1.5633,-0.46876,-0.24113,-0.7531,0.83924,1.0634,0.36622,-0.2155,0.18972,-0.23109,0.74849,0.69119,0.044011,-0.26806 0.1906,-1.0901,0.838,0.74837,-1.5449,-1.3802,0.31641,-0.35765,-1.2619,-0.015815,-0.56848,-0.011253,0.065008,0.80947,0.48461,0.32541,0.3826,0.14349,0.3599,0.19396 0.54946,-1.0001,0.55339,0.97204,-1.4458,-0.48425,1.5018,-0.64378,-1.4164,-0.07949,0.34925,0.48341,-0.66443,0.66713,1.0177,0.094399,0.54405,0.39792,0.014359,0.064427 0.14112,-1.1766,0.9757,0.63473,-1.9765,-1.5608,0.21765,-0.25747,-1.3926,-0.1958,-0.77055,0.094573,0.31509,0.52048,0.47877,0.20416,0.27526,0.28927,0.23877,0.16543 -0.2954,-1.7899,1.2622,0.97951,-2.2721,-1.3108,-0.20647,0.032694,-1.9596,-0.91222,-0.30639,0.26607,0.43629,-0.002215,0.26039,-0.13726,0.35161,0.040249,0.18903,0.65318 0.30705,-1.0829,0.64555,0.62701,-0.89309,-0.039421,0.96135,-0.47892,-1.2799,-0.095819,0.65658,0.036149,-0.17309,0.53475,0.97483,0.23882,0.13774,0.46465,-0.19159,-0.064856 -0.15879,-0.93834,0.45533,0.79077,-1.1478,0.77214,1.0037,-0.64757,-0.84838,-0.41259,1.006,0.012627,0.22313,-0.26927,0.66837,0.062978,-0.063363,0.80381,-0.19874,-0.015471 0.54123,-1.0075,0.49637,0.80963,-1.5287,-0.53603,1.1385,-0.62786,-1.4993,-0.17068,0.18736,0.4601,-0.40531,0.49391,1.182,0.086694,0.44276,0.19854,0.165,0.1707 0.038931,-0.28969,0.0059266,0.5762,-0.81476,0.60611,1.1539,-0.39532,-0.12148,-0.64503,0.73066,0.82684,0.31032,-0.18933,0.083079,-0.095149,0.63171,0.4333,-0.031407,-0.34162 0.059013,-1.4727,0.63635,0.56269,-1.3966,-0.92897,0.12492,-0.095835,-1.5324,-0.54639,-0.51835,-0.066112,0.2216,0.4487,0.64813,0.19374,0.16192,-0.066851,-0.096612,0.28891 -0.04587,-1.2441,0.83466,0.52222,-2.0209,-1.3653,-0.22546,-0.081272,-1.3771,-0.58062,-0.7493,0.26955,0.66709,0.061877,0.26645,-0.25201,0.24022,0.019918,0.28196,0.38386 -0.056814,-1.3122,1.0536,0.87205,-1.9218,-1.7207,-0.029956,-0.19737,-1.4287,-0.23109,-0.64953,0.12384,0.76716,0.40357,0.33106,0.10741,0.39768,-0.042392,0.43243,0.17326 0.021157,-0.032093,0.15999,0.57374,-0.79799,0.61764,1.2295,-0.14471,-0.056317,-0.76098,0.44974,0.84454,0.29026,-0.037394,-0.029085,-0.059983,0.5906,0.39092,0.14597,-0.2651 0.28158,-0.58223,0.34499,0.95225,-1.1149,0.64498,1.9372,-0.54876,-0.50241,-0.56285,0.93339,1.1357,-0.019056,0.018375,0.45135,-0.32354,0.76149,0.6976,0.086597,-0.29434 -0.088726,-1.7413,1.0834,0.87028,-2.226,-1.1045,0.096208,-0.079194,-2.0807,-0.5587,-0.43224,0.01979,0.42117,0.12726,0.64171,0.18758,0.075331,0.028826,-0.076546,0.49729 0.37207,-0.91284,0.56444,0.44543,-1.1077,-0.66765,0.95532,-0.3436,-1.0861,0.08257,-0.22394,0.0045835,-0.46267,0.85891,0.57731,0.24919,0.43263,0.38729,-0.02374,-0.17198 0.22089,-1.6173,0.82601,0.5111,-1.6693,-0.76191,0.69087,-0.35124,-1.7937,-0.58684,-0.20261,-0.19246,0.052534,0.57545,0.75296,0.19501,0.24137,0.22776,-0.33781,0.14587 0.25438,-0.98,0.79828,0.17218,-1.2984,-0.86068,0.51865,-0.37009,-1.1707,-0.20084,-0.45623,-0.11922,-0.040295,0.64481,0.62649,0.45349,0.13481,0.26938,0.069861,0.14765 0.22698,-0.41172,0.44754,0.79704,-1.2154,0.80395,1.5802,-0.66646,-0.53105,-0.52706,0.94415,0.92915,0.61912,-0.11597,0.11464,-0.17124,0.75261,0.64077,0.20138,-0.30598 0.35621,-0.46348,0.1441,0.72623,-0.59834,0.33235,1.3017,-0.39164,-0.69738,-0.42897,0.69695,0.72472,-0.12604,0.044726,0.47069,-0.32586,0.60421,0.38445,-0.098689,-0.044463 0.46961,-0.63067,0.39498,0.9401,-0.95641,0.40155,1.6794,-0.58005,-0.9043,-0.4483,0.96156,0.93485,-0.19823,0.11849,0.6277,-0.33352,0.66134,0.57519,-0.0021625,-0.12314 0.0547,-1.5469,0.68395,0.52156,-1.5138,-0.80604,0.19536,-0.20275,-1.6317,-0.67034,-0.38974,-0.12979,0.21411,0.37497,0.7297,0.1435,0.08784,-0.0046608,-0.18971,0.42437 0.19274,-1.3652,0.65497,0.41028,-1.1341,-0.37434,0.62335,-0.39757,-1.4275,-0.36102,0.14187,-0.2862,0.077378,0.58626,0.87981,0.35055,0.05486,0.25749,-0.38414,-0.0051743 0.034821,-1.1701,1.1291,0.71585,-2.2243,-1.7075,0.20435,-0.10593,-1.528,-0.33725,-0.77343,0.10219,0.35671,0.40942,0.30763,0.075176,0.29013,0.35606,0.33764,0.28421 0.38384,-1.4043,1.1013,1.278,-1.9071,-0.52553,1.7146,-0.38776,-1.6815,-0.12313,0.21021,0.58418,-0.52786,0.77609,1.0121,0.38338,0.32495,0.78226,0.054192,0.33299 0.45384,-1.2949,0.65674,1.1499,-1.4351,-0.105,1.7469,-0.71258,-1.6006,-0.021018,0.68679,0.37219,-0.26681,0.55052,1.0921,0.12212,0.39419,0.50632,-0.09735,-0.17244 0.43805,-0.65388,0.19672,0.78006,-0.76384,0.26607,1.3996,-0.38349,-1.0884,-0.55153,0.60446,0.71765,-0.13827,0.083378,0.76023,-0.1849,0.7155,0.46166,-0.046152,0.026522 -0.0047002,-0.37308,-0.041708,1.1696,-1.7113,0.94412,1.9963,-0.45138,-0.44235,-1.0669,0.84503,1.2303,0.44551,-0.0013096,0.07007,-0.12721,1.0532,0.79776,0.062177,-0.43673 0.21689,-0.40318,0.30092,0.85152,-0.8203,0.58371,1.4264,-0.71563,-0.40612,-0.16691,0.94215,0.74714,0.37135,-0.12275,0.30121,-0.30207,0.59694,0.42429,0.099545,-0.12139 0.2513,-1.346,0.67773,0.63009,-1.0278,-0.58609,0.62383,-0.31715,-1.4386,-0.16251,0.054526,-0.1661,-0.081163,0.83335,0.89752,0.40076,0.27894,0.2388,-0.14318,0.068647 0.31753,-0.60038,0.2911,0.5294,-0.52391,-0.087996,0.9025,-0.44834,-0.74213,-0.050845,0.50686,0.17681,-0.4216,0.39459,0.6699,-0.051303,0.33305,0.27064,-0.094662,-0.12595 0.42387,-1.0228,0.71911,0.78279,-0.95511,-0.076247,1.3784,-0.7433,-1.0572,0.10652,0.90023,0.090181,-0.1934,0.74409,0.71571,0.056052,0.47759,0.58695,-0.18142,-0.34032 0.33762,-1.3977,0.74129,0.73854,-1.2185,-0.29043,1.2186,-0.61292,-1.4442,-0.10229,0.43218,-0.0053166,-0.28579,0.81912,1.0665,0.25053,0.1953,0.59498,-0.26215,-0.061418 0.031878,-1.36,0.82158,0.64625,-1.6439,-1.2269,0.038956,-0.1997,-1.5125,-0.3601,-0.64443,-0.017136,0.34761,0.47599,0.65708,0.29686,0.059291,-0.0087944,0.17607,0.31981 0.3704,-1.0472,0.45299,0.55278,-1.2079,-0.7373,0.56773,-0.32438,-1.6236,-0.17803,-0.19565,-0.10946,0.026322,0.55138,0.81783,0.34178,0.20323,-0.2027,-0.094495,-0.11841 0.29454,-0.68345,0.48971,1.0184,-0.9107,0.30392,1.8674,-0.92154,-0.72192,-0.083452,1.0454,0.29059,-0.073729,0.2619,0.57418,-0.30601,0.682,0.52665,0.043567,-0.36275 0.33374,-0.50795,0.4816,0.71528,-0.74571,0.43465,1.6802,-0.48982,-0.41125,-0.16982,0.84292,0.95466,-0.15339,0.10392,0.49243,-0.26712,0.55964,0.59001,0.083634,-0.16702 0.17644,-1.2479,0.38412,0.57162,-1.0961,-0.25011,0.58466,-0.38777,-1.352,-0.27338,0.1621,-0.081091,-0.075697,0.41988,1.0771,0.26426,-0.032517,0.20291,-0.331,0.097882 -0.11934,-0.24699,-0.0097208,0.59335,-1.1593,0.68002,1.2257,-0.63333,-0.169,-0.49849,0.70481,0.75598,0.75278,-0.21066,-0.093188,0.10605,0.7798,0.34343,0.15775,-0.3873 -0.12626,-0.80545,0.91919,0.5972,-1.7273,-1.5783,-0.3169,-0.20241,-0.81818,-0.22371,-0.54252,0.23671,0.93096,0.19802,0.014377,-0.21415,0.34932,0.18007,0.54131,0.094164 0.33748,-0.53662,0.1751,1.1585,-1.2628,0.44697,2.0386,-0.36601,-0.75493,-0.58629,0.65551,1.2056,-0.28702,0.058755,0.44493,-0.32907,0.8368,0.68809,0.081706,-0.14745 -0.02232,-0.18485,-0.12017,1.021,-1.2564,0.83636,1.6736,-0.43718,-0.45586,-0.80992,0.68096,1.0917,0.71234,-0.21178,-0.054418,-0.086859,0.96005,0.35949,0.2286,-0.22256 0.13097,-0.18756,0.052337,0.81245,-0.82298,0.6588,1.2724,-0.40652,-0.25656,-0.75874,0.75633,0.93193,0.29566,-0.16847,0.11025,-0.27551,0.59436,0.41127,-0.078155,-0.13184 0.3758,-0.92282,0.39216,0.81404,-0.89502,-0.15492,1.0925,-0.51988,-1.1894,-0.33286,0.48397,0.45712,-0.3866,0.40701,1.0121,0.042744,0.46933,0.45067,-0.086357,0.36639 0.42545,-1.0981,0.49558,1.0777,-1.4339,-0.07289,1.9314,-0.55639,-1.2499,-0.2826,0.46773,0.70814,-0.66068,0.47451,0.98119,0.00052051,0.62248,0.84164,-0.069469,-0.086881 0.36171,-1.3697,1.164,0.99466,-2.0754,-1.0122,1.5028,-0.28371,-1.644,-0.10504,-0.19066,0.2408,-0.47488,0.86523,0.7101,0.35434,0.43117,0.60947,-0.030395,0.097093 -0.32929,0.030094,-0.3173,0.68759,-1.2671,0.71567,1.0075,-0.22894,-0.11685,-0.7388,0.43171,0.77545,0.79733,-0.048871,-0.32945,0.39932,0.64925,0.27496,0.13715,-0.28415 0.13761,-0.49988,0.23451,0.89907,-0.83872,0.66149,1.6569,-0.59555,-0.28761,-0.6008,0.87354,0.88615,-0.028412,-0.14363,0.42711,-0.39938,0.60412,0.66427,0.049707,-0.22636 0.074435,-0.19164,0.068401,0.70654,-0.69909,0.55519,1.3432,-0.30165,-0.0051877,-0.32843,0.57004,0.97278,0.16955,-0.2425,0.10923,-0.16153,0.62588,0.48787,0.16846,-0.017946 -0.067998,-0.56717,0.54206,0.41091,-1.2702,-1.0718,-0.35541,-0.14961,-0.70257,-0.27948,-0.41599,0.30142,0.81879,-0.036796,0.097822,-0.26666,0.15486,-0.065212,0.36216,-0.02938 0.36841,-0.75891,0.6241,0.9184,-0.85759,0.45462,1.6835,-0.60233,-0.77412,-0.19105,1.0131,0.73656,-0.24046,0.25686,0.681,-0.27674,0.40621,0.82354,-0.010698,-0.21221 0.16967,-0.43568,0.078428,0.79736,-0.88892,0.65123,1.5153,-0.43397,-0.29454,-0.67838,0.79467,1.065,0.11319,-0.17967,0.38816,-0.22818,0.71955,0.58622,0.019678,-0.22421 -0.023939,-0.26254,0.027444,0.62797,-0.86634,0.72347,1.0506,-0.38257,-0.12422,-0.64331,0.64627,0.78259,0.58271,-0.23208,0.013948,-0.055241,0.62402,0.40675,0.02571,-0.33307 -0.51436,-1.7085,1.8624,1.5376,-3.267,-0.66977,1.4572,-0.17938,-2.057,-0.21173,0.060625,0.32398,-0.37422,-0.40685,0.68942,0.088841,-0.034912,0.6098,-0.20242,0.30213 0.45342,-0.43631,0.24948,0.76595,-0.87663,0.26906,1.474,-0.43562,-0.72484,-0.43005,0.6293,0.98675,-0.21516,0.12454,0.50805,-0.30423,0.66555,0.53624,0.075502,0.0024371 0.18658,-0.39368,-0.084271,0.58194,-0.84051,0.46103,1.3643,-0.34111,-0.34573,-0.58538,0.64081,0.9541,0.14539,-0.10306,0.17724,-0.094162,0.89613,0.46202,-0.013716,-0.28378 -0.24773,-0.23788,0.11339,0.58954,-0.91503,0.70368,0.80835,-0.63227,-0.061446,-0.54189,0.65881,0.16141,0.46003,-0.26779,-0.11046,-0.064041,0.4542,0.41387,-0.065156,-0.32354 0.23579,-1.1456,0.77431,0.48505,-1.5647,-1.2051,0.3802,-0.27925,-1.368,-0.19322,-0.69862,-0.049564,0.06974,0.69805,0.51942,0.26456,0.30133,0.20711,0.13966,0.23354 0.4157,-0.7336,0.5926,0.75197,-1.0111,0.26918,1.8334,-0.58199,-0.69179,0.043859,0.91896,0.79306,-0.17884,0.39391,0.47594,-0.11618,0.63817,0.63826,0.073055,-0.44766 -1.3113,-0.744,-0.42002,1.6357,-1.8615,-0.1289,2.5373,-0.36939,-0.24511,-0.88768,0.050239,0.223,-0.5395,0.42401,-0.27038,0.42811,0.080156,0.73615,0.21969,-0.20581 0.46709,-1.0147,0.56559,0.91423,-1.2914,0.12211,1.6194,-0.61223,-1.1962,-0.37579,0.71989,0.86924,-0.3652,0.34804,1.1272,0.060792,0.50423,0.60788,-0.032192,0.087403 -0.25475,-1.517,0.82943,0.7247,-1.8911,-0.99029,-0.40066,0.0228,-1.751,-0.76807,-0.44642,0.30989,0.52587,-0.12846,0.35459,-0.12985,-0.0055142,-0.39006,0.10489,0.53823 0.23347,-1.5961,0.70579,0.77322,-1.5418,-0.50753,0.88636,-0.39422,-1.8155,-0.2739,0.022193,-0.11183,-0.15619,0.5772,1.1727,0.35054,0.067509,0.32149,-0.33274,0.14957 0.071907,-0.17369,-0.20047,1.1313,-1.561,0.67911,2.0045,-0.50799,-0.48873,-0.88376,0.81388,1.1908,0.42735,-0.071692,-0.072497,-0.10133,1.161,0.58672,0.085293,-0.15117 0.49616,-0.864,0.43409,0.65519,-1.0335,-0.29193,1.2241,-0.47756,-1.2978,-0.18927,0.23541,0.48168,-0.41225,0.53184,0.93381,0.058007,0.41084,0.28553,-0.031934,0.063679 0.49494,-0.54536,0.36657,1.3118,-1.6539,0.38941,2.1838,-0.70405,-1.0703,-0.41531,1.0992,1.0754,-0.081262,0.21119,0.32682,-0.24136,0.91366,0.50833,0.025758,-0.11883 0.39957,-1.4652,1.0378,0.89571,-1.8275,-0.15418,1.7342,-0.59903,-1.6742,-0.19217,0.45068,0.4172,-0.29918,0.63842,1.0419,0.16775,0.16486,0.72639,-0.20919,0.093473 0.33834,-0.99942,0.53566,0.50419,-0.88788,-0.44314,0.85842,-0.43985,-1.1061,0.014648,0.10119,0.031108,-0.39681,0.77609,0.90386,0.26041,0.26913,0.36605,-0.084509,-0.027266 0.52829,-0.65876,0.4695,0.81114,-1.1282,-0.49613,1.3395,-0.42141,-1.1046,0.10133,0.11453,0.55644,-0.70794,0.63296,0.72128,0.022064,0.54583,0.35046,0.13803,0.051313 0.40282,-0.81888,0.7383,1.2023,-1.5281,0.28196,2.2447,-0.48946,-1.0018,-0.38526,0.75396,0.99313,-0.55164,0.50737,0.70505,-0.12737,0.57694,0.91415,0.013941,-0.078534 0.19652,-1.5193,1.0355,1.1666,-2.0208,-1.3986,0.591,-0.35512,-1.863,-0.0037978,-0.32693,0.073306,0.077222,0.68552,0.879,0.39765,0.25015,0.021645,0.19901,0.18934 0.52532,-0.83831,0.78011,1.0264,-1.8062,-1.1631,1.4087,-0.3401,-1.5345,0.17471,-0.3126,0.35166,-0.61449,0.71258,0.74847,0.24223,0.49731,0.3326,0.18538,-0.038048 0.35185,-0.55606,0.23896,0.49287,-0.63052,-0.32493,0.79616,-0.34331,-0.81329,0.015129,0.10353,0.23318,-0.48686,0.47168,0.61827,0.025148,0.36635,0.13734,0.0015647,-0.012594 0.18171,-1.4778,0.98318,1.1896,-1.9659,0.35969,2.256,-0.82644,-1.2861,-0.25874,0.87167,0.57684,-0.09096,0.35792,0.87804,0.094043,0.40345,0.75502,-0.12401,-0.30451 -0.038144,0.0024758,-0.20494,1.0521,-1.344,0.77723,1.6398,-0.34164,-0.24354,-0.9063,0.70953,1.1666,0.59153,-0.14392,-0.14525,-0.029358,0.97188,0.37701,0.088196,-0.068201 0.33558,-0.82757,0.52056,0.94863,-1.2477,0.62636,1.8488,-0.64836,-0.85418,-0.63613,0.93671,1.017,0.034332,0.072475,0.80359,-0.26481,0.62367,0.90846,0.036415,-0.12882 0.19705,-0.49156,0.23897,1.1467,-1.3916,0.59883,2.2184,-0.53164,-0.45271,-0.6478,0.77219,1.282,-0.083797,0.15095,0.40374,-0.24813,0.78271,0.62331,0.15343,-0.31875 0.50676,-0.9238,0.51566,1.1141,-1.3401,-0.15795,1.9173,-0.74132,-1.2624,-0.22468,0.69589,0.61439,-0.62387,0.4292,0.97482,-0.032736,0.66273,0.42184,-0.065843,-0.067687 0.31943,-0.5902,0.25319,0.74193,-0.7425,0.54163,1.4393,-0.57775,-0.63803,-0.36862,0.89723,0.78434,0.14272,-0.024391,0.50955,-0.31072,0.60098,0.70489,0.015061,-0.25779 0.053435,-0.1074,0.040901,0.95535,-1.136,0.60134,1.6204,-0.48824,-0.19872,-0.38816,0.74449,1.1348,0.46726,-0.037306,-0.095401,-0.22439,0.66444,0.1705,0.15186,0.022851 -2.1509,-0.41895,0.96524,-0.44793,-3.0773,-0.28342,1.2697,1.1079,-0.26716,0.24787,0.83242,0.80091,-1.0566,-0.51267,0.65306,0.79496,-0.47018,-0.12886,0.25942,-0.61271 -2.35,-0.33147,1.6151,0.7195,-2.1079,-0.93319,0.4115,0.94434,0.79694,-0.059739,1.1101,0.64673,-0.22147,0.22332,0.70614,-0.13748,0.78149,0.049811,0.30948,-0.027345 -1.6558,-2.0074,1.0942,0.054288,-3.1954,-1.1822,1.007,0.68409,-0.57128,-0.60723,-0.32775,0.81826,0.086191,0.33794,0.061282,-0.00067127,0.60001,-0.29571,0.26329,0.1858 -2.185,-0.31223,1.0564,0.11892,-2.7455,-0.99147,2.9101,0.97954,-1.0731,-0.77444,0.23355,-0.015784,-0.16124,0.67916,-1.2903,-0.22371,0.69344,-0.43668,0.61913,0.22538 -3.094,-1.3449,2.0474,-0.90149,-2.0651,-0.77836,1.1323,-0.094766,-0.21806,-1.0859,1.0591,0.44952,-0.78933,0.11738,-0.36694,0.24012,1.1909,-0.50721,0.13294,0.19168 -1.6926,-2.5325,0.14186,1.0805,-2.7949,-1.5142,0.233,-0.30927,-0.13666,-0.34871,-0.47366,0.73255,0.56193,-0.48311,0.57985,0.18361,0.45321,1.1124,0.98915,0.030573 -1.5984,-0.52949,1.0627,0.14914,-2.4312,-1.155,1.3122,1.0759,0.27395,0.2719,0.5812,-0.24331,-0.47419,-0.1566,0.2913,0.67655,0.51689,-0.011358,0.16291,-0.22826 -0.72403,0.21673,-0.15396,1.1682,-2.1252,-1.9048,1.6786,-0.29994,-0.32718,0.47064,0.8067,-0.89072,-0.30095,0.0044352,-0.1224,0.19841,0.43816,-0.050746,-0.21801,-0.19837 -1.9182,-1.3619,1.2215,1.3231,-2.8268,-1.1156,0.91103,-0.70247,0.43332,-0.55152,0.14762,-0.19059,0.66737,-0.067527,0.2737,-0.27017,-0.13871,1.6543,0.75404,-0.26533 -3.4638,-0.98769,0.70589,1.6655,-1.0441,-1.0277,2.3283,0.30705,-0.71759,-1.0007,0.19124,-0.24781,0.19991,0.91107,-0.25045,0.33594,-0.20147,-0.57939,0.68642,-0.012091 -1.9528,-0.77709,1.339,1.4586,-1.9272,-1.2886,1.3108,-0.38297,0.26257,-0.40473,1.0322,-0.31288,0.39647,0.59184,0.029749,0.423,0.40327,0.89766,-0.030403,-0.014014 -1.8609,0.030784,0.90796,-0.49849,-2.2441,-0.9645,1.6947,0.74021,0.5214,0.20138,0.1817,0.15188,0.4466,0.30355,0.5439,1.3176,-0.030832,0.37074,-0.033443,0.51312 -0.2542,-0.27536,0.8419,-0.33429,-1.7648,0.215,0.26921,-0.41351,-1.3017,-0.2987,0.77794,0.15266,0.68528,-0.36242,0.49615,-0.68543,0.13629,0.1121,-0.12728,0.18198 -2.6628,-0.62135,1.8698,0.69726,-3.1511,-1.4694,0.53203,0.32378,-0.66988,-1.3661,0.57026,-0.19778,-1.2136,0.55766,-0.95205,-0.46474,1.0001,1.2371,0.62229,-0.24217 -1.5595,-1.2071,1.2334,-0.38108,-2.8182,-0.13325,2.7813,-0.25894,-0.91232,-0.87599,0.10373,0.23067,-0.16081,0.21889,-0.62598,-0.10882,0.76692,-0.21617,0.24904,-0.37393 -2.02,0.2365,1.2878,-0.38921,-2.1696,-0.70838,1.8593,1.0118,-0.80801,-0.53824,0.92745,0.18883,-0.68537,0.031165,-0.11328,-0.21181,0.82559,-0.79912,0.013346,-0.1526 -2.1185,-0.53931,0.86177,-0.013495,-3.3923,-0.69759,1.3314,0.41013,0.14536,0.57534,0.89777,0.43025,-0.8031,0.071445,0.38295,0.80298,-0.22709,-0.27519,-0.084108,-0.072389 -1.583,-0.35835,0.35093,0.62358,-2.1968,-0.78977,1.7185,0.4861,0.76085,-0.032888,-0.59534,0.16429,-0.2195,0.1672,0.19632,0.78898,-0.0058418,0.21486,-0.029677,0.33047 -1.7808,-0.033471,1.5011,-0.012938,-1.8873,-0.42464,-0.51784,0.076753,-0.23445,-0.44896,1.1873,0.71056,0.12158,0.62591,-0.19027,0.41127,0.61561,0.96647,-0.33441,-0.25676 -1.6414,-1.7531,0.24884,-0.36627,-2.1781,-0.57321,1.1844,0.25134,-0.74316,-0.69283,-0.448,1.0278,-0.23568,-0.21887,-0.22164,-0.02598,-0.17352,-0.42545,-0.24458,-0.12629 -1.2106,-2.1725,0.28002,-0.35241,-2.5723,-0.049922,2.1011,0.028621,-1.03,-0.54269,-0.42331,0.68009,0.17426,0.4713,0.70504,0.69389,-0.030636,-0.088606,0.38948,-0.42045 -2.9731,-0.37498,2.4611,1.3073,-2.0049,-0.39741,0.80637,0.64643,-0.37998,-1.1047,1.7228,-0.028234,-0.58317,0.24768,0.83922,0.059919,0.52526,0.75168,0.51227,-0.24802 -2.587,-2.3646,1.2328,0.1291,-3.2971,0.62215,2.003,-0.31177,-2.1378,-0.92617,0.24776,1.0696,-0.61609,-0.60075,-0.20462,0.59115,0.39578,0.49488,-0.054836,-0.48382 -0.83338,-1.874,-0.96896,0.41653,-2.3385,-0.5932,1.4282,-0.096393,-1.2861,-0.26508,0.17485,0.38625,-0.05103,-0.60084,0.66097,0.5224,-0.20751,-0.028585,-0.035603,-0.095098 -0.81976,-0.97246,0.82237,-0.77385,-2.8701,-0.42817,2.0193,-0.16391,-0.89165,-0.52025,0.3902,0.51002,-0.53737,0.046176,-0.17161,0.51646,0.56366,-0.19282,0.17619,-0.22149 -1.7455,-0.27078,1.2454,0.37761,-1.6049,-0.31056,0.62961,-0.12548,0.44448,-0.64402,1.1882,0.21663,-0.37256,0.91866,-0.049077,-0.09001,0.56812,-0.13486,0.028594,-0.039772 -1.9415,-0.71165,-0.36168,-0.029688,-2.4689,-0.063585,1.6535,1.0969,-0.22565,-0.36099,0.26087,-0.31322,-0.43043,-0.66749,0.84013,0.698,0.31735,0.30499,0.71498,-0.16232 -0.49795,-0.24266,0.63627,-0.45888,-1.9328,-0.31699,1.6719,-0.183,-1.4417,-0.74517,0.40975,0.11892,0.52391,0.69066,-0.032439,-0.33082,0.68317,-0.67861,0.23562,0.5258 -2.1041,-0.91961,-0.15923,0.057625,-1.7125,-0.3948,1.3418,0.71103,-0.003019,-0.12728,0.22018,-0.34218,-0.20877,-0.90228,1.088,0.41523,0.46562,-0.17292,0.69448,-0.19193 -1.2496,-1.4661,0.23418,0.91352,-2.0322,-1.1487,0.6055,-0.19969,0.41869,-0.014019,-0.65585,0.16918,0.10202,-0.2805,0.4979,0.31577,0.12265,0.95216,0.88939,-0.28197 -1.6128,-1.6369,0.24793,0.21155,-2.6645,-0.45323,1.8241,-0.89715,-1.1283,-1.46,0.28256,-0.1606,0.33933,0.25573,-0.23986,-0.12275,0.4089,-0.31404,-0.16913,-0.028066 -1.7991,-0.079959,2.3404,-0.35432,-2.5709,-1.2426,0.58337,0.80882,0.22258,-0.88186,-0.099538,0.34355,0.28122,-0.26632,-0.31742,0.087561,0.54529,1.3379,-0.047148,0.3579 -2.6296,-0.19186,0.14422,-0.44449,-3.2524,-0.89404,0.9013,1.5063,0.04214,-0.94683,0.88158,0.62884,-0.83023,-0.65185,0.31799,0.30843,0.76679,0.092349,0.6452,-0.43176 -2.6321,-0.24357,2.6578,1.0236,-2.318,-0.46454,0.95175,-0.011605,-0.44186,-0.7183,1.5513,-0.67588,0.071017,0.24632,-0.022676,-0.038805,0.8895,0.71181,0.055141,-0.22113 -1.6073,-0.30669,1.8978,-0.22947,-1.3377,-0.056177,0.33105,0.42878,0.16706,-0.8585,1.07,0.56144,-0.080146,0.76726,0.18801,0.34815,0.83422,0.21094,-0.16168,0.033409 -2.4667,-0.059223,-0.45597,0.54463,-3.8933,-0.89643,2.9829,0.403,-0.84625,-0.49302,0.75696,-0.34523,-0.16836,0.37762,0.74716,0.23049,-0.12579,-0.077172,0.9932,0.25816 -1.4849,-0.66654,0.91029,-0.18087,-2.4644,-1.3081,0.19164,-0.094444,0.13425,-0.56964,0.87722,0.50358,0.38085,-0.77684,-0.26981,-0.16312,0.8549,0.54619,0.31734,-0.16278 -1.7848,-1.3244,0.10859,-0.22337,-2.1056,0.81154,1.984,-0.26971,-1.1814,-0.48748,0.84706,0.32421,0.81033,-0.73959,-0.65645,0.24369,-0.8772,-0.57737,0.23864,-0.18396 -1.2786,-1.0574,-1.053,0.69184,-2.2549,-1.2774,1.8884,-0.50724,0.064706,0.47232,-0.25726,0.012886,-0.35567,0.36422,0.1244,1.1619,0.54487,0.77888,0.45682,-0.21453 -1.1297,-0.4115,0.69268,-0.7114,-3.2879,0.20705,1.8003,-0.27921,-1.8756,-0.54249,0.71862,1.1273,-0.70082,0.024524,-0.32716,0.30878,0.86267,0.038354,0.16886,-0.71655 -2.5845,-0.18814,1.0454,0.58545,-2.207,-0.71802,1.3045,0.67666,1.0996,-0.037854,0.87345,0.59071,-0.61548,0.20457,0.97335,0.47047,0.92663,-0.094986,0.014567,-0.36004 -1.1303,-0.31729,0.43054,-0.31617,-1.659,0.60438,1.2306,-0.36547,-0.645,0.068623,0.1407,0.073907,0.8231,0.11839,-0.49777,0.72355,-0.46559,-0.53558,0.76184,0.016165 -2.18,-0.59358,1.2061,0.3189,-3.1426,-0.47783,0.89003,0.70368,-0.091911,0.40197,-0.22984,1.0798,-0.7446,-0.18944,-0.38301,0.97691,0.29605,1.1124,-0.74936,-0.70411 -0.77522,-1.523,-0.67894,0.23107,-2.4137,0.06149,2.9976,-0.77147,-1.5091,-0.33574,1.0408,0.66506,0.45654,-0.24701,-0.34477,0.37993,0.47826,0.65813,0.79056,-0.44351 -1.2466,-0.54882,0.79793,-0.30408,-2.4126,-1.0708,-0.077212,0.025554,-0.29207,-0.50803,0.062228,0.66094,-0.39374,-0.31075,-0.26971,-0.45164,0.69721,0.5941,0.2296,-0.47478 -0.639,-1.3681,0.75423,-0.60038,-2.0586,-0.27812,2.1677,-0.010067,-0.9465,-0.42271,0.23577,0.09958,-0.059895,0.085438,-0.096006,0.66947,0.55092,0.21374,0.217,-0.27882 -1.402,-2.541,-0.46162,0.63674,-2.525,-1.1,1.4834,-0.1668,-0.68373,-0.32658,-0.37768,0.43664,0.0099429,-0.044815,0.78974,0.63427,-0.054853,0.086698,0.58223,-0.025111 -2.8346,-0.11758,1.3431,-0.40424,-2.1359,-1.1113,1.6423,0.72507,-0.41935,-0.62237,1.4495,-0.088936,-0.63207,-0.094394,0.034722,0.39287,0.54576,-0.61917,-0.41354,-0.27065 -3.0152,-0.34302,1.2203,0.96891,-2.2218,-1.2076,1.894,0.96973,0.79479,-0.31433,0.18098,-0.34827,0.55882,0.71112,0.36859,0.53632,-0.017642,0.055541,-0.31955,0.035563 -3.0625,0.0053725,2.1139,0.74728,-1.5827,-0.45371,0.7391,-0.34495,-1.5411,-0.67461,1.5601,0.3709,0.1161,1.2118,-0.8356,0.21108,1.1167,0.89828,-0.80582,0.52974 -1.5371,-2.1188,0.59223,-0.27084,-2.9504,-1.1405,1.4918,0.38733,-0.47233,-0.32376,-0.97127,0.9007,0.066381,-0.35235,0.10776,0.45505,-0.26677,0.6623,0.9348,-0.11255 -1.7841,-0.48109,0.84848,0.93758,-3.315,-1.0352,2.0544,-0.71263,0.12461,-0.97223,-0.54213,-0.27284,-0.17449,-0.59074,-0.014878,-0.11536,0.49407,1.2609,-0.16871,0.12354 -1.4547,-0.40132,0.86915,0.21525,-2.4257,-0.7333,0.33264,0.8845,-0.13207,0.27821,0.54208,0.88313,-1.2799,0.26495,-0.26841,0.19784,0.30332,0.36532,0.39028,-0.7613 -1.249,-1.587,0.10906,-0.54623,-2.5057,0.14359,2.2595,0.054318,-1.6643,-0.94215,1.2343,0.37788,0.38145,-0.25133,-0.20151,0.18801,0.12749,-0.83121,-0.046848,0.17758 -1.2675,-0.19343,0.34205,0.05378,-2.4682,-0.81938,2.2076,0.52584,-0.68964,-0.55643,0.30678,0.37251,-0.39717,0.13171,-0.12463,0.039748,0.17958,-0.3666,0.32639,0.79365 -1.6916,-0.9652,1.6033,0.21696,-1.624,-1.0054,0.86186,0.24414,0.91217,-0.029096,0.13,0.50011,0.59312,-0.14241,-0.1327,0.38971,0.37003,1.077,0.053936,0.038409 -0.79101,-1.4182,1.136,-0.15273,-2.29,-1.0178,1.587,0.24144,-0.78847,-0.58184,-1.0404,0.73131,-0.25194,0.20312,-0.2943,0.25326,0.23414,0.71446,0.346,-0.24515 -1.3222,-0.79002,1.3734,-0.17739,-2.4687,-0.97089,1.4929,0.91125,0.070652,-0.42104,-0.68626,0.18732,-0.53828,-0.13348,-0.46947,0.68104,0.35893,0.605,-0.051672,0.1089 -2.7108,-0.51109,2.0686,0.15743,-1.6037,-0.070907,0.081666,0.98375,-0.25606,0.2639,0.98205,1.6693,0.031325,1.1885,-0.040033,0.088008,0.11837,0.34233,-0.23449,-0.1556 -2.7232,-0.52309,0.52043,0.12663,-4.3001,-1.0365,1.8551,0.52619,-0.9514,-0.13099,0.45324,0.71318,-1.093,0.2126,0.062909,0.17435,0.024814,0.21384,-0.54149,-0.69712 -2.0518,-0.87966,1.2071,-0.45497,-1.1574,0.074493,1.7499,0.60594,0.02652,-0.089505,-0.36451,0.35414,0.24369,0.15271,0.82372,0.57971,-0.17769,-0.18169,0.26502,0.01838 -2.0734,-2.0004,0.26615,0.85574,-2.9413,-1.6545,0.6909,-0.090887,0.40375,0.015757,0.051546,0.72439,0.47693,-0.56122,0.29643,0.1395,0.22789,1.0978,0.89361,-0.53369 -1.905,-0.30478,1.2784,-0.023991,-1.9695,-0.69121,0.22543,0.02456,0.26911,-0.25717,1.5921,0.39927,-0.27052,0.82379,-0.23512,0.22928,0.84929,0.29205,-0.043989,-0.20479 -1.5876,-0.63448,0.015339,1.5788,-2.0617,-1.5138,1.2743,0.1164,1.0046,0.79793,0.82394,0.39902,-0.12598,0.17829,0.31795,0.60432,0.55741,0.82384,0.59145,0.030104 -4.029,-0.19924,0.90494,1.2985,-3.0215,-1.5279,2.3015,-0.058053,-0.046195,-0.1579,0.33765,0.15374,0.57326,0.35764,-0.75261,1.0712,0.0092142,1.6254,0.36663,0.61514 -1.332,-1.5616,0.081928,-0.30184,-2.0512,0.10335,1.3871,0.058803,-0.73324,-0.16183,0.042455,-0.040818,0.1261,-1.0115,-0.045811,1.3495,0.34656,-0.20978,0.037042,0.39717 -1.0666,-0.58553,0.49647,-0.45299,-2.1255,-0.11717,0.74848,-0.3368,-1.0374,-0.89599,0.16202,0.71066,-0.58415,0.29254,-0.33453,-0.077132,0.90311,-0.53655,-0.063778,-0.43668 -1.055,-2.0876,1.082,-0.15506,-2.2987,-0.35343,1.6465,0.33948,-1.2607,-0.76875,-0.56771,0.77732,-0.08266,0.51227,0.34099,0.16197,-0.027401,-0.10049,0.19606,-0.21179 -2.1814,-0.67477,1.7551,-0.43624,-1.5036,-0.69728,0.66097,0.57403,0.27173,-0.27997,0.90812,0.49855,0.3236,0.556,0.22409,0.50175,0.8927,-0.27792,0.25999,0.38239 -0.8912,-0.29034,-0.020534,1.3142,-1.6343,-0.60851,1.9669,0.25654,0.079135,0.26479,0.057872,-0.26294,-0.41081,0.068119,-0.071357,0.3938,0.49501,0.40733,0.28233,-0.60065 -1.6101,-0.39528,0.74956,-0.42246,-3.0992,-1.442,1.8716,0.56169,-0.49431,-0.29621,0.32493,-0.46137,-0.61451,-0.15784,-0.7136,-0.060247,0.66544,-0.35722,-0.15815,0.37122 -0.32811,-1.1358,-0.67859,0.10481,-2.0447,-0.22149,2.297,-0.71385,-1.1825,-0.44286,0.95678,0.6361,0.26038,0.26336,0.020269,0.16178,0.43025,0.37412,0.73303,-0.36074 -1.635,-1.122,0.10175,-0.80256,-2.7233,-1.3889,2.3348,0.26935,-0.47638,-0.43671,-0.25267,0.68339,-0.0043546,-0.14,-0.59335,0.87844,-0.11678,0.71846,0.66663,0.50205 -2.4972,-0.33852,1.3814,-0.7687,-2.9163,-1.008,1.0522,0.6301,-0.34944,0.53693,1.4579,0.75998,-0.9666,-0.33573,-0.10842,0.43663,0.54801,0.064323,-0.25339,-0.62907 -1.6616,-0.094368,-0.8016,0.31355,-1.8792,-0.66419,2.0676,-0.11643,-0.7592,0.40166,0.67272,-0.54645,0.029309,0.11927,0.40973,-0.11427,0.38493,0.3309,1.104,-0.25809 -1.0769,-1.243,-0.77362,1.3548,-2.8784,-1.3558,2.398,-1.0072,-0.91211,-0.48588,0.0078314,-0.21321,-0.32912,0.29171,0.62054,0.28769,0.16433,0.43278,0.57216,0.034356 -2.4347,-1.0987,0.28831,2.3156,-2.4237,-0.93664,0.10316,-1.2596,-0.42798,-0.91741,-0.36785,0.4454,0.79741,-0.23582,0.47388,-0.50208,0.090028,0.95723,0.44725,0.033067 -1.2022,-1.9968,-0.75458,0.39112,-2.0715,-0.76201,1.6152,-0.46223,-0.53171,-0.21294,-0.55213,0.3344,-0.054629,0.30453,0.83265,0.7565,0.040377,0.25055,0.53881,-0.37861 -3.4224,0.35045,0.2973,0.58,-3.1291,-0.4298,2.336,0.41745,-0.80489,0.045126,0.38434,0.5658,-0.76484,0.20394,-0.22223,0.59428,-0.02316,0.11917,-0.59156,-0.5144 -1.2969,-0.87976,0.65447,0.2,-3.0251,0.030539,1.7228,0.6976,-1.099,0.25033,0.51157,0.92877,-0.9705,0.24931,-0.67631,0.41097,-0.073815,0.068604,-0.24968,-0.63974 -1.5535,-1.5114,0.14807,0.9683,-3.475,-0.97641,1.4526,-0.34885,-0.86907,-0.51084,-0.4288,0.32856,0.04333,-0.7762,0.44213,-0.13151,-0.50718,0.39617,-0.041206,-1.0372 -1.7994,-0.90302,1.3538,-0.62744,-3.021,-1.2833,1.3063,0.79236,0.11233,-0.46748,-0.54827,0.40298,-0.41942,-0.65655,-0.49141,0.66923,0.76873,0.90175,0.17903,-0.12517 -1.5534,-0.42727,1.3837,-0.2098,-1.9192,-0.60006,0.48497,-0.13467,0.23143,-0.27624,0.7753,0.56981,0.013947,-0.36596,-0.28377,0.33348,0.43756,1.4153,-0.039022,-0.39058 -1.0269,-0.13113,1.3132,-0.48265,-2.2511,-1.0387,0.78822,0.40877,0.096426,-0.57562,-0.26397,-0.11605,-0.26987,-0.66768,-0.20773,0.23411,0.64886,0.83024,-0.2677,0.19413 -2.2721,-1.0984,1.3317,-0.77783,-3.5158,-0.97107,1.8744,0.44392,-1.3857,-1.1986,-0.13809,1.0718,-1.075,-0.075316,-0.56749,-0.38621,1.1056,0.067714,0.07995,-0.6351 -0.69394,-0.63995,0.65222,0.25838,-1.6874,0.7575,1.3899,-0.23161,-1.0566,0.74353,0.80959,0.86602,-0.19731,0.12053,-0.070012,-0.08747,0.024078,0.059087,-0.17959,-0.14143 -1.7902,-0.20047,1.0567,-0.66244,-2.201,1.3329,1.1539,-0.17333,-1.1585,-0.41302,1.0295,0.0096627,0.12973,-0.76433,-0.5673,0.35989,0.95586,-0.86875,0.40087,0.089401 -1.3891,-0.67988,1.277,0.03476,-2.6548,-1.0999,0.49411,0.30149,-0.63279,0.44097,0.16525,0.59152,-0.98729,0.19121,-0.23655,-0.35031,0.49692,0.51299,-0.062681,-0.32966 -2.4388,-0.53254,1.8063,0.52968,-3.239,-0.69306,-0.71955,0.16017,-0.81073,-1.0461,0.84585,0.86995,0.27685,0.57745,-0.64826,-0.17145,0.65171,1.4491,-0.37439,-0.20399 -0.76054,-1.1179,1.1519,-0.2306,-2.476,0.08379,2.3034,0.031774,-0.812,-0.49206,0.36144,0.40022,-0.012327,0.40438,0.067521,0.37824,0.74727,-0.014783,0.21538,-0.28962 -2.886,-0.018365,2.1013,1.1661,-1.4361,-0.36712,0.98744,0.032887,-1.2195,-1.058,1.133,0.20748,-0.78314,1.2924,-0.20324,0.10164,0.2882,-0.34978,0.26397,-0.22979 -2.0931,0.39627,0.29445,0.45589,-1.1216,-0.53686,2.6852,0.63713,-0.67371,-0.51091,0.39576,-0.26183,0.41731,0.28587,0.21532,0.36591,-0.6509,-0.43396,0.17985,-0.045697 -0.4417,-1.5624,-0.32072,-0.39806,-2.4397,-0.36415,2.312,-0.45673,-1.2219,-0.4368,0.52749,0.54497,-0.022693,-0.37088,0.17564,0.53323,0.64961,0.36947,0.58511,-0.32946 -2.054,-0.049281,1.0934,-0.025897,-2.4347,-0.43236,0.75315,0.83425,-0.43067,-0.087409,-0.21607,0.82288,-1.1554,-0.32445,0.5815,0.80317,-0.20098,0.58441,-0.18222,-0.47261 -1.0189,-0.83735,0.22606,-0.66052,-2.0235,-0.25573,1.9445,-0.68341,-0.80598,-0.7317,-0.050633,0.2419,0.2787,0.29112,-0.16993,0.4417,1.0569,-0.29533,-0.3599,0.099657 -1.974,-0.67255,1.7159,-0.18366,-2.2428,-1.055,0.84271,0.70585,0.85193,-0.26854,0.64313,0.26409,0.21184,-0.131,-0.032052,0.74808,0.79883,1.0371,-0.26136,0.10349 -1.4146,-1.6145,-0.36205,0.20057,-3.1995,-0.99446,1.0106,0.03514,-1.0182,-0.16316,-0.2705,0.72298,-0.21552,-1.3627,0.38139,0.056728,-0.51328,0.30631,0.12977,-0.57632 -1.7357,0.56236,2.0075,0.63801,-2.0544,0.26384,1.54,0.79108,-1.9961,-0.22267,0.36375,-0.24107,-0.46354,-0.51003,-0.26279,0.11066,0.80543,0.21092,-0.12405,0.037451 -0.75467,-1.1833,-0.4698,0.94433,-1.8176,-1.2258,-0.052812,-0.24918,-0.20358,0.049691,-0.16621,0.35557,0.40421,-0.57168,0.57431,0.052559,0.25056,-0.029436,0.009352,0.23541 -0.94686,-1.1189,0.31166,-0.14834,-1.8228,-0.32375,0.30573,0.24087,-0.98722,-0.88233,0.044698,1.0534,-0.55517,-0.56824,0.42338,0.22115,0.85222,0.35005,0.087611,-0.27175 -0.96813,0.50981,0.88228,-0.26167,-0.42468,-0.31268,0.91891,0.10709,-0.91612,-0.54358,0.18899,-0.023763,0.21149,-0.15757,0.061354,0.096013,0.604,-0.043319,0.11859,0.15979 -0.95665,-2.0324,0.46548,0.28577,-2.1719,-0.29786,2.0171,0.069152,-0.96728,-0.20662,-0.17688,0.65188,-0.17709,0.97736,1.1675,0.54591,0.44354,-0.35256,0.32704,-0.2535 -3.3549,-1.1378,2.1085,-0.3877,-2.0439,-1.0258,1.1577,0.19384,0.41621,-0.57396,1.4209,0.31985,0.459,1.1028,-0.28634,0.33932,1.228,-0.51901,0.39271,0.74786 -1.2143,-2.3199,0.28388,-0.048504,-2.899,0.19228,2.7601,-0.053005,-1.2617,-0.62746,0.19961,0.86635,0.2016,0.19346,0.63687,0.75649,0.19867,0.4331,0.70134,-0.58842 -1.7595,-0.042423,1.3586,-0.6667,-2.6154,-1.0319,0.10462,0.39822,-0.018633,-0.30689,0.5303,0.86722,-0.12619,-0.39935,-0.46,0.63089,0.5674,1.1308,0.12888,-0.46853 -0.77911,-0.7318,-0.80281,0.15211,-3.0365,-0.11223,2.6468,-0.75302,-1.538,-0.59691,0.97876,0.71661,0.77051,0.061641,-0.45808,0.20092,0.28587,0.55133,1.1084,-0.24648 -1.596,-1.7344,0.62401,0.11476,-2.2353,-1.0896,1.3943,-0.46825,-0.45297,-0.47071,-0.84206,-0.23298,-0.48871,0.055764,-0.31501,-0.091545,0.59332,0.91089,0.13684,-0.033277 -1.5913,-0.38198,1.5785,-0.37672,-2.241,-0.8584,-0.057129,0.28838,0.026614,-0.23732,0.90228,0.33809,0.034225,0.20695,-0.65566,-0.16686,0.64932,0.94,0.28757,-0.53451 -3.5019,-0.6035,1.8394,0.55571,-3.2498,-1.6891,1.634,0.73947,0.52006,-0.49002,0.22776,-0.16633,-0.09393,0.84611,-0.14115,-0.053502,0.79199,0.26401,0.15158,0.38724 -2.2914,-1.5589,1.1186,-1.0313,-3.271,-0.70359,2.2663,0.5465,-1.3018,-0.70118,0.14124,0.71969,-1.2909,0.061672,-0.45727,0.38849,0.95319,-0.24268,0.4236,-0.11059 -1.3292,-2.459,-0.80093,0.55681,-2.5245,-1.2495,0.32348,-0.15156,-0.56919,-0.09284,0.0026382,0.39276,0.022424,-1.1355,0.53853,0.65067,0.25848,0.38889,0.25105,0.078518 -2.1242,0.51601,0.45269,1.0755,-2.4038,-1.5431,2.0409,-0.51751,-0.0024424,-0.034243,0.025115,0.22552,-0.36705,1.1672,0.20855,0.25282,-0.16826,1.2019,0.19098,-0.067007 -2.3224,-0.42598,0.28998,1.0781,-1.8939,-1.6226,0.96551,-0.69769,0.50083,0.26144,0.58972,-0.075065,0.66163,0.67027,0.26526,1.0311,0.22717,1.0873,-0.11877,0.41049 -2.5412,0.017312,1.5846,1.1814,-1.5759,-0.080604,0.22623,0.15057,0.58053,-0.41256,1.017,0.84203,-0.29365,0.62582,0.72061,0.051595,0.54957,0.18059,0.088325,-0.34142 -1.1615,-0.70367,-0.053252,0.061827,-2.0496,-0.58671,2.2192,1.2688,-0.33656,-0.15381,0.14427,0.44388,-0.33037,0.18977,-0.86195,0.96307,0.05742,0.40937,0.086854,-0.03671 -2.3972,-0.49173,1.7779,-0.50644,-1.9236,-0.99791,0.684,0.84116,0.31692,-0.053128,1.2117,0.59886,-0.14616,0.24645,0.20003,0.50596,0.96354,-0.09869,0.17696,0.0065217 -1.4916,-1.9425,0.65173,-0.36844,-2.6644,-0.48795,0.74081,0.10194,-0.57713,-0.94336,-0.40232,0.83793,-0.018857,-0.57585,0.04823,0.14587,0.17507,0.37762,-0.10335,0.021988 -1.889,-0.75784,1.754,-0.31142,-3.0803,-0.76546,0.38686,0.11791,-1.3873,-0.90438,-0.42682,1.3097,-0.08314,-0.268,0.12378,-0.78094,-0.034753,0.28292,0.076873,0.11923 -3.3066,-0.78238,2.099,-0.10125,-3.2896,-0.67765,-0.56918,-0.032126,-1.7512,0.27839,0.92869,1.2967,0.0029317,-0.077576,-0.37248,-0.81769,1.2805,1.3913,-0.40126,0.57112 -1.8661,-0.50913,0.54132,-0.4702,-2.4065,0.19324,2.5592,0.57474,0.24576,-0.32157,-0.21888,0.068748,-0.026076,0.43814,0.31978,0.74495,0.2869,-0.44058,0.65912,0.012611 -1.8464,0.073969,1.6083,1.6858,-1.7151,-0.061088,0.82462,0.195,0.029424,-0.93524,1.5479,0.42285,-0.51721,0.27004,0.44927,0.13793,0.20462,0.88995,-0.04588,-0.29993 -2.0869,-1.0653,0.57265,0.90233,-3.4375,-1.5585,1.9536,-0.84035,-0.33427,-0.72654,-0.91266,0.21157,0.15708,0.68071,-0.059568,0.097267,-0.17134,1.1397,0.43902,0.10014 -3.5618,-0.22963,2.3242,0.3946,-1.7307,-0.20479,0.15099,0.76577,-0.86434,0.36971,1.0895,1.6896,0.45723,1.6133,-0.34549,0.52619,0.58714,1.3835,-0.60731,-0.010274 -0.47003,-0.80704,-0.88897,0.51347,-2.2387,-1.3984,1.3042,-0.44033,-0.85961,0.17246,0.2722,-0.19189,-0.13808,-0.14568,0.079595,0.35159,0.26287,0.5153,-0.060176,-0.059694 -2.0562,-2.0019,-0.06551,-0.77375,-2.4999,0.51058,2.381,0.28429,-1.2911,-0.29607,0.85039,0.93539,0.20024,-0.69379,-0.26703,0.64353,-0.47954,-0.77832,0.095695,-0.20369 -1.0264,-0.51506,0.97088,-0.5223,-2.733,-0.41482,0.83601,0.038972,-1.073,-0.52234,-0.47689,0.71581,-0.95598,-0.2495,-0.44105,0.44806,0.29864,0.37602,-0.1223,-0.22808 -1.8741,0.89904,2.1659,0.25238,-1.7928,-0.76475,0.55503,0.32842,-1.3859,-0.81594,1.0422,0.034929,-0.096241,-0.51333,-0.054656,0.0089025,0.94821,0.452,0.51164,-0.032642 -0.3017,-0.39778,0.42692,-0.14118,-1.3569,0.45589,0.20692,-0.30524,-0.9255,-0.65308,0.4827,0.26996,-0.12277,-0.38659,0.46263,0.19177,0.0048654,-0.063659,-0.12208,-0.10407 -3.1417,-0.24304,0.5089,1.4222,-1.3254,-1.6337,1.7358,-0.68944,-0.70697,-0.76278,1.5981,-0.79486,0.14203,0.0844,-0.25548,0.81062,0.4542,0.11051,-0.31977,1.2514 -2.0499,-0.20921,1.4267,0.44652,-3.3342,-0.74922,2.1248,-0.13997,-1.6313,-1.151,-0.24797,-0.62796,-0.35442,0.21783,-0.98471,-0.63543,0.85791,0.26798,0.17837,0.099937 -1.9018,0.50667,1.9547,0.40595,-1.805,-0.64366,0.15617,-0.0353,-0.4239,-1.5715,1.1498,-0.073203,0.10969,-0.082175,-0.041725,0.088522,0.65353,0.29382,0.31215,0.058899 -2.6807,-0.25431,0.072106,0.34446,-3.2855,0.084178,1.6379,1.0834,-1.0731,0.69621,0.551,1.045,-0.98248,-0.026693,-0.1595,-0.07545,-0.53444,-0.38835,-0.78341,0.013131 -1.5824,-1.0636,1.0986,-0.10279,-2.911,-0.61989,1.663,-0.26493,-1.0638,-1.1546,-0.027683,-0.22118,-0.90497,0.076287,-0.76712,-0.34775,0.94548,0.1153,0.35758,-0.77555 -1.3268,-0.62416,1.1188,-0.050345,-2.9446,-1.1722,1.3303,0.89979,0.24226,0.31612,0.060571,0.27354,-0.47481,-0.23519,0.21202,0.92722,0.11007,0.48612,0.60981,0.055278 -2.0665,0.13307,0.95245,0.7749,-2.4585,-0.79882,0.86319,-0.026867,0.68724,-0.15488,-0.044703,-0.0018033,-0.24254,0.46723,0.043743,0.31441,0.52043,0.72414,0.34838,-0.2639 -2.1606,-0.35752,1.6093,-0.73466,-2.3777,-0.52849,0.11369,-0.1246,0.007747,-0.7215,1.5511,-0.0062035,-0.23712,0.0011761,-0.22653,-0.66707,0.82355,0.81518,0.14349,-0.12643 -2.4997,-1.6418,0.28495,0.28011,-0.88889,-0.91462,1.6295,0.27398,0.04425,-0.022114,0.26476,0.54711,-0.32253,-0.28424,-0.3053,0.84521,0.12893,-0.04464,0.26037,-0.55803 -0.49554,-0.18755,0.98801,0.16833,-2.2955,-0.48322,0.87723,0.37836,0.057021,-0.1504,-0.36822,0.7684,-0.58292,-0.25383,0.16489,0.63207,-0.27889,0.24986,0.33608,0.0090165 -0.42281,-0.46313,0.26002,-0.56819,-2.4406,-0.17729,1.7237,-0.34758,-1.2258,-0.50007,1.2493,0.17717,0.11802,0.46378,-0.31288,0.21125,0.37453,-0.46163,0.37734,-0.10794 -1.4819,-0.67152,1.3265,0.23837,-2.7224,-1.2965,0.52869,0.44995,0.63628,-0.23268,0.34062,0.13253,0.12972,0.018802,-0.010482,0.65401,0.55866,0.95224,0.29396,-0.21251 -1.1938,0.22508,1.5385,0.20675,-1.9343,-0.98561,0.092869,0.48817,-0.71921,0.31746,0.091644,0.95903,-0.67201,0.35739,-0.6092,-0.2649,0.047832,0.85722,-0.32593,0.046798 -1.5164,-1.0649,0.73606,-0.0049428,-2.5771,-1.3366,0.79046,-0.36209,0.28416,-0.19091,-0.1425,0.31759,0.05213,-0.92942,0.2119,0.20955,0.65389,1.5068,-0.032862,0.090202 -1.4832,-1.133,1.1227,-0.20431,-2.6333,-0.72379,0.50556,-0.29019,-0.11338,-1.0818,-0.41295,0.79143,0.59131,-0.16817,-0.025924,-0.84921,0.48206,0.28954,0.78428,0.029667 -1.0503,0.68652,0.427,-0.47669,-2.9001,-0.010211,0.93255,-0.57358,-1.8048,-0.3331,0.78922,0.13334,-0.15928,0.24601,-0.10319,-0.79661,0.64264,-0.4999,0.49872,0.31695 -1.4004,-0.35982,0.6491,-0.23211,-2.5265,-0.046206,1.2051,0.65079,-1.1998,0.56719,0.44048,1.2328,-1.1511,0.18858,-0.4479,0.2072,-0.16729,-0.22002,-0.00025244,-0.069647 -1.6903,-2.4289,0.051371,0.46126,-1.7506,0.005131,1.0825,0.44272,-0.6411,-0.47918,-0.021804,0.77549,-0.1551,-0.45479,0.54537,0.66398,-0.48549,0.13322,0.41115,-0.097177 -2.1026,0.11924,1.0876,1.0718,-2.6318,-0.68452,0.91128,0.18099,0.00034233,-0.16688,0.57223,0.47045,-1.3636,0.6287,-0.52505,-0.85326,0.2046,0.25729,-0.02227,-0.57023 -2.3871,-0.79044,1.8983,0.33652,-3.1763,-1.5223,0.81878,0.83553,0.40412,-0.47596,0.49072,-0.090586,-0.38986,0.5659,-0.20697,-0.11256,0.92868,0.67973,0.16512,-0.068403 -3.0822,-0.91596,0.79566,0.83782,-2.2768,-0.095384,0.25005,0.75821,0.058374,0.46107,0.91606,1.3703,-0.77071,-0.041538,0.92881,0.77595,0.46656,0.04901,0.50597,-0.70071 -3.4157,-1.6384,1.5936,-0.73659,-1.7185,-0.17528,1.3193,0.10703,0.13352,-0.99408,0.86563,0.97696,-0.42514,0.82914,-0.23945,0.24773,0.98377,-0.42274,0.92163,0.091825 -1.4218,-1.2958,-0.2685,1.0452,-1.6727,-1.1934,0.076162,-0.29875,0.26812,-0.1183,0.37973,0.43389,0.71252,-0.11095,0.3832,-0.082149,-0.037823,0.24781,0.57612,0.19667 -0.56193,0.040296,0.37353,-0.25646,-1.6158,0.024833,0.38396,-0.65682,-1.2476,-0.18525,0.42656,0.30246,0.5357,0.0651,0.24686,-0.87496,0.015406,-0.19818,-0.12321,0.21601 -2.3968,-0.77476,2.4261,0.61067,-3.0841,-1.3638,0.79673,-0.0092117,-0.5263,-1.8248,0.29106,0.55375,0.0059115,0.24217,-0.54083,-1.1225,0.67398,1.0358,0.525,-0.027097 0.26528,-0.86672,-0.10613,0.27516,-2.0105,-0.60805,1.8303,-0.70108,-1.3919,-0.26951,0.49297,0.23424,0.038867,0.24154,0.20467,0.2541,0.78173,0.15735,0.14239,-0.15912 -1.6566,-2.0337,0.0016654,0.76963,-2.729,-1.5457,0.42383,-0.19909,0.16686,-0.045866,-0.31088,0.68629,0.35761,-0.73417,0.65347,0.38313,-0.024522,0.99617,1.006,-0.086026 -1.6854,0.032334,0.34881,0.098073,-1.9486,-1.0033,1.4255,0.87617,0.4979,-0.22882,0.63326,0.0086435,-0.05489,-0.29546,-0.074988,0.51358,0.30078,0.42415,-0.9221,0.22219 -4.0654,-0.7448,0.58168,0.94715,-2.2861,-0.54311,0.52818,0.6171,-0.16577,0.51895,1.4783,2.0833,-0.20683,1.3708,0.19405,-0.33376,0.083665,-0.15026,0.27343,-0.22833 -1.2077,-0.44391,0.23528,0.69426,-3.2742,-0.60949,1.9558,0.30698,0.085779,-0.42538,0.050185,0.6398,-0.91982,-0.25508,0.49031,0.90677,0.18746,0.13134,0.43059,-0.39517 -0.99721,0.40744,0.34122,-0.16461,-1.9317,0.40558,0.094179,-0.65415,-1.9013,-0.30332,0.32346,0.59662,-0.15633,0.085992,-0.076727,-0.84758,0.20095,-0.22427,0.34352,-0.054741 -2.2854,0.0035714,1.7219,0.45046,-3.0118,-0.71952,-0.097641,-0.050069,-0.18199,-1.7335,1.3258,0.19479,0.21045,0.15362,-0.07881,-0.24554,0.57247,1.2544,-0.1663,-0.42885 -1.9629,-0.14332,1.8102,0.42728,-2.7201,-1.204,-0.1753,-0.1111,-0.53789,-1.4004,1.1461,0.18011,-0.39467,-0.14159,-0.43068,-0.45692,0.39638,1.1544,0.24025,-0.091682 -1.5247,-0.42917,0.32141,0.16856,-1.5485,0.20394,0.6861,-0.18966,-1.6524,-0.82868,0.46272,0.50284,-1.1575,-0.10976,-0.19744,0.085351,0.98013,-0.70964,-0.14738,-0.088834 -1.3248,-1.5551,0.85053,-0.14096,-2.3143,-1.1535,0.81868,0.23709,0.089236,-0.039874,-0.97474,0.59743,0.37213,-0.28956,-0.021315,0.3467,-0.31344,0.87818,0.97742,-0.11082 -0.62447,-1.8211,-0.29797,0.21048,-1.6606,-0.63212,1.5951,-0.22828,-0.91893,-0.10639,0.043547,0.36098,0.053311,0.48449,0.65011,0.91473,0.11944,0.31059,0.32659,-0.35965 -2.7746,0.38029,1.9482,1.3166,-2.2176,-1.1755,2.062,0.16844,-0.75234,-0.2806,0.27698,-1.1016,0.22323,0.66845,-0.12222,-0.034282,0.46819,0.31642,-0.054247,0.64947 -2.3248,-0.19712,2.4198,0.094161,-2.5428,-1.0165,0.088843,0.12278,-0.028955,-1.4562,1.3577,-0.036742,0.004334,0.22243,-0.22198,-0.15618,0.84035,0.91121,-0.22176,0.17823 -1.9861,-0.18762,0.95202,-0.029199,-3.1736,-0.62295,0.034578,-0.75406,-0.53483,-0.75504,0.92562,0.97757,-0.79528,-1.0258,-0.18005,-0.24705,0.35283,0.92088,-0.41867,-0.76494 -0.86332,-0.7717,-0.39923,0.5502,-2.2926,-1.8709,0.59799,-0.39035,-0.0031448,0.31059,0.7006,-0.43083,0.049851,-0.53672,0.061951,0.52008,0.60165,0.59496,0.051175,0.3647 -2.7153,-0.078255,0.84826,0.38257,-1.6848,-0.83033,0.67657,0.3044,-0.23373,-0.049118,1.323,0.92788,-0.50334,1.1315,-0.17912,0.060315,0.22989,-0.43216,-0.79839,-0.17021 -2.282,-0.31318,2.2302,0.7502,-2.9668,-0.91768,0.70138,0.29656,-0.13498,-1.3014,0.71867,-0.1998,-0.35989,0.29851,-0.51234,-0.23428,0.54877,1.586,0.0924,-0.60155 -1.1713,0.038924,1.7469,-0.59594,-2.9693,-0.81669,0.55991,0.059443,-1.4226,-0.40672,0.12056,0.59353,-0.96755,-0.09505,0.088116,-0.61807,0.62139,0.43274,-0.53887,0.037114 -1.0802,-1.0162,0.72394,-0.72441,-2.19,-1.0935,1.0372,0.46989,-0.24051,-0.56923,-0.43211,0.38701,-0.35989,-0.48675,-0.60089,0.23866,0.56222,0.43473,0.41707,0.13853 -1.7214,0.32329,1.7878,0.36972,-1.4807,0.00034413,0.27626,0.77936,-2.0101,-0.37294,0.74741,0.70843,0.4541,-0.29714,-0.19755,0.5728,1.5979,-0.44189,-0.273,-0.43797 -1.1765,-0.80737,0.69001,0.68392,-2.0544,-0.33848,2.0572,1.087,0.16303,-0.32065,-0.64199,0.74861,-0.40323,0.061636,-0.25591,0.72234,0.092196,0.7037,-0.07731,-0.19691 -2.5774,-0.80011,2.6036,0.51239,-1.7395,-0.71166,0.44171,0.014402,-0.22628,-1.2553,1.7126,0.026168,-0.54952,0.79867,0.16344,-0.041403,0.83981,0.02257,0.10715,0.25109 -2.003,-0.77837,-0.44269,0.38446,-2.6905,-0.067738,0.54991,0.83822,0.022843,0.032004,0.70942,0.52588,-0.82367,-0.54476,0.76421,0.88702,-0.26499,0.098279,0.28673,-0.6807 -1.2732,-0.17271,0.13133,-0.097305,-2.4769,0.12175,1.6222,0.68354,-0.10667,-0.61029,0.23141,0.32848,-0.2637,-0.070844,0.49358,0.76568,0.022109,-0.29554,0.78257,-0.25469 -3.0922,-0.45541,2.2571,0.26172,-3.2353,-1.4669,0.63052,-0.1061,-0.61752,-1.2553,0.8234,0.52438,-0.39856,0.19999,-0.61539,-0.44552,0.49565,1.5646,0.13681,-0.44874 -1.9406,0.25642,0.18198,0.81306,-2.491,-0.79557,2.0085,0.47391,0.71872,0.12682,-0.80251,0.27958,-0.19988,0.60635,0.36328,0.8477,0.16222,0.37175,-0.25392,0.23199 -0.85861,-1.332,0.39369,0.18824,-1.491,0.84916,1.5103,-0.20748,-0.98708,-0.18954,0.4483,0.049079,0.26094,-0.54734,0.37753,0.83666,-0.57903,0.63025,0.41168,-0.41305 -0.85585,-0.17491,0.61253,0.15114,-1.6536,-0.62067,1.959,-0.14731,-0.69732,-0.005145,0.85695,0.37398,0.41753,0.66094,0.032877,-0.08713,0.088375,-0.17357,0.50486,0.80073 -2.239,-0.56682,2.069,-0.71784,-2.6048,-1.1484,0.30912,0.73795,0.40875,-0.68447,0.71885,0.10823,0.13767,-0.50257,-0.2079,0.21275,0.80129,0.95563,0.15299,0.15326 -2.1957,0.24399,1.9663,0.6662,-2.9102,-0.82226,0.68348,-0.40011,-0.18822,-0.80048,-0.023413,-0.56313,0.44046,0.3001,-0.62082,-0.5915,0.89929,1.1071,-0.065702,0.62868 -0.87095,-0.56488,0.35853,0.48426,-2.0225,-0.89299,1.901,0.76976,-0.041169,0.21899,-0.2493,0.34815,-0.65806,0.42394,-0.70594,0.64287,0.41314,0.19297,0.26865,-0.49304 -1.8534,0.99223,0.8139,-0.46361,-3.1564,-0.050102,1.0186,0.017889,-1.9048,-0.19092,0.6868,0.10677,0.18711,-0.099444,-0.0063567,-0.77562,1.3329,-0.14722,0.28685,-0.096727 -2.1853,-0.43402,-0.14976,-0.01706,-2.0016,-0.3318,0.61641,1.1403,-0.33114,-0.41373,0.42452,0.25323,-0.83202,-0.27947,0.6802,0.22557,0.23896,0.26439,1.0771,-0.69567 -1.9179,-1.7375,-0.58567,0.64052,-4.1862,-1.6724,2.7657,-0.16062,-0.88676,-0.17756,0.47469,0.41588,-0.24462,-0.71155,0.16185,0.57609,0.15031,0.89365,0.524,-0.24528 -3.3614,-0.13048,1.9211,1.844,-2.2789,-0.62418,2.0185,0.2348,0.16873,-0.71813,0.27551,-0.588,0.60651,0.27847,0.043882,0.59457,0.69635,0.88502,-0.56876,0.41964 -1.5372,-0.32421,1.1951,0.068336,-3.3133,-1.3958,1.2087,-0.65319,-0.2918,-0.8678,0.064286,-0.61291,-0.41227,0.022991,-0.43741,-0.4205,0.26666,0.00083337,-0.21677,0.27757 -2.7296,-0.43495,2.5368,0.050432,-2.2173,-0.57464,-0.10611,0.023611,-0.81287,-0.99916,1.8069,0.61115,-0.5084,0.85695,-0.22278,0.23231,0.71899,0.37208,-0.6804,0.11178 -1.9282,-1.3072,0.52075,-0.095703,-2.671,-1.1712,1.0973,-0.44387,0.3255,-0.48108,-0.14991,0.62248,0.56861,-0.044046,-0.14465,-0.40148,0.08882,0.78889,0.81104,-0.088543 -2.567,-0.16267,1.1694,0.73235,-3.2959,-1.6217,2.3378,-0.4413,-1.0315,-1.0896,0.0088226,0.05699,0.54572,-0.018577,-0.16157,-0.58197,-0.55865,0.50289,0.20944,-0.48665 -2.8228,-0.80433,2.3117,0.39179,-3.7353,-1.2289,1.5854,0.59643,0.016244,-0.7461,0.24454,0.066096,-0.71246,0.27057,0.040279,-0.55508,0.50241,0.59674,0.054,0.18851 -2.1034,-0.61476,2.1648,0.85739,-2.8315,-0.86741,0.11037,0.026791,-1.1622,-1.2087,1.0172,-0.31197,0.12306,-0.37437,-0.73519,-0.37589,0.18397,0.98884,0.57696,0.032221 -1.4188,-0.86149,0.9016,-0.39402,-2.8478,-0.80493,-0.19351,-0.088594,-0.33508,-0.64599,0.038902,0.58175,0.32671,-0.42118,-0.5165,-0.40977,0.060624,0.48906,0.2478,-0.34126 -1.0103,-1.6756,-0.50026,0.53234,-1.7748,-0.28999,0.27202,0.11615,-0.37487,0.12828,-0.2891,0.53518,0.21368,-1.1398,0.8539,0.54516,-0.016507,0.51951,-0.25972,-0.029904 -1.8346,-0.37757,1.2709,-0.27256,-2.2903,-0.58656,1.5913,1.113,0.016856,-0.22235,0.27905,0.11953,-0.88961,-0.55955,0.34891,0.53929,0.20162,0.16495,0.11419,-0.34776 -0.51581,-0.79146,0.351,0.2357,-2.2141,-0.62823,2.2833,0.2153,-0.37164,0.18605,-0.57885,0.70498,-0.65429,0.17242,-0.02304,0.77705,0.17571,1.042,0.75246,-0.48168 -2.3357,-0.0087954,1.5032,0.40192,-3.0029,-1.3664,0.41641,-0.30615,-0.55812,-0.67902,1.3786,-0.46968,-0.51791,0.107,-0.48619,-0.66393,0.46593,0.47688,0.11723,-0.51515 -1.9586,-0.36696,2.0378,-0.09377,-1.7955,-0.5815,0.8,0.26712,0.46091,-0.83409,1.0586,-0.27317,0.22858,0.57127,-0.39441,-0.10739,1.008,0.52643,-0.4814,0.17688 -1.1165,-1.2971,-0.56575,0.46122,-2.6212,-0.89023,2.9014,-0.0067155,-0.60732,0.057596,0.28265,0.33492,-0.42084,-0.27822,-0.36655,0.97558,0.4263,0.82198,0.84923,-0.47261 -0.98465,-1.1499,1.155,-0.85354,-2.3568,-0.0039037,2.2206,-0.088633,-1.2607,-0.92864,0.1516,0.50945,-0.11599,0.0031358,-0.17914,-0.047286,0.75654,-0.32034,0.16842,-0.15987 -2.6018,0.054126,1.1134,-0.88862,-2.6891,-0.99849,0.83809,0.42104,0.21698,-0.38535,1.0339,0.48594,-0.26999,-0.45303,0.23649,0.65102,0.58197,0.46678,-0.31105,0.2937 -1.8398,-0.2771,1.0938,0.15101,-2.5554,-0.80653,0.14338,0.31325,-0.2881,-0.36515,0.62901,0.44918,-0.64529,0.28782,-0.23957,0.68417,0.47008,1.2526,-0.79212,-1.0646 -0.79209,-0.73863,0.21656,-0.17161,-2.8397,-0.37537,0.71207,-0.075645,-0.55388,-0.64213,-0.27448,0.43733,-0.53656,-0.12746,-0.11977,0.53938,0.37732,0.014787,-0.42942,-0.61943 -3.463,0.1679,1.1556,1.8161,-2.0302,-0.98476,2.4203,0.95241,-0.59966,-0.32969,0.13218,-0.81752,0.38153,1.088,-0.017011,0.034726,0.13111,0.13894,0.24239,0.21188 -1.9913,-0.35104,1.5776,-0.74315,-2.4665,-1.2722,0.49729,0.83065,0.39462,-0.10662,0.77968,0.52138,0.11224,-0.077773,-0.39296,0.65706,0.95687,1.0462,0.60355,-0.26469 -1.0646,-1.2874,-0.0028803,-0.38033,-3.1114,-0.24131,2.8516,-0.17202,-1.1801,-1.1192,0.63651,0.4711,0.36976,-0.13735,-0.45247,0.47127,0.72992,0.14172,0.38975,-0.38647 -1.6936,-0.7188,1.1499,-0.15705,-2.9773,-0.93313,-0.091729,0.048895,0.14001,-0.75242,0.51229,-0.15757,-0.039193,0.26905,-0.34656,-0.40284,0.66514,1.1367,0.37403,-0.49762 -3.6403,-1.1325,0.80398,0.34572,-2.2351,-1.411,1.69,1.1112,0.74244,0.17511,1.3854,-0.0023501,0.72505,0.99466,0.50856,0.84606,0.485,0.23335,0.28639,0.54318 -1.074,-0.88065,0.075218,0.25286,-3.1166,-1.2372,2.4145,-0.035881,-0.484,0.014659,-0.1066,0.28507,-0.41357,-0.070881,-0.20995,0.44648,0.033038,0.68707,0.56915,-0.53928 -2.091,-1.9954,0.59296,1.2741,-3.0218,-1.4097,1.0789,-0.68535,-0.53646,-0.91089,-0.75052,0.30744,0.45099,0.22168,0.26916,-0.49119,-0.56238,0.49595,0.52669,0.17077 -0.937,0.046792,1.8337,0.0071022,-1.8298,-0.97809,-0.30599,0.12869,-0.10842,-0.4384,0.41346,0.60698,0.22732,-0.025616,-0.39263,-0.017574,0.48079,0.7614,0.23799,0.01318 -2.9374,0.7625,0.902,1.0546,-2.0924,-1.2422,1.7585,-0.55857,-0.06936,0.32421,0.42117,-0.27366,-0.26187,1.3114,0.03552,0.82758,0.37374,0.87406,-0.35461,0.32855 -0.41709,-1.1981,-0.50109,0.2974,-1.8207,-0.90492,1.1103,-0.23919,-0.53876,0.16024,-0.24686,0.29455,-0.34808,-0.28536,0.35634,0.51501,0.27805,0.65713,0.31797,-0.513 -0.84281,1.0437,0.76511,0.0081632,-1.2752,-0.0062883,1.5213,-0.70965,-1.5939,-0.56446,-0.44624,0.38625,0.12876,0.88609,-0.38421,0.0011466,1.188,0.76304,0.49998,0.18577 -1.2042,-1.6416,0.85431,-0.27574,-2.9254,-1.3422,1.6888,0.60987,-0.54963,-0.50626,-0.35858,0.23475,-0.5267,0.011831,-0.735,0.5339,0.89124,0.26619,0.37241,-0.2003 -4.2449,-0.47661,0.2057,0.16271,-2.7859,-0.92496,1.5588,0.26913,-0.3967,-0.17545,1.3757,0.82063,-0.5006,-0.48738,1.2437,0.49007,-0.044817,-0.17151,0.43091,0.032329 -1.9364,-0.7022,0.99594,0.84936,-3.4267,-0.84553,1.4883,0.52463,0.24285,-0.60039,-0.28873,0.78765,-1.2762,0.016686,0.33384,0.38708,0.48533,0.29513,0.41005,-0.56859 -2.4446,-1.5913,1.4119,-0.21476,-3.0937,-0.79039,0.57802,0.16609,-0.0020865,-0.3699,0.2833,1.4073,0.85639,-0.17164,-0.52185,-0.6385,0.023514,0.35347,-0.28236,-0.49525 -1.5099,-0.4144,-0.36147,0.65176,-2.3497,-0.17297,2.447,1.2684,-0.15839,-0.21297,0.19467,0.034395,-0.24898,0.48664,0.48546,0.77209,0.43848,0.081449,0.61576,-0.10607 -1.4674,-0.5243,0.74528,0.55209,-1.8503,-0.41408,1.6015,1.9199,-0.052038,-0.19894,-0.6114,0.42347,-0.69254,0.45913,-0.12237,0.43766,-0.04872,0.50407,-0.096458,-0.46385 -1.5935,-1.3383,0.92883,-0.35935,-2.2435,-0.72009,2.1937,0.73019,-0.16238,-0.28101,-0.45577,0.31995,-0.69022,-0.18626,-0.78718,0.87426,0.09452,0.24007,0.024296,-0.025486 -3.2564,0.30586,1.0174,-0.39604,-3.7203,-0.61286,1.0356,0.078324,-0.34409,-0.22179,0.49832,0.25092,-0.67099,-0.34126,0.28832,0.94466,0.7527,0.33019,-0.834,-0.31969 -0.45734,-0.29894,-0.13842,0.061308,-1.6294,-0.029753,1.4284,0.19577,-0.23743,-0.45119,0.25613,0.68253,-0.22951,-0.015945,0.14748,0.50707,0.39334,-0.01939,0.71522,0.14967 -1.832,-0.95805,-1.3223,0.5522,-2.7658,-0.88395,1.7941,-0.48036,-0.73622,-0.065231,-0.84375,-0.00051696,0.32823,0.4549,0.49329,0.94222,0.43109,0.73721,1.0019,-0.15854 -0.2872,-1.1911,0.37568,0.02429,-1.0808,0.011584,1.4121,-0.088598,-0.63513,-0.0027803,0.28927,0.34536,-0.048946,0.5059,0.59341,0.7085,0.16304,0.27879,0.020048,-0.46873 -2.121,-0.89959,0.15161,0.31192,-4.2323,-1.1052,2.9096,0.40877,-0.8675,-0.3546,0.49754,0.31474,-0.16898,-0.036349,-0.14761,0.20967,-0.060731,0.049082,0.83862,-0.56164 -1.7009,-0.011267,2.4274,0.60435,-2.1443,-1.1036,0.45616,0.25521,-0.17099,-1.2698,1.0104,0.022137,0.23341,0.032221,-0.49609,-0.30994,0.66464,0.94659,0.229,0.30214 -1.8233,-1.1339,-0.92822,1.0829,-3.4921,-0.89698,2.478,-0.63646,-1.8964,-0.83557,0.33701,0.14085,0.51383,-0.57833,0.33326,0.3272,-0.40831,0.42126,0.21309,0.13296 -0.5929,-0.90561,0.16504,-0.37307,-1.712,-0.22999,1.807,-0.67181,-0.47087,-0.40169,-0.26775,0.071054,0.46653,0.31716,-0.0073133,0.45321,0.59097,0.066064,-0.17885,-0.11746 -2.0364,0.26177,1.5839,0.23093,-1.8856,-0.3863,0.45444,0.64452,-0.61886,0.36111,0.30487,0.97084,0.14906,0.49531,-0.26498,0.48291,0.22424,1.246,-0.94062,-0.14963 -2.6134,-0.70172,0.71206,-0.24778,-1.0529,-0.28125,0.40982,0.52491,-0.069817,-0.51257,0.66407,0.91133,-0.11779,-0.22143,0.95006,0.48047,0.20291,0.12261,1.1859,-0.24819 -0.95315,-0.3354,0.31027,0.27584,-1.8597,-0.20652,1.7813,1.0757,-0.05283,-0.18758,-0.65115,0.35818,-0.32481,-0.00971,-0.20464,0.77551,-0.19021,0.54168,-0.2165,-0.31015 -1.3945,-0.81642,1.1706,-0.10267,-2.3303,-0.97299,1.9014,0.87422,0.055296,-0.12886,-0.68942,0.58081,-0.49954,0.099976,-0.63336,0.39998,0.099581,0.8686,0.47594,-0.22361 -3.1803,-1.2164,2.029,-0.52248,-2.2461,-1.2978,1.6542,1.6413,0.12031,-0.059809,0.62359,0.23678,-0.37603,-0.14342,0.21581,0.48986,0.81547,0.028343,0.058426,-0.077073 -0.9709,-0.8287,1.5995,-0.52638,-2.6462,-0.46316,0.53463,-0.21745,-1.8629,-0.49047,0.21946,0.29575,-0.53812,0.029622,0.40272,-0.63483,0.39837,0.21688,-0.56921,0.14524 -2.1837,-0.32436,0.13446,0.48457,-1.5912,-0.42193,0.2682,0.88403,0.29166,-0.16886,0.42427,0.52223,-0.62452,-0.18052,1.1613,0.47688,0.47082,-0.050419,0.59991,-0.53488 -1.9539,-1.8593,0.52186,0.32017,-2.9944,-1.5339,1.4581,-0.008623,0.089503,-0.065827,-0.089636,0.27744,-0.079135,-0.52652,-0.15589,0.43011,-0.20804,0.77852,0.77993,-0.30257 -1.2123,1.1071,1.0326,-0.16763,-1.4255,-0.13228,0.44508,0.11127,-1.17,-0.56768,0.65767,-0.2973,-0.33189,-0.57329,0.18241,-0.27018,0.44587,0.20593,0.58979,-0.63954 -2.798,-1.2109,0.97539,0.51842,-0.7008,-0.091239,0.3597,-0.209,-0.15575,0.15215,0.45834,1.6139,-0.031413,0.6961,0.76965,0.70907,0.56938,0.21817,0.97019,-0.27167 -2.3693,-0.25994,1.8952,0.4127,-1.9139,-0.88603,0.90738,0.25651,0.60489,-0.52572,1.2778,-0.3732,0.047874,0.86307,-0.15873,-0.32679,0.96321,0.4654,-0.029199,0.060455 -1.0974,-1.3067,-0.049247,0.67301,-1.8791,-1.3486,0.072379,-0.062094,0.38262,0.34698,0.23659,0.42176,0.49923,-0.68089,0.35033,0.23879,0.48734,1.0612,0.87883,0.040481 -2.5794,-0.71736,1.9044,-0.87152,-2.4037,-0.5045,0.22501,-0.16657,-0.3782,-0.13302,1.4911,1.0061,-0.53596,0.31446,-0.05747,-0.0755,1.1108,0.15596,-0.31221,-0.19074 -0.99893,-1.2468,1.5903,-0.21654,-3.1099,-0.88275,1.0517,0.071554,0.042914,-0.87786,-0.50068,0.83199,0.048772,-0.050657,0.19509,-0.030708,0.28854,0.57494,0.018954,-0.20628 -0.33846,-0.57119,0.31738,-0.57472,-2.0246,-0.35618,1.9128,0.13698,-0.81962,-0.39897,0.67472,0.19396,0.10334,-0.023193,-0.39705,0.58372,0.48622,0.08618,0.58802,0.035725 -2.3831,-0.63575,1.2693,-0.075993,-3.4976,-1.0631,1.5344,1.2622,-0.070187,-0.2359,-0.15244,0.60983,-1.0541,-0.40906,0.41831,1.0215,0.22984,0.70752,0.16844,-0.4083 -2.2203,0.37533,-0.25238,1.5498,-2.0416,-1.5307,2.8464,0.57522,-0.68036,0.12373,1.5986,-0.67684,-0.15926,-0.25377,0.49027,0.9739,0.64758,0.037393,-0.14988,-0.090528 -2.3019,0.10837,0.9009,-0.14792,-2.6551,-0.3141,1.4831,1.2556,-0.064667,-0.42028,0.10158,0.33197,-0.68243,-0.48211,1.3508,0.49241,0.084017,-0.26221,0.25944,-0.38767 -0.73406,0.09026,0.085633,-0.031035,-1.3477,0.39792,1.0595,-0.12571,-1.2098,-0.68454,1.0021,-0.20818,0.13731,0.072643,-0.25021,-0.17802,0.20123,-0.96002,0.098873,0.41857 -0.10442,-0.4922,0.62397,-0.092727,-1.5618,-0.41651,0.74591,-0.53315,-0.28663,-0.3133,-0.25267,0.11106,-0.16576,-0.05143,0.41244,-0.00070067,0.21877,0.11293,0.24439,0.28272 -2.6703,0.037428,1.8572,0.43607,-3.2179,-1.066,0.6948,-0.30339,-0.1843,-1.1989,0.78429,0.061431,-0.59399,0.035933,-0.7483,-0.42882,0.56798,0.60354,-0.16224,-0.49765 -1.7621,-0.96363,1.6921,0.23985,-2.1193,-0.62356,-0.21834,0.070804,0.045158,-0.4164,1.3172,0.44831,0.38778,0.91721,-0.27559,-0.41172,0.75496,0.12967,-0.36718,0.48618 -1.7487,-0.29814,0.67069,-0.24989,-2.7384,-0.89316,0.53972,-0.016359,-0.82703,-0.19328,-0.0033914,0.78418,-0.68829,0.34504,-0.78332,0.37972,0.67284,0.5352,-0.47095,-0.25451 -1.8451,-0.22336,1.5549,1.4196,-1.5238,-0.44867,0.97421,0.62524,0.38171,-0.54963,0.31161,-0.44295,-0.46733,0.29259,-0.21104,-0.40934,0.14224,0.74425,0.074194,0.46502 -1.1882,-0.65137,0.64598,0.035975,-2.4395,-0.81744,1.5268,0.90741,0.09656,0.16383,-0.07475,0.29467,-0.83649,-0.49504,0.085991,0.61894,0.037866,0.32213,0.70749,0.22172 -3.2411,-0.70576,0.90695,-0.87336,-3.5546,-1.3008,2.3183,1.1657,-0.36066,-0.95276,0.81636,0.29391,-1.0185,-0.57669,-0.60378,0.43891,0.6972,0.20722,0.38261,-0.4805 -1.7072,-1.6724,0.029249,-0.67604,-2.8532,0.53601,2.8403,0.080926,-1.461,-0.59951,1.1672,0.76309,0.51359,-0.074107,-0.15214,0.4301,-0.05366,-0.93,0.50076,-0.041916 -0.7348,-0.41028,0.212,-0.30405,-1.1742,0.47876,0.69677,0.017507,-0.67201,-0.34284,0.94364,0.2109,-0.24547,-0.91586,-0.12779,0.39355,0.40788,-0.28378,0.28315,-0.02735 -0.67791,0.3587,0.58414,-0.15318,-2.4994,-1.0691,1.5214,0.20737,-1.351,-0.74977,0.10135,-0.37969,-0.13391,0.12272,-0.5066,-0.82651,0.70411,-0.11738,0.16661,0.41781 -1.0195,-0.73693,0.54455,0.2053,-2.1389,-0.83048,1.7419,0.33645,-0.33519,0.21226,0.40741,0.60368,-0.98942,0.094642,0.028997,0.19304,0.80863,-0.26905,0.81754,0.50196 -1.3292,-0.55044,1.3279,-0.10628,-1.1249,-0.43852,0.57133,0.47507,0.63271,-0.33648,0.64977,0.34448,0.51255,0.28233,0.044839,0.51655,0.86428,0.2306,-0.026808,0.096553 -1.7228,-0.11454,0.77966,-0.12795,-2.5273,-1.1344,1.2551,-0.19778,0.29001,-0.47073,-0.62969,-0.18267,-0.22134,0.30547,-0.37615,0.48909,0.63392,0.54649,0.0034501,0.055552 -2.8237,-0.92849,2.5492,-0.1711,-2.7376,-1.3818,0.81932,0.79823,0.48382,0.026895,1.4921,0.53335,0.21618,0.29276,0.34925,0.43394,1.1887,0.047712,0.098125,0.30102 -1.5231,-0.81379,0.79292,-0.09476,-3.2291,-1.1899,1.3212,0.7932,-0.26899,-0.15546,0.31274,0.36827,-1.0048,-0.34636,-0.31828,0.96901,0.28358,0.50037,0.34498,-0.67625 -3.9035,-0.46647,2.2248,0.73398,-3.1517,-0.3417,1.82,-0.55537,-0.33393,-0.36889,0.85506,-0.33452,-0.1382,0.48569,0.41397,0.50613,0.41514,-0.47008,0.29039,0.1445 -1.8398,-0.13159,0.029842,-0.099602,-3.5339,-0.21243,2.0095,1.0255,-0.92935,0.020665,0.36818,1.0995,-1.2134,-0.38101,-0.063565,0.91494,-0.11792,0.11611,0.37001,-0.35692 -2.0015,-0.23813,1.2265,-0.2753,-1.9613,-0.66363,0.40613,1.0006,-0.096243,0.55298,1.112,0.68391,-0.36868,0.072613,0.029329,0.45773,0.22566,0.05904,-0.25102,-0.3603 -1.5129,0.57754,-0.038284,2.146,-2.8555,-2.0451,2.4205,-0.83336,-1.7541,-0.41008,0.7052,-0.27566,1.3219,-0.1544,0.78275,0.17195,-0.084712,0.98481,0.34088,0.02821 -1.3366,-0.28108,0.3053,-0.48224,-2.3508,-0.86166,1.0881,-0.015757,-0.37942,-0.41702,0.049614,0.69794,-1.0688,-0.10928,-0.82604,0.46425,0.64528,-0.077119,-0.33669,-0.34739 -1.4871,-0.62683,1.242,-0.35145,-2.5791,-1.3261,0.64726,0.41446,0.59103,-0.52781,-0.076791,0.20017,0.30737,-0.030238,-0.62809,0.20994,0.98236,0.75967,0.30754,-0.00044438 -1.5603,-1.9289,1.034,0.0085282,-3.223,0.91365,1.8999,-0.057152,-1.4877,-1.1822,0.27671,0.4932,-0.086347,-0.3209,0.72597,0.9231,0.23352,0.28416,-0.077704,-0.37074 -1.74,-0.012141,1.4709,-0.61955,-2.3831,-0.88121,0.3124,0.64464,-0.42599,0.067775,0.87127,0.65515,-0.77143,-0.056329,-0.010054,0.18408,0.45642,0.61757,-0.17069,-0.4911 -1.4252,-1.4378,0.77161,-0.016095,-2.7338,0.031166,1.281,0.0076776,-1.9979,-1.4656,0.57627,0.81241,-0.68697,-0.76282,0.261,0.19295,0.88889,0.0937,-0.13224,-0.45804 -2.5922,-0.37598,1.8074,0.14195,-2.3554,-0.50986,0.6859,0.086406,0.37529,-0.60348,1.283,0.27705,-0.41121,0.80363,-0.22056,0.26905,0.55473,0.7642,-0.096966,-0.5051 -0.19226,-0.7207,0.39104,-0.22781,-1.561,-0.01049,0.38892,-0.31284,-0.9558,-0.55507,0.073797,0.17196,-0.091562,-0.033042,0.25779,0.27704,0.0015136,0.013823,-0.27452,-0.20206 -0.89643,-1.0389,-1.0582,0.54769,-2.0057,-0.43734,2.1775,-0.77702,-1.7247,-0.66958,0.26054,0.27845,0.62205,0.37759,0.42907,-0.25892,-0.5029,-0.13964,0.93106,-0.098498 -2.6749,-0.39261,1.3301,0.6387,-1.8951,-0.78373,0.59674,1.0001,1.089,-0.34591,0.68496,0.66167,0.12421,-0.07367,1.226,0.21915,0.87963,0.051417,0.36143,0.21557 -1.9676,-1.6242,0.23269,-0.019502,-2.6042,0.075391,1.0579,-0.19497,-0.59078,-0.44429,-0.71547,0.73194,0.037953,-0.32534,-0.25712,-0.448,-0.064633,-0.58492,0.10236,0.0010987 -1.1572,-0.91402,0.70793,0.24805,-1.5514,-1.0993,0.8762,0.60774,0.574,0.44263,-0.10859,0.28082,-0.069208,-0.13607,-0.29836,0.60101,0.20513,0.87602,0.1448,-0.16592 -2.6247,-0.19174,0.015598,0.4234,-2.1029,-0.3301,0.45425,0.51208,0.34071,0.095698,0.34391,0.57573,-0.25405,-0.072345,1.1079,0.35061,0.033256,-0.09857,0.50792,-0.24675 -2.1449,-0.52531,2.1137,0.86343,-3.4335,-1.0609,0.64395,0.090153,-1.2928,-2.0028,0.0038938,0.07168,-0.50771,-0.18992,-0.63157,-0.55463,0.60528,1.1847,0.38709,-0.35269 -0.95507,-2.058,0.90917,1.3538,-2.605,-0.68321,1.3685,-0.29616,-0.95214,-1.0781,-0.67705,0.25369,-0.064064,0.84464,0.96285,-0.10906,-0.21641,0.17265,0.16286,-0.032993 -0.58312,-1.7366,-0.10806,0.22494,-1.6848,-0.77739,1.324,-0.03709,-0.78698,-0.04927,-0.2597,0.27729,-0.24677,-0.11808,0.33133,0.78438,0.15244,0.78667,0.68064,-0.2035 -1.9919,0.51507,-0.31343,1.6771,-1.1591,-1.5756,1.0748,-0.57031,-0.86046,-0.92416,1.409,-0.97816,0.3552,-0.1317,-0.19619,0.12295,0.36837,-0.22394,0.47895,0.63693 -0.33189,-1.3821,-0.67807,0.41582,-1.4053,-0.15948,1.1671,-0.81379,-0.79924,-0.18102,0.47602,0.07948,0.15643,-0.025891,0.69173,0.50444,0.44687,0.32584,-0.20459,-0.45962 -2.7423,-0.5943,1.3757,-0.70489,-3.5633,-0.99881,1.3572,1.1717,-0.81131,0.13147,0.70357,1.2723,-1.4911,-0.32029,-0.44213,0.20341,0.33419,0.092905,0.10053,-0.57121 -2.9188,-0.86301,0.60331,0.71421,-0.85029,0.48254,0.40991,-0.16198,-0.070024,-0.35683,0.33121,1.6054,0.61208,0.94415,0.099831,0.54648,0.56192,0.73066,0.35425,-0.36484 -2.5304,-0.71775,0.40787,0.094303,-2.2131,0.68434,2.3169,-0.089586,-2.1534,-1.0642,0.33612,0.3297,-0.22337,0.010513,-0.80589,-0.27217,0.39241,-1.1315,-0.67822,0.30176 -1.3228,-2.1751,0.073633,-0.43452,-2.2325,-0.034478,2.0241,-0.056669,-0.7438,-0.39033,-0.05166,0.82954,0.30361,0.16517,0.46338,0.80452,-0.41177,-0.23195,0.3085,-0.45396 -2.054,-1.0579,1.301,-0.48854,-3.302,-1.255,0.85828,0.44237,-0.25855,-0.51786,-0.28166,0.54446,-0.9688,0.047421,-0.51718,0.31972,0.75484,0.35143,0.42083,-0.59084 -0.60497,-0.13242,-0.1267,-0.34873,-2.1701,-0.9364,1.3664,-0.01894,-0.70056,-0.76083,0.19442,-0.026087,-0.30551,-0.23701,-0.51805,0.13411,0.85112,0.19703,0.3234,-0.012754 -0.97374,-0.51461,1.2499,-0.29996,-1.9497,-0.6397,1.2489,0.64542,-0.41214,-0.45728,-0.29067,0.24449,-0.91624,0.047897,-0.40646,0.36386,0.51168,0.31222,0.24484,0.057634 -2.8312,-0.48944,1.533,-0.86844,-3.2035,-1.4749,0.85701,0.65665,0.00175,-0.19945,1.1153,0.34531,-0.61418,-0.16253,-0.2044,0.34327,0.78853,0.15885,-0.11303,-0.27703 -2.4841,1.2815,1.2539,0.13868,-2.5619,-0.84986,1.7927,0.12734,-2.0772,-0.88302,1.039,0.12932,-0.12071,0.30118,0.0076052,-0.13797,0.23712,-0.11072,-0.24845,-0.68216 -1.3805,-1.2124,-0.16069,0.91395,-2.5902,-2.2689,1.1363,-0.086889,0.0198,0.42511,0.15885,0.27677,0.46708,0.070875,0.23165,0.80695,0.29476,1.45,0.81907,0.65795 -2.654,-1.4428,1.141,-0.32489,-3.8694,-1.0961,2.0754,1.0526,-1.0276,-0.62953,0.14412,1.4711,-1.51,-0.33869,-0.40569,0.51285,0.43502,0.85121,0.85067,-0.74113 -1.4451,-1.0986,1.8344,-0.15817,-3.2586,-1.2538,0.87049,0.21239,-0.27166,-0.95221,-0.46903,-0.10478,-0.61068,-0.21929,-0.13893,0.0041503,0.49818,0.94316,-0.052582,0.064088 -1.5651,-1.7506,0.64719,-0.64766,-1.9712,0.054328,1.9841,-0.15859,-1.3506,-1.2138,0.75738,0.82763,0.11932,0.33371,-0.087761,-0.46119,1.1344,-0.67572,0.053836,-0.049359 -2.2689,-0.13819,0.30225,-0.21203,-2.9796,-1.1768,1.7485,0.50039,-0.17509,0.12465,0.30286,0.19997,-0.79245,0.24442,-0.61153,-0.050906,0.082087,0.045014,-0.31682,0.028898 -2.2857,-0.085875,1.5751,0.30942,-2.1171,-0.94663,0.71307,0.011851,0.45047,-1.3059,1.2708,-0.34355,0.39813,0.31705,-0.3774,-0.098023,0.96169,0.5085,-0.4492,0.44461 -1.5002,-0.169,-0.61595,-0.45541,-2.1074,-0.0056825,2.1845,0.94041,-0.98888,-0.034121,0.70899,-0.4772,0.26662,0.13835,0.00087666,-0.34647,0.73378,0.084087,1.2892,-0.059867 -1.1654,-0.32409,1.0361,-0.7108,-2.6967,-0.77284,1.1885,0.41533,-0.65854,-0.086289,0.15352,0.28062,-1.0631,-0.24905,-0.16116,0.2226,0.83026,-0.030225,0.034955,-0.073494 -2.2803,-0.84197,1.2404,1.0708,-3.0993,-1.2299,2.2798,0.46936,0.29054,-0.5716,-0.34635,-0.28993,-0.52587,0.6713,-0.813,0.10856,0.35201,0.50326,0.12674,-0.33121 -1.3362,0.23992,0.51804,0.03697,-1.1317,-0.035127,2.3734,0.91677,-0.92137,-0.066533,-0.095283,-0.28296,0.6882,0.77775,0.11969,-0.19473,-0.22018,-0.29148,0.42513,0.36697 -1.3767,0.35778,1.2426,0.62936,-1.8976,-0.36517,0.82365,-0.47764,-2.2669,-1.258,-0.17561,0.57216,-0.35871,-0.16776,-0.21282,-1.0347,0.84159,-0.28985,0.45465,-0.59361 -2.1514,-2.3655,1.2759,0.49576,-3.0692,-0.36845,0.88146,0.61182,-1.0596,-0.88078,-0.69222,1.1096,0.15302,-0.269,0.52596,0.10347,-0.17222,0.34125,0.020055,-0.26404 -1.9684,0.3962,1.2506,0.40104,-2.6956,-0.99989,1.3767,-0.62964,-1.8815,-1.2922,-0.16951,0.12854,0.52152,-0.24265,-0.29074,-0.84914,-0.03953,-0.26156,-0.0063743,-0.22504 -0.1963,-0.18196,0.37828,-0.23717,-1.7221,-0.33692,1.8307,-0.37927,-1.2571,-0.78266,0.54817,-0.023319,0.71897,0.72475,-0.35645,-0.17348,0.54329,-0.2385,0.25088,0.40428 -0.96729,0.019385,-0.0028518,-0.10173,-2.8879,-0.95093,2.7406,0.098181,-0.8634,-0.29035,0.41381,-0.10157,0.30465,0.088665,-0.56353,0.10024,-0.23946,0.55487,0.95822,-0.17531 -1.2994,-0.73747,-0.80302,0.71267,-2.4577,-1.0815,2.4014,0.15044,0.5012,0.51291,0.4155,0.77163,-0.95633,-0.38271,-0.058216,0.92537,0.32402,0.8513,0.87391,-0.19147 -1.8563,-2.1151,-0.46079,-0.076401,-3.3,-1.4098,2.198,-0.18325,-1.0044,-0.68458,0.075846,0.59809,-0.25307,-0.63462,-0.40704,0.149,-0.148,0.43931,0.65306,-0.24337 -0.89978,-1.692,-0.45947,0.37459,-2.3626,-1.3773,1.8641,-0.075773,-0.7495,0.10345,0.11463,0.13961,-0.44373,-0.061613,0.096383,1.0315,0.21032,0.88025,0.78891,-0.25074 -1.2606,-1.0959,-0.032462,-0.11605,-2.0346,0.88694,1.8913,-0.10822,-1.4662,-0.38544,0.97895,0.22951,0.65818,-0.50154,-0.60195,0.49964,-0.49199,-0.59852,0.34386,-0.16633 -3.0717,-0.62449,1.4647,-0.030193,-3.1472,-0.28701,0.95635,0.69461,0.40304,0.073972,0.92029,1.1839,-0.47305,0.3046,0.35161,0.24233,-0.014176,-0.042132,-0.049675,-0.54285 -1.505,-1.1525,0.20931,0.87154,-2.6893,-1.8057,1.9743,-0.20187,0.11292,0.065202,-0.36038,0.47417,0.10514,0.88528,0.1025,0.39012,0.065236,0.14926,0.80299,0.30003 -0.53171,-1.2455,-1.04,0.75833,-2.1824,-1.0194,1.5009,-0.62891,-1.1454,-0.4936,0.25535,0.053155,-0.068116,0.20086,0.73964,0.15944,0.14905,-0.1045,-0.25545,0.23473 -2.3694,-0.17305,0.44762,-0.44046,-2.49,-0.98605,2.3824,0.77464,-0.01564,-0.26456,1.0276,-0.24034,0.023829,0.17534,0.73547,0.68475,-0.27773,-0.45111,0.091099,0.61349 -0.56699,-0.90524,-0.6414,0.3602,-2.1547,-0.8876,1.9521,-0.16137,-0.12679,0.39003,-0.019804,0.43894,-0.79356,-0.03892,-0.017257,0.96863,0.75083,0.9404,0.18583,-0.22049 -2.6028,-0.80614,0.49087,0.34406,-1.7956,-0.18057,0.21342,1.1809,-0.12208,0.44165,1.125,0.91095,-0.60298,0.11475,0.60465,0.25938,-0.12109,0.089207,0.44444,-0.69902 -0.44904,-0.66646,0.38174,-0.55043,-2.6246,-0.35514,1.2598,-0.20897,-1.6602,-0.91238,0.6214,0.36442,0.17771,0.047616,-0.18318,-0.32843,0.80244,-0.88022,0.14425,0.10003 -1.117,-1.4236,1.0666,-0.75501,-2.8101,-0.95293,1.1303,0.35224,-0.82556,-1.0727,-0.38988,0.49592,-0.42636,-0.37734,-0.45627,0.15234,0.77206,0.25365,0.49911,-0.092595 -1.4142,-0.86315,0.94036,-0.43507,-3.7176,-1.1992,2.0302,0.92876,-0.87522,-0.14045,0.1456,-0.073781,-0.74095,-0.21521,-0.18938,0.64428,0.37442,0.54674,0.39673,-0.48681 -1.5639,-0.063486,1.7204,-0.30174,-2.1148,-1.0907,0.29731,0.1644,0.03394,-0.30411,0.79101,0.031926,-0.39465,-0.40862,0.27742,-0.31585,0.84219,0.54007,-0.5765,-0.094244 -2.5543,-0.53607,2.1898,0.37622,-1.4826,0.078325,0.44502,0.47795,0.27448,-0.5526,1.0635,1.6318,-0.080672,0.57023,0.65935,0.6049,0.27251,0.58449,-0.22777,-0.39356 -1.8936,-1.8239,-0.55537,0.58221,-2.8049,-1.9797,0.5859,-0.16269,0.1156,0.050278,0.58418,0.45176,0.75597,-0.98211,0.19998,0.27859,0.20064,0.93089,0.80499,0.3291 -1.3416,-0.26933,-0.13702,0.017905,-2.0592,-0.047528,3.1391,0.17132,-0.99736,-0.27702,0.53919,0.60386,0.7265,0.82483,-0.77706,0.43017,-0.26238,0.21555,1.0814,0.40696 -1.7312,1.3474,1.3892,-0.23658,-1.4122,-0.33614,1.8987,0.72277,-1.1659,-0.049749,0.30283,-0.42622,1.2207,0.2236,0.62068,0.41117,0.66076,0.41467,-0.18975,0.46619 -1.9277,-1.9138,0.50177,0.53993,-1.8011,-0.11031,0.24595,0.45371,-0.32757,-0.014695,-0.61249,1.3904,0.31792,-0.5401,0.18868,0.17088,-0.38323,0.66599,0.17056,-0.44992 -0.90776,0.12274,0.72462,0.26372,-1.5765,-0.68742,-0.52222,-0.36943,-0.41912,-0.86331,0.27256,0.80832,-0.024927,-0.36764,0.2623,-0.11374,0.28383,0.81286,0.58378,0.10048 -2.405,0.068208,0.83248,0.078219,-1.9919,-1.137,0.73951,0.28003,-0.17959,0.17615,1.5298,0.89341,-0.26257,0.93729,-0.28777,0.082732,0.20719,0.10461,-0.66933,0.014488 -1.5463,-1.3896,0.37654,0.8385,-3.2981,-1.8038,1.7665,0.09637,0.11309,0.45492,-0.059934,0.50791,-0.030647,-0.38005,0.52356,0.90135,0.5291,1.3656,0.48745,-0.5978 -3.6144,-1.2165,0.79673,-0.59355,-2.1464,-0.99903,2.4296,0.095497,-0.62232,-1.0384,0.65904,0.44709,-0.52712,-0.77788,-0.015825,0.64502,0.68801,-0.461,0.54739,-0.82503 -1.5763,-0.21962,1.0449,0.20562,-2.3918,-0.81543,0.037464,-0.085395,-0.99236,0.021695,0.27824,0.40203,-0.55146,0.22183,-0.48824,-0.53176,0.44487,0.98471,-0.67387,0.19429 -1.9295,-1.6622,-0.17133,0.39681,-3.302,-1.2827,2.5687,-0.94768,-1.0666,-0.75312,-0.48972,0.35438,0.26271,0.48407,-0.20641,0.4345,0.16486,0.43249,0.34682,0.0053296 -1.2534,0.15807,1.8073,-0.24826,-2.3301,-0.95113,0.73885,0.80816,-0.23548,-0.21398,0.056542,0.0027683,-0.92492,-0.48137,0.26047,0.23168,0.46368,0.40326,-0.73071,-0.16513 -1.2927,0.065498,1.1078,-0.19042,-2.5234,-0.59005,1.3513,-0.16072,-0.59956,-1.1685,0.35652,-0.61731,-0.85639,0.12925,-0.62458,-0.56296,0.72355,0.17408,-0.1419,0.0057442 -2.3679,-2.6759,0.21276,0.94051,-1.4174,0.15304,1.2107,0.83596,-0.97373,-0.18901,-0.3744,0.74305,-0.6285,-0.84327,-0.055115,1.1366,-0.072693,1.0342,0.13556,-0.047442 -1.8058,0.050226,1.9675,0.10937,-1.89,-0.20436,-0.069521,0.51183,-0.020521,-0.4145,1.0887,1.1062,0.36457,0.50921,0.0055431,0.66827,0.36212,0.78247,-0.4893,-0.26058 -2.0718,-0.06601,0.81943,0.58108,-2.1856,0.2359,0.33786,1.1128,-0.022022,0.2874,-0.17149,1.0661,-0.40578,0.077551,0.50407,0.57874,-0.32483,0.55276,-0.45534,-0.54628 -1.1304,0.27742,1.8211,0.3819,-0.80221,-0.71309,0.92214,0.24881,-1.2187,-0.63584,0.89142,0.20929,0.26068,-0.52021,0.20514,0.26581,0.8917,0.21115,0.43166,0.084035 -1.8747,-2.5004,0.0373,-0.43744,-2.4646,-0.33411,2.0216,-0.052933,-0.80728,-0.61959,-0.27314,0.82143,-0.0066797,-0.11333,0.30663,0.59313,-0.5238,-0.0061897,0.63363,-0.3394 -2.0855,-0.20601,1.4544,0.85036,-1.9108,-0.89014,0.46262,0.67113,0.60103,-0.26231,0.77226,0.62813,-1.0896,0.43701,0.049489,-0.14922,0.611,0.71902,-0.018082,-0.51762 -1.4649,-1.6536,0.69829,-0.35692,-2.4605,-0.11979,1.9666,0.25681,-1.6438,-1.0196,1.0301,0.43315,-0.098696,0.14725,-0.16541,0.080985,0.7323,-1.2098,-0.372,0.25088 -2.6289,-0.27711,1.7812,-0.12562,-2.4574,-0.68155,0.60214,0.6404,0.41561,0.12724,1.1212,0.82319,-0.26513,0.30625,-0.18085,0.24759,0.40491,0.10739,-0.16273,-0.65562 -3.0492,-0.69394,2.9041,0.088058,-2.507,-0.81997,0.70714,0.086042,-0.9612,-1.151,1.6889,0.0013449,-0.74736,0.30126,0.080578,-0.43929,0.82851,0.16321,-0.092131,-0.083649 -1.9272,-0.12959,1.0295,0.16214,-2.7041,-1.4577,1.4725,-0.39322,-0.73287,-0.81774,0.53117,0.028885,0.50009,-0.062007,-0.26688,-0.85807,-0.65466,-0.48098,-0.34023,-0.10547 -1.6159,-1.3808,1.0445,-0.3594,-2.7833,-0.96741,0.17831,0.067211,-0.5577,-0.7301,-0.14375,1.4507,0.20872,-0.76333,-0.10456,-0.51399,0.41134,0.70295,0.61231,-0.22045 -1.529,0.31253,1.4128,0.3051,-2.2262,-0.93924,-0.01508,-0.35251,-1.6872,-1.0451,0.79703,0.85057,-0.76578,-0.21962,0.033608,-0.68983,0.42054,0.41536,0.47314,-0.46391 -3.841,-0.41764,1.6017,0.88912,-2.9462,-0.49349,0.99958,0.23325,0.11155,-0.49055,1.2049,0.37568,-0.65216,0.60487,0.5332,0.18081,0.37394,-0.098714,-0.26859,-0.79764 -2.7997,0.032542,0.79045,0.51463,-2.3565,-1.1424,1.2422,0.36642,0.93042,-0.028869,0.47236,0.34693,0.19308,0.033531,0.71257,0.85112,0.49117,0.46373,-0.065487,0.32123 -2.9187,-0.65374,1.1751,-0.66493,-2.5473,-1.1399,1.9442,0.94132,0.069302,-0.15682,0.78374,0.14966,-0.35467,-0.32235,0.62226,0.81429,0.47753,-0.4069,-0.1778,0.12469 0.081197,-1.1043,1.1972,0.33271,-2.831,-0.68722,0.8702,-0.10828,-1.645,0.086916,-0.24853,0.25324,-0.1521,0.37184,0.34408,0.048332,-0.11783,0.50466,-0.54327,0.28773 -1.5788,-0.62076,1.8229,0.82646,-2.6236,-0.78029,1.1807,-0.21676,-1.5195,-1.5998,-0.29551,-0.24123,-0.27448,-0.26517,-0.55372,-0.95699,0.88006,0.3692,0.50413,0.27538 -0.58155,-0.62898,-0.30557,0.94213,-1.9114,-1.4137,0.75898,-0.66344,0.13132,0.16591,-0.14497,-0.36888,-0.31866,0.12473,0.16639,0.30908,0.86542,0.47649,-0.1936,0.14502 -2.019,-2.0591,-0.13444,0.68835,-2.7631,-0.83874,0.9134,-0.32937,0.13515,-0.16119,-0.66673,0.66929,0.30219,-0.25242,0.62292,-0.21625,-0.4649,0.14585,0.62476,-0.44916 -1.3405,-1.3767,1.0381,-0.018916,-2.5463,-0.55221,0.6788,0.44185,0.010106,-0.87785,-1.0083,0.68119,0.74231,0.31029,0.33499,0.079773,-0.11888,0.44973,0.53972,-0.15724 -1.6029,-2.5176,0.51184,-0.18695,-3.253,-0.41315,2.3551,0.21304,-1.5365,-0.66718,-0.15047,1.0077,-0.14178,-0.39697,0.026812,0.28823,0.00093464,0.38933,0.61097,-0.66883 -1.8914,-1.8332,1.1738,-0.21824,-2.7352,-0.86,0.80789,0.21594,-0.13387,-0.82695,-0.6203,0.99655,0.4432,0.21453,-0.33854,-0.59806,0.20088,0.16132,0.3607,0.063244 -0.74432,0.10218,0.25648,-0.14944,-1.8769,-0.75077,0.99989,-0.49192,-0.62984,-0.94768,0.2385,-0.19732,-0.1625,0.14315,-0.47118,-0.59336,0.4497,-0.42718,0.20996,0.22355 -2.0562,-1.6281,0.52973,0.31111,-2.9587,-1.0124,1.0582,-0.52318,-0.45776,-1.2803,-0.53159,0.71217,0.5697,0.26764,-0.033844,-0.70323,-0.012264,0.15358,0.57183,0.25239 -2.9768,-0.26416,0.99649,0.58765,-3.4522,-1.8897,2.1092,0.49762,0.2782,-0.55189,-0.2034,-0.44789,0.22086,0.72247,-0.30198,0.48496,0.39942,0.68481,-0.097556,0.19828 -2.3189,-1.0006,0.17174,-0.36238,-2.2636,-0.11392,1.6314,-0.71764,-1.8426,-1.8353,0.39573,0.86424,-0.57991,0.19501,0.14295,-0.95007,0.69589,-0.45018,0.2518,0.029599 -1.5934,-0.61493,1.5281,-0.099549,-2.652,-1.0895,1.0275,0.29757,0.68096,-0.46539,-0.043111,0.58376,0.42585,-0.40923,-0.3905,0.41142,0.56634,1.2004,0.30163,0.33021 -1.1294,-1.3911,-0.49773,0.14624,-1.3262,0.35453,1.363,-0.1753,-0.81763,-0.19524,0.52561,0.30114,0.35963,-0.13391,0.30387,0.45088,-0.56134,-0.38825,0.2128,-0.14314 -0.5812,-0.8089,-0.40588,0.13564,-1.9436,-0.49761,2.3938,-0.38424,-0.88151,-0.26249,0.112,0.5578,-0.22694,0.77956,-0.14779,-0.086014,0.16442,0.01001,0.91193,-0.29148 -2.4215,-1.5198,0.85482,1.7238,-2.9541,-1.2713,0.51579,-0.65333,0.34284,-0.94049,0.071621,0.68546,0.82516,0.10655,0.21328,-0.77032,-0.25792,0.67361,0.61856,-0.2439 -0.95056,-1.0162,-0.71155,0.66529,-2.3277,-0.9232,2.4682,-0.038755,-0.2581,0.37456,0.32029,0.24919,-0.92453,-0.20059,-0.34649,0.99913,0.49713,0.8838,0.52763,-0.48035 -0.16811,-0.040317,-0.44797,1.3706,-3.1854,-0.6461,2.2248,-0.99163,-1.8373,-0.40411,0.60098,0.1006,0.23953,0.18736,0.1725,-0.32682,0.36466,0.11082,-0.04785,0.047368 -1.3413,-1.3173,0.039676,0.011213,-3.6513,-0.32732,2.3715,0.52758,-1.6054,0.2827,1.2879,0.64059,-0.64909,0.2385,-0.31197,0.5329,0.027183,-0.15134,0.5012,-0.26796 -1.4315,-1.624,1.0325,0.077856,-2.9923,-0.62669,2.597,-0.47675,-0.97857,-1.0969,-0.21197,-0.063789,-0.39532,0.1802,-0.31146,0.088557,0.62695,-0.12927,0.19216,-0.54233 -0.46304,-1.459,0.67093,-0.22804,-2.0519,-0.67063,1.0243,-0.23777,-0.70607,-0.67441,-0.79649,0.27572,0.050898,-0.18796,0.48717,0.38826,0.23818,0.4288,0.34414,-0.052604 -0.84942,-0.51433,-0.48548,0.52232,-2.1665,-1.0105,1.4444,-0.59341,-0.98658,-0.65652,-0.33342,-0.077464,0.19159,-0.19035,0.20055,-0.26992,-0.92921,0.18512,0.21334,-0.047466 -1.2703,0.073518,1.0829,0.39263,-1.6546,-0.55392,0.2921,0.94476,-0.57945,0.50027,-0.11168,0.66443,-0.67617,0.48893,-0.64215,-0.087825,0.089077,0.77797,-0.7304,0.12881 -1.1907,-0.97473,0.76287,0.27251,-2.7505,-1.5266,1.7511,0.58657,0.20975,0.19652,-0.24091,0.29556,-0.41722,0.12664,-0.68109,0.67721,0.60225,0.52374,0.045281,-0.37513 -1.6302,-0.78176,0.1836,0.37507,-3.8078,-0.065579,2.3076,0.4476,-0.86232,-0.7834,0.41192,0.76453,-0.66497,-0.37108,0.14559,0.2838,-0.065351,-0.013261,0.71164,-0.54136 -2.1442,0.64682,0.31908,-0.14889,-2.9732,-1.228,0.59138,-0.25181,-1.0238,-0.8736,1.1966,-0.14717,-0.72397,-0.27212,-0.46349,-0.66346,-0.096051,-0.098384,0.03434,-0.70254 -0.56904,-0.10329,-0.021746,0.41396,-1.6936,0.20025,1.531,0.48274,-0.21414,-0.67977,0.052976,0.15978,0.35279,0.16473,0.21572,0.65986,0.56459,0.24068,0.34952,0.12341 -1.2814,0.39713,0.31096,-0.41332,-1.984,-0.31021,1.5977,-0.63812,-1.2455,-1.1806,0.41068,-0.26388,0.51315,0.20148,-0.46844,-0.39138,0.80332,-0.32888,0.56756,0.54374 -0.57516,0.11206,-0.3352,0.22906,-1.2688,-0.43852,1.9215,-0.69898,-1.4767,-0.69807,-0.21228,0.25516,0.82269,0.71908,0.14267,-0.25062,-0.69505,0.5192,0.85654,-0.033222 -2.9865,-0.64385,1.2552,0.64539,-3.0036,-1.8167,1.8429,-0.58837,-0.58387,-1.1584,0.38964,0.32276,1.0258,0.5849,-0.33462,-0.5996,-0.69007,0.54927,0.71882,0.45869 -1.2904,-0.69547,0.34503,0.034111,-2.8963,-1.2292,2.4349,0.79454,-0.52662,-0.35013,0.14653,0.29329,-0.37764,0.041134,-1.2793,0.40161,0.49134,0.37053,0.45287,-0.28907 -1.4843,-1.4135,0.433,-0.23142,-3.214,-1.4885,2.2451,0.51733,-0.025085,-0.15674,-0.50437,0.75339,-0.37857,-0.2465,-0.64171,0.70345,0.50426,0.83834,0.29573,-0.10077 -1.4721,-0.067859,0.86993,-0.30745,-3.1141,-1.1746,2.2726,0.4627,-0.78423,-0.59218,0.48518,-0.12419,0.13957,0.16914,-0.84604,-0.24711,0.46939,-0.53681,0.3794,0.10951 -3.1656,-0.6659,1.6859,-0.35141,-2.1917,-1.1405,0.62423,0.18896,-0.0060315,-0.79146,1.969,0.2887,-0.0075992,1.1603,-0.18572,0.58139,1.1193,-0.041124,0.26669,0.37572 -1.1434,-0.30888,0.96926,0.0023328,-1.9668,-0.67773,0.99359,1.0002,0.19372,-0.10662,-0.060297,0.1411,-0.53595,-0.24973,0.12241,0.52192,0.036659,0.45049,0.34467,0.015106 -0.52735,-0.95959,0.71656,0.044838,-2.2985,-0.49563,2.192,0.26772,-0.73008,-0.42694,-0.32897,0.21507,-0.11938,0.52715,-0.47406,0.69008,0.59262,0.56192,0.076094,-0.36011 -2.013,-0.09319,-1.0326,0.57687,-1.1382,-0.048427,1.9111,0.87966,-0.17923,0.049649,0.68675,0.18219,-0.21845,-0.2339,0.94362,-0.21641,0.049832,-0.10865,0.67119,-0.46694 -1.2484,0.21409,0.5248,-0.89677,-2.8818,0.18525,1.4914,-0.44924,-1.7642,0.27406,1.5655,0.52198,0.27398,0.24345,-0.4387,-0.41561,0.0936,-0.66243,0.54187,0.81247 -1.8933,-0.167,1.9416,-0.90265,-2.4956,-0.26134,0.74469,0.54102,0.10039,-0.2513,0.32818,0.2557,-0.43955,-0.20995,0.39145,0.78229,0.24383,0.51175,-0.2321,-0.1024 -0.95153,-0.29341,0.079388,0.91341,-1.5359,-0.56525,1.5101,0.95526,0.33931,0.38556,-0.15932,0.57064,-0.80217,-0.064763,-0.05447,0.58209,0.086905,0.57392,0.49547,-0.43507 -1.6638,-0.42583,1.5781,0.18399,-2.5891,-0.85421,0.15477,0.68828,0.11198,0.027499,0.20595,0.97858,-0.68381,0.19807,-0.54275,0.39846,0.46136,0.85735,-0.05925,-0.77318 -2.3323,-0.85543,1.0073,0.10086,-1.4679,-0.87739,1.5456,0.96952,0.42676,0.25847,0.65717,-0.10318,0.28595,0.6884,0.73519,0.64285,0.002304,-0.39562,-0.51522,0.49268 -0.38434,-1.3543,-0.15318,0.32446,-1.8913,-0.82845,0.17401,-0.19731,-0.77132,-0.073465,-0.45529,0.42864,0.36077,-0.57342,0.81033,0.41584,0.047104,0.58231,0.049022,-0.019202 -0.70253,-0.51066,0.39342,-0.32016,-1.8171,-0.14175,1.4107,-0.19826,-1.4094,-0.96059,0.89931,-0.063754,0.38469,0.23213,0.041669,-0.25441,0.37834,-1.0266,-0.3603,0.51489 -2.6621,-0.7367,1.9222,-0.88663,-1.5721,-0.69072,0.75996,0.71322,-0.15356,-0.48372,0.91898,0.40611,-0.20597,0.16205,0.49856,0.46871,1.1074,-0.11852,0.12949,-0.16464 -0.738,-0.81272,0.061363,0.61128,-1.4295,0.59254,2.4245,-0.072683,-0.59609,0.0032733,0.80179,1.1403,0.33895,0.61901,0.097148,0.13891,0.40887,-0.024356,0.95167,-0.39134 -0.91458,-0.60152,0.94809,-0.80562,-2.0533,0.19895,0.9609,-0.39667,-1.2359,-0.58861,0.62606,0.43028,-0.52094,0.0070763,-0.07013,-0.10989,0.66905,-0.24219,0.025731,-0.57231 -1.6879,-1.4065,-0.46916,-0.0044965,-3.0657,-1.7549,2.3131,-0.33532,-0.81463,-0.30113,-0.63188,0.81806,0.40136,0.50672,0.55616,0.75116,-0.4525,0.97311,0.53092,0.039157 -1.9892,0.45861,0.15918,-0.57983,-1.935,0.68527,1.8426,-0.3668,-0.95239,-0.40487,0.94615,-0.2501,0.61362,-0.12061,-0.84521,0.46062,0.14511,-0.89197,0.70075,0.8126 -1.7592,-0.75621,0.85054,0.061276,-2.8843,-1.6566,1.6734,0.17388,0.17834,-0.50709,-0.76726,-0.052409,-0.067054,0.58988,-0.52188,0.32786,0.58011,0.35164,-0.24395,0.32375 -0.85625,-0.15874,0.20975,-0.10336,-2.271,-0.0071639,1.3061,0.85093,-0.31309,-0.22959,0.27907,0.43883,-0.4546,0.049021,0.14774,0.42031,-0.41914,0.14094,0.66465,-0.34937 -2.4948,-0.55895,2.5277,1.7411,-1.6573,-0.86406,1.6561,-0.30648,-0.48243,-0.73825,0.91736,-0.57962,0.36318,0.65779,-0.32228,0.28721,0.51846,0.20341,0.39075,0.25927 -1.5366,0.086376,2.118,0.77941,-1.1679,-0.41446,0.79758,0.029467,0.055831,-0.41936,1.1594,-0.20687,0.17132,0.46887,0.25842,-0.0049719,0.51801,0.69018,-0.05717,0.38327 -2.0241,-0.6351,0.92938,0.50091,-2.8837,-0.91402,1.8681,1.3854,0.51495,-0.10898,0.044421,-0.026648,-0.59298,0.044246,0.81382,0.59478,0.55187,-0.13341,0.11119,0.15952 -1.2054,-1.5488,0.23501,0.52461,-2.5926,-1.4943,0.86131,-0.18414,0.21082,0.31128,-0.42321,0.49795,0.55509,-0.15492,0.58595,0.50546,-0.092449,0.78708,0.48572,-0.13413 -1.325,-0.13378,1.2118,0.13784,-1.6863,-0.69116,0.19217,0.54761,-0.6696,0.31855,-0.024962,0.40352,-0.13535,0.45733,-0.73117,-0.13214,0.74617,1.2985,-0.42573,0.27437 -1.7121,0.045028,1.9723,1.1599,-2.6072,-0.98613,1.7548,0.08113,0.0091037,-1.3226,0.30761,-0.15931,-0.46997,-0.88973,-0.25824,-0.4537,0.49557,1.0228,-0.3648,0.47625 -0.63452,-0.7165,-0.37655,0.67645,-1.3744,0.051602,2.3282,-0.20354,-0.39514,0.17332,0.30899,0.95033,-0.26112,0.20995,-0.15349,0.2199,0.43145,0.44009,1.178,-0.43931 -1.4573,-0.068109,0.6491,-0.51181,-1.8151,0.7997,0.99877,-0.10782,-1.1204,-0.2845,1.2709,-0.16984,0.034386,-0.63258,-0.56162,0.27377,0.81361,-1.0276,0.055136,0.61165 -0.97663,-1.8519,-0.41908,0.68503,-1.8319,-0.7443,0.38977,-0.18761,-0.27868,-0.28915,-0.55532,0.42443,0.0062614,-0.69304,0.973,0.59867,0.15847,0.22296,0.070331,0.031782 -3.0018,-0.95943,1.3904,0.036225,-1.0727,-0.13374,0.53788,0.77617,0.06495,-0.25904,0.37225,1.1864,-0.40648,0.16181,0.96432,0.49084,0.1835,0.19763,0.79221,-0.57428 -2.3777,-0.12845,1.9082,-1.0814,-3.2138,-1.2011,0.31597,0.66151,-0.49697,-0.38165,0.48635,0.40221,-0.78732,-0.54107,-0.0015593,-0.057845,0.81102,0.75807,0.10851,-0.24394 -2.813,-2.2929,1.0412,1.0687,-3.6244,-1.7459,0.83823,-0.014657,0.20562,-0.41841,0.45417,1.0269,0.84925,0.01113,0.32684,0.11861,0.24578,0.77312,0.94881,-0.33069 -2.1042,-1.791,0.11427,1.2499,-2.857,-1.497,0.30394,-0.45333,0.50019,-0.42538,0.26302,0.51048,0.80279,-0.30449,0.48799,-0.17468,0.15101,0.74454,0.8183,0.15548 -2.6934,-0.35913,1.2035,0.64124,-2.0174,-0.60774,0.91942,0.34155,0.56637,-0.3646,1.6382,0.52579,-0.8218,0.63177,0.70784,-0.12025,0.89184,-0.49075,0.31862,-0.37659 -1.0874,0.56002,0.78689,-0.17771,-0.80134,0.63725,0.42439,-0.33132,-0.75317,0.00014692,0.08447,-0.33912,0.12386,-0.32869,-0.24471,0.1901,0.62223,-0.27392,-0.01929,0.67167 -0.72771,-1.5642,0.034802,0.60373,-2.2775,-1.2093,1.3328,-0.26588,-0.43985,0.0078673,-0.89637,0.3905,-0.091287,0.66114,0.63988,0.60421,0.20213,0.68087,0.57,-0.2619 -2.6926,-0.18024,2.4434,1.1972,-3.237,-1.3335,1.1101,0.090563,-1.3267,-0.95787,-0.006166,-0.55787,-0.096491,0.28927,-0.62421,-0.94343,1.089,0.83108,0.17172,0.49836 -1.0962,0.68034,0.92584,-0.091813,-0.64327,-0.23186,0.43796,0.063148,-1.1709,-0.25607,0.27913,0.41372,0.10909,-0.14362,0.048592,0.16542,0.50891,0.20702,-0.047873,-0.2224 -0.63523,-1.9094,-0.39776,0.24667,-2.3237,-0.66523,2.5781,-0.15435,-1.0801,-0.11481,0.54991,0.57209,-0.09376,0.33476,0.27205,1.0139,0.54838,0.45942,0.42023,-0.49026 -1.9085,-0.83124,0.098814,-0.15553,-2.5618,-0.28003,1.3421,-0.19344,-1.5856,-0.97108,0.29826,0.46855,-0.58516,-0.20866,-0.25507,-0.023636,0.42746,-1.0673,-0.35983,0.47645 -2.4437,-0.64397,1.23,0.72375,-2.2455,-0.75984,0.59264,1.1642,-0.10635,0.47531,0.62835,1.3437,-0.45489,0.38574,0.24864,-0.47264,0.32888,-0.22132,-1.0626,-0.57713 -1.9072,0.037885,1.2464,0.61055,-2.4815,-0.45925,2.2368,-0.55921,-0.74499,-0.54759,-0.33678,-0.53238,-0.65402,0.26196,-0.44194,0.098333,0.63877,-0.32616,0.5467,0.2316 -1.6474,-1.8036,0.0039547,0.37342,-2.8554,-1.1981,2.0139,-0.42948,-0.25336,-0.65342,-0.62751,0.25761,0.03644,0.31387,-0.27495,0.016235,-0.11701,0.41025,0.54716,-0.53553 -1.2209,0.034877,0.1251,-0.49757,-2.7182,-0.40101,2.2237,-0.87199,-1.2132,-1.2822,0.44899,0.11742,0.56261,0.29129,-0.63184,0.0085032,0.78471,-0.3627,0.39746,0.31299 -1.3097,-1.0349,0.57118,0.29441,-2.1495,-0.69067,2.2379,1.0348,-0.28517,-0.10194,-0.5649,0.53985,-0.68548,-0.011525,-0.81176,0.6301,-0.081552,0.69923,0.23298,-0.4629 -2.2383,0.18513,1.4081,0.14101,-2.2745,-1.6665,1.2344,0.052886,0.16266,-0.41544,0.64201,-0.29374,-0.1667,0.36795,-0.082803,-0.31183,0.68772,0.26048,-0.57592,0.28348 -0.77758,-0.249,0.40729,-0.73878,-2.3195,0.029605,0.82755,-0.59844,-1.521,-0.41287,1.0665,0.21514,-0.12918,0.057297,0.064964,-0.46236,0.66513,-0.61755,0.25039,0.077255 -1.3905,-2.1989,0.18433,0.1262,-2.5214,-0.74063,1.0151,0.0063453,-0.78782,-0.59283,-0.63252,0.60794,0.1776,-0.06556,0.20274,0.26709,-0.18509,-0.14756,0.17775,-0.12477 -1.8896,-0.5507,0.41308,0.17479,-1.4633,-0.15374,-0.062852,0.90837,-0.076765,-0.18854,0.23034,0.5188,-0.67839,-0.28799,0.45811,0.052339,-0.098923,0.31968,0.42375,-0.67866 -2.024,-0.45016,0.74396,0.16965,-2.0266,-0.53743,0.3229,1.0497,0.29561,0.34421,1.4173,0.91646,-0.27217,0.50582,-0.044237,0.47087,0.11968,0.11518,0.2952,-0.36581 -1.5038,-0.74922,1.8017,0.037532,-3.1962,-1.0022,0.78407,-0.049697,0.48005,-0.87145,-0.20315,0.22181,0.20483,-0.55772,0.083324,0.097488,0.37449,1.1337,-4.8121e-05,-0.0020153 -2.5971,1.043,1.8491,0.2527,-2.2851,-0.77111,0.49258,-0.2354,-1.4209,-1.2837,1.4331,-0.072946,-0.3685,0.046478,-0.14067,-0.58306,0.56121,-0.52853,-0.0069521,-0.69447 -1.7118,-0.028498,0.71469,0.31399,-2.1356,-0.87073,1.327,1.0808,0.1338,-0.43676,0.16986,0.40243,-0.82828,0.12538,0.15005,0.050189,0.66551,-0.20182,0.14734,0.32572 -2.442,-0.46129,0.62729,0.2869,-2.4948,-0.064193,0.61999,1.4356,-0.55768,0.29001,0.25899,1.3998,-1.4304,-0.15769,0.041484,0.24033,-0.42725,0.36114,0.064864,-0.84551 -1.8917,-0.54479,0.71759,0.00055608,-2.6923,-1.4019,0.30582,0.27319,-0.13824,-0.21911,1.256,0.27307,-0.21743,0.2257,-0.6259,-0.096741,0.31005,0.24166,-0.18282,-0.15364 -0.92025,-0.65528,1.7012,-0.71142,-2.619,0.19984,1.4445,-0.34402,-1.7653,-0.23021,0.85841,0.57856,-0.11524,0.043977,0.12249,-0.44477,0.65836,0.014377,-0.24093,-0.0083268 -1.6393,-0.41767,-0.066531,0.44405,-1.9493,-0.23753,0.76106,0.99195,0.17228,-0.52272,0.18382,-0.28384,-0.29891,-0.55885,1.0187,0.35736,0.60543,-0.09255,0.39894,-0.47916 -1.728,-0.70004,1.188,-0.28812,-3.5719,-0.47591,1.5891,0.77937,-0.1146,-0.074134,0.2463,0.56505,-0.92561,-0.32685,0.50057,0.43561,-0.25069,0.27901,0.32693,-0.1469 -1.5946,-0.25051,0.14255,-0.17143,-3.6048,-0.55047,1.666,0.98782,-0.47496,0.26246,1.3326,0.37099,-0.2781,-0.011962,0.015545,0.98609,-0.40211,-0.35567,-0.18914,-0.69662 -2.9197,-1.0155,2.2091,0.040034,-1.8168,-0.82564,1.107,0.88608,0.38055,-0.48354,1.2726,0.88654,-0.097071,0.36138,0.54059,0.66722,1.0424,-0.30943,0.42497,0.034726 -1.1311,-0.40195,-0.74815,1.1478,-2.1345,-1.2208,2.1818,0.38805,0.011146,0.75966,0.52371,0.24478,-1.0776,-0.48947,-0.29985,0.85775,0.40391,0.6633,0.52806,-0.25887 -2.1729,-0.61661,1.8597,0.30038,-2.1504,-1.0438,0.81254,0.54835,0.9365,-0.68581,0.92086,0.38577,0.59704,0.27269,-0.17835,0.30714,0.99794,0.9542,-0.27276,0.28156 -1.5131,-1.6767,0.56615,-0.41261,-3.2786,0.031069,1.8713,0.016532,-1.879,-1.1935,1.1536,0.36983,-0.14931,-0.41293,-0.68725,0.16624,0.98441,-0.38758,-0.12352,-0.49839 -0.69233,-1.9469,0.12361,0.14618,-2.2631,-0.2705,1.8186,-0.48679,-0.72847,-0.56738,-0.46654,0.31348,-0.019292,0.46004,0.76551,0.62965,0.17668,0.67959,0.060707,-0.6276 -1.9181,-1.7154,0.95357,0.79228,-3.9649,-1.8692,1.5273,0.31744,-0.14074,-0.51244,0.19337,0.96584,0.20986,0.099254,-0.16764,0.23946,0.5447,1.0027,0.46616,-0.025964 -0.74587,-1.8004,-0.012166,-0.16091,-1.8806,0.6624,1.9959,-0.41018,-1.0395,-0.32686,0.75099,0.59614,0.76547,-0.42322,0.44123,0.66272,-0.15158,0.79104,0.53265,-0.71563 -3.0531,-0.19243,1.0268,-0.54236,-3.2082,-1.6567,2.0652,0.94622,-0.079484,-1.0463,1.1073,-0.19526,-0.55526,-0.24913,-0.49949,-0.018223,0.69939,-0.019702,-0.14257,0.031826 -0.84201,-1.5093,0.87183,-0.63105,-1.9584,0.15198,1.5015,-0.027857,-1.4452,-1.0462,-0.050312,0.63463,0.16666,-0.093412,0.18382,-0.16615,-0.10431,-0.17419,-0.18506,-0.15825 -1.7057,0.51487,1.7978,0.25718,-1.0042,-0.25536,0.5798,-0.33478,-1.2782,-1.1606,0.76982,-0.42208,-0.11229,0.22463,-0.1479,0.17014,0.91214,-0.16175,0.49105,0.13643 -1.5396,-0.29842,0.55154,-0.32604,-1.6228,-0.60008,0.16601,0.5907,-0.047265,0.23007,0.9831,0.4947,-0.14268,0.085859,-0.33368,0.60269,0.47643,0.63736,-0.42516,-0.3222 -1.4136,-0.42363,0.3173,0.0059677,-1.903,-0.50341,0.78588,-0.45873,-0.76959,-1.0322,-0.45552,0.33619,0.1166,-0.079095,-0.19101,-0.5998,0.16049,-0.73722,-0.39616,0.2674 -2.1819,-0.017643,1.6361,-0.66406,-1.5928,-0.31619,0.64489,-0.75069,-0.54998,-1.0239,1.4217,0.0085059,-0.57106,0.38875,0.27077,-0.22842,1.157,-0.69518,-0.20126,0.33702 -3.3189,0.12688,2.153,1.0142,-2.8616,-0.99759,1.5376,-0.025446,0.18282,-0.78993,0.63565,-0.42768,0.0033997,0.6936,1.0798,0.096364,0.29244,0.023244,-0.12248,0.18241 -2.0602,-0.11617,1.585,0.93981,-2.2172,-0.65325,0.27927,0.19941,0.65852,0.038483,1.1389,0.44055,-0.33124,0.55668,0.40343,-0.12034,0.32232,0.17074,-0.27228,-0.45277 -1.6195,0.50908,0.98263,0.28756,-0.76613,-0.3766,0.96458,0.31188,-0.61579,-0.73143,0.46205,-0.025859,0.21156,0.1953,0.48087,0.0022839,-0.42554,-0.31403,0.15774,0.026902 -2.3692,0.00058541,2.2713,0.40996,-2.1388,-0.74066,-0.026452,-0.051128,-1.2573,-0.18487,1.7745,0.71312,-0.68676,0.75386,-0.29278,-0.45243,0.28865,0.78277,-0.65666,-0.13392 -0.56259,-0.76685,1.3399,0.35624,-2.2984,-1.0217,0.79373,-0.13347,-0.27338,-0.74381,-0.57204,0.21354,-0.15993,-0.2443,0.17447,0.1806,0.13664,0.93537,0.29033,0.47735 -1.9061,-0.3977,-1.0299,0.049385,-2.3776,-0.55616,2.3614,0.93477,-0.10261,-0.38155,0.67414,-0.13521,-0.077127,-0.1824,0.5429,0.77752,0.28813,0.1,0.89259,-0.13717 -1.6208,-1.4637,1.4707,-0.0083849,-1.8233,1.1006,1.5811,0.48073,-1.5254,-0.65782,0.42721,0.18193,-0.30982,-0.40817,-0.010272,0.30853,0.13376,-0.38064,-0.90361,0.25585 -0.57973,-0.53143,-1.0004,0.48135,-1.909,-0.74299,2.2803,-0.80414,-1.6764,-0.74284,0.39268,0.091387,0.53343,0.32584,0.097536,-0.10396,-0.42749,0.47437,0.60998,-0.040539 -1.0224,-0.65523,0.59169,-0.035014,-2.5102,-0.52966,-0.16462,-0.076948,-1.5626,-0.97589,0.096558,0.61507,-1.0886,-0.099167,0.1791,-0.70582,0.50155,-0.16351,-0.037726,-0.15151 -2.2178,-0.54804,2.816,0.85163,-3.0344,-1.2208,0.89226,0.30717,0.22034,-1.461,0.70949,0.23866,-0.27282,-0.23515,-0.1099,-0.26219,0.29347,1.207,-0.049336,0.1513 -2.1311,-0.016055,2.3874,0.029839,-1.6593,-0.31177,0.6334,0.010166,-0.092028,-1.2766,1.3037,0.37586,-0.28783,0.56352,0.00016903,0.013895,0.65177,0.40961,-0.35626,0.56371 -3.0694,-0.20678,1.6925,-0.57051,-2.7829,-0.4381,0.028714,-0.28676,-0.50568,-0.77528,1.5318,0.633,-0.41919,0.25541,0.37309,0.91574,0.9071,0.47388,-0.74264,-0.20809 -1.9753,-0.14545,1.7423,-0.02901,-2.2019,-0.70684,0.032911,0.53691,0.22558,-0.1264,1.1204,0.62092,-0.1568,0.68014,-0.26839,0.095646,0.59651,0.85547,-0.16134,-0.72661 -1.0811,-0.10482,1.0181,-0.68339,-2.6173,-0.72446,1.1564,0.25181,-0.28444,-0.53697,-0.5235,0.23458,-0.86706,-0.93556,0.013759,0.40087,0.55393,0.80343,0.25189,0.27967 -2.5951,-0.43593,1.0883,-0.18289,-2.7385,-0.65896,0.43069,0.46312,0.029598,-0.052834,1.0922,0.41227,-0.48709,0.48338,-0.73947,-0.29705,0.77217,1.0455,-0.57265,-0.70304 -1.7591,0.68914,-0.234,-0.40197,-2.4528,0.61496,1.1202,-0.37988,-1.5506,-0.20342,1.3402,0.29197,0.86167,0.43629,-0.6671,0.59972,-0.010027,-0.54984,1.1352,0.72024 -2.1858,-0.23797,1.2726,-0.88042,-2.6354,-1.4498,1.099,0.32612,-0.11144,0.05498,0.30893,0.78125,-0.4327,-0.9614,0.348,0.49548,0.47681,1.6123,0.44886,-0.14121 -2.2547,-0.64305,2.077,0.53533,-1.4761,-0.50776,1.2249,1.5628,-0.49806,-0.93987,0.20622,0.019678,-0.20041,0.37868,0.6682,0.18055,0.63721,0.5298,-0.18121,-0.23875 -1.1174,0.5224,0.48444,-0.40742,-1.6181,-0.17977,0.544,0.1465,-0.59511,0.069723,0.8296,0.079019,-0.70289,-0.12666,0.21263,0.13586,0.54639,-0.61873,-0.33785,-0.21175 -0.092021,-1.414,-0.42964,0.24388,-1.9472,-0.24305,2.0055,-0.57792,-1.2699,-0.19508,0.48786,0.54025,0.071476,0.1637,0.41758,0.50305,0.61503,0.65367,0.36269,-0.67353 -0.79515,-0.28677,0.23712,-0.72775,-2.0081,-0.87476,1.4498,0.41588,-0.36306,-0.38002,0.15549,-0.070106,-0.30806,-0.41376,-0.45765,0.56597,0.42148,0.092615,0.201,0.19573 -2.8349,-0.77697,2.5457,-0.38859,-2.1206,-0.92333,0.45108,0.61166,0.38327,-0.84175,1.2828,0.17193,-0.24559,0.49911,0.055382,0.14308,1.2216,0.62442,-0.31938,0.18006 -0.51082,-1.2953,0.52998,-0.39776,-1.383,0.19669,1.9958,-0.23067,-1.0074,-0.24457,0.26159,0.59421,0.55343,0.52694,0.08064,0.26726,0.10563,0.11566,0.50011,-0.53705 -2.387,-0.60127,1.453,-0.31176,-2.7706,-0.62131,1.2952,1.2086,0.31799,-0.12851,0.23881,0.23204,-0.46131,-0.68417,1.299,0.76286,0.10537,0.32491,0.24172,-0.39289 -2.7546,-0.61905,1.9804,-0.37078,-2.4337,-0.030461,0.79911,0.36341,0.39778,-1.7986,1.1069,0.10136,-0.57702,0.64867,-0.0064507,0.029116,1.1797,0.48719,0.086309,0.60788 -2.2404,1.5694,1.0261,-0.4959,-2.3064,-0.80424,1.7062,0.31169,-1.9592,-0.67946,0.97902,-0.4866,0.35981,-0.24773,0.41191,-0.67512,0.8575,-0.26206,0.47428,0.060332 -2.273,0.10599,2.1875,0.053369,-2.4207,-1.2549,0.79033,-0.024124,-0.31138,-0.72665,1.3625,-0.2824,-0.52755,0.11393,0.15275,-0.59288,0.9661,-0.0093608,-0.55688,-0.11065 -1.417,0.85099,0.61296,-0.75964,-2.5066,-0.33105,1.2852,-0.23793,-1.2662,-0.92093,0.64096,-0.010964,-0.55004,0.1853,-0.12634,-0.38042,1.0034,-0.56946,0.27361,0.33166 -0.83785,-0.54322,0.19157,-0.37289,-2.3865,-0.20578,0.80964,0.021014,-1.3431,-0.29571,0.65301,0.57319,-1.0642,0.41923,-0.6142,0.15454,0.65769,0.20836,0.093554,-0.99586 -0.6704,0.14194,1.1315,-0.13757,-1.5084,-0.55861,0.76674,0.53748,-0.034775,-0.48528,-0.59386,0.16999,0.018698,-0.32892,-0.25754,0.18477,0.040948,0.37137,-0.14426,0.688 -1.0265,-0.24652,0.5187,-0.41217,-2.3408,-0.4151,1.5573,-0.14404,-1.3383,-1.2308,0.59236,0.055317,-0.25587,0.02964,-0.80511,-0.64333,1.1938,-0.56615,0.54298,0.04024 -2.3713,-1.0349,2.0508,-0.48712,-3.7348,-1.4072,1.1621,0.90376,-0.43702,-0.35703,-0.15455,0.70818,-0.96339,-0.11576,-0.30004,-0.020084,0.76669,0.52668,0.17427,-0.22867 -3.783,-0.80955,-0.5564,0.98339,-1.2765,-1.1117,2.2925,-0.77974,-0.1325,-0.65158,0.077265,-0.18616,0.1962,-0.15604,-0.026715,0.14094,0.44104,-0.34692,0.2185,-0.078872 -2.4749,0.061395,2.2779,1.6431,-2.8078,-0.31947,1.0795,0.38006,-0.6351,-0.26259,1.0766,0.074887,-0.99126,-0.48647,0.030947,0.13053,0.15351,1.0924,0.092634,-0.48834 -0.53911,-0.68149,-0.2362,-0.29208,-2.0072,-0.15284,2.2121,-0.44591,-1.2917,-0.73601,0.61994,0.45185,0.73647,0.51429,-0.21614,-0.18102,-0.084827,-0.30019,1.0208,-0.065746 -1.8384,-0.078812,1.2134,-0.22147,-1.8732,-0.5095,0.16627,0.67901,0.22205,-0.1198,1.0668,0.27674,-0.11199,0.58567,-0.4031,0.29451,0.60682,1.1811,-0.17908,-0.8331 -2.6049,-0.69308,1.9858,-0.34125,-0.91352,-0.11499,0.68965,0.60797,0.012457,-0.53061,0.84269,0.78434,0.10138,0.84955,0.10304,0.32718,0.70761,0.26463,0.20006,0.11302 -1.101,-1.3914,0.85258,-0.6087,-2.9295,-1.2056,1.1197,0.55698,-0.51506,-0.86714,-0.51945,0.53449,-0.35172,-0.43361,-0.46782,0.46241,0.71919,0.42258,0.59712,-0.037264 -1.7823,-1.2064,0.99827,0.95249,-2.9225,-0.84365,1.563,-0.72521,-0.43258,-0.87887,-1.0148,-0.18377,0.43554,0.4064,-0.28421,-0.5092,-0.030531,0.31622,0.34679,-0.44527 -2.804,-1.8266,-0.60826,0.37996,-3.4671,-0.69082,1.6087,-0.21641,-0.74439,-0.29342,-0.27949,1.0582,-0.49432,-0.69804,0.051358,0.18298,-0.61137,0.30154,-0.27652,-0.45058 -1.6558,-0.8726,1.077,1.2859,-2.3339,-1.0162,0.66388,-0.88908,0.33689,-0.23746,-0.39265,-0.39075,0.9167,0.19047,-0.085879,-0.10987,0.14562,1.2074,0.33582,-0.066805 -0.52658,0.18266,0.63359,-0.18277,-1.8398,0.6415,-0.15696,-0.59407,-1.8265,0.0083199,0.94754,0.7381,-0.08522,-0.057062,0.46691,-0.83313,0.25475,0.030795,0.12725,-0.13642 -1.3105,-0.088848,1.6424,0.426,-2.4708,-0.91496,0.64516,0.080815,-0.50776,-0.7059,0.58937,-0.41809,-0.48791,-0.35785,-0.35653,-0.29611,-0.016486,0.54172,-0.2678,-0.28031 -1.2121,-0.13091,1.2986,0.31935,-2.2173,-0.53397,0.48753,0.66824,-0.066085,0.043739,-0.28842,0.89519,-1.1013,-0.10148,-0.076729,0.49529,-0.11898,0.60424,0.026329,-0.45694 -0.44064,-0.19687,0.51907,-0.3061,-2.7485,0.042912,1.5802,-0.41912,-1.714,-0.85539,0.94186,0.31272,0.59681,0.19034,-0.35885,-0.51011,0.89206,-0.47821,0.38576,0.30009 -2.1166,-0.78754,-0.99203,0.45435,-2.3574,0.29562,0.97394,0.98647,-1.0413,0.5094,0.58122,0.46511,-0.6092,-0.21315,-0.18236,-0.15163,-0.25473,0.12291,0.51339,-0.39451 -2.0359,-1.459,-0.16758,2.2172,-2.2836,0.10542,0.18795,1.3853,-0.15767,-0.11164,-0.437,1.4599,0.14926,0.57271,0.10649,0.65964,1.1661,0.73576,0.36689,0.10879 -1.6,-1.3733,-0.51723,1.4529,-1.2478,1.0131,1.1075,0.76398,-0.34484,-0.086845,0.54936,0.023577,-0.12762,0.31078,0.34951,0.47695,0.28581,0.7418,0.95542,-0.50538 -2.3031,-0.4653,0.99505,1.7358,-0.97229,-0.62393,0.85433,0.17392,-0.3941,-0.67344,-0.081724,0.46439,0.49179,1.0389,-0.023474,-1.01,-0.26995,0.39428,0.028539,-0.4581 -0.90744,-0.54918,0.2159,1.7058,-1.0704,-0.30936,0.32029,0.38826,-0.90348,-0.1078,0.10645,0.19118,0.21261,0.39351,-0.09297,-0.65124,-0.3618,0.038186,0.44025,-0.75831 -1.3878,0.37832,-0.82671,1.3953,-1.6977,0.38784,0.41442,-0.29111,-1.3629,-0.62204,0.75325,-0.5123,-0.68306,0.66892,-0.20366,0.33749,0.24959,-0.097326,0.12542,-0.23552 -2.2454,-1.2226,-1.3976,1.1339,-1.7864,-0.37145,2.6786,0.17168,-1.6718,0.051454,0.45719,0.07336,0.0050045,0.78747,0.060054,-0.40147,-0.47277,0.39362,0.57227,0.29129 -2.1383,-0.96232,-1.7147,0.72124,-1.9542,0.75062,2.1708,-0.22009,-2.1044,1.198,1.1785,0.73197,0.86148,-0.43431,-0.63779,-0.19453,-0.18477,0.73199,0.55372,0.36251 -1.2351,-0.96737,-0.92668,0.83728,-1.2971,0.86763,0.6881,0.025044,-0.85132,0.80358,1.2496,0.15891,-0.059967,-0.42583,-0.54259,0.54283,0.010489,0.77088,0.242,-0.30587 -0.04331,0.17101,-0.55677,0.78174,-1.82,-0.34891,1.2779,-0.67856,-0.41471,-0.96364,0.19127,0.60722,-0.19756,0.063477,-0.042457,-0.37586,0.55776,-0.31913,0.21771,-0.08967 -1.0844,-0.55845,-1.4224,1.4793,-1.9892,-0.15253,0.56021,-0.037824,-0.92964,-0.4021,0.24433,0.18614,-0.1457,0.001251,0.068487,1.2183,0.91483,-0.43913,-0.20856,-0.24389 -1.9047,-0.57647,-1.1948,1.0682,-1.2197,0.96178,0.70807,-0.13963,-1.2286,0.90391,0.75789,-0.35772,-0.19843,-0.10492,-0.17727,-0.07056,1.3964,0.55842,0.01015,0.15413 -0.92794,-1.1117,1.0922,1.8165,-1.9952,-0.93518,0.473,-0.069413,-0.37584,0.41499,0.64141,1.2958,0.20962,0.095208,0.40702,0.2194,0.58239,-0.20592,-0.060324,-0.36472 -0.62087,-0.46466,-1.0867,0.59923,-0.95083,0.44314,0.60645,0.37792,-0.66978,0.20422,1.1113,-0.23799,0.16178,0.0075209,-0.36228,0.17071,0.60146,0.27094,-0.072705,0.018858 -1.1816,-0.71948,-1.4161,0.35343,-3.3075,-0.18619,2.5614,0.47501,-1.4094,-0.75648,1.2047,0.85564,-0.38037,0.31058,-0.14787,0.61907,0.558,0.6267,1.1601,-0.7111 -1.2156,-0.84402,-1.6412,0.68444,-3.1269,-0.9105,1.0395,-0.28547,-1.2538,0.23159,1.1611,-0.40815,-0.57458,0.30603,0.071935,-0.19422,0.61391,-0.13635,0.57691,-0.11383 -1.0578,-0.6533,0.47116,0.65156,-1.1867,1.3378,1.6095,0.88448,-0.58243,-0.68244,0.19934,0.57866,0.206,-0.20553,0.28699,0.49218,-0.041609,0.46601,-0.24325,-0.20005 -2.4183,-0.13759,-0.52556,2.0889,-2.4604,-0.52263,-0.17178,-0.59572,-0.14404,0.12499,0.64712,-0.13068,0.30461,0.71378,0.55072,-1.4503,0.17664,0.46553,0.74303,-0.14791 0.023621,-1.1132,0.74047,1.4026,-1.7398,0.27958,2.2989,0.13368,-0.90651,0.047888,0.59059,0.9107,-0.45271,0.70224,0.24468,0.5656,0.54332,0.5542,-0.49066,-0.22125 -1.2673,-1.1329,-1.9441,1.4261,-2.2537,-0.42436,0.81136,0.19427,-0.93382,0.068573,0.85551,0.099431,-0.56109,0.56489,0.011103,-0.16124,0.72943,-0.37108,0.5356,-0.21317 -1.3662,-1.1211,-1.2022,1.8803,-1.9719,-0.22011,0.40151,0.23578,-1.1113,0.16249,0.95216,0.08209,-0.29847,-0.43778,-0.11412,1.037,1.1223,-0.058917,0.41325,-0.42964 -1.4773,-0.94331,-1.1871,0.91124,-2.9038,-0.82691,0.62387,0.75358,-0.4995,0.17789,0.13376,0.46269,-0.32993,0.034531,0.68165,0.32377,0.078953,0.70232,0.93219,-1.018 -1.5343,-0.86153,-1.2477,1.3775,-2.0903,-0.5719,0.0080481,-0.005553,-0.37501,0.30735,0.25559,0.28048,0.18379,0.7275,0.33397,-0.67678,0.41816,-0.18096,0.32893,0.24983 -2.3842,-1.3661,-0.11948,2.1384,-1.8637,0.78181,0.60431,1.6049,-0.86818,0.15156,-0.45808,0.65717,-0.46856,0.61767,0.43026,0.4937,1.1655,0.63954,0.35419,0.00030045 -1.9319,-0.78266,-1.2105,1.1057,-0.70281,-0.48546,1.223,-0.03506,-1.2675,0.68372,0.724,-0.45691,0.036256,-1.0025,-0.14868,0.15296,1.3484,-0.026491,-0.072224,0.46584 -0.50531,-0.65106,-1.2507,0.89528,-1.3956,0.39141,1.3448,0.093828,-0.45687,-0.98881,0.62879,0.79245,-0.047739,0.012145,0.35358,0.73137,0.99406,0.00042042,-0.072697,-0.50723 -1.7288,-0.54924,-0.31774,1.0268,-0.6273,0.87224,0.85668,0.33397,-0.6602,0.56622,-0.020314,-0.015287,0.33246,-0.10777,0.58752,-0.1549,0.79936,0.51387,0.56977,-0.19009 -2.0266,-0.75051,-0.3314,1.2733,-1.768,-0.40101,2.1088,0.71893,-2.0429,0.27082,-0.13093,0.29315,1.0779,0.21896,-0.16707,-0.56853,-0.60093,0.31627,0.62605,-0.16608 -2.5537,-0.17227,1.0599,3.1617,-2.1916,-0.56288,0.37901,0.37074,-0.2822,-0.80845,1.2202,0.44942,0.46698,1.4655,0.37607,-0.70959,0.089631,0.68886,0.97123,-0.50996 -0.68948,-1.7086,0.3549,1.8231,-1.9466,-0.74221,1.9886,-0.25181,-0.41492,-0.43175,0.16537,0.86907,-0.5952,0.72846,0.68888,0.39971,0.63326,-0.43307,-0.02469,-0.22027 -0.85414,-0.48872,-0.27914,1.0928,-2.2607,0.73705,0.19322,0.72518,-0.87141,-0.059806,-0.031602,1.1628,-0.72165,0.61653,0.94759,0.10251,-0.13532,-0.13342,0.18292,-0.37485 -1.7025,-0.89423,-0.37229,2.399,-2.4709,0.040244,-0.013741,0.76468,-0.34601,-0.015807,-0.10845,0.73613,-0.27759,0.96392,0.21872,-0.47903,0.48508,0.058808,0.067417,-0.13477 -1.1584,-1.2402,0.66093,1.5017,-1.7201,0.9169,1.3049,1.339,-1.0036,-0.12649,-0.23234,0.87222,-0.38431,0.43727,0.17477,0.74192,-0.27968,0.37827,-0.79605,0.11624 -1.5356,-1.3759,1.184,2.1873,-2.0509,0.26378,1.5607,1.3697,-0.7068,-0.21775,-0.14655,0.82027,-0.81052,0.45744,-0.40741,0.29314,0.67646,0.75636,-0.6078,0.54106 -2.6448,-2.1998,0.53573,1.0917,-2.4068,-0.0099194,0.84208,0.9032,-0.22168,0.56556,-0.4136,1.3455,0.74848,0.61974,-0.33823,-0.35529,0.22212,1.1189,0.13629,-0.0077341 -1.6376,-1.329,-0.39483,0.99171,-1.4277,0.61283,0.90174,1.0091,-0.53397,0.081651,0.068435,-0.1689,0.14659,-0.090564,0.89224,0.27482,0.55009,0.30241,0.48161,0.24591 -2.5652,-1.3685,-0.1973,0.90442,-2.1758,-0.69594,0.062725,0.77558,-0.090458,1.5643,0.71551,0.98486,0.1238,0.024349,-0.1266,0.084582,-0.090221,1.205,0.32787,-0.30921 -0.55804,-0.323,-1.1362,1.4206,-1.9988,0.55942,0.57077,0.037912,-1.2683,-0.71045,0.27786,0.47233,-0.026049,0.14754,-0.18575,0.57272,0.8677,-0.37269,-0.45093,-0.69771 -0.61548,-0.053979,-0.53403,0.29505,-1.9585,-0.31149,1.0049,-0.88542,-1.4379,-1.4871,0.31993,-0.62005,0.25758,0.45496,0.19295,0.17798,0.47308,-0.084634,-0.34583,0.12765 -1.5095,-1.2965,-1.7107,1.0509,-1.6816,0.60725,1.1939,0.13986,-1.4247,1.0144,1.5061,-0.1192,0.17756,-0.2247,-0.4723,-0.1032,0.53491,0.46849,-0.028004,0.12493 -1.5739,-0.23067,0.62,1.6184,-2.6063,-0.69868,0.22116,-0.7488,0.28667,-0.74235,1.1116,0.80502,0.11246,0.47746,0.7362,-0.27127,0.18088,-0.31594,0.81839,-0.49383 -1.0898,-0.98145,0.32273,2.2851,-2.798,-0.4248,1.1929,-0.24873,-0.80824,-0.10648,0.085159,1.1789,-0.2198,-0.16047,0.90907,-0.10677,0.44625,-0.60352,0.17266,-0.72071 -1.141,-0.73937,-1.6735,0.82293,-1.5298,0.42156,0.78844,-0.019883,-1.7303,0.77556,1.5079,0.11404,-0.34061,-0.061642,-0.76156,0.085675,0.70513,-0.028727,-0.25163,0.24657 -1.6333,-1.8054,0.39312,2.0397,-1.8937,-0.19179,0.9503,1.3639,-0.59572,-0.55966,-0.51404,0.46689,-0.27088,0.71903,0.68728,-0.66568,0.1443,0.40674,-0.17583,0.26517 -2.1755,-1.5153,-1.3554,2.1886,-2.2838,0.24324,0.32282,0.44309,-1.3527,0.58731,0.63958,0.30157,-0.51327,0.67738,0.37422,0.29703,0.85716,-0.02745,0.64931,0.35503 -1.986,-0.63588,-1.0975,1.8876,-1.9401,0.042678,0.29436,-0.26624,-1.228,0.074889,-0.00017127,-0.37925,-0.3985,0.3559,0.85761,-0.82703,0.8142,-0.46588,-0.10342,-0.06082 -1.9859,-1.7726,-0.53679,2.3538,-2.4631,0.55935,2.1091,0.53113,-1.2008,-0.64035,0.12148,0.2971,0.023175,0.06105,-0.050935,1.1188,0.20091,0.25828,-0.080196,-0.66837 -1.8087,-1.5522,-1.0423,1.8706,-1.9372,0.1119,0.84026,0.66757,-0.63871,-0.28444,0.13894,-0.36471,0.10796,0.5302,0.35966,0.10024,0.75323,-0.26358,-0.69521,0.4127 -2.1559,-1.0997,-0.99606,1.8704,-3.635,-0.0083624,0.15446,0.52054,-1.142,-0.72966,0.41036,1.0954,-0.84378,0.19234,0.0151,0.42725,1.302,0.3207,0.29422,-0.92356 -0.27427,0.41262,0.21629,1.2947,-1.8129,-0.19908,1.5936,-0.0051508,-0.43147,-0.53356,0.085296,0.5299,0.042946,0.53181,0.13986,-0.33206,-0.096402,-0.096113,0.50341,-0.6498 -1.2883,-1.1892,0.82043,1.9053,-1.8785,-0.37331,0.56129,1.4499,-0.2901,-0.50068,-0.047623,1.0075,-0.0628,0.9055,-0.13873,0.011669,0.49686,0.71065,-0.2328,0.2412 -1.9442,-0.83694,-1.6445,2.2205,-3.2413,-0.16285,0.58728,0.3805,-0.83028,-0.31263,0.085471,0.68812,-0.52317,0.80667,0.28949,0.37254,0.42217,-0.54708,0.063177,-0.2766 -0.49646,-0.92298,-0.74596,1.2174,-2.2564,0.098867,1.9439,-0.28115,-0.52484,-0.7503,0.17262,1.3601,-0.17806,0.40148,0.642,0.58733,0.39477,-0.079696,0.083935,-0.7029 -2.4756,-0.65784,-0.15893,2.0441,-1.5214,-1.0126,1.2054,0.62155,-0.48057,0.12039,0.34553,0.37829,0.40745,0.89861,0.74722,-1.4057,0.44379,-0.82103,0.7062,-0.11222 -1.3357,-1.2038,1.1047,1.5868,-2.0748,-0.84868,1.0286,1.1617,-0.34035,-0.068058,-0.56825,0.63455,-0.048781,0.538,-0.4274,-0.1154,0.47407,0.30458,-0.71099,0.84452 -1.278,-0.66029,0.68936,1.2564,-0.79178,0.89832,1.0039,1.2942,-1.1475,0.11054,-0.71324,0.027773,0.42221,0.27829,0.46001,0.45664,0.14242,0.43765,0.34932,0.31209 -1.3922,0.43646,2.0439,1.2722,-1.921,-0.24268,0.59809,0.46694,-0.89637,-0.59246,0.82216,0.52036,0.57695,0.59982,-0.46204,0.40417,-0.49598,0.28616,0.14404,-0.60181 -1.0135,0.2605,-0.58221,2.2517,-1.7927,0.76297,1.686,0.40245,-0.92516,-0.51959,0.55524,0.40712,0.027437,1.0953,0.60371,-0.47069,-0.13446,-0.27457,-0.43464,0.43403 -1.3598,0.0077212,-1.0159,2.4052,-2.3729,0.80066,2.5862,-0.33856,-0.86226,-1.0292,0.19171,0.68132,0.23385,0.88311,0.38622,0.54202,0.65899,0.30194,0.10297,-0.24871 -0.93851,-0.84847,-1.8711,0.95327,-1.9343,0.085049,0.65546,-0.00055098,-1.6148,0.33744,1.4272,0.18129,-0.47791,0.14528,-0.58811,0.24396,0.62617,-0.51725,-0.11903,-0.019323 -0.40283,-0.090344,-0.65454,0.55351,-1.6547,0.54073,0.86536,-0.060257,-1.2681,-1.1614,0.53296,0.19932,0.49078,-0.17664,-0.11819,0.34073,0.83061,-0.307,0.12308,-0.2815 -0.58902,-0.67579,-1.2134,0.5518,-1.3867,0.37116,0.51678,0.015967,-0.77822,-0.0012404,1.5356,0.081045,-0.01267,-0.032413,-0.080491,0.44039,0.58294,0.18776,0.097726,-0.54211 -0.96169,-0.57676,0.20833,1.9832,-2.0054,-0.23384,1.0749,0.23128,-0.062642,-0.75905,-0.45748,0.71812,-0.59689,0.57294,-0.12712,-0.43074,-0.30613,0.14285,-0.35157,-0.19095 -1.3991,-0.54942,-1.288,1.228,-1.4317,1.1304,0.94389,-0.087241,-0.99804,0.59328,1.1469,-0.19891,0.071832,0.051312,-0.42328,0.3562,0.58273,0.37871,0.36293,-0.09931 -0.71906,0.019331,-0.98245,0.73695,-1.6876,0.71469,0.6572,0.081982,-1.1421,-0.89903,1.2684,-0.071596,0.3296,0.48555,0.10064,0.039764,0.10802,-0.2367,0.35167,-0.34693 -2.1267,-1.4896,-0.76017,1.367,-0.6826,-0.28413,1.0808,0.52992,-0.76948,0.4094,0.64639,-0.39436,-0.34716,-0.53663,0.33325,-0.093222,1.3868,0.37071,0.56153,-0.28625 -1.9194,-1.0659,0.031531,2.4763,-2.2141,0.049429,0.69255,1.0368,-0.54768,-0.37088,-0.57317,0.43082,0.0064127,1.3158,0.40953,-0.50823,0.017128,0.21206,0.045732,0.29532 0.077356,-0.28024,-0.33105,1.1602,-1.2517,0.38081,1.422,-0.49454,-0.48913,-0.92336,0.66165,1.1415,-0.081552,0.12358,0.347,-0.27691,0.45465,-0.36446,-0.24055,-0.09303 -2.1931,-0.71651,-0.11737,1.6819,-2.5652,1.6417,1.2941,0.17169,-0.65679,0.10367,0.76877,0.15801,-0.13657,1.1211,0.80384,0.13858,-0.37346,0.27768,0.22115,-0.25003 -1.0136,-1.1476,0.15414,2.0622,-1.8442,-0.45859,0.53623,0.31603,0.097486,-0.744,0.17566,1.1434,0.014534,0.86582,0.50325,0.26971,0.41923,-0.086103,0.24354,0.00012288 -2.5166,-2.0293,-0.94455,1.4284,-2.6512,-0.50813,0.70605,0.40403,-0.92189,1.3439,0.027787,0.85179,-0.26291,-0.82282,-0.008431,-0.18849,0.46304,0.67482,-0.47217,-0.24193 -2.0931,-1.4001,-1.4745,2.1921,-2.9796,-0.71049,0.37754,0.59953,-0.48801,0.23784,0.91555,0.52411,0.015594,0.60274,0.22339,-0.08255,0.86212,0.15712,0.67194,-0.17353 -1.3329,-0.92122,-1.8581,1.4742,-2.1581,0.2087,1.5427,0.62765,-1.3733,-0.029514,0.92544,-0.090123,0.19637,0.69721,-0.0060425,0.24056,0.2695,0.14476,-0.14597,-0.16978 -1.4589,-0.90639,0.62804,2.6009,-2.5337,-0.28461,0.059888,0.88404,-0.50762,-0.60618,0.059311,0.98478,-0.5526,0.67199,0.1463,-0.75078,-0.50301,0.31247,0.16172,0.055365 -1.0374,-0.76162,-0.8128,2.1341,-1.5432,0.77453,1.532,0.80056,-0.66975,-0.37136,0.6641,0.28555,0.043124,0.44213,0.31688,0.37833,0.79605,-0.20615,0.46604,-0.09272 -1.0859,-0.012587,0.84012,2.6436,-2.2149,-0.39456,0.73388,1.3656,-1.7551,0.062629,0.52129,0.7029,0.56013,0.54487,0.68826,-0.82654,-0.057085,-0.068445,0.22724,-0.70367 -2.085,-1.0399,-1.0176,3.022,-2.2956,-0.39744,0.33164,0.14141,-0.78186,-0.43701,-0.024172,0.14727,0.002005,0.58869,-0.146,-0.027615,0.89089,-0.11935,-0.28024,0.088571 -1.9915,-0.15001,-1.0261,2.7601,-3.3971,-0.15407,0.28856,-0.17793,-1.0451,-0.7874,0.38521,0.39446,-0.25969,0.59628,0.54906,-0.40726,0.37205,-0.27858,0.38925,-0.38485 -0.79001,-0.066329,-1.236,1.1598,-2.1771,0.43148,1.0488,-0.078956,-1.9579,-0.79272,1.2667,0.047179,-0.30634,-0.15566,-0.31961,0.68765,0.57894,-0.28421,0.052685,-0.40968 -1.7881,0.037021,0.027027,1.2742,-1.5276,-0.39796,0.07258,-0.62186,-1.1624,-0.43855,0.68588,0.3134,0.060025,0.25635,0.5326,-0.10383,0.12517,-0.030199,1.0608,0.064003 -0.75514,-0.97813,-0.27238,1.5226,-2.3553,-0.82238,1.5222,0.096766,0.14564,-0.26433,0.11419,1.1675,-0.54736,0.48251,0.61561,0.39696,0.2947,-0.16729,0.53552,-0.084401 -1.728,-1.1199,1.0887,1.7376,-2.1484,-0.219,-0.060817,0.81449,-0.087171,-0.1734,0.29303,1.6129,0.43231,1.0442,-0.35288,0.073849,-0.047488,0.54831,-0.44898,-0.21645 -1.9436,-1.7019,-1.017,0.99964,-1.3512,0.47389,1.7656,0.41291,-1.2885,0.86236,0.34249,0.046715,-0.093821,-0.87297,-0.26696,0.45773,0.66699,1.1525,0.14037,0.21007 -2.6,-1.8875,0.048735,1.6423,-2.4795,-0.56953,0.56812,0.9075,0.30219,0.37883,0.0069959,1.0178,0.42085,0.79903,0.52915,-0.79812,0.30489,1.1875,0.33988,-0.7757 -2.3248,-0.7894,1.9658,0.3513,-1.385,-0.52179,0.86483,1.2357,-0.79433,-0.71068,0.21139,0.59667,0.59316,0.35251,0.28225,-0.73833,0.78378,0.6197,-0.73059,0.56725 -2.2573,-1.1868,-1.6348,1.5771,-3.0788,-0.16356,1.0009,0.53804,-1.3204,0.88539,0.38146,0.57138,-0.72584,0.1535,0.12018,-0.30678,-0.049482,-0.11775,0.67977,-0.58651 -1.2305,-0.96475,-0.42768,1.3897,-2.1007,-0.019591,0.24769,0.19585,-0.96509,-0.82965,0.61081,0.18167,-0.38996,0.93466,0.71303,-0.27662,-0.19701,-0.38019,1.0434,0.026089 -3.5115,-1.1923,-0.012753,3.3051,-2.7802,-0.5124,0.78852,-0.11062,-1.6559,0.41937,0.69609,0.32335,0.89272,0.39016,-0.094959,-0.96496,0.6043,0.72375,0.8167,-0.18232 -2.413,-1.8523,0.065941,2.464,-3.0737,0.32948,1.1784,0.84787,-0.74827,-0.25253,-0.49489,1.0444,-0.42318,0.67171,-0.17323,0.46963,0.47801,0.57969,-0.41602,-0.4537 -2.1207,-0.23034,-0.41712,2.7275,-2.7505,0.18047,0.88526,0.46676,-1.9259,-0.10615,0.9215,0.43338,0.054014,0.99727,0.45465,-0.2697,0.052432,-0.94206,1.302,-0.28167 -1.5471,-1.747,-0.9682,0.96358,-1.0943,0.78238,1.1385,0.20622,-1.1215,1.0375,0.53285,0.41135,0.038147,-0.29889,-0.12389,0.52852,0.58034,0.39801,0.26409,0.0094328 -2.1236,-1.4768,-1.378,0.87953,-1.8888,-1.1763,1.2023,0.29557,-1.0082,0.66394,0.23427,1.1482,-0.23618,-0.03088,-0.21115,-0.55815,-0.30242,0.14444,0.39697,-0.00011075 -2.2429,0.47191,-0.28487,3.0332,-2.6997,-0.87277,0.6956,0.33745,-1.8657,-0.35045,0.77239,0.52018,0.94078,0.69445,0.50793,-0.35648,-0.25779,-0.0098471,1.4309,-0.82733 -0.55218,-0.6207,-0.35439,1.79,-1.7524,0.44485,1.1018,0.24327,-0.78612,-0.065884,0.2866,1.2203,-0.50764,0.13858,0.25726,0.80695,0.4198,-0.69811,-0.17608,-0.20183 -1.4981,0.0067174,-0.44444,-0.20177,-1.2242,0.38211,1.3318,-0.21457,-0.65997,0.7433,-0.23862,0.31846,0.94732,0.57718,-0.31864,-0.40922,0.18969,0.026684,0.4573,0.78875 -1.5423,-1.3634,-0.81678,1.9115,-1.9219,-0.18236,1.259,0.66961,-0.51135,-0.35311,-0.016254,0.32143,-0.38952,1.1199,0.78437,-0.067455,0.50619,-0.39892,0.61317,-0.57645 -1.4318,-1.0352,0.42119,1.9046,-2.3533,-0.19468,0.37106,1.0714,-0.18072,0.41199,-0.4495,1.7406,-0.42262,0.88262,-0.058689,0.55718,0.42546,0.35506,-0.15279,0.024826 -3.2739,-2.6148,-0.65067,1.4806,-1.7837,-0.41124,1.555,0.72689,-1.2597,0.34517,0.51727,0.31493,-0.022663,-0.54304,-0.32183,-0.30333,0.64322,0.9985,0.46438,1.1932 -1.4546,-0.76013,-1.6135,1.4582,-2.4629,-0.7303,0.21688,0.055545,-0.4503,-0.23847,0.055991,0.0038194,-0.12415,0.8798,0.44011,-0.049757,0.29373,-0.081839,0.0014756,-0.095286 -1.0421,-0.6942,-1.1896,1.2082,-2.0698,0.46595,0.53156,0.27968,-0.72981,-0.35276,0.60909,0.36298,-0.24838,0.57749,0.66666,0.47328,0.16486,-0.51046,-0.4352,-0.2225 -2.0841,-1.9658,0.23027,0.96939,-1.4193,0.71219,1.2392,1.4327,-1.2402,0.63753,-0.49854,0.81158,-0.044577,0.6135,0.34387,-0.35588,0.32023,0.63946,0.5899,-0.071651 -2.2916,-2.2492,-0.5069,1.2526,-1.1478,0.035632,1.0325,0.65805,-1.1601,0.66168,-0.22183,0.957,-0.28813,-0.174,-0.14179,0.32384,0.61086,0.65821,0.74674,0.39072 -1.0115,-0.60904,0.5523,2.2382,-1.9981,-0.60194,0.60235,0.60916,-0.087784,0.15325,0.47929,0.59085,-0.34414,0.71873,0.16417,-0.34565,-0.41117,0.1633,-0.54078,-0.38913 -1.6067,-1.1116,1.5958,1.975,-2.7913,-0.88867,0.24981,0.38878,0.082345,0.183,0.49893,2.0984,-0.24396,0.38813,-0.1299,0.09542,0.16967,0.76213,-0.31379,-0.343 -0.059513,0.039934,-0.76803,1.1547,-1.3965,-0.14025,1.7931,-0.47864,-0.39983,-0.88707,0.47781,0.99715,-0.087074,0.14025,0.21826,-0.31935,0.56582,-0.5469,0.12255,0.26775 -2.2001,-2.0328,-1.0684,1.447,-2.0287,-0.6038,0.76774,0.91898,-0.66412,1.0216,-0.13809,0.78761,-0.095369,-0.11613,0.5622,-0.56334,0.64271,0.37971,0.75441,-0.45145 -1.3815,-1.5581,-0.95662,1.1825,-1.6839,0.52619,1.0954,0.42755,-0.49517,-0.29776,1.2181,0.32051,-0.30188,0.0011552,0.14781,1.2287,0.54239,0.96199,0.39753,-0.71085 -0.98618,-0.66774,-0.86366,1.8603,-1.2264,0.33114,1.2729,-0.22875,-0.54568,-1.0561,0.9592,-0.10722,-0.030762,0.60295,0.61518,0.32925,0.13132,-0.063124,0.15986,-0.20509 -2.3511,-2.0129,0.30064,1.0814,-2.5316,-0.19754,0.98743,1.174,-0.51167,-0.060541,-0.0073663,1.3038,0.15373,0.88737,-0.57739,0.13906,0.48927,0.36221,0.16307,-0.57186 -1.3988,-0.63422,1.0398,2.5811,-2.1822,-1.0051,0.47259,-0.28973,0.1112,-0.26806,1.1799,1.6235,0.05516,0.77104,-0.37475,-0.40923,0.060727,-0.1734,0.13641,-0.31436 -1.7062,-1.7207,1.0865,1.4094,-2.1758,-0.053599,0.93304,1.9414,-0.49178,-0.59262,-0.69446,1.1799,-0.036078,0.98946,0.17389,0.030313,0.10943,1.1757,-0.20329,0.27202 -2.0281,-0.011033,-0.31026,2.1816,-2.0443,-0.66373,-0.12481,-0.69399,0.36672,-0.28781,0.40817,-0.22637,0.35456,0.72631,0.20158,-0.57245,0.47724,0.67546,0.47366,-0.29542 -1.8687,-1.4181,0.50968,0.89986,-2.0851,-0.32832,0.49489,1.1718,0.25329,0.21522,-0.46319,0.98791,0.5994,0.77776,0.1276,-0.91326,0.0080139,0.73723,-0.025913,-0.36982 -1.6865,-1.3419,0.59943,0.36872,-2.0517,0.42408,0.77878,0.86598,0.045407,0.11365,-0.51119,0.94586,0.44579,0.33381,0.50409,-0.43217,-0.57086,0.58814,-0.49342,-0.13019 -0.97916,-1.2662,-0.69932,1.8722,-2.1905,0.32173,1.5477,0.47681,-0.63163,-0.58562,0.75123,0.88921,-0.26472,0.80535,0.63941,0.84034,0.14855,-0.47907,-0.099993,-0.48085 -1.3459,-0.17038,0.0044159,1.496,-1.5085,0.95939,2.0596,0.79259,0.020054,-0.098376,-0.017658,0.34222,0.47526,0.12078,0.016293,0.37213,0.25645,0.34648,0.28834,-0.080649 -2.8427,-0.23307,-1.8347,1.7582,-3.9874,-0.34493,1.4031,0.063027,-2.1454,0.25913,1.3098,0.61513,-0.75286,-0.25079,0.25531,0.46656,0.70014,0.34187,0.43443,-0.64669 -0.85165,-1.2131,0.31255,1.7037,-1.527,0.099472,0.9078,1.4345,-0.34199,-0.019205,-0.36222,1.1293,-0.38503,0.55538,0.27858,0.48557,0.41677,0.3858,0.018352,0.35788 -1.1743,-0.60804,-0.90829,1.0519,-2.4054,1.2472,0.63497,0.092452,-0.76046,-0.69207,1.5838,0.46867,-0.24271,-0.11371,0.55507,0.64731,0.37268,-0.25641,0.26332,-0.61345 -1.1321,-0.7574,1.6499,1.0565,-3.0147,0.61903,1.7413,0.57944,-1.463,-0.72055,-0.75039,0.54365,-0.062244,-0.34427,0.74148,0.87478,0.34802,0.78344,0.12543,0.54534 -0.62674,-0.60339,0.91159,1.7021,-2.0641,-0.43993,0.28723,0.57819,-0.9167,-0.45537,-0.0807,1.2223,-0.65299,0.38555,-0.10231,-0.018512,-0.87381,0.27038,-0.037087,-0.047863 -1.0385,-0.74567,-0.92844,0.69623,-1.2764,0.66751,0.48598,-0.0073015,-0.842,0.66655,1.117,0.25993,0.14306,0.051837,-0.012518,-0.39878,0.27205,-0.22674,0.54257,-0.34727 -1.0765,-0.10834,-0.32611,1.8631,-1.7009,-0.35836,0.14718,0.20933,0.13784,-0.45671,0.30187,0.40187,0.44911,0.86602,0.26741,-0.89107,0.031585,0.080935,-0.010664,0.33558 -1.2497,-0.92457,-1.3304,1.3953,-1.7094,0.017678,0.59429,0.20145,-1.533,0.45155,1.218,-0.11704,-0.66588,-0.7134,-0.63872,0.90784,0.92242,-0.063502,0.21163,0.009206 -2.1488,-1.5243,-1.0337,1.7746,-2.9117,-0.60113,0.10005,0.37329,0.088238,0.24524,0.20973,1.1625,0.1999,0.21593,0.010674,0.4565,0.49312,0.63531,0.14023,-0.59494 -2.4314,-1.4534,-0.3193,1.143,-1.1499,0.47833,0.75771,0.053184,-1.0311,0.96437,0.20953,-0.088539,-0.44088,-0.74323,-0.42468,-0.076157,0.95199,1.3155,0.16226,0.78933 -1.806,-0.78545,0.41277,-0.044333,-1.3343,0.46886,2.5218,-0.012738,-0.67866,0.30799,-0.48546,-0.23423,0.63659,-0.80222,0.31467,-0.011288,0.18129,0.76311,0.91957,-0.3161 -1.4407,-1.0338,-0.038442,1.4923,-1.9318,0.17846,-0.16769,1.2493,-0.24588,0.41188,-0.4332,1.2417,0.18967,0.72431,0.6013,-0.024695,0.253,0.48756,0.51996,-0.14263 -2.0549,-1.98,-0.44397,1.4217,-1.369,-0.047548,0.44662,1.2368,-0.70027,0.90592,-0.15697,0.53176,0.41796,-0.56292,0.37435,0.25115,1.0125,0.9822,0.54686,-0.10668 -2.2405,-2.0971,-0.39133,1.501,-2.2197,-0.26192,1.499,1.2663,-0.66398,-0.22567,-0.58217,0.45752,-0.64988,0.60629,0.58222,-0.087275,0.47051,0.48434,0.37123,-0.33977 -1.3373,-1.0943,0.6009,1.8415,-1.1865,-0.027362,-0.119,1.3743,-0.18072,0.14694,-0.074908,0.64914,0.77805,0.63195,0.47572,-0.35426,0.74156,0.8535,0.46528,0.46177 -1.9972,-1.8546,-0.020948,0.70416,-1.0707,0.72702,1.3731,0.9964,-0.98915,0.74574,-0.28861,0.87772,0.35906,-0.03977,0.084837,-0.13134,0.55228,0.65821,0.36376,-0.22255 -1.8495,-1.7343,-1.4751,1.4468,-2.485,-0.85544,0.52724,1.0791,-0.70483,0.011087,0.12542,0.71021,-0.2329,0.40442,-0.006972,0.43363,0.25836,0.25993,0.38901,-0.1304 -1.2511,-0.67703,-1.8528,0.82197,-2.1958,0.41247,0.86185,-0.090773,-1.8237,0.81419,1.9902,0.32922,-0.11011,-0.2019,-0.67275,0.39027,0.2329,-0.091428,-0.19135,0.26434 -1.4146,-0.9234,-0.90648,2.2912,-3.2413,0.12133,2.2833,0.051169,-1.4672,-0.56471,0.48062,0.81988,0.065542,-0.14084,0.24017,0.94003,0.51032,-0.10934,0.095832,-0.70393 -1.1809,-1.0642,-1.8295,1.2823,-1.9557,-0.1989,0.88882,0.5022,-0.53786,-0.0059455,0.28461,0.06572,-0.32792,0.59104,0.43258,-0.081368,0.92233,-0.14127,0.39861,-0.30084 -2.1758,-1.7247,0.0076765,1.8853,-2.3436,-0.11069,0.24369,1.4859,-0.089644,0.15992,-0.19899,0.95338,0.43586,1.3848,0.15398,-0.39989,0.53278,0.411,0.69442,0.030219 -1.7129,-1.6249,0.13046,0.88975,-1.9542,-0.62535,0.82806,1.3401,-0.10323,-0.00052118,-0.4707,1.0491,-0.22903,0.8476,0.068849,0.20169,0.30885,0.51721,1.0001,-0.47376 -1.8935,-0.11657,-0.30817,2.6351,-2.8924,-0.89208,0.17038,0.25355,0.057743,-0.85164,0.36888,0.70886,0.068109,0.52839,0.14653,-0.45404,-0.23832,0.36641,-0.27705,-0.085551 -1.5366,-1.3524,-1.1838,1.3407,-1.4703,-0.085187,1.0845,0.94995,-0.73471,0.071024,0.24696,0.01792,-0.14496,0.29729,0.27898,-0.5104,0.95698,-0.41939,0.5547,0.0061842 -2.1253,-2.0976,-0.92414,2.0717,-2.6863,0.13955,1.0295,0.94501,-0.6147,-0.66973,0.23016,0.77737,-0.40811,0.88248,0.37481,0.42201,0.48912,0.22697,0.08783,-0.63763 -1.2037,-0.89839,-0.83063,0.41161,-1.815,1.0139,0.81288,0.022481,-1.5257,0.45959,1.1957,0.48598,-0.2644,-0.22798,-0.37086,1.0496,-8.797e-05,0.52146,0.085939,-0.70508 -0.80124,-1.1024,1.5553,1.2242,-1.7859,-0.55983,1.164,0.88262,-0.60174,0.061759,-0.6688,1.3709,-0.13404,0.31604,-0.47491,0.40809,0.64821,1.0661,-0.44726,0.28136 -2.3598,-1.5616,0.069139,2.1895,-2.1287,0.14412,0.71885,1.3838,-0.68097,0.56045,0.12579,0.99467,0.61086,1.1234,0.20869,-0.050061,1.0006,-0.08635,0.68103,0.55425 -2.9619,-1.1783,1.0255,2.1578,-2.4209,-0.57853,0.89814,0.64579,0.68603,-0.68249,0.65544,0.62216,0.39787,1.4408,-0.030683,-0.57623,-0.11468,1.0752,0.0918,-0.68583 -2.0243,-0.95423,-2.4191,0.96508,-2.1142,0.040409,2.2592,0.086615,-1.9884,0.93126,1.0981,0.34059,0.55194,-0.06186,-0.17747,-0.39824,0.098708,0.45801,0.15025,0.43654 -1.7631,-1.3231,-1.6961,1.93,-2.2904,-1.2103,1.7605,0.21152,-1.2267,0.78029,0.50603,0.31208,0.03773,-0.4303,-0.37558,-0.5593,-0.041994,-0.05264,-0.0037224,0.17595 -0.94285,-0.3063,0.10699,1.5463,-1.762,-1.0393,0.68465,-0.23189,0.41246,0.012181,1.0096,0.99707,0.0012554,-0.26689,0.41459,-0.27111,0.47227,-0.1965,0.35153,-0.52867 -1.0703,-0.58716,-0.61674,0.79671,-1.8172,-0.44304,-0.44295,0.072838,-0.11126,0.17256,0.57449,0.52293,0.21236,0.23899,0.29432,-0.42796,0.40108,-0.0096891,0.71448,-0.28192 -2.9614,-1.6331,-1.3257,1.1759,-2.2677,0.47755,3.3252,0.033929,-1.531,0.82818,0.39526,-0.036998,0.63006,-0.40953,-0.73769,-0.048611,0.33623,0.73295,0.34033,0.48128 -3.1708,-1.8372,-0.15844,1.8929,-2.6343,0.0089486,1.2314,1.7139,-0.66611,-0.14697,-0.4876,0.91788,-0.32008,0.46705,-0.054537,0.024489,1.0796,0.49844,0.036523,-0.24415 -1.203,-0.48196,0.1682,1.5014,-1.1777,0.34736,1.5745,0.93879,0.19079,-0.44729,0.1153,0.49306,-0.41277,-0.0011176,0.059708,-0.04856,0.36248,0.52597,0.22008,-0.29382 -2.3286,-1.6219,-1.1764,1.2623,-1.5245,0.33498,1.3131,-0.029936,-1.8245,1.5069,0.53694,0.18882,-0.51104,-0.49311,-0.15871,0.66151,0.80068,1.242,-0.28209,0.43153 -1.9535,-0.44582,-0.20695,1.2417,-1.8744,-1.0031,0.3189,-0.13553,-1.0403,0.14175,0.48657,0.44838,0.20367,-0.02618,-0.092562,-1.1164,-0.46326,0.28417,1.271,-0.29215 -1.7527,-1.6628,0.13388,1.934,-1.63,0.63668,1.5869,1.8489,-0.77069,-0.17781,0.0011352,0.65856,-0.23707,0.65368,0.57604,0.034034,0.66512,0.70722,0.32388,-0.21785 -2.2798,-1.5103,-1.8711,1.6614,-3.233,-0.58399,0.79705,0.050332,-1.5724,0.38716,1.0828,0.60088,-0.94593,-0.24183,-0.25293,-0.26217,0.6755,-0.30363,0.69467,-0.26144 -3.8493,0.023794,-0.83447,1.9061,-3.2898,0.7005,2.717,-0.1367,-2.4855,0.68542,0.37806,0.51207,0.1433,1.0172,0.73219,0.13237,0.332,0.52815,-0.22557,0.59459 -2.3211,0.011242,-0.70895,1.6453,-2.7222,-1.0906,0.55032,-0.31505,-0.044943,-0.28148,0.56954,-0.10475,0.41224,0.85475,1.4135,-1.032,-0.055496,0.52302,0.94295,0.10687 -1.1797,0.041907,-0.93197,1.6354,-2.2061,-1.0359,1.0848,-0.2579,0.54787,-0.48584,0.097056,0.22725,-0.26425,-0.018327,0.25954,0.16147,0.79486,-0.014201,0.24411,-0.50462 -1.206,-1.0791,1.3599,2.114,-2.2785,-0.92132,0.47503,0.086698,-0.054102,-0.61598,0.59787,1.4626,-0.40482,0.71331,-0.47702,-0.68938,-0.12532,0.96265,-0.05776,-0.24663 -2.8871,-1.314,-0.020004,0.50369,-1.1343,-0.63995,2.131,-0.16096,-1.2472,-0.44605,0.11598,0.057399,-0.22864,-1.3204,-0.095584,0.020142,0.47012,1.1613,0.087896,-0.15876 -1.5306,-1.0256,-1.5306,0.92997,-1.7284,-0.83434,0.611,0.42499,-0.70281,0.17187,0.040804,-0.064893,-0.049855,0.31395,0.22868,-0.6875,0.93566,-0.049841,-0.44312,0.22037 -1.303,-1.0924,0.25487,2.8762,-2.8695,0.28114,1.3862,0.50026,-0.98013,-0.55044,0.43882,0.82466,-0.56652,0.98834,0.33187,0.26092,0.10501,-0.44445,0.047139,-0.38143 -3.5712,-0.79247,-1.2691,2.0086,-2.1738,-1.3386,2.2249,0.31911,-1.0342,0.29184,0.013721,-0.092718,0.041486,0.43616,-0.18086,-1.0063,0.13525,0.84834,0.62607,-0.15031 -2.5731,-1.4871,-0.62116,0.67629,-0.99787,-0.31919,1.53,0.35061,-1.477,0.64593,-0.54959,0.61219,-0.16984,-0.98303,-0.19572,0.63036,0.936,1.677,-0.23869,0.32258 -2.249,-1.5979,-1.064,0.60715,-1.5775,0.48513,1.9781,0.11022,-1.4674,1.0624,1.0331,0.65282,0.67854,-0.69779,-0.7887,-0.50889,-0.37572,0.4888,0.19378,0.04195 -1.0334,-1.0577,0.36611,1.3584,-2.4371,-0.34449,-0.01446,0.82933,0.035758,-0.14986,-0.28709,1.337,0.033734,0.67104,0.27394,-0.22631,-0.35072,0.31944,0.17653,-0.13863 -1.9978,-0.98378,1.0267,1.8653,-2.3747,-0.45636,0.55824,1.6494,-0.078978,0.05724,0.23273,1.0978,0.14274,0.96015,0.24197,-0.6104,0.048984,0.61497,-0.81516,-0.14863 -1.1366,-1.4359,-1.183,1.6638,-2.1747,0.32127,1.2802,0.49922,-1.2882,-0.10583,0.75838,0.77284,-0.13014,0.92797,0.54376,-0.078727,0.29492,-0.49302,1.0973,-0.79436 -2.2156,-0.13253,0.82576,1.4459,-0.92745,0.18212,1.9021,1.1668,-1.5381,-0.12026,-0.37364,0.24286,0.33686,0.79097,0.043883,-0.53833,0.88398,-0.53298,-0.10551,-0.3124 -1.2957,-1.3627,-0.83142,1.3946,-1.7302,0.9836,1.0379,1.0845,-0.83042,0.33484,0.4329,0.69547,0.15361,0.81993,0.45066,0.29496,0.29604,-0.14884,0.4253,-0.31919 -1.4918,-1.3913,-0.51486,0.62118,-0.94203,0.73378,1.0071,0.57582,-0.91249,0.42878,0.060238,0.25058,0.025503,-0.11436,0.31837,-0.12406,0.52845,0.49461,-0.068755,-0.16527 -1.3643,-0.9771,-1.0195,2.1843,-3.0042,0.33289,0.92126,0.37347,-1.3848,0.38499,0.034665,0.73142,-0.40977,0.44164,0.52383,0.084829,0.065124,-0.2033,0.29005,-0.84258 -1.7886,-0.054457,-0.50103,2.2817,-3.183,-0.11,1.0289,0.11836,-0.57722,-0.41153,0.3697,0.14617,-0.42929,0.60478,0.76858,-0.82418,-0.26528,-0.22622,0.60929,-1.233 -1.8422,-1.6916,-0.98014,0.75984,-1.8296,-0.14192,0.81664,-0.035796,-1.928,0.75042,0.33287,1.1734,-0.02002,-1.1688,0.37472,-0.014962,-0.095754,0.031497,0.32674,-0.3395 -1.3739,-0.75631,-0.74483,1.9316,-1.6093,0.43127,0.25726,0.48399,-0.58179,-0.21976,0.10633,-0.235,-0.24635,0.66432,0.35242,-0.11722,0.87107,-0.1524,0.01593,0.32435 -1.206,-1.5607,0.98709,1.6572,-2.3293,-0.82046,1.8797,1.1399,-0.19876,-0.55143,-0.35523,0.79485,-0.58032,1.0491,-0.14582,0.40168,0.80723,0.21049,-0.35647,-0.067361 -1.6778,-1.6704,1.571,1.7964,-2.8406,-0.30268,1.1423,1.3585,-0.70559,-0.62982,-0.66325,1.4605,0.48201,0.21535,-0.0060149,0.4668,0.201,1.3717,-0.44769,0.0017806 -1.0926,-0.75381,-0.25882,1.4237,-1.4288,-0.36088,-0.27973,0.10392,-1.2901,-0.13836,0.8599,0.11323,-0.23374,-0.20556,-0.37658,0.29757,0.93644,-0.02545,0.26637,-0.43222 -1.0133,-0.85627,-1.0312,1.7722,-1.7984,-0.38394,0.28623,0.48406,-0.1007,-0.40675,-0.079911,0.18039,-0.020681,0.74347,0.46041,-0.29029,0.83304,-0.27747,-0.0010693,0.15074 -0.1782,-0.28911,-0.13544,1.5731,-2.0385,0.26656,1.3866,-0.38616,-0.85801,-0.89766,0.78659,1.0591,-0.60895,0.16964,0.69068,0.029953,0.14488,-0.90075,-0.027944,-0.12617 -1.1622,0.07253,-2.1586,0.92696,-2.4368,0.12039,1.4557,-0.15598,-1.7223,-1.0657,1.3146,0.048486,0.64236,0.53848,-0.35456,0.25404,0.52779,0.14001,0.32951,-0.34696 -1.3022,-1.0714,1.5011,1.944,-1.7614,-0.72999,0.44824,1.4237,-0.23104,0.155,-0.12261,1.5558,0.14545,0.74393,-0.41754,0.11655,0.79309,1.0603,0.047599,0.59479 -2.0255,-0.91805,0.67536,2.6053,-2.034,-0.10286,0.012668,0.62506,0.035623,0.10261,1.1901,0.9533,0.21573,1.1851,0.29476,-0.84847,0.010871,0.05425,-0.20081,-0.085724 -1.1575,-1.3373,-1.1817,1.1343,-1.7813,-0.057975,0.21616,0.15889,-0.25991,0.34373,0.028849,0.38545,-0.1936,0.13343,0.14087,0.34454,0.59076,0.13583,-0.1225,-0.63543 -0.45754,-1.0253,0.091916,1.5475,-2.1531,0.034948,0.64847,0.162,-0.41076,0.066797,-0.093535,1.6385,-0.66752,0.14296,0.42619,0.20541,-0.00056247,-0.3143,0.0014046,-0.3926 -1.9445,-2.0842,-0.91225,0.80545,-2.3854,0.62825,1.0066,0.90032,-1.3067,0.26092,0.14485,0.19736,-0.30919,-0.30779,0.16995,1.0364,0.39195,0.70089,-0.26622,0.015198 -1.2322,-0.62075,-0.9502,1.0476,-1.6338,1.1413,1.1546,-0.016438,-0.64028,-0.45963,1.4395,0.12984,0.042028,-0.23351,0.011452,0.78074,0.48398,0.13431,0.80711,-0.67927 -2.1606,-1.5303,-1.3894,1.8281,-2.198,-0.61115,-0.0026975,0.34346,-1.3629,1.1225,0.65928,0.76017,-0.4787,-0.054731,-0.36384,-0.10614,1.4176,0.25574,0.17776,0.33629 -2.3313,-1.2115,-1.4928,1.3532,-2.2966,-0.95053,0.16028,-0.29129,-1.0939,0.75342,0.24198,0.66877,-0.48952,-0.23147,-0.16704,-0.88447,0.75606,-0.23917,-0.047375,0.5172 -1.2985,0.25191,-1.4004,0.64211,-2.1893,0.79897,0.58886,-0.18344,-2.365,0.7996,1.4479,0.23946,0.35176,0.062941,-0.90836,-0.22963,0.27663,0.18688,0.37816,0.60022 -1.3948,-1.3545,-1.3499,0.75334,-1.5808,0.051838,0.63565,0.39117,-1.7262,0.71712,0.84352,0.34272,-0.65116,-0.30499,-0.79372,0.0020593,1.0299,-0.045534,-0.48961,0.32905 -2.3725,-1.2207,-1.2663,1.396,-2.3695,-1.7488,0.004431,0.37243,-0.49582,0.48643,1.4876,0.61278,-0.48199,0.13121,-0.53022,-0.71879,1.1177,0.72808,0.33966,-0.016674 -1.4327,-1.287,-0.28194,1.3742,-1.3537,0.85739,1.3284,1.0085,-0.91035,0.21909,0.33215,0.19136,0.0047251,0.85185,0.22476,0.16643,0.28931,-0.041325,0.66983,-0.31797 -2.055,-1.1905,-1.9325,1.2632,-2.6687,-0.75816,1.869,0.28568,-1.3413,-0.078802,0.75284,0.055109,-0.078641,0.44447,0.10513,-0.37592,0.25582,0.47259,0.53635,-0.11164 -1.2549,-1.1075,-1.3188,1.8185,-1.6161,0.048098,0.61498,0.24,-0.48145,-0.60425,0.49451,0.034661,-0.011996,0.86143,0.29154,0.13387,0.80029,-0.25039,-0.25794,0.16242 -0.047343,0.2266,0.027212,1.5903,-1.6918,-0.68729,1.81,-0.075101,-0.82092,-0.47107,-0.010105,0.8038,-0.40149,0.47124,0.12789,-0.19267,0.019065,-0.57184,0.36747,-0.2777 -2.1612,-1.4869,-0.01549,2.5232,-2.0369,0.43519,0.3382,1.473,-0.78139,0.063883,-0.24293,0.50202,0.0065207,0.92263,0.78839,-0.2488,0.90191,0.51095,0.54799,0.52487 -0.5856,-0.39743,-1.1059,1.036,-2.5063,-0.10691,0.44347,0.16274,-0.57144,-0.92137,-0.046352,0.98967,-0.13732,0.4148,0.51923,0.20738,0.21787,-0.48865,0.027348,-0.34659 -1.7971,-1.7122,-0.98502,1.5391,-1.8137,0.52681,0.63553,0.71023,-0.80652,0.96817,-0.35372,0.60014,-0.096349,-0.046857,0.65408,0.060233,0.93782,-0.057482,0.52897,-0.2838 0.029305,0.2245,-0.11128,1.5384,-1.2566,0.63661,1.3219,-0.092273,-0.89205,-0.86411,0.42679,0.88874,0.20059,0.19122,0.060558,-0.18515,0.020338,-0.18985,-0.0058371,-0.11679 -1.8454,-1.1744,-1.2842,0.96156,-1.2062,0.55015,1.2584,0.16576,-1.5154,1.127,-0.45203,0.7544,-0.41333,-0.52473,0.32231,0.55873,0.83984,0.70684,0.49367,-0.038097 -2.2635,-0.88262,-1.3922,0.82086,-2.9746,0.96114,1.899,-0.26637,-1.7327,0.67992,2.0534,0.32203,0.30264,-0.029143,-0.24393,0.18466,-0.095146,0.3448,1.4255,-0.092194 -2.4578,-0.37856,-1.3148,1.162,-3.0273,-1.2616,0.91227,0.3475,-1.1288,0.92764,1.6192,0.014748,-0.97916,-0.51365,-0.21536,-0.37766,-0.15793,0.18849,0.30965,-0.6228 -1.6721,-0.80133,1.12,1.0494,-1.4854,0.8048,2.1208,1.6161,-0.20092,-0.139,0.039378,0.3295,0.34908,0.44887,0.10121,-0.27944,0.58715,0.72812,-0.35987,-0.49094 -1.5778,-0.20552,1.5612,3.0769,-2.6142,-1.2724,0.39197,-0.60385,-0.9843,-0.38676,1.2511,1.1033,0.053968,-0.32559,0.5318,-0.64461,0.28785,-0.099631,0.81154,-0.22396 -0.60662,0.52782,-1.2275,0.81752,-3.0032,-0.81753,1.014,-0.42365,-0.64789,-1.3023,0.63162,-0.06236,-0.095287,0.062807,0.018511,-0.01562,0.48702,-0.049928,0.4801,-0.28537 -0.70372,-0.54231,-1.5839,1.2405,-1.9456,-0.40312,0.88315,0.5613,-0.34771,-0.49865,0.0084403,0.47743,-0.37369,0.0043793,0.08678,0.31385,0.91515,-0.045495,0.0046758,-0.29381 -2.1328,-0.82494,-1.1121,1.8685,-2.9003,-1.4141,0.28588,0.56011,-0.10027,0.019871,1.1226,0.070087,-0.22588,0.096176,-0.013687,0.064153,0.3095,0.32384,-0.49197,-0.70506 -1.6057,-1.7456,-0.23263,1.6992,-3.0886,0.25009,0.8945,0.49326,-0.85502,-0.54265,-0.12222,1.3048,-0.62213,0.20104,0.93865,1.0259,0.55837,0.1615,0.31809,-0.84229 -1.8656,-1.3214,-0.3356,2.0555,-1.6715,0.48017,-0.056301,0.95214,-0.38679,0.42056,-0.72712,0.46563,0.31544,0.42268,0.49891,0.22738,1.1237,1.042,0.52675,0.20445 -2.8267,-1.2734,-0.10046,1.7474,-3.402,-0.72569,0.76809,0.92305,-0.5057,0.67214,1.0233,1.2543,0.17112,1.1894,0.30598,-0.70156,0.091634,-0.34106,0.93513,-0.36071 -0.90812,-1.171,-0.27912,1.3,-2.0592,0.83788,1.2909,0.71781,-0.56259,-0.37541,0.32935,0.70182,0.089965,0.28143,0.47398,0.84516,-0.025121,0.24012,-0.72195,0.18999 -1.364,-0.36585,-0.36386,0.98501,-2.0157,0.38869,0.46702,-0.19592,-0.98368,-1.0205,0.48393,0.23786,-0.93349,-0.41537,0.67085,0.90964,1.1916,-0.31916,0.33345,-0.37099 -2.1497,-1.2333,0.41766,0.91699,-2.3396,1.1871,2.5815,1.0517,-1.1194,0.33117,-0.11742,0.12555,1.0987,0.29122,0.31674,-0.41858,0.47934,0.1221,-0.24487,-0.085634 -1.2033,-0.36488,-0.36403,1.9892,-2.3433,0.0040952,1.9803,-0.53873,-0.19125,-0.90675,-0.73592,0.61018,-0.063276,0.23854,0.013479,0.062766,0.18359,0.26916,0.081634,-0.64269 -1.2752,-1.4881,-0.12311,1.1913,-2.4488,-0.011236,1.069,1.3781,-0.70132,-0.10566,-0.41692,1.0787,-0.40594,0.96748,-0.016155,0.35533,-0.17991,0.048364,0.44992,-0.92547 -0.52673,0.47112,-0.0955,1.6271,-1.0208,0.0045069,1.2137,0.088669,-0.11495,-0.56975,-0.18255,0.032689,-0.76864,0.32224,0.16463,-0.21879,0.004118,-0.15497,0.063221,0.3481 -1.2748,-0.58626,-0.14103,1.4716,-1.5034,1.5113,1.3264,0.73272,-0.12852,0.12513,0.60951,0.29551,0.2977,0.52936,0.31158,-0.051714,-0.028111,0.49424,0.38871,-0.38437 -2.2537,-2.0245,-0.44504,1.5429,-1.5544,0.63405,1.4768,1.7183,-0.87687,0.34637,0.084293,0.32032,-0.12521,0.21074,0.46153,0.25862,0.89841,0.64947,0.62287,-0.22978 -0.99586,-0.27159,-0.77005,0.40342,-0.67339,0.33254,0.62886,-0.27572,-0.46666,0.72981,0.18302,-0.28796,0.3099,-0.38534,-0.44845,-0.20254,0.79866,0.34002,0.055049,0.26339 -0.35145,-0.082852,-0.41198,1.1431,-1.2383,0.96856,0.73868,-0.12053,-0.27105,-0.66698,0.91491,0.66945,0.37587,-0.23584,-0.25594,0.38945,0.27519,-0.080371,-0.25295,-0.22148 -0.30888,-0.32283,0.61976,0.58715,-0.56481,0.28214,1.3143,0.13891,0.24488,0.056201,0.096523,0.70943,-0.35978,-0.049726,0.15164,0.49803,-0.31786,0.41746,0.13747,-0.083708 -1.2022,0.016936,-1.4598,0.89048,-2.8011,-0.64846,0.15822,0.31761,-0.80405,0.53431,1.2091,-0.043198,-0.81278,-0.093715,-0.18483,-0.025925,0.3523,-0.068994,0.37098,-0.7141 -0.6865,0.15959,-0.64506,1.2426,-1.6095,1.1748,0.67628,-0.17438,-0.72807,-0.96787,1.0849,0.27653,0.27521,0.13169,-0.36374,0.43011,0.15544,-0.20443,-0.47683,-0.38232 -0.57755,-0.90221,0.88686,0.77387,-1.514,-0.048442,1.6124,1.4678,-0.8661,-0.079436,-0.033369,0.74061,-0.33651,0.71118,-0.23665,0.32662,0.60331,0.44171,-0.91169,0.13877 -1.8099,-1.7361,-1.0147,1.0259,-1.2453,0.2302,0.99358,0.95668,-1.1989,0.75983,-0.043257,-0.018738,0.045063,-0.69712,0.59103,0.24782,1.143,0.62455,0.13322,-0.040052 -1.0704,-0.747,1.6527,1.3762,-2.1519,-0.14341,0.59453,0.76123,-1.0836,0.27245,-0.68697,1.5868,0.72655,0.60263,-0.72479,0.76337,0.37766,0.78681,-0.63103,0.54552 -0.0752,-0.70413,0.11427,1.337,-1.523,-0.15381,1.3686,0.16925,-0.68557,-0.18606,0.40579,0.94736,-0.45188,0.7514,0.14923,0.36043,0.21569,-0.5613,-0.17663,-0.5424 -0.82785,-0.14165,-1.7634,0.9349,-2.8867,0.091582,0.70039,-0.19388,-1.6292,-0.10805,1.3917,0.26963,-0.33882,0.15881,-0.54794,0.089157,0.44264,0.1394,0.44829,-0.44596 -1.1714,-0.97798,-0.98385,1.0158,-1.2285,-0.32643,0.27833,0.11283,-0.94076,0.41982,0.70746,0.16787,-0.38221,0.27317,-0.38437,-0.20674,0.75324,-0.12167,-0.48562,0.82841 -0.92658,-1.382,-0.44769,1.4278,-2.0971,0.24025,1.3432,0.75522,-0.63715,-0.75742,-0.40839,1.0409,-0.21441,0.0085517,0.29859,0.57769,0.22385,0.20542,-0.75883,-0.29861 -1.9038,-1.3228,0.56805,2.3475,-3.566,0.31481,0.83095,0.47053,-1.2067,-0.50982,-0.46675,1.2345,-0.37643,-0.15233,0.50531,0.93702,0.062207,0.6786,-0.61357,0.060782 -2.4547,-1.9257,-1.1675,1.4146,-1.6239,-0.3466,0.63334,0.78287,-1.3315,1.2958,0.083717,0.76256,-0.24053,-0.31642,-0.23021,0.043209,1.3436,1.0022,0.78982,0.61718 -2.2445,-2.1652,-1.528,1.4218,-1.8194,-0.20523,1.7365,0.96767,-1.0115,0.40055,0.99873,0.23194,-0.50155,0.38166,0.1811,0.41528,0.4683,0.77959,1.1762,0.093996 -1.2265,-0.70193,-0.53966,2.5559,-2.3167,0.64884,0.98492,0.66806,-1.3223,-0.28737,0.49653,0.65221,-0.36572,0.76614,0.39544,0.15369,-0.014186,-0.83662,0.31644,-0.46726 -2.5112,-0.84429,-1.2362,0.44014,-1.4513,0.29287,1.136,-0.047181,-0.42094,0.73038,-0.015305,-0.66736,0.70652,-0.30533,-0.17212,-0.20655,0.7658,0.30705,0.3154,0.15532 -1.6305,-1.5696,-1.6172,1.6078,-1.8809,-0.32223,0.82273,0.36073,-0.92183,0.78696,0.22465,0.40715,0.11912,0.0011344,0.59546,-0.40995,0.77052,-0.42337,0.27461,0.17144 -1.7322,-0.17062,-1.6801,1.1705,-1.7502,0.95097,1.3886,-0.39194,-2.1398,0.53827,1.1914,0.11477,0.30724,-0.22529,-0.69266,-0.40921,0.0074377,0.21728,0.59827,0.38929 -2.0397,-1.6202,-1.8912,1.8762,-2.6863,-0.45829,0.44848,0.70217,-1.0926,0.8892,0.59058,0.13969,-0.37113,0.12762,0.26883,-0.52365,1.0823,-0.12942,0.42727,-0.13152 -1.4839,-1.0681,-0.90739,1.3536,-1.7749,-0.033242,0.619,-0.073709,-2.0086,1.2301,0.39624,0.41627,0.21349,-0.62716,-0.66316,-0.56291,0.99095,-0.26379,-0.20897,-0.021013 -2.0258,-0.58657,-1.5775,0.32746,-1.9492,0.035498,1.4907,-0.50223,-2.1399,0.49331,1.5579,0.98404,-0.37346,-0.44092,-0.081469,-0.87324,0.19805,0.042468,-0.14785,0.066855 -2.8223,-0.81947,-1.3965,2.3514,-2.3187,0.019046,0.48521,0.48707,-1.0945,0.30368,-0.16462,0.3177,-0.13166,0.83991,0.80928,-0.3673,1.3782,0.060011,0.20888,0.32134 -1.4189,-1.7802,-1.2046,0.42541,-2.0951,0.33992,1.6464,0.10812,-1.4197,0.85321,0.4153,0.99593,0.27203,-0.52457,-0.15502,0.34206,-0.33622,0.57155,-0.069997,-0.15257 -0.75758,-0.85572,-1.3655,0.35843,-1.5363,0.34355,0.74939,0.096149,-1.1126,-0.020269,1.5074,0.17946,-0.37562,-0.055457,-0.038695,0.39748,0.62431,0.43767,0.24765,-0.28709 -3.5637,-1.5388,-1.0712,1.0932,-2.8885,-1.1857,0.52937,0.34039,-1.093,1.5697,1.1167,1.2926,-0.78519,-0.78339,-0.22267,-0.2125,0.078917,0.90857,0.13449,-0.42922 -1.8865,0.02336,-1.3846,0.51809,-1.5681,0.89742,0.47989,-0.81728,-1.641,1.0534,1.6935,0.42467,-0.3525,-0.82841,-0.94252,0.23166,0.42099,0.48131,0.30415,0.067547 -1.999,-1.9626,-1.3016,1.625,-1.7314,-0.54836,0.47337,1.0351,-1.1403,0.61846,0.5234,-0.027536,-0.25277,-0.23086,-0.3223,-0.24036,1.6567,0.31371,0.16395,0.58828 -1.6349,-0.41752,-0.71769,0.97558,-0.69768,0.32339,1.0588,-0.10849,-0.60025,0.36814,0.66545,-0.77303,0.21985,-0.73306,-0.29725,-0.58428,1.3902,0.24554,0.31983,-0.32067 -1.5036,-0.050332,-1.3621,1.0333,-1.2762,0.3598,0.95358,-1.0007,-0.74049,0.58573,1.1687,-0.38115,-0.10808,-0.14824,-1.0106,-0.16402,0.1978,0.081016,0.054636,0.40647 -0.88897,-0.74685,-1.6536,1.2361,-1.2996,0.46832,1.0378,0.028748,-0.69065,-0.27059,1.1726,-0.18633,0.10143,0.051942,-0.11278,0.47523,0.98924,0.087137,-0.14395,-0.29887 -1.591,-1.3157,-2.083,1.311,-2.3899,-0.98489,0.59627,0.35084,-1.2557,1.0358,0.80699,0.44001,-0.12234,-0.25744,-0.60286,-0.5461,0.7735,-0.00085303,0.42119,0.15431 -2.2112,-1.0402,-1.052,0.76523,-1.6234,0.73068,2.3059,0.16078,-0.65287,0.40235,0.27325,-0.38259,0.54698,-0.55995,-0.34001,0.23569,0.27013,1.0505,0.53403,-0.12789 -2.1642,-2.042,0.13495,1.7088,-2.1704,-0.18991,0.71525,1.6337,0.043389,0.4518,-0.27279,1.0576,0.25957,0.81201,0.23104,-0.35068,0.67477,0.32535,0.26108,-0.15629 -2.1732,-1.9438,-0.032954,2.1792,-2.9389,-0.074776,0.24893,0.65935,-0.21284,-0.20855,-0.36857,1.4614,-0.2568,0.24118,0.022754,0.22758,0.41848,0.51227,-0.2013,-0.73021 -0.6621,-0.68154,0.28725,2.1179,-1.7806,0.70187,0.88446,0.35039,-0.82813,-0.20763,0.914,0.79619,-0.67344,0.45478,0.068809,-0.081109,-0.26567,-0.11193,-0.52261,0.16517 -2.8718,-1.7454,0.98697,2.4749,-2.8743,-0.17061,0.66351,1.6614,-0.65337,0.46048,0.012444,1.1475,0.45828,0.96312,0.38644,-0.30547,0.54953,0.64594,-0.16123,-0.39444 -2.6299,-0.82838,0.4223,0.72916,-1.858,0.343,2.9046,0.42162,-2.3002,-0.30154,-0.12818,0.2772,0.59842,0.36502,-0.92554,-0.9167,0.010973,-0.33347,-0.18752,0.56432 -0.41749,-0.61628,0.17668,1.4105,-1.581,0.12999,0.92698,0.66758,-0.45734,0.25988,0.026522,0.62261,-0.52059,0.80535,0.086931,0.062431,0.15452,-0.11815,-0.66742,0.15689 -1.5688,0.76822,-0.67644,2.1444,-2.8824,-1.4417,0.95206,-0.39816,-0.20412,-0.69357,1.7339,0.15611,0.24839,-0.048313,0.38701,-0.19031,0.023884,-0.30578,0.0032572,-0.15813 -2.9149,-0.17726,-1.4095,1.6374,-3.1839,-1.949,0.69484,0.088138,-0.22524,-0.19525,1.93,-0.42974,-0.12347,0.073135,0.12135,0.15972,0.24607,0.26337,0.60397,-0.40687 -0.96615,0.54688,-1.5938,0.30107,-2.1061,-0.13892,1.2861,-0.28037,-1.5025,-0.93668,1.1676,-0.23528,0.7348,1.0331,-0.39298,0.1536,0.67569,0.74159,0.50556,-0.050378 -2.2733,-1.1571,0.25299,2.1023,-2.1817,-0.10777,0.01131,0.74891,0.22048,0.30036,0.14819,0.65425,0.57961,1.0515,0.48021,-1.226,0.17708,0.20693,0.032082,-0.065884 -2.3189,-0.66623,-0.63873,1.2839,-2.3759,1.2487,1.6278,0.78451,-1.0038,0.85315,0.43182,0.68277,0.72954,0.25538,0.91696,-0.4219,0.39855,-0.39234,0.00055045,-0.5014 -3.1321,-2.1217,-0.53002,2.3384,-2.3508,-0.63993,0.74533,0.88225,-0.92341,1.0146,0.29526,0.92135,0.22372,0.021893,-0.099792,-0.56813,0.98317,0.19427,0.75929,0.18296 -2.0595,-1.3949,-0.25167,1.6642,-1.3733,1.339,1.3308,0.78175,-0.8485,0.36923,-0.033942,0.31189,-0.083285,0.3057,0.41997,0.34666,0.5855,0.66501,0.33532,-0.20218 -2.0447,-1.4226,0.63972,2.6984,-3.9296,-0.18114,1.1597,0.60856,-0.74977,-0.65381,0.11452,1.4532,-0.53472,0.26934,0.25553,0.37446,0.33665,0.029486,0.075896,-0.43611 -2.2274,-0.60542,0.90618,2.4822,-3.7639,-0.70243,2.4598,0.17422,-1.0076,-1.1633,-0.1297,0.0048264,0.35779,0.13404,0.72445,0.017955,0.65711,0.50176,-0.0073263,-0.053387 -2.4757,-1.4447,-0.90563,0.97451,-1.2257,0.47849,1.9165,0.12089,-1.252,1.3209,0.37662,0.55248,0.59718,-1.0297,-0.82149,-0.24184,0.65729,0.88306,0.48026,-0.041022 -2.6051,-2.0114,-0.40622,1.7348,-1.666,0.11975,0.95026,0.44748,-0.49147,0.52153,-0.70183,0.59067,0.11775,-0.47454,-0.091814,-0.34173,0.84678,0.79499,0.23737,-0.4245 -0.32047,-0.35682,-0.41956,1.5488,-1.778,0.22602,1.3305,0.0012207,-0.77889,-0.83313,0.56222,1.0089,-0.33611,0.23914,0.64469,0.28359,0.22251,-1.022,-0.06726,-0.16134 -1.4449,-1.1752,-1.6601,1.4432,-2.1982,-0.1121,0.077805,0.46544,-1.1125,0.37247,0.4917,0.29013,-0.54728,0.28363,0.023692,0.18377,0.90571,-0.1371,0.021323,-0.23723 -1.7515,-0.49729,-2.0246,1.4516,-1.8194,-0.07892,1.1542,-0.23918,-2.298,0.63813,0.98772,-0.10788,-0.18034,0.01119,-0.51253,-0.73756,0.62511,-0.34039,-0.18525,0.79598 -1.1647,0.55378,-0.34614,1.0788,-2.2886,0.86159,0.35566,-0.57377,-1.5221,-0.38579,-0.34511,0.039083,0.0032727,0.5681,0.7184,-0.69528,0.87103,0.2908,0.21752,-0.40863 -2.2152,-1.8552,-0.22267,1.3208,-2.2312,-0.20455,0.17097,0.66436,-0.1768,0.7104,-0.1889,0.81641,0.39966,-0.17358,0.089984,-0.023218,0.43039,1.5093,-0.56277,-0.086443 -1.1733,-0.77431,0.5785,1.434,-2.3607,-0.50285,1.031,1.3245,-0.4845,-0.31341,-0.050905,0.92799,-0.20346,0.85762,-0.56576,-0.22114,0.25091,0.066734,-1.1645,0.024873 -1.1123,-0.37359,-1.371,1.3264,-1.3141,0.60525,0.96609,0.19338,-0.52286,-0.14855,0.74729,-0.38528,0.39822,0.51151,0.15633,0.039749,0.86092,0.24197,-0.32741,0.078122 -2.2334,-2.2875,-0.48493,1.2536,-1.2595,-0.022633,0.83065,0.73542,-1.1282,1.0782,-0.29528,1.0658,0.046463,-0.17876,0.12036,0.084035,0.63875,0.64463,1.0081,0.35332 -1.5472,-1.1368,-0.33854,2.461,-2.8472,-0.93701,0.64621,0.87978,0.085177,-0.10456,0.20615,1.2605,0.03108,0.77772,0.42769,0.16018,-0.010051,-0.21404,0.019225,-0.078604 -1.3971,-0.98082,-0.4451,1.0858,-1.2738,0.30391,1.4309,0.55505,-1.3217,0.46746,-0.010391,0.40017,-0.026212,0.4602,-0.46274,-0.19569,-0.10713,-0.31667,0.55253,0.029483 -2.0271,-1.7302,-0.88212,1.1629,-1.5907,0.97255,1.3303,0.42677,-1.0872,1.1164,1.0754,0.56024,0.15186,-0.16902,-0.73061,0.1875,0.26155,0.9103,0.9569,-0.26993 -1.4855,-1.434,-1.3283,1.2188,-2.3415,-1.2034,0.21231,0.12827,-0.41192,-0.30932,0.72335,0.58372,-0.40099,-0.19554,-0.013003,0.34884,1.0126,0.14044,0.36161,-0.28999 -1.1403,-1.584,-0.22178,1.8177,-1.56,0.63176,1.4947,1.1677,-0.33051,-0.22155,0.18598,1.0029,-0.058076,0.54282,0.45572,0.39044,0.56196,0.11955,-0.017464,-0.2088 -1.9888,-1.1354,-1.8899,2.1104,-2.5763,0.21295,1.118,0.29891,-1.5921,0.072014,0.75426,0.38416,-0.44348,0.43535,0.11691,1.0559,0.96928,0.15678,0.35389,-0.16085 -1.6752,-1.1305,-0.097135,1.9756,-2.1094,-0.15166,-0.053279,1.5389,0.20112,0.031776,-0.10993,1.1631,0.42935,0.73786,0.39807,-0.31152,0.51784,0.58226,0.26354,0.22089 -1.5024,-1.7162,-0.9201,0.96782,-2.866,0.055387,1.8824,1.0762,-0.81207,-0.55429,-0.28558,0.71855,-0.15105,0.20727,0.16583,1.1332,0.40704,0.56166,-0.3647,-0.45117 -2.1702,-1.4235,-1.0147,1.5973,-1.3,0.28091,1.2258,0.7433,-1.0307,0.561,0.33998,0.36753,-0.0062751,0.064161,0.90492,-0.25357,1.1931,-0.72132,0.73887,0.31187 -0.13834,-0.78094,1.19,0.80572,-1.255,0.33659,2.0716,0.54994,-0.9391,-0.042217,0.43515,0.30056,-0.055036,0.35493,-0.36711,0.83143,0.50867,0.75231,-0.55814,-0.0021431 -1.8575,0.16558,0.21929,2.9804,-1.9802,-0.93193,0.62571,-0.17757,-0.34903,-0.88836,0.84712,0.56485,0.75393,0.9785,0.16499,-0.45198,0.025725,-0.30604,0.60171,-0.91043 -1.9682,-0.91355,-0.55713,2.2311,-1.8734,-0.65477,0.2858,-0.08548,-0.80588,-0.68542,-0.12898,0.03961,-0.066652,0.85923,0.3734,-0.57802,-0.52797,1.0299,0.31279,0.29661 -2.2545,-1.3663,0.53347,2.5157,-2.501,1.1857,2.0482,1.0284,-0.94734,-0.30184,-0.35847,0.4466,-0.15833,0.45096,-0.011722,0.1063,0.46208,0.68143,-0.62806,-0.019123 -1.9414,-1.9762,-1.0035,1.6596,-2.0383,0.012369,0.21801,1.2176,-0.79616,0.61518,-0.042714,0.60119,0.11714,0.67301,0.57459,-0.21461,0.95796,0.447,0.9633,0.20408 -1.323,-1.3341,-1.8357,1.2273,-2.4421,-0.5216,0.68098,0.40231,-1.4252,0.77901,0.79058,0.23503,-0.88906,-0.10487,-0.31734,0.087869,0.49095,0.0081181,-0.3508,0.086692 -0.74925,-0.92391,-0.36262,0.89896,-1.623,0.57269,0.33167,0.36588,-0.68957,-0.30799,0.50623,0.73169,-0.3417,0.5522,0.87268,0.20178,0.09856,-0.30476,0.56355,-0.86498 -0.64431,-1.0107,-0.52963,1.5013,-1.6468,-0.28391,0.80988,0.7249,0.058224,-0.35289,-0.53147,1.0391,-0.43693,0.28256,0.57165,0.30931,0.60675,0.1581,0.33386,-0.18309 -1.0236,-0.35452,0.15453,2.7392,-2.5073,-0.195,0.75771,0.3696,-0.41117,-0.64168,-0.069842,0.67885,-0.42113,0.94803,0.2309,-0.71665,-0.21343,-0.1022,0.33266,-0.27164 -1.487,0.27663,-1.2691,-0.20291,-2.2186,-0.021132,0.95873,-0.38207,-1.7435,0.52267,1.457,0.002182,1.1034,0.11928,-0.51861,-0.6558,-0.24244,0.80006,1.0097,0.65119 -1.7698,-1.5363,-1.2283,1.9302,-1.7986,0.33252,0.13584,0.50054,-1.1086,0.46739,0.60519,0.16287,-0.36586,0.28054,0.035422,0.58664,1.3159,0.21381,0.5186,0.11314 -2.6013,-0.6117,-1.1144,1.0263,-1.0772,1.0847,1.5062,-0.38806,-1.3885,1.308,0.073636,0.36185,0.68838,-0.02977,0.18832,-0.10604,0.60441,1.1058,0.64233,0.0024997 -0.58096,-0.8101,0.085086,1.7335,-1.7879,0.34464,0.94869,0.31279,-0.59097,0.012379,0.47585,0.95179,-0.55914,0.7624,0.18219,0.60141,0.11599,-0.54387,-0.52433,-0.0027503 -3.1076,-1.6831,0.30445,0.99699,-2.3376,-0.96626,1.3231,1.147,0.58023,0.11775,0.034863,0.73587,0.37307,0.66309,0.18854,-0.30667,0.27486,0.73906,-0.069616,-0.58301 -2.0898,-1.1276,1.3509,0.85143,-1.8203,-0.35765,1.8931,2.1031,-0.43593,-0.47729,-0.52693,0.49577,-0.76583,0.70742,0.38548,0.14593,0.49517,0.65769,-0.41576,-0.015262 -2.1166,-0.12343,-0.09536,2.1606,-3.1612,-1.0336,-0.1831,-0.6899,0.14578,-0.90909,1.2787,0.14047,0.25575,0.41654,0.47643,-0.50117,0.60334,0.43362,0.67309,-0.66127 -1.9612,-0.70046,0.53325,3.283,-2.8758,-0.14787,0.92177,-0.34092,0.15396,-0.046908,0.65556,0.94669,0.91312,0.44209,0.1885,-0.1424,0.043856,0.38136,-0.36627,0.067213 -1.4454,-0.35532,-0.85055,2.5217,-3.6427,0.39666,1.5326,-0.62251,-1.5725,-1.0919,0.30311,0.38802,-0.098899,-0.26303,0.57103,0.58296,0.69588,-0.12516,0.34936,-0.44762 -0.98243,0.11159,-0.46675,0.3553,-1.1674,0.67302,0.64501,-0.44233,-0.54601,0.67278,0.34321,0.064845,0.21195,0.25513,-0.91626,0.12919,0.026946,0.16978,0.21433,0.024337 -1.2525,-1.5424,-0.10247,1.8536,-1.8163,0.62727,0.80047,0.68838,-0.58184,-0.42749,0.49537,0.88659,-0.50512,0.29901,0.51875,1.3221,0.27362,-0.032041,0.46041,-0.57571 -3.848,-1.676,-0.91652,0.68206,-3.8153,-0.34581,2.0046,0.69079,-2.1403,0.74764,0.55756,0.99731,-0.78886,-0.48989,-0.5946,-0.14581,0.118,0.56125,0.051755,-0.35718 -0.5498,-0.87298,-1.5945,1.3248,-1.8296,0.20004,1.0849,0.15648,-1.0512,-0.7378,0.76097,0.43192,-0.13427,0.073877,0.063267,0.66154,0.95973,-0.12614,-0.39776,-0.57437 -1.3397,-1.3366,2.2755,1.4429,-2.9173,-0.75746,0.68133,1.2883,-1.1149,-0.55694,-0.21176,1.0891,0.30865,0.62386,-0.82772,0.32447,0.75301,1.0195,-0.70704,1.0606 -1.1969,-1.4374,-0.29598,1.6816,-2.1027,0.07286,1.9018,0.4978,-0.069917,-0.84602,-0.28625,0.82132,-0.60096,0.98483,0.794,0.76797,0.34705,0.29032,-0.067678,-0.35471 -1.4305,-1.2025,-0.75452,0.65093,-0.82203,0.36802,0.85349,0.21131,-1.0668,0.98636,0.55725,0.10846,-0.17572,-0.66377,-0.26922,0.2888,0.58025,0.8454,-0.041827,0.46031 -1.5405,-1.1863,-0.14981,1.6482,-2.6086,-0.3603,0.10677,1.1056,0.13391,-0.051125,-0.33422,1.398,-0.33332,0.51225,0.45446,0.18,-0.102,0.50058,0.65584,-0.82622 -1.1393,-0.59834,-1.8368,1.1143,-1.7271,0.084867,1.0913,-0.41356,-1.1023,-0.46198,1.0991,0.06817,-0.07935,0.013258,0.15615,1.1913,0.86789,-0.19929,-0.27022,-0.030397 -1.3744,-1.5688,-0.61804,1.0668,-1.1051,0.45383,0.91681,1.0175,-0.50466,0.37371,-0.10657,0.18402,0.0285,-0.0061015,0.82216,0.30571,0.62439,0.4302,0.26331,-0.14887 -1.1674,-0.1204,-0.17092,1.5129,-1.1992,1.3934,1.0745,0.46598,-0.16433,0.21991,0.26318,-0.0095022,0.46258,0.31328,0.33256,-0.62376,0.44853,0.1258,0.12334,0.13045 -1.7013,0.0048114,-0.50785,1.7703,-3.7418,0.32207,1.3917,0.24519,-1.2043,-0.45993,0.24703,0.81496,-0.66159,0.23473,0.81798,-0.2701,-0.075175,-0.40527,0.47592,-1.0348 -0.37588,0.0018712,-0.47705,1.4075,-2.0505,0.57455,0.94854,-0.84698,-0.90475,-1.6292,0.56863,0.42358,-0.11778,-0.16786,0.50761,-0.32438,0.48974,-0.11269,-0.037681,-0.42485 -0.79007,-1.2552,-0.31186,1.2784,-1.3941,0.15322,0.63562,1.0332,-0.20965,-0.30604,-0.32657,0.96411,-0.20412,0.33124,0.44031,0.51459,0.39041,0.28001,0.048283,0.074955 -0.8452,-0.79772,-1.3812,0.41872,-1.5548,-0.2348,0.6416,0.29898,-1.3417,0.75428,1.1041,0.52816,-0.43183,0.21923,-0.2679,-0.07405,0.1012,-0.1425,0.046823,0.1899 -0.74272,0.37471,-0.38415,0.38248,-1.2207,0.4357,0.97295,0.053654,-1.2042,-0.49366,1.4781,-0.25969,0.41906,0.10499,-0.69003,0.26352,-0.19762,-0.18379,0.44117,0.14832 -1.3633,-1.2212,-0.093392,1.6032,-1.1834,0.445,1.1545,1.2248,-0.46297,-0.58368,-0.26566,0.29826,-0.36448,0.14671,0.81157,0.70079,0.18533,0.98143,0.4255,-0.097652 -1.4757,-0.53541,-0.78799,1.0948,-1.378,0.86856,1.0281,0.29907,-0.16619,0.51353,0.76359,-0.047758,0.60448,0.68901,0.0027576,-0.39927,-0.043288,-0.081197,0.92946,-0.054893 -2.1997,-1.1716,0.20897,1.5212,-1.9192,0.24576,-0.33221,1.1839,-0.33271,0.23141,-0.32462,1.1487,0.21399,0.82123,0.22632,-0.44478,0.34028,1.1607,0.17676,-0.20696 -2.8755,-2.0506,0.49887,2.312,-2.1128,-0.10289,1.0999,1.3668,-0.34791,-0.052319,-0.27125,0.61138,0.28806,0.50382,0.17273,-0.77275,0.78555,1.2526,0.21037,-0.31125 -0.16881,-0.19725,-0.64237,0.80139,-1.6095,0.40319,0.55865,0.018898,-0.86372,-1.1187,0.46808,0.74444,-0.046937,-0.16213,0.22823,0.3737,0.47957,-0.59502,-0.15054,-0.44428 -2.0554,-1.9351,-0.804,1.4562,-1.7122,0.36455,0.54125,0.67707,-1.2522,1.0642,0.048692,0.71575,-0.14981,-0.088423,-0.11073,0.75256,0.81692,1.2177,0.97063,0.051573 -1.9934,-0.59481,-1.042,1.395,-2.7414,-0.47526,-0.21117,-0.35792,-0.39288,0.017941,0.31092,0.15775,-0.26147,0.37326,0.29849,-1.0123,0.65666,0.15482,0.34238,-0.31759 -1.4269,-0.9046,0.30437,2.2457,-1.2052,-0.13106,0.49169,0.83055,-0.55164,-0.51512,-0.22025,0.12648,-0.095478,0.82885,0.1128,-0.52443,0.17265,0.41462,-0.011064,0.42573 -1.7548,-1.1149,-0.80208,1.4875,-1.9649,0.56149,0.99282,-0.30483,-0.92773,-0.068629,1.7381,-0.35609,-0.7231,-0.30363,-0.17679,0.82884,0.62239,-0.049451,1.2062,-0.28265 -3.1967,-2.1603,-1.0664,1.1762,-3.0521,0.49942,1.9204,0.63854,-2.1124,0.79079,0.27712,1.1812,-0.56561,-0.037524,-0.51639,0.091231,0.24174,0.54992,0.48564,-0.23833 -2.1576,0.041256,0.83829,2.9062,-2.2268,-0.86568,0.67723,0.10251,0.21239,-0.46397,1.4841,0.86825,0.34934,1.3673,0.001671,-0.40096,-0.3557,-0.19987,0.13246,-0.20332 -0.91998,-0.55661,-0.74194,1.4592,-2.8011,0.48643,1.6037,-0.057384,-0.7028,-0.88832,0.85656,0.68848,-0.36526,0.94822,0.67132,0.4538,-0.061485,-0.13451,-0.17595,-0.54503 -1.2892,-0.72198,-1.1881,1.4008,-2.0022,1.1317,0.58883,0.52204,-1.186,-0.098962,1.2159,0.46937,-0.23949,0.35693,0.45208,0.13673,0.51431,-0.39079,0.2208,-0.54615 -3.346,-0.74507,-0.81407,1.0212,-1.2802,0.15381,2.4361,0.2411,-0.87874,0.45845,-0.45374,-0.37181,0.47663,-0.55059,0.27832,-0.18488,0.62872,0.57285,0.74587,-0.60364 -1.7731,-1.7944,-1.4642,1.8439,-2.4115,-0.14446,1.1445,0.39333,-1.6666,0.11441,1.1794,0.13995,-0.59368,-0.42041,0.071431,1.0923,0.49478,0.53475,0.3069,-0.19215 -2.5231,-0.88467,-0.36276,1.3162,-2.3054,-1.4851,-0.38843,0.11965,-0.75201,0.61855,1.6092,0.63038,0.15128,0.61006,-1.3674,-1.5026,0.59877,-0.17651,0.082822,0.16702 -3.0633,-1.4468,-0.33201,2.2591,-2.1735,-0.35967,0.21712,0.36295,-0.072441,0.55593,0.02274,0.42937,0.60513,0.89903,0.22224,-1.1744,0.73123,0.43086,0.44504,0.04009 -2.3387,-1.5565,0.68746,2.1091,-1.9208,0.98351,1.8567,1.5952,-0.66118,-0.082954,-0.0075972,0.37492,-0.14639,0.86609,0.27145,-0.14864,0.75378,0.84569,-0.0054015,0.014692 -3.4637,-1.6709,-0.91753,1.4438,-2.9824,-0.60357,0.085579,0.85842,-0.7419,1.3116,0.62217,1.3671,-0.26496,0.10645,0.18583,-0.12018,0.56258,1.0057,0.60925,-0.47611 -1.375,0.54901,-0.96088,1.8047,-2.0767,0.85954,0.83962,-0.12088,-1.0179,-0.39788,-0.42041,0.30968,0.10737,0.94936,0.59175,-0.45363,0.4321,-0.39639,-0.2629,-0.046716 -2.6767,-1.8152,0.28438,1.5924,-1.333,-0.42139,0.25195,0.91262,-0.98113,0.33274,-0.18631,0.66628,0.50893,0.10836,-0.0074702,-0.62296,0.75507,1.656,0.45823,0.4004 -2.414,-1.2528,-0.24956,0.86573,-0.35982,-0.084534,1.3328,0.080782,-1.3216,0.26842,-0.52306,0.59724,-0.36759,-0.84208,0.20726,0.73385,0.58749,0.91728,0.38865,-0.22286 -2.5723,-1.5273,-0.53807,2.7191,-2.6777,0.56981,1.128,1.1573,-1.0809,0.010408,0.070836,0.5368,-0.27915,0.71309,0.10285,-0.26846,0.8043,-0.17083,-0.069028,-0.14735 -1.6913,-2.0936,-0.27857,1.5972,-1.7698,0.11356,0.78781,1.4856,-0.2341,0.14625,-0.44792,0.7665,-0.14642,0.64275,0.43358,0.33901,0.66766,0.36821,0.28579,-0.11621 -1.9923,-0.63232,-1.4375,2.0015,-2.8322,-0.46937,0.075386,-0.16945,-0.99285,0.53995,0.80975,0.21331,-0.12546,0.27734,-0.40583,-0.31778,1.1316,0.20009,-0.59438,-0.12123 -1.0145,-0.93713,-0.43318,1.3387,-1.6096,0.66105,0.37703,0.44441,-0.69517,-0.23966,0.53686,0.24961,-0.51728,0.12685,0.7203,1.1188,0.37976,-0.077052,0.62236,-0.52344 -1.0834,-0.31129,0.83282,2.0477,-2.1749,-0.6962,0.64724,-0.35131,0.25215,-0.075188,1.41,1.1664,-2.5512e-05,0.98088,0.14494,-0.36608,-0.13935,-0.10256,-0.26052,-0.32925 -1.1092,-0.11187,-0.23518,1.4917,-1.6026,1.1738,1.011,0.39893,-0.032302,0.55863,0.49268,0.42009,0.2751,0.34456,0.24509,-0.26199,0.21002,0.063735,-0.46119,0.22684 -1.0591,-0.9278,-1.2908,0.90821,-1.4894,0.59158,0.59531,0.54132,-0.85324,0.36433,0.94979,0.38259,5.2425e-05,0.36794,0.3956,-0.074562,0.4653,-0.32442,0.40322,-0.073747 -0.94483,0.49165,0.7432,2.0806,-1.7588,-1.4109,1.2801,-1.2058,0.075435,-0.10381,0.35365,0.36965,0.30484,0.62311,0.41183,-0.39317,0.16843,0.056871,0.68785,0.021459 -1.5877,0.22909,-0.62425,1.7146,-1.7194,-0.34279,0.31646,0.5657,-0.5512,-0.0046447,0.80747,0.14731,0.58641,0.44793,-0.074831,-0.31845,0.075407,-0.32913,0.042267,-0.87664 -1.5253,-0.40264,-0.65081,2.3193,-2.8185,-0.11551,0.64892,0.33055,-1.3497,-1.2333,0.6124,0.38971,-0.35714,0.79586,0.81022,-0.28015,-0.44816,-0.41722,0.44155,0.36414 -1.8101,0.27527,1.1108,1.051,-1.4665,-0.20998,0.99028,-0.090702,-1.1285,0.093454,0.020239,0.17142,0.58726,0.39991,-0.57058,-1.0326,-0.40153,0.29166,-0.29436,-0.488 -2.8977,-1.9395,-1.3306,0.9555,-2.4193,-0.17385,0.89961,0.53999,-1.443,1.2131,-0.3051,1.0383,-0.65539,-0.24107,0.12435,-0.13023,0.66256,0.6401,-0.10535,-0.24752 -1.4201,-1.4087,-0.91706,1.42,-1.5815,0.62434,0.97035,0.981,-0.64567,0.20833,-0.16468,-0.039224,-0.013704,0.44135,0.73001,0.4981,0.9494,0.38972,0.019456,-0.15063 -1.7629,-0.95828,-1.4629,0.33317,-1.6434,-0.050912,2.2918,0.18145,-1.8552,0.8993,1.2573,1.031,1.0439,-0.89826,-0.089193,-0.30091,-0.31487,0.63469,0.38679,-0.058976 -0.5891,0.072648,-0.91661,2.5233,-2.1094,-0.81886,1.5376,-0.7052,-0.72453,-1.3383,-0.098117,0.44072,-0.20846,0.25742,0.47686,-0.38622,0.5722,-0.35956,0.072152,0.10067 -1.9494,-1.6862,-0.69492,1.3285,-1.8633,0.10431,0.052191,0.59558,-0.77051,0.96627,-0.34319,0.81456,0.047443,0.49032,0.4496,-0.56188,0.93321,0.34554,0.61069,0.18099 -1.9424,-1.6531,1.1202,2.4211,-2.5618,0.12046,1.4937,1.7324,-0.82135,-0.16568,-0.11736,0.63644,-0.22771,0.80436,0.079285,-0.0029932,0.57669,0.55104,-0.4143,0.41622 -0.46224,0.23568,-0.38249,0.62602,-0.79816,0.47804,0.97333,0.21011,-1.6073,-0.56766,0.69202,-0.50697,0.64825,-0.094757,-0.41839,0.32866,0.23379,0.019627,0.2881,0.096909 -1.6047,-0.30087,-1.5793,1.7527,-2.1939,1.3725,1.1946,0.13198,-1.0774,-0.34163,0.6917,0.53094,0.20471,0.76416,0.25741,0.63194,0.70118,-0.088056,-0.31995,-0.082198 -1.8576,-1.3135,-1.3302,2.0243,-2.6127,-1.0733,-0.083708,0.2037,-0.54701,0.57798,1.2308,0.62038,-0.10206,-0.097858,-0.309,0.29961,1.0546,0.32979,0.059236,-0.20268 -0.81437,-0.010146,-1.1854,0.65807,-1.1005,0.39708,0.81482,0.47928,-0.86036,-0.42453,0.76315,-0.10478,0.86152,0.54573,0.25964,-0.71357,0.27894,0.10783,-0.47467,0.11247 -2.569,-0.80086,1.233,2.5087,-2.7149,-0.2642,-0.21788,0.64936,-0.49363,-0.16949,0.64733,1.1332,-0.34122,0.69737,0.34071,0.45879,-0.32909,0.77582,-0.42696,-0.33672 -1.433,-1.6005,-0.77884,1.5293,-2.3234,-0.30436,0.25526,0.86375,-0.24527,0.0014926,-0.17842,1.1224,0.063396,0.61362,0.5245,0.86302,0.18286,0.45608,0.736,-0.3487 -2.1659,-0.95118,-1.4652,1.3673,-1.5824,0.58457,1.0909,0.53888,-1.717,0.8829,0.8376,-0.82226,-0.022746,-0.19004,-0.5661,-0.23467,1.5436,0.20652,0.33108,0.24042 -1.5736,0.017818,1.1953,2.3657,-2.3777,-0.36284,0.44218,1.0858,-1.0232,-0.588,0.035672,0.83184,-0.1537,0.57701,-0.395,-0.39215,-0.79303,0.40734,0.071408,-0.67714 -0.90889,-1.5692,-1.363,0.99067,-1.466,0.1846,0.88063,0.50852,-0.86833,0.32538,0.42743,0.53084,-0.34552,0.0040748,0.5428,0.83715,0.54777,0.66805,0.30276,-0.43785 -2.3366,-0.96152,-0.37115,0.81762,-1.6585,-0.091891,-0.014578,-0.52004,-0.96365,0.36289,1.1176,0.64756,-0.78424,-0.49265,0.21794,0.32499,0.6381,0.51555,0.98977,0.56738 -2.0374,-1.7571,-0.84752,2.1049,-2.3059,0.13862,0.27345,0.85745,-0.32593,0.13922,0.0080579,0.4072,-0.096469,0.67457,0.22171,0.60181,1.1757,0.83807,0.19891,-0.29675 -2.2635,-0.14278,-1.1493,1.8994,-2.1379,-0.28836,0.24604,-0.25346,-2.2777,0.58276,1.7083,-0.21331,-0.39812,-0.28951,-0.86486,-0.17877,0.40783,-0.38435,0.86023,0.39258 -1.2738,-1.4154,-0.4485,1.194,-1.4664,0.074268,0.74554,1.0263,-0.49539,-0.0572,0.071675,0.45778,-0.36186,0.70143,0.63946,0.44869,0.37136,0.27174,0.8937,-0.30874 -2.1928,-1.0457,-0.93217,2.0327,-2.9126,-0.47937,-0.075779,0.32151,-0.6853,-0.16055,0.63117,0.93793,-0.49056,0.16092,0.35713,-0.19333,0.40925,-0.48174,0.38149,-0.53541 -1.1632,-1.2252,-1.1721,1.7572,-1.8242,-0.24844,0.93523,-0.29447,-0.5622,-0.97085,0.8581,0.16446,-0.1948,0.34713,0.72001,0.80578,1.0211,-0.24118,0.17452,0.045688 -1.0957,-1.6297,0.1269,1.53,-1.9748,-0.15785,1.9197,1.3053,-0.28969,-0.21278,-0.2966,1.3146,-0.70028,0.55975,0.32528,0.68251,0.516,-0.011989,-0.37795,-0.15517 -1.8913,-1.307,-1.9717,2.0433,-2.7354,0.078417,1.527,0.36361,-1.9465,0.2772,1.4095,0.21925,-0.19923,0.34064,-0.40704,-0.20847,0.53746,-0.084536,1.0802,-0.31721 -2.3339,-1.1301,1.5105,2.0248,-2.1483,-0.61369,0.79923,1.2748,0.041282,-0.81156,0.42295,0.98922,-0.082429,1.3944,-0.14398,-0.70847,0.048931,1.3542,0.054063,-0.14928 -0.35819,0.92511,-0.51502,1.4721,-2.1743,-0.54353,1.7603,-0.58038,-0.83179,-1.7214,-0.013415,0.36119,-0.039486,0.34564,0.35299,-0.068985,0.47515,-0.013701,0.47988,-0.00080298 -1.0943,-0.58343,0.20184,1.0167,-0.80675,0.97978,0.98906,0.97471,-0.687,0.19622,-0.31562,0.1436,0.17897,0.69603,0.58859,-0.085917,0.53008,0.53477,0.39589,-0.032346 -2.0597,-1.8842,0.53237,1.8471,-2.6974,-0.017153,0.50338,2.065,-0.62337,0.20536,-0.07575,1.5176,-0.05328,1.2914,0.35364,0.11323,0.39631,0.34954,0.54268,0.099383 -2.5144,-0.47667,-1.567,1.3229,-1.5719,-1.0877,0.64853,-0.73322,-0.30447,0.87901,1.2013,0.63062,1.2293,0.57911,0.28228,-0.63687,0.09458,0.44414,0.13255,0.81854 -1.9732,-0.20719,0.74652,1.1819,-1.709,-0.01025,-0.15179,0.072718,-0.94826,-0.027608,0.61308,0.34809,-0.41209,0.38543,-0.11254,-0.1723,-0.94632,0.49816,0.056348,-0.63321 -3.5429,-1.9771,-0.44143,1.302,-3.8616,-0.2839,2.2472,1.1525,-1.6979,0.067805,1.0517,0.74219,-0.15027,-0.093237,0.4087,-0.42652,0.56775,0.24459,0.45817,-0.53391 -2.2714,-1.3845,-1.1118,0.81288,-1.2398,0.66775,1.7501,0.06712,-1.2671,1.085,0.65173,0.03848,0.12859,-0.9184,-0.74945,-0.016202,0.82119,1.0403,0.15559,0.21227 -0.51441,-0.327,-1.1223,1.456,-2.7023,-0.5584,1.2501,-0.25786,-0.60462,-0.65557,0.27458,0.80005,-0.28011,-0.11753,0.38305,0.056754,0.48914,0.046576,0.21862,-0.79481 -2.2139,-1.4256,0.31031,2.3926,-3.0319,-0.28619,0.47274,0.30837,0.0033203,-0.35378,0.46566,0.40583,-0.10953,0.52244,0.52738,-0.42612,-0.65826,1.0949,-0.087854,-0.76402 -1.4463,-1.4806,-0.59251,1.653,-2.3516,0.22893,0.55228,0.24852,-0.87304,0.072774,0.30554,0.26815,-0.4307,1.2154,0.6908,0.20547,0.069779,-0.47549,0.19259,-0.49753 -0.25217,0.09428,-0.96898,0.55013,-2.2866,-0.35787,0.89129,-0.20922,-0.8364,-1.2354,0.36999,0.37452,-0.0017605,-0.10314,0.0012259,0.18571,0.71487,-0.021078,0.59976,-0.47637 -1.4575,-1.49,-0.46374,0.74269,-1.6816,-0.18299,0.51686,0.77464,-0.5414,0.69501,-0.55428,0.83202,-0.25662,0.30274,0.14724,-0.49557,-0.18688,0.66398,0.71427,-0.3672 -1.0928,-0.92425,0.03346,2.4094,-3.5544,-0.37105,2.9531,0.084193,-1.0941,-0.3868,0.47903,0.63331,0.005603,0.80333,0.22055,0.73164,0.44976,-0.13755,0.029819,0.093127 -1.3706,-0.70736,0.24873,1.8416,-1.229,0.57692,1.2779,1.1185,-0.30999,-0.19187,-0.37998,0.386,-0.26973,0.57843,0.6167,0.54871,0.537,0.69441,0.46442,0.095798 -1.28,-1.4627,0.8015,1.8181,-1.7612,-0.39745,0.53589,1.4288,-0.098186,-0.33641,-0.35051,1.0003,0.16686,0.84007,0.12905,-0.14752,0.24974,0.85361,-0.1499,0.34572 -3.1339,-1.9757,0.43494,0.6925,-1.7901,0.26827,2.1611,0.86426,-1.774,0.76295,-0.92058,1.198,0.38432,-0.38769,-0.46791,0.033549,0.59619,1.126,-0.16819,-0.18636 -2.3544,-2.2668,-1.205,1.9532,-2.6613,-0.36261,1.1991,1.3612,-0.98794,0.2319,0.036663,0.73508,-0.17617,0.11218,0.21506,0.60231,0.73896,0.74552,0.60401,-0.52054 -1.4922,-1.5306,-1.138,1.0691,-2.1686,0.22654,0.33401,0.72977,-1.0986,0.25754,0.036622,0.64395,-0.28858,0.24195,-0.059804,0.27963,0.47615,0.37505,-0.14988,-0.5394 -3.431,-2.1266,0.87106,1.3693,-1.5289,-0.60353,1.9223,1.6279,-0.74232,0.11752,-0.27201,0.5893,0.3023,0.21218,0.47293,-0.1261,0.98968,-0.45918,0.19156,-0.071974 -1.8653,1.0968,-0.69152,2.1667,-1.353,-0.28293,1.8422,1.2903,-1.1331,-0.22975,-0.32854,-0.37917,0.39318,0.16122,1.1163,-0.54301,0.10123,-0.048799,1.1403,0.34117 -2.5941,-1.6403,-1.1335,1.0425,-1.4568,0.59434,1.547,0.29639,-1.9882,1.2712,0.45251,0.90421,-0.32485,-0.16974,-0.27189,0.22466,0.39302,0.66562,0.37412,0.11429 -0.21681,-1.2963,0.92599,1.0451,-1.2172,-0.27683,1.1949,0.40203,-0.84337,-0.43623,-0.16407,0.99527,-0.38718,0.49844,0.36598,0.11498,0.064052,0.44797,-0.2784,0.1417 -1.2067,-0.50177,0.6841,1.5263,-1.5903,-0.74999,1.5793,0.9376,-0.5632,-0.42697,0.20206,-0.25864,-0.71766,1.2894,-0.19489,-0.064384,0.52171,-0.3627,-0.30404,0.43779 -0.85987,-0.021722,1.1814,1.6739,-1.4634,-0.5881,0.6621,1.4204,-1.2056,0.032408,0.32931,1.2643,0.51585,0.35794,-0.55919,0.026639,-0.11947,0.26193,-0.45294,-0.6597 -1.1007,-1.1975,-0.078753,1.9015,-2.0437,0.92914,1.6566,0.86682,-0.9076,-0.43229,-0.064263,1.2949,-0.20464,0.56749,-0.15259,0.54117,0.52062,0.20492,-0.28774,-0.43934 -2.4119,-1.4663,-1.6106,1.6464,-1.2144,-0.14736,1.5637,0.12726,-1.3844,0.59473,0.92048,-0.20725,0.20269,-0.28847,-0.059149,-0.61889,1.2807,0.035735,0.3727,0.65425 -2.7717,-1.0443,-1.6757,2.2759,-3.2688,-0.7479,0.51192,0.58794,-1.1234,0.49263,1.1584,0.77903,-0.54527,0.27171,-0.35029,-0.19571,0.8834,0.095386,0.70758,-0.74346 -2.5436,-1.8111,-1.2432,1.8341,-2.6371,0.14329,0.88149,1.0389,-1.3575,0.92775,-0.11735,0.78624,-0.62012,0.32635,0.035748,0.13776,0.8285,0.53739,0.65443,-0.52806 -3.1237,-1.222,-0.10339,1.9745,-2.2697,-1.1107,2.0593,1.3189,-1.5125,-0.3948,0.33823,0.38779,0.82209,0.54162,-0.71045,-0.63285,-0.11128,0.41443,0.35141,-0.12441 -2.711,-0.29347,-0.76837,2.3321,-2.8112,-1.428,0.9203,0.40389,0.27817,-0.47862,0.96105,-0.08921,0.096097,0.98178,0.50453,-0.38782,-0.099937,0.30274,0.65299,-0.43927 -1.6168,-1.1778,-1.4583,1.5217,-2.0263,0.58224,0.53809,0.30011,-1.1401,0.94634,0.12458,0.33482,-0.34367,0.27064,0.34413,-0.10459,0.87179,-0.45247,0.29268,-0.13482 -0.89491,-0.67457,-1.5795,1.3226,-2.7258,0.37663,0.47731,-0.28655,-1.3859,-0.28939,0.68164,0.84829,-0.37862,0.19179,0.3799,0.49525,0.66869,-0.53581,0.3138,-0.76356 -2.9239,-1.2744,-1.1585,2.445,-3.0132,-0.29211,0.12012,0.86472,-1.1162,0.14993,0.62183,1.082,-0.60409,0.81024,0.18475,-0.27606,1.1989,0.069137,0.58169,-0.26369 -2.3161,-1.2723,-0.73817,0.10067,-3.396,0.8301,2.6724,0.090206,-2.0206,0.32944,1.8273,0.61318,0.23451,-0.12594,-0.63219,0.67954,-0.22594,0.18184,1.0652,-0.13193 -2.8716,-2.0534,-0.097485,1.1325,-2.2642,-0.35669,1.2074,0.59502,-0.54535,0.25177,-0.56292,-0.2878,0.16082,-0.48819,0.74037,-0.48524,0.73585,0.59624,-0.069258,0.51755 -1.3969,-0.44511,-0.53452,1.8214,-1.1622,1.002,0.80836,0.63135,-0.82082,-0.030162,-0.046856,-0.36076,0.1254,-0.019919,0.27106,0.15635,1.0323,0.22386,0.16924,-0.03658 -2.3637,-2.0551,-0.14147,1.6182,-1.8615,0.14282,0.62336,0.88248,-0.50113,0.97584,-0.78434,0.96685,0.34594,0.49771,0.41477,0.10082,0.78684,0.81975,0.717,-0.12422 -1.1815,-0.65338,-1.6834,0.94739,-2.0738,0.11512,0.55809,0.12526,-1.3892,0.45493,0.66323,0.083704,-0.69961,0.52191,-0.23852,0.073133,0.37063,-0.37207,-0.26488,-0.2917 -1.0666,0.11028,-0.92375,0.17697,-2.2815,-0.056,1.4683,0.018389,-1.8023,0.1077,0.53811,0.42544,0.222,0.42707,-0.43234,-0.70375,-0.68018,0.37791,1.2129,-0.10652 -1.8937,-1.4083,-0.41993,1.7154,-2.1254,-0.50376,-0.31215,1.0166,-0.033243,0.4222,0.40289,0.97208,0.80664,0.43607,0.4552,0.29674,0.36227,0.91082,0.53385,-0.65668 -2.3717,-0.99439,-0.029171,2.7491,-3.6633,-0.85406,0.35807,0.81575,-0.21275,-0.29117,0.69927,1.033,-0.052517,0.99895,0.52571,-0.43375,-0.17489,-0.23077,0.66234,-0.37317 -1.6501,-1.3005,0.51028,1.6806,-2.008,-0.16952,0.03897,0.61505,-0.52852,-0.042799,0.0088043,0.93564,0.24897,0.94204,0.10335,-1.1753,-0.4185,0.66276,0.28615,-0.10759 -3.4571,-1.5957,0.69192,2.8546,-3.3458,-0.3272,1.0137,1.3518,-0.60501,-0.073009,0.50204,1.287,0.31041,0.69052,-0.08254,0.0051843,0.62865,0.54083,-0.3358,-0.535 -1.6041,-1.3959,0.29724,1.4457,-2.6845,0.95475,1.946,0.98814,-0.90349,-0.70911,0.012426,0.33391,0.043247,0.15691,0.44543,0.28338,0.20146,-0.053732,-0.54567,0.2285 -1.1858,0.28517,-1.3562,1.3202,-2.106,-1.033,0.78724,0.071759,-1.1719,0.82909,1.1726,-0.097414,-0.015607,-0.2473,-0.52252,-0.87998,-0.13991,-0.099787,0.069231,-0.14973 -1.6612,-1.6329,-1.3027,1.362,-1.7931,0.47399,1.5921,1.2378,-0.99916,0.42399,0.22366,0.30812,-0.14031,0.45386,0.6566,-0.015485,0.77636,0.25009,0.73195,-0.34464 -1.3855,0.42827,-0.13593,0.32799,-1.4715,1.0834,1.3224,-0.28969,-1.8136,0.13064,0.95068,0.52911,0.44371,0.23803,-0.18235,-0.38679,-0.48924,0.20419,1.012,0.11558 -1.3994,-0.48912,-1.3536,1.4179,-1.5877,1.0272,1.097,-0.1083,-1.0148,0.25298,1.3987,-0.33411,0.025714,0.063003,-0.28339,-0.24239,0.25864,-0.038228,0.50528,0.0011682 -2.452,-2.2183,-0.79228,1.3203,-1.4718,0.047845,1.2975,0.72962,-1.1062,1.2207,-0.25072,0.67403,0.13632,-0.64754,-0.22338,0.093348,1.0473,0.71481,0.52256,-0.024054 -0.83911,-1.2164,-0.35792,1.1058,-2.1949,0.11341,0.51756,0.71868,-0.36158,-0.43248,0.033503,1.1045,-0.55846,0.658,0.93339,0.6096,0.11456,-0.19917,0.46284,-0.6544 -2.1369,-0.71455,-1.3102,2.0947,-1.8437,1.0234,1.4998,0.41163,-1.0691,0.36452,0.31771,0.096351,0.10632,0.93521,0.25724,-0.073985,1.0391,-0.21227,0.51434,-0.041517 -1.5215,-0.8019,-1.1076,2.1896,-2.7718,0.37539,1.2882,0.40502,-0.81032,-0.61178,0.81734,0.5453,0.084315,0.94342,0.98028,0.027192,0.1129,-0.47561,-0.20469,0.071537 -2.6013,-0.99739,-0.31161,1.1549,-2.7826,-0.14695,-0.3822,-0.13834,-0.51027,1.3779,1.1058,0.7356,-0.19381,-0.27331,0.87654,0.49263,0.23047,0.83729,0.46089,-0.54293 -1.681,-1.4525,-1.4466,0.92606,-1.8952,1.0022,1.9564,0.28164,-1.2668,0.69903,1.2385,0.11985,0.28289,0.11222,-0.25729,0.53886,0.26085,0.69656,0.6354,-0.36788 -1.0377,-0.57896,-1.8035,1.0824,-1.8472,0.074839,0.89494,0.25089,-1.6829,0.14871,1.0061,-0.21671,-0.21788,0.2021,-0.44797,-0.2984,0.63604,-0.3364,-0.12956,0.1723 -1.032,-1.6745,-1.1365,0.88237,-1.8101,-0.27562,1.3234,0.68213,-0.89113,-0.56143,0.45188,0.52701,-0.21371,-0.033018,0.35183,1.147,0.56085,0.5168,0.020239,-0.37841 -3.1571,-1.6469,-0.63605,2.2739,-2.7826,-0.098149,1.0722,1.2629,-0.67458,0.48757,-0.1632,0.78117,0.093225,0.26914,-0.13957,-0.00085027,0.87576,0.73608,0.096919,-0.74144 -1.7588,-2.335,-0.89845,0.64283,-2.1451,-0.54167,1.1498,0.4799,-0.61438,0.4631,-0.48918,1.2555,-0.085497,-0.40585,-0.12808,0.085729,0.082411,1.0712,0.28722,-0.65518 -1.755,-1.012,-1.0999,1.4002,-2.433,-0.52302,0.35575,0.28277,-2.1127,1.0568,1.0248,0.61379,-0.80376,-0.0097432,-0.34631,-0.72887,0.93541,-0.65401,-0.19721,0.57867 -0.85049,-0.099809,-1.0747,0.48498,-0.77757,0.23193,0.98777,-0.046317,-0.8393,0.54287,1.022,-0.32737,0.38001,-0.21755,-0.71074,-0.62593,0.45833,0.10273,0.19877,0.605 -1.4064,-1.4208,0.61661,1.0757,-2.1997,-0.10619,0.69373,1.6086,-0.51106,-0.35683,-1.0159,1.2572,0.25108,0.16707,0.37682,-0.088324,-0.35839,0.75764,-0.4588,0.12176 -1.645,1.1591,-0.46145,2.3641,-1.4697,-1.2013,0.95458,-0.47508,-0.19826,-0.88736,0.79804,-0.26076,0.52224,0.39807,0.098855,0.2127,0.067587,0.35319,0.34653,-0.0062588 -0.32942,-0.77732,-0.34384,1.0739,-1.7658,-0.17876,0.41895,0.10896,-0.40157,-0.81971,-0.14338,1.007,-0.28518,-0.11981,0.74911,0.24561,0.38553,-0.35221,0.13293,-0.59985 -2.5494,-0.72938,-0.65543,2.3514,-1.9511,-0.35268,-0.083428,-0.17485,-0.31216,0.47705,0.20404,0.59693,0.36474,0.99398,0.60268,-0.71972,0.49997,0.25254,0.38085,0.19216 -2.2057,-0.76773,-1.9144,1.9659,-2.0025,0.8128,1.4396,-0.043874,-1.3452,0.60594,0.65941,-0.28627,0.43268,0.63471,0.21405,0.16065,0.70534,0.16619,-0.11399,0.28885 -1.8773,-0.91441,-1.0641,1.4358,-2.2028,-0.60272,-0.41941,0.1252,-0.41865,0.70781,0.75665,0.4695,0.14616,0.31897,-0.38872,-0.53561,0.94532,-0.04796,-0.020997,0.02717 -1.0992,-1.149,-1.6826,0.77539,-1.4352,-0.076756,1.0716,0.23901,-0.98687,0.59187,0.9218,-0.021139,0.068505,0.20553,0.20355,-0.30384,0.69951,0.15861,-0.081459,0.05321 -2.1075,-1.7309,0.24783,1.9021,-1.6782,0.30865,1.4277,1.4063,-0.16225,-0.81464,0.0134,0.31876,-0.4475,0.97129,0.14479,0.20745,0.38444,0.9677,0.65601,-0.36883 -1.913,-1.4011,-1.6879,1.0669,-1.6585,-1.0448,1.132,0.19737,-0.66811,0.41442,0.39823,0.024795,-0.45637,0.032772,-0.44486,-1.0719,1.2724,-0.3551,0.13775,0.36556 -0.37552,-0.28244,-0.95361,0.60251,-1.6173,0.45378,0.29826,0.027726,-1.0816,-0.73446,0.74199,0.30298,-0.11987,0.19135,-0.18351,0.52342,0.45158,-0.30434,-0.29749,-0.7608 -1.9834,0.50705,1.1138,2.0483,-1.8755,-0.80267,0.98651,0.41842,-0.2469,-0.8221,0.71447,0.49307,0.3086,1.0844,0.25027,0.0058764,-0.61705,0.24259,0.5442,-0.90554 -2.0946,-2.2318,-0.67275,0.60413,-2.7492,-0.22315,1.5957,0.37651,-1.0479,0.84661,-0.14899,0.59815,-0.25775,-0.49166,0.66717,0.0060243,0.14653,0.41488,-0.033787,0.41174 -0.45266,-0.51928,-1.2352,0.49375,-1.2338,0.35677,0.75513,0.10782,-0.70874,-0.85048,0.93671,0.29716,0.34223,0.23332,0.02037,0.74506,0.81739,0.11185,-0.4059,-0.50167 -1.4371,-1.584,-1.3956,0.93762,-1.6776,0.10971,0.67915,0.3261,-0.89494,0.54486,0.59471,0.33809,-0.35449,0.18451,0.13583,0.89524,0.46733,0.32276,0.037165,0.066237 -1.7984,-0.34143,-1.3905,1.0197,-1.3095,0.73281,0.77055,-0.41481,-0.40653,0.88295,0.16067,-0.28201,0.45463,0.15137,-0.37111,0.23546,0.61354,0.75101,0.508,0.079646 -1.7262,-1.0368,-2.0437,1.8246,-3.3825,-0.24789,1.1764,0.313,-1.1693,-0.42749,0.62537,0.52658,-0.41337,0.20199,0.081925,0.35504,0.26449,-0.24478,0.46123,-0.71664 -1.8612,-1.0727,-0.89488,2.1075,-2.5702,0.56976,1.1532,1.5084,-0.93532,0.39507,0.47543,0.87695,-0.38883,0.56404,0.79449,0.10242,0.69763,-0.56863,0.02556,-0.0024321 -2.693,-0.44213,-1.5328,1.9034,-3.4138,-1.2548,1.1237,-0.53728,-1.7613,0.7882,1.1275,0.29787,-0.71168,-0.6578,-0.00063715,-0.6173,-0.26039,-0.041531,0.39457,0.081936 -2.3628,-1.368,-0.40597,2.0303,-2.7865,-0.11096,-0.4438,0.86413,0.020356,0.14867,0.23406,1.3026,0.19704,0.72711,0.077291,0.087007,0.61126,0.76043,0.33456,-0.35809 -2.3943,-1.6788,0.32177,-0.15855,-1.8595,0.79579,2.8787,0.27585,-1.4603,0.079336,0.25322,0.40228,0.29209,-0.6085,-0.71597,-0.13204,0.52266,0.59563,0.018994,0.12661 -2.956,-0.73746,-1.237,1.2835,-3.3526,-1.8638,0.55011,0.14669,-0.48871,0.60825,1.6208,-0.22242,-0.55791,-0.29686,-0.12872,-0.31569,0.57667,0.31408,0.6236,-0.41852 -1.8474,-1.7456,-0.97627,1.0232,-0.90299,0.11342,1.3506,0.62054,-1.2891,0.82821,0.085128,0.26918,-0.18545,-0.91274,-0.092427,0.43077,1.1369,0.84783,0.55564,-0.0061998 -0.89347,-1.2642,0.56423,1.0592,-1.4615,-0.091888,0.28633,0.62059,-0.41715,-0.24637,-0.62604,1.1368,0.2996,-0.058641,0.49343,0.35597,-0.12504,0.28397,0.19619,-0.11877 -1.0935,-0.068662,-1.1263,0.43456,-1.193,0.75676,0.47466,0.33978,-0.69844,0.17984,0.76359,-0.60528,0.6639,0.30722,-0.78286,-0.29217,0.33851,0.33937,0.23744,0.062209 -2.6339,-0.47219,0.86718,1.1499,-0.58857,0.50812,1.5923,0.46518,-0.81088,-0.49384,-0.53362,-0.053144,0.098226,0.96201,0.37937,-0.50238,-0.057203,0.66686,0.3157,0.43504 -0.72241,-0.57272,-0.40583,1.8667,-2.6974,-0.1379,1.2185,-0.13394,-0.41357,-0.94817,0.44227,1.0834,-0.47717,0.52332,0.90034,0.42371,0.23941,-0.67976,0.10746,-0.21494 -1.5966,-1.1923,-0.97721,1.43,-2.4095,-0.73134,0.94807,1.1071,-0.13866,0.10505,-0.028942,0.54171,-0.47749,0.2475,0.13199,0.41584,0.384,0.95159,0.31794,-1.0347 -1.6814,-0.18903,-2.4928,0.68898,-1.8109,0.12239,1.8581,-0.019676,-1.9618,0.076233,1.6806,0.052055,0.6933,0.11652,-0.48893,-0.96227,0.2644,0.52714,0.52224,0.681 -2.2703,-1.1441,0.1639,2.3009,-2.8348,-0.89583,0.65958,0.56145,0.47123,-0.57544,-0.2945,1.1809,0.33297,0.93325,-0.038344,-0.16197,-0.22147,0.54882,-0.14849,-0.42896 -2.7242,-1.362,0.44204,0.55604,-0.88845,-0.46253,2.1739,0.2413,-1.3147,0.14186,-0.89933,0.693,0.12913,-1.344,0.05943,1.0721,0.22484,0.90831,-0.26018,-0.38859 -1.6874,-0.98894,-2.0619,1.2169,-2.6671,0.21713,0.65015,0.72485,-1.8105,0.30279,1.3246,0.058908,-0.72785,0.30658,0.084222,0.18624,0.74374,0.018944,-0.22131,-0.15135 -1.0039,-1.3678,0.42025,1.831,-2.0365,-0.0098258,1.4725,0.8457,-0.28291,-0.054998,-0.55557,1.1136,-0.32777,0.057449,0.27695,0.67333,0.20388,0.72257,-0.56428,0.63524 -1.9894,-0.75504,-0.98926,1.321,-1.7348,1.6339,1.7168,0.15219,-0.88985,0.89954,0.32275,0.20219,0.59753,0.31005,-0.18728,0.51299,0.52125,0.9561,0.6307,-0.24116 -1.2001,-0.59359,-1.2305,1.9379,-1.9644,0.08521,0.57833,0.46168,-0.32962,-0.47936,-0.25253,-0.1776,-0.017174,0.52056,0.20095,0.079053,0.9601,-0.10337,-0.54478,0.17805 -1.85,-1.7898,-1.1842,1.1805,-2.0307,-0.40342,0.5126,1.1616,-0.66713,0.71308,-0.29279,0.62694,-0.15508,0.10681,0.48426,-0.10686,0.24814,0.47359,0.78465,-0.20264 -0.94741,-0.79571,1.9957,0.63426,-2.508,-0.86653,0.35203,0.60467,-0.40554,0.14255,0.60772,0.95033,1.1442,0.3445,-0.71841,-0.21896,0.8621,1.4571,-0.99495,0.49068 -2.02,-1.5124,-0.97694,2.1235,-2.644,-0.93545,0.090553,0.30818,-0.1427,0.34121,0.72274,0.53395,0.060053,0.3839,0.18975,-0.53986,0.50097,0.27717,0.24931,-0.44586 -1.5114,-0.78933,0.79555,0.93976,-1.7131,-0.38536,0.28259,1.6985,0.37622,0.049047,-0.42486,0.96472,0.40583,0.90393,0.22293,-0.39636,-0.0061517,0.85042,0.023328,-0.098045 -1.9049,-0.98509,-0.43668,0.07292,-2.684,-0.42325,0.80263,-0.099274,-1.3181,0.68629,0.24953,1.1304,-0.45355,-0.73803,0.021196,-0.56514,-0.059262,0.3486,1.0801,-0.48192 -1.3131,-0.70691,-0.95167,2.5924,-2.627,0.45437,0.92627,0.21348,-0.66625,-0.81548,0.31151,0.48409,-0.13056,1.1358,0.21957,-0.21801,0.30284,-0.41557,-0.10146,-0.2298 -2.6526,-0.58463,1.5324,1.8575,-1.7464,-0.74786,1.0461,0.91423,0.042082,-1.0368,0.17485,0.6771,-0.049313,0.70188,-0.11578,-0.77521,-0.16325,1.1177,-0.45891,-0.3418 -1.4272,-0.7863,-0.53578,0.20881,-1.3737,0.39573,1.5065,0.17671,-1.5999,0.2251,0.17015,0.47749,0.25896,0.29553,-0.95352,-0.14765,-0.0091262,-0.085356,-0.24909,0.34625 -3.2276,-1.9984,1.5745,1.6657,-2.8473,-0.1223,1.2901,1.6262,-0.7064,0.05504,-0.30013,0.71621,0.57729,0.074829,0.70107,-0.63981,0.81482,0.22043,-0.598,0.13028 -1.107,-0.17193,0.36969,1.2656,-1.1031,0.82029,1.6924,1.2743,-0.28046,0.13615,0.42671,0.13885,0.18699,0.6226,0.29291,0.090597,0.22235,0.19115,0.49152,-0.17766 -0.68179,-1.1265,-0.40571,1.7015,-1.0979,0.28867,1.203,0.85808,-0.35981,-0.48777,-0.0073929,0.869,-0.25116,0.093753,0.6238,0.56153,0.85076,0.021133,0.33858,-0.17655 -1.5738,-1.2883,-1.6335,1.2777,-3.135,0.47892,0.88879,0.15734,-1.5885,-0.22985,1.2133,0.51558,-0.82554,0.061073,0.62884,1.0901,0.53073,-0.30262,0.39157,-0.71483 -1.3159,-0.91636,-1.3646,1.7169,-2.2501,0.10694,0.0023248,0.23148,-0.81311,-0.16978,0.21428,0.45321,-0.2109,0.264,0.20662,1.0018,1.0928,-0.11726,-0.56544,-0.16883 -1.0981,-1.2164,-1.3531,1.1476,-1.2951,-0.9389,1.2774,0.00077248,-0.93663,0.24829,0.18848,-0.075819,-0.54436,-0.61893,-0.052831,0.37162,0.092797,-0.26262,-0.4101,0.0668 -1.1782,-1.1887,-1.1301,0.84519,-1.1902,0.53796,0.60101,0.11827,-0.83301,0.85252,1.2621,0.28594,0.03811,-0.26301,-0.28552,-0.15082,0.44204,0.54317,0.2822,-0.15883 -1.4261,-0.70592,-0.37983,2.2486,-2.7258,-0.83268,0.712,0.58038,0.30715,-0.23997,0.29169,1.2998,-0.13722,0.58866,0.40493,-0.18055,-0.23621,-0.12386,-0.27742,0.21267 -1.2669,-0.96401,-1.1212,1.7024,-2.6109,0.45148,0.15678,0.40513,-1.0886,-0.20762,0.51345,0.32359,-0.52689,0.40032,0.59887,0.40851,0.80741,-0.3923,0.24748,-0.6324 -2.2084,-1.4521,0.33541,2.3696,-2.1518,-0.64535,0.72768,1.4136,0.015222,-0.31731,0.49729,1.077,0.040218,1.2887,0.030634,-0.57741,0.87395,0.032819,0.32996,-0.00041091 -1.5654,-0.3712,-0.66794,0.7629,-1.3488,-0.1783,0.00072484,-0.6475,-1.1172,0.19363,0.95756,0.35473,-0.64827,-0.38141,0.066956,-0.024859,0.42181,-0.079286,0.16041,0.58705 -1.7193,0.064617,0.31488,2.4785,-3.4406,-0.83305,0.96617,-0.34485,-0.027946,-0.06624,0.83068,0.8705,-0.39721,-0.079537,0.59914,-0.0077911,-0.18259,-0.53458,0.064155,-0.82459 -1.5734,-1.2073,-0.91039,1.84,-2.7076,-0.66412,0.82824,0.343,0.027641,-0.20404,0.14924,0.81943,-0.22243,0.61915,0.48531,-0.0031953,-0.43315,-0.10624,0.23181,-0.50932 -1.4307,-1.4049,-1.2862,0.68454,-1.7226,-0.74384,0.69637,0.5076,-0.53797,0.31724,0.0956,-0.11989,-0.20973,0.26741,-0.12969,-0.32733,0.87324,-0.31553,0.12308,0.25723 -2.4237,-0.67988,0.66569,0.24726,-1.616,-0.66957,1.85,0.49574,-0.12924,-0.4127,-0.65046,0.357,0.058295,0.58336,-0.36552,-1.2303,0.29299,-0.30797,-0.78479,-0.38917 -1.2566,-0.5332,-1.3112,0.31777,-3.268,-0.58574,0.20457,0.22432,-1.6586,0.12168,1.0878,0.30299,-1.2247,0.05131,-0.35396,-0.32282,0.49152,-0.51616,0.24138,-0.30744 -2.4934,-2.0321,-0.35073,1.4708,-2.8361,-0.55699,0.34777,0.98484,-0.30721,0.83,0.29619,1.6063,0.35333,0.36457,-0.10418,-0.095833,0.30751,0.99526,0.97367,-0.62147 -2.0039,-0.93544,-1.9467,1.4705,-1.9984,1.0464,1.3898,0.087018,-1.4865,1.1784,1.2106,0.069235,0.06482,-0.015442,-0.039021,-0.14932,0.72644,0.10801,0.31715,0.18418 -1.7245,-1.6697,-1.1492,0.96143,-1.69,0.17608,0.79914,0.8238,-1.139,0.58382,0.34991,0.53795,-0.20246,0.071601,0.0837,0.32714,0.25192,0.37486,0.32848,0.049496 -2.4352,-1.5742,-1.1319,1.4544,-3.2504,-1.0923,0.96114,0.99974,-0.5567,0.034392,0.41366,0.87479,-0.41819,0.20175,0.013559,0.28621,0.040415,0.6667,0.40427,-0.82237 -2.3394,-1.1789,-1.2666,1.0732,-1.3731,0.72343,1.0324,0.18567,-1.7036,1.1181,-0.027725,0.45191,-0.40724,-0.24631,0.34247,0.36444,1.1214,0.76148,0.039913,0.020668 -1.4782,0.66045,1.2336,0.69658,-2.6741,-0.75171,-0.040462,-1.0794,-1.7078,0.25756,-0.6701,0.45605,0.24787,0.76219,-0.0017972,-0.020506,0.77409,0.37156,0.51036,0.17776 -2.5423,1.6633,-0.41344,0.091932,-2.8544,-0.89081,-0.62732,0.76423,-1.8796,-0.72318,0.4546,0.97312,-0.4439,0.25533,0.84441,0.19413,-0.067064,1.3171,0.05001,-0.33677 -0.31557,0.17036,0.49288,1.6753,-1.9816,-0.82101,1.622,-0.21685,-1.1785,1.272,-0.44145,0.61109,0.38691,0.50108,0.1301,0.27635,0.93259,0.17325,-0.12014,0.31131 -2.0745,1.6008,0.55752,0.65035,-1.2851,0.63717,0.52661,-0.34876,-0.90656,-1.1732,0.90097,-0.060309,-0.13662,-0.088782,1.1424,-0.12383,0.76269,0.5841,-0.027269,-0.39001 -0.085057,0.071563,-0.2754,0.45287,-0.91334,0.082636,0.9115,-0.20823,-0.91659,0.36154,0.51065,0.80361,0.016309,0.40397,0.13279,0.093183,0.30777,0.12933,0.03871,0.51598 -1.4951,1.8384,1.523,0.71809,-1.992,-0.17138,0.16033,-0.21757,-0.31548,0.19156,0.29452,1.4932,-0.27774,-0.30082,0.45192,0.39632,0.60444,0.99326,0.67337,-0.00039068 -0.94417,1.3648,-0.34174,0.17056,-1.879,-0.35907,0.11223,0.32503,-0.17642,-0.090822,-0.024056,0.0041772,0.20781,0.21491,-0.027244,0.79613,0.39426,0.14909,0.049512,-0.086245 -0.72861,1.2462,-0.33965,0.80351,-1.8184,0.017242,0.21844,-0.072179,-1.1712,-0.69692,-0.73428,1.027,-0.49785,0.47069,-0.13038,0.74288,0.35947,0.43955,-0.1771,-0.061725 -0.22759,0.6057,-0.43171,1.0234,-1.6826,0.14048,0.60405,-0.31445,-0.50326,-0.4134,-0.65234,0.93895,0.13581,0.19129,-0.45467,0.21474,0.36755,-0.14399,-0.093684,0.21177 -2.8018,0.73405,0.50211,-0.3334,-1.6905,-1.085,-0.26069,-1.0604,-2.12,0.42322,0.39063,1.9538,0.82892,-0.36121,0.078067,-0.86915,0.11662,-0.18086,-0.80623,0.33953 -1.2003,1.0359,1.6046,-0.20745,-1.4153,-0.23978,0.14104,-0.5881,-0.93892,0.46632,0.39879,-0.037545,0.46749,-0.19118,0.091652,0.40843,0.96195,0.7023,0.055256,-0.10035 -1.41,1.2356,2.1324,1.4525,-2.0168,0.50433,0.84709,-0.49837,-1.3933,1.1339,1.7378,0.57508,0.001808,0.13716,0.36646,0.63511,0.33935,0.14504,0.10144,-0.62098 -1.5503,0.76669,1.9048,1.1902,-2.6118,-0.55835,0.31581,-1.047,-0.57663,0.68026,0.44106,-0.5602,0.053636,0.1073,-0.083212,0.28189,0.70033,0.73608,0.32267,-0.52921 -1.372,1.1484,1.738,0.59518,-2.2319,-0.47377,0.066423,-1.0623,-1.2032,0.90877,0.30288,0.22388,0.60761,0.38266,-0.033578,0.31705,0.38211,0.81284,0.022104,-0.76926 -4.3513,0.92432,0.722,-1.0949,-1.372,-0.80619,0.39774,-0.35368,-1.3675,-1.0426,1.2219,1.113,0.92244,0.50812,0.27669,0.89367,1.4156,0.018418,0.55144,0.21343 -1.2774,1.2872,1.8256,0.78553,-1.8534,-0.11688,0.48321,-0.13885,-0.63862,0.54619,0.15653,0.46934,-0.12957,-0.57759,-0.31095,0.29424,1.0138,0.68867,0.47043,0.30008 -1.3468,1.5755,1.4591,0.75233,-1.6058,-0.40889,0.11036,-0.76428,-0.64403,1.286,0.61115,0.88666,-0.18158,0.4233,0.34436,0.37571,0.51185,0.77587,0.23175,-0.55456 -3.6487,2.3104,0.44217,0.28207,-1.9494,0.2273,0.14225,-0.60636,-1.0758,-0.41439,1.1236,1.1565,0.96076,0.51515,1.0165,0.84469,1.0053,0.16507,0.56543,-0.1359 -1.1304,0.67556,0.18476,0.65003,-3.0472,0.46698,1.3337,-0.22546,-1.5381,-0.91758,-0.73065,0.24175,-0.19416,0.056171,-0.42445,0.4137,1.201,-0.23605,0.45052,0.33078 -2.1856,0.95346,-0.20513,-0.58335,-1.9211,-1.3113,0.35353,0.96327,-1.0433,-1.1413,0.27028,0.4331,-0.11229,0.054584,0.17604,0.31373,0.41307,1.0294,0.81089,0.71185 -2.0027,0.45088,0.36415,-0.78643,-0.99726,0.62384,0.79481,-0.40492,-0.26654,0.13792,-0.33899,-0.1256,0.052623,0.59961,0.35941,0.15434,0.97863,-0.63885,-0.11644,0.070273 -2.1875,1.4013,-0.41386,-0.14104,-2.2357,-0.61697,-0.64002,0.07642,-1.2304,-0.51478,0.4636,1.0783,-0.43363,0.62401,0.43162,0.5018,0.059386,0.8099,0.38817,-0.013111 -1.9196,1.3496,-1.5703,0.67493,-2.8976,-0.011716,0.4399,0.97587,-1.8273,0.17343,0.15194,0.65508,0.78656,0.8,-0.066078,0.51992,0.17832,0.69395,-0.26341,0.14231 -1.1191,1.4237,-0.62417,1.5086,-2.6635,-0.31415,0.39313,0.51223,-0.87017,0.013076,-0.22391,1.5348,0.78336,0.11781,-0.17956,0.54982,0.2432,0.65732,-0.66772,0.57582 -1.217,1.0412,-0.51427,0.64312,-1.5873,-0.38775,-0.33242,0.98796,-0.79019,-0.26251,0.37708,1.0659,0.75815,0.0062784,0.23303,-0.12324,-0.21654,0.85172,-0.50798,-0.32395 -1.7511,1.61,-0.71147,0.58556,-2.4133,-0.69103,-0.41148,0.17838,-1.1183,-0.82427,-0.45054,1.216,0.27658,0.36368,0.77278,-0.050929,0.11128,0.82491,-0.25213,-0.21506 -1.7662,1.4814,-0.37637,-0.042048,-1.9803,-0.6935,-0.53585,0.90157,-0.84761,-0.36859,1.5191,0.61639,0.68095,0.1842,0.6034,0.30188,-0.30212,0.95773,0.37682,-0.71826 -1.4633,1.3075,0.90154,1.222,-1.9922,0.4669,0.47239,0.53475,-1.3157,-0.56108,0.34789,0.87235,-0.77575,-0.78906,0.47225,0.43666,0.89626,0.63841,0.75314,0.4133 -0.82201,0.37583,0.43018,1.2397,-2.4271,1.0658,0.87457,0.36632,-2.0037,-0.70435,0.49249,1.3494,-1.0769,-0.3585,0.52063,0.041569,0.88666,0.25652,0.20108,0.57089 -0.23089,0.23783,-0.26897,1.5055,-1.9974,1.0095,0.95962,-0.57209,-0.9511,-0.49694,-0.13351,1.0825,0.34819,0.023857,-0.57214,0.073816,0.74479,0.10339,-0.33196,-0.17004 -1.2046,1.5429,1.1785,0.71568,-1.9829,-0.99492,0.17002,-0.49757,-0.57714,0.98087,0.16822,1.2763,-0.47781,0.42686,0.41876,0.44304,0.20914,0.89054,0.079591,-0.22448 -1.7274,1.2259,0.21481,1.2869,-2.392,1.4086,1.2019,-0.94936,-1.642,-0.60705,0.19983,1.3144,-0.66348,0.23602,0.19137,-0.43434,0.9061,0.31522,-0.0053955,-0.14501 -1.2131,1.0826,0.96603,0.19011,-2.175,-0.25999,0.15536,0.098312,-0.75872,-0.47208,-0.64981,0.91905,-0.61142,-0.37081,0.10795,0.21755,1.2325,0.38371,0.54666,0.9035 -1.8127,1.5851,0.2677,0.97986,-2.9797,1.4362,0.77942,-0.45047,-0.15735,-0.44256,0.71141,-0.080456,0.63632,0.16671,0.23866,0.1747,0.87295,0.29884,0.21473,-0.28083 -0.093582,0.13855,0.73783,0.38695,-1.3595,0.14263,0.6226,-0.23565,-0.7783,0.13522,-0.15177,0.14575,-0.60982,0.14696,0.19002,0.29615,0.60395,0.066239,0.38055,0.39893 -3.0138,2.1412,-0.11487,-0.51501,-1.8902,-0.99342,-0.31878,0.19718,-1.3304,-0.65928,1.8004,0.58164,0.67987,0.55448,1.1731,0.75793,0.45896,0.69592,0.39537,-0.36682 -0.03323,0.17055,1.0279,0.33277,-1.9296,0.092678,0.42347,-0.20877,-0.81848,0.16303,0.060358,0.35713,-0.76512,-0.012821,0.14753,0.53521,0.35864,0.27199,0.62417,0.45658 -0.67386,0.90472,0.29986,1.4191,-1.6212,-0.11529,0.47765,-0.12446,-1.2792,-0.058609,-0.28644,1.2528,-0.36818,-0.83687,0.21594,0.76568,0.92363,0.76168,0.7555,0.36714 -0.75838,0.37904,-0.3007,1.0195,-2.1328,1.1064,0.22132,0.062633,-1.2251,-0.45308,0.21528,-0.030327,-0.23572,0.3424,-0.693,0.047046,0.10834,0.42976,-0.17637,-0.78833 -1.8679,2.1873,-0.40126,-0.052694,-2.6948,-0.74963,0.070921,0.36516,-0.67424,-0.53491,0.041894,0.54953,0.17768,0.29182,0.78869,0.56903,0.53127,0.53415,0.099312,-0.18511 -0.98496,1.4772,-0.57511,0.34356,-2.4154,-0.1021,0.21414,0.69789,-0.45602,-0.20498,0.15711,0.74117,0.23958,0.023966,0.0021368,0.76244,0.13022,0.54095,0.23289,0.035896 -2.1672,1.1551,-0.58121,-0.11229,-2.5529,-0.33855,-0.70373,0.040026,-1.8182,0.83309,0.60598,0.33049,0.11332,0.42895,0.76116,-0.27164,-0.18462,0.62664,0.088401,-0.38311 -1.3665,0.68118,0.030908,0.2166,-2.0389,-0.46527,-0.78866,0.93975,-1.0968,0.10914,0.34275,0.20168,-0.72281,0.43917,0.32255,-0.16607,-0.18207,0.73387,0.26488,-0.52585 -0.52889,-0.45296,1.3499,0.62344,-2.2644,0.11007,0.54634,-0.34034,-2.3297,0.32865,0.0082169,0.14355,-0.56273,0.30073,0.50172,0.44352,0.65664,0.12846,0.59371,0.37009 -0.64105,0.52337,0.97228,0.29953,-1.7059,-0.065675,0.38856,-0.2277,-2.2933,0.22952,-0.098181,0.50883,-1.0941,0.13687,0.17401,0.19267,0.75568,0.31157,0.58829,-0.21499 0.025937,-0.08643,0.2554,1.3968,-1.1514,1.1557,1.093,-0.53815,-0.83133,0.16279,0.68696,0.74927,0.43183,-0.31585,-0.27992,-0.47874,0.42067,0.63562,-0.09267,0.27511 -1.6076,1.9094,0.34921,1.6229,-2.2718,-0.83663,0.73203,-0.52167,-0.5747,1.1857,0.93524,1.9842,0.44607,0.6508,0.59514,0.64965,-0.29822,0.25484,-0.45455,0.21904 -1.4816,0.87684,-0.22371,-0.29051,-1.7702,-0.60693,-0.206,0.19106,-2.0082,1.1085,0.92497,1.1374,-0.20406,-0.10195,0.21497,-1.2132,-0.54211,0.55501,-0.02456,-0.14684 -1.5046,2.0072,0.38474,1.5223,-2.6021,0.32233,0.29707,-0.48933,-0.33375,0.55043,-0.040693,1.4133,0.14958,-0.40421,-0.024386,-0.10174,0.31632,0.25894,-0.15727,-0.17744 -1.976,1.5019,1.4907,1.2398,-2.9544,0.62015,0.79074,-0.92379,-0.63693,0.441,0.98325,1.2556,-0.071821,-0.8319,0.32498,-0.74291,0.77642,0.4626,-0.16696,-0.37999 -1.9898,1.6948,2.2331,1.3594,-2.5218,-0.49379,0.61395,-0.50688,-1.0969,0.98557,0.36509,0.94443,0.28234,-0.14332,0.41611,0.67264,0.95089,0.79795,0.48037,0.12882 -0.37652,0.52435,1.047,1.0499,-2.6347,0.48326,0.85394,-0.16674,-1.4215,0.10835,0.15035,0.86606,-0.68797,-0.40319,0.29821,-0.057667,0.60003,-0.031205,0.73446,0.60498 -0.36865,0.58528,-0.33497,1.0761,-1.4177,-0.42468,0.96088,-0.09902,-0.319,0.33212,-0.59384,1.1621,-0.06417,0.054595,-0.26342,0.22486,0.38739,0.046736,-0.019488,0.84454 -2.4102,1.5547,0.42572,0.087027,-1.6186,-0.027538,1.1101,-0.20144,0.28203,-0.38321,0.33293,0.79282,0.74135,0.33869,0.87636,0.65209,0.77665,-0.15707,-0.40087,0.23161 -1.6079,1.8517,0.6818,0.96827,-2.7738,0.63443,0.63448,-0.22851,0.18436,-0.1181,0.18609,0.42239,0.039131,-0.557,0.26031,0.019954,1.0074,0.2991,0.39398,-0.20857 -0.64381,0.69315,1.4576,0.67029,-1.7804,-0.14725,0.1433,-0.17456,-0.70549,0.8999,0.52898,-0.16579,0.2127,-0.086759,-0.29502,0.42791,0.44411,0.75942,0.50237,-0.23522 -1.2527,1.4763,0.34967,0.63933,-2.4058,0.97655,0.11058,0.24882,-0.17767,-0.25284,0.34168,0.2285,0.15537,-0.58905,-0.044372,0.3046,0.69129,0.29878,0.17125,-0.51279 -1.9612,2.0042,0.42052,0.21396,-2.2377,-0.38475,-0.2119,-0.22912,-0.23841,-0.67446,0.61475,1.1876,0.13372,0.0088585,0.91809,0.70755,0.759,0.24908,0.12354,-0.030754 -0.67558,0.80514,1.3025,0.82041,-1.8003,-0.22456,0.27911,-0.33516,-0.82463,0.79746,-0.058345,0.040389,-0.34647,0.12924,-0.12066,0.33496,0.61799,0.59857,0.88638,-0.10313 -2.5037,1.1018,0.66379,-0.41359,-0.65737,-0.45016,0.48421,-0.90425,-1.2909,-0.46759,1.3146,-0.26199,0.078916,0.40393,0.10735,-0.49517,0.64015,0.5239,0.73586,0.22356 -0.51368,-0.16023,0.35992,1.6718,-2.0903,1.5849,1.5148,-0.48199,-1.543,-0.82966,0.56549,1.1803,-0.38003,-0.13637,0.13745,0.36248,1.0934,0.98915,-0.22829,-0.16479 -0.1374,0.060987,1.0293,0.80903,-1.8848,-0.49541,0.1086,-0.71751,-1.1449,0.35765,-0.61132,-0.14589,0.027836,0.062873,-0.10588,0.31142,0.45809,0.29828,0.81397,-0.021691 -0.82291,0.40375,-0.45453,-0.15655,-1.1596,-0.11839,0.058016,0.41349,-0.97975,-0.50039,0.37872,0.085845,-0.52668,0.44108,0.26969,-0.023644,-0.091349,0.66504,0.24389,-0.51686 -1.4501,1.5308,0.52537,0.81593,-2.6107,0.72788,0.13851,0.11909,-0.18259,-0.46897,0.10394,0.11481,-0.06844,-0.89595,0.0098627,0.18273,0.80448,0.35746,0.31258,-0.49035 -1.7559,1.7639,1.4004,0.27344,-1.022,0.31563,0.84369,-0.2681,-0.3135,-0.0213,0.66936,0.56503,0.044774,0.49347,0.76389,0.3317,0.71509,0.12596,0.04158,-0.13983 -1.6688,1.2631,-0.43568,0.18935,-2.9253,0.021498,0.1762,0.060675,-1.6124,-0.88062,-0.54653,0.16312,-0.69061,0.27533,-0.072374,0.83658,0.76163,-0.039836,0.26656,-0.055685 -1.9025,1.846,0.5953,0.44794,-1.641,-0.27213,-0.14426,0.055567,-0.35707,-0.57477,0.073877,1.43,-0.22641,0.12624,0.50924,0.13738,0.49619,0.78008,0.35079,-0.063528 -1.0746,1.157,0.16794,1.5256,-2.6457,-0.28347,1.3035,-0.78967,-1.6308,1.1686,-0.40295,1.4794,-0.53021,0.80314,0.50338,0.057178,0.63749,-0.089476,-0.22786,0.64682 -1.0285,0.7974,-0.80915,0.44229,-2.5458,-0.1231,-0.48754,0.12182,-1.5671,0.17905,0.028045,0.65693,-0.23194,0.85156,-0.25218,0.65848,-0.21503,0.2513,-0.037108,-0.16782 -2.3954,1.5704,0.29223,-0.45409,-2.1004,-0.68164,0.72399,0.064543,-0.13096,-0.4132,0.55087,0.58099,0.87262,0.28911,0.71247,1.2096,1.0527,0.35806,-0.27885,0.32958 -0.80404,1.0336,1.3036,0.9992,-1.5301,-0.22122,-0.0034962,-0.72654,-0.56891,1.1537,0.70499,0.90614,0.082414,0.18233,-0.19878,0.60795,0.29278,0.6028,0.18246,-0.49476 -0.21462,-0.68066,0.4523,1.1853,-2.4966,0.69416,2.3255,-0.72592,-1.3795,-1.0542,0.72702,0.57777,0.33713,0.13261,0.0050385,0.0024924,0.72808,0.3106,0.1849,-0.059668 -1.2865,1.6052,0.18178,0.80706,-3.1776,-0.62694,0.35144,-0.31671,-0.73379,-0.52396,-0.71958,1.3826,-0.42335,-0.3413,0.55874,0.40227,0.51225,0.062253,0.43456,0.63527 -1.0489,0.82906,-0.73394,-0.049516,-1.9216,-0.0012523,0.23109,0.032151,-1.5717,-0.74817,0.63474,0.49496,-0.77676,0.78571,0.1825,0.59334,0.26791,0.74585,0.11193,-0.44882 -2.807,2.4268,0.22969,0.7885,-2.7606,-0.10601,0.047805,-0.41243,-0.43821,-0.54894,0.36724,1.2424,0.33863,-0.11581,1.2263,0.37058,0.67896,0.17375,0.10491,-0.18749 -1.4348,1.2727,-0.39917,-0.20279,-1.7678,-0.70763,-0.44021,0.77201,-1.1526,0.27112,0.85134,0.026879,-0.14928,0.12618,0.57982,0.16416,-0.27405,0.78692,0.50974,-0.54238 -0.072023,-0.23812,0.96291,1.2404,-1.5663,-1.0177,0.67625,-0.24696,-0.85669,0.57632,-0.35441,-0.15725,0.81157,0.17791,-0.11038,-0.31671,0.64837,0.70783,0.30086,-0.42373 -0.63492,0.62094,1.3137,0.66429,-2.4343,-0.89067,0.098932,-0.75275,-1.1747,0.73616,-0.73687,0.54546,-0.59713,0.41084,0.3152,0.72791,0.62039,0.67493,0.69229,0.073066 -2.7558,1.2373,-0.13088,-0.27447,-2.716,-1.2472,-0.77287,0.87411,-2.2341,-0.24459,1.2353,0.5329,-0.35919,0.18811,0.61743,-0.47114,-0.014958,1.3242,0.51556,-0.50281 -0.46581,0.65226,-0.26663,0.77462,-1.9324,0.19404,0.019269,-0.091294,-0.87575,-0.69833,-0.5608,0.43006,-0.43013,0.41514,-0.13663,0.68206,0.22145,0.29041,-0.045626,-0.030523 -2.1513,1.7383,-0.64987,0.6966,-3.0263,-0.17865,-0.20091,0.22691,-1.5855,-0.37432,-0.36277,1.3335,-0.11916,0.29542,1.004,-0.093103,0.38681,0.20051,-0.53022,-0.042724 -2.6362,2.5453,0.38443,0.49631,-2.2818,0.25703,-0.16019,-0.69257,-0.83076,-0.68968,0.96822,1.0502,0.84086,0.46022,1.013,0.79642,0.73986,0.29155,-0.03629,-0.32085 -2.2824,1.321,0.6551,-0.15394,-1.0631,0.97968,-0.057295,-0.90561,-1.1808,-0.61083,0.23769,-0.094774,-0.18104,0.4388,0.40721,0.0060424,0.7923,0.047484,0.66824,-0.61355 -1.513,0.98488,-0.31107,-0.22861,-2.4356,0.15685,-0.31433,-0.06416,-0.90713,0.91235,0.45942,-0.097371,0.13304,0.2104,0.18279,-0.062412,-0.0055952,-0.026352,0.4399,-0.3156 -0.89072,0.66869,0.73418,1.103,-3.0388,0.10722,1.4101,-0.85681,-1.8995,1.021,0.035946,0.48554,-0.53324,0.77924,0.64171,0.27346,0.74759,-0.59333,0.35765,0.55436 -0.25521,0.42626,0.44609,1.2951,-2.1267,0.56531,0.51636,-0.049807,-1.1875,-0.8049,0.17054,0.65026,-0.85465,-0.60236,-0.015782,0.39532,0.3181,0.42643,0.4593,0.41704 -1.0207,1.2031,-0.3885,0.49771,-2.4302,-0.35428,0.82409,-0.44209,-1.1657,-0.27622,-0.19994,1.4727,-0.73485,0.038053,0.64514,0.41131,0.84976,-0.028972,0.30387,0.78164 -1.0921,0.64921,-0.44993,0.74216,-2.463,0.5836,-0.26975,0.11697,-0.89453,-0.16006,-0.082007,-0.063474,-0.28589,0.48571,-0.50213,0.7423,0.2172,-0.026242,0.11209,-0.30822 -1.9784,1.9256,1.3799,0.3256,-2.1664,-1.3446,0.76762,0.013713,-0.38478,0.00013765,0.51821,1.0165,0.051783,0.28904,1.3589,0.32777,0.54555,0.99223,0.35759,0.8906 -2.5441,2.0988,1.3296,1.4629,-2.4633,0.66263,0.49917,-0.94697,-1.0259,0.31116,0.98178,1.8559,0.43152,-0.32001,0.5274,-0.11509,0.63957,0.47517,0.09783,-0.069957 -2.1365,1.2855,-0.55846,-0.23996,-2.6351,-1.016,-0.11726,0.69795,-2.7746,0.3423,0.70347,0.70804,-0.43238,0.3336,0.45233,-0.45516,-0.22958,0.91727,0.43275,-0.51116 -2.145,1.844,1.5765,1.6749,-2.1422,0.56168,0.69047,-0.52113,-0.86716,0.42835,1.4589,1.0717,-0.50799,-0.102,0.95132,0.047463,0.37362,0.94058,0.13354,-0.32934 -0.8253,0.93989,1.3996,0.68342,-2.0062,-0.24701,0.24762,-0.4281,-0.45572,0.6474,-0.15358,0.37064,-0.5725,-0.44206,-0.16496,-0.10647,0.61232,0.76485,0.77571,0.27625 -0.64847,-0.068742,1.4125,1.184,-2.1434,-0.51187,-0.067416,-0.82157,-1.1182,0.73261,0.16669,0.057889,1.384,0.10042,-0.55327,-0.085922,0.37447,0.56799,0.033776,-0.45119 -0.81611,1.0558,0.70016,1.3159,-2.5129,0.24147,0.7018,-0.78473,-0.86765,0.16895,-0.36029,0.96097,-0.4757,-0.58361,0.16429,-0.4513,0.55952,0.069612,0.68003,0.30341 -0.70207,1.1431,0.054401,0.3177,-1.9711,-0.68252,0.67037,-0.0088646,-0.49123,-0.26498,-0.088214,0.99766,-0.72128,-0.0079056,0.62323,0.30821,0.58345,0.22466,0.5306,1.0633 -0.85906,0.8698,0.37042,1.3483,-1.8227,1.0545,0.82616,-0.27883,-1.4754,-0.45571,0.20942,1.1484,-0.91566,-0.070796,-0.045148,-0.031349,0.54323,0.63965,-0.095022,0.039018 -2.0982,0.98549,0.47514,-0.88271,-0.9108,-0.70932,0.18718,0.2755,-0.83458,-0.16447,1.192,-0.016311,0.42996,0.38368,0.91265,0.32377,0.77217,0.3235,0.36911,0.40533 -2.2045,1.5411,1.358,0.59162,-2.4129,-0.69451,0.91599,-1.314,-1.1973,0.65747,0.63403,0.36338,0.07117,1.0054,0.2089,-0.0052398,0.24485,0.95277,-0.039331,-0.7069 -1.6167,1.1049,-0.024459,-0.75303,-2.5151,-1.4196,0.14669,0.61107,-1.8506,-0.31207,0.65183,-0.11098,-0.69743,-0.29537,0.67024,-0.25383,-0.0021082,0.72791,0.71188,-0.026125 -1.1637,1.0856,0.73261,0.67039,-2.7884,0.36887,0.15428,0.11412,-0.57749,-0.86869,-0.40962,-0.29479,-0.38675,-0.55333,-0.13342,0.25524,0.78553,0.15628,0.51634,0.47818 -0.90987,1.5523,0.16054,1.0469,-2.1292,-0.078667,-0.12127,-0.25239,-0.36671,0.25089,-0.19066,1.5473,-0.21465,-0.092873,0.21433,0.12312,-0.12973,0.38986,-0.12064,0.13732 -0.86601,0.85279,-0.20213,0.54993,-1.9736,0.37391,0.38028,-0.35063,-0.78336,-0.5962,-0.26507,0.68788,-0.72818,0.21234,0.24346,0.46429,0.81434,-0.11895,0.17782,0.36392 -0.62588,0.96519,0.14053,1.2282,-2.617,0.24408,0.52126,-0.43428,-0.85765,-0.06669,-0.41093,1.1931,-0.59554,0.24347,0.059365,0.19127,0.58777,-0.097148,0.49585,0.49142 -1.6438,0.87492,-0.052475,0.16782,-1.5913,-0.56943,-0.31172,0.48609,-0.8817,-0.34895,-0.0035939,1.0172,-0.38753,0.32634,0.20017,-0.32147,0.00044679,0.20271,-0.46128,-0.15522 -2.047,1.9109,-0.028906,0.42771,-3.2005,-0.5442,0.086299,0.53873,-1.084,-0.25611,-0.26883,-0.10266,0.23155,0.23893,0.35768,0.99445,0.66316,0.39223,0.31389,0.4919 -2.3201,1.4953,0.47245,-0.77435,-2.5684,-0.82942,-0.14789,-0.094939,-1.4785,0.38589,0.64353,-0.0095874,-0.33222,0.032819,0.88834,0.036862,0.45246,0.32091,0.67242,0.59374 -1.6674,1.0401,-0.63657,0.018078,-2.4964,-0.3612,-0.04571,0.62081,-2.451,-0.50005,0.2281,0.46495,-1.0905,0.64147,0.2229,0.26406,-0.016827,0.72277,0.052301,-0.12751 -1.4459,1.1322,0.77525,0.23843,-2.6903,-1.2387,0.68665,-0.15389,-0.9767,0.29004,-0.22563,0.62655,-0.81365,0.91717,0.77937,0.71347,0.66891,0.22584,0.80263,0.87052 -2.0389,1.596,-0.021456,1.366,-1.3382,0.07506,0.47205,0.28407,-0.4647,0.51576,0.89435,1.8414,0.79621,0.47809,0.66517,0.668,0.13803,0.58005,-0.60174,0.848 -2.9575,1.2993,-0.78024,0.37309,-3.14,-0.46385,0.28771,0.70147,-3.3778,-0.066094,1.0327,0.84717,0.047251,0.12802,0.80361,-0.14172,0.62372,1.1251,-0.026608,-0.17416 -0.27825,-0.45355,0.70527,0.36062,-2.1938,-0.12349,-0.53702,-0.17436,-1.6614,-0.052492,-0.15152,0.20198,-0.20664,0.22665,0.3678,0.35183,0.23094,-0.17307,0.13294,0.3843 -1.8371,0.91017,0.32711,0.66595,-1.9206,0.4658,0.51154,-0.11325,-1.5559,-1.3277,-0.24007,-0.046618,-0.88916,0.11579,-0.010635,-0.044398,1.134,1.1473,0.15756,-0.14308 -0.73574,1.1355,-0.12566,0.99851,-2.9564,0.0057995,0.49689,0.14904,-1.1065,-0.86428,-0.49925,0.61503,-0.1142,0.23982,0.0048514,1.0126,0.69427,0.3099,0.36174,0.63621 -2.5647,1.5081,-0.34484,0.28076,-1.3923,0.36294,-0.48631,-0.46261,-1.0316,-0.28552,0.79929,0.98811,0.86114,1.2442,0.83087,0.25017,0.1076,0.12809,-0.31673,-0.75715 -1.6761,1.7958,1.7894,1.0499,-2.2581,-0.7021,0.46335,-0.36526,-0.5138,0.9958,0.20087,0.41961,-0.3399,0.38766,0.72055,0.52639,0.70759,0.82115,0.46057,-0.10881 -1.5016,1.4731,1.9146,0.85147,-2.0754,-0.15347,0.58677,-1.3288,-0.88872,0.92681,0.98483,0.10421,0.10575,0.54703,0.17348,0.49607,0.53553,0.40697,0.09499,-0.8745 -0.45423,0.73377,1.4112,0.96164,-1.5594,0.14489,0.92592,-0.27361,-0.63416,0.71953,1.1517,-0.30374,-0.34101,-0.26629,0.18633,0.46849,0.22484,0.45161,0.16786,-0.063947 -0.50462,0.83784,-0.028175,1.3542,-2.3466,-0.10173,0.46887,-0.17211,-0.39196,-0.45688,-0.64929,0.84051,0.03837,-0.32071,-0.47034,0.4278,0.438,0.19204,0.44718,0.52386 -1.2413,1.0532,1.1426,1.289,-2.5883,-0.35492,0.59891,-1.4231,-0.57472,1.6463,0.39596,0.78969,0.37858,0.86655,-0.015611,0.68796,0.32416,0.23545,-0.30852,-0.55414 -1.5062,1.4178,-0.2021,0.57563,-2.956,0.10512,-0.15686,0.18113,-1.2609,-1.0781,-0.51201,0.60551,-0.79622,0.18025,0.61249,0.87641,0.44762,0.24916,0.11438,0.48741 -2.4851,2.0634,1.3676,1.7577,-1.871,0.7558,0.85535,-0.76427,-0.83831,0.59515,1.3159,1.1848,-0.17167,0.13159,0.93444,-0.049426,0.27746,0.24744,0.096655,-0.46167 -0.89696,0.2492,1.4942,0.085205,-1.749,-0.32785,-0.12811,-0.28238,-0.86888,0.21003,0.29076,0.2479,0.70053,-0.61511,-0.20375,0.10737,0.89917,0.20476,-0.10678,0.062842 -1.1056,1.7349,0.002488,1.312,-2.6442,-0.46595,0.43622,-0.42974,-0.40327,0.54452,0.041958,1.8068,0.26092,-0.26674,0.17168,0.23476,0.24118,0.26524,-0.40486,0.0045495 -1.2416,1.4247,1.4993,0.60164,-2.0956,-0.78621,0.42555,-0.99125,-0.45899,0.80317,-0.13163,0.5012,-0.19758,0.12414,0.12984,0.49063,0.81944,0.76298,0.57925,-0.078419 -0.76615,0.88614,-0.097995,-0.10805,-1.5474,-0.62371,0.041639,0.39532,-0.63112,-0.86622,-0.23946,0.20588,-0.35967,0.10086,0.44218,0.48432,0.26977,0.68119,0.28758,0.38797 -2.0162,0.60357,0.95493,-0.3937,-2.4861,-1.1924,-0.17723,-0.31063,-2.5011,-0.90631,-0.026447,1.2979,-0.01417,0.64087,0.46949,-0.16422,0.74574,0.24576,0.44928,0.82785 -1.3501,1.4483,1.6722,0.53186,-1.6469,-0.0047219,0.11692,-0.73377,-0.99692,1.2962,0.83395,0.83644,0.048669,0.31774,0.15453,0.49304,0.47279,0.69713,-0.10909,-0.68926 -0.54554,0.33602,1.2692,0.99133,-2.6391,-0.61733,-0.20353,-0.52477,-1.3984,0.89945,-0.21538,0.11928,0.3695,0.39878,0.032062,0.77615,0.5898,-0.083479,0.60989,-0.27126 -1.447,0.76427,0.87926,-0.3855,-1.7681,-0.20455,1.452,-0.59939,0.10493,0.40705,-0.45149,0.32842,-0.091572,0.37961,-0.28895,0.16168,0.70621,0.45996,-0.088704,-0.18378 -2.8977,1.5105,0.85198,0.44176,-2.4495,-1.1383,2.0313,-0.6137,-0.26853,0.045577,1.0054,0.86207,0.48272,1.1026,0.92467,-0.014835,0.45281,0.10336,0.55677,-0.038339 -2.1359,1.5063,1.0924,0.68375,-0.94339,0.54837,0.65035,-0.21512,-0.3215,-0.3458,1.1656,0.73858,0.025107,-0.21797,0.92732,-0.028903,0.97686,0.44592,0.35954,0.17922 -1.5049,1.7374,1.8591,0.80397,-1.6117,0.031423,0.45252,-0.59249,-0.54509,0.71645,0.88413,0.88115,-0.2019,-0.13559,0.22346,0.41688,0.49794,0.76062,0.41476,-0.54007 -1.0534,1.0313,-0.69719,-0.022163,-1.7886,-0.62842,-0.24047,0.4304,-0.84192,-0.32847,-0.0417,0.27892,-0.29651,0.60659,0.10951,0.59286,-0.11504,0.6605,0.29389,0.049089 -1.2335,1.2664,-0.61189,0.58892,-2.3097,-0.24493,-0.34181,0.043238,-0.68138,-0.31838,-0.58907,0.67897,-0.18593,0.40318,0.1352,0.42232,0.16,0.34905,-0.3478,-0.30307 -0.8465,0.90714,1.4945,2.0401,-2.1086,0.36259,1.0619,-0.46292,-0.95593,1.4208,1.0271,0.77352,0.13466,0.17515,-0.33871,0.13401,0.0072826,0.59281,-0.28917,-0.54037 -1.2955,1.3645,-0.5697,0.72667,-2.1456,-0.12153,0.02803,0.35437,-1.2006,-0.45605,-0.36842,1.3723,-0.56427,0.60477,0.31402,0.50527,-0.033205,0.50917,-0.067664,0.56731 -0.42184,0.82455,0.029729,0.83666,-2.0215,0.1521,0.47168,-0.53239,-1.1198,-0.66012,-0.49705,1.4058,-0.993,0.021038,0.46742,0.4514,0.5891,0.26677,0.13586,0.35617 -1.3539,1.3258,1.604,0.55877,-1.7332,-0.35858,0.04703,-0.61299,-0.79581,1.1133,0.57793,0.24621,0.0056202,0.61772,0.2101,0.63096,0.68299,0.60314,0.43309,-0.56727 -1.0825,1.1384,0.30528,0.12633,-1.4071,-0.19482,-0.035913,-0.022379,-0.014902,-0.39536,-0.0038515,0.43722,0.25395,-0.21277,0.50726,0.48353,0.33402,0.17802,0.17627,0.46761 -0.85279,0.98546,-0.57142,0.48102,-2.5696,0.39914,-0.19892,-0.10611,-0.6481,-0.05889,-0.4899,0.98194,0.33247,0.20039,-0.26733,0.33205,0.14245,0.023288,-0.12901,-0.17421 -1.3111,1.5739,-0.40129,0.80042,-2.6803,-0.39066,-0.2384,0.20903,-0.60821,-0.13701,-0.13743,1.3721,0.18033,0.16966,0.55198,0.12518,-0.15641,0.19413,-0.28496,0.092019 -2.5251,1.8926,0.87658,1.609,-3.4048,-0.35091,1.3576,-0.83947,-1.4926,0.77206,-0.10942,1.4397,-0.027503,0.43642,0.85421,0.13397,0.59558,-0.041124,0.32331,0.35175 -0.66522,1.0099,1.4206,0.78589,-2.0139,0.054167,0.13382,-0.18623,-0.43509,0.57651,0.54502,0.58777,-0.14337,-0.85596,0.094862,0.19055,0.32626,0.69112,0.90858,0.19347 -1.2536,2.007,0.38137,0.83535,-2.1248,-1.0098,0.25979,-0.52747,-0.56113,-0.077866,0.85966,2.1409,0.37631,-0.24102,0.79887,0.10132,-0.073049,0.71124,0.15516,0.22598 -1.8962,1.6138,0.45266,-0.036112,-1.3916,-0.72227,0.70212,0.61966,-0.17081,-0.61603,0.98891,0.79726,0.61967,-0.048156,0.9985,0.14213,0.42124,0.36293,0.11602,1.0721 -1.4122,1.6952,0.056199,0.69571,-2.3063,0.37251,0.50135,-0.26146,-0.94432,-0.96499,-0.4449,0.36059,-0.64564,-0.040025,0.37764,-0.20162,0.8047,0.46797,0.28772,-0.16172 -1.1548,0.38831,0.030395,0.96389,-2.9352,0.77439,1.6928,-0.68946,-1.3069,-0.57299,0.16749,0.80844,-0.70386,0.0072535,0.33454,0.42921,1.3899,-0.47726,0.43158,0.77534 -3.7565,1.6422,0.75769,-0.8103,-2.0956,-0.78203,0.50966,-0.22489,-0.73283,-0.72522,0.98651,0.76264,0.89831,0.57314,0.60169,0.8547,1.4886,0.072704,0.18404,0.27015 -0.92543,1.0262,1.1142,0.9427,-1.8207,-0.44378,0.072056,-0.86153,-0.72611,1.5158,0.63229,1.0481,0.093884,0.65135,0.1519,0.67792,0.091195,0.45077,-0.30468,-0.61746 -1.9001,1.8989,-0.45521,0.75683,-3.0086,-0.4758,0.26184,-0.097273,-0.89208,-1.0659,-0.68712,1.0962,-0.55451,0.095371,0.77815,0.76828,0.68631,0.37577,0.31377,0.42684 -0.46117,0.40349,-0.93293,0.62701,-1.9201,0.40756,0.37175,0.21334,-0.92565,-0.27195,-0.20566,1.3626,0.50738,0.58141,-0.37405,0.74322,0.37533,0.12356,-0.32385,0.17627 -3.5212,1.1367,0.25961,-0.42122,-2.7468,-0.96307,-0.59512,0.3833,-1.3137,-0.56181,0.70279,1.3016,0.30305,0.17852,-0.033358,0.1241,0.5201,0.63786,0.50229,-0.038738 -0.93539,0.62095,1.3271,0.18099,-1.9935,-0.97264,-0.54558,-0.6746,-0.80373,0.40484,0.12744,0.47707,0.46357,0.1796,-0.090637,0.37642,0.43984,0.69188,0.29466,-0.33409 -2.0773,1.733,-0.51756,0.26607,-2.6351,-0.51643,-0.35688,0.22717,-0.52852,-0.28269,0.28589,0.24092,0.12934,0.40455,0.64042,1.1967,0.54664,0.43454,0.23938,-0.1964 -1.6503,1.7689,-0.46454,0.2855,-2.0343,-0.56264,-0.017984,0.40278,-0.2107,-0.31584,0.12852,0.52771,0.2127,0.15356,0.70921,0.84558,0.32592,0.31043,-0.11289,-0.25466 -1.711,1.9865,-0.36362,1.203,-3.2346,0.15081,0.65868,-0.46463,0.073721,-0.058156,0.16873,1.0382,0.63251,-0.1243,-0.030984,0.57133,0.67638,0.16259,-0.18885,-0.32878 -0.85748,1.3162,-0.33824,0.78575,-2.1863,-0.54407,0.20022,0.09452,-0.75623,-0.3589,-0.20868,1.5053,-0.59998,0.040713,0.30626,0.5333,-0.080112,0.2986,0.33853,0.69545 -0.59221,0.090433,0.70039,0.15732,-2.0215,-1.1257,-0.36091,-0.30452,-1.527,0.081232,-0.15062,0.58774,0.054579,0.76011,0.41455,0.2525,0.047835,0.54618,0.48849,0.038066 -2.1347,1.758,1.426,0.81138,-2.5275,-0.16177,0.72952,-0.223,-0.23212,0.55084,0.018912,0.7535,-0.35209,0.11258,0.31593,0.20244,1.2298,0.38421,0.7661,0.36461 -1.6688,-0.054167,0.25821,-1.226,-0.080601,-0.76548,0.91735,-0.048521,-1.0251,-0.097058,1.0786,0.38007,0.37719,-0.28656,-0.4232,0.1067,0.19532,-0.44041,0.56184,0.75143 -1.9679,0.55668,0.28224,-0.0002945,-3.0559,-0.11331,-0.037167,0.43742,-1.7069,-0.58526,-0.22109,0.3149,-1.2913,0.19719,-0.13516,0.33912,0.57129,0.20348,0.28794,0.16171 -1.9289,2.0412,0.034849,1.29,-3.0455,0.20597,-0.065029,-0.16372,-0.46732,-0.44808,-0.3128,0.76871,0.18822,-0.36163,0.29371,0.87172,0.69423,0.5516,0.27489,0.10885 -1.7457,1.289,0.38827,0.32576,-1.8992,1.0007,0.28773,-0.24991,-2.2387,-0.63417,0.15448,0.65038,-0.48759,0.67368,0.18838,-0.36976,0.77332,0.77753,0.49062,-0.62267 -0.8548,1.2567,1.0026,0.94269,-2.2281,0.027149,0.25869,-0.49059,-0.068862,0.14257,0.24547,0.58037,-0.46496,-0.72032,-0.059706,-0.14944,0.45317,0.34063,0.71194,0.072856 -2.6607,1.7965,-0.40001,-0.19329,-2.5357,-0.67738,0.11412,0.2,-0.73538,-0.68883,0.11831,-0.2911,0.12872,0.21262,1.1256,0.7616,1.1044,0.1424,0.23537,-0.047204 -1.0003,1.3328,-0.36599,0.036728,-2.1968,-0.44266,0.010591,0.26412,-0.42564,-0.51423,-0.034277,0.65428,0.15985,-0.2624,0.57869,0.3896,0.14907,0.37269,0.222,0.046949 -0.58926,0.15152,0.36628,0.86327,-2.497,0.51595,0.39274,0.394,-1.5665,-1.5942,0.42168,0.45622,-0.60198,-0.54762,0.24624,0.44803,0.60655,0.32569,0.074453,0.26631 0.019957,0.13143,-0.17116,1.5505,-1.8611,-0.033653,1.4818,-0.79783,-1.0683,0.047507,-0.28374,1.1621,-0.31955,0.24106,0.12795,0.047782,0.59737,-0.17612,0.051988,0.51577 -0.9114,1.2062,0.322,0.55249,-2.9927,0.36059,0.41251,-0.4725,-0.49645,-0.26099,-0.30087,0.68805,-0.14892,-0.47851,0.02173,0.11403,0.66739,-0.034882,0.48839,-0.056095 -1.6985,1.6201,1.4277,0.9872,-2.327,0.012884,0.77664,-0.59092,0.071165,0.28162,0.43221,0.21848,-0.24725,-0.042824,0.482,0.016253,0.90426,0.42614,0.72369,0.069975 -3.444,2.2109,0.46598,-0.027389,-1.5734,-0.047981,0.63183,-0.55365,-0.50812,-1.0212,1.0533,0.90804,0.88477,0.591,1.0667,0.70285,1.2773,0.0083242,0.30233,0.12931 -2.1934,1.3287,0.55587,0.21755,-1.6122,0.81499,-0.16677,-0.29249,-0.61631,-0.43503,0.92883,-0.29424,0.09011,-0.03132,0.58737,0.27476,1.1568,0.59003,0.074011,-1.2185 -1.3954,1.7164,1.5314,1.1828,-1.7788,0.46813,0.24731,-0.1561,-0.49241,0.47652,0.85384,1.3249,-0.08073,-0.38829,0.23019,0.53275,0.38284,0.74198,0.53233,-0.24255 -1.0171,1.059,-0.55189,0.021993,-2.4778,-0.029521,-0.062821,0.38927,-1.8444,0.24524,0.217,0.35533,-0.64316,0.43502,-0.23771,0.34315,-0.027955,0.084529,0.58052,-0.07986 -2.3945,1.6398,-0.26269,-0.38056,-3.4621,0.12196,0.63507,-0.019891,-1.702,-0.13573,-0.46535,0.15088,0.051225,0.26768,-0.0057144,0.44671,1.3033,0.025556,0.74423,0.13047 0.021685,-0.4247,0.69854,1.6633,-1.5513,0.94043,1.6517,-0.5799,-1.4193,0.78322,0.91634,0.48485,-0.13415,0.43453,0.16821,0.047956,0.60706,0.95574,-0.1374,0.098654 -1.6397,0.61308,0.37517,0.35725,-1.9045,0.51114,-0.19822,0.66236,-1.8854,-0.41059,0.40841,-0.60375,-0.88366,-0.30405,0.4141,0.17946,0.66771,0.80395,0.23572,-0.33584 -2.5053,1.6336,-0.060034,-0.043528,-2.1608,-0.0019396,-0.40655,-0.75263,-1.5358,0.90683,0.79111,0.3807,0.11898,0.59558,0.27203,-0.65862,0.12199,0.80026,0.076849,-0.88662 -1.884,1.3332,-0.51285,-0.37531,-1.3522,-0.41524,-0.11054,0.6049,-0.58871,-0.52947,1.2006,0.19508,0.53753,0.26407,1.1575,0.57154,0.36228,0.43747,0.22364,-0.36222 -1.2732,1.4669,0.14194,1.4149,-2.0029,-0.27024,0.34163,-0.24325,-0.091976,0.51899,-0.33808,1.2526,-0.2714,0.34099,0.17106,0.21998,-0.049972,0.32602,-0.13451,0.31194 -1.4351,1.8403,0.080881,0.25188,-2.3285,-0.79206,0.09926,0.036533,-0.15124,-0.657,0.042401,0.56182,0.44245,0.20272,0.41066,0.87168,0.79048,0.66489,0.29059,0.3068 -1.5882,1.3087,-0.49378,0.095266,-1.4074,-0.1409,-0.42857,0.42024,-0.66216,-0.085613,0.53382,0.55561,0.19775,0.50777,0.69574,0.36929,-0.011969,0.5293,-0.18303,-0.4924 -0.38032,0.52209,-0.15949,0.78404,-1.6528,0.15728,0.14266,-0.33174,-0.74066,-0.59835,-0.43264,0.34897,0.020841,0.305,-0.30907,0.64181,0.58274,-0.075686,0.15012,0.098052 -1.3791,1.4228,0.0054088,2.1374,-3.2117,-0.46761,1.1013,-0.1166,-0.43477,0.421,-0.29405,1.5913,0.17374,0.10571,0.18086,0.54752,0.36507,0.070062,-0.045579,0.18285 -1.3953,1.8519,0.80853,0.2237,-1.7763,-0.44862,0.39377,-0.26555,-0.57812,0.24407,1.6227,1.8026,-0.037482,0.2469,1.0489,0.64918,-0.10523,0.35236,0.13963,0.1112 -1.2352,1.0541,-0.30134,0.037556,-3.0991,0.13115,-0.30873,-0.08156,-1.6656,0.21623,-0.11977,0.066388,0.24604,0.37277,0.26155,0.047779,0.26001,0.0069314,0.14255,-0.2849 -2.3939,1.4857,1.2764,1.1705,-3.0044,-0.79739,1.0026,-1.4163,-1.5797,1.2858,0.28828,0.95117,0.6351,0.99374,0.68389,0.062321,0.62782,0.15754,-0.045558,-0.1116 -1.7549,1.9312,-0.078972,0.68247,-2.4804,-0.57083,0.43847,-0.10402,0.11225,-0.65063,0.020052,1.0975,-0.087987,-0.029581,0.89729,0.50661,0.56465,0.23818,0.26591,0.24829 -1.2275,1.8873,0.20444,0.99628,-2.4067,-0.43392,0.82765,-0.45962,-0.024118,-0.42063,-0.55835,0.85777,-0.34076,-0.21757,0.33933,0.28755,0.63978,0.11148,0.27398,0.67303 -2.5972,2.1138,0.97876,1.5136,-2.4887,1.1817,0.48136,-0.74787,-0.78072,0.0019436,1.2912,1.2294,0.52885,-0.17796,0.7601,-0.14569,0.65217,-0.056362,-0.057959,-0.34581 -1.794,2.2727,-0.15775,0.9928,-2.8575,-0.4901,0.38154,-0.28019,-1.0026,-0.2773,-0.16377,1.8306,-0.31789,0.27295,0.68489,0.22333,0.22019,0.42988,0.084835,0.48528 -1.593,1.7442,0.24488,0.45234,-1.7332,-0.72814,0.13908,-0.11942,-0.90168,0.43571,1.3563,2.0621,-0.076149,-0.053631,0.63875,-0.19402,-0.20945,0.52743,0.21434,0.30611 -0.97654,1.2581,0.067657,1.2237,-2.1704,0.88981,0.25849,0.013007,-2.1454,-0.92216,-0.049058,0.60581,-0.60577,-0.20826,-0.23178,0.58644,0.59144,0.93148,0.12736,-0.48873 -2.6337,1.3693,0.5717,1.36,-1.7543,1.0245,1.3448,-0.85392,-0.67375,0.058264,1.2111,1.1283,0.076963,0.75772,0.25963,0.27502,0.30182,0.76596,-0.25357,-0.48237 -1.2675,1.1868,-0.41314,0.63336,-2.7088,-0.061996,-0.29072,-0.049952,-0.67594,-0.46477,-0.71374,0.8597,-0.21245,-0.10578,0.112,0.37967,0.28248,-0.035574,0.067789,0.1643 -0.89717,0.85372,0.87801,1.2096,-2.3867,0.77214,0.81016,-0.47105,-1.8628,0.15799,0.06973,1.1569,-1.2721,0.15136,0.48127,0.11692,0.9047,0.31999,0.5462,0.34587 -0.60362,0.66661,-0.58174,1.2921,-2.328,-0.046726,0.28002,0.16046,-0.85604,-0.27848,-0.34192,1.8163,0.059496,0.044528,-0.32083,0.61605,0.029199,0.32113,-0.14799,0.78558 -1.0227,0.97632,0.86893,2.1628,-2.5871,0.15349,0.77421,0.16559,-2.0976,0.59291,0.39091,1.6049,-0.69112,-0.39474,0.68334,0.17707,0.71085,0.80808,0.17695,0.49292 -1.0168,1.5566,0.60814,1.678,-2.1901,-0.85706,0.85831,-0.52601,0.1677,0.67697,-0.034065,1.2782,0.17126,0.31275,0.11398,0.40665,0.082773,0.49874,0.24629,0.42175 -1.0121,0.99325,1.5725,1.1948,-2.464,-0.22835,0.87351,-0.79201,-0.23214,1.084,0.64232,0.03978,-0.088086,-0.40529,0.015941,0.0016832,0.60083,0.55808,0.50837,-0.53721 -0.86922,1.0646,1.3739,0.4481,-1.3518,0.29316,0.2115,-0.20538,-0.47847,0.75928,0.89389,0.32599,-0.29884,-0.23537,-0.011606,0.35987,0.41824,0.25322,0.35098,-0.33427 -1.5994,1.3597,-0.83578,1.062,-2.3057,0.10719,-0.19116,0.12558,-0.43349,0.018047,-0.48779,0.72156,0.63516,0.55946,-0.36523,0.38497,0.28448,0.4949,-0.85136,-0.34457 -2.6092,2.0719,-0.028783,1.5021,-3.4992,0.075586,0.060763,-0.21364,-0.85086,-0.44812,-0.13383,0.98644,0.11288,0.14968,0.41903,0.54926,0.62287,0.7439,0.17114,-0.029698 -2.1568,1.1072,-0.77258,0.76063,-2.2988,-0.32583,-0.45941,0.80523,-1.9609,-0.34454,-0.50449,0.9699,-0.36058,0.78874,0.46535,0.12373,0.38431,1.2015,-0.92807,-0.40676 -1.0679,0.42225,1.6048,0.9009,-2.2613,-0.45998,-0.3014,-0.90939,-1.3956,0.33842,-0.02866,0.19345,1.3546,-0.53838,-0.37356,-0.20494,0.41511,0.42603,0.25847,-0.61801 -0.68707,0.78364,0.16356,1.5053,-2.9236,0.84517,0.49316,-0.059835,-1.3398,-0.79331,-0.16918,0.93769,-0.63026,-0.14286,0.24526,0.5845,0.60379,0.28487,0.30198,0.54214 -0.77443,0.49686,1.1932,0.15701,-1.6672,-0.39124,-0.14054,-0.2857,-0.81675,0.65125,-0.042196,0.16453,-0.072946,-0.015599,-0.089794,0.093834,0.80763,0.34028,0.40676,-0.092481 -2.1094,1.1375,0.69297,0.46533,-2.1284,0.24134,0.41785,0.027333,-1.4775,-0.90303,-0.29037,-0.34896,-1.1157,0.0048318,0.077702,-0.29102,1.0155,0.95556,0.36277,-0.30233 -0.41735,0.87363,0.96089,1.4125,-1.8675,0.15041,0.36956,-0.02095,-0.36655,0.53258,0.68979,0.82386,-0.066031,-0.88789,-0.17395,0.093251,-0.086437,0.50339,0.58763,0.13594 -0.47864,0.30405,1.1275,0.66273,-1.4851,-0.18323,-0.10359,-0.088865,-0.86448,0.92705,0.88816,0.38888,0.38863,0.23859,-0.30852,0.54938,0.29343,0.51813,-0.1113,-0.4342 -1.8374,1.6523,-0.38294,0.011971,-2.414,-0.78461,-0.20958,0.37594,-0.46621,-0.48593,0.16684,0.23342,0.034185,0.49149,0.6489,0.82988,0.52716,0.51449,0.21458,-0.16094 -1.5277,1.4477,0.097634,1.0547,-2.7559,-0.10155,0.67592,-0.164,-0.15239,-0.2214,-0.594,0.62499,-0.39,-0.13034,-0.10712,0.46594,1.124,-0.21385,0.59113,0.8836 -2.0264,0.61787,0.89728,1.0553,-1.3789,1.7001,1.2345,-0.68395,-0.96137,-0.29048,0.98314,0.64386,-0.52603,0.31578,0.62133,0.21309,0.57159,-0.24199,0.54596,-0.18133 -0.93207,0.94882,1.2868,0.11835,-1.2904,-0.36347,0.21901,-0.37838,-0.4611,0.40679,0.36277,-0.13918,0.29852,0.30633,0.20099,0.75436,0.93264,0.46716,0.2235,-0.1386 -1.1958,1.1482,1.3235,0.37517,-2.0469,-0.51476,-0.19283,-0.7631,-1.0565,0.88549,0.46364,0.4626,0.77763,0.66453,-0.074902,0.89683,0.17818,0.81326,-0.38733,-0.43229 -1.375,1.4377,-0.53625,1.2929,-3.1373,0.68379,0.37596,-0.29091,-0.37317,-0.35815,-0.41923,0.80801,0.62563,-0.19783,-0.674,0.57775,0.45551,0.40659,0.15512,-0.59912 -1.5462,1.6828,-0.14127,-0.023672,-2.6985,-0.83286,0.08437,0.9022,-1.1614,-0.49867,0.17813,0.39054,-0.18726,0.051375,0.37143,0.59972,0.29315,0.93139,0.63544,0.13255 -1.4039,0.99719,0.47064,0.72573,-2.4167,1.4776,1.1389,-1.27,-1.3606,0.020586,0.65472,1.1475,-0.2143,0.17418,0.096482,-0.50252,1.0496,0.10686,0.23662,-0.049515 -1.4341,1.189,-0.99771,0.2816,-2.6396,-0.15075,0.010363,0.30548,-1.7122,-0.081475,-0.14586,0.32727,-0.53938,1.0946,0.13661,0.65133,0.19902,0.17307,0.16019,-0.17898 -2.3334,1.5419,-0.51787,0.65784,-2.5759,0.83569,0.6412,-0.5397,-2.2877,-0.58911,0.17648,0.45511,-0.14143,0.92682,0.028807,-0.28244,0.73413,0.89686,-0.1567,-0.90651 -3.4934,1.8502,0.25017,-0.39383,-2.7136,-0.75327,0.41893,-0.57904,-1.1593,-0.57968,0.0056109,0.073212,-0.16074,0.3176,0.18831,-0.18131,1.3432,0.63933,0.36588,-0.48497 -2.8613,1.4331,-0.83114,-0.28313,-3.1107,-0.4291,0.018854,0.64628,-3.1591,0.64159,0.87742,0.9157,0.63965,0.14454,0.54113,-0.22359,0.40174,0.97762,0.35414,-0.094581 -1.0652,1.2978,0.61072,0.96534,-2.4339,0.20235,-0.051134,-0.081698,-0.91807,-0.60735,-0.66201,0.56912,-0.73732,-0.40968,-0.11837,0.64719,0.75617,0.87151,0.50032,0.31376 -0.94348,0.91289,1.4761,1.0755,-2.1723,-0.4319,0.62959,-0.90493,-1.6944,0.83349,-0.23513,0.3409,-0.5309,0.26321,0.46523,-0.0096638,0.73172,0.72822,0.83671,-0.10357 -0.3216,0.64655,1.4145,0.72027,-2.1157,-0.41119,0.44369,-0.14785,-0.39329,0.83043,0.093163,0.26948,0.0402,-0.27492,-0.28394,0.57485,0.35647,0.55608,0.6653,0.27719 -1.8956,0.83649,1.996,0.23317,-2.2913,-0.89899,0.32039,-0.26624,-1.2747,0.63738,-0.013952,1.0359,-0.70997,0.053309,0.2657,0.036301,1.0729,0.61861,0.74714,0.54592 -1.4809,1.8235,1.0059,0.70222,-1.1941,0.33804,0.69944,-0.32416,-0.18062,-0.21919,0.54588,0.76214,0.17456,-0.37343,0.89957,0.48867,0.74688,0.45603,0.27748,0.31365 -2.495,1.0283,1.0739,-0.01494,-1.1145,-0.93368,0.16285,0.74146,-0.42786,-0.30755,-0.16403,0.44384,0.7439,0.70626,-0.027895,0.20562,0.45743,1.0192,-0.57306,-0.028781 -0.62209,0.89934,0.040185,1.147,-2.0304,0.23521,-0.23573,-0.20801,-0.5864,-0.227,-0.67973,1.0381,-0.26748,-0.3262,-0.40563,0.41993,0.14197,0.12741,0.15172,0.3317 -1.0998,0.51267,-0.43983,-0.27883,-1.0907,-0.014115,-0.16859,0.45558,-1.2322,1.0114,0.47671,0.39271,-0.077033,0.33494,0.086779,-0.91813,-0.22895,0.47078,0.064503,0.033679 -0.8307,0.87258,-0.30501,0.075175,-1.5462,-0.4581,-0.17941,0.31187,-0.51563,-0.26837,-0.1749,-0.088873,-0.34331,0.26176,0.11831,0.7041,0.26072,0.31379,0.2583,0.081349 -2.2581,1.2942,-0.45275,-0.68622,-0.86802,-0.43192,-0.2405,-0.098479,-1.2745,-0.26059,1.4331,0.31217,0.43692,0.854,0.94271,0.59779,0.24555,0.13958,0.39562,-0.32685 -1.6991,1.6257,1.7873,0.731,-1.5559,-0.54322,0.47498,-0.36409,-0.49228,0.92539,0.56655,0.57802,-0.2321,0.1633,0.45276,0.2303,1.0454,0.93513,0.60773,-0.0095926 -1.23,1.2629,1.4339,0.45057,-1.4461,0.65847,0.55003,-0.55665,-1.2621,1.2281,0.80387,0.50167,0.15285,0.60675,-0.075521,0.48781,0.52209,0.70142,-0.35203,-0.28378 -1.3899,0.94829,0.85273,0.7156,-2.4575,0.93761,0.74331,-0.21233,-1.4421,-0.35066,-0.059182,1.1253,-1.0231,0.042428,0.73256,-0.19651,1.1828,0.25403,0.29312,0.46134 -0.55446,0.87889,0.56744,1.0123,-2.2911,-0.40779,0.89577,-0.69812,-0.30675,0.4732,-0.5728,0.73923,-0.33066,-0.30654,-0.13438,0.31992,0.62055,-0.20019,0.75045,0.78858 -3.6878,1.1101,1.7662,-0.15535,-0.96272,0.10356,0.1629,-0.2421,-1.1941,0.059846,0.58688,-0.099874,0.78056,0.076036,-0.16276,-0.28242,1.4959,0.45727,0.20288,0.18766 -1.6737,1.4781,0.046548,0.53948,-2.2359,-0.43033,0.97761,-0.80464,-1.3796,-0.22948,-0.53005,2.0431,-0.84304,0.12975,0.59992,-0.34894,0.67608,-0.24748,-0.078689,0.64015 -1.9653,1.6837,-0.1213,0.47745,-2.5069,-0.1514,-0.75463,-0.030204,-0.92134,-0.32051,0.82607,1.5768,0.46403,0.4009,0.67272,0.3702,0.065035,0.56213,-0.38794,-0.33016 -1.0799,1.5911,0.37938,1.368,-2.9976,0.19221,0.085462,-0.37206,-0.77465,-0.62009,-0.87592,1.0283,-0.43994,-0.5534,0.15441,0.43931,0.47526,0.37598,0.55372,0.30414 -0.73701,1.1394,1.3391,1.0472,-2.0175,-0.053618,0.26055,-0.40156,-0.4321,0.83666,0.24223,0.44919,-0.3797,-0.44114,-0.23869,0.18909,0.36717,0.52934,0.815,-0.10764 -1.6879,2.1232,0.081694,1.4154,-2.9336,-0.062064,0.59281,-0.95717,-0.37153,-0.12041,-0.17769,1.8548,0.1919,-0.12622,0.39913,0.24717,0.43062,0.54631,0.19682,-0.2139 -1.0258,0.79669,1.5213,0.95354,-2.7582,-0.40533,-0.026099,-0.52865,-1.4596,1.3341,-0.27184,0.79625,-0.38799,0.27613,0.40668,0.32468,0.51023,0.80741,0.641,0.18895 -0.97401,0.79672,1.0217,1.6223,-1.7488,-0.32302,1.0454,-0.82603,-0.12597,1.4294,0.36647,0.060009,0.82182,0.91778,-0.55743,0.2254,0.60453,0.47245,-0.49501,-0.3274 -0.60171,-0.12073,0.75874,0.98246,-2.3992,0.27345,1.1736,0.73128,-1.1563,-1.2608,0.080777,0.52057,-0.55231,-0.76954,0.085135,0.14639,0.37495,0.37487,-0.33375,0.7938 -1.63,0.87522,2.2571,1.3895,-3.2802,-0.53063,0.47423,-0.57905,-1.3755,1.1619,0.018665,0.090784,0.37473,-0.14269,0.16524,0.18584,0.72311,0.25701,0.67768,0.29588 0.05341,0.26232,0.66897,1.0229,-1.5245,-0.082319,0.85646,-0.035321,-1.0595,0.45481,0.54336,0.49052,-0.24772,-0.23429,0.075128,-0.16831,0.062825,0.2827,0.41236,-0.091514 -0.80496,1.3923,0.64427,1.1187,-2.4541,-0.064108,0.58207,-0.50693,-0.54697,0.20252,-0.59459,0.82222,-0.5742,-0.21902,0.068263,0.135,0.76722,-0.09263,0.73643,0.41928 -1.4313,1.0429,-0.023829,0.39648,-2.7562,-0.44886,0.79955,0.15763,-1.3014,-1.2397,-0.78964,0.2785,-0.718,0.69693,0.36746,1.0636,0.96663,0.30297,0.03396,0.9058 -2.7346,1.7536,-0.26197,-0.080572,-1.6318,0.030225,0.97,-0.42698,-0.34588,-0.65555,1.2385,1.2037,0.317,0.57584,1.6404,0.39837,0.65033,-0.51484,0.48962,0.42888 -1.638,1.2438,-0.23229,0.56562,-2.1971,0.27048,-0.17935,0.12258,-1.9115,-0.42467,-0.59772,0.91755,-0.71572,0.6093,0.22279,0.25251,0.4202,0.83009,-0.046885,-0.39617 -1.6049,2.03,1.9511,0.19661,-2.0953,0.21691,0.23448,-0.9007,-1.3534,0.61747,1.0162,1.2404,0.34716,0.22406,0.22559,0.47093,0.77635,0.61209,-0.21299,-0.39063 -0.39646,0.81714,0.083782,1.6741,-1.8863,0.26649,0.78881,-0.41974,-0.56517,0.45652,-0.6919,1.0357,-0.51292,0.022219,-0.60704,-0.099984,0.17662,0.0054412,-0.054638,0.42012 -1.5632,1.9276,-0.016475,0.38147,-2.7558,-0.55716,0.074967,-0.057423,-0.67545,-0.29875,-0.038506,1.3751,-0.069594,-0.038302,0.46941,0.63549,0.79493,0.24756,0.54548,0.39682 -0.6472,0.48908,0.59695,0.12395,-1.5226,-1.0204,0.55072,-0.44317,-1.2656,-0.029443,-0.032533,0.91074,-0.70543,0.79409,0.7199,0.21615,0.28026,0.56111,0.74922,0.30353 -0.44682,-0.20734,0.89369,1.0433,-2.2031,-0.085547,0.1126,-0.25819,-1.3971,0.0045782,0.066571,-0.35681,0.30642,0.023713,-0.081245,-0.059071,0.067295,0.30107,0.14253,-0.32757 -0.79045,0.80659,0.015123,0.89229,-1.9835,0.78318,0.3285,-0.071846,-0.81945,-0.98575,-0.20696,-0.363,-0.41196,-0.29528,-0.42318,0.29436,0.64837,0.12479,0.20894,-0.010205 -2.5659,1.2034,-0.86245,0.62113,-2.4295,0.039653,-0.44433,0.15113,-1.6228,0.77836,-0.3194,0.39463,0.28803,0.98197,-0.0015759,-0.28308,0.46457,0.71465,-0.52544,-0.60579 -0.95913,0.39833,0.092558,1.0126,-2.7073,1.1917,1.5281,-0.57283,-1.0969,-1.2272,0.15425,0.062268,-0.071538,0.11941,-0.41003,0.078641,1.3888,0.063628,0.24803,-0.075359 -2.2233,1.0639,2.0695,1.6189,-3.0049,0.18929,0.55523,0.13,-1.0674,0.0403,0.6695,0.91105,-0.37604,-0.33085,-0.19046,-0.30148,0.71096,0.54173,0.93978,0.03233 -0.76025,0.3517,0.50535,0.59064,-1.6019,1.1123,0.58877,-0.18352,-1.5551,-0.70016,0.60952,0.42104,-0.62067,-0.12587,0.21154,0.12937,1.0251,0.58946,0.16767,0.049075 -1.5746,1.481,-0.723,0.0027995,-1.9193,-0.41619,-0.22164,0.68084,-0.62658,0.025332,0.91609,0.52889,0.38553,0.45956,0.45587,0.79366,-0.15644,0.55081,-0.098761,-0.46807 -1.3981,1.0809,-0.53511,-0.54784,-1.5909,-0.53233,0.30009,0.47888,-0.76103,-0.080828,0.16795,0.1124,-0.24994,0.44252,0.11413,0.59693,0.3749,0.24313,0.44,0.24349 -2.2259,1.7716,0.92989,1.1175,-2.2258,1.2042,-0.33537,-0.28251,-1.1355,0.07884,1.1468,1.214,0.40501,0.038076,0.28543,-0.0019069,0.42177,0.49643,0.27028,-0.32154 -1.0184,0.98049,-0.96801,1.3983,-3.1172,0.93419,0.62724,-0.017169,-1.4217,-0.57286,-0.47892,1.0242,0.68585,0.42719,-0.623,0.70885,0.80526,0.071246,-0.19732,-0.19769 -2.7809,1.9629,1.8268,-0.24563,-1.5988,-0.70174,1.3205,-0.50005,-0.71029,-0.38138,1.1452,1.1086,0.81707,0.48905,1.4099,0.2545,0.5925,0.25144,0.13327,0.44282 -1.4422,2.0546,0.292,0.77189,-2.4699,-0.20699,0.49015,-0.49179,0.16279,-0.064459,0.23198,0.97579,0.36487,-0.22807,0.29331,0.56107,0.84808,-0.053704,0.23273,0.33155 -1.025,1.1829,0.18943,0.26766,-1.7384,-0.75916,0.50368,0.39776,-0.77637,-0.28184,0.36288,1.446,-0.65326,-0.19623,0.57836,-0.26341,-0.22587,0.61726,0.92881,0.78383 -2.0925,1.6692,0.84304,0.76234,-2.436,0.090608,0.22587,-0.14071,0.11357,-0.077247,0.044209,0.98811,-0.33958,-0.47023,0.6098,0.2138,1.055,0.28793,0.70526,0.34415 -2.345,1.8239,0.37836,0.93989,-2.1598,-0.21797,0.74495,-0.85771,-0.27885,0.47862,1.1434,1.9868,0.16657,0.53675,1.1068,0.73155,0.33995,0.06862,-0.038998,-0.18694 -1.1228,1.4942,0.3313,0.16043,-1.7642,-0.10714,0.72322,-0.24025,0.25706,0.07695,-0.22633,0.59201,-0.17053,-0.050191,0.17504,0.0028033,1.0017,0.29378,0.24033,0.14007 -0.94612,0.82904,-0.11691,-0.25002,-1.9875,-0.41954,0.32302,0.53875,-1.1932,-1.0059,0.2202,-0.1148,-0.82683,0.45838,0.56671,0.38549,0.47455,0.96117,0.41797,-0.043074 -0.98434,1.5697,0.059264,1.3202,-2.5531,-0.18194,-0.011329,-0.10495,-0.58848,0.23339,-0.37839,1.6845,-0.19873,0.037233,0.25133,0.26528,0.027087,0.61958,-0.12019,0.50462 -0.82253,1.0076,-0.52999,1.2441,-1.9965,0.011081,0.12046,0.088737,-0.51359,-0.018713,-0.80613,1.1649,-0.071868,0.22166,-0.30497,0.34408,0.18043,0.18972,-0.40989,0.65987 -0.73815,0.8668,1.2251,1.0401,-1.5449,0.45392,0.68275,-0.56692,-0.10188,0.42144,1.0898,0.15565,-0.46328,-0.29939,0.33788,0.35246,0.19657,0.21228,0.38885,-0.14224 -2.0331,1.9901,0.66757,0.56529,-1.7463,-0.36459,0.85813,-0.58297,-1.277,1.0098,1.3762,2.152,0.36938,0.85808,1.0933,0.12139,0.030423,0.56216,-0.53854,0.27255 -0.85584,0.12222,1.756,1.01,-2.5652,-0.42242,0.084921,-0.40905,-1.4929,0.4209,0.41914,0.0018507,0.16721,-0.1559,-0.24367,0.16489,0.39752,0.6589,0.5953,-0.40612 -1.5122,0.95655,-0.80241,-0.047623,-2.0331,-0.80611,-0.16288,0.69167,-1.2703,-0.040421,0.42123,0.1376,-0.43946,0.31863,-0.072947,0.72082,-0.37026,1.2044,0.36141,0.0084394 -0.75873,0.9594,0.59437,0.76564,-1.9886,-0.66877,0.55207,-0.91839,-1.0098,0.73639,-0.54551,0.90602,-0.85068,0.61335,0.62762,0.0144,0.54747,0.2113,0.44618,0.32166 -2.0349,1.8517,-0.72217,1.1191,-2.7954,-0.21454,0.76634,0.95277,-1.5855,0.23085,1.0623,2.2066,0.81872,-0.0096748,1.0552,0.13289,0.12583,0.74318,-0.43966,0.21023 -1.9851,2.3068,0.29103,0.9208,-2.8774,-0.46865,0.23386,-0.4412,-0.2554,-0.68275,-0.23309,1.207,0.057786,-0.039586,0.6071,0.57,0.89249,0.50644,0.51613,0.3763 -1.1158,-0.3017,0.77883,0.83085,-2.6563,1.069,1.7741,-0.020045,-1.1097,-0.4068,-0.20182,0.64377,-0.22206,-0.33306,-0.070902,0.1132,0.60151,-0.42774,0.032614,0.55618 -2.4859,1.4874,0.21818,-1.2471,-1.8736,-0.62844,0.22134,0.14139,-1.7526,0.61037,2.1509,0.58539,-0.035431,0.055098,0.70774,0.014046,0.21084,0.31235,0.81609,-0.068296 -1.1854,1.3328,0.79542,1.3294,-2.2027,-0.61635,0.9529,-1.1299,-0.52734,1.3294,0.43739,1.1041,0.20915,1.0094,0.19095,0.25024,0.26886,0.21841,-0.47758,-0.2617 -0.81183,0.94577,0.70309,0.46576,-2.3148,-0.60511,-0.19357,-0.75822,-1.2688,0.35402,-0.41265,0.54937,-0.17104,0.96897,0.14926,0.547,0.46084,0.25451,0.51906,-0.056235 -1.1843,0.88966,-0.12206,1.1238,-2.9096,0.12035,-0.35024,0.12969,-1.7567,-0.78991,-0.9567,1.2939,-0.47756,-0.2217,0.3663,0.43565,0.56939,0.20398,-0.28634,0.21266 -1.0267,1.4357,1.615,1.7096,-2.1384,-0.10242,1.0445,-0.44012,-1.0506,0.38977,0.421,0.010354,-0.43475,0.013831,-0.069116,0.59707,0.54808,0.64631,0.62194,-0.44041 -0.83555,0.19104,0.565,-0.22507,-1.3766,-0.98668,-0.1933,-0.34522,-1.1152,-0.69303,-0.10792,0.7342,0.4038,0.072349,0.44286,-0.21212,0.41849,0.064176,0.38524,0.24518 -1.0866,1.2491,-0.47686,0.14635,-2.2001,-0.49663,-0.44135,0.35622,-1.1228,-0.5368,0.020389,0.41911,-0.56937,0.41218,0.27464,0.73974,-0.18416,0.73991,0.20073,-0.19451 -2.25,0.62799,-0.37753,-0.9886,-0.92614,-0.27706,0.48885,-1.2181,-0.79589,-0.40648,0.54681,0.2266,-0.16648,0.59952,0.16648,-0.16167,0.65297,-0.07323,0.46641,-0.14394 -0.796,0.24033,1.3325,0.92564,-2.6011,-0.65238,-0.48593,-0.2921,-1.0124,0.7505,-0.35083,0.048775,0.7576,0.199,-0.56594,0.24814,0.37195,0.57705,0.40018,0.03377 0.42126,-0.75058,0.50731,0.56405,-1.5077,-0.32442,0.6093,-0.24307,-1.3894,0.12453,0.43202,0.15397,0.1014,0.60701,0.093084,0.2222,0.19102,0.52241,-0.1501,-0.087448 -0.43351,0.90051,0.21058,1.2372,-1.8647,0.19635,0.14366,-0.31912,-0.17018,-0.15505,-0.39245,0.86386,-0.048804,-0.37231,-0.55282,0.0045143,-0.01494,0.2561,0.3333,0.11977 -0.86865,0.73864,1.3291,1.5153,-2.0395,-0.075691,0.45629,-0.69858,-1.0989,1.6358,0.16943,0.52876,0.13068,0.24192,-0.34839,-0.20536,0.31951,0.69357,0.21117,-0.29865 -1.541,0.93038,0.87113,1.2898,-1.6727,1.8151,1.2069,-0.14178,-0.45481,-0.20457,0.81792,-0.11922,-0.11442,-0.55597,0.6384,0.11531,0.65914,0.030688,-0.078025,0.4447 -1.1111,1.4171,-0.53289,0.45425,-2.5441,-0.69661,-0.1166,0.59475,-1.1625,-0.68772,0.237,1.3596,-0.31164,0.043891,0.34537,0.43743,-0.15,0.70723,0.4913,0.42467 -0.61613,0.27105,-0.19101,0.99485,-1.9089,1.2365,0.29157,-0.23501,-1.3508,-0.53718,0.3634,0.17262,-0.06905,0.15567,-0.67655,0.11128,0.23245,0.45431,-0.1086,-0.82509 -1.4179,1.4634,-0.3819,-0.080251,-2.4412,-0.89768,-0.033882,0.73981,-1.4218,-1.1141,0.17102,0.39836,-0.75531,0.17785,0.62367,0.63383,0.3003,1.1596,0.37592,-0.0047343 -1.1729,1.0452,-0.29175,-0.19661,-1.8041,-0.86003,-0.0089869,0.65586,-0.66241,-0.89112,0.076195,0.064551,-0.31856,-0.011151,0.56291,0.58129,0.34062,0.7967,0.34374,0.27328 -0.96072,1.2067,0.81779,1.7397,-3.0046,0.32083,0.42252,-0.18883,-0.58162,0.34289,0.1566,1.2431,0.14513,-0.88704,-0.036039,-0.33373,0.21992,0.21864,0.55302,0.25906 -0.88137,1.4341,0.75256,0.88448,-2.051,0.59826,0.6976,-0.54212,0.052466,0.47217,0.45625,0.44961,-0.083976,-0.40852,-0.1173,-0.22021,0.48995,0.14531,0.4534,0.1292 -2.1825,1.1179,1.1134,-0.18065,-2.4807,-1.5803,1.1868,-0.27155,-1.0442,0.19743,-0.2689,0.97044,0.10576,0.87052,0.38187,0.40686,0.15016,0.84064,0.84943,0.87428 -1.0822,0.83316,-0.6066,-0.36196,-1.8096,-0.081225,-0.33362,0.5988,-1.4609,0.26428,0.33123,0.36792,-0.40247,0.60582,0.30946,-0.29014,-0.14525,0.48843,0.46513,-0.27689 -2.2355,1.1819,1.1631,0.29641,-1.5781,0.45954,-0.12353,0.72561,-1.2731,-0.22979,0.61493,-0.32628,0.37914,-0.53049,0.24949,0.46872,1.3536,0.95573,0.39275,-0.11559 -0.70578,0.79399,-0.41926,0.96235,-2.12,0.72246,0.64839,-0.86316,-0.043229,0.055193,0.09391,1.3324,0.5023,0.4488,-0.23186,0.041097,0.48423,0.053975,-0.583,0.10754 -2.6848,1.3354,-0.20295,-0.96427,-2.5867,-1.1746,0.32982,0.57436,-1.9965,0.12403,0.6278,-0.034888,-1.09,-0.26624,0.62425,0.04246,0.45367,0.38871,0.72659,0.71152 -2.5856,2.1055,0.6708,0.78176,-3.1858,0.28661,-0.31677,-0.45942,-0.53708,-0.42505,0.50767,0.86601,0.77027,-0.048871,0.50729,0.52858,1.027,0.3925,0.3517,-0.15622 -1.3262,1.0877,-0.9141,-0.051108,-2.6264,-0.47972,-0.034525,0.2091,-2.0014,-0.6134,0.10806,0.6092,-0.79311,1.0548,0.34794,0.94142,0.2574,0.47952,0.37674,0.057174 -1.0324,1.4891,1.376,1.1201,-1.8343,-0.19458,0.23609,-0.49428,-0.65499,1.1708,0.37488,0.85308,-0.26737,-0.1804,-0.0074977,0.14085,0.39174,0.89986,0.47013,-0.32839 -0.41993,0.51406,0.97634,0.16037,-1.8698,-0.73009,0.44073,-0.62591,-0.88818,-0.022261,-0.8561,0.16061,-0.3121,0.49796,0.24237,0.51548,0.72484,0.29694,0.28123,0.43756 -3.207,1.4621,0.73255,-0.79529,-1.222,-0.2198,0.28096,-1.3088,-1.215,0.16563,0.77421,0.27516,-0.052116,0.17495,0.23362,-0.27063,1.2588,0.021839,0.38177,-0.24967 -1.1544,1.1764,0.46008,0.88675,-2.3276,0.50677,-0.4522,0.63031,-0.79508,-0.35413,0.01332,0.64766,-0.064663,-0.84533,0.032788,0.75002,0.68955,0.64602,0.27611,0.11758 -2.1942,1.5763,-1.0512,-0.23132,-3.4819,-0.59783,0.5947,0.53374,-1.8148,-0.017903,0.1362,0.47374,-0.25358,0.6028,0.11977,1.1533,0.79122,0.21997,0.86146,0.19933 -2.3231,1.3812,-0.24168,-0.50438,-2.6826,-0.63141,-0.22306,0.24867,-1.4567,-0.59184,0.17136,0.71798,-0.66659,0.47319,0.79568,0.35986,0.20318,0.61167,0.60319,0.11576 -1.7187,0.68166,0.45271,-0.63292,-1.2873,-0.85753,-0.26797,0.36977,-1.0286,0.097343,1.0647,-0.021905,-0.45022,-0.39587,0.76706,-0.51221,0.40949,0.36969,0.83544,-0.13184 -1.1398,1.3301,1.2069,0.57456,-1.1375,-0.15987,0.23149,-0.54236,-0.38533,0.89264,0.62473,0.53822,-0.23221,0.4656,0.21783,0.46025,0.40539,0.31504,0.088462,-0.50828 -0.38448,0.50067,-0.57405,0.49244,-1.2137,-0.18001,0.78055,0.1223,-0.85176,-0.019889,0.10654,1.2071,0.032054,0.22139,-0.063692,0.19806,0.1902,-0.10182,-0.2232,0.55333 -2.0939,0.56806,-1.2725,0.24754,-2.2537,0.82941,0.026708,-0.0088836,-0.64327,0.60214,-0.15004,0.3587,0.74934,1.0089,0.11193,0.023546,0.54879,0.063823,-0.6464,-0.50999 -2.5731,1.0701,-0.20335,-0.7112,-1.1922,-0.073875,-0.37138,-0.81595,-1.3423,-0.46596,0.91411,0.82118,0.074465,1.1737,0.38458,0.40651,0.3736,0.0007946,0.69585,-0.56706 -1.8492,0.69439,-0.20776,-0.7027,-1.4335,-0.76911,-0.38601,-0.018856,-1.4724,0.661,1.4119,0.65442,0.44475,0.0062684,0.84092,-0.8519,-0.21537,0.45531,0.44058,-0.55098 -1.0227,1.5284,0.51761,0.84789,-2.1258,0.16799,-0.13577,-0.13509,-0.076971,-0.39095,-0.28624,0.4057,0.032993,-0.60482,0.0075096,0.37575,0.61819,0.46035,0.56672,0.1891 -1.0768,1.8088,1.159,1.0768,-1.9785,-0.2196,0.39027,-0.75343,0.012418,0.47652,0.32862,0.89654,-0.038159,-0.080054,0.15651,0.36058,0.42948,0.49741,0.4449,-0.092338 -2.0671,1.309,-0.33708,-0.26999,-2.8088,0.80411,0.40021,-0.50439,-1.6475,-0.36312,-0.03167,0.96139,0.17657,0.83955,0.59023,0.31022,1.3731,0.12077,0.56846,0.18322 -0.0055199,0.26971,-0.0054568,1.3287,-2.0754,-0.42975,1.1251,-0.25557,-1.2413,0.27863,-0.045022,1.6433,-0.72617,0.35964,0.33618,0.057928,-0.084369,0.43213,-0.12624,0.62192 -1.5426,0.80278,1.489,1.3106,-2.9969,-0.83914,0.51205,-1.2803,-0.69441,0.46767,-0.26445,0.015459,0.50678,0.65079,-0.021629,0.50892,0.87765,0.22772,0.33125,-0.3823 -1.5803,0.86522,0.49524,-0.56583,-1.7714,-0.32733,-0.21127,-0.17729,-0.50384,-0.11626,0.54049,-0.19865,0.3358,0.078826,0.68079,0.50917,0.60292,0.10561,0.18006,0.10293 -1.1058,1.3888,-0.38938,0.19541,-2.3139,-0.75613,-0.35393,0.18765,-0.71034,-0.68306,-0.076894,0.738,-0.09205,0.081183,0.45563,0.50688,0.032404,0.85005,0.3478,-0.045211 -1.1422,1.2654,-0.71184,0.92525,-1.5842,-0.059838,0.43074,0.182,-1.0436,-0.42268,-0.71033,1.3146,-0.16357,0.62138,0.12896,0.23391,0.41771,0.53552,-0.54465,0.71019 -1.437,1.9798,-0.21035,0.90988,-1.8744,-0.22641,0.26406,-0.29548,-0.17103,-0.44983,0.50216,1.2252,0.42822,0.40849,0.39116,0.053824,-0.3437,0.38562,-0.48455,-0.29466 -0.32332,0.40641,-0.1782,1.3223,-2.211,-0.21597,1.7178,-0.30248,-1.2946,0.85974,-0.24552,1.3891,0.20399,0.37472,0.25055,0.21719,0.91994,0.19368,-0.20185,0.8171 -0.97588,1.176,-0.5539,0.80189,-2.1766,0.046932,0.17056,0.11613,-0.74756,-0.38089,-0.40846,1.1882,-0.73032,0.3259,0.20979,0.59874,0.17041,-0.018374,-0.063246,0.43634 -1.9167,1.0341,0.058728,-0.010467,-3.0428,-0.53157,-0.75786,0.54046,-1.3598,-0.099965,0.023964,0.21101,-0.45362,0.0078777,0.20456,0.18839,-0.16519,0.42768,0.4714,0.11647 -0.37012,0.028362,0.03543,1.9679,-3.0128,0.9243,1.7391,-0.32868,-1.3159,-0.57542,0.2965,1.2543,-0.02865,-0.11031,-0.057956,0.26498,0.75053,0.26625,0.18883,-0.10059 -1.3149,1.5654,0.22528,1.3191,-1.8377,-0.21707,0.84139,-0.54568,-0.57296,0.63779,-0.50658,1.5679,-0.52398,0.47603,0.063902,-0.17883,0.39131,0.24749,0.028279,0.37238 -1.9673,1.2085,-0.34703,-0.26497,-1.4255,-0.79863,-0.64694,0.45608,-1.3112,0.39395,1.2377,0.31876,-0.078977,0.35005,0.72821,0.077914,-0.41051,0.87372,0.3226,-0.44899 -1.3299,1.5137,0.50278,1.536,-2.6983,-1.0481,1.2036,-0.96415,-0.63294,1.477,-0.311,0.96857,-0.22477,0.70379,0.16731,0.34945,0.24114,-0.081804,-0.22078,-0.18802 -1.9557,1.8428,1.6078,1.3614,-1.4223,0.081115,0.94319,-0.73579,-0.92908,1.1447,1.0809,0.823,-0.27493,0.22899,0.34742,0.06059,0.2782,0.66239,0.36758,-0.48125 -2.0585,1.512,1.2428,0.092692,-2.4772,-1.2544,0.56421,-0.92792,-0.85145,0.28029,0.11486,0.88205,0.22888,0.98342,0.15104,0.64788,0.66787,0.52874,0.48707,-0.28799 -1.4487,1.5742,-0.17184,0.78548,-2.4776,-0.30261,0.22608,-0.059203,-0.9971,-0.50312,-0.43209,1.8083,-0.63473,0.51887,0.69679,0.36197,0.16605,0.56236,0.44929,0.67183 -1.8614,0.12325,2.0887,0.10182,-2.7628,-0.44196,-0.45818,0.16797,-1.8986,0.49037,0.98239,0.7093,0.8719,-0.23371,-0.21673,-0.19824,1.0566,0.2991,0.0077954,0.0051984 -0.74062,1.3739,0.80793,1.793,-2.2307,-0.11432,0.54976,-0.89957,-0.20852,0.77635,-0.00098956,1.3376,0.070268,-0.094764,-0.32072,0.1729,0.12351,0.53479,0.4423,0.014734 -1.1734,0.87329,-0.4442,0.85489,-1.9383,1.019,0.22669,0.12362,0.21955,-0.084108,0.040979,0.08687,0.65907,0.44772,-0.39078,0.16886,0.32707,0.21788,-0.37296,-0.37702 -1.5123,1.5695,1.7385,0.3108,-1.209,-0.64752,0.81086,-0.95279,-0.6223,0.76349,0.58087,0.31,0.2323,0.42121,0.57856,0.70396,0.69703,0.78282,0.029448,-0.36034 -2.0103,1.0951,0.047108,-0.35003,-0.83474,-0.13225,0.56459,0.53121,-0.43939,-0.96777,1.3986,0.63496,0.74048,0.20807,1.2802,0.30417,0.31197,-0.4326,0.72706,0.31994 -1.2812,0.84681,0.87502,0.42578,-2.1843,-0.50536,0.75071,-0.63069,-1.6749,0.20696,-0.40512,1.2729,-1.7163,0.90173,0.99216,0.26093,0.75245,0.52937,0.59305,0.49149 -2.0585,2.1336,0.18568,0.45785,-1.9822,-0.60436,0.039646,0.015778,-0.55054,-0.4315,1.015,1.8399,0.37641,0.18612,0.98418,0.26557,-0.1115,0.74227,0.11241,0.25933 -1.2979,1.7618,0.44986,0.87869,-2.4023,-0.4102,-0.038335,-0.11808,-0.90462,-0.2015,-0.28348,1.8526,-0.68628,-0.047108,0.5796,0.14522,0.55045,0.82374,0.52408,0.46602 -2.0016,1.4867,0.07056,0.38296,-2.2216,0.49982,-0.18967,0.072917,-0.29479,0.094607,0.10859,0.57901,0.12586,-0.08414,0.015091,0.4659,0.56522,-0.11385,0.0097598,-0.62492 -1.0177,1.306,-0.35215,0.47175,-2.4514,-0.53799,-0.065534,0.6044,-1.4859,-0.81473,-0.0020176,1.0626,-0.70475,0.27507,0.61031,0.40383,0.049337,0.7759,0.24632,0.3327 -3.6454,1.9915,0.35205,-0.46864,-2.0744,-0.34907,0.069695,-0.42468,-1.2201,-0.5921,1.1029,1.3306,0.83721,0.88277,1.001,0.29799,0.54353,-0.23718,0.33207,-0.39258 -1.5681,0.76476,0.56823,-0.71059,-0.81376,-0.93466,0.13803,0.32065,-0.76975,0.098971,1.3425,0.15538,0.074134,-0.45065,0.69868,-0.27614,0.45455,0.20455,0.70337,0.42211 -1.5822,1.9383,0.1993,0.26107,-3.136,-0.24766,-0.078675,0.21722,-0.83064,-0.015449,-0.33248,-0.024923,0.11981,0.18135,0.34956,0.57391,0.92894,0.24213,0.381,-0.26013 -1.6025,1.3184,1.4667,1.3667,-1.304,0.6641,0.70348,-0.20479,-1.0625,1.2811,1.1313,1.3538,0.071863,0.45636,0.15784,0.58267,0.026034,0.53842,-0.45087,-0.28836 -1.186,1.226,0.012558,-0.071885,-1.447,-0.56678,-0.049822,0.54297,-0.14243,-0.79222,0.76784,0.45663,0.33557,-0.0083336,0.64392,0.47633,0.24798,0.58461,0.30224,0.043902 -0.20684,0.88506,-0.21886,0.49836,-2.0007,0.028453,0.79822,-0.33646,-1.4129,-0.54971,0.058036,0.90396,0.060837,0.13994,0.1114,0.65159,0.67967,0.26966,0.23381,0.26172 -0.87034,0.79629,0.021648,0.23307,-1.9396,0.061851,0.17147,0.030591,-0.75041,-0.80498,-0.62344,0.2205,-0.355,0.17194,0.20793,0.72157,0.2203,-0.057885,0.27881,0.55113 -0.43271,0.63752,-0.98126,0.72758,-1.6785,-0.14021,0.70354,0.67466,-0.55605,-0.22316,-0.46485,1.0036,0.53521,0.071939,-0.46588,0.36683,0.57171,0.29801,-0.29483,0.62768 -1.0414,1.0779,1.7488,0.28993,-2.0516,-0.61466,-0.21399,-0.65443,-0.73499,0.91705,0.53425,0.5082,0.026866,0.18418,0.094001,0.91883,0.57657,0.49564,0.15777,-0.48014 -1.357,1.1998,1.2795,1.1864,-3.1892,0.43463,0.33444,-0.092513,-1.2849,-0.054935,-0.44695,0.84755,-0.6221,-0.53842,0.32955,-0.074462,0.83937,0.45292,0.99204,0.93472 -0.95385,1.2616,-0.63336,0.41792,-2.1121,-0.40674,-0.039299,0.37169,-0.98848,-0.46395,-0.20685,1.1221,-0.32027,0.23407,0.37253,0.33654,-0.1086,0.37729,-0.10826,0.084559 -2.4352,1.1017,-0.60366,-0.6176,-0.98023,-0.36766,0.16779,-0.026203,-0.63374,-0.50666,0.91646,0.0623,0.73628,0.54157,1.2055,0.51135,0.88751,0.05053,0.12067,-0.10458 -0.49619,1.0278,0.70514,1.1444,-2.4965,0.53668,0.0084534,-0.13588,-0.66997,-0.077139,0.15326,0.7162,-0.27407,-0.78552,-0.2546,0.15017,0.16711,0.24351,0.75946,0.35261 -0.66732,1.3563,-0.047764,1.0994,-2.3605,0.29361,0.72294,-0.21398,-0.57073,-0.16896,-0.5065,0.83923,-0.5095,-0.0029562,-0.11839,0.32853,0.74599,-0.023863,0.39984,0.51316 -2.0061,0.70325,-0.55204,-1.0574,-0.77041,-0.83482,0.46041,-1.0105,-1.2169,0.27283,0.87478,1.0473,0.03721,0.25435,0.040078,-0.70125,-0.48519,-0.023539,0.21702,0.11229 -1.8025,2.1844,0.26703,0.53342,-2.178,-0.85557,0.24772,-0.17943,-0.66876,-0.36466,0.35842,1.8238,0.023986,-0.16655,1.0145,-0.03826,0.18604,0.65064,0.44874,0.59341 -0.64825,0.90179,0.13596,0.35497,-1.7464,0.060963,0.18479,-0.087349,-0.58898,-0.73652,-0.61253,0.68852,-0.83853,-0.17157,0.28118,0.57919,0.71008,0.37007,0.20213,0.32953 -2.6715,1.9468,-0.23777,0.013672,-2.7623,-0.93514,0.18707,0.26198,-1.6371,-0.79532,0.12924,1.8369,-0.11293,0.34835,0.93956,-0.048257,0.43651,0.45537,0.38462,0.19837 -0.067516,0.43546,0.095253,0.78273,-1.3486,0.097929,0.79647,-0.50687,-0.44526,0.55557,-0.3199,0.8712,0.098172,0.40519,-0.14634,-0.34392,0.36248,0.071998,-0.014502,0.22908 -1.8989,1.5061,1.8996,1.0441,-2.231,0.080622,0.48476,0.23227,-0.35857,0.11808,0.10554,0.66741,-0.13012,-0.63707,0.10438,0.15371,0.90877,0.52737,0.6535,0.33219 -1.2343,1.5446,0.99677,0.68649,-2.3313,-0.83978,0.54247,-0.45,-0.62927,0.44266,-0.296,0.93569,-0.81523,0.29313,0.79441,0.22519,0.83688,0.57884,0.81902,0.70139 -1.1555,0.66132,-0.75075,1.8704,-2.3623,0.63925,1.1481,-0.33962,-1.0976,0.18414,-0.18232,1.2274,-0.38378,0.72557,0.13143,0.4631,1.1356,0.036176,-0.44314,1.0986 -1.8208,1.7497,0.0047214,1.0891,-2.3195,0.39858,-0.17525,-0.30892,-0.050537,0.14528,0.4499,1.3718,0.40534,0.21314,0.31617,0.45476,0.37422,-0.045768,-0.27549,-0.23785 -2.1524,1.2749,-0.37148,-0.40305,-1.3288,-0.42532,-0.052321,-0.33141,-0.6793,-0.6425,1.4034,-0.025184,0.44333,0.89351,0.76931,0.1972,0.39388,0.033803,0.33847,-0.5267 -0.58156,0.96009,0.13581,0.93738,-1.8768,-0.77718,0.14226,-0.53652,-0.67305,-0.24871,-0.49438,1.7219,-0.33893,-0.17001,0.40758,0.043467,0.067643,0.44852,0.41074,0.37272 -1.4015,1.5287,1.8161,1.4176,-2.772,-0.68604,0.2908,-0.60162,-0.89105,1.134,0.060018,1.1788,-0.24335,0.093711,0.49128,0.64934,0.52638,0.84417,0.59462,0.030273 -2.4886,2.1017,-0.4286,0.78676,-2.92,-0.67005,-0.017297,0.2364,-0.90204,-0.47935,0.50282,1.7745,0.1291,0.27581,1.1623,0.64643,0.027042,0.76368,0.21824,0.24426 -0.63657,1.2024,0.66403,0.98063,-1.9973,-0.13762,0.38708,-0.5118,-0.80507,0.41112,-0.46198,0.89057,-0.75567,0.13694,0.23742,-0.0018204,0.45126,0.53599,0.73481,0.23088 -2.1505,1.3436,-0.64089,0.75737,-2.4965,-0.33945,0.19976,1.2168,-2.552,-0.3342,0.52331,1.3883,-0.054788,0.35084,0.62137,-0.25091,0.13422,0.67674,-0.54585,-0.20891 -3.2831,0.92968,0.14613,-1.483,-1.1476,-1.0186,0.91027,0.73128,-1.1472,-0.040225,1.9089,0.30852,0.80738,0.29414,0.4698,0.73984,0.62446,0.22604,0.28491,0.47918 -2.9891,1.6147,-0.32536,-0.6035,-2.3647,-0.85188,-0.1995,-0.25182,-1.5379,0.18556,0.59333,0.84278,-0.058561,0.56482,0.59533,-0.24253,0.34745,0.38936,0.0088039,-0.78397 -1.5583,1.5944,0.56478,0.75562,-1.8024,0.53051,0.047375,-0.28586,-0.077759,-0.55474,0.5104,0.050181,0.31081,-0.39039,0.48363,0.062782,0.73672,0.40469,0.22603,-0.41702 -1.4766,0.64383,-0.1628,-0.52381,-1.4463,-0.32286,0.32625,-0.045373,-1.1732,0.048714,0.15126,-0.13761,-0.92943,0.21377,0.31015,-0.20581,0.71815,0.24742,0.40771,0.20391 0.024291,-0.21518,0.92946,0.99114,-2.2684,0.10118,0.39977,-0.094791,-1.6385,0.44144,0.51113,0.45549,-0.48075,0.34668,0.34895,0.51338,0.29079,0.11952,0.57165,0.11061 -0.93645,1.1519,1.1823,1.1083,-2.0061,0.13667,0.48222,-0.27207,-0.20799,0.099671,0.11229,0.65463,-0.7574,-0.69857,-0.10097,0.086211,0.6018,0.2936,0.66871,0.29204 -0.55239,0.75594,0.50708,0.89575,-1.4871,0.57598,0.49457,-0.44997,-1.4114,0.15638,0.018669,1.0494,-0.80261,-0.20364,0.21056,-0.16776,0.41427,0.27545,0.34024,0.12059 -2.1196,1.4059,-0.55968,-0.095822,-2.5561,-0.95776,-0.70677,0.72614,-1.8481,0.18507,0.76525,0.43917,-0.69508,0.43021,0.42087,0.14784,-0.36861,1.0904,0.39463,-0.25417 -2.2159,1.2085,1.5425,1.2995,-2.5638,0.69133,1.5774,-0.83989,-0.58715,0.67079,1.1397,-0.2334,0.23119,1.1135,0.3033,0.7928,0.65076,-0.2407,-0.40852,-0.35895 -1.8954,1.762,0.77761,0.2163,-1.7733,-0.74067,0.38248,0.07703,0.050959,-0.71867,0.2852,0.99663,0.29375,-0.30007,1.0631,0.44271,0.77854,0.54435,-0.0055185,0.99014 -0.9188,0.84728,-0.28099,0.030058,-1.9053,-0.14866,-0.0090597,0.026924,-1.0818,-0.76722,-0.20636,0.019265,-0.80948,0.3437,0.29715,0.89693,0.4125,0.36969,0.19772,0.12133 -2.2207,1.936,1.471,0.24306,-1.44,-0.6116,1.0058,-0.74634,-0.50662,0.17726,1.1471,1.0351,0.087667,0.94512,1.3794,0.74795,0.64864,-0.028518,0.1072,0.17689 -0.23576,0.86528,0.14794,0.77859,-1.8818,0.2902,0.48728,-0.46743,-0.59199,-0.18004,-0.33912,0.82717,-0.4381,-0.16314,-0.27685,0.33975,0.45524,-0.31984,0.502,0.13683 -0.95342,0.66973,-0.18925,0.25222,-2.4456,0.521,-0.0098276,-0.15007,-1.5943,-0.50074,0.15497,0.81672,-0.82474,0.89938,0.58417,0.53261,0.26674,0.81762,-0.079356,-0.43065 -0.26104,0.85111,-0.018577,0.85273,-1.7692,0.16627,0.60354,-0.33792,-0.45264,0.087398,-0.17665,0.74521,-0.15642,0.18177,-0.22904,0.088768,0.31564,-0.11312,0.10927,0.20259 -0.83892,0.73394,0.11495,0.72606,-2.1034,1.0316,0.078104,0.26909,-2.1421,-0.35788,0.51141,-0.18039,-0.6349,0.19212,-0.30938,0.59207,0.71509,0.76534,0.36592,-0.53303 -1.3026,1.2375,-0.74472,0.91787,-2.9013,-0.23173,-0.234,0.19238,-0.87397,-0.52996,-0.70399,0.9487,-0.19453,0.45492,0.089138,0.59747,-0.049978,0.29383,-0.20487,0.03528 -2.658,1.5627,0.23415,-0.41957,-1.0685,-0.26138,-0.24521,-0.11624,-0.83922,-0.81672,1.0023,0.40927,0.80772,0.90723,1.1989,0.50092,0.61518,0.41744,0.36863,-0.34307 -1.1011,1.1691,-0.27738,-0.34105,-2.1692,-0.56788,-0.23948,0.40559,-1.2031,0.10742,0.32294,0.1559,-0.72255,0.075376,0.34018,0.29581,0.0026405,0.31689,0.67958,-0.23291 -0.38618,0.65493,0.20673,0.75344,-1.6868,-0.011846,0.50611,-0.32472,-0.55403,-0.28523,-0.71326,0.83851,-0.62577,-0.068037,0.082026,0.49553,0.50894,0.14128,0.30081,0.88814 -0.86403,0.48346,1.1598,1.1595,-1.6547,-0.35972,0.92221,0.08053,-2.1452,1.1977,-0.28058,0.90264,-0.36808,0.28584,-0.19178,0.29053,0.43951,0.81985,-0.18558,-0.16908 -1.1121,1.2036,1.2126,1.0238,-2.1863,0.0078091,0.29089,-0.20196,-0.1559,-0.14132,-0.19304,0.76949,-0.2318,-1.278,-0.25911,-0.090042,0.6938,0.35426,0.73258,0.63267 -1.7767,1.6205,1.2808,0.2151,-1.4705,-0.88351,0.70651,0.15759,-0.26509,0.13787,0.54716,0.80571,0.17721,0.31109,0.85988,0.21376,0.43009,0.75627,0.4272,0.36439 -1.3484,1.5922,-0.41429,0.0415,-2.09,-0.73235,-0.18775,1.0654,-0.84332,-0.75493,0.36011,0.43273,-0.061274,-0.13554,0.47775,0.40633,-0.080508,0.90743,0.56129,-0.24668 -1.3302,0.19379,1.3619,0.96441,-2.8936,-0.1056,0.5234,-0.80689,-1.5688,0.81364,-0.16703,-0.58347,-0.38756,0.078218,0.12749,-0.56265,0.79471,0.3666,0.5317,-0.39466 -1.4044,0.97351,0.08043,0.82436,-3.3732,1.2887,0.96724,-0.38353,-1.2759,-1.0303,-0.094741,0.048364,-0.060945,-0.060551,-0.31684,0.22515,1.4222,-0.094346,0.62576,-0.10297 -1.2662,1.657,1.1238,0.91441,-1.8803,-0.3639,0.96725,-0.70225,0.085847,0.71242,0.51284,0.35533,0.18305,0.75401,0.25992,0.7415,0.54228,-0.18938,0.11133,-0.19748 -2.8619,1.0507,2.8116,0.71511,-2.322,-0.1915,0.49873,-1.2321,-1.6964,0.92211,1.1279,0.44066,0.82099,0.44026,0.076006,0.27334,0.73749,-0.0011418,0.087724,-0.17661 -1.1945,1.4718,1.0549,0.84722,-1.9179,-0.34652,0.40877,-0.84659,-0.55846,0.86881,0.085416,0.87743,-0.48967,0.18336,0.13313,-0.10836,0.57162,0.53664,0.78006,-0.091964 -0.92344,1.1023,1.4457,0.38878,-1.5136,-0.16372,0.14829,-0.70793,-0.94128,1.1133,0.621,0.59894,0.33134,0.44926,-0.24014,0.70839,0.2512,0.86018,-0.33036,-0.67646 -0.93571,1.2934,0.229,0.7596,-2.1394,-0.91734,0.31382,-0.10547,-1.1585,0.47878,0.27777,1.8721,-0.60924,0.12872,0.76549,-0.32843,-0.25492,0.69419,0.01702,0.4818 -2.8283,2.0047,-0.17232,0.31941,-2.3457,-0.54368,0.036103,-0.24647,-0.63306,-0.79818,1.5313,1.9349,0.81727,0.53961,1.1421,0.66723,0.20176,0.25876,0.186,-0.079562 -1.0588,1.5496,-0.22484,0.81795,-1.8278,-0.55,0.48086,-0.31409,-0.74672,-0.27392,-0.32135,1.7742,-0.57848,0.23384,0.46451,0.14343,0.074913,0.43158,0.15973,0.66686 -0.76857,0.50584,1.481,1.0903,-2.4076,0.14853,0.53206,-0.27067,-1.6246,1.2987,1.1205,0.15357,-0.2912,0.11711,0.2657,0.011287,0.23823,0.86399,-0.33355,-0.59523 -0.61289,0.62309,1.0375,0.55336,-1.7245,-0.52024,-0.27045,-0.8298,-0.87656,0.90689,-0.21025,0.73608,-0.29732,0.56454,-0.20244,0.64481,0.29861,0.70314,0.26679,-0.28876 -1.5319,0.74302,-0.16164,-0.69177,-1.5456,-1.1556,0.35471,0.80688,-0.78416,-0.22581,0.62893,-0.41948,-0.25776,0.039338,0.42756,0.27411,0.38649,0.87455,0.42917,0.49596 -1.8524,1.1991,-0.23396,0.17603,-1.4039,-0.40817,-0.21347,0.49608,-0.70246,-0.44832,1.046,1.25,0.82015,0.077261,1.2924,-0.21083,-0.12016,0.26325,-0.0022871,-0.10448 -1.3567,1.806,0.059587,0.85093,-2.5834,-0.90076,0.48925,0.125,-1.0475,-0.10851,0.27884,1.7874,-0.59199,0.03167,1.1983,0.089171,-0.12193,0.62603,0.35644,0.86564 -1.3945,1.7789,1.3405,0.99844,-2.3248,0.24038,0.44677,-1.0317,-0.42867,0.9959,0.9678,0.97927,0.071079,0.32839,0.24048,0.27045,0.42438,-0.13103,-0.17237,-0.52077 -2.7698,2.0443,0.098024,0.39694,-3.0212,0.85157,0.064386,-0.66362,-0.9012,-0.17785,0.75502,0.68495,0.60915,0.65859,0.62794,0.086192,0.85027,0.46532,-0.2127,-0.8289 -1.7258,2.0651,0.72346,0.8786,-2.0103,0.27757,0.79564,-0.69853,0.16868,0.17629,0.78311,0.97129,0.078826,0.16636,0.96162,0.38782,0.69461,-0.18425,0.090906,-0.091874 -1.9378,1.9081,-0.45932,0.3583,-2.9762,-0.88291,0.097233,0.2454,-1.2465,-0.31071,0.33163,1.6287,-0.0085199,0.2473,0.61076,0.46829,0.30523,0.54051,0.39273,0.44979 -0.89014,1.006,1.1509,0.71367,-1.1793,0.4014,0.1577,0.13273,-0.36623,0.68,1.0767,0.69568,-0.21964,-0.33614,0.20891,0.35077,0.14243,0.18629,0.16498,-0.13138 -1.2113,1.6573,-0.0050511,0.8552,-2.054,0.28492,0.21099,-0.15668,0.054578,-0.017476,-0.019242,0.64192,0.30012,-0.17109,-0.070503,0.31553,0.45471,0.13236,0.14586,-0.035475 -0.87736,1.3198,1.2959,0.61954,-1.5359,-0.31758,0.17523,-0.4482,-0.46581,0.77239,0.22466,1.2784,-0.25314,0.1836,-0.49519,0.19054,0.40108,0.83988,0.095247,-0.4164 -2.2737,1.7875,1.2227,1.8036,-1.7643,0.85098,0.83759,-0.66199,-0.89266,1.0513,1.022,1.4237,0.354,1.0018,0.37481,0.38813,0.12178,0.074731,-0.48217,-0.30501 -2.2862,1.3195,0.34663,-0.65872,-2.3269,-1.1119,-0.35792,-0.20788,-1.3816,0.6421,0.73502,0.0050337,-0.064686,-0.2486,1.0259,-0.38139,0.13544,0.57955,0.57957,0.4834 -1.9976,1.6481,-0.60757,0.41398,-3.3545,0.33546,-0.38263,-0.053588,-0.8458,0.065561,-0.15434,0.30298,0.40818,0.45393,0.17381,0.25117,0.40427,0.22074,-0.058082,-0.85284 -0.63301,0.64631,1.3871,1.3494,-2.0776,-0.54565,0.67824,0.22207,-1.7748,0.70285,0.38749,0.34513,-1.1777,-0.26528,0.17463,0.44475,0.58027,0.55522,0.52912,-0.1552 -1.4704,0.70983,1.9534,1.4603,-2.339,-0.20633,0.58552,0.060334,-0.74575,0.52689,0.54562,-0.53874,-0.86879,0.032359,0.31658,0.45975,0.68088,0.75731,0.35051,0.25925 -1.5752,1.8377,1.6816,1.0768,-1.8599,-0.48765,0.62068,-0.48452,-0.38716,0.93427,0.59907,0.9223,0.10034,0.28508,0.80926,0.8732,0.48318,0.79846,0.45984,-0.18377 -2.1797,1.1324,0.88868,0.63024,-2.3023,0.079758,0.22839,0.2082,-0.11634,-0.57168,-0.69638,0.35328,-0.03409,-0.55875,-0.36,0.078635,1.1353,0.17636,0.31378,0.78064 -3.3395,1.8107,1.6938,1.8382,-3.2358,-1.0589,1.247,-0.72664,-1.9222,0.74087,0.80968,1.0913,1.1863,0.47002,0.96328,0.5922,0.58933,-0.15305,0.59033,0.73569 -0.9457,1.0166,1.5443,1.4587,-1.5289,0.044506,0.58522,-0.32686,-0.81957,1.5535,0.91074,0.33061,0.65483,0.4127,-0.3384,0.60355,0.23214,0.55057,-0.23276,-0.54856 -1.4816,1.6606,-0.44383,0.24401,-2.7099,-0.18453,0.23805,0.13968,-1.0754,-0.14784,-0.26657,1.365,-0.38062,0.47507,0.41323,0.55074,0.43664,-0.043602,0.36169,0.26335 -1.5058,1.4643,-0.36717,0.37169,-2.1392,-0.10007,-0.19443,0.052159,-0.11171,-0.20508,0.10499,0.80688,0.45832,0.33414,0.68795,0.39962,0.097916,0.29322,-0.0098993,-0.40729 -2.1129,1.3594,1.9025,0.48982,-2.2498,-0.96092,0.064461,-1.1804,-1.0953,0.91375,0.3955,0.42877,0.28788,0.69044,0.21505,0.12959,0.54423,0.65934,0.49933,-0.30009 -1.715,1.5466,-0.18125,0.36638,-2.5778,-0.22849,-0.53319,0.087691,-1.152,-0.26434,-0.24916,1.2815,-0.42708,0.39366,0.54054,0.36197,0.1644,0.5219,0.065317,0.095077 -1.5351,1.1241,-0.084743,-0.35722,-1.5095,-0.84564,-0.070989,0.47508,-0.70116,-0.29315,0.01435,-0.26185,-0.27152,0.42792,0.56591,0.25378,0.51642,0.79621,0.29807,0.39411 -1.7267,1.9067,0.57725,1.021,-1.5376,0.12486,0.4368,-0.58832,-0.26568,0.38302,0.79452,1.4809,0.209,0.82204,0.85654,0.58834,-0.058897,0.09904,-0.1274,-0.087324 -0.15619,-0.069428,1.1126,0.68821,-1.9757,-0.40051,-0.029547,-0.35571,-1.0311,0.40352,-0.13403,-0.01451,0.038758,-0.12343,-0.13892,0.22531,0.051762,0.38961,0.79174,-0.032898 -1.3096,1.592,-0.9189,0.60822,-2.4453,-0.26658,-0.050028,0.2636,-1.3231,-0.84018,-0.4038,1.2971,-0.46447,0.41579,0.37012,0.62426,-0.13003,0.48774,-0.1984,-0.02851 -1.2983,0.96768,-0.25127,-0.033066,-1.5241,-0.34461,-0.44836,0.75271,-0.87967,0.29942,0.92313,-0.11322,-0.20976,0.22596,0.44402,0.28498,-0.056014,0.58524,0.228,-0.53783 -0.83565,0.51398,1.0075,1.2119,-1.8916,-0.081707,2.0194,-0.76103,-2.0323,-0.30719,0.12442,0.70684,-0.88854,0.55254,0.85914,-0.2966,0.95381,0.50249,0.38791,0.27414 -1.0566,1.0306,1.6443,0.88289,-2.4694,0.14364,0.33725,0.19718,-0.94746,0.7935,0.23207,0.28599,-0.30803,-0.2588,0.17936,0.418,0.99691,0.33719,1.0226,0.6464 -1.0949,1.4267,1.8008,0.74005,-1.4066,-0.2647,1.0145,-0.62669,-0.81089,0.55914,0.67639,-0.16624,-0.16792,0.07128,0.30799,0.69145,0.71257,0.51616,0.28596,-0.1525 -1.1163,0.90407,1.3821,1.2146,-1.3844,0.41876,0.73296,-0.79902,-0.60667,0.9652,1.1908,0.26089,-0.20772,0.3398,-0.039831,0.54004,0.40589,0.61015,-0.28274,-0.59131 -0.72124,1.0067,1.454,1.1485,-2.0968,0.011409,0.41091,0.027207,-0.51143,0.68993,0.43797,0.60017,-0.27638,-0.87514,-0.056744,0.30424,0.46756,0.46805,0.85712,0.41846 -2.3017,0.11613,-0.41883,-0.52829,-2.2742,-0.22626,0.39161,0.14604,-2.1776,0.17174,-0.2041,0.47855,-0.52985,0.076701,0.061022,-1.0195,0.27055,-0.47561,0.028632,0.42246 -1.7592,1.0732,2.046,0.48222,-2.0531,-0.14621,-0.059073,-0.55221,-1.3339,1.3978,1.1359,1.0409,0.13313,0.21208,0.30739,0.54464,0.66289,0.68105,0.022941,-0.24687 -0.79401,0.79133,0.10227,0.82334,-2.0589,0.97174,0.52676,0.10872,-1.2718,-0.6656,-0.0032916,-0.28721,-0.31759,-0.021478,-0.62546,0.50165,0.91344,0.73352,0.31012,-0.3456 -1.0156,1.4056,0.38572,0.97489,-2.2659,0.074984,0.13761,-0.44968,-0.17171,0.069344,-0.27855,1.2433,-0.51779,-0.67167,-0.052684,0.098167,0.29414,0.0085785,0.29865,0.16051 -0.51723,0.36723,-0.90989,1.1223,-2.0428,0.63774,0.85996,-0.0015461,-1.3617,-0.70243,0.34956,1.2781,0.21911,0.54942,-0.26839,0.68715,0.28374,0.58456,-0.65185,0.30324 -1.2522,1.1116,-0.31069,0.74383,-2.0492,-0.30575,-0.40675,0.46426,-0.89009,-0.67298,-0.63744,1.22,-0.52513,0.37931,0.31211,0.4141,-0.20338,1.0643,-0.22401,-0.21946 -1.4738,0.97408,-0.13421,-0.45453,-2.6413,-0.016855,0.29073,-0.35838,-0.31283,0.6596,-0.14905,-0.45771,0.04019,0.41079,-0.087438,-0.14072,1.0891,0.43634,0.48137,-0.24939 -0.89823,0.74021,0.50341,0.11054,-1.3907,-0.93066,0.88019,-0.61599,-1.7394,-0.69483,0.18684,1.0454,-0.12283,0.70627,0.73069,0.11866,0.59522,0.082973,0.7912,0.22574 -1.5994,1.6519,1.0586,0.86396,-2.1326,0.6316,-0.02625,0.26734,-0.94673,-0.053922,0.95312,1.2768,0.25148,-1.09,0.65892,0.22351,0.80025,0.56271,0.26075,-0.034864 -2.6069,1.3003,-0.58543,-0.83835,-2.1418,-0.8874,-0.30772,0.23969,-1.7817,0.68839,1.307,0.74444,0.48132,0.49906,1.081,-0.56379,-0.09835,0.46052,0.31,-0.48754 -0.89587,0.89647,-0.70709,0.30322,-2.4007,-0.17845,-0.57569,0.404,-1.6868,-0.020782,0.25191,0.88173,-0.34063,0.62666,-0.13692,0.30426,-0.37589,0.73034,-0.10932,-0.49586 -0.2619,0.32719,0.87226,0.39803,-1.2711,0.07593,0.39416,-0.19929,-0.52757,0.044311,-0.30389,0.33744,-0.40155,-0.24482,-0.026487,0.25297,0.62288,0.13894,0.54766,0.56856 -1.3489,1.6041,-0.12569,0.99862,-1.878,-0.2993,0.17749,-0.22299,-0.42008,-0.047446,-0.32108,1.6213,-0.29554,0.33381,0.17889,0.16202,0.090671,0.45104,0.059033,0.51338 -0.90841,0.84193,1.2879,0.36471,-1.5333,-0.39725,0.20301,-0.4904,-0.33861,0.7813,-0.14163,0.031922,-0.10992,-0.15492,-0.077216,0.082085,0.70813,0.61037,0.4268,0.11656 -2.7252,0.73174,1.288,0.077468,-2.5574,0.62272,0.82757,0.64756,-1.1432,-0.31748,0.12922,-0.56624,-0.63013,-0.69502,-0.36393,-0.34806,1.2851,0.29947,0.12748,-0.25018 -1.072,1.093,0.81671,1.823,-2.5358,0.10749,1.1065,-0.81601,-0.12683,1.4957,0.26994,1.0612,0.34428,0.14379,-0.38356,0.13676,0.34533,0.42611,-0.35044,-0.57072 -1.1702,0.51006,-0.34872,-0.35555,-1.2737,0.043267,0.24862,0.043363,-1.2406,-0.44153,0.5582,0.12717,-0.3582,0.72272,0.34287,-0.23017,0.47196,0.52815,0.16189,-0.031048 -0.41036,0.8607,-0.27933,1.4008,-1.8206,-0.18283,0.8734,-0.3978,-0.8004,0.24233,-0.66014,1.393,-0.1858,0.28626,-0.10478,0.14242,0.28182,0.19207,-0.33592,0.92175 -1.5107,0.78683,-0.60765,0.25412,-1.733,-0.38968,-0.03972,0.55089,-2.0975,1.422,0.35993,0.83824,0.044268,0.23796,-0.1425,-0.8592,-0.30898,0.78107,-0.27896,0.25924 -1.8236,1.72,-1.06,0.94991,-2.9106,0.25836,-0.18434,0.21121,-0.83841,-0.023382,-0.41088,0.88556,0.50735,0.33561,-0.080402,0.55458,0.1274,0.25923,-0.52956,-0.42155 -2.7938,2.1768,-0.13848,0.0066058,-2.0178,-0.72829,0.23175,0.062583,-0.45228,-1.1325,1.2215,1.1489,0.93392,0.31886,1.2776,0.40081,0.53978,0.38763,0.067634,-0.13088 -0.38165,0.1694,0.56076,0.17422,-1.701,0.71302,0.69635,0.35803,-0.2901,-0.76982,0.71349,-0.12616,0.51882,0.1045,-0.14246,0.46316,0.28552,0.42029,-0.074812,-0.045881 -0.70479,1.1574,-0.78791,1.1369,-2.4431,-0.19496,0.38264,0.20927,-1.5187,-0.70007,-0.49005,1.1787,-0.16511,0.64563,-0.087869,0.6813,-0.052012,0.4998,-0.4981,0.303 -2.3263,1.6401,0.077386,0.76764,-3.5076,-0.011739,-0.0045397,0.2859,-1.2943,-0.69268,-0.6289,0.7425,-0.64167,0.091756,0.70682,0.5234,0.7304,0.34337,0.40803,0.42209 -1.1796,1.1887,1.5564,0.39013,-1.3835,-0.18151,0.1674,-0.37873,-0.61494,0.66552,0.456,0.23092,-0.29712,0.021674,0.0079665,0.20538,0.84498,0.83428,0.59643,-0.25092 -0.90484,0.87978,0.73613,1.0646,-2.3365,0.28237,0.98594,0.088982,-0.17974,-0.55264,0.45969,0.52305,0.1646,-1.2125,-0.15107,-0.14952,0.37481,0.57888,0.20332,0.28585 -1.2528,1.2979,1.088,1.7794,-2.242,-0.51494,0.34109,-0.33721,-0.61895,1.6017,0.089893,1.3427,-0.024612,0.65448,0.11996,0.43059,0.21354,0.75978,-0.010083,0.077422 -2.4733,1.7488,0.40732,1.6226,-1.5941,0.020491,0.70566,-0.018505,-0.92799,0.85744,0.29821,1.9723,0.68933,0.63517,1.1971,-0.18191,0.5101,-0.39023,-0.80672,0.00032931 -1.5328,1.3249,0.76543,0.54643,-2.1048,0.9255,1.3788,-1.0689,-1.3819,-0.50494,0.13925,1.0793,-0.48572,0.17713,0.67998,-0.46894,1.3901,0.44176,0.56537,0.33302 -3.2823,2.0636,0.82275,0.41802,-2.9557,0.48972,0.95961,-0.69518,-0.40539,-0.5751,0.64308,-0.20771,0.99698,-0.19487,0.54696,0.71437,1.5501,0.4938,-0.068696,-0.29437 -0.23769,0.22683,0.8416,1.3707,-2.0696,-0.10013,0.47892,-0.53479,-0.95798,1.0578,-0.22832,0.30061,-0.2055,0.29183,-0.4437,-0.03246,0.086895,0.44547,0.38913,-0.13533 -2.1638,0.87411,-0.87142,0.089627,-1.5973,-0.079011,-0.054501,0.64699,-1.9463,0.51647,-0.3709,0.36395,-0.53065,1.0251,0.10281,-0.27784,0.69874,0.37547,-0.6033,0.21315 -1.8195,0.63048,0.0040093,-1.2193,-1.0065,-0.79293,0.18713,0.042137,-1.1046,0.22233,1.4977,-0.10573,0.31782,-0.09007,0.8148,-0.47168,0.17665,0.50402,0.68989,0.076826 -0.7278,0.41719,1.302,-0.15576,-1.5053,-0.66723,-0.25549,-0.33194,-0.439,0.18562,0.31218,0.1151,0.14282,-0.24655,-0.17002,0.22633,0.61607,0.28191,0.17331,-0.10147 -1.8416,1.9262,0.013153,0.50424,-2.4127,-0.054222,0.097518,-0.30763,0.04458,-0.47783,-0.037009,0.51737,0.060505,0.014407,0.49006,0.46092,0.99048,0.27154,0.21299,-0.27653 -1.5728,1.4823,-0.4329,0.00044062,-2.23,-0.53813,-0.59984,0.31005,-0.77407,-0.32717,0.25396,0.26753,-0.11051,0.52698,0.66855,0.45703,0.14385,0.99309,0.38157,-0.26542 -2.0909,1.6905,0.025748,-0.35741,-1.3271,-0.29908,0.6962,0.17562,-0.46994,-0.87078,1.513,1.1781,0.50818,0.39415,1.381,0.68343,0.24431,-0.32978,0.35141,0.42506 -1.2119,0.88118,0.77868,1.9024,-3.0773,0.79446,1.0113,-0.40571,-1.1987,-0.71564,0.2333,1.2023,-0.51352,-1.1249,0.17822,-0.034178,0.69972,0.71349,0.45804,-0.43474 -0.2018,0.52381,0.37202,0.47345,-1.803,-0.10972,0.67568,-0.66179,-1.0264,-0.34163,-0.098641,1.1165,-0.69725,-0.029017,0.77541,-0.12504,0.72002,0.4995,0.143,0.44531 -0.96838,0.54121,1.2737,0.18675,-1.6981,-0.57429,-0.42071,-0.92853,-0.88175,0.13358,-0.20194,0.17524,0.69107,-0.3405,0.044915,-0.087723,0.40691,0.54915,0.42203,-0.33665 -0.11575,0.75201,-0.15657,1.1586,-2.3073,-0.17484,0.48343,-0.044461,-1.2521,-0.46214,-0.77827,1.287,-0.30746,0.049848,0.19637,0.023452,0.3969,-0.0027945,0.035157,0.27732 -2.5597,1.9947,1.3886,1.4803,-2.7467,-0.04562,1.0019,-1.2552,-1.1157,1.2556,1.0084,1.3388,0.22505,0.61017,0.61422,-0.43314,0.67557,0.14376,-0.044275,-0.28779 -1.9699,1.5894,0.039456,0.67075,-2.8352,-0.24536,0.012414,0.049478,-1.0837,-0.45769,-0.44231,1.6037,-0.83433,0.2281,0.6621,0.44565,0.65041,0.46111,0.15584,0.82561 -0.99514,1.5445,1.0833,1.8654,-2.3902,0.26477,0.60208,-0.57791,-0.3519,0.88564,0.5808,0.99388,-0.28749,-0.51792,-0.038413,-0.0054231,0.12264,0.6248,0.42493,-0.25077 -3.4706,2.0396,-1.0634,0.104,-2.5616,-0.32241,-0.14021,0.058981,-1.8092,0.11462,0.46419,1.0501,0.3475,0.62507,0.34392,0.26084,0.31616,0.67999,-0.025883,-0.34671 -0.86911,0.93215,-0.27219,-0.17329,-1.7913,-0.29898,0.32865,0.33709,-0.86733,-0.60753,-0.26783,0.2724,-0.43377,0.48873,0.12108,1.0051,0.65081,0.15758,0.25026,0.52399 -2.1063,1.8676,0.83607,0.15817,-1.8554,-1.1451,0.84219,0.32694,-0.44096,-0.12318,1.3241,1.2542,0.19139,-0.13059,1.3681,0.028913,0.36452,0.57781,0.89655,1.282 -0.25841,0.19876,0.69622,0.53959,-1.4464,0.85016,1.1962,-0.28482,0.24781,-0.37726,0.59933,0.6491,0.27641,-0.063175,-0.2878,0.28506,0.2616,0.39437,0.42522,-0.20816 -1.6171,1.0522,-0.41701,0.032099,-1.9044,-0.24492,-0.78224,0.47026,-1.0915,0.27441,1.3155,0.66163,0.46995,0.59694,0.54109,0.11233,-0.42719,0.69254,0.077256,-0.59912 -1.3278,1.1665,-0.52524,0.22391,-2.4462,-0.32084,-0.074913,0.15418,-1.8903,-0.59674,-0.0047981,0.23482,-1.1501,0.86793,0.44238,0.75877,0.28278,0.89932,0.15951,-0.22327 -2.714,1.3094,0.52091,-1.0892,-1.0664,-0.85134,-0.066212,-0.24398,-1.742,0.18584,1.8958,0.99797,-0.12977,-0.087449,0.72046,-0.15945,0.10044,-0.039515,0.69503,0.093028 -1.0693,1.3062,0.84646,2.0788,-2.1941,0.038343,0.75863,-0.20667,-0.51515,1.5252,-0.037225,1.3374,0.448,0.0089389,0.024842,0.015645,0.27821,0.68745,-0.35176,0.27626 -0.34712,0.23153,1.0682,0.42571,-2.1764,0.19241,0.29522,-0.29545,-1.4654,0.39461,-0.0071766,0.51899,-1.2207,0.60263,0.58022,0.63845,0.42762,0.29415,0.46207,0.13736 -2.6626,-1.2078,-0.73564,0.28685,-0.46646,-0.66101,1.0409,-0.14884,-0.51534,0.32083,-0.27605,1.0943,0.28468,-0.46999,-0.074869,0.82796,0.69917,1.2863,0.058236,0.19364 -0.82341,-0.42034,1.0295,2.0086,-1.2032,-0.11303,0.35482,0.6762,-1.5429,0.04562,0.34991,1.3147,0.32127,-0.54142,-0.034935,0.86825,-0.24297,-0.32942,0.24993,-0.71924 -2.1178,0.63282,0.44845,3.1898,-1.8765,0.033642,0.63102,-0.82649,-1.4648,-0.74231,0.30359,0.79194,0.5622,0.40793,0.25805,2.0205,0.056617,0.083919,1.2254,0.028037 -0.5996,-0.091499,1.8761,0.93693,-1.2678,-0.067686,1.431,0.23999,-1.3866,-0.48589,0.014131,0.5139,1.0852,-0.52378,-0.74647,0.7093,0.55389,0.010526,-0.48281,-0.3947 -1.3148,0.34524,1.2971,1.3131,-0.90627,-0.29249,1.0937,-0.1645,-1.2144,-0.11437,-0.49286,1.2293,0.51671,-0.080256,0.094622,1.431,0.12995,-0.059288,0.28571,-0.23374 -2.1835,-0.34053,0.78331,1.7516,-2.2409,1.1021,0.92109,-0.30317,-0.70313,-0.83492,-0.2745,0.40266,0.2552,1.2534,-0.82905,0.25117,-0.50849,0.55776,-0.62549,0.28419 -2.54,-0.00035796,0.51847,2.5023,-2.7792,0.85923,0.76023,-1.1079,-0.89483,-0.93937,0.36345,0.42883,-0.4281,1.2147,0.33516,1.3311,-0.41981,0.50014,0.66022,0.29126 -1.2129,0.39857,1.8366,1.1354,-1.198,0.46124,0.97049,-0.49073,-1.6358,0.069995,0.16576,0.87841,0.29841,-0.73002,-0.1839,0.99025,-0.16048,-0.1654,-0.13489,-0.69639 -1.765,-0.033943,-0.45613,2.3323,-1.4627,0.071528,0.37752,-0.64154,-0.142,-0.59534,0.19651,0.2111,0.16433,0.91566,-0.28379,0.55999,0.23619,-0.3974,0.1919,-0.77094 -2.4916,-0.9446,-1.5663,0.63134,-1.454,-0.02789,0.52965,-0.31258,-0.46717,0.64566,0.4658,0.39427,0.034553,0.67548,0.33966,0.027067,-0.036442,1.0268,-0.17,0.93015 -3.2435,-0.8843,0.29621,2.115,-1.9066,0.94963,-0.0060411,-0.32625,-2.1172,0.15421,0.42163,0.50189,-0.46054,0.57687,-0.65401,0.27196,-0.13844,1.6346,0.52416,0.2716 -1.7695,1.3253,0.1513,2.259,-1.6883,0.50583,0.57273,-1.1941,-0.9106,-1.2123,0.29895,0.80466,-0.67779,0.16408,0.66195,0.81724,-0.32427,-0.021401,0.45262,-0.34419 -1.7805,0.26292,-0.28893,0.70257,-1.8103,-0.0426,-0.10587,-1.4969,-0.2996,-0.79111,0.57478,-0.4868,-0.90601,0.33962,0.22999,0.5544,0.75302,0.36024,0.10696,0.52604 -3.4047,0.74279,-0.35944,2.8724,-2.8526,-0.76872,1.3898,-0.92175,-2.1984,-0.97755,1.2588,0.64228,0.28904,0.097066,0.46782,1.6577,0.65728,0.0090141,1.2041,-0.29668 -1.4485,-0.37073,0.73218,3.4447,-1.0638,-0.12848,1.0839,-0.38736,-0.98273,-0.65163,0.18124,0.38359,0.58907,-0.29493,-0.054109,0.90796,0.43488,-0.22404,1.1168,0.049405 -0.61399,-0.45243,1.4544,0.45515,-1.294,-0.17632,0.4853,-0.32441,-1.6029,0.38975,-0.004119,0.71656,1.0104,-0.34351,-0.52074,0.2933,0.69102,0.04662,-0.90486,-0.51485 -2.1982,0.1985,-0.11038,3.6397,-1.8868,0.6228,0.83527,-0.71143,-1.259,-0.52253,0.12342,0.59864,0.070381,0.27238,-0.089207,0.96869,0.16319,-0.08781,0.13594,-0.29373 -1.6701,0.589,-0.23823,0.79429,-1.5611,0.28814,-0.39744,-1.2222,-1.2092,-0.092477,0.58024,0.15297,-0.97557,0.76111,-0.38794,-0.48034,-0.058036,0.43278,-0.32907,-0.11193 -1.6056,-0.77937,0.82437,3.1063,-1.5396,0.78301,0.49362,0.046155,-0.20607,-0.67294,0.90308,0.8498,-0.20119,0.27249,-0.67557,0.0863,0.46735,0.48705,0.29026,0.78349 -0.70448,-0.31632,1.4335,0.99149,-1.5033,-0.1967,0.78304,0.93706,-1.4548,0.21755,0.25856,0.57419,0.64137,-0.12778,-1.1409,0.54761,0.23559,0.15861,-0.90957,-0.018751 -3.063,-1.1719,-1.1056,0.7064,-1.9273,-0.13018,2.1639,-0.63759,-1.3716,0.64286,0.14165,0.11215,0.47241,-0.45442,-0.058406,0.035829,-0.12896,0.98849,-0.82651,1.5755 -1.9172,-0.2736,-0.40704,1.3046,-1.6253,0.83511,-0.010571,-0.49288,0.080845,-0.050314,-0.08358,0.54593,-0.12957,1.5116,0.5245,0.16917,-0.16634,0.42532,0.18718,0.030596 -0.96834,0.81033,0.35722,1.5323,-1.3089,0.55827,0.79577,-0.45597,-0.60208,-0.12313,-0.09901,0.94632,0.077004,-0.38315,0.33825,0.76608,0.69034,-0.41292,0.54134,-0.55668 -1.2696,0.82641,-0.44299,1.4296,-1.9394,0.077921,0.30486,-1.013,-0.70721,-1.1459,0.44942,0.065172,-0.39502,0.034412,-0.35031,1.1907,0.53581,-0.44356,-0.059905,-0.56059 -2.9166,-0.89285,-0.42985,1.6271,-0.82814,0.067691,0.81481,0.40434,-1.9297,0.16452,0.53185,0.11211,0.17091,0.27983,-0.033227,-0.032175,-0.33194,1.5975,1.1999,1.3253 -1.1874,-0.59087,1.2492,1.8739,-2.4908,0.70676,0.48094,-0.12717,-1.3553,-1.1172,0.41189,0.22781,0.24002,-0.62564,0.46773,1.4083,-0.49965,0.30597,0.7487,0.60118 -0.82411,0.1011,1.135,1.9879,-0.91388,0.30419,0.31756,-0.77684,-1.0122,0.18059,0.41365,0.33502,-0.58196,-0.5605,0.20803,0.82924,0.075837,-0.042036,1.0142,0.32975 -2.8763,-1.3747,1.4388,1.9105,-2.7472,-0.18158,2.4819,1.3104,-0.72548,-0.74678,-0.066898,0.033405,0.16452,1.0776,-0.33384,-0.3364,1.171,0.60599,0.37526,0.026702 -1.4464,0.0020394,0.83837,2.0422,-1.9579,0.8949,-0.060369,0.34369,-1.4385,-0.10606,0.66437,0.11291,0.20929,0.111,0.24784,0.15319,-0.40684,-0.19726,1.6326,-0.38614 -0.24466,-0.40477,0.64998,1.4061,-0.68246,-0.21151,0.46774,-0.087535,-0.42611,-0.2723,0.62597,0.51133,-0.046723,0.17964,0.083822,0.058586,0.020801,0.022566,0.22985,0.11386 -2.7519,-0.38627,-1.8251,1.8332,-1.6608,0.3265,1.6714,-0.57425,-1.1856,0.80379,-0.021504,-0.58402,0.067822,0.12935,0.46536,-0.18281,1.3241,0.66815,-0.15234,0.62292 -2.6135,0.067737,-0.47595,3.4512,-2.3338,0.056095,0.86998,-0.95373,-1.2125,-1.1032,1.3698,0.30006,0.65598,0.95802,-0.04263,1.3726,0.034911,0.77876,0.6653,0.7262 -2.4228,0.58725,-0.92023,2.0238,-2.5618,-0.1947,0.087397,-1.5786,-1.5581,-0.45254,1.3158,-0.84693,-0.46798,0.3164,-0.51549,1.072,0.38921,-0.29753,0.9405,0.12597 -0.63644,-0.089658,0.99405,1.4474,-1.0368,0.50762,0.46728,0.63245,-1.4543,0.3522,0.44168,0.94189,0.12408,-0.112,-0.45668,0.41882,0.15523,-0.16665,-0.091891,-0.23719 -0.12603,-0.27126,0.62456,0.05862,-1.2184,-0.10033,0.082002,-0.30887,-0.99278,0.098033,0.33389,0.50486,0.6835,-0.34436,0.060082,-0.17599,0.5254,-0.029493,-0.49592,-0.09959 -2.1048,-0.1637,0.2896,1.9784,-1.2615,0.87396,0.20264,0.015733,-0.45156,-0.21276,-0.38723,0.12233,0.046905,1.4955,-0.17985,-0.089044,-0.079581,0.77065,0.39983,0.53266 -2.1106,-0.18806,1.2584,3.01,-1.973,0.015499,0.93147,-0.32505,-1.5343,-0.81291,-0.23972,0.76985,0.55859,-0.099202,-0.3242,1.6118,0.1427,0.052789,0.89218,-0.75861 -2.0748,-0.42429,-0.69272,0.97832,-1.1442,0.058165,0.055862,-1.0939,-0.36885,0.22185,0.57131,0.27936,-0.40158,0.54817,-0.31383,-0.10413,0.082727,1.1799,-0.25389,0.42706 -1.2089,-0.065186,0.55721,2.4556,-0.76895,0.067703,0.43788,-0.60611,-0.5192,-0.65983,0.088541,0.44503,0.1012,-0.26779,-0.22522,0.7518,0.22036,-0.047084,0.87826,0.083923 -0.53401,-0.36062,1.5857,1.3608,-1.236,-0.0004871,0.55537,0.27892,-1.6634,0.28789,0.66704,1.0525,0.28902,-0.34013,-0.60339,0.85908,0.31726,-0.14898,0.12301,-0.73194 -1.7749,-0.59539,-0.93204,1.7182,-1.6742,0.13739,1.1096,0.31209,0.17442,-0.61273,0.017134,-0.077602,0.20826,0.59178,0.45619,0.21516,0.54406,0.22009,-0.021467,0.561 -1.8848,-0.98929,-1.312,0.42699,-0.96944,-0.44052,0.39747,-0.055557,-0.44556,0.92375,0.75074,0.70665,0.11117,0.044216,-0.12195,0.077568,0.33022,1.0584,-0.25647,1.145 -2.5958,-0.10608,-0.93404,1.9696,-2.3295,0.66524,-0.32942,-1.4389,-0.33623,-0.58652,0.54232,0.12749,-0.50649,0.92579,-0.060228,1.0861,0.56687,0.65635,0.043471,0.049376 -1.5717,0.0066737,1.2614,2.8332,-1.7951,-0.22901,1.5915,0.34301,-1.5523,-0.39942,-0.35889,1.2091,0.84056,0.5037,-0.59052,0.86773,0.25128,0.22078,0.059842,-0.33001 -1.9127,0.29745,0.67309,1.2351,-1.3814,-0.39899,0.63509,-1.1455,-1.1821,-0.82719,0.34939,1.1267,-0.64342,-0.02572,0.70968,1.4389,-0.57516,0.35905,0.31278,0.5964 -1.7582,-0.33555,-0.89009,0.61824,-1.2209,0.28908,1.4271,-0.5188,-0.92579,0.66703,-0.12636,-0.40748,0.58767,0.3199,-0.13099,-0.26346,0.018713,0.2983,-0.21832,0.50942 -1.3569,-0.26297,1.7467,1.9127,-1.0453,-0.10297,1.0043,1.5175,-1.573,-0.45533,0.13777,0.53034,0.041057,0.43676,-1.093,0.30995,0.72952,0.70997,-0.090061,0.47952 -1.8853,-0.55616,-1.4211,1.7095,-2.0607,1.0536,0.60235,-0.38048,-0.047324,0.14402,0.27968,-0.29026,0.29983,0.87796,0.11689,0.012891,0.5715,0.29032,-0.27548,0.42988 -2.3414,-0.61924,-1.4321,1.2973,-2.2071,0.070124,-0.0013412,-1.0933,-0.21112,-0.19609,0.80793,-0.2632,-0.67455,0.58126,-0.36747,0.92064,0.46741,0.17441,0.077059,-0.047063 -1.988,-0.31953,-1.3713,1.0954,-1.7929,-0.3466,-0.1023,-1.1987,-0.52357,0.45123,0.96651,0.021073,-0.7716,0.76007,-0.0094957,0.20483,0.17189,0.090673,-0.29971,0.82026 -1.5862,-0.70375,-0.71724,0.76183,-1.9795,0.60576,0.21521,-0.26305,0.057343,0.59131,0.32424,0.040869,0.40878,0.33934,0.65501,0.18574,0.27302,0.28472,0.64187,-0.24337 -2.5908,-0.40095,0.019791,1.755,-3.1964,1.8667,0.93727,-0.60167,-1.0798,-0.23777,0.47825,0.13263,-0.33242,0.83254,0.22176,0.46245,-0.30699,0.8078,0.16063,0.03378 -2.0065,-0.56159,0.53802,2.7394,-2.2373,0.78284,0.74241,0.21585,0.065181,-0.1163,-0.09149,0.61972,0.0053804,1.1426,-0.47291,-0.087645,-0.050842,0.43848,-0.24088,0.92557 -0.52901,-0.035605,1.3837,1.4249,-1.3874,0.049373,0.72324,0.57222,-1.1892,-0.76465,1.1683,0.20469,-0.2615,0.18872,-0.32448,0.99174,0.023382,-0.099421,0.19797,-0.25154 -1.1486,0.28064,-0.21955,2.4017,-1.364,0.72817,0.079539,-0.50043,-0.6219,-0.687,0.49652,-0.36772,0.40784,0.42765,-0.49179,0.43182,0.27183,0.38554,0.33046,0.44981 -1.2479,0.88497,1.0825,2.1797,-0.66774,-0.15589,0.79685,-0.85582,-1.256,0.063527,0.006908,0.74435,-0.15502,-0.29835,0.67191,1.1192,0.38326,-0.16346,1.1846,-0.080741 -1.1689,0.34513,1.3909,1.3492,-1.2862,0.51579,1.4483,-0.28892,-0.60882,-0.66714,0.014831,0.41041,0.12557,-0.28257,-0.7123,0.71876,-0.1448,-0.27453,0.1418,-0.9185 -1.4806,-0.68188,-0.17872,1.5931,-0.94857,0.91417,-0.2106,0.24621,-0.56152,0.13223,0.36289,-0.67168,0.14546,0.26349,-0.064297,-0.28192,0.79273,0.84087,0.36584,0.46956 -0.48031,-0.33671,1.326,0.62551,-0.63852,-0.26188,0.76527,0.32137,-1.0506,-0.24043,0.19191,0.46666,0.66671,-0.4278,-0.71158,0.74849,0.4722,-0.033034,-0.55792,0.062958 -1.9536,-0.16817,-1.0039,1.5771,-1.9616,0.47262,-0.38232,-1.0137,-0.67275,0.44633,0.49177,-0.43442,-0.4863,0.76726,-0.43836,-0.16408,0.49856,0.13365,-0.40822,0.63004 -3.1992,-1.5738,-1.5004,0.21167,-1.6923,0.076217,2.0227,-0.072456,-0.87047,1.2654,0.21361,0.57024,0.55172,-0.50911,-0.18065,0.094546,0.35457,1.1895,-0.17304,0.82293 -2.2092,-0.94239,-1.2874,2.0208,-2.1072,0.25936,0.26241,-0.39214,0.42024,-0.43673,0.6464,0.312,0.57658,1.0222,-0.10063,0.97501,0.92077,0.29938,0.29324,0.60725 -1.344,-0.038737,0.35941,2.3839,-1.6839,0.83814,0.52593,-0.90647,-0.60627,-1.1513,0.59245,-0.33939,-0.19359,-0.46372,0.075725,0.89242,0.22661,0.3053,0.49838,0.25951 -0.56976,0.13337,1.2304,0.42516,-1.7201,0.18926,0.25958,0.59638,-1.6416,-0.48075,0.85673,0.65431,0.29257,-0.12014,-0.14549,0.66521,0.25877,-0.51616,-0.39169,-0.18418 -1.5779,0.3867,1.0583,2.4335,-1.7115,0.38428,1.1667,0.41819,-1.1614,-0.17982,-0.23473,0.75572,0.78623,1.1529,-0.75543,0.92585,-0.12806,-0.00029056,0.19822,-0.38137 -0.6012,-0.00083823,0.35167,-0.017345,-0.9316,0.061784,-0.30729,-0.069,-0.83729,0.22872,0.10695,0.59854,0.31553,-0.45261,0.14444,-0.6175,0.11634,-0.29519,-0.5597,-0.024058 -2.5457,0.57919,1.0392,1.3034,-1.659,0.43409,0.49528,0.026959,-2.1285,-0.15865,-0.39129,0.9276,0.513,0.70349,0.35969,0.85482,-0.75301,0.42795,0.48002,-1.0559 -0.28359,-0.6678,1.0165,0.48376,-1.3479,-0.61042,0.40049,0.11643,-1.1902,0.10987,0.20563,0.85736,1.1689,-0.14706,-0.61609,-0.09373,0.84186,0.23477,-0.94039,-0.27622 -2.5404,-1.0777,-1.2691,0.42009,-2.0063,0.72319,0.47953,0.049301,-0.59648,1.251,0.079185,0.85566,0.060433,0.32545,0.51672,0.47911,-0.24488,0.93653,0.35646,0.60082 -1.6859,-0.74739,-0.94071,0.87416,-1.1645,0.35296,0.10328,-0.41871,0.038557,0.81806,0.035447,0.10367,0.18284,0.48269,-0.32248,0.30716,0.79065,0.5647,0.35106,0.41876 -1.99,0.21409,-1.2697,1.865,-1.1648,-0.40771,0.63496,-0.11699,-1.1382,-0.041027,0.19172,-0.26121,0.68068,0.63776,-0.16657,0.57002,0.73392,0.2347,0.31445,0.23226 -2.265,0.70214,-1.7744,0.85873,-1.874,-0.90946,0.60032,-0.93915,-2.0275,0.31028,1.4835,0.43526,-0.78322,0.32942,-0.70349,-0.69326,-0.59208,0.087062,-0.62694,1.1544 -1.7291,0.096103,0.9706,3.3824,-1.8632,0.41958,0.56178,-0.14779,-1.127,-0.4998,0.16515,0.97878,0.45337,0.038614,-0.53114,1.1743,0.012705,-0.2924,0.78006,-0.29669 -2.448,-1.3336,1.1528,2.5352,-2.3479,1.1259,0.43051,1.0469,-1.0913,-0.62547,0.75984,0.78975,-0.2129,0.72482,-0.48824,-0.071695,-0.30897,0.6063,0.036052,0.25708 -0.99394,-0.23308,1.6157,1.8588,-1.0969,0.013943,0.945,-0.22991,-0.79081,-0.1379,0.27967,0.72379,-0.09946,0.084068,-1.1129,0.77143,-0.26418,0.015438,-0.11903,-0.35415 -1.6864,-0.62496,-0.21536,2.7743,-2.111,0.77538,1.076,-0.25131,0.26941,-0.69128,0.047557,0.29051,-0.058773,0.28286,-0.057123,0.44242,0.25699,0.35284,-0.31821,0.47246 -2.8662,-0.14724,-1.6887,0.76331,-1.3154,-0.73731,0.59269,-0.91797,-1.815,0.6516,1.3625,0.52823,-0.84627,-0.095115,-0.25804,-0.50549,-0.1769,0.61289,-0.4323,1.2676 -1.0862,0.20394,1.371,2.062,-0.75104,-0.26792,0.16534,-0.95496,-1.4672,0.5137,0.27608,0.39311,-0.14535,-0.081596,0.38176,1.1818,0.35348,-0.20624,1.2899,-0.076589 -0.17058,-0.63206,1.0915,1.3076,-0.80817,-0.29956,0.41212,-0.55931,-1.3877,-0.20759,0.69851,-0.686,0.48386,0.25617,0.071449,0.50282,-0.13811,0.049823,0.45752,-0.12941 -1.3571,0.40956,1.3221,1.1899,-1.367,0.62064,1.2796,0.66879,-1.5699,-0.1968,-0.49261,0.634,1.2133,0.14958,-0.47483,0.87157,0.41356,0.11547,-0.6493,-0.25462 -1.7643,0.13277,2.6059,1.6253,-2.4661,-0.017808,1.4619,-0.68467,-2.6201,-0.50569,-0.20532,1.156,0.91916,-1.0195,0.11158,1.0613,0.55117,-0.16152,-0.19671,-0.40288 -1.3974,-1.005,-0.11557,1.1808,-1.7141,1.084,0.22951,-0.36349,-0.207,-0.029766,0.27394,0.019013,0.026249,0.11704,-0.096309,0.56738,-0.54604,1.3283,-0.33103,0.015116 -1.7002,0.52862,0.71184,0.65837,-0.74065,0.23038,1.162,-0.86553,-1.1109,-0.84995,-0.36228,-0.077085,-0.02285,-0.14178,0.35,0.85736,0.079919,0.55911,0.50025,-0.12276 -1.4871,-1.4971,1.1179,2.3625,-1.6316,0.33281,-0.0029688,0.95942,-1.4459,-0.50649,0.35063,1.1921,-0.020842,0.61757,-0.15745,0.6425,-0.55275,0.43242,0.082122,0.58678 -2.1736,-0.41642,-0.0096573,3.1049,-2.0141,0.18628,0.67275,-0.26796,0.31422,-0.75774,0.22209,0.66641,0.26772,1.034,-0.32659,0.21364,0.69657,0.2432,0.17773,1.0209 -0.75814,-0.46371,1.5474,1.7333,-1.0384,-0.23903,0.53627,-0.86347,-0.97864,0.49086,0.22092,0.33424,-0.055227,0.36978,-0.40261,1.1406,-0.068451,0.058173,0.24627,-0.074384 -1.2319,0.27714,-0.57775,1.2797,-1.8077,0.73037,-0.054078,-0.43227,-1.1037,-0.25155,0.28016,-0.5454,0.17455,0.29879,-0.33456,-0.16048,0.022016,0.08935,0.19057,-0.16436 -3.2929,-1.0171,0.18132,0.54562,-1.8658,0.97197,1.6503,-1.0431,-0.77227,0.086962,-0.47931,0.078669,0.28014,0.51175,-0.036991,-0.45948,-0.12186,1.1052,-0.43732,1.1676 -1.1159,-0.42497,0.34015,2.0242,-1.6818,0.98245,-0.25506,-0.30602,-0.13674,-0.4491,0.72969,0.50651,-0.25388,0.30049,0.24562,0.60128,-0.37029,0.20313,0.54104,0.29955 -3.1844,-0.24926,-1.0594,2.4884,-3.0064,0.49924,1.2512,-0.9786,-1.5571,0.35935,0.56736,-0.12558,-0.27059,0.95785,0.10842,0.7519,-0.22721,0.4398,0.64294,0.28977 -0.3549,-0.30857,1.379,0.62989,-1.2703,-0.078767,1.0076,0.4303,-1.4466,0.2889,0.10123,0.55643,0.36046,-0.35887,-0.79492,0.45585,0.54847,0.19337,-0.46784,0.14917 -2.4481,-0.75253,-1.274,0.28637,-2.1321,-0.098437,0.41027,-0.59231,-1.0502,0.51802,0.98992,0.60162,-0.50308,0.72344,-0.22252,0.74803,-0.83102,1.0718,-0.59657,1.0481 -0.54948,0.408,1.6277,0.55787,-1.7455,-0.087673,1.5843,0.66581,-1.6008,-0.64953,0.47862,0.023582,-0.070612,-0.27244,-0.34927,0.13971,0.95234,0.25418,-0.32968,0.50155 -0.50959,-0.63103,1.5805,0.55307,-0.88874,-0.67243,0.95632,0.29893,-1.4962,-0.33744,0.15545,0.58348,0.59516,-0.59064,-0.4365,0.62277,0.4438,-0.0084258,-0.52387,-0.27071 -0.75931,0.038954,1.4444,0.79659,-1.3316,0.28875,0.41671,0.42568,-1.8798,-0.25718,0.32464,1.1166,0.18749,-0.30381,-0.69011,1.0005,0.44136,-0.34126,-0.6063,-0.2869 -1.8271,-0.27879,0.38173,2.8351,-1.8858,1.2651,0.14074,0.16789,-0.83303,-0.026943,0.37441,0.16385,-0.18641,0.43838,0.037816,-0.22462,-0.1407,0.11672,0.22846,0.59505 -1.8444,0.55245,-0.87141,1.9712,-1.1816,-0.11434,0.62886,-0.46733,-1.9551,-0.28243,0.53211,-0.69461,-0.038999,0.90151,-0.80422,-0.0018926,0.31012,0.42241,-0.015475,0.19525 -0.74404,0.3352,1.121,1.1572,-0.72325,0.24068,0.42448,-0.13216,-0.78436,-0.16672,0.00048844,0.5135,-0.16586,-0.098055,-0.63447,0.7162,-0.30817,-0.088487,0.24613,-0.54392 -1.3305,0.066269,0.5874,3.1028,-1.2566,0.19828,0.091945,-0.68113,-0.94457,-0.10365,0.17704,0.71456,-0.26786,0.19353,-0.17206,0.7076,0.26565,-0.42694,0.68292,0.36684 -0.27046,-0.23154,1.1878,0.3702,-1.0729,-0.055744,0.77356,0.1216,-1.3598,0.20547,0.22593,0.62316,0.82121,-0.67017,-0.18171,0.34702,0.67473,-0.10566,-0.7026,-0.21436 -1.5422,-0.19702,-1.1468,0.61444,-1.2709,0.10269,0.11061,-0.76,-0.34239,0.1815,0.49792,0.12476,-0.29439,0.91089,0.18338,0.23469,-0.12075,0.56512,-0.21446,0.23467 -0.58756,-0.35248,1.1307,1.6853,-0.7239,-0.029307,0.54507,0.12843,-0.87388,0.21306,0.32185,0.65068,0.13114,0.044782,-0.93115,0.46606,0.59289,0.3521,0.17076,-0.032951 -1.4105,-0.11182,0.093241,2.3284,-1.6696,0.11536,0.25862,-1.6022,0.12094,-0.77006,0.45046,0.5504,-0.16121,0.29987,0.13492,0.61711,0.32337,-0.33307,0.23946,0.79835 -0.51375,-0.056078,1.1093,0.54664,-1.3557,0.21279,0.58967,0.38781,-1.3506,0.13895,0.11786,0.81274,0.82449,-0.49321,-0.51764,0.30152,0.54747,-0.064673,-1.0797,-0.10909 -1.8915,-1.4055,-0.50434,-0.049858,-1.5916,0.54034,1.4672,0.3683,-0.13747,0.75501,0.19179,0.25096,0.43618,-0.21775,-0.4247,0.0675,-0.19813,0.87544,0.61583,-0.012144 -1.6363,-0.26693,-0.37017,-0.64228,-1.7989,0.085696,0.93014,-0.60842,-0.27016,-0.11239,0.20375,0.58023,-0.22633,0.04221,0.11353,1.4287,-0.22815,0.28641,0.031405,-0.11159 -1.875,-0.36687,-0.83779,1.6446,-1.5513,0.47691,0.2122,-0.12952,0.14198,0.087289,-0.073389,-0.038132,0.20182,1.0888,0.23753,0.1652,1.068,0.13955,0.16647,0.48732 -2.1544,-0.4512,-1.184,1.5443,-2.6101,0.094491,-0.11308,-1.4091,-0.43284,0.25778,1.0367,-0.38466,-0.22699,0.69835,0.064238,-0.01189,0.11857,0.11703,0.67012,0.59513 -1.8044,-0.67632,-0.39229,1.755,-1.9482,0.071434,0.58875,-1.2925,0.18997,-0.76389,0.49592,0.32051,0.10941,0.1911,0.061364,1.3457,0.323,0.19706,-0.21462,0.60189 -1.1597,0.19062,-0.37037,1.9425,-1.6799,0.70844,0.090855,-0.32804,-0.35134,-0.64622,0.27189,0.01847,0.11466,0.29104,-0.59765,0.17777,0.047876,-0.36092,-0.17096,0.048521 -0.75543,0.18053,-0.087231,1.5991,-2.0274,0.41032,0.038597,-0.75976,-1.1343,-1.1332,0.90097,-0.71191,-0.039506,-0.086107,-0.22768,0.28663,-0.24082,0.14114,0.2385,-0.37045 -0.78614,-1.0692,1.299,1.0487,-1.0494,-0.16029,0.0050134,0.28689,-1.4275,0.35179,0.021773,-0.038054,0.44033,-0.21839,-0.11316,0.96448,-0.15073,-0.47279,0.42044,0.31334 -1.4624,-0.32546,0.80645,1.1085,-1.0702,0.48693,0.45893,0.27881,-0.7938,-0.30961,-0.071205,-0.01652,0.37305,0.65408,-0.52111,-0.32522,-0.52051,0.088541,-0.023389,0.14311 -1.8001,-0.10321,1.1371,2.6693,-2.2691,0.70885,0.40415,-1.3009,-0.81981,-0.89573,0.76712,0.52921,-0.61088,-0.59016,0.17999,1.0339,-0.071077,-0.099049,0.62045,0.44735 -0.96907,-0.72308,0.74356,1.571,-1.2603,0.69476,0.80398,0.57041,0.30842,-0.059492,0.27922,0.38398,0.11894,0.86791,-0.051817,-0.3589,-0.086013,0.77672,-0.018741,0.44374 -1.0216,1.0123,0.17733,1.3807,-0.68967,-0.22147,0.60844,-1.1135,-0.55004,-0.85298,0.078618,-0.022836,-0.10245,-0.0079572,0.081791,0.24697,0.065634,-0.30394,0.45938,0.27685 -1.1302,-0.61585,0.33809,1.5916,-1.4399,0.72218,0.79979,-0.59355,-0.45544,-0.3522,0.070203,0.1101,0.48889,-0.38894,0.28797,0.59006,0.19483,0.1876,1.0148,0.051409 -0.5084,-0.54526,1.0382,0.86824,-0.70152,-0.0068353,0.22254,0.18811,-1.1865,0.39364,-0.071813,0.26927,0.098276,-0.059373,-0.14585,0.86496,0.28165,-0.22692,0.41755,0.20974 -1.5605,-0.15359,-0.44269,1.2949,-1.7798,0.20814,0.016899,-0.13287,0.12628,-0.074599,0.6543,0.14087,0.024223,0.65948,0.02603,0.29783,0.29178,-0.45277,0.58581,0.13628 -2.796,-0.43527,-1.0506,0.68283,-3.0118,1.2687,0.21709,-1.1114,-0.37565,0.70077,0.048705,0.40614,-0.071857,0.47873,0.7054,-0.456,0.44694,0.61143,0.54634,-0.0026489 -0.83548,0.78127,1.0477,1.8038,-1.3014,0.22144,0.74394,-0.49485,-0.90219,0.11356,-0.086536,0.76344,0.46943,-0.084132,0.049842,0.90533,0.55973,-0.44781,0.7682,-0.63331 -1.7212,-0.76012,2.1249,2.9037,-1.4358,-0.17403,1.5922,-0.36059,-1.5743,-0.42611,0.4901,1.1269,0.42393,-0.24079,-0.70922,0.95238,0.30792,0.27472,-0.18704,-0.45775 -1.5533,0.65661,1.2,1.9216,-0.96482,0.0033276,0.68976,-1.514,-0.86163,-0.13588,0.18705,0.10252,-0.41075,-0.5236,0.75656,0.66009,0.35126,-0.20538,0.88193,0.39923 -1.9233,-0.79613,-1.4028,2.2647,-2.0459,0.6556,0.57401,-0.45007,-0.41462,0.28951,0.1437,-0.050226,-0.10393,0.74299,0.22205,0.77965,1.1296,0.42473,-0.28386,0.35717 -2.0778,0.6679,1.8098,1.0508,-1.6576,0.38515,0.39172,0.50204,-1.9209,0.14589,-0.061674,0.80285,0.10095,0.53308,0.036804,0.69732,0.34874,0.05691,0.63477,-0.73951 -2.3561,-0.46328,-1.4019,1.1373,-1.6622,-0.15832,-0.35001,-1.037,-0.39087,0.4969,0.84974,0.39101,-0.38979,1.0944,-0.13625,0.21069,0.63475,0.53868,-0.057878,0.64171 -2.5597,0.12545,2.0923,2.434,-2.29,-0.41686,1.8446,-1.1972,-2.1704,-0.49887,0.28862,1.1537,0.35409,-0.29226,0.078378,1.0395,0.62779,-0.30622,-0.46367,-0.75568 -1.5797,-0.80446,1.4501,1.6835,-1.2146,0.45988,0.69638,0.85278,-0.72757,-0.69828,0.27492,0.25735,0.091281,0.37517,-0.76499,0.009045,-0.42045,0.48734,-0.32738,0.645 -1.607,-0.58815,-0.97975,1.4037,-1.4044,0.66505,0.21183,-0.11343,0.0044465,0.12852,0.030654,-0.56568,0.25027,0.58418,0.11294,-0.22127,1.0992,0.10873,-0.1219,0.41925 -0.81673,-0.0071885,1.0628,-0.17643,-0.8259,-0.22407,0.36101,-0.4169,-1.2127,0.45806,-0.027455,0.81452,0.32576,-0.067493,0.21007,0.058491,0.44021,0.087832,-0.73346,-0.12137 -1.0161,-0.37033,1.2799,1.7296,-0.86597,0.40152,0.8706,0.50207,-0.7331,-0.59767,0.32386,0.50215,0.010035,0.14576,-0.84215,0.59814,-0.56825,0.34575,-0.071939,0.1414 -2.4889,-0.63618,-0.97398,0.90092,-1.0565,-0.58696,1.7478,-0.43479,-1.2726,0.063561,0.54352,-0.4317,0.14735,-0.41408,-0.14568,-0.24022,-0.10356,0.91306,-0.56313,1.3808 -1.9511,0.2399,-1.9514,0.070981,-2.2026,0.088022,0.57323,-0.87819,-0.80423,-0.47449,1.7291,0.47424,-0.53378,0.45882,-0.2198,0.93701,0.051262,0.49207,-0.23228,-0.19531 -1.0623,0.79574,0.63301,2.3838,-1.5414,1.0394,0.60591,0.17584,-1.2949,0.187,0.25738,1.1778,-0.058157,-0.06243,-0.11512,0.95749,-0.041056,0.11637,0.33266,-0.047129 -3.0324,0.060882,-1.5463,2.1724,-2.2351,-0.23708,0.50397,-1.441,-1.0951,-0.20934,1.2821,-0.13106,-0.43888,0.91189,-0.20623,0.76475,-0.44629,0.81101,0.66256,0.90961 -1.9643,0.025537,0.41624,3.0783,-2.4261,0.52531,0.20754,-0.96239,-0.70666,-0.70886,0.2438,0.85209,-0.65381,0.1728,0.13206,0.65802,-0.12277,-0.33428,0.25164,0.38072 -1.6677,-1.4209,0.46635,2.3688,-1.7578,0.9245,1.2632,-0.17164,0.12759,-0.97957,0.49763,0.27358,-0.026186,0.50057,0.33736,0.54971,-0.35014,1.0045,0.085379,0.09019 -2.1641,-0.85961,0.82197,0.72342,-1.7549,1.5184,1.5657,0.50813,-0.090316,0.31593,-0.52543,-0.1611,0.92164,0.13086,0.5883,-0.17862,0.34466,0.49345,-0.10236,0.14625 -1.193,0.87174,-0.0061607,2.5955,-1.2336,0.45664,0.58549,-0.81013,-1.2454,-0.78812,0.0022076,0.629,0.46736,-0.0049419,-0.16634,1.2176,0.12201,0.20538,0.22656,0.28633 -0.56599,-0.38024,1.3538,1.6336,-0.33543,-0.28495,0.68875,0.094283,-0.91602,-0.0053898,0.38783,0.43167,0.16344,0.036081,-0.59634,0.55637,0.21517,0.17066,0.81085,-0.40809 -1.9474,-0.13116,1.1488,2.4507,-1.9268,1.0141,0.36135,0.68845,-1.4316,-0.26847,0.26702,0.99001,-0.095259,0.17495,-0.53566,0.62897,-0.65084,0.13088,0.29819,-0.40036 -0.63252,-1.0674,1.3163,1.4925,-0.98759,0.31316,0.83402,0.13348,-0.58721,-0.57197,0.80222,0.72075,-0.10578,0.4689,-0.6796,0.19082,-0.17066,0.68984,-0.33109,0.5618 -2.1222,-0.41246,-1.4449,0.10528,-1.5367,-0.57242,1.086,0.031589,-2.0627,1.4083,0.65878,1.5406,0.48178,-0.59246,0.15633,-0.01559,-0.35623,0.19797,-0.25143,0.21853 -2.374,-0.75455,-1.4862,0.97649,-1.3662,-0.18387,1.0385,-0.90721,-0.81048,0.84004,0.79229,0.33792,-0.075403,0.35499,0.068278,-0.48429,-0.35593,0.46685,0.011359,0.80213 -0.48262,-1.1139,1.9545,0.43316,-1.3567,-0.1175,0.93031,-0.050219,-0.77078,-1.0146,0.65032,0.58451,0.18304,0.20046,-0.319,0.58209,0.25146,0.56927,-0.54426,0.98746 -1.998,-0.41601,1.2444,2.5856,-1.4027,0.65763,0.81612,1.0547,-1.4244,0.17001,-0.067549,0.40936,0.39168,0.68126,-0.53169,-0.23766,0.00089258,-0.003872,0.29794,-0.1475 -1.1191,-0.16139,1.8429,1.3222,-1.6082,0.1354,1.2504,-0.15904,-1.5165,0.81719,0.2466,1.3602,0.85777,-0.6619,-0.17234,0.36883,0.23899,0.3857,-0.7084,-0.54981 -3.2685,-1.6732,-0.6626,1.0857,-1.4249,0.20262,1.0106,-0.19093,-0.30128,1.1405,-0.67429,1.0615,0.96903,0.80014,0.041532,-0.044076,0.6692,1.0124,0.63925,1.0698 -1.8222,-1.2366,1.3521,1.8947,-1.489,0.45216,1.3584,-0.80744,-0.6037,-1.3386,0.481,0.32394,0.024807,-0.31468,-0.24831,0.48862,-0.32591,0.97688,-0.15286,0.32453 -2.4939,0.54136,-1.2338,1.7145,-1.5435,-0.32222,0.52559,-0.9269,-2.1448,0.0097999,1.243,0.017325,-0.19005,0.40334,-0.20543,0.33756,-0.78552,1.1866,0.55989,0.403 -2.0327,-0.85556,0.80707,1.4408,-1.092,1.3221,1.0798,0.76194,-0.26431,-0.086856,-0.60899,-0.05577,0.26441,0.56718,0.25932,-0.13057,0.28017,1.3126,0.15312,0.098577 -2.3184,-0.60951,1.0224,2.3173,-1.9417,1.091,0.1999,-0.0075035,-0.38473,-0.5946,0.069637,0.82551,-0.30139,0.92405,-0.66023,0.48962,-0.51831,0.42049,-0.034467,0.19937 -1.8686,-0.37707,0.28583,2.7043,-1.794,0.60003,0.39462,-0.56625,-0.17992,-0.50216,0.38832,0.17266,-0.063644,0.79747,-0.35002,0.71426,-0.36207,-0.22999,0.79665,-0.53349 -2.0636,-0.30284,-0.63762,-0.00025029,-0.59314,0.019797,1.7452,0.14721,-1.4554,0.99146,-0.24228,0.47757,1.0582,-0.75389,-0.029793,0.03392,-0.24932,1.235,0.44021,0.75611 -1.7404,-0.15684,-0.73006,1.9267,-1.1512,0.2222,0.55099,-0.21768,-0.3264,-0.499,0.023203,-0.62493,0.26217,0.73351,0.012363,-0.30932,0.70885,0.32059,0.35947,0.41051 -0.88361,-0.3629,0.43544,2.5495,-1.2936,0.49677,0.72623,-0.84026,-0.12784,-0.70705,0.88865,0.20576,0.064682,-0.0012766,-0.023385,0.11794,0.065016,-0.1213,0.71661,0.36633 -2.5857,-0.035542,-0.37262,2.1976,-1.241,0.37528,-0.14615,-1.3771,-1.3651,0.63551,0.14206,-0.088005,0.1624,0.35836,-0.29213,-0.80019,0.68775,0.20299,0.49902,0.58864 -1.7804,-0.29662,-0.46349,2.5405,-1.617,0.55845,0.74487,-0.16981,-0.002422,-0.50647,0.48717,-0.24241,0.3467,1.0192,0.05513,-0.30274,0.042525,-0.20537,0.58905,0.034309 -2.8293,-0.95757,-1.3241,1.9146,-2.0458,0.19201,0.61246,-0.59788,-0.13001,-0.095549,0.63991,-0.29824,0.60632,0.83077,0.13793,0.18675,0.10206,0.37753,0.15863,1.2533 -1.0414,0.53273,0.79665,0.60424,-0.74948,-0.020864,0.69257,0.15851,-1.2288,-0.6332,-0.11443,0.57418,0.49774,0.33206,-0.014545,0.72692,-0.012314,0.078935,-0.30299,-0.65503 -3.3482,-1.1709,0.50305,1.7476,-2.0006,1.3937,0.83677,-0.36159,-0.69864,0.39024,-0.35914,0.16985,-0.15974,1.2847,-0.17676,-0.46608,-0.38455,1.2846,0.039722,0.37159 -1.3899,-0.46936,1.7609,2.2731,-1.8172,0.12449,0.5769,0.82744,-1.8523,-0.40362,0.14014,1.4755,0.57217,-0.33474,-0.38219,1.2146,0.0081469,-0.032339,0.38195,-0.74325 -1.3524,-1.0336,1.4885,1.7317,-1.3749,0.83294,0.85524,0.12046,-0.26188,-0.74095,0.12662,0.57593,0.10452,0.53463,-0.54352,0.45822,-0.62771,1.0083,-0.15114,0.34334 -0.4691,-0.18603,1.5908,1.2057,-0.99135,-0.15854,0.66357,-0.10628,-1.4879,0.61486,-0.035961,0.33917,0.44476,-0.13929,-0.022075,1.2158,0.7265,-0.15736,0.64784,-0.2877 -1.7366,-0.53215,-0.83507,-0.01947,-0.55213,-0.21256,1.5413,-0.039353,-1.0054,0.83724,-0.12757,0.81192,0.7395,-0.98592,0.031444,0.83446,0.16421,1.0064,0.11398,0.11881 -2.9228,-0.80863,0.46556,2.2395,-1.2025,0.66684,0.29987,-0.37033,-1.4423,0.19052,0.012871,0.26378,-0.27629,0.70328,-0.62456,0.057323,-0.24002,1.2232,0.77749,0.29742 -2.1993,-0.5981,-0.20103,1.9632,-2.3414,1.2805,0.72106,-0.45732,-0.15228,-0.4186,-0.26594,0.075923,0.21337,1.0044,0.0061262,0.36577,-0.46337,0.53412,-0.45718,0.54054 -2.4884,-0.38744,0.043731,2.8315,-1.8027,0.75658,-0.038482,-0.91665,-0.53362,-0.77471,0.12651,0.39348,-0.33203,1.093,-0.15102,0.7526,-0.13062,0.81813,0.45385,0.10023 -2.1689,0.074642,-0.62448,0.9277,-1.5332,-0.37132,0.53804,-0.8378,-0.38279,-0.42943,0.43956,0.35047,-0.60451,0.56008,0.60106,0.89047,0.097056,-0.38662,1.3193,-0.66841 -1.3114,0.68385,1.1661,2.0841,-2.2843,-0.41338,0.045855,0.046503,-2.6315,0.46423,0.71031,1.2924,0.35197,-0.2941,0.69118,0.17089,0.97746,-0.16625,0.085852,-1.0424 -1.4077,0.29715,-0.25173,3.1144,-1.7885,0.20412,1.2444,-0.3728,-0.44024,-1.076,0.34912,0.11014,0.25013,0.47645,-0.069514,0.33856,0.25724,-0.12379,0.53943,0.23792 -2.0081,-0.18519,-0.20762,2.9249,-1.4516,0.41706,-0.43132,-0.55064,-1.0484,-0.16902,0.18619,0.055934,-0.077349,0.67723,-0.21942,1.0052,0.29711,0.43662,0.54361,0.24173 -2.0852,-0.059283,-0.56623,1.2735,-0.89697,-0.43927,0.67692,-0.6257,-1.1933,-0.021728,0.50351,0.2241,-0.20427,0.46536,-0.63334,0.4969,-0.84818,0.51037,0.016877,0.08476 -0.86169,0.22776,1.6003,1.482,-1.2525,0.10477,0.52546,0.15462,-1.5676,0.25331,0.27028,0.74586,0.042974,-0.26183,-0.74062,1.0071,0.096672,-0.07894,0.084639,-0.94317 -2.2723,-0.25459,-0.21174,0.35411,-2.6215,-0.22702,0.57091,-1.3677,-0.66053,0.027975,0.1051,-0.84097,-0.55038,0.092015,0.11611,0.46135,0.21566,0.46249,0.2229,0.88387 -2.6892,0.2574,0.35617,2.3838,-2.6143,0.26437,0.57136,-1.43,-0.45599,-1.0346,0.093724,0.30044,-0.33736,-0.42509,0.53298,1.5604,0.28576,-0.37663,-0.011329,-0.37951 -1.4695,0.41038,0.51281,0.32581,-0.78537,0.29354,0.065193,-0.19174,-1.2316,-0.074469,-0.21395,0.29937,0.020832,-0.41967,-0.44449,-0.135,0.0068221,-0.033522,0.43939,-0.53778 -0.82841,0.49334,1.406,1.1284,-1.4193,0.15555,1.0815,0.21686,-1.0954,0.049779,-0.13539,0.55188,0.76374,0.17828,-0.97018,0.86328,0.37998,0.11118,-0.62663,-0.41459 -0.2968,-0.157,1.08,0.071859,-0.95859,-0.53743,1.0191,0.25146,-1.2102,-0.39102,0.15781,0.97964,0.7686,-0.38251,0.16856,-0.088281,0.91908,-0.17729,-0.74184,-0.079046 -2.3685,-0.98916,-0.91395,1.1617,-1.2615,0.42744,0.97927,0.46792,0.17831,0.13763,0.033978,0.049256,0.48435,0.85905,0.78376,-0.56084,1.118,0.40359,0.7646,0.53111 -2.2309,-0.74321,0.3336,3.4839,-2.327,1.0455,0.49333,-0.21353,-0.57129,-0.52661,0.59168,0.28199,0.0088107,0.96882,-0.23239,0.50911,-0.2254,0.27131,0.60192,0.24543 -3.5218,-0.99735,1.1054,1.4317,-2.9258,1.3841,0.43344,-0.73454,-0.6305,-0.28451,0.13352,0.40674,-0.50588,0.85998,-0.21001,0.22947,-0.44204,1.0965,0.5358,0.2246 -0.91276,-0.33971,1.8452,2.9198,-1.4466,-0.17563,1.2202,0.046588,-1.6492,0.35389,0.59109,1.2231,0.6707,-0.072908,-0.72632,0.62919,0.66911,-0.27276,0.60401,-0.57439 -0.85783,-0.079271,1.1172,1.7766,-1.1229,0.32781,0.3345,-0.080909,-1.0815,-0.35395,0.36928,0.76312,0.2191,-1.0168,0.28768,0.77793,0.2557,-0.21231,1.0723,0.043835 -2.1344,-0.54405,-0.93748,2.3755,-2.1683,0.079444,0.13835,-1.119,-0.27151,-0.27678,0.49485,0.010305,-0.44421,0.37764,-0.28666,1.0652,0.014115,-0.25145,0.10841,-0.23006 -0.53928,-0.074658,1.3116,0.024585,-1.1001,-0.10204,0.45295,-0.31839,-1.2522,0.46678,-0.10687,0.57469,0.39095,-0.39681,0.029025,0.43794,0.57067,0.019504,-0.54199,-0.32096 -2.7074,-0.57946,0.4919,2.2826,-1.2246,0.94303,0.46548,0.12538,-0.79306,-0.086094,-0.096382,0.34789,-0.03775,1.3519,-0.33471,-0.38408,0.31596,0.91116,0.70297,0.18202 -1.6606,0.94304,1.302,2.759,-1.709,0.10333,1.2024,-0.61182,-1.6406,-0.41721,0.15658,0.66083,-0.033124,0.085722,0.73566,1.8587,0.23325,-0.12408,1.2431,-0.17384 -1.8057,-0.83262,-1.0883,0.33792,-1.924,0.46533,0.93513,-0.5521,-0.00055688,0.19294,0.39948,0.045903,0.31203,0.29506,-0.29773,1.0921,0.12477,0.69217,-0.54339,0.034223 -2.4166,-0.60331,-1.2576,1.4821,-1.2759,0.016779,0.35176,-0.33867,-0.34407,0.19061,0.18973,0.069253,0.22227,0.87188,0.22964,-0.066569,0.8952,0.26809,0.45857,1.1207 -2.3964,0.3301,0.092658,2.6971,-1.5412,0.13016,0.53288,-0.18617,-1.1449,-0.58292,0.097876,0.9343,0.25489,1.3518,-0.25421,0.92714,-0.54965,0.048098,0.4619,-0.28126 -0.78691,-0.29639,0.63536,2.4234,-1.5236,1.0598,1.603,-0.77019,-0.35835,-0.84433,0.85885,0.17994,-0.34868,-0.21821,0.53513,0.44816,0.21728,0.37842,0.27804,0.18908 -0.53023,0.027171,1.3459,1.7748,-1.0101,0.1173,0.47168,-0.41573,-1.506,0.60541,0.60438,0.31584,-0.31508,-0.5805,0.41535,1.0212,0.34871,-0.47597,1.1697,0.034641 -1.4847,0.43709,-0.26694,2.5378,-1.0603,-0.32195,0.29882,-0.36813,-1.8612,-0.49707,0.096502,0.33258,1.1824,-0.14908,0.046459,1.4132,0.86646,0.28911,0.5893,-0.27281 -1.1067,0.32114,1.2231,0.60312,-0.78516,0.18258,0.75941,0.21829,-1.1605,-0.029911,-0.35941,1.0347,0.31415,-0.57465,0.53403,0.49528,0.34972,0.24899,-0.034529,-0.51486 -2.2619,0.038623,-1.7537,2.1301,-2.6308,0.79657,0.81242,-1.0349,-0.76242,-0.31281,0.70747,-0.33232,-0.12114,0.84784,-0.24494,0.94194,0.09312,0.14684,-0.14961,-0.1492 -0.56223,0.40458,0.24911,1.552,-0.60701,0.088008,0.38451,-0.65964,-0.56576,-0.49711,0.14046,0.30983,-0.25407,-0.23835,0.36567,0.44141,0.040768,-0.054459,0.67439,0.39787 -1.8765,-0.11302,0.80812,2.2299,-1.7796,1.0201,0.12791,0.82679,-1.3264,0.13828,0.025878,0.5025,0.26587,0.69056,-0.29196,-0.23447,-0.34731,0.054229,0.87531,-0.3824 -0.61125,0.014512,1.7712,0.76862,-1.4937,-0.01553,1.4353,0.55562,-1.5923,-0.064515,0.16216,0.48841,1.0229,-0.46157,-0.72993,0.59337,0.77184,0.11453,-0.93508,-0.013464 -2.987,-0.0024013,-0.68261,0.69287,-2.4294,0.010854,0.69261,-1.5234,-0.66145,-1.1828,0.8484,0.17231,-0.8432,0.85228,0.55819,1.2642,-0.27845,1.4067,0.54221,0.27216 -2.9708,-1.5083,-0.89548,1.3591,-1.8013,-0.50898,0.031601,-1.0032,-0.39086,0.68129,0.28252,0.98817,-0.17778,0.52771,0.23984,0.381,-0.21815,1.1379,-0.2755,1.0123 -1.3724,1.1058,0.18352,1.4418,-1.3216,0.17986,0.73704,-1.0029,-0.86486,-0.8834,-0.10541,-0.093547,0.074715,-0.6556,0.10859,0.81935,0.8543,-0.51864,0.29281,-0.43626 -0.29116,-0.39582,1.1603,0.71892,-0.85189,0.11781,1.0243,0.059959,-1.258,0.28824,0.13038,0.24576,0.87612,-0.4606,-0.52307,0.24202,0.41586,0.40165,-0.65511,-0.202 -2.0943,-0.24616,-1.2167,0.55236,-1.1855,0.22354,0.53206,-0.94595,-0.53291,0.76032,0.047044,-0.15539,-0.060031,0.29818,-0.61901,-0.27145,0.9502,0.42164,-0.87531,0.74412 -3.5687,-0.92471,-1.4558,2.0462,-1.5237,-0.6681,0.51441,-0.83899,-0.85247,0.61983,0.73824,-0.051463,0.31005,0.63244,-0.60071,-0.41292,1.1848,0.9549,0.33456,1.7074 -1.0016,-0.25894,1.1002,1.7747,-0.62439,0.27831,0.94602,0.70438,-0.93175,-0.21908,-0.22812,0.48146,0.20239,-0.024608,-0.69745,0.54459,0.0069746,0.4852,0.25312,0.098317 -0.34399,-0.50588,1.4228,0.9707,-0.92417,-0.37081,0.54867,0.057192,-1.4952,-0.14128,0.58354,0.26443,0.38516,-0.1277,-0.87869,0.93854,0.21856,0.096386,-0.1027,-0.5338 -2.0787,-0.084541,1.2864,1.9694,-1.8085,0.98981,0.44008,0.077154,-0.83753,-0.74216,-0.0052832,0.58879,-0.22469,0.83723,-0.83714,0.67489,-0.83329,0.22887,0.40215,-0.26497 -2.8794,-0.40118,-0.83378,2.3714,-2.2097,1.2004,0.22694,-0.83591,-0.46698,0.41859,0.05433,-0.067089,-0.094745,1.1879,0.31044,-0.18602,0.36363,0.61462,0.21816,0.36069 -1.5159,0.60169,0.40582,1.3704,-1.3296,0.14025,0.67406,-0.26697,-1.1827,-0.53839,-0.29583,0.97836,0.20033,0.74976,0.31535,1.5609,-1.0236,0.1161,-0.044529,-0.43767 -1.7025,-0.49737,-1.151,0.69496,-1.9322,0.50524,-0.1088,-0.51128,-0.36933,0.81831,0.44154,-0.15758,-0.36319,0.8113,-0.42078,0.13991,0.53377,0.1044,-0.49903,0.34799 -1.589,0.69017,0.28763,1.0445,-1.1606,0.35427,0.42865,-1.2806,-0.37674,-1.3078,-0.28574,-0.21118,-0.26587,-0.12929,0.47252,0.53757,0.82146,0.14883,0.21376,0.97947 -1.8295,-0.44153,0.44695,2.4657,-0.86142,0.53763,0.33915,-0.082533,-1.2092,-0.67615,0.14606,0.52412,-0.22912,0.1242,-0.05801,1.2373,0.18906,0.51523,0.41608,-0.26558 -3.8534,-0.89608,-1.4746,1.6417,-2.6243,0.25184,0.71142,-0.79177,-0.76846,1.1035,0.23884,0.77018,0.061314,0.92289,0.35785,-0.24777,0.27393,0.18791,0.20735,0.85405 -2.6115,-0.863,-1.1581,2.0143,-1.9394,0.49251,1.1916,-0.31197,-0.29218,0.28343,-0.098346,-0.37999,-0.043008,1.2609,0.45019,-0.19907,0.34761,0.177,0.26348,0.53147 -2.5616,-1.3361,-1.2415,0.8476,-1.5685,-0.1055,0.68665,-0.65939,-0.61458,1.2465,0.11278,0.74198,0.072243,-0.457,0.015761,0.26995,0.67441,0.27262,-0.6182,0.44424 -1.2962,-0.27308,1.1455,2.8844,-1.4651,0.61221,0.77933,-1.0998,-0.82831,-0.19237,0.4905,0.8714,-0.38403,-0.090472,-0.18204,0.70165,0.10382,0.19443,0.36362,0.58945 -2.2774,-0.67558,-0.42693,1.8765,-1.1968,0.25199,0.71783,-0.0088334,0.05719,-0.46806,-0.020741,-0.0035361,0.11291,1.3133,0.20594,-0.15072,0.27102,0.48435,0.54934,0.14204 -2.4971,-0.47349,-2.0287,1.2477,-1.7423,0.038404,0.89254,-0.29017,-0.747,0.62084,0.2306,-0.35959,-0.027437,0.89598,0.27956,0.4906,1.1638,0.63595,-0.33619,0.69663 -0.74591,-0.48099,1.1911,1.7448,-0.93538,0.34903,0.77658,0.59428,-0.92273,-0.25785,0.63217,0.56846,-0.098246,0.45151,-0.92134,0.63351,-0.34063,0.2153,-0.20724,0.16122 -2.0895,-0.38037,1.3373,3.4595,-2.0912,0.70059,0.34637,0.07144,-1.5455,-0.49523,0.53093,0.71143,0.043882,0.63129,-0.12611,1.3681,-0.14588,-0.047923,1.1892,-0.046617 -0.54001,-0.23906,0.82142,-0.1816,-1.2614,-0.36525,-0.10755,-0.12651,-1.1385,-0.02119,-0.019619,0.38913,0.65922,-0.68106,0.3235,-0.28935,0.49582,-0.34125,-0.57118,-0.13021 -0.73326,-0.23539,0.86675,1.2957,-1.1433,0.33876,0.27272,1.0225,-1.1721,-0.22522,0.41251,1.0048,0.41776,0.078116,-0.3323,0.79909,-0.40776,-0.080302,-0.029203,-0.58841 -1.7668,0.50435,-0.71399,1.7467,-1.6813,0.27568,0.4162,-0.84107,-1.177,-0.21464,0.0948,-0.24328,-0.33407,1.1993,-0.33132,0.66828,-0.40391,0.26614,-0.49389,0.13217 -0.24995,-1.0445,1.4469,0.61471,-1.0345,-0.88604,0.93111,0.077884,-2.0257,-0.45349,0.17765,0.22421,1.1542,-0.30899,0.084451,0.39521,0.32526,-0.0089828,-0.47703,-0.75313 -1.4511,0.68374,0.8076,2.028,-1.2477,0.5411,0.4336,-0.23063,-1.6212,-0.27237,0.0075128,1.2571,0.027714,-0.37146,0.69191,1.5312,0.31145,0.098709,0.88257,-0.8795 -2.0194,0.93952,-0.48464,0.11055,-1.2376,-0.59011,1.0735,-0.3388,-1.5525,-0.76818,0.34855,0.22387,0.42063,-0.3113,0.6121,1.2422,0.82574,0.34866,1.1097,-0.38952 -1.7694,0.10462,0.77238,2.2019,-0.92275,0.42516,0.055739,0.1423,-1.4242,-0.30467,-0.12131,0.80111,-0.044503,-0.25509,-0.13948,1.0718,-0.093807,0.12953,0.56463,-0.76273 -1.9975,-1.1339,-0.065163,-0.35654,-0.90611,0.21512,1.7297,0.052019,-0.46226,0.47213,-0.76892,0.63885,0.78491,-0.71261,-0.13452,0.31141,0.097146,0.84252,0.13972,0.12685 -0.47944,0.16153,0.37707,1.9608,-1.2769,0.75217,1.4268,-0.44085,-0.098557,-0.051198,0.40593,0.31113,-0.27727,0.29716,-0.31403,-0.088192,0.020532,0.064016,-0.086729,0.21113 -0.4665,-0.34163,0.82202,0.55471,-1.1846,0.079438,0.73854,0.89998,-0.88866,0.26503,-0.091025,0.80978,0.67522,-0.12375,-0.47785,0.24326,0.11806,-0.034285,-1.0965,0.27393 -3.1465,-0.42612,-1.4934,1.7569,-2.8418,0.83158,0.17555,-1.1032,-0.49366,0.42479,0.61616,0.43879,-0.59274,0.97172,0.25401,0.53177,0.33458,0.17494,0.40737,0.41738 -1.0441,0.79676,0.58647,1.7408,-0.50673,-0.27213,0.5866,-1.0882,-0.62601,-0.53474,0.2597,0.2717,-0.29889,-0.16923,0.38389,0.30998,0.31007,-0.19364,0.95582,0.19751 -0.40934,-0.38311,1.6161,0.13287,-2.1341,-0.36594,0.48596,-0.17961,-1.6456,-0.074771,0.39246,0.61652,0.97224,-0.7988,-0.4211,0.28421,0.79601,-0.0083505,-0.68319,-0.076435 -2.5348,-1.1366,-0.96873,0.79495,-2.1147,0.93619,0.9206,-0.071952,0.083991,0.75107,-0.25627,0.31656,0.3366,0.93179,0.26283,0.86443,-0.045008,0.3961,0.19825,0.33212 -1.6654,0.26325,-0.9078,0.79166,-2.485,0.15814,0.73993,-1.0135,-0.85571,0.019198,0.58578,-0.51157,-0.64096,0.22803,-0.033396,0.71471,0.25022,-0.20735,0.43584,-0.52443 -3.0876,-1.1703,-1.0701,0.44039,-1.4687,0.16322,1.6765,-0.23528,-0.65775,0.74393,-0.50268,-0.0052635,0.54334,-0.47947,0.6117,0.18807,0.87491,0.64311,-0.095715,0.61911 -0.84488,-0.34008,0.73327,2.3186,-1.0465,0.45908,0.80366,-0.50622,-0.96934,-1.0602,0.6659,0.20886,0.074518,-0.69376,0.10475,0.39307,0.47275,0.057188,0.45055,0.6415 -2.3202,-0.78863,-0.47381,1.8402,-1.7239,-0.074381,-0.083123,-0.80465,-0.60495,0.35741,0.25296,-0.28339,-0.51603,0.49047,0.10088,-0.81093,0.34734,0.11433,-0.38611,0.75407 -0.84531,-0.28453,1.0931,2.231,-0.88369,0.11543,0.55142,-0.7624,-0.75807,-0.18945,0.36998,-0.0012486,-0.078735,-0.55093,0.047935,0.61751,-0.16512,-0.17908,0.79085,0.65599 -2.4897,-0.71583,-1.2984,1.2252,-1.9166,0.33137,0.33302,-0.73225,-0.27777,-0.01575,0.16956,-0.39729,-0.16224,0.94976,-0.36974,0.72627,0.54917,0.59935,-0.66767,0.34602 -1.7983,0.49662,-0.88519,1.3235,-1.5533,0.78402,0.1073,-0.93895,-1.1379,-0.11088,0.40126,-0.68737,-0.51332,0.9605,-0.70256,0.29306,0.26336,0.34817,-0.44173,-0.11546 -0.92491,-0.051738,0.80739,2.4264,-0.76153,0.33198,0.67626,-0.6998,-1.1445,0.10088,0.7067,-0.64861,0.073581,-0.64154,-0.15355,0.38105,-0.058636,-0.55716,0.69722,0.10561 -2.3701,-0.07842,-1.0096,2.3646,-2.3901,0.40276,0.66039,-0.55349,-0.20949,-0.28162,0.41893,0.42909,-0.038401,1.6352,0.46674,0.39083,-0.46763,0.051138,-0.25269,0.80874 -2.5817,0.22211,-0.24164,2.9446,-1.991,0.0087572,-0.49964,-1.1096,-1.4031,-0.10329,0.76378,-0.091018,-0.44178,0.99871,0.034425,0.61531,-0.061053,0.33473,0.7509,-0.20128 -0.93731,0.23917,1.6255,0.91052,-1.3507,0.43188,0.76812,-0.16908,-1.3233,0.29472,-0.12358,1.2635,0.45089,-0.74997,-0.24249,1.0095,-0.0064721,-0.16351,-0.37311,-0.50768 -2.7686,-0.43126,-1.6282,1.1786,-0.96759,-0.72662,0.75909,-1.1974,-1.1821,0.42443,0.62543,0.42399,-0.15936,-0.041796,0.15955,-0.2352,0.39174,0.45088,-0.52069,1.1619 -1.9657,-0.49034,1.2511,2.9993,-2.001,0.48057,0.36253,-0.64011,-0.84115,-0.74381,0.63244,0.70135,0.027721,0.46918,-0.25671,1.4432,-0.20022,0.28104,0.8221,-0.38762 -1.6142,0.34354,-0.75819,1.678,-1.6875,0.35558,0.5005,-1.3129,0.12634,-1.0309,0.46761,0.53668,-0.11066,0.67881,0.47347,0.85031,-0.056697,0.095518,-0.02374,0.58073 -2.3754,-1.3133,0.45505,1.1747,-1.9992,1.4045,1.6879,0.44783,0.13878,-0.072833,0.086092,0.088038,0.21989,1.238,0.070325,-0.69432,-0.25612,0.91966,-0.017822,-0.1341 -2.4081,0.55121,0.046756,2.9115,-1.5678,0.052109,-0.035943,-0.96799,-1.3349,-1.1773,0.37616,0.6144,-0.34745,0.7597,0.47255,1.2596,-0.13389,0.25378,0.87631,-0.046207 -0.8551,1.1501,0.022878,2.035,-1.1487,0.095108,0.71567,-0.78135,-1.0656,-0.71867,-0.042897,0.68594,0.63019,-0.28704,0.091158,1.0544,0.43378,-0.28198,0.39175,-0.21328 -2.0429,0.21672,-1.4029,0.63115,-1.5239,0.21574,0.39041,-1.0849,-1.085,0.90127,0.44948,0.091575,-0.46681,0.48426,-0.16141,-0.65689,0.20567,0.28299,-0.81135,1.0619 -2.6456,-0.37852,-0.64401,3.3716,-2.103,0.21183,1.0135,0.24265,-1.2441,-0.64997,0.21908,-0.20958,0.41949,1.1411,-0.079641,0.34595,0.4761,0.90549,0.61026,0.14125 -2.4883,0.2899,-1.041,0.94006,-2.3902,0.38075,0.029232,-1.8304,-0.54956,-0.21302,0.84214,-0.36494,-1.0837,0.31385,0.22093,0.24377,0.60124,0.59616,0.54831,0.50974 -1.0993,0.25747,1.5176,2.4002,-1.3402,0.27616,0.52185,-1.1754,-0.78515,0.28623,0.67506,0.53514,-0.37024,-0.073442,-0.11484,0.78544,-0.060116,-0.49348,0.93927,-0.24387 -1.1096,-0.55157,0.19315,1.5321,-1.2958,0.62321,0.56375,0.59623,-0.66115,-0.33828,0.18903,0.23144,0.1433,0.059563,-0.22336,0.24289,-0.52856,0.24992,0.20667,-0.81781 -1.8413,-1.3258,2.0999,1.5918,-2.4638,-0.1112,1.4198,1.4572,-1.6505,-0.88265,0.52265,0.49943,0.19608,0.97792,-0.085442,0.11977,0.35661,0.38792,-0.040314,0.87613 -0.69345,-0.10067,-0.44562,0.65599,-0.83085,0.573,0.45329,0.12478,0.33622,-0.10887,0.026887,0.094759,0.28379,0.40745,0.26653,-0.09459,0.32002,0.022655,0.037067,0.0084807 -2.3604,0.086595,-0.2888,3.2956,-1.6923,0.48631,0.39179,-0.38899,-0.71958,-0.73186,0.11876,0.1444,0.12981,0.86833,-0.37875,0.46036,0.43353,0.045177,0.40398,-0.14218 -1.4723,0.054808,0.11552,0.96778,-1.7445,0.97152,-0.2085,-0.83026,0.17778,-0.84626,0.34628,-0.16199,-0.43021,-0.16804,0.49758,0.44035,0.60392,0.28621,0.68373,-0.087493 -2.2775,-0.83662,0.81193,3.0437,-1.8653,0.4136,1.3552,0.89353,-0.55431,-0.37255,0.24788,-0.065802,0.13401,1.1256,-0.16778,-0.30785,0.39067,0.16388,0.51116,0.54471 -0.52666,-0.13924,1.3441,1.0076,-1.157,-0.085627,0.67619,0.22464,-1.0231,0.46918,0.10735,1.0039,0.59596,-0.36565,-0.15811,0.6987,0.51217,0.059552,-0.16137,-0.46321 -1.5138,-0.56282,-1.0182,-0.3011,-0.91864,-0.31721,1.3825,-0.091674,-0.81695,0.83862,0.46923,0.77872,0.53923,-0.37859,0.19512,0.52269,0.4207,0.91255,-0.25674,0.25086 -1.2167,0.038511,1.1467,1.5825,-1.0996,0.6004,0.63734,0.63308,-1.381,-0.14857,-0.30891,1.2299,0.7777,0.017737,-0.60133,1.0192,0.063293,0.26407,-0.18813,-0.69656 -0.80326,-0.55704,0.65118,0.83371,-0.9253,0.76625,0.71681,-0.20718,0.19003,-0.53897,0.10043,0.21408,0.12263,-0.20118,0.13363,0.31217,-0.32622,0.60428,0.027448,-0.12958 -2.5736,-1.3291,-0.73868,0.99672,-2.6369,1.1871,1.337,-0.75457,-0.58461,0.79646,0.074051,-0.090798,0.15533,0.019044,-0.26001,-0.42091,-0.27788,0.75216,-0.45094,0.0103 -0.71813,0.53186,0.95069,1.9187,-1.1752,0.093552,0.69834,-1.287,-0.33415,-0.010508,0.43778,0.35661,-0.5922,0.35577,-0.077564,0.60508,-0.18092,-0.23236,0.53409,0.16948 -0.20136,-0.52104,0.66262,0.1161,-0.94182,-0.034394,0.2113,-0.038049,-1.0622,0.31921,0.085285,0.43989,0.54849,-0.046542,-0.053492,0.0019384,0.39559,-0.029316,-0.62567,-0.085475 -2.1349,-1.0095,-0.98616,0.75349,-1.2153,-0.33136,0.83763,-0.52315,-0.44724,0.6704,0.072683,-0.19605,0.053542,-0.59114,-0.37581,-0.1914,1.2575,-0.075988,-0.81914,0.91606 -1.5306,-0.65099,-0.359,1.9808,-1.5964,0.6436,-0.24492,-0.7418,0.3817,-0.35722,0.20473,0.14392,0.23441,0.69651,-0.22185,0.32468,0.55556,0.35416,0.11818,0.20649 -2.8733,-0.93486,0.11759,1.6264,-1.8553,1.5979,0.46742,-0.12814,-0.077772,0.077985,-0.26187,-0.088472,0.22922,0.39694,0.26287,-0.4317,0.3233,0.82678,0.088547,0.39597 -2.2392,-0.64713,0.059242,2.3866,-1.8146,0.56844,1.3029,0.52576,-0.59052,-0.0831,-0.37032,0.53039,1.3827,0.60929,-0.027904,0.76773,0.5641,0.23538,-0.07974,-0.89864 -1.665,1.0157,0.15763,2.4592,-1.5457,0.72875,0.57587,-1.461,-1.2965,-1.0783,0.35827,0.27396,0.096995,-0.52504,0.094211,1.2866,0.50215,0.2681,0.53882,0.48182 -0.383,-0.072364,1.3489,0.48569,-1.2211,-0.038691,0.37909,-0.093762,-1.5853,0.075374,0.46765,0.61256,0.67153,-0.65476,-0.53952,0.66192,0.77236,0.022881,-0.46281,-0.48134 -1.8192,-0.039663,1.0647,2.0556,-1.1537,0.57682,0.88227,0.3543,-1.0529,-0.47509,-0.36823,0.60332,0.58171,0.67457,-0.83572,0.83387,-0.41455,0.34534,0.2649,-0.65093 -4.1192,-1.2914,-0.46489,1.8478,-2.189,0.38081,0.45994,-0.54027,-0.4773,0.53489,-0.20081,1.058,0.094839,1.6812,0.48117,-0.35972,0.3043,0.78344,0.24668,0.70866 -1.771,-0.45057,-0.72982,1.0551,-1.2155,0.37474,-0.12707,-0.64959,-0.65359,0.75949,0.15596,-0.063799,-0.089123,0.37483,-0.32766,-0.32497,1.592,0.55099,0.057239,1.017 -2.723,-1.2418,-1.9586,1.1884,-1.8702,-0.084521,0.60018,-0.72112,-0.8075,1.2051,0.46946,0.44184,-0.2929,0.076887,0.30126,0.13814,0.88687,0.30165,-0.51599,0.81798 -0.88715,1.2987,0.47156,1.0609,-0.70634,0.22531,0.76248,-0.49283,-1.3105,-0.5869,-0.17534,0.65281,0.25399,-0.9351,0.44403,0.663,0.73116,0.048392,0.58219,-0.1429 -2.094,-0.682,-0.03169,2.7601,-1.366,0.63376,-0.18292,-0.26051,-0.53151,-0.3902,0.49397,-0.20894,0.20723,1.1267,-0.64509,-0.01276,0.58299,0.8137,0.74793,0.25422 -1.0118,0.62389,1.9041,0.54696,-2.4054,0.23961,0.6168,-0.10473,-1.6758,0.26988,0.43976,0.79622,0.96444,-0.52927,-0.56727,0.41639,0.97342,0.28149,-0.97428,-0.06036 -0.69191,0.40784,-0.098192,0.57109,-0.94179,0.66666,0.018607,-0.037958,-1.4705,-0.31399,0.24183,0.66894,0.41536,-0.29452,0.36734,0.39884,0.96592,0.52127,-0.18382,-0.45883 -0.68869,-0.59712,1.5483,1.7663,-0.94238,-0.06197,0.61357,-0.31131,-0.74081,0.2059,0.33279,0.15247,0.039288,0.53336,-1.0367,0.71092,0.10977,0.43815,0.26311,0.38691 -1.7781,-1.1612,0.78907,2.2074,-1.4806,1.1604,0.69679,1.2444,-0.45176,-0.64548,0.30423,0.35763,-0.018856,0.7513,-0.1217,-0.10152,0.10356,1.4608,0.096267,0.7692 -2.8911,-0.55033,0.19462,2.0219,-1.3949,1.0437,0.66374,0.40188,-0.095595,0.093618,-0.4531,-0.016648,0.55247,1.1013,0.74805,-0.571,0.83941,0.96347,0.29644,0.39358 -0.87332,0.095671,0.42529,2.248,-1.8319,0.8737,0.43917,-0.41068,-0.68185,-1.0762,1.3079,0.12386,-0.15658,-0.15703,0.1772,0.6243,-0.11918,0.11208,0.67309,-0.14309 -2.0909,0.81095,-0.11266,0.7824,-2.4302,-0.096395,0.3427,-1.3552,-0.57168,-1.6,0.3812,-0.29174,-0.090316,-0.35233,-0.038861,1.1892,0.58015,-0.77447,-0.0083623,0.26477 -2.4244,0.39905,-1.4514,1.1683,-1.1513,-0.92799,0.82564,-0.96805,-1.7337,0.35815,0.93588,0.36943,-0.19339,-0.18785,-0.022162,-0.63248,-0.76103,0.46204,-0.093107,0.27146 -2.8035,-0.13224,-0.66086,1.9964,-2.5422,0.6745,0.12577,-1.1758,-0.39938,-0.12294,0.71466,0.26518,-0.31573,1.3682,0.30753,0.56902,-0.17184,-0.29395,1.1762,0.12436 -1.4219,0.33046,0.078001,1.6028,-1.2964,0.35635,0.28022,-1.6124,-0.11641,-0.73898,0.12071,-0.26406,-0.11449,0.12093,0.32439,0.42424,0.54584,0.16125,0.46795,0.89606 -1.1493,0.077717,1.1682,0.019904,-1.91,0.70323,0.39624,-0.37729,-0.058187,-0.4449,-0.52019,0.39115,0.006406,0.071443,0.55297,1.2533,-0.39066,0.21899,0.35859,0.5041 -2.4237,0.13735,0.39608,1.55,-2.3862,0.66971,-0.41316,-1.1492,-1.3998,-0.27351,0.89031,-0.55918,-1.0069,0.082385,0.17011,0.38976,0.13188,0.59339,0.68168,0.0010559 -0.58434,0.15486,1.0054,2.1345,-0.88919,-0.0082598,1.137,-0.66963,-0.87585,0.11825,0.63532,-0.1475,-0.25333,-0.49679,0.08748,0.32219,-0.13766,-0.40953,0.61613,-0.49297 -1.1915,0.72722,0.87693,1.6411,-1.038,0.13698,0.66254,0.010146,-1.0135,-0.40187,-0.12167,0.88829,0.018064,0.5869,-0.29873,1.1065,-0.55969,0.015276,0.20045,-0.642 -0.71463,-0.1073,0.76172,2.8603,-1.7955,0.52027,0.89803,0.16839,-1.2502,-0.64301,1.2838,0.87873,-0.1545,-0.057587,0.26764,0.84808,-0.15978,-0.23287,0.55677,-0.29366 -0.96317,-0.61132,1.0513,2.4301,-1.1466,0.41047,0.26917,-0.36431,-0.43742,-0.56891,1.0534,0.54887,-0.21722,0.042077,0.07325,0.64243,-0.11627,0.042916,0.93817,0.35703 -1.2644,0.57443,0.87319,0.90537,-0.89153,0.66402,0.50106,-0.51427,-1.6843,-0.71766,-0.22654,-0.26098,-0.08929,-0.70909,0.056594,0.89473,0.87746,0.4424,0.59628,0.2731 -0.58715,-0.16626,1.6439,1.1124,-1.532,0.28269,0.57701,0.31093,-1.5381,-0.29392,0.72829,0.70029,0.3325,-0.23128,-1.0655,1.0248,-0.2132,-0.16243,-0.41733,-0.21062 -2.2689,-0.73022,-0.7329,1.5715,-2.2924,1.1378,1.2698,-0.32132,-0.72642,0.6973,-0.13763,-0.32735,0.49878,1.0381,0.34818,-0.51334,-0.055795,0.78869,-0.27113,0.57684 -1.8682,-1.1029,0.18691,1.8741,-0.82393,-0.039135,0.11099,-0.25192,-0.38131,0.01919,-0.086367,-0.035976,-0.1613,0.23677,-0.032306,0.049044,0.12518,0.44084,0.053313,0.65093 -0.34731,-0.83488,1.1028,0.55085,-1.0609,-0.32217,0.19583,0.0047467,-1.433,0.27534,0.19234,0.67516,0.97176,-0.115,-0.34349,0.49275,0.48194,-0.085198,-0.6243,-0.51672 -0.40535,0.0016273,1.2034,0.42443,-0.96859,0.25099,0.49228,-0.16766,-1.2912,0.39077,0.10011,0.47887,0.51414,-0.59504,-0.46199,0.54855,0.57091,0.038708,-0.50456,-0.3195 -0.88094,-0.21374,1.5226,1.0729,-1.5697,0.12001,1.1467,1.0886,-1.9389,-0.71057,0.54659,0.69226,0.48214,0.19221,-0.65965,0.60444,0.21541,-0.16213,-0.86713,-0.16422 -1.6769,0.51248,0.041755,2.17,-1.8879,-0.082838,0.63995,-1.2906,-1.414,-0.71498,0.49884,0.64295,0.013189,-0.10763,0.23245,1.9116,0.065677,0.0076246,0.26204,-0.013914 -1.1989,1.0499,0.3116,1.1275,-0.81999,-0.18818,0.94583,-0.81554,-1.5548,-0.56009,0.16133,0.38898,0.52596,-0.71364,0.76746,1.1055,0.16553,0.20633,0.65002,0.31491 -1.1526,0.44112,0.54707,1.9572,-1.4634,-0.047943,0.36755,-0.74194,-1.3918,-0.36805,-0.0080943,0.89849,0.31054,-0.65945,0.46727,1.5388,0.57812,-0.11992,0.70954,-0.54161 -2.1009,-1.0684,-0.7018,0.88471,-1.7161,0.46025,1.1404,1.0741,-0.23457,0.97305,-0.36482,0.24685,0.98973,1.0516,0.35355,0.13199,0.35001,0.44873,0.951,0.10549 -1.7618,0.35856,-1.5287,1.7087,-2.2967,0.522,0.54813,-1.069,-0.60616,-0.44098,0.74542,-0.55711,-0.18996,0.8051,-0.41955,0.56975,0.022128,-0.32557,-0.068572,-0.20866 -1.3604,-1.0432,-0.80434,0.40016,-2.1684,0.56588,0.68392,-0.30395,-0.11852,0.51388,0.0069368,-0.15487,0.61277,0.61747,0.33829,0.6617,0.38268,0.65682,0.13695,-0.17323 -1.9656,-0.31898,-0.77392,2.0856,-1.3653,0.093421,0.046596,-0.49611,-0.62258,-0.434,0.52559,0.19138,0.18138,0.92233,-0.22401,0.65722,0.15522,0.72265,0.072503,0.62925 -2.5864,-0.96542,-1.6274,1.0605,-1.5246,-0.65295,1.9113,-0.57698,-1.1115,0.41451,0.451,-0.15967,0.1478,-0.69421,-0.018335,0.16668,-0.06067,1.119,-0.60417,1.4072 -1.8111,0.23946,-0.064197,2.185,-1.7421,0.8082,-0.59676,-0.55292,-1.635,-0.19935,0.87171,-0.31589,-0.29313,0.16288,-0.72049,0.047092,0.28357,0.17175,0.17075,-0.13224 -1.5757,-0.47101,0.4818,2.4861,-1.3195,0.5827,0.29343,0.10139,-0.4413,-0.63512,0.39818,0.10632,-0.07173,0.28803,-0.4002,0.039007,-0.16572,0.20953,0.29215,0.1223 -2.266,-0.92689,0.56877,0.49045,-1.6901,1.0915,2.0213,0.52542,-0.052508,-0.58629,-0.3066,-0.38366,0.019693,0.46932,0.84305,-0.52698,-0.015902,0.79472,-0.0026451,-0.080606 -2.3707,0.023791,0.15253,2.4031,-3.0716,0.53545,1.3725,-0.85564,-0.42039,-0.59743,1.2308,0.12355,-0.21811,0.99944,0.17284,1.1721,0.14891,-0.59098,1.4146,0.58262 -3.1933,-1.384,-0.81807,1.352,-1.7627,0.20302,0.89945,-0.81622,-0.38609,0.63028,-0.66075,0.48285,0.07093,0.060688,0.31132,-0.11705,0.59241,0.64342,-0.54163,0.50756 -1.5211,0.23568,-0.36383,2.4329,-1.1874,-0.56998,0.85336,-0.11351,-0.58071,-0.44897,0.67747,0.56915,0.41237,0.60787,0.047671,1.0137,-0.30546,-0.66401,0.67811,-0.2355 -1.1034,0.51593,0.75688,1.3844,-0.61379,0.37913,1.0276,-0.25176,-0.93362,-0.079399,-0.4305,0.96194,0.73912,-0.29419,0.24511,1.0813,-0.052656,0.51753,-0.029139,-0.34028 -1.4713,-0.31677,0.7428,1.8221,-1.4143,0.90965,-0.31541,0.44497,-1.347,0.025487,0.40874,0.65112,-0.51156,0.59938,0.14199,0.67222,-0.47044,0.08351,0.67347,0.051058 -1.2112,0.72798,1.0142,2.4438,-1.66,0.76422,0.49282,-0.84336,-0.63014,-0.35576,0.6694,0.42798,-0.66311,0.07962,0.17642,0.76683,-0.36361,-0.2649,0.84832,-0.081669 -2.4775,-0.31604,-0.95305,1.0923,-2.0629,0.015301,-0.021319,-1.2358,-1.1629,0.95217,0.41204,0.16453,-0.59276,0.069072,-0.68913,-0.84722,0.92296,-0.42674,-0.61749,0.77696 -1.9232,0.2038,-0.51725,2.1849,-1.9687,0.84515,0.1792,-1.285,-0.43241,-0.68802,0.29011,-0.019062,-0.37383,0.59435,0.12302,0.76551,-0.025251,0.46801,0.49323,-0.054716 -2.0183,-0.71061,-1.2406,0.54875,-1.0851,-0.29687,0.51184,-0.37136,-0.60676,0.99253,0.081456,-0.089609,0.11105,-0.24881,0.19239,0.3417,1.0596,0.52381,-0.36346,1.164 -2.609,-0.69817,-0.93879,1.1118,-1.281,0.63095,1.3289,-0.082066,-0.22499,0.51389,-0.41481,-0.12264,0.63583,0.65118,0.76153,-0.63257,1.0933,0.33235,0.41123,0.46806 -3.5322,-1.3049,-0.64086,0.8559,-1.5634,-0.13998,2.0008,-0.34123,-0.93979,0.65888,-0.39828,0.9233,0.79735,0.72449,0.54476,-0.28635,-0.086466,0.63711,-0.3277,1.1621 -1.3935,0.14193,0.92728,2.9502,-1.465,-0.0069337,0.84025,-0.60475,-0.61955,-0.546,0.26144,0.42724,-0.20568,0.26972,0.025335,0.57186,0.13206,-0.11025,0.42214,-0.60138 -1.9842,-0.64993,-0.60789,1.5368,-1.3298,0.53747,-0.078471,-0.52183,-0.57786,0.54615,0.57215,-0.53044,-0.10144,0.16844,-0.76727,-0.8681,1.1797,0.21401,0.017669,0.69693 -3.2089,-0.2076,-1.567,0.83322,-1.3966,0.11235,1.2927,-1.0747,-1.5672,0.99098,0.15267,0.27349,0.00040145,-0.29928,0.57363,-0.25346,0.85871,0.41401,-0.70057,0.6322 -0.54648,-0.22488,1.1506,1.4188,-0.57781,0.11806,0.78784,-0.082367,-1.1624,0.80228,-0.098145,0.27077,0.45714,-0.2346,0.081408,0.94093,0.48384,0.087968,0.56362,-0.32052 -2.441,-1.1524,-0.20077,1.6393,-1.3885,0.79142,0.2819,0.26289,0.40171,0.30826,-0.34465,-0.012693,0.49551,1.1079,0.32367,-0.28748,0.95889,0.71659,0.68433,0.59951 -0.78629,-0.072607,1.3465,0.3882,-0.80827,-0.19621,0.44267,-0.088415,-1.3589,0.4505,-0.47048,0.29466,0.48019,-0.27847,0.15729,0.85604,0.71961,-0.072767,0.109,-0.18549 -1.2721,0.55571,1.1468,2.9652,-1.6943,-0.06075,1.3035,-1.2812,-0.87909,0.12971,0.47075,0.60467,-0.079398,0.10586,-0.15421,0.97453,-0.056581,-0.92754,0.89371,-0.52925 -2.2066,-0.7122,0.16328,1.3628,-2.6134,0.91854,0.37214,-0.81532,-0.24797,-0.26486,0.053197,-0.093976,0.016835,0.70173,0.11889,0.42033,-0.63348,0.95013,-0.31562,0.37445 -1.9374,-0.8084,-1.0317,-0.049072,-1.9973,0.4765,1.0575,-0.53223,-0.30453,0.89106,0.30274,0.51954,0.084261,0.28235,-0.22597,0.80568,-0.35576,0.30155,-0.34503,0.15577 -1.8987,-0.62303,-1.347,1.633,-2.1941,0.43148,0.23355,-0.42108,-0.58005,0.058059,0.61724,-0.67828,0.032498,0.60726,0.010107,-0.043766,0.36325,-0.054664,-0.32572,0.6317 -0.74459,0.77151,0.27665,0.66676,-1.1022,-0.047283,0.51869,0.18781,-0.99436,-0.43579,0.54484,-0.40842,0.12817,0.42113,0.22675,-0.040856,0.45448,0.29362,0.24063,0.74652 -1.2409,0.36549,1.604,1.4203,-1.3888,0.47547,0.81448,0.4498,-1.7428,-0.16249,0.03211,1.3593,0.60819,0.051224,-0.60875,1.3672,0.094902,0.060957,-0.43485,-0.86791 -0.47959,-0.22114,1.3113,0.40674,-0.80343,-0.19434,0.47933,-0.051461,-1.1756,0.17698,0.2577,0.20347,0.34634,-0.46335,-0.366,0.78582,0.17399,-0.29335,-0.32115,-0.36111 -0.40165,-0.19181,1.0276,0.444,-1.0647,-0.11178,0.62796,0.40164,-1.2466,-0.04342,0.20329,0.23809,0.33249,-0.48628,-0.67549,0.45425,0.38216,-0.09411,-0.62127,0.27123 -1.3204,0.32118,1.3306,1.039,-0.77406,0.1884,0.96291,-0.34686,-0.94383,-0.56156,-0.42576,0.5131,0.29242,-0.29477,-0.1814,0.98237,-0.26835,0.079859,0.37357,-0.67025 -1.0789,0.10065,0.15507,1.7739,-1.6019,0.38134,0.052332,-1.0034,0.10179,-0.98298,0.5374,-0.071852,-0.11749,-0.12977,-0.29715,0.4349,0.40078,-0.46158,0.31497,0.28431 -2.3308,0.056179,-1.2322,1.9895,-1.7333,0.20256,0.21069,-1.0234,-0.27351,-0.81784,0.45324,0.60941,0.024675,1.3316,0.51288,0.81846,-0.05523,0.47744,-0.099422,0.51374 -1.4108,0.70899,1.5637,1.7707,-1.4334,0.28354,0.33646,-0.38112,-1.1505,-0.34178,0.14319,1.0856,-0.36948,0.05501,-0.26755,1.188,-0.14991,-0.05985,0.83297,-0.86981 -1.9344,-0.40982,0.69138,2.2972,-1.7392,0.66308,0.075757,-0.12993,-1.7111,-0.69036,0.094304,0.51489,-0.22164,0.014315,-0.094007,1.8023,0.05469,0.62823,1.0649,-0.40721 -1.3901,-0.3533,-0.69594,1.2837,-1.5353,0.84192,0.33333,-0.33609,-0.078699,-0.041985,-0.19155,-0.29889,0.21204,0.6302,0.015684,0.38569,0.68648,0.2804,-0.54344,0.53274 -1.3207,0.085021,0.083289,1.8472,-0.74993,0.23796,0.56994,-0.21131,-0.40179,-0.23221,-0.041377,-0.19967,0.18442,1.0537,0.23669,0.050349,-0.4491,0.11466,0.76102,0.13357 -2.4067,-1.4448,0.21774,0.57373,-1.9074,1.2132,1.0441,0.10669,0.13247,0.4734,-0.6283,0.49335,0.63327,0.61616,-0.26891,0.26688,-0.30166,0.88537,-0.051306,-0.05436 -2.3799,-1.0467,-0.89834,0.0061965,-1.5477,-0.037925,1.7352,0.075906,-0.76315,0.66541,0.22467,-0.10689,0.12468,-0.94267,0.20962,0.18452,0.48292,0.92073,-0.27871,0.85927 -0.75578,-0.27087,0.76484,0.44802,-0.89045,0.070166,-0.066153,0.33083,-0.99225,0.18411,-0.2807,-0.048383,0.91934,-1.017,-0.12549,0.0024655,0.32531,-0.28329,-0.1787,0.050309 -1.4092,0.0096577,0.74828,1.9903,-1.001,0.23253,0.87152,-0.8085,-0.4458,-0.26103,0.15189,-0.23719,-0.035131,-0.47313,0.01791,0.49425,0.48631,-0.68373,1.1792,0.082696 -2.5213,-0.88008,0.47565,2.3682,-1.8111,1.141,0.87278,0.68513,-0.14618,-0.51469,-0.30821,0.025221,0.35092,0.98537,-0.19299,-0.14737,0.56145,1.3275,0.23252,0.67399 -0.44477,-0.31744,1.4895,0.48046,-1.0503,-0.29305,0.28051,0.042552,-1.4682,0.046404,0.50489,0.44278,0.23677,-0.38456,-0.28431,0.88013,0.58071,-0.1861,0.13338,-0.61389 -0.31678,-0.059982,0.39156,1.287,-0.68478,0.65128,0.59492,-0.33545,-0.39241,-0.38655,0.46681,0.175,-0.29741,-0.5067,0.32912,0.29056,-0.12282,0.1636,0.30562,0.34487 -1.767,0.42781,1.166,2.6136,-1.9326,0.57667,0.26463,0.8531,-1.7851,0.35262,0.21221,1.2339,0.51526,-0.16411,-0.11692,0.28673,0.45459,-0.27788,0.30406,-0.46703 -1.6958,0.081006,0.66966,2.6016,-1.0439,0.30989,1.1298,0.7365,-0.76776,-0.72387,-0.20859,0.35778,0.73842,0.57686,-0.53523,0.32578,0.28665,0.34045,0.56015,-0.62347 -2.0449,0.76973,-0.61506,2.9023,-1.8365,-0.037149,0.39314,-1.1996,-1.6332,-0.9471,1.175,-0.26151,0.51409,0.44266,-0.46357,1.4245,0.27169,0.18597,0.53395,0.105 -1.0877,0.6385,0.56885,2.0539,-1.7354,0.86395,0.74521,-0.67393,-0.921,-1.1475,0.72543,-0.10143,-0.28629,-1.1047,0.35316,0.83593,0.43094,-0.28866,0.69711,-0.16198 -0.95593,0.8881,0.76618,0.64386,-1.2242,-0.02256,0.5509,-0.50205,-1.145,-0.59579,-0.17181,0.9179,0.5807,-1.2096,0.93924,0.49019,1.8312,0.023219,0.13578,0.19773 -0.73678,-0.3326,1.2856,1.1235,-0.90115,0.20979,0.87428,0.7148,-1.286,-0.74688,0.25709,0.71099,0.41464,-0.046703,-0.52886,0.94161,-0.34392,0.020278,0.056957,-0.63511 -1.4765,-0.62732,-0.13436,2.4497,-1.9636,0.56645,1.0315,-1.0085,-0.6739,-1.1792,1.1537,-0.20118,0.13356,-0.27957,0.10904,0.70233,0.47533,0.089094,0.68751,0.14417 -1.3453,-0.16606,-0.82632,1.0846,-2.1938,1.0022,0.069003,-0.58473,-0.090912,-0.13188,0.37279,0.046073,0.090679,0.69906,0.2504,0.19932,-0.077668,0.12583,0.040295,-0.21936 -0.91455,-0.080756,1.753,0.9585,-1.4191,0.088864,0.97044,-0.16397,-1.7164,0.73504,-0.2149,1.2227,0.70969,-0.27837,-0.50722,1.0513,0.53991,0.21976,-0.91319,-0.41519 -1.9844,-0.91371,-0.90715,-0.26896,-1.1262,0.077908,1.3701,0.33149,-0.77125,1.0684,0.18983,0.49232,0.49955,-0.48817,-0.059708,0.26415,-0.0012817,1.5145,-0.059854,0.84547 -1.4023,0.73369,0.073057,0.92054,-2.0473,0.30737,-0.083558,-1.0879,-0.56867,-0.97952,0.34537,-0.6156,-0.15274,-0.22456,-0.15628,0.9707,0.53814,-0.53547,0.60359,-0.0044331 -1.48,-0.014103,-0.22726,1.822,-1.7562,0.35285,0.043654,-0.97068,0.25457,-0.74088,0.52467,-0.1012,-0.073673,0.1833,0.023516,0.82254,0.5632,-0.4666,0.29108,-0.37726 -1.4665,0.39433,-0.092239,1.4087,-1.0462,0.50887,0.030213,-0.93898,-1.1903,-0.56003,0.46383,-0.34577,-0.76416,0.14152,-0.31958,0.53394,0.18766,0.41759,0.58435,-0.49548 -0.29867,-0.54791,0.058443,1.6896,-1.0175,0.7366,0.86817,-0.33323,-0.69959,-1.0114,0.96625,0.44295,-0.12073,-0.49432,0.72782,0.4378,0.28105,0.6651,-0.063052,0.50083 -3.6792,-1.7382,-0.27302,1.8897,-2.3194,0.41847,0.68097,-0.78708,-0.20047,0.57628,0.02383,0.50047,0.26876,1.1428,-0.49751,-0.61072,0.13997,1.1349,0.33729,0.69659 -2.2573,-0.26709,0.24099,2.3998,-1.9417,0.93711,1.9874,0.4272,-0.6332,-0.78942,-0.63272,0.081652,0.11201,0.55033,0.27719,0.26481,0.22214,1.2591,-0.47941,0.80646 -2.6772,-0.075115,-1.1918,0.91188,-2.1596,0.25305,0.27681,-1.5156,-0.68021,0.47906,0.44959,-0.18169,-0.5304,0.59438,0.28985,-0.18087,0.18013,0.4375,-0.22922,0.17306 -2.3192,-1.2784,-0.18798,1.1615,-0.6143,-0.35751,1.0347,-0.092055,-0.12791,-0.094325,-0.25018,-0.32702,0.024963,-0.5619,0.17099,-0.14906,0.76003,1.1131,0.078116,-0.20361 -1.4305,-0.88972,-0.22506,1.6957,-1.5214,0.53565,0.36406,-0.48233,0.38029,-0.51249,-0.12027,0.39587,0.022057,0.60529,0.23949,0.42826,0.14244,0.48048,-0.4842,0.6336 -1.6333,0.57621,1.419,1.495,-1.2669,0.053263,1.1092,-0.0039856,-1.8481,-0.40561,-0.16492,1.4269,0.45538,0.40352,-0.28941,1.5646,-0.28982,0.33536,-0.3837,-0.77159 -2.5638,-1.058,-0.40924,2.0608,-1.8896,0.97623,0.75986,0.21976,-0.473,-0.080334,-0.30658,-0.41453,0.3719,0.58293,0.18011,-0.41672,0.49899,0.314,-0.024133,0.71437 -1.7014,-0.83214,1.1446,1.495,-1.271,0.7475,0.79377,1.3085,-1.505,-0.27003,0.33057,0.38742,0.16374,0.40288,-0.32508,-0.23861,-0.20412,0.23025,-0.36288,0.13485 -1.0339,-0.29082,0.50511,2.5264,-1.501,0.76395,0.69906,-1.0287,0.091325,-0.7901,0.70263,0.21037,-0.071965,0.086128,0.14863,0.25243,0.076217,0.18593,0.57394,0.48646 -3.4946,-0.72206,0.44562,2.464,-1.2656,0.51812,0.62983,-0.17218,-1.4475,0.35499,-0.15494,0.21987,0.45076,0.48537,-0.35944,-0.96115,0.89244,0.53723,0.9446,0.37996 -1.6409,0.63193,1.4976,2.5388,-1.2049,-0.094643,0.34143,-0.97962,-1.1691,-0.28863,0.28448,1.0005,-0.43036,0.1764,0.12048,1.1245,-0.045016,-0.16817,1.3096,-0.31842 -0.44232,0.12695,1.4592,0.99626,-0.7652,0.2169,0.83408,-0.0223,-1.1562,-0.045668,0.34966,0.34155,0.12489,-0.36667,-0.77817,0.87566,0.038388,0.013928,0.069991,-0.44854 -0.28369,-0.46411,1.3034,0.52877,-1.2507,-0.22902,0.85457,0.062101,-1.4217,-0.33132,0.55736,0.13643,0.29888,-0.29521,-0.69854,0.58896,0.35228,-0.047919,-0.6704,0.31796 -2.0329,-0.015587,-1.2982,0.8157,-1.3312,-0.34949,-0.076095,-1.0666,-0.75415,0.37815,0.75002,0.27281,-0.52893,0.93654,-0.20737,0.19155,0.090303,0.41853,-0.53779,0.77846 -2.9054,0.22886,-1.2393,1.9402,-2.913,0.53255,0.34834,-1.7493,-1.1711,-0.49283,1.0067,-0.22937,-0.78962,0.87221,0.33909,0.60686,0.1431,0.68483,0.74192,0.30631 -2.9859,-1.1673,-1.7485,1.2631,-2.0896,0.34663,0.53208,-0.75482,-0.291,1.0736,0.37042,0.55012,-0.054522,0.83827,-0.097667,0.78923,0.59133,1.1038,0.18183,0.89264 -0.46657,-0.37814,1.2063,1.4067,-1.3066,-0.059322,0.70407,0.80739,-1.3907,-0.18131,0.65883,1.1285,0.72626,0.03825,-0.58339,0.43759,-0.28354,0.11347,-0.18458,-0.5751 -0.31934,-0.51771,0.78609,0.052715,-1.3978,-0.49659,0.029078,-0.13343,-1.2832,-0.1865,0.22082,0.63151,1.0611,-0.54317,0.12313,-0.4651,0.5907,-0.068462,-0.67725,-0.2209 -1.4986,-0.61766,1.2083,1.5078,-1.2762,0.65863,0.57603,0.82932,-0.71517,-0.18478,0.19177,0.15979,0.2692,1.0801,-0.56153,-0.22877,-0.44735,0.3386,0.15274,0.50767 -2.938,-0.67078,1.234,2.2242,-1.7836,1.3913,0.45679,0.44947,-1.0436,-0.1596,0.0052452,0.61014,-0.1975,1.078,-0.384,-0.22207,-0.049826,0.9745,-0.2616,0.60479 -1.682,-0.72147,0.1187,2.2985,-2.4166,1.3696,0.5674,-0.78416,-0.26812,-0.52557,0.2753,0.14947,-0.11637,0.48683,0.10818,0.56958,-0.59898,1.1969,-0.059545,0.06774 -1.4017,-0.66521,-0.73674,0.45702,-0.52149,-0.3216,0.73254,-0.041436,-0.5089,0.84537,0.077433,0.41972,0.53909,-0.86144,-0.26792,0.92183,0.46831,0.1695,-0.30277,0.14223 -1.9064,1.6758,0.070483,1.2454,-1.2672,-0.87575,1.188,-1.0827,-1.3294,-1.8,0.60801,0.36465,0.22631,-0.46593,1.0525,0.81307,0.41785,-0.11018,0.46291,-0.23908 -1.9802,-0.77542,0.60807,1.965,-1.2455,1.2894,0.57586,0.70579,-0.10923,0.22908,-0.037528,-0.033028,0.36983,0.7561,0.46022,-0.62843,0.69593,0.63857,0.44311,0.52753 -2.2447,-0.8272,-0.79034,1.2283,-1.557,0.25416,0.44469,-0.51805,-0.15077,0.4101,-0.38565,-0.6157,0.70594,0.016149,0.56023,-0.15404,1.2646,0.14756,-0.097389,0.87316 -1.5159,0.25302,1.3235,2.1062,-1.3231,0.44206,0.91392,-0.26121,-1.346,-0.35542,-0.24259,1.0335,0.33548,0.086878,-0.11095,1.8422,-0.47176,0.20088,0.29579,-0.38702 -2.7733,-0.8582,0.66312,1.5344,-1.9714,0.61442,0.90327,0.44444,0.26112,0.45219,-0.062447,0.80682,0.78462,1.725,0.10656,-0.77054,0.58919,0.12463,-0.53397,0.43343 -1.6569,0.19572,1.4264,3.137,-1.4975,-0.013517,0.74253,-1.3228,-1.5575,0.22965,0.66039,0.6301,0.37207,-0.57264,0.38822,0.95302,0.57339,-0.27376,0.92037,0.022174 -2.3109,-1.0942,-1.9106,0.87731,-1.5301,-0.1114,1.288,-0.472,-0.7006,1.371,0.56238,0.26676,0.27964,-0.16158,0.23589,0.40179,0.71361,1.0607,-0.3271,1.2201 -0.32331,-0.42851,0.80462,-0.083347,-1.0883,-0.29692,0.28635,-0.19451,-1.1783,-0.012055,0.41227,0.53271,0.95977,-0.4025,0.2916,-0.49422,0.71485,0.07443,-0.7902,-0.063376 -2.1444,-0.38782,0.9467,1.8876,-1.3474,0.99976,0.72047,0.19343,-1.0858,-0.35042,-0.20738,0.094141,0.30831,0.89099,-0.62709,0.042423,-0.59604,0.56411,0.17423,0.19884 -1.7404,-0.58025,-0.06582,2.4755,-1.9019,-0.38945,0.98383,0.52923,-0.15354,-1.0529,0.097936,-0.57548,0.041739,0.13152,0.093872,-0.14684,0.6587,0.11966,-0.12264,-0.00034315 -1.9044,-0.9015,-0.74954,0.71016,-0.77142,0.24041,0.44675,-0.35905,-0.17408,0.66533,-0.48904,0.45441,0.44375,0.070397,0.23317,0.023269,0.93393,-0.054809,0.17466,0.14609 -0.76993,-0.38168,1.9361,2.2115,-1.6207,-0.26896,0.8562,0.047782,-1.9909,0.46344,0.56942,0.95506,0.29561,-0.18687,-0.79124,0.98278,0.29992,-0.094351,0.2489,-0.90964 -2.1435,-1.0231,-0.35077,0.64636,-1.7515,0.86571,0.98929,-0.096868,0.22847,0.40955,-0.33748,0.38177,0.43325,0.87747,-0.28901,0.14161,-0.20317,0.56461,0.17406,-0.39611 -1.059,-0.50185,-0.92141,0.78176,-1.4749,0.65483,0.18231,0.1513,0.086366,0.42348,-0.0083713,0.27792,0.47215,0.45167,-0.047044,0.33642,0.34847,-0.06758,0.010449,-0.33384 -2.0883,-0.9885,-0.11137,1.7869,-1.4431,0.55409,0.86357,0.40994,0.31397,-0.69632,-0.029476,-0.10137,0.041788,0.69377,0.31,-0.46402,0.47093,0.78538,0.27145,0.007471 -1.5127,-0.39938,1.2821,1.4309,-1.1178,0.65884,0.51668,0.89151,-0.84324,-0.50835,-0.029493,0.44913,0.33171,0.54735,-0.65016,0.56906,-0.42715,0.37639,-0.003447,0.30981 -3.2408,-0.94265,-1.6225,1.4953,-1.9892,0.2552,1.1914,-0.81145,-0.9825,1.3379,0.032103,0.45947,0.27377,-0.48414,-0.048299,-0.3072,1.0395,-0.13517,0.25238,0.43976 -0.21139,-0.81745,1.109,1.5067,-0.87705,-0.48603,0.54107,-0.58873,-1.4365,-0.18037,0.92073,-0.65503,0.28211,0.28174,0.13255,0.5823,-0.13278,-0.064427,0.28996,-0.49962 -2.9238,-0.50713,-0.14772,1.2886,-1.0488,0.34677,1.2854,-0.80287,-1.0991,0.27255,-0.42933,0.21234,0.35897,0.4651,-0.89968,-0.2139,-0.14257,0.83059,0.11222,0.6997 -1.043,-0.48054,0.78341,1.9589,-1.2938,0.7316,0.39372,0.47816,-0.24791,-0.078293,0.52948,0.23335,-0.15674,0.8098,-0.2264,-0.13684,-0.53331,0.42263,0.12091,0.48931 -2.5132,-0.68851,-0.50359,2.1501,-1.2756,0.57558,1.0825,-0.28687,-0.42719,0.12287,-0.10867,-0.52122,0.56019,0.88058,0.41333,-1.0461,0.66615,0.5464,0.83945,0.83641 -2.3096,-0.24559,-1.7863,1.7946,-2.1253,-0.47096,0.45341,-0.73987,-1.5915,0.46273,0.67486,-0.15419,-0.52803,0.3844,0.022772,0.079375,-0.1015,-0.081362,-0.79871,0.51874 -1.2236,-0.099931,1.1473,2.1903,-1.1728,0.56298,0.4662,-0.61375,-0.75554,-0.46573,0.029205,0.37338,-0.28871,-0.3859,0.28604,0.97259,0.22584,0.14813,1.1579,0.67184 -1.009,-0.41955,1.3709,1.0985,-1.2384,0.41929,0.18749,-0.1841,-1.2791,-0.11497,0.032743,1.2455,-0.3126,-0.30907,0.027622,1.1768,-0.10328,0.10181,0.15739,0.30466 -1.6791,-0.43319,-1.2296,1.7897,-2.4542,-0.36323,0.24677,-0.69563,-0.5344,-0.19021,0.86555,-0.37908,-0.25875,0.35233,-0.19856,1.086,0.28591,-0.29288,-0.059649,-0.48445 -2.6511,-0.85834,-1.0049,0.53356,-2.6845,0.51392,0.74171,-0.98968,-0.086866,0.703,-0.0093495,0.44485,-0.11542,0.53776,0.20329,0.32927,-0.25038,0.89254,-0.38276,-0.089895 -3.1369,-0.29858,-1.2345,-0.36202,-2.2773,0.66766,1.6434,-0.87174,-1.0137,1.4685,0.085121,1.4596,0.37928,1.039,0.15629,0.13248,-0.21956,1.1607,-0.0075581,0.17981 -1.9505,0.78141,-0.70348,1.6487,-1.4443,-0.69827,0.1305,-0.90493,-1.3964,-0.58871,0.78366,-0.13773,-0.20526,0.63219,-0.7058,0.78122,-0.051816,-0.43913,0.13983,-0.45137 -1.1533,-0.61339,0.27008,1.2512,-1.8623,1.436,1.7344,0.48594,0.29734,-0.36387,0.19245,0.70025,0.44233,0.87526,0.11878,0.14578,-0.04953,0.95789,0.11165,-0.57488 -1.5837,0.063497,-1.1226,1.4225,-2,-0.20771,0.95037,-0.87101,-0.93161,-0.12862,1.0681,-0.69777,-0.22543,0.79375,-0.94211,0.75179,-0.091345,-0.25359,-0.19237,0.24899 -2.3134,-0.90076,-1.6104,0.80473,-2.0956,-0.72956,0.11006,-0.52613,-0.78358,0.32477,2.0132,0.26719,-1.0334,0.026981,-0.49338,0.69158,-0.16787,0.79743,0.10898,0.8165 -1.4662,0.16445,-0.54535,1.5457,-1.8197,0.28002,0.17229,-0.95132,0.32067,-0.93423,0.40409,0.84381,-0.33628,0.80784,0.65533,0.87302,-0.049285,0.040703,-0.13078,0.62835 -2.374,-0.90667,0.059714,2.3726,-1.406,0.2403,0.82251,0.46741,-0.24776,-0.52183,-0.29149,-0.20461,0.13202,0.99971,0.069189,-0.59433,0.63324,0.60823,0.51158,0.48717 -1.6729,-0.40592,0.6703,3.2029,-2.1022,0.86883,0.18168,0.1039,-0.76042,-0.012105,0.3821,0.43155,-0.52822,0.60979,-0.1479,0.13319,-0.38984,0.2345,0.5106,0.38287 -1.7388,-0.040866,0.66335,2.027,-1.1522,0.5658,0.013063,0.013366,-1.0513,-0.4276,0.083512,0.25134,-0.071085,0.1895,-0.47631,0.7128,-0.41873,0.13808,0.87887,-1.048 -0.48018,-0.2803,0.78623,1.7383,-0.88378,0.040162,0.65892,-0.2585,-0.84996,-0.11075,0.77356,0.24956,-0.0046624,-0.68361,0.56955,0.55466,0.025827,-0.14567,0.56432,0.35562 -3.4292,-0.4932,-0.72364,2.3617,-2.6072,1.2149,1.027,-0.55325,-1.716,0.33991,-0.19733,-0.253,-0.25854,0.54011,0.2475,-0.098093,0.10469,0.84122,-0.031114,0.62612 -1.9474,0.2512,-0.34759,1.3555,-1.495,-0.40901,0.55881,-1.3815,-0.43207,-1.1461,0.6771,-0.59127,-0.51048,0.37394,0.083086,0.52462,0.52246,0.39809,0.31059,0.90522 -2.9876,-0.47305,-1.8156,1.8063,-1.8968,0.063424,0.47737,-1.2251,-0.92646,0.80726,0.44285,0.10651,0.24958,0.84239,-0.16479,-0.3055,0.77714,0.53565,-0.078527,1.219 -1.4331,-0.00086607,0.61208,3.0994,-1.937,0.61994,0.65772,-0.8448,-0.97868,-0.92025,0.35126,0.18383,-0.32148,-0.15685,0.35471,1.1583,-0.077274,0.18945,0.9785,0.045598 -1.5882,0.18327,1.5348,1.0598,-1.7336,0.4466,0.74617,-0.16218,-0.8308,-0.92238,-0.13871,0.054336,0.22692,0.36688,-0.4153,0.67931,0.049591,0.22361,0.057847,0.53343 -1.3044,-0.561,-0.11181,2.1274,-1.6748,0.52436,0.040252,-0.97475,0.10748,-0.94404,0.90527,-0.38028,0.21033,0.11799,0.12606,0.58708,0.54524,0.50677,0.34889,0.20636 -0.50269,-0.98307,1.2207,1.3686,-2.0665,0.67537,1.5421,-0.83085,-0.44614,-1.0718,0.9309,0.55671,0.24902,0.096918,0.75904,0.58996,-0.087774,1.1345,0.19019,0.52896 -0.87093,-0.17609,2.1873,2.7569,-1.9268,-0.39712,1.2501,-0.13297,-1.7798,0.10805,0.71051,0.248,0.69606,0.60976,-0.77611,1.4315,0.28952,-0.10065,0.4874,-0.36804 -2.3338,-0.061794,0.43589,2.0985,-1.0778,0.65701,-0.077852,-0.026196,-1.1488,-0.20196,-0.26323,0.34675,-0.15376,0.70669,-0.21444,0.79235,-0.22149,0.62916,0.36063,-0.2158 -1.9275,-0.74758,-0.93005,1.034,-1.0462,-0.66887,0.37884,-0.34653,-0.94771,0.64428,0.73827,0.50622,-0.18814,-0.34973,-0.69185,-0.080062,0.50427,-0.0014849,-0.79211,1.0313 -1.5961,1.2671,-0.53843,1.1289,-1.8214,0.41562,0.033286,-1.0177,-0.9876,-1.0774,-0.043019,-0.042238,-0.56532,0.1309,0.11134,0.67349,0.15455,0.23517,0.098524,-1.0906 -2.1423,0.4478,-0.46531,2.3665,-1.4975,0.63918,-0.13757,-0.66178,-1.5386,-0.29837,0.34608,0.29251,-0.027922,1.1469,0.24917,0.72465,-0.073273,0.71814,0.77428,0.30548 -2.308,-0.20556,-0.4499,1.5415,-1.6124,-0.14008,0.44388,-0.56459,-1.2701,-0.44157,0.68445,0.51743,-0.028107,0.99115,0.30983,1.2017,-1.288,0.66637,-0.13151,-0.014108 -1.0602,-1.1139,1.2176,2.1884,-1.204,0.3021,0.96284,-0.99096,-0.12771,-0.24126,0.71291,0.15671,-0.21287,0.085635,-0.071111,-0.0023549,-0.024663,0.42781,0.37794,0.41674 -3.0803,-0.97706,-1.0397,1.0515,-1.9013,0.71954,1.3296,-0.15575,-0.075045,0.33906,-0.31882,-0.084192,0.62949,0.89348,0.77475,0.20638,0.5175,1.2693,0.070427,0.83678 -2.5726,0.011821,0.026355,2.5492,-1.616,0.034457,0.56225,-0.62323,-1.8343,-0.82986,0.1523,0.21354,0.41403,0.25288,-0.71981,1.613,0.039819,0.8633,-0.073711,-0.5246 -2.4322,0.003575,-0.77685,0.45487,-1.9311,0.4421,-0.46949,-1.1172,-0.83385,0.14381,0.25264,-0.0071624,-0.52349,0.29348,0.21877,-0.83788,0.85,0.38989,-0.29819,0.5946 -1.3758,1.2243,-0.43079,2.0207,-1.2478,-0.1161,0.51904,-0.1327,-1.283,-0.57846,0.33374,0.83472,0.52517,0.4446,0.39286,0.86287,-0.47499,-0.15599,0.39182,-0.55585 -3.1183,-0.77319,-2.1783,1.34,-1.6385,-0.16067,0.94574,-0.85086,-1.1971,1.0938,0.82741,0.22062,-0.11809,0.41041,-0.0027207,-0.22118,0.85606,0.76515,0.086517,1.5504 -1.3151,0.50722,0.43489,2.0104,-2.0491,1.1619,0.034818,-0.80147,-1.1787,-1.1066,1.0208,-0.12852,-0.29205,-0.75909,0.07555,0.68654,0.016887,-0.10679,0.8063,-0.044978 -2.4589,-0.96831,-1.7824,1.3979,-1.1824,-0.69244,0.92253,-0.66057,-0.5939,0.65478,0.65841,0.07289,0.38305,-0.022936,0.20701,-0.27609,1.2572,0.12361,0.0082577,0.95163 -0.80166,-0.68406,1.0104,1.6945,-0.78632,0.22549,0.7363,0.8545,-0.92669,-0.44384,0.37504,0.78506,0.077364,0.30397,-0.43433,0.82277,-0.44744,0.13114,-0.062652,-0.0036482 -1.7238,-0.64897,-0.81595,1.8271,-1.3451,0.090324,0.36738,0.30857,-0.29535,-0.27801,0.69614,0.16007,0.23486,0.71644,0.070297,0.47015,0.22291,0.17968,0.65697,0.93534 -1.272,-0.33641,1.5765,2.3728,-1.323,0.43129,0.72327,0.15779,-1.3716,-0.11506,0.64722,1.4122,-0.099249,-0.51138,-0.5433,0.86132,-0.013222,-0.091827,0.21701,-0.32065 -1.5234,-0.3231,0.34438,1.4261,-2.9748,1.2993,0.080536,-0.65868,-0.13765,-1.0786,0.98587,0.15278,-0.24835,0.091584,0.74268,0.66207,0.15662,0.47995,0.78634,0.41984 -2.1701,0.41128,1.6128,2.3191,-1.3457,0.00052764,1.6418,-0.93551,-2.1204,-0.52324,-0.29571,0.56371,0.45131,-1.0485,0.738,1.0586,1.0599,-0.10622,0.31445,0.43073 -1.8669,-0.11871,0.32766,2.4236,-1.275,-0.14522,0.24247,-1.2706,-0.25132,-0.9669,0.051583,0.11586,-0.3247,-0.064811,-0.021171,0.87235,0.27952,-0.01244,0.5462,-0.035095 -1.5315,-0.19017,-0.71374,0.36794,-2.2685,0.47505,-0.32558,-0.95524,-0.28833,-0.1862,0.6214,-0.50957,-0.14547,0.37814,-0.041355,0.17241,0.40494,-0.088785,0.3237,0.21862 -2.927,-0.60421,-1.141,1.1955,-1.2568,0.30481,1.4076,-0.28064,-0.52713,0.72934,-0.12099,-0.20413,0.44548,0.11703,0.10926,-0.659,1.2799,0.87801,0.58663,0.069312 -3.1902,-1.3883,-0.91293,2.0985,-1.9597,0.50871,1.8916,-0.16485,-0.77981,0.48328,-0.33853,-0.3499,0.11678,0.39191,0.019749,-0.21677,0.52453,0.79956,0.42441,0.46943 -3.3315,-0.45658,-1.4526,2.6168,-2.3598,0.249,0.33136,-0.32255,-0.68599,-0.14806,0.69145,0.29282,0.21735,1.5858,-0.070729,0.20031,0.52562,0.35574,0.20729,1.1656 -1.2629,-0.85618,1.4549,2.6869,-2.3195,0.29975,1.2728,0.33363,-1.4139,-0.41788,0.49407,0.81144,-0.47717,-0.32582,-0.10168,0.62569,-0.41165,0.22035,-0.45703,-0.28981 -2.5985,0.027519,-0.72734,1.8858,-0.99621,-0.56479,1.0748,-0.22731,-0.91511,0.12144,0.2432,-1.2836,-0.13767,-0.41657,-0.42958,-0.15769,1.0891,-0.19589,0.20033,-0.1368 -1.3635,-0.75716,0.37225,2.2573,-1.7486,1.2144,1.2839,0.19638,-0.080408,-0.76271,0.14915,0.14454,0.025594,0.37034,0.23784,0.24977,-0.152,1.3747,-0.069252,0.59784 -1.1343,0.24851,1.6966,1.0826,-1.1806,0.25635,1.0234,0.13648,-1.168,-0.23912,-0.59845,0.79866,0.84463,-0.67554,-0.32201,0.79345,0.24624,-0.060583,-0.0096685,-0.59815 -1.8749,-0.8901,-0.15032,1.99,-1.5868,1.1762,0.42796,-0.21064,0.20443,-0.40342,0.45332,-0.25046,0.3083,1.0326,-0.085966,-0.22553,0.012229,0.83002,0.7534,0.06015 -1.5721,-0.1836,-0.32616,2.3075,-1.6438,0.7605,-0.0011621,-0.52535,0.19041,-0.35579,0.066325,0.23693,0.19191,1.1079,-0.083902,-0.024125,0.2746,0.032157,0.10999,0.75502 -0.48449,-0.28208,0.92437,0.59379,-0.81255,0.20285,0.6153,0.64692,-1.1208,-0.067553,0.10154,0.44065,0.35315,0.048172,-0.6135,0.54609,0.15053,-0.087629,-0.65605,0.31542 -0.50077,-1.1171,0.65113,2.1429,-1.028,-0.56667,0.82824,-0.23902,-0.37907,-0.72416,0.72695,0.9332,-0.63843,0.10813,0.4766,-0.020064,0.74283,0.26313,0.30356,0.91877 -2.0672,-0.7958,-1.5038,0.14817,-2.092,0.2901,0.86452,-0.56934,-0.69198,1.3943,0.77991,0.79833,-0.326,0.13432,-0.026567,0.1969,-0.19455,0.7212,-0.39865,0.70343 -1.4576,0.63473,0.53753,2.8106,-1.5158,0.73184,0.13367,-0.51538,-1.1992,-0.48111,0.46005,0.77169,0.0020492,-0.18524,-0.072416,1.0144,0.22263,-0.21412,0.92211,-0.44021 -0.32341,-0.11353,1.0393,0.57361,-1.3312,-0.31137,0.39121,0.50505,-0.97123,-0.28495,0.41902,1.2352,0.5911,-0.1954,-0.2975,0.46104,0.18478,-0.21995,-0.57868,-0.58001 -2.3396,-0.3683,-0.14932,2.6514,-2.1808,1.419,-0.050826,-0.30656,-0.9142,-0.09469,0.64272,0.022653,-0.16117,0.40784,-0.082551,-0.44853,0.43828,0.25678,0.23808,0.0017622 -1.45,0.051072,-0.042657,2.4503,-1.4227,0.28801,0.29367,-0.92116,-0.28857,-0.91314,0.11317,0.053288,-0.092906,0.57857,0.16362,0.83009,-0.18034,0.037007,0.48697,0.24834 -1.1315,0.81543,-0.6924,0.27953,-1.1776,-0.7051,0.28966,-0.12888,-2.359,-0.8627,0.4788,0.7339,0.7768,0.012266,0.61214,0.84316,0.68575,0.57513,0.024229,-0.32106 -0.02929,-0.39765,0.89656,0.18706,-1.3743,-0.27444,0.69796,0.017673,-1.0645,0.19684,0.24014,0.91617,0.86872,-0.26132,-0.10428,-0.20672,0.43653,0.035023,-0.96384,-0.12696 -1.9908,-0.48942,0.06162,1.1891,-0.7982,0.52421,0.51202,-0.26135,-0.60063,-0.011456,-0.44858,-0.15143,0.11884,0.65656,-0.11556,-0.27339,0.062508,1.0904,0.33052,0.47774 -1.1927,0.183,1.9646,2.3405,-1.291,-0.10092,0.76642,-0.67687,-1.9683,0.4568,0.59975,0.56984,-0.1358,-0.38585,0.34398,1.1143,0.61843,-0.4712,1.1091,-0.5983 -2.6141,-0.38969,1.1094,1.4388,-1.4997,1.3937,0.32508,0.48532,-0.85177,-0.41436,-0.27212,0.3714,-0.38831,0.78909,-0.36657,-0.53313,0.037984,0.66532,-0.42161,0.59053 -1.1043,-0.30867,0.51603,2.4887,-1.0972,0.36831,-0.21177,-0.98033,-0.5864,-0.22319,0.54128,0.44865,-0.57806,-0.12513,-0.11015,0.55399,0.1509,0.037791,0.44634,0.69242 -0.36481,-0.792,1.1002,0.95225,-0.6381,-0.057943,0.68416,0.29154,-1.0838,-0.16645,0.2049,0.59287,0.22215,-0.091145,0.04396,0.68543,-0.028924,0.010242,0.34759,0.3516 -0.31746,0.31829,0.91848,2.232,-0.82728,-0.05377,1.3463,-0.11395,-1.4724,0.25378,0.44078,0.21798,0.018736,-0.87291,0.25888,0.31111,0.30241,-0.26952,0.53141,-0.51068 -1.987,0.36461,-0.79657,0.88422,-0.79595,-0.46157,0.94772,-0.40219,-2.1727,0.50028,0.76766,0.12805,-0.26579,0.025406,-0.15674,-0.55199,-0.4209,0.72837,-0.20052,1.162 -2.6719,-0.68472,-1.5686,0.57608,-1.4403,-0.58466,1.5795,-0.58139,-1.3114,0.85794,0.51212,-0.080705,-0.0082994,-0.31996,0.03408,0.12053,0.42384,0.85583,-0.77289,1.4436 -3.5739,-1.6346,-1.1193,1.4883,-1.764,0.17261,0.65518,-0.35454,-0.11544,0.8465,-0.13836,0.53986,0.51138,0.88311,-0.11335,-0.56598,1.2039,0.78349,0.39763,1.0372 -0.93644,-0.13753,-0.49876,1.5643,-1.4403,0.83904,1.1556,-0.95557,0.55931,-0.8369,0.36638,0.40115,0.09149,-0.025208,0.18923,0.16434,0.33152,0.11669,-0.31262,0.094571 -1.559,0.1892,0.54803,2.2963,-2.3135,1.527,-0.2039,-0.42785,-0.52281,-0.54092,0.81034,0.54153,-0.27157,0.3337,0.037938,0.19569,-0.27484,0.29159,0.62911,0.35944 -2.9157,-0.70396,-1.6573,1.184,-1.3563,-0.75973,0.46173,-1.3168,-0.90462,0.60129,0.5592,0.80311,0.039088,0.46262,-0.18851,-0.47428,0.51592,0.20796,-0.44944,0.84965 -1.2116,0.25486,-0.72979,1.8261,-1.5378,0.94166,0.21448,-0.096046,-0.92722,-0.41847,0.026154,-0.3643,0.099661,0.41335,-0.28295,0.19263,0.14053,0.11252,-0.06582,0.27183 -1.3733,-1.0516,0.97156,2.2412,-0.76954,-0.96551,0.20204,0.92643,-1.0611,-0.90794,0.27865,0.19694,-0.05508,0.25844,-0.7713,-0.027736,0.31646,0.19157,0.0408,-0.22493 -1.4028,-0.02518,-0.75276,0.46853,-0.7798,-0.5686,0.32729,-0.26953,-0.92196,0.58723,0.61611,0.28586,-0.36529,0.19689,-0.22071,-0.1418,-0.071951,-0.10733,-0.47661,0.64329 -2.043,-0.961,0.43149,2.618,-2.0157,0.60502,1.4809,-0.6264,-0.28456,-1.0603,0.26658,0.04191,-0.046557,0.38462,0.033561,1.1457,-0.36713,0.66923,0.25312,0.21545 -1.1566,-0.022416,-0.1435,1.7825,-1.2482,0.69509,-0.016413,-0.85291,0.1911,-0.64417,0.17735,0.23453,0.14639,0.54776,-0.21332,0.19926,0.45348,0.3482,-0.081686,0.50558 -0.858,-0.44272,-0.1239,1.7907,-1.4119,0.26139,0.5217,-0.77441,0.058499,-0.64691,0.63826,-0.16545,0.011315,-0.48991,0.34515,0.44572,0.48004,0.31209,-0.013774,-0.23066 -1.3889,0.35118,-0.12184,1.48,-1.3714,0.56037,0.64297,-0.66835,-0.54413,-0.49702,-0.2296,-0.12382,0.11881,-0.39944,0.37529,1.0918,0.80643,0.35301,0.41885,-1.0958 -1.5164,-0.67894,0.43653,2.4977,-1.3277,0.74828,0.2627,0.69384,-1.3389,0.14519,-0.011078,0.26038,0.34235,0.47142,-0.10881,0.61419,-0.22642,0.43046,1.0341,-0.1216 -1.7349,-0.11824,1.4063,1.9341,-1.3541,0.64739,1.0344,1.7005,-1.755,0.081865,-0.18669,0.79339,0.55257,0.24111,-0.65179,0.26408,0.37832,0.25823,-0.19806,-0.35787 -3.1146,-0.96812,-0.69562,2.3764,-2.8801,1.0701,0.91195,-0.14158,-0.56755,0.61914,0.12868,0.03365,0.25714,1.4285,0.26636,0.24703,0.34393,0.32436,0.189,0.42406 -0.60282,-0.43926,1.6158,0.78284,-1.4005,-0.024593,0.62191,0.089626,-1.3029,-0.10935,0.33334,0.24037,0.4225,-0.25687,-1.1966,0.89313,0.10089,0.055455,-0.58069,0.40742 -2.2404,-0.46144,-0.76993,1.7482,-2.4151,0.52172,0.026455,-0.76801,-0.71957,-0.089628,-0.013823,-0.55986,-0.001616,0.79741,-0.075051,0.16319,-0.14797,0.33432,-0.71142,0.59037 -1.8628,-0.44873,-1.5548,0.77246,-1.904,-0.057146,0.69254,-0.86608,-0.82916,1.1897,0.88903,0.811,-0.63969,0.1918,-0.099718,-0.10642,-0.068032,0.24761,-0.61927,1.2709 -1.497,0.67808,1.2172,2.0079,-1.3358,0.32122,0.32877,-0.58608,-1.179,-0.79625,0.39242,0.85634,-0.81922,-0.02886,0.23045,0.99124,-0.08254,0.10869,0.9974,-0.49874 -2.3057,0.32316,-0.32417,2.5326,-1.6587,-0.058352,0.072363,-1.2561,-0.8231,-0.97433,0.63891,0.088179,-0.18971,0.85298,0.026524,1.3014,0.008194,0.26893,1.053,-0.018867 -0.62808,0.11569,0.61332,1.3369,-1.4062,0.41501,0.6536,-0.6454,0.32913,0.11353,0.48613,0.22836,-0.55352,0.61537,-0.17734,0.31688,-0.061804,0.10582,0.0061413,0.12276 -1.3367,0.79772,0.49603,0.025713,-2.8218,0.78319,1.3002,0.24935,-0.2545,0.31182,0.42859,0.40561,0.79838,0.83905,-0.044911,0.31138,0.53204,-0.06041,0.91465,0.15429 -0.82706,-0.28616,1.7538,0.38243,-3.0048,1.1593,0.8662,0.39743,-1.5056,-0.667,0.76979,-0.16079,0.13631,0.40528,0.33055,0.38086,-0.51781,0.50221,-0.078619,0.63144 -1.5067,0.21058,1.7288,0.20425,-1.8235,1.0052,1.1278,-0.19437,-0.55756,-0.097271,0.28132,0.072952,-0.11087,-0.15717,0.014227,-0.085898,0.10026,0.50899,-0.4705,-0.090023 -1.8785,-0.43024,2.1922,0.17125,-2.8803,1.6253,1.349,0.42423,-1.0689,-0.60637,0.83704,-0.38967,-0.20511,0.023419,0.25966,0.30729,-0.13043,0.56975,-0.076995,0.43671 -2.6384,0.68691,1.9558,-0.44103,-2.0248,0.97459,1.7173,-1.0373,-0.91407,-0.15823,-0.073984,-0.027309,-0.36888,0.84495,0.54491,-0.33248,0.54619,0.84403,0.049851,0.63203 -3.1946,0.67952,1.7377,-0.40055,-2.8215,0.096991,1.6624,-1.1949,-0.69176,0.13248,-0.32053,0.80665,0.67866,0.51899,0.77882,-0.31583,0.49015,-0.34589,-0.46472,-0.46791 -2.745,-0.14359,0.91188,-0.52933,-3.2574,1.8059,1.3454,-1.2104,-0.79641,0.41606,-0.032264,-0.008438,0.20085,0.31637,-0.12798,-0.30694,-0.28997,0.35683,0.71515,-0.26408 -2.6024,0.52921,0.48012,-1.7414,-2.0904,-0.47915,1.8212,-0.91402,-0.86345,0.4181,-0.095115,1.0953,0.33811,0.44102,0.50577,0.70153,-0.1289,0.35298,0.46579,0.35931 -1.3036,-0.7363,0.47335,0.16109,-1.9096,1.2674,0.78199,-0.52312,-0.63785,0.061511,0.36836,-0.27525,0.70295,-0.16451,0.34799,-0.29331,-0.59031,0.43084,0.71863,-0.3677 -3.0288,0.9327,1.2005,-0.62255,-3.8111,1.18,1.9406,-0.79746,-0.7406,0.5852,-0.029333,0.63735,0.67118,0.91943,0.19996,0.12853,0.65656,-0.47982,0.41218,-0.024652 -2.0956,-0.16505,0.71052,-0.093404,-3.1158,1.8144,0.67591,-0.61489,-0.52183,0.17434,-0.13694,-0.25463,0.42463,0.5921,0.38726,0.2914,-0.28403,0.4761,0.96425,-0.558 -2.4208,-0.45311,2.3163,0.55965,-3.0738,1.2005,0.96429,0.052121,-2.589,-0.34632,0.16372,0.33025,-0.2979,0.50438,0.36732,-0.20663,0.24191,0.87194,-0.030708,0.78819 -1.952,-0.22206,-0.57525,-0.34386,-2.745,0.89616,0.79698,-0.85429,-0.62391,1.0512,-0.188,0.59399,0.59716,0.55307,0.11937,0.1301,-0.036947,0.065544,0.32962,-0.051969 -2.5505,-0.024905,0.91835,-0.0051394,-2.3147,1.0723,1.5447,-1.1661,-0.21511,0.63845,-0.83853,0.17301,0.046326,0.34326,0.52945,-0.51274,0.38391,0.64675,0.32986,-0.28667 -1.1034,-0.61233,1.7762,0.90474,-1.9749,0.92192,0.75662,0.235,-1.3165,-0.9681,0.36784,0.16802,-0.21674,-0.62494,0.45941,1.1476,-0.52231,0.12032,0.15757,0.8709 -2.5283,0.1642,1.6855,-0.44249,-3.4347,1.4048,1.901,-0.95167,-0.79384,0.50121,0.017417,0.24703,0.69746,0.0056146,-0.17565,-0.52997,0.29791,-0.035564,0.45512,-0.26318 -0.24466,-0.67554,1.388,0.74872,-2.2009,0.72575,1.5008,-0.0020125,-0.8397,-1.1035,0.99567,0.43293,-0.13895,0.59235,0.87599,0.86694,-0.29007,0.86774,0.057595,0.28348 -1.7392,0.17396,0.93917,-0.3986,-0.8535,0.58022,1.3859,-0.4432,-0.074191,-0.045661,-0.42994,0.25384,-0.23126,0.60131,0.09274,-0.025593,0.16022,0.14413,-0.20171,0.10563 -0.51774,-1.0347,1.0013,0.25649,-2.118,0.83538,1.1636,0.23792,-1.0866,-0.40558,0.4535,0.14745,0.66084,0.88594,0.86904,-0.11542,-0.61886,0.6805,-0.14517,-0.0081387 -1.6223,0.081633,1.1933,-0.25517,-2.2474,0.90595,0.6122,-0.83507,-0.43354,0.06616,-0.20861,-0.12725,0.37128,0.048677,-0.007991,-0.72147,0.087101,-0.098025,0.22142,0.0066706 -3.3997,0.5265,0.55623,-0.91123,-1.3627,0.51369,2.1006,-0.5399,-0.067524,-0.14787,-0.61763,0.92977,-0.093778,0.94975,-0.066955,0.33424,0.41737,0.098805,-0.14423,0.11471 -2.8329,-0.026036,1.6123,-0.49523,-2.0079,1.1301,1.6941,-1.1634,-0.82933,0.011386,-0.30424,-0.30551,-0.45618,0.38132,-0.17047,-0.12306,0.29151,0.94799,0.24922,0.12127 -0.68,-0.40444,1.5012,0.71657,-2.3555,1.2658,1.4684,-0.081373,-0.58792,-0.86002,0.92003,-0.048196,0.055959,0.15486,0.44873,0.90984,-0.44746,0.77406,0.20218,0.11388 -3.2676,0.14855,0.96975,0.067313,-2.3008,1.7213,1.9975,-1.1783,-0.82878,-0.56763,-0.098819,-0.15239,-0.65377,0.3861,0.37349,0.42475,0.25089,0.34798,0.66692,0.47452 -1.531,-0.31272,0.67043,-0.097218,-2.1244,1.5317,0.93862,-0.44406,-0.54905,0.3855,0.30257,-0.25295,0.59054,0.13949,-0.18732,-0.33407,-0.56132,0.0050871,0.86418,-0.37258 -2.6515,-0.11874,1.4935,-0.37178,-2.282,1.0362,1.4719,-1.6073,-0.7678,0.2338,-0.56413,0.072021,0.24421,0.078621,0.39108,-0.71117,-0.028362,0.61495,0.18938,-0.18487 -1.1293,-0.55565,1.9085,0.5639,-3.1085,0.67589,1.4958,0.95535,-1.4871,-0.25251,1.0467,0.11791,-0.060873,0.59886,0.89087,0.20444,-0.17311,0.43739,-0.61899,0.66209 -1.6644,0.43781,0.42597,-0.868,-1.2748,-0.7905,1.4373,0.13356,-1.1215,0.019199,-0.20219,1.1277,0.24909,0.19334,0.097226,-0.31316,0.33061,0.1035,0.12508,0.15801 -2.5217,0.39234,1.9571,-0.28784,-1.7473,0.19161,1.7398,-1.1382,-0.81965,-0.43318,-0.23275,0.32112,-0.082953,0.92628,0.31032,-0.59387,0.34887,0.96884,-0.61808,0.12051 -2.0937,0.41607,0.9477,-0.72892,-2.3276,0.88172,1.3553,-1.008,-0.22598,0.64765,-0.69884,0.13853,0.34129,0.69373,0.48189,-0.31007,0.63255,-0.024052,0.45998,-0.2837 -0.89699,-0.14456,1.0681,0.33407,-2.4858,1.5964,0.90041,0.015697,-0.55531,-0.32005,0.63524,0.16597,0.55907,0.47675,-0.057392,0.28938,-0.75426,0.11029,0.25681,-0.4921 -1.3014,-0.28214,0.41242,0.14332,-2.6068,1.5865,0.96145,-0.42067,-0.62714,0.22123,0.46336,0.056433,0.84364,0.71881,-0.22349,-0.61423,-0.11566,0.2593,0.92227,-0.60808 -1.4268,0.60882,0.26099,-0.88918,-1.573,-0.088346,1.0099,0.0064603,-0.76324,0.32054,-0.17521,0.8495,0.17912,0.60438,0.45027,-0.2065,0.25491,-0.11855,0.27326,0.50445 -1.882,0.2275,1.8552,-0.31485,-2.496,1.4806,1.2121,-0.52748,-0.62231,-0.19808,0.077727,-0.71284,-0.1528,0.38742,0.12122,0.22793,0.35415,0.098926,0.12347,0.20118 -2.8245,1.0173,1.7538,-0.0024913,-1.6068,1.2657,1.6123,0.14903,-0.031668,0.34526,0.064418,0.16354,-0.18396,0.28061,0.19716,-0.15458,0.6208,-0.098904,-0.80882,-0.0080943 -3.0343,-0.42359,0.48228,0.88447,-2.7097,2.0135,1.336,-0.21773,-1.1025,0.12434,-0.62395,-0.17407,0.12144,0.55764,0.44916,-0.31022,0.061473,1.1045,-0.40775,0.38905 -2.2133,0.021542,1.8763,-0.237,-2.4541,1.2619,1.3744,-0.70404,-0.65954,0.31261,-0.22904,-0.28399,0.21522,0.062879,0.27359,-0.72082,0.21418,0.42052,-0.12009,-0.15384 -0.4147,-0.40162,1.4224,0.18588,-2.6021,0.59604,0.94263,0.56927,-1.2468,-0.63643,0.82131,0.35022,-0.10356,0.61694,0.62743,0.45191,-0.5821,0.24797,-0.42054,0.60331 -3.7052,-0.75734,-0.83443,-0.031185,-2.2924,-0.75895,0.62885,-1.4774,-0.87333,0.46339,0.75815,1.0441,-0.53554,0.068384,0.31173,0.05714,-0.45299,1.0582,-0.34783,0.79001 -3.5821,0.93262,1.4463,-0.42598,-2.6939,1.4452,2.1656,-0.20859,-0.35815,0.6073,-0.16163,0.056742,0.35128,0.36994,-0.12592,-0.010331,0.65382,-0.19066,0.032493,-0.044164 -1.3176,-0.57323,1.7411,0.55552,-2.6663,0.58265,0.22602,0.72491,-1.8545,-1.6071,0.55911,0.41684,-0.2295,-0.22299,0.16368,1.0403,0.44301,0.01795,0.35681,0.5646 -0.91512,-0.096081,0.42145,0.025258,-2.4237,1.0429,0.78069,-0.43269,-0.67565,0.50355,0.1278,0.070447,0.80069,0.54988,0.086123,-0.31118,0.40606,0.083811,0.82306,-0.357 -2.5055,-0.55829,-0.26398,-1.1775,-1.9962,-0.37896,1.5599,-0.91732,-1.0796,0.50608,-0.60368,1.1895,0.93509,0.182,0.96215,-0.16051,-0.12802,0.31054,-0.016233,0.10371 -0.53845,-0.65114,0.40538,0.59263,-1.3697,0.92694,0.50921,0.25913,-0.72034,-0.4797,0.44476,-0.023998,0.33109,0.36168,0.52773,0.23324,-0.6217,0.65507,0.046663,0.14674 -0.61613,-0.41925,0.91257,0.056635,-1.4829,0.49358,0.29755,0.52444,-1.0063,-0.33495,0.44493,-0.16194,0.078831,0.10157,0.47509,0.27673,-0.54543,-0.06599,-0.13249,0.52271 -2.2305,-0.25639,0.35374,-1.1901,-1.8681,-1.0205,1.9835,0.13188,-1.6687,0.069281,0.096023,1.6997,1.2505,0.30021,0.84545,-0.39837,0.1114,-0.067265,0.18294,-0.098313 -2.039,0.80782,1.1237,-0.25314,-1.5173,1.4329,1.239,-0.29206,-0.10021,0.00071342,-0.17641,-0.093272,-0.21024,0.66191,0.21199,0.010292,0.75575,-0.56505,-0.10506,0.28453 -1.4398,-0.67753,0.62946,1.4493,-2.1946,1.5953,0.39675,0.099746,-0.60792,-0.46894,0.32211,-0.18152,0.14812,-0.014887,0.24436,0.18811,-0.78384,0.48624,-0.33716,0.29102 -2.2854,-0.45249,-0.50585,-1.2757,-2.5243,0.3307,0.97478,-0.096793,-1.3418,0.79363,0.99647,1.5229,-0.20344,-0.35575,0.15005,0.32836,-0.98036,0.70605,0.46536,0.40247 -0.30069,-0.34408,1.1396,0.70513,-1.3397,0.025878,0.44629,0.20295,-0.90458,-0.36093,0.52981,0.13827,-0.39555,-0.02902,0.13228,0.89804,-0.28646,0.24048,0.24205,0.4684 -0.39478,-0.68215,0.64374,0.6418,-1.5718,0.23782,0.38507,0.16012,-0.9447,-0.90043,0.12212,0.52026,0.21401,-0.22744,0.86756,0.86569,-0.47903,-0.054936,0.30477,0.35731 -0.70734,-0.22976,0.11376,0.45922,-1.6113,1.0727,0.45619,-0.34451,-0.11885,-0.30022,0.27997,-0.026312,0.49164,0.32786,-0.17421,0.21686,-0.16903,0.52675,0.18313,-0.53353 -3.2236,-0.30088,2.1144,-0.16469,-2.4452,1.0934,1.7055,-1.1156,-1.5638,-0.11016,-0.14682,0.44708,0.049762,0.33865,-0.02357,-1.036,0.25217,0.80262,-0.38895,-0.11632 -2.0537,-0.035655,1.3266,0.12678,-1.9143,1.9801,1.239,0.86735,-0.3919,-0.10215,0.45656,-0.37208,0.050865,0.068689,0.15458,0.041466,-0.3643,-0.057108,-0.25054,0.16801 -1.5957,-0.2066,-0.2266,0.10714,-3.1142,0.90923,0.97129,-1.4041,-0.21391,-0.12024,0.68784,-0.31815,-0.0076276,0.59104,-0.13835,0.8075,0.50497,0.71415,0.53838,-0.53924 -2.9567,-0.65372,1.0818,0.1642,-3.124,1.5927,1.1987,-1.0692,-0.87247,0.059802,0.22393,-0.79748,-0.42978,-0.1416,0.31133,0.2189,-0.1858,1.2412,0.75031,0.28714 -1.1335,-0.37439,0.081465,0.27714,-2.4802,1.3963,0.64531,-0.33729,-0.48852,0.2102,0.14654,0.15322,0.87357,0.40474,-0.073885,0.11801,-0.31937,0.34045,0.70641,-0.67019 -2.9597,0.5043,1.4398,-0.19643,-1.5458,1.4122,1.7561,-0.35833,-0.12199,0.065477,-0.43184,0.29072,-0.47225,0.30851,-0.41912,-0.053062,0.39593,0.21473,-0.39781,0.00015111 -2.1418,1.2519,1.009,-0.46735,-2.5025,1.0699,1.2399,0.32948,0.089418,0.37623,-0.048798,-0.12549,0.45175,0.49631,0.2356,0.58841,0.96165,-0.66684,0.0099939,0.28731 -2.0466,-0.45548,1.6726,0.65799,-2.3667,1.5601,1.0861,0.78062,-1.2176,-0.070107,0.68857,-0.27316,-0.45021,0.06236,0.79515,0.15243,-0.41513,0.54034,0.11728,0.52699 -2.9189,1.0599,0.92163,-1.5728,-1.2307,-0.31244,1.6418,0.57791,-1.0268,0.0050039,0.434,0.69278,0.20679,0.68743,0.3537,0.034042,0.25267,-0.15595,-0.24155,1.062 -1.1558,-0.48718,1.7487,0.23476,-2.2517,0.89339,0.94973,0.59527,-1.421,-0.098672,0.44673,-0.05709,-0.2023,0.0027657,0.42052,0.076342,-0.61256,0.29452,-0.44713,0.87997 -1.9466,0.38121,1.2807,0.3332,-2.1507,2.1721,1.5001,0.58484,-0.22749,-0.06699,0.67057,-0.1268,-0.12275,0.0701,0.14362,0.039269,0.05619,0.030985,0.24634,0.27457 -3.2724,-0.49084,-0.14615,-0.22687,-1.8933,0.92253,1.6102,-0.86824,-1.1031,1.0088,-1.0822,1.0164,0.8027,-0.38375,0.1135,-0.08128,0.27537,0.3001,-0.55948,0.11438 -0.68433,-0.43668,1.1863,0.44009,-1.9288,0.18433,0.17303,0.71868,-1.2498,-0.38904,0.30143,0.87345,-0.26714,0.00424,-0.058021,0.37602,-0.52282,-0.19382,-0.46152,0.33563 -1.4747,0.15804,1.3574,-0.25977,-1.7355,0.99908,1.3196,-0.32736,-0.1548,0.54592,-0.10905,-0.23972,0.20912,0.20328,0.09408,-0.36787,0.14973,0.24464,0.1622,-0.098386 -2.2262,-0.27305,0.87092,-0.21083,-2.7898,1.7216,1.7439,-1.2301,-0.74968,0.49255,0.22982,0.077683,0.61512,0.30914,-0.24459,0.46289,0.21642,-0.14621,1.1482,-0.35065 -1.7478,0.15621,1.3132,0.0034107,-2.6518,1.6135,1.2976,-0.63754,-0.44949,0.37725,0.013793,-0.17876,0.11463,0.46574,0.18135,-0.75044,0.089318,0.6194,0.62679,0.0857 -2.1257,0.86058,0.35187,-1.3021,-2.1609,0.13648,1.4541,-0.78488,-0.87368,0.75338,0.07101,0.64655,0.11964,0.5404,0.13654,0.68779,0.30208,-0.066551,1.0068,0.73699 -0.79107,-0.48864,0.63855,-0.0049742,-1.7043,0.90038,0.76083,-0.3017,-0.51311,0.096246,0.11437,0.0053967,0.8531,0.39768,0.14977,-0.41771,-0.44275,0.11654,0.38351,-0.30038 -2.4957,-0.30337,0.35027,-1.0014,-2.2684,-0.37913,1.3025,-1.7845,-1.1167,0.59095,-0.8956,1.1223,0.73911,-0.32063,0.17853,-0.10881,-0.068463,-0.072688,-0.37444,-0.25376 -0.38282,-0.65429,0.91291,0.82526,-1.391,0.74829,0.77031,0.11759,-0.68616,-0.12497,0.58153,0.42219,-0.036761,-0.18754,-0.032542,0.40038,-0.7136,0.35992,-0.53441,0.47026 -4.0831,0.15076,1.6165,-0.42815,-3.3309,1.5681,1.8832,-0.89331,-1.3715,-0.019035,0.10891,1.0677,0.021455,0.80199,-0.24246,-0.57574,0.29967,0.59786,-0.46574,-0.14315 -3.932,1.0404,1.2325,-0.25177,-1.9627,0.83249,1.9038,-0.175,-0.085204,-0.0037938,-0.22891,0.34048,0.099917,0.60494,0.026717,0.091575,1.0167,0.27983,-0.97775,-0.35203 -2.3239,0.060725,0.28809,-1.6709,-1.6254,-1.3378,2.3209,-0.19029,-0.70598,0.20379,0.79108,1.6411,0.58322,-0.5471,-0.22927,-0.00035045,-0.080754,0.98963,0.80235,-0.14572 -1.8677,0.066146,2.4934,0.69235,-2.2679,0.84678,1.0728,0.29104,-1.8496,-0.61626,0.47572,0.16161,-0.90554,0.60206,-0.24965,0.52513,0.56927,1.117,-0.32746,0.84853 -2.0226,0.2096,1.2447,-0.41263,-2.4554,1.3976,1.3402,-1.0016,-0.46258,0.26659,-0.2487,-0.50026,-0.015722,0.63659,0.28153,-0.46558,0.33965,0.5868,0.71831,-0.035851 -1.1054,-0.44549,0.71873,0.40914,-1.0671,1.2723,0.82171,-0.43489,-0.32746,-0.073105,-0.070842,-0.30031,0.059255,-0.51269,0.055629,0.35469,-0.66094,0.70651,0.19598,0.14671 -2.6039,0.35393,1.614,-0.18009,-2.7644,1.1561,1.7612,-0.93011,-0.082513,-0.3204,-0.13003,-0.27108,-0.55003,1.0292,0.80699,0.19812,0.51244,0.53806,0.28117,0.76646 -2.5133,-0.17099,0.363,-0.32277,-1.743,0.51816,1.0875,-1.5795,-0.57753,-0.23992,-0.06035,-0.16825,-0.63215,0.18431,0.23475,-0.12521,0.017607,1.3822,0.19345,0.2326 -2.8927,0.98092,0.36213,-1.2806,-1.217,-0.59874,1.1463,0.55474,-1.261,0.36924,0.58381,0.48552,0.60402,-0.10668,0.59858,-0.17581,-0.47876,0.30154,0.46054,0.092061 -3.448,0.87772,2.0824,-0.55444,-2.2861,0.93538,1.7267,-0.80619,-1.0216,-0.57803,0.29145,-0.019109,-0.33815,0.79163,-0.077954,-0.44829,1.1729,0.6281,-0.54351,0.31881 -3.0561,-0.52691,1.254,1.1604,-3.1992,1.9329,1.1253,-0.35098,-1.8542,-0.37266,0.027045,0.21673,-0.33703,0.57811,0.38435,0.072966,-0.50538,1.1855,-0.21837,0.5025 -3.2654,-0.079919,0.11532,-1.1204,-2.8255,0.23824,1.6648,-1.8014,-0.77392,0.8238,-0.59746,0.51088,0.40535,0.13479,0.3798,-0.31747,0.45013,0.65528,0.43181,-0.14698 -2.2581,-1.4497,1.2468,0.91984,-2.5619,1.1003,0.70228,0.65874,-2.1692,-0.031455,0.14441,0.38739,0.07972,-0.020271,1.2182,-0.63594,-0.43185,0.35085,0.15088,0.58594 -2.4092,-0.17398,1.9339,-0.51381,-2.8495,1.6619,1.6752,-0.46435,-0.95643,0.18547,0.57355,-0.39114,-0.0092961,-0.10544,-0.2239,-0.36968,0.10776,0.39908,0.33858,0.22281 -2.6821,-0.031093,2.0897,0.10604,-2.3612,1.9559,1.8085,-0.28317,-1.1784,-0.64018,0.21106,-0.38332,-0.65393,0.28559,0.024163,0.59856,0.45353,0.73068,-0.030852,0.33446 -1.284,-0.12916,1.2809,0.10517,-2.2584,1.6041,1.1998,-0.2216,-0.41669,-0.10923,0.46611,-0.67553,0.17694,0.43724,0.057863,0.18393,-0.21458,0.62859,0.71081,-0.1059 -1.7977,0.93403,0.55472,-1.2681,-1.6675,-0.10683,1.7232,-0.046932,-0.65554,0.29655,0.40268,0.97311,-0.073581,0.63205,0.4465,0.41158,0.1228,0.20531,0.89897,0.85503 -1.9425,0.11187,0.30345,0.37552,-3.6983,1.9928,1.2101,-0.73858,-0.88342,0.017461,0.25611,0.35829,0.84823,0.71086,-0.04431,0.29068,0.40149,0.33158,0.63128,-0.5239 -2.6869,0.87424,0.48443,-1.4099,-1.8423,0.3764,1.8558,-0.20205,-0.57705,0.18415,-0.088473,0.85501,-0.1675,1.1074,0.33609,0.91163,0.43415,-0.39187,0.47168,0.69199 -2.2708,-0.035312,1.7441,-0.079887,-1.9864,1.6739,1.7422,-0.39972,-0.68625,0.30083,0.14432,-0.25185,-0.47334,0.13692,-0.28028,-0.26372,0.23452,0.64326,0.11141,0.079158 -2.733,-0.38457,0.026837,0.25086,-1.8203,0.93409,0.93294,-1.3832,-0.66733,0.35056,-0.35082,0.26995,-0.27068,0.26529,0.13406,-0.4003,-0.5987,1.3444,-0.16917,0.085649 0.10907,-0.86693,1.2403,0.6612,-1.7011,0.14896,1.4138,-0.1097,-1.1732,-0.76677,0.52154,0.65445,-0.17316,0.36857,0.92442,0.76276,-0.21115,0.3175,-0.14112,0.45721 -1.1742,-0.28635,1.5613,0.35334,-2.0529,1.8182,1.4236,0.62564,-0.87465,-0.59307,1.001,-0.17571,-0.014316,0.11032,0.34148,0.26569,-0.24906,0.028925,-0.31665,0.37734 -1.5764,-0.32481,1.8404,0.17303,-2.1902,1.5732,1.1314,-0.014924,-1.3239,-0.66468,0.43034,-0.73081,-0.38717,-0.0094779,0.2797,0.71696,-0.08522,0.39996,0.48197,0.70284 -2.7714,0.69341,1.8598,-0.10076,-2.8318,0.91084,1.8327,-0.42899,-0.30029,0.57699,-0.22709,0.42685,0.2893,0.27771,-0.18338,-0.41466,0.98265,-0.16045,-0.60898,-0.35998 -2.7025,-0.43336,1.3084,0.16455,-2.4561,1.509,0.64143,-0.67837,-0.74407,0.0854,-0.13994,-0.096696,-0.35992,0.15023,0.58067,-0.78187,-0.72288,0.53295,0.30613,0.15904 -1.2482,-0.3408,1.7207,0.3313,-2.9211,1.6494,1.5769,0.55676,-1.2035,-0.82068,1.0587,-0.24685,-0.16662,0.53574,0.4624,0.81522,-0.15268,0.6773,0.22618,0.4349 -3.4245,0.22066,0.56655,-0.43641,-2.5404,1.9496,1.6552,-0.57553,-0.57967,0.44177,-0.32999,-0.025799,0.37139,0.39473,0.22803,0.63671,0.2312,-0.38232,0.72119,-0.06452 -1.9606,0.20539,0.43148,-1.623,-1.5942,-0.67778,1.8232,-0.49933,-1.1158,0.48023,0.35861,0.98871,0.36989,0.03572,0.38689,-0.16788,-0.22618,0.68143,0.94513,0.48407 -2.1711,0.41913,1.6314,-0.35967,-3.2731,1.6745,1.6621,-0.57217,-0.42087,0.3854,0.0058123,-0.13657,0.46641,0.53455,0.025161,0.068937,0.42285,-0.22614,0.51875,-0.059532 -1.1065,-0.43055,0.23306,0.19747,-1.9954,1.205,0.73617,-0.72971,-0.41764,-0.05887,0.58119,-0.36331,0.48031,0.12979,-0.065924,0.12192,-0.13679,0.72179,0.93075,-0.54706 -1.8853,-0.52117,1.1988,1.6447,-2.1561,0.94139,0.39924,-0.33323,-1.7063,-1.0251,0.26861,0.18942,-0.22171,-1.0987,0.59991,1.6857,-0.027721,0.42881,0.86104,0.53178 -2.3,-0.87399,-1.2117,0.2704,-3.1818,-0.27567,1.0493,-0.91529,-1.548,0.85829,0.86506,0.34658,-0.60726,-0.02254,0.41711,0.50759,-0.17844,0.34761,0.18153,0.72399 -1.162,-0.0012683,1.3317,0.60362,-1.9509,1.0627,1.1215,0.1021,-0.60412,0.041276,0.56506,-0.62978,-0.31587,0.30392,0.49351,0.055031,-0.31799,0.62918,0.21642,0.44624 -1.0712,-0.58789,1.4516,0.8147,-2.2889,0.37571,0.33673,1.0216,-1.698,-0.20526,0.40823,1.1896,-0.24965,0.050083,0.052056,0.12858,-0.41607,-0.062563,-0.59687,0.46191 -2.1644,-1.0402,0.58397,1.4512,-2.2205,1.4656,0.48563,0.19246,-2.0624,0.28108,-0.092198,-0.16503,-0.037266,-0.14472,0.66717,-0.025407,-0.28864,0.69746,0.48053,0.85803 -2.9741,0.42206,1.7282,-0.19678,-1.9785,1.6647,2.0814,-0.68566,-0.85151,0.29985,-0.029926,0.090746,-0.56554,0.10601,-0.17621,-0.28058,0.46059,0.92726,0.092398,0.17148 -1.6383,0.089274,0.46712,-0.47548,-2.3518,1.0552,0.78287,-1.1353,-0.51413,0.32203,-0.36905,0.048716,0.38989,0.066541,-0.069756,-0.16041,0.057835,0.16328,0.79906,-0.20634 -1.5201,0.18972,1.707,0.31129,-2.4255,1.8207,1.5167,0.18415,-0.20701,-0.24192,0.34677,-0.25397,-0.028319,0.085046,-0.28164,0.69081,-0.28088,0.35006,0.033539,0.050306 -2.2671,-0.15418,-0.12043,-1.0866,-1.979,-0.59293,1.6211,-0.38405,-1.4598,0.24719,-0.09532,1.6363,1.0371,0.52193,1.1309,-0.27835,-0.095797,-0.39381,0.32729,0.079297 -0.97157,-0.70383,1.4373,1.1533,-1.614,0.46405,0.75314,-0.61317,-0.59401,-0.5956,0.70844,-0.088869,0.54084,-0.90382,0.61113,0.69633,-0.34528,0.70052,0.29523,0.77133 -3.5347,0.30113,1.2041,-0.65744,-2.3908,1.9042,2.1762,-0.6641,-0.60209,-0.032844,-0.19237,0.11041,-0.16495,0.13853,-0.57211,0.39743,0.48073,-0.1175,0.30262,0.10041 -1.5937,0.078523,1.4752,-0.16647,-2.5948,1.1649,1.4149,-0.52662,-0.63706,0.56565,0.0042806,-0.2192,0.51284,0.29934,0.20661,-0.69143,0.22109,0.49517,0.33042,-0.39348 -2.4049,-0.20082,1.4728,0.80685,-2.3833,1.9691,1.4063,1.1569,-0.79943,-0.056051,0.8101,-0.1616,-0.2872,-0.1474,0.59133,0.072419,-0.45843,0.47809,-0.48358,0.2849 -2.5175,-0.062889,1.7331,-0.13604,-2.8013,1.6842,1.0476,-0.6267,-0.94966,0.11072,-0.1635,-0.10221,-0.16516,0.10688,0.15883,-0.77333,-0.30689,0.38544,0.11565,0.041341 -2.1453,0.80351,-0.045086,-1.0498,-2.0032,0.46175,1.3754,-0.62618,-0.64794,0.59417,0.1621,0.73916,-0.10708,0.38665,-0.26926,1.0305,0.45129,-0.36636,1.1307,0.68671 -2.0325,0.14979,0.8211,-0.75505,-1.5279,-0.83764,1.4526,-0.73893,-1.2081,0.14142,-0.63253,1.3669,0.68466,0.60937,0.4335,0.11377,0.17833,-0.014674,0.17565,-0.19716 -2.6344,1.0148,0.42485,-0.20455,-3.6355,0.99832,1.9005,-0.55039,-0.42299,0.50285,0.14914,0.56042,0.39406,1.0012,0.42872,0.61661,0.56281,-0.27808,0.52909,0.30227 -0.36148,-0.071885,1.2,0.25763,-2.0433,1.0286,0.92449,-0.23488,-0.39541,-0.49203,0.66724,0.13052,0.34905,0.26834,0.10992,0.30198,-0.52064,0.39355,0.2537,-0.12987 -2.0613,0.53844,1.092,-0.062472,-1.3759,1.0908,0.97052,0.4402,0.038415,0.451,-0.28343,-0.090625,-0.047569,0.33867,-0.04978,-0.037607,0.16007,-0.22628,-0.49958,-0.094808 -2.0252,-0.81795,2.1824,0.65777,-2.7097,1.0388,1.0547,0.033319,-1.9757,-0.28263,0.44106,-0.19783,-0.64112,0.56319,-0.087267,-0.020152,-0.011501,1.0251,0.20683,0.61051 -2.1517,-0.37372,1.9406,0.059517,-2.6324,1.5597,1.1785,-0.37272,-1.2109,-0.0623,0.40736,-0.22762,0.050405,-0.18681,0.4434,-0.60626,-0.62935,0.3569,-0.059837,0.25828 -2.5562,0.91068,0.96232,-0.67464,-2.7274,1.2556,1.8128,-1.439,-0.44809,0.24145,0.041688,0.36051,-0.20112,0.57199,-0.20041,0.097989,0.74038,0.057543,0.82984,0.047005 -1.8132,-0.58031,0.63765,0.58993,-2.4901,1.8021,0.60713,-0.61142,-1.0344,-0.0022156,0.49967,-0.54952,-0.047514,-0.18598,0.25815,0.13451,-0.84989,0.98181,0.61239,-0.18523 -2.4037,0.086998,0.746,-0.58943,-1.9617,0.4921,1.1439,-1.47,-0.57693,-0.18909,-0.71439,0.61639,0.20994,0.50001,0.6366,-0.731,-0.34004,0.5701,-0.12184,-0.17166 -0.72458,-0.55941,1.1106,0.99169,-1.8621,1.196,0.76295,0.22947,-0.78894,-0.21011,0.6378,0.29624,0.049392,-0.088706,0.086771,0.41528,-1.2326,0.48021,-0.38492,0.33049 -2.0096,0.72506,0.92419,-0.15622,-2.068,1.1294,1.3533,0.0015368,0.051008,0.58666,-0.38193,0.21574,0.43402,0.3716,-0.056797,0.19722,0.19561,-0.53474,0.39444,0.072806 -2.7477,-0.035258,-0.2837,-0.085769,-1.9136,0.66424,1.4679,0.34649,-1.7993,0.8834,-0.73238,1.3582,1.07,-0.0017128,1.048,0.32582,0.22808,-0.57115,0.072906,0.43105 -2.105,-0.016221,2.184,0.2101,-2.8235,2.0157,1.7608,0.46419,-1.0314,-0.14661,0.85718,-0.23706,-0.33876,0.11077,0.16942,0.21671,0.22754,0.47846,-0.42801,0.40778 -1.1308,-0.6482,1.2791,0.52947,-2.543,1.4941,1.1752,0.2719,-1.0034,-0.7005,0.85389,-0.47046,0.19024,0.3195,0.73284,0.70518,-0.60758,0.88182,0.49337,0.17385 -2.8375,-0.34049,2.2579,0.21392,-1.4803,0.97008,1.3249,-0.19066,-1.6402,-0.31326,0.00083381,-0.082785,-0.65059,0.43362,-0.0080813,-0.040442,0.38609,1.0282,0.13876,0.53801 -2.3098,-0.72672,1.1165,0.8137,-0.89425,1.1822,1.0408,0.23727,-0.93228,0.077837,-0.36713,0.02558,-0.098642,-0.32975,0.60073,-0.55261,0.04504,0.27479,-0.31555,-0.087729 -2.0707,-0.50347,0.88637,0.60892,-2.556,2.0014,0.97108,-0.22516,-0.44899,0.39409,-0.30295,-0.080857,0.6078,0.31896,0.18105,-0.56581,-0.67906,0.24063,0.027394,0.033006 -0.73555,-0.27095,0.38986,0.55104,-1.0281,0.74828,0.33167,0.10274,-0.18183,-0.043228,0.15073,-0.24537,0.076022,0.014965,0.36111,-0.24794,-0.54842,0.4418,0.078467,0.10969 -1.7505,0.52483,0.61414,-1.1745,-1.3757,-1.0668,1.475,-0.24596,-1.0681,-0.16673,0.6235,1.0858,0.53071,0.50526,0.13378,-0.39385,0.11878,0.14543,-0.22329,0.36053 -2.7243,-0.41683,1.7595,0.18069,-2.3124,1.1503,0.53097,-0.20134,-1.1392,-0.30467,0.30714,0.30916,-0.020992,-0.48326,0.32625,-1.3455,-0.16009,0.51219,0.15899,-0.23183 -1.871,-0.51598,1.749,0.99294,-2.6536,1.4496,0.59747,0.57864,-1.3977,-0.19648,0.67159,0.3283,-0.49123,0.33361,0.40328,-0.1233,-0.95378,0.43339,-0.0417,0.61457 -2.6346,0.2353,0.52753,-0.55073,-1.0009,-0.62869,2.4108,-0.67726,-0.41323,-0.53288,0.69172,0.42717,-0.33167,0.80094,0.32161,-0.023304,-0.46028,0.43255,-0.39656,0.79194 -1.64,-0.59224,1.4494,0.65291,-1.6592,1.4136,0.70755,0.81703,-1.3373,0.13759,0.43763,0.2326,-0.28892,0.07841,-0.077476,-0.43215,-0.29838,0.31539,-1.2218,0.48767 -1.3143,0.22564,1.6587,0.070133,-1.5801,0.66261,0.66795,-0.17226,-0.83727,0.09988,0.6128,-0.83809,-0.30386,-0.046408,0.23656,0.36392,0.57261,0.40593,-0.31984,0.68919 -1.7355,-0.58665,0.62294,0.76184,-2.205,1.8525,0.59577,-0.21315,-0.79853,0.14704,0.17459,-0.32823,0.20214,0.09602,0.32043,-0.4165,-1.0089,0.70963,0.37349,0.0089635 -1.2093,-0.30093,0.88878,0.93655,-2.1321,1.6678,1.0536,0.62659,-0.58552,-0.28646,0.08274,-0.13439,0.41555,0.097834,0.27235,-0.00927,-0.51893,0.68596,-0.064589,0.34751 -1.8217,0.26321,0.48235,-1.264,-1.6469,-0.26065,1.5724,0.18199,-1.2957,0.27622,0.22409,1.2238,0.5129,0.51759,0.56104,-0.84798,-0.19335,0.098201,0.4202,0.56403 -1.3859,-0.087913,1.3227,0.58358,-1.6653,1.6869,1.3038,0.074119,-0.031294,-0.46404,0.16182,-0.10158,-0.026646,-0.11501,0.012161,0.52005,-0.52596,0.19763,-0.011539,0.10817 -2.5647,0.28079,1.1351,0.0049451,-1.0736,1.2319,1.2134,0.21069,-0.044171,0.057669,-0.41395,0.18296,-0.33052,0.57034,-0.38969,-0.10425,0.42917,-0.16558,-0.32109,-0.18067 -0.98956,0.041965,1.0197,-0.049944,-1.9013,1.2222,1.2375,-0.13628,-0.18175,0.24726,0.57369,-0.14821,0.27689,0.48334,-0.15854,-0.07943,0.11104,0.19387,0.7342,-0.12519 -1.4335,-0.47955,1.252,0.72393,-2.127,1.5836,0.59223,0.27608,-0.84785,-0.048553,0.54304,0.0019544,-0.15979,-0.11711,0.48713,-0.1314,-1.0018,0.41848,-0.12904,0.12419 -2.1532,0.2273,0.050003,-0.658,-0.69091,-0.18586,1.0987,-0.52879,-0.91558,0.21676,-0.64841,0.85785,0.40473,-0.37193,0.16207,0.80832,0.15961,0.063471,-0.17565,0.09007 -2.735,0.18124,0.2202,-0.90831,-2.1498,-0.4078,2.3213,-1.7478,-0.22933,0.40727,-0.52681,1.1445,0.3542,0.37111,0.31754,0.038491,0.14062,0.81586,0.20757,-0.2314 -1.6139,-0.29311,2.173,0.15266,-2.4471,0.8895,0.93872,0.35156,-1.9151,-0.18455,0.43498,-0.13607,-0.54509,0.38077,0.1407,0.15643,0.31545,0.55668,0.079448,0.95771 -3.4753,-0.44423,1.1124,0.61604,-1.7949,1.0718,0.69816,-0.96447,-1.6781,-0.058996,0.13459,0.4396,-1.1758,0.0019223,-0.22699,0.026981,-0.81706,1.4554,0.34786,0.23135 -1.987,0.2983,1.4131,-0.33447,-3.5231,1.5201,1.3738,-0.77378,-0.51978,0.50559,0.026133,0.083539,0.72507,0.58519,0.29803,-0.7206,0.36016,-0.20655,0.41614,-0.21433 -2.5982,-0.9258,1.9663,0.49274,-1.6622,0.97839,1.3252,0.67706,-2.3664,-0.67754,0.25028,0.21347,-1.1274,0.02506,-0.7237,0.83152,0.6533,0.65646,-0.20295,0.66437 -0.78477,0.24252,1.3675,0.58655,-1.8066,0.95042,1.0861,-0.16869,0.004475,-0.032817,0.55091,-0.31669,-0.34482,0.49911,0.0050693,0.42052,0.14473,0.42601,0.16709,0.37902 -2.4988,-0.44687,2.2461,0.16062,-2.6932,1.0815,1.0916,-0.58406,-1.8128,-0.26594,-0.11952,0.47517,0.22064,-0.18265,0.14646,-0.86923,-0.089372,0.19998,-0.83452,0.19906 -1.7984,0.33028,-0.28509,-0.61738,-1.3782,-0.79151,1.3442,-0.10542,-0.8347,-0.030221,-0.23393,1.446,0.28284,-0.61125,-0.13106,0.60855,-0.3453,0.68058,0.54476,0.046343 -2.3033,-0.88357,1.2905,0.23462,-1.6673,0.82922,0.74901,-0.41534,-1.1394,-0.55884,0.24452,-0.80399,-0.69803,-0.6713,-0.21002,0.83467,-0.02084,1.0988,0.32294,0.88155 -3.1913,-0.084825,1.7435,0.073317,-1.7323,1.5209,1.9963,-0.16842,-0.86267,0.4767,0.44495,0.12502,-0.51825,-0.27556,-0.4147,-0.22027,0.48417,0.91367,-0.16487,-0.14779 -2.6789,-0.49982,1.1957,0.61679,-1.916,1.1535,0.98413,-0.76488,-1.4458,0.097729,0.32261,-0.44959,-1.1071,-0.36032,0.13209,0.27884,0.072253,1.4557,0.56649,0.48752 -2.2053,0.85415,1.9066,-0.038304,-2.2205,1.428,1.8551,-0.25696,-0.39355,0.34661,0.29039,-0.06357,-0.4614,0.2453,0.35563,-0.2086,0.7973,0.5615,-0.098763,0.39945 -0.91352,-0.64108,1.1575,0.87569,-1.0591,0.75621,0.59959,-0.012862,-0.85659,-0.3745,0.12337,-0.086374,-0.17608,-0.91203,0.39869,0.59811,-0.55904,0.11329,0.15053,0.90813 -2.959,-0.7962,-0.020458,-0.61231,-2.5166,0.13357,1.1747,-1.558,-0.69636,0.62912,-0.78208,0.735,0.40574,0.024453,0.87227,-0.3721,-0.16968,0.5662,-0.22512,0.0239 -2.025,-0.048618,1.7292,-0.17292,-1.8167,1.3446,1.5759,-0.42941,-0.87986,0.33251,0.093995,-0.18327,-0.19405,0.014661,-0.1682,-0.35464,0.2647,0.59094,0.094158,-0.04 -2.5218,0.20037,0.36181,-0.37508,-1.3193,-1.6644,2.0039,0.51854,-0.98727,-0.463,0.20643,2.0103,0.70811,-0.68368,-0.50896,0.47295,-0.57649,0.94427,0.51905,-0.2388 -2.4698,0.35815,1.0457,-0.81794,-2.6212,0.98456,1.5888,-1.5274,-0.62816,0.53576,-0.68221,0.26195,0.45632,0.65452,0.27757,-0.43454,0.62724,-0.11542,0.57174,-0.19619 -1.6964,0.8556,1.3802,-0.22379,-3.5685,0.78865,1.2411,-0.51282,-0.38553,0.36065,-0.31307,0.32078,0.61805,0.63146,0.58438,-0.21455,0.71368,-0.11568,-0.25546,-0.30495 -2.0539,0.17525,-0.51457,-0.68186,-1.3447,-0.19765,1.1007,-0.57661,-0.80016,0.79888,-0.53844,0.83747,0.46971,-0.3,0.66968,0.22649,-0.094472,0.10672,0.36743,0.38277 -2.7356,1.0958,0.28216,-1.2111,-2.2965,0.58214,1.8192,-0.75015,-0.38156,0.41669,-0.16055,0.69396,0.074291,0.62474,-0.21911,0.86609,0.70568,-0.49107,0.76538,0.58989 -2.107,0.06337,-0.046769,0.096814,-2.9559,0.84018,1.0447,-0.028372,-0.61585,0.85861,-0.88657,0.46907,0.66379,0.37419,0.47713,0.083067,0.35934,-0.18247,0.52321,-0.1452 -2.7074,0.08016,0.36409,-1.262,-2.7546,0.09087,1.6533,-1.6647,-0.96864,0.53788,-0.6309,1.323,0.88115,0.28323,0.43965,0.023102,-0.075023,-0.01552,0.22974,-0.20282 -1.9616,0.13989,-0.36842,-1.2288,-2.1575,-0.029112,1.0392,-0.66847,-1.2889,0.85871,0.38855,1.3909,0.22577,-0.13021,0.24235,0.37207,-0.94212,0.27851,0.31953,0.49788 -0.44856,-0.66195,-0.080386,0.50648,-1.4768,0.88855,0.50608,-0.11842,-0.72438,-0.27169,0.68843,0.031748,0.59487,0.20853,0.23769,-0.055704,-0.26877,0.7383,0.096182,-0.54868 -1.5009,-0.071257,0.14706,-0.29918,-2.0982,0.98745,1.0459,-1.0625,-0.15987,0.48131,0.13265,-0.2998,0.28148,0.11259,-0.32168,0.38675,0.35957,0.37451,1.1046,-0.22451 -0.76525,-0.16987,0.6876,0.092722,-1.9841,1.2197,0.63627,0.0234,-0.32367,-0.17014,0.47794,0.028881,0.65698,0.41374,0.21904,-0.09786,-0.46293,0.17604,0.64531,-0.41509 -2.4785,0.77727,0.64788,-1.2546,-2.5048,0.401,1.124,-1.2675,-0.75817,0.28686,-0.4048,0.70809,0.32209,0.66025,0.33257,-0.027313,0.29651,-0.59287,0.40522,0.067539 -2.905,0.95223,1.1296,-0.96297,-2.4937,1.1034,1.9411,-1.1686,-0.49668,0.48339,-0.24915,0.20432,-0.035106,0.7301,-0.18626,0.11135,0.94759,-0.069311,0.6039,0.064687 -2.5572,0.32871,0.62412,-0.32503,-2.8894,1.5177,1.5354,-1.0485,-0.046548,0.23455,0.017187,-0.43407,-0.23034,0.61501,0.15195,0.46064,0.77325,0.47934,0.77184,0.027528 -1.23,-0.39374,1.4295,0.75793,-3.0214,1.7664,1.2473,0.32541,-1.1216,-0.25942,0.84334,0.1224,0.27225,0.25365,0.61404,-0.18903,-0.83337,0.48037,-0.16358,0.21642 -2.0976,-0.20762,1.2296,-0.14057,-2.9343,1.4924,1.1793,-0.55929,-1.6355,0.42431,-0.2429,-0.019113,0.45399,0.14916,0.73758,-1.292,0.45568,0.4932,0.29662,-0.12595 0.24174,-0.36877,0.9071,0.64934,-1.6031,0.61232,1.7609,-0.28062,-0.474,-0.12488,0.91082,0.94541,0.18932,0.34402,-0.03521,-0.0027418,0.40804,0.71562,-0.052415,-0.11502 -2.4335,0.93927,0.75002,-0.72194,-1.7736,-0.41356,1.8181,-0.47817,-0.41173,0.32396,-0.69938,1.4519,0.26774,0.43029,0.1913,0.15305,0.48552,-0.12757,-0.15195,0.12347 -1.6961,0.74972,0.70591,-1.3151,-1.781,-0.97481,1.3598,-0.13301,-1.445,-0.30034,0.5934,1.3375,0.52163,0.29098,0.57223,-0.45767,0.34401,-0.0027534,0.4443,0.43069 -2.8792,0.45032,0.51876,-0.94198,-2.8363,1.2004,1.5804,-1.7421,-0.91061,0.30961,-0.14313,0.54525,0.33087,0.19181,-0.42379,0.22288,0.11929,-0.35352,0.91108,-0.14976 -1.6182,-0.17195,0.22389,-0.43984,-1.5437,0.60619,0.92466,-0.39311,-0.57789,0.46845,-0.87613,0.55357,0.56576,0.47177,0.69576,-0.29171,0.3505,-0.54402,0.12222,-0.17003 -2.1908,0.5608,0.5201,-0.70231,-2.6475,0.91742,1.6364,-1.3863,-0.33223,0.55107,0.0034569,0.31575,0.34618,0.20776,-0.41795,0.70712,0.42476,-0.26206,0.94656,0.021618 -0.83192,-0.037574,0.7693,0.37253,-2.3184,1.4397,0.59632,-0.13278,-0.2078,-0.4106,0.29502,0.29813,0.5682,0.28661,-0.094921,0.20737,-0.87807,0.043446,0.21962,-0.44789 -1.1167,0.21258,1.3101,0.06372,-1.4279,1.3451,1.1136,0.049936,-0.50511,-0.18907,0.62225,-0.18549,-0.1042,-0.28223,-0.0061682,0.11343,0.21541,0.073936,0.03835,0.54914 -1.6962,0.30195,0.99825,0.1868,-1.6004,1.6577,1.0443,0.52689,-0.0093764,0.11027,0.075404,-0.067625,-0.028674,-0.069035,-0.064285,0.022413,-0.21561,0.043558,0.08199,0.084546 -2.4371,0.18396,0.23353,-0.45971,-2.4865,1.1514,0.97583,-1.4865,-0.91216,0.61334,-0.2772,0.6626,0.071359,0.19513,-0.37031,-0.44103,-0.36674,0.32343,-0.20926,-0.10041 -1.0713,-0.41546,0.66467,-0.051435,-1.4897,0.68407,0.56299,-0.42895,-0.19623,0.076535,0.10455,-0.89524,0.22824,-0.13314,-0.4151,0.67945,0.076553,0.34619,0.013375,-0.078254 -1.8781,-0.21858,1.0746,-0.3013,-1.3663,0.53119,1.2067,-0.60571,-0.22456,-0.04784,-0.55259,0.17355,0.20075,0.48018,0.38728,-0.59075,-0.10836,0.37025,-0.09176,-0.24578 -2.8811,-0.24332,-0.174,-0.91406,-1.5333,-0.48861,1.5257,-1.1576,-0.29467,-0.25128,0.23252,0.48531,-0.28969,0.47561,0.11033,0.47486,0.038632,1.5018,0.13636,0.33787 -1.6132,-0.5953,0.49433,0.29524,-1.8584,1.2975,0.37855,-0.5511,-0.35916,-0.11988,0.29714,-0.71276,-0.057866,-0.44679,0.22798,0.10206,-0.41562,0.76381,0.7529,-0.07572 -1.1972,-0.47758,1.0237,1.0967,-2.8332,1.8722,1.1198,0.23591,-0.84197,-0.064726,0.57147,0.24685,0.41864,0.45134,0.30806,-0.41034,-0.86805,0.59529,-0.27487,0.064657 -0.94757,-0.33449,1.3476,0.24504,-2.5005,1.3652,1.2202,0.013619,-0.49718,-0.045912,0.72878,-0.01116,0.71075,0.27144,0.33738,0.16872,-0.6827,0.17836,0.15052,-0.19359 -1.2274,0.10301,0.337,0.25411,-2.4634,1.4439,0.72134,-0.26561,-0.41976,0.32689,-0.13214,0.32919,0.83635,0.87892,-0.11016,-0.14512,0.21448,-0.37282,0.31657,-0.19382 -2.1778,0.021237,2.2843,0.51421,-2.0195,0.88188,1.1651,0.27979,-1.4595,-0.14499,0.1359,0.23062,-0.34973,0.1708,0.33967,-0.02793,0.40747,0.8514,-0.18283,0.6212 -2.8024,0.53214,0.86132,-0.80227,-3.508,1.2621,1.6768,-1.1591,-0.72928,0.71817,-0.19271,0.55233,0.62615,0.76966,0.13233,0.0024923,0.46853,-0.40928,0.75726,-0.069212 -0.56414,-0.86863,0.43214,0.7435,-1.7294,0.90414,0.7332,0.25521,-1.1208,-0.89098,0.5903,0.12865,0.25279,0.52751,0.98069,0.59257,-0.72643,0.58557,0.18443,-0.11971 -2.7002,-0.49423,2.3105,0.60418,-2.4192,0.70143,1.0301,-0.11103,-1.7897,-0.018202,0.04224,0.62738,0.10991,0.025147,0.34624,-0.80322,0.04278,0.38107,-0.57914,-0.10483 -1.8414,-0.52015,1.5787,0.81696,-3.6534,2.1824,1.6615,-0.32125,-1.2054,-0.63242,0.86968,0.03863,0.051851,0.64809,0.47891,0.41048,0.15583,0.98371,0.46575,0.22564 -0.41258,-0.49177,1.0336,0.75024,-1.6393,1.0481,0.94054,-0.021188,-0.622,-0.5005,0.65346,0.43361,0.20741,-0.15497,0.23746,0.46559,-0.95713,0.455,-0.13233,0.19961 -3.5792,-0.56043,1.2987,0.87812,-2.0477,1.5293,1.2966,0.12092,-1.2149,0.41027,-0.52343,0.14118,0.44573,-0.24294,0.66542,-0.91407,0.47039,-0.028061,-0.86274,-0.14331 -2.9801,0.72993,0.91069,-1.1378,-3.0651,0.60891,2.0617,-1.4025,-0.7456,0.61779,-0.40495,0.95176,0.5151,0.42896,-0.12989,0.23679,0.49816,-0.29363,0.5897,0.19843 -1.4502,0.45221,0.27211,-0.40992,-1.5819,0.1858,1.1342,-0.74208,-0.27405,0.48337,-0.69357,0.93586,0.21372,-0.097269,-0.14876,0.22569,0.0036872,-0.16331,0.41283,0.18525 -1.5409,-0.59441,1.8843,0.42676,-2.6167,0.39221,0.56182,0.60882,-2.4091,0.028924,0.38107,0.20747,0.012982,-0.25801,0.67808,-0.086243,0.70712,-0.23068,-0.91498,1.045 -1.7673,0.47224,1.6158,0.061495,-2.3554,1.8673,1.6381,0.54514,-0.35296,0.17321,0.62079,-0.39825,0.013235,0.35673,-0.17113,0.15989,0.23633,0.14862,0.045588,0.10824 -1.2059,0.28885,0.14706,-0.14918,-2.2066,0.81834,1.2255,-0.10838,0.29004,0.1867,0.1234,0.39072,0.26934,0.57146,-0.10156,0.90973,0.50202,-0.14452,1.1053,-0.1415 -0.97026,1.0099,0.82053,-0.70175,-2.1411,0.25419,0.92023,-0.32136,-0.50571,0.32695,0.21766,0.37695,-0.030289,0.92843,0.32778,0.27701,0.92448,-0.27186,0.43832,0.71524 -2.0239,0.25308,0.59589,0.082524,-2.2179,1.4177,1.3708,-0.63628,0.16407,0.33646,-0.6301,0.095833,0.1957,0.36263,0.24074,-0.083207,0.28534,0.23643,0.50553,-0.068187 -1.8106,-0.23181,0.8531,1.1411,-2.1691,1.9488,0.5923,0.26183,-1.1702,-0.23119,-0.13605,-0.1964,0.044974,0.18651,0.10376,0.3254,-0.77556,0.58007,-0.089925,0.37299 -1.2895,-0.54339,1.8101,1.7068,-2.9251,0.7426,1.2025,0.68928,-1.9708,-0.71102,0.37624,0.40357,0.002587,-0.044873,0.7062,1.4048,0.031167,0.076218,0.48176,0.94598 -2.8413,-0.16793,0.48636,0.0061729,-1.1288,-1.1659,1.706,-0.63395,-0.29258,-0.059133,-0.49918,1.6935,0.63628,1.0193,0.21334,-0.09971,0.61378,0.43458,0.30153,-0.87857 -1.377,0.36262,1.1179,-0.27952,-3.2769,1.0865,0.97672,-0.31427,-0.72997,0.34137,-0.081247,0.23093,0.85456,0.53514,0.11854,-0.40993,0.63289,-0.77052,-0.151,0.14001 -2.5156,-0.036822,1.3125,-0.1663,-1.8078,1.3088,1.6845,-1.1568,-0.30792,0.22198,-0.64031,-0.2062,-0.047026,0.17703,0.18652,0.18641,0.028098,0.51762,0.33824,-0.029899 -2.1264,0.078943,2.0579,-0.22031,-2.8925,1.5674,1.8574,-0.66609,-0.86045,0.25498,0.35374,-0.0034337,0.17426,0.064298,-0.030014,-0.5225,0.20595,0.28766,0.062594,0.0033654 -2.437,-0.43564,1.5161,0.57111,-1.7082,1.454,0.96099,-0.26195,-1.0443,0.26038,0.17384,-0.40505,-0.82109,0.025609,0.41713,-0.14109,-0.02596,0.95747,0.51634,0.32591 -1.5323,0.064389,2.2023,0.37667,-1.842,1.0889,1.1496,0.5553,-1.4417,-0.26965,0.49013,-0.38463,-0.73518,0.114,0.0095151,0.82144,0.40475,0.31332,-0.31796,1.1121 -0.4005,-0.06152,0.7817,0.32833,-1.1373,0.73164,0.56545,0.023152,-0.2684,-0.18237,0.33891,-0.011732,-0.051573,0.070663,-0.027894,0.26935,-0.70332,0.38058,0.021407,0.0067584 -1.4817,0.90866,1.5942,0.2661,-2.1804,1.3306,1.4685,0.10748,0.10609,0.40574,0.30051,-0.2255,-0.17366,0.011146,-0.037734,-0.14189,0.26053,0.38779,-0.30515,0.30616 -1.2172,-0.55083,2.4124,0.35442,-3.0656,0.91778,1.132,0.69197,-1.9899,-0.76565,0.9368,0.14849,-0.52131,0.066296,0.43748,0.69836,0.12061,0.34185,-0.52195,1.1215 -2.0324,-0.56677,0.42599,0.66013,-2.153,2.0394,0.73959,-0.03095,-0.77798,-0.064845,-0.15147,-0.6619,0.24128,0.15143,0.35233,-0.30375,-0.30742,0.81056,0.28403,0.20596 -1.957,0.060868,1.6202,0.30965,-3.0783,1.3152,1.7605,-0.059119,-0.15632,0.60385,0.18315,-0.32654,0.22775,0.24249,0.2892,-0.31691,0.087725,0.49316,0.13084,-0.20893 -1.8828,0.024668,0.29193,-0.036158,-2.6694,1.4912,1.3921,-1.1511,-0.48877,0.26597,0.63258,-0.22665,0.26379,0.062965,-0.43658,0.34469,0.4753,0.56614,1.3288,-0.43422 -3.215,-1.0421,-0.23386,0.32365,-3.2788,0.36365,0.3903,-1.2627,-0.98655,0.63612,-0.42746,0.31876,0.37014,0.054065,0.65881,-0.14015,0.15246,0.94009,0.10092,0.32676 -2.6433,-0.80773,0.63895,1.8246,-1.753,1.1263,-0.18323,-0.17132,-1.9007,-0.81025,0.47711,0.14075,-0.74002,-0.50967,-0.024599,1.0665,-0.02051,0.84513,0.44265,0.15845 -0.32758,-0.717,0.80384,0.48535,-1.7875,0.79476,0.87739,0.10911,-0.83812,-0.84175,0.58359,0.36386,0.22682,0.55141,0.85078,0.45408,-0.79502,0.50145,0.011666,-0.091197 -0.23748,-0.46259,1.0687,0.57644,-1.506,0.61697,0.87344,-0.27752,-0.42444,-0.35372,0.66836,0.24191,-0.091202,-0.12529,0.23083,0.48285,-0.60589,0.60111,0.00048328,0.33922 -2.2885,0.80247,0.48022,-0.67118,-2.1519,1.1217,1.6158,-0.80394,0.078222,0.33183,-0.19945,0.23154,-0.066508,0.64208,-0.23834,0.30973,0.86499,-0.18185,0.84908,0.18288 -0.82623,-0.4313,0.65543,0.72505,-2.7444,1.4895,1.2769,0.17613,-0.5975,-0.43492,0.70292,0.3365,0.74833,0.68624,0.46593,-0.36218,-0.32932,0.85487,0.24104,-0.44549 -3.3393,-0.013169,1.3031,0.54326,-2.611,1.22,1.859,-0.91675,-1.4495,-0.10034,-0.15169,0.29259,-0.83504,0.34976,-0.12687,-0.16482,0.27481,1.9281,0.19524,0.79723 -3.0093,0.51393,1.1032,-0.1908,-2.8868,1.3701,1.4796,-1.1286,-1.2282,-0.54938,0.16963,-0.31303,-0.28552,0.79949,0.92805,-0.086973,0.21561,1.4514,0.64473,0.24392 -3.1427,0.51273,0.58012,-0.61993,-0.8374,-0.24151,2.0768,-0.031666,0.079354,-0.12634,-0.13613,1.4783,0.17136,1.0643,-0.4575,0.5987,0.19448,0.20478,-0.36248,-0.092797 -1.6346,-0.45478,1.5692,0.78539,-2.5062,1.3913,0.9303,0.46934,-0.83357,0.38842,0.6886,0.24731,0.13784,-0.045342,0.24173,-0.52156,-0.71019,0.25619,-0.78408,0.14545 -1.9067,-0.36895,0.90787,0.047669,-1.641,0.50362,0.7505,-1.1305,-0.83853,0.42161,-0.38447,-0.069153,-0.051625,-0.076432,0.24077,-0.78028,-0.34915,0.83969,-0.12064,-0.001192 -0.75481,-0.57023,1.3945,1.3725,-2.6896,1.1944,1.5486,-0.75455,-0.29884,-1.2216,1.1757,0.5061,0.25404,0.10402,0.41693,0.66876,-0.00014146,1.0645,0.31553,0.45108 -0.92624,-0.31958,0.51626,0.43503,-1.9286,1.2677,0.56846,-0.20582,-0.19847,-0.45119,0.28297,-0.1256,0.51698,0.29141,0.27971,0.274,-0.74318,0.43253,0.52034,-0.57384 -1.6837,-0.0045948,0.02071,-0.19215,-2.6022,0.52235,0.95099,-0.81871,-0.94919,0.68739,-0.50259,0.46085,1.0876,0.48678,0.7312,-0.2501,0.48524,-0.37855,1.008,-0.28847 -1.2802,-0.42943,0.77587,1.5166,-2.6622,1.706,0.85408,-0.34146,-0.47155,-0.60694,0.43605,0.11397,0.38265,0.09915,0.33784,0.57211,-0.76807,0.69603,-0.086332,0.31109 -2.3922,0.53609,0.52376,-1.0707,-2.8884,-0.13635,1.5375,-0.65662,-1.1555,0.039416,-0.38258,1.3194,1.0387,0.75901,1.2861,-0.18261,0.74447,-0.83319,-0.097424,0.089804 -1.9871,0.73374,0.6026,-0.77344,-1.5499,0.85313,1.3437,-0.79744,-0.027224,0.084207,-0.37271,0.23129,-0.16015,0.41595,-0.22532,0.21605,0.89948,-0.35929,0.42368,0.1915 -2.0098,-0.080216,0.20926,-1.3275,-1.2736,-0.84231,1.8918,-0.20688,-0.72603,0.12948,0.18236,1.1667,0.62891,0.36015,-0.059792,-0.28525,0.030839,0.31636,0.43488,0.1073 -2.7973,0.29504,0.61091,-0.54803,-1.642,0.70865,1.9404,-1.1853,0.094921,0.27327,-0.59464,0.5887,-0.24193,0.23848,-0.0079291,0.041246,0.5568,1.0053,0.017746,0.11862 -2.7825,1.0492,0.88104,-1.1196,-2.3992,-0.70378,2.1096,-0.26575,-0.68866,0.35459,-0.20225,1.2631,0.57578,0.83204,0.74418,0.14497,0.5614,-0.14464,-0.050382,0.31012 -2.8043,0.16966,-0.17981,-1.2795,-1.7608,0.55859,1.4725,-1.0031,-0.34745,0.67722,-0.56323,0.84271,0.006446,0.51032,0.073016,0.13058,0.14601,-0.014985,0.42323,0.1013 -2.6319,0.11072,0.84718,-0.59059,-2.2674,0.15769,1.8209,-1.2148,-1.0473,0.24524,-0.83393,1.5551,0.65463,-0.081138,-0.20227,-0.14524,0.39712,-0.1896,-0.092675,-0.37463 -0.9878,-0.21815,0.37853,0.30037,-2.3268,1.2251,0.90032,-0.48492,-0.11991,-0.58723,0.40702,0.041826,0.82274,0.31222,0.051428,0.91593,0.042748,0.11467,0.75456,-0.8887 -3.5766,-0.46988,1.282,1.5709,-2.0068,0.83671,1.1688,-0.9683,-0.52556,-0.74636,-0.074208,-0.1939,-0.12164,-0.35095,0.044709,1.1968,0.087584,0.76366,0.045896,0.49056 -2.2992,0.16272,-0.20033,-0.79974,-1.4948,-0.43764,1.29,-1.0458,-0.71366,0.65343,-0.74942,1.3246,0.48826,0.051039,0.15153,0.098099,-0.39696,0.14959,-0.16253,-0.10745 -1.5719,-0.55936,1.6902,0.35579,-2.2754,0.71186,0.36302,0.6305,-1.958,-0.0089674,0.094895,0.52634,0.028337,-0.044851,0.35836,-0.12215,-0.35464,-0.2595,-0.4651,0.6098 -1.4718,0.86647,1.1688,-0.03763,-3.1185,1.2046,1.4166,0.14764,-0.12931,0.48164,0.66112,0.25154,0.614,0.85604,-0.069022,0.27011,0.65146,-0.39654,0.46688,-0.020401 -3.2833,-0.15052,1.8374,0.3987,-3.0372,1.1093,0.72328,-0.71912,-1.3544,-0.42719,0.00077174,-0.49982,-0.77656,0.66617,0.67842,0.08149,-0.2283,1.0399,0.6121,0.59655 -0.8419,-0.93369,1.3404,1.6079,-1.7022,0.37158,0.5725,0.63564,-1.1338,-0.23251,0.60904,0.67732,-0.24401,-0.11846,-0.16839,0.49852,-0.4284,-0.0068336,-0.15147,1.0446 -0.91145,0.18089,0.047901,0.12286,-1.4172,0.82059,0.74985,-0.20899,0.2259,0.10731,0.069675,0.071664,0.10816,0.15752,-0.1766,0.743,0.22394,0.28396,0.67878,-0.2511 -1.1937,0.46721,1.1556,0.14538,-2.2264,0.8035,1.1314,-0.11995,-0.089063,0.44203,-0.30806,0.062426,0.37435,0.13553,0.30469,-0.41744,0.28329,0.10742,-0.027155,-0.34203 -0.98082,-0.7509,2.2816,0.87802,-3.2335,0.48626,0.9926,0.43654,-1.6381,-0.44904,0.93734,0.25349,-0.36099,0.034541,0.014726,0.38265,-0.33194,0.71567,-0.59049,0.86087 -1.3236,-0.25318,1.6296,0.40109,-2.6737,0.94132,0.52823,-0.19977,-1.0258,-0.030426,0.70176,-0.79687,0.0075965,-0.019454,0.34305,-0.40497,0.075361,0.18493,-0.20139,0.50437 -2.6034,0.050859,1.6004,-0.067638,-1.8105,1.2278,1.3864,-0.81074,-1.1175,-0.027283,-0.12362,-0.091071,-0.39008,0.60658,0.012326,-0.47237,0.30328,1.1048,0.00047692,-0.0036139 -2.2643,1.48,0.59118,-1.3225,-1.6812,0.016255,1.182,0.51612,-1.0236,0.15669,0.77878,0.54113,0.029396,0.55652,0.58005,0.094583,0.22654,-0.10018,0.56981,0.8908 -1.2903,0.23375,0.99027,-0.12063,-3.0791,1.1168,1.3524,-0.50342,-0.5373,0.40914,-0.1335,0.38379,1.008,0.65048,0.22672,-0.43313,0.68706,-0.3602,0.75408,-0.16452 -2.5259,0.61888,-0.15913,-1.2013,-1.2535,0.19078,1.4204,0.31901,-0.53471,0.21811,-0.095951,0.88622,-0.033337,0.40094,0.29833,0.83373,-0.35234,0.15955,0.4098,0.60612 -1.704,0.41526,1.2058,-0.23742,-2.0685,1.586,1.4727,-0.40581,-0.18422,0.32397,0.1321,-0.16284,0.17202,0.22559,-0.34633,-0.049807,0.42466,-0.082412,0.69965,0.12529 -2.7987,0.23017,1.7089,-0.11199,-1.7843,1.818,1.7267,-0.12445,-0.28224,0.17034,-0.22716,-0.086781,-0.37095,0.081452,-0.045319,0.050572,0.40226,0.14372,-0.16285,0.11618 -1.9105,-0.063995,2.4008,0.41857,-2.3604,0.52952,0.97057,-0.12463,-1.8022,0.16076,0.17075,-0.041416,-0.010378,-0.31511,0.71154,-0.11109,0.15281,0.4048,-0.68507,0.48815 -1.4884,-0.19371,1.96,0.52536,-1.347,1.0031,1.0435,0.69681,-1.0273,-0.37484,0.51812,-0.29302,-0.91278,0.23631,-0.24991,0.82739,0.47403,0.43618,-0.59163,0.75319 -2.8753,-0.29027,0.26935,-0.37413,-2.7887,0.19565,2.1255,-1.9091,-1.1203,0.22479,-0.56857,1.3272,0.7723,-0.15587,0.76026,-0.17474,0.3491,0.61507,-0.53206,-0.14951 -3.2332,0.58099,1.7627,-0.36999,-2.9267,1.7401,2.0852,-0.19833,-0.39939,0.41998,0.073068,-0.24035,0.19627,0.31906,-0.19846,0.051399,0.63042,-0.25508,-0.068308,0.11463 -1.5593,0.98874,0.86524,-0.62218,-2.5839,0.66617,1.0736,-0.7808,-0.41505,0.49714,-0.21749,0.52463,0.14232,1.1004,0.55228,-0.086186,0.84212,-0.30659,0.42261,0.1986 -2.5871,-0.8091,0.71585,1.38,-2.297,0.9902,0.0022549,-0.82938,-0.6533,0.43024,-0.17454,-0.14662,0.36809,0.32641,0.42139,-0.22731,-0.36408,0.13971,0.34495,0.57855 -2.4074,0.050095,1.2758,-0.66381,-2.3148,0.71926,1.2389,-0.90581,-0.40436,0.26276,-0.793,0.22107,0.38903,0.56634,0.54715,-0.6294,0.34765,0.05126,-0.24595,-0.33709 -0.84998,0.49906,1.3539,0.039906,-1.3267,0.83585,0.97956,0.22795,-0.19534,-0.29984,0.59483,-0.13292,-0.63628,-0.16033,-0.22125,0.3072,0.53145,0.31396,-0.46201,0.51954 -1.123,-0.98398,1.0564,1.1401,-1.9132,1.0117,0.69073,0.87884,-1.2831,-0.60762,0.24549,0.31481,-0.18347,0.035753,0.45551,0.64644,-1.095,0.27369,-0.31232,0.64107 -1.8269,0.42883,2.1583,0.093422,-2.9076,1.8594,1.4996,-0.084876,-0.81151,-0.26589,0.7154,-0.61665,-0.30342,0.42485,0.26858,0.2912,0.27732,0.41127,0.13334,0.50597 -3.5201,0.76048,0.24059,-1.8255,-2.1493,-0.088108,2.4964,-0.32244,-0.47527,0.13914,0.13572,1.3332,0.0065228,0.82381,0.021686,0.70146,0.19534,0.13716,0.30329,0.45989 -3.3552,-0.71561,0.58263,0.49632,-2.3173,1.6949,1.6962,-0.040709,-1.3654,0.57576,-0.8059,0.19847,0.9117,-0.77736,0.68992,-0.44387,0.47358,-0.25652,0.082119,-0.60474 -1.6529,0.3617,1.5832,0.18252,-3.308,1.3898,1.6074,-0.46713,-0.28383,0.4544,0.11973,-0.024572,0.63804,0.36437,0.37156,-0.047544,0.18841,0.0068282,0.23991,-0.088662 -2.3331,-0.62848,0.089163,-0.62121,-2.7322,0.05625,1.6823,-1.0212,-1.261,0.82364,-0.90316,1.0956,1.1409,0.2117,0.83714,-0.046921,0.28424,-0.43047,0.53461,-0.16218 -2.5341,0.57848,1.7359,-0.27286,-2.0028,2.0189,1.6571,-0.14793,-0.45257,0.019483,0.1817,-0.23705,-0.39893,0.16671,-0.044227,-0.095673,0.73269,-0.033018,-0.012318,0.43179 -1.7965,0.39555,1.4413,-0.56766,-2.719,0.80892,1.1077,-0.7275,-0.46201,0.37549,-0.25448,-0.12565,0.33374,0.57854,0.29275,-0.49156,0.8009,-0.2022,-0.5278,0.11635 -2.8144,0.34922,-0.0013498,-0.93942,-0.70056,-0.55899,1.8783,0.32313,-0.0021509,-0.19912,0.29162,1.4708,0.097571,0.24923,-0.095547,0.7812,-0.39247,0.23077,-0.57076,0.33909 -1.7838,0.45319,0.72974,0.39101,-2.8685,1.2575,1.5134,-0.29458,0.019057,0.35757,-0.59189,0.61588,0.40577,0.55815,0.44041,-0.43138,0.47508,0.13387,0.25227,-0.28437 -2.044,0.98391,1.2391,-0.16806,-1.7413,0.93827,1.21,0.2012,0.18147,0.47037,-0.1479,0.35516,-0.41455,0.36946,-0.17374,0.31653,0.73401,-0.26803,-0.57673,0.15022 -1.7346,-0.088834,0.45141,-0.28402,-2.8894,1.3411,0.99083,-1.0675,-0.85652,0.74101,-0.14426,0.030403,0.83348,0.48334,-0.22834,-0.2803,-0.10014,-0.08305,1.1799,-0.28435 -2.1984,-0.10775,1.0201,-0.0059535,-2.2271,1.419,1.2106,-0.9703,-0.5895,0.3329,-0.33489,0.11943,-0.099486,0.15351,0.042993,-0.80645,-0.037067,0.62991,0.25141,-0.2751 -1.115,-0.81334,1.306,0.053949,-2.2846,1.184,1.0428,0.17993,-1.4487,-0.61609,0.61544,-0.49367,0.0073354,0.11525,0.50532,0.83759,-0.54097,0.47808,0.5072,0.25808 -1.7572,-0.47934,0.82971,0.11318,-3.017,1.7679,0.95532,-0.046835,-0.63137,0.25591,-0.10907,-0.0075828,0.95833,0.50201,-0.1079,-0.57108,-0.57736,-0.15322,0.049297,-0.34304 -2.8967,-0.029156,0.84822,-0.20643,-3.9139,1.8819,1.894,-0.7901,-1.0284,0.40674,0.055732,0.3702,0.70363,0.83383,0.095739,-0.48925,0.42402,0.060525,0.19763,0.024632 -1.4114,-0.44309,2.2509,0.67101,-2.5102,1.033,0.99749,0.45411,-1.6042,-0.54135,0.73682,-0.85933,-0.49076,0.20481,0.058292,1.0815,0.1612,0.27734,-0.11199,1.0631 -2.12,0.29967,0.25849,-1.3752,-1.8203,0.13053,1.1291,-0.91832,-0.43942,0.12952,-0.30885,0.64612,0.16866,0.21255,0.36108,0.37601,0.135,-0.078373,0.7385,0.23088 -1.4974,0.529,0.32811,-0.39117,-2.3627,1.0161,1.0118,-0.66032,-0.17108,0.37224,-0.019305,0.07603,0.36678,0.73323,-0.14448,0.77247,0.71741,-0.27272,1.3038,-0.099315 -2.3515,-0.19425,2.0914,-0.35591,-2.7874,1.3577,1.6659,-0.76687,-0.9689,0.12697,0.1823,-0.056204,0.273,-0.07599,-0.064735,-0.62648,-0.067128,0.28892,-0.026586,-0.026495 -1.4853,-1.0695,0.68289,1.8341,-1.621,0.81859,-0.12541,0.83058,-1.2737,-0.49899,0.53074,0.43247,-0.15371,-0.03147,0.38419,0.32323,-0.41485,-0.11177,0.34872,0.64765 -3.3157,-0.18307,1.6224,-0.14053,-2.6021,0.66277,1.5411,-1.1124,-0.74891,0.11532,-0.74095,0.44972,0.56816,0.44948,0.85103,-0.88018,0.25436,0.47756,-0.028076,-0.55246 -2.1051,-0.24685,-0.39537,-0.28756,-1.11,0.38481,0.96197,-0.093249,-1.818,1.0742,-0.31977,0.8621,0.42746,-0.54796,0.10316,0.4842,-0.1942,-0.11969,0.15529,0.23779 -2.6106,-0.13731,0.14175,-1.0664,-2.307,-0.2105,1.7498,-0.96255,-1.1605,0.24455,-0.91759,1.4787,1.121,0.42052,0.71243,-0.50739,0.37893,-0.43397,-0.20581,-0.23105 -3.0978,0.24992,0.82461,-0.97984,-3.3202,0.61846,1.7082,-1.2576,-0.77327,0.16338,-0.61365,0.8658,0.66973,0.81454,0.7892,-0.77826,0.41672,0.17731,0.0054737,-0.21822 -1.2071,-0.18543,1.6104,0.013627,-2.1131,0.87547,0.58116,0.31679,-1.2673,-0.36661,0.42397,-0.19061,0.014442,-0.15536,0.32282,-0.37521,-0.05351,0.21287,-0.26904,0.6867 -2.0613,0.4944,0.49194,-0.44062,-1.7555,1.3828,1.3266,-0.16232,0.020984,0.026781,-0.5294,0.18491,0.27169,0.6445,-0.15443,0.52142,0.54034,-1.0424,0.62395,0.13324 -0.90117,0.012412,1.0518,0.20833,-2.0603,1.3203,0.97027,0.077359,-0.29761,0.16756,0.31579,-0.091417,0.2761,0.50793,0.059243,-0.34848,-0.33115,0.48453,0.28528,-0.19652 -1.7022,0.63439,0.57532,-0.2658,-2.3274,1.2803,1.147,-0.45919,0.073703,0.28757,-0.31248,-0.074202,0.26709,0.66035,-0.14989,0.54774,0.5853,-0.26019,0.96045,-0.14776 -1.5178,-0.7168,1.6434,1.0243,-2.3735,1.4409,1.4222,-0.36011,-1.2343,-0.9574,0.35101,-0.49903,-0.098531,-0.2613,0.51749,1.3766,-0.23448,0.74004,0.37992,0.47311 -1.7612,-0.76131,1.3958,0.23402,-2.0913,1.4385,0.86975,0.12983,-1.7187,-0.0070719,0.31984,0.059065,0.24263,-0.25792,0.62999,-0.78398,-0.64945,-0.015572,-0.3948,0.2804 -1.0396,0.0066943,1.6955,0.45532,-1.8132,1.3008,1.1581,0.32811,-0.64084,-0.38889,0.65479,-0.6697,-0.26876,0.25711,-0.093155,0.67615,-0.1477,0.28049,-0.18432,0.59135 -1.2799,-0.18221,1.4263,0.15801,-2.1381,1.5696,1.0557,-0.054418,-0.65981,-0.21434,0.57608,-0.76409,0.042043,0.19695,0.17517,0.31144,-0.27521,0.48468,0.43306,0.28461 -1.3444,-0.26122,0.25528,-0.057617,-1.8886,0.8607,0.60821,-0.97143,-0.16338,0.10481,0.27474,-0.60351,-0.076391,-0.21887,-0.039544,0.44588,0.075063,0.64803,0.66933,-0.061217 -2.6713,0.24294,0.20521,-0.89903,-2.4528,0.80401,1.1645,-0.98659,-0.74013,0.52467,-0.50547,1.1728,0.22355,0.66699,0.17141,-0.26328,-0.39871,-0.055167,0.26206,-0.20735 -2.1211,0.45232,2.2789,0.077436,-3.1876,0.54917,1.0857,0.010147,-1.1756,-0.28476,0.18939,-0.091662,0.070709,0.034808,0.81564,-0.75039,0.70488,0.62708,-0.85054,0.21117 -2.0821,0.10228,1.8387,0.17269,-2.2854,1.4216,1.3681,-0.089129,-0.80542,-0.029161,0.66383,-0.78195,-0.32979,0.51025,-0.14361,0.071173,0.75947,0.16415,0.18712,0.50767 -1.7984,0.091349,-0.10357,-0.94425,-1.701,-0.025915,0.80729,-0.75815,-0.86192,0.42243,-0.31642,1.2314,0.46341,0.022586,0.38513,0.24738,-0.82177,-0.20452,0.16225,-0.032826 -0.65251,-0.1514,0.41701,0.095359,-1.227,0.73039,0.72286,-0.44509,0.05138,-0.30051,0.16604,-0.35701,0.29924,0.041951,-0.041741,0.58756,0.22956,0.4726,0.37941,-0.30384 -3.2836,1.4416,-0.10964,-2.1047,-2.4153,-0.44384,1.5477,-0.038855,-1.5014,0.19404,1.1515,0.9858,-0.079142,0.57609,0.18426,0.37327,0.31377,-0.18988,0.96,0.96482 -3.343,0.56757,1.0877,-0.79788,-2.9379,0.061884,2.0089,-1.0891,-1.0546,0.33696,-0.79723,1.4638,0.85878,0.5979,0.095649,-0.077896,0.64938,-0.36847,-0.17023,-0.17367 -2.3535,-0.74089,1.1234,0.91163,-3.048,1.5555,0.69888,-0.46533,-1.0883,-0.15183,0.18054,-0.54659,-0.084231,0.011059,0.57468,-0.13932,-0.90582,0.88092,0.90467,0.17555 -2.0838,0.56529,0.63191,-0.95353,-2.2854,0.79083,1.0394,-1.3598,-0.38925,-0.10661,-0.11755,0.20411,-0.16359,0.35478,0.026584,-0.085707,0.47458,0.065464,0.61189,-0.086539 -4.0113,0.012959,2.3435,-0.086968,-1.6649,1.0559,2.0394,-0.4892,-1.6343,-1.1771,0.078072,0.18078,-0.83244,0.79959,-0.24545,0.094132,0.70515,1.0464,0.028299,0.75605 -1.5484,-0.039111,1.2601,-0.18746,-2.8268,1.7008,1.2992,-0.29474,-0.30807,0.049456,0.38267,-0.43033,0.33787,0.41251,-0.030202,0.20518,-0.012857,0.31879,0.81505,-0.44301 -2.2031,0.51173,1.2874,-0.090502,-2.9096,1.8153,1.7541,-0.34819,-0.016922,0.010135,0.059222,-0.35954,-0.0063869,0.82095,-0.031842,0.21662,0.42833,0.33058,0.55083,-0.14983 -0.87127,-0.72724,1.4125,0.94767,-1.9279,0.75892,0.61747,0.64305,-1.2949,-0.17894,0.57985,0.39146,-0.31798,-0.13713,-0.09969,0.41424,-0.91904,0.25805,-0.79362,0.69478 -2.0338,0.19205,1.9747,-0.24898,-1.8128,0.96681,1.5558,-0.25513,-0.8052,-0.15213,0.10014,-0.42295,-0.51915,0.6561,0.19917,0.07433,1.2137,0.60047,-0.72186,0.56555 -2.1306,0.1856,2.1105,0.24039,-1.745,1.4395,1.5257,0.4315,-1.0469,-0.17071,0.48135,0.061798,-0.73787,0.19288,0.033947,0.11963,0.54452,0.84822,-0.39975,0.64109 -1.6464,0.17197,1.9301,-0.17251,-1.8732,1.032,1.0605,-0.16188,-0.86032,0.10418,0.50152,-0.67286,-0.30382,0.027647,0.022083,0.056114,0.58101,0.33042,-0.37461,0.61981 -2.3432,-0.45256,-0.0085035,0.13715,-2.1535,1.1034,1.0956,-1.0037,-0.16766,0.51552,-0.9549,0.32003,0.26061,0.37398,0.54747,-0.52963,0.13297,0.54516,0.49124,-0.62348 -0.54417,-0.7323,0.70335,0.87759,-1.9155,0.75838,0.58776,0.5186,-1.1055,-0.47138,0.43845,0.31431,0.24446,0.23219,0.70605,0.18445,-1.0117,0.35535,-0.28977,0.45246 -1.932,-0.32944,0.22672,0.13409,-1.9972,1.3051,0.40517,-0.76154,-0.24621,0.34976,-0.29682,-0.062557,-0.056824,0.036509,0.074919,0.053925,-0.61312,0.33553,0.39767,-0.3985 -2.4811,-0.58093,1.4451,0.33447,-3.0987,1.9883,1.4186,-0.71331,-1.3906,0.37871,0.24711,0.048285,0.19029,0.28642,0.40227,-0.83313,-0.50957,0.50051,0.15818,0.11448 -3.0979,0.71977,0.98265,-1.4116,-1.8187,-0.90282,2.1676,0.0090185,-0.99744,0.099379,0.22054,1.4629,0.40611,0.75421,0.20096,0.215,0.21327,0.29159,0.018226,0.42619 -0.79837,-0.58449,1.2435,0.60923,-1.8143,0.9089,1.0432,0.65182,-1.2417,-0.36256,0.59997,-0.10824,-0.08085,0.44683,0.64866,0.83794,-0.44681,0.2927,0.26155,0.64126 -3.2905,-0.69091,1.8862,2.1061,-3.4824,0.37049,1.5281,-0.20589,-1.8121,-1.2524,-0.27924,0.075264,-0.49591,-0.46097,0.63212,1.0565,1.0114,0.86252,0.36447,0.060222 -2.9165,0.053553,-0.064438,-0.83578,-2.8247,1.0959,1.3474,-0.95314,-0.81572,0.71261,-0.51008,1.0782,0.38678,0.78229,-0.17176,-0.37574,-0.11402,0.050597,-0.13241,0.054118 -1.7067,0.30469,-0.068276,-0.26836,-2.1912,0.85755,1.5199,-0.29356,0.118,0.70531,0.39699,0.37714,0.088672,0.19024,-0.43704,0.8036,0.73542,0.026174,0.95846,0.27557 -0.83567,-0.73341,0.47073,0.14226,-1.3805,1.0879,1.1554,-0.38619,-0.43398,-0.42399,0.49232,0.1513,0.6233,-0.11981,-0.062984,0.013758,-0.58843,0.25328,0.36683,-0.47371 -0.93499,-0.3337,1.8378,0.26538,-2.3693,0.38611,0.76372,0.84525,-1.6563,-0.23367,0.56361,0.036791,-0.27676,0.25266,0.30874,0.52735,0.13027,0.14348,-0.46909,0.96455 -1.2743,-0.80537,0.58725,0.63188,-1.8404,1.4744,0.73729,0.14969,-0.66488,-0.46531,0.49259,-0.46007,0.19897,0.014344,0.32209,0.40561,-0.96317,0.93601,0.3381,-0.015694 -2.1558,-0.53575,1.3259,0.71861,-2.2804,1.0594,0.51797,-0.33235,-1.062,-0.63186,0.18574,-1.023,-0.5043,-0.16288,0.40586,0.95461,-0.21999,0.87089,0.93224,0.64751 -2.1945,-0.36691,-0.2623,-0.051555,-1.6058,0.1565,0.62943,-0.1716,-1.7567,0.42304,-0.45732,1.2336,0.84824,-0.12813,1.0256,0.22966,-0.21409,-0.72158,0.29189,-0.1969 -1.8571,-0.72942,1.4136,0.94188,-3.0495,1.7731,0.69212,0.41644,-1.9065,-0.61701,0.44975,0.35312,-0.14106,0.32384,0.46939,0.4347,-0.65507,0.69361,0.1133,0.78423 -2.6423,0.53296,0.16523,-2.1368,-2.5239,-0.34268,1.7656,-0.63415,-1.1284,0.0095787,0.98712,1.422,-0.027988,0.13021,0.24633,0.78513,-0.14781,-0.1522,0.86695,0.4501 -2.3888,-0.72157,1.9004,0.82107,-3.5216,1.9486,1.8722,-0.39415,-1.6651,-0.83626,0.46588,0.012191,-0.46614,0.26951,0.56376,0.77735,0.24134,0.60158,0.079164,-0.071816 -1.6914,-0.36132,2.4806,0.1761,-3.1758,0.93677,0.99962,0.53443,-1.7248,-0.40185,1.0876,-0.26679,-0.2774,0.060132,0.30909,-0.14313,0.094491,0.49987,-0.69195,0.74406 -0.39049,-0.85397,1.4048,0.82762,-1.7261,0.087301,1.0963,0.4512,-1.2675,-0.38012,-0.070611,0.90518,0.10014,0.0026312,0.52794,1.0076,-0.31592,-0.37707,-0.16355,0.75723 -1.6672,0.98112,0.46969,-0.86675,-2.2875,0.16497,1.0211,-0.73015,-0.57179,0.58527,-0.098374,0.056484,0.37538,0.84245,0.28224,0.12538,0.58172,-0.36736,0.55509,0.76296 -2.1488,-0.18525,0.7879,0.50284,-2.351,1.8331,0.56024,-0.35032,-0.26597,-0.11893,-0.10012,-0.37802,-0.094766,0.18408,0.2945,0.28774,-0.56134,0.63184,0.40977,-0.37087 -2.4309,0.81778,0.58719,-1.5508,-1.1801,-0.29779,1.8057,0.046295,-0.50062,-0.17883,0.25423,0.91642,0.1105,0.85408,0.13974,0.41389,0.5145,-0.35424,-0.024123,0.7741 -1.4575,0.56732,0.17474,-1.4498,-1.9998,-0.71841,1.3024,-0.38667,-1.2521,-0.18594,0.78523,1.4638,0.38897,0.20903,0.38465,0.096797,-0.053765,0.22114,0.67221,0.36681 -1.2806,-0.096593,1.4981,0.27902,-2.0873,1.3404,1.0172,-0.40734,-0.69405,-0.63885,0.33623,-0.87874,-0.22211,0.26399,0.15082,0.48061,-0.19637,0.51644,0.71454,0.25622 -2.007,-0.4933,1.6579,0.57157,-2.0904,1.3556,1.0914,0.40875,-0.8988,-0.54256,0.32524,-0.71428,-0.46902,0.19506,0.4179,0.79499,-0.17203,0.61279,0.57396,0.90633 -2.1271,-0.33489,0.020218,-0.0074555,-2.2298,1.0998,0.46523,-0.43889,-0.24204,0.51011,-0.72601,0.17739,0.49251,0.48731,0.9103,-0.36351,-0.26337,-0.061113,0.14126,-0.1526 -1.136,0.90311,1.0727,-0.27045,-1.9202,1.1281,0.87861,0.32989,0.043551,0.2453,0.22971,-0.15968,-0.042284,0.48046,-0.2188,0.32318,0.75278,-0.39607,0.18267,0.3415 -1.9858,-0.053618,0.57526,-0.15344,-2.0647,0.21516,1.5151,-0.31632,-1.9559,0.10966,-0.61606,0.97236,1.1717,-0.18547,0.56117,0.75193,0.32148,-1.1568,0.18123,-0.19428 -1.7652,0.23497,1.3769,-0.27495,-2.3366,1.3889,1.2432,-0.87738,-0.57097,0.27947,0.15298,-0.7225,-0.065358,0.16398,0.18748,-0.28474,0.30229,0.65641,0.74784,0.084732 -2.0709,-0.35979,0.01376,-0.60809,-1.4035,-0.63408,1.6951,-0.16236,-1.5335,0.26278,-0.27135,1.6415,0.65433,0.2383,1.1507,-0.45935,-0.021491,0.40882,0.39006,-0.048338 -2.025,0.086442,0.24236,-0.4729,-1.8358,1.1276,1.0902,-0.65167,-0.22947,0.72175,-0.86468,0.28129,0.47369,0.61179,-0.030663,-0.29153,-0.085856,-0.39301,0.48985,0.021438 -2.811,0.12988,2.3508,0.077807,-2.1206,0.80472,1.1774,0.30395,-2.6262,-0.5595,0.20736,0.50965,-0.13355,0.084106,0.19068,-0.42757,1.459,0.37629,-0.58613,0.92086 -1.0201,0.82919,0.49021,-0.16627,-1.9919,0.80839,0.745,0.14047,0.043456,0.069197,-0.0038507,0.1972,0.13585,0.8051,-0.32962,0.61873,0.47202,-0.50177,0.5252,0.21796 -2.3519,-0.52102,2.5288,0.6608,-2.1863,0.27257,0.60321,0.17496,-2.5383,-0.33787,0.5425,0.92031,-0.10892,0.34567,-0.12689,-0.31944,0.60802,0.17592,-0.51946,0.42036 -0.24056,-0.6481,0.79053,0.84452,-1.5802,0.69091,0.95425,0.28601,-1.0364,-0.63335,0.52018,0.51804,0.07405,0.21529,0.51154,0.52199,-0.81132,0.29213,-0.31455,0.42521 -2.0385,-0.030747,0.064937,-1.8294,-1.9495,-1.0003,1.7938,-0.46478,-1.1794,-0.094854,0.69417,1.3363,0.70842,0.089177,0.35602,-0.48233,-0.16988,0.36855,0.61671,0.26783 -1.3159,-0.42852,0.54199,0.32911,-1.7138,1.3847,0.59836,-0.32541,-0.29633,-0.28243,0.39149,-0.5362,0.19597,-0.38945,0.25987,0.18235,-0.28468,0.42514,0.78781,-0.34111 -1.0978,-0.19823,1.9498,0.48076,-2.6623,1.1105,1.2612,0.56117,-1.547,-0.087051,0.95002,-0.41702,-0.48125,0.60716,0.53348,0.57803,0.083181,0.42178,0.13817,0.95627 -0.60151,-0.94638,0.95257,1.5934,-2.3785,0.72823,1.1822,0.61212,-1.4987,-0.47372,0.3489,0.5637,0.11563,0.18318,0.78787,0.39623,-0.71454,0.46755,-0.28281,0.9227 -1.8346,-0.074471,1.6047,-0.194,-1.7895,1.4286,1.187,-0.075178,-0.56006,0.069682,0.17504,-0.65182,-0.21816,-0.010088,-0.027809,0.03223,0.20694,0.28019,0.10463,0.18681 -1.2082,-0.75319,0.41274,0.77065,-2.3387,1.6367,0.82197,-0.26976,-0.68685,-0.55812,0.57211,-0.25283,0.54945,0.27857,0.17428,0.37719,-0.78922,1.0387,0.28196,-0.46247 -2.6255,0.072767,-0.05659,-1.1723,-1.1754,-0.51448,1.9131,-0.29273,-0.11603,0.1334,0.05177,1.3046,0.071936,0.32809,-0.25927,0.35478,-0.24584,0.8663,-0.040576,0.30278 -1.1114,-0.72902,0.13648,0.78148,-2.6401,1.023,1.1898,-0.17,-0.76563,-0.1004,-0.059083,0.027884,0.60447,0.30428,0.85792,0.13309,0.40765,0.13988,0.032525,-0.30024 -0.65228,-0.2232,0.023707,-0.41337,-0.46944,-0.60718,0.74741,0.21749,-0.82254,-0.1945,0.18267,0.73804,0.57626,-0.079574,-0.021804,-0.45939,-0.15685,-0.12389,-0.041521,-0.025412 -1.1681,-0.38396,0.84698,0.34425,-1.9679,1.1559,0.41305,-0.23616,-1.0093,-0.58345,0.82177,-0.51507,-0.30771,-0.38083,0.40925,0.77804,-0.45571,0.66385,0.5834,0.12552 -3.8543,0.27115,2.1319,1.0174,-0.58612,0.66929,1.6354,0.29892,-1.3921,-0.78786,-0.032211,0.3417,-0.58459,1.3453,0.017141,0.074689,0.50528,0.91471,-0.38915,0.59471 -1.5316,-0.0017509,0.1355,-0.62487,-1.72,-0.1379,0.8316,-0.92554,-0.81226,0.21998,-0.72384,0.95056,0.89167,0.15917,0.43793,-0.24942,-0.060517,-0.26871,-0.032531,-0.085371 -3.4743,0.024938,1.0933,-0.69679,-2.6906,1.2664,1.4955,-1.4676,-0.9992,0.18729,-0.44058,0.91118,-0.015371,0.46947,-0.20406,-0.7929,-0.2905,0.17211,-0.34723,-0.14604 -0.57228,-0.24049,1.6679,0.58773,-2.7434,1.4419,1.553,0.11435,-1.0039,-1.0733,1.2458,0.085229,0.055968,0.57241,0.29888,0.6849,-0.20433,0.65368,0.13929,0.11823 -3.5019,0.58203,0.55374,0.1203,-1.7329,-0.9397,1.6371,-0.47773,-0.79619,0.87122,-0.21012,1.36,0.32423,0.17874,0.58923,0.5196,0.78212,0.064332,0.35767,-0.10882 -2.1045,0.53393,0.92724,-1.3105,-2.1099,-0.79351,1.7679,0.14579,-1.6436,-0.18764,0.48269,1.4313,0.8282,0.45003,0.71731,-0.95416,0.071469,0.43571,0.32379,0.21693 -2.0986,-0.55517,0.24772,0.67994,-2.8824,1.9281,0.96662,-0.26079,-0.54538,0.22698,0.11282,-0.092627,0.8455,0.16427,0.81635,-0.61968,0.046999,0.093471,0.17057,-0.30893 -2.2352,-0.87253,1.4466,0.75681,-3.0157,2.0745,1.1708,-0.15789,-0.88352,-0.77991,0.59539,0.17847,-0.027956,-0.12154,0.19358,0.58538,-0.64741,0.87952,0.066654,-0.31949 -2.6636,0.12275,0.52449,-0.526,-2.4021,0.79692,1.7558,-0.81028,0.19907,0.83059,-0.6341,0.41823,-0.094019,0.44665,0.44596,0.4596,0.51122,0.20215,0.49264,-0.053089 -1.9652,0.20069,1.5333,0.44637,-3.3754,1.7939,1.6603,0.42163,-0.44276,0.34257,0.39516,-0.096803,0.63477,0.23115,0.12043,0.02237,-0.16937,0.23081,0.27623,-0.0068432 -2.8962,-0.49596,2.2434,0.52276,-2.8998,1.5406,0.92425,0.016487,-1.5486,-0.014942,0.43752,-0.087849,-0.4479,0.12961,0.3105,-0.57893,-0.28595,0.69447,0.10292,0.331 0.2195,-0.77193,1.1881,0.57964,-1.6313,0.18638,1.4378,-0.24487,-1.0571,-0.64091,0.63506,0.70012,-0.17289,0.46337,0.84026,0.67031,-0.17929,0.49636,-0.091187,0.30091 -1.6752,0.30749,1.168,0.19011,-0.52209,0.21904,1.2117,-0.22076,-0.25361,-0.26687,0.045516,0.24645,-0.16202,1.1356,-0.21956,-0.19675,0.11448,0.8146,-0.09314,-0.0045648 -2.804,-0.14477,0.85432,-0.048046,-2.4098,0.60183,0.77105,-0.89699,0.053951,-0.81905,-0.35859,-0.28228,-0.38459,0.13709,0.86446,0.60368,0.33472,0.78317,0.69239,-0.059948 -2.558,-0.03446,1.3918,0.095222,-2.3569,1.2512,1.1806,-0.76104,-0.45696,-0.32307,-0.26656,-0.18826,-0.12677,0.62569,0.618,-0.39815,-0.025018,0.81617,0.40621,-0.081613 -1.9084,1.1561,1.3347,0.62624,-3.0069,0.93526,1.5581,0.4571,0.17489,0.67496,-0.01986,0.22233,0.50187,-0.31474,-0.050844,0.16228,0.2891,0.19275,-0.30569,-0.16746 -2.4185,0.96237,0.46824,-0.92714,-2.4108,-0.13722,1.8049,-0.31206,-0.7998,0.59937,-0.74244,1.1934,0.39678,0.56542,0.37699,0.12834,0.48629,-0.26534,0.37031,0.47309 -1.7806,0.14839,-0.17835,-0.93554,-1.7764,0.38741,0.7428,-0.73654,-0.76315,0.59037,-0.29263,0.9746,0.24493,0.21807,0.13569,0.18675,-0.60296,-0.25433,0.35769,0.20121 -2.0688,0.75515,0.38534,-1.4513,-1.9927,-0.5345,1.6084,-0.60834,-0.99306,0.26885,0.098717,1.1948,0.32507,0.90782,0.2767,-0.19233,0.55297,0.12039,0.17137,0.6459 -2.333,0.88768,1.1024,-0.33267,-2.3965,1.0378,1.7337,-0.45578,0.013161,0.54699,-0.52029,0.40462,0.44536,0.39539,-0.1401,-0.038554,0.52591,-0.40291,0.35943,-0.057954 -1.3807,-0.6473,1.4097,0.17635,-1.4186,0.79235,0.74227,0.71295,-1.4502,-0.15689,0.28154,-0.077405,-0.46501,0.14057,0.09231,0.57671,0.073882,0.023865,0.0039068,0.70974 -2.6202,0.038318,0.22342,-0.50666,-3.2142,0.63841,1.7048,-1.7884,-1.2189,0.74425,-0.68944,1.1637,0.9555,0.026562,0.24223,-0.4114,0.59972,-0.14113,0.86241,-0.47669 -0.97539,-0.54125,-0.11878,0.36254,-1.8276,1.143,0.45826,-0.26539,-0.42821,0.13391,0.43676,-0.18575,0.58154,0.053204,-0.16604,-0.18799,-0.33173,0.57121,0.34002,-0.52105 -0.93297,0.26493,-0.30066,-0.55881,-1.4423,0.022002,0.45342,-0.55727,-0.76979,0.5075,0.30299,0.80672,0.16518,0.11101,-0.15134,0.30459,-0.35073,-0.084792,0.56957,0.31104 -2.2397,-0.25855,1.4308,0.0052935,-2.04,2.0183,1.8624,0.011789,-0.61396,0.073454,0.39453,0.13074,0.025057,-0.33174,-0.44726,0.24324,-0.086899,0.0048434,0.15514,0.082461 -1.3591,-0.32024,1.7826,0.079198,-2.5257,1.0578,1.3895,-0.10066,-1.0134,0.11133,0.23925,-0.054969,0.51032,-0.00334,0.65817,-0.67998,-0.16402,0.31739,-0.20645,-0.08353 -1.6134,-0.73959,1.2975,0.83725,-1.6583,1.4282,1.1861,-0.20731,-0.6048,-0.54535,0.099388,-0.48921,-0.15086,-0.40369,0.2444,0.89297,-0.45428,0.73048,-0.014661,0.44074 -1.1231,-0.50231,1.3732,0.67864,-2.2457,-0.35997,-0.14394,0.8673,-1.3795,-0.83396,0.24508,1.3312,0.41303,0.016444,0.030914,0.3354,0.27668,-0.53894,0.11309,-0.60154 -2.1464,0.61406,0.082275,-1.2961,-1.862,-0.66223,1.0292,-0.6757,-1.6976,0.099773,0.35389,1.7064,0.63638,0.20066,0.40603,-0.3039,-0.7368,-0.081768,0.075925,0.30052 -1.6346,-0.58031,1.9417,-0.024432,-2.2212,0.98693,1.3595,0.14909,-1.7892,0.010904,0.58882,0.11524,-0.54736,0.15591,-0.044089,-0.10846,0.048357,0.48749,-0.07527,0.80565 -1.4958,-0.6095,1.1188,-0.45879,-1.9569,0.88743,1.153,-0.76546,-0.9265,0.3933,0.58694,-0.75975,0.080128,-0.61195,-0.41162,0.06782,-0.11516,0.86871,0.24745,0.14551 -1.5953,0.13743,-0.19613,-0.88482,-1.8999,0.20058,0.7013,-0.97953,-0.85765,0.63547,-0.15518,1.0274,0.34705,0.18187,0.23139,0.24528,-0.39468,-0.20975,0.18784,0.28562 -3.085,1.181,0.96388,-0.84503,-2.3096,0.84751,1.0654,-1.539,-1.7761,-0.38493,0.66247,0.38138,-0.049234,0.36231,-0.55729,0.17957,0.81184,-0.37632,0.16016,0.42192 -1.1782,-0.13627,0.52831,0.14436,-1.7492,1.3684,0.52066,-0.0090139,-0.26158,0.30096,-0.13061,-0.091454,0.53038,0.38619,0.023223,-0.4161,-0.53834,-0.13005,0.12133,-0.20712 -3.1455,-0.44082,1.077,-0.025441,-3.2233,1.7466,1.6983,-1.2533,-1.3762,0.53435,-0.19216,0.40235,0.57581,0.046828,0.076867,-0.7978,-0.39472,0.30971,0.11231,-0.15434 -3.4263,-0.65045,0.85,-0.59169,-2.0719,-0.46946,2.4106,-1.0948,-0.35368,-0.622,-0.28445,1.0195,0.72484,1.1263,0.60751,-0.19513,0.1907,0.40617,-0.51454,-0.25395 -1.0855,-1.1166,1.465,0.86085,-2.7219,0.71372,0.93281,0.64682,-1.7672,-0.98038,0.58542,-0.047265,-0.058399,0.4078,0.99948,0.89585,-0.4676,0.31889,0.38208,0.64133 -0.49711,-0.21962,0.73829,0.27051,-1.5532,0.99971,0.5438,0.14455,-0.54969,-0.75725,0.5848,0.065498,0.26578,0.17736,0.26401,0.38557,-0.78894,0.29089,0.20784,-0.24198 -0.79992,-0.35034,0.62625,0.5233,-1.6182,1.2499,0.73429,-0.099782,-0.43254,-0.51873,0.621,-0.31428,0.34169,0.054163,0.34499,0.44549,-0.47881,0.57547,0.5426,-0.33305 -2.3454,-0.21135,0.35862,-0.18758,-0.81672,0.12417,1.1456,-0.11355,-2.0416,0.47332,-0.1267,0.77831,0.61635,-0.80557,0.32031,1.1139,-0.8113,-0.1757,0.57529,0.051664 -2.1225,-0.48523,0.29283,-0.31122,-0.91046,-0.25092,0.98209,-0.016054,-1.6428,0.32665,-0.35626,1.1011,0.51401,-0.5556,0.18041,0.75876,-0.70961,-0.28952,-0.1543,0.11932 -1.4754,-0.018279,-0.028952,-0.36224,-1.69,0.90647,0.82834,-0.018646,-0.35853,0.56264,-0.73452,0.25121,0.55004,0.7098,0.33966,-0.052683,0.23134,-0.36237,0.58935,0.098892 -2.381,0.40894,0.056185,-0.9459,-3.0542,0.46623,1.6985,-1.5231,-0.45398,1.0757,-0.049772,0.66253,0.25272,0.26458,0.11739,0.64295,0.60253,0.40652,0.89456,0.23415 -0.59058,0.30684,0.87034,-0.29557,-2.382,0.27672,0.66657,-0.028166,-0.60391,0.51453,0.047446,0.27015,0.51795,0.69557,0.22642,0.12498,0.21364,-0.40331,-0.27179,0.27087 -3.0038,-0.92514,-0.48154,-0.47595,-2.0558,0.38042,1.814,-0.15005,-0.90758,0.70144,-0.71793,1.0683,0.5564,0.54707,0.64151,-0.49229,0.29848,0.95657,-0.50019,0.28649 -3.1209,-0.32384,1.3617,0.036295,-3.5924,2.014,1.5439,-0.67448,-0.72432,-0.0006661,0.10076,-0.10888,-0.10137,0.24225,0.25362,-0.12039,-0.12847,0.7136,0.51622,-0.11355 -2.0945,-0.048115,1.5609,-0.11973,-1.8253,1.1044,1.0229,-0.66971,-0.87202,0.11023,-0.37322,-0.14273,0.12141,0.03245,0.41437,-0.78991,-0.023736,0.32712,-0.13807,-0.26526 -0.75618,-0.35205,1.3391,0.37727,-2.6771,1.46,1.3087,0.28712,-0.91623,-0.30641,0.99625,-0.011156,0.66724,0.60716,0.30175,-0.24517,-0.47354,0.51103,-0.25105,-0.028286 -2.3192,0.33469,1.7447,-0.37794,-2.5235,0.84668,1.115,-0.96528,-0.786,-0.25501,-0.18633,-0.15869,0.049908,0.54662,0.55177,-0.78276,0.12849,0.45265,-0.47051,0.18604 -3.0714,0.64284,0.44695,-1.139,-1.934,0.36466,1.7684,-1.2577,-0.40115,0.46341,-0.64756,0.76652,0.067841,0.67689,0.21334,-0.072934,0.21917,0.36086,0.21068,0.031413 -1.0974,0.55164,0.35797,-0.73967,-0.87541,-0.73979,1.051,0.025268,-0.2703,-0.10461,0.68537,0.44333,0.39934,0.54828,-0.066049,0.01977,0.40171,0.039485,-0.21741,0.38066 -1.1258,0.45263,1.0549,0.63376,-2.7753,1.6159,1.6608,0.48708,-0.0021398,-0.33368,0.91119,0.20101,0.41675,0.12483,-0.09274,0.29754,0.12599,0.75939,0.29016,-0.03757 -2.9735,-0.24515,0.43789,0.24843,-2.6302,-0.0015301,1.1037,-1.5612,0.026099,0.14944,0.106,-0.18841,0.0051323,0.51491,0.7976,0.98464,0.58099,1.1106,0.55462,0.55402 -1.9814,-0.0087921,1.3967,-0.043669,-2.6388,1.5908,0.8113,-0.38682,-0.7828,0.41949,-0.12405,0.1777,0.16347,0.25184,0.13686,-0.7494,-0.51872,-0.12959,-0.30708,-0.24445 -3.3945,0.096009,2.1052,-0.39159,-2.1149,1.2204,1.6717,-1.0579,-1.0939,-0.30281,-0.17076,0.065361,-0.22079,0.55763,0.23709,-0.53758,0.345,0.83611,-0.12747,-0.095068 -1.0404,0.54179,0.31227,0.14988,-3.1211,0.78313,1.269,0.13105,-0.50413,0.13313,-0.20786,0.71484,0.8145,0.98815,-0.013837,0.22961,0.55013,-0.21366,0.5871,-0.02134 -1.4881,-0.49931,1.1619,0.60408,-2.4423,1.5785,0.63401,-0.10921,-0.75519,-0.56052,0.56915,-0.63694,0.0092074,0.036143,0.55312,0.4849,-0.8012,0.64708,0.64005,0.17672 -2.7336,0.95068,0.45722,-0.9943,-1.4937,-1.0863,1.9808,-0.1825,-0.86544,0.056409,-0.07269,1.7777,0.42584,-0.054496,-0.10701,0.45586,-0.51094,0.66712,0.1093,0.18579 -2.2876,-0.21087,1.8839,0.44412,-1.1149,1.5678,1.2704,0.67734,-1.3272,-0.32138,0.152,-0.04331,-0.97272,0.079163,0.023388,0.40128,0.16921,0.16486,-0.54297,0.80522 -1.8023,0.026156,1.7263,-0.038222,-2.5114,1.7336,1.2592,-0.15955,-0.98673,-0.2807,0.58547,-0.58657,-0.42115,0.20453,0.34198,0.31661,-0.0034365,0.47097,0.7085,0.31266 -1.844,0.013373,1.8252,0.079265,-1.1978,0.71893,0.85661,0.47154,-1.5773,-0.043751,0.45653,-0.45833,-0.99129,0.38614,0.062406,0.66521,0.92928,0.32837,-0.2213,1.0309 -3.2534,-0.24789,0.42424,-1.5339,-2.3635,-0.80188,2.4038,-0.13636,-1.6522,-0.19643,0.39258,1.971,1.3873,0.41202,0.42964,-0.41717,-0.20648,-0.16232,-0.011859,-0.016157 -1.2243,-0.27655,1.6397,0.0050754,-2.1268,-0.055978,0.098875,0.30907,-2.0183,-0.321,0.60042,0.6374,-0.039815,-0.064691,0.2509,-0.29734,0.69676,-0.30271,-0.5511,0.58624 -1.4405,-0.093526,1.2406,0.35625,-2.1131,1.6999,1.0531,0.31811,-0.57703,0.081965,0.52412,-0.40937,-0.020149,0.10763,0.11572,-0.18436,-0.51288,0.60688,0.22529,0.10007 -3.36,0.30122,1.4262,-0.45129,-2.7357,0.63978,1.9493,-0.91897,-0.42427,-0.40414,-0.47287,0.11685,-0.3249,0.96001,0.50646,-0.74027,0.49036,0.62212,-0.44643,0.50688 -1.7909,0.12653,0.49511,0.067037,-0.75689,-0.11155,1.1971,-0.40002,0.4091,0.63774,-0.36973,0.41993,-0.019317,0.37026,0.17797,0.12062,0.1574,0.40262,-0.49669,-0.40253 -1.1226,-0.82637,0.56629,0.41025,-1.6528,1.2109,0.39875,0.44413,-1.409,-0.20783,0.44908,-0.0048853,-0.035706,0.063872,0.41968,0.32555,-0.96844,0.22751,0.10719,0.10321 -1.6421,-0.98416,2.0403,0.82046,-2.4595,0.66858,0.75622,0.60399,-1.7996,-0.14223,0.73216,0.27408,-0.050038,0.23071,0.50995,-0.6303,0.12881,0.41647,-0.70432,0.53147 -1.9886,0.38931,2.275,-0.055102,-2.6238,1.3057,1.1173,0.12111,-1.7207,-0.2395,0.65747,-0.21768,-0.6382,0.33543,0.15895,-0.053815,0.72487,0.79872,-0.32484,0.80257 -3.0154,1.234,0.14164,-1.346,-2.5545,-0.13913,1.886,0.29127,-0.86549,0.34206,-0.0047245,1.3312,0.32891,1.1921,0.63883,0.082674,0.45029,0.076576,0.29171,0.58784 -0.77845,-0.069172,1.233,0.017512,-2.0405,1.0336,0.63546,-0.14739,-0.52928,0.03218,0.26728,-0.37748,0.2761,0.40448,0.24994,-0.17345,-0.39392,0.34564,0.19215,0.14459 -2.4453,-0.33352,-0.35165,-0.083899,-2.7792,1.271,1.4633,-0.91693,-0.84913,1.0501,-0.6398,0.77286,0.94918,0.42421,-0.023286,-0.56062,0.30204,0.026151,0.11972,0.075965 -1.0377,-0.33741,0.25872,0.43594,-2.245,1.4322,0.66542,-0.32417,-0.092247,-0.45235,0.32238,0.12418,0.69699,0.44922,0.048836,0.44486,-0.25599,0.49315,0.50877,-0.79413 -0.21512,-0.65429,1.1174,0.43493,-0.85032,0.23745,0.73964,0.11091,-0.83279,-0.4686,0.378,0.041056,0.1301,0.026568,0.044969,0.46946,-0.215,0.12539,-0.30555,0.61313 -0.67604,-0.045191,0.5983,0.38587,-1.9961,1.323,0.66629,0.26283,-0.47152,-0.10189,0.53819,0.21673,0.66729,0.61114,-0.073523,0.066326,-0.40634,0.17927,0.33975,-0.35896 -0.83101,-0.66607,1.043,1.2126,-2.1431,0.50079,0.6478,0.38784,-0.78815,-0.4566,0.68772,0.31142,0.042371,-0.060974,0.93266,0.1795,-0.40515,0.55481,0.13417,0.82724 -2.2778,1.4622,0.42093,-0.98766,-1.8851,-0.47817,1.2415,0.12341,-0.86349,0.081425,0.25277,0.93807,0.31501,0.50656,0.10285,0.38518,0.36439,0.10108,0.35392,0.39408 -2.2132,0.14933,1.3673,-0.29975,-2.2193,1.9212,1.3859,-0.59512,-0.74171,0.063959,0.21436,-0.49589,-0.12413,-0.0084144,0.072113,-0.0025727,0.551,0.39603,0.73984,-0.080008 -3.6653,-0.18202,0.25765,-1.0721,-2.1035,-0.03142,2.558,-0.17964,-0.028241,-0.82361,0.55777,0.42152,-0.27341,1.2438,0.35125,0.33128,0.051154,1.1438,0.15582,0.99364 -1.5459,-0.98561,1.3256,0.12095,-2.342,1.2884,0.77974,-0.12818,-1.6395,-0.14243,0.24182,-0.25436,0.23292,-0.16944,0.54667,-0.34544,-0.82314,0.30469,0.34085,0.38825 -2.6741,-0.056336,2.3522,-0.26246,-1.8937,0.97083,1.4945,-0.39987,-1.0435,-0.28411,0.093415,-0.20252,-0.42072,0.45571,-0.01988,-0.41758,0.51674,0.80399,-0.26028,0.50484 -0.16515,-0.70006,1.1582,0.61082,-1.6211,0.24322,0.86985,0.02214,-0.90726,-0.48772,0.67164,0.38117,-0.18742,0.089051,0.44731,0.6897,-0.65656,0.35664,-0.25402,0.37186 -1.7143,-0.0048238,0.051105,-1.0681,-2.2585,-0.22742,0.95493,-0.5198,-1.2989,0.45378,-0.29926,1.2192,0.83783,0.17759,1.0092,-0.34853,-0.25788,-0.23672,0.58725,0.028704 -2.5252,0.2431,1.1647,-0.47227,-1.6295,0.68303,1.4066,-1.2849,-0.47665,0.041992,-0.50606,0.3114,-0.17756,0.6096,0.09246,-0.5645,0.30765,0.74367,0.015785,-0.34515 -2.8029,-0.054543,0.70219,-0.4868,-2.7942,0.74367,1.7906,-1.9111,-0.8353,0.61583,-0.89476,0.48649,0.63986,-0.05967,0.31426,-0.4396,0.32276,0.57707,0.60576,-0.40546 -3.0322,-0.15169,1.6079,0.69276,-2.1544,1.8001,1.8335,-0.14231,-0.96069,0.068379,0.3339,-0.12375,-0.8352,-0.2366,0.13887,0.071435,0.078465,0.9638,0.11176,0.49923 -2.6057,-0.30921,0.18487,-1.2776,-2.0155,-1.0165,1.9488,-0.98481,-1.8613,0.048783,-0.44765,1.8626,1.1791,0.027258,0.58304,0.076865,-0.091971,-0.01316,0.020809,0.0018449 -1.5291,0.37259,0.46124,-0.42295,-2.2817,0.45167,1.2673,-0.49054,-0.65563,0.70247,-0.7762,0.67628,0.40613,0.24888,0.18738,-0.095323,0.51182,-0.32489,0.76354,0.17228 -0.9433,-0.31905,1.3744,0.16973,-2.1106,1.4098,1.2283,-0.10916,-0.50275,-1.1188,0.7125,-0.33691,0.41624,-0.17796,0.13466,0.53754,-0.062199,0.3312,0.25526,-0.066022 -3.1984,-0.45872,1.4877,-0.10249,-2.6476,0.52138,1.7092,-1.4502,-0.91676,0.20355,-0.58477,0.9582,0.36932,0.10657,-0.1842,-0.63312,0.1257,0.60442,-0.10222,-0.89951 -2.971,1.0675,0.41234,-1.1731,-2.6299,0.20033,1.9344,-1.2158,-1.0645,0.71028,-0.15868,1.2302,0.34723,0.27699,0.22517,0.61782,0.3,-0.17489,1.0115,0.82484 -2.5431,0.3464,1.1607,-0.82732,-2.3414,0.88252,1.1882,-0.98496,-0.53434,0.13258,-0.54312,0.33149,0.15701,0.74627,0.26735,-0.57322,0.39341,-0.26198,-0.12601,-0.15669 -1.0223,0.60174,0.79828,-0.2244,-2.7886,0.78894,0.99,-0.55443,-0.15373,0.19174,-0.13938,0.40347,0.43786,1.0555,0.29596,0.30233,0.52192,-0.21936,0.53275,-0.12353 -2.812,0.22767,0.081577,-0.28659,-1.6143,-0.85762,1.7008,-1.1309,-0.65365,0.12509,-0.78508,1.9121,0.44844,-0.064098,0.15406,0.24368,0.24891,0.43957,0.19661,-0.37243 -3.3079,-0.015559,1.296,-0.59782,-2.4434,1.986,2.1621,-0.59973,-1.1581,0.093536,-0.052958,0.39323,0.39251,-0.062036,-0.35149,0.58479,0.38361,-0.73975,0.31504,0.094568 -2.1485,-0.74245,1.6387,1.1561,-3.2929,1.4759,0.60973,0.14662,-1.0707,-0.3124,-0.14327,0.32594,0.18099,0.27071,0.35135,-0.48718,-0.78614,0.75912,-0.23499,0.51136 -1.6676,-0.13978,1.3883,0.44239,-2.5277,1.8911,1.825,-0.27415,-0.60078,-0.3152,0.93551,-0.26222,-0.13954,0.42284,0.031619,0.49102,0.075508,0.51826,0.8448,-0.027857 -1.07,0.2099,1.4613,0.19846,-2.8257,1.3528,1.0316,-0.13851,-0.39251,0.064535,0.47765,-0.11077,0.60002,0.17773,0.15166,-0.11481,-0.41185,0.21052,0.048674,-0.080568 -1.1323,-0.19268,0.17286,-0.15617,-1.539,1.0197,0.55539,-0.50088,-0.21833,0.29457,-0.030159,-0.10215,0.31366,0.12701,-0.36577,0.092158,-0.35097,0.13115,0.69028,-0.36545 -1.313,-0.083285,-0.16235,0.24634,-2.6588,0.73198,0.90731,-0.13525,-0.52333,0.024828,-0.78449,0.75498,0.93487,0.67982,0.9956,-0.47399,0.41409,-0.38579,0.61153,-0.60038 -2.6979,0.34235,-0.062675,-0.75239,-3.1473,1.1125,1.5162,-0.56188,-1.0385,0.93257,-0.61047,0.74733,0.68995,0.82786,0.046072,-0.28097,0.77447,-0.2403,0.65375,0.33022 -2.3483,0.14813,1.8288,0.4563,-2.1175,1.2285,1.4723,-0.061185,-0.1534,-0.52814,-0.17263,-0.3054,-0.802,0.76849,0.49356,0.72675,0.15182,0.78306,-0.079887,0.59702 -1.8204,0.2858,-0.016485,0.12039,-3.5703,1.0756,1.2528,-0.21324,-0.81346,0.47603,-0.31769,0.55787,1.2326,0.9784,0.41683,0.17088,0.31077,-0.21419,0.82887,-0.097583 -1.2228,-0.29369,1.0457,0.59891,-1.8824,1.6724,0.60114,0.30947,-0.98079,0.10737,0.26569,0.11046,-0.063636,0.16354,-0.13056,-0.20892,-0.86107,0.41103,-0.5243,0.22113 -0.89227,-0.39247,0.79275,0.36069,-1.6978,1.1316,0.45507,0.44894,-0.86442,-0.20803,0.50193,0.016877,0.21633,0.17848,0.54458,-0.23401,-0.97166,0.27817,-0.035685,0.20025 -1.9585,0.70245,-0.085464,-0.42044,-2.4513,0.62211,1.3802,0.4215,0.17073,0.51134,-0.42918,0.55465,0.38011,0.7962,0.22967,0.48614,0.36042,-0.17517,0.73322,0.11549 -1.9991,-0.27589,1.4756,0.11139,-2.6256,1.7499,0.87877,-0.061434,-0.95945,0.10505,0.31106,0.016154,0.44884,-0.2308,0.38696,-0.80862,-0.6728,0.014393,-0.061968,-0.17096 -1.6313,-0.071316,1.2892,-0.091484,-2.7729,1.7813,1.0203,-0.47549,-0.64536,0.058956,0.33744,-0.58353,0.42007,0.13771,0.1221,-0.2138,-0.11487,0.42164,0.72586,-0.1853 -2.9844,0.32297,0.75048,-1.2468,-3.1271,-0.20423,1.6311,-0.58133,-1.996,0.55305,-0.57678,1.9147,0.90504,0.46818,0.67474,-0.10076,0.24496,-0.56933,-0.049826,0.1389 -1.659,-1.0754,1.1973,1.1166,-2.6847,1.5727,1.0814,0.80025,-1.9361,-0.16506,0.24942,0.26606,0.10649,0.12437,1.0774,-0.68391,-0.6283,0.31582,-0.29504,0.51795 -2.6394,-1.0166,1.6698,0.78763,-1.7224,1.2282,1.102,0.57527,-2.1687,-0.56069,-0.30955,0.060507,-0.64532,-0.28868,0.12519,1.0161,-0.13253,0.08311,0.14086,0.78165 -1.6078,0.27557,0.15669,-0.55302,-2.0065,-0.11645,0.81419,-0.72537,-1.0492,0.40297,-0.53523,1.0843,0.84943,0.33056,0.71907,-0.36995,-0.19852,-0.32248,0.55202,-0.067765 -3.9532,0.49285,1.4614,-0.077317,-3.8088,0.67108,2.3705,-1.1193,-1.2435,0.15541,0.13825,0.63986,0.12137,0.96093,0.79482,-0.31545,0.32649,0.46173,-0.18336,0.059564 -2.6044,0.12668,-0.21547,-1.0617,-2.8424,0.13897,1.5062,-1.1539,-1.6443,1.0967,-0.41751,1.7622,0.94373,0.14207,0.035369,0.18607,-0.25588,-0.26139,0.39095,0.35912 -2.5593,0.14617,1.5769,-0.21735,-1.1148,1.0992,1.9266,-0.62943,-1.085,-0.063237,-0.087689,0.10536,-0.66722,-0.0030372,-0.15038,0.27394,0.17457,1.1751,0.091321,0.39331 -1.9538,-0.061569,0.087549,-1.3145,-1.8907,-0.40838,1.2918,0.15427,-1.8742,0.19784,0.65801,1.6865,0.84587,-0.35892,0.28419,-0.19163,-0.39445,-0.49957,0.076943,0.32321 -2.9124,0.25986,2.3699,-0.2845,-3.1054,1.5911,1.3572,-0.42468,-1.7358,-0.36342,0.72694,-0.096481,-0.5434,0.20176,0.01054,-0.31373,0.56416,0.52109,-0.15938,0.3981 -2.9103,0.5983,1.6771,0.49925,-1.7617,1.0414,1.4918,-0.067536,0.10704,0.34654,0.010046,0.28456,-0.2596,0.21686,-0.24338,0.027409,0.35744,-0.11046,-0.59118,-0.24516 -2.4853,0.48334,0.9694,-0.22731,-2.7092,0.89905,1.3936,-0.75994,-0.59217,0.37185,-0.66126,0.75437,0.31324,0.93756,0.47513,-0.83152,0.41115,-0.14382,-0.78793,-0.12599 -2.1391,0.045095,0.80909,-0.7307,-2.3039,1.2029,0.96167,-1.1272,-0.347,0.2635,-0.53623,0.25453,0.094555,0.16536,0.12337,-0.097477,-0.38723,-0.11741,0.57699,-0.23891 -0.16067,-0.23911,0.72159,0.27955,-1.4161,0.69172,0.79842,-0.0051006,-0.39073,-0.68871,0.58547,0.32662,0.32968,0.37439,0.36033,0.40847,-0.399,0.46389,0.16972,-0.25548 -0.98231,0.64062,1.4326,0.43422,-2.6936,1.3402,1.3695,0.19601,-0.33892,-0.31277,0.83434,0.090161,0.26064,0.039965,0.30304,-0.22202,0.49606,0.56631,0.061551,-0.013394 -2.3847,0.22829,1.0338,-0.72822,-3.0878,0.86182,1.1676,-1.0265,-0.97288,0.55867,-0.8692,0.63309,0.77338,0.45744,0.68059,-0.69854,0.48061,-0.59047,0.16544,-0.26368 -2.5709,0.50608,0.4401,-0.55991,-0.62925,-0.62615,1.7388,-0.73641,-0.09768,0.28786,-0.19151,1.4229,-0.030382,0.80279,-0.62478,0.41214,0.28921,0.59788,-0.19636,-0.19737 -1.008,-0.89309,0.88425,0.81407,-2.0945,1.3915,0.65829,-0.10583,-0.99004,-0.85614,0.72127,-0.1465,0.26955,0.084456,0.73858,0.70542,-0.85584,0.8543,0.44574,0.0051324 -2.9779,1.086,0.6826,-1.4138,-1.612,-0.17633,1.8175,-0.60048,-0.73173,0.41958,-0.19395,0.9556,0.0078573,0.3778,-0.25093,0.66507,0.47619,-0.37441,-0.019243,0.61245 -2.2599,-0.4093,1.8108,0.48121,-2.3567,1.1524,1.4428,-0.32747,-1.0078,0.17636,-0.0667,-0.66095,-0.42462,0.40632,0.4003,-0.038083,-0.11373,0.77773,0.47837,0.27458 -1.71,0.60494,0.26773,-0.92826,-1.5012,-1.1169,1.3929,-0.2301,-1.2454,-0.28941,0.12357,1.5574,0.57623,-0.31407,-0.015192,-0.042446,-0.33179,0.56435,0.59259,0.064512 -1.4405,0.22539,0.89179,-0.28676,-1.9502,0.83512,1.0712,-0.54247,-0.35603,0.60127,-0.62902,0.36267,0.42693,0.37817,0.4139,-0.29372,0.40569,-0.34542,0.33025,-0.17298 -1.9017,0.091134,1.295,-0.2622,-1.8984,1.3086,1.3277,-0.35516,-0.036072,0.39674,-0.30248,-0.35936,-0.020445,0.47034,0.08681,-0.12088,0.30256,0.15071,0.19909,-0.13634 -0.2522,-0.51872,0.90782,1.004,-1.86,1.1381,1.5635,-0.25454,-0.62131,-1.0022,0.9935,0.73878,0.2495,0.26382,0.4701,0.41741,-0.34568,0.77202,-0.039251,-0.20977 -2.1869,-0.77257,1.7463,0.16182,-1.7926,0.98003,0.56197,0.1813,-2.0182,-0.20659,0.33438,0.53353,-0.58096,-0.30437,-0.16428,-0.03708,-0.56583,0.15463,0.18127,0.51536 -0.25006,0.40196,0.096034,1.093,-2.0283,0.2275,2.2664,-0.53725,-1.0127,-0.92114,1.4118,0.25499,-0.084825,0.40037,0.78737,-0.27331,0.63777,-0.14793,0.49349,0.68838 -1.4715,0.9314,1.1184,1.8791,-2.4183,-1.5483,2.5091,0.19178,-0.14944,0.39001,0.48262,-0.69901,-0.17062,1.004,0.24271,0.14836,0.2423,-0.16299,-0.1334,-0.22885 -1.5771,2.1281,0.0052147,1.5352,-0.76932,-0.021817,1.7117,0.69462,-0.80183,-0.43683,-0.11332,0.53646,0.34674,-0.047505,0.92429,-0.007298,0.15917,0.64115,-0.15494,0.24844 -0.53304,1.4306,-0.26536,1.5496,-1.6594,-0.88148,1.8976,0.31425,-0.24611,-0.83741,-0.037244,0.54128,0.064266,-0.50606,-0.31403,-0.37384,0.066081,0.39265,0.30201,0.25645 -0.13201,0.058198,0.79531,1.605,-1.1023,-0.70926,1.3528,-0.51146,-1.4213,0.45333,-0.41826,-0.22878,-0.56154,0.47291,0.071959,0.48055,0.42053,0.59026,0.50849,0.047632 -1.1109,0.87144,1.6312,2.1238,-1.8661,-0.50373,1.0291,-0.42766,-0.92619,0.99907,-0.079545,-0.080889,-1.0442,-0.15243,-0.3131,0.33887,0.28486,0.70313,0.33886,-0.17066 -2.2399,1.1854,-0.48533,1.1767,-1.0603,0.41109,0.5569,1.4955,-1.5187,-0.044517,-0.15205,0.38445,1.2522,-0.1841,1.1612,0.47041,1.1992,0.82679,-0.28517,-0.31864 -1.1906,1.3223,0.87699,2.0933,-1.6712,-2.0986,2.5134,0.34955,-0.7211,0.57451,0.84502,-0.56381,0.1319,0.63888,0.06368,0.24498,-0.1816,-0.023423,0.21252,-0.26325 -0.18947,0.95139,0.0247,1.3183,-0.91933,-0.1401,1.3665,-0.15344,-0.62294,-0.52936,-0.69102,0.4315,-0.32077,-0.19787,-0.24648,-0.068262,0.28457,0.32403,0.40552,0.38985 -1.9118,1.6868,-0.89397,1.1838,-1.1747,0.31896,1.1125,0.21978,-0.47679,-0.64967,-0.54751,-0.037756,0.20089,0.52344,0.66572,0.015587,0.41136,0.015878,-0.22549,0.065545 -0.33943,-0.060514,0.64245,1.0357,-3.0493,-1.2925,1.1364,-0.17104,-1.5213,0.23569,0.21218,-0.57151,0.082304,0.80508,0.088128,-0.33837,0.19718,-0.38053,0.31681,-0.61473 -1.1392,1.5224,0.31558,2.287,-1.7141,-0.77877,2.672,0.84003,-0.34609,0.11825,0.26083,-0.20031,-0.36952,0.34254,0.29497,-0.0062397,-0.14222,-0.13633,0.34412,0.0863 -2.1642,1.7616,-0.82631,1.9453,-1.7834,-0.35472,2.2081,0.63867,0.11278,-0.52091,0.16117,0.048844,-0.080289,0.29964,0.8671,-0.022406,0.11112,-0.32494,-0.23258,0.30521 -0.67392,1.6264,0.54026,2.0767,-1.3894,-0.079565,1.9449,-0.25112,-0.55166,0.29807,-0.63905,0.41638,-0.44636,-0.27216,-0.30512,-0.067334,0.34011,0.6815,0.50328,0.052099 0.070886,-0.5075,0.042576,1.3151,-1.5335,-0.7549,1.9667,-0.73978,-0.61898,0.15971,0.10272,0.26935,-0.89271,0.802,0.3041,-0.20829,0.50635,-0.20592,0.076761,-0.047591 -0.91187,1.0718,-0.89031,0.6091,-1.0182,-0.40044,0.76741,0.53933,-0.93996,-0.93828,-0.40399,-0.34267,-0.017608,0.69244,-0.27964,0.19029,-0.20678,0.54214,0.030396,-0.10631 -0.78377,0.78367,1.4189,1.4056,-1.1884,-1.052,0.99952,0.25091,-1.1836,1.3225,0.019727,0.049447,0.92372,0.21538,-0.030926,0.96961,1.2635,0.81994,-0.078205,-0.4413 -0.7025,1.4674,-0.5914,1.1659,-1.2053,-0.22501,1.4994,0.99114,-0.22359,-0.89712,0.13399,0.10042,0.31202,-0.40064,-0.16608,-0.15939,-0.087222,0.22361,0.22649,0.32659 -2.1437,1.4555,-0.67765,1.248,-1.0765,0.78663,1.0915,0.72638,-1.0698,0.27993,-0.067018,0.69774,1.343,0.18106,1.1485,-0.20567,0.87293,0.23661,-0.22042,1.017 -1.9599,1.6315,-1.0577,0.22166,-1.5701,-0.42087,0.24131,0.72455,-0.81927,-0.35502,0.13011,-0.35328,-0.41776,0.73496,0.13996,0.22839,0.085403,0.55946,-0.21818,-0.076823 -1.2781,1.4721,-0.16964,1.2477,-1.3483,0.11771,0.92172,1.1389,-0.68566,-0.069106,0.10453,0.96561,1.4043,-0.35922,0.57689,0.35331,1.1545,1.0191,-0.60982,0.32708 -2.011,2.3304,0.068475,2.2258,-1.0494,-0.84433,2.0084,1.0291,-0.77132,-0.39187,0.4341,0.37805,0.79076,0.035704,1.0403,0.26875,-0.19213,0.44341,0.35575,0.2334 -1.435,1.986,0.082219,2.0692,-1.1592,-0.65115,2.173,1.2659,-0.57276,-0.24024,0.35943,0.21295,0.64546,-0.42389,0.82897,0.034287,-0.044587,0.18392,0.39729,0.32056 -2.0031,1.381,-0.93404,0.26345,-0.53392,-0.18209,0.65801,0.87474,-1.0149,-0.74084,0.5179,-0.52601,0.6507,0.35552,0.91169,-0.048402,0.10612,0.43221,-0.063,-0.44687 -1.5818,1.4994,-0.25161,1.5168,-0.97394,-0.19048,2.0353,1.4016,-0.42486,-0.34323,0.50285,-0.11974,0.35636,-0.060226,1.0905,-0.45966,-0.15377,-0.57242,0.42889,0.18866 -1.3611,1.156,0.17365,0.59003,-0.92398,0.016948,0.88093,0.80823,-1.074,-0.56617,0.53172,0.42076,1.0148,-0.37399,1.1806,0.23917,0.82387,0.076883,0.43148,0.1833 -0.24171,1.0916,0.25541,1.7406,-1.3925,-1.2794,2.1168,-0.15519,-0.73153,-0.022525,-0.17476,0.3726,-0.19354,-0.14444,0.049585,-0.36904,-0.064946,0.40506,0.85286,0.24591 -1.526,1.4501,-0.74305,1.2127,-1.0871,0.22928,1.9504,1.4531,-0.69568,-0.87816,0.37645,-0.04093,0.67205,0.058731,0.9717,-0.6004,0.25717,-0.18825,0.33701,0.42425 -0.31167,0.11439,0.79163,1.034,-1.8803,-1.5576,1.1031,-0.32208,-0.84905,-0.22038,-0.37396,-0.84857,0.14032,0.27059,-0.3705,-0.3754,0.10189,0.20613,0.26576,-0.53045 -0.52732,1.0961,0.60124,1.5167,-1.2291,-1.1887,1.7762,-0.15806,-0.27526,0.39879,0.096674,-0.59098,-0.42882,0.38591,-0.2644,-0.050697,-0.25822,0.33763,0.15705,-0.25706 -0.46775,1.2625,-0.52132,1.5212,-1.4983,-0.45911,1.8175,0.51656,-0.25384,-0.91257,-0.17827,0.41541,-0.44019,-0.2003,-0.34191,-0.43635,-0.19414,-0.028855,0.33836,0.66397 -1.2449,1.2876,0.78231,2.2579,-1.7597,-1.6643,2.07,0.079284,-0.36955,0.43404,0.20438,-0.46527,-0.32956,0.60645,0.14686,0.19276,-0.36319,0.71503,0.15729,0.25795 -1.6148,2.1001,0.73384,2.5716,-0.93559,-1.08,2.3593,0.40455,-1.2068,0.31489,0.71659,0.32146,0.71756,-0.29269,0.64657,0.57266,0.30052,0.75251,0.14493,0.38127 -0.188,0.85455,-0.32779,1.1509,-1.3018,-0.40242,1.8078,0.13821,-0.20185,-0.33148,0.008716,0.61269,-0.31564,-0.24983,-0.36888,-0.28457,0.165,0.07692,0.63437,0.43707 -0.82748,0.94624,1.0933,1.1308,-1.7955,-1.1139,1.2773,-0.27656,-0.069783,0.075276,0.66299,-0.57393,-0.31507,0.40956,0.30033,-0.021201,0.040441,0.48031,0.38288,0.32792 -2.105,1.9088,0.92272,1.6132,-2.3532,-1.1687,1.5897,0.19645,-0.3373,-1.1344,1.2871,0.33225,-0.043479,-0.25774,0.85517,-0.36052,0.20305,0.31758,0.66851,0.67555 -0.46959,1.0759,0.28459,1.4105,-1.5332,-1.0089,2.0418,0.067407,0.035647,0.40438,0.27267,-0.050763,-0.64915,0.36855,-0.30789,-0.20782,-0.22349,0.011441,0.24871,0.085599 -1.188,1.141,-1.0974,0.9779,-1.2672,0.39922,1.2651,1.2671,-0.6841,-0.85794,-0.082111,-0.18524,0.95027,0.17337,0.38581,-0.30558,0.431,0.40153,0.49815,0.46454 -1.6993,1.5907,1.1748,2.3199,-0.96309,-1.3126,2.4509,0.55743,-0.65707,0.53225,1.239,-0.26566,0.45358,0.44522,0.69201,0.58054,0.048057,-0.37488,0.37674,0.10936 -0.48022,0.4788,1.2218,1.9837,-1.547,-1.0454,1.5615,-0.42912,-0.88528,0.59034,-0.30962,-0.75947,0.062947,0.28122,-0.66509,0.034286,0.34829,0.45164,0.55797,-0.7344 -1.1718,1.4064,0.008918,1.8821,-1.3242,-0.62858,1.384,-0.42999,0.49494,-0.16301,-0.16302,0.40169,-0.38962,0.0092437,0.15332,-0.15423,-0.014858,0.47405,-0.14893,0.66779 -1.9557,1.1465,1.429,2.2132,-0.9353,-1.0468,2.1727,0.73631,-1.0082,0.26028,0.51737,-0.47964,0.52799,0.98176,0.56436,0.81573,0.41821,-0.48938,0.12974,-0.20231 -2.0248,1.3526,0.80323,2.1551,-0.75149,-0.77521,2.1506,0.97559,-0.71655,0.19073,0.58023,-0.29934,0.57912,0.71711,1.0151,0.45333,-0.010493,-0.70508,0.28691,-0.29226 -0.3458,0.8966,0.80244,1.7669,-1.6924,-1.5887,2.2381,-0.015421,-0.91804,0.65402,-0.038069,-0.18954,0.25501,0.40781,-0.18069,0.12607,0.38264,0.32564,0.69344,-0.41211 -1.5428,1.3536,1.3235,1.6149,-0.57805,0.135,1.2291,0.50683,-1.0043,0.95071,0.43148,0.23635,0.36398,0.23883,0.32669,0.61694,0.7275,0.23574,-0.27898,-0.48606 -0.96805,0.52213,1.0496,1.153,-1.1046,-1.2252,0.94716,-0.10282,0.12265,0.25057,0.50779,-0.62371,-0.0087134,0.66518,-0.1383,0.23724,0.006851,0.41146,-0.40684,-0.14529 -0.039835,-0.11675,0.79484,1.0077,-1.5331,-1.0825,1.2046,-0.40738,-0.62333,0.10336,-0.36775,-0.54892,-0.30928,0.46504,-0.41547,-0.28384,0.26591,0.35411,0.20885,-0.59425 -1.2692,0.29805,1.5643,1.7501,-2.8151,-2.1326,2.2262,0.072008,-0.80626,0.20543,0.50194,-0.54899,0.41702,0.72453,-0.010373,-0.096748,0.48311,-0.25424,0.0069622,-0.51757 -0.20117,0.51832,0.72462,1.3871,-1.9526,-1.6716,1.911,-0.3565,-1.0584,0.27043,-0.32612,-0.7034,-0.022307,0.65755,-0.26966,-0.057883,0.14423,0.26241,0.50365,-0.4116 -0.50101,0.41211,0.79639,1.5371,-1.5691,-1.1238,1.4171,-0.39233,0.096694,0.3981,-0.12644,-0.37083,-0.75604,0.59524,-0.30796,-0.19071,0.06667,0.36581,0.073483,-0.19236 -0.73848,1.3595,-0.45148,0.94169,-1.1182,-0.23992,0.77996,1.095,-0.95822,-0.73628,-0.71827,-0.02165,0.57379,-0.17568,-0.14289,0.44806,0.3392,1.0618,0.1449,-0.2317 -0.46171,0.51117,1.1902,1.769,-2.1437,-1.6739,1.9351,-0.22559,-0.84646,0.45602,-0.29218,-0.57823,0.23618,0.56936,-0.30667,0.14508,0.57919,0.30733,0.48573,-0.64424 -1.0999,1.2287,-0.5721,1.0191,-1.3171,0.068621,0.56442,0.13787,-0.56657,-0.81983,-0.77982,-0.42857,-0.33775,0.27949,-0.44561,0.19314,0.094647,0.10031,-0.20391,-0.24715 -2.6237,2.2735,0.026841,2.2916,-1.5618,-0.176,2.2792,0.5865,-0.97621,0.022406,0.11959,0.61856,0.54404,0.25999,0.97333,0.64045,0.87836,0.20329,-0.0051215,0.053447 -0.27709,-0.37318,0.79242,1.7156,-1.8229,-1.3119,1.1148,-0.63408,-1.3275,-0.50663,-0.42082,-0.89645,0.05162,0.29483,-0.23513,-0.34314,0.44707,0.40682,0.20372,-0.55838 -0.81822,1.4598,0.51733,1.611,-1.3389,-0.97513,2.1752,0.032787,-0.24809,0.68853,0.026672,0.10108,0.32023,0.2783,0.15598,0.32311,0.47549,0.3478,0.08952,-0.27842 -1.6809,1.7393,1.4697,2.454,-1.4184,-0.93577,2.1562,0.42872,-1.3513,1.0081,0.015253,0.30087,0.78872,0.66563,0.50414,0.69753,0.91027,0.56904,0.030874,-0.26721 -1.0511,1.1084,-0.52409,1.1837,-1.4159,-0.43187,1.9718,1.1088,0.039474,-0.15549,0.97265,0.19331,-0.41312,-0.24928,0.27769,-0.11241,0.20052,-0.52172,-0.23645,0.16556 -1.1765,1.7909,0.16648,1.8345,-0.9098,-0.32388,1.8154,0.39068,-0.37024,-0.19772,-0.068458,0.058029,-0.25184,0.0045217,0.52786,-0.059536,-0.45039,0.46759,0.050623,0.12142 -1.4956,1.9111,0.29682,1.7158,-3.06,-0.10213,2.0293,0.25996,-1.6683,-0.76052,0.27841,0.58758,0.12861,-0.4196,0.94819,-0.53108,-0.059098,0.19169,0.866,0.50607 -0.36686,1.1485,-0.29708,1.6042,-1.5938,-0.87665,2.2278,0.24578,-0.3225,-0.35861,-0.05212,0.48434,-0.60187,-0.14184,-0.33822,-0.40543,-0.12951,-0.097097,0.56951,0.59141 -0.78367,0.57974,-0.7587,0.09152,-0.67005,-0.20936,0.53778,0.28356,-0.86709,-0.52379,0.24279,-0.048891,-0.12928,0.76498,-0.21411,-0.037547,-0.0437,0.46174,0.043363,-0.052422 -1.3564,1.2419,-0.44759,0.77611,-0.5992,0.22341,0.79133,1.3425,-0.95009,-0.58824,-0.066862,-0.36247,1.2726,-0.14048,0.98987,0.21463,0.57903,0.58669,-0.051596,-0.23551 -0.56831,1.4369,-0.091178,1.6998,-1.4376,-0.96706,1.9805,0.62652,-0.12848,-0.10671,0.24939,0.42045,-0.28952,-0.49195,-0.1332,-0.26939,-0.33005,0.09684,0.6385,0.36677 -1.0525,1.3151,-0.76526,0.74871,-1.0948,-0.20089,0.82429,1.4075,-0.95469,-0.78268,-0.30639,-0.76227,0.64247,0.17436,0.048876,0.13002,0.044225,0.76575,0.25944,-0.3962 -0.64327,1.1412,-0.66618,1.2753,-1.9815,-0.297,2.3898,-0.17934,-1.5868,-1.625,0.003597,0.58476,0.29466,0.91383,0.0026358,0.22094,0.67803,0.36425,0.14089,0.42082 -1.2948,0.61951,2.2433,1.8428,-1.9477,-1.9542,1.2948,-0.27441,-1.0988,0.3208,0.14814,-0.52912,1.0955,0.43042,-0.29305,0.67527,0.48133,0.58244,0.4456,-0.25702 -1.3074,1.5014,-0.82041,1.6471,-1.7377,0.19822,1.1899,-0.20718,-0.090361,-0.83873,-0.86818,0.21248,-0.083311,-0.066305,-0.54359,0.38568,0.55269,0.35468,-0.25222,0.60474 -0.24481,0.82214,0.076232,1.0303,-1.6401,0.19298,1.4684,-0.66906,-0.49051,-1.2076,0.044127,0.38158,-0.3612,0.47067,-0.058695,0.14689,0.83272,0.067884,0.097511,0.36468 -0.41811,1.2534,0.17348,1.8128,-1.3368,-0.426,1.8786,0.32161,-0.25938,0.01658,-0.48674,0.45972,-0.096968,-0.363,-0.17957,-0.11353,0.37545,0.18913,0.54846,0.25261 -1.5449,0.42717,0.7503,1.4378,-0.56484,-0.65794,1.5117,0.53325,-0.29023,-0.063057,1.0051,-0.2487,-0.1683,1.0755,0.28445,0.22413,-0.27736,-1.1672,0.21235,-0.0097938 -1.9569,1.2445,0.75135,1.8462,-1.0685,-1.097,2.5259,0.95613,-0.5056,0.36256,1.2741,-0.42812,0.044709,0.82405,0.70861,0.12489,-0.19873,-1.0054,0.15666,-0.023264 -1.8305,0.33265,-0.56689,1.0429,-0.21157,0.059435,1.4175,-0.1604,-0.47025,-0.16276,0.0043291,-0.16971,0.53342,0.091816,0.45792,-0.30002,-0.099787,-0.7325,1.1313,-0.12668 -0.61866,1.4625,0.49666,1.4398,-1.0844,-1.2674,2.2655,0.32539,-0.42508,0.55392,0.70506,0.23402,0.29419,-0.24081,0.38951,-0.08776,0.12574,0.27886,0.43148,0.012305 -0.19714,0.96088,0.47247,1.3304,-1.0272,-1.0416,1.5562,0.013934,-0.61846,0.48898,-0.1406,-0.06604,0.14285,-0.12729,0.011042,-0.17948,0.20476,0.53381,0.49548,-0.33998 -0.62299,0.24976,1.44,0.96805,-1.4513,-0.7184,0.88186,0.42985,-1.3109,0.97565,0.11884,-0.062706,1.2913,0.039373,-0.2492,0.52273,1.4244,0.63379,-0.28425,-0.19195 -0.67939,0.95026,0.65372,1.7017,-1.6322,-1.1048,2.1145,-0.20771,-0.17615,0.33233,0.054864,-0.52295,-0.72482,0.73365,-0.20187,-0.064154,-0.13433,0.3565,0.026155,-0.028408 -0.62403,1.0261,0.37388,1.6088,-1.8711,-0.86413,2.3982,0.13099,-0.080808,0.19294,0.069393,-0.062413,-0.75589,0.84181,-0.19015,-0.070437,-0.12331,0.11607,0.086122,0.19531 -0.53222,0.8419,0.83258,1.4337,-1.4516,-0.89804,1.9594,0.31259,-0.35336,0.884,0.17233,-0.32396,0.3052,0.14601,-0.26313,0.13674,0.71138,0.32946,0.25942,-0.62577 0.031139,0.31703,-0.38972,1.3042,-1.5422,-0.21752,1.9861,-0.37295,-0.75787,-1.0552,0.082372,0.83288,-0.38465,0.20831,-0.042527,-0.37443,0.49403,0.12165,0.19848,0.46936 -0.49685,0.015165,0.063842,1.1746,-2.2099,-1.099,1.9625,-0.49732,-1.4592,-0.70482,0.52708,-0.24572,-0.53745,0.75185,0.60135,-0.19564,0.39285,-0.60036,0.74538,0.62225 -0.54511,0.51817,0.26821,1.4028,-1.4796,-0.4708,2.0389,0.61629,-0.097108,0.14419,0.081552,0.089378,-0.55905,0.69486,-0.31171,-0.016578,0.15474,-0.30014,0.087555,-0.15098 -1.0546,1.6346,-0.2593,1.1722,-0.93481,-0.40652,0.87938,0.84549,-0.73048,-0.6892,-0.48584,0.8691,0.75448,-0.39642,0.28058,0.38749,0.45858,1.192,-0.032356,0.23278 -0.8873,1.5781,-0.65457,1.0499,-1.2258,-0.28005,0.98588,1.1649,-0.7596,-0.99619,-0.51278,-0.3064,0.59089,-0.12758,-0.14293,0.27002,0.029011,0.8621,0.1914,-0.15853 -2.4611,1.7212,1.4831,2.3304,-2.2433,-0.9891,1.9761,-0.61922,-0.69509,1.0497,0.25268,-0.19684,-0.28453,0.70789,0.34524,0.74693,0.60684,0.073432,-0.31326,-0.20667 -1.0412,1.453,0.29207,2.0382,-1.6221,-0.29196,2.4621,0.64895,-0.1268,0.42494,0.32959,-0.034369,-0.02667,0.0047281,0.18891,-0.097609,0.45473,-0.094376,0.22315,0.016384 -1.376,1.3823,-0.82518,0.83844,-1.0226,-0.052628,0.90489,1.5306,-1.2179,-0.6322,-0.26375,-0.69667,1.1736,0.041148,0.50334,0.21628,0.46634,0.82381,0.13245,-0.23341 -0.88689,1.0665,-0.38484,0.9392,-0.89527,0.39659,0.78747,1.3321,-0.47993,-0.36403,-0.18114,0.35841,0.66546,-0.3579,0.73759,0.20614,0.53474,0.51043,-0.0044071,0.41545 -0.74027,1.5855,0.45432,1.8719,-1.255,-1.1338,2.0762,0.49491,-0.30734,0.17025,0.35239,0.072061,-0.18456,-0.24773,0.072358,-0.14796,-0.39412,0.47746,0.33936,0.16488 -0.81251,1.0076,-0.41761,0.84901,-1.4593,-0.41124,1.3465,0.0018779,0.060673,-0.79059,-0.40434,0.65771,-0.43611,0.42293,-0.10896,0.068672,0.39422,0.10848,-0.20698,0.55008 -0.61318,1.0208,1.1499,1.2228,-0.89948,-0.80259,1.0104,-0.21501,-0.66624,0.87934,-0.18753,-0.25995,0.17771,0.19702,-0.27554,0.55609,0.52077,0.72963,0.24004,-0.6445 -1.1828,1.9318,0.32386,2.2471,-1.5921,-0.57298,2.507,0.88977,-0.45799,-0.10606,0.089154,0.06675,-0.099532,-0.04091,0.55079,0.01589,-0.061011,0.35205,0.3375,0.20767 -0.35002,0.49877,-0.49679,1.1746,-1.2368,0.39296,1.5044,-0.48316,-0.0026449,-0.72662,0.065267,0.75074,0.21378,0.10551,-0.40101,-0.20362,0.53794,-0.18392,0.021312,0.46961 -0.47975,0.57348,0.62454,1.1604,-1.2425,-0.96775,1.5642,0.025398,0.056839,0.58904,0.37339,-0.42934,-0.5673,0.37908,-0.21412,-0.0076556,0.013032,0.045085,-0.091867,-0.57106 -1.2912,1.1586,1.3332,1.6086,-0.53269,-0.48701,1.6387,-0.095107,-1.5708,0.59907,-0.099027,-0.17062,0.82767,0.58127,-0.17723,1.0383,0.84737,0.41895,-0.13357,-0.38257 -0.41051,1.2053,-0.74818,1.1314,-1.7323,0.021965,1.7669,0.60313,-0.85039,-1.2686,-0.18066,0.61178,0.61189,0.30154,-0.37522,0.091859,0.57915,0.54662,0.41266,0.40462 -0.8527,0.65683,-0.50091,0.38103,-0.42363,0.20685,0.58581,0.75262,-0.61721,-0.43594,-0.055456,-0.41315,0.8217,0.064952,0.53635,-0.13351,0.37485,0.18789,0.21345,-0.0065153 -0.8944,1.7884,-0.21317,1.9108,-1.3825,-0.62771,2.2622,0.53264,-0.30854,-0.65728,0.072811,0.13462,-0.30704,-0.17736,0.010346,-0.34813,-0.51001,0.26143,0.26124,0.58576 -0.18048,1.2504,0.3076,1.4799,-1.2031,-0.87971,1.9501,0.26489,-0.86474,-0.037706,-0.3817,0.29536,-0.38806,-0.16711,-0.14328,-0.028041,-0.010116,0.65671,0.5659,0.32831 -0.83642,-0.49241,0.14807,0.53896,-3.0508,-1.2493,0.91184,-0.37858,-1.304,-0.11344,0.3609,-0.27254,-0.49944,0.75551,-0.30027,-0.086794,0.18611,-0.90509,0.41549,-0.42352 -2.0444,0.80236,-0.7695,1.967,-1.7073,-0.60742,2.2216,1.3039,-0.10287,-0.14265,0.67251,-0.45018,-0.20666,0.42257,1,-0.4129,-0.20888,-0.81422,0.50218,-0.083325 -2.1929,1.7425,-1.0118,0.29495,-0.89114,-0.79957,0.63671,0.9518,-1.2426,-0.5712,0.14348,-0.4228,0.43384,0.7505,0.56527,0.035379,0.018509,0.84951,-0.26351,-0.63749 -1.2393,1.1065,-0.18515,1.0249,-0.31165,-0.023773,0.96183,0.66958,-0.4393,-0.5775,0.16885,-0.31925,0.57561,-0.1281,1.0183,-0.14186,-0.15349,-0.09669,0.13435,-0.15537 -2.0529,0.51269,-0.048066,-0.047718,0.11722,-0.93821,0.75809,0.19317,-1.3455,-0.04611,0.68612,-0.31124,0.046665,-0.40799,0.15269,-0.56289,-0.20324,0.15655,0.25751,0.038804 -2.4754,1.3207,-0.57986,1.7137,-1.0813,-0.9569,2.1453,0.58061,-0.41094,-0.25881,1.2755,0.54487,-0.38432,0.21146,1.3471,0.42831,0.07463,-0.75289,-0.47528,0.20943 -0.030679,-0.73004,0.29734,0.62473,-1.4112,-1.0314,0.7873,-0.36389,-0.46209,0.19238,-0.30059,-0.24627,-0.43177,0.46775,0.075698,0.08946,0.42725,0.06551,0.090504,-0.52506 -1.9553,1.0167,0.95448,1.7741,-2.0474,-2.0316,2.2755,0.66005,-0.21477,0.3284,1.1231,-0.59125,0.13103,1.1096,0.25319,0.39998,-0.24263,-0.12456,-0.013269,0.33271 -1.9362,1.4243,0.16374,1.7339,-0.44642,-0.075168,1.572,1.1795,-0.71824,0.21962,0.45255,0.17267,1.1041,-0.051059,1.6239,0.28991,0.19375,2.5093e-05,0.47133,0.047432 -0.18228,0.34731,0.11739,0.92062,-1.6992,-0.057825,1.5358,-0.75698,-0.3253,-0.49111,0.13198,0.43418,-0.58106,0.43621,-0.16458,0.22736,0.94307,-0.4318,-0.02961,0.34211 -0.54181,0.24852,0.6928,1.5882,-2.3666,-1.9203,2.1161,-0.069499,-0.56386,0.43829,0.15492,-0.59124,-0.50604,0.70852,-0.46672,0.062638,0.23104,-0.082197,0.25147,-0.29411 -1.2828,1.3625,0.83067,1.6853,-1.4561,-1.4902,2.2496,0.67367,-0.44773,0.40597,0.63729,-0.7334,-0.063082,0.85874,0.22781,0.26458,-0.096799,-0.19896,-0.16429,-0.2583 -0.056207,-0.013684,0.10543,0.65389,-1.4411,-1.0095,1.2937,-0.386,-0.24043,0.34828,-0.089418,-0.10271,-0.55027,0.722,-0.39091,0.040649,0.43455,-0.17107,0.15698,-0.24533 -1.0814,1.5976,0.4967,1.5908,-1.0524,-0.61381,1.9269,0.8756,-0.59561,0.74857,0.5573,0.79722,0.9024,-0.2293,0.90305,0.41897,0.69401,0.65973,0.063781,0.52512 -0.71464,0.57882,0.82547,0.85248,-2.1497,-0.31576,1.2101,-0.35245,0.20958,-0.049682,0.008256,0.046797,-0.98794,-0.18879,0.13608,-0.020742,0.57502,0.26208,0.37481,0.0086389 -0.85953,0.94628,-0.245,1.9605,-1.7886,0.2146,1.3761,-0.44454,-0.13909,-0.30234,-0.73955,0.53102,-0.92254,-0.083725,-0.44693,0.053373,0.47825,-0.1057,-0.12295,0.68564 -0.35035,1.2968,-0.051044,1.4896,-1.47,-0.77179,1.9608,0.53445,-0.19784,0.092659,-0.050031,0.36922,-0.37456,-0.16446,-0.30801,-0.4069,-0.12596,0.045302,0.48018,0.25613 -1.2581,1.4434,0.38752,0.81933,-2.6313,-0.17261,2.4478,0.53565,-1.7675,-0.159,0.23796,0.42577,1.0548,-0.027513,0.79846,-0.18613,0.91973,0.97993,1.1372,0.78803 -1.3448,1.8733,0.76954,2.0523,-0.89003,-0.10336,1.3565,0.26535,-0.63419,0.3427,-0.24332,0.45011,-0.39139,-0.46838,0.38559,0.42327,0.36084,0.54481,0.15529,-0.019946 -1.6991,2.0635,-1.2276,1.4909,-1.9082,-0.41668,1.8119,1.4109,-0.98578,-1.1855,0.0066984,-0.30371,0.9096,-0.0092568,0.15376,0.033098,0.30765,0.85665,0.28852,0.046525 -0.32744,0.72922,1.0035,1.6962,-1.083,-0.21451,1.4681,-0.0035975,-1.0691,0.84823,-0.29698,-0.43917,-0.23587,-0.20183,-0.55673,0.28302,0.51524,0.64854,0.42323,-0.47084 -0.99924,1.1529,1.3694,1.42,-1.3116,-0.91862,1.148,-0.2761,-1.2585,1.2166,-0.28379,0.21294,1.0104,0.43497,-0.025285,0.62207,1.3324,1.0591,-0.090455,-0.51029 -0.15164,0.88534,0.18021,0.55529,-1.6386,0.056638,1.4046,0.093813,-1.2719,-0.6736,0.38632,0.5869,0.12652,0.067869,0.57044,-0.13325,0.59155,0.16329,1.1314,0.69995 -1.8676,0.94855,-1.1915,0.3736,-0.89083,0.041511,1.2124,1.144,-1.3061,-0.50704,0.19327,-1.0467,0.92175,0.24682,0.41723,-0.53479,0.43278,0.2109,0.61981,-0.31461 -0.69965,1.0029,-0.45812,1.1145,-1.2654,-0.27996,1.4046,0.50659,0.35879,-0.22057,0.039738,0.51739,-0.38373,0.027581,0.037834,0.023417,-0.00070167,-0.3456,0.037835,0.51904 -2.1735,1.3061,-0.87969,0.78869,-0.82461,-0.35974,1.3909,0.81584,-2.2551,0.2067,0.054845,-1.3626,0.50021,0.22989,0.18793,-0.67393,0.26377,1.0078,0.40054,-0.072908 -0.24961,-0.19133,-0.43435,0.88716,-2.3736,0.36675,1.633,-0.20993,-0.98456,-1.1703,1.5268,0.9626,-0.43734,0.26018,0.52878,0.025464,0.9804,-0.27506,0.1509,0.29312 -0.24497,0.6635,0.29591,1.3697,-1.5102,0.066994,1.9954,-0.45444,-1.1692,-1.0874,-0.61965,0.538,0.031529,0.33898,0.16877,0.50703,0.98738,0.30199,0.28874,0.58312 -1.4159,1.6846,1.1217,2.3265,-1.3679,-1.3976,2.4886,0.94289,-1.0806,0.76372,0.71175,-0.096261,0.90688,0.28338,0.72458,0.58021,0.40857,0.36126,0.35928,0.19079 -1.4735,1.1697,1.3205,1.447,-2.4852,-1.1741,1.7459,-0.24317,-1.7666,-0.084257,0.087882,-0.14841,-0.64317,0.018776,0.68961,-0.2852,0.69923,0.49563,0.97431,0.34428 -1.3042,1.9312,0.05366,1.7785,-0.90831,-0.33746,1.4385,1.0807,-0.77407,-0.5281,-0.10495,0.27843,0.56657,-0.57696,0.69446,0.30219,0.17893,0.72693,0.01121,0.18448 -0.54728,0.80544,-0.29589,0.81676,-1.9217,-0.36582,1.6262,-0.1862,-0.76927,-1.5864,-0.16683,0.012673,-0.12795,0.60506,-0.080656,0.44694,0.76365,-0.050808,0.053417,0.77403 -0.96082,0.68692,1.4527,1.3606,-1.5372,-1.7553,1.0951,-0.41,-1.1626,-0.03973,-0.28821,-0.7533,0.97223,0.23875,-0.28086,0.49457,0.40388,0.4885,0.28138,-0.5418 -1.1568,1.596,0.83836,2.4553,-1.6009,-0.72584,2.3773,0.43054,-0.53959,0.17081,0.032853,-0.12649,-0.42646,0.14395,0.40595,0.31913,-0.041719,0.71504,0.20697,0.20992 -0.20453,0.321,-0.20578,1.2757,-1.5064,-0.54138,1.9666,-0.23426,0.028776,-0.099446,0.14323,0.57343,-0.95892,0.21868,-0.28188,-0.27989,0.32522,-0.33728,0.23873,0.24198 -0.636,0.31874,1.4685,1.4373,-1.2039,-0.71944,0.9261,0.06459,-1.1683,0.55596,0.31166,-0.82105,0.73457,-0.2328,-0.54307,0.42129,0.5685,0.58412,0.10725,-0.68821 -0.81273,1.0246,0.85904,1.8514,-1.3368,-0.48215,1.8368,0.19278,-0.18049,0.70445,-0.031763,-0.44596,-0.32578,0.10141,-0.37333,0.13375,0.23121,0.079606,0.056967,-0.55305 -1.0304,1.3128,0.65079,1.2414,-0.75853,-1.2541,1.6247,-0.10676,-0.3419,0.46369,0.36624,-0.1021,0.44146,0.78182,0.1046,0.35256,0.04574,0.18479,-0.2307,-0.36569 -0.73926,1.7649,0.090144,1.4322,-0.92238,-0.62618,1.7649,0.25415,-0.45562,0.11114,-0.34598,0.60818,-0.0034161,-0.18654,0.24532,0.091203,0.029757,0.58192,0.25207,0.35141 -1.1009,1.5471,1.0988,1.7938,-1.024,-1.3897,2.0756,0.53453,-0.53848,0.64895,0.64718,-0.35712,0.3529,0.35576,0.3437,0.46964,-0.046422,0.24072,0.21286,-0.28179 -1.3015,2.256,-0.11031,2.1505,-1.6779,-0.29726,2.0281,0.11189,-0.97461,-0.15642,-0.73288,0.86397,-0.13141,-0.2592,0.11048,0.29686,0.56458,0.64876,0.21908,0.52367 -0.75232,1.2454,0.84381,1.4185,-1.1281,-1.1045,1.736,0.06582,-0.31912,0.65153,0.11338,-0.48192,0.38416,0.40651,-0.12452,0.17489,0.25313,0.36526,0.0045647,-0.62285 -0.28492,0.63639,1.0834,1.2188,-1.652,-0.76595,1.6389,0.027257,-0.56152,0.37433,0.065722,-0.83582,0.11147,0.47085,-0.55598,-0.16423,0.60086,0.66387,0.28979,-0.57313 -1.0421,0.51913,1.9597,1.7541,-1.5901,-1.5824,1.2864,-0.10317,-1.0833,0.077334,0.4578,-0.92416,0.94343,0.14986,-0.49238,0.18995,0.6561,0.41108,0.25773,-0.79296 -0.91049,1.788,-0.35598,2.2491,-1.7543,0.11449,2.2547,0.038511,-1.5698,-0.83034,-0.66762,0.97501,0.26627,-0.099705,-0.019585,0.14594,0.77267,1.1518,0.05102,0.63757 -1.1222,1.6203,0.8843,1.3033,-2.0066,-1.0574,2.3533,0.42394,-0.45364,0.11624,1.0244,-0.51364,-0.034908,-0.049949,0.72892,-0.020709,0.04069,-0.14677,0.65564,0.32508 -1.3537,0.71347,0.23954,1.6519,-2.1175,-1.2555,2.5547,0.75131,0.3273,0.49173,1.0222,-0.17861,-0.68434,0.59772,0.15409,0.22194,-0.19447,-0.38031,0.035026,0.087527 -0.96058,1.2882,-0.41144,2.2347,-2.6955,-0.70199,2.8878,0.34299,-0.84797,-0.93983,0.23451,0.38775,-0.20835,0.40169,0.5202,-0.23702,0.3697,0.68144,0.21439,0.39618 -1.115,0.4757,1.3021,1.5905,-1.6642,-2.167,1.2397,-0.34151,-0.3397,0.30995,0.81529,-0.76813,0.55599,0.82465,-0.26551,0.27904,-0.069399,0.22436,0.24935,-0.096493 -1.5412,2.1882,0.69738,1.3672,-2.0572,-0.54891,0.95456,0.44304,-1.1291,-0.80519,0.87525,0.83355,0.4403,-0.67706,0.85324,0.26063,0.79275,0.58199,0.69696,-0.065002 -1.2707,1.8682,-0.96162,1.0686,-1.3162,0.043441,1.4595,1.1282,-0.67991,-0.76843,-0.12147,0.51006,1.0658,0.030649,0.43114,0.18957,0.35967,0.94944,0.10248,0.84663 -0.039991,-0.53804,0.30791,1.8128,-2.5147,-1.2439,2.4021,-0.88789,-1.1666,-0.019785,0.098277,0.13344,-0.60002,0.72817,0.33734,-0.31201,0.53045,-0.12885,0.15235,-0.21081 -0.2347,0.16993,-0.15056,0.3962,-1.7629,-0.017112,1.2775,-0.30318,-0.68744,-0.11334,1.0497,0.75707,-0.6829,0.22154,0.35833,-0.52435,0.43498,-0.38996,0.4395,0.30397 -1.5575,1.2517,-0.67601,0.54441,-0.68864,0.06363,0.82693,1.1832,-1.5797,-0.21511,-0.060497,-1.1372,0.88613,0.30144,0.51203,-0.088313,0.4346,1.0389,0.22181,-0.48952 -0.43496,1.0102,0.28249,1.8379,-1.4483,-0.45519,1.9718,0.3696,-1.0487,-0.39661,-0.60957,0.95192,0.14401,-0.13034,0.27935,0.23256,0.50642,0.75273,0.96171,0.63036 -2.0621,1.6218,-0.3085,2.2579,-1.2935,-0.61559,1.6928,0.45859,0.18852,-0.84106,0.79917,-0.039615,0.32465,-0.095777,0.91594,0.12803,-0.4455,0.52466,0.096549,0.45093 -0.57466,1.3718,0.44521,1.4391,-1.2375,-0.84139,2.1313,0.65117,-0.51073,0.86105,0.50082,0.43939,0.51641,-0.28423,0.45355,0.10825,0.58387,0.634,0.33695,0.36505 -0.48581,1.0636,-0.71877,1.3126,-1.8232,-0.27095,2.1684,0.63615,-0.17306,-0.75239,0.38219,0.77439,-0.2582,0.11348,-0.3009,-0.24251,0.26159,0.012156,0.27578,0.68163 -0.79454,1.2375,0.074431,1.0278,-0.64518,-0.051024,1.1629,1.0306,-0.22837,0.17783,0.27246,0.46368,0.6268,-0.45609,0.88575,0.047473,0.34454,0.29965,-0.094106,0.5064 -1.1978,1.9329,0.75755,2.2669,-1.553,-0.83059,1.9601,-0.20518,-1.3127,0.76746,-0.49525,1.0437,0.01363,-0.036177,0.39998,0.51039,0.90865,0.95309,0.30195,0.080384 -1.3451,1.4997,-0.12129,1.0554,-0.54633,0.25615,0.79969,0.48333,-0.66032,-0.39976,-0.54687,0.021975,0.40735,-0.12004,0.8716,0.14019,0.4795,0.27735,-0.092904,-0.17377 -0.72667,1.195,1.1942,2.1542,-1.5234,-0.74589,2.3468,0.38378,-0.88524,0.54917,-0.094031,-0.55638,-0.089755,0.23178,-0.10605,0.30582,0.49259,0.54156,0.16607,-0.41413 -0.7915,1.4606,0.83337,1.5555,-0.73553,-1.1042,1.7569,0.44974,-0.47278,0.60249,0.47627,-0.13695,0.24,0.06315,0.25801,0.31198,-0.17797,0.43989,0.21069,-0.37519 -1.9384,0.91719,-0.83427,0.27835,-0.5061,0.23785,0.7684,1.0216,-1.4922,-0.15389,-0.0016801,-0.83121,1.3646,0.16658,0.80208,-0.12533,0.8344,0.80527,0.31476,-0.35325 -0.63386,0.7622,0.79349,1.9949,-1.809,-1.5473,1.9404,-0.21853,-0.33294,0.24566,-0.059091,-0.24789,-0.68428,0.64164,-0.13131,-0.090923,-0.13739,0.45035,0.3697,0.052794 -0.64957,1.1939,0.65411,1.3897,-0.57668,-0.66777,1.3202,0.24127,-0.24684,0.36803,0.31319,0.03137,-0.14037,-0.058124,0.25207,0.34081,-0.20929,0.4675,0.16366,-0.032428 -1.1214,0.33561,-0.81048,-0.15063,-2.6585,-0.32668,1.494,0.97649,-0.57395,-1.0738,0.55233,-0.45617,-0.088295,0.11956,-0.24009,0.4717,1.0851,0.038325,0.51044,-0.0011345 -0.2733,0.58789,0.71791,2.1614,-1.5123,-1.336,2.2599,-0.50486,-1.3399,0.069157,-0.075697,0.59586,0.42491,0.093094,0.51517,0.12169,0.20049,0.52368,1.0704,-0.079483 -1.2924,1.5102,-0.45253,1.6135,-1.1597,-0.28051,1.7762,1.1564,-0.16603,-0.46715,0.28034,-0.16939,0.061868,0.0067633,0.87944,-0.45787,-0.40434,-0.30973,0.27832,0.29432 -0.021091,0.29184,0.24933,1.0557,-1.5757,-1.1472,1.8484,-0.34624,-0.48839,0.39797,0.0091714,-0.071726,-0.70039,0.54089,-0.30395,-0.18005,0.12634,-0.052227,0.45351,-0.14689 -1.0098,0.19095,1.426,0.73771,-1.5491,-1.4878,0.7774,0.02108,-0.23228,-0.26378,0.88183,-0.61038,0.23812,0.060196,-0.17931,-0.093007,0.54415,0.14247,-0.36591,-0.51966 -1.0946,2.0105,-0.3062,2.1369,-1.8401,-0.36543,1.9761,0.22213,-0.56889,-0.88046,-0.72313,0.4246,0.14908,-0.34182,-0.20332,0.14834,0.47569,0.6677,0.16812,0.34356 -0.72373,1.6747,0.39101,1.242,-0.94844,-0.54804,1.9977,0.85116,-0.39391,0.31228,0.29519,0.0010598,0.11641,0.089414,0.38407,-0.0075754,-0.19097,0.44441,0.10662,0.20563 -2.3613,2.5215,-0.086014,1.6123,-1.5529,0.091019,1.275,0.42242,-0.96901,-0.80365,-0.50387,0.79606,0.082717,-0.21381,0.45752,-0.13359,0.97909,0.65213,-0.41894,-0.20513 -0.16905,0.50225,0.33611,1.7433,-2.0909,-1.1539,2.6031,-0.027086,-0.7557,0.29367,0.1019,0.13032,-0.70384,0.57148,-0.24714,-0.12001,0.40843,-0.028915,0.50651,-0.14185 -1.0741,1.0936,-0.40287,0.36721,-1.4683,0.22373,1.2521,1.0508,-0.83738,-0.59127,-0.15191,-0.087403,1.2298,0.24065,0.14557,0.28991,0.8749,1.0279,0.23917,0.45895 -0.80788,0.13821,1.5452,1.0728,-2.2101,-1.7185,0.57195,0.0012205,-1.4324,-0.54961,0.31969,-0.1855,1.0682,-0.47487,-0.12187,-0.8254,0.33311,0.16749,0.21438,-0.86979 -0.69754,1.1352,-0.31075,1.244,-1.0271,-0.4583,1.3747,0.50668,0.1564,-0.47676,0.15733,0.12174,-0.30911,-0.051708,0.12876,-0.31624,-0.51321,-0.12808,0.012808,0.34724 -1.4951,1.807,1.1608,2.0711,-0.8642,-0.79711,1.6085,0.12061,-0.71476,0.97511,0.13918,-0.005397,-0.0018657,0.40494,0.49604,0.83454,0.2882,0.36548,-0.0035026,-0.33824 -0.24814,0.96491,0.60317,1.7443,-1.3973,-1.2538,2.0076,-0.12485,-0.65363,0.33289,-0.17694,-0.0059758,-0.40296,0.27862,-0.13761,0.013569,-0.12902,0.38986,0.70669,-0.14813 -0.21869,0.17366,0.45148,0.47034,-2.1298,-0.72736,1.4736,-0.24592,-0.87557,0.39357,0.57561,0.024086,-0.4835,0.96739,-0.017614,-0.022148,0.46228,-0.27737,0.64148,-0.13789 -0.32367,0.40867,-0.1974,1.6501,-1.6249,0.3471,1.9269,-0.97082,-0.5727,-0.20022,-0.1806,0.71175,-0.43441,0.23519,-0.40728,-0.17242,0.76998,-0.31309,-0.040016,0.29774 -1.0542,1.325,-0.76865,1.3225,-1.2384,-0.0033901,1.6739,0.99498,-0.075036,-0.83261,0.33111,-0.057879,0.19492,-0.090045,0.29957,-0.36389,-0.14705,-0.26246,0.25249,0.35416 -0.94282,1.8253,0.35957,1.6816,-1.2883,-0.66006,1.6666,-0.15046,-0.5921,0.3736,-0.67592,0.99628,-0.27418,-0.047768,0.10517,0.1521,0.59035,0.62467,0.39124,0.19561 -0.25508,0.69895,0.37291,1.033,-2.1507,-1.2003,1.5646,-0.40699,-0.98695,0.27987,0.36565,-0.37037,-0.51221,0.74767,0.15688,-0.44381,-0.28721,0.040925,0.61678,-0.24474 -1.3707,1.5121,-1.0383,0.7017,-1.5825,-0.203,1.0851,1.603,-0.86639,-0.72022,-0.073194,-0.6316,0.89058,0.25695,-0.022955,-0.02792,0.37663,0.76207,0.34335,-0.21521 -0.24914,1.0509,0.76526,1.3205,-1.1813,-0.71814,1.817,0.22392,-0.97838,0.32982,-0.55935,0.45711,0.36098,-0.087144,0.092585,0.45912,0.79653,0.77913,0.52051,0.28613 -2.1366,1.7469,1.0995,2.4722,-0.89146,-0.37619,1.6432,0.57998,-0.89054,0.49535,0.36169,0.24935,0.015337,0.26699,1.1169,0.69509,0.2523,0.68473,0.11422,0.16186 -1.177,1.7872,0.50378,1.8583,-0.95275,-0.69175,2.3281,1.195,-0.68114,0.40439,0.52617,-0.052992,0.37282,-0.0049952,0.87752,0.28622,-0.070956,0.20579,0.28819,0.14905 -0.59851,1.5027,-0.04474,1.5132,-1.4653,-0.447,2.0036,0.87463,-0.20647,0.03775,0.098354,0.69975,0.33321,-0.3991,0.21146,-0.17003,0.24279,0.38372,0.46457,0.46828 -1.5514,2.1491,-0.017093,1.0613,-1.9705,-0.95874,1.3262,-0.30304,-0.60199,-0.46989,-0.20431,1.0303,-0.081339,-0.4519,0.10399,-0.034253,0.30763,0.19726,-0.18081,0.2657 -2.0267,1.367,1.1964,1.9,-1.4738,-1.0405,2.3038,-0.056055,-0.39137,0.30872,0.6429,-0.7054,-0.16133,1.3028,0.68238,0.61407,0.14872,-0.067998,-0.3641,0.11094 -0.59248,1.5377,-0.17501,2.0142,-1.957,-1.202,2.7035,0.21699,-0.53359,-0.38122,0.0014391,0.62887,-0.26802,0.18043,0.13072,-0.33039,-0.1716,0.31813,0.49796,0.56044 -0.32513,-0.59982,1.0251,1.2192,-1.9855,-1.8348,0.41391,-0.60435,-0.77291,-0.30473,-0.30374,-0.5294,0.10326,0.45901,-0.15856,-0.24587,0.2353,0.13073,0.3731,-0.19197 -0.37186,-0.0418,-0.26838,1.5247,-2.3178,-0.48756,2.8187,-0.28532,-0.98318,-0.59905,0.51483,0.56416,-0.62206,0.93516,0.27267,-0.13595,0.77737,-0.48463,0.47074,0.37036 -1.2266,1.6649,-0.86175,0.8208,-0.97272,-0.097879,0.83545,0.71281,-0.77811,-0.91028,-0.49776,-0.13419,0.48185,0.29213,0.082008,0.40075,-0.046045,0.84054,-0.031434,0.047172 -1.111,0.45881,1.7055,1.5665,-1.7365,-1.4274,0.98305,-0.57506,-0.67794,0.085974,0.17419,-0.97175,0.88043,0.25379,-0.65536,-0.070124,0.53979,0.31837,0.19518,-0.60246 -0.0081476,0.98005,0.17931,0.79297,-1.9874,-0.014961,1.5708,-0.19946,-1.1221,-0.41352,0.58462,0.6632,-0.018153,0.2047,0.20553,-0.34884,0.32412,0.15787,1.0516,0.54331 -1.0207,1.5487,0.63865,1.479,-0.70635,-0.78511,1.5722,0.33611,-0.13625,0.2734,0.66584,-0.039238,-0.026515,0.16007,0.46125,0.11082,-0.38543,0.34669,-0.016721,0.13263 -1.0929,1.5315,0.88504,1.9921,-1.6484,-1.173,2.6953,0.76932,-0.88094,0.72062,0.32079,-0.29516,0.52044,0.47144,0.3532,0.36596,0.48394,0.20713,0.19435,-0.11843 -0.45139,0.99639,0.89928,1.4417,-1.2594,-1.4237,1.5007,-0.17542,-0.89971,0.47198,-0.36157,-0.45882,0.054228,0.35575,-0.16506,0.28091,0.13088,0.84959,0.43439,-0.48796 0.073456,0.81214,-0.20445,1.0674,-1.0903,-0.19075,1.7312,0.076291,-0.65082,-0.55651,-0.066905,0.74756,-0.049368,-0.088766,-0.26767,-0.29681,0.20926,0.27735,0.63109,0.60923 -0.629,1.2114,-0.67551,1.1355,-1.4375,-0.22042,1.533,0.67535,-0.034298,-1.0315,0.162,0.20771,-0.1483,-0.17032,-0.45988,-0.29125,-0.10272,0.012238,0.13663,0.39592 -1.6007,1.4317,0.057526,1.842,-1.3264,1.0861,0.66809,0.46153,-0.63967,-0.40459,-0.11006,-0.41039,0.11317,-0.65182,0.23894,0.094151,0.030074,-0.072662,-0.10362,-0.28547 -0.77356,0.88632,1.3619,1.2921,-1.1518,-1.5153,1.3244,0.19835,-0.68673,0.66723,0.35043,-0.61696,0.76263,0.26574,0.053423,0.78844,0.33818,0.6928,0.18982,-0.35467 -1.2349,1.1341,0.84046,0.96469,-1.02,-0.74881,2.2971,0.81842,-0.88736,0.7981,0.42206,0.33249,1.0616,0.54563,0.82575,0.31568,0.4292,0.67173,-0.088715,0.43104 -0.67972,0.24324,1.1276,2.1071,-2.1418,-2.0814,1.8209,-0.63226,-0.99974,0.24075,-0.10043,-0.37149,0.33707,0.61885,0.29793,0.02117,-0.17112,0.40332,0.8415,-0.14041 -1.2309,1.7762,-0.69261,1.6416,-1.3895,0.01858,2.0308,1.0271,-0.44075,-1.0536,-0.025364,-0.0087451,0.33662,-0.10554,0.28588,-0.20477,-0.09147,0.23208,0.34826,0.47089 0.26735,-0.0089632,-0.020462,0.72633,-1.4709,-0.31816,1.8026,-0.19043,-0.319,0.036818,0.28424,1.2339,-0.36764,0.29375,-0.053749,-0.018582,0.74227,-0.081098,0.41529,0.15119 -1.3063,0.51367,1.542,2.1766,-2.5089,-1.3568,1.5103,-0.74744,-0.53816,0.75306,-0.20094,-0.8118,0.17472,0.59507,-0.68926,0.38433,0.57825,0.33467,-0.036282,-0.40379 -0.47488,0.83041,0.55148,1.4402,-1.5947,-1.293,2.119,0.16672,-0.37425,0.4113,0.24813,-0.52942,-0.56951,0.61402,-0.51072,0.020243,-0.10818,-0.0067339,0.20164,-0.21598 -1.4461,2.0801,0.62352,2.0498,-0.80594,-0.91642,1.7615,0.48412,-0.55567,0.069508,0.52309,0.47603,0.19176,-0.12758,0.70154,0.33047,-0.20709,0.69258,0.068233,0.12707 -0.72073,0.57369,1.0968,1.51,-1.3216,-1.2958,1.1199,-0.27815,0.052559,0.41249,0.23013,-0.4606,-0.26324,0.59962,-0.25962,0.10464,-0.023859,0.67724,0.069456,-0.12038 -0.29714,1.2615,-0.32018,1.1728,-0.92637,-0.38852,1.3921,0.59222,-0.58267,-0.62001,-0.4629,0.41156,0.19451,-0.48637,-0.17404,-0.070837,0.080113,0.47756,0.41334,0.52626 -1.7945,1.6768,-0.2695,1.8842,-0.96146,-0.351,2.2943,1.0591,-0.39203,-0.31295,0.6254,-0.091245,0.37435,-0.039458,1.2765,-0.16068,-0.2177,-0.3479,0.23987,0.23871 -0.71729,0.24465,-0.0020906,0.95793,-1.8553,0.33621,2.0426,-0.70806,-0.0054153,-0.731,-0.46603,0.43684,-0.15185,0.48216,-0.21886,0.001029,1.0378,-0.01254,-0.11728,0.34904 -0.73877,1.1697,0.96976,2.1783,-1.9845,-0.56111,2.1276,-0.33861,-0.40317,0.84328,-0.2586,-0.35257,-0.41805,0.18109,-0.41446,0.060916,0.52608,0.42136,0.22074,-0.37973 -1.8917,2.0472,-0.35404,2.0285,-1.2036,-0.024363,1.4943,0.70265,-0.70354,-0.3743,-0.24028,0.14744,0.42645,-0.28838,0.88635,0.27831,0.31266,-0.051783,-0.0071513,0.052066 -1.5897,1.3057,-0.5825,0.934,-0.49445,0.3015,0.97794,1.091,-0.85547,-0.72475,0.052631,-0.60116,1.0335,-0.1757,1.0411,-0.059218,0.28225,0.3472,0.28116,-0.14504 -0.14253,0.52217,0.46498,0.8432,-1.5842,-0.81442,0.96361,-0.26805,-1.291,0.29377,0.0089046,0.22681,-0.42041,0.39406,0.36536,-0.095814,0.032718,0.032379,0.81897,-0.24827 -1.3005,1.4556,1.1967,0.80009,-1.2785,-1.0648,1.7926,-0.069495,-0.65573,0.39474,1.5459,-0.42648,0.8605,0.77752,0.68006,0.52711,0.26145,-0.25176,0.57561,0.01362 -1.1386,0.9761,1.4336,2.1041,-1.8803,-1.7542,2.1903,0.11698,-1.1825,0.53433,0.37062,-0.78782,0.82951,0.62497,-0.12118,0.2896,0.84756,0.20914,0.1471,-0.57754 -0.64223,1.5879,0.18325,1.6613,-1.3649,-0.9459,2.0352,-0.26456,-0.42459,-0.056998,-0.32679,0.53926,-0.60619,0.10413,0.069303,-0.19701,-0.20102,0.7741,0.2233,0.35502 -1.0698,0.68954,1.106,1.9866,-2.5077,-1.9552,2.3237,-0.037147,-0.54941,0.14914,-0.059894,-0.68836,-0.19912,0.94006,-0.08592,0.097204,0.015956,0.28287,0.067617,0.096505 -0.72945,1.6831,-0.21877,1.407,-1.2965,-0.28567,2.1423,1.0196,-0.30189,-0.31257,0.22355,0.40067,0.24885,-0.14688,0.14106,-0.15564,-0.084915,0.29151,0.46312,0.73037 -1.5691,1.5535,-0.17883,0.99665,-2.2964,-0.2193,1.2671,0.64908,-0.67384,-0.90924,0.85913,0.30393,-0.53813,-0.62947,0.80964,-0.31482,0.16082,-0.40733,0.74899,-0.16498 -0.71955,1.0107,1.1406,2.0346,-1.7424,-1.1523,1.5716,-0.65045,-0.76035,0.67402,-0.59651,-0.46178,-0.29927,0.52904,-0.59492,0.2305,0.43827,0.49382,0.36361,-0.54145 -0.23275,0.27972,0.30543,0.65627,-1.8473,-0.98541,1.2473,-0.23495,0.087534,0.1009,0.26518,0.18917,-0.75632,0.0072633,-0.011118,-0.029317,0.35162,-0.099923,0.40567,0.26638 -1.3084,1.2725,0.25948,1.8905,-0.56407,0.35517,1.0244,0.60755,-0.87376,-0.26578,-0.31098,-0.039531,0.24506,-0.56815,0.75486,0.47937,0.30147,0.34421,0.079725,-0.027893 -1.7695,1.073,-0.075117,-0.42227,-2.1446,-0.33712,0.7198,0.52317,-1.3739,0.52277,1.2477,-0.27815,1.5151,0.76927,0.44579,-0.28072,0.52876,0.66927,0.024877,0.63788 -1.6467,1.7511,-0.50901,1.5832,-0.98033,0.071013,1.891,1.3594,-0.60702,-0.49508,0.14989,-0.21803,0.82488,-0.17806,1.2499,-0.37552,0.037905,0.053825,0.51503,0.29711 -0.68768,1.0807,1.0703,1.7825,-1.5773,-1.9475,1.9383,-0.089288,-0.89435,0.55417,0.14732,-0.58274,0.32798,0.5024,-0.1184,0.27698,-0.045809,0.58058,0.53629,-0.41415 0.087185,-0.3205,-0.022091,0.53829,-1.33,-0.17417,1.1416,-0.30292,-1.0181,0.22116,0.62924,0.25837,-0.15197,1.0037,0.18349,-0.10427,0.31582,-0.20034,0.28601,-0.2353 -1.4435,0.8655,1.5629,1.8434,-1.3724,-0.61365,2.1866,-0.12469,-0.60676,0.36712,0.61846,-0.89557,0.11632,1.1279,-0.012799,0.59439,0.44157,-0.011153,-0.15746,-0.065615 -0.2041,0.75853,0.25782,1.2766,-0.98116,-0.62687,1.6358,-0.038745,-0.18956,0.13805,-0.084065,-0.13034,-0.55194,0.028029,-0.30715,-0.44364,-0.0050772,-0.034967,0.25228,-0.24766 -1.126,1.5586,-1.0181,0.74577,-1.0336,-0.42331,1.0515,0.99282,-0.76892,-1.1023,-0.11609,-0.16946,0.44777,0.25454,0.00361,0.085978,-0.35274,0.58512,0.061829,0.13466 -1.1147,1.0364,1.2392,1.6097,-1.185,-1.9344,1.5707,-0.074593,-0.79036,0.45225,0.43273,-0.6669,0.76464,0.62055,-0.13841,0.54809,0.01567,0.41054,0.21824,-0.409 -0.65494,1.1339,1.2906,1.4509,-1.2464,-1.6053,1.8599,0.083026,-1.1626,0.9479,0.28099,-0.36557,0.92251,0.29459,0.26481,0.52991,0.44436,0.81485,0.35967,-0.60391 -1.0216,1.8646,0.3902,2.0904,-2.2298,-0.86369,2.976,0.85169,-0.82934,-0.14292,0.31363,0.074292,0.24473,0.26095,0.64445,-0.078432,0.24894,0.4419,0.71736,0.32441 -0.7868,1.6049,-0.57725,1.1768,-1.0728,-0.10421,1.2991,0.89508,-0.84975,-1.1066,-0.60209,-0.10444,0.58445,-0.048849,-0.13358,0.023166,0.010873,0.72556,0.19966,0.17298 -0.40226,1.0765,0.47984,1.6913,-1.5589,-0.76431,2.123,0.038063,-0.40898,0.74822,-0.38476,0.37854,0.13893,-0.01623,-0.10749,0.1849,0.68217,0.33816,0.6747,0.022826 -0.59823,1.3194,0.29401,1.6578,-1.4608,0.66672,1.134,0.14847,-0.77784,0.12297,-0.7145,0.50145,-0.35748,-0.78563,-0.64347,0.02503,0.39006,0.12834,0.42704,0.34864 -0.29837,1.1816,0.39951,1.7627,-1.4889,-0.96562,2.0632,0.0079772,-0.35136,0.14182,-0.19429,0.22851,-0.65685,0.012996,-0.16447,-0.23695,-0.20091,0.31583,0.55894,0.15345 -1.0953,1.2024,1.2357,1.6661,-1.4934,-1.0673,1.5206,-0.35118,-0.8779,1.3763,-0.11579,0.16607,1.1666,0.72356,0.090629,0.65853,1.2038,0.72219,-0.16481,-0.26549 -0.20661,1.2813,0.31036,1.4509,-1.0822,-0.37624,1.7064,0.3763,-0.94401,0.13369,-0.59798,0.62661,-0.037259,-0.38063,-0.086039,0.032364,0.44632,0.84627,0.52103,0.33836 -0.28321,0.21913,0.99439,1.5425,-1.7227,-1.7029,1.3517,-0.39883,-0.65734,0.36462,-0.19049,-0.4344,-0.13422,0.62558,-0.32499,-0.032326,0.17991,0.23704,0.55737,-0.525 -0.42169,1.0378,0.73391,2.0119,-1.2282,0.26844,1.7552,0.65856,-0.7717,0.64277,-0.037886,0.030925,-0.1396,-0.47838,-0.35093,0.011638,0.35055,0.38308,0.29881,-0.040719 -1.6263,1.5349,1.2432,1.7549,-0.73038,-0.60087,1.7962,1.0664,-1.2713,0.8564,0.28904,0.13705,0.75316,0.30431,0.84583,0.77817,0.57304,0.48323,-0.12292,-0.29794 -0.39948,0.25101,1.1587,1.2983,-1.4321,-0.81558,0.84011,-0.47311,-1.3604,0.1473,-0.49849,-0.51238,1.114,-0.030482,-0.42869,-0.065253,0.85909,0.61989,0.43822,-0.67855 -0.66657,0.97592,0.94337,1.2528,-1.3719,-1.3177,1.7801,0.24887,-0.49318,1.2425,0.62303,0.25603,1.0855,0.54196,0.23069,0.31361,0.53058,0.58993,0.16454,0.14438 -1.6111,1.0759,1.1467,2.2323,-2.5744,-1.4137,2.2612,-0.43766,-0.34944,0.88121,-0.00018794,-0.52912,-0.074611,0.79951,-0.21819,0.56586,0.50209,0.029395,-0.15909,-0.22059 -0.97798,0.43766,1.1483,1.6266,-1.7922,-1.8655,1.3702,-0.11,-0.20898,0.17697,0.38119,-0.6176,0.093092,0.72087,-0.67783,0.14804,0.21216,0.1859,0.24246,-0.27886 -1.7217,1.872,-0.22352,1.6604,-0.94871,0.21673,1.5772,1.4511,-0.95275,-0.37668,-0.0081933,0.40601,1.229,-0.50531,1.2964,0.25959,0.75581,0.66952,-0.0067383,0.27213 -1.2594,2.04,-0.21407,1.8106,-1.3425,-0.22177,1.9299,1.2175,-0.65588,-0.41635,-0.1585,0.57415,0.89057,-0.46424,0.7641,0.10257,0.44285,0.79178,0.11017,0.4507 -2.6756,1.8548,0.052774,2.4689,-1.0395,-0.21206,2.4195,0.91145,-1.6679,0.41377,0.34659,0.56367,1.5484,0.46519,1.1938,-0.040414,0.63803,-0.14061,0.093567,0.35426 -0.75327,0.94233,0.62356,1.7396,-1.962,-1.7022,1.8724,-0.6095,-0.058961,0.47855,0.075035,-0.14463,-0.48065,0.67079,0.11091,-0.12246,0.05119,0.57016,-0.097561,-0.19732 -0.56181,0.8468,-0.42087,0.885,-1.2852,0.23213,1.5052,0.84396,0.1229,-0.6454,0.23307,0.72472,0.01076,0.00026853,-0.17319,0.15396,0.32137,-0.032662,0.34437,0.40303 -0.34794,1.0849,0.30793,1.5254,-2.2325,-0.72597,1.8841,-0.4138,-1.444,-0.096675,0.1825,0.62792,-0.63511,0.077331,0.47775,-0.47314,-0.1374,0.010313,1.0491,0.36766 -2.1481,2.5387,-0.13093,1.1796,-0.92637,-0.53736,1.4991,0.72471,-0.95435,-0.64129,0.53304,1.0078,0.66788,-0.24945,0.86824,0.36746,0.41056,0.54819,-0.20698,0.21906 -1.1754,1.2607,1.4005,1.6426,-1.2365,-1.772,1.6511,-0.071545,-0.71167,0.5305,0.3565,-0.61846,0.55212,0.69797,-0.028103,0.68334,0.14841,0.56538,0.01043,-0.41354 -1.9761,1.6769,-0.72657,1.3203,-0.82442,-0.12705,1.4068,0.95853,-0.84167,-1.0243,0.10844,-0.63939,0.68666,0.025806,1.0932,-0.45159,-0.23272,0.44826,0.07321,-0.25665 -1.1945,1.3433,1.0776,0.69475,-0.53491,-1.0986,1.6044,-0.015949,-1.1003,0.79512,0.34467,0.27907,0.52774,0.75062,0.58633,0.59002,0.68287,1.0216,-0.25699,-0.21301 -0.93664,1.3742,-0.95997,1.2543,-1.5799,-0.35193,1.5694,0.83083,-0.16852,-1.2218,-0.11166,0.18077,-0.02722,0.15529,-0.12866,-0.26472,-0.23313,-0.032551,0.027847,0.52374 -0.62955,1.3518,-0.099707,1.2156,-0.93071,0.10807,0.96721,0.23617,-0.22798,-0.53616,-0.81343,0.097365,0.20283,-0.28747,-0.28875,0.097467,0.20248,0.39782,0.17504,0.2028 -2.7639,1.1279,-0.28892,1.6343,-1.6709,0.41124,2.6769,0.90322,-1.9384,0.97825,-0.062382,0.91534,1.5323,0.89052,0.97811,-0.086388,0.61901,0.56003,0.41121,0.9437 -1.8899,1.6437,0.84476,1.6534,-0.69022,-0.027863,1.0968,0.61572,-1.0543,0.846,0.24659,1.4067,0.66063,0.1427,0.98168,0.55594,1.1229,0.46435,-0.42137,0.056331 -2.2756,1.9334,-1.1626,0.68234,-1.4255,-0.62651,1.0025,1.0424,-1.2758,-1.3203,0.13301,-0.48717,-0.14406,0.59738,0.11935,-0.054192,-0.19434,0.90957,-0.015763,-0.44847 -0.99842,0.52028,0.97025,1.3997,-1.794,-1.5659,1.5115,0.016405,0.19467,0.25537,0.3787,-0.69452,-0.35956,0.77956,-0.37724,0.17531,0.078445,0.08315,-0.31202,-0.11405 -1.7901,1.72,-0.55878,1.3102,-1.0859,-0.24932,1.3037,1.2587,-0.3618,-1.0637,0.36868,-0.5201,0.57507,-0.040473,0.85662,-0.24884,-0.2598,0.09538,-0.048311,-0.035973 -1.3502,1.5667,0.99599,1.9266,-1.761,-1.2866,2.8778,0.8151,-1.0525,0.74465,0.48248,-0.1987,0.82811,0.52148,0.74804,0.53873,0.37312,0.30642,0.38368,0.15983 -0.83089,1.0546,-0.44559,0.61253,-0.56125,0.027463,0.69145,1.0008,-0.48046,-0.54889,-0.021988,-0.26968,0.91368,-0.18808,0.56302,0.055241,0.21054,0.42728,0.0066321,-0.017058 -2.0842,0.79749,0.89126,1.8002,-0.66026,-1.0596,2.2145,0.54887,-0.60224,0.041974,1.1791,-0.29576,0.05619,1.1307,0.31643,0.33888,-0.26459,-1.2974,0.46822,0.073243 -0.17519,1.1858,0.12801,1.8276,-1.3765,-0.29694,2.0729,-0.02371,-0.67756,-0.45768,-0.54795,0.44788,-0.46499,-0.2337,-0.28059,-0.33896,0.23239,0.34243,0.62597,0.39689 -0.59953,1.1447,-0.072645,1.5445,-1.4474,-0.053557,2.1379,0.80746,-0.15032,0.015051,0.26223,0.48723,-0.11355,0.20185,0.10678,-0.12942,0.1611,0.048014,0.53406,0.54934 -0.39288,1.3976,0.23248,1.6771,-1.9196,-0.95788,2.402,0.30808,-0.32921,-0.17549,0.096761,0.45493,-0.4154,-0.015385,-0.14759,-0.32997,0.083607,0.28002,0.52475,0.18857 -0.40604,0.79089,-1.0391,0.91436,-1.337,-0.17654,1.5216,0.42293,-0.87351,-1.4372,0.12424,0.23326,0.18854,0.30573,-0.52391,-0.066178,0.12963,0.27076,0.1536,0.25594 -1.79,1.8267,0.23146,1.9284,-0.8943,-0.28974,1.6429,0.15301,-0.23279,0.21185,0.13965,0.17298,0.028224,0.28192,0.79703,0.33367,-0.006854,-0.462,-0.25472,-0.05615 -2.3672,2.1128,-0.4332,2.3075,-1.6655,-0.30991,2.3115,1.2376,-1.4085,-0.58343,0.43012,0.15193,1.1973,-0.1651,0.91838,0.096203,0.76165,0.7232,0.50868,0.34849 -0.47592,1.1125,0.63803,1.8966,-1.2598,-1.2099,1.657,-0.45573,-0.49634,0.33244,-0.34598,0.25818,-0.28757,0.1821,-0.12753,-0.1581,0.16817,0.42488,0.4872,-0.30249 -0.41449,0.94411,-0.5686,0.64474,-0.84619,-0.044542,0.88813,0.71113,-0.44091,-0.84937,-0.26467,0.0096283,0.47641,0.10439,-0.25065,-0.043064,0.015796,0.32669,0.2105,0.26183 -0.19356,0.64291,-0.57024,1.7049,-1.5201,-0.26331,2.4088,-0.45033,-0.85018,-0.97902,0.34163,0.59418,-0.43406,0.16598,-0.051189,-0.34057,0.34046,0.34023,0.20572,0.73751 -1.0801,0.14912,1.3059,1.2753,-1.4603,-0.83056,0.64743,0.44814,-1.9715,1.3407,0.076992,0.45449,0.79271,0.36292,0.087855,0.50245,1.4923,0.22604,-0.63007,-0.34659 -1.4318,0.99553,-0.43727,0.32198,-0.43907,-0.14263,0.27735,0.52955,-1.3472,0.029038,-0.48099,-0.1938,0.61586,0.13549,0.68255,0.16764,0.85386,0.83318,-0.16818,-0.37444 -1.1831,1.7079,0.6467,1.3286,-0.56441,-0.92212,1.451,0.073289,-0.25574,0.6056,0.55778,0.89579,0.72792,0.3489,0.61387,0.47206,0.021554,0.74535,0.047318,0.18341 -2.218,1.7838,-0.26052,1.9384,-1.3706,0.66812,0.73178,1.1758,-1.8595,-0.55727,-0.30132,0.10015,0.37363,-0.40274,0.49278,0.40126,0.96062,1.1118,-0.31777,-0.38746 -2.6573,1.6121,-0.69323,0.48605,-0.22305,-0.39754,0.87473,0.78608,-1.729,-0.81285,0.14393,-0.51175,1.0159,0.41241,0.88532,-0.22796,0.53235,1.1064,0.0016714,-0.87758 -0.93006,1.0649,0.91354,2.4474,-1.963,-0.64762,2.4283,-0.7106,-1.0377,0.65349,-0.44817,-0.36485,-0.26331,-0.010237,-0.11221,0.33162,0.66339,0.6842,-0.0043089,-0.10163 -0.72932,1.6332,0.16144,1.3043,-0.85968,-0.27555,1.3735,0.85701,-0.35125,-0.34196,-0.029108,0.27219,0.31415,-0.56681,0.25088,0.065421,-0.059548,0.6795,0.12108,0.12229 -0.70168,1.0346,0.93835,1.5195,-0.81301,-1.044,1.2987,0.2194,-0.27548,0.54607,0.2473,-0.26328,-0.095861,0.17628,0.092806,0.39145,-0.17627,0.5736,0.28539,-0.072533 -1.7878,2.1584,0.50116,1.9494,-0.7301,-0.53116,1.6247,0.7831,-0.62354,-0.049865,0.42266,0.3188,0.33465,-0.031307,1.0715,0.40532,-0.15212,0.5278,0.012571,0.1386 -0.77054,0.60168,0.70081,0.93068,-2.399,-1.3866,1.2893,-0.26201,-1.2567,0.25814,0.48663,-0.26149,-0.63353,0.45895,0.25225,-0.29233,0.13192,-0.31809,0.99285,-0.3091 -1.3037,1.4895,-0.71976,0.91863,-0.92978,-0.52725,0.77902,1.4158,-0.71634,-0.85461,0.063879,-0.22665,1.1285,-0.23279,0.4551,0.29689,-0.0043082,0.76581,0.13758,-0.14948 -2.1834,1.1083,1.0623,1.6432,-0.009216,0.24728,0.7936,-0.32613,-1.0488,0.29714,-0.021677,0.22092,0.030556,0.93299,0.47823,0.82546,0.24806,-0.42504,0.252,0.001433 -1.037,1.4545,0.9435,2.1542,-1.7854,-1.6575,2.6664,0.30936,-0.72199,0.57288,0.47675,-0.499,0.13748,0.60665,0.081289,0.2003,0.15246,0.18117,0.19744,-0.35688 -1.8584,2.0527,-0.74361,0.92195,-1.1625,-0.89362,0.7687,0.9006,-0.47102,-1.1231,0.38866,0.11183,0.80587,0.27374,0.2984,0.29562,-0.3199,1.1777,-0.32302,-0.30237 0.25047,0.12756,0.47925,1.3655,-1.174,0.5154,1.7786,-0.48896,-1.3331,-0.793,0.39353,0.61369,-0.080389,-0.049219,0.43477,0.33159,1.2045,0.57384,0.09693,0.3482 -0.61273,0.62453,-0.91539,0.89586,-2.0799,0.12664,2.0339,-0.025429,-1.1915,-0.93925,1.3499,1.2203,0.14007,0.48376,0.038331,-0.27412,0.24045,-0.061354,0.32296,0.53542 -0.7202,1.3897,-0.22656,1.5011,-1.6791,-0.27734,2.1792,0.99063,-0.0086967,-0.15251,0.44062,0.47954,-0.20999,0.14267,0.10757,-0.16523,-0.0713,0.044153,0.55182,0.60084 -0.81954,0.62594,0.98747,0.60724,-0.74632,-0.46805,1.2086,0.13758,-0.55839,-0.0037966,0.01575,-0.32679,-0.037651,0.22974,-0.1916,0.19023,0.0019591,0.3295,0.065853,-0.11394 -0.57817,0.81636,-0.63068,0.38062,-0.84556,0.086129,0.56543,0.96361,-0.58297,-0.58856,-0.034192,-0.35213,0.57475,0.35938,-0.17085,0.093794,0.15492,0.55713,0.19827,0.048196 -0.021811,0.21519,0.62863,1.0068,-1.8993,-1.3111,1.6961,-0.62941,-0.89159,0.012232,-0.2976,-0.65255,-0.17658,0.81436,-0.34217,-0.20719,0.11067,0.19029,0.24077,-0.41023 -0.44934,1.1616,0.51512,1.1956,-0.87438,-0.66106,1.2059,-0.22289,-0.59662,0.5371,-0.64256,0.54077,-0.10149,0.013886,-0.0093868,0.15366,0.53022,0.79208,0.45173,-0.073943 -0.72272,1.0041,-0.71717,0.56887,-2.1228,-0.10878,0.70312,0.33532,-1.2244,-1.2389,0.38365,0.091213,-0.33878,0.52194,-0.30317,-0.15131,-0.07449,0.10606,0.33494,-0.34874 -0.46189,1.3004,-0.35193,1.3023,-1.2199,-0.73486,1.7993,0.052027,-0.22325,-0.28097,-0.21494,0.62848,-0.40371,-0.10453,-0.22894,-0.15654,-0.096818,0.06633,0.29192,0.62104 -1.5901,1.6639,-0.087568,1.1146,-0.99752,-0.15052,0.3997,0.7792,-0.57029,-0.25506,-0.24153,1.0908,0.88346,-0.31991,0.80455,0.16668,0.88673,1.0677,-0.49339,0.19312 -0.64711,1.4923,-0.54446,1.3321,-1.4625,-0.28875,2.0927,0.73913,-0.12098,-0.75408,0.19478,0.44624,-0.039117,0.053645,-0.19461,-0.42679,-0.20155,0.052877,0.27035,0.76113 -0.72782,-0.036046,1.5691,1.7513,-2.4062,-2.0644,1.1355,-0.59982,-0.88692,-0.033811,-0.10977,-0.6823,0.61817,0.61212,-0.52236,-0.27292,0.35546,0.29206,0.4322,-0.62288 -0.39257,0.83856,-0.20736,0.70084,-1.9714,-0.39199,1.7107,0.26622,-1.1001,-1.7198,0.17228,-0.16406,0.092807,0.19621,-0.068488,0.30035,0.36138,0.3532,0.62197,0.67824 0.00037564,0.69625,0.20644,0.94967,-1.675,-0.75107,1.6081,-0.63478,-0.95436,-0.057671,0.085283,0.017681,-0.4052,0.95067,0.20471,-0.15199,0.042783,0.33586,0.53414,0.037554 -0.7543,1.3269,-0.58466,1.3786,-1.414,0.19136,1.2742,-0.02898,-0.53126,-1.0015,-0.76729,-0.033787,0.046797,0.22674,-0.71892,0.034867,0.42204,0.20577,-0.026094,0.15983 -0.11994,0.18329,0.65688,1.3057,-1.4767,-1.3643,1.2798,-0.47977,-0.98344,0.1403,-0.49517,-0.61845,0.089772,0.4278,-0.078863,-0.32122,0.1338,0.1017,0.36992,-0.88339 -1.4321,0.99637,1.6731,2.1007,-0.93451,-0.37957,1.3087,0.61609,-1.303,1.3225,0.54023,0.055819,0.60537,0.35888,0.23077,1.1984,0.90747,0.26276,-0.18809,-0.19685 -1.2022,1.8113,0.94952,1.9815,-1.0959,-1.1844,2.349,0.73127,-0.68161,0.64185,0.56359,-0.11453,0.54719,0.33082,0.50346,0.43444,0.11045,0.20691,0.27253,-0.22181 -1.0189,1.1935,0.16302,1.2504,-1.491,-1.5547,2.4088,0.4446,-0.32489,0.55231,0.86857,-0.35486,0.083937,0.73077,0.092524,-0.027805,0.041206,-0.0584,-0.16983,-0.19833 -0.21934,0.64964,0.45943,1.6462,-1.0128,0.28912,1.647,-0.34842,-0.55598,0.060056,-0.3047,0.10647,-0.57053,-0.27378,-0.49788,-0.28273,0.35906,0.35973,0.50386,0.15359 -2.2256,1.4961,0.32347,2.1937,-1.5473,-1.2391,2.8455,1.0429,-0.50906,0.050079,1.0926,-0.20332,0.23836,0.4978,0.9998,0.19553,-0.0075419,-0.65628,0.33001,0.15425 -1.2371,1.6981,1.317,1.8052,-1.2062,-1.2988,1.5188,-0.10885,-1.0285,0.94488,-0.088559,-0.057656,0.060839,0.35709,0.16229,0.86178,0.40651,1.0086,0.033841,-0.47207 -0.056795,0.75508,0.15485,2.052,-1.9562,-0.3667,2.6184,-0.27547,-1.2801,-0.8238,-0.18418,0.70162,-0.27248,0.018472,0.18767,-0.13905,0.68066,0.63466,0.44519,0.40997 -0.23456,0.54191,-0.70146,0.9766,-1.3792,0.1909,1.5528,0.33433,-0.19866,-0.77462,0.50976,0.82315,0.020334,-0.045255,-0.46897,-0.15302,0.49827,-0.00033416,0.26169,0.51013 -1.9451,1.3771,-0.7706,0.13871,-0.55793,-0.049252,0.41035,0.52723,-1.3754,-0.26414,0.24929,-0.54996,0.41311,0.36811,0.77263,0.17617,0.02333,0.46777,0.082079,-0.52933 -2.5467,1.4802,1.6464,2.2251,-1.2904,-1.4115,2.4338,0.75964,-1.6676,0.32166,0.4654,-0.39566,1.1472,1.134,0.47602,0.69794,0.55239,-0.036579,0.1133,0.020181 -1.2011,0.26209,0.85538,0.35163,-1.3084,-0.96237,1.487,0.42636,-0.34659,-0.28728,0.58633,-0.73181,0.051953,0.50653,-0.12297,0.071976,0.63121,-0.75212,-0.52667,-0.020432 -2.1163,1.3376,-0.50493,1.0836,-0.33726,0.035226,0.86496,0.47419,-1.2992,-0.78333,0.018637,-0.91386,0.6671,0.091463,0.98555,-0.000409,0.18402,0.55457,-0.020682,-0.53702 -0.91054,1.719,0.78542,1.7957,-1.3012,-1.4219,1.8677,-0.0097585,-0.46929,0.74366,-0.051347,0.211,-0.062502,0.37407,0.26693,0.44234,-0.044678,0.82042,0.26485,-0.12344 -0.15172,0.32297,0.7436,1.6461,-1.7201,-1.7258,1.7334,-0.54411,-1.3035,0.26235,-0.36338,-0.42755,0.20749,0.64356,0.043499,-0.05569,0.22519,0.15371,0.56569,-0.6356 -1.8148,0.937,0.87805,1.3874,-0.8102,-0.99149,2.1728,0.94294,-0.75102,0.099829,0.80989,-0.36777,0.22881,1.0321,0.34942,0.33324,0.073038,-1.031,0.13613,-0.24986 -0.59707,-0.021117,0.65064,1.1286,-2.1146,-1.7902,1.4159,-0.29428,-0.050603,0.46244,0.31195,-0.43535,-0.41206,0.74014,-0.29571,0.11105,0.25861,0.052707,-0.11698,-0.51311 -1.5616,2.25,-0.50124,2.0244,-1.7985,-0.17029,2.3812,1.23,-1.2572,-0.51803,-0.053737,0.44493,0.95618,-0.27564,0.66093,0.14077,0.56524,1.096,0.35532,0.6336 -1.0282,2.0582,0.10062,1.9764,-1.3307,-0.91785,1.9119,0.82632,-0.39299,-0.17965,-0.010388,0.63195,0.32445,-0.4222,0.48147,0.1078,-0.045112,0.66622,0.32966,0.44119 -2.2421,1.5115,-1.3877,0.20668,-1.0094,-0.80572,1.0804,1.1506,-1.5238,-0.33844,0.58534,-0.99548,0.5269,0.61295,0.2713,-0.38619,-0.16787,0.78287,0.24931,-0.50259 -0.55054,1.3163,0.50457,1.9543,-1.2208,-0.51586,2.2767,0.1612,-0.55011,0.19711,-0.084852,-0.25912,-0.39032,0.14086,-0.13081,0.019832,0.059528,0.26888,0.37587,-0.092521 -1.2747,1.6818,0.33513,1.5429,-0.90124,-0.59892,2.0261,1.0513,-0.29022,0.20968,0.93437,0.36857,0.63661,-0.21399,0.75765,0.16771,0.21234,-0.036059,0.044789,0.29561 -1.3306,0.36675,-1.045,-0.11516,-0.66767,0.001471,0.89773,0.19186,-1.3905,0.69183,0.68224,-0.21748,0.7897,0.37841,-0.65068,-0.72248,-0.079109,0.71048,0.41374,1.0528 -2.6284,1.5979,-0.62289,-0.092046,-0.39959,-0.31467,0.75466,0.64634,-2.1987,0.30906,0.12528,-0.58378,0.42412,0.16406,0.811,-0.47396,0.64763,1.1102,0.23995,-0.34157 -2.0837,2.0372,-0.35186,1.6374,-0.75597,-0.35597,1.1949,0.87142,-0.73909,-0.73808,0.24079,0.056972,0.54969,-0.10497,1.1964,0.30924,-0.21048,0.72135,0.02565,0.1207 -1.2375,2.0265,0.067813,2.4085,-1.7453,-0.34079,2.7515,0.48266,-0.91461,-0.21629,-0.12889,0.26497,0.010664,0.0093655,0.44001,0.12533,0.19209,0.89487,0.26251,0.5048 -0.26512,0.93064,-0.40734,1.0669,-1.0129,-0.23325,1.4673,0.11543,-0.19784,-0.73659,-0.14125,0.4932,-0.13678,0.0040873,-0.27332,-0.44001,-0.1193,0.054981,0.25129,0.56481 -0.31116,0.71055,1.0505,1.9357,-1.2072,-0.25975,1.9775,0.86739,-0.94097,0.82481,0.56096,-0.1406,0.1024,-0.24649,-0.053513,0.080539,0.41565,0.61136,-0.038829,-0.43512 -1.6417,1.6498,1.4129,1.9736,-0.58935,-0.59945,1.3105,0.18761,-0.84242,0.99279,0.45515,0.13399,-0.010441,0.38241,0.52971,1.021,0.391,0.371,-0.052383,-0.38925 0.0085306,0.47286,-0.42107,0.95439,-1.0309,-0.34153,1.5132,-0.07461,-0.4072,-0.59661,0.015499,0.56748,-0.37382,0.00063005,-0.30954,-0.39777,0.24344,-0.27401,0.29122,0.45444 -2.9628,1.5225,-0.62386,-0.14347,-0.25651,-0.57126,0.7377,0.24222,-2.3901,0.44982,0.53811,-0.52681,0.36531,-0.14765,0.75159,-0.24735,0.27032,0.39974,0.50148,-0.35419 -1.29,0.35015,0.75204,2.0827,-3.1392,-0.88309,3.1967,0.32034,-0.61302,-0.037446,0.1856,-0.13562,0.045099,0.41592,0.71286,0.12064,0.86976,0.1456,0.00033446,-0.21108 -0.15615,0.77153,-0.23172,1.0451,-1.7422,-0.17721,1.4912,-0.12542,-0.78884,-0.36693,0.46304,0.66268,-0.46721,0.31799,-0.16957,-0.53642,-0.030134,-0.17684,0.44806,0.32663 -0.93733,0.30073,0.8382,1.9013,-2.9652,-0.36741,2.7626,-0.53018,-1.6114,0.22669,0.09187,0.38634,1.1546,0.81298,0.068695,0.42334,0.71254,0.42586,0.17407,0.7264 -1.2069,1.1921,0.76017,1.2205,-0.39871,-0.31644,1.2622,-0.035917,-0.37342,0.81517,0.3104,0.37384,0.485,0.57478,0.57251,0.43459,0.54744,0.22843,-0.24728,-0.036047 -0.74518,1.3969,0.020568,1.1304,-2.0235,-0.19398,0.64809,0.85803,-0.87346,-0.086479,0.30073,0.93651,0.3418,-0.7282,0.50291,0.084619,0.38813,0.25767,0.43682,0.27415 -1.7283,2.3647,-0.20026,1.6955,-1.0882,-0.99775,2.1325,0.81813,-0.81605,-0.70661,0.47144,0.99042,1.1811,-0.089806,0.62227,0.0037477,0.25759,0.72182,0.035783,0.28574 -0.74684,1.7596,-0.43768,1.6054,-1.5806,-0.3382,2.1665,1.0895,-0.51612,-0.77909,-0.02157,0.30394,0.12658,-0.28636,-0.061232,-0.35881,0.017555,0.36176,0.40951,0.64075 -0.58964,0.78503,0.12898,1.7082,-1.8028,-0.73393,2.0287,-0.88168,-0.070142,0.52079,-0.555,0.12793,-0.70681,0.47782,-0.24544,-0.098291,0.50226,0.065519,0.22376,0.039818 -2.5206,1.5581,-0.29106,0.63646,-0.70375,-0.14675,0.47748,0.2166,-1.2232,-0.43139,-0.18649,-0.50987,-0.20481,-0.08905,0.8881,-0.22902,0.37936,0.076972,-0.29063,-0.45404 0.00049032,-0.044724,0.25791,1.1294,-1.5837,-0.23851,1.3963,-0.36897,-1.6604,0.60399,0.3426,0.17463,-0.24056,0.84019,0.12187,-0.2793,0.083168,-0.23069,0.088472,-0.089849 -1.0118,1.3301,0.38179,1.9241,-1.391,-1.234,2.0376,0.30865,0.23583,0.24752,1.1846,0.24086,-0.36394,-0.15398,0.10482,-0.10684,-0.21344,-0.20667,0.15886,0.17467 -1.6788,1.2111,0.048059,0.81276,-2.8581,-0.83514,1.9067,0.2834,-0.01286,-1.2158,0.42824,-0.37963,0.017914,-0.21809,0.60142,-0.52386,0.22193,-0.15595,0.089154,0.92398 -1.4464,1.2785,1.8568,2.3605,-1.5296,-1.0962,1.6572,-0.55201,-0.98951,0.92234,0.39043,-0.19391,0.26826,0.56632,-0.047398,0.74544,0.54142,0.9266,0.1643,-0.59194 -2.1723,2.2508,0.34486,2.278,-0.85512,0.047201,1.6855,0.56277,-0.78796,-0.081328,0.020577,0.43763,0.42115,-0.18435,1.1633,0.47641,0.4621,0.41227,0.0086738,0.090317 -0.74877,0.68448,1.2427,1.5591,-1.6346,-1.4995,1.1304,-0.77662,-1.2143,0.37892,-0.67289,-0.76027,0.7274,0.41719,-0.21205,0.28977,0.43544,0.66955,0.36922,-0.72153 -2.0835,2.2522,-0.53707,1.7098,-1.3562,-0.090002,1.9263,1.3765,-1.0337,-0.59378,0.16148,0.39464,1.6857,-0.27299,0.89195,0.22817,0.68774,0.91795,0.11386,0.37424 -0.66215,1.5442,-0.0139,1.569,-1.3936,-0.66958,1.572,-0.30144,-0.59214,0.07918,-0.7455,0.68758,-0.53797,0.0034179,-0.20894,0.040707,0.060773,0.29145,0.27865,0.44664 -0.69217,1.4828,0.31508,1.4544,-1.0243,-1.2705,1.6922,0.7605,-0.20769,0.42666,0.40325,0.52216,0.18906,-0.25971,0.32115,0.15069,-0.34823,0.53881,0.48479,0.29198 0.037574,0.075783,0.058604,0.9095,-0.84035,-0.23801,1.2784,-0.45164,-0.25983,-0.24761,0.071255,0.21266,-0.7542,0.3071,-0.060607,-0.41639,0.25053,-0.065651,0.081965,0.16042 -0.9996,1.4946,-0.31113,1.476,-1.3648,0.24404,0.98395,0.21873,-0.26596,-0.66625,-0.80285,0.036215,-0.19856,-0.17726,-0.3937,0.068582,0.17683,0.070154,-0.029934,0.084006 -1.426,0.50225,-0.48374,0.13154,-0.33878,-0.18026,0.29016,0.9601,-1.2551,0.39786,0.32733,-0.50784,1.0887,0.012882,0.69512,-0.17355,0.69951,0.64555,0.058551,-0.3895 -0.86079,0.42556,1.1642,1.328,-1.7928,-1.4212,0.89059,-0.69702,-0.50096,0.015389,-0.36678,-0.75958,0.63876,0.30766,-0.69941,-0.022931,0.55366,0.33705,0.27412,-0.56386 -0.036172,0.56926,0.55935,1.3682,-1.1887,-1.1963,1.6472,-0.27291,-0.92093,0.3698,-0.38974,-0.28583,-0.30851,0.33491,-0.01511,0.019142,0.021213,0.32252,0.67151,-0.30451 -0.31496,0.87585,1.1103,1.9072,-1.4187,-0.49399,1.4591,0.50179,-1.0029,1.1701,-0.20968,0.24264,-0.18486,-0.35047,-0.24979,0.63629,0.72902,0.68127,0.43447,-0.1407 -0.52442,0.81105,0.33821,2.0563,-1.6432,-1.0972,2.1332,-0.68835,-0.19644,0.42453,-0.08117,-0.36814,-0.36294,-0.024716,-0.15453,-0.30511,0.40501,0.23789,0.46156,-0.42448 -0.27581,1.0418,-0.11956,1.6,-1.4349,-0.75946,1.8871,0.033683,-0.24647,-0.47047,-0.24679,0.58081,-0.55332,-0.224,-0.23803,-0.4819,-0.14829,0.064447,0.52178,0.53242 -0.047942,0.27897,-0.19081,0.99304,-1.3779,-0.7089,1.4775,0.017843,-0.086188,0.22841,0.071456,0.56042,-0.90798,-0.17325,-0.23068,-0.25399,0.35649,-0.044774,0.38853,0.19855 -1.0238,1.0875,0.68245,1.4155,-1.2746,-0.74382,2.206,1.1255,-0.42678,0.65929,0.5446,-0.34222,0.062641,0.57168,0.35881,0.26731,0.079562,-0.19303,0.27649,-0.036493 -0.51977,0.85259,1.2065,1.3533,-1.3508,-1.1479,1.2227,-0.15192,-0.78602,0.69391,-0.39016,-0.74683,0.080958,0.1811,-0.27811,0.45707,0.35436,0.77716,0.22575,-0.57504 -0.53057,0.7898,-0.44058,1.3683,-1.8195,-0.81482,2.1535,0.45092,0.051448,-0.10723,0.30248,0.60564,-0.90756,0.22763,-0.19035,-0.22318,0.031513,-0.2015,0.13097,0.59321 -0.69177,1.6138,0.29417,1.561,-0.86976,-0.66328,1.5957,0.50396,-0.18768,-0.084933,0.092011,0.43014,0.13992,-0.56154,0.19954,-0.043849,-0.23596,0.54478,0.22498,0.12572 -0.54503,0.54688,0.29186,1.5202,-1.7362,-1.1113,2.2578,0.017991,-0.25516,0.33082,0.12153,-0.41129,-0.77254,0.76595,-0.53598,-0.024609,0.12147,-0.15379,0.081079,-0.25898 -0.35683,1.0515,0.25847,1.8464,-1.5864,-0.26793,2.0872,-0.82015,-0.64583,0.18073,-0.73449,0.44981,-0.5257,0.14174,-0.31644,-0.27487,0.76116,0.28291,0.38888,0.019986 -0.47882,0.92331,0.90264,1.1379,-0.86573,-0.5791,0.90957,0.17449,-0.67936,1.0147,-0.26842,0.28274,-0.038493,-0.1189,-0.18698,0.5487,0.6453,0.74914,0.30812,-0.39349 -1.4354,1.8294,-0.38493,1.6744,-0.8937,-0.31354,1.6027,0.9853,-0.55153,-0.94807,0.13072,-0.12918,0.49038,-0.35555,0.83154,0.049975,-0.32952,0.34509,-0.0041805,0.2214 -1.573,2.2045,0.6955,2.3971,-1.4377,-0.97524,2.4308,0.4676,-1.2589,0.62218,-0.065196,0.64788,0.41984,0.12964,0.82169,0.60334,0.53868,0.9981,0.17519,0.33081 -1.0097,1.3162,0.70144,2.0498,-1.4811,-1.0922,1.9364,0.36208,-0.017382,0.36492,0.39576,-0.1455,-0.46795,0.16053,0.29547,-0.06699,-0.34499,0.44371,0.25996,0.15661 -1.0785,1.1561,1.1148,1.7225,-1.0728,-1.2566,1.7519,0.30143,-0.17986,0.5223,0.86823,-0.46599,0.06897,0.51514,-0.024654,0.38084,-0.11671,0.0080334,0.075653,-0.34096 -0.83556,0.89575,-0.89076,0.26021,-0.77518,-0.11964,0.71033,0.71681,-1.0339,-0.6128,0.1441,-0.37315,0.52544,0.86249,-0.16049,-0.050631,-0.091329,0.77321,0.24296,0.097387 -0.7626,1.2315,0.76017,1.6715,-1.1412,-1.3229,1.7593,0.17741,-0.0039485,0.62747,0.78062,-0.11323,-0.14643,0.13905,-0.074204,0.069989,-0.29303,0.12278,0.32538,-0.12534 -1.4451,1.0373,1.9218,2.1466,-1.3344,-0.5628,1.6334,-0.1617,-0.80793,0.99577,0.62842,-0.80746,0.28754,0.48561,-0.30433,0.83075,0.49974,0.20593,-0.13164,-0.47974 -0.94071,1.8976,-0.28875,2.0074,-1.948,-0.72493,2.5324,0.96506,-0.46672,-0.62546,0.1903,0.38408,0.087171,-0.25985,0.17063,-0.32015,-0.063948,0.40679,0.47194,0.42339 -0.92141,1.8203,-0.018935,2.3422,-1.7981,-1.2134,2.604,0.10151,-1.0823,-0.40548,-0.041246,0.9802,0.54643,-0.08649,0.3257,0.17771,0.32737,0.72731,0.58171,0.55914 -1.0631,0.35502,0.62777,1.0108,-1.4274,-1.3786,1.3707,0.33475,0.31157,0.50619,0.80129,-0.44344,-0.29954,0.66371,-0.12239,0.37722,0.10394,-0.21795,-0.50447,-0.24647 -0.65447,1.2589,0.81563,1.5991,-0.94552,-1.0025,1.435,-0.093177,-0.7293,0.72855,-0.46929,-0.10698,-0.084649,0.1859,-0.072726,0.57296,0.26988,0.7699,0.3739,-0.28812 -0.73849,1.0392,0.84087,1.1357,-0.83027,-1.3721,1.1113,-0.48837,-0.76046,0.56412,-0.31682,-0.12459,0.29612,0.53199,-0.023583,0.46049,0.17697,0.83974,0.27154,-0.57108 -0.8199,1.0523,-0.23701,1.0083,-1.0188,-0.22247,1.2132,1.1252,0.21799,-0.082273,0.60014,0.23232,-0.1616,-0.20795,0.54515,-0.20389,-0.30214,-0.23926,0.13123,0.32326 -0.93529,1.317,-0.29215,1.1843,-0.64269,0.33519,0.87786,0.7729,-0.86318,-0.64433,-0.5509,-0.019627,0.52777,-0.34648,0.36001,0.50827,0.33743,0.69657,0.029936,0.11154 -0.87791,1.7356,-0.18733,2.5388,-2.2339,-0.36873,2.5643,0.14361,-1.0245,-0.51997,-0.30134,0.8205,0.58488,-0.26339,0.14287,-0.041747,0.92707,0.72594,0.086246,0.31236 -0.88132,1.4883,0.83083,2.0423,-1.4397,-1.327,2.0494,0.1306,-0.42186,0.486,-0.0073269,-0.33881,-0.20493,0.4183,-0.088281,0.1731,-0.18627,0.50515,0.26524,-0.24948 -1.0225,0.71946,-0.19016,1.1937,-2.9806,-0.75371,1.8387,0.065553,-0.81382,-1.4435,0.3337,0.81401,-0.91269,-0.12439,0.54857,-0.49429,0.84735,-0.0271,0.46781,0.69789 -0.043119,0.041179,-0.043355,1.2015,-1.6575,-0.72739,2.0197,-0.5063,-0.23137,0.043719,0.058492,0.45682,-0.9625,0.51535,-0.14009,-0.30372,0.53581,-0.19868,0.1696,0.073529 -2.2258,1.3917,-0.99066,0.89356,-0.52748,0.040045,1.277,0.80574,-1.2265,-0.87135,0.24712,-0.99834,1.1645,-0.063344,0.90204,-0.41443,0.32954,0.32232,0.26323,-0.45209 -0.9932,0.85109,1.6623,1.6763,-1.0176,-0.72709,0.79931,-0.12921,-1.1787,1.1403,0.51241,-0.12296,-0.15776,-0.13781,-0.28932,0.69046,0.60891,0.52399,0.2654,-0.64031 -0.79614,2.0177,-0.17356,1.746,-1.5142,-0.66794,1.8663,0.84451,-0.39105,-0.60181,-0.23197,0.45014,0.41549,-0.57398,0.081052,-0.2464,-0.047641,0.68225,0.40119,0.32918 -1.067,1.2889,1.571,1.6602,-1.172,-1.3195,1.9762,0.093616,-0.55832,0.6779,0.57179,-0.41688,0.25014,0.52774,0.4088,0.76901,0.063704,0.5292,0.026955,-0.37498 -1.0882,1.6272,0.35206,1.5851,-1.5141,-0.81609,2.9017,0.76934,-0.62214,0.54972,0.78667,-0.17586,0.22414,0.62619,0.47298,-0.23723,0.2112,-0.038166,0.32922,0.39965 -0.34136,-0.27107,0.7513,1.2414,-2.2031,-1.6691,1.4804,-0.51219,-0.79991,-0.097139,-0.27297,-0.80415,-0.16951,0.60573,-0.4534,-0.19361,0.37309,0.017865,0.21727,-0.6321 -2.5154,1.4446,0.3534,2.6865,-1.9423,-1.3011,2.7014,0.76911,-0.20407,-0.098446,1.2198,-0.25377,0.20526,0.73897,0.81909,0.01105,-0.10348,-0.3203,0.42615,0.16264 -0.60235,0.78078,0.76838,0.76131,-0.67921,-0.87193,1.2376,0.44344,-0.31145,0.58048,0.47189,-0.38212,0.33114,0.37891,0.079668,0.45199,0.36386,-0.063118,-0.1222,-0.38478 -1.2937,1.4108,1.4492,1.5105,-1.3421,-1.1412,1.9746,0.77784,-1.4334,1.0889,0.21162,-0.051752,0.88727,0.59288,0.70311,0.80828,1.0866,0.61609,-0.12523,-0.24857 -0.54301,0.82885,1.2899,2.2305,-1.2582,-0.57457,1.431,-0.42808,-1.234,1.0376,-0.13367,-0.22743,0.29661,-0.10896,-0.54794,0.38885,0.73176,0.51382,0.62609,-0.64906 -0.035248,-0.29599,0.25585,0.99653,-2.1959,-0.10538,1.5924,-0.46868,-1.4053,0.090862,1.2373,-0.030633,-0.54551,0.96492,0.65036,0.081914,0.21638,-0.31079,0.20353,-0.35831 -0.082497,0.26284,0.33805,1.2989,-1.4408,-0.93496,1.5938,-0.18722,-0.26675,0.29018,-0.091536,0.037605,-1.0622,0.33788,-0.31545,-0.23375,0.15475,0.040687,0.27374,-0.13618 -2.0285,0.94263,-0.62675,0.4124,-0.29713,0.18544,0.76521,0.76675,-1.2177,-0.30243,-0.14545,-0.59388,1.2698,0.039812,1.0914,-0.0025183,0.67945,0.56619,0.3644,-0.5807 -1.3347,1.7162,0.91696,2.2982,-1.2623,-0.42793,1.904,0.79651,-1.3016,0.96264,0.10397,0.87858,0.47273,-0.21784,0.80087,0.78099,0.85915,0.9033,-0.07403,0.21586 -0.71906,1.6598,-0.20565,1.8176,-1.5894,-1.0589,2.2042,0.19672,-0.25212,-0.31647,-0.186,0.49971,-0.45173,0.12776,-0.0074058,-0.33506,-0.40699,0.28027,0.26821,0.50717 -0.20654,0.33966,1.0548,1.9464,-1.9736,-1.7243,2.0673,-0.41744,-1.1203,0.34316,-0.097989,-0.3675,-0.11268,0.46938,0.036665,-0.26252,0.33633,0.27493,0.38644,-0.7453 -0.21322,0.74497,0.60176,1.4165,-1.0441,-0.68363,1.1151,0.1035,-0.7636,0.88717,-0.67422,0.54269,-0.058673,-0.18224,0.008331,0.29877,0.86378,0.65146,0.45829,-0.037847 -0.9811,1.8723,-0.4726,1.9211,-1.9571,-0.42966,2.3232,0.8602,-0.24452,-0.78703,0.051217,0.31218,-0.16806,-0.027436,0.13953,-0.42421,-0.12939,0.2526,0.29679,0.53026 0.18922,-0.87195,0.30882,0.60485,-1.2146,-0.59635,1.2197,-0.62707,-0.774,0.050671,0.05379,-0.026014,-0.46782,0.99616,0.4374,-0.023653,0.57415,0.061918,-0.14754,-0.16388 -0.37059,-0.45214,0.63239,1.1885,-2.1852,-1.8542,0.90021,-0.64253,-0.92785,-0.33004,-0.42845,-0.63572,0.082251,0.68487,-0.23442,-0.33043,0.11394,-0.11584,0.2812,-0.22233 -0.9335,1.6965,0.67672,2.0479,-1.7045,-1.266,2.7468,0.52398,-0.62355,0.44847,0.35058,-0.069725,0.00060708,0.11926,0.3576,0.16721,-0.16082,0.48698,0.50482,0.16455 -0.72021,1.6714,-0.043422,1.9945,-1.5381,-0.585,2.1434,0.54881,-0.32373,-0.46051,-0.25346,0.26785,-0.4292,-0.22696,-0.053071,-0.29222,-0.30153,0.30799,0.46701,0.49417 -0.23112,1.206,-0.054859,1.1823,-1.0817,-0.30237,1.672,0.5028,-0.27707,0.0522,-0.072415,0.5454,0.11421,-0.38697,-0.16662,-0.15118,0.20902,0.43929,0.59571,0.64501 -0.60061,1.2282,0.1392,0.94969,-0.79594,-0.65905,1.6913,0.68909,-0.15029,0.29857,0.69524,0.17423,-0.024229,-0.080872,0.27431,-0.062901,-0.14638,-0.0093258,0.092371,0.22468 -1.3211,1.7668,1.1036,2.2163,-1.4438,-1.6179,2.3729,0.61847,-0.48833,0.63282,0.81296,0.046139,0.4539,0.36043,0.60298,0.38176,-0.12892,0.18626,0.44833,0.047538 -1.0848,1.7444,-0.91513,1.0297,-1.5135,-0.10877,1.343,0.13532,-0.72413,-1.2453,-0.35103,0.51949,-0.043245,0.50398,-0.34153,0.14178,0.071879,0.56113,-0.21564,0.27989 -1.9024,1.3151,-0.73097,0.53773,-0.69311,0.2905,0.78388,1.1641,-1.2729,-0.41302,-0.064612,-0.45655,1.6395,0.28864,0.95055,-0.039401,0.82952,0.82373,-0.15825,-0.10537 -2.4422,1.598,0.80858,2.7279,-1.8262,-1.1245,2.9471,1.0381,-1.5763,0.48776,0.5739,-0.095329,1.1112,0.8937,0.86736,0.28017,0.4818,0.093044,0.58196,0.29267 -1.6667,2.06,1.1174,2.163,-1.1243,-1.0468,1.9795,0.12917,-1.1036,0.85574,-0.030591,0.44519,0.2907,0.4303,0.47208,0.76477,0.73302,0.57888,0.039181,-0.3129 -0.42466,-0.28423,0.54766,1.1573,-2.2143,-1.7821,1.3935,-0.53169,-0.12416,0.4339,-0.081532,-0.33498,-0.53456,0.69765,-0.24246,-0.00051461,0.41341,0.025804,-0.10198,-0.33966 -0.68153,1.312,0.061591,1.4261,-1.0329,-0.65931,1.4301,0.15113,0.1714,-0.31405,0.088014,0.24076,-0.34119,-0.23928,-0.002976,-0.32532,-0.46073,0.2972,0.10875,0.36941 -0.71044,0.098257,0.60476,0.76017,-1.1992,-1.2723,0.88629,0.047112,0.28459,0.40445,0.68802,-0.43012,-0.19861,0.51718,-0.20835,0.24232,0.15571,0.12291,-0.30984,-0.071653 -1.4375,0.9779,0.48806,1.463,-0.56514,-0.80731,1.7212,0.84979,-0.30949,0.23562,0.93166,-0.21907,0.20846,0.4949,0.67523,0.24894,-0.42341,-0.81518,0.13449,-0.1259 -1.8831,1.0201,-0.58371,0.090374,-0.1889,-0.69451,1.2047,0.89672,-1.6953,0.33395,0.61876,-0.89368,0.8024,-0.1058,0.4491,-0.80272,0.014344,0.60419,0.60043,-0.19556 -0.24894,1.004,0.087618,1.3775,-1.2417,-0.61431,2.0905,-0.077132,-0.67675,-0.11719,-0.23525,0.36638,-0.56167,0.36224,-0.16627,-0.32537,-0.18873,0.32736,0.55494,0.4015 -0.14318,0.35683,0.64504,1.2618,-1.1519,-0.058136,0.86055,-0.20373,-1.1678,0.99949,-0.80522,0.30105,-0.13204,-0.1119,-0.22197,0.2518,0.91425,0.45839,0.42951,-0.057981 -1.7137,1.4033,-0.8866,0.79708,-0.70672,0.24157,0.98897,1.1689,-1.6091,-0.62056,-0.18078,-0.7976,1.2353,0.19772,0.64005,0.19076,0.45313,1.0486,0.14802,-0.21665 -1.6266,1.5504,-0.67767,0.92503,-0.72221,0.11885,0.92028,1.149,-0.87317,-0.80305,-0.07611,-0.64655,1.1128,-0.02722,0.9426,0.10513,0.31853,0.63344,-0.018205,-0.34114 -1.325,1.9253,0.97623,2.1138,-1.1664,-1.5562,2.0937,0.12296,-0.87439,0.6621,0.26939,0.20229,0.16484,0.39439,0.4442,0.50892,-0.17438,1.0056,0.2724,-0.22554 -0.70726,1.1422,-0.67994,1.465,-1.6664,0.37999,2.0318,0.30159,-0.41099,-1.3776,-0.085164,0.55824,0.42193,0.37683,-0.23755,-0.25066,0.54197,0.47513,0.19535,0.34673 -1.8524,1.7462,-0.22215,1.4919,-0.75049,-0.7407,1.4146,0.60416,-0.058553,-0.94123,1.0878,0.41617,0.45333,0.1986,0.80186,-0.04424,-0.48428,-0.13567,-0.31941,0.26399 -1.4171,1.1827,-0.11908,0.24894,-1.9147,0.71833,1.0264,-0.34335,-1.9033,-1.2082,0.27611,-0.12315,0.44992,0.56481,0.14486,0.14831,0.92197,1.0627,0.80587,0.094463 0.037525,0.50132,0.68507,1.5676,-1.3917,-1.1875,1.8488,-0.37837,-0.9872,0.36536,-0.4341,-0.044546,-0.28824,0.41866,-0.00043746,-0.066968,0.2224,0.29447,0.79338,-0.23762 -2.0368,0.41097,1.0582,0.79076,-2.3827,-1.3836,1.9149,0.7469,-0.58179,-0.18089,1.4573,-0.70755,0.32712,1.1666,-0.062481,0.46423,0.36722,-0.7506,0.61209,-0.64373 -0.8531,0.67849,-0.61372,0.78856,-2.6854,0.80921,1.1028,0.17614,-1.0779,-0.83272,1.1399,1.2057,0.31082,0.12598,0.25005,-0.23733,0.48929,-0.19402,0.46679,-0.091809 -1.4841,1.7279,0.0023394,1.9794,-1.3059,-0.57795,2.5071,1.2431,-0.28784,-0.018786,0.78409,-0.10975,0.19893,0.034611,0.83572,-0.1064,-0.22951,-0.35202,0.42831,0.13193 -1.3652,1.754,0.24425,1.8335,-0.99731,-0.98831,2.0611,0.61089,-0.18627,-0.075526,1.2521,-0.22141,-0.11161,0.0051504,0.5292,-0.049415,-0.36165,-0.1321,-0.20333,0.28786 -1.1177,1.7285,0.52309,1.9768,-1.3232,-0.66357,2.5502,0.73319,-0.46247,0.22171,0.4228,-0.26517,-0.22013,0.39957,0.56514,0.12357,-0.16302,0.12648,0.18862,0.13585 -0.53901,1.5459,0.69502,1.4087,-1.5869,-0.6901,1.2141,0.3469,-0.5836,-0.015278,0.4335,0.52221,-0.0061806,-0.57114,0.5464,0.25129,0.1367,0.66996,0.90933,0.12264 -0.75047,1.7719,-0.18326,1.588,-1.3802,-0.62629,2.32,0.65885,-0.34431,-0.31344,0.064531,0.2944,-0.12261,0.08444,0.058182,-0.3218,-0.26898,0.24642,0.20657,0.53911 0.067474,0.85355,0.32144,1.3446,-1.3928,-0.95359,2.0466,-0.25365,-1.121,0.2413,-0.42435,0.2458,0.055473,0.026531,0.22539,-0.19645,0.32404,0.69622,0.78364,0.080565 -0.19166,1.1324,0.45988,1.7648,-1.2981,-0.69587,1.9699,-0.10602,-0.71487,-0.039526,-0.56251,0.37241,-0.57542,-0.15453,-0.12658,-0.16199,0.093107,0.5308,0.61576,0.21607 -0.85517,1.2229,0.29807,1.5373,-1.2053,-1.023,1.8711,0.63844,-0.084263,0.30859,0.50372,-0.38707,-0.38849,0.40573,0.092886,-0.086415,-0.51227,-0.12481,0.029993,-0.079686 -0.93687,1.3428,1.1947,1.6026,-1.1013,-1.1915,1.412,-0.1518,-0.46578,0.76431,-0.063482,-0.35173,0.13462,0.50471,-0.17383,0.52067,0.21602,0.69191,0.082361,-0.57596 -0.62636,-0.069769,0.75362,1.1108,-2.0186,-1.8543,1.1441,-0.16526,-0.035462,0.47809,0.12611,-0.52034,-0.34397,0.58651,-0.34479,0.1361,0.32806,0.18945,-0.060452,-0.35828 -1.4799,0.60556,0.67698,0.96111,-2.0624,-0.99461,2.5363,0.8504,-0.026412,0.082765,0.69735,-0.41071,-0.39747,0.13734,0.41923,0.10219,0.016936,-0.88143,-0.56453,0.2339 -0.26808,0.44973,-0.96279,1.189,-1.8189,0.25495,2.2502,0.016211,-0.90829,-1.2347,0.73302,0.97872,0.66426,0.24394,-0.39125,-0.00853,0.76665,0.3504,0.31478,0.31704 -2.238,1.6994,-0.23883,0.77404,-0.467,-0.010837,0.60699,0.4694,-1.2399,-0.77194,-0.15192,0.12611,0.68213,-0.24613,1.333,0.33576,0.6909,0.21787,-0.35084,-0.28813 -1.4812,1.4702,1.3588,2.4645,-1.5967,-1.6474,2.3768,0.33095,-0.73002,0.44286,0.75397,-0.32883,0.30154,0.52506,0.61614,0.57889,0.0033811,0.48745,0.45221,0.20442 -0.48703,1.2199,0.71287,1.8233,-1.3593,-1.5366,1.9697,-0.02604,-0.6536,0.40059,-0.033872,-0.069659,-0.23649,0.2996,-0.077562,0.10956,-0.19535,0.58252,0.63307,-0.13892 -2.2428,1.3568,-1.1673,0.32883,-0.33061,-0.51317,1.0137,1.033,-1.6913,-0.85288,0.28774,-0.56644,0.91997,0.35008,0.98474,-0.052846,0.20899,0.63363,0.14963,-0.42326 -1.2341,1.5857,-0.67067,0.70436,-1.2246,-0.048193,0.57502,0.81693,-0.86581,-0.45673,-0.63406,0.2209,0.32168,0.038901,-0.0091092,0.70414,0.54658,0.66929,-0.067375,-0.14577 -0.63583,1.2255,-0.66489,0.90127,-1.2542,-0.29252,0.98931,1.1242,-0.72253,-1.04,-0.43433,-0.19088,0.34508,-0.074242,-0.42097,0.20312,0.03284,0.53498,0.31911,-0.16091 -1.0005,1.7853,0.62884,2.0494,-1.8151,-0.51597,1.7244,-0.29797,-1.0687,0.32537,-0.52589,0.62744,-0.83722,-0.27407,0.073601,0.34812,0.24243,0.58638,0.58933,0.54399 -0.84289,0.3665,-0.53847,0.6312,-2.5223,-0.38144,1.8826,0.61291,-0.27834,-1.0546,0.27321,0.21419,-0.5121,0.088853,-0.20186,-0.083759,0.88731,-0.34568,0.16388,0.91653 -1.3684,1.4657,0.33555,1.9642,-1.5867,-1.576,2.3873,0.21623,0.1122,0.43817,0.95771,0.23043,-0.013425,0.50923,0.41751,0.27642,-0.0056034,-0.33003,-0.075912,-0.083008 -0.61425,0.66104,-0.51869,1.6706,-2.3004,-1.3867,2.2944,0.017491,-0.037601,-0.041886,0.4983,0.45861,-0.89097,-0.28315,-0.20437,-0.15707,0.47583,0.16913,0.07075,0.22495 -0.68707,1.5566,0.11456,1.811,-1.6414,-0.40426,1.7407,-0.39627,-0.22301,0.026844,-0.64081,0.56949,-0.89489,0.045162,-0.31017,-0.17562,0.19689,0.19063,0.08752,0.37178 -0.84646,0.88683,0.29969,1.007,-1.2068,-1.3416,1.64,0.10698,-0.010282,0.67021,0.56698,-0.13264,-0.31282,0.68213,0.036336,0.42915,0.016533,-0.033203,-0.38384,-0.24417 -1.0334,1.9744,-0.18787,1.8656,-1.4073,-0.94475,1.9642,0.76542,-0.15204,-0.27835,-0.13685,0.49635,0.21086,-0.34268,0.26202,0.022047,-0.17938,0.19195,0.34954,0.50644 -1.8733,0.60116,-0.33355,-0.24642,0.53083,-0.95952,1.2,-0.049053,-1.9841,0.0091472,0.18864,0.69336,0.89164,-0.36711,-0.1923,-0.88479,0.30668,0.87305,0.11844,0.30989 -1.9534,1.7724,0.55626,2.1361,-0.69049,-0.025552,1.5356,1,-1.0685,0.28641,0.16623,0.66984,0.724,-0.081416,1.3549,0.73538,0.55442,0.51854,0.13424,0.021891 -0.72789,0.52418,0.57709,1.71,-1.763,-1.627,1.6478,-0.41002,0.014774,0.3632,0.069914,-0.41238,-0.58414,0.74056,-0.26119,-0.14049,-0.14282,0.32618,0.086719,-0.080515 -0.50408,0.63409,0.637,1.7644,-1.5615,-1.2171,1.9083,-1.2031,-1.3256,0.39735,-0.83292,-0.2248,-0.31334,0.89261,-0.0061399,0.057271,0.45102,0.21516,0.38626,-0.35391 -0.34538,1.173,0.81678,2.0637,-1.8324,-1.3573,2.4334,0.11694,-1.1851,0.43331,-0.19602,0.0093438,-0.1068,0.30807,0.10153,-0.016466,0.19945,0.71536,0.59739,-0.13814 -1.3651,1.8443,0.19371,2.1125,-0.97901,0.10126,1.477,0.31105,-0.64564,-0.10612,-0.43834,0.20106,-0.24751,-0.29051,0.40592,0.17971,-0.041814,0.66983,0.13199,0.2294 -2.5867,1.2502,1.8373,1.6902,-0.67803,-0.65796,1.2994,-0.022971,-1.8604,0.31606,0.14304,-0.33124,0.31988,1.1351,0.22176,1.3389,0.80896,-0.054764,-0.10713,0.28409 -1.1576,2.052,-0.012781,1.8606,-1.1016,-0.68794,1.7948,1.1262,-0.43213,-0.47672,0.25486,0.36054,0.69032,-0.61062,0.4625,0.090505,-0.079209,0.50866,0.33462,0.42885 -0.88788,0.90001,1.1253,1.5727,-1.6578,-2.0048,1.9971,0.071345,-0.64662,0.60928,0.67145,-0.83215,0.35897,0.60841,-0.15143,0.26831,-0.088697,0.17216,0.34654,-0.44124 -0.83788,1.3163,0.23729,1.1319,-0.64331,-0.49591,1.5018,0.76162,-0.0635,0.050932,0.51446,-0.083403,0.08527,0.0022272,0.51703,-0.12796,-0.42375,-0.19778,0.029061,0.077207 -0.18455,0.71777,-0.02951,1.4657,-2.6237,-0.2993,2.4177,-0.63515,-1.214,-1.0709,0.52238,0.43276,-0.23858,0.53768,0.52359,-0.46808,0.50134,0.26224,0.49038,0.70812 -0.4742,0.39506,0.87545,1.3022,-2.0113,-1.7664,1.493,-0.22677,-0.7005,0.17546,-0.053938,-0.95555,0.099802,0.53249,-0.45549,-0.28674,0.068177,0.20883,0.14313,-0.57354 0.064122,0.67159,0.24254,1.4766,-1.5847,-1.2708,2.1297,-0.14679,-0.83567,0.19168,-0.098402,0.18773,-0.56018,0.31002,-0.098677,-0.3068,0.12935,0.13595,0.58663,0.0071313 -0.91696,1.8132,-0.092578,1.4443,-1.1281,-0.18976,1.2696,0.20509,-0.41526,-0.10349,-0.87921,0.71005,0.08624,-0.27447,-0.019693,0.31326,0.24821,0.58824,0.14063,0.47086 -1.3634,1.1143,0.0321,1.2042,-0.37731,-0.4205,1.4272,0.41801,-0.14434,-0.42505,0.6652,0.085592,0.065008,0.33753,0.87422,-0.18797,-0.49324,-0.63735,-0.12,0.15778 -0.83811,1.7379,0.091711,1.7917,-1.3075,0.50984,1.4014,0.34052,-0.96896,-0.098292,-0.96205,0.54442,-0.027159,-0.583,-0.24309,0.21201,0.752,0.41497,0.243,0.40163 -1.1056,1.5028,1.0508,1.8103,-1.4044,-1.641,2.2899,0.36742,-0.54362,0.65275,0.67446,-0.58987,0.19867,0.50036,0.17352,0.42973,-0.24271,0.30686,0.22128,-0.13515 -0.4308,1.1917,-0.3023,1.2756,-1.364,-0.73277,1.8314,0.070267,-0.046011,-0.53379,-0.080287,0.41223,-0.41412,-0.15243,-0.32903,-0.44431,-0.17025,0.17758,0.18609,0.50073 -0.45508,-0.054618,0.40548,0.83845,-1.514,-0.28056,1.8808,-0.15,-0.37792,-0.75771,-0.10661,0.025083,-0.64126,0.81831,0.0072297,0.060467,0.18053,-0.11743,-0.4431,0.43387 -1.4593,0.97021,0.12795,1.2825,-0.38899,-0.48291,1.3169,0.27847,-0.020726,-0.22361,1.0349,0.1166,0.18544,0.75532,0.67851,0.022406,-0.58927,-0.71729,0.029698,0.36983 -0.11984,0.014047,0.68792,1.3981,-1.4605,-1.0147,1.4587,-0.58194,-0.57108,0.11955,-0.27249,-0.58748,-0.84917,0.69835,-0.27545,-0.24413,0.15384,0.23716,0.29561,-0.2987 -0.91124,1.1027,0.46628,1.3138,-1.3649,-0.5849,1.9831,1.2042,-0.21275,0.69849,0.62018,0.1987,0.19829,0.34738,0.42146,0.058381,0.26819,-0.060468,0.17705,0.033367 -0.9626,0.85865,-0.14754,0.76544,-2.2398,0.67325,2.0728,0.02847,-1.8458,-0.84538,0.4147,1.2196,1.077,0.77245,0.33027,-0.14571,0.43801,0.75705,1.1886,0.59639 -0.97187,1.684,-0.63532,1.2067,-1.2659,0.0017311,1.2249,1.3335,-0.85586,-1.0391,-0.48668,-0.18791,0.72117,-0.17008,-0.010009,0.26661,0.19546,0.81765,0.23554,0.13037 -1.063,1.3214,-0.50941,1.9447,-1.9363,-0.79314,2.0005,0.32525,0.23452,-0.76314,-0.055264,0.43486,-0.64219,0.062825,0.13524,-0.3932,-0.30541,0.14095,-0.023854,0.74249 -1.1986,1.9515,0.51499,1.68,-0.71457,-0.80962,1.5498,0.20446,-0.42082,0.38451,0.0070786,0.33108,0.34385,-0.023424,0.46162,0.28398,-0.025957,0.61964,-0.0073551,-0.13877 -1.99,1.3429,-0.72909,1.4915,-0.71428,-0.11556,1.7401,0.78587,-0.64528,-0.84673,0.26884,-0.56283,0.58838,-0.076303,1.287,-0.61136,-0.19967,-0.33436,0.38098,-0.089307 -1.5168,1.0405,-1.0057,0.71668,-1.22,0.52903,0.60845,0.82605,-0.80888,-0.13959,-0.19802,0.11172,1.4711,0.53447,0.69752,-0.027524,0.73169,0.5554,-0.47139,0.62694 -0.63605,0.81527,1.4671,1.7622,-1.3904,-1.0974,1.6129,0.28753,-1.0864,0.61576,-0.31991,-0.79553,0.25362,0.13658,-0.28755,0.6159,0.75475,0.65939,0.24247,-0.58858 -0.40172,1.3344,0.36946,2.314,-2.0493,-1.0729,2.8755,0.14017,-1.1945,0.026869,-0.10474,0.40808,-0.015401,0.13256,0.3367,-0.047017,0.19133,0.64261,0.73278,0.42816 -1.393,1.657,1.0041,2.0484,-0.89144,-0.73899,1.8863,0.98781,-0.67777,0.54863,0.40975,-0.043947,0.33102,0.10718,0.84958,0.58947,-0.0064752,0.41835,0.12526,-0.19707 -1.1617,1.4288,0.25751,1.699,-0.85325,-0.63894,1.5385,0.52747,0.033659,-0.12116,0.51832,-0.15509,-0.15579,0.10835,0.63733,-0.067389,-0.59265,-0.086642,-0.078224,0.066397 -0.89663,1.6857,-0.002503,1.3445,-0.85071,-0.40153,1.4598,0.83653,-0.078324,-0.32464,0.23422,0.15007,0.32823,-0.41749,0.48513,-0.039151,-0.28614,0.28198,0.091362,0.27225 -0.037528,1.0914,0.19987,1.6542,-1.394,-0.55449,2.0067,0.043936,-0.74701,-0.32626,-0.50891,0.72632,-0.39778,-0.23827,0.004186,-0.12761,0.33656,0.51649,0.65556,0.31438 -0.056098,0.1672,0.18292,0.92495,-1.2916,-0.63133,1.6197,-0.10168,-0.28213,0.44783,0.21966,0.024915,-0.51114,0.7194,-0.5258,0.033428,0.38854,-0.03421,0.28095,-0.11821 -1.3076,1.6732,-0.52578,0.94563,-0.94669,0.049589,0.77302,0.4484,-0.46863,-0.57025,-0.57701,-0.019753,0.24963,0.19273,0.36381,0.21008,0.19094,0.33187,-0.23295,0.030231 -0.74546,1.3706,0.3708,1.9024,-1.3535,-0.1472,1.865,0.14963,-0.20043,0.50959,-0.26,0.085248,-0.36035,-0.30621,-0.24302,0.16675,0.37645,0.09322,0.30888,0.048066 -1.0089,1.4705,-1.016,1.326,-1.3272,-0.23035,1.4384,0.62872,-0.97073,-1.4928,-0.50047,-0.35983,0.32238,0.15782,-0.33729,0.13922,-0.070898,0.64838,0.10026,0.05721 -1.2394,-0.63959,1.2505,2.856,-3.2365,-0.86687,1.2223,-1.4705,-1.5013,-0.27439,-0.24528,0.14921,0.64717,-0.26376,0.31542,0.21552,0.074763,0.24287,0.284,0.32673 -1.1226,-1.0143,2.0096,1.9915,-1.7927,-0.67759,0.19332,-0.63289,-1.1246,0.084954,0.99881,0.35161,0.62199,-0.016225,-0.11747,-0.50385,0.24832,0.30664,0.25754,-0.14485 -1.255,-0.45968,1.8032,1.3394,-1.3018,-0.46782,-0.047878,-0.25586,-1.6032,0.13585,0.46076,0.18877,0.25808,-0.19736,-0.47243,0.07767,-0.073147,-0.036084,0.41738,-0.54131 -2.4555,-0.11414,-1.1482,1.424,-2.9411,-0.63426,0.89763,-0.65378,-1.9232,-0.55713,0.58655,0.79031,0.69807,-0.044195,0.58053,0.67253,-0.38388,0.12042,-0.18384,-0.61682 -1.576,-0.50638,1.3096,0.07055,-2.5762,0.48247,1.9678,-0.75576,0.34125,0.013761,0.28333,0.50374,0.81178,0.19383,-0.16565,0.89224,0.17249,-0.2669,-0.23436,-0.011694 -1.1038,-1.5696,1.2903,2.7218,-2.2838,-0.66068,1.1184,-0.04645,-1.065,-0.71907,0.71832,1.1112,-0.4011,-0.046462,0.079152,-0.21891,0.29134,-0.29949,0.46133,0.027033 -1.0785,-0.69281,-0.82146,1.1658,-2.6429,-0.1832,0.68839,-0.64272,-0.64684,-0.81561,-0.40919,0.28746,0.32891,0.033808,0.4209,0.90474,0.38789,-0.033229,-0.75377,0.25823 -2.131,-0.46527,-0.40322,2.6154,-3.2117,-0.058468,0.88308,0.14196,-1.645,-1.1358,0.065103,-0.38407,0.4608,-0.3943,0.088147,0.095481,0.14277,-0.45992,-0.36918,-0.16807 -2.6245,0.044621,0.62375,1.8015,-2.8516,-0.86752,1.0016,-1.1906,0.0059436,-0.66349,1.3667,0.40569,0.52665,0.41756,0.81805,0.78061,-0.01333,-0.22923,-0.12493,0.90293 -2.4396,0.38997,-0.65231,1.6221,-3.4952,-0.10882,1.1914,-1.1477,-1.6082,0.13756,-0.12816,-0.59983,0.38532,0.38074,0.55102,0.071454,-0.13641,0.95957,0.089816,-0.55115 -0.67048,-0.10041,0.89478,1.0422,-1.9813,-0.61896,0.70885,-1.2546,-0.21675,0.45717,0.48804,-0.23559,0.58197,0.16936,0.15314,-0.24989,0.012312,-0.23759,-0.13938,-0.29348 -0.96495,-1.0966,0.41461,1.8463,-2.9944,0.21566,1.3216,-0.32038,-1.2713,-1.5784,-0.11477,-0.11426,0.3896,-0.15355,0.9521,0.22243,0.10747,0.99658,0.076559,-0.18885 -1.3812,-0.084948,1.8702,0.62727,-1.9051,0.12654,0.21321,-0.010921,-1.7121,-0.35008,0.51763,-0.67542,-0.12592,-0.53096,-0.25638,0.49075,0.22171,0.048305,0.32752,0.51771 -1.2541,-0.97037,-0.80085,0.60921,-1.8841,-0.096623,0.70801,0.36239,-1.3065,0.38624,0.2955,0.12871,0.69323,-0.18355,0.35516,0.83816,0.17392,0.45827,0.49734,-0.041335 -2.0077,0.62118,0.60027,1.6637,-2.498,-0.35778,0.92393,-1.3355,-2.3409,-0.54876,-0.1532,0.51456,1.2802,-0.87148,0.68458,-0.039076,0.55554,0.16404,-0.72656,-0.36993 -2.105,-1.0044,1.8309,3.1812,-3.1024,-0.80989,0.7275,-0.32443,-0.40515,-0.99701,0.61681,0.93916,1.0179,-0.29952,-0.10204,-0.4377,0.31244,0.35381,0.44937,0.050523 -0.84032,-0.80308,1.0203,2.4638,-2.2506,-0.055027,0.52121,-0.12207,-1.1793,-0.93324,0.018397,0.40891,0.19216,-0.042787,0.1353,0.17844,-0.16767,-0.062942,0.3868,0.6797 -1.2587,-0.49488,-0.42236,1.3366,-1.9182,-0.30891,0.18321,-0.53973,-0.96566,-0.75657,0.36142,-0.085085,0.42203,0.25698,-0.22169,0.65737,0.2975,-0.68592,-0.62588,0.24236 -1.4126,0.51811,-0.16902,2.5083,-3.0629,-0.80986,1.9727,-1.1798,-0.82475,-0.35789,0.066798,0.92134,0.56998,0.37604,0.31395,0.68105,0.48224,-0.28066,-0.61458,-0.12213 -1.976,-1.0595,-0.572,1.5807,-3.5031,0.83019,1.3478,0.06321,-1.1887,-0.82798,-0.43999,0.12334,0.21592,0.042693,0.71851,0.26996,0.019882,-0.087441,-0.14049,-0.31737 -0.92481,-0.4429,-0.55539,1.1005,-2.4455,-0.35067,1.4144,-0.34604,-0.48701,-0.44341,0.1916,-0.23103,0.049929,0.43282,0.27971,1.2315,1.1386,-0.067522,-0.53823,0.31981 -0.6356,-0.27315,-0.50016,0.15026,-1.9292,-0.24758,0.83261,-0.041897,-0.2473,0.15775,0.16842,0.15497,0.67475,0.172,0.1907,0.50716,0.50252,0.88735,0.43943,-0.4939 -1.2454,-0.32077,1.1232,2.4147,-2.7671,-0.9258,0.85561,-0.96066,-0.037712,-0.43463,0.37008,0.51224,0.78004,-0.31148,0.028208,-0.39477,0.31514,-0.18317,0.19606,0.16102 -1.3874,-0.75252,1.1067,2.2092,-2.7625,-1.0435,0.93036,-0.86554,-0.15446,-0.10551,0.78047,0.6469,0.083905,-0.37712,0.28051,-1.1485,0.15414,0.20376,0.20808,-0.15978 -1.0306,-0.70123,-0.74733,1.4532,-2.7387,0.45743,1.4761,-0.6174,-0.91417,-0.97626,0.18598,-0.30102,0.13564,0.69037,0.14978,0.5296,0.62816,0.54956,-0.24079,-0.5422 -1.1432,-0.55833,-0.84504,1.3603,-2.6325,0.52833,1.5685,-0.91274,-1.5195,-1.2462,0.26464,-0.33293,0.37388,0.76094,0.41252,0.70572,0.22832,0.46291,-0.36709,-0.22172 -1.8058,-0.66896,0.28244,2.0938,-2.7792,-0.95368,0.2453,-1.4094,-0.34685,-0.34479,0.20368,1.0371,0.75575,-0.13849,0.51352,-0.0051839,0.37674,-0.66876,0.025655,0.98062 -3.8326,-1.2326,-0.79324,0.94282,-2.4409,-1.0228,0.081214,-0.12034,-1.1567,1.09,1.5438,1.6531,-0.29052,-0.03597,0.15773,-0.33873,0.47462,0.81602,-0.19464,0.11911 -0.55387,-0.62611,0.79072,1.7656,-1.9479,-0.40789,0.76032,-0.45726,-1.0726,-0.629,0.57895,0.51375,0.49406,-1.1976,0.52568,-0.79778,0.36817,-0.1756,-0.24249,0.093341 -1.1203,-0.43679,-0.21398,1.2686,-2.851,-0.64707,0.56547,-1.2276,-0.11896,-0.45979,-0.42709,0.48634,0.54624,0.085747,0.55766,0.61794,0.4403,0.090484,-0.4232,-0.046704 -0.64568,-0.93454,-0.36683,1.0149,-1.9306,0.48622,1.0231,0.14741,-0.76782,-0.89741,-0.083255,0.096402,0.3686,0.36188,0.66186,0.48855,0.40635,0.52011,-0.052947,-0.53167 -0.86326,-1.1402,-0.13138,1.0775,-2.3136,0.68242,1.4358,-0.36822,-0.77811,-1.0464,0.27993,0.51961,0.41332,0.20766,1.093,1.1884,0.21732,0.25492,-0.20576,-0.13503 -0.51004,-0.4154,-0.25032,1.4407,-2.696,0.2084,2.1499,-1.1491,-0.81055,-0.36112,-0.13051,0.76356,0.27754,0.35665,0.19909,0.41601,0.95124,0.1636,-0.16118,-0.032963 -0.69169,-0.88581,0.58446,2.2574,-2.7007,-0.48848,1.3201,-0.44938,-0.53778,-0.99625,0.17219,0.24624,0.40398,-0.14029,0.59653,0.058959,0.66839,0.87648,0.087995,0.033473 -2.1634,-0.06293,0.14465,2.8017,-3.8977,-0.65013,1.7282,-1.2943,-1.9306,-0.86147,0.07796,0.56883,0.81498,0.23767,0.55288,1.2825,0.5026,0.555,-0.13713,0.13992 -1.8983,-0.84232,2.2222,2.7456,-3.2333,-0.95812,1.3715,-0.58221,-0.8796,-0.27383,0.95543,0.67857,0.39279,-0.5789,0.17363,-0.88171,0.63079,0.047259,0.039688,-0.30376 -1.6409,-1.523,2.2655,1.535,-1.9856,-0.72808,0.9536,-0.5156,-1.2687,0.045373,1.4284,0.65686,-0.075733,-0.09789,1.0323,-0.38314,0.19662,0.64913,-0.38908,-0.12798 -0.92756,-0.52018,0.7797,2.1037,-2.3563,-0.67113,0.65877,-0.62015,-0.33886,-1.0011,-0.065214,0.26915,0.56379,0.0029871,-0.020402,-0.61697,0.28969,0.09405,0.48985,0.44064 -0.47384,-0.52057,1.2316,0.99549,-1.1411,-0.41404,0.14276,-0.34393,-0.91234,0.075216,0.72978,0.28496,0.34279,0.087983,-0.084188,-0.32314,-0.075529,0.2401,0.23747,-0.25668 -2.2068,0.60885,-0.55314,1.2448,-2.9395,-1.3604,0.97799,-0.66039,-2.0207,0.3007,0.6277,-0.38223,0.71929,-0.30546,0.024625,-0.23776,-1.081,0.34318,-0.44926,0.44164 -1.5574,-0.59628,-0.94177,0.38343,-2.0382,-0.11651,0.35225,-0.071634,-0.94012,0.63891,0.063911,0.32745,-0.60928,-0.098415,-0.017895,0.42943,-0.11753,0.0028861,-0.59532,0.32569 -1.3947,-1.1288,2.0357,1.8374,-2.1727,-0.52469,0.46276,0.11561,-0.74346,-0.53425,0.341,0.74644,0.48502,0.074511,-0.61723,-0.32171,-0.41741,0.51596,-0.11726,0.25873 -1.7003,0.54906,1.0805,2.4924,-2.2953,-0.38779,0.72803,-1.0609,-0.45503,-0.38058,0.68827,0.11714,0.54778,0.16578,0.16054,0.41817,-0.32836,-0.74956,0.34339,0.30949 -1.3175,-0.26464,0.37209,1.2047,-2.3586,-0.66576,0.50951,-1.0347,0.35684,-0.11659,0.60931,0.17567,0.8871,-0.43073,0.67628,0.21952,0.48556,0.04909,-0.46123,0.23412 -1.343,-0.25859,0.31305,2.0445,-2.9687,-0.73252,1.3111,-1.3656,-0.44025,-0.32406,-0.047869,0.39364,0.47857,-0.23518,0.698,0.22664,-0.164,0.10544,-0.39776,0.33468 -1.9071,-0.33105,-0.020786,1.7017,-2.7722,-0.94262,0.90479,-0.29525,0.34794,-0.45907,0.39649,-0.54561,0.89649,0.19529,0.56666,0.54437,0.80919,0.58742,-0.33062,-0.17866 -1.3243,-0.89397,-0.0037107,1.9209,-3.1039,-0.8267,1.1662,-0.35929,-0.16121,-0.65426,-0.29701,-0.34314,0.62729,0.57074,0.5096,0.046964,0.84758,0.38032,0.31479,-0.07171 -1.7109,1.1468,0.31906,1.899,-2.897,0.23967,1.5682,-0.9926,-0.96379,-0.57101,-0.5653,0.40912,-0.67141,-0.55166,0.23095,0.5384,0.82106,1.4533,0.48408,-0.037432 -1.041,-0.062702,1.5934,2.6306,-3.0326,-0.19023,1.4552,-0.58701,-1.4252,-0.056674,0.21229,0.41791,0.33743,0.063737,0.6504,0.39528,0.00038542,0.32071,-0.032107,-0.17164 -1.3432,-0.8608,-0.89527,0.2906,-2.7423,-0.10359,0.72027,-0.10514,-0.59167,0.3507,-0.0020113,0.12201,1.0822,0.23926,0.46752,0.3845,0.36664,1.0089,0.090201,-0.10467 -1.6644,-0.53912,1.964,2.8408,-2.4337,-1.1152,0.49198,-0.62144,-0.91839,-0.033732,1.2293,0.48411,0.38027,-0.74835,0.27037,-0.63234,0.26226,0.30015,0.53023,-0.044781 -1.3305,0.78356,1.7736,0.50956,-0.95867,-0.053856,1.1493,-0.32912,-1.3714,0.23006,0.15971,0.3808,-0.0047441,0.0099764,0.69537,1.2315,0.39492,0.43037,0.53544,0.21703 -1.2396,-0.75824,2.3571,1.3803,-2.0013,-0.79427,0.70661,-0.29421,-0.58197,-0.14627,1.0765,-0.026929,0.6172,0.1259,-0.18911,-0.18451,-0.07652,0.96174,0.25876,0.47232 -2.0646,-0.46777,-1.2475,0.36375,-3.227,-0.4581,0.96051,-0.16603,-1.1554,0.54301,1.3588,0.20834,-0.57521,-0.27712,0.16927,-0.20486,0.019036,0.35386,-0.082239,-0.21266 -1.612,-0.40435,0.6942,1.0341,-3.4521,0.24863,1.3241,-0.38996,0.14397,-0.68409,-0.04541,0.21931,0.34337,-0.17732,0.97311,0.57279,0.24452,0.33354,0.046069,0.30064 -0.67277,-1.3501,1.8705,0.81632,-1.6162,-0.30257,0.82076,-0.3255,-0.98282,-0.40726,1.223,-0.080572,0.18752,0.68995,0.30049,0.19763,0.32426,0.81836,0.20956,0.70942 -1.5275,-0.30715,-0.63835,1.8414,-3.2933,-1.3131,1.4431,-0.58405,-1.3939,-0.35847,0.48783,-1.1141,0.62455,0.47476,-0.18084,0.32755,0.64798,0.45148,-0.058342,0.047407 -0.35453,0.59994,1.0369,1.4477,-1.2993,-0.078342,1.1254,-0.70692,-0.13751,0.80119,0.36435,0.49966,0.26653,0.25707,-0.34644,0.22981,0.083993,0.59768,0.19407,-0.096403 -0.063191,-1.1142,1.1456,1.5006,-1.7975,-0.37533,1.1696,-0.39847,-1.843,0.01181,-0.38135,0.14823,0.64695,-0.15352,0.53737,0.29326,-0.003374,0.40497,0.55036,0.30968 -1.295,0.11922,-1.2387,0.41943,-1.9979,-0.084771,1.1798,-0.13522,-1.521,0.085701,0.61007,0.86041,-0.34969,0.51585,-0.58359,0.22913,0.22696,0.21378,-0.075799,0.44009 -1.1204,-0.78385,1.5916,2.2702,-3.1224,-1.0903,1.3071,-0.70101,-0.68897,0.58829,0.35655,-0.38667,0.38751,-0.21766,0.12948,-0.24944,0.11962,0.52298,-0.091129,-0.44508 -1.2361,-0.81661,-1.0058,0.19763,-2.828,0.042893,1.6672,0.0067961,-0.88842,0.28426,0.36326,0.81236,0.7068,0.3374,0.27573,0.63517,0.82339,1.041,0.64684,-0.10741 -0.88344,0.79792,0.52638,1.1761,-1.7806,-0.28836,1.1818,-1.1309,-0.21647,0.15712,0.51587,-0.39795,-0.57542,0.60174,0.23255,0.26434,0.17471,-0.20812,-0.17709,0.44096 -1.6768,-0.15341,1.1464,2.2843,-2.9102,-0.097673,1.7403,-1.1124,-0.02864,-0.24915,0.6438,0.068554,0.80083,0.42499,0.39716,0.27094,0.27521,0.28153,-0.57159,0.16934 -0.98224,0.1214,-0.10752,2.1179,-2.7048,0.11614,1.5461,-1.0961,-1.5792,-0.67328,-0.31821,0.12169,0.20593,-0.12508,0.64036,0.38953,0.85787,0.56463,-0.43924,-0.83249 -0.8447,-0.835,0.96947,1.6212,-2.3825,-0.36065,0.72568,-0.19283,-0.1098,-0.49187,-0.18999,0.61528,0.36644,0.011858,4.498e-05,-0.49737,0.31122,0.41214,0.21989,0.2167 -1.9089,-0.10213,1.7519,2.1749,-2.5089,-0.99126,0.87563,-1.1102,-2.1185,0.66053,-0.10988,0.27495,0.69812,-0.39827,0.4764,-0.16395,-0.097558,-0.40627,-0.33714,-0.30865 -2.7298,-0.76452,-0.24269,1.6416,-3.6822,-0.055225,0.85131,-0.37216,-0.033701,0.18047,0.69093,0.19906,0.23467,-0.06488,0.66705,0.33282,0.080783,0.35796,-0.21901,-0.47889 -1.9005,-0.074671,0.11328,0.6159,-2.227,-0.10629,-0.31052,-0.89144,0.31028,-0.087977,0.2628,-0.38807,0.34126,-0.0020142,0.24231,0.33582,0.6139,0.44061,0.11387,-0.34445 -1.8137,-0.84295,0.16682,2.6212,-3.75,-0.41137,0.80049,-0.54964,-0.40969,-0.98473,-0.35374,0.10434,0.65158,-0.23909,0.49729,0.19323,0.19144,0.29986,0.15448,0.0085775 -0.29391,-0.46069,-0.11926,1.1752,-2.0971,-0.1336,0.88832,-0.51481,-0.32095,-0.52354,-0.10709,0.29165,0.187,-0.047418,0.33674,-0.2801,0.21011,0.44897,-0.085993,-0.063554 -1.072,0.049625,0.80506,2.0374,-2.2289,-0.58629,0.54864,-1.4535,-0.72559,-0.35711,-0.0087973,0.70582,0.56343,-0.28822,0.34252,-0.26575,-0.071548,-0.11208,0.22918,0.55498 -1.7153,-0.55517,0.80125,2.8358,-2.2515,-0.74222,0.25399,-0.019328,-0.71109,-1.2627,1.117,1.1942,0.27036,-0.74622,0.26819,-0.58507,0.87673,0.38515,0.041965,-0.37714 -1.8709,-0.33431,-0.95766,0.34354,-3.0113,-0.55938,0.062077,-0.33857,-0.84824,0.67825,0.025658,0.48652,-0.077452,-0.084794,0.78973,0.3069,-0.18531,0.55981,0.080771,-0.16313 -0.3214,-0.70034,1.1887,0.89735,-1.3519,-0.97717,0.36091,-0.1988,-1.2235,-0.099919,0.51974,0.24042,0.4639,-0.062284,0.19621,-0.3898,0.1774,0.07705,0.070052,-0.72101 -1.4465,0.30894,0.97018,2.1604,-2.9261,-0.20658,0.94364,-1.2549,-0.21519,-0.41587,0.267,0.046879,0.96911,-0.027849,0.0036924,0.63909,0.43179,0.65407,-0.075331,0.0024175 -0.77702,-0.31415,1.0886,1.8042,-1.9806,-0.49379,0.63823,-1.2464,-0.12422,-0.077017,-0.018789,0.18114,0.12037,0.18424,0.10389,-0.052705,0.057047,0.31013,0.29259,0.58332 -3.7048,0.18165,-0.37704,1.158,-2.0992,-1.3695,-0.19607,-1.2568,-1.5559,-0.04922,2.2244,1.0082,-0.61878,0.8388,-0.42487,-0.96161,0.65685,0.27841,-0.36458,0.6391 -0.44595,0.15747,0.58813,1.9451,-2.0718,-0.41374,1.1301,-0.91139,-1.1122,-0.39363,-0.36522,-0.24494,0.075905,-0.20827,-0.13992,0.066788,0.21267,0.48108,0.096241,-0.1271 -1.5976,0.98504,0.82758,1.1362,-1.5935,-0.41866,1.1319,-0.99633,-0.84686,-0.53385,0.55515,0.062782,0.085234,0.30503,0.29349,0.55385,0.30661,-0.70454,-0.014223,0.66168 -1.485,0.24725,1.9887,0.69117,-1.5842,-0.55278,0.65246,-0.11843,-1.5279,-0.34402,0.16701,-0.57634,0.58738,-0.62473,-0.45404,0.47282,0.43704,-0.072286,0.15549,-0.38526 -1.9509,-0.8615,0.95388,2.6144,-2.8359,-1.3353,0.30875,-0.86799,0.14674,-0.61828,0.37342,1.0818,0.61701,-0.66628,0.29586,-0.59769,0.8849,-0.215,0.28509,0.13259 -1.7128,-0.57901,1.612,2.2329,-3.1771,-1.2003,1.0862,-1.7961,-0.42655,0.37669,0.12893,0.323,0.89661,0.61994,0.3079,0.032469,-0.10846,0.1526,-0.11953,0.38865 -1.601,0.57409,1.7055,2.7202,-2.5915,-0.31884,0.70206,-0.53889,-1.1503,-0.42104,0.70039,0.70812,1.1638,-0.48734,-0.084877,0.23192,0.085164,-0.15249,0.69037,-0.11831 -2.8525,-0.95277,-0.6773,0.93724,-2.2673,-0.96261,0.089063,-0.16064,-0.78196,0.042853,0.82881,1.3958,0.35657,-0.30096,0.30135,1.012,0.47677,0.54095,-0.45066,-0.21719 -1.7897,-0.46306,0.2517,1.4782,-2.7142,-0.23088,0.36369,-0.96757,0.28726,-0.187,-0.026765,-0.23734,1.0735,0.21047,0.37805,0.42112,0.34003,0.93691,-0.01116,-0.21269 -1.561,-0.9919,0.094027,2.3418,-2.7204,-0.51783,0.25225,-0.93306,-0.36148,-1.2109,0.31432,0.27222,0.28803,-0.65099,-0.033164,-0.33058,1.1459,-0.090961,0.14571,0.14255 -1.3537,-0.47176,1.4113,2.3604,-2.2771,-0.19979,0.61406,-1.0979,-0.27882,-0.31038,1.0351,0.30251,0.63342,-0.73767,0.42486,-0.5687,0.090295,0.50924,0.36753,0.75062 -1.4647,-0.085732,-0.23379,0.43348,-2.6673,-0.40895,1.1477,-0.96199,-0.016224,0.2994,0.29082,1.1131,0.97857,0.024174,0.81618,1.1626,0.22872,0.48746,-0.26284,0.0032927 -1.867,-0.38991,-0.93151,1.0447,-3.4468,0.3237,1.4224,-0.95361,-1.5718,0.55636,-0.12273,-0.51913,-0.099833,0.94001,0.28797,0.1926,1.031,0.21254,0.28837,-0.58504 -2.0407,-0.69199,-0.95505,0.80323,-2.9786,-0.616,-0.024191,-0.50187,-0.74662,0.47135,0.36466,0.29752,-0.11456,-0.31634,-0.018259,0.37357,0.50831,-0.10098,-0.24001,0.49095 -0.70785,-0.59698,-1.156,0.94431,-2.4062,-0.13452,1.1336,-0.62705,-1.1505,-0.61945,0.080692,0.34541,0.23627,0.38264,0.2318,1.0867,0.91676,-0.12862,-0.45187,-0.42612 -1.0173,-0.92639,1.9596,1.0821,-1.8516,-0.98283,0.4426,-0.23232,-1.4992,-0.15099,1.2037,0.17991,0.54095,0.11659,-0.0051854,-0.49227,0.19497,0.33512,-0.077394,-0.59575 -1.3494,-0.30654,-0.070066,1.4751,-2.5651,-0.27463,0.82094,-1.6556,-1.3503,-1.3584,-0.28713,0.040631,-0.17385,0.3842,0.85875,0.75254,0.77604,-0.041666,-0.41833,0.29477 -1.3021,-0.89125,-0.71017,0.62013,-1.9273,-0.60513,0.28971,-0.16253,-0.57428,0.093243,0.11644,-0.31646,0.40245,-0.059902,-0.0090897,-0.33766,0.51959,0.079156,-0.044213,0.68384 -0.54511,-0.81148,1.4469,1.6027,-2.0049,-0.86697,0.81982,-0.88141,-0.43255,0.32031,0.39288,-0.15028,0.74259,0.31287,0.19729,-0.29977,0.086422,0.75374,0.26268,0.09096 -1.0839,0.03555,-0.59843,0.58497,-2.3559,0.1395,1.4454,-0.47083,-0.83106,-0.18595,1.0413,0.01671,0.55817,0.95094,0.52055,0.84764,1.0197,0.37988,-0.67931,-0.11912 -1.0246,0.15553,0.82142,0.089286,-1.6211,-0.51767,-0.17328,-0.56038,-0.63672,0.31514,0.50821,0.52379,0.39187,-0.080055,0.20336,-0.4955,-0.077298,-0.1962,-0.31261,-0.58136 -1.6871,-0.40508,1.8538,2.4555,-2.902,-0.20749,0.58946,-1.2323,-0.41855,-0.50325,0.84664,0.16826,0.57402,-0.033119,0.21025,-0.15363,0.010212,0.088742,0.38862,0.39978 -1.7572,1.413,-0.2426,1.0857,-1.919,-0.84494,1.3192,-0.21676,-0.82354,-0.44334,1.0768,-0.07402,-0.69603,0.51154,0.83198,0.80193,-0.0050217,0.064416,-0.70591,-0.32305 -0.86256,0.45028,-0.28713,0.95361,-2.237,-0.87578,1.1744,-0.7786,-0.53403,0.0025038,0.10198,0.14714,-0.36384,0.59698,-0.16634,0.42101,-0.028813,0.19116,-0.18417,-0.12096 -2.8101,0.12647,-1.0824,0.44166,-3.4481,-1.4601,1.176,-0.24071,-1.5001,0.23477,1.6517,-0.45385,-0.60945,-0.4933,0.97023,0.93344,0.089712,0.2777,-0.067931,-0.080446 -0.86136,-1.1067,1.831,1.6296,-1.9231,-1.3616,0.45403,-0.37291,-0.72165,0.0073802,1.2494,-0.091138,0.31692,0.20226,0.57488,-0.39137,0.24879,0.73469,0.19278,0.015565 -1.1901,-0.68208,2.0623,2.4356,-2.0529,-0.58503,0.73244,-0.25005,-0.89113,-0.29751,1.337,1.0618,0.36807,-0.045114,-0.090724,-0.44725,-0.0089306,0.2936,0.45797,0.12479 -0.67159,-0.32884,1.1514,0.70128,-1.5557,0.084212,0.92408,-0.65557,0.191,0.31031,0.58179,-0.33517,0.24362,0.2357,0.03131,0.14193,0.15116,0.73445,-0.065784,0.05083 -0.98623,-0.53826,1.7037,2.0645,-1.7984,0.21198,1.2209,-0.72554,-0.44404,-0.10756,1.7476,0.43745,0.85836,0.10211,-0.017055,-0.23737,0.5534,0.47693,0.11807,0.7649 -1.8801,-0.39683,0.65408,1.2452,-3.889,1.0273,1.6701,-1.1255,-0.22876,-0.38487,0.24127,0.19996,0.60214,0.0074356,0.49863,0.3207,-0.23558,0.67523,-0.51321,-0.029375 -1.9921,0.56384,-0.26108,1.7056,-3.9171,0.64477,2.1346,-1.08,-2.2973,-1.1554,-0.10236,0.76562,0.054277,0.42218,0.39047,0.77789,0.9114,0.63254,0.098316,-0.062624 -1.6988,-0.76599,1.1788,1.6161,-3.3499,0.14097,1.1777,0.0098716,-0.079474,-0.11366,0.66931,1.087,0.29923,-0.531,0.77226,-0.39815,-0.24075,0.48115,-0.58013,-0.15187 -3.4376,-0.37475,-0.22763,2.1448,-4.1162,-1.2175,0.23863,-0.68152,-1.0109,-0.78674,0.79142,0.54308,0.71745,-0.36318,-0.087592,0.55854,0.88732,0.28481,-0.38226,-0.011847 -2.5026,-0.89757,-0.87263,1.5886,-3.6251,-0.96841,1.1324,-0.43783,-0.88784,-0.38327,0.73433,0.054326,1.1722,0.011418,0.40196,0.67926,0.62963,-0.23004,-0.093672,-0.11435 0.047923,-1.0186,1.0004,1.59,-1.7834,-0.8193,1.241,-0.32148,-1.9119,0.11536,-0.16345,-0.47364,0.22823,0.27457,0.25487,-0.082302,-0.14442,0.23892,0.059927,-0.40962 -0.24384,-0.48509,-0.27176,0.5932,-0.96295,0.59258,0.94134,-0.39524,-0.41267,-0.47429,0.69563,0.30879,0.35919,0.023886,0.25656,0.3164,0.4922,0.5183,0.044555,-0.62346 -1.2457,-0.38332,0.29567,1.9258,-3.2367,-0.60056,0.76532,-1.3973,-0.26255,-0.51948,-0.37354,-0.095643,0.73657,-0.57656,0.2913,-0.092071,0.31116,0.49687,-0.33767,-0.044224 -1.7948,-0.23512,-0.022235,1.2137,-3.2664,-1.2706,0.61029,-0.83954,-0.20426,0.20218,0.65701,-0.19342,0.72487,0.61338,-0.091121,1.2282,0.64113,0.74094,-0.56239,0.46659 -2.1382,-1.1707,1.724,1.8206,-3.2948,-0.20005,1.6573,-0.23868,-0.28498,-0.45905,0.98081,1.05,0.25041,-0.6431,0.82575,-0.54743,0.39046,0.56502,-0.34443,-0.17251 -0.8296,-0.44749,-0.55611,1.5491,-2.6846,0.44266,0.82003,-0.69726,-1.6556,-0.38799,0.047166,-0.44029,-0.070192,0.30455,-0.1846,-0.32478,0.13556,0.24075,-0.47608,-0.32638 -0.87335,-0.45732,-1.0826,1.0322,-1.9961,-0.058168,1.6121,0.097118,-1.3224,-0.15732,0.31645,-0.027769,-0.28001,0.77349,0.10752,0.70264,1.0622,0.65675,0.32294,0.2211 -1.0785,-0.91072,-0.70054,1.4263,-3.1613,-0.62909,1.0073,-0.64526,-0.78195,-0.86805,-0.14923,0.053964,0.40007,-0.26319,0.28694,0.64524,0.72965,-0.081926,-0.51414,0.35712 -2.4661,0.56105,0.17146,0.23957,-1.5914,-1.0825,1.164,-0.44326,-1.8263,-0.82451,1.7643,-0.43811,-0.25552,-0.89768,0.071943,-0.40226,0.35469,-0.10434,0.45793,-0.082087 -1.103,-1.2738,-0.39446,1.2488,-3.0298,-0.50159,0.88083,-0.1408,-0.98725,-0.6155,-0.30215,-0.16102,0.29945,0.34187,0.51306,1.0257,0.73214,-0.050819,-0.049638,-0.33397 -0.23798,-1.1247,1.1739,1.6145,-1.7416,-0.81576,0.64736,-0.11151,-1.5454,-0.19512,-0.29991,0.23348,0.33246,-0.23313,0.37634,0.087701,-0.11663,0.24348,0.64544,0.3294 -2.0548,0.40074,1.0885,2.0688,-2.699,-0.5963,2.136,-0.93151,-1.1594,0.65574,0.67816,-0.46787,0.21454,0.60248,0.16917,0.88115,0.35109,-1.2313,0.075481,0.32934 -0.70775,-1.2016,0.042856,1.6161,-2.5011,0.080534,1.5658,-1.0104,-1.2659,-0.81177,-0.079289,0.54828,0.0061272,0.041778,1.1424,0.75972,0.5721,-0.16818,-0.40771,0.20443 -1.2668,-0.75237,1.1939,1.8915,-2.1578,-0.72894,-0.16847,0.36005,-0.77671,-1.0762,0.79351,0.97432,0.80732,-0.1575,0.5105,-0.097105,0.28916,0.22156,0.75737,-0.07439 -2.4824,0.17663,-1.494,0.90317,-3.2447,-0.89682,0.99877,-0.77632,-1.3931,1.0439,0.68179,0.23677,-0.19209,-0.33622,-0.074651,-0.22861,-0.48918,-0.0017628,-1.0919,0.52344 -0.90717,-0.83503,0.052117,1.6563,-2.7265,-0.69256,1.2856,-1.2919,-0.37164,-0.31681,-0.36525,0.075166,0.25859,-0.04745,0.25846,0.1838,0.46984,0.078316,-0.080235,0.45063 -1.2426,-0.64683,1.4456,0.53333,-1.0715,-0.77307,0.21719,-0.13233,-2.3713,0.0062853,0.49101,1.003,0.34962,0.88831,-0.23261,0.22111,0.59878,0.24282,-0.40353,-0.40408 -0.55516,-0.55193,0.61358,1.7118,-3.1076,-0.56337,1.2462,-0.17218,-0.96757,-0.90172,0.075582,1.0816,-0.47543,-1.183,1.0488,-0.56273,0.056693,0.32733,-0.21729,0.058493 -0.75234,-0.71753,1.533,1.4633,-1.4687,-0.64703,0.34345,0.20234,-1.9752,0.33482,0.57282,0.56526,0.56447,-0.5475,0.058335,-0.1731,0.37441,-0.34773,0.13489,-0.84111 -1.1257,-0.40958,-0.60786,1.4309,-3.0887,-0.61121,1.5912,-0.56904,-0.81041,-0.45873,-0.26651,-0.0076061,0.50693,0.56058,0.45553,0.71434,0.9222,0.78626,-0.37734,-0.50761 -2.4272,-1.282,-1.3294,1.4851,-3.5061,-0.85812,0.91014,0.14844,-1.3246,0.28369,0.45475,-0.39143,0.54621,-0.48239,0.54821,-0.12648,0.39668,0.24573,0.36704,0.30797 -0.3931,-0.35364,-0.2444,0.88778,-1.4443,-0.34008,1.1246,-0.54762,-1.1067,-0.070597,0.4144,0.8124,0.60907,0.024794,0.3329,1.0769,0.65629,-0.20821,0.042162,0.017958 -0.89463,-0.64586,0.92833,1.82,-2.119,-0.29443,0.84806,-0.48729,0.17645,-0.28773,0.39639,0.20202,0.61893,-0.33489,0.28143,-0.078383,0.19636,1.4104,0.079321,0.19738 -1.0786,-0.55489,-0.63113,-0.12121,-2.1239,-0.22468,0.77552,-0.32947,-0.63959,0.90324,0.84085,0.22887,0.21109,0.30944,0.12664,0.32872,0.16476,1.037,0.062003,0.65632 -0.76139,-0.52803,1.4456,1.4533,-2.0311,-0.57244,0.3988,-0.7236,-0.4936,-0.24672,1.061,0.74767,0.84068,-0.5533,0.17203,-1.0374,0.16521,0.54864,0.3122,0.19777 -1.9518,-0.70896,-0.63425,2.0566,-3.0453,-0.11588,0.60344,-0.5962,-0.95078,-0.80851,0.010628,0.17869,0.22092,-0.32638,0.53791,0.015603,0.61054,-0.26482,-0.68489,-0.089032 -1.6495,-0.59948,0.28995,1.3302,-2.7198,0.49185,0.65294,-0.12282,0.03575,-0.51782,0.18764,-0.023836,0.28455,-0.065254,0.99971,-0.051723,-0.17857,0.49053,-0.17353,-0.37845 -1.6787,0.23231,1.9221,2.0858,-2.2926,-0.86717,0.72355,-1.2965,-0.60649,0.18534,0.12291,0.0051368,0.35771,-0.41034,0.41784,0.23733,0.074901,0.37683,0.79229,-0.045874 -2.8135,-0.45638,-0.87916,-0.018407,-2.5396,-1.242,0.64482,-0.38828,-1.0302,0.97737,1.2093,0.67026,-0.075791,-0.97936,0.61798,0.29652,-0.64562,0.29552,-0.35079,0.2436 -0.68509,-0.093714,-0.8013,0.85013,-2.3096,-0.89991,0.76211,-0.23963,-1.8534,0.0058743,0.46518,0.068778,0.33793,0.16101,-0.073454,-0.25416,0.10473,-0.18295,-0.13117,-0.062428 -1.4472,0.24613,-1.1863,1.4378,-2.7253,-0.6753,1.6168,-0.89885,-1.4334,0.091925,0.38084,-0.47429,-0.20139,0.91401,-0.21905,0.097182,0.55137,0.9368,-0.1309,0.39424 -0.72067,-1.0181,1.6744,1.9044,-2.5357,-1.1614,0.54424,-0.22315,-1.3242,-0.15142,0.42649,0.56594,-0.033956,-0.34101,0.10687,-0.67431,-0.14737,0.3342,0.18762,-0.0025382 -2.2947,-0.76698,2.2733,2.0603,-2.5423,-0.69202,0.74012,-0.12069,-0.26133,-0.16772,1.3305,1.8949,0.26966,0.65205,0.0043331,-0.64508,0.83731,0.87804,-0.1504,-0.51012 -0.77915,-1.0984,-0.50014,1.0925,-2.5501,0.31785,1.4102,-0.79868,-0.92273,-0.73762,-0.06398,0.2838,0.19718,0.53896,0.48623,0.93749,0.97255,0.39364,-0.16218,-0.52958 -1.9508,-0.36414,-1.2061,0.50484,-2.06,-1.1158,1.3046,-0.32527,-2.3155,1.2772,0.50161,0.16088,1.3717,-0.044394,0.38791,0.32356,0.75109,0.76599,0.32052,1.0731 -1.5171,-0.12952,-0.48179,-0.26797,-2.5219,0.35112,0.98843,-0.16273,-0.69436,0.72009,0.35251,0.3867,0.93673,0.73871,0.25392,0.91309,-0.26794,0.6222,0.81037,0.11664 -3.053,-0.53113,0.12525,1.6226,-2.2153,-0.60092,0.94424,-0.94227,0.031477,-0.81057,1.0215,-0.20713,0.64622,0.7203,0.41367,1.1969,0.86823,-0.30172,0.030552,0.91546 -1.0547,-0.58176,-0.38765,0.54466,-2.544,-1.4385,0.39081,-0.64493,-0.84495,0.23022,0.18774,0.35231,0.31954,0.38672,0.13568,1.0423,0.36634,0.43579,0.095333,0.56717 -0.86931,-0.65549,-0.26327,1.2965,-2.607,-0.51985,0.99122,-1.0498,-0.14198,-0.28033,-0.38032,0.35789,0.57403,0.0061127,0.40134,0.91493,0.79014,-0.10347,-0.26522,0.15708 -0.49194,-0.43636,-0.6881,0.95379,-1.3468,0.32394,0.84632,0.033235,-0.8403,-0.63255,0.45559,-0.089732,0.39313,0.19572,0.25669,0.43163,0.33602,-0.0059596,-0.23355,-0.065212 -2.6619,-0.57198,-1.2046,0.69479,-2.6248,0.17797,2.2243,0.2894,-2.4378,0.87079,0.49772,-0.17303,0.20442,-1.0557,-0.4671,0.1755,0.171,0.11842,0.16306,0.65299 -1.3158,-0.94269,-1.2556,1.197,-2.6633,-0.25877,1.0681,-0.5792,-0.87874,-0.31221,0.0061928,-0.53583,0.13737,0.67049,0.13438,0.36603,0.81004,0.08843,-0.16848,-0.27355 -2.6792,-0.032342,-1.1589,1.2842,-3.751,-0.81102,2.4973,-0.72423,-2.1455,0.62995,0.76321,-0.84042,0.51642,0.14839,-0.011049,0.24392,0.56497,1.1995,-0.19099,0.75283 -1.6676,-1.1475,-0.64626,0.92465,-1.7913,0.73643,0.87049,-0.34964,-0.57802,-0.17391,0.48936,-0.56816,0.62175,0.080551,0.33909,-0.10695,0.18677,0.29955,0.14727,-0.060449 -2.1195,-0.13422,1.2293,2.0246,-2.2048,-0.14158,0.54081,-1.2656,-0.15655,-0.20923,1.5561,0.72371,0.70951,0.0035774,-0.075099,-0.43428,0.70582,-0.14219,0.58748,1.05 -1.495,-0.1942,-0.22108,2.0972,-1.9621,0.10406,0.40278,-0.39157,-0.78492,-0.83982,0.05864,0.04994,0.43098,-0.60871,-0.11939,0.48491,0.76904,-0.31644,-0.8174,-0.21519 -2.2076,-0.86181,1.0581,2.1066,-3.0479,0.18381,0.51702,-0.083375,0.14142,-0.94426,0.93754,1.0222,0.63875,-0.32123,0.64633,-0.34786,0.0021463,0.66368,-0.21954,0.072504 -1.8334,0.65736,1.412,2.5148,-2.4687,-0.29927,0.67043,-1.2007,-0.63245,-0.16367,0.65648,0.69528,0.78863,-0.48425,0.27882,0.060267,-0.13632,-0.11674,-0.07863,0.29681 -1.6231,-0.54557,2.152,2.8533,-2.8611,-0.69502,0.56774,-1.3511,-0.55063,0.11949,0.78622,0.086694,0.8073,-0.39505,-0.057052,-0.20824,-0.027453,0.41323,0.74641,0.63467 -1.0268,-0.27388,-0.98659,0.70793,-2.6015,-0.39918,0.72983,-0.41195,-0.67459,0.077165,0.62292,0.056182,0.64133,0.29397,0.15068,0.45439,0.61842,0.53989,-0.48979,-0.41428 -2.9998,-0.8235,-0.59109,1.4612,-2.2801,0.42201,0.42574,-0.096611,-1.0954,0.72056,-0.77337,0.023947,-0.17544,-0.26907,0.075645,-0.74342,1.1295,1.0733,-0.48589,-0.33505 -2.3393,-1.3831,-0.52704,1.395,-3.1299,0.23814,0.014364,-0.1904,-0.42772,0.1475,0.15466,0.60256,0.30823,0.12053,-0.00061159,-0.331,0.5915,0.70565,0.56975,0.27553 -0.90552,-0.61608,1.4208,1.1337,-1.3096,-0.52457,0.14841,-0.72679,-0.9136,-0.072167,1.4655,0.20421,0.058275,0.43345,0.083545,-0.55097,0.1729,0.09503,0.093243,-0.33624 -1.967,0.39777,1.6646,1.3831,-1.9067,-0.82328,0.45036,-1.5555,-1.0151,0.2353,0.31311,-0.93367,-0.048155,0.58849,0.30605,0.66461,-0.13695,-0.43434,0.27872,0.2534 -2.061,-1.2448,0.48363,2.0495,-2.8446,-0.027789,0.45268,0.86347,-0.70126,-0.78698,-0.38014,0.78485,0.059051,0.20592,0.56797,-0.14225,-0.068189,0.33404,0.2633,0.37704 -2.4801,-0.73187,-0.53229,1.6104,-3.3052,-1.2608,-0.1606,-0.28598,-0.56932,-0.020015,1.0022,0.55507,0.63798,-0.63116,0.26415,1.0118,0.42249,0.17448,-0.0098267,0.23008 -1.6762,-1.1624,0.70612,1.2505,-3.075,0.062133,0.66866,-0.37647,-0.20589,-0.88155,-0.79107,0.47739,0.70285,-0.45523,0.14994,-0.088441,-0.13748,0.76229,0.39543,-0.37899 -1.5755,-1.1658,-1.1768,0.83088,-2.4052,-0.25534,0.77859,-0.020312,-1.7771,0.20425,0.71454,-0.58096,0.010946,0.079708,0.039134,0.6139,0.15572,-0.24389,-0.28808,0.75633 -0.77406,-0.7607,-1.0876,0.54613,-1.5994,-0.02208,1.1928,-0.15441,-0.97102,-0.14445,0.85516,0.1051,-0.38451,0.50936,0.18571,0.75102,0.77995,0.75209,-0.17225,0.09823 -1.6931,-0.28913,1.2096,2.0406,-2.4529,-0.36818,0.59865,-1.5878,0.10222,-0.36367,0.8686,0.36203,0.67896,-0.10091,0.30412,-0.4965,0.23144,0.022793,0.11557,0.92346 -0.98162,-0.52014,0.36049,2.1921,-2.7117,-0.44779,0.44556,-0.91466,-0.45634,-0.65311,-0.62793,0.51921,0.50046,0.13073,0.067101,-0.0025144,0.27633,-0.096521,0.046331,0.54726 -1.6898,-0.1265,1.2234,1.8801,-2.9573,-0.45082,0.71568,-1.4258,-0.61497,-0.66275,-0.52247,0.78935,0.34658,0.10334,0.89905,0.32358,0.52193,-0.10205,0.35743,0.11697 -1.2212,-0.4207,0.65413,0.70508,-2.8137,0.18655,1.6421,-0.55848,0.25571,-0.1657,0.25618,0.93428,1.0821,-0.39341,0.59733,0.40225,0.15428,-0.010744,-0.084927,0.03734 -2.7567,1.1283,0.91596,2.0214,-3.7661,-0.45299,2.2349,-1.2749,-1.1927,0.16255,0.34566,0.1572,0.29147,-0.15726,0.97951,0.75332,0.34461,0.23199,-0.54812,-0.080562 -0.64355,-0.54659,-0.75656,0.69714,-1.9701,-0.11489,1.582,-0.016748,-0.90666,-0.11284,0.40437,0.43018,0.12763,0.54878,0.11858,0.92409,1.0106,0.60998,0.65295,-0.20081 -2.0782,-0.45303,0.76769,2.104,-3.1502,-0.72949,0.57224,-1.7541,0.16488,-0.42089,0.58177,-0.16543,0.82279,0.18406,0.23249,0.7409,0.58855,0.11971,-0.36845,0.64464 -1.8276,1.0378,0.32031,1.8388,-2.9265,-0.70562,1.9834,-1.2721,-0.44539,0.099481,0.78013,0.4081,0.21254,0.30048,0.72364,0.95125,0.064122,0.0043258,-0.59085,0.1779 -0.88546,0.85757,0.39591,1.6661,-2.1038,-0.85304,0.78283,-1.4016,-0.46853,-0.13625,0.091268,0.2735,-0.08719,0.37978,0.1124,0.26805,0.030268,0.718,0.025701,-0.019845 -1.0818,0.34121,0.29211,2.1505,-2.5137,0.12954,1.4871,-0.78755,-0.10012,-0.17357,-0.082631,0.48988,0.33658,0.42253,0.21027,0.2872,0.36247,0.79983,-0.29253,-0.4055 -1.213,-0.91519,1.247,1.7381,-2.3761,-0.46958,0.88102,-0.83107,-0.77459,0.47577,0.55398,0.40194,0.17044,-0.70361,0.59066,-0.65275,0.21154,-0.0084011,-0.42681,-0.66929 -1.0518,0.32264,-0.98608,1.3729,-2.3558,-0.53826,1.5254,-0.58757,-1.0576,-0.92371,0.23246,0.72964,-0.15645,0.62086,-0.17171,0.65457,0.31197,0.2489,-0.34223,0.28875 -1.2558,-1.3955,0.16562,1.8105,-2.6183,-0.044079,0.75345,-0.65114,-0.35465,-1.1996,-0.42204,0.31504,0.14536,0.013887,0.42808,0.18165,0.55798,0.24728,0.17757,0.098199 -0.75617,-1.1246,0.41232,1.5828,-2.2367,0.13668,0.79315,0.42583,-0.94325,-1.2173,-0.30289,0.54362,0.12122,-0.19337,0.80055,-0.11409,-0.21253,0.36735,0.086587,-0.098439 -2.8519,-0.086548,-0.25586,1.2308,-2.6674,-1.4233,0.24491,-1.1539,-1.7174,-0.38548,0.21598,0.24726,0.85553,0.18772,0.95822,-0.79087,0.70772,0.3941,0.39768,0.2484 -0.51461,-0.96943,0.33431,1.3492,-2.2036,0.15362,1.035,-0.60706,-0.46893,-0.85628,-0.45419,0.34196,0.1508,-0.064163,0.59655,-0.089347,0.084555,0.27175,-0.1093,0.078294 -0.69986,-1.6205,1.6225,2.2009,-2.7924,-1.0926,1.4609,-0.54537,-1.5933,-0.31218,0.24172,0.016059,0.0096263,-0.50711,0.67753,-0.5606,0.21045,0.48098,0.088166,0.14438 -2.0658,-1.5687,-0.47589,2.1308,-2.9641,-0.0010852,0.63828,-0.05409,-0.93111,-0.83359,0.1152,-0.30091,0.60437,0.16515,0.56937,0.55727,0.54918,-0.12795,0.42461,-0.0013127 -0.5586,-0.59272,1.5148,2.0459,-1.896,-0.82728,0.67191,-0.04332,-1.1667,-0.34181,0.10998,0.52552,0.42838,-0.34666,-0.132,-0.020325,-0.17585,-0.023481,0.78619,0.049933 -0.99937,0.59988,1.3779,0.83265,-1.6608,0.048483,0.75255,0.14599,-0.31883,0.64776,0.16917,0.44019,0.73472,-0.18474,0.52719,0.74066,0.36181,0.73013,-0.26326,0.46773 -0.91373,-0.69501,-0.39338,1.3672,-2.6962,-0.39451,1.0047,-0.40622,-0.36173,-0.61588,-0.17453,0.33049,0.75832,0.56531,0.57458,0.79428,0.94651,0.51628,-0.041386,-0.12954 -0.67429,-0.31427,1.8954,0.60023,-2.0895,-0.55258,1.02,0.22933,-1.6786,0.23213,0.52862,0.090658,0.87157,-0.51833,-0.014949,-0.032026,0.53521,0.36483,-0.13595,-0.32515 -2.3633,0.34649,-0.31397,1.6683,-3.8009,-0.025689,1.3395,-0.78677,-1.355,0.16635,0.17116,-1.2604,0.12783,-0.20349,0.16771,0.55289,0.26107,0.49059,0.044553,-0.66065 -0.62407,-0.50536,0.74091,1.7638,-3.081,0.29834,2.0652,-0.51437,-0.9489,-0.5265,-0.29258,0.51073,0.015229,-0.21086,0.17564,0.34517,0.093301,0.94745,0.2147,-0.63479 -1.3391,0.13577,0.83026,2.1255,-2.3029,-0.70472,0.66668,-1.6133,-1.6361,-0.61918,-0.51322,0.37559,0.14504,-0.32981,0.78415,0.21574,0.50932,-0.11171,0.24356,0.088375 -1.1765,0.51088,-0.58626,1.046,-2.4085,-1.0552,1.6352,-0.58988,-1.3831,-0.014946,1.0771,0.39627,-0.038915,0.31196,0.052282,0.29397,0.096943,0.027992,-0.28075,-0.38005 -1.5117,0.21582,0.43611,2.0201,-2.1743,-0.5379,0.35518,-1.0525,-0.35703,-0.92024,0.24085,0.56031,0.71476,0.30242,0.039116,0.24176,-0.38992,-0.4154,0.22881,0.24733 -1.5152,-0.18574,1.2453,2.5481,-2.5379,-0.49379,0.41534,-0.85449,-0.72808,-0.87936,0.095804,0.51525,0.26752,-0.58969,0.12772,-0.74865,0.1662,0.57608,0.68891,0.31272 -1.5466,-0.098102,-0.29614,1.3135,-1.7027,-0.46792,-0.026514,-0.11557,-0.6401,0.063098,0.22693,0.98922,0.66327,0.39015,0.074332,-0.30423,1.261,0.72557,-1.158,0.16674 -1.3989,-0.41717,1.2346,1.0559,-2.0278,-0.6805,0.45011,-0.72011,0.59158,0.073804,0.40692,0.67877,1.1102,0.1892,0.37777,0.30226,0.29689,0.42225,0.17521,0.47272 -1.4067,0.060315,0.17169,0.69264,-2.2034,-0.31509,0.02888,-0.70012,-0.077122,0.1244,0.63526,0.91362,0.58454,-0.074997,0.70649,0.45749,0.11483,0.23269,-0.142,0.18016 -2.1337,-0.67871,-0.16366,0.54603,-4.1374,-0.62872,1.6192,-0.19351,-0.033831,0.01913,0.098282,0.55607,1.278,0.45864,1.0514,0.81583,0.26525,0.85083,-0.045497,-0.48917 -2.5072,1.9824,0.52152,0.95503,-2.6186,-0.1246,1.8017,-0.69091,-1.8388,-0.78104,0.64582,0.64077,0.18654,0.71095,0.52211,0.48339,0.11305,1.0821,0.4303,-0.95449 -2.3421,0.71336,-0.24844,0.81133,-2.9553,-1.3662,0.73076,-1.4079,-0.85323,-0.59115,1.1043,-0.38523,-0.10285,0.33359,0.33918,0.51751,0.11428,1.3553,-0.18938,0.23866 -1.5909,1.1987,0.9967,1.8299,-2.6419,-0.65234,1.6819,-1.3944,-0.68104,0.21767,0.18683,-0.77408,-0.20636,-0.26081,0.58269,0.4231,0.23507,0.59738,-0.15947,0.18813 -0.21751,-0.73574,0.3728,0.89242,-1.8142,-0.15114,0.65146,-0.66549,-0.36875,-0.63603,0.28357,0.010654,0.2324,-0.14394,0.59165,-0.13396,0.16977,1.0664,-0.20595,0.30641 -5.6205,-0.59962,0.32328,1.0124,-2.6925,-1.503,1.4106,-0.98924,-1.9291,-0.39152,1.9641,1.5803,-0.1897,0.50388,-0.01165,-0.036867,-0.10981,0.63078,1.2145,0.1703 -0.62561,-1.1478,1.0207,1.6873,-2.2597,-0.7222,0.7461,-0.82819,-0.65822,0.013058,-0.17447,0.055565,0.63285,-0.28822,0.48621,-0.37565,0.0082172,0.17735,0.20382,0.1312 -1.0928,-0.75796,0.54883,2.1143,-3.1522,-0.85472,1.3834,-1.0456,0.058861,0.066402,-0.096097,0.50943,0.42714,-0.22749,0.46295,0.026383,0.31603,-0.076598,-0.048489,0.25356 -0.42822,-1.5531,1.6029,1.4761,-1.7374,-1.0237,0.51098,0.10014,-1.8244,-0.53715,0.19545,0.4367,0.2033,-0.10373,0.22641,-0.061373,0.26063,0.16573,0.27622,0.30345 -3.6757,-1.1373,-0.62531,1.3296,-4.5132,-0.93635,1.5907,-0.13118,-1.6398,-0.038081,0.46083,0.70952,0.69288,-0.04741,0.0018777,1.2459,0.080326,0.54262,0.51356,0.24393 -1.0916,-0.40299,0.9212,2.3465,-2.7075,-0.40984,1.0745,-0.96049,-0.060094,-0.55736,0.20838,-0.071468,0.61727,-0.46983,0.38047,-0.3632,0.03866,0.64961,0.19671,0.24347 -1.4756,0.1928,1.1814,1.1442,-1.7245,-0.85407,0.12962,-1.1876,-0.47049,0.098597,0.58069,-0.10969,0.19912,0.077674,0.15637,-0.35359,-0.098725,-0.46031,0.025115,-0.22001 -0.94831,-0.61578,1.6992,1.7481,-1.6564,-0.60996,0.30799,-0.34572,-0.7604,-0.095881,1.2921,0.54058,0.264,-0.18019,0.16955,-0.80149,0.041157,0.34994,0.61781,0.23338 -1.8188,0.44853,0.21221,1.6309,-3.2841,-0.42572,1.6078,-1.694,-0.47817,-0.20809,0.24276,0.85133,0.68252,0.34315,0.76129,0.55862,0.14513,-0.12918,-0.79337,-0.10687 -0.90856,-0.85067,-0.17599,1.9442,-2.8307,0.30196,1.4181,-0.4694,-1.4223,-1.4484,-0.063996,-0.22783,0.27976,-0.065343,0.50873,0.39435,0.40171,0.41708,0.031024,-0.59678 -2.5172,-0.30672,1.7546,1.7812,-3.7225,-0.18714,0.9532,-0.17047,-0.54549,-0.15201,0.1908,0.55782,0.98148,0.58849,0.053275,-0.068936,0.067922,-0.0016192,-0.78765,-0.016983 -1.3343,-0.043167,0.6834,1.791,-2.3803,-0.44816,1.209,-0.89612,0.57226,0.12652,0.37548,0.22333,0.91336,0.10606,0.34931,0.36388,0.8043,0.36066,-0.49096,0.55555 -1.5351,-0.50366,0.86598,2.1954,-3.1241,-0.73223,0.72558,-0.98783,0.030343,0.26216,0.63413,0.70207,0.7459,-0.7467,0.64583,-0.50643,0.46531,0.06547,-0.37239,0.11068 -0.81878,-0.59703,-0.2081,1.2136,-2.8467,-0.5444,1.2692,-0.54913,-0.5856,-0.24168,-0.28266,-0.32752,0.32629,0.38458,-0.12763,0.49478,1.0099,0.77982,-0.24538,-0.43712 -0.7485,-0.74581,0.038218,2.2425,-2.4196,-0.0076846,1.6523,-1.3374,-1.0884,-1.1374,-0.090666,0.041758,0.024325,0.1569,0.61919,0.46679,0.55106,0.13496,-0.24834,0.34216 -1.1337,-1.5594,0.69975,1.6469,-2.6084,-0.091115,1.1772,0.32684,-0.70068,-1.55,-0.26472,0.35902,-0.039378,0.49291,0.52864,-0.087449,-0.0037625,0.67542,0.29781,-0.163 -1.4056,-0.91328,0.31783,1.6755,-2.6739,0.11917,0.055126,-0.1535,0.077811,-0.65232,-0.040475,0.88519,0.81738,-0.6195,0.45533,0.048334,0.063148,0.56948,-0.099092,-0.15173 -0.92205,-0.49024,0.24325,1.792,-3.0858,-0.78983,1.4987,-0.43106,-0.32264,-0.78617,-0.33476,0.54264,0.59146,-0.64145,0.44228,-0.28577,0.6592,-0.15881,-0.0072375,-0.010536 -0.36886,-1.0399,1.1799,1.7248,-1.7453,-1.3282,0.47985,-0.48066,-0.89091,-0.24961,0.57748,0.51624,0.54566,-0.11225,0.71351,-0.52435,0.49044,0.32722,0.50245,0.53228 -2.698,-1.5995,0.36686,0.83132,-1.6187,0.16573,1.4878,0.86853,-1.4026,0.31097,-0.47727,1.173,-0.18919,-0.096417,-0.46328,-0.95764,0.38724,0.75851,0.098415,-0.62858 -2.1455,-0.10053,-0.78969,1.0081,-2.5607,-1.2957,0.72025,-0.65156,-1.1993,0.47811,1.2707,0.098077,0.61538,-0.53162,-0.10418,0.0046932,-0.71143,0.29197,-0.47464,0.26253 -0.62566,-1.1172,1.6597,1.2578,-2.157,-0.87566,0.68037,-0.74696,-0.42991,0.069818,0.86642,-0.31781,0.56127,0.39909,0.25577,-0.59784,0.24544,0.93198,0.15125,0.38233 -1.4334,-0.97771,1.7701,1.8081,-2.5673,-0.81662,0.25599,-1.2219,-0.46226,0.38761,0.56131,-0.50558,0.79517,-0.017057,0.2785,-0.34725,-0.34316,0.3773,-0.059098,-0.0089211 -0.84974,0.76334,-1.2224,1.1107,-2.3755,-0.029627,1.9769,-0.34836,-1.7682,-0.93453,0.58384,0.73204,0.16436,0.40997,-0.77375,0.429,0.47763,0.38506,0.20908,0.075556 -2.261,-0.70158,-0.021238,1.341,-2.5383,-0.29949,-0.097891,-0.3017,0.37147,-0.25125,1.2436,0.15887,0.85327,-0.079783,0.80698,0.52112,0.57989,-0.11476,0.1316,0.075974 -0.8672,-0.96794,-0.50312,0.91282,-1.6303,0.014813,0.43866,0.087891,-0.83174,-0.38303,0.28256,-0.31635,0.27201,0.0073981,0.36471,0.76135,0.271,-0.0038441,-0.24142,0.064957 -0.76195,-0.63599,0.63054,1.814,-2.4417,-0.9159,0.8464,-0.39871,0.04339,-0.53986,0.17046,0.63608,0.29566,-0.5461,0.71205,-0.44398,0.38027,0.37034,0.19117,0.35011 -1.2051,-0.32467,1.7733,1.8789,-2.1464,-0.23305,0.057726,-0.53335,-0.6822,-0.42582,1.5381,0.57814,0.33994,-0.33566,0.15573,-0.43595,-0.13274,0.2527,0.6509,0.46856 -1.2537,-1.0485,-0.36732,1.3683,-3.0785,0.60481,1.0487,-0.19854,-0.71104,-0.82389,-0.49305,0.023137,0.82556,0.80031,0.75233,0.18202,0.36351,0.70988,0.061015,-0.068916 -1.9062,1.6645,0.26575,2.353,-2.7916,-0.097156,1.6237,-0.32864,-1.1132,-0.72241,0.60166,0.33528,0.10739,-0.12678,0.63999,0.93509,0.065904,0.84095,-0.16182,-0.013627 -1.2394,-0.13765,-0.51794,0.30838,-2.148,-0.93962,0.23908,-0.62814,-0.41676,0.082334,1.2311,0.17197,0.26329,0.10743,0.10554,0.85884,0.41057,0.55754,-0.04334,0.16728 -1.2718,-0.56466,-1.0699,1.2407,-2.3959,0.052826,0.99884,-0.23461,-0.5834,-0.56003,0.08599,-0.11615,0.089596,-0.048294,-0.20759,0.65438,0.53974,-0.44576,-0.68555,-0.14084 -1.0023,-0.23392,-0.010882,1.4267,-2.9914,-1.039,0.71254,-1.1588,-0.53908,-0.49524,-0.50789,-0.010766,0.39246,0.38988,0.15217,0.36718,0.59669,0.16674,-0.55192,-0.10004 -0.89915,-0.66943,-0.59149,1.4453,-2.4987,-0.5872,0.90228,-0.081888,-0.51777,-1.0068,-0.16098,-0.14424,0.098948,-0.082978,0.39746,-0.19254,0.50358,-0.28319,0.1638,-0.36701 -2.3481,0.066044,0.65731,2.3546,-2.9048,-0.42976,0.2518,-1.0351,-0.35483,-0.87514,0.44171,0.558,1.0457,0.26992,0.25239,-0.54269,0.11965,-0.012507,0.083207,0.17154 -0.71494,-0.11195,-0.72932,0.93084,-2.3084,0.46434,1.7407,-0.086538,-0.49411,-0.64707,-0.085778,1.0087,0.73852,0.40744,-0.10566,0.88749,1.4752,0.28709,0.20958,-0.62587 -1.9024,0.4595,1.5818,2.6097,-3.4646,-0.67102,1.6451,-1.1105,-0.66635,-0.09133,0.34525,0.092732,0.27682,-0.57603,0.50581,0.051512,0.19655,-0.14682,-0.20741,-0.049329 -1.0485,-0.7217,0.28271,1.7517,-3.0347,-0.62785,1.3213,-1.0093,-0.092332,-0.39995,-0.69644,0.038859,0.13065,-0.3661,0.28672,0.056604,0.44174,0.39546,0.2535,0.015595 -1.0955,-1.0461,1.905,1.6591,-1.8153,-0.6512,0.61471,-0.29806,-1.6291,-0.13226,0.67444,0.44371,0.12816,-0.24807,-0.35621,-0.40434,0.30985,0.066773,-0.32521,-0.47993 -2.3756,-0.67133,-0.96631,0.4623,-2.6144,-0.89786,0.45819,-0.14144,-1.3051,1.3241,0.654,0.84885,-0.24123,-1.3943,0.20663,-0.006195,-0.63582,0.47428,-0.61296,0.35779 -2.9153,-1.4112,-1.1462,0.70768,-3.2177,-0.38659,0.56683,0.024135,-1.584,0.68255,0.11354,1.1337,-0.31675,-0.61597,0.40941,1.0557,0.10375,0.59033,0.22722,0.45326 -1.1936,-0.47555,0.77168,1.1397,-1.8112,0.1239,-0.05076,-0.095012,-0.07928,-0.48049,0.1358,0.47628,0.54528,0.34313,0.014158,-0.43819,-0.2217,0.1028,0.35939,-0.27772 -0.86465,-0.95751,1.1365,2.0652,-2.0266,-0.22467,0.75407,0.019959,-0.86528,-0.80044,0.66828,1.076,0.45605,-0.65002,0.80402,-0.49112,0.0024299,0.56205,0.14531,0.35772 -1.1944,0.14697,1.5978,2.3261,-2.1502,-0.50635,0.53907,-0.70942,-0.51649,-0.58817,0.88849,0.30029,0.79214,-0.19298,-0.3257,-0.30684,-0.035511,-0.022432,0.60694,0.057786 -1.0537,-0.38881,-1.0823,0.12631,-2.0729,-0.55483,1.1993,-0.17932,-1.8843,0.95453,0.55764,1.0108,-0.20959,0.025015,-0.31126,0.57631,0.32391,0.81079,0.6413,0.6598 -2.9863,-0.60347,-1.5196,1.1452,-3.3739,-1.1014,0.82427,-0.4375,-1.8588,0.98714,1.0363,0.70211,-0.62166,-0.83981,0.26353,-0.52064,0.14226,0.24012,-0.68549,0.53026 -1.9301,-1.2788,-0.44788,1.0875,-2.0642,0.18307,0.1942,0.69348,-0.49176,0.53755,-0.52449,0.45648,0.29742,-0.31882,0.53918,-0.076879,0.35845,0.14228,0.4723,0.12725 -2.103,0.31965,-0.82539,1.801,-3.1482,-1.2658,1.0025,-0.62409,-0.94344,-0.3104,0.87593,-0.89668,0.75764,0.6042,0.26518,0.63996,0.21128,0.23193,-0.58282,-0.08596 -1.9786,0.92191,-0.71321,0.36763,-2.8051,-0.50399,1.448,-0.79965,-0.35363,-0.64744,1.386,1.0068,-0.11146,0.55682,0.31957,0.46585,0.19151,0.99602,-0.25263,-0.54161 -2.3612,-0.31958,2.4615,2.4704,-2.8664,-0.30761,0.67508,-1.2467,-0.78613,0.038573,1.1499,0.40562,0.28172,-0.16296,0.051233,-0.51807,0.20348,-0.021917,0.50746,0.58826 -1.8754,-0.86358,1.4688,2.7883,-3.394,0.17439,1.0228,-0.47739,-1.1976,-1.1875,0.096627,0.67415,0.82317,-0.59499,0.52464,0.3854,0.11779,0.30724,0.077268,0.30359 -1.6539,-0.0054768,0.75985,1.7301,-2.1244,-0.17983,0.24603,-0.73373,-0.45087,-0.7152,-0.20109,0.99364,0.50817,0.16411,-0.17818,-0.13497,-0.16479,0.26869,0.23586,-0.61337 -1.5619,0.45689,-0.76829,0.59192,-2.3131,-0.31508,1.8374,-0.2409,-0.12899,0.40839,1.7447,0.56434,0.18796,0.35768,-0.039169,1.1728,0.47747,0.69706,-0.27713,-0.24786 -1.0781,-0.3402,1.9432,0.57298,-1.2662,-0.60674,0.63235,-0.23129,-1.6574,-0.6096,1.0539,0.084635,0.43395,0.091524,-0.26549,-0.24352,0.51599,0.29611,0.13824,-0.48439 -1.7485,-1.2767,-1.0305,0.43315,-2.6253,-1.0014,0.3203,-0.43173,-1.2257,0.088841,0.29467,0.60705,-0.025772,0.22616,0.34672,0.97203,0.055067,0.55197,0.23925,0.85037 -1.8939,-1.1302,-0.9253,1.8589,-3.0869,-0.54938,0.1805,-0.44966,-0.50973,-0.5463,0.39423,-0.25705,0.66324,-0.071072,0.22075,0.39827,0.59766,0.078191,-0.15071,0.2493 -1.2193,0.48358,-1.4444,1.3971,-2.4353,0.045997,1.6339,-0.32489,-0.92811,-1.1668,0.55608,0.7753,-0.19009,0.60924,-0.48966,0.54271,0.10796,0.10796,-0.22825,0.57848 -0.65702,-1.0618,1.3455,1.6525,-2.0957,-0.75888,0.81598,-0.75513,-0.46195,0.038226,0.7964,0.49447,0.52183,-0.11348,0.3582,-0.74995,0.35894,0.3256,0.1165,-0.2292 -0.90693,-0.54099,1.4506,1.9302,-1.6867,-0.83551,0.58844,-0.57408,-1.0653,0.1388,1.2421,0.34669,0.51103,-0.18959,0.311,-0.50661,0.23884,0.037659,0.6486,0.035423 -0.81998,-0.19407,-0.96939,-0.20283,-1.7651,-0.24571,1.2395,0.18688,-1.5827,-0.49798,1.0382,0.8709,-0.57111,0.041867,-0.16416,0.28141,0.44431,0.31342,0.69581,-0.66348 -1.2185,-0.3143,0.015004,0.97585,-2.4528,-0.35115,0.072473,-0.75934,-0.82747,-0.39789,0.13705,-0.6904,0.83409,0.46667,-0.39196,-0.29915,0.17164,0.53447,-0.28122,-0.27505 -3.2962,-1.2382,-0.94772,0.38352,-3.9104,-0.012825,1.921,-0.66929,-1.6731,1.1827,-0.46738,0.86949,0.27311,-0.78729,0.28548,0.26359,-0.069171,0.28121,-0.19933,0.1415 -1.746,0.047436,0.50733,2.1478,-3.1306,-0.88169,0.91503,-1.5358,0.14931,-0.46111,0.35165,-0.057391,0.90011,-0.017704,0.31856,0.57678,0.44212,0.34195,-0.30181,0.096303 -3.0211,-0.81244,-1.2055,1.8683,-2.3275,-0.63057,0.27539,-0.51663,-1.6595,0.77901,0.013639,0.64887,-0.3854,-0.011366,-0.019375,-0.4551,1.1593,0.40012,-0.53788,0.70326 -1.6336,-0.59095,1.2347,1.4233,-2.2681,0.57476,0.98659,-0.64227,0.31927,-0.75052,0.65806,0.30204,0.41786,0.698,0.053412,-0.059758,0.46453,0.69379,0.029065,1.0595 -2.6004,-0.84856,-1.4717,0.40565,-3.0318,-0.22207,1.3023,-0.26776,-1.6553,1.1227,0.16295,0.69307,-0.42695,-0.45517,0.051204,-0.15083,-0.2676,0.24845,-0.4645,0.27176 -2.5368,0.94868,1.4706,2.0676,-2.4324,-0.57638,1.4158,-1.2815,-1.0008,-0.16636,1.0477,-0.4116,0.6807,0.11205,0.095019,0.97446,0.24407,-0.52576,0.1616,1.0644 -3.2974,-0.58087,0.52251,2.3748,-2.9428,-0.71599,0.74758,-0.36116,-0.87886,-1.2079,1.4908,0.060937,0.18046,-0.073583,0.54379,0.14836,1.8331,-0.067296,0.41136,-0.90968 -1.9846,-0.34741,0.70588,2.0816,-3.0735,-0.50174,1.4184,-1.1751,0.3565,-0.2504,0.84828,0.5324,1.2773,0.051618,0.5385,0.44783,0.37217,-0.27655,-0.2975,0.4609 -2.6692,0.54705,1.2282,2.9959,-2.0676,-0.28473,2.1837,-0.53239,-1.3881,-0.34371,1.0903,0.15475,0.74925,1.3156,0.63971,1.2105,-0.10968,-0.16557,0.20781,0.083948 -2.9402,0.30827,0.31258,1.8802,-3.6023,-0.90052,1.0028,-0.77947,-0.37165,-0.33294,0.74267,-0.48935,0.99987,0.47459,0.69704,1.1307,0.86134,-0.0037042,-0.81633,-0.15502 -0.84582,-1.1308,1.7811,1.1563,-2.225,-1.3659,0.39577,-0.20931,-1.2928,0.052061,0.60185,0.76137,0.052557,0.27085,0.85629,-0.45373,0.32945,0.4259,0.036603,0.18614 -1.02,-1.2178,1.0313,1.062,-2.1882,-0.75365,0.95967,-0.74964,-0.7853,0.4906,-0.56692,0.75491,0.44758,0.17953,0.59726,0.6096,0.1853,0.10075,0.10852,0.3001 -2.7384,0.028419,-0.87934,0.77733,-3.2158,-1.0526,-0.19497,-0.6948,-0.92624,0.74387,0.34419,-0.056633,0.42394,0.0017588,0.4506,0.041906,0.034782,0.26492,-0.40863,0.30366 -1.6172,-0.45272,0.44084,1.6916,-2.8391,-0.47829,0.12393,-1.2522,-0.16738,-0.66889,0.28886,-0.35523,1.3097,0.15418,-0.11724,0.47924,0.33283,0.37791,-0.40505,0.040806 -0.49396,-0.71941,0.74233,2.4218,-2.3996,-0.42894,1.3824,-0.75063,-0.77566,-0.86053,0.0054966,0.34917,0.053079,-0.046659,0.48515,-0.091901,0.50504,0.4271,0.17351,0.51038 -2.3674,0.30412,0.24131,2.807,-3.6688,-1.2573,1.2193,-0.60663,-0.76071,-0.82225,0.28735,0.52665,0.86638,-0.21972,0.18112,0.048448,0.19473,-0.80539,-0.21288,0.056703 -0.86634,-0.030398,1.2158,1.1522,-2.2786,-0.055921,1.3411,-0.67429,0.33523,0.60891,0.38701,0.4621,0.94118,0.04325,0.085776,0.42659,0.11163,0.4266,0.097631,-0.61119 -0.91597,-0.58124,1.7639,1.6658,-2.1463,-0.65267,0.65607,-0.35129,-1.8345,-0.34603,-0.22857,0.43783,0.65601,-0.24903,-0.78435,0.039923,0.24728,-0.26704,0.11722,-0.27498 -2.1626,-0.56308,-1.387,1.2267,-3.6917,-0.77591,1.2545,-0.56111,-0.57957,0.12116,0.83153,-0.23192,0.46429,0.45305,0.47822,1.0252,0.39055,0.83127,-0.17303,0.14238 -1.5522,-0.37439,-1.16,1.4512,-3.053,-0.065714,0.93087,-0.77103,-1.4663,-0.38512,-0.12877,-0.22447,0.48471,0.42148,0.2023,0.46926,0.18445,0.48702,-0.72256,0.060975 -0.51026,-1.3801,0.78286,2.4248,-2.3486,-0.36282,1.2071,-0.42702,-1.164,-1.1654,0.32222,0.61456,0.24002,-0.54055,0.98417,0.0057907,0.56684,0.41452,0.31534,0.64839 -1.2017,-1.092,2.2899,1.7632,-2.0921,-0.83567,0.55631,-0.33741,-0.62143,-0.13773,1.5935,0.7388,0.27176,-0.032801,0.26375,-0.49893,0.3209,1.2178,0.31253,0.10351 -2.1894,-1.1469,-1.2865,1.1296,-2.039,-0.45063,0.47873,0.42805,-1.2461,0.077405,0.27296,0.055014,-0.4748,-0.1327,-0.10605,-0.23514,0.88677,0.3776,-0.025366,0.28142 -1.6421,-0.60168,-0.94743,0.41578,-2.4875,-0.77636,1.0905,-0.67327,-1.7808,-0.32695,0.8386,0.10083,-0.12571,0.40719,0.2254,0.63738,-0.64047,-0.074593,-0.18175,0.51065 -1.3821,-0.31032,0.33872,2.1205,-3.5996,0.10112,1.511,-0.9676,-0.49449,-0.83941,0.44557,0.18221,0.40284,-0.76345,0.54881,-0.22113,0.22932,0.20666,-0.54845,0.27435 -1.0038,-0.69325,1.7215,1.8107,-1.8308,-0.99434,0.44244,-0.39649,-0.54086,-0.51265,1.2578,0.41688,0.33311,-0.21802,0.45385,-0.48346,0.26942,0.41669,0.5708,0.54722 -3.6242,-1.8816,0.03085,1.7533,-2.6714,-0.79418,0.72654,0.039319,-0.99096,0.58674,0.90875,1.1475,0.051578,-0.89104,-0.13824,-1.0406,0.48198,0.43259,0.47118,-0.43338 -0.53251,-0.42099,1.028,2.4393,-2.9766,0.60506,1.3487,-0.32607,-2.2331,-0.56523,0.15108,1.1017,-0.41743,-0.11355,0.75895,0.97583,0.42397,0.45204,0.32077,0.47292 -2.4239,-0.84055,-0.99541,1.0281,-1.5957,-1.2349,-0.017506,-0.30262,-1.1255,0.73796,0.8171,1.307,-0.27698,-0.67067,-0.28032,-0.36973,0.72701,-0.0099863,-0.77892,0.56998 -0.93574,-0.75516,0.51817,1.7732,-2.9075,1.0337,2.6941,0.017318,-0.88583,-0.61789,0.21344,0.26942,0.46626,1.079,0.40446,0.35379,0.87545,1.0854,0.29801,-0.5302 -0.92401,-0.81515,0.36214,1.7674,-3.209,0.12054,1.8473,-0.77907,-0.36055,-0.69567,-0.33298,0.4528,0.67578,0.47222,0.60802,0.33111,0.82559,1.1078,0.089126,-0.17284 -2.7433,-0.85113,0.79177,2.4354,-2.8153,-0.15233,0.24132,0.19677,-0.030937,-0.5293,0.67662,1.0068,0.9752,0.75505,0.24491,-0.50085,0.29962,-0.19139,0.19636,0.2146 -1.6398,-0.92319,0.1674,1.7809,-1.8216,0.18539,-0.0064603,0.3031,-0.387,-0.54184,-0.17689,0.35161,0.47624,0.06635,0.30391,-0.46646,0.089292,0.41604,0.27167,0.13018 -0.98973,-0.58195,0.5264,1.8578,-2.6954,-0.60773,0.72088,-0.39991,0.0043778,-0.95757,0.22877,0.071069,0.60971,-0.14458,0.67748,-0.36542,0.38327,0.66633,0.024613,0.15708 -1.6523,-1.1365,-0.31404,1.825,-3.0771,-0.65591,0.66316,-0.010013,-0.4061,-1.1399,-0.22872,0.039488,0.669,0.032291,0.6422,-0.42127,0.74507,0.05428,0.50803,-0.10694 -1.5492,-1.0694,-1.0219,1.2635,-2.923,-0.19022,0.66317,-0.24237,-0.85737,-0.23219,-0.49029,-0.51747,0.38459,0.24651,0.36974,0.31512,0.38306,0.098777,-0.55376,-0.21002 -0.97358,-1.0717,1.4039,2.6527,-2.5151,-0.82669,0.84295,-0.639,-0.69274,-0.41984,0.6803,0.7211,0.42493,-0.83507,0.61484,-0.78972,0.24916,0.46611,0.42879,0.38916 -1.0301,-0.73347,2.2279,1.5232,-1.7781,-0.70904,0.61864,-0.027845,-1.8148,0.050194,0.82764,0.73691,0.59685,-0.45251,-0.39051,-0.0061004,0.093498,0.1321,0.021436,-0.64501 -2.4969,0.066764,2.03,2.2758,-3.4489,-0.010961,1.5268,-1.0969,-0.81893,-0.16843,0.44663,0.10391,0.23041,-0.13196,0.68726,0.48338,-0.19715,0.30544,-0.30751,0.44729 -1.8918,-0.71615,0.74615,2.6908,-3.7133,-0.66675,1.0994,-1.2539,-0.84689,-0.90324,-0.082261,0.40044,0.8798,-0.91371,0.37906,0.13817,0.61502,0.13339,-0.38769,0.41178 -2.1912,-0.81026,0.097279,1.9187,-3.5734,0.24083,0.48024,-0.69701,-0.56278,-0.11818,-0.2054,-0.0088957,1.057,0.16734,0.71625,-0.22262,-0.11729,0.91676,-0.032175,-0.13304 -0.83414,0.43118,-0.02501,1.313,-2.57,-0.2832,1.4682,-1.226,-0.076704,0.13271,-0.20996,0.76564,0.016325,0.24781,0.21332,0.53202,0.51396,0.022406,-0.19662,-0.31519 -1.248,-0.49551,-0.28062,0.80828,-2.3248,0.84065,1.1092,-0.67663,-0.75348,0.59397,-0.34508,0.70394,-0.25037,0.85963,0.69461,0.03505,0.63699,0.46944,0.4043,-0.52054 -1.5431,-0.025713,-0.66061,1.2014,-3.3693,-1.1163,1.1713,-0.80406,-1.1762,-0.44631,1.1212,-0.45497,0.72915,0.44401,-0.071361,0.6397,0.08968,0.39418,-0.48059,0.41914 -1.1324,-0.54188,-0.45169,1.3435,-2.79,-0.434,0.68463,-0.61641,-0.32134,-0.64197,0.11742,0.48442,1.1292,-0.19216,0.43239,0.68718,0.64823,0.05589,-0.54117,-0.33262 -1.6568,0.15545,-0.61209,0.92698,-3.405,-0.6522,1.6116,-1.1116,-0.94059,-0.11161,0.81916,0.2192,0.18612,0.68419,0.04808,1.0895,0.59506,0.45177,-0.78786,-0.41188 -1.6172,-0.90044,2.5829,1.8249,-2.596,-0.93151,1.237,-0.71062,-1.259,-0.097162,0.82832,-0.45675,0.64439,0.21761,-0.14962,-0.29075,0.063058,0.43899,-0.10441,0.2628 -2.3611,-1.2583,-0.15896,2.2829,-3.0632,0.10438,0.095338,-0.34908,-0.6969,-0.24094,-0.018591,-0.4009,0.42109,0.11319,0.20307,-0.92288,0.2287,-0.057373,0.58194,0.21461 -1.7047,0.18162,-0.24575,1.0937,-2.5983,-0.77573,0.85969,-0.6713,0.13776,0.12125,0.70467,-0.098006,-0.026324,0.34283,0.35871,1.5148,0.65927,0.56566,-0.89644,-0.12468 -2.4493,0.25574,-0.8921,0.42132,-3.2687,-1.6231,0.61167,-0.57865,-0.90718,-0.29607,1.2068,-0.28552,-0.48294,-0.28772,0.51741,0.69785,-0.042781,0.4024,-0.43676,-0.22609 -1.784,-0.68084,-0.89346,0.22932,-2.6641,-0.46215,0.37145,-0.7105,-0.82224,-0.10138,0.63358,0.77154,0.5033,0.098368,0.34768,0.5641,-0.21117,0.73993,-0.14441,0.16446 -0.32386,0.052154,-0.086828,1.1931,-1.7823,-0.14496,0.96097,-0.87504,-0.84749,-0.59433,-0.43889,-0.30681,0.26458,0.60831,-0.12501,0.10567,0.67958,0.21644,-0.28459,-0.0097635 -1.248,-0.12361,-0.11525,1.4386,-2.8729,-1.0944,1.0776,-0.99016,0.016974,0.28936,0.21598,0.67277,0.51797,-0.20903,0.30513,1.03,0.53029,0.10637,-0.20515,0.1716 -1.4221,0.38358,-0.38924,0.49046,-2.4094,-0.65658,0.67635,-0.81039,-1.0123,-0.80285,0.27537,0.34287,0.0020934,0.018259,0.44394,0.12856,-0.3426,0.30714,-0.32694,-0.88048 -1.0947,0.16959,-0.25929,1.9653,-3.0774,-0.56608,1.4571,-0.97497,-1.0445,-0.97843,0.31728,0.24906,1.2537,0.050843,0.15705,0.60712,0.63529,-0.13177,-0.32053,-0.21762 -2.1058,-0.46037,-0.53407,0.8295,-3.3904,0.0053764,1.1019,-0.64595,-0.034914,0.044831,-0.27692,-0.010776,1.2177,0.87339,1.1007,0.14932,0.29528,0.69181,-0.055593,-0.19926 -1.5664,-0.42423,0.86787,2.703,-3.6409,-0.63336,1.4065,-0.94396,-0.096817,-0.70699,-0.010897,-0.087092,0.76293,-0.38403,0.30482,0.099837,0.3695,0.73782,-0.13274,0.32256 -1.5592,-0.15316,1.8542,2.7517,-2.8389,-0.71532,0.78363,-1.2972,-0.41569,-0.074308,0.27977,0.37876,0.60294,0.12472,0.021769,0.17463,-0.070014,0.26665,0.30748,0.29245 -2.027,-1.0949,-0.84487,0.90349,-4.0305,-0.319,1.5991,-0.52197,-1.5389,-0.45479,-0.14152,0.39628,0.37881,0.1234,0.50276,1.206,0.55669,0.38699,0.26107,-0.19922 -2.0587,-0.13611,-1.1808,0.82061,-4.0806,0.10855,2.41,-0.54103,-1.806,-0.35928,0.29886,0.95558,0.075955,0.77064,0.22137,1.0884,0.63099,0.61704,0.28469,-0.46283 -0.44775,-0.55317,0.24821,1.8831,-1.9113,0.92046,1.6041,-1.2226,-1.2891,-0.75279,0.26092,0.10921,0.28844,-0.0014037,0.52407,0.45099,0.53763,0.33789,-0.26462,0.0010936 -0.80717,-1.0802,1.087,1.5816,-2.7835,-0.36002,0.8646,-0.74005,-0.0063156,-0.38839,-0.41403,0.56327,0.81228,-0.047342,0.2703,-0.15165,0.27391,0.83285,0.34937,0.51776 -1.1902,-0.59126,1.7055,2.4269,-2.6114,-0.71108,0.69546,-0.8835,-0.66697,-0.45481,0.17354,0.56903,0.60927,-0.12181,-0.048988,-0.24732,0.049328,0.11696,0.47701,0.45531 -1.0132,-1.1928,1.8867,1.5871,-2.1037,-1.1166,0.70435,-0.20292,-0.75659,-0.20753,1.0307,0.76126,0.13261,-0.027208,0.53871,-0.95785,0.30992,0.88882,0.070957,-0.24025 -2.5808,0.015519,-0.90118,0.041294,-3.5257,-1.3882,0.1463,-0.90857,-1.3445,0.86869,0.37708,0.39371,-0.23788,-0.3482,0.34463,-0.066525,0.11364,0.41921,-0.3373,0.4547 -0.94185,-0.64803,1.7758,1.8795,-2.2907,-0.74995,0.087516,-0.84483,-0.90522,0.33692,0.75893,-0.23337,0.86896,-0.25802,0.085421,-0.40145,-0.12307,0.51876,0.47428,0.29022 -1.4333,-0.43746,2.0897,2.1774,-2.2616,-1.5742,1.2815,-0.893,-0.48962,-0.030735,1.0286,-0.025606,1.0239,0.46972,-0.25852,-0.37764,0.39109,-0.047521,0.21979,-0.17695 -1.6856,-0.22834,2.1512,2.5975,-2.428,-0.73807,1.2422,-0.97769,-0.94437,-0.23809,1.0571,0.074563,0.98716,-0.43138,0.078287,0.010962,0.10117,-0.16678,0.42299,0.10897 -1.8553,0.28245,-0.77255,0.94949,-2.7518,-1.4899,1.2181,-0.41323,-0.68724,0.29233,1.2445,0.035733,-0.07184,0.47501,0.35636,1.0924,0.31372,0.56346,-0.24181,-0.63877 -1.0202,-0.63319,-0.4572,0.92072,-2.5843,-1.1965,0.40931,-0.25142,-0.28673,-0.44341,-0.073878,0.35805,1.0844,-0.21256,0.47268,0.50969,0.58237,-0.11287,-0.15385,-0.059057 -2.4694,-0.13986,1.4215,1.8291,-2.62,0.74519,0.18948,-0.50796,-0.45268,-0.83193,0.34245,0.28655,0.09985,0.85157,0.057803,0.064538,-0.40805,0.66981,0.5531,0.34153 -0.80899,-0.3343,-0.3253,1.3778,-1.8712,0.06813,1.1071,-1.3147,-1.8988,-0.60047,0.25144,-0.47542,-0.3225,0.90425,0.39203,0.68342,0.40743,0.64731,-0.33649,-0.17843 -1.5853,0.0057622,1.8062,2.1555,-2.3248,-0.61412,0.86967,-0.44507,-1.9455,-0.17523,-0.32359,1.3504,1.342,-0.68612,-0.12258,0.32329,0.29176,-0.0253,0.43881,-0.14865 -1.4858,-0.019916,-0.52656,1.8712,-3.6318,-0.58985,1.3321,-0.51167,-1.7509,-0.85703,0.031049,-0.38009,1.0211,-0.19172,0.084227,0.57685,0.24212,-0.13845,-0.63334,-0.39718 -1.2955,-0.45448,0.89668,2.0512,-2.2291,-0.33415,0.15904,-0.41007,-0.15846,-0.8301,0.91614,0.78482,0.42057,-0.96516,0.36382,-0.83496,0.17444,0.49093,-0.13637,0.23178 -0.76402,-0.32331,0.96356,1.6857,-1.966,-0.46614,0.58245,-1.0582,-0.026441,0.075587,0.17668,-0.010667,0.44955,-0.095961,0.079702,-0.072615,0.20087,0.6218,0.12791,0.15818 -1.2544,-0.27352,-1.332,0.78259,-2.2766,-0.34587,0.90493,-0.78695,-1.113,-0.18577,0.43277,0.52796,0.19863,0.91075,0.28046,0.91668,0.67169,0.22327,-0.24639,-0.18195 -2.3986,-0.26013,0.54224,1.9603,-2.4409,0.63911,-0.47762,-0.59751,-0.025015,-0.15794,0.87465,-0.1296,0.57268,0.12982,0.38076,-0.37946,0.021662,-0.011904,0.25171,-0.002084 -1.0827,0.47407,1.4228,0.95508,-1.9246,-0.18824,1.0398,-0.86461,-0.90846,0.059882,-0.0052629,0.45277,0.43594,-0.24729,0.34848,0.41058,-0.56212,0.19467,0.21792,0.14166 -1.0343,0.47153,0.26736,2.1124,-2.3407,-0.15543,0.95541,-1.2902,-1.8069,-0.94175,-0.35985,0.73599,-0.33522,0.16707,0.54785,0.73773,0.61235,0.29529,-0.018997,-0.33436 0.10984,-1.1313,0.57679,1.4826,-1.5591,0.4385,2.155,-0.82419,-1.3286,-0.64343,0.72071,0.32298,0.28175,-0.010902,0.89737,-0.049521,0.56894,0.35446,-0.022466,-0.035892 -1.0269,-0.28958,1.202,1.3373,-2.8927,0.54131,1.3915,-0.7441,-0.048825,-0.32331,0.37259,0.38412,0.75238,0.23698,0.41418,0.50313,-0.053604,1.2898,-0.080893,-0.17194 -0.72871,-0.81254,0.75148,1.5222,-2.3659,0.23038,1.0043,0.24547,-0.69284,-0.67575,0.10448,0.54103,0.79159,0.033205,0.59993,0.07528,-0.19082,0.48026,-0.13794,-0.27578 -0.67399,-1.4636,1.2687,1.7586,-2.3933,-0.96776,0.9705,-0.371,-0.62664,-0.46028,0.0068904,0.51807,0.6037,-0.34764,0.62773,-0.53637,0.31566,0.97042,0.31185,0.12889 -1.6556,0.85323,-0.52782,0.7794,-3.0945,-1.1937,1.447,-0.72989,-0.57969,0.14799,0.22727,-0.034091,-0.39103,0.29077,0.15435,1.3212,0.53632,0.29601,-0.5416,0.071938 -2.8158,-0.48453,-1.0955,0.90506,-3.2723,-0.90403,-0.085688,-0.43154,-0.64122,0.50768,1.5254,0.17964,0.25901,-0.4071,0.06773,0.53142,-0.027076,0.5405,-0.4084,0.16898 -0.59291,-1.2425,0.6808,1.1482,-2.0996,-0.046844,0.34178,-0.15473,-0.54326,-0.72232,0.17772,0.6331,0.40081,-0.15712,0.55842,-0.50838,-0.088758,0.45524,0.24693,0.29513 -1.0114,-0.97251,1.3415,1.3816,-2.8255,-0.22692,0.93396,-0.43677,-0.12812,-0.049253,0.54828,1.1255,0.11338,-0.53446,0.60114,-0.62855,-0.10827,0.66697,-0.25037,0.0020246 -0.83339,0.26675,-0.93042,1.0943,-2.1014,0.0078602,1.3425,-0.085345,-0.022728,-0.48106,0.20681,0.61722,-0.12109,0.00574,-0.54894,0.50152,0.6519,0.25179,-0.22188,-0.085371 -1.8116,0.64086,-0.38869,1.5833,-3.3172,-0.44348,0.38109,-1.0955,-1.2527,0.011168,-0.12509,-0.028697,0.65651,1.0307,0.038288,0.38073,0.26614,0.8738,0.28121,-0.14303 -1.452,-0.60183,2.0533,1.9785,-1.8359,-0.73936,0.03747,-0.6284,-1.6552,0.067911,1.1915,-0.17363,0.37915,0.17788,-0.32971,-0.31379,-0.13191,-0.09991,0.36108,-0.53259 -0.97468,-0.5948,0.20192,1.9168,-2.7488,-0.82591,1.1627,-0.54067,0.10125,-0.64773,0.018046,0.30935,0.77313,-0.41795,0.49817,0.038101,0.97235,0.57833,-0.21138,-0.084148 -1.4817,-0.29491,0.48577,-0.017535,-1.164,0.74303,1.8078,0.99349,-0.20838,0.34055,-0.082267,0.54384,0.35259,0.97711,0.36955,0.45367,0.061217,0.13888,0.50053,0.22585 -2.9806,-0.80314,-0.22508,1.6941,-2.4656,-0.90825,0.37078,-0.24337,-1.4187,0.33982,1.1354,0.96511,0.8735,0.037725,0.33719,-1.1506,0.6672,1.0594,0.38943,0.54282 -2.3508,-0.74033,-1.0905,0.76939,-2.3304,-0.91968,0.46593,-0.63995,-1.2173,0.7976,0.11489,1.2266,-0.89711,-0.12373,-0.42809,0.018653,0.46085,0.21565,-0.72545,-0.11447 -2.2475,-0.72467,1.4405,1.0024,-2.5501,-0.078313,-0.68757,-0.65581,-1.1763,-0.16872,1.1609,-0.52198,0.21738,-0.051643,-0.60919,-0.79594,0.0038224,0.30924,0.10516,0.18942 -2.975,-0.64007,0.40702,2.4897,-2.0776,0.24059,-0.00097503,-0.36787,-1.5572,-1.0917,1.7563,-0.087201,-0.53917,0.36299,-0.22968,-0.024115,1.0784,0.15584,0.75143,-0.50113 -1.5661,-0.61008,2.4083,1.3897,-1.9951,-0.10565,0.32452,-0.79925,-0.7284,0.20259,1.5276,0.23362,0.42713,0.59232,-0.32941,-0.41871,0.22305,0.7825,0.29627,-0.029059 -1.8319,0.02829,1.4534,2.4759,-2.8548,-0.39939,0.6433,-0.72802,-0.17539,-0.33116,0.78769,0.55829,0.49617,0.083994,0.18601,-0.29049,-0.31041,-0.014816,-0.19691,0.38264 -0.90392,-0.98436,1.3828,1.9475,-2.5784,-0.37276,0.99217,-0.36918,-0.21778,-0.66328,0.37156,0.81887,0.81911,-0.59611,0.48276,-0.31689,0.06447,1.2484,0.34756,0.36857 -1.7484,0.59687,-0.99424,1.0792,-2.3065,-0.28746,0.89772,0.14135,0.2021,-0.096266,0.92421,0.60205,-0.3948,0.031933,0.51194,1.0486,0.19551,0.20099,-0.53456,0.036656 -0.57631,-0.89428,0.21473,0.81877,-2.6212,0.53713,1.7219,-0.833,0.055162,-0.57641,-0.087371,0.88869,0.78297,0.43348,0.6494,0.29277,0.65706,0.58906,0.0037728,-0.22645 -1.2596,-0.3293,0.056264,1.5834,-2.5549,-0.73766,1.0559,-0.26697,-0.56346,0.021048,0.2047,0.936,-0.12808,-0.72228,0.27068,-0.64343,0.74542,-0.50424,-0.067519,0.013983 -1.2892,-0.4905,-0.27417,0.97458,-2.8366,0.7523,1.2138,-1.2814,-1.0465,-0.7072,-0.062641,0.50874,-0.11107,0.52626,0.070373,0.72024,1.0103,0.57682,-0.03954,-0.32926 -0.83705,0.46198,-0.31901,0.8197,-2.0355,-0.77307,1.3513,-0.7893,-0.45937,0.14018,0.7608,-0.15711,0.56592,0.47253,0.17128,0.54693,0.40725,0.042534,-0.58516,0.12386 -1.9812,-1.2091,-0.5999,0.82205,-2.8446,0.45443,0.63195,0.06149,-0.30428,-0.018544,-0.10983,0.59173,0.6357,-0.27735,0.41816,1.1125,0.11205,0.65216,-0.13185,-0.15156 -1.8342,0.79886,-0.17131,1.226,-2.9378,-0.99662,1.5723,-1.4535,-0.42324,-0.31181,0.14856,-0.16602,-0.011116,0.16148,0.24396,0.88745,0.23131,0.78661,-0.44296,-0.14295 -1.8983,0.020258,0.46616,2.0521,-2.6668,-0.36379,-0.7112,-0.96437,-0.43888,-0.62607,0.48688,0.41635,0.21931,0.10627,-0.12235,-0.36907,0.83237,0.31532,0.56776,-0.36105 -1.5771,0.023329,1.5502,2.511,-2.2731,-0.12733,0.30419,-0.32129,-0.92486,-0.53524,0.58347,0.87419,0.63679,-0.41439,-0.20219,-0.10995,-0.05828,-0.035305,0.55364,0.27865 -1.8373,-0.16078,1.1156,1.6416,-2.0058,-1.3777,0.16291,-1.352,-0.90934,0.18759,0.33723,0.40951,0.45397,0.33553,0.37674,-0.43507,0.09618,-0.86145,-0.45324,-0.53649 -1.4733,-0.17369,-0.66686,1.2027,-3.0145,-1.0495,0.25494,-0.89155,-0.35359,-0.60509,-0.094999,0.27238,0.19425,-0.0016915,0.31107,0.78514,0.23894,0.12876,-0.57874,0.29328 -1.4543,-0.090087,-0.48193,1.5579,-3.2977,-0.29258,2.1083,-0.67655,-0.39825,-0.73718,0.072881,0.12456,0.46725,0.36614,0.42001,0.64319,0.72913,0.91882,-0.38715,-0.32249 -1.1377,-1.015,0.63486,1.7523,-3.4135,0.07025,1.2062,-0.44324,-0.29541,-0.97635,-0.2673,0.57369,0.35037,-0.31139,0.64697,-0.084264,-0.39955,0.84096,-0.17302,-0.15939 -2.1759,-1.4334,-0.39748,1.5397,-3.921,-0.1232,1.4447,-0.044322,-0.84897,-0.72678,-0.091426,0.10646,0.72973,-0.15301,0.56332,0.7933,0.20772,0.61154,0.26594,-0.63428 -1.5644,0.49058,1.9024,1.6898,-1.9405,-0.50176,0.60295,0.29003,-1.8349,0.14823,0.13316,1.376,0.38083,-0.88292,-0.12939,0.4938,0.20772,0.36539,-0.13778,-0.78266 -0.66699,0.074489,0.78026,2.2683,-2.2776,-0.27586,1.455,-1.0549,-0.41322,0.10446,-0.035709,0.050231,-0.11526,-0.15348,0.059032,-0.0056216,0.021555,0.79627,0.20379,0.2182 -1.6635,-0.65685,-1.2202,1.4862,-3.3846,0.37718,1.6426,-0.17539,-1.9795,-0.50323,0.16465,-0.73596,1.0397,0.094473,0.10357,0.24816,0.55116,0.32325,0.12072,-0.40085 -1.0036,-0.23445,0.67737,2.2349,-2.8831,-0.99042,0.5939,-1.1851,-0.24853,-0.54586,-0.057999,0.39893,0.85692,-0.46226,0.27011,-0.36464,0.41845,0.1657,0.14983,0.45981 -0.7513,0.026525,0.041142,1.3564,-1.9086,0.93019,2.0322,-0.99719,-0.72854,-1.1421,0.89357,0.12583,0.33761,-0.18391,-0.223,0.60356,0.54714,0.045198,0.12291,-0.36039 -2.6155,-0.76537,-0.78915,0.66029,-3.2075,-0.56761,0.40932,-0.40504,-0.69193,1.0102,-0.048252,0.79519,0.91188,-0.24655,0.9405,-0.15231,-0.11673,0.36824,0.28379,0.046269 -0.11974,-1.2753,1.4219,0.69127,-2.1588,-0.68017,0.41121,-0.0073913,-1.9223,0.082921,-0.3366,0.36061,1.0873,-0.25708,0.1161,0.25901,0.061897,0.18303,0.10344,0.14568 -0.2199,-0.33631,0.40422,0.90185,-1.9599,-0.001258,1.228,-0.5045,-0.003976,-0.36372,0.15498,1.0071,0.80245,-0.16842,0.47169,-0.086139,0.5525,0.69738,0.14105,-0.52962 -2.3905,0.45343,0.22188,1.6578,-3.504,-0.85413,0.63335,-1.5216,-1.4161,-0.46037,0.3065,-0.040812,0.15924,-0.20205,0.4023,0.11219,0.36962,0.014628,-1.0109,-0.20222 -0.8268,-0.35528,0.17258,1.1097,-2.7926,-0.18236,1.1978,-0.45799,0.033189,0.22858,-0.51969,1.125,-0.007318,0.0082239,0.46275,1.0921,0.52557,1.0734,0.16319,-0.1915 -1.0567,-0.42217,-0.39925,1.4181,-2.1274,0.30151,0.38811,-0.69849,-0.41575,-0.31197,-0.31632,-0.05998,-0.1328,-0.28814,-0.15284,0.017849,0.19841,-0.061534,-0.98605,-0.11123 -1.691,0.62362,-0.49025,0.54314,-2.8073,-0.68161,1.1316,-0.99705,-0.49259,0.13253,0.18761,-0.91243,-0.71404,0.47051,0.32654,0.16284,1.0102,0.79905,-0.035865,-0.051748 -0.40498,-0.5186,-0.92659,0.19327,-1.9564,-0.27227,1.7073,-0.14906,-1.4453,0.03232,1.059,1.0544,-0.16036,0.40588,-0.13277,0.80626,0.8231,0.3173,0.078308,0.26597 -0.8771,0.40004,1.0179,1.5405,-2.2591,-0.53739,0.53489,-1.3958,-0.98601,-0.21412,-0.15346,-0.38066,-0.068891,-0.50218,0.34402,-0.23441,-0.095275,0.17935,0.27957,0.037505 -0.77328,-0.55018,0.1288,1.5895,-1.7152,-0.021347,0.26238,0.019234,-0.52906,-0.91272,-0.080491,0.34613,0.61642,-0.53485,0.31951,-0.036376,0.26142,0.031389,-0.17674,0.3083 -1.2359,-0.10776,0.70623,1.6243,-2.4339,-0.72064,1.9029,-1.2577,-0.18073,0.2274,0.49779,0.33558,0.72648,0.58193,0.41276,0.071183,0.18542,0.012032,-0.52217,0.21424 -0.16958,-0.45314,-0.14787,0.79369,-1.372,-0.087176,0.78396,-0.36393,-0.809,-0.48399,0.036116,0.58704,0.47035,0.020911,0.4592,0.7814,0.60459,-0.067373,0.099373,0.33351 -1.1478,-0.38043,-0.65841,0.34909,-2.1735,-0.58335,0.42475,-0.35701,-0.74899,0.59558,0.13889,0.020459,-0.12059,0.39218,-0.097048,0.27833,-0.42764,-0.38105,-0.27168,0.33548 -2.6984,0.40255,0.37817,2.0356,-2.6128,-0.94511,0.04255,-1.1884,-0.63259,-1.071,1.0309,-0.35683,0.47985,0.5176,0.087312,0.80404,0.54229,0.057941,-0.092779,0.56505 -2.0391,0.038581,1.6833,2.7604,-2.7281,-0.72692,0.61903,-1.4658,-0.89456,-0.33741,0.17065,0.65775,0.436,-0.66471,0.69537,-0.058823,0.09058,0.13224,0.33282,0.34028 -2.1929,-0.21775,0.61217,2.4398,-2.6294,-0.8642,-0.037896,-1.7201,-0.40015,-0.87389,0.43374,0.52386,0.78612,-0.35422,0.13106,-0.40839,0.50201,-0.18543,0.12374,0.173 -0.63772,-0.75398,0.46554,2.1001,-2.6843,-0.34475,0.98051,-0.27406,-0.81539,-1.0767,-0.34732,0.14753,0.12547,-0.040307,0.55057,-0.054184,-0.055601,0.35429,0.15393,0.22255 -2.3209,0.27534,0.87929,2.2506,-2.7837,-1.0097,0.00091675,-1.6,-0.21181,-0.8257,0.12177,0.24943,0.18883,-0.37001,0.40359,-0.21332,0.60436,0.060608,0.16244,0.22778 -0.76992,-0.13555,-0.84975,0.58804,-2.4452,-0.052791,1.797,-1.0027,-1.3383,-0.51623,0.76185,0.37446,-0.016129,0.9398,-0.16106,0.87657,0.75078,0.45302,-0.24532,-0.28447 -0.4006,-1.1048,0.12228,1.6294,-2.089,0.2004,0.86801,-0.58383,-1.5876,-1.1922,0.29599,-0.065704,0.095013,-0.55327,0.74526,0.23669,0.26602,0.30204,-0.35746,0.12793 -2.0097,-1.1709,0.86307,1.3557,-3.6364,-0.16437,0.72614,-0.096838,0.17713,-0.56847,0.092102,0.3765,1.2426,-0.15534,1.0101,0.070732,0.054968,0.92629,0.17029,-0.25595 -1.3497,-0.449,-0.19267,1.8362,-2.7679,-0.25587,0.3364,-1.1544,-0.63735,-0.59579,-0.47908,-0.073076,0.85718,0.26974,0.16328,0.46878,0.46397,0.19132,-0.0095631,-0.34698 -1.0434,-0.33713,1.3706,2.3643,-2.5618,-0.68367,0.73852,-0.46799,-0.24075,-0.44845,0.73944,-0.058508,0.58554,-0.54215,0.10564,-0.14683,0.20355,0.89765,0.39679,0.71759 -1.1399,-0.10928,0.53808,1.4968,-2.2634,0.51798,1.1419,-1.3222,-1.3276,0.016599,-0.20871,-0.12787,0.5488,-0.31521,0.34783,0.044211,-0.38561,0.24612,-0.51852,0.10572 -1.2198,-0.73124,0.61757,1.0068,-1.9107,-0.52764,-0.7011,-0.046991,-1.1935,-0.16052,0.045287,1.2139,0.96549,-1.2871,0.41968,-0.32147,0.097899,-0.086943,-0.41338,0.084177 -1.0043,-0.39932,1.6849,1.8078,-2.1747,0.16978,1.0156,-1.023,-0.20887,0.085386,0.71126,0.031425,0.40179,0.047634,0.24707,0.25347,-0.29533,1.0941,0.36904,0.55717 -1.7701,-1.6568,-1.0386,0.49172,-2.6371,-0.04398,1.2096,-0.11382,-1.6154,0.096649,0.074503,-0.030733,0.064268,-0.58532,0.52566,0.23392,0.20727,0.54185,0.036369,0.2402 -1.4954,-0.63968,1.3488,1.1292,-3.0463,-0.29999,1.2733,-1.1173,-0.77472,0.42478,0.82131,-0.36799,-0.050036,0.22825,0.37359,-0.59045,0.10764,-0.25829,-0.32655,0.01524 -0.94097,-0.44217,1.0948,2.1129,-2.491,-0.38807,0.93109,-1.5375,-0.31505,0.46983,0.089496,0.14402,0.77581,0.26057,0.24307,-0.14064,0.1483,0.67985,0.075375,0.44036 -2.0627,-0.10171,1.3485,1.3356,-2.688,-0.96351,0.36205,-1.2181,-0.084697,-0.097458,0.29004,0.93907,0.64193,0.17667,0.78277,0.67324,0.08648,0.45588,0.29128,1.0228 -1.7437,-1.3681,0.15757,1.9193,-3.6283,-0.022473,1.2001,0.1021,-0.6731,-1.3969,-0.41462,0.15201,0.35683,-0.24057,0.62621,0.30163,0.65317,0.80365,0.30697,-0.28045 -1.6285,-0.29715,2.351,2.812,-2.707,-1.0427,0.75037,-0.66845,-0.92541,-0.10517,1.2673,0.28462,0.69287,-0.55708,-0.12218,-0.67786,0.415,0.30297,0.73427,0.30888 -0.16007,-0.89504,1.3428,0.92422,-1.6428,-0.6261,1.1435,-0.048109,-0.74841,-0.10738,0.40316,0.38864,-0.046722,0.6824,0.50025,0.098226,0.30788,0.71916,0.07892,0.80719 -1.9093,0.12379,2.1128,0.56945,-1.4498,0.0043411,0.16259,-0.4148,-1.275,-0.68803,0.35601,-0.55253,-0.078053,-0.091131,-0.66474,0.50222,0.55225,-0.28351,0.25179,0.74458 -1.5071,-0.93782,1.6308,1.6246,-2.681,-0.56264,0.85952,-1.3583,-0.21047,0.13366,0.89553,-0.33269,0.3124,0.53456,0.27581,-0.34692,0.0080787,0.23705,0.25017,0.80734 -0.93797,0.33126,-0.54463,0.91264,-3.3013,-0.72463,1.6974,-0.9312,-0.59861,0.0093996,-0.20928,0.25884,-0.062426,0.42353,0.17551,0.81644,0.83707,0.50894,-0.32586,-0.049301 -3.1019,0.38646,0.6902,2.4271,-3.3175,-1.9702,0.82927,-1.3326,-1.4021,-1.0589,0.64443,0.46998,0.93805,-0.029714,0.95147,0.39878,-0.39057,0.54287,0.26312,0.29389 -2.0617,-0.30006,2.4041,1.5073,-2.725,-0.78183,0.89265,-1.2353,-1.3578,0.093374,0.26322,-0.13344,0.2033,-0.01548,-0.51725,-0.45127,-0.016471,0.051891,-0.42014,-0.34159 -2.0236,-1.0115,0.30517,1.6812,-3.2702,-0.22911,0.43241,-0.15128,0.23363,-0.7222,-0.50947,0.32045,0.59502,-0.3705,0.56003,0.041591,-0.033463,0.68504,0.30161,-0.5182 0.090793,-0.17697,0.35762,1.4256,-1.9115,0.15809,2.2649,-0.57608,-0.45229,0.002651,0.51509,0.76682,-0.21196,0.25472,-0.074174,-0.38204,0.69475,0.6043,0.20627,-0.15653 -0.18873,-0.767,0.42162,1.569,-2.0576,-0.24021,1.889,-0.77015,-0.40799,-0.21572,-0.16278,0.52849,-0.31702,0.30069,0.46002,-0.11724,0.65968,0.33474,0.02971,-0.043987 -2.6559,-1.0425,-0.83263,0.86523,-3.0249,-0.00072733,0.58581,-0.35627,-0.84819,1.273,-0.13155,0.56818,0.52678,-0.55498,0.22522,0.27392,0.065769,1.0416,-0.30337,0.64795 -0.63864,-0.86119,0.035111,1.2285,-1.9527,-0.27061,0.63816,0.03595,-0.16939,-0.54905,-0.22556,0.40285,0.43904,-0.093466,0.61288,0.01428,0.36933,-0.049327,-0.064476,0.18684 -3.3862,-0.91315,-0.42003,2.5192,-1.5103,0.093728,0.58819,-0.5467,-1.6395,0.20513,0.30472,-0.38075,-0.86591,-0.31172,-0.47207,-0.69191,1.6858,0.75232,0.37903,0.64404 -2.0897,-0.78185,-0.65787,2.0676,-3.4842,-1.1283,0.40712,-1.0687,-0.63246,-0.77037,0.092683,-0.40047,0.66544,0.37646,0.19213,0.61357,0.66998,0.40061,-0.076593,0.40319 -1.3819,-0.93423,-0.46183,1.4387,-2.7469,-0.57043,0.13955,-0.46906,-0.53958,-0.82907,0.00025697,-0.029687,0.98288,-0.04115,0.31573,0.69645,0.72886,0.073609,-0.46351,-0.21521 -2.0138,-0.38587,-0.66358,0.76983,-2.5221,-0.83476,1.2949,-0.23582,-0.82085,1.0174,1.843,-0.42661,0.70995,0.37201,-0.31878,1.3369,0.81787,0.62315,-0.48303,0.3237 -2.5156,-0.51466,1.2142,2.465,-2.3989,0.071136,0.44708,-0.77849,-0.55361,-0.15391,1.0546,1.5611,-0.35324,-0.29177,0.096896,-0.97327,0.51543,0.24563,-0.37361,0.37577 -2.1007,-0.61266,-0.6582,0.68111,-2.4468,-0.98159,0.83269,-0.85337,-0.58171,0.42547,-0.075937,0.0048746,0.65057,0.15902,0.025504,-0.15232,0.18342,1.3334,-0.20169,0.82858 -0.8854,-0.67281,-1.1714,0.53186,-2.7042,-0.31398,1.7456,-0.27727,-1.9391,0.31939,0.99672,0.038198,0.013513,0.98901,-0.067635,0.67374,0.69125,0.37586,-0.020349,0.42228 -2.041,-0.59063,-0.90847,1.5005,-3.1712,-0.11576,0.33399,-0.55931,-0.88891,-0.28148,-0.61902,-0.029094,0.15639,0.37849,0.66554,-0.34226,0.21843,-0.65059,-0.045789,0.16157 -2.0263,0.047523,1.0013,2.9457,-3.0217,-0.65981,0.5081,-1.1983,-0.053406,-0.6786,0.59212,0.39926,0.80552,-0.60922,0.17944,-0.21389,0.16398,-0.094708,0.24984,0.24075 -0.88364,-0.63104,-0.86177,0.63442,-2.3158,-0.66699,0.99408,-0.41942,-0.68853,-0.037189,0.31575,0.43381,-0.16077,0.43731,0.061056,1.0307,0.74069,0.6095,-0.11473,0.11298 -1.5621,-0.095326,1.2304,2.6376,-2.8296,-0.66648,0.85367,-0.704,-0.3398,-0.44246,0.81768,0.18813,0.33981,-0.96031,0.48376,-0.39424,0.54662,0.46456,0.30569,0.11614 -0.62566,-0.65341,0.35632,1.3608,-1.9057,-0.095032,0.52171,-0.54246,-0.099472,-0.63574,-0.47007,0.13848,0.23085,-0.10489,0.30951,-0.12887,0.085772,0.45069,0.022898,0.17181 -0.19387,-1.11,1.0026,1.6932,-1.9357,-0.34665,1.157,-0.68823,-1.5569,0.070253,-0.2093,-0.3028,-0.32931,0.17736,0.52864,0.050038,-0.21284,0.30771,0.2055,0.1333 -1.9824,-0.92534,0.17071,2.7447,-3.1096,-0.32202,0.21108,0.022576,-0.72342,-1.3963,0.33954,0.15935,0.62221,-0.35741,0.3705,-0.41274,0.23518,0.077477,0.21935,0.054422 -0.9102,-0.56651,-0.0060572,1.5052,-3.1977,0.5125,2.4073,0.35669,-1.268,-0.84502,0.19738,0.56628,0.57511,0.4307,0.35186,0.3506,-0.019358,-0.1867,0.41614,-0.29545 -0.87225,-0.64872,-0.20093,1.8606,-2.8292,-0.89738,1.1489,-0.80183,-0.7036,-0.99551,-0.31404,0.14156,0.64439,-0.042815,0.20977,0.27595,0.52256,-0.62832,-0.10825,0.37277 -0.45276,0.42113,0.76486,0.12803,-0.89816,-0.24221,0.56384,-0.27052,-0.96975,0.19199,0.2239,0.44952,0.55003,-0.081598,0.31425,0.37562,0.079414,0.37996,-0.036601,-0.091217 -4.0759,-0.40389,-0.26123,0.81337,-4.2608,-0.62799,1.4184,-0.91188,-1.0973,0.71061,-0.020692,0.46828,-0.41928,-0.54065,0.45059,0.17429,0.18176,0.73064,0.011536,-0.10906 -0.56013,-0.38466,-0.53886,0.33184,-1.4513,-0.0066297,0.54231,0.0041437,-0.58547,-0.11675,0.33966,0.19279,0.10544,-0.08938,-0.037271,0.82805,0.26653,0.19892,-0.26039,-0.091661 -0.96689,-0.37738,-0.43059,0.28331,-2.7745,-0.63795,0.64661,-0.36531,-0.50106,0.026566,-0.49238,-0.26412,0.037581,0.19337,-0.010618,0.96745,0.44101,0.64494,0.27445,-0.40515 -1.796,-0.28345,1.1961,2.981,-3.2429,-0.58977,0.081541,-0.55482,-0.91465,-0.61827,0.52294,-0.25974,0.97634,-0.15285,0.12324,0.36864,0.098858,0.63543,0.55805,0.067575 -0.59851,-0.59315,0.39718,1.5965,-2.0599,-0.44199,0.62709,-1.0088,-0.36887,-0.39682,-0.14621,0.34327,0.16401,-0.35498,0.39799,-0.43801,0.13354,-0.17808,0.088705,0.59178 -1.5687,-0.98645,2.4369,2.2883,-2.6149,-1.4637,0.61799,-0.21086,-2.3623,0.18271,0.77928,-0.10461,1.2411,-0.54882,-0.091886,-0.28075,0.2071,-0.22838,0.10307,-0.80282 -2.439,0.22824,-0.19891,1.9632,-3.0246,-1.4204,-0.057887,-1.213,-1.4062,-0.46931,0.81281,-0.27199,0.43922,-0.054076,-0.38152,-0.48192,0.15738,0.74344,0.07776,0.3184 -0.44635,0.14982,0.45705,1.1369,-1.698,-0.45686,0.67886,-1.1957,-0.55209,-0.16883,-0.52912,-0.0025271,-0.25087,0.21764,0.16901,-0.051146,0.30546,0.10925,0.1604,0.089438 -2.0363,-0.062514,-1.2922,1.6556,-3.6227,-0.55709,1.9443,-0.43317,-2.1877,0.22328,0.58588,-0.089855,-0.033501,0.89253,0.20022,0.49553,0.713,1.171,-0.32074,0.28334 -1.0676,-0.52044,0.87173,1.8519,-2.4058,-0.6167,0.97512,-1.3574,0.16772,-0.32109,0.30469,-0.14169,0.25837,-0.25125,0.50382,0.021328,0.23337,0.23343,-0.098119,0.40786 -1.2111,-0.5549,-1.2424,-0.037657,-1.6558,-0.030409,1.1962,-0.62977,-1.66,0.45309,1.2054,0.59145,0.17575,0.57644,0.20998,0.64967,0.0014229,0.64251,-0.083684,0.099998 -0.88057,-0.84377,1.5272,1.7126,-1.7281,-0.44266,0.58421,-0.44295,-0.021051,-0.22026,0.95339,0.4279,0.45522,-0.3063,0.25309,-0.41296,-0.0524,1.0796,0.43183,0.54305 -1.351,-0.52861,1.1913,2.3712,-3.0733,-0.59292,0.83428,-1.4433,-0.19677,-0.18143,0.26902,0.088792,0.82398,-0.6955,0.53405,-0.47093,-0.020427,0.40859,0.090244,0.54673 -1.4463,1.2639,0.44266,2.1444,-2.2131,-0.84762,1.5208,-1.3628,-0.72516,-0.21108,0.73494,0.33853,-0.089415,0.84368,0.11948,0.96076,-0.35941,0.48668,-0.0060919,0.49182 -1.3025,-0.34471,0.0077395,0.52514,-2.5098,-0.26371,1.4996,-0.35709,0.14892,-0.045312,0.63436,0.44239,1.5125,-0.44444,0.40346,0.9686,0.6396,0.56092,-0.053088,-0.25267 -1.7623,-1.3869,-0.60077,1.1055,-3.2871,-0.30215,0.094963,-0.24387,-0.70602,0.37823,-0.40505,0.36732,0.61767,0.1556,0.59759,1.2124,0.34401,0.56964,0.34492,0.0098468 -1.2683,-1.1306,2.1216,2.1212,-2.9593,-1.1412,1.3904,-0.76168,-1.4566,0.058131,0.27298,-0.34741,0.84683,-0.062268,0.021502,-0.40552,0.073494,0.12619,-0.36873,-0.34315 -1.4765,-0.20194,1.8985,1.8999,-2.8526,-0.69734,1.2036,-1.1613,-2.0342,0.3366,-0.16512,-0.49616,0.60975,-0.23817,-0.061359,0.014058,0.066985,-0.1024,0.024106,-0.48517 -1.2366,-0.094622,0.18966,2.0782,-2.8587,-0.22128,1.4162,-0.6531,-0.067899,-0.26323,-0.27475,-0.12633,0.51286,0.47247,0.31841,0.24885,0.21689,0.43827,-0.18691,-0.33618 -0.25148,-0.34214,0.36714,2.3649,-2.158,-0.083616,2.1923,-0.93539,-1.391,-0.83217,0.27286,0.48646,0.17374,-0.49645,0.58396,-0.12089,0.781,0.19889,0.3665,-0.025882 -0.83473,0.32445,-0.62791,1.1862,-2.7788,0.19659,1.3666,-1.4497,-0.74921,-0.50929,-0.39453,0.5186,-0.042936,0.3877,-0.12818,0.48674,1.0235,0.32839,-0.093153,-0.33767 -1.7764,0.14472,1.6134,1.3016,-1.8897,-0.02665,0.92223,-0.89374,-1.947,0.5226,-0.25475,1.2232,0.90579,-0.47177,0.46929,-0.28577,0.20063,0.30307,-0.35409,-0.57254 -1.318,-0.88079,2.2026,2.6925,-2.7181,-0.99308,0.50546,-0.93276,-1.4844,0.20817,0.21471,0.0073259,0.31507,-0.34906,-0.033158,-0.22935,0.017313,0.24317,0.78117,0.16459 -1.6087,-0.8311,1.4357,2.5822,-2.769,-0.61164,1.0074,-1.0123,-0.80261,-0.051086,0.33665,0.23829,0.71405,-1.0522,0.73655,-0.82613,-0.048418,-0.15961,-0.11115,-0.058766 -0.80456,-0.72769,-0.67157,0.31842,-1.9312,0.32098,1.3991,-0.52504,-0.69057,-0.50081,1.2426,0.54046,0.43456,0.10719,0.035461,1.021,0.76848,0.55117,0.071526,0.049 -2.3454,-1.2017,-0.90637,0.98528,-2.6589,0.032611,0.82713,-0.45198,-1.0638,0.48935,-0.52337,0.24784,0.41366,-0.078661,0.97148,-0.25035,0.20718,0.23704,-0.17892,0.014891 -1.7681,-1.436,0.14254,1.7463,-2.7932,0.53805,0.17685,0.37806,-0.71792,-0.60842,-0.61933,0.38102,0.49658,-0.12773,0.55587,0.18015,-0.13584,0.39428,0.099556,-0.038447 -2.1677,-0.29649,0.26734,2.6044,-3.4163,-1.0649,0.85639,-1.4865,-1.4157,-0.95891,-0.18196,0.057044,0.82886,-0.74065,0.68199,0.27783,0.49717,0.062405,-0.64441,-0.0449 -0.53879,-0.42776,-0.066174,0.79258,-1.8011,-0.56499,0.45067,-0.62121,-0.42594,-0.14197,-0.21006,0.60625,0.20795,0.32972,0.41473,0.84612,0.52155,0.48673,-0.20519,0.16838 -2.027,0.75966,0.3707,2.4668,-2.8687,-1.1643,1.7948,-1.0209,-0.8662,-0.21665,1.0639,0.21307,1.2214,0.69255,0.37791,1.0063,0.10215,-0.083396,-0.6343,0.25643 -1.6045,-0.5768,1.4174,2.7039,-2.3803,-0.86318,1.221,-0.38326,-0.55474,-0.89026,1.6434,0.748,0.84575,-0.42926,0.46147,-0.64081,1.0998,0.27874,0.37469,0.38477 -0.57249,-0.63505,1.114,1.8612,-2.0044,-0.6398,0.58527,-0.35547,-0.38633,-0.63128,0.28093,0.28315,0.4481,-0.086513,0.11033,-0.41716,0.074271,0.55889,0.54234,0.52334 -1.4478,-0.22207,1.0674,1.3649,-2.6839,-0.57557,0.9308,-1.232,0.43456,0.77899,-0.17371,0.23012,0.76911,-0.04472,0.33701,0.31283,0.29392,0.40971,0.25694,-0.35139 -1.0852,-0.95496,-0.81911,0.34641,-1.5944,-0.15871,1.4719,-0.47576,-1.4248,0.48814,0.81565,-0.18669,0.37829,-0.27854,0.43526,0.066589,0.45812,0.24475,-0.21109,0.63117 -0.73885,-0.57831,0.19504,0.94291,-2.1583,-0.2345,0.56592,-0.61131,-0.16023,-0.33119,-0.21784,-0.15764,0.38792,-0.3905,0.14846,0.27266,0.28851,0.97205,-0.061676,-0.36785 -1.4272,0.32679,1.3068,1.0054,-1.7429,-0.6189,-0.47605,-1.223,-0.69618,0.60189,0.53366,0.43425,0.67764,0.6043,0.032273,-0.32239,0.26979,-0.47455,0.53413,-0.13867 -2.0804,-0.37455,-0.85846,-0.3042,-3.2239,-0.98383,0.83056,-0.039118,-1.452,0.83089,0.79056,0.81965,-0.49076,-1.0255,0.46977,0.33693,-1.0634,1.0588,0.21997,0.085993 -2.0748,0.28406,1.2357,1.495,-3.6356,-0.41893,1.6002,-0.53364,-0.24423,0.17166,0.6049,-0.17818,-0.4253,-0.58728,1.0254,0.32491,0.24718,-0.66848,-0.65383,-0.11671 -1.8335,-0.52165,2.3025,1.8813,-1.9436,-1.1984,-0.028222,-0.48904,-1.9032,0.032818,0.94313,-0.23974,1.0124,0.061206,-0.18097,-0.14824,0.17592,-0.27376,0.25024,-0.53238 -0.77487,-0.42506,-1.0527,0.14083,-1.8168,0.35189,0.8888,0.028131,-1.057,0.19004,0.50359,0.65802,0.72675,0.7111,0.19947,1.1179,0.5118,0.4237,0.40195,-0.10052 -0.57019,-0.93141,1.0904,1.1795,-1.9623,-0.60936,1.1871,-0.46719,0.13117,0.14235,0.1539,0.64759,0.88783,-0.24732,0.19304,-0.18135,0.44201,0.68574,0.52931,-0.21461 -1.7001,1.1443,0.32909,1.6734,-2.2936,-0.95406,0.95415,-1.2434,-0.92283,-0.5384,0.80961,-0.2699,0.77904,0.68183,0.16733,1.2306,-0.11863,0.67455,-0.35306,0.05768 -0.45287,0.19628,1.5178,0.45124,-1.8692,-0.15436,0.62853,-0.62957,-1.1309,-0.10741,0.53396,-0.35009,0.38067,-0.5779,-0.42294,0.27692,0.053882,0.17319,-0.23337,-0.048778 -1.239,-0.48621,0.34299,2.6792,-1.2902,-0.81226,-0.15302,0.76108,-1.2801,-0.8626,0.27472,1.1619,-0.31637,0.16882,0.066335,0.074059,1.0193,0.024801,0.33355,0.22609 -1.6696,-0.81574,-1.0344,1.4689,-2.422,-0.30252,0.23564,0.065639,-0.99374,-0.41916,0.54668,0.35189,0.3816,-0.47354,-0.089792,0.73929,0.74394,-0.41567,0.076244,0.074594 -1.8631,0.16355,0.073553,1.9169,-2.7765,-0.7639,0.23726,-1.4132,-1.341,-0.17476,0.4098,-0.47931,0.74297,0.42988,0.42129,0.60623,-0.0089052,1.1056,-0.15652,0.017666 -1.6484,-0.73116,-0.42723,1.0276,-2.7607,0.093349,0.34075,-0.53294,-0.22304,-0.25904,0.57027,0.19282,0.48943,-0.19854,0.21377,0.55518,0.17046,0.21651,-0.83803,0.18571 -0.58879,-0.47732,0.55288,1.7164,-1.5596,-0.054292,0.18786,-0.18605,-0.71886,-0.69912,0.4117,0.63727,0.46507,-0.60995,0.27773,-0.21511,-0.16292,-0.083605,0.16722,0.41859 -1.1453,0.86924,0.66968,1.8116,-2.0987,-0.27077,1.3105,-1.6077,-1.8208,0.43065,0.1156,0.94027,1.7011,-0.18603,0.9153,0.31122,0.25938,0.49313,0.067053,0.15468 -0.97407,-0.5027,-0.47899,0.2825,-1.547,0.3256,0.24277,-0.40463,-0.3001,-0.2733,0.16242,0.21931,0.086183,0.18154,0.36584,0.92076,-0.049365,0.083183,-0.3287,0.011698 -1.797,0.4945,2.1355,2.0382,-2.4469,-1.1335,0.65083,-1.4454,-1.3294,0.54253,0.32411,-0.32331,0.31637,-0.21889,0.17207,0.51366,-0.25911,0.085723,0.40118,-0.072869 -1.6951,-0.98544,1.7225,2.2876,-2.5469,-0.30654,0.7979,-0.26339,-0.85518,-0.28443,0.78902,1.3428,0.07492,-0.92019,0.80516,-0.73726,0.033578,0.73974,-0.34919,0.027009 -1.3547,-0.75663,0.58897,2.4926,-3.1323,-0.55152,0.62868,-0.58342,-0.46975,-1.1742,-0.12052,-0.072976,0.82172,-0.082726,0.58099,-0.10636,0.12466,0.68099,0.31228,0.32716 -1.3149,-0.61618,0.61564,1.6798,-2.4419,-0.62158,-0.0082955,-0.55712,0.19058,-0.80395,0.47925,0.81792,0.96755,-0.56594,0.22236,-0.60671,0.70678,0.10695,0.17762,0.0016616 -1.0302,1.7597,0.96947,2.2862,-1.9051,0.2354,1.3918,-0.18771,-0.92485,0.78776,0.40209,0.51692,-0.61065,-0.24012,0.2866,0.28388,-0.19412,0.34139,0.02256,-0.43647 -1.5061,1.8942,1.5655,1.9714,-2.8636,0.061299,1.2398,-0.051475,-1.2183,0.042939,0.47578,0.17232,-0.94518,-0.75541,1.0714,0.086902,0.60428,0.31277,0.58853,0.026558 -1.1402,0.98574,-0.92862,1.944,-2.8093,1.2492,1.202,-0.35693,-1.4051,-1.076,-0.10203,0.61725,0.73381,0.60804,-0.54585,0.12698,0.54376,0.42325,-0.30597,-0.25159 -1.8327,1.5734,-0.99209,0.67809,-2.1983,0.35415,0.5652,0.018525,-1.0291,-0.70166,0.70791,0.78056,0.61854,0.86191,0.92981,-0.40725,0.065703,0.48864,-0.47923,-0.37098 -2.0114,1.6124,-0.39791,0.015835,-3.0072,-0.98546,1.1986,-0.39354,-1.4548,-0.2504,0.36499,-1.0266,-0.36675,0.6307,0.22818,-0.38851,0.83512,0.58762,0.32462,-0.27593 -0.20844,0.35863,-0.15216,1.6567,-2.2248,0.10062,1.379,-1.2834,-0.80943,0.073739,-0.30084,0.95646,-0.52784,0.35765,-0.20729,-0.43391,0.47209,-0.071136,-0.18706,0.042768 -2.0168,1.1642,-0.82967,0.13636,-2.5108,-0.26791,0.65857,0.13545,-1.7132,-1.1939,1.154,0.52366,0.48103,1.1872,1.1584,-0.60833,0.25447,0.28126,-0.70958,-0.58051 -1.6311,1.7787,0.29544,2.5174,-2.4939,0.64054,1.2023,0.34535,-1.4863,0.26121,-0.10334,0.94775,0.075978,-0.20675,0.79929,-0.55951,0.090032,-0.011404,-0.41244,-0.36052 -0.85775,0.84239,-0.38892,-0.000775,-1.5149,-0.51426,0.32259,-0.036763,-1.1535,-0.45146,0.16394,-0.38711,-0.38625,0.50883,0.18551,-0.62825,-0.18832,0.5103,0.47601,-0.27111 -2.034,0.12059,0.16694,-0.31625,-1.2035,-1.0129,1.8468,-0.44045,-2.6925,-0.30684,1.0851,-0.20112,0.97933,-0.47562,0.13526,-1.5054,-0.030353,0.31345,-0.20167,0.14917 -1.5143,1.6896,-0.043048,1.8064,-2.5246,0.022897,0.40434,-0.89768,-0.28656,-0.99534,0.19992,0.78134,-0.21621,0.17495,-0.092946,0.25469,0.004993,0.46269,-0.33253,-0.06169 -2.0317,1.7436,0.91911,1.7474,-3.3633,0.14471,0.6154,-0.66436,-0.29561,-0.55069,0.090139,0.71832,0.010273,-0.4282,0.9684,-0.31391,0.71387,0.81059,0.26031,0.16106 -1.4541,1.1549,-0.90799,0.20225,-2.4998,-0.92795,0.75562,1.0215,-0.80178,-0.97289,0.58798,-0.39738,-0.24363,-0.17613,0.31351,0.013298,0.93674,0.44274,0.18933,-0.42325 0.10333,0.41927,0.31228,2.0154,-1.7375,0.62745,1.4507,-0.62653,-1.5159,0.12372,-0.079005,0.95918,-0.29208,-0.12604,-0.344,-0.33907,0.10208,0.058293,0.22572,-3.4276e-05 -1.5312,0.85162,-0.82768,0.30419,-1.508,-0.45664,-0.0099927,0.61004,-0.35622,-0.37323,0.57314,0.19247,0.10205,0.394,0.54084,0.088896,-0.14745,0.44649,-0.79605,-0.54607 -0.34449,0.30413,1.2006,1.0944,-1.7746,-0.56746,0.30443,-0.39509,-1.056,0.58638,0.0092998,-0.14901,-0.35253,-0.2747,-0.039333,0.1075,0.21596,0.55538,0.5905,-0.20805 0.056455,0.10755,0.59586,1.8207,-1.8158,-0.10879,0.99039,-0.22177,-1.1015,0.46921,0.018875,0.71463,-0.57312,-0.17104,-0.27054,-0.30219,-0.055916,0.39404,0.22558,0.091701 -1.1105,0.98327,-0.77321,-0.28513,-2.4717,-0.31792,0.32426,-0.49814,-1.3184,-0.78836,-0.098898,0.085651,0.042409,1.028,0.2163,0.20191,0.6821,0.24238,0.33677,-0.16022 -2.3336,1.6774,-0.42747,-0.0074652,-2.5492,-0.72464,0.57655,0.0347,-2.3929,-0.70976,0.57901,-0.40818,0.30195,0.47842,0.61784,-1.1297,0.067118,1.1673,0.40362,-0.99885 -2.0066,1.1639,-0.53376,-0.25615,-1.8572,-0.52792,0.56798,-0.39023,-0.9009,-0.31822,0.24775,-0.93177,-0.289,0.66402,0.62854,-0.39102,0.66918,0.51865,-0.13744,-0.29713 -0.30195,0.66769,0.28099,1.1871,-1.676,0.22393,0.67442,-0.8074,-0.26644,-0.21244,-0.13827,0.57611,-0.69154,-0.29757,-0.24369,-0.25109,0.094256,0.26929,0.33599,0.049819 -1.7225,1.498,-0.18626,0.49081,-1.433,-0.2357,0.56966,0.21896,-1.1019,-1.0325,0.18486,-0.47584,0.29481,0.25699,0.70254,-0.714,0.061104,0.70428,-0.045968,-0.854 -0.30953,0.16805,-0.7997,1.1998,-1.4336,0.018209,1.5364,-0.22935,-0.72245,-0.35143,0.0034639,1.1456,-0.21244,0.12114,-0.1408,0.23065,0.92227,-0.1092,-0.43567,0.90437 -1.38,1.6121,1.1618,1.7838,-2.0544,0.2342,0.44069,-0.72849,-0.63029,0.10409,0.74537,0.76342,-0.75782,0.095279,0.44749,0.11051,-0.15884,0.65813,0.37476,0.072053 -2.5987,0.88639,0.58751,0.0855,-2.2281,-0.73014,0.80243,-0.10142,0.034128,-1.0222,0.55818,-0.73867,-0.022623,0.61657,0.77346,0.37412,0.84495,0.72732,-1.0539,0.34723 -0.54013,0.86646,0.081512,0.74963,-2.0659,0.15605,0.24722,-0.38074,-0.63701,-0.81876,-0.5035,-0.0050254,-0.5893,-0.0073801,-0.29337,0.23849,0.50812,0.3546,0.26425,-0.15555 -1.3866,2.026,0.069467,1.4284,-2.5402,0.54443,0.43705,0.083498,-1.3525,-0.72193,-0.27361,0.53095,-0.16312,-0.16413,0.4239,-0.034981,0.055332,0.67283,0.11166,-0.60399 -2.0708,0.84102,-0.8647,-1.0883,-2.3886,-0.82151,0.13163,0.19345,-1.1318,0.48487,0.98362,0.29506,0.17625,0.44998,0.78488,-0.83523,0.25225,0.54511,0.47927,-0.30743 -2.0525,1.5124,1.2413,2.5106,-2.1728,0.10603,1.6143,0.12312,-2.1403,1.1207,0.33053,0.78526,0.40309,0.93755,0.83834,0.54869,0.027923,-0.043291,-0.30162,-0.52104 -0.079338,0.77301,0.57956,1.8687,-1.5861,0.12265,1.5945,0.12114,-0.76891,0.41038,0.20715,0.29891,-0.26083,-0.16369,-0.43627,-0.44867,-0.063339,0.63255,0.19934,-0.13064 -0.7964,1.058,-0.2232,1.2689,-2.1966,0.58472,0.32765,0.16453,-1.6288,-0.76615,-0.41716,-0.30054,-0.12763,-0.073299,-0.22684,-0.29044,0.08505,0.30843,0.24546,-0.67973 -1.2586,1.7647,-1.211,1.2378,-2.3696,0.029092,0.91663,0.664,-1.4369,-0.83102,0.13453,1.1167,0.76916,0.40983,-0.025804,-0.0073176,-0.031017,0.81228,-0.56363,-0.043429 -0.98636,1.1884,1.1534,0.94993,-1.0756,-0.50101,0.51407,-0.37566,-0.7485,0.42286,0.51291,0.29019,-0.4181,0.25985,0.27335,0.28785,0.068153,0.73197,0.34952,-0.17875 -1.9613,1.8855,-0.48938,0.43387,-2.5778,-0.69475,0.27889,-0.14681,-0.88219,-0.94747,0.56154,-0.29769,-0.44259,0.67501,0.58986,0.094115,0.0078338,0.75069,-0.25272,-1.0482 -1.6385,1.6076,0.97815,1.5695,-2.3012,-1.0208,0.82357,-0.93972,-0.20644,0.17262,0.47481,0.86234,-0.65905,0.069674,0.88098,-0.30237,0.0096554,0.49419,-0.090301,-0.28108 -1.5973,1.7976,1.2799,1.8454,-2.7307,-1.1034,1.3232,-1.1778,-0.72828,0.44197,0.17478,0.53601,-0.9192,0.24332,0.94679,-0.14656,0.1677,0.70319,0.095963,-0.25697 -1.0963,0.90533,0.124,2.7701,-2.7385,0.34378,1.7583,-0.28879,-0.27907,-0.11475,-0.015423,0.77003,-0.35537,0.47693,-0.13913,-0.24555,0.053917,0.34458,-0.35425,0.48855 -0.448,1.0028,-0.050989,1.7623,-1.5216,-0.0074438,1.5208,-0.20466,-0.30521,0.026405,-0.48518,0.71499,-0.32771,0.089484,-0.3535,-0.36025,0.16125,0.14181,-0.1875,0.58707 -1.1864,1.666,0.29161,0.92041,-2.4427,0.28093,0.61936,-0.27349,-0.54489,-0.98849,-0.32322,-0.37418,-0.53216,-0.36701,-0.032486,0.22143,0.75919,0.3523,0.057952,-0.33747 -2.1533,2.2992,0.73867,2.0888,-2.6645,-0.058887,1.5165,-0.47087,-0.94178,-0.31463,0.57915,0.66265,-0.72352,0.1234,1.3815,0.13438,0.17258,0.17893,0.050583,-0.39766 -0.89539,0.53097,1.5218,1.9648,-2.1519,-0.60597,0.52398,-0.67418,-1.2537,1.0998,0.50768,-0.14315,0.24647,0.58191,-0.39478,0.25281,0.08551,0.49129,-0.25743,-0.50952 -1.3118,1.0893,-0.99064,1.8963,-2.5698,0.6571,0.74347,0.26324,-1.3398,-0.82436,-0.79054,0.52582,-0.10376,0.49435,-0.15587,-0.17596,0.55176,0.26271,-0.8875,-0.1988 -1.3492,1.7867,0.035451,1.1753,-2.8274,0.15628,1.0367,-0.82319,-0.73446,-1.3342,-0.40197,-0.021488,-0.19052,-0.50876,0.2162,-0.034169,0.574,0.25657,0.25575,-0.27581 -1.8081,0.84543,-0.54061,-0.32499,-1.7256,-0.92139,0.53747,0.34976,-0.73326,-0.36025,1.0271,-0.64928,-0.67544,0.34557,0.62725,-0.33609,0.20701,0.13896,0.23046,-0.12969 -1.6949,1.6129,-0.42144,2.5416,-3.2324,-0.17371,1.5326,-0.52784,-0.57256,-0.15191,0.21756,1.196,-0.45296,0.51862,0.43483,-0.069235,-0.042616,0.30808,-0.80488,0.26086 -1.3129,1.5574,1.5711,2.0541,-2.2189,-0.2992,1.1865,-0.81943,-0.95648,1.1986,0.70773,0.089635,-0.43978,0.59731,0.22464,0.4863,-0.12697,0.23636,-0.10629,-0.74968 -1.6467,2.0539,0.039185,1.596,-1.8431,-0.17681,1.1249,0.30849,-0.65186,-0.68138,0.24325,0.54747,-0.29836,-0.12873,1.0251,-0.43805,-0.32171,0.24657,-0.16039,-0.38071 -0.45914,0.65235,-0.069907,1.2361,-1.5602,0.54652,0.63824,-0.16658,0.12024,-0.12813,-0.040094,0.61143,0.061726,-0.16476,-0.47191,-0.44513,-0.023353,0.27122,-0.36488,0.23099 -1.875,2.0132,0.76699,1.805,-3.0765,0.062986,0.74521,-0.51974,-1.1096,-0.94736,-0.022162,0.69545,-0.50076,-0.65592,0.89143,-0.25111,0.44221,0.81774,0.18623,-0.064992 -2.5191,1.5907,0.23129,1.4751,-2.1743,-0.63472,2.0788,-0.359,-1.0249,-0.43866,1.3668,1.0926,-0.013869,0.84404,1.0905,0.74648,-0.52836,-0.27881,-0.5082,-0.43447 0.015887,0.58669,0.70303,1.3061,-1.6738,0.032926,1.081,-0.77252,-0.83784,0.71337,0.050429,0.38748,-0.19336,0.078455,-0.33714,-0.32981,-0.011856,0.44029,0.33513,-0.55798 -0.11256,0.16077,-0.17174,1.6591,-1.5487,0.82446,0.99493,-0.21459,-1.0901,-0.49497,-0.15651,0.81144,0.026802,-0.31657,-0.54462,-0.32467,0.35701,0.25063,-0.27747,0.14322 -0.68252,0.63544,0.16188,1.1042,-1.6686,0.62566,-0.09855,-0.39718,-0.8249,-0.75616,0.12772,-0.15465,-0.56017,-0.11172,-0.25937,0.21908,-0.26065,0.45902,0.19506,-0.33189 -2.3823,2.4295,-0.56493,1.1585,-2.6293,-0.20691,0.43483,0.0047795,-1.7764,-1.1214,0.15105,0.14323,0.10047,0.33629,0.78099,-0.068408,-0.080696,0.86708,-0.20271,-1.0718 -2.216,1.4513,-0.44361,0.69099,-2.6714,0.53596,-0.3318,0.13742,-2.0451,0.33249,-0.40648,0.28815,0.84454,0.3918,0.58756,-0.57741,0.66202,0.60203,-0.42487,-0.86794 -0.98248,1.1657,0.54633,1.1753,-1.4236,0.17935,0.23495,-0.13153,-0.32779,-0.25245,0.12141,0.63,-0.42616,-0.58511,0.19839,-0.26576,0.11028,0.75567,0.11039,0.20754 -0.71128,0.90074,-0.87142,1.4909,-2.2202,0.54307,0.78553,-0.38221,-0.61078,-0.92101,-0.29634,0.8159,-0.055211,0.51298,-0.274,0.08694,0.22856,-0.086736,-0.39904,0.022259 -1.4585,1.3752,1.9449,2.2224,-2.7099,-0.29734,0.86359,-0.90223,-0.90038,0.63605,1.0587,0.57721,-0.34803,-0.39031,0.68713,0.26635,0.21995,0.3165,0.39097,-0.36493 -0.17566,0.42773,-0.043628,1.1386,-1.2521,0.12815,0.89908,-0.33583,-0.028786,-0.089303,-0.30565,0.49912,-0.10732,-0.22319,-0.42763,-0.56571,0.45382,0.37484,-0.10742,0.3753 -0.53685,0.87158,-0.46175,1.0907,-1.7109,0.78973,0.40673,-0.5047,-1.4124,-0.81419,-0.32095,0.83523,0.043993,0.5222,-0.28976,0.13713,0.26647,0.3182,-0.38948,-0.45081 -0.64086,1.1572,0.24776,1.8804,-2.2577,0.51276,0.87199,-0.17986,-0.64241,0.013679,-0.18573,0.73099,-0.69389,-0.067792,-0.23801,-0.30036,-0.27713,0.33395,-0.0075475,0.1281 -1.238,1.7234,0.23977,0.95154,-1.1832,-0.14794,0.91126,-0.081166,-0.52048,-0.51219,0.60899,0.46749,-0.49108,-0.049337,0.85399,-0.061669,-0.34801,0.10409,-0.068778,0.059322 -0.89272,1.411,0.31402,1.4646,-1.7458,0.15577,0.48421,0.24995,-0.68218,0.16765,-0.14497,0.7029,-0.48935,-0.40778,0.18384,-0.46627,-0.23889,0.38375,-0.21038,-0.20301 -3.7811,0.15716,1.8678,0.9976,-2.7459,-0.1641,0.24227,-0.33107,-1.4674,-0.78978,0.42689,-0.49938,0.16015,-0.31012,-0.33477,-0.26384,1.264,1.6662,-0.33432,-0.24984 -0.01063,0.14745,0.73589,1.8801,-1.504,0.015376,1.3915,-0.18919,-1.6966,1.0188,-0.43083,0.088131,-0.23207,0.21017,-0.50044,0.1843,0.5696,0.47384,0.10633,-0.11388 -1.7886,1.0389,1.4881,3.0826,-2.7097,-0.16535,1.5182,0.15811,-1.8954,1.0892,0.48411,0.50768,0.25043,0.78488,0.4706,0.16743,0.42972,0.31883,-0.53891,-0.23846 -1.6973,1.8152,-0.17321,1.2921,-2.4756,0.19306,0.20864,-0.34185,-0.39258,-0.99081,0.031125,0.12852,-0.50039,0.14542,0.46794,0.055603,0.11402,0.66786,-0.30139,-0.42512 -0.79771,1.1682,-0.93915,0.88398,-2.0648,-0.002892,0.53444,-0.38188,-1.3387,-1.1553,-0.23606,0.64719,-0.02355,0.9385,-0.34265,0.01224,-0.33862,0.27563,-0.31081,-0.37818 -1.3957,1.5616,0.47904,0.73927,-2.0659,-0.054264,0.68023,-0.73827,-0.20921,-1.2878,0.038421,-0.12946,-0.51113,-0.092846,0.29251,0.28752,0.74516,0.59742,-0.080258,0.32947 -0.69658,1.0691,-0.61556,0.8478,-2.2122,0.18797,0.60782,-0.54997,-0.78993,-0.97295,-0.64977,0.28653,-0.002468,0.40207,-0.35548,0.12799,0.68174,0.14538,0.063118,-0.39535 -1.5821,0.61306,-1.3945,0.086872,-2.5704,0.20906,0.24563,-0.1241,-0.60621,-0.10952,0.97426,0.16377,-0.24871,1.2381,-0.44448,0.73654,-0.018427,0.34486,-0.29218,-0.51251 -0.20624,0.99844,0.36347,1.108,-1.7072,0.45859,0.6126,-0.086768,-1.0632,-0.067777,-0.41741,0.94498,-0.18971,-0.75106,-0.17768,-0.12703,0.32393,0.44702,0.57995,-0.058986 -2.0586,1.3044,-0.67873,2.0585,-2.2916,0.51345,1.0658,0.25331,-1.3489,-0.60872,-0.151,1.0405,-0.18978,0.57715,1.0204,-0.72576,-0.23528,0.40993,-0.66844,-0.051557 -0.85924,1.3301,0.25904,1.3099,-2.7642,0.22664,1.3798,-1.0463,-0.64738,-0.86563,-0.6779,0.52986,-0.57252,-0.39791,-0.038625,-0.23306,1.0337,0.18478,0.27674,0.24995 -0.47755,0.70814,0.51789,1.7673,-1.7948,0.31809,0.58275,-0.48862,-0.44039,0.20228,0.015913,0.84451,-0.58161,-0.36579,-0.30378,-0.26507,-0.27014,0.30221,0.14096,0.32378 -0.70695,0.6827,1.1879,2.4785,-2.3483,-0.48447,1.4158,-0.57697,-0.58364,1.0364,0.51485,0.20866,-0.34953,0.0037126,-0.29781,-0.18747,-0.18087,0.48577,-0.24617,-0.61517 -1.3071,1.1334,-0.98033,1.2751,-2.8819,0.42942,0.51761,-0.42942,-1.9669,-0.91768,-0.36291,0.30645,-0.11744,1.0218,-0.38683,0.0074949,0.18929,0.37172,-0.44698,-0.79383 -0.87821,0.90384,0.76127,1.644,-2.4719,-0.64956,1.0625,-1.3546,-0.18449,0.9079,0.21588,0.43031,-0.49056,0.34081,0.13646,-0.066812,0.060108,0.38158,-0.34936,-0.46108 -1.4778,2.3344,0.35477,1.1781,-2.0881,-0.096977,1.2165,-0.1764,-0.67305,-0.98663,-0.040373,0.13641,-0.46774,-0.40924,0.89998,0.086189,0.57544,0.42901,0.22635,0.13281 -0.98278,1.0041,0.86256,0.33561,-1.115,0.050016,-0.047954,0.359,-1.3198,0.23938,0.56787,-0.082191,-0.053721,-0.21588,0.79551,0.37993,1.0077,0.063655,0.48233,-0.20123 -0.44369,0.48231,-0.13892,1.5158,-1.7809,0.51861,1.137,-1.3124,-1.0149,-0.71124,-0.10497,0.8754,-0.75694,0.087411,0.11854,-0.29465,0.51115,-0.0010165,-0.15725,0.045977 -1.0689,0.62079,2.0307,2.1677,-2.6662,-0.52982,0.68932,-1.0316,-1.9797,0.59676,0.40872,-0.041855,0.016249,0.76976,-0.41914,0.99111,0.20145,0.46623,0.42996,-0.18451 -0.99382,1.6313,-0.27878,1.2239,-1.6454,0.35307,0.62886,0.33894,-1.1244,-0.21692,-0.23652,1.1408,0.56863,0.0037836,0.33136,-0.29314,0.10122,0.7913,-0.57496,-0.01996 -0.58976,1.0032,0.050334,1.8378,-2.3477,0.42228,0.77856,-0.20982,-0.60155,-0.2297,-0.33978,0.76057,-0.63927,-0.19713,-0.067511,-0.52384,-0.21555,0.033589,0.098102,-0.059717 -2.5924,2.1149,-0.53756,0.122,-2.787,-0.50295,0.75077,-0.053613,-1.8415,-0.88926,0.36006,-0.78584,-0.46181,0.62711,0.71354,-0.13478,0.60754,0.91737,0.29195,-0.7358 -0.87527,1.1233,-0.77136,0.75806,-2.2792,0.25787,0.48965,-0.68125,-0.94189,-1.0193,-0.37014,0.68003,-0.20183,0.79007,-0.25924,0.071598,0.30845,0.19119,-0.25211,-0.47438 -0.6875,1.5077,0.17351,0.81263,-1.7824,0.026606,0.86386,-0.42815,-0.48211,-0.79317,-0.6608,0.18076,-0.33383,-0.28779,-0.23749,-0.083966,0.70518,0.41305,0.2794,0.055867 -1.0134,0.76739,1.0233,2.1717,-1.9975,-0.68271,1.0645,-0.78142,-0.17749,1.024,0.303,0.1688,-0.16713,0.73772,-0.40215,-0.083566,-0.031209,0.4239,-0.44013,-0.251 -1.2018,0.82545,0.94741,3.5037,-3.043,-0.071265,2.0577,-0.00092634,-1.6888,0.68024,0.18257,0.64429,0.081166,0.41283,0.37227,0.17647,0.50461,0.35773,-0.31381,-0.19747 -1.7518,1.5436,-1.1359,1.2729,-2.9244,0.28721,1.0744,0.12138,-0.88239,-0.88806,0.39948,0.58409,-0.22467,0.8383,0.25087,0.14591,-0.021203,-0.17061,-0.083397,-0.043798 -2.4154,1.7068,0.38208,0.84791,-1.9749,-0.67265,0.94882,-0.030387,-0.015855,-1.0419,0.73622,0.11991,0.011389,0.3046,1.3226,-0.56644,0.40217,0.48256,-0.21829,0.60714 0.065916,-0.014401,0.067597,1.9616,-1.5962,0.75194,1.3445,-0.38175,-1.2791,-0.19684,0.064796,0.96447,-0.15419,-0.37165,-0.27241,-0.27983,0.58964,0.3813,-0.13697,0.48425 -3.0461,1.3876,-0.072364,0.25095,-2.2236,-0.58559,1.5271,-0.0078415,-0.62787,-1.4563,0.075895,-0.093424,-0.34816,0.52336,1.2867,0.29654,1.2281,0.098331,-0.86334,0.47245 -0.64051,0.81018,0.36496,0.84718,-2.4004,0.044851,0.45818,-0.45914,-0.31298,-0.7709,-0.59504,0.12789,-0.42681,-0.41065,-0.2296,-0.08262,0.64541,0.29234,0.20926,0.14328 -0.53537,0.8283,1.193,1.8408,-1.9458,-0.62586,0.95689,-0.46073,-1.3024,1.1879,-0.18622,0.50128,-0.38632,0.27454,-0.23751,0.39397,0.027604,0.56619,0.072097,-0.69069 -1.4299,1.4486,1.563,2.3006,-2.2932,-0.17314,0.9201,-0.62897,-0.98814,0.95587,0.83052,0.39907,-0.61074,0.50247,0.31457,0.37507,-0.1924,0.46984,-0.023889,-0.33383 -0.74804,0.1505,1.2137,1.5124,-1.528,-0.30585,0.54072,-0.79321,-0.63231,0.43092,0.31588,-0.25136,0.19606,0.98414,-0.97698,0.34639,0.15282,0.47372,-0.16677,0.26109 -1.5221,1.1417,-0.93338,1.2684,-1.7979,0.080618,0.46154,0.25896,-1.1831,-1.0471,-0.44695,0.65376,-0.37118,0.28483,0.25918,0.053822,0.44263,0.41515,-1.1088,-0.033212 -1.8903,1.4313,0.39828,-0.19529,-1.1581,-0.94473,1.1426,-0.30364,-1.4129,-0.53186,0.92424,-0.77008,-0.14136,-0.15279,0.44334,-0.64341,0.11719,0.39398,0.33033,0.030551 -0.81152,1.626,0.19444,2.4961,-2.6158,-0.10976,1.4835,-0.26249,-0.67375,0.22114,-0.14384,0.90809,-0.18802,-0.10376,-0.084798,-0.43044,-0.29644,0.057593,-0.17808,-0.12345 -0.65468,0.72621,-0.18413,1.8427,-2.0363,0.93605,0.8288,-0.1401,-0.7289,-0.41056,-0.085464,0.77774,-0.31111,-0.24842,-0.22494,-0.40041,0.049838,-0.15429,-0.36065,0.062798 -1.064,1.6263,0.30723,1.1227,-1.8313,0.92977,0.47616,-0.3278,-0.67027,-0.20958,-0.05718,0.60488,-0.31728,-0.19272,0.1406,-0.37807,0.068252,0.37784,0.0037252,-0.039359 -1.6505,1.3029,-0.70183,0.01238,-2.401,-0.93173,0.77721,0.049973,-1.1658,-1.1961,0.018013,-0.36359,-0.2186,0.80882,0.2562,-0.26519,0.69587,0.86161,-0.090485,-0.57458 -1.7999,0.78658,-1.1342,-0.83213,-2.3075,-0.87315,0.60971,0.43437,-1.4673,0.44664,1.1216,0.27091,-0.14443,0.36042,-0.063859,-1.3456,-0.035298,0.34792,0.96473,-0.027518 -2.013,1.5168,-1.0271,0.43371,-2.4163,-0.76636,0.55603,0.32345,-2.2794,-0.7083,1.1722,-0.34998,-0.17655,0.73295,0.15003,-0.28847,-0.75747,0.68756,0.66409,-0.95361 0.11458,-0.15274,0.82371,1.4981,-2.4809,-0.23705,0.91565,-0.39114,-1.4985,0.70301,0.1785,0.1143,-0.29978,0.51691,-0.42105,-0.20303,0.12324,0.37295,-0.052406,-0.4736 -0.97621,1.8118,0.078667,1.3332,-2.387,0.43373,0.66481,-0.2037,-0.66323,-0.95796,-0.38137,0.051504,-0.42856,-0.32781,-0.18026,0.16323,0.30846,0.28449,0.31094,-0.26672 -0.10898,0.63949,0.54389,2.0512,-1.7662,-0.16027,1.7043,-0.63098,-1.1633,0.7168,-0.4995,0.50942,-0.35456,0.29127,-0.34411,-0.19294,0.30411,0.45173,0.15481,0.027111 -2.9043,2.5327,-0.49773,1.7371,-3.2793,-0.12233,1.354,-0.36155,-1.4065,-1.0337,0.63133,0.50818,-0.026423,0.12309,0.95926,0.22063,0.2865,0.51861,-0.031647,-0.56404 -1.2618,1.0784,-0.67695,0.93212,-2.0038,0.37737,0.27829,-0.093965,-2.487,-0.38083,-0.36818,0.085249,-0.26585,0.89603,-0.12888,-0.29945,0.10139,0.8736,-0.044831,-0.83707 -2.7562,1.0217,2.3651,2.4654,-2.9873,-0.026202,0.90032,-0.31307,-2.3553,0.47082,0.99456,0.73325,0.14973,0.7418,1.2254,0.49265,0.70928,0.15302,0.40242,0.20895 -0.0050957,0.74263,0.17916,1.6128,-1.8013,0.48082,1.1868,-0.051426,-0.79582,-0.54718,0.18166,0.64345,-0.067424,-0.28786,-0.54358,-0.36034,-0.042905,0.35337,0.28768,0.053627 -1.0869,1.8758,-0.38898,1.4607,-2.3954,0.35902,0.57407,-0.3542,-0.75475,-0.94095,-0.42159,0.49784,-0.1635,0.13233,-0.2079,0.15994,-0.038494,0.30036,-0.088081,-0.36893 -1.6826,1.7401,-0.51077,0.36032,-2.1395,-0.38883,0.29974,0.67451,-2.2167,-0.31903,0.33369,0.087166,0.24436,0.56867,0.47791,-0.84036,-0.45959,0.88755,0.11692,-0.81078 -2.1207,1.5472,-1.3128,1.6568,-2.7036,0.041397,1.376,0.55605,-0.84319,-0.73776,0.0032816,0.81146,0.14601,0.78482,0.28575,-0.25031,0.13919,0.33319,-0.99951,0.17807 -1.1066,1.1546,0.010074,1.3713,-2.2286,-0.97421,1.1494,-0.087382,-0.1735,0.5912,0.74936,1.0072,-0.73753,0.57005,0.31786,0.057318,-0.63401,0.07242,-0.48632,-0.020742 -0.45049,0.67648,0.88507,2.1436,-1.7776,0.62176,1.187,-0.22299,-1.5773,-0.92166,0.61037,0.68697,0.089904,-1.1851,0.25249,0.90115,0.58703,-0.041079,0.55446,-0.10117 -4.4168,1.2686,0.70685,-0.29477,-1.7747,-1.1978,1.4646,-0.72861,-1.813,-1.1853,1.6594,-0.57505,-0.1614,0.39986,0.39056,-0.015049,0.69841,0.54472,0.35586,0.62889 -2.1293,1.5909,0.51228,1.2742,-0.84686,-0.38976,1.106,-0.24826,-1.1538,-0.73509,0.86384,0.51496,-0.34976,0.77591,1.0386,0.24872,-0.60851,-0.50278,0.90178,-0.20326 -0.64275,0.59708,-1.062,1.0299,-1.994,0.51841,0.77935,-0.69536,-1.3173,-0.78085,0.15633,0.36943,0.56075,0.77346,-0.70943,0.24199,0.64031,0.26019,-0.51053,-0.35216 -1.0258,0.6676,0.47216,0.03417,-0.31465,-0.62691,0.47629,-0.20489,-1.3681,0.025332,0.051884,0.2384,0.32564,-0.7004,0.42167,0.069077,0.62273,0.35008,0.40924,-0.28565 -0.74172,0.84132,1.4976,1.3232,-1.9438,-0.67064,0.35802,-0.62196,-0.74865,0.76401,0.40064,-0.1591,-0.071033,0.19338,-0.18369,0.1911,0.27597,0.72293,0.33321,-0.53329 -0.45577,1.0007,0.58076,1.1714,-2.1342,-0.36685,1.3724,-0.96026,-0.57001,-0.21835,-0.30426,0.62201,-0.89717,-0.40617,0.29718,-0.48906,0.69594,0.39555,0.50718,-0.03265 -1.1614,1.3987,0.24348,1.3537,-1.6759,0.38856,0.54472,-0.59102,-0.095774,-0.10912,0.42509,0.81305,-0.46607,0.1949,0.39626,-0.31847,-0.30174,0.36869,-0.52486,0.10701 -0.13129,0.46282,0.0080088,1.0147,-2.0154,0.11441,1.2865,-0.84275,-0.88828,-0.3755,-0.36985,0.65344,-0.28505,0.002382,-0.013813,-0.33848,1.0843,0.011728,0.11817,0.21239 -1.4771,1.698,0.96847,2.4196,-1.8672,-0.21131,1.9729,0.058347,-1.0926,1.0827,0.19656,0.30577,-0.045437,0.65632,0.33573,0.18601,0.0086882,0.24932,-0.58257,-0.27551 -1.2941,0.74117,1.7558,2.3273,-1.8923,-0.59342,1.4715,0.19917,-1.2585,1.1595,0.55071,-0.29553,0.7408,0.80098,-0.25518,0.4441,0.44433,0.2691,-0.41675,-0.29959 -2.122,0.86585,-0.26071,-0.54455,-2.093,-0.96315,0.73412,-0.32956,-1.1147,0.049055,0.12087,-0.55931,0.066425,0.38467,0.47822,-0.58189,1.1544,0.61037,-0.30122,-0.32061 -1.0404,0.49343,-0.38116,1.0337,-2.0856,-0.58079,0.94099,-1.1188,-0.2032,0.25434,0.15764,1.2089,-0.12564,0.47375,0.42902,-0.11474,0.053774,0.85968,-0.38607,-0.26459 -0.52679,0.74408,-0.28343,0.25542,-1.2408,-0.0027106,0.17289,-0.39044,-0.51466,-0.62216,-0.16131,-0.028813,-0.1764,0.33543,-0.04616,0.17822,0.1099,0.067836,0.024082,-0.40683 -1.1251,1.0754,-0.75483,0.8818,-1.576,0.2929,0.22404,0.071428,-0.94335,-0.96387,-0.29813,0.40115,0.050355,0.59459,0.26232,-0.35077,-0.17567,0.2875,-0.58326,-0.39576 -0.00074599,0.10643,-0.1067,1.5636,-2.074,0.11954,1.1061,-0.61199,-0.75177,-0.21692,-0.16684,1.1136,-0.28556,0.098519,-0.24748,-0.32672,0.40584,-0.23373,-0.071507,0.18881 -1.1533,1.4929,1.4218,1.5424,-1.6203,-0.55224,0.71212,-0.10549,-0.99155,1.1173,0.41277,0.44478,-0.2529,-0.10199,0.47249,0.23006,0.15588,0.58822,0.084031,-0.72122 -1.1934,1.5677,1.0477,2.7914,-2.648,-0.36665,1.1198,-0.8004,-1.2858,0.43239,0.24269,0.90886,-0.56023,-0.58701,0.4656,0.35357,0.34969,0.87856,0.46135,-0.066451 -0.99215,1.3589,0.33076,1.7783,-1.7341,0.44928,0.98413,-0.17463,-0.68428,0.35653,0.1922,0.90767,-0.40533,0.031023,0.23385,-0.46961,-0.11139,0.33919,-0.67083,0.0054629 -1.129,1.5734,0.7015,1.4951,-1.2375,-0.42877,0.63294,-0.13986,-0.66043,0.37363,0.41052,0.89778,-0.29282,-0.1732,0.54716,-0.1921,-0.36192,0.55886,-0.076484,-0.28317 -1.5024,1.5928,-0.45135,2.1212,-3.4558,0.58816,0.87649,-0.3451,-1.8298,-1.1079,-0.42078,0.62176,-0.16114,0.011248,-0.01282,0.058825,0.59058,0.7649,-0.27853,-0.78493 0.13561,-0.030619,0.5735,2.3643,-1.9788,0.28521,1.8815,-0.25812,-1.3763,0.1634,0.34666,0.75952,-0.55103,0.014254,-0.19085,-0.33351,0.17119,0.53336,0.087136,0.21686 -1.0213,1.4549,-0.23815,0.93768,-2.2473,0.48654,0.28571,-0.24992,-1.3309,-0.93466,-0.70088,-0.14216,-0.2041,0.1009,-0.30414,0.034885,0.40714,0.58593,0.30617,-0.78982 -1.7523,1.0305,-1.6086,0.53445,-2.0232,-0.35353,0.64201,1.2074,-1.4224,-0.48372,0.64513,0.5038,0.87534,0.55712,0.28757,-0.35173,0.18428,0.66721,-0.46984,-0.5923 -1.4596,0.96681,-1.0527,-0.071064,-2.3068,-0.58832,0.63247,0.53397,-1.6071,0.060895,1.0953,-0.19435,-0.59831,0.54682,-0.3476,-0.70231,-0.27703,0.33028,0.70129,-0.55418 -0.92184,1.3925,-0.70017,0.48653,-2.0537,-0.3437,0.27117,-0.024134,-0.96106,-1.1712,-0.28482,0.40649,-0.092758,0.61118,0.18397,-0.14322,-0.17317,0.61531,-0.034749,-0.4785 -1.3892,1.7267,-0.84842,1.3769,-3.297,0.024492,0.95023,-0.5218,-0.94629,-1.1264,-0.48676,0.9384,-0.20964,0.35482,0.010969,0.22128,0.57265,0.38531,-0.28692,-0.39449 -1.44,1.6041,1.0171,1.7674,-2.086,-0.32133,0.53618,-0.29929,-0.556,0.36088,0.62708,0.72706,-0.67651,-0.28494,0.89655,-0.34518,0.013524,0.69606,0.057693,-0.082583 -0.74329,1.0267,-0.094808,0.74406,-2.0779,-0.62524,0.89887,-0.5101,-0.2425,-0.75532,-0.80607,0.65223,-0.54825,-0.16244,0.090021,0.1203,0.94891,0.056278,0.11205,0.50517 -1.3768,2.3269,-0.33713,1.4937,-2.6862,0.074598,1.5085,-0.10947,-1.397,-0.75787,0.31071,1.0552,0.060377,0.099934,0.94848,-0.18435,0.15813,0.39776,0.27977,0.19421 -0.71352,0.91207,0.35772,2.0276,-2.0969,0.15214,0.99007,-0.83769,-0.00065582,0.05374,0.24386,0.80329,-0.7159,0.094895,-0.33502,-0.15643,-0.26825,0.26847,-0.2189,0.33357 -1.9484,1.7116,-0.12336,0.78238,-3.2707,-0.11243,0.85326,-0.38076,-1.6574,-1.4837,-0.41821,-0.63387,-0.53261,0.21171,0.18642,0.15143,1.1341,1.0767,0.17319,-0.51844 -1.506,0.66197,-1.4485,1.4376,-2.5644,0.52652,1.4951,0.30274,-1.7813,-1.012,0.27492,1.0785,-0.14226,0.88517,-0.18566,0.69013,0.9187,0.78848,-0.85509,0.20724 -0.84045,1.3337,-0.41142,0.95932,-2.3076,-0.0079708,0.5038,-0.20601,-1.612,-1.2591,-0.80587,0.67162,0.049614,0.38473,0.20888,-0.21523,0.39697,0.72509,-0.0082458,-0.49158 -0.65521,1.3785,0.58735,2.1614,-2.9264,0.626,1.0928,-0.20196,-1.9542,-0.066587,-0.13402,1.2338,-0.60001,-0.96055,0.17366,-0.17639,0.47089,0.38984,0.26118,0.089272 -0.56934,0.63811,1.3134,1.7603,-2.239,-0.48646,1.0025,-0.67711,-0.37433,0.92104,0.58422,-0.17428,-0.45134,0.41378,-0.24716,0.25254,-0.10161,0.60313,-0.14696,-0.48683 0.038018,-0.42617,1.062,1.6903,-2.0208,-0.82942,0.57922,0.071601,-1.726,0.79905,0.36112,0.34131,0.41094,0.19694,-0.18324,0.16629,0.23742,0.57001,-0.12283,-0.40086 -1.4195,2.1233,0.58058,1.9003,-2.6923,-0.50537,0.83686,-0.56438,-1.4034,-0.59381,0.14077,1.3461,-0.063827,-0.58096,0.76008,-0.2727,0.096648,0.43521,-0.016143,-0.57848 -0.0030653,0.7232,0.43212,0.96725,-1.4481,0.082877,1.1967,-0.68522,-0.4638,0.0019787,-0.19918,0.29289,-0.45173,0.013127,-0.37867,-0.27393,0.44871,0.19624,0.5871,0.14667 -0.37566,0.37635,0.51713,1.8604,-1.7278,-0.034136,1.8829,-0.16735,0.044415,0.39826,0.5225,0.22619,-0.60549,0.23627,-0.20191,-0.59566,0.25564,0.59281,-0.10688,0.19872 -0.71951,1.1514,1.1103,1.8851,-2.1744,-0.54781,0.9668,-0.18118,-0.91323,1.1259,0.017216,0.095006,-0.40118,0.16132,-0.199,-0.04473,-0.22931,0.19937,-0.1599,-0.83987 -0.62682,0.65571,-0.47799,1.7883,-1.9659,0.54836,0.62724,-0.34821,-0.77939,-0.65321,-0.7438,0.74024,-0.25641,0.094709,-0.51372,-0.1459,0.086628,0.070777,-0.49193,0.11011 0.13318,0.46231,0.56678,1.7971,-1.7451,0.33374,1.6594,-0.82849,-1.2176,0.40536,-0.043524,0.52637,-0.17425,0.19454,-0.43529,-0.36666,0.18947,0.34434,0.41227,-0.092423 -2.0342,2.28,-0.63166,0.31592,-2.8919,-0.52255,1.4562,0.20147,-1.226,-1.4807,0.28008,0.16535,0.047725,0.50461,0.64072,0.10403,0.58778,0.72826,0.28709,-0.076573 -1.9158,1.5067,1.5739,2.1901,-1.9762,-0.12673,0.42607,-0.32139,-1.2359,0.4593,1.0417,1.2415,-0.3449,-0.10143,0.68157,-0.11017,0.033238,0.33682,0.02144,-0.17327 -2.7254,1.0916,1.427,1.2595,-1.4098,-0.44212,1.1502,-0.27994,0.37535,-0.79536,0.56914,0.47077,0.11771,0.15879,0.87574,-0.058915,0.8394,0.86231,-0.65225,0.58158 -3.0043,0.6922,-0.91352,0.28824,-2.0102,-0.35846,0.3277,-0.90282,-1.3358,-1.286,1.8848,0.42923,-0.24709,0.46732,0.71191,0.27735,0.21221,-0.073503,0.46889,0.095862 -0.82724,-0.3768,-0.83295,2.094,-1.8785,-0.42038,1.467,0.11817,-0.1441,-0.65969,-0.13919,0.65958,-0.1251,-0.025086,-0.087171,0.21162,1.344,-0.2665,0.23238,0.30295 -2.571,1.4734,0.2697,1.1517,-1.3745,-0.96335,1.4061,0.2132,-0.52369,-1.3269,0.57468,0.35538,0.2035,-0.018479,1.725,-0.47668,0.54835,-0.1925,-0.28606,0.41261 -1.8633,1.1775,1.7212,0.96895,-1.7342,-1.1101,0.77629,-1.0371,-0.7488,0.10057,1.0951,-0.064102,-0.39491,0.99629,0.81423,0.36772,0.15116,0.31797,-0.015168,-0.15453 -0.48963,0.81175,-0.66924,1.105,-1.45,0.19331,0.86305,-0.33722,-0.93887,-0.6987,-0.39923,0.70459,0.060903,0.51002,-0.59705,-0.13006,0.172,0.14999,-0.54171,0.11249 -2.2095,0.084376,-1.4474,2.4329,-3.329,-0.030215,0.99454,0.22552,-0.68094,0.27049,0.0096142,0.74072,0.049545,0.70665,0.34748,0.33963,0.32907,-0.30984,-0.32327,-0.13121 -0.72529,0.8675,1.108,1.4724,-1.9333,0.097783,0.94383,-0.86243,-0.050045,0.51198,0.63311,-0.20582,-0.88739,0.042062,-0.058448,0.091624,0.1025,0.389,0.23338,0.15299 -0.80221,0.87968,0.39643,2.6785,-2.8296,0.42888,2.3237,0.12263,-0.95102,0.5406,0.17098,0.694,0.2551,0.55952,0.03321,-0.32656,0.48938,0.17328,-0.2276,-0.25762 -0.5019,1.2593,1.1309,2.2219,-2.034,-0.52053,1.4828,-0.2691,-1.0272,1.0491,0.043012,0.56758,-0.22675,-0.17315,-0.058568,0.107,0.0392,0.55007,0.19196,-0.55549 -0.70592,1.0482,0.15681,2.4564,-2.8221,0.73399,1.4448,-0.78584,-1.6064,-0.30047,-0.31262,1.2389,-0.76057,-0.24151,-0.21681,-0.29834,0.46319,0.32137,-0.18434,0.073964 -2.8436,1.9529,0.14796,1.3302,-3.0442,-0.6898,0.47692,-0.24787,-1.7442,-1.731,0.2925,0.48802,0.28929,0.09444,1.0457,-0.53934,0.43199,0.99336,-0.2238,-0.68839 -1.3968,1.9255,-0.097347,1.5879,-3.3663,0.27572,0.97026,-0.78241,-0.58515,-0.8138,-0.1514,0.71953,-0.45203,-0.13957,0.27378,0.05072,0.47513,0.46684,-0.065139,-0.14373 -1.5081,1.4674,-0.71354,1.319,-2.9943,0.58086,1.0235,-0.73991,-0.086087,-0.29935,0.23788,1.1682,0.40667,0.49379,-0.38949,0.24293,0.32836,0.75883,-0.84671,-0.078069 -2.0456,1.6651,-1.0308,0.41132,-2.3837,-0.37547,0.76315,0.65108,-0.99491,-1.0199,1.0077,0.082359,-0.12765,0.38375,0.70304,-0.21872,-0.11248,-0.045004,0.0055827,-0.59006 -1.2862,-0.067918,-1.0094,1.7598,-3.0819,0.023188,1.7016,-0.05594,-1.0461,-0.57844,-0.7445,0.28864,0.32386,0.26462,-0.19828,0.69014,0.56808,0.25213,-0.95805,-0.034562 -1.0776,1.0013,0.85104,2.6621,-2.4909,-0.17943,1.619,-0.75438,-0.32237,0.78714,0.58504,0.36015,-0.2882,0.37177,-0.011413,-0.27286,-0.00098105,0.51208,-0.47012,0.13521 -3.0015,0.93531,-0.41679,-0.19982,-2.8008,-1.757,1.5116,0.14176,-2.0998,-1.1343,0.70373,-0.67824,0.48233,0.74664,0.13602,-1.0367,0.44017,0.97616,-0.067907,-0.57674 -1.3564,1.3887,0.23756,1.9481,-1.7105,0.60604,0.36299,0.11847,-1.0525,0.035843,0.037932,0.79683,-0.1913,-0.089388,0.52907,-0.18349,-0.25176,0.25211,-0.047694,-0.075152 -1.467,1.4825,1.4852,1.6935,-1.5751,-0.58416,0.73613,0.026029,-1.2796,1.2641,0.48032,0.56608,-0.15855,0.28629,0.4007,0.23089,0.24328,0.41804,-0.27428,-0.70394 -1.4924,-0.3219,-1.7709,1.3755,-2.5839,-0.19328,0.93683,-0.072586,-1.4441,0.015089,0.2984,0.55256,-0.42113,0.87864,0.24122,0.63324,0.15979,0.51085,-0.5154,-0.42133 -2.3587,2.1351,-0.57677,0.91518,-2.6241,-0.80002,1.1,0.1085,-0.85281,-1.3455,0.89996,0.7965,-0.12736,0.17393,1.2571,-0.41517,0.017208,0.15643,-0.35475,-0.34803 -2.3582,1.6893,-0.43737,0.059884,-1.7882,-0.689,1.0613,0.18782,-0.80488,-1.2407,0.65692,-0.98632,0.0099845,0.59211,0.7962,-0.090677,0.45582,0.4705,-0.39598,-0.19066 -2.2041,1.7737,0.31896,0.60494,-1.7953,-0.71588,0.79402,-0.20884,-0.23838,-1.4242,0.46684,-0.17139,-0.059035,-0.034348,0.9109,-0.088447,0.64202,0.65938,-0.59667,0.027056 -1.7549,1.8655,-0.81365,0.91655,-2.3746,-0.27487,0.64168,-0.13278,-0.76473,-1.1398,0.58696,0.4683,0.13164,0.49178,0.61274,-0.094677,-0.13292,0.58969,-0.62961,-0.76373 -2.2654,1.1396,-2.096,0.77647,-2.5299,0.29976,0.6506,0.7852,-1.5003,0.0092137,-0.28094,0.68879,1.0798,1.0532,-0.11607,0.42605,0.74649,0.65054,-0.67549,0.13894 -1.7578,0.88327,2.2326,0.87235,-1.3881,-0.61847,0.48799,-0.61224,-1.2394,0.16838,0.77016,-0.4695,-0.070674,0.63917,0.30284,0.88706,0.84861,0.14991,0.44805,0.16051 -1.0869,1.1887,-0.66111,1.3761,-2.9188,0.16272,0.48112,-0.67938,-1.2592,-0.68401,-0.57739,-0.44812,-0.3766,0.33529,-0.35465,0.2474,0.93239,0.16034,0.14601,-0.45928 -1.6114,1.9372,1.2266,1.3803,-1.8946,0.70259,1.1149,0.1897,-1.4143,-0.24633,0.52934,0.32853,-0.54156,-0.54613,0.98604,0.42801,0.78048,0.13272,0.48306,0.029055 -1.3599,1.6675,1.5601,1.6784,-2.1004,-0.22653,0.67978,-0.16048,-1.4649,0.83851,0.73091,0.72721,-0.40637,-0.0072426,0.76881,0.39098,0.050729,0.25482,0.29347,-0.80589 -0.38746,0.93933,-0.12453,1.5938,-2.2931,0.20688,0.99992,-0.77071,-1.1988,-0.74122,-0.66907,0.69242,-0.45258,-0.096157,-0.41753,-0.2273,0.47307,0.15893,0.028511,-0.2797 -0.21242,0.53402,-0.072992,1.8126,-1.4128,0.96212,1.136,-0.29933,-1.1455,-0.63793,-0.12397,0.82044,0.039963,-0.13778,-0.51282,0.027913,0.34105,0.11115,-0.26495,0.24195 -2.1749,1.6092,0.36484,0.54583,-2.4543,-0.44271,1.3408,0.12421,-0.89054,-1.1141,-0.18479,-0.87658,-0.40662,0.23247,0.26043,0.31259,0.91574,0.3546,-0.91135,-0.41467 -0.63352,1.1678,0.30972,1.079,-2.0458,0.19782,0.61859,-0.49443,0.027919,-0.44856,-0.26059,0.42654,-0.63861,-0.51432,-0.072838,0.020321,0.44028,0.28102,0.31648,0.21103 -1.0993,1.3384,-0.94378,0.39074,-2.066,-0.33763,0.45131,0.49516,-1.1218,-0.56626,0.44419,-0.33902,-0.084555,0.73726,-0.34814,0.25911,-0.2295,0.4261,0.18076,-0.535 -2.017,2.368,1.4118,1.8243,-2.2389,-0.93564,1.8525,-0.589,-1.6377,0.27626,0.67781,0.83811,-0.62807,0.13384,1.2962,0.12545,0.03427,0.62937,0.33722,-0.42504 -1.2929,0.79016,-0.051838,0.47546,-1.6307,0.65466,0.45658,-0.013241,0.013354,-0.57052,-0.039473,-0.37588,-0.1426,0.18742,0.33531,0.4987,0.88365,-0.33212,-0.28983,-0.05478 -2.1164,1.3157,0.99909,1.9858,-2.4489,-1.4156,1.3964,-0.35629,-0.65596,0.69612,1.1214,0.59511,-0.22304,1.2785,0.73661,0.098181,-0.62742,-0.1016,-0.74524,-0.34422 -1.1325,1.368,-0.92597,1.4757,-2.812,-0.17732,0.65331,-0.39134,-0.78298,-1.0404,-0.6528,-0.0099264,-0.48242,0.37198,-0.40708,0.27855,0.40743,-0.11146,-0.24427,-0.1888 -1.1848,1.2402,0.75189,1.1258,-1.1334,-0.046415,0.42815,-0.48427,-0.2334,0.06201,0.50059,0.57032,-0.36554,0.13971,0.77421,-0.13731,-0.11147,0.19492,0.064118,0.017512 -1.1713,0.90776,-1.2356,0.3286,-2.0131,0.036667,0.48369,0.29045,-1.1653,-0.32744,0.92426,-0.0083223,0.038333,0.94484,-0.72468,0.27012,-0.45059,0.51424,0.057563,-0.42186 -2.1664,2.0841,-0.11721,2.7612,-3.0309,0.051064,1.6391,-0.44792,-0.91865,-0.32632,0.69676,0.69058,0.24358,0.16962,0.59149,0.47797,0.59092,0.061241,-0.30228,-0.47021 -1.337,1.9835,1.5013,1.6172,-2.049,-0.9563,1.2797,-0.66179,-1.0063,0.22444,0.54665,0.53829,-0.4047,-0.030141,0.81559,0.15462,0.21021,0.44754,0.64324,-0.44245 -0.75346,1.0027,0.056632,1.5243,-2.6169,1.1682,0.64963,-0.27216,-2.1513,-1.0564,-0.22308,0.88886,-0.34109,-0.11886,-0.11725,0.16746,0.67612,0.46357,-0.07681,-0.2949 -1.1001,1.3406,0.45604,1.6243,-2.0679,-0.085072,0.83981,-1.0883,-0.16814,-0.29479,-0.070915,0.9303,-1.1432,0.0099581,0.3151,-0.038816,-0.087919,0.2873,0.1927,0.13719 -1.4779,1.3687,0.34652,0.76,-2.5996,-0.0076749,0.69353,-0.42305,-0.14424,-0.85715,-0.37206,-0.31746,-0.24244,-0.11969,0.026406,0.14941,0.88792,0.42411,-0.45323,-0.11833 -0.43038,1.0865,0.1067,1.9341,-2.6774,0.39078,1.8094,-1.2002,-0.85776,-0.2467,-0.11777,0.96168,-0.44869,0.069802,-0.34394,-0.22837,0.39582,-0.016122,0.25895,0.050023 -0.23466,0.92455,0.85978,1.0532,-1.7377,-0.20998,0.49006,0.31465,-1.0884,0.94459,0.36988,0.44671,-0.11331,-0.56906,0.12519,0.3453,0.41074,0.42657,0.18134,-0.59351 -1.3056,1.6891,0.8462,2.3526,-2.137,0.3772,1.0327,0.24491,-1.1452,0.83774,0.41198,0.69148,-0.44802,-0.039843,0.54737,0.18703,-0.26518,0.1294,-0.1261,-0.41349 -2.5835,0.41209,-0.22921,0.13034,-0.53606,-0.27915,0.48339,-0.66637,-0.41448,-1.2518,0.37194,-0.3829,0.38206,0.60109,0.80046,-0.35877,0.5842,0.2297,-0.34481,0.12196 -0.014744,0.24761,0.50457,1.3865,-1.5326,-0.16049,0.83895,-0.64819,-1.1184,0.56343,-0.26536,0.085005,-0.26458,-0.03029,-0.19228,-0.40562,-0.075981,0.24698,0.12642,-0.54381 -0.87089,1.1899,0.38562,0.69745,-2.1189,0.018075,1.1843,-0.55428,-0.2758,-0.74508,-0.66864,-0.38407,-0.31804,-0.0648,-0.53349,0.075487,0.87727,0.24139,-0.2553,0.14512 -0.33303,0.65241,-0.15891,1.9069,-1.5066,0.72379,1.3089,-0.63807,-0.75741,-0.47301,-0.22479,0.77576,-0.14978,0.051792,-0.55168,-0.26752,0.044516,-0.10887,-0.24906,0.32612 -0.74543,1.2153,0.3334,1.7337,-1.7503,0.3612,0.41592,0.29413,-0.97579,-0.010322,-0.091364,0.59819,-0.36594,-0.55497,0.088437,-0.10988,-0.32466,0.08117,0.22118,-0.2499 -0.77708,-0.3881,-0.63377,1.5607,-1.4191,0.41263,0.83949,-0.25868,-0.11025,-0.48371,-0.25198,0.23614,0.14335,0.17454,-0.15076,0.3555,0.78568,-3.9001e-05,-0.51825,0.037742 -0.46772,1.1805,1.1586,1.5173,-2.8904,0.28938,1.5078,-0.77475,-1.3297,-0.068889,0.03815,0.46598,-0.89269,-0.61846,0.32871,-0.17954,0.45672,0.52392,0.72956,0.20615 -1.874,1.2109,2.2453,1.2221,-1.5094,-0.54858,0.45417,-0.66003,-1.2706,0.26305,1.0415,0.0051687,-0.30699,0.9304,0.42753,1.0711,0.62201,0.12054,0.38347,-0.17822 -1.7804,1.9549,0.9643,2.6775,-2.898,0.39449,1.1986,0.20265,-1.8327,0.39032,0.42183,1.094,0.03247,-0.33576,1.1856,0.31933,0.44215,0.26657,0.28252,-0.44919 -0.89042,1.3043,1.3222,1.4543,-1.7236,-0.36369,0.64394,-0.57783,-0.95267,0.93607,0.69832,0.38165,-0.52451,0.23512,0.26933,0.16571,-0.036368,0.41133,0.20864,-0.6519 -0.25935,0.35,0.11904,1.3956,-1.4394,0.17915,0.98626,-0.27754,0.14006,0.14636,0.019544,0.61323,-0.21739,-0.12267,-0.31584,-0.59486,0.18131,0.54107,-0.18168,0.49954 -0.42456,0.77812,1.3393,1.6436,-2.0827,-0.43373,1.0613,-0.36947,-1.2975,1.3047,0.1472,0.048861,-0.089038,0.4629,-0.26885,0.55776,0.11899,0.69208,0.0061799,-0.50634 -0.1767,0.34998,-0.40252,2.0699,-2.0658,0.45877,1.3755,-0.83907,-0.77612,-0.40848,-0.054807,0.77208,0.18129,0.10943,-0.48079,-0.46427,0.60282,-0.31747,-0.02465,0.090056 -0.27766,-0.53874,1.3142,1.4161,-1.9986,-1.092,0.45317,0.16655,-1.5242,-0.003244,0.077251,-0.30846,0.4908,-0.19154,-0.41367,0.10376,0.24454,0.71542,0.20372,-0.081007 -1.0771,1.1771,-1.1832,0.23888,-2.3734,-0.26685,0.41716,0.12965,-1.3333,-0.95561,0.19078,0.35713,-0.15122,0.93898,-0.13936,0.44238,0.090946,0.33779,0.12937,-0.45362 -1.2812,1.0639,1.2658,1.056,-2.3665,-1.344,1.1819,-0.53573,-0.59341,0.35625,1.006,0.53964,-0.59788,0.24053,0.8808,-0.84607,-0.037821,0.58014,-0.2558,-0.63136 -0.53616,1.279,0.54178,1.8042,-1.8417,0.44515,0.84158,-0.20244,-0.63253,0.59758,0.28025,0.90615,0.0031381,-0.54533,-0.34326,-0.40599,-0.19265,0.5362,-0.15737,-0.21071 -0.92292,0.9809,1.1228,2.0824,-3.2911,0.028438,1.6146,-0.43754,-0.99813,0.4273,0.15732,0.31355,-0.88025,0.38095,0.34452,-0.22226,0.10748,0.45447,-0.088464,-0.50232 -1.4471,1.2461,-1.2008,0.32561,-2.4836,-0.57464,0.51454,0.21537,-0.98165,-1.3713,0.29171,0.23503,-0.39359,0.78199,-0.014487,-0.10872,-0.2221,0.56322,-0.013916,-0.47176 -1.5198,1.4362,1.025,2.3133,-2.0693,0.20542,0.81318,-0.43664,-0.57755,0.37279,0.80081,0.58416,-0.83183,0.55441,0.67082,0.26744,-0.43841,0.23115,0.29838,0.08972 -0.66421,1.1268,-0.11125,0.8402,-2.2983,0.093708,0.31164,-0.53679,-1.2099,-1.1369,-0.67971,0.11647,-0.42169,0.23602,-0.098654,0.021869,0.49232,0.42632,0.23757,-0.50308 -3.0788,0.52171,-0.22965,-0.64418,-1.2844,-1.4221,1.5482,0.65775,-0.88747,-0.6096,1.2352,-0.46979,0.030387,0.32399,0.49217,0.054162,0.78198,-0.04752,-0.77326,-0.31177 -0.85813,1.1482,-0.10846,1.6229,-2.5672,-0.62971,1.312,-1.1041,-0.29119,-0.24679,0.053579,1.4372,-0.88921,0.3019,0.36418,-0.14472,0.063133,0.24149,-0.12522,0.34442 -0.64572,0.15246,-0.79298,1.3514,-1.2413,-0.026066,1.4071,-0.16353,-0.7024,-0.54173,-0.025388,0.7676,-0.024069,0.11976,0.28342,0.1184,0.92624,-0.042986,-0.41764,0.90855 -1.2222,0.85665,1.1144,1.4675,-2.6472,-1.024,0.98622,-0.75828,-0.64482,0.82583,-0.010218,-0.84046,-0.43928,0.55225,-0.2027,0.26297,0.35444,0.2879,-0.22712,-0.76539 -1.0906,1.3329,1.0093,1.3674,-2.3795,0.16579,0.78251,-0.55148,-0.69146,-0.64377,-0.091407,0.42063,-0.70452,-1.2109,0.10772,-0.023291,0.69254,0.74558,0.42007,0.58284 -2.4183,1.4988,-0.36581,0.79673,-1.9216,0.12755,0.22896,-0.76492,-0.63345,-0.87778,0.41685,0.1829,0.13757,0.4496,1.3303,-0.85471,0.20385,0.55161,-0.27992,-0.37774 -0.16516,-0.070686,0.77597,1.6659,-1.9239,-0.65144,1.2043,-0.74722,-0.56769,0.56859,-0.029436,-0.011879,-0.27564,0.33263,-0.27097,-0.45786,0.13198,0.47387,-0.064977,-0.50969 -2.2924,1.2674,0.0049832,-0.16879,-1.0866,-0.88868,0.93795,0.1624,-1.0077,-0.60299,1.2275,-1.0178,-0.037629,0.43514,0.47148,-0.40339,0.2034,0.3075,0.16591,0.041922 -2.3213,2.0106,0.5698,2.1966,-2.1975,0.77975,0.92947,0.33023,-1.7551,0.1334,0.20827,0.79966,-0.11805,-0.39266,1.3329,-0.35112,0.30285,0.24274,0.23919,-0.63047 -1.993,2.1511,0.93925,1.3952,-2.2994,-0.78651,1.1927,-0.88499,-0.61951,-0.66781,0.6016,0.79984,-0.66686,-0.37689,0.96397,-0.45615,0.31825,0.95815,-0.24791,-0.13287 -0.27398,0.95653,-0.38951,1.6511,-1.8718,0.26686,1.363,-0.583,-0.58543,-0.45898,-0.61698,1.0316,0.18379,0.12583,-0.55772,-0.40804,0.41127,0.16771,-0.14164,0.35697 -0.61755,1.1527,0.25327,1.162,-2.1415,0.68533,0.65088,-0.34667,-0.38508,-0.61764,-0.041032,0.21784,-0.52309,-0.34279,-0.30552,-0.072645,0.27686,0.19753,0.35027,-0.016572 -0.15719,0.42299,0.44482,1.0949,-1.8315,-0.19879,0.9177,-0.98008,-0.89938,0.11214,-0.49179,0.4215,-0.92161,0.094835,0.12789,-0.43116,0.46595,0.098632,0.42145,-0.19542 -1.122,1.4496,-0.15209,0.55524,-2.5101,0.38872,0.52599,-0.54998,-0.98025,-0.59036,-0.027948,-0.67321,-0.34603,0.66147,-0.34543,0.092544,0.82918,0.49412,0.40001,-0.6017 -0.65239,0.3973,-0.42714,0.72486,-1.6405,0.42674,-0.00099574,-0.44951,-0.74358,-0.44674,-0.24799,-0.16545,-0.1784,0.54702,-0.27741,-0.19693,0.067305,0.26953,-0.21095,-0.61058 -1.0114,2.1875,0.38508,1.9334,-2.6519,0.47871,1.4118,-0.37688,-1.3277,-0.61652,-0.1465,0.68531,-0.48062,-0.56562,0.27948,0.19498,0.49042,0.48074,0.4319,-0.0033287 -1.0281,1.5996,-0.52488,2.3647,-2.579,0.91523,1.469,0.09402,-1.5313,-0.4034,-0.39636,1.011,0.54012,0.17029,-0.27041,-0.30303,0.37045,0.3354,-0.55175,0.27302 -0.67914,1.184,1.1002,2.325,-2.7796,-0.30764,1.2575,-0.87771,-0.86467,0.64108,0.08462,0.4013,-0.84618,-0.11781,0.020146,-0.19558,-0.10884,0.45943,0.32719,-0.35791 -1.8861,2.311,0.50806,1.5838,-2.4118,-0.30013,0.79297,-0.71195,-0.86807,-0.78693,0.46438,0.96404,-0.43666,-0.40103,0.74545,0.0070025,0.082606,1.1065,-0.16443,-0.32062 -0.73581,0.77707,-0.11412,0.37042,-1.7175,-0.229,0.025767,-0.33472,-0.23365,-0.72692,-0.1703,0.17465,-0.40649,-0.054914,0.30637,-0.09152,0.18233,0.25573,0.024095,-0.15253 -1.239,1.9044,-0.13578,1.6507,-2.1979,0.37208,1.2368,-0.13241,-0.91766,-0.33142,0.068082,0.71038,-0.36092,0.44903,0.69653,-0.16928,-0.25757,0.22768,0.29035,-0.033723 -0.63867,1.161,-0.52734,1.5042,-1.7325,-0.091544,1.3861,0.1934,-0.48268,-0.044986,-0.32137,0.98347,0.011336,0.19977,-0.14678,-0.4275,0.14216,0.14675,-0.59922,0.79998 -0.82388,0.65964,1.3606,1.3216,-1.7649,-0.83273,0.21029,-0.4132,-1.3241,0.60273,0.086713,-0.036701,0.87787,-0.064162,-0.38962,0.38932,0.40861,0.57511,-0.051012,-0.65018 -0.96518,0.77911,-1.2355,0.46107,-2.4919,-0.27844,1.2653,-0.28128,-0.73605,-0.5962,0.43742,1.0247,-0.37373,0.068338,-0.34817,0.7819,0.63608,0.53666,0.17028,0.096079 -1.1571,1.2494,-0.74991,0.30409,-2.6015,0.044506,0.71926,-0.14028,-0.7326,-0.80121,-0.10085,0.059933,0.097496,0.89445,-0.069094,0.26064,0.99921,0.25011,-0.38493,0.011508 -1.5189,1.4622,1.1589,1.5663,-2.4454,-0.70268,1.0203,-1.2992,-0.24895,0.24591,0.89527,0.48218,-1.0114,0.64287,0.84863,0.232,0.081406,0.33073,0.13574,0.043335 -1.1064,0.76558,-0.14953,-0.065789,-0.95968,-0.65748,0.72638,-0.10236,-1.0371,-0.14518,0.57924,-0.46562,-0.36566,-0.13769,0.13822,-1.0522,-0.29167,0.083084,0.55072,-0.1108 -1.3273,1.4914,0.10501,1.1941,-3.1103,-0.093201,1.0657,-0.33926,-1.2374,-1.6132,-0.68636,0.397,-0.67638,0.32171,0.46205,0.043363,1.0753,0.31397,0.277,0.23313 -1.8273,0.84695,-0.76372,-0.41297,-1.7511,-0.80923,0.66602,0.19867,-1.3245,0.42202,1.6398,-0.12649,-0.79098,0.091182,0.20625,-0.64246,-0.20966,0.010822,0.37625,-0.36423 -1.827,2.1089,-0.062174,1.1753,-1.8657,0.29935,0.60104,-0.32085,-0.89286,-0.85752,0.083185,0.36518,-0.07481,0.10362,0.63028,-0.33439,-0.057562,0.41977,-0.24766,-0.42131 -1.5744,1.7327,-0.20977,0.1488,-1.8922,-0.86812,0.094522,0.16747,-0.3334,-1.0612,0.69963,0.18587,0.87431,0.22422,0.51093,0.10627,-0.068702,0.77488,0.20761,-0.46275 -1.1959,0.91765,-1.1036,0.86415,-1.6091,0.088094,0.35937,0.43129,-0.78741,-0.5149,-0.40843,0.023137,0.28727,0.82627,-0.10421,0.003591,0.14129,0.18655,-0.89574,-0.053636 -0.60223,0.43728,1.3302,1.2517,-2.0795,-0.61806,0.77281,-1.1514,-1.6616,0.50217,0.040704,-0.55209,0.032046,0.22045,-0.022471,0.068068,0.093435,-0.079011,0.49749,-1.0182 -0.15777,0.069386,0.90467,2.2602,-2.1295,-0.1623,1.44,0.11786,-1.4353,1.0122,0.11861,0.22818,-0.39537,0.010889,-0.44397,-0.047719,0.19365,0.52666,-0.30865,-0.087374 -2.684,0.98641,0.3077,0.30395,-1.6574,0.21786,0.20323,-0.88726,-0.67039,-1.3599,0.62285,-0.35173,-0.086311,0.73139,1.0009,-0.43508,0.83494,1.0699,0.35463,0.49764 -2.4501,1.9702,-0.41326,1.0183,-3.8016,0.34855,1.8684,-0.41732,-2.1695,-1.0233,0.23179,0.55063,-0.032456,0.43432,0.99468,-0.14948,0.98683,0.43915,0.41805,0.13237 -0.64741,1.5377,-0.18372,2.0313,-2.304,0.46166,1.1303,-0.41885,-1.1967,-0.4625,-0.58356,1.1431,-0.1253,-0.20725,-0.27443,-0.35335,0.14104,0.48199,-0.14233,-0.13519 -0.99654,1.1354,-1.0074,0.47367,-2.2633,-0.34483,0.50765,-0.46335,-0.88711,-1.1719,0.069707,0.60858,-0.42755,0.51794,-0.16442,0.29174,-0.070687,0.082647,-0.16711,-0.31002 -0.1598,0.68274,0.48196,2.1812,-1.7617,-0.13441,2.0446,-0.61148,-1.5506,0.50819,-0.5926,0.65596,-0.16799,0.3435,-0.2049,-0.04472,0.52326,0.31908,0.081811,-0.019554 -0.8809,1.3163,-0.39078,1.7445,-3.2193,0.77644,1.0262,-0.57889,-1.1547,-1.1363,-0.33591,0.55859,-0.080431,-0.030497,-0.27827,-0.027518,0.71232,0.26552,0.10342,-0.28536 -0.87794,1.9368,0.12325,1.2425,-2.5654,-0.0023362,0.66111,-0.46629,-0.80427,-0.95081,-0.47906,0.45353,-0.48807,-0.23631,-0.072999,0.10326,0.29043,0.49828,0.27082,-0.22979 -1.7589,1.9145,-0.4204,0.85555,-3.1097,-0.81713,1.0469,-0.35493,-0.93623,-1.8647,0.223,0.49059,-0.4132,0.02014,0.74491,-0.25299,0.3742,0.67968,-0.12688,-0.21694 -0.040755,0.78586,0.62576,1.4464,-2.2256,0.3726,1.3777,-0.36347,-1.0072,-0.19325,-0.053665,0.59421,-0.61156,-0.54449,-0.13665,-0.3175,0.71395,0.40674,0.70718,0.30931 -1.3704,1.5236,-0.079685,1.5419,-2.2361,0.51006,0.28985,0.36443,-1.67,-0.56968,-0.5664,0.87122,0.38166,-0.48187,0.25973,-0.27357,0.60258,0.47578,-0.3832,-0.57034 -0.47712,1.0823,1.0973,2.1355,-2.6004,0.099533,1.0102,0.0019856,-1.1127,0.21336,0.60695,0.92126,-0.47667,-0.99801,0.21862,0.31845,0.13636,0.53165,0.54666,0.13216 -1.6063,0.39159,-0.079831,-0.77133,-0.32656,-0.63475,1.3344,-0.45024,-0.8351,-0.75434,0.99862,-0.036919,0.0071462,0.11833,-0.13776,-0.48496,0.16324,-0.47385,-0.021872,0.63568 -0.57554,1.0037,0.59751,1.513,-2.4759,0.35413,0.8431,-0.11428,-0.50396,-0.40371,0.12193,0.23871,-0.90175,-0.61216,-0.10537,-0.042083,0.32897,0.28542,0.52467,0.46608 -0.3365,0.49068,0.5998,2.1715,-2.1267,-0.086886,1.4418,-0.7914,-1.4599,0.80979,-0.49751,0.59498,-0.80354,0.44186,-0.29227,-0.13406,0.26979,0.4073,-0.18661,-0.058047 -0.19381,0.88735,0.35929,1.2959,-1.9133,0.91672,1.1439,-0.31276,-1.1094,-1.0075,0.022238,0.22602,0.077816,-0.20351,-0.50683,0.227,0.814,0.18518,0.39812,0.12909 -1.1235,0.042681,-0.67647,1.6235,-2.4968,-0.22368,0.42242,-0.37482,-0.22824,-0.099172,-0.60095,0.73143,-0.64408,0.22259,0.3861,0.74585,0.0042187,0.011193,-0.42746,-0.14991 -0.87793,0.51729,1.33,2.1282,-2.5657,-0.92211,1.085,-0.63679,-0.90777,0.88743,0.34196,-0.66521,0.072063,0.67366,-0.29089,-0.0098072,0.086638,0.50236,-0.40248,-0.51692 -1.7084,1.5687,-0.73757,0.24199,-1.6005,-0.2885,0.25174,-0.45759,-1.2301,-0.70607,0.25847,-0.38893,-0.083115,0.58815,0.42163,0.062562,0.062782,0.58641,0.0068124,-1.0887 -1.6528,1.3324,0.74059,2.4377,-2.5484,0.31725,0.95614,-0.28735,-0.56786,0.24887,0.79034,0.3063,-0.54646,0.63255,0.6585,0.043799,-0.42184,-0.16195,-0.082473,-0.54537 -0.4796,0.78826,-0.22665,1.9387,-2.1672,0.43327,1.7153,-0.079245,-0.3442,0.057703,-0.087872,0.86584,0.072604,0.12995,-0.49117,-0.63882,0.43255,0.031983,-0.22283,0.21217 -0.58885,0.76595,1.4731,1.2348,-1.871,-0.28588,1.097,0.24258,-0.55307,0.51643,0.73699,-0.10054,-0.27503,-0.87739,0.14283,0.3777,0.16302,0.35612,0.1569,0.49435 -0.36043,-0.017888,0.3617,2.2005,-1.4209,0.67565,2.0501,-0.2461,-0.78525,0.31242,0.10129,0.388,-0.10235,0.054865,-0.43293,-0.052115,0.62262,0.28909,0.074555,0.22893 -1.9516,1.8016,1.6976,1.5372,-1.6207,-0.52168,1.0417,-0.2829,-0.70488,-0.32061,0.85992,0.53457,-0.18935,-0.54435,1.1049,0.31316,0.76444,0.73904,0.50905,0.36531 -0.60081,0.73743,-0.18232,1.8791,-2.1174,0.25189,1.6862,0.081224,0.017334,-0.13768,0.14376,0.61698,-0.29842,0.083833,-0.35686,-0.5897,0.24035,0.10014,-0.33665,0.33985 -0.069428,0.080463,0.82952,1.5811,-1.6847,-0.62102,1.2525,-0.30335,-1.2919,0.61533,-0.60947,-0.43311,0.014068,0.42074,-0.54265,-0.023051,0.47532,0.59087,0.15641,-0.26558 -1.8777,-0.87327,-0.93775,1.1955,-2.1841,0.085164,1.5971,0.90918,-0.58308,-0.28389,-0.83516,-0.27405,0.0059137,0.071288,0.30093,0.987,0.72072,0.65683,-0.1623,-0.14422 -1.8811,1.6397,0.71549,0.85672,-1.6774,-1.0213,1.3998,-0.73347,0.23863,-0.21023,0.90162,0.82276,-0.41381,0.10222,1.2171,0.16519,0.53346,0.077905,-0.3557,0.52531 -0.078659,0.21375,0.29046,1.944,-1.6604,0.67578,1.03,-0.30881,-1.241,-0.17111,-0.089197,0.95193,-0.14003,-0.34145,-0.55802,-0.084934,0.56238,0.48151,-0.05437,0.65861 -0.87607,0.94936,-0.22194,0.7861,-2.0941,-0.076231,0.00068136,-0.51663,-0.54469,-0.77683,-0.63935,0.029761,-0.61015,0.2572,-0.17542,0.1105,0.20942,0.44725,0.073724,-0.47511 -2.3505,1.9714,1.7592,1.3664,-1.4076,-0.92659,1.2153,-0.68159,-1.2871,-0.044591,1.028,0.49391,-0.30203,0.78929,1.0789,0.62942,0.073298,0.13018,0.3171,-0.42176 -2.5766,1.749,0.085672,0.43268,-2.315,-0.20305,0.013197,-0.50187,-0.36461,-1.0328,0.51369,-0.26311,0.067646,0.22313,0.85617,0.092081,0.67823,1.0039,-0.13233,-0.89754 -0.95968,0.21259,1.3307,2.341,-1.9363,-0.90879,1.1442,-0.77968,-0.66339,1.0206,0.42668,-0.38885,0.25853,0.69298,-0.23266,0.062392,0.14445,0.5798,-0.37448,-0.31825 -0.65772,1.249,0.51096,1.7018,-2.4643,-0.17248,1.2886,-0.88176,-0.60353,0.63069,-0.10416,0.67072,-0.53799,0.18533,-0.26441,-0.47966,0.013417,0.15254,-0.11711,-0.58785 -0.66875,1.291,0.20827,0.63378,-1.7377,0.067916,0.53472,-0.3267,-0.52054,-0.73939,-0.5906,-0.11942,-0.27061,-0.20792,-0.21407,0.057344,0.48792,0.43412,0.21681,-0.072368 -1.6873,1.7033,-0.97446,0.70132,-2.3399,-0.28273,0.71866,0.11435,-0.30622,-0.98856,0.81194,0.27475,-0.088742,0.36385,0.53635,0.20482,0.0018397,0.17902,-0.54914,-0.21572 -1.7007,1.4174,-0.5409,1.3091,-1.9161,0.48107,0.38904,-0.057087,-1.8406,-0.3512,-0.44785,-0.37607,0.1968,-0.040171,0.58593,-0.58928,0.37825,0.454,0.081358,-1.0057 -0.87945,1.1639,0.162,1.8015,-2.0765,-0.30368,1.3077,-0.44982,0.40013,0.65773,0.11035,0.92518,-0.077714,0.18876,-0.12093,-0.39791,0.1039,0.21071,-0.61539,0.031904 -1.8707,-0.36867,-0.40604,2.1133,-2.7949,0.20631,1.7917,0.72485,-0.11147,0.22292,-0.37039,0.79697,0.18835,0.62942,0.025407,0.17371,0.27391,0.042636,-0.48557,-0.044896 -0.76839,0.96489,0.97531,2.6265,-2.6931,-0.54614,1.6602,-0.72974,-0.64491,0.90045,0.14694,0.59109,-0.32178,0.34964,0.04243,-0.27794,0.10492,0.51128,-0.30219,-0.28129 -1.808,1.9096,-0.092973,1.3094,-2.5388,-0.99741,0.99485,-0.23452,-0.64676,-1.2601,0.58812,1.1648,0.10195,-0.11698,0.92517,-0.6989,-0.13629,0.36351,-0.23198,-0.31277 -1.5819,1.6052,0.12927,0.25258,-2.2577,0.26838,0.33474,0.10422,-1.631,-0.42507,-0.25954,-0.76987,-0.19709,0.21894,0.3936,0.087099,1.0194,1.0603,0.69251,-0.59239 -2.7959,2.0849,0.67829,1.0449,-2.6982,-0.062155,1.0151,-0.16429,-1.5566,-1.5029,0.12454,-0.13738,-0.14309,-0.40097,1.0087,-0.21273,1.1992,1.0563,-0.082326,-0.47235 -0.96537,0.65944,0.59676,2.1752,-2.6173,-0.83612,1.4982,-0.83349,-0.79502,1.1105,-0.18374,0.15831,-0.35058,0.95671,-0.27186,-0.017237,0.057081,0.20746,-0.80501,-0.43899 -0.31011,0.56516,0.49546,1.3236,-1.809,0.089969,0.79484,-0.7801,-0.70773,-0.03887,-0.046941,0.63272,-0.58051,-0.32807,0.0045408,-0.54249,0.25202,0.21127,0.43834,0.0051858 -2.158,1.5894,-0.63241,-0.044011,-2.1006,-0.69634,1.3754,0.36897,-1.4307,-1.0656,0.054274,-0.77539,-0.15835,1.0374,0.21616,-0.24246,0.87557,0.64858,-0.28659,0.10747 -0.76846,0.73059,-0.25893,1.0029,-1.2924,1.0182,0.25595,-0.16807,-0.56607,-0.24245,-0.098857,-0.23816,0.55923,0.61909,-0.87369,0.1827,0.027587,0.49266,-0.2603,-0.29773 -1.3685,1.9667,-0.47725,1.0614,-2.8005,0.45367,0.64298,-0.21498,-1.1406,-0.93251,-0.22932,0.46095,0.39768,0.39645,0.60135,-0.43124,0.45737,0.47508,0.11637,-0.25658 -1.1802,1.2199,1.2896,2.0381,-1.9985,-0.82936,1.0382,-0.27832,-1.5551,1.2377,0.23983,0.33523,-0.038839,0.50541,0.17922,0.13945,-0.057004,0.4939,-0.45657,-0.93959 -1.3087,1.4284,0.59224,1.8464,-1.7308,0.1117,0.63731,-0.48523,-0.092088,0.11889,0.48671,0.67242,-0.67723,0.26951,0.39055,-0.060992,-0.41698,0.31491,-0.17713,0.17153 -1.2119,0.91306,-0.62506,-0.48925,-2.1943,-0.93059,0.69222,0.40527,-0.89723,-0.50741,0.92271,-0.59444,-0.042127,0.51151,0.22338,-0.29043,0.26481,0.62141,0.44993,-0.17732 -1.0999,0.94918,0.20683,1.7077,-1.5382,-0.32501,0.98214,-0.098768,-0.1079,0.19921,0.022231,0.64572,-0.52883,0.71169,0.21699,-0.35301,-0.22968,0.46985,-0.56036,0.45427 -0.80378,1.0615,-0.60174,0.53743,-2.0158,-0.1008,0.94091,-0.39799,-0.7108,-1.3034,-0.42872,0.34325,-0.24021,0.5876,-0.084239,0.1036,1.008,0.29994,-0.22758,0.066546 -1.1492,1.7407,-0.10973,1.1246,-1.7771,0.23486,0.894,0.014681,-0.76665,-0.66567,0.33326,0.4053,-0.52753,0.34497,0.77261,-0.2551,-0.35208,0.037073,0.14405,0.01709 -1.2805,1.5984,0.28596,2.3873,-2.1761,0.52137,1.1386,-1.1399,-1.5252,-1.1749,0.19794,1.1464,0.22621,-0.43884,0.12566,0.76457,0.27964,-0.031539,0.15007,-0.50939 -0.40937,0.53526,0.65915,1.175,-1.5183,-0.15266,0.43256,-0.89206,-0.5886,0.57826,-0.16246,0.56067,-0.7096,0.29348,-0.179,-0.20078,0.093947,0.46216,0.30724,0.058774 -1.7612,0.84527,0.57479,2.035,-2.1783,-0.92752,1.5037,-0.40888,-0.21018,0.81003,1.3208,0.29583,-0.1734,1.5365,0.082366,0.44542,-0.36669,-0.38998,-0.72996,0.19978 -1.5285,1.4074,0.74123,0.83918,-1.7654,0.067646,1.1545,-0.18178,-0.29185,-0.86827,-0.1485,-0.48168,-0.37784,-0.11887,0.042033,0.43343,0.57944,0.58032,-0.7344,0.023361 -0.82883,0.55501,0.30152,1.2546,-2.987,-0.33248,1.6439,-0.94376,-0.51054,-0.29135,-0.5743,1.1701,-1.162,0.11351,0.7281,0.32124,0.85908,0.022831,0.43231,0.075979 -1.4139,1.4897,-1.251,1.236,-3.036,0.48946,0.72537,-0.27314,-1.1696,-1.0189,-0.31296,0.54647,0.1779,0.8941,-0.26097,0.093527,0.38333,0.25467,-0.26997,-0.52456 -0.46697,-0.14827,-0.50532,1.5894,-1.4976,0.76544,0.90876,-0.55225,-0.30986,-0.36945,0.2166,0.62868,0.15175,0.17121,-0.039333,0.021614,0.48695,-0.23203,-0.37552,-0.12875 -1.0695,1.4059,-0.23183,1.0668,-1.6351,-0.030085,0.54385,-0.027039,-0.42626,-0.52421,0.24226,0.60357,-0.15925,0.18408,0.66442,-0.39656,-0.64319,0.063609,-0.29029,-0.14542 -0.86056,1.015,-0.55546,0.45678,-1.9894,-0.29456,0.34932,-0.48528,-0.40492,-1.0308,-0.45499,0.068244,-0.41974,0.31264,-0.13341,0.25656,0.50516,0.36813,-0.18613,-0.1999 -0.65378,0.84209,-0.39977,-0.09152,-1.205,-0.51331,0.45053,0.31532,-0.47217,-0.53733,0.29457,-0.23959,-0.082671,0.37155,-0.12308,-0.068701,0.072394,0.42273,0.15518,-0.049023 -0.42394,0.66603,-0.48688,0.55332,-1.546,-0.35023,0.3953,-0.73032,-0.52311,-0.39372,-0.58133,1.0347,-0.099822,0.1492,0.0024746,-0.070269,0.38577,0.018805,-0.059393,-0.1586 -1.4584,0.75597,-0.57246,-0.4414,-1.6902,-0.5413,0.32213,0.078032,-0.68951,0.27744,1.2133,-0.24804,-0.47566,0.25765,0.07988,-0.96275,-0.16394,0.30414,0.46073,-0.16849 -1.5557,1.2856,1.5002,1.5546,-1.8248,-0.37851,0.92416,-0.97039,-0.54526,0.75638,0.8916,-0.018756,-0.84487,0.78058,0.65129,0.47997,0.098969,0.20745,-0.21921,-0.36784 -0.74119,1.0408,-0.10013,0.85671,-2.2511,0.59639,0.75259,-0.75632,-0.54534,-0.91792,-0.16342,0.012329,-0.21582,0.3051,-0.70072,0.20382,0.67394,0.2276,0.16036,-0.21913 -0.67608,1.4828,0.15914,1.6102,-1.8767,-0.39407,1.2378,-0.75456,-0.27971,0.17438,-0.16412,0.81701,-0.70203,-0.063794,-0.12222,-0.24848,-0.26944,0.13118,0.12599,-0.066468 -0.6861,1.4822,0.34238,1.5279,-2.0784,-0.01119,0.90139,-0.77776,-0.92252,-0.25073,-0.57444,1.0805,-0.62666,-0.52075,-0.0046964,-0.54471,0.18237,0.33177,0.36298,-0.17942 -1.4119,1.163,-1.3476,0.95438,-2.5241,-0.020238,0.77381,0.45628,-0.76831,-0.59066,0.45552,0.86167,0.042062,0.61977,0.30629,-0.083333,-0.16775,0.045256,-0.5419,-0.038786 -0.70019,1.2718,1.3881,1.2412,-1.8865,-0.39917,1.0246,0.43735,-1.0929,0.84555,0.40143,-0.46922,-0.55013,-0.74907,0.28515,0.17311,0.5134,0.38155,0.35307,-0.24066 -1.9097,2.1697,1.2599,2.068,-2.6554,0.1439,1.006,-0.39338,-1.8552,-0.24947,0.70279,1.5135,0.13418,-0.72342,0.73826,-0.18252,0.8188,0.64923,0.0949,-0.31787 -1.4625,1.9078,-0.25582,2.2559,-2.3076,0.20945,0.92383,0.17075,-0.82855,-0.30652,-0.42333,0.93425,0.32568,-0.11395,0.0918,-0.20613,-0.099824,0.60934,-0.68757,-0.038295 -2.0828,1.6225,0.56363,0.68159,-0.88706,-0.69651,1.4018,0.21168,-0.62856,-1.5174,0.94467,-0.1176,0.60383,0.14143,0.71391,0.07472,0.2691,0.014031,-0.44445,0.43202 -1.09,1.5872,-0.80312,1.0398,-1.9473,0.32508,0.59544,-0.16438,-1.5175,-1.1358,-0.3642,0.75417,0.014519,0.76503,-0.21545,0.075365,-0.16705,0.67518,-0.33122,-0.44227 -1.5007,1.079,-0.66764,0.17926,-2.7814,-0.92223,0.48466,-0.31444,-1.2973,-1.4631,0.21621,0.34357,-0.087839,0.64508,0.6002,-0.036368,0.50004,0.55047,-0.25297,-0.81072 -1.8659,1.8969,0.087246,1.4369,-2.4927,0.54106,0.30218,-0.06514,-1.5684,-0.43562,0.19479,0.45784,-0.59971,-0.0038167,1.0586,-0.24498,-0.091937,0.45841,0.52618,-0.51209 -1.1516,0.92934,1.085,2.3484,-1.9431,0.021123,1.0007,-0.76754,-0.010414,0.68887,0.8561,0.45776,-0.40769,0.72056,-0.17634,0.25186,-0.22975,0.19166,-0.15568,0.17495 -0.79993,0.73888,0.80629,1.5885,-2.6452,-0.91329,0.92647,-1.1393,-0.58212,0.95372,0.13617,0.19841,-0.30241,1.1137,-0.036363,0.24444,-0.060202,0.5574,-0.46682,-0.25709 -1.0735,1.9378,0.44556,2.1137,-2.7591,0.18309,0.9882,-0.076976,-1.3911,0.023203,-0.16923,1.1772,-0.53341,-0.23064,0.48545,-0.32214,-0.15653,0.41106,0.0011266,-0.26899 -2.6376,1.9531,1.2486,-0.10855,-1.3911,0.22175,1.7315,-0.14121,-1.4304,-1.1204,0.31102,-0.42401,0.077572,0.6729,0.79646,-0.12909,1.0431,-0.019384,-0.051425,0.17336 -1.4972,1.1181,0.069091,0.7862,-3.0544,0.18308,0.59466,-0.50731,-0.54222,-0.94331,-0.6571,-0.3555,-0.78802,-0.021527,-0.30792,0.25488,1.0544,0.4938,-0.0096895,-0.31934 -0.66581,0.75939,-0.4408,1.7945,-1.6746,0.65226,1.1518,-0.10086,-0.32051,-0.51661,-0.4721,0.62726,-0.079235,-0.23165,-0.46756,-0.13346,0.65894,0.33785,-0.52431,0.53009 -2.2459,1.9896,-0.78896,1.9307,-3.0534,-0.059173,0.90462,-0.18174,-0.69413,-0.77987,0.02671,0.75984,-0.071833,0.42955,0.40854,0.14168,0.039795,0.41093,-0.83136,-0.48774 -2.4781,2.0932,0.20871,1.2023,-2.3402,-0.85642,0.98974,-0.70565,-0.46094,-1.3632,1.5025,0.98089,-0.046996,0.11843,1.1846,-0.27944,-0.095882,0.60654,-0.38593,0.071612 -1.3237,1.5124,0.16046,-0.16353,-1.8954,-0.35552,0.97882,-0.13722,-1.4909,-0.30188,0.7393,-0.50887,0.084607,0.57139,0.5403,-0.79931,0.78149,0.6541,0.64529,-0.0071958 -2.6363,2.1199,0.32595,0.85942,-2.4051,-0.64884,0.48912,-0.3507,-0.86149,-1.5684,0.56112,-0.32448,0.0059102,0.13129,0.80923,0.14107,0.6104,1.3968,-0.12239,-0.47442 -0.95384,1.4757,-0.090218,1.7371,-2.1398,0.21247,0.98931,-0.59668,-0.64632,-0.11839,-0.29311,1.0379,-0.69846,-0.093623,-0.08923,-0.60996,0.1191,0.44076,-0.52723,0.091549 -2.1026,0.53316,0.90972,1.4606,-2.6825,-0.88228,1.2705,-0.53661,-0.78969,-0.90724,-1.0079,0.5074,-0.52256,-0.32871,-0.44587,0.086678,1.4601,1.2601,-0.87663,0.23722 -0.68029,1.0962,0.78351,1.9225,-2.8562,0.1488,1.4955,-0.81392,-1.1711,0.57346,-0.18406,0.67655,-1.0628,0.41214,0.056289,-0.25491,0.37005,0.25866,0.23234,-0.32603 -2.6429,1.998,1.5621,2.0982,-2.5216,-0.1212,1.4635,-1.094,-1.3251,-0.062893,0.97626,0.56444,-0.5781,0.60628,1.3908,0.66689,0.19135,0.029688,0.36771,0.22424 -1.2367,0.87907,-1.1233,1.1432,-2.2826,-0.079025,0.2696,0.0049652,-0.49545,-0.28446,-0.20313,0.013112,-0.10211,0.57518,-0.091268,0.044307,0.076367,0.0021441,-0.6494,-0.25041 -1.1205,1.8961,0.77921,1.6908,-2.2518,0.32601,0.76713,0.014781,-0.77331,-0.071139,0.25864,0.52985,-0.60059,-0.84131,0.6076,0.027198,0.039739,0.23573,0.34946,-0.23454 -1.597,2.0288,-0.15076,1.1318,-3.5781,0.02349,1.3658,-0.43198,-1.0186,-1.3231,-0.23369,0.32856,-0.45206,0.0053565,0.5306,0.099885,1.1421,0.33792,0.021546,-0.2266 -1.0204,1.9144,-0.080043,1.1826,-2.4863,-0.088363,0.50782,-0.39296,-1.5543,-1.2672,-0.7288,0.37666,-0.20224,0.02366,-0.053987,0.46775,0.42423,0.91232,0.51158,-0.60708 -0.13049,0.37268,0.90664,1.5637,-1.7742,-0.34027,0.70345,-0.19429,-0.87645,0.55312,0.40733,0.20818,-0.69291,-0.20607,-0.25036,0.076393,-0.36285,0.53616,0.29797,-0.29536 -0.74515,1.0708,0.42541,1.9172,-2.2037,-0.0031768,0.61655,-0.55616,-0.17042,0.023327,-0.12505,0.82501,-0.58349,-0.43419,-0.074738,-0.47228,-0.19122,0.38993,0.10482,0.013494 -1.7502,1.1006,-0.72731,-0.46207,-2.2293,-0.56456,1.037,-0.36472,-2.3188,-0.31199,1.0327,-0.031387,-0.20072,0.67364,0.072098,-1.2394,-0.024428,0.51558,1.0904,0.063317 -2.4473,1.3794,-0.34338,-0.34164,-1.8573,-1.0378,1.1,0.24983,-1.081,-0.68945,0.5711,-0.87951,-0.31847,0.57089,0.83067,-0.059242,1.0013,0.15581,-0.55567,-0.27707 -1.1539,1.4423,-0.6351,0.19813,-1.9798,-0.52048,0.5344,0.068068,-0.57223,-1.0356,-0.064411,0.037548,-0.10387,0.37402,0.11627,0.34486,0.42256,0.46473,-0.063654,-0.36343 -0.95473,1.4026,0.52965,1.1381,-1.8995,-0.66683,1.2045,-0.85625,-0.25107,0.049724,0.70386,0.38224,-1.0761,0.45345,0.65071,-0.086488,-0.28649,0.3102,-0.017707,-0.046867 -2.5585,1.3466,-0.10482,-0.5784,-1.8433,-1.0632,1.5977,0.71796,-1.19,-0.74937,1.3222,-0.80554,-0.16535,0.19226,0.75056,-0.46004,0.44537,-0.19697,0.0027125,-0.047039 -0.16985,0.84142,0.27677,1.9727,-2.114,0.19788,1.741,-0.98902,-1.2726,0.086714,-0.43206,1.0797,-0.30561,0.02415,-0.24369,-0.30477,0.45752,0.25435,0.20123,-0.25141 -0.045161,0.2452,0.49819,2.4618,-2.484,0.2273,1.6711,-0.59277,-1.451,0.12531,0.07142,0.89864,-0.50063,-0.40283,-0.17097,-0.45482,0.22872,0.41335,0.070373,-0.051487 -1.8516,1.0351,-1.54,0.81142,-2.6717,0.81909,0.69459,-0.36806,-2.1504,-0.59324,0.49578,0.61341,0.63484,1.2679,-0.63477,0.32036,0.18078,0.72308,-0.1924,-0.3944 -1.7207,-0.1959,-1.07,2.8682,-2.2618,0.35563,1.664,0.54257,-0.95903,-0.7129,-0.44162,-0.61023,0.12127,0.13123,-0.00077316,0.15208,1.0731,0.52698,-0.087958,-0.25305 -1.2408,1.5519,-0.34056,0.57093,-1.8781,-0.31181,0.11528,0.13177,-1.267,-0.60603,-0.17045,-0.25815,-0.13496,0.36233,0.57401,0.012275,-0.061709,0.81304,0.07561,-0.8499 -1.0574,1.7386,-0.50233,0.7762,-2.574,-0.42462,0.58677,-0.30198,-1.6059,-1.5866,-0.3322,0.52893,-0.18717,0.29833,0.24198,-0.23545,0.066012,0.84143,0.065321,-0.64392 -0.89347,0.99651,0.30194,1.2745,-2.1688,0.46887,0.38827,-0.58026,0.029395,-0.10349,0.13367,0.75218,-0.57768,0.16881,0.38675,-0.49333,-0.10696,0.55902,-0.06059,0.3589 -0.76153,1.5547,-0.082458,1.9879,-2.1929,0.78255,1.1798,-0.11831,-1.0589,-0.10937,-0.31677,1.2155,-0.070367,-0.072221,-0.11246,-0.55086,0.11838,0.39816,-0.24013,0.097359 -1.034,0.64698,0.77446,3.0862,-2.2985,-0.27469,1.8165,-0.99899,-0.66379,0.28891,0.45089,0.67048,-0.054841,0.79717,-0.011485,0.37656,0.12602,0.42913,-0.063707,0.53018 -0.9496,1.3065,-0.37585,1.5724,-2.3604,0.16653,0.54794,-0.63161,-0.45572,-0.4455,-0.55631,1.0937,-0.39183,-0.050674,-0.073923,-0.50381,0.023291,0.24158,-0.47001,-0.14925 -1.7716,1.2673,-0.98882,0.93011,-3.5354,0.61872,0.60012,-0.39755,-0.82388,-0.80869,-0.26674,0.4499,0.014621,0.60816,0.24521,-0.004094,0.79021,0.201,-0.030907,-0.65386 -1.2965,1.5277,-0.41383,0.39854,-1.8112,-0.14368,0.36603,0.19735,-0.98961,-0.55479,-0.059734,-0.57751,-0.21768,0.54933,0.34882,0.075305,0.3815,0.50332,0.20346,-0.50863 -1.1566,1.3606,1.0562,1.056,-1.7083,-0.47945,0.90853,-0.79513,0.089504,0.046674,0.45273,0.36497,-0.66236,-0.1916,0.51854,-0.22499,0.51853,0.88252,0.063222,0.36288 -1.0732,0.62115,-1.2746,0.17609,-1.6453,-0.29588,0.22741,0.50105,-1.5471,-0.287,0.30485,0.066106,-0.10404,0.8968,-0.23862,-0.41326,-0.38756,0.28615,-0.028417,-0.40545 -0.98189,1.2802,-0.9388,1.0042,-1.941,0.13078,0.46718,-0.066862,-1.1656,-0.94131,-0.12435,0.68717,0.11173,0.6969,-0.42249,-0.10407,-0.46468,0.38912,-0.62152,-0.30858 -0.32811,0.87599,0.23045,1.1988,-2.0004,0.41293,1.0719,-0.61812,-0.63649,-0.65124,-0.25235,0.49344,-0.44784,-0.36203,-0.18288,-0.34559,0.6881,0.25085,0.3511,0.13087 -1.1947,1.588,-0.097482,1.0736,-2.793,0.22993,0.73795,-0.54286,-0.80279,-1.2575,-0.67587,-0.24253,-0.3536,0.12253,-0.15616,0.11184,0.84667,0.50724,0.31356,-0.49825 -1.9224,1.733,0.59324,2.2894,-2.0357,0.44592,0.96446,-0.23804,-0.52596,0.13084,0.3078,0.53901,-0.85306,0.16949,0.93774,0.083193,-0.16519,0.010694,-0.035087,-0.011037 -0.67802,0.704,0.95032,1.7215,-2.2434,-0.56736,0.77631,-0.39571,-1.0296,0.92731,-0.44361,0.052676,-0.59932,0.55095,-0.49803,-0.018645,0.043772,0.57584,-0.38541,-0.40678 -0.41986,0.87695,0.44188,1.3973,-2.0788,0.013662,1.367,-0.34481,-0.22752,0.15602,0.2793,0.096057,-0.66788,-0.078719,-0.15235,-0.083694,0.39758,-0.063901,0.26646,0.0011396 -1.0456,0.41007,1.5189,1.8887,-1.932,-0.44555,0.67248,-0.31602,-0.79612,0.90451,0.23519,-0.24525,0.32774,0.8115,-0.80069,0.33563,0.43552,0.63683,-0.28556,0.26962 -0.71262,0.83413,-0.1622,1.3899,-2.3423,0.040097,0.60541,-0.78808,-0.22105,-0.36976,-0.020239,1.1262,-0.77164,0.16233,0.17285,-0.51881,-0.23047,-0.011801,-0.32625,0.24582 -1.3222,0.85498,-0.84061,1.5976,-2.5292,0.35592,0.095344,-0.146,-1.8891,-0.78905,-0.64335,0.49328,-0.12415,0.64313,-0.30728,0.21588,0.2205,0.5097,-0.78105,-0.78297 -0.56882,1.2051,-0.30042,1.0076,-2.0683,0.43734,0.30691,-0.41698,-0.91483,-0.63643,-0.38738,0.12973,0.038021,0.36366,-0.44908,-0.21413,0.11654,0.37002,0.071984,-0.55825 -1.2652,0.93263,-0.27784,0.14108,-1.7676,-0.36683,0.27754,-0.6738,-0.48576,-1.3727,0.30187,-0.34129,-0.76936,0.66107,0.28713,0.37562,0.22899,0.35489,-0.10575,-0.23895 -0.91317,1.4489,-0.019027,1.6107,-1.8963,0.13488,0.61145,-0.64386,-0.5165,-0.97127,0.068421,0.54772,-0.17993,-0.030027,-0.21093,0.47995,-0.24349,-0.054382,-0.18252,-0.40798 -1.3834,1.5258,1.3048,1.2755,-1.4517,-1.0052,1.1252,-0.56605,-0.8099,0.66091,1.0085,0.44629,-0.29057,0.67793,0.63772,-0.14,-0.2493,0.59414,0.1441,-0.47596 -1.5057,1.378,-0.062429,0.39214,-2.4081,-0.029637,0.73157,-0.62009,-1.473,-1.4303,-0.36674,-0.51234,-0.5046,0.35688,0.022289,-0.039537,0.79033,0.95957,0.15819,-0.41278 -0.94448,0.93833,0.70773,1.765,-1.6442,-0.49041,1.0232,-0.64308,0.027197,0.9008,-0.010692,0.25518,-0.65171,0.31058,-0.096446,-0.095821,-0.050492,0.41322,-0.44387,-0.17099 -0.1356,0.44968,-0.084761,1.3122,-1.9039,0.46193,1.0115,-0.76464,-0.58529,-0.55728,-0.20762,0.88636,-0.29591,-0.018026,-0.44076,-0.25814,0.43109,-0.14661,0.022498,-0.054346 -1.7661,1.9817,0.69774,1.335,-1.9572,-0.32521,1.5642,-0.083185,-0.85195,-0.80067,-0.085945,0.39056,-0.11785,-0.51341,0.90806,-0.31349,0.65509,0.25008,-0.33334,0.12782 -1.4387,0.54749,0.77305,1.8169,-2.2975,-1.5479,1.3634,-0.55635,-0.44111,1.0776,1.0509,0.9011,0.65882,1.3741,0.090443,0.38386,0.315,0.36991,-0.82806,0.38757 -1.2735,2.0695,0.36656,1.6437,-1.9773,-0.46327,0.8848,-0.42121,-0.41678,-0.14471,0.35839,0.81459,-0.52455,-0.12026,0.71795,-0.091472,-0.436,0.3724,-0.046185,-0.1821 -1.3475,1.0248,0.3809,2.057,-2.042,0.14303,1.3496,0.051302,-0.65565,0.74849,-0.17904,0.36619,-0.45671,0.73763,0.3521,-0.51676,-0.080074,-0.13652,-0.85766,-0.15939 -1.2688,0.73722,0.94523,2.1032,-2.0523,-0.49808,1.2721,-0.6371,-0.29998,1.1435,0.67551,-0.022707,-0.076095,0.99088,-0.088815,-0.1571,0.03588,0.19815,-0.89912,-0.24608 -0.72759,0.55278,0.91544,2.2138,-2.2963,-0.79077,1.2662,-0.80482,-0.24578,1.0493,0.054991,0.108,-0.32262,0.54778,-0.30276,-0.25306,0.038711,0.51626,-0.38442,-0.3371 -1.8065,1.3894,-1.2994,0.58412,-2.9389,0.26534,0.52833,-0.13578,-1.2388,-0.39896,0.41014,-0.1547,0.34776,1.0987,-0.46229,0.14585,0.30166,0.64977,0.023762,-0.73064 -1.9945,1.424,-0.86016,0.18048,-2.1545,-0.12476,0.5836,-0.28637,-1.1029,-1.6206,0.39433,-0.22416,-0.66653,0.83277,0.60667,0.58089,0.39535,-0.064542,0.22336,-0.42939 -2.0207,1.2398,-0.88272,0.71507,-1.3062,-0.14055,0.72991,0.93135,-2.6614,0.38801,-0.14577,-0.18133,0.12172,0.57036,-0.20537,-0.29803,0.19664,1.069,0.099289,0.10998 -1.6444,1.6062,-1.0817,0.25363,-2.5736,-0.73554,0.65798,0.74814,-2.4401,-0.85303,0.65333,0.083374,0.16409,0.60811,0.087994,-0.50554,-0.48202,0.91192,0.6138,-0.82812 -0.85696,0.69527,-0.14921,1.5593,-2.1751,1.4181,0.52859,-0.10191,-1.8242,-0.89476,-0.14977,0.40825,-0.21861,-0.29827,-0.41539,0.092986,0.51404,0.26972,-0.33782,-0.17664 -1.6063,1.8831,-0.11562,1.5294,-1.9254,-0.31698,0.98882,-0.020612,-0.67535,-0.27306,0.7991,1.0087,-0.23068,0.12686,0.91981,-0.52931,-0.81648,-0.14897,-0.51504,-0.12357 -1.8026,1.6008,-0.6302,0.14595,-2.166,-1.2047,0.73085,0.17479,-1.8875,0.12252,1.1695,-0.059037,-0.37354,-0.37099,0.21443,-1.0696,0.15452,0.27171,0.39729,-0.33667 -1.6405,2.0754,0.47707,2.2855,-2.7149,0.27566,1.1283,-0.23017,-1.2432,-0.13152,0.024091,1.162,-0.67824,-0.16222,0.60116,-0.24486,-0.12755,0.60583,-0.20829,-0.34553 -1.6575,1.5823,-0.98725,1.5764,-3.234,0.82458,1.3117,-0.30043,-2.3757,-1.1119,0.20678,0.96921,0.41686,0.51302,-0.30655,0.39595,0.77235,0.7964,-0.30973,-0.33944 -2.7416,0.91704,-0.81686,-0.48946,-2.7995,-1.1414,0.97336,0.96818,-0.97394,-0.79206,0.82845,-0.23,-0.42015,0.38584,0.73547,-0.22542,0.93506,0.73624,0.23999,0.031193 -0.8814,2.0195,0.3808,1.2056,-1.8957,-0.090175,1.2055,-0.56215,-0.52215,-0.21323,0.0086615,0.55762,-0.72174,-0.21668,0.4301,-0.21329,0.16979,0.40056,0.33688,0.026219 -1.4251,1.2074,0.57652,2.1188,-1.9142,-0.45014,1.0542,-0.8216,-0.25635,0.29012,0.85118,0.89656,-0.45744,1.3084,-0.051547,0.57246,-0.54629,-0.040254,-0.21368,0.56411 -0.57703,1.8557,0.63143,1.218,-2.5626,0.04965,1.3183,-0.81381,-1.0133,-0.14649,-0.054251,0.8665,-0.12151,-0.29145,0.37545,-0.46069,0.41483,0.69201,0.58766,0.047212 0.27924,-0.19882,0.56638,1.3637,-1.7085,0.31779,0.99649,-0.64405,-1.5242,0.12501,0.56341,0.52502,-0.64659,-0.057306,0.2236,-0.23287,0.078935,0.094959,0.35524,-0.021407 -1.1385,1.4413,1.2949,1.4939,-1.8386,-0.75373,0.83528,-0.16267,-1.2004,1.0884,0.27622,0.52601,-0.57702,0.22376,0.30334,0.0064974,0.16934,0.77299,-0.20254,-0.83155 -1.4731,1.6829,-0.43667,0.61181,-2.4021,-0.47946,0.41592,-0.20293,-0.29712,-1.065,-0.13522,0.19629,-0.38778,0.24679,0.36604,0.19193,0.33867,0.43107,-0.34422,-0.38102 -3.5693,1.2507,0.02134,-0.45783,-1.9085,-0.92059,0.71248,-1.008,-1.0822,-0.32162,1.1512,-0.96439,-0.11811,0.42167,0.86324,-0.66156,0.79065,1.17,0.0023383,-0.15292 -1.7534,2.0962,1.1306,2.6511,-2.5766,-0.38569,0.99664,-0.49703,-1.3844,0.084308,0.44451,1.3466,-0.3447,-0.094266,0.73554,0.35709,-0.0082093,0.75773,0.33755,-0.09383 -1.013,1.5441,-0.041677,1.9482,-1.9413,-0.95835,1.6912,-0.16505,-0.99786,0.44014,-0.075422,1.1147,-0.20951,0.27582,0.10464,-0.40305,-0.16878,0.40929,-0.73136,0.22583 0.2029,0.12061,0.41666,1.53,-1.0233,0.27715,1.5035,-0.0017164,-1.0768,0.062567,0.31619,0.46138,-0.39089,-0.047001,-0.23167,0.010582,0.17911,0.30714,0.097573,0.14658 -0.58532,0.75803,1.1373,2.7023,-3.0941,-0.26493,1.9519,-0.73691,-1.7125,0.64174,0.040091,0.33761,-0.33357,0.031472,0.1009,-0.0042107,0.24151,0.51862,-0.049702,-0.3089 -0.52914,0.63346,1.2535,1.4249,-2.5524,-0.79876,1.199,-1.1519,-1.481,0.18213,-0.46651,0.50765,-1.1283,-0.22795,0.61749,-0.20509,0.54162,0.4294,0.61125,-0.17188 -0.5811,1.3555,-0.050677,1.697,-2.1181,0.029132,0.88143,-0.36077,-0.95859,-0.19909,-0.48317,0.98003,-0.49989,-0.085524,0.036755,-0.61577,-0.26548,0.024204,-0.076474,-0.13229 -3.2622,0.27056,0.0011846,-0.83274,-1.0342,-1.0611,2.4175,0.72555,-1.5062,-0.42596,0.88168,-0.2993,0.16489,0.034059,0.19105,-0.94479,-0.2765,-0.50273,-0.10749,-0.063308 -1.4567,1.4495,-1.2719,0.24555,-2.8317,-0.37318,0.43686,-0.19391,-1.357,-0.56829,0.65463,0.12634,-0.11734,1.0222,-0.45053,0.35952,-0.21204,0.50075,0.043864,-0.58439 -2.1052,1.2683,0.51016,0.72886,-2.4398,0.016475,1.0723,0.13392,0.41097,-0.142,-0.47568,0.37054,0.057697,-0.069004,0.59817,0.2633,0.73353,0.059002,-0.82623,0.2064 -1.3359,0.7512,-0.96199,-0.10564,-2.7413,-0.39041,0.87269,-0.19957,-1.3002,-1.181,-0.10814,0.1996,-0.10705,1.0265,0.43689,0.28978,1.1712,0.49545,-0.16939,-0.18182 -1.1973,1.0092,1.7888,0.87106,-1.6215,-1.1511,0.47778,-0.70034,-0.68037,0.53052,1.0248,0.34093,-0.24835,0.20075,0.54497,0.092181,0.28391,0.58268,0.2011,-0.56981 -1.0407,1.0672,1.4147,2.2863,-2.7219,-0.79172,1.4155,-1.0723,-1.8729,0.97141,0.11736,0.46657,-0.39138,0.55547,0.45826,0.37366,0.15623,0.53758,-0.30697,-0.55349 -0.56651,1.036,1.0077,1.5499,-2.0269,0.13335,0.88685,-0.54885,-0.29061,0.33677,0.57731,0.10044,-0.81758,-0.56319,0.014596,-0.039933,-0.050093,0.39565,0.47287,-0.1484 -0.81797,1.2477,-0.41813,1.0657,-1.006,0.47265,0.80685,0.24515,-0.9631,-0.58859,-0.72226,0.45481,0.4887,0.084607,-0.35089,0.43443,0.55912,0.87957,-0.17779,0.26158 -0.29848,0.89474,0.10146,2.0866,-1.541,0.53267,1.9531,-0.14306,-1.0446,0.20764,-0.31712,0.78812,-0.13816,0.24315,-0.36338,-0.24476,0.60815,0.28051,-0.15231,0.58858 -1.4731,0.9143,-0.20099,0.90219,-2.9977,1.0949,0.12909,-0.020336,-2.8569,-0.72734,-0.12776,-0.16876,-0.26327,0.29918,0.02531,0.077014,0.63965,0.84186,0.28533,-0.69846 -0.48843,0.88165,-0.13792,1.2298,-1.8567,0.74612,0.24508,0.14875,-1.1639,-0.55704,-0.42118,0.43826,-0.2215,-0.15126,-0.26913,0.016938,0.05646,0.30537,0.11271,-0.20426 -0.5196,0.92532,-0.36614,1.0555,-1.5553,0.14516,0.44986,-0.24174,-1.0206,-0.82726,-0.5625,0.84644,-0.36716,0.30817,0.06496,-0.1387,-0.091105,0.16304,-0.19168,0.078359 -0.50984,1.0305,-0.5147,1.2732,-2.432,0.38746,1.0761,-0.80773,-0.60836,-0.93005,-0.14254,1.1002,-0.062149,0.32858,-0.34941,-0.1064,0.32174,-0.14544,-0.052031,-0.028944 -1.2176,1.7871,-0.28724,2.3205,-2.1324,0.52482,1.5447,0.49003,-1.1685,-0.30313,-0.54096,0.78969,0.18527,0.053335,0.14306,-0.26392,0.39495,0.56273,-0.41927,0.23397 -2.7599,1.7182,-0.61708,0.60391,-2.5691,0.17319,0.51046,-0.68041,-1.3498,-0.95866,0.47753,-0.20665,-0.1747,0.88267,1.0548,-0.33016,0.36163,0.05205,-0.1496,-0.75948 -0.71376,1.2894,-0.12355,1.8002,-2.547,0.34442,1.3696,-0.98899,-0.64777,-0.91775,-0.46624,0.84229,-0.47148,-0.022574,-0.32997,0.074055,0.40119,-0.1253,0.15735,0.074139 -1.7431,0.59383,1.7093,1.3205,-0.86509,0.58907,1.024,-0.34459,-1.1273,-0.48857,0.030322,0.18736,-0.46677,-0.16635,0.27089,0.94333,0.52339,-0.1214,0.41051,0.74353 -1.0372,1.044,-0.78787,-0.031278,-1.6239,-0.40254,0.45087,0.2939,-1.1695,-0.46817,0.78325,-0.27286,-0.4566,0.73463,-0.10257,-0.075081,-0.2363,0.40364,0.43217,-0.35603 -0.59354,0.67488,-0.46673,1.2253,-1.8515,0.19052,0.55433,-0.49625,-0.27066,-0.70701,-0.61348,0.799,-0.24992,0.21804,-0.49358,-0.029864,0.17918,0.034692,-0.51331,0.017001 -0.65465,1.1899,-0.57326,0.86749,-2.0219,-0.11549,0.5468,-0.54419,-0.98035,-0.82164,-0.74759,0.52255,-0.13351,0.48286,-0.32644,-0.030831,0.38045,0.32262,-0.1571,-0.55836 -0.46164,-0.89794,0.74447,1.4996,-1.6169,-0.59506,0.3153,-0.88568,-0.56309,0.36623,-0.33797,-0.41619,0.42482,0.71762,-0.0037586,-0.19836,0.3125,0.4783,0.013122,0.33382 -1.4178,1.432,0.26046,1.6293,-2.748,0.53257,0.93488,-0.37988,-0.14135,-0.38432,0.44571,0.059839,-0.61281,-0.019491,0.36507,0.012053,0.1719,-0.36552,0.27963,-0.059298 -0.2125,0.23071,-0.045068,1.9689,-1.4887,-0.016571,1.6813,-0.8447,-1.4031,0.047044,-0.38667,0.9066,-0.55043,0.44968,0.12087,-0.049155,0.61331,0.06819,-0.23225,0.56041 -1.2148,0.44229,-0.45533,0.0077786,-2.3179,-0.55296,0.85308,-0.32463,-1.4265,-0.87779,-0.52727,-0.34589,-0.39584,0.91044,0.15522,-0.15321,0.97443,0.14414,-0.27019,-0.21209 -1.2207,1.0763,0.3019,1.1301,-1.8241,1.1028,0.62306,0.086895,-0.63079,-0.63211,0.29317,-0.44834,-0.52586,-0.17125,0.61456,-0.03854,0.44508,0.16225,0.43846,0.18686 -1.0161,1.5623,-0.56535,0.65552,-2.3532,0.016506,0.75058,0.065323,-1.4166,-0.98871,-0.48825,-0.36609,0.0050951,0.56683,-0.043281,0.17391,0.981,0.61817,0.2067,-0.36906 -1.5112,1.4096,0.38137,1.8751,-2.6625,0.53507,0.27258,0.41794,-1.7955,-0.64163,-0.12744,1.028,-0.46451,-0.62109,0.58205,-0.32729,0.39548,0.69734,-0.038216,-0.10523 -1.1895,2.0557,0.31959,2.1904,-2.1516,-0.18585,1.1726,-0.54377,-0.85591,-0.2096,0.10685,1.024,0.030513,-0.23334,-0.0078458,0.04308,-0.091635,0.42983,-0.24128,-0.20187 -1.6942,1.8601,-0.21634,0.39763,-1.5684,-0.45379,0.57143,0.20719,-0.67313,-1.238,0.35616,-0.41588,0.041553,0.20449,0.83312,0.21235,0.35286,0.57429,-0.21778,-0.49908 -1.4321,1.7969,0.57156,1.8373,-2.9007,-0.4371,1.473,-0.916,-0.36671,-0.94949,0.36018,0.30692,-0.65789,-0.31525,0.68149,0.033857,0.44333,0.48456,0.2284,0.24823 -1.1859,1.5562,-0.66935,0.60919,-1.5564,-0.10805,0.55547,0.077666,-0.80446,-0.84422,0.21853,0.44889,0.19489,0.50286,0.1548,-0.033605,-0.38287,0.28154,-0.47655,-0.38179 -1.0837,0.82082,1.6162,1.4813,-1.4854,-0.25067,0.54967,-0.21567,-1.4543,1.1856,0.70112,0.24251,-0.067489,0.40207,-0.20999,0.68678,0.21501,0.13772,-0.020103,-0.54969 -2.5887,1.244,-0.19124,-0.61167,-1.7896,-0.73279,1.8106,0.49119,-1.0759,-0.40095,0.36341,-0.48479,-0.19417,0.77334,0.20159,-0.38925,0.25166,-0.07937,-0.5485,0.35699 -1.1587,1.7343,0.57174,2.282,-2.0232,-0.061031,1.1948,-0.10747,-0.44264,0.53932,0.080874,0.56531,-0.37911,-0.077478,0.17429,-0.1608,-0.4594,0.11045,-0.28797,-0.31623 -1.5044,1.0063,0.44821,0.053512,-0.58591,-0.7384,1.2941,0.47722,-0.91893,-0.063088,0.42555,-0.6815,0.32019,-0.25436,0.19595,-0.58289,0.16578,-0.012283,0.0088574,0.13983 -1.7911,1.079,0.84489,0.004094,-0.99455,0.42645,0.28409,0.6218,-1.4412,-0.1812,-0.018949,0.11477,0.21521,-0.10333,0.97436,-0.24561,0.93657,0.31304,0.34351,-0.33229 -2.0324,0.96063,-0.65819,-0.38464,-1.985,-0.80698,0.69557,-0.1137,-1.0178,-0.71599,0.75822,-0.86767,-0.60059,0.89754,0.52226,-0.37454,0.27703,0.53133,0.18931,-0.057966 -1.0661,1.1234,1.4465,2.3447,-2.6673,0.12207,1.4493,-0.36246,-0.94361,1.039,0.68862,0.20878,-0.37806,0.47803,0.020176,0.15461,-0.13479,0.39771,-0.2812,-0.43094 -0.77516,0.67639,1.6607,1.3889,-1.8104,-0.13627,1.2731,-0.2411,-1.0087,0.13599,0.27036,-0.18158,-0.99803,-0.42261,0.26201,0.75205,0.58184,0.14644,0.61897,0.74138 -1.8319,1.7448,1.706,2.0748,-2.5049,-1.1687,1.2262,-1.4095,-1.2871,0.68351,0.57529,0.1705,-0.58609,0.36859,0.67781,0.19557,0.27781,0.48942,-0.033054,-0.72019 -2.031,-0.37154,-2.2096,1.5742,-2.1636,0.28007,1.3463,-0.37195,-1.5864,0.77298,0.5727,0.075589,-0.19614,0.78794,-0.16055,0.15657,0.70978,0.15238,-0.19926,0.23367 -2.0626,1.2327,-0.78164,-0.2643,-2.8243,-1.2463,0.53551,3.2907e-05,-1.6205,-0.45788,1.0529,-0.31272,-0.75745,0.48535,0.31879,-0.95245,-0.23873,0.61824,0.38961,-0.47288 -1.7903,1.2657,1.239,0.98466,-0.9799,-0.58697,1.3853,-0.49416,-0.067625,-0.48538,0.24188,0.57839,-0.3133,-0.093579,0.095254,0.021449,0.42325,0.56444,-0.80238,0.42976 -1.6256,0.96591,-0.19195,0.21397,-1.2125,0.31786,0.45915,-0.23559,-2.3937,0.34266,-0.089271,0.53105,0.042989,0.19851,0.23957,-1.2246,0.27793,0.45311,-0.0038023,0.047383 -2.2361,1.1716,-0.34342,-0.26877,-2.7579,-1.4789,1.0796,-0.0024187,-1.5317,-0.8545,0.60111,-0.87411,-0.31032,0.60414,0.42856,-0.83689,0.65831,0.82644,0.007725,-0.35038 -1.1287,-0.13941,-1.2983,1.1883,-1.6136,0.65129,1.5765,-0.053811,-1.0479,-0.30036,0.22894,-0.094163,0.36112,0.7349,-0.34439,0.64642,1.0537,0.63441,-0.50363,-0.076093 -0.072361,0.30708,0.28777,1.1531,-0.88802,0.48016,1.7078,-0.50321,-0.20638,-0.1839,0.31719,0.43491,-0.057244,0.094865,-0.35057,-0.41731,0.57207,0.31395,0.19643,0.16468 -1.0304,0.85881,-1.0258,0.6369,-1.6995,-0.1,0.19786,0.15336,-0.92151,-0.50642,-0.084607,0.093795,0.026626,1.0103,-0.31153,-0.2322,-0.44323,0.33304,-0.60108,-0.30178 -1.4627,1.3747,1.264,1.6958,-1.8124,-1.0437,1.0838,-1.3609,-0.54667,0.55604,0.78496,0.33916,-0.54473,1.026,0.36628,0.40377,-0.15506,0.46977,0.086092,-0.099861 -1.7005,2.5113,0.20931,1.0677,-2.5524,0.20852,1.3012,-0.060223,-1.2613,-1.2869,0.14844,0.32981,-0.079163,-0.17998,1.1361,0.031945,0.60777,0.66657,0.47272,-0.06439 -1.9614,1.4887,-0.64812,-0.37658,-2.188,-0.89112,1.002,0.3262,-1.7616,0.24748,1.4456,-0.34856,-0.4702,0.07622,0.24153,-0.50844,0.26514,0.10208,0.80002,-0.2466 -1.1859,0.94082,1.4135,1.4967,-2.4781,-0.79347,0.87371,-1.183,-0.55018,0.87037,0.49074,-0.24298,-0.6997,0.55029,0.49897,0.039515,0.28428,0.38153,-0.16345,-0.73471 -0.78933,0.41513,1.7148,1.7464,-2.5147,-0.3854,0.49819,-0.080019,-1.3599,1.0155,0.71566,-0.0023356,-0.1662,0.063059,-0.30451,0.28462,-0.078454,0.59142,-0.20503,-0.43846 -1.3999,0.85341,1.3005,2.2541,-3.0914,-0.95262,1.1539,-1.2291,-0.98548,0.99942,0.29323,-0.24464,-0.37232,0.97485,-0.030995,0.23744,-0.10971,0.30892,-0.39102,-0.51469 -1.3737,1.7208,-0.79703,0.46838,-2.3464,-0.37973,0.065388,-0.13399,-0.86567,-0.98648,-0.27896,0.40673,0.20268,0.627,0.21829,-0.28014,-0.19973,0.73122,-0.085119,-0.74336 -4.0875,1.2314,0.76414,1.5226,-2.3711,0.64476,1.1091,-0.77262,-2.3702,-0.9062,0.7904,0.51336,-0.50781,0.006378,1.2989,0.11596,0.88604,0.87039,0.90367,0.27473 -1.382,1.2751,1.6457,1.3439,-1.9884,-0.80888,0.5167,-1.135,-0.80487,0.37043,0.64364,0.2081,-0.58696,0.47046,0.39861,0.13055,0.18078,0.63637,0.30351,-0.26162 -1.8746,1.9715,-0.12333,1.2943,-1.8983,-0.13255,0.3163,0.024181,-0.94982,-0.76322,-0.11431,0.85389,0.19643,-0.0025542,0.71093,-0.5928,0.12504,0.48261,-0.40089,-0.74461 -0.28266,0.59773,0.54863,1.6725,-1.5317,-0.30546,1.2301,-0.55047,-0.44709,0.61661,-0.14145,0.054852,-0.30158,0.18755,-0.53195,-0.34618,-0.14094,0.38521,-0.033069,-0.19775 -1.3127,1.1451,-0.83198,2.1507,-3.0336,-0.055923,0.4107,-0.44422,-0.53789,-0.55513,-0.43677,0.11191,-0.041988,0.077354,-0.19709,0.21592,0.25495,0.12977,-0.12991,-0.53661 -2.5251,1.8362,-0.17149,0.98787,-3.1295,-0.31325,0.48204,-0.16681,-2.0382,-1.306,-0.038772,-0.23089,-0.18116,0.299,1.1152,-0.52224,0.71564,0.97363,0.0077943,-0.96182 -1.77,1.8567,0.33264,1.3874,-2.1573,-0.18058,0.60481,-0.65505,-0.28403,-1.3971,0.24853,0.38917,-0.37093,-0.020215,0.49779,0.16428,0.47233,0.89798,0.11976,0.22586 -1.8923,-0.40036,-1.3596,0.58277,-2.0545,0.41902,1.6459,0.73264,-1.2913,0.26484,0.97649,1.0599,-0.19149,0.83467,-0.067418,0.5377,1.0229,0.7272,-0.11799,1.1932 -1.447,0.76624,-1.4089,0.32514,-2.4426,-0.18731,0.22329,0.31992,-1.2531,-0.42944,0.69699,0.19315,-0.40843,1.0871,-0.31048,-0.059261,-0.504,0.35657,-0.38755,-0.63531 -2.3233,1.6868,-0.20181,-0.38634,-1.3381,-0.79987,1.663,0.71158,-1.1172,-0.36267,0.69899,-0.80587,0.34085,0.69075,0.17264,-0.64908,0.14681,0.31804,-0.015084,0.37063 -3.1026,0.85362,0.17514,1.7044,-2.6343,0.081498,1.3381,-0.86789,0.20204,-0.30891,0.64539,0.36927,-0.41729,0.51321,1.2611,0.89781,0.57299,-0.38651,0.39021,0.41567 -1.1081,1.7381,-0.76597,1.5099,-2.3404,0.08548,0.86243,-0.12889,-1.8315,-0.99115,-0.62827,0.89974,0.14297,0.43909,-0.3678,0.1353,-0.037822,0.83275,-0.44813,-0.5285 -1.2807,1.5936,0.42603,1.7696,-2.0121,-0.44166,0.76379,-0.55244,-0.32875,-0.014991,0.0218,1.1745,-0.66608,-0.17991,0.43163,-0.58173,-0.21293,0.62976,-0.30689,-0.1219 -1.7472,0.1831,-1.9649,1.2925,-1.989,0.58826,1.1403,0.66618,-1.1767,-0.2873,-0.0069883,0.066517,0.56441,0.52067,0.15724,-0.31486,0.63501,-0.13488,-0.0083482,0.59979 -0.65736,0.66243,-0.6647,0.15497,-1.2408,-0.1021,0.044942,-0.0073575,-0.67293,-0.56664,-0.30744,0.31565,0.23749,0.58047,0.13714,-0.20147,0.092947,0.13946,-0.23809,-0.23478 -1.7847,2.0146,-0.015529,0.68327,-1.8079,-0.33567,0.1647,0.015531,-0.74761,-0.70014,0.14526,-0.39835,-0.18132,0.33138,0.63803,0.33912,0.14103,0.7009,-0.17997,-0.84698 -1.8147,1.9892,0.71722,1.7066,-3.2303,0.13062,0.66424,-0.47468,-1.2873,-1.0874,0.02037,0.51122,-0.49884,-0.69608,0.59482,-0.25272,0.6573,0.74779,-0.0033721,-0.43007 -0.19625,0.67735,0.04154,1.4277,-1.9518,0.35965,1.1187,-1.0205,-0.45131,-0.38541,-0.10417,0.77359,-0.55062,-0.078942,-0.32898,-0.18405,0.42392,-0.065602,0.2281,0.094845 -1.0436,0.86486,-0.64243,0.2055,-0.92036,0.06427,0.3255,-0.05037,-1.4929,-0.31844,0.37315,-0.2915,-0.076609,0.70299,-0.087661,0.13766,-0.37195,0.34737,0.45457,-0.47278 ================================================ FILE: mnist_csv/label_test.txt ================================================ 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 5 5 5 5 5 5 5 5 5 5 5 5 5 5 5 5 5 5 5 5 5 5 5 5 5 5 5 5 5 5 5 5 5 5 5 5 5 5 5 5 5 5 5 5 5 5 5 5 5 5 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 7 7 7 7 7 7 7 7 7 7 7 7 7 7 7 7 7 7 7 7 7 7 7 7 7 7 7 7 7 7 7 7 7 7 7 7 7 7 7 7 7 7 7 7 7 7 7 7 7 7 8 8 8 8 8 8 8 8 8 8 8 8 8 8 8 8 8 8 8 8 8 8 8 8 8 8 8 8 8 8 8 8 8 8 8 8 8 8 8 8 8 8 8 8 8 8 8 8 8 8 9 9 9 9 9 9 9 9 9 9 9 9 9 9 9 9 9 9 9 9 9 9 9 9 9 9 9 9 9 9 9 9 9 9 9 9 9 9 9 9 9 9 9 9 9 9 9 9 9 9 ================================================ FILE: mnist_csv/label_train.txt ================================================ 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 5 5 5 5 5 5 5 5 5 5 5 5 5 5 5 5 5 5 5 5 5 5 5 5 5 5 5 5 5 5 5 5 5 5 5 5 5 5 5 5 5 5 5 5 5 5 5 5 5 5 5 5 5 5 5 5 5 5 5 5 5 5 5 5 5 5 5 5 5 5 5 5 5 5 5 5 5 5 5 5 5 5 5 5 5 5 5 5 5 5 5 5 5 5 5 5 5 5 5 5 5 5 5 5 5 5 5 5 5 5 5 5 5 5 5 5 5 5 5 5 5 5 5 5 5 5 5 5 5 5 5 5 5 5 5 5 5 5 5 5 5 5 5 5 5 5 5 5 5 5 5 5 5 5 5 5 5 5 5 5 5 5 5 5 5 5 5 5 5 5 5 5 5 5 5 5 5 5 5 5 5 5 5 5 5 5 5 5 5 5 5 5 5 5 5 5 5 5 5 5 5 5 5 5 5 5 5 5 5 5 5 5 5 5 5 5 5 5 5 5 5 5 5 5 5 5 5 5 5 5 5 5 5 5 5 5 5 5 5 5 5 5 5 5 5 5 5 5 5 5 5 5 5 5 5 5 5 5 5 5 5 5 5 5 5 5 5 5 5 5 5 5 5 5 5 5 5 5 5 5 5 5 5 5 5 5 5 5 5 5 5 5 5 5 5 5 5 5 5 5 5 5 5 5 5 5 5 5 5 5 5 5 5 5 5 5 5 5 5 5 5 5 5 5 5 5 5 5 5 5 5 5 5 5 5 5 5 5 5 5 5 5 5 5 5 5 5 5 5 5 5 5 5 5 5 5 5 5 5 5 5 5 5 5 5 5 5 5 5 5 5 5 5 5 5 5 5 5 5 5 5 5 5 5 5 5 5 5 5 5 5 5 5 5 5 5 5 5 5 5 5 5 5 5 5 5 5 5 5 5 5 5 5 5 5 5 5 5 5 5 5 5 5 5 5 5 5 5 5 5 5 5 5 5 5 5 5 5 5 5 5 5 5 5 5 5 5 5 5 5 5 5 5 5 5 5 5 5 5 5 5 5 5 5 5 5 5 5 5 5 5 5 5 5 5 5 5 5 5 5 5 5 5 5 5 5 5 5 5 5 5 5 5 5 5 5 5 5 5 5 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 7 7 7 7 7 7 7 7 7 7 7 7 7 7 7 7 7 7 7 7 7 7 7 7 7 7 7 7 7 7 7 7 7 7 7 7 7 7 7 7 7 7 7 7 7 7 7 7 7 7 7 7 7 7 7 7 7 7 7 7 7 7 7 7 7 7 7 7 7 7 7 7 7 7 7 7 7 7 7 7 7 7 7 7 7 7 7 7 7 7 7 7 7 7 7 7 7 7 7 7 7 7 7 7 7 7 7 7 7 7 7 7 7 7 7 7 7 7 7 7 7 7 7 7 7 7 7 7 7 7 7 7 7 7 7 7 7 7 7 7 7 7 7 7 7 7 7 7 7 7 7 7 7 7 7 7 7 7 7 7 7 7 7 7 7 7 7 7 7 7 7 7 7 7 7 7 7 7 7 7 7 7 7 7 7 7 7 7 7 7 7 7 7 7 7 7 7 7 7 7 7 7 7 7 7 7 7 7 7 7 7 7 7 7 7 7 7 7 7 7 7 7 7 7 7 7 7 7 7 7 7 7 7 7 7 7 7 7 7 7 7 7 7 7 7 7 7 7 7 7 7 7 7 7 7 7 7 7 7 7 7 7 7 7 7 7 7 7 7 7 7 7 7 7 7 7 7 7 7 7 7 7 7 7 7 7 7 7 7 7 7 7 7 7 7 7 7 7 7 7 7 7 7 7 7 7 7 7 7 7 7 7 7 7 7 7 7 7 7 7 7 7 7 7 7 7 7 7 7 7 7 7 7 7 7 7 7 7 7 7 7 7 7 7 7 7 7 7 7 7 7 7 7 7 7 7 7 7 7 7 7 7 7 7 7 7 7 7 7 7 7 7 7 7 7 7 7 7 7 7 7 7 7 7 7 7 7 7 7 7 7 7 7 7 7 7 7 7 7 7 7 7 7 7 7 7 7 7 7 7 7 7 7 7 7 7 7 7 7 7 7 7 7 7 7 7 7 7 7 7 7 7 7 7 7 7 7 7 7 7 7 7 7 7 7 7 7 7 7 7 7 7 7 7 7 7 7 7 7 7 7 7 7 7 7 7 7 7 7 7 7 7 7 7 7 7 7 7 7 7 7 7 7 7 7 7 7 7 7 7 7 7 7 7 7 7 7 7 7 7 8 8 8 8 8 8 8 8 8 8 8 8 8 8 8 8 8 8 8 8 8 8 8 8 8 8 8 8 8 8 8 8 8 8 8 8 8 8 8 8 8 8 8 8 8 8 8 8 8 8 8 8 8 8 8 8 8 8 8 8 8 8 8 8 8 8 8 8 8 8 8 8 8 8 8 8 8 8 8 8 8 8 8 8 8 8 8 8 8 8 8 8 8 8 8 8 8 8 8 8 8 8 8 8 8 8 8 8 8 8 8 8 8 8 8 8 8 8 8 8 8 8 8 8 8 8 8 8 8 8 8 8 8 8 8 8 8 8 8 8 8 8 8 8 8 8 8 8 8 8 8 8 8 8 8 8 8 8 8 8 8 8 8 8 8 8 8 8 8 8 8 8 8 8 8 8 8 8 8 8 8 8 8 8 8 8 8 8 8 8 8 8 8 8 8 8 8 8 8 8 8 8 8 8 8 8 8 8 8 8 8 8 8 8 8 8 8 8 8 8 8 8 8 8 8 8 8 8 8 8 8 8 8 8 8 8 8 8 8 8 8 8 8 8 8 8 8 8 8 8 8 8 8 8 8 8 8 8 8 8 8 8 8 8 8 8 8 8 8 8 8 8 8 8 8 8 8 8 8 8 8 8 8 8 8 8 8 8 8 8 8 8 8 8 8 8 8 8 8 8 8 8 8 8 8 8 8 8 8 8 8 8 8 8 8 8 8 8 8 8 8 8 8 8 8 8 8 8 8 8 8 8 8 8 8 8 8 8 8 8 8 8 8 8 8 8 8 8 8 8 8 8 8 8 8 8 8 8 8 8 8 8 8 8 8 8 8 8 8 8 8 8 8 8 8 8 8 8 8 8 8 8 8 8 8 8 8 8 8 8 8 8 8 8 8 8 8 8 8 8 8 8 8 8 8 8 8 8 8 8 8 8 8 8 8 8 8 8 8 8 8 8 8 8 8 8 8 8 8 8 8 8 8 8 8 8 8 8 8 8 8 8 8 8 8 8 8 8 8 8 8 8 8 8 8 8 8 8 8 8 8 8 8 8 8 8 8 8 8 8 8 8 8 8 8 8 8 8 8 8 8 8 8 8 8 8 8 8 8 8 8 8 8 8 8 8 8 8 8 8 9 9 9 9 9 9 9 9 9 9 9 9 9 9 9 9 9 9 9 9 9 9 9 9 9 9 9 9 9 9 9 9 9 9 9 9 9 9 9 9 9 9 9 9 9 9 9 9 9 9 9 9 9 9 9 9 9 9 9 9 9 9 9 9 9 9 9 9 9 9 9 9 9 9 9 9 9 9 9 9 9 9 9 9 9 9 9 9 9 9 9 9 9 9 9 9 9 9 9 9 9 9 9 9 9 9 9 9 9 9 9 9 9 9 9 9 9 9 9 9 9 9 9 9 9 9 9 9 9 9 9 9 9 9 9 9 9 9 9 9 9 9 9 9 9 9 9 9 9 9 9 9 9 9 9 9 9 9 9 9 9 9 9 9 9 9 9 9 9 9 9 9 9 9 9 9 9 9 9 9 9 9 9 9 9 9 9 9 9 9 9 9 9 9 9 9 9 9 9 9 9 9 9 9 9 9 9 9 9 9 9 9 9 9 9 9 9 9 9 9 9 9 9 9 9 9 9 9 9 9 9 9 9 9 9 9 9 9 9 9 9 9 9 9 9 9 9 9 9 9 9 9 9 9 9 9 9 9 9 9 9 9 9 9 9 9 9 9 9 9 9 9 9 9 9 9 9 9 9 9 9 9 9 9 9 9 9 9 9 9 9 9 9 9 9 9 9 9 9 9 9 9 9 9 9 9 9 9 9 9 9 9 9 9 9 9 9 9 9 9 9 9 9 9 9 9 9 9 9 9 9 9 9 9 9 9 9 9 9 9 9 9 9 9 9 9 9 9 9 9 9 9 9 9 9 9 9 9 9 9 9 9 9 9 9 9 9 9 9 9 9 9 9 9 9 9 9 9 9 9 9 9 9 9 9 9 9 9 9 9 9 9 9 9 9 9 9 9 9 9 9 9 9 9 9 9 9 9 9 9 9 9 9 9 9 9 9 9 9 9 9 9 9 9 9 9 9 9 9 9 9 9 9 9 9 9 9 9 9 9 9 9 9 9 9 9 9 9 9 9 9 9 9 9 9 9 9 9 9 9 9 9 9 9 9 9 9 9 9 9 9 9 9 9 9 9 9 9 9 9 9 9 9 9 9 9 9 9 9 9 9 9 9 9 9 9 9 9 9 9 ================================================ FILE: naive_bayes/WHERE ARE THE NOTEBOOKS.txt ================================================ As stated in the "where to get the code" / "where to get the notebooks" lecture, the notebooks are NOT on Github. If you missed this, please review the lecture for the actual location of the notebooks. If, after reviewing it, you still need assistance, please contact info@deeplearningcourses.com. ================================================ FILE: naive_bayes/extra_reading.txt ================================================ Complement Naive Bayes https://people.csail.mit.edu/jrennie/papers/icml03-nb.pdf Semi-Supervised Learning with Naive Bayes http://www.kamalnigam.com/papers/emcat-aaai98.pdf An empirical study of the naive Bayes classifier https://faculty.cc.gatech.edu/~isbell/reading/papers/Rish.pdf ================================================ FILE: nlp_class/all_book_titles.txt ================================================ Philosophy of Sex and Love A Reader Readings in Judaism, Christianity, and Islam Microprocessors Principles and Applications Bernhard Edouard Fernow: Story of North American Forestry Encyclopedia of Buddhism Motorola Microprocessor Family: 68000, 68008, 68010, 68020, 68030, and 68040, Programming and Interfacing with Applications American Anthem: Student Edition Modern Era 2007 How to Read Literature Like a Professor A Lively and Entertaining Guide to Reading Between the Lines Men Are from Mars, Women Are from Venus Secrets of Great Sex, Improving Communication, Lasting Intimacy and Fulfillment, Giving and Receiving Love, Secrets of Passion, Understanding Martian Religious Traditions of the World A Journey Through Africa, Mesoamerica, North America, Judaism, Christianity, Islam, Hinduism, Buddhism, China, an World's Wisdom Sacred Texts of the World's Religions Illustrated World's Religions A Guide to Our Wisdom Traditions Soul of Sex Cultivating Life As an Act of Love Thriving on Chaos Handbook for a Management Revolution Blood Relatives Wheelock's Latin Great by Choice : Uncertainty, Chaos and Luck--Why Some Thrive Despite Them All Expanding Discourse Feminism and Art History Introduction to General Relativity (Pure & Applied Physics) Experiments in Microprocessors and Interfacing: Programming and Hardware Pathophysiology Concepts and Applications for Health Care Professionals Power System Operation Machine Learning E-Commerce: Strategy, Technologies And Applications Real and Complex Analysis Schaum's Outline of Microprocessor Fundamentals Schaum's Microprocessor Fundamentals - Roger L. Tokheim - Paperback - 2nd ed Probability, Random Variables and Stochastic Processes Medical Microbiology & Immunology The Big Picture Security Analysis Sixth Edition, Foreword by Warren E. Buffett Goodman and Gilman's The Pharmacological Basis of Therapeutics, Twelfth Edition (Goodman and Gilman"S the Pharmacological Basis of Therapeutics) OCA/OCP Oracle Database 11g All-in-One Exam Guide with CD-ROM: Exams 1Z0-051, 1Z0-052, 1Z0-053 (Oracle Press) Clinical Ethics: A Practical Approach to Ethical Decisions in Clinical Medicine, Seventh Edition (LANGE Clinical Science) Understand Linguistics: A Teach Yourself Guide Harrison's Principles of Internal Medicine Basic and Clinical Pharmacology 12/E (LANGE Basic Science) Harrisons Principles of Internal Medicine Self-Assessment and Board Review 18th Edition Strategic Database Marketing 4e: The Masterplan for Starting and Managing a Profitable, Customer-Based Marketing Program Review of Medical Microbiology and Immunology, Twelfth Edition (Lange Medical Books) Tintinalli's Emergency Medicine Manual 7/E (Emergency Medicine (Tintinalli)) Pharmacotherapy a Pathophysiologic Approach 9/e Review of Medical Microbiology and Immunology Computer Organization Risk Management and Insurance Design of Analog Cmos Integrated Circuits Plant Design and Economics for Chemical Engineers Fluid Mechanics With Engineering Applications Operating Systems: A Spiral Approach Essentials of Anatomy & Physiology Database Management Systems Introduction to Probability and Statistics Principles and Applications for Engineering and the Computing Sciences Health Program Planning An Educational and Ecological Approach Geographic Information Systems Applications in Forestry and Natural Resources Management Fluid Mechanics for Chemical Engineers Adaptation Studying Film And Literature American Art History and Culture Evolution of the Earth Introduction To Women's Studies Gender In A Transnational World Fundamentals of Aerodynamics Introduction to Forensics & Criminalistics Introduction to Biological Evolution Anatomy & Physiology: An Integrative Approach Introduction To Chemical Engineering Thermodynamics Chemical Engineering Thermodynamics Human Geography Theater Experience BioInformatics: A Computing Perspective Experience Sociology Electronic Principles Good Earth Introduction to Earth Sciences Essentials of World Regional Geography Physical Geology Stern's Introductory Plant Biology Business Statistics: Communicating with Numbers Digital Electronics: Principles and Applications Medical Insurance for Pharmacy Technicians Insurance in the Medical Office: From Patient to Payment Law & Ethics for the Health Professions Foundations in Microbiology Microbiology: A Human Perspective Introduction to Programming with Java: A Problem Solving Approach Modern Computer Networks: An Open Source Approach Business Driven Information Systems Real Estate Finance & Investments (Real Estate Finance and Investments) Human Anatomy Hole's Essentials of Human Anatomy & Physiology Seeley's Principles of Anatomy and Physiology Anatomy & Physiology: The Unity of Form and Function Seeley's Essentials of Anatomy and Physiology Hole's Human Anatomy & Physiology Human Anatomy Vander's Human Physiology Power & Choice: An Introduction to Political Science A History of Western Art Reconstructing Gender Mechanics of Materials Fluid Mechanics Fundamentals and Applications Microelectronic Circuit Design Fundamentals of Electric Circuits CMOS Digital Integrated Circuits Analysis & Design Microelectronics Circuit Analysis and Design Computer Organization Power Electronics The Theater Experience Finance: Applications and Theory Essentials of Investments (The Mcgraw-Hill/Irwin Series in Finance, Insurance, and Real Estate) Essentials of Corporate Finance (The Mcgraw-Hill/Irwin Series in Finance, Insurance, and Real Estate) Understanding Human Sexuality Biology Ecology: Concepts and Applications Environmental Science US: A Narrative History Volume 1: To 1877 Differential Equations for Engineers and Scientists Elementary Statistics Film History: An Introduction Film Art: An Introduction The Art of Watching Films Studying Religion Fundamentals of Aerodynamics Vector Mechanics for Engineers: Statics and Dynamics Thermodynamics: An Engineering Approach Simulation Modeling and Analysis Statistical Techniques in Business and Economics Essentials of Business Statistics Microbiology Fundamentals: A Clinical Approach Prescott's Microbiology Microbiology: A Systems Approach Contemporary Nutrition Chemistry: The Molecular Nature of Matter and Change Introduction to Chemistry: Third Edition Chemistry Principles of General Chemistry Chemistry Organic Chemistry General Chemistry: The Essential Concepts General, Organic and Biochemistry Organic Chemistry General, Organic, & Biological Chemistry Business Communication: Developing Leaders for a Networked World Lesikar's Business Communication: Connecting in a Digital World Business and Administrative Communication Business Communication: Building Critical Skills Concepts in Biology Biology : Concepts and Investigations Human Physiology Seeley's Anatomy & Physiology Mader's Understanding Human Anatomy & Physiology Hole's Essentials of Human Anatomy & Physiology Advertising and Promotion: An Integrated Marketing Communications Perspective Sex & Gender The Unfinished Nation: A Concise History of the American People Experiencing the World's Religions Chemistry : Atoms First Chemistry: Atoms First Essentials of Economics Economics Essentials of Economics, 3rd Edition (The McGraw-Hill Series in Economics) Urban Economics Environmental Economics: An Introduction (The Mcgraw-Hill) Broadcasting Cable the Internet and Beyond: An Introduction to Modern Electronic Media Pathways to Astronomy College Physics:With an Integrated Approach to Forces and Kinematics, Fourth Edition Astronomy: Journey to the Cosmic Frontier Physics of Everyday Phenomena Explorations: Introduction to Astronomy Pathways to Astronomy Medical Insurance: An Integrated Claims Process Approach University Physics with Modern Physics Physical Science Physics of Everyday Phenomena Theater The Lively Art Anthology of Living Theater Survey of Operating Systems Survey of Operating Systems Basic Statistics for Business and Economics Applied Statistics in Business and Economics Business Statistics in Practice (McGraw-Hill/Irwin Series in Operations and Decision Sciences) Business Research Methods Microbiology: A Systems Approach Foundations in Microbiology Wardlaw's Perspectives in Nutrition Contemporary World Regional Geography Introduction to Geography Introduction to Geography Chemistry in Context International Economics Economics: The Basics (Mcgraw-Hill/Irwin Series in Economics) Labor Economics Managerial Economics & Business Strategy Computer Networks : A Top down Approach An Introduction to Object-Oriented Programming with Java Database System Concepts Java Programming: From the Ground Up Algorithms The Good Earth: Introduction to Earth Science Environmental Geology Exploring Geology Laboratory Manual for Physical Geology Marine Biology Vertebrates : Comparative Anatomy, Function, Evolution Understanding Business, 10th Edition Employment Law for Business Business Law Matching Supply with Demand: An Introduction to Operations Management Molecular Biology Human Biology Biology Essentials of Biology Concepts of Biology Biology: Concepts and Investigations Human Anatomy Electronic Media: An Introduction Media Ethics: Issues and Cases Power & Choice: An Introduction to Political Science Music An Appreciation World Music: Traditions and Transformations Sociology: A Brief Introduction, 9th Edition Foundations of Materials Science and Engineering Shigley's Mechanical Engineering Design (Mcgraw-Hill Series in Mechanical Engineering) Thermodynamics : An Engineering Approach, 7th Edition Engineering Circuit Analysis Semiconductor Physics and Devices International Marketing Consumer Behavior: Building Marketing Strategy, 12th Edition Personal Finance (Mcgraw-Hill/Irwin Series in Finance, Insurance and Real Estate) Corporate Finance: Core Principles and Applications (McGraw-Hill/Irwin Series in Finance, Insurance and Real Estate) Personal Finance Sexuality Today Transformations: Women, Gender, and Psychology Human Sexuality: Self, Society, and Culture Biology Biology Laboratory Manual Calculus : Early Transcendental Functions Applied Calculus for Business, Economics, and the Social and Life Sciences, Expanded Edition Calculus for Business, Economics, and the Social and Life Sciences, Brief Version Ecology : Global Insights and Investigations Ecology: Concepts and Applications Principles of Environmental Science: Inquiry and Applications Film Art: An Introduction Scriptures of the World's Religions Ethical Issues in Modern Medicine: Contemporary Readings in Bioethics Problems from Philosophy Introduction to Thermodynamics and Heat Transfer + Ees Software The Good Earth: Introduction to Earth Science The Unfinished Nation: A Concise History of the American People, Volume 1 Foundations in Microbiology: Basic Principles Explorations: Introduction to Astronomy Organic Chemistry Thermodynamics: An Engineering Approach with Student Resources DVD American History: A Survey Volume 2 American History: A Survey Volume 1 Vector Mechanics for Engineers: Statics Vector Mechanics for Engineers: Dynamics The Unfinished Nation: A Concise History of the American People Volume 1 Fundamentals of Thermal-Fluid Sciences with Student Resource DVD Fluid Mechanics with Student DVD Music: An Appreciation Brief Edition with 5-CD Loose-leaf for Fundamentals of Financial Accounting Foundations of Financial Management with Time Value of Money card (The Mcgraw-Hill/Irwin Series in Finance, Insurance, and Real Estate) Elementary Statistics with CD : A Step by Step Approach with Formula Card and Data Cd Package: Principles of General, Organic & Biochemistry with Connect Plus Access Card Microbiology: A Systems Approach with Connect Plus Access Card Ecology: A Global Insights and Investigations with Connect Plus Access Card Loose-Leaf Edition Understanding Business Fundamentals of Corporate Finance Alternate Edition (The Mcgraw-Hill/Irwin Series in Finance, Insurance, and Real Estate) Biology Loose Leaf Version for Anatomy & Physiology: An Integrative Approach Loose Leaf Version for Human Anatomy and Physiology Loose Leaf Biology Anatomy & Physiology: The Unity of Form and Function with Connect Plus/LearnSmart 2 Semester Access Card (Includes APR & PhILS Online Access) Loose-Leaf for Principles of Corporate Finance Experience Music, with 3 Audio CDs Loose Leaf Version for Exploring Geology Loose Leaf for General, Organic, and Biochemistry Loose Leaf Version of Human Physiology Elementary Statistics, Brief with Data CD and Formula Card Electronics Principles and Applications with Student Data CD-Rom Biology with Connect Plus Access Card Exploring Geology with CONNECT Plus 1-semester Access Card Music: An Appreciation (Brief) Connect Upgrade Edition International Business: The Challenge of Global Competition, 13th Edition Intermediate Accounting with Annual Report Microbiology Fundamentals: A Clinical Approach with Connect Plus with LearnSmart 1 Semester Access Card Loose-Leaf for Organic Chemistry Benson's Microbiological Applications Complete Version (Brown, Microbioligical Applications) Film Art: an Introduction with Connect Access Card Practical Business Math Procedures with Handbook, Student DVD, and WSJ insert Loose Leaf Fundamentals of Cost Accounting with Connect Plus Foundations in Microbiology: Basic Principles Seeley's Anatomy & Physiology with Connect Plus Access Card Loose Leaf Version for Environmental Geology Loose Leaf Version for Environmental Geology Exploring Social Psychology Music: An Appreciation, Brief Edition Marketing Essentials of Marketing: A Marketing Strategy Planning Approach Marketing Management Preface to Marketing Management Marketing Personal Finance (McGraw-Hill/Irwin Series in Finance, Insurance, and Real Est) Finance: Applications and Theory Case Studies in Finance: Managing for Corporate Value Creation (Mcgraw-Hill/Irwin Series in Finance, Insurance and Real Estate) Health Psychology International Accounting Ethical Obligations and Decision Making in Accounting: Text and Cases Advanced Accounting Fundamentals of Advanced Accounting Combo: Wardlaw's Perspectives in Nutrition with Connect Plus 1 Semester Access Card Anatomy & Physiology: An Integrative Approach with Connect Plus/LearnSmart 2 Semester Access Card/APR Online Access/PhILS Online Access Statistical Techniques in Business and Economics Essentials of Business Statistics Essentials of Business Statistics Nutritional Assessment Human Geography: Landscapes of Human Activities International Economics (The Mcgraw-Hill Series Economics) Public Finance Economics, 9th Edition (The McGraw-Hill Series in Economics) Managerial Economics: Foundations of Business Analysis and Strategy (The Mcgraw-Hill Economics Series) Essentials of Economics Economics: Principles, Problems, & Policies (McGraw-Hill Series in Economics) Contemporary Labor Economics (The Mcgraw-Hill Series Economics) Exercise Physiology: Theory and Application to Fitness and Performance LL Concepts of Physical Fitness: Active Lifestyles for Wellness Introduction to Physical Education, Exercise Science, and Sport Studies Vertebrates: Comparative Anatomy, Function, Evolution Business: A Changing World Law for Business Essentials of Biology Power and Choice: An Introduction to Political Science Music: An Appreciation Music: An Appreciation Music: An Appreciation Accounting : What the Numbers Mean Financial Statement Analysis and Security Valuation Introduction to Managerial Accounting Managerial Accounting for Managers Fundamentals of Cost Accounting Financial Accounting Auditing and Accounting Cases: Investigating Issues of Fraud and Professional Ethics Advanced Financial Accounting Financial and Managerial Accounting Criminology Sociology, 13th Edition Sociology: A Brief Introduction Sociology: The Core Mapping the Social Landscape: Readings in Sociology Sociology in Modules The Practical Skeptic: Core Concepts in Sociology Practical Skeptic: Readings in Sociology The Social Construction of Difference and Inequality: Race, Class, Gender, and Sexuality Sociology Matters Sociological Theory Applied Circuit Analysis Design With Operational Amplifiers And Analog Integrated Circuits Analog Circuit Design: Discrete & Integrated Marketing Management: A Strategic Decision-Making Approach Essentials of Marketing Research Marketing Management Marketing M: Advertising Marketing: The Core Marketing Strategy: A Decision-Focused Approach BASIC MARKETING: A Marketing Strategy Planning Approach Marketing Small Business Management : An Entrepreneur's Guidebook International Business Global Marketing: Contemporary Theory, Practice, and Cases Entrepreneurial Small Business Business Ethics: Decision-Making for Personal Integrity & Social Responsibility Business and Society: Stakeholders, Ethics, Public Policy, 14th Edition Fundamentals of Corporate Finance Standard Edition (Mcgraw-Hill/Irwin Series in Finance, Insurance, and Real Estate) Fundamentals of Corporate Finance (McGraw-Hill/Irwin Series in Finance, Insurance and Real Esta) Financial Markets and Institutions (The McGraw-Hill/Irwin Series in Finance, Insurance and Real Estate) Analysis for Financial Management, 10th Edition Essentials of Corporate Finance Principles of Corporate Finance (The Mcgraw-Hill/Irwin Series in Finance, Insurance, and Real Estate) (The Mcgraw-Hill/Irwin Series in Finance, Insureance, and Real Estate) Corporate Finance, 10th Edition Focus on Personal Finance: An Active Approach to Help You Develop Successful Financial Skills (McGraw-Hill/Irwin Series in Finance, Insurance and Real Esta) Core Concepts in Cultural Anthropology Magic Witchcraft and Religion: A Reader in the Anthropology of Religion The Human Species: An Introduction to Biological Anthropology Cultural Anthropology: Appreciating Cultural Diversity Anthropology: Appreciating Human Diversity Mirror for Humanity: A Concise Introduction to Cultural Anthropology Introducing Anthropology: an Integrated Approach Psychology : An Introduction Psychology: Perspectives and Connections, 2nd Edition Understanding Psychology Essentials of Understanding Psychology Social Psychology Psychological Testing and Assessment: An Introduction to Tests and Measurement Human Sexuality: Diversity in Contemporary America, 8th Edition Experience Psychology Personality Psychology: Domains of Knowledge About Human Nature Abnormal Psychology UNDERSTANDING HUMAN SEXUALITY The Science of Psychology: An Appreciative View Looseleaf for Sexuality Today, 11e Communicating at Work: Strategies for Success in Business and the Professions The Right Thing To Do: Basic Readings in Moral Philosophy The Elements of Moral Philosophy Experiencing the World's Religions Loose Leaf: Tradition, Challenge, and Change Introduction to Business Ethics Philosophy: The Power of Ideas Does the Center Hold? An Introduction to Western Philosophy The Moral of the Story: An Introduction to Ethics Introduction to Physical Education, Fitness, and Sport Environmental Geology Laboratory Manual for Physical Geology Biology: The Essentials Managerial Accounting Experiencing Race, Class, and Gender in the United States The Meaning of Difference: American Constructions of Race, Sex and Gender, Social Class, Sexual Orientation, and Disability Services Marketing (6th Edition) Global Business Today Business, Government and Society: A Managerial Perspective Culture Sketches: Case Studies in Anthropology Scriptures of the World's Religions Elementary Statistics : A Step by Step Approach with Formula Card Forensic Accounting World History Texas Edition Business Management Real-world Applications And Connections Bscs Biology A Molecular Approach Aerodynamics for Engineering Students, Sixth Edition Problems in Real Analysis A Workbook With Solutions Principles of Real Analysis Probability and Measure Theory Computer Organization and Design, Third Edition: Companion CD (The Morgan Kaufmann Series in Computer Architecture and Design) Introduction to Probability and Statistics for Engineers and Scientists, Fourth Edition Computer Organization and Design The Hardware/Software Interface Digital Evidence and Computer Crime, Third Edition: Forensic Science, Computers, and the Internet Computer Organization and Design Advanced Topics in Forensic DNA Typing, Third Edition Computer Organization and Design, Revised Fourth Edition, Fourth Edition: The Hardware/Software Interface (The Morgan Kaufmann Series in Computer Architecture and Design) Data Mining: Practical Machine Learning Tools and Techniques, Third Edition (The Morgan Kaufmann Series in Data Management Systems) Fundamentals of Forensic Science, Second Edition Introduction to Probability Models, Tenth Edition Molecular Biology : Understanding the Genetic Revolution Differential Equations, Dynamical Systems, and an Introduction to Chaos, Third Edition Introduction to Security, Ninth Edition Computer Networks : A Systems Approach Molecular Biology Techniques : A Classroom Laboratory Manual Introduction to Forestry and Natural Resources Computer and Machine Vision : Theory, Algorithms, Practicalities Probability and Random Processes, Second Edition: With Applications to Signal Processing and Communications A Course in Real Analysis, Second Edition Computer Organization and Design, Fifth Edition: The Hardware/Software Interface (The Morgan Kaufmann Series in Computer Architecture and Design) Introduction to Probability Models, Eleventh Edition Introduction to Homeland Security : Principles of All-Hazards Response Semi-Riemannian Geometry With Applications to Relativity Electronic Commerce 2004 A Managerial Perspective 68000 Microprocessor Hardware and Software Principles and Applications Soul of Cinema An Appreciation of Film Music Computer Organization and Architecture Designing for Performance 8088 and 8086 Microprocessors : Programming, Interfacing, Software, Hardware, and Applications - with CD Introduction to Real Analysis Differential Equations And Linear Algebra Musical Theater An Appreciation Microprocessors and Microcomputers Hardware and Software Literatures of Latin America From Antiquity to the Present Applied Partial Differential Equations With Fourier Series and Boundary Value Problems Wildlife Ecology and Management Forest Ecology A Foundation for Sustainable Forest Management and Environmental Ethics in Forestry Digital+microprocessor Fundamentals Data Structures With C++ Using Stl Digital Integrated Circuits A Design Perspective 8088 and 8086 Microprocessors Programming, Interfacing, Software, Hardware, and Applications Speech and Language Processing An Introduction to Natural Language Processing, Computational Linguistics, and Speech Recognition Structured Computer Organization Power Electronics: Circuits, Devices and Applications (3rd Edition) C Programming Language ANSI C Version Introduction to Quantum Mechanics (2nd Edition) Digital Electronics Laboratory Experiments Using the Xilinx Xc95108 Cpld With Xilinx Foundation Design and Simulation Software Design and Simulation Software Thermodynamics and Heat Power Forensic Science: From the Crime Scene to the Crime Lab Introduction to Risk Management and Insurance (10th Edition) (Prentice Hall Series in Finance) Concepts of Programming Languages (10th Edition) Parallel Programming: Techniques and Applications Using Networked Workstations and Parallel Computers (2nd Edition) ADTs, Data Structures, and Problem Solving with C++ Operating Systems Design And Implementation Differential Equations Real Analysis Essentials Of Business Law Legal, E-Commerce, Ethical, and Global Environments Fundamentals Of Probability with Stochastic Processes Probability And Random Processes for Ee's Rf Circuit Design Theory & Applications Partial Differential Equations with Fourier Series and Boundary Value Problems Structured Computer Organization Principles of Computer Organization and Assembly Language Physics for Scientists And Engineers With Modern Physics Introduction to Computing & Programming in Java A Multimedia Approach Solid State Electronic Devices Sacred Paths Understanding The Religions Of The World Motorola Mc68000 Microprocessor Family Assembly Language, Interface Design, and System Design Linguistic Perspectives on Language and Education Principles of Data Networks And Computer Communications Listening to Music Cognition Psychology Mind And Brain History of Far Eastern Art NEW TESTAMENT GREEK FOR BEGINNERS Differential Equations & Linear Algebra Database Systems Political Science: An Introduction (9th Edition) Calculus: Graphical, Numerical, Algebraic, 3rd Edition Marketing Management Cost Accounting Computer Networks (5th Edition) Mechanical Vibrations (5th Edition) Introduction to Programming Using Visual Basic 2010 (8th Edition) (Pearson Custom Computer Science) Data Structures and Other Objects Using C++ Database Processing Electronic Commerce 2012: Managerial and Social Networks Perspectives (7th Edition) International Economics : Theory and Policy Strategic Management and Business Policy: Achieving Sustainability Crisis Intervention: The Criminal Justice Response to Chaos, Mayhem, and Disorder Java: An Introduction to Problem Solving and Programming (6th Edition) (MyprogrammingLab) Balanced Introduction to Computer Science, A (3rd Edition) Reinforced Concrete: Mechanics and Design (6th Edition) Marketing : Real People, Real Choices Marketing : Defined, Explained, Applied Techniques In Microbiology A Student Handbook Aerodynamics for Engineers Physics for Scientists & Engineers With Modern Physics Physics for Scientists And Engineers Chaps 1-38 Operating Systems: Internals and Design Principles Introduction to the Design and Analysis of Algorithms (3rd Edition) Forensic Psychology Security in Computing, 4th Edition International Monetary & Financial Economics (Pearson Series in Economics) Framework for Marketing Management Electronic Devices (Conventional Current Version) (9th Edition) Accounting Information Systems (12th Edition) Cost Accounting, Student Value Edition (14th Edition) Advanced Accounting (11th Edition) Computer Science : An Overview Java How to Program (late Objects) Java How to Program Database Systems: Introduction to Databases and Data Warehouses Data Structures and Other Objects Using Java Data Structures and Algorithm Analysis in Java Neuro-Fuzzy and Soft Computing A Computational Approach to Learning and Machine Intelligence Educational Psychology (12th Edition) The Convergence of Race, Ethnicity, and Gender: Multiple Identities in Counseling (4th Edition) (Merrill Counseling) Electronic Health Records: Understanding and Using Computerized Medical Records Electronic Devices and Circuit Theory (11th Edition) Modern Database Management (11th Edition) Hinduism Contemporary Business and Online Commerce Law : Legal, Internet, Ethical, and Global Environments Programming the World Wide Web (7th Edition) Computer Forensics and Cyber Crime: An Introduction (3rd Edition) Fundamentals of Chemical Engineering Thermodynamics (Prentice Hall International Series in the Physical and Chemical Engineering Sciences) Global Marketing (7th Edition) E-Commerce 2013 The Economics of Money, Banking and Financial Markets: The Business School Edition (3rd Edition) (Pearson Series in Economics) Database Concepts (6th Edition) Business Data Networks and Security (9th Edition) Multinational Business Finance (13th Edition) (Pearson Series in Finance) Bond Markets, Analysis and Strategies (8th Edition) Marketing: An Introduction (11th Edition) Statistics for Business and Economics (8th Edition) Strategic Marketing Problems (13th Edition) Introduction to Management Science (11th Edition) [ The Career Fitness Program: Exercising Your Options [ THE CAREER FITNESS PROGRAM: EXERCISING YOUR OPTIONS ] By Sukiennik, Diane ( Author )Dec-27-2011 Paperback Economics of Money, Banking, and Financial Markets, 10th Edition The Economics of Health and Health Care (7th Edition) Computer Security Marketing for Hospitality and Tourism (6th Edition) Analyzing Computer Security: A Threat / Vulnerability / Countermeasure Approach Starting Out with Programming Logic and Design (3rd Edition) Pharmacology: Connections to Nursing Practice (2nd Edition) High Speed Signaling : Jitter Modeling, Analysis, and Budgeting Absolute Java (5th Edition) Aerodynamics for Engineers (6th Edition) Data Structures & Algorithm Analysis in C++ Ethics for the Information Age (5th Edition) Starting Out with Java: From Control Structures through Objects (5th Edition) Computer Networking: A Top-Down Approach (6th Edition) The Legal Environment of Business and Online Commerce (7th Edition) Business Law (8th Edition) Hospital Operations: Principles of High Efficiency Health Care (FT Press Operations Management) Engineering Mechanics: Dynamics (13th Edition) Engineering Mechanics: Statics (13th Edition) Structured Computer Organization (6th Edition) Introduction to Computing and Programming in Python (3rd Edition) Computer Organization and Architecture (9th Edition) (William Stallings Books on Computer and Data Communications) Introduction to Java Programming, Comprehensive Version (9th Edition) Economics Today: The Micro View (17th Edition) International Economics (6th Edition) (Pearson Economics) Economics : Principles, Applications, and Tools E-Marketing (7th Edition) Criminology (2nd Edition) (The Justice Series) Business Communication Today (12th Edition) Business Communication Essentials Criminological Theory (6th Edition) Starting Out with Java: From Control Structures through Objects plus MyProgrammingLab with Pearson eText -- Access Card Package (5th Edition) C: How to Program, 7th Edition International Business: The New Realities (3rd Edition) Corporate Finance Principles of Risk Management and Insurance (12th Edition) (Pearson Series in Finance) Fundamentals of Futures and Options Markets (8th Edition) Foundations of Finance (8th Edition) (Pearson Series in Finance) Engineering Mechanics: Statics plus MasteringEngineering with Pearson eText -- Access Card Package (13th Edition) Economics Managerial Economics (7th Edition) Business Statistics (9th Edition) Principles of Economics (11th Edition) Business Data Communications- Infrastructure, Networking and Security (7th Edition) E-Commerce 2014 (10th Edition) Pharmacology for Nurses : A Pathophysiologic Approach Database Processing: Fundamentals, Design, and Implementation (13th Edition) Statistics for Managers Using Microsoft Excel International Business: The Challenges of Globalization (7th Edition) Marketing Research Principles of Marketing (15th Edition) Corporate Finance, the Core Comprehensive Health Insurance: Billing, Coding & Reimbursement, and Student Workbook Java Software Structures : Designing and Using Data Structures Mechanics of Materials (9th Edition) Fundamentals of Neural Networks Architectures, Algorithms, and Applications Cryptography and Network Security: Principles and Practice (6th Edition) Network Security Essentials Applications and Standards (5th Edition) Java Foundations Criminology Today : An Integrative Introduction E-Commerce Essentials Computer Networks and Internets (6th Edition) Prentice Hall Earth Science Computer Science : An Overview Essentials of Sociology (11th Edition) Operating Systems: Internals and Design Principles (8th Edition) History of the Dance in Art and Education Hinduism A Cultural Perspective Wildlife, Forests and Forestry: Principles of Managing Forests for Biological Diversity (2nd Edition) The Intel Microprocessors (8th Edition) Technical Communication in the Twenty-First Century Criminalistics: An Introduction to Forensic Science (10th Edition) Electronics Fundamentals: Circuits, Devices & Applications Principles of Electric Circuits: Conventional Current Version Core Concepts in Pharmacology (3rd Edition) (MyNursingKit Series) Contemporary Clinical Immunology and Serology (Pearson Clinical Laboratory Science) Criminology : A Sociological Understanding Homeland Security Health & Physical Assessment in Nursing (2nd Edition) Understanding Pharmacology for Health Professions How Does Earth Work: Physical Geology and the Process of Science Differential Equations Computing and Modeling Elementary Differential Equations With Boundary Value Problems First Course in Database Systems E-Commerce: Business,Technology, Society (4th Edition) Modern Operating Systems Industrial Ecology and Sustainable Engineering Contemporary Business and Online Commerce Law Earth Science Christian Theological Tradition A First Course in Probability Managing Business Process Flows The Motorola Mc68000 Microprocessor Family: Assembly Language, Interface Design, and System Design Differential Equations and Linear Algebra Art: A Brief History Problem Solving with Data Structures Using Java: A Multimedia Approach Computer Networks and Internets History of Modern Art Introductory Chemical Engineering Thermodynamics (2nd Edition) (Prentice Hall International Series in the Physical and Chemical Engineering Sciences) HCS 12 Microprocessors Computer Organization and Architecture: Designing for Performance Marketing Management (4th Edition) Computer Networking: A Top-down Approach Marketing Research: An Applied Orientation Contemporary Direct and Interactive Marketing Fundamentals of Database Systems (6th Edition) Electronic Commerce 2010 Data Structures and Abstractions with Java (3rd Edition) Services Marketing (7th Edition) Introduction to Electronic Commerce (3rd Edition) (Spectrum Books) Electric Circuits (9th Edition) (MasteringEngineering Series) Principles of Risk Management and Insurance (11th Edition) (The Prentice Hall Series in Finance) History of Art in Africa Physics for Scientists and Engineers with Modern Physics Network Flows Theory, Algorithms, and Applications Natural Language Processing for Prolog Programmers Educational Psychology: Theory and Practice (10th Edition) (MyEducationLab Series) Mastering Methods: Differentiated Instruction for Culturally and Linguistically Diverse (CLD) Students (2nd Edition) (MyEducationKit Series) Criminology Today: An Integrative Introduction (6th Edition) (MyCrimeKit Series) Core Java Volume I--Fundamentals (9th Edition) (Sun Core Series) Introductory Circuit Analysis (12th Edition) Linguistics for Non-Linguists: A Primer with Exercises Not for ESOL Teachers: What Every Classroom Teacher Needs to Know About the Linguistically, Culturally, and Ethnically Diverse Student Quantum Mechanics For Engineering, Materials Science, and Applied Physics E-Commerce 2012 (8th Edition) International Economics: Theory and Policy, Student Value Edition (9th Edition) Introduction to Islam (4th Edition) (Mysearchlab Series for Religion) Life and Health Insurance, 13th Edition Introduction to Quantum Mechanics in Chemistry Molecular Thermodynamics of Fluid-Phase Equilibria Origins of Virtue Human Instincts and the Evolution of Cooperation Rise and Fall of Athens Nine Greek Lives Why Evolution Is True Dramaturgy in American Theater, a Source Book A Source Book Basic Judaism Regional Farm Bill Field Hearing Redmond, Oregon Hearing before the Committee on Agriculture, Nutrition, and Forestry, United States Senate, One Hundred Ninth Congress, Second Session, August 15, 2006 Analytical Mechanics for Relativity and Quantum Mechanics (Oxford Graduate Texts) Hinduism A Very Short Introduction Judaism A Very Short Introduction Foundations of Buddhism History & Practice of Ancient Astronomy Oxford History of Islam After the New Testament A Reader in Early Christianity Classical Greek Reader Three Challenges to Ethics Environmentalism, Feminism, and Multiculturalism Introduction to Game Theory Islamic Threat Myth or Reality? Anne Orthwood's Bastard Sex and Law in Early Virginia Athenaze An Introduction to Ancient Greek Theorizing Feminisms A Reader New Testament and Other Early Christian Writings A Reader Eight Theories of Religion Islam The Straight Path Playing for Real A Text on Game Theory The Oxford Encyclopedia of the Islamic World: Six-Volume Set Buddhism 2e Does Feminism Discriminate against Men?: A Debate An Introduction to Game Theory, International Edition Microelectronic Circuits (The Oxford Series in Electrical and Computer Engineering) Film Theory and Criticism Magic, Witchcraft and Ghosts in the Greek and Roman Worlds: A Sourcebook Vold's Theoretical Criminology Democracy in Latin America : Political Change in Comparative Perspective Anthropology: What Does It Mean to Be Human? Waves and Oscillations: A Prelude to Quantum Mechanics Islam: The Straight Path The Great Conversation: A Historical Introduction to Philosophy Oxford Handbook of Judaism and Economics The English Language: A Linguistic History A Concise Introduction to World Religions, 2nd Edition Chinese and South-East Asian White Ware Found in the Philippines Role of Government in East Asian Economic Development Comparative Institutional Analysis Chaos and Nonlinear Dynamics An Introduction for Scientists and Engineers Chaos and Time-Series Analysis The Proboscidea: Evolution and Palaeoecology of Elephants and Their Relatives (Oxford Science Publications) Probability and Random Processes Introducing Einstein's Relativity A Dictionary of Hinduism Latin Dictionary Founded on Andrew's Edition of Freud's Latin Dictionary Greek-English Lexicon Deuteronomy and the Judaean Diaspora Feminism and Film Intermediate Greek-English Lexicon Biochemistry and Molecular Biology Building Bioinformatics Solutions: With Perl, R and MySQL General Relativity and the Einstein Equations Feminism Issues & Arguments Canon and Criterion in Christian Theology From the Fathers to Feminism Evolution an introduction Women in Early Indian Buddhism : Comparative Textual Studies Cultural Anthropology : A Perspective on the Human Condition Molecular Quantum Mechanics Molecular Biology: Principles of Genome Function Relativity, Gravitation and Cosmology: A Basic Introduction (Oxford Master Series in Physics) Molecular Biology of Cancer: Mechanisms, Targets, and Therapeutics Einstein's Physics: Atoms, Quanta, and Relativity - Derived, Explained, and Appraised An Introduction to Medicinal Chemistry Biochemistry: The Molecular Basis of Life Ecoimmunology Invitation to World Religions Gender Through the Prism of Difference The New Testament: A Historical Introduction to the Early Christian Writings World Religions Today Introducing Philosophy : A Text with Integrated Readings Crime and Criminology Ethics: History, Theory, and Contemporary Issues Exploring Philosophy: An Introductory Anthology Introduction to Philosophy: Classical and Contemporary Readings Criminological Theories: Introduction, Evaluation, and Application Christ among the Messiahs : Christ Language in Paul and Messiah Language in Ancient Judaism Talons of the Eagle: Latin America, the United States, and the World Marine Biology: Function, Biodiversity, Ecology American Popular Music Physical Geography: The Global Environment Buddhism: Introducing the Buddhist Experience Oxford Latin Course, College Edition: Grammar, Exercises, Context Oxford Latin Course, College Edition: Readings and Vocabulary Colonial Latin America The Gendered Society The Gendered Society Reader Josephus and the Theologies of Ancient Judaism Modern Latin America The Moral Life: An Introductory Reader in Ethics and Literature Readings in Greek History: Sources and Interpretations Philosophy: The Quest For Truth Advanced Quantum Mechanics Mechanics and Thermodynamics of Propulsion Genetic Algorithms in Search, Optimization and Machine Learning Exploring Black Holes Introduction to General Relativity Real Analysis: A First Course, 2nd Edition Modern Quantum Mechanics Nonlinear Dynamics+chaos Concrete Mathematics A Foundation for Computer Science Computer Systems Organization & Architecture Design And Implementation Of The Freebsd Operating System COURSE IN PROBABILITY Art of Computer Programming, Volume 1: Fundamental Algorithms (3rd Edition) Literature: An Introduction to Reading and Writing (10th Edition) Agendas, Alternatives, and Public Policies, Update Edition, with an Epilogue on Health Care (2nd Edition) (Longman Classics in Political Science) Greek Art and Archaeology (5th Edition) Gender: Psychological Perspectives (6th Edition) Human Sexuality Today (7th Edition) (MyDevelopmentLab Series) Art : A Brief History Business Ethics: Concepts and Cases Jews, Christians, Muslims : A Comparative Introduction to Monotheistic Religions Media Ethics: Cases and Moral Reasoning (9th Edition) How English Works : A Linguistic Introduction Introduction to the Bible (8th Edition) Concise Introduction to Linguistics Latin America and Its People, Combined Volume (3rd Edition) A Short Guide to Writing about Biology (8th Edition) Visions of America: A History of the United States, Volume One (2nd Edition) The Sociology Project: Introducing the Sociological Imagination Sociology: A Down-to-Earth Approach (11th Edition) Sociology (14th Edition) Biological Anthropology Backpack Literature: An Introduction to Fiction, Poetry, Drama and Writing (4th Edition) Religions of the World A History of the World's Religions Psychology Social Psychology: United States Edition Core Questions in Philosophy: A Text with Readings (6th Edition) (MyThinkingLab Series) Forensic Psychology Human Sexuality Human Sexuality (Paper) (3rd Edition) Living Religions: A Brief Introduction Literature: An Introduction to Fiction, Poetry, Drama, and Writing, 12th Edition Human Evolution and Culture: Highlights of Anthropology (7th Edition) Conformity and Conflict: Readings in Cultural Anthropology (14th Edition) (MyAnthroLab Series) Short Guide to Writing About Film Art: A Brief History Plus NEW MyArtsLab -- Access Card Package (5th Edition) Physiology of Behavior (11th Edition) Janson's Basic History of Western Art (9th Edition) (History of Art) Statistics for Psychology History of Modern Art (Paperback) (7th Edition) History of Modern Art Volume I Human Biology for Social Workers Development, Ecology, Genetics, and Health Anthropology of Latin America And the Caribbean Understanding Music (7th Edition) Head's Broadcasting in America: A Survey of Electronic Media Writing in Political Science: A Practical Guide A History of Film Religion Matters: What Sociology Teaches Us About Religion In Our World Introduction to Literature, An (16th Edition) The Visual Arts: A History, Revised Edition Janson's History of Art: The Western Tradition (8th Edition) Janson's History of Art: The Western Tradition, Volume I (8th Edition) (MyArtsLab Series) Janson's History of Art: The Western Tradition, Volume II (8th Edition) Flashback: A Brief Film History The Greeks: History, Culture, and Society History of Italian Renaissance Art (Paper cover) (7th Edition) (Mysearchlab Series for Art) Photography: A Cultural History (3rd Edition) (Mysearchlab Series for Art Mysearchlab Series for Art) Latin America : An Interpretive History The World's History (4th Edition) Consider the Source : Documents in Latin American History - An Interpretive History Sociology of Religion: A Reader Anthropology of Religion, Magic, and Witchcraft, The (3rd Edition) Ultimate Questions: Thinking about Philosophy Seeing Ourselves: Classic, Contemporary, and Cross-Cultural Readings in Sociology Anthropology (13th Edition) (MyAnthroLab Series) Art History, Volume 1 (4th Edition) (MyArtsLab Series) Art History, Volume 2 (4th Edition) (MyArtsLab Series) Art History, Combined (4th Edition) (MyArtsLab Series) Women, Politics, and American Society (5th Edition) (Longman Classics in Political Science) Political Science: An Introduction Look! Art History Fundamentals Film: A Critical Introduction (3rd Edition) (MyCommunicationKit Series) THINK Sociology THINK Human Sexuality Other World, The (9th Edition) (Mysearchlab Series for Political Science) Cultural Anthropology in a Globalizing World (3rd Edition) Introduction to Forensic Anthropology (4th Edition) Empirical Political Analysis (8th Edition) (Mysearchlab Series for Political Science) Challenge of Third World Development, The (6th Edition) (Mysearchlab Series for Political Science) Janson's History of Art: The Western Tradition with MyArtsLab and Pearson eText (8th Edition) Social Psychology Statistics for the Behavioral and Social Sciences Sociology of Education, The (7th Edition) Conscious Reader GenderSpeak: Personal Effectiveness in Gender Communication Political Science Student Writer's Manual Thinking about Women : Sociological Perspectives on Sex and Gender Understanding Psychology (10th Edition) Understanding the Political World: A Comparative Introduction to Political Science Plus MyPoliSciLab -- Access Card Package with eText -- Access Card Package (11th Edition) Psychology and Life (20th Edition) Art History (5th Edition) Art History Volume 1 (5th Edition) Art History Portable Book 1 (5th Edition) Art History Portables Book 2 (5th Edition) Art History Portables Book 3 (5th Edition) Art History Portables Book 6 (5th Edition) Art History Volume 2 (5th Edition) Religions of the World Plus NEW MyReligionLab with eText -- Access Card Package (12th Edition) Art Beyond the West (3rd Edition) Essentials of Sociology: A Down-to-Earth Approach Plus NEW MySocLab with eText -- Access Card Package (10th Edition) Essentials of Sociology: A Down-to-Earth Approach (10th Edition) Thinking About Women: Sociological Perspectives on Sex and Gender (10th Edition) Literature and the Writing Process (10th Edition) Exploring Biological Anthropology: The Essentials (3rd Edition) Human Sexuality in a World of Diversity (case) (9th Edition) The World's Religions (4th Edition) Forty Studies that Changed Psychology (7th Edition) Human Evolution and Culture: Highlights of Anthropology Plus NEW MyAnthroLab with Pearson eText -- Access Card Package (7th Edition) Music for Sight Singing (9th Edition) Art History Volume 1, Books a la Carte Edition (5th Edition) Art History volume 1, Books a la Carte Plus NEW MyArtsLab with eText -- Access Card Package (5th Edition) Abnormal Psychology (16th Edition) Art History, Volume 2 Plus NEW MyArtsLab with eText -- Access Card Package (5th Edition) Art History Plus NEW MyArtsLab with eText -- Access Card Package (5th Edition) Human Sexuality in a World of Diversity (paperback) (9th Edition) Living Religions (9th Edition) Living Religions Plus NEW MyReligionLab with Pearson eText --Access Card Package (9th Edition) Mastering the World of Psychology (5th Edition) Political Science: An Introduction Political Science: An Introduction Plus NEW MyPolisciLab with Pearson eText-- Access Card Package (13th Edition) A Short Course in Photography: Film and Darkroom (9th Edition) Sociology Human Sexuality Today (8th Edition) Sociology: A Down-to-Earth Approach Greek-English Lexicon of the New Testament and Other Early Christian Literature Greek Tragedies Against Prediction Profiling, Policing, And Punishing in an Actuarial Age Travesti Sex, Gender, and Culture Among Brazilian Transgendered Prostitutes Cults, Territory, and the Origins of the Greek City-State Disability in Judaism, Christianity, and Islam : Sacred Texts, Historical Traditions, and Social Analysis Politics of Passion Women's Sexual Culture in the Afro-surinamese Diaspora Sources of East Asian Tradition Sources of East Asian Tradition: The Modern Period, Vol. 2 Sources of East Asian Tradition Parting Ways: Jewishness and the Critique of Zionism (New Directions in Critical Theory) Islam in America, Second Edition Voice and Vision, Second Edition: A Creative Approach to Narrative Film and DV Production Carlos Aldama's Life in Batá : Cuba, Diaspora, and the Drum Cognitive Models of Speech Processing: Psycholinguistic and Computational Perspectives (Acl-Mit Press Series in Natural Language Processing) Introduction to Machine Learning, Second Edition (Adaptive Computation and Machine Learning) The Processes of Life: An Introduction to Molecular Biology Probabilistic Graphical Models: Principles and Techniques (Adaptive Computation and Machine Learning) Circuit Design and Simulation with VHDL, Second Edition Machine Learning: A Probabilistic Perspective (Adaptive Computation and Machine Learning series) Foundations of Machine Learning (Adaptive Computation and Machine Learning series) Game Theory and the Social Contract Just Playing Introduction to Algorithms, Third Edition Strategies and Games Theory and Practice Digital Performance A History of New Media in Theater, Dance, Performance Art, and Installation Game Theory Introduction To Bioinformatics Algorithms Foundations of Statistical Natural Language Processing Learning With Kernels Support Vector Machines, Regularization, Optimization and Beyond Linguistics, Sixth Edition: An Introduction to Language and Communication Exiles, Diasporas and Strangers E-Business and E-Commerce Management Computer Networking. James F. Kurose, Keith W. Ross Computer Organization and Architecture: Designing for Performance. by William Stallings Defeat Is the Only Bad News: Rwanda under Musinga, 1896-1931 (Africa and the Diaspora) Theater Technology Theater Design Theater of the Avant-Garde, 1890-1950 A Critical Anthology Visual Judaism in Late Antiquity: Historical Contexts of Jewish Art Anthology Of Arabic Literature, Culture, and Thought From Pre-Islamic Times To The Present Learn to Read Greek: Part 1, Textbook and Workbook Set General Relativity and Gravitation:One Hundred Years After the Birth of Albert Einstein. Volume 1 Principles of Quantum Mechanics Psychotherapy and Buddhism Toward an Integration Handbook of Urban and Community Forestry in the Northeast Molecular Immunology of Complex Carbohydrates 2 Encyclopedia of Diasporas Immigrant and Refugee Cultures Around the World Da Capo Best Music Writing 2002 The Year's Finest Writing on Rock, Pop, Jazz, Country & More Case for Faith A Journalist Investigates the Toughest Objections to Christianity Basics of Biblical Greek Workbook Basics of Biblical Greek Grammar Stages of Drama Classical to Contemporary Theater Exploring American Histories, Volume 2: A Brief Survey with Sources Critical Visions in Film Theory Anatomy of Film Film: an Introduction Contemporary Linguistics Ways of the World: A Brief Global History with Sources, Volume 1 Ways of the World: A Brief Global History with Sources, Volume 2 Nvestigative Reporter's Handbook: A Guide to Documents, Databases, and Techniques Contemporary Linguistics 6e & Study Guide America: A Concise History, Volume One: To 1877 America: A Concise History, Volume Two: Since 1865 Rules for Writers with Writing about Literature (Tabbed Version) Making Literature Matter: An Anthology for Readers and Writers The American Promise, Volume I: To 1877: A History of the United States A History of World Societies, Volume 1: To 1600 [ Through Women's Eyes: An American History with Documents[ THROUGH WOMEN'S EYES: AN AMERICAN HISTORY WITH DOCUMENTS ] By DuBois, Ellen Carol ( Author )Jan-05-2012 Paperback The Film Experience: An Introduction, 3rd Edition Ashe, Traditional Religion and Healing in Sub-Saharan Africa and the Diaspora:: A Classified International Bibliography (Bibliographies and Indexes in Afro-American and African Studies) Broadway: An Encyclopedia of Theater and American Culture Feminism and Women's Rights Worldwide [3 volumes]: [Three Volumes] (Women's Psychology) Cases and Materials on Criminal Law, 6th (American Casebooks) Murray and Flechtner's Sales, Leases and Electronic Commerce: Problems and Materials on National and International Transactions, 4th Sex-Based Discrimination, Text, Cases and Materials, 7th (American Casebooks) Introduction to Real Analysis Longman Anthology of Drama and Theater A Global Perspective Writing In Political Science Computer Networking and the Internet (5th Edition) File System Forensic Analysis Database Systems An Application-Oriented Approach, Complete Longman Anthology Of Drama And Theater A Global Perspective Algorithm Design Languages and Machines: An Introduction to the Theory of Computer Science (3rd Edition) Islam in Historical Perspective Data Structures And Algorithm Analysis in C++ Art & Science of Java An Introduction to Computer Science Computer Systems : An Integrated Approach to Architecture and Operating Systems Probability and Statistics Ecology: The Experimental Analysis of Distribution and Abundance Introduction to Computer Security Database Systems: A Practical Approach to Design, Implementation and Management (5th Edition) Data Structures and Problem Solving Using Java Starting Out with Java : From Control Structures through Data Structures Microbiology: An Introduction with MyMicrobiologyPlace Website (10th Edition) Campbell Biology with MasteringBiology Campbell Biology (9th Edition) Elements of Ecology Conceptual Physics Calculus: Early Transcendentals Probability and Statistical Inference Thomas' Calculus Thomas' Calculus Early Transcendentals College Physics: A Strategic Approach (2nd Edition) Essential Organic Chemistry Astronomy: A Beginner's Guide to the Universe (6th Edition) College Mathematics for Business, Economics, Life Sciences and Social Sciences (12th Edition) (Barnett) Biology: A Guide to the Natural World (5th Edition) Physics: Principles with Applications (7th Edition) Probability and Statistics for Engineers and Scientists (9th Edition) Miller & Freund's Probability and Statistics for Engineers (8th Edition) Introductory Mathematical Analysis for Business, Economics, and the Life and Social Sciences Calculus For Biology and Medicine (3rd Edition) (Calculus for Life Sciences Series) Student Solutions Manual for Calculus for Biology and Medicine Brock Biology of Microorganisms (13th Edition) Chemistry: A Molecular Approach (2nd Edition) Earth: An Introduction to Physical Geology (10th Edition) University Physics with Modern Physics The Cultural Landscape: An Introduction to Human Geography (10th Edition) Introductory Chemistry Human Anatomy (7th Edition) Earth Science Applications and Investigations in Earth Science Laboratory Manual in Physical Geology Introductory Statistics (9th Edition) Astronomy Today (7th Edition) Chemistry: An Introduction to General, Organic, and Biological Chemistry Elementary Statistics: Picturing the World (5th Edition) Calculus and Its Applications Essentials of Human Anatomy & Physiology (10th Edition) Human Anatomy & Physiology with MasteringA&P (9th Edition) Chemistry: The Central Science Campbell Biology: Concepts & Connections University Physics with Modern Physics (13th Edition) Chemistry Geosystems: An Introduction to Physical Geography Principles of Biochemistry Fundamentals of Anatomy and Physiology Essentials of Geology University Calculus, Early Transcendentals (2nd Edition) Fundamentals of Anatomy and Physiology The World Economy: Geography, Business, Development (6th Edition) Introduction to Environmental Geology College Physics (9th Edition) Microbiology: An Introduction (11th Edition) Biology : The Core Elements of Ecology (8th Edition) Physics for Scientists and Engineers : A Strategic Approach with Modern Physics Chemistry with MasteringChemistry (6th Edition) (MasteringChemistry Series) Chemistry : The Central Science with MasteringChemistry® Campbell Biology: Concepts & Connections, Books a la Carte Edition (7th Edition) Human Anatomy & Physiology (9th Edition) Biological Science Fundamentals of Differential Equations (8th Edition) Fundamentals of Differential Equations with Boundary Value Problems (6th Edition) Calculus with Applications, Brief Version (10th Edition) Calculus with Applications (10th Edition) Finite Mathematics and Calculus with Applications (9th Edition) Human Physiology: An Integrated Approach Plus MasteringA&P with eText -- Access Card Package (6th Edition) Human Physiology: An Integrated Approach (6th Edition) Fundamentals of General, Organic, and Biological Chemistry (7th Edition) Chemistry For Changing Times (13th Edition) General, Organic, and Biological Chemistry: Structures of Life (4th Edition) Principles of Chemistry: A Molecular Approach (2nd Edition) Essential Environment: The Science Behind the Stories Human Anatomy with MasteringA&P, Media Update (6th Edition) Human Anatomy Conceptual Physical Science (5th Edition) Statistics (12th Edition) College Algebra in Context : With Applications for the Managerial, Life, and Social Sciences Statistics : Informed Decisions Using Data Calculus and Its Applications plus MyMathLab with Pearson eTex t -- Access Card Package (10th Edition) Molecular Biology of the Gene (7th Edition) Campbell Essential Biology with Physiology Plus MasteringBiology with eText -- Access Card Package (4th Edition) Campbell Essential Biology Plus MasteringBiology with eText -- Access Card Package (5th Edition) Forensic Chemistry Quantum Mechanics Earth Science Microbiology: An Introduction with MasteringMicrobiology (11th Edition) General, Organic, and Biological Chemistry: Structures of Life, Books ala Carte Edition (4th Edition) Biology: Science for Life (4th Edition) Biology: Science for Life with Physiology (4th Edition) Organic Chemistry Plus MasteringChemistry with eText -- Access Card Package (8th Edition) Organic Chemistry (8th Edition) Visual Anatomy & Physiology with MasteringA&P Human Geography: Places and Regions in Global Context (6th Edition) Campbell Essential Biology (5th Edition) Campbell Essential Biology with Physiology (4th Edition) Solutions Manual for Organic Chemistry Nutrition for Life (3rd Edition) Campbell Biology (10th Edition) Campbell Biology Plus MasteringBiology with eText -- Access Card Package (10th Edition) Essentials of Probability & Statistics for Engineers & Scientists Essentials of Anatomy & Physiology Plus MasteringA&P with eText -- Access Card Package (6th Edition) Visual Anatomy & Physiology Essentials of Anatomy & Physiology Planning, Implementing, & Evaluating Health Promotion Programs: A Primer (6th Edition) University Calculus, Early Transcendentals, Single VariablePlus NEW MyMathLab with Pearson eText -- Access Card Package (2nd Edition) Biology : Life on Earth with Physiology Laboratory Experiments in Microbiology (10th Edition) A First Course in Probability (9th Edition) Applied Partial Differential Equations with Fourier Series and Boundary Value Problems (5th Edition) (Featured Titles for Partial Differential Equations) General, Organic, and Biological Chemistry Introduction to Contemporary Geography Organic Chemistry : United States Edition Chemistry: A Molecular Approach Plus MasteringChemistry with eText -- Access Card Package (3rd Edition) Introductory Chemistry : Concepts and Critical Thinking Chemistry: A Molecular Approach (3rd Edition) General Chemistry : Atoms First Inorganic Chemistry Contemporary Human Geography (2nd Edition) Foundations of Earth Science with Masteringgeology Environmental Science: Toward a Sustainable Future (12th Edition) Foundations of Earth Science Physical Chemistry (3rd Edition) Foundations of Earth Science, Books a la Carte Edition Nutrition and You, MyPlate Edition (2nd Edition) Campbell Biology in Focus Earth : An Introduction to Physical Geology Plus MasteringGeology with EText -- Access Card Package MasteringGeology#8482;, Student Access Code Card for Earth Science Astronomy: A Beginner's Guide to the Universe Plus MasteringAstronomy with eText -- Access Card Package (7th Edition) Astronomy: A Beginner's Guide to the Universe (7th Edition) Microbiology with Diseases by Taxonomy with Masteringmicrobiology Microbiology with Diseases by Taxonomy (4th Edition) Principles of Human Physiology (5th Edition) McKnight's Physical Geography: A Landscape Appreciation (11th Edition) Lecture-Tutorials for Introductory Astronomy, 3rd Edition Globalization and Diversity: Geography of a Changing World (4th Edition) Human Biology : Concepts and Current Issues Biology of Humans : Concepts, Applications, and Issues Human Anatomy & Physiology Laboratory Manual, Cat Version Plus MasteringA&P with eText -- Access Card Package (11th Edition) (Benjamin Cummings Series in Human Anatomy & Physiology) Human Anatomy Plus MasteringA&P with eText -- Access Card Package (7th Edition) Human Anatomy and Physiology Laboratory Manual, Cat Version Human Anatomy (7th Edition) Statistics for Business and Economics (12th Edition) Calculus for Scientists and Engineers The Anatomy Coloring Book (4th Edition) Elementary Statistics Fundamentals of Statistics (4th Edition) Microbiology: A Laboratory Manual (10th Edition) Astronomy: A Beginner's Guide to the Universe, Books a la Carte Plus MasteringAstronomy with eText -- Access Card Package (7th Edition) Calculus & Its Applications (13th Edition) Anatomy & Physiology Plus MasteringA&P with eText -- Access Card Package (5th Edition) Globalization and Diversity : Geography of a Changing World, Books a la Carte Plus MasteringGeography with EText -- Access Card Package Chemistry: The Central Science Plus Mastering Chemistry with eText -- Access Card Package (13th Edition) Thomas' Calculus Human Anatomy (8th Edition) Human Anatomy Laboratory Manual with Cat Dissections (7th Edition) Campbell Biology : Concepts and Connections Plus MasteringBiology with EText -- Access Card Package Campbell Biology: Concepts & Connections (8th Edition) Elementary Statistics Plus Mystatlab Student Access Code Card Astronomy Today Plus MasteringAstronomy with eText -- Access Card Package (8th Edition) Astronomy Today (8th Edition) Nutrition and You Plus MasteringNutrition with EText -- Access Card Package Fundamentals of Anatomy and Physiology Conceptual Physics (12th Edition) Astronomy Today Volume 1: The Solar System (8th Edition) Introductory Chemistry Plus MasteringChemistry with EText -- Access Card Package Introductory Chemistry Chemistry : The Central Science Elementary Statistics : Picturing the World Earth Science Applications and Investigations in Earth Science (8th Edition) Laboratory Manual in Physical Geology (10th Edition) Essentials of Geology Immunology Mosby's Dictionary of Medicine, Nursing & Health Professions (Mosby's Dictionary of Medicine, Nursing, and Health Professions) Mosby's Guide to Physical Examination (Mosby's Guide to Physical Examination (Seidel)) Applied Pharmacology for the Dental Hygienist Pathophysiology: The Biologic Basis for Disease in Adults and Children Immunology for Pharmacy Nuclear Medicine and PET/CT : Technology and Techniques Introduction to Clinical Pharmacology Mosby's Dictionary of Medicine, Nursing & Health Professions, 9th Edition Nutritional Foundations and Clinical Applications: A Nursing Approach Understanding Pathophysiology Immunology: With STUDENT CONSULT Online Access, 8e Williams' Basic Nutrition & Diet Therapy, 14e (LPN Threads) Textbook of Radiographic Positioning and Related Anatomy, 8e Study Guide for Understanding Pathophysiology Immunology and Serology in Laboratory Medicine Basic Pharmacology for Nurses, 16e Pharmacology and the Nursing Process, 7e (Lilley, Pharmacology and the Nursing Process) Pharmacology for the Primary Care Provider Pathophysiology : The Biologic Basis for Disease in Adults and Children Pathophysiology Online for Understanding Pathophysiology (Access Code and Textbook Package), 5e Understanding Pathophysiology - Text and Study Guide Package, 5e Seidel's Guide to Physical Examination Study Guide for Pathophysiology: The Biological Basis for Disease in Adults and Children, 7e Commercial Real Estate Analysis And Investments Marketing Channels Evolution of Economic Thought Cost Accounting Foundations and Evolutions Data Structures Using C++ Essential Linguistics What You Need to Know to Teach Reading, Esl, Spelling, Phonics, and Grammar No Turning Back The History of Feminism and the Future of Women Nine Parts of Desire The Hidden World of Islamic Women Sailing the Wine-Dark Sea Why the Greeks Matter Augustine And the Jews The Story of Christianity's Great Theologian And His Defense of Judaism Introduction to Applied Nonlinear Dynamical Systems and Chaos Chaos and Fractals New Frontiers of Science Quantum Mechanics Fundamentals Pattern Recognition and Machine Learning Java for Bioinformatics And Biomedical Applications Statistical Methods in Bioinformatics An Introduction Episodes in the Mathematics of Medieval Islam Natural Language Processing: EAIA '90: Proceedings of the 2nd Advanced School in Artificial Intelligence Guarda, Portugal, October 8-12, 1990 - Miguel Filgueiras - Hardcover Allelopathy in Sustainable Agriculture and Forestry Real and Functional Analysis Real Mathematical Analysis Probability Real Analysis and Applications: Theory in Practice (Undergraduate Texts in Mathematics) Principles and Theory for Data Mining and Machine Learning (Springer Series in Statistics) The Norton Recordings: Shorter Version: Four CDs to accompany The Norton Scores & The Enjoyment of Music, Eleventh Edition Enjoyment of Music, Shorter - With 4 CD's The Enjoyment of Music: Shorter Version, 11th Edition The Enjoyment of Music: An Introduction to Perceptive Listening w/4 CDs and Student Resource DVD Born in Blood & Fire: A Concise History of Latin America (Third Edition) Psychological Science (Fourth Edition) What's That Sound?: An Introduction to Rock and Its History (Third Edition) Introduction to Sociology The Real World: An Introduction to Sociology (Third Edition) The Enjoyment of Music: An Introduction to Perceptive Listening (Shorter Eleventh Edition) The Norton Anthology of English Literature (Ninth Edition) (Vol. 1) The Norton Anthology of English Literature (Ninth Edition) (Vol. 2) The Enjoyment of Music (Essential Listening Edition, Second Edition) America: A Narrative History (Ninth Edition) (Vol. 1) America: A Narrative History (Ninth Edition) (Vol. 2) America: A Narrative History (Brief Ninth Edition) (Vol. One-Volume) America: A Narrative History (Brief Ninth Edition) (Vol. 1) America: A Narrative History (Brief Ninth Edition) (Vol. 2) Readings for Sociology (Seventh Edition) Psychological Science The Norton Anthology of English Literature (Ninth Edition) (Vol. Package 1: A, B, C) The Norton Anthology of American Literature (Volume A and B) The Norton Anthology of American Literature (Eighth Edition) (Vol. Package 2: Vols. C, D, E) Laboratory Manual for Introductory Geology The Norton Introduction to Literature, 11th Edition Evolution Strategy: An Introduction to Game Theory (Third Edition) 21st Century Astronomy (Full Fourth Edition) Essentials of Sociology (Fourth Edition) The Norton Anthology of American Literature, 8th Edition The Norton Anthology of American Literature, Vol. 2: 1865 to the Present, Shorter 8th Edition Introduction to Economic Growth (Third Edition) Doing Ethics: Moral Reasoning and Contemporary Issues (Third Edition) Chemistry: The Science in Context (Fourth Edition) Essentials of Physical Anthropology : Discovering Our Origins Essentials of Geology 4E Give Me Liberty!: An American History (Fourth Edition) (Vol. 1) Give Me Liberty! : An American History Give Me Liberty! : An American History 21st Century Astronomy : Stars and Galaxies Psychology in Your Life Our Origins: Discovering Physical Anthropology (Third Edition) Western Civilizations: Their History & Their Culture (Eighteenth Edition) (Vol. 1) Introduction to Sociology (Seagull Ninth Edition) The Norton Introduction to Literature (Portable Eleventh Edition) Reel Music Exploring 100 Years Of Film Music Evolution Showtime : A History of the Broadway Musical Theater Cultural Anthropology: A Toolkit for a Global Age 21st Century Astronomy The Norton Anthology of Western Literature (Ninth Edition) (Vol. 2) The Norton Anthology of Western Literature (Ninth Edition) (Vol. 1) The Norton Anthology of World Literature (Third Edition) (Vol. Package 1: Vols. A, B, C) The Norton Anthology of World Literature (Third Edition) (Vol. Package 2: Vols. D, E, F) The Enjoyment of Music: An Introduction to Perceptive Listening (Shorter Eleventh Edition) Western Civilizations : Their History and Their Culture Born in Blood and Fire - Latin American Voices Vol. 2 Sex Matters : The Sexuality and Society Reader History of Narrative Film American Film Maus a Survivors Tale My Father Bleeds History Introduction to Probability Theory Major Problems in the History of American Sexuality Documents and Essays Introductory Real Analysis Monstrous-Feminine Film, Feminism, Psychoanalysis Working With Men Feminism and Social Work Mahayana Buddhism: The Doctrinal Foundations Theravada Buddhism A Social History From Ancient Benares to Modern Colombo Gender Trouble Feminism And the Subversion of Identity Introducing Hinduism Global Diasporas: Second Edition Introducing Judaism South Asian Buddhism Feminism and 'The Schooling Scandal' Studying Buddhism in Practice Hinduism in Practice - Rodrigues The Feminism and Visual Culture Reader: Second Edition (In Sight: Visual Culture) Introducing Buddhism (World Religions) Encyclopedia of Hinduism Political Islam: A Critical Reader Social Linguistics and Literacies : Ideology in Discourses Forestry Economics Language Curriculum Design (Esl & Applied Linguistics Professional) World Music: A Global Journey - Paperback & CD Set Value Pack Analyzing American Democracy : Politics and Political Science Diaspora Strikes Back Cultural Challenges of Circular Migration and Transnational Communities Sex for Sale: Prostitution, Pornography, and the Sex Industry Basic and Clinical Immunology: with STUDENT CONSULT access Handbook of Statistics, Volume 28: Bioinformatics Handbook of Game Theory With Economic Applications Myths of the Ancient Greeks Actuarial Theory for Dependent Risks: Measures, Orders and Models Bioinformatics for Geneticists A Bioinformatics Primer for the Analysis of Genetic Data Quantum Mechanics: Concepts and Applications Elementary Differential Equations Fundamentals of Engineering Thermodynamics Applied Statistics and Probability for Engineers Immunology: A Short Course Bioinformatics and Functional Genomics Fixed Income Securities: Valuation, Risk, and Risk Management Machine Learning in Bioinformatics Data Structures: Abstraction and Design Using Java Operating System Concepts Evolution of Management Thought Biochemical Pathways: An Atlas of Biochemistry and Molecular Biology Meggs' History of Graphic Design Structural Bioinformatics Astronomy: A Self-teaching Guide Introduction to Linear Programming and Game Theory Engineering and Chemical Thermodynamics Operating System Concepts 8th Edition Binder Ready Version Managing Business Ethics Applied Longitudinal Analysis (Wiley Series in Probability and Statistics) Data Structures and Algorithms in Java Data Structures and Algorithms in C++ 2E Elementary Differential Equations and Boundary Value Problems Applied Corporate Finance Latin America and the Caribbean: A Systematic and Regional Survey OCA: Oracle Database 11g Administrator Certified Associate Study Guide: (Exams1Z0-051 and 1Z0-052) Mathematics of Bioinformatics : Theory, Methods and Applications Analysis of Financial Time Series (Wiley Series in Probability and Statistics) Forensic Accounting and Fraud Examination Elementary Differential Equations and Boundary Value Problems, 10th Edition Elementary Differential Equations Fundamentals of Physics Extended Cell and Molecular Biology: Concepts and Experiments Functions Modeling Change: A Preparation for Calculus Fundamentals of Engineering Thermodynamics Java Concepts: Compatible with Java 7 and 8 Operating System Concepts with Java Environmental Science: Earth as a Living Planet Introduction to Electric Circuits Microbiology : Principles and Explorations Introduction to Linear Regression Analysis (Wiley Series in Probability and Statistics) Theory and Design for Mechanical Measurements Fox and McDonald's Introduction to Fluid Mechanics Fundamentals of Biochemistry: Life at the Molecular Level Principles of Anatomy and Physiology (Tortora, Principles of Anatomy and Physiology) Biochemistry Fundamentals of Turfgrass Management Differential Equations with Boundary Value Problems : An Introduction to Modern Methods and Applications A Brief Introduction To Fluid Mechanics Introduction to General, Organic and Biochemistry Anatomy and Physiology: From Science to Life Engineering Mechanics - Statics Engineering Mechanics: Dynamics Fundamentals of Database Management Systems Basic Engineering Circuit Analysis Calculus: Early Transcendentals, 10th Edition Calculus The Christian Theology Reader Historical Theology: An Introduction to the History of Christian Thought Fundamentals of Actuarial Mathematics Real-Time Systems Design and Analysis: Tools for the Practitioner Analog Integrated Circuit Design Spatial Analysis Along Networks: Statistical and Computational Methods Takaful Islamic Insurance: Concepts and Regulatory Issues (Wiley Finance) Encyclopedia Of Actuarial Science Physics, 9th Edition Physics 9e (Volume One) Chapters 1-17 Calculus: Single and Multivariable Calculus: Single Variable Introductory Statistics Regression Analysis by Example Environmental Science : Earth as a Living Planet, Eighth Edition Binder Ready Version Basic Concepts of Chemistry Calculus, Vol. 2: Multi-Variable Calculus and Linear Algebra with Applications to Differential Equations and Probability (Volume 2) Elements of Real Analysis Forestry Handbook Stochastic Processes (Wiley Series in Probability and Statistics) Foundations of Aerodynamics: Bases of Aerodynamic Design Statistics and Data Analysis in Geology Mathematical Methods in the Physical Sciences Introduction to Thermal Systems Engineering Thermodynamics, Fluid Mechanics, and Heat Transfer Power Electronics Converters, Applications and Design Blue Planet: An Introduction to Earth System Science Introduction to Probability Theory and Its Application Probability and Stochastic Processes A Friendly Introduction for Electrical and Computer Engineers Forest Ecology Real Analysis: Modern Techniques and Their Applications Probability and Statistics with Reliability, Queueing, and Computer Science Applications, 2nd Edition Flight Theory and Aerodynamics: A Practical Guide for Operational Safety, 2nd Edition Algorithm Design: Foundations, Analysis, and Internet Examples Introduction to Real Analysis Objects, Absraction, Data Structures And Design Using C++ Bioinformatics A Practical Guide To The Analysis Of Genes And Proteins Queueing Networks And Markov Chains Modeling and Performance Evaluation with Computer Science Applications Aerodynamics, Aeronautics, and Flight Mechanics Fields and Waves in Communication Electronics Introduction to the Theory and Practice of Econometrics Error Correction Coding: Mathematical Methods and Algorithms Real Estate Market Valuation and Analysis Chemical, Biochemical, and Engineering Thermodynamics Computer Networking Internet Protocols In Action Designing Public Consensus The Civic Theater of Community Participation for Architects, Landscape Architects, Planners, and Urban Designers Statistical Bioinformatics For Biomedical And Life Science Researchers Experiments: Planning, Analysis, and Optimization (Wiley Series in Probability and Statistics) Computational Organic Chemistry Introduction to Special Relativity Probability Concepts in Engineering Emphasis on Applications in Civil & Environmental Engineering Computer Architecture and Organization: An Integrated Approach Visualizing Earth Science Damodaran on Valuation: Security Analysis for Investment and Corporate Finance (Wiley Finance) The Handbook of Computer Networks Fundamentals of Engineering Thermodynamics Thermodynamics and an Introduction to Thermostatistics Quantum Mechanics Gravitation and Cosmology: Principles and Applications of the General Theory of Relativity Illusive Utopia: Theater, Film, and Everyday Performance in North Korea (Theater: Theory/Text/Performance) Calculus Early Transcendental The Experience of Buddhism: Sources and Interpretations (Religious Life in History) First Course in Differential Equations Mathematical Statistics With Applications Earth Science and the Environment MATLAB Programming for Engineers Introduction to Probability and Statistics Criminology Forensic Psychology Calculus: Concepts and Contexts Single Variable Calculus: Concepts and Contexts Public Speaking: Choice and Responsibility Program Evaluation: An Introduction Microelectric Circuits: Analysis and Design Mechanics of Materials MATLAB Programming with Applications for Engineers The Law of Sex Discrimination Criminology: The Core Introduction to Private Security Lab Manual and Workbook for Physical Anthropology Sociology of Deviant Behavior Research Methods for Criminal Justice and Criminology Evolution and Prehistory: The Human Challenge Issues and Ethics in the Helping Professions A History of Roman Art, Enhanced Edition Criminology Cengage Advantage Books: Criminology Major Problems in American History, Volume I Gardner's Art Through the Ages: A Global History Gardner's Art through the Ages: A Global History Greek Art and Archaeology : A New History, C. 2500-C. 150 BCE Nineteenth Century Art: A Critical History (Fourth Edition) Framing America: A Social History of American Art (Third Edition) Life of Hinduism New Voices of Islam Rethinking Politics and Modernity A Reader Between Arab and White: Race and Ethnicity in the Early Syrian American Diaspora Reversing Sail A History Of The African Diaspora Introduction to the Theory of Thermal Neutron Scattering Latin America in Colonial Times: Volume 1 Regression Modeling with Actuarial and Financial Applications (International Series on Actuarial Science) Community Forestry : Integration, Local Values and Forest Resource Management The Forgotten Diaspora: Jewish Communities in West Africa and the Making of the Atlantic World Game Theory in Wireless and Communication Networks: Theory, Models, and Applications Cambridge History of Judaism Introduction, the Persian Period The Art of Electronics The Art of Electronics Student Manual Student's Latin Grammar/North American Science and Civilisation in China Volume 6: Biology and Biological Technology, Part 3, Agro-Industries and Forestry An Introduction to Hinduism (Introduction to Religion) Introduction to Hinduism Speakable and Unspeakable in Quantum Mechanics Chinese A Linguistic Introduction Jet Propulsion A Simple Guide to the Aerodynamics and Thermodynamic Design and Performance of Jet Engines Logic in Computer Science Modelling and Reasoning About Systems Algorithms on Strings, Trees, and Sequences Computer Science and Computational Biology Formation of Islam Religion and Society in the Near East, 600-1800 Ecological Census Techniques A Handbook Introduction to Swaminarayan Hinduism Low-Speed Aerodynamics An Introduction to Judaism (Introduction to Religion) Regression Modeling with Actuarial and Financial Applications (International Series on Actuarial Science) Microprocessor Architecture: From Simple Pipelines to Chip Multiprocessors Cambridge History of Judaism The Late Roman-Rabbinic Period Introduction to Support Vector Machines And Other Kernel-Based Learning Methods Basic Aerodynamics: Incompressible Flow (Cambridge Aerospace Series) General Relativity An Introduction for Physicists Political Game Theory An Introduction Thermodynamics Concepts And Applications Observational Astronomy Fallen Angels And The History Of Judaism And Christianity The Reception Of Enochic Literature Principles of Helicopter Aerodynamics Probability and Random Processes for Electrical and Computer Engineers Quantum Computer Science Parallel Computer Organization and Design A First Course in General Relativity Quantum Mechanics for Scientists and Engineers First Course in Differential Equations The Classics Introduction to Probability and Mathematical Statistics Operations Research With Infotrac Applications and Algorithms Data Structures A Pseudocode Approach With C++ Probability and Statistics for Engineers Single Variable Calculus Concepts And Contexts, 3 E Digital Logic And Microprocessor Design With Vhdl Computer Science: A Structured Approach Using C General, Organic, and Biochemistry: An Applied Approach Discrete Mathematics For Computer Science With Student Solutions Manual on CDROM Way of the Torah An Introduction to Judaism Sex, Self And Society The Social Context Of Sexuality Data Communications and Computer Networks: A Business User's Approach Principles of Economics Small Business Management: Entrepreneurship and Beyond Applied Business Ethics : A Skills-Based Approach Electronic Commerce Database Systems: Design, Implementation, and Management (with Bind-In Printed Access Card) Business Law: Text and Cases - Legal, Ethical, Global, and Corporate Environment Data Analysis and Decision Making (with Printed Access Card) Statistics for Management and Economics (with Online Content Printed Access Card) Fundamentals of Financial Management (with Thomson ONE - Business School Edition) Financial Markets and Institutions (with Stock Trak Coupon) Calculus Multivariable Calculus Calculus: Early Transcendentals Single Variable Calculus: Early Transcendentals Applied Calculus for the Managerial, Life, and Social Sciences: A Brief Approach Elementary Statistics Probability and Statistics for Engineering and Science Understanding Nutrition Calculus: Early Transcendental Functions Earth Lab: Exploring the Earth Sciences Fundamentals of Java Ap Computer Science Essentials Calculus College 9e Calculus of a Single Variable Parables of Enoch, Early Judaism, Jesus, and Christian Origins Quantum Mechanics Prophet and the Age of the Caliphates The Islamic Near East from the Sixth to the Eleventh Century Natural Language Processing with Python The Bluebook: A Uniform System of Citation World Cultures and Geography Discovering Psychology Earth Science Calculus of a Single Variable Human Sexuality: From Cells to Society Why Politics Matters : An Introduction to Political Science (with CourseReader 0-60: Introduction to Political Science Printed Access Card) Managerial Economics Database Security And Auditing Protecting Data Integrity And Accessibility Feminism-Art-Theory An Anthology 1968-2000 Theorizing Diaspora A Reader Data Structures & Algorithms in Java Practice of Diaspora Literature, Translation, and the Rise of Black Internationalism When Empire Comes Home: Repatriation and Reintegration in Postwar Japan (Harvard East Asian Monographs) Picturing Heaven in Early China (Harvard East Asian Monographs) Quantum Mechanics and Experience History of Sexuality An Introduction Game Theory for Applied Economics Mathematical Foundations of Quantum Mechanics Harmonic Analysis: Real-Variable Methods, Orthogonality, and Oscillatory Integrals Game Theory for Political Scientists Behavioral Game Theory Experiments in Strategic Interaction Real Analysis Measure Theory, Integration, And Hilbert Spaces Real Analysis with Economic Applications Camphor Flame Popular Hinduism And Society In India Beyond Liberal Democracy Political Thinking for an East Asian Context Ecological Models and Data in R Politics of Piety - the Islamic Revival and the Feminist Subject A Trip to China: An Intermediate Reader of Modern Chinese (Princeton Language Program: Modern Chinese) Field and Laboratory Methods for General Ecology Selfless Mind Personality, Consciousness and Nirvana in Early Buddhism Buddhism and Deconstruction Towards a Comparative Semiotics Integrating East Asian Medicine into Contemporary Healthcare Rang & Dale's Pharmacology: with STUDENT CONSULT Online Access Kumar and Clark's Clinical Medicine, 8e (Kumar, Kumar and Clark's Clinical Medicine) Washington Conference, 1921-22 Naval Rivalry, East Asian Stability and the Road to Pearl Harbor Silent Theater The Art of Edward Hopper Spacetime Physics Introduction to Special Relativity Mathematical Structures for Computer Science A Modern Approach to Discrete Mathematics Principles of Biochemistry Molecular Cell Biology Molecular Biology: Principles and Practice The Law of Torts: Examples & Explanations, 4th Edition Problems in Contract Law: Cases and Materials, Seventh Edition (Aspen Casebook) Constitutional Law: Principles & Policies 4e History of Dance An Interactive Arts Approach Acsms exercise management for persons with chronic diseases and Disabilities Foundations of Sport and Exercise Psychology w/Web Study Guide-5th Edition Physiology of Sport and Exercise w/Web Study Guide-5th Edition Making the Connections 2: A How-To Guide for Organic Chemistry Lab Techniques, Second Edition Nonlinear Dynamics and Chaos With Applications to Physics, Biology, Chemistry, and Engineering Annotated Mona Lisa A Crash Course in Art History from Prehistoric to Post-modern VoiceMale What Husbands Really Think About Their Marriages, Their Wives, Sex, Housework, and Commitment A Primer in Game Theory The Crusades: Islamic Perspectives (Islamic Surveys) Astronomy Principles and Practice Embedded Microprocessor Systems Real World Design Analog Interfacing to Embedded Microprocessor Systems, Second Edition (Embedded Technology Series) Agricultural Consolidation Antitrust Hearing Before the Committee on Agriculture, Nutrition, and Forestry, U.S. Senate Mtbe Crisis and the Future of Renewable Fuels Hearing Before the Committee on Agriculture, Nutrition, and Forestry, U.S. Senate Contemporary Activities in Astronomy: A Process Approach Discovering Linguistics: An Introduction to Linguistic Analysis Fundamental Greek Grammar Gender and the Social Construction of Illness Essentials of Computer Organization And Architecture Essentials Of Public Health Biology: A Guide For The Study Of Pathophysiology (Essential Public Health) Criminology: Theory, Research, And Policy Elements Of Real Analysis (International Series in Mathematics) Foundations of Algorithms, Fourth Edition Computer Networking Illuminated German Daggers Of World War II - A Photographic Reference Dlv/nsfk - Diplomats - Red Cross - Police And Fire - Rlb - Teno - Customs - Reichsbahn - Postal - Hunting And Forestry - Etc. Buddhism Plain and Simple Aerodynamics of Road Vehicles: From Fluid Mechanics to Vehicle Engineering ([Proceedings] / SAE) Design of High-Performance Microprocessor Circuits 100 Case Studies in Pathophysiology Pathophysiology Essentials of Research Methods in Health, Physical Education, Exercise Science, and Recreation Histology: A Text and Atlas: With Correlated Cell and Molecular Biology, North American Edition Primary Care Medicine: Office Evaluation and Management of the Adult Patient Essentials of Pathophysiology : Concepts of Altered Health States Bates' Nursing Guide to Physical Examination and History Taking (Guide to Physical Exam & History Taking (Bates)) Lippincott's Illustrated Reviews: Cell and Molecular Biology (North American Edition) (Lippincott's Illustrated Reviews Series) Medical Terminology, a Programmed Learning Approach to the Language of Health Care Fundamentals of Nursing: The Art and Science of Nursing Care Religion of Reason Out of the Sources of Judaism Life And Health Insurance License Exam Cram Mutual Causality in Buddhism and General Systems Theory The Dharma of Natural System Centrifugal Compressors A Strategy for Aerodynamic Design and Analysis Turbine Aerodynamics Axial-flow And Radial-flow Turbine Design And Analysis Integration of Natural Language and Vision Processing Computational Models and Systems Integration of Natural Language and Vision Processing Intelligent Multimedia Integration of Natural Language and Vision Processing Theory and Grounding Representations Integration of Natural Language and Vision Processing Recent Advances Our Vanishing Relative The Status of Wild Orang-Utans at the Close of the Twentieth Century Learning to Classify Text Using Support Vector Machines Methods, Theory, and Algorithms Discrete Mathematics and Game Theory Game Theory Stochastics, Information, Strategies and Cooperation Natural Language Processing: The PLNLP Approach (The Springer International Series in Engineering and Computer Science) Reversible Grammar in Natural Language Processing Suspect Relations Sex, Race, and Resistance in Colonial North Carolina Mammalogy: Adaptation, Diversity, Ecology Eerdmans Dictionary of Early Judaism Clinical Immunology and Serology: A Laboratory Perspective Nutrition & Diet Therapy Medical Terminology Simplified Text, Audio CD & TermPlus 3.0: A Programmed Learning Approach by Body Systems New Nelson Japanese-English Character Dictionary Based on the Classic Edition by Andrew N. Nelson Fundamental Concepts of Bioinformatics Discovering Genomics, Proteomics and Bioinformatics (2nd Edition) Modern Quantum Mechanics Gravity: An Introduction to Einstein's General Relativity Introductory Quantum Mechanics (4th Edition) Quantum Mechanics An Accessible Introduction Spacetime and Geometry An Introduction to General Relativity Human Anatomy and Physiology Molecular Biology of the Gene Theoretical Issues in Natural Language Processing Global Linguistic Flows: Hip Hop Cultures, Youth Identities, and the Politics of Language A Dragon's Head and a Serpent's Tail: Ming China and the First Great East Asian War, 1592-1598 (The Campaigns and Commanders Series) Forensic and Investigative Accounting (6th Edition) Theater Games for the Classroom A Teacher's Handbook Theater Games for the Lone Actor Geoffrey Holder A Life in Theater, Dance, and Art Nonviolence and Peace Building in Islam: Theory and Practice Society and the Environment: Pragmatic Solutions to Ecological Issues Language Files: Materials for an Introduction to Language and Linguistics, 11th Edition East Main Street: Asian American Popular Culture Understanding Bioinformatics Molecular Biology of the Cell Molecular Biology of the Cell: Reference Edition Phylogenomics: A Primer Molecular Driving Forces: Statistical Thermodynamics in Biology, Chemistry, Physics, and Nanoscience Case Studies in Immunology: A Clinical Companion (Geha, Case Studies in Immunology: A Clinical Companion) Principles of Mucosal Immunology Essential Cell Biology Real-Time Software Design: A Guide for Microprocessor Systems - Philip Heller - Hardcover Neural Networks and Analog Computation Beyond the Turing Limit World Religions: Beliefs Behind Today's Headlines: Buddhism, Christianity, Confucianism, Hinduism, Islam, Shintoism, Taoism Probability: The Science of Uncertainty with Applications to Investments, Insurance, and Engineering Global Divas Filipino Gay Men in the Diaspora Impossible Desires Queer Diasporas and South Asian Public Cultures Image Matters: Archive, Photography, and the African Diaspora in Europe Wars in the Woods The Rise of Ecological Forestry in America Differential Geometry and Relativity Theory: An Introduction (Chapman & Hall/CRC Pure and Applied Mathematics) Asian Culture and Psychotherapy Implications for East and West Hokkeji and the Reemergence of Female Monastic Orders in Premodern Japan (Studies in East Asian Buddhism) Handbook of Forensic Mental Health With Victims and Offenders Assessment, Treatment, and Research Understanding Microprocessors LA Civilisation Francaise En Evolution I Institutions Et Culture Avant LA Ve Republique Ethics in Counseling & Psychotherapy Brooks/Cole Empowerment Series: Social Welfare Policy and Social Programs Popular Music in America: The Beat Goes On Cengage Advantage Books: Evolution and Prehistory: The Human Challenge Management of Human Service Programs Chemistry and Chemical Reactivity Understandable Statistics: Concepts and Methods Student Solutions Manual, (Chapters 1-11) for Stewart's Single Variable Calculus: Early Transcendentals, 7th Student Solutions Manual (Chapters 1-11) for Stewart's Single Variable Calculus, 7th Organic Chemistry Study Guide with Student Solutions Manual for McMurry's Organic Chemistry, 8th College Physics Changing Earth : Exploring Geology and Evolution Quantitative Methods for Business Student Solutions Manual for Devore's Probability and Statistics for Engineering and Science, 8th Precalculus: Mathematics for Calculus Biochemistry Student Solutions Manual for Stewart/Redlin/Watson's Precalculus: Mathematics for Calculus, 6th Forensic Pathology Actuarial Models for Disability Insurance Agroecology The Ecology of Sustainable Food Systems Practical Homicide Investigation Tactics, Procedures And Forensic Techniques Relative Permeability of Petroleum Reservoirs Wildlife Habitat Management Concepts And Applications in Forestry Insect Pests in Tropical Forestry An Introduction to Actuarial Studies, Second Edition Deities of Tibetan Buddhism The Zurich Paintings of the Icons Worthwhile to See Bris Sku Mthon Ba Donldan Nyingma School of Tibetan Buddhism Its Fundamentals and History Latin for the New Millenium Microprocessor Interfacing Meditations on First Philosophy In Which the Existence of God and the Distinction of the Soul from the Body Are Demonstrated The Greek Particles Introductory Readings in Ancient Greek and Roman Philosophy Moral Philosophy: A Reader Performed Culture: An Approach to East Asian Language Pedagogy Diasporas in the New Media Age : Identity, Politics, and Community Real Estate Market Analysis: A Case Study Approach Scholars' Guide to Washington, D. C. for East Asian Studies China, Japan, Korea, and Mongolia Calligraphy and the East Asian Book Encyclopedia of Eastern Philosophy and Religion Buddhism, Hinduism, Taoism, Zen Primer of Ecology Ecology, Second Edition Animal Physiology, Third Edition Human Sexuality, Fourth Edition Discovering Human Sexuality, Second Edition Ecology, Third Edition Bioinformatics Sequence and Genome Analysis Catechism of the Catholic Church Revised in Accordance With the Official Latin Text Promulgated by Pope John Paul II Christianity: A Biblical, Historical, and Theological Guide for Students Diagnostic and Statistical Manual of Mental Disorders, 5th Edition: DSM-5 Africana Studies: A Survey of Africa And the African Diaspora Microbiology: Laboratory Theory and Application, Third Edition A Photographic Atlas for the Microbiology Laboratory A Photographic Atlas for the Anatomy and Physiology Laboratory Seventh Edition Microbiology Laboratory Theory & Application, Brief, 2nd Edition Ain't I A Woman Black Women and Feminism Feminism Is for Everybody Passionate Politics Dynamic Noncooperative Game Theory A First Course in Numerical Methods (Computational Science and Engineering) Principles of Ideal-Fluid Aerodynamics Re-Entry Aerodynamics (AIAA Education) Physical Chemistry A Molecular Approach Translating Buddhism from Tibetan Transactions of the Society of Actuaries, Vol. 47 Actuarial Mathematics Introduction to East Asian and Tibetan Linguistics and Culture Biochemistry & Molecular Biology of Plants Understanding Variation: The Key to Managing Chaos Hinduism and Ecology The Intersection of Earth, Sky, and Water Hinduism and Ecology The Intersection of Earth, Sky, and Water Letters from Chittagong An American Forestry Couple's Letters Home, 1952-54 Street Smarts: High Probability Short-Term Trading Strategies Judaism Discovered: A Study of the Anti-Biblical Religion of Racism, Self-Worship, Superstition and Deceit Financial Mathematics: A Practical Guide For Actuaries And Other Business Professionals Financial Mathematics : A Practical Guide for Actuaries and Other Business Professionals Getting Started with Latin: Beginning Latin for Homeschooled and Self-Taught Students of Any Age Comprehensive Math Review for Actuarial Exams Organic Chemistry The Tangled Bank: An Introduction to Evolution uC/OS-III, The Real-Time Kernel, or a High Performance, Scalable, ROMable, Preemptive, Multitasking Kernel for Microprocessors, Microcontrollers & DSPs (Book & Board Included) Game Theory Actuarial Mathematics for Life Contingent Risks Machine Learning: The Art and Science of Algorithms that Make Sense of Data Machine Learning : The Art and Science of Algorithms That Make Sense of Data Solutions Manual for Actuarial Mathematics for Life Contingent Risks (International Series on Actuarial Science) Solutions Manual for Actuarial Mathematics for Life Contingent Risks The Fundamentals of Political Science Research Bioinformatics for Biologists Introduction to Electronics Principles of Pharmacology for Medical Assisting Principles of Information Security Philosophy: An Introduction to the Art of Wondering Health, Safety, and Nutrition for the Young Child Guide to Operating Systems Introduction to Forestry Science Introduction to Law Abnormal Psychology: An Integrated Approach Management of Electronic and Digital Media Linguistics for Everyone: An Introduction Media Programming: Strategies and Practices A History of Modern Psychology Soap, Sex, and Cigarettes: A Cultural History of American Advertising Gendered Lives Research Methods and Statistics: A Critical Thinking Approach Basics of Research Methods for Criminal Justice and Criminology Psychology: Themes and Variations, 9th Edition Biology the Unity & Diversity of Life Calculus : Early Transcendentals, Hybrid Edition (with Enhanced WebAssign with eBook Printed Access Card for Multi Term Math and Science) Physical Geography Probability for Engineering, Mathematics, and Sciences Microeconomic Theory : Basic Principles and Extensions (with Economic Applications, InfoTrac� Printed Access Card) Business Law and the Legal Environment, Standard Edition The Legal Environment Today: Business In Its Ethical, Regulatory, E-Commerce, and Global Setting Practical Management Science (with Decision Sciences CourseMate Printed Access Card) Essentials of Statistics for Business and Economics, Revised (with Printed Access Card) Ethics in Information Technology Systems Analysis and Design in a Changing World, 6th Edition Guide to Parallel Operating Systems with Windows 7 and Linux (Networking) Personal Nutrition Human Physiology : From Cells to Systems Mechanics of Materials Foundations of Marketing Advertising Promotion and Other Aspects of Integrated Marketing Communications Fundamentals of Chemical Engineering Thermodynamics Security+ Guide to Network Security Fundamentals Security Awareness: Applying Practical Security in Your World Gardner's Art through the Ages: A Global History, Volume II (with CourseMate Printed Access Card) Gardner's Art through the Ages: A Global History, Volume II (Book Only) Gardner's Art through the Ages Vol. 1 : A Global History Gardner's Art through the Ages: A Global History, Volume I (Book Only) Essentials of Business Communication Marketing Economics and Contemporary Issues (with Economic Applications and InfoTrac 2-Semester Printed Access Card) Organizational Behavior : Science, the Real World, and You Concepts of Database Management Understanding Basic Statistics Probability and Statistics for Engineers and Scientists A First Course in Differential Equations with Modeling Applications Differential Equations with Boundary-Value Problems (Textbooks Available with Cengage Youbook) The Anthropology of Language: An Introduction to Linguistic Anthropology The Sociology of Health, Illness, and Health Care: A Critical Approach The Anthropology of Language: An Introduction to Linguistic Anthropology Workbook/Reader Cengage Advantage Books: Sociology Race, Class, & Gender: An Anthology Statistics for the Behavioral Sciences (Psy 200 (300) Quantitative Methods in Psychology) Biological Psychology Sociology: The Essentials Sociology in Our Times World History World History since 1500 Cengage Advantage Books: Understanding Humans: An Introduction to Physical Anthropology and Archaeology Safety, Nutrition and Health in Early Education Developing and Administering a Child Care and Education Program The Essence of Anthropology Introduction to Psychology: Gateways to Mind and Behavior, 13th Edition Ten Questions: A Sociological Perspective Sociology: Pop Culture to Social Structure Sociology : A Global Perspective Cengage Advantage Books: Cultural Anthropology: A Problem-Based Approach Voices of Wisdom: A Multicultural Philosophy Reader World Religions Sexuality Now: Embracing Diversity Essentials of Physical Anthropology Understanding Statistics in the Behavioral Sciences (Psy 200 (300) Quantitative Methods in Psychology) Archetypes of Wisdom: An Introduction to Philosophy Compact Literature: Reading, Reacting, Writing Music Listening Today (with 2 CD Set) Industrial/Organizational Psychology : An Applied Approach Gardner's Art Through the Ages: A Concise Global History (with Arts CourseMate Printed Access Card) Gardner's Art Through the Ages: A Concise Global History (Book Only) 21St Century Handbook Edition: Human Sexuality Database Systems Design Implementation Management Economics Private and Public Choice 14e Computer Organization & Architecture: Themes and Variations Historical Geology A History of Modern Psychology Visualizing Nutrition: Everyday Choices Psychology in Action, 10th Edition Fundamental Molecular Biology Operating System Concepts The Analysis and Design of Linear Circuits Tourism: Principles, Practices, Philosophies Introduction to Organic Chemistry Essential Biochemistry Business Data Communications and Networking Big Java Late Objects Managerial Accounting: Tools for Business Decision Making Fundamentals of Engineering Thermodynamics, Appendices Operating System Concepts Fundamentals of Fluid Mechanics Probability and Measure Operating System Concepts Accounting Principles Fundamentals of Thermodynamics Organic Chemistry Intermediate Accounting Organic Chemistry Elementary Differential Equations and Boundary Value Problems Financial Accounting: Tools for Business Decision Making Engineering Fluid Mechanics Visualizing Human Biology Applied Calculus, Fifth Edition International Economics Cell and Molecular Biology: Concepts and Experiments Game Theory: An Introduction Economics of Strategy Nutrition: Science and Applications Exam 98-349 MTA Windows Operating System Fundamentals Cell and Molecular Biology Loss Models: From Data to Decisions Probability and Stochastic Processes` : A Friendly Introduction for Electrical and Computer Engineers The Handbook of Computational Linguistics and Natural Language Processing Introducing Physical Geography The World Today: Concepts and Regions in Geography Environmental Science: Earth as a Living Planet Big Java: Early Objects Java Concepts: Early Objects Organic Chemistry Introduction to Electric Circuits Applied Statistics and Probability for Engineers Physical Geology : The Science of Earth Abnormal Psychology Twelfth Edition DSM-V Update Geography: Realms, Regions, and Concepts Data Structures and Algorithms in Java Operating System Concepts Essentials, Second Edition Research Methods for Business: A Skill-Building Approach Theory of Lift: Introductory Computational Aerodynamics in MATLAB/Octave Battery Systems Engineering Structural Health Monitoring: A Machine Learning Perspective Practical Lessons In Actuarial Science V2: Tables (1905) Logic and Philosophy: A Modern Introduction A History of Latin America Introduction to Probability and Statistics Foundations of Astronomy General, Organic, and Biological Chemistry Principles of Physics: A Calculus-Based Text Introduction to General, Organic and Biochemistry Laboratory Experiments for Introduction to General, Organic and Biochemistry Biochemistry GEOL (with Earth Science CourseMate with eBook Printed Access Card) Differential Equations (with DE Tools Printed Access Card) An Introduction to Physical Science Brief Calculus: An Applied Approach Introduction to Organic and Biochemistry (William H. Brown and Lawrence S. Brown) Essential Calculus: Early Transcendentals Thermodynamics for Engineers Fundamentals of World Regional Geography Study Guide for Miller/Cross' The Legal Environment Today: Business In Its Ethical, Regulatory, E-Commerce, and Global Setting, 7th Essentials of Marketing Research (with Qualtrics Printed Access Card) Invitation to Computer Science VBA for Modelers: Developing Decision Support Systems (with Microsoft Office Excel Printed Access Card) Cengage Advantage Books: Business Law Today : The Essentials Statistics for Business and Economics (with Printed Access Card) Circuit Analysis: Theory and Practice Understanding Health Insurance: A Guide to Billing and Reimbursement Research Methods in Political Science (with MicroCase Printed Access Card) Why Politics Matters: An Introduction to Political Science (book only) Soap, Sex, and Cigarettes : A Cultural History of American Advertising A History of Modern Psychology Understanding Health Insurance: A Guide to Billing and Reimbursement Financial Markets and Institutions, Abridged Edition (with Stock-Trak Coupon) Student Solutions Manual for Stewart's Essential Calculus: Early Transcendentals, 2nd C++ Programming: Program Design Including Data Structures, 6th Edition Electronic Commerce Understanding Nutrition Biology: The Dynamic Science Cengage Advantage Books: Introduction to Sociology Business Nutrition for Health and Healthcare Nutrition Through the Life Cycle Chemistry for Today: General, Organic, and Biochemistry Nutrition : Concepts and Controversies Essentials of Cultural Anthropology Geology and the Environment Fundamentals of Physical Geography Accounting Applied Calculus for the Managerial, Life, and Social Sciences Data Structures and Algorithms in C++ Reason and Responsibility: Readings in Some Basic Problems of Philosophy The Big Questions: A Short Introduction to Philosophy Chemistry Philosophy: A Text with Readings Internet Marketing: Integrating Online and Offline Strategies C++ Programming: From Problem Analysis to Program Design Data Communications and Computer Networks Contemporary Marketing Essentials of Sociology Nutrition Now Psychology: Themes and Variations, Briefer Version Marketing 2014 Our Sexuality Our Sexuality Financial Markets and Institutions (with Stock Trak Coupon) Modern Diesel Technology : Electricity and Electronics Pushing Electrons Financial & Managerial Accounting Physics for Scientists and Engineers with Modern Physics Listening to Music (with Introduction to Listening CD) Gardner's Art through the Ages: A Concise History of Western Art (with CourseMate Printed Access Card) GOVT (with Political Science CourseMate with EBook Printed Access Card) Fundamentals of Economics Essentials of Statistics for the Behavioral Sciences Sociology in Our Times: The Essentials Cultural Anthropology: The Human Challenge Nutrition and Diet Therapy with Premium Website Printed Access Card and Studyware TX. GOV (with Political Science CourseMate with EBook Printed Access Card) East Asian Ecocriticisms: A Critical Reader (Literatures, Cultures, and the Environment) Islamic Feminism in Kuwait: The Politics and Paradoxes Michigan Manual of Forestry, Volume 2 Practical Forestry for Beginners in Forestry, Agricultural Students, Woodland Owners, and Others Desiring a General Knowledge of the Nature of Sociology: A Down-to-Earth Approach CORE Concepts (5th Edition) Exploring Bioinformatics: A Project-Based Approach Philosophies and Theories for Advanced Practice Nursing Pathophysiology: a Practical Approach The Essentials of Computer Organization and Architecture General Chemistry Calculus Evolution and Prehistory: The Human Challenge Introduction to Programming with C++ Criminal Law Terrorism and Homeland Security Introduction to Physical Anthropology, 2013-2014 Edition Ethical Dilemmas and Decisions in Criminal Justice Fundamentals of Financial Management, Concise Edition (with Thomson ONE - Business School Edition 6-Month Printed Access Card) Research Methods for Criminal Justice and Criminology Criminology : The Core Gendered Lives Java Programming PFIN3 (with Finance CourseMate and EBook Printed Access Card) MKTG (with Marketing CourseMate with EBook and Career Transitions Printed Access Card) Principles of Economics Business Law: Text and Cases : Legal, Ethical, Global, and Corporate Environment Database Systems : Design, Implementation, and Management Business Ethics: Ethical Decision Making & Cases Electronic Commerce Health, Safety, and Nutrition for the Young Child General, Organic, and Biochemistry : An Applied Approach Sociology: The Essentials Juvenile Delinquency: Theory, Practice, and Law Sociology in Our Times Applied Calculus for the Managerial, Life, and Social Sciences: A Brief Approach Changing Earth : Exploring Geology and Evolution Business and Society: Ethics, Sustainability, and Stakeholder Management Understanding Health Insurance : A Guide to Billing and Reimbursement (with Cengage EncoderPro. com Demo Printed Access Card) Understanding Health Insurance: A Guide to Billing and Reimbursement (Book Only) Psychology : Modules for Active Learning Sociology: A Global Perspective Abnormal Psychology: An Integrative Approach Calculus: Early Transcendental Functions C++ Programming : From Problem Analysis to Program Design Flapper: A Madcap Story of Sex, Style, Celebrity, and the Women Who Made America Modern Relativity in Rotating Frames: Relativistic Physics in Rotating Reference Frames (Fundamental Theories of Physics) Stream Ecology Structure and Function of Running Waters Bioinformatics And Molecular Evolution Retrieving the Ancients: An Introduction to Greek Philosophy Ecology From Individuals To Ecosystems ISLAM AND THE WEST: Understanding Islamic Fundamentalism Living Language: An Introduction to Linguistic Anthropology (Primers in Anthropology) Western Philosophy Risk Management and Insurance: Perspectives in a Global Economy Introduction to Chinese Philosophy From Ancient Philosophy to Chinese Buddhism The Blackwell Companion to Hinduism Games and Information An Introduction to Game Theory Hinduism: A Reader Allah Made Us: Sexual Outlaws in an Islamic African City The Handbook of Computational Linguistics and Natural Language Processing (Blackwell Handbooks in Linguistics) America on Film: Representing Race, Class, Gender, and Sexuality at the Movies Introducing Philosophy Through Film: Key Texts, Discussion, and Film Selections An Introduction to Islam in the 21st Century Roitt's Essential Immunology Business Database Systems Culturally and Linguistically Diverse Exceptional Students: Strategies for Teaching and Assessment Sex Crimes Patterns and Behavior Data Analysis Using SAS Gender, Race, and Class in Media: A Critical Reader Criminological Theory: Context and Consequences Sociology: Exploring the Architecture of Everyday Life Race, Ethnicity, Gender, and Class : The Sociology of Group Conflict and Change An Invitation to Environmental Sociology Introduction to Criminology: Why Do They Do It? Introduction to Forensic Psychology: Research and Application Diversity and Society: Race, Ethnicity, and Gender Our Social World: Introduction to Sociology Discover Sociology Guyton and Hall Textbook of Medical Physiology: With STUDENT CONSULT Online Access Basic Immunology Updated Edition: Functions and Disorders of the Immune System With STUDENT CONSULT Online Access, 3e (Basic Immunology: Functions and Disorders of the Immune System) Atlas of Human Anatomy: with Student Consult Access (Netter Basic Science) Assessment & Intervention for Communication Disorders in Culturally & Linguistically Diverse Populations R Programming for Bioinformatics Forensic Science an Introduction to Scientific and Investigative Techniques, Third Edition Machine Learning: An Algorithmic Perspective Algorithms in Bioinformatics: A Practical Introduction (Chapman & Hall/Crc Mathematical and Computational Biology) Handbook of Natural Language Processing, Second Edition (Chapman & Hall/Crc: Machine Learning & Pattern Recognition) Tort Law and Practice Fundamentals of Python: From First Programs through Data Structures Electronic Commerce Computer Networking for LANs to WANs: Hardware, Software and Security Investment Analysis for Real Estate Decisions Gendered Lives Anatomy & Physiology for Speech, Language, and Hearing Outlines & Highlights for Introduction to Quantum Mechanics by David J. Griffiths, ISBN: 9780131118928 Kuby Immunology Forensic and Legal Psychology Calculus: Early Transcendentals Lehninger Principles of Biochemistry and Absolute Ultimate Guide Physical Chemistry Biology: How Life Works Kuby Immunology (Kindt, Kuby Immunology) Techniques in Organic Chemistry Raven Biology of Plants Probability and Statistics: The Science of Uncertainty Biochemistry (Biochemistry (Berg)) Essentials of General, Organic, and Biochemistry Molecular Cell Biology Lehninger Principles of Biochemistry Race, Class, and Gender in the United States: An Integrated Study Economics Investigating Chemistry: Introductory Chemistry From A Forensic Science Perspective Psychology, 10th Edition Abnormal Psychology Biochemistry: A Short Course, 2nd Edition Absolute Ultimate Guide for Lehninger Principles of Biochemistry Fundamentals of Abnormal Psychology Life: The Science of Biology Expert Oracle Database 11g Administration (Expert's Voice in Oracle) Publication Manual of the American Psychological Association, Sixth Edition Publication Manual of the American Psychological Association Spiral Essentials of Pharmacology for Health Occupations Computer Forensics: Hard Disk and Operating Systems (Ec-Council Press Series : Computer Forensics) Management of Information Security Guide to Computer Forensics and Investigations Physical Examination and Health Assessment The Language of Medicine Pathophysiology for the Health Professions Pharmacology for the Surgical Technologist Pocket Companion for Physical Examination and Health Assessment Student Laboratory Manual for Physical Examination & Health Assessment Cellular and Molecular Immunology: with STUDENT CONSULT Online Access, 7e (Abbas, Cellular and Molecular Immunology) Pharmacology : A Nursing Process Approach Illustrated Dental Embryology, Histology, and Anatomy Krause's Food & the Nutrition Care Process (Krause's Food & Nutrition Therapy) Pharmacology : Principles and Applications Study Guide for Pharmacology for Nursing Care, 8e Pharmacology for Nursing Care Twenty Questions: An Introduction to Philosophy Cost Accounting: Foundations and Evolutions Nutrition Therapy and Pathophysiology Foundations of Astronomy Understanding Operating Systems Connecting with Computer Science Probability, Statistics, and Reliability for Engineers and Scientists Computer Network Time Synchronization : The Network Time Protocol on Earth and in Space Pension Fund Risk Management: Financial and Actuarial Modeling (Chapman & Hall/Crc Finance Series) Handbook of Solvency for Actuaries and Risk Managers First Course in Machine Learning Forensic Science : An Introduction to Scientific and Investigative Techniques, Fourth Edition Machine Learning for Business Analytics Meditation in Judaism, Christianity and Islam : Cultural Histories New Dynamics in East Asian Politics: Security, Political Economy, and Society Statistical Methods in Bioinformatics : An Introduction Advanced Quantum Mechanics: Materials and Photons (Graduate Texts in Physics) Principles of Distributed Database Systems The Philosophy of Sex Feminisms Matter: Debates, Theories, Activism Discovering Statistics using IBM SPSS Statistics Guide to Computer Network Security (Computer Communications and Networks) The Essentials of Computer Organization and Architecture Molecular Biology: Genes to Proteins Object-Oriented Data Structures Using Java Essentials of Computer Organization and Architecture Principles Of Modern Operating Systems Java Illuminated: An Active Learning Approach C++ Plus Data Structures Elementary Information Security Essentials Of Health Policy And Law (Essential Public Health) Discovering Nutrition Introduction to Human Disease: Pathology and Pathophysiology Correlations Computer Science Illuminated Christian Paths to Health and Wellness-2nd Edition Immunology (Lippincott Illustrated Reviews Series) Lippincott's Illustrated Reviews: Pharmacology (Lippincott's Illustrated Reviews Series) The Washington Manual of Allergy, Asthma, and Immunology Subspecialty Consult (The Washington Manual Subspecialty Consult Series) Essentials of Pathophysiology: Text and Study Guide Package Focus on Nursing Pharmacology Pb Porth's Pathophysiology: Concepts of Altered Health States Primary Care Medicine Microbiology and Immunology (Board Review Series) Practical Essentials of Intensity Modulated Radiation Therapy Acsm Introduction Exercise Science Pocket Medicine : The Massachusetts General Hospital Handbook of Internal Medicine Washington Manual of Medical Therapeutics, 34e Print + Online Pocket Medicine: The Massachusetts General Hospital Handbook of Internal Medicine (Pocket Notebook) The Relativity of Deviance Race, Ethnicity, Gender, and Class: The Sociology of Group Conflict and Change Racism, Sexism, and the Media: Multicultural Issues Into the New Communications Age A Novel Approach to Politics: Introducing Political Science through Books, Movies and Popular Culture, 3rd Edition Preparing Educators to Engage Families : Case Studies Using an Ecological Systems Framework Introduction to Criminology: Theories, Methods, and Criminal Behavior The Practice of Research in Criminology and Criminal Justice Introduction to Criminology: A Text/Reader Sociology: Exploring the Architecture of Everyday Life Statistics for People Who (Think They) Hate Statistics Ethical Problems in the Practice of Law, 3rd Edition Secured Credit: A Systems Approach, Seventh Edition (Aspen Casebook) Constitutional Law Criminal Law and Its Processes: Cases and Materials (Aspen Casebook Series), 9th Edition Constitutional Law, Seventh Edition (Aspen Casebook Series) Rules of Contract Law 2012-2013 Statutory Supplement Veterinary Immunology : An Introduction Atlas of Human Anatomy : Including Student Consult Interactive Ancillaries and Guides Basic Immunology: Functions and Disorders of the Immune System, 4e Health Insurance Today - Text and Workbook Package: A Practical Approach, 4e Pathophysiology, 5e Language of Medicine Insurance Handbook for the Medical Office Pharmacology: A Patient-Centered Nursing Process Approach, 8e (Kee, Pharmacology) Gould's Pathophysiology for the Health Professions Medical Terminology Online for The Language of Medicine (Access Code and Textbook Package), 10e Study Guide for Pharmacology: A Patient-Centered Nursing Process Approach, 8e Literature: the Human Experience : Reading and Writing Literature: A Portable Anthology The Bedford Introduction to Literature: Reading, Thinking, Writing Bioinformatics for High Throughput Sequencing New Perspectives on Industrial Organization: With Contributions from Behavioral Economics and Game Theory (Springer Texts in Business and Economics) Discovering Psychology The Basic Practice of Statistics: w/Student CD Psychology in Modules What Is Life? A Guide to Biology & Prep-U What Is Life? A Guide to Biology with Physiology & Prep-U World Regional Geography Without Subregions World Regional Geography Exploring Psychology (Paper) Exploring Psychology in Modules (Loose-Leaf) [Book Only] [2012] Ninth Edition Ed. David G. Myers Abnormal Psychology--DSM-5 Update Investigating Astronomy Introduction to the Practice of Statistics: w/CrunchIt/EESEE Access Card Exploring Psychology with Dsm5 Update Embedded Systems: Real-Time Operating Systems for Arm Cortex M Microcontrollers Linear Algebra and Probability for Computer Science Applications Homeland Security: An Introduction to Principles and Practice, Second Edition Introduction to Computer Networks and Cybersecurity Network Anomaly Detection : A Machine Learning Perspective Fundamentals of Research in Criminology and Criminal Justice Essentials of Sociology Forestry A-Z Theater Tips and Strategies for Jury Trials Classical Tragedy Greek and Roman 8 Plays in Authoritative Modern Translations Accompanied by Critical Essays Guide to the Code of Ethics for Nurses C4.5 Programs for Machine Learning Computer Organization and Design: The Hardware/Software Interface: Student Edition Taking on the Big Boys Or Why Feminism Is Good for Families, Business, and the Nation African Diaspora in the Mediterranean Lands of Islam Positive Impact Forestry A Sustainability Approach to Managing Woodlands Time for bed: The secret of shadows Skin Talking About Sex, Class & Literature Intake Aerodynamics (Aiaa Education Series) Linguistics of American Sign Language, 5th Ed.: An Introduction Maya Diaspora Guatemalan Roots, New American Lives United States History Preparing for the Advanced Placement Examination Sacred East: An Illustrated Guide to Buddhism, Hinduism, Confucianism, Taoism and Shinto Compressor Aerodynamics Islam and the Muslim Community Buddhism: The Path to NIRVana (Religious Traditions of the World) Urban Forestry: Planning and Managing Urban Greenspaces Classics of Criminology, 4th Edition Colonize This! Young Women of Color on Today's Feminism Full Frontal Feminism A Young Womans Guide to Why Feminism Matters The History of U.S. Feminism Feminism and Pop Culture: Seal Studies Essentials of Pathophysiology: Concepts of Altered Health States Walking with God in the Classroom: Christian Approaches to Teaching and Learning Clinical Management of Sex Addiction Microprocessors From Assembly Language To C Using The Pic18fxx2 Modern Actuarial Theory and Practice Statistical and Probabilistic Methods in Actuarial Science Applied Game Theory and Strategic Behavior Introduction to Latin Aerodynamic Design of Transport Aircraft The New Asian Hemisphere: The Irresistible Shift of Global Power to the East Who Is My Enemy?: Questions American Christians Must Face about Islam--and Themselves Radin, Rothchild, Reese and Silverman's Internet Commerce: The Emerging Legal Framework, 2d (University Casebook Series) (English and English Edition) Study Guide and Solutions Manual for Exam P of the Society of Actuaries (2nd Edition) Alif Baa, Third Edition: Alif Baa: Introduction to Arabic Letters and Sounds (Al-Kitaab Arabic Language Program) (Arabic Edition) Python Programming : An Introduction to Computer Science The Art of Buddhism: An Introduction to Its History and Meaning Introduction to the Thermodynamics of Materials Inside The Machine An Illustrated Introduction to Microprocessors and Computer Architecture Principles and Practice of Sex Therapy Feminism Seduced: How Global Elites Use Women's Labor and Ideas to Exploit the World Securities Regulation: Cases and Analysis (University Casebook Series) Christian Morality (student Book) : Our Response to God's Love Judaism and the Gentiles Readings in Ancient Greek Philosophy : From Thales to Aristotle Atlas of Anatomy Mahamudra for the Modern World: An Unprecedented Training Course in the Pinnacle Teachings of Tibetan Buddhism Latin American Identity and the African Diaspora : Ethnogenesis in Context Evolution, Third Edition ACC Atlas of Pathophysiology Pathophysiology : A Clinical Approach Clinical Anesthesia Procedures of the Massachusetts General Hospital: Department of Anesthesia, Critical Care and Pain Medicine, Massachusetts General Hospital, Harvard Medical School Burton's Microbiology for the Health Sciences, North American Edition Radiation Oncology: Management Decisions Handbook Of Research On Machine Learning Applications and Trends: Algorithms, Methods and Techniques (2 Volumes) Principles of Pharmacology Marks' Basic Medical Biochemistry (Lieberman, Marks's Basic Medical Biochemistry) Pharmacology for Health Professionals Pocket Medicine: The Massachusetts General Hospital Handbook of Internal Medicine (Pocket Notebook Series) Political Science Research Methods Encyclopedia of Hinduism On Diaspora: Christianity, Religion, and Secularity Medical Physiology: Principles for Clinical Medicine, North American Edition (MEDICAL PHYSIOLOGY (RHOADES)) Exploring Anatomy & Physiology in the Laboratory The Algorithm Design Manual Compressible Aerodynamics Introducing Hinduism: A Graphic Guide (Introducing...) Essays on Game Theory Connectionist Natural Language Processing: Readings from Connection Science Hinduism: Frequently Asked Questions Guide to Getting It On! A Book About the Wonders of Sex Introduction to Probability, 2nd Edition Molecular Thermodynamics Special Relativity A Modern Approach to Quantum Mechanics Developmentally Appropriate Practice in Early Childhood Programs Serving Children from Birth Through Age 8 Africans in the Americas A History of Black Diaspora Diction for Singers Cross-Border Commerce Evolution: Making Sense of Life Evolution: Making Sense of Life The Tools & Techniques of Life Insurance Planning, 5th Edition Green Processes : Green Synthesis Natural Language Processing And Information Systems 10th International Conference on Applicatioins of Natural Language to Information Systems, Nldb 2005, Alicante, Spain, June 15-17, Proceedings Natural Language Processing-IJCNLP 2005 Second International Joint Conference, Jeju Island, Korea, October 11-13, 2005, Proceedings Critical Phenomena in Natural Sciences Chaos, Fractals, Selforganization And Disorder Concepts And Tools Natural Language Processing And Information Systems 11th International Conference on Applications of Natural Language to Information Systems, Nldb 2006, Klagenfurt, Austria, May 31-june 2, 2006, Proceed Advances in Natural Language Processing 5th International Conference on NLP, FinTAL 2006 Turku, Finland, August 23-25, 2006 Proceedings Aerodynamic Drag Reduction Technologies: Proceedings of the CEAS/DragNet European Drag Reduction Conference, 19-21 June 2000, Potsdam, Germany (Notes ... Fluid Mechanics and Multidisciplinary Design) Advances in Natural Language Processing Third International Conference, Portal 2002, Faro, Portugal, June 23-26, 2002 Proceedings Natural Language Processing Evaluating Natural Language Processing Systems An Analysis and Review Natural Language Processing - Nlp 2000 Second International Conference Patras, Greece, June 2-4, 2000 Proceedings Computer Network Security: Theory and Practice Modern Actuarial Risk Theory: Using R Aerodynamic Drag Reduction Technologies: Proceedings of the CEAS/DragNet European Drag Reduction Conference, 19-21 June 2000, Potsdam, Germany (Notes on ... Mechanics and Multidisciplinary Design) Optimization and Chaos (Studies in Economic Theory) Chaos in Structural Mechanics (Understanding Complex Systems) Landscape Ecology in Forest Management and Conservation : Challenges and Solutions for Global Change Total Artwork in Expressionism : Art, Film, Literature, Theater, Dance, and Architecture 1905-1925 Theater of Manners: Photographs by Tina Barney - Tina Barney Mathematical Foundations of Computer Science An Introduction to Hinduism Tribute to Hinduism: Thoughts and Wisdom Spanning Continents and Time About India an Relativity and Field Theory : Introduction to Special Relativity and to Classical and Quantum Field Theory Mediating the Divine Prophecy and Revelation in the Dead Sea Scrolls and Second Temple Judaism A Wandering Galilean: Essays in Honour of Sean Freyne (Supplements to the Journal for the Study of Judaism) Constructing Irregular Theology: Bamboo and Minjung in East Asian Perspective (Studies in Systematic Theology) The New Testament and Rabbinic Literature (Supplements to the Journal for the Study of Judaism) Esoteric Buddhism and the Tantras in East Asia (Handbook of Oriental Studies) Aerodynamics of Large Bridges Proceedings of the First International Symposium, Copenhagen, Denmark, 19-21 February 1992 Judaism and the Origins of Christianity South-East Asian Ceramics: Thai, Vietnamese, and Khmer From the Collection of the Art Gallery of South Australia, Adelaide (Asia Collection) Problems and Solutions on Quantum Mechanics Major American Universities Ph. D. Qualifying Questions and Solutions Introduction to Compiler Construction in a Java World Data Structures and Algorithms in Java Game Theory: A Nontechnical Introduction to the Analysis of Strategy Society of Actuaries' Textbook on Life Contingencies - Chester Wallace Jordan - Paperback - 2ND ================================================ FILE: nlp_class/article_spinner.py ================================================ # Very basic article spinner for NLP class, which can be found at: # https://deeplearningcourses.com/c/data-science-natural-language-processing-in-python # https://www.udemy.com/data-science-natural-language-processing-in-python # Author: http://lazyprogrammer.me # A very bad article spinner using trigrams. from __future__ import print_function, division from future.utils import iteritems from builtins import range # Note: you may need to update your version of future # sudo pip install -U future import nltk import random import numpy as np from bs4 import BeautifulSoup # load the reviews # data courtesy of http://www.cs.jhu.edu/~mdredze/datasets/sentiment/index2.html positive_reviews = BeautifulSoup(open('electronics/positive.review').read()) positive_reviews = positive_reviews.findAll('review_text') # extract trigrams and insert into dictionary # (w1, w3) is the key, [ w2 ] are the values trigrams = {} for review in positive_reviews: s = review.text.lower() tokens = nltk.tokenize.word_tokenize(s) for i in range(len(tokens) - 2): k = (tokens[i], tokens[i+2]) if k not in trigrams: trigrams[k] = [] trigrams[k].append(tokens[i+1]) # turn each array of middle-words into a probability vector trigram_probabilities = {} for k, words in iteritems(trigrams): # create a dictionary of word -> count if len(set(words)) > 1: # only do this when there are different possibilities for a middle word d = {} n = 0 for w in words: if w not in d: d[w] = 0 d[w] += 1 n += 1 for w, c in iteritems(d): d[w] = float(c) / n trigram_probabilities[k] = d def random_sample(d): # choose a random sample from dictionary where values are the probabilities r = random.random() cumulative = 0 for w, p in iteritems(d): cumulative += p if r < cumulative: return w def test_spinner(): review = random.choice(positive_reviews) s = review.text.lower() print("Original:", s) tokens = nltk.tokenize.word_tokenize(s) for i in range(len(tokens) - 2): if random.random() < 0.2: # 20% chance of replacement k = (tokens[i], tokens[i+2]) if k in trigram_probabilities: w = random_sample(trigram_probabilities[k]) tokens[i+1] = w print("Spun:") print(" ".join(tokens).replace(" .", ".").replace(" '", "'").replace(" ,", ",").replace("$ ", "$").replace(" !", "!")) if __name__ == '__main__': test_spinner() ================================================ FILE: nlp_class/cipher_placeholder.py ================================================ # https://deeplearningcourses.com/c/data-science-natural-language-processing-in-python # https://www.udemy.com/data-science-natural-language-processing-in-python # Author: http://lazyprogrammer.me # Get the data from here: # https://lazyprogrammer.me/course_files/moby_dick.txt ### encode a message # this is a random excerpt from Project Gutenberg's # The Adventures of Sherlock Holmes, by Arthur Conan Doyle # https://www.gutenberg.org/ebooks/1661 original_message = '''I then lounged down the street and found, as I expected, that there was a mews in a lane which runs down by one wall of the garden. I lent the ostlers a hand in rubbing down their horses, and received in exchange twopence, a glass of half-and-half, two fills of shag tobacco, and as much information as I could desire about Miss Adler, to say nothing of half a dozen other people in the neighbourhood in whom I was not in the least interested, but whose biographies I was compelled to listen to. ''' ================================================ FILE: nlp_class/electronics/negative.review ================================================ B00005UKBG:bad:j._brodeur_"disgusted_consumer" B00005UKBG Atlantic 1316 CD Storage Case (110-Capacity, Wave): Electronics electronics 15 of 16 2.0 bad May 4, 2005 J. Brodeur "disgusted consumer" cons tips extremely easy on carpet and if you have a lot of cds stacked at the top poorly designed, it is a vertical cd rack that doesnt have individual slots for cds, so if you want a cd from the bottom of a stack you have basically pull the whole stack to get to it putting it together was a pain, the one i bought i had to break a piece of metal just to fit it in its guide holes. again..poorly designed... doesnt even fit cds that well, there are gaps, and the cd casses are loose fitting pros .......... i guess it can hold a lot of cds.... B00005UKBG:save_your_money!:heidi_myers B00005UKBG Atlantic 1316 CD Storage Case (110-Capacity, Wave): Electronics electronics 4 of 4 1.0 Save your money! March 18, 2004 Heidi Myers Tampa, FL It's a nice look, but it tips over very easily. It is not steady on a rug surface dispite what the picture on the box shows. My advice is if you need a CD rack that holds a lot of CD's? Save your money and invest in something nicer and more sturdy B0009O5MWI:horrible_dvd_player:m._martinez B0009O5MWI Philips HTS3400D/37 Home Theater System with DVD Player: Electronics electronics 1 of 1 1.0 Horrible DVD player June 23, 2006 M. Martinez I have bought and returned three of these units now. Each one has been defective, and finally I just gave up on returning the system. The DVD player constantly gives "Bad Disc" errors and skips if there is even the slightest smudge on a disc. The sound quality is very nice for the price, but since the player doesn't work, it's essentially useless. This is a complete rip-off at any price point B000067VBM:cases_break_instantly!:f._mcpartland_"fmcp" B000067VBM 50-pack Slim CD/DVD Jewel Cases (5mm) Clear: Electronics electronics 12 of 13 1.0 Cases break instantly! October 30, 2005 F. MCPARTLAND "FMCP" Virginia I knew these were inexpensive CD cases, but I can't even open one without it breaking into two pieces.. B000093IRC:these_dvd-rs_suck:suzette_truesdell B000093IRC Memorex 4.7GB 4x DVD+R Media (25-Pack Spindle): Electronics electronics 2 of 2 2.0 These DVD-Rs suck February 11, 2006 Suzette Truesdell Key Largo, FL I used a 25 pack of these doing DVD backups, and the last 5 or so failed. I thought it was my software, so I got new software. Guess what? My first disc out of the new package of 25 that I bought failed, too. It's not my burner (as another reviewer suggested, implying that people should learn to read), as it's brand new and doesn't require the firmware upgrade they mention. They just suck and have a high failure rate. So the consensus seems to be that TDK or Sony are best. I'm buying some now and save myself the frustration B000093IRC:waste_of_money:c._ambrow_"renegade" B000093IRC Memorex 4.7GB 4x DVD+R Media (25-Pack Spindle): Electronics electronics 1 of 1 1.0 Waste Of Money January 21, 2006 C. Ambrow "Renegade" Tennessee I bought these discs at CompUSA because I needed a few before I got the ones I ordered online. Well, I just wated a good 25 bucks because out of 5 discs, I got one that burned good. Not much bang for the buck. I have burned many discs but never Memorex, usually Verbatim or Ridata or MAM. Very disgruntled with these discs making coasters. Maybe my burners don't like them but whatever the case, I won't buy them ever again. I thought Memorex made good products B000093IRC:good_when_it_works:stefanie_clay_"stef1223" B000093IRC Memorex 4.7GB 4x DVD+R Media (25-Pack Spindle): Electronics electronics 1 of 1 2.0 good when it works November 3, 2005 Stefanie Clay "stef1223" Morristown, NJ The DVDs I burned successfully showed the movies in excellent quality. The only problem is that for every 3 good burns I get one bad one. I'm using the Plextor DVD burner (love it!!), but I'm going to try my luck with a different DVD brand. The failure rate for Memorex is unacceptable. It's less the cost that bothers me, but more the time wasted on burning coasters B000093IRC:is_it_live_or_is_it_memorex?:k._fournier B000093IRC Memorex 4.7GB 4x DVD+R Media (25-Pack Spindle): Electronics electronics 2 of 2 1.0 is it live or is it memorex? January 16, 2005 K. Fournier Sitka AK I hope it's live because if it's memorex, it's crap! that's my latest opinion after using this product. I have a LiteOn SOHW-802S and it hates Memorex. I rarely get a decent burn. More often than not I'll discover while watching my movies just how horrid the quality it. My movies will skip, stutter, or stop all together. So disappointing! Unfortunately I found out too late that Memorex uses CMC media, which only has a 0-50% success rate! [... B00008RW8B:dead_on_arrival...:william_b._zimmerly_"a_nobody" B00008RW8B Lexar Media USB 2.0 6-in-1 High Speed Reader: Electronics electronics 4 of 4 1.0 Dead On Arrival... April 28, 2006 William B. Zimmerly "A Nobody" St. Louis, Missouri, USA While I read the reviews on this machine, it is clear to me that Lexar has some serious quality-control problems. For some people it worked, for others it was a miserable failure. I am in the latter group. Sigh. Mine was dead on arrival. I tried the device with *BOTH* of my Windows-XP machines and in both cases, it was unrecognized. Lexar tech support subsequently proved to be a contradiction in terms as they would not return my email requests for help B0007P4G76:beware,_re-_bate_not_honored!:roving_reviewer B0007P4G76 Xtreme TB264DKO 264-Disc CD/DVD Case: Electronics electronics 1.0 beware, re- bate not honored! July 24, 2006 Roving Reviewer i kept copies i knew the cash back offer sounded too good to be true...and sure enough they rejected my upcs (i kept copies) only have hounding them and contacting the better business bureau did they say 'whoops a mistake' i have a fleeting suspicion this was intentional B0007P4G76:no_cash_back_here!:mr._b_"1st_gradeteacher" B0007P4G76 Xtreme TB264DKO 264-Disc CD/DVD Case: Electronics electronics 3 of 3 1.0 No Cash Back Here! May 15, 2006 Mr. B "1st GradeTeacher" Washington, D.C. Please don't expect to get the cash back from this purchase as promised! To date, I've been denied twice. The second time they said the U P C number was invalid. Only, it's the original U P C barcode! I was meticulous filing the paperwork, yet they state, "All required products were not submitted." Meanwhile, I have phoned AMAZ0N to lodge a formal complaint. The product itself is average. I've used better and worse. That said, it's definitely not worth the full asking price B0007P4G76:tinstaafl:j._davis_"jimidee" B0007P4G76 Xtreme TB264DKO 264-Disc CD/DVD Case: Electronics electronics 6 of 10 2.0 TINSTAAFL March 23, 2006 J. Davis "jimidee" Columbia, SC USA/Tokyo, Japan No free lunch & you get what you pay for...is that the verdict on this product? Well, the poor rating given by those who have purchased this product has discouraged me from buying it. I need disc binders and the Case Logic brand, while being the original, is pricey. Low cost alternatives are needed, but not at the expense of quality and TCO (total cost of ownership). But the flap about poor customer service (rebates) and poor quality (zippers and sleeve binding) is enough to give me pause..... So, if someone from Xtreme's management is paying attention....fix it or be content to lose business. Price isn't everything to everyone in the markt for your product.. B0007P4G76:poor_quality_-_avoid:william_barham B0007P4G76 Xtreme TB264DKO 264-Disc CD/DVD Case: Electronics electronics 9 of 9 1.0 Poor quality - avoid February 15, 2006 William Barham Los Gatos, CA I have a collection of over 1500 disks so I have bought many cd/dvd cases over the years and this brand is the worst quality on any that I have purchased. I would avoid this brand. [... B00026KJ26:worst_choice_of_my_life:yeppy_fan_"alan" B00026KJ26 Lexar Media 32X 1 GB Secure Digital Card (SD1GB-32-231): Electronics electronics 10 of 21 1.0 worst choice of my life March 6, 2005 yeppy Fan "alan" NY Bought this a month ago for use with my DX4330 kodak 3MP digital camera. It worked for 2 days.After that, everytime I on the camera, it wanted me to reformat the card,WTH is that? Now I can't use it at all.... I'm always so confidence with my previous purchases from Amazon.One mistake I made,I threw away the shipping and product packages once I tested out the card, thought It worked and It would be OK.I can no longer return it now. Needless to say,I'm too over confident with LEXAR's products. Buyers beware... B00006RZ1G:well_built,_poorly_suited.:cyber_kid B00006RZ1G Saitek P880 Dual Analog PC Game Pad: Electronics electronics 1 of 5 2.0 Well built, poorly suited. November 5, 2005 cyber kid I purchased this game pad due to good reviews. Found it online for $15 with free shipping so had to try myself. Its true its built well and pretty comfortable in the hand. The programming software is alright as well, not as nice as the Nostromo n50/52 software for example. But what i didnt like about it was much more relavant. Firstly there is a toggle lock shift button. This button is easy to press by accident and since it is not a momentary button you have to go back and press it off agian. Interupting game play. Also buttons 7 and 8 are not paddles but rather thumb, and quite far from normal thumb use. I had a hard time using those buttons quickly. Also the toggle and digital buttons cant be mapped for other uses so your limited to 8 total buttons rather than 10. And finally, for some reason there was no way to invoke fight in NHL06, i couldnt live with that so i had to ship it back, and ill soon go with the logitech B00009YUPS:i_would_never_recommend_this_product_to_anyone:rono_wubker B00009YUPS ADS Tech DVD Express 2.0 (USBAV-701): Electronics electronics 0 of 2 1.0 I Would Never Recommend this Product to Anyone August 19, 2006 Rono Wubker California I've only got this thing to work for about 3 hours and that is not in a row. I've spent hours with this product on several machines and I can now say the hardware sucks. B00009YUPS:freezes_and_tech_help_not_good:jud B00009YUPS ADS Tech DVD Express 2.0 (USBAV-701): Electronics electronics 2 of 2 1.0 Freezes and tech help not good June 21, 2006 JUD Indiana, Richmond I purchased dvd express and it never worked. I spent endless time with tech support. The old story about, "It must be your computer." did not fly either, my machine is a media type and it far exceeds the system requirements advertised by ADS. I exchanged the item and it was supposedly checked out before I got it. Same problems. Tech support told me I was the only person having trouble with this product. They need to check out a few websites that review products there are hundreds of bad reviews very few good ones. My only mistake was not reading them before I wasted my time and money. ADS also told me it would not work with Ulead's Movie Factory 3, some of the software it came bundled with, but that was Uleads problem. I should use Cap Wiz ( Their program ) DUH!!! Guess what, it did not work with their program either. Ulead said they had several complaints with ADS's product. Their final solution hold on to the product and maybe they will have a new version of cap wiz and that might work. Save yourself time money and aggravation buy another product! P.S. Since ADS doesn't consider the product defective they will not refund your money or allow you trade it in for an upgrade. I don't think they want a product like that either. The only reason I gave one star is.....it was packed well. JU B0000DK3I4:kingston_2_gb_sd_memory_card:bernard_kliks_"printmaker" B0000DK3I4 Kingston 512 MB Secure Digital Card (SD/512): Electronics electronics 1.0 Kingston 2 GB SD Memory Card November 9, 2006 Bernard Kliks "printmaker" Portland, OR USA This SD would not work in my Nikon Coolpix S6 camera (but the Fuji and Sandisk product did B00006JPV8:sad_compared_to_older_models:james_c._titus B00006JPV8 NOVI WI-4C 4-Channel FM Wireless Intercom: Electronics electronics 1 of 1 1.0 Sad compared to older Models October 22, 2006 James C. Titus Just purchased 3 units , thought they would work as well as the Novi units they were replacing however they have absolutely no range . My original Novi 2 channel units worked well from a distance of approx 110 ft from house to barn , these only work in the same room... I am attempting to return these currently. B0007N5LPE:look_for_other_alternatives...:barbara_a._blackburn_"jollyrb" B0007N5LPE Additional Units for Reporter� Wireless Portable Intercom: Electronics electronics 1 of 1 1.0 Look for other alternatives... October 29, 2006 Barbara A. Blackburn "JollyRB" Chicago I bought four of these and returned them immediately. Two were dead out of the box. A third had horrible sound. After searching the internet and reading a variety of reviews for similar products I finally settled on the 900 Megahertz Wireless Intercom from Radio Shack. (43-3102) Beautiful sound. Well made and about half the price of the Reporter. Pretty much the same featues but it only claims a range of 300 feet as opposed to 1000 feet. So if you need more than 300 feet for range it's something to consider. Better warranty than the Reporter as well and for 8 bucks you can extend that warrarnty for another year. Anyway I couldn't be happier with the RS intercom. I just can't recommend the Reporters given that 3 out of 4 units that arrived were faulty B000092WZ1:worked_great_at_first......:scott_a._urbaniak B000092WZ1 Monster Cable Ultra-High Capacity 2100mAh AA Rechargeable Powercells (4 pack): Electronics electronics 1 of 1 2.0 worked great at first...... March 10, 2006 Scott A. Urbaniak milwaukee, WI When I purchased these batteries, I was very pleased, but that wore off after a couple of months. I don't use my camera all that often, but when I do, I expect ther batteries to have some charge. I recharge them per instructions, and they do not hold a charge any longer.I know Monster makes good products, but I am a little disappointed in this one B0006ZSW1S:kodak_card_reader:digial_rebel_"card_reader" B0006ZSW1S Kodak 8 - in - 1 Multi-card Reader, KRW8IN1SCS: Electronics electronics 1.0 KODAK CARD READER November 2, 2006 digial REBEL "card reader" ny I got this from JnR . This unit powers up but the computer fails to detect it. I tried this on multiple computers. MAy be this was just a lemon. I will exchange it to a better brand B00004Z5QI:not_suitable_for_heavy_books:conal_ho B00004Z5QI Fellowes Book Lift Copyholder - For Use with Textbooks and Large Manuals: Electronics electronics 1 of 1 1.0 Not suitable for heavy books October 10, 2006 Conal Ho This bookstand, despite the description, is not suitable for heavy books. If you put heavy books on this, the stand that props up the whole unit is likely to snap off. B00004Z5QI:flimsy_product.:r._al_sarraj_"anyothermonday" B00004Z5QI Fellowes Book Lift Copyholder - For Use with Textbooks and Large Manuals: Electronics electronics 1 of 1 2.0 Flimsy product. August 25, 2006 R. Al Sarraj "anyothermonday" Oberlin, OH Its made of flimsy plastic, and all the parts snap on. I'm afraid to put a heavy book on there, because I'm sure the parts will just snap off B00004Z5QI:total_rip-off:m._warren B00004Z5QI Fellowes Book Lift Copyholder - For Use with Textbooks and Large Manuals: Electronics electronics 32 of 33 1.0 Total rip-off August 8, 2005 M. Warren USA In the ten minutes since I've had it out of the box two pieces have fallen off. More importantly, It can't handle large manuals as advertised. (The reason I purchased this particular book holder) My 1000 page manual only fits if you happen to only want to read the middle chapter. Based on that I estimate that this is a totally worthless product to anyone needing to go through a manual or training book more than five or six hundred pages. If you don't anticipate needing it for a book that big then just glue the rubber feet on, keep an eye on the page retainers (these are the parts that fell off) and you should be ok. As for me, I'm off to read Amazon's return policy and see if I can get rid of this useless hunk of plastic B0007XH72E:sent_it_back:s._anderson B0007XH72E JVC FSG5 180-Watt Micro Audio System with 5-Disc CD Changer and Digital AM/FM Tuner: Electronics electronics 16 of 20 1.0 Sent it back October 2, 2005 S. Anderson New Hampshire USA I had to send this item back because it stopped playing cds. The sound quality was good, but the dependability of this item is questionable. B0000CD08M:poor_customer_service:j._l._knepp B0000CD08M SanDisk SDCFH-512-901 512 MB Ultra II CompactFlash Card (Retail Package): Electronics electronics 0 of 3 1.0 poor customer service August 10, 2006 J. L. Knepp Somerset, PA United States I purchased this memory card for a camera I was also purchasing. It was listed as an accessory to the camera on the same page. When I received the card first and then the camera, I was disappointed that the card was the wrong shape and size for the camera and would not fit. Because I had opened the plastic package to the card, I was unable to return it. In fact, when I emailed the company who sent it, I never even received a response. B000CO77FA:told_by_company_that_it_would_take_up_to_four_weeks!:jason_e._luba B000CO77FA 2-Year Replacement Plan for Electronics Products $50 to $74.99: Electronics electronics 2 of 2 1.0 Told by company that it would take up to four weeks! November 1, 2006 Jason E. Luba I am the type of person that ALWAYS buys the extra warranty on whatever I purchase. However, I started reading the reviews on this company and many people reported that it was four weeks and counting and they still hadn't received their refund check. I was astonished. I contacted N.E.W. myself and asked them about this. With no shame or embarrassment on the part of the customer service reps, I was informed that if I did everything by email, it would take AT LEAST 15 business days (that's three weeks!) to receive my refund check AFTER I sent them the warrantied item. If I had them send me a pre-paid label for the defective item instead of using my own printer, it would take a week for me to receive and at least a week for them to receive the covered item. In other words, it would take no less than four weeks to receive the replacement check and possibly up to eight weeks! I cancelled the contract immediately. It is just not worth it when you really do the math to purchase this contract. I would recommend buying a product from a company that first makes a quality product and then back it up with a good warranty and gives good customer service such as Grado, Sennheiser or Koss. But stay away from these people; that's my feeling and my advice. B0007Y79AI:i've_finally_learned_a_very_expensive_lesson:jane_cox_"linksys_fan" B0007Y79AI Apple 2 GB iPod Nano Black: Electronics electronics 0 of 1 1.0 I've finally learned a VERY expensive lesson November 15, 2006 Jane Cox "linksys fan" Boca Raton, FL DON'T BUY THIS PRODUCT. There, simple advice I wish someone had given me before I bought two of these. With the first one the battery died 13 months after purchase. Since it was 30 days outside the warrantly, apple support told me "sorry, tough luck." I made the mistake of buying another one figuring I just got a bad one and there was no way I could have the same problem again. WRONG! Second ipod just died (same battery problem) - this one died within the warranty period but becuase it took me two weeks to get into the ipod store to see what was wrong and, of course, by the time I got in I was past the 12 month warranty period (who keeps track of the purchase date? I sure didn't). Other than the fact that your substnatial investment will be worthless in about a year - it is a fantastic product. I'm just sorry that it didn't last (twice!) cause otherwise I'd be a fan B0002MSTW2:had_pix_loss_w/lexar_cards:frederick_carr_"flrhcarr" B0002MSTW2 Lexar Media 1 GB 80x Pro Series Compact Flash Card (CF1GB-80-380): Electronics electronics 7 of 25 1.0 Had pix loss w/Lexar cards March 24, 2006 Frederick Carr "flrhcarr" Kent, WA About three years ago, maybe four, I bought two Lexar CFII cards. One never worked, the other worked, but lost all data. I wrote to Lexar, that I had two bad cards, they sent me one new card of the same size. I gave that to my girlfriend & told her to only use it on pix she didn't care about losing. I still have my card, in a ziplock. None of the file removal programs will get the images off, & I've used all of them, & had their (file removal) tech help give up. In this day & age of "just make the item" I am upset. But you take your chances. Do you want the only picture of your great grand-mother lost because you used a Lexar? I wouldn't, I use an actual sandisk card, myself. If they ever (Lexar) made it right, I may have written a better review, but they haven't. So that tells me that they don't care. How important are your pictures to you? Frederic B00006HYUC:back-ups_es_drops_power_after_power_is_restored!:owen_ward B00006HYUC APC BE350U 350VA Back-ups Es: Electronics electronics 8 of 11 1.0 Back-UPS ES drops power AFTER power is restored! November 17, 2005 Owen Ward Most people buy a UPS, plug it in and never test it to make sure it works. I tested this device a number of times to make sure the software would at least shutdown the computer after an outage. I set it to shutdown Windows after 1 minute. Only the computer and a few small phone accessories are attached to it. After power was cut, it held the computer up and allowed it to shut down. Then I restored power to the UPS. AFter about 30 seconds, it beeped, clicked, and temporarily DROPPED power to the computer while it was rebooting! So when it switches back from battery power it causes power to be interrupted. That is unacceptable. A UPS should never drop power to the attached devices after power is restored to it. B00006HYUC:beware!:a._bernay-roman B00006HYUC APC BE350U 350VA Back-ups Es: Electronics electronics 49 of 54 2.0 Beware! November 23, 2003 A. BERNAY-ROMAN Jupiter, Florida USA If you have a cable modem for broadband connection to the internet, your unit will not be covered by the APS warranty on this device. Lightning hit near our house and the motherboard plus router got fried. The cable modem stayed intact and we filed a claim with APS. They denied it saying backend surges through the cable may have caused the damage (even though the modem wasn't hurt?) B000A5TBM8:unresolved_problem:leland_brun_"penguin_pictures" B000A5TBM8 Sony DRU-810A Internal Double/Dual Layer and Dual Format DVD Burner: Electronics electronics 2.0 Unresolved problem November 10, 2006 Leland Brun "Penguin Pictures" Honeoye Falls, NY United States I am still awaiting resolution of a problem I have with these drives. In writing DVDs I get verification errors. This proboem arises if the drives are used in an external firewire enclosure. The drive works fine if internal in your computer attached to the IDE bus, but there is an issue if attached to your computer by firewire B000A5TBM8:wont_work_with_itunes_for_windows_:clifton_lowrey_"clifton" B000A5TBM8 Sony DRU-810A Internal Double/Dual Layer and Dual Format DVD Burner: Electronics electronics 0 of 5 1.0 wont work with itunes for windows September 25, 2006 Clifton Lowrey "clifton" oregon also import a cd , money down the drai B000A5TBM8:worked_ok_for_about_230_days,_then_stopped.:paul_curtis B000A5TBM8 Sony DRU-810A Internal Double/Dual Layer and Dual Format DVD Burner: Electronics electronics 4 of 6 2.0 Worked OK for about 230 days, then stopped. August 23, 2006 Paul Curtis Jersey City, NJ United States The drive arrived at the end of December, was quick to get up and running, and worked fine until yesterday. Then it got the machine equivalent of "lockjaw" and I've been unable to get the tray to release. So, it's a good drive while it operates, but I'll probably make sure I pay for at least a 1-year warranty on my next purchase. As far as my recommendation goes, it depends very much on how inconvenient it is when one's drive fails. Yesterday, I just went to a backup burner and kept working; if I had NEEDED to get the job done, and I had not previously developed a strategy of always keeping a backup device handy, I'd have been in a seething, hair-pulling rage. Computer hardware is never 100% reliable, but is it worth the risk to purchase a device that is known to fail in less than a year B0000B3AKR:garbage-stopped_working_after_2_months_of_extremely_gentle_use:optimist_"optimist2" B0000B3AKR Viking USB00512L2 512 MB USB 2.0 Portable Mini Flash Memory Device: Electronics electronics 0 of 1 1.0 Garbage-stopped working after 2 months of extremely gentle use May 10, 2006 optimist "optimist2" Houston, TX United States I never even traveled with it. It just stopped working completely making me lose data. NEVER AGAIN I'll buy anything from this company. This drive is a piece of rubbish! B00008EM7V:dont_buy_not_worth_a_cent:a._cunningham B00008EM7V Memorex Optifix Motorized CD/DVD Cleaner and Scratch Repair Kit: Electronics electronics 3 of 3 1.0 dont buy not worth a cent August 12, 2006 A. Cunningham got it at walmart can't even remove a scuff. i give it -100 good thing i could return it B00008EM7U:sorry_-_didn't_do_the_job_for_me:caris_"caris" B00008EM7U Memorex CD/DVD-Player Laser-Lens Cleaner: Electronics electronics 1 of 4 2.0 sorry - didn't do the job for me July 8, 2006 caris "caris" Los Angeles, CA i've given it 2 stars instead of 0 because after i used this CD, the sound from my system did seem to be a little better (the CD's were not skipping as much). but the bottom line is it didn't fix the problem as the CDs are still skipping noticeably, although not as bad as before. ... not sure if this has anything to do with the fact that my set has a 6-disk CD changer B0000AKVHF:this_junk_died_and_erased_100_images:poet/naturalist B0000AKVHF SanDisk SDDR-88-A15 8-in-1 USB 2.0 Hi-speed Reader (Retail Package): Electronics electronics 0 of 7 1.0 This junk died and erased 100 images August 5, 2005 Poet/Naturalist MN USA The is perhaps the lease durable item I have purchased in 40 years. It lights up just fine, and it is a reassuring led gold, but it refuses to do anything with my xd card. It worked just fine for 3-4 days, then erased about 100 photos, all of them irreplaceable. Cheap yes, but Cheap Junk. B000AY0HTU:doesn't_pass_the_test_of_time:i._oconnor_"philosopher" B000AY0HTU Logitech G15 Gaming Keyboard: Electronics electronics 2 of 5 1.0 Doesn't pass the test of time October 3, 2006 I. OConnor "Philosopher" USA Great looking keyboard. Unfortunately all it takes is one minor spill and the keyboard is destroyed. That includes cleaning. And don't think you are ever going to take it apart and dry it. The keyboard self destructs after you have the, count them, 10s and 10s of screws. I called their customer support. They weren't like DELL, nobody is that bad, but their resolution was to buy a new one from them for 50% off their retail price. shipping was extra. So you save maybe $10 off street prices. All-in-all they are no longer the good company they were in the past. They need competition. So I'm pulling out my old logitech from retirement. Too bad they don't make those old keyboards anylonger B0009V9I80:broken_within_hours._junk!:chris_b._wallace_"cbw" B0009V9I80 Sony DAV-FX100W Wireless Home Theater Dream System: Electronics electronics 2 of 5 1.0 Broken within hours. JUNK! June 27, 2006 Chris B. Wallace "CBW" Atlanta, GA I ordered this item after reading the positive reviews here. BIG MISTAKE. Upon setting everything up, it all worked great for about two hours... then the dreaded "UNPLUG/PROTECT" screen came up. Now it won't turn on but for a few moments before returning to protect mode. (and no, it's not a short in the wires or overheating... it protects even when stone cold, and with no speakers plugged in) I called sony and they say it is a short in the box. So now my two options are to unhook everything, repack EXACTLY the way it came to me and reship back to the online store I bought it from (with enormous hastle and expense) or take the receiver in to a sony authorized service center (which happens to be across town, and only open monday-friday, 9-5pm. So much for being convenient). This thing is brand new and already needs repairs!! On top of that, even out of the box, NONE of the video inputs worked. Audio was fine, but video was dead as a doornail, right from the start. And even on top of the fact that this machine CAME broken... it sucks even when it works right! The DVDs take forever to load, and it comes with HDMI out, but NO HDMI IN! So if you're an HDMI user, I hope you have multiple HDMI inputs on your television... one for your cable box, one for this crappy system. This is a piece of junk. For the love of god, don't waste your money B0002ZAIM8:get_a_2g!:videogamer B0002ZAIM8 Apple 1 GB iPod Shuffle: Electronics electronics 1.0 Get a 2G! November 18, 2006 videogamer Lockport,NY Why would you want this item? Amazon is charging $50 MORE on this item than the 2nd Generation Shuffle! And, according to what I have read, THIS Shuffle isn't very derable. It doesn't even last a year! I don't know about you, but I'LL get a 2nd Generation Shuffle B0002ZAIM8:died_suddenly..._repair_impractical,_lost_my_stuff:mike_warot_"--mike--" B0002ZAIM8 Apple 1 GB iPod Shuffle: Electronics electronics 1 of 3 1.0 Died suddenly... repair impractical, lost my stuff October 27, 2006 Mike Warot "--Mike--" Hammond, Indiana One day it just stopped working. I got the dreaded "orange and green flashing lights of death"... the contents of the File space were un-recoverable... and I ended up just pitching it after extensive attempts to revive it. Apparently this is yet another one of the bad products that Apple likes to keep hush-hush B0002ZAIM8:unreliable.__cute_design.__bad_engineering.__poor_quality_control:d._austin B0002ZAIM8 Apple 1 GB iPod Shuffle: Electronics electronics 5 of 7 1.0 Unreliable. Cute Design. Bad Engineering. Poor Quality Control September 18, 2006 D. Austin DC Area My shuffle suffered the blinking green-orange lights so I took it into the Apple store. A salesman took 15 minutes to figure out that he couldn't do anything, and said I would have to sign up for a appointment at the "Genius" bar. At that appointment, the "genius" said he couldn't fix it, and because he said he didn't know anything about engineering he couldn't say whether the shuffle was not working because of a software or a hardware problem or both. Apparently being an Apple "genius" doesn't involve understanding how things work, though it does appear to require having a trendy haircut. The 'genius" then offered a $10 discount on the purchase of a new shuffle - but couldn't answer the question of why anyone would want to waste money on such a poorly designed thing. Perhaps it should be retitled the "idiot bar. B000BNMDC4:broke_very_easily:teresa_e._glodek_"tglodek" B000BNMDC4 DLO 009-3032 Transpod All-in-One Car Solution for iPod (Silver): Electronics electronics 1.0 Broke very easily November 3, 2006 Teresa E. Glodek "tglodek" Ann Arbor, MI The extendable arm breaks very easily. I had two of them and they both broke within the first month. The company does have a 3 month warranty but you have to pay for shipping to send it back to them and I have been waiting over a month for my replacement. Very poor product. Do not buy B0009FTMK0:better_not_to_buy:rajagopal_alagarsamy_"-_raj" B0009FTMK0 SanDisk 2 GB Cruzer Micro USB Flash Drive (SDCZ4-2048-A10, Retail Package): Electronics electronics 11 of 13 2.0 Better Not to Buy May 17, 2006 Rajagopal Alagarsamy "- Raj" Concord, CA USA I'm the consumer of SanDisk USB flash drives. I have used couple of sandisk flash drives (i.e. 512MB Mini, 256MB Mini) before I bought this product. Performance wise this particular product is not doing good. It's taking long time to copy files from my computers. Even it's taking long time to delete files from this disk. So I returned to Amazon and looking for Mini products from SanDisk. I doubt all the Micro products which is having capacity more than 512MB. Now I'm planning to buy 512MB or 1GB SanDisk Mini USB flash drive. Better buy some good one than wasting your time on this product B0007PGADE:be_careful:k._young B0007PGADE Memorex DVD+R 16x 4.7GB 50 Pack Spindle: Electronics electronics 1 of 1 1.0 Be Careful November 2, 2006 K. Young San Diego, Ca These disks would not work with my Sony brand DVD writer. I have tried several other brands and so far everything works but Memorex. B0007PGADE:garbage!:j._radell_"joecritic" B0007PGADE Memorex DVD+R 16x 4.7GB 50 Pack Spindle: Electronics electronics 2 of 2 1.0 Garbage! September 18, 2006 J. Radell "JoeCritic" VA To back up my personal DVD collection I burned 200 discs. 100 on these Memorex DVD+R's, 100 on Philips DVD+R's. EVERY Memorex had flaws during playback. EVERY Philips was flawless. I've been buying Memorex for years but I'll never buy Memorex again B0007WKB14:broke_after_1+_year:pedro_marmol B0007WKB14 Panasonic DMR-ES10S DIGA Series DVD Recorder (Silver): Electronics electronics 3 of 3 2.0 broke after 1+ year July 19, 2006 Pedro Marmol Austin, Texas United States Overall the recorder worked OK. A moderate inconvenience was that once in a while the recorded DVDs could not be finalized for unexplained reasons. However, that is irrelevant now. A few weeks ago, the unit stop working. I does not turn on at all. What a waist! It is out of warranty now B0007WKB14:short-lived_machine--avoid_this_lemon:california_dreamer B0007WKB14 Panasonic DMR-ES10S DIGA Series DVD Recorder (Silver): Electronics electronics 1 of 1 1.0 Short-lived machine--avoid this lemon June 17, 2006 California Dreamer Southern California Here is the original review of this machine I wrote on June 17, 2006: We bought this machine just over a year ago (a year and two weeks, to be specific). We had another very similar Panasonic DVD recorder (DMR-E55) in a different room and wanted to be able to record and watch DVD-RAMs on both. For a long time, the ES10S recorder worked fine. Recently, though, it has begun making noises when starting up and shutting down, and now it occasionally has problems reading the disks, ejecting them, and even playing them. At first we thought this might be because we'd recorded over the DVD-RAMs so many times. But today we tested one of them in the other machine, which has never made any similar noises, and the E55 had no problems with it. Needless to say, we're not happy that the ES10S seems to be dying, especially since the 1-year warranty just ended. If you buy or own this machine, follow up on any strange noises as soon as you hear them if you're within the warranty period, because the noises and problems just get worse. Panasonic is usually a reliable brand, one we've used for many years, but this machine seems to be a lemon. We're actually going to write to Panasonic about it--I'll try to post again with the results. Here is my update, which I wrote November 3: This is a follow-up review to the one above, which I wrote on June 17. I wrote to Panasonic after my machine had stopped working just after the warranty ended. They sent me a nice letter authorizing a free repair, including labor, of the machine at one of three places they listed. The places were all within a half-hour drive of my home. After doing some research, I chose one and brought in the machine. They fixed it by replacing "the entire internal mechanism" (I don't know what that means). We got the machine back from the repair shop near the end of July; it's now the beginning of November. The fixed machine worked fine for a while, but in the past few weeks, we've been hearing the same old noises that were the beginning of the end for it before. I'm going to try writing to Panasonic again and asking for a refund, because this machine really seems to have something fundamentally wrong with it. It's still working, but I know from the last time with these noises and efforts to read the disks that soon it won't. Avoid this machine. Again, the previous Panasonic model (DMR-E55) we bought hasn't had any of these difficulties and continues to work great. We're still big Panasonic fans, but this particular model is a lemon. B00080FO4O:temporary_device:sooner4x4 B00080FO4O iHome iH5 Clock Radio for iPod White: Electronics electronics 2 of 3 1.0 Temporary device November 12, 2006 sooner4x4 Oklahoma I would only recommend this product if you need something that only lasts six months. There is a reason the warranty is only 90 days. The performance (sound quality) steadily declines over time. The ihome worked great when it was new, but it won't play songs from the ipod anymore, and the radio is a static box B00080FO4O:ihome_is_a_disappointment:manda_"mnda" B00080FO4O iHome iH5 Clock Radio for iPod White: Electronics electronics 2 of 3 1.0 iHome is a disappointment November 10, 2006 Manda "Mnda" Virginia, USA So when I first got the iHome for Christmas, I loved it. Well, I loved it in spite of the glaring bright light, that even at its lowest setting has to be blocked for me to get to sleep. However, after awhile the iHome will not register my iPods existence at all. Today I was able to enjoy thirty seconds of a song before it fell into disgrace again. I would not recommend this product if you want something that lasts. This device has become nothing more than a nuisance that won't even pick up radio stations. So, the alarm can only be set to a vaguely annoying beep when these functions are disabled. Useless B00080FO4O:too_bright!__not_for_light_sleepers!:kmoore B00080FO4O iHome iH5 Clock Radio for iPod White: Electronics electronics 2 of 2 2.0 Too bright! Not for light sleepers! October 24, 2006 KMoore Philadelphia, PA United States We have had ours for almost a year - it still works great, but there is one big problem - the display is a white/violet bright light. Great for visibility of the clock when you need it, but unfortunately, even when it's on the lowest setting, it lights up our whole room! My husband sleeps through it fine, but I need a dark room to fall asleep and I always have to throw a sweater or towel over it. We finally gave it up and switched back to our old clock radio B00080FO4O:great_features,_unreliable_connections:k._n._gunn B00080FO4O iHome iH5 Clock Radio for iPod White: Electronics electronics 3 of 3 2.0 Great Features, Unreliable Connections September 21, 2006 K. N. Gunn Carrboro, NC United States I like the features. I'm satisfied with the sound. The user interface could be more intuitive. HOWEVER, my overriding complaint is that the docking port (as many other reviewers have mentioned) is not reliable. The connection is poorly constructed, so just walking by the table on which it sits is often enough to make it think the iPod isn't there any more. If they could fix this quality problem, it would be well worth the $100, but since it is very hard to get it to recognize the connection reliably you just can't justify it at any price B000BFYPM8:kills_computer_/_un-stoppable_shriek_alarm__:flagday1960 B000BFYPM8 APC BE350R Back-UPS 350VA for Home/Office Computers: Electronics electronics 2 of 21 1.0 KILLS COMPUTER / UN-STOPPABLE SHRIEK ALARM August 3, 2006 flagday1960 St.Louis I mistakenly believed the hype that this thing would PROTECT my computer from BEING KILLED, but instead, this thing has KILLED my computer FOR THE SECOND TIME IN 4 DAYS, EMITTING AN UN-STOPPABLE(i.e., CAN'T TURN THE FEATURE OFF) SHRIEK ALARM. How do smart, talented people idiotically convince themselves that a home product should have an ear-piercing shriek-alarm that can't be defeated / silenced? In addition to doing far, far more damage than it can ever prevent, ask yourself -- do you want this un-stoppable ear-piercing shriek alarm going off in your house at 2a.m.? I BOUGHT ONE APC PRODUCT, AND SO FAR, THEY'RE 100% DEFECTIVE AND 100% DELITERIOUS TO THE USE OF MY COMPUTER & IT'S A MATTER OF TIME BEFORE IT'S DELITERIOUS TO MY SLEEP. B00005BC0H:no_support:j._kim B00005BC0H C Pen 800C Handheld Scanner: Electronics electronics 9 of 9 1.0 NO SUPPORT June 10, 2006 J. Kim Let's be honest. This product ain't cheap. It's not something you can just throw away if it decides to stop working. I bought mine at cpenusa.com. Delivery was great, only took them a couple of days. However, my c-pen cable was damaged. The connector to the c-pen was, for some reason, cut in half. Without it, you can't recharge or connect the c-pen to the pc. I called their main office all the way in Sweden during the office hours. NO RESPONSE. I sent three e-mails to cpenusa. NO RESPONSE. I don't care if the product itself is great(I'll never know now, will I..). If you're unable to receive support when you need 'em, you're screwed. If you're just interested in electronic equipments, just want to try things out and don't really care if you're on your own, go ahead and try it. Let me know how this thing really is. Otherwise, buy a product that you can trust on with respect to after-sales support B000COB58K:did_not_get_it_in_the_mail_yet:adolfo_reyes B000COB58K 3-Year Service Plan for Personal Electronics $200 to $599.99: Electronics electronics 2 of 3 1.0 did not get it in the mail yet November 5, 2006 Adolfo Reyes I have been charged however I did not get a copy of the policy to date. B0002CPBWS:bad_quality:harry_potter_tun_"tun" B0002CPBWS Microsoft Wireless Notebook Optical Mouse 3000- Winter Blue: Electronics electronics 0 of 1 1.0 bad quality November 7, 2006 Harry Potter Tun "Tun" CA, USA I bought this item like 2 months ago, and now it's broken. I'm sooo frustrated. I 'd not recommend buying this item B0002CPBWS:great_for_a_while,_and_then_not_so_good:weary_road_warrior B0002CPBWS Microsoft Wireless Notebook Optical Mouse 3000- Winter Blue: Electronics electronics 2.0 Great for a while, and then not so good October 20, 2006 Weary Road Warrior Chicago, IL This was a great mouse for about the first year I owned. After one year is when all of the problems started. The mouse now loses connection sproadically and sometimes it doesn't want to connect at all. I have changed the battery quite a few times and that doesn't seem to help. It is very tempremental, and I have now given up and am shopping for a replacement. So, a word to the wise - in my experience the mouse will work great for a while, just be prepared to replace it in a year or so B00017IX10:good_system_-_one_huge_flaw:kevin B00017IX10 Altec Lansing inMotion Portable Audio System for iPod: Electronics electronics 1.0 Good system - one huge flaw November 8, 2006 Kevin SLC, UT This is a good product - sounds great, gets good battery life, everything you'd hope for in an iPod dock. But it has one major flaw. The iPod docking port is really flimsy, and has no structural support aside from the actual electronics themselves. After a little bit of use, the connection between the iPod and the dock deteriorated to the point that the volume fluctuated up and down, and sometimes the sound cuts out all together. If they added some kind of simple support so that bumping the iPod wouldn't stress the electronics, I'd give this thing 5 stars. But without that, it simply breaks quickly, and no longer performs its only job - to sound good. B000B6KXM8:sony_rm-ax4000:joey B000B6KXM8 Sony RM-AX4000 Home Theater Remote Control: Electronics electronics 1 of 1 2.0 Sony RM-AX4000 November 3, 2006 Joey North Wales, PA This is a poorly designed remote. I have six devices connected to my HD television set. The software depends on the user assigning positions to the various inputs to the TV and, in my case, routinely activated the wrong device when I used the remote. I purchased a Logistics Harmony remote and it works perfectly. At this point the only thing that I use the remote for is to remotely turn on my satellite receiver at a certain time during the day to record to Replay TV (which cannot turn the TV on and off). B000078XAK:does_not_work!!:m._castellanos B000078XAK POWER 2000 ACD-674 Rechargeable Battery ( CANON BP511 Equivalent ): Electronics electronics 10 of 10 1.0 does not work!! November 21, 2004 M. Castellanos AR, USA With a full charge it does not last more than 10min, could not take more than more 15 pics in my camera Canon Pro1. The original battery works well more than 250 pics on each charge. Initially I thought this problem was because it was new battery but after several cycles it does not work at all. I'll try to get a refund and check their customer service too B0002WPSBC:disappointed:epiphane_flavius B0002WPSBC Logitech Z-5500 Digital 5.1 5-Piece Speaker System with Subwoofer: Electronics electronics 0 of 2 1.0 Disappointed November 9, 2006 Epiphane Flavius Wichita Falls, TX USA I am disappointed in this product. I was suppose to write to you from the weekend. My two rear speakers just stop working, and also my remote control. I have replace the batteries, but still does not work. I don't have any other rear speakers to try on the system. Pleasy me what to do. Thank you Epiphane Flaviu B0000AMRTM:check_compatibility_with_writer_before_buying_media!:"suavedog" B0000AMRTM Memorex 4.7GB 4x DVD-R (25-Pack Spindle): Electronics electronics 2 of 5 2.0 Check compatibility with writer BEFORE buying media! July 17, 2004 "suavedog" Boston, MA USA One out of every 4 discs would fail on me when I'd burn to this media at 4x. Slowing down the burn to 2x didn't help either! I own a Sony DRU500A with the latest firmware. Memorex isn't on their compatibility list. Lesson learned: check the compatibility list BEFORE buying B0009MZ9UA:the_worst_brand_i've_tried.:r._m._aarons B0009MZ9UA Memorex 4.7Gb/16x DVD-R (50-Pack Spindle): Electronics electronics 2 of 5 2.0 The worst brand I've tried. June 28, 2006 R. M. Aarons San Francisco Bay Area, CA USA I've got a LITE-ON DVDRW SOHW-1673S burner (Revision JS02) in my fast G4 Mac running OS X Tiger and burning with Toast Titanium 7. Although my burner is nominally 16X-capable, it only burns at about 6X in my setup, probably due to the slow (ATA 33) bus it's on. I've used a number of different brands of 8X and 16X disks, both +R and -R, and have had a verification failure rate of less than 2% -- so few, in fact, that I often don't bother verifying video DVD's anymore when burning TDK or Maxell discs. (I always verify data DVD's, since errors in those are not ignorable.) But with Memorex, I've gotten about 20% failures, including a couple of aborted burns! In one case, the disc had a blank band between two burned ones! The Memorex discs I'm referring to have Manufacturer ID "CMC MAG, AM3". According to videohelp.com, these are sold under at least 7 different brand names. The reviews there are rather mixed, which is not IMHO good enough! I have not, BTW, have had any problems with the Memorex DVD+R discs I've tried. But I stopped using them because one of my players won't recognize the +R format B000C54E96:great_product_if_i_could_use_it:nancy_mooney B000C54E96 NEC ND3550A / 16x8x16x DVD+RW / 16x6x16x DVD-RW / 8x DVD+R DL / 6x DVD-R DL / 48x32x48x CD-RW / Black / Dual Layer / Retail Box DVD Burner with Software: Electronics electronics 6 of 6 2.0 great product if I could use it February 22, 2006 Nancy Mooney I did the research on this product and it was one of the best. I don't know that to be true due to the fact that the software that they sent me was a demo version that was outdated for use. I have to buy another software package to opperate the product that had stated in the description that the software was included. One if not the only reason I had purchased it. I e-mailed tiger.com and received no reply. If your going to sell something false advertisement is not the way B000EH4Y56:unacceptable:dabigpaybackski B000EH4Y56 Sony MHCEC70 Mini Shelf System with 3-Disc CD Changer, Cassette Deck, and AM/FM Tuner: Electronics electronics 6 of 6 2.0 Unacceptable October 5, 2006 dabigpaybackski OR This model was intended as a replacement for my not-very-old and yet quite functional Panasonic PM-series stereo. This is the kind of thing that happens when you browse Amazon while drunk late at night. Unfortunately, with the exception of a very slight advantage in audio quality, the Sony is in all respects inferior; ergonomics, appearance, and above all, FM reception, which is laughably poor. Do not buy this stereo if you expect a quality receiver. Hiss abounds, several local stations I heard previously are now unreachable, and to top it off, Sony has stuck with their time-honored habit of using proprietary connectors, so when I went to plug in an after-market antenna to get better reception, I found a weird little plug that I hadn't noticed when I put the damned thing together. Grrr. So now I'm going to sell this thing and buy a nice new Panasonic with the proceeds. Death to Sony B00000J506:not_very_durable._will_need_battery_changes.:d._amini_"zbestdoc" B00000J506 APC BP500UC Back-UPS Pro 500: Electronics electronics 3 of 3 2.0 Not Very Durable. Will need battery changes. February 5, 2006 D. Amini "zbestdoc" Washington DC I have owned five of these UPS units over the past four years. I purchased three for my Mac and PC at home. Then I had to purchase two replacements for units that simply quit. Currently only ONE still works! I have very infrequent power outages, perhaps three in the past four years. These units work well to allow you to save your work and shut down. My G5 mac was so power hungry that I had to use one for the computer and another for the 23 inch LCD. I can't comment on other UPS brands such as Belkin, but I have seen many competing brands on the web and at the computer stores. There seen to be quite a few dealers selling refurbished APC products but this may be a reflection of APC's popularity rather than the poor reliability of their brand. My experience over the past four years has been mixed. These are not inexpensive units and you have to decide how precious your data becomes. If you really fear the loss of data during a blackout then the answer is clear. I chose to switch to high quality surge suppressors and never work during potential storms. Many users do not have that flexibility so a UPS is essential insurance. The units I puchased were identical and only one unit is still operational after four years. I can accept the need to replace the battery every one to two years; three of the batteries failed and alarms beeped until I bought new batteries. Prices vary from $15 to $50 depending on the vendor. Battery life depends on many factors so I don't begrudge APC for wear and tear on the battery but to have 4 out of 5 units simply stop working is unacceptable. I bought APC branded batteries and can't explain why the recurrent failures. I'm frustated with my APC products but it may be a problem with this model. Just beware of the hidden costs of battery replacement when purchasing an UPS B000DLB91A:okay,_i_guess...:c._w._loy B000DLB91A Belkin F8Z060 iPod Nano Silicon Sleeve (Black): Electronics electronics 2.0 Okay, I guess... November 6, 2006 C. W. Loy San Diego, CA While the silicon used in the construction of the sleeve is very nice (feels grippy but not sticky if you know what I mean), some of the features are just wrong. For instance, the opening for the hold switch on top was apparently cut wrong and does not line up with the switch at all - requiring you to have to push the cover around so you can flip the hold on or off. Also, for whatever reason, the edge of the sleeve is right at the headphone jack which causes it to be somewhat difficult to keep some headphones seated during use (the sleeve can work its way in and pop the jack out). The armband is satisfactory at best - it's just a standard, no frills, velcro armband B00006JPMF:chinese_made_junk_-_save_your_money!:b._roy_"roytech" B00006JPMF Lenmar PRO-415 AA NiMH Rechargeable Batteries (4-Pack): Electronics electronics 2 of 2 1.0 Chinese made Junk - save your money! February 27, 2006 B. Roy "RoyTech" Sunnyvale, CA, USA I was tempted by the cheap price and got myself a 10 pack. They are rated at 2000 mAh, but run out of juice after the digital camera has shot maybe 5 frames. My 2 year old Panasonic 1600 mAh in contrast can run the same camera for over a 100 shots. I tried these batteries in my MP3 player - and even there, it won't supply enough juice after an hr worth of playback. It is not that the battery does not hold any charge - that it has. But it just does not supply the peak current required by most digital devices. It seems to be all right for use in a flashlight. A set of batteries that will not power a camera will power a flashlight (a bit dimly) for hours (yeah - I tested it). For the test, I had charged the panasonics and the lenmars for the same duration (it is not a charger issue). I plan to complain to the state consumer affairs department regarding this brand and hope action is taken against shady products which are nothing but rip-offs. One last tip - nowadays, the best NiMH batteries are made by Sanyo. It is better to pay 2 - 4 times for them than for a Lenmar. Trust me B000652LUG:about_this_thing:c._housen B000652LUG SanDisk SDDR-103 MobileMate SD+ 5-in-1 Mobile Reader (SD/MiniSD/MMC/RS-MMC/TransFlash, Retail Package): Electronics electronics 2.0 About This Thing November 9, 2006 C. Housen This product is not for the heavy handed after 2 weeks of use one of the slots was non functional because spring leaf to hold the card against the contacts some how managed to get bent into the path of the card, and seeing that the slot is for a flash card it is almost impossible to get any tool to fit to do any 'repairs'. on the bright side it did work with the stated flash types B0008G1RSU:don't_buy_if_near_us/canada_border:k._kelly B0008G1RSU TomTom GO 300 Portable GPS Navigation System with Maps of US Pre-loaded on SD Card: Electronics electronics 2 of 2 2.0 Don't Buy if near US/Canada Border September 22, 2006 K. Kelly This GPS comes with US map on the SD card and Canada map on the included CD but never the twain shall meet. By car I'm a few hours from Canada and several days from the eastern US but I can't swap out the faraway eastern US part of the map on the TomTom Go 300 for a nearby Canadian map. It's either all Canada or all contiguous US. This is a major functional flaw if you live near the US/Canada border or live further away and like to take cross-border trips. Oh, and if you do decide to swap out the US map, be sure to save it on your computer first - TomTom doesn't bother to provide a backup on the CD so if you don't first make your own backup before changing to the Canadian map you can't later get the US map back B0008G1RSU:good_potential,_but_nasty:frederick_p._barnes_"fredpb" B0008G1RSU TomTom GO 300 Portable GPS Navigation System with Maps of US Pre-loaded on SD Card: Electronics electronics 6 of 6 1.0 Good potential, but nasty August 30, 2006 Frederick P. Barnes "fredpb" Delray Beach, Florida USA The Tomtom has great features. But I returned mine. First, the maps are very dated. This makes it iffy at best. It has terrific potential, if it worked. You can use a PDA stylus on the map sitting at home outside on batteries to plan a trip. It's amazing. But I wanted to plan a 600 mile trip myself using it's internal maps and waypoints. But I tried a local test first. I used roads as waypoints, main roads. This way I can force the Tomtom to use MY routes. I did not like it's choices, since it is a dated map database. I set up a local route, and started to follow it. It took me to the first road/waypoint no problem. But it would not go past the first waypoint. I would go down the road (first waypoint) then it would tell me to take a u turn!. I did. Then it said take another u turn. It had me going in circles. Perhaps it's not made to use roads as waypoints, but all indications it gave were that it would. The manual was no help. Support was no help. So it went back. I have ordered a Garmin i2. Hope this is ok. I have taken the same trip from SE FL USA to SC USA with a Garmin C330. The Garmin has maps that you cannot update, but got me to my destination no problem. I don't recommend this TomTom. Do research. Go to manufactures websites and look at unit manuals. Hope this helps 0899336795:stayaway_from_it:sheikhaq 0899336795 The Blue Logger & Street Atlas USA 2006 or The Blue Logger & Street Atlas USA 2006 Handheld: Electronics electronics 3 of 5 1.0 stayaway from it November 30, 2005 sheikhaq usa i have so for used inav iguidance,mapopolis,navigon navigator 5 and The Blue Logger & Street Atlas USA .out of all these The Blue Logger & Street Atlas USA is the worst and inav iguidance 2.1.1 is the best .blue logger gps hardware is good but v impractical to use bcuz of its strange onoff button.... i will not recommend it to anyone....simply waste of time and mone B0000658CH:waste_of_money:m._laad B0000658CH Linksys USBHUB4C ProConnect Compact USB 4-Port Hub: Electronics electronics 2 of 3 1.0 Waste of money September 29, 2006 M. Laad This is a complete waste of money for a number of reasons. 1. This hub will not work with any USB powered devices. So forget being able to charge your phone or running an unpowered external disk through this hub. 2. Extremely slow USB 1.1. This device is NOT USB 2.0 compliant 3. It is clunky 4. Does not comke with a power adapte B0000658CH:love_affair_gone_sour:amanooensis B0000658CH Linksys USBHUB4C ProConnect Compact USB 4-Port Hub: Electronics electronics 8 of 8 2.0 Love affair gone sour April 7, 2006 amanooensis Flyover Country I have owned this little hub for at least a year. I have an older PC which came without USB, so I added a PCI adapter. I soon realized that I needed more ports, and more convenience, than the two now located in the backplane of the PC on the floor. I shopped around, and this item looked appropriate. As for the short cord, I solved that issue by getting a USB extension cord at the same time. Besides solving the immediate problem, this approach gave me the option of moving the hub to my laptop at some point, and using the extension cord for some other purpose. For a long time it did exactly what it was supposed to do. I attached an external hard drive through it. I used it for a compact flash card reader, and a digital camera. I connected an inkjet printer. Everything worked, once the drivers were installed and everything was set up correctly. (This was all with Windows 98 SE.) But after a while, things started getting less reliable. The system would tell me that various "drives" (on the flash card reader, or the external hard drive) were not available. Or the digital camera would not stay connected to its software. And the printer even started disappearing. Playing with the cables and connectors would sometimes bring devices back to life, and eventually I deduced that there was something wrong either with the connectors themselves being too loose, or with wiring inside the device. Either way, it has finally become a big problem, and I am shopping for a replacement. Most of the devices I connected were self-powered, that is, they did not need to draw power from the hub or the PCI channel at all. The hard drive, camera, and printer were all powered by batteries or AC adapters of their own. And the flash card reader, which did draw power from the hub, used to work fine. It does not matter what combination of devices I try, sooner or later the connection goes bad. It is of course possible that there's something wrong in the PC -- but that would not explain why things are improved by messing with the connectors or the hub itself. So I have to recommend against buying it. I suspect it is discontinued and that this advice won't be necessary for much longer, but I want to prevent somebody from the bother I've been through, just in case B0001DBEM4:be_forewarned,_if_your_thinking_of_using_this_with_airport_express:jacqui B0001DBEM4 Harman Kardon Soundsticks II 3-Piece Plug and Play Multimedia Speaker System: Electronics electronics 1 of 4 1.0 be forewarned, if your thinking of using this with Airport Express November 13, 2006 Jacqui SF Bay Area This Amazon listing also suggests buying the Soundsticks along with Airport Express. If you're thinking of connecting them to the USB port of Express, Apple says it won't work. (Apple Airport Express FAQs B00007LTB6:worked_like_a_charm_for_24_hours:r._sewell B00007LTB6 D-Link DWL-G650 Wireless Cardbus Adapter, 802.11g, 108Mbps: Electronics electronics 1.0 Worked like a charm for 24 hours September 3, 2006 R. Sewell Install went smooth on my W2K/dell inspiron notebook. Everything worked fine for 24 hours then it just stopped. Worked with customer support for about an hour getting nowhere. This thing is junk. I'm sending it back B00007LTB6:unable_to_install,_despite_reaching_d-link_technical_support:boolaboola_"nutmegger" B00007LTB6 D-Link DWL-G650 Wireless Cardbus Adapter, 802.11g, 108Mbps: Electronics electronics 2 of 2 2.0 Unable to install, despite reaching D-Link technical support August 9, 2006 BoolaBoola "Nutmegger" Whittier From looking at the D-Link website and talking to five tech support staff, it appears that there are countless versions of this card, each with different driver software. The one I got came with a CD with the wrong drivers. With tech support, I finally found the 8 mb driver file I was supposed to download. However, they did not provide any instructions on how to install the new driver. The normal "automatic" approach did not work. And their instructions did not match the screens I was getting on Windows XP SP 2. So I called back again. And again. And again. Despite being given a case file, each time I was asked the same questions, including what, exactly, is wrong. And each time I was told to do the same thing: Install from the CD. Reboot. Remove the program. Reboot. Install from the new driver. Reboot. Remove the program. Talk to a senior tech support person. Install from CD. Reboot. etc. It would have been easier to send the card with the right files on the CD. A clearly designed website would be second best. And tech support that knows what they're doing and speaks intelligble English would be a nice last resort. I spent three hours calling D-Link technical support and speaking to five people, and they could not tell me how to install the software for this card! I am not alone in this experience; see cnet's web site user reviews of the DWL-G650. Another reviewer reports that this software damaged his operating system. I believe he is right. It appears to have damaged my screen font for Windows message boxes. I have been unable to repair it. The DWL-G650 is bad news. I give them two stars cause they actually have tech support, though in this case it was utterly worthless. Back it goes B00007LTAU:rip-off:_doesn't_advertise_that_you_need_an_ac_adaptor:teacher_"teacher" B00007LTAU Targus PA050U USB 2.0 High-Speed Hub (4-port): Electronics electronics 8 of 15 1.0 RIP-OFF: Doesn't advertise that you need an AC adaptor February 20, 2006 teacher "teacher" New York, New York USA I would like to believe that this hub works well- but I wouldn't know. I bought it to reduce clutter on my desk from all my devices hooking into my powermac. I hooked up my printer, ipod and digital camera and nothing happened. I called Targus and they said I needed an a/c adaptor. It doesn't come with one and doesn't say anything about one in the manual or instructions, or their website. They said I could get it at radio shack and gave me the info (5 volt, 2.1 amp, center positive). I've been to two radio shacks and online- they don't carry it. I'm upset. Any advice B000BONJXU:are_there_two_m230s_?:joseph_e._archie_"jarchie" B000BONJXU SanDisk Sansa M230 512 MB MP3 Player (Blue): Electronics electronics 1 of 1 1.0 Are there two m230s ? November 12, 2006 Joseph E. Archie "jarchie" Chicago, IL I have read all 181 reviews and decided that half the reviewers did not get the model that I did. Or else they wrote their review too soon. I bought mine in June 2006. It failed before the store warranty ran out. One down. The replacement lasted a month or two before it hung and wouldn't boot. Two down. Sandisk honored their 1 year warranty with a prompt free RMA. That one also failed. Three down. They replaced it with both a m230 AND a 2GB c150. The c150 hung after about 2 weeks. Four down. I have been using the m230 for two weeks now and hope it lasts until the c150 replacement arrives. I have gotten quite good at the RMA game and intend to keep playing it either until my warranty runs out or I get one of those that other people rave about. I don't think I'll buy another SanDisk - unless it is free and has a lifetime warranty. I suggest that everyone with a failed m230 to exercise thier warranty rights. Sandisk needs to know the true reliability of their products. B00006LELP:might_be_great_if_it_worked:lally123 B00006LELP Nintendo e-Reader - Game console trading card reader: Computer & Video Games computer & video games 0 of 2 2.0 Might be great if it worked December 15, 2005 lally123 We have been unsuccessful with this e-reader attachment since we purchased it. Cards read once and never again. Doesn't matter if we use the GB SP or Advance. Still doesn't do anything. Don't recommend you waste your money B0000DD7PE:sandisk_2gb:carlos_carbonell_"ccg922" B0000DD7PE Sandisk 2GB Compactflash Card Type I (SDCFB-2048-A10, Retail Package): Electronics electronics 7 of 28 1.0 Sandisk 2GB September 6, 2005 Carlos Carbonell "ccg922" Miami, FL USA I just cam from Las Vegas and the sandisk has a disk error that doesn't allow for more photos after only using 40mb. I have tried to format the disk using the camera and through Windows XP. It doesn't allow it to be formatted. Bad investment!!! Would not recommend the product unless there is a way I can get a refund or an exchange B0000A98AC:quality_control?:ruthanne_davis_"the_bookworm" B0000A98AC Memorex 4x DVD+RW 25-Pack Spindle: Electronics electronics 2.0 Quality control? August 20, 2006 Ruthanne Davis "The Bookworm" Abilene, Texas USA The second disc in this package was faulty, which I did not discover until I spent two hours recording a movie. There was what appeared to be a half inch bare spot on the outer edge of the dvd+r. Not what I expected from Memorex which purports to be the best. I have switched to Maxell B0000A98AC:junk!:wahrani B0000A98AC Memorex 4x DVD+RW 25-Pack Spindle: Electronics electronics 1.0 Junk! July 8, 2006 Wahrani San Francisco, CA United States Replaced first spindle and still junk. Will always stick with Verbatim from now on B0000A98AC:very_unhappy_with_this_purchase:gardenia_queen B0000A98AC Memorex 4x DVD+RW 25-Pack Spindle: Electronics electronics 6 of 6 1.0 Very unhappy with this purchase June 7, 2006 Gardenia Queen I bought this same brand of discs sometime last year on this very site. I was very pleased with the purchase then. I didn't have one problem with the discs. I bought another pack recently and I've been using the pack I just bought. All of the discs are messing up for me. I can understand having a few problematic discs but this is insane to have a whole pack of discs and every single one of them messes up for you. I wish I could send these discs back and get a refund. This purchase has scared me away from anything else related to Memorex. I thought Memorex was a very reliable brand and they would make sure they were sending out top notch items to consumers. I guess I was wrong. And apparently you get what you pay for. Don't be fooled by the good price. You'll just be out of your money and stuck with discs that wouldn't even be worth using as a frisbee. Find another brand to use and avoid this brand B00009ZY33:dwt108_double_wide_108_disc_dvd_tower:marjoire_j-b_simpson B00009ZY33 Case Logic DWT108 Double-Wide 108-Disc DVD Tower: Electronics electronics 11 of 15 2.0 dwt108 double wide 108 disc dvd tower February 25, 2006 Marjoire J-b Simpson Was a little hard putting it together. You have to be very careful taking the cds out or it would fall apart. I am not happy with this product B00008EM7W:bad_compatibility:scott_baret B00008EM7W Memorex CD/DVD Compact LabelMaker System: Electronics electronics 6 of 9 1.0 Bad Compatibility October 14, 2004 Scott Baret Pittsburgh, PA USA I have the older, larger version of this product. However, it uses the same software. The labels are great and the spring device that is used to apply the labels is great, but the software is awful. There is no direct Macintosh program; rather there are templates. They were written for old versions of software and really don't work right. The Windows side includes an actual Print Shop-style program which works awfully. If you do get this, make your own template on AppleWorks or PowerPoint B00008EM7W:it_does_not_work_with_macs:"cporro" B00008EM7W Memorex CD/DVD Compact LabelMaker System: Electronics electronics 6 of 9 1.0 It Does not Work with Macs January 10, 2004 "cporro" New York, NY USA They totally misrepresent this product. It does not work with Macs. I feel cheated and lied to by Memorex, shame on you B00005MIS8:card_error:ty_n. B00005MIS8 Viking CF512M 512 MB CompactFlash Card: Electronics electronics 2 of 2 1.0 Card Error November 21, 2005 Ty N. i.e. 3 shots/sec. After serveral months of use, "Card Error" was shown on my Canon Digital Rebel for my 512MB Viking card, which was half full with pictures. Fortunately, I just lost a few of pictures. I tried to format the file; "Card Error" kept occuring on my Rebel. This 512MB Viking card is now used for my data files. Probably, 512MB Viking cards are not designed for high Mega Pixel camera and taking many shots in a short period of time (i.e. 3 shots/sec.). My Canon A40 has no problems when used with the 512MB Viking card so far. Probably, I am going to buy a 512MB card from Sandisk or Simple Tech B0002OD0N8:specs__aren't_100%_correct:richmond_sweet B0002OD0N8 Apple M9339LL/C iPod Stereo Connectivity Kit: Electronics electronics 8 of 9 2.0 Specs aren't 100% correct September 12, 2005 Richmond Sweet Northern Virginia, USA I purchased this and am not impressed. Note that "works with all click wheel iPods" isn't true. It does NOT work with photo iPods (at least the 60 GB model). I'm on vacation and had to remove the cover to get it to fit. I'm ordering a 'photo dock' since I can't see any way to get a cover that is made for the 60GB/photo model. If I'd known this, I'd purchased only the stereo cable and the photo dock separately, since I already have a charger (came with it...). Grr. :- B00006IW1X:has_anyone_else_had_this_problem??:perry_brubaker_"confused!" B00006IW1X Memorex 700MB/80-Minute 52x CD-R Media (100-Pack Spindle): Electronics electronics 0 of 1 1.0 HAs anyone else had this problem?? October 30, 2006 Perry Brubaker "confused!" Heres a new one....I have recently bought two spindles of these discs, and my computer (Imac w/ Intel chip-hardly outdated) simply doesnt recognize them-like I never put in a disc at all. The kicker is that this spring, I also ordered two spindles of these discs (exactly the same as far as I can tell), from which I burned one hundred discs (not a single faulty one!) for a freind overseas. I have no idea what the deal is, but have a feeling that the issue is not the quality of the discs. Anyone got ideas? B0006TI9WG:beware_of_mail-in_rebate_hoax:sanjeevp_"bottom_line" B0006TI9WG SanDisk 1 GB Memory Stick Pro Duo (SDMSPD-1024-A10): Electronics electronics 1.0 Beware of Mail-in Rebate Hoax November 21, 2006 SanjeevP "Bottom Line" USA The card works as advertised but SanDisk does not send in Mail-in-Rebate. Even though I mailed it in with the UPC Barcode, SanDisk sent me a post card stating that I needed to resubmit it with the barcode. How can I resubmit when they already have the barcode? In my experience with SanDisk, I got rebate back on one of two cards that I submitted - so you get mail-in rebate 50% of the time with SanDisk. I think mail-in-rebate is a big hoax perpetrated by these companies. Don't trust it! B00008VF63:painful:t._fischetti_"t.f." B00008VF63 Sony MDR-E828LP Fontopia Earbuds with Winding Case: Electronics electronics 2 of 2 1.0 PAINFUL November 9, 2006 T. Fischetti "T.F." New Jersey I purchased 2 sets of these earphones for a 2 hour flight. My husband and I both used them, and we both took them out of our ears after 20 minutes. They were great at first, but after 20 minutes they really started to hurt our ears. The inside of my ears were so sore I couldn't even adjust the earphones when they started coming out, that's how bad my ears hurt. I had the foam pad over them too, and it made no difference. I would not recommend these B0002CPBWI:cheap_hunk_of_junk:d._j._mayard B0002CPBWI Microsoft Wireless Notebook Optical Mouse 3000 -Slate: Electronics electronics 1 of 1 1.0 Cheap Hunk of Junk November 9, 2006 D. J. Mayard Baton Rouge, LA United States This was the worst purchase of any type of computer hardware that I have ever made. It felt very light and flimsy, the definition of cheap plastic. Not just the construction but the performance was terrible. It would work perfectly for about a half hour and then go on a break and do NOTHING for about 10 minutes. This was very very frustrating. Maybe I was just unlucky and received a defective one, but I wouldn't take that chance again. I wish I could give this device a worse rating, somewhere around -4 would be much more appropriate. B0007SL4IW:memorex_blank_dvd's:coffeecorn B0007SL4IW Memorex DVD+R 16x 4.7GB 100 Pack Spindle: Electronics electronics 0 of 3 1.0 memorex blank dvd's July 26, 2006 coffeecoRN douglas,ga In each pack there have been several dvd's that aren't any good. Too many bad discs in my opinio B00009XSYZ:worthless!!!:brien_penn B00009XSYZ ADS Technologies HDUP1500 HDTV Upconverter: Electronics electronics 18 of 20 1.0 Worthless!!! February 10, 2004 Brien Penn Baltimore, MD I bought the ADS upconverter because I bought a HDTV only to find out that my cable co. didn't offer HDTV and after 3 failed attempts to switch to a satellite provider that did offer HDTV (too many trees around my house). I wasn't expecting the upconverter to magically turn my standard signals into an amazing HDTV picture, but for $550+ I was expecting the upconverter to do something that was actually noticable. When I first turned in on I asked my wife to look at the picture and tell me what she thought. She looked at the TV and said okay I'm ready turn it on. I said "it IS ON!!" This is pretty much the reaction I had also when I looked at it. The image I got for my digital cable was certianly different, but that's all it was, different. It was NOT noticably better. In fact, in some instances I though the picture was worse. I called ADS tech support and they kept insisting I try it with my DVD because that is what the product is best for (even though that's not what I got it for). So I did and to be honest I really preferred the picture I got directly from my DVD over the picture I got after running it thru the upconverter. It didn't matter what display format I put it in it just didn't do anything to improve the picture. Save your money. If you can't get HDTV don't expect this box to give you anything close to the next best thing B00006B85B:charger_stopped_charging:jennifer_"jen" B00006B85B Kodak Rapid Charger with 4 AA NiMh Batteries: Electronics electronics 12 of 12 1.0 Charger stopped charging April 25, 2005 Jennifer "Jen" NJ I was impressed with the charger for about 1 month---than it stopped charging the NiMh batteries it came with. I took it back to Best Buy only to find that ALL of the Rapid Chargers on thier shelf did not work either. A sales person and I tested them all, hoping I would be able to exchange my broken one with one that worked. It was more disappointing after calling Kodak ---they were unable to replace it or get my money back. I thought purchasing a Kodak was a smart decision, however, they did not stand behind their product which was very disappointing. B000050AVT:viruses_on_mfg_software_caution_!!!:b_drake B000050AVT KB Gear Jam Studio: Electronics electronics 2 of 3 1.0 VIRUSES ON MFG SOFTWARE CAUTION !!! January 21, 2004 b drake NJ I did not read the prior reviews, I bought this item & loaded the software that came with it in the sealed box from Target.com. The MFG SOFTWARE disc contains TWO VIRUSES one in Quicktime & the other in Totally Hip files. Target has been notified that the software is CORUPT with viruses & that the MFG has gone out of business. This item is only useful as a drawing tablet thru other software programs like paint shop pro as there is no WEB SITE ACCESS or tech support available for this item B000050AVT:install_cd_has_viruses:nicole B000050AVT KB Gear Jam Studio: Electronics electronics 1 of 2 1.0 Install CD has viruses December 2, 2003 Nicole Houston, TX I just recently bought this and when I installed it Norton caught 2 viruses on the install CD. B000093IRD:coasters!:valentina B000093IRD Memorex 4.7GB 4x DVD+R 4.7GB (50-Pack Spindle): Electronics electronics 0 of 2 1.0 COASTERS! February 1, 2005 Valentina Fair Lawn, NJ United States I purchased this item and was excited to get them, but burning my first DVDs.. they're all coasters! ARG.. pass Memorex and go for a more expensive media, like Verbatim B0002A9SJ2:useless:c._nixdorff_"cd_lover" B0002A9SJ2 Aleratec DVD/CD Disc Repair Plus: Electronics electronics 7 of 15 1.0 Useless June 23, 2006 C. Nixdorff "cd lover" Destrehan, Louisiana United States As far as I can tell this thing doesn't work at all. I have now tried it on 3 cds and it did not repair any of them. I should have just replaced the cds B0002A9SJ2:mine_was_doa_too:cara_thrace B0002A9SJ2 Aleratec DVD/CD Disc Repair Plus: Electronics electronics 9 of 14 2.0 Mine was DOA too May 26, 2006 Cara Thrace How do I assign a rating? As several other people have experienced, my unit is also DOA. I received it, plugged it in, pressed 'clean', and the motor started up. I popped open the cover, put in the disc I wanted cleaned, and pressed 'clean' again. Nothing. Terrible quality control. What's worse is the unit case is glued together -- no way to open it up to try to fix the electronics inside without mutilating it and voiding warranty B0001WV6ZU:hard_to_rate;__didn't_arrive_in_working_order.:bridget_blackwood B0001WV6ZU Panasonic DVD-F87K 5-Disc HD-Compatible DVD/CD Player (Black): Electronics electronics 11 of 12 1.0 Hard to rate; didn't arrive in working order. March 29, 2006 Bridget Blackwood It didn't work properly from the time it came out of the box. The carousel wouldn't make a complete rotation, so CDs and DVDs would get 'trapped' inside the unit. And occasionally, it would simply refuse to play a DVD altogether. Panasonic has directed us to a local repair shop, so maybe they can get it to function as it should. If you do purchase one, please read the warranty carefully; a defective unit will either have to be repaired or replaced with a refurbished one. Panasonic informed me that they do not replace malfunctioning units with new ones, under any circumstances. B0000A0AJH:bad_disc_error_-_possible_fix:walter_c_"walt" B0000A0AJH CyberHome CH-DVD 300S Progressive-Scan DVD Player (Silver): Electronics electronics 8 of 8 2.0 Bad Disc Error - possible fix August 11, 2006 Walter C "Walt" Omaha, NE USA BAD DISC ERROR - possible fix After about 8 months just like the other reviewer it stopped working. I kept getting bad disc error on a new DVD I bought. I tried good discs that worked before but now got the same Bad Disc error. This is not the first time I had problems loading. Previously, unplugging and plugging it in again sometimes corrected the problem. This time after two weeks of Bad Disc errors, I was about to toss it when I decided what the heck, I'll check inside to see if it's dirty or something. FIRST I UNPLUGGED THE UNIT. I removed the 6 screws holding the cover. You may have to pull the sides out a bit if it catches to lift it off. With my expertise knowledge. *eyeroll* I nudged the lense mechanism. It apparently slides to read the discs. I plugged the DVD in and loaded a disc again to see what happens. The lense slid under the tray and started reading the disc. I'll take the elation of dumb luck over the satisfaction calculated knowledge any day! lol So hopefully this will last a little longer. But at least I can use it again for now ... I am downrating it to 2 stars solely on the bad disc error. The viewing quality and performance is decent and covered by other reviewers B0000A0AJH:what_happened_to_the_region_code_free_setting???_help!:valerie_c._feurich-sponsel_"val" B0000A0AJH CyberHome CH-DVD 300S Progressive-Scan DVD Player (Silver): Electronics electronics 2 of 4 1.0 What happened to the region code free setting??? HELP! July 25, 2006 Valerie C. Feurich-sponsel "Val" USA Hi! I bought my Cyberhome 300 in April 2006, and was able to set the region code to "0" to watch all DVD's. After not using the DVD Player for a few weeks (and unplugging it), the region code has automatically set back to "1" and I cannot change it anymore! What happened?? When I try to change it now I can only choose between the settings "1" and "-". Anyone who has the same problem? Thank yo B00004XRDM:not_a_quality_item:hugo_calendar B00004XRDM Linksys L03040 Power 2GO Inverter - Car Cigarette Lighter Power Supply: Electronics electronics 8 of 9 1.0 Not a quality item July 8, 2005 Hugo Calendar Monument, CO This item worked for a while, but required fiddling (unplugging and replugging repeatedly) with the lighter socket each time I restarted my car. Eventually, however, it blew out the fuses in both my lighter sockets. Don't waste your money on this piece of crap B00004XRDM:the_linksys_converter_was_pure_junk!:gene_r._barnes_"randy" B00004XRDM Linksys L03040 Power 2GO Inverter - Car Cigarette Lighter Power Supply: Electronics electronics 4 of 4 1.0 The Linksys converter was pure junk! July 6, 2005 Gene R. Barnes "Randy" Perryton, Tx The product not only did not work but blew out fuses in my car. The mechanic who checked my car out said the device had a dead short in it. I have written to your customer service department and asked for money back but to no avail. I will not purchase another thing from Amazon until my money is refunded B00004XRDM:did_not_perform_as_advertised:nicholas_wilson B00004XRDM Linksys L03040 Power 2GO Inverter - Car Cigarette Lighter Power Supply: Electronics electronics 16 of 20 2.0 Did not perform as advertised October 15, 2004 Nicholas Wilson Mendocino CA This unit failed to provide reliable power to my new Toshiba Satellite A60 laptop. It cycled on and off every 3 seconds. It powered a 100 watt lamp okay, but wouldn't start a 250 watt heat lamp at all. Product spec sheet says it can supply 400 watt surge and 200 watts for 2 min., and is rated at 140 watts continuous. My laptop power supply is rated at 2A input at 100-240 VAC, and if it drew 2A constantly I agree that it would need 200 to 230 watts, which exceeds the continuous rating of this inverter. However, even at that power demand the inverter should run it for 1-2 min., but only manages 3 sec. In addition, I doubt that the laptop power supply actually draws a full 2.0 amps continuously. I talked to Linksys support, and they suggested returning the unit for replacement or refund, so I did. It did not work for me. Maybe it would work for a laptop that only needs 100 watts, but I wouldn't recommend it for more than that B00000J1QK:allsop_lens_cleaner:leon_m._olszewski_"wood_works" B00000J1QK Allsop CD Laser-Lens Cleaner: Electronics electronics 1.0 Allsop Lens Cleaner November 9, 2006 Leon M. Olszewski "Wood works" Mountain View, MO I didn't notice any change in the operation of my cd writer after cleaning. The cleaner was supposed to play music while it cleaned (30 minutes) It didn't B00006JPFU:wanted_to_like_it,_but...:michael_feinstein B00006JPFU Coby CA-747 Dual Position CD/MD/MP3 Cassette Adapter: Electronics electronics 1.0 Wanted to like it, but... November 10, 2006 Michael Feinstein Bedford, MA United States When I first started using this, I loved it. It worked fine in my car cassette deck and had decent sound. In fact, I bought a second one for my wife. Then, after about two weeks, it stopped working. It would no longer play in my cassette deck, which ejected it as soon as I put it in every time. I tried contacting Coby's support on the Web, but they were unresponsive. Luckily, Amazon took it back for a refund. Note that they no longer sell these directly. Bet they had too many returns.. B00006JPFU:great_product!_for_two_days!:grant_d._green_"contrabass.com" B00006JPFU Coby CA-747 Dual Position CD/MD/MP3 Cassette Adapter: Electronics electronics 1.0 Great product! For two days! October 26, 2006 Grant D. Green "Contrabass.com" Los Altos, CA USA When this adapter first arrived, I thought it was great. The sound quality was excellent, and free of all the distortion and interference I get from using an FM transmitter-style adapter (there are few open frequencies in the SF Bay Area). The first day, I used it for about 20 minutes total (didn't have far to drive), and it worked great. The second day I had a bit farther to drive. After about 30 minutes, it quit. Hasn't worked again since. I didn't expect it to last forever, but less than an hour? Yes, it has a 1 year warranty: just send the unit back with a money order ($6) to cover the return postage. Of course, then you're spending more in postage than you originally spent for the unit.. B000204SWE:stops_working_after_3_months:ms._lingo B000204SWE Philips DVP642 DivX-Certified Progressive-Scan DVD Player: Electronics electronics 2.0 Stops working after 3 months November 15, 2006 Ms. Lingo New York, NY This DVD player does play all types of DVDs no matter how you burn it. But like other reviews, it stopped working after 3-6 months. In my case, it was 3 months. It just doesn't turn on anymore. I unplugged everything and replugged it but it just went dead. I don't watch DVDs much, so it's not like I overused it. Go with another model. This one has problems. I thought mines would be the exception, but I guess not. And now I can't return it because it's been over 30 days. B000F38IQK:panasonic_cd_player_is_not_continuous:john_e._abate_"dr_abate" B000F38IQK Panasonic SC-PM53 180-Watt 5-CD Executive Micro System: Electronics electronics 16 of 18 2.0 Panasonic CD player is not continuous October 21, 2006 John E. Abate "Dr Abate" Manasquan, NJ United States The Panasonic CD player has a good sound quality, but does not automatically change from one CD to the next. It requires manual switching via the remote control to change from one CD to another. This feature was not explicitly stated in the specifications, and is misleading to a buyer who is seeking continuous playing of all five CD's B00020SEYM:short_bulb_life:john_l B00020SEYM InFocus X2 Multimedia DLP Projector: Electronics electronics 1.0 SHORT BULB LIFE November 24, 2006 John L MI I've had the X2 for roughly 14 months. The X2 was used for watching movies (about once every 2 weeks) and big sports event (NCAA/NFL finals.. etc). The unit worked up to about 1200 hrs, then the lamp blew. I was hoping to get to at least 1500 hrs before the lamp went out. Good picture quality for the price (799) but short lamp life (get extended warranty). Check other units first B000093BD4:started_good_but_ended_bad:john_doe_"go_mavericks=p" B000093BD4 PNY 256 MB SD Secure Digital Flash Memory Card: Electronics electronics 2.0 Started good but ended bad June 7, 2006 John Doe "Go Mavericks=p" Dallas ,Texas I had this card for more than 6 months, and It worked super in my Canon Powershot A510. Transfers went well too. Then all of a sudden for no reason I kept getting "card error" on my computer and digital camera a week ago. My SD/USB converter couldn't find the card either. I had really good photos I wanted to transfer to my computer and now they are probably lost for good. What a joke B0002ER3B8:poor_quality:m._andrews B0002ER3B8 Memorex 4.7GB/8x DVD-R (50-Pack Spindle): Electronics electronics 1 of 2 1.0 Poor quality April 19, 2006 M. Andrews Chicago, IL I found that these DVD-Rs did not work well in my system, were unreliable and slow. I cannot recommend them B0002ER3B8:these_do_not_work_with_the_burner_i_bought:younetta_hield B0002ER3B8 Memorex 4.7GB/8x DVD-R (50-Pack Spindle): Electronics electronics 0 of 3 1.0 These do not work with the burner i bought March 10, 2006 Younetta Hield I have tried these dvdrs with the burner i bought from amazon and they do not work, i will try them again and send an email to you. I bought a few imation to try in the burner to ensure it wasnt faulty and they worked!!! what is up with these dvds? B000A2LSPO:don't_buy_this:richard_harrold B000A2LSPO By HandHelditems Travel/ Wall Charger w/ IC Chip for Apple iPod 3G / 4G / Video / iPod Mini / iPod Nano , White: Electronics electronics 4 of 5 1.0 Don't Buy This July 31, 2006 Richard Harrold Sun Lakes, AZ I plugged my Nano into this charger for about 10 minutes and picked it up to check it out - it almost burnt my hand. My Nano is now Toast! I hope it just toasted the battery and not the whole device B000A2LSPO:works_good_for_a_while,_then_dies..._:marms79 B000A2LSPO By HandHelditems Travel/ Wall Charger w/ IC Chip for Apple iPod 3G / 4G / Video / iPod Mini / iPod Nano , White: Electronics electronics 6 of 6 2.0 Works good for a while, then dies... May 2, 2006 marms79 Seattle, WA United States I liked this when I first got it... very cheap, handy to travel with or leave at work, etc. After a couple months, it died completely... the little power light wouldn't even come on. I'm really disappointed all I have now is a charger that doesn't work. B0001DHHIY:you_get_what_you_pay_for_._._._:m._conway B0001DHHIY TRENDnet 54Mbps 802.11G Wireless PCI Adapter: Electronics electronics 2.0 You get what you pay for . . . November 3, 2006 M. Conway Virginia I purchased this wireless card based on the price, figuring that even if it didn't live up to the good reviews here, I would only be out ~$20. The set up was easy and smooth, but the card won't stay connected to my wireless network. I've got a Belkin wireless router. The Trendnet signal meter generally shows ~95% signal strength, but the connection only lasts for a few minutes, and I have to keep cycling the connection to regain network access--very annoying. I know there's nothing wrong with the network because my laptop's connection is stable. I purchased a D-Link card, and it has worked flawlessly. Unfortunately, I threw away the packaging when the Trendnet card arrived; if I hadn't, then this card would be on its way back to Amazon now. Like the title of my review says: you get what you pay for . . . B0001FSCZO:piece_of_crap.,...stay_away.:jacob_w._clark B0001FSCZO Linksys Storage Link for USB 2.0 Disk Drives NSLU2: Electronics electronics 1 of 7 1.0 Piece of crap.,...stay away. September 29, 2006 Jacob W. Clark I have many Linksys devices and this is by far the worst one. I love Linksys stuff, which is why eveything that i own involving networking is linksis. But this thing is a piece of crap and now i cant recover the 60 gigs of personal pictures that were on my hardrive because of this things format. Spend a little more money and get a dedicated Network Attached Storage hard drive B0000CEPC8:unreliable_-_voice_unit_keeps_breaking:j._a._chen_"loss4words" B0000CEPC8 Plantronics CS50 900 MHz Wireless Office Headset System: Electronics electronics 3 of 3 1.0 Unreliable - voice unit keeps breaking September 20, 2006 J. A. Chen "Loss4words" NYC My company supplies these cordless headsets to its employees so I have alot of experience using headsets. This is the latest upgrade and it is the worst unit I have ever used. It works great for about 3 or 4 months on average. After that, the voice unit stops working. I can hear others speaking to me but no one can hear me. I have gone through 4 of these units in 13 months and the longest lived unit lasted < 5 months. One broke after < 2 months. Other colleagues have complained about the same thing happening with their units. After the experiences I have had with this piece of junk, I would never buy anything from Plantronics with my own money. Avoid this rubbish B000068IG0:hp_has_lost_me_as_a_customer..:andy_white_"http://www.cartoonservices.com" B000068IG0 HP Color LaserJet 4600 Printer: Electronics electronics 1.0 HP has lost me as a customer.. September 28, 2006 Andy White "http://www.cartoonservices.com" Fort Worth TX USA I'm a cartoonist. I need to be able to print color images for clients. I bought this printer two years ago from Staples, for $2500! Worked great for a couple months, after which the toner cartridges started leaking and the print quality rapidly dimished. DO NOT BUY THIS PRINTER! I'm reluctant to buy anything else from HP, knowing that how it performs on the sales floor can be markedly different from how it will perform after a couple months of light use B000068IG0:total_garbage:d._mullins_"ddmj" B000068IG0 HP Color LaserJet 4600 Printer: Electronics electronics 2 of 2 1.0 Total Garbage April 14, 2005 D. Mullins "ddmj" Niceville, FL USA We've had this printer at my office for about 2 1/2 years. It's a giant waste of money. Magenta cartridges spew toner everywhere. Cyan cartridges streak. It's even worse when you use the manual feed. HP has no answers because they deny all the issues. HP's support is lackluster at best anyway. The first time when this machine was under warranty it took me three weeks worth of phone calls to get anything accomplished with them. Stay away from this printer at all costs. If you own one it makes a nice doorstop or paperweight. This is totally unacceptable considering toner and printer costs. I expect more from a product with the HP brand stamped on the box. To bad you can't give 0 stars B000068IG0:magenta_toner_leaks_on_this_model:joseph_c._ross B000068IG0 HP Color LaserJet 4600 Printer: Electronics electronics 3 of 3 1.0 Magenta toner leaks on this model March 17, 2005 Joseph C. Ross Obviously HP has a design flaw on the magenta cartridges. I have also experienced leakage from only the magenta (why only this one? B000068IG0:same_as_the_others:michael_n._singer_"sms8634" B000068IG0 HP Color LaserJet 4600 Printer: Electronics electronics 2 of 2 1.0 Same as the others October 20, 2004 Michael N. Singer "sms8634" Fair Lawn, NJ United States Powder from the toner cartridges get all over the inside of the printer and then ruins every page that is printed. Every page that is printed from my printer has a greyish color due to the powder dirt inside. It is impossible to clean it since the powder is everywhere. The only way to get it clean would be to bring it to a car wash (obviously this would leave the printer with bigger problems than page color). What a waste of money!!! Good thing my office bought it and not me or I would be furious B0002CWPV8:terrible..._spend_the_money_and_get_the_d-link_dwl-g730ap_:julie_fey_"american_expat" B0002CWPV8 Netgear WGR101 Cable/DSL Wireless Travel Router: Electronics electronics 2 of 2 1.0 Terrible... spend the money and get the D-Link DWL-G730AP April 29, 2006 Julie Fey "American Expat" Songkhla, Thailand We travel quite a bit, both business and pleasure, domestic and international... so the idea of a pocket wireless router was a God send. We bought this one at the beginning of our annual leave (aka tour the US in a month). We'd heard good things about the D-Link but with the rebates, this one was practically free.... there was a reason it's always on sale. It took forever to set up. The old firmware is buggy, the new firmware is difficult and touchy to install. The router itself does not seem to be compatible with most personal cable/DSL modems. Out of the eight houses we were in, it would only work with one, although it appeared to connect with several others. It did work with the Ethernet connection of about 70% of the hotels... but that's not a great average. It also gets very very hot and than will quit working until it cools down again. Frustrating. After the first week we went out and got the pocket D-Link.. excellent- plug it in and it works EVERYWHERE: personal homes, questionable modems, hotels, etc... we have used it from Alabama to Bangkok and everywhere in between. It's also about half the size of the Netgear. Save the hassle and get it first. ... also a tip, pick up a little usb wi-fi adaptor with your router. You will find that many people without a wireless router already, will only have a desktop, and you will need to make it "wireless" as you will be connecting their modem to your router. B0002CWPV8:not__acceptable_for_multi-user_or_wep_access:drjulians B0002CWPV8 Netgear WGR101 Cable/DSL Wireless Travel Router: Electronics electronics 1 of 1 1.0 Not Acceptable for Multi-user or WEP Access June 15, 2005 drjulians Houston, TX USA I hoping to use the WGR101 to provide wireless, encrypted access to two laptops from a wired ethernet connection in a hotel. It worked fine in single-user, no encryption mode but that is not what I needed. I experienced severe problems trying to use it in single user mode with WEP or in multi-user mode with and without WEP. One or both laptops would lose the ability to connect to the internet at seemingly random intervals. Sometimes cycling the laptop wireless radio would restablish the connection, sometimes I had to reboot the laptops, sometimes I had to reboot the WGR101, and sometimes I had to reboot the laptops and the WGR101. Stay away from this product unless single user, unencrypted access is what you need B00006HOKR:great_while_it_lasted,_but:rocket_scientist B00006HOKR Sangean DT200V AM/FM/TV Portable Pocket-Size Radio: Electronics electronics 4 of 4 2.0 Great While It Lasted, but June 7, 2006 Rocket Scientist Huntsville, Alabama My Sangean DT200V pocket radio failed after 2.5 years of infrequent use. I kept it in a padded pocket of my briefcase where it experienced no significant shocks or temperature extremes. It worked perfectly on the few occasions when I used it over the 2.5 year period, until yesterday. The buttons, switches, and display still work perfectly, but only very faint white noise can be heard, whether via speaker or via earphone. The volumn of the faint white noise is not significantly affected by the volumn control. The batteries are new, and there is no corrosion from the previous batteries. B00006HOKR:serious_problems:csl B00006HOKR Sangean DT200V AM/FM/TV Portable Pocket-Size Radio: Electronics electronics 2 of 3 2.0 Serious problems April 16, 2006 CSL NW USA Perhaps I got a lemon, but I feel wary of buying another DT200V for 2 reasons: 1. From the day I got it, the power button was so sensitive that a tiny waft of air (no kidding) would turn it off (or back on) at whim. Right in the middle of a song, or talk, this shortly became maddening. Since this is unacceptable for a $50-range radio; and since I didn't want to spend as much money mailing it to and fro as it was worth, instead of sending it back -(OH looking back, how I should have!)- I opened it up myself, and had to physically shave down the plastic underside of the on/off button where it touched the internal power switch. As I couldn't conversely move the guts further from the button, this was the only solution. Thankfully this worked, and the on/off button did not give me further problems after this. However, 2. Not many weeks or months of use in, the radio developed this habit of shorting out or something to where my pre-set stations just scanned as blank 'fuzz' (no station, not even 'intelligent' fuzz/crackle like it knew a station existed anywhere on the planet) and I could get zero stations of anything at all--not FM, not AM, and no TV. This would happen right after turning the radio on, and I should note that I always used headphones (not the ones supplied; as with most, throw them away, they're not worth it). It seemed to me through trial and error that just turning the radio on was fine, but the act of plugging in some headphones joggled some connection or shorted something out, and did this. I tried several different pair and types of headphones (some with noise cancelling switches, some without, and with these On and Off), and used the 'lock' switch on the radio both in the on and off position while plugging in my headphones (as the company I bought them from recommended turning the lock switch on when changing batteries, to prevent shorts), but nothing I have done has prevented this from eventually happening again...repeatedly. It is really annoying when it does, as removing the batteries (which always will lose all your presets, by the way) and waiting several minutes rarely clears the short. Weirdly, the thing I've found which clears the short or re-makes whatever connection is messed up correct itself, is opening up the back (screwdriver required) and kind of pushing the guts (board) one direction or another, kind of scooting it (there's minimal movement available, though), and saying a little prayer and putting the whole thing back together again. Most of the time, that has worked. Occasionally, I've had to repeat the process 3-5 times before it will. Sometimes it lasts several weeks before this'll happen again, other times, it happens multiple times a day. The day I can't fix it (I don't even know what I'm doing that's fixing it!), I'll throw it across the room, against a wall, and I probably _won't_ buy another one. (If I do, I'm keeping the receipt, NEVER opening up the back as it voids any warranty, and returning it (not for repairs--for a refund!) the split second it gives me any trouble of any kind.) For all this, I grudgingly say that it does have very good reception quality of FM (I almost exclusively listen to this), pulls the stations in nicely, and has very low amount of static. When one particular station does, it's usually more the fault of distance, or we're getting out of range, or the batteries are very low- that's at fault. Indoors in a computer-saturated office-cubby environment and not near a window, though, I'd have to say, it has had some significant problems pulling in any more than 3-4 strong-signal stations without major static. But your office environs may vary. (Some are more electrical field saturated than most.) The FM (musical) sound quality itself is good/decent, and I might say better than many...but my 1 criticism on it is a certain 'canniness' of sound quality (across various headphones I've plugged in). It's lacking some fullness of the midrange, and warmth. Also, the bass is not what it could be. I'm not sure given its overall sound quality signature if the addition of a bass boost button would have helped it or not. For me, clarity and volume have helped me ignore some of the lesser aspects of the DT200V's sound signature. However, shopping for my next purchase, that will move up higher in importance B00022TN9A:very_cheap_and_"plasticy":dave B00022TN9A Logitech Cordless Desktop - Black: Electronics electronics 1 of 2 1.0 Very Cheap and "Plasticy" January 28, 2006 Dave This has to be the worst keyboard I've purchased. It's my first wireless. I've used and sold several keyboards and none have fealt as cheap as this. With the added snap-on plastic palm rest it sets the base up too high. Without it there is a 'hump' where your palms go that puts your hands an an uncomfortable angle. The plastic is really bad. It feels really cheap and slick. Before I purchased this I had been trying to get in tough with Logitech about their products and compatability but they never bothered to respond. So, bad product....company on the slide.....doesn't add up to a good value. Logitech used to be the best company out there...or at least one of the best... B00022TN9A:disappointed_with_the_mouse:stephen_matthews B00022TN9A Logitech Cordless Desktop - Black: Electronics electronics 2 of 2 1.0 disappointed with the mouse July 14, 2005 Stephen Matthews Crisfield, MD USA Though I like the keyboard, I've found two serious problems with the mouse. First, it is very sensitive to movement. I've tried making some adjustments but it is still difficult to control. Finally and more importantly, the mouse burns a set of AA batteries about every 8 days. I only use the mouse about 6 hours a week so I should be getting a lot more battery life. I've bought other Logitech products and have been pleased with them but in this case I wish I had bought another brand. B00005UEA6:slower_than_molasses--until_i_formatted_it.:fred_s._hann B00005UEA6 Viking 128 MB Secure Digital Card (SD128M): Electronics electronics 20 of 27 1.0 Slower than molasses--until I formatted it. October 16, 2004 Fred S. Hann Destin, FL USA NOTE TO EVERYONE WHO IS HAVING PROBLEMS WITH THIS CARD--I reformatted it in my camera and it works fine now!! Initially I wrote: I was very disappointed in the shot-to-shot speed with this card (using a Minolta Xg). The Panasonic card that came with the camera, which I thought would be cheap, is THREE TIMES FASTER than this "upgrade". This card is useless to me as it cripples the camera I bought it to work in. It takes FOURTEEN SECONDS from one shot to the next with this card. With the original card, it's less than four seconds. The claim that this is a "high speed" card is dishonest. This is the slowest card I've ever used. I will throw this card away rather than curse someone else with it. B00005UEA6:doa:d._n._weaver_"orhuskerfan" B00005UEA6 Viking 128 MB Secure Digital Card (SD128M): Electronics electronics 16 of 18 1.0 DOA August 7, 2004 D. N. WEAVER "orhuskerfan" Salem, OR United States The first card I received was defective. Even after formatting it in a camera, the image files could not be transferred to any of 3 computers with 2 different O/Ses via USB cable to the camera or card reader. I'm waiting on a replacement. Hope it works B0006OCZHG:all_setup_as_described_here,_unit_not_stable.:fabian_lamaestra B0006OCZHG Linksys WGA54AG Game Adapter 802.11A/G 54 Mbps: Electronics electronics 2.0 All setup as described here, UNIT NOT STABLE. November 21, 2006 Fabian Lamaestra Reston, VA After reading the detailed reports here for how to setup this Linksys gaming adapter unit, everything worked great for several days. I setup the fixed IPs, and all the rest of the settings through the web interface, all seemed well. Note: I'm a network engineer, so the dual-fixed-ip recommendation [one for each segment] is actually pretty normal in other network bridging appliances. I suspect the MS game adapter simply performs the DHCP handshake better than this unit and that is why it is so easy to setup. Then the weird stuff started. After having had this unit turned on for several days, I notice the connection would become slow and not quite as fast as when the Linksys is first turned on. Yet, the XBOX still shows the signal between 48 and 54 Mbps. Strange. I have reproduced this several times, booting the linksys device, then playing all kinds of games online for hours, running XBMC and playing media through the network perfectly. All is good for several hours, but come back the next day after leaving the Linksys on all day/night, turn on the XBOX, and the network connection is spotty again, but the link details show a full speed connection in the XBOX wireless interface details. A swift power cycle of the Linksys unit solves the problem immediately, but why should I need to do this? I suspect some NIC buffer is being filled on the Linksys and the power cycle clears out the unit's network buffers. If anyone has figured out what settings to use to keep this thing stable, I am ready to listen, maybe I should select a G-only network and set the speed at 54 or 48 fixed, maybe that will work? Anyway, I am getting tired of power cycling this thing every day. Good Luck, F. B0006OCZHG:incompatible,_no_support:guy_terry B0006OCZHG Linksys WGA54AG Game Adapter 802.11A/G 54 Mbps: Electronics electronics 1 of 1 1.0 Incompatible, no support August 31, 2006 Guy Terry Little Elm, TX I purchased this device to add to my wireless network, which uses a Belkin wireless router. I had to connect the router directly to the game adapter since it could not be detected by my wireless router. After configuring it, I could never find it once it was disconnected from the ethernet cable from my wireless router. I made three attempts at customer service - my first call was disconnected after 20 minutes, the second call was working with a woman in India, who's headset had a ton of static to add to her accent. I had to end that session because we couldn't hear each other. I then used online chat, and after 90 minutes I still had not solved my problem, and that session was disconnected for unknown reasons. The lady from India did mention that mixing their product with any other wireless router would be a problem, and now I believe her B0000632G0:koss: B0000632G0 Koss KD250 DVD Player: Electronics electronics 4 of 4 2.0 KOSS May 6, 2004 DON'T BUY IT! I bought a KOSS DVD player and it broke in 6 months. I was told I was out of luck because the warranty is only 90 days. They do not do repairs. My only option is to buy a new one and wasn't even offered a discounted price for it. I have seen several complaints like mine about KOSS on the web. They make JUNK and they make it to last just to get past the warranty period and then it breaks. Oh, by the way I loved it until it broke B0007U0INM:caveat_emptor:mark_n._conry B0007U0INM Toshiba Gigabeat MEG-F40S 40 GB Digital Audio Player Silver: Electronics electronics 1 of 1 2.0 Caveat Emptor October 23, 2006 Mark N. Conry Centennial, CO United States I recently purchased a refurbished Toshiba Gigabeat F40 for about $150. Quite a bargain for a 40-gig MP3 player. However, upon reflection, I regret the purchase. The Gigabeat hardware seems to be OK, with good sound quality etc. The major failing is with the included software. As other reviews have pointed out, the Gigabeat will only play encrypted tracks. The Gigabeat is supplied with Gigabeat Room application software to provide the necessary encryption. Gigabeat Room starts automatically when connected to the PC via the USB port. From the time the Gigabeat is connected till the Gigabeat Room application is displayed on the screen is 30 minutes. If you switch from viewing the Gigabeat file directory to the PC file directory, the application hangs. If you try to update your track library, the application hangs. I have yet to get through a single operation from beginning to end without the program hanging. Every time the Gigabeat Room hangs, you have to restart the application, with yet another 30-minute wait to resume. The file directory on the Gigabeat is usually out of sync with what is actually present on the hard drive. Microsoft Media Player version 10 may also be used to synchronize the Gigabeat. I have a 35-gig library. It took Media Player 18 hours to encrypt and copy all 8100 tracks to the Gigabeat. In short, be prepared for a maddening and time consuming experience with this player. Software that gives error messages such as "The Program Is Quitted" and with such obvious fragility may have been expected in 1986 but is absolutely unreasonable in 2006. In my estimation you would be much better off purchasing an MP3 player, even at greater cost, that can play MP3 files directly, with file maintenance provided by Windows Explorer and or Media Player. B00006JPFT:not_satisfied.:d._arnoczky_"deba" B00006JPFT Coby CA-706 CD/MD/MP3 Car Kit Adapter: Electronics electronics 1.0 Not satisfied. July 31, 2006 D. Arnoczky "DebA" North Olmsted, OH USA Even the slightest bump cause the casette to pop out and stop the CD. I will be returning this to Amazon for a refund B00006JPFT:coby_universal_portable_cd/md_car_kit:m._a._vodjansky_"mav" B00006JPFT Coby CA-706 CD/MD/MP3 Car Kit Adapter: Electronics electronics 23 of 36 1.0 Coby Universal Portable CD/MD car kit January 3, 2004 M. A. Vodjansky "mav" Winlock, Wa USA The picture shows the cassette feature along with the car kit. The cassette did not come with the kit. Very disappointed B0006ZACJ8:not_a_good_product:drew_ragan_"drew" B0006ZACJ8 DLO iBoom Boombox for iPod White: Electronics electronics 4 of 4 2.0 Not a good product March 15, 2006 Drew Ragan "Drew" Woodstock, GA United States I purchased this to have a stereo for my iPod for primary use in my office, but to take with me other places. I have the 30 gig Video ipod - it fits loosly. The entire system seems cheaply made. As I mentioned, I wanted to use it in my office - well, at the lowest volume control, it is not very quite, so I would annoy my co-workers if I turned it on. Bottom line - Save your money!! B0008JFJRC:needs_significant_improvement:gerryc B0008JFJRC Motorola MD7081 5.8GHz Digital 2-line Phone: Electronics electronics 3 of 3 2.0 Needs Significant Improvement September 21, 2006 GerryC Northport, NY I replaced a Siemens 8825 with the Motorola 7081 and was, unfortunately, really disappointed. The 8825 while rich in function, is quite lacking in quality. So what's good about the 7081 is: 1. Great design and feel, especially the handset. 2. Nice look to the unit. 3. Well-lit displays. 4. Easy to understand voice prompts when accessing remotely. 5. Reasonable range. 6. Nice feel to the buttons. 7. Fairly easy to go through the setup. 8. Ability to sort the phonebook alphabetically. 9. Base has phonebook that can be shared by the handsets. 10. Motorola customer support (excellent). Now what's not good: 1. Even at maximum volume, you can barely hear the speakerphone on the base. 2. Sound on the handset is distorted, fuzzy. The person on the other end hears a hiss. The volume is adequate, but barely. 3. Cannot search the phonebook. If you sorted it alphabetically and need to access a name starting with "Z" you have to scroll through the entire phonebook. 4. Can't record an outgoing message remotely. 5. Battery level indicator on handset is useless. When the handset is in the charging cradle, it shows a charging indication at all times. When it is out of the cradle, it doesn't show anything. I really wanted to like this unit because it has such a nice look and feel to it but the poor sound quality is a showstopper. B0008JFJRC:unacceptable:j._moore B0008JFJRC Motorola MD7081 5.8GHz Digital 2-line Phone: Electronics electronics 16 of 24 1.0 Unacceptable October 26, 2005 J. Moore I have had this phone for 20 hours - and am returning it. There is static noise on the line when people talk on the other end. The echo of my voice from the earpiece is very distracting - I find it very disconcerting. The wall mount bracket causes the base to stick straight out from the wall - and as a previous reviewer mentioned, is usually up to your nose given the location of most wall mounts. This strikes me as an unexcusable oversight on Motorola's part. Either make it desk only - or do the wall mount right. The speaker for the speakerphone feature is in the back of the phone - while the microphone is in the front of the phone. Dumb design - I feel like I'm either not listening or not being picked up when talking. The volume on the base speakerphone is too low at highest setting. I'm very disappointed in this phone. Much like a previous reviewer, the 1 star is only because I couldn't give it a 0 star rating B0002OZXHO:ipod_is_great_-_itunes_makes_it_suck!:rachel_alice_hunter_"rachelsfx" B0002OZXHO Apple 20 GB iPod M9282LL/A�(4th Generation): Electronics electronics 5 of 7 1.0 iPod is Great - iTunes makes it suck! August 28, 2006 Rachel Alice Hunter "rachelsfx" Florida USA After using RCA and Creative (both suck), I decided to try an iPod--this one since only a moron watches video on a 3-4 inch screen. iTunes doesn't like M$ too much I guess. iTunes is really crappy software. If you have a big WMA audio collection, go elsewhere. Conversion causes sound quality loss especially if you ripped at 64kbps. Protected files can't be converted so you have to burn to a CD then let iTunes rip it. If you don't use iTunes to buy music, 5 stars. If you do, 1 star. The iPod, which I returned after discovering it would take months to convert to iPod compatibility, is flawlessly designed and takes a licking. Google "itunes problems" and you'll find a lot of hate for iTunes. My problem: why NOT support WMA files? iPod would grab 99% of the market if they did and kill the upcoming M$ MP3 player that will even play iTunes stuff B00065XSP8:the_volumen_is_not_enough:hernan_espinoza_ch B00065XSP8 Macally Podwave Portable Stereo Speakers for iPod: Electronics electronics 1 of 1 2.0 the volumen is not enough November 2, 2006 Hernan Espinoza Ch When I put this device in my mp3 player, I espect listen the music but I need a room completly silent and obviusly that no was my intention. B0001J3Q9W:killed_my_ipod_:thomas B0001J3Q9W Belkin F8V7067-APL Mobile Power Cord for iPod: Electronics electronics 2 of 4 1.0 killed my ipod May 17, 2006 Thomas Arizona I was using this power cord in conjunction w/ the belkin fm transmitter during a recent 4 hour car ride. when I unplugged the ipod, it was incredibly hot, and now it does not work (I get the folder w/ the exclamation point on the display). I tried to restore the ipod, but it is toast B00064L1AI:didn't_work!:q._nguyen B00064L1AI Samsung SIR-T451 High Definition Terrestrial Tuner: Electronics electronics 0 of 1 1.0 Didn't work! November 6, 2006 Q. Nguyen Minneapolis I was extremely excited when I received this product and have had good success with Samsung products. However, when I made all the connections, the unit didn't work. I was disapointed and frustrated. All the connections and settings were correct, but it didn't work. I have an older DVI connection instead of the newer HDMI digital connection. I returned the product and bought the Humax brand HDTV tuner. I bought a DVI to HDMI cable and connected the unit. It works like a charm! I don't know what was wrong with the Samsung SIR-T451, but I wouldn't recommend this product to anyone. I'm also having second thoughts about Samsung products now. It seems like the reliability/quality factor of Samsung products has declined now that they are more mainstream B000261N6M:not_worth:viswaprasad_karunakaram B000261N6M Coby DVD-224 Compact DVD Player: Electronics electronics 1 of 1 1.0 Not worth November 21, 2006 Viswaprasad Karunakaram Phoenix, AZ This player worked for 2 months. Then all of sudden it started failing with "no disk" message. Please do not go for cheap players B0006ZKX7Y:warning!_batteries_die_quickly!!:silent_watcher B0006ZKX7Y Think Outside Bluetooth Stowaway Travel Mouse for Pocket PC PDA: Electronics electronics 1 of 1 1.0 Warning! Batteries die quickly!! January 19, 2006 Silent Watcher NY, USA I've had it for one week only and I'm using 3rd pair of Duracell batteries right now! I was using it for 3-4 hours per day (I have another mouse at work). Stayed switched off for the rest of the day in order to save batteries. Nice mouse when it works.. Mine is piece of junk, maybe the latest batch they've got was not up to standard. So I totally agree with Mr. Loftin.. And it's silver one in my case, not a black one I've ordered.. B0006ZKX7Y:stay_away!!!__eats_batteries!!!:scott_m._loftin B0006ZKX7Y Think Outside Bluetooth Stowaway Travel Mouse for Pocket PC PDA: Electronics electronics 4 of 4 1.0 Stay Away!!! Eats Batteries!!! January 16, 2006 Scott M. Loftin I can use it for about 5 working days and Ka-Put! (Even though I switch it off when I'm not using it.) There is no intelligible low battery indication or warning either. Also when I changed batteries, the battery contacts fell out. Poor quality B00009KO0D:not_by_apple!!!!!!:b._sheehan B00009KO0D Apple - Data cable: Electronics electronics 1.0 NOT BY APPLE!!!!!! June 24, 2006 B. Sheehan Philly I wanted an original apple usb cord for my iPod, and the description said this is, but it isn't. So if you're like me and you want the original, don't buy this one B000E5XHGK:not_what_i_thought:treble B000E5XHGK Apple MA242LL/A iPod AV Connection Kit: Electronics electronics 8 of 20 1.0 Not what I thought February 22, 2006 Treble Arizona This product is not very good. There is no display on the TV, just a black screen. The remote, which is just a pause button anyways with no menu functions, does not make a difference because you are unable to see your small Ipod screen from far away. The overall video quality is quite low, even with an s-video cable B000CSP8IO:stay_away_from_this_product:leduberto_zepulturero B000CSP8IO Griffin Technology 9781-TRP30BK iTrip FM Transmitter with LCD and Dock Connector for iPod: Electronics electronics 2 of 2 1.0 stay away from this product November 9, 2006 Leduberto Zepulturero NYC, NY Avoid this product at all costs!!! I should've listened to the other reviews but NOOOO, I just had to see it for myself. This product worked (barely) for 2 weeks then just totally died. In the short time that it worked, the sound quality was just horrible. No matter what free channel you play it on. I have a good 40 mile drive one way (not city or metropolitan driving) and in that span, I'll have to switch channels between 3 to 5 times. Kudos to Amazon's hassle free return policy, I was able to return it and get the Belkin TuneBase FM which I highly recommend B0009U6YQK:the_worst:t._b._clavel_"jb_clavel" B0009U6YQK CTA DIGITAL iPod Fold-Up Amplified Aluminum Speakers ( White ): Electronics electronics 21 of 23 1.0 the WORST November 20, 2005 T. B. Clavel "JB Clavel" New York Not at all durable due to very, very cheap construction. I had to massage my batteries to get the speakers to play. A total waste of time to purchase, try to use and return. Couldn't even give these away B0002YY1HW:phone_stops_ringing:dave_"jungleman_techy" B0002YY1HW AT&T 974 Small Business System Speakerphone with Intercom and Caller ID/Call Waiting (Titanium Blue): Electronics electronics 1 of 1 1.0 Phone stops ringing November 9, 2006 Dave "jungleman techy" Miami, FL I have a VOIP setup with voicepulse. This phone works great as long as I don't assign phone numbers to the presets. When I do it stops ringing after a few days. The lights flash indicating an incoming call and I can answer the phone if I notice the lights flashing but it doesn't ring. If I reset the phone to defaults, erasing all presets, then it works OK. I got a new one from AT&T and it does the same thing. I love the headset button to switch between speaker and headset. Let me know if you know a workaround B0000A8Y5K:barely_works_-_low_audio_quality:andrew_trieger B0000A8Y5K Panasonic KX-TCA92 Hands-free Headset with Comfort Fit and Fold Design: Electronics electronics 1 of 1 2.0 barely works - low audio quality June 14, 2006 Andrew Trieger callers can barely hear me, even with the mic right in my mouth (volume adjustment on cord doesnt affect it). and even worse, callers hear an echo of themselves, the mic picks up the caller in the earpiece enough to resend it! (echo!). Must be because its all on the same arm or something crappy. This makes it basically unusable, so waste of money, throw away, going to buy a better one B00005UK9X:incorrectly_described:j._ramirez_"jose" B00005UK9X Garmin Portable Friction Mount for GPS 010-10306-00: Electronics electronics 9 of 9 1.0 Incorrectly described September 22, 2006 J. Ramirez "Jose" Piscataway, NJ This Item is not described correctly. This ITEM is NOT for Garmin c550 or Any of the C line. I had to returned it at my OWN EXPENSE. AMAZON please correct the description of the ITEM B00004Z0BN:metal_stablized_system...:b._roy_"roytech" B00004Z0BN Sennheiser MX-400 In-Ear Headphones: Electronics electronics 2.0 Metal stablized system... October 10, 2006 B. Roy "RoyTech" Sunnyvale, CA, USA On the back of the package it says - 1) Transparent sound and powerful bass. - The "Transparent sound" part is true and "powerful bass" part is totally untrue. 2) Metal stabilized system for high levels. - What was that again? Metal stabilized system?? It has antiroll crossbars I guess!! When companies start making vague claims about their product - thats when you know that there is a problem. These sounded terrible at first - no bass - period. The sound changed for the better once I put on the foam covers. I could hear some bass at that point but even after equalization, it was clear that this product is designed to deliver a lot of high frequency, decent midrange but little by way of bass - even though it claims to have frequency response going from 18Hz to 20kHz. It fits my ears properly, so that is not a problem. This product sounds far inferior to a pair of "Aiwa" ear-buds that came with a "Made in Japan" walkman purchased in 1990! I wouldn't even compare the sound of these MX400 to the excellent Koss over the ear headphones I purchased recently. Maybe they are better than the IPOD headphones (which suck even worse), and the reason people give this 5 stars. Really - no more than a 2 star product. Expected much better from Sennheiser. With this experience, I've decided not to go for their noise cancelling headphone and instead go with the one from Panasonic. Reputable companies should think twice before selling junk in the marketplace B000067SVG:useless_-_does_not_retract:james_murphy B000067SVG Targus PA220U Retractable USB Cord: Electronics electronics 4 of 4 1.0 Useless - does not retract April 6, 2004 James Murphy Pelham, MA USA I agree with the previous review. This phone cord worked twice. Now, it only retracts about half way, and keeps getting worse. I'm returning it for a refund. Don't waste your time with this B00009YUOF:the_worst_technical_support:chas B00009YUOF PNY P-FD256U20-RF 256MB USB 2.0 Flash Drive: Electronics electronics 7 of 9 1.0 The worst Technical support July 5, 2004 CHas Wisconsin If you have problems with your flash drive ( like I did) don't count on any technical support. Lines are all automated and wait is always over 20 minutes for live support. Not to mention that it disconects you when it is done telling you this. PNY tech support is a joke B0002GWP46:brand_new_and_its_broken!!!:hotwhipt/a_"hotwhip" B0002GWP46 HP DeskJet 3845 Color Inkjet Printer: Electronics electronics 2 of 8 1.0 Brand new and its BROKEN!!! March 27, 2006 HotWhipT/A "HotWhip" Tx I'm mad. I bought this one to replace my old one. This one and the other one are doing the samething. I had a chat with an HP service helper and they determined that it was broke. Their customer service is top notch thought! They are sending me a new one for free and apearently I get to keep the ink cartidges for free because of my troubles B0009T8HNE:i've_had_dish_networks_for_two_years_now.:jt B0009T8HNE Dish Network Dish 500 Satellite Dish Assembly w/o LNBF: Electronics electronics 1 of 1 2.0 I've had Dish Networks for two years now. November 18, 2006 JT San Jose, CA United States I like the Dish Networks technology and the potential that it could be. One DVR which covers two rooms is great. The picture is clear when it works. The menus/programming are intuitive. The pricing is reasonable. But, my complaint is RELIABILITY and SUPPORT...for the two years I have had Dish my TV picture seems to go out every 6 months or so. Everytime I talk to Dish customer service I get a different reason why it could be out. Several times I have gotten new DVR boxes mailed to me and there is always a dispute about who should pay. Several times I have had Dish Net come out to my house and they have always tried to make me pay until I told them I'm tired of the hassel and just cancel me. Now my dish is out again this weekend and I am missing the Ohio State / Michigan game because my TV says no Dish Signal (reason tbd). Anyway, if it worked consistently as advertised I would give it 4 or 5 stars. But due to reliability I give it 2 stars. And with Murphy's Law it always goes down when you want to watch that big event (prompting me to write this review instead of watching the game today)!! I may have to switch back to cable. - J.Clark / San Jose, CA B000EWD4TS:no_technical_support_available:data_guru B000EWD4TS SanDisk 2 GB Cruzer Micro with U3 ( SDCZ6-2048-A10, Retail Package): Electronics electronics 3 of 4 1.0 no technical support available October 7, 2006 Data Guru New Jersey This product stopped working a few days after purchase. 5 phone calls and 2 emails were not returned by SanDisk. This product did not work as advertised and no technical support of any kind is available. I would not buy this brand again B000BJ3BRO:olympus_ws-320m_:haim_perlstein B000BJ3BRO Olympus WS-320M 1 GB Digital Voice Recorder and Music Player: Electronics electronics 1 of 2 2.0 Olympus WS-320M November 16, 2006 Haim Perlstein The Voice recorder meets all my expectations and more Easy to use, easy to transfer great results B00003006K:buyer_beware:g._price_"techo_hobbyist" B00003006K Linksys EZXS88W EtherFast 10/100 8-Port Workgroup Switch: Electronics electronics 1 of 4 1.0 Buyer Beware January 21, 2006 G. Price "techo hobbyist" Detroit, MI USA All ports began running slow after just 6 months of use. Followed LinkSys RMA process and they sent me a hub in return by mistake. I followed yet another LinkSys RMA process and had to wait TWO MONTHS for the replacement switch covering their mistake. The replacement switch died after 1 week of use. The latest RMA unit ran excessively Hot until the smell of burning plastic left the air and then it would not power up. This is what I have learned about Linksys: #1) This should be a simple network pass-through device and it should not fail unless manufactured poorly - Linksys apparently cannot make a good one. #2) Do not even think about turning a broken unit into Linksys under their RMA process, they will simply send you a refurbished unit and it cannot be trusted. If these cheap switches fail they cannot be fixed and the original manufacture was flawed in the first place. #3) Choose a competitors product - I have had other brand switches running for years with no issues B0007OWNC2:customer_service_not_helpul:jul9876 B0007OWNC2 Netgear RangeMax Wireless PC Card (WPN511): Electronics electronics 1 of 2 1.0 Customer service not helpul June 26, 2006 jul9876 New York, NY Purchased this for my laptop (it was supposed to match the Rangemax modem). The adapter was not being recognized by my machine, and I contacted customer service. The customer service rep was obviously from India (suprize!). Unfortunately my inquiry was not resolved and I returned the product back. Probably would explore other brands next time around. B000EHUR3O:low_power:richard_p._stephens B000EHUR3O Microsoft Wireless Laser Mouse 5000- Metallic Black ( 63A-00001 ): Electronics electronics 2.0 low power November 9, 2006 Richard P. Stephens I don't like it because it is always saying "low power" and I do every thing it said to trouble shoot the problem with out and luck fixing the problem B000EHUR3O:microsoft_5000_laser_mouse:donald_a._sanders B000EHUR3O Microsoft Wireless Laser Mouse 5000- Metallic Black ( 63A-00001 ): Electronics electronics 0 of 1 2.0 Microsoft 5000 laser mouse October 5, 2006 Donald A. Sanders I just purchased this mouse. It has a good feel. It does not scroll as smoothly as I would like. Contrary to what Microsoft says, the buttons are not programmable -- you have to select from a predefined list. I chose to use the small silver buttons on the side as "copy" and "paste". Neither one works.Another irritation, I am already getting a popup that says the "signal" is weak -- about 18" away, yet the menu says it is fine I got a great buy on it at OfficeDepot (half price), otherwise I would return it B0001Z5KHC:poor_sound_quality_-_interference_from_other_electronics:k._strong_"kudzuken" B0001Z5KHC Panasonic KX-TG5200M GigaRange Supreme 5.8 GHz DSS Expandable Cordless Phone: Electronics electronics 1 of 1 1.0 Poor sound quality - interference from other electronics March 18, 2006 K. Strong "Kudzuken" Las Vegas, NV Interference from other electronics is a severe problem - I had to return this item for a refund. If you can locate it several feet from any other electronics, it might work for you, but who wants a phone that you cannot place on your desktop, near a computer B0000ZKFKA:not_for_hardcore_gamers:damien_brooks B0000ZKFKA Gateway 17" Widescreen LCD Flat-Panel TV: Electronics electronics 2 of 2 1.0 Not for Hardcore Gamers August 11, 2005 Damien Brooks Orlando, FL I am a LONG TIME pc user and pc gamer. I wanted this for a 1. tv 2. pc gaming monitor 3. xbox gaming monitor 4. dvd veiwing device. Here is how I rate this monitor on these four levels on a scale of 1 to 5: 1. tv = 2 2. pc gaming monitor = 2 3. xbox = 1 4. dvd = 3 The ghosting for normal operations is almost too much to live with. I returned this item just so you know. The rca inputs gave me only black and white images. This could have been because my monitor was defective. I am not sure. Ghosting during gaming was very bad. Worse than that was it's lack of good brightness control. This is not for gamers B00081QDDO:good_sound..._sucks_for_ipod!!!:darnley_r._hodge_jr. B00081QDDO Alpine KCA-420i iPod control interface: Electronics electronics 1 of 2 1.0 Good sound... SUCKS for iPOD!!! March 13, 2006 Darnley R. Hodge Jr. The ONLY reason i bought this unit when I saw it in the store was for the iPod controller feature. I really looked forward to being able to control my iPod from the deck and hiding my ipod in my dash completely out of sight. Boy was I disappointed! The iPod adpater works and all... but barely. It takes FOREVER to scroll through the songs, artists or albums. Why the hell would Alpine put out a product that has an inferior scrolling mechanism and then lock you out of the iPod so you can't even select songs from the iPod itself? I have over 3000 songs on my iPod... by the time I scroll to the song I want I've already reached my destination... and that's if I even find the song at all! So now what I have to do is unplug my iPod, scroll to the song I want, then plug it back in. (Luckily the reciever continues to play whatever song was already playing when you plug your iPod in.) But again... that defeats the whole point of having the controls built into the deck. Bottom line, the iPod control feature flat SUCKS. The deck features a "quick search" function... but it is uselss... it isn't used to search through artsts or albums... only individual songs and there's no way to skip 10, 20, 30 or 100 songs at a time... only 1 by 1... What's "quick" about that? I have 3000 songs and hundreds of artists and albums and Alpine thinks I'm supposed to go through them 1 by 1???? Another annoying thing about this unit is that when you skip through songs while the iPod is playing, the display just says "song up" or "song down" instead of just showing the name of the damn song! Who thought of that? What possible help could "song up" be to anyone? Just show the name of the song while I'm skipping through... that makes more sense right? There are a bunch of other problems I have with the practicalness of this unit when used with the iPod adapter and iPod... but the sound quality is great which is the most important thing... but then again... who cares if the sound is great when it takes you all day to find the song you want to listen to B00081QDDO:not_good:steven_t._limbert_"pismo10" B00081QDDO Alpine KCA-420i iPod control interface: Electronics electronics 13 of 19 1.0 Not Good June 8, 2005 Steven T. Limbert "pismo10" Marshfield, MA United States I bought an Alpine 9847 and the Ipod interface. I works but it totally hijacks your Ipod. The beautiful intuitve, fast controls on the Ipod itself are locked out and you can ONLY control the Ipod from the car stereo. It is therefore very hard to deal with especially if you have a large music catalog on you Ipod. It is very slow, not at all intuitive. Even after getting used to it it is no good. The info on artist, album or song title imports from the IPod very slowly. Turning the volume knob is equivalent to circling on the Ipod but one turn eqauls about 3 spots on the list unlike one circle on the Ipod which equals dozens of spots on the list. Therefore if you have a large catalog you have to spin the volume knob 100 times to get thru a long catalog list which takes forever........Very annoying, very slow, very cumbersome. If only it did not deactivate the normal controls on the Ipod itself. A better and much cheaper solution is to find a car stereo with some form of line in, either stereo mini plug or RCA jacks. The just connect directly and use the IPods own controls which are infinitely better. I replace an old stereo to get the Ipod option and am very sorry I did so B000B5UINS:junk:john_m._goeke B000B5UINS Insten - Black Gooseneck FM Transmitter with Car Charger for iPod Nano: Electronics electronics 1.0 Junk November 6, 2006 John M. Goeke The only thing this item is good for is charging your ipod. The transmitter is so weak all you hear is static buzz with muffled music in the background. Don't waste your money. And, don't expect any help from the manufacturer who refuses to answer emails or accept a warranty return. B000B5UINS:insten_-_gooseneck_fm_trans._w/_car_charger_for_ipod_nano_,_:carol_burnett_"cb" B000B5UINS Insten - Black Gooseneck FM Transmitter with Car Charger for iPod Nano: Electronics electronics 1 of 1 1.0 Insten - Gooseneck FM Trans. w/ Car Charger for iPod Nano , October 11, 2006 Carol Burnett "CB" Tokyo, Japan Terrible Design did not fit my car's electical outlet, it does not work with my Jeep Liberty. The jack construction is defective does not even power on B00005K4PO:font_size_stuck_ridiculously_small:philip_greenspun B00005K4PO Brother PT-1750 Electronic Labeling System: Electronics electronics 1.0 font size stuck ridiculously small October 1, 2006 Philip Greenspun Cambridge, MA USA Mine worked pretty well for about the first 50 labels that I made. Then the font size got stuck ridiculously small so that the message only covers about 10 percent of the tape surface. If you want really small labels with a hard-to-read font size, you could use my PT-1750 to print them out and then cut down with scissors to eliminate all of the wasted label area B00005K4PO:a_few_problems: B00005K4PO Brother PT-1750 Electronic Labeling System: Electronics electronics 16 of 26 1.0 A few problems June 15, 2004 I just purchased this product. In the instruction manual, it states that only the Brother AC adapter should be used and any other will invalidate the warranty. Why is it that only a Brother adapter can be used when AC adapters are supposed to be standard? A tactic to increase sales? The adapter itself costs an additional 15 to 20 dollars. In addition, I agree with some of the other reviewers that a significant amount of label is wasted with each printing due to the empty space on either side that must be cut off. The 2 line printing does look very nice. I have not used many of the other features and so cannot comment on those B000FJLBTU:don't_buy_this_ink_hog:david_h._reed B000FJLBTU HP Deskjet F380 All-in-One Printer/Scanner/Copier: Electronics electronics 2 of 2 2.0 Don't Buy this Ink Hog November 17, 2006 David H. Reed Kirkland, WA United States Don't even accept it as a freebie (as I did) unless you are prepared to pay $1.15 per sheet for color ink. That was my experience with the first color cartridge, which was fully consumed on a total of 20 sheets, 12 of which were heavy color, the others being mixed color and text or very light color. At $17.99 per color cartridge and $14.99 for black I calculate the outrageous, obscene $1.15 per sheet figure for ink. This is about six times greater than the average ink cost for my old HP720c, which unfortunately does not work with my new HP Pavilion PC (no printer port on this model, among other issues). I have vowed to not purchase any HP product in the future if I can possibly avoid it. I just ordered a Canon Pixima to replace this ink hog. On the positive side, the print quality is good, speed is excellent, and color fidelity is fair. The software installed without incident, and the machine is easy to operate, but the HP software is overbearing and constantly trying to sell you something--worse than daytime television B000FJLBTU:hp_-_bad_printers,_bad_service,_and_a_bad_name.:jj_bugs_"jj_bugs" B000FJLBTU HP Deskjet F380 All-in-One Printer/Scanner/Copier: Electronics electronics 9 of 9 1.0 HP - Bad printers, bad service, and a bad name. October 5, 2006 JJ Bugs "JJ Bugs" Minneapolis, MN U.S.A. Bought this all-in-one printer and the install disc was bad. Prints test page every time I turn it on. Won't print. Jobs get stuck and cannot cancel. Spoke with customer service for 1.5 hours! Yes, that long. They would not refund me and told me that I should have did a better job researching their products. They got that right. All I could get was a refurbished replacement that also performs like crap. HP has lost a customer forever, and I am making it my mission to share with everyone how terrible they are with products and customer service. Canon, meet your next customer B0001RM3WU:doesn't_fit_etrex_vista_cx:richard_tabbutt B0001RM3WU Garmin Etrex Windshield Mounting Bracket: Electronics electronics 2 of 5 1.0 Doesn't Fit eTrex Vista CX August 29, 2006 Richard Tabbutt Woodinville, WA USA This bracket will not fit the eTrex Vista CX. This is because the battery cover supplied with the bracket (replaces the original battery cover to provide attachement lugs) will not clear the microSD card socket. This is very frustrating because the Garmin website even shows this bracket, part number 010-10361-00, in the eTrex Vista CX accessories list. So if you have a CX, don't purchase this item B0007ZFM38:not_too_good!:f._contreras_"chama" B0007ZFM38 Logitech 980356-0403 Stereo USB Headset 250: Electronics electronics 0 of 2 2.0 Not too Good! November 3, 2006 F. Contreras "Chama" Las Vegas, NV The first few times it worked great, after that i haven't been able to use it, for some reason incoming audio is good but the mic does not work, i have to use my computer's which is anoying so i stopped using altogether. Waste of money B0001MR140:don't_buy_vtech_-_battery_issues:lg_"lakeviewmom" B0001MR140 VTech ip5825 5.8 GHz DSS Cordless Speakerphone with Dual Handsets and Caller ID (Pewter): Electronics electronics 1 of 1 1.0 Don't Buy Vtech - BATTERY ISSUES August 24, 2006 lg "lakeviewmom" Chicago, IL We have bought 3 of these VTech Phones for our house. Since the begining we have had battery problems. It is really annoying when you have to make a phone call and your phone doesn't work because of the battery. At any point in time, at least one of the phones constantly reports a "low charge" or "no battery" message, which means you can't use that phone. Of course, you can hear the ring from the phone that is never at the same room that you are, so you have to run to pick up the other phone, since the one in your location has the no battery problem. As other reviewers have noted, this in spite of the fact that we make minimal use of the phones and leave them in the charger most of the time. On the beginning we used to take the battery out of phone and put it back in. That doesn't quite work anymore. I tried to get support but you can't get a live person at the VTech number. On their website they suggest replacing the batteries, but they are rechargeable, so how many times are we really supposed to buy new rechargeable baterries (I have already replaced it once)? I know we wont buy VTech products again. B0001MR140:very_disappointing_in_numerous_ways:ken_januski B0001MR140 VTech ip5825 5.8 GHz DSS Cordless Speakerphone with Dual Handsets and Caller ID (Pewter): Electronics electronics 3 of 4 1.0 Very disappointing in numerous ways August 16, 2006 Ken Januski Philadelphia, PA USA It's not often I find a product that's as disappointing as this. The interference problem is very serious and makes most conversations a pain. Moving around the house and outside of the house, standing on your head holding the phone at a 45 angle, etc., are part of the daily ritual in trying to hold a legibible conversation. But that's not the bad part. The bad part, as at least one other reviewer has noted, is that each of the phones constantly reports a "low charge" message or something similar. This in spite of the fact that we make minimal use of the phones and leave them in the charger most of the time. The only solution I've found is to take the battery out of phone and put it back in. Then it will work for a day or two. I suppose it could be just the batteries. But if so then we were shipped batteries that were already on life-support. I read a few good reviews of this phone, and of course there are a number right here. But out experience has been the opposite. The phones have been nothing other than a pain B00008DSR5:beware:j._turner B00008DSR5 GN Netcom 4170 Headset Telephone: Electronics electronics 6 of 8 1.0 Beware January 14, 2005 J. Turner Houston, Texas United States I picked up this headset telephone because I am spending more and more time on the phone. Almost immediately after plugging it in, everyone I called asked me to speak up, repeat what I said, and that they could not hear me very well. When I attempted to setup a new voicemail system, I found out why. The headphone is amplified, but the microphone is not. No matter how loud I spoke (or shouted) the audio is severely suppressed and barely audible. Simply stated, this product is not usable. B00006B903:targus_pa400u_defcon_1_ultra_notebook_computer_security_system:saliya_ratnayaka B00006B903 Targus PA450U DEFCON KL Notebook Computer Key Lock: Electronics electronics 1 of 5 1.0 Targus PA400U DEFCON 1 Ultra Notebook Computer Security System September 7, 2006 Saliya Ratnayaka Tucson, AZ, USA I had this for approximately 2 years. It worked fine for couple of months but suddenely started to activate the alarm without any disturbances. One day I left my laptop attached the alarm in my office for about half an hour. During this period, the alarm was activated and I was embarrased to face my office workers. This is without increasing the sensitivity of the alarm. I sent it back to Targus and they were nice enough to give me a new alarm. But after several months, it started the same problem. So, now I am afraid to use this security system with my laptop. But I did not face problems like changing the combination by its own. You can use it without the alarm activation (i.e: without batteries) but the cable is so thin, it is not recommended to protect any valubles B0008ESGAY:poor_macintosh_support:ben_crane B0008ESGAY Olympus DS-2 Digital Voice Recorder: Electronics electronics 3 of 3 1.0 Poor Macintosh Support November 20, 2006 Ben Crane I bought this item after seeing the almost uniformly good reviews including the one that says there is good Macintosh support. Unfortunately the player does not work well with the Macintosh. The included software often crashes and does not seem to be able to import DSS files. The software can move the files between the recorder and the computer but the files do not appear in the software window. The use interface is also fairly crude and looks as if it was ported directly from Windows 3.1. The DS-2 appears to the finder as a standard USB disk and I have been able to copy the DSS files from the player to the compuer using the finder. It is then possible to play the DSS files by double clicking them, but it will only play one file. If you want to play another file it is necessary to completely quit the DSS player and relanch it. Exporting the files to a format usable by other software such as AIFF is also nearly impossible. There is an export function in the menu, when it is selected it asks were the new file should be saved but no file ever appears. Unfortunately there is no other Macintosh software available to read or convert DSS files as Olympus refuses to allow others use the the format on the Macintosh. Search of the internet reveals that others have found extremely painful ways of converting the DSS files such as playing the entire file and re-recording it with another program B0009Q4PHO:poor_build_quality:c._castille_"ccastille" B0009Q4PHO Ultimate Ears Super.fi 5 Pro Earphones (Black): Electronics electronics 3 of 7 2.0 Poor build quality October 18, 2006 C. Castille "ccastille" Los Angeles, CA Great sound, but the build quality is just not there. On a recent trip to Europe, the left bud completely fell apart and the leads became disconnected from the bass driver. They are only two months old and I always keep them in the case! I had to solder it back together and then super glue the bud back together. Since then I've also had to superglue the right bud as well. Also, the cable sheath is fraying over one bud lead, revealing the fine speaker wire underneath. I don't expect these phones to last much longer which is too bad. They are great sounding and comfortable, but unfortunately they seem to have cut some important corners. Be warned B000779RZA:aweful_headphones!:richard_g._trezevant B000779RZA Sony MDR-EX51LP Fontopia Headphones, Blue: Electronics electronics 1 of 5 2.0 Aweful Headphones! October 6, 2006 Richard G. Trezevant SF, CA These headphones are so expensive and they are aweful! I dont remember if it was the left or the right but one side of the cord is longer than the other; its very annoying! I tried to loosen it and the wire was showing, what a piece of s***. Its very annoying because the ear bud fell out when I listened to music and it doesnt feel comfortable. Also the rubber on the ear bud falls off very easily. They are too expensive for a piece of junk! The only reason I rate it two stars is because the sound is great on the headphones. Instead purchase the Sony SRF-HM01V S2 Sports Walkman Street Style Headphone Radio. I purchased those after these fell apart and they are much better :) B000H72MMU:just_not_good_enough:s._walton_"bibliophile42" B000H72MMU Monster iCarPlay Plus Wireless FM Transmitter/Charger for iPod: Electronics electronics 10 of 11 2.0 Just not good enough October 22, 2006 S. Walton "bibliophile42" Janesville, WI USA I SO wanted to love this thing. I have an iPod that I am seldom without, and my car isn't iPod compatible. I bought a Monster Wireless FM Transmitter/Charger so I could listen to my music on the way to my class reunion. Unfortunately, the thing just didn't work for me. There are 8 preset stations (low on the dial) and if all of them are in use, you're out of luck. I don't live in a huge city (maybe 60,000 with farmland all around), but only two of these stations were available. Although I was able to tune in to my iPod, it wasn't crystal clear. In fact, it wasn't even plastic clear. The static sometimes overrode the music, which drove me nuts. This is like a fax machine - the original may be spotless, but the fax will be a little fuzzy. If you have a cassette player in your car, there are adapters that go through the cassette player and are much better. If your car isn't iPod compatible and you don't have a cassette player, you're better off just burning a bunch of CD's B000BI7NGU:poor_item_choice:aimee_louise B000BI7NGU Palm Z22 Air Case: Electronics electronics 1 of 2 1.0 Poor item choice August 19, 2006 Aimee Louise Florida If all you want is a carrying case that is transparent and UNABLE to use the stylus with the case closed, then this is the perfect item for you(sarcasm). The Palm Z22 Air case states that you are able to use the sylus with the case closed, this was the selling and purchasing point for this item. Problem is, this feature does not work. Affortable, but what is the point if you can not utilize the item for it's selling feature... B00008UVAC:do_not_buy_this:spends_too_much B00008UVAC RCA RCU410MS Universal 4 Device Remote Control (Platinum): Electronics electronics 1.0 Do Not Buy This April 10, 2006 Spends Too Much Internet I bought this even with the bad reviews. I have one of it's predecessors, a black one and it worked fantastically for 5 or 6 years. It still does but the on/off button finally died. I figured... how bad could it be? The one I have worked great until now. It's BAD. It's AWFUL. It's WORTHLESS. I've had to enter the codes for my tv and vcr 3 times today. The batteries are brand new... that's the first thing I tried. DO NOT BUY THIS. I only gave it a 1 because you can't give it a zero B0009KF2PY:light_duty:michael_f._agunzo_"toolengineer" B0009KF2PY Velocity Nylon 600D CD Wallet (224 capacity, Black): Electronics electronics 5 of 6 2.0 Light Duty June 26, 2006 Michael F. Agunzo "Toolengineer" New York Product is light duty, over time it will not hold up to being flipped and opened often, If longevity is your goal purchase elsewher B000A3IAKY:disappointed_in_video_quality:j._wooding B000A3IAKY Creative Webcam Live! Motion- Titanium: Electronics electronics 2 of 3 2.0 Disappointed in video quality March 8, 2006 J. Wooding California USA From the photos and specs I thought this was "the camera" to have (both my wife and I loved the look of the camera from the photos we had seen). There's always exceptions to rules, and the rule, "the more you pay, the more you get" is the exception to the rule for this web camera. After getting it, I had difficulty in getting the software to load but eventually had success. I was very disappointed in the video quality. There seemed to be a lot of noise in the picture, and tweaking gave no improvement. I returned it to Amazon and took a lose in the return shipping cost, but considered it worth it just to get the price of the camera back. Amazon lived up to their part and refunded the price paid (less return shipment) with no hassle B000A3IAKY:not_compatible_with_some_notebooks:carlos_escobar B000A3IAKY Creative Webcam Live! Motion- Titanium: Electronics electronics 2 of 9 1.0 not compatible with some notebooks February 18, 2006 Carlos Escobar this webcam is not compatible with acer ferrari, with windows xp. I don't know why. I just returned it B0006I5I7G:way_overpriced:gadgester B0006I5I7G Monster Ca M1000DV HDMI to DVI Cable ( 123165 ): Electronics electronics 8 of 18 1.0 Way overpriced January 12, 2006 Gadgester New York If you got a crappy brand TV like the Samsung the East Meadow guy got, you might need a super-expensive cable like this to make the image quality acceptable, but if you have a namebrand TV like Sony or Sharp or Philips or Toshiba or Panasonic, a $15 HDMI-DVI cable totally suffices. This Monster cable is no better than the $15 guy (also available on Amazon, just search for "hdmi dvi cable"). Don't waste your money B0002DUQCM:doesn't_last_as_advertised:f._farahani B0002DUQCM Rechargeable Aa Nimh Batteries: Electronics electronics 1 of 5 2.0 Doesn't last as advertised February 10, 2006 F. Farahani I have a Canon S2 and these batteries last almost as long as the cheap costco non-rechargable ones. They do take upto 8 hours to charge and Amazon is correct about that. Does anyone know of good long lasting 2500 Mah rechargable batteries? B00008RS97:i_hate_dese:ernest_jackson_"e.b.j." B00008RS97 Koss UR29 Collapsible Portable Headphones: Electronics electronics 0 of 16 1.0 I HATE DESE July 16, 2006 ernest jackson "E.B.J." houston texas I HATE DESE KIND OF PHONES. DAY HAVE EM AT MI SKOOL N DA R TURRBLE. THEY HAV OK SOUND BUT DAY FEEL TURRBLE LIK PUTTIN TOO MUCH PRESSURE ON UR EARS. THEY F--KING HURT DOG. DON'T GET DESE, GET SONY H.EAR DOSE R ALWAYZ DA BEST B00008RS97:portable?:dunckel_"dunck" B00008RS97 Koss UR29 Collapsible Portable Headphones: Electronics electronics 0 of 7 2.0 Portable? June 26, 2005 Dunckel "Dunck" These seemed like good headphones at first - but problems with portablity were huge! The sound was good but 3 months into ownership one earpeice died so the phones are useless!! NOT worth spending time and money on these phones B00006B8NQ:no_security_&_difficult_to_use:dave B00006B8NQ Kensington 64050 ComboSaver Notebook Lock and Security Cable (PC/Mac): Electronics electronics 4 of 4 1.0 No security & difficult to use June 24, 2006 dave Hockessin, DE United States Not a particularly easy lock to use (combo part rotates freely when not in computer, making it difficult to set the combo). Also changing combo is very easy to do accidently. However this is usually not a problem because it is incredibly easy to figure out the combo. I am not a professional lock picker, and I am able to break the combo without any difficulty (which is a problem with many low quality combo locks, but this design try to avoid it at all). I've noticed a lot of people have a problem with the lock "spontaneously" changing combinations. It's probably not because the lock is defective. It's probably because they inadvertently changed the combination because the mechanism to change it is so easy to engage. I would definitely never suggest this product to anyone (unless I really wanted their computer) B00006B8NQ:horrible_lock:christopher_r._gault B00006B8NQ Kensington 64050 ComboSaver Notebook Lock and Security Cable (PC/Mac): Electronics electronics 3 of 3 1.0 Horrible lock March 6, 2006 Christopher R. Gault Like other people here my lock spontaneously changed its combination on me....Surprise! My laptop is currently locked up at my desk at work which ruined my day and is ruining my night. Another stressor I do not need to deal with...do not get this lock if you value the mobility of your laptop over a theft deterrant B0007SXHP0:stopped_working_after__a_couple_of_weeks_use.:tam_cerr_"tamc" B0007SXHP0 Logitech Premium USB Headset 350 ( 980374-0403 ): Electronics electronics 1.0 Stopped Working After a couple of weeks use. November 4, 2006 Tam Cerr "TamC" Ellicott City, MD USA Wiring broke at interface box - poor design B00030CHRQ:disparate_cord_length-_more_than_irritating.:fieryfilly B00030CHRQ Sony MDR-EX71SL/WK Fontopia Headphones (White): Electronics electronics 5 of 8 2.0 Disparate cord length- more than irritating. November 15, 2006 FieryFilly USA I read all of the reviews here and thought these would be the best option for easy transport AND low ambient sound i-pod headpohones without breaking the bank (I'm on a plane frequently). I wanted something that I wouldn't cry over breaking or losing during my many travels. I found that the uneven cord lengths are very irritating- especially if you like to use only one plug (like maybe at your desk at work). The weight of the shorter cord pulls on the longer cord and it is quite uncomfortable- even when sitting still. So then I thought these will be great workout headphones (won't be upset if I break or lose them), HOWEVER, the cords produce noise in the ear pieces everytime they rub on your clothing or your hand. The effect is very loud and disruptive to your music listening experience (even when you are sitting stationary at your desk). It is similar to wearing a stethescope, which defeats the point of wearing in-the-ear headphones (which are supposed to reduce the ambient noise). I do not recommend these headphones, because of this stethescope effect- I could get over the uneven cord lengths for certain uses (they are after all designed to wear behind the head). I'm on the hunt for better quality headphones B00005NND2:not_working_as_well_as_i'd_like:m._williams B00005NND2 Sony SRF-HM33 Walkman FM/AM Stereo Headphone Radio with 20 Preset Stations: Electronics electronics 9 of 11 2.0 Not working as well as I'd like August 10, 2005 M. Williams Austin, TX I like this style of headphone radio (especially when I jog), and haven't found any similar models that I like. This is my third purchase of this radio. Each of the three have had problems. First died completely (although it was used a lot). Second still works, but last number doesn't show up on digital display. I wanted a backup in case second died, so I ordered another one. This third works least well of all. At times, entire display is off, radio doesn't work at all, or it won't change channels. Then other times it worked. Seems like might be affected by heat outside. However, I know have another persistent problem. That being, it won't let me program the preset stations. Again, I'm limited in my choices, and I use this type headphone a lot. So I suffer through poor quality B00004Z62V:does_not_retract:r._abramson B00004Z62V HP/Compaq CQ200U HP Retractable Phone Cord: Electronics electronics 1 of 2 1.0 Does not retract October 11, 2005 R. Abramson Agree with the prior reviewers. I can not get it to retract any longer and that was only after 3 uses! B00004Z62V:useless_-_does_not_retract:james_murphy B00004Z62V HP/Compaq CQ200U HP Retractable Phone Cord: Electronics electronics 4 of 4 1.0 Useless - does not retract April 6, 2004 James Murphy Pelham, MA USA I agree with the previous review. This phone cord worked twice. Now, it only retracts about half way, and keeps getting worse. I'm returning it for a refund. Don't waste your time with this B00006HMQZ:didn't_work_well_for_me_-_running_mac_os_10.4.8:c._dennington B00006HMQZ Macally iceMouse USB Optical Internet Mouse (White): Electronics electronics 1 of 1 2.0 Didn't work well for me - running Mac OS 10.4.8 October 29, 2006 C. Dennington This mouse was barely functional. It did move the arrow across the screen, but it was in a very random fashion. I went to the Macally website and downloaded the latest drivers. Still no luck. I'm sending this back. Guess I'll have to stick with my reliable Kensington. Too bad it's so ugly and doesn't match my ice keyboard. Oh well... function over form B0002XJAKG:not_good_for_dvd_or_game_console:csd_north_carolina B0002XJAKG Logitech X-530 70-Watt 5.1 Surround Sound Speaker System: Electronics electronics 3 of 14 1.0 Not good for DVD or Game Console December 29, 2005 CSD North Carolina The product description for these speakers is misleading. They do not plug directly into a DVD player or game console. Then, after buying the adapters and doing the initial setup, three of the five speakers did not work. Perhaps these speakers are a good solution for PCs, but that's not why we bought them, and we immediately sent them back B000BKBZGC:great_sound.__but_lacking_in_other_areas.:dartnok B000BKBZGC Altec Lansing inMotion iM616 Headphones: Electronics electronics 13 of 14 2.0 Great Sound. But lacking in other areas. January 11, 2006 dartnok San Francisco, CA United States Isolation: I had to use the foam inserts because the plastic ones were a little too large for my ears. With the foam, it completely sealed my ear canal and blocked out most noise. My commute home on the J train (light-rail) was quite silent. I was listening to classical music for the first time on the train. With earbuds, I had to put the volume level around 50%. With the Sony MDR-EX71 model, I could to keep it around 40%. The noise attenuation wasn't that good with the Sony model, but definitely better than earbuds (but the sound quality was quite terrible though.) Sound Quality: Superb sound. The partnership with Etymotic Research is evident. Everything sounded great: rock, grunge, classical. The Sonys sounded really muddy while these had a really bright sound with good bass (when the seal was good). Very balanced sound. Cord/Construction: I string my earphones through an REI One jacket, so this was more or less perfect length. The cord is symmetric so it's not weirdly strung behind your neck like the Sonys, and the connection to the ear pieces is solid, not fragile-looking like the ER6. The earphones connect to the replaceable eartips very tightly. The included case is ridiculous though; it's way too bulky for portability. Comfort/Fit: Sadly, this is primary reason I'm returning these. Both the flanged rubber tips and the included foam tips were too big. The foam models got the seal, but they were too big, so I felt an uncomfortable amount of pressure in my ear canals. Those were my only two options with the included package. The other problem is that I cannot find replacements that are smaller, anywhere on the web, including the Altec Lansing site. Documentation: Another reason I am returning these is the documentation. The manual says that I can get replacement ear tips and accessories at alteclansing.com/inmotionearphones, and I get a 404 error when I visit the link. That is pretty pathetic. Update: (1/19/2006)I emailed Altec Lansing regarding this issue on 1/10/2006, and I have yet to get a response from them. Bottom Line: If you have large ears, these may suit you. But if you know that you have smaller ears, then stay away from these, and go for something else B000B622DG:poor_reproduction:christopher_r._silvia B000B622DG Sennheiser PX 200W Collapsable High Performance Closed Headphones: Electronics electronics 4 of 4 2.0 Poor reproduction March 14, 2006 Christopher R. Silvia I bought these to replace the standard iPod and Sony ear buds. I was under the impression that I would get a much deeper bass response. I was wrong. The bass reproduction is simply horrid. I read somewhere there is a "break-in" period. I have found this not to be true. They sound just as bad after 50 hours of listening as they did brand new. This is my first pair of Sennheiser and am very disappointed. I know they are low-end headphones - but I expected more. My recommendation is to keep researching B00004TDN2:1_shortcoming_only:craig_duncan B00004TDN2 Handspring Visor Deluxe (Graphite): Electronics electronics 0 of 2 2.0 1 shortcoming only September 9, 2005 Craig Duncan Silver Spring, MD USA Cons: Defect: the backlight does not work. Shortcoming: has Palm OS 3.1, an early version for Handspring Visors. Neutral: (expedited) Shipping time: 5 days Pros: Price PS: Vendor customer support contacted me and provided a replacement unit with a working backlight, free of additional charge :) B000069LIG:item_was_the_wrong_color:natalie_t._goldberg B000069LIG Panasonic KX-TS105W Corded Speakerphone (White): Electronics electronics 1 of 10 1.0 Item was the wrong color August 25, 2006 Natalie T. Goldberg Item was advertised as white, but it was really grey. As a result we had to return item and assume the cost of mailing it back B000069LIG:disappointing_speakerphone:j._b._oneill B000069LIG Panasonic KX-TS105W Corded Speakerphone (White): Electronics electronics 6 of 8 2.0 Disappointing speakerphone March 16, 2006 J. B. ONeill I bought this phone for use in my home office based on the rave reviews on this site for its speakerphone. Unfortunately, I have had nothing but repeated complaints that the voice is distorted or goes in and out, with the beginnings and ends of sentences frequently cut off. I am in the market for another phone after just 2 months B0007OWNBS:my_pc_is_now_dead,_and_netgear_doesn't_care:young_j._putt B0007OWNBS Netgear RangeMax Wireless PCI Adapter (WPN311): Electronics electronics 1 of 3 1.0 My PC is now dead, and Netgear doesn't care October 8, 2005 Young J. Putt During the installation of the software on my PC running Windows 2000 Server, the installation program froze my PC completely. I had to turn off the PC, and now it does nothing when I turn it on. The lights on the front light up, but nothing happens at all. I called Netgear, waited on hold for 15 minutes, and then was connected to a gentleman whose English was not very good. I explained my problem about 5 times before he seemed to get it. He told me that the problem is that the product is not compatible with Win 2000 Server. I told him that I had never before encountered a piece of software that ran on 2000 Pro, but not 2000 Server (perhaps there are some), but he insisted that this was the case. I explained that, typically, installation programs that encounter and incompatible operating system would display a message to the user, and exit, rather than freezing and disabling the computer, but he held firm, and advised me that there was nothing he could do to help, and that he recommended that I contact my computer vendor so that they could restore my initial configuration. I went around and around with this fellow, then finally asked for his supervisor. After another 15 minutes on hold, another guy came on the line, who was pretty fluent in English. He explained his understanding of the situation, which was still wrong, and I explained the whole thing again to him. He had me turn the computer on and off, which of course I had already done several times, and check the monitor connection. After this analysis, he determined that the situation could not possibly have been the result of the frozen software installation that occurred just prior to it, and must be some other problem with my PC that had previously been working perfectly, that, coincidently, occurred at the exact same time as the software freeze. I expressed skepticism towards this explanation, and asked him if he would believe that if it was his PC. He said that absolutely he would, and reassured me that there was NO POSSIBLE WAY, (emphasis his) that his software could have caused these symptoms. Since I understood that it would be difficult for him to actually fix a computer in this state over the phone, I suggested that I could take it to a local technician, and send Netgear the bill for repairing my system. He declined that offer. So, at the end of the day, I'm left with a dead PC, but, according to Netgear, a perfectly good wireless card and installation CD. No more Netgear for me, thank you! B0007YPOAA:why,_oh_why,_didn't_i_check_amazon_reviews_first?:b._richards_"frustrated_audiophile" B0007YPOAA PIONEER CD-IB100 iPod Adapter for Pioneer Car Stereo Receiver: Electronics electronics 1.0 Why, oh why, didn't I check Amazon reviews first? November 24, 2006 B. Richards "frustrated audiophile" Phoenix, AZ I am totally stunned that this could be sold as iPOD compatible. Nothing, absolutely nothing, works as you would intuitively think it would. Pause does not pause, forward arrow does not forward to the next track (just starts the same track over and over again), and heaven help you if you actually want to find a specific song or artist. There is no way to actually speed through a menu - you have to advance one artist at a time. This is fine if you love Aaron Neville but chances are you will be in a limb severing accident if you are trying to get to ZZ Top. I am taking this back tomorrow and demanding something that will allow me to control my iPod again from my iPod B00003CWDQ:it_is_what_it_is:jeff B00003CWDQ Monster Cable MP HTS800 Home Theater PowerCenter HTS800: Electronics electronics 1 of 5 2.0 It is what it is October 3, 2006 Jeff Houston, TX I guess for $50, this is an ok product. I am usually very against monster products, but I'd seen this for almost double at big box retailers, needed a surge protector for my new DLP tv, so figured what the heck. It arrived without incident, I hooked it up and so far so good. It basically a power strip with labels that also happens to be purple... for the "neato" effect I guess. Anyways, no idea if its worth more than your run of the mill surge protector. But the claims of independent circuitry to minimize cross-interference is what I was really interested in, as I have my reciever, cable box, DVD player, and subwoofer all connected... All in all a good buy I guess, at least you paid a lot less than retail... : B0007W1K8M:six_months_and_no_thinkpad_tip?_completely_unsatisfactory!:olin_sibert B0007W1K8M Kensington 33197 120 Watt AC/DC Power Adapter for Notebook Computers, Cell Phone, DVD Players, PDAs: Electronics electronics 6 of 9 1.0 Six months and no Thinkpad tip? Completely unsatisfactory! September 27, 2006 Olin Sibert Boston, MA, USA I bought one of these a few months ago. It worked perfectly with my old Thinkpad, but not long thereafter I got a Thinkpad T60, thinking, "Hey, universal means universal, of course it will work". But no: SIX MONTHS after the T60 was introduced, Kensington STILL hasn't gotten their act together to produce a "SmartTip" for it. They haven't even added Lenovo to the list of manufacturers on their web site! All Customer Service can say is that they don't have one, they don't know when or if they ever will, and they suggest that I check back on the website someday if I still hold out any hope. So, I have a $100 brick on my hands. Very disappointing, Kensington. It's really too bad: the unit is lightweight, sleek, and functional, and (unlike some reviewrs) I think the 5-inch cord was brilliant (and it doesn't get tangled up in my briefcase). The cables are much nicer than on my 70-watt iGo supply, and the connectors don't break like they did on the iGo. And it's not like there's some technical problem: the T60 needs 20 volts, 90 watts, well within the 24-volt, 120-watt capability of this unit. However, six months delay in supporting a major business computer brand is just unforgivable, so I can no longer recommend it B000E1FYQA:very_disappointed_and_i_returned_them:musicfan B000E1FYQA Sennheiser CX300-B Earbuds (Black): Electronics electronics 1 of 5 1.0 Very disappointed and I returned them November 4, 2006 Musicfan California I wanted to get something better than the standard earphones for my Ipod. I saw some good reviews and this brand has been known always for great headphones. Bought these and was shocked at the terrible sound quality. Yes, the sound is clean, but TOO clean. The highs are too high leading to tinny and over-brassy sound. Voices have too much hiss. There is virtually no low end bass of any type. Very disappointing B0001YFX7U:amazon_is_sleeping:baljit_singh B0001YFX7U Ridata 8x 4.7 GB DVD+R Spindle (100 Discs): Electronics electronics 2.0 amazon is sleeping September 24, 2006 Baljit Singh ny usa dvds are less than 30 dollars now with 16x speed and look at amazon ,it is still selling then above 40 (only 8x speed B0001YFX7U:want_to_donate_your_money_to_ridata_plus_pay_tax_and_shipping?:ganesh_usha_"ganush" B0001YFX7U Ridata 8x 4.7 GB DVD+R Spindle (100 Discs): Electronics electronics 1 of 2 1.0 Want to donate your money to Ridata plus pay tax and shipping? August 9, 2006 ganesh usha "ganush" CA Then buy these Ridata Disc B0001YFX7U:terrible_discs:big_leo B0001YFX7U Ridata 8x 4.7 GB DVD+R Spindle (100 Discs): Electronics electronics 3 of 3 1.0 Terrible discs January 1, 2006 Big Leo Ft Lauderdale, FL Bought 100 DVD blanks - so far every one a coaster. Never had this kind of problems with any type of discs. Tried different software and burn speeds but nothing good. Very disappointed - at least they were cheap (...). B000F8VIRQ:save_your_money:gerryc B000F8VIRQ Panasonic KX-TG6700B 5.8 Ghz Cordless Phone Two-line Expandable Phone System: Electronics electronics 6 of 6 2.0 Save your Money September 23, 2006 GerryC Northport, NY I am looking for a system to replace a Siemens 8825. The 8825 has, in my opinion, the best set of functions of anything currently available but I have some reliability issues with it. I first tried the Motorola 7081 and found that unsatisfactory. My next attempt was the Panasonic KX-TG6700B. This phone has decent volume and clarity at the base. The handset has good clarity and range but the volume could use a little help. The base layout is ok but the way you turn on the answering machine at the base is silly. The handset feels light and chintzy. The clarity of the outgoing messages on the answering machine is poor. The base is ugly; what were they thinking? Anyway, it ok, not wonderful. But since I couldn't get the answering machine to save messages on either line (it's defective) I sent it back. Back to the drawing board B0007UQ6LK:scan_disk_mini_sd:atf B0007UQ6LK SanDisk 1GB miniSD Card (SDSDM-1024-A10M, Retail Package): Electronics electronics 1.0 Scan disk mini Sd November 3, 2006 ATF Phoenix, AZ USA it did not work at all and Amazon would not take it back saying it was my responsibility that it did not work. I would never buy this or any other product from this seller B000CS1TLE:a_big_disappointment:naushad_a._virji_"naushad_virji" B000CS1TLE Logitech Harmony 890 Advanced Universal Remote Control: Electronics electronics 1 of 4 1.0 A Big Disappointment November 3, 2006 Naushad A. Virji "Naushad Virji" Orlando, FL - USA I was excited about consolidating 3 remote controls I regularly use plus my fan and light controls. However, the Harmony 890 has proved to be a big disappointment. I was much better off with the 3 remotes I was using before. It was much simpler than fooling with the Harmony remote which requires so many key presses for basic functions. I never have been able to get the Harmony to control the fan and lights. Some reviewers have said that you just need to take time to do the programming properly. Even if you do, in my case it's just easier to juggle my 3 remotes and press ONE button to do what it would take with SEVERAL key presses on the Harmony. My Harmony is now going to sit with the other remotes I never use and I'll just stick to the 3 that work for me B0006ZBHWY:buyer_beware!!!!:k._walls B0006ZBHWY Western Digital 80 GB Passport 2.5-inch External Hard Drive: Electronics electronics 6 of 7 1.0 Buyer Beware!!!! October 6, 2006 K. Walls Metro St Louis United States Before you buy this drive, be sure to Google "Cypress AT2LP RC42" and "western digital". Until yesterday, I recommended this drive to everyone. Then my drive failed, prompting me for new hardware and to install a driver for Cypress AT2LP RC42. It appears that there is a chip in the drive housing manufactured by Cypress that is failing in drives left and right. (Class action suit anyone?) The Western Digital support staff is no help. Act like they have never heard of this error. Offer no option to just switch out the housing. Will replace drive- but you lose all the data. There are $30 replacement housings available - but you void your warranty. Bottom line - if you buy this drive, be prepared for it to fail. Keep everything backed up, because there will come a day that this drive will fail B0006DPT5M:a_lot_lacking_for_this_kind_of_money:headset_horseman B0006DPT5M Plantronics CS50-USB Wireless Headset for VoIP Softphones: Electronics electronics 23 of 28 2.0 A lot lacking for this kind of money May 2, 2005 Headset Horseman California While convenient and a nice, lightweight unit, the voice pickup is very poor, regardless of how you adjust the set. This is not only with the set I have used, but with others I have talked to - you can tell if the person on the other end of the phone is using one of these units because they are so faint. I've gotten so I just ask if they're using a Plantronics CS50 when they are faint and the answer is invariably "yes". Also, if you are in a building with a lot of exposed metal (window/door frames, high cubicles with lots of metal), the range deteriorates significantly B00003CWEZ:again,_monster_has_to_be_kidding_(and_they_are):great_movie_addict B00003CWEZ Monster Cable MVSV3-4M Monster Super Video 3 Double Shielded S-Video Cable. (13.12 ft.): Electronics electronics 1 of 1 1.0 Again, Monster has to be kidding (and they are) April 29, 2006 Great Movie Addict New York City For some years I tried this and other Monster products, to the tune of over $1000 in Monster a/v gear. The more you learn about video and audio, the more you'll avoid anything with the Monster label. Specifically, this s-video meets no NTSC, DVD or IEEE standard; it is common 30-ohm hookup wire with ineffective shielding and a poorly designed, low-conductance connect plug that can wreck your input jacks and gives poor grounding. Has a sharp image, but includes a catalog of chromatic aberrations from off-color skin tones to color blotching, dirty grays, burned highlights, murky shadows, noisy reds, and poor color balance due to impedance mismatching that results in cyan errors and bleeding reds. Makes video test patterns look great, but who watches test patterns all day? Amazon offers many other brands at good prices, why waste your $$ on this stuff? I removed every piece of Monster from my system and replaced them with AR, Belden, Viewsonics and others from Amazon. Result: vast improvement in every respect. B0008F69KM:poor_quality_video._not_worth_purchasing.:funboy3_"funboy3" B0008F69KM What Really Happened While You Were Away! Secret Security Camcorder Hidden in a Clock (SI401): Electronics electronics 46 of 48 1.0 Poor Quality Video. Not worth purchasing. October 12, 2005 Funboy3 "Funboy3" Phoenix AZ I recently purchased this item from Sharper Image and was very disappointed. The video is faint, grainy (even in strong lighting), and out of focus once you are more than 2 feet away from the camera. Colors all but disappear. It's practically black-and-white video. The power supply weighs more than the device itself (one pound, including cord) and is HUGE. It also gets very warm after an hour or so. I've tested this product in every type of lighting situation and the results have been unsatisfactory in all cases. The only thing the device does well is detect motion. B000CRFI8A:lousy_customer_support_and_windows_xp_surprise_changes...:linksys_sufferer B000CRFI8A Linksys WUSB54GC Compact Wireless-G USB Adapter: Electronics electronics 1 of 1 1.0 Lousy Customer Support and Windows XP surprise changes... October 22, 2006 Linksys sufferer Thousand Oaks, CA I bought this adapter along with the Linksys WRT54GL Broadband Router. I managed to set them up and install them properly. (The best advice I got from the "Home Networking for Dummies" book was to get a 100 foot Cat5e patch cable so that I could put my router in the place I where I wanted it, and hook it up with a wired connection first. I actually only needed a 50 foot cable, and got it for $20 from a local electronics supply store.) So I got everything up and running (remember to install your router first, and then your network adapter), surfed the internet for awhile, and then shut down my computer. Here's where the trouble started.... As other reviewers have noted, the Linksys installation makes changes to your Windows XP configuration, de-activating the Welcome screen and the feature Microsoft calls "Fast User Switching." This happens with no warning. When I went to turn on my computer again, I got a new start-up screen for Windows, demanding a password. I freaked out, because I don't remember ever setting a password for Windows. I called Linksys, and was extremely unimpressed with their customer support. The young woman seemed to be amused by my problem, and was actually laughing at me. She began to start me through the process of completely re-setting the router to the factory settings (this would NOT have helped). What finally helped was figuring out (with no help from Linksys) that if you never set a password for your Windows XP logon, all you have to do is hit "Enter" at the password prompt. That's all there is. Linksys could have told me this, or better yet, warned before installation that these changes to Windows XP would take place and suggest setting up a User Password in advance. Another gripe about this network adapter and the Linksys router--neither came with instruction manuals. There is a 60-page instruction manual on the CD rom that comes with the product, but you'll have to print it out yourself (Do it before you install or try installing the product). In the case of the router, I also had to do deep searching to actually find the instruction manual on the CD-ROM--it wanted to start up the Setup Wizard automatically and the instruction manual was not easy to access from the CD-ROM. I guess this may be the norm now with computer hardware, but it still stinks. I do not recommend the Linksys WUSB54GC, primarily because of the unannounced changes it makes to the Windows XP system, and because of Linksys' non-existent or non-functional and rude customer support B0009PD3PA:not_worth_it:m._voges B0009PD3PA TomTom Navigator 5 (Software Only, US): Electronics electronics 2.0 Not worth it September 19, 2006 M. Voges San Clemente, CA USA I have owned the TomTom Navigator 5 for almost a year now. While the program is well thought out and provides a good function, it does not work well with my Tungsten T5. I have contacted customer service 4 times now and they have always been helpful in trying to fix my issues (listed below), but to no avail. Some of the issues I have had: Any time the software has to redirect or think, it locks up. If I stay on the original planned route, it sometimes works properly... In a 30 minute trip from Orange County to Long Beach, I had to pull over 7 times to reset my device after the software locked up. Voices lock up mid sentence giving a stuttering sound until you are able to pull your car over to reset the device. In a 20 minute trip from San Francisco to Oakland the device locked up 5 times. I finally gave up and called a friend to guide me. Bear in mind, I have had no problems with my T5 in the 1.5 years of ownership...it is only with this software. Customer service has acknowledged the problems and given solutions that have solved little to nothing. In summary, it's not worth spending the money to have to print out Mapquest directions to have when the device crashes...stick with Mapquest B0009PD3PA:okay_product._contemptuous_product_support.:jerry_saperstein B0009PD3PA TomTom Navigator 5 (Software Only, US): Electronics electronics 15 of 15 2.0 Okay product. Contemptuous product support. April 1, 2006 Jerry Saperstein Evanston, IL USA Essentially once TomTom has your money they're finished with you . . . until you want to spend more money with them. The product is okay. The map data is from TeleAtlas, a vendor to many of the map software producers. What makes TomTom different is its GUI (Graphic User Interface) that the user interacts with. It really is a work of art most of the time. The map presentations are rich and may be viewed as 3D or 2D. The planning interface is icon driven and easy-to-use. Unfortunately TomTom really didn't think it all the way through. There are several irritants, all of which vie for first place. One is that TomTom doesn't give you the option of using its maps without a GPS. There are many instances where I know where I am begining from and going to and I don't need a GPS fix. TomTom ignores such desires and annoyingly keeps prompting for you to start your Bluetooth connection. There is one mode that you can use to plan a route without a GPS and it simply doesn't work very well, often informing you that TomTom can't route you from a point beginning on an interstate to another point further along the same highway. That's just plain dumb. This is a mapping application. If I want to use these expensive maps for walking directions without a GPS, I should be able to. TomTom certainly doesn't think so. Another irritant is the documentation. Probably in an effort to make TomTom appealing to the casual user, the documentation is dog simple . . . and often wrong. It appears that they didn't update the documentation to the newest version. Although you can load maps by region, TomTom makes no allowance for travelling from one region to another. You have to calculate your route to the ending point within one region and then begin it anew in the next region. Again, this strikes me as a silly omission. If you are in Wisconsin, which is one region, and drive to Minnesota, which is in another, you have to create two routes. Not bright. There are a number of idiosyncracies, anomalies and bugs that drive me up a wall. However, overall, TomTom is still better than the competition. It computes routes quickly (when it is capable of figuring a route at all). Annoying, however, it tends to prefer expressways, regardless of your preferences. In a major metro area laced with expressways going in all directions, this can create some incredibly convoluted - and ridiculous - routes. Creating alternative and more logical routes is possible, but tedious. The worst part of the TomTom experience is its customer support. Well, perhaps support is the wrong word for it. I encountered two problems installing the software. It was obviously that the tech support person was clueless and was simply guessing and grasping at straws. (I had resolved the issues before the rep called and already knew what the problem was.) The TomTom rep didn't listen, kept interrupting and when it was pointed out that he was contradicting the manual, he just kept moving. (The manual in at least one instance was correct and the rep wrong.) The TomTom packaging itself arrived in broken condition. The rep denied it was their packaging, claiming that I must have bought a third-party repackaged product. Talk about insulting: I have the package in front of me with the TomTom labels, the whole works and this guy is telling me that my lying eyes are deceiving me? A fax to TomTom management about my experiences has gone unanswered more than a week later. TomTom is riding high right now but I suspect in a couple of years as competitors introduce better products with better support that TomTom will be history. It won't be the first company that offered a good-enough product without support and possesing contempt for its customers to disappear and it won't be the last. I know that if I find a marginally better product with adequate support, I'd abandon TomTom in a flash. Jerr B0009PD3PA:map_activation?_for_a_product_i_purchased?_:j._bougiamas_"booyia" B0009PD3PA TomTom Navigator 5 (Software Only, US): Electronics electronics 15 of 17 1.0 Map Activation? For a product I purchased? January 5, 2006 J. Bougiamas "booyia" Syosset, NY USA The TomTom Navigator is a nice enough device, until you get to the Maps activation. The Maps activation? Why should I have to activate my maps if I have paid for the product? Good question, well, I activated these maps on one PDA, and within 2 weeks my PDA died and I had to obtain warranty service. Well, I decided that I would upgrade to a new device and then sell my old device when I got it back from the manufacturers (I tend to switch my PDA every 3-4 months anyway). So I installed the maps on the new device and it asked me to activate. OK, I figure...no problem, I will be able to activate it 1...2...3 because after all, only I have the activation card/code. No such luck, TomTom wants PROOF that I have brought a new device? what kind of nonsense is that? What if I lost my PDA in 2-3 months? What if I'm a nut who likes to change PDA's every 3-4 months? What, you mean I have to show you proof that I switched? Isn't the fact that I have the activation card proof enough? I don't know too many people who pay $269 for a product and let other people use the activation codes. Avoid them at all costs. You will regret your purchase if you change devices frequently. One other problem with this product...out of the box it is not 100% compatible with Windows Mobile 5 devices (most of the new Axims are WM5. You really have to break your back to install on these devices. Avoid B000196C2A:why_is_this_so_cheap?:nedthedog B000196C2A Garmin 010-10454-00 Handlebar Mounting Unit for GPS 60 Series: Electronics electronics 1.0 Why is this so cheap? October 30, 2006 Nedthedog Ohio I agree, this is a flimsy piece of plastic that will not hold the GPS unit over a few little bumps. I expected more from Garmin. Consider this: Touratech Mount for Garmin 60C series. Its a solid unit. It costs a little more but you won't be replacing your GPS unit due to it falling to the ground. B0001DB6LS:barely_gets_the_job_done_...:michael_w._dini_"mike_(la_jolla)" B0001DB6LS Garmin iQue 3600 GPS Auto Bundle: Electronics electronics 6 of 8 2.0 Barely gets the job done ... May 9, 2006 Michael W. Dini "Mike (La Jolla)" Southern California My company car has a built-in GPS unit and I have gotten to like it, sort-of. I have gotten lost in a rental car trolling around Silicon Valley enough to get a portable GPS unit. After some research, the Garmin iQue 3600 is what I ended up with and I paid about $700. The unique feature of this portable GPS unit is that a PalmPilot comes integrated into the package. I use a PalmPilot, so this GPS unit replaces my PalmV. Installation was quite awkward, and getting it up and running was a chore. I got the thing synced up and some maps loaded and have been using it for several months now. It does do the job, fitfully, and has several glaring issues. Most irritating, the Palm function and the GPS function are not seamlessly integrated. If an address is entered in the Palm part and then route to this address is selected, the iQue 3600 makes you find the location. But the address from the Palm section doesn't transfer cleanly into the find section and you must retype the address. I'm left-handed and graffiti has NEVER worked for me all my letters are drawn backward. The GPS can be engaged as soon as it recognizes where you want to go, but my unit takes a good 5-10 minutes to find the satellites when first exposed to sky. This means that I must have a good idea what to do for the first 5-10 minutes. Sometimes I just drive randomly until the GPS locks in and starts to issue navigation orders. Also, the antenna must be deployed to get any GPS reception and must be forward enough in the windshield to see sky. This is OK, except that the iQue 3600 doesn't tell you that the antenna has not been deployed. The iQue 3600 does not work propped up on the passenger seat so a 5 pound holder is necessary to hold the unit on the dashboard. If the antenna is not deployed, the iQue 3600 simply doesn't navigate and doesn't tell you why. Worse, it acts stupid by going into a dangerous and unhelpful simulate mode. If I ever figure out what that means, Ill tell you in a future post. I figured out the antenna problem the hard way in an ice storm outside of Ottawa. I'm a fan of GUI design, and I must say that the UI here is very, very bad. Not the worse I have ever seen, but very bad: non-intuitive, inconsistent, and arbitrary. The FIND function/button has an entirely different function in the GPS section from the Palm section. Of course, the same icon is used. I cannot imagine grandma using this thing to navigate. What little there is of the very pretty documentation is atrocious. About 10 times more information is needed here. It shuts down randomly on occasion for no apparent purpose (Battery savings maybe?). The secure digital card is too small (max of 256MB), so you can't put more than a few California counties in the memory. Maps storage is managed with a rather hostile GUI. This is not fatal, but is irritating. I would rather put a 1GB SD card in the iQue 3600 and be done with it. The iQue 3600 burns too much power to be used as a portable, so it must always be tethered to the car or resting in the cradle. I don't find the power issue to be a problem. I understand that to get clear, bright screens it is necessary to use power. I agree with the tradeoff here. B0001WW3F2:good_idea,_poor_design:w._d._henderson_"radio_guy" B0001WW3F2 Griffin Technology RadioShark AM / FM Desktop Radio with Time-Shift Recording: Electronics electronics 2 of 3 1.0 Good idea, poor design May 27, 2006 W. D. Henderson "Radio guy" Houston, TX Summary........good idea, very poor implementation. Good software and easy to use, major problem is reception of radio stations. I live in a major metropolitan area and have to practically stand on my head to get the radio shark to get clear reception (even with a plug in antennae) B0001XGQBS:very_cheap_cases...and_i_don't_mean_only_the_price:scott_k._mccormick B0001XGQBS Fellowes 100PK SLIM JEWEL CASE ( 98335 ): Electronics electronics 6 of 6 1.0 Very cheap cases...and I don't mean only the price August 21, 2005 Scott K. Mccormick The price on the cases is cheap but you get what you pay for. I will never buy these cases again. Quite a few of them were broke when I got them. Even the ones that weren't broke are made of VERY flimsy plastic and I have a feeling they will break if I open them very often. They also don't open and shut very easy. Look elsewhere for good cases B000DZS3UQ:cheap_costs_you_more_in_the_long_run:real_name_here_"quilt_artist" B000DZS3UQ Sentry SP400 MP3 Folding Speaker System: Electronics electronics 2 of 3 1.0 Cheap costs you more in the long run March 26, 2006 Real Name Here "Quilt Artist" Rytchere I bought this and I'm sorry. It sounds horrible. Don't waste your money because you'll just have to buy another one anyway for any true enjoyment. This crap is barely good enough for my bathroom B00008ZLHG:got_mine_at_the_dollar_store:dan303 B00008ZLHG Monster Cable AICYP iSplitter Mini Y-Adapter for iPod and Mac: Electronics electronics 8 of 20 2.0 Got mine at the dollar store January 16, 2005 dan303 They sell these at almost every dollar store, sure the sound quality might not be quite as good, but you're going to have signal loss whatever you hook it up to. These things sell for $1.50 CAN at dollar stores and are worth every penny of THAT pric B0000BZO6E:the_worst_wireless_card_ever:g-unit B0000BZO6E Microsoft MN-720 Wireless 802.11g Notebook Adapter: Electronics electronics 2 of 3 1.0 The worst wireless card ever September 6, 2005 G-Unit Alright before I begin let me just say I know quite a bit about wireless networking. I had already connected 2 wireless pc's to my 128 bit WEP encrypted router. I had initially set it up as WPA but opted to change it as this hunk of junk doesn't support WPA. This card will detect your network no problem, just try connecting to it. Apparently I am typing in the wrong WEP pass.... I can assure you I am not. Perhaps there is an issue between Micro$oft and D-link I am unaware of...go figure. I do not have the time nor patience to deal with Micro$oft's customer support regarding this issue. Back to the store this goes. Do yourself a favour and do not buy this B0000BZO6E:an_interesting-looking,_but_useless,_blinking_bit_of_plastic:asdf B0000BZO6E Microsoft MN-720 Wireless 802.11g Notebook Adapter: Electronics electronics 5 of 10 1.0 An interesting-looking, but useless, blinking bit of plastic August 21, 2004 asdf MN Microsoft has never failed to disappoint me, (I suppose there is something to be said for consistency) and this carries on that somewhat dubious tradition. I bought this with a the MN-700 wireless router, and both worked fine for a couple weeks. However, they both conspiratively proceeded to stop functioning. This card was the most maddening of the pair, because it would find the wireless network every once in a while, yet refuse to connect. I've tried every channel, and made sure its on infrastructure mode, but it still refuses to work. I suppose I deserve it, though, expecting that a microsoft wireless card would connect to a microsoft wireless router with a microsoft operating system. Do yourself a favor and buy your wireless networking from a decent company that has some expertise in networking, like Linksys or Belkin. Whatever you do, give as little money as possible to this shoddy company B0009ORXEI:not_worth_the_money:stacey_mitchell B0009ORXEI iRiver T10 512 MB MP3 Player with FM Tuner: Electronics electronics 1 of 2 1.0 Not worth the money November 9, 2006 Stacey Mitchell Philadelphia, PA I returned this product after a week - it was difficult to manage, the screen way too small to read (and I have 20/10 vision!) and just a very disappointing product overall. Do not waste your money. I ended up buying a Samsung and I couldn't be more happy B000FJLBTK:terrible!_do_not_purchase!:lenny B000FJLBTK HP Photosmart C4180 All in One Printer/Scanner/Copier: Electronics electronics 5 of 25 1.0 Terrible! Do not purchase! October 2, 2006 Lenny North Carolina, USA I just purchased this printer last night at BestBuy and took it home. When I removed the contents of the box, I noticed that the USB cord was not in there. I read the directions and said that you had to buy the cord separately. I couldn't believe it. So, I went to the store and bought one. This cost me an additional $11. I went home, installed the software and plugged everything in. I printed off a few things and it looked great. Today, I went to use the printer again and the power woudn't turn on! I disconnected then reconnected everything and still no power! I tried several more things and still couldn't turn the power on. Now I have to return it to BestBuy. This was the first and last time I will ever buy anything from HP!! B0002SQ0AE:fire_hazard:c._hadden B0002SQ0AE Logitech Z-5300e 5.1 5-Piece Surround Sound PC and Gaming Speaker System: Electronics electronics 1 of 2 1.0 fire hazard September 20, 2006 C. Hadden We purchased this system less than two years ago. It has seen light to moderate use. Several days ago, the speakers started intermittently cutting out. This afternoon, the subwoofer popped several times--then caught fire! Fortunately, my son was able to extinguish the flames before much damage was done. Beware!!!! B000FJEYZS:five_stars_for_the_buds,_zero_stars_for_the_cord:r._smith B000FJEYZS Sennheiser MX75 Twist-To-Fit In-Ear Stereo Sport Headphones: Electronics electronics 1 of 4 1.0 Five Stars for the Buds, Zero Stars for the Cord November 11, 2006 R. Smith New Orleans, LA USA I do not recommend Sennheiser's MX75 headphones. First, the good features: 1. As with all Sennheiser products, these earphones deliver first rate sound for its price range. 2. The earphones are very comfortable and easy to fit properly using the included pads. 3. Once inserted in the ear, these earphones will not fall out due to vibration, movement or sweating. However, the cord has ugly problems: 1. The cord is unusually stiff and consequently tends to be tough to manage. This is especially true when the phones are first removed from the package, as the cord maintains a sort of corkscrew shape for quite some time. 2. The cord running to the right earphone is substantially longer than the one connecting to the left earphone. The result is annoying slack around the face and neck. 3. The cord is the ugliest possible shade of green. All in all, should Sennheiser offer a new product using the same earphones, but with conventional wiring, I'll be a buyer. Until then, I've given up on using these lime green annoyances B000DIM9AS:wouldn't_work_for_me_-_soooo_disappointed:okcpa B000DIM9AS Coby TF-TV505 5" LCD Color Television: Electronics electronics 1 of 1 1.0 Wouldn't work for me - soooo disappointed November 7, 2006 OKCPA Tulsa, OK I bought this TV for my husband to take hunting but we can't get very many channels and the ones we do get have a terrible picture. The TV is an awesome size and the design is really nice with a good size screen. I didn't hook to cable so that may improve the picture but we don't have cable. I tried programming the channels from two different locations 20 miles apart from each other. I tried programming with the antenna on the TV and with separate rabbit ears. It would only pick up one of the three local network stations. It picked up maybe 8 other misc stations which aren't popular. I couldn't get a good picture on any of the stations and I tried adjusting all the menu items, brightness, hue, etc. It didn't even have a good black and white picture .... it was like a white screen with blurry images in the back. Sooooo, sooo disappointed because I wanted to be able to use this at work too. B0007TJ7TE:an_o.k._keyboard_with_cheesy_backlighting_and_no_fn_key:peter_frishauf B0007TJ7TE Saitek Eclipse Keyboard ( PZ30AU ): Electronics electronics 1 of 1 2.0 An O.K. Keyboard with Cheesy Backlighting and no Fn Key October 15, 2006 Peter Frishauf New York, NY USA I wanted a keyboard that I could use in low light with both my PC and Mac, and this one is reasonably o.k. Those users who enjoy the backlight of a Mac PowerBook or MacBook Pro will be disappointed by the cheap approach Saitek used to illuminate the keys, though. On the Mac, each key has its own embedded light under the key. On the Saitek light is splashed under the entire keyboard, reducing the contrast and making it much harder to see the keys. But it's better than nothing, and is helpful in low light. It would have also been nice if they had an Fn key, but such is life B000095SMR:this_card_adapter_doesn't_work_with_my_hp_printer:teresa_l._carpenter_"travel_lore_crafter" B000095SMR Fuji CompactFlash xD Card Adapter for xD-Picture Card: Electronics electronics 7 of 7 1.0 This card adapter doesn't work with my HP printer November 17, 2004 Teresa L. Carpenter "travel lore crafter" Kingsport, TN USA I purchased my Fuji CompactFlash xD Card Adapter elsewhere and it doesn't work in my HP officejet 7130 all-in-one. It won't load in as it's supposed to but will fit correctly backwards. Except then I get an amber light that says there is a card error. This is supposed to work with my all-in-one but it doesn't. For that reason, I'd give it a zero star rating if such a rating existed. I'm going to take this CP version back and hope the more updated CPF version works. I'm a travel writer planning to take my own photos to go with my articles, but I'm getting nowhere fast with this card adapter that refuses to work properly. This one is definitely a thumbs down. However, this is my first dud Fuji product I've bought and I love Fuji digital cameras B0002DQUHC:cheap_and_cheaply_made!:m._eder B0002DQUHC D-Link DWL-G122 Compact Wireless USB Adapter, 802.11g, 54Mbps: Electronics electronics 1 of 1 1.0 CHEAP and cheaply made! October 31, 2006 M. Eder NYC Mine worked fine for about a month before it stopped working. dealing with D-Link isn't a pleasure either. Don't get it. Get something better. Spend a little more, avoid the hassles B00006B9ZB:if_you_have_a_tekxon_digital_camera_do_not_get_this!:tyler_reed_"tyler" B00006B9ZB Lexar Media 128 MB Secure Digital Card: Electronics electronics 1.0 IF YOU HAVE A TEKXON DIGITAL CAMERA DO NOT GET THIS! February 4, 2006 Tyler Reed "tyler" Keller, TX IF YOU HAVE A TEKXON DIGITAL CAMERA DO NOT GET THIS because when you put the memory card in and you turn the camera on the screen goes black! B00006B9ZB:stressful_30_minutes:peter_tonev B00006B9ZB Lexar Media 128 MB Secure Digital Card: Electronics electronics 2 of 10 2.0 Stressful 30 minutes December 27, 2003 Peter Tonev Toronto, Ontario Canada My brother got a Lexar for Christmas. He put it in his Tungsten C and for 30 stressful minutes the card did not work. The device recognized the card, but you could not copy, format, nothing... just got an error "This card is read only and cannot be <whatever>." Then all of a sudden it started working. 2 stars for the stress and for the fear that it will stop working again B000233YDK:not_reliable_and_customer_service_is_poor:mr._stargazer_"clear_dark_skies" B000233YDK Syntax Olevia LT27HV 27" HDTV-Ready Flat-Panel LCD TV: Electronics electronics 3 of 3 1.0 Not Reliable and Customer Service is Poor October 16, 2006 Mr. Stargazer "Clear Dark Skies" Wisconsin Everything your read about the picture quality is true... however, this product just isn't reliable. Cost me another $600 to get it fixed and it isn't even 18 months old. I am sure I am not alone since you can see these on that famous auction site may with similar power issues. Customer service from this company is also very poor. If I had it to do over I would not have purchased this product and I probably should not have spent the money to get it fixed. I think it will be just a matter of time before some of these 5 star reviews begin to change their tune B0001IXUDU:your_money_is_better_spent_elsewhere:joshua_hodge_"aylwyne" B0001IXUDU Monster Cable HDMI 400 High Resolution A/V Cable - 4 Meters: Electronics electronics 23 of 24 1.0 Your money is better spent elsewhere October 20, 2006 Joshua Hodge "Aylwyne" Boston, MA Like most have pointed out, it's a digital signal and there's no need for all the gas-injected, gold plated, shielded stuff monster cables hype. For analog signals this stuff absolutely makes a difference because analog cables are highly affected by outside EM interference. Some people have pointed out that monster cables are more durable. So yes, if you plan on swinging around on your cables it might matter. If, like most people, you plug the stuff in behind your equipment then leave it be for months and months, don't waste your money B0001DYTY4:if_i_could_give_this_a_zero,_i_would.:bri-man_"the_video_dork" B0001DYTY4 SimpleTech 160 GB USB 2.0 External Hard Drive ( STI-USB235/160 ): Electronics electronics 1.0 If I could give this a zero, I would. November 25, 2006 Bri-Man "the video dork" MN Bought this and plugged it in and backedup some files, went to transfer them to another computer and the drive was dead, I treid a few computers and no of them could regonize the drive. I guess I have one of the many "bad ones".. B00023CJKE:too_many_disappointments:s._sturch B00023CJKE AT&T E5865 5.8 GHz DSS Expandable Cordless Phone with Answering System and Dual Keypads: Electronics electronics 2.0 Too many disappointments March 6, 2006 S. Sturch San Antonio, TX Others have written about this phone not holding the charge, and I agree! I can't tell you how many times a call has gone dead in the middle of a conversation, with no warning, no low battery message. I've only had the phone since November. There is not a quick, convenient way to redail numbers--you have to choose from a list of options, 1-plus number, or the area code without the 1, or no 1 and no area code. No easy way to speed dial. Range is disappointing. I'm looking for a new phone. Back to Uniden or Panasonic B000799LQS:just_didn't_work!:mark_twain B000799LQS Memorex 2.4x 8.5 GB Double Layer DVD+R Pack (3 Discs): Electronics electronics 1 of 1 1.0 Just didn't work! January 21, 2006 Mark Twain West Coast After burning one coaster, I thought, it's just a fluke. I'll burn my first DVD in no time. I was wrong. After updating the firmware on my new Plextor DVD burner and downloading the latest version of Nero 6, I burned two more coasters. Don't buy these unless you want pain and frustration B000799LQS:worst_media_ever:nickyct B000799LQS Memorex 2.4x 8.5 GB Double Layer DVD+R Pack (3 Discs): Electronics electronics 6 of 7 1.0 Worst Media ever November 8, 2005 Nickyct Plays fine on the first layer. But picture will freeze during layer switch. I either have to stop or skip pass the chapter but picture will be jumping and pixellated, pretty much unwatchable. you have to skip at least couple chapter away from the layer switch to get a decent picture on your screen. don't waste your money. Buy verbatim instead. I never had any problem with that media. B00004Y3UX:not_for_a_serious_audiophile_setup:david_v._bowen B00004Y3UX Monster Cable SS4 Multi-Speaker Selector: Electronics electronics 11 of 12 2.0 Not for a serious Audiophile setup October 15, 2005 David V. Bowen New Jersey Dissapointing. The sping-loaded connectors at the back of the selector are not particularly strong, so thick or rigid cables under tension (e.g. twisted at odd angles) easily slip out. The depth of the connectors is also not great, so wires cannot be inserted very far to compensate for the lack of traction. Connections might be better using Monster Cables' own Angled Gold Pin connectors, but I didn't try those B000E39V9O:disappointed_with_dph-50u:m._harris B000E39V9O D-Link DPH-50U Skype USB Phone Adapter: Electronics electronics 2.0 Disappointed with DPH-50U October 18, 2006 M. Harris Utah On the good side, it was easy to set up, and worked reasonably well if the phone (tried both cordless and corded) was plugged directly into unit. However, I could not get it to work on other phones in the house when I used the jack to plug it into the wall per the instructions (so it would work like a land line on any phone in the house). I do not have a land line, so it may just need a land line to work since you are supposed to be able to switch back and forth. I even tried disconnecting the line outside the house but that didn't work either. I experience sporatic dropped calls that were not present before installing this device. I contacted tech support and was sent a driver upgrade v 1.20 (not available from their website). This seemed to improve the dropped call situation a bit, but I still have more dropped calls than before. The dealbreaker for me was after I found out you had to be logged in as an administrator for it to work. With an "always on" internet connection, I was not willing to expose myself to that security risk B000E39V9O:unacceptable.__this_is_worse_than_beta.:c_campbell B000E39V9O D-Link DPH-50U Skype USB Phone Adapter: Electronics electronics 2 of 2 2.0 Unacceptable. This is worse than Beta. October 9, 2006 C Campbell Los Angeles, CA United States I bought this a few weeks ago so that I could connect a cordless phone to my office computer and use Skype for my calling. When it works, it works well, and the sound quality is fine. Unfortunately, much of the time, it doesn't work. It drops calls at random. Customer support is dismal, I emailed them several days ago and didn't even get a response acknowledging the email, let alone a solution to my problem. Just now I have tried reinstalling the drivers but that seems to be failing. We have a VoSky Call Center at home that so far has been working much better. I bought the the DPH-50U because I was in a hurry and the store I was at only carried it, not the VoSky. I wish I had waited and bought a second VoSky B0000BVYTV:sucks!:d._mentzer_"dm" B0000BVYTV Antec USB-Powered Notebook Cooler: Electronics electronics 1 of 4 1.0 sucks! August 18, 2006 D. Mentzer "DM" LA, CA the connection keeps coming loose and now it doesnt work unless you hold it in place - useless and a waste of mone B000F1O0X2:scroll_wheel_just_stops_working!!!:a._traverso_"subgenius" B000F1O0X2 Logitech MX 400 Performance Laser Mouse: Electronics electronics 1 of 5 2.0 Scroll Wheel just stops working!!! June 5, 2006 A. Traverso "SubGenius" Petaluma, CA USA I really wanted to like this mouse but so far it has given me nothing but grief. If you plan on leaving your computer on for extended periods of time and then coming back to it to do some work you may find that your scroll wheel no longer scrolls pages. I have had to on several occasions unplug and replug in my mouse in order to get the scroll wheel working again. This is absolutely UNEXCEPTIBLE Logitech! What happened to Logitech? You used to be able to count on them for quality products now I am wondering if I should switch back to Micro$oft products. I may give the Micro$oft Laser Mouse 6000 a try and take the MX 400 back B000F1O0X2:bad_-_bad_-_bad:biil_seeb B000F1O0X2 Logitech MX 400 Performance Laser Mouse: Electronics electronics 0 of 9 1.0 BAD - BAD - BAD May 27, 2006 Biil Seeb Pittsburgh PA Like the forward/back buttons but they are located too far back on the body for comfort. Like the scroll wheel and side-to-side scroll ability. Pointer flickers a lot sometimes and often disappears over certain buttons. Logitech website gives no help. Comes with an installation CD for a Logitech MX320 !!! Be prepared for a 50MB download to install the MX400. Almost makes Microsot look good B0009L8Q8I:description_and_picture_are_very_misleading.:greg_stratakes_"amazon_fan" B0009L8Q8I GN-Netcom GN Netcom GN 6210 - headset ( 85-00006 ): Electronics electronics 3 of 3 1.0 Description and Picture are Very Misleading. June 9, 2006 Greg Stratakes "Amazon_Fan" Bradenton, Florida United States I have the same issue as "Misleading Item Description" below. The only reason I bought this is because I thought it was the complete set. What good is a headset without the base? WARNING! TigerDirect does not except returns on this headset; so now I must return the headset to TigerDirect, then buy the full unit from TigerDirect or I lose my $70. The headset with the base is about $35 more expensive than what I would have payed at BUY.COM. I expect a lot more from Amazon. Very, Very Disappointed B0002ZFVB6:very_bad_product:yi_chen_"courga_boy" B0002ZFVB6 Rikaline GPS-6010 USB GPS receiver for laptop notebook PC WAAS: Electronics electronics 5 of 21 1.0 very bad product March 10, 2005 Yi Chen "Courga boy" USA I bought this Rikaline GPS 6010 a month ago. I tried to make it work for hundreds times, but it only worked once. Evertime when I turned on the GPS, it was always telling me it was initializing and then it just stopped working.I hate this thing because it embarrassed me before my friends. B0001D3K3A:don't_buy_this_junk.__plenty_of_other_good_adapters,_why_risk_buying_this:j._tone B0001D3K3A Linksys WMP54GS Wireless-G PCI Card with SpeedBooster: Electronics electronics 7 of 7 1.0 Don't buy this junk. Plenty of other good adapters, why risk buying this August 24, 2006 J. Tone San Jose, CA Mine actually works and I still hate it. I haven't had all the problems others are complaining about. ---I run Windows XP SP2 had no problems compatability. ---Signal strength is fine. ---I had no problem installing on one computer....except that I installed the card before running the CD, just like every other card or peripheral I have ever installed. I've never seen one that didn't allow you to install hardware before drivers. So I had to take it out, run CD and put back in. Just a minor annoyance that cost 10 minutes. But c'mon Linksys why the special order? Most people that are willing to open the computer and install a card don't need instructions to know "take card and put in slot" and "insert disc", so they don't look at them. At least they put a warning sticker about the installation order on the disk cover for us non-direction readers. Annoying but no stars deducted for this. ---Told Mom to buy one (this was before I had installed mine). Installed easy and it worked fine at first. Now it connects to router but can't find internet (yes other computers connect to net through this router just fine). Would think maybe firewall setting issue??? but I used to work then just stopped. C'mon Linksys if your connected to the router how hard it is to find the internet. Deduct 1 star. ---Stupid software only supports hexidecimal passwords. Of course my router also support standard alphabet and my password had some G-Z letters, so I had go change network password and update all devices attached to the network. C'mon Linksys how hard it is to support A-Z. Annoying but no stars deducted. ---SLOW SLOW SLOW SLOW TO CONNECT!!!! On my other computers you hit connect and are online in 5-10 seconds. This thing takes 30 seconds to a minute. Impatient, yes. But still unacceptable. Deduct 1 star. ---Can't hibernate or sleep computer or card disables. Only way to get it turned on again is to reboot. So it's either leave computer on all day long, or reboot everytime I want go online. Deduct 1 stars. --Overall bad product. Deduct one star B0001D3K3A:terrible_connections:a._chu B0001D3K3A Linksys WMP54GS Wireless-G PCI Card with SpeedBooster: Electronics electronics 3 of 3 1.0 Terrible connections June 19, 2006 A. Chu Palo Alto, CA USA I bought two of these cards to go alongside my wrt54gs. I though that they should work great together since they are from the same manufacturer. Oh boy was I wrong. Even the though I get full bars with these cards, I get very flaky connections with them. I've tried many different settings and firmwares to try to rectify the problem. Many hours have been spent trying to get a stable connection. No dice, very flaky. Other computers with different cards work fine with the wrt54gs and never dropout. So there is something about this card that just isn't right, and I can't imagine both cards being defective. I haven't tested them with another router, but if it can't work with a wrt54gs v3, then what's the point B00008YBCJ:amazing_furreal!: B00008YBCJ D-Link - Antenna cable - N-Series connector (M) - N-Series connector (F) - 30 ft: Electronics electronics 0 of 2 2.0 Amazing furreal! January 12, 2006 I got this toy for Christmas. Ilove it. I abanded this toy,and it got some brudle hits. It was still alive! Know I keep safe becuse I don't want it to die. I don't think this toy is a wast of money.Mine is ginger. It came with a silver/grey newborn kittin B00023NDLS:overpriced:james_b._beckham_"jim" B00023NDLS Acoustic Research AW-871 Wireless Stereo Speakers: Electronics electronics 1 of 1 2.0 overpriced November 23, 2006 James B. Beckham "jim" columbia These speakers are o.k., but don't expect high sound quality (I bought these as refurbs, so maybe that is it, but when you turn up the volume, they don't sound good - I'd recommend going to a store and testing units before buying new). Also, probably the biggest failure in my opinion is that they appear to be line of sight - that is, they fade in and out when you walk around the room. This should not be a problem on this low bandwidth (but it is), perhaps the antenna needs a boost B00023NDLS:not_so_good.:h.f.mudd B00023NDLS Acoustic Research AW-871 Wireless Stereo Speakers: Electronics electronics 1 of 1 2.0 Not so good. November 17, 2006 H.F.Mudd Redding, CA Too much static with snapping and popping - even after making all of the adjustments possible. The speakers are ONLY 10 feet away from the transmitter but still poor-to-marginal sound quality. Don't see how these could work 300 feet away(?) I do NOT recommend this product B000063SNE:cheap_junk:r._johnson_"19th_century_artist" B000063SNE RCA ANT1250 UHF/VHF Amplified indoor Antenna: Electronics electronics 4 of 9 1.0 Cheap junk February 8, 2006 R. Johnson "19th century artist" SoCal, USA Cheap piece of junk. Probably has 2 cents of electronic parts in it. I'm returning it to Wallmart. It might work OK if you live like right next door to the broadcast transmitter. Otherwise it's just too weak in its signal pulling ability. Also, when I turn the gain dials, they don't seem like they are really variable. I think they are really just on/off switches disguised as variable dials, because i don't see any difference between medium gain and high gain on any of the channels. I'm going to now go to a REAL, serious electronics store and look for some SERIOUS tv electronics hardware instead of Wallmart garbage. I'm going to work on improving my roof antenna and its cabling and I'm going to try using a variable gain preamp if I can find one (a high quality one, not junk). I tried a preamp from Wallmart (which wasn't adjustable at all) and it did help a lot with UHF channels, but the VHF channels were much worse because it made the signal too strong. So I need a variable gain preamp, assuming there is such a thing. I would advise everyone to go read the information available on the internet about tv antennas and how to get the best picture with them. I did yesterday and there's a lot of good stuff I never knew before. B000063SNE:indoor_tv_antenna:miles_h._kennedy B000063SNE RCA ANT1250 UHF/VHF Amplified indoor Antenna: Electronics electronics 2 of 3 2.0 Indoor TV antenna October 3, 2005 Miles H. Kennedy Cleveland, Ohio I live in a particularly bad spot for TV reception and have been forced to use cable. This antenna brings in several local stations but the quality of the picture is unsatisfactory. So, unfortunately, for me it's either back to cable or try an amplified outside antenna. Miles Kenned B0000DBLMB:does_not_work_in_presentation_view.:randy_dodd B0000DBLMB Kensington 33062 Wireless Presentation Remote Control with Laser Pointer (PC/Mac): Electronics electronics 2 of 3 2.0 Does not work in Presentation View. September 18, 2006 Randy Dodd Novato, CA United States Yeah, they claim this thing works with MS Powerpoint. But what they do not tell you is that it only works with PART of Powerpoint. It only works in Slide Mode. It does NOT work in Presentation View mode. Of course, most of my presentations are run in Presentation View mode. SO the remote is useless. And they have no fix for it. They cannot even document that this is the case. I am going to look for something else. Maybe the Microsoft Remote. ***UPDATE*** It's true, this presenter has problems with PowerPoint's Presenter View because in that mode PgUp and PgDown keys are used to scroll the notes. However, here's a neat trick I discovered that makes it work again: - Start the presentation in Presenter View - Pres "B" on your keyboard to show a blank screen - Click the mouse (anywhere in the blank screen) once to resume the presentation and then AGAIN to advance to the next slide - Magically, from this point on the presenter buttons work flawlessly. B0002ZZTFE:confusing_description_of_item:a._coughenour B0002ZZTFE Motorola MD71 5.8 GHz Cordless Accessory Handset for MD700 Series Phones: Electronics electronics 1 of 9 1.0 Confusing description of item May 14, 2006 A. Coughenour California I wish the description had beem better. Somethimg like THIS PHONE NEEDS ANOTHER UNIT TO WORK! People who have never seen an expansion phone can be missled like I was. Returned item B00006FXR9:review_of_zenith_zhdtv1-hdtv-uhf_digital_indoor_antenna:david_j._krupp_"djk" B00006FXR9 Zenith ZHDTV1 HDTV-UHF Digital Indoor Antenna (Silver and Black): Electronics electronics 0 of 4 1.0 Review of Zenith ZHDTV1-HDTV-UHF Digital Indoor Antenna November 16, 2006 David J. Krupp "DJK" NYC , USA The Antenna did not work at all! Save your money! B000I5PGOM:dead_unit:j._maldonado B000I5PGOM Creative Labs Zen Vision: M 60 GB Portable Media Player Black: Electronics electronics 0 of 22 1.0 Dead Unit November 1, 2006 J. Maldonado Georgia I recieved this unit 3 bussiness days after I ordered it. Fast shipping. To bad when i recieved it it only worked for 2 minutes!!! Sending back tomorrow, not sure if i want another one. Only comes with usb charger, no wall charger B00005MITU:at&t_210:a._ritchie B00005MITU AT&T 210 Trimline Phone with Memory Dialing (Black): Electronics electronics 2.0 AT&T 210 November 9, 2006 A. Ritchie Wakefield, MA United States Phone seemed nice but I bought it to hang on a wall and it wouldn't due to manufacturing. B000136P8W:terrible,_useless,_and_unecessarily_complicated.:walter_o'brien_"concretewo" B000136P8W Plantronics S12 Corded Telephone Headset System: Electronics electronics 1 of 1 2.0 Terrible, useless, and unecessarily complicated. November 16, 2006 Walter O'Brien "concretewo" Clinton, NJ USA All I wanted was something to make the incoming audio louder while listening to a call and typing during an interview. I couldn't find just a headset amp so I purchased this "system" based on Plantronics' good name. Instead of just plugging it into the wall phone jack, you have to use a regular phone, route the receiver/handset cord to this, then back out to the receiver/handset again, which makes this light unit basically hamstrung between the headset and handset and doesn't want to sit on the desk without taping it down. Then you have to take the receiver/handset off the hook, place it on the desk (assuming you have desk space, which I don't) then push a button to start up the headset. Most importantly, listening sound quality was muffled and not very loud. If I turned up the incoming sound volume, it immediately put a loud annoying squeal of feedback into the microphone, making it totally unusable. I went back to my regular, unampflied Plantronics headset which just plugs into the wall phone and is always on with no extra cords, ac adapter, or buttons to push. I'm not very thrilled with that, but for $15 it sounds MUCH better and much louder, without the feedback or the hassles. So for now I guess I'll stick with that until I find something else that just improves the incoming sound B0007N55LE:they_don't_stay_on/in_your_ears:tina_mazzarino B0007N55LE Sony MDR-EX81LP Bud-Style Stereo Earphones (White): Electronics electronics 1 of 3 1.0 They don't stay on/in your ears November 19, 2006 Tina Mazzarino MA I never even got a chance to listen to music through these headphones. I couldn't get them to stay in/on my ears. The loops that go around your ear are huge and just make them more cumbersome. These may fit men with bigger ears better but I wouldn't recommend them for females B0007N55LE:no_need_of_ear_hanger:j._kim_"http://clixlounge.com/" B0007N55LE Sony MDR-EX81LP Bud-Style Stereo Earphones (White): Electronics electronics 1 of 2 2.0 No need of ear hanger November 9, 2006 J. Kim "http://clixlounge.com/" MD USA I like the color and sony's technology of the earphone itself. But the hanger that should be placed on your ear is worthless. When I put the earphone in the ears, the hanger part is just hanging in the air, not supporting the earphone to be placed in and steady. Because of that, the earphones easily pop out of your ear B00005UK9T:adhesive_problems:m._shanafelt_"shanafme" B00005UK9T Garmin Auto Mounting Bracket for eTrex: Electronics electronics 9 of 9 2.0 Adhesive Problems January 1, 2006 M. Shanafelt "shanafme" Hollidaysburg, PA United States The device is well built but has one major flaw. The adhesive comes in 2 types, "removable" and "permanent" types. Neither adhesive would stick to the dash of my Jeep Liberty. I'm not sure what I'm going to do with it now, it appears as though I'm going to either have to find a more permanent mounting solution or find another type of adhesive B000B6D39I:right_click_is_tricky:christian_oliver_"coliv77" B000B6D39I Apple Bluetooth Wireless Mighty Mouse: Electronics electronics 2.0 Right click is tricky November 19, 2006 Christian Oliver "coliv77" Atlanta, GA After two weeks of use, I returned the mouse because 3 out of 4 times I tried to make a right click, it would not work. I eventually got frustrated and decided to return it. I'm sure it has to do with the way I use the mouse but I'm not planning on changing my angle or whatever it is that makes it fail. I think a regular 2 button mouse is just perfect. I wish this mouse had a real mechanical right button because it would be perfect. I LOVED the scroll wheel and will miss it greatly B00081GASC:it_arrived_doa:barry_weber B00081GASC Etycom Headset Pillow Pak: Electronics electronics 1.0 It arrived DOA November 11, 2006 Barry Weber Philadelphia, PA USA I had high hopes for this headset. I found that I could not hear anything when I attached it to my Treo 650. The Treo uses a standard plug. I verified that my Treo is working by attaching a stereo headset B0001NA2S6:pure_junk!:erick_perez B0001NA2S6 D-Link DP-G310 Wireless Print Server, USB 2.0 802.11g, 54Mbps: Electronics electronics 1.0 Pure junk! September 27, 2006 Erick Perez Miami, Fl My friend bought one and I tried to set it up for him. Let me tell you, this thing is pure garbage. I spent a good hour and a half trying to get it to work. I tried to set it up using 2 laptops which were set up exactly how the booklet outlined. The direct ethernet connection wouldn't work and connecting to it through wireless was spotty at best. I could sometimes get into the setup page through wireless, but all of a sudden the setup page would stop working. Stay away from D-Link! All their products are cheaply made and difficult to configure B0001NA2S6:difficult_to_install_and_unreliable:j._lin B0001NA2S6 D-Link DP-G310 Wireless Print Server, USB 2.0 802.11g, 54Mbps: Electronics electronics 1 of 1 1.0 Difficult to Install and unreliable March 4, 2006 J. Lin San Jose, CA United States I got this print server about a month back. Initially it took me 4 hours to get this thing installed and running in the wireless mode! After I got it setup, it worked fine for a week. But, then the wireless connection with the print server got flaky, so I switched to the wired mode. All was well again, but then after a couple of weeks the wired connection got flaky. It stopped printing and didn't recognize my HP-1200. After fiddling around with it for a few hours I finally got the contraption working again. But, now my latest problem is that the print server prints garbage to the printer! Plugging the printer directly in to a computer works fine, but the print service somehow corrupts the data going to the printer and I end up with pages of garbage and error messages. SUMMARY: This thing was a beast to set-up and every time something goes wrong, it takes a phenomenal amount of time to debug and correct. That's in addition to the questionable reliability of this device. I say steer clear of this thing. I'm now shopping for something better and never buying D-Link again B0002XHFPS:pathetic:brandon_king_"brandon" B0002XHFPS Kensington WiFi Finder Plus: Electronics electronics 2 of 3 1.0 Pathetic June 14, 2006 Brandon King "Brandon" Providence, RI This thing does a horrible job at detecting wifi networks. I have to be within 10 feet of my router to get a 50% signal (even though I can walk out tot he edge of my house and easily still get a good connection). If it does detect Bluetooth, which half the time it doesn't (regardless of it being active), it cancels out the wifi detection. So if you have a bluetooth headset, and you're talking, the thing will just let you know that yes, there is a bluetooth device around. Thanks. I was wondering B0008G1RWG:needs_help:joanna_owen B0008G1RWG TomTom GO 700 Portable GPS Navigation with Hands-Free Calling: Electronics electronics 24 of 24 2.0 Needs help August 21, 2006 Joanna Owen Birmingham, Al USA My husband bought me this for Christmas because we were moving to a new city. He picked it out because unlike Garmin and Magellen it was created from the ground up for use on the road. The features are easy to use, the directions are great and when you need a new route because of roadblock or traffic - it really comes up with a great plan. However - my first one lasted 3 months before it died, I then replaced it with another one and it died 3 months later as well. I was very reluctant to buy a different brand - but had to for dependability. I still don't like my Garmin as much - but at least it works. Come on Tomtom - get the electronics working as well as the maps and directions B0009DG7KK:not_ready_for_primetime...:douglas_f._jones B0009DG7KK Wacom Graphire Bluetooth 6x8 Tablet: Electronics electronics 39 of 41 2.0 Not ready for primetime... October 30, 2005 Douglas F. Jones Los Angeles, CA I'm a longtime user of Wacom Intuos tablets and I was looking for something similar with wireless capabilities for my new dual 2.5ghz-G5. There were no wireless Intuos products available at the time of purchase, so I went with the Graphire Bluetooth. Unfortunately, the product leaves a lot to be desired and after a couple of weeks of use, I plan on returning it. The major problem lies with the pen--both in design and responsiveness. Design: the Graphire series is cheaper than the Intuos, and there's a good reason why: the Graphire pen is thinner, lighter, and has no grip. If you have very small hands this might be acceptable; in my hand this feels like a toothpick. It's very difficult to manipulate a tool effectively when it doesn't feel like it has any durability. Additionally, the Graphire pen stand is little more than a piece of transparent molded plastic and slides around the desk whenever I put the pen back into it. Responsiveness: There is a half-second delay whenever using the pen to click in any finder-related options--opening windows, selecting files, etc. 1/2 second may sound acceptable, but if you, like me, use the pen for everything, not just drawing, believe me it is utterly maddening. On the other hand, the mouse behaves perfectly with no delay at all, so I know it's the pen and not my computer. The tablet is attractive and the mouse works fine, but the bottom line is that it's more important for me to have a responsive, durable pen than a wireless tablet. If you've never used an Intuos you may not recognize the deficiencies, but for those who have, this is like going from a Mercedes to a Honda Civic. You'll get better gas mileage with the Civic but the Benz gives you the best overall driving experience. I need the driving experience, so I'm going back to the Intuos--wire and all. B0001A99LK:p.o.s.:caesalpina_"casealpina" B0001A99LK Apple 4 GB iPod Mini Pink M9435LL/A: Electronics electronics 6 of 6 1.0 P.O.S. June 2, 2006 caesalpina "casealpina" southern california I know that everyone else seems to love this, so perhaps my complaint is more about Apple in general. My Ipod Mini (pink)is a lemon. The battery has never worked properly. It takes longer to charge than to discharge, and my current playing time per charge (no changing settings, not backlighting, nothing but hitting play and waiting till the battery dies) is about 2 hours. Apple will gladly sell me a new ($70) battery, but other than that tough. It is apparently my fault thet they're selling shoddy products. I'm not saying don't buy it. There aren't realistically any better choices out there than the Ipod, but buy it when you have a week to sit around and evaluate it and when they get around to opening a store near you. As for me, I think I'm going to dig out my old discman B000BNMDBU:total_crap.__sound_quality_is_awful.:scott.hunter_"professional_stud" B000BNMDBU DLO 009-3030 Transpod In-Car Cradle/FM Transmitter, White ( 009-3030 ): Electronics electronics 3 of 4 1.0 Total crap. Sound quality is AWFUL. June 2, 2006 Scott.Hunter "professional stud" bonerland I returned this thing the day after I bought it. I should of been clued in when I purchased it at the store, ALL the Transpod models had a little sticker on them advising them about the store's return policy. I thought it a little unusual at the time, but after listening to the thing I understand why now. I'm sure a lot of people had been returning this model. The sound quality was really bad. You have to turn your stereo WAY up to hear the music, and even then it sounds almost as bad as AM radio. I'll add that the files I was playing were 192Kbps aac encoded files so they're decent quality too B00005B9AQ:sub_woofer_problems:m._bouline B00005B9AQ Harman Kardon SoundSticks Computer Speakers: Electronics electronics 2 of 4 1.0 Sub Woofer Problems October 29, 2005 M. Bouline Texas After only a couple of months of light use, the sub woofer started making loud thumping sounds and the system stoped working. As soon as power is connected to the sub woofer, the loud thumping starts. I exchanged the system and the second set had the same problem after 6 weeks!! A total piece of junk B000F3YSQ4:fancy_features,_but_bottom_line...poor_performance:michael_r._bell B000F3YSQ4 Fujitsu ScanSnap S500 Clr 18PPM/36IPM Dupl Scanner: Electronics electronics 3 of 5 2.0 Fancy features, but bottom line...poor performance October 20, 2006 Michael R. Bell Tokyo, Japan While a nice product packed with great features when it works, the bottom line is that it does NOT support TWAIN drivers, meaning you can not scan through ANY application other than ScanSnap. BIG MINUS. Second minus is JAMS, JAMS, JAMS. I have barely used this machine, but the double feeds are incredible (the rollers are new and the machine is clean). I even tried using high grade color laser copier paper, but STILL double feeds big time! Upon occasion, I get a good feed, and I am so thankful for that. If you are planning to do some serious office organizing with various types of paper, sizes and paper weights, skip this product and go for a ADF flatbed scanner. This baby will JAM up your day and consume all of your time with fiddling, reorganizing the misfeeds and clearing jams. Think deeply before buying this one. Also, with an ADF flatbed, you can scan books, and unusual documents (thin paper, very heavy paper) that an ADF (and the ScanSnap) won't process by simply lifting the lid of the ADF and taking the scan directly on the glass. With ScanSnap, you are screwed B000065UTC:too_loud:dag_a._schield B000065UTC Kensington 62648 FlyFan USB Notebook Fan (PC/Mac): Electronics electronics 1 of 4 1.0 Too loud September 29, 2005 Dag A. Schield Just plugged it in and I'm ready to ship it back. Creates an annoying, high pitched buzz B000065UTC:err...:kuyo B000065UTC Kensington 62648 FlyFan USB Notebook Fan (PC/Mac): Electronics electronics 2 of 3 2.0 Err... September 23, 2004 Kuyo Honolulu, HI USA I was hoping that by getting this I'd get a decent flow of air and i'd be able to use it anywayer. But I was sorely dissappointed. It doesn't give much air and all the air you get you need to be close to feel... plus its too loud to use in most places... If you really need it, you can get it... but I can't use mine often because like I said its too loud. Not worth it, not enough air flowing B00005Q3UD:terrible_and_disappointing_product:fred_pickering_"consmer_advocate" B00005Q3UD AT&T 2255 2.4 GHz Dual Handset Cordless Phone with Answering System and Caller ID (Champagne): Electronics electronics 1 of 3 1.0 Terrible and disappointing product May 9, 2005 Fred Pickering "Consmer Advocate" Purcellville VA The battery life for this phone after one short year is abysmal. After charging it all night, it dies after a few hours of nonuse. The redial button simply has never worked. It is not user friendly at all although I could live with this if the two issues above were resolved. I contacted AT&T and requested that they send me a new model that works since this phone is obviously defective. If they refuse then I won't ever buy an AT&T product again and neither will anyone I come into contact with. It's that simple. Update...AT&T refused to do anything about the phone despite the obvious flaws,. As a result, I will never buy another AT&T product again. AT&T, you are exhibiting the traits of a company that will go out of business. B00005Q3UD:worst_phones_i_have_ever_used:ross_mccord_"dork" B00005Q3UD AT&T 2255 2.4 GHz Dual Handset Cordless Phone with Answering System and Caller ID (Champagne): Electronics electronics 1 of 1 1.0 Worst Phones I have ever used February 22, 2005 Ross Mccord "dork" Santa Cruz, CA USA We bought a set of these phones because they looked nice, and because AT&T is a reliable company. But these phones are the worst. After having them for about 3 weeks, we began having terrible results with the volume/speakers in the phones. I took them back, and got a new set. These lasted about twice as long, before the battery life just became worthless. We are unable to leave these phones off the hook now for any extended period of time - say, 1 hour. And you can't talk on the phone for more than 30 minutes or so before the battery dies out, and takes 6 hours or more to get back charged again. And yes, we followed all the directions for letting the batteries charge, and all that kind of stuff. Still...I have never used a more frustrating phone, nor will I ever purchase an AT&T phone again. I bought a new phone today, and once fully charged, I will take these AT&T phones out back and smash them with a hammer B00005Q3UD:poor_battery_life_:bruce_e._gunn_"gunnbug" B00005Q3UD AT&T 2255 2.4 GHz Dual Handset Cordless Phone with Answering System and Caller ID (Champagne): Electronics electronics 4 of 5 2.0 Poor battery life October 18, 2004 Bruce E. Gunn "gunnbug" Belvidere, IL USA I have to agree with many others about the poor quality of this phone. The battery life decreased rapidly and after several weeks I was forced to keeps both phones on their chargers. Instead of gambling on replacement cells I bought a Panasonic phone as suggested by other disappointed AT&T model 2255 buyers B0001MQURE:pathetic_sound.:c._champion B0001MQURE Monster Cable iCarPlay iPod Cassette Adapter (AI CAS-ADPT): Electronics electronics 2 of 2 1.0 Pathetic sound. October 17, 2006 C. Champion I also was suckered in by the Monster name. I have an older Sony adapter that I've used in the past with no problems but couldn't locate it right before a road-trip, so I bought this one also. This actually sounds substantially worse than my actual cassettes (even though they're all over 10 years old). The sound is hiss-filled, very poor signal-to-noise ratio. Stay well away B0001MQURE:zero_stars:eieio B0001MQURE Monster Cable iCarPlay iPod Cassette Adapter (AI CAS-ADPT): Electronics electronics 2 of 2 1.0 Zero Stars July 7, 2006 eieio Chicago I attempted to use this product in my 2002 Chevy Tahoe factory audio system. As others here noted, the deck would quickly error and eject the Monster Adapter. The Monster Adapter did work in my 2000 Harley Davidson FLTRI factory audio system. The difference is that the Harley unit does not have "cut-tape" detection. The Tahoe does. I returned this Monster unit and picked up the Sony Sony CPA-9C. The Sony device is a bit different as it has small link of simulated audio tape within the tape path. This little bit of simulated audio tape effectively fools the tape unit not to think that there is an error and eject the Cassette Adapter. There are other reasons that these adapters will auto-eject (Google is your friend). But the Sony unit seemed to be the solution for me. The big reason for the zero star review is that Monster has ZERO information on their web site or product packaging regarding device compatibility or troubleshooting. B0001MQURE:so_quiet,_it_didn't_work_at_all:p._brown_"babybrownbooks" B0001MQURE Monster Cable iCarPlay iPod Cassette Adapter (AI CAS-ADPT): Electronics electronics 2 of 2 1.0 So quiet, it didn't work at all June 19, 2006 P. Brown "babybrownbooks" I lost my adapter that came from Walmart and was a generic brand. It worked perfect. This thing was expensive and it didn't work at all. I'd have to turn the volume on both the ipod and stereo all the way up and then I'd get some sign of life, not anything you'd want to listen to. It's worst than even the worst RF transmitter I've ever tried. Don't waste your money, believe the reviews B000058BCR:the_worst_unit_i_have_ever_used:douglas_d._gaj B000058BCR Garmin eTrex Vista 24 MB GPS with Compass, Altimeter, and PC Cable: Electronics electronics 2 of 2 1.0 The worst unit I have ever used November 8, 2006 Douglas D. Gaj Seattle, WA I bought this unit a couple of years ago based on its features, but soon discovered that it can't normally do the one thing that all GPSs should, tell you where you are. I used my e-Trex Vista for about a year and half and would estimate that I spent 10% to 15% of the time staring at some type of lost signal message. The unit is totally useless under any type of tree cover and often has trouble holding a signal anywhere on overcast days, which means about half the time in the Seattle area where I live. I would not recommend this unit to anyone but my worst enemy B000058BCR:lackluster_product_at_best:byngbong_"byngbong" B000058BCR Garmin eTrex Vista 24 MB GPS with Compass, Altimeter, and PC Cable: Electronics electronics 5 of 10 2.0 Lackluster product at best June 13, 2006 ByngBong "ByngBong" Tacoma, WA USA I had this GPS device for only 3 days and found it to be no better than mediocre. Although at one point I was able to track 6 WAAS satellites and the display claimed accuracy to 17 feet, while driving along a straight road for 5.5 miles, it indicated that I was traveling approximately 350 feet to the side of the road. On two occasions on this straight road, it said I actually crossed the road and traveled on the opposite side. I conducted a test by placing the unit where it would have an unobstructed view of the sky for 1 hour and leave it motionless. The trip computer reported that it had moved nearly a quarter-mile during that hour. I checked the accuracy at 15-minute intervals and it was constantly reporting accuracy between 12-24 feet. The base maps are crude and inaccurate - a major 4-lane road (Hwy 7) in Tacoma, WA stops at 38th street. Really?!? If I drive down Hwy 7, it goes a couple of miles farther than the unit shows. While using the compass you must hold the unit level in order to obtain accurate readings - understandable. There is even a little message that tells you to hold it level if you are off a little - nice. I tried and tried to find "level" according to the unit and after about 3 or 4 minutes was able to determine where "level" was. It was nowhere close to actual level. Now, if I am trying to navigate with the unit's compass while it is mounted to my bike, there is no way it is going to be level and accurate. At 5.3 ounces, it doesn't even pass off as a good paperweight. Fortunately I was able to return it to the seller with no problems for a full refund (Thank you REI!). I found out that Wal-Mart.com sells the unit for 50 bucks less than REI after I bought it though. Recommendation: If you need a paperweight, get a rock - if you need a GPS, get a different one. B000058BCR:good_device,_worst_service_and_software_imaginable:d._j._lidsky_"jolly_editor" B000058BCR Garmin eTrex Vista 24 MB GPS with Compass, Altimeter, and PC Cable: Electronics electronics 9 of 21 1.0 Good device, worst service and software imaginable April 17, 2006 D. J. Lidsky "Jolly Editor" New York, NY Garmin's devices are pretty good. Somewhat tempermental, but mostly reliable. It's connecting their software and dealing with Garmin support that is a nightmare. And, you will need to call them because their software has all kinds of bugs and an archaic key system. Customer service hold time: 30-35 minues. Response time for email tech requests: a staggering 5-7 working days. Clearly Garmin does not care about its customers B00014B4OQ:great_product_-_horrible_durability:laura_a._huber B00014B4OQ Acoustic Research AW771 900 MHz Wireless Stereo Headphones: Electronics electronics 1 of 1 2.0 Great Product - Horrible Durability October 18, 2006 Laura A. Huber Boston, MA When these headphones are working, they are great. I never have trouble receiving sound. They are amazingly comfortable. Great battery life, and batteries are rechargeable. Long distance is great too, I can walk throughout the whole house on multiple floors without any trouble. But... it's FAR to often that these are NOT working. As a matter of fact I've gone through FOUR pair in the last 2 years. The first pair didn't work out of the box. The second pair lasted two weeks and then the headset just would not turn on. The third pair lasted about eight months before the same thing happened, they just would not turn on. The forth pair lasted about a year and then yesterday the very same thing happened. B000EWARBG:software_defeats_purpose_of_flash_drives.:l._f._martins B000EWARBG SanDisk 1 GB Cruzer Micro with U3 ( SDCZ6-1024-A10, Retail Package): Electronics electronics 1.0 Software defeats purpose of flash drives. November 22, 2006 L. F. Martins After having an experience with slow startup speeds (and actually freezing a computer) with the 1GB Cruzer Micro with U3, I feel compelled to write this negative review. The mere existence of a software layer to access the flash drive defeats the main purpose of existence of flash drives: a fast and higlhly compatible interface. Any hidrance to this convenience makes the device a liability. I work at an educational institution wher I am responsibel for organizing presentation sessions in which speakers often bring their presentations in a flash drive. As a matter of policy, we will not allow speakers to plug in to our computers devices that run any kind of software in the background B000EWARBG:how_to_remove_the_u3_launch_pad_:picasso_"sharko2005" B000EWARBG SanDisk 1 GB Cruzer Micro with U3 ( SDCZ6-1024-A10, Retail Package): Electronics electronics 2 of 2 2.0 How to remove the U3 Launch Pad October 12, 2006 Picasso "sharko2005" California I bought the Cruzer Micro not knowing that it came with the U3 Launch Pad software preloaded. As soon as I tried to use it on my computer at work, the company's anti-virus/firewall decided it was an intruder, preventing it from working at all. I was ticked... I had almost given up on it and was actually shopping around for another USB drive that had no software on it, when I ran into a website that lets you download an uninstaller for the U3 Launch Pad. I downloaded it, ran it and it took no more than 15 seconds to clean out the offending U3 garbage! Now I like my Micro Cruzer all over again! Oh yeah... the website to uninstall yours at is: [... B000EWARBG:i_hate_this_drive:g._johnson_"glj52" B000EWARBG SanDisk 1 GB Cruzer Micro with U3 ( SDCZ6-1024-A10, Retail Package): Electronics electronics 4 of 7 1.0 I hate this drive October 5, 2006 G. Johnson "glj52" Santa Fe I wish I had read the reviews before buying this piece of junk. As another reviewer says, U3 ruins it. I have a Mac so that feature is useless, but even worse it cannot be disabled. Everytime I plug in the drive I get this cheesy CD image cluttering up my desktop and I have to eject it, along with the drive icon, before the unit can be removed. What clunky engineering. I'll be returning this and scratching Sandisk off my list of reliable companies. I also agree with the reviewer who complained about the packaging. It is impossible to open without tearing it apart, which is probably a strategy to reduce returns B0000E0ZM0:if_the_case_doesn't_fit_you_must_acquit:pbb B0000E0ZM0 Palm Hard Case for Tungsten E and Tungsten E2: Electronics electronics 0 of 1 1.0 If the case doesn't fit you must acquit February 3, 2006 PBB Brea, CA United States Spare SD card slots molded into the lid of this case prevent it from closing completely around the Tungsten E. You will see a noticeable gap around the bottom edge of the closed case. Slight pressure on the latch side side will cause the case to pop open unexpectedly in purse or brief case. I returned mine to Amazon a few days after receipt; still looking for an alternative B0003QIXBY:a_bad_choice_for_16x_writing:thomas_b._talbot B0003QIXBY Verbatim 4.7 GB 16x DVD+R Recordable Media Spindle (25 Discs): Electronics electronics 7 of 17 1.0 A bad choice for 16x writing December 1, 2004 Thomas B. Talbot Manhattan, KS USA With a destructive toddler in the house I like to back up my DVD movies. Having recently purchased a 25 unit spindle, I recently tried backing up several DVDs with my sony DRU-710A 16x DVD recorder. Although the recording process initially did seem to work smoothly, when I attemped to play back the disks recorded at 16x speed, I would have read errors and lockups on DVD players usually towards the end of the film (the outside of the physical disk, where maximum recording speed is obtained.) I did have better reliability recording at 4x speed and suspect that 8x writes will work fine as well. Given the fact that I paid a premium for this new high speed media, I am disappointed. I have had nearly 100% reliability with Memorex 8x DVD+R, recently making 25 successful recordings in a row with this brand (ASIN: B0001MKU4S B00004Z7XX:an_expensive_piece_of_garbage:joshua_j._callahan_"jcallahan1" B00004Z7XX Plantronics MX10 Universal Amplifier for Headsets: Electronics electronics 5 of 5 1.0 An expensive piece of garbage April 10, 2006 Joshua J. Callahan "jcallahan1" jcallahan1 I bought this thing becuase I use voice recognition with my computer and I'm on the phone quite a bit. it was supposed to eliminate the need to for two head sets. With the amplifier and the plantronics headset to go with it The total cost came to around $200. Yay! The amplifier has a strong hum when used through the phone and when I use it witht eh computer it has such poor sound quality that it doesn't work with my voice rec. software. I called customer service and they said I should send the unit to them and they would send me a new one. Funny, I have read that in a few places online. I went out and bought the Labtec equivelent, the dialog-301 at a whopping $15 (headset included, the head set is cheap though) and it is chrystal clear for both the phone and my computer. Plus if you want to upgrade the head set you can buy any analog computer headset. Save yourself $185 and just buy the dialog-301 you will be happy. B000076WEX:one_year_later_the_card_no_longer_works:m._murray B000076WEX Kingston CF/1GB 1024 MB CompactFlash Card (1 GB): Electronics electronics 2 of 3 1.0 One year later the Card no longer works December 19, 2005 M. Murray North Coventry, Pennsylvania Just a fair warning to all out there considering this card. After purchasing this card it worked great. Then in the middle of my friend's wedding the card no longer was readable by my camera. I could not believe it! When I got home I put the original card in the camera and it worked fine. I reformatted this card and still the camera could not read the card. Not worth the money for only one years use B000076WEX:john_:jp_in_jc B000076WEX Kingston CF/1GB 1024 MB CompactFlash Card (1 GB): Electronics electronics 7 of 8 1.0 John June 11, 2005 JP in JC Jersey City NJ I have the Canon Rebel. I had the same problem where files were corrupted. Also, when clearing the card, some pics stayed filed. I am not happy with this flashcard at all. B000CFSLXG:crappy:sylvia_jensen B000CFSLXG Apple iPod Retractable USB 2.0 Data Cable: Electronics electronics 1 of 2 1.0 Crappy March 23, 2006 Sylvia Jensen It doesn't work properly. I can charge the Ipod but it doesn't let me sync. Sent an email to the seller but no answer so far! I am very disappointed with my purchase B0000AINEO:the_biggest_mistake_i_'ve_made!!:titurel B0000AINEO Sony RDR-GX7 DVD Recorder: Electronics electronics 12 of 22 1.0 THE BIGGEST MISTAKE I 'VE MADE!! November 27, 2004 Titurel Monsalvat DO NOT BUY THIS CRAPPY PIECE OF JUNK!! I purchased this unit with faith in SONY. Well forget it!! after 4 months the unit failed and began reading "disc dirty" half way through each recording. I sent the unit back for repair. They claimed to have "fixed it" but when I received it back it STILL failed on each disc (note that these failures RUIN the disc!). They sent me a brand new unit. GUESS WHAT..?! It failed after 3 months with the SAME PROBLEM!! I sent it back for repairs. AGAIN they claimed to have "fixed it". Well, it malfunctioned IMMEDIATELY!! I sent it back AGAIN!! This time they gave me a refurbished unit. I know you wont believe this...but the unit is WORSE than the other two!! They are currently sending me ANOTHER new unit. But I have no doubt this one will STILL be a piece of crap. They simply don't have this technology down. SONY should NEVER have put this junk on the market. BEWARE!! - UPDATE - They sent they new unit. Guess what? PIECE OF JUNK. Fails on discs writing and when reading written discs. After trying FOUR of these units I can assure you this is a LEMON. Please note these positive reviews are from buyer who had their units for two weeks or similar time periods. I have had four different units for ONE YEAR and can tell you THIS IS JUNK! Selling this crap on ebay and buying a REAL unit. NOT SONY! B00005KJUG:better_late_than_never_...:ttocsmij B00005KJUG Philips DVD782CH 5-Disc DVD Player: Electronics electronics 1 of 1 1.0 Better late than never ... August 11, 2006 ttocsmij Upstate NY USA We needed to know if this unit (Philips DVD 782C) was compatible with DVD+RW disks so I Googled it and found this Amazon listing. We were totally amazed to find the reviews we found ... and wish we had done this years ago INSTEAD OF SPENDING ALL THIS TIME STRUGGLING WITH THIS POOR EXCUSE OF A DVD PLAYER. We have spent countless hours MR. Clean'ing and SkipDr'ing disks just to get them to play (and sometimes even that didn't work). Just in case anyone else comes along, take the excellent advice given several times in this collection of reviews ... RUN THE OTHER DIRECTION WITHOUT QUESTION IF SOMEONE OFFERS YOU THIS DVD PLAYER. Now, we do NOT believe this is a fundamental problem with Philips. We have, and have had, many fine products sold by Philips. We are guessing this particular DVD player was the result of some very poor product planning that went very badly before, during and after the fact. Hopefully the person(s) responsible has (have), per usual corporate practice, been promoted farther up the ladder where they can no longer inflict this kind of pain on Customers. P.S. We tried to give this product "0" stars but Amazon requires at least "1" star. Probably a quid pro quo agreement of some sort we imagine B00005KJUG:late_review_but_in_full_agreement:tim B00005KJUG Philips DVD782CH 5-Disc DVD Player: Electronics electronics 7 of 7 1.0 Late Review But In Full Agreement May 25, 2004 tim Fresno, CA, USA Unfortunately my wife and I purchased this "product" without reading the posted reviews here. ALL are entirely accurate! I cannot calculate how many hours I have spent trying to figure out what is wrong. No loading, skipping, freezing, not OPENING when it freezes, all down the line, combined with 100 trips to and from the video stores to exchange their "defective" DVDs. My wife was firmly of the belief the DVDs were just "dirty" but I finally decided (this agrees with one of the reviewers) there is a balance problem in the drawer. When there is a no-load, jiggling/adjusting the drawer sometimes (not always) fixes it, but only until the next time, and will not stop the freezing problems. If my wife had a dime for every time I said "this thing is a piece of @&*!" she would be a millionaire. This is very late but if this product is still on the market in ANY form stay many miles away. And Philips' arrogant lack of response (as reported; I have no personal experience here) is virtually criminal in this day and age B00003CWEY:again,_monster_has_to_be_kidding_(and_they_are):great_movie_addict B00003CWEY Monster Cable MVSV3-2M Monster Super Video 3 Double-Shielded S-Video Cable (6.56 Feet): Electronics electronics 1 of 1 1.0 Again, Monster has to be kidding (and they are) April 29, 2006 Great Movie Addict New York City For some years I tried this and other Monster products, to the tune of over $1000 in Monster a/v gear. The more you learn about video and audio, the more you'll avoid anything with the Monster label. Specifically, this s-video meets no NTSC, DVD or IEEE standard; it is common 30-ohm hookup wire with ineffective shielding and a poorly designed, low-conductance connect plug that can wreck your input jacks and gives poor grounding. Has a sharp image, but includes a catalog of chromatic aberrations from off-color skin tones to color blotching, dirty grays, burned highlights, murky shadows, noisy reds, and poor color balance due to impedance mismatching that results in cyan errors and bleeding reds. Makes video test patterns look great, but who watches test patterns all day? Amazon offers many other brands at good prices, why waste your $$ on this stuff? I removed every piece of Monster from my system and replaced them with AR, Belden, Viewsonics and others from Amazon. Result: vast improvement in every respect. B00003CWEY:i_am_unable_to_verify_its_ultra_high_performance:runfast_"marathon_runner" B00003CWEY Monster Cable MVSV3-2M Monster Super Video 3 Double-Shielded S-Video Cable (6.56 Feet): Electronics electronics 2 of 2 2.0 I am unable to verify its ultra high performance July 18, 2002 runfast "marathon_runner" Miami, Florida ~I bought the MVSV3-1m cable and put it between my Pioneer V555 DVD player and SONY WEGA tv KV-27FS12, I was unable to see with my naked eyes any improvement regading the visual quality, color, sharpness. Same as the result as I used the composite cable came with the box. I really don't know why. I have to say, my TV is a good one and the picture quality is already satisfactory even I don't use DVD player. Unfortunately my DVD player does not have component jack to let me try the next level video~~ experience. I don't want to say this expensive cable is a poor one, I was just unable to verify its alledged ultra high performance. we just don't have a benchmark to evaluate it. B00001P4ZD:disappointed_and_feeling_ripped_off:lesley_symmonds B00001P4ZD Koss KTX-Pro Portable Stereophone: Electronics electronics 1 of 2 2.0 Disappointed and Feeling Ripped Off April 19, 2002 Lesley Symmonds Jacksonville, FL United States I bought these headphones based on the first couple of reviews I read here. I should have read further, because about two weeks after I purchased the earphones, the left side went out completely. There was nothing obvious on the outside of the unit and I didn't hear any "rattling" as described by other users. The darn things just quit! I must say, however, that the sound quality for those first two weeks was excellent, but all in all, not worth the money and frustration B000COVZD0:worst_customer_service_ever:earlyadopter_"earlyadopter" B000COVZD0 iAudio U3 2 GB MP3 Player: Electronics electronics 9 of 26 1.0 Worst Customer Service Ever February 23, 2006 EarlyAdopter "EarlyAdopter" USA Cowon aka iAudio have the worst customer service of any other major company I dealt with. No phone support, they have an 800 number but when you call it they direct you to their website. Their website support gives you the option to submit a ticket or Live Chat. I waited over an hour on their Live Chat before I get a message saying that Live Chat is not available at this time. I submitted a ticket & guess how long before I heard a response. & the response was "ship the item back for a refund". I also tried to download the latest firmware and the link was broken. I heard a lot about how bad their customer service was, but when I tried it myself it was even worse B0000Y3KS0:not_sold_by_amazon_-_beware_of_electrogalaxy:h._christopher_giacinto B0000Y3KS0 Maxell AA Alkaline Batteries Value Pack - 40 Pack: Electronics electronics 9 of 23 1.0 NOT sold by Amazon - BEWARE of Electrogalaxy March 2, 2006 H. Christopher Giacinto Tampa, FL These batteries are NOT sold by Amazon. They are sold by an Amazon re-seller called Electrogalaxy. Please read the reviews of this company before purchasing. I do not recommend this company due to their poor return policy and terrible customer service. You have been officially warned. DO NOT BUY ANYTHING FROM ELECTROGALAXY B0000642RX:keys_rearranged:k._pemberton_"cherith" B0000642RX Microsoft Natural Keyboard Elite: Electronics electronics 9 of 13 1.0 Keys rearranged May 11, 2006 K. Pemberton "cherith" Portland I went and got this keyboard after the first one broke. I found the keys were re-arranged. Instead of hitting home - I wound up deleting my work. This is a keyboard I cannot work with. Model Number 1 and 3's were better. B00009KH5Q:the_most_difficult_thing_in_the_world_to_configure:chip_gandy B00009KH5Q D-Link DP-311U Wireless Print Server, 1-USB Port, 802.11b, 11Mbps: Electronics electronics 4 of 5 1.0 The most difficult thing in the world to configure July 29, 2006 Chip Gandy Problem #1 - out of hte box, these units are assigned 192.168.0.10 as an IP address. find if your network is on the .0 subnet. So I had to change my entire network over to this in order to get it configured. Problem #2 - once changed, now i have Ip address issues because of the existing clients picking up the .10 address. Problem #3 - If you incorrectly specificy the SSID/wep key or IP address, you have to put it back to the defaults and start over. there's no way to configure the unit Problem #4 - it just plain don't work as it should. Easily the most difficult unit i've ever had to configure. It's a shame that I'm swearing off linksys as their prices are good. Despite it's decent price, stay away from this one B00009KH5Q:terrible:p._mansour B00009KH5Q D-Link DP-311U Wireless Print Server, 1-USB Port, 802.11b, 11Mbps: Electronics electronics 2 of 4 1.0 Terrible May 27, 2006 P. Mansour kirkland, wa United States I have a D-link router, and I couldn't even get this thing to connect wirelessly. It works if connected with a ethernet wire, but that isn't really the point, is it? I called customer support, and the call dropped 4 TIMES!!!! Even when I was able to stay connected, they obviously weren't listening to me, and were of no use in the end. I'm off to go return. Save your time, money, and aggrevation. Avoid this like the plague B00009KH5Q:not_even_worth_a_star:a._garcia_"aruba60" B00009KH5Q D-Link DP-311U Wireless Print Server, 1-USB Port, 802.11b, 11Mbps: Electronics electronics 1 of 5 1.0 Not even worth a star December 10, 2005 A. Garcia "Aruba60" Huntersville, NC USA I bought this unit over a year ago and still haven't figured out how to work it. I have used the D-link wireless router with no trouble, but no matter what I do, I can't get the print server to work properly. This is after hours with their customer service people and doing everytihing possible. Based on other people's reviews this unit actually does work. It just hasn't for me. B00009KH5Q:not_compatible_with_multifunction_printers:n._herriges B00009KH5Q D-Link DP-311U Wireless Print Server, 1-USB Port, 802.11b, 11Mbps: Electronics electronics 2 of 2 2.0 NOT compatible with multifunction printers September 8, 2005 N. Herriges After 3 hours of banging my head against a wall I finally called Tech Support. They finally figured out that this is not compatible with multi-function computers. You can learn that on their support website but no-where in the standard documentation that comes with it B000EF3D64:garbage:nathan_e._garrett_"blueshadababy" B000EF3D64 Sound Blaster Audigy Se: Electronics electronics 4 of 4 1.0 Garbage August 28, 2006 Nathan E. Garrett "blueshadababy" Chehalis, WA USA Before you buy anything from Creative, google the words incompatible + legacy drivers + sounblaster + windows xp Huge compatibiltiy issues that will have Creative Tech help telling you to flash and update your system bios, chipsets, leaving an entire PCI slot between Sounblaster card and any other card, update drivers, yada, yada, etc. Read all of the issues from the aforementioned google, and ignore the Creative employee reviews (they are easy to spot). Creative ignores the fact that its products have huge conflicts with Windows operating systems B000816CE4:jamming_piece_o'_junk!:gurlfriday B000816CE4 Brother IntelliFAX 2820 Laser Fax Machine and Printer: Electronics electronics 1 of 1 1.0 Jamming Piece o' Junk! September 9, 2006 GurlFriday I bought this machine based on the good reviews I found here. I have had it for one month and it does nothing but jam. Now the two week return policy at the store has expired and I am left with a jamming piece o' junk. My advice - look for a different fax machine B000816CE4:awful.__just_awful.:bad_movie_buster_"bmb" B000816CE4 Brother IntelliFAX 2820 Laser Fax Machine and Printer: Electronics electronics 6 of 6 1.0 AWFUL. JUST AWFUL. August 4, 2006 Bad movie buster "BMB" New York, NY I am shocked by the amount of positive reviews on this site. Let me tell you about my experience. I bought this machine in June of 2005. In one year, I have replaced this machine THREE TIMES. All three times, I got error messages that the toner cartridge was out (Toner Life End) even when new toner cartridges were put in. I do give high marks to Brother for its customer service, though. Each time I had a problem, I called and they sent out a replacement by FedEx along with materials for me to send back the broken one. But when the fourth replacement arrived last week and I turned it on and got an immediate paper jam message, I had enough. I had a similar issue with a Brother mutlifunction machine I purchased around the same time. I am done with Brother products B000E204LY:returned_item,_wasn't_blue_tooth:nick B000E204LY Logitech Cordless Desktop S 530 Laser for Mac ( 967664-0403 ): Electronics electronics 3 of 9 2.0 Returned item, wasn't blue tooth November 4, 2006 Nick North East, USA I ordered this keyboard/mouse combo and it turned out to not be blue tooth, so I returned it. I'm sure it would have been great if I had used it but my Mac has blue tooth and I thought I was getting a blue tooth kbd and mouse. I got an apple blue tooth keyboard instead and I found a logitech blue tooth mouse, which I also got. (Apple doesn't offer a decent blue tooth 2 button mouse in anything like an acceptably reasonable price range) B000E204LY:very_disappointing:codex57 B000E204LY Logitech Cordless Desktop S 530 Laser for Mac ( 967664-0403 ): Electronics electronics 2 of 7 2.0 Very disappointing August 31, 2006 Codex57 California I purchased this for my Intel iMac mainly because I was so frustrated with the Mighty Mouse. I wanted something with two separate buttons. I had tried the Logitech MX 610 (which I purchased as well for another computer) and thought that the ergonomic shape felt wonderful. So, I purchased this desktop set because I wanted it to match my Mac and so I could have a proper 2 button mouse. I figured the Mac keyboard could use improvement as well so the keyboard could come in handy as well. In fact, I thought I would get added convenience since this was a keyboard designed for a Mac and had extra shortcut buttons. Other than having 2 separate buttons on the mouse, this keyboard/mouse combo has been an utter disappointment. First of all, the white doesn't quite match. It's close, but just a touch too cream. Also, there's just too much silver. Especially on the mouse. Secondly, it doesn't have all the buttons the Mighty Mouse does. There is no button to switch to the Widgets. Luckily, you can press F12 on the keyboard. Not quite as convenient, but still possible. However, I have yet to find a button that allows you to switch between various open programs. This is especially necessary if you have multiple web browsers open. Thirdly, this mouse just doesn't work as well as other Logitechs. It is too light, lacking the "feel" and a bit of the comforting weight that the MX 610 has when you move it around. Also, the speed of the cursor is off. No matter how I try to adjust the speed, it doesn't quite match the speed of the original Mighty Mouse. It is either too fast or too slow. I think part of it is simply OSX's lack of adjustability compared to [gasp] Windows for cursor speed. Finally, the keyboard is simply atrocious. I don't even use it anymore. It's packed up in the box and I plugged the original Mac keyboard back in. The keys make a horrendous clatter when typing. The pressure is nonexistant making touch typing just a bit more difficult than normal. Also, the depth is quite shallow. This is a desktop keyboard. You can press the key down further on nearly all the laptop keyboards I've tried. Also, the texture of the keys is far too smooth and uniform. The raised dots to help you find the F or J buttons is too shallow. I can't find the asdf an jkl; rows by touch. I have to look. As a touch typist, this is an unforgiveable sin. It basically transforms you from a touch typist to a hunt and peck typer who has to visually find each key before you can hit it. I'm typing on a Thinkpad whose laptop keyboard is far superior to this Logitech. So, in short, save your money and avoid this keyboard/mouse combo. I rated it a two because the mouse did have 2 separate buttons, unlike the Mighty Mouse, which is why I purchased this in the first place. It hit my most basic requirement. Otherwise, it really deserves a 1 star rating B00005N5Y2:caller_id_stopped_working_on_day_3:elizabeth_"mom2three" B00005N5Y2 Northwestern Bell 76510 Corded Speakerphone with Caller ID: Electronics electronics 1 of 1 2.0 Caller ID Stopped Working on Day 3 October 17, 2006 Elizabeth "mom2three" Ohio Love this phone.....if only the Caller ID would work! It worked fine on day 1, day 2 worked on and off.....day 3 Caller ID not working. Tried moving the phone to different outlets, removing the batteries & putting them back in, tried new wire etc.... The phone works great otherwise. Loved the Caller ID when it was working--much larger than most and easy to read. Oh well B00005N5Y2:do_not_buy_a_nwb_phone:nancy_c._hunter B00005N5Y2 Northwestern Bell 76510 Corded Speakerphone with Caller ID: Electronics electronics 22 of 29 1.0 Do not buy a NWB phone July 18, 2003 nancy c. hunter twinsburg, ohio United States After having my old phone for 40 years I bought a new NWB phone due to remodeling. It lasted 5 months. You cannot get through on their help line and they do not answer their e-mail. Buy a NWB phone at your own risk. I had to buy another phone--AT&T and it works fine B00004TS2H:these_transfers_blow!:paul_e._shelley_"brit_iron_rebel" B00004TS2H Epson S041153 Iron-on Cool Transfer Paper: Electronics electronics 3 of 4 1.0 These transfers blow! February 27, 2006 Paul E. Shelley "Brit Iron Rebel" Goshen, IN USA I am comparing these transfers to the HP transfers for colored shirts. these require a reverse image and are just not user friendly. after three unsuccessful attempts I just went back to the more expensive HP's. The transfers did not adhere well and would flake off in little chunks even before you tried to wash them B0001NNLHK:worthless:j._head B0001NNLHK Shure E3c Sound Isolating Earphones: Electronics electronics 0 of 10 1.0 worthless November 10, 2006 J. Head CT These sound awful. I'm embarrassed to admit I spent 140.00 on these. The earphones from my 1989 sony walkman are far superior. If you like your music to sound as if it came from the bottom of a well then these are for you. B0009MYS9S:so_so_product_with_tons_of_potential._but_breaks.:marcos_kirsch B0009MYS9S Logitech Wireless Headphones for MP3: Electronics electronics 3 of 3 1.0 So so product with tons of potential. But breaks. October 26, 2006 Marcos Kirsch Austin, TX USA Bought these pretty cheap, from woot.com. The good: - Great sound quality, all digital transmission so no hissing. - Look good - Decent battery life The bad: - needs drivers (most USB headsets - granted, not wireless - don't) - Doesn't work on the Mac - If you are not playing music, they beep every 15 seconds or so. Then after a couple of minutes they turn themselves off. This drove me crazy and was not configurable. - Takes you ~15 seconds every time you turn them on and try to pair them. - Not terribly comfortable. After about a month of normal use, the headset cracked in the middle and stopped working. Bad quality o material. The Logitech people said they will refund whatever I paid for after I send them a copy of the receipt and the broken product. Too bad I get to pay for shipping and I'm not even sure they'll refund the ORIGINAL shipping. Lesson learned B0007RB1X6:piss_poor_vcr:tom_->_"'the_sadhu'" B0007RB1X6 Toshiba SDV393 Progressive DVD/VCR Combination: Electronics electronics 9 of 15 1.0 piss poor vcr October 13, 2005 tom -> "'the sadhu'" same world as you the toshiba vcr combo arrived, and was quite light in weight. it hooked up ok, but the orange (nice color) display, constantly stayed on zeros, and the vcr played tapes so bad, there was always a white static streak across the screen bottom. i sent it back after trying a few tapes (all tested poor.) better to get a good vcr for good vhs picture display quality B00019EYVG:buyer_beware!:c._erickson B00019EYVG D-Link DWL-2100AP Wireless Access Point w/ SNMP, AES, 802.11g, 108Mbps: Electronics electronics 3 of 7 1.0 Buyer Beware! January 4, 2005 C. Erickson Alaska I bought this unit because a DLink Sales Rep said it would be perfect for my application. Hah! It doesn't work at all (I hope Amazon will let me return it). The first thing I had to do was upgrade the firmware - no instructions on how to do this, but for the uninitiated: you have to download the .ftp file from Dlink, move it to the Dlink Firmware folder on your computer, then get the AP Manager to see your unit (that's another story involving IP addresses - again, no help from the install documents), and then you can install the update. I finally got the DWL-2100AP to see my network, but never could get it to talk back - it just sent gibberish. The Net tech and I worked on it for most of two working days, to no avail. Spent a lot of time on the phone with the DLink tech staff too, where everyone involved said we got some bad dope from the sales staff, but that we might get it to work, provided it is compatible with the existing equipment blah, blah, blah... My assessment of Dlink and the DLINK DWL-2100AP? Poor pre-sales support, poor post-sales support, confusing tech support, and poor documentation/install instruction for a product that may be (but then again, may not be) compatible with your existing equipment. What's up DLink B0007ZK364:spoilt_adapter:vinod_t._mistry_"vinod" B0007ZK364 Acer AL1913cb 19" LCD Monitor: Electronics electronics 0 of 1 2.0 spoilt adapter March 14, 2006 Vinod T. Mistry "vinod" trinidad when i got the moniter i said it was cool and alright but whe i plugged it in it did nat work and i was angry.i tried again but it did not work so i tried to send it back but it was to much of a hassle.i decided t see what was the problem and send it to a electronics store and the told me the the ic was bad.the only thing i could have done is to buy a new adapter.so i paid 800 trinidadian dollars to get it to work.i was furious B000EVM5DU:software_and_installation_issues,_buyer_beware:s._wilson B000EVM5DU Microsoft LifeCam VX-6000 ( 68C-00001 ): Electronics electronics 4 of 4 1.0 Software and installation issues, buyer beware October 22, 2006 S. Wilson Montana, USA My family and I just relocated 3 states away from our extended family and wanted to get a good webcam to keep intouch with everyone and let our 2 year old see his grandmother once and a while. When I saw the Microsoft LifeCam at Target stores and that it was compatible with Windows Live I thought it would be worth the $100 price tag to be able to keep in touch with family. I purchased the software and started the installation process on my computer. Just so you know,my system is running a pentium 4 processor and has 8 active USB 2.0 connections, only 3 of which are being used for the keyboard, mouse, and this webcam, along with 512MB of RAM which is more than necessary for this product to function. The software took about 10 minutes to install which I thought was a little odd, then it askes for you to plug in the camera. My XP system recognized the camera but told me that the hardware had encountered an error during installation and may not function properly. I uninstalled the software and tried the installation again with the same result. I then tried a different USB port just in case there was a problem. Following a stepwise process I checked and updated all drivers for the USB hub, ports, etc. and I checked under the system manager tools to ensure that all were working properly. I then went to the microsoft website and downloaded the updates for the software (this took another 15 minutes and the site crashed twice). By now I was getting very frustrated but hoped that the software update would allow appropriate conectivity with the camera. I went into the software and found that it was recognizing the mic, but it said that there was no camera attached. I again tried to find the camera through other means with no results. For the price paid and the 3+ hours I spent trying to install the hardware I can say with all assurity that this product is not worth it. I will be returning it to Target for a full refund and will look into investing my money with another brand. As someone else said earlier in the reviews, "does microsoft ever send their products through Quality Assurance before they release them? B000EVM5DU:software_issues:a._t._maruzook_"the_trick_man" B000EVM5DU Microsoft LifeCam VX-6000 ( 68C-00001 ): Electronics electronics 3 of 4 1.0 Software issues October 16, 2006 A. T. Maruzook "the trick man" colombo, sri lanka Dont microsoft ever send their software thru Quality Assurance checking? They asked me to install a windows update (KB something or the other) saying that it prevented the software from running at 100% CPU usage. Lo and behold, it still gets stuck!! Task Manager dutifully reports that it is after all consuming all resources B00006JILM:good_looks,_mediocre_performance:jake_sanders B00006JILM Sony MDR-NC11 Fontopia Noise Canceling Headphones with In-line Volume Control: Electronics electronics 3 of 3 2.0 Good looks, mediocre performance July 16, 2006 Jake Sanders Boulder, CO United States I've found these headphones to be highly overrated. The noise cancelling is primarily from the snug fit in the ear. When the noise circuit is turned on, the background "hiss" becomes incredibly annoying. To be fair though, this model does remove some background low frequency sound, even in addition to the the noise reduction from the ear plugs. The frequency response during playback sounds like an old am radio B00006JILM:break_easily_-_even_when_you_take_care_of_them.:derick_bailey_"computer_guru,_audiophile" B00006JILM Sony MDR-NC11 Fontopia Noise Canceling Headphones with In-line Volume Control: Electronics electronics 3 of 5 1.0 Break easily - even when you take care of them. February 13, 2006 Derick Bailey "computer guru, audiophile" Waco, TX In terms of sound quality, noise cancelling, and general comfort - thise headphones are top of the line. I absolutely love the way the sound and the ammount of noise cancelling that they provide. I used them regularly when mowing the lawn and when flying, and I always recieved the highest quality sound and noise cancelleation. I was even able to listen to drum-n-bass while mowing the lawn and hear all of the appropriate frequencies on the low end. However... inside of 6 months, I have gone through 2 pairs of these headphones because the right ear headphone has gone out on them. The worst part is - I can't even begin to imagine why it goes out. I keep my heaphones in a locked cabinet in my office every night. Last friday, I placed back into the nice little carry bag that they come with, and placed them into this cabinet. This morning when I pulled them out for use, the right ear bud is out again... no physical damage is apparent anywhere on the headphones, and there is not a broken wire anywhere. In fact, the wiring is perfectly fine and still functional. It is the physical earbud - the hard plastic peice - that has gone out. If i squeeze the earbud hard enough, it will turn on again. Something inside of the earbud is obviously designed improperly and I would highly recommend that noone purchase these headphones because of this B00006JILM:really_bad:stoak_"soffak" B00006JILM Sony MDR-NC11 Fontopia Noise Canceling Headphones with In-line Volume Control: Electronics electronics 5 of 8 1.0 Really bad December 21, 2005 STOAK "soffak" Anchorage, AK United States Someone previously pointed out that these earphones did not filter out the highs well. It may be the highs all I know is the only thing it seems to filter well is my wife and kids voices and allow in every other ambiant noise around. Now I may have gotten a lemon but the sound is poor. Volume cranked to high on any device I put this on comes out low at best. Put in any other set of earphones and it is painfully loud. The little inline triangle that has the on/off switch is cumbersome and is at a strange distance from the earphones. Just seems to far from the earphones or not far enough. Just doesn't seem to clip naturally anywhere. Either to much cord or not enough. I am not a music or sound expert by any means so it does not bode well that I think these earphones are poor at best B00005A9AU:not_for_laptop_users:w._reals B00005A9AU Plantronics DSP-400 Digitally-Enhanced USB Foldable Stereo Headset and Software: Electronics electronics 0 of 1 2.0 Not for Laptop Users September 15, 2006 W. Reals I got Avaya RoadWarrior up and running on my computer to use when I work remotely. My co-worker told me to get a GN Netcom headset but I figured I'd save some money and get this one. Big mistake. There is a major problem with some laptops when the power cord is plugged in, the listener on the other end has what sounds like you in a an airplane during flight. The humming goes away when you unplug the power cord but that doesn't help me, I need to be able to use it when the power cord is plugged in or not. Anyway, I chatted with Plantronics support and then informed me that it's a known issue with no work around except to unplug the power cord while using it. So, it's getting returned. B00005A9AU:inadequate_for_voice_recognition:j._richardson B00005A9AU Plantronics DSP-400 Digitally-Enhanced USB Foldable Stereo Headset and Software: Electronics electronics 8 of 11 1.0 Inadequate for Voice Recognition August 21, 2006 J. Richardson Princeton, NJ It failed Dragon Naturally Speaking's sound tests, tests easily passed by the cheapo mike included with the program. And just try to return it. Antonline stonewalls, Plantronics doesn't respond at all B0007Y79G2:died_after_two_days_of_use:veniero B0007Y79G2 Creative Zen V 4 GB Portable Media Player (Black/Blue): Electronics electronics 1 of 10 1.0 Died after two days of use October 22, 2006 Veniero Richmond, MA USA Gave it one star because there was no option for zero. Died after two days of use, would not turn on or reset. Previous Zen Nano, same thing after six months of use. I guess that would be my last Creative product B0006ZSXJE:lousy_drivers,_lousy_customer_support__(but_nice_hardware):twinehead_"twinehead" B0006ZSXJE Razer RZ-1600 Diamondback Precision Gaming Mouse- Chameleon Green: Electronics electronics 2 of 8 2.0 Lousy Drivers, Lousy Customer Support (but nice hardware) November 17, 2005 twinehead "twinehead" Washington, DC The first warning sign is that the drivers are not Windows approved and unsigned. Their installation instructions advise you to ignore the warnings. Next, is the cheesy "cool" looking set-up program. Please forget about the groovy graphics and just provide a usable interface. Then, the drivers don't work. My cursor slides all around the screen after I stop moving the mouse. I tried calling customer support, but there is no telephone support. I then tried connecting with their online chat support. No one helped me after 20 minutes. Two days later, in response to an e-mail, they sent me 3 pages of instructions about how to adjust my system to accommodate their crappy software. Too bad, because the mouse itself is a nice piece of hardware. Solid-feeling, well-built, and comfortable. I'm sending mine back for a refund B0001D3JXG:router_card:delores_j._johnson B0001D3JXG Linksys WPC54GS Wireless-G Notebook Adapter with SpeedBooster: Electronics electronics 0 of 4 1.0 ROUTER CARD March 21, 2006 Delores J. Johnson TULSA, OKLAHOMA United States THE ROUTER CARD DOES NOT WORK, MY OLD ONE WORKS WITH THE NEW ROUTER BUT THE NEW CARD DOES NOT WORK AT ALL, SO I NEED A REFUND FOR IT, OR A REPLACEMENT, THANKS B0001D3JXG:absolute_junk!:mahfuzul_alam_"dew" B0001D3JXG Linksys WPC54GS Wireless-G Notebook Adapter with SpeedBooster: Electronics electronics 3 of 6 1.0 Absolute junk! August 31, 2005 Mahfuzul Alam "Dew" London, England I bought it with my Linksys WRT54GS Wireless-G Broadband Router with SpeedBooster. The software installation procedure is really poor. When I ran the software first few times it constantly gave me error messages (can't remember what they were) so I had to reinstall it 2-3 time till it settled down finally. Then I set up the network settings with my router and scanned for the access point (Infrastructure) but it couldn't find anything even though the router was only 5-7 feet away! At one point it managed to connect to the router but it was still searching for the internet connectivity.. After several minutes it couldn't find anything and disconnected from the router. I knew there was nothing wrong the router or internet because I inserted my old Belkin adapter and it connected straight away! Don't waste your money on this. If you wanna get a router, get the one I've got which is quite good. If you want a WiFi Adapter then get Belkin F5D7010 Wireless 54Mbps Notebook Adapter. I couldn't find any 108g adapters by them but this one is really good. http://www.amazon.com/exec/obidos/tg/detail/-/B000085BCX/qid=1125546516/sr=8-5/ref=pd_bbs_unbuck_5/002-4891207-7082407?v=glance&s=electronics&n=17259 B000CEN0YC:totally_worthless:robert_s._balaban B000CEN0YC Global Pet Finder GPS Tracking Device for Pets: Electronics electronics 23 of 24 1.0 Totally worthless February 13, 2006 Robert S. Balaban This product keeps changing home addresses; none of which are the address I typed in the initial field. It does not stay charged so that it is actually able to function as advertised if you are gone from home any length of time and you put your dog in a yard. Additionally, gravity takes it down to the lower neck area in common use so that when the dog is doing normal dog things, the device sinks downward so that the antenna is pointing toward the ground. The pictures are misleading. We tried all of the advise the company gave us. It's just not a device that works when and where you need it to work. It was a lot to invest to have this many problems. B000CEN0YC:there's_this_cool_new_technology...:meg B000CEN0YC Global Pet Finder GPS Tracking Device for Pets: Electronics electronics 12 of 40 1.0 There's this cool new technology... January 25, 2006 Meg Cincinnati, OH ... it's called a leash. Or a fence. How about keeping your pet safe the responsible-- not to mention cheap-- way. I've been a volunteer at a no-kill animal shelter for 5 years, and I'm still amazed at the lack of guardianship people show for their pets. So your dog has this $350-dollar doodad on its neck. It's not going to keep it from running out into the street and getting hit by a car, or picked up by somebody who wants to use it for dog-fighting bait or sell it to a lab (yes, these things happen-- often). Have some sense, people. This is ridiculous. B0002WPSB2:does_not_encrypt_fingerprint!:l._uyeno B0002WPSB2 Microsoft Fingerprint Reader: Electronics electronics 4 of 6 1.0 Does not encrypt fingerprint! August 7, 2006 L. Uyeno Los Angeles A nice device, but Microsoft didn't include software that encrypts the fingerprint image. Although very difficult to do someone *could* steal your fingerprint. To be safe I would not use this fingerprint reader for password protected websites that contain sensitive information or for network admin or computer BIOS privledges B0006GDCD0:image_nice,_it_works_when_it_does,_hard_to_manage:mr._ken B0006GDCD0 D-Link Securicam Network DCS-950G Wireless Internet Camera: Electronics electronics 1 of 1 2.0 Image nice, it works when it does, hard to Manage October 9, 2006 Mr. Ken Western Maryland This camera had some nice features like the ability to write to a network storage device, smart motion detection, etc. The recorded videos have their own codec so you can use it or d-vix. Some videos are unreadable and if you dig deep enough, d-link has a utility to make them readable. I upgraded the latest firmware 1.06, tried using the ability to write to a storage device and found it very hard to manage. Motion triggering is touchy but works once you set it up. The wireless caused 90% of my communication problems. Ran a wire and things were fine. Clock could not keep time for anything. Set USA EDT and it was fine and shortly after it feel back one hour. D-Link knows of this and the only solution was to use Atlantic time. It has all the right features and image is great but I have to vote thumbs down on this unit. One more thing, D-Link hard codes an IP address so if you try and factory reset remotely or of you happen to be using a different network addressing scheme, you're done. Why for the life of me they don't use DHCP by default is beyond me B0006GDCD0:great_idea_but_big_issues...:jdub_"jdub" B0006GDCD0 D-Link Securicam Network DCS-950G Wireless Internet Camera: Electronics electronics 2 of 2 2.0 Great Idea but big issues... April 10, 2006 JDUB "JDUB" Cali Camera will not stay up on wireless network with Dlink router! Firmware has some serious issues. Dlink support was worthless. I returned the camera and bought a Panasonic and never looked back B00006GETD:does_not_work_with_a_nikon_coolpix_4300:girlonthebay B00006GETD Kingston 512 MB Type I CompactFlash Card (CF/512): Electronics electronics 22 of 24 1.0 Does not work with a Nikon Coolpix 4300 December 8, 2003 GirlOnTheBay Boston MA It would be really great if Amazon and other resellers did a better job outlining which accessories were compatible with which products. This is stated as a CF Type I card yet this does not work with a Nikon Coolpix 4300--another, more expensive Kingston card, must be used B00009ZHS7:very_large_size_for_travel_and_mediocre_sound:k._schneider_"disappointed_purchaser" B00009ZHS7 Panasonic Folding Travel Speakers (RPSPT70): Electronics electronics 4 of 5 2.0 Very large size for travel and mediocre sound July 20, 2006 K. Schneider "Disappointed Purchaser" Los Angeles, CA USA I have several pairs of portable speakers for my laptop but forgot to bring them on a recent trip and bought these based on the glowing reviews posted here. However, when I received the speakers I found that they are much larger in size and much lower in both quality of build and quality of sound than for example the Creative speakers. They have a huge and unstable footprint when opened (about 9 inches long and one inch deep) and are not particularly compact when folded either. The sound is not rich and they eat batteries amazingly fast, then begin to buzz. I do not recommend these speakers B0002R5Y5M:don't_waste_your_money:ninthnight_"gadget_junkie" B0002R5Y5M Macally PodFM FM transmitter for iPod: Electronics electronics 3 of 4 1.0 Don't waste your money March 15, 2006 Ninthnight "gadget junkie" Upstate NY I bought this for my 5g Ipod. I drive a late model Subaru with the lighter switch inside of the ashtray console. Firstly the transmitter was completely dangerous to operate while driving. Its impossible to use in Park and Neutral in my car. The controls are bulky. The transmission cut out in mountains, on hills, and on the highway whenever I drove over 60mph resulting in my ipod starting and stopping because it shakes and wobbles in the console. In short, it hardly worked and I was afraid to touch it while driving, lest I'd knock my gear shift out of place. Its cheaply made and all in all a complete piece of junk. This is hands down the worst IPOD FM transmitter I have ever used. I've previously used a basic Kensington all in one model (stolen by wife, worked well but awkward) and ended up replacing this with a far superior Griffin Road Trip. I reccommend spending the extra $15 on the Road Trip. B000CFLES0:worked_well_for_a_while,_it_was_always_"krinklely"_and_then_the_sound_went_really_low.:cookievenom_"cookievenom" B000CFLES0 Apple Ipod mp3 Car Audio Tape Cassette Adapter: Electronics electronics 2.0 Worked well for a while, it was always "krinklely" and then the sound went really low. October 6, 2006 cookievenom "cookievenom" Arizona Worked well for a while ( 2 weeks) , the sound always had static, later the sound went really low and then it just died B000CFLES0:frustrating_to_use:shannon_"jfaction" B000CFLES0 Apple Ipod mp3 Car Audio Tape Cassette Adapter: Electronics electronics 1.0 Frustrating to use August 10, 2006 Shannon "jfaction" Lafayette, CA USA I have the same problem some other reviewers had: the audio was extremely low unless I manually adjust the cassette. It's not that easy - you have to stick your finger into the cassette slot while the adapter is in there, and wiggle it forward and backward until the audio adjusts. But that doesn't always work. If that doesn't work, you then have to turn your hand over and use your fingernail to catch a ridge on the adapter and lift it up a bit. I'd rather not have an accident on the highway by either (1) fiddling with the audio, or (2) smashing the adapter into little pieces while I drive. Hundreds of songs on the ipod and no way to listen while you drive... B00030CHP8:bad_quality,_donot_buy_pny_sd_card:vince_wilson B00030CHP8 PNY PSD1GRF3 1 GB Secure Digital Card: Electronics electronics 1.0 Bad quality, donot buy pny sd card August 5, 2006 vince wilson VA USA After using this sd card only twice, it can not be recognized by any of my card reader. Totally a waste of money and time. Do not buy pny brand B0000CEPC0:worst_customer_support_i_have_ever_seen:netizen_fair B0000CEPC0 D-Link DCS-900 10/100TX Internet Camera, Home Security: Electronics electronics 0 of 1 1.0 worst customer support I have ever seen September 27, 2006 netizen fair NJ, USA I had DCS-900W from the same product line. It craped out after 9 months, and now I am on the fifth call to try to resolve the issue and get it shipped back. I don't know where their support is located, but the line quality is very bad, they ran the same drill over and over, but just don't want to issue you an order for you to ship back. This is the first D-Link product I own and probably the last. The resolution looks crappy even when it's new, and now it's totally dead, even reset won't work on it B00006AE3K:my_experience_with_this_item:y._lu_"wsurainer" B00006AE3K SanDisk SDCFB-1024-A10 1GB CF Type 1 Card (Retail Package): Electronics electronics 3 of 5 1.0 my experience with this item November 26, 2005 Y. Lu "wsurainer" Pullman, WA United States Yesterday was the annual Thanksgiving sale day. I got this 1G CF card from Staples by $40 after easy rebate. With this price, I think it is a great deal. However, it worked for my digital rebel only half an hour before it was DEAD. All my photos in the card were lost. I am a graduate student majoring in computer engineering, I know how to recover data if a hard drive fails. But this time, I find I simply can't help. Fortunately, Staples have a good return policy and I just returned it without hassle. Hopefully, this is only my case. My suggestion: make sure your dealer has a good return policy before you get this item. B00006AE3K:pricy:r._sutton B00006AE3K SanDisk SDCFB-1024-A10 1GB CF Type 1 Card (Retail Package): Electronics electronics 1 of 8 1.0 Pricy October 11, 2005 R. Sutton Rio Vista, CA USA Of course as all things computer related, as soon as this was purchased the price dropped drastically. Unit works great but buy the 2 gig. More bang for the $ B00006AE3K:1gb_compact_flash_card:richard_w._bock_"rick_bock" B00006AE3K SanDisk SDCFB-1024-A10 1GB CF Type 1 Card (Retail Package): Electronics electronics 2 of 3 1.0 1GB Compact Flash Card August 10, 2005 Richard W. Bock "Rick Bock" Medina, Ohio The card failed after 23 pictures. Amazon credited me with a full purchase price credit to my credit card account B000CO90L4:on_hold_50_minutes,_52_seconds:brian_bowman B000CO90L4 1-Year Replacement Plan for Electronics Products $175 to $199.99: Electronics electronics 20 of 22 1.0 On hold 50 minutes, 52 seconds July 19, 2006 Brian Bowman NW Ohio I was on hold 50 minutes, 52 seconds before anybody answered. I heard "your call is important to us" at least 100 times, which wasn't very convincing B00006B9QM:it_works,_but_it_is_super_slow!:b._williams B00006B9QM SanDisk SDDR-64-768 Compact Flash to PC Card Adapter: Electronics electronics 2 of 2 2.0 It works, but it is SUPER SLOW! August 19, 2006 B. Williams I bought this reader for my laptop since it didn't have USB 2.0. But to tell you the truth, I think this device is a little slower than USB 1.0! I am going to buy the Lexar 32Bit card and see if that improves the download speed, because this reader is so slow. It took me about 45min to download 2GB of photos from my Extreme III card. That is unacceptable B00006B9QM:slow,_affects_entire_system:arvin_tanag B00006B9QM SanDisk SDDR-64-768 Compact Flash to PC Card Adapter: Electronics electronics 3 of 4 2.0 Slow, affects entire system April 1, 2006 Arvin Tanag USA Note: I am fully aware that compact flash cards have a maximum sustained upload speed which caps off the potential speed of the medium it is being transferred on. I purchased this product to use in conjunction with my SanDisk Ultra II compact flash cards. I thought that PC cards would be faster than USB 1.1 and 2.0, but thats not the truth. Whenever I try to upload files from my CF cards thru the PC card, it slows down the ENTIRE system. I can't do other tasks while the card is uploading files since everything is acting sparatic and slow. I'll admit, the card is a bit faster in uploading files than USB 1.1, but I can't do anything else on my computer while the card is working. Honestly, I would rather have a little bit slower performance with my USB 1.1 card reader and be able to work on my computer at the same time instead of having the card slow down my entire system. I believe this card is a 16-bit pcmcia card. I've heard good praise for Lexar's 32-bit pcmcia cards, but I have yet to try it out. I'm sure it costs more money than this PC card or a USB card reader, though... All in all, I suggest getting a USB 2.0 compact flash reader over this product if you want to work on your computer at the same time as you are uploading files. Otherwise, if your the kinda person who doesnt mind leaving the computer alone while the files are uploaded to your computer, this will work just fine for you B0002IG356:keyboard_dead_in_less_than_6_months:an_average_joe B0002IG356 Microsoft Optical Desktop Elite for Bluetooth: Electronics electronics 0 of 1 1.0 Keyboard Dead in Less than 6 Months August 25, 2006 An Average Joe Cedar Rapids, IA and the worst part is that I'm actually glad about it! I bought this set to replace a [...]Logitech wireless mouse/keyboard combo that was about 3 years old when the mouse scroll wheel stopped working. I figured I'd treat myself to what looked like the best wireless set out there. Here's what I found: 1) The keyboard is HUGE. I have Dell 19" flat panel and the keyboard looks ridiculous in front of it. 2) Even though the USB dongle is plugged in the Dell monitor about 1 foot from the mouse/keyboard it still loses its connection and I get the message "USB device has malfunctioned." I have to remove and replace the dongle and it starts again. This happens a couple of times a week, but of course at the most inconvenient times. 3) The keyboard goes to sleep like the mouse after a few minutes to save battery life. The mouse will wake up after a slight delay and I'm used to that but I can't tell you how many times I pressed "Ctrl-C" to copy something into the buffer and then discovered that it didn't "take" because the keyboard was asleep. The keyboard should never go to sleep or this "feature" should have a way to be disabled! 4) The keyboard died (stopped responding) at less than 6 months old. I still use the mouse but dug out an ancient Dell quietkey wired keyboard. Frankly I don't miss the behemoth MS monster at all, at least the old keyboard doesn't take up the whole desk and when I hit Ctrl-C it works every time. Microsoft has made some good keyboards and mice, but this set is not one of them. Buyer beware. B0002IG356:extremely_laggy_mouse:james_lin B0002IG356 Microsoft Optical Desktop Elite for Bluetooth: Electronics electronics 1 of 1 2.0 Extremely laggy mouse May 7, 2006 James Lin Simi Valley, CA United States I bought this keyboard/mouse set hoping to consolidate most of my wireless devices onto a single HUB and standard. Setting up the set was easy enough in Windows, but I immediately found that the mouse did not work well at all. The cursor would move in increments of around 10 pixels at a time. I even put the Bluetooth adapter on a USB extension cord and placed it within inches of the mouse, but that didn't help at all. The keyboard seemed to work well, but I didn't use it for very long because the mouse was unbearable to use. I have several wireless networks in my area, which may be causing interference with the Bluetooh though B00006RVNW:don't_waste_your_money_on_this_overpriced_ripoff:cosymoon_"davidjones" B00006RVNW Monster Cable ULT V1000 CV-4 THX Ultra 1000 Component Video Cable: Electronics electronics 12 of 13 1.0 Don't waste your money on this overpriced ripoff October 13, 2005 cosymoon "DavidJones" Boulder, CO United States Speaking from real experience, don't waste your money buying this cable which makes absolutely no difference from a cabe you can find with half or less the price. I bought a few top of the line monster cables once I got the top of the line SONY XBR960 HDTV. Later on I switched cables around, with other brand, cheaper component cables such as Philips PTS1000 (the HDMI standard owner by the way), and also other HDMI cables (even no name brands coming with my DVD player). You know what? I see absolutely no difference even under close examination. The SONY XBR960 produces the finest pitch you can find on any TV. You think about what that means. Stop buying this ridiculously priced cables, and save your $$ and buy somethinfg else on your shopping list. Digital is digital. Don't let monster mislead you that their cables produce more 11010 ... than others. B00067KETY:two_big_problems:patrick B00067KETY AT&T 959 Speakerphone with Caller ID (White/Gray): Electronics electronics 4 of 4 2.0 Two big problems July 18, 2006 Patrick Philmont Basically a nice phone, BUT: A: I've had three of these phones, and sooner or later the little repositionable hang-up tab snaps off, rendering it useless as a wall-mount, and B:I can hear well with the speaker phone, but have to shout to be heard. B0007XXHNW:beware_if_there_are_few_unused_frequencies_in_your_area:zowie B0007XXHNW Kensington Digital FM Transmitter/Car Charger for iPod: Electronics electronics 0 of 1 2.0 Beware if there are few unused frequencies in your area November 20, 2006 Zowie Northwestern NJ, USA I purchased the Kensington after my casette adapter developed an annoying wheel noise. I heard and read a lot about the problems with FM transmitters, like static and audio quality but the Kensington was the best rated unit. It arrived the day before I had to take a business trip and thought it would be a great test. The first day I used it, it seemed to work great. The next day on my return trip home, all I got was static and could barely hear the music from my iPod. I tried every station I could find with little or no transmission on it, but the audio quality remained extremely poor. I am not sure if there are just too many stations broadcasting in the NYC metro area or this particular unit is defective, but since my car has a casette player I will go with casette adapter for now. If you have lots of unused frequencies, it might work in your area. Just be sure you can return it if it doesn't work out for you. B0007XXHNW:terribly_weak_transmitter:jonathan_r._pedley_"book_lover" B0007XXHNW Kensington Digital FM Transmitter/Car Charger for iPod: Electronics electronics 0 of 3 1.0 Terribly weak transmitter November 14, 2006 Jonathan R. Pedley "Book Lover" San Francisco. CA I had a Monster iCarPlay for some time and had givben it to a friend. So when I was looking for a new one i thought I'd try the Kensington. Big mistake - my car couldn't pick the signal up without manually tuning - very painful. Go for the Monster products over this in a heartbeat B0007XXHNW:device_is_barely_acceptable:private_dad_"electronic_drudge" B0007XXHNW Kensington Digital FM Transmitter/Car Charger for iPod: Electronics electronics 4 of 4 2.0 Device is Barely Acceptable November 10, 2006 Private Dad "electronic drudge" Houston, TX USA Using this in my wife's Expedition is very annoying. For some reason the cord must be placed in exactly the right position or static will drown out the music coming from the car's speakers. Note that no other electrical devices in this car (and there are a lot of them; she got every option available with the car) misbehave at all. I would not repeat this purchase, not can I recommend anyone else buy one of these. I only gave it two stars because with continual minor effort it can be made to work acceptably - however, fiddling with the cord while driving is certainly NOT a safe practice B000CO90SM:new_=_worthless_thieves!:jesse_p._hapke_"concerned_fellow_enthusiast" B000CO90SM 4-Year Service Plan for Camcorders $1,000 to $1,999.99: Electronics electronics 4 of 4 1.0 NEW = worthless thieves! October 10, 2006 Jesse P. Hapke "concerned fellow enthusiast" Omaha, NE, USA NEW are notorious thieves in the consumer electronics repair industry. I personally submitted for repair both a $1,600 video camera (Sony DCR-PC5) and a car CD player (a Sony CDX-C90, a $1,200 in-dash top of the line unit. If you've heard of it, you know what I'm talking about). I was told that the warranty did not cover what was wrong with my video camera (some ambiguous statement about logic board, power unit, etc. failure followed), and would have to pay ~$780 to have it fixed. I naturally refused, and was forced to keep my dead 4 month-old handycam, an unfortunate testament to some of Sony's now widely publicized QC issues. The reason I did not send in the camera initially has to do with the fiasco involving my CD player. I was told, explicitly, that if NEW could not fix it, they would either return the unit or write me a check in the amount of $1,000 (not even enough to cover the cost of the player). As an added insult, when they indeed could not fix the unit, they KEPT it, and I NEVER received a check!!! Simply outrageous! Blatant theft, and I'm not the only one who will tell you a story about NEW and such an act. They are IMPOSSIBLE to get ahold of, and literally take your money and run/disappear. Don't expect to ever hear from them, should your camera stop working, and good luck getting ahold of them if you happen to send it in beforehand. Chances are, you will have to eat the loss, as I did. This product deserves a negative star and should come with an automatic refund. I seriously thought it was a gag when I saw NEW was in charge of the coverage. What a joke! Whoever runs your company, NEW, ought to be both ashamed of themselves and held liable for all the countless damages and losses they have caused. The whole lot of you belong in an unfriendly prison B000CO90SM:4_years_of_svc......_several_months_of_headaches:carlo_c._chiulli_jr._"carlo" B000CO90SM 4-Year Service Plan for Camcorders $1,000 to $1,999.99: Electronics electronics 6 of 6 1.0 4 years of svc...... several months of headaches September 7, 2006 Carlo C. Chiulli Jr. "Carlo" New York I originally placed my order with my a digital camera and this four year service plan. Three days after, I had to cancel my digital camera order for personal reasons. However the $161.80 total I spent on this warrant did not refund automatically and nor have I received a confirmation that it will be refunded. After several phone calls and emails of providing information for the requested refund. They finally tell me that it will take 8 weeks for my refund to process. That is two whole months. Horrible service I can't imagine how long it would take for them to either repair or replace my camera should it have faltered. I would not recommend this four year service plan or any other plan by N.E.W. Customer Service Companies to anyone B000E5XCEW:could_be_better:oleg_ursu B000E5XCEW Apple MA360G/A In-Ear Lanyard Headphones for iPod Nano 1st Generation: Electronics electronics 1.0 Could be better November 9, 2006 Oleg Ursu Albuquerque, NM USA The sound is really great, but there is one problem with this headphones they keep falling from my ears no matter what rubber caps (they come with 3 different sizes) I used. The design flaw makes them unusable for me B000E5XCEW:earplugs_fall_out:steve_mcbride B000E5XCEW Apple MA360G/A In-Ear Lanyard Headphones for iPod Nano 1st Generation: Electronics electronics 1 of 2 1.0 Earplugs fall out September 1, 2006 Steve McBride Seattle, WA The absolutely worst headphones I have ever had. Trying the different sizes, the earplugs just don't want to stay in my ears (even standing still). The headphones that come with the I-Pod, and the earlier version of lanyard headphones were both much better. The sound was fine, but not any better than the standard headphones. A poor product. I was very disappointed, as I have had good experiences in general with Apple in the past B0001RM9GA:this_is_ridiculous:david_kagle_"frikkinweirdo" B0001RM9GA Sony SRS-T33 Compact Portable Speakers (Blue): Electronics electronics 11 of 17 1.0 This is ridiculous November 7, 2005 David Kagle "frikkinweirdo" Boston Ok, after reading the multiple good reviews on Amazon i persuaded myself to buy these speakers thinking some people were just pessimistic. Ok, i got these and immediately put a pair of batteries in. These things sound absolutely awful, it goes about the volume of someone quietly talking and the sound is distorted and fuzzy, forget about any bass. Absolutely do not buy these things. Oh yeah, whoever has been rating these things as good must be working for sony or something cu these things are terribl B0001RM9GA:say_what?:palealien B0001RM9GA Sony SRS-T33 Compact Portable Speakers (Blue): Electronics electronics 1 of 8 1.0 Say what? July 19, 2005 palealien Butte Creek Canyon, Ca United States To anyone who may like these, I am sorry to learn about your hearing disability. The T33 looked like a nice little package, but I thought, "How could it possibly sound even acceptable?" I hoped for a Sony surprise, but it didn't happen. When I returned them later that day, the clerk asked, "Is there anything wrong with them?" I said, "Yeah, they suck". She smiled and handed me a refund. B000EEP9V2:you_need_a_really_small_head...:c._heza_"sylver" B000EEP9V2 Creative SL3100 Wireless Headphones: Electronics electronics 0 of 2 1.0 You need a really small head... August 29, 2006 C. Heza "Sylver" Pittsburgh, PA I was excited about these headphones because Creative usually has great products. I was sadly disappointed. The connector is clunky and surely going to wear out it's flimsy wire on the jack. The bluetooth signal is weak, take a walk down the street and it begins to distort like crazy. It also distorts at high volumes which you will need to use anyway because the sound is so low. It runs out of power after only a few short hours. And worst of all, the headphones are impossibly tight, causing real discomfort. After only two days of using these headphones, I couldn't take it any more B0009PD3P0:great_hardware_and_interface_spoiled_by_poor_map_data:b._daniels B0009PD3P0 TomTom Navigator 5 Bluetooth Wireless GPS System for Pocket PC, Palm, and Other PDAs: Electronics electronics 12 of 12 2.0 Great hardware and interface spoiled by poor map data July 14, 2006 B. Daniels I really wanted to like the TomTom Navigator 5. The GPS itself is tiny, well-designed, and very sensitive. It worked fine from down in a underdash cupholder or in the glove compartment. The interface is attractive and easy to navigate. The voice prompts are clear and loud. The installation on a Mac was problematic. Search on TomTom OSX for details, but suffice it to say that the installer included on the CDs simply doesn't work and a new one must be downloaded. Once past that, it ran fine on my Treo 700p. Unfortunately there is one fatal flaw - the map database. In using the Navigator in both California and North Carolina, the maps regularly had misnamed streets, exits referred to by numbers where there were none, and directions that lacked critical information like heading (i.e. take the 101 instead of take 101N when approaching a complex interchange). Worse, the company seems to be actively hostile to updating these maps. If you go to the TomTom site, you can purchase maps on a city-by-city basis. Are they newer than the ones that came with your unit? Who knows? TomTom lists no version info and seems to expect you to buy and cross your fingers. There were just too many errors that I saw while traveling in areas that I'm familiar with to trust the TomTom maps for any unfamiliar territory. Everything else is great, but the whole point of a GPS is accurate navigation. And sadly, that's where the TomTom Navigator fails B0007ZFLYS:it_doesn't_work_well:q._wang B0007ZFLYS Logitech Quickcam for Notebooks ( 961404-0403 ): Electronics electronics 2.0 it doesn't work well November 24, 2006 Q. Wang NY,USA It is not as good as recommended. The image is really unclear when the light is not strong, and it's totally white under strong light. The contrast is low. It's not a good product, useles B000AR95EA:buyer_beware:dr._james_boggs_"nuru" B000AR95EA HP iPAQ RX1955 Pocket PC: Electronics electronics 0 of 5 1.0 Buyer beware November 14, 2006 Dr. James Boggs "nuru" Seattle, WA At the moment I am in the middle of a 3-day ordeal sorting out Outlook 2002, which comes with the ipaq. Outlook 2002 has many many many known bugs (which only now I find out) and I can't for the life of me figure out why HP would ship it with their hardware. DO NOT INSTALL OUTLOOK 2002 on your machine. The ipaq itself may be OK, but if this is a foreshadowing of the fun to come.. B000AR95EA:don't_waste_your_time_on_this_paperweight:ammoken B000AR95EA HP iPAQ RX1955 Pocket PC: Electronics electronics 4 of 14 1.0 Don't Waste Your Time On This Paperweight August 12, 2006 AMMOKen I'll admit, I'm not the techno wizard some on this panel seem to be, but then again, I don't believe you should have to be to operate what should be something simple, like a handheld computer. In essence, the title of this review says it all. Almost $300 and several months later, I am unable to get this hunk of junk to even turn on. Let alone connect to a server. All of these things were supposed to be fixed by a 'patch' that if someone can download from the HP website, I'd love to see it. All downloads came back with an Error message when I attempted to download. Long story short, you'd be better off buying a laptop. HP is not known for their handhelds, do not buy this product or anything similar to this from HP. You will be sorry. B000E62GYS:disappointed:rr7539_"rr7539" B000E62GYS Uniden DCT756-3 Expandable Cordless System with Call Waiting/Caller ID and Extra Handset and Charger: Electronics electronics 1.0 disappointed November 3, 2006 rr7539 "RR7539" Amherst, NY United States I like the light that goes on when the phone rings but that is about all I like about this phone. Friends tell me I sound like I am under water and I have had to terminate many conversations due to static and interference. One friend insists that I have a microwave running as we speak. I am actively looking for a new set to buy because these are worthless B0007U8Y9M:thrown_together_phone:r._breeden B0007U8Y9M Panasonic GigaRange KX-TG5576M 5.8 GHz DSS Expandable Cordless Phone with Answering System and Color LCD on Handset (Metallic Grey): Electronics electronics 27 of 42 2.0 Thrown Together Phone November 22, 2005 R. Breeden It looked flashy and well-conceived on the web shopping sites that featured it; however, after setting up Panasonic's KX-TG5576M, I'm underwhelmed... First of all, even in this day and age, it's not Mac-compatible (though the Pansonic Call Center Representative had assured me, after checking with her Superior, that it indeed was.) So, I cannot comment on downloading ringtones, wallpapers, etc. (Meanwhile, these mobile phone-like features were the main reason I wanted this particular cordless phone). Secondly, the built in digital message recorder is of the lowest quality. I was looking for an alternative to the monthly charge for voice mail through the phone company. This isn't it. If you prefer to record your own message in lieu of the generic built-in message options, your Callers will here something sounding like a worn-out Edison recording. It struck me as odd that with the included audio cable, you can connect the handset to an audio device with a headphone jack, to record custom ring tones, with good quality results. Yet, to record a message for the digital answering machine, you need to speak into the dinky little microphone hole on the base unit, with the aforementioned low sound quality. Finally, the battery life of the handset is rather short. This is despite the (too) low backlighting on the handset keypad. Oh, why no backlighting on the base unit? B0009Q5BT0:regional_coding:m._venzky-stalling_"mvs" B0009Q5BT0 HP Photosmart 385 Compact Photo Printer (Q6387A#ABA): Electronics electronics 20 of 64 1.0 Regional coding October 22, 2005 M. Venzky-stalling "MVS" UK I cannot recommend HP to anybody anymore. The company introduced regional coding, which means printer cartridges from one region cannot be used in another. For most this is probably not an issue, for those busily traveling around it is. Also, it is an issue of principle, its bad enough for DVD, but printer cartridges? HP has introduced this rather secretely and if you don't read the box cover etc very carefully, you may not notice. The main issue is in Europe. I got caught out. I bought a 3 catridges overseas - I could not use them on my HP printer. I asked for a refund, HP Email Support (US) was nice but ineffective. HP Customer Support (Europe) was snotty and very rude. I think HP does not care about its customers and this cost me over US$75, almost 50% of my printer (my sixth and last HP). Don't buy HP B00081A2DQ:missing_ear_plugs_and_travel_kit:juan_a._rufin-velasco B00081A2DQ KOSS Stereo In Ear Ear Plugs - The Spark Plug: Electronics electronics 0 of 12 1.0 Missing ear plugs and travel kit November 9, 2006 Juan A. Rufin-velasco I cannot review this item since I have not received it so far at the shipping address I gave Amazon when I did the purchase. I bought four items, and I only got two of them by mail. What happened to the other two items? -KOSS Stereo In Ear Ear Plugs - The Spark Plug (Purchased on 09/15/2006) -Apple iPod USB Travel Kit with Car Charger, Travel Adapter & Cable (Purchased on 09/15/2006) WHO KNOWS.. B00008Y1A7:tinny_indeed_:shelby_h._swatek B00008Y1A7 Sony SRS-A202 Active Speakers with Built-in Mega Bass Sound: Electronics electronics 18 of 20 2.0 Tinny indeed March 4, 2005 Shelby H. Swatek Simi Valley, CA USA I agree with the viewer preceding me. Very tinny. The ones I was using from my old computer sound 100% better. These are a complete waste. Two stars because I do hear the music but it sounds awful B00008Y1A7:very_unhappy_with_this_product:j._harris B00008Y1A7 Sony SRS-A202 Active Speakers with Built-in Mega Bass Sound: Electronics electronics 27 of 29 2.0 Very unhappy with this product February 27, 2005 J. Harris Cambridge, MA These speakers were a major disappointment. I have speakers that are about 5 years old, and wanted to replace them. But these Sony speakers were AWFUL - the sound was tinny, the bass was almost non-existent, and the sound was probably worse than that coming from my built-in laptop speakers. And these weren't even the "cheap" speakers - there were many sets that cost less than this. If you care at all about the quality of the speakers, spend another $20-$30 and get a decent set... don't buy these.. B0006Q7FFG:horrible,_painful_product:pam B0006Q7FFG Griffin Technology 4039-EJAM EarJam Earbud Sound Enhancing Covers: Electronics electronics 1 of 1 1.0 Horrible, Painful Product October 30, 2006 Pam GA These Ear Buds are large and hard. They have sharp edges and hurt my ears. I have large ears and large ear canals and wear other earbud type headphones all the time which do not bother me. These were not only painful but did not enhance the sound, but actually reduced it. This product should be taken off the market B00007MMNS:short_battery_life:anaiselise B00007MMNS Garmin Geko 201 Handheld GPS Navigator (Lime Green): Electronics electronics 11 of 13 2.0 Short battery life July 7, 2005 anaiselise Using Rechargeable AAA batteries, with the Battery Saver feature turned on, about two hours. Sometimes I get more using alkalines, but not much more. Honestly, this unit is worthless, because I can't trust the batteries. Order a Garmin Etrex Legend instead. It isn't much more expensive, larger or heavier, and it includes a base map of roads, towns, and shorelines. The Legend comes with a cable to transfer data from your computer. The Legend's screen is a bit larger, but shows much more detail. And - the batteries last hours and hours. B0007RA6NW:static,_static,_static:catlover888_"catlover888" B0007RA6NW Sony SRF-M97 Radio Walkman: Electronics electronics 0 of 2 2.0 Static, Static, Static September 20, 2006 catlover888 "catlover888" SF, CA This did not live up to its price or my expectations. I walk to work and there was static on both AM and FM - B00005NGRQ:not_the_greatest_caller_id_unit:j._reagan B00005NGRQ GE 29016S Caller ID Box: Electronics electronics 6 of 6 1.0 Not the greatest caller ID unit October 31, 2004 J. Reagan Takes 3 AAA batteries that in our experience run out too quick. Other units we've owned have lower battery drain. Also the LCD display has poor contrast. All in all, I'd buy another one that costs a few bucks more B000CFL5LG:third_times_a_charm?__no_not_really.:p._l._reed B000CFL5LG Bargaincell- Apple Ipod Rapid Car Charger for Ipod / Mini / Nano (1gb 2gb 4gb) / Video: Electronics electronics 1 of 1 1.0 Third Times a Charm? No not really. July 31, 2006 P. L. Reed Alexandria, Virginia United States I ordered this charger a month ago. Since, they've sent me three chargers all the same, all wrong. They've sent me the shuffle charger three times in a row. Don't waste your money on this product, for a few bucks more you can get a company that will actually send you the right product the first time B000CFL5LG:avoid_this_company!:r._roybal_"rroybal" B000CFL5LG Bargaincell- Apple Ipod Rapid Car Charger for Ipod / Mini / Nano (1gb 2gb 4gb) / Video: Electronics electronics 15 of 19 1.0 Avoid this company! March 30, 2006 R. Roybal "RRoybal" USA Bought a cell phone battery that, of course, died one week past their return/refund deadline. Refused to refund or replace even though the product is CLEARLY defective. This company is a ripoff and will never do business with them again. Consider yourself warned B000CRUZ2O:defective_product,_mediocre_service:d._scholnick_"gadget_freak" B000CRUZ2O Actiontec VoSKY Skype Call Center ( USB07051C-01 ): Electronics electronics 3 of 7 1.0 Defective product, mediocre service June 18, 2006 D. Scholnick "gadget freak" Boston, MA USA I purchased a unit recently and after a couple hours tinkering with it, I couldn't get it to work. I called Actiontec/Vosky support and spent almost an hour on the phone with them. They advised me to uninstall their software and Skype and to try reinstalling each product. When that didn't work, they told me the product was defective. Unfortunately, they refused to take it back themselves and made me deal with the Seller (ANTOnline.com) first (not a very good seller, btw, as they gave me a terrible time when I tried to return the defective product). Hopefully you'll have better luck. Also, be sure to check out whether Vosky is officially supporting Skype 2.5. When I made my purchase, they did not B000196ENC:not_a_universal_mount!:suleman_ishaque B000196ENC Magellan RoadMate GPS Dash Mount: Electronics electronics 3 of 4 1.0 Not a Universal mount! August 3, 2006 Suleman Ishaque SoCal, United States If your cars Dash is curved or sloping, this mount will not work. Did not work on a 1988 Mercedes 300E or a Daewoo Lanos. It might work if you have a perfectly FLAT dash. I had to return the item as it did not sit properly. Even the slightest touch from a finger would make it slide down. Those of you who are clean freaks like me, BEWARE. Products like armour all which leave a protective coating on your dash will further reduce the grip of this stand! I would not trust a $800 piece of equipment on an unreliable stand like this when even a slight touch of a finger can make it slide down. What about jolts and bumps while normal driving? I did not wait to find out using my $800 GPS as an experiment B0002ZH71S:powerline_ethernet_works_great,_wireless_no_so:a._metcalf B0002ZH71S Netgear WGXB102 54Mbps Wall-Plugged Wireless Range Extender Kit: Electronics electronics 2.0 Powerline ethernet works great, wireless no so August 25, 2006 A. Metcalf San Diego, CA I bought this to run ethernet into my daughter's room. The powerline etherernet works flawlessly, I've had it up and running for six months without restart or problem into three other rooms. The wireless module however tends to overheat and drops the network after 24-48 hours of operation, so she has to unplug it every time she is done with the network, and plugs it back in whenever she wants to connect. I am going to upgrade her to another wired powerline ethernet module B00000J3UJ:have_an_ibook?_don't_buy_this_lock!:karl_rahder B00000J3UJ Targus PA400U DEFCON 1 Ultra Notebook Computer Security System: Electronics electronics 1.0 Have an iBook? Don't buy this lock! October 18, 2006 Karl Rahder Baku, Tbilisi, Chicago I posted a review two weeks ago, but it hasn't appeared, so I'm trying again...I bought this lock two years ago. It has always been difficult to remove. (Note: despite what some other reviewers seem to think, it does NOT have a motion detector - that's a different lock.) Recently, the lock decided to remain firmly inside my iBook, despite my efforts to remove it. After a fruitless call to Targus's customer support, I finally got it out. That took over 30 minutes of struggle. My next step was going to be purchasing a hack saw. Apparently, the Targus lock is not a good fit for iBooks. I'm going to send mine back and demand compensation. If you own an iBook, I strongly suggest you buy a lock made by someone other than Targus B0001WDFBS:great_mechanics_but_the_coffee_taste_is_lost...really_lost.:pio B0001WDFBS Zojirushi EC-BD15BA Fresh Brew Thermal Carafe Coffee Maker: Electronics electronics 10 of 10 2.0 Great mechanics but the coffee taste is lost...really lost. November 9, 2004 Pio Orange County, CA We drink a lot of coffee all day, every day. So we decided to convert to a thermal carafe coffeemaker in order to keep our coffee hotter and fresher-tasting. We first bought the 10-cup Capresso MT-500 which we loved except for the carafe which leaked slightly. The coffee was perfect everytime and the taste great. Unfortunately the control panel burned out about a year and half after we bought it. So instead of another expensive Capresso replacement, we decided to try a Japanese model which we thought might be more reliable. We have been using the Zojirushi for 2 weeks now and it works perfectly. No leaks and it just feels more mechanically reliable than the Capresso. Unfortunately, there is no water filter system in this model compared to others (we had taken this for granted and not checked for it). And no reuseable metal mesh filter (that I could find on the market) instead of paper filters. The water also does not seem as hot when it goes into the coffee grounds. We are not sure why our coffee just doesn't taste very good anymore, but we definitely have noted a real sharp drop in taste quality. Today, we pulled out our very old Krups ProAroma model and have noted a definite taste improvement. We will use this and the Zojirushi thermal carafe until we get a new Capresso coffeemaker replacement. Don't waste your money on this Zojirushi model unless you don't care about taste. It was money thrown out the window as far as we are concerned. Even mediocre coffee beans are too expensive to use with this machine B0002XIX0E:<em>poor_fit,_poor_quality_sound,_decent_mic</em>:j._moe B0002XIX0E Logitech 980231-0403 Precision PC Gaming Headset: Electronics electronics 2.0 <em>Poor fit, poor quality sound, decent mic</em> September 27, 2006 J. Moe USA Everyone has already covered the basics, so here's the highlights: The audio listening quality is poor, especially for 40mm drivers (which normally sound good with strong bass response). This is due to the fact the speaker itself is far from the ear canal, since the outer padding contacts the side of the head instead of the actual speaker pad. The headphones are heavy, which means a large amount of pressure is required to hold them in position. They slide very easily off the head, and apply a lot of downward force on the ears. I have a big head, and even made some slight modifications that increase the pressure, now they don't slide off, but are uncomfortable for more than an hour of use. At first, the volume slider is stiff, but then becomes smooth. After 4 months of use, the mute switch is getting loose, I don't expect it to work 4 months from now. I really like the microphone portion of the headset, the angle is adjustable, and the volume is loud and clear. In the end, these headphones have a good microphone matched with very poor quality headphones. Next time, I'd grab the cheaper Logitech headset, where they are nice and light and the speaker pads make contact with the ears, not some large outer pad B0002XIX0E:not_for_people_with_small_heads...:vanessa_lane_"vanessa" B0002XIX0E Logitech 980231-0403 Precision PC Gaming Headset: Electronics electronics 2 of 2 2.0 Not for people with small heads... September 2, 2006 Vanessa Lane "Vanessa" Upstate New York I purchased this unit not for gaming, but for making PC to PC calls. Here are my observations: Pros: 1. Sound quality of the microphone on the receiving end is reported by my friends and family as exceptionally clear. Certainly much better than what you'd get out of a webcam. 2. Chord is robust and long. Easily fits over my long desk to my CPU that rests beneath. 3. Controls are easy to use, although the mic on/off switch doesn't click into place like I'd expect it to. It just slides back and forth. I can see people accidentally turning it off. 4. Headphones produce good sound, although nothing extraordinary. 5. The mic itself freely rotates, so you can position it however you desire. Cons: 1. First and foremost, if you've got a small head DO NOT PURCHASE THIS!! My head is not big and these headphones ARE NOT ADJUSTABLE! These headphones are so large that they're actually uncomfortable. Their entire weight rests on my ears and I can't wear them for very long without my ears falling off. 2. These headphones are very heavy, uncomfortably so. I've resorted to holding them up to my head and listening through one speaker to take the weight off my ears. 3. Perhaps having the airspace between the speakers and the frame keeps your ears cooler, but it still feels like I'm wearing a set of insulated ear muffs. Chatting on hot summer days is limited to 10 minutes or less until I'm dying of heat exhaustion. 4. You need to get a Y splitter if you wish to have these headphones and your computer speakers on at the same time. If you don't have front headphone plugs on your case this is an issue. Otherwise you have to crawl under your desk and manually disconnect the headset from your motherboard jacks and plug in your speakers again. Y splitters are only a few dollars but it's an accessory you will have to purchase, especially since front speaker ports on most computers can't be hooked up at the same time as your rear motherboard jack (and most people have their main sound systems plugged in with the rear one). Granted, this is more of a general microphone/headset combo issue than anything Logitek related, but if this is your first microphone/headset purchase then you should be aware of this problem. I use onboard audio instead of a sound card, so I don't have multiple output jacks. 5. These headphones are designed to rest behind your neck, not over the top of your head. Unfortunately, the plastic beam is too heavy and pulls the speakers back, placing all the weight on your ears. The plastic beam is also too short (and just!) to go over the top of my head for a more comfortable fit. 6. The design also doesn't make sense. The beam is so short that it should rest behind your neck, yet the angle of the speakers through that air gap is better for wearing the beam over your head. It's pretty uncomfortable. If the headset was adjustable it would be fine! The earpieces are just too huge! Overall I'm disappointed with these. If you're under 5'10" I say go with another model. The hardware works great, but the design is terrible. I'm returning these and purchasing an uglier, but more functional, set of smaller headphones B0002XIX0E:the_mic_is_not_good._the_design_is_not_very_comfortable:first_last_"softorama" B0002XIX0E Logitech 980231-0403 Precision PC Gaming Headset: Electronics electronics 1 of 1 2.0 The mic is not good. The design is not very comfortable August 29, 2006 First Last "softorama" Sunnyvale, CA United States The headset sits on the back of head, which is ok, however due to large ear rests it feals awkward and uncomfortable. I was not able to use volume control, as the headphones were only audible at higher volume level. The mic is poor. Whether you want it for gaming or just general purpose use, its better to skip this for something else B000A1IUFQ:cool_toy,_but_not_a_useful_tool:w._hoffmann_"strategic_advice" B000A1IUFQ Palm 3207NA GPS Adapter Kit for Select Palm PDAs: Electronics electronics 2 of 2 2.0 Cool toy, but not a useful tool July 2, 2006 W. Hoffmann "Strategic advice" Phoenix, AZ I have been using the Palmone Navigator with my TX for about eight weeks. Most of my comments are based on a comparison with the built-in navigation system in my Lexus. Software installation is fairly easy. However, you need at least a 256 MB SD card to load more than a couple of states; I recommend a 1 or 2 GB card. While the concept of a TX doubling as a navigation device is intriguing, the realty of it is rather sobering. It is a cool toy, but if you have to plan routes for your job or any other meaningful purpose, this is NOT the right product. The pros are: - Inexpensive in comparison to built-ins und stand-alone products - Unit can be used in different locations and cars and even while walking - One device serves multiple purposes The cons are: - It can take up to several minutes after starting the unit to acquire a satellite signal. This is not the case with my car's OEM navigation system. - The maps are outdated and not as precise as the OEM nav system: I live in Phoenix, AZ and my neighborhood (built seven years ago) as well as most of the freeways I take to work and back don't exist on the software. More recent updates are not available (I checked the Tomtom website). - Navigation is often not precise enough (e.g. it tells me to make a left in 50 yards, when I have already passed the intersection where it wants me to make a left). I never have this problem with the built-in navigation. - Look-up function for addresses and phone numbers is clumsy and doesn't display actual address until you map it. - It tends to freeze at least a couple times a day, requiring a soft reset. - Lost connections to the satellite receiver or lost satellite signals also tend to disrupt the navigation on longer trips with stops. Overall, the unit is too unreliable to be used as your only navigational aid. If you need navigation to get to your travel destination, you are better off with a stand-alone unit. I truly wish I had better things to say about this device since I really like the concept, but the reality just doesn't match the marketing. B000A1IUFQ:great_when_it_works_-_but_far_too_flaky:honest_guy B000A1IUFQ Palm 3207NA GPS Adapter Kit for Select Palm PDAs: Electronics electronics 7 of 7 2.0 Great when it works - but far too flaky February 21, 2006 honest guy Scotch Plains, NJ United States The GOOD news is that this is a full featured GPS solution that is easy to mount in the car and can navigate to contacts in your address book. Maps are detailed and the POI (Point of Interest) database is fairly extensive. The BAD news is that it all too often fails to connect via Bluetooth. Installation of software and maps is error prone (do not follow any of the 'advanced' hints in the manual - they scrambled my SD card). Only buy this product if you like puzzle solving and have a great deal of patience. If you are expecting an out of the box solution that is 100% reliable - look elsewhere. B0007LC49M:the_disappearing_mp3_player:jean_winkelman_"jmwinke" B0007LC49M iRiver H10 5 GB Digital MP3 Player Remix Blue: Electronics electronics 1 of 2 2.0 The disappearing MP3 player July 2, 2006 Jean Winkelman "jmwinke" Pasadena, Texas USA I have a 5gb but a lot of the H10's are having the same problem. I can play all of the songs that I owned myself but everything through the subscription service has run out and can't be reinstalled. I've done a little research about the disappearing MP3 player and it appears to be a problem that is affecting a lot of the H10's and 1 other model I can't remember right now and iRiver can't figure it out; although I've been told they are trying desperately to find the bug....So buy with caution.... B0000DIH1D:should_have_check_first:d._k._boyd B0000DIH1D National Geographic Back Roads Explorer: Electronics electronics 5 of 7 2.0 Should have check first April 25, 2005 D. K. Boyd Austin, TX USA I went looking at Fry's for a mapping software and bought this before looking online at reviews. I'm now stuck with a bazillion (ok, just 17) CDs and a product that takes minutes to load once you initiallize the program. I still can't figure out how to access any info on Hawaii or Alaska and I'm waiting each time an average of four days before "tech support" haha will write me back. Don't buy this. B00005T3N3:not_bose_quality:"boseman69" B00005T3N3 Bose UFS-20 Universal Floor Stands (pair) - Black: Electronics electronics 7 of 14 2.0 Not Bose quality January 10, 2002 "boseman69" Sedona, AZ United States Sorry, the speakers don't attach well, and the quality of these stands is not what I'm used to with a Bose system B00005JDDZ:doesn't_play.....:wakeboardr99 B00005JDDZ Memorex 40x Music CD-R Media (50-Pack Spindle): Electronics electronics 4 of 4 1.0 doesn't play..... November 15, 2005 wakeboardr99 these cds burn fine BUT they won't play in most cd players. I've tried it in two car aftermarket cd players, brand new mazda, and a brand new F1500 - they all did not read the cd. Most computers can read them, but other than that they are not very usable B000E9BXDU:acer_1916ab:frederick_carr_"flrhcarr" B000E9BXDU Acer AL1916AB 19" LCD Monitor: Electronics electronics 0 of 1 2.0 Acer 1916AB November 21, 2006 Frederick Carr "flrhcarr" Kent, WA For over eight years (nearly 9), I had an Acer 17" CRT & loved it. I use a KVM to switch computers, & the CRT kept all of my adjustments for that computer, every time. When it started showing signs of age (about four months ago), I decided to try a flat screen, or LCD, though I've heard horror stories about them, my laptop is great. I don't mind the dark overlay associated w/LCDs, I have that on my laptop. I was amazed at how poorly this monitor responds to things. I still swap computers. I can't get the same clarity that I once did. I swap between ME & XP, which shouldn't matter. Don't believe there isn't any flicker, that's wrong. If you change the refresh rate, the monitor changes, not the computer. What happened to dumb monitors (what happened to dumb printers)? Best, should be a button (turn on) away. Some tweaking isn't bad. Fade out: I have the monitor, at the "proper" height, & the upper & lower corners fade. As looking at any lcd from an angle. You can't tilt this monitor very much at all Don't spend much time on shut down or re-start in ME, the lines & jaggies will kill you. I'm sorry that I bought this monitor. The refesh rate for games, is fair. Don't play any games prior to ME! Because ME era games fade badly at the ends, nearly blacking out. Post XP isn't anything to write home about really. I would suggest trying out an hdtv first. With a direct (vga) plug in. It's a few dollars more, but if you're considering an hdtv, as well as a monitor, I'd chance it. You can always buy a 20" CRT for less. I hope this helps B0009V6TL4:keyboard_layout_sucks;_mouse_only_2_buttons_+_wheel:thomas_hundt B0009V6TL4 Logitech Cordless Desktop EX110 ( 967561-0403 ): Electronics electronics 1 of 2 2.0 Keyboard Layout Sucks; Mouse Only 2 Buttons + Wheel August 15, 2006 Thomas Hundt San Francisco, CA United States The keyboard with this set is flimsy and cheap feeling. Worse, the layout is nonstandard: they've messed up the key cluster above the arrows (Insert/Delete/Home/End/etc.). And the right hand Ctrl is not below the right end of the Shift key, it is under the left end of the Shift key, where one of the Windows keys (the context menu one) normally is. They've taken out one of the Windows menu keys, too. The wireless features worked fine (I've used it two days) and worked even without installing their driver software (something I'm always reluctant to do). I think some of the extra buttons (multimedia controls) on the keyboard don't work for me, because of this. I use the computer it's on for work, not screwing around, so this doesn't bother me. (I have it installed on a Thinkpad laptop so I can keep the screen farther from my eyes, and my employer bought the thing; it wouldn't have been my first choice.) I've given it two stars only because it worked great, out of the box, with no driver software. (This is on a Thinkpad running WinXP.) I'm already dreading the battery usage (based on another review here). Thankfully, it's not my main keyboard B0009NMQ2I:i_wouldnt_recommend_this_unit:john_f._weiland B0009NMQ2I Delphi SkyFi2 XM Satellite Radio Receiver and Car Kit: Electronics electronics 8 of 12 1.0 I wouldnt recommend this unit April 6, 2006 John F. Weiland Verona, PA United States Ive had this unit for over a 1+ year and ran into problems with reception it would drop signal and it would eventual come back. I found out that this unit had a defect and the xm rep said I could get a replacement for $50!!! They didnt figure to tell anybody about this? If this is true I would not recommend XM Radio at all. Thanks John B0009U4ZDE:this_item_is_horrible:a._temple B0009U4ZDE CTA Digital 3 in 1 Car Kit for iPod: Electronics electronics 2 of 2 1.0 This item is horrible October 19, 2006 A. Temple I have to admit, the price of this item got me. It's now 40 bucks down the drain as it has failed to work completely. It worked for about 8 months but was very fuzzy. The quaility was that of an AM radio station. Recently, it quit working altogether so now I am back in the market for one that will work B0009U4ZDE:item_didn't_work:l._mikkelsen_"lm" B0009U4ZDE CTA Digital 3 in 1 Car Kit for iPod: Electronics electronics 3 of 3 1.0 item didn't work August 15, 2006 L. Mikkelsen "LM" Seattle, WA Unfortunately the item didn't work. The company offered to replace it but I just decided to pay more and buy locally B000A2BJ1W:costly_to_run.:sherry B000A2BJ1W Canon PIXMA iP1600 Photo Printer (White): Electronics electronics 2 of 2 1.0 Costly to run. October 21, 2006 Sherry Michigan It is an okay printer (I haven't done photos yet) and pretty fast but I have to change the cartridges every 3-4 weeks. This is just home use I'm talking about, not business use. The cartridges are small, run out real fast and cost up to $60 a month for one black and one color. I'm thinking of going back to a Lexmark B000A2BJ1W:you_get_what_you_pay_for...:m._c._kerr_"j.j.'s_mommy" B000A2BJ1W Canon PIXMA iP1600 Photo Printer (White): Electronics electronics 3 of 3 2.0 You get what you pay for... September 14, 2006 M. C. Kerr "J.J.'s Mommy" Philadelphia, PA I bought this printer because I wanted high quality photo printing and I didn't need any of the bells and whistles that come with more expensive printers. It's a Canon, so I figured I could count on the photo quality. I was terribly disappointed though. I generally buy Staples brand photo paper for general photo printing, and it always worked fine with my Epson printer. But my first prints on this printer looked dull and muddy -- like I was looking at the images though a mild but annoying grey/brown haze. So I went out and bought Canon paper instead. The quality was somewhat improved, but still not what I had expected. So yes, I got a printer for under $30, but now to get even passably OK prints, I need to spend a fortune on Canon brand inks and paper. Not much of a bargain. B000094FRI:threw_it_out.:j._wurzelmann_"plays_well_with_others" B000094FRI CABLES UNLIMITED Zip-Linq RJ12 Retractable Phone & Modem Cable: Electronics electronics 1.0 Threw it out. May 26, 2006 J. Wurzelmann "Plays Well With Others" Chapel Hill, NC USA As best as I can tell the wires were too thin, and it could not handle any kind of bandwidth. B000062STU:doesn't_work_with_my_pc:carmine_d'emilio B000062STU Adaptec 1890600 Fireconnect 4300 Kit AFW-4300: Electronics electronics 1 of 3 1.0 Doesn't work with my PC February 21, 2004 Carmine D'Emilio Yonkers, NY USA I installed the board and my PC (running XP Pro) won't boot. I tested all the PCI slots with other cards (and mixed them up too) and the PC boots fine. I returned the card and got a new one. Same problem. I removed all of my other PCI cards and left this one in there alone ... same problem. I'm speechless. I guess it's not compatable with some systems. By the way, I know my set-up is fine. I have 3 PCI slots filled and 3 additional USB devices and all is well. I never had a problem like this before B0000DZET4:if_you_have_sp2,_this_is_not_for_you:d._nasluchacz_"kaleldpn" B0000DZET4 Linksys USBBT100 Bluetooth USB Adapter: Electronics electronics 1 of 3 2.0 If you have SP2, this is not for you September 3, 2006 D. Nasluchacz "kaleldpn" Riverside This adapter will not work at all with Windows XP SP2 - despite any promises from the Linksys website, this cannot be setup - buy the Anycom adapter instead B0000DZET4:has_yet_to_work:roger_miller_"roger" B0000DZET4 Linksys USBBT100 Bluetooth USB Adapter: Electronics electronics 1 of 1 1.0 Has yet to work August 1, 2006 Roger Miller "Roger" Illinois I have spent time with lynksys and Dell, both of which say they have done all they can do, (from their manuals). Because I have had to finish phone calls without without solving the problem, I call back and get conflicting oppinions...this keeps me coming back. It still is not working, they have that in common. B0007DFXD4:some_of_them_doesnt_work._cheap_quality_cdrs:murali_tammineni B0007DFXD4 Velocity 52X 80 Minute/700 MB CD-R (25-Pack Spindle): Electronics electronics 2.0 Some of them doesnt work. CHeap quality CDRs March 9, 2006 Murali Tammineni Webster, NY, USA Their quality is cheap. so do their price. Out of the 25 CDs, atleast 8 of them failed. The rest, okay. I would suggest Verbatim. They are pretty good B000EWTBRW:don't_waste_your_money:mintz_"-mintz" B000EWTBRW SanDisk Sansa e200 Silicone Case White: Electronics electronics 32 of 34 1.0 Don't Waste Your Money June 27, 2006 Mintz "-Mintz" Huntsville, AL Pros * Fits like a glove (goes without saying) * Um... Peace of mind? Cons * This case makes pushing the buttons harder than it already is. * There is nothing to protect the screen. * If you're left-handed (or like to operate gadgets with your left hand) note that it is impossible to push the Menu button. It would take a double-jointed freak of nature to comfortably push it. * The case is a dust and hair magnet. Every time you pull it out of your pocket, it's encrusted with lint you didn't even know you had. Dust manages to sneak under every surface, and hair magically sticks to it. This case is a DNA-sample paradise for forensic experts. One of the features of a flash-based memory player is the fact that they won't break as easily when you drop them. Unless you're paranoid about getting scratches on your shiny new Sansa, don't buy this B00006JPFP:bad_product_from_kb_electronics:v._sharda_"goodone" B00006JPFP Coby CA-979 Universal AC Power Adapter: Electronics electronics 10 of 14 1.0 Bad product from KB Electronics January 20, 2006 V. Sharda "GoodOne" NJ, USA I bought this product from KB Electronics. Because of this product, my digital camera stopped working. On giving a bad review to this product, KB Electronics offered me 10% discount on my next product. So, I told them that I would give a good review to them if they can repair my camera. At this they went silent. So, basically this means that they would try to make someone silent with a few dollars, but if they have to fix their problems, then they would forget all morals and turn dumb. I don't know about the current company, but beware of the same thing happening to you guys. It is possible that KB Electronics has started selling the same product by the name of its sister concern - businesses do this all the time B00005T3ND:great_until_it_broke: B00005T3ND Apex AD-1500 DVD Player: Electronics electronics 2 of 3 2.0 Great until it broke April 16, 2004 I bought this player a little over a year ago, mainly for the ability to upgrade the firmware to region-free. Played everything I put in it until a few days ago, when it started having intermittent problems- graphics were staticy and blocky, sound would just buzz and it wouldn't eject discs until I shut it down and restarted it. That lasted for two days before the problem became permanent. Now it's a doorstop. The Apex web site appears to be down right now, but based on the other reviews here I doubt there's much point in contacting them B00074Z9OQ:ever_wished_you_hadn't_spent_your_money...:k._little B00074Z9OQ Apple M9758G/A iPod Shuffle Sport Case: Electronics electronics 5 of 6 1.0 Ever wished you hadn't spent your money... June 19, 2006 K. Little The resaon I purchased this sport case is because it was an Apple product. My thoughts were that is I was going to dive into the ipod experience I should invest in a quality case to protect it. I'm sure that most people would think the way I do. I read the reviews and felt that even though it was a little pricey I would go ahead. This product is not a good one for the price. Mine broke, specifically, the plastic slider on the side that locks the shuffle in. I know what your thinking... she abused the product but I swear I did not. I loathe returning things but, darn it, this is ridiculous. Avoid this one and go for something less expensive. B0000TNJU4:not_as_fast_as_they_claim:m._easton_"cme" B0000TNJU4 Belkin Media Reader and Dock Connector for iPod: Electronics electronics 21 of 21 2.0 Not as fast as they claim October 28, 2004 M. Easton "CME" San Francisco, CA Though the concept is great, and the controls are straight forward and easy to use, the Belkin Reader falls short of usability. While out on a location, I was away from a power source and thought the Belkin reader would be a great alternative to lugging a laptop around for file transfers. Trying to transfer 1000 pics off a 1GB CF card was impossible. The reader would drain a fully charged ipod and still not finish the transfer. Though it claims firewire transfer speeds, I did some tests from home and found otherwise: 100 compressed 2K pics transferred via: USB1 card reader to computer 1 min 20 sec. PCMCIA card reader in laptop 45 seconds. Belkin Media reader 6 min. 45 sec This was just a simple example. You can see how hundreds of files would take 30 minutes or more. For the price, I'd suggest buying a few more memory cards and not worry about the transfers until you get home, unless you're in no rush and can charge up the ipod regularly B000F5K3Y8:very_poor!:r._sousa B000F5K3Y8 Mustang MV-TILT3 Tilt Wall Mount Adjustable for TV's up to 60-inches: Electronics electronics 2 of 6 2.0 Very poor! November 7, 2006 R. Sousa Arrived today in a taped, ripped, and open box. It appears as though all the parts are there, but this is definitely not a 'factory sealed' product. Beware! My suggestion would be to buy from someone else B000F5K3Y8:product_missing_user's_guide:bejan_afsharpour_"bejanjoon" B000F5K3Y8 Mustang MV-TILT3 Tilt Wall Mount Adjustable for TV's up to 60-inches: Electronics electronics 33 of 46 1.0 Product missing user's guide August 25, 2006 Bejan Afsharpour "bejanjoon" California This product came with an italian users guide. In addition the specification fails to state the thickness of this wall mount. It turns out its about 3.5 inches thick and with the thickness of the monitor itself it stands out very far from the wall. I RETURNED THIS BACK TO AMAZO B00067TTZE:not_happy:l._dagenais B00067TTZE Creative Zen Micro 5 GB MP3 Player White: Electronics electronics 1.0 Not happy November 24, 2006 L. Dagenais Hard to figure out and organize music... battery life not what is promised and needs to be changed often... don't recommend it. Very "Not happy B000B9RXPA:horrible,_horrible,_horrible:a._bower B000B9RXPA Apple MA186G/A Armband Red for iPod Nano 1st Generation: Electronics electronics 7 of 7 1.0 Horrible, horrible, horrible June 9, 2006 A. Bower I adore my nano, but this armband is one of the worst products I have ever bought. I work out quite a bit with the nano and the band comes off multiple times during my workout. The spacing of the velcro dots means I never get exactly the right fit and the band gets ripped off anytime I do weight lifting close to my body. It is also as other reviewers mentioned hugely overpriced for what it is. I am ordering a band from a different company and this will go straight to the garbage. B0001AU6XU:i_hate_it!:laura_moffat B0001AU6XU Apple iPod Mini Arm Band M9445G/A: Electronics electronics 6 of 7 1.0 I hate it! July 7, 2005 Laura Moffat Either I am idiot or this product is very poorly designed! It takes forever to get it just right, so that it won't slip off and still it feels uncomfortable and not quite right. Now they have them in sorts of colors, don't buy it, you'll just get annoyed everytime you want to use it, like me. B0001AU6XU:the_clip_is_better:katie B0001AU6XU Apple iPod Mini Arm Band M9445G/A: Electronics electronics 14 of 14 2.0 The clip is better May 3, 2005 Katie St. Louis, MO I bought the armband when I got my mini ipod. However, the belt clip that comes with the iPod is perfect to clip to my shorts while jogging. You don't need this large, clunky armband B0001AU6XU:destined_for_the_back_of_a_drawer:talawren B0001AU6XU Apple iPod Mini Arm Band M9445G/A: Electronics electronics 34 of 35 2.0 Destined for the back of a drawer March 4, 2005 talawren Burlington, VT USA I found the armband to be uncomfortable and inconvenient. I think the upper arm is just a bad place to carry an iPod. The added weight is distracting when I'm running. Even worse is any activity that requires me to flex my biceps at all, so lifting weights is out. Put it on too tight, and I constrict the muscle. Loosen it a little, and the band slips off. There is no happy medium. Also, the earphone cord gets in the way more when it's leading from my arm. The belt clip that came with my iPod mini works much better for me. I clip it on the waistband of my sweatpants when I'm working out and it remains very secure, even when I'm running on the treadmill. And the cord stays close to my body, where it is far less likely to get caught on something. The only advantage of this product is that it lets you advertise to the world that you own an iPod mini. Big deal. My armband is destined to be forgotten in the back of a drawer at home B00004U8K1:very_poor_quality:jennifer_fife B00004U8K1 Plantronics T10 Corded Headset Phone: Electronics electronics 3 of 5 1.0 Very Poor Quality April 1, 2006 Jennifer Fife United States Do not waste your money on this product!! Whilst Amazon has a very good price for it, the headset is junk! I tried two different sets and both had a terrible hum. The hum was audible at all jacks in the house and on two different phone lines. It could be heard by the other party and made my hearing the other party nearly impossible. I work for the phone company and have used headsets over the past 25 years with no problmes. This set is very poor quality and not worth the money. B00004U8K1:buzz_in_microphone:b._coleman B00004U8K1 Plantronics T10 Corded Headset Phone: Electronics electronics 5 of 6 1.0 Buzz in microphone January 6, 2006 B. Coleman Amazon quickly shipped this item to me and I was ready to rock 'n' roll -- until I plugged it in. There was a distinct buzzing noise that both myself and the caller on the other end could hear. The buzzing noise stopped when I hit mute, so the Plantronics rep said it was a microphone problem. Amazon was very gracious about their return policy and I was quickly sent a new phone free of charge. Well, the second phone does the same thing and I'm returning it to get a refund. Maybe just my phone line? Possibly. But I've tried two phones now and have the same problem with both B000AP1RE8:sound_quality_ok,_but:julian_finn B000AP1RE8 Studio Condenser Mic with USB Output - SAM C01U: Electronics electronics 2.0 Sound quality ok, but November 23, 2006 Julian Finn Karlsruhe, Germany Bought C01U and was glad I could send it back after a testing period: Tried it witih Ableton Live on OS X 10.4.7 and a MacBookPro. Sound Quality was okay but either the buffer was too small (which caused the sound to scratch every few seconds) or the buffer was too large which ended in a lag causing me to get distracted from my monitor-earphones. I tried for about two hours to find the right balance but it didn't work out. This Microphone might have a nice sound but I can'T recommend it for high standard voice recording. B0006TIA34:didn't_last_long:manuel_ferrer B0006TIA34 D-Link DWL-G650M Wireless 108G MIMO CardBus Adapter: Electronics electronics 2.0 Didn't last long July 24, 2006 Manuel Ferrer The card lasted about 3 months then just died. I'm disappointed considering the cost. When it was working it seemed to have better range than my builtin centrino web access card. I don't know if I got a lemon but now I have to check the warranty. B0006TIA34:can't_connect_at_108mbs,_max_is_54mbps:a._verdugo B0006TIA34 D-Link DWL-G650M Wireless 108G MIMO CardBus Adapter: Electronics electronics 3 of 8 1.0 Can't connect at 108mbs, max is 54mbps February 3, 2005 A. Verdugo CT The card worked really well except for one little thing. There is no way to enbale super G mode (you need it to connect at 108mbps). Without the most I could connect at was 54mbps. The quick install guide and the manual said it's available, but it wasn't. Tech support was able to reproduce my problem, and tried many, many things. Even though they were very helpful, they coudln't fix it. My guess is that it's going to take a firmware upgrade to enable Super G. If you can wait for that, then you will be happy. I returned mine, and bout a Linksys WPC54GX B0001M3N7O:i_hope_sony_will_go_back_to_the_old_(srf-h3)_design:l._eskin B0001M3N7O Sony SRFH4 Analog Tuning AM / FM Headphone Radio: Electronics electronics 4 of 4 2.0 I hope Sony will go back to the old (SRF-H3) design August 17, 2006 L. Eskin Like another reviewer, I had the SRF-H3 model, and loved them - comfortable, secure, decent sound, and *almost* indestructable. I was hoping these would be "new and improved". Well, they are new... I really do not like them. The electronics/sound seem to be at least as good as the SRF-H3, which is fine, but the new design does not work for me at all, for 3 reasons. 1. The bigger band that goes over the top of the head is almost square - flat on top, instead of curved, so the weight all rests right on the crown of my head. 2. The smaller band, instead of keeping it secure, just loosens up rather than hanging on. 3. The earpads, which were on wobbly stalks on the SRF-H3, to match the angle of the ears, are fixed on this model. so they push more on the rear edges of my ears, and push the headphones forward. The quality of the electronics and sound don't do much good if the things are a pain to wear. Maybe they will work well for some head shapes, but not for mine. Bummer... Maybe I can find the old model somewhere. B000EUGX70:greatly_disappointing:c._douglas_"cmd1" B000EUGX70 Logitech Harmony 550 Universal Remote: Electronics electronics 0 of 1 1.0 Greatly Disappointing November 23, 2006 C. Douglas "cmd1" Austin, TX United States I can't say enough positive about Logitech mice. This device, however, was a dismal disappointment. The PC interface works well, and its knowledge of existing components seems impressive. Unfortunately, that in no way translates into a good remote interface. The ability of the unit to reliably turn on multiple components was poor, and, for those with video recorder boxes, very important functionality like the ability to access or schedule recording lists is not readily available (if its there at all, its hidden many keystrokes deeper than I care to know about). Even when reverting to manual operation of individual components, changing which device is being accessed involves two keystrokes (as opposed to just one on less complex universal remotes--a much more irritating trait than one might think). Overall, for day-to-day functionality I actually consider the barely-programmable remote that came with my Scientific Atlanta DVR vastly superior to the Harmony, which I've given up on after only a few days of forced use. Considering the ridiculous pricetag, I strongly advise you save yourself a lot of money and your relatives a lot of frustration this year by steering clear of this sad study in user interface failure B000A6PPOK:used_previous_natural_keyboard...:todd B000A6PPOK Microsoft Natural Ergo Keyboard 4000: Electronics electronics 1 of 1 1.0 Used previous natural keyboard... November 23, 2006 Todd Simi Valley, CA USA I have 2 10 year old natural keyboards with the old keyboard layout and when I saw this new keyboard with the same layout I bought one. Sadly, this keyboard is painful to use. The keys - especially the space bar - require far more force to use that my previous keyboard. I am a software engineer and used to typing but this keyboard has slowed my typing rate and wears me out after 20 minutes. On the shelf it goes for emergencies as I'll continue to maintain my old keyboard B0007PF7FQ:good_b/w_print/scans,_poor_software_and_color_scans:ivan_ivanoff B0007PF7FQ Brother MFC-7820N 5-in-1 Network Monochrome Laser Multifunction Center: Electronics electronics 4 of 4 2.0 Good B/W print/scans, poor software and color scans October 9, 2006 Ivan Ivanoff Atlanta, GA USA Used this unit for a few weeks and returned. Annoyances: Sofware: With ADF scanning, you have to enter scan parameters (paper size etc) again for every scan and it does not have an option to let you to continue scanning more pages then ADF can hold. You will have to use "add to file" function and select all scan parameters again. There is no option to scan double-sided pages as well with using 2 pass scanning. So 3rd party software is definitively needed to get a real value out of ADF scanning. Color Scanning: While B/W scans are fast, color scanning speed is very poor to me. Scanning stack of color pages could take ages. Slow color scanning speed was observed in both USB and network modes. FAX: Number of rings before FAX answers is limited to 4 and I found no way to increase that. No good for SOHO B000B61X1S:quit_working_after_printing_three_pages_successfully:s._stanley B000B61X1S HP Deskjet 460C Mobile Printer: Electronics electronics 1.0 Quit working after printing three pages successfully November 15, 2006 S. Stanley Denver, CO USA Confusing light display (looking in the manual) told me there was a paper jam after printing three pages. There is no jam. There is nothing stuck in the printer. Sending it back now. I do not have time to troubleshoot a new printer that fails to work properly after three pages. (Maybe you won't have time either!) I am very tech savvy and have checked the manual. The device simply is defective. I also noted that the top lid that folds down for packing to travel seems very flimsy. It's hard to imagine it would not break in time, and since it's the paper feeder, you'd be out of luck. I'd recommend something else B0007XGORI:not_for_mac_user:donttellmama_"neodante" B0007XGORI SmartDisk FCD20 FotoChute 20 GB Portable Digital Storage Device: Electronics electronics 1 of 1 2.0 Not for Mac User September 17, 2006 donttellmama "neodante" NYC, NY USA The description indicates that it works on Mac platform. But it does not. And the funny thing is the instruction. It says "if it does not work, try different computer." Very helpful, isn't it? So I had to use my PC and set up a network w/ Mac and trasnfer. Too much trouble if you have a Mac. However, it's easy to use. Hook up and click, click. that's it. B00093DA2I:important_read_this_reveiw!!!:jorge_castaneda B00093DA2I Skullcandy SCS-SC Skullcrusher Subwoofer Stereo Headphones (Green): Electronics electronics 0 of 1 1.0 IMPORTANT READ THIS REVEIW!!! September 16, 2006 Jorge Castaneda Anaheim, CA USA These are some great headphones, BUY THEM FROM SOMEWHERE ELSE! I chose to buy them here because of the lower price, big mistake, what I recieved wasen't the item picutered. I don't know if there an older version or some knock-offs, the sound is ok... but there very cheaply made and theres something wrong with the hinges they don't fold properly. I have an average size head and even fully extended to put them on you have to warp the headband to the point that it looks like its about to break. Returned them and spent the extra 20 bucks to buy them from the actual site B00093DA2I:dead_in_4_months!!!:mr._ownage B00093DA2I Skullcandy SCS-SC Skullcrusher Subwoofer Stereo Headphones (Green): Electronics electronics 0 of 1 2.0 Dead in 4 Months!!! April 14, 2006 Mr. Ownage Kingston, On Canada Worked well when it was working...massive bass response, comfortable cushioning for big ears and funky styling. Only complaint is the cumbersome battery case and cheap feeling plastic construction. However, none of this mattered when it just stopped working 4 months after purchase. Gave absolutely no signs before hand, just working one day, completely dead the next. There are other reviewers here that shared my same fate, so if you want to gamble with these, go ahead, but know that the risk is a pair of dead headphones. B0002VMDIY:terrible_-_i_am_returning_it_:michael_w._yacenda B0002VMDIY Panasonic KX-TG6500B 5.8 GHz DSS Expandable 2-Line Cordless Phone (Black): Electronics electronics 12 of 16 1.0 Terrible - i am returning it November 3, 2005 Michael W. Yacenda Stamford CT Low volume ... people can not hear me at the other end. I therefore have to return it. I liked my Siemens 8825 much much better. Other complaints: 1. No central office voice mail indicator 2. All handsets display the same missed call messages; so the same missed call has to be handled 4 times. A very stupid design. 3. Large heavy handset 4. This is not a phone system. It is a collection of phones. B00004Z5H3:not_so_good: B00004Z5H3 Belkin A3L791-14-BLU-S RJ45M/RJ45M 10/100BT Cat5e Snagless Patch Cable (14 FT, Blue): Electronics electronics 3 of 14 2.0 Not so good February 11, 2003 One of the two ends was broken B0001N44TO:the_latest_version_fails_to_meet_expectations:willy_loo_"freiwill01" B0001N44TO Case Logic DVB-40 48-Disc DVD Wallet: Electronics electronics 3 of 3 1.0 The latest version fails to meet expectations January 19, 2006 Willy Loo "freiwill01" Greenville, SC This version released late 2005 is obviously a cost-cutting result. This release drops the zipper which is essential when travelling. Also the price have doubled compared to the previous style. B0006BKH3S:nifty_device_but_display_tough_to_read_in_daylight:chaz_cone B0006BKH3S Monster A-IP-FM-CH-PS Wireless FM Transmitter: Electronics electronics 0 of 1 1.0 Nifty device but display tough to read in daylight November 2, 2006 Chaz Cone Atlanta, GA USA This is my second one of these (I pinched off the cable on my first one with a storage console door and had to get another!) The display has two settings: very dim and off. THe one I had before was quite bright so they must have changed something. That said, it works perfectly. You shouldn't be looking at the display while driving anyway B0000DK662:this_is_a_pile_of_junk.:w._shivers B0000DK662 Hewlett Packard 49G+ Graphing Calculator: Electronics electronics 1 of 1 1.0 This is a pile of junk. September 23, 2006 W. Shivers A $150 calculator that I am going to trash. I had the same problem with the keyboard (terrible response); I struggled with it for about a year and then called HP. My warranty was out, so Hp suggested I install an update, which I did. Now the keys are firing off 3 or 4 digits with one press of the button. This is ridiculous. B0000DK662:not_impressed:hydroman B0000DK662 Hewlett Packard 49G+ Graphing Calculator: Electronics electronics 6 of 6 1.0 Not impressed May 24, 2006 hydroman Blacksburg,VA I am an RPN devotee and have owned two other HPs going back to the original 11C. But this calculator is horribly unreliable because it seems to ignore key entries occasionally. (Although you hear and feel the click, nothing happens) Also, the keys themselves may "bust loose" and start to wobble even after little use. This is my third replacement in the last two years. Be sure and save your receipt because quality control is absent on this one. B00001P4XA:pay_a_little_more_and_get_something_better:edward_b_greene B00001P4XA Koss "The Plug" Portable Headphones: Electronics electronics 2.0 Pay a little more and get something better November 12, 2006 Edward B Greene Ponte Vedra Beach, FL This was my first set of in-ear headphones and I bought them because they are cheap. Well, you get what you pay for. Being disappointed with the fit of the Koss phones, I bought the slightly more expensive JVC HA-FX55V. At least for me, a much better fit, which means more comfort and better sound. And I am still shopping. The array of offerings is daunting: JVC and JPlug at about $20 all the way up to Shure's top of the line at $500. So shop around, but forget about the Koss B000CO77TQ:who_really_knows_until_it's_too_late...:oyo B000CO77TQ 4-Year Service Plan for Televisions $1,500 to $1,999.99: Electronics electronics 2 of 4 1.0 Who really knows until it's too late... September 6, 2006 Oyo Atlanta, GA This warranty is purchased through Amazon, but it is actually distributed by another company. When you search for TV warranties on Amazon, you will see 4 warranties that appear to be the same, but are different prices. I called the company that sells these warranties and asked what the difference was. They told me that there is no difference between the $119 warranty and the $499 warranty; they cover the exact same thing. The girl I spoke with even asked her manager and he said there is no difference. Warranties are a tricky item to review, because it all looks good until you actually need it. So, on this one, I suppose only time will tell. The one difference between the Amazon warranty and the electronic store warranty is that the Amazon one will not replace the first bulb in the TV; but I figure if I need to replace the bulb within those four years I will still be saving $100 because I can get a new bulb for around $200. B0001DYUJ8:quality_control_problems:markbrent_"markbrent" B0001DYUJ8 SimpleTech SimpleDrive 250 GB External USB 2.0 Hard Drive: Electronics electronics 3 of 3 1.0 Quality control problems October 26, 2006 markbrent "markbrent" Texas Bought this as a back-up for the internal hard drive of the laptop. My experience was sadly similar to many others on this site. Worked fine for two backups, then the drive stopped being recognized by my own or any other computer. Little red "power" light is on, little disc whirls around, but no blue "data transmit" light appears anymore. These are clearly a dismally unreliable and poorly made product- just imagine the disaster if this occurred when you were trying to restore data to a corrupted hard drive on your primary machine. A free replacement would not be much of a compensation. Avoid!! B0001CFSXG:wait....better_deal:xboxplayer_"xboxplayer" B0001CFSXG Lexar JumpGear MPC064-231 MP3 Player with 64 MB JumpDrive Sport: Electronics electronics 5 of 12 1.0 WAIT....BETTER DEAL September 4, 2004 xboxplayer "xboxplayer" USA Buy the "empty" player for 37, then get a 128 mb card....its only 5 bucks mopre total..... B0007KX4TC:ipod_-_great_toy_-_horrible_customer_service/support:once_and_done_"once_and_done" B0007KX4TC Apple 30 GB iPod Photo M9829LL/A�(4th Generation): Electronics electronics 6 of 8 2.0 iPod - Great toy - Horrible customer service/support February 14, 2006 Once and Done "Once and Done" USA The iPod is cool but ours ... as we've found has happened to many other owners ... went on the fritz and our nightmare began. Apple's customer service is the worst CS that we've ever experienced regardless of the product or service supported. I could write for days about the awful experience but I've wasted so much time with them already ... I can't bear to waste more. The most notable point is that the iPod CS folks repeatedly stated that iPods are more or less disposable, commodity items and "breakdowns" were common. Wow!! .. $400 Bucks of throw away!?!?!? We still haven't recieved the return box for replacement/repair after several days even though it was promised in 24-48 hours. We also own an MP3 player that we refer to as a "Dell-Pod" from Dell Computer and have had to use their customer service as well. Dell's CS support was awesome. Based on our experience with Apple/iPod CS support ... this is the first and LAST Apple product that will be owned in our household B0007KI6OU:if_you_need_this_in_a_hurry_don't_buy_from_amazon!:novelty_1_"love_my_kids!" B0007KI6OU Brother TN 350 Black Toner Cartridge (HL-2040 and HL-2070N Printers): Electronics electronics 1.0 If you need this in a hurry don't buy from Amazon! November 24, 2006 Novelty_1 "Love my kids!" SoCal I purchased this item on Nov. 17, 2006. Amazon claimed it was in stock. I then upgraded from free shipping to Standard, which promises a 3-5 days delivery time. Amazon now informs me that it will arrived on Nov. 29th! This is the second recent order with a longer than anticipated/promised delivery time. I don't know if Amazon is going down hill or what, but it's discouraging. Next time, I'll just buy the item locally and pay a few extra dollars. And by the way, don't even try to call Amazon Customer Service at 800-201-7575. They can't do anything to resolve a problem and barely speak or understand English. Another great American company moving towards metiocracy; what a shame B000IF45QM:microphone_volume_too_low_and_can't_be_set:r._stockton B000IF45QM Kensington Vo300 USB Internet Speakerphone for use with Skype software K33378US: Electronics electronics 1 of 1 2.0 Microphone volume too low and can't be set October 21, 2006 R. Stockton Michigan, USA Short answer: The microphone volume on this is set too low relative to the speaker volume, and cannot be adjusted independently--either through the device or at the O/S level. I spoke with tech support, and they said this was to keep the echo-cancellation software from having issues. So as a speakerphone, this device is useless. I'd have given it one star, but the rest of the device is actually very well designed, easy to setup, and so on. B00006JPU2:its_just_a_standard_component_cable..:william_the_fighter.. B00006JPU2 Monster Cable 3-Foot Component Video (BSV1CV-1M): Electronics electronics 14 of 20 1.0 its just a standard component cable.. November 12, 2004 william the fighter.. NC USA compared this cable to a philips performance component cable and i am not impressed it was the exact same in picture quality. all your paying for is the name.. why spend 50$ when you can spend 20$ on the philps and get the same thing? B00009MVHF:lcd_display_broke_after_2_months:n._nacey B00009MVHF Panasonic KX-TS3282B 2-Line Expandable Speakerphone with Data Port (Black): Electronics electronics 1.0 LCD display broke after 2 months October 30, 2006 N. Nacey I was fairly satisfied with this phone until I had to re-arrange my office and move my phone. Once I moved it and then tried to reconnect it, I no longer had LCD functionality or speakerphone functionality. I looked on their website and this is what it said on their FAQ: Problem: No caller ID information received Does the LCD screen on the handset show anything? No Your telephone is defective and needs to be sent in for service Since it is on their FAQ I would assume this is a common problem. In trying to exchange my phone they were insistent that I send my phone in first so they could look at it and then refurbish it / exchange it. Since I use this phone for my home office this was problematic for me. I would not recommend this product. I personally will not by Panasonic again due to the quality of customer support (or lack thereof) that I received B000117DF8:poor_support:l._morgan_"programming_instructor" B000117DF8 Lexar Media 512 MB JumpDrive Sport Portable USB 2.0 Drive (PC/Mac): Electronics electronics 3 of 4 1.0 Poor support December 29, 2005 L. Morgan "Programming Instructor" I didn't have the same experience as the "Great support from Lexar" review below. The rubber caps on the Sport Jumpdrives will quickly split open and you will probably loose your jumpdrive when it fall off your keychain. Unlike the person below, Lexar would not send me a free replacement. They said that I could go to their web site an purchase another rubber cap. Poor support for a poor product B00009UHYL:not_worth_the_money:time_traveler B00009UHYL TERK BMS-58 5 In/8 Out Integrated Multiswitch (TERK BMS58): Electronics electronics 0 of 1 1.0 NOT WORTH THE MONEY August 31, 2006 Time Traveler USA Everyone knows TERK MAKES JUNK, and this multiswitch is no exception. I needed a multiswitch quick, went to Best Buy and paid, get this, $154.00 for this Terk ms!! Yeah, I know, but I needed it asap. ONE WEEK after installation, one of the satellite inputs crapped out, dead. And I do have surge protection on the lines. Also, the unit runs very hot. I've had three other Terk products do the same thing. Avoid Terk at all costs and go with Monster or even Radio Shack in a pinch. Will never buy a Terk product again. Ever B00006B7DB:defective_bluetooth:john_olson_"golfer" B00006B7DB D-Link DBT-120 Bluetooth USB Adapter, PC/Mac: Electronics electronics 2.0 DEFECTIVE BLUETOOTH November 6, 2006 John Olson "golfer" marshalltown, ia The item I bought had to be returned due to the fact it did not wor B00004SY4H:did_i_get_a_bad_sample?_totally_disappointed!:eric_j._anderson B00004SY4H Sennheiser HD600 Traditional Over-Ear Open Dynamic Hi-Fi Professional Stereo Headphones (Black): Electronics electronics 18 of 30 1.0 Did I get a bad sample? Totally disappointed! February 8, 2005 Eric J. Anderson Ankeny, Iowa Yes, I burned them in for at least 25 hours. They sounded muddy. Smooth as caramel, but veiled. The bass was heavy and indistinct. The high frequencies were not clean, and not abundant. Having listened to Stax headphones for years and years, I know I got used to a superclean, almost clinical sound. But still I cannot believe how completely different the HD600s were. I borrowed these from a friend, who bought them new and had hardly used them. Frankly, I get more pleasure listening with my Sony MDR-W20G sports headphones that I bought for less than $10. I am at a loss to understand the glowing reviews. I would love to hear a headphone that sounds as wonderful as people are describing. But the one I heard did not. Not even after break-in. Never would I consider one of these phones without auditioning them. Perhaps I truly heard a rare, defective unit. But if so, both drivers were defective, because they sounded the same. B0007Y6AF8:a_disgrace_to_sony,_here's_why_in_point_form:p._an_duong B0007Y6AF8 Sony ICD-MX20 Memory Stick Pro Duo Digital Voice Recorder: Electronics electronics 9 of 18 1.0 A disgrace to sony, here's why in point form March 18, 2006 P. An Duong -small button size -recording time is crap when used with the best batteries -hold button, many bugs with -bugs; files often end corrupt in various ways, meaning you get f***ed over -software is crap, also it cant convert to mp3, o and did i mention you have to convert in general not true for all ic recorders, which others record directly in mp3 for example -mic is without noice reduction -device is the most fragile ic recorder ever -a consumer grade product, not a professional grade product Go with the following: ds-2200 made by olympus, it smokes this ic recorder by a mile, and its tough and goes for about the same price perhaps cheaper. B000167V50:will_not_charge_micro_zen:ron_a._wodehouse_"roadmouse" B000167V50 Zip-Linq 12V DC Auto to 5V USB Adapter (ZIPPWR-DC): Electronics electronics 1 of 1 1.0 Will not charge Micro Zen June 21, 2006 Ron A. Wodehouse "Roadmouse" Southern Oregon Will not charge the Micro Zen, but will power the unit. Will toss it in the car for those times when the battery is dead and I just need my music. B000167V50:another_sad_confirmation..no_go_for_shuffle:b._b._helsabeck B000167V50 Zip-Linq 12V DC Auto to 5V USB Adapter (ZIPPWR-DC): Electronics electronics 2 of 3 1.0 Another sad confirmation..no go for Shuffle December 30, 2005 B. B. Helsabeck Pompano Beach, FL USA It is rather ironic that this device was so cheap that despite the fact that IT WILL NOT CHARGE AN IPOD SHUFFLE...it cost more to ship it back than I would get in a refund. Bought from an Amazon associated store (Tiger Direct) for $4.99. I also bought the matching car charger for $3.99. NEITHER WORKS WITH THE IPOD SHUFFLE. Oh well. Belkin makes a iPod dock connector to USB adapter that allows you to use your existing FW based stuff for CHARGING ONLY...., I think that is the ticket for charging the Shuffle on the road B000167V50:nice_idea,_but...:f._paul B000167V50 Zip-Linq 12V DC Auto to 5V USB Adapter (ZIPPWR-DC): Electronics electronics 7 of 8 2.0 Nice idea, but... October 4, 2005 F. Paul OH, USA ...while this device does power your USB cable it seems to fail charging my Blackberry or my iPod. Maybe the 400 mA is not enough for that. I would not suggest to buy this item for these devices. For the iPod you better get the USB charger from the Apple store for 25$ that even comes with a standard iPod cable B0007OCY2G:decent_but_there_has_to_be_a_better_solution_somewhere_out_there!:jdiddy B0007OCY2G DLO TransPod All-in-One Car Solution for iPod Black: Electronics electronics 5 of 6 2.0 Decent but there has to be a better solution somewhere out there! August 27, 2005 JDiddy Columbia, MD I recently received an iPOD Photo and after loading in tons of CD's I said . . . hey why not buy an all in 1 adapter for my car. My transpod arrived but I had difficulty inserting the adapter into my car's charger. After working that out and using it everyday for a week, it stopped working. I realized that the fuse had blown. It's small and relatively compact unlike the Griffin RoadTrip, but it's a whole lot of drama for the price. With regard to the quality of the sound through my vehicle's audio system, I am extremely disappointed. What sounds like a million dollars through headphones does not translate to what you hear through fm radio frequencies. I have adjusted the iPOD's equalizer and played around with some options inside my car, but I am extremely disappointed. If someone has a better alternative . . . GOD BLESS YOU but don't waste your money on this product B0006J59YW:broken:r._jensen B0006J59YW Iogear Wireless Bluetooth Mini Mouse: Electronics electronics 0 of 2 1.0 Broken September 21, 2006 R. Jensen My first mouse broke after only a few uses. When I sent it back for repairs, they sent back a refurbished mouse that did not work at all. Avoid buying this mouse at all costs B0006J59YW:100_uses_for_a_dead_mouse:arcane_questions_"mousetapha" B0006J59YW Iogear Wireless Bluetooth Mini Mouse: Electronics electronics 2 of 2 2.0 100 uses for a dead mouse August 8, 2006 Arcane Questions "Mousetapha" Seattle When it works, this mouse is simply wonderful. Small, accurate, easy to recharge, easy to carry. Under those conditions, it's probably my favorite mouse. I've found that it's equally good for both Mac and Windows. One complaint is that when it's tethered to the USB port for recharging, it works nominally, but becomes very slow and awkward. It's not at all the same behavior as seen when it's completely free to move. My first incarnation of mouse lived a long life of about 10 months. My second incarnation of mouse, however, just died at the tender age of 4 months. I've attempted mouse-to-mouse resuscitation, but to no avail, having found that Iogear technical support exists by name only. I have sent multiple requests for help, and have received not a single answer. Both mice died identical deaths. Suddenly it stops being able to hold a charge, and freezes after about 5 minutes of use. Even when tethered to the USB port for a recharge it freezes. I'm sad that a technologically good product should have such terrible quality assurance in its manufacture. And such terrible customer support in dealing with its lack of QA B00011PYC2:tell_apple_to_go_#$&%_themselves:kilgore_trout_"worldwidewebb01" B00011PYC2 AppleCare M9404LL/A Protection Plan for iPod: Electronics electronics 1 of 2 1.0 Tell Apple to go #$&% themselves October 7, 2006 Kilgore Trout "worldwidewebb01" Columbia, MO What a waste of money. For $300 you shouldn't HAVE to buy a protection plan for the 2nd year of a products life; unfortunately the poor quality of iPods makes it a necessity. BUT, the protection plan is riddled with clauses that exclude any number of reasonable issues. I've bought Apple for the last 15 years, but never again will I send them my money B00011PYC2:less_expensive_policy_available_for_29.95_from_crutchfield.com:peter_g._gammon_"peteg" B00011PYC2 AppleCare M9404LL/A Protection Plan for iPod: Electronics electronics 112 of 119 2.0 Less expensive policy available for 29.95 from Crutchfield.com December 21, 2005 Peter G. Gammon "PeteG" Chatt., TN Although this policy is thru Apple, it is 2x the price of similar policies available from other companies that also have very good reputations. One is Crutchfield.com which has a 2 yr. plan for $29.99 which starts *after* the standard Apple 1 yr labor coverage (for a TOTAL OF 3 YEARS). Apple extended warranty is a total of 2 years for $59.99, rather than a total of 3 years for $29.99 thru Crutchfield B00000JCT8:model_#_53725:p._emmett_"traveler" B00000JCT8 Motorola TalkAbout Headset with Boom Microphone for All Series: Electronics electronics 2 of 3 1.0 MODEL # 53725 November 30, 2004 P. Emmett "Traveler" After receiving this boon mic, I found it did not work consitently. Losing contact with lost words, and the mic had to be held to the lips, therefore it was not truly hands free. I require a mic that I do not have to touch to work and can be used with VO B0002UE9WI:just_average:jason_sartain B0002UE9WI Creative Labs WebCam Live!: Electronics electronics 0 of 1 2.0 Just Average November 9, 2006 Jason Sartain I received the camera and was not happy when I found a cheap mic that was attached to the cord of an ear peace instead of the the superior sound mic advertised in the ad. I called Amazon, they had no appolgies and said the most they could do was refund my money. On another note the picture quality was ok but froze at least 2 times or better per use, as for sound I had to put the mic up to my mouth before the person on the other end could hear me. Not very happ B000AM6QHO:failure_to_please:daniel_a._nichols B000AM6QHO Logitech Z-5450 Digital 5.1 Speaker System: Electronics electronics 1 of 1 2.0 Failure to please November 15, 2006 Daniel A. Nichols USA The z-5450 has good points, reasonable cost, ease of use and ease of setup. It has a major fault in a buzzing noise made when the unit is turned on. Give this item a pass, wait for the next generation and a guarantee that this problem has been corrected B0009RVG7U:track_problems_-_buy_the_cyber_home:l._d._dietsch_"digidog" B0009RVG7U Coby DVD237 Progressive Scan DVD Player: Electronics electronics 2.0 Track problems - buy the cyber home November 3, 2006 L. D. Dietsch "Digidog" Chicago, Illinois This thing looks great - but it still has tracking problems as these cheap units tend to. Do yourself a favor and buy the cyber home - it's the only cheaper unit that seems to have some quality to it B0009RVG7U:not_what_i_thought_i_was_purchasing:s._das B0009RVG7U Coby DVD237 Progressive Scan DVD Player: Electronics electronics 1.0 Not What I Thought I Was Purchasing October 4, 2006 S. Das I searched Amazon.com for a multi-region DVD player so I could view DVDs that I have purchased overseas. This DVD player came up. There are no instructions within the packaging that state how to watch Non-region 1 DVDs. I called the manufacturer and they told me how to "rigg" it to play region 2 DVDs. Also, the remote control did not work from the very beginning and the manufacturer said I would need to pay money to replace it. They also let me know that the DVD player will not work without the remote control (not compatible with universal remotes). This is not a good product B000085BD8:antenna_fell_off_several_times:roy_littwin_"royale6" B000085BD8 Linksys WMP54G Wireless-G PCI Adapter: Electronics electronics 0 of 1 2.0 Antenna fell off several times May 22, 2006 Roy Littwin "royale6" Sonoma County, USA Maybe 2 1/2 stars. Software and wireless setup for this card went fine, even great, and have continued to work for over 1 1/2 years now but . . . Here's the rub. Seems the housing on the card that receives the threads of the antenna was not properly attached to the board. The antenna would not work properly - 0-50% signal strength from the Access Point in the next room when it wasn't falling off the back of my machine! Futzed with the thing getting half-*** performance with it for toooo long until . . . Had to remove board from computer, use plier to remove antenna from the recept and VERRY carefully place the card in a vice and use vice-grip/clamp tool to forcefully slide the 1/2" housing in place onto the board. Did this once and it didn't seat far enough (antenna fell off) and a couple weeks later had to repeat the process. Apparently it needed to be pressed on even further and it actually snapped (securely ?) the 2nd time after using more force that you might imagine on such a delicate device. It has worked as advertised since then (about a year now). There ARE other reviewers who have suffered from "antenna drops off" too. Be warned. When one pays extra "for quality" they should expect better than this. It's time again to add to my network and will try a different board (for half the price). B0002UHUTM:multiple_problems:bekra B0002UHUTM Kensington Auto Charger for iPod and iPod Mini: Electronics electronics 2 of 2 1.0 multiple problems September 4, 2005 bekra Houston, TX This charger is flimsy. 1) As other mention, the "retractable" unit quickly became tangled, and without significant attention every single time (not feasible while driving), doesn't retract. 2) The plastic covering the wire at the base of the jack pulled loose, exposing the wires. 3) After a few months of very gentle use, the white plastic cover of the jack cracked and fell off. As a result, I'm back in the market for a charger, just months after buying this one B0000996B9:these_tapes_didn't_worked_for_me_and_ruin_my_camera:meyer B0000996B9 JVC MDV60ME10P Mini DV Tape (10 Pack): Electronics electronics 3 of 3 1.0 these tapes didn't worked for me and ruin my camera June 7, 2006 meyer i tried them on a sony dcr-trv33, and they clogged my heads in about 10min. of recording. the camera has worked fine for about two years now, and it's the first time i use other than sony. this camera went to the sony service center for a full cleaning/service about two months ago, and worked perfectly fine until i tried these tapes. i read somewhere that the tapes have a surface compound that lubricates the head, and that it is incompatible between brands, clogging the tape head when the different compounds mix in it. i didn't believe it then, and stil not. according to that, maybe they are fine and you only have to stick with the brand. and i'll do, but another one B0000996B9:low_cost_equals_low_quality:dadd75_"dadd75" B0000996B9 JVC MDV60ME10P Mini DV Tape (10 Pack): Electronics electronics 5 of 9 1.0 Low Cost Equals Low Quality December 13, 2004 dadd75 "dadd75" Traverse City, MI After purchasing my Canon ZR-90 this summer, and using the four pack of TDK tapes ABC Warehouse gave me with the camcorder, I went online and found these tapes and bought two ten packs due to the great price and the JVC name. They have only done one thing, clogged up my video head on the camcorder. I videotape my sons basketball games for their coaches and it was only after the first couple of games and bad recordings that I got onto Canon's website and realized my video head was clogged. I purchased a head cleaner and the first tape after the cleaning taped great, but the next tape clogged my head up, so to use these tapes, I highly recommend you clean your video head after EACH use, which is not good for your video head on your camcorder B0009H9PZU:don't_waste_your_money:a._kellerman B0009H9PZU iRiver H10 20 GB MP3 Player/Recorder (Blue): Electronics electronics 0 of 1 1.0 Don't waste your money November 17, 2006 A. Kellerman It worked okay for about a month and then froze up one day when I was running. I popped out the battery so it would turn off and when I turned it back on it had deleted all of the songs. B0009H9PZU:iriver:j._de_cou B0009H9PZU iRiver H10 20 GB MP3 Player/Recorder (Blue): Electronics electronics 2 of 4 1.0 iRiver November 10, 2006 J. De Cou Alpine, WY Don't waste your money. What iRiver doesn't tell their customers is that once the battery goes dead, the system is useless. I will never buy one of their products again and I'm doing my best to inform everyone out there that they'll be tossing their money in the trash by purchasing any iRiver products. My system cost me $340.00 and it is now as useless as the customer service department at iRive B000ANQXKS:cheap_&_buggy:capo B000ANQXKS M-Audio MicroTrack 24/96 Professional 2-Channel Mobile Digital Recorder: Electronics electronics 1.0 Cheap & Buggy November 4, 2006 Capo Memphis, TN The features, size, and design of this unit are what drew me in. But after just a few uses, I quickly came to realize that this was nothing more than cheap electronics wrapped up in an attractive, but completely unusable package. To start with, the unit is small - the smallest of its kind. But the bulky external mic makes the overall footprint just as large as some of the palmtop units that this was made to replace. Second, the unit has a built-in rechargeable battery that cannot be removed. So, when it crashes, which it does frequently, there is no way to "cold-boot" the unit by removing the battery. This is also a problem because it reduces the unit's true portability because you can easily get stuck with no remaining battery life and no AC power to recharge it. Then, what you have is a paperweight. Oh, and by the way, when you do have it plugged in to charge, the backlight is always on (even if the power is off). So forget about using this unit as a plugged in desktop recorder either. But, all of this aside, the firmware simply does not work. It locks up incessantly and, with no way to reboot, you literally have to unplug it, wait for it to auto-power-off, and hope that you can start the machine up again. And, to add insult to injury, the body is a cheap Chinese-made piece of plastic with absolutely no meat on its bones. Overall, don't be taken in by the low price. Paying any amount of money is too much for a unit that doesn't work B000ANQXKS:look_for_something_else:craig_gonter B000ANQXKS M-Audio MicroTrack 24/96 Professional 2-Channel Mobile Digital Recorder: Electronics electronics 0 of 1 1.0 Look for something else September 7, 2006 Craig Gonter New England The microtrack will not hold a charge by itself or even operate very long when hooked up to an external usb battery pack. It just drains away under charge. The concept for this a pretty good , but the implementation woefully lacking almost to the point where I may not reliably recommend to others. B0000C0XS0:junk_at_the_best!:linuxrules B0000C0XS0 Netgear WGT624 Super G 108 Mbps Wireless Router: Electronics electronics 0 of 5 1.0 Junk at the best! October 21, 2006 LinuxRules NY USA I bought this product twice. Now I have two of them and none works. This router is not able to get itself an IP from the cable modem let alone sending out a wireless signal. First time i thought the router was defective and I ordered a new one hoping to return the first one, received the second one before i could return the first one, and the new one was no better than the other anyways. Avoid this product at all costs, or else B0000C0XS0:waste_of_money:bag_man B0000C0XS0 Netgear WGT624 Super G 108 Mbps Wireless Router: Electronics electronics 2 of 5 2.0 waste of money October 15, 2006 Bag man MA Run WinXP, sp2 with everything updated. I've had this router for 6 months. It is the WGT624v3, firmware updated. I never realized how bad the wireless was on this router until this week - dropped connetion 3 times in 15 minutes today alone, while reading the Amazon.com reviews. My desktop PC's graphics card went down this past week and I had to RMA it... so about 10 days to send out and get a return. I have always used a wired connection for my home desktops. The wireless access was a 'it's there if I need it' novelty. I started brining my IBM R51 laptop home from work so I could get online, VPN into work, etc.. This is the first time I have used my wireless consistently for more than a hour or so. The last 10 days have been rediculous to say the least. I logged on my first day and lost connection 5-6 times browsing MSN and Yahoo. At first I thought it might be channel interference since 2 other routers in range were using channel 11. I went ahead and disabled the 108G feature since I had never come close to hitting that speed anyways, and changed the channel.. I used the IBM ThinkVantage software to scan my area for other wireless routers and picked a channel not being used. I changed channels and I verified my signal strength before and after I changed, 95% signal strength. The connection is still getting dropped randomly. Changed channel to another channel not being used in my area and verified signal strength. No difference. Scanned the networks again using the IBM ThinkVantage software.. theres my router, 97% signal strength @ 54Mbs. unplugged router, modem, repaired my WINSOCKS with WinsockXP, rebooted PC. I turned on my modem first until is was ready to go, then the router until it was ready, and then my PC (as per the netgear website)and yea, no difference in the connections stability. The conection is still getting dropped randomly. I might expect this from a router thats on all the time and is getting tired from constantly being hammered. But I hardly ever used the wireless access (yes, wireless radio has been OFF). After reading these reviews, I am pretty sure the problem wont go away. The part that upsets me the most, I payed premium money for a product that I thought was premium. If this had been priced (at the time) at bargain bin prices, I wouldn't of cared.. but it wasn't and i do. The 'you get what you pay for' saying does not hold true for this product. Buyer Beware B000F2M16E:pos_zen_micro_creative_support_now_sucks:ashley_j._gibbon B000F2M16E Creative Zen Micro Photo 4 GB MP3 Player Black: Electronics electronics 1 of 1 1.0 POS ZEN Micro Creative support now sucks November 20, 2006 Ashley J. Gibbon Greensboro, MD United States Caution. Creative used to have great support. Now, 60 days of phone support. I have a 9 month old ZEN Micro. It will not start, if I plug it in, it appears to charge but never completes, If I turn it on while plugged in i get to the Creative boot up screen, it goes blank and never completes the boot up. Useless junk now. I cnnot find my original receipt, (who can). I cannot be returned, and I cannot get support on it. I will be returning my perfectly good running Vision M with receipt, as i cannot risk this device breaking down too. I have always hated Apple, I am a PC guy, but an Ipod will be my next MP3 device B00004Z6HU:completely_useless_for_me:the_stampfers B00004Z6HU Belkin A7J304-250 10/100BT 24 Awg PVC Cat5 250FT Bulk Cable (Stranded): Electronics electronics 1 of 75 2.0 Completely Useless For Me July 21, 2001 The Stampfers Brookline, MA USA I wanted to connect a computer to a router, and the computer was going to be pretty far away from the router. So I figured I needed a long cord, and decided to get this one, which is supposed to be cat 5 stranded patch (which was what I needed.) Well, it's long. That's the only good thing about this cord. But the bad thing is so bad that the cord is useless. There is nothing on the ends! It's just a giant wire! There aren't any connectors on the ends that I can use to plug the cord into my computer, or the router. So I have a cord, but no connectors. It's completely useless, unless I buy the connectors separately, and attach them myself. Do I know how to do that? Do I want to do that? No. So I'm returning this. Maybe, if all you need is the cord (it's grey, by the way), and not the connectors, you might be able to use this. Otherwise, it's completely useless. If you can't find any cords this long that have connectors, maybe you should consider trying a shorter cord. .. B000067SVF:useless_-_does_not_retract:james_murphy B000067SVF Targus PA205U Retractable Phone Cord (20 Feet): Electronics electronics 4 of 4 1.0 Useless - does not retract April 6, 2004 James Murphy Pelham, MA USA I agree with the previous review. This phone cord worked twice. Now, it only retracts about half way, and keeps getting worse. I'm returning it for a refund. Don't waste your time with this B0002ZAEY0:warning_about_the_ipod:keith_daudt B0002ZAEY0 Apple 60 GB iPod Photo (4th Generation): Electronics electronics 6 of 7 1.0 Warning about the Ipod March 11, 2006 Keith Daudt Seattle, WA USA I have really enjoyed my I pod until I started to get errors in January 2006. I started to get an error that state that Itunes can't read to or write form the Disk meaning the Ipod itself. That means I cannot add music to or take music off of the Iopd. This was very upsetting to me as I have had this item for less than a year. I Finlay called tech support at Apple. They asked for the serial# for my Ipod. They told me it was out of warranty, that the warranty had expired in December of 2005 and there was NOTHING I could do, literally. I checked my purchase and found out that I had purchased this on April 7, 2005. I was so angry that they would tell me that it was out of warranty when it clearly was not. So, this is a warning to all Ipod owners of this potential problem B00005BIDT:waste_of_money!!:p._iyer_"paddy_i" B00005BIDT Jensen JTH940 Telephone Headset: Electronics electronics 0 of 4 1.0 Waste of Money!! July 19, 2002 P. Iyer "paddy_i" Sunnyvale, CA DOnt buy and I had tough time in adjusting the ear piece as it falls out every time you hang it over the ear. B000FCTAP4:do_your_research:thomas_kenny B000FCTAP4 D-Link VTA-VR Broadband Telephone Adapter with Vonage: Electronics electronics 1 of 4 2.0 Do your research October 2, 2006 Thomas Kenny We signed up with Vonage a couple of months ago. Setting up the D-Link adapter was a snap and I had a dial tone quickly. After several days, my line was ported and I thought everthing was ok. That was until I tried calling my dad several times and he just hung up on me. I heard his side clearly, but all he heard was static. Others complained about our connection too. Vonage support helped me change a few things on my account to take care of those problems. However, I still have not been able to use my computer modem to fax. I have tried multiple tips to get it to work, and still no luck. Calling Vonage's tech support is horrible. Long wait to talk with someone who doesn't speak good English nor has a clue about what to do with your problems. The worst part is that Vonage makes you sign up for a contract. If it wasn't for that, people would flee in droves. I think it will get better, but it has a way to g B0009M96K4:these_are_horrible.....:j._nosek B0009M96K4 Memorex DVD+R 8.5GB Double Layer 2.4x 15 Pack Spindle: Electronics electronics 6 of 9 1.0 These are horrible..... March 25, 2006 J. Nosek Norridge, IL United States These were expensive..... These are a P. O. S. If you dont know what POS is google it, because I cant say it on amazon. Basically, the layer has an OFFSET. The layers do not match in position. This will give you CRC errors if you have a file which is directly on a layer break, or at the end of the disk. DO NOT BUY, I REPEAT, DO NOT BUY. IM NOT SURE WHY MEMOREX HASNT RECALLED THEIR CRUMMY PRODUCT B0009M96K4:was_not_recognizeable:paul_ferguson_"pferg" B0009M96K4 Memorex DVD+R 8.5GB Double Layer 2.4x 15 Pack Spindle: Electronics electronics 2 of 2 1.0 Was not recognizeable March 23, 2006 Paul Ferguson "pferg" these were not recognizable by my Sony Dual layer burner... maybe with more attempts and practice they will be B00009KAPX:one-third_the_features_for_three-quarters_of_the_price:d._powell B00009KAPX Belkin Auto Kit for iPod: Electronics electronics 12 of 26 1.0 One-third the features for three-quarters of the price December 13, 2005 D. Powell Pennsylvania, USA My wife bought this as a gift for me, thinking that it included an FM tuner. For ten dollars more, she could have purchased a product that does everything this one does (it is essentially a $35 car charger) plus the tuner. If you want to use this product to actually listen to your iPod in your car, you'll need to purchase yet another device: either the cassette adapter (old school! part F8V366-APL) or the FM transmitter (part F8V367-APL). Either one connects through a jack in the side of this unit. The FM transmitter is another $40 (you're now $20-30 over what the Monster iCarPlay, which does all of the above, would have cost you)...and, surprise! The transmitter takes AAA batteries! There's no way to power the transmitter through the Auto Kit. To power the FM transmitter without batteries, you must purchase yet a third accessory, the "Mobile Power Cord for iPod" (F8V7067-APL, just $15!)...except your car's power plug is occupied by the Auto Kit, so you'll need to buy a twin-plug adapter for that. Are we having fun yet? I'm not, and am wishing I'd skipped all this nonsense and just purchased the iCarPlay in the first place B00001RME1:just_did_not_work!: B00001RME1 Invent It! Iron-On Transfers: Electronics electronics 2 of 3 1.0 Just did not work! June 12, 2001 I am the owner of a home day care and I had all of the kids bring in T-shirts so that we could all create our own unique father's day gifts with these iron-on transfers. When I say that I followed the directions Precisely I am not fooling! I was so concerned about slip ups that I made sure I followed the directions to the letter, but every time I tried to pull off the cooled transfer paper off came half of the design and the rest styed on the paper! Very disappointing B000BK2ERQ:bad_luck_or_low_quality_product??:cristian B000BK2ERQ RCA Lyra RD2317FM 1 GB Digital Audio Player with FM Transmitter: Electronics electronics 2 of 3 2.0 Bad luck or low quality product?? August 9, 2006 Cristian Sierra Vista, AZ USA Very bad start, bad point for Amazon. I wanted to get a good quality device and that is the reason I chose buying from Amazon even it was more expensive than other sites. I just turned on the device and tried to search for broadcasts. It was like all the radios in US were shut down or at least in my region. By mistake I filliped the device and surprise: the device started receiving radio signal. After that everything seemed to be OK but some strange noise in headphones. Cons: failure/malfunctioning while operating the radio. Pros: - great sound (with other than manufacturer provided headphones); - long operating time using rechargeable battery; - excellent expandable via SD cards feature; - I love the flip display capability. I really love that device because of its features and I hope it was only my mischance getting a damaged one. However I requested Amazon the replacement of the device instead of reimbursement. I also already advised some friends to buy that device. As a good point for Amazon, the very fast answer when I requested the replacement of the device. I will come back with updates after I receive the replacement. Hope a good one next time. Thank you Amazon Team. Coming back after receiving the replacement device. First of all it was a very good idea buying Amazon fulfilled products even it was a bit more expensive than other sellers. The replacement came faster than the product. Excellent Amazon Team and very professional. It's a pleasure doing business with you. The device works perfectly. Really a device you must have. More than that, my friends I recommended the mp3 player are very happy with their new acquisition. They were luckier than me. 5 Stars for the product now. B000BB80TQ:wish_i_had_done_more_research:angela_markwalter_"1abm" B000BB80TQ Apple MA072G/A Dock for iPod Nano 1st Generation: Electronics electronics 31 of 33 2.0 Wish I had done more research January 28, 2006 Angela Markwalter "1abm" Dacula, GA USA Yeah, the Nano Dock is useful; however, be aware that it comes with NO cords whatsoever. This means that you have to purchase yet another accessory for it to be of any practical use. BOO Apple! There is absolutely no excuse for following in the footsteps of Microsoft B0001OTBUK:images_heavily_out_of_focus_despite_adjustment_-_returning:j._hammerschmidt B0001OTBUK Labtec WebCam Pro: Electronics electronics 1.0 images heavily out of focus despite adjustment - returning October 7, 2006 J. Hammerschmidt Mountain View, CA Just got this camera in the mail as a birthday present. Installing the software was easy, but unfortunately the camera is essentially broken. It is only (somewhat) in-focus for items about 1 inch away. Adjusting the focus ring doesn't help, so this camera's build seems to be defective. My brother bought the same camera and it doesn't seem to have the same problem. Anyway, returning mine. B0000CEPE8:too_many_problems:wireless-less B0000CEPE8 D-Link DWL-G120 Wireless USB Adapter, 802.11g, 54Mbps: Electronics electronics 1 of 2 1.0 Too many problems August 22, 2006 Wireless-less Philadelphia, Pa United States I had a D-link USB adaptor before which was really good, but was old. I upgraded to a wireless G Linksys USB adaptor, but I was supplied with old goods (a Linksys sales manager confirmed that), so I sent that back. I thought I'd try D-Link again. Bad move. First, I tried to upgrade the drivers. My current version was 1.0.5.0. I downloaded the version 1.12 from D-Link's site. After uninstalling and reinstalling (several times) I still had 1.0.5.0. An hour and a half on the phone with D-Link tech support and I still had 1.0.5.0. Another hour on Google, and I'm not the only one with this issue. Seems to be a version-control issue with D-Link. Then, even more irritating, every time after I use my wired connection and go back to wireless I have to reinstall the drivers and reboot. And re-enter all my security info again. (I believe this has something to do with using a different USB port from the last time, but whatever the reason, it's unacceptable). This adaptor's going back too. Don't know what I'll try next. B00004Z0C7:long_cord_didn't_work:ontheroad B00004Z0C7 Maxell HP20 Headphone Extension Cord with Adapters: Electronics electronics 3 of 4 1.0 Long cord didn't work March 19, 2005 OnTheRoad Denver, CO The long cord simply didn't work. I returned it to Maxell, using the address on the back of the package, and had the product returned to me because the facility has closed. I've spent almost $5 trying to return an $8 product. B0009RKL5S:tdk_branded,_not_made_by_tdk:wannabe_patent_lawyer B0009RKL5S TDK Electronics 4.7GB/16x DVD-R (100-Pack Spindle): Electronics electronics 0 of 1 1.0 TDK Branded, not made by TDK November 12, 2006 wannabe_patent_lawyer These discs are not really TDK - they are low-quality discs branded and priced as TDK. I have a Samsung S182M DVD Burner and it will not recognize these discs at all. It just spins them around and around forever. The one time I got it to recognize one of these, it reported that it was Media ID Daxon0016s. Avoid these. B00004Z6BJ:terrible_network_card_:stefan B00004Z6BJ Netgear FA311 TX 10/100 Ethernet Card: Electronics electronics 6 of 7 1.0 Terrible network card September 5, 2005 Stefan PA SUCKS I had this right form the start with my compaq 7970 which is amd k7 processor and has the via chipset. The computer seemed to work for a while or at least had few errors when I first used it but I guess that was when I had windows 98 for 2 years. When I upgraded to windows XP it just got terrible I had frequent blue screens and errors. I thought it was my video card or my ram or Irq sharing tried all that didn't seem to be it. Eventually I was wrong it was this card as mentioned before by others apparently it does not like some amount of internet use and when the card gets stuck it shuts down and windows xp just says error or points to the video card or irq sharing ot page fault in non page area as the problem. The card was the problem buy another card other than fa310,fa311 the one I have and fa312 even if you have intel or something else I would not waist my money on this card it will probably give you problems down the road. I have tried updates from [...] and updating my ram and video card have checked my irqs and reformating hard drive none worked. I put in a 3 com card I bought a few years before this computer and wow no crashes that other computer is now wirelessly connected to my home network B00004Z6BJ:ahhh!_its_horrible!:joe_shmoe B00004Z6BJ Netgear FA311 TX 10/100 Ethernet Card: Electronics electronics 2 of 5 1.0 AHHH! its horrible! May 5, 2005 Joe Shmoe USA Please! for the love of god! do not buy this product! it is absolutly horrible. i'll admit that since i bought my computer and go this card back in 2002, i hadn't had problems until the past few months. i play an online game - a MMORPG - and after every time the game is updated and i have to install the updates i am unable to log onto the game! it freezes up, and either makes my computer crash or destroys my internet connections, forcing me to restart. as you can imagine, this gets rather frustrating, and if you play MMORPGs, you can see how it is even more frustrating. i am currently running XP home edition. i beg you, DO NOT BUY THIS ETHERNET CARD JUST BECAUSE IT IS THE CHEAPEST ONE OUT THERE! you get what you pay for! now i'm off to buy a new one B00003CWDT:product_application:bob B00003CWDT Monster PC700 Computer PowerCenter� with Surge Protection: Electronics electronics 10 of 13 2.0 Product application May 7, 2004 Bob USA The photo on the Target website shows a cable input/output for cable protection. The unit arrived with a phone line input/output-not much help for those expecting protection on their cable line B00004SYNX:mac_users:_d-link's_claims_about_compatibility_are_false._look_elsewhere:traveler B00004SYNX D-Link DFE-530TX+ 10/100TX PCI Adapter, WOL: Electronics electronics 0 of 1 1.0 Mac users: D-Link's claims about compatibility are false. Look elsewhere July 13, 2006 Traveler New England I have a G4 tower Mac that did have a built in Ethernet. Unfortunately, a lightening strike took out the port and I was forced to get a PCI card to replace the port. The first card I bought was the D-Link DFE-530TX+. I was excited because the box clearly said that the card would work with Macs and that the "minimum requirement" was OS 10.2. They lied. OS 10.2 is the _maximum_ for this card. For most people, it won't work with 10.3 and up. D-Link has no driver for 10.3 or higher, only 10.2. A google search shows that some people have been able to get the card to work with 10.3. I couldn't. I tried several different drivers (some users recommended a driver from Realtek) and none worked. It's my guess (and totally a guess) that this card is really only for older Macs that are limited to 10.2. D-Link doesn't seem to have any intention of supporting modern Macs. This is the second D-Link product I've used (the first was a cable modem) and I've been disappointed both times. I can't speak for Windows users, but this company doesn't deserve Mac business. B000FGNM6I:not_very_dependable:kkrome25_"kkrome25" B000FGNM6I Transcend 2GB (SD) Secure Digital Card: Electronics electronics 2.0 Not very dependable October 19, 2006 kkrome25 "kkrome25" California, USA I started out with 2 gigabytes. And then after I had filled this card with about 500 photos, I downloaded all the photos to my computer. After deleting all of the photos from this card, the capacity had suddenly decreased to only half! What happened to the other 1 gigabyte? I'm sure they pre-formatted this card to appear like it's 2 gigabytes, but what a surprise when you start using it. Not good B0007DFXEI:item_not_delivered_in_reasonable_time_frame:g._galperin_"gosha" B0007DFXEI Velocity 8X 4.7 GB DVD-R (10-Pack Spindle): Electronics electronics 3 of 4 1.0 Item not delivered in reasonable time frame July 27, 2005 G. Galperin "Gosha" NJ I canceled the order of Velocity DVD-R disks since it took too long to deliver B0001YFW3K:not_so_great_as_they_say.just_ok:toytreker_"wallytrek" B0001YFW3K Motorola T7400R GMRS / FRS Rechargeable 12 Mile Two-Way Radio, 2 Pack, Yellow: Electronics electronics 2 of 3 2.0 NOT SO GREAT AS THEY SAY.JUST OK June 15, 2006 TOYTREKER "wallytrek" DOWNERS GROVE, IL USA These radios look nice but there are some problems here. First the batteries do not last long unless you do not talk. Second the biggest problem for me was uncompatibility with other radios and brands. The receive quality is very poor and hard to understand at times. I also hace a T7200 and the difference is like night and day. The 7200 is the best. The 7400 i believe is an has flaws and that is why you see them priced so low. I paid $24.00 on ebay and also have seen the set at home depot clearance for $44.00 today. What good is any radio if you cant understand what someone is saying? Good try motorola but this is a poor product.NOT RECOMMENDED TO PURCHASE B0001YFW3K:so_not_available_in_2-3_weeks:laura B0001YFW3K Motorola T7400R GMRS / FRS Rechargeable 12 Mile Two-Way Radio, 2 Pack, Yellow: Electronics electronics 30 of 89 1.0 So not available in 2-3 weeks September 1, 2004 Laura MA I ordered this radio back in May and I still don't have them. It is now September. I have exchanged several emails with Amazon, the first one I received a very nice but untrue reply. The second response was borderline rude but at least honest, they told me that they don't have the product and don't know when they will. If you are looking for something to use now, don't waste your time with ordering this radio B000BD35SK:horribly_noisy:numb_d._plum B000BD35SK Griffin Powerjolt Car Charger for iPod: Electronics electronics 2 of 2 2.0 Horribly noisy May 20, 2006 Numb D. Plum Columbia MO, USA The box says you can either "power" or "charge" your iPod with the Powerjolt. To me, "power" means listening to the iPod while it is plugged in to the Powerjolt. However, there is an overwhelming amount of buzz and static when the iPod is playing while connected to the Powerjolt. Maybe this thing works ok to "charge" while the iPod is not playing, but it is not an acceptable way to "power" the iPod while it is playing. B00085ESA0:cheap_as_in_quality_not_price:chaos_rex B00085ESA0 Philips HN 110 Folding Noise Canceling Headphones: Electronics electronics 1 of 1 2.0 Cheap as in Quality not Price October 2, 2006 Chaos Rex Bay Area, CA USA I commute via public transportation, the majority of that on a noisy train. Earbuds and over ear headphones don't block out enough of the noise to enjoy the music. I received these Philips HN110 headphones as a gift. When I first got these I was pretty disappointed at how flimsy they appeared. I have some KOSS over ear head phones which are nice and beefy. These are scrawny but on the other hand take up less space. They use a single AAA batt. Using them on the train I was able to turn down the volume on my music player a tad but a lot of the noise still gets through. I'm not an expert on these but I guess this noise cancelling works mainly on lower frequencies. Alot of the noise on the train is higher in pitch and thus gets through. The next thing I noticed was that with a cord coming out of both the left and right earphone you are limited in how you can put these on and take them off. My KOSS and Sony headphones and earbuds use the single cord to one phone and the connecting cord from there (or it runs through the headphone band). I realize I like this single cord feature very much. Again these Philips HN 110 don't have this. I also noticed that when the Noise Cancelling is turned on and the wind is blowing you can hear the wind as if it were amplified. After about a month and a half the battery compartment door latch broke inside. Now I can't open the battery compartment without doing some damage to these headphones. I checked Philips website for info on these phones but I couldn't find any. I called their customer support and they told me I had to call a different #. I called the different number and got the Return Merchandise Authorization # but was told I need to send the receipt in. I got them as a gift so I don't have the receipt. In summary, their noise cancelling ability is pretty week. Better than my hefty non-noise cancelling KOSS over ears or my stethascope like Sony ear buds but only by about 10% or so (just to put a number in their). Flimsy design. Cords from both earphones. Hear the wind amplified. Battery compartment latch broke after a month and a half and their warrenty sucks B0002E1HGK:low_quality:j._walters B0002E1HGK Musician's Friend Lo-Z Microphone Cable, 20 Foot: Electronics electronics 2.0 Low quality November 23, 2006 J. Walters Charlotte, NC USA After only having the cable for a week under very light usage, the cable stopped working intermittently. It makes crackling noises when the cable is moved. I am not talking about whipping or quick movement, just gentle movement of the cable causes crackling and loss of signal. I was about to scrap the cable altogether but I decided to resolder the connector to see if that would help. I cut off about half a foot of the cable and resoldered it, only to find that the same problem persisted. I got a bad cable, obviously.. B0009I6K7K:did_not_work-avoid_this_product:oceanblue996_"blue" B0009I6K7K Altec Lansing inMotion IM3C Portable Audio System for iPod and iPod Photo: Electronics electronics 0 of 3 1.0 Did not work-avoid this product November 11, 2006 Oceanblue996 "Blue" California The iM3c was a gift - looked like a great little portable stereo for my Pod. First used it on a trip. Started off playing ok and then the sound cut in and out. Frustrated me for the week as I didn't know if it would play or not on any given day. When it did play it was ok but not great. Finally, it didn't play anymore. Returned it to the Apple Store where purchased to find that there was only a 15 day return policy and I missed it by 2 days. So, I tried to contact Altec Lansing. The phone number in the owners book didn't work although I tried for several days. Then I emailed the Altec support email. No response after two emails. Sometimes a product doesn't work and it's easy to return or get repaired. On this one, it looks like this product will be finding the trash can. Do not buy. B00084O8A6:do_not_do_business_with_bargaincell!:r._roybal_"rroybal" B00084O8A6 Digicom iPod Car Charger (White): Electronics electronics 1 of 10 1.0 Do NOT do business with Bargaincell! March 31, 2006 R. Roybal "RRoybal" USA Bought a cell phone battery that, of course, died one week past their return/refund deadline. Refused to refund or replace even though the product is CLEARLY defective. This company is a ripoff and will never do business with them again. Consider yourself warned B0000SVSNA:short_lived_performance:digitalbuff B0000SVSNA Mojo MP3/FM Player 256MB USB with voice Recorder & Headphones: Electronics electronics 2 of 3 2.0 Short lived performance November 3, 2005 DigitalBuff Chicago, IL I bought the TDK Mojo 256 about a year and 3 months ago. It worked wonderfully for the first year - did what it was supposed to and the radio quality was great. Then I upgraded to Windows XP and that's when everything started going wrong. This MP3 player needs propreitary software to copy files from your hard disk or CD to the mp3 player. Unfortunately the software doesn't work well at all with XP. Right now, my player is piece of junk. I have tried copying files which it shows as copied but then when you reconnect the player, they don't show up on there. What's more, formatting the internal memory will also not release the space and so I have the internal memory full but it shows up in the software as free. However, it won't copy over any new files and gives me a "Storage Full" error. It doesn't act reliably with XP either and I had to unplug and replug several times for it to even read the list of songs on the mp3. It lasted all of 15 months. While it sounds like a great deal ( good features for price ). DO NOT buy this if you will be using it with XP and if you do, please don't expect it to last more than 12-15 months B0000SVSNA:its_a_piece_of_junk:mr._g._chawla B0000SVSNA Mojo MP3/FM Player 256MB USB with voice Recorder & Headphones: Electronics electronics 5 of 7 1.0 Its a piece of junk February 6, 2005 Mr. G. Chawla Atlanta This player is a piece of junk. First the USB really doesnt mean you can hot swap. You can access the files only if the software is installed on the computer which means that you cannot pick up MP3 from any computer. Second, it gives errors with XP. It tries to install drivers every time. THird, removing old and adding new MP3 is such a hassle. It takes minutes to delete old files and add new. Seems like you are working with a floppy. Fourth, its Mojo software hangs all the time. Fifth, it sucks battery life. Sixth, if your MP3 is not in a directory, i.e. if copied directly, it wont show. Then it wont delete and will show 200 MB as not free space. Formatting is the only way out. Seventh, it came with a mail in rebate which never showed up. Overall, a bad experience B0000AUB1U:poor_quality_and_"zero_customer_service":the_fiddler B0000AUB1U SkyGolf SkyCaddie GPS rangefinder delivers distances on the golf course: Electronics electronics 8 of 12 1.0 Poor Quality and "Zero Customer Service" April 14, 2006 The Fiddler New Orleans Does the unit work??,...Well yes to a degree. It takes 6 holes to lock on to the satellites and then does a fair job of giving distances. The display is poor and though they say "up to 40 objects per hole" there is normally 2-4 objects per hole. All this depends upon the Skycaddie course recorder. The user (you) can not modify the course or add any objects that the course recorder didn't think was important. Now the bad part. The unit attaches via button and belt clip (like a cell phone). My button (part that attaches to main unit) has died twice in the first 30 days. When it breaks again,...which it will often,..the unit will probally hit the dirt. This isn't good. But fear not. It will be packed away weeks trying to get in touch with Skygolf. And another week to get a replacement button (which has been modified even weaker than the original one). Now my replacement broke on the first time I clipped it to the belt. Now back to Skycaddie to get another. After being on hold for another hour, they need to transfer you to another tech that handles parts. This will take another hour. You then get a message to leave a message. Normally within a week someone will call you back. By normally I mean about 35% of the time you leave messages they return them. Would I buy another,... duh,.... NO B0001IXUDK:be_an_educated_consumer!__you_don't_have_to_spend_a_lot_for_*digital*_cables:navarro_l._parker_"motion_graphics_dude" B0001IXUDK Monster Cable HDMI 400 Cable (2 Meters): Electronics electronics 26 of 26 1.0 Be an educated consumer! You don't have to spend a lot for *digital* cables September 20, 2006 Navarro L. Parker "Motion Graphics Dude" San Diego, CA United States You don't have to spend a fortune on expensive cables when you are dealing with digital signals. Keep in mind that all digital interfaces have error correction built into them. Did you know the internal components of consumer electronics are connected with tin and nickel? There's no gold inside! So there's no need for oxygen-free, gold tipped, multi sheilded, super mega supreme cables. If you don't believe me, buy this cable and a no-name cheapie. Compare them for yourself -- you will see no difference. With analog signals, a good quality cable may make a difference (although the difference is usually only visible on an oscilloscope). B0001IXUDK:great_product,_terrible_cost.:g._harper_"why_does_this_site_do_this?" B0001IXUDK Monster Cable HDMI 400 Cable (2 Meters): Electronics electronics 56 of 57 2.0 Great product, terrible cost. July 5, 2006 G. Harper "why does this site do this?" College in KY, USA Have you ever heard the saying that something would cost you "an arm and a leg"? These cables cost that, your first son, and bidding rights to your estate. Don't get me wrong- Monster makes great cables. Let there be no confusion on this point. But they're just incredibly expensive, and this is made much worse with these cables. Several people have pointed out that the digital signal on HDMI cables must adhere to error-correction and certain standards (even a $10 cable cable must meet some specifications to even reach production)- and this is largely true. Unless BluRay implements new features that require new cables at some point in the future, there's really very little difference between HDMI cables. Yes, the gold-plated pins and other features will improve your connection a bit, but the improvement will be far less than you'd see between any other "cheap" versus "designer" cables on the market. But Monster cables really are made to a standard that makes some difference, and that's worth mentioning. This cable is built sturdy, so that none but the most harsh of treatment could ever damage it. And the shielding isn't just the usual electrical shielding- Monster cables are toughened to the point that I wouldn't doubt if they're certified against nuclear fallout. If you have the money to blow and you want the confidence of knowing that your entertainment center could fare well in an EMP strike, you're looking at the right cables. But for nearly all consumers, these cables cost 4x as much as alternatives, with no real plusses. At the very least, you can pick up a mid-grade cable (Sony, etc) at a mid-grade price ($40) to get the increased sturdiness and the gold-plated connections. And over these products, the Monster cables basically have nothing at all except their branding. Please do look up a cheaper alternative this time, and spend some of the extra money on an extra set of whatever tools you use to keep your screen clean. You'll get much better results with these tools than you will worrying about $100 HDMI cables B0001IXUDK:dumb_dumb_dumb:hibernia B0001IXUDK Monster Cable HDMI 400 Cable (2 Meters): Electronics electronics 66 of 66 1.0 Dumb dumb dumb June 26, 2006 Hibernia Cork, County Cork Ireland What do they say about fools and money? HDMI uses TMDS which is a digital transmission system with built-in error correction. TMDS has been designed to work over cheap cabling and a $10 HDMI cable will meet the specification. If you spend 9 times more on this cable than another one then you have just wasted $80. That's all there is to it. You don't need expensive shielding or gold plated connectors for a cable. The picture or the sound are not richer or more vibrant with a $90 cable over a $10. In fact the signal is identical. Let me repeat - HDMI (& DVI-D) devices talk digitally with error correction. This cable and ones like it are for suckers only. B000EF1820:think_before_you_buy:m._newman B000EF1820 Belkin F8Z049-BLK TuneBase FM for iPod: Electronics electronics 1 of 1 1.0 Think Before You Buy October 21, 2006 M. Newman Seattle If you can't abide an ever-present low hiss in the background, and louder interference in the presence of power lines, don't buy this product. I wish I'd read the reviews more carefully before I bought. A number of even the most favorable ones mentioned this annoyance. The manufacturer replaced the first unit after I complained, but it was no improvement. This may be the best product of its type out there, but it still comes up short. B000EF1820:love_the_concept,_hate_the_product!:jennifer_a._johnson B000EF1820 Belkin F8Z049-BLK TuneBase FM for iPod: Electronics electronics 2 of 3 2.0 Love the concept, hate the product! September 6, 2006 Jennifer A. Johnson st. louis, mo I think this product design concept is great. I love the flexibe arm size. It fits great in my car. The CRAPPY part. I live near metro st. louis and i could not hold a signal ANYWHERE! I always had some intereference. whether it was fuzz or the signal going in and out. This product did not meet my expectations, especially since the back of the package states I should have crystal clear sound. This is not true. I have returned this product after little success over the first week of purchase. I am now waiting to get my DLO transpod 2 in the mail to try it out. I want something to work! B0007WTHLY:listen_to_the_rest_of_us:j._bart B0007WTHLY Etymotic Research ER6 Isolator Earphones (Black): Electronics electronics 5 of 8 2.0 Listen to the rest of us August 27, 2006 J. Bart Florida I have to say, since I really started listening to music I have payed attention to a lot more detail of sound. With that said I am not a bass junky; but bass and compression of the overall mix is what makes a sound a good sound. I currently owned a pair of Sony MDR-EX81LP (that cost me 30-40 dollars a year ago) I am a medical student and I study all day and all night, but cannot have my music blasting. Conversely I needed to have a nice isolation of my sound. Comparing my old Sony to the new ER-6 that I just got, I am EXTREMELY DISSAPOINTED with their performance. I was expecting a great sound with minimal noise from the outside and get almost no response at the level that I studied with my old ear buds. To be fair remember that these are not noise cancelling, they are noise reducing. There is no component involved here, they are basically really good earplugs with speakers in them. My wife just ran the vacuum and I barely heard it. The earplug reduced noise feature is great and comfortable; however my other ones (Sony earbuds) sound better. A combination of the two would be great. Keep in mind that this is my opinion and make your own based on why you are buying earbuds. Environmental sound reduction is great, sound quality is not as good as some others.....choose your fault and pay attention to pricing. B0007WTHLY:not_worth_the_money:scott_knecht_"wagon78" B0007WTHLY Etymotic Research ER6 Isolator Earphones (Black): Electronics electronics 2 of 4 2.0 Not Worth the Money August 20, 2006 Scott Knecht "wagon78" Connecticut I was disappointed with these earphones. The sound level was low and higher frequency sound seemed attenuated. The $30 Sony MDR-EX51 earphones I already owned sounded much better B0002MK9WU:phantom_paper_jam_can_cost_extra:savy_mom B0002MK9WU HP PhotoSmart 325 Compact Photo Printer: Electronics electronics 9 of 9 1.0 Phantom Paper Jam can cost extra December 24, 2005 savy mom Minnesota I have had the 325 model for less than a year. Up until recently I was satisfied with its performance using it to print less than 5 pictures at a time. Recently, I needed to print a series of pictures (more than 10 in one sitting) and had an error message-print cartridge jam-I fixed the paper jam but continued to get the error message. I called HP and they stated this was a fatal error in the unit and encouraged me to purchase the updated model rather than fix my printer. I searched the internet for a solution only to find that others had encountered this and the solution was to purchase the "new'model- A not very cost effective solution as this was not supposted to be a disposable model. B0007TC39A:file_13:joblessnusa B0007TC39A SanDisk 1GB Cruzer Micro USB Flash Drive (SDCZ4-1024-A10, Retail Package): Electronics electronics 1 of 2 1.0 FILE 13 November 17, 2006 JOBLESSNUSA DON'T BUY THESE THINGS ! THEY GO BAD AND SANDISK WON'T REPLACE THEM. BUY OCZ OR A-DATA OR SOMETHING. THESE THINGS ARE VERY UNRELIABLE.. B00022TN36:who_knows_how_to_solve_the_c:13:01_error_?:francisca_estay_"fran_estay" B00022TN36 Sony 128 MB Memory Stick Media (MSH-128): Electronics electronics 28 of 30 1.0 Who knows how to solve the C:13:01 error ? May 26, 2005 Francisca Estay "Fran Estay" Santiago, Chile I bought the Sony 128 MB Memory Stick (MSH-128) a few months ago, but I only used it once. When I was in my 20th picture, an error appeared in the screen of my Sony P100 camera: Error C:13:01, Memory Stick failed First, I went to Sony Service Center, but they didn't know what was happening. Then, I went to different Sony Stores, but the only answer they gave me was that my Memory Stick is failed, that it's impossible to fix or format it and, the worst, there is no way to save the pictures !!!! Finally, I tried to solved it by myself, and I "google" the C:13:01 error. If you do it, you will find hundreds of people with the same problem, looking for a solution. That's why I don't recommend this product. If all of us have the same problem, you can be the next B0002XZQHM:be_careful_of_this_one:fei_zhao B0002XZQHM Lexar Media 1 GB Secure Digital Memory Card (SD1GB-231): Electronics electronics 1 of 1 2.0 be careful of this one March 20, 2006 Fei Zhao A friend gave me this card for free, when I travled to Arizona. I use this card in my Dell X51V. From time to time, this card can't be recoginize by the PDA. I have to pull it out and re-insert it in, and reset my PDA. Then oneday, my GPS software showed "Map data corrupted". All the data in the card was wiped out, and the card's space reduced to around 300M, have no idea where the remaining space goes to. Don't put important data on this one!!! That's my lesson B0002XZQHM:never_work_properly:anthony_villalobos_"video_game_crazy_lover" B0002XZQHM Lexar Media 1 GB Secure Digital Memory Card (SD1GB-231): Electronics electronics 8 of 11 1.0 Never work properly August 18, 2005 Anthony Villalobos "Video Game Crazy Lover" Maracaibo, Zulia - Venezuela I bought this SD card on April 11. Unfortunately, the card doesn't work properly, in fact, my camera and my computer never detect it. Also, I recived a different card, it didn't like the picture on this page. I think I was swindled. Well, I had to buy another SD card B0002XZQHM:a_lame_duck_card:kyle_witten B0002XZQHM Lexar Media 1 GB Secure Digital Memory Card (SD1GB-231): Electronics electronics 6 of 9 2.0 A lame duck card February 8, 2005 Kyle Witten Berea, KY I purchased the 1gb Lexar card, and 5 hours after I started using it, I've got corrupted data that no amount of formating or data deletion will remedy. Given that I had already disceted the box into small pieces to send in for mail in rebates, I contacted Lexar and sent it to them on a Warrenty claim [cheaper then driving back to the retail location I purchased it at anyway]. I got it back yesterday, and it was suffering the same problem I sent it in for in the first place! Their solution, they pay for the return shipping of card #2, and swap it out for two 512mb cards. Not happy. But at least they are somewhat responsive to fixing the problem B0007KXFH8:two_units,_both_failed:james_l._guelde_"hubba_bubba" B0007KXFH8 Garmin GPS10 Bluetooth Enabled Wireless GPS with Mount and Software: Electronics electronics 6 of 6 1.0 Two Units, Both Failed June 10, 2006 James L. Guelde "Hubba Bubba" Far West I bought a brand new unit directly from Garmin. It worked for about a week, then it would no longer charge. I returned it and got a REFURBISHED UNIT in exchange. The refurbished unit did better.. it lasted 3 weeks before failing. To use it, I must use the charger plug constantly, as the unit will not charge. Sending it back now to try a third unit B0002H4YUI:look_like_multiple_functional_but_not_working:space_traveller_"s.t." B0002H4YUI Kensington 33117 International All-in-One Travel Plug Adapter: Electronics electronics 1 of 2 1.0 look like multiple functional but not working August 18, 2006 space traveller "S.T." Co, USA I had bought this item due to good review before I went to a trip to Bulgaria. However, it plugs in but doesn't work. Why? I don't know. how should I deal with it now? Is it a defect one? I have no idea, to me I just lost 17 dollars for an experience. (don't buy electronic items from a book store, even it's cheaper) Fortunate I also bought Targus travel adaptor set that save me B000CLCRVM:don't_buy!!!!!!!!!!:ilovemusic B000CLCRVM DLO Podfolio for 5G iPod: Electronics electronics 2 of 7 1.0 DON'T BUY!!!!!!!!!! February 1, 2006 ilovemusic If you have a 30 gig. video iPod, mabey. But for a 60 gig. it is too tight to it, got a mark on iPod after taking it out, covered up part of the screen on mine, and I'm taking it back right away. It is a waste of money to buy this product and I made a mistake by getting it for myself. Get a different case than this one B000CLCRVM:terrible:gerant_rivera B000CLCRVM DLO Podfolio for 5G iPod: Electronics electronics 1 of 6 1.0 Terrible January 12, 2006 Gerant Rivera San Diego, CA United States Please, do not buy or use this product. The "hand-stitched, supple leather" scratched my new 60G black iPod video. The description says it "will fit all iPod videos" but mine was very tight. So far, DLO has not answered my complaints. Neither has Apple. I bought the Speck ToughSkin (have not received it yet) and hope it helps me heal the pain. Bad product B00006B9WE:didn't_know_you_can_sell_trash_over_amazon.:hovik_akopyan B00006B9WE Cyber Acoustics CA2016 2-Piece USB Powered Computer Speaker System (Black): Electronics electronics 1 of 1 1.0 Didn't know you can sell trash over amazon. November 15, 2006 Hovik Akopyan It was horrible, soon as i plug the speakers in it was making a constant noise, really annoying, the speakers were junk, worst purchase i've ever made from amazon. I would've returned them but I didn't want to go through the trouble of sending it back. So i just smashed them and went to best buy and got new ones. I know it was a cheap speaker, but hell it should atleast work properly. Talk about trash B00006B9WE:horrible_feedback:jc_"jclair" B00006B9WE Cyber Acoustics CA2016 2-Piece USB Powered Computer Speaker System (Black): Electronics electronics 1.0 Horrible Feedback November 12, 2006 JC "jclair" New York, NY These speakers are unusable. They give off horrible feedback even when there's not a cell phone or cordless phone in the room B0006DNMMO:great__features,_great_price,_horrible_speakerphone:phil_gigante B0006DNMMO HP 1050 Monochrome Inkjet Fax Machine: Electronics electronics 14 of 14 2.0 Great features, great price, horrible speakerphone January 11, 2006 Phil Gigante Yonkers NY This machine is great looking, compact, and seems to be the perfect combination fax/answering machine/speakerphone. One major problem: The phone is well below average in sound quality, and the speaker is absolutely terrible. The tiny, poorly made speaker is placed in the back left side of the unit and and is totaly inaudible at loud volumes due to distortion. The fax is great, the print quality is great, the speed is great, but you have to lower the volume and lean over with your head against the speaker to hear messages. This problem also renders the speakerphone useless. I returned this unit twice thinking it was defective, but spoke to HP and was told that is just the way this unit works. Buy the Panasonic KX-FHD351 if you need a great sounding unit. The only problem with the Panasonic is that it doesn't come in black, but is a much better phone/answering/speakerphone. B00005B8M3:don't_buy_it__for_c340:n._stoianova B00005B8M3 Garmin 010-10085-00 Cigarette Lighter Adapter: Electronics electronics 6 of 7 1.0 Don't buy it for C340 August 23, 2006 N. Stoianova I bought it for my c340 but it does not work with it. Maybe it was my fault for not reading the description in depth. I really thought it did say it is good for street pilots, though. There might not be anything wrong with the item but it needs a better technical description B0000BVUZ4:useless_-_does_not_retract:james_murphy B0000BVUZ4 Targus PA225U Retractable Phone & Ethernet Cord (Plastic Casing): Electronics electronics 4 of 4 1.0 Useless - does not retract April 6, 2004 James Murphy Pelham, MA USA I agree with the previous review. This phone cord worked twice. Now, it only retracts about half way, and keeps getting worse. I'm returning it for a refund. Don't waste your time with this B0000BVUZ4:do_not_wast_your_time_with_this_product...period:alan B0000BVUZ4 Targus PA225U Retractable Phone & Ethernet Cord (Plastic Casing): Electronics electronics 4 of 5 1.0 DO NOT Wast your time with this product...period August 8, 2003 Alan Carol Stream, IL USA I am on my second one and I will be returning this one also. Both of them worked once and then would not retract fully after that. I was so mad I almost threw it against the wall. I thought the first one was a defect, but then when I got the second one I realized it was a design flaw... If you buy the Targus one keep your receipt because I guarantee you will be returning it. What I don't get is how Targus has the guts to release this product and also put on it: Satisfaction Guaranteed. What a joke.. B00006B9QF:seriously_annoyed:customer B00006B9QF SanDisk 512 MB CompactFlash Card, SDCFB-512-A10 (Retail Package): Electronics electronics 8 of 18 1.0 seriously annoyed August 13, 2005 customer New York City This card is on its way back to Amazon. I purchased it as it was one of the "recommended items" with the camera I also purchased, never mind that it doesn't work with the camera. I'm not hugely tech savvy--I (wrongly) assumed that any items recommended with the main item (a $500 camera) would be compatible. Check to make sure that any recommended accessories will actually achieve what you want them to. B000EWE3GQ:i'm_shocked,_amazon_cancelling_orders_withouth_any_notification.:mark_e._michel B000EWE3GQ SanDisk 4 GB Ultra II Memory Stick PRO Duo (SDMSPDH-4096-901, Retail Package): Electronics electronics 13 of 22 1.0 I'm shocked, amazon cancelling orders withouth any notification. March 31, 2006 Mark E. Michel This isn't the type of behavior i would expect from such a valuable and big company as Amazon is. They cancelled my order same way as the other people's. They didn't even send any notification email and i found my order cancelled by looking at the site. Amazon MUST learn that this is illegal and they must ship all the orders placed, if they made a mistake pricing the item is THEIR problem not ours and more after many customers confirmed the price over telephone. If Amazon don't ship the orders already placed they will throw stones over their own roof and make lots of bad publicity. I'm one of many who won't be buying anything ever if Amazon don't send me my ordered items. Count with me for any legal actions that may be taken B00000J3LY:what_a_joke:sat B00000J3LY HP C6049A Iron-on Transfers: Electronics electronics 3 of 7 1.0 What a joke December 10, 2004 Sat I bought these because I have an HP printer and figured they would be best for the shirts I want to make. I couldn't get them to take for anything in the world. I put the pressure on it, ironed them longer, everything you can think of and they still wouldn't take. Then when I finally got one to take it completely cracked and crumbled and started peeling off before an hour was up. It never made it to the wash, so now I am out the money I paid for them and still have no shirts. Any other brands you suggest instead B00005RZP3:no_customer_support: B00005RZP3 Socket Communications Low Power Wireless LAN CF Card: Electronics electronics 1 of 1 1.0 No customer support February 7, 2004 It's the most expensive CF card with absolutely no customer support. After a while the CF card stopped working - no power light as if the card "burned out". I really can't tell you exactly what went wrong because it's impossible to contact someone at Socket customer support. I followed their web-site instructions but was never contacted. I'll never buy another Socket product again B00005RZP3:not_palm_compatible: B00005RZP3 Socket Communications Low Power Wireless LAN CF Card: Electronics electronics 0 of 8 1.0 NOT PALM COMPATIBLE November 18, 2003 Connects to your Microsoft Pocket PC and will not work with a Palm. If you mistakenly order, AMAZON.COM will not refund your shipping. Have a nice day B0006BB6Z6:technical_details_misleading:krob B0006BB6Z6 HP 97 Tri-Color Inkjet Print Cartridge with Vivera Inks (C9363WN#140): Electronics electronics 4 of 7 1.0 Technical Details Misleading July 14, 2006 KROB Chatsworth, CA USA It states in the Technical Details that you can get 450 pictures from this cartridge. This is not true. After much discussion with HP, they finally admitted that it's only rated for 150 4 x 6 pictures. My experience is that you actually get a little under 100 pictures from it. If you're buying this cartridge, you've probably already bought the printer, but you should know before you buy the printer that you're going to go through a lot of expensive ink B0006BB6Z6:watch_out_for_shipping:kevin_k._fosler B0006BB6Z6 HP 97 Tri-Color Inkjet Print Cartridge with Vivera Inks (C9363WN#140): Electronics electronics 10 of 15 1.0 Watch out for shipping June 15, 2006 Kevin K. Fosler I put this item in my cart -- it was one of the "buy both now" deals. The problem is, the first item was sold by Amazon, with free shipping, the second item was sold by another company with outrageous shipping costs. I caught this easily while checking out but just wanted to post a "buyer beware" to check the shipping costs B000BFM68I:love_it_but_it_keeps_breaking:jeffrey_rabe B000BFM68I Speck Nano Armband: Electronics electronics 1 of 1 2.0 Love it but it keeps breaking June 14, 2006 Jeffrey Rabe Dallas, TX USA I love the functionality of this armband. The problem is that it keeps breaking. The place at which the band loops through the holder keeps breaking.. I'm on my second one and it is almost ready for another replacement.. B00006I5FR:problems_at_radom:sterling_j._badon B00006I5FR Lexar Media 512 MB Secure Digital Memory Card: Electronics electronics 1.0 Problems at radom July 8, 2006 Sterling J. Badon Longmont,CO. USA This LEXAR brand has had issues with it's Memory Cards. I lost lots of pictures from a vacation to Disney World and a Convention. Their site had SOFTWARE that was to help recover some of those lost images!! I have never had Flash memory trouble until LEXAR! I now only buy SCANDISK items. Samsung invented this tecnology and SD is their product. The Store I bought the LEXAR chip was in a hurry to give me another chip I could trust. He gave me the higher costing SD chip. I wasn't the first to have issues from buying it in his store. He took a $50.00 loss to make me happy. People take lots of photos now that we went Digital. Imagine looking for some pictures you know you took and they are not there! Most think they messed up. WIth this chip you will have that happen so pay very close attention. Most of what is lost can not be recovered. Pay the extra money for SCANDISK. B00009KO14:earbuds_fall_out_if_you_move:john_busco B00009KO14 Apple M9128G/A iPod Remote and Earbuds: Electronics electronics 1 of 3 1.0 Earbuds fall out if you move March 3, 2006 John Busco Silicon Valley, CA USA The remote control is OK. But the earbuds are horrible! They are very sensitive to your particular "ear anatomy". I suppose they fit for some people, but for me they are useless. They stay in for a few seconds, but don't dare do anything like running, walking, or moving your head and expect them to stay in. Much better to get lightweight headphones with an over-the-head or behind-the-head band, or even the models with "hooks" that fit over the top of your ears. B00009KO14:wires_too_long,_connector_sleeve_disconnected:paul_arellano_"big_$$$-_phils-ny-uk-va" B00009KO14 Apple M9128G/A iPod Remote and Earbuds: Electronics electronics 4 of 6 2.0 wires too long, connector sleeve disconnected November 14, 2005 Paul Arellano "Big $$$- Phils-NY-UK-VA" VA, USA A short review... Don't buy this product. The wire is too long and the remote control is too heavy for the jack to hold. After a month of the remote and wire hanging and swinging about, the wire where it's connected at the jack gave out making this remote unuseable; I have to jiggle and find the sweet spot now just to make the remote work. Long wires plus a remote adds considerable stress and weight on the jack...a serious design flaw. If you want to buy this, I suggest you tie the wire and the remote using a rubber band around your IPOD to support it's weight without pulling the wire off the connector B00029U13A:massive_problems_with_sony_ce595_:j._miller B00029U13A Sony SCD-CE595 5-Disc CD/Super Audio CD Player: Electronics electronics 1.0 Massive problems with Sony CE595 November 24, 2006 J. Miller Atlanta, GA I am sorry to say that my experience with the CD player has been miserable. After a series of unhelpful conversations with SONY folks, I am going to return it. It often fails to read the CD or cuts in and out on new CDs that play perfectly in other CD players; the shuffle program simply spins and spins, and rarely settles down to actually play a CD. It occasionally generates a read error message (uh, yeah...). Even if on "continuous" play, it often fails to recognize the CDs loaded into it. Instead, it displays a "No Disc" message. Then, even if it does play a series of CDs on continuous play, at some pt, it just stops. It has been like this since I first brought it home and has not improved in the weeks since. The experience with the tech support people alone convinced me that they do not care. It took a long time to even get through their tech support lines the first night I had it, and then a lot of persuading to even get them to agree that their CD player was not working. Then they tried to convince to me send the brand new machine back, **for a price**, to have them repair it. Uh, no, not likely to fall for that--paying them to repair a brand new machine straight out of the box, taking time out of my way-too-busy life to ship it to them?? I finally have a reference number with permission to return it to the store for a full refund; so back it goes. Then there are the limitations on the remote control that others here have noted. Since I had the same shuffle problems with my previous SONY carousel player, I am not inclined to try a 3rd machine. Needless to say, no more SONYs are coming into my life. B0001LTT64:at_this_price_point_i_think_the_many_other_mice_feel_more_solid_than_this_logitech_mouse.:awesomefunn B0001LTT64 Logitech Optical Mouse- Black: Electronics electronics 2 of 2 2.0 At this price point i think the many other mice feel more solid than this logitech mouse. August 28, 2006 Awesomefunn St. Louis USA I mainly chose this mouse because I needed one quickly and it was black and matched my set up. I had been using the standard greyish white optical mouse with a scroll wheel and a red light that shined out from under my wrist. This one feels smaller, but still comfortable. However a couple weeks of normal usage made the mouse much less solid feeling. The plastic now mushes as the seems flex slightly in my hand. I decided to have a friend repair the cable of my old mouse. :-/ I am going to donate this mouse to a friend who still has a tracking ball mouse. I like some of Logitechs products and higher end mice. But I would stay away from this mouse. Its not bad, its just not good enough to pick over other mice that cost the same amount. Hope that helps. Awesomefun B0006698SI:do_not_buy_this_adaptor!:joshua_hazel_"josh_hazel" B0006698SI D-Link DWL-G132 Compact Wireless USB 2.0 Adapter, Cradle Included, 802.11g, 108Mbps: Electronics electronics 1 of 1 1.0 Do not buy this adaptor! September 6, 2006 Joshua Hazel "Josh Hazel" Visalia, CA I first isntalled this to WinXP 2nd ED and all of a sudden I am getting blue screens and the system keeps rebooting over and over. I uninstall and the problem goes away. Coincidence? I will let you decide. I reinstalled the adaptor and it gets very very hot.. reminds me of my notebook that overheats and shuts down. I cant get a connection to my router. I have my notebook im typing on now connected right next to the adaptor desktop and get a signal just fine with my notebook. I will be sending this back B0006698SI:it's_a_4-star_product:l._gong_"geoff" B0006698SI D-Link DWL-G132 Compact Wireless USB 2.0 Adapter, Cradle Included, 802.11g, 108Mbps: Electronics electronics 1.0 it's a 4-star product August 11, 2006 L. Gong "Geoff" Michigan OK. I take my words back. I found a solution to the connection problem with windows xp. Download a patch ( WindowsXP-KB884020-x86-enu.exe, solving WPA issues) from microsoft, then everything goes as it should be. ------------------------------------- i bought this USB adapter along with DI-624 router for $99. The router works perfectly fine. The USB adapter gave me so much trouble. i used it to connect my desktop pc to wireless network. It works when the network is not encrpted. But it won't find an IP address under WPA security. It searches IP address endlessly. I have winxp sp2 which is supposed to support wireless flawlessly. I think either this so-called 108m bps or the driver causing the trouble. Having seen others having problem with other brands of USB adapter, i think maybe for desktop, a wireless pci card is better B0006698SI:flakey:curley_q_joe B0006698SI D-Link DWL-G132 Compact Wireless USB 2.0 Adapter, Cradle Included, 802.11g, 108Mbps: Electronics electronics 1 of 4 1.0 flakey December 27, 2005 Curley Q Joe It dies if you plug in any external USB disk drive or card reader. D-Link just doesn't know how to write device drivers that work well. I've had problems with every D-Link product I've ever bought B000CO90YG:warranty_problem:j._golden_"giant_fan" B000CO90YG 4-Year Service Plan for Televisions $200 to $999.99: Electronics electronics 1.0 warranty problem November 9, 2006 J. Golden "giant fan" new york when i purchased this plan it was for a tv between $1000 and 1499.99. new contract claims that my purchase had to be under $1000 so they will NOT honor it. this means i do not have an extended warranty. i either want this warranty for the price that was agreed upon or a full refund. i'm happy i found out about this problem before i needed the warranty. B000CO90YG:bad_customer_service........:christine_baran B000CO90YG 4-Year Service Plan for Televisions $200 to $999.99: Electronics electronics 1.0 Bad customer service........ November 6, 2006 Christine Baran I never received the 4-year plan, when I purchased the TVHD in August 2006. I have wrote to Amazon several times with no follow up by Amozon. My next step is legal, since Amazon is acting like it dosen't care about the customer. The reason I both the TVHD was because of 4-year service plan. Terrible customer service...... B00006I56B:do_you_feel_lucky?:j._d._henry B00006I56B Coby CX-TV6 5" Portable Black & White TV with AM/FM Radio: Electronics electronics 0 of 1 1.0 Do you feel lucky? September 6, 2006 J. D. Henry usa If you do, go ahead and take a chance. I did and got burned. Tv didn't work right out of the box. Will return soon. B0001PFQ08:junk!_stay_away:the_tech_dude_"thetechdude" B0001PFQ08 D-Link DI-524 Wireless 54 Mbps High Speed Router (802.11g): Electronics electronics 0 of 1 2.0 JUNK! STAY AWAY October 13, 2006 The Tech Dude "thetechdude" King of Prussia, PA United States Unfortunately I bought this router (aka junk) from Amazon. Never worked smoothly. Did not like WPA. After I set the the protocol to WPA and restarted it, the router froze. Updated firmware, no use. Now its not working. Power is intermittent, will shut off whenever it wants. Freezes randomly. This garbage is going back to Dlink today. Dlink tech support also said that they are having a HUGE number of complaints with 524 especially revision D. I will never buy another Dlink. DO YOURSELF A FAVOUR AND AVOID DI-52 B0001PFQ08:if_you_like_headaches_and_hassles,_buy_this_router:l._michelle_brockway_"brockway" B0001PFQ08 D-Link DI-524 Wireless 54 Mbps High Speed Router (802.11g): Electronics electronics 3 of 3 1.0 If you like headaches and hassles, buy this router September 17, 2006 L. Michelle Brockway "brockway" Houston, TX USA This may be one of the cheapest routers out there, but it's cheap in every way. I spent hours either on hold or talking with poorly trained overseas "tech support" whose expertise consisted of (barely) reading a script. Eventually these computer whizzes determined that my D-Link router didn't work. They told me to send it back (on my nickel, of course), and they sent me another one, which also did not work, at least not with my computer system. After more wasted hours, I was referred to the one guy at D-Link who--supposedly--has mastered this router's bugs. The problem? He never answered the phone. And despite all my calls to him and all my voicemails asking him either to call me at work or to set a time for us to talk, he repeatedly returned my calls at 3:00 in the afternoon, the time when most people who can afford routers are working. Finally I had an epiphany: Life was too short to %*&#@ with D-Link. I packed up the router and sent it back to the CEO, Stephen Joe, with a letter. Then I went out and bought a Netgear router, and I was up and running in minutes. Mr. Joe never responded to my letter, but what else do you expect from a company that so clearly doesn't value its customers B0001PFQ08:not_a_reliable_router,_do_not_upgrade_firmware!:james_harper B0001PFQ08 D-Link DI-524 Wireless 54 Mbps High Speed Router (802.11g): Electronics electronics 2 of 3 1.0 Not a reliable router, do not upgrade firmware! September 5, 2006 James Harper NYC Have had this router for over a year. During this time the router constantly lost the internet connection, even when it's wired directly to my desktop PC. The disconnect can last anywhere from a couple of seconds to minutes. A new firmware (1.23) was released a few days ago for revision A (the version of the router I have). D-Link's website said the firmware "improved reliability" so I decided to upgrade. After flashing to the new firmware, the router will not let me into the control panel or respond to pings. The lights blink, that's all. I've reset the router, but this does nothing to restore the old firmware. D-link's firmware upgrade appears to have put this router out of its misery--which is perhaps for the best as it now forces me to finally go back to a reliable router company B0001YFWCQ:i_bought_2_pairs_of_this_radio:carlos_a._puello_matos B0001YFWCQ Motorola T5500R GMRS / FRS Rechargeable 8-Mile Two-Way Radio (2 Pack, Blue): Electronics electronics 1 of 28 2.0 I bought 2 pairs of this radio March 10, 2006 CARLOS A. PUELLO MATOS i bought 2 pairs of this radios and 1 of the pairs have a damage radio, the microphone dosen't work and i cant fix it!! :( im sand about it!!! B0001YFWCQ:not_happy_with_what_i_got:elliot_gonzalez B0001YFWCQ Motorola T5500R GMRS / FRS Rechargeable 8-Mile Two-Way Radio (2 Pack, Blue): Electronics electronics 3 of 18 1.0 Not happy with what i got February 24, 2006 Elliot Gonzalez San Jose, Costa Rica A while ago I purchased the same item, maybe a month, and I received what I paid for: 2 walkie talkies, 2 RECHARGABLE BATTERIES, and a CHARGING BASE for the walkies. In this last purchase I thought I bought the same things, I even paid the same amount of money, but neither the batteries nor the charging came in the package. Thank you Humberto Gonzalez San Jose, Costa Ric B0002CSK8U:bummer:robin_jordan_"upset" B0002CSK8U Razor Electric Mini Chopper Bike (Black): Electronics electronics 1 of 4 1.0 Bummer December 8, 2005 Robin Jordan "UPSET" SOUTH CAROLINA Bike did not run right from the beginning. THe battery did not stay charged. After awhile just quite running altogether. Company was not very usefull. Warranty only 90 days. Do not buy this peice of junk B00006B72I:kds_not_interested_in_long-term_customers:technet_guy B00006B72I KDS CD Organizer Electronic USB75-cd Capacity 1.8 Access Time: Electronics electronics 3 of 3 1.0 KDS not interested in long-term customers April 28, 2005 TechNet Guy I spoke with customer service rep at 800-283-1311. Devices have a one-year warranty. I stated that I sent in the Registration card, and asked if she would look up the purchase date. She said no, "Registration and Warrany are in different departments." She asked me to hold, and came back on the line stating that since this model originally sold in 2003, my unit went off warranty in 2004 unless I have the invoice. I called back about an hour later, after finding the invoice, and got the same customer service rep. She recognized me and belittled me for calling back and said unless I have a question, there's nothing they can do. I stated that I found the invoice as requested and she asked me to fax it to her. I did that, so far no response. We'll see if they replace the unit or not. Just an FYI...after the one-year warranty, there are no options. The do not offer parts or service after the one-year warranty B00006B72I:kds_cdo_not_ready_for_prime_time:c._j._west B00006B72I KDS CD Organizer Electronic USB75-cd Capacity 1.8 Access Time: Electronics electronics 1 of 1 1.0 KDS CDO Not Ready for Prime Time May 19, 2004 C. J. West Washington, IL USA I purchased two CDOs only to find out that some of the lights on one of them did not work. After 6 weeks, KDS finally replaced it. It did not cost me anything but time and frustration. After 2 months, my second one has now failed. Most of the trays do not eject. It is no longer returnable and I have CDs stuck in it. Do NOT make the mistake of purchasing even one of these. Go to K-Mart and get one of the old fashioned manual ones. You will be much happier B000BHWV2M:won't_return_money:marie B000BHWV2M Epson PictureMate Print Pack (2 Ink Cartridges/270 sheets of Glossy Photo Paper) - T5570-270: Electronics electronics 3 of 5 1.0 Won't return money September 6, 2006 Marie Redwood Falls, MN USA Adorama is a terrible company to deal with. They sent me a pkg of 2 Epson ink cartridges and 270 papers. I have called several times as the ink cartridges were not the correct ones. I returned them as instructed, written 3 letters and called. This started in mid July. I called 2 weeks ago (Aug 28th and a different gal said she thought I should have my money back and would see to it. That was over 2 weeks ago and nothing since then. I would recommend that anyone should NOT order from this company B000AUQICO:problems:robert_s._pollock B000AUQICO Delphi XM Roady XT Satellite Radio Receiver: Electronics electronics 0 of 1 1.0 problems November 23, 2006 Robert S. Pollock Los Angeles, CA USA I bought this unit to use with a boombox and it functioned well but after a few minutes it just went blank. I tried batteries in the boombox, AC power and two boomboxes because they thought the boombox was the problem But after two boomboxes I guess the problem is the Roady. Anyone else have this problem? I use the XM only at home with the boombox. Currently waiting for response from Crutchfield and Delphi. I will post again when (if) this is resolved. B000AUQICO:below_average_sound_using_fm_wireless_signal;_also,_cancelling_service_is_a_joke:rws_"rwscpa" B000AUQICO Delphi XM Roady XT Satellite Radio Receiver: Electronics electronics 1 of 6 2.0 Below Average Sound Using FM Wireless Signal; Also, cancelling service is a joke October 13, 2006 RWS "RWSCPA" Redondo Beach, CA USA This review is more about my several month's experience with XM satellite radio and the not-so-good quality using the wireless FM frequencies through our car's radios. I live in Los Angeles. I got this little Roady XT for me, and the XM2GO radio receiver for my wife. I was excited about getting these new satellite receivers in our cars. The Idea of having all these "no ads" radio stations playing through my car's FM frequency seemed cool. Setting up the unit and getting it to work was easy. Changing FM frequencies for the wireless transmitter is easy as well. It really is a neat little receiver. However, after setting up this unit in my car and the XM2GO in my wife's car, I was really disappointed in the music sound quality. The music sounds flat and with a hissy quality, almost monaural at times, and the volume seems a lot lower than the car's radio at the same volume setting. I had to turn the volume dial up quite a bit when playing satellite radio. The car's regular radio sounds much better than satellite radio if using wireless reception with any of the radio receivers, IMO. Besides, there are plenty of annoying ads and interruptions on XM radio as someone mentioned in another review. I thought about having the units professionally installed so that my wife and I wouldn't have to use the poor sounding wireless FM technology, but realized that both family cars have very expensive navigation systems and I didn't want the vehicle's factory warranty voided if some installer got inside our car's dash and accidentally messed something up. So about two month's ago, after several months of off-and-on use of XM radio service, I called to cancel my subscriptions. I had paid for a six month subscription for both receivers when I joined. As I expected would happen, when I called them to cancel, I was on the phone for allloooooonnnng time waiting for a customer service rep. Finally, I got to tell the rep all my relevant account information so I could cancel the service only to be put on hold and transferred to their "special" customer service department for cancellations where I was "accidentally" disconnected and had to call back and start all over again. Finally, after another long call to them, I was able to cancel my service.....or, so I thought. Yesterday, I was looking at my September credit card bill and saw that XM radio had charged my credit card for the next six months despite the fact that they assured me that my two accounts would be closed. I called my bank and had them reverse the charges and I may have the bank issue me a new credit card with different numbers in case XM tries to charge me again six months from now. B0001Y9UEW:disappointing:rick_w._kasper B0001Y9UEW Monster Cable RadioPlay Car Stereo Wireless FM Transmitter (MBL-FM XMTR): Electronics electronics 1 of 1 2.0 disappointing August 9, 2006 Rick W. Kasper Purchased the transmitter for my MP3 player. Reception is poor with constant static through my car radio. The instructions (which you don't see until you have already purchased the product) says antennas integrated into the window can have problems. Since that is the only purpose for this device, I don't understand why Monster is selling a marginal product B00000J47L:i've_just_replaced_my_set_of_these:charles B00000J47L Energizer NH15BP-4 ACCU 2500mAh Rechargeable AA Batteries (Four-pack): Electronics electronics 2.0 I've just replaced my set of these November 10, 2006 Charles NC I've had a set of these batteries for a year or two now. The last few times I've taken them out for vacation use in camera, I've had the same problem: I charge two sets (one Kodak and one these Energizers) when I put the camera away. A few weeks later, I go off on vacation. The Kodak 1600mAh set will last me all day on the charge from a month or so before. The Energizer 2500mAh set might last me half a day, having lost most of its charge from sitting for the same number weeks before use. After missing out on some pics on my latest trip due to dead batteries, I'd had enough. The Energizers are going in the bin, and I just followed the good reviews to buy a set of Duracells to replace them. B00000J47L:great_for_a_few_months,_then_won't_hold_charge:e._shen B00000J47L Energizer NH15BP-4 ACCU 2500mAh Rechargeable AA Batteries (Four-pack): Electronics electronics 1 of 1 2.0 Great for a few months, then won't hold charge October 22, 2006 E. Shen Iowa I got these batteries just over a few months ago for my portable GPS unit that I use often on my travels. In fact, I bought eight of them (two packs of 4). I was upgrading from my previous set of 1600mAh Rayovac NiMH AA batteries that were still going strong after 2 years. When I saw the new energizer 2500mAh rechargeables I was excited to purchase them thinking they would last longer than my old 1600mAh Rayovacs. Boy was I wrong! For 2-3 months, the 2500mAh energizers worked well. A charge lasted about 6-7 hours in my portable GPS unit. I was getting roughly 5.5-6 hours on my old 1600mAh Rayovac AA's. My GPS unit is spec'ed for 6 hours on a pair of AA's so the new 2500mAh energizers seemed to work flawlessly. Now they work okay and seem to be getting worse each time I charge them, appearing to hold less of a charge each time. For the last month or two (4th & 5th month after their initial purchase) I'll be lucky if I can get 4-5 hours of use out of them in my portable GPS unit. I now get roughly 3.5-4 hours of use out of them. I pulled out and tried my old 1600mAh Rayovac AA's and once again got approximately 5.5-6 hours of use out of them in my GPS unit - and my trusty Rayovacs are just over 2 years old! I thought I might have had some defective energizers but I can't seem to get any pair of combinations to hold a decent charge. Charges just don't seem to last - it's really disappointing. I am going to look at another brand for high capacity 2500+ mAh NiMH batteries to replace my 1600mAh Rayovacs. Would be great if the energizer could hold its charge. But because they don't, I do not recommend the energizers to anyone B00000J47L:junk_nimh_batteries:gary_w._cleveland B00000J47L Energizer NH15BP-4 ACCU 2500mAh Rechargeable AA Batteries (Four-pack): Electronics electronics 5 of 8 1.0 Junk NiMH batteries September 9, 2006 Gary W. Cleveland I bought several packs of these batteries 6 months ago. They were great at first, but now most of them won't hold a charge at all. They discharge in 2 weeks without even being in a device. DON'T buy them! They're JUNK B00006JILC:good_sound,_when_they_stay_on_my_ears.:l._decker B00006JILC Koss KSC22 Sportclip Headphones (Red/Silver): Electronics electronics 2.0 Good sound, when they stay on my ears. November 9, 2006 L. Decker Clifton, NJ, USA I had such high hopes for these headphones. I wanted to hook them over my ears and go running whenever I pleased. But it was not to be. The day after I received my headphones, my grandmother passed away. I packed my bags, put my idpod and headphones in my carry-on, and headed to the airport. Once settled in my seat, I tried to put on my headphones, but they kept falling off my ears. I tried to adjust them, bending the earclips all sorts of ways, but it was extremely difficult to do so, and my adjustments wouldn't hold. If I couldn't get these headphones to stay on when I was stationary, running was out of the question. Maybe others have had better luck. Maybe my ears are just too small for them. But I am not impressed with these headphones B00009V2PN:one_word_-_lousy:"jbohnen" B00009V2PN Panasonic KX-TCA98 Headset with Dual Wear Options: Electronics electronics 24 of 25 1.0 One word - LOUSY February 23, 2004 "jbohnen" Lombard, IL United States You would think that Panasonic Cordless phone and Panasonic Hands-Free Headset would work well together, being that they are sold by the same company. Well, that is clearly not the case. I bought this headset specifically for the reason that it is sold by Panasonic to work with their cordless phones. I've tried it a few times and each time I get the same response from the person I'm talking to. They say I sound too far away, that they can barely hear me. This product is clearly not worth it B0006BB6YW:hp_96_ink_cartridge:walter_l._johnson B0006BB6YW HP 96 Black Inkjet Print Cartridge with Vivera Inks (C8767WN#140): Electronics electronics 2.0 HP 96 Ink Cartridge November 9, 2006 Walter L. Johnson I like the HP 96 because it can be used in many HP printers that use the HP 98, but its a better deal than the HP 98 because it contains almost twice as much ink. HP's ink cartridges provide excellent performance, but I think they are over priced B000AY0IT4:make_sure_you_keep_your_old_mouse_and_keyboard:nicholas_s._mead B000AY0IT4 Logitech diNovo Media Desktop Laser: Electronics electronics 1 of 3 1.0 make sure you keep your old mouse and keyboard August 18, 2006 Nicholas S. Mead Looks beautifull......works about 40% of the time. Be ready to reinstall the software weekly. Very expensive for something that dosent work all the tim B00009YW8B:wg311v2:aj B00009YW8B Netgear WG311 54 Mbps Wireless PCI Adapter: Electronics electronics 1.0 wg311v2 November 20, 2006 aj Mansfield, Texas United States Terrible product. I have tried using the Windows XP wireless application with just the netgear drivers and tried using the Netgear wireless application with the netgear drivers. Using either one the card disconnects at random using WPA, then you have to repair the connection and sometimes reboot to get the connection back. I reinstalled windows both times I changed drivers just to make sure nothing was conflicting with it, but nothing helped. Latest drivers are 2_0_0_7 and were published in Nov 2004, so netgear has moved on to other cards and is not supporting this one any longer B000E1FYRO:extremely_uncomfortable,_but_good_sounds:a_buyer B000E1FYRO Sennheiser HD 205 Studio Monitor DJ Headphones w/ Swivel Ear Cup: Electronics electronics 1 of 1 2.0 extremely uncomfortable, but good sounds October 21, 2006 A Buyer Los Angeles, CA these are extremely uncomfortable. It's too tight and will hurt the ears. However, if you're head is small enough, perhaps it might be okay. On the bright side, they sound extremely well B000E1FYRO:good_sound,_terribly_uncomfortable:chris_desalle B000E1FYRO Sennheiser HD 205 Studio Monitor DJ Headphones w/ Swivel Ear Cup: Electronics electronics 9 of 11 2.0 Good sound, terribly uncomfortable May 3, 2006 Chris Desalle Do not get these headphones, as they are way too tight. I have been using them for a month now, hoping they would break in more, but they have not. You can only have them on for 20 minutes or so before your ears hurt so bad you have to take them. Im not sure why they made them so tight, but they would probably best fit a 10 year old. B000EPYLJ2:why_the_zboard_isn't_worth_it:c._merryman_"bukkake_boy" B000EPYLJ2 Ideazon MERC Gaming Keyboard: Electronics electronics 1 of 2 2.0 Why the Zboard isn't worth it September 7, 2006 C. Merryman "Bukkake Boy" Beverly Hills, CA I bought the Zboard and was sorely disappointed in it's playbility, efficiency and value for several reasons: -The left buttons, which are the feature of the keyboard, are based on a mirroring system. You experience keyboard lag at times because the board has to interpret the button presses based on the zboard program, then the game. I personally had to press some buttons twice, or even three times in order for that command to register. -The left buttons cannot be configured to your game, you must configure the game to it. The templates for different games cannot be modified, all it does is change the button configuration. There are no patches for configuring the keys to how you want it. -According to the website, the top buttons for media can only be used with windows media player. If you use winamp, itunes, or anything else it wont work. -You cannot program any macros into any of the buttons. If you are looking for a keyboard that can autofire or program keystrokes this isn't it. - The numpad is configured differently than a normal keyboard. This can actually be a good thing if you like having a compacted pad. I found it frustrating since I put attack commands on the numbers, and would press the wrong one sometimes because of the layout. I experienced a lot of frustration with this controller while pvping in world of warcraft. The top buttons on the left side of the board give you access to a bigger arsenal of spells and abilities when programmed right. The problem is remembering how zboard configured the button layout. I would constantly get wailed on because a button wasn't where I originally remembered it to be. This forced me to sit in the key bindings menu to configure the buttons to where I could remember. After completely revamping my bindings, I gave up, restored my defaults, and used a regular keyboard instead. There is nothing gaming enhancing about this keyboard beyond having an accessory on the left side that looks cool because the buttons are grey and red and contoured to your hand. To achieve the same effect as the zboard, turn your current keyboard slightly to the right and enjoy. B0000C20XD:hummmmmmmmmmmmmmm...:r._durkin_"my_opinion_only" B0000C20XD Altec Lansing VS4121 2.1 Computer Speaker System, 3 piece: Electronics electronics 3 of 3 2.0 Hummmmmmmmmmmmmmm... January 15, 2006 R. Durkin "my opinion only" Bay Area, CA I picked these speakers up because the price was right and they sounded great in the store. But I get them home to my quiet house and lo and behold the subwoofer constantly hums. I'm not an audiophile and therefore not overly particular about sound... other than this annoying hum from the subwoofer. Since these are set up in my home office where I spend a lot of time reading, I find this humming far too distracting. Although the price is good, I'd prefer to pay a little more just to omit the subwoofer's constant hum. I'm returning these speakers today and will shop around for another set B000BNDEZY:firmware_buggy:jimb B000BNDEZY Buffalo Technology AirStation Turbo G High Power Wireless Ethernet Converter ( WLI-TX4-G54HP ): Electronics electronics 2 of 2 1.0 Firmware Buggy September 10, 2006 JimB Georgia Can not get this thing to connect to my Linksys Wireless router. Problem is not that it doesn't see the LinkSys, the problem is that the v2.50 firmware in the WLI-TX4-G54HP is _buggy_. If I try to enter a 10-digit hex key for 64-bit WEP encryption-- it says I have to enter a 5-digit value. This is the 2nd one I bought (I returned the first). Piece of junk, and _no_ support from the manufacturer B00006I56A:please_don't_bother!:n._j._dellolio B00006I56A Coby CX-TV1 5" Black-and-White TV with AM/FM Tuner: Electronics electronics 2 of 3 1.0 Please don't bother! October 9, 2006 N. J. DELLOLIO San Francisco, CA United States One star is too many! (It should be negative one). This sad excuse for a television/radio has to be the worst piece of lame crud I have ever bought in my entire life. Picture fades into black, terrible reception which fades in and out as you move about the room, smells like burning plastic after a half-hour, and so on. Please, Amazon shoppers, don't waste any money on this! You might just as well throw the $15 out the window. Step up to something more reliable from a better manufacturer B000BWACX2:what_if_you_want_to_use_it_outside_of_your_car?:j._adams B000BWACX2 Griffin 9501-TRIPCB iTrip Auto FM Transmitter and Auto Charger for iPod: Electronics electronics 1 of 13 2.0 What if you want to use it outside of your car? October 25, 2006 J. Adams Bloomington, MN United States I love bringing my ipod to parties and broadcasting it through the stereo, what use is this thing then, NONE! Thanks for making us spend so much money Apple. This type of stuff should be built into the iPod for $400!! B000B9OEFM:looks_good......._but:greg_rees_"greg" B000B9OEFM Apple MA094G/A iPod Nano Armband (Grey): Electronics electronics 6 of 6 2.0 Looks good....... but August 20, 2006 Greg Rees "Greg" Midwest I purchased this armband to hold my Nano during workouts. The band barely fits my arm and tends to slide down the arm while running or cross training. Looking for a replacement right now B000B9OEFM:horrible,_horrible,_horrible:a._bower B000B9OEFM Apple MA094G/A iPod Nano Armband (Grey): Electronics electronics 7 of 7 1.0 Horrible, horrible, horrible June 9, 2006 A. Bower I adore my nano, but this armband is one of the worst products I have ever bought. I work out quite a bit with the nano and the band comes off multiple times during my workout. The spacing of the velcro dots means I never get exactly the right fit and the band gets ripped off anytime I do weight lifting close to my body. It is also as other reviewers mentioned hugely overpriced for what it is. I am ordering a band from a different company and this will go straight to the garbage. B0000APCIV:pay_attention_to_technology:j._d._robinson B0000APCIV Terk TV44 Amplified Clip-on Outdoor TV Antenna for Dual LNB Satellite Dishes: Electronics electronics 8 of 8 1.0 pay attention to technology June 23, 2005 J. D. Robinson I have a dishnetwork 942 HDTV DVR system. This antenna is designed for a much older system. It doesn't fit the dish very easily and was difficult to secure. I can't tell if it works because so far it just seems to be incompatible with my system B00006HO37:does_not_support_19"_or_larger_crts: B00006HO37 ALLSOP MetalArt Jr. Printer, Monitor or Peripheral Stand: Electronics electronics 3 of 5 2.0 Does not support 19" or larger CRTs January 8, 2004 Do not be fooled when the description says this stand holds up to 21" monitors - that is only true for *flat-panel* monitors, not traditional CRT monitors. Note that the weight rating says 50 pounds! Most standard 19" monitors weigh 60 pounds or more. I purchased this item at a Staples near me, and brought it home to use with my 19" CRT. After placing the monitor on the stand, the stand bobbed up and down and seemed as if it would completely bend at any moment B000EPJLGK:so_bad_screen:may�re_"weblord" B000EPJLGK Apple 30 GB iPod video White (5.5 Generation): Electronics electronics 1 of 19 1.0 So bad screen November 24, 2006 May�re "weblord" I can't understand how apple sell so much ipod video while they are so bad in front of an archos. Just look at the screen and you'll understand ! Archos is an hundred times better B000AY649C:amazon_lies:s._lee_"serious_buyer" B000AY649C Logitech Cordless Desktop MX 3000 Laser (967553-0403): Electronics electronics 0 of 6 1.0 Amazon lies September 30, 2006 S. Lee "Serious Buyer" Boston, USA Amazon says that it is in stock. Do not believe it. I ordered it at 8/26 and they could not even ship it at 10/1. They delayed it several times saying that it is in stock. Of course the website says that it is always "IN STOCK" and can ship it now. Maybe their now is like 3 months... My current keyboard has broken keys, and I have serious inconvenience because of this B00000J4GE:be_wary.:kamisuri_astalis B00000J4GE Memorex 32020700 Jewel Case Inserts (50-Pack): Electronics electronics 5 of 5 2.0 Be wary. August 15, 2005 Kamisuri Astalis MO USA While certain labels with this software are much more easier to work with such as the CDs and the general labels, I found this product much less than satisfactory. The inserts and the software don't align too well and are a few centimeters off...especially on the lower half of the page. If one wants to keep the insert regardless of whether or not the "cut offs" are present it would be best if the paper was inserted within the opposite position in the paper tray in the printer so one can cut to the size needed. Otherwise, I would suggest what another Amazon customer has done. Use cardstock paper....at least for the back inserts. And trim with either a scissors or paper cutter. A product should do what it promises it will do. Unfortunately, this one does not. At least, within my experiance this does not measure up to what was previewed within the Memorex beginner's package w/ CD label stamper. Two stars for at least being able to print the front side. Although it would have been nice if they had said so without stating they could do both when they cannot B00000J4GE:will_do...:anders B00000J4GE Memorex 32020700 Jewel Case Inserts (50-Pack): Electronics electronics 11 of 12 2.0 Will do... November 11, 2000 Anders Marina Del Rey, CA USA I have used these labels for a long time, mostly because they seem to be the only ones out there. The paperstock is good, but if you have a good printer the paper won't do it justice. The labels always end up looking kinda cheap. I would love to see Memorex make a package with glossy paper/high end paper. Maybe Epson will beat them to it B00004UF7T:little_to_offer_over_the_gps_12:craig_a._wilson B00004UF7T Garmin eTrex Summit Handheld GPS Navigator: Electronics electronics 9 of 17 2.0 Little to offer over the GPS 12 December 8, 2001 Craig A. Wilson MESA, AZ USA I really love my Garim GPS 12. It is easy to use and move between screens and features. The Summit is not as easy to use. It is not as convenient to identify way points, does not work with mapping software and its display is to simple. It was not a step up but sideways. I use it in conjunction with my GPS 12 mostly just to keep the track log B000BXEUDY:was_nice_until_it_broke:l._morin B000BXEUDY ViewSonic VA1912WB 19" Widescreen LCD Monitor (Black): Electronics electronics 1.0 Was nice until it broke November 24, 2006 L. Morin USA I bought this monitor in June 2006 and at first was quite pleased with the nice display. Less than 6 months later, in November 2006, I heard a strange noise while using the monitor and all of the sudden the screen went very bright -- like an overexposed photo. I'm currently working with Viewsonic to get it repaired (I must mail it to CA to be repaired, postage must be paid by me). All in all a disappointment and a hassle. Next time I'll buy a name brand B0000524PB:great_cables,_until_one_of_the_colors_goes_out!:wesley_gallagher_"mac_enthusiast" B0000524PB Monster Cable GameLink 400 Component-Video Cable for PlayStation 2 (10 feet): Electronics electronics 1 of 3 2.0 Great cables, until one of the colors goes out! November 26, 2005 Wesley Gallagher "Mac Enthusiast" Charlottesville, VA I bought these cables, brought them home and immediatly hooked them up. I set the PS2 for component and set my TV for it as well. And it looked awesome....for about 2 weeks. Then the short in the cables caused only the blue and green colors to work making everything look creepy. It would just fade back and forth until it just stop and the TV would have all the colors washed out in green. I found that I could stick a PS2 case under the cables at the base and it went away. But sometimes someone would move the case and it would come back. I have the PStwo (Small version) and the PS2... the small version has the problem, but the large one doesnt. So dont get them if you have the small version... The large one works fine. B000BB5T2M:great_looking_maps,_can't_find_its_way_out_of_a_paper_bag.:r._iser_"electronics_fan" B000BB5T2M Lowrance iWay 350C Portable GPS Navigation System with MP3 Player and Picture Viewer: Electronics electronics 5 of 6 1.0 Great looking maps, can't find its way out of a paper bag. September 16, 2006 R. Iser "Electronics fan" Maryland I logged 870 miles with the iway 350. 270 miles around maryland it was / is a great item. I took it on our first trip to New York and Long Island and it was terrible. The first problem occurred on the New Jersey turnpike. I was supposed to use the turnpike from start to exit 18 and at exit 4 we stopped to eat. The unit said I was off course because the rest area was 100 feet from the highway. However when we returned to the highway the unit could not chart the course any more. It said I was doing 95 miles a hour when i was doing 70, and it would lose satellites and go searching for them in the middle of the highway no obstructions of any kind anywhere. I even pulled over at exit 6 and we waited for 20 minutes to see if we just needed to stop the car for it to do the job. It did not recalculate our course until after exit 18 some 100 + miles from when it acted up. We even tried a full restart and cancel route and retried again from the address book and from direct typing the information again. About 1 mile from our destination it worked for 2 blocks and was lost again. Then after 2 more blocks we found where we where going. We often get lost on this trip this is why we purchased the unit. Then on the trip from the Bronx to Long Island a 30 mile trip it stopped 5 blocks into the journey and was recalculating. I had to call the people we where visiting and they directed us by phone. However about 1 mile from their place it started working again. We used it on long island with no trouble at all. Then on trip back to the Bronx it worked pretty good only losing its position once on a major highway no trees or obstructions. Then on our way back from the Bronx to long Island it was lost half the way finding position and calculating . The same exact way we went in both directions but it was clearly not right leaving the Bronx. On our way back to Maryland it operated pretty good after a short stretch of lost signals and redirecting and we used exactly the same roads in both directions. I did update the software to the new 1.2.0 days before we took the trip. Also charting the 212 mile course to the Bronx NY took close to 20 minutes, then the extra destination to Long Island a 30 mile addition took the Iway 350 30 or so more minutes. I figured with all that time the trip home calculations would be faster but I fell asleep after waiting over a hour for it to complete the task. I feel this is one issue the unit has. Longer trips take so long to calculate so when it thinks your off track it takes forever to chart a new course. On short runs under 20 miles it was very fast. I returned the unit and got a Garmin C530. The C530 is a very nice unit fast in every respect. B000BB5T2M:how_to_get_lost!_over..:r._riedel_"tybee_bob" B000BB5T2M Lowrance iWay 350C Portable GPS Navigation System with MP3 Player and Picture Viewer: Electronics electronics 5 of 6 2.0 How to get lost! Over.. August 1, 2006 R. Riedel "Tybee Bob" Tybee Island, GA USA The 350C is well packaged with almost current programming. It only got me lost eleven (11) times on a 865 mile trip:All cities in Georgia - Tybee Island to Pine Mountain to Newnan to Stone Mountain and return to Tybee Island. (I packed and returned the unit the day after getting home.) It may suit others well, but I can not rely on the unit. Four of the eleven lost episodes were because newly constructed highways were not recognized. Five were due to the unit reacting too slowly in rapid turning sequences. (One wrong turn took me sixty miles out of the way.)Two were for unknown reasons. The unit seems to take forever to acquire available satellites. Instructions are clear, but preferred views automatically switch to "Map" even when not wanted. I need a faster reacting unit that allows programming while enroute to a destination (by a passanger, of course. B000BB5T2M:three_units_in_three_weeks!:aaron_c._burt_"a-train" B000BB5T2M Lowrance iWay 350C Portable GPS Navigation System with MP3 Player and Picture Viewer: Electronics electronics 2 of 3 2.0 Three Units in Three Weeks! July 31, 2006 Aaron C. Burt "A-Train" Ft. Lauderdale, Fl. I bought this unit on a wim. I was leaving for a business trip and needed a GPS. I really like it and it worked well for me. Unfortunalty the unit wouldn't hold a charge on the battery. So I returned it for another one. It worked for one week and then I had the same exact problem. Which to me is not a good sign of quality when the same problem happens on multiple units. When I tried to return this unit, the unit I was given didn't work at all, it gave me an error message when the GPS booted up. Unfortunaltey the vendor I purchased it from didn't have any more units that I could exchange it for. So I called customer service and got an RAN. I am hoping when I get the next unit back in 7 to 10 days that I don't have any more problems B000932AMO:so_many_problems!:a._harris B000932AMO Apple 1 GB iPod Nano White: Electronics electronics 1 of 3 1.0 So many problems! November 9, 2006 A. Harris Ohio I received the iPod quickly which was a plus. But it was horrible when it would only download 5 songs. I had friends who have the same iPod try to fix it and it never worked. I sent it back and requested a refund. It has been a month and a half and I have YET to get my $120 back. B00067ARYQ:completely_unreliable:ed B00067ARYQ Netgear WG111T 108 Mbps Wireless USB 2.0 Adapter: Electronics electronics 1.0 Completely unreliable July 16, 2006 Ed San Francisco, CA I bought this since it's economical, compact, didn't need cabling (although it has an extension if you need it), advertised a whopping 108 mbps. Well so much for that: 1) Drivers are problematic and causes conflicts with XP SP2. My first ever blue screen of death in about 3 or more years running XP came this item 2) It is EXTREMELY UNRELIABLE: - already mentioned repeatedly, it overheats - it drops connections randomly and yes, the only way to re-acquire the signal is to unplug and plug back in - It's utility is worthless, just install the driver (if you can). If you try using WPA, forget about using this utility, just use Windows to configure it. - I've also found out that it's better if you just remove this utility from the STARTUP (don't run it at all) so that Windows can do everything it needs to connect, which is faster and more reliable. Be careful not to UNINSTALL, since it will also remove the driver...just remove it from your Windows Startup folder list. Netgear has an FAQ about this problem, but I'm not going to tweak Windows and risk more stuff for this cheap piece of hardware. 3) 108 MBPS? Yeah right. You'll need the RIGHT KIND OF access point/wireless router for this, if not, it's 54 mbps. This was one of the selling points, but it's definitely a "gotcha". You're limited to specfic equipment, specific channel (6), so if you have neighbors on the same channel, well, you get the picture B0002GRUJ6:great_picture_--_when_signal_doesn't_drop:d._hawks B0002GRUJ6 StarTech.com 6FT HDMI TO HDMI DIGITAL VIDEO ( HDMIMM6 ): Electronics electronics 18 of 26 2.0 Great picture -- when signal doesn't drop November 29, 2005 D. Hawks Rochester, NY USA All HDMI cables are created equal...well, yes and no. While the signal is 100% digital (which means that $20 & $150 cables give the exact same picture quality), it doesn't mean that each HDMI cable type gives the same rejection of noise (signal to noise ratio) as other HDMI cables. I've had this cable a few weeks now, and am consistently getting digital "dropouts" every now and again (only that part of the image looks scrambled for a few seconds) -- very annoying while the action is in the scrambled section. Went out and bought the Monster HDMI cable (not exactly cheap, though...) -- the Monster cable gives the exact same picture quality as this cable, except the Monster cable did not experience the digital "dropouts". If you don't mind seeing the dropouts every now and again, this is a great cable. If you want a picture that doesn't experience any dropouts, get the Monster cable. Regardless, the picture quality is the exact same between the cables (minus the dropouts) B0000DJEK7:not_happy:jayakrishnan_adukkadukam_"jay" B0000DJEK7 Magellan RoadMate 700 Vehicle GPS with Windshield Mount: Electronics electronics 0 of 1 2.0 Not happy November 5, 2006 Jayakrishnan Adukkadukam "Jay" CA, USA I bought Magellan RoadMate 700 Vehicle GPS 2 months back and its not working as expected. its very poor in locating the the place and sometimes don't even work. Many times this sytem got hung and power off and on again is the solution to get it work again. Might this product is very good in market, but I got the bad piece B000636FJG:does_not_work,_bad_service:mauro B000636FJG Sony DRX710UL DVD+R Double Layer External DVD+-RW Drive (16x): Electronics electronics 29 of 36 1.0 Does not work, bad service June 11, 2005 Mauro New Haven, CT, USA The DVD burner connected very easily through USB, was immediately recognized by WinXP, the software installation was fine. I was beginning to feel good. However, whenever I burned a DVD (I tried 4 different brands, some R, some RW etc...), several files would contain errors, and would be completely unreadable. The burning process moreover does not detect this: one needs to verify the data written to check and find these errors. Moreover, the firmware update just does not work on my machine, pardon, machineS. Completely standard Dell machines, all latest WinXP and drivers, good CPUs (3Ghz and up), lots of memory, big hard-drives. I called customer service to try to solve the problem. First of all the average waiting time to get to a technician was about 30 minutes. The rudeness and the plain lies these guys give you are amazing. To make a long story short, I had to call 3 times. First guy: oh, "of course it doesn't work, you have EasyCD creator installed!". Ok, I buy it, I go through the (painful) uninstallation process of Roxio's software. No problems solved. Second guy: "Oh, of course it does not work, it requires 10Gb of free hard-drive space! It's written on the box". Plain lie: on the box it says you need 10Gb for NeroVision (for burning videos), but only 1Gb for Nero. Quarrel (they are tough!) with the guy who could not care less about the fact I got him lying, or that the product description is wrong. Ok, patiently I freed up 10Gb from hard drive, try again, exactly same problem. The only thing they could offer in the end was a replacement. I got perhaps relative lucky because the replacement will be a 720, not a 710, since 710 is not manufactured anymore (wonder why?). Notice I tried this on two different machines (one laptop and one desktop), with identical results. Other lie: I noticed, as somebody else here, that the Nero software provided writes only on Sony drives: so if Nero is really the only software that should be installed because of conflicts with Roxio (et al.?), you will never be able to use your own CD drive to burn CDs. How ridicolous is that???? The technician said this is because I had both software(s) installed, but that was another lie. The incompetence of these guys is beyond belief. If the new drive will not work, I hopefully will get a refund through my credit card. You know, the technician even said that that is not possible, credit cards companies do not do that (LOL) B000636FJG:good_drive_when_it_works,_but_warranty_support_is_awful.:gman79 B000636FJG Sony DRX710UL DVD+R Double Layer External DVD+-RW Drive (16x): Electronics electronics 17 of 19 2.0 Good drive when it works, but warranty support is AWFUL. June 8, 2005 gman79 I am on my third drive now, thanks to the first two breaking. Sony sent me the 720UL as a replacement for my 710UL, but it's the same drive with the exception of some faster burn times and the 720UL doesn't support MAC OS. The Sony Service Center in Manning, IA gave me a huge runaround... first they agreed to pay for return shipping on the second defective drive. Then they called me back 2 hours later and refused to pay for the shipping. What a joke. Good drive when it works, but may god have mercy on you if it breaks after the return period. B0000D8LSW:no_way!: B0000D8LSW Apple iPod FireWire Power Adapter: Electronics electronics 8 of 41 1.0 No Way! March 20, 2004 who would even think about buying something that plugs into the wall for sixty bucks! maybe thats why the ipod is so expensive............... B00005NWV1:not_compatible_with_windows_2000/xp,_horrible_tech_support_-_avoid!!:honest_opinion B00005NWV1 NETGEAR FA511 32-bit CarBus PC Card Mobile (10/100): Electronics electronics 1.0 Not Compatible with Windows 2000/XP, HORRIBLE Tech Support - AVOID!! July 10, 2006 Honest Opinion Boston, MA USA I had this adapter running in my the Cardbus slot of my Windows 98 computer and it ran fine. I installed it on my Windows 2000 laptop. Well, my first sign of trouble was a warning popup when I installed the drivers that the drivers were not certified by Microsoft. So, imagine my shock when my brand new computer constantly got Blue Screen of Death (BSOD) crashes. Big blue screen, loss of data, computer freezes tight, power button inoperative, and when you have to use a pin to press that tiny little laptop reset button on a brand new computer, well, we all know that's when you're in Computer Hell. I'm a Microsoft Certified Professional so I was able to narrow down the source of the problem. After definitely identifying the FA511 as the culprit, I contacted Netgear's online tech support. And that's when things really started to get ugly. It took forever for Netgear to finally give me an answer. This was after days of inactivity, wildly inappropriate responses, and repeatedly requesting same information from me. Finally, Netgear escalated the problem to their next level of tech support and I was shocked to read their solution: "This is a Windows issue regarding permissions and ***16 BIT*** compatibility mode" While they were vague as to the exact nature of the problem, and contradicted themselves as to whether compatibility mode had to be enabled or disabled, their solution was straightforward: I was directed to a Microsoft Knowledge Base article which tells you how to enable Compatibility Mode - and for 16-bit compatibility mode I had to make my nice clean Windows 2000 computer compatible with Windows 95 (yes, ninety-five). So, while the FA511 hardware is a 32-bit Cardbus adapter, apparently their drivers are 16-bit!!! No wonder the FA511 was never certified for Windows 2000. And I wouldn't trust it for Windows XP either. There are other Ethernet adapters out there by 3COM, Belkin, Linksys, SMC, and Xircom that work flawlessly with Windows 2000/XP by companies that will respond to your questions. Go get them. Avoid the FA511 B000IK5XWW:no_way:will_moore B000IK5XWW Apple iPod USB Power Adapter: Electronics electronics 5 of 15 1.0 No way November 9, 2006 Will Moore Monroe, GA USA No way am I purchasing this for my iPod. I would love to be able to charge my iPod away from my iMac, but I refuse to purchase this. This should of been included in the box. It is a tremendous ripoff to buy an AC adapter seprately (and at $30), but then again, I'm sure Apple is making a ton off of this gimic, but I refuse to contribute. I can see not including a dock, A/V cables, etc, as those aren't essential iPod accessories. But an AC adapter? Come on. Bad Apple. Bad! On the plus side, this AC adapter is smaller and comes with an iPod to charger (or iPod to computer) cable, which the previous model did not include. It's still a ripoff, though B00029ZV0I:nice_features,_but_can't_compete_with_cox_dvr:simon_mall_"chris" B00029ZV0I TiVo TCD540080 Series2 80-Hour Digital Video Recorder: Electronics electronics 7 of 10 2.0 Nice features, but can't compete with Cox DVR July 16, 2006 Simon Mall "Chris" Broken Arrow, OK United States I have been a DVR user through Cox Cable for approx. 1 yr, and have always been disappointed. I have kept my eye on Tivo for some time, and when my DVR box went out for the 2nd time, I decided it was time to try Tivo. I got a refurbished Series2 DVR that was free for signing a 1 yr commitment for $12.95 per month. I received the Tivo only 2 days after I ordered, very impressive since I didn't pay to have it shipped that quickly. The setup was reasonably straight forward. I had heard so much about Tivo that I had very high expectations, and here are the problems I encountered that surprised me: 1) My first mistake was not recognizing that you have to get a Dual tuner unit to be able to record 2 seperate programs (DVR does this automatically). So I ordered the wrong unit. To be honest, I don't see how this service is very useful at all with only a single tuner, my family relies on dual tuners A LOT. I am shocked that Tivo even offers a single tuner system, to me it's like a tricycle compared to a 10 speed, a dual tuner is so much more useful. 2) I thought I would be able to hook up a wireless receiver to connect to my home network. No, you have to buy theirs for $40 to $50. Since I didn't know that, I had to rely on the phone line option. This really stinks, it is very very very slow. I spent 2 hrs trying to download one days programming, the system kept getting interuppted during download (yes I disabled call waiting). 3) When you use the online program guide, it covers up the entire screen. My Cox DVR puts the TV in upper right corner (approx. 1/4) asnd the rest of the screen lets you see the guide. We use this all of the time to see if there is anything better on, but that won't work so well with Tivo. Plus, scrolling up and down is painfully slow, the screen takes for ever to refresh. 4) Similarly to item 3 above, when you review recorded programs the show you are watching is turned off completely, you can only see the Tivo guide. Again, Cox DVR lets me look at my list and delete files etc.. all while my TV program stays visible in the upper right corner. 5) Remote wouldn't work with my 42" Akai plasma. I can't fault Tivo too much on this one, none of the universal remotes seem to work with this TV for some reason. I did love some of the Tivo features and wish my Cox DVR had them: 1) Wishlist 2) Tivo Suggestions 3) Can access your Tivo through internet 4) View photo's through Tivo. In the end my items # 3 and 4 were things I just couldn't get past, so I returned my Tivo. They were friendly and helpful and I really wanted to like this product, but in my opinion it's not able to compete with the speed and power of the Cable companies DVR. B000F4C2AM:junk,_sorry_panasonic:tall_paul B000F4C2AM Panasonic DMR-ES15S DVD Recorder with DV Input: Electronics electronics 3 of 6 1.0 Junk, sorry Panasonic September 24, 2006 Tall Paul San Diego, CA United States I bought a lot of Panasonic stuff in the past without any problems but the picture quality on this thing is awful, even at the highest quality setting. All I saw were blocky artifacts that seemed to be blinking. I even had the DNR (digital noise reduction) enabled and it didn't help. Most recordings skipped and stuttered at the beginning. I took it back for refund and Best Buy told me this model is known for doing that. I don't see how Panasonic can put their name on this junk. Those cheap $99 recorders you find at Walmart have better quality than this. B000IK5YZ8:fm_remote_users_beware:william_e._hamilton B000IK5YZ8 Apple iPod nano 2nd Generation Armband (Gray): Electronics electronics 7 of 14 1.0 FM remote users beware October 2, 2006 William E. Hamilton Rochester Hills, MI USA Heaven help you if you want to use this with the FM remote -- a very common usage at heath clubs which provide TV rebroadcasts over FM. The FM remote connects to the iPod via a large plug on the left hand side. The armband provides a small circular hole on the right hand side, but no means of connecting the large FM remote plug B0000DDAED:portable_tv:corabeth_"my1k9" B0000DDAED Jensen J50-MCTV Portable 5" Color TV with Radio and Mounting Bracket: Electronics electronics 4 of 16 1.0 portable tv January 18, 2004 Corabeth "my1k9" Vermont This portable color tv doesn't give me any channel that you can actually watch. I returned it and I was credited. However, much to my surprise I received the same five inch tv as I had returned. It already cost me to have it returned. Since I didn't ask for it, should I consider it a gift B0002V8KX6:fuzzy_sound_and_worst_customer_service_ever!!!!!!!:m._reed_"reedmt" B0002V8KX6 Linksys PAP2 Phone Adapter for Vonage Internet Phone Service: Electronics electronics 1 of 5 1.0 Fuzzy sound and WORST CUSTOMER SERVICE EVER!!!!!!! July 7, 2006 M. Reed "reedmt" Hinesville Georgia Stay away from vonage! I have had it for several months, and have been trying to cancel it. I have been put on hold a MINUMUM of 45 minutes to and HOUR each time, and then transferred to someone ELSE who then does the bait and switch AGAIN. When you go to their web site, the only thing you can get is their custumer service number, which takes you RIGHT BACK to the same old nonsense. I need to cancel because of a military deployment, and all I'm getting is a run around...the same thing happened with AOL, but this is EVEN WORSE. There are tons of blogs out now about how VONAGE SUCKS...check them out. It's no wonder this company is tanking, their customer service is the absolute WORST!!!!!!!! I hope they read this.... they really need to change!! B00009EFQH:combination_mysteriously_changed:sheetal_patel B00009EFQH Targus PA496U DEFCON VPKL - Video Port Key Lock: Electronics electronics 10 of 11 1.0 Combination mysteriously changed April 30, 2006 Sheetal Patel NJ I had been using the lock for my laptop for the past 4 months without any trouble. All of a sudden, today, as I went to pick up the lock, which had been left untouched in the open position overnight with my combination in it, it decided to change combinations by itself. So it was in the locked position but the combination is still the one I had set. I tried so many combinations 'around' mine but obviously there are so many different possibilites. The fact that I even have to try to think of what combination my lock decided to change itself to today makes this a lock I can't rely on B0001OKBKY:save_your_money:k._muller B0001OKBKY QuikFinish PL100 10" Document Laminator: Electronics electronics 48 of 48 2.0 Save Your Money August 22, 2005 K. Muller I am in the process of looking to return. The seal is not so good, so you have to run it through the machine a couple of times. In addition, the lamination has ridges in it. It isn't a smoothe finish (and it isn't air pockets?? B00005ARK3:low_quality_networking_solution_for_low_budget.:m._r._simmons_"techie" B00005ARK3 Linksys BEFW11S4 Wireless-B Cable/DSL Router: Electronics electronics 2.0 Low quality networking solution for low budget. November 24, 2006 M. R. Simmons "Techie" Old South I initially chose this router because of its low price. Sometimes, you get what you pay for, and that is exactly what happened to me. As a wired router, this works well enough. It connects four computers to the internet. Just don't do anything to intense with it, and you should be fine. I noticed that when I view video media, the connection totally freezes. But for basic internet and downloading, it works. I generally find, however, that no one buys a "wireless" router not to use wireless, and that is where the problem is. The receiver is so painfully finicky, it does not keep connections. The configuration of this router is about as easy as brain surgery. The linksys support team tries to be helpful, but I can't seem to make this router reliable. It drops reception all the time. Many times my laptop won't even detect a signal. The wireless performance of this router is abysmal. I sincerely hope that if you have this router, it is working flawlessly for you. I can't get it to work well for me not matter what I do. The difficulty that I am having with this equipment is so bad that I am going to replace it as soon as I can. B00005ARK3:good_in_theory..._major_issues_in_practice:m._hockenheimer B00005ARK3 Linksys BEFW11S4 Wireless-B Cable/DSL Router: Electronics electronics 1 of 1 2.0 Good in theory... major issues in practice August 18, 2006 M. Hockenheimer Dayton, Ohio, USA I've been using my BEFW11S4 for a few months now. The little thing has its good points - a nice, unobtrusive little box I can just plug in and hide on top of some piece of office furniture, allowing my rather over-laptop-equipped household some nice convenient net access, while still allowing the home office systems a wired connection. Sounds nice, if it only worked. Howver, BEFW11S4 has a MAJOR problem, and a rather common one at that. Specifically, it locks up. It does so frequently. I have to unplug the router at least once a day, and frequently twice, to deal with it locking up. Can't even access the administrator screen, and even hitting the reset button isn't enough to fix it. Wireless isn't too useful when you have to physically walk to the unit multiple times a day, is it? The problem seems to lie not in the hardware, but in the firmware (the software that runs on the router). If Linksys would release reliable firmware for this router, I'd give it 4-5 stars. But until they resolve the issue that wires down their wireless modem, I can't possibly justify giving the BEFW11S4 more then two stars B00005ARK3:don't_buy_a_linksys_router_if_you_have_a_mac_computer:mara_kurtz B00005ARK3 Linksys BEFW11S4 Wireless-B Cable/DSL Router: Electronics electronics 1.0 DON'T BUY A LINKSYS ROUTER IF YOU HAVE A MAC COMPUTER July 25, 2006 Mara Kurtz New York, NY USA I bought this router and spent almost two hours online with Linksys. After trying every sort of suggestion and speaking with three different tech support people who barely spoke English I finally understood that Linksys has "limited support for Macs." When I asked what "limited support" means, I was told "we are not trained to help people with a Mac. If you can borrow a windows PC we can help you". What a waste of time. I am sending the router back. Beware if you have a Mac B000CSQNL0:frustrating_item:f.b. B000CSQNL0 Garmin eTrex Vista Cx Handheld GPS Navigator: Electronics electronics 4 of 6 2.0 Frustrating Item September 18, 2006 F.B. Florida The first Vista Cx I purchased died after only 3 days of use. I returned it to Amazon who immediately and painlessly replaced it. The second unit lasted for 4 days until I fell waist deep into a stream with the unit in my pocket. Though it was only submersed for a matter of seconds it immediately stopped working and water was seen internally around the screen. Garmin's claim of waterproofness for 1m for 10 minutes is utter baloney. The poorly designed T-style lock on the battery case cannot possibly assure water integrity from anything beyond high humidity. I probably wouldn't buy buy another Garmin but I'm stuck with them as I have already invested $200 in proprietary MapSource software. I guess that was their plan. On the plus side, the Vista Cx did seem to function as it should...for all of 7 days B0000UI304:unbelievable_piece_of_junk_without_real_support:audiophile_"without_speakers" B0000UI304 Klipsch ProMedia Ultra 5.1 Multimedia Speaker System, (6 Speakers, Black): Electronics electronics 1.0 Unbelievable Piece of Junk without real Support November 1, 2006 Audiophile "Without Speakers" San Francisco, CA USA This is the best sounding PC speaker system available. Absolutley stellar sound quality--for how long is a serious problem. I too own 2 of these systems. After eleven months of bliss my first amp also went out. I call Klipsch technical support, and they explain I can send it in but the amp is backordered for 4-6 weeks. So I buy another one from Amazon and thier retailer Beach Audio, Inc., not having 4-6 weeks to wait for bliss to return. So get this please, not $360 plus tax once, but twice, and add 2 occurances of overnight shipping at $125 per, for a total spend of $970 plus tax!!! Well blow me down but the replacement for amp #1 hasen't even showed up, and 6 working days of bliss later? You guessed it amp #2 fails. Klipsch, well they obviously picked quite a piece of crap for an amp. They stand behind the product though--I have another RMA to send to the fine people at the Klipsch return center. The retailer this site uses, Beach Audio Inc., offered me my money back, but would offer no replacement of any sort, and no refund for the $125 shipping charge. Nothing they wanted to do would help me get a working product. They refered me to Klipsch without mercy, or even lube. Now Klipsch makes some fine home audio (my Klipschhorns are 15 years old, have been rocked to death, and still sound awesome), and this ProMedia Ultra unit sounds fabulous--so I may do business with them again (perhaps not the PC Multimedia division), but I vow to never give another red cent to Amazon's retailer Beach Audio, Inc.. They were uncooperative, unsympathetic, curt, short, unprofessional, and ultimately completely useless when contacted about the failure. PLEASE LOOK ELSWHERE FOR YOUR NEXT PC MULTIMEDIA PURCHASE!!!!!!! THE KLIPSCH PROMEDIA DIVISION SHOULDN'T EVER BE CONSIDERED. B0000UI304:both_klipsch_subwoofers_died_:music_man_"gibson" B0000UI304 Klipsch ProMedia Ultra 5.1 Multimedia Speaker System, (6 Speakers, Black): Electronics electronics 3 of 4 1.0 Both Klipsch Subwoofers Died August 19, 2006 Music Man "Gibson" usa The first subwoofer died (no sound) after 6 days. Remember, the sub powers all the speakers in this system. I sent it back to the company I bought it from and they were nice enough to take care of "Klipsch's faulty product". They asked me if I would like a refund and like an idiot I said, "No, just send me another one". The replacement Klipsch system arrived and it played great for about 14 months and then NOTHING. No power from the sub! Same problem but now my warranty is up. Klipsh has a way of designing things to work just past the warranty. Shame on Klipsch for making such a shoddy product. Shame on me for asking for a replacement and getting burned twice. Heed all these warnings my friends. I would buy used speakers at a garage sale before I would buy another Klipsh product. YOU HAVE BEEN WARNED! B0000UI304:sound_great...._but_stop_working!:brian B0000UI304 Klipsch ProMedia Ultra 5.1 Multimedia Speaker System, (6 Speakers, Black): Electronics electronics 2 of 2 1.0 Sound great.... but stop working! July 18, 2006 Brian MA United States These speakers do sound great but just like many others who have reviewed these speakers, they eventually just stop working. It sounds like I was one of the lucky ones as mine lasted two years. But I really didn't use them all that much and I don't blast the volumes. When you spend this kind of many on a product it should at least last 5 years or so. I've never had any other speaker brand just stop working on me before. Worse of all is to hear that Klipsch is charging a lot of money to repair their faulty products and that people had problems with them even after they were "repaired". Well, I'm not wasting time and money on repairing them. I'm just switching to Logitech. No more Klipsch ever again for me. B000BMAL10:so_many_problems!:a._harris B000BMAL10 Apple 1 GB iPod Nano Black: Electronics electronics 1 of 3 1.0 So many problems! November 9, 2006 A. Harris Ohio I received the iPod quickly which was a plus. But it was horrible when it would only download 5 songs. I had friends who have the same iPod try to fix it and it never worked. I sent it back and requested a refund. It has been a month and a half and I have YET to get my $120 back. B000A2AIHI:good_idea_but_not_ready_yet,_doesn't_work,_unreliable:anonymous_"none" B000A2AIHI LaCie 40GB SAFE Mobile Hard Drive (300809) Biometric: Electronics electronics 4 of 5 1.0 Good idea but not ready yet, doesn't work, unreliable November 19, 2005 Anonymous "None" Columbia, SC I like other Lacie drives I've used very much, thought I'd take a chance on this, but it just does not work. It takes me about a hundred swipes on average to get the biometric sensor to work...That is keeping data a bit TOO secure to be helpful. Also there have been reports of complete data loss by others,but I've not had that experience - could be I just haven't been able to GET to my data enough to find out. Support from Lacie was completely unhelpful (wash your hands and the sensor before swiping which I have already done dozens of times was the only suggestion). If the drive could be partioned so you could have a secure partition and an easier to access partion, the failure of biometrics would not be so serious, but as is, I would definitely not purchase this again, and I would strongly advise against it unless there is some kind of firmware or other improvement B0009JR5HS:don't_stomp_your_feet,_sneeze,_or_slam_the_door.:ultimatepete B0009JR5HS D-Link DWL-G520M Wireless 108G PCI Adapter, 2XR, MIMO, Smart Antenna: Electronics electronics 5 of 5 2.0 Don't stomp your feet, sneeze, or slam the door. March 28, 2006 UltimatePete We have 50+ of these cards at work and I have 4 at home. I have never seen a more "fragile" PCI card. If you slam a door or stomp your feet near the PC, this card may very well cease to function on the next reboot. God forbid you attempt to move the tower. Every other day, someone has a malfunctioning card which needs to be jiggled, removed and reinserted, or otherwise screwed with. When it does actually work, the connection is usually good B0008JFJR2:poor_reception_-_very_static:faithful_shopper_"jzk" B0008JFJR2 Motorola MD7001 2 Line 5.8GHz Digital Expandable Cordless Handset & Charger Accessory for MD7000 series: Electronics electronics 1 of 1 1.0 Poor Reception - Very Static November 12, 2006 Faithful Shopper "JZK" Ct We purchased this phone to go with the rest of the set and we were extremely disappointed!! We had to return them for a different brand because we could not hear!!! They were so static that you often could not hear the person speaking!! You would think at this price it would not be so static. We went for a brand at a much lower price and they are crystal clear! B0008JFJR2:very_misleading:carlos_bustamante B0008JFJR2 Motorola MD7001 2 Line 5.8GHz Digital Expandable Cordless Handset & Charger Accessory for MD7000 series: Electronics electronics 5 of 24 1.0 VERY MISLEADING January 2, 2006 Carlos Bustamante Cartagena, Colombia Jan 2 2006 I two ordered the "md7001 2 line phone" I thought I was getting a cordless 2 line phone. What I actually got was a 2 line handset that requires a base unit for it to work. This info should be prominently displayed in their description. B00062GJ8E:easily_scratched_w/very_limited_lifespan:l._henderson B00062GJ8E Palm Premium Screen Protectors Multi-pack (3177WW): Electronics electronics 1 of 1 1.0 Easily Scratched w/Very Limited Lifespan July 27, 2006 L. Henderson Elkins Park, PA United States You'd think that a Palm screen protector from Palm would be best in class. However, these Palm "premium" screen protectors have a lifespan of about 3-4 days at best. I'm very careful with my new Palm TX, yet under normal use the stylus easily scratches the screen protector to such an extent that the device no longer accurately recognizes stylus input. I also dislike having to cut the screen protectors to size. I've tried an Invisible Shield screen protector, and it was tough as nails; the problem was that installation was difficult, and the tacky surface also produced input errors. Next I'm trying a Boxwave ClearTouch. I never had this sort of problem with the old Fellowes WriteRight protector, which lasted a year or more on my old Palm m130 B00008VF91:more_monster_snake_oil...:eduardo_nietzsche B00008VF91 Monster Cable THX SP 16-100 Standard THX-Certified Speaker Cable (100 Feet): Electronics electronics 30 of 39 1.0 more Monster snake oil... March 14, 2005 Eduardo Nietzsche Houston Monster Cable and its similarly overpriced imitators are a triumph of hype over substance, and ruthlessly exploits the consumer's naivete and trust in shady audio/video salespeople. Yes, for most things you DO "get what you pay for"---but when it comes to speaker cables, interconnects, and other a/v wiring however it's another story. All you need for optimal sound is any 12 to 16 gauge generic cable which you can buy at Home Depot for a fraction of the cost. Save your money for things like speaker stands, which really do make a world of difference B00068UJHK:do_not_buy_this_card_if_you_use_windows_98se:ben_franklin B00068UJHK Crucial Hi-Speed USB SD/MMC Card Reader: Electronics electronics 1 of 7 1.0 DO NOT BUY THIS CARD IF YOU USE WINDOWS 98SE May 1, 2006 Ben Franklin Oregon I AM DISGUSTED TO REALIZE THAT ALTHOUGH CRUCIAL MARKETS THIS CARD AS COMING WITH A DRIVER FOR WIN98SE, IT DOES NOT. THE CD IT CAME WITH DID NOT HAVE A DRIVER (although it said it did) THE WEB SIGHT DOES NOT HAVE DRIVERS AND AFTER TWO PROMISES ON THE PHONE FROM CRUCIAL TECH SUPPORT PROMISING TO SEND ME ONE, I STILL DON'T HAVE IT. I DON'T BELIEVE THIS DRIVER EXISTS. SO MUCH FOR TRUTH IN ADVERTISING AND AMERICAN COMPANY INTEGRITY B000AM6QH4:worked_for_seven_minutes,_then_quit:s._mcclary B000AM6QH4 Logitech� mm28 Portable Speakers: Electronics electronics 1.0 Worked for Seven Minutes, Then Quit October 13, 2006 S. McClary Oakland, CA USA When I plugged these in they worked fine for about seven minutes, then the speaker's internal power simply cut off. Happened on the AC adapter or batteries, whether I was using my computer or my iPod as the sound source. Same behavior every time. Logitech sent me a replacement from a new production run, same thing happened. Sent it back to Logitech on my nickel, got another replacement from same production run (Product ID: A612). Same problem. After two months and many long waits for Logitech tech support, I'm giving up. Maybe it was just a bad run, or maybe my environment is flukey, but I'm sorry I ever bought this thing B00008Z1QI:weak_sound_unless_you_have_a_headphone_amp:tom_slick43 B00008Z1QI Koss Pro4AAT Titanium Pro Headphones: Electronics electronics 1 of 1 2.0 weak sound unless you have a headphone amp November 3, 2006 Tom Slick43 Kaneohe HI USA The Koss Pro4AAT headphones are quality headphones, but sounds weak when driven through a regular headphone jack from your receiver or tv. To get the great sounds that everyone else seems to rave about, you really need to run these headphones through a headphone amp. Also, the ear pads are of a vinyl-like material which doesn't breathe well, making it uncomfortable to wear for extended periods. I've read that leatherette pads are available, but so far haven't been able to find them. The warranty alone is great, but I wouldn't recommend these headphones unless you have a headphone amp B0001FV3AK:unreliable...don't_get_lulled_w/false_sense_of_security:d._plante B0001FV3AK SanDisk 512 MB Cruzer Titanium (SDCZ3-512-A10, Retail Package): Electronics electronics 1.0 Unreliable...don't get lulled w/false sense of security November 13, 2006 D. Plante Device unexpectedly stopped working after 9 months. Has not been thru a washing machine, fallen in the ocean or been run over by a truck! Just nestled in my briefcase. Bullet-proof case is great gimick, but this device is unreliable as a backup for "road" files. Might be better off using your PDA with a large SD card B00000J0D2:worked_for_30_days_-_microphone_broke:s._pritchard_"suzisbooks" B00000J0D2 Uniden HS910 Headset for Cordless Phones: Electronics electronics 8 of 8 1.0 worked for 30 days - microphone broke April 10, 2004 S. Pritchard "suzisbooks" CA USA I had one that worked for a year that came with the original phone. Then, I just ordered this one from Amazon and it worked for 30 days. Like other reviews you see here, people started not being able to hear me, but I could hear them. So the microphone broke. But, I called Uniden tech support and they recommended I replace the battery on the phone for $37. So, I just ordered a new phone and tested the headset -- sure enough it wasn't the phone -- it was the headset. A costly mistake. I would not buy this headset again. Also, Amazon has a 30 day return policy, so if it breaks, make sure you return it within that 30 days or you are stuck with it B000853QUS:gs_not_as_good_as_the_original:m._a._dawe B000853QUS BFG Technologies RatpadzGS Gaming Surface: Electronics electronics 1.0 GS not as good as the original September 18, 2006 M. A. Dawe Victoria, BC I just bought a new RatpadzGS to replace my four year old ratpadz. Compaired to the old Ratpad, the RatpadzGS is made with a lower density Cheap-O(tm) plastic and tracks poorly with my logitech G7 mouse. When using the mouse on the GS it causes the curser to sort of stutter along. Overall I would pass on this product, for now my desk actually works better than this mousepad. B000853QUS:so-so_at_best.:mitchell_bloch_"bazald" B000853QUS BFG Technologies RatpadzGS Gaming Surface: Electronics electronics 1 of 1 2.0 So-so at best. June 28, 2006 Mitchell Bloch "bazald" Ann Arbor, Michigan United States It was an okay mousepad for approximately a year and a half. Every so often, my optical mouse jittered from one edge of the screen to the other when left stationary, but I encountered no serious problems. Unfortunately, it seems that might have been indicative of a greater problem with the mousepad. It is all one color. The grooves have all worn away on a large portion of the pad, and now my mouse won't budge. I'm in the process of looking for an alternative right now B000EPHPPE:it_gets_ugly_fast:g._rosario_"gerardo" B000EPHPPE Apple 80 GB iPod video White (5.5 Generation): Electronics electronics 5 of 20 1.0 It gets ugly fast November 17, 2006 G. Rosario "Gerardo" Nashville, TN USA i don't like how easy it get scratch, and if u get the black one even worst, i went shopping for cases but they get scratch inside the cases too, just by been in the case, i return the case, then i when for those clear stickers and i recomend to put those on on a really clean table and very dry and clean hands may be use glove cause a little touch and there goes your finger print in the sticker, and with a black ipod you can't miss it. and if u don't take your time u will have a lot of air bubbles showing in your ipod, so after a week looks like something that i have for a year, it sucks. B00008SCFL:can't_get_it_to_work.:albert_a._mason B00008SCFL Netgear WGR614 802.11g Wireless Router: Electronics electronics 2 of 4 2.0 Can't get it to work. November 9, 2006 Albert A. Mason The Netgear wireless router product is apparently in working order because I mailed it to my son in Tennessee who got it to work just fine on his equipment which is the same as mine. Surely, I'm not so technically savvy as my son, but I can read and write and follow directions. The setting up of the equipment is quite complicated, in my view, far moreso than it should be. I've set up other peripherals with success, but this product is more than I can handle. I've followed the directions, over and over, and still the router doesn't connect. I've given up. Can't handle the frustration. By the way, I'm way over the age of 13. I have grandchildren over the age of 13. B0002TPFW2:wireless_printing_problems:j._barber B0002TPFW2 D-Link DP-G321 Wireless-G Print Server USB 2.0/Parallel Port: Electronics electronics 1 of 1 2.0 Wireless printing problems September 4, 2006 J. Barber UK After a bit of sweat I've managed to get the printer working fine from both my XP and MAC OS Tiger computers ...... until I unplug the direct ethernet cable to the router that is needed for set-up. Then nothing happens i.e. no wireless printing. I suspect it's an IP addressing issue having read a helpful article here (take note D-link - Amazon is becoming a better support site than your own!). Changing the IP address messes up my internet connection during install; the MAC works quite hard to re-establish the internet connection & perhaps this breaks the connection to the printer? I dunno, but it's giving me a headache. Documentation & troublshooting help are very, very weak & time will tell if D-link on-line support are any better (22 hours & no response from them yet....) I'm sure network wizards will have this little beasty up & running in no time, but for normal people it's, well, a bit of a pain B0002TPFW2:garbage!-_it_does_not_work_with_most_usb_printers:y._morgan_"wireless_mavrick" B0002TPFW2 D-Link DP-G321 Wireless-G Print Server USB 2.0/Parallel Port: Electronics electronics 3 of 3 2.0 Garbage!- It does not work with most USB printers June 29, 2006 Y. Morgan "wireless mavrick" Rye NY I contacted D-Link support and they verified that this product was tested and worked with a very minimum number of popular USB printers (I believe the number was around 30-40). The D-Link DP-G321 Wireless Print server did not work with any of the 3 USB printers I owned (Lexmark Z320, HP PSC 1250, HP Photosmart 7310). It worked okay with my one parallel HP Laserjet 1100 and I was able to connect it to my network and install the print server, but it was not at all compatible with my printers which was key. It this product was more compatible, I would have rated it 4 stars, because the installation was very easy and almost worry-free, plus it was very sensitive to the wireless radio waves i.e. it sensed my secured wireless network when other print server could not in that same location. I returned the D-Link and bought instead a Linksys WPS54GU2 print server that worked with all of my printers, but it was not as sensitive as the D-Link DP-G321, so I had to move my printers and print server closer to my wireless access point B00003CWEI:whoa!!!__apples_and_oranges:dwpc B00003CWEI Monster Cable MV3CV-1M Monster Video 3 High-Resolution Component-Video Cable: Electronics electronics 13 of 18 1.0 Whoa!!! Apples and Oranges January 12, 2005 DWPC Ventura, CA United States Several reviews mention the improvement when these cables to replace a composite (L/R audio + video) cable, or an S-video (multi-pinned plug). ALmost all of that improvement is due to the fact that these cable connection methods are completely different types in signal format and the TV uses different internal circuitry for each one. Virtually any S-video cable connection will give a better image than a composite type cable, and any component (individual R-G-B video) connection will be better than S-video. Cable brand has absolutely nothing to do with it. There may be some difference between one brand of component cable and another, but its almost always unnoticable B000GUO4L0:good_printer_but_drops_the_internet_connection:wds_"wds" B000GUO4L0 Canon PIXMA MP530 Office All-In-One Photo Printer with Fax (0580B002): Electronics electronics 2 of 5 2.0 Good Printer but drops the internet connection November 9, 2006 WdS "WdS" Overland Park, KS I was in the market to upgrade my printer and used Amazon's reviews to decide on a Canon MP530. It does a good job, but when I plug the USB cord into the printer, the connection to the Internet drops every time. I have to disconnect from the printer so I can get on-line. Recently I filled out a rather lengthy application on the Internet and plugged in the USB cable so I could print. That step caused the connection to drop and I got to reenter all the information. I will be returning the Canon MP530 and start my search for another all-in one printer B000BPH00M:this_is_a_piece_of_[...]:h._everett_"mr._x" B000BPH00M Memorex 2GB USB 2.0 Mini Travel Drive (32509373): Electronics electronics 0 of 1 1.0 This is a piece of [...] May 18, 2006 H. Everett "Mr. X" New York, NY United States The Memorex U3 TravelDrive is simply a piece of crap. I bought it for easy data transfer when on travel, but it seldom works in any computer. The logo comes up when I plug it in and it simply hangs there. It's utterly worthless B00005B9W6:it_is__piece_of_junk!!!!!!!!:julie_a._ricker_"camera_hound" B00005B9W6 Skipdoctor CD Repair Kit: Electronics electronics 6 of 11 1.0 It is piece of junk!!!!!!!! March 17, 2006 Julie A. Ricker "Camera Hound" Augusta, Maine USA It was not worth the cost to ship it back B000A3WS84:love_it.._hate_it:a._pereyra B000A3WS84 Apple 30 GB iPod with Video Playback Black (5th Generation): Electronics electronics 2 of 6 1.0 love it.. hate it November 13, 2006 A. Pereyra Miami, FL United States I bought with lots of ilussion this this Ipod, i put all my music in it and use it!! after a 5 months it stop working, it didn't charge the battery. I took it to best buy where I bought it and they told me that it has "external damage" and didn' repair it. I send it to Apple service and return it without services because the same reason. My Ipod didn't have that damage, it has only a few scratches on the screen. After lots of calls and fight they told me that to fix it I would have to pay US$250.00 that is almost what it cost new. TERRIBLE SERVICE FROM APPLE.. SHORT LIVE.. DON'T RECOMMENDED. Now I'm looking for another option for MP3 player to buy. If you know one please let me know it. B00005T6GZ:setup_difficult:ned_block_"ned_block" B00005T6GZ Linksys BEFCMU10 EtherFast Cable Modem: Electronics electronics 2.0 Setup difficult November 9, 2006 Ned Block "Ned Block" Cambridge, MA United States The modem works well but was very hard to set up. Much harder than an Apple Airport that I had setup previousl B00005T6GZ:buyer_beware_-_amazon_selling_old_version_2:rsd2 B00005T6GZ Linksys BEFCMU10 EtherFast Cable Modem: Electronics electronics 14 of 18 1.0 BUYER BEWARE - AMAZON SELLING OLD VERSION 2 August 17, 2006 RSD2 CA United States I recently purchased this item from Amazon. What I received was version 2 of this modem. The current version on the Linksys site is version 4. As a Cox customer, the results of my purchase were unsatisfactory. I will be returning this and purchasing the version 4 Linksys from another vendor B00063IT0Y:total_garbage.:ariel_meadow_stallings_"author,_offbeat_bride" B00063IT0Y Ultra-Cord 59-inch Retractable Stereo Earphones: Electronics electronics 36 of 36 1.0 Total garbage. March 11, 2005 Ariel Meadow Stallings "Author, Offbeat Bride" Seattle, WA A short list of grievances: 1. The earbuds don't fit well in the ear 2. The retraction wheel is in the middle of the cord, so that if you're walking while listening to music, it bounces around and threatens to pull the buds out of your ears. 3. The retraction wheel broke after a month, making these headphones no longer retractable. NOT WORTH THE MONEY YOU'LL SPEND ON SHIPPING, let alone the cost of the headphones. These headphones are garbage B0001EMLTS:lost_power_less_than_a_year:m._kelly B0001EMLTS Coby CTV555 5" COLOR TV: Electronics electronics 2 of 2 1.0 Lost power less than a year September 22, 2006 M. Kelly Is there a less than 1 star. After 5month, it just stopped working, How do i get my money back. Not worth it for the money. I have a smaller tv that I have had for 6 years and still works. B0001EMLTS:would_not_buy:oil_can_"oil_can" B0001EMLTS Coby CTV555 5" COLOR TV: Electronics electronics 2 of 2 1.0 Would not buy September 7, 2006 Oil Can "Oil Can" Texas I was never happy with this product. The picture always had a green tint and would not adjust out. After less than a year the tube blew out. B0001EMLTS:this_was_a_mistake.:l._nathenson_"lee_in_chicago" B0001EMLTS Coby CTV555 5" COLOR TV: Electronics electronics 6 of 6 1.0 This was a mistake. June 11, 2006 L. Nathenson "Lee in Chicago" Chicago This set lost color and picture quality over the few months that I owned it and then it just stopped working. I'm going to buy something else and so should you B000E65Y92:?hello_?hello:t._amukele B000E65Y92 Uniden TRU9465-2 Expandable Cordless System with Dual Keypad and Call Waiting/Caller ID and Exta Handset and Charger: Electronics electronics 8 of 10 2.0 ?Hello ?Hello June 19, 2006 T. Amukele Seattle, WA United States This phone is really cool but it has two major flaws. The first is the caller ID problem which the other posts have already described in som detail. The second is that although the incoming volume is fine, the people on the other end have trouble hearing me and say that i sound 'far away and very soft'. Troubleshooting and reseting doesn't seem to help. Will return ASAP B000J43HJ8:scroll_pad_doesn't_work:m._storms B000J43HJ8 Logitech diNovo Edge ( 967685-0403 ): Electronics electronics 10 of 14 1.0 Scroll pad doesn't work November 19, 2006 M. Storms Los Angeles, CA USA It looks sexy, but it just doesn't work. The scroll pad is so finicky I wanted to throw it out the window after the first hour. About half the time it moves the cursor when you want to scroll, or it scrolls when you want to move the cursor. The other half the time, it does nothing no matter what part of the pad you touch or how hard or lightly you press. Also beware that if you return this just because you're not satisfied with how it works, Amazon will charge you for both outgoing and return postage! (I've giving it one star out of pity, and because it does look sharp. B000AY2L3U:good_but_problems...:recursive B000AY2L3U Logitech Cordless Desktop S510: Electronics electronics 2 of 3 2.0 good but problems... September 21, 2006 Recursive California, USA you may notice i am writing this in lowercase. i am using the s510 keyboard i bought over a year ago. the shift keys suddenly went out so the keyboard is now useless. i have to subtract for longevity. the mouse that comes with the keyboard is poor but i use it with another mouse anyway. and, as noted in other reviews this, in common with most other usb keyboards, only works with basic functionality when hooked up through a usb kvm switch. on the good side, the battery life is very good and i think it looks nice, but i'll be looking for something else for a replacement.. B0006B55B2:pricey_for_the_length:yarlee B0006B55B2 Acoustic Research PR-185 Pro II Series HDmi Digital Audio/video Interconnect: Electronics electronics 6 of 11 2.0 Pricey for the length July 4, 2006 Yarlee Irving, TX After seeing a wide range in the prices for HDMI cables, I did some research into why is it. Found out that these cables carry digital signals (0's and 1's), so no matter what kind of fancy name you add before this cable, its basic purpose is simple like a cat5 cable. Then I went ahead and bought the cheaper ones which are working perfectly fine. So, dont be fooled by the high price cables. There is no special sheilding &%*p in them. Its all misleading marketing. For this length of cable, I would pay maybe $5 B0002SAE56:confused:j._raines_"crusty_old_cyclist" B0002SAE56 JBL OnTour Portable Music Box: Electronics electronics 1 of 13 2.0 confused October 14, 2006 J. Raines "crusty old cyclist" Minneapolis From reading the reviews the product weighs 14 oz and is tiny. from reading amazon's specs: 12.0 x 14.0 x 10.0 inches ; 4.0 pound B0002SAE56:too_small:timothy_mcnulty_"metal_head" B0002SAE56 JBL OnTour Portable Music Box: Electronics electronics 2 of 4 2.0 Too Small October 12, 2006 Timothy Mcnulty "Metal head" Kalispell, Mt usa Do not be deceived by the photo this thing is tiny. If that is what you are looking very small low volume very portable I suppose it is ok but over price for what you get. I think $30.00 would have been about right. There is no bass response and for there size how could there be. I am keeping them but only because they are so small they might come in handy for hotel use only! The packaging is very cool but the fidelity is non existent B000BM4U2G:been_using_it_one_week_-_dead!:toddman B000BM4U2G Creative Zen MicroPhoto 8 GB MP3 Player (Titanium Gray): Electronics electronics 1 of 2 1.0 Been using it one week - DEAD! November 6, 2006 toddman Ithaca, NY USA I've never had a product [...] out after one week of use. The screen froze up and no matter what troubleshooting tip I tried from the creative website, nothing worked. Now I'm waiting to hear back from email support because they don't have 24 hour phone support. Not impressed. Would have gotten an iPod, but this thing was given as a gift B000BM4U2G:awesome_when_it_worked:a._may B000BM4U2G Creative Zen MicroPhoto 8 GB MP3 Player (Titanium Gray): Electronics electronics 1 of 2 2.0 Awesome when it worked November 5, 2006 A. May New Orleans, LA I really enjoyed my Zen, when it worked. The first one I ordered I had to return becuase it would only play every other song, and after it started acting up all the lights would start blinking and I would have to take out the battery to make it stop. So, I exchanged it for a new one, and just like the other after only one week the lights started going crazy again, it would freeze up, and would only play 5 seconds of every song. What I liked about it, for the small amount of time I had it was the sound quality, the choice in colors, and the fact that it was so much cheaper than other models with the same amount of storage space. I'm not sure I would recommend it becuase of the fact that they both only worked for a few days. Now I have an Iriver Clix and have had no problems. It has less storage but I don't care, it is easier to control and I haven't had problems with it B00006HVNI:there_are_better_wrist_pads_on_the_market:victoria_siegel B00006HVNI Belkin Waverest Gel Wrist Pad Rubber Backing/Fabric Top (F8E244-BLK): Electronics electronics 17 of 21 1.0 There are better wrist pads on the market November 15, 2004 Victoria Siegel Seattle, WA United States I bought this as an extra support for my wrist and within 2 weeks the gel started to ooze from the seems. I ended up having to staple all around the edges of the bean to stop the ooze which has worked but definately a design flaw. I wouldn't buy this again B000F50VJK:do_not_buy_this:grifbret_"grifbret" B000F50VJK USB SIM Card Reader: Electronics electronics 3 of 3 1.0 Do not buy this May 29, 2006 Grifbret "Grifbret" Houston, TX United States There are too many files you must hunt for online that are not on the cd. If you can read Chinese you may fare better than reading the English instructions for the software. I'm returning mine and will try something a little more expensive but from a company with better quality control B00005O3VE:unreliable_w/high-cost_of_ownership_in_heavy-duty_environmnt:eyesk B00005O3VE Brother PPF-2800 Plain Paper Fax Machine: Electronics electronics 2 of 2 2.0 unreliable w/high-cost of ownership in heavy-duty environmnt January 10, 2005 Eyesk from the swamps of Jersey We'll give the unit two stars instead of one, since when it does work, it works well, with nice print-outs. But in a span of two+ years, its has needed its drum replaced three times. And has once needed the main system/circuit board replaced. We'd purchased this back when it cost about $125 more than it does now. And the parts have not been quickly available from some vendors. We should have bought the heavier-duty Brother 4750 which we use in another office, and has been flawless. B00005O3VE:one_page_at_a_time_works_great: B00005O3VE Brother PPF-2800 Plain Paper Fax Machine: Electronics electronics 7 of 8 2.0 One page at a time works great October 21, 2003 I've had many fax machines and this one, when it worked, certainly wasn't the worst of the bunch. Problem is, the auto document feed tray is cheesy. No matter how many times I smoothed, then fanned the paper, it would accept two to five sheets at a time. If I fed one at a time, this unit worked like a champ. Unfortunately, that can be said of most units. I've had good Brother machines in the past, and probably will buy another, better, Brother fax. This one got me so frustrated I threw it out the back door. It's still laying there, only there seems to be more pieces now B000B59JLU:does_not_work_with_6682:kanishk_"kanjoy" B000B59JLU 1GB Rs-mmc 1024MB: Electronics electronics 6 of 8 1.0 Does not work with 6682 August 5, 2006 Kanishk "kanjoy" Cincinnati, OH United States This card DOES NOT work with NOKIA 6682. I bought this card from an other website and missed the earlier review here. The product description does not show voltage details and compatibility with phones. It is very misleading as the description uses the word "mobile phone ready". Sandisk should address this isse by providing proper product description B00076TK6M:have_yet_to_get_it_to_work:bustin_justin B00076TK6M Q-STOR - USB To Irda Wirless connection: Electronics electronics 6 of 7 1.0 Have yet to get it to work August 2, 2005 Bustin Justin Socal The software it is sent with is different than the instructions given, I have yet to get it to work with my laptop w/xp and a Ir HP laser jet. It may work fine for some cell apps phones etc. B0002ER3BS:horrible_dvd+r!:edwin_jhun B0002ER3BS Memorex 4.7GB 8x DVD+R (50-Pack Spindle): Electronics electronics 2 of 2 1.0 HORRIBLE DVD+R! June 18, 2006 Edwin Jhun Tacoma, WA USA The Memorex DVD+R has got to be one of the worst dvd-r's out in the market. Not only is the rate of a successful DVD burn very low (movies, games, etc.), it also has a horrible shelf life that lasts for about four months. From what I hear from other members, Memorex uses a low-quality dye, and is explicitly evident in the red colored deterioration of the dye that can be seen on the top layer of the disk. All my DVD+R's are actually stained RED for some reason?!? Overall, go with verbatim or heck, even COMPUSA dvd's will be more suffice than this garbage B00017IX0Q:okay_at_first.....:louiseddmsfan B00017IX0Q iRiver IFP-180T 128 MB Flash MP3 Player: Electronics electronics 2.0 Okay at first..... July 2, 2006 louiseddmsfan Cary, NC I got this MP3 at a Black Friday sale and I was absolutly thrilled with it...until the end broke off. The end where the battery was broke off one day and wouldn't stay on. I now have to hold it in place with rubber bands. Now, the player will constantly shut off whenever it moves the slightest bit. The radio, however(before it broke)was great, the organization of the files was good and the mic worked okay if you talked straight into it. Overall, this was okay for the money I paid for it, but I wouldn't recommend this to anyone B0001FV3C8:be_aware_before_you_buy_this!:lynn_hoffman_"author:_the_new_short_course_in_wine" B0001FV3C8 SanDisk SDCZ2-1024-A10 1 GB Cruzer Mini USB 2.0 Flash Drive (Retail Package): Electronics electronics 6 of 11 2.0 Be aware before you buy this! October 28, 2006 Lynn Hoffman "author: The New Short Course in Wine" Phila., PA USA Be aware before you buy this flash drive that it will not accept file names with many commonly used characters like: '?' and '/'. When it encounters these characters, it stops transferring files completely and you have to begin the copying process again after 'correcting' the file names. For me, this was a serious inconvenience and an undisclosed liability of the device. For others, it may be less important B0002AHRVI:clunker_--_poorly_made,_didn't_work:paul_dean B0002AHRVI Grundig FR200 Emergency Radio (Red): Electronics electronics 1 of 1 1.0 Clunker -- Poorly Made, Didn't Work November 9, 2006 Paul Dean Chicago, IL USA We ordered this radio to have on hand in case of emergency. After an hour of cranking to start the power, the crank came off. Got it back on, cranked more, came off again. Small heartattack later from all the fruitless cranking, we sent it back the next day. Looking for another option for an emergency radio, haven't found one yet. B00007E7L3:doesn't_seem_to_work_properly.:matt_b. B00007E7L3 COBY CA989 AC Adapter for Portable Electronics: Electronics electronics 6 of 7 2.0 Doesn't seem to work properly. November 19, 2005 Matt B. Washington, DC I bought one of these, brand new. When I use it with a portable CD Player/Radio on the proper settings for my unit, the radio works for about 15 seconds, then shuts down. Like the other reviewer, I'm wondering if the voltages are off. Will try a meter.. B00004WFSC:does_not_work_properly:"cherab6" B00004WFSC Brother GX-6750 Daisy Wheel Electronic Typewriter: Electronics electronics 11 of 16 1.0 Does not work properly June 1, 2004 "cherab6" Las Vegas, NV United States I bought this for my 80-year-old mother, who is disabled and can't cope with a computer. Every time the typewriter is turned on, we find that it either types the wrong letter (press a Q, it prints an S; press E and get P, etc.) or else it prints the correct letter but they are not spaced correctly (some overlapping, some huge spaces). There is some esoteric combination of keystrokes that, supposedly, will reset the programming. But this is just too much for Mom. Also, every time it's turned on, you have to re-program the line spacing, the tabs and everything else. I ended up buying a 40-year-old manual typewriter on e-Bay and Mom is much happier with it B00004Z78R:don't_buy_this_printer!: B00004Z78R Fellowes P-400C Confetti-Cut Paper Shreddrer with Basket (Black): Electronics electronics 24 of 69 1.0 Don't buy this printer! January 19, 2003 This printer binds up on two pieces of paper! If there is the least resistance during a jam, the flimsy plastic gears become stripped and the printer is trash. This is what happened to me after less than two months of light use...and I stayed within the manufacturer's guidelines. However, there is NO WARRANTEE on this printer, so BUYER BEWARE B0002INL4M:they_fit_pretty_well,_but_sound_quality_suffers:davey B0002INL4M Shure PA755 Triple-Flange Sleeves for Shure Sound-Isolating Earphones (1 Pair): Electronics electronics 1 of 4 2.0 They fit pretty well, but sound quality suffers March 12, 2006 davey St. Louis, Missouri Happy with the three tips included, I decided to try these for the heck of it. While they go nicely and comfortably deep into the ear and don't dare come out until you intend for them to, for some reason, they diminish the quality of the sound greatly. I can most closely describe it as the sound of overcompressed MP3s. They took nearly all of the clarity out of the music B000BM6Z6A:awesome_when_it_worked:a._may B000BM6Z6A Creative Zen Micro Photo 8 GB MP3 Player (Light Blue): Electronics electronics 1 of 2 2.0 Awesome when it worked November 5, 2006 A. May New Orleans, LA I really enjoyed my Zen, when it worked. The first one I ordered I had to return becuase it would only play every other song, and after it started acting up all the lights would start blinking and I would have to take out the battery to make it stop. So, I exchanged it for a new one, and just like the other after only one week the lights started going crazy again, it would freeze up, and would only play 5 seconds of every song. What I liked about it, for the small amount of time I had it was the sound quality, the choice in colors, and the fact that it was so much cheaper than other models with the same amount of storage space. I'm not sure I would recommend it becuase of the fact that they both only worked for a few days. Now I have an Iriver Clix and have had no problems. It has less storage but I don't care, it is easier to control and I haven't had problems with it B0000C4DX6:not_for_programmers!:m._hannemann B0000C4DX6 Kensington 64338 Comfort Type USB/PS2 Keyboard (PC/Mac): Electronics electronics 23 of 26 1.0 not for programmers! September 7, 2005 M. Hannemann I recently bought this keyboard to go along with a fancy ergonomic laptop stand. The stand puts the laptop screen at a reasonable height for use on a desktop -- that works great. The keyboard, however, is fairly awful, and I'm returning it. I realize I shouldn't expect much for $20, but the keyboard has an exceptionally soft, mushy feeling. The "comfort type" slanted keys didn't get in my way, but they didn't help anything, either. The worst part about this keyboard, however, was that it uses a non-standard layout. Look closely at the right side -- the "enter" key is oversized, and the |\ key is moved below to accomodate it, with the consequence that the right shift key is miniaturized. This, for a shell user or programmer, is awful. When you need to pipe something, or escape the next character, you really don't mean to be hitting return instead. And with the small right shift key, even typing properly with balanced use of the keyboard is difficult. This small design decision makes this keyboard terrible for heavy computer users like me B00062GJ8O:too_lightweight,_no_reset_pin:paul_mischler B00062GJ8O Palm Stylus 3-Pack (3178WW): Electronics electronics 8 of 12 2.0 Too lightweight, no reset pin December 19, 2005 Paul Mischler NJ, USA After purchasing the stylus, I immideatley noticed that the styli were far significantly lighter in weight than the factory included stylus for the Tungsten T5. Even worse, after a fatal exception and hard lock on the T5, I noticed that these styli have no built-in pin to hit the reset button with B0006SD4PE:hate_it!:j._barnett_"jenny@designaweb.com" B0006SD4PE JBL On Stage Speakers for iPod: Electronics electronics 5 of 5 1.0 HATE it! November 2, 2006 J. Barnett "jenny@designaweb.com" Houston, TX USA There is nothing good to say about this speaker except the size. The sound quality sucks. It stops mid song on a regular basis. It is just a piece of crap. It is so crappy that I am throwing it away rather than give to someone B000069K8O:worked_at_first_but....:william_r._geary_"crjuphd" B000069K8O One For All URC 9910 Premium Learning Line 8-Device IR/RF Upgradeable Universal Remote Control: Electronics electronics 2 of 2 2.0 Worked at first but.... October 4, 2006 William R. Geary "CrJuPhD" Horsham, PA USA I bought this item about two months ago and was happy as can be. No more equipment in the tv room! About two weeks ago though, I noticed that the unit was slower and slower and I had to hit buttons repeatedly to get things done. It has eventually gotten to the point that it does not work at all. At first I thought it was batteries in the remote, so I replaced those a few times. Then I thought the placement of the IR transmitter was off, so I moved it closer to my AV rack. That worked at first, but the problem persisted so I reprogrammed, but to no avail. Eventually I narrowed it down to the remote unit. Even with the remote RIGHT NEXT TO THE IR Transmitter, it now does not work most of the time. Of course the real problem now is that all my av stuff is in a different room, so standard IR remotes (why do they even make those still????) are out of the question. I will be moving onto something else and keep my fingers crossed. Along the way I learned a few other things...other reviewers are right in that the memory gets eaten up quickly when you have to program the unit (which I do with a new LG DVD player). In theory, this is a great unit and the remote is very good when it comes to commands. In practice, however, all it did was make me hungry for an RF system that will work more consistently. B00000J061:do_not_buy_this_radio!:j._beaupre B00000J061 GE 7-2887 Superadio III Portable AM/FM Radio: Electronics electronics 1 of 1 1.0 Do not buy this radio! November 23, 2006 J. Beaupre Cambridge, MA USA The GE Superadio III used to be a great radio. I bought my first one seven years ago and it worked so well that I bought another. I have recently purchased two more as gifts and they are not the same radio. Side-by-side they look the same (except for the numbers on the tuning dial). Inside they have dissimilar circuit boards. The real difference is the two new radios are unable to tune stations nearly as well as the older radios. I would recommend not purchasing this radio B00000J061:not_very_happy:dennis_kazmierczak B00000J061 GE 7-2887 Superadio III Portable AM/FM Radio: Electronics electronics 2 of 3 1.0 not very happy November 5, 2006 Dennis Kazmierczak buffalo n.y. i was very disappointed with the ge superadio 3 i owned a superadio2 10 years ago which was far superior my advice save your money i had trouble with stations less than 90 miles away this radio is very overated.piossibly poor quality control B000EA6WOE:not_worth_buying:p._caceres_"p.c." B000EA6WOE Creative Zen Sleek Photo 20 GB Multimedia Player (Aluminum/White): Electronics electronics 0 of 14 1.0 Not worth buying October 9, 2006 P. Caceres "p.c." new york, NY USA i order this item and it got lost in the mail. They resend it which was fine but, as soon as i recieve it i turn on the this item and the screen turned blank. I advised not to buy this item B00006686A:didn't_work_properly:old_guy B00006686A Philips Magnavox PM435S 4-Device Universal Remote Control: Electronics electronics 2.0 Didn't work properly July 20, 2006 Old Guy Milford, MA United States As mentioned by others the actual product does not look like the photo and is a little on the flimsy side. That did not concern me too much. My problem is that it does not work properly with my Samsung 13-inch color TV. It turns the set on and off and steps up/down the channels but I cannot ehter a two digit channel number and have it go to the correct channel. For example, if I enter "54" it goes to "55". I tried all the listed setup codes given in the instructions B00006686A:good_-_and_then_bad.:swomprat B00006686A Philips Magnavox PM435S 4-Device Universal Remote Control: Electronics electronics 2.0 Good - and then BAD. swomprat california About 1 year after having this remote to go along with my Phillips DVD player the remote conked out. The buttons, while almost all responsive, will not sync up with the systems anymore, and the learning feature on the remote control seems to be defunct. You get what you pay for, I suppose B0002XM01C:doesn't_work:chris_doubleday B0002XM01C Kensington FM Transmitter/Auto Charger for iPod (White): Electronics electronics 3 of 4 1.0 Doesn't work January 2, 2006 Chris Doubleday Philadelphia, PA USA I had reservations when buying - according to online reviews many of these devices seem to be defective (the Belkin as well). I purchased anyway and my fears were confirmed. LEDs do not light, does not transmit on any frequency. Manufacturer representative (from India) confirmed that it is defective. Return will be time consuming and frustrating, but $50 is enough to make me endure even more pain. Don't buy this item B0009OAP0W:dead_after_2_minutes:j._eno B0009OAP0W Philips DVP3050V/37 DVD/VCR Combo: Electronics electronics 1 of 1 1.0 Dead after 2 minutes August 13, 2006 J. Eno Washington, DC Can't say much for the video or sound quality, menu options, or anything really, since this thing broke after 2 minutes of watching Monsters, Inc. on DVD. Playback just froze, the thing stopped recognizing that DVDs were in unless you turned the thing off and then back on again, and after another minute it wouldn't even start playing the thing at all, just whirred a lot. So, dud B0009OAP0W:does_not_play_dvd's_from_other_regions:v._parikh B0009OAP0W Philips DVP3050V/37 DVD/VCR Combo: Electronics electronics 11 of 17 2.0 Does not play DVD's from other regions March 19, 2006 V. PARIKH Great DVD/VCR combo but does not play DVD's from other region. Does not have an eject button on the remote either. If u have DVD's, VCD from other countries that you would be playing I do not recommed this player B00067TTZO:good_player_but__very_poor_construction:bootsy98 B00067TTZO Creative Zen Micro 5 GB MP3 Player Silver: Electronics electronics 2.0 Good player but very poor construction November 25, 2006 Bootsy98 Chicago, IL United States My player had the same headphones jack problem that so many people here have had, which ended up rendering it useless (out of warranty). However, while it worked, I was quite pleased with the player and the included software. Everything was intutive and ran smoothly (except for an occational freeze with the player which never became frequent enough to be a major burden). I also liked the fact that this player wasn't bound by iTunes or file format restrictions. My only other complaint was that occasionally the touchpad made moving small increments like up one track or down one track somewhat difficult (just give me buttons, I know they aren't sexy but they're easy and work well). I am giving the product 2 stars because, while I liked it, Creative has known about the headphones flaw for a long time and has not improved the build (being that this is STILL a problem with these players). For the amount of money that a player like this costs, it should work for at least year B00067TTZO:great_features,_but_huge_flaws:lloyd_christmas B00067TTZO Creative Zen Micro 5 GB MP3 Player Silver: Electronics electronics 1 of 1 1.0 Great Features, But Huge Flaws September 28, 2006 Lloyd Christmas Canada This music player was decent: Nice look, controls, and sound. There are many nice features including decent software and using it as a data drive. There are really good things about this unit; however, the faults are just too great; thus, superseding the great features. However, the reaction to your key pushes, and file search are way too slow. The software is pretty nice, but the bad thing is that it likes to rename your files for you even when you didn't ask it too. That gets very annoying. For example, I just want the file to be named as is, with no tags, but the Zen software will add tags no matter what, even if it has to put in the word "unknown". It also has these strange crashes that makes it hard to have it recover. The worst part about this product is that the earphone jack gets damaged in a few weeks or months -- unprovoked! It was so frustrating to think my headphones where damaged, but I switched it up and found out that it was the Zen. Then I read online, and what do you know -- it's consensus, the product is faulty because many other people have experienced the same problem. Some people even found some fixes, and I've tried them, but to no avail. But then again, why do I have to fix a fairly new product? If you're going to have a fault when it comes to a music player, you DON'T want it to be a physical issue that renders the player useless! I'd give it at least three stars as I was quite satisfied with it, but the physical fault with the headphone jack is just too much of negligence to overlook B0007OWNBI:absolute_garbage:barton_t._loeser_"snwoburnt" B0007OWNBI Netgear RangeMax Wireless USB Adapter (WPN111): Electronics electronics 1 of 1 1.0 Absolute Garbage May 15, 2006 Barton T. Loeser "Snwoburnt" DC I purchased this product and ran home to try it out. not 5 minutes after plugging it in to my computer, my computer freezes. I restart and it says my device is malfunctioning. I manage to get it working for about 5 minutes before it craps out on me again. I try upgrading the drivers and it refuses to connect to my network. I'm a network engineer and I am well versed in what I am doing, but this card has given me nothing but trouble. I had to disable the software that came with it and use the windows wireless software to connect. This only keeps me alive for about 30 minutes before freezing. I talked to netgear support and they tell me that my processor isn't supported, which is total BS and just an attempt to get out of supporting me, they wouldn't even let me return the product. My advice: go with linksys or d-link or SMC, ANYONE but netgear B00003CWEK:whoa!!!__apples_and_oranges:dwpc B00003CWEK Monster Cable MV3CV-4M Monster Video 3 High-Resolution Component Video Cable (4 Meters): Electronics electronics 13 of 18 1.0 Whoa!!! Apples and Oranges January 12, 2005 DWPC Ventura, CA United States Several reviews mention the improvement when these cables to replace a composite (L/R audio + video) cable, or an S-video (multi-pinned plug). ALmost all of that improvement is due to the fact that these cable connection methods are completely different types in signal format and the TV uses different internal circuitry for each one. Virtually any S-video cable connection will give a better image than a composite type cable, and any component (individual R-G-B video) connection will be better than S-video. Cable brand has absolutely nothing to do with it. There may be some difference between one brand of component cable and another, but its almost always unnoticable B000031XCM:never_trust_this_product.:rebecca_cho B000031XCM Targus PA410U DEFCON CL Notebook Computer Cable Lock: Electronics electronics 1.0 Never trust this product. November 18, 2006 Rebecca Cho I bought this product less than a year ago. 2 days ago, I locked my laptop and tried to unlock it. But I couldn't. It was somehow messed up and the combination did not work. I HAD TO CUT IT!!! I don't know how it got messed up but I'm sure that it was not study enough to last long B000031XCM:lock_changes_combination_by_itself_-_do_not_buy:lgi B000031XCM Targus PA410U DEFCON CL Notebook Computer Cable Lock: Electronics electronics 3 of 5 1.0 Lock changes combination by itself - Do not buy September 2, 2006 LGI Dubai, UAE I have been using this lock for a few months without changing the combination. Suddenly I could no longer open it as it appears that the lock has changed its combination by itself. I called engineering in the hotel I was staying in to help me. It took them less than a minute to cut the cable with ordinary pliers. B000031XCM:once_it's_on_it_may_never_come_off.:mary_ann_niles B000031XCM Targus PA410U DEFCON CL Notebook Computer Cable Lock: Electronics electronics 4 of 5 1.0 Once it's on it may never come off. August 25, 2006 Mary Ann Niles While I don't have any evidence to refute the package claim that it "attaches to any notebook", once attached to my son's computer it was almost impossible to remove. It took 10 minutes to get it off and we were pulling so hard I thought we would damage the computer. We will be returning it. Not recommended B00022RV9E:poor_fm_stereo:marty_fin B00022RV9E Sony STRDE197 Stereo Receiver: Electronics electronics 5 of 5 2.0 Poor FM stereo August 19, 2006 Marty Fin The first unit couldn't even find FM stereo stations. It had similar FM specs as the Sony ST_JX410 AM/FM Tuner it was replacing. It was returned as a faulty unit. The replacement STRDE 197 was able to find stereo FM stations which played fine in monoral but were noisy in stereo. My 25 year old JX410 tuner did an excellent job on FM stereo stations. The second unit was returned for a refund. Sony's quality isn't what it use to be. I bought an Onkyo TX-SR304. The FM works fine with more features & expandability. B00022RV9E:an_inadequate_receiver:joseph_c._o'hagan_"joeyoh" B00022RV9E Sony STRDE197 Stereo Receiver: Electronics electronics 11 of 13 1.0 An Inadequate Receiver March 14, 2006 Joseph C. O'Hagan "joeyoh" Minneapolis MN USA I bought this receiver from Amazon, & received it about 10 days ago. Since then, I've tried to play my cassettes of classical music. When used for this purpose, this receiver sucks big time. If I turn the volume loud enough to hear the orchestra playing softly, when the orchestra gets loud the amp shuts down & PROTECT flashes on & off. I have to turn the receiver off, then turn it back on, & lower the volume. Then of course when the music gets soft again, I can't hear it B00022RV9E:horrible_crackling_noise:stu_"former_delco_audio_engineer" B00022RV9E Sony STRDE197 Stereo Receiver: Electronics electronics 9 of 14 1.0 Horrible crackling noise October 11, 2005 Stu "former Delco audio engineer" Cary,NC I bought one of these, it has a bad audio "crackling" noise on every mode except FM tuner (an obvious defect). Sounds like a capacitor going bad, not sure how it got through final test. Plus, the audio has noise when the display updates or the volume is changed. It also hangs on to stereo mode on weak signals with no blend or rolloff, you hear audio tones from the stereo decoder PLL losing lock from the station 19 KHz pilot tone. AM section is not bad, but the FM selectivity is not good enough to block alternate stations that most of my other radios deal with just fine. Volume steps are so small it takes forever to change, needs a flippin' crank on the knob. Don't buy this steaming turd.....buy a no-name China box, then you can throw it away when it claps out without feeling like you got scammed. B0000696Q1:panasonic_-_terrible_customer_service:a._goldstein B0000696Q1 Panasonic KX-TS208W 2-Line Corded Speakerphone with LCD Clock (White): Electronics electronics 1 of 2 1.0 Panasonic - terrible customer service May 24, 2006 A. Goldstein Livingston, NJ After two months, this phone stopped working. It was returned to Panasonic Repair and we received a notice thirty days later saying that the phone was back ordered and delivery would be in 6-8 weeks. This is not customer service. Panasonic should have refunded the purchase price or offered a comparable or better phone. When called today to check on status of order, answer was basically "tough luck." Never again, Panasonic. Amazon should discontinue this brand B00062FL42:broken_latch,_poor_hinge_design:eskimospy B00062FL42 PalmOne 3175WW Hard Case for Palm Tungsten T5: Electronics electronics 5 of 5 1.0 broken latch, poor hinge design May 7, 2006 eskimospy West Michigan USA As others have reported, my latch broke as well, but I broke it within three days of ownership. Within a month, I cracked the bit of plastic that is supposed to hold the palm in place when I was removing it from the case to sync it. At the time, the case had so many gashes and dings that it really looked unpresentable. Bought a Rhinoskin to replace this. Look elsewhere before you purchase this one B00062FL42:problems:jeffrey_c._vandegrift B00062FL42 PalmOne 3175WW Hard Case for Palm Tungsten T5: Electronics electronics 4 of 4 1.0 Problems April 7, 2006 Jeffrey C. Vandegrift Acton, MA United States OK, so it protects the TX on a fall, however the latching mechanism depends on a thin piece of plastic that eventually breaks, rendering the case without anyway of remaining shut on its own. Replacing this with something like the BoxWave.com hardcase, availab le from Amazon B00062FL42:the_little_plastic_catch_broke_in_less_than_a_month:s._sweeney_"ordinary_whiz" B00062FL42 PalmOne 3175WW Hard Case for Palm Tungsten T5: Electronics electronics 7 of 7 1.0 The little plastic catch broke in less than a month March 7, 2006 S. Sweeney "ordinary whiz" I purchased the case along with my new Palm TX to protect it on trips or whenever carrying it. It's a metal shell with a molded plastic liner. The little plastic catch in the lid half, which keeps the case closed, never seemed to work quite correctly, requiring several sliding motions before it would click shut. On a trip on March 3rd, this very small lip of plastic molded into the case broke away. Now it has no catch to keep it closed. Since the case cost me about $24 new and I'd only get about half price for the return, I figure the broken little catch costs me too much to return. I'll use a rubber band around the case, reminding me how flimsy and insufficient the case closing mechanism is. Save your money and don't buy this case. I don't remember reading the reviews before I ordered it -- so there's a $24 lesson B0007O7DTK:not_so_hot:jimbis B0007O7DTK Speck Products ToughSkin for iPod 4G & iPod Photo - Black: Electronics electronics 1 of 1 2.0 Not so hot May 30, 2006 jimbis CT Of the various iPod cases I've tried I found this one to be the worst. The click wheel cover is impractical and annoying and the screen cover falls out all too easily. Using plastic in rubber hinges was a bad idea which simply does not work well. See my other reviews for better iPod protectors B0007O7DTK:great_idea_-_bad_design:mark_mcelroy_"www-madebymark-com" B0007O7DTK Speck Products ToughSkin for iPod 4G & iPod Photo - Black: Electronics electronics 18 of 19 2.0 Great Idea - Bad Design October 3, 2005 Mark McElroy "www-madebymark-com" Jackson, MS United States I was delighted with my ToughSkin for all of two hours. That's how long it took for the belt clip to break, rendering my new purchase worthless to me. The ToughSkin itself is rugged; I loved it. I should have waited before buying it, though ... on my last visit to an Apple dealership, they had a bin full of *just the ToughSkins,* for sale at a discount. When I asked about these, I was told, "The belt clips break, and customers bring the ToughSkins back." I should note I'm very careful with my IPod and accessories. I'm not rough on them. The clip just fell apart while I was walking down the street. Given other comments about the flimsy clips, this is clearly a design issue that Speck Products needs to address B0001MHYK6:not_for_me_(or_gamers):rubix13 B0001MHYK6 Sennheiser PC155 Traditional Binaural PC Headset with USB and Noise canceling: Electronics electronics 5 of 5 2.0 Not for me (or gamers) June 16, 2006 Rubix13 Dallas TX First off, I bought this headset for gaming, which anyone who enjoys the pastime will tell you how quickly the hours can melt away. Gamers are dependant on an ultra comfortable pair of headphones that we shouldn't be able to feel. I have been searching high and low for the Holy Grail of comfort and I was certain paying $90+ for a "gaming" headset would be the end of my search. Sorry, these guys are going back. I've tried a couple "cheap" Best-Buy headsets that I found painful to wear after an hour or so. Then I decided to spring for "top of the line". I wore these for 15 minutes before it became obvious this headset was not the Holy Grail I've been looking for. The headset itself feels flimsy and cheap. The padding is made of an itchy fabric, and even on my small head, it feels tight. The earphones do not cover my ears and I can feel them slowly being crushed. I'm not impressed with the sound, but I could overlook that if they were comfortable to wear. I didn't even bother to try the mic. If this is how Sennheiser makes their high end gaming equipment, I think it's safe to say I will avoid these guys in the future. The $30 pair of Aiwa's I wear at work are more comfortable than this and sound the same... if only that pair had a mic. *My ears still feel uncomfortable after taking the set off and then writing this review- I couldn't imagine wearing them for a few hours while gaming. If I find the perfect pair I'll let you all know B0006BBIZO:disappointment:jtb_"atlheff" B0006BBIZO Panasonic RP-HJE50 High-quality Earbuds with Replacement Earpads: Electronics electronics 1.0 disappointment November 4, 2006 JTB "atlheff" Atlanta, Georgia United States Terrible. No bass. "J" type wiring is hard to adjust to. Substandard product for Panasonic. AVOI B0006BBIZO:bad_sounding_headphones!:metal_fan B0006BBIZO Panasonic RP-HJE50 High-quality Earbuds with Replacement Earpads: Electronics electronics 0 of 4 1.0 Bad sounding headphones! December 23, 2005 Metal fan NYC I've been a fan of Sony earbuds for many years. Due to the bad reviews of durability of the latest Sony earbuds, I decided on purchasing these Panasonic headphones. I bought these headphones because my Sony headphones died after 3 years and to upgrade my factory Creative Zen Micro headphones. I found a perfect fit between the 3 size earplugs. I've noticed that it does block out the sound in your surroundings. It's good for that commute to work when there is a lot of noise. I like the around the neck feature. As far as quality, the extention part of the wiring looks durable but not the around the neck part of it. As far as the performance of the headphones, I'm really disappointed in these headphones. My factory Creative headphones had out performed these. The bass level is too low even when I max out the bass in the player. The mids and treble sound like crap. Don't waste your money on these! Now I have to spend more money to replace these poor quality headphones! argh! B00070FHXS:this_product_ruined_our_car_battery_and_2_ipods:d._williams B00070FHXS Belkin TuneBase FM Auto Charger/FM Transmitter for iPod Mini: Electronics electronics 3 of 4 1.0 This product ruined our car battery and 2 Ipods September 15, 2006 D. Williams New England, USA We tried the Belkin in one car. When we turned the Ipod on, the car battery immediately discharged (we had to buy a new car battery) and the Ipod died. We bought another Belkin and tried it in a different car and with a different Ipod (in case the first incident was a coincidence) and this Ipod died too. The Ipods were under warranty, the car battery was not. We tried this with 2 different Belkins, in 2 different cars with 2 different Ipods. I would not recommend this product to anyone. B00004Z64M:labels_not_for_seiko_printer.:bonnie_w._suerig B00004Z64M DYMO 30252 Address Labels for LabelWriters: Electronics electronics 6 of 18 1.0 Labels not for Seiko Printer. October 11, 2002 Bonnie W. Suerig Springdale, UT United States These labels were advertised with the Seiko Label Printer. They did not work with the printer because the printer requires thermal labels. I sent these labels back to Amazon and they promptly refunded my money B0002OCR5K:waste_of_money:s._walter_"qwicksilfer" B0002OCR5K Apple M9603G/A iPod Carrying Case with Belt Clip: Electronics electronics 3 of 3 1.0 Waste of money September 15, 2005 S. Walter "qwicksilfer" College Park, MD Instead of getting this just get the cheaper skins. I figured to get the nicer one since I already shelled out all my money on an iPod, but it is a lot of money for a carrying case. Definetly get the skins B0002OCR5K:waste_of_money_-_:mehryar_yousefi_"galdes" B0002OCR5K Apple M9603G/A iPod Carrying Case with Belt Clip: Electronics electronics 8 of 8 1.0 waste of money - September 8, 2005 Mehryar Yousefi "galdes" Sunnyvale, CA USA the case looks nice, but not practical. Everytime you need to change the volume or track you have to pull your ipod out. My ipod had scratch marks on it the first week. Unfortunately, all the picture you see of this case is from the side view, so you cannot see that there is no opening for the wheel and the display. I recommend iskin product. B000629GES:don't_work:rr B000629GES Sony MDR-NC6 Noise Canceling Headphones: Electronics electronics 1.0 don't work November 25, 2006 rr alameda, ca United States Maybe I got a defective pair, but the noise cancel barely does anything, maybe cuts out 3%. Not worth it, taking back and trying something else B00006JQ06:sony_walkman_radio:laurie_a._hanas B00006JQ06 Sony SRF-59 FM/AM Radio Walkman with Sony MDR Headphones: Electronics electronics 2 of 2 2.0 Sony Walkman Radio November 4, 2006 Laurie A. Hanas THe radio works great....except the last 2 Sony walkman am/fm radios I have had you were able to CLIP onto your WAISTE band when exercising.....it was just a large CLIP thing....THIS new one has a different type that you HAVE to use a BELT with! and WHO uses a belt to work out ? I certainly dont.....so I am using a VERY LARGE safety pin thru the hole in the back and then I pin it onto my shorts....which has made a nice hole in the material of two pairs. Otherwise it is a great item B000F1YF9Q:sent_it_right_back:amighty_"celebrity_poker" B000F1YF9Q Toshiba SD-P1700 Portable DVD Player with 7" Widescreen LCD: Electronics electronics 3 of 3 2.0 Sent it right back November 15, 2006 Amighty "Celebrity Poker" New York City I actually meant to order the Philips 7-incher (brighter screen, $20 cheaper, bulkier), but somehow I got confused when I placed the order...this one looked beautiful so I was pretty psyched anyway and was definitely going to keep it. I was planning on using this for work, as I get a lot of DVD's from clients - so I popped one of those in and guess what? It came up as "invalid disc". It's supposed to play the majority of formats, and I triple checked the disc in my other dvd players, and it worked in my Panasonic DVD/VHS combo player. A store-bought DVD worked fine (although I didn't play it much more than the first menu) so I know it's not broken. The first reviewer also noticed that it doesn't play a bunch of homemade DVD's, so I will confirm that here - if that's gonna be a deal-breaker for you then stay away. BTW, the DVD I was trying to play was made on a Philips burner. I didn't bother to test it with any others B000234WFE:not_to_spec:daniel_e._walters_"herr_x" B000234WFE GMP ELITE LCD ARM ( MV17DC ): Electronics electronics 1 of 1 1.0 Not to spec September 10, 2006 Daniel E. Walters "Herr X" OC, CA USA I ordered 2 of these, realizing they would have limited adjustment range - other reviews are correct in that they are very limited in their travel. What prompts my one star rating and subsequent return of my order is that they will not hold their rated weight. This model is supposed to hold a 25 lb. monitor; it failed miserably at attempting to hold my 23 lb. iMac. There is no tension adjustment (already as tight as it would go) and the computer just flopped forward. With a light monitor, I'm sure it would be fine, but don't expect even close to the stated 25 lb. rating. B00062VYR0:waste_of_money!:d._gordon B00062VYR0 Audiovox D1812PK 8" Portable LCD DVD Player with Car Kit: Electronics electronics 6 of 6 1.0 Waste of money! July 3, 2006 D. Gordon I spent $400 16 months ago on two very similar portable Audiovox DVD players for my kids, for long roadtrips. They were handled with care, never abused or exposed to severe temperatures. I think we got about 6 trips out of them, then the screens went blank while in use and both units died within 24 hours of each other. Circuit City informed me the product is no longer on their shelves and referred me to Audiovox, who will do nothing since the product is now out of warranty. Extended warranties are useless on this kind of product -- who can wait 6-8 weeks for repairs? Parents, find another brand B000189VQ0:two_strikes_i'm_out!:d._obrien B000189VQ0 Garmin GPSMap 60C Handheld GPS Navigator (56 MB): Electronics electronics 2 of 8 1.0 Two Strikes I'm Out! May 12, 2006 D. OBRIEN Southern California Bought one from Amazon, they sat on the order for a week before shipping a unit that arrived dead. Went through the return/replacement process and they sat on the order for over a week this time and the that one arrived dead with the exact same failure mode. The second one looked as if it had been opened before, accessory bag not sealed, manuals out of place, interior packaging worn. I believe the second one they sent was a return that was then resent to me. Bad news!!! I still had both and in hope of fixing on, I contacted Garmin who said they were indeed broken and offered to fix one and send it back. This would mean I'd have paid full price for what would then be a refurbished unit. Both of them returned. I needed the unit right away for a desert trip. Amazon's refund process made it such that they'd not refund all of the funds but hold them on account (those that were originally given to me as a gift certificate from my employer). Therefore I could not get the equipment for a local vendor. I opened one month nearly to the day dealing with slow order processing, bad units, and more. So, I'd not recommend the unit and I think Amazon may need to review their own practices to ensure what they have in inventory is new and likely operational, and that when a customer orders something, they put in the effort to ship it ASAP!! Without that, if you have to buy one, go to a local dealer, put that batteries in at that shop and have them prove it works before you leave with it. Since you can't so that here, don't buy it here. B000189VQ0:ok,_but_not_perfect!:adonis_good B000189VQ0 Garmin GPSMap 60C Handheld GPS Navigator (56 MB): Electronics electronics 5 of 5 2.0 OK, but not perfect! March 2, 2006 Adonis Good Oxford, England My first GPS. It was pretty expensive and had lots of nice features (ability to save many tracks). The software is very US-centric. It worked very well on the flat and in unwooded conditions. However don't use one of these things to navigate in the bush (use a compass). The technology is just not there to cope with either valleys or an overhead canopy. It was handy to confrm where I was when I found a clearing on top of a hill. Finally although the battery life is better than most it is still abysmal. In summary these things are still a toy for a tramper rather than an essential tool B000189VQ0:garmin_support_for_gps_60:w._isenberger B000189VQ0 Garmin GPSMap 60C Handheld GPS Navigator (56 MB): Electronics electronics 5 of 6 1.0 Garmin support for GPS 60 February 1, 2006 W. Isenberger Springfield, MO United States I purchased two of these units the first one worked OK. The second one has a problem. In a side by side comparison the signal qualities of the two units vary. I checked there accuracy and tracking with OziExplorer moving map software. The first unit tracks pretty good, but the second units position is off a large percentage of the time and sometimes as much as 400 meters. I sent the faulty unit to Garmin to be repaired. They sent it back with a description of the problem and that it had been fixed. I checked the unit out and it is the same as when I sent it to them. Now I'm stuck with a dud B00006B9QE:very_disappointing:erin B00006B9QE SanDisk SDCFB-256-A10 256 MB CompactFlash Card (Retail Package): Electronics electronics 3 of 3 1.0 Very disappointing July 20, 2005 Erin Chicago, IL My brand-new card failed the first time I tried to download pictures from it; I lost all of the pictures from my two-week trip to Guatemala B0002DDZ5M:omg!!!:sunday_m._thompson B0002DDZ5M Credit Card Digital Camera: Electronics electronics 2 of 2 1.0 OMG!!! October 17, 2006 Sunday M. Thompson New Haven, CT This has got to be the worst camera out there. I don't even think it's suitable for my 13 year old son. The pictures come out horrible! Good thing it was purchase mainly with gift certificates. I'm still sorry I wasted them on this piece of junk B0002DDZ5M:awful_camera:l._watson_"busy_mom" B0002DDZ5M Credit Card Digital Camera: Electronics electronics 10 of 10 1.0 Awful Camera December 25, 2005 L. Watson "busy mom" I purchased this camera for my daughter for Christmas. It was small,compact, and fairly inexpesive, perfect for a preteen. First, it took forever to charge (the instructions indicate that it takes four hours). After waiting for hours, my daughter attempted to take pictures, but the camera would not work. The manual shows several different symbols that you should see in the LCD display, but none of these symbols appeared on this camera. I am returning the camera immediately and I would not advise anyone to purchase one. B00008ZEKC:piece_'o'_crap!!!!!:elizabeth_moe B00008ZEKC Coby CX-CD375 Micro Stereo System with Top-Loading CD Player: Electronics electronics 1.0 Piece 'O' Crap!!!!! November 20, 2006 Elizabeth Moe I bought this so called "stereo" system at a Big Lot's Store for about $40.00. I figured since they were selling it there it must be a good deal, and it looked very cool too. It worked for about a month before it started skipping and remote was wigging out. It never sounded any better than one of those old plastic 45 record players. It looked good in my daughters bedroom but it lookes and sounds much better in the dumpster. I can't believe this company can get away with selling this worthless crap. I will never buy anything from them again B0002XGSS8:spacebar_sticks:k._hiles_"wldangel" B0002XGSS8 Logitech diNovo Cordless Desktop: Electronics electronics 6 of 7 1.0 spacebar sticks May 8, 2006 K. Hiles "wldangel" PA USA I would love this keyboard except for the spacebar, which sticks very badly. It installed easily-is sleek and comfortable-but is not usable for very long because of this glitch. I'm starting to see more reviews on this spacebar problem-so it looks to be fairly common with this model. B00023MEL8:good_sound,_not_so_good_quality:t._gray B00023MEL8 Acoustic Research AW721 900 MHz Wireless Stereo Headphones: Electronics electronics 3 of 3 2.0 Good sound, not so good quality September 25, 2006 T. Gray I've loved these headphones for the year or two I've had them. I still love them now.... when they work. The problem is that the cord is shoddy. When I plug into my laptop I have a hard time keeping it working. I have to twist the cord just right to get the sound to work. If its not just right I'll get sound in only one ear, if at all. I don't think this happened because of any handling issues seeing as how the base just sits on my desk. I don't think it has ever left my office and I don't tend to put items on top of the wire that might crush it. Overall I like these things, but I'm just getting sick of the sound phasing in and out when my laptop moves the slightest bit B000A2EXI8:adequate_for_simple_recording_only:jon_norris B000A2EXI8 Olympus VN-960PC 128 MB Digital Voice Recorder with PC Link: Electronics electronics 4 of 5 2.0 adequate for simple recording only October 28, 2006 Jon Norris Oregon, USA I purchased this in the hope that I would be able to record verbal messages to myself, creative thoughts and ideas, etc. It does an adequate job of that. I had also hoped I could use it as a simple player, to download affirmations and such to listen to throughout the day. This it won't do, and it was not clear to me from the information here and on the Olympus site that it would not function this way. First, even though it records wav files, it does not let you handle them well at all. To transfer recordings to your computer, you have to install special software (included), but you cannot transfer wav files back to the recorder (according to the software guide). If you want a recorder/player to function easily like that, you should go for the more expensive ones that allow you to use them as a USB flash drive (like the Creative Zen series). I did not install the software, as it offered nothing other than the simple transfer of a recording to my computer. I can record directly to the PC with much higher quality, so why bother? Noise recorded in a high quality format is still noise. It makes more sense to simply repeat anything I record on the Olympus and record it directly to the PC. Second, the sound quality is not great. Given that wav files are what are used on CDs, one would expect more than what this device delivers. It is noisy on either of the mic settings, and I would have to describe the sound quality as medium. Don't expect high fidelity. This is a voice recorder for recording quick notes and not much else. Even analog tape would be better for most things. I may be fussier than most about this, having some professional background in audio, so the sound quality may be okay for most people. People have gotten used to lower standards in just about everything. Finally, playback was very disappointing to me. It has only the simplest playback features. It plays, pauses, fast forwards, and reverses, period. You cannot repeat either a single recording or portion of one, and you cannot create any kind of list to specify only certain files to play. It plays (manually) one recording at a time and that is it. You cannot set markers to fast forward or reverse to (like chapters on a DVD), and searching through a recording of any length is a major pain. In fact, this recorder is defined more by what it cannot do than what it can do. It is well built physically, although it is definitely designed for small hands, and can be a bit uncomfortable to use if your hands aren't small. If all you want is to record medium quality voice, this will work fine. Don't expect it to record music or anything like that - you will be disappointed. Think of it as the audio version of a $20 digital camera. Cheap, quick, grabs the image, but no frills at all. Don't expect much and you won't be disappointed. I am usually very happy with Olympus gear, but this is definitely below their usual standard. Unless your needs are very spartan and smple, I would recommend looking at more capable devices B0001DHHI4:was_unable_to_use:jeffrey_smith B0001DHHI4 TRENDnet 54Mbps 802.11G Wireless PC Card: Electronics electronics 1 of 1 1.0 Was unable to use February 12, 2004 Jeffrey Smith Penfield, NY USA I was not able to get this card working with my Win2K laptop. I'm no novice, have configured the rest of my wireless network without any problem, and have had a friend's Netgear card working in the same system. I called tech support and after working with me they said the card was defective and to send it back, which I did. However, I had the same problem with the replacement card. So, I can't recommend this product B000092TSX:caveat_emptor:charles_anderson B000092TSX Timex T309T Alarm Clock Radio with Nature Sounds (Titanium): Electronics electronics 1 of 3 1.0 Caveat Emptor November 14, 2006 Charles Anderson While spending hours trying to figure out how to set the alarm, I sometimes wonder what hater of humanity actual designed this thing B000092TSX:poor_design_award_winner:kent_s._policky B000092TSX Timex T309T Alarm Clock Radio with Nature Sounds (Titanium): Electronics electronics 2 of 3 1.0 Poor Design Award Winner November 2, 2006 Kent S. Policky 1. Buttons are too small, some of which are not spaced apart very well (very convenient for somebody waking up who can accidentally hit the wrong button). 2. Buttons are labeled, organized, and layed out confusingly. For example, why not have an "alarm interface" which would include all of the alarm modes and features, and maybe a "radio interface" which would include all of the radio functions/settings. You would really understand how confusing this is if you were to actually go through the process of operating this alarm clock. But really, don't do it, make the smart choice. 3. Too many features/modes. I understand some people prefer all of the different features, but I wanted a simple alarm clock with a buzzer/radio, and clock. Of course all of these special modes are set as the default, so it is a pain to try and configure all of the settings to a simple mode. So for those who want a simple alarm clock, definitely DO NOT GET THIS!! 4. The button handling event is flawed. For example, sometimes when I push a button, it does not handle the event (the device doesn't think that you pressed the button). So I would have to press the button again and check to see if the radio handled the button input correctly. 5. It is very slow when holding the button down and waiting for the alarm clock to increment up and down. 6. Radio reception is very poor. I have another radio right next to it that gets much better reception than this clock. 7. LED is not very bright and hard to read from 10 feet and farther out. I have nothing against TIMEX (they make great watches). This was written to protect anyone who who does not want to waste $30. B000092TSX:keep_looking:m._l._moore_"roller_mommy" B000092TSX Timex T309T Alarm Clock Radio with Nature Sounds (Titanium): Electronics electronics 3 of 4 1.0 keep looking June 4, 2006 M. L. Moore "Roller Mommy" Las Vegas, NV I had this 6 months (which is how long it takes to figure out how to use it!) and the backlight is no longer working. So I can't see the time, without a flashlight or lamp B00005T3RC:uncomfortable:n._collum B00005T3RC Sony MDR-E829V Fontopia Earbuds with In-line Volume Control: Electronics electronics 2 of 4 1.0 Uncomfortable April 14, 2006 N. Collum i had these headphones for a few years then they got crushed in half in my bag. they hurt your ears after about ten minutes. they are durable though. i would recommend the kind that clip behind your ear B00005T3RC:for_small_size_buy_in_the_ear_canal_type_earphone:nirmal_"ketan_nirmal" B00005T3RC Sony MDR-E829V Fontopia Earbuds with In-line Volume Control: Electronics electronics 1 of 4 1.0 for small size buy IN THE EAR CANAL type earphone February 5, 2006 nirmal "ketan nirmal" baroda gujarat india my this earbud headphone is poor in bass response comapared to my sony mdr g-54lp(beware mdr-g54lp and mdr g54lp is two different models there is difference of - sign) actually in experts view this type small earbuds use to give poor sound this is true with any brand and model so never buy earbud type small headphone if you want small headphone buy IN THE EAR CANAL type headphone in experts view this type in ear earphone use to give good crystal clear sound example sony mdr ex 71 / 81, shure e2c etc. if bigger headphone is ok than buy mdr-g54lp B00009MVGK:don't_buy_this_product:craig B00009MVGK GE JasHO97936 10-in-1 Card Reader/Writer: Electronics electronics 1.0 Don't buy this product April 13, 2004 craig nevada, USA While the price of the 8 in 1 card reader is reasonable, consider this. This card reader has a nasty habit of rendering smart media card useless. Evidently, if you cut and paste or delete data on the SM card using thee 8 in 1 card reader, the reader rewrites the signature file so that it cannot be read by the camera. So that $24 card has the potential to cost you over $80.00. In addition, customer service is slow and I have had problems with the drivers B00009MVGK:eight_what&gt;:roger_s._wall B00009MVGK GE JasHO97936 10-in-1 Card Reader/Writer: Electronics electronics 1.0 Eight What&gt; March 16, 2004 Roger S. Wall Wouldn't it be nice to know what eight types of media the device will handle B00028D778:beware!:erik_v_"design_engineer" B00028D778 Escort Passport 8500 X50 Radar and Laser Detector (Red Display): Electronics electronics 27 of 29 1.0 Beware! August 3, 2006 Erik V "Design Engineer" Kinnelon, NJ I ordered the Passport X50 from Amazon to save the $18 shipping Escort Radar was charging. I was told by someone at Escort Radar that Amazon was an authorized reseller. After having my detector on for ten minutes (right out of the box), it did three "SELF CAL"s, then said "SERVICE REQUIRED". I called Escort Radar and was told "If you let the car power up the unit when you start the car, the voltage can be all over the place and the unit gets confused. You must first start the car, and then use the thumbwheel to turn on the detector." It makes some sense, but if this is really the case, why don't they put those instructions in their manual? After trying this many times, the unit was "still confused", so I returned it for a replacement. My second detector worked for maybe thirty minutes before the same thing happened. This time Escort Radar told me "if you leave it plugged into the cigarette lighter over night, this has been found to cause problems." Well my lighter power goes off when I turn off the ignition, so this doesn't apply. Escort Radar also told me that "excessive heat" has been causing them problems. Now we have had a few days of 100� heat, and I'm sure the car gets hotter parked in the sun, but the design engineers should have accounted for these conditions plus some margin when you design something that is supposed to work in a car. It gets a lot hotter in other parts of the country. There are no warnings in the manual about not using it above 90� or leaving it off in a hot car. You wouldn't design a ski that doesn't work below 35�, would you??? The most troubling part of my conversation with Escort Radar service department was they told me Amazon is not an authorized reseller, and they have no idea where they are getting the units from. Furthermore, they will not honor any warranty nor will they ever repair the unit, not even for money. B0000D8IYC:if_you_are_going_to_use_coaxial_cable_protection,_don't_buy_this_one:tony B0000D8IYC APC PF11VT3 11-outlet SurgeArrest with Tel2/Splitter and Coax Protection: Electronics electronics 5 of 5 1.0 If you are going to use Coaxial cable protection, don't buy this one August 1, 2006 Tony Blacksburg, VA I bought this one for its coaxial cable protection function, but the result is terrible. It greatly degrades the signal. When I use it with TV, the program on TV became unclear. When I use it with computer, the high-speed internet kept dropping. I intended to return it to Amazon, and I found Amazon's return policy is that only partial refund for opened products. How can I know it's dysfunctional before I destroyed the package and used it? In the future, I only buy stuff at online stores with local stores, such as bestbuy or circuit city, so that I can easily get refund. B00067LYFW:pretty_dissappointing:m._smith B00067LYFW iRiver AFT 100 Mobile FM Transmitter: Electronics electronics 2 of 2 2.0 Pretty Dissappointing November 18, 2006 M. Smith I bought the iriver mobile transmitter hoping that i would be able to listen to my mp3 player through my radio. I like the fact that it is easy to use and that you can choose your station, but i live in monroe and we get stations from toledo and detroit, which is a problem because most or all of the stations are occupied or have interference and the transmitter is not strong enough to block out the slight interference from far away stations. I didnt think to check to see how many stations i could use for this product, looking back, i should have. i would only recommend this transmitter if you live somewhere that there aren't many stations that you can listen to on the radi B00067LYFW:fm_transmitter:misty_graham B00067LYFW iRiver AFT 100 Mobile FM Transmitter: Electronics electronics 1 of 3 1.0 FM transmitter November 12, 2006 Misty Graham It broke after two uses. It has an auto shutoff if no detection after 30 seconds and I plugged it in to everything and it would shut off every 30 seconds. I was so mad I threw it out the window. What a waste of thirty bucks B0002DD944:worked_for_about_1_month,_then_nothing_but_trouble_since.:explaced B0002DD944 Beltronics Pro RX65 Radar detector: Electronics electronics 3 of 9 1.0 Worked for about 1 month, then nothing but trouble since. May 19, 2006 Explaced NC The Bel RX65 worked great, for about 1 month. After that, it started flashing "SelfCal" and "Service Requiered" on the screen. Sent it in to Bel for them to fix the problem. After about 10 days I got the product back, only to have it repeat exactly the same problems again within 2 days of having it. I feel like I've been ripped off, because they either didn't even look at it or they don't know how to test something for a problem. I spent $300 for a detector that doesn't work as well as a $40 one (and I know, I've had both)! I would say I recommend Escort, but I've since learned that they are owned by the same company as Bel. Valentine 1 is too costly, so I guess that doesn't really leave many good detectors on the market B0002DD944:way_to_expensive.:jimmy B0002DD944 Beltronics Pro RX65 Radar detector: Electronics electronics 1 of 18 1.0 Way to expensive. February 25, 2006 Jimmy These things are not worth the money .. get a cheap one! Look at http://www.radarbusters.com/ or www.007radardetectors.com or www.consumersearch.com B00006JKWX:the_"grip"_behind_the_connector_is_too_fat:sendtoscott_"sendtoscott" B00006JKWX Monster Cable THX I100 FO-8 Standard THX-Certified Fiber Optic Digital Interconnect Cable (8 Feet): Electronics electronics 15 of 19 1.0 the "grip" behind the connector is too fat December 28, 2004 sendtoscott "sendtoscott" Houston, TX You can't plug two of these in side-by-side, the plastic surrounding the business ends are too fat B00006JKWX:do_the_research_yourself:brian_meyer B00006JKWX Monster Cable THX I100 FO-8 Standard THX-Certified Fiber Optic Digital Interconnect Cable (8 Feet): Electronics electronics 15 of 32 2.0 Do the research yourself July 7, 2004 Brian Meyer Chicago, Il Don't listen to any of us.You already have an internet connection because you are here. Go to a browser and ask the question you asked here. You will find that any review that is NOT a store will tell you that ALL speaker wire is the same. They just look cool. If that's what you need, then buy it. Otherwise, stay away from monster. It's just like bose speakers. BUZZ word, that's all. These companies can't make any money selling you a 10 dollar cable. B0001ZY6Z4:broke_after_a_year.......:kimmiemann B0001ZY6Z4 Audiovox VBP700 7" DVD Player in a Bag: Electronics electronics 1.0 Broke after a year....... October 2, 2006 kimmiemann Pennsylvania At first it wasn't a bad unit. But it broke within a year. Now that I read the past reviews, I see I'm not alone.... B0001ZY6Z4:two_down...._one_to_go-_in_the_garbage!!!!!:mom_of_4_"vanessa" B0001ZY6Z4 Audiovox VBP700 7" DVD Player in a Bag: Electronics electronics 3 of 6 1.0 TWO DOWN.... ONE TO GO- IN THE GARBAGE!!!!! July 20, 2005 MOM OF 4 "VANESSA" FLORIDA GOT THIS UNIT ON MARCH 28TH 2005 AT CIRCUIT CITY HAD IT FOR EXACTLY 2 WEEKS AND THE DISK STOPPED SPINNING! TOOK IT BACK TO THE STORE AND THEY DIDNT HAVE ANOTHER ONE SO THEY TOLD ME I COULD PICK IT UP AT ANOTHER ONE OF THEIR STORE LOCATIONS AND IT WOULD BE "READY FOR ME" TO PICK UP! PICKED IT UP TOOK IT HOME AND COUPLE OF DAYS LATER WENT TO USE IT AND IT DIDNT SPIN!!! RIGHT OUT OF THE BOX!!! TOOK IT BACK TO CIRCUIT CITY AND THEY SAID THEY COULD ONLY FIND THE RECEIPT ON FILE FOR THE FIRST ONE(THAT GOT RETURNED) AND NOT FOR THIS ONE--- AFTER MUCH DEBATE NOTHING GOT DONE FOR ME AT CIRCUIT CITY BECAUSE THE RECEIPT THEY GAVE ME BACK WAS THE OLD ONE AND NOW I'M STUCK WITH THIS PEICE OF JUNK I PAID $369.00 FOR AND CIRCUIT CITY SUCKS TOO! CALLED AUDIOVOX TODAY 7/19/05 (WAITED A WHILE I WAS BUSY GIVING BIRTH AT THE END OF MAY)AND THEY TOLD ME THE 90 DAYS WERE UP (BY 10 DAYS!) AND COULD ONLY FIX IT FOR A FLAT RATE OF $93.00 PLUS SHIP!!! I AM PISSED OF B000A6LSVY:great,_but_tweaks_os:natasha_greer_"crimson_diva" B000A6LSVY Microsoft Wireless Laser Mouse 6000: Electronics electronics 2 of 5 2.0 Great, but tweaks OS July 11, 2006 Natasha Greer "crimson_diva" Sacramento, CA USA I love this mouse! It's compact and picks up the signal on just about EVERY surface. I gave it 2 stars because I figured out that it was preventing my laptop from going into idle mode (Windows XP, SP2). Sadly, I'm going to have to get another mouse because of that B0001F21IS:very_handy:g._j._zachotina_"georgez." B0001F21IS SanDisk SDCZ4-256-A10 256 MB Cruzer Micro with Skins (Retail Package): Electronics electronics 0 of 17 1.0 Very handy June 28, 2006 G. J. Zachotina "GeorgeZ." Antioch, IL Is very neet item especiatlly since it is usable with 1:1 speed as well as 2 B00006HCCS:the_slide_lock_key_is_too_weak:felix_tello_junco_"felix_tello" B00006HCCS Lexar Media 256 MB Secure Digital Card: Electronics electronics 3 of 7 1.0 The slide lock key is too weak May 15, 2004 Felix Tello Junco "Felix Tello" Miami ,FL USA I bought it last april and i didnt realize that slide lock key was too weak, and now I try to write data but a message is about the data is secure (locked) B000F2P300:do_not_buy:david_mier B000F2P300 Samsung HL-S6186W 61" DLP HDTV: Electronics electronics 0 of 5 1.0 DO NOT BUY October 19, 2006 David Mier AL United States Samsung is the WORST. We bought this TV in August and it was delivered in September to our new house. We opened it on a Sunday, plugged it in and watched it for a while, then on Monday it would not come on. They thought it was a lamp, but that didn't fix it so they came and got it to service it. We bought it for football season and football season is half over and we still have no TV. They decided to replace it since they couldn't fix it. That was three weeks ago. Now they are giving us the runaround blaming shipping/warehouse/etc for the delay in sending the new one. During a phone conversation with Samsung they basically said they were so far behind on shipping because they had so many to ship out (ie lots of them have problems and are being replaced is the way I took it. B000F76W78:buy_a_pocket_pc_smartphone_instead:lorenzo B000F76W78 Netgear SPH101 Skype Wi-Fi Phone: Electronics electronics 2 of 4 2.0 buy a Pocket PC smartphone instead November 17, 2006 Lorenzo After waiting almost 6 months for this Skypephone, and its competitor from Belkin, to come to market through numerous postponements, I just gave up and bought an Asus P525 smartphone. For just over double the price of the Netgear I got a Windows CE PDA with GSM capability and full Skype compatibility. When browsing through your phone contacts your are given the choice to call through GSM or Skype. Because you have built-in Wi-Fi, you can make Skype calls and chats from any covered area, plus you can go on the internet using IE and check your e-mails with Outlook. I have also read that the Skype software that runs on dedicated phones like the Netgear and the Belkin is very crude due to the lack of processing power, whereas with a Windows CE-based device you have much faster processors that allow a Skype software closer to the one used on PCs. For those of you alergic to Windows, just wait for the Skype for Symbian release and buy a Nokia or SonyEricsson smartphone. Bottom line: Skype is too good an application to be wasted on poorly designed hardware B000F76W78:problems,_and_more_problems_with_this_telephone:andrew_revai B000F76W78 Netgear SPH101 Skype Wi-Fi Phone: Electronics electronics 4 of 5 1.0 Problems, and more problems with this Telephone November 5, 2006 Andrew Revai Thornhill, Ontario Canada This phone is a total piece of garbage. Freezing, rebooting, not being able to connect to hot spots, not logging you out of skype if you are logged on at your computer at the same time. Horrible tech support. Can I add any more negative feedback? Oh yeah the rediculous ring tones and speaker quality. Thanks for nothing netgear and for making me wait 6 months on pre order for a real piece of plastic junk B000AY5YI4:mouse?_what_mouse:robert_day B000AY5YI4 Logitech G5 Laser Mouse (931376-0403): Electronics electronics 1 of 6 1.0 Mouse? What Mouse November 9, 2006 Robert Day Alaska Amazon does not ship to Post Office Boxes. The mouse could ONLY be shipped to a post office box per Amazon shipping proticol. Therefore, after TWO attempts to purchace this product from Amazon I had to buy elsewhere. If you live where the United States Postal Service does not deliver the mail to your house, pass of this item if not Amazon. I have considerable expierance buying mail order and online and this is the first time I have found a company setting rules that actually prevent the buyer from recieving the product B000AZ0QC2:great_prints_-_poor_reliability:d._g._alcini_"electro-nerd" B000AZ0QC2 Canon PIXMA MP800 All In One Photo Printer: Electronics electronics 2 of 4 2.0 Great prints - poor reliability October 24, 2006 D. G. Alcini "electro-nerd" Shelby, Mi. I bought this printer about 4 months ago. The prints are beautiful, and the speed quite good as well. However, I felt compelled to write a review tonight because of the constant error messages that pop up saying that there are too many ink cartridges of "X" color installed. It happens now between every print job, forcing me to open the printer, pull out and re-install one to three of the tanks, and then print my document. There is something wrong with this thing, and I don't appear to be the first experiencing it. Figures... I wait eight years to replace my printer, and end up with one that malfunctions! I will attempt to return this item B000BK106C:strong_+'s_injured_by_not-infrequent_paper_jams:ronster B000BK106C Fujitsu SCANSNAP FI-5110EOXM-15PPM FOR MAC USB 2.0 ( PA03360-B035 ): Electronics electronics 2 of 2 2.0 Strong +'s injured by not-infrequent paper jams September 26, 2006 ronster college station, tx I love the basic design, great hardware/software linkage, and software interface of this Mac-happy scanner. However, I value my time too much to babysit the feed mechanism of the unit I received last week. It inconsistently graps multiple pages as other reviewers have disclosed. So, if you're scanning a 10-page doc and it misses one somewhere along the way, have you really accomplished anything? No. You must either try the whole thing again (with likely the same result), or you must figure out what page(s) is missing, scan it separately, and go thru a simple yet not expedient Acrobat process to insert the omitted page. In the end, this machine made it +90% of the way to being a really great product, but the shortcoming fouls half the machine's overall utility. Swing a little bit harder next time Fujitsu B0006698SS:piece_of_junk:ga_computer_user_"ga_computer_user" B0006698SS D-Link DWL-G710 Wireless Range Extender, 802.11g, 54Mbps: Electronics electronics 1 of 1 1.0 piece of junk November 11, 2006 GA computer user "GA computer user" alpharetta, GA USA I've gone thru multiple revisions of firmware, and multiple calls to D-Link support, and this piece of junk still does not work with the D-Link DWL-G700AP. D-Link support calls are worthless. As a computer professional, I find it appalling that D-Link would introduce and continue to sell this product, which clearly does not operate correctly. B000069LIL:don't_buy_this_machine_-_it's_a_dud:adriana B000069LIL Brother 4750e Intellifax Fax Machine: Electronics electronics 1 of 2 1.0 Don't buy this machine - it's a DUD September 8, 2005 Adriana Austin, TX I bought this machine on August 3, 2005 and within one week of using it (as an outgoing fax only), there was a machine error. I called customer service and after being on hold for 23 minutes I was able to speak with a live representative. I was told that the machine would need to be replaced. They sent me a REFURBISHED unit (the warranty indicates that any replacement units will be refurbished units). They sent the base unit only, so I had to remove the drum unit, paper tray, and handset from the original fax machine to use with the replacement unit. So, after only a couple of hours of using the replacement unit, I was back on hold to report another machine error. 12 minutes and I finally get a rep. Apparently, the drum unit (which is less than one month old) is bad. So now I'm waiting for the replacement drum unit. DON'T EVER BUY A BROTHER MACHINE. THEY'RE HORRIBLE MACHINES AND TRYING TO GET THROUGH TO CUSTOMER SERVICE IS VERY, VERY TIME CONSUMING B00000J0D5:wireless_modem_jack:matthew_e._maloof B00000J0D5 RCA RC930 Caller-ID-Compatible Wireless Modem Jack: Electronics electronics 5 of 9 1.0 Wireless modem jack June 30, 2005 Matthew E. Maloof Wow this is a real piece of junk if you have any other wireless devices going on in the home. And who nowadays doesn't? There is so much noise you can't even hear yourself think. Oh well lesson learned. If I could have given this device a zero I would have. B00007KJR6:grainy_quality,_very_slow_drying_time._:m._buckley B00007KJR6 HP Premium Plus Photo Paper, Glossy (Q1978A, 4x6, 60 Sheets): Electronics electronics 3 of 9 2.0 grainy quality, very slow drying time. May 4, 2005 M. Buckley I was terribly disappointed in this product which I bought for use in my Canon Pixma iP6000D printer. The image is grainy and, if you touch the photo within 5 minutes, you will leave marks. I laid anothe picture on top of one done 5 minutes earlier, and they stuck together. I have had very good luck with Canon paper B00006B8IP:smells_terrible!:allen B00006B8IP Fellowes Gel Flex Transparent Mini Wrist Rest (Blue Crystal): Electronics electronics 3 of 5 2.0 Smells Terrible! April 26, 2006 Allen FL USA This would be a GREAT product is the chemical smell was not so bad and last so long. It has a horrible smell that just will not go away. I saw others mention the same issue but thought I would give it a try. It smells. Other than that, the comfort is great. But I gave it 2 weeks to air out and the smell will not go away. I would suggest you don't buy this is you have a sensitive nose. It kinda smells like those squishy foam beds and slippers you see at Brookstone B000BMXJR8:warning!_not_for_ipod_mini!:parker_daniels_"munchiniwa" B000BMXJR8 Griffin Technology 4031-RDGC RoadTrip FM Transmitter & Auto Charger and Cradle for iPod (Charcoal): Electronics electronics 1 of 1 1.0 Warning! NOT for iPod Mini! October 26, 2006 Parker Daniels "Munchiniwa" Orlando Yes, yes, I know. Griffin has iPod Mini compatability all over their RoadTrip web page. But the sad fact is, when you recieve it you will NOT find an adapter for the iPod Mini in the box although there are adapters for other iPods. When you read the instruction book you will find that you must purchase an adapter from Apple Computer to make it work. Calling Apple, I find that they no longer sell the adapter. When I called Griffin I was surprised to find that if you have any other iPod than Mini and the adapter is not in the box, they will send you one. They recommended that I return the RoadTrip, which is what I did. Save yourself the aggrevation -- if you have an iPod Mini stay away from Griffin Technology B00006B9HC:agree...__speed_stinks!:datajockeys_"robert_johnston" B00006B9HC Netgear FVS318NA VPN Firewall Router with 8-Port Switch: Electronics electronics 7 of 10 1.0 Agree... Speed STINKS! April 2, 2006 Datajockeys "Robert Johnston" Hillsboro, OR I had four of theese units in place and they all got replaced by the FVS338. The main reason is the speed. I have a lab and we tested the max Internet throughput of the FVS318's at 1.2Mbps! This is unacceptable. Oh yes, this is with the latest firmware. Several calls to customer service left me infuriated at the lack of comprehension of the problem. I contacted their legal deptartment the same day. Several promises were made on Netgears part wich resulted in them having another level 1 tech call me again to insist I reinstall my OS! I have successfully sued to get my money back. With all of my venting done, I would like to say that I am still a fan of the Prosafe line and will continue to use it. But Netgear be warned, I will be all over you until you get this product line properly supported B00006B9HC:but_the_big_flaw_is_low_throughput:david_jameson B00006B9HC Netgear FVS318NA VPN Firewall Router with 8-Port Switch: Electronics electronics 5 of 6 2.0 But the big flaw is low throughput March 26, 2006 David Jameson Chappaqua, NY, USA Most reviews don't seem to mention a key spec - the throughput of a firewall. I just upgraded my cable connection to the new (up to) 30Mbs plan and bought an FSV318v3 firewall to use with it. Without the firewall in place, I measured about 25Mbs download speed. When I installed the firewall in between the modem and one computer, download speed went down to 6.5Mbs. I also discovered that if the "enable keyword blocking" checkbox is enabled, the throughput went down to 5Mbs, EVEN IF THERE WERE NO KEYWORDS! This firewall is useless if you have a high-speed connection B0000DC3S5:lousy_phone:ladyeve99 B0000DC3S5 Uniden WXI377 900 MHz Water-Resistant Cordless Phone with Caller ID: Electronics electronics 1 of 2 1.0 lousy phone July 10, 2006 ladyeve99 Charles Town, WV United States Surprisingly poor quality for a Uniden phone. Volume is very low -- hard to hear caller. Don't waste your money. B0000DC3S5:such_a_disappointment:julie_"mominaz" B0000DC3S5 Uniden WXI377 900 MHz Water-Resistant Cordless Phone with Caller ID: Electronics electronics 3 of 4 1.0 Such a disappointment October 13, 2005 Julie "MomInAZ" Scottsdale, AZ United States We had such high hopes for this product and sadly had to return it. Only 20 feet away from the base unit, the clarity was very, very poor. We've owned many regular cordless phones of varying quality and price-points, yet the least expensive of these were better than this... they just weren't waterproof. It's a great concept if they could just make them work well. Sure wish we could find a good waterproof phone!! B0006GR8CG:looks_cool_at_first,_but...:j._beck_"br4v3_s1r_r0b1n" B0006GR8CG Griffin iBeam Flashlight and Laser Pointer for iPod: Electronics electronics 5 of 8 2.0 Looks cool at first, but... July 31, 2005 J. Beck "br4v3_s1r_r0b1n" Seattle, WA USA Don't get me wrong, this is a pretty clever gadget. However, it's mising one thing in terms of usability: an on/off switch. This really limits the usability of both, since it's typical to want to turn the flashlight off for a moment, or the laser pointer on for a moment. I can't see me using this laser pointer in a real presentation, since it'd either be on all the time, or I'd be pulling the light in and out all the time (neither of which make me look cool). So if you're going to buy this, keep this limitation in mind B0006GR8CG:close_the_patent_office:r._smith B0006GR8CG Griffin iBeam Flashlight and Laser Pointer for iPod: Electronics electronics 12 of 25 1.0 Close the patent office May 17, 2005 R. Smith Kirkland, WA Finally. Next time I can't find my keys in the dark all I need to do is find this thingie and fumble it into my iPod's holes. What a lifesaver! And in the same box is the laser pointer so I don't have to stop listening to 50cent just because I'm doing some silly corporate presentation! While it is a little tough to dance and fry an airline pilot's eyes at the same time, it is the latest craze so I LOVE THIS PRODUCT! ;-) B00001MXVV:bothersome_@_times.:jose_nunez_"coolman" B00001MXVV Fellowes Easy Glide Wrist Rest and Mouse Pad: Electronics electronics 4 of 4 2.0 Bothersome @ times. July 3, 2001 Jose Nunez "coolman" Naples, FL United States This mousepad may seem as a great product but at times the rest becomes a little bit tiresome, and I think it get's in the way of my hand and the mouse. It did take me a great deal of time to get used to this pad but anyone else who use's it has found it in the way and annoying. I have to agree with this, b/c it truly does get into the way of my hand and its a little bit confusing. Also it is much bigger than most mousepad's it takes up a great deal of space B00061IYJC:less_than_impressed:rc B00061IYJC Philips HN060/37 Noise-Canceling Earbuds: Electronics electronics 2.0 Less than impressed November 15, 2006 rc Fremont, CA The noise canceling is just barely discernible in comparison to when it is turned off and the music quality is not comparable to other earbuds in this price range ($60 list, $35 Amazon). The cloth wrapped cords seem like a nice feature for making them a bit more rugged, but I don't like the way the cords are arranged which create this loop that you put your head into (combined with the stronger cord, better not wear them around machinery since getting them caught will likely result in something a bit more painful than just having the earbuds yanked out of your ears) B00061IYJC:great_technology__terrible_customer_experience:jpc B00061IYJC Philips HN060/37 Noise-Canceling Earbuds: Electronics electronics 2.0 Great Technology Terrible Customer Experience October 28, 2006 JPC Michigan, USA I had the same exact experience with the poor fit of these headphones and the rude customer service. Their 'surround-sound' HE-592 phones don't fit well either. On the phone Philips told me to buy a part at RadioShack to resolve my problem. They couldn't give me an RS part number because "it isn't their product" but they recommend that over selling me or sending me replacement ear pieces. According to them this problem was all my fault, I should have realized it sooner, saved my receipts & packaging an returned them within 30 days. From a technology standpoint the electronics are outstanding for the size and price. I like the performance of the phones on planes, trains, etc. They really work well but I am amazed that Phillips would risk losing customers over pennies worth of silicone. It is a shame Philips can't do better with the customer touchpoints like the ear piece design, their phone support and part replacement policies. Take a look at Shure's products. Shure sells replacement foam and triple flange sleeve ear pieces for their products. If you are in the same boat with me and like these except for the fit I think the triple flange sleeves may work as a replacement for the stock Phillips ear pieces B00061IYJC:noise_canceling_decent;_music_sound_bad:j.j._"4string" B00061IYJC Philips HN060/37 Noise-Canceling Earbuds: Electronics electronics 1 of 1 2.0 Noise Canceling decent; music sound bad September 25, 2006 J.J. "4String" San Francisco, CA United States If you're not that picky about sound quality with music, then these may work for you. I think the frequency response range with these earbuds are pretty minimal. To me, the music is all mids. It's missing significant highs and lows for this price range. I gave these away to a friend who's not that picky at all, but she could tell a difference in sound quality right away. She normally uses the IPod earbuds which are uncomfortable to her. However, the noise canceling out weighs the sound quality so she prefers to use these earbuds over her Ipod buds riding a crowded train or bus. Hopefully I can find something affordable that has good frequency response. Or maybe I need to educate myself. Is it the frequency response, the impedence, or something else that covers the sound spectrum? I'm just looking for a good balance of lows, mids, and highs B00061IYJC:noise-cancelling_newbie...:k._wilcox B00061IYJC Philips HN060/37 Noise-Canceling Earbuds: Electronics electronics 0 of 3 2.0 Noise-cancelling newbie... August 25, 2006 K. Wilcox Los Angeles, CA ...So I was satisfied with the noise-cancelling qualities. The cloth cable is very nice and doesn't tangle as much as the usual plastic ones. I liked not having to spend so much time untangling thes in the morning. The headphones I purchased come with 3 sizes of rubber cap earbud covers and I found only one to be suitable for my ears. Of course, after less than a month one of those earbuds fell off and now I can't use these earphones until I find a replacement somewhere, which is proving to be troublesome. Super. I didn't buy these on clearance at Target so that hurts my pocketbooks and I am very ANNOYED right now. In the meantime, I've returned to some $10 non-earbud headphones and I really miss the noise-cancelling quality of these Philips earbuds. Life sucks and I want to die because now I can hear everything going on around me during the morning commute on public transportation. B000068IH6:poor_image_quality:mac_user B000068IH6 Monster A ITV PB -10 iTV� Link� for 15" and 17" PowerBook� Computer, iPod� Photo and Video iPod with Universal Dock (10 ft.): Electronics electronics 0 of 13 1.0 Poor image quality June 7, 2004 mac user MA, USA I agree with the person who says there are no instructions and poor image quality. I wonder if they gave us a mini jack like games systems use if it would work better on TVs that have the 3 jacks on the front. Games systems get good image quality so why is this so bad... No info on this from Monster. Looks like a very good product but I will return it unfortunately. I did discover though that I can use a stereo jack with R-L on one end and a mini jack on the ibook end to give me audio speakers on any TV or Stereo for my iTunes, and audio for a DVD that I am playing but I don't need to spend this much money to get that. If the image were good I would keep it. I would rather show my slide shows from the computer. The image was very bad.. B00005B60G:looks_good,_but_not_best_performance:inderjeet_singh B00005B60G Polycom Soundpoint Pro SE-225 2-Line Professional Conference Phone with Caller ID: Electronics electronics 1 of 2 2.0 Looks good, but not best performance February 5, 2006 Inderjeet Singh Santa Clara, CA, USA I have had this phone for about three years. I bought it primarily to use it as a good quality speaker-phone (with mute) for long conference calls. It was quite expensive (I paid $200 to get it) but here are what I have found to be its shortcomings: No caller-id display. This just baffles me. I get caller-Id on all other phones in the house except this one. I have tried every possible varient (resetted settings, disconnected other phones, etc.) but nothing works: I always get "NO ID MESSAGE" on the LCD. The second major shortcoming is that called-parties often complain about the feedback on the speakerphone. One way to reduce that is by lowering the volume significantly, but that sort-of defeats the purpose of having a good speakerphone. Another minor shortcoming is that the phone requires to be powered even though it is a corded-phone (hence will not work in case of emergencies). Finally, two connect two lines you have to use an ugly adapter. One good thing about the phone is that it looks quite good, has a professional appearance, and claims to have a duplex-speakerphone. B0009A2L9E:i_can't_hear_you!:texas_traveler_"jeff" B0009A2L9E Samsung DVD-L70 7" Portable DVD Player: Electronics electronics 3 of 3 1.0 I can't hear you! June 27, 2006 Texas Traveler "Jeff" Beaumont, Texas United States Sound output is terrible, you can't hear it in a car or airplane(with high quality, noise cancelling earphones). When I called customer service they told me it was not intended for use in a car or airplane. Picture is very good, but I have heard better sound from much cheaper players. Don't waste your money B000ELDX2W:junk,_junk,_junk!:johns_junk B000ELDX2W DLO 009-9765 HomeDock Deluxe for iPod: Electronics electronics 5 of 6 1.0 JUNK, JUNK, JUNK! July 23, 2006 johns junk Grand Rapids, MI I just purchased yesterday the Home Dock Deluxe for list price at a local retailer. I read all the reviews, (most of them bad but I got it anyway) the menu on TV part being my motivation. And so far, I am not feeling good about buying it... 1. The sound quality is very poor. Almost every song has some distortion and sounds "muffled" along with a good hiss. I thought I was listening to a 70's era cassette it was so bad! I have a high end Sony/Infinity system and the poor sound is very noticeable. In desperation (and checking to make sure my amp was working fine) I plugged in my Apple dock from my 4th Gen Photo 60gb and the standard Apple AV cable. The sound problem disappeared, and was crystal clear. 2. The menus to not work properly. My Nano 5gb seems to work OK, but my 60gb 4th Gen Photo does not. The menus are rather slow, and the artist, or album, or song titles disappear at random. Sometimes you can back up a level on the menu and you will see the data, but mostly it is just blank. The cursor will scroll down as though there is data there, but nothing shows on the screen. You can play the music from the blank screen, but it is pot luck as to what you will play as you cannot see any titles. I like the idea, but VERY, VERY frustrating. 3. There is NO support at all from the DLO website. It just lets me download a PDF of the manual or to buy more accessories. I did not even bother contacting them due to all the problems. I am not impressed. 4. There also all the other problems listed elsewhere, too light and build quality poor, annoying power LED on front, no artwork on TV menu etc... 5. So basically, it is WAY too expensive. Not worth it. Not even worth 10% of the price charged. I should have listened to all the comments above, and not believed some of the "official" reviews on the web. So it is back in the box and ready for a trip back to the store. I guess my lesson is that I should trust the reviews B00006B8IO:great_form_but_does_not_work_with_my_optical_mouse:kenneth_b._emmerling_"oceanguy2821" B00006B8IO Fellowes 91141 Gel Crystal Mousepad/Wrist Rest (Blue): Electronics electronics 1.0 Great form but does not work with my optical mouse August 12, 2006 Kenneth B. Emmerling "oceanguy2821" Baltimore, MD United States The mouse pad is a great idea with superb support for the wrist. Unlike some customers, I did not detect any odors or problems with the materials use in the gel pad. However, the mouse pad did not work with my Logitech optical mouse. Great idea but poorly implemented. B00024ENHK:the_strap_sucks,_and_the_bag_is_really_heavy:michael_a._behr_"mabehr" B00024ENHK Targus TCG200 17 CityGear Miami Messenger Notebook Case: Electronics electronics 1 of 4 1.0 The strap sucks, and the bag is really heavy September 28, 2006 Michael A. Behr "mabehr" New York, NY United States Wow, I can't believe how much I hate this bag. And it was expensive, compared to some of the stuff I passed up. I thought I couldn't go wrong with Targus...but I could and I did. First, the strap is horrible. It keeps getting twisted and I have marks on my shoulder from where it cuts in to it. 2nd, it's REALLY heavy. Lastly, there's all these compartments that don't do anything and mostly get in the way. Like the phone add-on. My phone doesn't fit in there, and even if it did, would I carry my phone on my bag? B000E5FOYS:kingston_2_gb_sd_memory_card:bernard_kliks_"printmaker" B000E5FOYS Kingston 2 GB Elite Pro Secure Digital Memory Card ( SD/2GB-S ): Electronics electronics 0 of 1 1.0 Kingston 2 GB SD Memory Card November 9, 2006 Bernard Kliks "printmaker" Portland, OR USA This SD would not work in my Nikon Coolpix S6 camera (but the Fuji and Sandisk product did B000ANLCZO:beware!:brent_a._bowgren_"favrefan" B000ANLCZO TRENDnet 108Mbps 802.11G Wireless PCI Adapter: Electronics electronics 1.0 Beware! November 9, 2006 Brent A. Bowgren "FavreFan" Wisconsin This card crashed my system with the blue screen of death after installation. Please be really careful with this one B000BJBCFW:laptop_must_draw_current_before_other_device_charges:buyerlsd_"buyerlsd" B000BJBCFW Kensington Dual Charging Cable for Kensington Power Adapters 38013: Electronics electronics 0 of 1 2.0 laptop must draw current before other device charges November 9, 2006 BuyerLSD "buyerlsd" edinburgh Not so happy. Ordered one of these and plugged by PDA which did not charge. Turns out that it only charges when the larger item is drawing current. So it will only charge the phone/pda etc IF the laptop is drawing current. This is very annoying when the laptop is shut down with a full battery since it draws no current, thus the phone/pda do not charge B00008V6TI:i_hate_it:marilyn_fedel-harley_"some-thing" B00008V6TI Grundig Eton Ego 4000 Plus Portable CD / MP3 Player with Built-In Removable Speakers: Electronics electronics 8 of 8 1.0 I HATE IT March 11, 2005 Marilyn Fedel-Harley "Some-thing" Cleveland I hate this contraption and I stupidly let 30 days pass before I realized how much I hate it. Now I start every morning with a "boy I hate this thing." Why? well here are few reasons why: You cannot read the numbers unless you are within 18" and to get a backlight you must depress "any button"---not a bad idea but horribly executed. The backlight lasts four seconds--way too fast in the night and "any button" is a lie because you can't press "stop" nor the "on" for radio or cd without starting a whole other process which you then, in the dark, have to figure out how to terminate. The cd player spends more time "reading" your cd than it does playing it. The "tuner/band" button is very sensitive and lord knows what you will wake up to, the screech of a not tuned in AM station happens way too often. The worst of it all was I called Eton to tell them how much I hated it, just thought they might want to know. I had a friendly conversation with a very nice receptionist who assured me they wanted me to be happy and would do something, but first she wanted me to talk to the engineer/designer. So I waited a week for him to return my call and he was quite rude saying if there is nothing wrong with it (everything is wrong, but they don't count that) there is nothing they can do. He offered to trade mine for a different one just the same and I said "why bother." It was a classic story of "I made it so it is by definition without errors--now leave me alone,just buy it and be thrilled with my brilliant design B0006ZO2CG:worked_great_for_a_while:cheryl_from_boston B0006ZO2CG Altec Lansing inMotion iMmini Portable Audio System for iPod Mini: Electronics electronics 10 of 14 2.0 Worked great for a while November 16, 2005 Cheryl from Boston I loved this speaker system when I got it last year. But in the last few months it developed a loud humming noise that makes it so you can not hear your music. Very disapointed B0007Y79B2:waste_of_money:p._guidry B0007Y79B2 Apple 4 GB iPod Nano Black: Electronics electronics 7 of 15 2.0 Waste of money November 18, 2006 P. Guidry 1st the ipod is expensive. It should at least come with a protective cover. 2nd i rarely used it and only when im in the gym. Quite to often when i go to turn the ipod on it goes into something called "disk mode" which freezes the unit up and cant be played. Theres not hard reset button so i have to go without listening to music for the hour or so im in the gym then take it home plug it in the cpu to get it to unfreeze. Im so pissed at this thing because im all exicted to finnaly listen to some music and get amped in the gym and the dang thing freezes. For the money i spent on this thing it shouldnt happe B000F36ERA:can't_find_the_timer_for_the_radio:earthling B000F36ERA GPX CRCD-2806 Clock Radio and CD Player with AM/FM Radio and Alarm: Electronics electronics 2 of 2 2.0 Can't find the timer for the radio October 26, 2006 Earthling Planet Earth I'd really like to know how I listen to the radio at night and have it shut off in an hour and then have the alarm go off when I need it. I thought that's what a radio was supposed to do B0006BKG98:do_not_buy!!!:james_"james" B0006BKG98 Contour Design iSee 20 Case for iPod: Electronics electronics 2 of 5 1.0 DO NOT BUY!!! November 1, 2005 JAMES "JAMES" BREWER, ME DO NOT BELIEVE THE POSITIVE REVIEWS!!!!!!!Like most of the other reviews- THIS CASE SCRATCHED MY IPOD---BAD!!! Too bad I didn't read all of these reviews before I purchased the case. I wonder if Contour Designs is going to blow me off when I contact them TODAY(11-1-05)......... B000167V46:does_not_work_with_my_creative_zen:jrb B000167V46 Zip-Linq AC Wall Plug to 5V USB Adapter: Electronics electronics 1 of 1 1.0 Does NOT work with my Creative ZEN November 2, 2006 JRB San Francisco, CA Does NOT work with my Creative ZEN. Can leave plugged in overnight and it does NOT charge at all B000167V46:does_not_work_with_creative_labs_zen_micro_photo:c._grindland B000167V46 Zip-Linq AC Wall Plug to 5V USB Adapter: Electronics electronics 2 of 2 1.0 Does not work with Creative Labs Zen Micro Photo July 26, 2006 C. Grindland NW Florida Do not waste your money, this was under recommendations, but I would NOT recommend this with your Creative Zen. My daughter purchased this after saving up for an MP3 player, this just does not seem to give enough power, we plug it in and 12 hours later it is still charging. Plug the MP3 into the computer USB and it is done in less than 2 hours. It may work fine for some other things but not the Creative Zen. It would cost more to return and they will only exchange it, so guess we are just eating the cost and S & H. I should have read the reviews before; would have seen that you get what you pay for, don't waste your money B000167V46:confirmation_-_it_does_not_charge_an_ipod_shuffle:don_"don" B000167V46 Zip-Linq AC Wall Plug to 5V USB Adapter: Electronics electronics 2 of 6 1.0 Confirmation - it does not charge an iPod shuffle December 26, 2005 Don "Don" Glendale, AZ United States What a waste of money. I wish someone had posted before the Dec. 22 posting (which was excellent) pointing out that this device doesn't work on an iPod "shuffle". I spent more to ship this item than I did for the item itself, so I am also stuck with one. Rats!! B00004Y2Z1:buy_the_cheap_ones!:xsiman B00004Y2Z1 Monster Cable MV2CV-6M Monster Video 2 Component Video Cable 6 meter: Electronics electronics 20 of 24 2.0 Buy the Cheap ones! January 26, 2004 XSIman Laguna Hills, Ca United States Using the component input on your TV can make a huge difference in picture quality, but the differentce between the lower priced monster cables and the most expensive monster cables in not noticeable. Save yourself $50 and buy the cheap ones B000AY8DEQ:do_your_research:t._helems B000AY8DEQ LaCie 300GB d2 External Hard Drive With Triple Interface (300791U): Electronics electronics 4 of 10 1.0 Do Your Research May 3, 2006 T. Helems Tulsa, OK I bought this drive with the advice from my father who has bought several LaCie's for his company. He's always had good luck with them. The first thing that I noticed when I opened the box was that there was a gap between the case and the faceplate. I called LaCie customer service and they sent me instructions on how to open the case and also noted my serial number so that I wouldn't void my warranty. The problem was that there were 2 screws that hold the faceplate onto the internal chassis who were not even tighted (as if they started the screws and didn't tighten them). By the way... the actual HD inside the case is a Maxtor. If I had know that prior to purchase, I would not have bought the LaCie. I fixed the problem with the case and turned it on.. only to be hit with a high pitched winning sound coming from the HD. This noise will drive me crazy and is not "Ultra Quiet" as noted in the description. I'm sending it back to Amazon for a refund B000AY8DEQ:lacie_drive_quit_working_:amy_h._sparks B000AY8DEQ LaCie 300GB d2 External Hard Drive With Triple Interface (300791U): Electronics electronics 4 of 4 1.0 LaCie drive quit working April 3, 2006 Amy H. Sparks Minneapolis, MN What a disappointment that what I thought was a reputable company makes such an unreliable product. After about a years time, my LaCie drive started clicking. And then, no data. It completely failed. I too made the mistake of trusting this drive and didn't back it up. I am sick about what I've lost. I've emailed LaCie about the failure and have not received a reply. Beware of LaCie external drives B0000ALFCI:poor,_poor,_poor:j._san B0000ALFCI Logitech Dual Action Game Pad USB: Electronics electronics 2.0 Poor, poor, poor November 6, 2006 J. San Rochester, MN I had one of these a couple years ago. It worked very well for a few months. Then, all of a sudden, the left analog stick became non-responsive. It wouldn't work on any game I tried. After reading other reviews on the gamepad, I figured I just got one that was poorly made and that the analog stick problem I had was just one of those several ones that was bad. Since it was only $20, I just left it alone. Well...after going months without a gamepad, I decided to get another Logitech gamepad, the same one I had, and guess what. After literally ONE DAY, the right analog stick stuck and is completely unresponsive. So, as far as I'm concerned...they're all terrible controllers. PERIOD B0001F1XNC:file_error:d._petitto B0001F1XNC SanDisk SDMSV-1024-A10 1.0 GB Memory Stick Pro (Retail Package): Electronics electronics 3 of 3 1.0 File Error August 3, 2006 D. Petitto Peabody, Ma United States I own a Sony DSC-S40. I had lost my Sony Memory Stick so I thought I'd try this one. I purchased it the end of June and almost every time I take a video and try to veiw it, it will play and at any point durring a video it will stop and say file error. This also causes a problem while I download them onto my pc. Only once had it done this on a picture and I ended up having to delete the picture because it wouldn't download. Sometimes it just don't pay to save money. I will never purchase this kind of Memory Stick again. B00005QSRF:screwed_by_antonline:neil_w._kienzle B00005QSRF Magellan Meridian External Power Cable with Cigarette Lighter Adapter: Electronics electronics 1.0 Screwed by ANTonline November 9, 2006 Neil W. Kienzle ANTonline sent me the wrong item and then wanted nothing to do with me when I went to exchange it. They have no phone number, so they email everything. It takes them a day to get back to you and they always have an air about them as if you are bothering them for thier mistake. After days of persistance and me being as rude to them as they were to me, they agreed to take the product back, but I had to eat the first shipping charge, pay to ship it back to them and pay a 20% restocking fee (for thier error!!) The item was only like $10, so by the time I would have paid the shipping and restock fees, I would be in the whole, so I decided to just tell them to go F@#K themselves. I feel better now. B00007KDVI:not_worth_the_hassle.:brian B00007KDVI Linksys WRT54G Wireless-G Router: Electronics electronics 1.0 Not worth the hassle. November 17, 2006 Brian Bloomington, IN USA From day one, back in late August 2006, I've had problems with this router--which I bought only because my ISP wouldn't install an extra cable outlet in my apartment without written permission from my new landlord. Since I work from home, this wasn't an option at the time. I'm not a tech guy, I don't care much for gadgets, but I'm not stupid either, and I couldn't even get this thing set up without calling support due to lack of documentation and the assumption that everyone buying this router uses some version of Windows--I don't, I have an iMac. Once set up, the router worked fine for about a month, and then I started experiencing connectivity issues. I called support again and they figured out some issue with 'mac cloning' or some such, reset my static IP, and all was well for another week, when the same issue--losing connection with the router after 10-20 minutes online--arose again. So I called support AGAIN, got a guy after 7 minutes, but he directed me to their website to download a firmware update, and then basically hung up on me. Unacceptable. So I called back, sat on hold for 40+ minutes before being disconnected without ever speaking to anyone. Finally, after a third try, I got someone on the line and he got me to the firmware and helped me install it via their web interface, only for me to experience the same connectivity problem the very next day. My ISP is coming Tuesday to install another outlet. No documentation. The install CD is configured for Windows and wouldn't work in Mac OS X. Online help sucks. The 800 support line sucks. This product sucks. Do not buy it B00007KDVI:waste_of_money:a._buttolph B00007KDVI Linksys WRT54G Wireless-G Router: Electronics electronics 1.0 Waste of Money November 16, 2006 A. Buttolph I purchased this router (not from Amazon) about 6 months ago when my 5-year-old, very reliable, router died. I purchased it locally and someone came out and installed it. I have had numerous problems with this router since then. It does not stay connected and there is actually no option for "always on." After having some other problems, I took it back and the vendor upgraded the firmware. After that, it lost the setup information twice and the info had to be re-entered. Then today, after being instructed to reset the router, it got stuck in a mode where it only wanted a firmware upgrade (there was no apparent way out of this). So, I obtained the upgrade and according to the router message, it was updated successfully. After that, I could not get the router to work at all. I gave up and ordered an entirely different router (the same brand that I has used before with tremendous success). My summary - save yourself time and aggravation and don't buy the Linksys WRT54G B0000CDEZB:not_as_represented:l_brown B0000CDEZB HP FA118A#ABA iPAQ Foldable Keyboard for H2200, H3800, H3900, H4100, H5000, H6300, RX3000, and HX4700 Series: Electronics electronics 7 of 14 1.0 Not as represented October 27, 2004 L Brown Chardon, OH United States Ordered for my HP4705. This is not a bluetooth keyboard. they sent two of them both the same non-bluetooth item. Now I have to send back and hope I get credit B0000C9ZJY:hp5510_scan_button:whitetail B0000C9ZJY HP OfficeJet 5510 All-in-One Printer, Fax, Scanner, Copier: Electronics electronics 16 of 20 2.0 HP5510 Scan button December 11, 2005 Whitetail I've had my HP5510 for 4 weeks. So far everything works to my expectations except--when I press the scan button an error comes up on the LED: Unable to scan documents from Printer to PC. No Scan Options. You need to install or run HP software for feature. Press OK to continue." My system is 4 weeks old. I had a local reputable company put my system together. We uninstalled and installed HP software several times. Went to HP website-could not find a patch. Couldn't repair error. My last resort is to call HP which I haven't yet. B0000C9ZJY:was_ok_for_6_months:kristi_g.,_mom_of_sage B0000C9ZJY HP OfficeJet 5510 All-in-One Printer, Fax, Scanner, Copier: Electronics electronics 28 of 30 2.0 Was ok for 6 months November 26, 2005 Kristi G., mom of Sage Rome, GA This printer was fine until I changed cartridges and a contact was dirty. Now it won't quit printing alignment pages all the time. I have about a million now, and its cost me a fortune in ink. Every 3 or 4 print jobs and I get another one. I've spent hours with technical support, who keep leading me through the same old song and dance, disconnect the usb cable, hit some buttons, print another page I don't need, and scan. Voila it works! Case finished. NO IT IS NOT. The tech support people don't speak English and it shows in their grammar and inability to understand that my problem seems to be a variant on what they have in their knowlege base. HP would do better to hire native English speakers. I'll never buy another HP printer. Oh, they print fine, that is, if you want a million alignment pages B0002F4EO6:just_stops_working!:donna_m._shepherd B0002F4EO6 Griffin iTrip Mini FM Transmitter for iPod Mini: Electronics electronics 1 of 2 1.0 Just stops working! April 16, 2006 Donna M. Shepherd Carlsbad, CA United States Ok. This is the 2nd ipod mini transmitter I have purchased that has broken within a month. All of a sudden it just stops working, for no apparent reason. Don't waste your money. It's a piece of junk B0002F4EO6:disappointing.:caitfish B0002F4EO6 Griffin iTrip Mini FM Transmitter for iPod Mini: Electronics electronics 1 of 1 2.0 Disappointing. April 15, 2006 caitfish I bought this so I could listen to my iPod in my car in the city. The first couple of times, it worked great, but after that, something happened. It just wouldn't work. All I heard was static, no matter what frequency I tried this on. I have yet to take a road trip with it, so maybe that will work better, but right now, I am not happy with the product. Maybe the fact that I live in a city with radio stations on virtually every frequency has something to do with it, but it used to work on some frequencies, and now it just doesn't anymore. I am very disappointed B0001MR13G:has_it's_problems:s._howard B0001MR13G AT&T E5965C 5.8 GHz DSS Expandable Cordless Phone with Answering System: Electronics electronics 2 of 2 1.0 Has it's problems September 12, 2006 S. Howard Grand Terrace, CA United States This would be a great phone if it worked all the time. I had to return the phone within 1 day because the handset was defective. Amazon was very helpful and prompt with a response. However the handset would periodically quit working and required that the batteries be removed and reinserted to make it operational. After 2 months the handset died completely. AT&T will replace the handset under warranty, but it could take up to 3 weeks to get the replacement B000A1AQOO:what_a_pain_in_the_butt:gene_bopp B000A1AQOO Linksys WTR54GS Wireless G Travel Router with Speedbooster: Electronics electronics 0 of 3 1.0 what a pain in the butt October 23, 2006 Gene Bopp I bought this to use in hotels. This thing sucks. I barely got it to work in my house. Too slow to set up. Based on the size of this thing, just bring a longer eithernet cord. I am really disapointed. B000EEZ2R8:not_compatible_with_2nd_generation_nano's:ehnj B000EEZ2R8 Belkin F8Z063-BLK TuneBase FM for iPod Nano (Black): Electronics electronics 4 of 4 1.0 Not compatible with 2nd generation Nano's October 17, 2006 ehnj Be aware, the Belkin F8Z063-BLK TuneBase FM for iPod Nano is not compatible with the 2nd generation Nano. I am returning mine to Amazon, and buy a compatible one from the Apple store B000EEZ2R8:non_compatable_:connor_r._fulkerson B000EEZ2R8 Belkin F8Z063-BLK TuneBase FM for iPod Nano (Black): Electronics electronics 5 of 5 1.0 Non Compatable October 16, 2006 Connor R. Fulkerson I have several friends that have had similar items in the last few years that have worked nicely. I'm sure this is a great product. Having said that... this product is NOT and I repeat IS NOT compatable with the new ipod nanos. The new Ipod Nanos are slightly wider than the original and will not connect to this product. I really hope amazon puts up a warning soon and I will do my best to try to get that done. Again this does not work with the 4GB and I assume the 8GB nano as well so do not buy it unless you have the older model Nano. B000EEZ2R8:not_a_good_transmitter_for_big_city:k._moon B000EEZ2R8 Belkin F8Z063-BLK TuneBase FM for iPod Nano (Black): Electronics electronics 1 of 1 2.0 Not a good transmitter for big city August 21, 2006 K. Moon Atlanta, Georgia USA I live in the Atlanta area and was never able to get a good sound quality coming from the Belkin FM transmitter. It seemed like I was listening to a FM station that was not coming in good B0002ZH6XW:inferior_quality_product:matthew_p._cashdollar_"r00tbeer" B0002ZH6XW CreativeLabs SB LIVE 24BIT PCI SC ( 70SB041000000 ): Electronics electronics 1 of 5 1.0 inferior quality product January 27, 2006 Matthew P. Cashdollar "r00tbeer" USA I had this in my computer for a month, with a satellite radio on the audio-in and speakers on the line out. It started crackling and the audio was distorted after a few weeks. I took the SB out and went back to the motherboard onboard audio and it worked fine. Conclusion = Sound Blaster suck B0009RTGFY:sent_back_-_do_not_purchase_in_denver_area:randy_stanton_"randy_stanton" B0009RTGFY Coby CA-739 Wireless FM Transmitter: Electronics electronics 2 of 2 1.0 Sent Back - Do not purchase in Denver Area November 9, 2006 Randy Stanton "Randy Stanton" Denver Colorado I purchased the Coby CA-739 Wireless FM Transmitter and was horrified by how each of its pre-programmed frequencies were major Denver Area Radio Stations or had high amounts of static. The transmitter was noisy and weak. I sent it back and took a restocking fee hit plus I had to pay for the return postage. I purchased the I-River which allows you to program your own frequencies. Low noise. High quality. Much better.... B0002INUIY:need_a_bit_more_longevity:kevin_d._krotzer_"krotzerk" B0002INUIY Delphi SA10085 Roady2 XM Satellite Radio Receiver with Built-in Wireless FM Modulator: Electronics electronics 1 of 1 2.0 Need a bit more longevity September 14, 2006 Kevin D. Krotzer "krotzerk" Sarajevo I originally purchased the unit during the winter because of a sale, but I didn't install it until the beginning of July for our cross country trip from Oregon to Wash. DC. During the trip, there was quite a bit of interuption from hillsides and tall trees in the Pacific Northwest. I kind of wondered how well the reception would work in the city. Once I got out of the NW, I had no problems picking up a signal unless I was in a long tunnel or deep valley. I did notice the unit did get hot during the trip and I think that is why it is acting the way it is now (two months later). It works fine when first turned on, but after 15 minutes, the signal flutuates and at times, no signal is received. The tech support said that I needed to check the wires, but since it is 'recently' installed and it doesn't happen when first turned on, I'm ruling it a receiver problem. The unit is placed just below the radio head and has been exposed to direct sunlight when parked. I'm sure it didn't help. I'm currently looking for a better unit and XM said they would transfer the remainder of the account to the new radio without inducing an activation charge. B000095SLZ:limited_reliability,_not_so_much_fun:inna B000095SLZ PalmOne P10914U Games Essentials Card: Electronics electronics 6 of 7 2.0 limited reliability, not so much fun November 22, 2005 Inna Indiana I bought this card more then a year ago. Overall I'm not impressed, and wouldn't buy it again. First of all, in ~30% of cases it crashes my Tungsten E. Secondly, the games are not that much fun. SimCity is EXTREMELY limited and not enjoyable to play at all. Honestly, I have more fun playing games I've downloaded for free. Final annoyance - the card is slimmer then a regular SD so it slides off easily from the slots of the hardcase making it easy to lose B0000AQPTR:the_little_vacuum_that_can't:tongue_tied B0000AQPTR Metropolitan Vacuum(R) DataVac(R) 3-In-1 Cordless Computer Vacuum: Electronics electronics 1 of 1 1.0 The little vacuum that can't August 6, 2006 Tongue Tied New York, NY USA I was hoping to buy a small handheld vacuum for my office and computer hardware (keyboads, air inlets, and what have you). However, the DataVac has so little power, even after a full charge, that it's next to useless. I can't recommend it. B0000AQPTR:metropolitan_vacuum(r)_datavac(r)_3-in-1_cordless_computer_vacuum:my_phuong_t._nguyen_"dr._duong_t._nguyen" B0000AQPTR Metropolitan Vacuum(R) DataVac(R) 3-In-1 Cordless Computer Vacuum: Electronics electronics 6 of 6 1.0 Metropolitan Vacuum(R) DataVac(R) 3-In-1 Cordless Computer Vacuum February 25, 2006 My Phuong T. Nguyen "Dr. Duong T. Nguyen" Jonesboro, GA The charger is very convenient. Power related to AD/DC is extremely useful. High-tech design and features. Sucking and blowing power does not measure up to the price. It has an extremely disappointing performance. It feels like a child toy rather than a useful tool for a personal computer or laptop. Will not recommend anyone to purchase this item due to the lack of performance B000089GN2:bad_headphones:james_gordon_"nascar_guy" B000089GN2 Sennheiser PXC 250 Noise Canceling Headphones (Silver): Electronics electronics 0 of 5 1.0 Bad Headphones November 9, 2006 James Gordon "nascar guy" Pennsauken,NJ These headphones are terrible, the sound is not good,and they hiss. Not worth the money. I have real cheap ones that sound alot better B000A2BLEC:beware...things_are_usually_cheap_for_a_reason...:cassiopea B000A2BLEC iPod USB Travel Power Charger Adapter for Nano, Shuffle, 4G, Mini, Photo and U2- HHI Brand: Electronics electronics 7 of 7 1.0 Beware...things are usually cheap for a reason... August 18, 2006 Cassiopea San Diego Broken after 3 uses. Extremely flimsy. Spend a few more buck and buy something more substantial. B000815CF4:cord_is_so_short,_uncomfotable_to_try_and_use.:james_d._mccormack B000815CF4 Microphone, ME-15: Electronics electronics 0 of 2 1.0 cord is so short, uncomfotable to try and use. November 2, 2006 James D. Mccormack I am not using this Microphone, the cord from the back of my computer barely reaches. Uncomfortable to lean so far forward B0000721Z3:poor_quality:ann_e._peterson_"ocean_floor" B0000721Z3 Canon Matte Photo Paper (8.5x11, 50 Sheets): Electronics electronics 1 of 8 1.0 Poor Quality October 1, 2005 Ann E. Peterson "ocean floor" The matte photo paper that I received was really poor quality. No matter what setting my printer was set to, the ink ran together and created a really low quality photo. I do not recomend this item. B0009K9FZW:broke_in_less_than_30_days!:jack_norton_"tennis_memiac" B0009K9FZW SB5120 Surfboard Cable Modem Docsis 1.1 and 2.0 Certified USB: Electronics electronics 0 of 1 1.0 Broke in less than 30 days! November 10, 2006 Jack Norton "Tennis memiac" Arlington, VA USA When it works, it works very well. But one day it suddenly died on me. I had a Comcast technician come and test my modem and after using some complicated equipments to test it, he concluded that the modem is dead. After he gave me another modem, my network is up again. Very bad reliability. MOTOROLA SHOULD BE MORE RESPONSIBLE FOR THEIR QUALITY CONTROL! B000084FD5:insufficient_sensitivity:david_h._stokes B000084FD5 Coby CX-9 Mini Digital AM/FM Stereo Pocket Radio: Electronics electronics 3 of 3 1.0 insufficient sensitivity August 8, 2006 David H. Stokes Grass Valley, CA United States This receiver doesn't work in rural areas. It doesn't work as well as a cheap battery powered fm radio B0001IXUDA:dont_waste_your_money:splitfish_"splitfish" B0001IXUDA Monster Cable HDMI 400 High Resolution A/V Cable - 1 Meter: Electronics electronics 42 of 44 1.0 Dont waste your money July 26, 2006 Splitfish "Splitfish" Charlotte, NC United States A $10 cable does the same thing. Do not believe the hype. Monster is overpriced and people are starting to realize it. Its digital, 1s and 0s. Either it reads it or it doesnt. B0001IXUDA:great_product,_terrible_cost.:g._harper_"why_does_this_site_do_this?" B0001IXUDA Monster Cable HDMI 400 High Resolution A/V Cable - 1 Meter: Electronics electronics 56 of 57 2.0 Great product, terrible cost. July 5, 2006 G. Harper "why does this site do this?" College in KY, USA Have you ever heard the saying that something would cost you "an arm and a leg"? These cables cost that, your first son, and bidding rights to your estate. Don't get me wrong- Monster makes great cables. Let there be no confusion on this point. But they're just incredibly expensive, and this is made much worse with these cables. Several people have pointed out that the digital signal on HDMI cables must adhere to error-correction and certain standards (even a $10 cable cable must meet some specifications to even reach production)- and this is largely true. Unless BluRay implements new features that require new cables at some point in the future, there's really very little difference between HDMI cables. Yes, the gold-plated pins and other features will improve your connection a bit, but the improvement will be far less than you'd see between any other "cheap" versus "designer" cables on the market. But Monster cables really are made to a standard that makes some difference, and that's worth mentioning. This cable is built sturdy, so that none but the most harsh of treatment could ever damage it. And the shielding isn't just the usual electrical shielding- Monster cables are toughened to the point that I wouldn't doubt if they're certified against nuclear fallout. If you have the money to blow and you want the confidence of knowing that your entertainment center could fare well in an EMP strike, you're looking at the right cables. But for nearly all consumers, these cables cost 4x as much as alternatives, with no real plusses. At the very least, you can pick up a mid-grade cable (Sony, etc) at a mid-grade price ($40) to get the increased sturdiness and the gold-plated connections. And over these products, the Monster cables basically have nothing at all except their branding. Please do look up a cheaper alternative this time, and spend some of the extra money on an extra set of whatever tools you use to keep your screen clean. You'll get much better results with these tools than you will worrying about $100 HDMI cables B000C7DQ66:unimpressed:scott_vaughn B000C7DQ66 iHome iH5 Clock Radio for iPod Black: Electronics electronics 2.0 unimpressed November 4, 2006 Scott Vaughn Tennessee Ok...it functions well as a clock radio. Just fine. Reliable. But that's not too much to expect. Yes, it will charge your iPod and it does have the nifty function of an alarm that gradually (though not gradual enough) gets louder. The adaptor for my Nano fit fine; and I didn't find the clock too bright (it has 3 settings). But the sound is really terrible. It sounds like its coming from a transistor radio. As well, it advertises that you will be able to go to sleep and wake up with your iPod. But as we know, you don't need a clock radio to do that--your iPod will do that on its own if you set it. I took this back after 5 days and hooked up some cheap computer speakers with a volume control. They really sound better--I swear. B00006JHV4:can't_figure_out_how_it_will_hold_the_ipaq.:rahul_agarwal_"turbunator" B00006JHV4 HP/Compaq CQP111 HP Leather Folio Case for the iPAQ Pocket PC - Black/Brown (Leather): Electronics electronics 3 of 3 1.0 can't figure out how it will hold the ipaq. January 14, 2006 Rahul Agarwal "turbunator" tampa, fl, USA may be i got a defective one. there is nothing inside to hold the ipaq. its just a 3 fold cover. IPAQ comes with a much better case when you buy it new B0002ZAILY:horrible_software!:ivan_ivanov B0002ZAILY Apple 512 MB iPod Shuffle: Electronics electronics 1 of 2 1.0 HORRIBLE SOFTWARE! October 29, 2006 Ivan Ivanov CA USA I had several problems with the iPod, mostly because of its horrible software iTunes. It messed up the firmware on the device several times, it would complain constantly that it is not up to date and then try to update it which resuted in several crashes. The most horrible thing however was that it would mess up your MP3 music collection in a way that can never be undone. I had orgaized my collection in the file system nicely by genre, author, album etc, and this thing messed up everything. I have another mp3 player - iRiver - which I reccommend as a lot better than the iPod anyway - and I wanted to be able to copy things on it from my library. Now i am not able to and have to go back and re-organize the mess manually!. I do not recommend the iPod and I do not recommend using their software either. B0009NZ6M0:a_disappointment:j._liu B0009NZ6M0 Verbatim DVD+R 4.7GB LightScribe 30pk Spindle: Electronics electronics 1 of 1 2.0 A disappointment June 30, 2006 J. Liu CA I just purchased the HP DVD740e from costco, and burned the CDR disc came with drive. The lightscribe worked really well, it was the first experience, so I came here for reviews on DVDR, I was told that the Verbatim is of top quality and the lightscribe picture is even better than the HP's, so I purchased the Verbatim 30pk, received today. I was so excited, that I immediately burn two discs with the best setting, but both come out fuzzy and presented the "out of focus" dull feel, look terrible with no detail compared to the HP bonus disc. Is this a joke? This is my first Amazon review, can't help to vent my disappointment. Thanks for the super fast shipping anyway. B0001R041M:poor_performance,_no_warranty:m._ford_"topmug" B0001R041M LaCie 1 TB Bigger Disk Triple Interface FireWire and USB 2.0 Hard Drive (300875): Electronics electronics 3 of 3 1.0 Poor performance, no warranty December 9, 2005 M. Ford "topmug" Camarillo, CA United States I have purchased 10 of these drives, all at once. What a mistake. They are very flakey and will 'disappear' while copying data to them by usb. You have to turn the drive off and back on for windows to find it again. I do not have this problem with any other usb drive only Lacie drives. You cannot use one as a backup for this very reason, copying large amounts of data will fail and you have to start over or copy in chunks. One drive failed after 8 months, only at the 10 month mark did I realize it was still under warranty. It had a 1 year warranty so 2 months left, I contacted lacie and after asking for a copy of the original invoice which clearly listed the purchase date they began ignoring my email and would not honor their warranty, no RMA after requesting one 5 times, no more email responses since they could not come up with a reason to refuse service. Do not buy one of these, there are many drives with longer warranties that are more reliable from better companies. B0001R041M:undependable,_noisy_drive,_poor_support:o_man B0001R041M LaCie 1 TB Bigger Disk Triple Interface FireWire and USB 2.0 Hard Drive (300875): Electronics electronics 4 of 4 1.0 Undependable, noisy drive, poor support August 31, 2005 O_man This drive suffers from repeated Delayed Write File errors. Ultimately it means you WILL lose all the data on it. It is extremely noisy to the point of damaging your hearing. Lacie support is poor. AVOID B0001R041M:stay_away:ali_hasan_"filmmaker_-_teacher_-_political_commentator/writer" B0001R041M LaCie 1 TB Bigger Disk Triple Interface FireWire and USB 2.0 Hard Drive (300875): Electronics electronics 15 of 16 1.0 Stay Away July 28, 2005 Ali Hasan "Filmmaker - Teacher - Political Commentator/Writer" Surf City, California & Eagle, Colorado As of right now, I am an Apple Student Developer Most of my work comes from Filmmaking, as I'm an Independent Filmmaker, and all of my post production work relies heavily upon my Apple G5 Tower, as well as a TON of external harddrive storage While some of my LaCie HD's have worked great, many of them have simply failed me here are the pro's - 1. great interface - both FireWire 400 and 800, and they are easy to daisychain 2. they are fast - 7200 RPM, and usually, if the drive is good, the performance will show CONS - 1. very weak body ---- forget if you drop this thing even one inch - it'll be dead 2. very tough to hookup to other drives -- when I say this, I mean it is impossible to stack this drive, or try and put it in a space where it'll stay put THE BIGGEST PROBLEM --- I don't know what accounts for this - whether its the bridge or the drive itself - but LaCie's drives fail way too much I've probably purchased around 14 LaCie drives in the past 4 years, for varioius film projects and associate ones ----- of the 14, I have had 5 completely fail on me This is simply unacceptable for any drive company when you consider it all, companies like MAXTOR offer drives with the same interface, same speeds, but at a lower price with that said, take a look at MAXTOR, whose drives are housed in a very indestructive body (...) On a sidenote, LaCie has honored the warranties on their drives, and when they're open, their customer service is very helpful --- but I've lost too much data, at this point, to recommend the B000062XQE:i_hate_it: B000062XQE Jabra EarPhone Hands-Free Headset with EarGels: Electronics electronics 2 of 3 1.0 I hate it July 9, 2004 I had a previous good experience with a Jabra headset. This one was recommended for my Panasonic cordless phone by Jabra. However, the sound quality is terrible. It lacks any kind of high frequency response, and so sounds very boomy and full of bass, making it almost impossible to use. It also needs a foam cover, since any kind of slight wind movement makes it extremely noisy. I contacted Jabra about this product, but received no response. Maybe it would work better with a different phone, but definitely NOT with my Panasonic B00019OWU4:dies_after_a_year:s._ruhl B00019OWU4 LaCie 250 GB USB 2.0 External Hard Drive ( 300728U ): Electronics electronics 4 of 5 1.0 Dies after a year October 6, 2006 S. Ruhl Bainbridge Island, WA I was using it as a backup device and it failed after about 12 months. So I am ripping it apart and putting in a new UltraATA disk in. Just hope the box is not frying the disk. I noticed in another review they had a Western Digital. I had a Segate Baracuda 7200.8. Doubt that it makes any difference. I am sure it is just low bidder B000EPHP4U:would_be_great,_if_it_worked...:r._a._edington_"amazonaholic" B000EPHP4U Apple 8 GB iPod Nano Black (2nd Generation): Electronics electronics 6 of 11 1.0 Would be great, IF it worked... November 12, 2006 R. A. Edington "Amazonaholic" Boise, ID, United States CONSUMER BEWARE!!!! This product does not work as advertised. If you put more than 1000 songs onto this device, On-The-Go playlists cease to function. This is very, very sad for a player with 8GB of memory. It's supposed to hold over 2000 songs, but stops working correctly after 1000 songs are loaded? Wow. Unbelievable. This is a well-documented bug on the Apple discussion forums, yet Apple has neither acknowledged nor fixed this bug yet. Will they ever? Who cares? Why should they, if consumers like you keep buying it and RAVING about it? I bought my 8GB Nano, but returned it two days later when I found out the problem was known, but not fixed and not fixable. Apple should not be shipping products with known bugs in them! Don't they test these things?!?!?! By the way, the same problem also occurs on the 4GB Nano if you manage to squeeze more than 1000 songs onto it, which isn't all that hard to do... If you don't care about having more than 1000 songs, or you don't care about On-The-Go playlists actually working as advertised, what are you doing shopping for an 8GB player? Better stick with your 2GB models.. B000085ZKV:this_item_is_prone_to_breaking...:ravingtennisfan B000085ZKV Linksys USB200M EtherFast USB 2.0 10/100 Network Adapter: Electronics electronics 1.0 This item is prone to breaking... September 5, 2006 RavingTennisFan New York, NY Do not buy this item, it is very liable to break within the first week of purchase. And I bought 2 of them, so statistically it's not jsut me. The first time the door broke, and without the door there's no way to hold the ethernet cable to the connection. The second time, the USB part broke off and got stuck in my computer and I could not put it back together. All in all, not the best product out there. Try instead the Belkin USB to Ethernet adaptor B0007Y7976:i've_finally_learned_a_very_expensive_lesson:jane_cox_"linksys_fan" B0007Y7976 Apple 2 GB iPod Nano White: Electronics electronics 2 of 3 1.0 I've finally learned a VERY expensive lesson November 15, 2006 Jane Cox "linksys fan" Boca Raton, FL DON'T BUY THIS PRODUCT. There, simple advice I wish someone had given me before I bought two of these. With the first one the battery died 13 months after purchase. Since it was 30 days outside the warrantly, apple support told me "sorry, tough luck." I made the mistake of buying another one figuring I just got a bad one and there was no way I could have the same problem again. WRONG! Second ipod just died (same battery problem) - this one died within the warranty period but becuase it took me two weeks to get into the ipod store to see what was wrong and, of course, by the time I got in I was past the 12 month warranty period (who keeps track of the purchase date? I sure didn't). Other than the fact that your substnatial investment will be worthless in about a year - it is a fantastic product. I'm just sorry that it didn't last (twice!) cause otherwise I'd be a fan B00004SB92:not_worth_the_hassle_:m._boughter B00004SB92 Linksys BEFSR41 EtherFast Cable/DSL Router with 4-Port 10/100 Switch: Electronics electronics 4 of 4 1.0 Not worth the hassle September 28, 2006 M. Boughter New Castle, PA United States Please search for the thread on the linksys support forum titled "BEFSR41 v4 intermittent drop of connection" which goes on for 4 pages with no reply from linksys support, I'd post a URL but that is against the review guidelines here at amazon. The only way to fix the problems that occur with this router is to buy a different model or better yet a different brand. It appears that Linksys doesn't really care about the issue. I returned this router after the second day of dealing with it's constant connection drops and bought a Belkin instead. B000246XZ0:works_well_in_a_single_room:aleksandar_totic B000246XZ0 Uniden EXI976 900 MHz Analog Cordless Phone with Caller ID (White): Electronics electronics 6 of 6 2.0 Works well in a single room October 8, 2005 Aleksandar Totic San Francisco, CA USA I like the phone's simplicity and ergonomics. It's fatal flaw is the lack of range. My office is about 50ft away from the base, and I get unacceptable interference. Both plain old AT&T & GE 900 handle this distance without any problems B000246XZ0:stops_working_after_6_months:amazon_freak B000246XZ0 Uniden EXI976 900 MHz Analog Cordless Phone with Caller ID (White): Electronics electronics 5 of 5 1.0 Stops working after 6 months September 26, 2005 Amazon Freak I've been 'trying' to use this phone for the past 8 months. Worked fine in the beginning, now I can't even answer my calls. I hit the TALK button, but the phone continues to ring. Spend a little more money but buy a better phone. This phone is a total waste of money B00021Y9OA:on_time_and_on_the_money!:r._montz_"the_dude" B00021Y9OA Bose QuietComfort 2 Acoustic Noise Cancelling Headphones: Electronics electronics 0 of 33 1.0 On time and on the money! July 31, 2006 R. Montz "The Dude" NOLA, USA No tricks, just treats and delivered on time as promised. B0001YFW94:exchanged_them_for_motorola_sx700:brian_j_"brian" B0001YFW94 Motorola T6500R GMRS / FRS Rechargeable Two-Way Radios, Khaki (2 Pack): Electronics electronics 1.0 Exchanged them for Motorola SX700 November 10, 2006 Brian J "Brian" Atlanta, GA I don't know if I just got a bad pair of radios, but they didn't work at all. If we were beyond shouting distance the radios did not receive any signal at all. Even at very close range there was too much static to understand anything. I'll post a review of the SX700s after we get a chance to try them out B0001YFW94:love_the_features,_hate_the_range_and_usage!:mr._jann_linder B0001YFW94 Motorola T6500R GMRS / FRS Rechargeable Two-Way Radios, Khaki (2 Pack): Electronics electronics 14 of 15 2.0 Love the features, Hate the range and usage! March 7, 2006 Mr. Jann Linder San Jose, CA USA From cellphone and also the pager era I began my love affair with Motorola. Don't need to read much farther into my review to get to the meat of it. Sometimes companies make a lousy product even though they have others that are great! Don't Buy These! They fall into the former category I needed them quickly (to give my in-laws time to practice using them before we went on a cruise) so when I went to their house for the weekend I bought them from the hated "Best Buy". I am returning all 4! (2 sets of 2 handsets). Here was my experience: I went in and saw the Midland and the Cobra along side the Motorola. Not knowing much of Midland, but recognizing Cobra from their history with low-end phones and electronics, I opted with the very stylish Motorola T6500R's. I know. Big Mistake! I am a computer programmer and very intelligent, but when confronted with products I do not undestand, I go for the brand name. Which is something that can be forgiven if, as now, you find out what the problem is and correct it. I took them home and recharged them. First things first: The feel in your hand. EXCELLENT. They feel as good as they look. I purchased these to go on a cruise to the Mexican Riviera and to maintain contact both on the boat and in the ports: Puerto Vallarta, Mazatlan and Cabo san Lucas. We wanted to make sure we did not "lose" my in-laws (really! I mean it! No, really ....) Anyway. Charged them up and turned them on. They come with a plastic-encased group of 3 AA rechargable batteries that fit nicely (and only one way--they are keyed) in the dual-purpose battery compartment. This is nice: if you are out and running around and your charge goes down, simply buy 3 AA alkaline batteries and go on your way. There is no problem if you forget you have the NORMAL NON-RECHARGABLE AA batteries in the case if you put it in the charging stand. Unlike other units, the physical metal conductors to charge the battery pack are actually built into the pack, not the handset. If you put it batteries, the charger makes no connection to the handset. If you put in the rechargable battery pack, 2 silver contacts from the battery pack contact the charging stand and VOILA the unit charges. Fitting the handset into the recharger is a nightmare, though! It must be generic and able to fit several different Motorola products (production outsourced to Giant Int'l Ltd--so if you thought this was a genuine Motorola built item, you are mistaken. The entire Talkabout line are outsourced for production) as the dual-compartment charger has 2 inserts in each compartment and no indication of which one to use for the T6500R's. I am a smart person though so I chose the one that looked like it best fit and inserted it. Then I attempted to insert the T6500R's. I say attempted because the bottom of the handset is rounded and thus does not seat well in any direction. After you get it to EXACTLY the right position (look on the charger to watch for the LED to light up) the the hard part (of charging, that is) is over. Next item: Bad red LCD backed screen. Hard to read in ANY light and impossible in the sunlight. Settings were easy enough. Channel, sub-channel, vibrate, NOAA broadcasts, etc. However, the advertised QT (ensures no one can talk through your handset unless they are using a compatible Motorola handset) does not work unless you hit the PTT (push to talk) button (or the CALL button), wait about 3 seconds and begin speaking. My in-laws are new to technology and are used to experiencing walkie-talkies when their kids were young. Therefore this is unusual. They automatically want to push the button and talk. So, the first part of what they say is immediately lost. I say "first part". I am assuming I actually caught a portion of what they said. This brings me to the second major flaw. This unit contains a HORRIBLE speaker. If the volume is too low then you can't hear it. Too high and it is garbled beyond your ability to understand it. We were really hard-pressed to find a happy medium. AND, in a noisy room, it would've been impossible to hear anything. Some merchants list these as 5 mile radios. The packaging says 10. The 1 watt GMRS suggests about 5-10. We got less than 1. Directly over a lake. In vehicles on the I-5, we drove less than 2 miles from their house (which is DIRECTLY ON the interstate) and got no signal. I got back to my house in San Jose (on top of Communications Hill...the largest "hill" in the area) and could not communicate to my spouse less than 1/2 mile away while he was coming up our road! Since the weekend, I have spent all my extra time on Amazon.com and Consumer Reports reviewing all the offerings. (the latter, Consumer Reports' reviews are from July in 2002!) So, I think I am going to return these and purchase the Midland 5 watt GXT500's from Amazon. Remember, doubling the wattage (in this case MORE than doubling) does not give double the signal. As another others have stated, increasing wattage increases only another portion of the distance--ie: 2 watts to 4 watts does NOT double the distance the signal can reach.) Hope this reveiw helps you B0001V2N62:worthless:mc_"it_manager" B0001V2N62 APC BIOPOD Biometric Password Manager (USB): Electronics electronics 8 of 8 1.0 Worthless April 3, 2006 MC "IT Manager" Oklahoma, USA I purchased a Biopod in March of 2006. Received brand new unit that included Omnipass software version 2.09. This software version released in 2004. Contacted company that produced the software and they refused to upgrade to their latest version (v4) that had been released a month earlier unless they charged me the upgrade fee. The version of software that comes with the Biopod (v2.09) pretty much only works with Internet Explorer and other Microsoft software. The new version (4) supposedly works with Firefox and several other non-Microsoft software programs. I recommend you avoid this product due to old software. I returned mine and am ordering the IBM Fingerprint Reader B00000J4GP:these_disks_really_do_stink!!!!!:daniel_a._"danielthechskid" B00000J4GP Memorex 3.5" PC-Formatted High-Density Floppy Disks with File Box (Colors, 40-Pack): Electronics electronics 2 of 2 1.0 These disks really do STINK!!!!! August 28, 2003 Daniel A. "danielthechskid" Iowa USA I bought 1 40 pack of these disks so that I could create a set of Windows 95 setup disks. They worked to install windows once and then they all started dying. I went to run Windows setup and got halfway through and got a "cannot read from device" error. After that I ran scandisk on all of them and only 1 disk didnt have bad sectors. A few of the disks had bad sectors in the system area rendering them unformattable. I advise anybody who reads this to steer clear of these cute little disks unless you want to use them as christmas ornaments B0001RM7P8:pouch_case_for_magellan:always_lost B0001RM7P8 Magellan 980667 Protective Pouch Case: Electronics electronics 1.0 Pouch Case for Magellan October 26, 2006 Always Lost Connecticut Be Creative!! Mostly what you're paying for is the embroidered 'Magellan' name. I like the Crown Royal idea of pouch or you can sew or obtain a fleece and make a square with pockets and tuck everything in there, works fine. Since the reviews are bad, I will not get this just to hide my GPS away in an eye-catching steal-me monogrammed bag. B0009WDM36:just_flat_doesn't_work!:michael_w._wukitsch B0009WDM36 Memorex 2 GB 2nd Generation USB 2.0 Travel Drive 32509070: Electronics electronics 1.0 Just flat doesn't work! October 6, 2006 Michael W. Wukitsch San Diego, CA I bought a second Traveldrive because the first one purchased worked just fine. The second drive does not work on my system (Windows Millenium). Calling the service line I found out that there are two versions and the second is not compatible with the first. After trying all the recommended solutions, the tech support suggested I request a warranty replacement/trade for the original version or simply get my money back. Requests for a resolution of the matter have fallen on deaf ears. I would not waste any more money on products from this company B000BQ535K:lasted_4_months:s._c._bhatti_"iotcusa_wholesale" B000BQ535K Brother HL-5250DN Network Ready Laser Printer with Duplex: Electronics electronics 2 of 4 1.0 Lasted 4 Months November 1, 2006 S. C. Bhatti "iotcusa wholesale" Long Beach, CA We purchased this printer to replace old Brother HL-1440 for our small business printing needs. At first everything was great. After 4 months of use, still on first toner cartridge, the manual feed can no longer grab labels or envelopes. There is now a huge gap and the envelopes can slide all the way inside with no resistance. Huge problem for us and I hope we can return this piece of junk B000ATU8M6:like_a_porsche..._without_wheels!:nitropress_"tech_wrangler" B000ATU8M6 Cobra Nav One 4500 Mobile GPS Navigation System with Traffic: Electronics electronics 28 of 33 2.0 Like a Porsche... without wheels! April 20, 2006 NitroPress "tech wrangler" California When realtime traffic monitoring came to my city, I immediately started looking at solutions to help my wife's daily business driving (2-500 miles weekly, crisscrossing a 50-mile area through major traffic routes). I quickly settled on an automotive GPS with realtime traffic monitoring. There are not yet many choices in this area, so the options boiled down to this unit and the Garmin 2720. (These use FM radio for the traffic info; the XM-radio units like the TomTom 700 and Garmin 2730 had unacceptably high monthly costs since I don't want XM radio.) I chose the Cobra for its large screen and positive reviews in areas that were important to me. Its flawed routing ability was not a major issue as it was to be used in a well-known region. Address lookup and traffic monitoring were the primary needs. In short, I don't know much about how the Cobra performs because I was only able to use it for a few short test trips. This is because the mounting hardware is one of the most deficient pieces of engineering I have ever encountered in higher-end electronics gear: - The only mounting option is via suction cup, which in tests would adhere reliably only to nearly flat glass. A stick-on disc for attaching the suction cup is also provided, but I did not attempt to use it and would not trust it to be able to hold this heavy (1.25 pound) unit over the long run. If your vehicle does not have a flat section of windshield in a convenient location, you will have very few options for mounting this unit. - California law prohibits attaching things to the windshield, meaning that California users either need to risk a minor ticket or find an acceptable alternate mounting point. (Good luck to you: I was unable to find one in three different vehicles!) Compounding the problem is that the mount has a very limited positioning range and easily runs out of adjustment room for most potential mounting alternatives. - Cobra does not offer any other mounts or mounting accessories at all - no beanbag or friction mount, no clamp, no fixed-base mount, nothing. If there is any aftermarket option (RAM Mount, etc.) I was unable to find it. You are stuck with Cobra's proprietary mount unless you are willing to modify the unit or its mounting pieces and fabricate an adapter for a Garmin or RAM Mount base. I was *almost* willing to go the extra mile to make this unit work in my vehicle, even though the best solution would have been very awkward to dismount and remount, making it a potential theft target. The final straw was when I found that the traffic receiver was faulty and I was unable to get a reply from the manufacturer in a timely manner (two days now and counting...) Enough's enough; something was telling me that this unit wasn't the right choice. So this unit is being returned and I've already ordered a Garmin 2720 with GTM11 traffic receiver in replacement. The prices for the units through Amazon are nearly the same (especially when factoring in the costs for 15 months of traffic monitoring - the Cobra comes with three months and gets $60 per year after that, while the Garmin comes with 15 months and has the same annual cost after that - so you have to add $60 to the Cobra to get a truly equivalent price). Garmin also has excellent mounts with a range of attachment options, some of the best map and routing tools, and a long track record with GPS units. It does have a smaller screen and some complaints about the user interface, but at least I can mount it properly and be able to tuck it away and remount it easily to prevent theft. This unit gets two stars only because my brief experience with its function appears to live up to all the positive reviews - but overall, it's like a high-performance sports car with no wheels! I 100% recommend against it for California users and suggest that others try to lay hands on a sample unit to see if it can be properly mounted in your vehicle before laying out $750 B0000AFX1G:died_after_a_few_weeks:j._ter_horst B0000AFX1G PNY 128 MB Attache USB 2.0 Portable Flash Memory Drive: Electronics electronics 1.0 Died after a few weeks August 9, 2006 J. ter Horst UK Worked fine for a couple of weeks and then just died. The problem was that it was not recognized by XP or Linux anymore. B0000AFX1G:bad.:mak_blast B0000AFX1G PNY 128 MB Attache USB 2.0 Portable Flash Memory Drive: Electronics electronics 5 of 12 1.0 Bad. March 23, 2005 Mak Blast This flash drive does not work with Windows 98SE. The back of the package clearly states you can download drivers for Windows 98SE at the maufacturer's web site. First I tried downloading the driver. Turns out the driver is a .zip file so I had to download WinZip so I could unzip the driver. After downloading the driver and WinZip the flash drive is still not recognized by my PC. The FAQ at the manufacturer's web site states if the device is not recognized the BIOS on my PC must be enabled. But the FAQ doesn't tell you how to enable the BIOS B0002IQ1FS:velocity_bait_and_switch:r._hsu_"coasters_form_velocity" B0002IQ1FS Verbatim 8x 4.7 GB DVD-R Spindle (100 Discs): Electronics electronics 1 of 18 1.0 Velocity Bait and switch March 27, 2006 R. HSU "coasters form Velocity" SF, CA It doesn't matter what DVD+ writer I used, Velocity worked! Not one disk became a coaster. I loved the Velocity DVD-R until I order 2 more spindles. I ordered it directly for the manufacture. When I received it, the outside plastic covering was cracked, half the Disks had the jitters and the other half was coasters. It seems to me that they trick you into ordering one with a great offer including free shipping. If you order any more, the person shipping it to you send you the rejects from quality assurance. I will never again order this product again period! B0002IQ1FS:three_in_a_row_made_as_data_dvd:digital_barista B0002IQ1FS Verbatim 8x 4.7 GB DVD-R Spindle (100 Discs): Electronics electronics 1 of 9 1.0 Three in a row made as data dvd November 1, 2005 digital barista washington Well, so far so bad... I burned the DVDs on my Panasonic DVD recorder. They play in my newer DVD players, but I cannot make a copy of them with Sonic DVD, Nero, or One click DVD. UNacceptable! I have used many types of DVDs, never had this happen. I guess I know why some DVDs I have purchased are playable, but not copiable.. it is the media! I will stick with Maxell,or TDK B0001FV2YM:hunk_of_junk:wisconsin_dad B0001FV2YM Belkin TuneCast II FM Transmitter: Electronics electronics 1 of 1 1.0 Hunk of Junk August 1, 2006 Wisconsin Dad Fond du Lac, Wisconsin United States Worked for 6 hours, then just stopped transmitting. What a waste of cash. Do not buy this B0001FV2YM:sound_was_really_bad:p._etue B0001FV2YM Belkin TuneCast II FM Transmitter: Electronics electronics 1 of 1 1.0 Sound was really bad July 11, 2006 P. Etue Michigan I had a terrible time getting a station to come in even close to FM quality. There was always a bunch of static and the stereo buzzed between songs because I had to keep the volume too high. The high band of frequencies seemed to work best, but then it led to crackling speakers everytime I turned something electrical on in the car. It also seemed to kill batteries at a surprising rate. On a positive note, I loved the fact that it would also function for my son's DVD but in the end, it had way too much static so I hunted for anothe B0001FV2YM:worthless:t._latta B0001FV2YM Belkin TuneCast II FM Transmitter: Electronics electronics 1.0 Worthless June 8, 2006 T. Latta Round Lake, IL United States This is a total waste of money and engineering. Plenty of free frequencies in my area and it would barely connect to anything. Sound quality horrible even when the device is right next to the antenna on a portable FM player. Wrapping it back up and sending it back B0001FV2YM:what_a_piece_of_poo!:jeremy_aker B0001FV2YM Belkin TuneCast II FM Transmitter: Electronics electronics 2 of 2 1.0 What a piece of poo! May 4, 2006 Jeremy Aker Raleigh, NC The transmission quality is very poor. I was unable to find a single frequency free of static. While operating the Belkin TuneCast II in my car I found that driving over or under bridges, under traffic lights, under power lines, or near large trucks increases the static to a level where the music can not be heard at all. The only way I could get audio clarity equal to that of a dirty and scratched record or a distant AM station was to hold the transmitter to the face of my radio. What a piece of poo! Can I give it zero stars? And don't even get me started on the excessive packaging that you'll need to use a diamond tipped jack-hammer to open B0002XGYJ6:false_advertising:abra_carroll_nardo B0002XGYJ6 Pretec SD GPS PPC 2002/ PPC 2003 or later, Palm OS 5.x or later: Electronics electronics 3 of 5 1.0 False Advertising December 25, 2004 Abra Carroll Nardo Memphis, TN If you have a Palm, read this before buying this device: <<<Although our SD GPS card should work with Palm OS without a driver as its NMEA-0183 compliant, currently we are not aware of any 3rd-party software that supports our SD GPS card. Based on this I regrettably have to say that at this moment it does not work with Palm OS device. We are currently in the process of developing a Palm OS driver that will allow the device to be used independent of 3rd-party software support. When this becomes available it will be posted on our website.>>> I bought this for my father for Christmas. It cost a lot of money. We all got really excited about it. It doesn't work. : B00004WFZR:brother_ml-300_not_worth_considering:paul_f._cotter_"lovegrass" B00004WFZR Brother ML-300 Electronic Display Typewriter: Electronics electronics 7 of 7 1.0 Brother ml-300 not worth considering February 8, 2006 Paul F. Cotter "lovegrass" lubbock, TX USA I have had two of these units. I would definitely not recommend anyone buying the ML-300. Save yourself some money and get something else. Both of the units lasted only 14 months. I did hardly any typing with them. Only multi-page forms and applications. The printwheel motor failed on both of them and so did the electronic board for the keys. Took in in to a repair center and was told it was not worth repairing. Contacted Brother International USA and was told that the warranty was only good for 12 months. Save yourself some money and buy a Big Chief table and a number 2 pencil. B0001AP8CE:not_the_right_fit:dutch_treat_"dt" B0001AP8CE Apple M9394G/B iPod Earbud Headphones: Electronics electronics 2.0 Not the right fit November 9, 2006 Dutch Treat "DT" Kauai, HI After reading some good and bad reviews I went ahead and bought them anyway. They will not stay in my ears, I tried the three different sized ear buds but non will do the job, very irritating. So, I do not recommend them at all, too bad because if they stay in when you sit really still the sound quality is really good. Aloh B0001AP8CE:this_apple_product_is_rotten_to_the_core!:p._duval_"pdv" B0001AP8CE Apple M9394G/B iPod Earbud Headphones: Electronics electronics 1.0 This Apple product is rotten to the core! September 28, 2006 P. DuVal "PDV" Newbury Park, CA Bought these and used them once. Had to remove them when I found myself in dire need of some Excedrin Migraine. What do you get for your $39? Cheap, tinny, bass-less sound that's like being plugged into a busted Walkman. The buds themselves don't remain stable in the ear, so forget about using them while engaging in motion-involved activity (such as jogging, walking, head-bobbing, neck movement, etc). These are by far the worst earbuds on the market. How could Apple stoop so low? Don't be fooled! Do a Google search for these and you'll find that the vast majority out there considers this a horrible product. You've been warned. I used to use Koss Earbuds, which were pretty good. I sold these iPod duds in favor of the XtremeMac In-Ear Headphones, which are the best ones available and worth the extra money B0002V8KW2:won't_connect_over_wpa:james_pezzella B0002V8KW2 Linksys Wireless-G Internet Video Camera: Electronics electronics 13 of 18 2.0 Won't connect over WPA June 20, 2006 James Pezzella Oceanside, NY I've had this camera replaced by Linksys 4 times. The first time, was due to the camera crashing on a weekly basis. The second replacement worked fine until I upgraded my router and switched from WEP to WPA. After the switch the camera would not connect to the router, switching back to WEP, of course worked. Linksys has replaced the camera 3 times for this issue, and with the last support call confirmed that there is a KNOWN problem with WPA encryption and this camera B0002V8KW2:stay_away_from_this!:marklin_man B0002V8KW2 Linksys Wireless-G Internet Video Camera: Electronics electronics 3 of 5 1.0 Stay Away From This! April 29, 2006 Marklin Man Landenberg, PA I have extensive experience with wireless system setup and operation. My whole system is all Linksys gear. After four hours on this camera, I give up. When you update the firmware, it erases everything you programmed into the camera so beware. I could get the camera to work in WiFi mode. Picture is decent, not great. The motion sensing function triggers quite well. The frustration comes from an inability to get the email function to work. Kept getting an error message with the system parameters setup so it should have worked. The FAQ section on Linksys website is almost non-existent. I did not bother to call because in my past experience that is of minimal help and very frustrating. Features sound great but could not get it to work right. I will find another unit. B0000AOWVP:keyboard_has_splotchy_finish_and_not_durable:william_e._fournier B0000AOWVP Microsoft Wireless Optical Desktop Pro: Electronics electronics 3 of 4 2.0 Keyboard has Splotchy finish and not durable February 9, 2006 William E. Fournier Steamboat Springs, Colorado This is my first Amazon review of any type. I was quite happy to finally get a wireless keyboard and mouse. When this was pulled from the box the finish was splotchy. It looks like someone painted the keys in a garage. I expected better. Now I have used it for a couple of weeks in an office environment, and already one of the plastic keyboard legs has broken. I am not hard on the equipment and don't know how it happened. Once in a while I press keys and nothing happens. I can live with that. On the other hand, the mouse works as expected. Before you purchase one, check the process for returning it! I would rather put up with the crappy keyboard..... I will continue to purchase many books from Amazon but my computer hardware will come from Dell. B0006ZM4XK:1_step_forward,_50_steps_back.__just_horrible.:james_g._magnano B0006ZM4XK Linksys WRT54GX Wireless-G Broadband Router with SRX: Electronics electronics 7 of 10 1.0 1 step forward, 50 steps back. Just horrible. February 28, 2006 James G. Magnano Los Angeles, CA. USA This router had 1/4th the range of my standard linksys G-router which suddenly burned out after less then a year. The speed (when I could get a signal) was 1 to 11 Mbps, my old router held a steady 54Mbps. I did need a range expander for my old one to cover my whole house, but I couldn't use it with this router. The expander only works with the basic G-router, so no way to even boost the signal on this new one. Support was a joke, couldn't get any help or explaination as to why the "Expanded Range" was so much less range the the previous "unexpanded range" Bought another older version, and everything's great again. Don't waste your money or time on this B0006ZM4XK:very_disappointing!:j._christopher_jones B0006ZM4XK Linksys WRT54GX Wireless-G Broadband Router with SRX: Electronics electronics 7 of 12 2.0 Very Disappointing! January 11, 2006 J. Christopher Jones Despite the slick marketing effort (i.e. "With SRX"), this product falls short. The installation disk is useless. Customer support was good, when I could get through - which was not very often. I constantly lost the wireless connection. I constantly had to re-boot. Despite significant effort (utilizing the online help features) I could never obtain a secure, encrypted connection. No more Linksys for me! B000GP4G1I:disappointed_is_all_i_can_say...:mark_r._wuscher B000GP4G1I Logitech QuickCam Ultra Vision ( 961471-0403 ): Electronics electronics 1 of 1 1.0 Disappointed is all I can say... November 24, 2006 Mark R. Wuscher I am a huge Logitech fan and buy their products in the truck load, unfortunately, this webcam is a dog with fleas. The picture is blurry, the lighting is abmismal in low light and you can just get better performance from a less expensive web cam. I am still a Logitech fan, but you can get better performance from QuickZoom B000GP4G1I:logitech_quickcam_ultra_vision:snowmanbob_"bob" B000GP4G1I Logitech QuickCam Ultra Vision ( 961471-0403 ): Electronics electronics 1 of 11 1.0 Logitech QuickCam Ultra Vision November 10, 2006 snowmanbob "Bob" Minnesota I ordered this web cam because I wanted one of the better web cams on the market. I was NOT able to get it working. I returned it. Very dissapointed B000068IH5:monster_cable_rcas_for_ipod:timothy_j._travelbee_"trvlb" B000068IH5 Monster Cable 126130 iCable for iPod: Electronics electronics 1.0 monster cable RCAs for iPOD November 6, 2006 Timothy J. Travelbee "trvlb" chicago Paid $34 at Best Buy for a cable that DOESN'T EVEN WORK. Have always been skeptical of Monster Cable price points, don't buy them, took a chance. As a matter of principle, this product sucks. (For $34, I'm waiving the "bad apple in every bunch..." rebuttal B0007LC4DS:iriver:j._de_cou B0007LC4DS iRiver H10 5 GB Digital MP3 Player Trace Red: Electronics electronics 0 of 2 1.0 iriver November 10, 2006 J. De Cou Alpine, WY Don't waste your money. What iRiver doesn't tell their customers is that once the battery goes dead, the system is useless. I will never buy one of their products again and I'm doing my best to inform everyone out there that they'll be tossing their money in the trash by purchasing any iRiver products. My system cost me $[...] and it is now as useless as the customer service department at iRive B0007N55LO:excellent_sound,_painful_electric_shocks:matt_stewart_"mdsandco_at_gmail_dot_com" B0007N55LO Sony MDR-EX81LP Bud-Style Stereo Earphones (Black): Electronics electronics 0 of 1 2.0 Excellent Sound, Painful Electric Shocks November 6, 2006 Matt Stewart "mdsandco at gmail dot com" Palo Alto, CA These earphones provide excellent sound for the money. Rich bass, sharp treble and tight sound isolation with the comfortable and adjustable rubber earpieces. However I experienced painful electric shocks in both ears if I put pressure on my eardrums, such as getting up from a chair. And that was before I stood in the puddle of water. Just kididng. Shocks occured in first and Sony-provided replacement pair. They eventually replaced with an on-the-ear model. I have no problems with other Sony headphones or earphones, I think the speaker membrane was positioned too close to my eardrums. Since there are on other comments about this issue, I'll assume its isolated, but beware of shocks on perhaps a smaller scale. B00006JI6Y:this_does_not_fit_the_ipaq_hx2755:susan_cannon B00006JI6Y HP/Compaq CQP121 HP Nylon Folio Case - Black (High Density Nylon): Electronics electronics 2 of 4 1.0 This does not fit the iPAQ hx2755 August 8, 2005 Susan Cannon Houston TX USA This does not fit the iPAQ hx2755. Do not try! There are plenty of other cases out there that will work. I ended up with a 94 cent digital camera case from Wal-Mart that works better than this thing. B000BDH2Y8:do_not_buy_this_product:d._neufeld_"programmer" B000BDH2Y8 Logitech V270 Cordless Optical Bluetooth Mouse- Charcoal: Electronics electronics 1.0 Do not buy this product November 25, 2006 D. Neufeld "Programmer" San Diego, CA This product is terrible and I'm going to return mine or throw it away. It constantly wanders to places I don't want it to be or trails where I think it should be based on my usage of other mice. At this point I consider it unusable. I've tried it on several surfaces to see if it was a tracking problem, but noticed no real change in behavior. I think what's happening is it keeps trying to go to sleep while I'm moving it, because the tracking is OK as long as I'm moving it very quickly, but when I'm trying to precision target something like an icon or a piece of text it starts jumping erratically. I keep it about 6 inches from my laptop at all times, and the laptop isn't complaining about connection problems B0002ZAYZ4:not_as_advertised:carol_burnett_"cb" B0002ZAYZ4 AT&T 984 Small Business System Speakerphone with Digital Answering System and Caller ID/Call Waiting: Electronics electronics 10 of 10 2.0 Not as advertised June 2, 2005 Carol Burnett "CB" Tokyo, Japan This is a nice 4 line phone, but the digital answering system does not work. We have 2 984's and several other brand 4-line phones. I could not find any way to make either 984 work as a four line answering system. Auto-Attendent is useless in our situation. These phones are certainly not worth the money. Unfortunately there aren't many 4-line phones on the market and apparently no 4-line digital answering systems B000246U1C:the_first_one_came_broken:kage B000246U1C Acoustic Research AW-811 Indoor/Outdoor Wireless Speaker (single): Electronics electronics 1.0 The first one came broken November 4, 2006 Kage Truckee, CA The first speaker came broken, I first called the manufacture but they wanted me to ship it at my cost for repair, that was not acceptable. I then called Amazon and you took the item back promptly. When I tried to have replacement shipped I was informed the price had increased and I would have to pay the difference, since this is the speaker my wife wanted I was forced to pay the increased price. I am not happy with this tansaction. B000246U1C:not_as_advertised:d._brady B000246U1C Acoustic Research AW-811 Indoor/Outdoor Wireless Speaker (single): Electronics electronics 1.0 Not as advertised November 3, 2006 D. Brady I can't get good reception at any range from source. Intermittent when two rooms away from source. Have to move the speaker unit around to find an acceptable location. Doesn't automatically retune when being turned back on. Not at all what I expected from this piece of equipment. B0001YXWNM:terrible_purchase:g._gotimer B0001YXWNM Macally PodTape iPod Cassette Tape Car Adapter: Electronics electronics 1 of 1 1.0 Terrible Purchase October 26, 2006 G. Gotimer I assumed all tape adapters were comparable. This one worked fine for 1 week. Then it sporadically ejected itself from the tap deck. A few days later it broke completely and is now jammed in my tape deck. The tape deck on my car stereo is now broken as is the Macally Podtape. I would buy another a different brand of adapter, but I no longer have a tape deck that works in my car. My worst purchase on Amazon to date. B0000649EZ:buyer_beware:_do_not_buy_this_one:c._huang B0000649EZ Recoton DVD901 Audio Digital Optical Cable (6 Feet): Electronics electronics 11 of 12 1.0 Buyer beware: DO NOT buy this one November 29, 2004 C. Huang Have this optical cable for about a year before it was broken. According to the package, it has lifetime warranty. Sent back to the company and got a rejected mail saying, "COMPANY OUT OF BUSINESS, RETURN TO SENDER". The company address on the label is: Recoton Accessories, Inc. 2950 Lake Emma Road Lake Mary, FL 32746. Made in Chin B00008W9PW:ambicom_wl1100c-cf_compactflash_11mbps_adapter:sikh_lord_"mgabasooa" B00008W9PW AmbiCom WL1100C-CF Compactflash 11MBPS Adapter: Electronics electronics 1 of 1 1.0 AmbiCom WL1100C-CF Compactflash 11MBPS Adapter July 26, 2006 Sikh Lord "mgabasooa" Houston, Texas I tried to use it in my Dell X50 and it hardly worked, was too slow, too short range, you have to unplug and plug it bacl again and again. I other words, do not buy this if you have a Dell X50, you will just waste your money and time trying to make it work B000B9RXP0:looks_good......._but:greg_rees_"greg" B000B9RXP0 Apple MA185G/A Armband Green for iPod Nano 1st Generation: Electronics electronics 6 of 6 2.0 Looks good....... but August 20, 2006 Greg Rees "Greg" Midwest I purchased this armband to hold my Nano during workouts. The band barely fits my arm and tends to slide down the arm while running or cross training. Looking for a replacement right now B000CO77SC:warranty:j._perez_"xavper7" B000CO77SC 2-Year Service Plan for Televisions $200 to $999.99: Electronics electronics 1.0 Warranty November 11, 2006 J. Perez "xavper7" phoenix, az I purchased the 2 yrs warranty for my Samsung LCD tv but I never received any information on it. B000196ENM:magellan_externa_antenna_-_bad:wayne_mcfarland B000196ENM Magellan 980637 External Antenna: Electronics electronics 1.0 Magellan Externa Antenna - Bad November 4, 2006 Wayne Mcfarland The plug on the external antenna does bot fit the jack on the Magellan unit - avoid this until Magellan figures this out. Seems like they would use a standard plug/jack pair for all products B000196ENM:at-65_substitution:brian_e._monahan B000196ENM Magellan 980637 External Antenna: Electronics electronics 1.0 AT-65 Substitution October 26, 2006 Brian E. Monahan San Diego Got this antenna from my wife for my birthday; to go with my Roadmate 760 I just purchased.. The antenna we received was the AT-65 antenna. Instead of the large round antenna in the picture it was a small rectangular antenna (1 inch x 1 1/2 inch) with no indication that it was an actual Magellan antenna, on the unit itself. The package had a Magellan cardboard insert but this was definitely not the antenna pictured B000196ENM:another_at-65_substitution:s_saunders_"s_saunders" B000196ENM Magellan 980637 External Antenna: Electronics electronics 4 of 4 1.0 Another AT-65 substitution August 23, 2006 S Saunders "S Saunders" NJ Unfortunately, I too received a switched item (at-65)in a sealed Magellan box today. Jennifer in Customer service assured me that they will refund the purchase and that they will investigate the stock they have. She was very apologetic and helpful. I will see what happens but am thankful that she was there to help B000F9NXW8:midland_gtx600vp4_radios_bogus_-_midland_bogus:frank_r._cutaia_"fc" B000F9NXW8 Midland GXT600VP4 5-Watt 22-Channel GMRS with NOAA All-Hazard Weather Alert: Electronics electronics 5 of 8 1.0 Midland GTX600VP4 Radios Bogus - Midland Bogus August 19, 2006 Frank R. Cutaia "FC" New York Using this product to communicate between motorcycles as promoted by the very fact that there are motorcycle headsets for your helmut available for these radios is clearly unsafe. The distractions created by the radios having no range after about 100 feet can prove fatal for a motorcycle ryder due to a momentary lapse in concentration, just as it would be between a bike and a car. I purchased these radios as the better of the Midland lot - with an 18 mile range. An outright lie. I bought them to communicate between two motorcycles- either myself and my brother (after also purchasing 2 of the motorcycle helmut headstets), or between me on the bike and my girlfriend driving my jeep following me on a long distance ride. We don't even get 100 feet out of them when the radios begin to breakup and are usless. The range increases as long as you are not moving. I haven't tested them while one user is moving on the road or on the highway and one user sitting stationary. I intend to contact Midland about a full refund, but if they don't work when you are moving then what good are they?. How could they fabricate these claims of 18 miles? Even if they couldn't do 18 miles, how about a half mile? How about 1/4 mile or 1/8 mile? Not even that. This is a discrace. I'm just another customer handed a bogus deal. Do not buy any GMRS stuff from Midland B00005BC0F:you_get_what_you_pay_for: B00005BC0F Cyber Acoustics CA-4100 4.1 Flat Panel Computer Speakers (5-Speaker, White): Electronics electronics 2 of 2 2.0 you get what you pay for July 31, 2003 subwoofer should not be called that: it's tiny, and distorts if the slightest bass is put through it. Not good for music, not good for gaming. Steer clear B000EIBVKG:eton__red_cross_emergency_radio:bruce_c._payne B000EIBVKG American Red Cross FR400 Emergency Radio: Electronics electronics 11 of 11 1.0 Eton Red Cross Emergency Radio September 13, 2006 Bruce C. Payne Ft. Lauderdale Florida This radio is poorly built. When you set it down the little door in back opens and the batteries fall out. You put them back in, carefully set it down, then when you pick it back up the little battery door falls open and the batteries fall out again...Now, I put rubber bands around the whole radio to keep the battery door in place....stay away from this particular model unless you have lots of rubber bands...good luck and thanks for the opportunity to write the review... Bruce Payn B000EIBVKG:poor_design_for_an_emergency_necessity:cheryl_l._soehl B000EIBVKG American Red Cross FR400 Emergency Radio: Electronics electronics 18 of 18 1.0 Poor Design for an Emergency Necessity August 31, 2006 Cheryl L. Soehl Columbia, SC I will not be sending this item to my frail 85-year old mother in law to help her survive in hurricane alley on the west coast of Florida. It is virtually impossible to open the battery case cover to assemble the rechargeable battery connection for this radio. Most folks would buy this and store it until needed and so would not know in advance that they cannot access the battery compartment. This is unacceptable design failure for something the Red Cross is touting as a household essential. When the company was contacted for assistance, they suggested inserting a butter knife in the hinge and forcing the cover open!! Folks have already reported being injured in trying to force the cover open. I will be returning this one as soon as I can B0002QWU3W:returned_two:felicia_burford B0002QWU3W Coby TF-DVD7100 Portable DVD Player: Electronics electronics 1 of 1 1.0 Returned Two October 1, 2006 Felicia Burford Flagstaff, AZ I had to return two faulty DVD players. One would freeze frame the picture and the audio would keep on playing. The replacement DVD player kept saying "Wrong Disc" and was very very loud when it would actually play a disc. I ended up having to search and find a different DVD player all together because they wouldn't replace the 2nd faulty product. (Which was packaged inappropriately and possibly damaged in shipment) B0000AN4EG:bad_quality:koko_"kokojie.blogspot.com" B0000AN4EG Garmin StreetPilot 2610 In-Car GPS Receiver with 128 MB CompactFlash Card: Electronics electronics 1 of 2 1.0 Bad quality November 12, 2006 KoKo "kokojie.blogspot.com" USA The cigarette lighter adapter (with speaker) is really bad quality, the original one worn out within 1 year, I purchased a new adapter and worn out within 6 month. Garmin need to do better B00009V2WP:don't_bother_:inkypinky B00009V2WP GE Slimline Phone with Call-Waiting Caller ID: Electronics electronics 7 of 7 2.0 Don't bother August 26, 2006 InkyPinky SHORT cord cannot be replaced, so don't bother with this phone unless you can sit RIGHT by it to chat. B000AY7A4K:beware-_shipping_charges_sky_high:rj B000AY7A4K HP 57/58 Series with 100 Sheet: Electronics electronics 8 of 17 1.0 BEWARE- SHIPPING CHARGES SKY HIGH December 16, 2005 RJ MA This seller COMPUTER BRAIN is charging $20.18 to ship these ink cartridges...I knew the price was too good to be true... Beware B0002ZSCJY:beware!:erik_v_"design_engineer" B0002ZSCJY Escort Passport 8500 X50 Radar and Laser Detector (Blue Display): Electronics electronics 27 of 29 1.0 Beware! August 3, 2006 Erik V "Design Engineer" Kinnelon, NJ I ordered the Passport X50 from Amazon to save the $18 shipping Escort Radar was charging. I was told by someone at Escort Radar that Amazon was an authorized reseller. After having my detector on for ten minutes (right out of the box), it did three "SELF CAL"s, then said "SERVICE REQUIRED". I called Escort Radar and was told "If you let the car power up the unit when you start the car, the voltage can be all over the place and the unit gets confused. You must first start the car, and then use the thumbwheel to turn on the detector." It makes some sense, but if this is really the case, why don't they put those instructions in their manual? After trying this many times, the unit was "still confused", so I returned it for a replacement. My second detector worked for maybe thirty minutes before the same thing happened. This time Escort Radar told me "if you leave it plugged into the cigarette lighter over night, this has been found to cause problems." Well my lighter power goes off when I turn off the ignition, so this doesn't apply. Escort Radar also told me that "excessive heat" has been causing them problems. Now we have had a few days of 100� heat, and I'm sure the car gets hotter parked in the sun, but the design engineers should have accounted for these conditions plus some margin when you design something that is supposed to work in a car. It gets a lot hotter in other parts of the country. There are no warnings in the manual about not using it above 90� or leaving it off in a hot car. You wouldn't design a ski that doesn't work below 35�, would you??? The most troubling part of my conversation with Escort Radar service department was they told me Amazon is not an authorized reseller, and they have no idea where they are getting the units from. Furthermore, they will not honor any warranty nor will they ever repair the unit, not even for money. B000HZ9CCA:hope_you_went_to_college:scott_styles B000HZ9CCA SanDisk Sansa e280 8 GB MP3 Player (Black): Electronics electronics 2 of 28 2.0 Hope you went to college November 15, 2006 Scott Styles Bolingbrook, IL United States I've got an engineering degree in computer science. I've been supporting multi-million dollar web applications for years. It took me 4 hours to get this device to sync properly with the Rhapsody music subscription service that it is promoted for. There is no way a normal person is going to be able to get it to function in any capacity except as a straight mp3 player. It's not ipod caliber quality, the only reason you'd get it is for the Rhapsody service. If you are not highly technical and patient, move on! Player itself works fine B000HZ9CCA:impossibly_difficult_to_use:al_f._havemann_"afh" B000HZ9CCA SanDisk Sansa e280 8 GB MP3 Player (Black): Electronics electronics 5 of 16 1.0 Impossibly difficult to use November 13, 2006 Al F. Havemann "AFH" USA I ordered this unit with high expectations, lots of memory, expandable, multiple modes, from a well known company and an excellent price; how could I go wrong?. Easily enough, as it turns out. I was unable to load it and control the play lists. Trying to use it in MTP mode always crashed the host (BSOD) so I reverted to MSD (Mass Storage Device) mode using drag and drop. Dragging a folder to the device was pointless. Most of the time the files didn't even show up, and when they did they were scattered all over the place. I copied 82 files from the Lord of the Rings set into a single folder, only 52 could be found even during play back, but they could be seen from "My Computer" on the host system. After fooling around with it for a couple of hours I gave up and called SanDisk technical support certain they would be able to help me sort it out. I have to admit that I was pleased with their support even though in the end they were unable to resolve any of the problems other than by suggesting that the only way to use drag and drop was to dump everything into the MUSIC folder where it would play in whatever order the device wanted; a totally useless method. This was totally unsatisfactory since there was no control over the play list and no way to even find all of the files that would fit into 8+gb. Imagine listening to the first movement of Swan Lake followed immediately by something from 9 Inch Nails, then maybe a Bach Cantata!. Using Media Player to sync did no better. Creating a playlist (m3u) of 82 files and then syncing did exactly the same as drag and drop. A hopeless mess, no play order, missing files and so on. After spending 3 hours with SanDisk tech support we were both more than ready to quit. The tech had no more idea that I did about how to solve the problems that plagued the player and we both gave it up as a bad job. This is little machine has plenty going for it in the specification, but it's hopelessly flawed in the implementation, and this is without complaining about the stiff control wheel or the overly small buttons. Throughly frustrated, it was in the mail being returned less than 8 hours after I received it. I just cannot recommend this player, it needs a through overhaul of the interface and firmware; and fixing the control wheel and buttons would be a plus as well. As it stands, it's without merit as a player. B000HZ9CCA:nice,_but_no_control:confederate B000HZ9CCA SanDisk Sansa e280 8 GB MP3 Player (Black): Electronics electronics 6 of 18 2.0 Nice, but No Control November 6, 2006 Confederate Bethesda, MD I had high expectations for this product, having bought some of Sandisk's other products. The problem with the e280 is that Sandisk doesn't give users the control or the versatility over file management. For example, using it in the (mass storage) MSC USB mode, one is forced to create playlists in Windows Media Player. This works, but one of the drawbacks is that playlist creations can be plagued with files that have errors or are skipped. It would be far better if one could just drag folders and music mp3 files to the right folder and play them, with multiple folder levels. This would allow catogorizing music the way the user wishes; instead, Sandisk adopts an almost Microsoft mentality in its approach. "It's our way or the highway." Once one masters creating playlists, they have to settle for dumping them all into one directory. It's too bad because reading the manual and reading the reviews, one can easily get the idea that the e200 series can be set up like just another USB storage device (including other, previous Sandisk products). Well, you can, but it won't make much difference if the device won't play. B000BREQN4:worthless:j._gerstein_"jason_in_dc" B000BREQN4 Griffin Technology 9500-TRIPDA iTrip LCD/FM Transmitter with Dock Connector for iPod: Electronics electronics 1.0 Worthless November 24, 2006 J. Gerstein "Jason in DC" DO NOT BUY THIS ITEM. IT IS TERRIBLE. The itrip has awful reception. It isnt worth the money. Wait for something better B000BREQN4:junk!:a._tobias_"tobiasfam" B000BREQN4 Griffin Technology 9500-TRIPDA iTrip LCD/FM Transmitter with Dock Connector for iPod: Electronics electronics 1 of 1 1.0 JUNK! October 30, 2006 A. Tobias "Tobiasfam" M�rfelden-Walldorf, Germay Believe the opinions of most of the people who have made the mistake - like me - of buying this thing: It is pure junk! It has to be one of the worst hoaxes ever put over on consumers. It does not work, and you can forget getting any real help or service out of Griffin Technology B000BREQN4:don't_waste_your_precious_money:aloha_tahiti_"ia_orana" B000BREQN4 Griffin Technology 9500-TRIPDA iTrip LCD/FM Transmitter with Dock Connector for iPod: Electronics electronics 2 of 3 1.0 Don't waste your precious money September 8, 2006 Aloha Tahiti "Ia Orana" Brazil It's better if you spend your money in something else. It has a ridiculous transmitting power. So bad that even radio transmitters from miles away interferes with this device 1 ft from the radio receiver. The audio quality is so bad that totally destroys the pleasure of listening to your music. In fact this device should be forbidden to be sold or should be tagged as phony advertise B000BREQN4:one_star_too_many!_horrible!!!!:lisa_chatterton B000BREQN4 Griffin Technology 9500-TRIPDA iTrip LCD/FM Transmitter with Dock Connector for iPod: Electronics electronics 5 of 5 1.0 ONE STAR TOO MANY! HORRIBLE!!!! August 8, 2006 Lisa Chatterton Texas This is about the worse thing i've ever bought for an ipod accessory. It does NOT work. All I heard was static, and very little music. If you do want to hear music, you literally have to hold your ipod right next to the radio and stay perfectly still or all you'll get is static. I bought this online and received it and was so excited to use it. I was hesitant to buy it, seeing almost every review has said it doesn't work but I bought it anyway, don't buy it! Every review I've seen has negative feedback for this item, and I agree with everyone. I figured since Griffin made a new itrip, it would be better and work great. However, it is the total opposite from that. I do NOT recommend this product at all. Don't waste your time or money B00000JZKB:no_service_really:daniel_g._ramirez B00000JZKB Texas Instruments BA II Plus Business Analyst Calculator: Electronics electronics 2 of 7 1.0 no service really March 5, 2006 Daniel G. Ramirez Phoenix, Arizona never received the item. Have to go thru the process of filing a claim with UPS for lost/not delivered item. No way to complain to Amazon.com. B00021XIJW:what_a_pain!:mark B00021XIJW Linksys Wireless-G Range Expander WRE54G: Electronics electronics 1 of 2 1.0 What a pain! November 9, 2006 Mark Ann Arbor, MI USA I purchased this item after carefully reading all the other reviews. I, like others, cound not get it to work with wireless security turned on. I even tired using the "tricks" described in another review. To be fair, the product worked fine without wireless security, but I see little point in helping my neighbors tap my internet connection. I am very disappointed in the product B000BQQL24:perhaps_you_might_be_using_home:atilla_kucuk_"cavamaster" B000BQQL24 Apple MA045G/B iPod Universal Dock: Electronics electronics 18 of 37 1.0 Perhaps you might be using home June 29, 2006 Atilla Kucuk "Cavamaster" Orlando I won't recommend to any body. You have the same way of charging thru your computer. I think is waste B00003006R:can't_install_out_of_box:r._stark B00003006R Linksys LNE100TX EtherFast 10/100 LAN Card: Electronics electronics 1 of 1 1.0 Can't install out of box October 8, 2005 R. Stark Put the card in my W2000 PC, followed instructions. Got to the part about loading the driver, the book says to go to the \drivers\WIN2000 driver on the CD included in the box- guess what, it's not on the disk included in the box. Since I use a connection that needs this stupid card to work, now I have to find another PC and down load the driver B00067TTZY:not_happy:l._dagenais B00067TTZY Creative Zen Micro 5 GB MP3 Player Black: Electronics electronics 1.0 Not happy November 24, 2006 L. Dagenais Hard to figure out and organize music... battery life not what is promised and needs to be changed often... don't recommend it. Very "Not happy B00067TTZY:disappointed:someone007_"someone007" B00067TTZY Creative Zen Micro 5 GB MP3 Player Black: Electronics electronics 1 of 1 2.0 disappointed September 3, 2006 someone007 "someone007" Boston, MA USA A year later and I wish I had the money for an ipod. I have been having the audiojack issue for a long time and don't even take my player with me anywhere anymore. What's the point of having an mp3 player you can't walk around with? Ridiculous B00067TTZY:don't_buy_anything_from_creative!!!:rio_rita_"rio_rita" B00067TTZY Creative Zen Micro 5 GB MP3 Player Black: Electronics electronics 3 of 3 1.0 DON'T BUY ANYTHING FROM CREATIVE!!! August 7, 2006 Rio Rita "Rio Rita" Oakland , CA We bought three Creative players. My husband and I have the Zen micro and my daughter the Zen 20GB. All three of ours just froze up and stopped working with one year. I didn't even use mine but maybe two hours per week. Good thing my daughter's was within her one year period by a couple of days. She still had to pay $25.00 Now my husband and I have to just junk ours and buy something else. Customer service is awful!! They won't talk to you unless you show your receipt at least three times. What a piece of garbage!! B0007L29LK:iriver:j._de_cou B0007L29LK iRiver 5 GB H10 MP3 Player Lounge Grey: Electronics electronics 0 of 2 1.0 iriver November 10, 2006 J. De Cou Alpine, WY Don't waste your money. What iRiver doesn't tell their customers is that once the battery goes dead, the system is useless. I will never buy one of their products again and I'm doing my best to inform everyone out there that they'll be tossing their money in the trash by purchasing any iRiver products. My system cost me $[...] and it is now as useless as the customer service department at iRive B0007L29LK:the_disappearing_mp3_player:jean_winkelman_"jmwinke" B0007L29LK iRiver 5 GB H10 MP3 Player Lounge Grey: Electronics electronics 1 of 2 2.0 The disappearing MP3 player July 2, 2006 Jean Winkelman "jmwinke" Pasadena, Texas USA I have a 5gb but a lot of the H10's are having the same problem. I can play all of the songs that I owned myself but everything through the subscription service has run out and can't be reinstalled. I've done a little research about the disappearing MP3 player and it appears to be a problem that is affecting a lot of the H10's and 1 other model I can't remember right now and iRiver can't figure it out; although I've been told they are trying desperately to find the bug....So buy with caution.... B0007L29LK:not_worth_the_headache:mike B0007L29LK iRiver 5 GB H10 MP3 Player Lounge Grey: Electronics electronics 3 of 3 2.0 Not worth the headache June 22, 2006 Mike USA I've had this MP3 player since it came out and, if anyone is still considering getting it, I must advise otherwise. The MP3 player itself looks and feels great, and the navigational features are very easy to use. The problem is that the player itself is extremely unreliable. I have used 3 versions of this player (expecting each time that the player was simply faulty), and all of them glitch up terribly. I constantly have to take my battery out to reset the player as it will freeze during normal play. It also freezes half of the time that I try to sync with WMP. In addition, sometimes it simply refuses to take deleted songs off of my H10's list of tracks (even though they no longer exist on the player). Finally, iRiver has terrible customer service and they do not even back their own products! As a owner of two iRivers (H10 and the 120), I have seen for a while how they function: they will offer updates for their faulty firmware for about a month, and then they leave that product to produce a new one. It seems like they have a new Mp3 player being introduced every few months. Their customer service is extremely hard to get a hold of, and if you do, they will simply say you need to send it to the factory (occasionally you will get a rep that will actually send you a brand new one for free, though). Be smart, stick to a Creative, the new Toshiba Gigabeat S, or (clench your fists) an iPod B0006G0II2:disappointing_producet:r._oshiro_"raymondo" B0006G0II2 Eton FR300 Emergency Crank Radio Metallic Silver: Electronics electronics 1.0 disappointing producet November 3, 2006 R. Oshiro "Raymondo" Hawaii Does not live up to expectations. Sound is tinny. Hard to find stations, very narrow band of reception...plan to purchase a grundig B000F5IBCO:you_get_what_you_pay_for:b._gravel_"bgrav" B000F5IBCO Mustang MT-ARM1 Cantilever/Arm Mount 13-24": Electronics electronics 4 of 5 2.0 You get what you pay for August 8, 2006 B. GRAVEL "bgrav" Cambridge, MA USA I ordered this mount for a Sharp 20 inch LCD and it's not that great. It was very easy to install, however, the arm when fully outstretched does not sit level. Thus when the TV is pulled away from the wall, the set is not level and very annoying to look at. I don't believe this is a fault in the actual part, but the design of the arm. This was relatively inexpensive for a wall mount - and you get what you pay for B00004Z6ON:poorly_made,_instructions_unclear,_may_have_damaged_my_laptop:michael_c._berch B00004Z6ON Kensington 64032 Master Lock Universal Notebook Security Cable (Black): Electronics electronics 2 of 2 1.0 Poorly made, instructions unclear, may have damaged my laptop August 19, 2006 Michael C. Berch San Francisco Area I'd recommend selecting a different security cable product, especially if you have a PowerBook or MacBook. This one is poorly made, even more poorly documented, and may have permanently damaged my PowerBook G4. (Yes, the product web site claims this model is compatible with the PB G4.) It's unclear from the cryptic instruction diagram on the back of the packaging which direction is locked and which is unlocked. (Hey, would it be so bad to actually use *words* to explain things? Even in 4 or 5 languages if you like. The diagrams make no sense.) In the process of trying to get this to work, it appears that the locking teeth chewed up the security slot of my PowerBook. It may have permanently damaged the slot. Needless to say, I will attempt to return the product for a refund. There are plenty of similar products on the market, including others avaiable through Amazon. I'd suggest trying one of those. B00005UPF6:this_is_a_bad_product,_waste_your_money_on_something_else.:adam_dluzniewski B00005UPF6 Koss EQ50 3-Band Stereo Equalizer: Electronics electronics 2 of 4 1.0 This is a bad product, waste your money on something else. January 3, 2006 Adam Dluzniewski Total garbage. No only this thing is huge, bigger than most mp3 players and it doesn't have a belt clip or anything, it sounds awful, absolutely horrible. The hiss others complained about is very loud, it also picks up all sorts of interference resulting in beeping, buzzing and all kinds of high pitched noises. Besides the hiss and the interference the sound is horrible, low dynamics and distorts easily. This is a bad product that should be taken off the market. It's not even worth the price here. Heck, even $1.99 would be a waste of money. Avoid B0009N5MDI:wireless_headphones:m._garib B0009N5MDI Logitech 980397-0403 Wireless Headphones for iPod, Gray: Electronics electronics 2.0 Wireless headphones November 18, 2006 M. Garib Newark, New Jersey USA It is a great idea, with a few qualifiers. I have found that the forward and reverse buttons don't function for my video ipod or for my niece's nano (maybe it would for a non-apple mp3 player?). I have to pair the device to the Ipod every time I turn it on. The bluetooth transponder will drain the ipod's battery even though it has it's own battery. Sound quality is decent. B0009N5MDI:a_certainty_for_breaking_into_pieces!:francis_yap B0009N5MDI Logitech 980397-0403 Wireless Headphones for iPod, Gray: Electronics electronics 0 of 1 2.0 A Certainty for Breaking into Pieces! October 3, 2006 Francis Yap It was great at first until the connector to iPod break by itself. The bluetooth signal wasn't the best, it loses signal constantly. I had to re-sync and paired it up several times over a month period. The high price iMuffs MB210 from WI-GEAR gives a better promise with the ability to stop your iPod music and take a cellphone call with noise canceling microphone. Its Bluetooth adapter fits cleaning on iPods with dock connectors, likely will not break as easily. I sure hope Logiteh will follow suit in this trend B000068BUI:bad_connectors:q._zuber_"q" B000068BUI Labtec AC10REGN 20-foot Headphone Extension Cord with Miniplug and 3.5mm Jack: Electronics electronics 14 of 17 2.0 Bad connectors December 17, 2005 Q. Zuber "Q" Colorado The sound crackles if the cord bends a bit at the connector. All around poor quality and construction. I'm thinking about returning it.. B00077IGZ2:how_can_this_not_have_a_built_in_microphone:m.d. B00077IGZ2 Logitech QuickCam Chat Web Camera (White): Electronics electronics 3 of 4 1.0 how can this not have a built in Microphone August 10, 2006 M.D. San Francisco, CA It's Logitech...it should have a built in Microphone. instead there's a small head set. don't buy this. spend a little more for a built in microphone B000F2PHDI:good_tv_but_..:m._turner B000F2PHDI Samsung HL-S6187W 61" 1080p DLP HDTV: Electronics electronics 7 of 10 1.0 Good TV but .. November 22, 2006 M. Turner ohio I have had this TV for less than 90 days and bulb has burned out, I called Samsung support and the bulb is covered by warranty. They said they would send my phone number to service center and they would contact me in no more than 72 hours. 72 hours later still no call, I again called Samsung and they said they would contact the service center again and I would be called in 24 hours, still no call. This was repeated 5 times and each time I asked to be referred to another center but was told none existed in my area. Fianlly after 6 calls, Samsung referred me to another center. I then called them and they sent up an appointment 3 days later. Day of appointment technician called and told me from the problem I described when I made the appointment I needed a new bulb (duh) and he had ordered one this morning and would call to make another appointment once they received the bulb. I specifically asked if they had the bulb in stock when I made the appointment. Why they didn't order the bulb when they first set up the appointment, I don't know. I called Samsung again and was told bulbs are usually shipped within a week of the order. Neither the words usually or week improved my impression of their support. My fear is that when the technician comes out to change the bulb he will find another part he has to order and I am back on the Samsung support merry-go-round again. Now I realize that even though the set does (did) have a good picture etc, if you can't see it, it doesn't matter. I now have a very expensive paperweight. For me Samsung support has been a black hole and I have yet to see any results after two weeks and no hope in sight for the near future. What happens after the warranty is over and I have to pay for a new bulb every three months? If this sounds like I am not very happy with the situation that is the truth. I am tired of Samsung and the service centers being sorry for the problems and delays but then telling me there is nothing they can do at this point. I agree, you solve the problem by doing the right thing the first time or the second time or third time etc I am hoping maybe the eighth time is the charm with my Samsung experience. B0007VMROE:bad_product__/_bad_company:j._hill B0007VMROE Palm Tungsten E2 Handheld: Electronics electronics 11 of 12 1.0 BAD PRODUCT / BAD COMPANY October 3, 2006 J. Hill This is the third Palm PDA I have owned. I bought the E2 directly from Palm after my previous palm died. It simply quit shortly after the warranty expired. Telephone support is poor and expensive. After research this is a common problem. My employer pays for PDA's for executives and since I approve of all of these products, I will hereafter not allow any purchase of any Palm product based on falty products, poor customer support and extremely poor customer support. B0001BXVA4:never_got_past_installation_setup-customer_service_bad:h._beachum B0001BXVA4 Netgear USB Mini Print Server (PS121): Electronics electronics 1 of 1 1.0 Never got past installation setup-customer service bad November 1, 2006 H. Beachum Atlanta, GA I am somewhat computer savvy - I understand the the IP address assigned in installation needs to match what my own router assigned for an ip address. They don't match and I can't figure out how to change it. I called Netgear 4 days ago for help and they said their "senior tech" would have to call me back. Still waiting for that call. Back to Staples it goes. The installation appeared successful, but whenever I try to print, it says "error - printer is busy" The so-called instruction manual for this is laughable. IF you're not an advance level IT person, don't try it B0001BXVA4:easy_installation,_but_stop_working_after_4_months:lansing-omaha_"ht" B0001BXVA4 Netgear USB Mini Print Server (PS121): Electronics electronics 3 of 3 2.0 easy installation, but stop working after 4 months June 21, 2006 Lansing-Omaha "ht" I bought this print server back in December 2005. I used it with my All-in-One Brother printer MFC-4800. The installation was easy. It worked great......for 4 months. Then...then... it just stoped working after 4 months. I tried to disconnect and reconnect the power, Ethernet cable etc...nothing helped. May be I just got a bad product B000BOK3AM:don't_buy_-_take_your_cash_elsewhere:s._shulman B000BOK3AM Shower Radio/Alarm Clock (WY521): Electronics electronics 7 of 7 1.0 Don't Buy - Take Your Cash Elsewhere July 18, 2006 S. SHULMAN I had the same problems as already stated. I am currently having the volume issue as well, and yes my batteries are weak (the light is on). The first unit I bought lasted two weaks and then there was no sound at all. I called Sharper Image and they agreed to send a replacement. I waited two weeks and nothing. I called again and they had no record of my previous phone call. They did send a replacement and told me it would be sent overnight if "deemed appropriate by management." It was not shipped overnight. Bottom line - this product is awful. Do not buy - I regret it! It is worth it to spend more money on a different product. This only has a 90 day warranty and it doesn't last quite that long. B00004WFZP:beware_of_used_typewriters:donna_purvis B00004WFZP Brother ML-100 Daisy Wheel Electronic Typewriter: Electronics electronics 10 of 20 1.0 Beware of used typewriters August 29, 2003 Donna Purvis Bonita Springs, FL United States I waited 10 days for this to arrive. The first time I plugged it in it ran for 2 minutes. I typed Dear and the machine typed wcm" When I tried to erase wcm" the erase mechanism did not work. I turned the machine off and when I switched it back on the carriage went to the far left and will not move, ie I cannot type or use the machine in any way. When the machine came two of the keys were knocked loose and I had to stick them back on. Now when I look at the machine I can see it is assymetrical...there is a 1/4 gap in the base, so it must have been dropped or damaged somewhere. This is not acceptable but I have no way to contact whoever Mstasad is. I have a huge project to do over the labor day weekend but I don't have a typewriter that works. I feel cheated and am very upset.. B0002F3G7M:didn't_work_for_me:jiwon_youm_"sauron82" B0002F3G7M Linksys High Gain Antenna Kit for TNC Connectors HGA7T: Electronics electronics 0 of 2 2.0 didn't work for me September 27, 2006 Jiwon Youm "sauron82" Philadelphia, PA I got 0~1 bars on my wifi detector and hoped that this would help. But it didn't get any better. You'll have to get some decent signal beforehand in order to get this antenna to make things better for you, I suppose. B00005T3EJ:usefull_information:thomas_rushing_"sunshine1012" B00005T3EJ Monster Cable MB AA 1850-4 Ultra-High Capacity Rechargeable Monster PowerCells: Electronics electronics 4 of 5 1.0 Usefull Information March 5, 2004 Thomas Rushing "sunshine1012" Washington, D.C. I bought these batteries on what was writen on their packaging. It was not true to what was said. These batteries died after only 25 minutes in my digital camera. And a set of Duracell Ultras, that are not rechargeable, lasted longer. Do not always believe what you read. Make sure you have the ability to return items. And is with this case, they went back. I went with a set of energizers. And they last much longer, with the power being the smae as these 1800mah monster brand B0009F4ORQ:worked_for_a_while,_but_not_that_great:harpoon_"harpoon" B0009F4ORQ Creative Zen Nano Plus 1 GB MP3 Player Red: Electronics electronics 3 of 4 2.0 Worked for a while, but not that great August 6, 2006 Harpoon "Harpoon" Mukilteo, WA USA I purchased the Zen Nano four months ago. It was working then total system failure. At first I thought the battery was dead, but a new battery didn't help. The screen would flash on and then off. It will not boot up. Plugging it into the computer did no good, it could not be reconized or accessed. It goes in the trash. In addition when it was working the shuffle mode would only play some of the songs stored. Also, the output volumn was to low. I would use it while riding my bike and it needs to be loud enough to hear it over the road noise, it wasn't up to the task. Now it is landfill B0001GU8MI:worked_for_1_year,_but_i_am_trying_a_logitech_now:gilberto_misawa B0001GU8MI Targus PAWM001U Wireless Optical Mouse/Pointer/Presenter: Electronics electronics 0 of 1 2.0 Worked for 1 year, but I am trying a Logitech now August 17, 2006 Gilberto Misawa S�o Paulo, Brazil I had to buy a new one, and I chose another brand (Logitech) this time. There is no On/Off button, so the batteries run out if you don't take them out (I think the buttons are pressed during transportation). Now the battery contacts are not functioning properly. And I had the same problem described in a recent review: "I'll click three or four times and nothing happens. Then, I'll click and the slides go in fast forward until the end. It's quite embarrassing to be giving a professional presentation and have this happen." B0001GU8MI:awful:e._patterson B0001GU8MI Targus PAWM001U Wireless Optical Mouse/Pointer/Presenter: Electronics electronics 5 of 7 1.0 Awful February 6, 2006 E. Patterson Do not buy. This may be the worst product I've ever bought. It has never worked properly. I've kept fresh batteries in it, but it's still no good. Within 10 feet of the laptop, I'll click three or four times and nothing happens. Then, I'll click and the slides go in fast forward until the end. It's quite embarrassing to be giving a professional presentation and have this happen. Awful product. Believe the bad reviews. It's worse than they describe. The only positive thing I can say about the product is that it doubles nicely as a cat toy. My cat loves the laser pointer B0001GU8MI:quite_possibly_the_worst_mouse_in_the_history_of_all_mice!!!!!:daniel_park B0001GU8MI Targus PAWM001U Wireless Optical Mouse/Pointer/Presenter: Electronics electronics 4 of 6 1.0 QUITE POSSIBLY THE WORST MOUSE IN THE HISTORY OF ALL MICE!!!!! February 1, 2006 Daniel Park DO NOT BUY THIS MOUSE! This mouse has given me nothing but frustration. 1. The front of the mouse where the buttons are located is extremely low, causing a muscle strain in your hand if you use it for long periods of time. 2. Battery life is horrible. Like 2 weeks... 3. When your mouse is idle for 8 minutes, it goes into an automatic sleep mode. The manual says to touch the metal lines on the side to "revive" it but when I do it simply freeze the cursor on the screen. So I have to reboot my computer. Absolutely the worst!! B0001GU8MI:worked_for_only_3_months:ross_m._rolirad B0001GU8MI Targus PAWM001U Wireless Optical Mouse/Pointer/Presenter: Electronics electronics 0 of 2 1.0 Worked for only 3 months December 9, 2005 Ross M. Rolirad Kapolei, HI USA I bought one of these. It worked OK about three months and then just quit. I do not recommend for anyone else B000BBGCJQ:was_not_able_to_record_longer_songs:guenter_weissenseel B000BBGCJQ Gemini iKey Portable USB Recording Device: Electronics electronics 1 of 1 1.0 Was not able to record longer songs November 10, 2006 Guenter Weissenseel I tried it with 3 differnt usb sticks and I could sometiems successfully record a 3 minute songs, but most of the time it failed. I tried to record with an ipod - no success and also with 2 different external usb harddrives. I'm very glad that amazon took this unit back. I would not recommend this unit. B0007WCA4K:took_it_back:david_c._martin B0007WCA4K Toshiba 27AF45 27" Flat Screen TV (Silver): Electronics electronics 4 of 6 2.0 took it back July 20, 2006 David C. Martin East Tennessee Got it home and it had poor focus. The center was ok but the sides were definitely out of focus. the next morning the focus problem was gone. Go figure. The big problem for me was the time it took to change channels. A full 3 seconds. Went back to the store and found this is a common problem with tube tvs. Well I took it back and went to Walmart and got a Sanyo HT27546 for $270. Good set with quick channel change. It also has an optical digital outputwhich the Toshiba did not. The Sanyo also has a full one year warrenty. Sound on both TVs is fine. A small point. The Toshiba can not be set up to go to closed caption when you hit Mute B00009EFRB:have_an_ibook?_don't_buy_this_lock!:karl_rahder B00009EFRB Targus PA492U DEFCON VPCL - Video Port Combination Lock: Electronics electronics 1.0 Have an iBook? Don't buy this lock! October 18, 2006 Karl Rahder Baku, Tbilisi, Chicago I posted a review two weeks ago, but it hasn't appeared, so I'm trying again...I bought this lock two years ago. It has always been difficult to remove. (Note: despite what some other reviewers seem to think, it does NOT have a motion detector - that's a different lock.) Recently, the lock decided to remain firmly inside my iBook, despite my efforts to remove it. After a fruitless call to Targus's customer support, I finally got it out. That took over 30 minutes of struggle. My next step was going to be purchasing a hack saw. Apparently, the Targus lock is not a good fit for iBooks. I'm going to send mine back and demand compensation. If you own an iBook, I strongly suggest you buy a lock made by someone other than Targus B000BBAKSA:piece_of_junk:loren_woirhaye_"malibumentor.com" B000BBAKSA Logitech QuickCam Orbit MP Webcam ( 961422-0403 ): Electronics electronics 1.0 Piece of Junk November 1, 2006 Loren Woirhaye "MalibuMentor.com" Topanga, CA United States Mine didn't work out of the box. Just my experience. I am taking this thing back to the store tomorrow. I returned another crappy webcam today to buy this, so you can imagine how irritated I am with the lame quality of these things B0001WW398:good_idea_not_so_good_product:d._l._shaughnessy B0001WW398 Griffin Technology 4020-TALK iTalk Voice Recorder for iPod: Electronics electronics 2 of 4 2.0 good idea not so good product March 17, 2006 D. L. Shaughnessy Oklahoma as far as using the ipod as a recorder I think an actual digital recorder would get better sound. The italk picks up all ambient sound. I have even used it with an external mic and still not wowed with the clarity B00079V9XG:not_suitable_for_use_in_a_moving_vehicle:cosmic_renardo B00079V9XG Garmin iQue M5 Integrated Pocket PC and GPS: Electronics electronics 2 of 5 2.0 Not suitable for use in a moving vehicle August 19, 2006 Cosmic Renardo Zurich, Switzerland It's partly my fault, of course. I bought this to use on my motorcycle. I thought the small size, especially the flat body, would fit nicely into the top of a tank bag. I also bought a special handlebar mount for it. Unfortunately, I've had nothing but trouble with it. It's slow to acquire satellites and to recalculate routes. Whether you're driving a car or a motorcycle, it's not up to the task of keeping pace with changes in your route. Maybe it was intended for pedestrians only. The user interface for the GPS is not intuitive (at least, not for me), Worse still, it freezes often when trying to download maps and when deleting stored routes. The Garmin helpline in the UK could only tell me to reset the machine each time. Not very helpful. My guess is that the combination of palm PC and GPS was too much for Garmin to handle. They should probably just stick to GPS. B00008SB1D:hate_it...:paper_pieces B00008SB1D Belkin TuneCast Mobile FM Transmitter: Electronics electronics 2 of 2 1.0 Hate it... November 12, 2006 Paper Pieces I use it for my Zen MicroPhoto and it does not work at all. It has the lowest battery life, used it for twenty mintues and it started to get worse and worse. There is no possible way of getting rid of the static unless you are the MP3 player below the transmitter, which is obviously dangerous while driving. You can only tune it to four stations which are 88.1, 88.3, 88.5 and 88.7 which is absolutely pointless approach to an FM transmitter. I seriously regret every buying this transmitter B00008SB1D:it'll_do_in_a_pinch:bsxx B00008SB1D Belkin TuneCast Mobile FM Transmitter: Electronics electronics 2.0 It'll do in a pinch September 20, 2006 BSXX It'll do in a pinch....but I hope there are better options. At times the sound is clear, however, most of the time the static is either 1) just annoying or 2) the static is so loud and piercing that you have to turn it off. I hope there are units that broadcast a stronger signal, or have another way to connect, in order to provide a constant tolerable sound quality. I would recommend spending some more money to get a reliable device. B0006A7X36:out_of_the_box_and_didnt_connect_to_the_internet:s._gale B0006A7X36 Belkin F5D8230-4 Wireless 802.11x Pre-N Router: Electronics electronics 1.0 out of the box and didnt connect to the internet November 10, 2006 S. Gale Germany I've spent over two hours tweaking this, and over an hour on the phone with customer support. The thing still wont connect to the internet. Don't get me wrong, the lights light up and my laptop can connect to the ROUTER, but the router wont connect to the internet. Belkin tech support told me to send it back. I will and I think I will try the Dlink Pre N. B000EXS1BS:disappointed:tim_tapio B000EXS1BS Garmin Nuvi 360 Pocket Vehicle GPS Navigator and Personal Travel Assistant: Electronics electronics 15 of 21 2.0 Disappointed November 15, 2006 Tim Tapio Raeford, North Carolina United States Thinks my street is 50 feet before it actually is, therefore recalculates before the turn. If I go a different route, it continually tries to get me to make a "U" turn. Instead of shortest or fastest route, it may pick one that is very roundabout (you should see how it wants me to drive home from work). Maps need to be updated more often. Street Atlas or Streets and Maps do a better job of being updated...I'd use them except I don't want to tie up a PC just to drive across town. It might work well for cross country, for me, it's an expensive toy that I have yet to develop trust in. B0006A2SNG:second_one_just_quit_working:keith_white_"visit_http://www.keithwhite.us" B0006A2SNG First Alert MotionSense PIR720R Light Control: Electronics electronics 1 of 1 2.0 Second one just quit working August 31, 2006 Keith White "Visit http://www.keithwhite.us" Lincoln, Ne This thing works well until a bulb blows out. When I replace the bulb, it will not turn off after 4 minutes and I end up having to replace it B0002CZPPG:dont_buy_this_here_!!!!!!!!:e._apostolo_"ed" B0002CZPPG iTunes $15 Prepaid Card: Electronics electronics 16 of 17 1.0 Dont buy this here !!!!!!!! May 20, 2006 E. Apostolo "Ed" Miami, Florida United States I knew I had to pay shipping for this cards ($5) so I decided to buy 4 at once, what was my surprise that at checkout they wanted to charge me five dollars shipping for each card eventhough they were going to be ship together I decided not to buy them anymore. They lie telling you that you are saving a huge 1% but at the end you pay almost 20 dollars for each card that is more or less 35% more than anywhere else. Its a shame that they try to rip you off that way. BUY THEM AT THE APPLE STORE ON LINE, NO SHIPPING FEE !!!!!!!! YOU PAY ONLY FACE VALUE NOT A CENT MOR B0002CZPPG:why_oh_why???:robert_evans B0002CZPPG iTunes $15 Prepaid Card: Electronics electronics 5 of 17 1.0 WHY OH WHY??? December 20, 2005 Robert Evans Santa Monica, CA USA Why does a 15.00 gift card cost 24.00? I was going to get one but first someone explain this to me? Is the card itself made out of gold? Whaz up wit dat B00069ECVI:wonderful_drive,_if_it_only_lasted:gradstudent_"john" B00069ECVI Seagate 5.0 GB Pocket External Hard Drive ST650211U-RK: Electronics electronics 5 of 6 2.0 Wonderful drive, if it only lasted April 2, 2006 GradStudent "John" Ohio I loved my little Seagate 5.0GB drive, even after the first one crashed and burned. But the second time, I cannot forgive. I carried it everywhere in my pocket, and maybe that was part of the problem, but if it can't handle that then it is no good to me. Solid state memory, here I come B000ETTFRG:this_product_stinks:chris B000ETTFRG SanDisk SDMX4-6144 Sansa e270 6 GB MP3 Player with SD Expansion Slot: Electronics electronics 11 of 30 1.0 This product stinks November 21, 2006 Chris I dislike ipods so i figure I try something else and hope for the best..Unfortunately I was wrong Itunes and Ipods are definitely much better.. Basically this device is a cheap piece of crap and it seems like Sandisk's approach is WYSIWYG..disappointing PROS: - long battery life - email tech support is quick and good but website support sucks bad CONS: - it's easy to setup but instruction manual is useless - buttons are rigid and miniature and difficult to press with a skin on - wheel is very stiff and offers very little functionality - software is buggy and terrible - freezes occasionally - navigating through menus stutters and lags - boot time is 10 seconds - video mode has no options - needs serious firmware updates - time is listed only in settings menu = useless - tons of issues with playlists getting erased or not working properly - every firmware update erases all your settings, including radio presets and the list of issues goes on and on... anyone who has reviewed this product positively obviously didnt do a thorough job because these issues exist and its definitely irritating I am extremely disappointed and will never buy a sandisk player ever again My suggestion is to try it out thorougly before buying..so you dont make the same mistake I did and trust other people's lopsided reviews.. B0007YG8JQ:rma_issued:bryan_"pyle112" B0007YG8JQ Anycom Bluetooth Mouse & USB Adapter Bundle: Electronics electronics 2.0 RMA issued March 23, 2006 Bryan "pyle112" New York, NY United States The mouse worked well with my chipset, but beaware that earlier bluetooth chipsets do not have the power to work with this mouse, although the dongle that is bundled with this is excellent. The mouse was very difficult to use and unresponsive at times, requiring multiple clicks to choose items. It was sluggish across the screen and very insensitive, even after maxing out all the mouse settings in either direction. Looking through the forums at Anycom informed me that many people had a similar problem and RMA's were being issued. Considering that these problems arose earlier last year, I was upset that I was sold a defective product. I just send my mouse back to Newport, California for a replacement. The features are solid, the size is acceptable but prone to cramping at first. For a travel mouse it is exceptional, being rechargeable via USB. Usuage with the USB cable attatched is OK but somewhat awkward as the cable comes from the "head" of the mouse, not the "tail." Would I buy again? only if I didn't find another product that was rechargeable, bluetooth and optical. B00005B60E:disappointing:elg476 B00005B60E Polycom Soundpoint Pro SE-220 2-Line Conference Phone with Caller ID: Electronics electronics 0 of 1 1.0 disappointing August 23, 2005 elg476 Raleigh, NC, USA I bought this phone for a work-at-home situation. I then discovered that the maximum number of characters I could enter into a speed dial entry (the number itself, not the name) is 24 characters. A telephone calling card number is 25 characters long, 26 if you program a pause (a space, for this phone) between the phone number and the card id/pin. When I called Polycom about it, I was told that not everyone uses calling cards. Funny. I've been issued a calling card at every company for which I've worked (going back 25 years). This is the only phone I've ever owned (well, since the 80's) into which I could not program my calling cards. Pretty basic stuff for product marketing and development people to miss. On top of that, when I try and enter the calling card number and card id by hand, it never "takes" on the first try: the network doesn't recognize the card id and pin the first time I enter them. I have to do it twice (I've tried this a number of times, and it's consistent). For that matter, the sound quality, especially through the headset (also purchased from polycom) is not that good. Of course, that could be because the headset jack is "loose." You can easily move the jack from side to side, which makes the sound quality even worse. I regret having made this purchase. I'm going to scrap it and look for a new one from a different manufacturer. The only reason I gave it one star is because the site interface here won't let me give it no stars B0000AAAPF:wow,_i_should've_done_research.:j._malone B0000AAAPF Griffin White iTrip FM Transmitter for iPod: Electronics electronics 1.0 Wow, I should've done research. October 18, 2006 J. malone Arcata, CA This thing sucks. I wasted my money. No more Griffin products for me B0000AAAPF:fm_transmitter:crystal_k._tran_"crystal_k_tran" B0000AAAPF Griffin White iTrip FM Transmitter for iPod: Electronics electronics 1 of 3 1.0 fm transmitter July 24, 2006 Crystal K. Tran "Crystal K Tran" San Diego, CA USA The transmitter doesn't work. I tried everything I could think of to try and make it work but it doesnt B0000AAAPF:misleading_product_description:kimberly B0000AAAPF Griffin White iTrip FM Transmitter for iPod: Electronics electronics 4 of 4 1.0 misleading product description July 19, 2006 Kimberly Salt Lake City, UT USA This item said that it is compatible with all ipods but it is not. It is only compatible with the "old" ipods. Evidently there is a difference in some of the more recent ipods and this itrip doesn't work with them. We had to return the product B0009B0JWE:simply_unacceptable!:the_office_guy B0009B0JWE Altec Lansing 2-PIECE Music & Gaming Speakers Black Stero Satellite Speakers: Electronics electronics 0 of 1 1.0 Simply unacceptable! June 11, 2005 The Office Guy Fort Lauderdale, Florida, USA I just got these at a local store and they just really blow!!! I was swayed by the brand name and the great price (although higher than Amazon). It's true when they say you get what you pay for... rock-bottom price = rock-bottom performance. Terrible to say the least. Mine are going back right now. B0001LQG9C:warning_check_battery_and_bad_customer_service:4girls B0001LQG9C VTech ip5850 5.8 GHz DSS Cordless Phone with Dual Handsets and Digital Answering System: Electronics electronics 6 of 6 2.0 Warning check battery and bad customer service April 20, 2006 4girls MD Mine worked great for the first few months, then I started getting the "warning, check battery". If you take the batteries out and reinsert, it works for a few hours but then the same warning message comes up. It happened on both headsets. I called customer service and they told me this is the first time they've ever heard that (uh huh - doesn't sound like it from the reviews here). A little too expensive to replace yearly.. B0007T27D2:nice_feel,_but_terrible_tracking--huge_lag_time:frequent_amazon_shopper B0007T27D2 Kensington 72414 PilotMouse Bluetooth Mini Mouse (PC/Mac): Electronics electronics 2.0 Nice feel, but terrible tracking--huge lag time October 28, 2006 Frequent Amazon Shopper New Hampshire I've had this mouse for about a month...use it with my Mac G4 at home...and I'm exhausted. It feels very nice in the hand and I really like the scrolling ball feature (hence the 2 stars), but it's just not predictable. Sometimes it glides along smoothly, most other times it tracks across the monitor like you're mousing over pebbles. I've tried a number of different surfaces: desktop (light woodgrain); smooth, medium gray fabric mouse pad; mouse pad made specifically for optical mice (better than the other two) and I have even tried picking the thing up and shaking it to knock it into submission--to no avail. It still lags and I have a hard time honing in on an object to select it (or to check a box or pick up a puzzle piece in a jigsaw puzzle...) I use Photoshop and other mousing intensive apps all day at work and at home and I need a mouse that is precise (for silhouetting, etc.). This just isn't it. You shouldn't have to think about mousing when you're doing it, it should just happen--immediately and smoothly, corded or cordless. And a "newer" technology should work better that a gummed up "old" tracking ball mouse! Maybe it doesn't like my older Mac. Maybe it's the bluetooth adapter. Whatever it is, it's not working... I'll be trying the Logitech MX1000 next. It has a recharging base and is Laser (instead of optical). I'm hoping the higher price will translate into better performance B0007T27D2:the_mouse_with_parkinson's_disease:r._t._gillfillan B0007T27D2 Kensington 72414 PilotMouse Bluetooth Mini Mouse (PC/Mac): Electronics electronics 1.0 The mouse with Parkinson's disease September 19, 2006 R. T. Gillfillan san francisco ca For my PowerBook - my first bluetooth mouse (a macally bt) worked for about nine months and then a bad battery caused major leakage all over my desk. So for the replacement I read the reviews and went with the Kensington bluetooth mini - primarily for the on/off functionality. I like the size and shape, the on/off switch and the scroll works just keen. However, tracking is a nightmare - especially when CPU usage is high (applications like Photoshop, Acrobat or using a VPN to access my work files). I tried troubleshooting, adjusting the track rate, but nope. The cursor continues to stutter across the screen with this mouse. I think I'm going to throw in the towel and go back to wired B0007T27D2:just_ok:robert_ford B0007T27D2 Kensington 72414 PilotMouse Bluetooth Mini Mouse (PC/Mac): Electronics electronics 3 of 3 2.0 Just OK May 1, 2006 Robert Ford Capitola, CA One of the reasons I chose this mouse, was because Apple recommended it as one that would offer true smooth scrolling. It turns out that this mouse has the same click scroll as many others. It jerks one line at a time ... the clicking is quite loud I might add. Also, I have to set the tracking speed very low because the cursor jerks all over the screen if I don't. Sometimes just clicking on System Preferences corrects the problem, but if I had it to do over, I'd buy something else B00065ANYW:mine_died_too....:robin_d._cook B00065ANYW SanDisk ULTRA II HIGH PERFORMANCE 4GB (SDCFH-4096-901, Retail Package): Electronics electronics 7 of 8 1.0 Mine died too.... July 18, 2006 Robin D. Cook Arlington, VA USA I bought this in April for my new Canon 30D and it worked great until several months ago. When I would go back to scroll through the recently taken pictures on my camera it would start saying "Data Corrupted". It started out slowly then it would lose every third picture. I tried to reformat the card and got an error message. Now my camera does not recognize it nor does the camera software on my computer. It was a wonderful card while it lasted but I too am hesitate to get another one. Hopefully mine was a lemon too.....but then again B00065ANYW:died_after_4_months:k._bauman B00065ANYW SanDisk ULTRA II HIGH PERFORMANCE 4GB (SDCFH-4096-901, Retail Package): Electronics electronics 7 of 7 1.0 Died after 4 months July 11, 2006 K. Bauman Michigan, USA This seemed like a great card at a great price. Unfortunately after 4 months, during the middle of a paid shoot, all of the images instantly dissappeared. I stopped using the card, put it aside until I got home. I tried to use software to recover the images. Only a few could be recovered, the rest were gone. I've not been able to re-format the card in either a canon eos 5d, digital rebel, or using software on my computer. The card is now completely un-usable. All of my older cards continue to work just fine. Hopefully this is just a lemon, although I need to replace it, and am obviously apprehensive about purchasing another one from Sandisk B0000Y7WBQ:poor_setup,_terrible_support,_good_range:j._macfarlane B0000Y7WBQ Netgear WG302 ProSafe 802.11g Wireless Access Point: Electronics electronics 11 of 11 1.0 Poor setup, terrible support, good range February 19, 2005 J. Macfarlane California I purchased 3 of these APs with the expectation to replace 3 Cisco "b" APs and drop in. The setup used Radius for authentication which is claimed to be supported in both the online info and docs. After config (the web UI constantly has problems with cookies and forced you to re-login) the system would work. One quark was the IP address field for the radius server wouldn't accept more than one character in the forms. Up and running. However, upon reboot, the WG302 loses it Radius info and then cannot authenticate a client again. SHOWSTOPPER. After logging this with Netgear support - their response is this is an unsupported config and requires premium support. While this would be fine if it was a config issue, it's not ok given they claim support for these features and this was a required feature for purchase. They give no further support now. I would HIGHLY recommend against the extra cost of this unit given it's buggy and has poor support. Config is difficult (I had to learn how to use the command line config), the upgrades are not well documented (they imply you have to import some obscure file with tftp - you don't but...), however the unit does have good range and works (No RADIUS of course) in a basic config. B0001V3IB6:disappointing:hester_d'souza B0001V3IB6 Plantronics TELEPHONE HEADSET SYSTEM ( S11 ): Electronics electronics 5 of 5 2.0 Disappointing January 26, 2006 Hester D'Souza Vancouver, BC, Canada First - a disclaimer: I know very little about telephone headsets, but decided to buy one because I had a series of long telephone meetings coming up. I walked to my local Staples store, expecting to find a variety of prices and products - and thinking that I'd pay perhaps $30 to $50 at the low end of the market. At the store, I found that only the computer-based headsets were that cheap - and the only model that worked on a real, old-fashioned land line was the Plantronics S11 on display (it was priced at $130 Canadian). Since work was paying for it, I didn't mind spending the extra money, but expected that, at that price, the quality and ease of use would be quite high. When I brough it back to the office and installed it, I found that: - The regular handset and the headset cannot be plugged in at the same time. That means that every time I want to use the headset, I need to fumble around at the back of the unit to switch wires. - The volume of both ingoing and outgoing conversation is very low - even when I turn up the volume controls to max. The people I spoke with complained enough that I switched back to my regular handset. - The microphone, although it's somewhat adjustable, is short and inflexible enough that I can't get it very close enough to my mouth. When I try to move it closer, the earpiece turns and slips off my ear. - The headset itself - that is, the plastic, adjustable arch and rubber pad opposite the speaker - is very awkward and prone to slipping off my head. It might have been better to design it like a regular two-sided earphone unit - so that it would be more balanced and stay secure. I don't know whether these comments apply only to the S11 or to most headsets for traditional phones in general. Overall, however, if I'd been buying the S11 with my own money, I would likely have returned it and just gone back to using the regular phone handset B000A6X9H0:frustration_doesn't_cover_it!:marilyn_patten B000A6X9H0 HP Scanjet 4850 Photo Scanner (L1950A#B1H): Electronics electronics 4 of 5 1.0 Frustration doesn't cover it! September 15, 2006 Marilyn Patten Nashua, NH United States Since I first wrote this review I discovered that the fault was not with the scanner but with my computer. After formatting my computer I was able to install the scanner and software without any problems. I am still learning to use it but so far I have decided not to return it. It works well and I like it very much. I apologize if my review has negatively effected anyone's choice B000A6X9H0:multiple_failures:michael_j._dietz B000A6X9H0 HP Scanjet 4850 Photo Scanner (L1950A#B1H): Electronics electronics 14 of 15 2.0 Multiple failures March 15, 2006 Michael J. Dietz Torreon, NM United States I have approximately 10,000 slides to scan. I purchased the 4850 and after about 3,000 slides began to get three to four dark blue lines across the image. After reporting it to HP they sent me a replacement TMA. The new TMA worked fine for the first 450 slides and then BINGO, I now am getting two dark blue lines again. I think the machine is not engineered to handle the work load I have. B00002MZ8M:poor_quality!:russ_baehr B00002MZ8M First Act Discovery FG130 Student Acoustic Guitar: Electronics electronics 2 of 2 1.0 Poor Quality! March 14, 2006 Russ Baehr Seattle, WA USA My daughter really didn't use it that much but within about 5 weeks it started to fall apart. The wood veneer on the base pulled up and splintered from tightening the strings to tune it. A low price for a guitar but I don't think it's even worth this price. B0008JFJRM:bad_static,_poor_reception!!:faithful_shopper_"jzk" B0008JFJRM Motorola MD7091 5.8GHz Digital 2-line Phone: Electronics electronics 1.0 Bad Static, Poor Reception!! November 12, 2006 Faithful Shopper "JZK" Ct These phones had so much static, you could not hear!!! We ended up having to return the phones and find something that we could actually use! B0008JFJRM:fatal_design_flaw:tideguy B0008JFJRM Motorola MD7091 5.8GHz Digital 2-line Phone: Electronics electronics 4 of 5 1.0 fatal design flaw August 9, 2006 tideguy I bought this because it seemed like it would satisfy my need for a 2-line phone with answering capability. Turns out, I cannot keep it, due to one boneheaded design flaw that makes it unusable for me. The good: it's nice looking, compact, has good sound, and has a selection of cute little ringtones. The bad: This machine WILL NOT RECORD INCOMING MESSAGES SILENTLY. It broadcasts both the OGM and the ICM being left by the caller through the speaker. There is no way I know of to defeat this. You can turn the volume down from loud to medium loud, but you cannot set the machine to record messages silently, in the background. Do you think you might ever not want other people in the room to hear the messages being left on your recorder? Would you ever want to sleep without being disturbed by the sound of incoming messages? Then this one isn't for you. Mine is for sale. B0008JFJRM:motorola_lost_a_loyal_customer:sven B0008JFJRM Motorola MD7091 5.8GHz Digital 2-line Phone: Electronics electronics 8 of 10 1.0 Motorola lost a loyal customer May 4, 2006 Sven USA My very first cell phone was Motorola, and it served me great, so I became attached to the brand based on that experience ,and for that reason alone bought Motorola SD4591 Digital Corded/Cordless System. As we've put the wireless network in house the cordless phone started playing tricks. The battery life got very short very soon too. I was told I need to get different batteries NiH instead of NiCD. Naturally the microwave was playing the tricks on cordless too. As we have two lines in house and was told by several people to move to 5.8Hz 2 line phone I decided to get Motorola MD7091 5.8GHz Digital 2-line Phone and remained loyal to Motorola. And boy was I wrong again. What others are saying about caller ID not showing as soon as I have another phone on the same line besides Motorola MD 7091 is true in my case too. I don't get it does Motorola expect us to switch phones to their system now around the house if we want to used one of their phones??? This is really cheap trick Naturally, I could blame all this on poor quality of NiCD batteries, Wireless Network, Microwaves and phone company, and other brands' phones connected to my line. But what is the common thread through the entire ordeal: MOTOROLA. I will give other brands a try now, not yet sure which ones B0008JFJRM:don't_get_the_cordless_sets!!:d._clarke B0008JFJRM Motorola MD7091 5.8GHz Digital 2-line Phone: Electronics electronics 11 of 13 1.0 don't get the cordless sets!! March 30, 2006 D. Clarke Now, imagine my astonishment. After receiving this beautifully designed futuristic looking set from my favorite communication device manufacturers, I set it up only to realize that the cordless phone only works when there is a direct line of site to the base! Unbelievable!! I live in a compact apartment ok, and believe me when I say it isn't 20 feet between the base and my bed room, and last night after setting up, I retreated to my room took up the cordless handset to make a call only to realize that there was no connection to the base. This phone in a nutshell, looks good, but it sucks!! B0000ACKR5:good_looking,_clumsy_to_use:k._hackmann B0000ACKR5 Belkin Leather Flip Case For iPaq PDAs: Electronics electronics 2 of 2 2.0 Good looking, clumsy to use May 5, 2005 K. Hackmann Missouri, USA I had high hopes for this case when I bought it, but it just hasn't worked out. The leather has a nice feel, and my iPAQ fit snugly in it's slot. However the stylus on my iPAQ h2215 was impossible to get to without partially removing the iPAQ from it's case. This became so frustrating that I eventually discontinued using this case. It does have three slots for credit cards, and a larger slot that you could tuck a few folded dollar bills or business cards in. Maybe a different model of iPAQ would work better, but it hasn't been a good fit for me B00006L4XU:useless_-_does_not_retract:james_murphy B00006L4XU Targus PA215U Retractable Flat FireWire Cable: Electronics electronics 4 of 4 1.0 Useless - does not retract April 6, 2004 James Murphy Pelham, MA USA I agree with the previous review. This phone cord worked twice. Now, it only retracts about half way, and keeps getting worse. I'm returning it for a refund. Don't waste your time with this B00006L4XU:do_not_wast_your_time_with_this_product...period:alan B00006L4XU Targus PA215U Retractable Flat FireWire Cable: Electronics electronics 4 of 5 1.0 DO NOT Wast your time with this product...period August 8, 2003 Alan Carol Stream, IL USA I am on my second one and I will be returning this one also. Both of them worked once and then would not retract fully after that. I was so mad I almost threw it against the wall. I thought the first one was a defect, but then when I got the second one I realized it was a design flaw... If you buy the Targus one keep your receipt because I guarantee you will be returning it. What I don't get is how Targus has the guts to release this product and also put on it: Satisfaction Guaranteed. What a joke.. B000A3WS16:stupidity_at_its_best:n._caraccio B000A3WS16 Apple 30 GB iPod video White�(5th Generation): Electronics electronics 1 of 5 1.0 stupidity at its best November 24, 2006 N. Caraccio Rutherford, NJ ipods are the leading sellers of portable players and everybody knows that but guess what ipod does not support the leading and best quality video format divx and avi hmm thats kinda retarded no? if any of you out there use file sharing programs such as limewire or any torrent programs if u download any of those videos the best ones and the majority are divx and avi too bad for you unless ur willing to sit around for an hour or two and convert your video to mpeg4. Also the video you convert may have a few complications, the audio and video may not be sychronized...at all and for those of you who have already purchased this piece of garbage im sorry and i have great sympathy for you so if ud like a program that will convert ur video for free and results in pretty good quality go to download.com and search for jodix video converter. This is not from speculations I have experienced this all myself with my own purchase of the video ipod and was a decision i regreted. Suggestion check out the creative zen vision M sure it may be thicker but the price is amazing for its features and conveniences of transfering files into it B000A3WS16:love_it.._hate_it:a._pereyra B000A3WS16 Apple 30 GB iPod video White�(5th Generation): Electronics electronics 2 of 6 1.0 love it.. hate it November 13, 2006 A. Pereyra Miami, FL United States I bought with lots of ilussion this this Ipod, i put all my music in it and use it!! after a 5 months it stop working, it didn't charge the battery. I took it to best buy where I bought it and they told me that it has "external damage" and didn' repair it. I send it to Apple service and return it without services because the same reason. My Ipod didn't have that damage, it has only a few scratches on the screen. After lots of calls and fight they told me that to fix it I would have to pay US$250.00 that is almost what it cost new. TERRIBLE SERVICE FROM APPLE.. SHORT LIVE.. DON'T RECOMMENDED. Now I'm looking for another option for MP3 player to buy. If you know one please let me know it. B0001F22PA:avoid_if_you_live_in_or_near_a_major_city:pats_fan_bob B0001F22PA Belkin F8V3080 TuneCast II Mobile FM Transmitter: Electronics electronics 2.0 avoid if you live in or near a major city November 21, 2006 Pats Fan Bob Boston, MA Like other fm transmitters I have tried, this one leaves much to be desired. Living in a major urban area, I was unable to find any fm channel that did not produce significant static and generally poor sound quality. Product is easy to use, but I consider the sound quality unacceptable. B0007TIYCU:great_until_it_broke,_no_response_from_uniden:e._smith B0007TIYCU Uniden CLX465 5.8 GHz DSS Expandable Cordless Phone with Color LCD Handset and Dual Keypads (Silver): Electronics electronics 4 of 5 1.0 Great until it broke, no response from Uniden January 29, 2006 E. Smith Bermuda The phone worked for a month or two, and then the handset stopped seeing the base. When I followed the instructions in the manual to fix this (re-register the handset to the base), neither could see each other. The base still gets the land-line signal and works with speakerphone, but that is useless to me since I need the handset. When I contacted Uniden through their email support, I got no response. I will be buying another phone that is not a Uniden B000BI2180:the_vendor_delivered_a_defective_unit.:w._h._frohlich_"musical" B000BI2180 Palm Z22 Handheld: Electronics electronics 0 of 2 1.0 The vendor delivered a defective unit. November 22, 2006 W. H. Frohlich "Musical" Oakland, CA I'm pissed. I feel I've been ripped off. The 3rd party vendor delivered a defective unit. I want to return it. I have been unable to determine how to return this unit for a refund. I may never buy through Amazon again B000BMXJTG:did_not_work_in_sony_psp:gadget_dad B000BMXJTG Lexar 1 GB Memory Stick Duo Pro ( MSDP1GB331 ): Electronics electronics 3 of 8 1.0 Did Not Work in Sony PSP January 7, 2006 Gadget Dad California This product did not reliabley work in a new Sony PSP running the current Sony software. Don't know if the design is flawed or the unit I received was defective B0000TNWU6:be_careful:r._perry B0000TNWU6 Belkin F8E462 Voice Recorder for iPod: Electronics electronics 4 of 9 1.0 be careful January 19, 2005 R. Perry Asia Got it and plugged it into my IPod and there was a major incompatibility. The screen showed up that their was a voice recorder in the IPod but when I went to record I received an error message that the IPod could not locate a microphone. Perhaps an IPod problem? The Ipod is a 4th Generation 40 gig that is fully updated. I think Belkin needs to engineer the recorders to work with all the new IPods, with the exception of the minis. Have not been able to resolve the issue. I am sure IPod will state that it is a Belkin problem and that Belkin will throw the ball back to IPod???? B0007WTHLO:lack_of_bass,_too_much_treble.:will B0007WTHLO Etymotic Research ER6iC Isolator Earphones (White): Electronics electronics 1 of 1 2.0 Lack of bass, too much treble. November 1, 2006 Will Texas, USA I just received my pair today, and I have to say, I'm extremely dissapointed. Yes, they are comfortable, but the bass is almost absent, no matter how far you jam them into your ears, the bass isn't nearly what it were hyped to be, it definently isn't enough for the amount of mid & hi's they produce. Unless you like your bass to a minimum and treble to a max, I'd recommend another pair of earphones. If you're just looking for comfort and you don't like hardly any bass, these are your headphones. But, as others said, you can find much better earphones for a much lower price B000B9TV8W:fleecing_loyal_apple_buyers:nicholas_r._thompson_"beernose" B000B9TV8W Apple MA183G/A Armband Blue for iPod Nano 1st Generation: Electronics electronics 2 of 3 2.0 fleecing loyal apple buyers October 7, 2006 Nicholas R. Thompson "Beernose" Chicago, IL The first thing I did when opening this item was check to make sure it actually WAS an Apple product. Its REALLY cheap looking. Looks like something you'd find for [...] at a flea market or in the "stocking stuffers" section of the dollar store at Christmas time. The Nano is small so almost anything will hold it, including a rubber band and an envelope which is about as good as this unit. This looks more like the freebie armband that should come free with the unit. Certainly not a [...] accessory. It just cheapens the Apple image. If OEM Apple products are your thing, then go ahead and try this. But if you're looking for something as sweet as your nano that stays put while you workout, look for something else. I'm returning mine this weekend to spend my money elsewhere. B000BQQW9G:don't_consider_this_product:a._charity B000BQQW9G Apple MA125G/A iPod Universal Dock Adapter 3-Pack for 30 GB iPod with Video: Electronics electronics 1 of 4 1.0 Don't consider this product August 17, 2006 A. Charity Northwest, WA USA 3 more of the useless flimsy holders you get in the IPod box! B000AY5ZIS:extremely_poor_software_package_that_makes_it_very_disappointing:sami_ben_grine B000AY5ZIS Logitech Cordless Desktop MX 5000 Laser (967558-0403): Electronics electronics 5 of 5 1.0 Extremely poor software package that makes it very disappointing October 22, 2006 Sami Ben Grine Walnut Creek, CA USA I had a very poor experience with the Microsoft Media Center infrared keyboard and I wanted to replace it with a bluetooth solution that would - I thought - get rid of all connection problems. I was wrong. The hardware is very nice but the software keeps on dropping connections. AS usual, I was very careful: I always read manuals and properly install the software before using any product - I don't want to fail the installation for a very simple reason: the package doesn't come cheap... I am a software developer - I have half a dozen computers at home - and I did everything as instructed. I found the software to be very average in terms of usability (why do they try to do all these fancy effects??), but that's not very important when it works fine. Unfortunately, after just a couple of days, the keyboard stopped working. I finally managed to get it back by removing the batteries and rebooting the computer (both step were required - the on/off switch didn't work - same thing for the connect button which is totally ineffective). Now, the mouse keeps on dropping connections. After a couple of hours of inactivity, the mouse simply stops responding. This is simply unacceptable. Logitech knows that this product doesn't work and keeps on charging customers for something that is simply not usable because it wasn't tested properly. It is a very frustrating experience because the hardware is great. Don't buy this product, you could be very disappointed. Note that I have seen another installation done by professional Windows system administrators that had the exact same problems. Now don't get me wrong: the hardware is very nice. I would highly recommend the Logitech VX Revolution Cordless Laser Mouse for Notebooks which is great and had none of the issues I have mentioned there B000AY5ZIS:severe_connection_issues:daniel_laughland B000AY5ZIS Logitech Cordless Desktop MX 5000 Laser (967558-0403): Electronics electronics 4 of 4 2.0 Severe Connection Issues October 19, 2006 Daniel Laughland Waukesha, WI This hardware is well-made and I have heard very good things about the non-bluetooth version of the mouse. When it's connected and working, it does its job very well. Unfortuntately the MX5000 set suffers from some very poorly made software that makes it very difficult to use effectively. At seemingly random intervals, the mouse will start lagging or stop altogether. If this happens during gameplay, you're in a bad way. The keyboard also suffers from a truly annoying bug. When it comes off of its sleep state, it will double the first key you press. I have also had the keyboard just reset out of the blue. Add in that the SetPoint software for the LCD screen only fully works with two pieces of software (MusicMatch and Windows Messenger), and you have a very disappointing desktop package. The MX1000 is a great mouse on its own, but stay away from this Bluetooth combo. It is unstable and very frustrating to use B00064L17Q:hardware_is_fine_-_software_is_worst_i_have_ever_dealt_with:duce B00064L17Q Belkin F8T003 Bluetooth USB Adapter - 10 Meters: Electronics electronics 1.0 Hardware is fine - Software is worst i have ever dealt with November 17, 2006 Duce The unit works fine as a Bluetooth Radio. The software and drivers!!!! do not install properly at all!!! I am a network administrator & pretty savvy about PCs - i could not come up with any scenario to get the software to work!!! Save your money and just buy the unit - forget the software B00064L17Q:waste_of_time_waste_of_money:donald_l._mader B00064L17Q Belkin F8T003 Bluetooth USB Adapter - 10 Meters: Electronics electronics 0 of 5 1.0 WASTE OF TIME WASTE OF MONEY June 12, 2006 Donald L. Mader Los Angeles, Ca United States DOES NOT WORK AT ALL DONT THROW AWAY YOUR MONEY SHOULD READ 0 STAR B00007MHMN:vonage_is_a_sinking_ship:ben_franklin B00007MHMN Vonage DigitalVoice Service: Electronics electronics 1 of 1 1.0 Vonage is a sinking ship October 3, 2006 Ben Franklin Minneapolis I had Vonage since April, 2006. I finally switched back to Qwest after unending problems and hours and hours on the phone (my cell phone, as my Vonage line didn't work) with tech support. Here is my experience: 1) It took about 2 months and about 2 hours on the phone for them to switch my existing phone # over to Vonage. Don't be too excited about getting the first month free- if your moving an existing number it will take about that long to get it switched over. 2) After my number was finally switched over, outgoing calls were constantly being dropped after about 20-30 seconds. Incoming calls would also be dropped occasionally after about a minute. This resulted in having to call the person back, saying "sorry the call was dropped- we switched to this cheaper phone service and have been having problems...." This is with the highest speed cable internet service available (8mbps download, 600kbps upload) and a wireless 'g' system which has provided top notch internet service consistently while I had Vonage problems. I spent no less than 4 - 5 calls and over 5 hours on the phone with tech support trying to fix the problem. After talking with tech support, sometimes the problem would be fixed temporarily- while I was on the phone with them- but return shortly thereafter. 3) As a result of the problems I had, I asked to be credited for the months in which my phone service was not working. Be warned, they are very hard-nosed about providing any credits for poor or no service. I spoke to a tech support person about getting a credit for a month of no service, and he told me to wait until the problem had been fixed so they could determine how much credit should be given. After the problem had been fixed (temporarily), I called back and they told me they could only provide credit for the current month, not previous months of no or poor service. THEY ARE NOT CUSTOMER FRIENDLY ABOUT PROVIDING REFUNDS FOR POOR OR NO SERVICE. 4) Finally, in September, still with dropped calls from Vonage, I switched back to Qwest to get reliable phone service. I found customer service there has improved and is much better than Vonage. And they gave me 3 months free promotion for coming back. In the end, I am happy to pay the extra $10/month (after the first 3 months free) to get phone service that works. I notice that $5 of the extra cost is for fees, etc. that the phone company has to charge but Vonage does not, which is unfortunate. In any case, I guess you get what you pay for. One last thing: Vonage has never made a profit and many business analysts say with their current business plan, they never will. This means eventually they will either go out of business, or have to raise rates. Save yourself the problems I had- pay the extra $ to get phone service that works B00007MHMN:stay_away_from_vonage:crispy B00007MHMN Vonage DigitalVoice Service: Electronics electronics 2 of 2 1.0 Stay Away from Vonage July 17, 2006 Crispy I bought vonage service thinking that finally there is a company which will let me control everything from their web portal, and provide features that traditional phone companies do not. Good thing I kept my number with traditional phone company and got a second line with Vonage. Its voice quality was really bad, and cancelling it was a pain to say the least. It took me 4 months to cancell it. Waiting forever on hold. Please read internet forums/blogs before you decide to "save" money B00007MHMN:stay_away_from_vonage!:j._w. B00007MHMN Vonage DigitalVoice Service: Electronics electronics 1 of 1 1.0 Stay away from Vonage! June 14, 2006 J. W. Chandler, AZ United States Stay away from Vonage! After more than 1 month, still don't have phone number transferred. Can't get thru to customer service...very long wait. Paying 2 phone bills...so much for saving cost and so-called service. Called to cancel service, and customer service rep promised to put account/billing on hold until phone number transfer is done...finally something positive from customer service department B000HZBR64:don't_buy:kai_flache B000HZBR64 Bose Companion 3 Series II multimedia speaker system  Graphite/Silver: Electronics electronics 2 of 9 1.0 Don't buy October 22, 2006 Kai Flache Very disappointing speakers! Rip off. I returned them. 1. Satellites produce static noise even with the computer turned off. You have to press the mute button to get rid of it. 2. Extremely rumble base; not crisp. Even turned all the way down it is too prominent. Maybe good for war games. 3. Missing mid tone. Satellites sound like they are coming out off a tin can. 4. Volume is a bit underpowered. Will not knock your socks off B000066HO4:headphone_jack_becomes_loose:d._crook B000066HO4 Sony SRF-M80V S2 Sports Walkman Arm Band Radio with FM/AM, TV and Weather Channels: Electronics electronics 4 of 4 1.0 Headphone jack becomes loose March 26, 2005 D. Crook California I too bought one and had the headphone jack become loose. I bought another thinking I had a faulty one, but now I'm having the same issue with this one. The loose jack causes the reception to go in and out...and finally just out completely. I agreed with the previous opinions on this fatal flaw B000F49ZHU:decent_features,_bad_sound:d._cohen B000F49ZHU Panasonic KX-TG5623B Black 5.8 GHz FHSS GigaRange Digital Cordless Telephone with Three Handsets: Electronics electronics 2.0 Decent features, bad sound November 21, 2006 D. Cohen 1. There was a consistent buzzing on the phone even when I tried multiple jacks for the base. 2. Phone features worked as advertised. but the Voice Enhancer is useless and actually makes it sound worse. 3. It was kind of a pain to sync the phone books which are separate on each handset. I returned it mainly because of the buzzing B00009ZUDD:this_is_a_substandard_product.__pass_on_it.:sadak B00009ZUDD Magnavox CD Alarm/Clock Radio (MCR23017) (MCR230): Electronics electronics 1.0 This is a substandard product. Pass on it. September 28, 2006 Sadak Missouri, USA I bought this and found that if you like to burn your own CD's to play in it, it has a problem reading the tracks. It sometimes spins up and doesn't play, and it always has a very audible noise on spin up and track find. I usually wake to that sound before the music starts. I AM NOT A LIGHT SLEEPER. This is my second one, and I've basically been using it for the radio wake function for the last few months. Do yourself a favor and find a different product B00009ZUDD:not_as_advertised:juliebw_"woods682" B00009ZUDD Magnavox CD Alarm/Clock Radio (MCR23017) (MCR230): Electronics electronics 2 of 2 1.0 not as advertised February 15, 2005 JulieBW "woods682" Geneseo, NY USA This product DOES NOT have the skip feature included in the product descriptio B00006HYWR:here's_what_your_buying!:chris_hooker_"c-dawg" B00006HYWR Creative Labs NOMAD MuVo 64 MB MP3 Player: Electronics electronics 0 of 3 1.0 HERE'S WHAT YOUR BUYING! June 4, 2005 Chris Hooker "C-Dawg" Livonia, NY USA YOUR BUYING 128 MB WORTH OF FRUSTRATION AND $10 WORTH OF GAS FROM BACK AND FORTH TO WAL-MART. I bought my Creative MuVo and had it for a month or so. LOVED IT. had everything i needed, great mp3 worked great. One day, plugged it in to put a song on it and all of the sudden it starts smoking. Big hole in it from all the smoke. So, i return it at walmart for a new one. TWO DAYS LATER i plug it in my usb to put a song on it - smokes again!!!!!!! i returned it and got my money back... got an ipod shuffle, buy that much better mp3 player wont start on fire... B0002MRN4W:no_insert_or_escape_keys!!!:vitas_the_fetus B0002MRN4W Logitech Cordless Desktop LX 300: Electronics electronics 1.0 No INSERT or ESCAPE keys!!! November 2, 2006 Vitas the Fetus The keyboard and mouse work fine, except for some completely absurd reason, Logitech decided to remove the INSERT and ESCAPE keys from the regular keyboard and make them little buttons on the top of the keyboard instead. Look at the picture and you will see what I mean -- the DELETE key is double-size and takes up the space where the insert key would be; INSERT is moved above the home key and is a little recessed round button. ESCAPE is in the usual place, but it too is a little button instead of a legitimate key. Very annoying. Definately returning it B000HCGAFK:corrupted:michael_haynes B000HCGAFK SanDisk - Flash memory card - 2 GB - microSD: Electronics electronics 5 of 16 1.0 Corrupted August 28, 2006 Michael Haynes Ordered it, took about 5 days to get to me, and it's corrupted and cannot format itself and cannot put files on it B00005TQ08:mouse_works_great_..._except_for_the_middle_"wheel"_button.:j._kim B00005TQ08 Microsoft Intellimouse Optical Mouse: Electronics electronics 2.0 Mouse works great ... EXCEPT FOR THE MIDDLE "wheel" button. November 23, 2006 J. Kim Philadelphia, PA United States I was really happy with the mouse for all of 10 minutes. The scroll wheel is really "push happy" such that when I roll the wheel, the middle button registers a "click" very often. In order to prevent the inadvertant click, I have to roll the wheel with the lightest of light touches. It's significantly more senstive than my older logitech wheel, and was really really annoying to have the browser repeatedly register the middle button (which is unix is the default "paste" so I'd have pages and pages of text that I "selected" be pasted on to the browser or editor while what I really wanted was just to scroll the buffer!!! Too bad, the mouse was really high quality overall. B0000C3GWV:don't_buy!!:robert_lezenby_"orgelgrinder" B0000C3GWV JBL Duet PC Speakers (2-Speaker, Silver): Electronics electronics 1 of 8 1.0 Don't Buy!! March 21, 2006 Robert Lezenby "Orgelgrinder" Ohio USA The JBL Speakers worked fine for 3 weeks and all of a sudden, they quit. In the future, I will buy this type of merchandise locally so that I have some recourse B0000C3GWV:blah_sound_overall:j._e._mildren_"coffee_drinker_extraordinaire" B0000C3GWV JBL Duet PC Speakers (2-Speaker, Silver): Electronics electronics 1 of 4 1.0 Blah sound overall March 17, 2006 J. E. Mildren "Coffee drinker extraordinaire" Lawrence, Kan. I was really excited for these affordable speakers after reading the rave reviews, however, I have been extremely disappointed in them. I may have had too high of expectations, but these things put out NO bass whatsoever (it just sounds muffled and cruddy), and the overall sound is extremely poor. I'm really surprised as I've owned JBL speakers in my car that I was extremely pleased with, so I'm amazed at the lacking quality in these. I would recommend either finding another similarly priced set with good reviews or paying a little extra and getting something with a sub included B0000C3GWV:where's_the_headphone_jack,_jack?:d._g._springs B0000C3GWV JBL Duet PC Speakers (2-Speaker, Silver): Electronics electronics 0 of 4 2.0 Where's the headphone jack, Jack? March 16, 2006 D. G. Springs These speakers sound great - but sometimes you want to crank it up and in the office that's a no-no. So you reach for your phones and... no place to plug them in! How lame is that? Also whoever designed the Volume/On/Off knob is an idiot. The thing is so streamlined and slippery that when you try to turn it, the whole speaker just slips away from you. They're so light that they don't have enough resistance to stay put. So you have to hold it in place with one hand while you turn the knob with the other (unless you velcro them to your desk or something). Too bad because - like I said - they sound great B0000BVUZ2:does_not_retract:r._abramson B0000BVUZ2 Targus PA206U Mini Retractable RJ-11 Cord (Plastic Casing): Electronics electronics 1 of 2 1.0 Does not retract October 11, 2005 R. Abramson Agree with the prior reviewers. I can not get it to retract any longer and that was only after 3 uses! B00032Q1IK:don't_buy_the_generic_one:feliciano B00032Q1IK Lexar Media Single-Slot USB 2.0 Multi-Card Reader (Model RW023-001): Electronics electronics 2.0 Don't buy the generic one September 5, 2006 Feliciano Venezuela I have bought several of these. Some came in a fancy blister, and others in a coushing bag. Stay away from those. Be sure you're buying the sealed one because the physical design is a lot different. I give the generic two stars just because it works. I give four stars to the original because as others reviewers have said it's a little difficult to remove the card B00032Q1IK:i_don't_know_what_i_can_do_with_this:y._kim_"flyshoe" B00032Q1IK Lexar Media Single-Slot USB 2.0 Multi-Card Reader (Model RW023-001): Electronics electronics 5 of 6 2.0 I don't know what I can do with this April 6, 2006 Y. Kim "flyshoe" USA I bought this for easy transfer of pictures from my digital camera with SD memory card anywhere not home and sometimes from other peoples memory card (xD and memory stick).. First of all I was disappointed with the flimsy, plastic design and the size of it. But it would have been ok if it worked!..IT DOESNT READ my SD card. And as menetioned in other people's review hard to insert and take out the cards! I'm scared if the cards get scratch and ruined whenever i do it. I wish I have bought this after reading amazon reviews...it's useless now. I'm lost how I can get sd card work on this and if I do, scared of frequent use for the flimsy design ================================================ FILE: nlp_class/electronics/positive.review ================================================ B00006HYUB:everyone_should_own_one:d._john_"looser" B00006HYUB APC Back-UPS ES 500 Backup Battery and Surge Protector: Electronics electronics 3 of 3 5.0 Everyone should own one July 31, 2006 D. John "Looser" PA I purchased this unit due to frequent blackouts in my area and 2 power supplies going bad. It will run my cable modem, router, PC, and LCD monitor for 5 minutes. This is more than enough time to save work and shut down. Equally important, I know that my electronics are receiving clean power. I feel that this investment is minor compared to the loss of valuable data or the failure of equipment due to a power spike or an irregular power supply. As always, Amazon had it to me in <2 business days B00006HYUB:breif_review:scott_park B00006HYUB APC Back-UPS ES 500 Backup Battery and Surge Protector: Electronics electronics 11 of 12 5.0 Breif Review September 26, 2005 Scott Park New York, NY USA I ordered 3 APC Back-UPS ES 500s on the recommendation of an employee of mine who used to work at APC. I've had them for about a month now without any problems. They've functioned properly through a few unexpected power interruptions. I'll gladly order more if the need arises. Pros: - Large plug spacing, good for power adapters - Simple design - Long cord Cons: - No line conditioning (usually an expensive option B00006HYUB:works_fine.:dee_richards_"deeanalyst" B00006HYUB APC Back-UPS ES 500 Backup Battery and Surge Protector: Electronics electronics 0 of 2 4.0 Works fine. September 15, 2005 Dee Richards "deeanalyst" Mobile, AL Wish the unit had a separate online/offline light. When power to the unit is missing, the single red light turns off only when the warning sounds. The warning sound is like a lot of sounds you hear in the house so it isn't always easy to tell what is happening B000067VBM:affordable_and_effective:jason_dickson_"needs_more_money" B000067VBM 50-pack Slim CD/DVD Jewel Cases (5mm) Clear: Electronics electronics 4 of 4 5.0 Affordable and effective July 7, 2005 Jason Dickson "Needs More Money" Maryville, TN USA Cheaper than thick CD cases and less prone to breakage, these "slim" cases by Memorex protect your CDs. Most buyers will get them for use in CD or DVD burning, and these are an affordable choice from a quality company for that purpose. You may want to consider larger cases depending on your tastes, but otherwise these will probably satisfy your needs B00008SCFU:it_is_a_good_product_:kiran_k._singarapu B00008SCFU Kingston 256 MB Secure Digital Card ( SD/256 ): Electronics electronics 5.0 It is a good product February 24, 2006 Kiran K. Singarapu Hi I brought 256 MB Kingston SD card from Amazon.com recently. According to my openion Amazon is one of the best online shopping market, they deliver the products intime and the items i brought so far are working very well. 256 MB Kingston SD card working very good with out giving any problem. One can always go to Amazon for online shopping. bye kira B0007P4G76:perfect:r._johnson B0007P4G76 Xtreme TB264DKO 264-Disc CD/DVD Case: Electronics electronics 2 of 6 5.0 perfect March 18, 2006 R. Johnson Chicago This product was perfect. it's a sturdy case that holds my large collection of cd's and dvd's. My other cases were flimsy and wore out fast. This one has a hard outside shell and the inside holds my dvd's nicely. So i have no complaints. and at the price i paid i'd say this was a great deal B0000DK3I4:kingston_1gb_sd_card_review:eugene_ong B0000DK3I4 Kingston 512 MB Secure Digital Card (SD/512): Electronics electronics 1 of 1 5.0 Kingston 1GB SD Card Review November 9, 2006 Eugene Ong Great value for your money. Kingston has always been a reliable memory chip company and the same goes for this product. B0000DK3I4:very_good_sd_card:gabriel_gore_"geebi" B0000DK3I4 Kingston 512 MB Secure Digital Card (SD/512): Electronics electronics 5.0 Very good SD Card November 9, 2006 Gabriel Gore "geebi" Algood, TN I like it very much, I use it in an outdoor trail camera for wild game and it hold several pictures and has been in the camera in all kinds of weather. I would buy Kingston again B0002MSTWC:flash_card:allen_l._mccartney B0002MSTWC Lexar Media 512 MB 80x Pro Series Compact Flash Card (CF512-80-380): Electronics electronics 5.0 Flash Card August 18, 2005 Allen L. Mccartney Elk Grove, CA I had no problems with this card and the delivery was prompt... Thank You Muc B0002MSTWC:works_great_for_me!:robert_farlee B0002MSTWC Lexar Media 512 MB 80x Pro Series Compact Flash Card (CF512-80-380): Electronics electronics 5.0 Works great for me! July 8, 2005 Robert Farlee Minneapolis, MN USA After going through the reviews, I bought this CF card for my Canon Digital Rebel. So far it has worked fine, though I don't pretend to be an expert digital photographer. When the card is empty, it shows 127 shots available. It seems to read reasonably fast, though it takes a bit longer than I was used to with my point-and-shoot Olympus and its SmartMedia card. B0006G0RSI:good_little_speakers!:folsom_mom B0006G0RSI Altec Lansing inMotion iM3 - Portable speakers - 4 Watt (total): Electronics electronics 1 of 1 4.0 Good little speakers! April 14, 2006 Folsom Mom Folsom, Ca. I am very happy with this product. It folds super slim, so traveling with it is a breeze! Pretty good sound - not Bose quality, but for the price, very respectable! I've had it almost a year, and it has been along on many weekend get-aways, and works great. I use it alot, so it was a good purchase for me B0006ZSW1S:excellent_option_to_avoid_camera_cables:k._koesling B0006ZSW1S Kodak 8 - in - 1 Multi-card Reader, KRW8IN1SCS: Electronics electronics 5.0 Excellent option to avoid camera cables November 19, 2006 K. Koesling Caracas, Venezuela I bought this reader because I wanted to avoid having my camera and all its cable attached to my pc to download the pictures; and with this reader I could leave my camera (and its cables) in its case and just download the picture with the memory card, I recomend this product.... B0001DI6FW:does_the_job:ks B0001DI6FW Targus PAUH212U 7 Port USB 2.0 Hub: Electronics electronics 2 of 3 5.0 Does the job October 22, 2005 ks New Jersey It's a simple device, so there's not to say about it other than it does the job. You should note that the LEDs on the device remain lit as long as the device is plugged into your PC and the PC is powered (they glow a bright blue). B0000CD08M:great_product:h._knox_"h._knox" B0000CD08M SanDisk SDCFH-512-901 512 MB Ultra II CompactFlash Card (Retail Package): Electronics electronics 5.0 Great Product February 20, 2006 H. Knox "H. Knox" Baltimore, Md. I was thinking about buying a 1G card, but after reading one of the reviews,I bought two 512 card,just in case that something went wrong. Which to me made a lot of sense. I'm please B0000CD08M:a_sandisk_fan:audra_m._fischenich_"miranda1776" B0000CD08M SanDisk SDCFH-512-901 512 MB Ultra II CompactFlash Card (Retail Package): Electronics electronics 1 of 7 5.0 A SanDisk Fan October 20, 2005 Audra M. Fischenich "Miranda1776" Mountain View, CA I have always been very pleased with the SanDisk products. I would highly recommend them B000BKE8QQ:almost_perfect:shawn_fitzgibbons B000BKE8QQ Altec Lansing inMotion iM716 Headphones: Electronics electronics 4.0 Almost perfect September 8, 2006 Shawn Fitzgibbons These earphones are great quality. The sound is good and they fit comfortably in the ear once you get used to them. Two minuses make them only 4 out of 5 stars: first, the customer support is weak. There is supposed to be a website for the product for customer support and replacement parts, but Altec Lansing his it linked to a seemingly unrelated product; second, the volume control is a little heavy unless you have somewhere to clip it to (this might be a problem for runners) B0002MSTW2:fast_reader/writer_:shawn_m._matheson_"smatheso" B0002MSTW2 Lexar Media 1 GB 80x Pro Series Compact Flash Card (CF1GB-80-380): Electronics electronics 9 of 10 5.0 Fast Reader/Writer March 3, 2006 Shawn M. Matheson "smatheso" Spokane, WA USA This CF card is so fast that I can run my shutter on my camera non stop until the card is full at a frame rate of 3.5 fps. No lag or slow down. That is amazing. It makes my camera perform better. (Canon Rebel XT B00083XXZS:sandisk_2_gb_ultra_ii_memory_stick_pro_duo:l._m._kasik B00083XXZS SanDisk 2 GB Ultra II Memory Stick PRO Duo: Electronics electronics 1 of 1 5.0 SanDisk 2 GB Ultra II Memory Stick Pro Duo August 27, 2006 L. M. Kasik Southern Ca...USA fast and reliable..well worth the mone B00083XXZS:big_&_fast!:ikesingle B00083XXZS SanDisk 2 GB Ultra II Memory Stick PRO Duo: Electronics electronics 2 of 2 5.0 Big & Fast! July 31, 2006 iKESingle Bay Area, CA USA Perhaps the ultimate addition to a good camera. I used my camera with a SanDisk Pro Duo (the blue one...) and while most times it was fine, when I needed to take pictures in quick succession - it let me down. The Ultra II is noticably faster. You will not regret buying this B00016L0VQ:not_the_right_item:charles_w._fain_"chuck" B00016L0VQ Sandisk 512 MB Secure Digital Ultra II (SDSDH-512-901, Retail Package): Electronics electronics 0 of 6 5.0 Not the Right Item August 6, 2006 Charles W. Fain "Chuck" Florida The Sandisk 512 MB Secure Digitial Ultra II (SDSDH-512-901) sent to me was not the item I ordered. I returned the item, unopened B00065AO0K:nice_product,_does_the_job_nicely_._._.:jennifer_l._heupel_"dvd_fan" B00065AO0K SanDisk SDSDH-1024-901 1 GB Ultra II Secure Digital Memory Card (Retail Package): Electronics electronics 5.0 Nice product, does the job nicely . . . November 14, 2006 Jennifer L. Heupel "DVD Fan" Laramie WY definitely recommend this memory card, download time is great . . B00065AO0K:fast,_really_faster_than_my_old_ones:bill_"bill" B00065AO0K SanDisk SDSDH-1024-901 1 GB Ultra II Secure Digital Memory Card (Retail Package): Electronics electronics 5.0 fast, really faster than my old ones November 13, 2006 Bill "Bill" Louisiana I am happy to have several Sandisk products, and all of them are excellent. B00065AO0K:the_perfect_add_on_for_your_camera:pamela_deshazo B00065AO0K SanDisk SDSDH-1024-901 1 GB Ultra II Secure Digital Memory Card (Retail Package): Electronics electronics 5.0 The Perfect Add On For Your Camera November 12, 2006 Pamela DeShazo The SanDisk SDSDH-1024-901 is absoultely worth the extra money if you love to take many pictures without worrying about how many pictures are left for you to take. It is great to use with mini-videos if your camera has this feature B0000B3AKR:cheap_option:b._finzi B0000B3AKR Viking USB00512L2 512 MB USB 2.0 Portable Mini Flash Memory Device: Electronics electronics 5.0 Cheap option February 23, 2006 B. Finzi Brazil The cheapest option I found at the time but an excelent pen drive. Small and with a good style B0000B3AKR:it's_great,_but_has_one_small_problem.:t._domingo B0000B3AKR Viking USB00512L2 512 MB USB 2.0 Portable Mini Flash Memory Device: Electronics electronics 4.0 it's great, but has one small problem. February 21, 2006 T. Domingo Kent, WA USA It works great! I really like it. There is one small problem though. The lid is REALLY hard to take off! I've had it now for about a month and have gotten lots of use out of it and it has loosened up a little, but not much. There has got to be a way to make a lid that stays on, but isn't quite so hard to remove when a person wants to use it. I appreciate being provided with a forum to voice my opinion B00064V6R6:card_reader:c._legarra B00064V6R6 SanDisk CF Type I/II ImageMate USB 2.0 Reader/Writer (Model SDDR-92-A15): Electronics electronics 3 of 3 4.0 Card Reader August 7, 2006 C. Legarra Ca - USA Works well with or without software installed. Good for home use and school or traveling. B000BBCTHU:wish_i_had_gotten_a_bigger_one!:a._hart B000BBCTHU Wacom Graphire4 4x5 USB Tablet (Silver): Electronics electronics 4.0 wish I had gotten a bigger one! November 19, 2006 A. Hart This technically works well. I am finding learning to use it difficult. I really wish I had spent a little more and gotten a bigger one!!!!! It is a lot smaller than I thought it would be and would be alot easier if it was bigger B000BBCTHU:excellent_beginners_tablet:4nr B000BBCTHU Wacom Graphire4 4x5 USB Tablet (Silver): Electronics electronics 8 of 8 5.0 Excellent beginners tablet August 21, 2006 4nR the intuos line I was considering purchasing a tablet and Wacom was consistantly recommended. I was originally hesitant to buy the graphire line because I didnt think it would be very good for drawing compared to the top line (the intuos line). I was pleasantly surprised to be proven wrong. Installing a driver was a piece of cake and I began drawing away in minutes. It is very responsive and works with all my drawing programs (paintshop pro, painter, photoshop). The mouse is pretty useless however, and I would have preferred if they had included some extra pen tips instead (they seem to wear out, though I do press pretty hard). Other than that, its an amazing product B00070QI1S:kingston_1gb_sd_card_review:eugene_ong B00070QI1S Kingston 512MB Elite Pro Secure Digital Memory Card ( SD/512-S ): Electronics electronics 1 of 1 5.0 Kingston 1GB SD Card Review November 9, 2006 Eugene Ong Great value for your money. Kingston has always been a reliable memory chip company and the same goes for this product. B0002IWC9C:great:p._valbuena_"paulty" B0002IWC9C Sony BCG-34HE4 Super-Quick Worldwide Battery Charger with 4 AA NiMH Batteries: Electronics electronics 5.0 great November 10, 2006 P. Valbuena "paulty" San Jose, CA Great batteries for cameras. They charge quickly, and it's handy to keep the extra 2 spare in the charger and with me all the time "just in case" B000ER23M2:an_unexpected_surprise:c._s. B000ER23M2 Logitech NuLOOQ Navigator (965162-0403): Electronics electronics 5 of 7 5.0 An unexpected surprise July 23, 2006 C. S. Albany, NY I bought the NuLOOQ product a few weeks ago with little expectation and actually with some doubts it'd do anything for me, as I'm a keyboard junkie. The product description was a bit confusing as it seems like ti does a lot. But what a surprise. Just adjusting the brush size using the ipod like scroll disc on the device is worth the price. The pop-up menu thing is cool. I don't use it as much for putting tools, but putting my files and folders into that menu keeps things in one place. I guess the product also lets you pan and zoom around, but I don't seem to use that as much. I still like using my mouse to pan and zoom around. Hey, I was skeptical about the product like anyone else, but found myself a rare surprise. Good job Logitech B0000AKVHF:great_product!:firas_alragom B0000AKVHF SanDisk SDDR-88-A15 8-in-1 USB 2.0 Hi-speed Reader (Retail Package): Electronics electronics 5.0 Great product! September 1, 2006 Firas Alragom Kuwait I've had this product for well over a year now and was using it with my XP machine and am now using it with my Apple Mac Mini. Works great with both Windows and Mac OS X, with no hassles. The removable stand is a nice touch, as you can pack the reader into a laptop bag or lay it horizontally if you prefer. Highly recommended B0002KQRBY:good_quality_discs`:vrdumbos B0002KQRBY Velocity DVD-R 4X 4.7GB, 10-Spindle: Electronics electronics 13 of 15 5.0 Good Quality Discs` November 8, 2004 vrdumbos Denver, CO I have burnt a few discs and so far no coasters, They are burning at 8X in my NEC 2500A burner. That is pretty considering that it is advertised at 4X. Hopefully the burn quality also will be good and will last for a few years B0000AKVJC:fast_delivery,_good_product:marc_hutchins B0000AKVJC SanDisk SDSDB-512-A10 512 MB Secure Digital Card (Retail Package): Electronics electronics 5.0 fast delivery, good product November 11, 2006 Marc Hutchins shipping was outrageous, thought it qualified for free shipping since it is the size of a F'n postage stamp, but i ended up paying 1 cent less for postage than I did for the item, could have bought it at walmart for less this way. Buyer beware, I got took B000AY0HTU:wonderful_keyboard:john_rosney B000AY0HTU Logitech G15 Gaming Keyboard: Electronics electronics 4.0 Wonderful Keyboard November 10, 2006 John Rosney This is the second G15 keyboard I've purchased, not because the first one broke, because it's such a great keyboard. Now I keep one at home, and take one with me when I go LANning. The only issue with the keyboard is the LCD is pretty useless is fast paced FPS games, otherwise it's good for keeping the clock up so one doesn't lose track of the time B000A2K3XW:very_good_tv:rick_d._tucker B000A2K3XW Sony KDFE42A10 42" LCD Rear Projection Television: Electronics electronics 4.0 Very Good TV November 20, 2006 Rick D. Tucker Oklahoma, USA I'm very happy with the set. Although not listed in the specs, it must have a QAM tuner, because I am able to watch unscrambled digital broadcasts through my cable service even though all I have is basic cable. I was thrilled when I made this discovery. Watching football games in HD, without paying for digital cable, almost made me weep with happiness. The picture quality for analog channels is only so-so. I really wish the remote was illuminated. Also, Amazon took much longer to deliver the TV than was promised. Other than these negatives, I'm very happy B000A2K3XW:very_happy_football_fan_!!!:theodore_m._amenta_"breckenridge_realtor" B000A2K3XW Sony KDFE42A10 42" LCD Rear Projection Television: Electronics electronics 5.0 Very happy football fan !!! September 21, 2006 Theodore M. Amenta "Breckenridge Realtor" Breckenridge Colorado My new TV finally arrived and I am very pleased with it. I picked this one based primarily on all of the reviews I could find online, the vast majority of which were very positive (cNet has lots of reviews as well). Also, I have two friends who are cable guys and they see all kinds of TVs, all day every day, and both of them bought this exact set for themselves. My cable provider does not offer many High Def stations yet so the image quality of Standard Def video was the primary criterion for me. Most reviews were very positive in this regard but there were some that were the exact opposite. My first impression had me rather worried. I have since come to believe that poor quality Standard Def video is just a matter of garbage in = garbage out. I began to suspect this when I noticed that some stations looked much better than others. In fact, some shows and commercials on any given station looked much better than those which preceded or followed them. I became convinced as I watched a cable news show where the host and two contributors were each on different cameras being displayed at the same time. The video of the host looked OK, the video of one contributor was poor, and the video of the other contributor looked great. The video quality of the various individuals remained consistent when they were occasionally displayed individually on the entire screen. The set certainly has the ability of displaying fantastic Standard Def video. I expect that I just never noticed the variability of video quality on lesser TVs. The quality of the Hi Def Video is breath taking. Set-up was simple and I have not even bothered yet to read the manual. Of course the display can be adjusted in many ways, but it looks good to me with the factory presets and I do not intend to adjust the display anytime soon. Flipping through the on screen menu, I stumbled across the altitude setting which was a nice surprise since I live at 10,000 ft. above sea level. I was a little disappointed with the delivery situation. I thought I had ordered the TV in time to have it by opening day kick-off. Instead it arrived just in time for the third weekend of the football season, and I was told that it could easily have been another week beyond that. I blame the shipper (Eagle USA) for this, not Amazon. I say this because I could track the package enough to know that Amazon had the TV picked up right away. But then Eagle USA kept it sitting in Dallas for almost 2 weeks, and then in Denver for another week, before finally calling me to arrange for delivery. I believe that if I had not called and emailed Amazon to complain about the delay, it would have taken longer. Eagle USA told Amazon that they had tried to call me sooner but I know that this is not true for two reasons: 1) I had called Eagle USA the same day they told Amazon this and Eagle USA told me that they had no intention of calling me until a day or so prior to delivery, and 2) my livelihood depends on people being able to reach me at all times and I have a very good message and caller ID tracking system in place. All in all, a great set at a great price, I just wish I had ordered and started pushing the issue sooner B000B622CW:if_i_knew_then_what_i_know_now..._i'd_still_buy_it._:geoffrey_grace B000B622CW Griffin Technology 4026-LCDT iTrip LCD FM Transmitter for iPod: Electronics electronics 1 of 1 4.0 If I knew then what I know now... I'd still buy it. September 11, 2006 Geoffrey Grace East Lansing, MI So, I was a little weary to buy an iTrip after hearing some mixed reviews. It seemed that a perosn either had horrible luck with theirs... or the iTrip worked perfectly. Knowing my luck, it wouldn't work for me at all. I recieved my iTrip and my luck started right away. I tossed the iTrip onto my iPod and..................... nothing. A bad omen? Well, after I exchanged my iTrip for a new one I tried it out on a short drive. I live in East Lansing, MI... and we have a very crowded FM dial. I couldn't find a completely blank station as recommended... but it didn't matter. My iTrip delivered decent sound through the station. As others have mentioned, charging your iPod while you use your FM transmitter will really help. It's not a night-and-day difference, but it's a noticeable improvement. Sure, I got some static and the occasional interference from a strong signal, but you know what? Through a good 40 minutes of driving, the majority of the time I had satisfactory sound. This was also on the weaker-signaled LX mode, not DX. Supposedly DX provides a better, stronger signal. This product is dependant on several outside factors. The reception your car gets and the availability of a clear FM channel. To rate this product poorly because of factors out of it's control is unfair. There were times when I had downright poor sound... and times where it was comparable to a tape deck. I love good, crisp sound as much as anyone does... but I'll take somewhat degraded sound over trying to find good music on the radio anyday. My recommendation after owning this product for a short time *but it has been used quite a bit already, as I do a lot of driving*, I say: If you can, buy a tape deck adaptor... but if it's not an option and you don't want to put the money into an "ipod to car" setup, this is a viable solution indeed. In my opinion, an iTrip is a better option than listening to plain, old radio. B000050AOP:flawless:kirk_w_horne B000050AOP Hewlett Packard CD-Writer C4503A 9510i 12x8x32 Internal EIDE Kit: Electronics electronics 2 of 2 5.0 Flawless February 5, 2002 Kirk W Horne Graham, NC United States I have used the 9510i for about 2 years and have found it to be flawless in performance. The Disaster Recovery software provided with this drive is it's biggest star. You can format your hard drive, put in the restore disk that you create for your system, and in about 15 minutes your system is put back to EXACTLY the way it was when you created the disk. Or you can simply replace selected files if you want. It does not miss a single thing. Fanstastic. The software is extremely user friendly and guides you through the process easier than an "ABC" book. I would highly recommend this drive for performance and ease of use B0009O5ITU:happy_with_the_purchse_for_the_price:j._fregelette B0009O5ITU Philips HTS3410/37 DVD Home Theater System: Electronics electronics 2 of 3 4.0 happy with the purchse for the price March 25, 2006 J. fregelette Nice sound, I will admitt for the price, I get big sound, with quality. Only thing is a humming, hissing sound when machine is idle. Ohtherwise, worth it. B0001Q5SFU:product_desciption_could_be_more_specific:r._david_maurer_"david_maurer" B0001Q5SFU Targus PAUH216U 4 Port Slim USB 2.0 Hub: Electronics electronics 3 of 10 5.0 Product desciption could be more specific May 28, 2006 R. David Maurer "David Maurer" St. Louis metro area I,ve seen complaints about the ac adapter you "must" plug in. Hey guys, try it without an outside energy source, I just hope I,m not gonna fry something but it seems to work fine just plugged into a powered USB port. I have a VERY high end system though with wattage to sprare, but no more PCI slots, Damn 7900 512 gtx graphics cards, why do 2 of em have to take up so much room. Oh well, trade offs are a bi---, but a reality and 7 extra USB slots are awfully nice B0001Q5SFU:does_the_job:ks B0001Q5SFU Targus PAUH216U 4 Port Slim USB 2.0 Hub: Electronics electronics 2 of 3 5.0 Does the job October 22, 2005 ks New Jersey It's a simple device, so there's not to say about it other than it does the job. You should note that the LEDs on the device remain lit as long as the device is plugged into your PC and the PC is powered (they glow a bright blue). B00029BQ98:great_budget_tv:c._d._pak B00029BQ98 Samsung LT-P1545 15" Flat-Panel LCD TV: Electronics electronics 4.0 Great Budget TV November 14, 2006 C. D. Pak I bought this TV for college, and it fits perfectly in my dorm. The picture quality is pretty decent, though compared to traditional TV, it is not as sharp. The audio quality is very good. I was able to play Final Fantasy 12 with this TV, and the audio lives well for my expectations. No lag while playing my Playstation 2 console... The only downside is that if you want to switch from AV mode back to TV mode, you need to press "SOURCE" on the remote or the TV 4 times...and it's annoying waiting for it...but besides that, it's a very nice budget TV for anyone that wants a TV that can save you some money and space B0002IOIMQ:charger_&_batteries_are_great:charley B0002IOIMQ Sony BCG-34HRMF4 Super Quick Charger with LCD Indicator and 4 AA Batteries: Electronics electronics 5.0 Charger & Batteries are great November 9, 2006 Charley Arkansas We used this charger with a DC inverter on a 6000 mile road trip to charge batteries for a Sony DSC-H5 camera and the batteries were almost unbelievable with lasting power between charges. The 2700mAh battery is great B000BVB2FK:a_great_buy:nikos_antoniou B000BVB2FK Wacom Intuos3 6X11 Pen Tablet: Electronics electronics 7 of 7 5.0 A great buy August 30, 2006 Nikos Antoniou L.I. N.Y. The intuos3 6x11 tablet is nice because its like having a giant mouse pad. The mouse itself has five buttons that can be programed to do different tasks, opening programs is one of them. It also has a scroll wheel. On the pad there are more buttons that can open programs among other things. Also there are touch sensitive strips on the tablet that can be used for scrolling. I use the pen inside of art progams and it is a real joy to work with. The pressure sensitivity is is a very nice feature alowing you to go from a thin line to a thick line and vice versa. Its main high point for me is the ability it gives to draw curved lines and detailed lines. It fits nicely in hand and has comfortable rubber grip. Also you can flip the pen over and use that side as an eraser. The only complaint I have is that on the pen there are two buttons and one of them (the lower one) is placed in a spot where when I'm drawing my finger frequently hits it, because of this I simply had to make the button inactive. Over all I feel that Wacom has done a very good job of developing this product. I feel that it is of high quality and well worth the price. I would definetly save up the extra few dollars to get this larger tablet, it is nice to have if you have the desk space. I've heard Wacom is the best in the pen tablet industry and now that I own one I believe it B0009RGLSE:great_product:d._tennison_"donny_alaska" B0009RGLSE SanDisk 2 GB SD Memory Card ( SDSDB-2048-A10, Retail Package): Electronics electronics 5.0 GREAT Product November 5, 2006 D. Tennison "Donny_Alaska" Anchorage, AK USA Fabulous product --- now I can store over 700 photos in the 8 mega pixel range. Happy I purchased this one -- very trouble free B00009R6VB:almost_a_must,_if_you_use_the_battery_grip:chris_hann B00009R6VB Hand Strap E1: Electronics electronics 10 of 10 4.0 Almost a must, if you use the battery grip January 12, 2006 Chris Hann Alameda, CA United States I wouldn't be without this. When I first bought the 20d it was my first digital SLR and I spent a few weeks adding and removing the battery grip and this strap. In the end I settled for using both and wouldn't have it any other way. With the battery grip and hand strap in place I find the camera much more secure and comfortable to hold. That's all there is to it, that's what it does and it does it well. On the down side, and it's a small and transient down side, actually fitting it to the camera and getting it adjusted to the exact right length for your hand is a bit fiddly and you'd sort of expect it to be insecure. I think the trick, security wise, is to make sure the bottom strap goes through the center buckle first, then it is locked in by the top strap which is already held securely at the junction with the neck strap (if used). I also don't like the attachment to the neck strap, I don't like having a fairly sharp edged piece of metal where it can rub against the chasis of the camera in normal use. I use this on a 20d which typically has a 24-200 or 80-400 lens attached. You can only use this if you also use the battery grip, or buy a third party plate which attaches to the tripod mount and provides the lower mounting location. But since I always use the battery grip I don't have an issue. If Canon read this, you could do with a better solution for the attachment and adjustment on an accessory of this price, you normally pay close attention to detail and it's a bit lacking here B0007PGADE:no_coasters_yet:jose_e._gonzalez B0007PGADE Memorex DVD+R 16x 4.7GB 50 Pack Spindle: Electronics electronics 5.0 No Coasters Yet September 6, 2006 Jose E. Gonzalez Eagle Pass, Tx I have bought 50 and 100 pack spindles of Memorex and so far I have not had any problems. They work just fine on my Sony dvd burner B0007PGADE:burns_right_every_time:mts4by5 B0007PGADE Memorex DVD+R 16x 4.7GB 50 Pack Spindle: Electronics electronics 5.0 Burns right every time August 23, 2006 mts4by5 Memorex DVD+R's are the best. Price keeps dropping and never have a problem B0007PGADE:great_dvd_media:joel_laika B0007PGADE Memorex DVD+R 16x 4.7GB 50 Pack Spindle: Electronics electronics 1 of 1 5.0 Great DVD media July 15, 2006 Joel Laika I have burned over 100 of these in the past 6 months, I have only had 1 burn badly. Haven't found a dvd player yet that they won't play in B0007WKB14:baby_this_baby.:bv1953_"8to16to35" B0007WKB14 Panasonic DMR-ES10S DIGA Series DVD Recorder (Silver): Electronics electronics 3 of 3 5.0 Baby this baby. May 23, 2006 BV1953 "8to16to35" Panasonic brand This is an excellent machine. I bought two of them. There are a few things you need to do. I have had 100% satisfaction using FujiFilm DVD-R up to 8x. I have had success with FujiFilm DVD+R up to 8x. I`ve also had tremendous success with TDK DVD+R up to 4x and 8x. Some other brands may not work. One thing I`ve learned about this machine is that you have to baby it a little. Don`t go recording 3 or 4 -R or +R DVDs every day. Give it a rest between recordings. One or two per day is okay. Definitely give it room to breathe. If you stack your machines on top of each other, put something in between so they can breathe. Be sure not to block the ventilation holes on the sides. You definitely need to buy a Panasonic DVD player to play back your DVDs - other brand DVD players may not play your recordings properly. One of the greatest things about this machine is that it records DVD-RAM. They are re-recordable for many, many times and each program can be erased when watched. You can even edit the recordings on the DVD-RAM. Cut out commercials and fit more on a disc or remove the commercials for when you watch the program. Only works on the DVD-RAM. I have over 50 DVD-RAM discs (Panasonic brand) - they sure take up less space than VCR tapes! Get one or two of these recorders and a Panasonic DVD player and you`ve got it made! Throw away your VCRs forever! Just remember to baby them B0007WKB14:great_price,_easy_to_use!!:furtherburn B0007WKB14 Panasonic DMR-ES10S DIGA Series DVD Recorder (Silver): Electronics electronics 10 of 11 5.0 Great price, easy to use!! January 10, 2006 furtherburn City of Rock, NY I bought this for my folks for Christmas. It took no time at all to hook up, and making DVDs was simple. Everything from recording off the TV, to recording movies and shows stored on the DVR, to transferring home movies from the original VHS tapes. I'm sure for about $300 more you could purchase some higher end recorders, but for under $200, you really can't go wrong. The only flaw I could find is that the initial hookup (according to the book) didn't seem quite right. After taking a whole 2 minutes to look up the easy to read instructions online, everything went smoothly. Because of that, I'm still going to give it a full 5 stars..it's not as if those 2 whole minutes ruined our life. Really, if you're new to this technology, you're not going to have any problems..believe me..A++ B000EDK8V4:incredible_picture!_with_one_flaw_on_old_dvds:no-nonsense_consumer B000EDK8V4 Sony DVPNS75H Single Disc Upscaling DVD Player: Electronics electronics 4.0 Incredible picture! with one flaw on old DVDs November 11, 2006 No-Nonsense Consumer New York The other effusive reviews are spot-on... the picture is fabulous on new DVDs (Lord of the Rings, Nemo, Harry Potter). A $20 Cables to Go HDMI cable does a great job. We have the Sony KDF-42E2000 42" 3LCD Rear Projection HDTV and are thrilled with the combination. A few annoyances: The machine responds and loads slowly, but that's not too bad; a minor sacrifice for the incredibly low price. And, certain DVDs of old movies (Some Like it Hot, The King and I) stretch the picture horizontally, making things look squat. I'm sure there's a solution, but just can't figure it out. Any tips B000DZDMB6:vhs_to_dvd_and_ipod:wps B000DZDMB6 Transfer Video Directly To DVD Capture Video for Psp Or Apple Ipod: Electronics electronics 4.0 VHS TO DVD AND IPOD November 6, 2006 WPS Las Vegas, Nv. VHS to DVD disc is just one easy setup. I set mine to record and recode just before I go to sleep. When I wake up a finished disc awaits. With the software tools that are provided you can sharpen and correct VHS that has degraded and bring back life as when it was first transfered to tape. I have taken many VHS tapes that were never released as DVD and now have the start of a great library. Editing is a little tricky until you get the hang of it. The product works well. IPOD old music videos and movies for a real treat. Sound is perfect B00006F2WE:this_review_is_not_for_the_technologically_well_versed:"etollis" B00006F2WE Canon S830D Photo Printer: Electronics electronics 19 of 20 5.0 This review is not for the technologically well versed December 17, 2002 "etollis" San Jose, California United States I've had this photo printer a few weeks now. I don't consider myself technically proficient. I totally scored despite gross ignorance with this machine. You cannot go wrong. The photo quality is astonishing. I've printed professional quality photos and framed them. The results are fantastic. For someone who is techno-challenged, I had this up and running very quickly B000050AQ7:great_to_conserve_space:l._forgione_"lauren" B000050AQ7 Memorex 32021926 Clear Slim Jewel Cases (25-Pack): Electronics electronics 1 of 1 5.0 great to conserve space February 23, 2006 L. Forgione "Lauren" two of these jewel cases equal the size of a regular cd case. buy them and conserve space. there great B000050AQ7:fast_and_friendly:doyle_"mustang_fan" B000050AQ7 Memorex 32021926 Clear Slim Jewel Cases (25-Pack): Electronics electronics 1 of 1 5.0 Fast and friendly February 23, 2006 Doyle "Mustang fan" DAYTON, OHIO United States Got my order quickly and found out that these cases are much BETTER than the ones sold here locally, and they were CHEAPER !! B000050AQ7:great_space_saver!:mr._dip B000050AQ7 Memorex 32021926 Clear Slim Jewel Cases (25-Pack): Electronics electronics 2 of 2 5.0 Great space saver! June 9, 2005 Mr. Dip I like keeping all my stuff in one place, but don't like CD folders, so these slim cases are great. I accidentaly sat on one of them and although it did crack, the case didn't break, and the cd was fine. All in all, a great product B0000645V2:work_fine:d._hennes_"garetjax" B0000645V2 Memorex CD/DVD Slim Jewel Cases (Assorted Colors, 25-Pack): Electronics electronics 6 of 6 4.0 Work fine November 26, 2004 D. Hennes "Garetjax" Cincinnati, OH USA I've used these (and similar) cases for years. No problems, even with the cats occasionally knocking them around and walking on them. 1) I've never had one crack. 2) They hold the disc securely, but not with so much force that you risk damaging the disc when removing it. 3) As long as you open them properly - from the front (clear) side by pulling near the corner(s) while holding the back (colored) side - they open fine B00063RT5K:okay_for_the_price:buyer B00063RT5K Tech B BTAA4801 AA Alkaline Batteries 48-Pack: Electronics electronics 4.0 Okay for the price July 30, 2006 buyer They are okay for eight or so dollars, but they don't last very long. Then again, I used these for a digital camera so maybe that's why they get drained so quickly. However, for the price I still would buy them again B00063RT5K:a_great_price_for_a_great_battery:jason_p._givens_"jpgivens" B00063RT5K Tech B BTAA4801 AA Alkaline Batteries 48-Pack: Electronics electronics 6 of 6 5.0 A great price for a great battery July 28, 2005 Jason P. Givens "jpgivens" Leander, TX My daughter uses a Cochlear Implant that has the option of being powered by 3 AA batteries. We have tried several brands trying to find the ones that last the longest. We have tried Energizer, Duracell, etc. She needs to replace them every day and a half. Since the Implant is a high power draining device, every extra hour counts. These batteries are one of the best values out there. B000COB58K:prior_customer:j._mageean B000COB58K 3-Year Service Plan for Personal Electronics $200 to $599.99: Electronics electronics 55 of 58 5.0 Prior customer May 15, 2006 J. Mageean Mountain View, CA USA I have not had N.E.W. coverage for this Apple product however I had a washing machine covered by them. The washer turned out to be one of those machines that had one problem after another sometimes the same. N.E.W. used a couple of different service companies to repair it and finally wrote it off. Throughout, N.E.W. was great and made every effort to fix the machine. When the finally wrote it off they sent me a check for the amount that I paid for it. They did not try to discount the settlement price for the time that I actually had the machine B00083Y4HO:iogear_universal_memory_drive_hi-speed_usb_2.0_memory_card_reader/writer:g_e_geth_"get" B00083Y4HO IOGEAR Universal Memory Drive Hi-Speed USB 2.0 Memory Card Reader/Writer: Electronics electronics 5.0 IOGEAR Universal Memory Drive Hi-Speed USB 2.0 Memory Card Reader/Writer November 5, 2006 G E Geth "GET" AW Esaki si ta campion, un tremendo idea di e sistema pa por load up un potret digital ariba bo PC. hopi bon y facil. Esaki ta pone cu bo por saca bo potret digital y pone ariba bo PC via e systema aki di chip.(Tremendo B000B6KXM8:overall-worth_the_hassle:dogmom B000B6KXM8 Sony RM-AX4000 Home Theater Remote Control: Electronics electronics 1 of 3 4.0 Overall-Worth the hassle July 29, 2006 Dogmom Fairfield, CT Initial setup could be complex for some, but considering all it is capable of i'd say it's worth the time investment. B00007LTAQ:excellent:gabriel_a. B00007LTAQ Targus PAUM01U Ultra Mini Retractable Optical Mouse: Electronics electronics 1 of 1 5.0 Excellent April 19, 2006 Gabriel A. Columbus, OH I've had it for over a month now and it works as well as I expected it to work. I was expecting random quirks here and there as I continued using it, but none whatsoever B000092YQW:great_value:djhack1639_"not_just_another_web_geek" B000092YQW Sony MDR-EX71SL Fontopia In-The-Ear Headphones (Black): Electronics electronics 5.0 Great value November 9, 2006 DjHack1639 "not just another web geek" Upstate NY, USA These are great earbuds. I have alswys used Sony DJ headphones in the past, and these are the first pair of buds I have purchased - I am impressed. For the money, the sound quality is very good - full and well rounded with good bass and the treble is not too bright. They are pretty comfortable in the ears, but it does take a little getting used to. The cord is rather thin and very flexible, but seems to be sturdy enough for most use. The included 'case' is a little tough to figure out, but could be good for keeping them clean in a purse or backpack. Definitely recommended B0002SAF96:love_it:george_woodward_"gman0417" B0002SAF96 Logitech NASCAR Racing Wheel with Vibration Feedback - USB ( 963339-0403 ): Electronics electronics 0 of 1 5.0 Love it September 20, 2006 George Woodward "gman0417" NJ I bought this for my kids to use with Nascar Racing. Controls are easily reprogramable. Nice product for the money B0009UDABW:video_express_met_my_needs:m._savela B0009UDABW ADS Tech Video Xpress USBAV-191-EF: Electronics electronics 5.0 Video Express met my needs November 5, 2006 M. Savela Great product for getting all those old home videos on DV B0009UDABW:ads_tech_video_:johnny_page_"gopher_central___reader" B0009UDABW ADS Tech Video Xpress USBAV-191-EF: Electronics electronics 3 of 5 5.0 ADS Tech Video August 8, 2006 Johnny Page "Gopher Central Reader" Newark,De. USA This little unit is easy to use and ready to go!!!! Not one problem with it so far, I've been using it for over two months now B0000CFY7I:good_buy:k._faber B0000CFY7I Memorex High Performance AA Alkaline Batteries, 50 Pack: Electronics electronics 1 of 1 4.0 Good Buy March 15, 2006 K. Faber Peachtree City I use these batteries when I need power immediately and I don't have a set of rechargeables ready to go. I also use them as backups - so I don't get caught without power and have to pay $1 a battery at supermarkets and convenience stores. Unfortunately, my kids keep stealing them instead of recharging their own set B000EOJ792:movietime:l._thomas_"lthomas" B000EOJ792 Sony HT-DDW700 Complete 5.1-Channel DVD Home Theater System: Electronics electronics 1 of 1 5.0 movietime November 10, 2006 L. Thomas "lthomas" Maryland Excellent sound system, reminds you of being in a movie theatre. Great, Great system B000EH4Y56:good_performance_for_$150;_but_cheaply_made_(in_china).:t._agoston_"tawmbooks" B000EH4Y56 Sony MHCEC70 Mini Shelf System with 3-Disc CD Changer, Cassette Deck, and AM/FM Tuner: Electronics electronics 8 of 8 4.0 Good performance for $150; but cheaply made (in China). October 2, 2006 T. Agoston "tawmbooks" Connecticut, USA I've owned many Sony electronics in the past and have always liked their styling and functionality -- lots of hardy Walkmen, useful shortwave and portable radios, stylish TVs and high quality cassette recorders. I still have a Sony mini component stereo model FH-E656 (made in Japan) which I bought in 1992 for US$400+; but rather than pay to fix its worn-out CD player, I decided to purchase this new Sony MHCEC70 component stereo (made in China). PLUSES: decent sound good functionality easy set-up and intuitive operation simple remote -- but only covers basic functions CONS: very short speaker leads unattractive styling (for my tastes) -- resembles a boombox only holds 3 CDs vs 5 for comparable Panasonic units At first glance, I was disappointed by the cheap construction, skimpy manual and very short speaker leads -- the manufacturer seemed to be counting pennies. But then I thought: in 2006 for $150, I can't expect the same quality as I received in 1992 for $400. Everything is made more cheaply now and almost all in China. So, for the money, it suits my purposes as a nice sounding stereo unit for the bedroom. The real test will be how long the CD changer works -- to be safe, this time I bought the 2 year replacement warranty. I haven't blasted it at full volume, but it seems to have plenty of power when needed. I originally bought a $300 Panasonic unit (SC-PM71SD MP3 SD Micro System) which was returned because it didn't have the full data recording feature as advertised (data recording was crippled by DRM limitations). This Sony stereo costs half as much, and has almost all the same functionality B00083JQY0:great_memory:dorothy_d._burns_"dottie" B00083JQY0 Sony 1 GB Memory Stick PRO Duo Media (MSXM1GST): Electronics electronics 1 of 2 5.0 Great Memory July 8, 2006 Dorothy D. Burns "Dottie" Altadena, CA USA A memory Stick is a s memory stick but when you put it in a Sony Camera - Fantastic B000068IHH:excellent_product:s._davis B000068IHH Case Logic DMB-5 CD Sports Pack: Electronics electronics 1 of 1 4.0 excellent product June 30, 2006 S. Davis This portable cd holder is perfect for me. I work out regularly and it has been perfect for the gym. My cd player fit fine and there are 3 slots for extra cd's. I like the feature of the headphones attaching to the outside of the pouch. I would recommend it to anyone B00007KDVJ:works_great,_poor/inaccurate_documentation:rcp B00007KDVJ Linksys WAP54G Wireless-G Access Point: Electronics electronics 5 of 5 4.0 Works Great, Poor/Inaccurate Documentation September 10, 2006 RCP Note to Brian: The WAP54G *can* be configured as a bridge. I have two of them in just such a configuration. Took me about 10 minutes to set them up. (Note to Brian: The WAP54G *can* be configured as a bridge. I have two of them in just such a configuration. Took me about 10 minutes to set them up.) Major modes of operation are: 1. Wireless Access Point (its default set-up) 2. Wireless Client (connect a wired ethernet device via cable to the WAP54G and you now have a wireless ethernet device) 3. Wireless Repeater (extend range of wireless coverage) 4. Wireless Bridge (connect two ethernet networks without running a cable between them -- acts as one end of a "virtual" cable; you need two to get the job done) A pair of wireless bridges is just what I needed but hesitated to buy the WAP54G because of Brian's comment that this wouldn't work. Because of my newness to the wireless world it took a bit of investigation to come to the conclusion that Brian was wrong. I bought a pair and they do work. I rate it 4 instead of 5 stars for a few reasons. 1. I understand that higher-end, more expensive, equipment can be had with more range than this box. Gotta leave some room to rate more powerful equipment! 2. One must dig very deeply into the users guide (a PDF on the CD) to find the default IP address in order to configure this device. Luckily I had read elsewhere what that IP address is (192.168.1.245). Other manufacturers make this info readily available, even going so far as printing it on the device itself. This will be critical info to any Linux user. Also, the users guide says that the default userid for logging in is "admin". Well, it's not. The only allowed userid is an empty field. This had me going for a few minutes. 3. Something that 99% of the world won't care about -- I like to have more access to the firmware. For example other Linksys products allow one to telnet to the box and do low-level analysis of the box and the network it's attached to. I think there are third-party firmware loads that enable this B000652LUG:good_item:mandi_rodriguez B000652LUG SanDisk SDDR-103 MobileMate SD+ 5-in-1 Mobile Reader (SD/MiniSD/MMC/RS-MMC/TransFlash, Retail Package): Electronics electronics 4.0 good item November 12, 2006 Mandi Rodriguez i love the mobilemate sd. I haven't had any problems yet. It's small compact and gets the job done B00070QI1I:very_good_sd_card:gabriel_gore_"geebi" B00070QI1I Kingston 1GB SecureDigital Flash Card ( SD/1GB ): Electronics electronics 5.0 Very good SD Card November 9, 2006 Gabriel Gore "geebi" Algood, TN I like it very much, I use it in an outdoor trail camera for wild game and it hold several pictures and has been in the camera in all kinds of weather. I would buy Kingston again 0899336795:be_sure_to_pick_the_right_software_package:a._thatcher 0899336795 The Blue Logger & Street Atlas USA 2006 or The Blue Logger & Street Atlas USA 2006 Handheld: Electronics electronics 7 of 13 4.0 Be sure to pick the right software package December 28, 2004 A. Thatcher The first peron to review this incorrectly stated that it doesn't come with software for handhleds. That person chose to buy it without and save some $$ and then complained about having to pay extra for it because he/she bought the wrong software package. Delorme did the right thing and offered us options. I just ordered mine and I have no plans on using with a HH so I'm very happy that I didn't have to buy the HH software. Just don't be dumb and read what you are buying before you buy it. Nemerous people have highly recommended this to me, although I have heard that MS Mappoint has better maps and should be used instead when you have it as an option. Storing 50,000 data points without a connection to a computer is awesome. I will be able to take the unit with me on a bike ride and analize the workout later hopefully looking at the route, elevation, etc. Too bad it is only in Yellow.. B0000BZ40B:totally_secure:jeanette_cefalo_"darwen" B0000BZ40B DLO Action Jacket for 3G iPod Graphite: Electronics electronics 2 of 2 4.0 Totally Secure January 7, 2005 Jeanette Cefalo "darwen" Behind You I got this jacket a month into having my ipod. I had to buy it because I had been using the one that comes with the ipod and when I pulled the iPod out of that case it was easy to drop. One time I did drop it and within a month of owning the iPod I had it in fro repairs. This case protected my iPod of another 11 months just fine. My complaint with it tough is the plastic peice that protects the screen and pod from falling out. It is stiched on the inside so when the ipod is in there is creates friction. Acrilic and plastic do not mux and you get a slightly scraped serface. It will protect your pod though B00003006E:great_product;_lacking_directions:j._levine_"jordan" B00003006E Linksys EZXS55W EtherFast 10/100 5-Port Workgroup Switch: Electronics electronics 2 of 2 4.0 Great product; lacking directions March 8, 2006 J. Levine "Jordan" Manhattan, New York, USA The product works perfectly. The only problem is, the manual only includes directions for the most common setups. To use one port as an "uplink" to a router, for example, you need to plug the uplink into the ethernet port labeled "1" and then leave port "2" open. The directions do not state this, and I had to call Linksys to get it to work. Other than that, it is fast, reliable, and small. Perfect B00007LTB6:works_better_than_i_anticipated!:b._t._denyer B00007LTB6 D-Link DWL-G650 Wireless Cardbus Adapter, 802.11g, 108Mbps: Electronics electronics 2 of 2 5.0 Works better than I anticipated! March 29, 2006 B. T. Denyer Atlantic Beach, FL United States My setup: - Dell Latitude PP01L (Intel chip) - Win XP Pro - D-Link DI-624 Wireless Router (with two walls inbetween the laptop and the antenna) - Enabled the WEP feature I unplugged the old wireless card and simply plugged this in. Windows found the new card and did its Plug-n-Play thing. Not only was I was able to get on the Internet immediately, but the card picked up two other signals in the neighborhood that I couldn't 'see' with my 11MB/sec Cisco Aironet card. This I sort of expected, but was still a bit surprised being that my closest neighbor is beyond the range of most wireless routers. The CD installed just fine, but when I went to the D-Link site to check for an updated driver it said I was up-to-date. I ran Windows Update and it claimed I had an updated driver available for my new D-Link card. I've never had a problem with D-Link's website (or customer service, while we're on the subject), so I was a bit taken aback that Microsoft was ahead of D-Link's site. Either way... install the card and get onto the internet, then have Windows Update check for possible updates. Be sure to enable the encryption feature. If you are running a small network of computers where you are sharing folders then you want to be sure that your neighbors can't go snooping through your stuff. Or worse, lift the signal, and ultimately your personal information. I've had no problems with my current set-up. I HIGHLY recommend this card to bring your laptop/desktop up-to-date B00007LTAU:it's_called_the_ultra_mini_for_a_reason!:c._dray B00007LTAU Targus PA050U USB 2.0 High-Speed Hub (4-port): Electronics electronics 5 of 6 5.0 It's called the Ultra Mini for a reason! March 17, 2006 C. Dray Sacramento, CA United States This review pertains specifically to the Targus PAUH217U 4 Port Ultra Mini USB 2.0 Hub. The cord is about 2.5 feet long - long enough to reach from my pc, which sits on the ground, to the top of the desk. It has a cable which is split into two USB plugs - one just to transmit data, the second to power the unit. The second plug does not need to be used unless you plan on using some heavy-duty hardware, and if so what are you buying a hub called the ultra mini for anyways? If you insist on trying to run a blow dryer off the thing, then it does have an input for a separate power source, which you will have to buy separately. In short, If you have an old school machine with USB ports which are inaccessible /inconvenient to use, this little hub will give you quick access while taking up minimal space on your desk B0007Z1M50:very_pleased:charles_harris B0007Z1M50 Logitech MX518 Gaming Optical Mouse - Metal: Electronics electronics 5.0 Very pleased November 9, 2006 Charles Harris I had read the reviews of this mouse prior to buying it. It had gotten very good reviews. Ive ben playing with it for about a month now and i find it meets all my needs and then some. Highly recommend it B0007Z1M50:excellent_mouse:p._mcclory B0007Z1M50 Logitech MX518 Gaming Optical Mouse - Metal: Electronics electronics 5.0 excellent mouse November 2, 2006 P. MCCLORY Pittsburgh, PA USA I've been a gamer for almost 20 years. This is the best mouse I've ever owned. It is fast, accurate, well formed and constructed. I would definitely recommend it. The DPI adjustment is a nice touch. I prefer corded mice due to cordless being to heavy, this mouse is just right B00024VTKE:i_love_this_player!:kit B00024VTKE iRiver iFP 799T 1 GB Flash MP3 Player: Electronics electronics 1 of 1 5.0 I love this player! July 30, 2006 Kit Cambridge, MA United States For those of you who bought MiniDisc recorders to move away from analog tape recording, this product is wonderful. Especially good for recording lectures, voice lessons, etc. It works quite well with the built-in mono mike, or you could use an external one. One of the few players that lets you record from a line input or an external mike -- you toggle which setting it is in the settings section. I record my radio shows by plugging in the line-out from the station's tape deck to my iRiver. For those who recorded live music with their MiniDiscs, it's a little trickier. You have to set the record input before -- you can't change it on the fly. I've recorded live DJ shows with the built-in and AGC on. Of course, the booming bass distorts horribly, but overall an easy record of the show. Very easy to keep in a pocket rather than to be obviously recording a show. I've also tried external mikes with the record input turned down very low with very good results. A bit of trial and error which I'm still refining with later iRiver products. The single AA batter lasts a good long time. Summer School involves 2, 2-hour classes, and I can record several days of them before battery is low. If the battery runs out during recording, fear not, the file is saved! The negatives are the requirement to go through the special iRiver music program, but there are now firmware updates that will change your iRiver into the typical USB external drag-and-drop drive. Files are recorded in a .REC file which one then converts to a .mp3 file after transfer to your computer. I don't know how different this format is because it takes up exactly the same amout of space as the .mp3 file. But you can't trasnfer .mp3 files off your iRiver, even if you made them yourself, so don't think you can use this to transfer .mp3 files from one computer to another. Also, the molding where the line-in input is sometimes gets in the way of certain plugs such as some RCA to 1/8" adaptors, so make sure you pick one that alows it to fit in securely all the way. I've had mine for just over a year now and use it every day, whether just playing mp3s or recording classes. I'm only just starting to have some trouble with the on/off/play/pause button. After so many presses, it's starting to wear out. But it's still working reliably. I just have to press a little more precisely and pay more attention. I have the 1G model (iFP-799) which is great. I was able to record a 12-hour radio show marathon I produced with it. Previous marathons required a stack of cassette tapes or minidiscs. I'm quite happy with iRiver and plan on buying from them in the future B00068NF0I:love_satellite_radio:d._rhoads_"catlvr4" B00068NF0I JVC KT-SR2000 Plug 'n' Play Sirius Satellite Radio Receiver: Electronics electronics 10 of 14 5.0 Love satellite radio September 4, 2005 D. Rhoads "catlvr4" Bellefonte, pa USA I got this for hubby and me over the summer. We used it for our trip to Rehoboth beach and we loved every minute of it. WE have a tape deck in the car and used it w/ a cassette adaptor. We had not problems whatsoever, in fact it sounds much better thru the cassette adaptor than over the fm transmitter. I did try it thru the fm transmitter and it was a pain to switch from one station to the next, but i don't think anybody can improve upon that. I had the same problem w/ my itrip. We chose sirius for several reasons...i liked the classic vinyl station, my dad introduced me to that and hubby likes nascar and this is switching over in 2007. The only problem i had was i couldn't read the red lettering in the daylight w/ the sunglasses on, but i didn't give them less than 5 stars because of this. this is the way to go, plus it has a suction mount, not a permanent mount. also, if you look on ebay, someone is selling something to adapt your mount to the bolt on your car seat!! definitely go satellite, the music is great and little/ no commercials depending on the stations. B0000AZ67Z:cruzer:m._winograd_"mo" B0000AZ67Z SanDisk SDCZ2-256-A10 256 MB Cruzer Mini USB 2.0 Flash Drive (Retail Package): Electronics electronics 1 of 1 4.0 Cruzer August 9, 2006 M. Winograd "Mo" Brooklyn, NY United States Works good, small, and comes with handy little stickers to put on so you can write contact info in case you lose it, though slightly costl B00008VFAF:great_usb_hub_and_a_great_price:j._howard_"blackcat725" B00008VFAF D-Link QuickMedia DUB-H7 7-Port USB 2.0 Hub: Electronics electronics 5.0 Great USB Hub AND a Great Price November 10, 2006 J. Howard "blackcat725" Northeast Ohio, USA I purchased this hub back in September. I plugged it in and I'm running two printers and my mouse off of it at the moment, I've had no problems. It doesn't take up too much room even with 7 ports. My only complaint isn't with Amazon, it's with D-Link. After I sent in the rebate info, I got a card from D-Link saying my request wasn't valid because I hadn't purchased it from the right store. But I called them, and in about 10 minutes I had the problem cleared up and had my rebate a week later. I HIGHLY recommend keeping copies of all the rebate info, just in case.. B0000DD7PE:good_for_canon_a95:cristian_anuch_juri B0000DD7PE Sandisk 2GB Compactflash Card Type I (SDCFB-2048-A10, Retail Package): Electronics electronics 6 of 13 5.0 Good for Canon a95 August 16, 2005 Cristian Anuch Juri Santiago, Chile Fantastic, take all the videos and pictures you want with the best quality B00008EM7W:imac_user:frank_lorusso B00008EM7W Memorex CD/DVD Compact LabelMaker System: Electronics electronics 1 of 1 4.0 iMac user April 8, 2006 Frank LoRusso Rochester, NY The product is a good value. It performed well and was fairly easy to use. I only wish it would allow importing play lists from iTunes, all text had to be manually input. Overall, I'm very satisfied with the product B00062WV7C:this_is_best_cf_card_have_ever_owned!_won't_regret!:g._xuan B00062WV7C Kingston CF/4GB-S 4 GB ElitePro CompactFlash Card: Electronics electronics 14 of 17 5.0 This is best CF card have ever owned! Won't regret! March 31, 2005 G. Xuan Los Angeles, CA I previously owned the 1GB Lexar 40X CF card and thought that was the fastest a CF could get. I was completely wrong. This card is one fast sucker, and it can hold an enormous amount of images. In JPEG mode I am able to store over 1000 images. In RAW mode, which I'm converting to thanks to this large capacity card, I am able to hold 444 images all on my 20D!!! If your thinking of buying this card, don't hesitate. It is one awsome piece of equipment, and one heck of an investment!! B00005MIS8:excellent_card_value:bill_goodwin_"cameraman" B00005MIS8 Viking CF512M 512 MB CompactFlash Card: Electronics electronics 4.0 Excellent Card Value August 5, 2005 Bill Goodwin "cameraman" St. Paul, MN USA This is an excellent buy and is a quality item. The service was fast and the card works as expected B00006IW1X:a_lot_of_cd's:blue_van_"blue_van" B00006IW1X Memorex 700MB/80-Minute 52x CD-R Media (100-Pack Spindle): Electronics electronics 5.0 A lot of Cd's November 10, 2006 blue van "blue van" A lot of space -- My computer is over 5yrs old so I use these CD's as a great back up for storing all my old documents, my ebooks, and my pics. B00008VF63:cheap_&_good:critic B00008VF63 Sony MDR-E828LP Fontopia Earbuds with Winding Case: Electronics electronics 5.0 Cheap & Good November 5, 2006 Critic NY, USA These earphones are the best I ever had. I never had to try other pairs of earphone because I absolutely loved these that I keep buying it! After 6 years I buy the same one everytime. Of course I never use the winding case and it just sits there but heck it usually stores my other earphones that I brought but can't seem to throw them out because it costed money. It seems that many people are complaining about the electrical shocks from the earphones and I can answer why thats happening. It's actually static electricity. I experienced it myself a couple of times because I was wearing a wool sweater and the wool peacoat jacket that caused static electricity to form. It's actually not the earphones fault but when your wearing lots of clothes or a scarf with the earphones I suggest you switch to headphones to prevent being shocked. The bass is pretty decent when comparied to panasonic or jvc earphones. Hey for 10 bucks or less you can't except Sony to go all out and improve their cheapest model. I abuse my earphones so for 10 bucks a year I think these are the best rather than buying something thats $100 dollars or over and later regret it because it got either lost, broken or stolen. B0000VYJOM:very_reliable,_but_not_very_well_made.:b._wickens B0000VYJOM Lexar Media RW020-001 USB 2.0 CompactFlash Reader: Electronics electronics 4.0 Very reliable, but not very well made. October 6, 2006 B. Wickens San Rafael, CA After having two SanDisk card readers, and one LaCie card reader die on me, I invested in this Lexar card reader. For the money, it has worked flawlessy with Pro compact flash cards up to 4GB in size. I am very impressed with the transfer speeds, and the unit is not too big for traveling. The door that covers the slot, however, is very flimsy and easily deattaches (but fortunately easily reattaches too?) I use Mac OS X 10.4.8 and it works just fine. I also used it with Windows XP without any installation or transfer issues B0000VYJOM:fast_and_does_what_it_should:chicken B0000VYJOM Lexar Media RW020-001 USB 2.0 CompactFlash Reader: Electronics electronics 4 of 4 5.0 Fast and does what it should April 18, 2005 Chicken Backwoods, NH A simple, cheap investment. This CF reader actually does what it should, i.e. transfer info from compact flash to the computer. Previous Kodak 1.0 multi-card reader had issues after a few weeks, and stopped working after 2 months. This one is much faster and is still working. Ahhhhh B0000VYJOM:one_of_the_good_high_speed_cf_readers_on_the_market:amazon_fan B0000VYJOM Lexar Media RW020-001 USB 2.0 CompactFlash Reader: Electronics electronics 26 of 32 5.0 One of the good high speed CF readers on the market October 16, 2004 Amazon Fan NJ, USA Just some specs missing from amazon's description: USB 2.0 CompactFlash Reader Small and travels with ease LED status indicator indicates when files are being transferred Data transfer speeds up to 480Mb/s Backward compatible with USB 1.1 Ships with removable USB 2.0 cable Features Designed for large data transfers, like images, music and video Data transfer 5 to 6 times faster than using USB 1.1 Portable - weighs only 1.5 ounces Protective cover case keeps reader pins away from external hazards Compatible with Windows 2000/ME/XP and Mac OS X and 9.1 No drivers required with most current operating systems 2-year Limited Warranty B0000D8Q8W:adorama_slinger_bag_**_great_**:dr._ronald_berman_"photoaz" B0000D8Q8W Adorama Slinger Bag, Single Strap Backpack / Shoulder Bag, Navy.: Electronics electronics 5.0 Adorama Slinger Bag ** GREAT ** November 9, 2006 Dr. Ronald Berman "PhotoAz" Scottsdale, Az I purchased the Adorama Slinger Bag after first purchasing the Tamrac Velocity 5. The Tamrac bag is a nice bag and can be worn as either a shoulder bag or a waist bag. Unfotunately, it lacked sufficient support when worn as waist bag and did not have an attached pouch to carry a water bottle. The Slinger Bag addressed both of these deficiencies. When worn as a waist bag, it also uses the shoulder strap to keep the bag firmly in place which also helps to balance the weight of the bag. There are two water pouches on the Slinger Bag (which is a real requirement as I live in Arizona). The Adorama Slinger Bag is a great travel bag. It is light weight and has great utility. I highly recommend it. B00083LFSU:great:malachite B00083LFSU Fujifilm 1 GB xD-Picture Card Flash Media Type M ( 600002298 ): Electronics electronics 1 of 1 5.0 Great November 9, 2006 Malachite This was the least expensive 1 GB memory card I have ever seen and it works as well as it should B00009R89Y:a_solution_that_works:brian_koch_"aspiring_photographer" B00009R89Y Lowepro Street and Field Pouch 50 AW - Pouch ( for camera ) - TXP ripstop - black: Electronics electronics 5.0 A Solution That Works November 10, 2006 Brian Koch "Aspiring Photographer" MI United States I have been trying to find a way to easily carry a lot of camera equipment for quite some time. I have tried backpacks, shoulder bags, duffel bags, but none of them really worked all that well. Then I saw the Lowepro Street and Field system with completely customizable pouches, vests, belts, and accessories. It works great, you only get the pouches you need so there is no waisted space and you can organize them however you want according to how often they are used (put frequently used items in easier to access places.) The variety alone of this system is worth the investment, but the quality and ease of use is also very high which is a big plus. You can get a case for any lens, camera body, or accessory you have. I even have cases for my cell phone and water bottle. One word of caution, be sure to measure your lens with the lens hood on backwards if you use them to make sure that the entire thing will fit into the pouch, because sometimes the lens will fit, but then the lens with the lens hood will not. I often carry 5-6 lenses, extension tubes, teleconverters, extra memory cards and batteries, and a bunch of cleaning supplies and other gadgets, which weights a ton. But when they are evenly distributed on this vest/belt Lowepro system it is actually very manageable. The only down side is that everyone will be staring at you because you have thousands of dollars of camera equipment strapped to your body. But if you can overlook that, this is the way to go. I have used this system at many zoos without ever having problems, in fact just unzipping a single lens and switching seems safer to me than opening an entire bag of equipment every time you want to switch lenses. Many of the cases also come with a built in rain/snow cover so if the weather changes all of your equipment is not destroyed. You can also put just a few pouches on a normal belt when you are just going to take photos in the back yard or don't need to take all of your equipment, which is nice. I really can't say enough about how much easier this makes traveling with a lot of equipment, if you have been hopelessly searching for a better solution, consider this, you won't regret it. B0002ZAIMI:works_great:b._rivers B0002ZAIMI Apple M9837LL/A iPod USB Power Adapter: Electronics electronics 4 of 4 5.0 Works Great August 25, 2006 B. Rivers Great for if you are not near a computer and need to charge your Ipo B0007SL4IW:great_product,_worth_the_price.:a._whitlock_".o[badmilk]o." B0007SL4IW Memorex DVD+R 16x 4.7GB 100 Pack Spindle: Electronics electronics 2 of 2 5.0 Great product, worth the price. July 31, 2006 A. Whitlock ".o[badmilk]o." Fort Bragg, NC The Memorex DVD+R 16x discs are great. I have a LaCie external 16x burner that I use with my mac and I have not yet burned a bad disc. I would reccommend this product to anyone looking for lots of media for a good price B0002VRFNC:protects_your_investment:l._t._beasimer_"lb" B0002VRFNC Canon LP1319 Soft Lens Case for 16-35mm f/2.8L USM, 17-40mm f/4L USM, 10-22mm f/3.5-4.5 EF/EFS Lenses: Electronics electronics 1 of 1 5.0 Protects your investment July 15, 2006 L. T. Beasimer "LB" Dallas, TX Manufactured of a soft gray felt like material, a tough leather bottom, and draw string closure at the top, this lens pouch helps protect your lens from dust and the elements. I store my lenses in a camera bag, and these cases fit nicely around the lens taking up little precious space. This case is meant for use with the Canon 16-35mm f/2.8L USM, 17-40mm f/4L USM, 10-22mm f/3.5-4.5 EF/EFS lenses. These L lenses normally come with the case when sold new. There is no need to buy one as Amazon often suggests. However if your case is worn, replacing it to protect your lens is recommended. PROS: Protects your glass investment CONS: I cannot think of an B00062WV86:ok:tomasz_mielcarek B00062WV86 Kingston CF/2GB-S 2 GB ElitePro CompactFlash Card: Electronics electronics 4.0 OK November 9, 2006 Tomasz Mielcarek Poznan, Poland (Central Europe This CF card is perfect for anybody who needs a high capacity (e.g. for hi-res pics) but doesn't care about the transfer speed. It may be a bit annoying though - especially if you try to download all the 2GBs from the card to your hard drive because it takes some time. I do still consider it a real good purchase ; B00062WV86:works_great!:craig_j._llorens_"cjllorens" B00062WV86 Kingston CF/2GB-S 2 GB ElitePro CompactFlash Card: Electronics electronics 4 of 7 5.0 Works great! March 2, 2006 Craig J. Llorens "cjllorens" Houston, TX, USA This memory card handles the job really well. Unless maybe you're a professional sports photographer, it's plenty fast enough. No problems using it with my Canon Rebel XT. It holds about 550 pictures (JPEGs) at the highest resolution (8.2 MP) B000GEDMNW:verry_happy:s._w._yard B000GEDMNW Acer AL1706AB 17" LCD Monitor: Electronics electronics 5.0 VERRY HAPPY November 10, 2006 S. W. Yard Mesa,az I have only had this monitor for a couple of day's but I am verry happy with it. It came well packaged and you cant beat the price. I shopped around and this was the one for me. I dont know about the other review but with in 5 min of opening the box I was using the monitor and it worked verry well!! THANK'S AMAZON B000GEDMNW:great_monitor:charles_k._dick B000GEDMNW Acer AL1706AB 17" LCD Monitor: Electronics electronics 1 of 1 5.0 Great Monitor November 2, 2006 Charles K. Dick MN USA I had a little trouble getting my system to recognize it when first set up...but after a little tweaking, it works beautifully. Previously owned regular CRT...what an improvement! Superb clarity and brightness. For the money you just can't go wrong with this one B0002A9SJ2:buffer_marks:n._bishop B0002A9SJ2 Aleratec DVD/CD Disc Repair Plus: Electronics electronics 3 of 7 4.0 Buffer Marks September 7, 2006 N. Bishop I use the pink circles to buff the cd/dvd, and it leaves the circular marks all over the cd, as I thought it would. Well, I thought that those marks would disappear after I used the repair paste with the yellow circles, but they're still there. Is it supposed to be like this? The reason I bought the thing was to make the cds look like new, but now they just look even more scratched with the buffer marks all over. Could someone answer this question for me please B0002A9SJ2:repairs_discs_to_useable_condition_as_described:sherri_michelle_lechten_"smlechten" B0002A9SJ2 Aleratec DVD/CD Disc Repair Plus: Electronics electronics 21 of 21 4.0 Repairs discs to useable condition as described April 10, 2006 Sherri Michelle Lechten "smlechten" Strongsville, OH USA With boys aged 2 & 3, and some poor disc storage procedures when I'm driving, it appeared I was in need of one of these units. Generally my toddler boys are not permitted to handle discs, but it occassionally happens, and doesn't take long for scratches, damage and finger prints to hinder performance, and when changing children's cds in the car I don't always store the disc properly and that leads to damage also. I read through a lot of reviews on this item and the skipdoctor products, and finally decided on this unit because it runs on a/c power, is fully contained and automatic, and was about $10 less expensive than the most equivalent skipdoctor unit. Both items had mixed reviews - mostly positive, but I found that most people who tried to make the units work and put in some time and effort were satisfied with both products. I'm very satisfied with my purchase it has repaired two discs that could not be played at all, and one that skipped. This product repairs a disc to "useable" condition, it does not repair it so that scratches are not visible. I can still see, but not necessarily feel the scratches. It's also important to remember that some scratches do not affect performance. If a disc plays well, but shows scratches - I just clean off the finger prints with a cloth or use the unit to clean the disc and see if the performance is satisfactory before attempting a full repair. I agree that the instructions with the unit could be better. I saved the instructions provided by another reviewer to use with the provided instructions for clarity. Also, some severely scratched and damaged discs do take many passes to repair, so I agree it is time consuming to acheive a full repair for some items - but it is possible. I noticed that I could cut down some of the repair time and solution usage by repeating the buffing/sanding (pink disc) process several times in a row for deeper scratches before using the repair. I ran one disc through 3 times in a row, then used the repair cream solution with yellow pads and it played fine. My lesser damaged disc only required one pass with the buffer and one with the repair until it worked great. I usually clean the disc (manually with the cloth or with the machine depending on severity of grime), then buff, then repair. It can be time consuming to repair a disc to functioning, but it does save the disc and my discs play like new despite the scratches that are still visable. I think this was good purchase and not overly complicated to use. B0000CD0B7:san_disk_compact_flash_card:mary_s._hutto B0000CD0B7 SanDisk SDCFH-1024-901 1 GB Ultra II CompactFlash Card (Retail Package): Electronics electronics 0 of 3 5.0 san disk compact flash card August 13, 2006 Mary S. Hutto Kula, HI United States So far I havent filled up my disc yet using it. The disc that came with it would fill up after 3 minutes of talking. So far its great B00004WHFL:great_deal_for_the_money!:"joepie" B00004WHFL Franklin EBM-901 eBookman (Metallic Black): Electronics electronics 13 of 13 5.0 Great deal for the money! January 30, 2004 "joepie" Lancaster, CA United States I've read other reviews for this product that have people complaining about losing their data when the batteries are changed. THIS IS NOT TRUE if you're carefull. First of all, my ebookman came with a bright blue warning flier stating that your ebookman needs to be turned OFF when you change the batteries. Pretty simple, huh? Also, don't wait for your battery to completely die before you change it. The main menu screen has a battery meter in the bottom right hand corner, and I just switch out the batteries when the meter reaches 10%. I primarily use my ebookman to read ebooks and I love it B000075UZ7:reliable_blank_cd-rs:jerkymom B000075UZ7 Memorex 700MB/80-Minute 52x Data CD-R Media (50-Pack Spindle): Electronics electronics 5.0 Reliable Blank CD-Rs November 9, 2006 Jerkymom Hancock, MD USA I've been using these Memorex CD-Rs for years and have no problems with their reliability. Have used them with multiple CD and DVD burners without compatibility issues. This was another re-order and I continue to be happy with this product B000075UZ7:memorex_700mb/80-minute_52x_data_cd-r_media_(50-pack_spindle:sharon_swatzenberg B000075UZ7 Memorex 700MB/80-Minute 52x Data CD-R Media (50-Pack Spindle): Electronics electronics 5.0 Memorex 700MB/80-Minute 52x Data CD-R Media (50-Pack Spindle November 3, 2006 Sharon Swatzenberg Reno, NV United States the product arrive to me in very good condition, will recommend this product to anyone who needs blank cd B00003IE4J:energizer_seems_the_most_reliable:christopher_r._chadwick B00003IE4J Energizer E91BP-4 AA Batteries (4-Pack): Electronics electronics 4 of 6 5.0 Energizer seems the most reliable June 22, 2000 Christopher R. Chadwick Nevada For the most part I just want to keep it short. I usually always by Energizer cause they're reasonably priced and seem to last much MUCH longer then most other battery products that I have used in the past B00003IE4J:wonderful_batteries:jerry_eubank B00003IE4J Energizer E91BP-4 AA Batteries (4-Pack): Electronics electronics 1 of 3 4.0 Wonderful Batteries June 20, 2000 Jerry Eubank Denver These batteries are great, and seem to fit my Rio 500 better than some discount batteries. Good price too B00006B7DA:how_long_will_it_last?:audio_dave_"disappointed" B00006B7DA D-Link DUB-H4 4-Port USB 2.0 Hub: Electronics electronics 4.0 How long will it last? October 15, 2006 Audio Dave "Disappointed" Western Mass. I have been using this D-Link hub for about six months. The power light started flickering after about three months and now doesn't light at all. The hub works great, but I wonder how long it will last B00006B7DA:does_everything_it_should:s._chandler B00006B7DA D-Link DUB-H4 4-Port USB 2.0 Hub: Electronics electronics 5 of 6 5.0 Does everything it should February 24, 2006 S. Chandler San Antonio, TX I use my USB hub every day and it works fine with every device I plug into it B000E62H2O:great_value:rachael_baker B000E62H2O Uniden TRU9488 Expandable Corded/Cordless Combination System with Digital Answering System, Dual Keypad, and Call Waiting/Caller ID: Electronics electronics 1 of 1 5.0 Great value November 10, 2006 Rachael Baker South Carolina I'm very happy with this product. It's great value for the price. The corded phone with answering machine means there's always a phone that's not dead and perfect for the home office area. The cordless phone can be used to check the answering machine messages. Lot's of features B00064V6SK:unit_works_great,_software_hogs_resources:dmi7b5 B00064V6SK Sandisk SDDR-99 ImageMate 5-in-1 Reader/Writer (Retail Package): Electronics electronics 19 of 19 4.0 Unit works great, software hogs resources May 8, 2006 dmi7b5 USA The unit itself works great. Much faster transfers than using the usb cable directly to my camera. However, the software includes a "monitoring" feature, which checks every second or so, to see if you've plugged in a card. I opened up Windows Task Manager to discover that, each time it checked, it was consuming 25% of system resources (on/off each second). No wonder my computer has been slower lately, especially if I have my image editing software open (duh). My recommendation would be to skip the San Disk software and access the card reader directly from My Computer, as mentioned in another review below B00004Z5QU:you_cannot_beat_a_belkin_cable:gr8stogie B00004Z5QU Belkin A3L791-S 25-Foot RJ45 CAT 5e Snagless Molded Patch Cable (Blue): Electronics electronics 3 of 3 5.0 You cannot beat a Belkin Cable March 30, 2005 Gr8Stogie St. Louis, MO Great quality, excellent construction and strong RJ45 plugs. I have worked with a decent share of Cat5 and I have never had to cut and terminate a Belkin cable due to regular wear and tear B0002LHSG6:great_purchase!!:magnum B0002LHSG6 Panasonic DVD-RAM 4.7GB single-sided DVD-RAM discs 10-pack: Electronics electronics 2 of 2 5.0 GREAT PURCHASE!! November 6, 2006 MAGNUM NC MY HUSBAND & I SEARCHED & SEARCHED FOR DVD'S THAT WERE COMPATABLE TO OUR DVD RECORDED. NO ONE COULD HELP. THEN I THOUGHT, "I'LL JUST CHECK ON AMAZON," AND SURE ENOUGH THERE THEY WERE!!!!!!!!!!!!! WHAT A RELIEF!!!!!!!!!! I WOULD HATE TO OWN A DVD RECORDER & NOT BE ABLE TO RECORD ANYTHING!!!!! THANK YOU!!! B000BP8AY2:mp3_player_is_good:phil_m._fuller B000BP8AY2 SanDisk Sansa M250 2 GB MP3 Player (Black): Electronics electronics 4.0 MP3 Player is good November 9, 2006 Phil M. Fuller This unit is a good buy. It is priced low, but functions like you paid a higher price. The negatives are that it isn't compatible with Itunes, and the earphones are not very ergonomically designed. Overall, it is a good product B00006HOKR:great_am_reception_--_assume_you'll_be_buying_new_earphones:steve_h�sler_"steve_h�sler" B00006HOKR Sangean DT200V AM/FM/TV Portable Pocket-Size Radio: Electronics electronics 7 of 7 4.0 Great AM reception -- assume you'll be buying new earphones June 3, 2006 Steve H�sler "Steve H�sler" Sparks, MD United States I'll try to keep this short and sweet. If you have been frustrated trying to get AM reception on the go, then you've found the right radio for you. I can't tell you how many pieces of junk I've bought that barely pulled-in even relatively close AM stations unless I constantly twisted the radio to the perfect angle needed to get reception. Luckily (?) those other radios also died pretty quickly. This Sangean product solves the AM reception problem and seems very durable. I also own their CCRadio and this pocket product lives up to its reputation. I love the fact that it also gives you the option to broadcast through the built-in speaker, just like transistor radios of the 50's and 60's--a seemingly forgotten feature. As for listening through the supplied earphones, forget it. Sangean should be ashamed to ship this product with the utter junk earphones that are supplied. Never have I heard tinnier sound, even for AM listening. Not not mention that the cord is annoyingly short. I immediatey invested another $35 in decent pair of Koss earbuds and stored the supplied earphones in the neareast trash bin. Now I happily and easily listen to AM and FM stations even over the roar of the lawnmower. There might be alternatives for those of you who plan on listening to FM exclusivey, but if you spend even a little time on the AM dial, I really don't think you have a choice but to pick up this radio B00008DHSN:nice_for_the_price:owen B00008DHSN JVC HAG101 Closed Ear Headphones (Black): Electronics electronics 2 of 5 5.0 Nice for the price April 8, 2006 OWEN OVERLAND PARK, KS Sound great. Nice bank for the buck. Did the I-plop follower think they would fit inside his ear? Maybe he is bitter with the DRM and I-Tune scam that Job's is screwing people over with. He's worse than Microsoft. I "love" followers B000EF3D4Q:good_but_can_be_annoying:k._franklin B000EF3D4Q DLO 009-3031 Transpod All-in-One Car Solution for iPod (Black): Electronics electronics 1 of 1 4.0 Good but can be annoying November 5, 2006 K. Franklin This was my second DLO transpod. I had an older white one that I bought used. I figured I would "upgrade" to this one since my iPod and my car's interior are black. overall the thing performed similarly to my previous one, but with a few little changes. For one the output of this unit is much lower than its older counterparts. That normally doesn't matter if you choose a good empty frequency, but as you start traveling you notice interference much more than you would expect. Next, I can't turn it up any where near the volume I used to be able to on the older one without getting hissing and static. It seems that the decreased level on the output also increased the amount of electronic noise when using it. Last, the most annoying part of this whole product, is that it turns off the radio transmitter after a period of no use. I have paused my iPod to take a phone call only to have very loud (since the level is so low on it you have to make up for it with stereo volume) static and sometimes radio stations coming through. Very embarrassing. Or when you stop your car and then come back, as soon as the radio turns on you are met with the same very loud noise. Since my car doesn't leave me many options for stereo replacement, this is the best product for my specific situation, though I may try and get that old one back from my friend...maybe an "upgrade" to a newer one will settle the deal B00006JPFT:bad_information_below:"kitkatbreak" B00006JPFT Coby CA-706 CD/MD/MP3 Car Kit Adapter: Electronics electronics 5 of 7 4.0 bad information below April 29, 2004 "kitkatbreak" New York, NY You must have received CA-709 (without the cassette component) by mistake. CA-706 is prepackaged with the cassette component B000ARJIYC:replacement_batteries_for_p402a/1b_cordless_phone:joy B000ARJIYC Panasonic Type-30 HHR-P402A/1B Cordless Telephone Rechargeable Battery Replacement: Electronics electronics 5.0 replacement batteries for P402A/1B cordless phone November 9, 2006 Joy Worked perfectly. Battery does not run low after a few hours off the base B00006HMPH:i_like_it!:stephanie_heffner_"mt" B00006HMPH Logitech Deluxe Access Keyboard: Electronics electronics 3 of 3 4.0 I like it! September 7, 2004 Stephanie Heffner "MT" NC I use this keyboard at work and as I am a medical transcriptionist, it is all I use all day l o n g . . .I really like it and I'm going to buy one for my home as well. It is very easy to type on and I like the wrist support B0009E1YPM:a_great_receiver_for_the_price:cary_j._conrad B0009E1YPM Panasonic SA-XR55K 6.1-Channel A/V Home Theater Receiver, Black: Electronics electronics 0 of 3 4.0 A Great Receiver for the Price August 27, 2006 Cary J. Conrad Turtletown, TN This receiver is a replacement for an older, more expensive, defective Sony that I had. It was easy to install and performs comparably well with more expensive units. I am satisfied with the product B0009E1YPM:home_theater_solution:michael_lopez_"ixplore" B0009E1YPM Panasonic SA-XR55K 6.1-Channel A/V Home Theater Receiver, Black: Electronics electronics 3 of 4 5.0 Home Theater Solution June 13, 2006 Michael Lopez "iXplore" Sun Diego The reviews sounded too good to be true. The reviews are right on. This system is perfect for home theater. I have the latest Panasonic plasma. This receiver is the perfect compliment. Here is why... I could only start with at 2.1 set up - L/C/R and no sub woofer. Great digital sound effects with a one button switch to stereo for easy comparison. Tons of input/output connectors. Unless you need HDMI, the available connectors are perfect. The speaker connectors are screw down/banana plug type for easy, secure connection. Lots of component video, S-VHS and RCA video inputs. Lots of analog audio connections AND two digital coax and one optical. I use the digital coax for my DVD/CD and for my cable box. Really easy set up. I could assign inputs to the various selections through the front of the receiver. The manual is written in easy to understand language with lots of pictures. Did I mention the sound. Frys offers Polk Audio R15 for an indecently low price. With this receiver the sound is rich - great bass and treble without any tweaking of levels. Adding a Cerwin Vega center channel brought out the digital sound effects and this has them all. Best of all, my fashion master wife pulled the receiver out of the box before I got home and pronounced it beautiful. It was the only low profile receiver I could find that fit in the armoire we use as an enterntainment station. The end result - I sat down and just watched Hellboy for the first time all over again in the middle of the installation. All for less than the cost of me and the Missus going to the movies for a few weekends. Get this receiver B0001J3Q9W:works_great:jerry B0001J3Q9W Belkin F8V7067-APL Mobile Power Cord for iPod: Electronics electronics 1 of 1 5.0 Works Great July 10, 2006 Jerry Dunmore, PA This item does exactly what it's suppose to do. It also makes the signal stronger therefore you get better reception. Worth the money. Only drawback would be, there is a lot of cord hanging around B00029U12Q:budget_solution._in_no_means_good_sound_without_tweaks.:emil_anticevic_"eanticev" B00029U12Q Sony SS-MF650H 3-Way Floorstanding Speakers (Pair): Electronics electronics 8 of 10 4.0 Budget solution. In no means good sound without tweaks. September 23, 2005 Emil Anticevic "eanticev" DC USA The Sony SS-MF650H are a low-cost solution to good directional sound for a very small room. Though I have not had the opportunity to test the ultra-high (up to 50kHz) frequency, the highs on these speakers sound very well, maybe only slightly boxy - note that the speakers are rather directional so the sound does not spread. The sound is very flat. The lack of depth makes it feel as if the sound is coming from a flat wall or a small box rather than from a space, especially if you stand further away (over 5 ft.) from the speakers. It seems that the speakers have a much lower than published sensitivity level. However, don't get discouraged because with most speakers/headphones it may be that the speakers need some time to burn in (loosen the diaphragm) to get a bit more "sustain" to their output rather than seem to have a very sharp cutoff. The bass is very punchy, and not deep. I would definitely recommend a subwoofer for these speakers, as their highs are very good, and midranges are nice but maybe a bit flat. The subwoofer will party compensate for the problem, and you could even completely cut off the bottom frequency band and suffer little ill effect (use the LFE on your receiver for the sub-woofer... don't worry, low frequency bass is not perceived by humans as directional so your surround or stereo won't suffer). In other words, you will need a lot of tweaking and additions to make these sound nicer than their out-of-the box quality. Ignore the 50kHz rating for ultra-high-frequency sound as a positive feature, as no receiver you will buy at the budget for these speakers will be rated for that output. Most are rated for 20 Hz - 20kHz, at a reasonable RMS. You get what you pay for... for the price tag on them, the SSMF650H are good. They perform reasonably well on highs and mids (but in no means studio reference sound), and are crisp and punchy on the bass. They do however seem to lack depth and have low sensitivity - especially so on the bass... the further you move away from them (and especially if you stand up above them), the sound quality suffers. I would recommend Wharfedale Diamond 8.4 speakers as a better choice if you're willing to expand your budget a bit. Polk is also not a bad choice for cheap sound. I also demo-ed the ~$100 per pair CAT SDAT LEB-404 (I think I saw them on overstock for $80 with free shipping). They are a bit shady, but excellent for the price - seems that the 20 Hz bass rating on them is actually somewhat accurate. If you're looking for deep and bass-heavy sound without a sub-woofer, and are willing to take a hit on mids and highs a bit this is your "budget solution" instead of the SS-MF650H. I was pleasantly surprised. They also have poor sensitivity though, so if you have a big room shop around for something better. B00029U12Q:excellent_sound,_great_price:realguy1 B00029U12Q Sony SS-MF650H 3-Way Floorstanding Speakers (Pair): Electronics electronics 6 of 6 5.0 Excellent sound, great price July 27, 2005 realguy1 Washington, DC USA I listen to a wide range of music, from hard rock, techno/electronic, to classical, and I've found it difficult to locate reasonably priced speakers that can handle all of this -- at least until I ordered this set. I was apprehensive about buying online (and also about the Sony brand for speakers), but I'm very happy with this purchase. I've been very impressed with the sound both at the high and low ends - the highs are crisp and the bass is tight, not boomy. The soundstage is expansive (of course, this depends a lot on your receiver as well) and imaging good. I'd definitely recommend this speaker set B00064L1AI:good_product:yiqing_lu B00064L1AI Samsung SIR-T451 High Definition Terrestrial Tuner: Electronics electronics 5.0 Good product July 22, 2006 Yiqing Lu This first time I use the HD product in my home video system and have the expected results. After I installed it and it immediately scan all the signal channels in my local area and have good quality. So far I place the antenna in door just in the first floor. I don't have too many channels in my living area in OH B000261N6M:newer_model_region-free_code!!:a._patel B000261N6M Coby DVD-224 Compact DVD Player: Electronics electronics 13 of 15 4.0 Newer Model Region-Free Code!! September 14, 2006 A. Patel Houston, TX USA I bought my player Sep 2006 and the other region-free code did not work. It is actually a DVD-224M (see manual) though it says DVD-224 on the player. Here is how to do it: If you have the DVD-224M model (says DVD-224 on the box, DVD-224M on the manual...), the hack is: Make sure you have no DVD in the tray. On the remote control: 1) Press "TITLE" 2) Press "1" and then "9" On the TV a large box with a small number will appear. The number indicates for which DVD region the machine has been set, for example "2" for Germany or "0" for no region code. 3) Press the up arrow or down arrow to raise or lower the number. 4) Press "ENTER" Done. B000028F42:dual_voltage_/__dual_wattage:r._bougie_"the_boogie_man" B000028F42 Recoton ADF1650 50/1600W Dual Wattage Travel Converter: Electronics electronics 5 of 5 4.0 dual voltage / dual wattage July 12, 2006 R. BOUGIE "the boogie man" CT, USA worked very well as planed just heavy to carr B0000AZK4G:first_time_to_use_a_crimp_tool:a._bess B0000AZK4G TRENDnet Crimp Tool CAT5/6 Cut & Strip: Electronics electronics 4 of 4 4.0 First time to use a crimp tool March 2, 2006 A. Bess Bowie, Tx. USA I would have given it a five star but sense it's the only one I have ever used I had nothing to compare with. I have used it nine tines and it worked perfect every time. Sturdily made. B000AMLXHW:slingbox_first_and_second_impressions.:timothy_j._yatsko B000AMLXHW Sling Media Slingbox Classic: Electronics electronics 1 of 3 4.0 Slingbox first and second impressions. November 10, 2006 Timothy J. Yatsko The idea is excellent, the execution is flawed. What is not made clear at the time of purchase is that you will need a bridge or gaming adapter as well as a high speed internet connection at home. The adapter should be built into the box. Another disappointing factor is that the quality of the video is almost unwatchable if the connection is not robust. There should be a cache memory built in so that a clear, unchoppy video and sound come through. B000AMLXHW:slingbox_review:joseph_r._warren B000AMLXHW Sling Media Slingbox Classic: Electronics electronics 1 of 1 4.0 Slingbox Review November 10, 2006 Joseph R. Warren One of the best gadget-products I've ever bought. The installation and connection was completely flawless. It worked the first time and has been working since (and I even used the Powerline ethernet adapter to connect back to my router). I have my cable TV on one input and my security system on the secondary input. Using my cellular Data connection on my laptop, I can watch tv or look at my security system from anywhere in the country B000AMLXHW:wors_great_but_should_be_able_to_upgrade/trade_in:z._tommy B000AMLXHW Sling Media Slingbox Classic: Electronics electronics 5.0 Wors great but should be able to upgrade/trade in November 9, 2006 Z. Tommy Hong Kong Box worked perfectly as expected. However, it would be nice to be able to upgrade firmware to the new HD like performance or via a trade-in program to allow old customers to upgrade to the new Sling boxes B000E5XHGK:great:christian_behrens B000E5XHGK Apple MA242LL/A iPod AV Connection Kit: Electronics electronics 6 of 25 5.0 Great January 23, 2006 Christian Behrens Caracas, DF Venezuela This box is perfect to have all the basic ipod accesories at once. I have the 60 mb video ipod and all the accesories works perfect B0009U6YQK:trust_the_description.:samuel_chell B0009U6YQK CTA DIGITAL iPod Fold-Up Amplified Aluminum Speakers ( White ): Electronics electronics 5.0 Trust the description. July 1, 2006 Samuel Chell Kenosha,, WI United States (Despite some of the negative reviews of this item, it continues to perform well with my regular-sized iPod. In fact, it has more volume, depth, and presence than three other portable speakers--each costing 50 to 75% more--to which I've compared it. The only downside is that the item is no longer sold postage-free from Amazon, diminishing its "bargain" appeal somewhat.) These modest-sized and priced speakers perform as advertised: the sound is more than adequate; they're small enough that I can take The Stephen Colbert Report with me on walks; when not in use, they fold up into a mini Porta-John. My only misgiving is whether I should have spent 2-3X more for a unit with a dock connector. But for under twenty bucks you simply won't find a better sounding, more compact unit B0009U6YQK:pretty_good_sound:e._riddle B0009U6YQK CTA DIGITAL iPod Fold-Up Amplified Aluminum Speakers ( White ): Electronics electronics 4.0 Pretty good sound June 30, 2006 E. Riddle I liked these speakers they are small compact they work great with my Mp3 Player and you can't really beat the price. My only complaint is that they don't come with an adapter but I just bought rechargeable batteries and the system work great I use them everyda B0007XJSQC:best_headphone_value_ever:d._wendel B0007XJSQC Sennheiser HD201 Headphones: Electronics electronics 5.0 Best headphone value EVER November 2, 2006 D. Wendel Boston, MA These headphones are lightweight, fairly comfortable, and sound head and shoulders better than any pair of $20 headphones I've ever heard. Here are the aspects people always want to know about: BASS: these don't pound your eardrums in, but the bass that is there is infinitely cleaner and snappier than some of those boomy headphones I've heard. You can really follow the bass line with these, rather than just having your eyeballs fuzz out from vibration. MIDS/HIGHS: this is the reason to buy these headphones. Not too bright, but very clear, warm, smooth, soothing, and musical. The first time I listened to music on these I was able to pick out the click of the pick against the guitar string, something I'd never heard before on that song. In fact, I blame these headphones on my new addiction to, well, headphones. These obviously can't play as loudly as $200 headphones, and lack a little of the very lowest and very highest reach, but everything in the middle is VERY good. I don't think you can find headphones that are this nice to listen to for under $100. And being under $20, you can buy a pair to try without feeling like you might be wasting a lot of money. I should go work for these guys or something =) B00000J4M9:xbox_system_link:c._m._noevere_"mcpospartan117" B00000J4M9 Netgear EN104TP 4-Port 10 Mbps Ethernet Hub RJ-45 with Uplink Button: Electronics electronics 0 of 3 5.0 Xbox system link September 11, 2004 C. M. NOEVERE "MCPOSpartan117" NC I was wondering if anyone knew if this hub would work for linking Xbox's together so you can have more than 4 people play at once. I know that I could link 2 with a crossover cable but I want to link 4 together so that I can have a gigantic 16 player Halo match (It's a very popular Xbox game for those who don't know B000067S46:good_high_speed_cd-rws:"kingsbrother" B000067S46 TDK High Speed Data CD-RW (5-Pack): Electronics electronics 21 of 21 5.0 Good High Speed CD-RWs October 19, 2002 "kingsbrother" VA Nothing much to say about them. They're high quality high speed rewritable discs that do what they are supposed to do. I've been using these kind of rewritable discs for a while now and I haven't had any problems with them what so ever even when I burn at higher than 10x. They come with cases too so you won't have to worry about scratching the CDs B0000A8Y5K:perfect_headset_for_me!:toonces B0000A8Y5K Panasonic KX-TCA92 Hands-free Headset with Comfort Fit and Fold Design: Electronics electronics 2 of 2 5.0 Perfect headset for me! July 9, 2006 Toonces Gulf coast of Florida, USA I matched this model number up with the phone I have, and it is a perfect fit for the phone and for me. I stay on the telephone for lengthy conference calls most of my workday, and the headset types that go in the ear ended up causing soreness. This headset sits gently over my head with the earpiece lying on my ear. I'm told I can be heard very clearly without echo or fadeout. I would highly recommend this headset B00005UK9X:better_than_the_windshield_suction_mount:a._touchard B00005UK9X Garmin Portable Friction Mount for GPS 010-10306-00: Electronics electronics 1 of 1 5.0 Better than the windshield suction mount November 1, 2006 A. Touchard I bought this because my windshield suction mount could not be trusted. I've had it fall off more than once. Then you drive around wondering if your $700 Nuvi is going to fall and break. Not Fun! The friction mount works for me. For everyday driving, even aggresive driving, it stays put. Someone on this site left feedback about using it with their Nuvi 360 and I used their review to make the purchase. I'm glad I did. B0007MWE2S:danny:chang_h._lee_"danny" B0007MWE2S Cables Unlimited 6-Foot Digital Male-to-Male HDMI Cable: Electronics electronics 17 of 17 5.0 Danny August 9, 2006 Chang H. Lee "Danny" Atlanta, GA USA I think this is as good as the expensive over $60 HDMI cables. I wouldn't spend money on the expensive ones. First of all, I'm not a cable junkie nor an expert. However, according to my research, there's no difference in performance b/w the expensive version nor the $12, $15, $20 version when it comes to HDMI since it's all digital.. hole buch of zeros and ones. The durability of the cables... I don't know. But unless you're someone who constantly plugs and unplugs the cables for some reason, it wouldn't matter. Normally, you'd connect the cable and keep it that way for a long period of time, so the durability is not really relevant. Bottomline: This is as good as the expensive ones. I first tried out the expensive Monster brand which was $85. Then I returned it after purchasing this, for the quality was the same. Don't buy the expensive ones B000067SVG:must_have!:pamelars24 B000067SVG Targus PA220U Retractable USB Cord: Electronics electronics 2 of 2 5.0 Must Have! July 16, 2004 pamelars24 Fairfax, VA United States This is wonderful for laptop users that travel or like to move your laptop around a lot. If I leave my laptop somewhere I hate having to worry about tripping over wires and wires everywhere just look bad. This is really small and compact! Perfect for traveling too. I've used it for about 8 months now and it hasnt had one problem...it still recoils well B00005BIDS:great_product:"agator82" B00005BIDS Jensen JTH930 Earbud Telephone Headset with Inline Microphone: Electronics electronics 4 of 6 5.0 Great product December 23, 2002 "agator82" Ocklawaha, FL USA This product is a nice headset that did fit nicely on my ear (lucky fit I guess) and was easy to work with. It is compact and feels quite natural for me. Not to mention it is designed to work on either ear so in the middle of a conversation you can just change ears B0002GWP46:good_value_for_the_money:maggie_jarpey B0002GWP46 HP DeskJet 3845 Color Inkjet Printer: Electronics electronics 5 of 6 5.0 good value for the money March 9, 2006 Maggie Jarpey I am pleased with this printer. Considering the price, it is a good value. The cartridges are kind of expensive, but I guess most cartridges are these days B0002GWP46:the_little_engine_that_could!:peter_c_h B0002GWP46 HP DeskJet 3845 Color Inkjet Printer: Electronics electronics 3 of 3 5.0 the little engine that could! March 1, 2006 Peter C H SoCal PROS: small reliable very good quality with pictures ease of use good software easy install affordable CONS: ink tends to run out quickly with pictures slow rate of printing usb cable not included overall: 5 amazonian stars for the average user B00067OF80:excellent_quality,_a_great_buy!:takin_care_of_business_"the_deal_guy" B00067OF80 Sennheiser EH-150 Evolution Hi-Fi Stereo Headphones: Electronics electronics 5.0 Excellent Quality, A Great Buy! November 16, 2006 Takin Care of Business "The Deal Guy" Los Angeles, CA This is truly a no-brainer, excellent headphones at a great price, wonderful all around phones, would make a great gift also B00067OF80:great_detail_in_these_inexpensive_phones:bruce_young_"seeking_the_balance" B00067OF80 Sennheiser EH-150 Evolution Hi-Fi Stereo Headphones: Electronics electronics 0 of 1 4.0 Great detail in these inexpensive phones November 9, 2006 Bruce Young "seeking the balance" SF Bay area I have been using these for a while now and they seem pretty good to me. (disclaimer: I am not an audio professional, nor do I have any expensive headphones to compare with.) They have great detail in both low and high end. In fact, I can hear things in some of my music that I never noticed before in either my small speakers or in the several foam on-ear style or earbud styles. This is good when listening to original CDs, or HQ mp3/AAC, but it did reveal some audio glitches and artifacts in lower quality mp3 that I had just not heard before... I tested these with a frequency response program on my Mac, show as having 25-15,600 Hz (in my ears, your ears may vary...) . This range is better than most of my other inexpensive headphones and earbuds. They do a good job of blocking out external noises-- great if you are in a bit of a noisy space. And, yes, they were a bit tight on the head initially. To fix that, I got a stack of cd/dvd cases that was a bit wider than my head and allowed these headphones to be expanded by them for several overnight stretches (pun intended). This has helped too lessen the pressure they put on my ears and head to the point that they are now OK to wear for long periods. NOTE: this procedure is at your own risk, as I do not think it is officially endorsed by the mfg. ;-) Do not overstretch them, as the headband material, while flexible, undoubtedly has limits to the stretch it can take. Great Bargain Headphones B00067OF80:superb_sound_quality:shloky B00067OF80 Sennheiser EH-150 Evolution Hi-Fi Stereo Headphones: Electronics electronics 1 of 1 5.0 Superb Sound Quality September 5, 2006 Shloky Not an audiophile, but someone looking to spend a decent amount of money on a quality set of headphones. This product nails all the requirements - great sound, great comfort, well built. I'll be buying more of these guys for friends and family. B000EWD4TS:uninstall_the_u3_and_it's_fine:david_park B000EWD4TS SanDisk 2 GB Cruzer Micro with U3 ( SDCZ6-2048-A10, Retail Package): Electronics electronics 4 of 4 5.0 Uninstall the U3 and it's fine November 8, 2006 David Park Atlanta, GA Don't let the reviews fool you. At this price, it's worth a little research. Apparently U3 is annoying a lot of people and the people at U3 have created an uninstall download for you to get. So Google it, download it, and buy the USB drive. The size of this USB drive and the fact that you'll never have to worry about losing the cap along with an excellent price make it worth buying. After you uninstall the U3 software, it works like any other drive. It works great, it just takes you ten minutes of a little extra work. I'm very satisfied so far and have carried audio, video, and a lot, lot more on a drive the size of a pen cap. Brilliant... B00006I5RA:more_than_i_was_expecting:a._larochelle B00006I5RA Sennheiser HD 457 Traditional Open Hi-Fi Stereo Headphones (Silver): Electronics electronics 3 of 4 5.0 More than I was expecting February 6, 2006 A. Larochelle Quebec City, Qc, Canada I bought these headphones a week ago and I am very pleased with them. At the electronic store, I listen to 3 pairs of Sennheiser (HD-433 ; HD-437 and HD-457). I hesitated between the 437 and the 457 but went for the 457 (10 more buck$). At the store the sound was OK as they were playing from the Sennheiser display rack. When I got home, I plugged these in my computer soundcard jack and the sound was a whole lot better. I am very impressed of the volume and sound quality I can get from them on my computer. My soundcard is an onboard Soundmax AC97 on an Asus K8V-X motherboard. I set the sound option in Windows XP on "headphones" and played "Metallica- Nothing else matters" with WinAmp. WOW !!! I was really impressed with the bass response and sound clarity in general. I only use half of the volume available in Windows XP and it`s more than enough for me. I do agree with some other reviews that the bass could be more precise but I found out that it varies a lot depending of the sound source you`re using. The sound is better on my computer than on my Harman Kardon amplifier and is a lot better on my MP3 player than with the earbuds that came with it. Overall, I would say that these headphones are very good for the inexpensive price. They blow away all the competition in the same price range. Compared to my old Panasonic, it`s a drastic improvement especially for the bass response. When it comes to music, I love bass a lot but I would recommand to others that you would listen to them from a source that you could adjust the bass level (bass knob or equalizer), so that way you won`t get too much bass from them. Very good headphones ... Go get a pair ... at this price you can`t go wrong. I highly recommand them for computer users (music, DVD movies and games) B000F4C2CA:great_phone:realguy1 B000F4C2CA Panasonic KX-TG5631S 5.8 GHz FHSS GigaRange Digital Cordless Answering System: Electronics electronics 5.0 Great phone November 17, 2006 realguy1 Washington, DC USA This is one of the best wireless phones I've had -- good call quality, good speakerphone quality and good range B000F4C2CA:dependable:kids_&_corgis B000F4C2CA Panasonic KX-TG5631S 5.8 GHz FHSS GigaRange Digital Cordless Answering System: Electronics electronics 5.0 Dependable November 11, 2006 Kids & Corgis Orefield, PA USA Panasonic makes good quality products and this is no exception. Easy to use, very compact, no interference with cordless usage B000F4C2CA:great_phone:j._benson B000F4C2CA Panasonic KX-TG5631S 5.8 GHz FHSS GigaRange Digital Cordless Answering System: Electronics electronics 5.0 Great Phone November 9, 2006 J. Benson I bought this phone to replace my older Panasonic because I needed a new answering machine. I love that I can retrieve messages from the handset. The handset is a bit smaller than earlier models, but just took some getting used to. Would definitely recommend B000F4C2CA:high_quality_for_low_price:m._jeffrey_mcmahon_"herculodge" B000F4C2CA Panasonic KX-TG5631S 5.8 GHz FHSS GigaRange Digital Cordless Answering System: Electronics electronics 1 of 1 5.0 High Quality for Low Price November 7, 2006 M. JEFFREY MCMAHON "herculodge" Torrance, CA USA I picked this up for 50 dollars to replace a 75-dollar Uniden that had a sticky "talk" button and muffled sound qaulity. The Panasonic blows the Uniden away. The sound is clear, crisp, and intimate, the ring selection is varied (I prefer the nonobtrusive default setting). The controls are easy to use. The quality and finish of the materials is high. I am now a loyal Panasonic phone buyer B000BJ3BRO:great,_great_quality;_even_better_value.:l._baisden B000BJ3BRO Olympus WS-320M 1 GB Digital Voice Recorder and Music Player: Electronics electronics 3 of 3 5.0 Great, great quality; even better value. November 4, 2006 L. Baisden It's hard to believe the quality of the sound from this very small device. MP3's sound great as do the voice recordings. With 1 gig of space you can record an entire day of seminar speakers and still have space left. The built in STEREO OR MONO mics are great...PLUS, YOU CAN USE IT TO CARRY FILES TO AND FROM WORK. The function buttons are logical and easily accessed, even with my big fingers. Priced right, I'm glad I purchased. Received it on time. Totally happy with my purchase. My only wish is that it came with a case and a neck or wrist strap. It's so small it gets tossed into whatever pocket is available and that can lead to scratches from keys, etc B000BJ3BRO:great_size,_great_price,_great_performance...:frank_curtin_"the_smart_guys" B000BJ3BRO Olympus WS-320M 1 GB Digital Voice Recorder and Music Player: Electronics electronics 1 of 1 5.0 Great size, great price, great performance... November 3, 2006 Frank Curtin "The Smart Guys" Grapevine, TX USA I am a success coach and I record all my coaching calls as a standard practice. This recorder has performed fantastically in all situations. I get about 9 - 12 continuous hours of battery operation (depending on battery quality) and the unit captures voices flawlessly during my calls (I have an adapter for the phone). I have used this in a seminar setting and have had great results. I highly recommend using rechargeable batteries (always have one extra on hand) when you are going to use the unit for extended periods of time. Recharge before your event each day and you won't miss a thing. The unit only uses one battery and it's always a great idea to have a spare. The unit does not audibly warn when the battery is about to expire, so keeping a fresh charge should provide you with uninterrupted recordings. Each stop and restart begins a new file. For me that works great! If you are looking for one continuous file, do not shut it off. You can also buy software that will let you merge the files for your later use. You would be hard pressed to find a better product for the money B0001F1ZY4:great_product_at_great_price:mohamed_iqbal B0001F1ZY4 SanDisk SDMSV-512-A10 512 MB MemoryStick Pro (Retail Package): Electronics electronics 5.0 Great product at great price February 24, 2006 Mohamed Iqbal A good stuff at great price and as usual Amazon was fast to send the item B00092M1SS:good_basic_player:k._braat B00092M1SS RCA Lyra RD2315 512 MB Personal Digital Audio Player with Voice, Line-in and FM Recording: Electronics electronics 20 of 21 4.0 Good basic player September 29, 2005 K. Braat Portage, MI United States I decided to replace my iRiver 190T after a 3rd party cable adapter malfunctioned and fused the pin connection to the USB cable together. I wanted USB 2.0 for the faster connection and a larger capacity, but still desired standard user replaceable batteries on a flash based player so I picked this up on sale. I may still search for a used iRiver 190T after playing with the Lyra RD2315. I like the ruggedness of the 190T a bit more than the RCA Lyra RD2315. Pros: User replaceable AAA batteries Expandable SD slot up to 512 MB Decent sound for biking and general yard work Screen is able to be positioned at 0 or 180 degrees for easy reading from belt clip/lanyard Line in recording and voice for short memos 3 different color backlights for user preference Decent battery life Cons: Headphones are worthless. Placing them in ear prevents clips from holding them in place Slow reaction on interface compared to older iRiver player "Please Wait..." Belt clip is going to break after minimal usage (like ink pen cap clips do) Doesn't seem like USB 2.0 speed, just normal USB 1.1 No armband or case available I used firmware 3.11 for my testing after upgrading from version 1.11 B0002ILKMW:updated_from_a_17"_crt_and_wanted_something_to_match_imac_20":j._m_mccormick_"liquid100percent" B0002ILKMW Apple Cinema 20" Flat-Panel Display: Electronics electronics 7 of 7 5.0 updated from a 17" CRT and wanted something to match iMac 20" April 3, 2006 J. M MCCORMICK "liquid100percent" Santo Andre, Brazil when I bought my Intel iMac w/20" LCD suddenly everything else looked dull in comparison. This Apple 20" is very close in spec to my iMac 20" screen. Stores like Best Buy do not have good quality 20+" LCDs in yet. You want the 16x9 profile also, the regular square LCDs look dorky in comparison and typically have lower brightness and contrast ratios. The newer stuff is very bright and clear. It is obvious when you go to a store and look at the LCD screens. The cheap $200 LCDs just don't look good in comparison to the new stuff. Intel iMac screen: 1680x1050 280 cd/m2 (brightness in candle power) 800:1 Contrast ratio Apple 20" LCD 1680x1050 250 cd/m2 400:1 Contrast 14ms response time (www.apple.com/displays/specs.html) Other comparables: Gateway 21" 1680x1050 $599 300 cd/m2 1000:1 contrast Dell 24" 2405FPW $800 1920 x 1200 500 cd/m2 1000:1 contrast You should be aiming for at least 300 cd/m2 on brightness and close to 1000:1 contrast. These Apple LCDs have been out for awhile and are starting to show their age in comparison to the brand new products that have just started to come out. If you are using your LCD for a TV you may need the brightness, but for computer work the Mac 20" LCD is just about right. I paid a few $$$ more ($750 total price) for the Apple LCD, but I feel I made the correct purchase. I just didn't like the way the others looked and it had to look good against my iMac. I actually like this screen better than the one on my iMac and it seems just as bright even if the specs say that it is not. Amazon also boxes the shipment (besides the Apple box) so your screen should arrive undamaged B0002ILKMW:a_solid_display_that_compliments_any_computer:clorman_borno_"robk2" B0002ILKMW Apple Cinema 20" Flat-Panel Display: Electronics electronics 3 of 3 5.0 A solid display that compliments any computer October 25, 2005 Clorman Borno "robk2" Serving Overseas I've been slowly making my way to the Mac side after nearly 15 years of unadulterated Windows/DOS use. The process has been slow mainly because of the price and availability of Apple products: High and Scarce. The best thing about Apple is that their customer forums are full of people like you and me, and if you have a problem, someone else has most likely had it, too. Those forums helped in my decision to purchase this monitor. I had been looking closely at the 23" monitor. When I read about a majority of the displays getting a pink tint after only a few hours of use, I realized I would either wait until Apple re-engineered the monitor, or look at other options. With the 20" Aluminum, I didn't have to look far. I wanted a monitor that would compliment my G4 laptop (Powerbook), but I didn't want to break the bank, either. The answer was turning to ebay. $600 out the door. Mint condition. Saved over $150, and the monitor works and looks great! The 20" and 30" models have had no problems. If you can buy them new, go for it. If you can buy new, but would rather spend that extra money on something else, check out the ebay auctions B000EM6MP6:nice_phone:big_d B000EM6MP6 Panasonic KX-TG2620B 2.4 GHz FHSS GigaRange Digital Cordless Telephone: Electronics electronics 5.0 Nice Phone October 31, 2006 Big D Kentucky I was looking for a basic cordless phone with out an answering machine and this one is great. It has good reception and I like the size of it. This phone is just what I was looking for. B00004T8R2:best_in_class:ds B00004T8R2 Panasonic RP-HT21 Portable Headphones: Electronics electronics 3 of 3 4.0 Best in class March 21, 2006 DS U.S.A. These are the best portable headphones in this price range. Good bass and smooth, natural sound. In fact they would probably still be the best bang for the buck at three times the price. If you can afford more, consider the Sennheiser PX100 for about 40-50 dollars. But if you're on a budget or don't want to worry about losing or breaking a more expensive pair of headphones, these are definitely the ones to get B00009X3RN:changing_to_hdtv:oliver_schwallenstecker B00009X3RN OmniMount Cantilever TV Mount (up to 80 Pounds): Electronics electronics 0 of 5 5.0 Changing to HDTV February 20, 2006 Oliver Schwallenstecker Excellent mount for the 2 TV's I've purchased. Was suprised to buy one about a month ago from amazon.com for 149.95 then was able to buy this one for 124.95. Did I pay too much for the first mount? Ollie........... B0007CNYMC:great_but_pricy!:s._fiorenza_"stefio5559" B0007CNYMC Rewritable DVD-RAM Disc Without Cartridge: Electronics electronics 1 of 1 5.0 Great but pricy! November 9, 2006 S. Fiorenza "Stefio5559" St Petersburg, FL This was needed for my Panasonic DVD recorder. Works well - hope it holds up as advertised.... Looks like high quality and works well. So far - everything is as expected - and THAT is good B000EH8K8S:next_best_thing_to_a_built-in_connector:cj_"minidiva" B000EH8K8S Kensington Pico FM Transmitter for iPod 5G and Nano (Black): Electronics electronics 2 of 2 4.0 Next Best Thing to a Built-in Connector May 7, 2006 CJ "MiniDiva" Atlanta, GA USA It's not listed in the product description but the Pico works with the iPod Mini too. Like the other reviewers, I found it easy to setup: tune the radio, turn on iPod, connect the Pico, tune the Pico, done). In my car, the static interference was less noticeable when the unit was placed in close proximity to the radio. I noticed this as well with my home stereo. Maybe the next generation Pico needs a larger antennae, or my iPod needed charging. Regarding sound quality, my other car has a built-in iPod connector. The Pico sound quality is comparable, somewhat muted, but enjoyable. The Pico does offer the advantage of displaying the iPod menu to select tunes. I've read mixed reviews on other FM transmitters, but I am pleased with the Pico B0009JR5IM:excellent_for_what_i_use_this_for:robert_keeney B0009JR5IM Kensington 33164 Stereo Dock, Charger, and Transmitter for iPod, iPod Mini, iPod Nano, or iPod Photo: Electronics electronics 4.0 Excellent for what I use this for November 9, 2006 Robert Keeney Grapevine, Texas I ordered this device to sit on a player piano, which can play ipod encoded MP3 files, once they are transferred from the special CDs that are designed for the piano. The remote is limited, as are all remotes for ipods, but for the special use I have, this is a great product. It allows me to sit across the room and pause the piano or select the next piece of music B00005K4PO:good_capability,_fair_price:rick_galati B00005K4PO Brother PT-1750 Electronic Labeling System: Electronics electronics 27 of 28 4.0 Good capability, fair price September 16, 2004 Rick Galati Lake St. Louis, Missouri United States I was looking for an inexpensive, yet high quality, long lasting, and durable way to identify dozens upon dozens of electrical wires behind the instrument panel of my airplane. A fellow pilot made me aware of the family of small electronic labelers available in the marketplace. The Brother 1750 fits my needs perfectly. Offering two lines of crisp, highly readable print gives a professional appearance to all labeling needs. My experience is quite different than some reviewers who have complained about wasted tape. In fact, I found that little wasted tape is generated if you simply adjust the margins to a particular task and this option is clearly spelled out in the instruction booklet. Since I purchased the 1750, I have found many uses for it around the home office and I wonder how I got by without one in the past! My only complaint about the keyboard is that among the characters, it does not offer a dash or hyphen, so when one is required, I find myself using a star instead. That is a minor complaint though. The Brother 1750 gets considerable mileage on AA battery power alone, so I have not felt the need to purchase the adapter B0009AFVZK:maybe_other_reviewers_were_talking_about_another_phone.:superjuan_"juan" B0009AFVZK AT&T 992 Two-Line Corded Speakerphone with Caller ID: Electronics electronics 4.0 Maybe other reviewers were talking about another phone. September 12, 2006 Superjuan "Juan" Washington, DC We recently purchased 4 of these phones and all of them work fine. The CID works perfectly for both lines. The interface/menu takes a few minutes to learn and get used to but I wouldn't call it "non-intuitive". The Redial button (as you can see in the picture) is right above the number pad. If you can't find it, you might want to buy a phone with less buttons and less features. And it's pretty simple to redial a number in the CID display... when you see/get to the number press Enter twice (Once to bring up the "MENU", and Once more to "DIAL"). In fact you can also save that number into the phone's memory through the menu (press Enter once and scroll through the options) B0001RM3WU:very_nice_product:jorge_osorio_guerrero B0001RM3WU Garmin Etrex Windshield Mounting Bracket: Electronics electronics 4.0 Very nice product November 10, 2006 Jorge Osorio Guerrero Chile At first, I was not sure about if this Windshield Mounting Bracket was going to stay in place while I drive trough the streets. However, I was very surprised when I found out that the Bracket stayed put all day going from one place to another, even under some vibration. The suction rubber system is quite strong. It has 2 angles for adjustment, and you can rotate the GPS clockwise/counterclockwise. Pros: Strong suction rubber system, GPS mounting system Cons: Lack of a 4th angle for adjustment (the GPS can only be adjusted in the windshield plane, so you can not turn it towards your face for easy viewing - that's why I give 4 stars B0001RM3WU:garmin_etrex_windshield_mounting_bracket:k._y._leung B0001RM3WU Garmin Etrex Windshield Mounting Bracket: Electronics electronics 8 of 8 4.0 Garmin Etrex Windshield Mounting Bracket February 20, 2006 K. Y. Leung KoP, PA Very strong suction cup provides secure mounting. Quick and easy clip in and release for taking the GPS with you. Product would be better if the pivoting arms were longer and able to swivel sideways. Otherwise, this is a well-designed and quality product B0001JXAYS:height_dimensions_inaccurate:pro_"rob" B0001JXAYS Panasonic SA-XR70S 6.1 Channel Surround Sound Home Theater Audio / Video Receiver - Silver: Electronics electronics 1 of 3 5.0 Height dimensions inaccurate April 1, 2006 Pro "Rob" USA The forums speak highly of these units-xr70, and I was going to get one because of the small form factor. Amazon's description for the height at 2.5" is incorrect, according to Panasonic's website. Should be listed as 3 9/32"H. Makes a difference if you're short on space B0001JXAYS:i_just_love_this_system:busybee64_"busybee64" B0001JXAYS Panasonic SA-XR70S 6.1 Channel Surround Sound Home Theater Audio / Video Receiver - Silver: Electronics electronics 5 of 6 5.0 I just love this system March 22, 2006 busybee64 "busybee64" CA USA I was paranoid about having buyer's remorse from this unit. For such a cheap price I was sure I would end up regretting the purchase. What is the tradeoff? Shoot if know, but I haven't regretted buying it one bit. The receiver is perfect for home theater, particularly DD 5.1 shows. There is absolutely no discernable speaker hiss with digital content, which is important for TV watching that has a high range of both loud and silent moments. As for power, it's not an even match with some of the more power hungry and expensive analog amplifiers out there, but it easily crosses the threshold of annoying the neighbors. Digital is something to get used to. On conventional receivers, you turn the sound up high and it becomes somewhat sloppy, or what some call "warm". Not so with the digital Panny. It's distortion free up to very high levels. I wouldn't call it bright, but the response is very linear and precise. I like hearing all the details in music and cinema, even at loud volume. Others don't. The weaknesses are very minor: -The FM tuner is nothing special. -It lacks fancy DSP modes of expensive receivers. -No fancy on screen display (must do most of the tweaking with knobs) -It does not upconvert video. -The remote control is an el cheapo. For this price, though, who cares B0001JXAYS:great_receiver:toby_a._dingle_"tadingle" B0001JXAYS Panasonic SA-XR70S 6.1 Channel Surround Sound Home Theater Audio / Video Receiver - Silver: Electronics electronics 12 of 12 5.0 Great Receiver October 30, 2005 Toby A. Dingle "tadingle" California I purchased this receiver from Fry's Electronics in San Diego, CA for $199.99. At first, I was a little hesitant about purchasing an all digital receiver. When I got it home, and connected it, I was amazed. This receiver will blow you away with the precision of it's home theater capabilities. I am using four Polk R30's as my fronts, and rear surround, and two Sony center channels for my front center, and rear center channels. I also have a KLH 10inch Tremor Series powered subwoofer. I estimate the entire system to cost about $650.00 total. I have colleague that has a Bose home theater system, and my little system blows his out of the water, and he paid much more for the Bose. If you want a great receiver a minimal price, this is the way to go. By the way, did I mention that it has four digital inputs, an optical output, and HDMI in and out connections. BUY IT!!! B0007ZFM38:great_item.:joshua_cole B0007ZFM38 Logitech 980356-0403 Stereo USB Headset 250: Electronics electronics 5.0 Great item. November 10, 2006 Joshua Cole The logitech stereo usb noice cancelling headset is awesome... I never recieved the one I ordered from ANT online, but the one I bought later at walmart owns me B000F49RAA:excellent_value_for_money:mahadevan_virudhagiri B000F49RAA Logitech mm50 Portable Speakers for iPod Black: Electronics electronics 3 of 3 5.0 Excellent Value for money November 3, 2006 Mahadevan Virudhagiri East Hartford, CT I did a lot of research and finally ended up with this product. 1) BOSE is an excellent piece - but main drawbacks - portability and lack of audio input from other devices 2) Altec Lansing - basically a roun cylinder shaped one and I didnt get that in a black color for my 30 GB Black Video Ipod and the sound wasnt that impressive as Bose (or for that matter Logitech mm 50) 3) Apple's ipod Dock - its a bulky one, that is definitely not portable and costlier than the Bose. I went to BestBuy to listen to everything and Logitech mm 50 really outweighs the other ones on these - price, portability and sound quality, yea, its not like Bose or Apple's dock - but really good for such a small piece. The only thing I find a little difficult is, I am not able to switch playlists with the remote, its just for play/pause/next/prev and sounds, would've been completely happy if had all that I could do in the ipod. But, I am very happy with the buy and will definitely recommend to bu B000IT600W:the_best_i've_seen!:c._medeiros B000IT600W Kensington Digital FM Transmitter and Auto Charger for iPod (Black): Electronics electronics 7 of 8 5.0 The Best I've Seen! November 8, 2006 C. Medeiros Massachusetts I've had 2 other FM transmitters (A Belkin and a Griffin iTrip). Neither came close to the quality of this transmitter. Neither charged the iPod (The Belkin required batteries, which only lasted about 15 hours of use), while the iTrip worked OK at first, but then started getting static no matter what station I used. In fact, I had to have the iPod in hand for the static to go away (and then, it was still not clear). The sound isn't as loud as some (it takes over the volume control, so you cant use the volume on the iPod.) Still, it's not nearly as soft as some I've seen. I found most music came through at a good volume (I did adjust a few songs in iTunes to pump them up). This unit, although it seems cheap and flimsy at first, is able to get a consistant, strong signal, even on stations which usually come in clearly. It powers through them, and the result is a very clean sound. It is a little hard to read at the regular angle, but once you set the 3 presets, you don't need to see the screen. Just set your radio to the same 1-2-3 configuration. Also, turning it at a 90 degree angle lets you see the screen much clearer. In all, I couldn't be happier B000ELE4Q6:low_price_and_get_the_job_done:epsilon_delta B000ELE4Q6 Toshiba D-RW2 DVD Player/Recorder: Electronics electronics 7 of 13 5.0 low price and get the job done July 15, 2006 Epsilon Delta CA USA at such low price, this player is really pretty good. it gets the job done, even though the UI is a little bit basic. it can record in DVD+R and DVD-R, and has a 10 hour mode. Although in the 10 hour mode, image is not so clear but still pretty good if view on the computer using 320 x 240 resolution. and at such a low price, you can get two or three to record different programs and archive some shows, and it is still cheaper than the Media Center PC. Good thing is the disc is already a DVD playable in any player. No need to burn it as opposed to if you are using Tivo or Media Center PC. B000BUWNH2:see_above:ajs B000BUWNH2 Canon CLI-8 4-Pack Color Ink Tanks for Pixma printers: Electronics electronics 4.0 See above November 3, 2006 AJS CA USA Quite acceptable. In line with prior purchases at outlet where PIXMA was sol B00023C6SE:incredible_headphones:e._kelly B00023C6SE Sony MDR-DS3000 Infrared Wireless Digital Surround Headphones: Electronics electronics 5.0 Incredible Headphones September 24, 2006 E. Kelly USA I've had these headphones for just over two years, and I'm happy to see that they're one of the few pairs marketed as "surround sound" that have done quite well. The reason behind that is because they're truly excellent headphones. The range is spectacular and the inputs even more so. You're given the option of RCA and Toslink (optical), which is all you really need. Movies really do sound like movies...you hear things behind, in front, and to your left and right when you're connected via optical. Take note that DTS also sounds 'boomier' and a tad crisper than Dolby D does, especially in Gladiator. Honestly, I've nothing to complain about. As a college guy, I couldn't bring my 1010 watt system from home. Which, I might add, never sounded as good as my headphones, mostly because headphones will always have the advantage of being closer to you physically. Listening to music at extremely high bit rates and using the optical connection from my Macbook Pro truly does some incredible things. You'd be amazed at Coldplay's "The Scientist" if you heard it on these headphones. It's indescribable. And by the way, I'm a slight audiophile. You seriously can't go wrong with these headphones. And $65 for each additional pair of headphones, allowing you to add as many as you want to one base station? Even better...good idea for families in apartments. Incredibly advanced technology, incredible sound, and incredible results. Can't go wrong here. Oh, and they're extremely comfy B0007NIJBC:great_cam,_good_video_and_audio_:d._milios B0007NIJBC Logitech QuickCam Communicate STX: Electronics electronics 3 of 3 4.0 Great cam, good video and audio November 21, 2006 D. Milios NY, NY I just recently purchased the Quickcam STX for my sister who lives overseas in Greece. It's a great way for us to connect especially since we only see each other on an annual basis. Surprisingly, the video and audio is quite good. I do have a Mac and she doesn't have any issue calling me from her pc. We use Aol instant messenger (Video and Audio) or Yahoo Messenger (Video) to connect. I still prefer the iSight for Macs. Unfortunately, you can't use an iSight on a pc. Wish Apple could make the iSight compatible with PC's. Anyhow the STX is a great cam for what it's worth. B0007NIJBC:great_image_and_voice_quality:wookjin_na_"woody" B0007NIJBC Logitech QuickCam Communicate STX: Electronics electronics 2 of 3 5.0 Great image and voice quality November 9, 2006 Wookjin Na "Woody" College Station, TX USA This samll web cam is doing a great job connecting my families overseas. The flexible shoe is really handy and the image and voice quality is beyond my expectation B00007AKAZ:satisfied_customer:tb B00007AKAZ Linksys USB2HUB4 USB 4-Port Hub: Electronics electronics 2 of 2 5.0 satisfied customer February 20, 2006 TB Lubbock, TX United States have had no problems with this item, and it's a good price for the powered kind of USB hubs, which I have found are pretty necessary for most USB items. B0009Q4PHO:love_'em!:james_sexton B0009Q4PHO Ultimate Ears Super.fi 5 Pro Earphones (Black): Electronics electronics 5.0 Love 'em! September 18, 2006 James Sexton Central NY I found the sound fantastic. Just got these after usinf Shure E3s for about a year. I liked those but find these even better. When I first tried them I found the base so much stronger than the E3s as many have alluded to. Now I run my iPod at normal equalizer settings. I find the balance of the set dead on. The fit is great, of course your milage may vary. In fact they are so good at excluding air conduction that bone conduction becomes very noticable. This means when I walk with them I can hear my footsteps. This would be a real problem if I jogged (low impact workouts such as elipticals and bicycles are not affected) B000H72MMU:much_better_than_the_belkin_tunebase_fm:u._lehmann_"movie_nerd" B000H72MMU Monster iCarPlay Plus Wireless FM Transmitter/Charger for iPod: Electronics electronics 2 of 2 4.0 Much better than the Belkin Tunebase FM November 2, 2006 U. Lehmann "Movie Nerd" This is my second FM transmitter and works much better than the Belkin that I ended up returning because it simply wasn't working. It plugs firmly into my cigarette lighter and stays there, unlike the Belkin (I drive a 2001 BMW 325ci). It is easy to use with the preset FM stations. It works right out of the box, you'll be ready to go within seconds. The sound is crisp, with some static interference, which can be expected in a big city. Unmounting my car's antenna helps a little but doesn't completely cure the interference. I have a factory BMW Business radio which picks up FM signals pretty much without an antenna. There is nothing to mount the iPod so you'll either have to set it in your cup holder or purchase a case separately. I wouldn't spend more than $45 on any FM transmitter as there will always be minor interference in urban areas. I won't be getting rid of my CD changer just yet B000COJ8NY:amazing_pda,_great_features_at_a_great_price!:mr._tech_genius B000COJ8NY Dell Axim X51v PDA 624 MHz Processor, 256MB ROM / 64MB SDRAM, 3.7 inches 480*640 VGA TFT Color LCD, BlueTooth / WiFi 802.11b/Infrared: Electronics electronics 12 of 12 5.0 Amazing PDA, Great Features at a Great Price! September 3, 2006 Mr. Tech Genius Ohio I have had my Axim x51v for about three months. I purchased it from Dell for $480 with aluminum hardcase, extra 1100mAh battery, and auto power cord. Strengths: Just about everything. The processor is absolutely incredible. I heard (unconfirmed) that the Intel 624 MHz PXA270 is faster than a 2GHz Pentium 3! It sure seems like it. This PDA blazes through movies, photos, games, word processing, and anything else I can throw at it. The other definite high point for this PDA is the screen. Once you see a VGA screen like this, you will be astounded at the difference it can make over a QVGA screen. I have to get about 4 inches from the screen to even see the pixels. The screen is crystal clear. The battery life is phenomenal, even with the standard low capacity battery. Playing a movie at full brightness and full volume will last about 2 hours, extended to about 4.5 hours on low brightness and headphones. Turned off with a 1GB SD card drains the battery about 2% per day. WiFi is amazing. It connects consistently and is moderately easy to set up. Once connected, it keeps the signal well and is, while not fast, reasonable for speed Just about everything on this PDA is almost perfect. Weaknesses: Not enough programs to start with, Windows Media Player 10 (Download TCPMP, it's way better) Problems: Don't use Odyssey Client, it makes the PDA start up really slow. Also, in ActiveSync, On the PDA, select Menu, Add Server Source. On all of the screens, put random characters in each field, and deselect any check boxes that tell it what to synchronize. Then go to menu, schedule and select manual for both. Then go to menu, options, and delete the entry that you just added (the one that has no boxes under it checked) and delete it. It fixes a myriad of problems and makes the PDA run faster, and it still syncs automatically in the cradle. Conclusion: An awesome PDA that does just about everything. Combine it with a BT keyboard and perhaps even a BT mouse, and you have an unbeatable combination of power and portability. Everything works extremely well B000G0OQD6:digital_wireless_phone:w._l._holman_"wlh" B000G0OQD6 Philips 6.0 Dect Cordless Phone Answering Machine with 2 Handsets (Dect2252g/37): Electronics electronics 3 of 3 4.0 Digital wireless phone November 4, 2006 W. L. Holman "WLH" Deep South This phone has noticably greater range and clarity than our other wireless phones. The message center works well, and the intercom feature is useful. The phone is a little small, and similar to cell phones rather than a house wireless phone. There are two generic rechargable NiCAD batteries, I think they will be easier to find than some of the packaged NiCADs that come with most wireless phones B000G0OQD6:phone_is_awesome!:t._hawkins B000G0OQD6 Philips 6.0 Dect Cordless Phone Answering Machine with 2 Handsets (Dect2252g/37): Electronics electronics 10 of 11 5.0 Phone is awesome! July 6, 2006 T. Hawkins Denver, CO This phone is small, great battery life, awesome range, and no interference. The features are subtstanial and the quality is amazing. From one that has always had Uniden Cordless phones this is a substantial upgrade. B00008UVAC:yes!:s._a._rader B00008UVAC RCA RCU410MS Universal 4 Device Remote Control (Platinum): Electronics electronics 3 of 4 5.0 yes! July 23, 2004 S. A. Rader i bought one version from best buy, then i bought another with different buttons, then i bought this platinum one because its so cool looking, just make sure you save the code B000COCQXS:not_quite_truth_in_advertising:j._riley B000COCQXS 1-Year Replacement Plan for Electronics Products $150 to $174.99: Electronics electronics 9 of 9 4.0 not Quite truth in advertising July 14, 2006 J. Riley sent check for full price fairly promptly, but not including tax, which ads say they will d B000E1DSAE:very_good!:smart.man B000E1DSAE Sennheiser CX300-B Earbuds (Silver): Electronics electronics 0 of 1 5.0 Very Good! November 10, 2006 smart.man NY Best earphones I ever had. Better then Sony MDR-EX51LP Fontopia Headphones. 2 years warranty B000E1DSAE:great_sound:rroliver B000E1DSAE Sennheiser CX300-B Earbuds (Silver): Electronics electronics 0 of 1 4.0 great sound November 9, 2006 rroliver OH Earbud fit system is comfortable, seals out noise, for many ear canal sizes. Sound is great B000A3IAKY:better_than_logitechs_higher_priced_offering:art_corvelet_"bsc" B000A3IAKY Creative Webcam Live! Motion- Titanium: Electronics electronics 4 of 4 5.0 Better than Logitechs higher priced offering May 3, 2006 Art Corvelet "BSC" Perry Hall, MD United States I'm very pleased with this camera. I updated it with the new drivers and software on the Creative site (from January 2006) immediately and I have not had any of the problems others mention. The image quality is excellent with good lighting and the camera is fast since it is a true USB 2.0 camera. It will work with USB 1, but be sure you use USB 2.0 for better quality. Video calls run a bit choppy if there is a lot of movement, but for basic conversations, it is fine. I use 8 Mbs cable and I connect with people using the same or high speed DSL. This camera takes great video & photos and has an excellent one click panoramic option that does all of the stitching for you. If you want to take a large group shot, it is really cool. The other features like security and remote monitoring are very useful as well. I don't use the face tracking. The base deserves a mention too. I use this on my notebook and on my desktop. It's cool that the base works with both notebook screens and on flat surfaces. Highly recommended for the price now with the current rebate Amazon is offering B000HCRVSK:great_mouse,_mediocre_keyboard.:o._sverloov B000HCRVSK Logitech Cordless Desktop MX3200 Laser: Electronics electronics 4.0 Great mouse, mediocre keyboard. November 17, 2006 O. Sverloov I wanted a combo and this seems to be the best one on the market now days. The mouse is very good, a tad small, but still very comfortable. Not as good as Logitech� MX(tm)500 for my hand (I'd say I have a medium size hand), but still a very solid product. Side buttons are very useful. No need to install any additional drivers for XP if you are ok with the default behavior. Just plug it in and use. The keyboard is so-so. It is not bad, but just not very comfortable, especially compared to Microsoft keyboards. (I use Microsoft 4000 for work and it really shines). The labeling is very small, Insert/Delete keys are not standard and I hate Vista ready button, if you hit it in the middle of the game you are lucky not to crash. Would I buy it again? Yes. Would I recommend it? Yes, but with some reservations. B000AAQZPY:get_a_free_42"_plasma_tv_instead!:jason B000AAQZPY Sharp Aquos LC-15B8US 15" EDTV-Ready LCD Flat Panel TV: Electronics electronics 2 of 91 4.0 Get a free 42" Plasma TV instead! May 8, 2006 Jason Why settle for less, when you can get a brand new original Panasonic or Samsung 42 inch plasma TV for Free! I got mine from this web site: awesomestufffree.com/plasma-t B00009MK3T:great_sound,_some_suggestions_for_durability:matt B00009MK3T Bose® around-ear headphones - Silver: Electronics electronics 3 of 3 4.0 Great sound, some suggestions for durability August 22, 2006 Matt Illinois Like most people here, I found the Bose Triport headphones to have excellent sound but the plastic on mine also broke in the recess next to the earcups. What I found is that this is caused by the tension of the headband frame pushing into the plastic. In fact, the plastic broke from just sitting in my drawer for a week with the headband fully extended. My recommendation is to store these headphones with the earcups fully retracted, to reduce the tension of the headband frame on that piece of plastic. Bose replaced them with no hassles, no receipt, no registration, just sent them back and got a brand new pair. I think that was well worth the money spent over 2 years ago B0009OOBV6:great_speaker_system_:m._j._mahelsky B0009OOBV6 Creative Labs 51MF5005AA000 TravelDock Speakers for Zen Micro: Electronics electronics 5 of 5 5.0 Great Speaker System July 30, 2006 M. J. Mahelsky New York, NY I recently received the Zen Microphoto as a gift. Since I travel fairly often, I decided to purchase the Traveldock after reading the reviews. It's great. The Microphoto fits in easily and comes out just as simply. The sound is rich, loud enough, and better than any other travel speakers that I own. Many people comment on the bass issue. For travel speakers, the Traveldock has the best bass to date, in my opinion. True bass enthusiasts could purchase the subwoofer (for an additional $60 from Creative's website). I'm very satisfied with the sound and the convenience. The jacks are easy to reach and use, which are on the back of the unit. Also, the Microphoto charges while docked, whether it's playing or not. There's even an attachable FM antenna that plugs in to give you reception when docked (since you are not using the earphones which serve as an antenna also). By the way, it comes with a remote control which allows you to switch between FM and MP3's, adjust volume, and play/pause/FF/Rew. Overall, this is a very nice addition to the Zen Microphoto. B0009OOBV6:awesome_speakers!:boris B0009OOBV6 Creative Labs 51MF5005AA000 TravelDock Speakers for Zen Micro: Electronics electronics 6 of 6 4.0 awesome speakers! July 26, 2006 boris Hon, HI Again, Creative Labs has combined all you need into one package: line in jack, usb port, fm antenna, and even a jack for a sub-woofer! for a small portable speaker, this system gets pretty loud and clear. The stereo effect button works great, the design is very stylish and the remote is a nice finishing touch. now for the cons;like most reviewers,i too, have to say the bass is lacking a bit, and the stand has a bit of trouble holding the speakers up due to small rubber feet that doesnt grip very well. and the last thing is the speakers itself doesnt have any grill or guard on it and it looks like it could be damaged easily, but these are minor things i can overlook and all in all for the price, this speaker system is very good. i tried the Altec Lansing portable speakers for the same price and i returned it the next day. it didnt even get half as loud without distortion and it didnt have as many cool features either. right now, im using the speakers with the zen nano plus and it works great! im saving up for the zen micro now and if it sounds good with the nano, then i know the TravelDock will sound amazing with the micro that it was intended for. one more thing, if your going to use the line-in cable for a device other than the zen micro, be sure to insert the BLACK end of the cable into the device your want to play and the WHITE end into the speakers line-in jack. i read a reviewer who said the speakers sounded tinny like a transistor radio and its because she had the wrong ends of the cable attached. i did it myself and i figured it out. unlike the reviewer who returned the speakers before taking the time to learn how to use it before returning it and giving it a bad review. I love these speakers and i even use them for my t.v and they sound great for that too B000065UTR:superb_sound:sound_man_"sounds" B000065UTR Jensen JHT525 5.1 Home Theater Speaker System: Electronics electronics 6 of 6 5.0 Superb Sound September 18, 2006 Sound Man "Sounds" Atlanta, GA I bought these speakers based on price because I just wanted to get some budget speakers to start off with on my home theater. It turns out that these speakers have amazing sound quality easily rivaling speakers that cost 10x the price. I really can't find one bad thing to say. Even at high volumes they have a crystal clear pristine sound. The sub woofer pumps a nice rich heavy bass. Take advantage of the low price on these speakers, you won't find a better deal. I'm using these speakers with a Harman Kardon AVR 240 receiver and I also have two Polk R15's as my front left and right B000065UTR:nice_system:t._doran_"thetomcat" B000065UTR Jensen JHT525 5.1 Home Theater Speaker System: Electronics electronics 3 of 6 4.0 nice system August 25, 2006 T. Doran "thetomcat" westchester ny nice little system but only 4 ohms so doesnt handle a lot of power. Good sound for an apartment B000065UTR:great_speakers:wisconsin_dad B000065UTR Jensen JHT525 5.1 Home Theater Speaker System: Electronics electronics 9 of 9 5.0 Great Speakers August 19, 2006 Wisconsin Dad Fond du Lac, Wisconsin United States For the cost, you can't go wrong with these speakers from Jensen. We love them, and in shopping around found them to be one of the best home theater values. The sound is great, and the speakers are perfect for just about any home theater need B0002XJUZG:the_printer_with_an_unsatiable_appetite:d._kaczor B0002XJUZG HP No. 100 Gray Photo Ink Cartridge (C9368A): Electronics electronics 2 of 2 4.0 The Printer With An Unsatiable Appetite August 24, 2006 D. Kaczor Buffalo, New York Purchased this iterm for my HP8450 printer. Pictures are outstanding and the cartridge does the job.Only problem is the cartridge gets eaten up in no time at all. Cost per print no bargain. Problem isn't with the catridge, but with the printer and print process. Now we know why HP has printers at such reasonable price. They eat you up and spit you out via the price of cartidges. That's where the real profit lies. Amazon is tops in price and service delivery B00008RGYL:canon_makes_the_best_photo_paper_out_there!:creative_creature B00008RGYL Canon 7980A019 Borderless Photo Paper (5x7, 20 Sheets): Electronics electronics 5.0 Canon makes the BEST photo paper out there! July 26, 2006 Creative Creature New York About 2 1/2 years ago I finally got into the digital age. I began printing my own pictures and have tried every brand of photo paper out there (Kodak, HP, store brands, etc. etc.). By far, the most superior paper is Canon. They make fabulous photo paper that is reasonably priced and prints GREAT photos. I did a wedding album using Canon photo paper and the couple I gave it to thought that the photos were as good as the photographer they'd hired, which speaks volumes to the quality of Canon paper. I'd highly recommend that people use this brand. You won't be sorry B0000C8CG6:excellent_sound_for_those_willing_to_take_a_risk:idiot900 B0000C8CG6 SHURE E2 High Energy In-Ear Earphones: Electronics electronics 7 of 10 5.0 Excellent sound for those willing to take a risk February 6, 2006 Idiot900 New York, NY United States Echoing most other reviews here, this is an excellent set of earphones that are well worth the money. But buying them is a risk! If you don't wear these earphones correctly, they sound terrible, easily shown up by any pair of throwaway phones. Those unsatisfied with the sound quality (especially those complaining of lack of bass) either haven't put them in correctly or have oddly shaped ears. Learning how to put them in properly takes time. Be prepared to spend a few hours fiddling with them and trying the different included cushions. Once you teach yourself how to put them in, it will only take a few seconds. Some tips: Before inserting the earbuds, draw the phones up from behind your ear, holding the earbuds in the correct orientation (drivers pointing medially), so the wires fall naturally between your head and pinna and the earbuds are just outside your ear canals. With one hand, pull the superoposterior part of the pinna in a superoposterior direction while inserting the earphone with the other. This straightens the ear canal and makes it easier to insert the earphone. (Your doctor uses the same maneuver when he/she examines you with an otoscope.) You may also wish to twist the earphone during insertion so that it lodges itself better. If the phones are properly inserted, they will have sealed your ear canals and you may want to relieve pressure via your Eustachian tubes (that is, swallow), just as on a climbing plane or skyscraper elevator. It may seem like it takes a lot of work (and possibly learning a bit about anatomy) to get these earphones to work as intended. It does, and success is not guaranteed. But it's worth it! And to save your hearing, don't forget to turn down the volume, since your music will no longer have to compete with outside noise B0007UVYLW:amazing_picture_with_one_regret:s._winograd B0007UVYLW Sharp LC-37D7U 37" Aquos Widescreen LCD TV: Electronics electronics 10 of 12 4.0 Amazing picture with one regret September 5, 2005 S. Winograd This was the largest set that would fit into my space. I also looked at the Westinghouse 37 inch HD moniter at Best Buy. The first time, I looked at the Westinghouse the picture looked a bit fuzzy. Then I read the review on CNET which said the Westinghouse picture was actually better than the Sharp. I went back to Best Buy and asked the sales person if the picture on the Westinghouse could be improved. He said it was as it good as it could be. He than said the Sharp was twice the price of the Westinghouse, so I should expect a better picture on the Sharp.In any event, I purchased the Sharp on Amazon during the recent Electronic Express Sale. On HD, the picture is amazing. It's also quite good on regular TV. My only regret is that Toshiba has just come out with a 37inch LCD with a DVD built in. If I had known, I would have waited to check out that model B0009Z66QI:dead_pixels:sys_man B0009Z66QI ViewSonic VA902B 19" LCD Monitor (Black): Electronics electronics 6 of 6 4.0 Dead Pixels June 5, 2006 Sys Man Richmond, MI We bought 3 of these and every one has dead pixels. It's not a ton, but one monitor has three that are red in the center of the screen, and other has a few that are bright green in the corner. Not a huge deal, but there are some in all 3 B0006U6GH0:great_sound:avid_reader_"dave" B0006U6GH0 JBL Creature II Powered 3-Piece Multimedia Speaker System (Black): Electronics electronics 5.0 Great Sound November 9, 2006 Avid Reader "Dave" New York This is my second purchase of these speakers.They provide great sound especially for the price.My kids use them with their computers and Ipods.I recommend them to everyone B0006U6GH0:killer_sound:carlene_y._quarre_"qmaui" B0006U6GH0 JBL Creature II Powered 3-Piece Multimedia Speaker System (Black): Electronics electronics 1 of 2 5.0 Killer Sound July 23, 2006 Carlene Y. Quarre "QMaui" Maui, HI Really don't think you can get better sound for your dollar. Not only look cool, but sound great. Have only had for two months, but no issues. B000BGZMY2:great_drive:michael_a._gilhooly B000BGZMY2 Seagate 160 GB 3.5" USB 2.0 External Hard Drive ( ST3160203U2-RK ): Electronics electronics 5.0 Great Drive November 4, 2006 Michael A. Gilhooly Before i bought this product, i was contemplating which brand name hard drive i should go with. I was told Seagate was top of the line. It truly is. No problems at all, easy to setup and use, and a fair price. I highly recommend Seagate over any other brand name (I've heard problems with other brands) B000BGZMY2:impressive:animate_~_"rob" B000BGZMY2 Seagate 160 GB 3.5" USB 2.0 External Hard Drive ( ST3160203U2-RK ): Electronics electronics 3 of 4 5.0 Impressive July 18, 2006 animate ~ "Rob" Fayetteville, NC This is a great little piece of hardware. I bought it for my MP3's and movies, and I'm very pleased. It's totally "plug-n-play"; there aren't even any drivers that need updating, assuming you have XP up to par. It gives 160GB (well, 149 in actuality) of space to work with. After moving nearly 50 gigs over to it at once, on the first day, it froze up. After that minor incident, I've had no problems, though, and my machine runs alot faster because of it. With my 100G of music already on it, I'm very happy with it. It has given me no fuss--it doesn't even give me any noise! It's as silent as a fart, and that's a big plus. I found mine at Wal-Mart for $114 and I think that I made a good purchase. If you're on a budget, this is about as good as it gets. Seagate's 300GB is also highly recommended, as I've worked with it before. A+ B000BGZMY2:very_pleased_with_this_drive:hypn0toad B000BGZMY2 Seagate 160 GB 3.5" USB 2.0 External Hard Drive ( ST3160203U2-RK ): Electronics electronics 2 of 2 5.0 Very Pleased with this Drive June 11, 2006 hypn0toad Raleigh, NC USA This drive is whisper quiet, easy to install and use, and in my experience, plenty fast. I recently encoded my CD collection in flac format and am using this drive to store files. I also used foobar2000/LAME to convert the flac files to MP3, all on this drive. During the process of converting the files, which is pretty IO-intensive, I found the drive to be completely reliable and the speed to be more than adequate B0002T74QC:great_for_a_small_radio:ruby B0002T74QC Boston Acoustics Receptor Clock Radio (Charcoal): Electronics electronics 1 of 1 4.0 Great for a small radio October 27, 2006 Ruby Ohio I purchased this radio to keep on my kitchen counter. I chose Boston Acoustics over Tivoli because you can't preset the stations in the Tivoli and I like to flip through commercials. Other reviewers wrote that the bass can be overpowering. I listen to rock music and do not notice the bass. My complaint is that this radio advertises itself as picking up weak stations very clearly. It does not pick up stations much better then the other radios in my house. Also if you are listening to the radio you can't see the time display. This radio is great if you have limited space. It looks good and sounds like a much larger radio. It has a lot of power for a small radio. B0007LJHVK:garmin_dash_mount:michael_clements B0007LJHVK Garmin Dash Mount for StreetPilot c320, c330, and c340 Vehicle GPS Navigators: Electronics electronics 2 of 2 5.0 Garmin Dash Mount November 9, 2006 Michael Clements Iowa Excellent accessory, portable and you do not have to apply anything permanent to your vehicle....highly recommended B0000BVV37:good_product!:joel_moreno_"jo_black" B0000BVV37 TRENDnet Bluetooth USB Adapter: Electronics electronics 5.0 Good product! November 6, 2006 Joel Moreno "Jo Black" Santo Domingo, R.D. Wow! Now I can transfer all I have in my PC to my cellphone. It's awesome... I need no cable to transfer stuff from my PC to my cellphone and from my cellphne to my PC. You can get this item in a very special price. Get it!! B00006343J:high-end_speaker_connectors:david_c._kraus_"stereo_lover" B00006343J Monster Cable QL GAS-H QuickLock Gold Angled Spade Connectors (2 Pair): Electronics electronics 1 of 1 5.0 High-End Speaker Connectors August 18, 2006 David C. Kraus "Stereo Lover" I own a set of older Martin Logan speakers. Their quality is legendary with a price to match. So I was interested in maximizing performance. When I called their office for advice, one of the tech guys (excellent service, by the way) told me the Monster banana plugs were great, not the best or most expensive available, but a good value. That was enough for me. My speakers are bi-wired so I purchased two sets of four plugs. Installation was a snap and the sound is wonderful. Add to that the free shipping, no tax and a total price saving of $12.00 and you can't do better than Amazon! B00004SDB1:stick_with_brother_cartridges--not_the_cheaper_versions:elena_mauceri_"www.powerfulweightlosssolutions.com" B00004SDB1 Brother TN460 High Yield Toner Cartridge: Electronics electronics 1 of 1 5.0 Stick with Brother cartridges--not the cheaper versions October 8, 2006 Elena Mauceri "www.PowerfulWeightlossSolutions.com" This ain't cheap, but it's worth it. I've learned my lesson buying cheaper toner cartridges, but they don't even come close to the quality and longevity of the Brother brand. You get what you pay for.. B00004SDB1:very_nice:alexander_pruss B00004SDB1 Brother TN460 High Yield Toner Cartridge: Electronics electronics 10 of 12 5.0 very nice April 19, 2004 Alexander Pruss Washington, DC United States No problems with these, and great price at amazon B0000T7162:great_little_mp3_player:m._duggan_cooley B0000T7162 iRock! 860 256MB MP3/WMA Player with FM Tuner: Electronics electronics 3 of 3 4.0 Great little MP3 Player December 20, 2004 M. Duggan Cooley Gainesville, FL USA This is an awesome little MP3 player. I enjoy both the MP3 player and the FM radio. It is very easy to use and syncs well with Windows Media Player. It is perfect for going to the gym because it is so small. It came with a great leather case that fits it well and prevents damage and scratches. My only problem with the player is that I can't fit more than 66-69 songs although it says there is about 70MB of space left on the player B000BKI6NM:excellent_and_stable:mr._henry_williams_"digitalhen" B000BKI6NM D-Link Super G with MIMO Wireless Router DI-634M - wireless router ( DI-634M ): Electronics electronics 1 of 2 5.0 Excellent and stable September 15, 2006 Mr. Henry Williams "digitalhen" Jersey City, NJ USA I've been using this router for a few days. I just had to set it up - I haven't had any cause to touch it since, it's very reliable. Highly recommended B00004TDN2:visor_deluxe:john_d._whelan_"visor_man" B00004TDN2 Handspring Visor Deluxe (Graphite): Electronics electronics 4.0 Visor Deluxe September 30, 2005 John D. Whelan "Visor Man" NH Unit works about as expected, with possible exception of a few areas of the screen that are not too sensitive to the touches from the stylus. So far I am working around that. This is my 3rd Deluxe and the 1st one to give any operational problem of any sort. Generally a good product B00004TDN2:wowzas!:simone_r._worsdale_"simone" B00004TDN2 Handspring Visor Deluxe (Graphite): Electronics electronics 2 of 2 5.0 Wowzas! June 16, 2005 Simone R. Worsdale "Simone" Miami, FL Yeah, so apparently this was a really good PDA to buy. I BOUGHT THIS THREE YEARS AGO AND IT STILL WORKS! Ive been searching for a new PDA since I thought this one was so out of date, and when reading all the reviews I came across many new "state of the art" PDAs that broke after only a few months. This baby has been great to me for three long years, so if you are looking for a reliable buy, go for this. Definately NOT flashy, very basic. All I use it for is appointments, dates, and to-dos. GREAT FOR STUDENTS WHO WANT TO USE A PDA AS AN AGENDA! Good luck on your PDA search! B00083MW2S:just_great:gustavo_diaz_"guss" B00083MW2S PalmOne 3218WW Aluminum Hard Case for LifeDrive Mobile Manager: Electronics electronics 0 of 2 5.0 Just great February 24, 2006 Gustavo Diaz "Guss" Doral, Florida I am working with my new PDA the Live Drive and is great to have akk ny videos, music and to write my notes and documents before my shift or meeting, and also the wireless connection is so great. I like the option that you can use it as an external drive B0001407XU:great_drive:denise_m._godfrey B0001407XU Seagate ST3200822A-RK 200 GB ATA Internal Hard Drive: Electronics electronics 0 of 2 5.0 Great Drive July 14, 2006 Denise M. Godfrey Lithia, FL USA I am extremely happy with this purchase and will most likely purchase another one of these, soon B0007OWNBS:beware_if_you_run_xp:robert_gordon_"batj" B0007OWNBS Netgear RangeMax Wireless PCI Adapter (WPN311): Electronics electronics 5 of 6 4.0 Beware if you run XP July 11, 2005 Robert Gordon "batj" Colorado Springs Netgear clearly has not figured out how to make their RangeMax adapter work well with the Microsoft XP operating system. If you're not a techie, I'd stay away until Microsoft has certified the WPN311. Here's what I experienced: 1. Installed using the Netgear WPN311 automated configuration. 2. After installation completion and boot up, CPU utilization was at a solid 100%. Executable from Netgear named WLANCFG5.EXE taking up a bunch of the CPU and Microsoft routines CSRSS.EXE, NET.EXE, and NET1.EXE taking the rest. 3. Emailed Netgear and received response to use Task Manager to delete WLANCFG5.EXE. Did so for all users. 4. Hey! CPU utilization returned to normal! 5. Sent next email to Netgear pointing out that this solution is just a "patch" and WLANCFG5 would return when I re-booted. 6. Received response to de-install and re-install software for WPN311. 7. Did so, but then Netgear adapter software could not find my MIMO wireless router! And usage of the Netgear adapter software doesn't allow you to use the Microsoft Wireless Zero Configurator (WZC). 8. Went to microsoft.com and looked up error 871122 "Error message when you try to run the Wireless Network Setup Wizard" and followed the instruction to allow usage of WZC. 9. Then able to add my wireless router and everything is ok. The functionality works great. It's the getting there that's not too pretty good..... B00003CWDQ:buy_with_confidence.:straight_shooter_"redpoppy" B00003CWDQ Monster Cable MP HTS800 Home Theater PowerCenter HTS800: Electronics electronics 0 of 1 5.0 Buy with confidence. August 29, 2006 Straight Shooter "redpoppy" USA I lost my previous RadioShack surge strip and the various pieces of equipment attached to it in the Queens power failure and wanted something dependable. The price is great for its rating and all the stuff included, and it is kind of cool-looking too! Recommend without reservation B00003CWDQ:faint_high-pitched_tone:daniel_von_kohorn B00003CWDQ Monster Cable MP HTS800 Home Theater PowerCenter HTS800: Electronics electronics 2 of 2 4.0 Faint high-pitched tone March 23, 2006 Daniel Von Kohorn Boston, MA USA I'm using the Monster Cable MP Home Theater PowerCenter HTS800 to remove line noise in the electrical current to a high-end tube pre-amp. The line noise is removed beautifully; however, the PowerCenter itself creates a high-pitched tone. The tone comes out of the PowerCenter device directly. If you are planning to use this product on a high-end sound system, I recommend placing it in a location that is acoustically isolated. B000E1FYQA:nice_buds_for_the_price:infusion B000E1FYQA Sennheiser CX300-B Earbuds (Black): Electronics electronics 2 of 2 4.0 Nice buds for the price November 9, 2006 Infusion CA, USA For the background, I've owned & used various IEM (In-Ear-Monitor) headphones over the years: Ety ER4p, Altec Lansing iM716, Shure E2c, Sony EX71, Koss KSC75. Here's my quick impression after using these headphones for a week: Pros: 1. Very good bass & well balance (not as bloated as the Sony EX71, the ER4p has tight but the least bass-feel/effect.) Mid-range is good. Treble is just a little bit harsh right out of the box (but can be tamed with EQ.) 2. Easy to drive (with the iM716 phones, I'd need to crank up the vol.) 3. Very light weight 4. Comfortable tips (3 sizes included) 5. Decent isolation from outside noise (the ER4p &iM716 have better isolation) 6. Moderately priced ($50) Cons: 1. Cables are thin so handle with care. 2. Some people may not like the "phonendoscope effect" (cables frictions.) This is very common with IEM headphones, some are more than others. 3. No pouch or case PS: For bass-heads, you will like these IEMs - from an owner of Beyer DT770-80's experience : B000E1FYQA:people_need_to_understand...:a._sako B000E1FYQA Sennheiser CX300-B Earbuds (Black): Electronics electronics 3 of 3 5.0 People need to understand... November 7, 2006 A. Sako Los Angeles, CA USA All in-ear headphones will make some noise when the wires brush up against something. Sound travels along wires... it's physics, there's nothing you can do about that. Now, these earphones are incredibly light-weight and the wires are thin so that actually reduces the noise traveling through the wires. These headphones are called "asymmetric," meaning that the right earbud is on a longer wire than the left. You wear this by putting the wire on the right earbud BEHIND your neck. This leaves the area in front of you clear of wires that could get tangled up in your hands. This also makes it easy to each lunch while listening to music so your food doesn't spill on the wire. I paid about 60 bucks and for that price, I love these headphones. Face it, these are low to mid-range in terms of price, but perform more like mid-range to high range if you ask me. The cable is thin and flexible yet seems pretty resistant to damage. The buds are comfy and I like the asymmetric design. People need to realize that there are premium headphones for $500 or more. I think people need to keep perspective and not have TOO high expectations from only a $60 pair B0001YFX7U:consistent..:yong_oh_"bookie" B0001YFX7U Ridata 8x 4.7 GB DVD+R Spindle (100 Discs): Electronics electronics 1 of 6 5.0 Consistent.. September 9, 2005 Yong Oh "Bookie" Fairfax, VA This is the 4th spindle I've ordered and I haven't had a problem with any of my DVDs. B000A1GAVW:ipod_home/wall_charger_-_great:cookie_queen B000A1GAVW iPower iPod Home and Travel Charger for iPod Nano, G5 Video, G4, Photo & Mini: Electronics electronics 5.0 Ipod Home/Wall Charger - GREAT November 9, 2006 Cookie Queen Healdsburg, CA This little charger works great. It is the second one of it's kind that I have purchased. The last one took a lot of abuse and therefore I needed to replace it. Would buy it again. Charges quickly and is quite handy B000FRW8KS:nice!!_this_is_sweet!:ribbla B000FRW8KS Fang Gamepad by Ideazon: Electronics electronics 2 of 3 5.0 Nice!! This is sweet! July 13, 2006 Ribbla The Fang is amazing!!!!! I just got it,theres nothing like it. The keyz are in the perfect spot to kill all your fellow gamers. all you need is the fang and a mouse and your good to go. you have to get this if you want to stand a chance in FPS games. B000EP5MOA:excellent_ipod,_my_favorite_so_far.: B000EP5MOA Apple 4 GB iPod Nano Green (2nd Generation): Electronics electronics 7 of 7 5.0 Excellent iPod, my favorite so far. November 22, 2006 I love the new nanos. I don't think I have anything bad to say about it besides it not having a radio. It is small and very thin. You barely feel it in your pocket, which might annoy some people but not me. I'd rather get this than any Zen products or Sandisk Sansas because it looks way better and it way thinner. The screen is really bright with the full color display. The new earbuds are A LOT more comfortable than the old ones. The new ones aren't as bulky and actually fit in my small ears with out them slipping out. I don't know why people hate the sound of the earbuds but they are certainly loud and good enough for me! The new color coating is scratch resistant, but not the click wheel and the Apple symbol. But you don't notice the scratches on the white parts. The longer battery life is twice as long as the first generation nano, 24 hours! The new 4 GB color nanos are the same price as the 2 GB of the 2nd gen nanos. I'm so happy I waited after the 1st gen nanos came out. I would never get the 1st gen nanos now since they scratch easily, have a dark screen, and have a short battery life. The new nanos are great deals and great gifts. I recommend this mp3 player to anyone that wants a good, reliable, scratch resistant, cool looking music player! 5/5 star B0007UQ6LK:works_great_with_my_nokia_e62:farhan_n._hassan B0007UQ6LK SanDisk 1GB miniSD Card (SDSDM-1024-A10M, Retail Package): Electronics electronics 5.0 Works Great with my Nokia E62 November 10, 2006 Farhan N. Hassan Tracy, CA I am satisfied. Works great with my Phone Nokia E6 B0007UQ6LK:works_like_a_charm:y._beverly_"tech_gadget_addict" B0007UQ6LK SanDisk 1GB miniSD Card (SDSDM-1024-A10M, Retail Package): Electronics electronics 1 of 1 5.0 Works like a charm November 3, 2006 Y. Beverly "tech gadget addict" Baltimore, Maryland United States I have to say, when I first purchased this little goodie, I just assumed I was buying more memory for my Motorola Q. I had no idea just how useful and reliable this would be. It has proven to be not only invaluable, but a very good investment, based on price and usage. Buy one, no TWO. These things are great B00005NIMJ:great_product:daniel_f._boehlke_"usadan" B00005NIMJ Logitech Trackman Wheel Optical: Electronics electronics 5.0 Great Product November 2, 2006 Daniel F. Boehlke "usadan" San Francisco, CA United States I'm a big fan of trackballs and this one is my favorite on the market right now. Just love it B0006ZBHWY:works_with_a_macbook:david_relyea B0006ZBHWY Western Digital 80 GB Passport 2.5-inch External Hard Drive: Electronics electronics 2 of 2 5.0 works with a MacBook July 31, 2006 David Relyea Glendale, CA I thought I'd weigh in, as the reviews suggesting noncompliance with Apple products seemed ominous. I bought a Passport, and the USB outlet on my Macbook powers it perfectly well. I don't need an external power supply. Btw, I get a transfer rate of about 2 Mb/s, or 1 Gb/5 minutes. This seems a little slow, but it doesn't bother me much. The Passport is small, has a nice rubber coating to prevent shock, and overall is worth the purchase price B00020T4UK:higher_quality_ink-jet_printable_dvd_discs:j._ferreira B00020T4UK Verbatim DVD-R 4.7GB 8X DataLifePlus White Inkjet Printable, Hub Printable 50pk Spindle: Electronics electronics 2 of 2 5.0 Higher Quality Ink-jet Printable DVD discs March 17, 2006 J. Ferreira Providence, RI These Verbatim discs have the DataLife Plus layer of protection that will allow them to last 100+ years. I'm a professional photographer and it's crucial to store my client's digital photos and artwork onto a disc that will remain stable in years to come. I've tried many brands and types of discs and have lost data (read errors) many times but so far with the hundreds of Verbatim discs I've burned so far, I haven't had a problem yet. The Kodak brand discs were also excellent, but Kodak discontinued making them. SONY also makes a good disc. These discs can be printed on directly with an ink jet printer such as the Epson R200/R300/R320, and the surface area is printable right up to the hub! I have no reason to switch to any other brand as long as Verbatim continues to make a great disc B00020T4UK:hub_printable!!:gaijin_"...yep_it's_me" B00020T4UK Verbatim DVD-R 4.7GB 8X DataLifePlus White Inkjet Printable, Hub Printable 50pk Spindle: Electronics electronics 5 of 6 5.0 Hub Printable!! August 7, 2005 Gaijin "...yep it's me" Hilo, HI United States These Verbatims are terrific. As you may know, working with DVD-R media is almost a gamble...cheap media will save you a few pennies but either give you coasters or media that plays on few players. Sticking to name brands helps, but even then, some brands rely on outside sources for their media and while one lot/batch may be good, the next batch from the same brand may be from somewhere else. Usually, you're safe with media made in Japan. These Verbatim's are made in Taiwan but, they are great..I've bought one every couple months and I'm on my 3rd spindle now. They have a wonderful printing surface that as mentioned, dries nearly instantly in Epson printers (I use an R200). Hub printable so you can print all the way to the edge which gives your discs a terrific look when printing nice disc art or photos. Not one coaster so far, burned with Apple Powerbook 2X Superdrive as well as a Lacie D2 Firewire writer. Though the media is 8X, it works in my Panasonic DVD Recorder (DMR-E55) which recommends up to 4X media perfectly). So far, I have not encountered one person who has not been able to play the discs (Samsung, Sanyo, Panasonic, Sony, Apex, Toshiba DVD Players, PS2, XBox, no problems) . Over 134 discs so far, and they look great, play great, and are a great price for hub printable discs. Highly recommended...I'm ordering more! B000BBYH8O:two_thumbs_up_for_quickcam_notebook_pro:david_k._bowen_"boholiday" B000BBYH8O Logitech Quickcam for Notebooks Pro: Electronics electronics 1 of 1 4.0 Two Thumbs up for Quickcam Notebook Pro November 3, 2006 David K. Bowen "boholiday" Miami, Florida Notebooks Pro is the highest rated webcam (for notebooks) on the market and for good reason. Audio and Video quality is excellent. You can talk normal and be 2 or 3 feet away with no problem. The echo cancellation feature is a true must for webcams, especially with the use of video. On the negative side the USB cable is too short which limits interchangeability with your desktop. Also, I have the Quickcam Fusion for my desktop which is a 5 star rated product and without doubt the best of the best webcams overall. Logitech ships that product with Quickcam 10 software which is probably a nice update to Quickcam 9 the Notebook Pro uses. Unfortunately, Logitech provides little detail and info on these technical and software issues. B B000BBYH8O:logitech.._i_am_pleased:bhavya_k._desai B000BBYH8O Logitech Quickcam for Notebooks Pro: Electronics electronics 1 of 1 5.0 Logitech.. I am pleased October 20, 2006 Bhavya K. Desai New York I had the previous version also. It is so far the best webcam I ever owned. Don't even bother to compare it with cheap creative ones. The frame rate and picture quality is awesome. Works in very low light conditions and has great software which can even make gieco or alien out of you. They keep on working for years. My old one "Quickcam for notebooks Pro" still a champion after use of 3 years now. I got bored and gave it to my uncle. And boy he loves it too. Newer one as mentioned by other reviewers holds much better. Do I sound Like a logitech sales person? Well I must admit that I am very happy with their webcams. Amazon offers get price and you should get it. One more thing. It's features outweighs its small size :). My Parents back in other part of world can see even tiny things in my room which they shouldn't :). B00006B9CR:great_mouse_-_esp._if_you_have_carpel_tunnel_in_shoulder:d._forster_"computer_user" B00006B9CR Logitech Cordless Optical Trackman (USB/PS/2): Electronics electronics 4 of 4 5.0 great mouse - esp. if you have carpel tunnel in shoulder August 6, 2006 D. Forster "computer user" Fulton, MO I got this mouse because I have developed carpel tunnel pain in my shoulder from years and years of mouse activity. I'm happy to say it is nearly gone (the pain) - I ordered one for my office and will now get one for home. It does take a bit of getting used to (after years of movable mouse action) - but it can be done. Good luck B000ELSVOM:great_cable_at_a_decent_price:r._denardis B000ELSVOM Creative Zen Vision: M Video Cable: Electronics electronics 2 of 2 4.0 Great Cable at a decent price November 5, 2006 R. DeNardis Pittsburgh Unlike many other cables that splice A/V output, this cable does so while retaining the details of that output. I.e., both Left and Right channels are extracted and outputted, not simply the Left channel with audio mixed down to mono. Also, it works on some computers, too! On the minus side, I haven't gotten it to work on the television. In order to do so, you also have to buy the adapter for the Creative Zen player. I bought this so my Creative Sleek Photo would be compatible with an X-Rocker chair with built in speakers, and found that CD players and many other audio units became compatible, too. For that, it was worth the cost B0001WW3F2:good,_could_be_easily_improved:r._johnson B0001WW3F2 Griffin Technology RadioShark AM / FM Desktop Radio with Time-Shift Recording: Electronics electronics 4.0 good, could be easily improved November 5, 2006 R. JOHNSON Portland, OR US I am running the RadioShark on a G4 PowerBook w/ Mac OS X 10.4. I am very happy with the programmed recording - saves to a variety of formats, etc. Very handy! The unit did all that it promised, but it could have had much better software. A Dashboard Widget is also included that controls basic operation, but not recording or EQ. Needed additions: 1. Station presets are selected from a drop down menu??!? One has to go to the RS menu bar (top of screen) to find the favorite Stations - kind of klunky. Better to have "radio buttons" associated with the App window. To be fair, the Widget does have better station selection, but the button is labeled with a 'heart'... 2. No station "scan" function. One has to dink through the entire spectrum manually - wow - hard to understand this lack of functionality. 3. Some additional audio filter/edit functions could be included. There is a multi-band EQ that works well, mostly (see comment below). At minimum there should be a hiss filter and a hum filter with variable levels of effect. Also, one should be able to edit out unessential material from an audio file. Though, for Mac OS X there is a nice freeware app that can do this: AUDACITY. Oddities 1. When first installed, the output had static in it which was worse with the EQ on. Griffin Tech Support was not very helpful - as with most tech support offerings, they failed to grasp the actual problem and replied with unhelpful suggestions. Re-installed software and it began working well. 2. Initially did not seem to work well thru an external (powered) hub; now has no problems. Though, unit does work okay with a USB extension cable B000BVCTS4:itrip_is_a_trip!:crackerjack B000BVCTS4 Griffin Technology 9631-NANOTRIP iTrip Nano LCD/FM Transmitter for iPod Nano, Black: Electronics electronics 5.0 iTrip is a trip! November 9, 2006 Crackerjack Columbia, SC This is a total bargain. Not only was the price right, it works perfectly in the car, at home converting every radio to a stereo system for my iPod Nano. When they're put together it looks like one unit and if, by chance, you use a Motorola Rzr phone the charger works with he iTrip and recharges the Nano, eliminating the need for any other charger devices B000DIM9AS:just_right_:kennth_c._schneider B000DIM9AS Coby TF-TV505 5" LCD Color Television: Electronics electronics 5.0 Just right November 10, 2006 Kennth C. Schneider The over-the-air picture is crisp, colors are bright and the size is just right. Pretty good viewing angle as well B0000C8Y55:wireless_logitech_mouse:jeffrey_d._smith B0000C8Y55 Logitech Cordless Optical Mouse for Notebooks- Silver: Electronics electronics 5.0 Wireless Logitech Mouse March 29, 2006 Jeffrey D. Smith I totally recommend this mouse. I purchased the 1st mouse a few months about and just now bought another one for my other laptop. I like it that you have an assortment of colors you can chose from also. The battery life is pretty good also B0002DQUHC:mac_users_beware:bud_lengtat B0002DQUHC D-Link DWL-G122 Compact Wireless USB Adapter, 802.11g, 54Mbps: Electronics electronics 1 of 2 4.0 Mac users beware November 9, 2006 Bud Lengtat Grass Valley, CA USA I use this with an iMac. It does not come with drivers for Mac OS X, nor does D-Link offer any help. They refuse to admit it will work with Macs. I was pointed toward a driver made available at [...]. I remember having trouble getting it to work, but once it was working it has worked well and consistently. The iMac connects to an AEBS a couple rooms away through the D-Link B0006B486K:thank_goodness_i_found_these!:fred_schendel_"fredproggh" B0006B486K Koss KSC75 Portable Stereophone Headphones: Electronics electronics 1 of 2 5.0 Thank goodness I found these! October 1, 2006 Fred Schendel "fredproggh" Chattanooga, TN I have been going nuts trying to find a decent set of headphones for my new iPod. All I wanted was decent sound for a decent price, but after trying various models of ear-buds and standard phones and returning them all I figured I was going to have to shell out some big bucks after all. But, then I decided to pull the trigger on some cans made by a great old company from my youth that used to be THE only choice for headphones- KOSS of course! And man- they still have it. These aren't the greatest phones I've ever heard, but for $20 (and it seems you can now get them for half that!) they easily compare to some well-known sets costing 3 times as much or more. Finally, no awful hi-mid peaks that threaten to end my career as an audio engineer *cough cough Sony cough*. They are fairly comfortable- I think I would rather have the traditional over-the-head band but you get used to these pretty quick. These sound nice, full- the bass doesn't thump like a lot of people like but to my ears it's smooth. And most important, you can listen for hours without ear fatigue. Without a doubt, these are the best budget phones I've ever owned! My bottom line- anyone who doesn't grab these for $10 bucks a pop is insane. Period *g B000065BPA:very_nice_product:l._jackson B000065BPA Sennheiser HD-212 Headphones (Silver): Electronics electronics 5.0 Very nice product August 10, 2006 L. Jackson Mojave, CA USA I've tried several different brands of headsets and this one wins. It reduces noise, has excellent sound and is comfortable for hours at a time. My office is between the shop, where we make rocket engines, and the flight line on the airport, where airplanes are tested. Sometimes jet aircraft sit outside my window and perform engine run-ups, or idle the APU for hours. This headset reduces the white noise while still allowing me to hear the phone ring even when a local F-4 Phantom II tests the afterburner. B00006B9ZB:has_not_shown_me_trouble_yet...:d._farano B00006B9ZB Lexar Media 128 MB Secure Digital Card: Electronics electronics 4 of 6 5.0 Has not shown me trouble yet... June 26, 2004 D. Farano East Rockaway, NY United States Good price. Good company. I use this on my Kodak CX7300 and it's fine. Good product to buy B00006B9ZB:excellent_product:"deechan" B00006B9ZB Lexar Media 128 MB Secure Digital Card: Electronics electronics 6 of 7 5.0 Excellent product June 29, 2003 "deechan" Adelaise, SA Australia Works as advertised, have not had a single problem with it since installing it in my Tungsten T B0002DG0OA:exactly_what_i_wanted:a._scott-stoltz B0002DG0OA Audiovox D1708PK 7" Ultra Slim Line Portable DVD Player with Bonus Pack: Electronics electronics 5 of 5 5.0 Exactly what I wanted November 3, 2006 A. Scott-stoltz Bought this a few months ago for my 3yr old son. He loves it. We have used it in the car as well as when he goes to meetings with me. Never had a single problem with it B0002DG0OA:great_value!:j._rauber-hanes B0002DG0OA Audiovox D1708PK 7" Ultra Slim Line Portable DVD Player with Bonus Pack: Electronics electronics 6 of 6 5.0 GREAT VALUE! September 12, 2006 J. Rauber-Hanes Columbus,Ohio We bought this product for a long car trip and the kids loved it. I've also used it and thought the sound and picture were wonderful. It was exactly what we were looking for and for a fantastic price! We are very happy B00006JKW5:best_value_for_fiber_optic_audio:atomicwasteland B00006JKW5 Monster Cable THX-Certified Fiber Optic Digital Interconnect Cable (4 Feet): Electronics electronics 52 of 52 5.0 Best value for Fiber Optic Audio October 17, 2004 atomicwasteland Falls Church, VA USA I've bought several of these cables and have been very happy with my purchase. I've used them for hooking up my Gaming Systems, TV, Cable Box, and Receiver/DVD Player. (Note: I had to buy a small 3 in 1 Fiber Optic Switch Box to handle all these cables -my Receiver and TV only had one digital audio connection each.) I believe that these cables are the best name brand VALUES currently around for Fiber Optic Audio. What do you REALLY get for a "high end" fiber optic cable that is triple the cost of this cable? I don't know. I purchased one (which was "top of the line") and obscenely expensive, and of course it sounds great, but these cables sound great too. Plus, these cables ARE Monster cables, AND they are THX certified! What does THX certification mean? Below is a blurb taken directly from the THX website describing it: --- "THX is on the forefront of entertainment technology, offering products and services of unparalleled quality for post-production, distribution and playback of audio and visual content. THX Certification is considered a mark of excellence in the presentation technology industry, offering consumers a promise that the cinemas they visit and the products they purchase have been evaluated and tested to meet the highest standards for picture and sound performance." --- A digital signal is a digital signal. This is fiber optic cable -it uses light to transmit the digital data -it doesn't degrade like analog based on the quality of the cable. So these cables are NOT likely to give you a worse audio signal than more expensive cables, they just are going be a little less durable, and probably use slightly less high quality materials. Are they fragile? Not at all, but the top of the line cable that I purchased was so thick that I probably could have stepped on it on cement and it would have been fine. This THX cable is thinner and I could imagine it breaking more easily. If you work somewhere (like a studio) where there is a good chance of rolling things over the cables from time to time on a hard floor then you might have a good reason for a more durable cable. (Same goes for cables that are going to be manhandled regularly -i.e. a lot of plugging/unplugging and bending of the ends). Overall, I'm very happy with these cables and can I afford to buy a bunch for all the fiber optic audio connections I am now using (i.e. Receiver, TV, Cable Box, Xbox/Playstation/Gamecube) (P.S. for first time users, don't forget to pull off the tiny plastic coverings on each end of the fiber optic cables. These are there to protect the cable during transit/storage and will prevent the light from passing unless removed. Throw these tips away; you'll never need them again. B00023CJKE:great_phone:charlotte_b._street_"charlotte_street" B00023CJKE AT&T E5865 5.8 GHz DSS Expandable Cordless Phone with Answering System and Dual Keypads: Electronics electronics 13 of 14 5.0 Great phone April 2, 2005 Charlotte B. Street "Charlotte Street" Idaho I have had this phone now about 3 months and I am VERY HAPPY with it. IT has all the things and want and many more, The hand sets are very clear and I love the fact I can check voice mail on any hand set that goes with it I do not have to run to the main answering machine to check the voice mail. The range of the hand sets is great had no problem at all with this. So far I love everything with this phone, It is much better than either of the last two phone I have had. I have walked over a 1/2 block from the house and it still works clearly, I have never had a phone that worked so far away from home B0000BVYTV:not_bad,_given_the_price_i_paid!:j._chung_"calegend" B0000BVYTV Antec USB-Powered Notebook Cooler: Electronics electronics 1 of 1 4.0 Not bad, given the price I paid! September 4, 2006 J. Chung "calegend" CA, United States I purchased the Notebook Cooler approximately one month ago, after reading online testimonials of laptops becoming damaged from overheating. Thankfully, the same time I read that, Circuit City was having a sale on this item for only $15, after mail-in rebate. Fast forward one month and my opinion of the Cooler so far: not bad... My laptop is noticeably cooler to the touch now, and the internal fan rarely comes on. The Notebook Cooler itself is smartly designed, with an aluminum topping and two fans that draw away heat. I'll admit, the USB connector cable is a bit flimsy, and I can see why some folks have complained. For those users who travel frequently (or anyone who foresees plugging and unplugging the cable often), you may want to exercise extra caution. The blue LED light that some reviewer claims is too "strong" is a minor quibble--if you really wanted to, you could always tape over the light and problem solved. As for the fan noise, I would say the low setting is comparable to "white noise," which you don't really notice until you purposely try to listen for it! The high setting, on the other hand, is a bit loud, and I can see people having to turn up the volume on their speakers or TV to compensate. Usually, though, I only use the high setting when it's really hot in the room, or if I'm running intensive programs like Photoshop or some video game. Overall, I'd say I'm very satisfied with this product. (Though, I am somewhat disappointed that Antec needs 3 months to process my $15 rebate check.) B000F1O0X2:excellent_mouse:michael_g._reno_"gte987t" B000F1O0X2 Logitech MX 400 Performance Laser Mouse: Electronics electronics 5.0 Excellent Mouse November 9, 2006 Michael G. Reno "gte987t" Atlanta, GA The Logitech MX 400 mouse in my opinion was a good buy. It is very reliable, accurate, scrolls smooth, and is precise and responsive on every surface I have used it on. It is also light weight and comfortable, making it the purfect mouse for the price B00001P4ZR:as_sturdy_as_it_looks,_and_with_very_good_sound_for_the_price:n._winocur_"marik_steele" B00001P4ZR Koss R-10 Home Headphones: Electronics electronics 2 of 2 5.0 As sturdy as it looks, and with very good sound for the price October 26, 2005 N. Winocur "Marik_Steele" USA I bought two pairs of these when I saw them in a store on sale for under $15 each. They've both gotten extensive use over the past couple years. The cushioning on the outside is cloth inside a black material that I suppose imitates leather in looks and feel. This outer material on the cushions has worn off in flakes on both pairs, which makes it look raggedy, but the comfort and sound quality isn't affected by it so I don't consider it a big deal. The headband adjust on one side of one pair seems to have had something break inside it which lets that earmuff go farther down than it "should," but likewise, it's something to be expected with this much use and hasn't affected comfort. The cable is also thicker than most headphone cables I'm used to, which is good news for people who find themselves constantly rolling over cables with their chairs and such. I've compared the sound quality to the Koss QZ-50's (which I own) and a library's Koss UR-10's or 15's (can't remember which). Though the QZ-50's do sound better when they have their active noise cancelling feature turned on, the UR-20's are the most comfortable of the three, have the richest bass, are the most durable, and won't eat up your AAA batteries like the QZ-50's B000BSOBG0:perfect_for_the_office:hunter400_"hunter400" B000BSOBG0 Digilife Fold-Up Compact Speakers for Apple iPod (Travel Size): Electronics electronics 5 of 5 5.0 Perfect for the office June 19, 2006 Hunter400 "hunter400" New York, NY USA I recently bought these speakers because I wanted to play my iPod in the office. The sound is better then expected. While I would get a better speaker system for my home, for the office or on the go, these will do very nicely B00008YBCJ:adorable:l._plank B00008YBCJ D-Link - Antenna cable - N-Series connector (M) - N-Series connector (F) - 30 ft: Electronics electronics 10 of 11 5.0 Adorable January 9, 2003 L. Plank Missouri Myself and my grandchildren love to hold these adorable pets, their fun. lifelike and surprisingly sturdy. Get one! B000GABCY2:fantastic_mouse!:paul_grandmaison B000GABCY2 Logitech V450 Cordless Laser Mouse: Electronics electronics 1 of 1 5.0 Fantastic mouse! November 17, 2006 paul grandmaison Walpole, NH USA What a relief to find this mouse after having bought a Microsoft 6000 lazer mouse which caused my tendonitis to flare up again really bad. I had originally gotten really bad tendonitis from another Microsoft "ergonomic" mouse a year ago, which became chronic, but barely noticeable until I tried the 6000. I also tried a Logitech V200, which is a good mouse, just not nearly as comfortable as the 450. The buttons on both of these Logitech mice press down really nicely and are effortless. This was not so on the MS 6000. If you are looking for the ultimate in a mouse for a notebook, the Logitech V450 is it. My hands are fairly large, and for the $15 more than the v200, it is definitely worth it as I spend a lot of time on computers B000GABCY2:great_freaking_mouse:anh_lai B000GABCY2 Logitech V450 Cordless Laser Mouse: Electronics electronics 1 of 1 5.0 Great freaking mouse August 17, 2006 Anh Lai This laser version tracks much better on odd surfaces compared to the Logitech V200 I have. The Setpoint software allows you to use Setpoint's mouse sensativity independent of the touchpad settings. Finally!!! I dont have to change mouse sensativities when I unplug it. The Setpoint sensativity is an offset to window's sensativity setting for the touchpad. So basically, set your touchpad sensativity first, then adjust the Setpoint sensativity. They will be work just the way you want everytime you unplug/plug the mouse and going back and forth between touchpad and mouse. Perfect product B000BYZNMK:outstanding:jo_i._williams B000BYZNMK JBL On Stage II with RF Remote: Electronics electronics 2 of 8 5.0 Outstanding July 31, 2006 Jo I. Williams Mississippi JBL speaker system for IPOD is an outstanding product, I would highly recommend it B000BBCKOC:great_the_device_but_you_still_need_to_know_how_to_best_use_it!:s._lim B000BBCKOC NeatReceipts Scanalizer Professional 2.5 Mobile Scanner & Software Combination for Business Cards, Expense Management and Reporting, Document Organization, Scanning & Copying: Electronics electronics 1 of 1 4.0 Great the device but you still need to know how to best use it! October 22, 2006 S. Lim CA, USA This is a product too unique for me not too try. I've struggling with lost receipts and always in a panic mode when tax day comes. There's just no other easy way I've found to keep track of all my receipts. Even with some of the negativity about the accuracy on the receipt recognition, I still wanted to try this out for myself. I noticed the following will increase the accuracy of the receipt scanning: 1) Scan your receipt ASAP once you have it. Receipts are pretty cheap in quality and will fade over time. Also for that matter, you risk the chance of loosing the receipt the longer you don't scan it in. =) 2) Ink quality on the receipt matters. It does the best job when the dots of the letters/number are together and dark. 3)wording on the receipt. e.g. the receipt can say visa/mc then scanner will pick it as visa. Business card scans have been excellent for me. Be sure to upgrade your sw to the lastest version. Mine is 2.55 at the time of writing B00003CWA0:great_product_for_the_price:j._farkas B00003CWA0 Monster Cable IDL100-2M Interlink Datalink 100 6.56-Foot Low-Loss S/PDIF Style Digital Coaxial Cable: Electronics electronics 3 of 6 5.0 Great product for the price July 17, 2001 J. Farkas San Diego, CA United States I have used this and the optical cable. For $20 less, it sounds just as good. Monster cable is a great price point investment for anyone who wants to get the most out of their home theater system B00006FXR9:zenith_zhdtv1_hdtv-uhf_digital_indoor_antenna:c._tran B00006FXR9 Zenith ZHDTV1 HDTV-UHF Digital Indoor Antenna (Silver and Black): Electronics electronics 5.0 Zenith ZHDTV1 HDTV-UHF Digital Indoor Antenna November 11, 2006 C. Tran Texas Excellent antenna. Why pay so much more for other indoor antennas such as Terk or Samsung. I tried both of those but ended up with the Zenith at a fraction of the price and with much better reception B00006FXR9:great_antenna_for_hdtv_ota:henri_c._clinch B00006FXR9 Zenith ZHDTV1 HDTV-UHF Digital Indoor Antenna (Silver and Black): Electronics electronics 5.0 Great antenna for HDTV OTA November 9, 2006 Henri C. Clinch New York I live in Manhattan on the 7th floor of an apartment building surrounded by taller buildings on all sides and this antenna provides great reception. I use it hooked up to an HP 3200 lcd tv with built-in tuner. It took me less than five minutes from package being opened to finding the best place for the antenna to sit for reception. The cable is a few feet long and the antenna itself light. I have it resting atop my center channel speaker. $20 is a great price to watch the hd content the major networks provide- especially for football B00004Z5Z8:does_the_job:michael_kobylarz B00004Z5Z8 3M Gel Wrist Rest for Keyboard, Blue: Electronics electronics 5.0 Does the job November 9, 2006 Michael Kobylarz Sterling Heights, MI United States This is very comfortable and works very well. It's heavy enough that it doesn't move around or push the keyboard, as some of the other types of wrist rests that I've used have done. Yet it's cushiony while sturdy enough to provide support. B00004Z5Z8:comfort_for_the_keyboard:srf_"chinamom" B00004Z5Z8 3M Gel Wrist Rest for Keyboard, Blue: Electronics electronics 1 of 1 4.0 Comfort for the keyboard February 28, 2006 SRF "ChinaMom" Livonia, MI USA I type medical reports for a living, up to 10 hours a day and 7 days a week. Without the wrist rest, my wrists would not be able to hold up. The wrist rest is the perfect size. It stays in place on the desk. The gel continues to be supportive, even after a year of working on it. The only reason I did not give it 5 stars is because of the back of the wrist rest that lays on the desk has a horrible smell. I can't smell it while typing, only when I pick it up for cleaning. I wish there was the option for half stars - I'd give this 4-1/2 stars B0001DBEHY:ique3600:r._fenton_"old_time_sailor" B0001DBEHY Garmin Suction Cup Mount including speaker w/12V cable (iQue 3600 not included): Electronics electronics 1 of 2 4.0 iQue3600 September 28, 2005 R. Fenton "Old Time Sailor" Cape Coral FL. Works well....Customer support from Garmin....more than excellent...One complaint..Very short battery life...Requires a 12 volt charging adapter...Windshield suction cup charge adapter is a must to use as a G.P.S....Also...Get a minimum 512 MB SD card for combo marine and street navigation....One plus is the brightness,unit size,and screen size....Do not keep it in your breast pocket while on the boat...Dont float..not waterproof..nuff said B0001DBEHY:quality_item:george_p._ivy B0001DBEHY Garmin Suction Cup Mount including speaker w/12V cable (iQue 3600 not included): Electronics electronics 1 of 1 5.0 Quality item September 25, 2005 George P. Ivy Las Vegas, NV USA This product took less than 5 minutes to unbox, install, and work properly. Well built, and functions exactly as I would have hoped. I am impressed with the ability of the suction cup to stay attached, even in the summer heat of Las Vegas B0002GDIII:fine_product:marcos_kirsch B0002GDIII Apple AirPort Express with Air Tunes (M9470LL/A): Electronics electronics 4.0 Fine product October 30, 2006 Marcos Kirsch Austin, TX USA This is a very simple product that works as advertised. Easy to set up within MacOS X. I use the AirTunes functionality which is very cool. I don't use the USB printing. While more expensive than other 802.11g routers/access points, the simplicity + AirTunes functionality make it worth the extra money B00067OEVS:good_phone_system,_for_the_price:john_s._johnston_"fiction_reader" B00067OEVS Uniden CXAI5198 5.8 GHz Analog Cordless Phone with Corded Base and Answering System (Silver and Black): Electronics electronics 4.0 Good Phone System, for the Price November 9, 2006 John S. Johnston "Fiction Reader" Newnan, GA This Uniden phone/answering system has been trouble free since we bought it three months ago. Here's a list of the other things about this phone that I like most: 1. The corded handset base unit can be used to make and receive calls even when the electricity is off. This, along with price, was the main reason I bought this phone system. This feature is unusual for a cordless phone system. 2. The controls on the answering machine are simple and intuitive enough so that you don't have to refer to the manual when you need to set the clock or change the outgoing recording. 3. Also, the answering machine has operated flawlessly so far. 4. The battery life of the cordless handset has been excellent between charges. At least a week, sometimes more. 5. Voice quality of the cordless handset and the corded base handset are very good. However, there is something about this phone system that I don't like. --The cordless handset has a pretty limited range. I had to locate the base unit in a central location in my 2,300 square foot house to get the handset to work in all rooms. But overall I think the phone is a good buy, if you can live with the distance restrictions of the cordless handset B0002K6Y9E:excellent_value_for_the_price:trader_john_"trader_john" B0002K6Y9E Kensington Noise Cancelling Headphones ( 33084 ): Electronics electronics 3 of 4 4.0 Excellent value for the price April 24, 2006 Trader John "Trader John" New Jersey USA Very effective inside a plane comparing to the other noise cancelling headphone I have. Sound is ok for what it does. However, in a moving vehicle, it actually distorts the music which is a surprise. My other noise-cancelling headphone does not do that. It appears to have a relative long lag time in creating the opposite noise-cancelling wave. By the time the opposite wave applies to the music, the intruding noise is over. Otherwise, no complains B000A6LN0A:best_prints_ever!:colby_crossley B000A6LN0A HP Photosmart 475 Compact Photo Printer (Q7011A#ABA): Electronics electronics 18 of 18 5.0 BEST PRINTS EVER! January 13, 2006 Colby Crossley Omaha, NE USA I was debating over the PictureMate, Kodak Printer Dock 3, Sony DDP-FP50, and the HP Photosmart 475. I made the choice of the HP and I LOVE IT! The prints are 4800x1200dpi and look like real lab prints. I use the HP 4x6 boarderless Premium Plus photo paper with the HP Ink and the prints are just wonderful. Forget the other bad reviews because this printer beats them all. (...) The HP produces bright, vivid pictures designed to last a lifetime. The PictureMate is also alot larger than the HP 475. The 1.5GB hard drive is a plus as well. HP said that the remote is not included but they lied, they come with the remote and battery. Overall, this printer is the best I have own B0002IQ1F8:excellent_quality-_but_do_read_this:poweruser B0002IQ1F8 Verbatim Shiny Silver DataLife Plus 8x DVD-R Spindle, 50 Discs: Electronics electronics 2 of 2 5.0 Excellent Quality- But do read this October 6, 2006 PowerUser Los Angeles, CA USA These DVDs are absolutely top quality, and you really need to use bad DVDs to know how bad they can get. I ordered a pack a while ago and have burnt 7 discs so far. Not a single coaster, and Nero data verification (I always do that for DVDs) has not brought up any errors ever. BTW, the discs had a mixture of both large and very small files. The burner is the DVD multi drive on my Dell Inspiron Laptop (1505). However, I should mention (to those who haven't bought this product) why they are called Shiny Silver. You know that print on the top of DVDs with lines and that matte finish? Well, there's no such thing on these DVDs. The top looks a lot like the writing surface on the other side (other than the characteristic DVD color). Anyone who has seen unbranded DVDs will know exactly what I'm talking about- No special surface; however a felt tip marker works nicely to label the disks. Huge cost cutting here I guess, but definitely not in the quality department. I will buy again B0002IQ1F8:i_have_to_agree_with_many_on_this.......:mary_l_martin B0002IQ1F8 Verbatim Shiny Silver DataLife Plus 8x DVD-R Spindle, 50 Discs: Electronics electronics 2 of 3 5.0 I have to agree with many on this....... July 3, 2006 Mary L Martin I burn a ton of DVDs and have used almost every brand out there. Many have errors, even the top brand names like Memorex...etc. I have found the least amount of errors with this brand and the shelf life seems to be lasting. I've switched all DVD media purchases to Verbatim. They are by far, the best of them all. Would recommend to everyone B000B5XU06:sweet_sounding_plugs!:cubik_dervish_"mroddyssey" B000B5XU06 Ultimate Ears Super.fi 3 Studio Earphones (Black): Electronics electronics 6 of 8 4.0 Sweet sounding plugs! August 31, 2006 cubik dervish "mroddyssey" burque, usa First off, these puppies sound good! However, there are things anyone intending to buy these earphones should know: The sound is loud and crisp but definetely mid-trebley, as with most in-ear headphones. The low end is there, but for full effect, it takes to position the earphones just so in your ear canal at the right volume. Since they tend to slide out of the ear canal as one moves, this sweet spot is not very wide. That said, however, I recognize the difficlulty of delivering earth shaking bass in a device this small. Most bass-rich systems utilize either massive speakers/ woofers or chambered enclosures (or both) to deliver. Since the size of this type of headphones doesn't permit for either big speakers or special chambers, maybe the thing to do is to use the human cranium as the resonating chamber! I am yet to find any in ear headphones that really deliver bass to die for. Such is the difficulty to get big bass in so compact a package. Maybe the 5 and 7 series are better in this regard (for the price they better be). So if you really need earth shaking bass in your playback, look into buying those pricey phones. The lack of such bass is the only reason i didn't give it five stars. Also, the lack of colored LEFT (blue or white) & RIGHT (red) tags on the earphones make it tricky to put on for the first time. I didn't realize I had them reversed until the pain got so unbearable I just had to check. So be careful. Riding while using them can be dangerous, since the sound isolation is so great one can barely hear jets thundering overhead. Bang for the buck, ( I paid $69.99 on amazon), I really recommend these headphones to all but big bass aficionados. B0002VMDJI:great_add-on:a._j._dong B0002VMDJI Panasonic KX-TGA650B 5.8GHZ Expandable 2-Line Handset for use with KX-TG6500B/6502B (Black): Electronics electronics 4.0 great add-on November 11, 2006 A. J. Dong San Marcos, CA USA I purchase two of these phones to add to our base unit. Very easy set up. Quality product B00006HODF:woks_great!!!:"siddhaarth" B00006HODF Lexar Media 128 MB Memory Stick (MS128-281): Electronics electronics 2 of 2 5.0 Woks Great!!! April 28, 2004 "siddhaarth" Jefferson City, TN United States I had slight confusion whether to choose the sony 64 MB memory stick, which is nearly the same price or this one, which has twice the memory capacity of the previous one. I choose this one for the better deal and to add to my surprise J&R Electronics shipped it so quickly(You guys Rock!!!). This one comes par with sony memory media in every field. So why choose the one with lesser memory capacity. Choose this one and feed your camera with some memory space B0007W2IW4:very_good:a._vilaverde B0007W2IW4 Iomega 33215 250 GB External Hard Drive: Electronics electronics 2 of 2 5.0 Very good November 3, 2006 A. Vilaverde PA, USA Delivered on time, no problems setting it up (just followed the instructions to format it because I didn't want the default format it comes with, which is less safe). It's been running fine ever since I bought it. I can't comment on the speed of access because, since I leave it backing up over night, I don't really care. It's all done in the morning anyway, so I don't really need anything faster B000EHMIPO:a_very_good_dvd_recorder:raja_bhat_"raja" B000EHMIPO Samsung DVD-R145 DVD Recorder: Electronics electronics 5 of 8 4.0 A very good DVD Recorder October 2, 2006 Raja Bhat "Raja" I like this unit. It is hooked up to an S-Video in from my Digital Cable Box, and uses a component video out to a Mitsubishi HDTV. Picture quality is very good; I'm very used to my high-quality Sony DVD player DVP-NS700P, but this one is very close. There is just a touch of graininess to the picture from the Cable box, but then I've not compared with other units. I think its more than acceptable. A DVD I burned played fine on the Sony..but...when I recorded one program, deleted it, and then recorded again, it would only play on an older Sony DVD player. My Sony DVD player is kind of touchy, anyhow. All told, I'd recommend this DVD recorder without hesitation B000EHMIPO:by_far_the_best_multi_on_the_market_today:gary_strickfaden B000EHMIPO Samsung DVD-R145 DVD Recorder: Electronics electronics 92 of 95 5.0 By Far The Best Multi On The Market Today July 6, 2006 Gary Strickfaden Lynnwood, WA USA I don't normally write reviews on products but in this case I feel I must share the value and features of this product. You can't go wrong in selecting this player/recorder for your DVD needs. The quick start guide is just that "quick" and well planned. The people at Samsung know how to write manuals and this manual is the best I have seen well documented with pictures (in full color) and just that step-by-step for the novice. The setup diagram is excellent. The features are numerous you can throw any discs you have left over from other recording machines and through it in takes three seconds to intialize (any disc) and away you go. One touch record starts immediately. The quality is superb especially in High Definition. I couldn't wait to get it after reading the reviews from the last Electronics Trade Show so I was able to get it from back East about three weeks ago. Finalizing discs is a snap and easy I have had difficulty formatting on other machines but the Samsung is so easy the on-screen menu is good and the remote is easy to navigate even with my big fingers! It will play mp3s, CDs, computer made DivX movies, Region 1 DVDs, Picture discs from your computer and you can make your own movies from your camcorder or video camera and burn on the fly. You can also program your other electronics into the remote but you must know the manufacturer's codes which they list in a handy guide. If you are shopping for a multi recorder/player search no more get this one you won't be disappointed B00006B9W4:greattt:pankajkumar_patel B00006B9W4 Cyber Acoustics CA-3095 Speaker System (3-Piece, Black): Electronics electronics 1 of 1 4.0 GREATTT October 24, 2005 Pankajkumar patel I bought this set of speakers expecting a piece of junk...I WAS TOTALLY WRONG!!! These are great, they give the bass right where you want it. Sometimes i have to turn the bass all the way down and it is still too much. Watch out these come on sale instores for around $8.00 sometimes. That's where i got my 1st pair B00004Z0BO:diane:diane_"diane" B00004Z0BO Sennheiser MX500 Lightweight In-Ear Headphones (Blue): Electronics electronics 3 of 4 4.0 Diane November 5, 2006 Diane "Diane" Cincinnati, OH The sound range and clarity is quite good, they are comfortable. My only hesitation is the cord is too short for my purposes, I'd like to use it with my computer not a MP3 attached to my belt B0001A99LK:it;s_my_baby!:j._grabinski_"xoclarinetloverxo" B0001A99LK Apple 4 GB iPod Mini Pink M9435LL/A: Electronics electronics 7 of 8 5.0 It;s my baby! March 31, 2006 J. Grabinski "xoClarinetLOVERxo" CHentusterky I got my mini about nine monthes ago right before they were discontinued (which, in my opinion, was a big mistake on Apple's part) and I absolutely love it! Mine is pink, and the color is so nice, the design sleek and seamless all around. It's smooth metal casing is really nice and different. The clickwheel is smooth and I have had no problems with it. It holds a little less than 1,000 songs due to different formatting, but it's still a good amount; iTunes is easily understandable and functional as well. The ipod mini is approx. 1/2 of an inch think and slides into pockets easily, while not being as flimsy as the nano feels to me. The clickwheel is a great and fast way to scroll through hundreds of songs, raher than, as on my brother's mp3 player, needing to press "next" everytime you change the song. The backlight is fine, and does it's job; my one complaint on that would be that, as I mainly use it on the bus at 6:00 am, it is quite bright and hurts my eyes. Another huge plus to owning a member of the ipiod "family" is the countless accesories that have become availible exclusively to them. I myself have a case, an iSkin which I have come to adore, high quality headphones and the iBass, which is another great speaker product for ipods. I've actually invested waay more on accessorites for my mini than it cost itself, but that's how much I love it! For having so many great features, this is priced very reasonably. Even when I got it and it was $200, I still felt that it was well worth the money. BUY THIS NOW!!!! it's amazing! B00009KH63:simply_the_best_trackball:d._s._kerr B00009KH63 Kensington Expert Mouse Optical USB Trackball for PC or Mac 64325: Electronics electronics 1 of 1 5.0 Simply the best trackball November 9, 2006 D. S. Kerr I haven't written any reviews for Amazon before, but when prompted for my feedback on this trackball, I had to respond. I've been using one of these or its predecessors since the early 90's when Kensington first came out with the "Turbo Mouse". It was great then, and now it's better. This is as solid, smooth, and precise of an input device as you can get. I don't understand those others with buttons on the side that when you press them the trackball slides across your desk. This baby stays right where you put it because your button presses go straight down. You can use it with just the tips of your fingers or your whole hand -- your choice. The optical version is far superior to the old mechanical ones that needed frequent cleaning to stay in tip top performance. The only drawback is the $100 retail price, but frankly it's worth that. It's a no brainer at $80 which is what I paid through Amazon to Tiger Direct. If you need (or want) a high performance trackball that you'll be able to use with many computers to come, get this one B0007TYZE6:an_ipod_must_have!:allison_crouch_"ajcrouch6" B0007TYZE6 MACALLY IceTune Stereo Speaker and Charger: Electronics electronics 4 of 4 5.0 An IPOD must have! April 9, 2006 Allison Crouch "ajcrouch6" Greenwood, IN United States These speakers are awesome for the price. They charge your ipod even when the unit is off. The sound quality is great for around 50 bucks. I bought these for traveling and they are small enough to fit in a suitcase without taking up too much room. They also stack so they don't take up much counter space. I can't say enough about the sound quality. They are great B000F3YSQ4:easy__to_use_scanner_for_pdf_files:antonio_pietrangeli B000F3YSQ4 Fujitsu ScanSnap S500 Clr 18PPM/36IPM Dupl Scanner: Electronics electronics 16 of 16 5.0 EASY TO USE SCANNER FOR PDF FILES July 24, 2006 Antonio Pietrangeli I work for a small sized consulting engineer's firm where everyday we have to scan some hundreds of pages of text (magazine articles, old projects, letters from the client, books, etc). We got four years ago our first fujitsu scanner ( still working ) and we have been impressed with its speed, small size and since it wase easy to use to obtain good quality PDF files. A couple of years we moved to the scansnap series. We now have four of them. PROS : - incredibly easy to use ( you don't need to teach anybody ) - fast for PDF scanning - great value for money ( includes acrobat 7.0 bundled ) - very small, perfect for a desk - good construction quality, no one of our 4 scanners ever broke CONS : - quality of the feeding roller is good but not professional. If you have to scan hundreds of pages you have to be on the scanner to avoid paper jams, double-feeding that some time occurs. - not great quality for photographs scanning ( however difficult because it is not flatbed ). I strongly suggest it for small-medium sized businesses to scan documents. If you have to scan hundreds of pages everyday or you need a high quality scanner for photos you can find something better. B0002ZLYYY:incredible_sound:gbw_"gbw" B0002ZLYYY Bose Wave Music System - Graphite Gray: Electronics electronics 13 of 14 5.0 Incredible Sound January 20, 2006 GBW "GBW" CT The CD sound is like being at the concert. Hooking the radio up to a television makes the home theater experience even better. The fm radio receiption is even clear. Great quality product. Worth the money B00014B4OQ:could_have_been_perfect_if...:consumer_"consumer" B00014B4OQ Acoustic Research AW771 900 MHz Wireless Stereo Headphones: Electronics electronics 5 of 5 4.0 Could have been perfect if... September 3, 2006 Consumer "Consumer" Orlando, Fl United States These are some great headphones with a few minor flaws: Pros: 1. Great sound quality 2. Very comfortable 3. Light 4. Worry-free charging Cons: 1. Achieving good wireless connection is not always easy, could require pressing the tune-in button several times 2. Interference noises could sneak into the broadcast 3. Turning them off could be annoying (requires precise timing) My experience: I've had two pairs of these for over a year and I like them very much. I enjoy great sound watching TV or listening to music while everybody is asleep. This is really great, I can enjoy music at comfortable levels at any time of the day or night. The sound is much better and clearer than the sound produced by the speakers of the TV. You have the same clarity and volume even though you might be moving around the rooms away from the TV (closet or the garage for example). The headphones are light and very comfortable. I tried other brands and the aw771 were the most comfortable by far. So, overall wonderful product. However, there a few flaws to be aware of. Consider the following before buying. It might require several attempts before the unit tunes in at the right channel. Sometimes, turning the headphones ON results in poor reception if any at all. To correct this, you have to press the only button (power, search, and turn off) and wait until the unit picks the signal at the right channel. You might have to repeat this operation two or three times and it is a bit annoying. Once you get good reception, everything is ok although you might get some interference (alien noises) when you turn your head or move around. The last problem is with the turn off button (again the only multifunction button). You need to press and hold the button for a certain amount of seconds and release it in order to turn off the unit. That is not always easy and usually the unit comes back on. You think you turned it off but it is still on and if it's not in the charger base you drain the batteries completely. Well, I hope my description is helpful. Regardless of the flaws, I recommend the AW771. I use them every day and best of all I enjoy great sound when other people are asleep. B00006SG3V:satisfied:b._coburn_"starving_student" B00006SG3V Bose AM10IIi-BK Home Theater Speaker System: Electronics electronics 11 of 14 4.0 Satisfied October 3, 2005 B. Coburn "starving student" Seattle I have always run all of my media through my pc and my former speaker set (a Midiland 5.1 system) was thoroughly aged and falling apart I decided it was time to upgrade. I wanted something that had incredible sound with both music and dvd's. I shopped around and came to the conclusion I would aim for the form factor speakers. When considering this bose system, this MUST be taken into account. First off, this system is expensive. For just under 1000 dollars (doesn't 999 sound sooo much better than 1g?) you get 5 bi-directional midrange speakers, the subwoofer unit, and speaker cable. At this price it is very disappointing that bose does not include some sort of receiver, but no matter this leaves room for the customer to customize his/her choice to suit any personal needs and/or budget. Bose includes 3 colors (white, silver, black) and all the speakers are well packaged and aesthetically pleasing with the exception of the sub unit (a large rectangular box meant to save space but does not). What brought me to look into this system was the specific size of the speakers and there general attractiveness. For their size the bose do a very good job of reproducing any sound-granted they are paired with a competent receiver. Anyone who has any qualms about this system should first consider what they are running their sound through, without competent equipment these speakers will not be on par with what you heard in the store. Once I got the system home it was very easy to set up and install. Bose packages the speakers with clear instructions and all of the wires are meant to be hidden and include markings as to what speakers they belong to-a very handy feature especially when one is trying to hide this system. The only serious issue I have with this system ended up being with my receiver (an Onkyo) and not related at all with the speakers. Since I do run this through my computer (presently a laptop) I had a few troubles setting up a new sound card and getting it too mesh with my receiver, but when that was all said and done, I was extremely please with the system. With a bose the tweaking one needs to do is very minimal and thus why this deserves the higher price tag-its target audience is usually those more affluent and unable to spend hours tweaking individual speaker levels and sound ranges. My test soundtracks included: Gladiator, Matrix (II or III), Snatch, and music tracks ranging from techno, rock, classical, and alternative. Everything sounded great with enough low, high, and midrange response. The second complaint I have with this system is not differentiating in the least between any of the satellites. I found myself turning the response on the center channel up so the front speakers weren't drowning out the voices. That was solved with a little tweaking so nothing major there. All in all this speaker system is a great investment in my mind satisfying all of my needs (though draining my bank account) and providing me with great surround sound. Good: Great range and volume of sound. Easy set-up. Well built speakers-aesthetically and physically. No interference or feedback. Bad: Subwoofer awkward, no dedicated center channel, pricey, no included receiver. For their size these speakers more than compete with any full-blown tower 5.1 system. Here is one satisfied customer B000EWARBG:please_read_before_you_run_your_mouth:angel_matos_"computing_since_1968" B000EWARBG SanDisk 1 GB Cruzer Micro with U3 ( SDCZ6-1024-A10, Retail Package): Electronics electronics 9 of 16 4.0 Please READ before you run your mouth September 30, 2006 Angel Matos "computing since 1968" Da Bronx in NYC Ladies and Gentlemen, Just a quick note to say that it is a pity that people buy 'toys' before exploring what it is that they're buying. I have seen people knock the SanDisk U3 drives, as well as U3 drive made by other companies. Well the reality is that: a- The U3 software has a way of stopping the software's auto-boot. b- There is Uninstall software available at at SanDisk.com and at U3.com, and I'm guessing that those company's that offer U3 and have a web site probably have the 'Uninstaller' on their site. c- There is a great deal of U3 software available (free and pay-for-it) at U3.com. I know that SanDisk has a software site, so do Verbatim & Memorex. d- For those who want portable software but don't want U3 or don't have a U3 drive, go to http://portableapps.com. Note: some of the software here is the same used by the U3 folks, without using the U3 LaunchPad. e- Quality of drives: remember that when you buy most of the electronics 'toys' available today, you are buying Chinese c*** (junk). Both the manufacturing and Quality Control (QC) are garbage. Unless you are paying serious change for something ($500+) you will get passable junk. If you are expecting "made in Japan quality" your kidding yourself. This is the reason you will see many Brand Name goods, also selling with No-Name labels (i.e Coby). Same production line, different labels. It is also one of the reason folks are impressed with Apple iPods. Apple demands excellent QC, and the destruction of goods that don't meet the standard. In exchange you are willing to pay a 20% premium for this level of QC. Like everything in life, ya gets whats ya pay for. g- Since the beginning of Windows (v1.0, et al) there have always been buggy and uncooperative software programs, there will always be pain in the a** software. One of the reasons XP has such a prominent 'roll-back' feature. And also the reason many, if not MOST, power users run multiple machines. Of course, these days we have to fill Billy G's pockets by having to buy multiple paks of XP. Most of my power-user friends run at least three or four machines, each one with a different use. It shouldn't be this way, but the reality is that for folk that use or explore a great deal of software, for many purposes (MP3's, scanning, Video, controlling radios, composing music, et al), one machine won't cut it because XP ain't as stable as folks think. The more programs, and the more varied in type, the more instability is introduced into ANY Windows installation. Why do you think businesses run Win2000 or Win2003, because there are less software 'toys' that run under 2K, and the 'admin' can prevent you from loading a lot of software 'toys'. h- In the end, understand what you are buying before you buy so that you'll have better luck getting what you want, and you won't look so ignorant when you say something that anyone who has bothered to go to the web site(s) knows is dead wrong, or just plain stupid. i- When you truly understand the product, you'll be able to write TRULY useful reviews, and that what all readers want, useful information. To one and all, may your 'toys' keep you happy B00064C58U:wireless_lan_usb_antenna:anatoly_karp_"ktolikde" B00064C58U Linksys WUSB54AG Wireless A/G USB Network Adapter: Electronics electronics 5.0 Wireless LAN USB antenna July 3, 2006 Anatoly Karp "Ktolikde" De, USA Very easy to use. Expend my wireless network access from two marginal to five with very good signal level. No external power required. Highly recomend it. B00064C58U:easy_to_install,_easy_to_use:jase_t._wolfe B00064C58U Linksys WUSB54AG Wireless A/G USB Network Adapter: Electronics electronics 4 of 4 4.0 Easy to Install, Easy to Use February 10, 2006 Jase T. Wolfe Seattle, WA USA Could not have been easier to install - literally just put the included CD in the drive, and plug the device into your USB 2.0 port. Installed and self-configured in minutes. Very small, light, no additional power cords to worry about, no additional software (beyond the automatically installed drivers) to install - quick and easy. Only issue I found is that the antenna is permanent, so you could never swap for replacement/better antenna like you can on some other wireless NICs B000CSH44K:very_durable:dave_f B000CSH44K iSkin eVo3 for iPod with Video 30GB (Eclipse): Electronics electronics 4.0 Very Durable November 5, 2006 Dave F This cover is very durable, however it is somewhat difficult to get the ipod into the case. The case covers the entire ipod except for small vent holes so it is very water resistant, but the case covers the locking button making it harder to lock and unlock the ipod B000F8J3AK:a_nice_whole_house_telephone_system:m._kravitz B000F8J3AK Panasonic KX-TG5771S 5.8 GHz FHSS GigaRange Expandable Digital Cordless Answering System: Electronics electronics 13 of 13 5.0 A nice whole house telephone system September 11, 2006 M. Kravitz New Jersey I purchased this answering machine with the intention of expanding the quantity of phones to cover the entire house. To start, I bought only one additional phone. I'll buy the rest later. So far I am very pleased. The sound quality is excellent and there are numerous bonus features that I have found very useful. Like the talking caller ID and being able to screen messages from any of the phones. I also like being able to program a phone directory into one phone and transfering (download) a single entry or the entire list to the other phones. And each phone is also a speaker phone and a full intercom. You can name the phones for the rooms they will occupy which will help when you use the intercom to call a specific room. So you would page the "Living Rm" rather than phone #3, etc. If you have caller ID, you can program special rings and special call ID colors for the callers in your phone directory but that information must be programmed into each phone. It doesn't transfer when you download the directory to the other phones. Also, on another Panasonic wireless phone that I own, the incoming call displayed the name I had programmed into the phone directory. Just like your cell phone will say "home", etc. On this phone, the caller ID displays the telephone company info only. I think the phone is great, I just wanted to clarify some points that are not crystal clear in the literature. B000ERAON2:strongly_recommended:j._solis B000ERAON2 2GB Data Traveler USB Drive: Electronics electronics 3 of 4 5.0 Strongly recommended October 25, 2006 J. Solis Miami, FL Kingston's 2GB Data Traveler USB drive is perfect to storage files. I have looked for a 2 GB USB and found this one to be the cheapest based on its characteristices. I think it is a bargain price B000BJHH1K:great_product_at_an_excellent_price_from_amazon:s._kadamati B000BJHH1K Kensington 33165 SX 2000 Speakers and Dock for iPod & iPod Nano: Electronics electronics 4.0 Great product at an excellent price from Amazon November 17, 2006 S. Kadamati I love these speakers and the price was great B000BJHH1K:high_quality_-_good_price:peter_la_barbera_"plabjazz" B000BJHH1K Kensington 33165 SX 2000 Speakers and Dock for iPod & iPod Nano: Electronics electronics 2 of 2 5.0 High Quality - Good Price October 16, 2006 Peter La Barbera "plabjazz" California I'm very happy with the Kensington SX 2000. I listen mostly to jazz and the midrange is as good as the higher end Bose or Apple speaker systems. Pumping up the volume does not distort in any way either. Plus, I have my speaker on a divider that equally services both ends of the open space B000068CNM:good_ol'_belkin:travis_craig_hellstrom_"thellstrombooks" B000068CNM Belkin 7-Outlet Surgemaster Home Series - F9H710-06: Electronics electronics 4 of 5 5.0 Good Ol' Belkin January 11, 2006 Travis Craig Hellstrom "THellstromBooks" Hickory, NC United States I love Belkin and their surge protectors are top quality. I specifically look for their brand and I am always very impressed. This model has been especially good to me over the last 3 years and I would highly recommend it B0001PFQ76:thanks_for_the_memories:mayavi B0001PFQ76 HP DVD Movie Writer dc4000: Electronics electronics 5 of 5 5.0 Thanks for the memories August 8, 2005 Mayavi Atlanta, GA USA I am a camcorder buff. Ever since my children were born, I have had the camcorder attached to my hand most days because I know that life is fleeting and memories are too precious to be lost. I had a huge collection of video tapes and was able to transfer the entire collection to DVD. Now I know that they will last at least through my life time.. Also, I find that using the Showbiz application, I can create customized DVDs for my friends and that has saved me a ton of money in gifts.. The only problem we had with this product was that we had limited hard disk memory and had to acquire some more. And I have probably created more than a 100 DVDs by now. Thanks HP! B0001PFQ76:wonderful_idea,_with_good_tech_support:thomas_taylor_"run_man" B0001PFQ76 HP DVD Movie Writer dc4000: Electronics electronics 5 of 6 4.0 Wonderful idea, with good tech support March 22, 2005 Thomas Taylor "Run Man" Phoenix, AZ This little device is a great invention from HP. I had problems installing the unit and was on the telephone with HP Tech support (India) for 1.75 hours, I spent very little time on hold. The largest draw back to the unit is my computer acts like the DC4000 is not there from time to time and required me to reboot the computer in order to use this nifty device B0000E6S0Y:great_speaker_value_--lower_cost,_higher_performance:king_lemuel_"trust,_but_verify" B0000E6S0Y JBL Northridge E30 2-Way 6-Inch Bookshelf Speakers, Pair (Black Ash): Electronics electronics 2 of 2 5.0 Great speaker value --lower cost, higher performance November 2, 2006 King Lemuel "Trust, but verify" Puyallup, WA I recently began upgrading my home audio by buying at Ebay 2 pairs of JBL E20s and 1 Pair E30s, an E25 center speaker and a Harmon Kardon AVR. I got the first pair of e20s a week ago and the 2nd pair of E20s and the E30 yesterday and the remaining stuff should be delivered by the weekend. The E20s and E30s are listed as "Bookshelf Speakers." The E20s ARE bookshelf speakers. As I wrote in my review of the E20s, the E30s can only be thought of as bookshelf speakers if you last name is Kong and your first name is King! The E20s are heavy at 7lbs each, not flimsy little boxes as some cheapo bookshelves are. The E30s are HEAVY. HEAVY! 16 lbs each. (That is what my 7 qt lodge cast iron dutch oven weighs!) They are 15 inches high and 12 inches deep. They need to be placed on small end tables or speaker stands 18 to 24 inches off the floor. I am very pleased with both the E20s and E30s. For small speakers, the E20s have some oomph and can be cranked up. The E30s have OOOMMPHHHH. They WANT to be cranked up. Yesterday I tried them out by listening to my mp3 files of the Animals Singles and Paul Revere and the Raiders Kicks. When cranked up, the E30s sound at least 1000% better than the the E20s. I hooked them up to my vintage JVC AV receiver circa 1989 that has 80 watts front and 20 watts rear power. At a little over half volume my ears began to hurt. You can really feel the bass and the drums kick. I also listened to about 2 hours of The Doors via Rhapsody with the audio out from my computer to the audio in on my receiver. I have been listening to this music since it was first played on the airwaves back in the 60s. The E30s are simply incredible! They brought some very familiar tunes to life and made them new and fresh. My biggest surprise with the E30s is that they sound very good at lower volumes, not as good as the E20s, but still very good. As I write, I am watching/listening to a DVD of Vivaldi's 4 Seasons concertos performed by Herbert Von Karajan, the BPO and Anne-Sophie Mutter on fiddle and am running the E30s and E20s at about 15% volume--pretty low since the 4 speakers are sharing the front 80 watts of my receiver. Yet I can still HEAR everything at low volumes including the resonating violins and the harpsacord. Since we normally do not rock the house down all the time and we do often listen at lower levels, I am very pleased at how good they sound without having to blow out my eardrums. I bought the E30s for under $90 including s/h. Back in the early 80s or late 70s I spent more than four times this amount (adjusted for inflation) for 2 large, heavy Advent Loudspeakers with 8" woofers. The E30s clearly sound better than I ever remember the Advents sounding including better bass response, and I liked the Advents! Over time, our audio choices have gotten better and cheaper. You still can spend mega bucks and buy a $10,000 McIntosh system (or even drop that much on a turntable magnetic cartridge as I saw at one website!) It all depends on what your budget is. The JBLs are a great value offering tremendous perfomance for those who are budget minded B000EN62YG:quiet,_fast,_and_easy:s._slavin B000EN62YG Seagate ST3300601CB-RK 300 GB External Hard Drive with FireWire and USB 2.0 Interface: Electronics electronics 4 of 4 5.0 Quiet, fast, and easy November 10, 2006 S. Slavin I repartitioned the disk so I have a Macintosh partition and a Windows partition. I back up both my Mac and my PC to this disk. It is fast and easy to use B000EN62YG:fast_and_quiet:c._leung B000EN62YG Seagate ST3300601CB-RK 300 GB External Hard Drive with FireWire and USB 2.0 Interface: Electronics electronics 2 of 2 5.0 Fast and quiet November 3, 2006 C. Leung USA I use the drive to back up important data. I write a few GB to the drive each time. I was surprise by how fast data transfered onto the hard drive through the USB2.0 interface. It is quiet and I have no complain B000EN62YG:fast_and_quiet:s._sourelis B000EN62YG Seagate ST3300601CB-RK 300 GB External Hard Drive with FireWire and USB 2.0 Interface: Electronics electronics 5 of 5 5.0 Fast and quiet October 29, 2006 S. Sourelis Chicago, IL Used for backing up a huge quantity of high resolution digital images. The drive is fast and quiet in it's operation, while taking up very little space on the desktop. I highly recommend this drive and this brand of drives B0002Z45DQ:perfect_connection_were_you_are:v._iparraguirre_"lambas" B0002Z45DQ D-Link DWL-G730AP Wireless Pocket Router/AP w/ Client Mode, 802.11g, 54Mbps: Electronics electronics 5.0 Perfect connection were you are September 9, 2006 V. Iparraguirre "Lambas" Lima, Peru This equipment is simply and perfect a viable connection to the world "where you are"!. My work forces to me to travel to very distant sites where the communication was difficult and this creates a access point to me for connected to the world via Interne B00003CWEY:monster_cable_s-video_mvs3-1m:graham_mercer B00003CWEY Monster Cable MVSV3-2M Monster Super Video 3 Double-Shielded S-Video Cable (6.56 Feet): Electronics electronics 1 of 3 5.0 Monster Cable S-Video MVS3-1M February 4, 2002 Graham Mercer Connecticut, USA Noel Lee's Monster Cable products Inc., come up with the goods here! A cable of stunning, high resolution that snaps the picture into such clarity that you'll think you're watching scenes through a glass window and not through a television/monitor, a bold claim indeed, BUT, quite true never-the-less. I was totally unprepared for such a dramatic change for the better. This cable brings to the viewer ALL the picture, and, yes, that does mean "Warts and all"so, be prepared to see the smallest of detail, like strings and wire that enabled special effects crews to do their work "Un-seen". Who really needs HDTV when cables like Monster's MVS3-1M are this good and can bring a vastly superior standard to an existing television/monitor for only a minute fraction of the cost. Thanks Noel, well done B00001P4ZD:fits_my_fat_head...: B00001P4ZD Koss KTX-Pro Portable Stereophone: Electronics electronics 1 of 2 4.0 Fits my fat head... August 21, 2002 I stretched them till they fit comfortably on my wide head. They sound great to my ear and I use them alot B00001P4ZD:the_headphone_to_compare_all_others_to.:chris_kelley B00001P4ZD Koss KTX-Pro Portable Stereophone: Electronics electronics 2 of 2 5.0 The Headphone to compare all others to. April 11, 2002 Chris Kelley Boston, MA I have searched and searched and searched for a pair of portable headphones that sound as good as these with lots of failure. IMO, you cannot beat the sound of a set of "over-the-head" headphones. I have tried all styles: earbuds, behind the neck, clips, even the ear plugs. Nothing gives the sound and comfort of the KTX Pros (granted, I have never tried the sportapros or portapros, but from what I have read, they are the same headphone. Except they are UGLY!). The KTX Pros have both great lows and great highs. Plus, you can't beat that price B0002XN3VS:it's_very_good:b._v._michael B0002XN3VS PNY Attache 1GB USB 2.0 Flash Drive ( PFD01GU20RF ): Electronics electronics 3 of 4 5.0 It's very good September 5, 2006 B. V. Michael This is an affordable option that provides a lot of memory and allows USB 2.0 protocol for very fast transfer. If you need to transfer data from one digital product to another, this is very handy and I think that every person dealing a lot with data should have one. B00005MNHI:excellent_value_for_money!:b._ma_"yospeed" B00005MNHI Koss R-200 Studio Quality Home Stereophone: Electronics electronics 1 of 1 5.0 Excellent value for money! August 2, 2006 B. Ma "yospeed" San Francisco I basically bought these because they were cheap. Cheap things are not always bad and these headphones are a great example. The UR-20 provides excellent sound for both music and movies. It has excellent bass and sound isolation. I am by no means an audiophile but I know good sound when I hear it and these headphones produce great sound, especially for its price. B0000Y3KS0:for_the_price,_tough_to_beat:scottmo B0000Y3KS0 Maxell AA Alkaline Batteries Value Pack - 40 Pack: Electronics electronics 15 of 15 4.0 For the price, tough to beat January 10, 2005 ScottMo Stony Brook, NY USA Not a bad battery deal. While they don't last as long as some other batteries I've tried, their cost per battery more than makes up for it. For those that care about such things, they contain no mercury, no cadmium, and are made in China B0000642RX:wonderful_-_no_more_carpal_tunnel_problems:susanna_hutcheson_"see_http://www.powerwriting.com" B0000642RX Microsoft Natural Keyboard Elite: Electronics electronics 5.0 Wonderful - No more Carpal Tunnel Problems October 11, 2006 Susanna Hutcheson "see http://www.powerwriting.com" Wichita, KS United States I've had this keyboard a number of years and would never go back to anything else. I have (or had) severe carpal tunnel syndrom. This keyboard has eliminated that problem entirely. I can't think of a downside. Yes, it takes a bit of getting used to and yes, the keys are a bit noisy. But I have no problem with that. It just reminds me I'm working. The number pad is excellent too. I'm getting ready to get another one to use with my laptop. You can't destroy this keyboard. If you value your wrists and hands, get this B000F1UFYU:great_phone:tazewell_carrington_"carrington" B000F1UFYU Panasonic KX-TG5633B 5.8 GHz FHSS GigaRange Digital Cordless Answering System with Three Handsets: Electronics electronics 5 of 5 5.0 great phone November 9, 2006 Tazewell Carrington "Carrington" Charlottesville, VA United States We previously had an AT&T cordless w/answering machine (1 handset) and always had trouble locating the one receiver - kind of like misplacing the TV remote. With 3 handsets, we are spoiled. Also our house has a few phone jacks but they are all located where we did not want a phone and no jacks in our den or living room. With the abilty to locate the phones anywhere in the house where there is an outlet, we were able to place one in our living room and another in our bedroom (which we can turn the ringer off). B00005N5Y2:everything_you_want_in_a_corded_phone!:a._calhoun B00005N5Y2 Northwestern Bell 76510 Corded Speakerphone with Caller ID: Electronics electronics 1 of 1 5.0 Everything you want in a corded phone! October 14, 2006 A. Calhoun Des Plaines, IL Corded phones with features are becoming harder to find now-a-days. My home needed one corded phone for sure fire communications during power outages, mobile phone down for whatever reason, etc. This is one of the few corded phones with caller ID and no answering machine built in. The greatest feature of this phone is it has a HOLD button so one can place a call on hold while one gets high tech cordless, etc. Also with the built in speaker phone this phone is great in the kitchen. Highly recommend this for your one corded phone in the house B000E60HKS:wow!!!!!!!!:robrt_maisonet_"bobbie_bobbie" B000E60HKS Uniden TCX905 Accessory Handset and Charger for the T9 Series: Electronics electronics 1 of 2 5.0 WOW!!!!!!!! August 19, 2006 Robrt Maisonet "BOBBIE BOBBIE" BERKELEY, CA. Wow, who would've thought that you could get such amazing products, at affordable prices. The staff's friendly and responds quickly to any questions that you may have. This is one amazing phone system (Uniden TCX905), I forgot that it's a cordless. B000EA8U12:my_son_loves_it!:t._ellison B000EA8U12 Creative Zen Sleek Photo 20 GB Multimedia Player (Aluminum/White): Electronics electronics 1 of 2 5.0 My son loves it! November 9, 2006 T. Ellison Bought this for my son who is in Iraq. He doesn't leave his tent w/o it!! Stands up fine to the dust and heat with no problem. Has more room than he expected. The price was LESS than the smaller one he wanted from a competitor to Amazon.com. SO glad I found this one on Amazon instead B0009MYS9S:i_payed_my_$45_for_these_headphones_and_enjoyed_them.:anthony_t._vu B0009MYS9S Logitech Wireless Headphones for MP3: Electronics electronics 1 of 1 4.0 I payed my $45 for these headphones and enjoyed them. September 15, 2006 Anthony T. Vu Longview, TX I'm going to cover compatiblity, sound, and comfort. OVERVIEW. Although I wish these were as cheap as the IPOD, $39 + $6 shipping isnt bad either. I have done the heat treatment (using boiling water) and the headphones seemed to open up more. When the headphones came in the box, the ear pieces were really close together. So I can easily see how these bands can crack easily when put on your head. I plan to heat treat these again to spread them out more. SOUND. Sound quality is excellent. COMFORT. The only thing I don't really like is this style of headphone. I don't really like the band to go around the back of my head, causing my ears to support the headphones. I like the ones that go over the top of your head. COMPATIBILITY. I have a Inspiron DELL Laptop and these suckers can connect to it easily without using a transmitter. These can also connect to just about any MP3 player of all sizes (PSP also) because it comes with a small 8 mm jack extension cord. FEATURES. Coolest features with this compared to my other IR sony wireless headphones is that this can go through walls! About 3X feet away B0009MYS9S:not_the_most_comfortable,_but_work_great_...:s._eric_asberry_"certified_computer_geek" B0009MYS9S Logitech Wireless Headphones for MP3: Electronics electronics 4.0 Not the most comfortable, but work great ... September 12, 2006 S. Eric Asberry "Certified Computer Geek" Roswell, GA USA I am overall quite pleased with these headphones. The sound quality is excellent. I've not had any problems with interference, background hiss or anything of that nature. Battery life has been excellent. I have not actually ran them all the way down to see just how long they'll last, but I use them to listen to music at work for the better part of 8 hours a day and they haven't failed me yet. The only reason I would not give them 5 stars is that they can be a little uncomfortable after prolonged use. I'm not really a big fan of this "sport" style of headphone, and probably wouldn't have tried these if I hadn't gotten them on clearance. But, I found that after experimenting a little I was able to get them situated to feel pretty comfortable, even wearing them the better part of a workday B000243DNA:good_quality_product_and_nice_design:v._t._d'onofrio B000243DNA Kensington Slim Type Keyboard - PC ( 64365 ): Electronics electronics 5.0 Good quality product and Nice design October 28, 2006 V. T. D'onofrio Arlington, VA United States The keyboard is good quality and the best product I could find for the price. I recommend if you are looking for a low profile keyboard w/numeric entry pad that takes a mimimum anount of desk space. The keypad has the feel of a large notebook computer. So makes a great docking station keyboard if you are used to the slim kepads on most modern laptop computers. B000HKIPVE:a_fine_monitor_for_a_very_fair_price:duane_p._schroeder B000HKIPVE ViewSonic VA1912WB 19-inch Widescreen LCD Monitor (Black): Electronics electronics 6 of 6 4.0 A FINE monitor for a very fair price November 18, 2006 Duane P. Schroeder Mooresville, NC First off, let me say that this is a VERY impressive monitor. My points of reference for that statement are my other three LCD monitors: three Samsung models, two of which are 913Ns and the other is a 712N. These two Samsung models are advertised to have the same contrast ratio rating as this ViewSonic, and their advertised brightness ratings are 20 points higher than this ViewSonic. Surprisingly, I actually can see the brightness difference between the Samsungs and this ViewSonic, but, for my taste and needs, the Samsungs are simply too bright, and I end up turning down their brightnesses anyway. For high light, daytime use, I have found that I do like to have the brightness all the way up on the ViewSonic, but I truly do not see any need for it to be any brighter than it is capable of being. Installation was simple: in fact, something that might be helpful to those of you who are buying this would be that, interestingly again, the drivers that are on the ViewSonic website are actually older than the ones that came with my installation CD, even though the driver package that is posted on the ViewSonic website claims to have been posted only a few weeks ago. When I first installed this monitor and turned it on, I truly do not think the picture was as clear, or the graphics as rich, as any of the Samsung monitors that I own. But, and this is another tip for new users of this product, the default setting for the ViewSonic screen contrast was set MUCH lower than the maximum setting. When I increased the contrast up to its maximum setting, I believe the clarity and quality of the picture to be nearly equal, if not fully equal, to those on the other LCDs that I own. One big plus about this monitor is that it comes with a DVI cable included, so you save that added expense (this isn't true with all ViewSonics). And, especially with the digital connection, I have no doubts about ViewSonic's claim that this monitor has nearly twice (5ms versus 8ms) the refresh rate as the Samsungs. I have to admit that I wasn't sure I needed a widescreen display, but I believe it's going to be a challenge going back to the standard ones! This is a really a fine monitor! Now for a few small negatives. One reason I haven't purchased ViewSonics in the past is that they put a fairly tall bar on the bottom of these screens to accommodate speakers. I already have a fine speaker system set up and connected to my computer, so I really have no use for monitor speakers. Additionally, those ViewSonic speakers always raise the monitor height up much higher than I'm comfortable with. Strains my neck. The reason I really didn't worry about it on this monitor was because, while there are speakers, they appear to be nearly half the height of the normal ones on other ViewSonic monitors. With that said, I have to admit that even this speaker accommodation bar added a bit more to the screen height than I had expected. For example, on the 17 inch Samsung monitor, the bottom of the screen is 3 3/4" from the desktop. On the 19 inch Samsungs, it is 4 inches. On this ViewSonic, the bottom of the screen is 5 1/2 inches above the desktop. It's not bad, but it's going to take a bit of getting used to. If all else fails, other monitor stands are available. As with most electronic products these days, there is very little in the way of documentation. The 87 billion language installation card tells diddly. The .PDF manual that is installed on the computer simply says the standard self-explanatory things. However, I found the interactive help program on the manufacturer's website be quite useful in helping fix a few small problems, surprisingly. All in all, I'm very impressed so far, and I'm really looking forward to using this monitor! By the by, shipping from Amazon.com was amazingly fast: it shipped the next day, and it arrived the day after that. I can't complain about that speed! My only question is why they would need a weight surcharge on this but could ship an extremely heavy wood lathe for free? Go figure! Anyway, a solid four stars for this monitor B00019EYVG:great_access_point_-_after_firmware_upgrade:big_bear_"bigbearbear" B00019EYVG D-Link DWL-2100AP Wireless Access Point w/ SNMP, AES, 802.11g, 108Mbps: Electronics electronics 3 of 3 4.0 Great Access Point - after firmware upgrade December 28, 2004 Big Bear "bigbearbear" San Jose, CA USA I'm using this AP, along with a Netgear 802.11g PC Card to test streaming live/recorded TV to other parts of my house. Seems like a capable product even if I didn't use the 108Mbps feature. However, be sure to update the firmware or the AP might not work correctly. When I first received it, configuration was easy enough but it had trouble working with my Netgear and HP Centrino notebook. Both notebooks will get a signal and even connect be failed to obtain an IP address from my network's DNS server. A firmware upgrade solved the problem and the AP now streams TV realibly from my living room to the kitchen. I noticed that there is are hordes of wireless APs around my house, I guess most neighbours are using some form of 802.11 wireless as well. However, this D-Link AP is able to function correctly abeit all the other APs around (2 using the same channel as mine I've found). Overall, recommended if you want a good AP. Just be sure to update the firmware B0007TIYES:best_5.8ghz_i've_tried_though_still_not_as_good_as_900_mhz_dss:ottokrat B0007TIYES Uniden CellLink ELBT595 5.8 GHz Digital Expandable Cordless Flip Phone with Color LCD, Answering System, and Bluetooth Capability (Titanium): Electronics electronics 2 of 3 4.0 Best 5.8GHz I've tried though still not as good as 900 MHz DSS September 5, 2006 Ottokrat San Jose, CA The sound quality is pretty darn good, except that if you pace around while talking/listening, there are these annoying clicking/scratching sounds. They are quite, and, if you stand still they go away. I've had other phones that click/scratch while pacing around, and they actually dropped some of the sound during the clicking - at least this phone doesn't do that. My 900 MHz DSS Uniden didn't have these sounds (while pacing or otherwise), and still had greater range. I don't know why the new technology can't measure up. Still though, this is the best 5.8 I've tried. (Yet I'd rather buy another 900MHz DSS if there were any on the market anymore. All of today's 900MHz are analog instead of digital.) Another annoying thing is that you can't recharge the phone with the belt clip attached, so the clip goes on and off (and on and off). (Many (cell) phones have a charger that allows this.) The plastic is a bit cheap. Don't drop this phone. My friend has one and it hasn't worked since it was dropped. (I haven't tried the bluetooth yet, and have yet to see how good the battery life is. B0007TIYES:works_great_with_other_handsets:bill_kearney_"wkearney99" B0007TIYES Uniden CellLink ELBT595 5.8 GHz Digital Expandable Cordless Flip Phone with Color LCD, Answering System, and Bluetooth Capability (Titanium): Electronics electronics 6 of 7 4.0 works great with other handsets February 25, 2006 Bill Kearney "wkearney99" Bethesda, MD USA I got this base and added 6 TCX805 handsets to it. The whole setup works great. I got this base because it supports bluetooth through to my cell phone. That features works well, there's a slightly longer pause as it connects through to the cell phone but that's trivial. I will say this, you need to keep your cell phone within about 20' of this base. I just take mine off, turn on Bluetooth and it automagically pairs up with the base. So if you want the cell dialing feature and like the more traditional upright handset, get this base and expand it with other handsets. B00001ZWXA:a_great_product:eagerreader B00001ZWXA Belkin F3U134-10 USB Extension Cable (10-Feet): Electronics electronics 1 of 1 5.0 A Great Product August 22, 2005 Eagerreader PA USA This product is great - allowed me to connect a distant printer to my computer by hooking two of the extension cables together. Worked right away - no problems B00005A9AU:great_headset_for_me:greg_n B00005A9AU Plantronics DSP-400 Digitally-Enhanced USB Foldable Stereo Headset and Software: Electronics electronics 2 of 3 5.0 Great Headset for me August 21, 2006 Greg N Houston, TX USA This is a great headset for my use. It is very clear. I use it for work, and I only make use it periodically throughout the day, making about 10 calls daily so I don't wear it all the time B000ELSY0I:excellent_lcd!:video_game_nut_"steve" B000ELSY0I Samsung LNS3251D 32" Wide LCD HDTV with Integrated ATSC Tuner: Electronics electronics 5 of 5 5.0 Excellent LCD! November 13, 2006 Video Game Nut "Steve" Chicago, IL United States Researched a lot before I bought this TV and for the money, this one was hands down the best 32" LCD. Also, Amazon had the best price by far and it shipped to my house in a timely manner with no major issues. I mainly use this TV for my XBOX 360. You will NOT be disappointed if you are planning on doing the same. The game mode does enhance the picture a great deal as well. I provides sort of an Anti Aliasing effect smoothing out some of the rough edges. All in all, after owning the tv for about 2 months now, I couldn't be happier. To get around the poor speakers, I just plug in a nice set of headphones and games sound GREAT. I've also hooked up an HD antenna and regular cable. HD channels have a very good picture over the air. Some football games almost look better on this than on my 42" Samsung DLP downstairs with the HD Cable. There's also a nice Antenna button on the remote which quickly swaps between cable and the Over the Air Antenna. The only drawbacks to the TV are the 1 component input and the fact you can't use the PIP with the cable connected, only the antenna. B0007Y79G2:really_grew_on_me.:jordan_"jordan" B0007Y79G2 Creative Zen V 4 GB Portable Media Player (Black/Blue): Electronics electronics 8 of 8 5.0 Really grew on me. November 7, 2006 Jordan "Jordan" Sacramento I had a Zen Vision:M but I returned it because I decided I didn't need quite that much storage capacity and the hard drive seemed to sputter and whirr too often and I wanted the peace of mind that comes with owning a flash player compared to a hard drive player, so I decided to go with the Zen V since it's interface is almost identical to that of the Zen Vision M's(which I liked). The first thing you will notice is the physical design. Initially I wasn't that impressed, but it's really grown on me. The height x width dimensions are comparitively much much smaller than the iPod nano. You can actually wrap your entire hand around the device, and the soft finish feels very nice in your hand. The second color that fills the seams of the player is a very nice touch as well. The music is organized your standard Artist-Album-Song interface that is becoming quite a bit stale in my opinion. Still, it's as simple as you can get I suppose. The device officially supports album art although it seems to be very hit-or-miss in that regard in my experience. The screen is vibrant and colorful but is very hard to see in bright sunlight. The middle joystick is used for navigation and it works very well in that regard, although wedging your thumb underneath to move upward can be tricky sometimes and result in an accidental button push. A dedicated volume control switch is found on the side and a hold switch on top. The player syncs with WMP11 via USB connection. Syncing it is a snap although I was not impressed with the transfer speeds. Also, if you sync the tracks on your player back to another computer, album art will not be attached to the music tracks. If you are a newbie to buying MP3 players make note of the different sized models. The 2GB model for instance advertises that it holds 1000 songs but these figures are theoretical maximums based on low quality files. Most of my files are mid bit-rate WMAs and I can fit about 500 songs on the player, half as much as advertised. Summary: Pros: Excellent physical design Easy to use interface Good navigation Great sound quality Cons: On-the-go playlist creation is flawed Album art support hit-or-miss Slow transfer speeds from WMP11 Accesories rarely available in brick-and-mortar stores Ultimately, I recommend the Zen V over the iPod nano mostly on the strength of it's vastly superior physical design. B0001EMLXE:love_them:jessica_huerta B0001EMLXE Altec Lansing FX6021 3-Piece System: Electronics electronics 5.0 Love them November 6, 2006 Jessica Huerta I have had these speakers for over a month and I love them they sound awesome. They were delivered quickly and they were brand new as described B0001EMLXE:better_than_expected:doctor_dudemento B0001EMLXE Altec Lansing FX6021 3-Piece System: Electronics electronics 5.0 Better than expected September 25, 2006 Doctor Dudemento Seattle, WA USA I read the other reviews for these speakers so I had very high expectations. I can only say WOW! The premium price (compared with lesser 2.1 speaker systems) is absolutely justified B0001EMLXE:pinnacle_of_2.1_pc_speakers,_best_for_their_price:eli_smith B0001EMLXE Altec Lansing FX6021 3-Piece System: Electronics electronics 4 of 4 5.0 Pinnacle of 2.1 PC speakers, best for their price August 29, 2006 Eli Smith Santa Rosa, CA USA For reference, I've owned a set of Labtec APX-6420 2.1 speakers for about 6-7 years now. With the purchase of a a new computer (Mac Pro + Cinema Display) I decided it was also time to upgrade my speakers. I spent a very long time mulling over different brands and models, listening to them in stores whenever possible. Of the major "PC speaker" makers, I recall sampling Altec Lansing, Logitech, Klipsch, Bose, Creative, and JBL. Aside from listening in stores (a poor environment) I also took into account personal experience with the brands (mostly the first three I listed) in regular "home" situations. I initially wanted the Klipsch ProMedia 2.1's because of the fantastic reviews they've gotten on Amazon and elsewhere, but was turned off to them because of the apparently poor build quality (parts breaking very quickly), along with reports of buzzing, the power switch being on the back of the subwoofer, my impression of them in stores, and experience with a friend's ProMedia 4.1's (which neither I nor him really cared for, and which recently broke). I tried as many Logitech speakers as I could in many different situations and decided I HATE ALL OF THEM (with the sole exception of the Z-5500's which I own and love)! The bass especially sucks on their speakers. So... through all this I eventually came to the conclusion that Altec Langsing was the brand I wanted to go with. And if that was so, it had to be the FX6021's which I had been eyeing for years. The first time I heard them in a store I declared them my favorite of the selection at the time and the same is still true. These are probably the best sub-$200 2.1 PC speakers you can buy. Even at their MSRP of $250 they're probably worth it. These speakers a very nice! The sound is very clear and sharp. Get ready to hear all the distortion in your low bitrate digital audio files. The speakers especially shine when listen to live recordings or anything that was produced by real instruments (i.e. not techno, though that sounds good too). Subwoofer is NOT "boomy" or "buzzy" like others have reported. I never use the equalizer in iTunes and have the bass at about half. It's very deep, rich, and discrete. Doesn't shake the floor or cause my neighbors to complain--yes, I live in an apartment too and bass is a concern of mine. For those who complain about the bass: maybe you shouldn't have gotten 2.1 speakers? Maybe your units were defective? Or perhaps the subwoofer was placed in a very poor position? I know sound is highly subjective, but those reviews just don't sound right to me. PROs: * Tall, sleek, and sexy satellites provide a nice wall of sound and match the Cinema Display perfectly. * Bass and treble have a *large* range of adjustability. 50% of either is plenty enough for me. * Power button on control pod * This is important: NO BUZZING. Not while they're on, not while they off. 100% silent. CONs: * Volume adjustment is digital and moves in "notches"; these notches aren't always small enough. I much prefer a regular analog knob. * Remote is a bit useless * While they look good and perform well, they feel a little cheap * Get ready for lots of cables hanging from your desk and all over the floor (on the other hand, long cables are a PRO as well) And finally, don't be fooled by specs. Yes, other speakers may have more watts of power and THX certification, but that really doesn't matter as much as it might seem. These are more than loud enough for any sane person (100% volume would probably wake up the neighborhood). I really didn't pay any attention to the specs, I bought them because they sound the best B0001EMLXE:the_best!!!:ali_hasan_"filmmaker_-_teacher_-_political_commentator/writer" B0001EMLXE Altec Lansing FX6021 3-Piece System: Electronics electronics 2 of 2 5.0 The Best!!! August 9, 2006 Ali Hasan "Filmmaker - Teacher - Political Commentator/Writer" Surf City, California & Eagle, Colorado I've owned these Altec's for over three years now, and I have yet to ever coming close to replacing them - as a matter of fact, when facing the decision of buying another set of speakers for a new computer, I went ahead and still purchased these babies! SOUND QUALITY --- the sound quality is very crisp and excellent overall - I have used mine for video editing, and I'm very pleased with how clear the dialogue audio has come through, in addition to the special effects sound - unless you need a five speaker system (or comparable) then I'm confident that this is the most crisp sound you'll find in any speaker VOLUME --- these suckers can get LOUD - just take my word for it COMPATIBILITY --- This is the part I love most - there is no software to install and no special plugs - the speakers plug right in, and very easily, into the audio jack, just like a pair of headphones would --- thus, hooking in a computer, iPod, cd-player, etc, is easy as heck, making these speakers extremely universal for any sound equipment CONTROLS --- the speaker system comes with a seperate remote, giving one access to adjust the volume, bass, and treble, all seperately from the computer's controls -- the knob to control the volume, and other functions, is easy to use and makes for quick adjustments SIZE --- the speakers are extremely thin and the subwoofer is a very manageable size -- placing these speakers is easy PRICE --- believe me - it's a bargain at under $200!!! Overall, I give my full recommendation here -- you'll love these speakers B000AY7A1I:works_pretty_well_with_stereo_hook-up:john_a._krumm B000AY7A1I Creative Sound Blaster X-Fi XtremeMusic Card: Electronics electronics 1 of 1 5.0 works pretty well with stereo hook-up October 12, 2006 John A. Krumm Juneau, AK My sound improvement wasn't as dramatic as many people describe, likely because I already had my computer wired to a good reciever and speakers, but I did notice an improvement over the integrated system I have once I made some adjustments. If you listen to rock, pop, blues or jazz, this card can make everything seem a bit brighter and punchier. It also seems to improve Pandora internet radio streams even more than my mp3's, though I have to keep the volume at about 3/4 in the Pandora player to prevent distortion. If you mostly listen to classical on a good stereo, I'm not sure if this card will do much for the sound, but it might B0006ZSXJE:wow:jimmy_l._yelvington_"wombat" B0006ZSXJE Razer RZ-1600 Diamondback Precision Gaming Mouse- Chameleon Green: Electronics electronics 1 of 1 5.0 WOW August 10, 2005 Jimmy L. Yelvington "Wombat" Rockwood, TN I wondered what kind of mouse I would get for $60. I kept thinking, what could be so special about it. Well, I don't know where to begin. I like it so much, I'm getting ready to purchase another one just to use at work. I used a Microsoft Explorer mouse prior and thought I'd never find a mouse that was as comforable to use and had all the extra buttons I needed. This mouse completely puts the Explorer to shame. It took me a few minutes to get used to how quickly it responds but I soon caught on. I really didn't care for the glowing or the chameleon paint on it. That's not why I got it, although it does look pretty cool. As for gaming, I really didn't notice much improvment in my skill but it REALLY does feel better in your hand. The bottom of the mouse it curved in so you can grip it much easier. My only negative comment towards it is how cheesy the driver and gui is for it as it looks "homemade". I would highly recommend this mouse for anyone who spends any time at all on a PC B0006ZSXJE:razor_diamondback_it's_not_perfect_but_at_1600dpi_who_cares!:c._mccomas B0006ZSXJE Razer RZ-1600 Diamondback Precision Gaming Mouse- Chameleon Green: Electronics electronics 1 of 1 4.0 Razor Diamondback it's not perfect but at 1600dpi who cares! April 30, 2005 C. Mccomas I got the Razor Diamondback a few months back and have been very pleased with it's performance. For gaming it's great, but I do not recommended it for everyday mousing around. The resolution on the Diamondback was the selling point for me, and if that's something your interested in you will NOT be disappointed. It's really super sensitive and has improved my accuracy quite a bit. I do have a few gripes with it's design, but with 1600dpi that can be overlooked! Oh, it looks cool when the lights are out the chameleon green paint is a trip. Design problems that I have noticed... Buttons squeak, button placement is not optimal, it's kinda small for people with big hands, programmable buttons take to much force to operate which can cause erratic mouse movement. If you have a second mouse to do your work with this makes a great gaming specific mouse, highly recommended B0001D3JXG:upgraded_to_solve_security__issue.:phillip_todd B0001D3JXG Linksys WPC54GS Wireless-G Notebook Adapter with SpeedBooster: Electronics electronics 4.0 Upgraded to solve security issue. November 13, 2006 Phillip Todd I decided to upgrade my laptop with the wpc54gs from the wpc54g. I did this because the "g" card would randomly disconnect when the WEP or WPA security was activated. Living in a home near about 6 other networks I really wanted the router and wireless network secured. So, I purchased this card to see if it would fix my problem. I can happily say it solved the random disconnect with WPA security turned on. The range is just fine and all my network connections seem solid. Have not had a disconnect yet, over the last 5 hours. The reason I took away one star is the fact on the Wireless Network Monitor V2.1 there seems to be a flaw. When I connect to the network and internet the monitor says it is hooked to the network but unable to find the internet. Obvious by my submission of this review, the internet can be found and used. All in all a good product that functions just fine in my A45-S121 Toshiba laptop. Phil (Mesa, AZ B0001D3JXG:great_product:d._walton B0001D3JXG Linksys WPC54GS Wireless-G Notebook Adapter with SpeedBooster: Electronics electronics 5.0 Great Product November 2, 2006 D. Walton Haines, AK This was easy to set-up and use. It receives the signal from the router in all the rooms in my house B0006GDCD0:great_device:alex_napolitano_"sa" B0006GDCD0 D-Link Securicam Network DCS-950G Wireless Internet Camera: Electronics electronics 1 of 1 4.0 great device July 5, 2006 Alex Napolitano "sa" Miami, FL USA camera works great! the first one I ordered did not function correctly but Amazon promptly replaced it. resolution is good and audio is a great bonus that works very well. a great feature for me that I found was not available on all other devices was the ability to have video stored on a network folder. additionally, there is no software required to run this B00006GETD:does_what's_expected:alan_deikman B00006GETD Kingston 512 MB Type I CompactFlash Card (CF/512): Electronics electronics 1 of 6 5.0 Does what's expected August 1, 2005 Alan Deikman Fremont, CA United States A device like this either works or it doesn't. This one happens to work B0007O7DT0:lexar_jdp_review:gary_lawera B0007O7DT0 Lexar JDP1GB-231 JumpDrive Lightning 1 GB, 100X: Electronics electronics 4 of 6 5.0 Lexar JDP Review September 26, 2005 Gary Lawera I had no problem with the product. The directions were pretty simple. Problem: I never received my rebate information!!! B00006HOGN:great_headphones,_cheap_construction.:a._t._zak B00006HOGN Panasonic RP-HC70 Noise Cancelling Headphones: Electronics electronics 3 of 3 4.0 Great headphones, cheap construction. March 14, 2006 A. T. Zak Florida, U.S.A. The first week I had these, the left earpiece's plastic "rails" which hold the earpiece in its slot broke. The parts that seem to need the most strength structurally are fasioned with cheap plastic. Sound quality is great, with music playing and noise cancelling active, a normal conversation is barely audible in the background; great for crowded offices. Battery life is good, I've gotten 24+ hours using a NiMH rechargeable B00006HOGN:very_impressive_for_the_price:john_simmer_"simmerin1" B00006HOGN Panasonic RP-HC70 Noise Cancelling Headphones: Electronics electronics 2 of 2 5.0 Very impressive for the price January 21, 2006 John Simmer "simmerin1" minnesota I ordered these headphones from Amazon based primarily on user reviews of a number of noise cancelling headphones. I am quite pleased with my purchase. Though not stellar audiophile quality, the sound is pretty darn good, and with some minor EQ it's excellent. The noise cancelling effect seems to work very well: much better than I expected. Furthermore, the headphones are very comfortable and seem to be solidly constructed. I highly recommend them B00030CHP8:very_good_standard_sd_card_at_an_excellent_price!:j._sharp B00030CHP8 PNY PSD1GRF3 1 GB Secure Digital Card: Electronics electronics 2 of 2 5.0 Very good standard SD card at an excellent price! November 11, 2006 J. Sharp I recently bought a new 6.0 megapixel digital camera (Canon PowerShot S3 IS) which came with an extremely small and practically useless 16MB secure digital card so I bought a couple of these 1GB PNY PSD1GRF3 secure digital cards since they were on sale for less than $20 apiece. These SD cards are made in Japan by Toshiba (they are then rebranded and sold by PNY, Lexar, DaneElec, etc.) and I have been very pleased with them so far. They work flawlessly with no write-speed delay in my new camera while shooting still pictures or while shooting video with stereo sound, and the card reader in my HP Pavilion M7480N Media Center PC (running Windows XP Professional service pack 2) reads the pictures and video into my Adobe Photoshop Elements 4.0 and Premiere Elements 2.0 software programs with no problems. The only drawback is that the read-speed on these standard SD cards is a bit slow when compared to the newer and faster SD cards...it takes several minutes to transfer all the pictures or video from a full 1GB card onto my PC...but I find this to be a small inconvenience rather than a big problem. So, if a little longer read time is not a problem for you, then save yourself some money and buy this card. Overall, a very good standard SD card at an excellent price! B0009AFFE2:great_product:ryan_t._duffy B0009AFFE2 Lexar SD1GB-40-231 1GB Platinum Secure Digital: Electronics electronics 3 of 4 5.0 Great Product January 15, 2006 Ryan T. Duffy Philadelphia, PA There isn't too much to write about this except is delivers as stated. Great product for the price B0000CEPC0:works_great_with_macintosh:jeff_g._"microdoc" B0000CEPC0 D-Link DCS-900 10/100TX Internet Camera, Home Security: Electronics electronics 5.0 Works Great with Macintosh November 2, 2006 Jeff G. "MicroDoc" Wisconsin I set up a small security program with my Macintosh. Intially I needed a PC to place the settings in the camera, however once I got it hooked up to my security system it works beautifully. I would recommend you leave the lights on though because if you don't you will be getting just a black, fuzzy dark image back if you are using this camera for security. This camera is a very simple easy to use camera without the fuss of zooming, pan, tilt etc. If you need a simple camera you can't go wrong with the D-link DCS-900 (Wireless or wired version) B000BSHI92:excellent_service.:chris_schaefer B000BSHI92 Power Strip Liberator Flat 18'' (5-Pack): Electronics electronics 2 of 7 5.0 Excellent service. February 25, 2006 Chris Schaefer Houston, Texas USA What can you say? I placed my order with Amazon.com. A few days later the product arrived at my door. Perfect B000A2AMUQ:good_quality_sound_for_portable_use:dendoc_"dendoc" B000A2AMUQ MUSICASE-IPOD/MP3 Accessory Speaker & Carrying Case: Electronics electronics 14 of 14 4.0 Good Quality Sound for Portable Use February 28, 2006 dendoc "dendoc" Western U.S. The quality of materials: zipper, hard case, strap and light weight are outstanding. When I connected my MP3 player, the sound was impressive for a-carry along- portable stereo speaker. Next, I took the MP3 out of the speaker case and loaded my DT 200V pocket radio; again the sound was very good and even loud at a low volume setting. Now the minor negatives: changing the volume, etc. requires going into the zipped case. Other than the ipod, be careful in selecting this speaker. The player, radio... cannot be more than 4" high, 2.5" wide and .75" thick; larger and you may not be able to zip closed the speaker case, which is necessary. My items just do fit. So the Quality Sound and Materials make this a fine product, especially for the money. OTHER PRODUCTS REVIEWS HAVE GREATLY HELPED ME DECIDE WHAT TO BUY, THIS IS WHY I DID THIS REVIEW. PLEASE DO THE SAME FOR OTHERS AS YOU BUY PRODUCTS. B0002IG356:perfect_keyboard,_good_mouse:stephen_craton_"melchior.us" B0002IG356 Microsoft Optical Desktop Elite for Bluetooth: Electronics electronics 6 of 6 5.0 Perfect Keyboard, Good Mouse June 21, 2006 Stephen Craton "Melchior.us" Indiana I bought this package purely for the keyboard. I wanted a new one with wireless technology and I was driven to Bluetooth just because it is so reliable. I do not use the keyboard and mouse together, however. The keyboard is one of the most comfortable keyboards I've ever used. I am a computer programmer so having a nice keyboard is essential. The pad at the bottom is very comfortable and the keys are very well spaced and organized. The only real compliant is they cut some corners with the home, end, page up, page down, and delete keys. They moved them around from the conventional way which I still haven't gotten used to but it's fine. I have experience no lag with either the mouse or the keyboard. I play a game called StepMania (a sort of Dance Dance Revolution clone for PC) which requires very accurate timing with the keyboard. I've experienced no problems here, it's spot on and probably the fastest ever. The only problem, really, is it takes a while to register if you haven't use the keyboard for a while since it must turn back on from sleep mode and reconnect. After that however, there are no problems at all. I do not use the mouse with the keyboard. I decided to use it as a mouse with my iBook since it had built-in bluetooth. I had absolutely no problems connecting the two devices and it works flawlessly. I don't use the mouse very much, but the times I do use it I experience no problems. Both the range on the mouse and the keyboard are extremely nice. I can go anywhere in my room with either the mouse or keyboard and experience no problems. The battery life on the keyboard is also very nice, esspecially since it has the built-in sleep feature. I have had to replace the batteries once since I got the unit in January of 06 (currently June of 06). I have not had to replace the mouse batteries yet, but I do not use it very much. Others complained about not being able to use the keyboard in the BIOS or startup screens, but I haven't had any issues with that. It depends on how recent your motherboard is, and mine is relatively new so I had no problems. I highly recommend this setup to anyone wanting a wireless keyboard or mouse, or if you want to split and use the mouse with a laptop and keyboard with a desktop. Either way, you cannot go wrong with this package, it is extremely excellent B00005LAC5:does_the_job:natataka B00005LAC5 Jensen J052W Indoor / Outdoor 2-Way Speakers, White: Electronics electronics 2 of 2 4.0 does the job October 9, 2006 natataka Torrance, CA i recently purchased these speakers for my patio setup. the sound quality wont blow your mind, but it does not sound bad. its large and lound enough to hear for an outdoor speaker for the price. it has a switch in the back for outdoor/indoor. not really sure what that does. very easy installation with the brackets included. (no screws provided) overall great unit for thye pric B00006RVNW:solid_and_clear:tony B00006RVNW Monster Cable ULT V1000 CV-4 THX Ultra 1000 Component Video Cable: Electronics electronics 1 of 1 5.0 Solid and Clear August 25, 2005 Tony Virginia I agree that these cables are way too expensive!! However that being said, they really do perform well. I have been using them for almost a year and they are just solid. Colors always look their best. I know it was a silly purchase but my DVD's look great. B00067KETY:good_phone_-_short_battery_life:cubbins B00067KETY AT&T 959 Speakerphone with Caller ID (White/Gray): Electronics electronics 3 of 3 4.0 Good phone - short battery life July 26, 2006 Cubbins Ohio Overall, a good phone. Low cost. Well built. Many features. Speaker works OK for the price. Features such as caller ID and the speaker phone are powered by batteries. As stated by another reviewer a set of batteries only lasts a few months, even if you do not use the battery-powered speaker phone often. This phone would be a great phone (for the price) if it did not use batteries, but was a plug-in model B0007QOK9Y:best_value_for_money.:d._weerakoon_"ddw" B0007QOK9Y Actiontec USB00020C-01A Internet Phone Wizard: Electronics electronics 3 of 4 5.0 Best value for money. May 9, 2006 D. Weerakoon "DDW" USA For a long time I was looking for a phone to use with skype. For the price and convenience, Actiontec Internet phone wizard was the best I found and ordered it from Amazon ($42.99 with free shipping). After receiving the modem I have been using it for almost a month now and I am extremely happy. I have connected my codeless phone to it and everything seems to be working fine B00009V2PG:great_product:virgil_dahlstrom_"vasind" B00009V2PG Panasonic KX-TCA86 Folding Headset with Noise-Canceling Microphone: Electronics electronics 1 of 1 5.0 Great product July 26, 2006 Virgil Dahlstrom "vasind" Minneapolis, Mn. This headset is everything that I hoped it would be and the seller rates 100 B0000BXJVW:best_price:hayley B0000BXJVW Canon Borderless Photo Paper Plus, Glossy (7980A022, 4x6, 120 Sheets): Electronics electronics 5.0 best price November 4, 2006 Hayley Connecticut you can never go wrong with this paper. I always buy it here, the price in stores is outrageous B0000BXJVW:highly_recommended:b._v._michael B0000BXJVW Canon Borderless Photo Paper Plus, Glossy (7980A022, 4x6, 120 Sheets): Electronics electronics 5 of 6 5.0 Highly recommended September 2, 2006 B. V. Michael My experince shows that it is always better to use paper from the same brand as your printer. Then the result is really outstanding print after print. The paper is really top quality and regardless of your needs it will satisfy them. Bravo Canon for this first class product B000CS7RYM:how_networking_technology_should_work:css B000CS7RYM Sling Media SlingLink Ethernet Connection Bridge: Electronics electronics 1 of 1 5.0 how networking technology SHOULD work November 8, 2006 css Needham Heights, MA USA Agree with the reviewer who called this a 'Perfect Product'. It is. a) Take it out of box b) Plug it in c) You're networked Elapsed time - approximate 15 seconds. Compared to the pain I went through trying to get my SlingBox working with a Linksys game adapter, installing SlingLink renewed my faith in technology. Awesome B000CS7RYM:super_easy_setup_and_works_like_a_charm:bearcat B000CS7RYM Sling Media SlingLink Ethernet Connection Bridge: Electronics electronics 3 of 3 5.0 Super easy setup and works like a charm October 7, 2006 Bearcat Ohio I purchased this to use with my newly acquired Slingbox Pro. All I had to do was plug these into wall outlets and connect the Lan wires. Worked like a charm...couldn't believe it was that easy. Great performance and good price from Amazon B0006FS2E0:great_for_the_price:pauly_long B0006FS2E0 IOGEAR GBU211 Bluetooth To USB Adapter: Electronics electronics 5.0 Great for the price August 11, 2006 Pauly Long Littleton, CO United States Bottom line up front: Works very well, very low price, works much better with the included drivers than with the generic windows xp driver Detailed review: I bought this so I could use my new Treo 700w with my non-bluetooth-enabled laptop. The price was my main motivation in buying it. Initially I just plugged it in and used the default windows xp drivers and it worked okay, however it didn't always work and i'd have to unplug/replug for my phone and the device to find and talk to each other. After getting tired of that, I decided to install the drivers that ship with the product. I've had a much better experience since i did that. I was afraid the software would be really clunky given the cheap price, but it's actually quite good and gives you a TON of options that the standard XP driver does not provide. If you use a this with a laptop and you dock/undock it, you'll have much better luck if you stop the adapter prior to docking/undocking. Otherwise, you'll probably end up having to unplug/replug it B00006HZ0K:logitech_mx500_optical_mouse:hardware_traveler B00006HZ0K Logitech MX500 Optical Mouse: Electronics electronics 4.0 Logitech MX500 optical mouse July 6, 2005 Hardware Traveler California, USA This is a corded mouse; fits comfortably in your hand. Moves smoothly across table surface; works well on a mousepad as well if you need wrist support. Worked out of the box (except for the application button) for the different buttons on the mouse. The Internet buttons allow for a page forward/ back with your thumb. There are also line up/down buttonw above and below the scroll wheel that allow for more control in scrolling. The scroll wheel feel good, better than some other mice I have used. I opted to use the native Windows XP mouse driver, so the application button does not work, but the Windows taskbar is not much of a hardship :-); and I prefer not to clutter up my system with another set of marginal utility software B0007ZFLYS:good,_not_great:juan_m._camacho_arturo_"harkon" B0007ZFLYS Logitech Quickcam for Notebooks ( 961404-0403 ): Electronics electronics 4.0 good, not great November 10, 2006 Juan M. Camacho Arturo "HarKon" Davie, FL United States It has very good definition but is slow, even in the night is not that good and is slower B00006JHZ0:compatible_with_more_models:wayne-in-seattle B00006JHZ0 Motorola Ni-Cd Rechargeable Battery for T5000 Series Radios (53615): Electronics electronics 6 of 6 5.0 Compatible with more models February 16, 2006 Wayne-in-Seattle Seattle, WA While the product description states this battery is "Compatible with Motorola T5320, T5400, T5420, T5600, T5620, T5700, T5720, T5800, and T5820 2-way radios" the 53615 is compatible with many more. To bad Amazon couldn't put this online for us. From the packaging: T4800 Series T4900 Series T5000 T5320 T5400 Series T5500 Series T5600 Series T5700 Series T5800 Series T5900 Series T6500 Series FV500 Series B000F8L506:excellent_phone_tons_of_features:j._sundquist B000F8L506 Panasonic KX-TG5672B 5.8 GHz FHSS GigaRange Digital Cordless Answering System with Dual Handsets: Electronics electronics 16 of 16 5.0 Excellent phone Tons of features October 14, 2006 J. Sundquist New York I purchased this phone system as a gift. I set it up and used it extensively. The handsets have features that you are used to finding in a cell phone. Many different ring tones to choose from, the antenna lights up when a call comes in. You can even set special colors and ring tones for specific callers so you'll know when they're calling without picking up the handset. Talking caller ID is great too. No more rushing to find the phone only to discover it's a sales pitch or a call that could wait. I set this phone up on a voice over IP cable modem phone and the calls are loud and clear. The phone is running next to an 802.11b/g wireless computer network and has NO interference at all. One suggestion to make the batteries last longer: Do NOT leave the phone sitting in the charger all the time. This will basically be constantly charging the batteries and will wear them out MUCH faster. Instead leave the phone off the charger until the battery alert beeps and the phone displays "recharge" on the screen. Then let it get a full charge. You'll find that the batteries will not need to be replaced for a year or more instead of 6 months or so B0009Q4PIS:music_like_never_before:s._huesman_"music_collector" B0009Q4PIS Ultimate Ears Super.fi 5 EB Earphones (Black): Electronics electronics 5.0 Music Like Never Before November 1, 2006 S. Huesman "music collector" Kentucky, USA I was looking for a new pair of headphones to compliment my brand new ipod nano when I ran across these on a website. I was a little hesitant at first because I don't think I ever spent over $40 on a pair of headphones. I finally decided to invest in these because I spend most of my free time listening to music. I received these the other day, and immediately plugged them into my ipod. Please don't let the breaking in period discourage you! After these become comfortable, you will hear music you have never heard before even when you are listening to songs you have heard thousands of time. I started with all my heavy bass tracks, and couldn't believe how they sounded with these headphones. I then wanted to try some of my jazz and blues tracks to see how these tracks sounded. This is the first time in my life John Coltrane has given me goosebumps! If you are debating on whether to spend this kind of money let me make it easy for you. If you are just a casual music listener, I would say just go with a good pair of cheap ones, you will save a lot of money. However if you are a passionate music lover and collector, these headphones will change your music completely. After getting comfortable with these, I would have paid much more than I actually did B0009Q4PIS:for_extreme_bassheads:douglas_a._greenberg B0009Q4PIS Ultimate Ears Super.fi 5 EB Earphones (Black): Electronics electronics 12 of 12 4.0 For extreme bassheads February 28, 2006 Douglas A. Greenberg Berkeley, CA USA This is the Ultimate Ears Super fi model especially designed for "bassheads," featuring a disproportionately large bass driver complemented by a more conventional driver for the middle and high frequencies. I don't think UE would ever claim that what results is a balanced sound signature. Yes, the mids and highs are present and the quality is clean and reasonably detailed, but these frequencies are definitely recessed and with some kinds of music this can result in an unnatural kind of reproduction. On the bright side, however, the bass reproduction is marvelous. Not only is the quantity/extent of the bass frequencies as powerful as any headphones or earphones I've ever used, the quality is excellent. The bass is tight and pleasant, neither boomy nor thumpy. This overbalance toward bass frequencies renders the UE 5 EB's ideal for use when listening to music in which the bass is presented "front and center," including techno bass (aka "car audio bass"), drum n' bass, and many types of rap/hip-hop. For music in which the basslines are prominent but comprise part of a more balanced presentation overall, opinions will vary. With rock music, for example, the strong bass is certainly a plus, but I have found that sometimes the bass overpowers the middle frequencies too strongly, and some detail is lost. It should be noted that this bass-dominated sound signature renders the EB's a good choice for people who own iPods and feel that their music player is weak on bass. Without any EQ adjustment, the iPod suddenly is transformed into a player where the bass is PRESENT. In terms of build, the EB's superficially seem well-constructed and designed. I have heard complaints, however, that the thinness of the wires and earpieces render them vulnerable to breakage. Be careful out there! Thoughtfully, EB has includes a variety of ear tips with these IEM's (including foam, flanged, and plain) so that users with different sized ear canals can get a good fit. The EB's don't extend deeply into the ear canal, which is a mixed blessing. On the one hand, this means that if you get a good fit of the earpiece into the entrance to the ear canal, comfort is good and isolation decent. However, if the fit is not quite right both comfort and isolation will prove frustrating. Making the right choice of ear tip is absolutely essential when using the EB's. Oh, and some people think that the EB's look kind of strange when worn. Larger than the higher-priced Super fi 5 Pro model, the EB's stick out a bit. Your call as to whether this is a problem. Like all of the UE IEM's in this series, the EB's are packaged with a nice set of accessories, including a 1/4" adapter plug, a sound attenuator, a soft travel case, an earwax loop, and a silvery metal storage case which includes a winder that helps head off what is always a problem with IEM's, cord tangling. It's unlikely that the EB's will prove satisfactory as your "everyday" earphone unless you listen solely to bass-dominant types of music. The truth is, however, that even for bass-heavy music the overall sound signature of the Super fi 5 Pros is likely to be more satisfactory for most users (I own both). But as a second pair specifically for use with bass-y music, the EB's are well-designed and definitely fun B0001FV30K:amazin:anil_k._pali B0001FV30K DLO TransPod All-in-One Car Solution for iPod White: Electronics electronics 5.0 Amazin November 10, 2006 Anil K. Pali Chicago,USA we have this for our 30gb ipod and it works fine in both our cars.....very handy and a must buy!! B0002XJBGE:excellent_for_auto-racing_games:andrew_martin B0002XJBGE Logitech Cordless Rumblepad 2 with Vibration Feedback (963326-0403): Electronics electronics 4.0 Excellent for Auto-Racing games November 20, 2006 Andrew Martin Paradox, Canada This is the 2nd Gamepad I've owned (My first PC was in 1993). The 1st gamepad was the Gravis Gamepad (4-button + D-Pad). I recently upraded and there is no GAME/MIDI port on the new system, plus I need more buttons for Need For Speed Most Wanted, etc. I love this controller. I've had it for two days and have had nothing but excellent results. I've only used it in NFS games (I have them all). The WiFi works flawlessly and I have a WiFi network in my house. Installation is simple and takes maybe 3mins. The rumble only works on games which have forced feedback software. This is totally understandable. The feedback in NFS-MW is very slight but that's not the controllers fault, it's a matter of programming by EA Games. I like the weight of the controller. It's not feather light, so with that motor and battery weight added, it feels more like a premium device (just like the 67$ with tax I paid for it - canadian dollars). I didn't like how my gravis gamepad as so light, so this is a step up. The analog sticks are a great for racing as they are progressive like a steering wheel. They are rubber gripped for non-slip action. I am used to the D-Pad, so I have mine setup in NFS to use both as a directional control without having to press the MODE button to switch because you don't have time during a race to press a button before switching. It works as well as my old gamepad, but feels betetr and has extra buttons and the other features listed make it worth the money. If you in the USA, you'll be getting a much better deal. It lists for 60$ cnd here but only 30$ US in the states. CONS: It's not as comfortable to hold as I would like but its much better than my Gravis Gamepad and the buttons are easier to hit on the new one. CONCLUSION: I'm very satisfied overall and I knew I may have to get used to the way it feels when I hold this controller since changing from the old SNES style Gravis Gamepad. 4/5 rating only because it could be easier to hold B0007U8Y9M:really_a_great_phone:yogi_bear B0007U8Y9M Panasonic GigaRange KX-TG5576M 5.8 GHz DSS Expandable Cordless Phone with Answering System and Color LCD on Handset (Metallic Grey): Electronics electronics 5.0 Really a great phone November 12, 2006 Yogi bear DC area We have had this phone for almost a year and I love it. We have the base station which is also an answereing machine plus we have a sattelite phone. I wish we had more satelite phones. I love the talking feature because I just listen and know who is calling. I also love the programming feature. I never have to look aup a tel number that I call regularly anymore. I just wish the extra phones were not so expensive to add on. Great phone buy it B0002A9U7M:no_management_needed:norm_cimon_"programmer" B0002A9U7M Netgear GS605 5-port Gigabit Ethernet Switch (10/100/1000 Mbps): Electronics electronics 4.0 No management needed November 11, 2006 Norm Cimon "programmer" La Grande, OR USA The system worked out of the box allowing me to quickly link up additional devices in an in-home office which had a single network connection. Haven't measured simultaneous throughput to multiple computers yet, but from simple observation connectivity seems transparent. Should allow for movement to gigabit switching in the future as well B00004Z5PY:excellent_producs:a._wilson_"latins3" B00004Z5PY Belkin F3U133-16 USB 2.0 A/B Cable (16 Feet): Electronics electronics 5.0 Excellent producs November 9, 2006 A. wilson "latins3" boston, ma This cable is of the best quality, quick shipment and at a price that beats all the retail stores - you can't go wrong B0009J4X14:stylish_design_that_works_great_too!!!:n._saboor_"gadgetguru" B0009J4X14 Vtech I5871 - Expandable System w/ digital Answering Device, Color Handset Display & Dual Caller ID: Electronics electronics 5.0 Stylish design that works great too!!! November 3, 2006 N. Saboor "Gadgetguru" CA - USA I did buy a set of 2 "Base station and extra handset". Its a great design, tons of features, MP3 ring ton, Picture Caller ID, Sync with your PC for phone book, Answering machine, etc. I am very happy with. Thank you so much for such great product with a great price B0009J4X14:best_phone_i_have_used:d._l._neumann B0009J4X14 Vtech I5871 - Expandable System w/ digital Answering Device, Color Handset Display & Dual Caller ID: Electronics electronics 1 of 1 5.0 Best phone I have used November 3, 2006 D. L. Neumann Portland, OR I work at a home office so I am on the phone lot. I always buy cordless phones I can use with a headset so I can have both arms free while I talk with a min of background noise intrusion. In other words, I don't talk with the phone cradled between my shoulder and ear. And I don't use speaker phone features. Let's just get that out of the way now since those are things some have complained about that I couldn't care less about. This phone first of all looks good and FEELS good. It was built with high quality plastics and metals on all surfaces. It has a nice solid weight to itself. Nothing tacky or cheap about it. It looks far better in person than it ever did in pictures. And it looks pretty good in pictures. I like how the bases are designed such that the antennas serve a double purpose as cradle supports for when the phone is docked. Clever design. The charging base light and back-lit buttons all look very slick. The screen is attractive. A big step up from back-lit LCDs or no screen at all like my previous phone. I like that you can very quickly find and hit Mute, adjust volume, and page through your caller history. The belt clip goes deep so the phone stays snugly attached to you pocket when you are walking around. I know many 5.8 GHz phones don't mention that only one direction of communication is at that frequency vs. both directions (as 2.4 GHz sometimes gets used too). I don't know for sure if this phone falls into that category, but I was in the market for a 5.8 GHz phone to avoid interference with my WiFi networks as well as to avoid microwave oven interference with my calls. One thing's for sure: this phone definitely is immune from MY microwave oven. In the past when I was on a call heating up my coffee, static and voice quality went way down unless I got far away from the oven. With this new phone I can stand right by it while on High w/o ANY impact on voice quality. One other very cool feature is the spare battery charger. While it's nice that the battery can replace a unit that runs down in a handset right away, the best part is if you have a power failure. Your phone will keep truckin' and there is never a need to replace that battery with some short lived 9volt waste of time. Finally, I like how the phone by a bedside basically doubles as a digital clock. The phone base unit picks up the current time from the caller ID info provided by the phone company and uses that info to automatically set and broadcast the current time to all headsets and base station. No need to manually set the clock. And when not in use, sitting it is dock, the phone's screen displays the time. So far I've found the voice quality to be best of any cordless phone I've owned B00008Y1A7:great_item:a._sokolowski_"mom_of_3" B00008Y1A7 Sony SRS-A202 Active Speakers with Built-in Mega Bass Sound: Electronics electronics 13 of 22 5.0 GREAT ITEM September 16, 2004 A. Sokolowski "Mom of 3" NJ I bought this for my kids computer when I bought a new one for hubby and myself... these speakers sound better then the more expensive ones I have.... I highly recommend these speaker B000BI7NHY:mixed_results_with_my_t/x:l._prosky B000BI7NHY Palm TX Handheld: Electronics electronics 5 of 6 4.0 MIXED RESULTS WITH MY T/X November 10, 2006 L. Prosky i wanted a top quality palm with the bells and whistles. this is pretty close to it but i had a few problems with the email and web features. granted i am not a techie, but connecting and checking email should be more straightforward. all the other features are top notch and overall i love my palm B00005LACD:works_great!:s._stokesbary B00005LACD Jensen JP20 160-Watt DC-to-AC Power Inverter: Electronics electronics 4 of 4 5.0 Works Great! July 20, 2006 S. Stokesbary I purchased this item for a long trip so I could charge and/or play my Zen mp3 player in the car without worrying about battery life on the trip. It worked great. I am also planning to use it for my notebook in the car the same way because the car adapter for my notebook costs $100 B00001P4YG:the_headphone_to_compare_all_others_to.:chris_kelley B00001P4YG Koss KTX-4 Collapsible Portable Stereophone: Electronics electronics 2 of 2 5.0 The Headphone to compare all others to. April 11, 2002 Chris Kelley Boston, MA I have searched and searched and searched for a pair of portable headphones that sound as good as these with lots of failure. IMO, you cannot beat the sound of a set of "over-the-head" headphones. I have tried all styles: earbuds, behind the neck, clips, even the ear plugs. Nothing gives the sound and comfort of the KTX Pros (granted, I have never tried the sportapros or portapros, but from what I have read, they are the same headphone. Except they are UGLY!). The KTX Pros have both great lows and great highs. Plus, you can't beat that price B0000A1GO9:nice_but_not_solid:y._simonov B0000A1GO9 PNY E-Commerce 512 MB USB 2.0 Portable Drive (P-FD512U20-RF): Electronics electronics 4.0 nice but not solid August 19, 2006 Y. Simonov usa For the price is is great. it's working fine but the plastic is not solid and has a feeling of low quality. B0000A1GO9:convenient_and_very_usable:technofreak B0000A1GO9 PNY E-Commerce 512 MB USB 2.0 Portable Drive (P-FD512U20-RF): Electronics electronics 2 of 2 4.0 Convenient and very usable July 18, 2006 Technofreak Springfield MO I thought that this flash drive was above average in performance. Works well between a Macintosh and a PC. I liked the feature--missing from my last flash drive--of easily emptying the drive after use without having to some fancy erasing techniques. In other words, the PNY worked like a real hard drive. I would like the manufacuters to explain in detail how to attach the tread to the laniard. It took me a while to figure it out B000F4CVQC:a_great_audio_compliment:k._briscoe_"save_bluth" B000F4CVQC Bose SoundDock digital music system for iPod (Black): Electronics electronics 1 of 1 4.0 A great audio compliment November 9, 2006 K. Briscoe "Save Bluth" Chicago, IL United States With so many of these ipod speaker docks on the market, it was sort of struggle to decide. Ultimately, I felt very comfortable going with the Bose brand. Plus, in my opinion, this is about the sleakest and best-looking unit out there (I went with black; I'm not an Apple-white drone). The sound is very, very good for small to medium size spaces. There are not a lot of features to the unit, which I think is a good thing - it just focuses on the sound and the small footprint. Mini remote control work well and again the small size makes it unimposing in this world of too many remotes. Power cord is plenty long and I like the fact I can easily move the thing to a different room if I need music there B000F4CVQC:great_quality,_not-so-great_price:a._sands_"commander_pudding" B000F4CVQC Bose SoundDock digital music system for iPod (Black): Electronics electronics 1 of 3 4.0 Great quality, not-so-great price November 3, 2006 A. Sands "Commander Pudding" Minnesota Well, the bose sounddock is a wonderful music dock. Its VERY simple. just put your ipod on there and ROCK OUT TO THE BEAT. The bose quality is very obvious, and it looks like you could spend 300 dollars on it, which brings me to my next point. ITS TOO EXPENSIVE. my recomendation is to buy an FM transmitter and listend to your ipod on any Fm raido. The only disadvantage of an Fm transmitter to this is that this will charge your ipod, and its slightly easier(but thats what iPod is all about, isnt it...?) Basically, im saying buy it if you have a lot of mone B0007RA6NW:great_little_radio:henrybmn_"henry_b" B0007RA6NW Sony SRF-M97 Radio Walkman: Electronics electronics 18 of 19 5.0 great little radio March 10, 2006 HenrybMN "Henry B" Minneapolis, MN United States I'm a jogger, and like to listen to All Things Considered while I run miles and miles. This radio is great because the light weight is unobtrusive. It has a convenient "lock" button to prevent accidentally changing the station with a bump. I previously had a similar size unit from Aiwa, this Sony has MUCH MUCH better reception B00083PGFS:convient,_bring_extra_batteries.:j._mullin B00083PGFS Apple M9861G/A iPod Camera Connector: Electronics electronics 2 of 3 4.0 Convient, bring extra batteries. July 18, 2006 J. Mullin Iowa This works well, allows you to view imported photos, but it is a slow proccess best left for the hotel room. Just plan on taking plenty of batteries and the charger for your ipod. B0000B35CK:beware_type-m:j._lamberg B0000B35CK Fujifilm 512 MB XD Type M Picture Card ( 600002308 ): Electronics electronics 5 of 6 5.0 Beware Type-M August 29, 2006 J. Lamberg Saint Paul, MN USA This card is the largest size that will allow clean video with FinePix cameras from 2004 or earlier. The picture-to-picture lag time is minimal with this card and video is excellent. From Fuji Website - "NOTE: for owners of FinePix cameras made before 2004, check notice below for the operating compatibility of older FinePix cameras with Type M and H. B00004Z5XH:i_didn't_believe_it,_but_it's_true...:p._summersgill B00004Z5XH Canon 1029A004 Photo Paper Pro for BJC-8200 (8.5"x11", 15 Sheets ): Electronics electronics 13 of 13 5.0 I didn't believe it, but it's true... November 24, 2003 P. Summersgill San Rafael, CA USA I was devout in my belief that I could get similar photo output from my Canon S800 with less expensive paper. I bought those big boxes of 100 sheets of Kodak's photo quality glossy from Costco. My prints were blotchy. Then I got my hands on some of Canon's Photo Paper Pro, and my pictures were magically crystal clear. The difference is amazing. I never would've thought paper would make this much difference. I've since bought Canon's 15 sheet packs multiple times. I now use the Kodak stuff for drafts or to give prints to people who don't care much about the quality of the output, while I save the Canon Photo Paper Pro for prints we want to frame B0006IEV7E:very_fast:d._smolarek B0006IEV7E SONY MSX-M1GN 1GB High Speed Memory Stick(R) PRO Duo Media ( Red ): Electronics electronics 11 of 14 5.0 Very Fast May 4, 2005 D. Smolarek Chicago, IL USA This stick is fantastic for high resolution photos and is lightning quick. Do you need the extra speed the MSX-M1GN gives you? Maybe, maybe not. But at least you have it when and if you need the feature. Highly recommend it for the money. B000C28VPM:great_little_speakers:scott_james B000C28VPM Creative TravelSound 400 Portable Speaker System ( 51MF5030AA000 ): Electronics electronics 9 of 9 5.0 great little speakers May 5, 2006 Scott James California Those people giving these speakers low reviews because they don't have enough bass are idiots. I don't know what people expect of these little speakers, but it is difficult to imagine them delivering as much bass as they do. These are amazing little speakers that have accompanied me in all of my travels; from Paris to camping in Northern California. I cannot imagine going everywhere without them. They are not equivalent to a $10k stereo system, but they are not meant to be. All I need is my Zen touch or Zen micro and these speakers. Do not listen to the other reviews, these speakers will make a decent stereo of your MP3 player. Enjoy them anywhere B000CRUZ2O:works_well_most_of_the_time:sanjeevp_"bottom_line" B000CRUZ2O Actiontec VoSKY Skype Call Center ( USB07051C-01 ): Electronics electronics 4.0 Works Well Most of the Time November 11, 2006 SanjeevP "Bottom Line" USA I have used VoSKY Skype Call Center (USB07051C-01) for about a year now as my only home Skype In phone (paying $3.16 a month) after getting rid of Verizon (for which I was paying $50.00 a month). PROS It works most of the time although sound quality is not as good as regular phone. Easy to set up. CONS Once in a while the phone will keep on ringing even after you hang up and then you have to exit out of the Vosky software and start again. You need a computer. In summary good value for money and the best way to use Skype as your phone until phones that can be used without computer like Skype Wi-Fi phones Netgear and Belkin come down in cost and their bugs are worked out; or a phone adapter like this product comes out that plugs directly to the router B000CRUZ2O:makes_using_skype_that_much_easier:david_mozealous B000CRUZ2O Actiontec VoSKY Skype Call Center ( USB07051C-01 ): Electronics electronics 1 of 4 4.0 Makes using Skype that much easier August 25, 2006 David Mozealous San Diego, Ca United States Although I could go on and on about how Skype has changed my life forever, I will try to address the issue at hand, and that is the Polycom Communicator. Basically I love the concept of the Polycom Communicator! When I first started using Skype I used a USB headset that works great. The problem is that it is a serious PITA to put the thing on when someone calls because I have to either a. Try to untangle the cord before accepting the skype connection, or b. answer the skype connection then try to untangle the cord. If I chose option a. envariably I would miss half the calls, if I chose option b. everyone would always comment that I sounded so desheveled when I tried to answer the call. Well, now with the new Polycom communicator all I have to do is answer the call. As far as the quality and performance of the Polycom communicator...that is the only reason I didn't give the item 4 stars. It seems ocasionally that when you are in large conference calls that the Polycom communicator will cause feedback to other peoples lines. It is really sporadic though, and I can't seem to reproduce it consistently. Also, the driver for the Polycom Communicator has crashed on me a couple of times. So despite the downfalls that I mentioned above, there is no way I could give up my Polycom Communicator now. I simply love it, I just wish those other issues never happened B000092WYS:a_monster_of_a_cable.:tom_->_"'the_sadhu'" B000092WYS Monster Cable DVI400-5M DVI-D Video Cable: Electronics electronics 0 of 2 5.0 A Monster of a Cable. August 5, 2006 tom -> "'the sadhu'" same world as you Well, actually I bought this nice cable, at Amazon Marketplace great offering that it was, for an HDTV Tuner, which bombed in my neighborhood. So, I never did get to unpack the cable. But it's in the closet, and it knows it's a good cable. Great cable, @ great price, thru Amazon B0007Z6RAA:perfect_for_your_laptop:franklin_villalobos B0007Z6RAA Logitech R-20 Speakers: Electronics electronics 6 of 6 4.0 Perfect for your laptop June 30, 2006 Franklin Villalobos Lima, Peru I'm a Creative fan so these are the first Logitech speakers I ever bought and I was pleasantly surprised. I was looking for a set of speakers for my laptop but since the portable models are more expensive (and probably will not sound as good since being portable means no sub-woofer) I decided for this not-as-portable model. Well, these are perfect to keep on your desktop (though the ideal placement of any sub-woofer is on the floor close to a corner), as it has a small sized sub-woofer all controls in one the speakers. These speakers sound really nice, slightly superior sound to Creative's corresponding model (SBS 350) but with less output power (Creative's SBS 350 sub-woofer is larger and more powerful) Pros: - Headphone jack and POWER button in the left speaker - No "wired remote" (which adds more clutter to your desktop) - Nice design for the price - Even cheaper than Creative's SBS 350 Cons: - Small sub-woofer - No "wired remote" which means you have to keep one of the speakers close. - No bass control (which usually means too much bass if your audio source has no equalization control B00030A066:great_card:mark_twain B00030A066 ACP-EP Memory Mobile Storage 512MB MultiMedia MMC Card - EPMM/512: Electronics electronics 3 of 3 5.0 Great card March 1, 2005 Mark Twain Southern California I bought one of these to replace the standard 32MB card that came with my camera. Wow, now I can store a ton of pictures. The price on the EP Memory cards are awesome too B00076QA56:fits_quest_2_perfectly..:steven_bryant_"tek" B00076QA56 Garmin 010-10500-00 Carry Case, Quest, Deluxe Leather: Electronics electronics 5.0 Fits Quest 2 perfectly.. November 3, 2006 Steven Bryant "TEK" Louisville, KY I have the Quest 2, but I've heard that this also fits the Quest. I bought it because, while my Dell laptop backpack is well padded, I wanted to make sure that my Quest 2 GPS was protected "just in case". This case fits perfectly, literally like a glove. When I got it, I was sceptical; it looked to small, but I was wrong; the dimensions are perfect. And there is more than enough padding to protect the GPS from harm, yet it is small enough to stick in a jacket pocket, which I sometimes have to (late day meetings where I leave my backpack at work). All in all, it's another great product from Garmin B00002ND67:they_withstand_punishment_year_after_year.:nina_goodall B00002ND67 Lasko 20" Gray Box Fan: Electronics electronics 3 of 3 5.0 They withstand punishment year after year. May 30, 2006 Nina Goodall New York, New York United States I have been using these fans for the stalls in our horse barn for years. It keeps the flies away and cools down the whole barn. The barn is dusty and the fans collect a lot of dirt. I wash them down each year and they are like new. The fans I have now are on their third barn year. In a normal house I'm sure they would last forever. They are a little noisy, but the horses don't care B000196ENC:does_the_job:lovesstories B000196ENC Magellan RoadMate GPS Dash Mount: Electronics electronics 4 of 4 4.0 Does the job October 30, 2006 LovesStories Sacramento, CA USA I purchased this dashmount so I could swap the GPS between vehicles without having to install a permanent mount. I don't know what the "feet" of the base is made of, but it is basically like a rubber version of a lead blanket - it is heavy yet is very pliable. This is useful since my dash (a 2004 F-250) has an uneven surface. I can press and mold the feet to put the base in a certain position and under most circumstances it'll stay there. Occasionally, on long or "bouncy" trips, it'll creep out of position a couple inches and I'll have to move it back. I've seen some comments complaining of that - but I don't see it as a problem since common sense says it won't stay perfectly still since it isn't bolted in place. Overall this mount has worked very well. My wife is going on a business trip next week and will be borrowing the GPS - I don't recommend she take the mount though - since the thing must way at least a couple pounds - too bulky and heavy to put in a suit case in my opinion B000196ENC:dash_mount_--_very_helpful:j._redfearn B000196ENC Magellan RoadMate GPS Dash Mount: Electronics electronics 5 of 5 5.0 Dash Mount -- very helpful August 16, 2006 J. Redfearn Longview, TX I got the dash mount because a friend recommended it. I thought the windshield mount worked fine except it was difficult to remove from the windshield. I felt like I should remove it each time I parked somewhere. Also, there was a fair amount of vibration since it usually was dangling. The dash mount is very heavy and flexible enough to "mold" to fit the surface of the dash. However, it kept slipping off the surface of my Toyota Avalon until I found a little sticky pad to put it on. That solved that problem. Anyway, it is very easy to move it to the floorboard and cover it up when I stop, thus effectively hiding it from the temtation of a robber B00030GSJY:this_is_an_awesome_joystick!:bill_homan_"bilnv" B00030GSJY Saitek X52 Flight Control System: Electronics electronics 5 of 9 5.0 This is an awesome joystick! August 19, 2006 bill homan "bilnv" Spring Creek, NV USA This is my first HOTAS, but I did a good bit of research. It is very easy to set up, and the SST Programming is very helpful setting the shift key. The joystick is easy to move, which is nice in a close dogfight. I am very glad that I bought this HOTAS, because I have had NO problems with it. I highly recommend this system to anyone B00003CWDH:pricey...:maxtone_witherball B00003CWDH Monster Cable MP AV 800 PowerCenter AV 800 with Surge Protection: Electronics electronics 1 of 1 4.0 Pricey... July 3, 2006 Maxtone Witherball ...for a surge protector. But as far as I can tell, it's doing its job. Plus it looks kind of neat B00005V3PY:very_nice_set...almost_too_nice...:gbw_-_dtown B00005V3PY First Act Discovery FP601 Marching Band Kit: Electronics electronics 20 of 22 4.0 Very Nice Set...Almost too Nice... April 13, 2004 GBW - DTown Pennsylvania We bought this drum set for our 2 year old who is obsessed with the concept of drumming & marching. This is a first class set and as noted is almost too nice. This is a huge step above the tupperware and pan lids our little guy used to use for his personal parades. The drum is a bit heavy,large, cumbersonme for a two year old and of course is LOUD. The cymbals are also loud but do have a professional sound quality. Do recommend this purchase. It does come a bit steep at $30 but is a very nice looking and performing set. If you little one gets hooked on drumming via the pots and pans, spoil him/her with this first-class set that they should be able to use well into their childhood B0002ZH71S:it_really_works:m._sweeney_"wybnormal" B0002ZH71S Netgear WGXB102 54Mbps Wall-Plugged Wireless Range Extender Kit: Electronics electronics 5.0 It really works November 5, 2006 M. Sweeney "Wybnormal" Orange, California USA I found this as the perfect solution to fill in some dead airt space in my house downstairs given the internet connection is upstairs and so far, other wireless solutions have been marginal. I really wondered if the Ethernet over powerlines would really work or if the 802.11G would really work. So I get my new Extender kit, unbox it and plug everything in without bothering to read the directions. Lets be real, this stuff SHOULD be plug and play and IT WAS. It came right up and worked and has worked for the past three months flawlessly. I have decent range downstairs, it works with the Macs and the PCs and doesnt seem to care a whit. I can highly recommend using this product as the primary connection or as I did, extending an existing network without having to pull cable or put in multiple 802.11 bridges B0000AZ67Y:no_problems._very_satisfied.:christopher_altermatt B0000AZ67Y SanDisk SDCZ2-128-A10 128 MB Cruzer Mini USB 2.0 Flash Drive: Electronics electronics 2 of 2 5.0 No problems. Very Satisfied. November 2, 2004 Christopher Altermatt Baltimore, MD, USA I have had no problems with my Mini Cruzer USB flash drive. It has been recognized without exception by multiple computers and has performed flawlessly B0000632H5:sony_never_dissappoints_!:kartiq_subramanian B0000632H5 Sony Mini-DV Cassettes (DVC) Premium series 60 Minute (3-Pack): Electronics electronics 5.0 Sony never dissappoints ! November 5, 2006 Kartiq Subramanian New Jersey USA I actually bought this for a friend of my mine. He says 'Sony Never Disappoints' B000A1IUFQ:so_cool_it's_absurd:alexander_clemens B000A1IUFQ Palm 3207NA GPS Adapter Kit for Select Palm PDAs: Electronics electronics 23 of 27 5.0 So cool it's absurd November 16, 2005 Alexander Clemens San Francisco, CA United States If you've got a Treo 650, You Don't Need A GPS Device. Simple as that. The smaller-than-a-small-filet-mignon gps device talks via bluetooth to your 650, which attaches to your windshield via a well-engineered holster. The charger charges 'em both, or not, as you see fit. The instructions are clear and to the point. The installation instructions are slightly out of date - you don't need a card reader to make it happen, after all - and the user experience is, in my case, outstanding. If you've got a 650 and you ever drive somewhere unfamiliar, BUY IT B00005T3N3:a_little_expensive_but_worth_the_money:a._c._ege_"ace_doh" B00005T3N3 Bose UFS-20 Universal Floor Stands (pair) - Black: Electronics electronics 5.0 A little expensive but worth the money November 14, 2006 A. C. Ege "ace doh" Stockton, CA USA When I purchased this product a couple weeks ago I wanted to make sure this purchase was worthwhile. I studied many other speaker stands and it just didn't seem I would have been getting the same quality. I received this pair a few days ago and originally thought they may be a little complicated to put together. They only took about twenty minutes to assemble and put my cube speakers on. The stands look great and go well with the cube speakers. I am happy I made this investment and will enjoy these for years to come. B0001NA3S0:good_bacup_drive:howard_weiss_"hrap" B0001NA3S0 Western Digital 250 GB USB 2.0/Firewire External Hard Drive with Dual Option Backup and USB ( WDXB2500JBRNN ): Electronics electronics 1 of 1 4.0 good bacup drive November 20, 2006 Howard Weiss "hrap" Wasington D.C. area I have this drive and been sucessfully using it with Backup on my Mac. I would recomend it for off line storag B0001NA3S0:excellent_value_for_the_price:a._hicks B0001NA3S0 Western Digital 250 GB USB 2.0/Firewire External Hard Drive with Dual Option Backup and USB ( WDXB2500JBRNN ): Electronics electronics 5.0 Excellent value for the price November 10, 2006 A. Hicks just enough space to save video, photo, music etc... all your files in one place and also is compatible with mac... i love it. B00001OPJW:great_cassette_player:jonm4 B00001OPJW Teac W790R Dual Auto-Reverse Cassette Deck with Pitch Control: Electronics electronics 1 of 1 5.0 Great cassette player November 2, 2006 JonM4 Michigan Look around in your local electronics stores and you'll find either HUGELY expensive players or single tape units. This player allows tape-to-tape duplication as well as the ability to put two of your old collection in and listen uninterrupted. Sure, it's not a 100-disk CD carousel...but how else are you going to listen to some of your best stuff (that you probably taped yourself?). This, or the other TEAC dual-cassette units, should find a place on your shelf B000E9BXDU:a_beautiful,_versatile_monitor!:mark_hernberg B000E9BXDU Acer AL1916AB 19" LCD Monitor: Electronics electronics 10 of 10 5.0 A Beautiful, Versatile Monitor! August 5, 2006 Mark Hernberg Iowa City, Iowa United States After having used CRTs roughly the size of small cars for my entire life, I finally jumped on the LCD-flatscreen bandwagon. This Acer 19" LCD makes me happy I did! Mostly using my computer for gaming and movies the color, brightness, and size of the screen really matters to me. This monitor really nails all three of those areas. It provides vivid, crisp colors; it doesn't wash out the picture with super-brightness (what my old monitor did), nor is its display too dark to catch the action; and the 19" screen seems to have the perfect balance of immense screen size yet incredibly low desk size B0002378EG:nice_component_cable:perry_sweeten B0002378EG Monster Cable ULT V1000 CV-16 THX Ultra 1000 Component Video Cable: Electronics electronics 0 of 2 5.0 Nice Component Cable March 10, 2006 Perry Sweeten Rochester, MN United States Monster has went over the top on this THX component video cable. Instantly noticed a superior picture B00009NDCX:epson_paper_-_it_doesn't_get_any_better:ward_f._rosen_jr. B00009NDCX Epson S041727 Premium Gloss Photo Paper (4x6, 100 Sheets): Electronics electronics 5.0 Epson Paper - it doesn't get any better November 11, 2006 Ward F. Rosen Jr. Houston, TX e'nuf said - Epson always leads the way with printers and papers. You can't go wrong!!! Order was filled exactly as requested, and arrived in better than expected time. The packaging was excellent. I'll be back for more soon B00009NDCX:perfect_in_price_and_quality:abdoreza_dashtpeyma_"reza_d." B00009NDCX Epson S041727 Premium Gloss Photo Paper (4x6, 100 Sheets): Electronics electronics 5.0 Perfect in price and quality November 10, 2006 Abdoreza Dashtpeyma "Reza D." Los Angeles, CA I have bought 2 packages of them, 100 sheet each. Quite satisfied. The printing are really excellent and professional. B00009NDCX:excellent_paper,_excellent_price:evan_d._hoffman_"whatwhat" B00009NDCX Epson S041727 Premium Gloss Photo Paper (4x6, 100 Sheets): Electronics electronics 3 of 3 5.0 Excellent paper, excellent price April 19, 2006 Evan D. Hoffman "whatwhat" Bellerose, NY USA I bought this paper after my mom gave me a box of Epson 8.5x11 paper she didn't need. I was really impressed by the quality of the pictures rendered on that paper by my printer. When the paper ran out I looked for an economical replacement and found the price of most photo papers to be prohibitive - on the order of 40 cents per page. Since you can only get 2 4x6 pics from a letter-sized sheet of paper, that comes to about 20 cents per print, not counting the cost of ink. Finally I stumbled upon this paper - Epson S041727 - and the price per print was around 12 cents, which rivals the cheapest Internet photo printing services I've found. If you print a lot of 4x6 pictures, this is a great value for a great product B00009NDCX:epson_photo_paper:david_s._cuda_jr._"d_cuda" B00009NDCX Epson S041727 Premium Gloss Photo Paper (4x6, 100 Sheets): Electronics electronics 1 of 1 5.0 Epson Photo Paper March 10, 2006 David S. Cuda Jr. "D Cuda" Indiana Hands down Epson Paper is the best photo paper on the market. At this price its a no brainer.A++++++++++ B00004VX14:works_great,_but_its_another_wire!:john_ellsworth B00004VX14 Garmin Cigarette Lighter Adapter for Most eTrex Models and Geko: Electronics electronics 9 of 9 5.0 Works great, but its another wire! January 4, 2003 John Ellsworth Northport, NY This adapter is functional, is easy to use, enables continued use of backlight, and saves the batteries for walking with the eMap after arriving in a strange town. When I want to connect other media while driving with my family, I use a 12v 3-Outlet Car Power Adapter. Despite another wire, it's a worthwhile accessory B0006LA5S0:good_for_backing_up_digital_pics:jk B0006LA5S0 PNY 2 GB Attache USB Hard Drive: Electronics electronics 5.0 Good for backing up digital pics October 28, 2006 JK NYC I have no complaints about this flash drive. It does what it should, is easy to use, has enough storage to backup all my digital pics from my hard drive (so far!), and is not expensive. B00000JDF6:go_cables!:robert_pace_"hugs_and_curses!" B00000JDF6 Belkin A3L791-S 50-Foot RJ45 CAT 5e Snagless Molded Patch Cable (Blue): Electronics electronics 9 of 9 5.0 Go cables! September 6, 2005 Robert Pace "Hugs and curses!" Pompton Lakes, NJ Yup... They connect my cable modem to my router, and my router to my computers. They transmit data back and forth. So far they have failed to burst into flames or snap off and poke me in the eye. So go patch cables (yay). B000BBE9DM:awesome_when_you_figure_out_how_to_use_it:meggerz B000BBE9DM Wacom Graphire4 6x8 USB Tablet ( CTE640S ) - Silver: Electronics electronics 4.0 Awesome when you figure out how to use it November 5, 2006 Meggerz www.meggerz.com I love it but its been a battle trying to get used to the sensetivity and pressure of holding the pen. I'm glad I bought it but it is something I cannot use all the time B000BBE9DM:one_of_the_best_things_i_have_purchased:daniel_geer B000BBE9DM Wacom Graphire4 6x8 USB Tablet ( CTE640S ) - Silver: Electronics electronics 5.0 One of the best things I have purchased October 23, 2006 Daniel Geer Lansing, Michigan United States This has helped me significantly in drawing in the computer, for programs such as Adobe Illustrator, Adobe Photoshop and Macromedia Flash. Drawing with a mouse is like drawing with a brick - so buy this piece of equipment if you need to draw in the computer! It also works well as an overall mouse for your computer. It even comes with a mouse if you prefer to use that instead of the pen. Plugs right into your USB drive and works almost instantly B00008L3J1:well_designed:horn_and_sax_guy B00008L3J1 Belkin Retractable USB Light (F8E448): Electronics electronics 7 of 7 4.0 Well Designed February 22, 2005 Horn and Sax Guy Denver, CO United States I bought this to illuminate the keyboard on my 12" Apple Powerbook when I work in the dark. It works well, and shines impressively bright and wide. I even use it to read by simply sitting it on its back on my lap as I read in bed and pointing the lamp at my book. It's too bad the lamp's arm isn't telescopic or it'd make for a perfectly good clip-on booklight right out of the box. This device is well built, folds into a form that protects it from damage, even when thrown in a laptop case full of stuff that might crush something built less solidly. And it has a nice retracting USB cable. The retraction device for the cable, like most I've seen on devices like this, can be a bit finnicky but with the right pulling technique works correctly about 90% of the time. Update, May, 2005. The light died. No idea why. So, maybe it's not as good as I thought. : B000062STU:you'll_need_a_dvd_burner...:james_rose B000062STU Adaptec 1890600 Fireconnect 4300 Kit AFW-4300: Electronics electronics 2 of 5 5.0 You'll need a DVD burner... September 1, 2004 James Rose Seattle, WA ...to really take advandage of this. Installation was super easy, although I ran into the TI thing like another reviewer. Oh well. Not much more I can say about this product; it works and that's all that really matters B000CSQRYS:satisfied_user:hiker_dude B000CSQRYS Garmin GPSMap 76CSx Handheld Marine GPS Navigator: Electronics electronics 9 of 10 5.0 Satisfied User September 2, 2006 Hiker Dude Seattle, WA I found this device to be relatively easy and comfortable to use (one-handed, no less), and accurate to within 15' +/- under tree cover of greater than 90% mature alder and fir - once locked onto satellites under clearer overhead conditions in Seattle WA and using an external Gilsson antenna mounted atop a hat. Satellite aquisition under the trees did not happen the few times I tried. The display is excellent under sunny conditions. Downloading waypoint data into a text file was simple. I haven't used it yet under driving conditions, so I can't speak to using related features. Were it damaged or stolen, I'd buy another one without hesitation B000A4AWK4:black_ink_anyone?:michael_kerner_"michael_kerner" B000A4AWK4 HP 21 Black US Inkjet Print Cartridge EAS Sensormatic: Electronics electronics 3 of 8 4.0 Black Ink Anyone? August 9, 2006 Michael Kerner "Michael Kerner" Brooklyn, New York U.S.A. There are so many times where the actual ink, can be the difference between a good copy, and a not-so-good copy on paper. With HP black ink cartridge #21, it is very convient, and easy to setup into your HP deskjet 3930 series printer. This cartridge is very inexpensive, and affordable for HP printers. I think of it as a must for your HP printers. While there are cartridges that are difficult to open, and install into your printers, this one installs in a snap. I really recommend this for my new HP printer, and so will you if you own a HP printer for this ink as well. Price: B Convience: B+ Overall: B 1/2+ B00006JPFP:nice_power_adapter:carlos_lerzundy B00006JPFP Coby CA-979 Universal AC Power Adapter: Electronics electronics 5.0 Nice Power Adapter November 4, 2006 Carlos Lerzundy NC, USA It works with all my devices, it has several outputs for your different devices, no complain with it... B0009F3SGE:i_love_my_nano:cher_holt-fortin_"grinchymom" B0009F3SGE Creative Zen Nano Plus 1 GB MP3 Player (Blue): Electronics electronics 5.0 I love my nano November 10, 2006 Cher Holt-Fortin "grinchymom" Central New York So far it has been terrific. Radio and downloads are easy to sort out and use. Downloading was hard, but I finally got it. The sound quality is the best thing, however. It is better than my big stereo. Napster doesn't do this mp3 however B000EPNB52:my_first_mp3_player~~like_it_very_much!:c._thatcher_"heartforjc" B000EPNB52 Apple 4 GB iPod Nano Pink (2nd Generation): Electronics electronics 12 of 15 5.0 My First MP3 Player~~Like it very much! November 17, 2006 C. Thatcher "heartforjc" Beautiful Ohio Let's just say I am 39 and holding and have wanted an MP3 for years. My birthday was last week and I bought myslef the pink 4GB Nano. It is easy to use, but I have to agree it takes some time on itunes to import CD's, the ipod updates fast but the CD import is slow. The sound quality is good. I like that it is small and lightweight. The screen is bright and easy to read...even with not so young eyes. I looked at other brands but am glad I went with the leader. I didn't need or want to watch movies on a tiny screen...just tunes. I'm sure 1000 songs will hold me. I looked all over at prices and Amazon wins! The free shipping is a great bonus also. The case may look delicate but it feels very sturdy to me, I have had it in my pocket and it is just fine. Would highly recommend this MP3. It is cute to boot! This not so young person thinks it is WAY COOL B000EPNB52:awesome!:c._e._pugh B000EPNB52 Apple 4 GB iPod Nano Pink (2nd Generation): Electronics electronics 9 of 10 5.0 Awesome! November 3, 2006 C. E. Pugh I had been storing my music on a 2GB card in my palm pilot. I was having a lot of trouble transferring the music, with many errors, not to mention how long it took to transfer. I finally decided to get an MP3 player. A friend kept telling me about the Sandisk Sanso. There were some great features, but the bad far, far outweighed the good. Too many of the same problems over and over, and many people returning them. I got my Apple iPod last night and have hardly put it down! I did a lot of research first and was hard pressesd to find negative feedback about this item. This thing is great! I was up till 3AM listening to my music. The sound quality is so much better than I had expected! I really like the case I got (Tuffwrap Accent by XtremeMac- Walmart and Radio Shack) because it is really tough rubber and all of the holes are in the right place for the new nano. The only thing is that the unit does not slide up into it completely because of the square corners of the nano. The case has more rounded corners in the top, so the nano does not line up just right in the case. It is good enough and you can still use the controls. It is only about a 1/4 of an inch at most. I am just picky about it lining up correctly so this is a bit annoying. But the case is still great as far as protection. I also bought the Belkin TuneBase FM transmitter for the car. It is similar to the Monster version. I did not like the Belkin version at all. I ended up going and getting the Monster FM transmitter at Radio Shack. It works great! I like the fact that my Ipod lays in the console rather than sitting in a dock (some of you may prefer the dock). I like that I can pick up the Ipod and use it sort of like a remote to the radio because I can operate it easily without looking down at the dock. I can even hold it while driving if I want to flip through the songs while driving rather than having to reach over to the dock. The sound of this transmitter is great. Some areas you might get a bit of static or station bleed through while driving, but this is minimal and is usually not a problem. I find this happened a lot less with Monster than with the Belkin. The Belkin had a nasty hiss over all of the songs. People are talking about this unit not having a radio on it, but I find that I have so many favorite songs on it that I do not need a radio. When I do have a radio, all I do is channel surf for songs I like anyway. This way, I already have all the songs I like at my fingertips! I think these headphones really make this nano great! I was so surprised when I first heard this little unit play! For something so tiny, it rocks! I am really glad I followed my gut and went with this unit instead of dealing with frustration first by getting the Sanso. This new nano is a must have! B00000J0O2:it_does_the_job: B00000J0O2 HP Microfine Toner Cartridge for LaserJet 5L/6L/3100/3150 (C3906A, Black): Electronics electronics 3 of 3 5.0 It does the job June 20, 2000 Well the most important thing about buying ink and toner for your printer is price, and Amazon.com has beaten every on-line price I have seen. As for the toner itself, Hewlett Packard toner is top. I buy this product for two reasons, 1. It's what fits in my printer, and 2. I know when I buy the C3906A, I am getting what I payed for, a quality cartrige that lasts. One last note, twords the end of the cartrige life, a small line appears in the content of my page letting me know its allmost time for a new one. simply shake the cartrige, reorder, and by the time the new one arrives, the old one is finished B000A4AW1I:wish_i'd_bought_this_sooner!:r._kent_bailey B000A4AW1I Cruzer Titanium 2GB USB Flash Drive (SDCZ3-2048-A10, Retail Package): Electronics electronics 6 of 7 5.0 Wish I'd bought this sooner! April 17, 2006 R. Kent Bailey Tampa, FL United States I'm not much of a techie. But, I do have lots of documents and pictures that I can't bear to lose should my computer decide to konk out one day. I used to back up my most important files on CD: an overly complex and tedious process involving multiple CDs and lots of time. But, with this 2GB flash drive backing up my important documents is just a matter of plugging the device in and selecting which files and folders to synchronize. The files are copied over to the device quickly, and easily. The 2 Gig storage capacity allows me to backup all of my most important photos and documents on one handy removeable drive. ScanDisk even includes a "Synch" software that simplifies the process of identifying and copying your important data. (The software also helps you copy over your Outlook messages, folders, appointments, tasks, and other data that used to be difficult for me to find on my hard drive.) Also, I can imagine that the use of the Synch software with this little drive would made it very easy to keep the data on your work machine syched up with the data on your home machine. Physically, the unit is small, sleek with a case that feels substantial. The retractable connector functions smoothly and allows the case to protect the connector when not in use. This thing is great. I only wish I'd started using it sooner. B00074Z9OQ:happy_customer:susan_l._o'dea_"catniip58" B00074Z9OQ Apple M9758G/A iPod Shuffle Sport Case: Electronics electronics 2 of 2 5.0 Happy Customer February 23, 2006 Susan L. O'Dea "Catniip58" IN I ordered the apple ipod shuffle sport case because I wanted something to protect my ipod from the elements and just general bumping and scraping. It works great, and you can use your ipod without taking it out of the case. I haven't taken my ipod out of the case except to charge it, or to change my playlist. It's a "must have item" for anyone with an ipod shuffle B0002A59Z4:nicely_done_package/_great_value:p._j._snyder_"av8or" B0002A59Z4 CH Products Throttle Quadrant USB (300-133): Electronics electronics 6 of 6 5.0 Nicely Done package/ great value April 30, 2005 P. J. Snyder "AV8OR" Milford,CT After reading the Dec. '04 review in Computer Pilot I ordered it. Fine tuning is a bit involved but repetition makes the curve easier. Configuring from one a/c type throttle to another is easy with the downloadable manager from CH prod. Compared to the GoFlight modular system this is great value. Unless $$ is no object and you're not interested in building a home cockpit, the CH line of av-sim controls is well suited to the aspiring and advaced flt. simmer B000058E2B:use_it,_love_it:tri_nguyen_"ucdavis" B000058E2B Compaq iPAQ 3635 Pocket PC Bundle (with Compact Flash Jacket): Electronics electronics 1 of 1 5.0 USE IT, LOVE IT November 7, 2004 Tri Nguyen "UCDAVIS" Davis, California I have had my Pocket PC for quite some time now, and I love the convenience that it offers. Plus: - Great color screen - Fast and easy to use. - Cradle adaptor is nice so you can able to sync files from pc to pocket pc. - Includes Word, Notes, Calender, Calculator, Recorder, Window Media Player, etc... (HELPFUL) - Expandable Con - Although it is expandable, you can't use your memory card to do anything but save materials. I am unable to listen to 256 mb songs... but i have to copy and paste song from the card to the pc every time I get sick of listening to the same song. - Low battery life! Other than that... it is great... user-friendly... and helpful if you are busy student or a college student... I use it to: 1) types notes in class (why carry a laptop when you can get this) 2) MP3 player... besides the issue above, music quality is great... easy to transfer from pc to pocket pc. 3) calender and agenda... (keep important dates in check and be on tops of things B000058E2B:why_i_still_like_this_pda,_continued: B000058E2B Compaq iPAQ 3635 Pocket PC Bundle (with Compact Flash Jacket): Electronics electronics 4.0 Why I still like this PDA, continued April 4, 2004 I found out the way to copy photos from my CompactFlash card onto the iPAQ. It's not hard but more complex than necessary. I also found out how to send the iPAQ in to have its screen replaced. A hassle. Its screen and/or stylus should work together so they don't produce scratches in the first place B000ELTJ8E:motorola_v3_usb_cable_with_4.0_phonetools_cd:b._kelly_"system_user" B000ELTJ8E USB Data Cable for Motorola V3 Razr V180 V188 V220 V190 V195 includes Cable PLUS Motorola Phone Tools 4.0 Software: Electronics electronics 4 of 4 5.0 Motorola V3 USB Cable with 4.0 Phonetools Cd May 6, 2006 B. Kelly "System User" De Soto, MO Excellent service, five days is all I had to wait and saved a lot of money. Couldn't be happier. Im a new Razr owner so everything is new to me. CD installed without any problems (Windows XP). I had a cable so I now have a spair. I just wanted the Phonetools CD. I would gladly do business again-Thanks B0000512E6:nice_80mm_fan!:codey_f. B0000512E6 Antec OEM Small Dc Fan Dc Brushless Case Cooling Fan for Mini-Tower Desktop: Electronics electronics 6 of 7 4.0 Nice 80mm fan! February 8, 2001 Codey F. Bothell, WA USA I also ordered the Antec SX-1030 (which has yet to be shipped! arrgghh!!). According to Antec, the 1030 includes 2 fans, but has space for 2 more, which is where this one comes in! For those of you wondering what size "small" is, it's an 80mm fan. Good airflow (don't know actual CFM) and pretty quiet B0000C1ZNV:terrific_card_in_my_old_a20m:west_coast_paddler B0000C1ZNV Netgear WG511T Super G 108 Mbps Wireless PC Card: Electronics electronics 5.0 Terrific card in my old A20m November 17, 2006 West Coast Paddler Pacific NW I'm a D-Link refugee and this card has been just great. My home connection has been very good, I'm in a basement and have no idea where the router is! Swapping wireless networks is a breeze as I travel around - it can be easily configured to automatically find one wherever you are. Very reliable, quality construction, easy to install and no problems with W2K. This is my 2nd Netgear card; also have the FA511 wired adapter about which I can say the same things (except the wireless bits). Definitely recommended and worth the extra cost if there is any B0006TIA02:no_more_dropped_connections!!!:scott_gibbons B0006TIA02 D-Link DGL-4300 Wireless Gaming Router, 4-Port Gigabit Switch, 802.11g, 108Mbps, 5dBi: Electronics electronics 2 of 3 5.0 No more dropped connections!!! July 24, 2006 Scott Gibbons Chicago I had originally bought a Linksys, without doing any research beforehand... thinking all routers were more or less equal... oops! Hardware was poor, the interface was wonky, customer service was a joke. I was re-booting it every few minutes under moderate usage, because it keep dropping my DSL connection or completely locking up. I just replaced it with a DGL-4300 based on all the positive reviews, and have been very happy so far. I don't need or use any of the advanced features for gaming; but already I've been very impressed with the DGL-4300 since it hasn't dropped any connections since I bought it last week. You get what you pay for B000F5K3Y8:not_bad_for_the_price.:l._lee_"m3beanie" B000F5K3Y8 Mustang MV-TILT3 Tilt Wall Mount Adjustable for TV's up to 60-inches: Electronics electronics 11 of 11 4.0 Not bad for the price. September 8, 2006 L. Lee "M3Beanie" Old Bridge, NJ I don't get why other mounts cost twice as much. I bought this to hang my 42" Panasonic and it is great. Can someone tell me why the Omnimount costs so much more? I don't see any "functionality" differences. And with the Mustang Tilt mount, I have been tilting it at least 10 times for either adjustments or disconnecting/reconnecting cables...It is so simple B000FDVJTI:great_phone_:keri_e._davies B000FDVJTI Uniden TRU9466 2-Line Expandable Cordless System with Dual Keypad and Call Waiting/Caller ID: Electronics electronics 2 of 3 5.0 Great Phone August 27, 2006 Keri E. Davies Lafayette, Louisiana United States I got this phone about 1 month ago and I like all the features of the phone,Volume control ,Caller ID,Large display window and you can add up to 10 more hand set B0002IVPC2:good_cell_phone_accessory:dwight_eddy B0002IVPC2 Ultra Cord 9-Piece USB Cell Phone Charger Kit ULT31438 - Cellular phone charging kit: Electronics electronics 2 of 2 4.0 Good Cell Phone Accessory September 15, 2005 Dwight Eddy Bedford, NH Handy traveler accessory. Retractable USB cord very nice. Had a small problem with Moto adapter, one of the locking pins would not release. Was able to get release wire reseated under release button and all working fine now B000B9RXPA:love_it:shelley_cadamy_"shelley" B000B9RXPA Apple MA186G/A Armband Red for iPod Nano 1st Generation: Electronics electronics 1 of 1 4.0 Love it July 20, 2006 Shelley Cadamy "Shelley" Oklahoma City, OK United States I found this on clearance at another retailer (I guess not everyone likes pink), and it's fabulous. I thought it might be just for skinny-armed people, but not so! I've got plenty of room, it fits great, and it doesn't move. Still looking for a solution to keep the earbud cord out of the way, though. Makes mowing the lawn WAY more fun B00067OEPE:perfect_for_dj's:dj_mori B00067OEPE Sennheiser EH-250 Digital DJ Headphones: Electronics electronics 1 of 1 5.0 Perfect for DJ'S May 21, 2006 Dj Mori Bogota, Colombia I have been a Dj for a almost 5 years, and this are the best headphones I've ever had. The H250 headphones are light, confortable, and great acustic properties. It is true that the bass is a little loud, but thats exactly what you need if you're playing in loud and crowded clubs B000AP1RE8:amazing_for_the_value:julian9596 B000AP1RE8 Studio Condenser Mic with USB Output - SAM C01U: Electronics electronics 3 of 4 5.0 amazing for the value September 13, 2006 julian9596 Maryland,USA When i first came across this particular microphone i had my doubts. Considering the price of it i just couldn't see it holding up for what i wanted to do. to my surprise this mic exceeded my expectations. For recording vocals this mic is amazing. a real professional sound for a extremely low price. i definitely recommend this mic to anyone out there looking for an in expensive way to make professional sounding material B000AP1RE8:not_bad_at_all!:tracy_latham_"wretchasketch" B000AP1RE8 Studio Condenser Mic with USB Output - SAM C01U: Electronics electronics 14 of 14 4.0 Not bad at all! April 11, 2006 Tracy Latham "wretchasketch" Nashville, TN USA I have some decent mics in my cabinet, as well as a nice preamp, A/D converter and fire wire interface for my home multitracking setup. I wasn't expecting as good or better quality than I can already get, but I hoped the Samson C01B USB Studio Condenser would at least give me a decent sound. The idea was to have freedom and portablility that my studio set up prohibits. I was not disappointed. Installation was no more complicated that plugging the cable into a USB port on my laptop running XP and the other end into the mic. It is far from the best mic I have, but it is certainly not the worst. I have read reviews that say the recording quality is too thin, but I found that not to be the case. The noise floor when recording with the Samson is a little high, and it is lacking in headroom compared to any traditional mic through my Millenia preamp. I have to record at slightly lower levels than I am used to, but for $79, I am not complaining. There is no significant latency recording 16 bits at 44100hz in Fasoft N-Track Studio. The ability to plug this thing in and record at a whim is quite liberating. Way to go, Samson B000EIDLWC:works_ok:keith_rust B000EIDLWC American Red Cross FR350 Emergency Radio: Electronics electronics 5 of 7 4.0 Works OK July 14, 2006 Keith Rust Arizona Couldn't get any SW stations, but AM and FM worked great and the hand crank charged up the cell phone, after a lot of cranking B00000JDF5:does_its_job-5_stars:nick B00000JDF5 Belkin A3L791-S 3-Foot RJ45 CAT 5e Snagless Molded Patch Cable (Blue): Electronics electronics 5 of 8 5.0 Does its job-5 Stars April 30, 2002 Nick Santee, CA United States No problems so far; does its job.(if you are setting up a wireless network, get windows XP. 1 click and you're set up. B000BSLTNI:scare_those_critters_away:i_own_4_cats B000BSLTNI Sensor Plug: Electronics electronics 2 of 2 5.0 scare those critters away November 10, 2006 I own 4 cats Lindenhurst N.Y. I bought this to scare away the opossums that come into my back porch at night. I used a 3 prong adapter with this to plug in a lamp and a radio. When they pass it, suddenly music and a light goes on and they scoot away fast. It is great to use if you want a lamp turned on when you walk in front of it, or anything else you want to use it for B000ARUXAU:good_product,_good_service:rc&dc B000ARUXAU Kingston 512 MB Mini Secure Digital (miniSD) Memory Card ( SDM/512 ): Electronics electronics 5.0 Good product, good service February 24, 2006 RC&DC Kansas City, MO Product-wise, the card has worked fine, but then memory cards generally either work or they don't. Product was shipped in a timely manner, and the price was reasonable B000ACGE3U:multiplier_of_power_source:r._foyder_"loyal_customer" B000ACGE3U Power Sentry 5-Outlet PowerSquid Power Multiplier: Electronics electronics 1 of 1 4.0 Multiplier of power source November 4, 2006 R. Foyder "loyal customer" Quakertown,PA United States Originally purchased to supplement & provide a tangle free connection to power source.After reading product manual,PowerSquid should be connected to dedicated power source 110 volt outlet.It is not recommended that PowerSquid be used with temporary power strip application...with or without surge protection. Use of Power Sentry 5-outlet PowerSquid should be used in accordance to sound electrical application. Do not overload or connect grounding cheaters in non-grounded 110 volt systems.Use with stand alone generators should be closely monitored and PowerSquid not be used beyond generator's capacity B0000A2QBX:very_good_case!:c._mota_"homesick" B0000A2QBX Samsonite L35 Notebook Case (198111261): Electronics electronics 5.0 very good case! November 9, 2006 C. Mota "homesick" chicago, il United States very good case for the price. Actually looks more expensive. Can't go wrong B0000A2QBX:exactly_what_i_expected:julie_b._lewandowski B0000A2QBX Samsonite L35 Notebook Case (198111261): Electronics electronics 5.0 Exactly What I Expected November 5, 2006 Julie B. Lewandowski Georgia, USA I wanted a case that was small, slim, and just carried the laptop. Perfect! I have a briefcase for files. I didn't need anything bulky. This case was exactly what I was looking for, for the right price. I have a new Gateway Tablet P.C. and with the larger battery and battery placement, this is a snug fit, but at least I know the computer isn't loose inside. I really like this case B0000A2QBX:excelente_maletin_para_notebook_con_14"_de_pantalla:eduardo_gibaja_"lalogi" B0000A2QBX Samsonite L35 Notebook Case (198111261): Electronics electronics 4.0 Excelente maletin para Notebook con 14" de pantalla November 4, 2006 Eduardo Gibaja "Lalogi" Lima, Peru Cuando compr� una Toshiba Satellite M105 con pantalla de 14", eleg� este maletin porque lei que sus dimensiones se ajustaban al equipo. El interior est� forrado y cuenta con las divisiones suficientes para llevar el cargador y los cables de poder de la notebook. Asimismo puedo incluir documentos, mouse y otros accesorios. El asa es c�moda y la correa incluida es ancha y ajustable al largo que uno desee. Estoy satisfecho con esta compra B0002VMDIY:best_of_the_bunch,_and_pretty_good_anyway:mcq_"mcq" B0002VMDIY Panasonic KX-TG6500B 5.8 GHz DSS Expandable 2-Line Cordless Phone (Black): Electronics electronics 23 of 23 4.0 Best of the bunch, and pretty good anyway October 13, 2005 McQ "McQ" Orlando, FL The 6500B was the last one I tried of three. I've had cordless Panasonic phones break too often in the past so was reluctant to buy one again. But the other choices had major drawbacks. I really needed a two-line phone that wasn't 2.4Ghz. The first I tried was the Uniden TRU8866. It had a bad echo on the extra handset and other people complained about that too. This phone uses phone company voice mail (no built-in ans mach) - which is fine - but I had the VM system go bonkers so lost all trust in it. For over a week messages accumulated but we got no stutter-tone so didn't know there were any new messages - arrgghh. Not the phones fault I know but it required VM for messaging so nope. Next I tried the new Motorola MD7081. I really wanted to like this phone. It's a 2-line 5.8Ghz ans machine like the Panasonic 6500B. I liked it's simplicity and easy switching between line 1 and 2. Had battery backup for use during power outages and the best voice quality of the three. But, it's answering system has no message counter. That alone is no big deal but it didn't have any indicator to say whether you had any saved messages. When a new message arrived it blinked and such - all good. But, if I got home, say, and listened to a message for my wife, the blinking stopped and no indication of "1 saved message" or anything. So, I would have to write a note to her to check the messages. We're so used to relying on seeing a message counter and just listening to them if it's not zero that we thought this would become a nuisance. I also would have liked an auto-line-selection so it would automatically answer the ringing line or select a non-busy outgoing line. But, that would have messed up their simpler style button function - hmmm. The Panasonic, I am surprised to say, ended up being my favorite. Hopefully it will be reliable. I was always bothered by Panasonic's phones losing the date/time with any little power outage. Happily, this phone sets its date/time from caller-id info even though the manual implies it wouldn't work quite that way. With the right settings and phone company options (busy-forward), it elegantly supports two lines as if they are one. I really like not thinking about which line is what - just pick up and talk. The 6500B has good voice quality and reasonable range. It's much lighter than earlier caller-id handsets which I like. I also like their shape of handset the best. My gripes are the limit of 4 handsets - I would like 6 or 7. Also, can't name the handsets so with intercom you have to remember each number B0006BKH3S:monster_ipod_fm_transmitter:k._uyeda_"fish_hunter" B0006BKH3S Monster A-IP-FM-CH-PS Wireless FM Transmitter: Electronics electronics 5.0 Monster iPod FM Transmitter October 29, 2006 K. Uyeda "fish hunter" Wahiawa, HI USA I love my new Monster FM Transmitter! It's very easy to use and the reception is great B0000DK662:no_like_48gx_but_good_enough:leonardo_gurlino_"gurlinol" B0000DK662 Hewlett Packard 49G+ Graphing Calculator: Electronics electronics 4.0 No like 48GX but good enough November 3, 2006 Leonardo Gurlino "gurlinol" Maturin, Venezuela Besides all opion regarding this new calculator, I would like to say, it is very nice, good design, options, features, a huge screen and modern color. So far, I haven't navigate deep inside it, it is not similar as 48GX, so you've got to expend some time to know how to use it. I bought it since there is not a better calculator than this (48GX is UNIQUE but obsolete B0002YK9SW:surround_sound:robin_n._decato B0002YK9SW M-Audio Revolution 5.1 High-Definition Surround Sound Card: Electronics electronics 1 of 1 5.0 Surround Sound February 22, 2006 Robin N. Decato Brooklyn, NY Easy to install, gret price and now I have surround sound on my PC. woowho B00001P4XA:big_sound_for_small_ears!!:gym_rat B00001P4XA Koss "The Plug" Portable Headphones: Electronics electronics 5.0 Big Sound for Small Ears!! November 10, 2006 Gym Rat I thought I was going to have to try to track down some headphones for kids until I ran across these! They are super comfortable and seem to block the world out. I've been using them for about 3 months now and couldn't be happier eventhough I've got a healthy dose of ear wax building up on them B000E873QM:good,_simple,_inexpensive_plug-n-play_mp3_player._great_for_audiobooks_and_holding_data!_:practice_everyday_"bright_blessings" B000E873QM COBY MP-C827 MP3 Player w/128 MB Flash Memory & USB Drive: Electronics electronics 12 of 12 5.0 Good, simple, inexpensive plug-n-play mp3 player. Great for audiobooks and holding data! September 5, 2006 Practice Everyday "Bright Blessings" Houston, TX USA This isn't my first mp3 player. I have a couple of the years and since my last one died I was looking for a quick, cheap replacement. I also needed a flash drive for work. Don't underestimate this, if you use the net at a library or cafe then you'll realize that 1. not all players/drives are recognized as drives and/or 2. you've got to carry an extra cord with you to plug into the usb port, which gets annoying quickly. when you clean out your purse and discover you don't have it with you. With this you get both in one. It has a built in usb port which is recognized fine in most operating systems, even win98. The sound quality is good, I can't tell the difference between this and my $100.00 player. The controls do take a few seconds to get used to, but once I did I find I preferred them. They are easy to use one-handed. An unexpected bonus is that its great for audiobooks! If you turn off the player, it starts back up exactly where you left it, be it in the middle of a song or in the middle of a chapter! Its small without being too tiny, its design is simple enough that there is nothing to fall off or get lost and technophobes won't have a heart-attack. Its doesn't hold a lot of music at only 128mb or have a shuffle feature, but if you need to carry more than an album or 2, or need extra features then you'll want more than this player anyway. The best feature is the price. I found this one at my local ToysRUs for $15.00. It also plays both mp3's and wma. It won't play AAC but if most of your music is this format you'll better off with an ipod. This would make a good first player for a kid or for someone who needs a usb drive and music without all the bells and whistles. I'm giving it 5 stars because it does exactly what I need it to do without any hassle B000068CS0:great_product:gary_albert_"albert" B000068CS0 SanDisk SDSDB-128-A10 Secure Digital 128MB (Retail Package): Electronics electronics 1 of 1 5.0 Great Product February 16, 2006 Gary Albert "ALbert" Miami, FL I decided to purchase this item because I needed to get SD memory for my g/friends digital camera, so I chose this one because of the price and the brand. SanDisk is known for their memory. Well, no need to say more, this thing works great. I will buy another one but with more space anyday. Thanks alot San Disk B000068CS0:great_for_canon_a-series_dig,_cameras:benito B000068CS0 SanDisk SDSDB-128-A10 Secure Digital 128MB (Retail Package): Electronics electronics 2 of 2 5.0 Great for Canon A-series dig, cameras September 9, 2005 Benito West Atlanta just got this one at sears, and was only $20 so i grabbed it. the Canon A400 i have only came with 16mb so i needed more space. the 128 is much faster and easy to format than my old one. love it!!! go out and buy one today! GET SANDISK NOT LEXAR, THEY BREAK ALL THE TIME!!!!! B000068CS0:how_many_pictures_will_it_store?:brent_d._payne_"lyricvault_com" B000068CS0 SanDisk SDSDB-128-A10 Secure Digital 128MB (Retail Package): Electronics electronics 13 of 14 5.0 How many pictures will it store? November 5, 2004 Brent D. Payne "LyricVault_com" Spokane, WA USA How many pictures will it store? It is the most commonly asked question from digital camera enthusiast but usually the question that is the most difficult to get a straight answer about. Well, considering I worked in the memory industry for over 7 years I can help clarify this perplexing question and do so unbiased as I have since changed industries. The SanDisk SDSDB-128-A10 Secure Digital 128MB, like most 128MB cards, will store on average 142 pictures when used with a 2 megapixel camera, 106 images when used with a 3 megapixel camera, 64 pictures when used with a 4 megapixel camera, 51 images when used with a 5 megapixel camera, and 40 pictures when used with a 6 megapixel camera. These numbers are based off the assumption that you are going to shoot your images at the highest quality JPEG setting available for the camera and understand that they are estimates and may be off by as much as 10 percent due to numerous factors including the complexity of the scene being shot and the compression algorithm used by your specific camera. I truly hope this review was helpful to you in determining whether this card is the right capacity for your specific needs B000CO77TQ:on_the_contract:env-youreverythinghomepage-com B000CO77TQ 4-Year Service Plan for Televisions $1,500 to $1,999.99: Electronics electronics 20 of 20 4.0 On the Contract August 24, 2006 env-YourEverythingHomepage-com Los Angeles, CA, formerly Rochester, MN USA If you buy this service plan, print out the contract (found at the top of this page) and keep your receipt. I did not purchase the plan, but looked over the contract intensely since I nearly got it. Some notes on the contract: 1. It is only good in the United States (including Washington, DC, but MINUS MAINE), but it does not include Guam, Virgin Islands, etc. So if you are in another country or outside the 50 states + D.C., this contract will be nothing but a waste of money. 2. This contract is transferable and the directions to do so are simple. 3. They will only fix/replace/etc IF the manufacturing warranty no longer covers the item. That is, if the manu. warranty is still good, you have to use it. 4. If the item needs to be shipped, shipping/handling will only be covered if the manufacturer would cover those costs in their warranty period. If the item is being replaced, "You will be responsible for the delivery or cost of delivery of the covered Product to Our authorized service center. Reimbursement will be issued in the form of a check payable to You." I'm uncertain if that means you cover those costs or they reimburse you. 5. No lemon policy of 3 service repairs for the SAME defect, and a upon the time of a 4th repair, as determined by them, they will "replace it with a product of comparable performance. Repairs performed while the Product is under manufacturer's warranty DO NOT APPLY." (Doesn't sound like a great no lemon policy... your product would have to breakdown in the same way 4 times in the number of years they cover you -- many electronics are typically already covered by the manufacturer for 1 year.) 6. There are numerous conditions that they will not repair for, but they all sound typical of such plans (such as, they don't cover accidents and they don't cover "the elements or acts of God" ... sorry, I had to note that second one since it stuck out to me from the other things). But, in all seriousness, read the list before you purchase. So, now that I have summarized much of the contract, if you want to get the service warranty, PLEASE READ THE CONTRACT SINCE I DIDN'T COVER EVERYTHING!!! (Don't hold me liable since I don't have much money anyways.) Also, I think this is typical in warranty contracts, but you will occassionally see the phrase "at our discretion" in the contract. Assuming they aren't jerks with their discretion and aren't too tough to deal with, I would give the warranty 4 stars (minus 1 star for the crappy lemon policy). I didn't get the coverage because the product I was going to get it for had just made into the next price category (so it was pricy for my product, being at the lower price end of the scale) B000F8J3AA:great_phones!:howard_b._weiner B000F8J3AA Panasonic KX-TG5761S 5.8 GHz FHSS GigaRange Expandable Digital Cordless Telephone: Electronics electronics 6 of 16 5.0 Great Phones! July 28, 2006 Howard B. Weiner Seattle, WA USA There is absolutely nothing that we don't like about these Panasonic phones. The sound quality is excellent as is the range. Very happy customers B000196C3E:converts_hiking_to_auto_usage:wilbur_d._wong_"wilbur_wong" B000196C3E Garmin Automotive Navigation Kit with City Select North America: Electronics electronics 21 of 23 5.0 Converts hiking to Auto usage December 7, 2005 Wilbur D. Wong "Wilbur Wong" Richmond, CA USA I have had mine for a week. I had a non mapping garmin gps 12 for years, which was misplaced. I bought the navigation kit at the same time I ordered a 60 CS. It makes what I bought for backpacking usable as a car navigation tool both in the city and out in the boonies. I had no problems loading software and maps, upload or download from/to my gps. I am impressed by the softwares ability to "recalculate" in navigation mode. If I ignore the suggested route, it continually adapts to suggest a new route based on where I am. I am sure that some portions of the database is not current as far as new roads etc. are concerned but I am impressed with the degree of information that is currently contained. I have gotten messages regarding keeping right for example (to avoid being caught in what becomes a left turn only lane), and knowledge of one-way streets etc. The real test is yet to come to negotiate San Francisco's endless no left turns, one way streets, construction and limited freeway on ramps!! B00030AX3Q:where_comfort,_precision,_and_great_price_meet:seagull B00030AX3Q Logitech Precision Plug and Play Gamepad: Electronics electronics 1 of 1 5.0 Where comfort, precision, and great price meet May 3, 2006 Seagull somewhere on the West Coast Three months later, I'm still amazed at how cheap this amazing piece of hardware was. Granted, it doesn't vibrate, nor have a zillion buttons, but it definitely performs admirably. It is comfortable and the buttons respond well. The unit feels well-built, and connects to the computer easily via USB. And as a bonus, it looks pretty too. : B000065BP9:good_value:crookdimwit B000065BP9 Sennheiser HD 202 Headphones: Electronics electronics 3 of 4 4.0 Good value November 13, 2006 crookdimwit Washington, DC USA I bought this based on the overall positive reviews. Good sound quality, and a comfortable fit. I didn't find them to be too tight at all. For a low-end pair of headphones, I think they're pretty impressive B000065BP9:exacly_as_expected:the_headphone_man B000065BP9 Sennheiser HD 202 Headphones: Electronics electronics 4 of 4 4.0 Exacly As Expected November 9, 2006 The Headphone Man The cups of these heaphone are a little small and they do fit snuggly on my head but after stretching them out a bit I must say they are very comfortable. If you dont like them at first wear them for a while, they will grow on you. B00005NIMR:great_price_and_fast_shipping_from_eektechnology:mark B00005NIMR Belkin F3N401-06-ICE IEEE 1394 4-Pin/6-Pin 400 Mbps FireWire Cable (6 Feet): Electronics electronics 6 of 8 5.0 GREAT price and fast shipping from eektechnology March 23, 2006 Mark San Francisco, CA If you went to circuit city, you would see this is $30 there. Here its only 8.99! With fast shipping I only paid about $16 total, half the price of circuit city. Those type of stores (best buy, circuit city, compusa) are a total ripoff when it comes to these cables. Buy from Amazon.com (eektech will ship) and you save lots of $$. Thanks eek for great service B00005NIMR:great_cable_for_the_money:m._cloutier B00005NIMR Belkin F3N401-06-ICE IEEE 1394 4-Pin/6-Pin 400 Mbps FireWire Cable (6 Feet): Electronics electronics 2 of 2 5.0 Great cable for the money February 24, 2006 M. Cloutier WA, United States Works great, good quality from Belkin as usual. Hard to beat for the money B0009N5MCY:better_than_sliced_bread:guy_brunt_"mebgb" B0009N5MCY Logitech V200 Cordless Mouse - Silver ( 931379-0403 ): Electronics electronics 5.0 Better than Sliced Bread November 9, 2006 Guy Brunt "mebgb" Camp Hill, PA United States I'm using the product as I respond to this request for a review. Sufficiently compact for ease of packing in my laptop case. No technical issues (so far). Tracking is excellent. Has worked flawlessly under daily working conditions. Recommend highly B0009N5MCY:easy_to_use:georgenewlife B0009N5MCY Logitech V200 Cordless Mouse - Silver ( 931379-0403 ): Electronics electronics 1 of 1 5.0 Easy to use August 9, 2006 georgenewlife new york This mouse works perfectly fast and easy without problems even if you don't install the software. If you need a cordless mouse this is what you have to bu B0009N5MCY:excellent_mouse...software_needs_improvement:k._arens B0009N5MCY Logitech V200 Cordless Mouse - Silver ( 931379-0403 ): Electronics electronics 1 of 1 4.0 Excellent Mouse...Software Needs Improvement July 26, 2006 K. Arens As the title states, this is an excellent wireless mouse. Works right away with Windows XP, no driver install or software needed for two-button and normal scroll capabilities. Software allows for extra button assignment, but could use some work. I have had some trouble finding the menus I want when I want to find them. For example, I have an issue where I cannot find the extra button assignment menu after plugging in the USB receiver after a system start-up, however I am able to find those menus in the software if I remove and reinsert the receiver. But as I said before, superb mouse function and tracking...this thing works on upholstery, leather, my jeans, and thick carpet!! B0009N5MCY:a_good_wireless_mouse_for_a_notebook_but_consider_the_bluetooth_option_v270.:cpt|kirk B0009N5MCY Logitech V200 Cordless Mouse - Silver ( 931379-0403 ): Electronics electronics 7 of 8 4.0 A Good Wireless Mouse for a Notebook but consider the Bluetooth option V270. June 16, 2006 Cpt|Kirk Starship Enterprise The V200 is another great Logitech product. It is far from the king of the mouse, but when it comes to the notebook it doesn't get much better than this. It takes two AA batteries (so get some rechargeable batteries to save on costs) which slide into the top of the mouse by pulling back on the palm rest to reveal two slots. The mouse doesn't weigh too much heavier than the two mouse batteries themselves. This is a two button mouse with a tilt wheel. With the setpoint software you can alter what the buttons do. Overall the design is good. There could be a problem installing setpoint. It may hang on install. If so you need to use the task manager to quit the install and then try it again. It should work. The USB receiver is 2.4 GHz and has a 10 Meter range. Wow. However there is one major problem with a wireless mouse for a notebook. USB dongles and receivers that are plugged into the side of the laptop are just begging to be snapped off. For this reason you should have the USB receiver on the side opposite the mouse hand, if you can, to avoid accidental contact. It should also not be hanging over the edge of the table. If you press it down lightly, then that is it, game over for the receiver and you will have to get a new 2.4 GHz receiver. So okay you will have to spend on a new receiver, if you break the old one. The receiver plugs into a small slot under the mouse using a magnet. When it is in the holder the mouse turns off. It doesn't fit in smoothly. It creates a block shape in the bottom of the mouse. Anyway you are not going to be using it when it is clipped in. The other thing is that it can pop out sometimes. Just happens if the mouse just gets knocked a certain way. I am sure most notebook users are cautious with their notebooks and devices. If you are then a mouse like this and USB should last for a very long time. There is really nothing wrong with it. Wireless mini mouse. FAB! However there is one last thing to say. If you don't like the idea of a USB receiver then GET A BLUETOOTH VERSION OF THIS MOUSE INSTEAD. It is called the V270. That is if your notebook has internal Bluetooth or else you will need to get a Bluetooth USB receiver and be in the same boat when it comes to watching your USB receivers. But if you have a Bluetooth internal receiver with your notebook then by all means head over to the V270 and forget about this USB option. The USB design isn't a fault with the mouse; it is just a fault with all notebooks that is not really a fault. You just got to switch to internal Bluetooth or learn to take care of your receivers. B000A6X9CU:exceptional_product:r._howland B000A6X9CU HP Photosmart 8250 Printer (Q3470A#ABA): Electronics electronics 1 of 1 5.0 exceptional product November 3, 2006 R. HOWLAND Shadyside, OH USA When I purchased this product I was a little sceptical, however, once I unpacked it and started using it, it was so absolutely easy to use, and the pictures have such a fine quality, and you can insert 4 different sizes of memory cards in addition to computer connection. So, I see it as a win/win product. The only draw back is the weight and size. I just do not regret this purchase with the price an added bonus as wel B000IK5X2C:great_way_to_hold_and_hear_your_2g_nano:darwin_"computer_consultant" B000IK5X2C Apple iPod Lanyard Headphones for 2nd Generation nano: Electronics electronics 9 of 9 4.0 Great way to hold and hear your 2G Nano October 6, 2006 Darwin "Computer consultant" Redmond, WA United States First and foremost--I am not an audiophile, so I can't comment with any authority on the quality of the headphones themselves. They are fine for me and my listening habits--I find myself increasingly listening to podcasts when commuting via bus for which these headphones are perfectly fine, although when I do listen to my music the bass and treble response seems fine to me. That being said, what I wanted was a convenient way to carry my 2G Nano so I could listen and manipulate the controls with the iPod handy yet out of the way. This lanyard does an excellent job of providing that and I would recommend it to anyone. So why four stars? Well, for a few reasons: --Only available in white. I have a black 2G 8GB Nano. I'd have liked to match it. --No lock or release on the base that connects to the Nano. While the connector does fit snug with the Nano and doesn't disconnect so easily from the Nano that I'd fear it might fall off while walking about, I would have felt more secure with some sort of lock or release mechanism holding it in place. For this reason I would not recommend the lanyard to anyone doing any sort of strenuous activity or exercise--but hanging loose around the neck really isn't the best place for the Nano then anyway. The armband would be more appropriate. --NOWHERE on the packaging did it say this was for the 2G Nano! I had bought a 1G Nano lanyard at a local store and had to return it when I discovered it was incompatible (the dock connector and headphone jack on the 1G and 2G Nanos are NOT the same distance apart). When this 2G lanyard arrived, I could find nothing on the package that said "for 2G Nano", so I opened it very gingerly thinking I had received the wrong lanyard and would need to repackage it and send it back. I was very relieved when it did fit! Regardless, there should be a very clear "For 2G Nanos only!" label on the box to alleviate 2G Nano owners' fears and to warn 1G Nano owners. All in all, I am very happy with the lanyard. It keeps the Nano handy while leaving my hands free, and that was what I was looking for B000117DF8:works_great_---_mac_and_pc:reader_"reader_r._reader" B000117DF8 Lexar Media 512 MB JumpDrive Sport Portable USB 2.0 Drive (PC/Mac): Electronics electronics 2 of 2 5.0 Works Great --- Mac and PC May 20, 2006 Reader "Reader R. Reader" Anytown, USA It's been through the wringer, and has had no problems after about a year. I came here looking for a replacement cap, but can't find one on Amazon B000636JD8:works_fine:r._ward_"ry1nik1" B000636JD8 TRENDnet 54Mbps 802.11G Wireless USB Adapter: Electronics electronics 2 of 2 5.0 Works fine July 11, 2006 R. Ward "ry1nik1" Virginia I downloaded the driver from Trendnet's website before installing the adapter. I did not encounter any problems at all, including the issue that some users had with it disconnecting when they plugged in another USB device B00004SY4H:sonic_delight!__but..._a_warning!:mark_j._foster_"cto" B00004SY4H Sennheiser HD600 Traditional Over-Ear Open Dynamic Hi-Fi Professional Stereo Headphones (Black): Electronics electronics 9 of 24 5.0 Sonic Delight! But... a Warning! October 20, 2005 Mark J. Foster "CTO" Palo Alto, CA USA The Sennheiser HD600s have only one thing wrong with them: they'll change you from someone who enjoys good audio... into an audiophile! I've been known as a videophile for many years over on one of the top AV forums, but I've always been satisfied with merely "decent" audio. Until now. I'd previously ripped all my CDs into the (previously quite impressive) Windows Media format at 192K bps, but that's now useless. With the phenomenal ability of the Sennheiser HD600s to reveal all the subtle nuances of your music, listening to compressed discs is like listening to your music through a thick layer of vaseline. Here we go again... it's time to rip everything into lossless format. I cannot recommend these headphones more highly - they are simply extraordinary. When your tastes become accustomed to this level of quality, though, life's going to get a lot more expensive, as you try to update everything to match your new level of sonic differentiation. Still, this is a bloody miracle. My ears have finally been opened. Wow B00004SY4H:sennheiser_hd-600:mr._s._st_thomas_"suckerfly" B00004SY4H Sennheiser HD600 Traditional Over-Ear Open Dynamic Hi-Fi Professional Stereo Headphones (Black): Electronics electronics 11 of 24 5.0 Sennheiser HD-600 April 2, 2005 Mr. S. St Thomas "suckerfly" UK Having been a buyer of Sennheiser products for over 10 years, I feel it is time I endorse a product I truly believe in, and have never been let down by. Including service and customer satisfaction. Each time buying a Sennheiser product, I found myself stepping up to the next level of their headphones, because they simply keep improving their technology to the point that what you used to own by them gets overwhelmed by the latest headphone they offer. When I bought the HD-600's, I had just come away from years owning the HD-25. When these encountered a technical problem, I replaced them with a backup choice, the HD-25SP's. The difference in sound going 'lower' down their scale of products was just too much to bear. So I bit the bullet and went higher. Whether you use Sennheiser's merely for pleasure, or for studio work, the accuracy of their sound, and what you get for your money cannot be beat. My HD-600's ran into a small technical glitch (and Sennheiser were extremely helpful in getting this fixed and replaced within 2 days of receipt), and I swear I nearly cried in their absence. HD-600's give you a clear idea of how things were recorded, how good your system is, and what truly sounds inferior. You never listen to things quite the same way again. The reason my reviews of Paul McCartney and John Lennon albums from the 70's all comment on how inferior the recording quality is (especially compared to the so called ''Economy Class Beatles'' George Harrison's and Ringo Starr's albums from the same decade), is down to what HD-600's reveal. My main source of media tends to be Vinyl, because Compact Discs and DVD's still cannot capture what analogue/turntable equipment captures. Vinyl is simply warmer and more 'round' in comparison to its digital counterparts. And when listening to badly recorded albums, HD-600's make you wonder if you spent more on your headphones than the artist did using a studio. HD-600's are the reason I mention time and time again you are not getting value for money when buying Lennon and McCartney solo albums. Listening to ''Take IT Away'' from 1982's Tug Of War reveals an annoying tape hiss coming from the left side of the stereofield. Which sounds much like someone forgot to 'silence' a track that had a recording on it, before the instrument actually showed up in the song. It sounds totally like electrical / amp noise coming from equipment, and Geoff Emerick or George Martin just simply forgot to keep this track silent until the instrument that occupied that track appeared in the song. It gets much worse than 'Take It Away' on Paul McCartney albums, and even more painfully so on John Lennon albums. But listening pleasure can be found recording wise on their solo albums BACK TO THE EGG, RAM, DOUBLE FANTASY, MILK AND HONEY, and some portions of BAND ON THE RUN, and WALLS AND BRIDGES. #9 Dream is simply a gorgeous recording, it's just too bad the rest of the album doesn't sound as good as that one song. When you listen to your CD's, vinyl, DVD's in whatever room of your house your speakers are, the room dictates what you hear, no matter what you've spent on speakers, power amps, woofers, sub-dividers, etc. Whether you have wall to wall carpeting, high ceilings, low ceilings, plaster or cement, wood floors, a more long than wide room, it all affects how sound reaches your ear. Which is why on a great set of headphones, you are more likely to hear HOW those sounds were meant to be heard, how they were recorded, and how much time was spent doing it. On speakers, McCartney's JET sounds quite full, though the snare is a little thin. But when hearing the album with HD-600's, the drums nearly become non-existent, and all the inconsistencies of the recording become so apparent, you wonder if the mix was sabotaged by someone. McCartney on drums is not a miracle, especially when you hear many of the mistakes being made by someone not as confident on that instrument as they are on Bass. Can I review anything without bringing up Lennon and McCartney? Quite possibly Dog Food. But so far, they come up pretty regularly. Makes you wonder if I'm trying to prove a point doesn't it. Albums that are phenomenally recorded get due justice with Sennhesier HD-600's. They truly do. Some noteworthy recordings from the 70's and 80's when recording technology (for popular music) was just beginning to reach new highs, that are all HD-600 friendly: Isao Tomita's The Firebird (1976) George Harrison's eponymous album (1979) Steely Dan's Gaucho (1980) Joe Walsh's The Smoker You Drink, The Player You Get (1973) 10CC's The Original Soundtrack (1975) Godley & Creme's Consequences (1977) Supertramp's Crime of the Century (1974) XTC's Black Sea (1980) Peter Gabriel's 3rd album (1980) Kate Bush's The Dreaming (1982) Earth Wind and Fire's All 'n' All (1977) Level 42's The Pursuit of Accidents (1982) Billy Cobham's Spectrum (1972) Frank Zappa's One Size Fits All (1975) Ringo Starr's Goodnight Vienna (1974) and a truly incredible sounding album from the 90's, Prince and The New Power Generation's ''Symbol'' album from 1992. Albums NOT HD-600 friendly: Todd Rundgren's Hermit of Mink Hollow (1978) Blue Oyster Cult's Agents of Fortune (1976) Paul McCartney's Venus and Mars (1975 - and quite a few others) John Lennon's Imagine (1971 - and avoid 1970's Instant Karma like the plague, the piano track will hurt you . . ) Yes's Fragile (often the guitars and keyboards hit frequencies that cause a lot of crackling and clipping) and surprisingly enough, many remasters of albums once on vinyl or antiquated CD reveal the errors of fixing something that ain't broken. If you have to save up for a pair, or do some heavy searching for HD-600's that are affordable, do so. In over 10 years I have never been disappointed by anything Sennheiser distributed, especially when I kept up with their pace. B0002Y22VE:great_for_the_price:len_egdish_"leneggs" B0002Y22VE Magellan RoadMate 300 Vehicle GPS with Voice Prompting: Electronics electronics 22 of 23 4.0 GREAT for the price March 10, 2006 Len Egdish "leneggs" Kansas City I just purchased one of these and was a little sceptical after reading some of the reviews that stated how difficult it was to load the information into the unit. I had no problem at all. In fact it was quite simple. I am truly amazed at how acurate and easy to use this unit is. For the price, you can't beat it B0009I6KCA:very_good_for_the_price:hari_manoharan B0009I6KCA Transcend 1GB 80x Secure Digital (SD) Card: Electronics electronics 6 of 6 5.0 Very good for the price June 11, 2006 Hari Manoharan Fremont, California I bought the Transcend 1 GByte card for my PDA. My Axim x51v immediately recognized it and is working flawless for the past few weeks. I am planning to get the 4GB model too which is currently retailing for $90 to $110 elsewhere. Har B0007Y6AF8:no_mp3_support_but_very_high_quality_device:buyerlsd_"buyerlsd" B0007Y6AF8 Sony ICD-MX20 Memory Stick Pro Duo Digital Voice Recorder: Electronics electronics 16 of 18 4.0 No MP3 support but very high quality device December 29, 2005 BuyerLSD "buyerlsd" edinburgh I was mislead with Amazon review which said it supports conversion to MP3 format with the software supplied, it does not. The help quite clearly states "You cannot convert a file into an MP3 file". It will convert to .wav then you can use a 3rd party program to go to MP3. If it had MP3 support (at least conversion on the PC from the Sony proprietary format which is .msv) I would have given it 5 stars due to the good software supplied and the amazing sound quality possible. It you record in full quality mode (1.25 hours with built in 32meg memory) and listen to it again with good headphones it does sound amazing. The Voice Up (so you hear each person in a conversation) works very well as do other nice features. But it is let down with the software supplied not performing MP3 conversion. Going to .wav then .mp3 with another program is a pain and simply converting to .wav to get away from proprietary .msv takes up too much space. But I would buy one again, as it is very easy to use, small, and very high quality. I just hope Sony would listen to consumers and support MP3 B000069LI9:perfect!:michelle_sanders_"busybusymomma" B000069LI9 HP No. 56 Black Ink Cartridge (C6656AN): Electronics electronics 5.0 Perfect! November 3, 2006 Michelle Sanders "busybusymomma" Indiana USA This is the same cartridge I can purchase elsewhere, but cheaper. It works well in our printer with no issues whatsoever and my HP printer prints fantastic photos when I use HP ink and HP premium photo paper B000069LI9:hp_no._56_black_ink_cartridge_(c6656an):carrie_schultz B000069LI9 HP No. 56 Black Ink Cartridge (C6656AN): Electronics electronics 5.0 HP No. 56 Black Ink Cartridge (C6656AN) February 23, 2006 Carrie Schultz No complaints - I'm pleased with the quality and price B000BI2CIO:this_was_just_what_i_wanted:marie B000BI2CIO Logitech Wireless Music System for PC: Electronics electronics 2 of 2 5.0 This was just what I wanted August 16, 2006 Marie Missouri Before I bought this device, I was trying to enjoy the "Hearts of Space" website, "This American Life" and other NPR shows available for online streaming. Only problem was, I didn't like being shackled to my computer in order to hear them. I did some research on the internet, read a lot of reviews and ultimately decided on the Logitech Wireless Music System. I would like to echo all the positive comments recorded here. It was indeed quite fast and easy to set up. No lengthy manuals to read (thank goodness.) I did not find it necessary to load the CD software that came with the device. If I want to listen through the stereo, I plug in the USB. If I want to listen through the computer, I simply unplug the USB. It's very simple. I am 100% satisfied with the sound quality. I would not be able to tell the difference between FM radio and the online streaming. However, I do have to turn up my stereo about twice as loud when I am sending internet audio streams to it using this device, than when I am listening to a CD or the radio. On my stereo (which isn't fancy), this does not cause diminished sound quality, so I'm perfectly OK with it. I just have to remember to turn down the volume before switching back to CD or radio listening. If you are wondering whether the device will be compatible with your stereo, check for two things. First, your stereo has to have a set of two holes side-by-side that are for the twin plugs generally colored white and red. I'm sorry I do not know the technical names for these things, but there's a picture of the red-and-white plugs on this Amazon page in the Manufacturer's "Product Description" section (just scroll up until you see it.) Second, your stereo has to have a button that will let you switch to "Auxiliary" input. My stereo has this, but my portable CD player/cassette player/radio (AKA boom box) does not. If it is important to you to be able to use this on a portable player you can carry around the house and/or outside, be sure to check your player for these two things. Overall I am very satisfied and quite happy with the product B00000JBLH:personal_productivity_tool:thomas_crowell B00000JBLH HP HP12C Financial Calculator: Electronics electronics 1 of 1 5.0 Personal Productivity Tool November 5, 2006 Thomas Crowell The HP12C has been an essential in my personal productivity tool kit for over 20 years. I bought my first one when I was a consultant and it lasted until August 2006. It withstood all the travel and constant use well. I use it for simple and complex math; statistical analysis and financial analysis. It is much faster and simpler to operate than a PC. My new one has all the same great features. I highly recommend this for someone who is frequently required to perform mathematical and financial analysis. B0006J59YW:you_will_need_your_own_charger:rick_levesque_"waja" B0006J59YW Iogear Wireless Bluetooth Mini Mouse: Electronics electronics 1 of 1 4.0 You will need your own charger August 5, 2006 Rick Levesque "Waja" Silicon Valley, CA USA I bought this mouse and have used it for over a year now. The nice part about this mouse is the range and the fact that when it works, it works beautifully. When it doesn't work, it is erratic and locks up. Turn it on and off and while the LED will light up, it will still not work well. This is the hint that the battery is low. The mouse comes with two rechargable NiMH AAA batteries. These are 650mAh batteries and are not the best. I bought 4 1000mAh AccuPower NiMH batteries. I keep 2 in the charger. These batteries work great and when fully charged will give me a month of use at about 8 hours a day. But as soon the mouse starts to get erratic, you have to swap the batteries. Do this and you will really like this mouse. Another nice feature for this mouse is the range. You can use your laptop as a DVD player connected to your TV and sitting out of the way. The mouse makes a nice remote control B0009EUFI4:almost_like_prints_from_the_photo_shop:w._aona_"koa_man" B0009EUFI4 Epson PictureMate Deluxe Viewer Edition Photo Printer: Electronics electronics 8 of 8 5.0 Almost like prints from the photo shop August 27, 2006 W. Aona "Koa Man" Honolulu, Hawaii USA This is a great printer. I have used it several times and it makes great pictures. I had some pictures taken at a low resolution and the print still turned out looking great. Tried this on a regular printer and the print didn't look near as great. A great feature is proof sheet print of the pictures you have. You can also add a border to your pictures which makes things nice for postcards. Colors are great and vivid. Also the prints look like that purchased from a photo shop. I have not tried printing to non Epson paper so I can't say how prints would look. I know that Epson printers look the best printed on Epson paper. B0002UE9WI:good_piece_for_good_price:boopathy_subramaniam B0002UE9WI Creative Labs WebCam Live!: Electronics electronics 1 of 1 5.0 Good Piece for good price November 9, 2006 Boopathy Subramaniam The camers is good in picture quality and easy to install and use. It's multi utility for desktop and notepad is a very good feature which I personally expected. I have a complete satisfaction B000AM6QHO:it_solved_my_problem:jarome B000AM6QHO Logitech Z-5450 Digital 5.1 Speaker System: Electronics electronics 4.0 It solved my problem November 9, 2006 JARome Tennessee USA Although the rear speakers need a power plug, this system solved my problem of being unable to run a signal wire to the back speakers from the front. The sound is OK, not awesome, but not bad. Better than the TV speakers by a long shot. They can also be nicely controlled with my Harmony remote B000AM6QHO:logitech_z-5450_digital_5.1_speaker_system:wei_feng B000AM6QHO Logitech Z-5450 Digital 5.1 Speaker System: Electronics electronics 1 of 1 5.0 Logitech Z-5450 Digital 5.1 Speaker System November 9, 2006 Wei Feng very good, worth the money. If you want a louder one, go for Z 535 B000AY5Y5W:play_games_and_want_to_move_faster?_get_one:brett_christoffel_"bmc" B000AY5Y5W Logitech G7 Laser Cordless Mouse: Electronics electronics 1 of 1 5.0 Play Games and want to move faster? Get one November 10, 2006 Brett Christoffel "BMC" Plano, Texas United States Never been game player much since pong-Purhcased BF2 last December for the PC and loved it. Flying was limited though-util I purchased my G7 from NE and have been enjoying MUCHO fast speeds, easily adjusted, and for internet parusing it has a built in back button. Have to change out battery every two days but gives plenty of warning and is always charged when I need to replace. Absolutely the best mouse I have ever owned. B0002CPBUK:excellent_keyboard!:peter_brogan_"pete" B0002CPBUK Microsoft Digital Media Pro Keyboard: Electronics electronics 6 of 6 5.0 Excellent Keyboard! August 25, 2006 Peter Brogan "Pete" Blackwood, NJ USA I love this keyboard. After searching through just about every keyboard available, I was torn between this and a gaming keyboard that was triple the price. I'm so glad that I chose this one. It is excellent! The quick access buttons are great and you can set them up almost any way you want. It's a great keyboard for gaming, office use, media or just ordinary, everyday use. They keystrokes are effortless and near silent. The slide zoom feature is cool, but I don't use it much. It's better to have something and not need it than to need it and not have it though. I really love the quick access buttons which allow me to pull up my files, e-mail or web pages with immediate ease. The only thing I don't like about this keyboard is the sleep button. I NEVER use this and I can't see any way to reasign it. However, it is out of the way and not a big enough deal to lower my rating of this sweet keyboard. Aside from all of that, how can anyone complain about a keyboard of this quality for such a great price. And it was delivered the day after I ordered it. To top it off, it feels sturdy and well made. I would reccomend this keyboard to anyone. It is a great all around keyboard with either USB or PS2 connectability B000CSCLMK:wow_-_buy_one.:jeff_hutchison B000CSCLMK Creative Zen Vision:M 30 GB MP3 and Video Player (White): Electronics electronics 7 of 7 5.0 Wow - buy one. November 20, 2006 Jeff Hutchison Norman, OK United States I have been into MP3s since 1996 - I used winplay, and l3enc, and thought it was the most amazing thing ever. I bought one of the first CD based MP3 players, and then a Nomad Jukebox with a whopping 6 gig hard disk... next was the 10 gig model, and then I upgraded to the Nomad Zen 20gig with USB 2.0. The Zen went with me everywhere - Africa, Europe, My living room. After about 70,000 hours of use and abuse, it finally died. I needed a replacement, so I looked at iPod, and Zune, but why would I stray from Creative Labs? Besides, it's better in every way - better screen than the ipod, better interface than the Zune, and a better battery than either one. When I plugged it into my computer, I was blown away. XP found the player, and without any drivers or proprietary (think iTunes) software, I was able to drop my non-DRM ;) mp3 files right onto the generous space available. I was listening to my music in mere minutes without installing anything, or ever being forced to reboot my PC. I transferred a couple of movies and I'm looking forward to my next flight B000CSCLMK:a_little_pricy,_but_it_was_worth_it.:j._willig_"cosmo_jiggy" B000CSCLMK Creative Zen Vision:M 30 GB MP3 and Video Player (White): Electronics electronics 3 of 3 5.0 A little pricy, but it was worth it. November 13, 2006 J. Willig "Cosmo Jiggy" Sumter, SC USA This is my first time ever buying a really expensive MP3 player. I bought it three weeks ago. If I hadn't seen the Creative Zen Vision:M, I probably would have bought the Sandisk Sansa E260. I love being able to bring my cartoon/tv shows over to a friends house so we can watch them on the tv. There is one problem I've had with it. I'm not sure if anyone else has had this, but there is some slight static noise that happens once in a while when I'm listening to music. I don't think it's the MP3s, because I've never ran into the problem with my other MP3 players. If only they would've added the video cable for the TV and kept the charger, then I would've rated it a 5 B0002YXTRK:a_great_value:m._mitchell B0002YXTRK AMW M520B Portable DVD/CD/MP3 Player with 10.2-Inch Widescreen LCD (Black): Electronics electronics 1 of 1 4.0 A great Value April 18, 2006 M. Mitchell Tallahassee, FL Bought this DVD player 4 days ago and have enjoyed it ever since. It has many features and a good picture. You can't beat the large screen. I like the zoom feature especially. Another feature I like is that the battery fits flush with the dvd player in back so that you don't have a bulky protrusion when it's attached.The sound is not loud as others have said but I have yet to find a portable DVD player that has good sound. You'll have to use external speakers or ear phones(included). Another thing I notice is that DVD-RW or DVD+/- R are not supported. They play but the menu system does not work. You have to access the file manually. That being said I cannot find this size dvd player anywhere else for less than $299. The shipping was fast and free. There is a stamp on the manual stating that the unit is sold "as-is" but the unit I got was brand new and not refurbished. So far so good. I don't thonk you will be disappointed B00005AC8J:great_card_at_great_price:ashu B00005AC8J Viking CF256M 256 MB CompactFlash Card: Electronics electronics 1 of 1 5.0 Great Card at great price August 16, 2005 Ashu Sunnyvale, CA USA I have been using this card for last 6 months, no problem so far. Rebate takes some time to arrive B000068CNR:a_must_for_home_theater_or_multimedia_centers.:ghenghis B000068CNR SurgeMaster Gold Series w/Tel, 9 Outlet, 2950 Joules, 10' Cord, 360 Rotating Plug, (Unlimited CEW & Data Recovery): Electronics electronics 13 of 16 5.0 A must for Home Theater or Multimedia centers. March 5, 2005 Ghenghis Charlotte, NC I was really pushing the limits of my mid-range Monster surge protector with 2 TVs, a 2.4Gig P4 with desktop TV, DSL, two printers, and .....drumroll please.....a fridge all crammmed into a corner office setup about 7' wide. The Belkin Gold unit with RF/EMI suppression up to 75db cured all the rattle and hum problems with speakers, satellite signal, the "dirty" line into my modem, and a week later I haven't had to reboot my system once. Amazing! I had already had a great experience with a Belkin SurgeMaster on my Home Theater setup, so I went one level up with this "Gold" unit. One of the better investments I've made lately. I paid $60 at the local Office Depot, the price Amazon is advertising is ridiculously low at $35. Belkin.com's price is about $70 so my advice is to buy this unit now before somebody at Amazon wakes up and jacks the price. B000ANQXKS:quality_recorder_is_easy_to_use:r._campbell_"intruder_films" B000ANQXKS M-Audio MicroTrack 24/96 Professional 2-Channel Mobile Digital Recorder: Electronics electronics 5.0 Quality recorder is easy to use November 6, 2006 R. Campbell "Intruder Films" I bought this recorder to use as backup for real-time event video recording. I have also used it concert settings. The record quality is astounding, full range of dynamics, using both the stereo mini-plug input and the 1/4" inputs. It is mostly being used now to plug into sound boards to record long event audio. First thing I did was to upgrade to a 4GB Compactflash card. The provided card is too limited. Battery life is adequate for hour plus recordings, and connection and downloading to PC is a breeze. The WAV files are really high quality. It all works as advertised. The only minor glitch I have had, is that when you first try to start a recording, it gives a "media full" message, even tho the media is empty. Then you select record again and it records just fine. I went several iterations with Tech Support, who were very friendly and helpful, but the problem has not been resolved. I also suspect the 3rd part flash card may be contributing to this glitch. I would buy this recorder again B0001H29OW:great_value_for_money:integral_yogi_"auro" B0001H29OW Targus CVR200 15 Notebook Slip Case: Electronics electronics 5.0 Great value for money November 9, 2006 Integral Yogi "Auro" State College, PA USA I am glad I bought this backpack. It exceeded all my expectations. I strongly recommend this one B000F2M16E:great_product!:t._m._p. B000F2M16E Creative Zen Micro Photo 4 GB MP3 Player Black: Electronics electronics 5.0 Great Product! November 5, 2006 T. M. P. California +Built very sturdy, with no flimsy plastic parts +Fits right into the palm of your hand, though it may be a bit thick +Music quality and screen clarity is superb, superior to other counterparts. +Easy to use software. +FM radio and voice recorder is a definite plus! -Controls takes getting used to -Can't listem to music while viewing pictures. Definitely a great buy. You will not be disappointed B0003QER7S:this_is_great_for_just_one_system.:deborah_drake B0003QER7S Logitech Harmony 676 Universal Remote Control: Electronics electronics 4.0 This is great for just one system. November 9, 2006 Deborah Drake I got this less robust remote because I only wanted to use it on one system. And I was able to set it up and program all the different buttons, and it all fits nicely in my hand. They have great customer support available on the weekends. The best part is everything goes on and off with one button! THE DRAWBACKS: a couple of buttons you can't program or use for anything. And my goofey tv has 3 component modes and this thing is set up for 2, so getting it to sink up right is tricky, and it's constantly getting out of sink. B00006346B:monster_cable:w._r._classen B00006346B Monster Cable XP-CI BIG-100 CL Rated Monster XP Clear Jacket Compact Speaker Cable (100 Foot Spool): Electronics electronics 0 of 2 4.0 Monster Cable November 9, 2006 W. R. Classen I must say Moster XP speaker wire makes a huge sound inprovement on mt 6.1 home theater setup my side and rear channels are so clear and crisp . I have these runing threw my walls and ceiling and the intall was a brezz do the jacket by these cables you will love them for your surond speakers Wayne mn B000E8VQ74:perfect_for_a_soldier_deployed_to_iraq!:shadow_doc_"shadow_doc" B000E8VQ74 iSkin Eclipse 30GB Video iPod Protector - Black (EVO3EC1-A): Electronics electronics 2 of 2 5.0 Perfect for a soldier deployed to Iraq! September 26, 2006 Shadow Doc "Shadow Doc" Iraq I am a soldier serving in Iraq. I bought an Ipod while deployed and figured it would get ruined by the dirt, dust and my combat duties. I was fortunate to find the iSkin Eclipse. It is perfect for this environment. It completely encases the ipod to protect it from dirt and dust. It also has a hard exterior faceplate the protects the ipod from damage. The Eclipse also makes it easy to use the controls; even when playing the new games put out by itunes. To put it simply I am one happy soldier, thanks to the iskin Eclipse B000E8VQ74:safe:gary_a._fiebelkorn_jr._"beef_man" B000E8VQ74 iSkin Eclipse 30GB Video iPod Protector - Black (EVO3EC1-A): Electronics electronics 1 of 6 5.0 safe August 24, 2006 Gary A. Fiebelkorn Jr. "beef man" wch, Ohio usa It helps proteck your ipod veary well. I already broke one ipod some how but with this case it well never happen agai B00004Y2ZF:the_little_details_:juju4242_"music_lover" B00004Y2ZF Monster Reference PowerCenter HTS 3500 MKII: Electronics electronics 3 of 4 4.0 The little details October 5, 2006 Juju4242 "Music Lover" NYC Ok, so I upgraded form a 30 inch LCD to a 50" Plasma screen, all the sales guys kept trying to get me to buy a power center. I came home did some research and chose this one, if it didn't improve sound or picture at least i knew that the equipment was protected from power surges. I hooked everything up last light and turns it one. OMG!!!! amazing, my Yamaha receiver and Wharfdale Diamonds 8.2 no longer sounded muddy but insted bright and even toned, the kick from the sub was tight no sloppy and precise, it turned a good system into an eye opener. The Sony progressive scan and LG plasma now are like looking at real people no a screen , the HD stiff is simply the best , digital cable it good and the dvd's are quite near HD. All in all I would highly reccomend this to anyone. The blue light is quite bright but i placed a piece of blue painters tape over it and it is no longer a problem. the voltage meter light is adjustable and not an issue. I now know the voltage in my home ranges between 123.5 to 121 B00004Y2ZF:good_quality,_cool_looking_filter/protector_for_little_more_than_a_strip_form-factor.:cfcubed_"cfcubed" B00004Y2ZF Monster Reference PowerCenter HTS 3500 MKII: Electronics electronics 2 of 2 4.0 Good quality, cool looking filter/protector for little more than a strip form-factor. September 14, 2006 cfcubed "cfcubed" NJ Needed better protection than my $10 surge protector for my HT setup now that I have a couple DVRs & a plasma. Filtering would be a nice side benefit too. Very little $$ more than the power-strip design units I was looking at (& now I see it dropped even lower!). Pros: Build quality, fit & finish, plenty of outlets & diversity of outlets for me, nice form-factor compared to power-strip design, cool looking LEDs & meter. Cons: Those cool looking LEDs cannot be dimmed & are too bright (esp the blue one!) if facing HT viewers. I just blocked the LEDs w/a black card. CABLE/SAT cable filtering no good for my digital cable provider (Cablevision)... Caused more artifacts on HD channels, so couldn't use the cable line filter. Bottom line: Seems a great deal esp at the new even lower pricing @ Amazon B00068E56G:tunes_for_the_tent!!:p._miller B00068E56G Logic3 i-Station Dock and Speaker Station for iPod: Electronics electronics 4.0 Tunes for the tent!! November 9, 2006 P. Miller Rust-Free Central Washington State Actually 4 and a half stars...I borrowed one of these Logic3 amplified Ipod speaker systems for a weekend camping trip and was impressed with the sound and portability. I decided to buy one of my own after looked at several other makes and models all of which were more money. Plenty of connectivity along with base adapters to hold most Ipod models securely. The little subwoofer and 'ambiance' switch make decent sound even at non-annoyingly low volume levels. Close to being a steal at the $59.00 I paid for i B0000DCRHA:excellent_for_skype_and_very_serviceable_for_music._:joe_hutnik B0000DCRHA Sennheiser PC150 Noise Cancelling PC Headset: Electronics electronics 5.0 Excellent for Skype and very serviceable for music. November 9, 2006 Joe Hutnik NJ, USA Excellent sound from phones and microphone. Comfortable on head and ears. Plenty of cable. On cable controls are handy. B000GISUAS:great:darkhaven_"(mainly_horror_fiction_&_herbals_-_wheelsofterror.com,_darkhaven,_fictionaddiction.net_reviewer)" B000GISUAS Sansa E 200 Travel Case Kit: Electronics electronics 9 of 9 4.0 Great September 18, 2006 Darkhaven "(Mainly horror fiction & herbals - Wheelsofterror.com, DarkHaven, Fictionaddiction.net reviewer)" FL I was looking for something suitable to house my sansa, and this fit the bill better than most. The leather case is superb, looking sharp, snug and protective. I enjoy the fact you can still easily access the buttons and menus through it. Both the leather case and the larger case have an atachee on the back, if you wished to connect them to the cord that comes with it. The cleaning cloth works as well as any lense cloth, great for cleaning. The screen protector is a pain in the rear to apply without bubbles, still haven't figured out how yet, and I may trim it to make it more visually appealing. But, really, if you invest in a product such as this, it really makes sense to protect the easily scratched screen! The larger case is compact and protective, having a small storage area, yet the cover is a bit unsightly because of the cheap, generic looking Sansa logo. Only other complaint is that the leather case goes on a belt, but not as a removable type. Only if you put it on when putting on the belt, which can be impractical in some circumstances. This way, I suppose, it wouldn't be able to fall off B00001RME1:easy_and_affordable!:asinthia_marshall B00001RME1 Invent It! Iron-On Transfers: Electronics electronics 4 of 5 4.0 Easy and Affordable! October 22, 2001 Asinthia Marshall Dollar Bay, MI United States I wasnt sure how these Iron-Ons would work since one of the ratings on them was negative. But I just did a practice iron-on on my daughters shirts. It was so easy and they peeled off very well. My girls love their shirts with their own pictures on them. These are a great buy and worth their money B00001RME1:invent_it!_iron-on_transfers:david_price B00001RME1 Invent It! Iron-On Transfers: Electronics electronics 13 of 13 4.0 Invent it! Iron-on transfers June 12, 2000 David Price Toledo, Ohio While thinking of ideas for my church's 75th anniversary celebration, I decided to make T-shirts and sweatshirts using iron-on transfers and my ink jet printer. I chose the "invent it!" brand from Hammermill papers because it was the most cost-effective (cheapest). I created the design on my computer and tried it out on the transfer paper. The results were outstanding for a do-it-yourself project. I followed the instructions included with the transfers and it was a piece of cake. One thing that I did find out - keep the transfers dry after they have been printed. One got wet in the rain and it spotted very badly wherever a rain drop came in contact. This product also does a very good job in black and white, not just in color. The shirts that I did, laundered according to the instructions, came out of the wash lookin' good. I won't hesitate to use this product again in the future. However, I am now having trouble buying it locally, since my previous source no longer handles this product B0007LVW22:absolutely_thrilled!:mrs.c B0007LVW22 Yamaha YSP-1 Digital Sound Projector: Electronics electronics 29 of 31 5.0 Absolutely Thrilled! December 5, 2005 mrs.c Columbus, OH We purchased the YSP-1 in August as a companion to our Hitachi Ultravision wall-mounted television. What a fabulous piece of audio equipment! When we began searching for a replacement for our Infiniti surround system, my husband and I had different concerns. He is an audiophile that demands wide range digital sound with full depth of field and I was ready for aestethic simplicity (no speakers throughout the room and wires everywhere). When we found the YSP-1 we thought it was too good to be true. One speaker instead of five? Wall-mounted? Doesn't take up any floor space? We visited two Yamaha dealers to see it for ourselves. One had the YSP-1 set up in a room environment. The other, on the salesroom floor. In both set-ups it performed consistantly. In both demonstrations however, my husband felt the low-end sound could use enhancement. So, we made the purchase and opted to use the YSP-1 with our existing subwoofer. Installation was fairly simple, provided you have the necessary tools. The most important, and time-consuming part was leveling and centering the speaker under the television. Now that it is installed and in use in our home, I feel the low-end sound is quite adequate and prefer not to use the sub-woofer. My husband though, prefers the earth-shaking action sequences in movies to mimic their intended theatre quality sound. More than movies the sound quality you get when listening to CDs is absolutely stunning. Overall, we both got what we wanted. Expert sound designation and sleek, minimalistic styling (with the added bonus of more floor and wall space). B000BB80TQ:you_bought_the_ipod_basically_for_the_looks.__buy_this_for_the_same_reason:ganesh_kumar_eswaran_"ganesh_kumar" B000BB80TQ Apple MA072G/A Dock for iPod Nano 1st Generation: Electronics electronics 3 of 6 5.0 you bought the IPOD basically for the looks. buy this for the same reason March 18, 2006 Ganesh Kumar Eswaran "Ganesh Kumar" Lansdale, PA, USA You bought the IPOD Nano basically for its looks. Buy this for the same reason. Its so cute and fits your Nano exactly as you wish. I bought an item from another company and though it was cheaper, it looked dirty on my computer table. This one has the "Apple" look B000BYQDM4:perfect_headphones_for_urban_dwellers_who_use_mass_transit:r._feld B000BYQDM4 iRhythms A-9800 Passive Noise Reducing Ear Bud Headphones: Electronics electronics 3 of 3 4.0 perfect headphones for urban dwellers who use mass transit July 3, 2006 R. Feld New York, NY United States I chose these by reading other reviews on Amazon. I am pleased with them and recommend them. Good sound, light weight. The best feature is that they do NOT leak sound yet you can still hear loud noises around you. This is perfect for an ipod-using NYC subway rider. Don't want to annoy others by leaking sound, but you have to be able to hear if there is exterior noise, at least enough to know to turn down the sound and find out what's going on. Only con - Once you lose or wear out the removable spongy pieces I'm not sure where you can get replacements B000BYQDM4:i_love_them:daycare_lady B000BYQDM4 iRhythms A-9800 Passive Noise Reducing Ear Bud Headphones: Electronics electronics 3 of 3 5.0 I love them July 3, 2006 daycare lady These ear buds are great for people with small ears. I've tried several and these are by far the best. It comes with 3 sizes of buds and the smallest work best for me B000F8GX5I:great_product_for_a_fair_price:b._manchester_"electronics_expert" B000F8GX5I Panasonic KX-TG5653B 5.8 GHz FHSS GigaRange Digital Cordless Answering System with Three Handsets: Electronics electronics 5.0 Great product for a fair price November 5, 2006 B. Manchester "electronics expert" Canton, NY United States This is a terrific phone. It has a ton of great features and the three handsets is very convenient. This is the only phone that I use now. I only keep one analog phone for power outages. If you're looking to clean up a little bit of phone clutter this is a great way to do it B000F8GX5I:great_phone_system_at_a_great_price!:b._rojas_"abro" B000F8GX5I Panasonic KX-TG5653B 5.8 GHz FHSS GigaRange Digital Cordless Answering System with Three Handsets: Electronics electronics 1 of 1 5.0 Great phone system at a great price! September 27, 2006 B. Rojas "abro" Royersford, PA United States We are very satisfied with our purchase. This phone system is great and very easy to use. Super clarity, volume, etc. Also, super fast shipping from Amazon. I chose Super Saver shipping and it arrived in less than 24 hours B0001OTBUK:great_cam,_and_its_not_expensive!:matthew_berry B0001OTBUK Labtec WebCam Pro: Electronics electronics 0 of 1 5.0 Great Cam, and its not expensive! September 27, 2006 Matthew Berry Maryland USA I saw the other reviews and was hoping I would have the same experience as the happy reviewers. Well, I got the cam and it was easy to install like they say. It just takes a little tinkering, with the PC options before you use it. With the mic and software it comes with, you get a lot for your money! If I bought a cam in the store, I would have been mad to lose out on this PC camera. It is SWEET B0000CEPE8:no_speed_boost_but_great_range_boost.:hyeonsuh_koo_"koo" B0000CEPE8 D-Link DWL-G120 Wireless USB Adapter, 802.11g, 54Mbps: Electronics electronics 2 of 4 4.0 no speed boost but great range boost. March 13, 2006 hyeonsuh koo "koo" seoul,korea ok mimo is becomming popular ....i dont give a darn. my home net work relies on a cable modem(moto4200)+wlanRouter my house is 2 story high and it's made of steelbar re-enforced concrete... with brick wall here and there... since the internet performenc is lower then 9mbits max... all i wanted was penatration through the concrete floor.. i 'v used pen type? usb adapters and so on ...but they were always short in range ...but g120 was another demention ... allover the house allrange !when i put this close to the wall adjacent to the negihbor's house, i was able to update my neighbor's router firmware (i've done it twice already) speed is not the main concern in my case . but you guys should know about it's response speed . its a little slower then pcmcia types even if i use usb2.0 connection but i think thats because my lap top is running xp-pro on celeron 800/256mbram. as long as you have a good pc (faster then mine~!) you wont have any problems. it's not that hot dont worry! i wont give this product 5stars because it's not small enough. who needs mimo. ! ps: use the zero config not the stupid utility B00004Z0C7:worked_as_expected:william_cameron_"crazywilie" B00004Z0C7 Maxell HP20 Headphone Extension Cord with Adapters: Electronics electronics 5.0 Worked as expected November 9, 2006 William Cameron "crazywilie" Koalarado, CO This extension cord did what it was supposed to do and did it just fine. No problems whatsoever B000068CNU:price_went_up:louis B000068CNU Belkin Components F9M923-08 9-Outlet Maximum SurgeMaster: Electronics electronics 2 of 2 4.0 Price went up June 27, 2006 Louis New York, New York United States As soon as I bought this from Amazon, the price went up from $21 to $ 37. I was going to buy another one, but the price is too high. Overall, this is a great product it has everything you need. However, I wouldn't buy it at the current price, I'm waiting for the price to go down before I buy another one B0000899WI:excellent_memory:carlos_moya B0000899WI Kingston 512MB PC2700 CL2.5 SODIMM UNB ( KVR333X64SC25/512 ): Electronics electronics 1 of 1 5.0 excellent memory January 29, 2006 Carlos Moya work fine with my hp pavillion zd7050. increase the performance of my laptop B00029U0YK:the_best_option_for_the_'best'_fit_......:evitzee B00029U0YK Shure Universal Fit 20 Pack Replacement Foams for E1c, E3c and E5c Earphones: Electronics electronics 5.0 The best option for the 'best' fit ...... November 13, 2006 Evitzee Fredericksburg, TX I tried all the rubber vinyl plugs that came with the E3C's, but they all had the shortcoming of not effectively sealing the ear canal making bass very poor, and they were uncomfortable. The yellow foam plugs are easy to use and work just like the ear foams many people use in industrial applications. They effectively seal the ear canal and are very comfortable. Although they seem a bit expensive I've found that once they get dirty you can use water and a bit of dish detergent to clean them. Just soak, squeeze, rinse and let them air dry and they are as good as new. You can do this three or four times, then just toss them away. Highly recommended b000062vuo:incredible_sound,_unbeatable_value:greg_robertson b000062vuo Klipsch ProMedia 2.1 THX Certified Computer 3-Speaker System (Black): Electronics electronics 3 of 4 5.0 Incredible Sound, Unbeatable Value October 30, 2006 Greg Robertson West Quincy, MA Once THE speaker of choice for every hard rockin' audiophile with a big enough garage, Klipsch fell off the landscape for a while after being sold to a corporate conglomerate that didn't know the real value of what they'd bought. But after another buyout by a small group of genuine audiophiles, Klipsch is back on top, from a sound quality standpoint -- and it shows in the ProMedia 2.1 THX. I have my trio connected to a new Mac Pro desktop unit and the sound is absolutely magical. Yes, there are more complex set-ups, with 5 or 7 speakers spread out across the room, but if you just want the magic without the madness, the Klipsch ProMedia 2.1 THX is an incredible (and very affordable) solution that's quick and easy to configure in about 5 minutes. Of course, there are other 3-speaker desktop systems by makers like Logitech, Cyber Acoustics, and Intec, but here's the difference: Klipsch is a true speaker company that connects great speakers to your computer, while those others are computer peripherals companies that one day decided to make speakers. NOT the same thing. The only brands that are true competitors to Klipsch in this area are Bose, Harman Kardon, JBL, and Altec Lansing. I find that the Altec Lansing and JBL 3-speaker sets both sound nasal and "tinny" on the high end, while the Bose and Harman Kardon sets sound great, but are more expensive. So, after a good look (and listen) around, I went with Klipsch. In any case, this is an incredible sound set-up for your computer-based music player and should not be overlooked. Enjoy B00003CWG3:fantastic_splitter:francesco_esposito_"francesco__esposito" B00003CWG3 Monster Cable TGHZ-3RF 3-Way Low-Loss RF Splitter for TV and Satellite, 2 GHz: Electronics electronics 5 of 5 5.0 Fantastic Splitter July 9, 2005 Francesco Esposito "Francesco Esposito" Detroit, Michigan This splitter was set-up as part of a configuration that splits one line from the street into three and then into sixteen ports and a line to the cable modem for a fraternity house. I used this brand of splitters and a moterola amplifier all the way through, and the results were amazing. The picture quality is crystal clear, even when almost all of the ports are in use, and the internet is blazing fast. Compared to the set-up we used to have, with some cheap splitters and a radio shack amplifier, these pieces are WELL WORTH THE SMALL EXTRA COST B00003CWE5:buy_these_cables!: B00003CWE5 Monster Cable MV2CV-1M Monster Video 2 Component Video Cable (1 Meter): Electronics electronics 4 of 12 5.0 Buy these cables! March 15, 2001 These cables are super with my new DVD player. There is absolutely no interference from my other home theater equipment. The picture is soo clear, and vivid. The cables themselves are really made well, they could hold up 100 pounds of weight no doubt. If you get these Monster cables you won't be sorry B0002WPSCG:great_system:j._king B0002WPSCG Logitech X-530 5.1 5-PieceSystem with Subwoofer Speaker: Electronics electronics 5.0 Great System November 4, 2006 J. King I previously had a 2.1 sound system for my computer, that were pretty good a few years ago when I bought them. When I decided to replace them with these I was rather happy with my choice. The sound is extremely clear and crisp, whether it be music or games, and I am very pleased with them. The only downside to them is how many extra cords there are behind my desk, but you have to expect that with a 5.1 sound system B0001GZ87I:great_value_for_money:integral_yogi_"auro" B0001GZ87I Targus CVR400 15 CityLite Notebook Case: Electronics electronics 5.0 Great value for money November 9, 2006 Integral Yogi "Auro" State College, PA USA I am glad I bought this backpack. It exceeded all my expectations. I strongly recommend this one B00085ESA0:i_think_they_are_great:m._baggesen B00085ESA0 Philips HN 110 Folding Noise Canceling Headphones: Electronics electronics 4.0 I think they are great November 9, 2006 M. Baggesen Dallas, Texas These are really great. Super noise cancelling. Affordable. They cover my ears completely without problem. At first, the headset was a bit tight, so I stretched the top headband upwards a little to relax or slightly loosen it. No more problem, while still having a snug fit. These headphones also fold up very compact, have two plug adapters and a nice durable sack for storage. If you buy these, just make sure they fit well for your ears. If so, these are great; if not, try another type. Like all things that touch the body, it is best to try at a local store, before you buy it. This is the lowest price I have seen for this product. B0009I6K7K:i'm_a_satisfied_customer.:linda_mayfield-hayes_"slendah" B0009I6K7K Altec Lansing inMotion IM3C Portable Audio System for iPod and iPod Photo: Electronics electronics 4.0 I'm a satisfied customer. November 9, 2006 Linda Mayfield-Hayes "Slendah" New Castle, DE I am happy with my purchase. I only bought it because I don't like the idea of going deaf listening to loud music through earphones. I would not use this product to entertain at a party, but it serves my needs B00009KAPW:life_saver:cairo_commuter B00009KAPW Belkin F8E464 Backup Battery Pack for iPod: Electronics electronics 5.0 life saver November 22, 2006 Cairo commuter Connecticut, USA On a recent trip, I was 23 hours in transit and couldn't have made it without this little device. It powered my movies and TV shows for at least 12 hours or so without a flicker. I was worried that the four AA batteries would make it heavy to carry but it didn't matter when the device was sitting on my tray table. Besides, it was comforting to know that AA batteries are ubiquitous throughout the world. By the way, I substituted the original batteries with Duracells on the advice of previous reviewers B00009KAPW:good:sweetiepie54 B00009KAPW Belkin F8E464 Backup Battery Pack for iPod: Electronics electronics 4.0 Good October 2, 2006 SweetiePie54 Boulder, Co, USA I bought this battery pack for a 10 day trip to Italy and I am very happy with it. I never had to change my batteries once and I listened to it all the time. Reading other people's reviews I threw out the batteries it came with and used different ones and it worked great. The only complaint I have is the suction cups aren't that great. Several times my Ipod came off the suction cups and being on a plane with minimal room and people sitting next to me trying to get my ipod off the floor is not fun. Overall, I recommend this product. It is a little bulky, but if you're someone like me who cannot live without music, it's a great product to have if you aren't going to be able to charge your Ipod B000E5CZ4U:performs_just_fine:andrew_to_"amto" B000E5CZ4U Kensington 33350 Entertainment Dock 500 with Charger for iPod: Electronics electronics 2 of 2 4.0 Performs just fine August 24, 2006 Andrew To "amto" Boston I have seen many reviews about problem with the volume control. I experienced the same thing until I realized that I mistaken the up & down buttons with the + & - buttons. The volume works just fine on my wife's old Sony receiver. The remote is quite nice and it does everything the iPod control could do. As stated in others' reviews, you can't read the screen from a distance, thus rendering the ability to scroll through the menu with the remote a bit pointless. However, it would be worse if the remote couldn't scroll through menus. It is compatible with the latest video iPod. I have the 60 gig iPod but I do notice a slight hiss coming out from the speakers. I listen to classical music and the hiss bothers me. I bought this for my wife and she is not as picky as I am in terms of sound quality. Then again, I don't expect high fidelity quality from this small setup. Since I have this little gadget for my wife, I bought the Squeezebox for myself from Slim Devices to stream music which sounds a lot better. In summary, this dock does a good job and the design is not bad. The construction is solid and I like the light on the remote. If you are looking for great sound quality, I haven't encountered any dock that is better than this one, so this might be your best bet. The Apple A/V cables work fine as well but it is more expensive than the dock and I see more value in this dock B0002SAF3C:awesome!!:shobi_lawalata_"absolution81" B0002SAF3C Logitech MediaPlay Cordless Mouse- Blue: Electronics electronics 2 of 2 5.0 awesome!! June 9, 2006 Shobi Lawalata "absolution81" Berkeley, CA I'm really happy with this purchase. I was worried that it would not work with Rhapsody (which is the media player I use the most), but it proved to work well with it. In fact, it works with all the media player I've thrown at it, including Windows Media Player, MediaLife, RealPlayer, iTunes, Rhapsody, DivX Player, WinDVD, and PowerDVD. All the buttons are functional (and I worship functionality - hence the 5 stars), although Firefox users have to deal with extra configuration steps to make the back and forward button work. No biggies, though, since setting up is really easy. Basically all you have to do is open the SetPoint software that was installed with the driver, point to the intended buttons that you want to program, and assign a corresponding keystroke to it. In this case, it's Alt+Right for forward button and Alt+Left for back button. Click "Apply" and you're good to go a-browsin'!! Battery life so far is really good - it's been going on the same set of Duracell AA batteries since I got it 3 months ago, and still going strong. The RF range is really good, although admittedly my room isn't big enough to really put its range to the test. Dorm-dweller users should be happy with the range, though. You could just lie on your bed and only lift one finger to control your music or movie. This mouse is also great looking; not cheap-plasticky but actually sharp and slick. It does feel a bit odd to the grip when using as a remote control, but as a mouse it's really sturdy and ergonomic. I can't comment on installation since it's been a while since I first used it, but I guess no impression is good impression - if it was troublesome I'm sure I'd remember. I'd second the other reviewer's gripe about how most cordless keyboards come with a mouse, and this fantastic mouse doesn't come with a cordless keyboard... But it's a great buy, all in all B00004VXO5:increasing_tech._data:ray_hatton B00004VXO5 Uniden Washington 40 Channel CB AM/SSB Base Station: Electronics electronics 7 of 12 4.0 increasing tech. data January 31, 2001 Ray Hatton Tracy,Mn It would seem, even to a non-tech, that someone has switched your Uniden mobile/base tech. data around. Secondly, terms such as "standard" mean less than trustworthy when applied to sensitivity and selectivity. Please don't feel I berate these 2 fine products.However as I am a com/tech. I would like the actual bench test measurements for an informed recom/purchases.Also I would like to know If Cobra 1000 or 2000 series are availible as they still have the best selectivity and sensitivity that I have had on my bench yet.Thank Yo B00005B8SD:powerful_for_the_price:"saellys" B00005B8SD Jensen JB7 Over-the-Earbuds: Electronics electronics 13 of 14 4.0 Powerful for the price August 29, 2002 "saellys" Springfield, MO United States Until an accident caused one bud to stop emitting sound, these were my favorite pair of earphones. They were comfortable (I often left them in when I went to sleep), affordable, lightweight, durable, and had good sound quality. I used them with my Sony CFD-V5 boombox, my Oritron OP5034 portable CD player, and my RCA RP2410 MP3-CD player. On all three, bass and detail was great, and there was no distortion at a higher volume. All in all, these earphones were a great value; the only possible downside is a bit of fuzziness in the sound, which I got used to rather quickly and began to prefer over my other earphones (it lent a bit of warmth to the music). I plan to buy another pair in the near future, and I highly recommend that you do so as well B00000J0HX:great_service,_cartridge_like_a_new_one:les_barrett B00000J0HX HP No. 45 Black Inkjet Print Cartridge (51645A): Electronics electronics 1 of 1 5.0 Great Service, Cartridge Like a New One June 26, 2003 Les Barrett Leavenworth, ks United States Ordering was fast and easy. Could not detect any inferiority in the cartridges and will order them again B0002ILKWM:apple_30"_cinema_display_and_pny_6600gt:kustard_king B0002ILKWM Apple Cinema 30" HD Flat-Panel Display: Electronics electronics 4 of 4 4.0 Apple 30" Cinema Display and PNY 6600GT January 31, 2006 Kustard King New York City I received it today, and it's a monster. If you've seen one in a store, it looks twice as big on your desk. Until a few hours ago, I was running two 20" aluminum cinema displays on a PNY 6600GT. After doing online research about using the 30" display under Windows XP, I found that the "functional" cheap solution being used is in fact the PNY 6600GT (Verto 128MB DDR3 with two DVI connectors). Considering that the other two most noted solutions, QuadroFX 4000 AGP or Parhelia DL256 PCI, are going for $600+ on ebay, I was willing to give my old beater a try. Besides, I didn't feel like buying another AGP card with PCIE taking over the world, or sacrificing the only PCI slot in my Shuttle XPC (SB75G2). To my great relief, the monitor worked on the card right away, even showing me the POST and Windows start-up screen (it did for the 20" displays, too). But to my absolute delight, the card is actually running both the 30" and a 20" in 32-bit color. The 20" looks absurdly small next to the 30", like I didn't water it enough or something. The 30" is enormous enough that I think it might be better were it curved! Maybe I'm just sitting too close. The only problem with the 6600GT is that the DVI jacks are so near each other that I had to take the plastic housing off of the 20" plug to fit it below the 30". I'm not a gamer, so I can't say whether the card performs well for that. It feels as zippy as with the 20" on regular windowing tasks. I use Eclipse, Flash, Photoshop, etc., but no video editing or 3D stuff. The screen had a slight warm cast that I didn't like. Nvidia's control panel let me adjust it manually, and now my 30" and 20" look almost identical. My biggest fear was of course dead pixels. By the good grace of lucky ducks, this is the third panel I've gotten from Apple with no dead pixels. Brightness is uniform but for a very very subtle drop in the far lower left and right edges. It's not apparent unless you put white there and actively look for it. In any case, I bought it to get more programming panels on the screen at once, and it does a fine job at that. I'm using the 20" for browsing and, alas, a few panels that STILL don't fit. Apple, where's 3840 x 2400?? I strip one star cuz it's crazy expensive. B0002ILKWM:apple_cinema_30"_hd_flat-panel_display:victor_bono B0002ILKWM Apple Cinema 30" HD Flat-Panel Display: Electronics electronics 19 of 19 5.0 Apple Cinema 30" HD Flat-Panel Display January 12, 2006 Victor Bono This screen is great. Upgraded from a 23" and the increase in realestate is awesome. You can play games with crystal clarity; have so many pages up and read them clearly. You will need a graphics card that supports Dual-link DVI, not a card that says dual DVI. I installed the GeForce 7800 GT on my PC and it works flawlessly! The Quadro cards are great, but big $$$. The 7800GT can be had for under $300! Here's a list of cards for PC and Apple: NVIDIA Geforce 6800Ultra DDL AGP for Powermac G5 NVIDIA Geforce 6800GT DDL AGP for Powermac G5 NVIDIA Geforce 6600 PCI Express for Powermac G5(PCI Express) NVIDIA Geforce 7800GT PCI Express for Powermac G5(PCI Express) NVIDIA QuadroFX 4500 PCI Express for Powermac G5(PCI Express) For the PC Windows platform, the following graphic cards support the Apple 30" Cinema Display: NVIDIA QuadroFX 2000 NVIDIA QuadroFX 3000 NVIDIA QuadroFX 3400 NVIDIA QuadroFX 3450 NVIDIA QuadroFX 4000 NVIDIA QuadroFX 4400 NVIDIA QuadroFX 4500 NVIDIA Geforce 7800GT NVIDIA Geforce 7800GTX NVIDIA Geforce 7800GTX 512 B00009AKLI:just_what_the_doctor_ordered:r._dewitt_"cowboy" B00009AKLI Targus DVD301 9 Sport Portable DVD Player Case: Electronics electronics 5.0 Just what the doctor ordered November 10, 2006 R. DeWitt "Cowboy" Cuero, Tx USA Outstanding item. Plenty of room to carry dvds. Enough padding to protect the player, but not too bulky B00012O7NS:good_for_madrid:richard_r._harman B00012O7NS Garmin MapSource European City Navigator v8: Electronics electronics 5 of 5 4.0 Good for Madrid June 19, 2006 Richard R. Harman Elkridge, MD United States I ordered v8 as soon as it was advertised by Garmin but they shipped v7 instead. Six weeks later I got the v8 update dvd. My wife and kids had to make due with v7 while in Madrid. She was pleased with the accuracy and said it enabled her to travel around with confidence. However, she noted that Madrid was undergoing quite a bit of major road construction and she got stuck in multiple traffic jams on the major highways. In the end, she would veer away from the major roads and let the unit re-calculate her route. B00004Z0C8:good_product_within_its_limits:john_hunter B00004Z0C8 Garmin MapSource CD ROM (USA TOPO): Electronics electronics 22 of 22 4.0 Good product within its limits August 24, 2006 John Hunter Cleveland, TN If you understand this product's limits before you buy it, you'll be happy. It shows topographical contours, rivers and most streams for the entire United States. In addition to that, it shows roads that were in existance 10-20 years ago. These major roads are also named. The limit is that newer roads don't show up. It also doesn't support auto-routing, even if your GPS does. Garmin sells other products that are tailored for road navigation but you have to do some independant research or logical deduction to figure out that this package isn't suited for it. The product support could be better. Neither the manual nor web site tell you how to load all 3 CDs on your computer so you don't have to swap CDs when transitioning between zones. The company's web site doesn't give a good explanation of what the software can and can't do. You'll be disappointed if your expectations aren't grounded in reality. Garmin could help alleviate this problem by making this information readily available B00005MNSS:very_nice_monitor,_good_price_too: B00005MNSS Envision EN-7100E/SI 17" LCD High-Resolution Color Display: Electronics electronics 5.0 Very nice monitor, good price too December 19, 2003 I am very pleased with my purchase of the Envision EN-7100 monitor. It arrived in perfect condition, no dead pixels. I resisted spending the money on a new monitor for a long time, but now I'm glad I made the switch to LCD. The color and clarity is wonderful. Most of all, I love having all this extra space on my desk. For the money, this is a great monitor B00003CWET:monster_makes_the_difference!:unionmemberhhh@yahoo.com B00003CWET Monster Cable MVSV2-1M High-Resolution S-Video Cable (1 Meter): Electronics electronics 17 of 19 5.0 Monster makes the difference! July 25, 2000 unionmemberhhh@yahoo.com Midwestern USA I just recently bought a Sony DVP-S560D model DVD player to replace my older, more out of date player. I hooked it up, and to my surprise, it wasn't any better than my old player as far as quality. Then I purchased S-Video cables from Monster Video and now the colors are more vibrant, the picture is in higher-res, and I can see every little detail on the screen. The picture quality that these S-Video cables produce are surpassed only by component video cables, which cost many times more the price. If you are considering buying these cables then just consider that for the price of only one DVD, you can get better performance and picture quality B0007KXFH8:worth_the_money:carlos_r._insuaste_"carlos" B0007KXFH8 Garmin GPS10 Bluetooth Enabled Wireless GPS with Mount and Software: Electronics electronics 3 of 3 5.0 Worth The money August 3, 2006 Carlos R. Insuaste "Carlos" NJ I wanted to thank amazon for their quick response to my first order not arriving. within a week they sent me another. I have been using it everyday, and have not gotton lost. I install wood flooring in NJ PA NY, works like a charm. I use it with my palm treo 700P. B00004SSS0:good_ink_but:computer_illiterate_in_chicago B00004SSS0 HP No. 78 Tri-Color Inkjet Print Cartridge (C6578DN): Electronics electronics 4.0 Good Ink But December 31, 2005 Computer illiterate in Chicago Chicago For the most part, I do find HP ink to be the best. However, every now and then a new ink cartridge is bad. One of the colors doesn't print for some reason. My opinion is that these ink cartridges are just too expensive to be getting any bad ones B000CR3RJW:perfect_for_all_your_mp3s!!!:ben_a. B000CR3RJW Multimedia Card, Mobile 1GB, Dual: Electronics electronics 1 of 1 5.0 Perfect for all your mp3s!!! October 23, 2006 Ben A. West Lafayette, IN USA I used this card on my Nokia N70 for storing mp3 files. Granted I can't fit my entire music collection on it, but if I wanted to, I'd buy an iPod. This is perfect for listening to my favourite songs on the go, as well as taking pictures and video clips! Highly recommended B00012F7HS:excellent_product:raja_sekhar_matukumalli_"simple" B00012F7HS Sony Power Charger with 4 Ni-MH AA Batteries: Electronics electronics 5.0 Excellent Product November 12, 2006 Raja Sekhar Matukumalli "Simple" US I purchased this product to use with my Camera. The charging lasts very good time. Would recommend this product to others. Good work Amazon B00004Y2VS:good_product:brett_godfrey_"phoenix_risen" B00004Y2VS Monster Cable XPMS-50 Monster XP Clear Jacket (Compact Speaker Cable 50-Foot Piece): Electronics electronics 5.0 Good product April 14, 2006 Brett Godfrey "Phoenix Risen" Westminster, Colorado I love sound systems. So when I got my new reciever (Sony STR-DE898/B) I hooked up the new speaker wires with the THX Certified Gold Plated speaker connectors and wow what a difference. I miscalculated how much wire I needed so my rear right speaker does not have the new speaker wire, I can hear a light and day difference in sound quality. Needless to say I'm ordering more to complete the job. The monster fiber optic cable is a must as well. I can hear sounds that I normally couldn't on my old system. I like testing sound with: The Hulk (the scene were he tears up the tanks), Saving Private Ryan (taking the beach), and Open Range (Gunfight at the end of the movie). In all these movies there are small sounds that you can distinctly hear now that I could not before the new wire and connectors. Excellent product B000IF4TPY:more_bang_for_your_buck.:xeticus B000IF4TPY Creative Zen Vision W 30 GB Widescreen Multimedia Player (Black): Electronics electronics 2 of 3 5.0 More bang for your buck. November 4, 2006 Xeticus fort lauderdale, fl This is my first mp3 player so I researched it carefully before making my decision. The gorgeous screen, the wide number of codecs it supports and the 30gb hard drive were all selling points. I'm so glad I bought it. Videos look great on the screen. Some need to be converted over which is a slow process but in general I love it. The built in speaker doesn't do it justice. Even on the included earbuds the sounds quality is amazing. Making playlists with the creative software is very easy. My biggest problem is the lag of accessories for it. No case, no screen protectors out for it. I'd love to see a docking station that lets you record to it as a dvr the way the archos players do. But for the money it looks to me to be a far superior player to the Ipod or the Zune. B00005B8M3:wrong_adapter_for_garmin_330c:m._lamonica_"meekomagic" B00005B8M3 Garmin 010-10085-00 Cigarette Lighter Adapter: Electronics electronics 4 of 4 5.0 Wrong adapter for Garmin 330c November 10, 2006 M. LAMONICA "meekomagic" Central Florida This adapter can not be used with the Garmin 330 B000EEDXJM:nice_armband:s._tobison B000EEDXJM iSnug iPod Armband: Electronics electronics 1 of 1 5.0 Nice Armband July 31, 2006 S. Tobison A little bouncy while running, but a convenient product. Fits perfectly around all of my MP3 players (large and small) B000050FZP:excellent_basic_phone:old_lady B000050FZP AT&T 210 Trimline Corded Phone (White): Electronics electronics 1 of 1 4.0 Excellent basic phone August 23, 2006 Old lady New Jersey USA This is a great phone. Memory is easy to progam. The phone has 3 memory keys for emergenies and 9 additional memory keys for personal numbers. It can be used on a desk or hung on the wall. The only thing I don't like about the phone is the buttons on the handset. However, I knew about this feature before purchasing the phone. I would recommend this phone to anyone who is looking for a good basic phone B00067IDLA:excellent_portable_mouse:aglaiapoo B00067IDLA Anycom Inc CC3141 Anycom BTM-100 Bluetooth Mobile Mouse with usb Charge: Electronics electronics 1 of 1 5.0 Excellent portable mouse April 18, 2006 aglaiapoo Greece/Japan/USA depending I did a lot of research on Amazon.com before I finally decided on this mouse. I wanted to replace my (extremely) small Kensington USB mouse with a retractable cable. At home, I use a Wacom tablet. Next month I am traveling abroad, so I wanted a slightly bigger mouse that can handle more frequent use than the Kensington. Wireless was key for portability. I also wanted something rechargeable, and I didn't want the USB adapter sticking out. I received it today, and I'm on my first charge. So no comments on batteries (which can be replaced with other AAA NiMH for optimal performance if desired anyway). - I have large but skinny hands. Mouse is small, but its long length helps in terms of where to place your fingers. Of course convenience is not comparable to a full-size mouse, but if you want portability, this is about the right size. - I have a PowerBook that runs Tiger (10.4). Excellent Bluetooth connection. Also very good response, very little delay. Only reservation is for the scroll wheel, which requires subtle pressure for accurate scrolling - this is ever so slightly uncomfortable if you have large hands, because the mouse is flat and your hand is adjusted over the mouse so that it is a bit hard to apply adequate vertical pressure on the scroll wheel from that position. It is hard to explain, but not a big issue for me. - USB charger works well. The added size of the USB adapter helps with comfortability (still flat, but becomes an otherwise full-sized mouse) - despite the fact that the cable attaches to the bottom of the mouse. - As mentioned by others, installing the batteries is a challenge. Pull the notch on the bottom of the mouse as you slide the top (part with the Anycom label) away from the clickers. Once I figured it out, not so hard. Overall, I don't seek perfection anyway, so this mouse does the job adequately for me. I haven't tried any other Bluetooth mouse before, so I'm more or less in awe B00006B9QF:sandisk_is_reliable:m._donelson_"bigsleep39" B00006B9QF SanDisk 512 MB CompactFlash Card, SDCFB-512-A10 (Retail Package): Electronics electronics 1 of 1 4.0 SanDisk Is Reliable July 9, 2006 M. Donelson "bigsleep39" Ann Arbor, MI United States This card has been working great for me so far after over a month of heavy use. 512 MB is more than enough space for anyone with a 5 MB or less camera, assuming you transfer photos off your camera fairly regularly and are not shooting hundreds of photos at a time. With the 1200x1600p setting I use on my camera most often, this card holds over 400 photos, and it will hold even more for those using a more email-friendly setting. Do the math to figure out if 512 is the number for you, but I've had no problems with SanDisk products B000A5TAT2:very_easy_to_use_and_quick_to_acquire_satellites:t._milligan B000A5TAT2 Garmin Streetpilot C340 Portable GPS Navigation System, Traffic Ready: Electronics electronics 22 of 22 5.0 Very easy to use and quick to acquire satellites November 16, 2006 T. Milligan California I have to admit, I'm a GPS junkie. I've had a variety of GPS units over the past decade and currently own 3 - the c340 being my latest acquisition for use solely when driving. I am greatly impressed with this unit. It was fast to get going right out of the box and after the initial satellite acquisition and almanac download (for those who are interested, when a GPS unit is turned off and moved a significant distance, say 300+ miles, from where it last thought it was, it needs to recalibrate itself by downloading the current almanac of satellite positions from the GPS satellites. This can take a few minutes.) In any case, after the initial automatic recalibration, the unit acquired satellites quickly whenever I turned it on. The user interface is very easy to use. I've used Hertz NeverLost systems for years and have always thought they had a good interface. I think Garmin's is better. One highly useful feature is the ability not just to search for Points of Interest (POI), but to have the unit search for those points of interest that are along the route you are currently navigating. This allows you to identify, say, hotels along your route while you are driving and then, using the telephone info provided by the unit, to call the hotels up and see if you can negotiate a lower rate before you arrive - "let your fingers do the walking..." If you don't tell the unit where to look, though, it can take quite a while to search for a Point of Interest. I didn't know which city to specify and I did a search for "Eagle Rock Rec" (I was too lazy to spell out "Eagle Rock Recreation Center" which turned out to be about 175 miles away) and the unit chugged away for several minutes but eventually came back with the right entry for me to navigate to. I later realized that even though I didn't know the exact city the destination was in, I did know a city that was near the desired destination. When I specified that information, the c340 took only a few seconds to find the right location. The advanced user can also create your own POI lists complete with custom icons and load those into the c340. I have done this for all In-N-Out Burger and Krispy Kreme locations. The advantage to having your own custom POIs even though these places are in the built-in POI list is that the custom POIs are visible on the c340 map screen at certain zoom levels. If you are a Geocacher, you can do the same with geocaches, but you'll still need your handheld unit to find the cache. The newer (and more expensive) c5xx units evidently have the Sirf circuitry in them which is more sensitive, allowing signal acquisition indoors, but I found the sensitivity of the c340 to be fine - especially since I have limited my indoor driving lately :-). I haven't tried the c340 under a thick tree canopy with cloud cover yet, so I might change my tune. The comparable c5xx unit at this price point, the c530, lacks the c340's text-to-speech capabilities (this prevents the c530 from announcing street names). Since I already have a Garmin handheld GPS unit as well as Garmin's MapSource Topo mapping software, I used the unlock code that came with the c340 to unlock my MapSource maps for the unit. I then loaded the topo maps for the entire Western US onto an SD card (between 300-500 MB) and plugged it into the c340 to see what would happen. It worked! So now I have the c340's excellent built-in maps and POIs for on-road trips *and* Topo Maps available to me for off-road adventures. One thing you should do if you are in the US is enable the unit's WAAS capability (the default is for WAAS to be disabled). Enabling this capability increases the accuracy of the unit when certain satellites are in range. Also, since this unit has a touch-screen, fingerprints on the screen are inevitable. You should *never* use an ammonia-based product (like most window cleaners) to clean electronic screens - it will cause them to fog. Instead, use those little antiseptic alcohol towelettes. They are cheap and if you don't use them for cleaning your touch-screen they might come in handy for first-aid. I give this unit a highly positive rating. I like it B00005RZOR:hp_photo_paper_/_glossy:cherie_wetmiller B00005RZOR HP Premium Photo Paper, Glossy (C6979A, 8.5x11, 50 Sheets): Electronics electronics 7 of 7 5.0 Hp Photo paper / glossy June 10, 2002 Cherie Wetmiller West Sand Lake, New York United States This paper works excellent in the hp series printers. I have tryed many other makes of Photo paper and they just don't cut it. Some other makes don't dry in a timely manner, others have a dull finish them, some have a red tone. This HP Photo paper allows you to print store developed quality photos from your hp printer. You get what you pay for... This product is worth the money.... B00005RZP3:great_for_power,_not_compatibility:"skphoton" B00005RZP3 Socket Communications Low Power Wireless LAN CF Card: Electronics electronics 9 of 9 4.0 Great for power, not compatibility June 25, 2003 "skphoton" Atlanta, GA I've used this card for a while now and i'd say that i like it overall. the power usage is great. the drivers have been vastly improved and now you are able to scan for networks. Those of you who are interested in wardriving should look elsewhere. If you want to use netstumbler or pocketwarrior in windows or kismet and airsnort in linux, either go for the linksys wcf12 (prism based) or lucent orinoco based pcmcia card. if you're looking to run just 802.11b and check email, stream music, browse the web, etc, this card will be perfect plus it'll save you some battery power B00006I5FR:memory_card_for_a_college_student:mmaclover B00006I5FR Lexar Media 512 MB Secure Digital Memory Card: Electronics electronics 5.0 Memory Card for a college student July 3, 2006 MMaclover Georgia I am a typical college student, I am not a photgrapher to be or anything, so this digital card was perfect for me. I get about 330 pictures on my second best setting and have never come close to taking that many pictures. I believe this card is great for anyone who is not obessed with taking pictures, or to someone who loads them on quickly. : B000FFEP92:excellent!:flopi B000FFEP92 Kingston 2GB U3 DataTraveler Smart USB 2.0 Flash Drive ( DTIU32TGB ): Electronics electronics 1 of 1 5.0 Excellent! November 9, 2006 Flopi Argentina Easy to use, nice (in appearance), very comfortable (lots of space) and at an excellent price! I highly reccomend it B0000899ZA:excelent_product_from_top_to_bottom:fernando_pecchio_"fepe" B0000899ZA Apple M8799LL/A AirPort Extreme Base Station with Modem and Antenna Port: Electronics electronics 5.0 Excelent Product from top to bottom November 6, 2006 Fernando Pecchio "Fepe" Caracas, Venezuela I recommend this product! is an excellent purchase option. Excellent product quality in performance and looks. No product out there in the market looks as good as this one B000095SBE:good_but_not_perfect:k._chen B000095SBE Sony DR-220DP Hands-Free Monaural PC Headset: Electronics electronics 4 of 4 4.0 Good but not perfect July 8, 2006 K. Chen Phily, PA The sound is fine, but the mic is not so good, too much background noise. The headset is quite "loose" but it's ok when you get used to it. B00009KO14:this_buds_for_you:s._lennon B00009KO14 Apple M9128G/A iPod Remote and Earbuds: Electronics electronics 1 of 2 5.0 This Buds for You March 21, 2006 S. Lennon NY These are the only earphones worth buying for your iPod. I tried to get some cheapies after I lost my originals, but they were horrible. These are a little expensicve, but so worth it. I don't use the pause/skip attachment thing though. It makes the cord too long B0009RKL62:very_dependable_-_error_free:j._gustek B0009RKL62 TDK Electronics DVD+R47FCB100 Single-Sided 16x DVD+R Spindle, 100 Discs: Electronics electronics 5.0 very dependable - error free November 9, 2006 J. Gustek I'm using them a lot.Never failed - keeping up to 16x speed B0009RKL62:great_value_excellent_service:p._benza B0009RKL62 TDK Electronics DVD+R47FCB100 Single-Sided 16x DVD+R Spindle, 100 Discs: Electronics electronics 1 of 3 5.0 Great value excellent service August 23, 2006 P. Benza Riverview, FL United States High quality disks. Never a bad burn. Fast delivery. Buy this from this selle B0007LZGF6:cute_and_easy_to_get_going:dorrie_wheeler_"author_of_be_my_sorority_sister,_founder_of_thabiz.com" B0007LZGF6 SanDisk SDMSG-1024 Pro Duo 1 GB Gaming Memory Stick: Electronics electronics 3 of 3 5.0 Cute and easy to get going August 31, 2006 Dorrie Wheeler "Author of Be My Sorority Sister, founder of Thabiz.com" Virginia Beach, Va United States I opened it, I put it in my PSP and that was it. I had plenty of space on the memory stick and I personally didn't have to do any special formatting I just popped it in and that was it. I did want to add, buy this online because in my comparison shopping it was much more expensive in brick and morter stores I visited B00029U13A:good_value:a._ku_"anonymous" B00029U13A Sony SCD-CE595 5-Disc CD/Super Audio CD Player: Electronics electronics 1 of 2 4.0 Good value August 24, 2006 A. Ku "anonymous" Atlanta, GA Easy to install and use but the remote does not have an on/off switch B00029U13A:cd_player_review:pamela_j._pauwels_"twinprincess" B00029U13A Sony SCD-CE595 5-Disc CD/Super Audio CD Player: Electronics electronics 1 of 4 4.0 Cd Player Review July 5, 2006 Pamela J. Pauwels "Twinprincess" Hobart, IN The cd player works well, just wish the random play would work for all of the cd's instead of only one B00006ANWH:tim:timothy_h._wright B00006ANWH KLH 525 II Platinum-II 125-Watt Deluxe Center Channel Speaker: Electronics electronics 0 of 5 4.0 Tim June 26, 2006 Timothy H. Wright The product is fine however when i ordered i added a gift card to the payment. The gift card was not used and the purchase was paid in full with my credit card. Is my gift card still valid B00006B7HB:a_great_porduct:w._humbert B00006B7HB Microsoft Wheel Mouse Optical: Electronics electronics 2 of 2 5.0 A great porduct March 1, 2006 W. Humbert Doylestown, OH USA The Microsoft optical wheel mouse is a great product. It is worth every penny of the purchase price. A great value! It is so much better than my old mouse with the ball in it. The optical wheel mouse is much more accurate too. The best purchase I ever made B000AA2IC8:great_web_cam:c._mcnicoll B000AA2IC8 Logitech Quickcam Fusion (961403-0403): Electronics electronics 1 of 1 5.0 Great Web Cam November 9, 2006 C. McNicoll Boston, MA USA Great quality. I had a problem initially with XP Media Center compatibilty, but it works now after downloading an update from Logitech's website. Recently, the sound is cutting out when communicating with my girlfriend across the country. I think it might just be her interet connection though (we both have the same web cam). As long as we restart the video call, then the sound comes back. I am using Windows Live Messenger as the video call program. I have never used the cartoons that it comes with. The video quality is very good when recording a video for email B00008ZPJQ:headset:m._gabriel_affandy B00008ZPJQ Logitech 980158-0403 Internet Chat Headset: Electronics electronics 0 of 1 4.0 headset November 5, 2006 M. Gabriel Affandy Greenbelt, MD United States The headset works great, comfortable. I just wish they had better sound quality...for instance when playing music B000AP05BO:my_best_flights_ever...:mr._john_c._mcmillan_"chasemac" B000AP05BO Bose� QuietComfort� 2 Acoustic Noise Cancelling� Headphones, with free MP3 player (a $50 value): Electronics electronics 1 of 1 5.0 My Best flights ever... November 3, 2006 Mr. John C. Mcmillan "Chasemac" London, GB I bought these headphones on the recommendation of a friend, and he was sooo right! The moment when the noice-cancelling algorithm kicks-in on a noisy flight is just sublime. I frequently use them without input, just tuning out the background noise on the aircraft...they even work well on squalling rug-rats a few rows away... B000066E6Y:excellent_product_except_cables_came_with_it:d._zhou B000066E6Y Motorola 484095-001-00 Signal Booster: Electronics electronics 2 of 2 5.0 Excellent Product except cables came with it September 12, 2006 D. Zhou This amplifier works as stated. Increased my modem downstream from -7 to +9. No obvious loss of noise ratio and upstream signals. All TV channels are much sharper! The cables came with the amplifier are two RG59 cable lines. For minimum loss of broadband signals, I suggest you replace one of them with R6 cable to carry the cable signals. Use the RG59 for the power supply only B00005AW1H:plain_vanilla:engineer B00005AW1H Linksys WUSB11 Wireless-B USB Network Adapter: Electronics electronics 4.0 Plain Vanilla November 12, 2006 Engineer Colts Neck, NJ If you want very basic capability this is the wireless adapter for you. Slow but steady and inexpensive B00005AW1H:works_great:k._booth B00005AW1H Linksys WUSB11 Wireless-B USB Network Adapter: Electronics electronics 5.0 Works great November 4, 2006 K. Booth I bought this for my Tivo, hooked it up the day it arrived and haven't touched it since. Great value B0007MWE1E:works_for_me:p._cao_"college_student" B0007MWE1E Cables Unlimited 6-Foot Digital Audio/Visual HDMI-to-DVI-D Single Link Cable: Electronics electronics 5.0 works for me November 22, 2006 P. Cao "College Student" Socal People buy expensive av cables because of most people would think that more expensive cables will work better and last longer. I've found that it's more a matter of quality control. I'll roll the dice with cheap (price) cables untill they fail on me B0007MWE1E:great_cable_for_less_money:steve B0007MWE1E Cables Unlimited 6-Foot Digital Audio/Visual HDMI-to-DVI-D Single Link Cable: Electronics electronics 1 of 1 5.0 Great cable for less money October 28, 2006 Steve California Great cable that works as advertised. Why spend $80 on a name brand cable which performs no better or no worse. Connected a third gen Mot 6412 DVR with HD to a Sony 36XBR800. Great picture. A name brand cable will not transmit your digital signal 6' any better than this Cables Unlimited brand will B000BHWV2M:a_great_buy.:james_hatsis_"ahr" B000BHWV2M Epson PictureMate Print Pack (2 Ink Cartridges/270 sheets of Glossy Photo Paper) - T5570-270: Electronics electronics 6 of 6 5.0 A great buy. February 19, 2006 James Hatsis "AHR" Greensboro, GA USA The only thing you will need when you buy this package is some extra paper! I love the fact that Epson advertises realistic figures for this package. Some other printer makers do not do this! B000AUQICO:i__recommend__buying_the_roady:eric_m._green_"emg" B000AUQICO Delphi XM Roady XT Satellite Radio Receiver: Electronics electronics 1 of 2 4.0 i recommend buying the roady October 14, 2006 Eric M. Green "EMG" WILMINGTON,DE USA I installed the roady in my car a few days ago.my wife has a xm radio in her new vehile so i was some what familiar with the xm radio.the only reason i didn't give the roady 5 stars was that the signal to the indash radio is poor.on the front of my in dash stereo there is a aux. input which i plugged my roady into and the roady plays crystal clear,however this connected is not mentioned in the roady instruction manual.i have three vehicles and all three have an aux. input on the front of the cd player that i plug my mp3 player into.xm radio was running a special and i got the unit and the car kit for 40.00.all in all the roady is awesome B00000J47L:excellent_rechargeables:lance_jurgensen B00000J47L Energizer NH15BP-4 ACCU 2500mAh Rechargeable AA Batteries (Four-pack): Electronics electronics 5 of 5 5.0 Excellent rechargeables August 7, 2006 Lance Jurgensen West Salem, WI USA I have purchased these and other rechargeable batteries in the past. Generally I like the PowerEx batteries the best, but these Energizer batteries have really outdone the others. The seem to have the best capacity and last the longest of all the batteries I have. I have used them in my Canon S2-IS digital camera and have taken over 400 pictures during a weeklong vacation with no problems, and no recharging during the vacation B000A6TNKC:a_top-notch_universal_dvd_player:marshall_schwartz_"ms_from_phx" B000A6TNKC Sony DVPNS90V HDMI/SACD Single Disc DVD Player: Electronics electronics 30 of 31 5.0 A Top-Notch Universal DVD Player May 13, 2006 Marshall Schwartz "ms from phx" Phoenix, AZ USA There's no need to take anybody else's word for specs on this Sony DVD player when you can view or download, for free, the user's manual at http://esupport.sony.com/US/perl/model-documents.pl?mdl=DVPNS90V&LOC=3. I've been running this Sony DVP-NS90V player through a Sony widescreen HDTV and a Pioneer amplifier/receiver for several days now, and I find almost none of the problems and limitations mentioned by previous reviewers. One, for example, states that there is "no bass management," yet you can (a) route more or less signal to the subwoofer by selecting "small" or "large" for the front speaker size (see page 76 of the user's manual), and also (b) increase or decrease the bass from -15 dB to +5 dB (see page 77 of the manual). Whether you prefer analog to digital audio, or you think SACD's are tops, is a matter of opinion, taste and choice and not an objective evaluation of a playback unit. I, for one, prefer DVD-Audio, and I mention this for an important reason: Some product ads and the user's manual clearly warn that this unit "will NOT play DVD-Audio discs." Happy surprize: it most certainly will! For my DVD-A's that have optional Dolby 5.1 and/or DTS tracks, the player simply ignores the primary DVD-A format (normally output via the 6 analog cable connectors) but still plays the Dolby or the DTS via the digital audio (optical or coaxial) connectors. For "pure" DVD-A's (without Dolby 5.1 or DTS tracks), it conveniently outputs the audio BOTH via the 6 analog AND the digital connectors. And in all cases above, the audio is full multi-channel surround, and not downmixed to 2-channel PCM, nor Prologic pseudo-surround. The only DVD-A function it lacks is the video slideshow often included on DVD-A's, and so displays only the "jacket image" onscreen. The Quick Setup allows any DVD newbie to be up and running in a short time. And the Custom Setup is so detailed with so many fine tweaks and trouble-shooters that it's bound to please even the high-end audio-video geek-freaks. In short, you'll find this to be a superior universal player, provided you read the user's manual (all 84 pages of it!), follow it, and connect equally high-quality, compatible equipment capable of exploiting its many fine features B000FYZQSW:successor_to_the_lengendary_xr55!:eduardo_nietzsche B000FYZQSW Panasonic SA-XR57S Digital Home Theater Receiver with HDMI, Silver: Electronics electronics 32 of 34 5.0 Successor to the lengendary xr55! July 1, 2006 Eduardo Nietzsche Houston ...what it has that the xr55 does not: HDMI, dual-amping of front mains now available during 5.1 playback, one extra set of component inputs, and all-channel stereo (called "party mode" on other receivers). Otherwise the internal components are identical, so expect similar performance---in other words, outstanding SQ when matched with the right speakers, blows away all other receivers under five hundred bucks and most under a thousand. See my lengthy review of the xr55 for more details. Boutique audio shops do not want you to know about this product, because it'd put them out of business...they make much higher margins selling you receivers costing several times this Panasonic's prices, since their profits are usually a fixed percentage of the street price. B0007KNZ8M:best_buy:rk B0007KNZ8M Brother HL-2070N Network Monochrome Laser Printer (Black): Electronics electronics 1 of 1 5.0 best buy November 5, 2006 RK Rochester,NY This is the second Brother HL-2070N printer i"ve owned. The first died during a storm and I forgot about electrical surges. The only negative on this printer is a slight curling of the pages. It is fast and reliable. The prints are crystal clear. I would recommend this product to everyone B00005K3KE:decent_buy_for_the_price: B00005K3KE Sony SPP-A946 900 MHz Analog Cordless Phone with Answering Device (Gray): Electronics electronics 1 of 1 4.0 Decent buy for the price May 17, 2002 Much cheaper than other Sony machine. Works fine -- then again, I wasn't looking for anything fancy. Don't have problems with the speakerphone or message recording as the others did. I like the dual keypads B000086A2I:great_but_quirky_large-format_linux_printer:r._d_johnson B000086A2I Epson Stylus Photo 1280 Inkjet Printer (Silver): Electronics electronics 5 of 5 4.0 Great but quirky large-format linux printer June 2, 2006 R. D Johnson Cedar Ridge, CA USA I've had my Epson 1280 for over two years now and consider it money well spent. I run exclusively on Linux (currently Gentoo) and the Linux support for this printer (using CUPS) is superb. All modes, resolutions, etc. are supported. I use this printer a lot for engineering work printing B-size (tabloid) drawings and it works great for that. Like just about every review states, this printer slurps ink like Homer Simpson slurps beer. Because I don't print many color photos this is not a problem for me--if I was doing that I'd get the Niagara system other reviewers cite. I've researched the Niagara system and it looks like a good deal for heavy users. My main complaint with this printer--and the reason why it only gets four stars--is the ease with which the heads clog up. This printer wants to be used constantly. If you let it sit for a day or two it's almost guaranteed that one or more of the jets will clog up and you'll get streaks in the output. Then you have to either press the front-panel control or, in more extreme cases, run the head-unclogging utility (on Linux I use mtink) to force the printer to 'blow out' the plugged jets. When the printer does this it blasts ink through the heads wasting even more of the pricey ink. Do this enough and the reservoir the printer blasts the ink into (a sponge-sandpaper-like thing) will overflow and cause the head to smear ink all over the paper. That's when you get out the Windex and paper towels and clean up the mess (google the web for details.) Because of this 'trait' I would not recommend this printer for casual users. Still, for B-sized printing and high-quality photos, and considering how well supported it is under Linux, there's not much else better out there B000086A2I:big_work_horse,_colors_just_right:adam_w._chapin_"chipmunkartist" B000086A2I Epson Stylus Photo 1280 Inkjet Printer (Silver): Electronics electronics 3 of 3 5.0 Big Work Horse, Colors Just Right February 21, 2006 Adam W. Chapin "chipmunkartist" Grand Rapids, MI Having owned a 1280 for a year and a half thus far, I can say that this printer is for somone who wants a reliable and problem free large format printer that produces on target results. The drivers at least for Mac OS X are easy to understand and reliable. The ability to manage the printer such as doing a nozzle check and a head clean right from the application that is going to be printing, is a vey nice touch as well. However, it is the colors that this printer gets high reviews from me. By using mat or glossy photo paper and making the proper print settings, one can get nice rich colors that are on cue. Thus this printer makes good for doing proofs. As an artist and Graphic Designer, having this quality is a blessing since this print cost $ 400 at the time of parchase. Compare that to profesional quality workhorses going from $2000 on up. Also being able to print up to 13 x 19 save me loads of time since that cuts down on the number of trips to my local print service to have them do my print outs on there large format printers. The only minuses are that one needs a generous amout of desktop realestate to acomadate the 1280 as it is almost twice the size of a normal 8 1/2 x 11 printer. Also one needs be prepared to shell out some payolla as the ink cartriges can get pricey. But what inkjet dosen't have that problem? Anyway that little expences is nullified by savings of not having to go to my print service so often. So any one looking for a good large format printer that produces some good printouts and not have to pay an arm and a leg for it, the 1280 is a very good cadadate for that job. So I'm giving 5 stars on the Epson 128 B00008XETC:quality_cable:b._blom B00008XETC Monster Cable DVI400-1M DVI-D Video Cable: Electronics electronics 2 of 2 5.0 Quality Cable September 13, 2006 B. Blom Colorado, USA I ordered the 4 meter cable which was pictured with 24 pin connectors and received one with 18 pins. Found out that the missing middle 6 pins are used to transmit audio which my monitor doesn't support anyway. Originally, the DVI-D specification allowed for both a video signal and an audio signal, but most manufacturer's have only used the video portion. If you need a DVI-D cable, an 18 pin connector will most likely work since most devices won't process the audio signal anyway. There are a few (very few) devices that do use all 24 pins, but with the advent of HDMI, nobody really makes them anymore B00008XETC:my_review:baonam_truong B00008XETC Monster Cable DVI400-1M DVI-D Video Cable: Electronics electronics 0 of 1 5.0 My Review July 8, 2006 Baonam Truong Product came in as describe. Super clear picture quality as it's supposed to be as Monster Cable brand B000E1FYRO:great_value_for_money!:gerald_khoo B000E1FYRO Sennheiser HD 205 Studio Monitor DJ Headphones w/ Swivel Ear Cup: Electronics electronics 10 of 10 5.0 Great value for money! March 17, 2006 Gerald Khoo Singapore The Sennheiser HD 205 is great value for money. The design is not only comfortable, but takes out a lot of ambient noise. This headphone does not have active noise reduction but does a good job with its closed design headphone. The right-side is able to swivel backwards, so you can answer a phone call and not need to remove the whole headphone. This swivel was designed for DJ's to do sound mixing, but works well for other purposes as well. I also like its strong bass and great clarity, where I could hear sounds in music that I did not hear before. This headphones not only works well for music, but does great with your favourite action movie. You will hear how close the sound is, and have bullets whizzing past you and swords meeting like they are just around you. Below are the technical specifications: Acounstic principle: Dynamic, closed Ear coupling: Supra-aural Frequency response: 14-20,000 Hz Max SPL at 1kHz, 1 Vrms: 112 dB THD at 1kHz, 100 dB SPL: < 0.5% Impedance: 32 Ohms Weight (without cable): 206 g Singnal cable: 3 m copper cable (OFC), single-sided Connector/adapter: 3.5 mm stereo jack with 6.3 mm adapter This headphones comes with a 2 year warranty and a protective pouch for the headphones B0001W9IIC:very_good_for_this_money:myopinion B0001W9IIC Panasonic KX-TG5050W 5.8 GHz Cordless Phone (White): Electronics electronics 3 of 3 5.0 Very good for this money November 20, 2005 myopinion I bought this phone at Amazon, and I am happy with it. Provides very good sound quality, comfortable navigation,address book and Caller ID.With its 5.8 GHz frequency speed, it is much better than my previous one which was Panasonic 2.4GHz and did not have light signal on handset when you have a new message. B00003WGP5:good_product:guillermo_castro_"castor" B00003WGP5 Garmin eTrex GPS with Waterproof Exterior (Yellow): Electronics electronics 0 of 2 4.0 good product November 3, 2006 Guillermo Castro "castor" Honduras takes a little time to start operating, very good for the price a little trouble using it inside ca B00003WGP5:excelent__for_its_price:domingo_rodriguez B00003WGP5 Garmin eTrex GPS with Waterproof Exterior (Yellow): Electronics electronics 1 of 1 5.0 excelent for its price August 24, 2006 Domingo Rodriguez Dominican Republic This simple device is reliable for fixing positions. And If you know about coordinates, you can set it in, and bingo. You can compensate what it lacks of by using coordinates from a map while you paid unexpensive B0000C20XD:fantastic_speakers:kenneth_e._aldridge B0000C20XD Altec Lansing VS4121 2.1 Computer Speaker System, 3 piece: Electronics electronics 5.0 Fantastic Speakers October 16, 2006 Kenneth E. Aldridge Franklin, Oh. What a wonderful surprize. It took about ten minutes to install them to my HP Media center computer. They replace speakers that came with my 19" monitor which were lousy to say the least. (speaker make with held) But the vs 4121s surpassed all my expectations. While I am not an audiophile, I do admire and expect good faithful sound reproduction and these speakers more than do the job. I don't understand how the more expensive ones can do any better. Suffice to say I am completely satsfied and would highly recommend them to anyone looking for their moneys worth B000BNDEZY:fire_and_forget:knowledge_seeker B000BNDEZY Buffalo Technology AirStation Turbo G High Power Wireless Ethernet Converter ( WLI-TX4-G54HP ): Electronics electronics 5.0 Fire and forget October 23, 2006 Knowledge Seeker Florida, USA This was a breeze to setup, even with WPA2 to ensure privacy. I also hooked up an Xbox360 and it has never failed in since I bought it about 6 month ago. Much better value then your average gaming adaptor since it has multiple ports so you can hook up all your gizmos at the entertainment center rather then buying a wireless adaptor for each (i.e. Tivo, PS2, etc...) I love it, and for the price, you could not beat it. B00006I56A:portability_is_nice:c._hui B00006I56A Coby CX-TV1 5" Black-and-White TV with AM/FM Tuner: Electronics electronics 5.0 portability is nice August 4, 2006 C. Hui Having a TV in the car make the carpool-commute a little easier. Obviously, the driver can't watch it, but the passengers can. All of the chords and connectors are included. Great price B000CS7UTY:a_little_pricy,_but_it_was_worth_it.:j._willig_"cosmo_jiggy" B000CS7UTY Creative Zen Vision:M 30 GB MP3 and Video Player (Pink): Electronics electronics 3 of 3 5.0 A little pricy, but it was worth it. November 13, 2006 J. Willig "Cosmo Jiggy" Sumter, SC USA This is my first time ever buying a really expensive MP3 player. I bought it three weeks ago. If I hadn't seen the Creative Zen Vision:M, I probably would have bought the Sandisk Sansa E260. I love being able to bring my cartoon/tv shows over to a friends house so we can watch them on the tv. There is one problem I've had with it. I'm not sure if anyone else has had this, but there is some slight static noise that happens once in a while when I'm listening to music. I don't think it's the MP3s, because I've never ran into the problem with my other MP3 players. If only they would've added the video cable for the TV and kept the charger, then I would've rated it a 5 B0001H4BMU:don't_overlook_this_player:wiseguy_945 B0001H4BMU Samsung DVD-HD841 Up-Converting DVD Player: Electronics electronics 2 of 3 5.0 Don't overlook this player June 30, 2006 Wiseguy 945 Omaha, NE Earlier this week I received the factory referbished Samsung HD841. I have had a few days to use it and compare it to my other players, mainly my Philips 642, which have been excellent players for me. This Model does well. I don't understand why this model has such a rough reveiw. Note, this model has the DVI output, If your TV has an HDMI port, you will want to check out the Samsung HD 850 (identical otherwise). First, this model has component, composite and S-video hook ups, as well as the DVI port (still have to run seperate sound out with DVI). Also, this model does feature digital coax sound out and optical sound out as well for systems that can handle 5.1 THX. Many upconvert models do not have the digital outs on lower priced models. The picture quality is great, at 480p comparable with my Philips. Again, The upconvert works well out the DVI hook up to my TV, but to be honest, it is hard to tell any difference between it and a good 480p progressive scan player, at least on my tv which is a 23" 720p LCD. Menus also are a bit difficult to figure out at first as well. The user manual is less than impressive at explaining thing, in fact, it does not have an index. But, it the main thing is that the player is does perform well, and is a name brand product from samsung (I have had some offbrand experience and have had perfomace problems). THis player also appears to have DivX available on it, not noted in the product discription, so that was a suprise as well. This will allow the use of MP4 movie files. The remote again is bigger and at first more difficult than my other players, but after a day or so it actually is better because many of the features are available to change at the push of a button instread of going through the menus. In all, I will continue to explore this new player, but in all it seems to be a quality product that has received some bad flack. So give it a chane, the prices are good currently, quality has been good, and it is a Samsung. Note to the technosavy: I have not had luck using the component upconvert code that is available on other web sites, so I am using my DVI input for upconvert. Also, the new Blue ray (HD 1080p) DVD players are out, so if you have the expensive hi res tvs that can handle this, you might want to wait and save till you can get the new DVD players. Note 2: the factory referbished models come with a DVI cable, a 20-30 dollar value that many don't come with B000BYCNM8:quality_at_a_good_price:brent_t._horton B000BYCNM8 LCD Articulating Wall Mount for Screens Up To 22 In with vesa 75/100MM: Electronics electronics 1 of 1 5.0 Quality at a good price August 25, 2006 Brent T. Horton Cleveland,Oh This was one of the cheapest tv mounts and it had all the options the expensive ones had it will pull away from the wall as well as allow the screen to pivot up and down.It also compacts up close to the wall. I dont know what other features someone would want in a mount. It is also very smooth when it moves and there is not any deflection or sloppiness in the construction, altough I only put a 14" lcd on it B00063ZVJQ:i'd_have_given_it_5_stars_except_for_one_irritating_feature:kevin_corn_"rareanduniquebooksonline.com" B00063ZVJQ Palm Cradle Kit for Handhelds (3199WW): Electronics electronics 4.0 I'd have given it 5 stars except for one irritating feature November 10, 2006 Kevin Corn "rareanduniquebooksonline.com" Indianapolis,, IN United States There is a light that ALWAYS stays on and it is distracting, as others have noted. Otherwise, it is great. Good design, works well, no complaints. But that light...WHY did they design it with that? B00076QA6K:very_nice:paul_talbert B00076QA6K Garmin Protective GPS Case for GPSMap 60C / 60CS: Electronics electronics 14 of 14 4.0 Very nice September 26, 2005 Paul Talbert Colorado USA Protects the Garmin's 60 screen from scratches, but interferes with the button operations a little. Worth the hassle to protect the screen B0002XGA3Q:very_pleased:cleany B0002XGA3Q Polycom SoundStation2W 2.4 GHz Cordless Table-Top Conference Phone: Electronics electronics 2 of 3 4.0 Very pleased July 29, 2005 Cleany Milwaukkee, WI This unit works very well and we are very pleased with it. Nice construction, good sound quality on both ends. We're concerned about battery life as in # of recharges before performance decreases, but no indication right now that is an issue. I would have give the product 5 stars if it had been cheaper. This class of device is overpriced in general. Amazon's price was very good, but overall still seems over priced. I would definately buy another from Amazon as these are 25% more at other places. B0000524PB:good_cables,_but_way_overpriced.:evan_arsenault_"jaded_moon" B0000524PB Monster Cable GameLink 400 Component-Video Cable for PlayStation 2 (10 feet): Electronics electronics 1 of 2 4.0 Good cables, but way overpriced. February 14, 2006 Evan Arsenault "Jaded Moon" Framingham, MA USA This cable does improve the image quality but not by much. I was dissappointed to see very little difference between my standard PS2 stock cable and the moster cable I bought. This is not to say that the Monster cable is bad, but it just isn't worth the asking price. If you see on for under $20 then I recommend picking it up, but other than that, just avoid them because there isn't much better out there B0007KX4UQ:what_is_this_for?__high_quality_audio_and_video:ricardo_carreon_quinones_"http://ricardosblog.com" B0007KX4UQ Apple iPod Dock for Color Display iPods: Electronics electronics 69 of 70 4.0 What is this for? High quality Audio and Video June 30, 2005 Ricardo Carreon Quinones "http://ricardosblog.com" Sao Paulo, Brazil BREAKING NEWS: If you are buying a new video playback capable iPod, please look for the new iPod Universal dock, which has s-Video output for both photos and video. It is also ready to accept a control remote so you can control your iPod from your sofa. Is this expensive? The answer is probably yes. This dock was included on the original iPod Photo of late 2004 (priced $500-$600), the dock was removed as Apple lowered the prices this year to their current levels for color iPods. However, for a couple of uses: high quality home audio and Slide Shows on hi-res TVs, it is a great alternative. This dock basically serves three purposes: - The traditional synch & charge function available since the early days. - It helps you get "Line" output out of an iPod. Line output is a cleaner, higher quality sound output than the usual headphone output out of the miniplug jack. It is the best way to connect your iPod to a home stereo or home theater. - The super Video out for color iPods. This function is something you cannot get without the dock. So, if you like to show your pictures to your friends & family using a hi-res TV (Plasma, LCD or a Flat Screen) this is a great tool to use. As an alternative, if you do not want to use s-Video and are OK with regular digital video out, a cheaper alternative is the "Apple iPod AV Cable" at $19 from the Apple Store or similar alternatives. In summary, buy this if you hook your iPod to high quality audio equipment or if you regularly do hi-res slide shows on your TV. If you don't do it, it's just too expensive as a synch/charger, since anything you need is in the iPod box B0000BZOGY:well_built_and_roomy:j._stephen_shaw B0000BZOGY Targus TXL717 17 XL Rolling Notebook Case: Electronics electronics 5.0 Well built and roomy November 25, 2006 J. Stephen Shaw Bethesda MD I bought this backpack for walking to work each day with my laptop and various other items I need to carry back and forth (umbrella, lunch, spare battery, paper, etc). It's well designed and constructed and has fulfilled all my expectations. Its size allows me to carry a hefty foldup umbrella which can lie horizontally. I was concerned it size might make it intrusive or awkward, but it's not. My only minor complaint is that the buckles on the shoulder straps slip gradually and need to be tightened every couple of days B0000BZOGY:great!excellent!:n._m._ramsay B0000BZOGY Targus TXL717 17 XL Rolling Notebook Case: Electronics electronics 5.0 Great!Excellent! November 2, 2006 N. M. Ramsay This bag is fantastic,comfortable to carry, fits loads in,protects my laptop,doubles as hand luggage.No complaints at all. Best bag I've ever bought B0000A1OG9:can't_go_wrong_with_batteries:j._corsi B0000A1OG9 RAYO30PKAAA Pro Battery: Electronics electronics 5.0 can't go wrong with batteries December 23, 2005 J. Corsi albany ny Seems nowadays everything uses AAA batteries so this 30 pack is perfect for just about anyone that needs them. You know who you are. The ones with the video games, remote controls, clocks, and whatever else you need. Expecially good to get during the holidays, you should never be without B000FH2BVO:good_service!!!:joseph_spivey B000FH2BVO SanDisk 1 GB Ultra II MicroSD Card (SDSDQU-1024-A10M, Retail Package): Electronics electronics 2 of 2 4.0 Good Service!!! August 7, 2006 Joseph Spivey Received it pretty quick, but it was SDSDQU-1024-E10M. There isn't any difference just it comes from Europe instead of the U.S. That was pretty odd but otherwise it works B00067ARYQ:works_for_10_days_then_quits:daniel_brockman B00067ARYQ Netgear WG111T 108 Mbps Wireless USB 2.0 Adapter: Electronics electronics 3 of 3 4.0 Works for 10 days then quits May 7, 2006 Daniel Brockman Petaluma, CA USA My experience, with several repetitions: The adapter, continuously plugged in, continuously on, works for about 10 days, then stops working and drops the connection. It won't restart. The only way to recover is to unplug it, plug in your spare (you do have a spare, of course), and let the Netgear WG111T cool off for a couple of days. Then you plug it in again, and it works for about 10 days... B0002GRUJ6:great_product_for_the_money:scott_r._bigham_"scott" B0002GRUJ6 StarTech.com 6FT HDMI TO HDMI DIGITAL VIDEO ( HDMIMM6 ): Electronics electronics 8 of 8 5.0 Great Product For The Money March 15, 2006 Scott R. Bigham "Scott" Holts Summit, MO A super picture with this cable! For the price, you've got to try this before spending hundreds of dollars on others. I give it 2 thumbs up B0000DJEK7:never_leave_home_without_it.:tv_guy_"tv_guy" B0000DJEK7 Magellan RoadMate 700 Vehicle GPS with Windshield Mount: Electronics electronics 4.0 Never leave home without it. November 5, 2006 TV Guy "TV Guy" Southfield MI I purchased my first Roadmate in August 2004. Since then I have taken it to various places in North America. It's gotten me out of some tight spaces. I've never gotten lost while using it. I purchased the second one when the voice interface on the first failed. I sent it in for repair. (The extended warranty had just run out about 2 weeks earlier) The new RoadMate arrived in two days and has worked fine ever since. The old Roadmate was returned to me repaired in about a week. I gave the first one to my wife and she has used it with success ever since. Pros: Easy to use. Amazing detail. Cons: Sometimes takes a long time to acquire satellites Original mount is useless after about a month. I got aftermarket tripod for each unit and they seem to work fine. Software updates are expensive. B00005ATME:it's_worth_it._:m._aydin_"mahmut4@yahoo" B00005ATME Case Logic Nylon 144-Disc CD/DVD Wallet: Electronics electronics 5 of 6 5.0 It's worth it. September 30, 2005 M. Aydin "mahmut4@yahoo" Philadelphia, PA United States I have case logic CD wallets from 7+ years ago that are still in good shape...despite the abuse I put them through. I bought this one only because of CD collection expansion. I find simply wiping off the outside cover with a wet sponge keeps it clean. The nylon covers really hold up over time. Remember- the "128 cd capacity" refers to CDs without their accompaning booklets. It's really 64 CDs with booklets. B0000D8LSW:the_power_of_charging:bruce_aguilar B0000D8LSW Apple iPod FireWire Power Adapter: Electronics electronics 8 of 10 5.0 The Power of Charging August 11, 2005 Bruce Aguilar Hollywood, CA This charger is designed for every iPod EXCEPT the Shuffle. The Shuffle connects via USB, this charger uses FireWire. Every iPod charges while connected to a computer via FireWire or USB 2.0, but this charger allows you to charge your iPod in a wall outlet. In addition to the charger you will need a connector cable. You can use the one that came with your iPod or buy a second one. Hook 'em up, plug it in the wall and get on with more important things while your iPod charges. For international travelers, the plug pops off and you can purchase the correct plug for the country you will be visiting. Great feature! I have an iPod Dock connected to my stereo and use an extra connection cable along with this plug to ensure that my iPod doesn't run of of juice durring parites and long playing sessions. I highly recommend the Power Adapter to iPod users who want the flexability to use their iPod on the road or in conjunction with a stereo B00005NWV1:works_great:a._luptak B00005NWV1 NETGEAR FA511 32-bit CarBus PC Card Mobile (10/100): Electronics electronics 1 of 2 5.0 Works great November 20, 2004 A. Luptak Pittsburgh, PA United States I didn't buy this on Amazon but wanted to say this device is great. The only bad thing was MY laptop is old! Can't go wrong with this one B000ELC0GM:great_product_-_great_service:lisa_abdill_"south_orange_soccer_mom" B000ELC0GM Sony SLVD370P DVD/VCR Progressive Scan Combo Player: Electronics electronics 2 of 2 5.0 Great Product - Great service November 4, 2006 Lisa Abdill "South Orange Soccer Mom" New Jersey Our new VCR/DVD player is wonderful. Set up was easy and I am even able to record-- something that the set-up configuration on my last model was unable to do. Delivery was even faster than expected! Quality is teriffic and price was reasonable B000ELC0GM:super_sony:e._provost_"rapide_eduardo" B000ELC0GM Sony SLVD370P DVD/VCR Progressive Scan Combo Player: Electronics electronics 11 of 11 5.0 Super Sony September 3, 2006 E. Provost "Rapide Eduardo" Prairie Village, Kansas USA My old DVD would not play some of the many new formats, i.e. DVD-R, etc. This unit plays every DVD I've put in it with no hassles. The VCR has an auto tracking adjustment feature that seems to be fool proof, no stutters or static in the sound. And the icing on the cake is the remote. I understand it! Plus it controls my television functions. Excellent price and standard excellent Amazon service. Well done B000A7NRPI:excellent_product:ankush_mittal_"ciao," B000A7NRPI Altec Lansing VS4221 3-Piece Speaker System Music & Gaming System with Remote: Electronics electronics 5.0 Excellent Product November 9, 2006 Ankush Mittal "Ciao," I bought these speakers some time back. I was a bit skeptical because the sub woofer looked a little wierd. but once I plugged it in they sounded really good.. the remote control is really handy....... If you are looking for nice speakers for dorms or not an apartment these are it....they are really awesome...... They go really loud...I owned JBL Creatures 2 before and I prefer these to my old ones.... These Altec Lansings are the best speakers I have ever owned and trust me I have gone through the lot of the B00030099O:great_sound_at_affordable_price:evan_walter B00030099O Creative Labs USB SoundBlaster Live! 24-Bit External Sound Card: Electronics electronics 2 of 2 5.0 Great sound at affordable price July 31, 2006 Evan Walter Arlington, TX United States I've been using SBL soundcards for about 3 years. I use it for recording live and with sound fonts. This usb device is easy to set up and the sound quality is great! One installation tip. Initially after I connected it and installed the software, I was not getting any sound, although the software was installed successfully. I rebooted, and everything was detected and has worked fine since. So just remember to reboot after installation. B0001FTVE0:unexpected_awesomeness:k._shazer B0001FTVE0 Sennheiser HD-595 Premier Headphone: Electronics electronics 1 of 1 5.0 Unexpected Awesomeness October 19, 2006 K. Shazer I am a audiophile and am very picky when it comes to buying my toys. I bought these by accident when i was acually trying to buy the hd650's it was too late to cancell my order and since it was half the price i decided to try them out. I first hooked them up to my denon amp and listened to some cds and they sounded awesome. i could hear things in songs i have never heard before. I then hooked them up to my cheapy portable philips cd player just to see what it would sound like. to my surprise it sounded just as good as hooking them up to my denon amp. There was plenty of bass and highs and mids came out very good. the only draw back is that it is open and it bugs people that are sitting close to you. I am glad i got these instead of the 650's cause my friend owned the 650's and if you don't have a amp hooked up to it your out of luck B00064V6XK:brilliant!:g._l._knowles_"ellisgeorgee" B00064V6XK SanDisk MOBILEMATE MS - 4 IN 1 ( SDDR-107-A10M, Retail Package): Electronics electronics 5.0 Brilliant! November 2, 2006 G. L. Knowles "EllisGeorgee" MA This little doohickey is exactly what I needed to read my memory sticks. Load the software, plug it into the USB port and you're off and running! The MobileMate is SUPER SPEEDY! The files/pictures pop right up with no lag time. And you can read all forms of memory sticks with this one reader. Excellent value for the price B000F4C2AM:very_good_value:j._kolberg B000F4C2AM Panasonic DMR-ES15S DVD Recorder with DV Input: Electronics electronics 3 of 4 4.0 Very good value October 20, 2006 J. Kolberg NY United States I'm very happy with this model. I use it mostly as a VCR replacement to record broadcast TV shows. You can't beat the price for this feature-set. I'll try to describe some aspects that aren't mentioned in the other reviews. The owner's manual can also be found online in PDF format. It can schedule upto 16 programs. It does not support VCR+ or a TViO-style program guides. You can enter a title into each schedule that appears both on the schedule list and direct navigator chapter menus. It even sorts the main schedule listing and indicates which events are on the current disk. Every on-screen menu shows you which remote control buttons are functional on that screen. The commercial skip button advances about 60 seconds which isn't quite granular enough, but 2 clicks and a little fast forwarding works well. The remote operations have a very fast feeling response compared to tape players. My only complaint: The remote sensor on the recorder seems to be all the way on right-hand side. When the unit is in our video cabinet, the sensor is in a deadzone for half the room. We can't shift the position much because the disk tray slot is all the way on the left side and won't open if it's too close to the wall. Of course this probably means nothing to you. At the highest quality setting (XP) it made a very good (near perfect I'd say) copy from a 8mm video camera using analog inputs. At that setting, only one hour of content fits on a DVD. The next lower setting (SP) which can hold two hours per disk, the copy from the video camera had some contrast problems. Most TV shows recorded in EP (8 hrs) are acceptable quality although you do see the blockiness and some motion blur at times. This is especially pronounced on animated shows. The four-hour LP setting had no apparent digital artifacts on recorded TV. It also has a Flex-mode option I haven't tried yet in which you tell it how long to record and it will fit the recording to the freespace available on the disk at the highest possible quality. Probably would be good for recording a TV movie. It's too bad other vendors haven't adopted the -RAM format because most of the features on this box only work on that kind of media, but it won't play on most other equipment. The other formats seem lame by comparison, but this unit can play and record on them. Watching one show while another is recording (or the same show that's recording, but from the beginning) is very easy to do. Most of the operations are very sensible and explained on-screen pretty well, but you should spend some time in the manual if you've never had a dvd recorder before. It can do a lot of stuff. One interesting feature is that no matter what input you are using, the signal is sent through the s-video output. It can't burn music CD's which seems like it would have been a trivially easy feature to add. That and a battery backup (so I won't lose my schedule) and wider angle of view for the remote sensor would required get the fifth review star B0000E2PMB:monster_connections:andrew_shirley_"rentino" B0000E2PMB Monster Cable MP HTS 1000 PowerCenter with Clean Power Stage 2 (v.2.0): Electronics electronics 2 of 2 5.0 Monster Connections July 18, 2006 Andrew Shirley "Rentino" Orange, NJ I purchased the Monster Cable MP HTS 1000 without reading the reviews,(which I don't usually do) for the simple reason of where I purchased my hdtv, Samsung HLS-5687w they were trying to sell me but for a $150, which was too much. I plugged in my equipment to the monster and at first there was no picture only sound. I have directv and they have a connection which allows you to receive digital and analog signals through the same cable. That connection needs to be placed after the monster in the connection loop. After switching around the cables I had a picture again. I can't really see an improvement in the picture quality (HD is beautiful) I bought the monster basically for the protection B000GTPRPS:hp_50g_review_comments:daniel_r._renninger_"daniel" B000GTPRPS HP 50G Graphing Calculator: Electronics electronics 1 of 1 5.0 HP 50G Review Comments November 5, 2006 Daniel R. Renninger "Daniel" West Mifflin, PA, USA The 50G is the successor to the HP 49G. They both accept only a maximum of 1GB SecureDigital flash cards since they only have an approximate 1GB operating system file address space. Only about 0.9GB of the SecureDigital flash cards (a little more on the HP 49G than on the HP 50G) are accessible. The manuals only vaguely state that they recognice FAT16 and FAT32 SecureDigital flash cards. The HP 50G has a black case with a black metallic faceplate. The white and orange shift key labels on the metallic black faceplate have much better contrast and are easier to distinguish than the HP 49G red (or tomato) and turquiose shift key labels on the tan anodized faceplate. The black HP 50G looks tastefully geared for serious users. They still have no display backlighting or a color display. The HP 50G keyboard feels a little more compliant than the HP 49G but it would be nicer if they were as buttery smooth as the original early 1970's series of the HP hand held calculators B0009HTB0Y:ultra_convenient:erik_craig_malin B0009HTB0Y Sandisk SDSDPH-1024-901 1 GB Ultra II SD Plus USB (Retail Package): Electronics electronics 1 of 1 5.0 Ultra Convenient November 3, 2006 Erik Craig Malin Santa Clarita, CA USA The convenience of this product is terrific. Whenever I show people how it snaps in half, they're amazed at the ingeniousness of it and they say how they want to get one. Now that all computers have USB ports, I can put my photos into any computer anytime I want without worrying about the docking station. A must-have product for every digital camera!! B0009HTB0Y:it_is_worth_it:constantin_aldea B0009HTB0Y Sandisk SDSDPH-1024-901 1 GB Ultra II SD Plus USB (Retail Package): Electronics electronics 1 of 1 5.0 It is worth it August 24, 2006 Constantin Aldea Glen Ridge, New Jersey Great product. It's two in one. You have it in your camera and take photos, next you can plug it into the USB port and download data. It's worth the money B0002SQ0A4:high_priced_sounds:butch B0002SQ0A4 Logitech x-230 2.1 2-Piece Dual Drive Speakers with Ported Subwoofer: Electronics electronics 1 of 1 5.0 High priced sounds November 16, 2006 Butch Illinois First time I heard these I was floored by the output. Nice high, mid and low bass sounds no matter what you have going thru them be it music, games or movies. Definately worth the low low price... First person WWII shooter games like Call of Duty sound awesome with these speaker B0002V8KX6:linksys_pap2:jake_a._fitzpatrick_"jfitzpa503" B0002V8KX6 Linksys PAP2 Phone Adapter for Vonage Internet Phone Service: Electronics electronics 13 of 13 4.0 Linksys PAP2 August 12, 2006 Jake A. Fitzpatrick "jfitzpa503" Portland, OR USA I am going to strictly comment on the Linksys PAP2. A lot of the reviews on here have been for the Vonage service. The Linksys PAP2 is NOT THE Vonage service, but one of many adapters you can use. I am extreamly satisfied with my Linksys PAP2. It is small, light weight, and perfect for those who need to travel. The voice quality is excellent and people say I do not sound like I am talking over VOIP. There is no line noise, static, popping, etc. I am giving this product 4 stars. Why? Because there is only ONE ethernet port. If you have a router, just connect the PAP2 to one of your available ethernet ports and you are good to go. If you do not have a router, consider getting another Vonage phone adapter with built in 4-port router. There are several. B0002V8KX6:vonage_--_wonderful_service:amber_mist_"miss_burlesque" B0002V8KX6 Linksys PAP2 Phone Adapter for Vonage Internet Phone Service: Electronics electronics 3 of 5 5.0 Vonage -- Wonderful Service July 19, 2006 Amber Mist "Miss Burlesque" Boston, MA USA I read the other reviews and don't understand where they are coming from UNLESS they are all by AT&T or BELL employees. I've had Vonage for 3 years and have nothing but good things to say about it. I have local numbers for Seattle, Salt Lake City, Boston and San Francisco so my friends can stay in touch. These numbers only cost me $4.99/each a month. Customer service is excellent. They stay right on the phone with you until everything works perfectly. This is especially nice after they added 911 service B00003CWA6:simple_physics: B00003CWA6 Monster Cable ILS100-1M Interlink LightSpeed 100 High-Performance Digital Fiber-Optic Cable, Toslink-to-Toslink (1 Meter): Electronics electronics 10 of 31 4.0 simple physics July 24, 2000 I'm using Monster optical cable as well, but with different reasons behind. Anybody with a basic knowledge of physics or optics should know that under normal condition light is not susceptible to interference from magnetic field or EMF B00009EFQH:exactly_same_as_the_description:i._huang B00009EFQH Targus PA496U DEFCON VPKL - Video Port Key Lock: Electronics electronics 1 of 1 4.0 Exactly same as the description March 3, 2006 I. Huang California This is the best lock you can find for laptops, but I am still not very confident with it. It looks flimpsy but better than others B000IVDTSG:works_well_at_a_great_price:glenn_ware B000IVDTSG Sling Media Slingbox AV ( SB240-100 ): Electronics electronics 6 of 6 5.0 Works well at a great price October 21, 2006 Glenn Ware Littleton, Colorado USA Installation on a normal home network setup is very easy. My setup was a little more complex due to voip router, and 2nd wireless router. Sling has instructions on their web site but I still had to mess around with my settings in order to get it to work. To work on multiple routers you have to do port forwarding on both routers to port 5001. Once I worked this out everything is great. Video quality is good in the house, haven't tried it from another location. I'm running the Sling AV with Netgear Ethernet power adaptors to my router and then watching TV via wireless to my laptop. Now we can watch TV in any room of the house. My wife loves being able to watch the news in the morning while in the kitchen. She also loves being able to surf while having a show running in a small window on the side. Control of my Dish DVR is very good. We can manage any feature of our Satelite/DVR box. This will come in handy when we travel as we have our sons Seaseme Street shows on the DVR and now we can take those with us on the road. Overall, I'm pleased with the Sling AV. It offers good performance at a great price point. Now Sling just needs to get the Mac version out so I can watch TV on my beautiful 15.4 inch Mac Book Pro B0001GU81E:quality_product_-_should_be_higher_capacity:seacidal_"seacidal" B0001GU81E Brother Toner Cartridge (TN570): Electronics electronics 6 of 15 4.0 Quality product - should be higher capacity September 11, 2005 Seacidal "Seacidal" Ventura, CA USA This is a quality built toner cartridge, but for the money, it should have a great toner capacity B0009MFQ12:fantastic:christopher_thomas B0009MFQ12 Magellan RoadMate 760 Portable GPS Vehicle Navigation System: Electronics electronics 3 of 3 5.0 Fantastic November 24, 2006 Christopher Thomas Chicago, IL USA I bought this item about 4 months ago and do not have a single complaint. I use it in Chicago. A lot of reviews say it takes a long time to acquire a satellite signal, not true at all. I think the longest I have ever waited was 20 seconds. It does have trouble getting a signal downtown sometimes, when I am surrounded by tall buildings (Wacker Dr.) But this is expected and can be corrected with the purchase of an external antenna. Overall, this GPS works perfectly. The auto-reroute is fantastic, it is very quick to recalculate my route if I miss a turn, and the voice prompts give you plenty of warning in advance of a turn. You will not be disappointed with this purchase B0000UI304:amazing_clarity_and_bass:a._jadczak B0000UI304 Klipsch ProMedia Ultra 5.1 Multimedia Speaker System, (6 Speakers, Black): Electronics electronics 5.0 Amazing clarity and bass November 9, 2006 A. Jadczak USA Soundwise the Klipsch Promedia Ultra 5.1s were everything that they were supposed to be. The bass is very powerful and can even be overpowering if not adjusted. The sound is crystal clear and with a decent sound card all of the settings can be tweaked until perfection. Setup was a breeze and no instructions are needed although they are provided just in case. Something to note is the speaker wire that comes with the speakers is a little on the small size and thicker wires should be be purchased if you are picky about your sound. The wires themselves are long enough and there shouldn't be any trouble reaching anywhere assuming you are putting these in a normal sized room. One last thing to know is that there is no optical input for these speakers and only 1/8" plugs for hooking up the sound source. If you want optical you're going to have to go elsewhere. Please note that buying these speakers will not make up for having a mediocre sound card or poor music quality. If you are using most types of on board sound or an ancient soundblaster card it is time to upgrade or else you are just throwing away your money. Same goes for music quality, if you are listening to an mp3 that is below 128kbps the poor sound quality is because of the shoddy encoding, not the speakers. If you can't spare the hard drive space for 192kbps its time to get a new hard drive. Overall these speakers are a great deal. While the price tag does seem a bit steep it is well worth the money for anyone that is serious about their music or movies. For those of you who like to game these speakers will treat you good, however in my past experience a good set of headphones is better than a full blown sound system. Lastly for those of you who like to play your music and bass full blast, don't bother spending the money. These speakers should only be purchased by people who actually care about sound quality. If you are more worried about loudness, do yourself a favor and buy some cheaper speakers, you won't even notice the difference B0001EMLZW:financial_calculator:katz_blue_"kat" B0001EMLZW Texas Instruments BA II Plus Professional Calculator: Electronics electronics 0 of 2 4.0 Financial Calculator August 16, 2006 Katz Blue "Kat" Las Vegas, NV It has some very useful addition from the previous model. It has cut the time of doing my homework in half B000BMAL10:cool!:c._havens_"commuter" B000BMAL10 Apple 1 GB iPod Nano Black: Electronics electronics 5.0 Cool! November 9, 2006 C. Havens "Commuter" Denver Great for frequent air travel to pass the time. Minor complaints - instructions are sparse (had to get my son to show me how to use iTunes & load songs), but still haven't figured out how to arrange songs on the iPod. My problem B00006I5V3:quite_a_company_for_a_college_student:cupiemayo_"cupiemayo" B00006I5V3 Targus TSB312 16 Sport Deluxe Notebook Backpack: Electronics electronics 5 of 5 4.0 Quite a company for a college student December 21, 2005 cupiemayo "cupiemayo" Santa Barbara, California This backpack has been such a useful companion for me. There are lots of space inside even for huge text books, and compartment is arranged just right to hold variety of stuff---CDs, DVDs, paperback books, pens, cell phones, water bottles, etc., etc. There are numerous creative ways of storing stuff. Indeed my whole life as a student can be inside at once. As a notebook backpack, this would not provide the best protection. Padding is fine, but depending on how much stuff you have a notebook inside could be squeezed a bit more than you desire. Also, the clip to fix the cover flap onto the backpack almost is broken after a year of daily use for me. I have had Dell 14" and 15" laptops with the backpack and fitting was just fine for securely hold it inside. Wearing comfort is pretty good, and things are quite adjustable for your body. I would recommend this backpack if carrying more than a laptop, e.g., testbooks, is essential for you. P.S., I ended up using a warranty support to fix the buckle. Targus's customer support is first rate---prompt, courteous, and reliable. They actually replaced the backpack with a newer version of the same product. Their service totally make them highly recommended B000A3X2GQ:just_a_little_wobbly:k._danforth_"yy2wry" B000A3X2GQ Belkin TuneDok Car Holder for iPod Black: Electronics electronics 2 of 2 4.0 just a little wobbly March 24, 2006 K. Danforth "yy2wry" Chandler I had to 'fix' this ipod holder with a bicycle hand grip to stop it from shaking my ipod. I have a decent car and the roads are just ok but this thing shakes and shakes. I also put one of those beer coolers around the base of the foam hand grip and its now rock solid. Oh yeah and it holds the ipod just right too. I also put some of those velcro dots on the bottom for a little more security from my cup holder B000A3X2GQ:looks_cool_even_with_a_white_ipod.:j._o._s._rodriguez B000A3X2GQ Belkin TuneDok Car Holder for iPod Black: Electronics electronics 6 of 6 5.0 Looks cool even with a white iPod. October 23, 2005 J. O. S. Rodriguez Mexico I hadn't seen this product in stores as I usually would see the white TuneDok which seemed pretty cool but I decided to buy this one online to go better with my black car (I have a white 40GB 4th generation iPod). The holder is everything you would expect and it did work a little better than I expected. It's very easy to just place the iPod in the holder and very easy to take it off. You can do it with one hand. You just pull back the small tab of the suction thing on the back and your iPod is easily removed and ready to go. The additional cup adapters is an added bonus for those who need them, but the standard one was enough for me. The part that is black and holds the iPod is what seems to be the best thing about the product. As far as I know the cups are the same grey color for both the white TuneCok and this black version, so the difference is only in the iPod holder and not the cups. The only "bad" thing I could say is that the cup itself is made of a rubbery plastic that scratches easily. In fact when I was trying to figure out what the adapters were for (before reading the manual..oops), I scratched it quite a LOT trying to fit the two additional cups together. That doesn't affect functionality so it doesn't make me give it less than 5 stars. A small issue you might want to consider as well is that the TuneDok doesn't hold iPods in their cases. So if you're like me and carry your iPod everywhere in a case you might wan to consider having a case that is easy to put on the iPod and remove it to avoid the hassle everytime you want to place the iPod on the TuneDok. I like how the black TuneDok looks with my white iPod. It kind of makes the iPod stand out more than the TuneDok itself. I think the $15 price is pretty reasonable for the white TuneDok, and this one is too if you're willing to pay the extra $5 for it to go with your U2 iPod. But as I said, I think my white iPod looks cooler in my black car with the black TuneDok anyway. Edit: I bought it for $20, but now it's $15. One more good reason to get this one. I'm not too sure, but it seems like the new 5G iPod fits in the TuneDok. If they do, I bet this product is going to turn into a top seller soon enough as the demand for the black iPods is greater than the white one. Maybe someone who gets their 5G iPod can confirm this, so don't buy this for your 5G iPod unless you're already sure or can try it before you buy it B00006IRUC:jf_review:james_e._floyd_"arctic_dude" B00006IRUC Epson Premium Glossy Photo Paper (S041667, 8.5x11, 50 Sheets): Electronics electronics 5.0 JF Review August 11, 2005 James E. Floyd "Arctic Dude" Woodbury,MN USA Works better than any other glossy paper I have used with my Epson 960 B0000TSII2:great_notebook_case:w._c._swanke_"willie_c." B0000TSII2 Port PR600 3.1 Notebook Backpack - Black (1680D Ballistic Nylon): Electronics electronics 1 of 1 4.0 Great notebook case June 22, 2006 W. C. Swanke "Willie C." Hendersonville, TN United States I purchased this for my wife who wanted a case for her HP Pavilion Notebook PC (DV5139US), screen size 15.4", ht 1.8", wdth 14.1", depth 10.4 ". The bag is for personal use, not business, and use will be moderate. She did want some extra compartments for organization. This case has met all her needs, it is light weight, constructed of durable material, well organized. Her notebook fits in this top loading case with ease. She is satisfied with this purchase. We would recommend purchasing this case. B00076SC4S:1_gig_of_sony_memory_is_not_too_much!!_i_have_2_for_each_camera!:ryan_hanan B00076SC4S Sony 1 GB Memory Stick Pro ( MSX1GS/GST ): Electronics electronics 2 of 3 5.0 1 gig of Sony memory is NOT too much!! I have 2 for each camera! November 9, 2006 Ryan Hanan Oakland, CA USA I have owned many Sony cameras in the past and am currently using two right now. The only problem I have encountered with any digital camera is that when you think you have enough memory, you run out when you need it most. That is why I upgraded all of my cameras from 256 and 512 meg memory sticks to the Sony 1 gig. Actually I carry a spare 1 gig too where ever I go. Look, when you take video with your digital camera or you use a high file size (3-6 megapixels) per picture, which you should always do to get the best possible prints made, your camera will need a ton of storage space. Especially if you are on vacation or encounter a great photo moment or maybe even something you hadn't expected like a wildfire, a plane crash, a bank robbery or maybe even a cat in the park having kittens. You can always "resize" you photos to a smaller size later when you save then to your computer if you want to save space. Trust me, take large megapixel pics now and you will be amazed at how many shots came out better that you expected. You never know. I have tons of pictures that people ask how did I ever get such good pictures of such amazing things. I have a helicopter crash, police car up a power poll, deer in downtown Oakland, house fire before the Fire Dept got there, tons of wild animals, any many more things I saw while I was driving somewhere or walking in a park. If you want great photos you have to be prepared when the moment arrives! Matching a camera with its name brand memory is also a great idea. No problems ever!! The Sony memory sticks I have from 5 to 6 years ago still work great with no problems. They make it fast and easy to transfer data from your camera to your computer. They are tiny wafer thin and extremely light weight and durable. I have first hand knowledge that products with the SONY name on it are first rate and high quality. If you want quality buy SONY B0007VJ7I8:everything_is_labled_for_the_game:michael_a._kortz B0007VJ7I8 Ideazon Battlefield 2 Limited Edition Keyset for Zboard: Electronics electronics 7 of 7 4.0 everything is labled for the game July 19, 2005 Michael A. Kortz at first, the keyboard looked cheap and the keys were in slightly different places than normal, but after time, I got used to the layout, and found that the keys actually work surprisingly smooth. It probably helped my game a bit. The extra bit on the front of the board did break off after 2 weeks, but I didn't like using it anyway B00008VF91:looks_great:john_mclaurin B00008VF91 Monster Cable THX SP 16-100 Standard THX-Certified Speaker Cable (100 Feet): Electronics electronics 1 of 4 5.0 Looks great August 30, 2006 John McLaurin San Diego, CA USA I bought this speaker cable because I wanted it to fall in a straight line and hug the walls without curling all over the place. This cable does just that. I'm very happy with it. If that is your goal too, I can recommend this cable. Regarding the long standing debate of whether Monster cable sounds better than cheaper cable, I'm not an audio engineer and don't have an opinion B00019068G:best_fm_transmitter_for_ipod_i've_used:marybeth_carroll B00019068G Monster Cable A-IP-FM-CH iCarPlay Wireless FM Transmitter for iPod: Electronics electronics 4.0 Best FM Transmitter for iPod I've used October 25, 2006 MaryBeth Carroll Bellmore, New York United States I've used the iTrip by Belkin, the TunecastII by Belkin, and this Monster iCarPlay for getting my tunes to my car speakers. This is the best design and works the best of the three. I like that it can charge my iPod and that the transmitter itself is inline. The signal seems to be decent enough, though of course it crackles sometimes or you hear a bit of static. This gets more pronounced the louder you make it. I think this is the safest for car use. The iTrip is a nightmare because you have to change the station through the iPod. So if you're taking a car trip (I live in NY but went to college in MI -- that's a 12 hour drive) and signals are coming in and out and you need to adjust, you really can't do it safely with the iTrip. The Tunecast is a bit better, but that runs on batteries (the optional charger/power supply that I got for it didn't work). Also, you can tune into any FM station with the up/down buttons, which is good, but you really only need the lower stations. The iCarPlay has 8 frequencies it can transmit over and only 1 button. Though I feel limited by the 8, I don't think going higher would help because there's more congestion. I like the single button because there's no confusion whether you're going up or down and you can press the button, then easily tune the radio up a notch. The other limitation I see is its iPod specific (uses dock connector) whereas the Tunecast just hooks into the headphone jack and it only works in cigarette lighters so you can't use it without a car (or something else with that power source). But considering I bought it to use in my car, it does what it should and does a decent job of it B00000J09V:best_answerer_i've_had:ralph_g._merrill B00000J09V GE 29869GE2 Digital Answering System with 4 Mailboxes: Electronics electronics 4 of 4 4.0 Best answerer I've had August 31, 2006 Ralph G. Merrill Boulder, CO USA Works precisely as advertised. None of the complaints in previous reviews hold for my experience. Specifically, battery backup works and sound quality of messages is excellent. Only negative: too many words spoken by the machine and they sometimes seem to overlap B00000J09V:great_item:al B00000J09V GE 29869GE2 Digital Answering System with 4 Mailboxes: Electronics electronics 2 of 3 5.0 Great Item August 24, 2006 Al Missouri We replaced a tape unit with this one and are so pleased. No more waiting for the tape to rewind and this one keeps the messages once played until you remove them. Also very accurate on time. We love it! B00000J09V:i_like_it._i_recommend_it._:arthur_radley_"boo" B00000J09V GE 29869GE2 Digital Answering System with 4 Mailboxes: Electronics electronics 8 of 8 5.0 I like it. I recommend it. August 15, 2006 Arthur Radley "Boo" North Carolina The things I like most: 1. My recorded greetings (two greetings allowed) and my caller's messages are clear and clean. 2. The unit's appearance and styling is sleek and modern. The controls layout is good with everything in view and accessible on the top. My last machine had some of its controls on the sides causing me to have to pick it up and turn it around and around looking for a particular control. This machine is better in that respect. 3. Learning to use it is a very easy and intuitive process especially if you have used other machines. The included instructions clearly explain how to use its less obvious features. Things I didn't like: Nothing, really. But some minor annoyances include: 1. The electronic accent of the generated voice of the machine was a little hard to understand at first. But I quickly "learned" its accent. Your callers will never hear it after you record your own greeting which will be clear and sound like you. Otherwise, your callers will hear a default message in the machine's voice. 2. I installed the 9 volt battery first and the unit would not turn on when plugged into AC. Removing the battery, then plugging in the AC, then installing the 9 volt battery allowed it to power up and work normally. The battery installation instructions and general installation instructions did not indicate any particular installation sequence requirements regarding the battery B000F73ZNM:very_good_phone:ray B000F73ZNM Uniden CEZAI998 EZ-Dial Large Button Cordless Phone with Caller ID: Electronics electronics 1 of 1 5.0 Very good phone November 9, 2006 Ray Lancaster, CA Bought it for my elderly mother, who is getting hard of hearing. The volume control on each handset has helped her a lot. She also says that the clarity from the handset is better than anything phone she's had before. The extra large size base unit dial buttons are also very helpful for her B000FH5BYS:excellent_product_and_service!:carol_mcwhirter_"missmac" B000FH5BYS Samsung TR50X3BX Adjustable DLP TV Stand for HL-S5086, HL-S5087, HL-S5686, HL-S5687, HL-S6186 and HL-S6187: Electronics electronics 4.0 Excellent Product and Service! November 5, 2006 Carol McWhirter "missmac" Dallas We received our DLP TV stand in record time. We had wanted to get it for a new tv that was being delivered that weekend. We ordered on I think a Tuesday and it was at our office on Friday. It was in excellent shape and we had no trouble putting it together. The tv fit perfectly! B0007QDGZ8:digital_clock:sandy_smith B0007QDGZ8 Sony ICF-C492 Large Display AM/FM Clock Radio: Electronics electronics 1 of 1 4.0 Digital clock November 12, 2006 sandy smith The numbers on the clock are not bright enough to see in the day light I wish they were brighter and bigger B00005T3UH:don't_upgrade_the_reb_1100!!:bina B00005T3UH RCA eBook Reader (REB1100): Electronics electronics 24 of 26 4.0 DON'T Upgrade the REB 1100!! November 6, 2004 Bina Just a note to future readers - If you take Gemstar up on their offer to "upgrade" this model you will receive some nice new features, however what they don't tell you is that your machine will become PROPRIETARY! All the books you had before will become unreadable and your ebook will only be able to "read" Gemstar books in the future. This means you are force to buy all future books from the Gemstar catalog only! The new features that come with this upgrade to the 1150 model are hardly worth being locked into one ebook vendor forever. The openness of this little model is it's beauty - it's the last one of it's kind, as all future models are proprietary B0001FV3AK:how_can_you_go_wrong?:diane_c._stoltz B0001FV3AK SanDisk 512 MB Cruzer Titanium (SDCZ3-512-A10, Retail Package): Electronics electronics 5.0 How can you go wrong? November 2, 2006 Diane C. Stoltz This was a very highly rated item on CNET. At the price I paid for it at Amazon it was like they were GIVING it away B00083LJ5Y:spectacular_capacity:j._goodwin B00083LJ5Y Sony 2 GB High Speed Memory Stick PRO Duo Media (MSX-M2GN): Electronics electronics 3 of 4 5.0 Spectacular capacity August 8, 2006 J. Goodwin Jacksonville Just spent the weekend photographing and video recording lots of activity and didn't even get close to capacity. This is fantastic B00083LJ5Y:ipod_uses_30_gb_hard_drive;_2gb_memory_stick_is_flash_memory:v._calvin_hoe B00083LJ5Y Sony 2 GB High Speed Memory Stick PRO Duo Media (MSX-M2GN): Electronics electronics 4 of 20 5.0 iPod uses 30 GB hard drive; 2gb memory stick is flash memory May 17, 2006 V. Calvin Hoe Colorado Springs, CO United States 2gb of flash memory will not be destroyed at high altitude or dropped short of shattering the memory stick. A 30gb hard drive as in the iPod 30g (that my son has) is subject to air pressure, shock and temperature domain that a flash memory device will not be subject to. Because the hard drive spins to lift the heads above the disk, moisture from condensation will cause the head to crash if, brought in from a cold car and turned on. I do not know about the iPod but some larger devices have dew point detector that will not spin up unless the air in the device is at safe temp. THAT's WHY.. B0007U6IFY:very_pleased_at_the_price_and_sound.:j._collins_"world_traveler" B0007U6IFY Logitech mm22 Portable Speakers for iPod: Electronics electronics 1 of 1 5.0 Very pleased at the price and sound. August 14, 2006 J. Collins "World Traveler" Camp Humphreys, Korea I am pleased at the sound of these speakers. I feel that for the price, it was a good purchase. The carrying case that is included is a nice addition. You can use the included A/C adapter or run it on batteries. Not only do I use these speakers with my iPod, but also for my Mac Book laptop. I don't need an overbearing sound, but these portable speakers are just right B00008SCFL:muy_bueno..._recomendado:s._daniel_"saint_luke" B00008SCFL Netgear WGR614 802.11g Wireless Router: Electronics electronics 1 of 2 5.0 Muy bueno... Recomendado November 9, 2006 S. DANIEL "Saint Luke" Caracas, Venezuela Kit completo para colocar una peque�a red inal�mbrica casera, sin problemas. Sencillo de instalar, tanto que cualquier bolsa sin experiencia puede hacerse con este kit. Tiene se�al fuerte, sin atenuaciones. Saludo B00003CWEI:best_cable_to_connect_your_dvd_player_!:steve B00003CWEI Monster Cable MV3CV-1M Monster Video 3 High-Resolution Component-Video Cable: Electronics electronics 6 of 9 5.0 BEST CABLE TO CONNECT YOUR DVD PLAYER ! August 2, 2001 Steve Ohio I purchased a Sony WEGA 27 inch tv. I took advantage of it's rear component input labeled video4. I connected my Sony DVP360 Dvd player. With dvd viewing, the movie Dinosaur, Bug's Life, Toy Story 1 and 2, and Vegas Vacation, the colors were very vibrant, details were dynamic, and the picture quality was very accurate in at least 480 lines of resolution. I have viewed these same movies on larger screen HDTV's such as the Pioneer Elite and was disappointed??? Glass picture tubes provide a more realistic picture. I can't imagine that I can do any better for my television than these cables. I am completely happy with dvd movie watching on my Sony WEGA with these Monster component 3 cables B00005B9W6:repairs_xbox_games_perfectly:greg B00005B9W6 Skipdoctor CD Repair Kit: Electronics electronics 4 of 5 5.0 Repairs xbox games perfectly December 26, 2005 Greg New Jersey I had a game that would not even play on the xbox because it was so scratched. After using the Game Dr. It works perfectly. It is like i bought a brand new game. The Game Dr. was pretty easy to use too B000BMFYGW:fantastic_!!!!:han32some_"k32k" B000BMFYGW Panasonic PT-AE900U Home Theater Projector: Electronics electronics 5 of 11 5.0 Fantastic !!!! March 9, 2006 Han32some "k32k" Burlington, MA This is a fantastic home projector. I am a very picky electronics fan. This exceeded my expectations. The colors are RICH, bright & great. Panasonic produces best colors. I own their camera, camcorder & now this. I am going to buy their HDMI DVD playe B00005T6GZ:truoble_free_internet:j._murphy_"average_guy" B00005T6GZ Linksys BEFCMU10 EtherFast Cable Modem: Electronics electronics 5.0 Truoble Free Internet November 4, 2006 J. Murphy "Average Guy" Chandler, Arizona I have paired this with my Linkysys wireless-g router and I have not had any problems with either. The modem installed without any issues. Prior to this modem I was using an RCA which began having connection problems. Since the Linksys install I have rock solid connection to the internet and a more stable wireless network. Previously I would expirience intermittant "drop outs" and would have to reboot. Currently I couldnt be more satisfied has been a good 3 month B00005T6GZ:linksys_befcmu10_etherfast_cable_modem:c._ildefosno_"gadget_guy" B00005T6GZ Linksys BEFCMU10 EtherFast Cable Modem: Electronics electronics 5 of 6 5.0 Linksys BEFCMU10 EtherFast Cable Modem August 3, 2006 C. Ildefosno "Gadget Guy" Geneva, IL The product was easy to load onto my Windows based computer using Windows XP. I connected everything as instructed and as soon as I plugged in the TV cable to the back of the modem, My internet explorer picked up the signal and put me at the log in page for new accounts of my cable provider. The modem comes with both a USB and 100T ethernet adapter port, so use whatever way works best for you. I tried them both and they appear to work at the same speed. I am guessing it all depends on the speeds your cable provide is delivering. Amazon had the best price on the product if you have the time to wait for their free shipping. I ordered some stuff from them in the past and the free shipping seemed to take forever. You may want to factor in paying the additional cost for shipping when buying this product if you need it right away. The price, even with the additional shipping charge is still a little less expensive than Best Buy. The cost difference between buying it at a Best Buy store and Amazon online will not be much, and you'll have to wait a few days to have it in your hands, but you get to avoid the drive to the store. I went this route, paid the extra shipping and waited for my package to arrive. If time is not an issue, then use the free shipping method and you will discover that Amazons Price can't be beat, it is the lowest price anywhere. B00003CW9R:great_cables:"topgun8" B00003CW9R Monster Cable I400MKII-2M Interlink 400 MkII Advanced Bandwidth Balanced Audio Interconnect: Electronics electronics 2 of 2 4.0 Great Cables February 7, 2003 "topgun8" Chicago, IL USA I bought these for my dvd player. They work wonderfully! The old analog cables that came with the dvd player looked alright but [didn't measure up}. These monster cables definately enhance the sound of my dvd movies, especially the dialogue. The old cables that I had made my movies sound a bit muffled. But the monster cables intensified the clarity from the dvd player to my reciever. For those of us who cannot afford 5 speaker digital surround sound, I would definately recommend these cables if you use regular 2 channel stereo for your movies or CDs B00012OJ22:very_usefull_comes_with_adapter_included_:juan_seminario B00012OJ22 SanDisk SDMSPD-512-A10 512 MB MemoryStick Pro Duo (Retail Package): Electronics electronics 5.0 Very Usefull comes with adapter included August 15, 2006 Juan Seminario Peru I PURCHASED 2 CARDS FOR ABOUT us$ 42 FOR MY psp they work Ok. I had other sandisk products and dont have any complaints. Best of all these cards came with the Adapter Memory Stick Pro duo to Memory Stick. So I could use it with my videocamera. Its nice when one company starts addresing the multiple formats problems. B0009SY78Y:working_just_as_new_and_new_firmwave_version_4.32:zhichao_huang_"zhi_chao_huang" B0009SY78Y Remanufactured Magellan RoadMate 700 20 GB Vehicle GPS Navigation System with Windshield Mount: Electronics electronics 5 of 7 5.0 working just as new and new firmwave version 4.32 March 24, 2006 Zhichao Huang "zhi chao huang" I just bought a refurbished Roadmate 700 a few days ago. It took minutes to locate my current location, which was totally normal. I kinda feared that I would have the GPS with the older version 3.2, as some people said earlier. But in fact, the one that I got is with firmwave version 4.32, the newest version. The voice is working good too. I am happy with this product, even though it is a refurbished one B00009ZOHD:great_value:alyssa_a._lappen B00009ZOHD MAXELL 723849 Alkaline Battery Multipacks (AAA 20pk): Electronics electronics 11 of 11 5.0 Great value August 12, 2006 Alyssa A. Lappen Earth If you go through a lot of AAA batteries, this is one of the best deals on the market, short of investing in a recharging unit and a couple of rechargeable batteries. A very good value B0000AZK27:wicked_good_back_pack:p._b._panagore B0000AZK27 Kensington 62238 Contour Backpack: Electronics electronics 2 of 2 5.0 Wicked Good Back Pack August 10, 2006 P. B. Panagore Maine A sore back and a sore shoulder forced me to search for a better means to carry my laptop. I took a month to research laptop backpacks and finally settled on the Kensington Contour. I didn't want to buy a Kensington. I wanted a backpack making company with a name I knew, like Jansport,or Kelty. I've been a backpacker and was familiar with their products. I settled on the Kensington because it had the qualities I was seeking: comfort, quality materials and design, water proofing, laptop padding, urban black, rugged exterior, sophisticated appearance, lots of pockets, adjustable lumbar support with back padding and a water bottle pocket. I write and work in media for a living. Mostly I work at home, but once a week I travel to cities. This pack does exactly what I want it to do - have places for everything I need, protect my precious laptop, and look hip. So now it is a few months later. I still like my pack, but twice now the hardware has broken. The first time it was just the zipper-handle on the little outside pocket. It fell off. Kennisington immediately replaced the pack for free. Last week at the airport the tab that holds and adjusts the left shoulder strap-- broke when slung the pack across my back. I haven't contacted them yet B000CS7U1C:a_bit_bulky,_but_it's_all_good:ma_rowena_v._reyes B000CS7U1C Creative Zen Vision:M 30 GB MP3 and Video Player (Black): Electronics electronics 7 of 7 5.0 A bit bulky, but it's all good November 15, 2006 Ma Rowena V. Reyes Quezon City, Metro Manila Philippines As a journalist, I need to tote around a microcassette recorder with me wherever I went. Now, with the Zen's microphone/recording feature, I'm able to use it to record my interviews, and it's easier to transcribe because of its clear, crisp recording quality. You can also play .avi files, so unlike iPod users, there's no need to convert them in order to view them. Many might find it a bit bulky compared to the new iPod, but with its added features, it's a small flaw that's easy to overlook. B00005T3B5:good_deal:bin_liu B00005T3B5 TDK MiniDV Tapes, 60 Minute (3-Pack): Electronics electronics 0 of 1 4.0 Good deal February 26, 2006 Bin Liu USA So far I used one tape of this pack. The video quality is pretty good B0002LEMWE:outstanding_media:kenneth_wallace B0002LEMWE Verbatim 3 Pack 8.5GB DVD+R Double Layer DVDs with Jewel Case (95014): Electronics electronics 2 of 2 5.0 Outstanding media March 8, 2006 Kenneth Wallace Blairsville, GA USA Short review: Have burned about twenty disks, all work perfectly. Have made home dvds out of them, all work in three different regular dvd players that I've tried. Very satisfied with them B0002LEMWE:great_dual_layer_discs_(just_update_your_firmware_first):a._clark B0002LEMWE Verbatim 3 Pack 8.5GB DVD+R Double Layer DVDs with Jewel Case (95014): Electronics electronics 8 of 8 5.0 Great Dual Layer Discs (Just update your firmware first) November 24, 2005 A. Clark To avoid burning a coaster, update the firm ware on your dual layer compatable drive first ([...]). The Verbatim discs seem to have fewer compatability problems than the other brands I've tried. If your home DVD player is not dual layer compatable, you may experience some problems. It's normal for the movie to stop momentarily when it switches to the second layer. For best results with movies, I burn these as slow as possible. For data storage, they will burn at 8X no problem. These discs work as advertised. If you're torn between Verbatim and another brand, I would opt for Verbatim discs. They really do work the best B000EWHH7I:the_best_usb_drive_out_there:s._j._wilson B000EWHH7I SanDisk 2 GB Cruzer Titanium ( SDCZ7-2048-A10, Retail Package): Electronics electronics 5.0 The best USB drive out there November 10, 2006 S. J. WILSON San Diego, CA The SanDisk Cruzer TI is the most durable thumb drive on the market. I had a 512MB Cruzer TI before this one. I dropped it stepped on it and was just not too careful with it. Through all that it never failed me. I needed an upgrade and picked this one, because the 4GB was not available. It move data fast and the new U3 stuff is very interesting. I am not all that used to the U3 stuff yet, but I am sure I will start to use it to its fullest soon. Co-workers of mine buy the less expensive USB drives and break them. The SanDisk Cruzer TI is the absolute best B000EWHH7I:my_last_"jump_drive":k._b._jensen_"advanced_user" B000EWHH7I SanDisk 2 GB Cruzer Titanium ( SDCZ7-2048-A10, Retail Package): Electronics electronics 5.0 My last "jump drive" November 6, 2006 K. B. Jensen "Advanced User" Pedro Bay, Alaska I had a small 512 Sandisk a while back, so when I saw a review for the Titanium 2GB Cruzer in a popular computer mag, I decided to upgrade from my Lexar 1GB. So far, I'm very impressed. Just did a 1.26GB transfer that took 140 seconds. I was a big leery of the included software, but was pleased to see that if I didn't care for it, it was easily removed. I have not had an issue with either the software or the drive, and am very impressed with the design of the retractable interface that requires pressure to expose or retract. This is a very good drive, and contrary to the negative comments, I would encourage anyone looking for a fast, stylish, practical jump drive to seriously conside the Titanium Cruzer B00023763Y:excellent_product:jose_castillo B00023763Y Targus CVR217 Neoprene Slip Case for 17"" Notebooks (Black/Blue)": Electronics electronics 4.0 Excellent Product November 9, 2006 Jose Castillo I am satisfied by the purchase of this Targus CVR600 15.4 Groove Notebook Backpack since it is super wide, comfortable and with many compartments to keep objects apart of the laptop. I recommend it to you B0001DQ5YG:jbl_creature_ii-fabulous!:ruth_foreman B0001DQ5YG JBL Creature II 3-Piece Powered Speaker System: Electronics electronics 5.0 JBL Creature II-FABULOUS! November 5, 2006 Ruth Foreman The Sunshine State Great buy for a wonderful speaker system. Works beautifully with my MAC Mini for great sound. Would not hesitate to purchase again. Great contemporary look on my desk. So easy to turn the volume up or down either from my screen or the subtle touch control on the Creature. I highly recommend B0001DQ5YG:great_speakers:clark_kent B0001DQ5YG JBL Creature II 3-Piece Powered Speaker System: Electronics electronics 5.0 Great Speakers November 2, 2006 Clark Kent I recommend these speakers - have had them for 3 months now and they are great - sound quality is great. Power converter gets pretty hot though so i suggest putting it on something non flammable - don't think it would catch anything on fire but just to be safe. Speakers are not super loud but are great if you just want quality sound. B00003CWEJ:great_cable_at_good_price:panukorn_vichaikul B00003CWEJ Monster Cable MV3CV-2M Monster Video 3 2-meter High-Resolution Component Video Cable: Electronics electronics 9 of 12 5.0 Great Cable at Good Price November 17, 2001 Panukorn Vichaikul Kissimmee, FL USA Recently bought a Analog Big Screen TV. Switched from S-Video to Component cables. There is a big difference. The picture looks more film like with Component cables. Do not hesitate to upgrade. Stay away from cheap Wally World brands. You get what you pay for. The S-Video cable I used was Monster Cable M1000 sv B00009EBYA:best_$80_i_ever_spent_on_portable_electronics:p._bergin_"flying_coyote" B00009EBYA Targus PA870U Universal Wireless Keyboard: Electronics electronics 5.0 Best $80 I ever spent on portable electronics April 13, 2005 P. Bergin "Flying Coyote" Brooklyn, NY United States I got one of these a few years ago. It's been to several countries, on camping trips, bicycle trips, subways, etc etc and held together very well. I pop this and the handspring into my pocket and off I go, not lugging around a huge laptop anymore. The typing is comfortable, this is just like a laptop keyboard, and while I too have worried about the little popup part where you connect the handspring, it's taken a beating so far. I'm buying another preemptively because I'll be so bummed when I do eventually manage to break the current one. The hinge in the middle is annoying - you have to put the thing on a book or other flat surface to hold it in your lap. I think that when the new one comes, I'll try to create some kind of deadbolt mechanism to hold the middle hinge when it's open and then it will be the single most perfect gadget ever B0002TJDPW:good_investment_:david_andrew_moller_"dave" B0002TJDPW Saitek PC Gamer's Keyboard: Electronics electronics 4 of 4 5.0 Good Investment August 2, 2006 David Andrew Moller "Dave" San Luis Obispo, CA Let me just preface this review by mentioning that I read many customer reviews(here and elsewhere) on this product before purchasing it. I focused on the negative reviews as to develop a good idea of any potential design flaws. After using this keyboard for almost 6 months I believe that Saitek delivers an attractive design with solid quality. Command Pad: Many reviews bash this feature. It is quite a basic pad as compared to some, but it gets the job done. My only main gripe with the pad was how it failed to deliver some windows macros such as ctrl-alt-delete. During games such as WoW and CoD2 I had no problems whatsoever. The rumor about the horrible software and it being buggy was nonexistent for me. The customers who claimed it to be "impossible" and "buggy" seem to be computer illiterate at best, and judging from the frequency of grammatical errors in their reviews, possible English illiterate as well. If you are familiar with computer hardware then you will be fine with this software and pad. Keyboard: The quietness, response, and overall feel of the keys rival any Logitech design. I am a huge fan/customer of Logitech equipment, and thus can confidently state that this board is of equal material quality. Saitek took a more simple route with this design(no LCD screen etc...) and the price shows it. *I almost laughed out loud after recently reading some of the passionate and disgruntled reviews concerning the lack of key-symbol illumination. It is obvious that these reviewers did not know much about the product they purchased. Unfortunately failing to be informed about a product one buys totally demerits any kind of negative opinion resulting from that lack of knowledge. I would guess that 90% of the negative reviews about this board capitalize on this point resulting in a much lower overall rating than deserved. Last and probably least comes the aesthetics, of course the most subjective part of any review. I found this setup to be very sharp looking. In the dark, the vivid key definition from the backlights allows any experienced typist to quickly find whatever he/she is looking for. This eliminates the need for symbol illumination. Although symbol illumination might be a nice touch, especially for the keyboard deficient, I feel that Saitek sacrificed this option to provide very durable lettering. I have lost some lettering on Logitech keyboards sooner than the 6 months I've been using this one(Although frequency of gaming has fluctuated). Saitek Engineers probably figured that most gamers would know the keyboard well enough to not need both key definition and symbol illumination, apparently an oversight on their part. I will recap this lengthy review by recommending this keyboard to any capable computer enthusiast who desires a good value. B000ALAHSO:excellent_monitor!:brendan B000ALAHSO ViewSonic Optiquest Q7b 17" LCD Monitor: Electronics electronics 9 of 9 5.0 Excellent Monitor! September 27, 2006 Brendan www Upgraded from 19" Viewsonic CRT. This monitor is superb! Recommendation: go with native resolution, enable Clear Type through display settings, and download the monitor drivers from Viewsonic (XP uses standard drivers, not as good as Viewsonic's imo), then restart, makes a huge difference over settings out of the box. B0002INL4M:they_finally_stay_in_my_ears!:alan_e._moore_"choklat_luvr" B0002INL4M Shure PA755 Triple-Flange Sleeves for Shure Sound-Isolating Earphones (1 Pair): Electronics electronics 8 of 8 5.0 They finally stay in my ears! October 17, 2005 Alan E. Moore "Choklat Luvr" Sanford, FL I love my Shure E3C earphones and up until recently was pretty happy with the foam sleeves. However, I was constantly having to reset them in my ears when engaged in strenuous activities. The first time I tried these triple flange sleeves I thought I had wasted my money. Later I pulled my ear up and they slid in a lot further... and suddenly I was in heaven. I get the full sound that I love so much complete with throbbing bass line AND the things stay in my ears until I pop them out!! These are the perfect complement to a wonderful headset : B0000C4DX6:ok_product,_so-so_design:theodore B0000C4DX6 Kensington 64338 Comfort Type USB/PS2 Keyboard (PC/Mac): Electronics electronics 3 of 4 4.0 Ok product, So-so design March 9, 2006 Theodore It says the keyboard is supposed to be easier and more comfortable to type with. I don't think it is that comfortable. It's a little hard getting used to, so be prepared to hit the backspace a couple of times. The keyboard is 100mA and uses USB connection. There is a USB to PS/2 converter included. Overall, it is an ok product for the money, as it is the cheapest USB keyboard I've found B00005ATMG:as_promised:a._student B00005ATMG Case Logic Nylon 280-Disc CD/DVD Wallet: Electronics: Case Logic electronics 0 of 1 4.0 As promised November 10, 2006 A. Student Arrived in time, decent quality for the price. Is a bit difficult to close though, as the zip isn't awesome. But as I said, it's good for the price B00005ATMG:cd/dvd_wallet:neeshal_n._desai_"nee" B00005ATMG Case Logic Nylon 280-Disc CD/DVD Wallet: Electronics: Case Logic electronics 0 of 1 4.0 Cd/DVD Wallet November 6, 2006 Neeshal N. Desai "Nee" NY Works great, just like ti should, can add more sheets to store more. B000E8POQ8:good_skin...good_price.:k._kim B000E8POQ8 iSkin Eclipse 60GB/80GB Video iPod Protector - Black (EVO3EC1-B): Electronics electronics 4.0 Good skin...good price. November 14, 2006 K. Kim This is a very good skin for 60 GB & 80 GB owners. It completely covers the entire iPod without sacrificing functionality. What separates this skin from other skins it the Visor (a plastic shield which protects the screen). My only problem with this skin is the belt clip. It is impossible to remove and difficult to use. A better belt clip would make this the perfect skin. This is a very good price from TechGNet. B000BFHWX2:a_new_definition_to_sound_quality:gabriel_meguira B000BFHWX2 Creative Sound Blaster X-fi Elite Pro ( 70SB055000002 ): Electronics electronics 19 of 21 5.0 A New definition to Sound Quality October 24, 2005 Gabriel Meguira israel I have this card for a week, and what I can tell you is that this card has a quality that I've never heard from any sound card - the sound is so clean, balanced and accurrate. of coure, you will need a good set of spekaers. the CMSS surround is much better than Dolby Prologic 2 and DTS neo 6 for both music and movies. if you plan to connect the DIN cable for Integrated speakers control with the Megaworks or Gigaworks, you should know that it's not working, but Creative is going to add support for those speakers in the following drivers. I didn't like the new 24-bit Crystalizer sound, but belive me you will not need that feature, just use good mp3 player like Winamp 5+ MAD mp3 decoder plug and ASIO plug for the output. I had many sound card like the Audigy 2 , Audigy 2 ZS, Audigy 4 Pro, ESI Juli@, M-audio Revolution... and none of theme even close to this card!!! worth every $$$!!!! I recommend you buying from amazon beacuse of thier great service and warrnty, I could't do that because I am outside USA B0000AOWVC:great_product:keith_graves B0000AOWVC Belkin F8V366-APL Ipod Mobile Cassette Adapter: Electronics electronics 4 of 4 5.0 Great Product February 24, 2006 Keith Graves Brattleboro, VT The Belkin cassette adapter was my 2nd attempt at a product that would allow me to play my iPod through car cassette deck. The first, non-Belkin, product (can you say Monster here?) was crap...stopped working properly after two weeks. The Belkin adapter has performed flawlessly for 2+ months now B000069K8O:great_all_purpose_remote:b._tierney B000069K8O One For All URC 9910 Premium Learning Line 8-Device IR/RF Upgradeable Universal Remote Control: Electronics electronics 4.0 Great all purpose remote November 9, 2006 B. Tierney I have long struggled to find the perfect remote. The URC9910 isn't it, but its pretty good. Its no match for my Harmony 880 but it also costs a whole bunch less and works through walls. I have 2 URC9910s, both programmed identically for my main HT. The cabinet also contains a second reciever and a sound distribution center for the other rooms in the house. The kids can be using one URC9910 with the TV/HT and I can be in the basement or outside and control the volume of my music with the RF part of the second URC9910 remote. For the price you can't beat it. All buttons AFIK are progammable or mappable. Setting it us is a pain and I had to find some pretty obscure codes on the internet to get my TV to do its thing so that is where it looses a star. Otherwise its a great performer and with the price, I don't mind if my kids use it, whereas, they aren't allowed to use my Harmony 880. If cost is no object, then there are better remotes. For the price, I can't find one better B0009MX5R4:great_dvds:christopher_"chris" B0009MX5R4 Memorex 16X DVD-R (100-Pack Spindle): Electronics electronics 4.0 Great DVDs November 3, 2006 Christopher "Chris" Chicago, IL Only thing I did not care for was the design on the top of the disk. Other than that, these are quality DVD B000I5LAFQ:elegant!:g._mettetal B000I5LAFQ Canon PIXMA MP600 All-in-One Photo Printer (1451B002): Electronics electronics 3 of 3 5.0 Elegant! November 9, 2006 G. Mettetal Mishawaka, IN USA I bought this to replace an Epsom printer that refused to print accurate color, and an old Canon scanner. I am very, very pleased! It looks terrific (my daughter said, "Wow, cool new printer!"). Set up was easy. And the printing is fast and absolutely beautiful, even in draft mode. Better yet, the cartridges are much cheaper than my Epson ones. Scanning is easy and good, too. I don't use fax, so can't rate that function. Overall, I am thrilled with this printer. It was well worth the $180 B00061RWR2:2_cents_per_page.:lincoln_thompson_"lincoln" B00061RWR2 HP Q5949X Black Toner Cartridge (HP LaserJet 1320): Electronics electronics 7 of 7 5.0 2 Cents per page. May 18, 2006 Lincoln Thompson "Lincoln" Kentucky I received the correct Q5949X cartridge. My calculations for cost per page is only 2 cents per page, which is contrary to another reviewer's claim of 12 cents per page. $120.00 divided by 6000 pages equals 2 cents per page. B0002XM01C:it_will_do.:melissa_beeman B0002XM01C Kensington FM Transmitter/Auto Charger for iPod (White): Electronics electronics 1 of 2 4.0 It will do. March 27, 2006 Melissa Beeman Mesa, AZ USA If you are like me and dont really care about the "best" sound quality you can possibly have, and don't mind the tiny bit of static (keep in mind I live in a city) then this is for you. Its simple, it works, and Im glad that I bought it, and that it didnt break the bank. I like it B0000A1EDV:it_does_exactly_what_i_needed:p._heath B0000A1EDV Targus PA243U Notebook Portable Lapdesk: Electronics electronics 12 of 16 5.0 It Does Exactly What I Needed November 22, 2005 P. Heath Hurst, TX United States I have a Gateway CX2610, and it always got hot in my lap after about 10 or 15 minutes. Enter this Targus lapdesk. When folded out, it provides a nice buffer between my lap and the heat of the laptop even when using the laptop for upwards of two hours. But wait, there's more! I had also found my laptop awkward to use at a desk because of the poor ergonomics. However, I use this lapdesk folded with the adjustable leg to reposition the keyboard to a better angle for typing. It also puts the screen at a better height as well. The desk also works well folded in half with my laptop converted to tablet mode. So, it's a very versatile accessory to go with my versatile laptop. I highly recommend it B000068P8R:cyber_acoustics_computer_speakers:wu-tang_assassin B000068P8R Cyber Acoustics CA-3550 2.1 Computer Speaker System (3 Speakers, Black): Electronics electronics 1 of 1 4.0 Cyber Acoustics Computer Speakers December 30, 2005 Wu-Tang_Assassin Central Cali I got the newer model of these, with the blue light on the speakers . All I can say is that these speakers are worth the money. You get what you pay for. These speakers have pretty good highs in them, bass wise there decent. They hit alright, and sub decent. You pay more money, you get a better system you know. This system here isn't much money, so it isn't going to be the best. So there isn't no reason for the bad reviews. I think they work really good for the price their tagged at. So if your looking for a system with some good highs, and decent bass these are for you B00013WH0M:good_overall_buy:r._ball_"rkssball" B00013WH0M PNY PSD512RF 512MB SD Secure Digital Flash Memory Card: Electronics electronics 21 of 21 5.0 Good Overall Buy September 3, 2005 R. Ball "rkssball" Concord, MI (USA I recently purchased a PNY 512 MB Secure Digital Card from Best Buy when it was on sale for $29.99 each card. I had been given a SanDisk 256 mb card for christmas the past year, which had gone curropt. The PNY is so much better and so much cheaper for virtually the same quality or better than my old SanDisk. I would recommend this product to anybody who is fed up with SanDisk or any other high priced memory manufacturer. Steve B00022RV9E:an_excellent_value!:g._butler_"paaudiophile" B00022RV9E Sony STRDE197 Stereo Receiver: Electronics electronics 6 of 7 5.0 An Excellent Value! October 19, 2005 G. Butler "PaAudiophile" Pa This was part of my Stereo update. I selected this receiver for quality, value and ease of operation. I matched it up with the Sony CDPCX355 300 CD player and a fresh pair of those Bose 301-V speakers. Years ago I used to be an audiophile and I now think I'm going to enjoy getting back into my hobby B00005T3CU:unbreakable:kellyandpeanut B00005T3CU Sony KV-36FS17 36" Flat-Screen TV: Electronics electronics 5.0 Unbreakable October 20, 2006 KellyandPeanut NC I bought a 32 inch 5 years ago. in 2003 when movie I was trying to move it across the room and it flipped face first in the floor. Mind you I had paid like $200 for Sear's sorry 3-5 year? warranty and it turned out they wouldn't have replaced it or probably fixed it even though my sister worked there. I heard a sickening crash (like the picture tube/glass breaking). It still works and only has a dent it the top left. I think I got the remote a little wet years ago and it never worked again. Not a big deal since I have a directv remote,but I forgot I even had PIP because of no remote. From now on if I can afford it I will buy sony only. I bought an xplode cd player 2 years ago with no problems except a dead remote that I never use B00005T3CU:sony_36":j._d._bremer B00005T3CU Sony KV-36FS17 36" Flat-Screen TV: Electronics electronics 2 of 2 5.0 Sony 36" September 18, 2002 J. D. Bremer St Charles, MO USA This TV weighs a ton, took three adult males to pick it up off of the floor and load it into an entertainment armoire. I have owned several Sony TVs and really thought hard about this purchase because of firmware issues that I have had with a 27" Sony. Mainly compared this model with the corresponding Panasonic Tau, absolutely hated the Tau remote and am very familiar with the Sony. Note that the remote was not the deciding criteria, but it was a consideration. I have no real complaints about this TV, the menu system is nice and the picture very good. I do not normally use the built-in speakers so really can't comment about their sound. This TV has a 16:9 enhanced mode that must be selected from the menus, I tried it once using a DVD as source input and liked the widescreen format that the DVD player provides better than the 16:9 mode. The 27" Sony that I have has an auto-volume feature, this 36" does not and I do miss it. I would purchase this unit again. Note that there is a very similar Sony model that has upgraded sound, but not consider it because the added width would not fit in the armoire B0002ZPTBI:these_are_really_a_killer_buy:steven_f._archibald B0002ZPTBI AURA PRO BASS SHAKER EACH: Electronics electronics 3 of 3 5.0 These are really a killer buy March 30, 2005 Steven F. Archibald These are amazing products for low freq. they'll really get down word of advise don't use them for higher bass freq sounds more like a grinding noise after about 75 htz. Enjo B00080L62S:fast: B00080L62S Sony 4 GB High Speed Memory Stick PRO Media (MSX-4GN): Electronics electronics 4 of 16 4.0 Fast November 24, 2005 The 4GB high speed memory card is the best it is fast and it can store so much data I cant even imagine using all of the memory but the only reason I gave it 4 stars is because it's over 700 B0009HGVZW:great_tapes:joel_clark B0009HGVZW Sony DVM-60 PR/5 Premium Minidv Videocassette (5DVM60PRL): Electronics electronics 5 of 5 5.0 great tapes July 26, 2006 Joel Clark Livonia, Michigan United States I bought these here and have had the for a little bit now. they work great. I will buy more when needed. B0007TIYA2:works_just_fine:sf B0007TIYA2 Uniden DCT648-3 2.4 GHz Digital Expandable Cordless Phone with 3 Handsets and Digital Answering System (Silver/Black): Electronics electronics 4.0 Works just fine November 3, 2006 SF CA, USA No problems w/ the phone. There is no mute button and it's annoying to hit two buttons to mute/unmute. I also couldn't find a way to change ringer volume but it's easy to change the ringer melody and there is one that's really soft. The menu is not as intuitive as it could be but overall it works just fine as a phone. B0009STJIC:a_great_product:janet_smith_"smitty" B0009STJIC Logitech V200 Cordless Mouse - Blue ( 931409-0403 ): Electronics electronics 1 of 3 5.0 A great product March 8, 2006 Janet Smith "Smitty" Brick,NJ I really like this mouse. It is easy to use and is one of the most comfortable on my hand. I have gone through a lot of mice and have finally found the one for me B00009EFQL:the_price_is_right_!:j._derosa_"defgerl" B00009EFQL Targus PA238U Ergonomic Monitor Stand: Electronics electronics 1 of 1 5.0 The price is right ! October 10, 2005 J. DeRosa "defgerl" This stand works great for bringing the monitor up to eye level. If you want to sit comfortably...get rid of back and neck strain...this Targus Stand is definately the way to go. And...the price is right B00009EFQL:an_eyesaver:nucleusaccumbens789 B00009EFQL Targus PA238U Ergonomic Monitor Stand: Electronics electronics 8 of 8 5.0 An eyesaver January 30, 2005 NucleusAccumbens789 Winston Salem, NC This monitor stand is worth every penny, and considering the price, that really isnt that many pennies. What a monitor stand does is it raises the monitor to make it easier on your neck to view. I have an IBM laptop and I place it on top of the stand. With the stand, I probably have to look down at most about 10-15 degrees. Before the stand, I would have to look down at about 35 degrees. This does not seem like much, but if you spend alot of time staring at a computer screen, your neck will be sore. Buy this stand and your neck will thank you. B0007O7DTK:like_a_glove:wikipedia B0007O7DTK Speck Products ToughSkin for iPod 4G & iPod Photo - Black: Electronics electronics 4.0 Like a Glove March 17, 2006 Wikipedia Germany The case itself fits very snug around the IPOD, and even gives it a better look. The only complaint that I have is that the plastic window that covers the dial pops open, and even falls off at times. I still give the case a 4 star rating, because I am a soldier in Iraq, and this case is doing a very good job of keeping my IPOD clean. If a product can keep something clean in Iraq, then I am guessing that it can keep things clean anywhere. B0007O7DTK:works_as_expected:stanley_j._judd_"jess1963" B0007O7DTK Speck Products ToughSkin for iPod 4G & iPod Photo - Black: Electronics electronics 5.0 Works as expected February 24, 2006 Stanley J. Judd "Jess1963" Honolulu What can I say, it's a rubber case that stretches over my Ipod. There's little room for malfunction. White would've looked better but isn't available through Amazon or its merchants without paying more than the product cost for shipping. It has little hard clear plastic windows over the screen and dial, the dial covering pops open. so far (several weeks now) they work fine without scratching B00068E570:my_first_review_of_a_product!:joel__brown_"joel" B00068E570 Sony SRS-P11Q Passive Speaker System, White: Electronics electronics 4.0 My first review of a product! November 6, 2006 Joel Brown "Joel" Bloomington, IN United States These speakers were purchased for office use and occasionally for on the road. They are a great look and compact. The sound is decent and should not be confused with higher end speakers. They serve the purpose for which they were intended as far as I am concerned as I purchased them to play my NANO I-pod. I do recommend them. B0001MHYK6:great_sound,_not_so_great_comfort.:jonathan_d._schmidt B0001MHYK6 Sennheiser PC155 Traditional Binaural PC Headset with USB and Noise canceling: Electronics electronics 16 of 16 4.0 Great sound, not so great comfort. May 2, 2006 Jonathan D. Schmidt Columbus, Ohio USA I agree with most of the reviews here. The PC155 is a great headset overall. The sound quality is great. Volume is more than adequate and fidelity is excellent. I've listened to a great deal of MP3 music through these babies and I am very impressed. Spacial/stereo imaging is great and I've actually heard things in the songs that I have never heard before! It actually shows the imperfections of my MP3 and makes me realize that I probably need to turn up the bit rate when ripping my CDs. The controls are also simple to use, both on the cord and on the PC. Audio recording quality is great as well. I have tried it with Dragon and recognition works great with it. Playback of recorded sound shows that the sound is a little on the dark side, however. Ps and Bs are a little too hot even though I have tried different mike positions and used the included wind sock. My biggest problem with the set is in the comfort department. I first feel obligated to tell you that I do not normally wear full coverage headphones. Usually, I wear high-quality buds. So, perhaps I just have to get used to it. However, I feel as though my ears are being squeezed too much with these headphones. Instead of feeling like they are comfortably secure, they feel as though they are too tight and they make my ears hot... even after only 15 minutes. So, despite my positive review of the sound quality, I am going to send these back and try the PC165. They supposedly have bigger ear cups, which will hopefully translate to more comfort? Other people here have not had problems with the comfort of the 155s so it is probably just me. UPDATE: I received the PC165 set and there is a big difference. The sound is fuller and bigger (not louder) on the 165s. Also, the comfort is much better. They don't pinch my ears like the 155s. The cord going to the headset is also thicker, which means fewer tangles and less chance of damage. If you're thinking of the 155s, I would get the 165s instead B0001MHYK6:high_quality_headset_for_internet_telephone:henry_d._friedman_"henry" B0001MHYK6 Sennheiser PC155 Traditional Binaural PC Headset with USB and Noise canceling: Electronics electronics 5.0 High quality headset for internet telephone March 18, 2006 Henry D. Friedman "Henry" Syracuse NY I purchased this headset for use with my Mac dG5 and Skype internet telephone. The combination is killer. I cannot compare to other similar equipment as this is my first and only, but for me, the quality is far better than what I have with my phone, and it was really as easy as plug and play. I wish that the headset had thicker and stronger wires; I wish that the headset was more sold. On the otherhand, I have not had any problems with the equipment up to now. And the sound quality during telephone conversations is steller, which is important to me, especially as my hearing starts to deminish. I saw some comments about the headset as an audiophile listening headphone. IMO, this is too complementary. For its price and features, a good buy and good sound quality, but IMO, this is not an audiophile headphone. B00070FHXS:tunebase_works_great:patricia_long-fosaaen B00070FHXS Belkin TuneBase FM Auto Charger/FM Transmitter for iPod Mini: Electronics electronics 5.0 TuneBase Works Great August 18, 2006 Patricia Long-Fosaaen All 3 kids have a Tunebase. It works great, easy to use. It also charges the iPod while we travel B00066UTBS:excellent_value:spirit_of_76 B00066UTBS AKG K 26 P - Headphones ( ear-cup ): Electronics electronics 3 of 3 5.0 Excellent value August 25, 2006 Spirit of 76 New York, NY I've gone through a ton of headphones in recent years. They've included Koss "The Plug," Sennheiser PX100, Koss UR29, Koss SportaPro and a few others. All had their strong and weak points. So far, this has been the closest I've had to a good balance. For my tastes (not necessarily anybody else's), strong bass is one of the most important things. The PX100 felt very weak in this area, despite what everybody else seemed to say -- weaker than my old Sony MDR-NC20 (which are still going strong after 6 years and remain my backup headphone of choice thanks to their decent sound and folding ability). I had problems keeping "The Plug" sealed in my ears, despite the "hold the outer ear while the Plug seats" advice. They're also a very a bad choice for iPods because their very low impedance overdrives the amplifier circuit. The SportaPros had great bass, but leaked way too much sound. The UR29 had good bass and very good isolation, but were a little uncomfortable, warm, heavy and too bulky to use on the go. Going back a few years, I had a pair of AKG K240s that had disappointing bass. Ditto for a pair of Sennheiser HD-420s. The K26P seems to combine the better aspects of all these phones. The bass is among the strongest. When I listen to the 1812 Overture, the "cannon blasts" come through loud and clear, even at moderately low volumes, with no distortion at all. Isolation isn't as good as the UR29, but not too bad. Certainly a lot more portable, easy to stow in my bag at all times. The PX100s fold smaller, but they're a pain in the neck to stow in their hard case. The higher efficiency of the K26P means I can set my iPod at a lower volume. Instead of 55-60% of max volume with the UR29 or the stock earbuds, I now run at 35-40% comfortably. In terms of comfort, they're comfortable enough for hours of wearing, after a couple of slight modifications. If they press too hard on your hears, first extend the headband all the way, then GENTLY straighten each half a little bit by gripping a couple of inches of steel band at a time and unbending it. After a few tries, it should be perfectly fitted to your head. Don't bend too hard or grip the plastic parts or you can break the phones. Be patient. So it takes a couple of days of trial and error, but in the end, you get good-sounding phones that are wonderfully comfortable. You'd be surprised how little pressure is needed to produce a good seal. You'll know if you've unbent too far because either the phones will slide down or you lose bass. Here's an easy test: with a finger on each side, press the earcups harder onto your ears. If the bass doesn't get stronger as you press (the way it does with all open-air headphones), that's as good a seal as you need. I hated the little, square foam pads on the plastic sliders and quickly peeled them off. All they seem to do is create two pressure points on top of the head. Other phones with similar headbands (like the Koss SportaPro/PortaPro) don't use these pads, so I don't think they're really necessary. Better to let the headband rest directly on the scalp and distribute the pressure over the entire headband, and so far my suspicions seem to have been correct. It has been far more comfortable for me without the pads, especially after more than half an hour. In fact, without the pads, I barely feel the headband at all. Overall, I'm satisified, especially at its low price point. I hope to use these for many years to come until either they break or something better comes along. By the way, don't be put off by comments about the warranty being invalid in the US and Canada. Read the whole warranty sheet! A separate section on the sheet covers a limited warranty for these countries, so yes, it is covered B000189W8M:excellant_unit:r._myers B000189W8M Garmin GPSMap 60CS Handheld GPS Navigator (56 MB): Electronics electronics 5 of 6 5.0 Excellant unit March 2, 2006 R. Myers I had been wanting a nice color GPS unit for a while. My wife purchased this one for me and I love it. I purchased the City Select Maps to use with the autoroute system. It would be nice if the maps were included with unit. I've had it out on several caching trips now and it hasn't let me down yet. Make sure you take the time to read through the instruction book so you will know how to use the many features that the unit has built-in B0002OCR5K:great_carrying_case:nevets616 B0002OCR5K Apple M9603G/A iPod Carrying Case with Belt Clip: Electronics electronics 0 of 1 5.0 Great carrying case September 2, 2005 Nevets616 So. Cali This is a overall convient carrying case. IT DOES NOT SCRATCH you ipod in anyway. This is a great case for jogging or everyday use, it has a belt clip that works very well. great and simple case, i highly recommend it for everyday use B0007QN18U:best_buy:shankar_rathnam B0007QN18U Sennheiser RS 130 Wireless Surround Sound Headphones: Electronics electronics 5.0 Best BUY November 20, 2006 Shankar Rathnam Spartanburg, SC United States This is a wonderful product. The surround effect is phoenomenal and I just love it. The extra $50 is worth it for the quality sound that it delivers B00006JQ06:inexpensive,_great_performer,_outstanding_value:james_w._welch B00006JQ06 Sony SRF-59 FM/AM Radio Walkman with Sony MDR Headphones: Electronics electronics 4 of 5 5.0 Inexpensive, Great Performer, Outstanding Value September 30, 2006 James W. Welch I initially purchased this model then returned it in favor of the Sony SRF-M37V because of its five one-button pre-sets which make it a no-brainer to use while exercising. However, the SRF-59, perhaps because of its analog tuning, suffers less from co-channel and adjacent channel interference on FM. It's audio is slightly brighter and more musical with a decent pair of headphones or earbuds than its digitally tuned cousin. With this in mind, I purchased another SRF-59 yesterday and spent all last evening listening to it. I literally could not make myself shut it off and go to bed I was having so much fun scanning the FM dial. There was a program which aired last night on a local channel which featured bass-heavy 12" remixes of eighties new wave hits with, blessfully, very limited commercial interruption. Over the course of a three hour listening session, I gradually cranked up the volume. As I was too lazy to fish out decent earbuds, it became apparent that with bass-heavy audio at very loud volumes the SRF-59's tiny amplifier was insufficient to drive stock Walkman style headphones and peak audio was clipped which simply necessitated turning the volume down a tad to restore full musicality (I understand that decent quality earbuds require less power to achieve the same level of high sound output, therefore there will be no audio clipping). Nevertheless, the sound quality from this bargain-priced Walkman through less than ordinary headphones was astounding. The party is literally in your head, and the soundstage ranges from ear to ear, which is somewhat disconcerting when it is located above your sinuses. I also made one pass through the AM band and there the SRF-59 was no slouch either. I hauled in 1200 WOAI San Antonio which is approximately 1000 miles from me. Though no true DX machine, after all how could it be, it is at the least a competent performer on the AM band as well (I suspect early in the evening AM DXing conditions were as good as they have been in a long time). For more on this model and others visit Xin Feng's website. I highly recommend this model for cheap thrills! B00006JQ06:nice_radio:w._peters_"retired_geek" B00006JQ06 Sony SRF-59 FM/AM Radio Walkman with Sony MDR Headphones: Electronics electronics 2 of 2 4.0 Nice radio July 4, 2006 W. Peters "retired geek" RTP, NC USA A good basic AM/FM radio. Not digital tuning, but it works fine. Reasonably good reception B000F1YF9Q:great_picture_quality:busy_mom/attorney B000F1YF9Q Toshiba SD-P1700 Portable DVD Player with 7" Widescreen LCD: Electronics electronics 3 of 3 4.0 Great picture quality November 10, 2006 Busy Mom/Attorney San Diego, CA I bought this item rather than the cheaper products advertised because I trust Toshiba and because the picture quality was better than average. Overall, I am very satisfied with the product. We have used it on several aiplane trips and my toddler is very entertained. We haven't had any problems with the mechanics of the player. We also bought a case (which I highly recommend) so that we have enough Baby Einstein to keep her happy to our destination. Also, the battery has never run out, and charges quickly. My only problem with it is that the volume doesn't go up loud enough without earphones to hear it very well in a roaring commercial airliner. But, my daughter mostly looks at the pictures anyway, so it wasn't that big a deal for us. B000F1YF9Q:excellent_player,_really_great_purchase!!:linda_w._scherf B000F1YF9Q Toshiba SD-P1700 Portable DVD Player with 7" Widescreen LCD: Electronics electronics 10 of 10 5.0 Excellent player, really great purchase!! September 3, 2006 Linda W. Scherf McMinnville, OR This DVD player is great for the road, and even at home when you don't want to be bothered. Unless the are much loud noises happening around you, the players' speakers work fine. It comes with all of the accesories you'd want, including a car outlet, wall adapter, remote, and the battery. It charges in under 4 hours, and plays for over 3 hours. The player is sleek and so is the battery, but together are a bit bulky, not bad. Screen quality is good, great for a portable. Made of good quality materials. I've had it for a month and nothing is showing signs of wear-n-tear. A recommended accessory to purchase is a carrying case, which will haul all your add-ons that are included. I bought the targus sport, which is great also. For 160 bucks, it's well worth it! B00026C9HE:finally_a_cordless_phone_with_good_volume:j._katzenstein_"pathological_bookbuyer" B00026C9HE Uniden EZI996 900 MHz Cordless Phone for the Visually or Hearing Impaired, with Caller ID: Electronics electronics 4.0 Finally a cordless phone with good volume November 22, 2006 J. Katzenstein "pathological bookbuyer" Lexington, Ma I do not have a hearing problem, but my previous cordless phones were inaudible even at high volume.. this phone fills the bill -- at least so far! The only caveat: no speakerphone, which would be handy considering the amount of time most of us spend on hold. B00062VYR0:lcd_dvd:a._bellatorre B00062VYR0 Audiovox D1812PK 8" Portable LCD DVD Player with Car Kit: Electronics electronics 5.0 LCD DVD November 3, 2006 A. Bellatorre San Diego, Ca United States This car kit works very well. The screen is a bit larger than other DVD players of similar type. The only down side is that the battery only charges for about 2 hours (shorter than many movies). So, if you are going to use this in the car, you need to be able to charge it B00062VYR0:a_must_for_trip_w/_small_children:kim_walden B00062VYR0 Audiovox D1812PK 8" Portable LCD DVD Player with Car Kit: Electronics electronics 2 of 2 4.0 A MUST for trip w/ small children October 17, 2006 Kim Walden MS, USA We bought this unit from Sam's Club right before a trip to Disney World. (8 hours in the car with a toddler--eek!) However, it was/is perfect! We still use it for trips around town when we're in massive traffic or our son is being really fussy. The case that keeps the dvd player on the back of the seat needs a little work, but we figured out a way to make it work for us. Also, the remote doesn't work well, but we don't really need to use it as a DVD usually lasts long enough between stops B000067SPP:good:j._mendoza_"ipsnatch" B000067SPP Startech 6ft Premium USB 2.0 Ab High Speed Certified Device Cable: Electronics electronics 2 of 2 5.0 Good March 1, 2006 J. Mendoza "ipsnatch" New Rochelle, NY The cable was a good price, and it fit my printer perfect. Worth the few pennies I paid B0000A1EE8:nice_little_gadget!:lisa_a._fluitt B0000A1EE8 Creative Labs TravelSound i300 MP3 Players: Electronics electronics 5 of 13 4.0 Nice little gadget! November 27, 2005 Lisa A. Fluitt Ca These speakers are great for the common traveller and have great clean music. the only reason I did not give this 5 stars is because it doesn;t fofill the height of volume I wished. It is pretty loud, but I like really loud. I do not own this but one of my friends does I hoe to get logi3 i station for my ippod it seems awsome according to the reviews B0000A1EE8:one_word_fits_perfect,_surprised!:brett_a._stern_"emscarsnchicks" B0000A1EE8 Creative Labs TravelSound i300 MP3 Players: Electronics electronics 7 of 7 5.0 one word fits perfect, surprised! June 24, 2005 Brett A. Stern "EMScarsnchicks" Bergen County, NJ These speakers are not what i had expected from their size, price, and looks. Their quality, even at high volumes, exceeds many other speakers i've seen at double the price tag. The reason I bought these was because of the other reviews and the size. Another reason was the proposed battery life, 35 hours on 4 aaa batteries, not bad at all. So far its been very close. I have heard the other speaker (systems) and yes the JBL OnStage and the Bose Sounddock are both very good and do live up to their reputations, but your stuck with using them only when there is an outlet nearby B000AMDO0Q:mostly_pleased,_but....:2wanna B000AMDO0Q Cuisinart TOB-30BC Toaster Oven Broiler: Electronics electronics 7 of 7 4.0 Mostly Pleased, but.... April 24, 2006 2Wanna North Richland Hills, TX United States I spent a lot of time reviewing Toaster Ovens to replace our 8 year old Delonghi Alfredo one. Most of the others had so-so features or bad enough reviews that made me pass on them; however, with the 5-star review and Cuisinart name, I chose the TOB-30BC. It toasts, it bakes, it looks nice and it has the knobs that my hubby likes in lieu of digital. Overall, it's a great oven and we have no complaints with it's cooking abilities or the sturdiness of the unit; but less than a month later, one of the knobs broke off the unit. They are completely plastic and no metal reinforcement to prevent this from happening. My hubby sent an email to Cuisinart and they are sending a replacement knob, but one would have expected better engineering from a name like Cuisinart B00006B9WD:cheap_and_clever:l._maurer_"resident__xprt" B00006B9WD Cyber Acoustics CA2015 2.0 Computer Speakers(2-Speaker, White): Electronics electronics 10 of 10 4.0 Cheap and clever March 16, 2006 L. Maurer "Resident xprt" Port Charlotte, FL When we needed speaker systems for a batch of new workstations, price was the main consideration. The price for these units was well below budget. Since our main application for them was for audio-enhanced CAT (Computer Assisted Training), High fidelity and volume were not issues. They worked admirably for the purpose. The use of a USB port for the power supply was a clever twist. One of my aggravating support woes is keeping speaker power adapters matched up with corresponding speakers. I had been buying unpowered (unamplified) units with no manual volume control. The USB trick gives me just what I want B000BFO320:can't_remember_the_last_time_i_changed_the_batteries....:d._neakarse B000BFO320 Logitech LX5 Cordless Optical Mouse: Electronics electronics 1 of 2 5.0 Can't remember the last time I changed the batteries.... June 27, 2006 D. Neakarse New Lenox, IL United States I've purchased several Logitech mice(cordless optical)and I've been satisfied with all of them, except for the battery life. I had to change the batteries in my previous mouse once a month. This new Logitech mouse is terrific. It's been several months and I have not had to change the batteries yet ... and I am not even using the on-off switch (I want to test the battery life without the switch first). Battery issues aside, the mouse is smooth, light and accurate. It was simple to install and I'd buy it again in a heartbeat B00008ZEKC:i_love_it!:brittany_steinhauer_"~brit~" B00008ZEKC Coby CX-CD375 Micro Stereo System with Top-Loading CD Player: Electronics electronics 2 of 3 5.0 i love it! August 14, 2006 Brittany Steinhauer "~Brit~" Mount Juliet, TN 37122 this stereo works great and its cute and small so it doesnt take up alot of room, it lights up blue when u turn it on in the dark and i love the remote, now i dont have to get up to switch the station B000BS264Y:jabra_bt150_review:bryan_a._walters_"gamegamer43" B000BS264Y BT150 Bt Headset: Electronics electronics 4 of 4 4.0 Jabra BT150 Review January 4, 2006 Bryan A. Walters "GameGamer43" I bought this headset and I must say it's a great buy. First off it's lightweight weighing in at about 16 grams. It's small which definately helps when your wearing it around. At times it's like you don't even feel liek your wearing anything. Exactly how a headset should be. I've place and recieved many calls with it already and having been using the the traditional wired headsets of the past this headset sound better and has no wires. The only problem I have found so far is that it takes some time getting used to the button placement and answering calls with the headset. Not to mention you only hear the standard ringtone rather than your custom ringtones. But that a small price to pay for such a great, inexpensive headset like this one B00005T3RC:better_than_expected:kg B00005T3RC Sony MDR-E829V Fontopia Earbuds with In-line Volume Control: Electronics electronics 1 of 1 5.0 Better than expected June 16, 2006 KG I was looking for comfy earphones to replace my Phillips one I got awhile back cos the rubber coating had fallen off and I stumbled on this one. I was a bit skeptical about the volume control thinking it would give out after a few times of sliding up and down but it works wonderfully and is so light and responsive to touch as well as being sturdy. I started out using the foam that came with it but that proved to be a bother and pretty much useless as the plastic earbuds are comfy enough. And they stay in your ears like glue. No more readjusting and I loved that. For the price, this SO worth it. B00005T3RC:best_earbuds_foe_under_$10:harold_orville_peterson_"arcangel" B00005T3RC Sony MDR-E829V Fontopia Earbuds with In-line Volume Control: Electronics electronics 2 of 2 5.0 Best Earbuds Foe Under $10 November 7, 2005 Harold Orville Peterson "ArcAngel" Los Angeles I bought These earbuds for the first time 3 years ago for $15 now u can get them for under $10 They last more than six months of hard wear and tear before they need replacing awsome i've been using them for a long time and don't plan on changin B000271MV2:nice_battery._poor_seller.:angela_b._schmith_"purple_unicorn" B000271MV2 Lenmar DVD-U9 NoMem Lithium Ion Battery for Portable DVD Players: Electronics electronics 2 of 3 5.0 Nice Battery. Poor seller. August 23, 2005 Angela B. Schmith "Purple Unicorn" Sandy, UT USA Lenmar Is great to work with, When Beach Audio will not do exchanges for faulty equipment. Beach Audio told me I would need to purchase another one then when they get the faulty one back they would refund my money for the second one that I had to purchase. POOR RETURN POLICY. So I just sent it to Lenmar under the warranty and they sent me a new one. Only took one week to get it. GO LENMAR. I've been able to watch on a 10in. Portable DVD Two (2hr) movies on just this battery with a little to time to spare. ***NICE BATTERY*** B0000D8IYC:great_surge_protector,_especially_for_transformers:the_mango_man B0000D8IYC APC PF11VT3 11-outlet SurgeArrest with Tel2/Splitter and Coax Protection: Electronics electronics 9 of 9 5.0 Great surge protector, especially for transformers March 9, 2006 The Mango Man Southeast of disorder.. I really likethe design on this Protector, and bought 3. It allows you to plug multiple transformers in, and still have room for regular plugs. Slipping plus in is a firm push, but not that tough. I also like the fact that it gives you a warning light if you get up around 12 amps.. Cool, but you have to keep in mind a 15 amp circuit shoulldn't have 12 amps to one plug.. The cord restraint system slides out to hold all the cords, then wedges backin to hold them in place. A bit hard to set up, and a zip tie could achieve the same thing, altough this is way easier if you change things B0000D8IYC:very_useful,_but_hard_to_get_plugs_in_and_out:your_average_gadgeteer B0000D8IYC APC PF11VT3 11-outlet SurgeArrest with Tel2/Splitter and Coax Protection: Electronics electronics 9 of 9 4.0 Very useful, but hard to get plugs in and out March 8, 2006 Your Average Gadgeteer McLean, VA USA Overall, I like this surge protector and would buy it again. I bought it primarily because of the 11 outlets, six of which are spaced out to accommodate big brick-style transformer plugs. I did a lot of digging to find the surge protector that had the most outlets in this configuration, and this unit always came up. It has worked just fine for the month or so I've owned it. I particularly appreciate the angled plug, which allows you to use the second plug in a wall outlet without a problem. I only have two quibbles with the APC--the color and the stiffness caused by the plug-activated safety shutters. Plugging and unplugging cords requires some force to overcome the safety shutters, which could be a problem if you are trying to get something plugged or unplugged while the unit is in an awkward position or hard-to-reach location. On a much more minor note, the black unit and cord stand out quite a bit against light-colored walls and carpets, even when tucked behind a desk. I don't use the phone or coax plugs, so I don't know if my unit has the problem (or "feature") other reviewers have reported with Internet signal degradation B000ELV2MA:satisfied_with_my_mp830_:robert_c._hall B000ELV2MA Canon PIXMA MP830 Office All-In-One Printer: Electronics electronics 1 of 2 5.0 Satisfied with my MP830 November 11, 2006 Robert C. Hall My mp830 has performed well in the time that I've had it. My family members have found it easy to use as well. I was saddened at the early demise of my Epson cx6400 which suffered from a common problem of dried ink clogging the feeder tube. I chose the Canon after reading good reviews, and I got it for an excellent price right here on Amazon plus free shipping. It still sells for more at my local Office Depot and Best Buy. In truth I haven't tried all of it's claimed capabilities, but I'm happy with what it's been able to do thus far. B0001YFYYM:a_good_lapel_mic:j._horneman B0001YFYYM Sony ECM-C115 Omnidirectional Clip-On Business Microphone: Electronics electronics 21 of 21 4.0 A good lapel mic October 13, 2005 J. Horneman Sarasota, FL I use this in my videography business, primarily for weddings. So far I've never had a problem, and the mic has always given me a clear recording of voices from a lapel position. I use it in conjunction with my iRiver-795, to record the sound directly, and it's worked like a dream... recommende B000EUGX7A:you_get_what_you_pay_for_with_these_speakers.:chillwater B000EUGX7A Creative GigaWorks T20 2.0 Speakers ( 51MF1545AA001 ): Electronics electronics 2 of 2 5.0 You get what you pay for with these speakers. November 14, 2006 chillwater MIAMI, FL USA These 2.0 speakers sound great (and not just for their size), are adjustable, small, and good looking. I'm about half deaf and every speakers with a separate woofer had too much bass when I turned the volume up so I could understand human speech. I'm happy I spent the money. These are real quality in my opinion B0000AZJVP:great_headset:j._drechsler B0000AZJVP Sennheiser PC130 Headset with Noise Cancelling Microphone: Electronics electronics 3 of 3 5.0 Great headset August 28, 2006 J. Drechsler I recently bought an altec lancing headset for $20 and it was the worst headset investment I've made. Horrible support for the ears and very uncomfortable to wear and they eventually broke within a week or two. So I bought this headset and I have been quite pleased with it. The mic output is extremely crisp. While talking with clients they said that it sounds like I'm talking on the telephone with them or better. They are very comfortable and rest on the top of your head unlike many headsets like my prior pair which have a support on the back of the neck which does nothing. All in all a good headset. B00067LYFW:nice_fm_transmitter:r._anand B00067LYFW iRiver AFT 100 Mobile FM Transmitter: Electronics electronics 4.0 Nice FM Transmitter November 10, 2006 R. Anand Works good for me. Some time one can hear some interference but over all a pretty good product B0007LI13U:excellent:diego_castillo_jovel B0007LI13U Nyko Stereo Link for iPod: Electronics electronics 5.0 Excellent November 5, 2006 Diego Castillo Jovel Managua, Nicaragua This product is awsome, i intalled it on my car with a sony stereo system, i placed the end of the ilink cable inside of a compartment of my car so i could put my ipod in, the sound quality that the cable delivers its outstanding, besides, it does not look like a cheap cable, it has a thick rubber coating that gives it some stiffness.... If you are realy thinking on connecting your ipod to your home or car stereo this is the right solution B00005V9GR:the_reviews_are_in...:"gjen128" B00005V9GR Kingston Technology CF/256 256MB Compactflash Card: Electronics electronics 3 of 3 4.0 The reviews are in... December 22, 2003 "gjen128" Manila, Philippines I've been using this CF card on my Nikon 4300 for a couple of months now. It writes fast compared to my other CF (Canon stock, from another camera). However, start up of the camera takes longer (because of the size), and as more pictures are stored, there is a noticeable degradation in speed in writing. I've also used this on a Dell Axim, and it worked great! No problem in formatting B0000E2RP9:awesome_-_:bryan_m._whitehead B0000E2RP9 Garmin City Select v7 CD-ROM Map - North America: Electronics electronics 4 of 6 5.0 Awesome - February 24, 2006 Bryan M. Whitehead I'm still discovering the power of this program - at least when teamed with the Garmin 60CS. Auto routing, waypoints, detailed maps, assistance in finding the nearest gas station... the list is nearly endless. I've recommended this combination to several of my friends who are also consultants and who operate in a broad geography B00005T39Y:one_of_the_best_that_i_have_used:kay_galo_"kay" B00005T39Y Sony CPA-9C MiniDisc and Discman Cassette Adapter: Electronics electronics 1 of 1 5.0 One of the Best that i have Used November 3, 2006 Kay Galo "Kay" Well, I have used 3-4 cassette adapters, till i heard this one, only words that i can say is you have to hear it to identify the difference. i have been using it with my cd player and also with IPOD, with others i had to make sure that the volume on ipod was 100% but with this one hey 85% is too much. Well i showed it to 1 of my friend and he also loved it, and took mine and told me to get another. Don't hesitate to buy this one B00005T39Y:work_great_for_its_price:mohammed_raffi_ajmulkhan B00005T39Y Sony CPA-9C MiniDisc and Discman Cassette Adapter: Electronics electronics 4.0 Work Great for its price November 3, 2006 Mohammed Raffi Ajmulkhan I bought this from amazon for $15 and it works great with my car audio. It is easy to use and working fine till now. The audio quality is decent and surely recommend this B00001WRSJ:great_headphones_for_the_money:optimist B00001WRSJ Sony MDR-V6 Monitor Series Headphones with CCAW Voice Coil: Electronics electronics 1 of 1 5.0 Great headphones for the money November 5, 2006 Optimist Kansas There are lots of reviews here and most appear to be on-target relative to my experience with these headphones. But here are my 2 cents: I got these to replace some aging Sony MDR-V2's that I purchased maybe 10 years ago. The ear cushions of the MDR-V2's had begun to deteriorate, and I figured it was time to see what had improved in 10 years. I just compared them to the older V2s and I can say that the V6 is definitely better. They fully surround the ears (V2s just sat on your ear, pressing on them). The V6s also seem to offer more detailed sound. I concur that they sound a little bright, but I can take care of this on my iPod by setting the EQ to ReduceTreble (but I like the brightness, so sometimes I don't do that). I do NOT concur with other review comments about weak bass. They appear to have the right amount. (IMHO - it is a shame that bass has been overemphasized in the past decade, at the expense of flatness and non-coloring of sound). I also concur that the sensitivity of these is quite good (plenty loud for me with the iPod - and I listen at good levels - albeit not ear damaging ones). As a last comment, I notice Amazon has these for about $65. I paid $99 at a local store. Buy from Amazon ! (no - I don't work for or invest in them ;- B00001WRSJ:great,_uncolored_sound:michael_a._baxter B00001WRSJ Sony MDR-V6 Monitor Series Headphones with CCAW Voice Coil: Electronics electronics 1 of 1 5.0 Great, uncolored sound July 20, 2006 Michael A. Baxter I bought these after reading over a hundred reviews for them, and I agree with the consensus that they deliver a flat, uncolored sound with tight, but not boomy, or overpowering bass. By the way, I've owned the Sony MDR-V600's for a couple of years now thinking they had replaced these, but they are actually more of a consumer model that seem to be comparable in terms of price and specifications, but are actually quite inferior to these in my opinion. These have been used by Musicians, studio engineers, and on air talent for 20 years now B00076TH8S:woop:w._downer_"monkeyfootfever" B00076TH8S Razer Diamondback Salamander Red 1600 DPI Gaming Mouse: Electronics electronics 5.0 WOOP November 6, 2006 W. Downer "MonkeyFootFeVeR" Fargo, ND USA the razor diamondback is awsome no problems with install. and great sensetivity when doing everything B000637U86:griffin_isqueez:m._haefele B000637U86 Griffin iSqueez Cradle for iPod or iPod Mini: Electronics electronics 8 of 8 4.0 Griffin iSqueez October 2, 2005 M. Haefele Rochester, NY USA Although there are more expensive options, if you're just looking for something to keep your iPod from sliding all over in the car, the iSqueez is a great option. I use this with the Monster iCarPlay FM Transmitter/Charger, which uses the dock connector. I can't get my iPod mini to fit all the way down in where it should because of this, but it still fits in there well enough to stay in place. I find that it holds the iPod at a great angle for viewing the screen from where you're sitting (though I'd recommend putting the passenger in charge of finding music) B0001ZY6Z4:good_dvd_player,_and_i_got_it_free!:steve B0001ZY6Z4 Audiovox VBP700 7" DVD Player in a Bag: Electronics electronics 5.0 Good DVD Player, and I got it free! May 14, 2006 Steve This player is very convenient for long trips. If you want to save the money, you can get it Free from this web site: awesomestufffree.com/portabledv B0001F21IS:great,_except_the_skins:john_winebarger_"techie_and_trekkie" B0001F21IS SanDisk SDCZ4-256-A10 256 MB Cruzer Micro with Skins (Retail Package): Electronics electronics 4.0 Great, except the skins November 25, 2006 John Winebarger "Techie and Trekkie" Gloucester, VA I'm a section editor at a high school newspaper and I have used this drive every day both in that class and in all my others for over a year and it has never let me down. It's small, sleek and elegant and has a quick transfer rate. The only issue is with the caps ans skins, which get annoyingly loose over time. I carry it around on a little pouch on my keys that I keep on my belt loop. When I pull it out of the pouch it will sometimes pull off the cap and skin. It's a minor annoyance for an otherwise great flash drive. I just went out and bought the 1GB version and I use them both B0001F21IS:cruzer_w/_skins:daniel_moran_"dan_moran" B0001F21IS SanDisk SDCZ4-256-A10 256 MB Cruzer Micro with Skins (Retail Package): Electronics electronics 5.0 Cruzer w/ Skins September 22, 2006 Daniel Moran "Dan Moran" Memphis, TN Awesome product for the price. You need to get a SMALL ring (like from a key fob from a car) to use it on your own key ring B00005RI9V:sound_good,_worked_out_of_the_box:j._hamann B00005RI9V JBL SoundPoint SP6C 2-Way 6.5-Inch In-Ceiling Loudspeakers, Pair (Off-White): Electronics electronics 1 of 2 5.0 Sound good, worked out of the box March 3, 2006 J. Hamann Dallas, TX USA Good sound quality for the sub-$150 (per pair) price tag. Easy to install B0001FV364:easy_and_cheap!:walter_correa_iii B0001FV364 SanDisk Cruzer Micro 512 MB USB 2.0 Flash Drive (SDCZ4-512-A10, Retail Package): Electronics electronics 5.0 Easy and Cheap! November 9, 2006 Walter Correa III Wailuku, HI United States i can't believe the unbelievable prices of flash drives these days. i just bought this one from Wal-mart for $20.00 dollars. that's way cheaper than on amazon.com. plus i've noticed that amazon.com has switched to third retailers and some don't even ship to hawaii, or do ship to hawaii at a hefty price. this switching of amazon having the lowest price to third retailers is really turning me off. possibly even towards purchasing books. B000F76W78:i_own_it_and_love_it!:marsha_collier_"dealingdiva" B000F76W78 Netgear SPH101 Skype Wi-Fi Phone: Electronics electronics 0 of 2 4.0 I own it and love it! October 31, 2006 Marsha Collier "dealingdiva" Los Angeles, CA USA Small, convenient and classy. I love the Netgear Wi-Fi phone. Yes, it isn't perfect, but due to the uplink with Skype, they can update the software in the phone. I'm hoping they will be able to make the phone more compatible with Starbucks and hotel wi-fi. That would make the phone perfect. In the meanwhile, I'm enjoying making phone calls all hours of the day to my friends round the world B000AZ0QC2:lived_up_to_the_reviews_i_read_before_buying,:emil_g._enriquez B000AZ0QC2 Canon PIXMA MP800 All In One Photo Printer: Electronics electronics 0 of 1 5.0 Lived up to the reviews I read before buying, November 5, 2006 Emil G. Enriquez It certainly did. Excellent color qualit B0006698SS:works_like_a_champ..setup_in_5_minutes:ryan_kern-mount B0006698SS D-Link DWL-G710 Wireless Range Extender, 802.11g, 54Mbps: Electronics electronics 5.0 Works like a champ..setup in 5 minutes October 16, 2006 Ryan Kern-Mount Grass Valley, CA USA After I read some folk's horror stories, I was really reluctant to purchase this device. Well, it took me only 5 minutes to configure the DWL-G710, and another 10 minutes to find the best place for it in the house. It was really simple and it worked well with our Comcast/Netgear wireless cable modem. Excellent product B00001W0D4:great_sound_quality_and_durability!:ichaucer B00001W0D4 Sony MDR-E827G Sports Series Fontopia Water-Resistant Ear-Bud Stereo Headphones: Electronics electronics 3 of 3 5.0 Great sound quality and durability! June 13, 2005 iChaucer Pittsburgh, Pennsylvania, USA I'm not entirely sure how other people are finding ways to damage their earphones, but I have used the same pair since the summer of 2000 (purchased from Amazon), and I have never had any difficulties besides losing the essential earpiece covers, which were easily replaced. When they are wound up in their little yellow case, the headphones' wires are well protected from stress unlike other models that don't offer such security. Compared to other headphones I have used, especially noise cancelling of both active and passive varieties, these phones have superior bass response, and all levels of sound seem reasonably clear. I have used these earphones with many different devices over five years: CD players, MP3 players (including iPods), Pocket PCs, desktops, and notebooks. They always sound great, EXCEPT - due to their greater sensitivity to sound, I often am able to detect the hiss caused by poorly designed audio hardware, which I otherwise wouldn't hear with over-ear phones. Pocket PCs especially seem prone to this, as their audio hardware is crammed so tightly in with noisy backlit screens and processors B000EWHEM6:excellent_unit:kenneth_w._hoehn B000EWHEM6 SanDisk 4 GB Cruzer Micro with U3 ( SDCZ6-4096-A10, Retail Package): Electronics electronics 1 of 1 5.0 Excellent unit November 9, 2006 Kenneth W. Hoehn Unit performs well, is reasonably fast, and has on-board security software that will allow the setting of a password. If you choose this option, loading each time upon insertion is a little slower, and you must 'stop' the unit prior to removing it when operating under the password protection. The few times I have forgotten I've not lost any data, but it scolds me for doing so upon the next use. B00000J0D5:using_it_for_caller_i.d._on_direct_t.v.......:mr._john_m._ruof_"kofa" B00000J0D5 RCA RC930 Caller-ID-Compatible Wireless Modem Jack: Electronics electronics 5 of 5 5.0 using it for caller i.d. on direct t.v....... December 26, 2005 Mr. John M. Ruof "kofa" pinal county,az. purchased the unit 9/05 because there wasn't a tele jack near the t.v.... thus far has worked w/o a hitch connected to my direct t.v. black box to show caller i.d. on the screen... B00004Y2Z2:buy_these_cables!: B00004Y2Z2 Monster Cable MV2CV-8M Monster Video 2 Component Video Cable 8 meter: Electronics electronics 4 of 12 5.0 Buy these cables! March 15, 2001 These cables are super with my new DVD player. There is absolutely no interference from my other home theater equipment. The picture is soo clear, and vivid. The cables themselves are really made well, they could hold up 100 pounds of weight no doubt. If you get these Monster cables you won't be sorry B000BMXJR8:a_good_accessory_for_your_ipod:r._urmeyev B000BMXJR8 Griffin Technology 4031-RDGC RoadTrip FM Transmitter & Auto Charger and Cradle for iPod (Charcoal): Electronics electronics 4.0 A good accessory for your iPod October 29, 2006 R. Urmeyev Dearborn, MI I purchased my iTrip about 4 months ago and now can give an objective review of the product. The iTrip is a good choice over competitors' products and offers a good value for the money. Radio reception is good; I especially like the changing channels feature. The fact that it charges the iPod while in use even makes it better. The only negative thing that I've discovered is that sometimes it disconnects from the iPod slot and I have to push it back. That's mostly due to rattles and I imagine will get worse with time. Overall, good product, good value for the money, and if carefully handled, will last a long time. B000BMXJR8:good_buy:s._ward B000BMXJR8 Griffin Technology 4031-RDGC RoadTrip FM Transmitter & Auto Charger and Cradle for iPod (Charcoal): Electronics electronics 3 of 3 4.0 Good Buy September 30, 2006 S. Ward Los Angeles, CA I bought mine about a week ago and I haven't had any problems with it. The only reason I gave it 4 stars instead of 5 was because it's a little hard to plug in & take out. But other then that I'm 100% pleased with it. It's not CD quality but it's very close. Good buy B00006B9HC:alot_for_the_money:brad_"brad" B00006B9HC Netgear FVS318NA VPN Firewall Router with 8-Port Switch: Electronics electronics 5 of 5 4.0 alot for the money June 21, 2005 Brad "Brad" Texas This review concerns the "v3" hardware and firmware v3.0_20 - I did not purchase from Amazon. For the most part, everything works pretty well. I have discovered a bug where the log is not cleared after a scheduled-email out, which leads to strange behavior for the log-emailing function. I can always go into the web-interface to view or clear it with no problem. Another thing to note regarding the log is that VPN (not pass-thru) has its own separate log area, which does not get emailed out. As expected, Netgear support is mediocre. Level 1 support can only handle very simple issues and Level 2 support is VERY slow. I recommend you use the incident-submission area of the "My Netgear" website, so you can more easily track/respond to support incidents. For those of you using the FR114p model, this is basically the same thing with 8-connection VPN service minus the printer port. I figure, after a few more firmware revisions, this will be a really good unit B000087LI2:ique_navigation_kit:brett B000087LI2 Garmin Auto Navigation Kit: Electronics electronics 1 of 1 4.0 Ique Navigation kit August 28, 2005 Brett Iowa The navigation kit works well although you do need a mostly flat area to set it on. Our Toyota Highlander lacks enough room between the windsheild and the dash to set it up on top, but we placed it below the gear shift on the center console and it worked quite well. The Ique was able to hold signels with no problem. I think the suction base might be a better solution for cars with out a low flat dash area B000EPJL1A:iit_'gets_'er_done':s._boehning_"sueb" B000EPJL1A Apple 1 GB Shuffle Metal (2nd Generation): Electronics electronics 3 of 5 4.0 iit 'gets 'er done' November 24, 2006 S. Boehning "SueB" Poconos, PA I love the iShuffle. It does the job. Not many features, but makes my 2-hour commute livable. i put all my podcasts up top and list the songs in alpahbetical order (by artist name) so all is organized. It's like flying blind, but who said blind was impossible? Certainly not Helen Keller B000EPJL1A:amazon_is_charging_more_than_apple_for_the_shuffle.:tara_vance B000EPJL1A Apple 1 GB Shuffle Metal (2nd Generation): Electronics electronics 11 of 13 5.0 Amazon is charging more than Apple for the shuffle. November 21, 2006 Tara Vance Florida I just thought people should know that you can by the shuffle from Apple and have it engraved and shipped for free for $79.00 (everyday price). So Amazon is not really offering a great deal here B000233YDU:i_love_it!:c._carey_"geek" B000233YDU Syntax Olevia LT30HV 30" HD-Ready Flat-Panel LCD TV: Electronics electronics 9 of 9 5.0 I love it! October 26, 2005 C. Carey "geek" Seattle, WA USA This is the best device I have bought for at least a couple decades. I am a degreed engineer, and I love gadgets. Just the best. I have had it about 3 months, and I love it. Attractive base, all the connections, removable speakers, picture quality is among the best LCD that I have viewed. I highly recommend it B0002V9IKK:creative_sb260_speakers:sing_y._leung_"wilthing1" B0002V9IKK Creative SBS260 Speakers: Electronics electronics 1 of 1 4.0 creative sb260 speakers November 10, 2006 Sing Y. Leung "wilthing1" new york the speakers sounds excellent for it's price but the power button has a defect. you need to push it a certain way to power it on B0002V9IKK:very_good_for_the_price:j._kokkonen_"jolly_llama" B0002V9IKK Creative SBS260 Speakers: Electronics electronics 1 of 1 4.0 Very good for the price November 9, 2006 J. Kokkonen "Jolly Llama" Provo, UT It doesn't have spectacular bass power, but I am happy for the product I got at such a feasible pric B0002V9IKK:good_speaker,_fair_price:jim_p._yang_"slimjim05" B0002V9IKK Creative SBS260 Speakers: Electronics electronics 5 of 7 5.0 Good speaker, Fair price August 8, 2006 Jim P. Yang "slimjim05" Fresno, CA Pro: Very clear, stylish, eazy assemble. Con: None I can think of B00061IYJC:great_noise-canceling_headphones.:shawn_milochik_"the_freelance_pen" B00061IYJC Philips HN060/37 Noise-Canceling Earbuds: Electronics electronics 5.0 Great noise-canceling headphones. October 2, 2006 Shawn Milochik "The Freelance Pen" USA I have had and used two pairs of these headphones over the last year. I have been very happy with them, and even bought the second pair to keep as a backup. The Good: They are not only noise-cancelling, but they also are rubber earbuds which fit snugly and comfortably in the ear, blocking more noise. If you put them on without any audio source, in only dulls background noise, but I think that's the best you can expect from any pair. While listening to audio, nearly everything is blocked out unless you really listen for it. There is a neck strap with the noise-cancelling component in the middle and the two earbuds hanging from each side. You put it around your neck like a necklace, put the buds in your ears, and use the power and volume controls on the noise-cancelling piece. The Bad: Nothing is actually "bad" about them, but they're not quite perfect. The earbuds will easily slip out if you're sweating, or if they get at all greasy from your skin or earwax. However, they pop right off and you can wash them with a little soap and water in about 10 seconds. I do this daily when I use them. However, that doesn't make them the best solution for walking or jogging. Once one starts slipping, it generally won't stay in well until it (and your ears) have been cleaned, which detracts from the noise-cancelling effect. Other Thoughts: The cord is plenty long enough to reach an iPod or whatever at about belt level. However, if the player is in a pants pocket, it could be a little close. Also, I often wear it when I'm not using it, because you can forget it's there, and also it beats putting it into a pocket to get tangled. I had an issue once because I was sitting at a desk, and it dangled to the floor. When I stood up, I stood on the end and the force of my neck going up while my foot held it down damaged the wiring -- I began to get a slight buzz in one ear. However, I blame myself for that -- it was a mighty tug. I bought mine at Target, where they were labelled $24.99, on "clearance" from $49.99. A couple of months later they were back to $49.99. Once they dropped again to $34.99 (another "clearance" price), I bought a second pair as a backup. I'm glad I did -- I'm still using the second pair. Battery life is great. I don't know how many hours I get, but I can go at least a couple of weeks using my iPod for at least a couple of hours per day, listening to podcasts and audiobooks B000EEZEVC:perfect._inexpensive.:don_jones_"author,_speaker,_scripting_guru" B000EEZEVC SanDisk SDSDM-2048-A10M 2 GB Mini SD Card (Retail Package): Electronics electronics 5.0 Perfect. Inexpensive. November 3, 2006 Don Jones "Author, Speaker, Scripting Guru" Las Vegas, NV Works great in my Cingular 8125 phone. I can't believe how inexpensive these have become! More space than I'll likely every need, and no speed issues (noting that the 8125 is no speed demon itself; I can't attest to this product's performance in something that's inherently faster) B000EEZEVC:perfect._repeat_customer:steven_j._smith B000EEZEVC SanDisk SDSDM-2048-A10M 2 GB Mini SD Card (Retail Package): Electronics electronics 5.0 Perfect. Repeat Customer September 16, 2006 Steven J. Smith I ordered the 2 gb card twice....Fast shipping and both worked perfectly B00005B60G:good_functionality_and_quality:julien_pierre_"software_engineer_and_amateur_musician" B00005B60G Polycom Soundpoint Pro SE-225 2-Line Professional Conference Phone with Caller ID: Electronics electronics 0 of 1 4.0 Good functionality and quality July 17, 2005 Julien Pierre "Software engineer and amateur musician" Santa Clara, California This phone has excellent voice quality, including in conference mode. The only reasons it doesn't get 5 stars from me is that : a) it is unable to operate if there is a power outage - as opposed to perhaps just losing some of its functionality . Just make sure it isn't the only phone in your home. b) there is a bug which occasionnally renders it unable to operate. I can't figure out what causes it. It may be my cats that walk on it at night and press a weird sequence wit their paws :). The only cure I have found is to pull the power plug, which reboots it B0000C3GWU:nice_office_speakers:j._won_"batzflashboy" B0000C3GWU JBL Duet Speakers, White: Electronics electronics 2 of 2 4.0 Nice Office Speakers July 31, 2006 J. Won "batzflashboy" Dallas, United States Amazon has a nice price on the JBL Duet Speakers (July 2006 - 36.95) dealmac is a site I used and returned to amazon. I purchased these for my office desk where I wanted a crisp sound for low volume daily listening. Anything from Ambient, to Rock and Jazz. They produce sounds nicely, nice tight crisp. If these came with a woofer unit these would be ideal speakers, as the 2-pieces alone do not produce any significant bass at all. Just the "hints" of bass in the music but no thud, if that's what you are hoping for. I did turn these up loud to listen to their full sound and they do sound good. These are perfect for offices and just daily music, sound is superb. Not for audiophiles or for people who are expecting to shake everything on their desks. Build quality is "ok". I got the white speakers and they are the nice "Mac" white plastic. The JBL logo on the speaker itself is awfully big. And the silver volume knob is made of that cheap silver flake paint over plastic which is abit tacky. One of the soft rubber pads on the bottom of these (meant to not scratch your desk) did fall off during opening but they are glued on so no big deal in placing it back on. The design is very modern and cool tho. They look nice on my desk. You will need to keep these on for abit to let the speakers fully... break in. They sound awful right out of the box and after maybe one hour of keeping these on they will sound better. On the low end of speakers out right now, these will probably sound the best and are most modern design, compared to the black boxes out there B00006B8ZB:surprised_what_a_difference_this_makes.__much_more_pleasant_working_on_laptop.:karen_f._hensley_"kfh" B00006B8ZB Targus PA230U Compact Universal 6 Inch Monitor Stand - Black: Electronics electronics 2 of 2 5.0 Surprised what a difference this makes. Much more pleasant working on laptop. January 5, 2006 Karen F. Hensley "kfh" Seattle, WA USA I bought this laptop stand when I found out that my laptop could drive dual screens so I could have different items on the two screens and drag stuff between them. So now I have the center of the screens at the same height, side-by-side. It is really nice to have twice the screen real-estate. I figured that mostly I would put background stuff on the laptop screen (like email) and use my big hi-resolution screen for what I was activly working on. But, now that the laptop screen is up at eye level, I tend to use it just as often as the big monitor! It turns out that my dislike of the laptop screen had more to do with having to look down at it, even though I was not aware of that until I got it raised. B00006B8ZB:works_great!:travis_craig_hellstrom_"thellstrombooks" B00006B8ZB Targus PA230U Compact Universal 6 Inch Monitor Stand - Black: Electronics electronics 3 of 3 5.0 Works great! September 26, 2005 Travis Craig Hellstrom "THellstromBooks" Hickory, NC United States One of the least expensive ways out there to raise your computer screen to eye level. I am 6'3, so when I sit I am still pretty high in the air. With this stand I am able to sit with great posture and look straight ahead to my screen. I would definitely suggest getting one of these if you've ever thought about raising your monitor up off the desk B00005A9AV:not_perfect_but_really_good:merddyn_"merddyn" B00005A9AV Plantronics DSP-500 Digitally-Enhanced USB Gaming/Multimedia Stereo Headset and Software: Electronics electronics 1 of 1 4.0 not perfect but really good September 12, 2006 Merddyn "merddyn" Houston, Tx United States I'm overly critical of sound quality. At home i have the Tritton surround sound headset running off optical connection. this doesnt' compare to that but the Tritton is $99 too. For the $ this is really nice. Sound, microphone and wire quality are all good. Controls are easy to use and the software is easy to use too. They're also fairly comfortable. Good headset for work B0000WA8CI:great_printer_for_the_photographer:richard_rowell B0000WA8CI Epson Stylus Photo R800 Inkjet Printer: Electronics electronics 6 of 6 5.0 Great Printer for the Photographer February 28, 2006 Richard Rowell Woodlawn, TN USA I love this printer. I purchased it to print 8X10s from my digital camera. The ink doesn't fade over time like my HP did. B00006G96O:all_in_all_this_is_an_excellent_phone:evanprod B00006G96O Panasonic KX-TGA271V 2.4 GHz DSS Accessory Handset for Panasonic KX-TG2700 Series (Violet): Electronics electronics 4.0 All in all this is an excellent phone June 23, 2006 Evanprod Princeton, NJ As you may already know, this is an accessory handset which will only work if you have one of these Panasonic models: KX-TG2700/KX-TG2720, KX-TG2730/KX-TG2740. The Panasonic KX-TGA271V, does not need (or use) a telephone jack. It simply plugs into any standard electrical socket and works off the base unit with one of the models mentioned above. This phone was also very easy to register. (It had to be charged for about 2 hours before it could be registered...) I simply had to press the "MUTE" button on my base unit and then press the "PLAY" button on the phone (the registration directions were even displayed on the LCD display on the phone!) Please know that I did find the Panasonic instaltion manual/registration directions to be a little confusing. Some features that are NOT mentioned in this description which ARE included are: finger grips/ergonomic sizing on the sides of the phone, the opportunity to play your answering machine messages off this phone (the base unit to the KX-TG2730 has a digital answering machine, and I suspect the other Panasonic models do as well) ---- THIS WAS THE MAIN REASON WHY I PURCHASED THIS PHONE, YES THE KX-TGA271V WILL PLAY YOUR ANSWERING MACHINE MESSAGES OFF THIS PHONE THROUGH THE SPEAKER ON THE BACK OF IT!!!, a separate "call waiting" dedicated button is also included. Also, this phone will use any standard headset, it does NOT need a Panasonic branded headset. This was very important for me because I ofen use a headset and I do not want to purchase another one. I have since learned that ALL cordless phone headsets can be used on ANY type of cordless phone! Please know that the batteries on this phone are not interchangeable with the KX-TG2730 system (that is the model that I have.) Also, the KX-TG2730 phone can't be charged in this charger, and vice versa. That is (likely) because the KX-TGA271V phone is slightly smaller and weighs less. The face of the phone is white with a purple trim. The back of the phone is also purple on the bottom and white on the top half. The "white" in the phone is sort of a shiny metalic white, and the "purple" is not shiny at all. Some of the buttons are also slightly smaller than the buttons on the KX-TG2730 model. And the LCD screen is not flat, it is indented slightly, and bordered in silver. I purchased this phone from an Amazon.com merchant and am very pleased with it. I noticed that another Amazon.com merchant is selling the same phone that I purchased for less ($30.), however that merchant has HORRIFIC feedback and I was only too glad to pay a little extra for the confidence of knowing that I would receive a phone in a timely manner that would work! Panasonic makes very good phones. The only (big) problem is the battery life. The batteries often die after less than 90 minutes. I have solved this problem by purchasing a second set of batteries. However, this is still not a perfect solution. So, I had to purchase another set of cordless phones (Uniden.) I now keep two phones in each of the rooms that I had each of the Panasonic phones, and so far have not run in to any problems. I hope Panasonic will offer batteries with longer lives soon. All in all this is an excellent phone. I hope the extra details that I provided will help a prospective buyer make the right decision. Amazon.com rarely provides specific details to these types of questions (does Amazon.com only employ braindead dimwits?) and the Panasonic Website does not offer this info B00024ENHK:perfect_17"_laptop_case:j._sadki B00024ENHK Targus TCG200 17 CityGear Miami Messenger Notebook Case: Electronics electronics 2 of 2 5.0 Perfect 17" Laptop case November 9, 2006 J. Sadki I recently bought an HP 17" widescreen laptop and needed to find a case for traveling. This case is all that and more...on one side is a detachable cell phone case...the other side a HIDDEN drink holder. It has a pocket that it slides into if not needed- that came in handy in the airport. This case looks extremely sturdy (well built!)and dirt just seems to wipe right off of it. It holds my 17" laptop, PDA, Cell phone, computer mouse, one-time-use cameras, Ipod, and all the wires and chargers for those electronics. I even fit two books, keys, a folder filled with directions and plane tickets, a notebook, and two dvd's in here. (all of that at the same time) Granted, all that stuff makes it pretty heavy to lug around the airport, so if you are doing that routinely you are going to want something with wheels or backpack form. The strap on this bag is extremely sturdy and cushiony. The strap was long enough for me to wear it diagonally accross my chest if I wanted, but it is not detachable (which means it isn't likely to fall off easily). This bag is extremely well-designed. There is a strap for attaching it to wheeled luggage...it even fits under the window seat of the airplane and those areas for storage are much smaller than the aisle seats. Very well padded..I knocked my brand new computer around a bit during the travels and kept opening the case to make sure it was okay! Of course it was fine because there are 3 heavy duty layers of padding. Because this bag does all that and more, it is large. It becomes larger the more you stuff it (obviously). However, I am 5'1" and I carried it fine from North Carolina to New York. It looks great, if I needed to go to a meeting with my laptop I would gladly take it in this case. It looks professional enough. happy buying! ps. let me add that finding a decently priced case for a 17" laptop that has all the features this one does is nearly impossible. Also, in the stores I checked this was sold for about 30 dollars more than here on amazon!! If you have a smaller laptop, this case will work just fine too! It has an adjustable divider. You will just gain more room for other stuff. I look foward to long usage of this case. B0003NN80S:escort's_windshield_suction_cup_mount_for_radar_detectors:michael_maxwell B0003NN80S Escort Windshield Suction Cup Mount for Radar and Laser Detectors: Electronics electronics 2 of 3 5.0 Escort's Windshield Suction Cup Mount For Radar Detectors September 6, 2005 Michael Maxwell Eastern NC, USA Very reasonable price and a must have as a spare for those that leave affixed to windshield year-round. Fast shipping. A great shopping experience B00008V6TI:this_is_a_one_of_a_kind_player._i_love_it.:j._a._mischo B00008V6TI Grundig Eton Ego 4000 Plus Portable CD / MP3 Player with Built-In Removable Speakers: Electronics electronics 5 of 6 4.0 This is a one of a kind player. I love it. March 1, 2005 J. A. Mischo Pasadena, Ca United States I've read the other reviews of this product and feel a need to defend this gadget. I've owned mine for about three years and I love it. I use it nightly. The application I find this perfect for is Audio Books stored on MP3. This of one of the only small, portable MP3 players that has it's own speakers. I go to bed listening to audio books and I don't want to wear a pair of earphones or lug a set of extra powered speakers around. However just slightly larger than a CD Walkman when folded closed it is small enough to work great on an airline trip, where headphones are preferable to the endless roar of the planes engines. The big gripes I've seen repeated in the other reviews are: 1) Poor radio reception. 2) No Bass from the mini speakers. 3) Short Battery life. 1) I never use this to listen to the radio, so I won't comment on it good or bad. But there are thousands of good and cheep radio's on the market so if you need a radio, go buy a radio. 2) I'll agree with the poor bass reproduction in the speakers. Small cone's yield small bass. It's a physics thing. However when I travel and use this to play music in a hotel room, it's been good enough to satisfy the want of a little background music. 3) Battery Life. I'm surprised by the times listed by other reviewers. I get about 30-35 hours of use when I'm on the road using the AA's. When at home or in a hotel, the AC adapter removes the concern about battery life completely. Perhaps this is because I primarily play MP3 disks which it spins up to read into it's buffer then spins down until it needs more data. Anyway I wanted to toss in my two cents, as this is a great gadget for audio book listeners, and I would hate to see someone miss out on it because some reviewers expected the performance of a boom box or home stereo out of a Walkman sized device.. It's my hope that we'll see more devices like this on the market and the price point to come down a bit. But bottom line, I've got my monies worth, and if anyone doesn't want theirs, I'd be glad to take it off their hands. B00006DY6M:works_fine:ms_scout B00006DY6M Fujifilm 128 MB XD Picture Card: Electronics electronics 1 of 1 5.0 Works Fine August 12, 2006 Ms_Scout Texas USA I have used this 128 MB XD Memory card and it works fine. The pictures are good. I have had no problems. I now have this memory card and the standard 16 MB card that came with my camera. Good deal. B0006ZO2CG:please_with_my_daugther_ipod_nano:dany_"daniela," B0006ZO2CG Altec Lansing inMotion iMmini Portable Audio System for iPod Mini: Electronics electronics 3 of 6 4.0 Please with my daugther ipod nano March 15, 2006 Dany "Daniela," Caracas , Vzla Review this product over the internet, and it is just what I was looking for my daughter of twelve years of age, pros. is portable and rechargable; cons. the sound is not as good as the Boose but with less volume it is quite acceptabl B00000J4EL:unbelievably_durable:ahmet_cuneyt_ucisik B00000J4EL Allsop Raindrop Mouse Pad (Blue): Electronics electronics 4 of 4 5.0 Unbelievably Durable November 11, 2000 Ahmet Cuneyt Ucisik Istanbul, Turkey I had bought one of these five years ago when I was in the States and am still happily using it at home. Unbelievably durable for a mouse pad heavily used for hours everyday for five full years. Fed up with giveaway mouse pads sliding with my hand movements, I was searching for something decent to use in the office and amazingly found the exact same item. It is a good example that how little things make a big difference B0007Y79B2:just_perfect:andrea_corcuera_smalley_"low_techie" B0007Y79B2 Apple 4 GB iPod Nano Black: Electronics electronics 5 of 6 5.0 Just perfect November 11, 2006 Andrea Corcuera Smalley "low techie" Paris, France I bought this Ipod 4G to replace my 2G one that got stolen and chose more memory as the 2G got filled up too quickly. Can say that this is probably the best size in terms of memory. Otherwise, as usual with Macs, very easy to use, even for low-tech people like myself, beautiful design, small and light, not too fragile, just great on the go B0007Y79B2:ipod_is_great!:v._antonov_"four_eyes_man" B0007Y79B2 Apple 4 GB iPod Nano Black: Electronics electronics 2 of 3 5.0 iPod is great! November 10, 2006 V. Antonov "four_eyes_man" US Just what I expected - good quality, convenient and holds lots of musi B0006BKG98:flawed,_but_still_the_best_case_for_the_ipod_20_gb:k._w._schreiter B0006BKG98 Contour Design iSee 20 Case for iPod: Electronics electronics 9 of 9 5.0 Flawed, but still the best case for the iPod 20 GB December 3, 2005 K. W. Schreiter Conshohocken, PA I researched cases upon receipt of my 20 GB iPod and deemed this the best. This case consists of a thin plastic sleeve inside a separate clear, hard shell. The hard case protects the iPod from scratches and minor falls while still allowing easy access to the controls and inputs. It also does not obscure the screen. An enclosed plastic belt clip attaches to the back of the unit. This case is not compatible with a Bose Sounddock as the user must remove the iPod from the case. Also, Contour Design only enclosed one of the thin plastic sleeves. I spent $5 at their website for 5 more sleeves and gave some to friends with the same case. The price seems high for a couple pieces of plastic but a case is essential and this is the best one for the 20 GB iPod. B000ELCQ8Y:great:e._p._fern�ndez_"eponce" B000ELCQ8Y Sony Memory Stick Pro Duo 2 GB - High Speed: Electronics electronics 1 of 1 5.0 Great August 12, 2006 E. P. Fern�ndez "Eponce" Costa Rica It's great if you have High Speed enabled devices. It's very fast a 2GB is sufficient for almost purpose B0000ALFCI:works_for_me:j._chen_"jonc" B0000ALFCI Logitech Dual Action Game Pad USB: Electronics electronics 4.0 Works for me October 27, 2006 J. Chen "JonC" Irvina, CA USA I've had this controller for over a year now, and it still works great and reliably as ever. After many months, the analog sticks occasionally drifted a little, but a quick jiggle and they'd be back to center. The profiler software is excellent, allowing you to fully map the controller to your keyboard and even mouse. This allows you to play any game with the controller, even ones which don't naturally support gamepads like Splinter Cell. With the "shift" profile function, you can effectively double the number of buttons which I found great for playing a complicated flight sim like X-Wing Alliance, completely keyboard free, using only the gamepad. Only downside: The D-pad is hard to control precisely. It's difficult to press only Up, Down, Left or Right. You almost always end up pressing a diagonal direction instead. This made the D-pad more or less unusable for games like Street Fighter, but then the analog stick was a perfect alternative anyway B000EZP1QE:razor-sharp_image_and_good_features:eric B000EZP1QE Samsung 215TW 21" LCD Monitor: Electronics electronics 37 of 40 5.0 Razor-sharp image and good features April 30, 2006 Eric Portland, OR, USA First, I should say that I'm surprised at how sharp and clear the image is. The display card at CompUSA said this monitor has a 1000:1 contrast ratio, and I'm not sure what that means, but it definately seems to translate to a crystal clear picture. The contrast ratio is higher than most other flat-panels I looked at, which have a contrast ratio of around 500:1 to 700:1 (including Samsung's own 20.1" non-widescreen model). Everything is crystal-clear, which makes it easy on the eyes and good for watching movies. It is also good for gaming - Half-life 2 and Unreal Tournament 2004, for example, both look great. Its wide-screen resolution of 1680x1050 is more than decent for most tasks. It also has a feature that lets you change the aspect ratio to 4:3 (which makes a square picture centered on the screen), so if you have any games or other applications that don't support widescreen modes, you can use 4:3 mode so that the picture doesn't look stretched and distorted. Plus, the monitor has DVI, analog VGA, S-Video, and RCA inputs (which would allow you to plug in a DVD player if you want). The monitor can also rotate 90 degrees, and it has built-in speakers and a headphone jack. Being a flat-panel display, it is also lightweight and compact, which is ideal for areas where space is limited. This is my first flat-panel display, and I was surprised at how lightweight it really is. All of these features, especially the sharp image, make this a great monitor, and it is worth the money B00005QSRF:12_v__adaptor:r._kilmartin B00005QSRF Magellan Meridian External Power Cable with Cigarette Lighter Adapter: Electronics electronics 4.0 12 V Adaptor August 16, 2006 R. Kilmartin Pa. USA This was a defective unit. Got new unit and it works as expected B00005QSRF:a_must_have_if_you_bought_the_car_bracket:d._johnson_"chi-town_dale" B00005QSRF Magellan Meridian External Power Cable with Cigarette Lighter Adapter: Electronics electronics 1 of 1 5.0 A must have if you bought the car bracket January 6, 2006 D. Johnson "Chi-Town Dale" Wheaton, Illinois USA The den of horrors that is the Magellan car bracket requires you to have this power cord. If you don't then you will be fighting to change batteries and remount your GPS and that is no fun at all. I have used mine for over six months and it works without a hitch. A nice improvement would be a retractable cord facility so that you don't have excess cordage lying around your dashboard. Right now I loop the excess around the steering wheel but then again I never change the adjustment on the steering wheel so no problem with the wire getting caught up in the adjusting mechanism. Others may run into this problem. The alternative is a shorter wire but then it would make the power unit useless for some vehicles. A minor hitch but not earthshaking. B00007KDVI:works_out_of_the_box:adam B00007KDVI Linksys WRT54G Wireless-G Router: Electronics electronics 1 of 1 4.0 Works out of the box November 16, 2006 Adam FL United States Pluged it in and good to go, I skipped the installation disk in fear of what nonsense is loaded on that... went to the admin screen, a little overwhelmed with ALL the features, it could be more stremlined, for a novice user they would be entirely lost, perhaps that is whats on the install disk (easier setup), but my experience self, got through just fine, enabled the maximum security features (more so then the easy setup button, which itself is good but does not suffice my network requirments). Heard lots of issues, was weary, but out of the box works great, no issues, no dropped connections. And for that reason, since it works I do NOT intend to flash the firmware to the latest, as the saying goes if it isnt boke don't fix it. BTW home network is a mix of print server, wired PC, wireless Apple powerbook, everything running smoothly B00004VX39:garmin_carry_case:mab B00004VX39 Garmin Carry Case for eTrex Series & Summit: Electronics electronics 0 of 1 5.0 Garmin Carry Case September 14, 2006 mab Ilinois I'm glad that I bought the carry case with my Garmin eTrex, because it has kept it clean and easy to hold and carry. I haven't used the belt clip yet, but I liked that option B000BKLNHS:happy_so_far:b._bowman B000BKLNHS Altec Lansing XM3020 Docking/Speaker System for the MyFi, AirWare, Tao: Electronics electronics 5.0 Happy so far November 2, 2006 B. Bowman Little Rock, AR USA After reading the online reviews of this product vs. the portable product I went with this one. Portability is not much of a need, I plan on being around a power outlet. The sound is in line with a radio/boom box of the same size and it's about the same weight. I have a lot of trees around my house so I have to extend the antenna several feet out the back door in order to get a good signal. Keep that in mind if you have signal issues with your satellite unit. I have my unit placed next to the back door in the kitchen and I can hear it all over the first floor of my home. So far I'm happy that I bought it B000BKLNHS:great_speaker_system_for_the_price!:s._taylor B000BKLNHS Altec Lansing XM3020 Docking/Speaker System for the MyFi, AirWare, Tao: Electronics electronics 3 of 3 5.0 Great Speaker System for the Price! July 31, 2006 S. Taylor Indiana I was surprised at the sound quality of this small speaker system. I purchased it to use in my bedroom on my nightstand and am very pleased. You can hear the music in several other rooms if the volume is turned up, without distortion. I am very pleased with my purchase and would recommend the speaker system to others B000CSF6MM:almost_perfect...if_you_don't_mind_lint:shannon_cox B000CSF6MM ISkin eVo3 Sonic - Case ( for digital player ) - silicone - vibrant blue - iPod with video (5G) 30GB: Electronics electronics 4 of 4 4.0 Almost perfect...if you don't mind lint February 23, 2006 Shannon Cox Doylestown, PA This case is a veritable dirt magnet. It attracts more lint than I ever knew existed on my desk. However, it protects very well. One thing I was worried about was the possibility of the hard plastic front of the case scratching my screen. However, it doesn't even touch the ipod. Also I worried about a loss of sensitivity for my clickwheel. While it isn't quite as sensitive, it makes it more precise in my opinion, seeing as how I all of a sudden found myself at the end of my artists lists when I wanted in the S range without the case on. This blue case even looks good on my black ipod, even though I was worried the color would appear muted. It's still vibrant. One complaint that some have already brought up is the covered hold button. Truthfully this doesn't bother me, because I have long enough fingernails to dig in and push the button. But those without could have a great deal of difficulty. Also, the hole for the headset isn't quite large enough, and sometimes my headphones will pop out (I'm not using the earbuds that came with the ipod, so I do not know how those would fare). Overall, it's a great case that you won't lose your grip on. It protects well, and you never have to take it off, even to plug it in. I would recommend it, though it is a bit pricy. In a bit of an update, with this case on, my iPod survived a ferret attack, with only one little tiny puncture mark on the outside of the case. I think this case is well worth the money. My iPod could have been destroyed, but it's perfect B0000C9ZJY:absolutely_worth_it:jt_"i_may_not_have_gone_where_i_intended_to_go,_but_i_think_i_have_ended_up_where_i_intended_to_be._(adams)" B0000C9ZJY HP OfficeJet 5510 All-in-One Printer, Fax, Scanner, Copier: Electronics electronics 10 of 12 4.0 Absolutely worth it October 28, 2005 JT "I may not have gone where I intended to go, but I think I have ended up where I intended to be. (Adams)" Tampa Bay, FL United States Printers have gotten inexpensive. Let's face it; the game is, cheap printers and then the consumer buys cartridge after cartridge of ink refills. I'm fine with that. For the $149 Amazon price, this machine actually *does* do everything I need it to: a fax machine for those rare occasions I need to fax a physical piece of paper. A great inkject that doesn't consumer *that* much ink. It copies and scans. I have used every function, am pleased with them all. Sure, it feels a little flimsy; it is a small machine meant to do work that you are used to seeing a huge piece of hardware accommodate in a standard office. However, it has held up well to some serious use in the past couple months, so that flimsiness isn't really even a complaint. And I work from an office in my home three weeks out of each month, so I am more than glad I can reproduce all the functionality my "real" office provides me. All in all, worth the money B0001MR13G:decent_phone_-_i'm_satisfied:j._b._mccord B0001MR13G AT&T E5965C 5.8 GHz DSS Expandable Cordless Phone with Answering System: Electronics electronics 4.0 Decent Phone - I'm Satisfied November 20, 2006 J. B. Mccord San Diego, CA We bought this phone and two additional handsets eleven months ago. One handset gave us problems from the start, but was promptly replaced when returned for service. The system works fine in our 2-story, 2,300 sq. ft. home. I did notice some reception problems carrying the handset into the closed garage with the base station upstairs on the opposite end of the house. As a test I took the handset down the street about 100 yards away - it still got a clear dialtone to the base located in upstairs bedroom facing the street. I like the features, including paging system, call transfer, and handset speakerphone. Being able to have a phone at any 110v outlet location is a big plus. I think the sound quality is very good, and the controls well laid out and pretty intuitive. I agree that having to enter memory numbers into each handset is a drag. Overall I feel it works as advertised, and we'll be using it for a long time B0001MR13G:great_phone:karen_v. B0001MR13G AT&T E5965C 5.8 GHz DSS Expandable Cordless Phone with Answering System: Electronics electronics 1 of 1 5.0 Great Phone September 30, 2006 Karen V. New Jersey I bought this phone over 6 months ago and absolutely love it! It has great sound quality. I love the features it has such as speakerphone, caller ID, and it's phone directory. The only thing that is not great about this phone is that the base and the headset each have their own memory and you will need to enter people twice-into both directories. Oher than that, this is a GREAT phone. I have owned panasonic and GE cordless phones in the past and had problems. I even bought and returned 2 phones before trying and keeping this phone. B000A1AQOO:amazon_fails_to_deliver:scott_burgess B000A1AQOO Linksys WTR54GS Wireless G Travel Router with Speedbooster: Electronics electronics 0 of 14 5.0 amazon fails to deliver July 13, 2006 Scott Burgess amazon attempted to extort second payment for undeliverd items claiming they would refund late B000EEZ2R8:i_got_one_heck_of_a_deal!!:r._signs_"doc2toxic" B000EEZ2R8 Belkin F8Z063-BLK TuneBase FM for iPod Nano (Black): Electronics electronics 4 of 4 5.0 I got one heck of a deal!! October 18, 2006 R. Signs "Doc2toxic" Suffolk, Va This FM transmitter is the bomb diggiti!! PROS: The clarity it great and the fact that it has a long neck makes it the best! PROS: If you own a Chyrsler PT Cruiser, you will love this device. The neck brings the IPod even with the top of the steering column. So it right into view on the right. You don't have to look down or fumble for you I-Pod in between the seats. PROS: Very stable once it is in the outlet. PROS: GREAT reception! CONS: Would be nice if it had a on/off switch on the base for those outlets that stay on even when the car is off. The green light on the device my attract unwanted attention. CONS: I have to take off my protector everytime I use the IPod in my car B000095SLZ:4_games_not_t5_compatible._others_are_fun...:daniel_b._widdis B000095SLZ PalmOne P10914U Games Essentials Card: Electronics electronics 5 of 5 4.0 4 games not T5 compatible. Others are fun... September 17, 2005 Daniel B. Widdis On the plus side, it's a great value for the games that do work on the T5. SimCity alone is probably worth the price. On the down side, although Amazon claims it's compatible with the "Tungsten Series" that was probably written before the T5 came out. Four of the games appear to act as "trial" versions, although it's impossible to enter the registration codes. See (...) for an explanation. Even with only 4 working games past the trial period, it's a good buy. Just know you're not getting what's advertised if you have a T5 B00006BBEL:quality_does_not_cost_--_it_pays!:g._m._shaheen B00006BBEL HP Premium Plus Photo Paper, High Gloss (50, 8.5x11 Inch Sheets): Electronics electronics 1 of 1 5.0 Quality does not cost -- It pays! January 30, 2006 G. M. Shaheen HP Premium Plus photo paper is the only way to go if you desire tremendous photos from your home printer without any scratching, scuffing or blemishes. I have tried less expensive paper from HP as well as other manufacturers. The difference in quality is obvious. If you want friends and family to think you know what you are doing, share photo's on HP Premium Plus glossy paper. Jay Shahee B00083CZD4:flash_drive_:valentian_acosta_espana B00083CZD4 Memorex 1GB M Flyer TravelDrive USB 2.0 Flash Drive ( 32509560 ): Electronics electronics 5.0 Flash drive October 5, 2005 Valentian Acosta Espana Excelent, hard drive, good price and good time for seller. thanks B000A2BLEC:almost_free!!__just_pay_for_shipping:t._m._weddle B000A2BLEC iPod USB Travel Power Charger Adapter for Nano, Shuffle, 4G, Mini, Photo and U2- HHI Brand: Electronics electronics 5 of 5 5.0 Almost free!! Just pay for shipping August 9, 2006 T. M. Weddle Ohio I ordered one from an Amazon partner for $ .01 plus shipping, then with my A9 discount the price was even lower. So I got one for less than the shipping cost. True, the seller made a little on the shipping - maybe $4.50 not counting time. Think how much Apple must be making! The packaging didn't mention Nano so with a bit of trepidation I plugged it into the wall and my iPod and my Nano liked it! Charging happened - it must have been made before the Nano came out. As other reviewers have said, buy this one and avoid a HIGH price elsewhere B0009GHRBK:must_have:keith_mutter B0009GHRBK Magellan 980806 Roadmate 300 / 700 Carrying Case: Electronics electronics 25 of 26 5.0 Must Have October 2, 2005 Keith Mutter I purchased the pouch & the carring case shortly after. I own more than one car and have four family menbers that are always on the go.The case holds the GPS, mount and all the different cables.The foam insert holds the GPS while still in the pouch or without.The velcro staps hold the mount & the ac cord.This way when you are looking for it,everthing is in one place.The case is made well and very plain looking on the outside,so not to draw any attention B00078GLJY:as_advertised:glenn_a._brottman_md_"doc" B00078GLJY OPPO OPDV971H Digital HD-Ready Up-Converting DVD Player: Electronics electronics 5.0 As advertised November 9, 2006 Glenn A. Brottman MD "doc" New York, NY Very easy to set up, great product. Picture is great on my samsung 50 inch plasma B00078GLJY:first_rate_machine:juan_c._jaramillo B00078GLJY OPPO OPDV971H Digital HD-Ready Up-Converting DVD Player: Electronics electronics 5.0 First rate machine November 9, 2006 Juan C. Jaramillo Washington DC It is a pleasure to use this DVD player. The quality of the image is superb. It upgrades definition on DVDs and the difference is very (favorably) noticed. As compared to that obtaibed from a less than a year old Sony player (with HDMI), the difference in image quality absolutely huge. Yes, it is more expensive. But the extra quality is worth every penny; and then more B0009K9FZW:great_modem_for_those_with_voip.:mike_l. B0009K9FZW SB5120 Surfboard Cable Modem Docsis 1.1 and 2.0 Certified USB: Electronics electronics 5.0 Great modem for those with VOIP. November 9, 2006 Mike L. New Jersey I had a problem with my Sunrocket VOIP and I read that someone had bought this modem and that it solved her problem. I gave it a shot and guess what no more dropped calls. Thank you Motorola!!!!!!!!! B00007LAYN:quality_cable:b._blom B00007LAYN Monster Cable DVI400-2M DVI-D Video Cable: Electronics electronics 2 of 2 5.0 Quality Cable September 13, 2006 B. Blom Colorado, USA I ordered the 4 meter cable which was pictured with 24 pin connectors and received one with 18 pins. Found out that the missing middle 6 pins are used to transmit audio which my monitor doesn't support anyway. Originally, the DVI-D specification allowed for both a video signal and an audio signal, but most manufacturer's have only used the video portion. If you need a DVI-D cable, an 18 pin connector will most likely work since most devices won't process the audio signal anyway. There are a few (very few) devices that do use all 24 pins, but with the advent of HDMI, nobody really makes them anymore B00007LAYN:my_review:baonam_truong B00007LAYN Monster Cable DVI400-2M DVI-D Video Cable: Electronics electronics 0 of 1 5.0 My Review July 8, 2006 Baonam Truong Product came in as describe. Super clear picture quality as it's supposed to be as Monster Cable brand B0002SAF4G:great!!!:karen_"prettybluluv" B0002SAF4G Labtec Pulse 485 2.1 Multimedia Speaker System: Electronics electronics 1 of 1 4.0 Great!!! August 24, 2006 Karen "PrettyBluLuv" New York I am not really a big tech person so I don't have the mega system hooked up to my computer and DVD/TV but I do know that since I got this I have been blasting my music like crazy. I don't really mind too much that the power and volume is under the desk because I have enough space down there and all I have to is lean down... Anyway I personally feel the only way it could be better was if there was a remote for it and it gets hella loud (considering its computer speakers) I don't even have to turn them all the way up to hear them when I'm in the shower so I am pretty much happy with them B0002SAF4G:totally_awesome_for_the_price!!!:sara_smile_"pw_rocker" B0002SAF4G Labtec Pulse 485 2.1 Multimedia Speaker System: Electronics electronics 3 of 3 5.0 TOTALLY AWESOME FOR THE PRICE!!! August 3, 2006 Sara Smile "PW rocker" Cincinnati, OH These speakers are amazing, I am truly shocked to receive something so sweet at an unbelievable price, amazon thank you for the hook up, my speaker system rocks. My delivery experience with amazon was great. Can't thank you enough, keep up the great service, truly B0002SAF4G:great_computer_speakers_for_a_great_price!:brian_kloppenborg_"electronics_junkie_:d" B0002SAF4G Labtec Pulse 485 2.1 Multimedia Speaker System: Electronics electronics 6 of 6 5.0 Great computer speakers for a Great price! June 8, 2006 Brian Kloppenborg "Electronics Junkie :D" La Mesa, Ca I needed new computer speakers after my Cyber Acoustics died after only 3 months. SO i wasn't going to buy the same brand since it died so fast. I use a Mac i wanted some nice sounding speakers, but couldn't decide to go with either the Sound Sticks, Creatures, or these. Well since i am saving up for a new Laptop, i wanted to save as much money as possible. Plus me and my dad had bought this brand over 7 years ago and they STILL work and sound great so i decided to give these a chance. Well first thing i did when i got them was turn the volume up to Max and Sub base up to Max. (Yes i underestimated these speakers) When i turned a song in in iTunes i nearley got blasted out of my chair! I was supprised by the sound clarity was pretty good even at higher volume, and sub was powerful shaking my whole desk! Moral one: Do not underestimate speakers my good brands even with low wattage. I highley suggest these speakers for people who don't have much to spend or don't want to spend alot of money. If you want better quality i would go with Sound sticks or Creatures. But these look like they will serve me well B00006OLCT:perfect_for_price:k._horvath B00006OLCT Logitech QuickCam Messenger WebCam: Electronics electronics 2 of 3 4.0 Perfect for price June 30, 2005 K. Horvath Okinawa, JP The camera is perfect. If using the camera for keeping in touch with friends and family this is the camera for you. The picture is clear not to grainy. The only heads up is lighting. Try to use the camera in a well light area. We are stationed in Japan and use the camera almost daily to spend time with family back home. The camera has added great joy to the family especially when feeling homesick. The best part is the price won't break the bank B00005JAFE:cheap_and_convenient:v_garrison B00005JAFE Canon BCI-6Y Yellow Ink Tank: Electronics electronics 2 of 3 5.0 Cheap and Convenient March 14, 2006 V Garrison Steubenville, OH Around here Canon ink is difficult to locate and expensive when you actually find someone who carries it. It may take a week or two to arrive using Amazon's free shipping option, but I get fantatstic results from my Canon Pixma MP780 (that I also bought from Amazon). Most of my printing is borderless 8 1/2x11 and the quality is always great. Definitely worth it. If turnaround time is a problem, buy two so you always have a spare. B0002ZAILY:ipod_shuffle:thea_d._marlborough B0002ZAILY Apple 512 MB iPod Shuffle: Electronics electronics 5.0 iPod Shuffle November 14, 2006 Thea D. Marlborough Van Nuys, CA United States Gave as a gift. Excellent value. Tune capacity more than sufficient, easy to use and sound quality is right up there. Must get one for myself B000EMCZ3Y:panasonic_kx-tg2620w_2.4_ghz_fhss_cordless_telephone:huey_precise B000EMCZ3Y Panasonic KX-TG2620W 2.4 GHz FHSS GigaRange Digital Cordless Telephone: Electronics electronics 7 of 8 5.0 Panasonic KX-TG2620W 2.4 GHz FHSS cordless telephone August 20, 2006 Huey Precise Dallas, Texas USA Outstanding product as you would expect from Panasonic. Incoming calls loud and clear. The scroll telephone directory is convenient and easy to use. I do not like the "beep" sound when the hand-set is placed back in the cradle (it cannot be turned off B0009NZ6M0:never_had_a_problem.:mr._michael_lucien_whaley_"mlwhaleyus" B0009NZ6M0 Verbatim DVD+R 4.7GB LightScribe 30pk Spindle: Electronics electronics 5.0 never had a problem. July 12, 2006 Mr. Michael Lucien Whaley "mlwhaleyus" Colorado Springs, CO I often have problems with memorex brand but have never had a problem with Verbati B000AKX10G:a_must_with_the_garmin_gps_i5:anonymous B000AKX10G Garmin Automotive GPS Friction Mounting Kit: Electronics electronics 5.0 A must with the Garmin GPS i5 November 11, 2006 Anonymous USA I don't think I would have used my i5 without this. I just wish it came with the GPS instead of having to buy it separately. Great to easily move my GPS from car to car. Highly recommend B000AKX10G:grips_like_a_spider!:d._ralston B000AKX10G Garmin Automotive GPS Friction Mounting Kit: Electronics electronics 5.0 Grips like a spider! November 9, 2006 D. Ralston California USA A great solution to theft prevention for this GPS. The legs fold up to make a compact unit that easily fits into the glove box. As for the grip on the dash, it works very well. There is a little bit of creep on slick dash boards, but it sticks better than the Garmin bean bag on my 2720. B000077CEB:a_perfect_addition_to_my_mobile_aresenal...:robert_gordon_"macaddict_extraordinaire" B000077CEB SanDisk SDDR-80-784 Firewire CF Reader: Electronics electronics 15 of 16 5.0 A perfect addition to my mobile aresenal... April 7, 2003 Robert Gordon "Macaddict Extraordinaire" Decatur, GA United States The reader is fast. Example: I took 56-2MP images from my camera recently. I plugged this reader into my G4, plugged in the card, the card mounted, I dragged the images to my Pictures folder, and they copied immediately. No waiting. I was amazed, because with my [MIA] USB reader, it could take a while to transfer that many images, over a minute. A copy dialog didn't even pop up, because it transferred so fast. It doesn't hurt that it's a cutie too. 5 stars B000A2BKAM:hey,_it's_canon.:kamran_grasselli_"kam" B000A2BKAM Canon CLI-8C Cyan Ink Tank: Electronics electronics 5.0 Hey, it's Canon. November 3, 2006 Kamran Grasselli "Kam" Washington, DC It's a Canon product made for another Canon product -- how can you go wrong? B000A2BKAM:combine_shipping_for_free_shipping_of_ink_etc:m._s._willis B000A2BKAM Canon CLI-8C Cyan Ink Tank: Electronics electronics 1 of 1 5.0 combine shipping for free shipping of ink etc August 18, 2006 M. S. Willis Sacramento, ca USA Good printer ink, always try to use factory ink and these are with a good price. I bought all the colors and paper at the same time all good price and free shipping. Save gas driving to local stores B000EDI3Y8:sony_dvd_player:byron_l._lagoy_"b._lagoy" B000EDI3Y8 Sony DVPNS55P/B Single Disc DVD Player: Electronics electronics 4 of 4 4.0 Sony DVD Player November 9, 2006 Byron L. Lagoy "B. LaGoy" Santa Rosa, CA Operation of the Sony DVPNSS550/B single disc DVD player has been straight forward. Picture quality is very good, and the desired basic features have functioned without problems. In other words, in the 2 1/2 months since we have owned this player, quality and reliability have been high. Price too was very reasonable. That means durability is the last quality to consider, which is why I have given the player a 4 rather than a 5. There is no reason a machine like this should not be problem free for years. But we won't know that for years. B00005NHGP:great_for_sony_mavica_cameras:abilene_police_dept B00005NHGP Memorex 210 MB 24x Pocket CD-R Mini-Discs (50-Pack Spindle): Electronics electronics 2 of 2 5.0 Great for Sony Mavica Cameras July 31, 2002 Abilene Police Dept Abilene, KS United States These mini CD-Rs work great in our Sony Mavica CD Cameras at a cost of only .42 cents apiece B0002YGJY0:great_multi-function_with_a_little_room_for_improvement:andrew_balthazor_"iraqi_war_vet" B0002YGJY0 HP OfficeJet 7410 All-in-One: Electronics electronics 6 of 6 4.0 Great multi-function with a little room for improvement August 1, 2006 Andrew Balthazor "Iraqi War Vet" Houston, TX USA This is a great multi-function printer/scanner/copier/fax machine for a small office or home business that has a light to moderately light document workload. Print quality is excellent, scanning quality is excellent, copying quality is excellent, faxing is faxing. The control software is fine; not great, but it does the job. The networking features, including built-in wireless, makes this printer a snap to integrate into your office / business using a wireless network. Some concerns: after heavy usage the top document feeder, used for scanning, faxing, or photocopying a stack of loose documents, begins to jam. The rollers need to be cleaned to avoid this, and getting jammed paper out of the top document feeder is very difficult. However, the fact that this piece of equipment even has a document feeder for this sort of functionality is pretty good. The fax log keeps a record of outgoing faxes and you can re-send them easily enough, but you can't re-print faxes received; the fax log merely logs their reception, but not the fax itself. Overall it's a good multi-function at a reasonable price with a lot of functionality built into it. Would recommend to anyone who only has a light document load, with maybe the occasional large document scanning / copying requirement B000089GN3:wow!:zach B000089GN3 Sennheiser PX 100 Collapsible Headphones: Electronics electronics 2 of 2 5.0 Wow! November 17, 2006 Zach Lander, WY USA As long as I own a pair of these headphones, I will never use bass boost or a graphic equalizer again. They sound PERFECT. I cannot fathom a more balanced, natural sound. These babies put you in the recording studio, or in the concert hall! Bass is crisp, taut, and strong. You can feel it. Yet it is not overbearing or boomy. Midrange is balanced so well that you'd swear you were standing next to the lead guitarist, and the treble is so crisp and clear that you will rediscover the percussion sections of your favorite tunes. The folding feature is handy. The only things to be aware of are the following: First, you have to break them in. They start sounding better after a few hours of use. Second, they don't have an inline volume control, which I will dearly miss from my Koss KTXpro1s. Finally, plenty of sound escapes. So don't crank them too much in the library or at Grandma Edith's funeral. Other than that, you have no excuse. Put your iPod's lousy white earbuds in the garbage disposal where they belong, and order these (or if you don't want to fork out $40, order the Koss KTX Pro titanium phones - which are almost as good as these, and definitely the best in the sub-$20 price range.) B000EGJZ2O:good_sound,_exellent_noise_insulation.:e.t._"the_tyrminator" B000EGJZ2O Creative Headphones EP-630: Electronics electronics 2 of 2 5.0 Good sound, exellent noise insulation. November 8, 2006 E.T. "The Tyrminator" Good sound for the price, and very durable. Discrete design. I prefer the "plug" design to other headphones. They don't fall out, and I can listen to music at low volume at home or in a plane, it makes almost no difference. Just be careful in the traffic ;-) The sound is good, especially for music where the bass is most important, but the treble is also good for pop and rock. The middle range is a bit dry for e.g. classical music, but still good enough for an mp3-player. I have two pairs. B000EGJZ2O:creative_earphones_ep-630:jason_cerundolo B000EGJZ2O Creative Headphones EP-630: Electronics electronics 1 of 1 5.0 Creative Earphones EP-630 October 4, 2006 Jason Cerundolo Pasadena, CA These earphones are excellent quality. Noise that gets in from outside is so low that I can barely hear what someone next to me is telling me. In addition, the frequency response and quality of the sound is comparable to the much larger and bulkier insulated headphones. These earphones do in fact rest in your ear. It can be slightly uncomfortable to put them in the first time, but you quickly get used to it, especially when sound is playing. In addition, the package includes three sets of differently sized earpieces including the default mid-sized piece shown. B000EPHP4U:good_but_possible_defect?:rick_t._nguyen_"info_addict" B000EPHP4U Apple 8 GB iPod Nano Black (2nd Generation): Electronics electronics 5 of 8 4.0 Good but possible defect? November 12, 2006 Rick T. Nguyen "Info Addict" Redondo Beach, CA United States I just got my NANO last week and the minute I turned it on (before even transfering any music to it) I could hear a faint noise/buzz from the nano. It comes on when the power is on and goes off as soon as I turn off the unit. Has anyone experienced this with theirs? My first generation nano does not experience this noise. I plan to take it to an Apple store and try to get a replacement. Just a bit frustrating when you plopped down the $250 and the new toy already appears to be defective. Lesson learned for everyone else, if you don't have to get a new toy right when it comes out...wait...let them get the bugs sorted out first on new adopters like myself B000EPHP4U:ipod_hater_that_has_reformed_his_way_of_thinking:mike_mcauley B000EPHP4U Apple 8 GB iPod Nano Black (2nd Generation): Electronics electronics 3 of 5 4.0 Ipod hater that has reformed his way of thinking November 5, 2006 Mike Mcauley Idaho, USA I have never been a fan of the Ipod. I have been an Iriver H120, H320, and H340 owner. I had a Toshiba Gigabeat and currently own an Archos AV500. The reason for owning a Nano is because of the size of the AV500. It is too big to pack around unless I am on the bike or have a backpack or coat on. The Nano solves this problem and other than not having a remote, (soon), I am very happy with it. It loads from Itunes very easily and I have had no problems with it not playing certain files, (and I would reencode them if there was a problem.) Apple, don't let me down B00004Z7G9:classic_from_the_golden_age_of_high-fidelity_adiophilia:b._lynch_"the_onewhoknows" B00004Z7G9 Koss Pro-4AA Studio Quality Headphones: Electronics electronics 4 of 4 5.0 Classic from the golden age of High-Fidelity Adiophilia January 13, 2006 B. Lynch "the_onewhoknows" USA The KOSS Pro-4AA's were not made for iPod/MP3 headphone users. TO begin with, they reveal the low fidelity of MP3 files (compared with LP's or CD's). Also, they require a 1/4"-to-3.5mm (or other) adapter in order to plug into most recent audio playback and computer equipment. These Headphones have been around a long time. Check out the old photos of the "Watergate" hearings from 1973/1974, and notice that the Senators & attorneys were all listening through KOSS Pro 4AA headphones. Their longevity is mainly due to their extermely high fidelity audio reproduction. Unfortunately, their age has made them somewhat inconvenient for most listeners, since they are very heavy and a bit cumbersome. NEGATIVES: 1) Weight (about 3 or 4 times as heavy as most contemporary studio-reference headphones) 2) Tight headband - as noted, the fit is fatiguing if your 'hat size' is greater than 7 1/2. 3) The coiled cord is extremely difficult to replace (it's actually less expensive to replace the entire set of headphones of you can get a good discount). POSITIVES: 1) AUDIO FIDELITY. Unless you want to spend at least $300 for a set of headphones, the sound quality and fidelity of the Pro-4AA's is almost impossible to beat. 2) VALUE. As noted above, for the price you pay, these are vastly superior to any other headphones that are comparably priced. 3) DURABLE. My first pair lasted 30 years. They were dropped and knocked around, and finally gave out when (It think) a voltage spike surged in the left earphone, fusing a coil. 4) ISOLATION. THe paddded earphones block out external sound very well. The sound fidelity is preserved over a wide volume range. These sound great at low and high volumes. The biggest Positive (and the reason why I prefer to use Pro-4AA's for audio mixing, other studio applications, and serious listeining) is that they are extremely unlikely to be stolen. Size matters: they are heavy, and bulky so they're not easily concealed; and since iPOD or MP3 players use the mini plugs, these require additional hardware. If you just want 'jogging/exercise music', then these will not work well. If you want hi-fidelity at a bargain price, the Pro-4AA's are still the best choice around. B0009N7OKW:cool_mouse...with_a_minor_gripe:rajkumar_srikrishnan_"crush04" B0009N7OKW Logitech V200 Cordless Mouse - Black ( 931380-0403 ): Electronics electronics 1 of 1 4.0 Cool Mouse...with a minor gripe November 9, 2006 Rajkumar Srikrishnan "crush04" San Diego, CA Bought this mouse over 3 months ago, and its still going strong. The batteries last forever (I've never replaced them yet). My only problem is that at times, I will turn off the mouse by attaching the receiver to the bottom, but it won't seem to turn off! I reset the mouse and then attach the receiver again, and this always does the trick. Other than that, very ergonomic, extremely smooth and precise. I like the solid feel of a slightly weighty mouse, and with the batteries, this mouse feels just right. If only it weren't for the mouse not turning off sometimes, I'd give it a 5 B0009N7OKW:great_addition_to_a_laptop:a._lashway B0009N7OKW Logitech V200 Cordless Mouse - Black ( 931380-0403 ): Electronics electronics 5.0 great addition to a laptop November 4, 2006 A. Lashway Northampton, MA USA this is a great little product to take the place of the builtin finger pad on a laptop.....the USB just plugs in and the mouse is the perfect size for comfortable us B0009N7OKW:awesome_wireless_mouse:wendela38 B0009N7OKW Logitech V200 Cordless Mouse - Black ( 931380-0403 ): Electronics electronics 5.0 Awesome wireless mouse October 4, 2006 Wendela38 Waukesha, WI I previously had purchased a different brand of wireless mouse, I can't recall the brand, but it was awful (battery contacts wouldn't stay in contact and it was hard to use). I was using my laptop at my brother's house and he lent me his Logitech V200. It was AWESOME! Just plug in and use! I went home that nite and looked it up here and saw that others had had similar experiences, so I bought one. I've had it for about a month now and love it. The scroll wheel being able to lean left & right for sideways scrolling is a nifty feature. I recommend this product highly B00067KT94:critical_al:alexander_don-doncow_"critical_al" B00067KT94 Creative Webcam Live! Pro USB 2.0 WebCam: Electronics electronics 4.0 Critical Al November 2, 2006 Alexander Don-Doncow "Critical Al" San Francisco,CA USA I have not used this device all that much but it seems to work well. It lives up to its claims. The "face tracking" feature is not always fast and accurate, but generaly works (in good light). This camera does require a significant amount of light to give good results, but then again what camera doesn't. Image quality is about as good as you will get from this type of device B000FIVDIU:good_monitor_for_the_price:kerry_kobashi B000FIVDIU ViewSonic Optiquest Q9b 19" LCD Monitor: Electronics electronics 12 of 13 4.0 Good monitor for the price September 21, 2006 Kerry Kobashi My first purchase of the Q9b resulted in a return as the display wasn't mounted properly within the plastic housing. This resulted in the screen being tilted downwards about 1/4" and made the viewing unpleasant. The screen also wasn't very bright even with the brightness controlled up at 100%. Having to disassemble the unit to place it back in the box required the base stand to be taken apart but that was next to impossible without breaking it. Suffice to say, quality control missed this one. After getting a new Q9b replacement, I unfortunately had a bad pixel. After using the Q9b for a week now, I noticed some red aliasing between characters. The crispness of the display is fine but I changed display fonts to 120dpi to make it look better. The control buttons on the monitor are too small. The built-in speakers leave less than desired and useless. The Q9b does not have DVI ports. At 1280x1024 mode its fine for doing basic computing like web surfing and office applications. Viewing DVD movies at full 1280x1024 mode was difficult to watch. At smaller sizes (400x300) was fine. All in all, the Q9b is not a bad monitor for the price for general computing work B000B5KUX6:psp:mr._mansoor_syed B000B5KUX6 SanDisk Gaming Memory Stick PRO Duo 2GB ( SDMSG-2048 ): Electronics electronics 5 of 12 5.0 psp May 24, 2006 Mr. Mansoor Syed London You idiot, its not only for PSPs - the card can go in anything that has a memory stick duo slot [phones + cameras + PSP + TVs + computers B00005JAFD:nothing_beats_oem_products._._.:r._shunk B00005JAFD Canon BCI-6M Magenta Ink Tank: Electronics electronics 2 of 2 5.0 Nothing beats OEM products. . . July 10, 2006 R. Shunk Blacklick, OH United States After ordering non-OEM inks from several different places on the web (and having some problems with them), I discovered that Amazon sold OEM at great prices. I went to my local office supply store and purchased a complete set of 5 inks for my Canon Pixma iP4000 at a cost of $75. Later that day I found them on Amazon at almost 1/2 the price! Also, when it comes to OEM inks, I discovered that they seem to last almost 3 times as long as the generic and refilled versions. B00004Z6HO:looks_great_on_my_hp_printer:red_queen B00004Z6HO Epson S041069 Photo-Quality Inkjet Paper (13x19, 100 Sheets): Electronics electronics 5.0 Looks great on my HP printer November 5, 2006 Red Queen Upstate NY, USA HP didn't make 13x19 paper when I bought my 13x19 HP printer. Way to go, HP. They may make it now, but I never check, b/c I'm totally satisifed w.this paper. Runs smooth and looks great B00065HM1Y:grundig_fr200:d._kulas_"deb_k" B00065HM1Y Grundig FR200 Emergency Radio (Yellow): Electronics electronics 4.0 Grundig FR200 August 27, 2006 D. Kulas "deb k" MONSON, MA USA Product was as described...reception was strong and weak depending on your location...was able to receive all frequencies..rated this a 4 instead of a 5 only because when the wind blew the reception would get fuzzy...could get annoying on a very windy day..radio is bulky and heavy.. B000ATU8M6:cobra_gps:james_a._rose B000ATU8M6 Cobra Nav One 4500 Mobile GPS Navigation System with Traffic: Electronics electronics 11 of 13 5.0 Cobra GPS March 16, 2006 James A. Rose Fairfield, CT United States I have used GPS units from Cobra, Garmin, and Lowrance. I consider this Cobra unit to be one of the best. I started with the Cobra but it was stolen after a month. Then I bought the Lowrance but it was too heavy and the mount was a sgood as the Cobra. I returned the Lowrance and bought the Garmin 340. Advantages of the Cobra is that it has a large screen and a solid mount (despite its size). The interface isn't quite as intuitive as Garmin but once you learn it it is actually better. The traffic service is also nice (costs more with the Garmin). The Cobra is the most capable of the GPS units I mentioned but overall I am happier with the Garmin because of it's smaller size and lower price B000ATU8M6:cobra_4500:dogmike_"dogmike" B000ATU8M6 Cobra Nav One 4500 Mobile GPS Navigation System with Traffic: Electronics electronics 17 of 19 4.0 Cobra 4500 December 20, 2005 DogMike "DogMike" NJ The unit operates as good as any other GPS system available, plus it has a great big screen of 5 inches. I am very impressed with the GPS, but the mount used to attach the unit to the window or dash is very poorly designed. The unit falls off the window and from the dash, plus the power cord comes out too easily. The unit deserves a five star rating, but because of the mounting system and power cord coming out too easily a four star rating was provided. B000ATU8M6:businessweek_ranks_it_above_garmin:i._mihaljevic B000ATU8M6 Cobra Nav One 4500 Mobile GPS Navigation System with Traffic: Electronics electronics 83 of 93 5.0 BusinessWeek ranks it above Garmin October 4, 2005 I. Mihaljevic United States I would highly recommend reading the BusinessWeek review on this product that came out on September 12, 2005. BusinessWeek as reviewed all the major GPS navigation options on the market and ranks the Cobra NAV ONE 4500 as number one. Here is an excerpt from the BusinessWeek article: "Cobra's NAV ONE 4500 and Garmin's StreetPilot 2720, which each sell for $800 to $1,000, use a more straightforward approach. The traffic info travels along with FM radio broadcasts from Clear Channel stations in 48 of the top 50 markets. An FM antenna and receiver pick it off the air and feed it to the navigation system." "I preferred the Cobra, mostly for its big, bright 5-inch screen and its built-in radio receiver. (The Garmin receiver is $200 extra and needs to be installed between your car antenna and radio.) When you encounter traffic, a pop-up on the screen and a voice give you three options: Keep driving, reroute me, or give me a couple of new routes and let me pick one. B0001M4E72:helping_with_my_tmj:mimi B0001M4E72 Plantronics M220C Mobile Headset for Cordless Phones: Electronics electronics 1 of 1 5.0 Helping with my TMJ January 29, 2006 MiMi Barrington, NH United States If money was no object, I would prefer the totally wireless headset phone, however, this has been a great alternative. I have TMJ, and activities like talking with the phone crooked in my neck, while holding my toddler, while preparing dinner, compound my pain...go figure! I find that having the phone clipped on my hip with the cord hanging is kind of a pain, but, the product works great. I have had no problems hearing anyone, nor has anyone had difficulty hearing me. The earpiece is comfortable and easy to get on and off, even for someone with elfishly small ears like me! B00001W0DI:great_headphone_for_good_price.:j._chung_"inspire" B00001W0DI Sony MDR-V600 Studio Monitor Series Headphones with Circum-Aural Earcup Design: Electronics electronics 2 of 3 5.0 Great headphone for good price. October 11, 2006 J. Chung "iNSPiRE" I've owned this headphone for about a year now, and I've got to say, after going through multiple headphones, this beats all others I've tried. If this one ever broke (I doubt that'll happen anytime soon), I'll surely buy another one again! Pros: - Comfortable to wear. The ear cushions are indeed comfortable to wear for extended periods of time. Even if you wear glasses, you won't feel uncomfortable. - Clear treble, middle, and bass. You can hear all the subtle sounds in your song clearly. Even with completely flat EQ setting, the headset does very good job with sound (provided you increase the volume up a bit more). As with any headphones, take time to 'break it in' to have it function the best it can (it means, to leave music playing on the headphone for very extended period of time non-stop, about 24 or 32 hours). - Sturdy wires. This headphone seems to have been designed based on recording studio-level headphones in this regard. The wire is very thick and long. Also, it's single wire format. Cons: - Ear padding is perhaps, too soft. This means it won't fully cover your ear area, and some of sound may leak out. So note that when you listen to your music loud in public places. Although, at first few weeks, the ear padding is relatively hard. If you are looking for a headphone that will ensure your music will never leak out, look into getting in-ear canal type headphones instead. - As some others have pointed out, tilting your head too forward or backward will make your headphone just drop from where it is at. So be cautious of your movements. - You might not want to wear this kind of headphone during summer due to poor ventilation. But this affects all closed headphones, so it's not a huge negative point. - The headphone is quite big and on a small head, you may have a difficult time keeping it up on your head. The size of the headphone is designed for a fully grown average adult head. That's all I've got to say, and overall, this headset is definitely worth your money B0000AFX1G:takes_a_lickin_and_keeps_on_tickin:james_stuber B0000AFX1G PNY 128 MB Attache USB 2.0 Portable Flash Memory Drive: Electronics electronics 4 of 5 5.0 Takes a lickin and keeps on tickin September 27, 2004 James Stuber Pendleton, IN USA I think everyone knows that these drives have become invaluable. Mine has become a necessitiy between my computers at work and at home and any where I can get an open computer. I have W2K at home with USB 1 and XP Pro at work with USB 2. Never had any type of compatibility issue. This 128 MB size is the minimum most can get by with in my opinion. I plan on upgrading to at least the 256 soon. The amazing this is that I have just removed my USB drive from a clean pair of pants that went through the wash and dry cycle. And this was the second time. I can't believe it still works. Maybe I'll have to start using that ridiculus cord and wear it around my neck. Through away your zip and floppy disks and get one of these things. Just make sure you back it up often B0002IQ1FS:excellent_value_for_dvd-r:chad_atkinson B0002IQ1FS Verbatim 8x 4.7 GB DVD-R Spindle (100 Discs): Electronics electronics 5.0 Excellent Value for DVD-R September 18, 2005 Chad Atkinson I am very pleased with the quality of the product. I have burned about a dozen discs and have had zero coasters. After the rebate, the price was very competitive B0001FV2YM:people_complain_too_much:david_b._nichols_"the_truth" B0001FV2YM Belkin TuneCast II FM Transmitter: Electronics electronics 1 of 3 5.0 People complain too much May 12, 2006 David B. Nichols "The Truth" Harrisburg, PA Hey, don't listen to those other schmucks. So maybe there are a few of these that are exceptable, but the rest just complain too much. I love this thing! I got it for Christmas, and now for $20, you can't beat that. I use a standard charger for it in my car, so I never have to worry about batteries. It seems that the best way to get it to sound the best, is work with your mp3 player or whatever your using (equalizer). I have also used it on my portable DVD player in the car and it sounds awesome! For the price, I highly recommend this product B0000AOWVP:solid_keyboard_and_mouse:d._e._lee B0000AOWVP Microsoft Wireless Optical Desktop Pro: Electronics electronics 7 of 8 4.0 Solid keyboard and mouse February 23, 2006 D. E. Lee Texas I've used the keyboard/mouse for a little over a month now and have generally found it to do all I would wish. Of course, any wireless keyboard will at times not be as responsive as a wired keyboard/mouse setup, but this is more than offset by the lack of wires and the ability to pull the keyboard to wherever I wish. The only drawback, and it is minor, is getting used to the fact that there are no lights on the keyboard to indicate when CAPS LOCK or NUM LOCK is on. I have to look over at the wireless receiver for this. Additionally, it would be nice if there was an option for the keyboard to be backlit. Yes, it would draw down batteries more quickly, but as an option it would be user selected. All in all, a good wireless keyboard/mouse combination, and one I am quite glad I purchased. Life is not a journey to the grave with the intention of arriving safely in a pretty and well-preserved body. But rather to skid in broadside, thoroughly used up, totally worn out, and loudly proclaiming, "WOW, Lord! What a ride!" B000089GN4:can't_be_beaten_for_quality_or_price...!:wendy_hay B000089GN4 Sennheiser PX 200 Headphones (Silver): Electronics electronics 3 of 3 5.0 can't be beaten for quality or price...! November 3, 2006 Wendy Hay Trinidad I read about these headphones in a magazine and i was intrigued by the reviews. having a headphone fetish (odd, i know), i decided to order them seeing that they were relatively inexpensive.. this is a decision i am thoroughly glad i made. these little headphones are absolutely incredible and they even outmatch, in quality, my larger studio-size headphones i have at home. the bass is the best i've ever heard in a headphone, rich and deep and true. the mids and heights are also brilliantly emulated. the mere fact that it is portable with its own compact and innovative carrying case, means that you can take the excellent sound with you wherever you go. i definitely recommend these pones to anyone who values outstanding quality in their music and games.....5 stars B000068IH5:perfect_for_anyone_who_can_afford_the_bose_soundock:m._krasko_"bghd123" B000068IH5 Monster Cable 126130 iCable for iPod: Electronics electronics 1 of 1 5.0 Perfect for anyone who can afford the Bose Soundock February 20, 2006 M. Krasko "Bghd123" After buying my ipod, i felt my stereo system wasnt geting anyuse. So I felt that instead of buying the Bose Soundock, which is about $300, your better off only spending about $25 and getting just as good quality B0007NZQ2W:absolute_necessity!:j._robertson_"jenr" B0007NZQ2W Griffin Technology 4002-TJUICE TuneJuice Battery Backup for iPod and iPod mini: Electronics electronics 1 of 1 5.0 Absolute necessity! May 22, 2006 J. Robertson "JenR" California I was unsure at first if this product would work with my iPod nano, but after checking out Griffin's website, I decided to go ahead and order it. It works great! I like to play Solitaire and read text files on my nano, so the battery charge runs down much faster than it would if I didn't use the screen so much. TuneJuice means I don't ever have to worry about that again. I just keep a couple of 9V batteries with me, and I can keep listening, playing, reading or whatever on my nano as long as I want. Love it. ------- I posted the above review on May 22, 2006 after having had the TuneJuice for almost 3 weeks. Two of those weeks were spent on vacation and this little gadget got a *lot* of use. Now, about 5 months after first receiving the TuneJuice, I'm about to order my second one - to replace the first one. I still love it, and did get a *lot* of use out of it, but snapping 9V batteries on and off so many times caused the wires leading from inside the battery compartment to the 'snaps' that connect to the battery itself to break off. Despite that, I feel like I got my money's worth and I'm buying another one B000ETVKHE:this_players_meets_all_my_needs:robert_j._apke B000ETVKHE Sandisk SDMX4-4096 Sansa e260 4 GB MP3 Player with SD Expansion Slot: Electronics electronics 2 of 2 5.0 This players meets all my needs November 25, 2006 Robert J. Apke Cincinnati, Ohio United States I have been using my Sandisk player with no problems downloading songs or pictures. I have also made some observations that makes this player function more efficently. -use MTP music files because they use less file space. -adjust the file size on pictures to use less memory. -use the Speck toughskin case to protect display window (extra). -use the AC Sandisk USB charger instead of the computer USB port(extra). I do not use the raio or the video settings because of no interest, and the large amount of memory the video consummes. This player does fine using the earphones or hooked up to a audio center. I think that the 2MG card will be on my list of upgrades. The only upgrade I am made was to buy a better set of earphones. I did not like the pair supplied with the unit. My earphones have a volume control on the output cord which makes it much easier to control. I am not sorry about buying this item from Amazon. B000ETVKHE:it's_not_perfect,_but_it's_very_good:jenny_b._"loyal_amazon_customer" B000ETVKHE Sandisk SDMX4-4096 Sansa e260 4 GB MP3 Player with SD Expansion Slot: Electronics electronics 5 of 7 4.0 It's not perfect, but it's very good November 16, 2006 Jenny B. "Loyal Amazon customer" New York, NY USA Pros: Easy to use, last for days without charging (depending on the use, of course... but i was traveling for 5 days and used it a lot without charging, and it lasted the trip), enough memory space, has radio, works as a recorder, small Cons: Stopped working, froze twice since i bought it 3 month ago. When it's on, tunes that i had deleted will still appear on my play list. If I hit play on such song, the player just skips and plays the next song on the list. But overall i'm happy with my MP3. I'd recommend it B0001OHH6A:it_is_better!:michael_j._foley B0001OHH6A Monster Cable HDMI 400 High Resolution A/V Cable - 6 Meters: Electronics electronics 5 of 7 5.0 It IS better! November 16, 2006 Michael J. Foley Sherman Oaks, CA United States I didn't want to spend the money on this either, but it IS better. I really don't know why, but it IS. No question about it. PERFECT picture and sound! I have a Yamaha RX-V2700 receiver which has HDMI hookups. I tried a HDMI cable that came with my DirecTV box (from my Toshiba HD DVD player) and it was seriously lacking. This hookup is MUCH better! I have a Monster Cable HDMI hooked up to the new receiver that runs to my Sony 46" flat panel as well (more $ but....). I'm finally satisfied. I'm watching (and listening to) "Batman Begins" (In True HD sound) on HD DVD and it is superb!!!! This is just awesome! The stuff of fantasy. You only have to buy this/these cables once, so why not buy the BEST?! I highly recommend this move. B000623HE8:best_remote_i've_ever_owned:kooldak_"a_customer" B000623HE8 Logitech Harmony 680 Universal Remote Control: Electronics electronics 6 of 6 5.0 Best remote I've ever owned March 25, 2005 kooldak "a customer" Chama, NM This remote will do everything you need or want. Simple to use and great customer service. I had a couple of "glitches" (buttons that didn't work quite right) when I first programmed the device, but the Harmony support team helped me through those areas. The changes needed are now permanently in my data area on the Harmony web site so if I ever need to, all I have to do is reload the info. Like another reviewer, I also have a TiVO (2 actually) and the only button that wouldn't work on my Harmony 680 was the "clear" button. Customer service fixed that in a jiffy, too. I have owned several multiple device remotes over the years and never had one so good that I could really put away all my other remotes. I now only use one - the Harmony 680. Fantastic device! I'd give it 6 stars if I could B00006JI6Y:nice_organizer_for_a_low_price:s.c. B00006JI6Y HP/Compaq CQP121 HP Nylon Folio Case - Black (High Density Nylon): Electronics electronics 1 of 1 4.0 Nice organizer for a low price February 17, 2006 S.C. Newark, DE, USA I paid about a dollar for this holder. Holds and protects the iPaq nicely. Can hold some credit cards as well as ID. Overall a decent product for a low price B00000J53H:very_satisfied_apc_customer:scott_g._howard_"scottgh" B00000J53H APC Notebook Surge Arrest Protector (PNOTE1): Electronics electronics 21 of 22 5.0 Very Satisfied APC Customer March 16, 2000 Scott G. Howard "scottgh" Alabaster, AL USA This is perfect for anyone who travels with a laptop. It's small and fits nicely next to the ac adapter in my laptop case. It protects my laptop from surges through the AC outlet and phone jacks. I have been pleased with APC products for about six years. They provide excellent customer support. I highly recommend their products B00083J67C:very_high_priced_but_works_good.:dave_h. B00083J67C Monster MBL CLNKIT-SM Screen Clean Mini: Electronics electronics 4.0 Very high priced but works good. November 18, 2006 Dave H. FL, USA It also seems like the product goes a long way and will last a long time. I've used it four times already on two different laptop screens and the first opened bottle (out of two that come with it) still looks almost full. If the price was a little more consumer friendly I'd give it five stars. I mean come on. When you can currently buy other computer accessories like a brand name 50-pack of CD-R's for less than $14, the profit margin on something like this is probably 200% or more B0000DBJ8A:very_helpful:n._burt_"nikkles" B0000DBJ8A Apple Wireless Pro Keyboard: Electronics electronics 5 of 5 5.0 Very Helpful May 20, 2006 N. Burt "nikkles" Wisconsin I found this keyboard to be very helpful. I am a graduate student and spend a lot of my time typing papers. While my laptop can be used to type, when you type for hours at a time it gets very uncomfortable. This keyboard is a great size and has a nice feel for long days spent typing. The bluetooth is also reliable and allows me to get some distance from the computer if I would like without stopping the connection. I would suggest getting a mouse to accompany it. Overall, a very useful and reliable product that makes my life much easier B0000YKA9C:no_complaints!:user B0000YKA9C POCKETEC 929 80GB Portable HDD USB 2.0: Electronics electronics 5.0 No complaints! August 17, 2006 User Saranac Lake, NY United States I had it now for 12 months and no problems with it. Its tiny lightweight and great speed. My old computer has to work quite hard to recognize it, but my laptop has no problems. One minor detail.. You cannot hook too many other stuff on the USB at the same time. I just ordered another one B000G1Q9GW:excellent!:mark_sanders_"silverspurr" B000G1Q9GW Creative Zen Aurvana In-Ear Headphones: Electronics electronics 9 of 9 5.0 Excellent! July 24, 2006 Mark Sanders "Silverspurr" new york city, new york United States Have been using them for a week now. Incredible sound for the size. Bass is incredible.... mids are accurate, highs are accurate. These are the way to go if you're using an MP3 player. I use them with the Creative ZEN Vision M 30 ("The Ipod killer") While walking, riding a bus or train in in N.Y.C. seals out external noise amazingly VERY WELL!!! Pros: Awesome accurate sound / Incredibly light / don't protrude out of your ears / comes with "2 sets" of three different sizes of silicone plugs / plugs are ultra soft, comfortable and fit perfectly / secure well built storage case / cleaning tool / barely uses battery power! / Not the yup-tard WHITE COLOR.... much cooler BLACK! Cons: None so far. I bought them directly from Amazon for $75.99 with "free" 4 day ultra fast shipping B000G1Q9GW:this_is_a_good_product_-_good_for_creative:albeniz B000G1Q9GW Creative Zen Aurvana In-Ear Headphones: Electronics electronics 8 of 8 5.0 This is a good product - good for Creative July 20, 2006 Albeniz Venezuela Excellent sound, much much much........ better that the one that comes with any players, Zens or ipod. For those that have ever used safety earplugs in the industry, they feel like them and really isolate the noises. After that the sound is excellent compare to many others and amazon offers a very good price here. also good to have 3 sizes. 2 pairs of each + airplane adapter, case, cleaner, very good product. B00008RUKX:wireless_on_the_desktop:ned_"java_ned" B00008RUKX Linksys WMP55AG Dual-Band Wireless A+G PCI Adapter: Electronics electronics 3 of 3 4.0 Wireless on the Desktop January 20, 2005 Ned "java_ned" Eldersburg, Maryland United States I just recently move from dial-up to DSL. Going DSL was not enough; I did not want to have cables running though the house so I started looking into going wireless. To make a long story short, after a little investigation I decided to make the leap into wireless technology. I purchased the WAP55AG router and the adapter cards, WMP55AG and WPC55AG. Once the WAP55AG router was installed and set up, the installation of the WMP55AG PCI Adapter on each of the desktops were simple. I had no difficulty setting up the hardware and software and with a few hours, I was on the net through the router. One desktop is running XP professional and the other desktops are running XP Home edition. The LinkSys Web site has all the documentation you need for installation and setup. There is a "Knowledge Base" page that covers a lot of the products and answers to a lot of questions about various products and configurations; I found it to be very helpful. Pulled from LinkSys Web Site: ---------------------------------------- The Linksys Dual-Band Wireless A+G PCI Adapter installs in most desktops and lets you put your computer almost anywhere in the building, without the cost and hassle of running network cables. Now you don't have to drill holes in your walls and climb through the attic or cellar to get connected to the network. Once you're connected, you can keep in touch with your e-mail; access the Internet, use instant messaging to chat with friends, and share files and other resources such as printers and network storage with other computers on the network. The Dual-Band Wireless A+G PCI Adapter connects you with Wireless-A (802.11a) and Wireless-G (draft 802.11g) networks at an incredible 54Mbps! And for added versatility, it can also interoperate with all the 11Mbps Wireless-B (802.11b) products found in homes, businesses, and public wireless hotspots around the country. And whichever mode you choose, your wireless communications are protected by up to 152-bit encryption, so your data stays secure. Features of the product: -------------------------------- One adapter connects to either 2.4 GHz (802.11b or draft 802.11g) or 5 GHz (802.11a) networks Advanced security features with up to 152-Bit WEP encryption Detailed monitoring and performance utility IEEE 802.11a, 802.11b and draft 802.11g compliant System Requirements (Minimum): --------------------------------------------- 200MHz of Faster Processor 64MB RAM Available PCI Slot CD-ROM Drive Windows 98SE, Me, 2000 or X B000BFO4OC:everything_i_was_hoping_for:codex57 B000BFO4OC Logitech MX 610 Cordless Laser Mouse (931350-0403): Electronics electronics 2 of 2 5.0 Everything I was hoping for August 31, 2006 Codex57 California I am very happy with this mouse and would recommend it to everyone. It looks good, but more importantly, it feels good. Button placement, weight, smoothness, everything was done well. Coming from wired mice, the lack of a wire is very freeing. I am also especially happy with how small the USB radio receiver is. I am using this mouse on a laptop and love how inobtrusive it is. What's strange is I bought the S 530 desktop set for Mac at the same time. The mouse in that set looks nearly identical (except for color). However, it has a different weight and simply doesn't feel quite as comfortable to use. It only fits the hand the same but once you move it, it lacks the same comfort and ease of use as this mouse B000246U1C:great_product,_very_satisified!!!:charles_cochrane B000246U1C Acoustic Research AW-811 Indoor/Outdoor Wireless Speaker (single): Electronics electronics 5.0 Great product, very satisified!!! October 4, 2006 Charles Cochrane Received this speaker as a replacement for the Advent AW-810 which did not work at all. This one was much easier to install and calibrate! Very happy with range and sound quality. Highly recommended B000779RZU:good_product:j._griffith_"jacki_-_shopaholic" B000779RZU Sony MDR-EX51LP Fontopia In-The-Ear Headphones (White): Electronics electronics 3 of 3 5.0 Good product November 3, 2006 J. Griffith "Jacki - shopaholic" Idaho Falls, Idaho United States These are very comfortable to wear, and the sound is great. I use them out jogging, and they stay put, without any pressure on the ear. The tight fit blocks out any outside noise, so be careful around traffic, as you cannot hear cars. I would highly recommend these to anyone B000779RZU:good_sound_quality,_but...:bruce_d._miller_"telecom_entrepreneur" B000779RZU Sony MDR-EX51LP Fontopia In-The-Ear Headphones (White): Electronics electronics 2 of 2 4.0 Good Sound Quality, but... September 28, 2006 Bruce D. Miller "Telecom Entrepreneur" Boston, MA I bought these Ear Headphones primarily to use when running and biking at the club. The sound quality is acceptable, not exceptional. The construction is a little flimsy and the big issue is that the cord is shorter for the left ear than the right. That places all the force on the left side and that one tends to pull out. I have no idea why Sony thought that this was a good design. For the money they could also have included a case rather than a clip for the cord. I would give these a B- good/not great B00004VUGJ:logitech_cordless_trackman_wheel:dcedte B00004VUGJ Logitech Cordless TrackMan Wheel: Electronics electronics 4.0 Logitech Cordless TrackMan Wheel November 19, 2006 dcedte The Logitech Cordless TrackMan Wheel was purchased in Sept. 2006. I have had this for two months at the time this review is being written. I bought this to replace the corded version of the same item. The cordless works as well as the corded one. The trackball doesn't has quite as smooth a roll to it as the corded one did, but the difference is minimal. I wonder if this may be because it is new and the other one had had years of use. I find the shape of the Logitech Trackman to fit the hand very naturally. It is also much less strenuous on the wrist than a normal mouse, which is why I use it. I replaced the corded one so that we could easily move the mouse to different locations for use. This is for home use with multiple users, with different mouse location preferences. I took the corded one to use at work, where it still performs flawlessly 8+ hours a day. I also have a Logitech cordless keyboard. There are two places where both these items could be improved: - Each one of these items needs it own receiver. It would save some of my limited home desk space if these could be combined into one unit. - I initially had the receivers out of sight behing an LCD monitor. I found that it was necessary to move them away from the monitor to get them to work reliably. This is a documented requirement in the owners manual, but that necessity takes away from the convenience of the wireless. The receivers, as stated earlier, take up space I would rather not spare B00004VUGJ:works_great_but...:j._fields B00004VUGJ Logitech Cordless TrackMan Wheel: Electronics electronics 5.0 Works great but... November 13, 2006 J. Fields We have a TrackMan corded model and loved it so I got this one for my work computer. It works just as well as the corded one when I'm in my office. For travel, the part you plug in is a little bulky so I usually leave it at home when I travel. It's not a small, USB stick that goes in the back. It's a long, corded, mouse looking device that sends/recieves the signal to the TrackMan. I don't think they market it as a portable device so it works just as advertised but it would be nice if it just had a USB stick instead of the other for travel. All that said, I love the trackball over a mouse so this is just perfect for me B0002MK9X4:concerned_with_other_reviews:magda B0002MK9X4 HP PhotoSmart 375 Compact Photo Printer: Electronics electronics 21 of 22 5.0 concerned with other reviews September 3, 2005 magda sanfrancisco my canon 510 got glowing reviews just about across the board, but not this printer. i have very little space, and needed something small just for photos. so, even though there were many negative reviews i went ahead and bought it. couldn't be happier! colour fabulous! and when you print on stock paper you can use photo to do some extra artwork on. I LOVE IT B00003CWG2:pleased:michael_j._corso B00003CWG2 Monster Cable TGHZ-2RF Two Gigahertz Low-Loss RF Splitters For TV & Satellite 2-Way 2 Gigahertz RF Splitter: Electronics electronics 3 of 4 5.0 PLeased January 15, 2006 Michael J. Corso Product nicely made , looks like quality product and performs fine B000EDIKVO:excellent_hand_crank_radio:g._ward_"macboy" B000EDIKVO American Red Cross FR300 Emergency Radio: Electronics electronics 3 of 3 5.0 Excellent Hand Crank Radio November 7, 2006 G. Ward "macboy" Queens, NY USA My wife and I used the FR300 during the week-long Queens blackout this past summer and this little radio delivered. One 2 minute winding lasted for an hour on medium volume. The cell phone charger is cool, but it takes a lot of winding. The light is good in a pinch, but not particularly useful B000BW3TK0:great_updated_product:outdoors_"backpacker" B000BW3TK0 Garmin MapSource City Navigator North America, v.8: Electronics electronics 3 of 3 5.0 Great updated product November 4, 2006 Outdoors "backpacker" Utah This map set met all my expectations, and was far more current than I had expected. Software for turn by turn directions on roadways while driving works great with the Garmin Ctrex GPS. Recommended. To load many states you will need large memory card, 1 GB. B000CO77SC:on_the_contract:env-youreverythinghomepage-com B000CO77SC 2-Year Service Plan for Televisions $200 to $999.99: Electronics electronics 5 of 5 4.0 On the Contract August 24, 2006 env-YourEverythingHomepage-com Los Angeles, CA, formerly Rochester, MN USA If you buy this service plan, print out the contract and keep your receipt. I did not purchase the plan, but looked over the contract intensely since I nearly got it. Some notes on the contract: 1. It is only good in the United States (including Washington, DC, but MINUS MAINE), but it does not include Guam, Virgin Islands, etc. So if you are in another country or outside the 50 states + D.C., this contract will be nothing but a waste of money. 2. This contract is transferable and the directions to do so are simple. 3. They will only fix/replace/etc IF the manufacturing warranty no longer covers the item. That is, if the manu. warranty is still good, you have to use it. 4. If the item needs to be shipped, shipping/handling will only be covered if the manufacturer would cover those costs in their warranty period. If the item is being replaced, "You will be responsible for the delivery or cost of delivery of the covered Product to Our authorized service center. Reimbursement will be issued in the form of a check payable to You." I'm uncertain if that means you cover those costs or they reimburse you. 5. No lemon policy of 3 service repairs for the SAME defect, and a upon the time of a 4th repair, as determined by them, they will "replace it with a product of comparable performance. Repairs performed while the Product is under manufacturer's warranty DO NOT APPLY." (Doesn't sound like a great no lemon policy... your product would have to breakdown in the same way 4 times in the number of years they cover you -- many electronics are typically already covered by the manufacturer for 1 year.) 6. There are numerous conditions that they will not repair for, but they all sound typical of such plans (such as, they don't cover accidents and they don't cover "the elements or acts of God" ... sorry, I had to note that second one since it stuck out to me from the other things). But, in all seriousness, read the list before you purchase. So, now that I have summarized much of the contract, if you want to get the service warranty, PLEASE READ THE CONTRACT SINCE I DIDN'T COVER EVERYTHING!!! (Don't hold me liable since I don't have much money anyways.) Also, I think this is typical in warranty contracts, but you will occassionally see the phrase "at our discretion" in the contract. Assuming they aren't jerks with their discretion and aren't too tough to deal with, I would give the warranty 4 stars (minus 1 star for the crappy lemon policy). I didn't get the coverage because the product I was going to get it for had just made into the next price category (so it was pricy for my product, being at the lower price end of the scale) B000196ENM:works_as_designed_-_and_what_a_difference!:m._j._cerone_"look_for_me_and_donate_at_www.rideforroswell.org" B000196ENM Magellan 980637 External Antenna: Electronics electronics 3 of 3 5.0 Works as designed - and what a difference! March 22, 2006 M. J. Cerone "Look for me and donate at www.RideForRoswell.org" 30 miles SSE of Buffalo, NY Easy enough to pop off the normal ant (RoadMate 700) and pop on this magmount version... and what a difference it made! Signals really are remarkedly improved. **HIGHLY** suggested for folks in hilly areas to nearly guarentee you'll get the birds B0002LEMZG:pretty_helpful:jeremy_thompson_"atx" B0002LEMZG Kensington 60148 USB 2.0 Universal Laptop Docking Station (PC/Mac): Electronics electronics 6 of 6 4.0 Pretty helpful March 27, 2006 Jeremy Thompson "ATX" CHARLOTTE, NC United States A lot cheaper than model-specific docking stations, and 'does what it says on the tin'. Quite stylish too, as docking stations go B000F9NXW8:nice_communications_device:william_christiansen_"wpc" B000F9NXW8 Midland GXT600VP4 5-Watt 22-Channel GMRS with NOAA All-Hazard Weather Alert: Electronics electronics 6 of 7 4.0 Nice communications device August 19, 2006 William Christiansen "WPC" Woodburn, Oregon United States We used the GTX600VP4 to stay in contact with two vehicles while traveling. The 5-watt power gave us ample range. Does it reach 18 or 20 miles, don't know. But 5 to 8 miles between cars was not a problem. Range was somewhat reduced over hilly terrain and varied from poor to good in the Rocky Mountains. It's a great way to stay in touch when traveling. The batteries are rechargeable, both A/C & D/C. The ear pieces were very good for privacy. Very easy to use and well worth the price. A good investment. B000EIBVKG:does_everything_you'd_need_in_a_disaster:j._weber B000EIBVKG American Red Cross FR400 Emergency Radio: Electronics electronics 10 of 10 5.0 Does Everything You'd Need In A Disaster September 11, 2006 J. Weber I was hesitant to get this, since other reviewers gave it poor ratings on reception. Now that I bought it, I'm very glad I have it. It does all the things you might want in a disaster, inluding a flashlight, red flashing light (especially if your car breaks down at night), a siren (if you're trapped in a building), AC, battery, and crank power, and multiple radio bands. While some reviewers complained of not getting a lot of stations, in a disaster, you only need a few stations, as everyone will be broadcasting disaster news. Between the AM, FM, TV, and NOAA bands, my radio will received a huge number of stations--many more than would ever be needed in a disaster. (I didn't try the cellphone charging function.) It comes in a carrying case. Only minor criticisms: The case seems like an afterthought: it doesn't hold the AC adapter; the knobs tend to turn the radio on when putting it in the case, and the knobs could get broken off if the case is hit (not that protective). However, it comes in a strong box which is perhaps better storage for everything. Overall, this is all you should need for light, siren, and broadcast information from multiple power sources in a disaster B0002L5R78:great_value:john_w._montgomery B0002L5R78 HDMI 2M (6 Feet) Super High Resolution Cable: Electronics electronics 1 of 1 5.0 Great Value July 31, 2006 John W. Montgomery San Diego, CA United States I just recieved my HDMI cable and am very impressed. The price is just what it should be about $5 and makes me wonder how somebody would spend over $100 for this cable at a store. The service was excellent and the cable arrived in 4 days! I highly recommend this cable. I just plugged it into my cable box and the other end into the TV and WOW what a great picture all around. The color is just so much more vivid using HDMI compared to component 3 wire connectors. Get this cable for your system and stay away from those high priced others B0002F8WKS:nice:cdaddy_"cdaddy" B0002F8WKS Logitech Media Keyboard: Electronics electronics 5.0 nice November 9, 2006 CDADDY "CDADDY" HELL,CO This is the perfect keyboard ( I know cuz I am typing on it right now ) I recommend if you like media boards B00006HXF4:great_value_for_great_product!:james_martin_"star_trek_nerd" B00006HXF4 SanDisk SDSDB-256-A10 256 MB Secure Digital Card (Retail Package): Electronics electronics 2 of 2 5.0 Great Value For Great Product! March 15, 2006 James Martin "Star Trek Nerd" Fresno, CA USA SanDisk has done it again. They never seem to let me down with their products. I was in the market for another memory chip since I kept filling up my smaller 128 MB chip. The price was the deciding factor for me, as being a college student the financial situation was tight. But this product was perfect, right price, excellecnt storage space, good name. Get this product if you need more space for your digital camera B0000AN4EG:garmin_:r._nielsen B0000AN4EG Garmin StreetPilot 2610 In-Car GPS Receiver with 128 MB CompactFlash Card: Electronics electronics 1 of 2 5.0 GARMIN August 9, 2006 R. Nielsen Fast shipping, Very happy with the GARMIN. Their tech support is good..they answer all questions....WILL buy from AMAZON again... will buy a GARMIn agai B00016V3VI:ipod_#in_!:sea_chelle_"still_shopper" B00016V3VI Griffin Technology 1072-POD PowerPod Firewire Auto Charger for iPod: Electronics electronics 1 of 3 4.0 IPOD #in ! March 22, 2006 Sea Chelle "still shopper" Brooklyn, NY This is great! My only problem is the knob for adjusting. It's to loose B000A6NV0U:great_mouse,_great_price:clide B000A6NV0U Microsoft Comfort Optical Mouse 3000 ( D1T-00002 ): Electronics electronics 0 of 1 5.0 Great mouse, Great Price June 19, 2006 CLiDE I bought this mouse originally as a replacement for a $9.99 mouse, and I'll never turn back. THIS MOUSE IS OUTSTANDING FOR GAMING. It's pretty damned accurate, and it easily fits in my hand. Good price, too B000EEZCEG:works_out_of_the_box_with_the_cingular_3125:j._hansen_"tech_hound" B000EEZCEG SanDisk 1 GB MicroSD Card (Retail Package): Electronics electronics 5.0 Works out of the box with the Cingular 3125 November 19, 2006 J. Hansen "tech hound" I you own a SmartPhone, you'll need one of these. Also happy this came with an adapter card, to plug in the MicroSD into it to move data from my Mac to the phone. B000EEZCEG:expanded_memory_for_motorola_razr_v3m_for_verizon:richard_b._cuciti B000EEZCEG SanDisk 1 GB MicroSD Card (Retail Package): Electronics electronics 1 of 1 5.0 Expanded Memory for Motorola RAZR V3m for Verizon November 9, 2006 Richard B. Cuciti Laguna Beach, CA USA The SanDisk 1GB Micro SD Card arrived quickly with intact sturdy packaging. I installed it in my Motorala RAZR V3m as expanded memory for my music library. Be sure to remove the RAZR battery to clear the access slot for the Micro SD. The V3m recognized the expanded memory without any problems. I used Motorola Phone Tools to transfer my entire music library. The program converts the mp3 file formats before transfer. The entire music library...a full 1GB...transferred reasonably quickly. The V3m is slow to access "My Music" using menu function #3 under "Get Tunes & Tones". Function #6 "Manage Music" accesses the library reasonably quickly and works well. The new corded Motorola SYN1301B stereo earbuds work well in this configuration. Sound quality is surprisingly good, but the large diameter earbuds are flat...not tapered... and do not seat very well in the ear canal. The SanDisk 1GB MicroSD Card provides great value at a very reasonable price for full optimization of the V3m as cell phone with "MP3" player B000FGI9RU:wonderful_sound:deadman_"deadman" B000FGI9RU JBL DE893BABA Platinum Series Powered Speakers, Black (Pair): Electronics electronics 1 of 1 5.0 Wonderful sound November 9, 2006 Deadman "Deadman" Onamia, MN USA I upgraded from some speakers I purchased when I built my system. The sound difference was wonderful. It is a clean crisp fresh sound. Worth every penny B000BDDBLG:no-brainer_if_you_already_have_bluetooth,_not_quite_perfect:michael_ilnyckyj B000BDDBLG Logitech V270 Cordless Optical Mouse for Bluetooth - Bright Silver: Electronics electronics 0 of 1 4.0 No-brainer if you already have bluetooth, not quite perfect November 6, 2006 Michael Ilnyckyj Pros: Great battery life Compact, but not too small No extra dongle Cons: Included software is worthless, but you don't really need to use it $40 is a bit much considering that you can get cordless keyboard/mouse sets for around $30 nowaday B0002ZSCJY:saved_me_from_a_ticket!!: B0002ZSCJY Escort Passport 8500 X50 Radar and Laser Detector (Blue Display): Electronics electronics 4 of 11 5.0 Saved me from a ticket!! October 3, 2006 Okay so it was about 8:45 at night. I was coming on to a 1/2 mile long bridge that goes over a lake where I live. I was doing 60mph, the speed limit is 40. As I start to approach the bridge I start getting a small K-Band warning. I instantly slow down to the speed limit. As I start crossing the bridge the warning keeps increasing so I slow down even more to 35 mph. Then it gets to full K-Band. I look to my left where there is a service parking area, and in the pitch dark I see the reflectors of the one and only Crown Vic Police Car. As I pass the police car, I start flashing all the oncoming cars to tell them that there is a cop ahead. If I didn't have this detector he would have gotten me doing 20 over the limit. Thank you Escort! B0002ZSCJY:driving_worry_free:j._chu B0002ZSCJY Escort Passport 8500 X50 Radar and Laser Detector (Blue Display): Electronics electronics 10 of 11 5.0 Driving worry free August 14, 2006 J. Chu Lexington, MA This is my second Escort Passport 8500 X50. The first one is in another car. It saved me many times for getting caught though I'm not maniac driver. The detection range is very good, it gives you plenty time to adjust your speed before you see the police car. I love the blue color and it only costs $30 more than red. The only problem that I have experienced on my first one is sometimes I got laser false warning signals, especially on raining day with defog is on. I heard someone mentioned that turbo charged car can causes X50 Pop and Laser false warning signals, and my first X50 is in my turbo charged car. I'm not sure if Pop alerts were false but since it won't help much, I have it turned off. Overall, it's very good detector, you will get payback if you own one. B0007N55OG:juan_yactayo_california:j._y._vazquez B0007N55OG Sony MDR-XD400 Stereo Headphones: Electronics electronics 1 of 1 5.0 Juan Yactayo California November 9, 2006 J. Y. Vazquez Bakersfield California The best headphones I ever had, good fit excellent sound on my SoundBlaster X-FI!! B00021XIJW:mine_works_great:jason_a._bell_"jbeldar" B00021XIJW Linksys Wireless-G Range Expander WRE54G: Electronics electronics 2 of 2 4.0 Mine works great November 21, 2006 Jason A. Bell "jbeldar" Seattle, WA I got mine to work in about 30 min following S Huffs directions below (followed exactly). There was only one thing not mentioned that I had to do to get it to work. Once you get into the settings on the range extender to enable WEP and put in the key and passphrase, I had to turn WEP back on on my router before saving the settings on the range extender. Basically just put step 6 before you save settings in step 5, this is what worked for me at any rate. I've had it for about 4 months now and it has worked as advertised. I gave it 4 stars because set up was still kind of a pain. From S Huff: The tips that Anthony Taylor left helped me get it working... but I still had some issues. I've added onto his tips from his review below 1-Disable WEP on your Router or AP 2-Hold the auto-configuration button for 30 seconds(if everything goes well both lights on the expander will turn blue) and unplug while still holding button. Plug back in after 10-15 secs. 3-open your Internet explorer browser and type 192.168.1.240 (default ip of expander), a window will pop up. leave the user name blank and put admin as a password (this is default password). 4-make sure that the default gateway and subnet mask settings are identical with your Router or AP,change password on the expander if desired & save settings. (all settings should be correct due to auto configuration) 5-Enable WEP on the expander, once again remember use same settings that you will be putting in your router or AP in step 6 -- aka same passphrase), save settings again. 5.5 - As soon as you enable WEP on your expander - you will loose your connection to it as it's now setup for WEP and your router isn't - keep this in mind - drove me nuts. 6-Go to your Router or Ap settings and enable WEP. 7 - UNPLUG your expander for 10 to 15 seconds and plug it back in -- Bang you're DONE. Enjoy B000BQQL24:it's_a_dock!!:p._giever B000BQQL24 Apple MA045G/B iPod Universal Dock: Electronics electronics 4 of 4 5.0 It's a dock!! August 19, 2006 P. Giever Kew Gardens, NY Works with Ipod skin,no need to take off cover.Looks good.Has connections for Audio,TV. Cables and remote are additional. Included are 5 adapters for all Ipods that have doc connector. Paid 29.95 from Amazon including shipping.It is what it is.It's a dock B0009WDM2W:flash_drive:tracy_l._vasquez B0009WDM2W Memorex TravelDrive 1GB USB 2.0 Flash Drive ( 32509060 ): Electronics electronics 1 of 4 5.0 Flash Drive August 3, 2006 Tracy L. Vasquez Gurnee, IL This is a great storage device. I use it to store documents to take with me when I travel and I keep it in my purse. I love the lanyard, that helps me to keep track of the drive. Worth every $$$ I paid for it! B00005ATZJ:make_a_lot_of_nice_greeting_cards:b._yoder B00005ATZJ Burlington Half-Fold Greeting Cards and Envelopes (Model 475, 50-Count): Electronics electronics 1 of 1 4.0 Make a LOT of nice greeting cards March 17, 2006 B. Yoder This is a very nice set of paper and envelopes. The price is really great. The paper is a little lighter than the ones that cost almost double. The colors come out very bright and the folding is easy. Overall it is a good deal B000DZEUUI:wonderful_phone:d._robison B000DZEUUI Uniden TRU9460 Expandable Cordless System with Call Waiting/Caller ID: Electronics electronics 2 of 2 5.0 wonderful phone October 29, 2006 D. Robison Duluth, MN I have always had uniden cordless telephone and have always liked them. I had purchased this one to replace my 2.4ghz uniden cordless telephone which would interfere with my wireless modem on my computer. This one doesn't. I also like the feature of the intercom feature. My daughter has one of the handsets downstairs in her room and if she isn't on the phone, I can contact her to talk to her. My daughter also likes the mute feature where she can put somebody on hold if she is on the phone to ask me a question so that person on the other end doesn't hear her. The phone has many other features but those are 2 usefule ones I like along with the caller ID B00006B9H8:excellent_initial_quality_switch:kaushik_goswami_"gadgetlover" B00006B9H8 Netgear FS605 5-Port 10/100 Fast Ethernet Switch: Electronics electronics 5.0 Excellent initial quality switch September 12, 2006 Kaushik Goswami "gadgetlover" OK USA I am extremely pleased with the purchase. I am using it in my office. Simple plug and play (no brainer)!! If I get the MIR the cost comes to $5. None can better that. Transaction with Amazon was flawless as usual B000E5GKW8:patience_and_then_this_thing_rocks!:s._c._bower B000E5GKW8 Shure E2c-n Sound Isolating Earphones (Black): Electronics electronics 1 of 1 5.0 patience and then this thing rocks! November 4, 2006 S. C. Bower NC Like most other reviews, I will agree and say it make take a try or two to get the right feel and the right fittings. What helped me is when I looped the wire around my ear and put the earphone in. Now it is crystal clear sound and a perfect fit. Movies are amazing! My music collection never sounded so good. If you want to get away from it all for awhile, slip these babies in your ears and chill B0000512IE:adds_another_dimension_to_x-plane_in_os_x:gregory_farrell_"star_man" B0000512IE CH Products Pro Pedals USB Flight Simulator Pedals ( 300-111 ): Electronics electronics 6 of 6 5.0 Adds another dimension to X-Plane in OS X March 3, 2006 Gregory Farrell "Star Man" Wichita, KS USA I bought USB rudder pedals and yoke for use with X-Plane on a Mac Dual G5. Plug and play (no drivers needed), easily configured in x-plane, works beautifully. Great price! Thanks Amazon! Shipping was 2 days early! Kudos to Fedex! I am a private pilot, and recommend this product B000090WE9:conference..._in_style:niki_r._"globe_trekin" B000090WE9 Panasonic KX-TS105B Corded Speakerphone (Black): Electronics electronics 8 of 10 4.0 Conference... in style July 14, 2006 Niki R. "Globe Trekin" Stow, OH I needed a simple solution for my office. I wanted to be able to use the phone, but not get tied down by the handset, or the headset. Here was my solution, Since the TS105B has the 2.5mm port for a headset, I purchased a Jabra A210 Bluetooth adapter along with this phone and used one of my spare bluetooth headset to stay on conference calls and yet be able to move around my office. So far... WOW!!! its worked out great. The phone is also good by itself, plus it was inexpensive through AMAZON. For anyone interested in going the route I took... you will not be disappointed. Oh yes... you are limited to about 25 ft, or in my case as I work in a hospital where there are alot of other signals and lead lined walls... 15ft with max length at about 20 before you begin to hear static. The phone was a great buy, as was the Jabra A210 adapter. B0009EXVNA:rainbow_effect:d._p._jividen_"foxhound42001" B0009EXVNA Samsung HL-R5067W 50" HD-Ready DLP TV: Electronics electronics 4 of 4 5.0 Rainbow effect July 6, 2006 D. P. Jividen "Foxhound42001" Abilene, TX USA I have had this TV since Mid-March 2006. I absolutley love it!! I did extensive research before I bought a large screen TV and found that this Samsung seemed to give you the most bang for your buck. I read some reviews saying that DLP technology was plagued with problems from the rainbow effect, especially in movies with lots of dark scenes and lots of moving action. One reviewer specifically said to try playing "Bourne Supremecy" to see an example of the rainbow effect. This was the first dvd I played on this tv and I did not once have a problem with rainbow effect. Overall I have no complaints with this TV. Samsung has produced an excellent product. I recommend either satellite or HD programming for the best picture. Regular cable comes in sort of grainy. As far as where to buy it, I recommend Best Buy. I originally was going to buy from Amazon because when I first looked they were offering free shipping. When I decided to buy their was no longer free shipping, so off to Best Buy I went where they price matched me with amazon's price no questions asked. Best Buy offers an extended warranty for around $400 that covers bulb replacement or any other problems. It will also cover the rainbow effect on the slight chance that you have any problem with it. Overall a wonderful product B00005UPF6:cellphone_interference!:tom_rix_"rixth" B00005UPF6 Koss EQ50 3-Band Stereo Equalizer: Electronics electronics 3 of 3 4.0 Cellphone Interference! October 3, 2005 Tom Rix "Rixth" Masterton, New Zealand There is a little story before this: I bought a pair of Sony MDR-XD100's (they are full cup headphones) because I lost the earbuds which came with my mp3 player (Sony HD5). I took them out of the package and found that, even at full volume on the player, it cannot drive the headphones sufficently. I went to a few electronics stores then found the KOSS EQ50. On with the review: Yes, there is a slight hiss, but I find it alright. The biggest gripe I have is that whenever someone within about 2-3 ft (IE, on a bus or subway) uses a cellphone, this devices picks it up. You can get the same effect by using a cellphone next to an unshielded pair or speakers. I do most of my listening at home so this won't bo too much of an issue. It also does a great job of amplifying the signal, it works very well, I can now listen to my XD100's properly (and they are very good!). I haven't used the EQ much but what I can say is that it is very, very sensitive. Raising the bass slider a third above normal makes a massive difference. At a half, my headphones start to distort. If your looking for a nice little EQ and/or preamp this is the product for you. It has its drawbacks though, mainly the problem with cellphone interference and of course, the hiss but it isn't too loud & I can live with it. I reccomend this product if your looking for a budget portable equalizer or headphone amplifer B0009N5MDI:ipod_bluetooth:david_wright B0009N5MDI Logitech 980397-0403 Wireless Headphones for iPod, Gray: Electronics electronics 4.0 ipod bluetooth November 5, 2006 David Wright Scarsdale, NY This does what it's advertized too. I like not having wires. The iPod in my bag, and just the headset. It would be a bit better if you could control the power on the ipod from the headset, ie turn off the headset, receiver and ipod all from the headset. Instead, I have to get the ipod back out, turn it off, turn the receiver off, then turn the headset off. Otherwise, the sound is good and the headset hasn't broken for me yet B0009N5MDI:a_bargain,_if_you_trust_customer_applied_eco's:joe_murphy_"computer_geek_since_1975" B0009N5MDI Logitech 980397-0403 Wireless Headphones for iPod, Gray: Electronics electronics 1 of 1 4.0 A bargain, if you trust customer applied ECO's September 29, 2006 Joe Murphy "computer geek since 1975" Portland, OR USofA I picked up 4 pairs of these on Amazon, and have applied the CA and Nylon tape fix to the first pair (took about 10 minutes to do, let it cure overnight). Headphones look ok, with just the right amount of Geekhood proudly announced afterwards (reminiscent of the last generation of Geeks with the tape on the glasses). Sound is very good (better than most earbuds), they establish link quite quickly with the dedicated Logitech transiever, and range is outstanding. My only beef is how long I have to hold down the power switch to turn them on, and so far I have not successfully established a connections with my Treo 650. 1 star held back because of need of customer applied ECO, and they are only partially functional with the Nano (can't use the advance track feature of the headphones) B0002Y6CVA:great_for_lots_of_storage:g._wynn B0002Y6CVA Case Logic Nylon 336-Disc CD Wallet (Black): Electronics electronics 5.0 Great for lots of storage November 12, 2006 G. Wynn WA United States I am ordering my third of this capacity and have one in the 200 capacity range from Case Logic. This is a great product and is manufactured well. Holds the discs well and is easy to take them in and out. I don't transport them so I can't comment on that. Like others have said it is not easy if you want to move pages around but you can do it and it does make it nice for organizing as you fill it up. Get this if you need a lot of storage B000068BUI:perfect!:michael_e._zelenak B000068BUI Labtec AC10REGN 20-foot Headphone Extension Cord with Miniplug and 3.5mm Jack: Electronics electronics 7 of 7 5.0 Perfect! May 11, 2006 Michael E. Zelenak Zelienople (Pittsburgh This headphone extension is perfect! It is not as long as described (about 15 feet) but that's O.K. with me. The connections are tight (the plugs don't pull apart). It maintains sonic quality. It also retains it's elasticity. Using this extension cord my Grado SR-60's sound better than any wireless phones. You won't be dissapointed! B0007P4G7G:not_bad..._for_a_couple_bucks:andrew_cherry_"programmer,_cg_artist" B0007P4G7G Xtreme TBCDW128 128-Disc CD/DVD Case: Electronics electronics 5.0 Not bad... for a couple bucks August 4, 2006 Andrew Cherry "Programmer, CG Artist" Hampton Roads, VA, USA This is a pretty decent cheapo case. If you want something that you'll use every day in the car or at your DJ gigs, then you may want to get something a little sturdier. For my [archival] purposes, however, it works just fine B000F2PHDI:excellent_hdtv_:marc_j._levin_"wally_the_woodworker" B000F2PHDI Samsung HL-S6187W 61" 1080p DLP HDTV: Electronics electronics 5 of 5 5.0 Excellent HDTV November 22, 2006 Marc J. Levin "Wally the Woodworker" PA Purchase/Service: For $2,200 at Amazon, this was a great purchase since it would have cost over $2,700 at a retail store (including tax and shipping). Eagle arrived 10 days earlier than the Amazon estimate, unloaded the TV right to the TV stand, and after hooking it up and making sure the controls worked and the picture / sound worked, I signed for it. And, Eagle asked if I wanted the packaging carted away. Very pleased with the service part so far..... My Set-up: S6187 61" HDTV Sony AV and 5.1 surround (this is not a digital unit.....I wasn't sure it would work but there are three options to hook-up a home theater: 1) Basic connection; 2) Optical; 3) HDMI) Sony DVD Motorola HD-CATV box (We use Comcast) Sony VCR Experience: As far as the tv, the HD channels look sharp and clear, however the non HD channels aren't as sharp as my 36" Sony CRT TV (there are several settings on the Samsung for 16:9, 4:3 and wide format; setting to 4:3 or wide for non HD channels improves the picture quality a little). But it doesn't effect the enjoyment since I purchased this for the HD, and it blows me away. The TV controls are simple to use, and the on screen menu's are easy to navigate. The sound out of the TV is not adequate for surround sound, but I hooked up a 5.1 reciever and it makes HD come to life. I like the fact that you can connect components to an AV and/or the TV, so there is room for 3 additional components with my set-up. I also hooked up my laptop (there is 2 connections for the video and audio on the back of the TV). After changing the video settings on the Laptop (the mannual does a nice job for XP users), it was incredible! The camcorder hooks up to the side of the TV, so there is no need to move the unit away from the wall. It was a simple set-up, and again, the picture quality just blew me away!!! I highly recommend this TV to anyome looking for a 50" plus TV B000A2BJ44:ink_toner:donald_peeples_"jack_of_all_trades" B000A2BJ44 Canon PG-40 Black FINE Ink Cartridge: Electronics electronics 5.0 Ink Toner November 3, 2006 Donald Peeples "jack of all trades" Poconos The ink toner I received was exactly as described and was delivered in a timely fashion. B000A2BJ44:evaluating_canon_pixma_ink:john_l._friedman B000A2BJ44 Canon PG-40 Black FINE Ink Cartridge: Electronics electronics 4 of 5 4.0 Evaluating Canon PiXma Ink March 16, 2006 John L. Friedman AZ, USA A very good in supply is obtained at all times without leakage of ink or smudging of the paper or clogging of the printer. The reason it is not rated 5 stars is that the ink supply is utilized too rapidly and the expensive cartriges have to replaced too frequently B0001BXVA4:wicked_easy_to_set_up!:av_mainiac B0001BXVA4 Netgear USB Mini Print Server (PS121): Electronics electronics 5.0 Wicked easy to set up! July 10, 2006 AV Mainiac Portland, ME USA This was by far the easiest computer peripheral I have ever setup! Works flawlessly with my Netgear wireless router B000CSDDLI:not_perfect,_but_the_best_ipod_case_i_have_found:m._hendrickx B000CSDDLI iSkin eVo3 for iPod with Video 30GB (Arctic): Electronics electronics 16 of 16 4.0 Not perfect, but the best iPod case I have found February 18, 2006 M. Hendrickx Chicago, il United States It is remarkable that, even though there are hundreds of iPod cases in existence, none of them are near-perfect. I tried four different cases, both hard plastic and silicone variants, and the iskin case comes the closest, protecting the ipod but at the same time not rendering the ipod less enjoyable to use. The case is basically a hybrid of hard plastic and soft silicone. The ipod first slips into a silicone sleeve, which covers every part of the ipod except for the earphone plug and the screen. In addition, there is a hard plastic plate that is then inserted into seems on the front of the silicone case, and this provides the screen protection. Due to the double-seam in the silicone, the plastic plate never comes in contact with the ipod, so you don't have to worry about it scratching. The case even has a flap that covers the dock connector, preventing dust from entering, yet you can still use the universal dock without removing the case. The most unique part of this case is that it covers the clickwheel, but the silicone is so thin that it hardly impedes the scrolling. Actually, I think it provides just enough resistance so that you will overshoot your target much less than with the bare clickwheel. The only real downside I found with the iskin is the clip that comes with it--I would not trust it at all, so I took it off. It would be nice to have a better clip that you can actually use, and it would be really great to have an armband available for it as well, but as I said above, I have yet to find a perfect ipod case. Like most silicone cases, this one does also attract lint in your pockets, etc., but it is not as bad as other cases. Unfortunately, even though this is a great case, it is not readily available. I couldn't find it in any store, and Amazon only sells it through Marketplace sellers. I ordered from Applelinks, and they delivered it to me in four days. Whatever you do, don't order from the iSkin company directly. I have heard countless horror stories of people waiting a month for their cases. They should re-dedicate themselves to manufacturing these great iskins and let others worry about selling them B00005S83B:hp_57_tri-color_ink_cartridge:linda_"linda" B00005S83B HP 57 Tri-Color Ink Cartridge (C6657AN): Electronics electronics 5.0 HP 57 Tri-Color Ink Cartridge March 8, 2006 Linda "Linda" Sharps Chapel, TN Ordered the ink cartridge and had it within 4 days. Love the service at Amazon B00005T3EJ:look_no_further...: B00005T3EJ Monster Cable MB AA 1850-4 Ultra-High Capacity Rechargeable Monster PowerCells: Electronics electronics 4 of 34 5.0 Look no Further... January 29, 2002 These are the BEST. PERIOD! Look no further.. because you will not find a better value in rechargable batteries B00005JAFA:stick_with_the_best:j._kaplan_"jkaplan29" B00005JAFA Canon BCI-6BK Black Ink Tank: Electronics electronics 1 of 1 5.0 stick with the best August 15, 2006 J. Kaplan "jkaplan29" Elmira, N.Y. i used canon ink and then decided to try one of the cheap imitations. it worked well for a few months and then my photos came out of my canon i900d with color changes. after 3 conversations with canon customer care, we decided it was not the printer, but the cheaper ink. i switched back to canon, bit the bullet on the price, and everything is fine. i found decent prices on amazon, particularly at eek industries B0009F4ORQ:great_product:k._odom_"reader" B0009F4ORQ Creative Zen Nano Plus 1 GB MP3 Player Red: Electronics electronics 4 of 4 4.0 great product November 3, 2006 K. Odom "reader" Oklahoma City, OK USA this is a nifty very small musical device that I use when exercising. its great - holds all the songs I can listen to and is so portable. I really like i B0009F4ORQ:very_cute!!!!:terri B0009F4ORQ Creative Zen Nano Plus 1 GB MP3 Player Red: Electronics electronics 5 of 7 5.0 Very cute!!!! August 26, 2006 Terri Chicago, IL USA I was so happy with my Creative Zen Nano that I bought one as a gift. I love the color choice and the sound is great. Love the pause button. It came with a protective case that attaches to the arm band. You do not need to buy one!! Amazon delivered it in 2 days B0009Q5BUE:hp__photosmart_335_printer:gary_balint B0009Q5BUE Photosmart 335 Compact Photo Printer (Q6377A#ABA): Electronics electronics 3 of 3 5.0 HP Photosmart 335 Printer August 16, 2006 Gary Balint This printer was purchased for my wife's birthday and arrived in two to three days. Considering money spent the printer works quite well. Pictures come out very good overall. An HP 95 or HP 97 cartridge is used for color photos. It contains three color inks but no black. Still, photos will easily satisfy the average owner. An HP 100 cartridge can be used for black and white photos. Yes, the color cartridge must be exchanged for the black one when converting from color to black and white and vise versa. Even so, we find the printer fun and very simple to use. Just keep in mind that the price of ink will soon exceed the price of the printer if used often. What we do is use it for special occasions or when the grandchildren come over. Gary B0007WCA4K:ideal_for_small_spaces:foyen B0007WCA4K Toshiba 27AF45 27" Flat Screen TV (Silver): Electronics electronics 0 of 4 4.0 Ideal for small spaces June 28, 2006 Foyen NY, NY This is perfect for use in kitchen space and has incredible pictue quality B00003CWA7:simple_physics: B00003CWA7 Monster Cable ILS100-2M Interlink LightSpeed 100 High-Performance Digital Fiber-Optic Cable, Toslink-to-Toslink (2 Meters): Electronics electronics 10 of 31 4.0 simple physics July 24, 2000 I'm using Monster optical cable as well, but with different reasons behind. Anybody with a basic knowledge of physics or optics should know that under normal condition light is not susceptible to interference from magnetic field or EMF B000F8J3A0:good_sound_quality,_good_battery_life:riemahe B000F8J3A0 Panasonic KX-TG5673B 5.8 GHz FHSS GigaRange Digital Cordless Telephone with Dual Handsets: Electronics electronics 7 of 7 5.0 Good sound quality, good battery life August 29, 2006 Riemahe Denver, CO Sound quality is very good, and I haven't run out of battery so far. The base is somewhat smaller than what I expected from the pictures. The handsets are well designed; on my previous phone it happened that the "mute" function became engaged when I kept the phone between my head and my shoulders - this did not happen with these so far. Speakerphone on the base is a nice feature and makes the phone usable even during power outages. Answering machine works well. Easy to copy phonebook entries between phones. B00009EFRB:a_better_mousetrap:two_wheel_touring B00009EFRB Targus PA492U DEFCON VPCL - Video Port Combination Lock: Electronics electronics 3 of 5 5.0 A better mousetrap December 13, 2005 Two Wheel Touring North Carolina This does exactly what it is supposed to do. It is light, easy to pack, easy to use, and probably difficult to crack. (Though would-be PC pilferers haven't tried taking a hacksaw to my cable lock so I cannot comment as to its ability to withstand saws, blow-torches, or any other criminal's tool.) Other reviewers baffled me as mine is as described by Amazon. There is neither an alarm nor batteries. Why bother with an alarm if the PC is locked with steel cable? Seems like overkill B000BBAKSA:excellent_webcam_-_no_video_lag_-_superior_clarity:wordchipper B000BBAKSA Logitech QuickCam Orbit MP Webcam ( 961422-0403 ): Electronics electronics 5.0 Excellent webcam - no video lag - superior clarity November 18, 2006 Wordchipper Fargo, ND, USA I tried both Microsoft's LifeCam VX-3000 and VX-6000. Had 'em both home and ran trials with my Intel Pentium D Dual Core 3.00GHz CPU with 2 gigs of ram and, with both of those, the video lagged the audio (distractingly so). Spent the better part of an hour on the phone with a friendly Microsoft customer service rep one evening (got through on their toll free line)and he pointed me to new software for the VX-6000. Downloaded the 50 meg plus file, installed it, but the VX-6000 still produced out-of-sync video vs. audio when I created a simple 640 by 480 video file for viewing on Media Player or editing in Windows Movie Maker. So, I talked to some technicians at our company and then talked to the webcam guru at the local assembler that built my, I believe, excellent computer. All recommended Logitech when buying webcams. I then marched back to Best Buy and traded my $99 Microsoft VX-6000 for a Logitech Quickcam Orbit MP for BB's price of $139.95. You can find this Logitech unit cheaper all over the place, including, of course, here at Amazon. The package I bought included an inexpensive headset, which I haven't used so far. Although I haven't tried the Orbit in a video phone call yet, from the moment I turned it on I had that satisfing good feeling that I bought a winner. Installed fairly easily with a couple of bumps. Got a "USB composite device has not passed Windows Logo testing" screen a couple of times..BUT..I received the SAME screen on, get this, the Microsoft cams! I just continued installing and have not experienced system problems so far. The audio sync with video in making a recording is right on (remember, that was primary reason for taking back the Microsoft cameras) AND the picture clarity on my LCD flat panel monitor at the 640 webcam capture setting produced a gorgeous picture. Excellent detail and smoothness of video. Besides the superior audio sync with video, the Orbit MP is remarkably better than the VX-6000 and way above the $49 Microsoft VX-3000 in all other criteria too, in my opinion after comparison testing. The Orbit's special effects are interesting and fun. The pan, tilt, etc., excellent. The face tracking is vigorous and alive - fun to watch the little Orbit camera turn - but I haven't tested in actual live conferencing yet. All in all - for webcams, I'm now saying what more experienced webcam users told me - head for Logitech. They've certianly hooked me with their apparent superior performance. The Orbit MP is a keeper! Not going to waste anymore time searching and testing. And, my advice to Microsoft, you'd better talk to the outfit that bought your name for those Lifecams. I've relied on the Microsoft name on peripherals, keyboards, etc., and I've generally been very satisfied. But, in webcams, with me, the Microsoft brand now takes a back seat to Logitech. B000BBAKSA:great_little_cam:b._veltman B000BBAKSA Logitech QuickCam Orbit MP Webcam ( 961422-0403 ): Electronics electronics 1 of 1 4.0 Great little cam August 9, 2006 B. Veltman Hampton, VA Easy to operate and good focus. Just a little problem with tracking for the goofy faces but overall a nice little cam B00079V9XG:incredibly_useful_gizmo:librarian B00079V9XG Garmin iQue M5 Integrated Pocket PC and GPS: Electronics electronics 1 of 1 4.0 Incredibly Useful Gizmo October 21, 2006 Librarian Southfield, Michigan United States Garmin iQue M5 I'm very pleased with my little iQue M5 GPS/PDA. While it's not perfect, it's pretty darn amazing. I had actually purchased a Lowrence iWay 350 GPS, but then my husband discovered the iQue on sale at Costco for about [...] more. With the iQue offering so many more features, I returned the Lowrence and purchased the iQue. With my husband and I both having the same machines, we can beam information to each other or send them over Bluetooth. It has taken many hours of playing around with it to get to learn the device, as it isn't very intuitive and the manuals, especially for the PDA, are limited. My husband has spent a lot of time learning to use the GPS, and he's learning its idiosyncrasies as far as planning routes and getting it to avoid routing through construction areas. It's very sophisticated and the maps are great - better detail than the Lowrence. We purchased a 2 Gig memory card and downloaded the entire map database onto it, and there were still 300 gigs to spare. I had no trouble downloading the maps or the Active Sync software. The basic GPS functions are easy to use once you get the hang of it, the voice directions are clear and concise, and it re-routes quickly if you go off course. You can plan your route in advance without having the GPS activated. This is a good idea, since it can take up to 5 minutes for the unit to locate the satellites, and you can be on your way if you've viewed your route before starting out. I used the GPS on a trip Stratford, Canada, and it was wonderful having the Canadian maps as well as the US maps available. I even used it handheld while walking to my bed-and-breakfast from the theater. Every once in awhile there is a glitch (it said the theater was on the left, which would have taken me into the Avon River!), but it's generally right on target and I find most of the problems are operator error, such as turning too soon. The "Route to Home" feature is very convenient. Granted, the iQue doesn't always take you on the shortest route, but it will get you where you're going and if you're "directionally challenged" like I am, it becomes indispensible. The car mounting bracket works fine. It's popped off occasionally in hot weather, but generally stays put. The bracket would be easy to move to another vehicle. The GPS would work in a cup-holder if you needed to use it in a rental car. I've spent more time learning the PDA portion, which uses Windows Mobile 2003 2nd Edition. The iQue uses Outlook as its interface, so you'll have to have it installed on your computer. Not having used Outlook before, I installed Outlook on my laptop and spent some time getting familiar with it, which was helpful. The PDA has so many functions that it's hard to even describe what this little machine can do. It will organize all of your calendar functions and contacts, checks e-mail, accesses the Internet if you get a Wi-Fi card, recognizes handwriting, has a voice recorder, interfaces with other Bluetooth units, sends alarms, has Word and Excel, even has a couple of good games. I got a separate SD card for music and downloaded a lot of songs, and the sound through headphones is quite acceptable (it has bass boost). It uses Windows Media Player so you can organize all of your playlists. You can download any programs that are available for Windows Mobile 2003, including TV shows and videos. I never thought I'd find much use for a PDA but I'm using it every day. No more little notes on scraps of paper or a separate pocket calendar, address book or even an IPod. Everything is in one handy-dandy little machine. And even though it isn't that intuitive, once you've learned the basic conventions they translate to most of the programs. We've called Garmin Tech Support a few times and, although they are only open during regular business hours, we found American staff who are very knowledgeable about the product. Since a good GPS will run at least [...], this was a great bargain at around [...] We've purchased screen protectors and are hoping it won't wear out too quickly, as I've heard Palm Pilots tend to do. I'm really enjoying the iQue. B00079V9XG:decent_gps_but_now_in_discontinued_status:debbie_b B00079V9XG Garmin iQue M5 Integrated Pocket PC and GPS: Electronics electronics 4 of 4 4.0 Decent GPS but now in DISCONTINUED status July 16, 2006 Debbie B Hamilton, NJ United States We bought this about a month ago from Amazon. The product itself seems fine - we used it on a vacation drive from NJ to Myrtle Beach and back. At times, it was a help (like when there was a traffic jam on 95 in VA and we needed an alternate route). However, you definitely have to keep an eye on it as it doesn't always recommend the best or shortest route. Also, it was missing certain stores, restaurants, etc. that had been around for awhile. We liked that it is a PDA though. My husband drives limos so he wanted a mapping device for help but we hope to load some games into it. This way, when he has to wait around, he will have something to do. CONS: - You should be tech-savvy to get one of these set up - Match sure you get patches as unit will lock up - Manufacturer has DISCONTINUED this model. They still offer some support but be warned that this is a DISCONTINUED model. - Since it became DISCONTINUED, it dropped in price about $60 two weeks after I bought it which annoys me somewhat - Will be spending extra to get bigger memory card - Came with EXPIRED Outlook coupon - why bother including this? PROS - Nice display and controls - Came with mount and dock (some don't - you have to buy extra) - We had no trouble with the suction cup mount (had to pry it off the window with a knife one time) but agree that most placement seems to block driver view through windshield - Also a PD B000AYH0QS:vtech_model_ip811_phone:r._shwarts B000AYH0QS VTech Accessory Handset - Black/ Silver: Electronics electronics 5.0 Vtech Model IP811 Phone August 12, 2006 R. Shwarts This phone was an additional phone for the Model IP811-2 phone system used for Vonage. This system has every feature that I could want, including range and quality, there are no negatives. I am highly recommending this phone and system B000ETXOC8:great_sound_quality_-_smokin'_video:charles_horne_"ceh007" B000ETXOC8 SanDisk SDMX4-2048 Sansa e250 2 GB MP3 Player with SD Expansion Slot: Electronics electronics 1 of 1 5.0 Great Sound Quality - Smokin' Video November 25, 2006 CHARLES HORNE "ceh007" Small Town, USA Not much said about the fantastic quality of the video picture. You wouldn't think that you would actually be able to watch video on a screen this small but the resolution and quality of the picture is amazing. I have shown it to an I-Pod owner and was told the video on this player is definately better than the I-Pod. The unit is not perfect, it does freeze occasionally, but the re-set function has always unlocked it. The video sometimes converts in a jerky fashion also. But the conversion software was able to handle very large files. I suspect a little tweaking might fix the conversions. Sound quality is great. Combine this with Sennheiser CX300-B Earbuds and you'll love it. This is my forth MP3 type player amd the extra money over the lower end players definately yields a better product. The previous player, Creative Zen Nano Plus 1 GB MP3, quit working the week the warranty ran out. Thumbs up on this one B00065H0QQ:works_well_with_garmin_gps:a._duncan B00065H0QQ Sabrent - USB / serial cable - DB-9 (M) - 4 pin USB Type A (M) - 1 ft: Electronics electronics 4.0 Works well with Garmin GPS November 10, 2006 A. Duncan I purchased this cable solely to connect my GPSmap 76S to my HP laptop. So far it has performed perfectly. I have not tried to use it for other applications yet, so I can't comment on how well it would work in other situations. B0001DBHNA:canon_i-9900_photo_printer:d._r._ferguson_"doctor_jazz" B0001DBHNA Canon I-9900 Photo Printer: Electronics electronics 1 of 1 5.0 Canon I-9900 Photo Printer November 5, 2006 D. R. Ferguson "Doctor Jazz" Spotsylvania, VA USA I find this printer to be better than HP or Epson as there are not a lot of bells and whistles, just a solid printer that performs as I anticipated B00086HTP0:i_couldn't_live_without_it:lorraine B00086HTP0 Creative Zen Micro 6 GB MP3 Player Black: Electronics electronics 5.0 I couldn't live without it October 27, 2006 Lorraine The zen micro is brilliant I have dropped it a load of times and it still works fine i've dropped it on the kitchen tiles twice, i've dropped it a few times in the yard and it still works perfect. I had to buy new headphones for it which made the sound quality much better. It is very easy to transfer files to it I always use windows media player to transfer files as it is easier to use than the creative software. I use it everyday and the battery lasts a good while for me. Overall the zen micro is a very good product B0006A2SNG:works_well:ian_baker B0006A2SNG First Alert MotionSense PIR720R Light Control: Electronics electronics 3 of 3 5.0 Works well August 12, 2006 Ian Baker Etna, NH USA I bought four of these. So far they appear to work well. They do not work with compact flourescent lights well, but are fine with incandescent bulbs B000AYHY46:very_pleased_w/_this_monitor:c._t._wallace B000AYHY46 HP F2105 21" LCD Flat Panel Monitor: Electronics electronics 11 of 16 5.0 Very pleased w/ this monitor January 1, 2006 C. T. Wallace Davis, CA United States I bought this screen as a replacement for my 8ms 17" Hyundai L90D+(which is a great low-priced screen for gaming), which was the replacement for a Dell fp2100 (that I gave to my wife). Anyways, this is an excellent monitor with excellent color reproduction and response times (more than enough for my flight sims). Movies are beautiful and the rather weird resolution hasn't been a problem. The design is probably the neatest looking out there (subjective I realize). The ONLY gripe I have w/ this monitor is lack of swivel (sigh). Other than that I'm very pleased with everything about this screen B000AYHY46:works_great_on_a_mac_as_substitute_for_apple_cinema_display:bill_atkinson_"techhead" B000AYHY46 HP F2105 21" LCD Flat Panel Monitor: Electronics electronics 9 of 15 5.0 Works great on a Mac as substitute for Apple Cinema Display November 14, 2005 Bill Atkinson "TechHead" Clear Creek, IN Wow...just got one of these at a great price, hooked it up to my Mac G4 via a DVID cable, and it boots up at native resolution (1680 x 1050) automatically - no muss, no fuss. Text is crisp and clean B000EP8POE:great_features:t._toister B000EP8POE Panasonic KX-TG5621S 5.8 GHz FHSS GigaRange Digital Cordless Telephone: Electronics electronics 2 of 2 5.0 Great features October 28, 2006 T. Toister Los Angeles, CA United States My favorite thing about this phone is that the caller ID captures 11 digit numbers (1-xxx-xxx-xxxx) which are then very easy to store into the phone book and call. My old phone only captured 10 digits (xxx-xxx-xxxx) which meant I had to reenter everything manually because of course you have to dial a 1 first. This new phone also allows me to toggle between 11 digits and 7 digits on the same number. I put together my phone book just by capturing calls as they came in. Very handy. As far as being a phone, it does everything well and after a couple of months I am still as happy as could be with it B00001W0FJ:it_rocks_man: B00001W0FJ Plantronics H51M12 Supra Monaural Headset and Modular Amplifier: Electronics electronics 1 of 23 5.0 IT rocks man October 1, 2000 This is the rockinest think i've ever seen or buyed dudes!!! check it ou B000CSWHCY:garmin_gpsmap_60cx:gary B000CSWHCY Garmin GPSMap 60Cx Handheld GPS Navigator: Electronics electronics 2 of 2 4.0 Garmin GPSMap 60Cx November 13, 2006 Gary CT USA This is my first GPS and I wanted a unit that could be used in a variety of environments such as biking, hiking, kayaking, and in the car to. I found this unit to be easy to use with a large display and convenient controls. Also the 2 times I called Garmin with questions I was able to talk to someone who is in the USA as opposed to a person in a foreign country which can be frustrating to some. On the down side to get the most out of this unit you still need to buy additional mapping software B000CSWHCY:out_of_the_box,_this_thing_rocks!:ryan_park B000CSWHCY Garmin GPSMap 60Cx Handheld GPS Navigator: Electronics electronics 15 of 16 5.0 Out of the box, this thing rocks! July 17, 2006 Ryan Park Salt Lake City, UT Ok.. here's the deal. I've been an avid Magellan user for the past 3 years. I love my Magellan. I've never liked the Garmins because of their clumsy interface (the buttons placed above the display NEVER made sense to me) and how the menu structure was built. However.... We're planning a 2000 mile road trip from Utah up to the Oregon coast. We needed something with expandable memory so we could upload more than one state map at a time. My wife bought me the Magellan eXplorist 600 for Fathers Day. I forced myself to use it for two days (and believe me, it was torture). I could go on and on about why I sent it back. What I ordered as a replacement was the GPSMap 60Cx. Now keep in mind that I felt like someone who had turned to the dark side. I couldn't be happier with my decision. While I agree with most of the other reviews about the lack of base maps, and the expense of additional ones, this unit ROCKS! It acquires satellites within seconds. It has expandable memory. It has a color screen. It manages Geocaches. It auto-routes. It stores 1000 waypoints. It has SiRF Technology. It is a USB interface. It has a belt clip. It changes display contrast at night (automatically). It slices... It dices.... Suddenly the Dark Side isn't so dark!! This is a great unit that I would recommend to anyone. B000ETTFRG:first_mp3_player_i_ever_owned_and_not_disappointed:m._mcqueen B000ETTFRG SanDisk SDMX4-6144 Sansa e270 6 GB MP3 Player with SD Expansion Slot: Electronics electronics 9 of 9 4.0 First MP3 player I ever owned and not disappointed November 21, 2006 M. McQueen Kentucky I had been talking about wanting an MP3 player, but I did NOT want an iPod, as I heard you cannot add files in Windows format and that's what all of my music is. I received this e260 4 GB MP3 player for my birthday in June 2006, and this is the first MP3 player I have ever owned. Although there are a few little quirks, overall I am not disappointed and would recommend this MP3 player. Like many rechargeable battery-powered items, it required a lengthy initial charge before first use. After that, the future charges don't seem to take as long. The MP3 player plays for hours on end without needing a new charge. Although I've never run it completely down, I have used it continuously for about 4 hours with no battery issues. I installed the software on my computer, and the disk is where you will find the owner's manual. I was a bit irritated that there was no hard copy of the owner's manual, and just a few weeks ago it came up as an issue when my MP3 player froze and I had to turn on the computer to look up the troubleshooting guide (turns out if the player freezes you need to hold the power button down for about 15 seconds to reset it). It came pre-loaded with 20 songs, only one of which I had ever heard of (and it was one of those no-name bands that played once on Saturday Night Live). Although my first instinct was to delete the songs to make room for my own choices, I decided to leave them on there until I need the space. About three of the songs have grown on me a little bit over the past 5 months. I currently have 517 songs on there and still have room for more. As far as performance goes, it performs pretty well. The buttons are a little difficult to get used to, as you navigate through the functions and the song lists by scrolling a wheel. Not too bad, but when you turn on the player and it begins at the beginning of the list and you want a song that's in the middle and you have a lot of songs on there, you will be scrolling a lot. I do not use all the functions that came with this MP3 player. It has music, fm radio, photo, voice, video and a settings option. I have used the music function and the voice recorder option, both with good results. The only downside to the voice recorder is that you can't get the recordings you made off the MP3 player and onto your computer. It would have been nice to be able to record things and sync them onto your computer. As for syncing music files, I have not had any problems, although I did have one instance where it shows a song was downloaded, but when you try to play it, it skips to the next song alphabetically in the list. I don't know what caused this. Also, you can only store a song as one genre, which is a little annoying. Be sure you have your genres picked before you sync because once the song is on the MP3 player, you cannot change the genre. It came with a headset, but I have never used it. Instead I purchased some Panasonic folding travel speakers to use with it. I do wish the MP3 player had some alternate form of charging other than needing to be connected to my computer's USB drive to charge. Another con is that a scratch of some sort appeared on the inside surface of the screen. I can't remember it being dropped or anything, so I don't know what caused this, but it's pretty noticeable. It doesn't seem to affect the operation, just the aesthetics. Overall, the cons are little irritations to me and I would recommend this player to someone who doesn't want an iPod B000ETTFRG:it's_not_perfect,_but_it's_very_good:jenny_b._"loyal_amazon_customer" B000ETTFRG SanDisk SDMX4-6144 Sansa e270 6 GB MP3 Player with SD Expansion Slot: Electronics electronics 5 of 7 4.0 It's not perfect, but it's very good November 16, 2006 Jenny B. "Loyal Amazon customer" New York, NY USA Pros: Easy to use, last for days without charging (depending on the use, of course... but i was traveling for 5 days and used it a lot without charging, and it lasted the trip), enough memory space, has radio, works as a recorder, small Cons: Stopped working, froze twice since i bought it 3 month ago. When it's on, tunes that i had deleted will still appear on my play list. If I hit play on such song, the player just skips and plays the next song on the list. But overall i'm happy with my MP3. I'd recommend it B0007YG8JQ:best_traveling_mouse_yet:cameron_crosby_"gadget_freak" B0007YG8JQ Anycom Bluetooth Mouse & USB Adapter Bundle: Electronics electronics 5 of 6 5.0 Best traveling mouse yet January 9, 2006 Cameron Crosby "Gadget Freak" I've never written a review, but I've relied heavily upon the voluntary opinions of other Amazon buyers, so I felt a really good product like the Anycom Bluetooth mouse deserves an unsolicited review. I know experience and taste vary by individual, but this mouse is awesome from my viewpoint. Pros: - Bluetooth - connects immediately; provides smooth accurate tracking - Size - very portable; some may find it too narrow; I have a hardtime going back to a wider mouse - Battery life - I get at least 2 days out of it before charing and I'm a fairly heavy user - USB charge attachment - allows you to continue to work while recharging - Product Design/Quality - Nicely engineered; good quality material- not tinny - it's built to take abuse Cons: - Haven't really found any - It took me awhile to figure out how to connect until I read the manual line by line (I don't tend to do that) then I realized it was pretty straight forward. If you're looking for a quality bluetooth traveling mouse this is the one. B000A6LNVY:a_dandy_little_printer:christine_b B000A6LNVY HP Photosmart 8050 Printer (Q6351A#ABA): Electronics electronics 10 of 10 5.0 A dandy little printer July 4, 2006 Christine B Canada I was in the market for a new inkjet and finally settled on this printer. The photo output is awesome and it's very fast! There are only two things I would comment on that new users might not be aware of. I was ready to return the printer as I thought it was defective until I found out what the problems were. 1) When the cartridges dry out, it will tell you that the cartridges are incompatible. This was confusing as I did have the correct cartridges in the printer. A "replace cartridge" message would have been less ambiguous. 2) The printer has so far appeared "dead" once. When I went to turn it on, it would not do so. The solution is on HP's website - you must remove the rear door and do a hard reset. I did this and the printer worked fine again. The printer does not come with a USB cable, but those can be easily bought for $14-20. B0000DC643:like_an_electronic_glove...:g._rummell B0000DC643 Belkin Nostromo Speedpad n52: Electronics electronics 4 of 4 5.0 like an electronic glove... October 22, 2006 G. Rummell I'm a skeptic. No, I mean I'm REALLY a skeptic... especially in today's marketplace (because nothing is built like it used to be). I don't buy anything without checking it out first, and even then, I expect that it's probably going to fail me when I do. Yeah, wonderful view there, huh? Well, needless to say, I was pleasantly (and quite happily) surprised when this device didn't fail me out of the box. I've been using my speedpad for almost a year now, and I have to say that it has been by far more solid, responsive and intuitive than I ever expected it to be. I will not play a PC game without it plugged in now, that's how well this gamepad has worked for me. Here are the ins and outs: 1) Solid construction. As others have stated, this device feels very solid and is just generally "sturdy as hell". This, alone, surprised me. Not too many electronic devices are solidly made these days (not too many at all!)... so I'm glad to see that this one was. Belkin did an excellent job in this department. 2) Software. Do yourself a favor, when you get this device home, don't bother putting in the CD that comes with it. Instead, go directly to Belkin's website first-thing, download the newer version of the software (which is near exactly the same as what's on the CD, but updated) and install that *before* plugging in your speedpad for the first time. Do that and you'll have everything updated immediately with little to no trouble at all. I've had no problems with the software for this hardware (and that's generally the part I have trouble with the most). The applications (profiler and button editor) function perfectly, and macros are a snap to program. Kudos to Belkin's programmers on writing the software suite for this, they did a good job. 4) Sticky keys. Most people have experienced this.. myself included. Being possibly a byproduct of the solid construction of the product, basically, what happens is the keys stick just a little bit coming out of the box. Though just "excercising" the device (pressing the buttons down quickly and solidly over and over) for a few seconds after plugging it in each time I went to use it cleared up this issue within the first week of using the gamepad, and I've never had it happen since. 5) Other buttons. * The mouse scroll wheel can be an annoyance, and I don't use it much at all because it's hard to scroll up and down with it (Belkin may just have made that particular button a little *too* solid). * The orange button above the d-pad also isn't that easy to press, though if you keep you pinky finger positioned on the side of the keypad for leverage, it's not impossible to press this button (in fact, I use it as my default "map" button in most of the games I play). It's perfect for those functions you use enough to need a button for but not enough to need an easy spam button. * I haven't experienced any problems hitting the 'space' button below the d-pad that others have experienced. My thumb taps that button as easily as it taps the space bar on a standard keyboard. My only complaint with it is that I can't simply twist my thumb a bit to hit the key, I have to actually lift my thumb off the d-pad to do it - and that's not much of a complaint at all, really. The d-pad itself is a godsend! I'm a true console gamer, having used nothing but d-pads for movement since all the time spent playing my old NES as a kid (and using a joystick before that with my even older Atari). D-pad is all I know, really. In fact, the one thing that's kept me away from PC gaming all these years is I've never, ever been able to accustom myself to using arrow keys or WASD for movement (and probably never will get accustomed to that either). For the longest time I was looking for a device that could allow me to keep the sensitivity of mouse aiming (to keep up with other PC players) while giving me an actual d-pad for movement... and that is EXACTLY what this gamepad did for me. As I said at the top of this review, I will never play a PC game without my Nostromo speedpad plugged in. This gamepad has provided the one benefit that other pads haven't and that I really needed - a controller interface that's actually functional and intuitive enough to use that I forget I'm using it most of the time, allowing me to immerse myself completely in whatever game I'm playing... which is really the point of gaming in the first place, isn't it? The Nostromo Speedpad gets 5 stars from me. I would recommend it to anyone who's looking for the type of benefits I've listed. And, for that matter, I'm recommending it right now in fact... B000095SB6:sony_earbuds_are_great:michael_chellson_"mike_c" B000095SB6 Sony MDR-EX51LP Fontopia Headphones: Electronics electronics 4.0 Sony earbuds are great November 10, 2006 Michael Chellson "MIke C" Colorado The sound of these earbuds are great..and they are a value for the price. However the "in the ear" design causes them to catch sweat, and they won't last when you sweat into them alot. After 9-12 months of wearing them in the GYM they will stop working. I have gone through 3 pairs in the last 2 years B000I28RU0:chip_is_fine_-_fast_delivery:m._mortimer B000I28RU0 1GB Kingston MicroSD TransFlash 1 GB Memory Card: Electronics electronics 2 of 3 5.0 Chip is fine - Fast Delivery October 16, 2006 M. Mortimer San Francisco Using this Kingston chip on my Pearl 8100 phone and it has worked flawlessly. And eSmartBuy delivered it within about 3 days of my order. Can't beat that B00006RVPW:stable,_fast,_and_quiet:steven_hsu B00006RVPW Netgear GS108 8-Port 10/100/1000 Copper Gigabit Ethernet Switch: Electronics electronics 5 of 5 5.0 STABLE, FAST, and QUIET May 10, 2006 Steven Hsu NY USA I work in a computer lab where we constantly re-image devices (using Norton Ghost). I have 3 laptops and 1 DELL GX620 desktop and all of them have Gigabit connection. When I connected those 4 to this switch and run the imaging process simultaneous, I get the same performance (0 differences) as I run 1 laptop to the GX620. This testing was done with Cat5 cables that I pick randomly from my lab. I can't wait to add more devices and using Cat6 cables to get my work done faster B00005UK9M:antenna_works_ok,_garmin_needs_a_better_antenna_plug:ragamuffin B00005UK9M Garmin 010-10052-05 Magnetic or Suction Mount Antenna: Electronics electronics 2 of 2 4.0 Antenna works OK, Garmin needs a better antenna plug November 11, 2006 ragamuffin Seattle, WA The antenna works well and obtains more satellites than the GPS units internal antenna. This easily solved the issue of poor reception when the GPS is inside of a car; however, the best accuracy I am able to obtain is 13 feet with this external antenna vs. the 9 feet using the GPS's internal antenna when in an open area. Garmin's external antenna connector plug does not attach very firmly and can disconnect easily when the units are moved around (on my GPS). I feel the antenna was worth purchasing B00005UK9M:magnetic_or_suction_mount_antenna:r._w._boone_"roaming_golfer" B00005UK9M Garmin 010-10052-05 Magnetic or Suction Mount Antenna: Electronics electronics 7 of 7 4.0 Magnetic or Suction Mount Antenna March 17, 2006 R. W. Boone "Roaming golfer" Coventry, RI I use the Suctions Mount Antenna because I remove from sight whenever I leave my car which is idea for my purposes. The antenna does greatly improve the reception and maintain a satilite lock. The only draw back is keeping it attached to windshield in cold weather untill the car warms up B0007ZYU9U:fine,_but_not_what_i_expected...:otto_burgess_"the_movie_guy" B0007ZYU9U Coby TF-DVD8500 8.5" TFT Portable DVD/CD/MP3 Player with Swivel Screen: Electronics electronics 1 of 2 4.0 fine, but not what i expected... August 9, 2006 otto burgess "the movie guy" miamisburg, ohio this unit has a/v in. my thought was that one could play video games on it, or view images from a camcorder/digital camera. however, all video sent to it gets distorted to fit the wide screen. so it does not allow me to do all i wanted. it is also a bit on the loud side. if your getting this for the car i suggest the coby 7050 unit. i got one of those also, and it works much better for the kids being a tablet form factor. it also does not make much noise B000023VUE:good_companion_with_d-link_router_di-704:y._ho_"yifong" B000023VUE D-Link DSS-5+ 5-Port 10/100 Switch, Desktop: Electronics electronics 3 of 4 5.0 Good companion with D-Link Router DI-704 May 15, 2001 Y. Ho "Yifong" Budd Lake, NJ United States This is a great swicth with low price. I use it together with D-Link DI-704 4-port internet sharing router to build my home network with 1 PC, two servers, one PowerMac and a laptop connected to cable modem ISP. Connecting via the swicth for internet sharing doesn't show any noticeable slow-response as compared to connecting via the router directly. It works well by itself as we as with D-Link DI-704 B0007Q3QPS:excellent_phones:g._bergeron_"gary" B0007Q3QPS Panasonic KX-TG5432M 5.8 GHz Platinum Cordless Phone with Answering System and Dual Handsets: Electronics electronics 1 of 1 5.0 Excellent Phones November 13, 2006 G. Bergeron "Gary" Baytown, Tx I would highly recommend this phone set. Easy to program and crystal clear reception. A definite 5 star B00065ANYW:excellent_card:james_g._driscoll B00065ANYW SanDisk ULTRA II HIGH PERFORMANCE 4GB (SDCFH-4096-901, Retail Package): Electronics electronics 4 of 5 5.0 Excellent Card April 23, 2006 James G. Driscoll Santa Clara, CA United States Works well with Canon 10D, 30D, and S40. Fairly fast write speed. And 4GB - pretty big (1600 JPGs in the 30D!) B00004TS2A:excellent_color:"splash_62" B00004TS2A Epson T009201 Stylus Photo Color Cartridge: Electronics electronics 4 of 4 5.0 Excellent Color March 5, 2003 "splash_62" Massachusetts For the Epson Photo 1270, the photo quality and color are excellent. I have printed digital photos that people cannot believe come from an inkjet printer B000069K98:easy_to_be_up_&_running:linda_k._trier B000069K98 D-Link DI-604 Cable/DSL Router, 4-Port Switch: Electronics electronics 5.0 Easy to be up & running November 4, 2006 Linda K. Trier This product was very easy to set-up. Hooked up 4 computers and had all up and running in no time. Been running 3 months with NO problems what so ever. Would highly recommend B00002MZ8M:student_acoustic_guitar:bharanidharan_natarajan B00002MZ8M First Act Discovery FG130 Student Acoustic Guitar: Electronics electronics 0 of 2 5.0 student acoustic guitar March 20, 2006 Bharanidharan Natarajan I am amazed by the quality of the guitar. The product is extremely good. The service by amazon was ultimate. Thanks a lot Amazon B0000ACKR5:better_than_most:s._ettinger B0000ACKR5 Belkin Leather Flip Case For iPaq PDAs: Electronics electronics 4 of 4 4.0 better than most January 27, 2004 S. Ettinger Boulder, CO United States Since there are very few cases that fit iPAQ PDAs, I recommend you get this one. Depending on type of your iPAQ (1900 series vs 3000 series), you might have varying degrees of comfort trying to shove your PDA into the case. Once you're done, however, it's very easy to use and carry. It comes with a belt clip that you may or may not use. The case itself is slim enough to fit snugly in your pocket, unlike so many other cases. The obvious disadvantage is that if you drop it on a hard surface, this case won't provide much in a way of side protection (klutzes be warned). The leather feels surprisingly good, almost a lambskin kind of quality. The credit card space is not very useful, but you can shove a couple of business cards in there. A solid 4 stars until anything better becomes available B00006L4XU:awesome_accessory:"vc_george06" B00006L4XU Targus PA215U Retractable Flat FireWire Cable: Electronics electronics 2 of 2 5.0 Awesome Accessory July 29, 2002 "vc_george06" Texas This is the perfect product for someone who travels with portable computers. You don't have to tote around long phone cords it retracts with no jamming! Excellent travel accessory B00079PNU6:the_sound_of_silence:cherif_elassar B00079PNU6 Sennheiser PXC 300 Noise Cancelling Headphones: Electronics electronics 4 of 9 5.0 The Sound of Silence November 4, 2006 Cherif Elassar Works exactly as advertised - I travel a lot and I can finally enjoy those long travel hours in planes calmly. Worth the "relatively" high price tag B0001F22PA:satisfied_customer:bud B0001F22PA Belkin F8V3080 TuneCast II Mobile FM Transmitter: Electronics electronics 1 of 1 4.0 Satisfied customer November 12, 2006 Bud Illinois Unit's range shorter than expected, but I feel that I got what I wanted, and paid for. Shipping and delivery were great B000BI2180:excellent_organizer!!:d._griblin B000BI2180 Palm Z22 Handheld: Electronics electronics 4 of 4 5.0 Excellent organizer!! November 13, 2006 D. Griblin Kansas I was looking for a very basic palm that would become my calendar and contact list and this is perfect for both!! It's very easy to learn and enter stuff. I'm a first time PDA owner and this is an excellent product! B00005V8Q8:free_upgrades_at_garmin_web_site:j B00005V8Q8 Garmin MapSource CD ROM (Americas BlueChart): Electronics electronics 12 of 16 5.0 free upgrades at Garmin web site November 12, 2005 J If you ORIGINALLY & NEWLY unlocked a NEW locked MapSource CD-ROM/DVD-ROM product ON or AFTER the release date of an update for that same product, you are eligible to unlock on that specific update what you unlocked on the original for no charge. In other words, you can update to the latest data for free! visit the garmin web site for more inf B0007WTHLO:the_isolation_is_great:douglas_r._dickeson_"mooseboy" B0007WTHLO Etymotic Research ER6iC Isolator Earphones (White): Electronics electronics 2 of 2 4.0 The isolation is great November 9, 2006 Douglas R. Dickeson "Mooseboy" Lincoln, NE USA If you're looking for isolation from ambient noise, these are great. I use them as In Ear Monitors for my onstage use (rock band), and if I use the foam inserts, I can stand right in front of the horn section and not get my head knocked off. I've read some people complain that the bass response is not quite what they expected, but frankly it doesn't bother me a bit. The only thing that's awkward is removing them when they're fully inserted for a while. They're rather small, and getting hold of them can be a bit tricky. I'm using small bits of tape for "pull tabs", and it seems to work pretty well. Overall, I'm impressed with this product since it's affordable and does exactly what it's advertised to do B000B9TV8W:love_it:shelley_cadamy_"shelley" B000B9TV8W Apple MA183G/A Armband Blue for iPod Nano 1st Generation: Electronics electronics 1 of 1 4.0 Love it July 20, 2006 Shelley Cadamy "Shelley" Oklahoma City, OK United States I found this on clearance at another retailer (I guess not everyone likes pink), and it's fabulous. I thought it might be just for skinny-armed people, but not so! I've got plenty of room, it fits great, and it doesn't move. Still looking for a solution to keep the earbud cord out of the way, though. Makes mowing the lawn WAY more fun B0009VLF6S:how_to_deregister_phone:bernardo_zamora_"el_ber" B0009VLF6S Uniden TCX805 Accessory Handset For One- or Two-Line Systems (Silver/Black): Electronics electronics 5.0 How to deregister phone September 14, 2006 Bernardo Zamora "el_ber" USA The phone works great!. I have three of these and a base. The best phones I have had. The other phones I have are the TCX800 model (previous version), equally good. I had trouble deregistering one of the phones, as it has to be close to the original base (kept telling me out of range). I found out that pressing END and #, also deregisters B000AY5ZIS:simple_review...:jeff_in_georgia B000AY5ZIS Logitech Cordless Desktop MX 5000 Laser (967558-0403): Electronics electronics 2 of 2 5.0 Simple Review... September 7, 2006 Jeff in Georgia Georgia, USA I just use the keyboard like a business user. I don't use the media stuff. I really like the tactile feel of the keyboard and how it works. I like that it's not huge and doesn't have all those extra ridiculous buttons that I never use. The rechargeable mouse is handy as well. Prior to this, I had two Microsoft wireless combos in a row, and in both cases the mouse gradually began flaking out on me. I don't know if it's because it's Logitech or it's bluetooth, but the keyboard/mouse are as responsive as were they wired (after they "wake up"). B0000AI0OE:small,_inexpensive,_reliable:owen_mundy B0000AI0OE Tripp lite 150W POWER INVERTER 1 OUTLET ( PV150 ): Electronics electronics 5 of 5 5.0 Small, inexpensive, reliable October 4, 2005 Owen Mundy San Diego, CA I used the Tripp lite to charge my PowerBook and digital camera during a cross country trip to grad school. It worked great and I had no problems. The only thing I could have used was a second outlet B000056SPM:works_perfect_much_better_than_a_joystick:dprime B000056SPM CH Products Flight Sim Yoke USB ( 200-615 ): Electronics electronics 5.0 Works perfect much better than a joystick October 12, 2006 DPrime Texas Esactly what I was wanting. When you turn there is resistance (springs I think) and everything works great. If you use flight sims you need this product. Works awsome B0000V6YXQ:awesome_leather_case:n._tran_"sleepy_med_student" B0000V6YXQ HP Leather Belt Case for iPAQ H1900 & H2200: Electronics electronics 1 of 1 5.0 awesome leather case August 30, 2005 N. Tran "sleepy med student" Chicago, IL nicely designed leather case w/ belt clip. i bought this for my hp hx2415. pockets good for SD memory cards. belt clip hooks very tightly to belt, so you don't have to worry about dropping pda. B0000V6YXQ:excelente_producto:miguel_kingsley B0000V6YXQ HP Leather Belt Case for iPAQ H1900 & H2200: Electronics electronics 1 of 2 5.0 Excelente producto August 18, 2005 Miguel Kingsley Este estuche lo compr para mi iPaq hx2415 y es muy cmodo de llevar porque no es grande y adems el equipo se mantiene seguro por el diseo que tiene B0007QCT0G:excellent_quality_and_design:pravin_k._pant_"pravin_pant" B0007QCT0G MAXXUM from SwissGear by Wenger Computer Backpack Red: Electronics electronics 1 of 1 5.0 Excellent quality and design November 7, 2006 Pravin K. Pant "Pravin Pant" Jamaica Plain, MA This backpack is ideal for carrying my huge science textbooks as well as keeping my MacBook safe. Its many pockets and nooks are ideal for carrying and organizing just about everything I need. As a chronically disorganized person, the bag helps me maintain some sense of organization and order in my belongings. The strap is nicely padded and it's elastic, so shocks are well absorbed. A nice touch is a zippered 'cavity' at the top, which is an ideal place to store a laptop charger. The build quality seems excellent so far - it looks to be a very durable product. I've always had good luck with Wenger products in the past. The best part about this backpack is that it doesn't scream 'There's a computer in here!'. B0007QCT0G:versatile_backback,_good_protection,_excellent_capacity:matthew_spewak B0007QCT0G MAXXUM from SwissGear by Wenger Computer Backpack Red: Electronics electronics 4.0 Versatile Backback, good protection, excellent capacity October 31, 2006 Matthew Spewak Great all around backpack for lugging laptop and books to school. It has a fairly large capacity but it also has tension straps so you can compact it. One of the best features is the open compartment which is perfect for gym shoes or clothes B000F49ZHU:good_quality_phones:nora B000F49ZHU Panasonic KX-TG5623B Black 5.8 GHz FHSS GigaRange Digital Cordless Telephone with Three Handsets: Electronics electronics 2 of 2 4.0 Good quality phones November 6, 2006 Nora California Great sound quality; great signal quality. I can hear everyone well, and the people on the other end of the call can also hear me well. The main charging station is about 40 feet away at the opposite end of the house from my farthest charger, with a couple walls in between, and I have no problems with signal. The handsets are smaller than I expected, but that's actually a bonus since I hadn't bought a new phone in a while and thought my old handset was too big and clunky. The handsets are about 6 inches long not including the antenna part, 1 and 7/8 inches at the widest point by the display, and 1 and 1/8 inches thick at the thickest point. Doesn't interfere with my wireless internet or any of my other electronics. I've used the phone while sitting next to my laptop, while both I and the chargers were next to TV and stereos, and with my cell phone going at the same time - no interference. The speakerphone part isn't that great - the person on the other end can hear other sounds in the room, plus they say it sounds like I'm speaking from a great distance away. But I've never had a phone with a good speakerphone, so wasn't expecting that to work anyway. Would have been great if they'd included a headset that goes with it since the handsets do have headset jacks. I love the extra handsets that only need to be plugged into a power outlet - solved my lack of working jacks problem!! The display lights up when it rings and when you press any of the keys. The keys are not backlit. The menus are fairly intuitive - if you've ever had a cell phone you can figure this out pretty easily. It's very easy to send phone numbers that you've programmed into one handset to all the other handsets or only to a specific handset. When I first hooked everything up, the phones got no dial tone, but the problem was with the phone cord that plugs into the phone jack in the wall. For some reason, the cord they provided didn't work, so when I swapped it out with the cord I had, all the phones worked fine. I'd buy these again and recommend to others to buy B0000A1GOF:no_complaints:michelle_collazo B0000A1GOF Logitech MX 310 Optical Mouse: Electronics electronics 2 of 2 5.0 No complaints May 18, 2006 Michelle Collazo CT & FL This is definitely a comfortable mouse if you don't have big hands. It is a pretty small mouse but it contours very nicely, even if you are left-handed. The extra buttons are handy for lazy people like me who don't like using the keyboard or clicking on buttons to go forward, backward, and switch between programs. The button in the middle though (the one that lets you switch programs) is out of the way. It takes just a bit more effort to use, meaning that you would have to remove your hand from the default contour to use that button. I actually hardly ever use that button. I can't live without the forward/backward buttons though. I find myself man-handling other mice thinking they too have those neat, little buttons. The mouse has a really good response to movement as well. I've used it for gaming as well, though I admit I'm not a hardcore gamer. I really recommend this mouse. I can't imagine spending more money and getting a remarkably better mouse than this one B0000A1GOF:all_around_xlnt_mouse!:peter_c_h B0000A1GOF Logitech MX 310 Optical Mouse: Electronics electronics 1 of 3 5.0 ALL AROUND XLNT MOUSE! March 1, 2006 Peter C H SoCal PROS: xlnt quality long cord usb or ps2 connection xlnt accuracy very comfortable feel easy access to side buttons great gaming mouse affordable CONS: none this is by far the best mouse i've ever owned bar none B00005TQ08:great_mouse:deborah_lampkins B00005TQ08 Microsoft Intellimouse Optical Mouse: Electronics electronics 5.0 Great mouse November 9, 2006 Deborah Lampkins Royal Oak MI I love it. You can switch back and forth from left hand to right hand and it was a great price B0002HS1A2:great_bang_for_your_buck!:m._presto B0002HS1A2 Garmin GPS 18 Deluxe GPS Sensor with nRoute and City Select Navigation Software (USB Interface): Electronics electronics 2 of 2 5.0 Great bang for your buck! July 30, 2006 M. Presto This is an excellent product. If you drive a delivery vehicle or are in route sales this product is for you. I am in route sales and use my laptop every minute of the day. I have an extensive territory and found it difficult to find certain places. The Garmin GPS 18 plugs right into the USB port and is powered by the computer so no need for additional attachments. I'll admit "NROUTE" took a little getting used to (for example it has a list of all the streets and names of places so if it isnt on the list you're not going to find it) but once you figure out how it works its easy as pie. Instead of spelling Hoover Street you just type Hoover and it will give you a list of the possible locations. A great buy for only 100 bucks! If you use a laptop in your vehicle and are in need of GPS, dont spend $500 on a 2 inch screen unit when you can get an awesome GPS sensor for only $100 B000B63RIU:excellent_three_in_one_for_its_price_range:r._smith B000B63RIU HP Officejet 5610 All-in-One Printer, Copier, Scanner, Fax: Electronics electronics 9 of 10 5.0 Excellent three in one for its price range November 14, 2006 R. Smith Obviously, there are far better printers on the market. But if you're looking for a quality 3-in-one in the $100 to $150 range, this one seems to be at the top of the pack. There are nicer printers out there in this price range. However, you will be severely penalized when it comes to purchasing ink. Hewlett-Packard printers tend to be the most friendly when it comes to buying refilled cartridges or refilling your own cartridges. It prints fast, it prints well, and I enjoy the double-sided printing feature. This printer has been consistently rated by users as being accurate in its color prints, although I've done little color printing myself. The scans are not the greatest as they leave small artifacts at regular intervals when you zoom in in Photoshop. The artifact is a vertical line which bisects the picture and offsets each side by a few pixels. They're not really noticeable to the naked eye and you won't see them unless you're editing the picture and have blown it up considerably. Still, it's probably not the best for archiving your photos. (I expect there's a bur on the plastic gear that rolls down the rack & pinion) However, flaws are to be expected in this price range and the listed flaws of this printer are nominal. Given my research two months ago, and performance I've encountered after purchasing this printer, and the ease with which I was able to refill the ink cartridges; I'd say this is the best printer you can buy for $100,(as of Nov 2006) if you don't want to be extorted into paying exorbitant ink prices, for say, an Epson B0000C3GWV:good_product:robert_khachikyan B0000C3GWV JBL Duet PC Speakers (2-Speaker, Silver): Electronics electronics 5.0 good product March 12, 2006 Robert Khachikyan LA, CA, USA Since I've seen musicians use JBL speakers for their concerts, that gave me a trust in their product. With that, I became an owner to a desktop JBL pc cpeaker. This product has been satisfactory and by far I have no complaints from it B0000BVUZ2:perfect_for_the_frequent_traveler:michelle B0000BVUZ2 Targus PA206U Mini Retractable RJ-11 Cord (Plastic Casing): Electronics electronics 1 of 1 5.0 Perfect for the frequent traveler September 6, 2005 Michelle Madison, WI Note: This is a review of the Targus PA225U Retractable Phone & Ethernet Cord (Plastic Casing). It's the rectangular model, not the oval shaped one. I'm on the road 50-75% of the time for work and have used this on almost every trip. I initially bought it because I forgot my regular network cord while traveling and needed to buy something quickly. I like to be able to move around in the hotel room and use this cord along with a cheap little plastic cable joiner to connect it to the hotel internet connection so I can sit on the couch or bed while connected to the internet. I've experimented with a travel wireless router but keep coming back to the wired connection when the wireless connection has problems. I've used it for over a year and have never had any problems with the retraction B0000BVUZ2:must_have!:pamelars24 B0000BVUZ2 Targus PA206U Mini Retractable RJ-11 Cord (Plastic Casing): Electronics electronics 2 of 2 5.0 Must Have! July 16, 2004 pamelars24 Fairfax, VA United States This is wonderful for laptop users that travel or like to move your laptop around a lot. If I leave my laptop somewhere I hate having to worry about tripping over wires and wires everywhere just look bad. This is really small and compact! Perfect for traveling too. I've used it for about 8 months now and it hasnt had one problem...it still recoils well B0007ZFLYI:does_what_its_supposed_too_but...:aamina_masood_"am15" B0007ZFLYI Logitech 961400-0403 Quickcam for Notebooks Deluxe: Electronics electronics 5.0 Does what its supposed too but... November 8, 2006 Aamina Masood "am15" Frisco, TX United States I just got my quickcam and it was very easy to setup. I had some trouble focussing though since it is manual focus and the ring was stuck. However, with some nudging it finally loosened up and now the picture is crystal clear. It is so small and just excellent. Great work, Logitech B00006JHWA:canon's_best_value_for_photo_printing..._truly_amazing:d._m._hefner B00006JHWA Canon Photo Paper Plus, Glossy (7980A006, 8.5x11, 20 Sheets): Electronics electronics 2 of 2 5.0 CANON'S BEST VALUE FOR PHOTO PRINTING... TRULY AMAZING January 25, 2006 D. M. HEFNER WV I have the Canon MP500 printer and Canon Rebel XT camera - both capable of producing amazing results, but paper makes a HUUUUGE diference in photo printing. I have both the Canon Photo Plus Glossy and the Photo Pro papers. If you are looking to print out very impressive photos, then I would recommend getting the 8x10 Photo Plus Glossy - definitely nice enough to frame. And with Plus glossy, you're definitely saving $ instead of paying $$$ to have professional photos done at a professional or retail store. And I even scanned a professional photo that I had done last year with my MP500 and printed using Plus Glossy, and the print is significantly better than the original. Pros: Best Value Canon has to offer. Great, great prints, my favorite paper overall. As good as Pro, and less expensive. About 55 cents per page in a 30 page pack of Pro compared to 40 cents per page in a 20 page pack of Plus. Cons: None at all so far. have not seen if photos last over time B00006JHWA:best_paper_for_canon_printers:b._rutledge_"sjsdad" B00006JHWA Canon Photo Paper Plus, Glossy (7980A006, 8.5x11, 20 Sheets): Electronics electronics 17 of 18 5.0 Best paper for Canon printers February 23, 2004 B. Rutledge "sjsdad" Las Vegas, NV USA I tested my new Canon i960 with a variety of papers. Like most printers, the output is much better when using the manufacture's own paper (as opposed to the cheaper generic paper), but there is no need to buy the most expensive "Pro" paper as neither I nor my wife could discern ANY difference between the two. There may be a benifit to the "Pro" paper that cannot be seen (lasts longer?) but at almost twice the cost it is not worth it - this paper will produce the highest quality prints on your Canon printer (I think they look better than the ones I get from the photo lab) B00032Q1IK:does_its_job_well:kris_"kristen" B00032Q1IK Lexar Media Single-Slot USB 2.0 Multi-Card Reader (Model RW023-001): Electronics electronics 3 of 3 4.0 Does its job well April 12, 2006 Kris "Kristen" Sunrise, FL USA I've had this for at least 8 months now. We've used it with xD, sD, Memory Stick Pro, Pro Duo(with the adapter) and a few misc. cards that friends' cameras may be using. I've never had a problem getting cards in or out, nor any problems with reading the data on them. My only possible complaint is that the cap for the usb connector doesn't stay on as well as I'd like or have a place to store it while the device is in use. Short of that, I can't place a single complaint about the unit. It has been a well spent $20 B0007Q7MUI:holy_molly!!!:franklin_p._helton B0007Q7MUI Holux GM-270 - GPS receiver module: Electronics electronics 5 of 5 5.0 Holy Molly!!! September 11, 2005 Franklin P. Helton Fort Worth, TX This reciever is great! It even gets reception on 6 satelites inside my office building. I have played with many GPS units and have yet to see a reciever do that. This is a definte buy. It is extremely accurate also. I highly recomend it B0007Q7MUI:holux_gm-270_ultra:j._ryan B0007Q7MUI Holux GM-270 - GPS receiver module: Electronics electronics 11 of 11 4.0 Holux Gm-270 Ultra July 5, 2005 J. Ryan Illinois The GPS works in both my Dell Axim X5 and in my HP Compaq nc6000 with a compact flash adapter card. I have used it with MS Streets and Trips and ArcPad ================================================ FILE: nlp_class/electronics/unlabeled.review ================================================ [File too large to display: 13.9 MB] ================================================ FILE: nlp_class/extra_reading.txt ================================================ LEARNING THE NAIVE BAYES CLASSIFIER WITH OPTIMIZATION MODELS https://pdfs.semanticscholar.org/059c/36439a84c8d51443022352a94e2751c60d1c.pdf RANDOM FORESTS https://www.stat.berkeley.edu/~breiman/randomforest2001.pdf Explaining AdaBoost http://rob.schapire.net/papers/explaining-adaboost.pdf Understanding logistic regression analysis https://www.ncbi.nlm.nih.gov/pmc/articles/PMC3936971/ Indexing by Latent Semantic Analysis http://lsa.colorado.edu/papers/JASIS.lsi.90.pdf Language Modeling http://www.cs.columbia.edu/~mcollins/lm-spring2013.pdf Natural Language Processing with Python – Analyzing Text with the Natural Language Toolkit https://www.nltk.org/book/ NLTK Documentation https://media.readthedocs.org/pdf/nltk/latest/nltk.pdf ================================================ FILE: nlp_class/lsa.py ================================================ # Latent semantic analysis visualization for NLP class, which can be found at: # https://deeplearningcourses.com/c/data-science-natural-language-processing-in-python # https://www.udemy.com/data-science-natural-language-processing-in-python # Author: http://lazyprogrammer.me from __future__ import print_function, division from builtins import range # Note: you may need to update your version of future # sudo pip install -U future import nltk import numpy as np import matplotlib.pyplot as plt from nltk.stem import WordNetLemmatizer from sklearn.decomposition import TruncatedSVD wordnet_lemmatizer = WordNetLemmatizer() titles = [line.rstrip() for line in open('all_book_titles.txt')] # copy tokenizer from sentiment example stopwords = set(w.rstrip() for w in open('stopwords.txt')) # note: an alternative source of stopwords # from nltk.corpus import stopwords # stopwords.words('english') # add more stopwords specific to this problem stopwords = stopwords.union({ 'introduction', 'edition', 'series', 'application', 'approach', 'card', 'access', 'package', 'plus', 'etext', 'brief', 'vol', 'fundamental', 'guide', 'essential', 'printed', 'third', 'second', 'fourth', }) def my_tokenizer(s): s = s.lower() # downcase tokens = nltk.tokenize.word_tokenize(s) # split string into words (tokens) tokens = [t for t in tokens if len(t) > 2] # remove short words, they're probably not useful tokens = [wordnet_lemmatizer.lemmatize(t) for t in tokens] # put words into base form tokens = [t for t in tokens if t not in stopwords] # remove stopwords tokens = [t for t in tokens if not any(c.isdigit() for c in t)] # remove any digits, i.e. "3rd edition" return tokens # create a word-to-index map so that we can create our word-frequency vectors later # let's also save the tokenized versions so we don't have to tokenize again later word_index_map = {} current_index = 0 all_tokens = [] all_titles = [] index_word_map = [] error_count = 0 for title in titles: try: title = title.encode('ascii', 'ignore').decode('utf-8') # this will throw exception if bad characters all_titles.append(title) tokens = my_tokenizer(title) all_tokens.append(tokens) for token in tokens: if token not in word_index_map: word_index_map[token] = current_index current_index += 1 index_word_map.append(token) except Exception as e: print(e) print(title) error_count += 1 print("Number of errors parsing file:", error_count, "number of lines in file:", len(titles)) if error_count == len(titles): print("There is no data to do anything with! Quitting...") exit() # now let's create our input matrices - just indicator variables for this example - works better than proportions def tokens_to_vector(tokens): x = np.zeros(len(word_index_map)) for t in tokens: i = word_index_map[t] x[i] = 1 return x N = len(all_tokens) D = len(word_index_map) X = np.zeros((D, N)) # terms will go along rows, documents along columns i = 0 for tokens in all_tokens: X[:,i] = tokens_to_vector(tokens) i += 1 def main(): svd = TruncatedSVD() Z = svd.fit_transform(X) plt.scatter(Z[:,0], Z[:,1]) for i in range(D): plt.annotate(s=index_word_map[i], xy=(Z[i,0], Z[i,1])) plt.show() if __name__ == '__main__': main() ================================================ FILE: nlp_class/nb.py ================================================ # Naive Bayes spam detection for NLP class, which can be found at: # https://deeplearningcourses.com/c/data-science-natural-language-processing-in-python # https://www.udemy.com/data-science-natural-language-processing-in-python # dataset: https://archive.ics.uci.edu/ml/datasets/Spambase # Author: http://lazyprogrammer.me from __future__ import print_function, division from builtins import range # Note: you may need to update your version of future # sudo pip install -U future from sklearn.naive_bayes import MultinomialNB import pandas as pd import numpy as np # Note: technically multinomial NB is for "counts", but the documentation says # it will work for other types of "counts", like tf-idf, so it should # also work for our "word proportions" data = pd.read_csv('spambase.data').values # use pandas for convenience np.random.shuffle(data) # shuffle each row in-place, but preserve the row X = data[:,:48] Y = data[:,-1] # last 100 rows will be test Xtrain = X[:-100,] Ytrain = Y[:-100,] Xtest = X[-100:,] Ytest = Y[-100:,] model = MultinomialNB() model.fit(Xtrain, Ytrain) print("Classification rate for NB:", model.score(Xtest, Ytest)) ##### you can use ANY model! ##### from sklearn.ensemble import AdaBoostClassifier model = AdaBoostClassifier() model.fit(Xtrain, Ytrain) print("Classification rate for AdaBoost:", model.score(Xtest, Ytest)) ================================================ FILE: nlp_class/sentiment.py ================================================ # This code is for my NLP Udemy class, which can be found at: # https://deeplearningcourses.com/c/data-science-natural-language-processing-in-python # https://www.udemy.com/data-science-natural-language-processing-in-python # It is written in such a way that tells a story. # i.e. So you can follow a thought process of starting from a # simple idea, hitting an obstacle, overcoming it, etc. # i.e. It is not optimized for anything. # Author: http://lazyprogrammer.me from __future__ import print_function, division from future.utils import iteritems from builtins import range # Note: you may need to update your version of future # sudo pip install -U future import nltk import numpy as np from sklearn.utils import shuffle from nltk.stem import WordNetLemmatizer from sklearn.linear_model import LogisticRegression from bs4 import BeautifulSoup wordnet_lemmatizer = WordNetLemmatizer() # from http://www.lextek.com/manuals/onix/stopwords1.html stopwords = set(w.rstrip() for w in open('stopwords.txt')) # note: an alternative source of stopwords # from nltk.corpus import stopwords # stopwords.words('english') # load the reviews # data courtesy of http://www.cs.jhu.edu/~mdredze/datasets/sentiment/index2.html positive_reviews = BeautifulSoup(open('electronics/positive.review').read(), features="html5lib") positive_reviews = positive_reviews.findAll('review_text') negative_reviews = BeautifulSoup(open('electronics/negative.review').read(), features="html5lib") negative_reviews = negative_reviews.findAll('review_text') # first let's just try to tokenize the text using nltk's tokenizer # let's take the first review for example: # t = positive_reviews[0] # nltk.tokenize.word_tokenize(t.text) # # notice how it doesn't downcase, so It != it # not only that, but do we really want to include the word "it" anyway? # you can imagine it wouldn't be any more common in a positive review than a negative review # so it might only add noise to our model. # so let's create a function that does all this pre-processing for us def my_tokenizer(s): s = s.lower() # downcase tokens = nltk.tokenize.word_tokenize(s) # split string into words (tokens) tokens = [t for t in tokens if len(t) > 2] # remove short words, they're probably not useful tokens = [wordnet_lemmatizer.lemmatize(t) for t in tokens] # put words into base form tokens = [t for t in tokens if t not in stopwords] # remove stopwords return tokens # create a word-to-index map so that we can create our word-frequency vectors later # let's also save the tokenized versions so we don't have to tokenize again later word_index_map = {} current_index = 0 positive_tokenized = [] negative_tokenized = [] orig_reviews = [] for review in positive_reviews: orig_reviews.append(review.text) tokens = my_tokenizer(review.text) positive_tokenized.append(tokens) for token in tokens: if token not in word_index_map: word_index_map[token] = current_index current_index += 1 for review in negative_reviews: orig_reviews.append(review.text) tokens = my_tokenizer(review.text) negative_tokenized.append(tokens) for token in tokens: if token not in word_index_map: word_index_map[token] = current_index current_index += 1 print("len(word_index_map):", len(word_index_map)) # now let's create our input matrices def tokens_to_vector(tokens, label): x = np.zeros(len(word_index_map) + 1) # last element is for the label for t in tokens: i = word_index_map[t] x[i] += 1 x = x / x.sum() # normalize it before setting label x[-1] = label return x N = len(positive_tokenized) + len(negative_tokenized) # (N x D+1 matrix - keeping them together for now so we can shuffle more easily later data = np.zeros((N, len(word_index_map) + 1)) i = 0 for tokens in positive_tokenized: xy = tokens_to_vector(tokens, 1) data[i,:] = xy i += 1 for tokens in negative_tokenized: xy = tokens_to_vector(tokens, 0) data[i,:] = xy i += 1 # shuffle the data and create train/test splits # try it multiple times! orig_reviews, data = shuffle(orig_reviews, data) X = data[:,:-1] Y = data[:,-1] # last 100 rows will be test Xtrain = X[:-100,] Ytrain = Y[:-100,] Xtest = X[-100:,] Ytest = Y[-100:,] model = LogisticRegression() model.fit(Xtrain, Ytrain) print("Train accuracy:", model.score(Xtrain, Ytrain)) print("Test accuracy:", model.score(Xtest, Ytest)) # let's look at the weights for each word # try it with different threshold values! threshold = 0.5 for word, index in iteritems(word_index_map): weight = model.coef_[0][index] if weight > threshold or weight < -threshold: print(word, weight) # check misclassified examples preds = model.predict(X) P = model.predict_proba(X)[:,1] # p(y = 1 | x) # since there are many, just print the "most" wrong samples minP_whenYis1 = 1 maxP_whenYis0 = 0 wrong_positive_review = None wrong_negative_review = None wrong_positive_prediction = None wrong_negative_prediction = None for i in range(N): p = P[i] y = Y[i] if y == 1 and p < 0.5: if p < minP_whenYis1: wrong_positive_review = orig_reviews[i] wrong_positive_prediction = preds[i] minP_whenYis1 = p elif y == 0 and p > 0.5: if p > maxP_whenYis0: wrong_negative_review = orig_reviews[i] wrong_negative_prediction = preds[i] maxP_whenYis0 = p print("Most wrong positive review (prob = %s, pred = %s):" % (minP_whenYis1, wrong_positive_prediction)) print(wrong_positive_review) print("Most wrong negative review (prob = %s, pred = %s):" % (maxP_whenYis0, wrong_negative_prediction)) print(wrong_negative_review) ================================================ FILE: nlp_class/spam2.py ================================================ # https://deeplearningcourses.com/c/data-science-natural-language-processing-in-python # https://www.udemy.com/data-science-natural-language-processing-in-python # Author: http://lazyprogrammer.me from __future__ import print_function, division from future.utils import iteritems from builtins import range # Note: you may need to update your version of future # sudo pip install -U future import numpy as np import pandas as pd import matplotlib.pyplot as plt from sklearn.feature_extraction.text import TfidfVectorizer, CountVectorizer from sklearn.model_selection import train_test_split from sklearn.naive_bayes import MultinomialNB from sklearn.svm import SVC from wordcloud import WordCloud # data from: # https://www.kaggle.com/uciml/sms-spam-collection-dataset # file contains some invalid chars # depending on which version of pandas you have # an error may be thrown df = pd.read_csv('../large_files/spam.csv', encoding='ISO-8859-1') # drop unnecessary columns df = df.drop(["Unnamed: 2", "Unnamed: 3", "Unnamed: 4"], axis=1) # rename columns to something better df.columns = ['labels', 'data'] # create binary labels df['b_labels'] = df['labels'].map({'ham': 0, 'spam': 1}) Y = df['b_labels'].values # split up the data df_train, df_test, Ytrain, Ytest = train_test_split(df['data'], Y, test_size=0.33) # try multiple ways of calculating features tfidf = TfidfVectorizer(decode_error='ignore') Xtrain = tfidf.fit_transform(df_train) Xtest = tfidf.transform(df_test) # count_vectorizer = CountVectorizer(decode_error='ignore') # Xtrain = count_vectorizer.fit_transform(df_train) # Xtest = count_vectorizer.transform(df_test) # create the model, train it, print scores model = MultinomialNB() model.fit(Xtrain, Ytrain) print("train score:", model.score(Xtrain, Ytrain)) print("test score:", model.score(Xtest, Ytest)) # exit() # visualize the data def visualize(label): words = '' for msg in df[df['labels'] == label]['data']: msg = msg.lower() words += msg + ' ' wordcloud = WordCloud(width=600, height=400).generate(words) plt.imshow(wordcloud) plt.axis('off') plt.show() visualize('spam') visualize('ham') # see what we're getting wrong X = tfidf.transform(df['data']) df['predictions'] = model.predict(X) # things that should be spam sneaky_spam = df[(df['predictions'] == 0) & (df['b_labels'] == 1)]['data'] for msg in sneaky_spam: print(msg) # things that should not be spam not_actually_spam = df[(df['predictions'] == 1) & (df['b_labels'] == 0)]['data'] for msg in not_actually_spam: print(msg) ================================================ FILE: nlp_class/spambase.data ================================================ 0,0.64,0.64,0,0.32,0,0,0,0,0,0,0.64,0,0,0,0.32,0,1.29,1.93,0,0.96,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0.778,0,0,3.756,61,278,1 0.21,0.28,0.5,0,0.14,0.28,0.21,0.07,0,0.94,0.21,0.79,0.65,0.21,0.14,0.14,0.07,0.28,3.47,0,1.59,0,0.43,0.43,0,0,0,0,0,0,0,0,0,0,0,0,0.07,0,0,0,0,0,0,0,0,0,0,0,0,0.132,0,0.372,0.18,0.048,5.114,101,1028,1 0.06,0,0.71,0,1.23,0.19,0.19,0.12,0.64,0.25,0.38,0.45,0.12,0,1.75,0.06,0.06,1.03,1.36,0.32,0.51,0,1.16,0.06,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0.06,0,0,0.12,0,0.06,0.06,0,0,0.01,0.143,0,0.276,0.184,0.01,9.821,485,2259,1 0,0,0,0,0.63,0,0.31,0.63,0.31,0.63,0.31,0.31,0.31,0,0,0.31,0,0,3.18,0,0.31,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0.137,0,0.137,0,0,3.537,40,191,1 0,0,0,0,0.63,0,0.31,0.63,0.31,0.63,0.31,0.31,0.31,0,0,0.31,0,0,3.18,0,0.31,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0.135,0,0.135,0,0,3.537,40,191,1 0,0,0,0,1.85,0,0,1.85,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0.223,0,0,0,0,3,15,54,1 0,0,0,0,1.92,0,0,0,0,0.64,0.96,1.28,0,0,0,0.96,0,0.32,3.85,0,0.64,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0.054,0,0.164,0.054,0,1.671,4,112,1 0,0,0,0,1.88,0,0,1.88,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0.206,0,0,0,0,2.45,11,49,1 0.15,0,0.46,0,0.61,0,0.3,0,0.92,0.76,0.76,0.92,0,0,0,0,0,0.15,1.23,3.53,2,0,0,0.15,0,0,0,0,0,0,0,0,0.15,0,0,0,0,0,0,0,0,0,0.3,0,0,0,0,0,0,0.271,0,0.181,0.203,0.022,9.744,445,1257,1 0.06,0.12,0.77,0,0.19,0.32,0.38,0,0.06,0,0,0.64,0.25,0,0.12,0,0,0.12,1.67,0.06,0.71,0,0.19,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0.06,0,0,0,0,0.04,0.03,0,0.244,0.081,0,1.729,43,749,1 0,0,0,0,0,0,0.96,0,0,1.92,0.96,0,0,0,0,0,0,0.96,3.84,0,0.96,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0.96,0,0,0,0,0,0,0,0,0,0,0,0.462,0,0,1.312,6,21,1 0,0,0.25,0,0.38,0.25,0.25,0,0,0,0.12,0.12,0.12,0,0,0,0,0,1.16,0,0.77,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0.022,0.044,0,0.663,0,0,1.243,11,184,1 0,0.69,0.34,0,0.34,0,0,0,0,0,0,0.69,0,0,0,0.34,0,1.39,2.09,0,1.04,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0.056,0,0.786,0,0,3.728,61,261,1 0,0,0,0,0.9,0,0.9,0,0,0.9,0.9,0,0.9,0,0,0,0,0,2.72,0,0.9,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,2.083,7,25,1 0,0,1.42,0,0.71,0.35,0,0.35,0,0.71,0,0.35,0,0,0,5.35,0,0,3.21,0,2.85,0,0.35,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0.102,0,0.357,0,0,1.971,24,205,1 0,0.42,0.42,0,1.27,0,0.42,0,0,1.27,0,0,0,0,0,1.27,0,0,1.7,0.42,1.27,0,0,0.42,0,0,0,0,0,0,0,0,0,0,0,0,1.27,0,0,0.42,0,0,0,0,0,0,0,0,0,0.063,0,0.572,0.063,0,5.659,55,249,1 0,0,0,0,0.94,0,0,0,0,0,0,0,0,0,0,0,0,0,1.88,0,2.83,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0.428,0,0,4.652,31,107,1 0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,2.11,0,0.7,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1.975,0.37,0,35.461,95,461,1 0,0,0.55,0,1.11,0,0.18,0,0,0,0,0,0.92,0,0.18,0,0.37,0.37,3.15,0,0.92,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0.182,0,0.455,0,0,1.32,4,70,1 0,0.63,0,0,1.59,0.31,0,0,0.31,0,0,0.63,0,0,1.27,0.63,0.31,3.18,2.22,0,1.91,0,0.31,0.63,0,0,0,0.31,0,0,0,0,0,0,0,0,0,0,0,1.59,0,0,0,0,0,0,0,0,0,0.275,0,0.055,0.496,0,3.509,91,186,1 0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0.729,0,0.729,0,0,3.833,9,23,1 0.05,0.07,0.1,0,0.76,0.05,0.15,0.02,0.55,0,0.1,0.47,0.02,0,0,0,0.02,0.13,2.09,0.1,1.57,0,0.05,0,0,0,0,0,0,0,0,0,0,0,0,0.02,0.1,0,0,0,0,0,0,0,0,0,0,0,0.042,0.101,0.016,0.25,0.046,0.059,2.569,66,2259,1 0,0,0,0,2.94,0,0,0,0,0,0,0,0,0,0,2.94,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0.404,0.404,0,0.809,0,0,4.857,12,34,1 0,0,0,0,1.16,0,0,0,0,0,0,0.58,0,0,0,1.16,0,1.16,1.16,0,1.75,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0.133,0,0.667,0,0,1.131,5,69,1 0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1.44,0,0,0,0,0.196,0,0.392,0.196,0,5.466,22,82,1 0.05,0.07,0.1,0,0.76,0.05,0.15,0.02,0.55,0,0.1,0.47,0.02,0,0,0,0.02,0.13,2.09,0.1,1.57,0,0.05,0,0,0,0,0,0,0,0,0,0,0,0,0.02,0.1,0,0,0,0,0,0,0,0,0,0,0,0.042,0.101,0.016,0.25,0.046,0.059,2.565,66,2258,1 0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1.44,0,0,0,0,0.196,0,0.392,0.196,0,5.466,22,82,1 0,0,0,0,0,0,1.66,0,0,0,0,0,0,0,0,0,0,0,3.33,0,0,0,0,3.33,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0.368,0,0,2.611,12,47,1 0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,3.33,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0.352,0,0.352,0,0,4,11,36,1 0,0,0,0,0.65,0,0.65,0,0,0,0.65,0.65,0,0,0,0.65,1.3,0,1.3,5.22,1.3,0,0,0.65,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0.459,0,0.091,0,0,2.687,66,129,1 1.17,0,0,0,0,0,0,0,0,0,0,1.17,0,0,0,0,1.17,0,3.52,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1.17,0,0,0,0,0,0,0.886,0,0,1.966,10,59,1 0,0,3.03,0,0,0,0,0,0,0,0,0,0,0,0,3.03,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0.352,0,2.112,0,0,3.909,11,43,1 0,0,0,0,1.89,0.27,0,0,0,0,0,0.81,0,0,0,0.27,0,0,3.51,0,2.7,0,0,0.27,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0.045,0,0,0.091,0,1.39,11,89,1 0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,4.83,4.83,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0.302,0,1.7,5,17,1 0,0.68,0,0,0,0,0,0,0,0.68,1.36,0,0,0,0,0,0,0,2.04,0,0.68,0,0,0,0.68,0,0,0.68,0,0,1.36,0,0,0,0.68,0,1.36,0,0,0,0,0,0,0,0,0,0,0,0,0,0.185,0,0,0,3.826,30,264,1 0,0,2.56,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,5.12,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0.308,0,1.543,0,0,2.777,6,25,1 0,0,0,0,2.94,0,0,0,0,0,0,0,0,0,0,2.94,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0.436,0.436,0,0.873,0,0,4.142,12,29,1 0,0,0.48,0,1.46,0,0.48,0,0,0,0,0.97,0,0,0,0.48,0.97,0,2.43,0,2.43,0,0.48,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0.48,0,0,0,0,0.081,0,0.488,0.244,0,5.431,78,239,1 0,0.48,0.48,0,0.48,0,0,0,0,0,0,0.97,0,0,0,0.48,0,0.97,1.46,0,0.97,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0.08,0,0.963,0,0,3.1,61,186,1 0,0.41,1.66,0,0.41,0,0,0,0,0,0,0.41,0,0,0,0.41,0,0.83,2.08,0,1.25,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0.41,0,0,0,0,0.068,0,0.75,0,0,3.851,121,285,1 0.3,0,0,0,0.61,0.92,0,2.45,0,0,0,0.3,1.53,0,0,0,0,0.3,2.76,0,0.61,0,0.3,0.61,0,0,0,0,0,0,0,0,0,0,0,0,0.3,0,0,0,0,0,0,0,0,0,0,0,0,0.051,0,0.207,0.207,0,2.132,30,226,1 0,0,0,0,2.94,0,0,0,0,0,0,0,0,0,0,2.94,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0.335,0.335,0,0.671,0,0,4,12,28,1 0,0,0,0,2.94,0,0,0,0,0,0,0,0,0,0,2.94,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0.355,0.355,0,0.711,0,0,4,12,28,1 0,0,0.55,0,1.11,0,0.18,0,0,0,0,0.18,0.92,0,0.18,0,0.37,0.37,3.15,0,0.92,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0.182,0,0.426,0,0,1.283,4,68,1 0,0,0,0,0.52,0,0.26,0.52,0,0.26,0.26,0.52,0,0,0,0.26,1.56,0.26,1.82,2.08,0.26,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0.073,0,0.813,0.036,0.147,2.145,38,339,1 0.15,0.45,1.05,0,0.45,0,0,1.81,0.6,0.75,0,0.9,0.3,0,0.3,0,0,0,4.07,0,1.51,0,0,0.3,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0.15,0,0,0,0,0.25,0,1.318,0.068,0,5.301,130,774,1 0.18,0,0.18,0,1.57,0.36,0.06,0.06,0.06,0.12,0.06,0.54,0.3,0.06,0,0,0.72,0.06,4.54,0.24,1.09,0,0.84,0.06,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0.06,0,0.06,0,0,0,0.01,0.052,0,0.01,0.167,0,1.733,12,442,1 0.49,0,0.99,0,0,0.99,0,0,0,0.99,0.99,2.48,0.49,0,0,4.97,0.99,0,3.48,0,1.99,0,0.49,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0.34,0,0.17,0,0,1.468,8,94,1 0.46,0.3,0.46,0,0.05,0.12,0.05,0.28,0.43,0.74,0.25,0.97,0.56,1.23,0,0.25,0.43,0.02,3.22,0,1.46,0,1.05,0.36,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0.02,0,0,0,0,0.065,0,0.325,0.756,0.153,5.891,193,3040,1 0.46,0.46,0.26,0,0,0.33,0.06,0.33,0,1.12,0.39,0.73,0.79,0,0.26,0.26,0,0.26,3.51,0,0.66,0,0.19,0.26,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0.036,0.084,0,0.278,0.23,0.084,3.887,40,898,1 0,1.92,0,0,1.92,0,0,0,0,0,0,1.92,0,0,0,0,0,0,1.92,0,3.84,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,2.75,12,33,1 0.73,0.36,1.09,0,0,0.73,0.73,1.09,0.36,0.36,0,0.36,0,0,0,1.09,0.36,0.36,2.19,2.19,2.19,0,1.83,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0.11,0,0.498,0.332,0,3.254,30,179,1 0.06,0.12,0.77,0,0.19,0.32,0.38,0,0.06,0,0,0.64,0.25,0,0.12,0,0,0.12,1.67,0.06,0.7,0,0.19,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0.06,0,0,0,0,0.04,0.03,0,0.244,0.071,0,1.732,43,750,1 0,1.26,0,0,0,1.26,0,0,0,0,0,1.26,0,0,0,0,0,0,0,0,1.26,0,0,1.26,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1.26,0,0,0,0,0.198,0,0.198,0.596,0,3.833,17,69,1 0.73,0.36,0.73,0,0,0.73,0.73,1.1,0.36,0.36,0,0.36,0,0,0,1.1,0.36,0.36,2.2,2.2,2.2,0,1.83,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0.111,0,0.5,0.333,0,3.259,30,176,1 0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1.08,0,0,1.08,0,2.17,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1.478,0,0,2,30,106,1 0,0,0,0,0,0,1.04,0,0,0,0,1.04,0,0,0,0,1.04,0,3.66,0,2.09,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0.061,0.246,0,0.615,0.061,0.061,3.318,59,146,1 0,0,1.26,0,0,0,0,0,0,0,0,2.53,0,0,0,0,0,0,2.53,0,5.06,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,3.642,8,51,1 0,0.45,0.45,0,0.45,0,0,0,0,0,0,0.45,0,0,0,0.45,0,0.91,1.36,0,1.36,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1.501,0,0,2.777,61,200,1 0,0.42,1.68,0,0.42,0,0,0,0,0,0,0.42,0,0,0,0.42,0,0.84,2.1,0,1.68,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0.42,0,0,0,0,0.066,0,0.669,0,0,3.837,121,284,1 0,0.59,0,0,0,0,0.59,0,0,0.59,0,0.59,0,0,0,0,0,1.18,1.77,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0.257,0,0,0,0,8.586,66,249,1 0.23,0,0.47,0,0.23,0,0,0,0,0,0,0,0,0.23,0,0.23,0.23,0,7.1,0,1.89,0,0,0.23,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0.71,0,0,0,0.043,0.043,0,0.175,0,0,1.294,11,66,1 0,0,0.46,0,1.39,0,0.93,0.93,0,0,0.46,0.93,0,0,0,1.39,0,0.46,0.93,0,0.46,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0.46,0,0,0,0,0,0,0,0,0,0,0.069,0,0,0,0,0.069,1.442,8,75,1 0,0.34,0,0,0.68,0,0.68,0,0,0.34,0.34,0,0,0,0,0.34,0,1.36,3.42,0,2.73,0,0,0,0.34,0.34,0,0,0,0,0,0,0.34,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0.048,0.048,0,1.411,15,96,1 0.12,0.24,0.12,0,1.32,0.36,0,0.36,0,0,0.36,0.72,0,0,0,0,0,0,4.1,0,3.01,0,0.12,0,0,0,0,0,0,0,0,0,0.12,0,0,0,0.12,0,0,0.12,0,0,0,0,0,0,0,0,0,0.059,0,0.019,0.019,0,1.714,34,180,1 0.66,0,0.66,0,0,0,0,0,0,0.66,0,0,0,0,0,1.98,1.32,0,1.32,0,1.32,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,2.205,0,0,3.184,34,121,1 0,0.48,0.48,0,1.46,0,0.48,0,0,0.97,0.48,0,0,0,0,0.48,0,0,0.97,0.48,1.95,0,0,0.48,0,0,0,0,0,0,0,0,0,0,0,0,1.46,0,0,0.48,0,0,0,0,0,0,0,0,0,0.073,0,0.589,0.294,0,4.85,47,194,1 0,0,0,0,0,0,1.47,0,0,1.47,0,1.47,0,0,0,0,0,0,5.88,0,1.47,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0.5,0,0,1.214,3,17,1 0.3,0,0.61,0,0,0,0,0,0,0.92,0.3,0.92,0.3,0.3,0,2.15,0.61,0,5.53,0,1.23,0,0,0.3,0,0,0,0,0,0,0,0,0,0.3,0,0,0,0,0,0,0,0,0,0,0.3,0,0,0,0,0.1,0,1.053,0.351,0.25,3.884,66,303,1 0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1.96,0,0,0,0,0,0,0,0,0,0,0,0,0,1.96,0,0,0,0,0,0,0,0,0,0,0,0,0.201,0,0,0.1,0,4.548,59,141,1 0,0,0,0,1.26,0,2.53,1.26,1.26,1.26,1.26,1.26,0,0,0,0,5.06,0,2.53,1.26,3.79,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0.537,0,0,72.5,287,290,1 0,0.53,0.53,0,0.53,0,0,0,0,0,0,0.53,0,0,0,0.53,0,1.06,1.6,0,1.06,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0.087,0,0.877,0,0,3.4,61,187,1 0,0.44,0.89,0,0.44,0,0,0,0,0,0,0.44,0,0,0,0.44,0,0.89,2.24,0,1.34,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0.44,0,0,0,0,0.073,0,0.807,0,0,3.849,121,281,1 0,0.46,0.46,0,0.46,0.46,0.46,0,0,0,0.46,0.46,0,0,0,0.92,0,0.92,2.76,0,1.38,0,0.46,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0.46,0,0,0,0,0.46,0,0,0,0,0,0,0.298,0.223,0,2.156,13,110,1 0,0,0.48,0,1.44,0,0.48,0,0,0,0,0.96,0,0,0,0.48,0.96,0,2.41,0,2.41,0,0.48,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0.48,0,0,0,0,0.081,0,0.486,0.243,0,5.13,78,236,1 0,0.94,0.94,0,0,0,0,0,0,0.94,0,0,0,0,0,2.83,0,0,0.94,0,0.94,0,1.88,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1.366,0,0,26.5,245,318,1 0,0,1.77,0,0,0,0,0,0,0,0,0.59,0,0,0,0,0,0.59,4.14,0,1.18,0,0,0,0,0,0,0,0,0,0,0,0.59,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0.165,0,0.165,0.082,0,2.325,16,100,1 0.75,0.18,0.37,0,0.18,0.12,0,0.25,0.75,0.31,0.25,1.51,0.31,0.37,0,0.37,0.44,0.12,2.96,0.69,1.26,0,0.44,0.75,0,0,0,0,0,0,0,0,0,0,0,0,0.12,0,0,0.12,0,0,0.06,0,0,0,0,0,0,0.085,0.053,0.437,0.234,0.064,3.675,45,1066,1 0,0.41,0.2,0,1.67,0.2,0.2,0,0,1.04,0.2,0,0.2,0,0,0.83,0.2,0,2.09,0,0.62,0,0.62,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0.41,0.62,0,0.2,0,0,0,0.132,0,0,1.65,15,175,1 0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,5.26,5.26,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0.338,0,1.666,5,10,1 0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,5.55,0,1.11,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1.431,0,0,4.071,29,114,1 0,0,0.23,0,0,0,0.23,0,0,0.95,0,0.47,0,0.23,0,0.23,0.95,0,2.38,0,1.9,0,0,0.47,0,0,0,0,0,0,0,0,0,0,0,0.23,0.23,0,0,0,0,0,0,0,0,0,0,0,0,0.123,0,0.197,0,0.024,5.038,280,519,1 0,0.72,0.72,0,0,0,0,1.45,0,0,0.72,0,0,0,0,2.91,0,0.72,1.45,0,0,0,0.72,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0.123,0,0.495,0,0,1.525,8,61,1 0,0,1.28,0,1.28,1.28,0,0,0,0,0,0,0,0,0,1.28,0,0,2.56,0,1.28,0,1.28,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0.181,0,0.724,0,0,3.071,9,43,1 0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0.278,0,0.834,0,0,5.13,27,118,1 0,0.46,0.46,0,1.4,0,0.46,1.86,0,0.93,0.46,0,0,0,0,1.86,0,0,0.93,0.46,1.4,0,0,0.46,0,0,0,0,0,0,0,0,0,0,0,0,1.4,0,0,0.46,0,0,0,0,0,0,0,0,0,0.071,0,0.571,0.214,0,4.63,64,213,1 0,0,0.38,0,1.15,0.76,0,0,0,0,0,0.38,0.38,0,0,0.38,0,0.38,2.69,0,2.3,0,0,0.38,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0.122,0,0.061,0.061,0,1.775,20,158,1 0,0.79,0,0,0,0,0,0,0,0,0,0,0,0,0,0.79,1.58,1.58,3.96,0,1.58,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0.79,0,0,0,0,0.268,0,0.268,0,0,2.815,26,107,1 0.06,0.06,0.47,0,0.4,0,0,0,0.67,0.06,0,0.33,0.13,0,0,0.2,0,0,1.14,0.13,1.21,0,0,0.06,0,0,0,0,0.06,0,0,0,0,0,0,0,0,0,0,0,0,0.13,0,0,0.06,0,0,0,0.021,0.107,0,0.096,0.085,0.01,3.353,144,845,1 0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,9.09,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1.153,0,0,0,0,3.8,23,38,1 0,0.56,1.12,0,2.24,0,1.12,0,0,0,0,0.56,0.56,0,0,0.56,2.8,0,3.93,0,1.68,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0.25,0,1.083,0.333,0,4.974,140,194,1 0.47,0.31,0.47,0,0.05,0.13,0.05,0.26,0.44,0.76,0.26,0.97,0.58,1.26,0,0.26,0.44,0,3.25,0,1.5,0,1.05,0.34,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0.02,0,0,0,0.004,0.066,0,0.322,0.764,0.159,6.1,193,3038,1 0.59,0.44,0.29,0,0.14,0.03,0.03,0.14,0.56,0.67,0.29,0.67,0.59,1.23,0.03,0.22,0.44,0.07,3.43,0,1.53,0,0.59,0.63,0,0,0,0,0,0,0,0,0,0,0.03,0,0,0,0,0,0,0,0,0,0.07,0,0,0,0,0.075,0,0.613,0.532,0.137,7.3,763,2453,1 0.59,0.44,0.29,0,0.14,0.03,0.03,0.14,0.56,0.67,0.29,0.67,0.59,1.23,0.03,0.22,0.44,0.07,3.43,0,1.53,0,0.59,0.63,0,0,0,0,0,0,0,0,0,0,0.03,0,0,0,0,0,0,0,0,0,0.07,0,0,0,0,0.075,0,0.612,0.531,0.137,7.3,763,2453,1 0.46,0,0.46,0,0,0,0,0.46,0,0,0,1.38,0,0,2.31,0,0.46,0.46,2.77,0,2.31,0,1.38,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0.46,0,0,0,0,0,0,0,0,0,0.494,0,0.082,0.823,0,3.4,12,102,1 0,0,0.46,0,0,0,0.46,0,0,0,0.46,0,0,0,0,0,0,1.4,1.87,0,0,0.93,0.46,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0.46,0,0,0,0,0,0,0,0,0,2.676,32,91,1 0,0.35,0.7,0,0.35,0,0,0,0,0,0,0.7,0,0,0,1.05,0,0.7,2.11,0,1.4,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0.35,0,0,0,0,0.122,0,1.284,0,0,3.639,61,313,1 0,0.43,0.43,0,0.43,0,0,0,0,0,0,0.43,0,0,0,0.43,0,0.86,1.29,0,0.86,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0.147,0,0.736,0,0,2.81,61,222,1 0,0,0,0,0,0.6,0,0,0,1.21,0,0,0,0,0,0.6,0,0,1.21,0,0,0,0.6,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0.207,0.518,0.414,0.31,0,0,4.897,17,191,1 1.24,0.41,1.24,0,0,0,0,0,0,0,0,0.41,0,0,0,0.41,0,0.82,3.73,0,1.24,0,0,0.41,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0.41,0,0,0,0,0.065,0,0.461,0.527,0,3.166,19,114,1 0,0,0,0,4.25,0,0.7,0,0,0,0,0,0,0,0,2.83,0,0,4.96,0,1.41,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0.38,0,0,1.153,3,30,1 0,0,0.64,0,0,0.64,0,0,0,0,0,0,0,0,0,0.64,0,0,2.59,0,0,0,0.64,0,0,0,0,0,0,0,0,0,0,0,0,0,0.64,0,0,0,0,0,0,0,0,0,0,0,0.094,0.189,0.284,0.662,0,0,10.068,131,292,1 0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,3.33,0,0,0,0,0,0,0,0,0,0,0,0.305,0.611,0,1.529,0,0,5.5,22,66,1 0,0,0.64,0,0,0.64,0,0,0,0,0,0,0,0,0,0.64,0,0,2.59,0,0,0,0.64,0,0,0,0,0,0,0,0,0,0,0,0,0,0.64,0,0,0,0,0,0,0,0,0,0,0,0.094,0.189,0.284,0.662,0,0,10.068,131,292,1 0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,3.33,0,0,0,0,0,0,0,0,0,0,0,0.305,0.611,0,1.529,0,0,5.5,22,66,1 0,0,0.64,0,0,0.64,0,0,0,0,0,0,0,0,0,0.64,0,0,2.59,0,0,0,0.64,0,0,0,0,0,0,0,0,0,0,0,0,0,0.64,0,0,0,0,0,0,0,0,0,0,0,0.094,0.189,0.284,0.662,0,0,10.068,131,292,1 0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,3.33,0,0,0,0,0,0,0,0,0,0,0,0.305,0.611,0,1.529,0,0,5.5,22,66,1 0,0,0,0,0,0.79,0,0,0,0,0,0,0,0,0,0.79,0,0,1.58,0,0,0,0.79,0,0,0,0,0,0,0,0,0,0,0,0,0,0.79,0,0,0,0,0,0,0,0,0,0,0,0.115,0.231,0.347,0.462,0,0,5.793,22,168,1 0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,3.33,0,0,0,0,0,0,0,0,0,0,0,0.305,0.611,0,1.529,0,0,5.5,22,66,1 0,0,0,0,0,0,1.96,0,0,1.96,0,1.96,0,0,0,0,0,0,3.92,0,1.96,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,6.166,60,74,1 0,0,0,0,0,0,2.46,0,0,0,0,0,0,0,0,2.46,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1.907,0,0,1.285,7,36,1 0,0,0,0,0,0.79,0,0,0,0,0,0,0,0,0,0,0,0,2.38,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0.147,0,0,0,0,2.913,27,67,1 0,0,0.76,0,0.38,0,0.76,0,0,0,0,0.38,0,0,0,0,0,0.76,1.52,0,0.76,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0.177,0.059,3.836,79,211,1 0,0,0,0,0.95,0,0,0,0,0,0,0,0,0,0,0,0,0.47,0.95,0,0.95,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0.365,0,0,0,0,1.238,6,78,1 0.12,1.76,0.63,0,0.88,0,0.12,0.5,0.25,3.9,0.5,0.88,0.12,0,0,0.25,0.12,0,2.9,0.25,1.38,0,1.13,0.12,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0.12,0,0,0,0,0,0.019,0.379,0.159,0,0.119,0,4.155,38,507,1 0,0,1.02,0,0.51,0,0,0,0,0,0,0,0,0,0,0.51,0,0,1.53,0,1.53,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0.51,0,0,0,0,0.09,0,0.542,0,0,1.972,19,146,1 0.05,0.3,0.4,0,0.1,0.05,0,0.05,0.1,0,0,0.3,0.2,0,0.05,0,0,0.5,1.55,0.3,0.75,0,0.15,0.2,0.05,0.05,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0.05,0.05,0,0,0,0,0.045,0,0.054,0.118,0,2.37,96,588,1 0.05,0.3,0.4,0,0.1,0.05,0,0.05,0.1,0,0,0.3,0.2,0,0.05,0,0,0.5,1.55,0.3,0.75,0,0.15,0.2,0.05,0.05,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0.05,0.05,0,0,0,0,0.036,0,0.054,0.118,0,2.379,96,583,1 0,0,0,0,1.28,0,2.56,1.28,1.28,1.28,1.28,1.28,0,0,0,0,5.12,0,2.56,1.28,5.12,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0.542,0,0,102.666,304,308,1 0,0.55,0.55,0,2.23,0,1.11,0,0,0,0,0.55,0.55,0,0,0.55,2.79,0,3.91,0,1.67,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0.248,0,1.158,0.331,0,4.875,140,195,1 0.05,0.3,0.4,0,0.1,0.05,0,0.05,0.1,0,0,0.3,0.2,0,0.05,0,0,0.5,1.55,0.3,0.75,0,0.15,0.2,0.05,0.05,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0.05,0.05,0,0,0,0,0.045,0,0.054,0.118,0,2.37,96,588,1 0.05,0.3,0.4,0,0.1,0.05,0,0.05,0.1,0,0,0.3,0.2,0,0.05,0,0,0.5,1.55,0.3,0.75,0,0.15,0.2,0.05,0.05,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0.05,0.05,0,0,0,0,0.036,0,0.054,0.118,0,2.379,96,583,1 0.5,0.46,0.34,0,0.15,0.03,0,0.19,0.57,0.65,0.3,0.73,0.65,1.27,0.03,0.23,0.42,0,3.08,0,1.34,0,0.5,0.5,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0.03,0,0,0,0.011,0.077,0,0.335,1.281,0.125,7.202,595,2413,1 0,0.32,0.8,0,0.32,0,0.16,0,0,0.48,0.16,0,0.16,0,0.16,0.16,0,0.8,0.16,0.16,0.64,0,0,0,0,0,0,0.16,0,0,0,0,0.16,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0.271,0.024,0.049,5.709,149,982,1 0,0,0,0,0.92,0,0.3,0,0,0,0,0,0,0,0,0,0,0,0.3,0,0.61,0,0.61,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0.046,0,0,0.092,0.322,0,2.074,49,278,1 0.16,0,0.67,0,0.33,0.16,0.33,0.84,0.16,0.5,0.33,1.51,0,0,0,0,1.68,0.33,2.18,1.68,3.69,0,0,0.33,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0.16,0,0,0,0,0,0,0,0,0,0.19,0,1.194,0.054,0,5.567,101,657,1 0.5,0,0.5,0,1.51,0,0,0,0,0,0.5,1.01,0,0,0,0,0,0,4.04,0,3.03,0,0,0,0,0,0,0,0,0,0,0,0,0,0.5,0,0,0,0,0,0,0,0,0,1.01,0,0,0,0,0.089,0,0.089,0.178,0,3.416,53,164,1 0,0,0,0,0,0,0.59,0,0,0,0,1.19,0,0,0,0,0,0.59,4.76,0,1.19,0,0,0.59,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0.427,0,0,10,33,170,1 0,0,0,0,1.6,0,0.4,1.2,0,0.4,0,0.8,0,0,0,0,1.6,0.4,4,0,2,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0.706,0.212,0,1.838,13,114,1 0.41,0,0.41,0,0,0.41,0,0,0,0,0,2.07,0,0,0,0.41,0,0,7.05,0,2.48,0,0.82,0.41,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0.97,0.149,0,32.142,335,450,1 0,0,0.38,0,0.76,0,0.38,0,0,1.14,0,0,0,0,0,0.38,0.76,0,3.04,0,1.52,0,0.38,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1.14,0,0,0,0,0.299,0,0.598,0.179,0,4.523,78,285,1 0,0,0,0,0.4,0.4,0.4,0.4,0,0,0.4,0,0,0,0,0.4,0,0,4,0,2,0,0,0.4,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0.121,0,0,1.979,12,95,1 0,0,1.12,0,0.56,0,0,0,0,0.56,0,0,0,0,0,0.56,0,0,2.25,0,1.12,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0.56,0,0,0,0,0.101,0,0.606,0,0,2.36,19,144,1 0,0,0.8,0,1.44,0.16,0.16,0,0,0,0,0.64,0.8,0,0,0,0.16,0.16,1.6,0,0.47,0,0.64,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0.024,0,0.299,0.174,0,1.891,24,174,1 0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,2.53,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1.26,0,0,0,0,0.215,0,0.215,0.431,0,4,25,76,1 0,0.39,0.39,0,0.19,0,0,0.19,0,0,0.39,0.39,0,0,0,0.98,0.19,0.39,0.59,0,0.78,0,0.19,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0.19,0,0,0,0,0,0,0,0,0,0.128,0,0.16,0.16,0,2.128,31,730,1 0,0.39,0.39,0,0.19,0,0,0.19,0,0,0.39,0.39,0,0,0,0.98,0.19,0.39,0.59,0,0.78,0,0.19,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0.19,0,0,0,0,0,0,0,0,0,0.128,0,0.16,0.16,0,2.128,31,730,1 1,0,0.33,0,0.66,0.66,0,0,0,0,0,0.33,0.66,0,0,0.66,0.66,0,2.33,0,0.33,0,1.66,0.33,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0.06,0,0.12,0.541,0,5.428,21,304,1 0,0,0,0,1.49,0,0,0,0,0,0,0,0,0,0,2.98,0,1.49,0,0,1.49,0,0,0,1.49,1.49,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1.1,2,11,1 0,0,0,0,1.65,0,0,0,0.82,0,0,1.65,0,0,0,0.82,0,0,1.65,0,0.82,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0.415,0,0,0,0,1.769,11,69,1 1,0,0.33,0,0.66,0.66,0,0,0,0,0,0.33,0.66,0,0,0.66,0.66,0,2.33,0,0.33,0,1.66,0.33,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0.06,0,0.12,0.541,0,5.428,21,304,1 0,0,0,0,0,0,1.58,0,0,0,0,0,1.58,0,0,0,0,0,1.58,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0.558,0.279,0,3.272,23,36,1 0.5,0.46,0.34,0,0.15,0.03,0,0.19,0.57,0.65,0.3,0.73,0.65,1.27,0.03,0.23,0.42,0,3.08,0,1.34,0,0.5,0.5,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0.03,0,0,0,0.011,0.077,0,0.335,1.281,0.125,7.202,595,2413,1 0,0,0,0,0,0,1.58,0,0,0,0,0,1.58,0,0,0,0,0,1.58,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0.558,0.279,0,3.272,23,36,1 0,0,1.38,0,0,0,0,0,0,0,0,1.38,0,0,0,2.77,0,4.16,4.16,0,1.38,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0.715,0,0,1.181,2,13,1 0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,2.53,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1.26,0,0,0,0,0.215,0,0.215,0.431,0,4.277,27,77,1 1,0,0.33,0,0.66,0.66,0,0,0,0,0,0.33,0.66,0,0,0.66,0.66,0,2.33,0,0.33,0,1.66,0.33,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0.06,0,0.12,0.541,0,5.428,21,304,1 0,0.29,0.72,0,0.29,0,0.14,0,0,0.43,0.29,0,0.14,0,0.14,0.14,0,0.72,0.58,0.14,0.43,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0.14,0,0,0,0,0.14,0,0,0,0,0,0,0.865,0.023,0.046,5.133,132,1001,1 0.36,0,1.09,0,0,0,0,0,0,0,0,0.72,1.81,0,0,0,0,0,0.72,0,1.09,0,0,0.72,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0.063,0.126,0,0.063,0.126,0,2.562,35,123,1 0,0,0.27,0,0.81,0.81,0,2.98,0.54,0.81,0.27,0.54,0.27,0,0,0.81,1.63,0.27,2.17,1.35,2.44,0,0,0.27,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0.04,0,0.565,0.121,0,1.617,18,131,1 0.39,0,0.39,0,0,0.39,0,0,0,0,0,0.39,0.78,0,0,0,1.17,0.78,3.13,0,1.17,0,0,1.56,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0.261,0,0,1.461,19,114,1 0,0.56,0.56,0,2.25,0,1.12,0,0,0,0,0.56,0.56,0,0,0.56,2.82,0,3.95,0,1.69,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0.247,0,1.32,0.33,0,5.135,140,190,1 0.67,0,0.67,0,2.7,0,0,0,0,0,0,0,0,0,0,0,0.67,0.67,4.05,0,1.35,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0.2,0,0,1.064,3,33,1 0,0,0.62,0,0.62,0,0,0,0,0.62,0,0,0,0,0,0.62,0,0,1.24,0,0.62,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0.105,0,1.055,0,0,2.033,16,120,1 0,0,1.68,0,0.33,0,0,0,0,0.33,0,0,0,0,0,0.33,0,0,2.02,0,0.67,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0.33,0,0,0,0,0.06,0,0.484,0,0,1.796,19,203,1 0,0,0,0,0,0,0,0,0,0,0,0,0,4.76,0,4.76,0,0,4.76,0,2.38,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,2.375,11,38,1 0,0,0,0,1.31,0,1.31,1.31,1.31,1.31,0,0,0,0,0,0,1.31,0,1.31,1.31,3.94,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0.117,0.117,0,48.5,186,291,1 0,0,0,0,1.36,0.45,0.45,0,0,0,0,0,0.45,0,0,0.45,0.45,0.45,1.81,0,0.9,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0.135,0,0.135,0,0,5.571,46,117,1 0.42,0,0,0,0.85,0.85,0,0,0,0.42,0,2.13,0,0,0,0,1.7,0,0.85,0,0.85,0,0,0.42,0,0,0,0,0,0,0,0,0,0,0,0.42,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1.088,0,0,5.714,107,200,1 0,0,0,0,0.27,0,0,0,0,0.83,0,0,0,0,0,0,0,0,0.27,0,0.27,8.58,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0.092,0,0.185,0.232,7.313,99,607,1 0,0,0,0,0.43,0,0,0,0,0.65,0,0,0,0,0,0.43,0,0.21,0.21,0,0.43,6.75,0,0,0.21,0.21,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0.073,0.146,0.146,0.183,6.233,99,642,1 0.46,0,0.46,0,0,0,0,0.46,0,0,0,1.38,0,0,2.31,0,0.46,0.46,2.77,0,2.31,0,1.38,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0.46,0,0,0,0,0,0,0,0,0,0.49,0,0.081,0.816,0,3.4,12,102,1 0.14,0.14,0.29,0,0.29,0.29,0,0.29,0,0,0.29,0,0.14,0,0,0.87,0.29,0.43,3.66,0,1.31,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0.29,0,0,0,0,0,0,0,0.58,0,0,0,0,0.024,0,0.265,0,0,3.121,38,437,1 0,0.34,0.68,0,0,0,0.34,0,0,0.34,0,0,0,0,0.34,0.68,0,1.37,1.03,0,1.03,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0.094,0,0,0,0,3.131,13,119,1 0.46,0,0.46,0,0,0,0,0.46,0,0,0,1.38,0,0,2.31,0,0.46,0.46,2.77,0,2.31,0,1.38,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0.46,0,0,0,0,0,0,0,0,0,0.49,0,0.081,0.816,0,3.4,12,102,1 0.62,0,0.62,0,0,0,0.62,0,0,0,0,3.1,0,0,0,0,1.24,1.24,5.59,0,1.86,0,0,0.62,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0.31,0,0.517,0,0,3.363,22,111,1 0,0,0,0,2.1,0,1.05,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1.05,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,4.5,34,108,1 0,0.71,0.35,0,0.35,0,0,0,0,0,0,0.71,0,0,0,0.35,0,1.42,1.77,0,1.06,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0.058,0,0.7,0,0,3.768,61,260,1 0,0.3,0.61,0,0.3,0,0.15,0,0,0.45,0.15,0,0.15,0,0.15,0.15,0,0.76,0.15,0.15,0.76,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0.15,0,0,0,0,0,0,0,0,0,0,0,0.567,0.024,0.049,5.425,132,944,1 0,0,0,0,0,0,0.57,0,0,0.57,0,1.15,0.57,0,0,0,0,0.57,4.62,0,1.15,0,0,0.57,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0.518,0,0,10.117,33,172,1 0.52,0,2.38,0,0.26,0,0.26,0,0.52,0,0.26,0,0,0,0,0.79,0,0,1.32,0,1.05,0,0,0.52,0,0,0,0,0,0,0,0,0.26,0,0,0.26,0.26,0,0.52,0,0,0,0,0,0,0,0,0,0,0.656,0,0.31,0,0,5.549,71,566,1 0.17,0,0.08,0,0.42,0.08,0.08,0.42,0.08,0.08,0,0.6,0.17,0.17,0,0,0.17,0.08,1.2,0,3.17,0,0.34,0.08,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0.081,0.027,0.095,0.013,0,4.07,48,574,1 0,0,1,0,0.5,0,0,0,0,0.5,0,0,0,0,0,0.5,0,0,2.5,0,1.5,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0.5,0,0,0,0,0.357,0,0.892,0,0,2,19,172,1 0,0,0.54,0,0.54,0,0,0,0,0.54,0,0,0,0,0,0.54,0,0,1.64,0,0.54,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0.54,0,0,0,0,0.096,0,1.443,0,0,1.969,16,130,1 0,0,0,0,0,0.78,0,2.34,0,0.78,0.78,1.56,0,0,0,0,0.78,0,3.12,0,0.78,0,0.78,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0.889,0,0,2.13,15,49,1 0,0,0,0,0,0,0,2.04,0,0,1.02,0,0,0,0,0,0,0,4.08,0,1.02,0,1.02,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0.968,0,0,2.179,18,85,1 0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,18.18,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1.1,2,11,1 0.44,0,0,0,0.89,0,0,0,0,0.44,0,1.34,0,0,0,0.44,0,0,4.03,0,1.79,0,0,0.44,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0.44,0,0,0,0,0,0,0.944,0.145,0.072,2.451,28,152,1 0,0.66,0.66,0,0.33,0,0,0,0,0,0,0.66,0,0,0,0.33,0,1.32,2.64,0,1.32,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0.33,0,0,0,0,0.053,0,0.583,0,0,4.024,121,326,1 0,0,0,0,0,0,0,2.04,0,0,1.02,0,0,0,0,0,0,0,4.08,0,1.02,0,1.02,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0.969,0,0,2.179,18,85,1 0.34,0.25,0.25,0,0.08,0.43,0.08,0.25,0.08,1.46,0.34,0.51,0.94,0,0.17,0.08,0,0,3.01,0,0.77,0.17,0.34,0.34,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0.17,0,0,0,0,0.048,0,0.258,0.258,0.113,5.297,300,694,1 0.34,0.26,0.26,0,0.08,0.43,0.08,0.26,0.08,1.47,0.34,0.52,0.95,0,0.17,0.08,0,0,3.03,0,0.78,0,0.34,0.34,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0.17,0,0,0,0,0.048,0,0.259,0.259,0.064,3.335,62,537,1 0.43,0,0,0,0.87,0.87,0,0,0,0.43,0,2.18,0,0,0,0,1.74,0,0.87,0,0.87,0,0,0.43,0,0,0,0,0,0,0,0,0,0,0,0.43,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0.835,0,0,5.114,107,179,1 0.44,0,0,0,0.89,0,0,0,0,0.44,0,1.33,0,0,0,0.44,0,0,4.46,0,1.78,0,0,0.44,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0.44,0,0,0,0,0,0,1.083,0.144,0.072,2.428,28,153,1 0,0,0,0,0,0,0,0,0,0.36,0,0,0,0,0,0,0,0,2.53,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0.36,0,0,0,0,0.059,0,0.118,0,0,1.307,7,68,1 0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1.754,0,0,1,1,7,1 0,0.41,0.53,0,0.11,0.05,0,0.05,0.11,0,0,0.17,0.05,0,0,0.05,0,0.53,1.19,0.35,0.53,0,0.23,0.23,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0.064,0.01,0.032,0.14,0,1.364,14,303,1 0,0,0,0,6.25,0,3.12,0,0,0,0,3.12,0,3.12,0,3.12,0,0,6.25,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,9.428,60,66,1 2.12,0,0,0,0.53,0.53,0,0,0,1.59,0,1.59,0,0,0,1.59,0.53,0.53,6.91,0,1.59,0,0.53,0.53,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0.467,0,0.28,0.186,0,2.823,85,240,1 0,0,0,0,1.4,0.46,0.93,0,0,0,0,0,0.46,0,0,0.46,0.46,0,1.87,0,1.4,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0.135,0,0.135,0,0,4,46,96,1 0,1.12,0.56,0,0.56,0.56,1.12,1.12,0,0,0.56,2.25,0,0,0,2.25,0,1.12,2.25,0,2.82,0,0.56,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1.416,5,51,1 0,0,1.32,0,0.66,0,0,0,0,0,0,0.66,0,0,0,0,0.66,0,5.29,2.64,5.29,0,0,1.32,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0.66,0,0,0,0,0,0,0,0,0,0,0,0.83,0.069,0,3.215,43,164,1 0,0.8,0,0,0.8,0,0,0,0,0.8,0,0.8,0,0,0,1.61,0,0.8,0.8,0,2.41,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0.8,0,0,0,0,0,0,0,1.192,0,0,1.463,12,101,1 0,0.29,0.87,0,0.29,0,0.14,0,0,0.43,0.14,0,0.14,0,0.14,0.14,0,0.72,0.43,0.14,0.58,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0.14,0,0,0,0,0,0,0,0,0,0,0,0.585,0.046,0.046,5.02,132,979,1 0.17,0,0.08,0,0.42,0.08,0.08,0.42,0.08,0.08,0,0.6,0.17,0.17,0,0,0.17,0.08,1.2,0,3.17,0,0.34,0.08,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0.081,0.027,0.095,0.013,0,4.07,48,574,1 0,0,0,0,0,0,0,0,0,0.81,0,0.81,0,0,0,0,0,0,1.63,0,0.81,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0.147,0,0,0.294,0.147,0,2.333,11,63,1 0.54,0,1.08,0,0.54,0,1.08,0,0,0,0,0.54,0,0,0,0.54,0.54,0,4.32,0,1.08,0,1.62,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0.54,0,0,0,0,0,0,1.18,0.252,0,5.323,68,181,1 0.17,0,0.08,0,0.42,0.08,0.08,0.42,0.08,0.08,0,0.6,0.17,0.17,0,0,0.17,0.08,1.2,0,3.17,0,0.34,0.08,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0.081,0.027,0.108,0.013,0,4.07,48,574,1 0.53,0,1.07,0,0.53,0,1.07,0,0,0,0,0.53,0,0,0,0.53,0.53,0,4.3,0,1.07,0,1.61,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0.53,0,0,0,0,0,0,1.183,0.253,0,5.454,68,180,1 0.51,0.51,0,0,0,0,0.51,0,0,0.51,0,0,0,0,0.51,2.07,0,2.07,1.03,0,1.03,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0.135,0,0.067,0,0,2.676,17,91,1 0,0.54,0.54,0,2.19,0,1.09,0,0,0,0,0.54,0.54,0,0,0.54,3.29,0,3.84,0,1.64,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0.241,0,1.045,0.321,0,5.047,140,212,1 0,0,0.38,0,1.15,0,0,0,0,0.77,0,0.38,0,0,0,0.38,0.77,0,2.7,0,1.15,0,0.38,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1.15,0,0,0,0,0.061,0,0.985,0.184,0,3.923,78,255,1 0,0,0.39,0,1.17,0,0,0,0,0.78,0,0.39,0,0,0,0.39,0.78,0,2.73,0,1.17,0,0.39,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1.17,0,0,0,0,0.062,0,0.869,0.186,0,4,78,256,1 0.43,0,0.43,0,0.43,0,0.86,0,0,0,0,0.43,0,0,0,0,0.86,0.43,1.29,0,4.76,0,0,1.29,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0.14,0,0,0.915,0,0,3.891,47,144,1 0.45,0,0,0,0.68,0.45,0,0.45,0,0.22,0.22,0,1.6,0,0.45,0,0.91,1.83,1.83,0,0.68,0,1.6,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0.91,0,0,0,0,0,0,0,0,0,0.037,0,0.187,0.112,0,3.184,30,363,1 0,0,1.12,0,0.56,0,0,0,0,0.56,0,0,0,0,0,0.56,0,0,2.25,0,1.12,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0.56,0,0,0,0,0.102,0,0.615,0,0,2.403,19,137,1 0,0,0.55,0,0.55,0,0,0,0,0.55,0,0,0,0,0,0.55,0,0,1.67,0,0.55,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0.55,0,0,0,0,0.099,0,0.893,0,0,2.122,16,121,1 0,0,1.31,0,0.65,0,0,0,0,0,0,0.65,0,0,0,0,0,0,5.26,1.97,4.6,0,0,1.31,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0.65,0,0,0,0,0,0,0,0,0,0,0,0.816,0.068,0,3.173,43,165,1 0,0,0.61,0,0,0,0.61,0,0,0,0,0,0,0,0,0,1.23,1.85,2.46,0,1.23,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0.176,0,0.353,0,0,2.25,13,81,1 0.22,0.22,0.22,0,1.77,0.22,0.44,0.44,0.22,2.88,0,0.88,0.22,0,1.11,0.44,0,0.44,3.33,0,3.33,0,0.44,0.44,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0.44,0,0,0,0,0,0,0,0,0,0,0,0.563,0.15,0,86.65,1038,1733,1 0.34,0.42,0.25,0,0.08,0.42,0.08,0.25,0.08,1.63,0.34,0.51,0.94,0,0.17,0.08,0,0,3,0,0.94,0,0.34,0.34,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0.17,0,0,0,0,0.063,0,0.287,0.223,0.079,3.314,62,537,1 0,0,0,0,0,0,1.04,0,0,0,0,0,0,0,0,2.08,0,0,2.08,0,2.08,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,3.812,11,61,1 0,0,0,0,0,0,1.33,0,0,0,0,0,0,0,0,0,0,0,1.33,0,5.33,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0.202,1.417,0,29.125,223,233,1 0.54,0,1.08,0,0.54,0,1.08,0,0,0,0,0.54,0,0,0,0.54,0.54,0,4.32,0,1.08,0,1.62,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0.54,0,0,0,0,0,0,1.182,0.253,0,5.454,68,180,1 0,0,0,0,2.5,0,0,0,0,0,0,0.62,0,0,0,0,1.25,0,3.12,0,0.62,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0.08,0,0,2.111,18,57,1 0,0.9,0,0,0,0,0,0,0,0,0,0,0,0,0,0.9,0,1.81,3.63,0,2.72,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0.9,0,0,0,0,0,0,0.165,0.165,0,6.266,41,94,1 0.07,0.02,0.15,0,0.25,0.2,0,0.02,0.15,0,0,0.25,0.25,0.07,0,0.05,0.22,0,0.05,0,0.02,0,0.37,0.02,0,0,0,0,0.02,0,0,0,0,0,0,0.05,0.3,0.02,0,0.02,0,0,0.02,0,0.02,0,0,0,0.011,0.022,0,0,0.022,0,1.423,20,965,1 0.07,0.02,0.15,0,0.25,0.2,0,0.02,0.15,0,0,0.25,0.25,0.07,0,0.05,0.22,0,0.05,0,0.02,0,0.37,0.02,0,0,0,0,0.02,0,0,0,0,0,0,0.05,0.3,0.02,0,0.02,0,0,0.02,0,0.02,0,0,0,0.011,0.022,0,0,0.022,0,1.423,20,965,1 0.17,0.26,1.07,0,0.35,0.62,0.53,0.17,0.62,0.8,0.26,1.25,0.17,0,0.62,0.62,0.08,1.43,2.5,0.17,1.16,0,0.89,0.08,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0.08,0,0,0,0,0.08,0,0,0,0,0.066,0,0.212,0.185,0.013,6.815,583,1329,1 0,0,0.48,0,0.96,0,0,0,0.48,0,0,0,0,0,0,0.96,0.96,0,1.44,0,0.48,0,0.96,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0.48,0,0,0,0,0.133,0.066,0.468,0.267,0,3.315,61,242,1 0.46,0,0.46,0,0,0,0,0.46,0,0,0,1.38,0,0,2.31,0,0.46,0.46,2.77,0,2.31,0,1.38,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0.46,0,0,0,0,0,0,0,0,0,0.49,0,0.081,0.816,0,3.4,12,102,1 1.03,0,0.68,0,1.03,0,0.68,0,0,0.68,0,0.68,0,0,0.34,0.68,0,0,5.86,0,1.37,0,0.34,0.34,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0.34,0,0,0,0,0,0,0.366,0.061,0,1.895,12,91,1 0,0,0.18,0,0.18,0,0,0,0.54,0.36,0.36,0.9,0,0.36,0,0.72,0,0.18,2.7,0.18,0.72,0,0,0.54,0,0,0,0,0,0,0,0,0,0,0,0,0,0.36,0,0,0,0,0.18,0,0,0,0,0,0,0,0,0.633,0.063,0,9.043,363,841,1 0.26,0.26,0.52,0,0.39,0,0.39,0.13,0,0.26,0,0.78,0.26,0,0,1.57,0,0.26,2.61,0,1.57,0,0.13,0.39,0,0,0,0,0,0,0,0,0,0,0,0,0.13,0,0,0,0,0,0,0,0,0,0,0,0,0.129,0,0.779,0.021,0.021,2.689,49,476,1 0,0,0.32,0,0.65,0.65,0.32,0.32,0,0,0,0.32,0.32,0,0,0.32,0.32,0,2.28,0,3.25,0,0,0.32,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0.32,0,0,0,0,0.104,0,0,0.157,0.052,1.537,10,143,1 0,0,0.32,0,0.64,0.64,0.32,0.32,0,0,0,0.32,0.32,0,0,0.32,0.32,0,2.27,0,3.24,0,0,0.32,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0.32,0,0,0,0,0.106,0,0,0.159,0.053,1.537,10,143,1 0.19,0.19,0.39,0,0.19,0,0,0.59,0,0,0,0.39,0,0,0,0.59,0.39,1.37,4.52,0,3.14,0,0,0.19,0,0,0,0,0,0,0,0,0,0,0,0,0.19,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0.258,0.032,0,3.112,43,305,1 0.46,0,0,0,0.69,0.46,0,0.46,0,0.23,0.23,0,1.61,0,0.46,0,0.92,1.84,1.84,0,0.69,0,1.61,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0.92,0,0,0,0,0,0,0,0,0,0.037,0,0.188,0.112,0,3.105,30,354,1 0,0,0.71,0,0.71,0,0,0,0,0,0,0,0,0,0,0.71,0,0,1.42,0,0.71,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0.71,0,0,0,0,0.121,0,1.094,0,0,2.021,16,95,1 0,1.49,0,0,0,0,2.98,0,0,1.49,0,0,0,0,0,1.49,2.98,0,0,0,2.98,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0.171,0,0,0.171,0.171,13,140,156,1 0,0,0.16,0,0.33,0,0.16,0,0.5,0,0.16,0,0,0,0,0.5,0,1.5,0.66,0,0,0,0,0,0.33,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0.088,0,0.884,0.752,0.022,5.328,47,1087,1 0,0,1.1,0,0.55,0,0,0,0,0.55,0,0,0,0,0,0.55,0,0,2.2,0,1.1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0.55,0,0,0,0,0.097,0,0.683,0,0,2.338,19,145,1 0.16,0.32,0.65,0,0.32,0,0.16,0,0,0.49,0.16,0,0.16,0,0.16,0.16,0,0.81,0.32,0.16,0.98,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0.16,0,0,0,0,0,0,0,0,0,0,0,0.773,0.08,0.08,6.586,132,955,1 0,0,0.72,0,1.81,0,0,0,0,0.36,0,0.36,0,0,0,0,0.72,0,0.72,0,0.36,0,0,0,0,0,0,0,0,0,0,0,0.36,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0.053,0.265,0,0,0,0,1.543,13,88,1 0.84,0.84,0,0,0,0,1.69,0,0.84,0.84,0,0.84,0,0,0,10.16,0.84,0,0.84,0,2.54,0,0,0.84,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1.113,0.278,0.092,173,418,519,1 0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1.29,0,0.64,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1.103,3,32,1 0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1.29,0,0.64,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1.103,3,32,1 0.17,0,0.08,0,0.43,0.08,0.08,0.43,0.08,0.08,0,0.6,0.17,0.17,0,0,0.17,0.08,1.2,0,3.14,0,0.34,0.08,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0.081,0.027,0.088,0.013,0,4.16,48,1140,1 0,0.54,0.54,0,1.09,0.54,2.18,0,0,0.54,0,0.54,0,0,0,0,0,0.54,3.27,0,1.09,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0.54,0,0,0,0,0.157,0,0.471,0,0.078,15.08,147,377,1 0,0,0.42,0,0,0,0,0,0,0,0,0.85,0,0,0,0.85,0,0.85,4.7,0,0.85,5.55,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0.42,0,0,0,0,0,0,0,0,0,0,0,0,0.082,0,0,0.082,0.248,7.17,42,294,1 0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1.05,0,0,0,0,2.1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1.05,0,0,0,0,0,0,0,1.806,0,0,1.293,5,75,1 0,0,0.45,0,0.22,0.22,0,0,0.67,0.45,0.22,0.9,0,0,0,0.22,0,0,1.35,0,1.12,0.22,0.22,0.22,0,0,0,0,0,0,0,0,0,0,0,0.45,0,0,0,0,0,0,0,0,0,0,0,0,0.064,0.258,0,0.129,0.193,0,7.258,71,617,1 0,0.55,0.55,0,1.11,0.55,2.23,0,0,0.55,0,0.55,0,0,0,0,0,0.55,3.35,0,1.11,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0.55,0,0,0,0,0.159,0,0.479,0,0.079,16.739,147,385,1 0,0,0,0,0,1.12,0,2.24,0,0,1.12,1.12,0,0,0,0,0,0,4.49,0,0,0,1.12,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0.814,0,0,2.6,15,39,1 0,0,0.32,0,0.65,0.65,0.32,0.32,0,0,0,0.32,0.32,0,0,0.32,0.32,0,2.28,0,3.26,0,0,0.32,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0.32,0,0,0,0,0.105,0,0,0.158,0,1.494,10,139,1 0,0,1.43,0,0.71,0,0,0.71,0,0.71,0,0,0,0,0,0,2.87,2.87,1.43,0,3.59,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0.937,0,0,11.888,116,214,1 0,0.55,0.55,0,1.11,0.55,2.23,0,0,0.55,0,0.55,0,0,0,0,0,0.55,3.35,0,1.11,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0.55,0,0,0,0,0.159,0,0.479,0,0.079,16.739,147,385,1 0,0,0,0,0,0,1.07,0,0,0,0,0,0,0,0,2.15,0,0,0,0,2.15,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1.07,0,0,0,0,0,0,0,0,0,0,0,0.145,0.437,0.291,1.823,10,62,1 0,0,0.47,0,0.95,0,0,0,0.47,0,0,0,0,0,0,0.95,0.95,0,1.42,0,0.47,0,0.95,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0.47,0,0,0,0,0.131,0.065,0.461,0.263,0,3.493,61,255,1 0,0,0.15,0,0.31,0,0.15,0,0.63,0.15,0.15,0,0,0,0,1.11,0,1.27,0.79,0,0,0,0,0,0.95,0,0,0,0,0,0,0,0,0,0,0,0.31,0,0,0.15,0,0,0,0,0,0,0,0,0,0.088,0,0.862,0.707,0.022,5.423,51,1128,1 0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0.39,0,0.39,0,0,0,3.58,0.39,0,0,0,0.39,0,0,0,0,0,0,0,0,0,0,0,0,0,0.39,0.39,0,0,0,0,0,0,0,0,0,2.5,21,130,1 0,0,0,0,0,2.3,0,0,0,0,0,0.76,0.76,0,0,0,0,0,2.3,0,1.53,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0.829,0,2.766,0.829,0,5.607,25,157,1 0.08,0.16,0.32,0,1.38,0.16,0.08,0,0.24,0.08,0,1.3,0,0.08,0,0.48,0.08,0.08,3.5,0,0.73,0,0.08,0.16,0,0,0,0,0,0,0,0,0,0,0.08,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0.085,0.061,0.39,0.097,0.012,5.594,119,1561,1 0.48,0.2,0.55,0,0.27,0.2,0,0.27,0.27,0.97,0.41,1.04,0.13,0,0,1.11,0.69,0.06,2.37,0,1.04,0,0.06,0.69,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0.06,0,0,0,0,0.13,0,0,0,0,0.105,0,0.75,0.305,0,3.401,94,966,1 0.48,0.2,0.55,0,0.27,0.2,0,0.27,0.27,0.97,0.41,0.97,0.13,0,0,1.11,0.69,0.06,2.23,0,0.97,0,0.06,0.69,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0.06,0,0,0,0,0.13,0,0,0,0,0.105,0,0.75,0.305,0,3.401,94,966,1 0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,4,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,2.453,0,0,4.153,26,54,1 0,0,1.42,0,0.71,0,0,0.71,0,0.71,0,0,0,0,0,0,2.85,2.85,1.42,0,3.57,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0.931,0,0,12.055,117,217,1 0.8,0,0.8,0,1.6,0,0,0,0,0,0,0,0,0,0,0.8,0.8,0,1.6,0,2.4,0,0.8,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1.62,0.347,0,2.604,22,125,1 0,0,0.33,0,0.99,0.99,0.33,0.33,0,0,0,0.33,0.33,0,0,0.33,0.33,0,1.98,0,3.3,0,0,0.33,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0.33,0,0,0,0,0.108,0,0,0.162,0.054,2.195,50,202,1 0.07,0.37,0.81,0,0.51,0.29,0.07,0,0.07,0.37,0.07,1.48,0.14,0,0.07,0,0.14,0.44,3.55,0,1.85,0,0,0.14,0,0,0,0,0,0,0,0,0,0,0,0,0.14,0,0,0,0,0,0,0,0,0,0,0,0.049,0.069,0,0.159,0.159,0.009,3.456,44,802,1 0,0,0.33,0,0.99,0.99,0.33,0.33,0,0,0,0.33,0.33,0,0,0.33,0.33,0,1.98,0,3.3,0,0,0.33,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0.33,0,0,0,0,0.107,0,0,0.161,0.053,2.195,50,202,1 0,0,0.15,0,0.31,0,0.15,0,0.63,0.15,0.15,0,0,0,0,1.11,0,1.27,0.79,0,0,0,0,0,0.95,0,0,0,0,0,0,0,0,0,0,0,0.31,0,0,0.15,0,0,0,0,0,0,0,0,0,0.088,0,0.862,0.707,0.022,5.423,51,1128,1 0,0,0.62,0,1.24,0.62,0,0,0,0,0,0,0,0,0,0.31,0,0,2.48,0,0.93,0,0.31,0,0,0,0,0,0,0,0,0,0,0,0,0,0.31,0,0,0,0,0,0,0,0,0,0,0,0,0.086,0,0.043,0,0,1.741,14,155,1 0,0.34,0.69,0,0.34,0,0.17,0,0,0.51,0.17,0,0.17,0,0.17,0.17,0,0.86,0.17,0.17,0.86,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0.17,0,0,0,0,0,0,0,0,0,0,0,0.665,0.083,0.083,6.294,132,963,1 0,0.79,0,0,0,0,0,0,0,0,0,0,0,0,0,0.79,0.79,1.58,3.17,0,1.58,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0.79,0,0,0,0,0.271,0,0.271,0.135,0,3.257,26,114,1 0.14,0.14,0.29,0,0,0,0,0,1.17,0.29,0.14,0.58,0,0,0,0.14,0,0.14,2.35,0.14,0.88,0,0,0.44,0,0,0,0,0,0,0,0,0,0,0,0,0,0.29,0,0,0,0,0,0,0,0,0,0,0,0.204,0,0.204,0.127,0.102,2.962,73,400,1 0,0,0,0,1.11,0,0,0,0,0,0,0,0,0,0,0,0,0,2.22,0,3.33,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0.784,0,0,5.687,39,91,1 0,0,1,0,0,0.25,0,0.25,0,0,0,1.5,0.25,0,0,0.25,0.5,0,2.5,0,1.5,0,0,0.25,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0.203,0.203,0,2.866,34,129,1 0.58,0,0,0,2.33,0,1.16,0,0,0,0.58,0,0,0.58,0,0.58,0,0.58,2.92,1.16,2.92,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0.27,0,0.09,0.09,0,1.829,9,75,1 0.14,0.14,0.29,0,0,0,0,0,1.17,0.29,0.14,0.58,0,0,0,0.14,0,0.14,2.35,0.14,0.88,0,0,0.44,0,0,0,0,0,0,0,0,0,0,0,0,0,0.29,0,0,0,0,0,0,0,0,0,0,0,0.204,0,0.204,0.127,0.102,2.962,73,400,1 0.14,0.14,0.29,0,0,0,0,0,1.17,0.29,0.14,0.58,0,0,0,0.14,0,0.14,2.35,0.14,0.88,0,0,0.44,0,0,0,0,0,0,0,0,0,0,0,0,0,0.29,0,0,0,0,0,0,0,0,0,0,0,0.204,0,0.204,0.127,0.102,2.962,73,400,1 0,0,0.58,0,1.17,0,0.58,0,0,0,0,0.58,0,0,0,0.58,0,0,1.76,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0.829,0,0,2.529,8,86,1 0.25,0.25,0,0,0.75,0,0,0,0.25,0.75,0,1.51,0,1.26,0,0,0.5,0,3.29,0,1.01,0,0,0,0,0,0,0,0,0,0,0,0.25,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0.082,0,0.041,0.124,0.124,3.181,32,210,1 0,0,0,0,6.25,0,3.12,0,0,0,0,3.12,0,0,0,0,0,0,6.25,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,9.428,60,66,1 0,0.57,0.57,0,1.14,0.57,2.28,0,0,0.57,0,0.57,0,0,0,0,0,0.57,3.42,0,1.14,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0.57,0,0,0,0,0.081,0,0.487,0,0.081,16.217,147,373,1 0,0.17,0,0,0,0,0.17,0.52,0,0.17,0.35,0.52,0,0,0,0,0.17,0.7,0.88,0,0.7,1.93,0.35,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0.028,0.143,0.028,0.085,0.057,0.229,3.564,39,417,1 0,0,0.47,0,0.95,0,0,0,0.47,0,0,0,0,0,0,0.95,0.95,0,1.42,0,0.47,0,0.95,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0.47,0,0,0,0,0.133,0.066,0.401,0.267,0,3.459,61,256,1 0,0.57,0.57,0,1.14,0.57,2.28,0,0,0.57,0,0.57,0,0,0,0,0,0.57,3.42,0,1.14,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0.57,0,0,0,0,0.081,0,0.487,0,0.081,16.217,147,373,1 0,0.34,0.69,0,0.34,0,0.17,0,0,0.51,0.17,0,0.17,0,0.17,0.17,0,0.86,0.34,0.17,0.51,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0.315,0,0.026,6.364,149,942,1 0,0.57,0.57,0,1.14,0.57,2.28,0,0,0.57,0,0.57,0,0,0,0,0,0.57,3.42,0,1.14,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0.57,0,0,0,0,0.081,0,0.487,0,0.081,16.217,147,373,1 0,1.63,0,0,0,0,3.27,0,0,0,0,0,0,0,0,1.63,1.63,0,0,0,1.63,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1.63,0,0,0,0,0,0,0,0,0,0,0,0,0.36,0,0.54,0.18,0.18,14.818,140,163,1 0,0,0.14,0,0.29,0,0.14,0,0.58,0,0.29,0,0,0,0,0.87,0,1.46,0.58,0,0,0,0,0,0,0,0,0.43,0,0,0,0,0,0,0,0,0.29,0,0,0,0,0,0,0,0,0,0,0,0,0.08,0,0.764,0.784,0.02,4.979,45,1200,1 0,0.38,0.76,0,0.38,0,0.19,0,0,0.57,0.19,0,0.19,0,0.19,0.19,0,0.95,0.19,0.19,0.95,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0.19,0,0,0,0,0,0,0,0,0,0,0,0.632,0.03,0.09,6.789,132,869,1 0.4,0,0.6,0,0.2,0.6,0.2,0.6,0.2,0.2,0.2,1.2,0,0,0,0.4,1.61,0.4,2.21,1.81,2.62,0,0.2,0.6,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0.096,0,1.453,0.129,0,3.946,64,513,1 0,0,0,0,0,0,0,0,0.91,0,0,0,0,0,0,0,0,0,0.91,0,2.75,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0.132,0,0.531,0,0,2.9,28,87,1 0,0,0.15,0,0.3,0,0.15,0,0.61,0,0.3,0,0,0,0,0.92,0,1.53,0.61,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0.3,0,0,0,0,0,0,0,0,0,0,0,0,0.083,0,0.732,0.753,0.02,5.058,45,1128,1 0,0.52,0.52,0,0.52,0,0,0,0,0,0,0,0,0,0,0.52,0,0,1.56,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0.192,0,0.867,0,0,2.22,20,131,1 0,0,0.85,0,0.42,0,0,0,0,0,0,0,0,0,0,0.42,0,0,2.14,0,1.28,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0.42,0,0,0,0,0.159,0,1.117,0,0,1.206,7,117,1 0.18,0,0.18,0,1.57,0.36,0.06,0.06,0.06,0.12,0.06,0.54,0.3,0.06,0,0,0.72,0.06,4.48,0.24,1.15,0,0.84,0.06,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0.06,0,0.06,0,0,0,0.01,0.052,0,0.01,0.167,0,1.733,12,442,1 0.1,0.1,0.73,0,0.2,0.1,0.2,0.62,0.1,0.31,0.31,1.04,0,0,0,0.1,1.14,0.31,2.4,0.93,2.92,0,0,0.2,0.1,0.1,0,0,0,0,0,0,0,0,0,0,0.1,0,0.1,0.1,0,0,0,0,0,0,0,0,0,0.163,0,0.785,0.065,0,4.064,92,817,1 0,0,0,0,0,0,5.4,0,0,0,0,0,0,0,0,5.4,0,0.9,1.8,0,0.9,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0.841,0.21,0,24.785,295,347,1 0.17,0.17,0.71,0,0.53,0.17,0.17,0.89,0.17,0.53,0.35,1.61,0,0,0,0,1.79,0,1.97,1.61,4.12,0,0,0.35,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0.17,0,0,0,0,0,0,0,0,0,0.115,0,1.158,0.057,0,5.163,63,599,1 0.08,0.17,0.34,0,1.46,0.17,0.08,0,0.25,0.08,0,1.37,0,0.08,0,0.51,0.08,0.08,3.43,0,0.77,0,0.08,0.17,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0.077,0.064,0.348,0.103,0.012,5.392,119,1456,1 0,0.46,0,0,1.15,0,0.23,0.23,0,0.46,0,0.69,0.23,0,0,0,0.69,0.69,2.76,0,1.84,0,0,0.23,0,0,0,0,0,0,0,0,0,0,0,1.15,0,0,0,0,0,0,0,0,0,0,0,0,0,0.036,0.036,0.841,0.036,0,1.862,52,285,1 0,0,0.39,0,0.78,0,0,0.06,0.06,0.19,0.13,0.26,0.13,0,0,0,0,0,0.32,0,0.06,0,0,0,0,0,0,0,0,0.06,0,0,0,0,0,0,0,0,0,0,0,0,0.06,0,0,0,0,0,0,0.032,0,0,0.032,0,1.206,15,240,1 0,0,0,0,0,0,0,1.05,0,0,0.52,1.05,0.52,0,0,1.05,0,0,3.7,1.05,1.05,0,1.58,0.52,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0.702,0.263,0,6.487,47,266,1 0,0,0.32,0,0.64,0.64,0.32,0.64,0,0,0,0.32,0.32,0,0,0.32,0.32,0,2.27,0,3.24,0,0,0.32,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0.64,0,0,0,0,0.105,0,0,0.157,0,1.494,10,139,1 0.54,0,0.54,0,1.63,0,0,0,0,0,0,0.54,0,0,0,0.54,0.54,0,2.17,0,5.97,0,0.54,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0.715,0.318,0,2.345,22,129,1 1.63,0,1.63,0,0,0,0,0,1.63,0,0,0,0,0,0,1.63,0,0,3.27,0,3.27,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0.759,0.253,0,2,16,36,1 0,1.32,0.56,0,0,0.94,0,0.18,0.37,0.75,0,2.07,0,0,0,0,0.37,0,2.45,0,0.94,0,0,0.18,0,0,0.18,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0.08,0,0.242,0.107,0,2.623,35,244,1 0.35,0,0.35,0,0.35,0.7,0.35,1.41,0,0,0.35,1.06,0,0,0,0.7,1.06,0,5.3,2.82,2.82,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0.35,0,0,0,0,0,0,0.411,0,0,2.917,60,213,1 0.34,1.03,0.34,0,1.03,0,2.41,0.34,0,1.72,2.06,2.06,0.68,0,0.34,0,0,3.44,4.13,0,2.06,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0.116,0,0,0,0,1.888,6,68,1 0,1.32,0.56,0,0,0.94,0,0.37,0.37,0.75,0,2.07,0,0,0,0,0.37,0,2.45,0,0.94,0,0,0.18,0,0,0.18,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0.08,0,0.295,0.107,0,2.542,34,239,1 0.64,0,0.64,0,1.28,0,0.64,0,0,0,0,0.64,0,0,0,0.64,0.64,0,1.28,0,3.2,0,0.64,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0.551,0.459,0,2.333,22,119,1 0,0,0.32,0,0.65,0.65,0.32,0.32,0,0,0,0.32,0.32,0,0,0.32,0.32,0,2.28,0,3.26,0,0,0.32,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0.32,0,0,0,0,0.106,0,0,0.159,0,1.494,10,139,1 0.64,0,0.64,0,1.28,0,0.64,0,0,0,0,0.64,0,0,0,0.64,0.64,0,1.28,0,2.56,0,0.64,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0.554,0.369,0,2.333,22,119,1 0,0,0.56,0,0,0.18,0,0,0,1.32,0,0.75,0.75,0.18,0,0.18,0,0,0.94,0,0,0,0.18,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0.14,0,0.07,0.07,0,2.616,23,191,1 0,0,0,0,0,0,0,0,0.91,0,0,0,0,0,0,0,0,0,0.91,0,2.75,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0.133,0,0.532,0,0,2.9,28,87,1 0,0,0,0,0,0,0,0,0,0,0,1.81,0,0,0,0,0,0,0,0,1.81,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0.309,0,0,1.333,11,56,1 0,0,0,0,1.29,0.43,0.43,0,0,0,0,0,0.43,0,0,0.43,0.43,0.43,1.72,0,0.86,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0.129,0,0.129,0,0,5.8,46,116,1 0,0,0.86,0,0.43,0,0,0,0,0,0,0,0,0,0,0.43,0,0,2.17,0,1.3,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0.43,0,0,0,0,0.161,0,1.133,0,0,1.2,6,114,1 0,0.68,0.34,0,0.34,0,0,0,0,0,0,0.68,0,0,0,0.34,0,1.37,1.72,0,1.03,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0.055,0,0.718,0,0,3.718,61,264,1 0,0,0.16,0,0.16,0,0.16,0,0.65,0.16,0.16,0,0,0,0,1.64,0,0.65,0.82,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0.16,0,0,0,0,0,0,0,0,0,0.066,0,0.906,0.663,0,5.289,52,1116,1 0.18,0,0.18,0,1.57,0.36,0.06,0.06,0.06,0.12,0.06,0.54,0.3,0.06,0,0,0.72,0.06,4.49,0.24,1.09,0,0.85,0.06,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0.06,0,0.06,0,0,0,0.01,0.052,0,0.01,0.167,0,1.74,12,442,1 0,0.11,0.23,0,0.58,0.34,0.11,0,0.34,0,0.23,0.92,0.46,0,0,0.46,0.23,0.34,0.58,0,0.58,0,0.11,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0.11,0,0,0,0,0,0.075,0.037,0,0.322,0.094,0.018,2.576,48,389,1 0,0,0,0,0,0,0,0,0,0,1.23,1.23,0,0,0,0,0,0,2.46,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1.284,0,0,1.357,5,19,1 0,0,0,0,0.91,0,0.91,0,0,0.91,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0.134,0,0.672,0.269,0,4.35,31,87,1 0,0,1.31,0,0,0,0,0,0,0,0,1.31,0,0,0,0,0,0,1.31,0,5.26,0,0,1.31,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0.199,0,4.818,25,53,1 0,1.31,0.56,0,0,0.93,0,0.18,0.37,0.75,0,2.06,0,0,0,0,0.37,0,2.44,0,0.93,0,0,0.18,0,0,0.18,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0.08,0,0.268,0.107,0,2.698,42,251,1 0,1.32,0.56,0,0,0.94,0,0.18,0.37,0.75,0,2.07,0,0,0,0,0.37,0,2.45,0,0.94,0,0,0.18,0,0,0.18,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0.08,0,0.241,0.107,0,2.623,35,244,1 0,0,0.32,0,0.65,0.65,0.32,0.32,0,0,0,0.32,0.32,0,0,0.32,0.32,0,2.28,0,3.25,0,0,0.32,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0.32,0,0,0,0,0.105,0,0,0.157,0,1.494,10,139,1 0,0,0,0,0,0,0,0.67,0,0.67,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1.34,0,0,0,0,0,0,0,0,0,0,0,0.17,0.511,0.085,0.511,0,0,4.617,27,217,1 0,0.62,1.24,0,0.31,0,0,0,0,0,0,0.62,0,0,0,0.31,0,1.24,2.49,0,1.24,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0.31,0,0,0,0,0.05,0,1.152,0,0,4.592,121,349,1 0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1.266,4,19,1 0,0,0,0,0,0,0,0.67,0,0.67,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1.34,0,0,0,0,0,0,0,0,0,0,0,0.17,0.511,0.085,0.511,0,0,4.617,27,217,1 0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1.266,4,19,1 0,0,0.17,0.52,0.17,0,0.17,0,0.69,0.17,0.17,0,0,0,0,1.74,0,0.69,1.04,0,0.17,0,0,0,0.17,0,0,0,0,0,0,0,0,0.17,0,0,0.34,0,0,0.17,0,0,0,0,0,0,0,0,0,0.072,0,0.754,0.681,0,4.74,52,967,1 0,1,1,0,2,0,1,0,0,0,0,0,0,0,0,0,2,3,2,0,4,0,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0.275,0.137,0,2.538,11,33,1 0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1.05,1.05,0,3.15,0,2.1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1.05,0,0,0,0,0.351,0,0.351,0.175,0,3.343,28,107,1 0,0,0.16,0.16,0.32,0,0.16,0,0.65,0.16,0.16,0,0,0,0,2.13,0,0.65,0.98,0,0,0,0,0,0.49,0,0,0,0,0,0,0,0,0,0,0.16,0.32,0,0,0.16,0,0,0,0,0,0,0,0,0,0.089,0,0.693,0.67,0,4.835,52,1030,1 0,0,1.53,0,0,0,0,0,0,0,1.53,0,0,0,0,0,0,0,3.07,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1.53,0,0,0,0,0,0,1.434,0,0,7.055,75,127,1 0,0,1.31,0,0,0,0,0,0,0,0,1.31,0,0,0,0,0,0,1.31,0,5.26,0,0,1.31,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0.201,0,4.5,25,54,1 0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1.28,0,0,3.84,0,3.84,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1.28,0,0,0,0,0,0,0.23,0.23,0,5.538,41,72,1 0,0,0.47,0,0,0,0.94,0,0,0,0,0.47,0,0,0,0,0.47,0,0.94,0,0.47,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0.47,0,0,0,0,0.072,0,0.217,0,0,1.48,11,77,1 0.25,0,0,0,0.51,0.51,0,0,0.25,0,0.25,0,0.25,0,0,0,0.25,0,2.81,0,0.25,0,0.25,0.76,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0.041,0,0.209,0.209,0,2.776,75,211,1 0,0,0.73,0,0.36,0,0,0,0,0,0,0.73,0,0,0,0.36,0.73,0,1.09,0,1.46,0.36,0.36,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0.36,0,0,0,0,0,0,0,0,0,0,0,0.604,0.181,0,3.787,58,356,1 0.64,0,0.64,0,1.93,0,0,0,0,0,0,1.29,0,0,0,1.29,0.64,0,1.93,0,2.58,0,0.64,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0.462,0.37,0,2.44,22,122,1 0,0,0,0,0,0,0,1.29,0,0.43,0,0,0,0,0,0.43,0,1.73,0.43,0,0.43,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0.43,0,0,0,0,0,0,0,0,0,0,0,0,0,0.124,0,0.31,0.062,0,1.477,8,65,1 0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1.28,0,0,3.84,0,3.84,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1.28,0,0,0,0,0,0,0.23,0.23,0,5.538,41,72,1 0,0,0,0,0,0.6,0.6,0,0,0,0.6,0,0,0,0,0,0,1.21,1.82,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0.095,0,0,0,0,1.583,11,38,1 0,0,0.32,0,0.65,0.65,0.32,0.32,0,0,0,0.32,0.32,0,0,0.32,0.32,0,2.28,0,3.25,0,0,0.32,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0.32,0,0,0,0,0.106,0,0,0.159,0,1.494,10,139,1 0,0,1.29,0,0,0,0,0,0,0,0,1.29,0,0,0,0,0,0,1.29,0,5.19,0,0,1.29,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0.198,0,4.23,25,55,1 0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1.28,0,0,3.84,0,3.84,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1.28,0,0,0,0,0,0,0.23,0.23,0,5.538,41,72,1 0.63,0,0.63,0,1.27,0,0.63,0,0,0,0,0.63,0,0,0,0.63,0.63,0,1.27,0,2.54,0,0.63,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0.1,0,0,0.501,0.3,0,2.458,22,118,1 0.65,0,0.65,0,1.3,0,0,0,0,0,0,0.65,0,0,0,1.3,0.65,0,1.96,0,2.61,0,0.65,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0.834,0.463,0,2.44,22,122,1 0.19,0.19,0.19,0.19,1.16,0,0,0,0.58,0.38,0,0,0,0,0,0,0,0,0.19,0.38,0.58,0,0,0,0.19,0,0,0.19,0,0,0,0,0,0.38,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0.07,0,0,1.121,0,1021.5,2042,2043,1 0,0,0,0,0,0,0,1.29,0,0.43,0,0,0,0,0,0.43,0,1.73,0.43,0,0.43,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0.43,0,0,0,0,0,0,0,0,0,0,0,0,0,0.124,0,0.31,0.062,0,1.477,8,65,1 0.08,0,0.08,0,0.16,0,0,0,0,0,0,0.23,0,0,0,0.08,0.23,0,0.4,0.16,0.23,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0.08,0,0,0,0,0,0,0.16,0,0,0,0,0,0.228,0,0.406,0.038,0,2.811,67,1254,1 0.64,0,0.64,0,1.93,0,0,0,0,0,0,1.29,0,0,0,1.29,0.64,0,1.93,0,2.58,0,0.64,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0.462,0.37,0,2.44,22,122,1 0,0,0,0,0,0,0,1.29,0,0.43,0,0,0,0,0,0.43,0,1.73,0.43,0,0.43,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0.43,0,0,0,0,0,0,0,0,0,0,0,0,0,0.124,0,0.31,0.062,0,1.477,8,65,1 0,0,0.73,0,0.36,0,0,0,0,0,0,0.73,0,0,0,0.36,0.73,0,1.09,0,1.46,0.36,0.36,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0.36,0,0,0,0,0,0,0,0,0,0,0,0.604,0.181,0,3.787,58,356,1 0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,2.06,0,0,0,0,0,0,0,1.03,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0.342,0,0,0,0,2.217,10,51,1 0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1.28,0,0,3.84,0,3.84,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1.28,0,0,0,0,0,0,0.23,0.23,0,5.538,41,72,1 0,0,0.32,0,0.65,0.65,0.32,0.32,0,0,0,0.32,0.32,0,0,0.32,0.32,0,2.28,0,3.25,0,0,0.32,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0.32,0,0,0,0,0.105,0,0,0.158,0,1.494,10,139,1 0.18,0,0.18,0,1.57,0.36,0.06,0.06,0.06,0.12,0.06,0.54,0.3,0.06,0,0,0.72,0.06,4.49,0.24,1.09,0,0.85,0.06,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0.06,0,0.06,0,0,0,0.01,0.052,0,0.01,0.167,0,1.736,12,441,1 0,0,1.31,0,0,0,0,0,0,0,0,1.31,0,0,0,0,0,0,1.31,0,5.26,0,0,1.31,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0.201,0,4.5,25,54,1 0,0,0,0,0,0,0.45,0.91,0.45,0.91,0,0,0,0,0,0,0.45,0.45,0.91,0,0.45,0,0.45,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0.254,0,0.063,0.127,0,4.735,46,161,1 0,0,0,0,0,0,1.16,0,0,0,0,0,0,0,0,4.65,2.32,0,3.48,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,1,21,1 0,0,0,0,0,0,1.25,0,0,0,0,0,0,0,0,6.25,0,0,3.75,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,1,19,1 0,0.02,0.05,0,0.02,0,0,0.05,0,0.35,0,0.02,0,0,0,0.05,0.1,0.38,0.07,0.2,0.17,0,0,0,0.02,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0.004,0,0.107,0.017,0.017,3.922,489,3271,1 0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,5,0,0,1,1,2,1 0.48,0,1.45,0,0.48,0,0,0,0,0,0,0,0,0,0,0.48,0,0,4.36,0,1.94,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0.48,0,0,0,0,0.09,0,2.443,0,0,1.227,8,81,1 0,0,0.71,0,0.23,0,0,0,0.23,0.23,0.23,1.9,0,0,0,0.23,0,0,3.81,0.23,1.19,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0.109,0,1.018,0.036,0,4.022,97,543,1 0,0,0.32,0,0.65,0.65,0.32,0.32,0,0,0,0.32,0.32,0,0,0.32,0.32,0,2.28,0,3.25,0,0,0.32,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0.32,0,0,0,0,0.105,0,0,0.158,0,1.494,10,139,1 0,0,0,0,7.69,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0.588,0,0,0,0,1,1,6,1 0,0,0.71,0,0.23,0,0,0,0.23,0.23,0.23,1.9,0,0,0,0.23,0,0,3.81,0.23,1.19,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0.109,0,1.018,0.036,0,4.022,97,543,1 0,0,0,0,0,0,1,0,0,0,0,1,0,0,0,0,0,0,5,0,2,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0.11,0,0,3.178,62,89,1 0.05,0,0.29,0,0.23,0.17,0.05,0,0,0,0.65,0.82,0,0,0,0.76,0.11,0.11,1.53,0.29,1.3,0,0.23,0.05,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0.009,0.129,0,0.102,0.259,0,1.493,8,660,1 0,0,0.32,0,0.64,0.64,0.32,0.32,0,0,0,0.32,0.32,0,0,0.32,0.32,0,2.27,0,3.24,0,0,0.32,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0.64,0,0,0,0,0.104,0,0,0.157,0,1.494,10,139,1 0,0,1.34,0,0.67,0,0,0,0,0,0,0,0,0,0,0,0,0.67,0.67,0,0.67,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0.67,0,0,0,0,0,0,0.332,0.11,0,2.315,12,132,1 0,0.02,0.05,0,0.02,0,0,0.05,0,0.35,0,0.02,0,0,0,0.05,0.1,0.38,0.07,0.2,0.17,0,0,0,0.02,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0.004,0,0.107,0.017,0.017,3.922,489,3271,1 0,0,1.35,0,0.67,0,0,0,0,0.67,0,0,0,0,0,0,0,0.67,0.67,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0.67,0,0,0,0,0,0,0.802,0.114,0,2.527,20,139,1 0.2,0.81,0.61,0,0,0,0,0,0.2,0,0,0.4,0,0,0,0.2,0,0,0.2,0,0.2,0,0,0.4,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0.831,0.338,0.03,1102.5,2204,2205,1 0,0,1.22,0,1.22,0,0,0,0,0,0,0,0,0,0,0.61,0,0.61,1.22,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0.61,0,0,0,0,0,0,0.517,0.103,0,2.966,28,178,1 0,0,0,0,1.48,0.74,1.48,0,0,0.74,0.74,0.74,0.74,0,0,0.74,0.74,0,2.22,0,3.7,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0.108,0,0,2.346,12,61,1 0,0,0,0,0.45,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0.076,0.153,0,0,3.317,11,136,1 0.35,0.46,0.31,0,0.15,0.03,0,0.35,0.58,0.66,0.31,0.7,0.62,1.28,0.03,0.23,0.42,0,3.12,0,1.36,0,0.46,0.46,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0.03,0,0,0,0.005,0.088,0,0.319,0.479,0.124,6.11,116,2218,1 0,0.35,0.7,0,0.7,0,0.35,0.35,0,0.35,0.7,0,0,0,0,0.7,0,0.35,4.25,0,1.77,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0.35,0,0,0,0,0,0,0,0,0,0,0,0,0,0.113,0,0.397,0,0,3.388,58,183,1 0,0,0,0,1.21,0,0,0,0,0,0,0,0,0,0,2.43,0,0,3.65,0,1.21,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,1,31,1 0,0,1.31,0,0,0,0,0,0,0,0,1.31,0,0,0,0,0,0,1.31,0,5.26,0,0,1.31,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0.199,0,4.818,25,53,1 0.6,0,0.36,0,1.44,0,0,0,0.24,1.32,0.72,2.52,0.6,0,0,0.6,0.24,0,4.44,0,1.8,0,0.72,0.96,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0.12,0,0,0,0,0.04,0,0.101,0.202,0,3.548,54,479,1 0,0,1.33,0,1.78,0.44,0,0.44,0,0,0,0,0,0,0,0,0,0,4.46,0.89,0.89,0,0.44,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0.44,0,0,0,0.078,0.078,0,0,0,0,1.541,5,37,1 0.08,0.08,0.76,0,0.85,1.02,0.25,0.17,0.59,0.08,0.17,0.59,0.17,0,2.22,0.25,0.08,0.94,1.62,0.17,0.42,0,0.85,0.08,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0.08,0,0,0.17,0.08,0.08,0.08,0,0,0,0.063,0,0.42,0.114,0.012,7.497,669,1402,1 0,0,0.46,0,0.46,0,0,0,0,0,0,0,0,0,0,0.46,0,0,2.8,0,0.93,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0.46,0,0,0,0,0.082,0,0.663,0,0,1.428,20,120,1 0,0,0.14,0,0.14,0,0.14,0,0.57,0.14,0.14,0,0,0,0,0.86,0,0.57,0.57,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0.06,0,0.826,0.745,0,5.456,72,1315,1 0.18,0,0.18,0,1.59,0.36,0,0.06,0.06,0.06,0.06,0.55,0.3,0.06,0,0,0.73,0,4.4,0.24,1.1,0,0.85,0.06,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0.06,0,0,0,0,0,0.01,0.052,0,0.01,0.169,0,1.748,12,444,1 0.18,0,0.18,0,1.59,0.36,0,0.06,0.06,0.06,0.06,0.55,0.3,0.06,0,0,0.73,0,4.4,0.24,1.1,0,0.85,0.06,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0.06,0,0,0,0,0,0.01,0.052,0,0.01,0.169,0,1.775,12,451,1 0.76,0.19,0.38,0,0.19,0.12,0,0.25,0.76,0.31,0.25,1.52,0.31,0.38,0,0.38,0.44,0.06,2.98,0.69,1.26,0,0.44,0.76,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0.12,0,0,0.06,0,0,0,0,0,0,0.085,0.053,0.429,0.236,0.064,3.664,45,1059,1 0.08,0.08,0.35,0,1.52,0.17,0.08,0,0.35,0.17,0,1.43,0,0.08,0,0.53,0.08,0,3.58,0,0.89,0,0.08,0.17,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0.054,0.068,0.369,0.109,0.027,4.911,119,1277,1 0.08,0,0.93,0,1.52,0.33,0,0.08,0.67,0,0.25,0.67,0.16,0,1.69,0.08,0,1.1,1.86,0.16,0.42,0,1.1,0.08,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0.16,0,0,0.16,0,0.08,0.08,0,0,0.012,0.101,0,0.356,0.101,0.012,11.32,669,1834,1 0,0,0.48,0,0.48,0.48,0.48,0,0,0.96,0,0,0,0,0,0,0.96,0,3.36,0,0.96,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0.163,0,0.163,0,0,1.696,17,95,1 0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0.578,0,0,0,0,3.8,15,19,1 0,0,0.59,0,0.59,0,0,0.59,0,0,0,1.19,0,0,2.38,0,0.59,0.59,2.97,0,2.97,0,1.78,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0.59,0,0,0,0,0,0,0,0,0,0.105,0,0.105,0.42,0,3.428,12,72,1 0.6,0,0,0,1.21,0,0.6,0,0,0,0,0.6,0,0,0,0,0,0.6,3.65,0,1.21,0,0,0.6,0,0,0,0,0,0,0,0,0,0,0,0,1.21,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0.101,0.304,0,3.217,30,74,1 0.76,0.19,0.38,0,0.19,0.12,0,0.25,0.76,0.31,0.25,1.52,0.31,0.38,0,0.38,0.44,0.06,2.98,0.69,1.26,0,0.44,0.76,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0.12,0,0,0.06,0,0,0,0,0,0,0.085,0.053,0.428,0.235,0.064,3.702,45,1070,1 0,0,0,0,0,0,0,0,0,0,0,0,0,2.06,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1.03,0,0,0,0,0,0,0,0,1.03,0,0,0,0,0.163,0,0.163,0.326,0,3.545,21,78,1 0,0,0.33,0,0.33,0,0.33,0.33,0,0,0,0.33,0,0,0,1.65,0,1.65,2.64,0,0.66,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0.161,0.537,0,0,2.517,9,141,1 0,0,0.67,0,0,0,0.67,2.02,0,0,0,0,0,0,0,0,0.67,0,3.37,0,1.35,0,0,0.67,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0.095,0,0.286,0,0,5.558,39,189,1 0.11,0.23,0.11,0,0.46,0.46,0,0.11,0.93,1.74,0.11,0.34,0.23,0.11,2.09,0,0.46,0,3.49,0,1.28,0,0.46,0.46,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0.11,0,0,0,0,0.34,0,0,0,0.019,0.172,0,0.23,0.134,0,4.281,144,655,1 0,0,0,0,1.55,0,0,0,0,0.31,0,0.31,0,0,0,0.31,0.62,0,2.79,0,0.62,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0.93,0,0,0,0,0.048,0,0,0,0,2.09,22,115,1 0,0,0,0,0.96,0,0.96,0,0,0,0.96,0,0,0,0,0,0,0,2.88,0,2.88,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0.123,0,0.616,0,0,1.181,3,13,1 1.05,0,0.7,0,1.05,0,0.7,0,0,0.35,0,0.7,0,0,0.35,0.7,0,0.35,5.96,0,1.4,0,0.35,0.35,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0.35,0,0,0,0,0,0,0.367,0.061,0,1.88,12,94,1 0,0,0.55,0,0.55,0,0,0,0,0,0,0,0,0,0,0.55,0,0,3.31,0,1.1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0.55,0,0,0,0,0.104,0,0.524,0,0,1.229,7,75,1 0.29,0,0.29,0,0.29,0,0,0.29,0,0,0.29,0,0,0,0,0,2.93,0.58,1.75,0,1.75,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0.58,0,0,0,0.29,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1.361,6,113,1 0,0,0,0,0,0,0,0,0.89,0,0,0,0,0,0,0,0,0,0.89,0,3.57,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0.13,0,0.52,0,0,3.5,46,105,1 0.08,0.08,0.35,0,1.52,0.17,0.08,0,0.35,0.17,0,1.43,0,0.08,0,0.53,0.08,0,3.58,0,0.89,0,0.08,0.17,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0.054,0.068,0.369,0.109,0.027,4.896,119,1278,1 0,0,1.16,0,3.48,0,0,0.58,0.58,0,0,0.58,0,0,0,1.74,0,0,1.16,0,3.48,0,0,0.58,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0.082,0,0.165,0.082,0,2.17,12,102,1 0.1,0,0.03,0,0.1,0.03,0,0,0,0.1,0.1,0.43,0,0,0,0.37,0.1,0,0.43,0,0.4,0,0,0,0,0,0,0,0,0,0,0,0.2,0,0,0.13,0.06,0,0,0,0,0.06,0,0.03,0,0,0,0.2,0.014,0.078,0,0.034,0.019,0.019,4.93,113,3550,1 0,0,0,0.42,0.84,0,0,0.42,0,0,0,0,0,0,0,0,0,0.42,0.42,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0.488,0,2.636,0.683,0,3.168,36,301,1 0.25,0,0.51,0,0.25,0.51,0.25,0,0,0,0,0.76,0,0,0,0.25,0,0.76,2.29,0,0.51,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0.044,0,0.132,0.354,0,0,2.593,14,153,1 0.08,0.08,0.76,0,0.85,1.02,0.25,0.17,0.59,0.08,0.17,0.59,0.17,0,2.21,0.25,0.08,0.93,1.61,0.17,0.42,0,0.85,0.08,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0.08,0,0,0.17,0.08,0.08,0.08,0,0,0,0.063,0,0.394,0.114,0.012,7.484,669,1407,1 0,0.24,0.72,0,0.24,0,0.12,0,0,0.36,0.12,0,0.12,0,0.12,0.12,0,0.6,0.36,0.12,0.6,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0.12,0,0,0,0,0,0,0,0,0,0.018,0,0.34,0,0.018,5.634,158,1234,1 0,0,0.43,0,0.87,0,0,0,0,0,0,0,0,0,0,0.43,0.87,0,2.62,0,1.31,0.43,0.43,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1.31,0,0,0,0,0.072,0,0.577,0.216,0,6.274,90,320,1 0.14,0.14,0.29,0,0,0,0,0,1.02,0.29,0.14,0.58,0,0,0,0,0,0.14,2.35,0.14,1.02,0,0,0.44,0,0,0,0,0,0,0,0,0,0,0,0,0,0.29,0,0,0,0,0,0,0.14,0,0,0,0,0.204,0,0.153,0.153,0.102,2.705,73,368,1 0,0,0.14,0,0.28,0,0.14,0,0,0,0,0,0,0,0,0,0,0,2.89,2.31,2.02,7.97,0.14,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0.28,0,0,0,0,0.053,0,0.269,0.08,0.484,15.086,74,1222,1 0.62,0,0.62,0,1.25,0,0.62,0,0,0,0,0.62,0,0,0,0.62,0.62,0,1.25,0,2.51,0,0.62,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0.456,0.273,0,2.52,22,121,1 0.16,0,0.67,0,0.33,0.16,0.33,0.84,0.16,0.5,0.33,1.51,0,0,0,0,1.68,0.33,2.02,1.68,3.87,0,0,0.33,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0.16,0,0,0,0,0,0,0,0,0,0.218,0,1.118,0.054,0,4.928,63,621,1 0,0,0.14,0,0.28,0,0.14,0,0,0,0.14,0.14,0,0,0,0,0,0,2.86,2.14,2,3.86,0.14,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0.14,0,0,0,0,0.048,0,0.241,0.072,0.435,6.238,37,1229,1 0,0,0.15,0,0.15,0,0,0,0,0,0,0,0,0,0,0,0,0,2.56,2.26,2.11,4.07,0.15,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0.15,0,0,0,0,0.051,0,0.255,0.076,0.46,6.3,37,1216,1 0.51,0.43,0.29,0,0.14,0.03,0,0.18,0.54,0.62,0.29,0.65,0.65,1.2,0.03,0.21,0.43,0.03,3.03,0,1.35,0,0.51,0.54,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0.03,0,0,0,0.012,0.078,0,0.443,0.51,0.133,6.59,739,2333,1 0,0,0,0,0,0.68,0,1.36,0.68,0.68,0,0,0,0,0,0.68,2.73,0.68,1.36,3.42,1.36,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0.68,0,0,0,0,0,0,0,0,0,0,0,1.143,0.519,0,3.737,75,228,1 0.33,0,0.66,0,0.22,0,0,0,0.44,0.11,0,0.33,0,0,0,0.55,0,0,1.76,0,1.1,0,0,0.22,0,0,0,0,0,0,0,0,0,0,0,0,0,0.11,0,0,0,0,0.11,0,0,0,0,0,0,0.173,0,0.367,0.193,0.077,2.559,75,389,1 0,0,0.49,0,1.48,0,0.49,0,0,0,0,0.99,0,0,0,0.49,0.99,0,2.47,0,2.97,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0.49,0,0,0,0,0.082,0,0.497,0.165,0,5.113,78,225,1 0,0,0.94,0,0.94,0,0,0,0,0,0,0,0,0,0,0.94,0,0,4.71,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0.17,0,3.571,0,0,1.3,7,52,1 0.49,0.28,0.4,0,0.09,0.11,0.02,0.21,0.42,0.75,0.23,0.89,0.54,1.06,0,0.16,0.33,0.02,3.23,0,1.46,0,1.03,0.51,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0.02,0,0,0,0,0.058,0,0.382,0.847,0.141,5.783,193,3210,1 0.33,0,0.66,0,0.22,0,0,0,0.44,0.11,0,0.33,0,0,0,0.55,0,0,1.76,0,1.1,0,0,0.22,0,0,0,0,0,0,0,0,0,0,0,0,0,0.11,0,0,0,0,0.11,0,0,0,0,0,0,0.173,0,0.367,0.193,0.077,2.559,75,389,1 0,0,1.56,0,0,0,1.56,0,0,0,0,0,0,0,0,1.56,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1.56,0,0,0,0,0.233,0,0.7,0,0,2.125,12,34,1 0,1.11,1.11,0,1.11,0,2.22,0,0,0,0,0,0,0,0,3.33,0,0,3.33,0,2.22,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0.146,0,0,2.058,5,35,1 0,0,3.03,0,0.43,0,0.86,0,0,0,0.43,0.43,0,0,0,2.16,0,1.29,3.46,0,1.73,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0.2,0,0.801,0,0,4.77,41,353,1 0,0,0.91,0,1.82,0.45,0,0,0,0,0,0.45,0,0,0,1.36,0,0,2.28,0,4.56,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0.073,0,0,0,0,2.032,12,126,1 0,0,0.76,0,0.76,0,0.5,0.5,0,1.01,0,0.25,1.52,0,0.76,0,0,1.52,2.03,0,1.52,0,0.76,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0.5,0,0,0,0,0,0,0,0,0,0.074,0,0.412,0.412,0,2.441,19,249,1 0,0,1.44,0,0,0,0,0,0,0,0,2.89,0,0,0,1.44,0,0,5.79,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0.277,0,0,1.312,3,21,1 0,0,0.76,0,0.76,0,0.5,0.5,0,1.01,0,0.25,1.52,0,0.76,0,0,1.52,2.03,0,1.52,0,0.76,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0.5,0,0,0,0,0,0,0,0,0,0.074,0,0.412,0.412,0,2.441,19,249,1 0,0.71,0.71,0,0.35,0.35,0,0,0,0,0,0.71,0,0,0,0.35,0,1.43,1.79,0,1.07,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0.057,0,1.257,0,0,3.895,61,261,1 0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,5.88,0,5.88,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1.5,4,9,1 0.6,0,0.36,0,1.44,0,0,0,0.24,1.32,0.72,2.52,0.6,0,0,0.6,0.24,0,4.44,0,1.8,0,0.72,0.96,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0.12,0,0,0,0,0.04,0,0.101,0.222,0,3.577,54,483,1 0,0,0.88,0,0.88,0,0,0,0,0,0,0.88,0,0,0,0,0,0,0.88,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0.935,0,0,3.417,51,229,1 0,0,0.36,0,0.6,0.12,0.12,0,0,0,0.12,0.48,0.12,0.12,0,0.12,0,0.6,2.41,0,0.24,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0.056,0.037,0,0.056,0.094,0,1.246,14,389,1 0,0,0,0,1.31,0,0,0,0,0,0,0,0,0,0,0,0,0,1.31,0,2.63,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0.251,0,1.007,0,0,1.44,8,36,1 0,0,0,0,0,1.2,0,0,0,0,0,0,0,0,0,0,0,0,1.2,0,3.61,0,0,3.61,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0.421,0.21,0,3.454,17,38,1 0,0,0,0,0,0,0,1.07,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1.07,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1.07,0,0,0,0,0.19,0,0.19,0.38,0,3.6,16,72,1 0,0,1.92,0,0,0,0,0,0,0,0,0,0,0,0,0,3.84,0,1.92,0,1.92,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1.336,0,0,1.21,3,23,1 0.59,0.09,0.09,0,0.29,0.09,0,0.59,0.59,2.09,0.29,0.09,0.29,0,0.39,0.09,0.79,0.39,3.19,0.09,1.69,0,1.39,0.99,0,0,0,0,0,0,0,0,0,0,0,0.09,0,0,0.09,0,0,0,0,0,0.19,0,0,0,0.044,0.078,0,0.334,0.133,0.011,15.493,1171,2541,1 0,0,0,0,0,0,0,0,0,0,0,0,5.55,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,3.125,0,2.411,10,41,1 0.27,0,0.41,0,0,0,0.13,0.13,0,0,0,0.41,0,0,0,0,0,0.41,0.69,0,0.27,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0.27,0,0,0,0,0,0,0,0,0,0,0,0,0,0.133,0,0,0,0,1.531,20,144,1 0,0.62,0.62,0,0.31,0,0,0,0,0,0,0.62,0,0,0,0.31,0,1.25,2.51,0,1.25,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0.31,0,0,0,0,0.051,0,0.777,0,0,3.39,61,278,1 0,0,0,0,0.26,0,0.26,0,0,0,0,0,0,0,0,0.26,0,0,0,0,0.52,17.1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0.26,0,0,0,0,0.451,0.082,0.082,0.369,0,1.026,13.82,104,1078,1 0.33,0,0.67,0,0.22,0,0,0,0.44,0.11,0,0.33,0,0,0,0.56,0,0,1.79,0,1.12,0,0,0.22,0,0,0,0,0,0,0,0,0,0,0,0,0,0.11,0,0,0,0,0.11,0,0,0,0,0,0,0.157,0,0.373,0.196,0.078,2.576,75,389,1 0.12,0.12,0.24,0,1.34,0.12,0,0.12,0,0,0.36,0.85,0,0,0,0.24,0.24,0,2.33,0,0.73,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0.98,0,0,0,0.12,0,0,0,0,0.12,0,0,0,0.061,0.02,0,0.041,0.041,0,2.351,69,254,1 0.12,0.12,0.24,0,1.34,0.12,0,0.12,0,0,0.36,0.85,0,0,0,0.24,0.24,0,2.33,0,0.73,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0.98,0,0,0,0.12,0,0,0,0,0.12,0,0,0,0.061,0.02,0,0.041,0.041,0,2.351,69,254,1 0.31,0.31,0.31,0,0,0,0.31,0,0.31,0.31,0.31,0.31,0,0,0,0.94,0,0,0.31,0,2.51,0,0,0.31,0,0,0,0,0,0,0,0,0,0,0,0.31,0,0,1.88,0,0,0,0,0,0,0,0,0,0,0.75,0,0.89,0.046,0.046,12.382,138,421,1 0,0,0.51,0,0.51,0,0,0,0,0,0,1.03,0,0,0,0,0,0,1.54,0,1.03,0,0,0.51,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0.8,0.177,0,3.125,12,100,1 0,0.48,0.48,0,0.48,0,0,0.48,0,0,0,0.96,0,0,1.92,0,0.48,0.96,2.88,0,2.88,0,1.44,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0.48,0,0,0,0,0,0,0,0,0,0.084,0,0.084,0.336,0,3.2,12,80,1 0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,6.45,0,0,3.22,0,6.45,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,1,2,1 0,0,0.89,0,1.79,0.44,0,0,0,0,0,0.44,0,0,0,1.34,0,0,2.24,0,4.48,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0.073,0,0,0,0,2.25,12,144,1 0,0,0.71,0,0.17,0,0.35,0.35,0,0.17,0.17,0.35,0,0,0,0.35,0,0.17,0.53,0,0.17,0,0.35,0,0,0,0,0,0,0,0,0,0,0,0,0,0.35,0,0,0,0,0,0,0,0,0,0,0,0,0.057,0,0.057,0.171,0,1.974,34,229,1 0,1.72,0,0,0,0,0,0,0,1.72,0,0,0,0,0,1.72,0,0.86,0.86,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0.125,0,0.251,0.251,0,2.022,12,91,1 0,0,0,0,0,0,0,2.53,0,0,0,0,0,0,0,0,1.26,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1.26,0,0,0,0,0.186,0,0.186,0.186,0,4,23,84,1 0,0,0,0,0.42,0.42,0.42,0,0,0,0,0.42,0,0,0,0,0,0,0.84,0,0.42,8.82,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0.062,0,0.187,0,1.002,7.951,74,493,1 0,0,0,0,0.45,0.45,0.45,0,0,0,0,0.45,0,0,0,0,0,0,0.9,0,0.45,9.5,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0.203,0,1.084,8.517,72,477,1 0,0,0,0,0,0,1,0,0,1,0,1,0,0,0,0,0,0,3.01,0,0,1.5,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0.176,0,0,4.476,20,94,1 0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,4.44,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1.385,0,0,20,169,180,1 0,0,1.25,0,2.5,0,0,0,0,0,0,0,0,0,0,1.25,0,0,5,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1.25,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1.2,4,36,1 0,0,0,0,0,0,0,1.08,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1.08,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1.08,0,0,0,0,0.194,0,0,0.389,0,3.6,16,72,1 0,0,0,0,0,0,0,0,0,0,0,0,1.38,0,0,0,0,0,0,0,1.38,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0.486,0,0,2.681,11,59,1 0.21,0.1,0.52,0,1.26,0.1,0,0,0.42,0.52,0.21,0.52,0.42,0,0,0,0.52,0,4.53,0,2,0,0.31,1.47,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0.028,0,0.141,3.305,0,11.288,193,1016,1 0,0.23,0,0,0.23,0.47,0,0.47,0,0.95,2.61,1.66,0,2.61,0,0,0,0,3.8,0,0.95,0,0.23,0,0.71,0,0,0,0,0,0,0,0,0,0,0,0.95,0,0,0,0,0.23,0,0,0.47,0,0,0,0,0.121,0.04,0,0.04,0,3.78,55,189,1 0.09,0.18,0.36,0,0.09,0,0.09,0,0.55,0.27,0.09,0.83,0.36,0,0,0,0,0.09,3.69,0.55,1.56,0,0,0.36,0,0,0,0,0,0,0,0,0,0,0,0.09,0,0,0,0,0,0,0,0,0.09,0,0,0,0,0.056,0,0.341,0.085,0,7.273,103,1171,1 0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,3.22,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0.546,0,0,2.3,9,23,1 0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,4.34,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,2.631,0,0,1.666,5,15,1 0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,4.34,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,5.844,0,0,1.666,5,15,1 0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,3.33,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1.081,0,0,2.3,9,23,1 0,0,0.64,0,0.64,0,0,0,0,1.29,0,0,0,0,0,2.59,0,0,3.24,0,0.64,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0.64,0,0,0,0,0,0,0,0,0.574,0,0,5.833,30,105,1 0,0,0,0,0,0,0,0,0.93,0,0,0,0,0,0,0,0,0,0.93,0,3.73,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0.134,0,0.536,0,0,2.166,23,65,1 0,0,0.32,0,0.64,0.64,0.64,0.32,0,0,0,0.32,0.32,0,0,0.32,0.32,0.32,2.27,0,3.24,0,0,0.32,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0.64,0,0,0,0,0.156,0,0,0.156,0,1.688,19,157,1 0,0,0,0,0,0,0,1.08,0,0,0,0,0,1.08,0,0,0,0,0,0,0,0,1.08,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1.08,0,0,0,0,0.191,0,0.191,0.383,0,3.95,23,79,1 0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,3.7,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,3.448,0,0,2.666,11,24,1 0,0,0,0,0,0,0,1.08,0,0,0,0,0,1.08,0,0,0,0,0,0,0,0,1.08,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1.08,0,0,0,0,0.191,0,0.191,0.383,0,3.95,23,79,1 0,0,0,0,0,0.05,0,0.34,0,0,0.11,0.81,0.05,0.11,0,0,0.75,0,0,0,0,0,0.05,0,1.16,0,0,0,0,0,0,0,0.05,0,0,0.23,0.05,0,0,0,0,0,0,0,0,0,0,0,0.283,0.107,0,0,0.053,0,1.864,32,910,1 0,0,0,0,0.88,0,0,0,0,0,0.44,0.44,0,0,0,0,0,0.44,1.32,0,1.32,0,0,0,0.44,0.44,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0.072,0.072,0,0.291,0,0,1.348,3,58,1 0,0,0.41,0,0.82,0.61,0.2,0,0.2,0.61,0.41,1.23,0.2,0,0,0.61,0,0,2.89,3.09,1.23,0,0,0.2,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0.098,0.065,0,0.816,0.065,0,3.716,45,301,1 0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,4.347,0,0,1,1,2,1 0.1,0,0.43,0,0.1,0.1,0.1,0.53,0.1,0,0,0.64,0,0.32,0,0,0.1,0,0,0,0,0,0.75,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0.049,0,0.016,0.065,0,1.901,29,329,1 0.65,0.49,0.32,0,0.32,0.16,0,0.49,0.65,0.49,0.16,1.3,0,0,0.16,1.14,1.3,0.16,3.6,0.49,1.8,0,0,0.49,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0.16,0,0,0,0.225,0,0.902,0.225,2.233,5.833,47,595,1 0.09,0,0.09,0,0.39,0.09,0.09,0,0.19,0.29,0.39,0.48,0,0.58,0,0.87,0.19,0,1.66,4.1,1.66,0,0.39,0.19,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0.136,0,0.318,0.151,0,6.813,494,1458,1 0,0,0,0,0,0,0,3.33,3.33,0,0,0,0,0,0,0,3.33,0,0,0,6.66,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0.396,0,0.396,3.714,11,26,1 0.1,0,0.1,0,0.4,0.1,0.1,0,0.2,0.2,0.4,0.5,0,0.6,0,0.91,0.2,0,1.72,4.26,1.72,0,0.4,0.2,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0.093,0,0.297,0.156,0,6.8,494,1428,1 0,0,0.37,0,1.11,0.74,0,2.96,0,2.96,0,0,0.74,0,0,0,2.22,0,5.18,0,2.22,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0.149,0,1.096,0,0,5.16,107,289,1 0.08,0.08,0.76,0,0.85,1.02,0.25,0.17,0.59,0.08,0.17,0.59,0.17,0,2.21,0.25,0.08,0.93,1.61,0.17,0.42,0,0.85,0.08,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0.08,0,0,0.17,0.08,0.08,0.08,0,0,0,0.063,0,0.394,0.114,0.012,7.484,669,1407,1 0.25,0,0.51,0,0.25,1.28,0,0,0.77,0.51,0,0.25,0,0,0,0,0,0.51,1.79,0,0.77,0,2.05,0,0.51,0.51,0,0,0,0,0,0,0,0,0,0,0.25,0,0,0,0,0,0,0,0,0,0,0,0,0.086,0,0.26,0.173,0,3.298,16,287,1 0,0,0,0,1.05,2.1,1.05,0,0,0,0,0,0,0,0,0,0,0,3.15,0,1.05,0,2.1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0.171,0.171,0,2.05,6,41,1 0,0.1,0.3,0,1.02,0.3,0.1,0.4,0,0.2,0.1,0.92,0,0.1,0,1.94,0.92,0.4,1.94,0.4,0.61,0.92,0.51,0.1,0,0,0,0,0,0,0,0,0,0,0,0.3,0.1,0,0,0.1,0,0,0,0,0,0,0,0,0,0.048,0.016,0.518,0.162,0.34,8.181,283,1890,1 0.1,0,0.1,0,0.4,0.1,0.1,0,0.2,0.2,0.4,0.5,0,0.6,0,0.91,0.2,0,1.72,4.26,1.72,0,0.4,0.2,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0.093,0,0.297,0.156,0,6.8,494,1428,1 0,0,0,0,0.44,0.44,0.44,0,0,0,0,0.44,0,0,0,0,0,0,0.88,0,0.44,9.29,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0.19,0,1.017,8.033,72,474,1 0,0.1,0.62,0,0.31,0,0.1,0,0.2,0.62,0.1,0.62,0.41,0,0,0.1,0.1,0.2,3.43,0.1,1.66,0,0.1,1.04,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0.1,0,0,0,0,0,0,0.611,0.264,0.049,3.794,69,702,1 0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1.17,0,0,0,0,0.422,0,0.422,0.634,0,4.066,17,61,1 0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,4,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,2.363,11,26,1 0,0.62,0.62,0,0,0.62,0,2.82,0,0.31,0.31,2.5,0,0,0,2.5,0,0,5.32,0.31,1.56,0,0,0.62,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0.055,0,0.111,0.111,0.055,1.672,6,92,1 0.23,0.29,0.64,0,0.17,0.17,0.11,0.05,0.05,0.47,0.11,1.17,0.47,0.05,0.17,0.05,0.11,0.29,3.93,0,2.05,0,0.47,0.29,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0.133,0,0.492,0.338,0.092,6.033,87,1460,1 0.51,0.43,0.29,0,0.14,0.03,0,0.18,0.54,0.62,0.29,0.65,0.65,1.2,0.03,0.21,0.43,0.03,2.99,0,1.35,0,0.51,0.58,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0.03,0,0,0,0.012,0.078,0,0.478,0.509,0.127,6.518,611,2340,1 0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,3,16,33,1 0,0,0,0,0,0,0,1.12,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1.12,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1.12,0,0,0,0,0.204,0,0.408,0.408,0,4.1,25,82,1 0,0,0.48,0,0.48,0,0,0.48,0,0,0,0.96,0,0,1.93,0,0.48,0.48,2.41,0,2.41,0,3.38,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0.48,0.48,0,0,0,0,0,0,0,0,0,0.084,0,0.084,0.761,0,5.322,46,165,1 0.08,0.08,0.76,0,0.85,1.02,0.25,0.17,0.59,0.08,0.17,0.59,0.17,0,2.21,0.25,0.08,0.93,1.61,0.17,0.42,0,0.85,0.08,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0.08,0,0,0.17,0.08,0.08,0.08,0,0,0,0.063,0,0.394,0.114,0.012,7.54,669,1410,1 0,0,0.19,0,0.19,0,0,0.19,0.19,0.19,0,0.19,0.19,0,0,0.76,0,0,0.95,0,1.14,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0.19,0,0,0.19,0,0,0,0.38,0,0.19,0,0,0,0,0.058,0,0.264,0,0,4.053,93,381,1 0,0.35,0.35,0,1.07,0,0,0.35,0,1.07,0,0.71,0,0,0,0,0.71,0.71,2.85,0,2.5,0,1.42,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0.35,0,0,0,0,0.35,0,0,0,0,0.233,0,0.233,0.233,0,3.414,25,140,1 0,0,0,0,0,0,0.31,0,0,0,0,1.26,0,0,0,0,0,0.31,1.9,0,0.31,0,0.31,0,0,0,0,0,0,0,0,0,0,0,0,0.31,0,0,0,0,0,0,0,0,0,0,0,0,0.043,0.086,0,0.13,0.173,0.26,3.244,60,279,1 0.4,0.4,0.26,0,0.13,0.2,0.06,0.33,0,1.14,0.33,1.07,1,0,0.26,0.4,0.06,0,4.1,0,0.94,0,0.53,0.26,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0.088,0,1.06,0.151,0.05,4.623,123,1045,1 0,0.39,1.18,0,0.39,0,0,0,0,0.78,0.78,0.78,0,0,0.39,3.54,0,0,1.18,0,1.18,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0.39,0,0,0,0,0.064,0,0.843,0.129,0.064,5.87,42,364,1 0,0,0,0,0,0,0,4.62,0,0,0,0,0.92,0,0,0,0.92,0,0,0,0,0,1.85,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0.919,0.367,0,2.84,16,71,1 0.32,0.28,0.57,0,0.12,0.2,0.16,0.2,0,0.32,0.08,0.98,0.41,0.04,0.04,0,0,0.41,3.74,0,1.64,0,0.45,0.53,0.04,0.04,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0.08,0,0,0,0,0,0,0.171,0,0.507,0.493,0.028,5.608,133,1991,1 0,0.43,0.87,0,0,0,0,0,0.43,0.43,0.43,0,0,0,0,0,0,0,6.14,0,0.43,0,0,0.87,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0.075,0.075,0,0,0.151,0,5.086,33,117,1 0,0,0.53,0,0.53,0,0,0.53,0,0,0,1.06,0,0,2.12,0,0.53,0.53,2.65,0,2.65,0,1.59,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0.53,0.53,0,0,0,0,0,0,0,0,0,0.186,0,0.093,0.466,0,5.038,60,131,1 0.35,0.08,0.35,0,0.35,0,0,0.52,0.61,1.76,0.17,0.26,0.79,0,0.26,0,0.7,0.35,2.64,0,2.03,0,0.61,0.7,0,0,0,0,0,0,0,0,0,0,0,0.08,0,0,0.08,0.17,0,0,0,0,0.17,0,0,0,0,0.081,0,0.556,0.069,0.011,19.234,1170,3116,1 0.51,0.17,0.51,0,1.7,0.34,0,0,0.85,0.17,0,0.68,0.17,0.34,0,0.17,0.17,0,2.9,0,2.05,0,0.68,1.36,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0.387,1.961,0.025,11,183,660,1 0.53,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0.53,0,1.6,0,1.06,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0.062,0,0.311,0,0,1.954,11,43,1 0.26,0.72,0.85,0,0,0.19,0.06,0.33,0.72,0.46,0.72,0.79,0.19,1.05,0.06,0.59,0.19,0.33,3.5,0.06,1.52,0,0.06,0.06,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0.06,0,0,0,0,0.06,0,0,0,0,0.131,0,0.101,0.101,0.202,4.398,79,1280,1 0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1.17,0,0,0,0,0.417,0,0.208,0.626,0,4.066,17,61,1 0,0,0.52,0,0,1.05,0.52,0,0,0,0,0,0,0,0,1.05,0,0,2.63,0,0,0,1.05,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0.194,0,0.291,0,0,3.333,43,120,1 0.31,0,0,0,0,0,0,0,0,0,0.31,0.31,0.31,0,0,0,0.31,0,2.79,0,1.55,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0.31,0,0,0,0,0,0,0,0,0,0,0,0,0.114,0,0,0.057,0,0,2.972,18,110,1 0,0,0,0,0,1.29,0,0.64,0,0,0,0,0,0,0,0,0,0,3.87,0,0.64,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1.116,0.111,0,1.8,12,63,1 0,0,0,0,0,1.28,0,0.64,0,0,0,0,0,0,0,0,0,0,3.84,0,0.64,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1.103,0.11,0,1.777,12,64,1 0,0,0.15,0,0.62,0,0.31,0,1.09,0,0,0,0.46,0,0,0.15,0.15,1.4,2.19,0,1.09,0,0.62,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0.252,0,0.378,4.017,0,3.278,23,259,1 0,0.11,0.35,0,1.18,0.47,0.23,0.35,0,0.11,0.11,0.95,0,0.11,0,2.13,0.95,0.23,1.9,0.35,0.35,0,0.59,0.11,0,0,0,0,0,0,0,0,0,0,0,0.35,0,0,0,0.11,0,0,0,0,0,0,0,0,0,0.057,0,0.42,0.191,0.21,8.026,283,1509,1 0.09,0,0.27,0,0.36,0.09,0,0.18,0.09,0,0,0.73,0,0.36,0,0,0,0,2.01,0,3.38,0,0.36,0.09,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0.27,0,0,0,0.015,0.046,0.031,0.249,0.031,0.031,3.689,69,535,1 0,0,0.47,0,0.47,0,0,0.47,0,0,0,0.94,0,0,1.88,0,0.47,0.47,2.83,0,2.35,0,1.41,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0.47,0.47,0,0,0,0,0,0,0,0,0,0.164,0,0.082,0.41,0,5.074,60,137,1 0.14,0.14,0.29,0,0,0,0,0,1.03,0.29,0.14,0.59,0,0,0,0,0,0.14,2.36,0.14,0.88,0,0,0.44,0,0,0,0,0,0,0,0,0,0,0,0,0,0.29,0,0,0,0,0,0,0,0,0,0,0,0.205,0,0.153,0.128,0.102,2.686,73,368,1 0,0,0,0,0.81,0,0,0,0,0,0,0,0,0,0,0,0,0,0.81,0,1.63,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0.125,0,0,3.871,26,151,1 0.14,0.14,0.29,0,0,0,0,0,1.03,0.29,0.14,0.59,0,0,0,0,0,0.14,2.36,0.14,0.88,0,0,0.44,0,0,0,0,0,0,0,0,0,0,0,0,0,0.29,0,0,0,0,0,0,0,0,0,0,0,0.205,0,0.153,0.128,0.102,2.686,73,368,1 0.5,0.4,0.33,0,0.13,0.03,0.13,0.1,0.54,0.77,0.3,0.7,0.54,1.14,0.03,0.27,0.43,0.03,3.2,0,1.45,0,0.37,0.6,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0.06,0,0,0,0,0.071,0,0.456,0.5,0.11,6.049,129,2220,1 0,0,0.2,0,0.4,0.2,0,0,0,0,0,0,0,0,0,0,0.61,0.4,2.45,0.2,0.61,4.49,0.61,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0.2,0,0,0,0,0,0,0.382,0.223,0.478,7.538,55,490,1 0.57,0,0.57,0,0,0,0,0.57,0,0,0,1.14,0,0,0,0,0,0,5.14,0,1.14,0,2.85,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0.211,0.74,0,2.9,32,116,1 0.59,0,0.59,0,0,0,0,0.59,0,0,0,1.18,0,0,0,0,0,0,5.32,0,1.18,0,2.95,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0.109,0.763,0,3,32,114,1 0,0,0.2,0,0.81,1.01,0,0,0,0,0.2,1.21,0,0,0,0,0,0.2,1.21,0,0,0,0.6,0.4,0,0,0,0,0,0,0,0,0,0,0,1.62,0.2,0,0,0,0,0,0,0,0,0,0,0,0,0.152,0,0.121,0.121,0,2.61,10,261,1 0.19,0.19,0,0,1.55,0.19,0.77,0,0.19,0.19,0,0.77,0.58,0,0,0.19,0.58,2.33,0.77,0,0.38,0,0.19,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0.19,0,0,0,0,0,0,0,0,0,0.03,0.061,0.03,0.185,0.216,0,1.948,11,113,1 0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1.17,0,0,0,0,0.421,0,0.21,0.632,0,3.75,15,60,1 0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1.17,0,0,0,0,0.407,0,0.203,0.61,0,4.133,17,62,1 0,0,0.53,0,0.21,0.1,0.1,0.53,0.1,0.21,0,0.64,0,0,0,0,0.1,0,0,0,0,0,0.74,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0.097,0,0.016,0.065,0,2.104,29,381,1 0.9,0,0,0,0,0,0.9,0,0,0,0,0,0,0,0,0,0.9,0.9,1.81,0,2.72,0,0,0.9,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0.537,0,0,2.782,19,64,1 0,0,0,0,0,0,1.02,0,0,0,0,2.04,0,0,0,2.04,0,2.04,3.06,0,1.02,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0.17,0,0,0.17,0,1.47,4,25,1 0,0.56,0.28,0,0,0,0.56,0,0,0.56,0.28,0.56,0.28,0,0,1.41,0.28,0,1.97,0,1.12,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0.28,0,0,0,0,0.114,0,0.153,0,0.153,9.25,394,555,1 0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0.92,0.46,0.92,1.85,0.46,1.85,0.46,0.46,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0.142,0,0.142,0.5,0.285,1.636,10,126,1 0.28,0,0.28,0,1.43,0.28,0,0.14,0,0,0,1.14,0,0,0,0.14,0.42,0,3.86,0,1.28,0,0.14,0.42,0,0,0,0,0,0,0,0,0.14,0,0,0,0,0,0,0,0,0,0,0.14,0,0,0,0,0,0.047,0,0.094,0.118,0.023,1.42,27,250,1 0,0,0,0,0.87,0,0,1.16,0,0,0.29,1.74,0,0,0,0,0.87,0,4.95,0,2.91,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0.151,0,0,0,0,0,1.095,4,46,1 0,0.55,0.55,0,2.23,0.55,0,0.55,0,0,0.55,0,0,0,0,0,0,1.11,1.67,0,2.23,0,0,0.55,0,0,0,0,0,0,0.55,0,0,0,0,0,0.55,0,0,0,0,0,0,0,0,0,0,0,0,0.265,0,0.088,0.353,0,2.571,11,108,1 0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,12.5,0,0,0,0,12.5,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,1,2,1 0,0,0,0,0.81,0,0,0,0,0,0,0,0,0,0,0,0,0,0.81,0,1.63,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0.121,0,0,3.871,26,151,1 0,1.47,0,0,0,0,0,0,0,1.47,0,0,0,0,0,0,0,1.47,4.41,0,0,0,0,1.47,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,2.333,12,21,1 0.26,1.07,0,0,1.61,0,1.07,0.26,0.26,0,0,0.8,0,0,0,0,0,1.61,3.5,0,1.34,0,0,0.26,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0.8,0,0,0,0,0.092,0,0.324,0,0,7.369,52,339,1 0.33,0.67,0,0,0,0,0.67,0.33,0.33,0.33,0,0.67,0,0,0,0,0.67,1.01,2.02,0,0.67,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0.048,0,1.204,6,59,1 0,0,0.4,0,0.4,0,0.4,0,0,0,0,0,0.4,0,0,0,0,0,2.04,0,0.4,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0.4,0,0,0,0,0,0,0.11,0,0,1.594,11,118,1 0.41,0,0.61,0,0.41,0.61,0,0.82,0.2,0.2,0.2,1.44,0,0,0,0.41,1.03,0.2,1.65,1.65,3.09,0,0.2,0.61,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0.099,0,1.689,0.132,0,4.913,102,565,1 0,0.9,1.81,0,0,0,0.9,3.63,0,1.81,0,0.9,0,0,0,0,0.9,0,2.72,0,3.63,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0.774,0,0,1,1,18,1 0,2.66,0,0,2,0,0,0.66,0,0,0,2,1.33,0,0.66,0,0,6.66,3.33,0,1.33,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0.111,0,0,2.133,7,32,1 0.5,0.43,0.28,0,0.14,0.03,0,0.18,0.54,0.61,0.28,0.65,0.65,1.19,0.03,0.21,0.43,0.03,2.96,0,1.34,0,0.5,0.54,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0.03,0,0,0,0.012,0.078,0,0.439,0.505,0.132,6.683,798,2426,1 0.56,0,0.84,0,0.28,0.84,0,0.84,0.28,0.28,0.28,1.41,0,0,0,0,1.41,0,0.84,1.98,2.83,0,0.28,0.84,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0.128,0,1.289,0.042,0,3.979,47,386,1 0.33,0.16,0.33,0,0,0.16,0,0.16,0.16,0.08,0.16,0.57,0.24,0,0,0.16,0.24,0.24,3.47,0,2.06,0,0,0.66,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0.66,0,0,0,0,0,0,0.213,0.113,0,3.15,76,441,1 0,0.34,1.02,0,0.68,0.34,0.34,0,0,0,0,0.34,0,0,0,2.04,0,0.34,4.76,0,2.38,0,0,0.34,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0.161,0,0.215,0,3.879,6.978,56,328,1 0.64,0,0.25,0,0,0.38,0,0,0,0.25,0.64,0.25,1.03,0,0,0.77,0.9,0.12,1.93,0,0.51,0.12,0.12,1.03,0,0,0,0,0,0,0,0,0,0.12,0,0,0,0,0,0.12,0,0,0,0,0.12,0,0,0,0,0.161,0,1.082,0.299,0.092,5.274,146,981,1 0,0,0.78,0,1.17,0,0,0,0,0,0,0.39,0,0,0,0.78,0,0,1.56,0,1.96,0,0,0.78,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0.092,0,4.111,20,222,1 0,0,0.49,0,1.48,0,0,0,0.49,0,0,0,0,0.16,0,0.66,0.33,0,0.82,0,0.49,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0.16,0,0,0,0,0,0,0,0,0.16,0,0,0,0,0.197,0,0.616,0,0,5.778,128,549,1 0,0,0.68,0,0,0,0,1.36,0,0,0.68,0.68,0,0,0,0,0,0,3.4,0,1.36,0,0.68,0.68,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0.232,0.232,0,2.232,19,96,1 0,0,0.32,0,0.64,0.64,0.64,0.32,0.32,0,0,0.32,0.32,0,0,0.32,0.32,0.32,2.25,0,3.21,0,0,0.32,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0.64,0,0,0,0,0.156,0,0,0.156,0,1.752,19,149,1 0,0.45,0,0,0.91,0,1.36,0,0,0,0,0.45,0,0,0,1.82,0.45,0,2.73,0,1.36,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0.368,0,0,1.68,17,158,1 0,1.25,0.62,0,0,0,1.25,0,0,0,0.62,0.62,0,0,0.62,2.5,0,1.25,5,0,1.25,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0.045,0,0.225,0,0,2.35,29,134,1 0,1.25,0.62,0,0,0,1.25,0,0,0,0.62,0.62,0,0,0.62,2.5,0,1.25,5,0,1.25,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0.044,0,0.223,0,0,2.35,29,134,1 2.43,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,3.666,13,44,1 0,0,0,0,0,0,2.1,0,0,0,0,1.05,0,0,0,0,0,0,4.21,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,2.695,15,62,1 0,0,0.99,0,0.24,0,0,0,0.24,0.49,0,0.49,0,0,0.24,0.24,0,0,0.24,0,0.49,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0.035,0,0,0,0,5.555,209,400,1 0.52,0.34,0.4,0,0.14,0.17,0.05,0.14,0.46,0.52,0.31,0.89,0.4,1.16,0.05,0.11,0.23,0.11,2.9,0,1.1,0,0.63,0.52,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0.08,0,0,0,0,0.073,0,0.363,0.535,0.132,6.171,159,2771,1 0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,2.53,6.32,0,1.26,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0.649,0,0.432,5.875,46,94,1 0,0,0,0,0,0,0,3.12,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1.04,0,0,0,0,0.189,0,0.189,0.189,0,3.857,25,81,1 0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,2.66,5.33,1.33,1.33,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0.699,0,0.466,9.2,46,92,1 0.5,0,0.75,0,0.25,0.25,0.25,0.5,0,0,0.5,2.26,0,0,0,0.5,1,0.25,4.03,0,2.01,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0.034,0,0.375,0.034,0,4.2,60,231,1 1.03,0,0,0,0,0,0,0,0,0,0,1.03,0,0,0,1.03,0,0,3.62,0,1.03,0,0,0.51,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0.176,0.176,0,2.766,26,83,1 1.18,0.39,0.59,0,0,0.98,0.19,0.19,1.38,0.39,0,0.98,0,0.19,0,0.98,0,0,2.56,0.39,1.38,0,0,1.38,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0.231,0,0.745,0.308,0.025,6.652,76,632,1 1.18,0.39,0.59,0,0,0.98,0.19,0.19,1.38,0.39,0,0.98,0,0.19,0,0.98,0,0,2.56,0.39,1.38,0,0,1.38,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0.232,0,0.749,0.31,0.025,6.652,76,632,1 1.18,0.39,0.59,0,0,0.98,0.19,0.19,1.38,0.39,0,0.98,0,0.19,0,0.98,0,0,2.56,0.39,1.38,0,0,1.38,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0.23,0,0.741,0.306,0.025,6.652,76,632,1 0,0,0,0,0,0,2.1,0,0,0,0,1.05,0,0,0,0,0,0,4.21,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,2.695,15,62,1 0,0,0,0,0,0,0,0,0,0,0,0,0,2.1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1.05,0,0,0,0,0,0,0,0,1.05,0,0,0,0,0.169,0,0,0.338,0,4.047,29,85,1 0.13,0.13,0.13,0,0.55,0.27,0.27,0.13,1.1,0.27,0,0.97,0.27,0,0.13,0,0,0,3.88,0.13,2.77,0,0.13,0.55,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0.13,0,0,0,0,0,0,0,0,0,0.017,0,1.316,0.177,0,4.947,232,757,1 0,0,0.46,0,0,0,0,0.15,0,0,0,0.15,0,0,0,0,0,0.46,0.93,0,0,0,0.46,0,0,0,0,0,0,0,0,0,0,0,0,0.15,0,0,0,0.93,0,0,0,0,0,0,0,0,0.071,0.071,0,0.095,0.023,0,62.75,1505,2761,1 0.09,0,0.27,0,0.36,0.09,0,0.18,0.09,0,0,0.72,0,0.36,0,0,0,0,2,0,3.27,0,0.36,0.09,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0.27,0,0,0,0.015,0.045,0.03,0.242,0.03,0.03,3.816,69,542,1 0.13,0.13,0.13,0,0.55,0.27,0.27,0.13,1.11,0.27,0,0.97,0.27,0,0.13,0,0,0,3.91,0.13,2.65,0,0.13,0.55,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0.13,0,0,0,0,0,0,0,0,0,0.018,0,1.294,0.182,0,4.745,232,726,1 1.18,0.39,0.59,0,0,0.98,0.19,0.19,1.38,0.39,0,0.98,0,0.19,0,0.98,0,0,2.56,0.39,1.38,0,0,1.38,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0.232,0,0.749,0.31,0.025,6.652,76,632,1 0,0,0,0,0.28,0.86,0,0,0,0,0,0.57,0.28,0,0,0,0.28,0,0.28,0,0.28,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0.084,0.126,0,0,0,0,27.479,772,1319,1 0,0,0.36,0,0.36,0,0,0,0.36,0.36,0,0.36,0,1.09,0,1.81,0,0,3.63,0,1.45,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0.125,0,0.125,0,0,1.287,5,94,1 0,0.23,0.47,0,1.18,0,0.23,0,0.7,0.7,0,0.47,0.23,0,0,0.23,0.7,0,2.83,0,1.89,0,0,0.47,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0.072,0.108,0,2.438,20,178,1 2.32,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0.277,0,0,3.2,13,48,1 0,0,0,0,0,0,0,0,0,1.51,0,1.51,0,0,0,0,0,0,7.57,0,1.51,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,2.769,15,36,1 0,0.54,0,0,0,0,1.08,0,0,0.54,0.54,0.54,0,0,0,2.17,0,0.54,3.26,0,1.08,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0.54,0,0,0,0,0,0,0.334,0,0,1.325,5,53,1 0.45,0.68,0.68,0,1.92,0,0.56,0.45,0,0.45,0.22,1.81,0,0,0.79,0.22,0.11,1.81,2.38,0,1.36,0,0.11,0.22,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0.11,0,0,0,0,0,0.11,0,0,0.019,0.057,0,0.574,0.134,0.019,3.155,94,385,1 0,0,0,0,0,0,0,0,0,0,0,1.36,0,0,0,0.68,0.68,0,4.76,4.76,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1.255,0,0,2.818,21,124,1 0,0,0.55,0,0.22,0.22,0.11,0,0.11,0.22,0,0.33,0.33,0,0,0,0.22,0,0,0,0,0,0.55,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0.155,0,0.034,0.12,0,1.961,14,302,1 0,0,0,0,0,0,0.76,0,0,0,0,0,0.76,0,0,0,0,0,0.76,0.76,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0.76,0,0,0,0,0,0,0,0,0.274,0,0,11.035,110,309,1 0.68,0.11,0.11,0,0.45,0.11,0,0.57,0.79,2.73,0.34,0.11,0.22,0,0.45,0.11,0.68,0.45,3.07,0,1.71,0,1.82,1.14,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0.11,0.11,0,0,0,0,0.11,0,0,0,0.067,0.118,0,0.388,0.236,0.016,9.827,164,1592,1 0,0,0,0,0,1.88,0,0,0,0,0,0,0,0,0,0,0,0,3.77,0,1.88,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,2.307,16,30,1 0,0,0,0,1.28,0,1.28,0,0,0,0,0,0,0,0,0.64,0,1.28,1.28,0,0.64,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0.085,0.17,0,2.466,18,111,1 0,0,0,0,0,1.12,0,0,0,0,0,0,0,0,0,0,0,0,2.24,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0.392,0,3.333,0,0,2.551,12,74,1 0.9,0,0,0,0,0,0.9,0,0,0,0,0,0,0,0,0,0.9,0.9,1.81,0,2.72,0,0,0.9,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0.546,0,0,2.818,19,62,1 0.49,0.32,0.46,0,0.05,0.16,0.05,0.24,0.46,0.79,0.27,1.01,0.6,1.23,0,0.21,0.38,0,3.3,0,1.5,0,1.09,0.35,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0.02,0,0,0,0,0.064,0,0.322,0.626,0.165,6.896,193,3269,1 0.39,0,0,0,0,0.39,0.79,0,0,0,0,0.79,0,0,0,0,0.39,0,2.37,0,2.76,0,1.18,0.79,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0.061,0,0.612,0.183,0,2.678,13,75,1 0,0.58,0.58,0,0,0,0,0.58,0.58,7.55,0.58,1.16,0,0,0,0,0.58,0,4.06,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0.192,0,0.192,0,0.096,1.526,10,58,1 0.17,0.17,0.69,0,0.34,0.17,0,0.86,0.17,0.69,0.34,1.38,0,0,0,0,1.73,0.34,2.07,1.55,3.8,0,0,0.34,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0.17,0,0,0,0,0,0,0,0,0,0.194,0,1.718,0.055,0,5.175,63,621,1 0.51,0,0.77,0,0.25,0.25,0,0,0,0.51,0,1.55,0,0,0,0.77,1.55,0,4.9,0,2.58,0,0.77,0.25,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0.25,0,0,0,0,0,0,0,0,0,0,0.179,0,0.359,0.403,0.134,5.774,56,358,1 0,0,1.24,0,1.24,0.62,0,0,0,0,0,0,0,0,0,1.24,0.62,0,0.62,0,1.86,0.62,0.62,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0.62,0,0,0,0,0.107,0,0.321,0.107,0.107,3.846,30,150,1 0,0,0,0,0,0,0,2.94,0,0,0,0,0,0,0,0,0,0,0,0,0,2.94,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0.45,14.5,42,87,1 0,0.84,0.84,0,0,0,0.84,0,0,1.68,0.84,0,0,0,0,0.84,0,0,3.36,0,0.84,0,0.84,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0.519,0,0,5,43,125,1 0,0,0,0,0,0,0,0.71,0,0,0,0.71,0,0,0,1.43,0,0,4.31,0,1.43,0,0,0.71,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,2.15,0,0,0,0,0.265,0,0.132,0,0,2.322,16,72,1 0.09,0,0.27,0,0.36,0.09,0,0.18,0.09,0,0,0.82,0,0.36,0,0,0,0,2.01,0,3.38,0,0.36,0.09,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0.27,0,0,0,0.015,0.046,0.03,0.246,0.03,0.03,3.771,69,528,1 0.11,0.22,0.11,0,0.45,0.45,0,0.11,1.02,1.59,0.11,0.34,0.22,0.11,2.16,0,0.45,0.11,3.53,0,1.25,0,0.45,0.45,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0.11,0,0,0,0,0.45,0,0,0,0.018,0.17,0,0.265,0.132,0,4.215,144,666,1 0.44,0,0.88,0,0.44,1.32,0.44,0,0,0,0,0,0,0,0,0,0,0.44,1.76,0,2.2,0,2.2,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0.216,0,0,0.433,0.361,0,2.375,16,133,1 0.1,0.2,1.01,0,0.8,0.8,0.5,0,0.8,0.1,0.3,0.7,0.3,0,1.61,0.1,0,1.11,1.31,0.2,0.7,0,0.6,0.1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0.2,0,0.1,0.1,0,0,0,0.107,0,0.474,0.152,0.015,8.55,669,1351,1 0.11,0.22,0.11,0,0.45,0.45,0,0.11,1.02,1.59,0.11,0.34,0.22,0.11,2.16,0,0.45,0.11,3.53,0,1.25,0,0.45,0.45,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0.11,0,0,0,0,0.45,0,0,0,0.018,0.17,0,0.265,0.132,0,4.215,144,666,1 0.42,0.46,0.38,0,0.19,0.11,0,0.07,0.58,0.62,0.34,0.77,0.5,1.32,0.03,0.23,0.54,0,3.06,0,1.51,0,0.38,0.46,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0.03,0,0,0,0,0.076,0,0.438,0.585,0.127,6.134,153,2184,1 0,0,0.9,0,0.45,0,0,0,0,0,0,0.9,0.45,0,0,0.45,0.9,0,4.52,0,0.9,0,0.45,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1.35,0,0,0,0,0,0,2.115,0.07,0,2.651,14,114,1 0.33,0,0.67,0,0.22,0,0,0,0.44,0.11,0,0.33,0,0,0,0.56,0,0,1.79,0,1.12,0,0,0.22,0,0,0,0,0,0,0,0,0,0,0,0,0,0.11,0,0,0,0,0.11,0,0,0,0,0,0,0.157,0,0.392,0.176,0.078,2.606,75,391,1 0,0,0,0,0,1.88,0,0,0,0,0,0,0,0,0,0,0,0,3.77,0,1.88,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,2.307,16,30,1 0,0,0,0,0,1.27,0,0.63,0,0,0,0,0,0,0,0,0,0,3.82,0,0.63,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1.096,0.109,0,1.916,12,69,1 0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,3.37,0,0,0,2.24,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0.218,0,0,1.827,11,53,1 0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,2.04,0,0,8.84,1.36,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0.125,0,1.126,7.054,37,261,1 0,0.47,0.47,0,1.41,0,0.47,0,0,0.47,0.47,0.94,0,0,0,0.94,0,0,1.88,0,0.94,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0.218,0,0,1.102,6,54,1 0,0,0,0,0,0,0,0,0,1.47,0,1.47,0,0,0,0,0,0,7.35,0,1.47,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,2.769,15,36,1 0.19,0.19,0.29,0,1.07,0.19,0.19,0.97,0.87,0.58,0.09,1.07,0.19,0.87,0.09,0,0,1.17,3.71,0.68,1.75,0,0.09,0.29,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0.09,0.09,0,0,0,0,0,0,0,0,0,0,0.194,0.404,0.224,0.029,4.285,49,870,1 0,0,0,0,0.82,0,0,1.65,0,0.82,0,0,0,0,0,0,0.82,0,1.65,0,2.47,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0.113,0,0.113,0,0,1.25,4,50,1 0.79,0.19,0.09,0,0,0,0,0.09,0.29,0.09,0.29,0.59,0.69,0,0,0.09,0,0.59,4.09,0,0.89,0,0.39,0.49,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0.267,0,0.19,0.247,0,2.324,19,365,1 0,0,0,0,0,0.68,1.37,0.68,0,0,0,0.68,0,0,0,0,0,0.34,0.34,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0.34,0,0,0,0,0,0.34,0,0,0,0,0,0,0,0.103,0,0.206,0.309,0,4.029,69,270,1 0,0,0,0,0,0,0,0,0,0,0,0,0,0.85,0,0,0,0,0.85,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0.126,0,0,0,0,3.925,51,106,1 0,0,1.47,0,0,1.1,0.36,0,0,0,0.36,0.36,0,0,0,0.36,0,0,2.21,1.1,2.95,0,1.47,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0.118,0,0.414,0.888,0.177,3,33,177,1 0,0,0.31,0,0.62,0.62,0.62,0.31,0,1.88,0.62,1.25,0,0,0.31,1.56,0.31,0,3.76,0,1.25,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0.77,0,0,2.481,11,134,1 0.1,0.1,0.71,0,0.61,0.3,0.4,0.1,1.42,0.81,0.1,0.5,0,0,0,0.1,0,1.01,2.34,0.5,2.03,0,0,0.3,0,0,0,0,0,0,0,0,0,0,0.1,0,0,0,0.1,0,0,0,0,0,0,0,0,0,0,0,0.256,0.928,0.384,0.032,3.179,56,1043,1 0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,6.55,0,1.63,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,1,13,1 0.52,0.42,0.35,0,0.14,0.03,0.03,0.1,0.56,0.8,0.28,0.7,0.56,1.19,0.03,0.24,0.45,0,3.18,0,1.47,0,0.38,0.63,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0.07,0,0,0,0,0.075,0,0.452,0.528,0.116,6.152,260,2184,1 0,0,0,0,0,0,0,0,0,1.49,0,1.49,0,0,0,0,0,0,7.46,0,1.49,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,2.692,15,35,1 0,0.35,0.71,0,0.35,0,0.17,0,0,0.53,0.17,0,0.17,0,0.35,0.17,0,1.07,0.17,0.17,0.71,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0.027,0,0.167,0.027,0.055,7.527,149,956,1 0,0.64,0.64,0,0.32,0,0,0,0,0,0,0.64,0,0,0,0.32,0,1.29,1.62,0,0.97,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0.053,0,1.065,0,0,3.932,61,291,1 0.56,0,0.84,0,0.28,0.84,0,0.84,0.28,0.28,0.28,1.41,0,0,0,0,1.41,0,0.84,1.98,2.83,0,0.28,0.84,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0.129,0,1.294,0.043,0,3.979,47,386,1 0,0.64,1.29,0,0.32,0,0,0,0,0,0,0.64,0,0,0,0.32,0,1.29,2.59,0,1.29,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0.32,0,0,0,0,0.053,0,0.531,0,0,4.337,121,334,1 0.34,0.05,0.58,0,0.63,0.17,0,0,0.75,0.23,0.34,1.27,0.34,0,0,0.58,0.05,0.17,3.01,2.61,1.5,0,0.17,0.34,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0.201,0,0.127,0.182,0.027,4.225,131,1107,1 0,0,0.63,0,0,1.27,1.27,0.63,0,0,0,0.63,0,0,0,0,0.63,0,4.45,3.18,3.82,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0.983,0.089,0,3.488,59,157,1 0.44,0,0.88,0,0.44,1.32,0.44,0,0,0,0,0,0,0,0,0,0,0.44,1.76,0,2.2,0,2.2,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0.215,0,0,0.43,0.358,0,2.403,16,137,1 1.26,0.42,1.26,0,0,0,0,0,0,0,0,0.42,0,0,0,0.42,0,0.84,3.79,0,1.26,0,0,0.42,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0.42,0,0,0,0,0.067,0,0.472,0.472,0,3,19,108,1 0,0,0,0,0,0,2.94,1.47,1.47,1.47,1.47,0,0,0,0,0,2.94,0,0,1.47,4.41,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0.141,0,0.425,0.141,0,140,279,280,1 0,0.57,0,0,0.57,0,0.57,0,0,0.57,0,0.57,0,0,0,0,0,0.57,4.57,0,1.14,0,0,0,0.57,0.57,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0.57,0,0,0,0.072,0,0,0.072,0.289,0.144,7.512,114,293,1 0.89,0,0.89,0,0,0,1.78,0,0,0,0.89,1.78,0,0,0,0,0,0,6.25,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0.89,0,0,0,0,0,0,1.344,0,0,5.25,16,84,1 0,0,0,0,0,0,4.08,0,0,0,0,0,0,0,0,0,0,0,2.04,0,0,0,0,2.04,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0.257,0,0,4.181,26,46,1 0,0,0,0,0,0,2.94,1.47,1.47,1.47,1.47,0,0,0,0,0,1.47,0,0,1.47,4.41,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1.47,0,0,0,0,0,0,0,0,0,0,0,0,0.142,0,0.427,0.142,0,92.333,274,277,1 0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,6.52,0,0,2.17,0,2.17,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1.149,0,0,9.1,33,91,1 0.13,0.26,0.52,0,0.26,0,0.13,0,0,0.39,0.13,0.13,0.13,0,0.26,0.13,0,0.78,0.39,0.13,0.52,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0.366,0,0.04,7.138,149,1235,1 0,0,0,0,0,0,1.94,0,0,0,0,0,0,0,0,2.91,3.88,0,1.94,0,1.94,0,0,1.94,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0.97,0,0,0,0,0.97,0,0,0,0,0.13,0,0.52,0.13,0,6.266,26,94,1 0,0.43,0,0,0.43,0,0.86,0,1.3,0.86,0,1.3,0,0,0,0,0,0,0.43,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0.43,0,0,0,0,0,0,0,0,0,0,0,0.063,0.126,0,0,0.063,0,4.297,30,159,1 0,0.44,0.44,0,0,0,0,0,0,0,0,0.88,1.32,0,0,0,0,0.88,3.96,0,3.08,0,0.44,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0.074,0,0.669,0.297,0,3.666,82,165,1 0,0.65,0.98,0,0.32,0,0,0,0,0,0,0.65,0,0,0,0.32,0,1.3,2.61,0,1.3,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0.32,0,0,0,0,0.053,0,0.477,0,0,4.273,121,312,1 0,0,0,0,0.89,0,0,0,0,0,0,0.89,0,0,0,0,0,0,1.78,0,2.67,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0.121,0,1.336,0,0,6.611,51,238,1 0.33,0,0.33,0,0,0,0.66,0,0,0,0,1.32,0,0,0,0.66,0.99,0,2.64,0,0.99,0,0.66,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0.66,0,0,0,0,0,0,0,0,0,0,0.116,0,0.406,0.464,0.348,6.932,43,513,1 0,0,0.94,0,0,0,0.94,0,0,1.88,0,1.88,0,0,0,0,0,0,4.71,0,0.94,0,0,0.94,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0.163,1.305,0,2.571,20,36,1 0.73,0,0.36,0,0.36,0.36,1.1,0,0,0,0,0.36,0,0,0,0.36,1.84,0.73,2.58,0,1.1,0,0.36,1.1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0.186,0,0.435,0.062,0,4.411,190,300,1 0,0.66,0.66,0,1.33,0.33,0.33,0,0.33,0,0.33,0.33,0,0,0,0.33,0.66,1,1,1,2,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0.66,0,0,0,0,0.266,0,0.372,0.159,0,1.894,14,161,1 0,0.3,0.75,0,0.3,0,0.15,0,0,0.45,0.15,0,0.15,0,0.15,0.15,0,0.75,0.15,0.15,0.6,0,0,0,0,0,0,0.15,0,0,0,0,0.15,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0.02,0,0.352,0.02,0.041,5.938,149,1057,1 0.57,0,1.72,0,0,0,0,0.57,0,0,0,0.57,1.72,0,0,0,0.57,0,4.59,0,0,0,0,0.57,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0.099,0,0.396,0.099,0,2.333,11,70,1 0,0,0,0,0,0,1.04,0,0,0,0,1.04,0,0,0,0,1.04,0,3.66,0,2.09,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0.062,0.248,0,0.621,0.062,0.062,3.902,59,160,1 0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,4.76,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,1,3,1 0,0.28,0.84,0,0.28,0,0.14,0,0,0.42,0.14,0,0.14,0,0.14,0.14,0,0.7,0.42,0.14,0.84,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0.14,0,0,0,0,0,0,0,0,0,0,0,0.583,0,0.067,5.415,132,991,1 0.51,0.25,0.49,0,0.04,0.23,0.04,0.32,0.38,0.81,0.21,0.9,0.79,1.24,0.02,0.21,0.36,0.04,3.49,0,1.54,0,1.09,0.36,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0.02,0,0.1,0,0,0,0,0.058,0,0.308,0.672,0.128,5.459,193,3243,1 0.7,0,0.35,0,0.7,0.35,0.7,0,0.7,0,0,0,0.7,0,0,0,1.05,0,3.16,0,1.4,0,0,1.05,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0.173,0,0.23,0,0,4.596,60,262,1 0.3,0,1.23,0,1.54,0.92,0.61,0.92,0.3,0.3,0,0.3,0,0,0,0,0.3,0,2.47,0.92,0.92,0,1.23,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0.3,0,0,0,0,0.045,0,0.728,0.182,0,4.339,60,243,1 0,0,0.84,0,0.56,0,0,0.56,0,0,0,0,0,0,0,0.28,0,0,1.13,0,0.28,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0.28,0,0,0,0,0,0,0,0,0,0.278,0,0.046,0,0,1.661,6,118,1 0,0.7,1.05,0,0.35,0,0,0,0,0,0,0.7,0,0,0,0.35,0,1.4,2.46,0,1.4,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0.35,0,0,0,0,0.056,0,0.897,0,0,4.43,121,350,1 0.56,0,0.32,0,1.13,0.08,0,0,0.16,0,0.08,0.72,0.56,0,0,0.24,1.13,0,4.6,0,2.01,0,0,0.32,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0.32,0,0,0,0,0.121,0,0.337,0.054,0,3.502,79,606,1 0,0.26,0.26,0,0.39,0,0.13,0,0,0.26,0,0.26,0.26,0,0.13,0.26,0,0.13,3.14,0.26,1.44,7.33,0.13,0.26,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0.13,0,0,0,0,0,0,0.022,0.022,0.889,12.454,107,1096,1 0,0,1.29,0,0,1.29,0,0,0,0,0,0,0,0,0,2.59,0,0,1.29,0,1.29,1.29,2.59,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0.439,0,1.098,0,0.439,3.571,36,125,1 0.09,0.38,0.57,0,0.48,0.38,0,0,0,0.38,0,1.53,0.19,0,0.09,0,0.09,0,3.55,0,1.24,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0.038,0.038,0,0.246,0.894,0.012,4,70,640,1 0.34,0,1.7,0,1.02,0,0,0,0.68,1.02,0,0,0,0,0,0,0,0,0.34,1.02,0.68,0,0,0,0.34,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0.902,0.106,0,664,1327,1328,1 0,0.8,0,0,0.8,0,0.8,0,0,0.8,0,0,0,0,0,0.8,0.8,0.8,1.61,0,1.61,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0.134,0,0.269,0,0,3.115,19,81,1 0,0,0,0,3.33,0,0,0,0,0,0,0,0,0,0,0,0,0,6.66,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1.111,0,0,1.409,10,31,1 0,0,0.28,0,0.16,0.18,0,0,0,0,0.02,0.09,0.11,0,0,0,0,0,0.14,0,0.02,0,0,0.04,0,0,0,0,0,0,0,0,0,0.07,0,0,0,0,0.02,0,0,0,0,0,0,0,0,0,0,0.116,0.021,0.03,0,0,16.644,154,9088,1 0.82,0,0,0,0.41,0,0.82,0,0,0,0,0.82,0,0,0,0,0.41,0,2.46,0,1.23,0,0.41,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0.41,0,0.171,0,0.513,0.114,0,2.953,44,189,1 0,0.42,0,0,0.42,0.42,0,0,0,0,0,0,0,0,0,0.42,0,0.42,4.2,0,0,0,0.42,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0.42,0,0,0,0,0.08,0,0.644,0.161,0,2.522,14,111,1 0.1,0.1,0.7,0,0.6,0.2,0.4,0.1,1.41,0.8,0.1,0.5,0,0,0,0.1,0,1.11,2.22,0.4,1.92,0,0,0.3,0,0,0,0,0,0,0,0,0,0,0.1,0,0,0,0.1,0,0,0,0,0,0,0,0,0,0,0,0.26,0.991,0.39,0.032,3.173,56,1044,1 0,0,0.28,0,0.16,0.18,0,0,0,0,0.02,0.09,0.11,0,0,0,0,0,0.14,0,0.02,0,0,0.04,0,0,0,0,0,0,0,0,0,0.07,0,0,0,0,0.02,0,0,0,0,0,0,0,0,0,0,0.116,0.021,0.034,0,0,16.587,154,9090,1 0.87,0.17,0.52,0,0,0.32,0,0.04,0.29,0.42,0.39,1.37,0.87,1.69,0,0.32,0.54,0.22,3.47,0.29,1.32,0,0.34,0.84,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0.02,0.07,0,0.04,0,0.016,0.058,0,0.64,0.166,0.183,3.697,117,3498,1 0.43,0,0,0,0,0,0,0,0,0,0,1.29,0,0,0,0,0,0.43,1.29,0,1.29,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0.86,0,0,0,0,0,0,0,0,0,0,0,0,0,0.122,0,0.061,0,0,1.456,13,67,1 0,0.81,0.61,0,0,1.02,0,0.2,0.4,0.61,0,2.25,0,0,0,0,0.61,0,2.86,0,1.02,0,0,0.2,0,0,0.2,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0.095,0,0.158,0.063,0,2,31,156,1 2.32,0,0.77,0,1.55,0,0,0,0,0,0,0.77,0,0,0,0.77,0,0,2.32,0,0.77,0,0,0.77,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0.77,0,0.134,0,0.671,0,0,129.5,515,518,1 0.08,0.08,0.48,0,0.16,0.24,0,0,0.24,0.08,0,0.56,0,0,0,0,0,0.08,0.88,0.08,0.48,4.57,0.4,0.72,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0.233,0.202,0.326,8.763,102,1481,1 0.07,0,0.55,0,0.63,0.23,0.07,0.23,0,0.23,0.07,0.55,0.63,0,0,0.47,0.31,0.31,2.76,0,1.49,0,0.55,0.31,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0.012,0,1.132,0.077,0.012,3.382,77,707,1 0.52,0.42,0.35,0,0.14,0.03,0.03,0.1,0.56,0.8,0.28,0.7,0.56,1.19,0.03,0.24,0.45,0,3.19,0,1.43,0,0.38,0.63,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0.07,0,0,0,0,0.077,0,0.453,0.543,0.119,6.305,286,2207,1 0.4,0.18,0.32,0,0.25,0.18,0.03,1.01,0.4,0.4,0.1,0.72,0.65,0.36,0.25,0.54,0.36,0.36,3.05,0.14,1.41,0,0.29,0.76,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0.03,0,0,0,0,0.07,0,0,0,0.012,0.042,0.073,0.337,0.141,0,3.305,181,1613,1 0,0,2.22,0,0,0,2.22,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,2.22,0,0,0,0,0,0,0,0,0,0,0,0,0.439,0,3,11,24,1 0,0,0,0,1.91,0,0.31,0.31,0,0.31,0.63,1.59,0.63,0,0.63,0,0.63,2.23,3.19,0,1.59,0,0.31,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0.63,0,0,0,0,0,0,0,0,0,0.092,0,0.323,0,0,2.15,18,86,1 0,0.75,0.25,0,0,0,0,0.5,0,0.5,0.25,0.75,0,0,0,1.5,0,1.5,4.26,0,4.51,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0.045,0.18,0,0,0,0,1.023,3,86,1 0,0,0,0,0,0,0,0.74,0,0,0,0,0,0,0,2.23,0,0,1.49,0,0,0,0,0,0,0,0,0,0,0,0,0,0.74,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0.109,0,0,2.263,24,86,1 0,0,1.29,0,0,1.29,0,0,0,0,0,0,0,0,0,2.59,0,0,1.29,0,1.29,1.29,2.59,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0.439,0,1.098,0,0.439,3.571,36,125,1 0,0,0,0,0,0,0,0,0,0,0,0,2.58,0,0,0,0,0,2.58,0,1.72,0,0.86,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0.142,0,0,3.851,0,0,13.266,70,199,1 0,0,0,0,0.59,0,0.59,0,0,0,0,0,0,0,0,0,0,0,0.59,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1.18,0,0,0,0,0,0,0,0,0.59,0,0,0,0,0.052,0,0.052,0.105,0,2.886,27,127,1 0.1,0.2,1.01,0,0.8,0.8,0.5,0,0.8,0.1,0.3,0.7,0.3,0,1.61,0.1,0,1.11,1.31,0.2,0.7,0,0.6,0.1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0.2,0,0.1,0.1,0,0,0,0.11,0,0.49,0.158,0.015,8.55,669,1351,1 0,0.33,0.33,0,1.65,0.33,0.66,0,0,0.16,0.16,0.99,0,0,0,0.82,0.33,0.16,2.81,0,0.99,0,0.49,0.33,0,0,0,0,0,0,0,0,0.16,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0.024,0.074,0.248,0.049,0.049,6.161,350,727,1 0.4,0.26,0.93,0,0,0.8,0,0.8,0.8,1.2,0,0.8,0.4,0,1.46,0,0.26,2.26,2.4,0.53,1.06,0,0.8,0.93,0,0,0,0,0,0,0,0,0,0,0.13,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0.593,0.217,0.039,11.463,525,1112,1 0.1,0.2,1.01,0,0.8,0.8,0.5,0,0.8,0.1,0.3,0.7,0.3,0,1.61,0.1,0,1.11,1.31,0.2,0.7,0,0.6,0.1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0.2,0,0.1,0.1,0,0,0,0.11,0,0.49,0.158,0.015,8.55,669,1351,1 0.15,0.21,0.58,0,0.15,0.15,0.05,0.1,0,0.42,0.1,0.95,0.42,0.05,0.05,0,0,0.36,3.16,0,1.58,0,0.52,0.31,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0.027,0.184,0,0.406,0.388,0.036,4.829,116,1589,1 0.1,0.1,0.71,0,0.51,0.2,0.2,0.1,1.43,0.82,0.1,0.51,0,0,0,0.1,0,1.02,2.15,0.41,1.84,0,0,0.3,0,0,0,0,0,0,0,0,0,0,0.1,0,0,0,0.1,0,0,0,0,0,0,0,0,0,0,0,0.264,0.974,0.396,0.033,3.163,56,1028,1 0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,15.43,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1.118,17.481,49,472,1 0,0,0.71,0,0.71,0,0,0,0,0,0,0,0,0,0,0.71,0,1.43,2.15,0,2.15,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0.256,0.128,0,0,1.779,11,105,1 0,0.81,1.47,0,1.3,0,0.98,0.98,0.32,1.79,0,0.81,0,0,0.32,0.49,0.65,0,0.98,0.16,1.3,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0.16,0,0,0,0.16,0,0,0,0,0,0,0,0,0,0.247,0,0.179,0.674,0,2.922,113,640,1 0.1,0.1,0.7,0,0.6,0.2,0.4,0.1,1.41,0.8,0.1,0.6,0,0,0,0.1,0,1.01,2.22,0.4,2.02,0,0,0.3,0,0,0,0,0,0,0,0,0,0,0.1,0,0,0,0.1,0,0,0,0,0,0,0,0,0,0,0,0.265,0.977,0.397,0.033,3.16,56,1046,1 0,0,0,0,0,0,4,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,8.166,19,49,1 0,0,0,0,0.84,1.27,0.42,0,0,0.42,0.42,0.42,0,0,0,0,0,0.42,2.11,0,1.27,0,3.38,0,0,0,0,0,0,0,0,0,0,0,0,0.42,0,0,0,0,0,0,0,0,0.42,0,0,0,0.097,0.097,1.171,0.244,0.39,0,26.405,363,977,1 0.11,0.11,0.47,0,0,0.11,0.23,0,0.35,0.35,0.11,0.94,0.11,0,0,0.11,0,0,3.76,0,1.29,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0.23,0,0,0,0,0.233,0,0.287,0.107,0.035,3.439,64,509,1 0,0.37,0,0,0,0.74,1.12,0,0,0,0.74,1.49,0.74,0,0,0.37,0,1.49,4.49,0,1.87,0,0,0.74,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0.223,0.223,0,2.021,10,93,1 0.24,0,0.99,0,0.99,0,0.49,0.99,0,0.24,0,0.49,0,0,0,0.49,0.99,0.74,1.98,0.74,0.99,0,0,0.49,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0.179,0,0.847,0.077,0,3.219,114,499,1 0.4,0.14,0.32,0,0.25,0.18,0.03,1.01,0.4,0.4,0.1,0.72,0.65,0.36,0.25,0.54,0.36,0.32,3.05,0.14,1.45,0,0.29,0.76,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0.03,0,0,0,0,0.07,0,0,0,0.012,0.042,0.073,0.343,0.141,0,3.328,181,1621,1 0.95,0,0.47,0.95,0,0.95,0,0,0.47,0,0.47,0,0,0,1.42,0.47,0.47,2.38,0,0,0.95,0,0,0.47,0,0,0,0,0,0,0,0,0.47,0,0,0,0,0,0,0,0,0,0,0,0,0.47,0,0,0,0.791,0,0.169,0.452,0.113,9.64,259,723,1 0,0,0,0,0,0.63,0,1.58,0.31,0.63,0,0.95,0,0,0,0,0,0,1.26,0,0.63,0,0.31,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0.103,0,0.206,0.206,0,4.171,76,292,1 0,0,0,0,0.47,0,1.41,0,0,0,0.47,0.47,0,0,0,0.47,0,1.88,1.41,0.47,1.41,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0.145,0.145,0,4.041,54,194,1 0,0.81,1.47,0,1.3,0,0.98,0.98,0.32,1.79,0,0.81,0,0,0.32,0.49,0.65,0,0.98,0.16,1.3,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0.16,0,0,0,0.16,0,0,0,0,0,0,0,0,0,0.246,0,0.179,0.673,0,2.922,113,640,1 0,0,0,0,0.47,0,1.41,0,0,0,0.47,0.47,0,0,0,0.47,0,1.88,1.41,0.47,1.41,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0.144,0.288,0,3.745,54,191,1 0,0,0,0,0,0,1.96,0,0,0,0,0,0,0,0,0,0,0,1.96,0,1.96,0,0,1.96,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0.334,0,0,3.214,22,45,1 0,0,0.47,0,0.7,0,0.7,0.23,0,0,0,0.47,0,0,0,1.65,0.7,0.23,2.12,0,1.65,0,0,0.23,0,0,0,0,0,0,0,0,0,0,0,0.23,0,0,0,0,0,0,0,0,0.23,0,0,0,0,0.037,0.037,1.362,0.037,0,5.236,111,576,1 0,0,0,0,0.38,0.38,0.38,0.38,0,0,0.38,0,0,0,0,0.38,0,0,3.5,0,1.94,0,0,0.38,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0.122,0,0,2.08,12,104,1 0.33,0,1.65,0,0.99,0,0.33,0,0.66,1.32,0,0,0,0,0,0,0,0,0.33,0.99,0.66,0,0,0,0.33,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0.859,0.101,0,337.25,1146,1349,1 0.32,0,1.64,0,0.98,0,0.32,0,0.65,1.31,0,0,0,0,0,0,0,0,0.32,0.98,0.65,0,0,0,0.32,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0.858,0.101,0,337.25,1146,1349,1 0,0.2,0.61,0,1.03,0,0.41,0.2,0,0.2,0,0.41,0.2,0,2.06,0.2,0,2.47,2.06,0,1.03,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0.2,0,0,0,0,0.2,0,0,0,0,0,0,0.238,0.034,0,3.632,32,247,1 0.1,0.2,1.01,0,0.8,0.8,0.5,0,0.8,0.1,0.3,0.7,0.3,0,1.61,0.1,0,1.11,1.31,0.2,0.7,0,0.6,0.1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0.2,0,0.1,0.1,0,0,0,0.11,0,0.49,0.158,0.015,8.55,669,1351,1 0.16,0.24,1.24,0,0.41,0.58,0.49,0.33,0.66,0.66,0.24,1.24,0.16,0,0.66,0.82,0.16,1.57,2.32,0.16,1.16,0,0.91,0.16,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0.08,0,0,0,0,0.08,0,0,0,0,0.132,0,0.25,0.224,0.013,5.872,581,1339,1 0.16,0.24,1.24,0,0.41,0.58,0.49,0.33,0.66,0.66,0.24,1.24,0.16,0,0.66,0.82,0.16,1.57,2.32,0.16,1.16,0,0.91,0.16,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0.08,0,0,0,0,0.08,0,0,0,0,0.132,0,0.25,0.224,0.026,5.872,581,1339,1 0.93,0,0.93,0,0.93,0.93,0,0.93,0,0,0,0,0.93,0,0,0,0,0,3.73,0,2.8,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0.343,0,0.343,0.171,0,2.235,15,38,1 0,0,1.63,0,0,0.65,0,0,0,0,0.32,0.32,0,0,0,0.32,0,0,1.96,0.98,2.94,0,1.3,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0.11,0,0.276,0.83,0.166,3.8,33,228,1 0,0,0,0,0.39,0.39,0.39,0.39,0,0,0.39,0,0,0,0,0.39,0,0,3.52,0,1.96,0,0,0.39,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0.124,0,0,1.94,12,97,1 0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1.055,3,38,1 0,0.36,0,0,0,0.36,1.47,0,0,0.36,0.36,0.73,0,0,0,0.36,0,1.1,2.2,0,0.73,0,0.36,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0.183,0,0.367,0.061,0.122,4,36,264,1 0,0,0.24,0,0.72,0,0,0,0.48,0,0,0.48,0,0,0,0,0,0.96,0.96,0,0.72,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0.24,0,0,0,0,0,0,0.328,0,0,1.74,48,141,1 0.17,0,0.17,0.17,1.44,0.34,0.05,0.05,0.05,0.05,0.05,0.51,0.28,0.05,0,0,0.69,0.05,4.14,0.23,1.09,0.17,0.74,0.05,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0.01,0.05,0,0.01,0.161,0.03,2.051,51,521,1 0.98,0,0.32,0,0.98,0,0,0,0,0,0,0,0.98,0,0,0.65,0,0,3.6,0,3.93,0,0.32,0.65,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0.529,0.411,0,3.964,132,222,1 0.07,0.64,0.64,0,0.35,0.71,0.57,0.14,1.14,0.5,0.07,0.35,0.21,0,1,0.14,0.07,1.14,1.5,0,1.14,0,0.35,0.21,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0.07,0,0,0,0,0,0.07,0,0,0,0.08,0,0.309,0.103,0,4.923,117,1295,1 0,0,0.71,0,0.89,0.17,0.17,0,0,1.24,0.17,0,0,0,0.89,0,0.17,0.35,1.24,0.17,1.42,6.41,1.06,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0.278,0.216,0.836,8.523,58,895,1 0,0,0.38,0,1.15,0.38,0,0.19,0.19,0,0,1.72,0,0,0,0,0.19,0,4.03,0,2.3,0,0.38,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0.19,0,0,0,0,0,0,0,0,0,0.031,0,0.349,0,0,5.886,105,312,1 0,0,0.72,0,2.91,0,0.72,0,0,0,0,0,0,0,0,1.45,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0.72,0,0,0,0,0,0,0,0,0,0,0.373,0,0.124,0.124,0,1.781,12,114,1 0,0,0.22,0,0.67,0,0,0,0.44,0,0,0.44,0,0,0,0,0,0.89,0.89,0,0.67,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0.22,0,0,0,0,0,0,0.305,0,0,1.895,48,163,1 0,0,0,0,0,0,0,0,0,1.35,0,0,0,0,0,1.35,0,0,1.35,0,0,0,2.7,0,1.35,1.35,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1.836,0,0,3.285,19,92,1 0,0.53,0.53,0,0.8,0,0.26,0.26,0,0.26,0,0.53,0.53,0.53,0,0,0,0,2.15,0.26,0.8,0,0,0,0.26,0.26,0,0,0,0,0,0,0.53,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0.04,0,2.779,21,164,1 0,0,0.89,0,1.79,0.44,0,0,0,0,0,0.44,0,0,0,1.34,0,0,2.24,0,4.48,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0.075,0.075,0,0,0,1.968,11,124,1 0,0,0.34,0,0,0,0.34,0,0,0.34,0,0.34,0,0,0,0.68,0.34,0.34,0.68,0.34,0.34,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0.34,0,0,0,0,0,0,0.34,0,0,0.393,0,0.224,0.056,0,2.257,17,158,1 0,0,0.52,0,1.58,0,1.05,0,0,1.05,0.52,1.58,0,0,0,0.52,0,0,1.05,0,0.52,0,0,0,0.52,0.52,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0.25,0,0,0,0,2.82,23,110,1 0,0,0,0,0.43,0.43,0.43,0,0,0.43,0,0.43,0,0,0,0,0,0,0.87,0,0,9.17,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0.065,0,1.047,9.269,89,482,1 0,0,0.67,0,0.27,0.27,0.13,0,0.13,0.27,0,0.4,0.4,0,0,0,0.27,0,0,0,0,0,0.27,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0.109,0,0.021,0,0,1.728,12,204,1 0.24,0,0.24,0,0,0.48,0.24,0,0,0.48,0.24,0.72,1.2,0,0,1.68,0.72,0,1.92,0,1.68,0,0.24,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0.677,0.828,0.15,4.333,52,429,1 0,0.18,1.1,0,0.73,0.73,0.73,0.09,0.83,0.27,0.27,0.64,0.27,0,1.47,0.09,0,1.2,1.38,0.18,0.64,0,0.55,0.18,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0.18,0,0.09,0.09,0,0,0,0.094,0,0.432,0.135,0.013,8.445,696,1478,1 0,0,0,0,0,0,0,0,0,0,0,6.25,0,0,0,0,0,0,12.5,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,1,2,1 0,0,0.34,0,0,0,0.34,0,0,0.34,0,0.34,0,0,0,0.68,0.34,0.34,0.68,0.34,0.34,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0.34,0,0,0,0,0,0,0.34,0,0,0.393,0,0.225,0.056,0,2.257,17,158,1 0.68,0.17,0.51,0,0.34,0,0.51,0,0,0.51,0,0.51,0.51,0.17,0.17,0.34,0.17,1.02,4.96,0,1.36,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0.34,0,0,0,0.063,0.095,0,0.126,0,0,2.285,40,224,1 0,1.15,0.86,0,0.57,0.28,0.57,0,0,0.28,0,0.57,0,0,0,1.72,0,0.86,4.32,0,2.01,0,0,0.28,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0.142,0,0.19,0,3.423,6.584,56,349,1 0,0,0,0,0,0,7.27,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0.291,0,0,2.444,8,44,1 0,0,0.75,0,0.75,0,0.5,0.25,0,1.01,0,0.25,1.51,0,0.75,0,0,1.51,2.02,0,1.51,0,0.75,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0.5,0,0,0,0,0,0,0,0,0,0.078,0,0.432,0.432,0,2.375,19,247,1 0,0,0.32,0,0.65,0.32,0.32,0.32,0,0,0.65,1.3,0,0,0,0.98,0,0.65,2.61,2.61,3.26,0,0,0.65,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0.051,0,0.103,0,0.103,5.85,137,234,1 0,0.67,0.67,0,0.5,0,0.16,0.16,0,0,0,0.33,0.67,0.67,0.5,0,0,0,2.52,0.5,1.51,0,0,0.16,0,0,0,0,0,0,0,0,0.33,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0.079,0.105,0.052,2,32,260,1 0,0.66,0.66,0,0.49,0,0.16,0.16,0,0,0,0.33,0.66,0.49,0.66,0,0,0,2.47,0.49,1.48,0,0,0.16,0,0,0,0,0,0,0,0,0.33,0,0,0,0,0,0,0,0,0,0,0,0.16,0,0,0,0,0,0,0.076,0.101,0.05,2.03,32,264,1 0,0.69,0.69,0,0.51,0,0.17,0.17,0,0,0,0.34,0.69,0.69,0.69,0,0,0,2.59,0.51,1.55,0,0,0.17,0,0,0,0,0,0,0,0,0.34,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0.079,0.106,0.053,2,32,260,1 0,0,1.47,0,0,1.1,0.36,0,0,0,0.36,0.36,0,0,0,0.36,0,0,2.21,1.1,2.95,0,1.47,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0.124,0,0.435,0.932,0.186,2.932,33,173,1 0.46,0.33,0.2,0,0.13,0.53,0.06,0.2,0,1.13,0.33,0.66,0.93,0,0.2,0,0,0,3.6,0,1.13,0,0.13,0.26,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0.012,0.038,0,0.41,0.192,0.115,4.754,268,813,1 0,0,0.56,0,0,0,0,0,0,1.12,0,0,0,0,0,0,0,0,1.69,0,0.56,2.25,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0.493,0.197,0.394,0,0.394,3.537,22,237,1 0,0.67,0.67,0,0.5,0,0.16,0.16,0,0,0,0.33,0.67,0.67,0.5,0,0,0,2.37,0.5,1.52,0,0,0.16,0,0,0,0,0,0,0,0,0.33,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0.08,0.107,0.053,2.015,32,258,1 0,0,0,0,0.76,0.38,0.38,0.38,0,0,0.38,0,0,0,0,0.38,0,0,3.46,0,1.92,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0.38,0,0,0,0,0,0,0.117,0,0,2.061,12,101,1 0,0,0,0,0.93,0,0,0,0,0.93,0,0,0,0,0,0,0,0,2.8,0,2.8,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,11.066,73,166,1 0,0,0,0,3.69,0.56,0,0.56,0.56,0.56,0,0,0,0,0,0,3.4,0,0.85,1.13,0.56,0,0,0.28,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0.092,0,0.371,0.046,0,14.58,97,452,1 0,0,0,0,0.94,0,0,0,0,0.94,0,0,0,0,0,0,0,0,2.83,0,2.83,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,10.533,65,158,1 0.26,0.08,0.26,0,0.53,0.08,0.08,0.08,0.97,0.62,0.08,1.15,0.08,0.7,0.17,0.35,0.08,0,4.16,0.26,2.21,0,0.17,1.5,0,0,0,0,0,0,0,0,0,0,0.08,0,0,0.08,0,0,0,0,0,0,0,0,0,0,0,0.044,0,0.339,0.162,0.014,4.137,74,753,1 0,0.47,0.47,0,1.41,0,0.47,0,0,0.47,0.47,0.94,0,0,0,0.94,0,0,1.88,0,0.94,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0.224,0,0,1.102,6,54,1 0,0.89,0,0,0.89,0,0,0,0,0,0,0,0.89,0,0,0.89,0,0,6.25,2.67,1.78,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0.89,0,0,0,0,0.89,0,0,0,0,0,0,1.129,0.483,0,1.826,10,42,1 0,0,0.18,0,0.55,0.37,0.18,0.18,0,0.18,0,0.18,0,0,0,0,0,0,0.74,0,0.37,0,0.18,0,0,0,0,0,0,0,0,0,0.55,0,0,0.74,0,0,0,0,0,0,0,0,0,0,0,0,0,0.081,0,0,0.027,1.625,2.326,11,363,1 0.17,0,0.17,0,1.45,0.34,0.05,0.05,0.05,0.05,0.05,0.52,0.29,0.05,0,0,0.69,0.05,4.24,0.23,1.04,0,0.75,0.05,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0.01,0.051,0,0.02,0.163,0,1.796,12,460,1 0,0,0,5.03,0,0,0,0,0,0,0,0,0,0,0,1.16,0,0,0.77,0,0,7.36,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0.431,0,0,0.215,0,0.539,7.552,43,506,1 0,0,0.44,0,1.32,0,0.44,0,0,1.32,0,0,0,0,0,0,0.44,0,4.42,0,3.09,0,0,0.44,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0.301,0,0.301,0,0,2.787,19,131,1 0.49,0,0.74,0,0.24,0.24,0.24,0.49,0,0,0.49,2.24,0,0,0,0.49,0.99,0.24,3.99,0,1.99,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0.035,0,0.315,0.035,0,4.071,60,228,1 0,0,0,0,0.52,0,0,0,0,0,0,0,0,0.52,0,0.52,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0.52,0,0,0,0,0,0,0,0,0,0.52,0,0,1.56,0,0,0,0.077,0,0.077,0,0,1.388,11,75,1 0,0,0,0,0,1.29,0,0.64,0,0,0,0,0,0,0,0,0,0,3.87,0,0.64,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1.179,0.117,0,1.8,12,63,1 0.42,0,0.42,0,2.53,0.42,0.42,0,0,0.84,0.42,0.84,0,0,0,1.68,0,0,2.95,0,2.1,0,2.53,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0.291,0,0.072,1.457,0.072,2.632,12,179,1 0,0,0,0,3.98,0.44,0,0.44,0,0.88,0,0,0,0,0,0.88,0,0,0.88,0.44,1.32,0,0,0,0,0,0,0,0,0,0,0,0.44,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0.257,0,0.064,0.128,0,2.215,23,113,1 0,0,0,0,0.49,0,0.98,0,0.49,0,0,0,0,0,0,0,0,0,1.47,0,2.46,0,0.49,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0.49,0,0,0,0,0,0,0.466,0,0,0,0,2.373,12,197,1 0.09,0.19,0.98,0,0.78,0.78,0.49,0,0.78,0.19,0.29,0.68,0.29,0,1.57,0.09,0,1.08,1.28,0.19,0.68,0,0.59,0.09,0.09,0.09,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0.19,0,0.09,0.09,0,0,0,0.102,0,0.393,0.145,0.014,8.323,669,1415,1 0,0,0,0,0,0,1.47,0,0,0,0,0,0,0,0,0,0,0,0,0,1.47,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0.496,0,0,0,0.248,1.985,3.15,12,63,1 0.17,0,0.17,0,1.47,0.35,0,0.05,0.05,0.05,0.05,0.52,0.29,0.05,0,0,0.7,0,4.17,0.23,1.11,0,0.76,0.05,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0.01,0.051,0,0.01,0.165,0,1.79,12,453,1 0,0,0,0,0,0,0,0,0,0,0,6.06,0,0,0,0,0,0,9.09,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,2.4,14,24,1 0.09,0,0.27,0,0.36,0.09,0,0.18,0.09,0,0,0.81,0,0.36,0,0,0,0,1.99,0,3.35,0,0.36,0.09,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0.27,0,0,0,0.015,0.047,0.031,0.253,0.031,0.031,3.771,69,528,1 0,0,0.55,0,0.22,0.22,0.11,0,0.11,0.22,0,0.33,0.33,0,0,0,0.22,0,0,0,0,0,0.55,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0.16,0,0.035,0.124,0,1.98,14,305,1 0,0,0,0,0.64,0,0.64,0,0,0,0,0.64,0.64,0,0,0,0,0,3.89,1.29,1.29,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0.64,0,0,0,0,0.64,0,0,0,0,0.115,0,0.921,0.345,0,1.833,11,55,1 0,0.95,0.95,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0.47,0.47,1.9,0,0,0.47,0,0,0,0,0,0,0,0.47,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0.066,0.2,0,0.267,0,0,4.18,45,464,1 0,0,0.54,0,0.21,0.21,0.1,0,0.1,0.21,0,0.21,0.32,0,0,0,0.21,0,0,0,0,0,0.54,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0.152,0,0.033,0.118,0,1.987,14,306,1 0.09,0,0.27,0,0.36,0.09,0,0.18,0.09,0,0,0.72,0,0.36,0,0,0,0,2,0,3.27,0,0.36,0.09,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0.27,0,0,0,0.015,0.047,0.031,0.252,0.031,0.031,3.816,69,542,1 0.09,0,0.27,0,0.36,0.09,0,0.18,0.09,0,0,0.72,0,0.36,0,0,0,0,2,0,3.27,0,0.36,0.09,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0.27,0,0,0,0.015,0.047,0.031,0.252,0.031,0.031,3.816,69,542,1 0,0.54,0,0,0,0,1.08,0,0,0.54,0.54,0.54,0,0,0,2.17,0,0.54,3.26,0,1.08,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0.54,0,0,0,0,0,0,0.347,0,0,1.325,5,53,1 0.32,0,0.32,0,0.98,0.32,0.65,0,0,0.32,0,0.98,0.32,0,0,0,0.65,0,2.61,0,2.28,0,0.65,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0.288,0.173,0,3.065,28,141,1 1.18,0.39,0.59,0,0,0.98,0.19,0.19,1.38,0.39,0,0.98,0,0.19,0,0.98,0,0,2.56,0.39,1.38,0,0,1.38,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0.238,0,0.766,0.317,0.026,6.652,76,632,1 0,0.31,0,7.18,0,0,0.31,0.62,0,1.25,0,0,0,0,0,0,0,0.62,0.93,0,0.62,0.31,0,0.31,0,0,0,0,0,0,0,0,0,0,0.62,0,0,0,0,0.31,0,0,0,0,0,0,0,0,0,0.183,0,0.61,0,0.122,9.218,51,507,1 1.01,0.33,0.5,13.63,0,0.67,0,0.16,1.34,0.33,0,0.67,0,0.16,0,0.5,0,0.16,2.02,0.33,0.84,0,0,1.17,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0.204,0,0.613,0.229,0.051,9.652,151,888,1 0,0.56,0,0,0.56,0,0,0,1.01,0.56,0.11,1.79,0.22,0.11,0,0.11,0.22,0.89,1.79,0,2.8,0,0,0,0.11,0.11,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0.186,0,0.056,0.056,0,2.153,53,532,1 0.72,0,0,0,1.45,0.72,0.72,0,0,1.45,0,0,0,0,0,0,0,0,1.45,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0.72,0,0,0,0,0,0,0,0,0,0,0,0,0,0.404,0,0.134,0,0,3.066,14,92,1 0.09,0,0.27,0,0.36,0.09,0,0.18,0.09,0,0,0.72,0,0.36,0,0,0,0,2,0,3.36,0,0.36,0.09,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0.27,0,0,0,0.015,0.047,0.031,0.237,0.031,0.031,3.758,69,530,1 0,0.27,0.82,0,1.37,0,0.82,0,0,0.82,0,0.82,0,0,0,0.82,0.27,0,2.75,0,1.1,0,0.82,0.27,0,0,0,0,0,0,0,0,0.27,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0.235,0,0.235,0.188,0,5.622,124,298,1 0,0,0.74,0,1.85,0.37,0.37,0,0,0.74,0,0.37,0,0,0,1.11,0,0,1.85,0,3.34,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0.264,0,0,0,0,2.492,12,172,1 0,0,0.68,0,0,0,0,1.36,0,0,0.68,0.68,0,0,0,0,0,0,3.4,0,1.36,0,0.68,0.68,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0.238,0.238,0,2.232,19,96,1 0,0.5,0.25,0,0.5,0,1.01,0,0,0.76,0.76,0.5,0.25,0,0,1.26,0.25,0.25,1.77,0,1.26,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0.25,0,0,0,0,0.113,0,0.189,0,0.151,8.972,447,646,1 0.07,0.22,0.82,0,0.52,0,0.07,0,0.67,0.59,0.22,0.82,0.07,0,0.14,0,0.07,0,3.29,0.22,1.87,0,0,0.22,0,0,0,0,0,0,0,0,0,0,0.07,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0.095,0,0.119,0.071,0.167,3.429,74,974,1 0.08,0.08,0.76,0,0.85,1.02,0.25,0.17,0.59,0.08,0.17,0.59,0.17,0,2.21,0.25,0.08,0.93,1.61,0.17,0.42,0,0.85,0.08,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0.08,0,0,0.17,0.08,0.08,0.08,0,0,0,0.065,0,0.408,0.118,0.013,7.55,669,1412,1 0,0,0,0,0,0,0,0,1.28,0,0,0,0,0,0,0,0,0,1.28,0,2.56,0,0,0,0,0,1.28,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0.61,0,0,3.809,28,80,1 0,0.56,0.28,0,0,0,0.56,0,0,0.56,0.28,0.56,0.28,0,0,1.41,0.28,0,1.97,0,1.12,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0.28,0,0,0,0,0.118,0,0.158,0,0.158,9.25,394,555,1 0,0,0,0.81,0,0,0,0,0,1.63,0,0,0,0,0,0,0,0,2.45,0,0,0,0,2.45,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0.249,0,0,0.124,0,0,3.707,14,152,1 0.34,0,1.7,0,1.02,0,0,0,0.68,1.02,0,0,0,0,0,0,0,0,0.34,1.02,0.68,0,0,0,0.34,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0.898,0.105,0,443.666,1325,1331,1 0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1.17,0,0,0,0,0.443,0,0.221,0.665,0,3.812,15,61,1 0,0.51,0,0,0.51,0.51,1.02,0,0,0,0,0,0,0,0,0,0,0.51,0.51,0,0.51,0,0.51,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0.142,0,0.071,1.212,0,7.025,130,281,1 0.48,0.97,0.97,0,0.48,0,0,0.48,0,1.95,0,2.43,0,0.48,0,0.48,0,0,1.95,0,5.36,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0.26,0,1.739,0.173,0.086,56.538,636,735,1 0.34,0,1.7,0,1.02,0,0,0,0.68,1.02,0,0,0,0,0,0,0,0,0.34,1.02,0.68,0,0,0,0.34,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0.898,0.105,0,443.333,1325,1330,1 0.09,0,0.27,0,0.36,0.09,0,0.18,0.09,0,0,0.72,0,0.36,0,0,0,0,2,0,3.36,0,0.36,0.09,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0.27,0,0,0,0.015,0.047,0.031,0.237,0.031,0.031,3.758,69,530,1 0.08,0.08,0.76,0,0.85,1.02,0.25,0.17,0.59,0.08,0.17,0.59,0.17,0,2.21,0.25,0.08,0.93,1.61,0.17,0.42,0,0.85,0.08,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0.08,0,0,0.17,0.08,0.08,0.08,0,0,0,0.065,0,0.408,0.118,0.013,7.55,669,1412,1 0,0,0,1.16,0,0,0,0,0,0,0,0,0,0,0,0,0,0,3.48,0,2.32,0,0,2.32,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,8.733,42,131,1 0,0,0,0,0,0,0,0,1.35,0,0,0,0,0,0,0,0,0,2.7,0,2.7,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0.636,0,0,3.809,28,80,1 0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1.57,0,0,0,0,0.78,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0.184,0,8.161,31,253,1 0.43,0.43,0.43,0,0.14,0.1,0.03,0.07,0.54,1.01,0.28,0.79,0.47,1.19,0.03,0.25,0.39,0,3,0,1.3,0,0.39,0.57,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0.1,0,0,0,0.011,0.077,0,0.458,2.33,0.113,6.601,266,2370,1 0.23,0.34,0.58,0,0.46,0.11,0.11,0.23,1.04,0.93,0,0.46,0,0.23,0.23,0,0.11,0,3.72,0.46,1.74,0,0,0.81,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0.46,0,0,0.075,0,0.131,0.056,0.018,4.47,74,675,1 0,0.67,0.33,0,0.33,0.33,0.33,0.33,0,0,0.67,1,0,0,0,1,0.33,0.33,2.68,2.68,3.02,0,0,0.67,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0.053,0,0.16,0,0.107,6.111,139,275,1 0.47,0.95,0.95,0,0.47,0,0,0.47,0,1.9,0,2.38,0,0.95,0,0.47,0,0,1.9,0,5.23,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0.253,0,1.687,0.168,0.084,57.076,634,742,1 0.46,0.93,0.93,0,0.46,0,0,0.46,0,1.86,0,2.33,0,0.46,0,0.46,0,0,1.86,0,5.14,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0.252,0,1.683,0.168,0.084,57.076,634,742,1 0.09,0,0.27,0,0.36,0.09,0,0.18,0.09,0,0,0.73,0,0.36,0,0,0,0,2.01,0,3.38,0,0.36,0.09,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0.27,0,0,0,0.016,0.048,0.032,0.257,0.032,0.032,3.689,69,535,1 0,0,0.73,0,0,0,0.73,0,0,0,0,0,0,0,0,2.2,0,0,1.47,0,1.47,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0.73,0,0,0,0,0,0,0,0,0,0,0,0,0.088,0,0,3.048,29,125,1 0,0,0,1.26,0,0,0.63,0,0,1.26,0,0,0,0,0,0.63,0,0,0.63,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0.195,0,0,0.979,0,0.293,8.476,68,356,1 0,0,0.74,0,0,0,0.74,0,0,0,0,0,0,0,0,2.22,0,0,1.48,0,1.48,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0.74,0,0,0,0,0,0,0,0,0,0,0,0,0.088,0,0,3.048,29,125,1 0.71,0,0.11,0,0.47,0.11,0,0.59,0.71,2.86,0.23,0.11,0.23,0,0.47,0.11,0.59,0.47,3.21,0,1.66,0,1.9,1.07,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0.11,0.11,0,0,0,0,0.11,0,0,0,0.072,0.127,0,0.418,0.254,0.018,9.705,148,1514,1 0,0,0.73,0,0,0.73,0.73,0,0,0,0,0,0,0,0,0.73,0,0,1.47,0,0,0,0.73,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0.875,0.109,13.129,2.08,12,52,1 0.68,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1.36,0,0,2.04,0,0,0.68,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0.125,0.375,0,1.001,0,0.25,4.551,32,132,1 0.5,0.4,0.33,0,0.13,0.03,0.13,0.1,0.54,0.78,0.3,0.71,0.54,1.15,0.03,0.27,0.44,0.03,3.19,0,1.42,0,0.37,0.61,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0.06,0,0,0,0,0.074,0,0.445,0.519,0.119,6.029,136,2213,1 0.67,0.16,1.35,0,1.01,0,0,0,0,0.16,0.16,1.69,0.5,0,0,0.33,0,0.16,5.77,0,1.35,0,0,0.84,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0.061,0,0.123,0.278,0.03,3.774,46,268,1 0,0,0,0,2.38,0,0,2.38,2.38,2.38,0,0,0,0,0,0,7.14,0,0,2.38,2.38,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0.396,0,0,22.714,149,159,1 0.18,0,0.09,0,0.36,0.09,0,0.36,0.09,0,0,0.63,0.09,0.36,0,0,0.09,0,1.27,0,3.38,0,0.36,0.09,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0.06,0.03,0.03,0.015,0,4.192,48,566,1 0,0,0.53,0,0.53,0,0,0.53,0,0,0,1.06,0,0,2.12,0,0.53,0.53,2.65,0,2.65,0,1.59,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0.53,0.53,0,0,0,0,0,0,0,0,0,0.191,0,0.095,0.478,0,5.038,60,131,1 0,0,0.52,0,0.52,0,0,0.52,0,0,0,1.05,0,0,2.11,0,0.52,0.52,2.64,0,2.64,0,1.58,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0.52,0.52,0,0,0,0,0,0,0,0,0,0.19,0,0.095,0.475,0,5.038,60,131,1 0,0,0.51,0,0.51,0,0,0.51,0,0,0,1.02,0,0,2.05,0,0,0.51,2.56,0,2.56,0,1.53,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0.51,0.51,0,0,0,0,0.51,0,0,0,0,0.189,0,0.094,0.473,0,5.038,60,131,1 0,0.1,0.31,0.1,1.05,0.42,0,0.31,0,0.1,0.1,0.84,0,0.1,0,2,0.84,0.21,1.69,0.31,0.31,0,0.52,0.1,0,0,0,0,0,0,0,0,0,0,0,0.31,0,0,0,0.1,0,0,0,0,0,0,0,0,0,0.054,0,0.384,0.182,0.201,8.851,299,1726,1 0,0,1.11,0,0,0,1.11,0,0,0,1.11,1.11,0,0,0,2.22,0,0,3.33,0,3.33,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0.138,0,0.138,0.138,0,2.7,11,54,1 0.31,0,0.63,0,0.47,0.47,0.15,0.79,0.15,0.63,0.31,1.42,0,0,0,0,1.58,0,2.05,1.58,3.95,0,0.15,0.47,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0.15,0,0,0,0,0.15,0,0,0,0,0.076,0,1.3,0.127,0,5.241,97,650,1 0,0,0,0,0,0,0.91,0,0,0,0,0.91,0,0,0,0.91,0,1.83,4.58,0,1.83,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0.151,0,0.455,0,0,2.842,10,54,1 0.31,0,0.63,0,0.47,0.47,0.15,0.79,0.15,0.63,0.31,1.42,0,0,0,0,1.58,0,2.05,1.58,3.95,0,0.15,0.47,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0.15,0,0,0,0,0.15,0,0,0,0,0.076,0,1.3,0.127,0,5.241,97,650,1 0,0,0.32,0,0.64,0.64,0.64,0.32,0,0,0,0.32,0.32,0,0,0.32,0.32,0.32,2.27,0,3.24,0,0,0.32,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0.64,0,0,0,0,0.166,0,0,0.166,0,1.688,19,157,1 0,0,0,0,1.26,0,1.26,0,0,0,0,0,0,0,0,0,0,1.26,0,0,1.26,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1.26,0,0,0,0.431,0,0,0,0.215,1.724,3.529,13,60,1 0.1,0,0.1,0,0.4,0.1,0.1,0,0.2,0.2,0.4,0.5,0,0.6,0,0.91,0.2,0,1.72,4.26,1.72,0,0.4,0.2,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0.096,0,0.336,0.16,0,6.758,494,1426,1 0,0,0,0,0.09,0,0,0,0,0.09,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0.032,0,0.016,0,0,24.375,135,3315,1 0,0,0,0,0,0,0,1.12,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1.12,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1.12,0,0,0,0,0.212,0,0.424,0.424,0,4.1,25,82,1 0.59,0,0,0,0,0,1.18,0.59,0.59,1.18,0,1.18,0,0,0,0,2.95,0,4.14,2.36,2.36,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0.421,0,0,6.275,46,182,1 0,0,0,0,0,0,4.54,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1.8,9,18,1 0.06,0.65,0.71,0,0.39,0.65,0.52,0.19,1.04,0.52,0.06,0.39,0.32,0,1.17,0.13,0.06,1.1,1.3,0,1.04,0,0.52,0.19,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0.06,0,0,0,0,0,0.06,0,0,0,0.085,0,0.287,0.106,0,4.742,117,1342,1 1.23,0,0,0,0,0,0,0,0,0,0,2.46,0,0,0,0,0,0,6.17,0,2.46,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0.843,0,0,2,19,106,1 0,1.5,1.5,0,0.75,0,0,0,0.75,3.75,0,2.25,0,0,1.5,0,1.5,0,0.75,0,3,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,2.224,1.223,0,107.4,412,537,1 0,1.51,1.51,0,0.75,0,0,0,0.75,3.78,0,2.27,0,0,1.51,0,0.75,0,0.75,0,3.03,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,2.249,1.237,0,105.8,404,529,1 0.1,0.2,0.52,0,0.31,1.14,0.2,0.62,1.04,0.52,0.2,0.62,0,0,1.66,0,0.2,1.45,2.08,0.2,1.25,0,1.14,0.2,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0.2,0,0,0,0,0,0.095,0.143,0,0.334,0.175,0.031,7.439,689,1287,1 0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,6.17,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,2.46,0,0,0,0,0,0,1.235,0,0,4.466,10,134,1 0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1.17,0,0,0,0,0.441,0,0.441,0.662,0,4.066,17,61,1 0,0,0.31,0,0.31,0.31,0.31,0.31,0,0,0.63,0.95,0,0,0,0.95,0.63,0.31,2.54,2.54,3.5,0,0,0.63,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0.051,0,0.102,0,0.102,5.708,138,274,1 0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,2.04,0,0,1.02,1.02,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0.174,0,0.174,0,0,1.787,7,59,1 0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1.96,0,0,0.98,0.98,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0.173,0,0.173,0,0,1.787,7,59,1 0,0.39,1.17,0,0.39,0,0,0,0,0.78,0.78,0.78,0,0,0.39,3.51,0,0,1.17,0,1.17,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0.39,0,0,0,0,0.066,0,0.864,0.132,0.066,5.87,44,364,1 0,0,0,0,0,0,0,0,0,0,0,1.42,0,0,0,1.42,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,2.058,5,35,1 0.09,0,0.09,0,0.39,0.09,0.09,0,0.19,0.29,0.39,0.48,0,0.58,0,0.87,0.19,0,1.66,4.1,1.66,0,0.39,0.19,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0.14,0,0.326,0.155,0,6.813,494,1458,1 0.1,0,0.41,0,0.1,0.1,0.1,0.52,0.1,0,0,0.62,0,0.2,0,0,0.1,0,0,0,0,0,0.73,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0.048,0,0.016,0.064,0,1.915,29,339,1 0.14,0,0.28,0,0.09,0.24,0.04,0.04,0.24,0,0,0.52,0.04,0.09,0,0,0.14,0,0.24,0.04,0.28,0,0.38,0.14,0,0,0,0,0,0,0,0,0,0,0,0.19,0,0,0,0.04,0,0,0,0.04,0.09,0,0,0,0,0.061,0,0.007,0.099,0,1.867,14,521,1 0.36,0.27,0.63,0,0.82,0.36,0,0.36,0.27,4.1,0.09,1.27,0.45,0,1.27,1.18,0.27,2.1,2.73,0,2.83,0,0.09,0.27,0,0,0,0,0,0,0,0,0,0,0,0.09,0,0,0,0.09,0,0,0,0,0,0,0,0,0,0.101,0,0.611,0.014,0,3.707,127,875,1 0,0,1.11,0,1.11,0,0.74,0,0,0,0.74,0.37,0,0,0,0,0.37,0,3.35,2.98,2.61,0,0,0.37,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0.368,0.552,0,1.58,7,79,1 0,0,0,0,0,0,1.38,0,0,0,0,0,0,0,0,0,0,0,0,0,1.38,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0.47,0,0,0.235,0.235,1.882,6.266,41,94,1 0,0.37,1.11,0,0.37,0,0,0,0,0.74,0.37,0.74,0,0,0.37,3.34,0,0,0.74,0,1.48,0,0,0.37,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0.292,0,0.878,0.175,0.058,5.985,58,425,1 0,0.37,1.11,0,0.37,0,0,0,0,0.74,0.37,0.74,0,0,0.37,3.34,0,0,0.74,0,1.48,0,0,0.37,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0.292,0,0.878,0.175,0.058,5.985,58,425,1 0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,3.7,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,4.733,0,0,2.666,11,24,1 0.17,0,0.51,0,0.17,0,0.17,0.34,0.17,0,0,0,0,0.34,0,0,0,0,0,0,0,0,0.34,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0.026,0,0,0,0,1.559,10,145,1 0.17,0,0.17,0.17,1.43,0.34,0.05,0.05,0.05,0.05,0.05,0.51,0.28,0.05,0,0,0.69,0.05,4.2,0.23,1.03,0.17,0.74,0.05,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0.01,0.05,0,0.02,0.161,0.03,2.093,51,536,1 0,0,0,0,1.46,0,0.83,0,0.2,1.04,0,0.41,0,0,0,0,0,1.46,1.04,0,0.2,0,0.2,0,1.46,1.46,0,0,0,0,0,0,0,0,0,0,0,0,0.2,0,0,0,0,0,0,0,0,0,0.182,0.401,0.109,0.182,0.146,0,3.791,26,364,1 0,0.37,0,0,0.37,0.37,0.37,0.74,0.37,0.37,0,0.74,0.37,0,0,0.37,1.49,0,3.73,2.61,1.49,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0.74,0,0,0,0,0.37,0,0,0,0,0,0,1.199,0.505,0,3.337,64,267,1 0.45,0,0.67,0,0.22,0.67,0,0.67,0.22,0.22,0.22,1.35,0,0,0,0.45,1.35,0.22,1.57,1.57,3.37,0,0.22,0.67,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0.111,0,1.599,0.148,0,4.947,102,564,1 0,0.19,0.57,0,0.09,0.28,0.09,0.09,0.38,0.19,0,0.57,0.57,0,0,0.19,0,0,2.01,0,1.43,0,0,0.19,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0.035,0.23,0,0.088,0.124,0,2.405,50,368,1 0,0,0.44,0,0.88,0.22,0,0,0,0,0,0.44,0,0.22,0,0,0,0,0.66,0,0.44,0,0,0,0,0,0,0,0,0.66,0,0,0,0,0,0,0,0,0,0,0,0,0,0.44,0,0,0,0,0.037,0.224,0,0,0.187,0.149,3.384,21,264,1 0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,4.34,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,7.843,0,0,1.666,5,15,1 0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,4.76,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,1,5,1 0,0,0,0,0,0,0,2.2,0,0,1.47,0.73,0,0,0,2.94,0,0,5.14,0,0.73,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1.6,8,48,1 0.46,0.92,0.92,0,0.46,0,0,0.46,0,1.85,0,2.31,0,0.46,0,0.46,0,0,1.85,0,5.55,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0.249,0,1.663,0.249,0.083,49.866,636,748,1 0.47,0.94,0.94,0,0.47,0,0,0.47,0,1.88,0,2.35,0,0.47,0,0.47,0,0,1.88,0,5.18,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0.253,0,1.687,0.168,0.084,57.23,636,744,1 0.9,0,0.9,0,0.9,0,0.9,0,0,0,0,0,0,0,0,0,0,0,5.45,0,0,2.72,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0.153,0,2.143,0.612,0.459,10.125,54,162,1 0.07,0.22,0.82,0,0.52,0,0.07,0,0.67,0.6,0.22,0.82,0.07,0,0.15,0,0.07,0,3.3,0.22,1.87,0,0,0.22,0,0,0,0,0,0,0,0,0,0,0.07,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0.095,0,0.131,0.071,0.167,3.446,74,972,1 0,0,1.28,0,0,0,0,0,0,0,0,1.28,0,0,0,0,0,0,1.28,0,6.41,0,0,1.28,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0.204,0,5.181,25,57,1 0,0,0.98,0.49,0,0,0.49,0,0,0.98,0,0.98,0,0,0,2.94,0,0,1.47,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0.49,0,0,0,0.156,0,0,0.862,0,0,12.148,272,571,1 0.47,0.95,0.95,0,0.47,0,0,0.47,0,1.91,0,2.39,0,0.95,0,0.47,0,0,1.91,0,5.26,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0.252,0,1.683,0.168,0.084,57.23,636,744,1 0.47,0.94,0.94,0,0.47,0,0,0.47,0,1.88,0,2.35,0,0.47,0,0.47,0,0,1.88,0,5.18,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0.252,0,1.68,0.168,0.084,57.23,636,744,1 0,0,0.89,0,1.79,0.44,0,0,0,0,0,0.44,0,0,0,1.34,0,0,2.24,0,4.48,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0.074,0,0,0,0,2.25,12,144,1 0,0,0.89,0,1.78,0.44,0,0,0,0,0,0.44,0,0,0,1.33,0,0,2.23,0,4.46,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0.074,0,0,0,0,2.25,12,144,1 0.34,0,1.7,0,1.02,0,0,0,0.68,1.02,0,0,0,0,0,0,0,0,0.34,1.02,0.68,0,0,0,0.34,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0.899,0.105,0,667,1333,1334,1 0,0,0,0,0,0,0,1.08,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1.08,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1.08,0,0,0,0,0.194,0,0,0.389,0,3.476,16,73,1 0,0,0,0,0,0,0,0,0.91,0,0,0,0,0,0,0,0,0,0.91,0,2.75,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0.143,0,0.572,0,0,2.9,28,87,1 0,0,0,0,0,0,0,0,0,0,0,1.33,0,0,0,1.33,0,0,2.66,0,4,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1.326,0,0,2.2,11,44,1 0,0,0,0,0.73,0,0,0,0,0,0,0.36,1.1,0,0,0.36,0,0,3.69,0,0.73,0,0,0.36,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0.119,0,0.238,0.059,0,2.93,29,211,1 0,0,0,0,0,0.32,0,0,0,0,0,0,0,0,0,0,0.96,0,0,0,0,0,0,0,0,0,0,0,0,2.24,0,0,0,0,0,0,0,0,0.32,0,0,0,0,0,0,0,0,0,0.18,0.27,0.045,0,0,0,2,14,178,1 0.41,0.41,0.41,0,0.13,0.1,0.03,0.06,0.52,0.94,0.27,0.76,0.45,1.15,0.03,0.24,0.41,0.03,2.99,0,1.25,0,0.34,0.59,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0.1,0,0,0,0.011,0.076,0,0.425,0.573,0.112,5.761,131,2224,1 0.31,0,0,0,0.94,0,0,0,0,0,0.31,0,0,0,0,0.31,0,0.31,3.76,0.31,0.62,0,0,0.62,0,0,0,0,0,0,0,0,0,0,0.31,0,0,0,0,0,0,0,0,0,1.25,0,0,0,0,0.055,0,0.055,0.111,0,2.358,32,125,1 0,0,1.13,0,1.13,0.56,0.56,0,0,0.56,0,1.13,0,0,0,3.97,0,0,2.84,0,0.56,0,0.56,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0.288,0,0.768,0,0,11.685,296,409,1 0,0,0.14,0,0.29,0,0,0,0,0,0,0.89,0,0,0,0.14,0,0,0,0,0,0,0.14,0,0,0,0,0,0,0,0,0,0.44,0,0,0.29,0,0,0,0,0,0,0,0,0,0,0,0,0.022,0.067,0,0,0.022,0,2.227,11,294,1 0,0,0.55,0,0,0.55,0,0.27,0,0,0.55,0.27,0.27,0,0,1.1,0.27,0.83,2.49,0,3.04,0,0,0.27,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0.27,0,0,0,0,0.194,0,0.582,0.291,0.582,2.309,35,291,1 0,0,1.31,0,0,0,0,0,0,0,0,1.31,0,0,0,0,0,0,1.31,0,5.26,0,0,1.31,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0.21,0,4.5,25,54,1 0,0,1.31,0,0,0,0,0,0,0,0,1.31,0,0,0,0,0,0,1.31,0,5.26,0,0,1.31,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0.21,0,4.5,25,54,1 0,0,0,0,0,0,2.32,0,0,0,0,0,0,0,0,0,0,0,4.65,0,4.65,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0.701,0.35,0,1.434,6,33,1 0,0,2.99,0.42,0.42,0,0.85,0,0,0,0.42,0.42,0,0,0,0.42,0,1.28,3.41,0,1.7,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0.204,0,0.819,0,0,4.84,42,363,1 0,2.08,0,0,3.12,0,1.04,0,0,0,0,2.08,0,0,0,0,0,4.16,2.08,0,1.04,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0.263,0,0,1.428,4,20,1 0.29,0.04,0.04,0,0.14,0.04,0,0.29,0.29,0.94,0.14,0.04,0.14,0,0.19,0.04,0.39,0.19,1.6,0.04,0.79,9.53,0.69,0.47,0,0,0,0,0,0,0,0,0,0,0,0.04,0,0,0.04,0,0,0,0,0,0.19,0,0,0,1.117,0.053,0,0.356,0.09,0.011,12.332,1171,9163,1 0,0,0.76,0,0.76,0,0.5,0.5,0,1.01,0,0.25,1.52,0,0.76,0,0,1.52,2.03,0,1.52,0,0.76,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0.5,0,0,0,0,0,0,0,0,0,0.078,0,0.433,0.433,0,2.441,19,249,1 0,0,0,0,0,0,0,2.5,0,0,0,0,0,0,0,0,1.25,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1.25,0,0,0,0,0.182,0,0,0.182,0,3.545,21,78,1 0.31,0,0.63,1.91,0.21,0,0,0,0.42,0.1,0,0.31,0,0,0,0.53,0,0,1.7,0,1.06,0,0,0.21,0,0,0,0,0,0,0,0,0,0,0,0,0,0.1,0,0,0,0,0.1,0,0,0,0,0,0,0.169,0,0.358,0.188,0.075,2.847,75,447,1 0,0.75,0.37,0,0,0,0.75,0,0,0.37,0,0.75,0,0,0,1.87,0.37,0,2.63,0,1.5,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0.37,0,0,0,0,0,0,0.242,0,0.145,9.584,332,508,1 0,1.96,0.98,0,0,0,1.96,0,0,0,0,0,0,0,0,0.98,0,0,0.98,0,0.98,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0.98,0,0,0,0,0.168,0,1.011,0,0,2.888,12,52,1 0.51,0.43,0.29,0,0.14,0.03,0,0.18,0.54,0.62,0.29,0.65,0.65,1.2,0.03,0.21,0.43,0.03,3,0,1.35,0,0.51,0.54,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0.03,0,0,0,0.012,0.08,0,0.454,0.523,0.136,6.59,739,2333,1 0.2,0.4,0.4,0,0,0.4,0,0.2,1.43,0.61,0,0.2,0,0,0,0,0,0,2.66,0.2,2.04,0,0,0.61,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0.2,0,0,0,0.029,0.059,0.447,0.298,0.149,0.029,11.96,376,909,1 0,0,0,0,0,0,0,0,0,0,0,0,0,2.06,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1.03,0,0,0,0,0,0,0,0,1.03,0,0,0,0,0.17,0,0.17,0.341,0,3.809,24,80,1 0,0,1.31,0,0,0,0,0,0,0,0,1.31,0,0,0,0,0,0,1.31,0,5.26,0,0,1.31,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0.21,0,4.5,25,54,1 0,0,0,0,0,0.54,1.63,0,0,0,0.54,0.54,0,0,0,0.54,2.73,0.54,4.91,0,2.18,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0.171,0,2.592,32,70,1 0,0,0,0,0,0.65,0,1.3,0.65,0.65,0,0,0,0,0,0.65,2.61,0.65,1.3,3.26,1.3,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0.65,0,0,0,0,0,0,0,0,0,0,0,1.154,0.524,0,3.89,78,249,1 2.35,0,0,0,0,0,2.35,0,2.35,0,0,1.17,0,0,0,1.17,0,0,2.35,0,0,0,2.35,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0.168,0.336,0,4.576,17,119,1 0,0,0.32,0,0.65,0.65,0.32,0.32,0,0,0,0.32,0.32,0,0,0.32,0.32,0,2.28,0,3.25,0,0,0.32,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0.32,0,0,0,0,0.112,0,0,0.169,0,1.494,10,139,1 0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0.25,0,0,0,0,0,8.29,0.51,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0.218,0.087,0,0.174,0.174,0.437,9.186,126,937,1 0,0,0.24,0,0.49,0,0,0.24,0,0.24,0.24,0.49,0,0,0,0.99,0.24,0,2.47,0,0.74,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0.478,0,0,2.868,44,175,1 0,0,0.32,0,0.64,0.64,0.32,0.64,0,0,0,0.32,0.32,0,0,0.32,0.32,0,2.27,0,3.24,0,0,0.32,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0.64,0,0,0,0,0.112,0,0,0.168,0,1.494,10,139,1 0,0,0.32,0,0.64,0.64,0.32,0.64,0,0,0,0.32,0.32,0,0,0.32,0.32,0,2.27,0,3.24,0,0,0.32,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0.64,0,0,0,0,0.112,0,0,0.168,0,1.494,10,139,1 0.78,0,0.78,0,1.56,0,0,0,0,0,0,0,0,0,0,0.78,0.78,0,1.56,0,2.34,0,0.78,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0.792,0.339,0,2.627,22,113,1 0,0,0,0,0,0,0,0.4,0,0,0,0,0,0,0,0,0,0.4,0.4,0,0.4,7.63,0.8,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0.133,0,0.601,0.133,1.068,10.578,108,603,1 0.78,0,0.78,0,1.57,0,0,0,0,0,0,0,0,0,0,1.57,0.78,0,1.57,0,2.36,0,0.78,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0.682,0.341,0,2.555,22,115,1 0,0.75,0.37,0,1.51,0,0,0.37,0,0.37,0.75,1.89,0,0,0,0.75,0.37,1.13,6.06,0,4.16,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0.37,0,0,0,0,0,0,0,0,0,0,0,0.415,0.138,0,1.937,11,93,1 0,0,0,0,0.96,0,0.96,0,0,0.48,0.48,0.96,0,0,0,1.44,0,0,3.36,0,0.96,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0.149,0,0.149,0.074,0,2.586,44,150,1 0,0,0,0,0.43,0.43,0.43,0.43,0,0,0,0.43,0,0,0,0,0,0,0.87,0,0,9.17,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0.395,0,1.121,7.983,72,495,1 0.78,0,0.78,0,1.57,0,0,0,0,0,0,0,0,0,0,1.57,0.78,0,1.57,0,2.36,0,0.78,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0.682,0.341,0,2.555,22,115,1 0,0.81,1.62,0,2.43,0,0,0,0,0.81,0,0,0,0,0,0.81,0,0.81,2.43,0.81,0.81,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0.121,0,0.121,0,0,4.035,43,113,1 0.38,0.46,0.31,0,0.15,0.03,0,0.19,0.58,0.66,0.31,0.66,0.58,1.24,0.03,0.23,0.38,0,3.11,0,1.32,0,0.46,0.38,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0.03,0,0,0,0.006,0.091,0,0.36,0.524,0.137,6.186,122,2227,1 0.43,0,0.87,0,0.87,0,0.87,0,0,0,0,0.43,0,0,0,0,0.43,0.43,4.38,0,1.31,0,1.31,0,0,0,0,0,0,0,0,0,0,0,0.43,0,0,0,0,0,0,0,0,0,0.43,0,0,0,0,0.145,0,1.021,0.218,0,3.35,59,134,1 0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1.23,1.23,0,4.93,0,3.7,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1.23,0,0,0,0,0,0,0.234,0,0,4.176,41,71,1 0,0,1.58,0,1.58,0,1.58,0,0,0,0,1.58,0,0,0,1.58,0,0,3.17,0,1.58,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0.371,0,0,3.538,21,46,1 0,0,0,0,0,0,0,0,0.9,0,0,0,0,0,0,0,0,0,0.9,0,3.6,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0.139,0,0.559,0,0,2.9,28,87,1 0,0,0,40.13,0,0,0,0,0,0.32,0,0,0,0,0,0,0,0.32,0.98,0,0.32,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0.185,0,0.185,0.061,0,10.585,124,434,1 0,0.47,0,0,0.94,0,0.94,0,0,0,0,0.47,0.47,0,0.47,0,0,0,1.89,0,0.47,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1.42,0,0,0,0,0,0,0,0,0,0,0,0,0,0.074,0.074,0,0,0,2.125,11,102,1 0,0,0,0,0,0,0,0,0.91,0,0,0,0,0,0,0,0,0,0.91,0,2.75,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0.141,0,0.565,0,0,2.9,28,87,1 0.05,0.05,0.4,0,0.34,0,0,0,0.57,0.05,0,0.28,0.11,0,0,0.17,0,0,1.15,0.05,0.92,0,0,0.05,0,0,0,0,0.05,0,0,0,0,0,0,0,0,0,0,0,0,0.11,0,0,0.05,0,0,0,0.019,0.099,0,0.089,0.079,0.009,4.913,95,1312,1 0.05,0.05,0.4,0,0.34,0,0,0,0.57,0.05,0,0.28,0.11,0,0,0.17,0,0,1.04,0.05,0.92,0,0,0.05,0,0,0,0,0.05,0,0,0,0,0,0,0,0,0,0,0,0,0.11,0,0,0.05,0,0,0,0.019,0.099,0,0.089,0.079,0.009,4.924,95,1310,1 0,0,0,0,0,0,0.86,0,0,0,0,0,0,0,0,0.86,0,1.73,3.47,0,1.73,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0.152,0,0.457,0,0,2.75,10,55,1 0,0,0,0,0,0,0.86,0,0,0,0,0,0,0,0,0.86,0,1.73,3.47,0,1.73,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0.151,0,0.759,0,0,2.75,10,55,1 0.38,0,1.9,0,1.14,0,0,0,0.38,0.38,0,0,0,0,0,0,0,0,0.38,0.76,0,0,0,0,0.38,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1.008,0.059,0,295,1177,1180,1 0.38,0,1.9,0,1.14,0,0,0,0.38,0.38,0,0,0,0,0,0,0,0,0.38,0.76,0,0,0,0,0.38,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1.005,0.059,0,295,1177,1180,1 0.38,0,1.9,0,1.14,0,0,0,0.38,0.38,0,0,0,0,0,0,0,0,0.38,0.76,0,0,0,0,0.38,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1.008,0.059,0,589,1177,1178,1 0,0,0,0,0.21,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0.21,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0.205,0,0.034,0,0,3.168,15,339,1 0,0,0,0,0.2,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0.2,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0.204,0,0.034,0,0,2.588,15,277,1 0,0.65,0,0,0.65,0,1.31,0,0,0,0,0.65,0,0,0.65,0,0,0,3.28,0,0.65,0,0,0.65,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0.104,0.522,0,0,1.69,11,71,1 0,0,0,0,0.21,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0.21,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0.205,0,0.034,0,0,3.168,15,339,1 0,0,0,0,0.2,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0.2,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0.204,0,0.034,0,0,2.588,15,277,1 0,0,0.3,0,0.3,0.3,0.3,0.3,0,0,0.6,0.9,0,0,0,0.9,0.6,0.3,2.4,2.7,3,0,0,0.6,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0.048,0,0.144,0,0.096,5.403,139,281,1 0,0,0.32,0,0.64,0.64,0.32,0.32,0,0,0,0.32,0.32,0,0,0.32,0.32,0,2.27,0,3.24,0,0,0.32,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0.64,0,0,0,0,0.111,0,0,0.166,0,1.494,10,139,1 0.08,0.08,0.76,0,0.85,1.02,0.25,0.17,0.59,0.08,0.17,0.59,0.17,0,2.22,0.25,0.08,0.94,1.62,0.17,0.42,0,0.85,0.08,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0.08,0,0,0.17,0.08,0.08,0.08,0,0,0,0.065,0,0.435,0.118,0.013,7.497,669,1402,1 0,0,1.83,0.91,0,0,0.45,0,0,0.91,0,0,0,0,0,2.75,0,0,1.83,0,0.91,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0.134,0,0,2.077,0,0.134,12.176,338,621,1 0,0,0,0,3.09,0,1.03,1.03,0,1.03,0,1.03,0,0,0,2.06,0,0,2.06,0,1.03,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1.03,0,0,0,0,0,0,0,0,0,10.692,65,139,1 0,0,0,0,3.12,0,1.04,1.04,0,1.04,0,1.04,0,0,0,2.08,0,0,2.08,0,1.04,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1.04,0,0,0,0,0,0,0,0,0,10.692,65,139,1 0,0,0,0,3.09,0,1.03,1.03,0,1.03,0,1.03,0,0,0,2.06,0,0,2.06,0,1.03,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1.03,0,0,0,0,0,0,0,0,0,10.692,65,139,1 0,0.46,0.46,0,2.8,0,0,0,0,0,0,1.4,0,0,0,1.4,0,1.4,1.86,0,0.46,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0.93,0,0,0,0,0,0,0,0,0,0,0,0,0.148,0,0.74,0,0,2.673,21,139,1 0,0,0,0,0,0,1.21,0,0,1.21,0,1.21,1.21,0,0,1.21,0,0,4.87,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1.676,15,57,1 0,0,1.31,0,2.63,0,0,0.65,0,0,0,0.65,0,0,0,1.97,0,0,1.31,0,2.63,0,0,0.65,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0.65,0,0,0,0,0.198,0,0.198,0.099,0,2.195,12,101,1 0,0,0,0,0,0,0,0,0,0,0.26,0.26,0,0,0,0,0,0,1.05,1.32,0.26,10.58,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0.306,0.043,0.087,0.175,0.043,0.35,8.271,69,885,1 0.74,0,0,0,0,0,0.74,0,0,1.49,0.74,0.74,0,0,0,0.74,3.73,0,4.47,0,0.74,0,0.74,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0.355,0.118,0.237,2.095,7,44,1 0,0,1.29,0,0,0,0,0,0,0,0,1.29,0,0,0,0,0,0,1.29,0,5.19,0,0,1.29,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0.208,0,4.818,25,53,1 0,0.02,0.05,0,0.02,0,0,0.05,0,0.35,0,0.02,0,0,0,0.05,0.1,0.38,0.07,0.2,0.17,0,0,0,0.02,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0.004,0,0.112,0.018,0.018,3.922,489,3271,1 0,0,1.33,0,0.66,0,0,0,0,0,0,0,0,0,0,0,0,0.66,0.66,0,0.66,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0.66,0,0,0,0,0,0,0.355,0.118,0,2.315,12,132,1 0,0,1.35,0,0.67,0,0,0,0,0,0,0,0,0,0,0,0,0.67,0.67,0,0.67,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0.67,0,0,0,0,0,0,0.356,0.118,0,2.315,12,132,1 0,0,0,0,0.53,0,1.07,0,0,0.53,0,0,0,0,0,0,0,1.61,1.07,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0.335,0,0,0,0,2.333,14,119,1 0,0,0,0,0,0,0,0,0,0.27,0,0.27,0,0,0,0.27,0,0,1.09,1.36,0.27,10.38,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0.27,0,0,0,0.333,0.047,0.095,0.142,0.047,0.381,2.353,13,273,1 0,0,0,0,0.53,0,1.07,0,0,0.53,0,0,0,0,0,0,0,1.61,1.07,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0.336,0,0,0,0,2.333,14,119,1 1.23,0,0,0,0,0.46,0,0.15,0,0.61,0,0.3,1.07,0,0,0,0,0,1.84,0,0.92,0,0.76,1.23,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0.057,0,0.52,0.289,0.144,4.33,84,446,1 0,0,0.71,0,0.23,0,0,0,0.23,0.23,0.23,1.9,0,0,0,0.23,0,0,3.81,0.23,1.19,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0.112,0,1.046,0.037,0,4.022,97,543,1 0.95,0,0.23,0,0.23,0.23,0.23,0,0,0.23,0,0.23,0,0,0,0,0.71,0,3.8,0,1.9,0,0,0.71,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0.238,0,0,3.184,38,242,1 0,0,0.71,0,0.23,0,0,0,0.23,0.23,0.23,1.9,0,0,0,0.23,0,0,3.81,0.23,1.19,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0.112,0,1.046,0.037,0,4.022,97,543,1 0,0,0.57,0,0.28,0,0,0.57,0,0,0,0.28,0,0,0,0.57,1.15,0,0.86,2.31,2.02,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0.047,0,1.147,0.191,0.191,11.735,489,622,1 0.9,0,0,0,0,0,0.9,0,0,1.8,0.9,0.9,0,0,0,0.9,4.5,0,5.4,0,0.9,0,0.9,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0.391,0.13,0.26,2.15,7,43,1 0.74,0,0,0,0,0,0.74,0,0,1.49,0.74,0.74,0,0,0,0.74,3.73,0,4.47,0,0.74,0,0.74,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0.355,0.118,0.236,2.15,7,43,1 0,0.16,0,0,0.16,0.16,0,1.14,1.3,0.32,0.32,0.48,0,0,0,1.95,0,0.32,0.81,0.48,1.46,2.93,0.16,0.81,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0.673,0.35,0.053,0.134,0.107,0.026,5.216,57,1038,1 0.27,0.27,0.27,0,0,0,0,0.54,0,0.27,0,0.27,0,0,0,1.08,0,0.27,1.08,0,0.27,0,0.27,0.54,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0.229,0,0.458,0.504,0,2.934,64,578,1 0,0,0.85,0,0.85,0.21,0.21,0,0,1.5,0,0,0,0,1.07,0,0.21,0,0.64,0.21,1.71,7.08,1.28,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0.465,0.271,0.969,9.052,58,869,1 0.64,0,0.64,0,1.29,0,0.64,0,0,0,0,0.64,0,0,0,0.64,0.64,0,1.29,0,3.22,0,0.64,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0.104,0,0.522,0.313,0,2.511,22,113,1 0,0,0,0,0,0.54,1.63,0,0,0,0.54,0.54,0,0,0,0.54,2.73,0.54,4.91,0,2.18,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0.171,0,2.592,32,70,1 0,0,0,0,0,0,0,0,0.52,0.52,0,2.08,0,0,0,0,0,0,4.16,0,4.68,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0.073,0.073,0,0.367,0.073,0.073,2.34,27,103,1 0,1.32,0.56,0,0,0.94,0,0.18,0.37,0.75,0,2.08,0,0,0,0,0.37,0,2.65,0,0.94,0,0,0.18,0,0,0.18,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0.084,0,0.31,0.112,0,2.548,34,237,1 0,0,1.07,0,0.53,0,0,0,0,0,0,0,0,0,0,0,0,0,3.22,0.53,1.07,8.06,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0.265,0.088,1.151,11.066,67,332,1 0,0,1.31,0,0,0,0,0,0,0,0,1.31,0,0,0,0,0,0,1.31,0,5.26,0,0,1.31,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0.213,0,4.818,25,53,1 0,0,0,0,0,0.84,0,0,0,0,0,0,0,0,0,0,0,0,3.36,0,0,12.6,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0.587,0,1.468,7,35,273,1 1.36,0,0.68,0,0,0,0.68,0,0,0,0,4.1,0.68,0,0,1.36,0,0,2.73,0,2.05,0,1.36,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0.68,0,0,0,0,0,0,1.706,0.2,0,4.281,38,137,1 0,1.16,0.38,0,0,0,1.16,0,0,0.77,0.38,0.77,0,0,0,1.93,0,0.38,2.32,0,1.16,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0.38,0,0,0,0,0,0,0,0.38,0,0,0,0,0,0,0.198,0,0.148,9.266,332,556,1 0,0,0.27,0,0.27,0.27,0.27,0.27,0,0,0.54,0.82,0,0,0,0.82,0.54,1.09,2.46,2.46,2.73,0,0,0.54,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0.043,0,0.13,0,0.086,4.6,139,276,1 0,0,0.94,0,0.31,0,0,0,0.31,0,0,0.62,0,0,0,1.25,0.62,0,3.14,0,1.25,0,0.94,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0.31,0,0,0,0,0.146,0.048,0.39,0.438,0.097,3.322,61,319,1 0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1.09,1.09,0,3.29,0,2.19,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1.09,0,0,0,0,0.371,0,0.371,0,0,3.096,28,96,1 0.1,0.2,1.01,0,0.8,0.8,0.5,0,0.8,0.1,0.3,0.7,0.3,0,1.61,0.1,0,1.11,1.31,0.2,0.7,0,0.6,0.1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0.2,0,0.1,0.1,0,0,0,0.111,0,0.491,0.158,0.015,8.55,669,1351,1 0,0,0.81,0,0.81,0,0,0,0,0,0,0,0,0,0,0,0.81,0,3.27,0,0.81,1.63,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0.26,0,0.651,13.5,86,189,1 1.24,0,0,0,0,0,0,0,0,0.62,0,1.24,0,0,0,0.62,0,0,1.86,0,3.1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1.24,0,0,0,0,0.1,0,1.105,0.201,0,12.904,155,271,1 0,0,0,0,0,0,0,1.25,0,0.41,0,0,0,0,0,0.41,0,1.67,0.41,0,0.41,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0.41,0,0,0,0,0,0,0,0,0,0,0,0,0,0.125,0,0.312,0.062,0,1.477,8,65,1 0,0.41,0.41,0,2.06,0,1.65,0.82,0,0,0,0,0,0,0,2.47,0,0.82,2.47,0,0.82,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0.41,0,0,0,0,0.265,0,0.199,0,0,15.892,226,445,1 0,0.41,0.41,0,2.06,0,1.65,0.82,0,0,0,0,0,0,0,2.47,0,0.82,2.47,0,0.82,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0.41,0,0,0,0,0.265,0,0.199,0,0,15.892,226,445,1 0,0.41,0.41,0,2.06,0,1.65,0.82,0,0,0,0,0,0,0,2.47,0,0.82,2.47,0,0.82,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0.41,0,0,0,0,0.265,0,0.199,0,0,15.892,226,445,1 0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1.29,0,0,3.89,0,3.89,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1.29,0,0,0,0,0,0,0.236,0,0,7.181,41,79,1 0.45,0.9,0.9,0,0.45,0,0,0.45,0,1.8,0,2.25,0,0.45,0,0.45,0,0,1.8,0,5.4,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0.243,0,1.626,0.162,0.081,69.727,706,767,1 0.45,0.9,0.9,0,0.45,0,0,0.45,0,1.8,0,2.26,0,0.45,0,0.45,0,0,1.8,0,4.97,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0.244,0,1.631,0.244,0.081,64.416,708,773,1 0.45,0.91,0.91,0,0.45,0,0,0.45,0,1.83,0,2.29,0,0.91,0,0.45,0,0,1.83,0,5.04,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0.245,0,1.633,0.245,0.081,64.416,708,773,1 0.82,0,0.82,0,0.41,0,0.41,0.82,0.41,1.23,1.65,0.41,0,0,0,2.47,1.65,0,1.23,1.23,2.06,0,0,0.82,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0.53,0.132,0.132,6.404,76,301,1 0.09,0.49,0.59,0,0.39,0.19,0,0,0.09,0.39,0,1.57,0.19,0,0,0,0.09,0,3.75,0.09,1.08,0,0,0.09,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0.768,0.037,0,5.848,1.313,0,5.96,54,757,1 0,0,1.31,0,0,0,0,0,0,0,0,1.31,0,0,0,0,0,0,1.31,0,5.26,0,0,1.31,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0.212,0,4.818,25,53,1 0,0,1.31,0,0,0,0,0,0,0,0,1.31,0,0,0,0,0,0,1.31,0,5.26,0,0,1.31,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0.212,0,4.818,25,53,1 0,0,0.6,0,0,0.6,0,0,0.6,0,0,1.8,0,0,0,0.3,0,0,2.7,0,1.2,0,0,0.6,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0.094,0.047,0.189,0.141,0,1.932,31,201,1 0.47,0,0.94,0,0.94,0,0.94,0,0,0,0,0.47,0,0,0,0,0.47,0,4.24,0,0.94,0,1.41,0,0,0,0,0,0,0,0,0,0,0,0.47,0,0,0,0,0,0,0,0,0,0.47,0,0,0,0,0.073,0,1.254,0.221,0,5.918,91,219,1 0,0.72,1.81,0,0,0.36,0,0.36,0.72,1.08,0.36,0.72,0,0.36,0,0.36,0.36,0.36,1.08,0,2.53,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1.08,0,0,0,0,0,0,0,0.36,0,0,0,0,0.334,0,1.203,0.467,0.066,18.4,393,736,1 1.47,0,0,0,0,0,0,0,0,1.47,0,0,1.47,0,0,7.35,0,0,2.94,0,1.47,0,0,4.41,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1.272,0.254,0,6.294,63,107,1 1.47,0,0,0,0,0,0,0,0,1.47,0,0,1.47,0,0,7.35,0,0,2.94,0,1.47,0,0,4.41,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1.272,0.254,0,6.055,63,109,1 0,0,0.51,0,0.51,0.51,0.51,0,0,0,0,0,0,0,0,0,1.03,1.03,3.1,0,1.03,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0.09,0,0.18,0,0,1.773,17,94,1 0,0,0.5,0,0.5,0.5,0.5,0,0,0,0,0,0,0,0,0,1.01,1.01,3.04,0,1.01,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0.089,0,0.178,0,0,1.792,17,95,1 0,0.74,1.85,0,0,0.37,0,0.37,0.74,1.11,0.37,0.74,0,0.37,0,0.37,0.37,0.37,1.48,0,2.6,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1.11,0,0,0,0,0,0,0,0.37,0,0,0,0,0.336,0,1.211,0.471,0.067,18.4,393,736,1 0.09,0.49,0.59,0,0.39,0.19,0,0,0.09,0.39,0,1.57,0.19,0,0,0,0.09,0,3.75,0.09,1.08,0,0,0.09,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0.767,0.037,0,5.84,1.311,0,5.96,54,757,1 0,0.72,1.81,0,0,0.36,0,0.36,0.72,1.08,0.36,0.72,0,0.36,0,0.36,0.36,0.36,1.08,0,2.53,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1.08,0,0,0,0,0,0,0,0.36,0,0,0,0,0.334,0,1.203,0.467,0.066,18.4,393,736,1 0,0,0.15,0,0.9,0.15,0,0,0.9,0,0,0.75,0.15,0,0,0,0.3,0,2.26,0,0.9,0,0.15,0.3,0,0,0,0,0,0,0,0,0,0,0.6,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0.1,0,0.376,0.05,0.025,2.271,49,427,1 0.15,0.15,0.3,0,0.75,0,0,0,0,0,0,0.15,0.15,0,0,0,0,0.75,1.51,0,0.45,0,0,0.3,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0.058,0.145,0,0.087,0,0,1.54,18,208,1 0.12,0.19,0.7,0,0.44,0,0.06,0,0.57,0.5,0.25,0.95,0.06,0,0.19,0,0.06,0,3.82,0.19,2.48,0,0,0.19,0,0,0,0,0,0,0,0,0,0,0.06,0,0,0,0,0,0,0.06,0,0,0,0,0,0,0,0.102,0,0.133,0.041,0.143,3.29,74,1030,1 0,0,0,0,0,0,0,0,0,0,0,0,0.91,0,0,0,0,0,0.91,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0.143,0,0.573,0,0,2.884,18,75,1 0.05,0.05,0.4,0,0.34,0,0,0,0.57,0.05,0,0.28,0.11,0,0,0.17,0,0,1.09,0.05,0.92,0,0,0.05,0,0,0,0,0.05,0,0,0,0,0,0,0,0,0,0,0,0,0.11,0,0,0.05,0,0,0,0.019,0.099,0,0.099,0.079,0.009,4.906,95,1310,1 0,0,0,0,0,0,0,0,0,1.19,0,0,0,0,0,1.19,0,0,3.57,0,3.57,0,0,0,1.19,1.19,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1.19,0,0,0,0,0,0,0.204,0,0,8.636,41,95,1 0,0,0.44,0,1.34,0,0.44,0,0,0,0,0,0,0,0,0.44,0.89,0,2.24,0,1.34,0,0.44,0.44,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1.34,0,0,0,0,0.068,0,0.482,0.896,0,6.77,78,325,1 0,0,0,0,0.77,0,0,0,0,0,0,1.55,0,0,0,0.77,0.77,0,2.32,0,2.32,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0.77,0,0,0,0,0.268,0,0.672,0.403,0,2.794,29,109,1 0.28,0.14,0.14,0,0,0,0.14,0,0.42,0,0.84,0.98,0,0,0,0,0.28,0,1.82,2.53,1.12,10.82,0.84,0.28,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0.137,0.045,0.342,1.233,14.88,79,1622,1 0.1,0.2,1.01,0,0.8,0.8,0.5,0,0.8,0.1,0.3,0.7,0.3,0,1.61,0.1,0,1.11,1.31,0.2,0.7,0,0.6,0.1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0.2,0,0.1,0.1,0,0,0,0.11,0,0.49,0.158,0.015,8.55,669,1351,1 0,0,0,0,0.8,0,0,0,0,0,0,1.6,0,0,0,0.8,0.8,0,2.4,0,2.4,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0.8,0,0,0,0,0.274,0,0.823,0,0,2.815,29,107,1 1.63,0,1.63,0,0,0,0,0,1.63,0,0,0,0,0,0,1.63,0,0,3.27,0,3.27,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0.8,0.266,0,2,16,36,1 0.69,0,0,0,1.39,0,0.69,0,0,0,0,0.69,0,0,0,0,0,0,3.49,0,1.39,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0.196,0,0,6.1,57,183,1 0,0,0,0,0,0,0,1.04,0,0,0.52,1.04,0.52,0,0,1.04,0,0,3.66,1.04,1.04,0,1.57,0.52,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0.539,0.269,0,5.787,47,272,1 0,0,0.32,0,0.65,0.65,0.32,0.32,0,0,0,0.32,0.32,0,0,0.32,0.32,0,2.28,0,3.25,0,0,0.32,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0.65,0,0,0,0,0.111,0,0,0.166,0,1.494,10,139,1 0,0,0.32,0,0.65,0.65,0.32,0.32,0,0,0,0.32,0.32,0,0,0.32,0.32,0,2.28,0,3.25,0,0,0.32,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0.65,0,0,0,0,0.111,0,0,0.166,0,1.494,10,139,1 0.08,0.08,0.76,0,0.85,1.02,0.25,0.17,0.59,0.08,0.17,0.59,0.17,0,2.21,0.25,0.08,0.93,1.62,0.17,0.42,0,0.85,0.08,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0.08,0,0,0.17,0.08,0.08,0.08,0,0,0,0.065,0,0.486,0.118,0.013,7.561,669,1414,1 0.17,0,0.17,0,1.52,0.35,0.05,0.05,0.05,0.05,0.05,0.52,0.29,0.05,0,0,0.64,0.05,4.21,0.23,1.11,0,0.82,0.05,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0.05,0,0.05,0,0,0,0.01,0.052,0,0.01,0.167,0,1.818,13,462,1 0.27,0,0.27,0,0,0,0,0,0,0,0,1.62,0.27,0,0,0,0.27,0,4.87,0,0.81,0.27,0.27,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0.27,0,0,0,0,0,0,0,0,0,0,0,0,0.874,0.051,0.051,5.582,61,374,1 0,1.32,0,0,0,0.44,0,0,1.32,0,0,2.65,0,0.44,0,0.44,0,0.44,3.53,0,1.76,0,0,1.32,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0.066,0,0.663,0.132,0.066,8.666,123,442,1 0,0,0,0,2.29,0,0,0,0,0,0,1.14,0,0,0,4.59,0,0,3.44,0,1.14,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1.14,0,0,0,0,0.646,0,1.939,0,0,8.461,30,110,1 0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,3.57,0,3.57,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0.606,0.606,0,3.111,10,28,1 0.54,0,0,0,2.16,0,0,0.54,0,1.08,0,0,0,0,0,0,1.08,0,2.7,0,0.54,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0.54,0,0,0,0,0,0,0,0,0,0,0,0,0.051,0,0,0,0,1.49,19,82,1 0,0,0,0,0,0,0,0,0.91,0,0,0,0,0,0,0,0,0,0.91,0,2.75,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0.141,0,0.567,0,0,2.9,28,87,1 1.06,0,0.7,0,1.06,0,0.7,0,0,0.7,0,0.7,0,0,0.35,0.7,0,0,6,0,1.41,0,0.35,0.35,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0.35,0,0,0,0,0,0,0.381,0.063,0,2.021,12,95,1 0.68,0.68,0.68,0,0.68,0,2.73,0,0,0.68,0,2.05,0,0,0,0,0,0.68,4.1,0,2.73,0,0,0.68,0,0,0,0,0,0,0,0,0,0,0,0,0.68,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1.244,0,0,2.472,9,89,1 0,0,0,9.16,0.27,0,0.55,0.27,0.27,0.27,0,0.27,0,0,0,0,1.11,0,0.55,0.27,0.83,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0.387,0,0,0.301,0,0.043,19.482,694,1130,1 0,0,0.09,0,0.58,0.29,0.09,0,0.38,0,0.29,0.48,0.38,0,0,0,0.19,0,0.77,0,0.67,0,0.09,0,0,0,0,0,0,0,0,0,0,0,0,0,0.09,0,0,0,0,0,0.09,0,0.09,0,0,0,0.063,0.047,0,0.559,0.047,0.031,1.694,23,432,1 0,0,1.61,0,0,0,1.61,0,0,0,0,0,0,0,0,1.61,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1.61,0,0,0,0,0.268,0,0.804,0,0,2.466,17,37,1 0,0,0,0,0.97,0,0.97,0,0,0,0,0,0,0,0,0.97,0,0,0,0,0.97,0,0,0,0.97,0.97,0,0,0,0,0,0,0,0,0,0,0.97,0,0,0,0,0,0,0,0,0,0,0,0.503,0.167,0,0,0.167,1.342,3.5,13,77,1 0,0.56,0.56,0,1.12,0.56,2.25,0,0,0.56,0,0.56,0,0,0,0,0,0.56,3.38,0,1.12,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0.56,0,0,0,0,0.083,0,0.503,0,0.083,16.304,148,375,1 0.1,0.1,0.71,0,0.61,0.3,0.4,0.1,1.42,0.81,0.1,0.5,0,0,0,0.1,0,1.11,2.23,0.5,2.03,0,0,0.3,0,0,0,0,0,0,0,0,0,0,0.1,0,0,0,0.1,0,0,0,0,0,0,0,0,0,0,0,0.264,0.976,0.397,0.033,3.186,56,1042,1 0.8,0,0.8,0,1.61,0,0,0,0,0,0,0,0,0,0,0.8,0.8,0,1.61,0,2.41,0,0.8,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1.562,0.36,0,2.638,22,124,1 0,0,1.31,0,0,0,0,0,0,0,0,1.31,0,0,0,0,0,0,1.31,0,5.26,0,0,1.31,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0.212,0,4.818,25,53,1 0,1.47,0,0,0,0,1.47,0,0,0,0,0,0,0,0,1.47,1.47,0,0,0,1.47,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1.47,0,0,0,0,0,0,0,0,0,0,0,0,0.338,0,0.508,0.169,0.169,10.625,140,170,1 0.05,0.05,0.4,0,0.34,0,0,0,0.57,0.05,0,0.28,0.11,0,0,0.17,0,0,1.04,0.05,0.92,0,0,0.05,0,0,0,0,0.05,0,0,0,0,0,0,0,0,0,0,0,0,0.11,0,0,0.05,0,0,0,0.019,0.099,0,0.099,0.079,0.009,4.881,95,1313,1 0,0.4,0,0,0.81,0,0.81,0,0,0.4,0,0,0,0,0,0,0,0,1.22,0,0.81,0.81,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0.123,0.246,0.061,0,0.123,0.185,4.793,23,302,1 0.29,0.58,0.58,0,0.87,0,0.58,0,0,1.16,0,0.87,0,0,0,0,0.87,0,2.62,0,1.74,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0.054,0,0,0.271,0,1.67,14,162,1 0.18,0,0.18,0,1.57,0.36,0.06,0.06,0.06,0.06,0.06,0.54,0.3,0.06,0,0,0.72,0.06,4.41,0.24,1.08,0,0.84,0.06,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0.06,0,0,0,0,0,0.01,0.052,0,0.01,0.169,0,1.766,12,447,1 0.06,0,0.24,0,0.1,0,0,0.17,0.17,0.17,0,0.1,0.03,0,0,0.03,0,0,0.45,0,0.2,0,0.03,0,1.18,1.22,0,0,0,0,0,0,0,0,0,0,1.36,0,0,0,0,0,0.06,0,0.45,0,0,0,0.179,0.305,0.029,0.029,0.011,0.023,2.813,26,2510,1 1.24,0.41,1.24,0,0,0,0,0,0,0,0,0.41,0,0,0,0.41,0,0.82,3.73,0,1.24,0,0,0.41,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0.41,0,0,0,0,0.068,0,0.481,0.549,0,3.166,19,114,1 0.08,0,0.32,4.31,0.08,0.16,0.08,0.08,0,0,0.08,0.24,0.32,0,0,0.08,0,0.32,1.87,0,0.57,0,0.16,0.24,0,0,0,0,0,0,0,0,0,0,0,0,0.08,0,0,0,0,0,0,0,0.16,0,0,0,0.344,0.068,0,0.55,0.082,0.151,15.547,339,2923,1 0.1,0.1,0.71,0,0.6,0.3,0.4,0.1,1.42,0.81,0.1,0.5,0,0,0,0.1,0,1.01,2.23,0.5,2.03,0,0,0.3,0,0,0,0,0,0,0,0,0,0,0.1,0,0,0,0.1,0,0,0,0,0,0,0,0,0,0,0,0.264,0.977,0.397,0.033,3.166,56,1045,1 0,0,0,0,0,0,0.45,0,0,0.45,0.22,0.22,0,0,0.22,0.22,0,0.22,1.58,0,1.13,13.34,0.9,0,0,0,0,0,0,0,0,0,0,0,0,0,0.22,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0.037,0.15,1.584,13.936,114,1324,1 0,0,1.31,0,0,0,0,0,0,0,0,1.31,0,0,0,0,0,0,1.31,0,5.26,0,0,1.31,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0.212,0,4.818,25,53,1 0,0,0,0,0,0.4,0,0,0,0.81,0,0,0,0,0,0.4,0,0,1.22,0,0,0,0.4,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0.198,0.529,0.33,0.198,0,0,5.019,18,261,1 0,0,0,0,0.38,0.38,0.38,0.38,0,0,0.38,0,0,0,0,0.38,0,0,3.43,0,2.29,0,0,0.38,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0.38,0,0,0,0,0,0,0.121,0,0,2.08,12,104,1 0,0,0,0,0,0,1.78,0,0,1.78,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0.544,0,0,1.777,5,16,1 0,0.06,0.2,0,0.61,0.13,0,0,0.75,0,0.27,0.75,0.27,0,0,0,0.2,0.13,1.16,0,1.23,0,0.06,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0.06,0,0.06,0,0,0,0.034,0.057,0,0.472,0.092,0.023,2.086,104,703,1 0,1.36,0,0,0,0,1.36,0,0,0,0,0,0,0,0,1.36,1.36,0,0,0,1.36,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0.17,0,0.17,0.17,0.17,9.411,128,160,1 0,0,0,0,0,2.3,0,0,0,0,0,0.76,0.76,0,0,0,0,0,2.3,0,1.53,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0.868,0,2.894,0.868,0,5.607,25,157,1 1.63,0,0,0,2.45,0,0,0,0,0,0,0,0,0,0,0.81,0,0,3.27,0,1.63,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0.81,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0.258,0,0,2.826,20,65,1 0.16,0,0.67,0,0.33,0.16,0.33,0.84,0.16,0.5,0.33,1.51,0,0,0,0,1.68,0.33,2.02,1.68,3.87,0,0,0.33,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0.16,0,0,0,0,0,0,0,0,0,0.224,0,1.151,0.056,0,4.928,63,621,1 0.09,0.49,0.59,0,0.39,0.19,0,0,0.09,0.39,0,1.58,0.19,0,0,0,0.09,0,3.75,0,1.08,0,0,0.19,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0.778,0.037,0,5.213,0.979,0,5.781,54,740,1 0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,4,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,2.597,0,0,4.153,26,54,1 0.17,0,0.17,0,1.45,0.34,0.05,0.05,0.05,0.05,0.05,0.52,0.29,0.05,0,0,0.69,0.05,4.25,0.23,1.04,0,0.75,0.05,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0.01,0.05,0,0.01,0.162,0,1.794,12,454,1 0,0,0.27,0,0.54,0.27,0.27,1.08,0,0.81,0,0,0,0,0,0,0,0,2.45,0,1.36,0,0,0.27,0,0,0,0,0,0,0,0,0,0,0,0.27,0,0,0,0,0,0,0,0,0,0.27,0,0,0,0.04,0,0.489,0.04,0,2.121,19,227,1 1.61,0,0,0,3.22,0,0,0,0,0,0,0,0,0,0,0.8,0,0,3.22,0,1.61,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0.8,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0.511,0,0,2.909,20,64,1 0,0.55,0.55,0,1.1,0.55,2.2,0,0,0.55,0,0.55,0,0,0,0,0,0.55,3.31,0,1.1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0.55,0,0,0,0,0.165,0,0.496,0,0.082,16.782,148,386,1 0,0.55,0.55,0,1.1,0.55,2.2,0,0,0.55,0,0.55,0,0,0,0,0,0.55,3.31,0,1.1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0.55,0,0,0,0,0.165,0,0.496,0,0.082,16.826,148,387,1 0,0,0.31,0,0.63,0.63,0.31,0.31,0,0,0,0.31,0.31,0,0,0.31,0.31,0,2.55,0,3.19,0,0,0.31,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0.31,0,0,0,0,0.108,0,0,0.162,0.054,1.515,10,144,1 1.04,0,0.69,0,1.04,0,0.69,0,0,0.69,0,0.69,0,0,0.34,0.69,0,0,5.9,0,1.38,0,0.34,0.34,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0.34,0,0,0,0,0,0,0.379,0.063,0,2.042,12,96,1 0,1.56,0,0,0,0,1.56,0,0,1.56,0,0,0,0,0,1.56,1.56,0,0,0,1.56,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1.56,0,0,0,0,0,0,0,0,0,0,0,0,0.183,0,0,0.183,0.183,11.714,140,164,1 0,0.54,0.54,0,1.08,0.54,2.16,0,0,0.54,0,0.54,0,0,0,0,0,0.54,3.24,0,1.08,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0.54,0,0,0,0,0.162,0,0.488,0,0.081,15.16,148,379,1 0.14,0,0.57,0,0.28,0.14,0.28,0.28,0,0.43,0.14,0.28,0,0,0,1.88,0.14,0.14,1.01,0,1.44,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0.14,0,0,0,0,0,0,0,0,0,0.07,0,0.21,0,0,2.293,32,477,1 0,0,0.44,0,0.22,0.22,0,0,0.66,0.44,0.22,0.88,0,0,0,0.22,0,0,1.32,0,1.1,0.22,0.22,0.22,0,0,0,0,0,0,0,0,0,0,0,0.44,0,0,0,0,0,0,0,0,0,0,0,0,0.065,0.261,0,0.13,0.196,0,7.4,75,629,1 0,0,0.29,0,0.88,0.14,0,0,0.88,0,0,0.73,0.14,0,0,0,0.29,0,2.2,0,0.88,0,0.14,0.29,0,0,0,0,0,0,0,0,0,0,0.58,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0.097,0,0.388,0.048,0.024,2.264,49,428,1 0.07,0.37,0.81,0,0.51,0.29,0.07,0,0.07,0.37,0.07,1.48,0.14,0,0.07,0,0.14,0.44,3.55,0,1.85,0,0,0.07,0,0,0,0,0,0,0,0,0,0,0,0,0.14,0,0,0,0,0,0,0,0,0,0,0,0.052,0.073,0,0.167,0.167,0.01,3.412,44,795,1 0,0,0.31,0,0.63,0.63,0.31,0.31,0,0,0,0.31,0.31,0,0,0.31,0.31,0,2.55,0,3.19,0,0,0.31,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0.31,0,0,0,0,0.108,0,0,0.163,0.054,1.515,10,144,1 0,0,0.31,0,0.63,0.63,0.31,0.31,0,0,0,0.31,0.31,0,0,0.31,0.31,0,2.55,0,3.19,0,0,0.31,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0.31,0,0,0,0,0.108,0,0,0.163,0.054,1.515,10,144,1 0.17,0,0.17,0,1.52,0.35,0.05,0.05,0.05,0.05,0.05,0.52,0.29,0.05,0,0,0.64,0.05,4.21,0.23,1.11,0,0.81,0.05,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0.05,0,0,0,0,0,0.01,0.052,0,0.01,0.167,0,1.838,13,467,1 0.48,0,0.97,0,0.48,0,0.97,0,0,0,0,0.48,0,0,0,0,0.48,0.48,4.36,0,1.45,0,1.45,0,0,0,0,0,0,0,0,0,0,0,0.48,0,0,0,0,0,0,0,0,0,0.48,0,0,0,0,0,0,1.085,0.232,0.077,5.166,58,186,1 1.24,0.41,1.24,0,0,0,0,0,0,0,0,0.41,0,0,0,0.41,0,0.82,3.73,0,1.24,0,0,0.41,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0.41,0,0,0,0,0.068,0,0.48,0.549,0,3.166,19,114,1 0.34,0.42,0.25,0,0.08,0.42,0.08,0.25,0.08,1.62,0.34,0.51,0.94,0,0.17,0.08,0,0,3,0,0.94,0,0.34,0.34,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0.17,0,0,0,0,0.065,0,0.261,0.294,0.065,3.282,62,535,1 0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0.64,8.33,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0.233,0,0.233,9.5,84,323,1 0,1.63,0,0,0,0,1.63,0,0,1.63,0,0,0,0,0,0,0,0,1.63,0,3.27,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1.2,2,12,1 0.17,0,0.08,0,0.43,0.08,0.08,0.43,0.08,0.08,0,0.6,0.17,0.17,0,0,0.17,0.08,1.2,0,3.14,0,0.34,0.08,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0.085,0.028,0.092,0.014,0,4.16,48,1140,1 0.17,0,0.08,0,0.43,0.08,0.08,0.43,0.08,0.08,0,0.6,0.17,0.17,0,0,0.17,0.08,1.2,0,3.14,0,0.34,0.08,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0.085,0.028,0.092,0.014,0,4.16,48,1140,1 0,0.34,0.69,0,0.34,0.69,0.34,0,0,1.04,0.34,1.38,0,0,0,0.69,0,0.69,4.86,0,1.73,0,0,1.04,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0.058,0,0.638,0.174,0,2.17,8,89,1 0,0,0.29,0,0.29,0.29,0.29,0.29,0,0,0.58,0.87,0,0,0,0.87,0.58,0.29,2.61,2.61,2.9,0,0,0.58,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0.046,0,0.14,0,0.14,4.892,139,274,1 0,0,0,0,0.45,0.45,0.45,0,0,0,0,0.45,0,0,0,0,0,0,0.9,0,0,9.04,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0.072,0,1.083,7.857,45,440,1 0,0,0.4,0,0,0,0.2,0,0.8,0.2,0,0.4,0,1.41,0.2,0.4,0,0,3.44,3.03,2.22,0,0,0.4,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0.033,0.066,0,0.133,0.066,0,2.704,30,192,1 0,0,0,0,0,0,1.33,0,0,0,0,0,0,0,0,0,0,0,1.33,0,5.33,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0.213,1.492,0,29.125,223,233,1 0.22,0.22,0.22,0,1.77,0.22,0.44,0.44,0.22,2.88,0,0.88,0.22,0,1.1,0.44,0,0.44,3.32,0,3.32,0,0.44,0.44,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0.44,0,0,0,0,0,0,0,0,0,0,0,0.588,0.156,0,86.7,1038,1734,1 0,0.9,0,0,0,0,0,0,0,0,0,0.9,0,0,0,0,0,1.81,6.36,0,0.9,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0.146,0,0.292,0,0,3,38,75,1 0.74,0,0,0,0.74,0,0.74,0,0.74,0,0,0,0,0,0,0,0,0,0,0,1.49,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0.74,0,0,0,0,0,0,0,0,0,0,0,0.467,0.233,0,1.846,12,72,1 0,0,0,42.81,1.28,0,0.28,0,0,0,0,0.28,0,0,0,0.14,0,0,1.7,0,0.85,0,0,0.42,0,0,0,0,0,0,0,0,0,0,0.14,0,0,0,0,0,0,0,0,0,0,0,0,0.14,0.026,0.078,0,0.13,0,0,7,137,826,1 0,0,0.37,0,1.13,0,0.37,0,0,0.75,0,0.37,0,0,0,0.37,0.75,0,2.65,0,1.13,0,0.37,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1.13,0,0,0,0,0.063,0,0.882,0.189,0,4.08,78,253,1 0,0,0,0,0,0,0,0,0,0,0,0,1.33,0,0,0,2.66,5.33,2.66,0,2.66,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1.799,0.514,0,1.823,11,62,1 0,0,0.72,0,1.45,0.36,0,0,0,1.45,0,1.09,0,0,0,0.72,0,0,2.54,1.81,0.72,0,0,0,0.36,0.36,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0.056,0,0.963,0.113,0.17,2.622,47,139,1 0.54,0,1.08,0,0.54,0,1.08,0,0,0,0,0.54,0,0,0,0.54,0.54,0,4.32,0,1.08,0,1.62,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0.54,0,0,0,0,0,0,1.218,0.261,0,5.323,68,181,1 0,0,0,0,0,0,0,0,0,1.81,0,0,0,0,1.81,1.81,0,0,1.81,0,0,0,5.45,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0.628,0,0.628,0.943,0,2.944,9,53,1 0,0,0.48,0,0.96,0,0.48,0,0,0,0,0,0,0,0,0.48,0.96,0,1.92,0,1.44,0,0.48,0.48,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1.44,0,0,0,0,0.073,0,0.515,0.957,0,6.833,78,328,1 0,0,0,0,0.98,0,0,0,0,0.98,0.98,0.98,0,0,0,0.98,0,0.98,2.94,0,1.96,0,0,0,0.98,0.98,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0.98,0,0,0,0,0,0.278,0,0,2.95,18,59,1 0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,4.44,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0.833,0,0,1.375,3,11,1 0,0,0,19.16,0.18,0,0.18,0,0,0,0,0,0,0,0,1.89,0,0,0.56,0,0,9.48,0,0.18,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0.294,25.22,180,1261,1 0,0,0.6,0,0,0.6,0,0,0.6,0,0,1.82,0,0,0,0.3,0,0,2.74,0,1.21,0,0,0.6,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0.143,0.047,0.191,0.143,0,2.041,31,196,1 0,0,0,0,0,0,0,0,0,0,0,1.33,0,0,0,1.33,0,0,2.66,0,4,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1.326,0,0,2.2,11,44,1 0.37,0.17,0.3,0.06,0.23,0.17,0.03,0.95,0.37,0.37,0.1,0.64,0.61,0.34,0.2,0.51,0.34,0.34,2.75,0.13,1.36,0,0.27,0.71,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0.03,0,0,0,0,0.03,0,0,0,0.011,0.041,0.071,0.379,0.136,0,3.341,181,1955,1 0,0,0.6,0,0,0.6,0,0,0.6,0,0,1.81,0,0,0,0.3,0,0,2.72,0,1.21,0,0,0.6,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0.142,0.047,0.19,0.142,0,2.03,31,199,1 0.58,0,0,35.46,0.58,0,0.58,0.58,0,0,0,0,0,0.58,0,0.58,0.58,0.58,0.58,0,1.74,0,0,1.16,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0.239,0.239,0,3.338,123,207,1 0,0,1.4,0,0.46,0,0.46,1.4,0,0.46,0,0,0,0,0,0,0,0,2.8,0,1.86,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0.93,0,0,0,0,0,0,0,0,0,0.123,0,0.37,0,0,6.137,54,313,1 0,0,0.3,0,0.3,0.91,0,0.3,0,0,0,0.3,0.3,0,0,0.3,0.3,0.3,2.12,0,3.03,0,0,0.3,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0.3,0,0,0,0,0.211,0,0,0.211,0.052,1.745,11,185,1 0,0,0.3,0,0.3,0.9,0,0.3,0,0,0,0.3,0.3,0,0,0.3,0.3,0.3,2.11,0,3.02,0,0,0.3,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0.3,0,0,0,0,0.21,0,0,0.21,0.052,1.738,11,186,1 1.19,0.59,0,0,0.59,0,0,0.59,0,0,0,0,0.59,0,0,0,0,0.59,3.57,0,6.54,0,0,0.59,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0.103,0,0,1.437,11,161,1 0.5,0.25,0.42,0,0.08,0.23,0.02,0.35,0.35,0.69,0.21,0.9,0.5,0.92,0.02,0.33,0.42,0.02,3.05,0,1.43,0,0.94,0.46,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0.02,0,0,0,0,0.02,0,0.02,0,0,0.069,0,0.325,0.523,0.124,6.723,445,4128,1 0.58,0,0,35.46,0.58,0,0.58,0.58,0,0,0,0,0,0.58,0,0.58,0.58,0.58,0.58,0,1.74,0,0,1.16,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0.239,0.239,0,3.338,123,207,1 0,0,0.3,0,0.3,0.91,0,0.3,0,0,0,0.3,0.3,0,0,0.3,0.3,0.3,2.12,0,3.03,0,0,0.3,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0.3,0,0,0,0,0.211,0,0,0.211,0.052,1.752,11,184,1 0,0,0.3,0,0.3,0.91,0,0.3,0,0,0,0.3,0.3,0,0,0.3,0.3,0.3,2.12,0,3.03,0,0,0.3,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0.3,0,0,0,0,0.211,0,0,0.211,0.052,1.752,11,184,1 0.47,0,1.19,0,0.23,0.23,0,0,0,0.47,0,1.43,0,0,0,0.71,1.43,0,5.26,0,2.63,0,0.71,0.23,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0.23,0,0,0,0,0,0,0,0,0,0,0.178,0,0.402,0.402,0.089,5.681,49,392,1 0,0,1.79,0,0,0.59,0,0.59,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0.59,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1.19,0,0,0,0,0,0,0,0,0,0,0,0,0,0,2.103,10,204,1 0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,7.14,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,4.347,0,0,3,7,9,1 0,0,0.48,0,0.72,0.48,0,0,0.24,0,0.48,0.24,0,0,0,0.48,0,0,1.2,0,1.44,0,0.48,0.24,0,0,0,0,0,0.24,0,0,0,0,0,0,0,0,0,0.24,0,0,0.24,0,0,0,0,0.24,0,0.036,0,0.036,0.184,0,2.336,66,264,1 0,0,0.48,0,0.72,0.48,0,0,0.24,0,0.48,0.24,0,0,0,0.48,0,0,1.2,0,1.44,0,0.48,0.24,0,0,0,0,0,0.24,0,0,0,0,0,0,0,0,0,0.24,0,0,0.24,0,0,0,0,0.24,0,0.036,0,0.036,0.184,0,2.336,66,264,1 0.34,0.25,0.25,0,0.08,0.43,0.08,0.25,0.08,1.47,0.34,0.51,0.95,0,0.17,0.08,0,0,3.03,0,0.77,0,0.34,0.34,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0.17,0,0,0,0,0.049,0,0.263,0.263,0.065,3.076,62,526,1 0.43,0,0,0,0.87,0.87,0,0,0,0.43,0,2.18,0,0,0,0,1.74,0,0.87,0,0.87,0,0,0.43,0,0,0,0,0,0,0,0,0,0,0,0.43,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0.802,0,0,5.114,107,179,1 0.43,0,0,0,0.87,0.87,0,0,0,0.43,0,2.18,0,0,0,0,1.74,0,0.87,0,0.87,0,0,0.43,0,0,0,0,0,0,0,0,0,0,0,0.43,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0.874,0,0,5.114,107,179,1 0,0,0.29,0,0.29,0.29,0.29,0.29,0,0,0.58,0.87,0,0,0,0.87,0.58,0.29,2.61,2.61,2.9,0,0,0.58,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0.046,0,0.14,0,0.14,4.892,139,274,1 0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1.4,7.04,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0.543,0,0,5,15,50,1 0,0,0,0,0.36,0.36,0,0.36,0.36,0.36,0,0.36,0,0,0,0,0.73,0,2.94,0,4.04,0,0,0.36,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0.36,0,0,0,0,0,0,0,0.653,0.118,0,1.53,13,75,1 0,0,0.97,0,0.38,0.19,0,0,0,0.19,0,1.16,0,0,0,0,0,0,0.58,0,0.38,0,0.77,0,0,0,0,0,0,0,0,0,0,0.19,0,0,0.19,0,0,0,0,0,0,0,0,0,0,0,0,0.208,0,0.364,0.312,0,7.541,192,543,1 0.17,0,0.08,0,0.42,0.08,0.08,0.42,0.08,0.08,0,0.6,0.17,0.17,0,0,0.17,0.08,1.2,0,3.17,0,0.34,0.08,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0.085,0.028,0.099,0.014,0,4.07,48,574,1 0.52,0,2.38,0,0.26,0,0.26,0,0.52,0,0.26,0,0,0,0,0.79,0,0,1.32,0,1.05,0,0,0.52,0,0,0,0,0,0,0,0,0.26,0,0,0.26,0.26,0,0.52,0,0,0,0,0,0,0,0,0,0,0.69,0,0.327,0,0,5.549,71,566,1 0.46,0.31,0.46,0,0.05,0.13,0.05,0.26,0.44,0.75,0.26,0.96,0.57,1.22,0,0.1,0.44,0,3.21,0,1.48,0,1.01,0.33,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0.02,0,0,0,0,0.068,0,0.346,0.793,0.159,6.05,199,3213,1 0.18,0,0.54,0,1.09,0.18,0.54,0,0.54,0.54,0,0.18,0,0,0.18,0.36,0.18,0.54,1.82,0,2,0,0,0.18,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0.18,0,0,0,0,0,0,0,0.166,0,0.249,0.305,0,3.921,59,447,1 0.17,0,0.08,0,0.42,0.08,0.08,0.42,0.08,0.08,0,0.6,0.17,0.17,0,0,0.17,0.08,1.2,0,3.17,0,0.34,0.08,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0.085,0.028,0.099,0.014,0,4.07,48,574,1 0,0,1.26,0,0,0,0,0,0,0,0,0,1.26,0,0,0,2.53,5.06,2.53,0,3.79,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1.9,0.475,0,1.763,11,67,1 0,0,0,0,0,0,0.36,0,0,0,0,0,0,0,0,0.36,0,0,3.3,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0.73,0,0,0,0,0,0,0.053,0.053,0,18.37,134,496,1 0.37,0.75,1.13,0,0.37,0,0,0.37,0.37,1.88,0.37,2.64,0,0.37,0,0.37,0,0,2.26,0,4.52,0,0.37,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0.197,0,1.248,0.197,0.065,58.705,842,998,1 0,0.57,0,0,0,0,0,0,0,0,0.57,0.57,1.15,0,0,0,0,1.73,3.46,0,1.15,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0.107,0,0,1.421,7,54,1 0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,2.17,0,2.17,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0.411,0,0,4.307,15,56,1 0.09,0.49,0.59,0,0.39,0.19,0,0,0.09,0.39,0,1.59,0.19,0,0,0,0.09,0,3.79,0,1.09,0,0,0.09,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0.778,0.037,0,5.924,1.33,0,5.8,54,725,1 0,0,0,0,0.38,0.38,0.38,0.38,0,0,0.38,0,0,0,0,0.38,0,0,3.87,0,1.93,0,0,0.38,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0.123,0,0,2.062,12,99,1 0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,3.17,0,3.17,0,3.17,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0.298,0.597,0,3.333,12,30,1 0,0.49,1.97,0,2.46,0,0,0,0,0,0,0,0.49,0,0,0.49,1.47,0.49,4.43,0,0.49,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0.424,0,0,12.692,152,330,1 0,0,0,0,0.38,0.38,0.38,0.38,0,0,0.38,0,0,0,0,0.38,0,0,3.87,0,1.93,0,0,0.38,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0.123,0,0,2.062,12,99,1 0.06,0.12,0.77,0,0.19,0.32,0.38,0,0.06,0,0,0.64,0.25,0,0.12,0,0,0.12,1.67,0.06,0.7,0,0.19,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0.06,0,0,0,0,0.041,0.031,0,0.25,0.073,0,1.764,37,766,1 0.74,0.74,0.74,0,0,0,0.37,0,0.37,1.12,1.12,1.12,0,0,0,0,0,0.74,2.99,0,2.24,0,0,0.37,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0.061,0.061,0.122,0,4.727,57,208,1 0,0,0,0,1.58,0,0.39,1.19,0,0.39,0,0.79,0,0,0,0,1.58,0.39,3.96,0,1.98,0,0,0,0,0,0,0,0,0,0,0,0,0,0.79,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0.705,0.211,0,1.903,13,118,1 1.24,0,0.82,0,0,0,0.41,0,0,0.41,0,0.41,0,0,0,1.65,0.41,0,2.9,0,0.41,0,0.41,0.82,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0.193,0,0.904,5.3,0,7.478,92,344,1 0,0.09,0.14,0,1.04,0.09,0.09,0,0.79,0,0.04,0.29,0.19,0,0,0,0.14,0.04,1.53,0.24,1.23,0,0.29,0.04,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0.04,0,0.04,0,0,0,0.015,0.119,0.007,0.431,0.111,0,3.37,87,1645,1 1.24,0,0.82,0,0,0,0.41,0,0,0.41,0,0.41,0,0,0,1.65,0.41,0,2.9,0,0.41,0,0.41,0.82,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0.193,0,0.904,5.3,0,7.478,92,344,1 0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1.42,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,4.722,57,85,1 0,0,0,0,1.21,0,1.21,1.21,1.21,1.21,1.21,1.21,0,0,0,0,4.87,0,2.43,1.21,4.87,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0.555,0,0,104.666,311,314,1 1.44,0,0,0,0,0,0,0,0,0.48,0,2.4,0,0,0,0.96,0,0,6.73,0,1.92,0,0.48,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0.48,0,0,0,0,0,0,0.174,0.087,0,1.612,12,50,1 0.47,0.31,0.47,0,0.05,0.13,0.05,0.26,0.42,0.76,0.26,0.97,0.57,1.23,0,0.1,0.47,0,3.23,0,1.49,0,0.99,0.34,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0.02,0,0,0,0,0.067,0,0.328,0.858,0.157,5.928,199,3160,1 0,0,0,0,1.47,1.47,1.47,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1.562,0,0,5,95,170,1 0.53,0,1.06,0,0.53,0,1.06,0,0,0,0,0.53,0,0,0,1.06,0.53,0,4.25,0,1.06,0,1.59,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0.53,0,0,0,0,0,0,1.208,0.259,0,5.558,76,189,1 1.24,0.41,1.24,0,0,0,0,0,0,0,0,0.41,0,0,0,0.41,0,0.82,3.73,0,1.24,0,0,0.41,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0.41,0,0,0,0,0.068,0,0.48,0.549,0,3.166,19,114,1 0,0.55,0.55,0,2.23,0,0.55,0,0,0,0,0.55,0.55,0,0,0.55,2.79,0,3.91,0,1.67,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0.259,0,1.208,0.345,0,4.761,140,200,1 0,0.55,0.55,0,2.23,0,0.55,0,0,0,0,0.55,0.55,0,0,0.55,2.79,0,3.91,0,1.67,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0.258,0,1.207,0.345,0,4.761,140,200,1 0.37,0.75,1.13,0,0.37,0,0,0.37,0.37,1.89,0.37,2.65,0,0.37,0,0.37,0,0,2.27,0,4.54,0,0.37,0,0,0,0,0,0,0,0,0,0,0,0,0,0.37,0,0,0,0,0,0,0,0,0,0,0,0,0.196,0,1.246,0.196,0.065,62.5,845,1000,1 0.34,0,0.69,0,0.17,0.51,0,0.51,0.17,0.17,0.17,1.38,0,0,0,0.34,1.03,0.17,1.9,1.55,3.81,0,0.17,0.51,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0.17,0,0,0,0,0.17,0,1.275,0.141,0,5.598,78,711,1 0,0.89,1.15,0,0.12,0,0,0.12,0.25,0.12,0.12,0.38,0.12,0,1.15,0,0.12,2.04,2.81,0.12,1.27,0,0,0.12,0,0,0,0,0,0,0,0,0,0,0,0.12,0,0,0,0,0,0,0,0,0,0,0,0,0,0.164,0,0.371,0.061,0,2.89,84,477,1 0,0.47,0.47,0,1.89,0,1.18,0.23,0,0.47,0.23,0.7,0.23,0,0.47,0.23,1.41,0,2.83,0,1.65,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0.08,0,0,1.844,13,83,1 0.47,0.31,0.47,0,0.05,0.13,0.05,0.26,0.44,0.76,0.26,0.97,0.58,1.26,0,0.26,0.44,0,3.24,0,1.5,0,1.02,0.34,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0.02,0,0,0,0.009,0.067,0,0.329,0.78,0.162,6.045,193,3059,1 0,0,0,0,1.35,0.45,0,0,0,0,0,0,0.45,0,0,0.45,0.45,0.45,1.8,0,1.35,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0.138,0,0.138,0,0,5.809,46,122,1 0,0,0,0,0,0,1.23,0,0,0,0,0,0,0,0,1.23,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1.939,0,0,1.379,8,40,1 0,0,0,0,0,0,1.23,0,0,0,0,0,0,0,0,1.23,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1.947,0,0,1.379,8,40,1 0,0,0,0,0,0,1.23,0,0,0,0,0,0,0,0,1.23,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1.949,0,0,1.379,8,40,1 0.19,0,0,0,0.09,0.09,0.19,0,0,0.09,0.09,0.69,0.09,0,0,0,0,0.19,1.38,0,0.49,0,0.39,0,0,0,0,0,0,0,0,0,0,0,0,0.09,0,0,0,0,0,0,0,0,0,0,0,0.09,0.017,0.068,0,0.586,0.189,0.017,2.349,31,477,1 1.03,0,0.68,0,1.03,0,0.68,0,0,0.68,0,0.68,0,0,0.34,0.68,0,0,5.86,0,1.37,0,0.34,0.34,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0.34,0,0,0,0,0,0,0.503,0.062,0,1.82,12,91,1 0.27,0,0.27,0,0,0,0,0,0,0.27,0.27,0.55,0,0,0,0,0,0,2.2,0,0.27,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1.1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0.136,0.182,0,8.207,30,435,1 0,1.09,0,0,0,0,0,1.09,0,0,0,0,0,0,0,0,0,0,0,0,1.09,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1.09,0,0,0,0,0,0,0,1.09,0,0,0,0.173,0.519,0,0,0.692,0,4.941,25,84,1 0,0.89,1.14,0,0.12,0,0,0.12,0.25,0.12,0.12,0.38,0.12,0,1.14,0,0.12,2.04,2.8,0.12,1.27,0,0,0.12,0,0,0,0,0,0,0,0,0,0,0,0.12,0,0,0,0,0,0,0,0,0,0,0,0,0,0.165,0,0.371,0.061,0,2.878,84,475,1 0,0,0,0,1.2,0,1.2,1.2,1.2,1.2,1.2,1.2,0,0,0,0,4.81,0,2.4,1.2,3.61,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0.331,0,0,50.166,295,301,1 0.49,0,0.74,0,0.24,0.74,0.24,0.74,0.24,0.24,0.24,1.23,0,0,0,0,1.23,0,1.23,1.73,2.47,0,0.24,0.74,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0.116,0,1.634,0.155,0,3.975,47,485,1 0,0,0.6,0,0.6,0,0.6,0,0,0,0,0,0.6,0,0,0,0,0.6,1.81,0,1.21,0,0,0.6,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0.412,0,0.619,0.103,0,6.166,33,259,1 0,0.46,0.46,0,1.38,0,0,1.85,0,0.92,0.46,0,0,0,0,0.92,0,0,0.92,0.46,1.38,0,0,0.46,0,0,0,0,0,0,0,0,0,0,0,0,1.38,0,0,0.46,0,0,0,0,0,0,0,0,0,0.072,0,0.795,0.217,0,4.869,66,224,1 0.67,0,0.67,0,0,0,0,0,0,0.67,0,0,0,0,0,0,0,0,1.35,0,1.35,0,0,0,0,0,0,0,0,0,0,0,0,1.35,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,2.362,0,0,3.384,37,132,1 0,0,0,0,0,0,1.47,1.47,1.47,1.47,1.47,0,0,0,0,0,2.94,0,0,1.47,2.94,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1.47,0,0,0,0,0,0,0,0,0,0,0,0,0.147,0,0.294,0.147,0,72,281,288,1 0,0.49,0.49,0,1.49,0,0,0,0,0.99,0.49,0,0,0,0,0.49,0,0,0.99,0.49,1.99,0,0,0.49,0,0,0,0,0,0,0,0,0,0,0,0,1.49,0,0,0.49,0,0,0,0,0,0,0,0,0,0.078,0,0.625,0.312,0,4.75,47,190,1 0,0.53,0,0,0,0.53,0.53,0,0,0,0,0,0,0,0,0,0,1.6,2.67,0,1.6,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0.255,0,0,0,0,2.131,12,81,1 0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,5.55,0,1.11,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1.473,0,0,4.071,29,114,1 0,0.56,0.56,0,2.27,0,0.56,0,0,0,0,0.56,0.56,0,0,0.56,3.4,0,3.97,0,1.7,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0.262,0,1.135,0.349,0,5.105,140,194,1 0.23,0.59,0.23,0,0.23,0.11,0,0,0.82,1.18,0.11,2,0.23,0,0,0,0.11,0,4.84,4.96,1.77,0,0,0.23,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0.11,0,0,0,0,0.186,0,0.13,0.168,0.018,5.76,175,795,1 0,0,0.56,0,1.12,0,0,0,0,0,0,0,0.93,0,0.18,0,0.37,0.37,3.18,0,0.93,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0.189,0,0.441,0,0,1.372,4,70,1 0,0,0.47,0,1.42,0,0,0,0,0,0,0.95,0,0,0,0,0.95,0,2.38,0,2.38,0,0.47,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0.47,0,0,0,0,0.082,0,0.496,0.248,0,5.187,80,249,1 0,0,0.56,0,1.12,0,0,0,0,0,0,0,0.93,0,0.18,0,0.37,0.37,3.18,0,0.93,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0.189,0,0.441,0,0,1.372,4,70,1 0,0,0.48,0,0.72,0.48,0,0,0.24,0,0.48,0.24,0,0,0,0.48,0,0.24,1.21,0,1.45,0,0.48,0.24,0,0,0,0,0,0.24,0,0,0,0,0,0,0,0,0,0.24,0,0,0.24,0,0,0,0,0.24,0,0.036,0,0.036,0.184,0,2.276,66,255,1 0,0.36,0.72,0,1.44,0,0.36,0,0,1.44,0.72,0.36,0.36,0,0,0,0,0,2.89,0,2.17,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,2.517,6.685,60,234,1 0.67,0,0.67,0,0,0,0,0,0,0.67,0,0,0,0,0,0,0,0,1.35,0,1.35,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,2.413,0,0,3.384,37,132,1 0,0.47,0,0,0.47,0,0,0,0,0,0.47,0,0,0,0,0.47,0,0.95,1.9,0,1.42,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0.056,0,0,0,0,7.18,182,359,1 0,0.47,0,0,0.47,0,0,0,0,0,0.47,0,0,0,0,0.47,0,0.95,1.9,0,1.42,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0.056,0,0,0,0,7.18,182,359,1 0.43,0.28,0.43,0,0.04,0.11,0.04,0.21,0.4,0.69,0.23,0.88,0.52,1.14,0,0.23,0.4,0,2.93,0,1.36,0,0.97,0.31,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0.02,0,0,0,0,0.064,0,0.311,0.734,0.145,5.328,144,3016,1 0,0,2.5,0,0,0,0,0,0,0,0,0,0,0,0,5,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0.303,0,0.909,0,0,2.857,11,40,1 0.1,0.2,1.01,0,0.8,0.8,0.5,0,0.8,0.1,0.3,0.7,0.3,0,1.61,0.1,0,1.11,1.31,0.2,0.7,0,0.6,0.1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0.2,0,0.1,0.1,0,0,0,0.11,0,0.49,0.158,0.015,8.55,669,1351,1 0,0,0,0,0,0,1.47,1.47,1.47,1.47,1.47,0,0,0,0,0,2.94,0,0,1.47,2.94,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1.47,0,0,0,0,0,0,0,0,0,0,0,0,0.147,0,0.294,0.147,0,71.5,281,286,1 0,0.56,0.56,0,2.25,0,0.56,0,0,0,0,0.56,0.56,0,0,0.56,3.38,0,3.95,0,1.69,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0.26,0,1.217,0.347,0,5.105,140,194,1 0,0,0,0,2.38,0,0,0,0,0,0,0,0,0,0,0,0,0,4.76,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,2,11,20,1 0,0,0.55,0,1.11,0,0,0,0,0,0,0,0.92,0,0.18,0,0.37,0.37,3.14,0,0.92,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0.186,0,0.434,0,0,1.377,4,73,1 0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,3.12,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0.462,0,0.462,0,0,3.125,6,25,1 0.47,0.31,0.47,0,0.05,0.15,0.05,0.23,0.44,0.76,0.26,0.97,0.58,1.27,0,0.26,0.44,0,3.25,0,1.5,0,1.11,0.34,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0.02,0,0,0,0,0.068,0,0.344,0.784,0.154,6.094,193,3029,1 0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0.81,0,0,4.09,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0.176,0,0.706,0,0,8.411,55,143,1 0,0.47,0,0,0,0.47,0,0,0.23,0.23,0,1.19,0.47,0,0,0.23,0,0.47,2.63,0,0.47,0,0,0.23,0,0,0,0,0,0,0,0,0,0,0.23,0,0.23,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0.327,1.357,0.046,5.769,72,450,1 0,0,0,42.73,0,0,0.42,0,0,0.42,0,0.42,0,0,0.42,0,0,1.28,2.99,0,2.13,0,1.28,0,0,0,0,0,0,0,0,0,0,0,0,0,0.42,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0.349,0,7,105,441,1 0,0,0.54,0,1.08,0,0,0,0,0,0,0.18,0.9,0,0.18,0,0.36,0.36,3.06,0,0.9,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0.029,0.178,0,0.416,0,0,1.373,6,92,1 0,0,0.58,0.58,0,0,0,0.29,0,0,0,0,0.29,0,0,0,0.29,0.58,2.91,0.87,1.74,0,0,0.29,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0.43,0,1.434,0,0.047,3.281,64,361,1 0,0,0.48,0,1.44,0.48,0,0,0,0,0,0.96,0,0,0,0,0.96,0,2.41,0,2.41,0,0.48,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0.48,0,0,0,0,0.083,0,0.502,0.251,0,5.488,80,247,1 0,0,0.48,0,1.45,0,0,0,0,0,0,0.97,0,0,0,0,0.97,0,2.42,0,2.42,0,0.48,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0.48,0,0,0,0,0.084,0,0.421,0.252,0,5.173,80,238,1 0,0,0.49,0,1.47,0,0,0,0,0,0,0.98,0,0,0,0,0.98,0,2.45,0,2.45,0,0.49,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0.49,0,0,0,0,0.084,0,0.677,0.254,0,5.2,80,234,1 0.72,0,0,0,0,0,1.45,0,0,0,0,0.72,0,0,0,0,1.45,0,2.18,1.45,5.1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0.105,0,0,2.689,25,78,1 0.45,0.28,0.42,0,0.04,0.11,0.04,0.21,0.4,0.69,0.23,0.88,0.52,1.14,0,0.23,0.4,0,2.93,0,1.36,0,1,0.31,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0.02,0,0,0,0,0.065,0,0.318,0.754,0.152,5.349,144,3033,1 1.17,0,0,0,0,0,0,0,0,0,0,1.17,0,0,0,0,1.17,0,3.52,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1.17,0,0,0,0,0,0,0.924,0,0,1.966,10,59,1 0,0,0,0,0.64,0,0,0,0,0,0.64,0.64,0,0,0,0,1.29,0,1.29,5.19,1.29,0,0,0.64,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0.468,0,0.093,0,0,2.755,66,135,1 0,0,0,0,0.64,0,0,0,0,0,0.64,0.64,0,0,0,0,1.29,0,1.29,5.19,1.29,0,0,0.64,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0.468,0,0.093,0,0,2.755,66,135,1 0,0,0,0,0.64,0,0,0,0,0,0.64,0.64,0,0,0,0,1.29,0,1.29,5.19,1.29,0,0,0.64,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0.468,0,0.093,0,0,2.755,66,135,1 0,0,0.3,0,0,0,0,0,0,0.3,0,0.3,0,0,0.3,0.3,0,0.15,0.15,0,0.15,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0.76,0,0,0,0,0,0,0,0,0,0,0.3,0.472,0.067,0,0,0.044,0.067,1.607,16,418,1 0.41,0,1.25,0,0.2,0.2,0,0,0,0.41,0,1.25,0,0,0,0.62,1.25,0,4.6,0,2.3,1.67,0.62,0.2,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0.2,0,0,0,0,0,0,0,0,0,0,0.153,0,0.345,0.345,0.306,5.132,37,426,1 0,0,0,0,3.7,0,0,0,0,0,0,0,0,0,0,0,0,0,3.7,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,13.166,28,79,1 0.47,0.31,0.47,0,0.07,0.13,0.05,0.26,0.44,0.76,0.26,0.97,0.57,1.26,0,0.26,0.44,0,3.22,0,1.47,0,1.1,0.34,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0.02,0,0,0,0,0.068,0,0.331,0.79,0.159,6.073,193,3043,1 0,0,0.55,0,1.11,0,0,0,0,0,0,0,0.92,0,0.18,0,0.37,0.37,3.15,0,0.92,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0.185,0,0.464,0,0,1.392,4,78,1 0,0.63,0,0,1.59,0.31,0,0,0.31,0,0,0.63,0,0,1.27,0.63,0.31,3.18,2.22,0,1.91,0,0.31,0.63,0,0,0,0.31,0,0,0,0,0,0,0,0,0,0,0,1.59,0,0,0,0,0,0,0,0,0,0.278,0,0.055,0.501,0,3.509,91,186,1 0,0.56,0.56,0,2.25,0,1.12,0,0,0,0,0.56,0.56,0,0,0.56,3.38,0,3.95,0,2.25,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0.26,0,1.13,0.347,0,4.875,140,195,1 0,0,0.55,0,1.11,0,0,0,0,0,0,0,0.92,0,0.18,0,0.37,0.37,3.15,0,0.92,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0.185,0,0.464,0,0,1.392,4,78,1 0,0,0,0,0.94,0,0,0,0,0,0,0,0,0,0,0,0,0,1.88,0,2.83,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0.443,0,0,4.652,31,107,1 0.17,0,0.17,0.44,0.17,0,0,0,0,0,0,0.35,0.52,0.17,0,0.08,0.52,0,4.04,0,2.64,1.23,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0.17,0,0,0,0,0,0,0,0,0,0,0,0.709,0.105,0,0,0,0,2.039,18,414,1 0,0,0,0,0,0,0,0,0,0.33,0,0.67,0,0,0,0,0,0,1.68,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0.33,0,0,0,0,0,0,0,0,0,0.33,0.33,0,0,0.28,0.28,0,0.112,0.336,0,2.96,19,222,1 0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0.88,2.65,0,0.88,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0.88,0,0,0,0,0,0,0,0,0,0,0,0,0.14,0,0,0,0,1.512,7,62,1 0,0,0.12,0,0.36,0.24,0,0,0,0,0.12,0.12,0.12,0,0,0,0,0,1.21,0,0.96,0,0,0.12,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0.043,0,0.693,0,0,1.335,11,195,1 0.19,0.19,0.29,0,1.07,0.19,0.19,0.97,0.87,0.58,0.09,1.07,0.19,0.87,0.09,0,0,1.17,3.81,0.68,1.75,0,0.09,0.29,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0.09,0.09,0,0,0,0,0,0,0,0,0,0,0.202,0.405,0.233,0.031,4.32,49,877,1 0,0,0,0,0,0,0,0,0,0,0,0,0,1.56,0,0,0,0,1.56,6.25,1.56,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1.56,0,0,0,0,0,0,0,0,0,0,0,0,0,0.754,0.188,0,5.551,119,161,1 0.73,0,0.36,0,0.36,0.36,1.09,0,0,0,0,0.36,0,0,0,0.36,1.83,0.73,2.56,0,1.09,0,0.36,1.09,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0.183,0,0.427,0.061,0,4.42,192,305,1 0,0,0.22,7.07,0,0,0,0.45,0,0,0,0,0,0,0,0.45,0,0,0.22,0,0.45,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0.22,0,0,0,0,0,0,0,0,0.22,0,0,0,0.153,0.092,0,0,0,0.03,2.47,27,425,1 0,0.19,0,0,0.68,0.09,0.09,0,0.29,0.09,0.48,0.77,0.09,1.65,0,0.58,0.87,0.19,3.21,0,2.43,0,0,0.09,0,0,0,0,0,0,0,0,0,0,0,0,0.29,0,0,0,0,0,0,0,0,0,0,0,0,0.03,0,0.06,0.045,0,1.597,20,329,1 0,0.42,0.42,0,0,0,0,0,0,0,0,0.84,0,0,0,0,0,0.84,2.95,0,2.53,0,0.84,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0.075,0,0.6,0.3,0,4.02,82,197,1 0,0.42,0.42,0,0,0,0,0,0,0,0,0.84,0,0,0,0,0,0.84,2.95,0,2.53,0,0.84,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0.075,0,0.6,0.3,0,4.02,82,197,1 0,0.4,0.4,0,0.4,0,0.4,0,0,2.4,0,0,0,0,0.4,0.8,0,0,2,0.4,2,0,0,0,0,0,0,0,0,0,0.4,0,0.4,0,0,0,0,0,0,0.4,0,0,0,0,0,0,0,0,0,0.232,0,0.116,0.116,0,4.058,54,207,1 0,0,0,0,0,0.63,0.63,0,0,0,0,0,0,0,0,0,0,0,0,0,1.91,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0.613,0,1.251,12,174,1 0,1.25,0,0,0,0,1.25,0,0,0,0,0,0,0,0,1.25,1.25,1.25,1.25,0,3.75,0,0,0,0,0,0,0,0,0,0,0,1.25,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0.199,0,0,0.298,0,0,3.976,32,171,1 0,0,0.79,0,0.26,0,0.26,0.26,0,0,0,1.31,0,0,0,0,0,0.26,1.58,0,0.52,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0.52,0.26,0,0,0.26,0,0,0,0,0,0,0,0.26,0.038,0.038,0,0.077,0,0,1.8,29,171,1 0,0.7,0,0,2.83,0,0,0,0,0.7,0,0.7,0,0,0,1.41,1.41,0,7.09,0,5.67,0,0,0,0,0,0,0,0,0,0,0,0.7,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0.126,4.176,44,142,1 0,0.55,0.55,0,2.22,0,0.55,0,0,0,0,0.55,0.55,0,0,0.55,3.88,0,3.88,0,1.66,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0.255,0,1.191,0.34,0,4.59,140,202,1 0,0,0.72,0,0.72,0,0.72,0,0,0,0,0,0.72,0,0,0,0,0,1.45,0,1.45,0,0,0.72,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0.364,0,0.729,0.121,0,7.781,32,249,1 0,0,0.84,0,0.84,0,0.84,0,0,0,0,0,0.84,0,0,0,0,0,2.54,0,1.69,0,0,0.84,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0.388,0,0.776,0.129,0,10.375,168,249,1 0,0,0.72,0,0.72,0,0.72,0,0,0,0,0,0.72,0,0,0,0,0,1.45,0,1.45,0,0,0.72,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0.364,0,0.729,0.121,0,7.781,32,249,1 0,1.22,0.81,0,0.4,0,0.81,0.4,0,0.81,0,0.4,2.04,0,0,3.27,0,1.22,0.81,0,0.4,0,2.04,0,0,0,0,0,0,0,0,0,0,0,0,0,0.4,0,0,0,0,0,0,0,0,0,0,0,0,0.64,0,0.64,0.8,0,7.651,181,505,1 0.34,0.05,0.58,0,0.63,0.17,0,0,0.75,0.23,0.34,1.27,0.34,0,0,0.58,0.05,0.17,3.01,2.61,1.5,0,0.17,0.34,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0.204,0,0.13,0.186,0.027,4.225,131,1107,1 0.71,0,0,0,5,0,0,0,0,0,0,0,0,0,0,2.85,0,0,2.14,0,0,0,0,0.71,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1.417,0,0,3.029,12,103,1 0.65,0,0,0,1.3,0,0,0,0,0,0.65,1.3,0.65,0,0,1.3,1.3,0,2.61,0,3.26,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0.65,0,0,0,0,0,0,0.515,0.103,0,2.04,12,51,1 0,0,0,0,0,0,1.61,0,0,1.61,0,1.61,0,0,0,0,0,0,3.22,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0.23,0,0,4.941,60,84,1 0,0,0,0,0.32,0,0,0.32,0.32,0.64,0,1.28,0,0,0,2.56,0.96,0,3.84,0,0.96,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0.098,0.049,0.492,0,0,2.184,25,166,1 0,0.64,0.64,0,0.64,0,0.64,0,2.59,1.29,1.29,1.94,0,0,0,0.64,0.64,0.64,3.24,0,2.59,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0.233,0,0,1.136,4,25,1 0,0,0,0,0.49,0,0.98,0,0,0,0,0.98,0,0,0,0,0.98,0,2.45,0,1.96,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0.064,0.258,0,0.645,0.064,0.064,3.552,25,135,1 0.44,0,0.88,0,0.44,1.32,0,0,0,0,0,0,0,0,0,0,0,0.44,1.76,0,2.2,0,2.2,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0.222,0,0,0.444,0.37,0,2.413,16,140,1 0,0,0.69,0,0.69,0,0.69,0,0,0,0,0,0.69,0,0,0,0,0,1.38,0,2.08,0,0,0.69,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0.35,0,0.701,0.116,0,8.781,34,281,1 0.44,0,0.88,0,0.44,1.32,0,0,0,0,0,0,0,0,0,0,0,0.44,1.76,0,2.2,0,2.2,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0.222,0,0,0.444,0.37,0,2.413,16,140,1 0.44,0,0.88,0,0.44,1.32,0,0,0,0,0,0,0,0,0,0,0,0.44,1.76,0,2.2,0,2.2,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0.222,0,0,0.444,0.37,0,2.413,16,140,1 0.44,0,0.88,0,0.44,1.32,0,0,0,0,0,0,0,0,0,0,0,0.44,1.76,0,2.2,0,2.2,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0.222,0,0,0.444,0.37,0,2.448,16,142,1 0,0,0,0,0,0,0,0,0,0,0,0.59,0,0,0,0.59,0,0,1.18,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0.177,0,0.443,0.088,0,1.693,16,83,1 0.1,0.2,1.01,0,0.8,0.8,0.5,0,0.8,0.1,0.3,0.7,0.3,0,1.61,0.1,0,1.11,1.31,0.2,0.7,0,0.6,0.1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0.2,0,0.1,0.1,0,0,0,0.11,0,0.49,0.158,0.015,8.55,669,1351,1 0,0,1.66,0,1.66,0,1.66,0,0,0,0,1.66,0,0,0,3.33,0,0,1.66,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0.284,0,1.424,0,0,24.333,59,146,1 0.1,0.2,1.01,0,0.8,0.8,0.5,0,0.8,0.1,0.3,0.7,0.3,0,1.61,0.1,0,1.11,1.31,0.2,0.7,0,0.6,0.1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0.2,0,0.1,0.1,0,0,0,0.11,0,0.49,0.158,0.015,8.55,669,1351,1 0.17,0.17,0,0,0.52,0,0,0.43,0,0.17,0.17,0.35,0,0,0,0.87,0,0,1.4,0.17,0.87,0,0,0.17,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0.376,0,0.25,0.721,0,2.742,35,617,1 0,0,0.8,0,0.8,1.61,0,0,0,0,0,0.8,1.61,0,0,0,0,0,4.03,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0.875,0,0,6,48,138,1 0,0.52,1.05,0,2.63,0.52,1.05,0,0,0,0.52,1.05,0,0,0,1.05,1.05,1.05,4.21,0,1.57,0,0.52,0,0,0,0,0,0,0,0,0,0.52,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0.091,1.276,0.729,0.091,3.062,19,98,1 0.17,0,0.17,0,1.45,0.34,0.05,0.05,0.05,0.05,0.05,0.52,0.29,0.05,0,0,0.69,0.05,4.24,0.23,1.04,0,0.75,0.05,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0.01,0.051,0,0.02,0.163,0,1.796,12,458,1 0.17,0.17,0,0,0.52,0,0,0.52,0,0.17,0.17,0.34,0,0,0,0.87,0,0,1.39,0.17,0.87,0,0,0.17,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0.373,0,0.342,0.716,0,2.973,35,336,1 0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,2.46,0,2.46,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0.415,0,0,1.909,9,42,1 0.1,0.3,0.4,0,0.2,0.9,0.2,0.5,0.8,0.8,0.2,0.8,0,0,1.5,0,0.2,1.6,2.2,0.2,1,0,0.1,0.2,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0.2,0,0,0,0,0,0,0.175,0,0.307,0.175,0.014,6.937,669,1214,1 0,0,1.04,0,1.04,0,0,1.39,0.34,0,0,0.34,0,0,0,0,0,0,3.83,2.09,1.04,0,0.34,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0.105,0,0.157,0.105,0,2.366,60,142,1 0,0.89,1.14,0,0.12,0,0,0.12,0.25,0.12,0.12,0.38,0.12,0,1.14,0,0.12,2.04,2.8,0.12,1.27,0,0,0.12,0,0,0,0,0,0,0,0,0,0,0,0.12,0,0,0,0,0,0,0,0,0,0,0,0,0,0.185,0,0.371,0.061,0,2.878,84,475,1 0,0.89,1.15,0,0.12,0,0,0.12,0.25,0.12,0.12,0.38,0.12,0,1.15,0,0.12,2.04,2.81,0.12,1.27,0,0,0.12,0,0,0,0,0,0,0,0,0,0,0,0.12,0,0,0,0,0,0,0,0,0,0,0,0,0,0.185,0,0.37,0.061,0,2.878,84,475,1 0.29,0.19,0.68,0,0,0.58,0,0.58,0.58,0.77,0,0.58,0.38,0,0.97,0,0.19,1.46,1.75,0.38,0.77,0,0.58,0.68,0,0,0,0,0,0,0,0,0,0,0.09,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0.034,0,0.569,0.207,0.034,12.064,691,1689,1 0.31,0.2,0.72,0,0,0.62,0,0.62,0.62,0.93,0,0.62,0.41,0,1.04,0,0.2,1.56,1.87,0.41,0.83,0,0.62,0.72,0,0,0,0,0,0,0,0,0,0,0.1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0.548,0.199,0.033,14.301,685,1516,1 0,0.3,0.3,0,0.61,0.3,0,0,0,0.3,0.3,0.3,0,0,0,0.92,0,0,0.61,0,0,0,0,0,0,0,0,0,0,3.38,0,0,0,0,0,0,0,0,0,0,0,0,0,0.3,0,0,0,0,0,0.094,0,0,0,0,2.141,38,212,1 0,0,0,0,1.13,0,1.13,0,0,0,0,0,0,0,0,1.13,1.13,0,1.13,0,0,0,0,0,0,0,0,0,0,0,0,0,1.13,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0.319,0,0,0,0.479,3.925,17,106,1 0.17,0,0.17,0,1.45,0.34,0.05,0.05,0.05,0.05,0.05,0.52,0.29,0.05,0,0,0.69,0.05,4.24,0.23,1.04,0,0.75,0.05,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0.01,0.051,0,0.02,0.163,0,1.796,12,458,1 0,0,0,0,0.32,0.64,0,0,0,0.64,0,0.32,0,0,0,0,0,0,1.94,0,0,0,0,0,0,0,0,0,0,0.97,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0.052,0,0.263,0.105,0,3.418,110,188,1 0.31,0.2,0.72,0,0,0.62,0,0.62,0.62,0.93,0,0.62,0.31,0,1.14,0,0.2,1.56,1.87,0.41,0.83,0,0.62,0.72,0,0,0,0,0,0,0,0,0,0,0.1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0.548,0.199,0.033,14.283,685,1514,1 0,0.39,0.99,0,0.39,0,0.19,0,0.19,0.19,0,0.39,0,0,0,0,0.19,0.19,0.59,0.59,0.39,0,0.19,0.39,0,0,0,0.59,0,0,0,0,0,0,0,0.19,0,0,0,0,0,0,0,0,0,0,0,0,0,0.074,0,0.174,0.548,0,4.965,97,993,1 0,0,0,0,0.43,0.86,0,0,0,0,0,0,0,0,0,0,0,0,2.17,0,0,0,0,0,0,0,0,0,0,0.86,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0.068,0,0,0,0,2.923,55,114,1 0.1,0.5,0.6,0,0.3,0.2,0,0,0.1,0.4,0,1.6,0.2,0,0,0,0.1,0,3.81,0,1.1,0,0,0.1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0.78,0.037,0,5.942,1.334,0,5.838,54,724,1 0.39,0,0,0,0,0.39,0,0,0,0,0,1.19,0,0,0,0.39,0.39,0,2.39,0,2.78,0,1.19,0.39,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0.64,0.256,0,3.5,30,112,1 0,0,0,0,0,1.25,0,0,0,0,0,0,0,0,0,0,0,0,1.25,0,0,0,0,0,0,0,0,0,0,0.62,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0.098,0,0.392,0,0,3.965,67,115,1 0,0,0,0,0.54,0.27,0,1.62,0,1.62,0,0,0,0,0.54,0,0,0.27,2.16,0,2.7,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1.35,0,0,0,1.62,0,0,0,0,0,0,0,0,0,0.038,0.038,0.463,0,0,7.941,65,405,1 0,0,0.26,0,0.26,0,0,0,0,0,0.26,1.06,0,0.26,0.26,0.8,0,0.26,1.33,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0.299,0,0.471,0,0,2.088,15,188,1 0,0.9,0,0,0.9,0,0.9,0,0,0.9,0,0,0,0,0,1.81,0,1.81,1.81,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0.9,0,0,0,0,0,0,0,0,0,0,0,0,0,0.319,0,1.492,0,19.829,5.3,66,106,1 0.44,0.44,0,0,0,0,0,0,0,2.64,0,1.76,0,0,0,0,0,0.44,2.64,0,0.44,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0.231,0,0,0.231,0,5.977,70,263,1 0,0.55,0.55,0,0.55,0,0,0.55,0,0,0,1.11,0,0,0,1.11,0,0.55,1.66,0,2.22,0,0.55,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0.55,0,0,0,0,0,0,0,0.484,0.08,0,8.375,85,201,1 0,0,0,0,1.21,0,0.8,0,0,0.8,0.4,0.8,0.4,0,0,1.61,0,0,1.61,0,1.21,0.8,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0.07,0,0.21,0,0.07,4.49,24,229,1 0,0.53,0,0,1.06,0,1.6,0,0,0.53,0,0,0,0,0.53,0,0,0.53,2.13,0,0.53,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0.53,0,0,0,0,0.239,0.079,0.159,0,0,4.555,51,123,1 0,2.35,0,0,1.17,0,0,0,0,2.35,0,1.17,0,0,0,1.17,0,0,2.35,0,3.52,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,5.25,20,42,1 0,0,0,0,0,0,0,6.06,0,0,0,0,0,0,0,0,0,0,6.06,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0.48,0.48,0,1.684,10,32,1 0,0.8,0,0,0.8,0,0.8,0,0,0.8,0,0,0,0,0,0.8,0.8,0.8,1.6,0,1.6,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0.135,0,0.27,0,0,3.115,19,81,1 0,0.8,0,0,0.8,0,0.8,0,0,0.8,0,0,0,0,0,0.8,0.8,0.8,1.6,0,1.6,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0.134,0,0.269,0,0,3.115,19,81,1 0.59,0,0.35,0,1.66,0,0,0,0.23,1.3,0.71,2.49,0.59,0,0,0.59,0.11,0,4.51,0,1.66,0,0.47,0.83,0,0,0,0,0,0,0,0,0,0,0.23,0,0,0,0,0.11,0,0,0,0,0.11,0,0,0,0,0.038,0,0.155,0.233,0.019,3.625,54,504,1 0.17,0.26,1.21,0,0.43,0.6,0.43,0.26,0.69,0.52,0.26,1.3,0.17,0,0.6,0.78,0.17,1.39,2.43,0.17,1.13,0,0.95,0.17,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0.08,0,0,0,0,0.08,0,0,0,0,0.108,0,0.271,0.243,0.013,6.395,583,1375,1 0.1,0.1,0.7,0,0.6,0.2,0.4,0.1,1.41,0.81,0.1,0.5,0,0,0,0.1,0,1.11,2.22,0.4,1.92,0,0,0.3,0,0,0,0,0,0,0,0,0,0,0.1,0,0,0,0.1,0,0,0,0,0,0,0,0,0,0,0,0.26,0.994,0.391,0.032,3.176,56,1042,1 0.22,0,0,0,0,0.22,0.22,0,0,0.22,0,0.22,0,0,0,0.22,0,0,2.03,0,0.22,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,4.271,0,0.647,0,0,1.869,21,215,1 0.1,0.3,0.4,0,0.2,0.9,0.2,0.5,0.8,0.8,0.2,0.8,0,0,1.6,0,0.2,1.7,2.2,0.2,1,0,0.1,0.2,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0.2,0,0,0,0,0,0,0.174,0,0.334,0.174,0.014,6.896,669,1200,1 0.49,0.49,0.49,0,0,0,0.49,0,0,0,0,1.98,0,0,0,0.49,0,0.49,3.46,0,0.99,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0.49,0,0,0,0,0,0,0,0,0,0,0,0,0,0.195,0,0.845,0.195,0,7.205,47,281,1 0,0,0.65,0,0.65,0,0.65,0,0,0,0,0.65,0,0,0,0.65,0,0,4.6,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0.65,0,0,0,0,0,0,0,0,0,0,0,0.233,0,0,2.5,23,135,1 0,0,1.25,0,1.25,0.62,0,0,0,0,0,0,0,0,0,1.25,0.62,0,0.62,0,1.88,0.62,0.62,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0.62,0,0,0,0,0.11,0,0.331,0.11,0.11,3.897,30,152,1 0.9,0,0,0,0,0,0.9,0,0,0,0,0,0,0,0,0,0.9,0.9,1.81,0,2.72,0,0,0.9,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0.564,0,0,2.818,19,62,1 0,0.29,0,0,0,0.29,0.29,2.04,0,0,0.29,1.16,0.29,0,0.29,1.16,2.33,1.16,2.33,0,1.16,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0.132,0,0.044,0,0,1.559,24,145,1 0,0.95,0.95,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0.47,0.47,1.91,0,0,0.47,0,0,0,0,0,0,0,0.47,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0.067,0.202,0,0.269,0,0,4.18,45,464,1 0.54,0.13,0.38,0,0.05,0.16,0,0.05,0.35,0.16,0.24,1.11,0.38,1.19,0.13,0.19,0.43,0.48,3.56,0,0.81,0,1.14,0.57,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0.05,0,0.02,0,0,0.086,0,0.268,0.15,0.159,6.761,195,3313,1 0.54,0.13,0.38,0,0.05,0.19,0,0.05,0.35,0.16,0.24,1.11,0.38,1.19,0.13,0.19,0.43,0.48,3.56,0,0.81,0,1.14,0.57,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0.05,0,0.02,0,0,0.086,0,0.273,0.15,0.159,6.789,195,3327,1 0.27,0.27,0.55,0,0.27,0.27,0,1.39,0.27,0.83,0.27,0.55,0,0,0,0,1.39,0.55,1.67,1.95,3.07,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0.27,0,0,0,0,0,0,0,0,0,0.279,0,2.001,0.093,0,3.706,63,341,1 0,0,0,0,0,0,0,0,0,0,0,0,0,2.1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1.05,0,0,0,0,0,0,0,0,1.05,0,0,0,0,0.177,0,0,0.354,0,4.047,29,85,1 0.1,0.1,0.03,0,0.07,0.03,0,0.03,0,0.1,0,0.53,0,0,0,0.17,0.03,0,0.81,0.03,1.35,0,0.1,0.17,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0.03,0,0,0,0,0.03,0,0,0.071,0,0.013,0.065,0,2.11,46,3220,1 0.49,0.33,0.33,0,0.08,0.41,0.08,0.24,0,1.4,0.33,0.57,0.9,0,0.24,0,0,0,2.89,0,0.9,0,0.16,0.41,0,0,0,0,0,0,0,0,0.08,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0.063,0,0.271,0.191,0.095,4.904,264,667,1 0,0.27,0.27,0,1.09,0,0,0,0.82,0.54,0,0.27,0.27,0,0,0.27,0.54,0,2.46,0,2.19,0,0,0.54,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0.085,0.128,0,2.484,20,164,1 1.18,0.39,0.59,0,0,0.98,0.19,0.19,1.38,0.39,0,0.98,0,0.19,0,0.98,0,0,2.56,0.39,1.38,0,0,1.38,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0.237,0,0.765,0.316,0.026,6.652,76,632,1 0,0,0,0,3.84,0,0,1.28,0,0,0,1.28,0,0,0,0,0,0,2.56,0,1.28,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0.203,0,0,1.956,10,45,1 0.33,0.44,0.37,0,0.14,0.11,0,0.07,0.97,1.16,0.11,1.42,1.76,1.27,0.03,0.03,0.07,0.07,4.38,0,1.49,0,0.33,0.18,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0.11,0,0.03,0,0,0,0.006,0.159,0,0.069,0.221,0.11,3.426,72,819,1 0,0,0,0,0,0,0,3.12,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1.04,0,0,0,0,0.198,0,0.198,0.198,0,3.857,25,81,1 0,0,0.78,0,1.17,0,0,0,0,0,0,0.39,0,0,0,0.78,0,0,1.56,0,1.96,0,0,0.78,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0.094,0,4.111,20,222,1 0,0.34,1.02,0,0.68,0.34,0.34,0,0,0,0,0.34,0,0,0,2.04,0,0.34,4.76,0,2.38,0,0,0.34,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0.167,0,0.222,0,4.008,6.978,56,328,1 0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,4.25,0,2.12,0,0,0,0,0,0,0,0,0,0,0,2.12,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,4.5,26,45,1 0,0,0.48,0,1.45,0,0,0,0.48,0,0,0,0,0.16,0,0.64,0.32,0,0.8,0,0.48,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0.16,0,0,0,0,0,0,0,0,0.16,0,0,0,0,0.198,0,0.594,0,0,5.683,128,557,1 0.28,0.28,0.56,0,0.28,0.28,0,1.4,0.28,0.84,0.28,0.56,0,0,0,0,1.4,0.56,1.69,1.97,3.09,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0.28,0,0,0,0,0,0,0,0,0,0.284,0,1.282,0.094,0,3.725,63,339,1 0.3,0,0,0,0.3,0.3,0.61,0,0.61,0.61,0,0.61,0,0,0,0.3,0.3,0.61,1.84,0,0.92,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0.051,0,0.103,0.051,0,6.125,64,343,1 0,0,0,0,0,0,0,0,0,3.77,0,0,0,0,0,0,0,0,1.88,0,0,0,0,1.88,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0.264,0,0,0,0,0,4.333,13,78,1 0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,6.66,0,0,0,0,6.66,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0.537,0,0,2.777,12,25,1 0,0,0,0,0,0,0,0,0,3.77,0,0,0,0,0,0,0,0,1.88,0,0,0,0,1.88,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0.264,0,0,0,0,0,4.333,13,78,1 0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,6.66,0,0,0,0,6.66,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0.537,0,0,2.777,12,25,1 0,0,0,0,0,0,0,0,0,3.77,0,0,0,0,0,0,0,0,1.88,0,0,0,0,1.88,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0.264,0,0,0,0,0,4.333,13,78,1 0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,6.66,0,0,0,0,6.66,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0.537,0,0,2.777,12,25,1 0,0,0.53,0,0.21,0.1,0.1,0.53,0.1,0.21,0,0.64,0,0,0,0,0.1,0,0,0,0,0,0.74,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0.099,0,0.016,0.066,0,2.104,29,381,1 0,0,0,0,0,0,1.15,0,0,0,1.15,0.76,0.76,0,0,0.38,0,0.38,4.61,0.38,0.76,0,1.92,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0.486,0.347,0,1.608,6,74,1 0,0,0.68,0,0.68,0,0.68,0,0,0.68,0,0.68,0,0,0,0,0,4.1,4.1,0,0.68,0,1.36,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1.36,0,0,0,0,0,0,0,0,0,0,0,1.089,0.242,0,3.488,60,157,1 0,0,0.51,0,1.03,0.51,0,0,0,0,0.51,1.03,0,0.51,0,0,0.51,0.51,2.59,0,5.18,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0.074,0,0.373,0.149,0,7.233,71,217,1 0,0.35,0.17,0,0,0,0,0,0.17,1.25,0,0.53,0,0,0,0,0,0.17,3.21,0,1.25,7.32,0,0.17,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0.17,0,0,0,0,0,0,0.066,0,0,0.099,0.63,16.418,158,903,1 0,0,0,1.33,0,0,0,1.33,0,0,0,0,0,0,0,1.33,0,0,0,0,1.33,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0.684,0,0.228,3,12,69,1 0,0,0.27,0,0.82,0,0,0,0,0,0,0,0,0,0,0,0,0,0.82,0,1.1,1.93,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0.14,0,0.187,6.693,49,328,1 0,0,0,0,0,1.09,0,0,0,0,0,0,0,0,0,0,0,0,2.19,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0.403,0,3.427,0,0,2.678,12,75,1 0.09,0,0.27,0,0.36,0.09,0,0.18,0.09,0,0,0.73,0,0.36,0,0,0,0,2.01,0,3.38,0,0.36,0.09,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0.27,0,0,0,0.016,0.048,0.032,0.257,0.032,0.032,3.689,69,535,1 0.73,0,0.36,0,1.59,0,0,0,0.24,1.35,0.73,2.58,0.61,0,0,0.61,0.12,0,4.55,0,1.72,0,0.49,0.98,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0.12,0,0,0,0,0.041,0,0.104,0.229,0.02,3.705,54,478,1 0.73,0,0.36,0,1.59,0,0,0,0.24,1.35,0.73,2.58,0.61,0,0,0.61,0.12,0,4.55,0,1.72,0,0.49,0.98,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0.12,0,0,0,0,0.041,0,0.104,0.229,0.02,3.705,54,478,1 0,0,0,0,0,0,0,0,0,0,0,0,0,2.04,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1.02,0,0,0,0,0,0,0,0,0,0,0,0,0,0.176,0,0.176,0.352,0,3.857,25,81,1 0.66,0,0.26,0,0.26,0,0.13,0,0.66,0.26,0,0,0.79,0.13,0,0,0,0,3.98,0,0.53,0,0,1.46,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0.13,0,0,0,0,0.109,0,0.414,0.021,0,5.955,65,667,1 0.18,0,0.09,0,0.36,0.09,0,0.36,0.09,0,0,0.63,0.09,0.36,0,0,0.09,0,1.27,0,3.38,0,0.36,0.09,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0.059,0.029,0.029,0.014,0,4.192,48,566,1 0,0,1.15,0,0.38,0.38,0,0,0,0,0,0.38,0,0,0,1.54,0,0,5.4,0,2.31,0,0,0.38,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0.196,0,0.261,0,0,5.666,56,272,1 0,0,0,0,1.01,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,5.05,0,0,0,0,0,0,0,0,0,0,0,0,0.088,0,0,0.088,0,6.718,33,215,1 0,0,0.53,0,0.53,0,0,0.53,0,0,0,1.06,0,0,2.12,0,0.53,0.53,2.65,0,2.65,0,1.59,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0.53,0.53,0,0,0,0,0,0,0,0,0,0.191,0,0.095,0.478,0,5.038,60,131,1 0,0.11,0.35,0,1.18,0.47,0.23,0.35,0,0.11,0.11,0.95,0,0.11,0,2.14,0.95,0.23,1.9,0.35,0.35,0,0.59,0.11,0,0,0,0,0,0,0,0,0,0,0,0.35,0,0,0,0.11,0,0,0,0,0,0,0,0,0,0.059,0,0.434,0.197,0.217,8.026,283,1509,1 0,0.35,0.35,0,1.07,0,0,0.35,0,1.07,0,0.71,0,0,0,0,0.71,0.71,2.85,0,2.5,0,1.42,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0.35,0,0,0,0,0.35,0,0,0,0,0.24,0,0.24,0.24,0,3.414,25,140,1 0,0.76,0,0,0,0,0,0,0.57,0.19,0,0,0,0,0,0.57,0,0.19,0.19,0.38,0.57,10.17,0,0,0,0,0,0,0,0,0,0,0.19,0,0,0,0,0.19,0,0,0,0,0,0,0,0,0,0,0,0.099,0,0.232,0.066,0.928,20.432,213,1655,1 0.1,0,0.1,0,0.4,0.1,0.1,0,0.2,0.2,0.4,0.5,0,0.6,0,0.91,0.2,0,1.72,4.26,1.72,0,0.4,0.2,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0.096,0,0.336,0.16,0,6.758,494,1426,1 0.39,0.46,0.31,0,0.15,0.03,0,0.19,0.58,0.66,0.31,0.7,0.62,1.29,0.03,0.23,0.43,0,3.16,0,1.36,0,0.5,0.46,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0.03,0,0,0,0.006,0.078,0,0.381,0.496,0.133,7.192,543,2424,1 0.32,0,0.64,0,0.32,0.32,0,1.61,0.32,0.64,0.32,0.64,0,0,0,0,1.61,0,1.29,2.58,3.54,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0.32,0,0,0,0,0,0,0,0,0,0.16,0,1.178,0.107,0,3.613,63,318,1 0.1,0,0.1,0,0.4,0.1,0.1,0,0.2,0.2,0.4,0.5,0,0.6,0,0.91,0.2,0,1.72,4.26,1.72,0,0.4,0.2,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0.096,0,0.336,0.16,0,6.758,494,1426,1 0.08,0.08,0.76,0,0.85,1.02,0.25,0.17,0.59,0.08,0.17,0.59,0.17,0,2.21,0.25,0.08,0.93,1.61,0.17,0.42,0,0.85,0.08,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0.08,0,0,0.17,0.08,0.08,0.08,0,0,0,0.065,0,0.403,0.117,0.013,7.484,669,1407,1 0.09,0.49,0.59,0,0.29,0.19,0,0,0.09,0.39,0,1.59,0.19,0,0,0,0.09,0,3.67,0.09,1.09,0,0,0.09,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0.09,0,0,0,0.766,0.037,0,5.836,1.31,0,5.792,54,753,1 0,0,1.92,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1.92,1.92,0,1.92,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1.416,6,17,1 0.1,0,0.1,0,0.4,0.1,0.1,0,0.2,0.2,0.4,0.5,0,0.6,0,0.91,0.2,0,1.72,4.26,1.72,0,0.4,0.2,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0.096,0,0.352,0.16,0,6.918,494,1439,1 0,0,0,0,1.26,0,0,1.26,0,0,0,0,0,0,0,1.26,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0.411,0,0.926,0,0,3.558,25,121,1 0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1.61,0,0,0,0,0,1.61,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0.714,0,0,0.238,0,0,4.333,11,104,1 0,0.08,0.25,0,0.84,0.25,0.08,0.33,0,0.16,0.08,0.76,0,0.08,0,1.6,0.76,0.33,1.6,0.33,0.5,0.84,0.42,0.08,0,0,0,0,0,0,0,0,0,0,0,0.25,0.08,0,0,0.08,0,0,0,0,0,0,0,0,0,0.047,0.015,0.502,0.157,0.329,7.24,292,2049,1 0,0.08,0.25,0,0.84,0.25,0.08,0.33,0,0.16,0.08,0.76,0,0.08,0,1.61,0.76,0.33,1.52,0.33,0.5,0.84,0.42,0.08,0,0,0,0,0,0,0,0,0,0,0,0.25,0.08,0,0,0.08,0,0,0,0,0,0,0,0,0,0.047,0.015,0.518,0.157,0.33,7.277,292,2045,1 0,0,0,0,1.05,2.1,1.05,0,0,0,0,0,0,0,0,0,0,0,3.15,0,1.05,0,2.1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0.176,0.176,0,2.05,6,41,1 0,0,0,0,1.25,0,0,1.25,0,0,0,0,0,0,0,1.25,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0.409,0,1.023,1.023,0,3.485,25,122,1 0.09,0,0.09,0,0.39,0.09,0.09,0,0.19,0.29,0.39,0.48,0,0.58,0,0.87,0.19,0,1.66,4.1,1.66,0,0.39,0.19,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0.139,0,0.31,0.155,0,6.813,494,1458,1 0,0,0,0,0,0,0,1.11,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1.11,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1.11,0,0,0,0,0.208,0,0.208,0.416,0,3.95,23,79,1 0,0.55,1.11,0,0.55,0.55,0,0,0,0,0.55,0,0,0,0.55,1.11,0,0,1.67,0,1.67,0.55,0.55,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0.086,0.086,0.517,4.166,18,125,1 0,0,0.29,0,0.59,0.29,0.29,0,0.29,1.78,0,0.89,0,0,0,0,0.59,0.29,4.16,0,0.89,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0.137,0,0.045,0.045,0,12.2,163,488,1 0.65,0.49,0.32,0,0.32,0.16,0,0.49,0.65,0.49,0.16,1.3,0,0,0.16,1.14,1.3,0.16,3.6,0.49,1.8,0,0,0.49,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0.16,0,0,0,0.231,0,0.925,0.231,2.29,5.833,47,595,1 0,0.64,0.64,0,1.29,0.64,0,0.64,0,0.64,0,1.94,0,0.64,0,3.89,0,0.64,3.24,0,3.89,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0.728,0.08,0.08,6.612,129,205,1 0,0,0.96,0,0,0,0,0,0,0,0,0.48,0,0,0,0.96,0,0.48,5.79,0,1.93,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0.48,0,0,0,0,0.086,0,0.26,0.086,0,1.117,4,38,1 0,0,3.7,0,0,0,0,0,0,0,0,0,0,0,0,1.85,0,0,1.85,0,0,0,1.85,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0.291,0,3.79,0,0,4.833,29,87,1 0,0,0.38,0,0.38,0.38,0.38,0,0.38,1.94,0,1.16,0,0,0,0.38,0.77,0.77,2.72,0,1.16,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0.38,0,0,0,0,0,0,0,0,0,0,0,0.057,0.057,0,7.121,70,235,1 0,0.85,0.42,0,0.42,0,0.42,0,1.27,0.85,0,0.42,0.42,0,0,0,0,0,2.55,0,2.12,0,0,0.42,0,0,0,0,0,0,0,0,0,0,0,0,0,0.42,0,0,0,0,0,0,0,0,0,0,0,0.221,0,0.177,0.221,0.177,8.777,54,553,1 0,0.6,0,0,0,0.6,0,0,0,0.3,0,1.21,0,0,0,0,0.3,0,0.3,0,0.3,0,0.6,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0.146,0,0,0.097,0,3.23,77,210,1 0,0,0.18,0,1.68,0.18,0.37,0.56,0,0,0.37,1.5,0.18,0,0,1.12,0,0.18,3.18,0,0.93,0,0,0,0,0,0,0,0,0,0,0,0,0,0.18,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0.066,0,0.563,0.165,0.033,3.106,34,292,1 0,0,0,0,0.91,0,0,0,0,0.45,0,0.45,0,0,0,0,0,0,3.21,0.45,0.91,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1.37,0,0,0,0,0,0,0.164,0,0,1.076,4,42,1 0,0,0,0,1.82,0.36,0.36,0.72,0.36,0.36,0,0,0,0,0,0,0,0.36,2.91,0,2.18,0,0.72,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0.36,0.36,0,0,0,0,0,0.297,0.059,0.178,0,0,2.446,11,115,1 0,0,0,0,0,0,0,0,0.93,0,0,0,0,0,0,0,0,0,0.93,0,3.73,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0.14,0,0.561,0,0,2.166,23,65,1 0.42,0.39,0.36,0,0.13,0.09,0.09,0.06,0.49,0.91,0.26,0.55,0.42,1.08,0.03,0.26,0.42,0.03,2.75,0,1.27,0,0.32,0.52,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0.09,0,0,0,0.032,0.104,0.016,0.345,0.515,0.109,5.632,134,2501,1 0,0.33,1.34,0,0,0,1.34,0.33,0,0.33,0.33,0.33,0,0,0,0.67,0.67,0.33,0.67,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0.33,0,0,0,0,0,0,0,0,0,0.161,0,0.053,0,0.053,2.036,12,167,1 0,0,0,0,0.13,0,0,0,0,0.13,0,0.06,0,0,0,0,0,0,0.2,0,0.06,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0.01,1.03,0,0,1.611,0.01,7.549,278,3752,1 0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,3.38,0,0,3.38,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0.872,0,0,2.2,5,11,1 0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,4.34,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,7.333,0,0,1.666,5,15,1 0.29,0,0.29,0,0,0,0,0,0.44,0.29,0,0.44,0,0,0,0.14,0,0,3.14,0,1.64,0,0,0.14,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0.05,0.066,0,0.083,0.05,0,3.075,60,326,1 0.6,0,0.36,0,1.44,0,0,0,0.24,1.32,0.72,2.53,0.6,0,0,0.6,0.24,0,4.45,0,1.8,0,0.72,0.96,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0.12,0,0,0,0,0.04,0,0.102,0.224,0,3.656,54,479,1 0.43,0.43,0.43,0,0.43,0,0,0,0,1.31,0,0.87,0.43,0,0,2.63,0,0,1.75,0,2.19,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0.201,0,0.941,0.067,0,2.329,28,226,1 0,0.45,0,0,0.45,0.45,0.45,0.45,0,1.8,0,0.45,0,0,0,0,0,0,1.8,0,0.45,0,0,0,0,0,0,0,0,0,0,0,0.45,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0.281,0,0.21,0,0,2.368,14,135,1 0.29,0.29,0,0,0.29,0,0,1.46,0,0,0,0.29,0,0,0,0.58,2.04,0.29,2.04,1.16,1.46,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0.42,0.046,0.046,2.228,34,234,1 0.12,0.12,0.24,0,1.34,0.12,0,0.12,0,0,0.36,0.85,0,0,0,0.24,0.24,0,2.33,0,0.73,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0.98,0,0,0,0.12,0,0,0,0,0.12,0,0,0,0.063,0.021,0,0.042,0.042,0,2.351,69,254,1 0,0.33,0.33,0,0.66,0,0,0.33,0,0.33,0,0.33,0,0,0,0.66,1,0,1,0,0.66,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0.33,0,0,0,0,0,0,0,0,0,0,0,0.109,0,0.054,2.825,34,113,1 0.62,0.62,0,0,0,1.86,0,0,0,0,0,0.62,0.62,0,0,0,0,0.62,2.48,0,1.86,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0.327,0,2.295,0.218,0,5.166,28,155,1 0,0,0.78,0,0.78,0,0.52,0.52,0,1.04,0,0.26,1.56,0,0.78,0,0,1.56,2.08,0,1.56,0,0.52,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0.52,0,0,0,0,0,0,0,0,0,0.08,0,0.443,0.402,0,2.41,19,241,1 0,0.72,0,0,2.89,0,0,0,0,0,0.72,0.72,0,0,0,0,0,0,2.17,0,1.44,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1.379,7,40,1 0,0,1.63,0,0,0,0,0,0,0,0,0,0,0,0,4.91,0,0,3.27,0,1.63,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,2.695,0,0,2.315,12,44,1 0,0,0,0,0.26,0,0.26,0,0,0,0,0,0,0,0,0.26,0,0,0,0,0.52,17.1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0.26,0,0,0,0,0.462,0.084,0.084,0.378,0,1.051,13.82,104,1078,1 0,0,0,0,0,0,0,0,0,0,0,0,5.55,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,3.26,0,2.444,10,44,1 0.25,0,0.25,0,0.5,0,0.25,0,0,0,0.5,0.76,0,0,0,0.5,0,0,1.52,0,1.01,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0.25,0,0,0,0,0.25,0,0,0,0,0,0,0,0.041,0,0.082,0.041,0.041,1.89,18,225,1 0.25,0.5,0.5,0,0,0,0,0,0,0.25,0.25,1,0.25,0,0,0,0,0.5,3,0,2.75,0,1.25,0.25,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0.181,0,0.407,0.997,0,3.417,49,270,1 0,0,0.35,0,0,0.7,0.35,0.35,0,0,0.35,1.06,0,0,0,0.7,0,1.41,2.12,2.82,2.47,0,0,0.7,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0.061,0,0.061,0,0.122,2.302,21,99,1 0,0,0,0,2.48,0,0,0.62,0,0,0,1.24,0,0,0,0,0,0,2.48,0,3.72,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0.179,0,0.089,3.702,53,174,1 0,0,0.77,0,0.77,0,0.51,0.51,0,1.03,0,0.25,1.54,0,0.77,0,0,1.54,1.8,0,1.54,0,0.77,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0.51,0,0,0,0,0,0,0,0,0,0.079,0,0.514,0.434,0,2.441,19,249,1 0,0,0.74,0,0.74,0,0,0.74,1.49,0,0,0,0,0,0,0,0,0,6.71,0,2.98,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0.99,0,0,1.666,12,60,1 0,0,0,0,0,0,0,2.5,0,0,0,0,0,0,0,0,1.25,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1.25,0,0,0,0,0.188,0,0,0.188,0,3.545,21,78,1 0.49,0.28,0.4,0,0.09,0.11,0.02,0.21,0.42,0.75,0.23,0.89,0.54,1.06,0,0.16,0.33,0.02,3.23,0,1.46,0,1.03,0.51,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0.02,0,0,0,0,0.059,0,0.391,0.868,0.144,5.783,193,3210,1 0,0,1.56,0,0,0,1.56,0,0,0,0,0,0,0,0,1.56,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1.56,0,0,0,0,0.256,0,0.769,0,0,2.125,12,34,1 0,0,1.4,0,0,0,0,0,0,0,0,0,0,0,0,1.4,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1.647,0,0,1,1,13,1 0,0,0,0,0,0,0,0,0,0,0,0,0,2.06,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1.03,0,0,0,0,0,0,0,0,1.03,0,0,0,0,0.171,0,0.171,0.342,0,3.809,24,80,1 0,0.19,0.39,0,0,0,0.19,0,0,0,0,0,0,0,0,0,0,0.19,2.36,0,1.18,0,0,0.19,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0.03,0,0.152,0,0,1.357,19,148,1 0,0.57,0.57,0,0.14,0.14,0,0,0.14,0,0,0.43,0.14,0,0,0,0.14,0,3.31,0,1.44,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0.57,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0.156,0,0,1.394,6,159,1 0,0.17,0,0,0,0,0.17,0.17,0,0.17,0,0,0,0.35,0,0,0,0,0,0,0.17,0,0.17,0,3.37,1.77,0,0,0,0.17,0,0,0,0,0,0,0,0,0.17,0,0,0,0,0,0.35,0,0,0,0.108,0.216,0.061,0.046,0.03,0,4.259,85,3318,1 0.1,0.2,1.01,0,0.8,0.8,0.5,0,0.8,0.1,0.3,0.7,0.3,0,1.61,0.1,0,1.11,1.31,0.2,0.7,0,0.6,0.1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0.2,0,0.1,0.1,0,0,0,0.11,0,0.488,0.157,0.015,8.55,669,1351,1 0,0,0.63,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0.63,0,0,0,0,0,0,0,0,0,0,0,0,0,1.91,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0.265,0,0.797,0.885,0,9.29,75,288,1 0,0,0,1.29,1.29,0,0,0,0,0,0,0,0,0,0,1.29,0,0,2.59,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0.187,0,0,0.936,0,0,4.586,24,133,1 0.84,0,0,0,0,2.54,0,0,0,0,0,0.84,0.84,0,0,0,0,0,2.54,0,1.69,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0.452,0,2.865,0.301,0,5.037,23,136,1 0,0,0.76,0,0.76,0,0.76,0.51,0,1.02,0,0.25,1.53,0,1.02,0,0.25,1.79,1.53,0,1.79,0,0.76,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0.51,0,0,0,0,0,0,0,0,0,0.083,0,0.458,0.499,0,2.455,19,248,1 0,0,1.06,0,0,0,0,0,2.12,0,0,0,0,0,0,0,0,0,3.19,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1.06,0,0,0,0,0,0,0,0.353,0,3.904,12,82,1 0.08,0.08,0.76,0,0.85,1.02,0.25,0.17,0.59,0.08,0.17,0.59,0.17,0,2.21,0.25,0.08,0.93,1.61,0.17,0.42,0,0.85,0.08,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0.08,0,0,0.17,0.08,0.08,0.08,0,0,0,0.065,0,0.403,0.117,0.013,7.484,669,1407,1 0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,3.07,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0.273,0,0,5.75,25,69,1 0,0,1.16,0,3.48,0,0,0.58,0.58,0,0,0.58,0,0,0,1.74,0,0,1.16,0,3.48,0,0,0.58,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0.085,0,0.171,0.085,0,2.17,12,102,1 0.74,0.28,0.31,0,0.07,0.21,0,0.14,0.49,0.35,0.17,0.74,0.56,1.48,0,0.17,0.49,0.03,3.24,0,1.23,0,0.56,0.77,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0.03,0.07,0,0.03,0,0.006,0.054,0,0.678,1.05,0.162,5.648,154,3084,1 0.32,0,0.64,0,0.32,0.32,0,1.6,0.32,0.64,0.32,0.64,0,0,0,0,1.6,0,1.28,2.57,3.53,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0.32,0,0,0,0,0,0,0,0,0,0.213,0,1.174,0.106,0,3.584,63,319,1 0.09,0.49,0.59,0,0.29,0.19,0,0,0.09,0.39,0,1.59,0.19,0,0,0,0.09,0,3.67,0.09,1.09,0,0,0.09,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0.09,0,0,0,0.766,0.037,0,5.836,1.31,0,5.792,54,753,1 0,0,0,0,1.56,0,0,0,0,0.31,0,0.31,0,0,0,0.31,0.62,0,2.82,0,0.62,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0.94,0,0,0,0,0.05,0,0,0,0,2.132,22,113,1 0,0,0,0,0.96,0,0.96,0,0,0,0,0,0,0,0,0.96,0,0,0,0,1.92,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0.96,0,0,0,0,0,0,0,0.824,0,0,3.025,67,118,1 0,0,0.93,0,0,0,0,0,0,2.8,0.93,0,0,0,0,0,2.8,0,4.67,0.93,0.93,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0.93,0,0,0,0,0,0,0.464,0.154,0,1.612,10,50,1 0,1.14,1.14,0,0,0,0,0,1.14,0,0,1.14,0,0,0,0,0,0,0,0,3.44,0,0,1.14,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0.197,0,3.681,35,81,1 0,0,0,0,0,0,0,0,0,0,0,0,0,2.06,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1.03,0,0,0,0,0,0,0,0,1.03,0,0,0,0,0.17,0,0.51,0.34,0,3.761,23,79,1 0,0.81,0,0,2.03,0,0,0.4,0,1.21,0,0.81,0,0,0,0.4,0,0,3.65,0,1.62,0,1.62,0.4,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0.4,0,0,0,0,0,0,0,0.272,0,3.192,34,166,1 0.6,0,0,0,1.21,0,0.6,0,0,0,0,0.6,0,0,0,0,0,0.6,3.65,0,1.21,0,0,0.6,0,0,0,0,0,0,0,0,0,0,0,0,1.21,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0.105,0.315,0,3.217,30,74,1 0.25,0,0.25,0,0,0,0.25,0,0.77,1.55,0,0.51,0,0,0,0.25,0,0,1.55,0,0.51,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1.29,0,0,0,0,0,0,0,0,0,0,0,0,0.404,0,0.161,0.161,0.04,9.633,110,578,1 0.76,0.19,0.38,0,0.19,0.12,0,0.25,0.76,0.31,0.25,1.52,0.31,0.38,0,0.38,0.44,0.06,2.98,0.69,1.26,0,0.44,0.76,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0.12,0,0,0.06,0,0,0,0,0,0,0.087,0.054,0.439,0.241,0.065,3.702,45,1070,1 0,0,0.47,0,0.47,0.47,0.47,0,0,2.38,0,0.95,0.47,0,0,0,0.47,0,1.9,0,0,0,4.76,0,0,0,0,0,0,0,0,0,0,0,0,0,0.47,0,0,0,0,0,0,0,0,0,0,0,0,0.266,0,0.621,0.799,0.088,36.642,148,513,1 0,0,0,0,0,0,0,0.42,0,0.42,0.42,0,0,0,0,0,0,0,2.52,0,2.94,0,0,0.42,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0.84,0,0,0,0,0.129,0,0.129,0.194,0,1.859,20,119,1 0.62,0,0,0,1.24,0,0.62,0,0,0,0,0.62,0,0,0,0,0,0.62,3.72,0,1.24,0,0,0.62,0,0,0,0,0,0,0,0,0,0,0,0,1.24,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0.107,0.322,0,3.318,30,73,1 0.33,1.01,0,0,1.35,0,0.33,0,0,0,0.67,0.67,0.33,0,0,1.01,0,1.68,2.36,0,3.71,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0.12,0,0.06,0.06,0,193.5,1013,1161,1 0,0,0,0,0.97,0,0.97,0,0,0,0,0,0,0,0,0.97,0,0,0,0,1.94,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0.97,0,0,0,0,0,0,0,0.834,0,0,3.052,68,116,1 0.14,0,0.21,0,1.72,0.43,0,0,0.07,0.14,0.07,0.57,0.35,0.07,0,0,0.28,0,4.31,0.28,0.64,0,1,0.07,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0.07,0,0,0,0,0,0.012,0.064,0,0,0.206,0,1.711,10,380,1 0.6,0,0.36,0,1.44,0,0,0,0.24,1.32,0.72,2.52,0.6,0,0,0.6,0.24,0,4.44,0,1.8,0,0.72,0.96,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0.12,0,0,0,0,0.041,0,0.102,0.205,0,3.548,54,479,1 0.2,0.1,0.7,0,1.1,0.2,0,0.3,0,1.2,0.3,1.1,0.1,0,0.1,0.4,0.2,0.1,2.61,0,2.51,0,0,0,0,0,0,0.1,0,0,0,0,0,0,0,0,0,0,0,0.1,0,0,0,0,0,0,0,0,0.017,0.159,0,0.53,0.406,0.123,9.781,84,851,1 0,0,0,0,0,0,0,0,0,0,0,5.26,0,0,0,0,0,0,5.26,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1.048,0,0.349,3.333,10,30,1 0.35,0.46,0.31,0,0.15,0.03,0,0.35,0.58,0.66,0.31,0.7,0.62,1.28,0.03,0.23,0.42,0,3.12,0,1.36,0,0.46,0.46,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0.03,0,0,0,0.006,0.09,0,0.324,0.486,0.126,6.11,116,2218,1 0.3,0.2,0.3,0,0.2,0.4,0.2,0.3,0.4,1.71,0.1,1.91,0.2,0,0.5,0.6,0,0.8,3.43,0,1.51,0,0.9,0.3,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0.1,0,0,0,0.2,0,0,0,0,0.017,0,0.275,0.206,0.017,4.923,103,1029,1 0,0,1.19,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0.59,0,2.99,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0.093,0.186,0.559,0.279,0,2.297,12,108,1 0.19,0.19,0.29,0,1.07,0.19,0.19,0.97,0.87,0.58,0.09,1.07,0.19,0.87,0.09,0,0,1.17,3.81,0.68,1.75,0,0.09,0.29,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0.09,0.09,0,0,0,0,0,0,0,0,0,0,0.201,0.402,0.232,0.03,4.295,49,872,1 0,0,0,0,0,0,0,0,0,0,0,1.42,0,0,0,1.42,0,0,2.14,0,0.71,0,0,0.71,0,0,0,0,0,0,0,0,0,0,0,0.71,0,0,0,0,0,0,0,0,0,0,0,0,0,0.099,0,0.899,0,0,3.066,36,138,1 0.15,0.3,0.45,0,0.76,0.3,0,0,1.52,1.52,0.15,1.98,0.3,0,0.61,0.3,0,1.52,2.14,0.15,2.44,0,0.76,0.3,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0.025,0,1.051,0.225,0.05,6.686,217,896,1 0,0,0.28,0,0.84,0.84,0.28,0,0.28,0.28,0,0.28,0,0,0,0.56,0,0.56,2.52,0,0.28,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0.28,0,0,0,0,0.28,0,0,0,0,0.05,0,0.05,0,0,2.083,34,150,1 0.09,0.09,1.14,0,0.38,0,0,0.09,0,0.19,0.38,0.19,0,0,0,0.66,0,0,1.52,0,1.42,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0.38,0,0,0,0,0,0.044,0.059,0,0.591,0,0,3.28,31,771,1 0,0,0,0,0,0,1.11,0,0,1.11,0,0,0,0,0,0,0,0,2.22,0,1.11,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0.202,0,0.202,0,0,4,16,40,1 0,0.51,0,0,0,0,0,0,0,0.51,1.02,0.51,0,0,0,0.25,0.76,1.27,2.04,0,0.76,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0.25,0,0,0,0,0,0,0,0,0,0.457,0,0.29,0,0.124,2.614,66,149,1 0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,7.69,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1.169,0,0,3,12,36,1 0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1.66,0,0,3.33,0,1.66,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0.653,0,0,8,38,80,1 0.7,0,1.05,0,0,0,0,1.4,0.35,0.35,0,0.35,0,0,0,2.1,0.7,0.35,2.1,3.15,2.1,0,0.35,1.4,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0.116,0,0.348,0,0,1.166,13,189,1 0,0,0,0,0,0,0,1.2,0,0,1.2,0,0,0,0,6.02,0,0,1.2,0,1.2,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1.443,0,0,3.782,32,87,1 0,0,0.53,0,0.53,0,0.53,0,0,0.53,0,0,0,0,0,0,0.53,0,5.85,0,3.19,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0.09,0,0.361,0,0,2.437,19,78,1 0,1.26,0,0,0,0,0,0,0,0,0,0,0,0,0,1.26,0,0,1.26,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0.416,0,0,9.785,42,137,1 0,0,1,0,1,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,2,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,1,0,0,0,0,0.609,0,1.524,0,0.304,1,1,36,1 0.32,0.16,0.56,0,0.32,0.23,0.04,1.24,0.4,0.4,0.11,0.68,0.52,0.36,0.28,0.72,0.4,0.4,3.08,0.16,1.32,0,0.44,0.6,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0.04,0,0,0,0,0.11,0,0,0,0.019,0.052,0.065,0.413,0.164,0,3.533,181,1643,1 0,0,0,0,0,0,0,1.21,0,0,1.21,0,0,0,0,6.09,0,0,1.21,0,1.21,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0.407,0,0,3.454,32,76,1 0.28,0,0.28,0,0,0.28,0.28,0.28,0.28,1.15,0,0.86,0.86,0,0,0,0,0,2.89,0,1.44,0.86,0,0.28,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0.28,0,0,0,0,0,0,0,0.554,0.221,0.166,5.328,140,341,1 0.09,0,0.67,0,0.29,0,0,0,0.19,0.38,0.09,1.35,1.06,0,0,0.29,0.19,0,2.51,0,1.35,0,0,0.38,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0.58,0,0,0,0,0.29,0,0,0.19,0,0.149,0,0.374,0.059,0,9.039,148,1148,1 0,0,0.4,0,0.4,0.2,0,0,0,1.01,0.2,0.4,0,0,0,0.2,0.4,0.2,0.8,0,0.4,0,0.2,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0.2,0,0,0,0,0,0,0,0,0,0.03,0,0,0.302,0,1.727,11,190,1 0,3.05,0.38,0,1.14,0.19,0,0,0,1.52,0.19,0.76,0.19,0,0,0,1.72,0.38,3.05,0.38,2.67,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0.19,0,0,0,0,0,0,0.171,0,0.294,0.147,0.024,17.074,430,1144,1 0,0,1.55,0,0,0.77,0,0.38,0,0,0.38,1.16,0,0,0,0.38,0,1.16,1.93,0,0.38,0,1.16,0.38,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0.06,0,0.609,0.121,0,2.666,22,160,1 0,0.82,0.32,0,1.14,0.32,0,0.16,0,0.65,0,2.13,0,0,0,0.16,0,0,1.47,0,1.47,0,0.98,0.32,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0.16,0,0,0,0,0,0,0,0,0.29,0.029,2.257,13,158,1 0,0,0,0,0,0,0,0,0,0,0,0,2.63,0,0,0,0,0,2.63,0,1.75,0,0.87,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0.144,0,0,3.907,0,0,13.928,70,195,1 0.1,0,0.7,0,0.2,0,0,0,0.2,0.3,0.1,1.3,1.1,0,0,0.3,0.2,0,2.61,0,1.2,0,0,0.4,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0.5,0,0,0,0,0.3,0,0,0.2,0,0.141,0,0.352,0.056,0,9.601,148,1133,1 0.35,0.1,0.55,0,2.15,0.15,0,0,0.1,0.75,0.35,0.85,0.25,0,0,0.15,0.3,0,5,0,1.75,0,0.05,0.8,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0.2,0,0,0,0.008,0.035,0,0.149,0.131,0.008,3.629,127,617,1 0,0.19,1.08,0,0.79,0.79,0.49,0,0.89,0.29,0.29,0.69,0.29,0,1.58,0.09,0,1.08,1.38,0.19,0.69,0,0.59,0.19,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0.19,0,0.09,0.09,0,0,0,0.092,0,0.417,0.154,0.015,8.323,669,1365,1 0.61,0,0,0,1.22,0.61,0.61,0,0.61,0,0,1.22,0,0,0,1.22,0,0,5.52,0,0.61,0,0.61,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0.61,0,0,0,0,0,0,0,0,0,0.184,0,0.829,0,0,4.45,34,89,1 0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,2.22,0,0,2.22,0,2.22,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0.145,0.145,0.291,0,2.95,11,59,1 0,0,0.7,0,0,0,0,0,0,0,0,0,0,0,0,0.7,0,0,0,0,0,0,0,0,0.7,0.7,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0.328,0,0,1.333,4,16,1 0,0.26,0.78,0,0.26,0.26,0.08,1.04,0.52,1.56,0.26,0.69,0.17,0.08,0.69,0.86,0.34,0,1.82,0.17,1.3,0,0.08,0.34,0,0,0,0,0,0,0,0,0.08,0,0,0.08,0,0,0,0,0,0,0,0,0.08,0.08,0,0,0.096,0.234,0,0.358,0.261,0.11,3.554,54,981,1 0.17,0.17,0.25,0,0.43,0.08,0.08,0.08,0.69,2.41,0,0.34,0.17,0,1.46,0.34,0.08,0,2.76,0.43,1.55,0,0.17,0.17,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0.43,0,0,0,0,0.34,0.08,0,0,0,0.107,0,0.308,0.067,0.026,4.215,82,1214,1 0.71,0,0.35,0,0.17,0.17,0.35,0,0,0.35,0.17,0.53,0,0,0,0.35,0.71,0.35,3.76,0,1.97,0,0,0.53,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0.029,0,0.234,0.029,0,3.519,97,359,1 0,0,0.71,0,0.23,0,0,0,0.23,0.23,0.23,1.9,0,0,0,0.23,0,0,3.81,0.23,1.19,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0.111,0,1.045,0.037,0,4.022,97,543,1 0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,4.16,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1.094,0,0,1.428,5,40,1 0,0.26,0,0,0.26,0,0,0,0,1.88,0,0,0,0,0,0,0,0,0.26,0,0.26,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0.407,0.067,0,0.033,0,0,5.009,55,506,1 0.27,0.27,0.27,0,0,0,0,0.54,0,0.27,0,0.27,0,0,0,1.08,0,0.27,1.08,0,0.27,0,0.27,0.54,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0.225,0,0.451,0.496,0,2.934,64,578,1 0.16,0,0.24,0,1.63,0.49,0,0,0,0.16,0.08,0.65,0.4,0.08,0,0,0.32,0,3.68,0.32,0.65,0,1.14,0.08,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0.08,0,0.08,0,0,0,0.014,0.058,0,0,0.232,0,1.725,10,333,1 0,0,1.29,0,0,0,0,0,0,0,0,1.29,0,0,0,0,0,0,1.29,0,5.19,0,0,1.29,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0.208,0,4.23,25,55,1 0.19,0,0.38,0,0,0.19,0,0,0,0,0.19,0.19,0,0,0,0.38,0,0.19,1.14,0,0.38,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0.01,0.01,0,0,0,0.003,2.383,21,15841,1 0.19,0,0.19,0,0.87,0.48,0.09,0,0.09,0.39,0.48,0.68,0.19,0,0.09,0.29,1.07,0.39,3.51,0.78,1.56,0,0.09,1.36,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0.09,0,0,0,0.015,0.18,0,0.045,0.015,0,2.133,40,303,1 0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,3.84,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1.219,0,3.875,11,31,1 0,0,0,0,0,0,0,1.25,0,0.41,0,0,0,0,0,0.41,0,1.67,0.41,0,0.41,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0.41,0,0,0,0,0,0,0,0,0,0,0,0,0,0.125,0,0.312,0.062,0,1.477,8,65,1 0.86,0,0.86,0,0,0,0,0,0,0,0,0.43,0,0,0,0.86,0.86,0,3.47,0,1.73,0,0,0,0,0,0,0,0,0,0,0,0,0.43,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0.24,0,1.765,0.481,0.08,7.059,159,473,1 0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1.05,1.05,0,3.15,0,2.1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1.05,0,0,0,0,0.365,0,0.365,0.182,0,3.343,28,107,1 0.76,0.38,0,0,0.38,0.38,0,0,0,0.38,0,1.53,0,0,0,0,0,0,1.92,0,3.07,0.38,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0.124,0,0.124,0,0.062,89.9,735,899,1 0,0,0.94,0,0.31,0,0,0,0.31,0,0,0.62,0,0,0,1.25,0.62,0,3.14,0,1.25,0,0.94,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0.31,0,0,0,0,0.145,0.048,0.485,0.388,0.097,3.322,61,319,1 0,0,0,0,1.56,0,1.56,0,0,0,0,0,0,0,0,0,0,0,1.56,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0.767,0.255,0,8.083,81,97,1 0.52,1.31,0.26,0,2.9,0.26,0.79,0.26,0,0.79,1.05,1.58,0.79,0,0,0,0,1.31,3.16,0,0.79,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0.138,0,0.046,0,0,2.934,60,135,1 0.47,0,0.95,0,0.95,0,0.95,0,0,0,0,0.47,0,0,0,0.47,0.47,0,4.28,0,0.95,0,1.42,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0.47,0,0,0,0,0.076,0,1.306,0.23,0,6.027,91,217,1 0,0,0.47,0,1.43,0,0,0,0,0,0,0.95,0,0,0,0.47,0.95,0,3.34,0,1.91,0,0.47,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1.43,0,0,0,0,0.076,0,0.536,0.306,0,4.653,78,242,1 0.49,0,0.99,0,0.99,0,0.99,0,0,0,0,0.49,0,0,0,0.49,0.49,0,4.45,0,0.99,0,1.48,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0.49,0,0,0,0,0,0,1.118,0.239,0,5.228,69,183,1 0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1.19,1.19,0,1.19,0,0,0,1.19,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1.181,0.787,0,3.875,31,93,1 1.63,0,1.63,0,0,0,0,0,1.63,0,0,0,0,0,0,1.63,0,0,3.27,0,3.27,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0.802,0.267,0,2,16,36,1 0.27,0,0.16,0,0.27,0,0,0.05,0,0.21,0.1,0.93,0.1,0,0,0.38,0.1,0,2.85,0,1.2,0,0.21,0.16,0,0,0,0,0,0,0,0,0.05,0,0,0,0.1,0,0,0,0,0,0,0,0,0,0,0,0.068,0.029,0,0.019,0.058,0.009,3.389,56,539,1 0.33,0,0,0,0,0.33,0,0,0,0,0,1.01,0.67,0,0,0,0.67,0,3.05,0,2.03,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1.682,21,69,1 0.23,0.23,0.47,0,0.7,0.23,0.23,1.41,0.23,0.47,0.23,0.47,0,0,0,0,1.41,0.47,0.94,1.89,3.3,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0.47,0,0,0,0,0.23,0,0,0,0,0.075,0,1.289,0.151,0,6.529,276,666,1 0,0,1.21,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1.21,0,0,0,0.212,0.212,0,0,0.212,0,3.272,24,72,1 0,0.17,0,0,0,0,0.17,0.52,0,0.17,0.35,0.52,0,0,0,0,0.17,0.7,0.87,0,0.7,1.92,0.35,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0.029,0.147,0.029,0.117,0.058,0.235,3.521,39,419,1 0,0.74,0,0,0,1.49,0.74,0,0,0,0,0,0,0,0,0,0,2.23,1.49,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0.307,0,0,0,0,3.39,45,139,1 0,0.56,0.56,0,1.12,0.56,2.25,0,0,0.56,0,0.56,0,0,0,0,0,0.56,3.38,0,1.12,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0.56,0,0,0,0,0.083,0,0.502,0,0.083,16.304,148,375,1 0.8,0,0.8,0,1.6,0,0,0,0,0,0,0,0,0,0,0.8,0.8,0,1.6,0,2.4,0,0.8,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1.566,0.361,0,2.638,22,124,1 0,0,0,0,0.87,0,0,0,0,0,0,0,0,0.87,0,0,0,0,0.87,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0.132,0,0,0,0,3.851,51,104,1 0,0,0,0,0,0.8,0,0,0,0,0,0,0,0,0,0,0,0,2.4,0,0,12.8,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0.709,0,1.56,7.82,39,305,1 0,0,0,0,1.52,0,2.29,0,0,0,0,0,0,0,0,0,0.76,0.76,0.76,0,2.29,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,3.85,19,77,1 0,0,0,0,0,1.36,0,0,1.36,0,0,0,0,0,0,1.36,0,0,1.36,0,0,0,0,0,0,0,0,0,0,0,0,0,1.36,0,0,0,1.36,0,0,1.36,0,0,0,0,0,0,0,0,0,0,0,1.777,0.222,0,9.727,63,107,1 0.28,0.28,0.28,0,0.57,0.28,0.28,0,0,0,0,0.86,0.28,0,0,0,0.57,0.28,2.88,0,2.01,0,1.44,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0.131,0,0.218,0.218,0,3.694,40,218,1 0,0.5,0,0,1.25,0,0,0.25,0,0.75,0.25,0.75,0,0,0,0.25,0,0,2.01,0,1.76,0,0,0,0,0,0,0,0,0,0,0,1.25,0,0,0,0,0.25,0,0,0,0,0,0.25,0.25,0,0,0,0,0.222,0.095,0.031,0,0,5.5,114,616,1 0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1.33,0,0,0,0,0,0,0,0,1.33,0,0,0,0,0.213,0,0.426,0.213,0,4.6,23,69,1 0.16,0.16,0.5,0,0.33,0,0,0,0.5,0.84,0,0.84,0,0.33,0,0,0,0.16,2.37,0,0.5,0,0,0.33,0,0,0,0,0,0,0,0,0,0,0,0,0,0.5,0,0,0,0,0.16,0,0,0,0,0,0,0.143,0,0.458,0.143,0.028,6.298,247,781,1 0,0,0,0,0,0.41,0,0,0,0.82,0,0,0,0,0,0.41,0,0,1.23,0,0,0,0.41,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0.199,0.53,0.331,0.199,0,0,5.019,18,261,1 0,0.9,0,0,0,0,0,0,0,0,0,0,0,0,0,0.9,0,1.81,3.63,0,2.72,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0.9,0,0,0,0,0,0,0.17,0.17,0,6.266,41,94,1 0,0,0,0,0,0,0,0,0,0,0,1.14,0,0,0,0,0,0,1.14,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1.545,4,17,1 0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1.36,0,0,0,0,0,0,0,0,1.36,0,0,0,0,0.212,0,0.424,0.212,0,4.125,21,66,1 0.49,0.21,0.56,0,0.28,0.21,0,0.28,0.28,0.98,0.42,0.98,0.14,0,0,1.12,0.7,0.07,2.24,0,0.98,0,0.07,0.7,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0.07,0,0,0,0,0.14,0,0,0,0,0.108,0,0.768,0.312,0,3.401,94,966,1 0,0.9,0,0,0,0,0,0,0,0,0,0,0,0,0,0.9,0,1.81,3.63,0,2.72,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0.9,0,0,0,0,0,0,0.17,0.17,0,6.266,41,94,1 0,0,1.78,0,0,0,0,0,0,0,0,1.78,0,0,0,0,0,0,1.78,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1.351,0,0.27,32,75,160,1 0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,2,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1.413,0,0,4.047,22,85,1 0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,4.76,0,0,1.58,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,2.412,0,0.268,20,137,180,1 0,0.33,0.33,0,1.65,0.33,0.66,0,0,0.16,0.16,0.99,0,0,0,0.82,0.33,0.16,2.81,0,0.99,0,0.49,0.33,0,0,0,0,0,0,0,0,0.16,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0.025,0.075,0.252,0.05,0.05,6.269,350,721,1 0,0.55,0.55,0,1.1,0.55,2.2,0,0,0.55,0,0.55,0,0,0,0,0,0.55,3.31,0,1.1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0.55,0,0,0,0,0.165,0,0.495,0,0.082,16.826,148,387,1 0,0,0,0,0.86,0,0.86,0,0,0,0,0,0,0,0.86,0,0,1.72,0.86,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0.86,0,0,0,0,0,0,0,0,0.86,0,0,0,0,0.272,0,0,0.136,0,4.541,31,109,1 0.63,0.63,0.63,0,0,0,0.63,0.63,0.63,0,0,0.63,0,0,0.63,1.26,0,0.63,1.89,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0.398,0,0,2.625,19,126,1 0,0,0,0,0,1.12,0,0,0,1.12,0,0,0,0,0,0,0,1.12,2.24,0,1.12,0,1.12,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0.375,0,0,6.003,0,3.75,14,45,1 0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1.33,0,0,0,0,0.208,0,0.417,0.208,0,3.812,16,61,1 0.15,0,1.22,0,0.45,0,0.15,0,0.61,0.61,0,0.76,0.3,0,0.3,0.61,0.61,0,1.83,0.45,2.75,0,0,0.3,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0.112,0,0.698,0.067,0,5.101,63,801,1 0,0,0,0,2.17,0,0,0,0,0,0,2.17,0,0,0,2.17,0,2.17,6.52,0,2.17,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1.333,5,16,1 0.16,0,0.32,0,1.3,0.65,0,0.65,0,0,0,0.16,0,0,0.16,0.32,1.63,2.45,1.79,0,1.14,0,0,0.32,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0.49,0,0,0,0,0,0,0,0,0,0.027,0,0.622,0.027,0,1.25,12,165,1 0,0,0,0,2.17,0,0,0,0,0,0,2.17,0,0,0,2.17,0,2.17,6.52,0,2.17,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1.333,5,16,1 0,0,0,0,0,0,1.96,0,0,0,0,0.98,0,0,0,0,0.98,1.96,2.94,0,0.98,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0.163,0.489,0,0.326,0,0,2.3,12,46,1 0.87,0.17,0.52,0,0,0.32,0,0.04,0.29,0.42,0.39,1.37,0.87,1.69,0,0.32,0.54,0.22,3.47,0.29,1.32,0,0.34,0.84,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0.02,0.07,0,0.04,0,0.016,0.058,0,0.639,0.165,0.182,3.697,117,3498,1 0,0,0,0,0,1.88,0,0,0,0,0,0,0,0,0,0,0,0,1.88,0,0,0,0,0,0,0,0,0,0,0,0,0,1.88,0,0,0,1.88,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,3.5,15,49,1 0.56,0,0.56,0,2.25,0,0,0,0,0.56,0,0,0,0,0,0.56,0.56,0,1.69,0,1.69,0,0.56,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0.91,0.273,0,2.283,22,121,1 0.07,0,0.15,0,0.07,0.15,0,0.07,0.07,0,0,0.46,0,0,0,0,0.15,0,0.15,0,0.07,0,0,0.07,0,0,0,0,0,0,0,0,0,0,0,0,0.15,0,0,0.07,0,0,0.07,0,0,0,0,0,0.011,0.047,0,0,0.023,0,1.263,10,264,1 0.54,0,1.08,0,0.54,0,1.08,0,0,0,0,0.54,0,0,0,0.54,0.54,0,4.32,0,1.08,0,1.62,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0.54,0,0,0,0,0,0,1.216,0.26,0,5.454,68,180,1 0,1.65,0,0,0,0,1.65,0,0,1.65,0.82,0,0,0,0,0.82,0,0,3.3,0,0.82,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1.36,0,0,15.5,68,186,1 0.41,0,0.41,0,0,0,0.41,0,0,0,0.41,0,0.41,0,0,0,0,0,2.05,0,1.23,0,0,0.41,0,0,0,0,0,0,0,0,0.41,0,0,0,0.41,0.41,0,0,0,0,0,0,0,0,0,0,0,0.067,0,0.067,0,0,1.863,14,41,1 0.14,0,0.29,0,1.17,0.58,0.14,0.58,0,0.43,0,0.14,0,0,0.14,0.29,1.46,2.05,1.9,0,1.02,0,0,0.29,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0.43,0,0,0,0,0,0,0,0,0,0.097,0,0.558,0.024,0,1.517,12,217,1 0,0.29,0.29,0,0,0.59,0.29,1.04,1.04,2.22,0.14,1.04,0,0,1.04,0.29,0.74,0,1.63,0.44,0.59,0,1.48,0,0,0,0,0,0,0,0,0,0,0,0,0,0.29,0,0,0.29,0,0,0,0,0,0,0,0,0,0.084,0,0.105,0.21,0.021,10.817,887,1244,1 0.17,0,0.08,0,0.42,0.08,0.08,0.42,0.08,0.08,0,0.6,0.17,0.17,0,0,0.17,0.08,1.2,0,3.17,0,0.34,0.08,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0.084,0.028,0.098,0.014,0,4.049,48,575,1 0.22,0,0.78,0,0,0.11,0.11,0,0.22,0.11,0.11,0.22,0.89,0,0,0.44,0.44,0,4.68,0,1.56,0,0.11,1.11,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0.33,0,0,0,0,0,0.44,0,0,0,0,0.142,0,0.775,0.224,0.142,5.782,103,798,1 0.58,0,0.58,0.58,0.58,0,0,0,0,0,0,1.17,0,0,0,0,0,0,4.11,0,0.58,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0.098,0,0.197,0,0,3.807,61,297,1 0.26,0.05,1.45,0,0.37,0.1,0,0,0.1,0.1,0.21,1.07,0,0,0,0,0,0,3.38,0,1.39,0,0,0.32,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0.05,0,0,0,0,0.076,0,0.262,0.186,0.025,11.793,289,2288,1 0.44,0,0,0,0.89,0,0,0,0,0.44,0,1.33,0,0,0,0.44,0,0,4.46,0,1.78,0,0,0.44,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0.44,0,0,0,0,0,0,1.131,0.15,0.075,2.428,28,153,1 0.43,0,0,0,0.87,0.87,0,0,0,0.43,0,2.18,0,0,0,0,1.74,0,0.87,0,0.87,0,0,0.43,0,0,0,0,0,0,0,0,0,0,0,0.43,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0.942,0,0,5.114,107,179,1 0,0,0,0,0,0,0,3.57,0,0,0,0,0,0,0,0,0,0,7.14,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1.554,0,0.518,2.111,15,38,1 0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,10,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1.428,4,10,1 0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1.36,0,0,0,0,0.215,0,0,0.215,0,3.937,18,63,1 0,1.63,0.81,0,0,0,1.63,0,0,1.63,1.63,0,0,0,0,0.81,0,0,4.09,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1.212,0,0,15.916,71,191,1 0.52,0,2.38,0,0.26,0,0.26,0,0.52,0,0.26,0,0,0,0,0.79,0,0,1.32,0,1.05,0,0,0.52,0,0,0,0,0,0,0,0,0.26,0,0,0.26,0.26,0,0.52,0,0,0,0,0,0,0,0,0,0,0.689,0,0.326,0,0,5.549,71,566,1 0.32,0,0.8,0,0.8,0.32,0.16,0,0.64,0,0.32,1.44,0.16,0,0,0,0.32,0,3.37,0,1.28,0,0.16,0,0,0,0,0,0,0,0,0,0,0,0,0,0.32,0,0,0,0,0,0,0,0,0,0,0,0,0.05,0,0.05,0.075,0,1.419,15,159,1 0,0,1.2,0,0,0,0,0,0,0,0,2.4,0,0,0,0,0,0,2.4,0,4.81,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,4,16,72,1 0.58,0,0.19,0,1.75,0.39,0.58,0,0,0.19,0.39,0.78,0.39,0,0,0.58,0.58,0.58,4.29,0,0.39,0,0.78,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0.39,0,0,0,0,0.271,0,0.067,0.135,0,3.015,21,190,1 0,0,0,0,0.73,0,0,0,0,0,0,0,0,0,0,0.73,0,0,2.94,0,2.2,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0.73,0,0,0,0,0.105,0,0.211,0,0,1.333,7,48,1 0,0,0,0,0,0,0,4,0,0,0,0,0,0,0,4,0,0,4,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,7.666,12,23,1 0,0,0,0,0,0,0,0,0,5,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0.317,0,0,0.952,0,0,4.823,13,82,1 0,1.05,0,0,0,0,1.05,0,0,0,0,0,0,0,0,3.15,0,1.05,0,0,1.05,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0.74,0,0,4.947,24,94,1 0,4.76,0,0,0,0,0,0,0,1.19,0,0,0,0,0,0,0,2.38,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,5.225,38,162,1 0,0,3.48,0,0,0,0,1.16,1.16,0,0,0,0,0,0,0,0,0,2.32,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1.405,0,0,9,28,72,1 0.5,0.19,0.57,0,0.25,0.38,0,0,0.5,0.06,0.12,0.63,0.19,0,0,0.69,0.5,0.38,3.49,0.06,1.27,0,0.31,1.08,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0.25,0,0.06,0,0,0.067,0,0.435,0.592,0.022,5.335,73,1590,1 0.09,0.09,1.14,0,0.38,0,0,0.09,0,0.19,0.38,0.19,0,0,0,0.66,0,0,1.52,0,1.42,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0.38,0,0,0,0,0,0.044,0.059,0,0.591,0,0,3.28,31,771,1 0,0,1.07,0,3.22,0,0,0,0,0,0,0,0,1.07,0,1.07,0,0,2.15,0,2.15,0,1.07,1.07,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1.07,0,0,0,0,0,0,0,0,0,0,0,0,2.395,0.598,0.998,82.25,295,329,1 0,0,0,0,0.68,0,0,0,0,1.81,0,0.68,0,0,0,0.22,0,0,3.4,0,1.81,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0.45,0,0,0.22,0,0,0,0.159,0.558,0.159,0.199,0,0,6.091,83,530,1 0,0,0,0,0.47,0,1.43,0,0,0,0.47,0.47,0,0,0,0.47,0,1.91,1.91,0.47,1.43,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0.073,0.295,0,3.361,54,158,1 0,0.2,1.83,0,0.81,0.2,0.61,0.4,0,0,1.22,1.01,0.2,0,0,0.2,0.4,0.2,1.83,0,1.22,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0.2,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1.232,0,0,4.159,142,287,1 0,0,0,0,0.68,0,0,0,0,1.81,0,0.68,0,0,0,0.22,0,0,3.4,0,1.81,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0.45,0,0,0.22,0,0,0,0.159,0.558,0.159,0.199,0,0,6.091,83,530,1 0,0,0,0,0,1.4,0,0,0,0,0,0,0,0,0,2.81,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0.24,0,0.963,0,0,3.8,17,57,1 0.77,0.38,0.77,0,0,0.57,0,0.57,1.15,1.15,0,0.38,0.38,0,1.15,0.19,0.19,2.12,2.12,1.15,1.15,0,1.35,0.77,0,0,0,0,0,0,0,0,0,0,0.19,0,0,0,0,0,0,0,0,0,0,0,0,0,0.027,0.027,0,0.438,0.191,0.054,14.619,525,921,1 0,0,0,0,1.09,0,0,0.54,0,0,0.54,1.63,0,0.27,0,0,0.27,0.54,2.18,0,0.54,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0.27,0,0,0,0,0,0,0,0,0,0,0,0,0,0.208,0,0.166,0.083,0,3.521,114,243,1 0.17,0.26,1.24,0,0.53,0.62,0.44,0.17,0.79,0.79,0.26,1.33,0.17,0,0.62,0.62,0.08,1.33,2.66,0.17,1.15,0,0.79,0.08,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0.08,0,0,0,0,0.08,0,0,0,0,0.07,0,0.225,0.211,0.014,6.725,583,1345,1 0.13,0.13,0.26,0,0.26,0.26,0,0.13,0.39,0.13,0.13,0.39,0,0,0,0.13,0,0,2.35,0,0.13,0,0,0.26,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0.137,0,0,0.068,0,2.736,30,468,1 0,0,0.83,0,1.66,0.41,0,0,0,0,0,0.41,0,0,0,0.41,0,0,2.08,0,4.16,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0.218,0,0,0,0,2.35,12,134,1 0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,3.57,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0.675,0,0,2.23,12,29,1 0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0.62,0.62,0,1.25,3.12,3.12,1.87,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0.075,0,1.285,0.075,0.226,6.722,101,363,1 0.58,0,0.19,0,1.75,0.39,0.58,0,0,0.19,0.39,0.78,0.39,0,0,0.58,0.58,0.58,4.29,0,0.39,0,0.78,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0.39,0,0,0,0,0.271,0,0.067,0.135,0,3.015,21,190,1 0,0,0,0,0,0,0,0,0,0,0,0,0,0.73,0,0,0,0,0,0,0,0,0,0,0,0,0,0.73,0,0,0,0,0,0,0,0.73,0,0,0,0,0,0,0,0,0,0.36,0,0,0.21,0.21,0,0,0.105,0,1.866,22,112,1 0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1.61,0,0,0,0,0,1.61,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0.714,0,0,0.238,0,0,4.333,11,104,1 0,0.38,0.38,0,0,0,0,0.38,0.38,0,0,0,0,0,0,0.38,0,0.38,0.38,2.67,0,0,0.76,0.38,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0.35,0,0,0.35,0,2.162,8,80,1 0.99,0.49,0,0,0,0,0,0,0,0.49,0,0.49,0,0,0,0,0,0,2.48,0,1.99,2.98,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0.356,0,0.446,10.366,64,311,1 0.52,0,1.05,0,0,1.05,0,0,0,0.52,0,0.52,1.05,0,0,1.05,0.52,0,3.15,0,0.52,0,1.05,0.52,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,2.295,0.698,0,2.016,14,125,1 0.08,0,0.32,0,0.24,0.32,0,0.16,0.16,0,0,0.65,0,0,0,0,0,0,4.67,0,0.65,0,0,0.32,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0.08,0,0.32,0,0,0.24,0,0,0,0,0.045,0,0.36,0.03,0,1.42,10,196,1 0,0,0,0,1.9,0,0.95,0,0,0.95,0,0.95,0,0,0,0,0,0,5.71,3.8,2.85,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0.147,0,0,1.4,6,21,1 0.85,0,0,0,0,0,0,0,0,0,0,0.85,0,0,0,4.27,0,0,3.41,0,4.27,0,0,5.98,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0.146,0,0.881,0,0,5,17,150,1 0.77,0.38,0.77,0,0,0.57,0,0.57,1.15,1.34,0,0.38,0.38,0,1.15,0.19,0.19,1.92,2.11,1.15,1.15,0,1.34,0.77,0,0,0,0,0,0,0,0,0,0,0.19,0,0,0,0,0,0,0,0,0,0,0,0,0,0.027,0.027,0,0.438,0.191,0.054,14.619,525,921,1 0,0,3.7,0,0,0,0,0,0,0,0,0,0,0,0,1.85,0,0,1.85,0,0,0,1.85,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0.289,0,3.768,0,0,4.833,29,87,1 0,2.43,0,0,1.21,0,0.6,0,0.6,0,0,0,0,0,0,0,0,2.43,1.82,0,1.21,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,4.031,71,129,1 0.32,0.16,0.56,0,0.32,0.24,0.04,1.16,0.4,0.4,0.12,0.68,0.52,0.4,0.28,0.64,0.36,0.4,3.06,0.16,1.28,0,0.36,0.6,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0.04,0,0,0,0,0.12,0,0,0,0.019,0.052,0.066,0.37,0.152,0,3.225,181,1500,1 0.28,0,0,0,0,0,0,0.28,0,0,0,0.84,0.56,0,0.84,0.84,0.28,4.51,2.54,0,2.54,0,0.28,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0.091,0,1.147,0.045,0,7.178,104,524,1 0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0.6,0,0,0,0,0,0,0,0.6,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0.102,0,0.102,0.716,0,4.512,43,185,1 0.09,0.09,1.14,0,0.38,0,0,0.09,0,0.19,0.38,0.19,0,0,0,0.66,0,0,1.52,0,1.42,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0.38,0,0,0,0,0,0.044,0.059,0,0.591,0,0,3.28,31,771,1 0,0,0.42,0,0.42,0,0.21,0,0,0,0.21,0.21,0,0,0,0,0,0.42,0.42,0,0.64,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0.42,0,0,0,0,0,0,0,0,0,0,0,0,0,0.126,0,0.031,1.269,0.412,13.017,183,1484,1 0.32,0.09,0.6,0,2.04,0.13,0,0,0.09,0.69,0.32,0.79,0.27,0,0,0.13,0.32,0,4.92,0,1.81,0,0.04,0.74,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0.04,0,0,0,0,0.18,0,0.09,0,0.008,0.032,0,0.145,0.121,0.008,3.575,127,640,1 0.14,0.28,0.84,0,0.14,0.14,0,0.84,0.42,0.14,0,0.56,0.28,0.14,0.42,0.14,0.14,0.28,4.34,0.14,2.1,0,0.14,0.28,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0.42,0,0,0,0,0.025,0,0.381,0.05,0,2.322,15,216,1 0.13,0.27,0.83,0,0.13,0.13,0,0.83,0.41,0.13,0,0.55,0.27,0.13,0.41,0.13,0.13,0.27,4.31,0.13,2.08,0,0.13,0.27,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0.41,0,0,0,0,0.025,0,0.379,0.05,0,2.329,15,219,1 0.34,0.17,0.17,0,1.38,0.69,0.17,0.17,0,0.17,0,0.86,0,0,0.34,1.55,0.34,0.17,2.94,0,2.42,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0.115,0,0,0.086,0,4.792,38,508,1 0.77,0.38,0.77,0,0,0.57,0,0.57,1.15,1.15,0,0.38,0.38,0,1.15,0.19,0.19,2.12,2.12,1.15,1.15,0,1.35,0.77,0,0,0,0,0,0,0,0,0,0,0.19,0,0,0,0,0,0,0,0,0,0,0,0,0,0.027,0.027,0,0.438,0.191,0.054,14.619,525,921,1 0.4,0.18,0.32,0,0.25,0.18,0.03,1.01,0.4,0.4,0.1,0.72,0.65,0.36,0.25,0.54,0.36,0.36,3.05,0.14,1.41,0,0.29,0.76,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0.03,0,0,0,0,0.07,0,0,0,0.012,0.042,0.072,0.334,0.139,0,3.305,181,1613,1 0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0.6,0,0,0,0,0,0,0,0.6,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0.102,0,0.102,0.72,0,4.512,43,185,1 0.77,0.38,0.77,0,0,0.57,0,0.57,1.15,1.15,0,0.38,0.38,0,1.15,0.19,0.19,2.11,2.11,1.15,1.15,0,1.34,0.77,0,0,0,0,0,0,0,0,0,0,0.19,0,0,0,0,0,0,0,0,0,0,0,0,0,0.027,0.027,0,0.437,0.191,0.054,14.406,525,922,1 0.32,0,0.64,0,0,0,0,0,0,0,0.64,0.97,0,0,0,2.58,0,0,2.58,0.32,1.94,0,0.64,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0.233,0.058,0,0.116,0.116,0,2.926,20,240,1 0,0.17,1.03,0,0.68,0.17,0.68,0,0,0.17,0,0.17,0.17,0,0.34,1.03,0.34,0.17,3.44,0,1.37,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0.17,0,0,0,0,0,0,0,0,0,0.084,0,0.056,0.196,0,2.26,53,208,1 0,0,0,0,0,1.21,0,0,0,0,0,0,0,0,0,0,0,0,1.21,0,1.21,2.43,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1.21,0,0,0,0,0,0,1.627,0,0.465,2.591,31,127,1 0.77,0.38,0.77,0,0,0.57,0,0.57,1.15,1.15,0,0.38,0.38,0,1.15,0.19,0.19,2.12,2.12,1.15,1.15,0,1.35,0.77,0,0,0,0,0,0,0,0,0,0,0.19,0,0,0,0,0,0,0,0,0,0,0,0,0,0.027,0.027,0,0.438,0.191,0.054,14.619,525,921,1 0.14,0.29,0.44,0,0.88,0.29,0,0,1.47,1.47,0.14,1.91,0.29,0,0.58,0.29,0,1.62,2.35,0.14,2.35,0,0.73,0.29,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0.023,0,1.003,0.215,0.047,6.602,217,898,1 0.14,0.29,0.44,0,0.88,0.29,0,0,1.47,1.47,0.14,1.91,0.29,0,0.58,0.29,0,1.62,2.35,0.14,2.35,0,0.73,0.29,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0.023,0,1.004,0.215,0.047,6.602,217,898,1 0,0.17,0,0,0.34,0.34,0,0,0,0.17,0,0,0.17,0,0,0.17,0.17,0,0.17,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0.34,0,0,0,0,0.054,0,0,0.027,0,2.073,11,170,1 0,0,0.36,0,0.73,0,0,0,0,0.73,0,0.36,0,0,0,0,0,0,0.73,0,0,0,0,0,0,0,0,0.36,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0.36,0,0,0,0,0,0,0,0,2.13,12,228,1 0,0,0.58,0,1.16,0,0,0,0,0.58,0,0,0,0,0,0.58,0,0,0.58,0,1.16,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,2.101,11,145,1 0,0,0,0,0.23,0,0,0,0,0,0,0.93,0,0,0,0.11,0,0.11,0.35,0,0.23,0,0,0,0,0,0,0.35,0.11,0.11,0,0,0,0,0,0.58,0,0.11,0,0,0,0.35,0,0,0,0.46,0.11,0.11,0,0.381,0,0.016,0,0,2.47,41,504,1 0,0,0,0,0,0.59,0,2.95,0,0,0,0.59,0.59,0,0.59,5.91,2.95,0.59,1.77,0,1.18,0,0,0.59,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0.293,0,0,1.69,15,93,1 0.77,0.38,0.77,0,0,0.57,0,0.57,1.15,1.34,0,0.38,0.38,0,1.15,0.19,0.19,1.92,2.11,1.15,1.15,0,1.34,0.77,0,0,0,0,0,0,0,0,0,0,0.19,0,0,0,0,0,0,0,0,0,0,0,0,0,0.027,0.027,0,0.438,0.191,0.054,14.619,525,921,1 0.43,0.26,0.43,0,0.78,0.26,0,0.17,0.34,4.09,0.08,1.22,0.43,0,0.78,1.13,0.26,1.91,2.35,0,2.35,0,0.08,0.43,0,0,0,0,0,0,0,0,0,0,0,0.08,0,0,0,0.08,0,0,0,0,0,0,0,0,0.056,0.241,0.042,0.709,0.056,0,4.319,126,1123,1 0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0.1,0,0,0,0,2.5,33,125,1 0.85,0,0,0,0.85,0,0,0,0,0,0,0.85,0.42,0,0,1.28,0,0,3.86,0,0.85,0,0,0.85,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0.066,0,0.535,0.133,0,11.592,110,313,1 0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0.041,0,0,0,0,1.938,33,95,1 0,0,1.55,0,0,0.77,0,0.38,0,0,0.38,1.16,0,0,0,0.38,0,1.16,1.93,0,0.38,0,1.16,0.38,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0.06,0,0.601,0.12,0,2.666,22,160,1 0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1.66,0,0,3.33,0,1.66,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0.986,0,0,8,38,80,1 0,0.13,0.13,0,0,0.13,0,0,0.13,1.5,0,0.4,0,0,0.27,0.27,0,0.4,1.09,0,2.32,10.38,0.13,0,0,0,0,0,0,0,0,0,0,0,0,0.13,0,0,0,0,0,0,0,0,0,0,0,0,0.021,0.042,0,0.364,0.064,0.686,13.884,107,1444,1 0.87,0.17,0.52,0,0,0.32,0,0.04,0.29,0.42,0.39,1.37,0.87,1.69,0,0.32,0.54,0.22,3.47,0.29,1.32,0,0.34,0.84,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0.02,0.07,0,0.04,0,0.016,0.058,0,0.638,0.165,0.182,3.697,117,3498,1 0,0.27,0.54,0,0.27,1.64,0,0.27,0.54,0.54,0,1.09,0.27,0,0,0,0,0.27,1.37,0,1.09,0,0.27,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0.27,0,0,0,0,0,0,0.472,0.128,0,10.877,93,533,1 0.4,0,0,0,0.8,0,0.4,2.8,0,1.2,1.2,2.8,0,0,0,0.4,0,0,4,0,0.8,0,0,1.2,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0.052,0,0,0.105,0.052,0.052,1.194,5,129,1 4.54,4.54,0,0,0,0,0,0,0,0,0,0,0,0,0,4.54,0,9.09,0,0,4.54,0,0,9.09,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,3.076,0,0,1.428,4,10,1 0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1.28,0,1.28,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0.699,0.932,0,5.083,39,122,1 0,0,0,0,2.63,0,0,0,0,0,0,0,0,0,0,1.31,0,0,1.31,0,2.63,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,4.818,46,106,1 0,1.19,0,0,0,0,0,0,0,0,0,0,0,0,0,1.19,0,0,1.19,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0.403,0,0,9.785,42,137,1 0.4,0.34,0.27,0,0.13,0.4,0.06,0.2,0,1.36,0.27,0.68,0.95,0,0.2,0,0,0,3.68,0,0.81,0,0.13,0.27,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0.013,0.052,0,0.474,0.197,0.065,3.286,53,608,1 0,0,0,0,0.12,0,0,0,0,0,0,0.9,0,0,0,0.12,0,0.12,0.12,0,0.12,0,0,0,0,0,0,0.25,0.12,0.12,0,0,0,0,0,0.64,0,0.12,0,0,0,0.38,0,0,0,0.38,0,0,0,0.391,0,0,0,0,2.417,41,481,1 0,0,0,0,0.12,0,0,0,0,0,0,0.99,0,0,0,0.12,0.12,0.12,0.12,0,0.12,0,0,0,0,0,0,0.24,0.12,0.12,0,0,0,0,0,0.62,0,0.12,0,0,0,0.37,0,0,0.12,0.37,0,0,0,0.365,0,0,0,0,2.376,41,492,1 0,0,0,0,0.12,0,0,0,0,0,0,0.96,0,0,0,0.12,0.12,0.12,0.12,0,0.12,0,0,0,0,0,0,0.24,0.12,0.12,0,0,0,0,0,0.6,0,0.12,0,0,0,0.36,0,0,0.12,0.36,0,0,0,0.352,0,0,0,0,2.337,41,505,1 0.19,0.19,0.19,0,1.08,0.19,0.19,0.98,0.89,0.59,0.09,1.08,0.19,0.89,0.09,0,0,1.18,3.85,0.59,1.78,0,0.09,0.29,0,0,0,0,0,0,0,0,0,0,0.09,0,0,0,0.09,0.09,0,0,0,0,0,0,0,0,0,0,0.19,0.412,0.222,0.015,4.195,49,814,1 0.87,0.17,0.52,0,0,0.32,0,0.04,0.29,0.42,0.39,1.37,0.87,1.69,0,0.32,0.54,0.22,3.47,0.29,1.32,0,0.34,0.84,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0.02,0.07,0,0.04,0,0.016,0.058,0,0.639,0.165,0.182,3.697,117,3498,1 0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0.862,0,8.5,17,34,1 0,0,0,0,0,0,0,0,0,0,0,2.1,0,0,0,0,0,0,2.1,0,1.05,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0.178,0,0,0,0,1.275,7,51,1 0.21,0.21,0.42,0,0.42,0.21,0,0.42,0.42,0.21,0,0.64,0,0,0,0.85,1.07,0,4.07,1.07,1.07,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0.216,0,0.432,0.18,0.072,4.391,36,303,1 0,0.29,0.29,0,0.58,0,0.58,0,0,0.58,0.29,0.29,0,0,0,1.46,0.29,0.87,1.16,0.87,1.16,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0.29,0,0,0,0,0.086,0,0.606,0,0.043,3.591,37,352,1 0.22,0.88,0.44,0,0.22,0,0,0,1.32,1.54,0,0.88,0.66,0,1.1,0.66,0,1.54,2.87,0,1.54,0,0,0.22,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0.44,0,0,0,0,0,0,0,0,0,0.085,0,0.659,0.114,0.028,9.1,65,728,1 0,0,0,0,1.63,0,0,0,0,1.63,0,0.81,0,0,0,0,0,0,3.27,0,0,0,0,0,0,0,0,0.81,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0.81,0,0,0,0,0,0,0,0,1.558,11,53,1 0,0,0,0,0,0,0,0,0,0.76,0,2.29,0,0,0,0,0,0,3.05,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0.76,1.52,0,0,0,0,0,0,0,0,1.216,4,45,1 0.22,0.88,0.44,0,0.22,0,0,0,1.32,1.54,0,0.88,0.66,0,1.1,0.66,0,1.54,2.87,0,1.54,0,0,0.22,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0.44,0,0,0,0,0,0,0,0,0,0.085,0,0.659,0.114,0.028,9.1,65,728,1 0.1,0,0.74,0.21,0.21,0,0.1,0.1,0,0,0.1,0.31,0,0,0,0,0,0.21,0.63,0,0.31,0,0.21,0,0,0,0,0,0,0.1,0,0,0,0,0,0.63,0,0,0,0,0,0,0,0,0,0,0,0,0,0.101,0,0.05,0.609,0.253,7.887,126,1609,1 0,0.32,0,0,0,0,0,0,0.32,0,0,1.29,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0.037,0,0,0,0,2.391,36,110,1 0.43,0,0.43,0,0.43,0.43,0,0,0,0.87,0,0.43,0,0,0,0,3.49,0,1.31,0,1.74,0,1.31,0,0,0,0.43,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0.298,0.149,0.074,2.955,47,133,1 0.43,0.26,0.43,0,0.78,0.26,0,0.17,0.34,4.09,0.08,1.22,0.43,0,0.78,1.13,0.26,1.91,2.35,0,2.35,0,0.08,0.43,0,0,0,0,0,0,0,0,0,0,0,0.08,0,0,0,0.08,0,0,0,0,0,0,0,0,0.056,0.241,0.042,0.709,0.056,0,4.319,126,1123,1 0.7,0,1.06,0,0,0,0,1.41,0.35,0.35,0,0.35,0,0,0,2.12,0.7,0.35,2.12,3.18,2.12,0,0.35,1.41,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0.117,0,0.353,0,0,1.209,13,196,1 0.43,0.4,0.37,0,0.15,0.09,0.06,0.12,0.5,0.97,0.25,0.69,0.4,1.06,0.03,0.15,0.25,0,2.57,0,1.41,1.28,0.31,0.56,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0.06,0,0,0,0.031,0.122,0.01,0.345,0.42,0.266,8.016,178,3303,1 0,0,0.19,0,0,0,0.19,0,0,0,0,0.19,0,0.09,0,0,0,0.09,0.19,0,0.09,0,0,0,0.09,0,0,0,0,0,0,0,0.19,0,0,0,0,0.09,0.19,0,0,0,0,0,0,0,0.09,0,0.015,0.137,0,0.061,0,0,3.626,44,990,1 0,0.24,1.45,0,0.36,0.6,0.6,0,0.6,1.45,0.12,0.85,0.48,0,1.94,0.12,0,0,1.33,0.12,0.6,0,0.48,0.12,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0.24,0,0,0.12,0,0,0,0.117,0,0.234,0.234,0,4.493,39,746,1 0.35,0.1,0.55,0,2.15,0.15,0,0,0.1,0.75,0.35,0.85,0.25,0,0,0.15,0.3,0,5,0,1.75,0,0.05,0.8,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0.2,0,0,0,0.008,0.035,0,0.149,0.131,0.008,3.629,127,617,1 0,0,0,0,0.45,0,0.45,0,0.9,0.45,0.45,0.9,0.45,0,0,1.81,0,0.45,1.36,0,1.36,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0.45,0,0,0,0,0.45,0,0,0,0,0.16,0,0.64,0.16,0,3.607,71,184,1 0,0,0,0,0,0,0,0,0,0,0,0,0,0.83,0,0,0,0,0,0,0,0,0,0,0,0,0,1.66,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,2.5,0,0,0.121,0.605,0,0,0,0,2.222,22,100,1 0,0.45,1.35,0,1.35,0,0.9,0.45,0,1.35,0,0.45,2.71,0,0,0,0,0.9,2.26,0,1.8,0,0.45,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0.82,0.41,0,2.446,12,137,1 0.4,0.4,0,0,0,0,0,0,1.2,4.81,0.4,0,0,0,4.41,0,0,0,1.2,0,1.2,0,4.01,0.4,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0.855,0.794,0,4.152,41,353,1 0.1,0.1,0.03,0,0.07,0.03,0,0.03,0,0.1,0,0.53,0,0,0,0.17,0.03,0,0.81,0.03,1.35,0,0.1,0.17,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0.03,0,0,0,0,0.03,0,0,0.071,0,0.006,0.065,0,2.106,46,3214,1 0.14,0.18,0.79,0,0.04,0.14,0.18,0.28,0.28,0.84,0.18,0.46,0.61,0.09,0.32,0.89,0.37,0.46,3.8,0.04,1.87,0,0.46,0.28,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0.28,0,0,0,0,0.28,0.04,0,0,0,0.101,0,0.522,0.109,0.062,5.759,116,2062,1 0,0,0.21,0,0.21,0,0,0,0,0,0,0.84,0,0,0,0.21,0,0,0,0,0,0,0,0,0,0,0,0.42,0,0,0,0,0,0,0,0.42,0,0,0.21,0,0,0,0,0,0,1.48,0,0,0,0.057,0,0,0,0,2.807,39,379,1 0.33,0.42,0.75,0,0,0.25,0,0.08,0.16,1.09,0.33,1.09,0.16,0,0,0.67,0.67,0.08,2.52,0,0.92,0,0,0.5,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0.08,0,0,0,0,0.08,0,0,0,0.014,0.029,0,0.523,0.378,0,3.631,67,897,1 0,0.82,0.32,0,1.14,0.32,0,0.16,0,0.65,0,2.13,0,0,0,0.16,0,0,1.47,0,1.47,0,0.98,0.32,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0.16,0,0,0,0,0,0,0,0,0.29,0.029,2.257,13,158,1 0,0,0,0,1.21,0,0,0.6,0,0.6,1.21,0,0,0,0,1.82,0,0,4.26,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0.29,0,0.193,0,0,1.861,26,67,1 0.33,0.16,0.16,0,1.35,0.67,0.16,0.33,0,0.16,0,0.84,0,0,0.33,1.52,0.33,0.16,2.88,0,2.37,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0.113,0,0.028,0.084,0,4.971,40,532,1 0,0,0,19.73,0,0,0,0,0,0,0,0.53,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0.53,0,0,0.53,0,0,0,0,0,0,0,0,0,0,0.087,0,0,0,0,4.786,152,292,1 0,1.11,0.55,0,0,0,0,0,0,0,0.55,0,1.11,0,0,3.35,0,0,0.55,0,1.11,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0.55,0,0,0,0,0,0,0,0,0.19,0,0,1.429,0.095,0,2.861,36,186,1 0,0,0.24,0,0.72,0,0,0,1.69,0,0.48,1.21,0,0,0,0.24,0,0,2.91,0,1.21,0,0,0.24,0,0,0,0,0,0,0,0,0,0,0,0,0,0.24,0,0,0,0,0,0,0.24,0,0,0,0,0.036,0,1.021,0.291,0.109,7.092,67,461,1 0,0,0,0,0.67,0,0.67,0,0,0,0,0,0,0,0,0,0,0,0.67,0,0.67,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0.114,0.114,0,0.228,0.228,0,2.847,16,168,1 0.15,0,0.3,0,1.23,0.61,0,0.61,0,0.15,0,0.3,0,0,0.15,0.3,1.54,2.32,1.85,0,1.08,0,0,0.3,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0.46,0,0,0,0,0,0,0,0,0,0.128,0,0.615,0.025,0,1.377,13,186,1 0.13,0.1,0.55,0,0.02,0.13,0.02,1.11,0.23,0.29,0.05,0.34,0.42,0.07,0.55,0.87,0.45,0.66,3.95,0.05,1.59,0,0.39,0.34,0,0,0,0,0,0,0,0,0.02,0,0,0,0,0,0,0.31,0,0,0,0.05,0.23,0.02,0,0,0.03,0.083,0,0.538,0.145,0.07,5.108,116,3525,1 0,0,0,0,0,1.05,0,0,0,0,0,0.52,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0.057,0,0,0,0,2.675,36,99,1 0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1.47,0,0,0,0.364,0,0,0,0,3.23,38,126,1 0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,2.4,0,0,2.4,0,2.4,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0.151,0.302,0,2.611,11,47,1 0,0,0.94,0,0,0,0,0,0,0,0,0,0,0,0,0.47,0,0,0,0,0.47,0,0,0,0,0,0,0.94,0.47,0,0,0,0,0,0,0,0,0,0.47,0,0,0,0,0,0,0.94,0,0,0,0.332,0,0,0,0,1.518,15,161,1 0.98,0.16,0.41,0,0.08,0.24,0,0.08,0,0.49,0.08,0.57,0.9,0,0.16,0,0,0.32,2.46,0,1.14,0,0.49,1.14,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0.095,0,0.751,0.255,0.095,4.163,84,712,1 0,0.22,0.22,0,0,0,0,0,0.22,2.75,0,0.68,0,0,0.68,0.45,0,1.37,2.06,0,4.12,0,0.45,0.22,0,0,0,0,0,0,0,0,0,0,0,0.22,0,0,0,0,0,0,0,0,0,0,0,0,0.028,0.114,0,0.919,0.229,0.028,4.444,138,400,1 0,0,0.68,0,0,0,0,0,0,0,0,0,0,0,0,0.68,0,0,0,0,0,0,0,0,0.68,1.36,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0.309,0,0,1.6,4,32,1 0.26,0.46,0.99,0,0.53,0,0,0.53,0.19,1.12,0.26,0.73,0.66,0,0.06,0.26,0.13,0.26,3.78,0,3.32,0,0.39,0.26,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0.011,0.023,0,0.449,0.265,0.034,13.235,272,1575,1 0,0.26,0.78,0,0.26,0.26,0.08,1.04,0.52,1.56,0.26,0.69,0.17,0.08,0.69,0.86,0.34,0,1.82,0.17,1.3,0,0.08,0.34,0,0,0,0,0,0,0,0,0.08,0,0,0.08,0,0,0,0,0,0,0,0,0.08,0.08,0,0,0.096,0.234,0,0.358,0.261,0.11,3.56,54,979,1 0.14,0,0.29,0,0.14,0,0,0,0,0,0,0.14,0.29,0,0,0.29,0,0,2.19,0,1.02,0,0,0.43,0,0,0,0,0,0,0,0,0,0.14,0,0,0,0,0,0,0,0,0,0,0.29,0,0,0,0.05,0.382,0,0.764,0,0,2.468,28,469,1 0,0.26,0.78,0,0.26,0.26,0.08,1.04,0.52,1.56,0.26,0.69,0.17,0.08,0.69,0.86,0.34,0,1.82,0.17,1.3,0,0.08,0.34,0,0,0,0,0,0,0,0,0.08,0,0,0.08,0,0,0,0,0,0,0,0,0.08,0.08,0,0,0.096,0.234,0,0.358,0.261,0.11,3.554,54,981,1 0,0,0,0,0.53,0,0,0.26,0,0,0,0.26,0.26,0,0,0.53,0,0,1.33,0,0,9.33,0.53,0.26,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0.555,0,1.157,19.26,107,886,1 0,0,2.15,0,1.07,0,0,0,0,0,0,0,0,0,0,0,0,0,1.07,0,1.07,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0.192,0,0,2.333,19,49,1 0,0,0,0,0,0,0,0,0,0,0,0,0,2.05,0,0,0,0,0,0,0,0,0,0,0,0,0,1.36,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,2.73,0,0,0.098,0.589,0,0,0,0,2.044,22,92,1 0,0.18,0.37,0,0.18,0,0,0,0,0,0.18,0.56,0,0.18,0.18,0.56,0.18,0.56,0.56,0,0.56,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0.277,0,0.493,0.061,0.03,1.874,13,253,1 0,0,0,0,1.04,1.04,0,0,0,0,0,0,0,0,0,6.25,0,0,4.16,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,5.555,0,0,3.275,14,95,1 0,0.28,0,0,0,0,0,0,0,0,0,0.57,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0.28,0,0,0,0,0,0,0,0.85,0,0,0.57,0,0,0,0,0,0,0.57,0,0,0,0.103,0,0,0,0,2.417,33,162,1 0.09,0.49,0.59,0,0.49,0.19,0,0,0.09,0.39,0,1.57,0.19,0,0,0,0.09,0,3.74,0.09,1.08,0,0,0.09,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0.765,0.037,0,5.803,1.284,0,5.944,54,755,1 0,0.55,0.55,0,0.55,0.55,0,0.27,1.94,1.67,0,1.39,0.83,0,0.83,0.27,0,1.94,2.5,0,2.22,0,0.55,0.55,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0.273,0.364,0.045,6.641,48,352,1 0.58,0,0.34,0,0.11,0.11,0,0,0,0.23,0.23,0.93,0.93,0,0,0.58,0.23,0.11,4.19,0,1.51,0,0.58,0.46,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0.34,0,0,0,0,0,0.11,0,0,0.11,0,0.125,0,0.733,0.104,0.335,8.192,326,1360,1 0,0.18,0.18,0,0.74,0,0.18,0,0,0.55,0.18,0.18,0,0,0.18,0,0,0,1.11,0,0.74,0,0,0,0,0,0,0,0,0.18,0,0,0.37,0,0,0.74,0,0,0,0,0,0,0,0,0,0,0,0,0,0.058,0,0,0.029,1.57,2.166,11,208,1 0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,8.33,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,2.013,0,0,0,0,3.5,28,42,1 0.49,0,0.24,0,0.24,0,0,0.73,0,0,0,0.49,0,0,0,0,0,0,4.9,0,1.22,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0.544,0.077,0,2.055,22,111,1 0,0,0,0,0,0,0.91,0,0,0,0.91,2.75,0,0,0,0,0,0,6.42,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1.941,12,33,1 0,0,0.29,0,0.87,0,0.29,0,0.87,0,0,1.45,0,0,0,0,0,0.29,5.24,0,1.45,0,0,0.29,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0.042,0,0,0.085,0,5.145,33,247,1 0,0,0.57,0.57,0,0,0,0.28,0,0,0,0,0.28,0,0,0,0.28,0.57,2.89,0.86,1.73,0,0,0.28,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0.461,0,1.385,0,0.046,3.535,64,396,1 0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,1,7,1 1.06,0.16,0.4,0,0.16,0.24,0,0.16,0,0.49,0.08,0.57,0.9,0,0.16,0,0,0.32,2.37,0,1.22,0,0.49,1.14,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0.095,0,0.845,0.255,0.095,4.194,84,713,1 0,0.26,0.79,0,0.26,0.26,0.08,1.06,0.53,1.59,0.26,0.71,0.17,0.08,0.71,0.88,0.44,0,1.86,0.26,1.24,0,0.08,0.35,0,0,0,0,0,0,0,0,0.08,0,0,0,0,0,0,0,0,0,0,0,0.26,0.08,0,0,0.098,0.226,0,0.353,0.254,0.113,3.591,54,966,1 0.98,0.16,0.41,0,0.16,0.24,0,0.16,0,0.49,0.08,0.57,0.9,0,0.16,0,0,0.32,2.37,0,1.23,0,0.49,1.14,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0.096,0,0.736,0.256,0.096,4.123,84,701,1 0.58,0,0.34,0,0.11,0.11,0,0,0,0.23,0.23,0.93,0.93,0,0,0.58,0.23,0.11,4.19,0,1.51,0,0.58,0.46,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0.34,0,0,0,0,0,0.11,0,0,0.11,0,0.125,0,0.733,0.104,0.335,8.192,326,1360,1 0,0,0,0,0,0,0,0,0,4.25,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0.287,0,0,0,0,0,4.333,13,78,1 0.41,0,0.41,0,0.41,0,0,0,0.41,0.83,0,0,0,0,0,0,0.41,0,1.66,0,1.25,3.75,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0.676,9.444,54,255,1 0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,16.66,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,4.333,11,13,1 0,0.26,0.79,0,0.26,0.26,0.08,1.06,0.53,1.59,0.26,0.71,0.17,0.08,0.71,0.88,0.44,0,1.86,0.26,1.24,0,0.08,0.35,0,0,0,0,0,0,0,0,0.08,0,0,0,0,0,0,0,0,0,0,0,0.26,0.08,0,0,0.098,0.226,0,0.353,0.254,0.113,3.598,54,968,1 0,0.32,0,0,0,0,0,0,0,0,0,0.65,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0.97,0,0,0.65,0,0,0,0,0,0,0,0,0,0,0.075,0,0,0,0,2.269,33,118,1 0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0.64,0,0,0,0,0.32,0,0,0,0,0,0.64,0,0,0,0,0,0,0,0,0,0,0.254,0,0,0,0,1.987,28,153,1 0,0,0,0,0.44,0,0,0,0,0.88,0,0,0,0,0,0.44,0,0,1.32,0,0,0,0,0,0,0,0,0.44,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0.44,0,0,0,0,0,0,0,0,1.841,10,186,1 0.09,0.49,0.59,0,0.39,0.19,0,0,0.09,0.39,0,1.57,0.19,0,0,0,0.09,0,3.74,0.09,1.08,0,0,0.09,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0.765,0.037,0,5.828,1.308,0,6.047,54,768,1 0.36,0.29,0.36,0,0,0.58,0.07,0.14,0.66,1.25,0.14,1.39,0.58,1.1,0.14,0.14,0,0,2.35,0,1.25,0.07,0.58,0.29,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0.07,0,0,0,0,0,0,0,0,0.319,0.266,0.279,4.689,145,1163,1 0,0,0,0,0,0,0,0,0,0,0,0.72,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0.48,0,0,0,0,0,0,0,0.24,0,0,0.48,0,0,0,0,0,0,0,0,0,0,0.186,0,0,0,0,2.823,38,240,1 0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,2.4,0,0,2.4,0,2.4,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0.145,0.291,0,2.5,11,45,1 0.17,0.22,0.62,0,0.11,0.22,0.05,0.11,0,0.39,0.11,1.02,0.45,0.05,0.05,0,0,0.39,3.46,0,1.76,0,0.56,0.34,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0.01,0.2,0,0.441,0.421,0.04,4.945,116,1449,1 0,0,0,0,0,0,0,0,0,0,0,0,0,2.32,0,0,1.16,0,1.16,0,0,0,0,0,0,0,0,2.32,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1.16,0,1.16,0,0,0,0.381,0,0,0,0.19,2.652,28,61,1 0,0.26,0.78,0,0.26,0.43,0.08,1.12,0.43,1.47,0.26,0.69,0.17,0.08,0.69,0.86,0.6,0,1.82,0.6,1.39,0,0.08,0.26,0,0,0,0,0,0,0,0,0.08,0,0,0,0,0,0,0,0,0,0,0,0.26,0.08,0,0,0.097,0.222,0,0.444,0.25,0.111,3.138,54,929,1 0,0,0,0,0,0,0,0,0,0,1.23,0,0,0,0,2.46,0,0,2.46,0,2.46,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0.232,0.465,0,2.687,12,43,1 0,0,0,0.6,0.6,0,0,0,0,0,0,0,0.6,0,0,2.42,0,0.6,0,0,0.6,0,0.6,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0.412,0.206,0.103,2.3,20,237,1 0,0,0,0,0,0,0,0,0,0,0,0,0,1.8,0,0,0.6,0,1.2,0,0,0,0,0,0,0,0,1.2,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0.6,0,1.8,0,0,0,0.299,0,0,0,0.199,2.465,28,106,1 0,0,0,0,0,0,0,0,0,0,0,0.72,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0.48,0,0,0,0,0,0,0,0.24,0,0,0.48,0,0,0,0,0,0,0,0,0,0,0.185,0,0,0,0,2.802,38,241,1 0,0,0,0,0,0.27,0,0,0.82,0,0,0.27,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0.54,0,0,0,0,0,0,0,0.54,0,0,0.54,0,0,0,0,0,0,0,0,0,0.037,0.226,0,0.037,0,0,2.666,33,208,1 0,0.68,0,0,4.08,0,0.68,0,0,0.68,1.36,1.36,0,0,0,0,0.68,0.68,2.72,0,2.04,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0.11,0,6.588,68,112,1 0,0.68,0,0,4.08,0,0.68,0,0,0.68,1.36,1.36,0,0,0,0,0.68,0.68,2.72,0,1.36,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0.111,0,6.588,68,112,1 0.7,0,0.7,0,2.83,0,0,0,0,0,0,0,0,0,0,0,0,0.7,3.54,0,2.12,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0.11,0,0,1.083,3,26,1 0.2,0.41,0.2,0,1.44,0,0,0.41,0.41,0.62,0,1.86,0.2,0.2,0,0.2,0.41,0,2.69,1.03,2.48,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0.249,0,0.996,0.106,0,7.836,116,384,1 0,0,0,0,0,0,0,0,0,0,0,0,1.44,0,0,1.44,0,0,5.79,0,1.44,0,1.44,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0.543,0.271,0,2.157,11,41,1 0,0.28,0,0,1.4,0,0.28,0.28,0,0.56,0,0.84,0,0,0,0.28,0,0,1.68,0,1.96,0,0,0,0,0,0,0,0,0,0,0,1.4,0,0,0,0,0.28,0,0,0,0,0,0.28,0.28,0,0,0,0,0.137,0.068,0.034,0,0,5.635,114,603,1 0,0,0,0,1.03,0,1.03,0,0,0,0,2.06,0,0,0,2.06,0,0,3.09,0,1.03,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,4,60,84,1 0,0.49,0,0,0,0,0,0,2.48,0,0,0,0,0,0,0,0,0,0.49,0,0.99,0,0,0.49,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0.177,0,0,0.265,0.088,10.159,114,447,1 0.4,0.48,0.37,0,0.14,0.14,0.03,0.07,0.55,0.66,0.29,0.89,0.44,1.04,0.03,0.26,0.37,0.07,3.16,0,1.41,0,0.48,0.59,0,0,0,0,0,0,0,0,0.03,0,0,0,0,0.03,0,0,0,0,0,0,0.07,0,0,0,0,0.082,0,0.433,0.529,0.114,6.482,140,2379,1 0,0,0,0,0,0,0,0,0,3.57,0,1.78,0,0,0,0,0,0,1.78,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0.252,0,0,0.757,0,0,4.157,13,79,1 0,0,0,0,0.64,0,0.64,0,0,0,0,0.64,0,0,0,0,0,0,5.8,0,0.64,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0.64,0,0,0,0,0,0,1.44,0,0,2.875,21,115,1 0,0,0,0,0,0,0,0,0,3.7,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0.261,0,0,0.785,0,0,4.333,13,78,1 0,0,0,0,0.65,0,0.65,0,0,0,0,0,0,0,0,0,0,0,5.22,0,0.65,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0.65,0,0,0,0,0,0,1.461,0,0,2.973,21,113,1 0.1,0.1,0.71,0,0.61,0.3,0.4,0.1,1.42,0.81,0.1,0.5,0,0,0,0.1,0,1.11,2.23,0.5,2.03,0,0,0.3,0,0,0,0,0,0,0,0,0,0,0.1,0,0,0,0.1,0,0,0,0,0,0,0,0,0,0,0,0.264,1.01,0.397,0.033,3.199,56,1043,1 0.15,0,0.3,0,1.23,0.61,0,0.61,0,0.15,0,0.3,0,0,0.15,0.3,1.54,2.32,1.85,0,1.08,0,0,0.3,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0.46,0,0,0,0,0,0,0,0,0,0.128,0,0.615,0.025,0,1.377,13,186,1 0,0,0,0,0,0,0,0,0,3.7,0,0,0,0,0,1.85,0,0,1.85,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0.258,0,0,1.55,0,0,4.555,13,82,1 0,0,0,0,0.65,0,0.65,0,0,0,0,0,0,0,0,0.65,0,0,5.88,0,0.65,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0.65,0,0,0,0,0,0,1.765,0,0,3.025,21,118,1 0,0,0,0,0,0,1.43,0,0,0.47,0,0.95,0.47,0,0,0,0,0,2.87,0,0.47,0,0.47,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0.694,0,0,7.709,164,239,1 0.19,0.19,0.29,0,1.07,0.19,0.19,0.97,0.87,0.58,0.09,1.07,0.19,0.87,0.09,0,0,1.17,3.81,0.68,1.75,0,0.09,0.29,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0.09,0.09,0,0,0,0,0,0,0,0,0,0,0.202,0.404,0.233,0.031,4.32,49,877,1 0,0,0,0,0,0,0,0,0,0,0,0,1.44,0,0,1.44,0,0,5.79,0,1.44,0,1.44,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0.542,0.271,0,2.157,11,41,1 0,0,2.43,0,0,0,0,0,0,0,0,0,0,0,0,2.43,0,4.87,2.43,0,2.43,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0.896,0,0,5.538,58,72,1 0,0,1.14,0,0,0,1.14,0,0,0,0,0,0,0,0,0,0,0,2.29,0,2.29,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0.197,0,0,0,0,1.227,6,27,1 0,1.63,0,0,0.81,0,1.63,0,0,0,0,0,0,0,0.81,0,0,0.81,1.63,0,2.45,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0.134,0,0,0,3.294,11,56,1 0,0,0,0,0,0,2.3,0,0,0,0.76,2.3,0,0,0,0.76,0,0.76,3.07,0,2.3,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0.518,0,0,11.312,142,181,1 0,0,1.06,0,0,1.06,1.06,0,0,0,0,1.06,1.06,0,0,0,0,0,2.12,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,4.909,78,108,1 0,0,1.03,0,1.03,0,0,0,0,0,0,0,0,0,0,0,2.06,1.03,4.12,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1.149,0,0,1.461,3,19,1 0.27,0,0.83,0,1.11,1.11,0.27,0,0,0,0,0.83,0,0,0,0.83,1.11,0.27,1.38,0,1.11,0,0.55,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0.638,0,0,2.512,17,196,1 0,0,0,0,0,0,0,0,0,3.92,0,0,0,0,0,0,0,0,1.96,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1.55,3,31,1 0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0.375,0.525,0.225,0,0,4.906,39,211,1 0,0,0,0.04,0,0,0,0,0,0,0,0,0,0,0,0.02,0,0,0.02,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1.024,9.752,0.003,1.542,1.785,1.998,239.571,9989,10062,1 0.1,0.1,0.71,0,0.61,0.3,0.4,0.1,1.42,0.81,0.1,0.5,0,0,0,0.1,0,1.11,2.23,0.5,2.03,0,0,0.3,0,0,0,0,0,0,0,0,0,0,0.1,0,0,0,0.1,0,0,0,0,0,0,0,0,0,0,0,0.264,0.975,0.396,0.033,3.186,56,1042,1 0,0,1.63,0,0.54,0,0.54,0,0.54,1.09,0,2.18,0,1.09,0,0,0,0,2.73,0,2.73,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0.086,0,1.466,0.258,0.086,31.388,392,565,1 0,1.2,0.4,0,0.4,0,0.8,0.4,0,0,0,0.8,0.4,0,0,0.8,0.4,1.2,3.62,0,1.61,0,0,1.61,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0.4,0,0,0,0,0.069,0,0.552,0.207,0.138,6.652,69,153,1 0.22,0.44,0,0,1.33,0.22,1.33,0,0,0.22,0.44,0.66,0.22,0,0,1.11,0,1.11,2.66,0,1.77,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0.22,0,0,0,0,0,0,0,0,0,0.134,0,0.067,0.067,0,1.946,22,183,1 0.07,0,1,0,0.3,0.46,0.07,0.23,0.23,0,0.3,1.31,0.15,0,0.07,1.39,0.15,0.85,2.24,0,0.77,0,0,0.3,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0.15,0,0,0,0,0,0,0,0,0.024,0.183,0,0,0.183,0,3.211,84,700,1 0,0.5,0,0,0,0,0,0,2.5,0,0,0,0,0,0,0,0,0,0.5,0,1,0,0,0.5,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0.178,0,0,0.267,0.089,10.372,114,446,1 0.19,0.76,0.19,0,0.19,0.19,0.19,0,0.95,0.38,0.19,0.57,0,0,2.86,0.19,0,3.43,1.71,0,2.09,0,3.62,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0.38,0,0,0,0,0,0,0,0,0,0.151,0.303,0.212,0.303,0,11.242,132,742,1 0,0.37,0,0,0,0.74,1.12,0,0,0,0.74,1.49,0.74,0,0,0.37,0,1.49,4.49,0,1.87,0,0,0.74,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0.223,0.223,0,2.021,10,93,1 0,0,0,0,0,0,0,11.11,0,0,0,0,0,0,0,0,0,0,0,0,11.11,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,5.55,0,0,0,0,0,0,0,0,0,1,1,4,1 0.17,0.26,1.21,0,0.43,0.6,0.43,0.26,0.69,0.52,0.26,1.3,0.17,0,0.6,0.69,0.08,1.47,2.43,0.17,1.04,0,0.95,0.17,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0.08,0,0,0,0,0.08,0,0,0,0,0.107,0,0.256,0.242,0.013,6.142,583,1339,1 0.96,0,0.48,0,0,0.96,0,0,0.48,0,0.48,0,0,0,1.44,0.48,0.48,2.41,0,0,0.96,0,0,0.48,0,0,0,0,0,0,0,0,0.48,0,0,0,0,0,0,0,0,0,0,0,0,0.48,0,0,0,0.818,0,0.175,0.467,0.116,9.56,259,717,1 0,0,0,0,0.67,0,2.01,0,0,0,0,0,0,0,0,0,0,2.01,1.34,0.67,2.01,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0.305,0,0,2.162,14,93,1 0.09,0.49,0.59,0,0.29,0.19,0,0,0.09,0.39,0,1.58,0.19,0,0,0,0.09,0,3.76,0.09,1.09,0,0,0.09,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0.765,0.037,0,5.831,1.309,0,6,54,756,1 0,0,0,0,0.68,0,2.04,0,0,0,0,0,0,0,0,0,0,2.04,1.36,0.68,2.04,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0.309,0,0,2.111,14,95,1 0,0,0.37,0,0,0,0.37,0,0,0,0,0.37,0,0,0,0.74,0.37,0.37,0.74,0.37,0.37,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0.37,0,0,0,0,0,0,0.37,0,0,0.302,0,0.241,0.06,0,2.166,18,143,1 0.16,0.24,1.23,0,0.41,0.57,0.49,0.32,0.65,0.49,0.24,1.23,0.16,0,0.65,0.9,0.08,1.56,2.38,0.16,1.07,0,0.9,0.16,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0.08,0,0,0,0,0.08,0,0,0,0,0.114,0,0.241,0.228,0.012,6.544,683,1466,1 0,0,0,0,0,0,0,0,0,1.08,0,0,0,0,0,3.26,0,0,5.43,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,2.152,0,0,5.21,36,99,1 0,0.96,0.96,0,1.44,0,0.48,0,0.48,1.92,0.48,0.96,0.48,0,1.92,0,0,0,0.96,0,0.96,0,4.32,0.48,0,0,0,0,0,0,0,0,0,0,0.48,0,0,0,0,0,0,0,0,0,0,0.48,0,0,0,0.061,0,0.43,0.43,0,25.964,305,727,1 0,0.18,1.1,0,0.73,0.73,0.73,0.09,0.83,0.27,0.27,0.64,0.27,0,1.47,0.09,0,1.2,1.38,0.18,0.64,0,0.55,0.18,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0.18,0,0.09,0.09,0,0,0,0.094,0,0.43,0.134,0.013,8.445,696,1478,1 0,0,0,0,0.4,0.4,0.4,0.4,0,0,0.4,0,0,0,0,0.4,0,0,3.6,0,2,0,0,0.4,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0.124,0,0,1.94,12,97,1 0,0,0,0,0,0,0,0,0,0,0,0.84,0,0,0,0,0,0,2.52,0,1.68,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0.84,0,0,0,0,0,0,0,0,0,0,0,0,0,0.139,0,0,0,0,1.304,6,30,1 0,0,0,0,0,0,0,0.85,0,0,0,0.85,0,0,0,0,0,0,2.56,0,0.85,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0.85,0,0,0,0,0,0,0,0,0,0,0,0,0,0.144,0,0,0,0,1.333,6,28,1 0,0.21,0.43,0,0.65,0,0.21,0.21,0.87,0.65,0.43,0.87,0,0,0,0.43,0,0.87,3.71,0,1.09,0.65,0,0.43,0,0,0,0,0,0,0,0,0,0,0,0,0,0.43,0,0,0,0,0,0,0.21,0,0,0,0,0.032,0,0.96,0.128,0.128,8.08,70,501,1 0,0,0,0,1.29,0,0,0,0,0,0,0,0,0,0,0.64,0,1.29,2.58,0.64,1.29,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0.64,0,0,0,0,0,0,0,0,0,0,0.224,0,2.354,0,0,2.09,13,69,1 0,0.5,0,0,0,0,2,0,0,0.5,0.5,0.5,0,0,0,0.5,0,1.5,3,0,1.5,0,0.5,0.5,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0.267,0,0.445,0.979,0,4.685,28,164,1 0.27,0.27,0.55,0,0.27,0.27,0,1.37,0.27,0.82,0.27,0.55,0,0,0,0,1.37,0.55,1.65,2.2,3.03,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0.27,0,0,0,0,0,0,0,0,0,0.28,0,1.029,0.093,0,3.621,63,344,1 0.87,0.17,0.52,0,0,0.32,0,0.04,0.29,0.42,0.39,1.37,0.87,1.69,0,0.32,0.54,0.22,3.47,0.29,1.32,0,0.34,0.84,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0.02,0.07,0,0.04,0,0.016,0.058,0,0.639,0.165,0.182,3.697,117,3498,1 0,0.78,2.34,0,0.78,0,1.56,0,0,0,0,1.56,0,0,0,0,0,0.78,7.03,0,2.34,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1.363,0,0,1.348,29,147,1 0.71,0.35,0.71,0,1.79,0,0,0,0,0.35,0,1.43,0,0,0,0.35,0,0,3.94,0,1.43,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0.061,0,0,0,0,8.086,153,186,1 0.33,0.84,0.67,0,0.67,0.33,0.67,0,0.33,0,0.16,0.84,0.16,0,0,0.67,0,0.5,3.03,0.33,2.18,0,0,0,0,0,0,0,0,0,0,0,0.33,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0.183,0,0.156,0.104,0.026,6.5,525,858,1 0.42,0,0.42,0,1.71,0,0.42,0,0,0.21,0.21,0.85,0.21,0,0,0,1.92,0.42,3.21,0,1.49,5.78,0.21,0.21,0,0,0,0,0,0,0,0,0.21,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0.075,0.263,0.075,0.639,53.433,494,1603,1 0,0,1.01,0,0,0,0.5,0,0,2.02,1.51,1.51,0,0,0,0.5,0,0,3.53,0,1.01,0,1.51,1.01,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0.089,0,1.431,0.536,0,4.09,23,225,1 0.86,0,0.86,0,0,0,0,0,0,0,0,0,0,0,0,0.86,3.44,0,4.31,0,0.86,0,0.86,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0.928,0.154,0.154,2.409,7,53,1 0.25,0.17,0.34,0,0,0.08,0,0,0.08,0.08,0.08,0.86,0,0,0,0.08,0,0.25,4.66,0,1.2,0,0,0.08,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0.08,0,0,0,0,0,0,0.015,0,0.094,0.015,0,2.531,89,319,1 0.27,0.27,0.55,0,0.27,0.27,0,1.37,0.27,0.82,0.27,0.55,0,0,0,0,1.37,0.55,1.65,2.2,3.03,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0.27,0,0,0,0,0,0,0,0,0,0.279,0,1.023,0.093,0,3.621,63,344,1 0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1.81,9.09,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0.763,21.428,62,150,1 0,0,0,0,0,0,7.27,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0.297,0,0,2,8,52,1 0.1,0.2,1.01,0,0.8,0.8,0.5,0,0.8,0.1,0.3,0.7,0.3,0,1.61,0.1,0,1.11,1.31,0.2,0.7,0,0.6,0.1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0.2,0,0.1,0.1,0,0,0,0.11,0,0.488,0.157,0.015,8.55,669,1351,1 0.2,0,0.1,0,0,0.1,0.2,0,0,0,0,0.72,0,0,0,0.1,0.2,0.1,4.17,0,1.35,0,0.52,0.41,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0.057,0,0.095,0,0,2.717,24,318,1 0,0,1.47,0,0,1.1,0.36,0,0,0,0.36,0.36,0,0,0,0.36,0,0,2.21,1.1,2.95,0,1.47,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0.123,0,0.433,0.928,0.185,3,33,177,1 0.15,0.15,0.31,0,0.15,0,0.46,0,0,0,0.62,0.62,0.15,0,0,0.31,0.15,0.93,2.63,0,2.01,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0.092,0,0.123,0,0,6.268,196,608,1 0.93,0,0,0,0.93,0,1.86,0,0,0,0,2.8,0.93,0,0,0,0,0,8.41,0,1.86,0,0,0.93,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0.164,0,2.306,0.164,0,8.312,29,133,1 0,0.22,0.45,0,0.68,0,0.22,0.22,0.9,0.68,0.45,0.9,0,0,0,0.68,0,0.9,3.86,0,1.13,0,0,0.45,0,0,0,0,0,0,0,0,0,0,0,0,0,0.45,0,0,0,0,0,0,0.22,0,0,0,0,0.033,0,1.103,0.133,0.033,7.166,54,430,1 0,0,0.27,0,0.54,0,0.27,0,0,0.27,0,0.54,0,0,0,1.35,0,0,1.08,0,2.44,10.86,0,0.54,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0.329,0.141,1.41,44.72,252,1118,1 0.76,0,0.38,0,0.12,0.25,0,0.12,0.12,0,0,0.25,0.38,0,0,0.38,0,0.25,2.92,0,2.92,0,0,0.38,0,0,0,0,0,0,0,0,0,0,0.12,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0.022,0,0.661,0.088,0,2.256,21,325,1 0,0,0,0,0,0,0,3.19,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1.06,0,0,0,0,0.207,0,0.207,0.207,0,3.761,25,79,1 0,0,0,0,0,1.29,0,0.64,0,0,0,0,0,0,0,0,0,0,3.87,0,0.64,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1.16,0.116,0,1.8,12,63,1 0,0,0,0,0,0,0,3.19,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1.06,0,0,0,0,0.207,0,0.207,0.207,0,3.761,25,79,1 0,0,1.35,1.35,0,0,0,1.35,0,0,0,0,0,0,0,1.35,0,0,2.7,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,2.7,0,0,0,0,0,0,3.588,0,0,2.516,17,78,1 0,1.03,0,0,1.03,0,1.03,0.51,0,0.51,0,1.03,0,0,0,0.51,0,0.51,2.07,0,1.55,0,0,0,0,0,0,0,0,0,0,0,0,0,0.51,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0.257,0,0.6,0.429,0,1.447,4,55,1 0,0,0,0,0,0,0,0,0,0,0,0,0,0,0.29,0.29,0,0.29,1.79,0,0.59,0,0.29,0,0,0,0,0,0,0,0,0,0.29,0,0,0,0,0,0,0,0,0,0.89,0,0,0,0,0,0,0.248,0,0,0.049,0,2.47,30,168,1 0,0,0.68,0,0,0,0,1.36,0,0,0.68,0.68,0,0,0,0,0,0,3.4,0,1.36,0,0.68,0.68,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0.238,0.238,0,2.232,19,96,1 0.1,0.2,1.01,0,0.8,0.8,0.5,0,0.8,0.1,0.3,0.7,0.3,0,1.61,0.1,0,1.11,1.31,0.2,0.7,0,0.6,0.1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0.2,0,0.1,0.1,0,0,0,0.11,0,0.488,0.157,0.015,8.55,669,1351,1 0,0,0.66,0,0.33,0,0.33,0.33,1.33,2,0,0.66,0,0.33,1,0.33,0,0.66,2.67,0,1,0,2,0,0,0,0,0,0,0,0,0,0.33,0,0,0,0,0,0,0,0,0,0,0,0.33,0,0,0,0,0.23,0,0.057,0.23,0,5.279,82,227,1 0,0,0,0,0,0.23,0,0,0,0,0,0.46,0,0,0,0.46,0.46,0.23,3,0,0.69,0,0,0,0,0,0,0,0,0,0,0,0.23,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0.077,0.038,0,0,0,0.038,2.6,42,182,1 0.39,0,0,0,0,0.39,0.79,0,0,0.39,0,0.79,0,0,0,0,0.39,0,2.37,0,2.76,0,1.18,0.79,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0.064,0,0.64,0.192,0,2.74,13,74,1 0,0,0.77,0,0.38,0.38,0.38,0,0,0.77,0.38,0.38,0,0,0,0.77,0.77,0.77,2.31,0,1.15,0,0,0.38,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0.063,0.127,0.255,0.51,0,0,3.685,62,258,1 0,0,0,0,0.53,0,0.53,0,0.53,0,0,1.07,0,0,0,0,0,0,2.15,0,3.22,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0.082,0,0,4.391,66,101,1 0,0.31,0.42,0,0,0.1,0,0.52,0.21,0.52,0,0.52,0.63,0.1,0.1,0.21,0.31,0.21,2.53,0.42,1.69,0.31,0,0.1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0.1,0,0,0,0,0.016,0,0.887,0.032,0.049,3.446,318,1003,1 0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0.022,0.022,0.019,0.022,0.022,0.022,3.482,5,5902,0 0,0,0,0,0,0,0,0,0,0.85,0,0,0,0,1.7,0,0,0,2.56,0,1.7,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0.299,0,0,0.149,0,0,1.04,2,26,0 0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,33.33,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,1,3,0 0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,5.12,0,0,0,0,0,0,0,0,0,0,0,1.28,0,2.56,0,0,0,0,0,0,0,0,0,0,0.131,0,0.262,0,0,1.625,7,65,0 0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0.07,0,0.07,0,0,0,0.07,0,0,0,0,0,0,0.07,0,0,0,0,0,0,0,0,0,0.104,0.324,0,0,0.011,4.411,28,1866,0 0,0,0,0,2.04,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,4.08,2.04,2.04,2.04,2.04,2.04,2.04,2.04,0,2.04,2.04,2.04,0,0,0,2.04,0,4.08,0,0,0,0,0,0,0,0.671,0,0,0,0,2.5,11,35,0 0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0.84,0,0.84,0,0,0,0.84,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0.273,0.136,0,0,0.136,3.571,28,150,0 0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,1,1,0 0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,7.31,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,4.87,0,0,0,0,0,0,0,0,0,0,0,0,0.393,0,0,1.75,7,28,0 0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,4,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0.729,0,0,2.285,7,16,0 0,0,0,0,0,0,0,0,0,0,0,0.24,0,0,0,0,0,0,0.24,0,0,0,0,0,9.33,3.93,0.24,0,0,0.73,0,0,0,0,0.24,0.24,0,0,0.24,0,0,0.73,0,0.49,0,0,0,0,0,0.037,0,0.149,0,0,10.012,251,791,0 0.9,0,0,0,0.9,0,0,0,0,0,0,1.8,0,0,0,0,0,0,3.6,0,1.8,0,0,0,0.9,0.9,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0.9,0,0,0,0,0,0,0,0.149,0,0,0,0,2.766,12,83,0 0,0,0,0,0,0,0,0,0,0,0,1.85,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1.85,0,0,0,0,0,0,0,1.85,0,0,0,0,3.7,0,0,0,0,0,0,0,0.308,0,0,0,0,2,11,26,0 0.08,0,0.08,0,0,0.08,0,0.49,0,0,0.08,1.48,0.08,0.08,0,0,0.08,0,0,0,0,0,0,0,3.3,0,0,0,0,0,0,0,0,0,0,0.41,0.08,0,0,0,0,0,0.08,0,0,0,0,0.16,0.098,0.153,0,0,0.032,0,2.324,18,709,0 0,0,0,0,1.85,0,0,0,0,0,0,0,0,0,0,0,0,0,1.85,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1.85,0,0,0,0,0,0,0,0.284,0,0,0,0,1.8,5,27,0 0,0,1.44,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,2.89,0,0,2.89,0,0,0,0,0,0,0,0.247,0,0,0,0,2.38,8,50,0 0,0,0,0,0,0,0,0,0,0,0,5.88,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0.546,0,0,2,4,16,0 0,0,0,0,0,0,0,0,0,0,0,0.8,0,0,0,0,0,0,0.8,0,0,0,0,0,0.8,0,0,0,0,0,0,0,0,0,0.8,0.8,0,0,0,0,0,1.6,0,1.6,0,0,0,0,0,0.115,0,0.115,0,0,3.388,28,122,0 0,0,0,0,1.51,0,0,0,0,0,0,3.03,0,0,0,0,0,0,1.51,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1.51,0,0,0,0,0,0.547,0,0,0,0,1.75,5,28,0 0,0,0,0,0,0,0,0,0,2.32,0,0,0,0,0,2.32,0,0,2.32,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,2.32,0,0,0,0,2.32,0,0,0,0,0,0.375,0,0,1.444,5,13,0 0,0.63,0,0,1.27,0,0,0,0,0,0,1.27,0,0,0,0,0,0.63,3.18,0,0.63,0,0,0,0,0,1.27,1.27,0,0,0,0.63,0,0.63,0,0,0,0,0,0,0,0,0,0,2.54,0,0,0,0,0.218,0,0,0,0,2.215,22,113,0 0,0,0.58,0,0,0,0,0,0,0,0,0,0,0,0,0,1.16,0.58,0.58,0,0,0,0,0,1.16,0.58,1.16,1.74,0.58,0.58,0.58,0.58,0,0.58,0.58,0.58,0,0,0,0.58,0,0,0,0,0.58,0,0,0,0,0.658,0,0.282,0,0,1.932,11,114,0 0.18,0.06,0.24,0,0.18,0,0,0.18,0,0.12,0,0.6,0,0,0,0.24,0.12,0,0.78,0,0.72,0,0.06,0.42,1.93,0.66,0,0.18,0,0.12,0.3,0,0,0,0.42,0,0.18,0,0.24,0,0,0.12,0,0,0.18,0,0,0.12,0,0.196,0,0.044,0.026,0,1.873,29,843,0 0,0,1.88,0,0,0,0,0,0,0,0,1.88,0,0,0,0,0,0,1.88,0,1.88,0,0,0,0,0,1.88,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1.88,0,0,0,0,0,0,0.323,0.323,0,0,0,0,1,1,12,0 0,0,2.12,0,0,0,0,0,0,0,0,2.12,0,0,0,0,0,0,0,0,2.12,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,2.647,16,45,0 0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,8.1,5.4,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1.35,0,0,0,0,0,0,0,0,0,0,1.142,2,8,0 0,0,0,0,0,0,0,0,0,0,0,1.78,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1.78,0,0,0,0,0,0,0.336,0,0,0,0,1.909,5,21,0 0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1.315,0,0,1,1,7,0 0,0,0,0,0,0,0,0,0,0,0,0.86,0.86,0,0,0,0,0,0,0,0,0,0,0,3.47,0,0,0,0,0,0,0,0,0,0,0,0.86,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,2.322,11,72,0 0,0,0,0,0,0,0,0,0,1.44,0,0,0,0,0,0,0,1.44,0,0,0,0,0,0,2.89,1.44,0,1.44,0,1.44,1.44,0,0,0,1.44,1.44,0,0,0,0,0,0,0,0,0,0,0,0,0,0.156,0,0.313,0,0,1.689,10,49,0 0,0,0,0,3.03,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1.538,4,20,0 0,0,0.54,0,0,0,0,0,0,0,0,0.27,0,0,0,0,0,0,3.29,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0.27,0,0.27,0,0.54,0,0.27,0,0.27,0.27,0,0,0,0.188,0.047,0,0,0,1.745,12,89,0 0,0,0.75,0,0,0,0,0,0,0,0,0.75,0,0,0,0,0,0,3.75,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0.262,0,0,0,0,1.437,3,23,0 0,0,0.79,0,0,0,0,0,0,0,0,0.39,0,0,0,0,0,0.39,3.18,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0.39,0,0,0,0.39,0,0,0,0.39,0.39,0,0,0,0.237,0,0,0,0.059,2.51,12,123,0 0.08,0.16,0.08,0,0.2,0,0.04,0.04,0.04,0.49,0.12,0.32,0.12,0.04,0,0.08,0,0,0.77,0,0.2,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0.69,0.65,0,0,0.04,0,0.08,0,0.16,0,0.28,0,0.89,0.016,0.243,0,0.033,0,0.016,2.747,86,1995,0 0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,16.66,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,3.125,17,25,0 0,0,0,0,0,0,0,0.26,0.39,0,0.13,0.52,0.26,0,0,0,0,0,0,0,0,0,0,0,4.22,0.13,0,0,0,0,0,0,0,0,0,0.13,0.13,0,0,0,0,0,0,0.13,0,0,0,0,0.017,0.107,0,0,0.071,0,2.848,26,433,0 0,0,1.58,0,0,0,0,0,0,0,0,1.58,0,0,0,0,0,0,1.58,0,1.58,0,0,0,1.58,3.17,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1.538,4,20,0 0,0,0.21,0,0.42,0,0,0,0.21,0,0,0,0,1.27,0,0,0.21,0,0.21,0,1.06,0,0,0,0.21,0,0,0.21,0,0,0,0,0,0,0.21,0,0,0,0,0,0,2.12,0,0,0,0,0,0,0,0.161,0,0.161,0,0.182,2.813,121,723,0 0,0,0,0,0,0,0,0,0,0,0,3.57,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0.684,0,0,2,7,16,0 0,0,1.21,0,0,2.43,0,0,0,0,0,0,0,0,0,0,0,0,1.21,0,1.21,0,0,0,0,0,1.21,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0.211,0,0.211,0,0,1,1,11,0 0,0,0,0,0,0,0,0,0,0,0,1.41,0,0,0,0,0,0,0.47,0,0.94,0,0,0,0.47,0,0,0,0,0,0,0,0,0,0,0,0.47,0,0,0,0,0,0,0,0,0,0,0,0,0.137,0,0.068,0,0,3.195,21,147,0 0,1.28,0,0,0,0,0,0,0,0,0,1.28,0,0,0,0,0,0,2.56,0,1.28,0,0,0,5.12,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0.196,0,0,0,0,1.952,10,41,0 0.29,0,0.29,0,0.29,0,0,0,0,0,0,0,0.29,0,0,0,0.29,0,0,0,1.75,0,0,0,2.63,0,0,0,0,0,0,0,0,0,0,0.58,0,0,0,0,0,0,0,0.58,0,0,0,0,0,0.108,0,0.072,0,0,2.847,60,242,0 0.26,0,0,0,0,0,0,0,0,0.53,0,3.76,0,0,0,0,0,0,0.26,0,0,0,0,0,3.76,2.68,0,0,0,0.26,0,0,0,0,0.26,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0.55,0,0.045,0,0,1.837,11,158,0 0,0,0,0,0,0,0,0,0,0,0,0.91,0,0,0,0,0.91,0,2.75,0,0,0,0,0,1.83,0,0,0,0,0,0,0,0,0,0,0,0.91,0,0,0,0,0.91,0,0,0,0,0,0,0.301,0,0,0.301,0,0,1.942,8,68,0 0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,7.14,0,0,0,0,7.14,0,0,0,0,0,0,0,0,5.5,10,11,0 0,0,0,0,0,0,0,0,0,0,0,3.22,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,3.22,0,0,0,0,3.22,0,0,0,0.526,0,0,0,0,1.571,3,11,0 0,0,4,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,4,0,0,0,0,0,0,0,4,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0.613,0,0,1,1,14,0 0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,4.34,0,8.69,0,0,0,0,0,4.34,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,3.048,0,0,1,1,8,0 0,0,1.02,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1.02,0,0,0,0,0,0,1.02,0,1.02,0,0,0,0,0,0,0,0,0,0,0,0,0.167,0,0,0,0,2.195,17,90,0 0,0,0,0,0,0,0,0,0,0,0,1.75,0,0,0,0,0,0,2.63,0,3.5,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1.235,5,21,0 0,0,0.78,0,0,0,0,0,0,0,0,0.78,0,0,0,0,0,0,1.56,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0.78,0.145,0,0,0.725,0,0,1.187,4,19,0 0.11,0,0.11,0,0.11,0.11,0,0,1.03,0,0,0.34,0,0,0,0,0,0,0.45,0,0.22,0,0,0,0.57,0.68,0.11,0,0,0,0,0,0.34,0,0,0,0.22,0,0,0,0,0,0,0,0,0,0,0,0.078,0.171,0.031,0,0.031,0,3.407,41,535,0 0.67,0,0,0,1.01,0,0,0,0,0,0,0.67,0.67,0,0,0,0,0,1.35,0,1.68,0,0,0,0.33,0.33,0,0,0,0,0,0,0,0,0,0,0.67,0,0,0,0,0.67,0,0,0.33,0,0,0.33,0.097,0.048,0,0.048,0,0,2.326,22,107,0 0.02,0,0.15,0,0.24,0.31,0,0.04,0.22,0,0.02,0.08,0,0,0.02,0,0,0.02,0.08,0,0.06,0,0,0,0.44,0.47,0.02,0,0,0,0,0,0.11,0,0,0,0,0.02,0,0,0,0.02,0,0,0,0,0,0,0.185,0.15,0.044,0,0.006,0,2.838,52,2078,0 0.51,0,0.51,0,0,0.51,0,0,0,0,0,0.51,0,0,0,0,0,0,0.51,0,1.02,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0.51,0,0.51,0,0.51,0,1.02,0,0,0.51,0,0,0,0.161,0.08,0.08,0,0,1.885,12,66,0 0,0,0.65,0,0.32,0,0,0,0,0,0,0.32,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0.061,0.061,0.061,0,0,1.392,11,71,0 0,0,0.1,0,0.1,0.1,0.2,0.2,0.1,0,0,0.2,0.1,0.2,0,0,0,0,0,0,0,0,0,0,3,0,0,0,0,0,0,0,0,0,0,0.31,0,0,0,0,0,0,0,0,0,0,0,0.2,0.013,0.097,0,0,0.027,0,2.214,22,423,0 0,0,0.23,0,0.23,0,0,0,0.23,0,0,0,0,1.43,0,0,0.23,0,0.23,0,2.14,0,0,0,0.23,0,0,0,0,0,0,0,0,0,0,0,0.23,0,0,0,0,1.9,0,0,0,0,0,0,0.117,0.235,0,0.117,0,0.164,2.616,160,683,0 0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,3.15,0,0,0,0,0,0,0,4.5,1.8,0,0,0,2.7,0,0,0,0,0,0,0,0,0,0.45,0,0,0,0,0,0,0,0,0.557,0,0,0.123,0,0,2.063,34,130,0 0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,4,0,0,0,0,0,4,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0.751,0,0,0,0,2,4,10,0 0,0.16,0.32,0,0.16,0,0,0.16,0.16,0,0,0,0,0,0.16,0,0,0,0,0,0,0,0,0,0.96,0.48,0.16,0,0,0,0,0,0,0,3.21,0,0.16,0,0,0,0,0.96,0,0,0.32,0.16,0.16,0,0,0.124,0,0,0,0.11,4.771,63,1064,0 0,0.54,0,0,0.54,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0.54,0.54,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1.09,0,0,0,0,0.182,0.091,0.091,0,0,1.212,5,40,0 0,0.37,0,0,0,0,0,0,0,0,0,0,0.37,0,0,0,0,0,1.51,0,0,0,0,0,5.68,4.16,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0.065,0.261,0,0,0,0,1.114,5,39,0 0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,3.57,0,0,0,0,0,0,7.14,3.57,0,3.57,0,3.57,3.57,0,0,0,3.57,3.57,0,0,0,0,0,0,0,0,0,0,0,0,0,0.24,0,0.24,0,0,1.687,10,27,0 0.3,0,0,0,0,0,0,0,0,0,0,0.61,0,0,0,0,0,0,0.3,0,0,0,0,0,0.3,0,0,0,0,0.3,0,0,0.3,0,0,0,0,0,0.3,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1.426,6,97,0 0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,2.77,0,0,0,0,0,0,5.55,2.77,0,2.77,0,2.77,2.77,0,0,0,2.77,2.77,0,0,0,0,0,0,0,0,0,0,0,0,0,0.218,0,0.218,0,0,1.687,10,27,0 0,0,0,0,0,0,0,0,0,0,0,3.92,0,0,0,0,0,0,0,0,0,0,0,0,1.96,1.96,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0.303,0.303,0,0,0,0,1.6,9,24,0 0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,3.7,3.7,3.7,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0.645,0,0,0.645,2.888,8,26,0 0,0,0,0,0.74,0,0,0,0,0,0,0,0,0,0,0,0,0,0.74,0,0,0,0,0,2.22,0.74,0,0,0,0,0,0,0,0,0,0,0.74,0,0,0,0,0,0,0,0,0,0,0,0,0.414,0,0.31,0.103,0,2.034,11,59,0 0,0,0.06,0,0.89,0.13,0,0.2,0,0,0,0.13,0.06,0,0,0,0.96,0,0,0,0,0,0,0,1.1,0,0,0,0,0,0,0,0,0,0,0,0.13,0.06,0,0,0,0.06,0,0,0.34,0,0,0,0.018,0.047,0,0,0.085,0,2.924,52,617,0 0,1.35,0.19,0,0,0,0,0,0,1.74,0,0.19,0,0,0,0,0,0,0,0,0.38,0,0,0,2.32,0.96,0,0,0,0,0,0,0,0,0.58,1.16,0.38,0,0,0,0,0,0.19,0,0,0,0,0.58,0,0.337,0,0,0,0,3.937,44,693,0 0.07,0,0.15,0,1.53,0.15,0,0.46,0,0,0.07,0.46,0.46,0,0,0,0.07,0,0.76,0,0.38,0,0,0,0.69,0,0,0,0,0,0,0,0,0,0,0,0.15,0,0,0,0,0.07,0,0,0.61,0,0,0,0,0.022,0,0,0.033,0,1.705,36,220,0 0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1.886,0,0,1.375,4,11,0 0,0,0,0,0.69,0,0,0,0,0,0,1.38,0,0,0,0,0,0,0.69,0,0.69,0,0,0,1.38,0,0,0,0,0,0,0,0,0,0,1.38,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0.08,0,2.488,15,112,0 0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,2,3,4,0 0,0,0,0,0,0,0,0,0,0,0,1.07,0,0,0,0,0,0,1.07,0,0,0,0,0,0,0,0,0,0,0,0,0,2.15,0,0,0,0,0,0,0,0,0,0,3.22,0,0,0,0,0,0,0,0,0,0,1.416,6,68,0 0,0,0,0,0,0,0,0,0.91,0,0,0.3,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0.3,0,0,0,0,0,0,0,0,0,0,0,0,0,0.109,0.254,0,0,0,0,3.606,119,357,0 0,0,0,0,0,0,0,0,0,0,0,0.93,0,0,0,0,0,0,2.34,0,0,0,0,0,0.93,0,0,0,0,0.46,0,0,0,0,0,0,0,0,3.75,0,0,0,0,0,0,0,0,0,0,0.438,0,0,0,0,2.448,37,120,0 0,0,0,0,0,0.25,0,1,0,0,0,0.25,0,0,0,0,0,0.25,0,0,0,0,0,0,0.75,0.25,0,0,0,1,0,0,0,0,0,0.25,1.25,0,0,0,0,0,0,0,0,0.5,0,0,0,0.153,0,0,0,0,1.958,26,329,0 0.11,0.05,0.22,0,0.22,0.05,0,0,0.05,0.11,0.11,0.56,0.05,0,0,0.11,0.16,0,1.35,0,0.73,0,0,0,1.69,1.3,0,0.05,0,0.11,0.16,0,0.05,0,0.33,0.05,0.33,0,0,0.05,0,0.11,0,0.11,0.05,0,0,0.05,0.025,0.085,0,0.042,0,0,2.031,22,971,0 0,0,0,0,0,0,0,0,0.14,0,0,0.43,0,0,0,0,0.14,0,0,0,0.14,0,0,0,0.14,0.57,0,0,0,0,0,0,0.14,0,0,0.43,0,0,0,0,0,0,0,0,0,0,0,0.14,0.058,0.156,0,0,0,0,1.687,24,496,0 0,0,0,0,0,0,0,0,0.29,0,0,0,0,1.75,0,0,0.29,0,0.29,0,0.29,0,0,0,0.29,0,0,0,0,0,0,0,0,0,0,0,0.29,0,0,0,0,1.75,0,0,0,0,0,0,0.156,0.052,0,0.052,0,0.235,2.721,38,566,0 0,1.36,0,0,0.45,0,0,0,0,0,0,0,0,0,0,0,0,0,1.36,0,0,0,0,0,4.54,0,0,0,0,0,0,0,0,0,0.45,0,0.9,0,0.45,0,0,1.81,0.45,0,0,1.36,0,0,0.069,0.069,0,0,0,0,2.186,15,164,0 0,2.4,0,0,0.8,0,0,0,0,0,0,0,0,0,0,0,0,0,2.4,0,0,0,0,0,1.6,0,0,0,0,0,0,0,0,0,0,0,0.8,0,0,0,0,1.6,0,0,0,0.8,0,0,0.12,0,0,0,0,0,1.696,15,56,0 0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,7.14,0,0,0,0,7.14,0,0,0,0,0,0,0,0,5.5,10,11,0 0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,7.69,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,1,4,0 0,0,0.1,0,0,0,0,0,0,0.1,0.1,0.96,0.1,0,0,0,0,0,0,0,0,0,0,0,3.52,0.1,0,0,0,0,0,0,0.74,0,0,0.1,0.21,0.1,0,0,0,0,0,0,0,0,0,0,0.014,0.117,0,0,0,0,2.204,24,496,0 0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,7.14,0,0,0,0,7.14,0,0,0,0,0,0,0,0,5.5,10,11,0 0,0,0,0,0,0,0,0,0,0,0,1.01,0,0,0,0,0,0,0,0,1.01,0,0,0,1.01,0,0,0,0,0,0,0,0,0,2.02,1.01,0,0,1.01,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,3.108,25,115,0 0,0,0,0,0.68,0,0,0,0,0,0,0.34,0,0,0,0,0,0,0.34,0,2.04,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0.34,0,0,0,0,0,0,0.051,0,0,0,0,1.062,4,137,0 0,0,0,0,0.14,0,0,0.14,0,0,0,0.73,0,0,0,0,0,0,0.14,0,0,0,0,0,2.48,1.6,0,0,0,0.14,0,0,0,0,0,0,1.16,0,0.29,0,1.16,0,0,0,0.14,3.07,0,0,0.144,0.433,0.082,0.02,0,0,4.113,52,654,0 0,0,0,0,0,0,0,0,0,0,0,4.54,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,9.09,0,0,0,0,0,0,0,0,0,0,0,0,9.09,0,0,0,0,0,0,0,0,0,0,0,0,1.666,4,15,0 0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,2.17,0,0,0,0,0,0,4.34,2.17,0,4.34,0,2.17,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0.529,0,0,0,0,4,11,68,0 0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0.163,0,0,0,0,1.5,5,24,0 0,0,0,0,0.26,0.26,0,0,0,0.26,0,0.26,0,0,0,0.26,0,0,2.08,0,2.6,0,0,0,0.26,0,0,0,0,0,0.26,0,0,0,0,0,0,0,0,0,0,0,0.26,0,0.26,0,0,0,0.037,0,0,0,0,0,2.545,18,168,0 0.31,0,0,0,0,0,0,0,0,0,0,0.62,0,0,0,0,0,0,0.31,0,0,0,0,0,0.31,0,0,0,0,0.31,0,0,0.31,0,0,0,0,0,0.31,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1.446,6,94,0 0,0,0,0,0,0,0,0,0,0,0,0.96,0,0,0,0,0,0,1.44,0,0.48,0,0,0,2.89,0,0,0,0,0,0,0,0,0,0,0,0.48,0,0.48,0,0,0,0.48,0,0,0,0,0.48,0,0.371,0.074,0.074,0,0,2.534,18,185,0 0.32,0,0,0,0,0,0,0,0,0.64,0,3.23,0,0,0,0,0,0,0.32,0,0,0,0,0,3.88,2.58,0,0,0,0.32,0,0,0,0,0.32,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0.492,0,0,0,0,1.89,11,138,0 0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,7.14,0,0,0,0,7.14,0,0,0,0,0,0,0,0,5.5,10,11,0 0.15,0.1,0,0,0.3,0.15,0,0.3,0,0,0,0.6,0,0,0,0,0,0,2.06,0,0.85,0,0.05,0,0.2,0,0,0,0,0,0,0,0.25,0,0.15,0,0.35,0,0,0,0,0,0,0.05,0,0,0,0,0.073,0.234,0,0.073,0,0,2.206,49,1026,0 0,0,0,0,0,0,0,0,0,0,0,1.85,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1.142,3,16,0 0,0,0,0,0,0.27,0,0,0,0.27,0,0.27,0,0,0,0.27,0,0,2.18,0,2.73,0,0,0,0.27,0,0,0,0,0,0.27,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,2.593,18,166,0 0.07,0,0.15,0,0.09,0.05,0,0.03,0.05,0.05,0,0.41,0.03,0,0,0.01,0.09,0.13,0.03,0.01,0.07,0,0.01,0,0,0,0.03,0,0.01,0,0,0,1.21,0,0,0.07,0.95,0,0.01,0.11,0.13,0.01,0,0,0,0.39,0.03,0.51,0.042,0.173,0.002,0.008,0.005,0.002,2.145,71,2954,0 0.16,0.08,0,0,0,0,0,0,0.16,0.33,0,0.67,0,0,0.08,0,0.5,0.33,0.58,0.16,0.42,0,0,0.08,1.34,0.58,0,0,0,0.08,0,0,0,0,0,1.09,1.34,0,0.16,0,0,0,0,0.08,0,0,0,0,0.084,0.408,0.06,0,0.012,0,4.179,104,1655,0 1,0,2,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,5,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0.17,0,0,0.17,0,0,1.692,4,22,0 0,0,1.17,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,4.7,2.35,0,0,0,0,0,0,0,0,0,0,1.17,0,0,0,0,0,1.17,0,0,0,0,0,0,0,0.193,0,0,0,1.974,16,77,0 0,0,1.06,0,0,0.35,0,0,0,0,0,2.13,0,0,0,0,0.71,0,0.71,0,0,0,0,0,4.62,0,0,0,0.35,1.06,0,0,0,0,0,0.35,0.35,0,0.35,0,0,0,0.35,0,0.71,0,0,0,0,0.055,0.055,0,0,0,2.239,17,206,0 0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,3.57,0,0,0,0,0,0,7.14,3.57,0,3.57,0,3.57,3.57,0,0,0,3.57,3.57,0,0,0,0,0,0,0,0,0,0,0,0,0,0.239,0,0.239,0,0,1.687,10,27,0 0,0,2,0,0,0,0,0,0,0,0,0,0,0,0,0,0,2,0,0,0,0,0,0,4,2,0,2,0,2,2,0,0,0,2,2,0,0,0,0,0,0,0,0,0,0,0,0,0,0.18,0,0,0,0,1.611,10,29,0 0.23,0,0,0,0,0.23,0,0,0,0,0,0.92,0.46,0,0,0,0,0,2.76,0,2.76,0,0,0.69,0,0,0,0,0,0,0,0,0.46,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0.445,0,0.202,0.121,0,1.945,7,142,0 0,0,0,0,0,0,0,1.78,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1.78,0,0,0,0,0,3.57,0,0,0,0,0,0,0,0,0,0,0,1.666,7,15,0 0,0,0,0,0,0,0,0,0,0,0,0,0.89,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0.89,0,0,0,0,0,0,1.78,0,0,0,0.89,0,0,0,0,0.89,0,0,0,0.269,0.269,0,0,0,2.27,16,84,0 0,0,0,0,0,0,0,0,0,0,0,1.72,0,0,0,0,0,0,3.44,0,1.72,0,0,0,0,1.72,0,0,0,0,0,0,0,0,0,0,0,0,1.72,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,2.058,5,35,0 0,0,0,0,0,0,0,0,0,0,0,2.32,0,0,0,0,0,0,1.16,0,1.16,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1.16,0,0.744,0,0.148,0,0,1.972,18,71,0 0,0,0,0,0,0,0,0,0,1.36,0,0,0,0,1.36,0,0,0,0,0,0,0,0,0,1.36,1.36,0,0,0,0,0,0,1.36,0,0,0,1.36,0,0,0,0,0,1.36,0,0,0,0,0,0,0.404,0.202,0,0,0,3.533,17,53,0 0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1.35,0,0,0,0,0,0,0,0,0,0,0,0,1.169,0,0,0,0,2.533,21,76,0 0,0,1.18,0,0,0,0,0,0.59,0,0,0,0,0,0,0,0,0,1.77,0,1.77,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0.59,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0.313,0.313,0,7.588,66,129,0 0,0,0,0,0,0.57,0,0,0,0,0,1.73,0,0,0,0,1.15,0,0.57,0,0,0,0,0,2.31,0,0,0,0.57,1.73,0,0,0,0,0,0.57,0,0,0,0,0,0,0,0,0.57,0,0,0,0,0.086,0,0,0,0,1.5,5,72,0 0,0,0,0,0,0,0,0,0.62,0,0,0.2,0,0,0,0,0,0,0,0,0,0,0,0,3.34,2.3,0,0,0,0,0,0,0,0,0.2,0,0.62,0,0.2,0,0,0,0.41,0,0,0,0,0,0.085,0.198,0.056,0,0,0.454,3.414,108,536,0 0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1.96,0,1.96,0,0,0,0.98,0,0,0,0,0.98,0,0.377,0,0.125,0,0,2.925,27,158,0 0,0,0.25,0,0,0.25,0.5,0.25,0,0,0,0,0,0,0,0,0,0,1.25,0,0.25,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0.25,0,0,0,0,0.18,0,0.045,0,0,1.324,5,98,0 0.05,0,0.45,0,0.16,0.11,0,0,0.62,0,0,0.16,0,0,0,0,0,0.05,0.22,0,0.16,0,0,0,0.62,0.67,0.05,0,0,0,0,0,0.9,0,0,0,0.67,0,0,0,0,0,0,0,0,0,0,0,0.121,0.162,0.04,0,0.016,0,2.887,45,875,0 0,0,0.35,0,0.35,0.71,0,0,0,0,0,0.71,0,0,0,0,0,0,0.71,0,0.35,0,0,0,0,0,0,0,0,0,0,0,0.35,0,0,0,0.35,0,0.35,0,0,0,0.35,0,0.35,0,0,0,0,0.124,0,0.372,0,0,1.641,12,110,0 0.25,0.25,0,0,0.25,0,0.25,0,0,0.25,0.25,0,0.25,0,0,0.25,0,1.02,2.05,0,2.31,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0.25,0,0,0,0.51,0.25,0,0,0,0,0,0.413,0,0.165,1.78,13,146,0 0,0,0,0,0,0,0,0,0,0,0,0,0,1.26,0,0,0,0,0,1.26,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1.26,0,0,0,0,0,0.214,0,0.214,0,0,1.263,4,24,0 0,0,0,0,0,0,0,0,0,0,0,1.38,0,0,0,0,0,0,1.38,0,1.38,0,0,0,1.38,1.38,2.77,0,0,0,0,0,0,0,0,0,1.38,0,1.38,0,0,0,1.38,0,0,0,0,0,0,0,0.224,0.448,0,0,1.451,12,45,0 0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1.234,0,0,3,5,15,0 0,0,0,0,0,0,0,0,0,0,0,1.52,0,0,0,0,0,0,0.76,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0.76,0,0,0,0,0.76,0,0,0,0.118,0,0,0,0,1.735,10,59,0 0,0,0,0,0,0,0,0,0,0,0,2.77,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0.92,0,0,0,0,0,0,0,0.92,0,0,0,0,0.92,0,0,0,0,0,0,0,0.165,0,0.165,0,0,1.666,7,45,0 0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1.5,3,6,0 0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1.42,0,1.42,0,0,0,0,0,0,0,0,1.42,0,0.361,0,0,0,0,2.025,7,81,0 0,0,0,0,0,0,0,0,0,0.42,0,0.42,0,0,0,0,0,0,3.4,0,0.42,0,0,0.42,1.27,0.85,0,0.85,0,0.42,0,0,0,0,0,0,0,0,0,0,0,0,0,0.42,0,0,0,0,0,0.155,0,0,0,0,2.555,11,92,0 0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1.92,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0.38,2.307,9,30,0 0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1.36,0,0,0,0,0,0,0,1.36,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,1,17,0 0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,4,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,4,0,0,0,0,0,0,0,0,0,0,0,0,0.724,0,0,2.285,8,16,0 0,0,0,0,0,0,0,0,0,0,0,1.4,0,0,0,0,0.7,0,1.4,0,1.4,0,0,0,0,0,0.7,0,0,0,0.7,0,0,0,0,0,0,0,0,2.11,0,0,0,0,0,0,0,0,0,0.266,0.066,0,0,0,18,200,378,0 0,0,0,0,0,0,0,0,0.14,0,0,0.43,0,0,0,0,0.14,0,0,0,0.14,0,0,0,0.14,0.57,0,0,0,0,0,0,0.14,0,0,0.43,0,0,0,0,0,0,0,0,0,0,0,0.14,0.058,0.156,0,0,0,0,1.566,13,462,0 0,0,0.13,0,0.26,0,0,0.65,0.13,0,0,0.78,0.26,0,0,0,0.13,0,0,0,0,0,0.13,0,1.69,0,0,0,0,0,0,0,0,0,0,0,0.13,0,0,0,0,0,0,0,0,0,0,0.13,0,0.105,0,0,0.052,0,2.165,20,446,0 0.62,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0.62,0,0,0,0,0,0,0,0,0,0,0,0,0,0.286,0,0,0,0,1.461,4,38,0 0.67,0,0,0,0,0,0,0,0,0,0,0,0.33,0,0,0,0,0,1.01,0,0.33,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1.34,0,0,0,0,0,0,0,0.055,0,0,0,0,1.644,13,74,0 0.42,0,0,0,0,0,0,0,0,0.42,0,0.42,0.42,0,0,0,0,0,0.42,0,0.42,0,0,0,1.28,2.57,0,0,0,0.42,0,0,0.42,0,0,0.42,0.42,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0.151,0,0,1.533,9,69,0 0,0,1.96,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1.96,0,0,0,0,0,0,3.92,1.96,0,3.92,0,1.96,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0.475,0,0,0,0,2.95,11,59,0 0,0,0.48,0,0,0,0,0,0,0,0,0,0,0,0,0,0.48,0,0,0,0,0,0,0,0.96,1.93,0,0,0,0.48,0,0,0,0,0,0.96,0.48,0,0,0,0,0,0,0,0.48,0,0,0,0,0,0,0,0,0,1.353,7,88,0 0,0,1.66,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1.66,1.66,0,0,0,0,0,3.33,1.66,0,1.66,0,1.66,1.66,0,0,0,1.66,1.66,0,0,3.33,0,0,0,0,0,0,0,0,0,0,0.167,0,0.167,0,0,1.533,10,46,0 0,0,0,0,0,0,0,0,0,0,0,0.81,0,0,0,0,0,0,0.81,0,0,0,0,0,2.45,2.45,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0.12,0.12,0,0,0,0,2.473,11,47,0 0,0,0,0,0,0,0,0,0,0,0,2.15,0,0,0,0,0,0,1.07,0,0,0,0,0,5.37,1.07,0,0,3.22,0,1.07,0,0,0,0,0,1.07,0,0,0,0,3.22,1.07,0,0,0,0,0,0,0.388,0.194,0,0,0.194,2.666,13,104,0 0.06,0,0.19,0,0.06,0.06,0,0,0,0.13,0,0.26,0.06,0,0,0,0,0,0.52,0,0.46,0,0,0,2.57,0.92,0,0.06,0.13,0.52,0.32,0,0.06,0,0.26,0.13,0.32,0,0.26,0,0,0,0,0,0.06,0,0,0.13,0.009,0.152,0,0.047,0.028,0,1.948,23,836,0 0,0,0,0,0,0,0,0,0,0,0,5.12,0,0,0,0,0,0,2.56,0,0,0,0,0,0,0,0,0,5.12,0,0,0,0,0,0,0,0,0,0,0,0,5.12,0,0,0,0,0,0,0,0.5,0,0,0,0,2.266,7,34,0 0,0,0,0,0,0,0,0,0,0,0.38,0.19,0,0,0,0,0,0,1.33,0,0.38,0,0,0,0.19,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0.19,0,0,0,0,0,0,0,0,0,0.154,0,0.03,0,0.03,2.852,12,388,0 0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,9.09,4.54,4.54,4.54,4.54,4.54,4.54,4.54,0,4.54,4.54,4.54,0,0,0,4.54,0,0,0,0,0,0,0,0,0,1.169,0,0,0,0,3.1,11,31,0 0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,25,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,1,4,0 0,0,0,0,2.43,0,0,0,0,0,0,0,0,0,0,0,0,0,2.43,0,0,0,0,0,0,0,2.43,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0.442,0,0,0,0,1.2,3,12,0 0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,3.44,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1.5,6,66,0 0,0,0,0,0,0,0,0,0,1.4,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1.4,0,0,0,0,0,1.4,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0.22,0.22,0,0,0,3.875,28,93,0 0.22,0,0.22,0,0.67,0,0,0,0.22,0,0,0,0.22,1.34,0,0,0.44,0,0.67,0,1.56,0,0,0,0.44,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,2.23,0,0,0,0,0,0,0,0.156,0,0.134,0,0.156,3.08,121,693,0 0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,2,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0.161,0,0,1.25,3,15,0 0,0,0,0,0.69,0,0,0,0,0,0,0,0,0,0,0,0,0,0.69,0,0,0,0,0,2.08,0.69,0,0,0,0,0,0,0,0,0,0,0.69,0,0,0,0,0,0,0,0,0,0,0,0,0.284,0,0.284,0.094,0,2,11,60,0 0.13,0,0.13,0,0.13,0,0,0,1.18,0,0,0.52,0,0,0,0,0,0,0.52,0,0.26,0,0,0,0.65,0.79,0.13,0,0,0,0,0,0.52,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0.128,0.164,0.036,0,0.036,0,3.185,32,481,0 0.08,0,0.22,0,0.04,0,0,0,0.44,0.04,0,0.22,0.04,0,0,0,0.04,0,0.17,0,0.08,0,0,0,0.39,0.44,0.04,0,0,0,0,0,0.57,0,0,0,0.08,0.08,0,0,0,0,0.04,0.04,0,0,0,0,0.163,0.197,0.058,0,0.011,0,3.851,64,1583,0 0,0.28,0.28,0,0.86,0,0,0,0,0.28,0.28,0,0,0,0,0,0,0,2.87,0,1.72,0,0,0,0.28,0.28,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0.57,0,0,0,0,0.137,0,0,0,0,1.95,15,156,0 0.09,0.04,0.04,0,0.04,0,0,0,0.66,0,0,0.33,0.04,0,0,0,0,0.04,0.19,0,0.14,0,0,0,0.62,0.66,0.04,0,0,0,0,0,0.14,0,0,0.04,0,0,0,0,0,0,0,0.09,0,0,0,0.04,0.145,0.152,0.053,0,0.013,0,3.685,85,1463,0 1.14,0,0,0,1.14,0,0,0,0,0,0,1.14,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1.14,0,2.29,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1.14,0,0,0,0,0,0,0,0,0,1.19,3,25,0 0,0,0,0,3.22,0,0,0,0,0,0,3.22,0,0,0,0,0,0,0,0,0,0,0,0,0,0,3.22,0,0,0,0,0,0,0,0,0,0,0,0,0,0,3.22,0,0,6.45,0,0,0,0,0.512,0,0,0,0,2.4,11,24,0 0.2,0,0.1,0,0,0,0,0.1,0,0,0,0.4,0.1,0,0,0,0.2,0,0,0,0,0,0.1,0,4.5,0.1,0,0,0,0,0,0,0.1,0,0,0.1,0.1,0.1,0,0,0,0.6,0,0,0,0,0,0,0.092,0.079,0,0,0.013,0,2.361,26,562,0 0,0,1.94,0,0,0,0,0,0,0.97,0,0.97,0,0,0,0,0,0,1.94,0,0,0,0,0,0.97,0.97,0,1.94,0,0.97,0,0,0,0,1.94,0,0,0,0,0,0,0.97,0,0,0,0,0,0,0,0.379,0,0,0,0,8.125,75,195,0 0,0,0,0,0,0,0,0,0,1.23,0,2.46,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1.23,0,0,0,0,0,0,0,0,0,0,0,0,0.796,0,0,0,0,2.142,8,60,0 0.81,0,0.81,0,0.81,0,0,0,0,0,0,0.81,0,0,0,0,0,0,1.62,0,1.62,0,0,0,0.81,0,0,0,0,0,0,0,0,0,0.81,0,0,0,0,0,0,1.62,0,0,0,0,0,0,0,0.123,0,0.37,0,0,5.375,69,129,0 0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,15.38,7.69,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,7.69,0,0,0,0,0,0,0,0,0,7,17,35,0 0.54,0,0.27,0,0,0,0,0,0.27,0.54,0,0.81,0,0,0,0,0,0.27,1.08,0,0.81,0,0,0,0.81,0.81,0,1.08,0,0.54,0,0,0.27,0,1.08,0,0,0,0,0,0,0,0,0,0,0,0.27,0,0.039,0.318,0.079,0,0,0,4.971,76,517,0 0.56,0,2.24,0,0,0.56,0,0,0,0,0,1.12,0,0,0,0,0,1.12,4.49,0,0,0,0,0,1.12,0,0,0,0.56,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0.56,0,0,0,0.111,0.111,0,0.111,0,0,1.23,4,32,0 0.36,0,1.09,0,0,0,0,0,0,0,0,0.72,1.81,0,0,0,0,0,0.72,0,1.09,0,0,0.72,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0.063,0.126,0,0.063,0.126,0,2.562,35,123,0 0,0,0,0,0,0,0,0,0,0,0,0,2.38,0,0,0,0,0,2.38,0,0,0,0,0,2.38,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1.2,2,12,0 0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,16.66,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,5,17,20,0 0.27,0,0.27,0,0,0,0,0,0,0,0,0.81,0,0,0,0,0,0,0.54,0,0.27,0,0,0,9.83,0.81,0.54,0.27,0.27,0.27,0.27,0.27,0,0.27,0.27,0.27,0.54,0,0.27,0.27,0,0.54,0.54,0,0.54,0,0,0,1.411,1.411,0.041,0,0,0,4.891,20,675,0 0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,2.43,0,0,0,0,0,0,0,0,2.43,0,0,0,0,0,0,0,0,0,0,0,0,1.625,6,13,0 0.84,0,0,0,0,0,0,0,0,0,0,0.84,0,0,0,0,0,0,0.42,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0.84,0,0,0,0,0.082,0.414,0,0,0,0,3.34,7,167,0 0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,5,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,5,5,0,0,0,0,0,0,0,0,0,1.125,2,9,0 0,0,0,0,1.75,0,0,0,0,0.87,0,0,0,0,0,0,0,0,1.75,0,0.87,0,0,0,0.87,0.87,0.87,0,0,0,0,0,0,0,0,0,0.87,0,0.87,0,0,0,0.87,2.63,0.87,0,0,0,0.469,0,0.156,0,0,0,1.466,12,44,0 0,0,0,0,0,0,0,0,0,0,0,0,0.48,0,0,0,0,0,0,0,0,0,0,0,0.48,1.93,0,0,0.48,0,0,0,0,0,0,0,1.44,0,0,0,0,0,0,1.44,0,0,0,0,0,0.304,0,0,0.365,0,3.016,10,187,0 1.02,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1.02,0,0,0,0,0,0,0,1.02,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1.02,0,0,0,0,1.02,0,0,0.352,0,0.176,0,0,1.241,3,36,0 0,0,0,0,0,0,0,0,0,0,0,0.45,0,0,0,0,0,0,0,0,0,0,0,0,1.81,0.45,0,0,0,0.9,0,0,0,0,0,0.45,0,0,0,0,0,0,0,0,0.45,0,0,0,0,0,0,0,0,0,1.444,5,104,0 0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,2.5,0,0,0,0,0,0,0,0,0,1.333,3,12,0 0,0,0.76,0,0.76,0,0,0,0,0,0,0,0,0,0,0,0,0,0.76,0,0,0,0,0,0.76,0,1.52,0.76,0.76,1.52,0.76,0.76,0,0.76,0.76,0.76,0.76,0,0,0.76,0,0.76,0,0,2.29,0,0,0,0,0.254,0,0.127,0,0,1.755,11,79,0 0,0,0,0,2.46,0,0,0,0,1.23,0,0,0,0,0,0,0,0,2.46,0,1.23,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,2.46,0,0,0,0,0.245,0,0,0,0,0,1.166,3,14,0 0,0,0,0,0,0.69,0,0,0.23,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0.92,0.92,0,0,0,0,0,0,0.46,0,0,0,0.23,0,0.23,0.23,0,0,0.23,0,0,0.69,0,0,0.033,0,0.033,0,0,0,1.554,13,143,0 0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1.04,1.04,0,0,0,0,0,1.04,0,0,0,0,0,0,0,0,0,0,0,1.04,0,1.04,0,0,0,1.04,0,0,0,0,0,0.179,0.358,0,0.179,0,0,2.037,13,55,0 0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,2.08,0,0,0,0,0,2.08,0,0,0,0,0.393,0,0,0,0,1.545,6,17,0 0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1.02,0,1.02,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1.02,0,0,0,1.02,0,0,0,0,0,0,0,0,0,0,0.142,0,1.857,10,65,0 0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1.6,4,8,0 0.46,0,0,0,0,0,0,0,0,0,0,2.32,0.46,0,0,0,0,0.46,5.11,0,0.46,0,0,0,0.93,1.39,0,0,0.46,0,0,0,0,0,0,0,0,0,1.39,0,0,0.93,0,0,0,0,0,0,0,0,0,0.065,0,0,2,13,86,0 0,0,0.58,0,0.58,0,0,0,0,2.35,0,0,0,0,0,0,0,0,0.58,0,0,0,0,0,1.76,1.17,1.76,0.58,0.58,0.58,0.58,0.58,0,0.58,0.58,0.58,0.58,0,0,0.58,0,0,0.58,0,0.58,0,0,0,0.188,0.566,0.094,0,0,0,2.246,13,146,0 0,0,0,0,0,0,0,0,0,0.75,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0.75,0,0.75,0,0,0,0.75,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0.8,0.133,0,0,0.133,4.472,33,161,0 0,0,0,0,0,0,0,0,0,0.51,0,0,0,0,0,0,0,0,0.51,0,0.51,0,0,0,3.06,2.04,0.51,2.04,0.51,1.02,0.51,0.51,0,0.51,1.02,0.51,0,0,0.51,0.51,0,1.02,0,0,0.51,0,0,0,0.158,0.553,0,0,0,0,4,37,216,0 0.85,0.85,0,0,1.7,0,0,0,0,0.85,0,0.85,0,0,0,0,0,0,0,0,0.85,0,0,0,0,0.85,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0.275,0,0,0,0,1.55,5,31,0 0,0,0.52,0,0.52,0,0,0,0,2.11,0,0,0,0,0,0,0,0,0.52,0,0.52,0,0,0,1.58,1.05,1.05,0.52,0.52,0.52,0.52,0.52,0,0.52,0.52,0.52,0.52,0,0.52,0.52,0,0,0.52,0,0.52,0,0,0,0.171,0.513,0.085,0,0,0,2.225,13,158,0 0.39,0.39,0,0,0.39,0,0,0,0,0.39,0,1.19,0,0.39,0,0,0,0,1.19,0,0,0,0,0,2.77,1.98,1.19,1.19,0.39,0.39,0.39,0.39,0,0.39,1.19,0.39,0.39,0,0,0.39,0,0.39,0.39,0,0.39,0,0,0,0.125,0.377,0.439,0,0,0,2.238,13,141,0 0,0,0,0,0,0,0,0.86,0,0,0,2.58,0,0,0,0,0.86,0,2.58,0,0,0,0,0,1.72,0,0,0,0,0.86,0,0,0,0,0,0.86,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0.141,0,0,1.535,8,43,0 0,0,0.58,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0.58,0,0,0,0,0,0.58,1.75,1.16,0,0.58,0,0.58,0.58,0,0,0,0.58,0.58,0,0,0,0,0,0,0,0,0,0,0,0,0,0.059,0,0,0,0.178,2.506,11,183,0 0,0.68,0.34,0,0,0,0,0.34,0,0,0.34,0,0,0,0,1.72,0,0,1.03,0,2.06,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0.34,0,0,0,0,0.34,0,0,0,0,0.046,0,0,0,0,3.344,107,194,0 0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0.58,0,0,0,0,0,0,0,0,0,0,1.46,0.29,0,0.58,0,0,0,0,0,0,0.58,0,0,0,0,0,0,0,0,0,0,0,0,0.018,0,0,0,0,251,1488,1506,0 0.3,0,0.3,0,0,0,0,0,0,0,0,0.15,0,0,0,0,0,0.15,1.38,0,0.61,0,0,0,1.38,0.3,0.61,0.15,0.15,0.15,0.15,0.15,0.3,0.15,0.15,0.15,0.3,0,0.15,0.15,0,0,0.3,0,0.61,0,0,0,0.131,0.183,0.052,0,0,0,1.837,13,305,0 0,0,0.29,0,0.29,0,0,0,0.29,0,0,0.29,0,1.19,0,0,0.29,0,0.29,0,0.29,0,0,0,0,0,0,0.29,0,0,0.29,0,0,0,0.29,0,0.29,0,0,0,0,0.89,0,0,0,0,0,0,0,0.156,0.031,0.376,0,0.125,3.338,157,611,0 0,0,0,0,0,0,0,0,0.43,0,0,2.17,0,0,0,0,0,0,0.86,0,0,0,0,0,0.86,0.43,0,1.3,0,0,0,0,0,0,0.86,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0.248,0,0,0,0,2.119,15,142,0 0,0,0,0,0,0,0,0,0,0.55,0,0.55,0,0,0,0,0,0,1.11,0,0.55,0,0,0,2.77,2.22,1.11,0.55,0.55,0.55,0.55,0.55,0.55,0.55,0.55,0.55,1.66,0,0.55,0.55,0,0,1.11,0,1.11,0,0,0,0,0.603,0.086,0,0,0,2.113,13,167,0 0,0,0,0,0,0,0,0,0,0,0,1.49,0,0,0,0,0,0,0,0,0,0,0,0,1.49,1.49,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1.49,0,0,0,0,0,0,0,0,2,8,36,0 0,0,0.89,0,0.44,0.44,0,0,0,0,0,0.89,0,0.44,0,0,0.89,0,0,0,0,0,0,0,1.79,0,0,0,0,0,0,0,0,0,0,0.89,0,0,0,0,0,0,0,0,0.44,0,0,0,0,0.131,0,0,0,0,1.61,13,95,0 0,0,0,0,0,0,0,0,0,0,0,0.9,0,0,0,0,0,0.6,0.6,0,0.6,0,0,0,0,0.3,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0.173,0,0,0.129,0,3.266,31,196,0 0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1.666,3,15,0 0.35,0,0.35,0,0,0,0,0,0,0,0,0.35,0,0,0,0,0,0,1.42,0,0.71,0,0,0,0,0,0.35,0,0,0,0,0,0.35,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1.292,4,84,0 0,0,0,0,1.85,0,0,0,0,0,0,0,0,0,0,0,0,0,1.85,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1.85,0,0,0,0,0,0,0,0,1,1,19,0 0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1.61,0,0,0,0,0,1.61,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1.61,0,0,0,0,0.294,0,0,0,0,1.25,2,15,0 0,0,0,0,0,0,0,0,0,0.65,0,0,0,0,0,0,0,0,0,0,0.65,0,0,0,0,0,0.65,0,0.65,0,0,0,0.65,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0.327,0.109,0,0,0.109,3.857,28,162,0 0.36,0,1.47,0,0.36,0,0,0,0.36,0,0.36,3.32,0,0,0,0,0,0,1.1,0,0.36,0,0,0,0.36,0.36,0,0,0,0,0,0,0,0,0,0,1.1,0,0,0,0,1.1,0,0,0,0,0,0,0,0.051,0,0,0,0,2.293,45,172,0 0,0,0,0,0.83,0.41,0,0.83,0,0,0,1.67,0,0,0,0,0,0,0,0,0,0,0,0,0,0.41,0,0,0,0,0,0,0,0,0,0,0.41,0,0,0,0,0,0,0,0,0,0,0,0,0.068,0,0,0,0,1.673,5,82,0 0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1.57,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0.78,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,1,16,0 0,0,0.87,0,0.87,0,0,0,0,0.87,0,0,0,0,0,0,0,0,0,0,0.87,0,0,0,1.75,0.87,2.63,0,0,0,0,0,0,0,0,0,0.87,0,0,0,0,0,0.87,0,0.87,0,0,0,0,0.283,0.141,0,0,0,1.785,15,75,0 0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,16.66,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,1,6,0 0,0,0,0,0,0,0,0,0,1.63,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1.63,0,0,0,0,0,1.63,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0.272,0.272,0,0,0,4.19,26,88,0 0,0,0,0,0,0,0,0,0,0,0,1.58,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1.58,0,0,0,1.58,0,0,0,0,0,0,0,0,0,0,0,0,1.182,0,0,0,0,2.057,13,72,0 0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,2.22,2.22,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,2.22,0,0,0,0,0,0,0,0,0,1.75,5,21,0 0,0,0.28,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1.4,0,0.56,0,0,0,3.37,1.4,0.28,0.28,0.28,0.28,0.28,0.28,0,0.28,0.28,0.28,0.56,0,0,0.28,0,0.28,0.56,0,0.28,0,0,0,0,0.14,0.093,0,0,0,2.464,15,207,0 0,0,0,0,0,0,0,0,0,0.5,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0.5,0,0.5,0,0,0,0.5,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0.505,0.168,0,0,0.084,4.068,28,236,0 0,0,1.33,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1.33,0,0,0,0,0,0,2.66,1.33,0,1.33,0,1.33,1.33,0,0,0,1.33,1.33,0,0,0,0,0,0,0,0,0,0,0,0,0,0.288,0,0.144,0,0,1.857,10,39,0 0,0,0,0,0.35,0,0,0,0,0.35,0,0,0,0,0,0,0,0,2.1,0,0.7,0,0,0,2.8,1.05,1.4,0.35,0.35,0.35,0.35,0.35,0,0.35,0.35,0.35,0.7,0,0,0.35,0,0,0.7,0,0.7,0,0,0,0,0.233,0.116,0,0,0,1.746,13,145,0 0,2.07,0,0,0,0,0,0,1.55,0,0,0.51,0,0,0,0,0,0,1.03,0,0,0,0,0,0.51,0,2.59,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0.07,0,0,0.141,0.211,25.812,104,413,0 0,1.36,0.9,0,0,0,0,0,0,1.81,0,0.45,0,0,0,0,0,1.81,0,0,3.18,0,0,0,0.45,0,0,0,0,0,0,0,0.9,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0.199,0,0,0,0,3.382,53,159,0 0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1.14,0,0,0,0,0,2.29,1.14,0,3.44,0,0,0,0,0,0,2.29,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0.163,0,0,0,0,3.28,15,82,0 0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1.08,0,1.08,0,0,0,0,0,1.08,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1.263,4,24,0 0.1,0,0.1,0,0.1,0.1,0,0.4,0,0,0.1,0.8,0,0,0,0,0,0.1,0.1,0,0,0,0,0,0.1,0,0,0.1,0,0,0,0,0.1,0,0,0,0.3,0,0.1,0,0,0.4,0.2,0.2,0,0.8,0,0,0.015,0.136,0.015,0,0.015,0,1.636,18,527,0 0,0,0,0,0.67,0,0,0,0,0.67,0,0.67,0,0,0,0,0,0,0.67,0,0,0,0,0,4.05,4.05,0,2.02,0,0,0,0,0,0,0.67,0,0.67,0,0,0,0,0,0,0,0,0,0,0,0,0.613,0,0,0,0,2.976,24,128,0 0.9,0,0,0,0,0,0,0,0,0,0,0.9,0,0,0,0,0,0,0,0,0,0,0,0,0.9,0.9,0,0,0,0,0,0,0,0.9,0,0,0.9,0,0,0,0,0,0,0,0,0,0,0,0,0.15,0,0,0,0,3.225,22,129,0 1.19,0,0,0,0,0,0,0,0,1.19,0,0,0,0,0,0,0,0,1.19,0,0,0,0,0,1.19,1.19,0,2.38,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0.4,0,0,0,0,3.09,11,68,0 0,0,0,0,0.34,0,0,0,0,0,0,0.34,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0.34,0,0,0,3.06,0,0,0,0.34,0,0,0,0.34,0,0,0,0,0,0,0.34,0.088,0.132,0,0,0,0,1.25,7,85,0 0,0,0,0,0,0.32,0,0.64,0,0,0,1.6,0,0.32,0,0,0,0.32,0.32,0,0,0,0,0,0.32,0.32,0,0.32,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0.08,0,0,0,0,4.295,87,262,0 0,0,0,0,0,0,0,0,0,1.85,0,0,0,0,0,0,0,0,1.85,0,3.7,0,0,0,1.85,0,0,3.7,0,0,0,0,1.85,0,1.85,0,0,0,0,0,0,0,0,0,1.85,0,0,0,0,0.636,0,0.318,0,0,2.695,15,62,0 0,0,0,0,0,0,0,0,0,0.76,0,0,0,0,0,0,0,0,0,0,0.76,0,0,0,0,0,0.76,0,0.76,0,0,0,0.76,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0.123,0.123,0,0,0.123,3.7,28,148,0 0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,3.84,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,1,6,0 1.11,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,2.22,0,3.33,0,0,0,2.22,1.11,2.22,1.11,1.11,1.11,1.11,1.11,0,1.11,1.11,1.11,1.11,0,1.11,1.11,0,0,1.11,3.33,1.11,0,0,0,0,0.353,0,0.176,0,0,2.1,12,63,0 0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,7.14,3.57,3.57,3.57,3.57,3.57,3.57,3.57,0,3.57,3.57,3.57,0,0,0,3.57,0,0,0,0,0,0,0,0,0,0.956,0,0,0,0,3.6,11,36,0 0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,4.44,0,4.44,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,2.22,0,0,0,0,0,0,0.383,0,0,1.333,3,8,0 0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,20,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,1,5,0 0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0.66,0,0.33,0,0,0,5.66,2.66,2,0.66,0.66,0.66,0.66,0.66,0,0.66,0.66,0.66,0.66,0,0.33,0.66,0,0,0.66,0,0.66,0,0,0,0.101,0.254,0.101,0.05,0.05,0,2.725,15,248,0 0.2,0,0.2,0,0.2,0,0,0,0,0,0,1,0.2,0,0,0,0,0.2,0.4,0,0,0,0,0,2.61,1.2,0,0.4,0,0,0,0,0.8,0,0.4,0,0.8,0,0,0,0,0,0,0,0,0.2,0,0,0.061,0.462,0.061,0,0,0,2.61,24,308,0 0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,2.08,0,4.16,0,0,0,0,0,2.08,0,2.08,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,2.08,0,0,0,0,0,0,0,0,1.181,3,13,0 0,0,0,0,0,0,0,0,0,0,0,1.31,0,0,0,0,0,0,1.31,0,0,0,0,0,2.63,2.63,2.63,1.31,1.31,1.31,1.31,1.31,0,1.31,1.31,1.31,1.31,0,1.31,1.31,0,0,1.31,0,2.63,0,0,0,0,0.407,0.203,0,0,0,2.151,12,71,0 0,1.32,0,0,0,0,0,0,0.66,0.66,0,0.22,0,0,0,0,0,0.88,0.66,0,0.88,0,0,0,1.76,0,1.54,0,0,0.44,0,0,0.44,0,0,0,0,0,0.44,0,0,0,0,0,0,0,0,0,0,0.023,0,0.023,0.047,0.094,8.76,161,876,0 0,2.07,0,0,0,0,0,0,1.55,0,0,0.51,0,0,0,0,0,0,1.03,0,0,0,0,0,0.51,0,2.59,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0.07,0,0,0.141,0.211,25.812,104,413,0 0.34,0,0,0,0,0,0,0,0.34,0.68,0,1.02,0,0,0,0,0,0,1.36,0,0.68,0,0,0,2.38,1.7,0.68,1.7,0.68,0.34,0.34,0.34,0,0.34,0.34,0.34,0.68,0,0.68,0.34,0,0,0.68,0,0.34,0,0,0,0.052,0.42,0.052,0,0,0.052,2.604,13,250,0 0,0,0,0,0,0,0,0,0,0.47,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0.47,0,0.47,0,0,0,0.47,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0.074,0.297,0,0,0.074,4.308,28,293,0 0,0,0,0,4.54,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,4.54,0,4.54,0,0,0,0,0,0,0,0,0,0,2,5,16,0 0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,10,0,0,0,0,0,0,0,0,0,0,0,0,5,0,0,0,0,0,0,0,0,0,0,0,0,1.428,3,10,0 0,1.86,0,0,0,0,0,0,0,0.93,0,0,0,0,0,0,0,0,0,0,0,0,0,0,2.8,1.86,1.86,0.93,0.93,0.93,0.93,0.93,0,0.93,0.93,0.93,0.93,0,0.93,0.93,0,0.93,0.93,0,0.93,0,0,0,0,0.457,0.152,0,0,0,2.097,13,86,0 0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0.47,0,0.47,0,0,0,0.47,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0.074,0.298,0,0,0.074,4.268,28,286,0 0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,4.16,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0.74,0,0,1.625,6,13,0 0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,2.27,0,0,0,0,0,2.27,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1.052,2,20,0 0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,2.2,4,11,0 0.66,0,0,0,0,0,0,0,0.66,0.66,0,2,0,0,0,0,0,0,2,0,1.33,0,0,0,0.66,0.66,0,1.33,0,0,0,0,0,0,0,0,0,0,0.66,0,0,0,0,0,0,0,0,0,0,0.35,0,0,0,0,2.529,11,86,0 0,0,0,0,0,0,0,0,0,1.02,0,0,0,0,0,0,0,0,0,0,0,0,0,0,2.04,1.02,2.04,2.04,0,0,0,0,0,0,0,0,1.02,0,0,0,0,0,1.02,0,2.04,0,0,0,0,0.323,0,0,0,0,2.682,13,110,0 0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0.68,0,0.34,0,0,0,5.86,2.75,1.37,0.68,0.68,0.68,0.68,0.68,0,0.68,0.68,0.68,0.68,0,0.34,0.68,0,0,0.68,0,0.68,0,0,0,0.11,0.276,0.11,0.055,0.055,0,2.87,15,244,0 0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1.92,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1.92,0,0,0,0,0,0,3.84,0,0,0,0,0,0,0,0,0,0.26,0,0,2.2,10,44,0 0,0,3.84,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,3.84,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,3.84,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1.727,5,19,0 0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,2.38,0,0,0,2.38,0,0,4.76,0,0,0,0,2.38,0,2.38,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0.749,0,0.374,0,0,2.85,15,57,0 2.77,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1.38,0,0,0,1.38,0,0,0,0,0,0,0.213,0,0,1.75,6,49,0 0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1.733,9,26,0 0,0,0,0,0,0,0,0,0,0,0,0.86,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0.86,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1.592,8,43,0 0,0,0.17,0,0.17,0,0,0.17,0.08,0,0.08,0.25,0,0,0,0.08,0,0,0.94,0,0.6,0,0.25,0,1.89,0.43,0,0.08,0,0.25,0.34,0,0,0,0.25,0,0.17,0,0,0,0,0,0,0,0,0,0,0.08,0,0.127,0,0.051,0.038,0,1.838,24,605,0 1.05,0,0,0,1.05,0,0,0,0,0,0,2.1,0,0,0,0,0,0,4.21,0,2.1,0,0,0,1.05,1.05,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1.05,0,0,0,0,0,0,0,0.171,0,0,0,0,2.541,12,61,0 0,0,0,0,0.59,0,0,0,0,0,0,0.59,0,0,0,0,0,0,0,0,0,0,0,0,1.79,1.49,0,0.59,0,0.89,0,0,0,0,0.29,0,0,0,0,0,0,0,0,0.29,0,0,0,0,0,0.141,0,0,0,0,1.87,24,174,0 0,0,0,0,0,0,0,0,0.27,0,0,0.82,0.27,0,0,0,1.64,0,1.36,0,0.54,0,0,0,0.27,0,0,0,0,0,0,0,0,0,0,0.54,0.27,0,0,0,0,0,0,0,0,0,0,0,0,0.09,0,0.045,0,0,1.465,8,85,0 0,0,0,0,0,0.8,0,0,0,0,0,1.61,0,0,0,0,0,0,0.8,0,0.8,0,0,0,0.8,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0.417,0,0.139,0,0,1.411,5,24,0 0,0,0,0,1.69,0,0,0,0,0,0,1.69,0,0,0,0,0,0,1.69,0,1.69,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1.69,0,0,0,0,0,0,0.552,0,0,1.461,4,19,0 0,0,0,0,0,0,0,0,0,0,0,1.6,0,0,0,0,0,0,0,0,0,0,0,0,9.62,0,0.53,0,0,0,0,0,2.13,0,0,0,1.06,0,1.6,0,0,0.53,1.06,0,1.06,0,0,0,0.425,0,0.17,0,0,0,2.567,15,172,0 0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0.93,0,0.46,0,0,0,4.2,2.8,1.4,0.46,0.46,0.46,0.46,0.46,0,0.46,0.46,0.46,0.46,0,0,0.46,0,0,0.46,0,0.46,0,0,0,0.151,0.227,0.075,0.075,0.075,0,2.482,12,139,0 0.35,0,0,0,1.41,0,0,0,0,0,0,1.76,0,0,0,0,0.35,0,0,0,0,0,0,0,1.06,1.06,0,0.7,0,0,0.35,0,0,0,0.7,0,1.06,0,0.7,0,0,0,0,1.41,0,0,0,0.35,0,0.104,0,0,0,0,2.108,24,213,0 0,0,0,0,0,2.94,0,0,0,0,0,0,0,0,0,0,0,0,2.94,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,1,5,0 0.68,0,0,0,0,0,0,0,0,0,0,0.68,0,0,0,0.68,0,0,5.47,0,0,0,0,0,0.68,0,0.68,0,0,0,0,0,0,0,0,0.68,0,0,0,0,0,0,0,0,0.68,0,0,0,0,0.138,0,0,0,0,1.1,3,22,0 0,0,0,0,0.59,0,0,0,0,1.18,0,0.59,0,0,0,0,0,0,1.77,0,0,0,0,0,0.59,0.59,0,1.18,0,0,0,0,0.59,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0.215,0,0.107,0,0,2.741,11,85,0 0,0.55,0,0,0,0,0,0,0,0,0,1.67,0,0,0,0,0,0,2.79,0,1.67,0,0,0,0,0,0,0,0,0,0,0,0.55,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0.083,0,0,0,0,1.392,4,39,0 0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1.098,0,0,0,2.375,5,19,0 0,0,0,0,0,0,0,0,1.81,0,0,0,0,0,0,0,0,0,7.27,0,1.81,0,0,0,0,0,1.81,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0.316,0,0,0,0,1.125,2,9,0 0,0,0.16,0,0.83,0,0.16,0,0.16,0,0,0.66,0,0.66,0,0,0.16,0,0,0,0.16,0,0,0,3,0.83,0.33,0.5,0.16,0.16,0.5,0.16,0,0.16,0.5,0.16,0.5,0,0.16,0.16,0,0.66,0.33,0.16,0,0,0,0,0,0.162,0.04,0.02,0,0.02,2.604,28,758,0 0.33,0.33,0.99,0,0,0.66,0,0,0,0,0,0.33,0,0,0,0,0,0,2.65,0,0.33,0,0,0,1.99,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0.33,0,0,0,0.33,0,0,0,0,0,0,0.051,0,0,1.786,28,134,0 0,0,0,0,0,0,0,0.08,0,0,0,0.08,0,0,0,0,0.08,0,0,0,0,0,0,0,0.08,0.08,0.08,0,0,0,0,0,0,0,0,0.42,0,0,0,0,0.08,0,0,0,0,0,0,0.34,0.081,0.451,0,0,0,0,1.833,18,935,0 0,0,0.2,0,0.6,0.2,0,0,0.1,0,0,0.5,0,0,0,0,0.1,0,0.2,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0.1,0,0,0,0,0,0,0,0,0,0,0,0,0.049,0,0,0,0,1.133,10,263,0 0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1.7,0,0.85,0,0,0,0.85,0,0,0,0,0,0,0,0.85,0,0,0,0,0,0,0,0,0.85,0,0.85,0,0,0,0,0,0,0.138,0,0,0,1.228,4,43,0 0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,16.66,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1.25,2,5,0 0,0,0.23,0,0.92,0,0,0,0.23,0,0,0.92,0,0.92,0,0,0.23,0,0,0,0.23,0,0,0,0.23,0,0,0.23,0,0,0.23,0,0,0,0.23,0,0.23,0,0,0,0,0.92,0,0,0,0,0,0,0,0.13,0.026,0.026,0,0.026,2.222,23,480,0 0,0,0.33,0,0.08,0,0,0.16,0,0,0,1,0.08,0,0,0,0.25,0,0.16,0,0,0,0,0,2.68,0,0,0,0,0,0,0,0.08,0,0,0.08,0.08,0,0,0,0,0.25,0,0,0.16,0,0,0,0.134,0.089,0,0,0,0,2.432,24,557,0 0,0,0,0,0,0,0,0,0,0.54,0,0,0,0,0,0,0,0,1.62,0,0,0,0,0,1.62,1.08,1.08,1.62,0.54,0.54,0.54,0.54,0,0.54,0.54,0.54,0.54,0,0,0.54,0,0,0.54,0,0.54,0,0,0,0,0.559,0,0,0,0,3.039,13,155,0 0,0,0,0,0,0,0,0,0,0,0,3.03,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0.5,0,0,1.538,8,20,0 0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,16.66,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,8.33,0,0,0,0,0,0,0,0,0,3.714,16,26,0 0,0,0,0,0,0,0,0,0,2.56,0,0,0,0,1.28,0,0,0,0,0,0,0,0,0,3.84,3.84,0,0,0,0,0,0,2.56,0,0,0,1.28,0,0,0,0,0,1.28,0,0,0,0,0,0,0.194,0.194,0,0,0,3.631,17,69,0 0,0,0,0,0,0,0,0,0,2.56,0,0,0,0,1.28,0,0,0,0,0,0,0,0,0,3.84,3.84,0,0,0,0,0,0,2.56,0,0,0,1.28,0,0,0,0,0,1.28,0,0,0,0,0,0,0.194,0.194,0,0,0,3.631,17,69,0 0,0,0,0,0,0,0,0,0,0,0,0.89,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0.89,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1.583,8,38,0 0,0,0,0,0,0,0,0,0,4.34,0,2.17,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,1,7,0 0,0,0.23,0,0.46,0,0,0,0.23,0,0,0,0,1.39,0,0,0.23,0,0,0,0.69,0,0,0,0.46,0,0,0,0,0,0,0,0,0,0,0,0.23,0,0,0,0,1.86,0,0,0,0,0,0,0,0.113,0,0.09,0,0.203,2.43,121,666,0 0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,20,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,1,5,0 0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,16.66,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,4.333,11,13,0 0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1.16,0,0,0,0,0,0,0,1.16,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1.16,0,0,0,0,0,0,1.458,0,0,1.066,2,16,0 0.08,0,0,0,0.08,0,0,0,0,0.08,0,0,0.08,0,0,0,0.08,0,0.08,0,0.08,0,0,0,0.16,0,0,0,0,0,0,0,0.16,0,0.24,0.16,0.08,0,0,0,0,0,0,0.24,0,0,0,0,0,0.085,0,0,0,0.007,4.858,60,2026,0 0.09,0,0.09,0,0,0.09,0,0.09,0.87,0,0,0.29,0,0,0,0,0,0,0.38,0,0.19,0,0,0,0.58,0.68,0.09,0,0,0,0,0,0.29,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0.173,0.173,0.053,0,0.026,0,3.704,48,726,0 0,0,0.09,0,0.09,0,0,0.55,0,0.09,0,0.73,0.09,0,0,0,0.55,0,0.09,0,0,0,0.36,0.09,3.48,0,0,0,0,0,0.09,0,0,0,0,0.09,0.09,0,0,0,0,0,0,0.55,0,0,0,0,0.012,0.1,0,0,0.1,0,2.188,22,510,0 0.05,0,0.15,0,0.05,0.05,0,0,0.52,0,0,0.15,0,0,0.05,0,0,0.05,0.31,0,0.15,0,0,0,0.78,0.83,0.05,0,0,0,0,0,0.47,0,0,0,0,0,0,0,0,0,0.05,0.1,0.1,0,0,0,0.223,0.162,0.084,0,0.015,0,2.725,38,1150,0 0,0.24,0,0,0.24,0,0,0.24,0,0.49,0,0,0,1.49,0,0,0,0,0.99,0,0,0,0,0,0.49,0,0.24,0,0,0,0.24,0,0,0,0.24,0,0.49,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0.163,0,9.876,235,1116,0 0,0,0.29,0,0.59,0,0,0,0.29,0,0,0,0,1.79,0,0,0.29,0,0,0,0.59,0,0,0,0.59,0,0,0,0,0,0,0,0,0,0,0,0.29,0,0,0,0,2.69,0,0,0,0,0,0,0,0.052,0,0.078,0,0.235,3.153,121,618,0 0,0,0,0,0,0,0,0,0,0.46,0,1.84,0,0,0,0,0,0.46,1.38,0,0.46,0,0,0,1.84,1.38,0.92,0.92,0.46,0.46,0.92,1.38,0,1.38,0.92,0.46,0,0,0,0.92,0,1.38,0,0,0.46,0,0,0.92,0,0.362,0,0,0,0,4.153,34,162,0 0.67,0,0.22,0,0.45,0,0,0,0,0.22,0.45,1.12,0.22,0.22,0,0,0,0,1.12,0,1.35,0,0,0,2.03,0,0,0.45,0,0,0.22,0,0,0,0.45,0,0.22,0,0,0,0,0,0,0,0,0,0,0,0,0.072,0,0.072,0.072,0.036,3.242,38,347,0 0,0.33,0.16,0,1.15,0.33,0.16,0,0,1.32,0,0.16,0,0.16,0.16,0.99,0,0,2.8,0,2.31,0,0.33,0,0,0,0.16,0,0,0,0,0,0,0,0,0,0.49,0,0,0,0,0,0,0,0.33,0,0,0,0,0.126,0,0.076,0.076,0.025,3.401,37,364,0 0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,4.76,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1.75,4,14,0 0.53,0,0,0,0.88,0,0,0,0,0,0,0.71,0.35,0,0,0,0,0,1.06,0,1.06,0,0,0,2.13,1.06,0.17,0.17,0.17,0.17,0.17,0.17,0,0.17,0.17,0.17,0.53,0,0,0.17,0,0.71,0.17,0,0.53,0,0,0.35,0.052,0.131,0.026,0.026,0,0,2.941,34,353,0 0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,20,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1.25,2,5,0 0,0,0,0,0,0,0,0.79,0,0,0,0.79,0,0,0,0,0,0,0.39,0,0,0,0,0,0,0,0,0,0.39,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1.309,8,55,0 0.29,0,0.51,0,1.62,0,0,0,0,0,0,0.73,0.14,0,0,0.07,0.81,0,1.54,0,0.07,0,0,0,0.95,0,0,0,0,0.07,0,0,0,0,0,0.14,0.07,0.07,0,0,0,0.07,0,0,0.07,0,0,0,0,0.032,0,0,0.01,0,1.588,51,243,0 0,0,0,0,0,0,0,0,0,1.05,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1.05,1.05,0,2.1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0.563,0,0,0,0,3.571,11,75,0 0,0,0,0,0,0,0,0,0,1.72,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1.72,1.72,0,3.44,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0.588,0,0.294,0,0,3.714,11,78,0 0.26,0,0.26,0,0,0,0,0,0,0,0,0.26,0.52,0,0,0,0,0,1.56,0,0,0,0,0,0.78,0.26,0,0,0,0,0,0,0,0,0,0,0,0,0,0.26,0,0,0,0,0,0,0,0,0.123,0.041,0,0.041,0,0,1.517,4,44,0 0.6,0,0,0,0.91,0,0,0,0,0,0,0.91,0.6,0,0,0,0,0,1.21,0,1.82,0,0,0,0.3,0.3,0,0,0,0,0,0,0,0,0,0,0.6,0,0,0,0,0.91,0,0,0.3,0,0,0.3,0.088,0.044,0,0.044,0,0,2.222,22,120,0 0,0,0,0,0,0,0,0,0,0.81,0,0,0,0,0,0,0,0,0.81,0,0.81,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,2.43,0,0,0,3.25,0,0,0,0,2.43,0,0,0,0.142,0,0.285,0,0,2.136,7,47,0 0,0,0.76,0,0.15,0,0,0,0,0.15,0,1.07,0,0,0,0,0,0,1.99,0,0.46,0,0,0,0.92,0.15,0,0.3,0,0,0,0,0,0,0,0,0.15,0,0,0,0,0,0,0,0,0,0,0,0,0.264,0,0,0,0.026,2.891,28,347,0 0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1.69,0,1.69,0,0,0,0,0,0,3.38,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1.69,0,0,0,0.296,0,0,0,0,3.315,13,63,0 0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1.29,0,0,0,0,0,1.29,1.29,1.29,0,0,0,1.29,0,0,0,0,0,0,0,1.29,0,0,0,0,0,1.29,0,0,0,0,0.234,0,0,0,0,1.857,8,39,0 0,0,0,0,0,0,0,0,0,1.01,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1.01,0,0,0,0,0,1.01,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0.312,0,0,0,4.03,28,133,0 0,0,0,0,0,0,3.07,0,0,0,0,0,0,0,0,0,0,0,3.07,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0.251,0,0,3.214,12,45,0 1.04,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1.04,0,0,0,0,0,0,0,3.12,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1.04,0,0,0,0,0,0,0,0.191,0,0,0,0,1,1,17,0 0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0.6,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1.8,0,0,0,0,0,0,0,0,0,0.6,0,0,0,0.088,0,0,0,0,1.607,4,45,0 0,0,0,0,0,0,0,0,0,0,0,3.57,0,0,0,0,0,0,0,0,0,0,0,0,3.57,3.57,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1.545,3,17,0 0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0.09,0,0.19,0,0,0,0.09,0,0,0,0,0,0,0.09,0,0,0,0,0,0,0,0,0,0.046,0.341,0,0,0.031,4.413,28,1399,0 0,0,0,0,0,0.32,0,0.65,0,0,0,1.62,0,0.32,0,0,0,0.32,0,0,0,0,0,0,0.32,0.32,0,0.32,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0.081,0,0,0,0,4.093,87,262,0 0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0.84,0,0,0,0,0,0,2.54,2.54,0,1.69,0,0,0,0,0,0,1.69,0,0,0,0.84,0,0,0,0,0,0.84,0,0,0.84,0,0.123,0,0.123,0,0.371,5.515,34,182,0 0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1.66,0,0,0,0,0,0,1.66,1.66,0,3.33,0,0,0,0,0,0,3.33,0,0,0,0,0,0,0,0,0,0,0,0,1.66,0,0,0,0,0,0.53,4.052,22,77,0 0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1.333,3,8,0 0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1.666,3,10,0 0,0,0,0,0.78,0,0,0,0.78,0.78,0,0.78,0,0,0,0.78,0,0,1.56,0,0,0,0,0,0.78,0.78,0,1.56,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0.544,0,0,0.136,0,2.62,11,76,0 0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,25,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,1,4,0 0,0,0.47,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1.42,0,0.94,0,0,0,0.47,0.47,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0.94,0,0,0,0,0.079,0,0,0,0,2.315,17,88,0 0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1.85,0,0,0,0,0,3.7,1.85,1.85,1.85,1.85,1.85,1.85,1.85,0,1.85,1.85,1.85,0,0,0,1.85,0,0,0,0,0,0,0,0,0,0.6,0,0,0,0,2.526,11,48,0 0,0,0,0,4.76,0,0,0,0,0,0,4.76,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,4.76,0,0,0,0,0,0,0,0,0,0,0,0,7.14,0,0,0,0,0,0,0,0,0,0,0,0,1.23,3,16,0 0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,5.71,2.85,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1.25,2,10,0 0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,2.22,0,0,4.44,2.22,0,0,0,0,0,4.44,0,0,0,0,0,0,2.22,0,0,0,0,0,0,0,0,0,0,0,0,3.578,20,68,0 0.09,0.09,0.36,0,0.91,0.18,0,0,0,0,0,3.66,0.09,0,0,0,0.82,0,0.82,0,0.45,0,0,0,1.37,0.09,0,0,0,0.82,0,0,0,0,0,0.18,0,0,0.09,0,0,0,0,0,0,0,0,0,0.027,0,0,0,0,0,1.263,4,192,0 0,0,1.96,0,0,0,0,0,0,0,0,3.92,0,0,0,0,0,0,0,0,0,0,0,0,1.96,3.92,0,0,0,1.96,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0.476,0,0,0,0,2.318,25,51,0 0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,11.11,0,11.11,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,1,5,0 0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,4.34,10.86,0,0,0,2.17,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1.798,0,0,2.615,13,34,0 0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,8.69,0,0,0,0,0,0,0,0,0,0,0,4.34,0,0,0,0,1.44,1.44,0,1.44,0,0,0,0,0,0.222,0,0,0,5.357,28,150,0 0.08,0.17,0.17,0,0.8,0.08,0,0.26,0,0,0,3.39,0.17,0,0,0.08,0,0,0,0,0,0,0,0,2.68,0,0,0,0,0,0,0,0,0,0,0.35,0.08,0,0,0,0,0.08,0.08,0,0,0,0,0,0.023,0.046,0,0,0.023,0,2.658,57,436,0 0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,3.84,0,0,0,0,0,0,0,0,0,3.84,0,0,0,0,0,3.84,0,0,0,0,0,0,3.84,0,0,0,0,0,0,0,0,0,0,0,0.751,2.333,13,21,0 0,0,0.69,0,0,0,0,0,0,0,0,1.39,0,0,0,0,0,0,0,0,0,0,0,0,2.79,0,0,0,0,0,0,0,0.69,0,0,0,0,0,0,0,0,0,0,1.39,0,0,0,0,0,0,0,0,0,0,1.268,4,52,0 0,0,0,0,0,0,0,0.82,0,0,0,0.82,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0.41,0,0,0,0,0,0,0,0.41,0,0,0,0,0,0,0,0.41,0,0,0.41,0,0,0,0,0,0,1.394,12,53,0 0,0,0,0,0.31,0,0.31,0,0.31,0,0.31,0.31,0,0,0,0,0,0.31,0.63,0,0.63,0,0,0,0,0,0.95,0,0,0,0,0.31,0,0.63,0,0,0.31,0,0,0,0,0,0,0,0.63,0,0,0,0,0.255,0.102,0,0,0.255,3.547,46,259,0 0.07,0.07,0.07,0,0.14,0,0,0.43,0,0,0.14,1.43,0.07,0,0,0,0.93,0,0,0,0,0,0,0,4.3,0,0,0,0,0.07,0,0,0,0,0,0.43,0.14,0,0,0,0,0,0,0,0,0,0,0.14,0.056,0.094,0,0,0.028,0,2.394,24,881,0 0,0,0,0,0,0,0,0,0,0.72,0,0.72,0,0,0,0,0,0,4.37,0,0,0,0,0,1.45,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0.107,0,0,0,1.48,9,37,0 0,0,0.32,0,0,0,0.32,0,0.32,0,0,0.65,0,0,0,0,0,0.32,0.98,0,2.63,0,0,0,0,0,0.32,0,0,0,0,0,0,0,0.98,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0.128,5.633,118,338,0 0.9,0,0.9,0,0,0,0,0,0,0,0.9,0,0,0,0,0,0,0.9,0.9,0,0,0,0,0,1.81,1.81,0,0.9,0,0.9,0.9,0,0,0,0.9,0.9,0,0,0,0,0,0,0,0,0,0,0,0,0,0.112,0,0.225,0,0,1.807,10,47,0 0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,2.7,0,0,0,0,0,0,0,0,0,0,0,0,8.1,0,0,0,0,0,0,0,0,0,0.473,2.25,14,27,0 0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,2.7,0,0,0,0,0,2.7,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0.432,0,0,2,16,60,0 0,0.1,0,0,0,0,0,0.2,0,0,0,0.3,0,0,0,0,0.05,0.05,0.05,0,0,0,0,0,0.3,0.2,0,0.05,0,0.05,0,0,0.05,0,0,0.2,0.41,0,0,0,0,0,0,0.1,0.05,0.2,0,0.35,0,0.141,0,0,0,0,1.997,87,1620,0 0,0,0,0,0,0,0,0,0.6,0,0,0,0,0,0,0,0,0,0.6,0,1.21,0,0,0,3.63,1.21,1.21,0.6,0.6,1.81,0.6,0.6,0,0.6,0.6,0.6,0,0,0,0.6,0,0,0,0,0.6,0,0,0,0,0.132,0,0,0,0,4.536,52,186,0 0,0,0,0,0,0,0,0,0,0,0,0.74,0,0,0,0,0,0.74,1.49,0,0,0,0,0,4.47,2.23,0,0.74,0,0.74,0.74,0,0,0,0.74,0.74,0,0,0,0,0,0,0,0,0,0,0,0,0,0.102,0.204,0.102,0,0.204,2.121,10,87,0 0,0,0.91,0,0,0,0,0,0,0,0,1.83,0,0,0,0,0,0.91,1.83,0,0,0,0,0,1.83,0.91,0,0.91,0,0.91,0.91,0,0,0,0.91,0.91,0,0,0,0,0,0,0,0,0,0,0,0,0,0.232,0,0.116,0,0,1.619,10,68,0 0,0,0,0,0.57,0,0,0,0,0,0,1.71,0,0,0,0,0,0.57,0,0,0,0,0,0,1.71,0.57,0,0.57,0,0.57,0,0,0,0,0.57,0.57,0,0,0,0,0,0,0,0,0,0,0,0,0,0.077,0,0,0,0,1.947,12,111,0 0.22,0,0.22,0,0.45,0,0,0,0.22,0,0,0,0,1.35,0,0,0.22,0,0,0,0.67,0,0,0,0.67,0,0,0,0,0,0,0,0,0,0,0,0.45,0,0,0,0,2.02,0,0,0.22,0,0,0,0,0.042,0,0.063,0,0.232,3.133,121,749,0 0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,10,0,0,0,0,0,0,0,0,0,0,1.4,3,7,0 0,0,0.12,0,0.12,0,0,0.29,0.08,0.04,0,0.8,0.04,0,0,0,0.08,0,0.88,0,0.63,0,0.08,0,1.9,0.5,0,0.08,0,0.12,0.21,0,0,0,0.08,0,0.21,0,0.21,0,0,0,0,0.08,0,0,0,0.04,0.038,0.115,0,0.044,0.051,0,1.664,27,1263,0 0,0,0.24,0,0.49,0,0,0,0.24,0,0,0,0,1.49,0,0,0.24,0,0,0,0.74,0,0,0,0.49,0,0,0,0,0,0,0,0,0,0,0,0.24,0,0,0,0,2.23,0,0,0,0,0,0,0,0.046,0,0.069,0,0.255,2.776,121,622,0 0,0,0,0,0.51,0,0,0,0,0,0,3.09,0,1.03,0,0,0.51,0,0,0,0,0,0,0,1.03,0.51,0,0,0,0.51,0,0,2.06,0,0,0,0,0,0,0,0,0,0,2.57,0,0,0,0,0,0,0,0,0,0,1.586,6,92,0 0,0,1.5,0,0,0.75,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0.75,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0.116,0,0,0,0,1.833,8,22,0 0,0,1,0,1.5,0,0,0,0,1,0.5,2,0,0,0,0,0,0,6.5,0,3,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0.145,0,0,1.342,14,51,0 0,0,0.77,0,0,0,0,0,0,0,0,0.77,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0.77,0,0,0,2.32,0,0,0,0,0,0,0,0,0,0,0.77,0,0.102,0,0.102,0,0,4.771,26,167,0 0,0,0.29,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0.29,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0.29,1.17,0,0,0,0,0,0.58,0,0.29,0.29,0,0,0,0,0.178,0,0.044,0,0,1.666,10,180,0 0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1.222,2,11,0 0.01,0.01,0.13,0,0.13,0.01,0,0,0.01,0.13,0.03,0.45,0.03,0.07,0,0.11,0.53,0.07,0.07,0,0.03,0,0.01,0,0,0,0,0,0.01,0,0,0,1.57,0,0,0.11,0.86,0,0,0.03,0,0.03,0.03,0.01,0.01,0.23,0,0.15,0.008,0.111,0,0.002,0,0.01,2.106,58,3027,0 0,0,0,0,0,0,0,0,0,0,0,0.59,0,0,0,0,0,0,2.38,0,1.19,0,0,0,1.19,1.19,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0.103,0,0,0,0,3.086,55,142,0 0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,33.33,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,1,3,0 0,0,0.78,0,0,0,0,0,0,0,0,1.57,0,0,0,0,0,0,3.14,0,0,0,0,0,0,0,0,1.57,0,0,0,0,0,0,0,0,0,0,0,0,0,0.78,0,0,0,0.78,0,0,0,0.437,0,0.087,0,0,2.812,13,90,0 0,0.44,0,0,0,0,0,0,0,0.29,0,0.29,0,0,0,0,0.14,0,0,0,0.29,0,0,0,0.44,0,0,0,0,0.89,0,0,0,0,0,0,0.89,0,0,0,0.59,0,0.14,0,0,0.89,0,0.44,0.101,0.135,0.016,0,0,0,2.297,46,680,0 0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,1,1,0 0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1.888,5,17,0 0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1.72,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1.72,0,0,0,0,0,0,3.44,0,0,0,0,0,0,0,0,0,0.25,0,0,2.619,9,55,0 0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1.75,3,7,0 0,0,0,0,0.57,0,0,0,0,0,0,1.72,0,0,0,0,0,0.57,0,0,0,0,0,0,1.72,0.57,0,0.57,0,0.57,0,0,0,0,0.57,0.57,0,0,0,0,0,0,0,0,0,0,0,0,0,0.077,0,0,0,0,1.964,12,110,0 0,0,0,0,0,0,0,0,0,0,0,4.54,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,4.54,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,2,5,16,0 0,0,0,0,0,0,0,0,0,0,0,0.99,0,0,0,0.99,0,0,2.97,0,1.98,0,0,0,0.99,0.99,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0.262,0,0,1.565,14,36,0 0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1.63,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1.63,0,0,0,0,0,0,0,0,0,1.666,7,25,0 0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,8.33,8.33,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1.333,2,4,0 0,0,0,0,0,0,0,0,0,0,0,0.72,0,0,0,0,0,0,1.45,0,2.18,0,0,0,1.45,0.72,1.45,0.72,0.72,0.72,0.72,0.72,0,0.72,0.72,0.72,0.72,0,0.72,0.72,0,0,0.72,0,0.72,0,0,0,0,0.367,0,0,0,0,1.897,12,74,0 0,0,0,0,0,0,0,0,0,0,0,0.58,0.58,0,0,0,0,0,1.17,0,2.35,0,0,0,1.17,0.58,1.17,0.58,0.58,0.58,0.58,0.58,0,0.58,0.58,0.58,0.58,0,0.58,0.58,0,0,0.58,0.58,0.58,0,0,0,0,0.301,0,0,0,0,1.76,12,81,0 0,0,1.47,0,0,0,0,0,0,0,0,0,0.73,0,0,0,0,0,3.67,0,0.73,0,0,0,1.47,0.73,0.73,0.73,1.47,0.73,0.73,0.73,0,0.73,0.73,0.73,0.73,0,0,0.73,0,0,0.73,0,0,0,0,0,0,0.363,0.121,0,0,0,2.171,12,76,0 0,0,0,0,0,0,0,0,0,1.41,0,0,1.41,0,0,0,0,0,1.41,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0.7,0,0,0,0,0.246,0,0,0,0,1.56,6,39,0 0,0,2.5,0,0,0,0,0,0,0,0,0,2.5,0,0,0,0,0,2.5,0,2.5,0,0,0,0,0,0,0,2.5,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1.222,3,11,0 1.04,0,0.52,0,0.52,0,0,0,0,0,0,0,0,0,0,0,0,0,2.09,0,0.52,0,0,0,2.09,2.61,1.04,0.52,0.52,0.52,0.52,0.52,0,0.52,0.52,0.52,0,0,0,0.52,0,0,0,0,1.04,0,0,0,0,0.309,0,0.309,0,0,3.973,34,151,0 0,0,0.66,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0.66,0,0,0,0,0,2,2.66,0,0.66,0,0,0,0,0,0,0.66,0,1.33,0,0.66,0,0,0,0.66,0,0,0,0,0,0,0.104,0.209,0.104,0,0,2.152,17,127,0 0,0,1.29,0,0,0,0,0,0,1.29,0,1.29,0,0,0,0,0,0,2.59,0,0,0,0,0,2.59,2.59,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0.22,0,0,0,0,1.35,4,27,0 0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,1,3,0 0,0,0,0,0,0,0,0,0,0,0,0.33,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0.67,0,0,0,2.71,0,0.67,0,0,0,0,0,0.67,0,0,0,0,4.4,0,0,0,0,0,0,0,0,0,0.555,3,14,348,0 0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,16.66,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,1,6,0 0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,25,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,1,4,0 0,0,0.4,0,0,0,0,0,0,0,0,0.4,0,0,0,0,0,0,0,0,0.4,0,0,0,13.93,0.81,0,0,0,0,0,0,0,0,0,0,0.4,0,0,0,0,0,0,0,0,0,0,0,2.053,1.932,0.06,0,0,0,6.113,20,593,0 0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,2.01,0,0.5,0,0,0,4.02,2.01,1,0.5,0.5,0.5,0.5,0.5,0,0.5,0.5,0.5,0.5,0,0.5,0.5,0,0,0.5,0,0.5,0,0,0,0,0.176,0.088,0,0,0,2.319,12,109,0 0,0,0,0,0,0,0,0,0,0.37,0,0.75,0,0,0,0,0,0,2.63,0,0.75,0,0,0,0,0,0.37,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0.066,0,0,0,0,1.433,5,86,0 0,0,0.28,0,1.73,0,0,0,0,0,0,0.28,0.57,0.28,0,0,0,0,1.15,0,0.57,0,0,0,0.28,0,0.57,0,0,0.28,0,0,0,0,0,0,0,0,0,0,0,0.28,0,0.28,0.57,0,0,0,0,0.051,0,0.103,0,0,1.411,4,24,0 2.77,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1.1,2,11,0 0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,7.69,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1.408,0,0,0,0,0,2.6,6,13,0 0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,6.66,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1.204,0,0,0,0,0,1.285,2,9,0 0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,3.96,2.97,1.98,2.97,0.99,0.99,0.99,0.99,0,0.99,0.99,0.99,0,0,0,0.99,0,0,0.99,0,0.99,0.99,0,0,0,0.479,0,0.239,0,0,2.688,13,121,0 0,0,0,0,0,0,0,0,0.27,0,0,0.27,0,1.36,0,0,0.27,0,0.81,0,0.54,0,0,0,0.27,0,0,0,0,0,0,0,0,0,0.27,0,0,0,0,0,0,1.09,0,0,0,0,1.91,0,0,0,0,0,0,0.23,2.521,31,517,0 0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,12.5,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1.123,0,0,2.6,16,26,0 0.48,0,0,0,0,0,0,0,0,0,0,0.96,0,0,0,0,0,0.48,0.96,0,0,0,0,0,2.88,0.96,0.96,0.96,0.48,0.96,0.96,0.48,0,0.48,0.96,0.96,0,0,0,0.48,0,0,0,0,0.48,0,0,0,0,0.276,0,0.138,0,0,1.986,11,147,0 0,0,0,0,0,0,0,0,0,0,0,3.33,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,1,4,0 0,0,0,0,0,0,0,0,0,2.32,0,0,0,0,0,0,0,0,0,0,0,0,0,0,2.32,2.32,0,4.65,0,2.32,0,0,0,0,4.65,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0.453,0,0,0,0,11.687,75,187,0 0.43,0,0.43,0,0,0.21,0,0,0,0.21,0,0.21,0.21,0,0,0,0,0,1.08,0,0.43,0,0,0,0.43,0.43,0,0.43,0,0.21,0,0,0,0,0.43,0,0,0,0,0.21,0,0,0,0,0,0,0.65,0,0.034,0.238,0.136,0,0,0,3.372,75,344,0 0,0,0.93,0,0.93,0,0,0,0,0,0,0,0,0,0,0.93,0,0,2.8,0,0,0,0,0,0,0.93,0,0,0.93,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0.93,0,0,0,0,0,0,1.771,5,62,0 0.42,0,0,0,0,0,0,0,0,0,0,0,0.85,0,0,0,0,0,4.25,0,0.85,0,0,0,0.42,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0.374,0,0,0.124,0,1.772,18,78,0 0,0,0.11,0,0.11,0,0,0.11,0,0,0,0,0.11,0.23,0,0,0.11,0,0,0,0,0,0.11,0,3.45,0,0,0,0,0,0,0,0,0,0,0,0.11,0,0,0,0,0,0,0,0,0,0,0,0.047,0.157,0,0,0.078,0,2.351,28,508,0 0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,6.75,0,1.35,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1.35,0,0,0,0,0,0,0,0,0,1.913,6,44,0 0.39,0,0,0,0,0,0,0,0,0.39,0,0,0,0,0,0,0,0,2.39,0,0,0,0,0,5.57,1.59,1.19,0.39,0.39,1.19,0.39,0.39,0,0.39,0.39,0.39,0.39,0,0.79,0.39,0,0,0.39,0,0.39,0,0,0,0,0.104,0.052,0,0,0.052,3.153,57,246,0 0,0,0.15,0,0.3,0,0,0.15,0.15,0,0.15,2.76,0,0,0,0,0,0.46,1.69,0,0,0,0,0,0.46,0.15,0,0,0,0,0,0,0.15,0,0,0.15,0.15,0,0,0,0,0,0,0.15,0,0,0,0,0.023,0.023,0,0,0,0,2.677,58,415,0 0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1.08,0,0,0,0,0,7.6,2.17,2.17,1.08,1.08,1.08,1.08,1.08,0,1.08,1.08,1.08,1.08,0,0,1.08,0,0,1.08,0,0,0,0,0,0,0.364,0.182,0,0,0,2.421,13,92,0 0,2.46,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1.23,1.23,0,1.23,0,0,0,0,0,3.7,2.46,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1.23,0,0,0,0,0.392,0,0,0,0,2.142,10,75,0 0,0,0,0,0,0,0,0,0,0,0,2.4,0,0,0,0,0,0,1.2,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1.2,0,0,0,0,0,0,2.4,0,0,0,0,0,0,0,0.166,0,0,0,0,2.2,22,55,0 0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,2.35,0,0,0,0,0,1.17,0,1.17,2.35,0,0,0,0,1.17,0,1.17,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0.61,0,0.203,0,0,2.541,15,61,0 0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,4.16,0,0,0,0,0,0,0,4.16,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,2.25,4,18,0 0,0,0,0,1.85,0,0,0,0,0,0,0,0,0,0,1.85,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1.85,0,0,0,0,0,0,0,0,0,0,0,0,2.916,7,35,0 0,0,0,0,0,0,0,0,0,0,0,0.32,0,0,0,0,0,0.65,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0.97,0,0,0,0,0,0,0,0,0,0,0.97,0,0.1,0,0,0,0,2.59,69,386,0 0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,2.272,0,0,1.75,7,14,0 0,0,0,0,0,0,0,0.13,0,0.13,0,1.1,0.13,0,0,0,1.24,0,0,0,0,0,0,0,3.17,0,0,0,0,0,0,0,0.69,0,0,0.27,0.41,0,0,0,0,0,0,0,0,0,0,0.13,0.07,0.07,0,0,0,0,2.064,23,322,0 0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,2,0,2,0,0,0,2,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0.337,0,0,0,0.337,2.95,7,59,0 0,0,0,0,0,0,0,0,0,0,0,1.44,0,0,0,0,0.48,0,0,0,0,0,0,0,0.96,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0.058,0,0,0.058,0.058,1.755,9,79,0 0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,2.04,0,0,0,0,0,0,0,0,0,0,0,0,0,2.04,0,2.04,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0.286,0,0,2.434,17,56,0 0,0,3.79,0,0,0,0,0,0,0,0,3.79,0,0,0,0,0,1.26,0,0,0,0,0,0,3.79,2.53,0,1.26,0,1.26,1.26,0,0,0,1.26,1.26,0,0,0,0,0,0,0,0,0,0,0,0,0,0.147,0,0.147,0,0,1.962,10,53,0 0,0,0,0,0.42,0,0,0,0,0,0,0.42,0,0,0,0,0,0,0.42,0,0,0,0,0,0,0,0,0,1.28,0,0,0,0,0,0,0,0.85,0,0,0,0,0.85,0,0,0,0,0,0,0,0,0,0,0,0,2.161,5,294,0 0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1.88,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1.88,0,0,0,0,0,0,1.88,0,0,0,0,0,0,0,0,0,0.277,0,0,3,17,51,0 0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,3.26,0,0.65,0,0,0,0,0,1.3,0,0,0,0,4.57,0,0,0,0,0,0,0,0,0,0.657,3.041,14,219,0 0,0.31,0,0,0,0,0,0.31,0,0,0,0.62,0,0,0,0,0,0.31,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0.62,0,0.31,0,1.24,0,0.31,0,0,1.24,0,0,0,0.088,0.044,0,0,0,3.086,34,250,0 0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,8.33,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,1,2,0 0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1.38,0,0,1.38,0,1.38,0,0,0,2.77,1.38,1.38,1.38,1.38,1.38,1.38,1.38,0,1.38,1.38,1.38,0,0,0,1.38,0,0,0,0,0,0,0,0,0,0.464,0,0,0,0,2.333,11,42,0 0,0,0,0,0,0,0,0,0,2.5,0,0,0,0,0,0,0,0,2.5,0,2.5,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1.416,3,17,0 0.09,0,0.19,0,0.09,0,0,0.39,0,0,0,1.27,0.19,0.09,0,0,0.49,0,0.29,0,0,0,0.29,0,2.74,0,0,0,0,0,0,0,0,0,0,0.29,0.19,0,0,0,0,0,0.09,0.09,0,0,0,0,0.067,0.067,0,0,0.026,0,2.247,18,481,0 0.44,0.22,0.22,0,0.44,0,0,0.22,0,0.22,0,0.44,0,0,0,0,0,0,1.57,0,0,0,0,0,0.44,0.22,1.12,0.22,0.22,0.22,0.22,0.22,0,0.22,0.22,0.22,0.22,0,0,0.22,0,0.22,0.22,0,0.67,0.44,0,0,0.033,0.169,0.033,0.033,0.033,0,2.28,12,203,0 0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,2,0,2,0,0,0,2,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0.342,0,0,0,0.342,2.75,7,55,0 0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,1,5,0 0,0,0,0,0.19,0,0,0,0.09,0,0.09,0.59,0,0,0,0.09,0.39,0,1.77,0,0.98,0,0.09,0,1.57,0.78,0,0,0,0.09,0.19,0,0.09,0,0.19,0.09,0.39,0,0.29,0.09,0,0,0,0.09,0,0,0,0.19,0,0.096,0.027,0.068,0,0,2.059,25,593,0 0,0,0.32,0,0,0,0,0,0,0,0,0,0.32,0,0,0,0,0.65,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0.32,0,0,0,0,0,0,0.055,0.334,0,0.055,0,0.055,1.685,6,59,0 0,0,0.91,0,0,0.45,0,0,0,0,0,0.45,0,0,0,0,0,0.45,2.28,0,1.36,0,0,0,0.45,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0.416,0,0.486,0,0,3.782,31,87,0 0.76,0,0,0,0,0,0,0,0,0,0,0.76,0,0,0,0,0,0,1.52,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0.76,0,0,0.76,0,0,0,0.135,0,0,0,0,0,1.411,5,24,0 0,0.44,0.44,0,0.44,0,0.22,0,0,2.43,1.1,0.44,0,0,0,0,0,1.55,2.88,0,2.21,0,0,0,0,0,0.22,0,0,0,0,0,0,0,0,0,0,0,0,0.22,0,0,0,0,0,0,0,0,0,0.036,0,0.073,0.146,0.036,2.574,22,224,0 0,0,0.29,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0.29,0,0,0,0,0,0,0.29,0,0,0,0.1,0.353,0.05,0,0,0,1.227,4,27,0 0.37,0.18,0.18,0,0.37,0,0,0.18,0,0.18,0,0.55,0,0,0,0,0,0,0.92,0,0,0,0,0,0,0,0.55,0,0,0,0,0,0,0,0,0,0.55,0,0.18,0,0,0.37,0,0,0.74,1.48,0,0,0.116,0.29,0.029,0.029,0.029,0,3.455,24,387,0 0.17,0.11,0.05,0,0.4,0.11,0,0.4,0,0,0,0.34,0.11,0,0,0,0,0,1.15,0,0.57,0,0.05,0,0.52,0,0,0,0,0,0,0,0.23,0,0.17,0,0.63,0,0,0,0,0,0,0.05,0,0,0,0,0.007,0.304,0,0.053,0.03,0,2.548,49,1134,0 0,0,0,0,0.93,0,0,0,0,0,0,0.93,0,0,0,0,0,0,0,0,0,0,0,0,3.73,0,0,0,0,0,0,0,3.73,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1.533,7,46,0 0,0,0,0,0,0,0,0,0,0,0,1.02,0,0,0,0,0,0,0,0,0,0,0,0,3.06,4.08,0,0,0,0,0,0,0,0,0.51,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0.217,0,0,0,0,1.718,12,122,0 0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1.19,0,1.19,0,0,0,1.19,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1.082,0,0,0,0.216,3.478,7,80,0 0,0,0.85,0,0,0,0,0,0,0,0,0.85,0,0,0,0,0,0,2.56,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0.85,0,0,0,0,0.85,0,0,0,0,0,0,0,0.331,0,0,1.842,6,35,0 0,0,0,0,0,0,0,0,0,0,0,3.57,0,0,0,0,1.78,0,0,0,0,0,0,0,1.78,1.78,0,0,0,0,0,0,0,0,0,0,1.78,0,0,0,0,0,0,3.57,0,0,0,0,0,0,0,0,0,0,1.72,11,43,0 0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1.66,0,1.66,0,0,0,1.66,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0.884,0,0,0,0.294,3.368,7,64,0 0,0.19,0,0,0,0,0,0,0,0,0,0.19,0,0,0,0,0,0,0,0,0,0,0,0,0.19,0,0,0,0,0,0,0,2.86,0,0,0.38,0.19,0,0,0,0,0,0,0,0,0,0.19,0.19,0,0.201,0,0,0,0,2.217,9,204,0 0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,8.33,4.16,4.16,4.16,4.16,4.16,4.16,4.16,0,4.16,4.16,4.16,0,0,0,4.16,0,0,0,0,0,0,0,0,0,1.092,0,0,0,0,3.333,11,30,0 0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,2,0,2,0,0,0,2,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0.341,0,0,0,0.341,3.166,7,57,0 0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,2,0,2,0,0,0,2,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0.337,0,0,0,0.337,2.95,7,59,0 0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,1,4,0 0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1.19,0,1.19,0,0,0,1.19,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1.082,0,0,0,0.216,3.478,7,80,0 0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,11.11,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1.5,4,9,0 0,0,0,0,0,0,0,0,0.55,0,0,0,0,0,0,0,0,0.55,1.65,0,1.65,0,0,0,0.55,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0.55,0,0,0.55,0,0,0,0,0,0,0.104,0.314,0,0.052,0,6.894,97,393,0 0,0,0,0,0,0,0,0,0,0.29,0,0,0,0,0,0,0,0,0.58,0,0.58,0,0,0,3.51,2.34,0.87,2.34,0.58,1.17,0.58,0.58,0,0.58,1.17,0.58,0.29,0,0.87,0.58,0,0.87,0.29,0,0.58,0,0,0,0.091,0.637,0.045,0,0,0,3.552,37,373,0 2,0,0,0,0,0,0,0,0,0,2,2,0,0,0,0,0,0,2,0,8,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,5.888,29,53,0 0,0,1.58,0,0,0,0,0,0,0,0,0.79,0,0,0,0,0,0,1.58,0,0,0,0,0,0.79,0.79,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0.149,0,0.149,0,0,1.482,10,43,0 0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,3.33,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1.375,4,11,0 0,0,0,0,0.33,0,0,0,0,0,0,0.33,0,0,0,0.33,0,0.33,0.33,0,0.33,0,0,0,0.99,0.33,0,0.66,0,0.33,0,0,0,0,0.33,0,0,0,0,0,0,0,0,0.33,0,0,0,0,0,0.13,0.043,0,0,0,2.016,19,125,0 0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0.325,0,0,0,0,0,1,1,14,0 0,0,0,0,0,0,0,0,0,0,0,0.24,0,0,0.24,0,0,0,0.49,0,0.49,0,0,0,1.72,1.23,0.24,0.24,0.24,0.24,0.24,0.24,0,0.24,0.24,0.24,0.24,0,0,0.24,0,0,0.24,0,0.24,0,0,0,0,0.312,0.039,0,0.117,0,1.89,13,189,0 0,0,0,0,0,0,0,0,0,0,0,0.73,0,0,0,0,0,0,0,0,0,0,0,0,8.08,5.88,0.73,0.73,0.73,0.73,0.73,0.73,0,0.73,0.73,0.73,0.73,0,0.73,0.73,0,0,0.73,0,0.73,0,0,0,0.388,0.259,0.129,0,0,0,2.666,13,96,0 0,0,0.15,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0.15,0.62,0,0.31,0,0,0,1.56,0.31,0.93,0.15,0.15,0.15,0.15,0.15,0.46,0.15,0.15,0.15,0.31,0,0.31,0.15,0,0,0.31,0,0.31,0,0,0,0.078,0.235,0.052,0,0,0,1.945,12,323,0 0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,3.03,0,0,0,0,0,0,0,3.03,0,0,0,0,0,0,0,0,0,3.03,0,3.03,0,0,6.06,3.03,0,0,0,0,0,0,0,0,0,0,0,2,12,42,0 0.12,0,0.12,0,0,0,0,0,1.11,0,0,0.37,0,0,0,0,0,0,0.49,0,0.24,0,0,0,0.61,0.74,0.12,0,0,0,0,0,0.74,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0.119,0.17,0.034,0,0.034,0,3.237,32,505,0 0,0,0,0,0,0,0,0,0,0.69,0,0,0,0,0,0,0,0,0,0,0.69,0,0,0,0,0,0.69,0,0.69,0,0,0,0.69,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0.228,0.114,0,0,0.114,3.651,28,157,0 0,0,0.52,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1.56,0,0,0,0,0,1.04,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0.18,0,0,0,0,1.5,4,63,0 0,0,0.31,0,0.31,0,0,0,0,1.27,0,0,0,0,0,0,0,0,0.31,0,0,0,0,0,2.87,1.27,1.91,0.63,0.63,0.63,0.63,0.63,0,0.63,0.63,0.63,0.95,0,0.95,0.63,0,0,0.95,0,0.95,0,0,0,0.097,0.534,0.242,0,0.048,0,2.23,13,261,0 0,0.16,0,0,0,0,0,0.16,0.16,0,0,0,0,0,0.16,0,0,0,0.48,0,0.16,0,0,0,0.81,0.48,0.16,0.32,0,0,0,0,0,0,3.4,0,0.16,0,0,0,0,0.48,0,0,0,0.32,0.16,0,0,0.123,0,0,0,0.095,4.438,50,932,0 0.18,0.14,0.25,0,0,0,0,0.07,0,0.14,0.03,0.77,0.07,0.03,0,0,0.03,0.18,0.11,0,0.25,0.07,0,0,0,0,0,0,0.03,0.11,0,0,0.03,0,0,0.37,0.62,0,0,0,0.18,0,0.03,0,0,0.22,0,0.18,0.019,0.414,0,0.004,0,0,2.393,40,1795,0 0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,3.33,0,6.66,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1.3,3,13,0 0.04,0.02,0.14,0,0.25,0.08,0,0.08,0.02,0.12,0,0.27,0,0,0.02,0,0.08,0.23,0.17,0,0.06,0.29,0,0,0,0,0,0.04,0,0,0,0,1.4,0,0,0.12,1.04,0,0,0,0.17,0.04,0,0.06,0.06,0.27,0,0.02,0.046,0.149,0.005,0.014,0,0.002,2.35,46,3006,0 0,0,0,0,0,0.18,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1.12,1.3,0,0,0,0,0,0,0,0,0,0.18,0.93,0,0.18,0,1.3,0,0,0,0,1.49,0,0,0.182,0.339,0.13,0,0,0,3.628,44,479,0 0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,25,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,2,4,6,0 0,0,0,0,0,0,0,0,0,0,0,1.03,0,0,0,0,0,0,3.09,0,0,0,0,0,1.03,0,0,0,0,1.03,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1.03,0,0,0,0,0,0,0,0,0,1.666,7,25,0 0.09,0,0.09,0,0.56,0.09,0,0,0,0.18,0,0.46,0,0.09,0,0,0.37,0,0.56,0,0.65,0,0,0,1.86,0.46,0,0.09,0,0.09,0.28,0,0,0,0.37,0,0.28,0,0.09,0,0,0.28,0,0.18,0,0,0,0,0,0.081,0,0,0,0,1.983,25,601,0 0,0,1.23,0,0,0,0,0,0,0,0,2.46,0,0,0,0,0,2.46,1.23,0,1.23,0,0,0,2.46,1.23,0,1.23,0,1.23,1.23,0,0,0,1.23,1.23,2.46,0,0,0,0,0,0,0,0,0,0,0,0,0.139,0,0.279,0,0,1.736,10,66,0 0,0,0.57,0,0,0,0,0,0,0,0,0.57,0,0,0,0,0,0,0.57,0,0.57,0,0,0,0.57,0,0,0,0,0,0,0,1.15,0,0,0,0,0,0,0,0,0,0,1.73,0,0,0,0,0,0.093,0,0,0,0,1.136,3,25,0 0,0,0,0,0,0,0,0,0,0,0,0,1.08,0,0,0,0,0,2.17,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1.08,0,0,0,3.26,0,0,0,0,3.26,0,0,0,0,0,0,0,0,3.066,10,46,0 0,4.16,0,0,0,0,0,0,0,0,0,4.16,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,4.16,0,0,0,0,0,0,0.709,0,0,2.09,6,23,0 0,0,0.74,0,0,0,0,0,0,0,0,2.22,0,0,0,0,0,0,1.48,0,0,0,0,0,0,0.74,0,0,0,0,0,0,0,0,0,0,0.74,0,0,0,0,0,0,0,0,0,0,2.22,0,0,0,0,0,0,2.595,31,122,0 0,0,0,0,0,0,0,0,0.48,0,0.48,0,0,0,0,0.48,0.48,0,1.44,0,2.88,0,0.96,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0.48,0,0,0,0,0.076,0,0.305,0.381,0,1.884,9,98,0 0,0,0,0,0,0,0,0,0.48,0,0.48,0,0,0,0,0.48,0.48,0,1.44,0,2.88,0,0.96,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0.48,0,0,0,0,0.076,0,0.305,0.381,0,1.884,9,98,0 0,0,0,0,0,0,1.78,0,0,1.78,0,0,0,0,0,1.78,0,1.78,5.35,0,1.78,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,7,35,63,0 0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,5.55,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,1,2,0 0.15,0.31,0,0,0,0,0,0,0,0.63,0.31,0.31,0,0,0,0,0,0.63,0.95,0,0.47,0,0,0,3.34,0.63,0.47,0.15,0.15,0.15,0.15,0.15,0,0.15,0.15,0.15,0.47,0,0.47,0.15,0,0,0.31,0,0.15,0,0,0,0.149,0.199,0.049,0.174,0,0,4.026,100,608,0 0,0,0.43,0,0,0,0,0,0,0,0,0.43,1.29,0,0,0,0,0,1.29,0,0.43,0,0,0,0.86,0,0,0,0,0,0,0,0.43,0,0,0.86,0,0,0,0,0,0,0,0,0,0,0,0,0,0.22,0,0.146,0,0,1.341,6,55,0 0,0.25,0.12,0,0.37,0,0,0.12,0,0.37,0.25,0.37,0.12,0,0,0,0.12,0,0.37,0,0.12,0,0.12,0,2.51,0,0,0,0,0.25,0,0,0.12,0,0,0,0.12,0,0,0,0,0,0,0,0,0,0,0,0.016,0.05,0,0.05,0,0,2.414,25,367,0 0,0,0.61,0,0,0,0,0,0,0,0,0.61,0,0,0,0,0,0,0.61,0,0,0,0,0,5.52,1.22,1.22,0.61,0.61,1.84,0.61,0.61,0,0.61,0.61,0.61,0,0,1.22,0.61,0,0,0,0,0.61,0,0,0,0,0.143,0,0,0,0,3.682,51,151,0 0,2.59,1.29,0,1.29,0,0,0,0,0,0,1.29,0,0,0,0,0,0,2.59,0,0,0,0,0,0,0,1.29,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1.29,0,0,0,0,0,0,0,0,0,1,1,13,0 0.33,0.33,0,0,0,0,0,0,0,0,0,0.33,0,0,0,0,0,0.99,0.33,0,0.66,0,0,0,4.98,0,0,0,0,0,0,0,0,0,0,0,0.33,0,0.66,0,0,0,0,0,0,0,0,0,0.306,0.204,0,0.306,0,0,5.525,100,431,0 0,0,2.41,0,0,0,0,0,0.26,0,0,2.14,0,0,0,0,0,0,0.26,0,1.6,0,0,0,0.26,0.53,0,0,0.26,0,0,0,0.26,0,0,0,0,0,0,0.26,0,0,0,0,0,0,0,0,0,0.339,0,0,0,0,2.36,12,177,0 0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1.48,0,1.48,0,0.74,0,0,0,2.96,0,0,0.74,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0.105,0,0,0.105,0.105,2.555,12,69,0 0.04,0.14,0.29,0,0.04,0.04,0,0.09,0,0.19,0.09,1.04,0,0,0,0,0,0.24,0.09,0,0.04,0,0,0,0.04,0,0,0,0,0.09,0,0,0,0,0,0.09,0.24,0,0,0,0,0,0.04,0,0,0,0,0,0.02,0.16,0.006,0,0,0,2.667,185,1763,0 0,0,0,0,0,0,0,0,0,0,0,7.69,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,2.666,4,16,0 0,0,0,0,0.82,0,0,0,0,0,0,1.65,0,0,0,0,0.82,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0.82,0,0,0,0,0,0,3.3,0,0,0,0,0,0,0,0,0,0,2.06,8,68,0 0.18,0,0.55,0,0.18,0,0,0,0,0,0,0.37,0,0,0,0,0,0,1.49,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0.18,0,0,0,0,0,0,0,0.18,0,0,0,0.031,0.127,0.031,0,0,0,1.428,5,80,0 0,0,0,0,0,0.57,0,0,0,0,0,0,0,0,0,0,0,0,0.57,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0.57,0,0,0,0,0,0,0.57,0,2.31,0,0,0,0,0.089,0.179,0,0.089,0,0,2.204,10,97,0 0.37,0,0.63,0,0.25,0.12,0,0,0,0,0,0.12,0.12,0,0,0,0,0.12,1.51,0,0.25,0,0,0,0,0,0,0,0.12,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0.37,0,0,0,0,0.107,0,0.193,0,0,1.181,4,104,0 0,0,0.1,0,0.1,0,0,0,0,0,0,0.1,0,0.1,0,0,0,0,0,0,0,0,0,0,0.4,0.1,0,0.1,0.2,0.2,0,0.1,0.7,0,0.1,0.1,0,0,0,0.1,0,0,0,0.1,0,0,0,0.6,0,0.096,0,0,0,0.012,2.037,18,913,0 0,0,0,0,1.38,0,0,0,0,0,0,4.16,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,6.94,0,0,0,0,0,0,0,0,0,0,0,0,6.94,0,0,0,0,0,0,0,0.238,0,0,0,0,1.578,4,30,0 0.51,0,0,0,0,0,0,0,0,0,0,0.25,0.51,0,0,0,0,0,2.3,0,1.53,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0.25,0,0,0,0,0,0,0,0.25,0,0,0,0,0.333,0.047,0,0,0,1.196,5,67,0 0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0.67,0,1.35,0,0,0,0.67,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0.087,0,0,0.087,0.087,4.23,24,110,0 0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0.7,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0.191,0,0,0.095,0.095,1.688,11,103,0 0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,9.09,2.27,2.27,2.27,2.27,2.27,2.27,2.27,0,2.27,2.27,2.27,0,0,0,2.27,0,0,0,0,0,0,0,0,0,0.664,0,0,0,0,3.157,11,60,0 0,0,0.74,0,0,0,0,0,0,0,0,2.22,0,0,0,0,0,0,1.48,0,0,0,0,0,0,0.74,0,0,0,0,0,0,0,0,0,0,0.74,0,0,0,0,0,0,0,0,0,0,2.22,0,0,0,0,0,0,2.425,23,114,0 0.12,0,0.12,0,0,0,0,0,1.12,0,0,0.37,0,0,0,0,0,0,0.49,0,0.24,0,0,0,0.62,0.74,0.12,0,0,0,0,0,0.37,0,0,0,0.12,0,0,0,0,0,0,0,0,0,0,0,0.12,0.189,0.034,0,0.034,0,3.302,41,535,0 0.08,0,0.16,0,0,0,0,0,0.82,0,0,0.24,0,0,0,0.08,0,0,0.32,0,0.16,0,0,0,0.49,0.57,0.08,0,0,0,0,0,0.74,0,0,0,0.16,0,0,0,0,0,0,0,0.08,0,0,0,0.221,0.188,0.044,0,0.033,0,2.816,32,628,0 0,0,0,0,0,0,0,0,0,0,0,1.2,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1.2,0,0,0,0,0,0,0,1.2,0,0,0,0,0.202,0,0,0,0,1.533,5,23,0 0.12,0,0.12,0,0,0.06,0,0,0.56,0,0,0.31,0,0,0,0.06,0,0.06,0.25,0,0.18,0,0,0,0.63,0.69,0.06,0,0,0,0,0,0.82,0,0,0,0.63,0,0,0.06,0,0,0,0.06,0,0,0,0,0.187,0.16,0.035,0,0.017,0,2.829,47,815,0 0,0,0,0,0,0,0.49,0.99,0,2.48,0,0.49,0,0,0,0,0,0,0,0,0,0,0,0,3.48,2.48,0.49,0,0,0,0,0,0,0,0,0,1.99,0,0,0,0,0,0,0,0,0,0,0,0.336,0.588,0.168,0,0,0,5.61,42,331,0 0,0,0,0,0,0,0.49,0.99,0,2.48,0,0.49,0,0,0,0,0,0,0,0,0,0,0,0,3.48,2.48,0.49,0,0,0,0,0,0,0,0,0,1.99,0,0,0,0,0,0,0,0,0,0,0,0.336,0.588,0.168,0,0,0,5.61,42,331,0 0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,4.76,0,0,0,0,0,0,0,0,0,1.5,3,6,0 0.31,0,0.31,0,0,0,0,0,0,0,0,0,0.31,0,0,0,0,0,1.24,0,0,0,0,0,0,0,0,0,0.31,0,0,0,0,0,0,0,0.31,0,0,0,0.31,0,0.31,0,0.31,0.31,0,0,0,0,0.051,0,0,0,1.409,12,62,0 0,0,0,0,0,0,0,0,0,0,0,1.11,0,0,0,0,0,0,0,0,0,0,0,0,1.11,1.11,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0.183,0,0,0,0,1.8,4,36,0 0.4,0,0.4,0,0,0,0,0,0,0,0,0,0.4,0,0,0,0,0,1.61,0,0,0,0,0,0,0,0,0,0.4,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1.148,3,31,0 0.69,0,0.69,0,0,0,0,0,0,0.69,0,0,0,0,0,1.38,0,0,1.38,0,1.38,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,2.378,0,0,3.315,37,126,0 0,0,0,0,0,0,0,0,0,2.38,0,4.76,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0.442,0,0,2.125,10,17,0 0,0,0.73,0,0,0,0,0,0,0,0,1.47,0,0,0,0,0,0,1.47,0,0.73,0,0,0,0,0.73,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1.47,0,0,0,0,0,0,0.238,0,0,0,0,1.827,5,53,0 0,0,0.17,0,0,0.08,0,0,0,0,0.08,0.87,0.08,0.08,0,0,0.78,0,0,0,0,0,0,0,3.05,0,0.08,0,0,0,0,0,0.61,0,0,0.08,0.08,0,0,0,0,0,0,0,0,0,0,0,0.079,0.068,0,0,0.022,0,2.432,24,540,0 0,0,0,0,0,0,0,0,0,0,0,3.7,0,0,0,0,0,0,3.7,0,0,0,0,0,0,7.4,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,3.7,0,0,0,0.371,0,0,2.25,8,27,0 0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1.75,0,0,0,0,0,1.75,0.87,1.75,1.75,1.75,0.87,0.87,0.87,0,0.87,1.75,0.87,0,0,0,0.87,0,0,0,0,0.87,1.75,0,0,0,0.749,0,0.107,0,0,2.454,11,81,0 0.03,0.01,0.15,0,0.09,0.03,0,0.03,0.03,0.11,0,0.25,0.11,0.05,0.01,0.03,0.05,0.03,0.13,0,0.15,0,0.07,0,0,0,0,0,0,0,0,0,1.84,0,0,0.11,0.91,0,0,0.05,0.19,0.01,0.03,0.03,0,0.09,0,0.23,0.038,0.19,0,0.002,0.005,0,2.143,107,3168,0 0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,7.14,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1.086,0,0,1,1,3,0 0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1.13,0,2.27,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1.13,0,0,0,0,0,0.194,0,0,0,1.909,5,42,0 0,0,0,0,1.47,0,0,0,0,0,0,0.73,0.73,0,0,0,0,0,0.73,0,0,0,0,0,0,0,1.47,0,0,0,0,0,0,0,0,0,0,0,0,0,0,2.94,0,0,0,0,0,0.73,0,0.276,0,0,0,0,1.379,4,40,0 0,0,1.61,0,0,0,0,0,1.61,0,0,0,0,0,0,0,0,0,4.83,0,0,0,0,0,0,0,0,0,0,3.22,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1.769,8,23,0 0,0,1.31,0,0,0,0,0,0,0,0,2.63,0,0,0,0,0,0,5.26,0,1.31,0,0,0,1.31,0,0,0,0,1.31,0,0,0,0,0,0,0,0,0,0,0,1.31,0,0,0,0,0,0,0,0.242,0,0,0,0,1.266,3,19,0 0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0.72,0,0.72,0,0,0,0.72,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1.047,0,0,0,0.13,3.475,7,139,0 0,0,0,0,0.44,0,0,0,0,0,0,0.88,0,0,0,0,0,0,1.32,0,0.44,0,0,0,1.76,1.32,0.88,0.44,2.64,0.44,0.44,0.44,0,0.44,0.44,0.44,0.88,0,0.88,0.44,0,2.64,0.88,0,0.88,0,0,0,0,0.146,0.073,0,0,0,1.955,13,133,0 0,0,0,0,1.75,0,0,0,0,0,0,5.26,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1.75,0,0,0,0,0,0,0,0,0,0,0,0,1.75,0,0,0,0,0,0,0,0,0,0.955,0,0,1.5,5,24,0 0,0,0.94,0,0,0,0,0,0,0,0,0.47,0,0,0,0,0,0,0,0,0,0,0,0,0.47,0,0,0,0,0,0,0,0,0,0,0,0.94,0,0,0,0,1.42,0,0,0,0,0,0.94,0,0,0,0,0,0,1.766,4,53,0 0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,4.34,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,4.34,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0.558,0,0,2,7,28,0 0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,16.66,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1.8,5,9,0 0,0,0,0,0.9,0,0,0,0,0,0,1.8,0,0,0,0,0,0,1.8,0,0.9,0,0,0,0,0,0,0,2.7,0,0,0,0,0,0,0,0,0,0,0,0,2.7,0,0,0,0,0,0,0,0,0,0,0,0,1.631,8,31,0 0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,4.16,0,0,0,0,0,2.77,2.77,1.38,2.77,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1.38,0,0,0,0,0.355,0,0.355,0,0,2.666,12,64,0 0,0,0,0,0.96,0,0,0,0,0.48,0,0.48,0,0,0,0,0.48,0,1.93,0,0,0,0,0,0.96,0.96,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0.223,0,0,0,0,0,1.375,5,55,0 0,0.22,0.33,0,0.22,0.11,0,0,0,0,0.11,0.44,0,0,0,0,0,0,0.44,0,0.11,0.11,0,0,0.11,0.11,0,0,0,0,0,0,0.11,0,0,0,0,0,0.11,0,0,0,0,0,0.66,0,0,0,0.019,0.253,0,0,0,0,2.068,11,395,0 0,0,2.43,0,0,0,0,0,0.27,0,0,2.16,0,0,0,0,0,0,0.27,0,1.62,0,0,0,0.27,0.54,0,0,0.27,0,0,0,0.27,0,0,0,0,0,0,0.27,0,0,0,0,0,0,0,0,0,0.344,0,0,0,0,2.319,12,167,0 0,0,0,0,0,0,0,0,0,0,0,1.48,0,0,0,0,0,0,0,0,0,0,0,0,2.22,0.74,0,0,0,0.74,0,0,0,0,0,0,1.48,0,1.48,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,4.228,53,148,0 0,0.18,0,0,0,0,0,0,0,0,0,0.18,0,0,0,0,0,0,0,0,0,0,0,0,0.18,0,0,0,0,0,0,0,2.8,0,0,0.37,0.18,0,0,0,0,0,0,0,0,0,0.18,0.18,0,0.187,0,0,0,0,2.141,9,212,0 0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,4.34,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0.787,0,0,1.875,7,15,0 0,0,1.81,0,0,0,0,0,0,0,0,3.63,1.81,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1.81,0,0,0,0,0,0,0,0,0,0,0,0,1.81,0,0,0,0,0,0,0,0.3,0,0,0,0,1.652,8,38,0 0,0,0,0,4.16,0,0,0,0,0,0,4.16,0,0,0,0,0,0,4.16,0,0,0,0,0,0,0,0,0,0,0,0,0,4.16,0,0,0,0,0,0,0,0,4.16,0,0,0,0,0,0,0,0.689,0,0.689,0,0,1.3,4,13,0 0,0,0,0,1.43,0,0,0,0,0,0,0,0,0,0,0,0,0,1.43,0,0,0,0,0,0,0,0,0,0,0,0,0,0.71,0,0,0,0,0,0,0,0,2.15,0,0,0,0,0,0,0,0.138,0,0,0,0,1.863,5,41,0 0,0,0,0,0.77,0,0,0,0,0,0,0,0,0,0,0,0,0,1.55,0,0.77,0,0,0.77,0,0,0.77,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1.55,0.77,0,0,0,0.49,0,0.196,0,0,3.16,10,79,0 0,0,0,0,3.07,0,0,0,0,0,0,4.61,0,0,0,0,0,0,0,0,1.53,0,0,0,0,0,0,0,6.15,0,0,0,0,0,0,0,0,0,0,0,0,6.15,0,0,0,0,0,0,0,0,0,0,0,0,1.529,4,26,0 0.29,0.58,0.29,0,0.29,0,0,0.29,3.23,0.88,0.29,0.88,0,0,0,0,0,0.88,1.76,0.29,2.64,0,0,0,0.29,0.29,0.29,0,0,0,0,0,0,0,0,0,0.29,0,0,0,0,0,0,0,0,0,0,0,0.075,0.113,0,0.113,0.265,0.113,2.285,16,208,0 0,0,0,0,0,0,0,0,0,0,0,3.44,0,0,0,0,0,0,1.72,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1.72,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,2.062,8,33,0 0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,14.28,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,2.777,14,25,0 0,0,0,0,0,0,0,0,0,0,0.61,0.61,0,0,0,0,0,0,0,0,0,0,0,0,1.85,0,0,0,0,0.61,0,0,0.61,0,0,0.61,0.61,0,0,0,0,0.61,0,0,0,0,0,0,0.179,0,0,0,0,0,1.24,6,67,0 0,0,0.26,0,0,0,0,0,0,0,0.26,0,0,0,0,0,0,0.26,0,0,0,0,0,0,0.26,0,0,0,0,0,0,0,0,0,0,0,0.53,0,0,0,0,1.06,0,0.26,0,2.4,0,0,0.036,0.109,0,0,0.036,0,1.632,11,307,0 0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0.45,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0.027,0,0,0,0,1.567,6,428,0 1.09,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,3.29,2.19,0,1.09,0,0,0,0,0,0,1.09,0,0,0,0,0,0,0,0,0,1.09,0,0,0,0,0.353,0,0,0,0,2.304,10,53,0 0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,4.25,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0.386,0,0,1.6,4,16,0 0,0,1.46,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,3.41,0.97,0.48,0.48,0,0,0,0,0,0,0.48,0,0.48,0,0,0,0,0,0.48,0,0.97,0,0,0,0.471,0.55,0,0.078,0,0,2.552,16,171,0 0,0,0.08,0,0.17,0,0,0.08,0.08,0,0,0.43,0.08,0,0,0,0,0,0,0,0,0,0.08,0,3.54,0,0,0,0,0,0,0,0,0,0,0.77,0.17,0,0,0,0,0.08,0,0.17,0,0,0,0.17,0.08,0.045,0,0,0.011,0,2.45,25,566,0 0,0,2.25,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,2.25,1.5,0,0.75,0,0,0,0,0,0,0.75,0,0,0,0,0,0,0,0,0,0.75,0,0,0,0,0.369,0,0,0,0,2.032,10,63,0 0,0,0,0,0,0,0,0,0,0,0,0,2.56,0,0,0,0,0,2.56,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,2.56,0,0,0,0,0,2.56,0,0,0,0,0,0,0.473,0,0,2.454,15,27,0 0,0,0,0,0,0,0,0,0,0,0,0,1.01,0,0,0,0,0,2.02,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1.01,0,2.02,0,0,0,1.01,0,2.02,1.01,0,0,0,0,0.188,0.376,0,0,2.31,15,67,0 0,0,1.06,0,1.06,0,0,0,0,0,0,1.06,0,0,0,0,0,0,4.25,0,0,0,0,0,0,0,1.06,0,0,0,0,0,1.06,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0.186,0,0,1.25,4,25,0 0,0,0,0,0.54,0,0,0,0,1.63,0.54,0.54,0.54,0,0,0,0,0,2.18,0,1.09,0,0,0,1.09,0.54,0,0,0,0,0,0,0,0,0.54,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0.09,0.09,0,0,0,1.969,16,65,0 0,0,0,0,0,0,0,0,0,0,0,1.09,0,0,0,0,0,0,2.19,0,0,0,0,0,0,0,2.19,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,2.409,11,53,0 0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,4.16,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,8.33,0,0,0,0,0,0.68,0.68,0,0,2.9,18,29,0 0,0,0,0,0,0,0,0.56,0,0,0,0,0,0,0,0,0,0,1.12,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1.12,0,0,0,0,0,1.12,0.56,0,0,0,0.181,0.09,0.181,0,0,4.5,34,153,0 0,2.12,0,0,0,0,0,0,0,2.12,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1.3,4,13,0 0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,3.77,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1.88,0,0,0,0,0,1.88,0,0,0,0,0,0,0.366,0,0,2,15,28,0 0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,3.24,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1.29,0,0,0,0,0.229,0,0.114,0,0,1.8,17,36,0 0.39,0,0,0,0.78,0.39,0,0,0,0,0,0.39,0,0,0,0,0,0,0.39,0,0.39,0,0,0,3.14,0.39,1.18,0.39,0.39,0.39,0.39,0.39,0.39,0.39,0.39,0.39,0.78,0,0.78,0.39,0,1.96,0.78,0,0.78,0,0,0,0.645,0.581,0,0.129,0,0,2.895,16,249,0 0.05,0,0,0,0,0.1,0,0,0,0.1,0.05,0.48,0,0,0.05,0.21,0.1,0,1.62,0.05,1.08,0,0.21,0.05,2.05,0.48,0.05,0.16,0,0.16,0.27,0,0,0,0.21,0,0.27,0,0.16,0,0,0,0,0,0.05,0,0,0.1,0,0.289,0.015,0.062,0.046,0,2.007,32,1026,0 0.06,0,0,0,0,0.12,0,0,0,0.12,0,0.19,0,0,0.06,0.19,0.12,0,1.74,0.06,1.23,0,0.25,0.06,2.26,0.38,0.06,0.19,0,0.19,0.32,0,0,0,0.25,0,0.32,0,0.19,0,0,0,0,0,0.06,0,0,0.12,0,0.33,0.018,0.064,0.055,0,2.024,25,897,0 0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0.97,0,0.97,0,0,0,1.94,0.97,0,2.91,0,0,0,0,0,0,1.94,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0.141,0,0,0,0,3.178,15,89,0 0,0,0.85,0,1.36,0,0,0,0,0.17,0,0.34,0.17,0,0,0,0,0,0.85,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0.034,0,0,0,0,0,1.085,3,89,0 0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,3.7,0,0,3.7,0,0,3.7,0,0,0,0,0,0.689,0,0,0,1.888,5,17,0 0,0,0,0,0,0,0,0,0,0,0,1.49,0,0,0,0,0,0,0,0,0,0,0,0,2.23,0.74,0,0,0,0.74,0,0,0,0,0,0,1.49,0,1.49,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,4,45,140,0 0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,20,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,5.2,17,26,0 0,0,0,0,1.92,0,0,0,0,0,0,2.88,0,0,0,0,0,0,0,0,0,0,0,0,0.96,0.96,0,0,0,0,1.92,0,0,0,0.96,0,0.96,0,0.96,0,0,0,0,3.84,0,0,0,0,0,0,0,0,0,0.161,2.307,14,90,0 0,0,0,0,0,0,0,0,0,0.45,0,0,0,0,0,0,0,0,0.45,0,1.35,0,0,0,1.35,1.35,1.35,1.35,0.9,0.45,0.45,0.45,0,0.45,1.35,0.45,0.45,0,0.45,0.45,0,0.45,0.45,0,0.45,0,0,0,0,0.358,0.43,0,0,0.071,2.236,12,161,0 0,0,0.36,0,0.73,0,0,0,0,0,0,0.36,0.18,0,0,0.36,0,0,1.28,0,0.36,0,0,0,0.36,1.28,0,0,0,0,0,0,0,0,0,0,0.36,0,0,0,0,0,0.18,0,0.18,0,0,0,0.027,0,0,0.055,0,0,3.176,51,270,0 1.03,0,0,0,1.03,0,0,0,0,0,0,0,0,0,0,0,0,0,1.03,0,1.03,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,3.09,0,0,0,0,0,0,0,0.185,0,0.37,0,0,2.277,11,41,0 0.72,0,0,0,0,0,0,0,0,0,0,1.45,0,0,0,0,0,0,0.72,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0.72,0,0,0,0,0,0,1.407,6,38,0 0,0,0,0,0.82,0,0,0,0,0,0,0,0,0,0,0,0,0,0.82,0,0,0,0,0,4.13,2.47,1.65,0.82,0.82,0.82,0.82,0.82,0,0.82,0.82,0.82,0,0,0,0.82,0,0,0,0,0.82,0,0,0,0,0.361,0,0.24,0,0,4.666,34,126,0 0,0,0.34,0,0.34,0,0,0,0,0,0,0.34,0.34,0,0,0,0,0,0.34,0,0.34,0,0,0,0.34,0.69,0,0,0,0,0,0,0,0,0,0.34,1.04,0,0,0,0,0,0.34,0,0,0,0,0,0,0.149,0,0,0,0,2.35,14,188,0 0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1.78,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1.78,0,0,0,0,0,0,1.78,0,0,0,0,0,0,0,0,0,0.24,0,0,2.833,12,68,0 0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1.78,0,0,0,0,0,1.78,1.78,0,0,0,0,0,0,3.57,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1.5,9,30,0 0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0.9,0,0,0,0,0,0.9,0,0,0,0,0,0.9,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0.14,0,0,0,3.472,28,125,0 0,0,0,0,0,0,0,0,2.29,0,0,0.76,0,0,0,0,0,0,0,0,0,0,0,0,5.34,1.52,1.52,0.76,0.76,2.29,0.76,0.76,0,0.76,0.76,0.76,0,0,0.76,0.76,0,0,0,0,0.76,0,0,0,0,0.157,0,0,0,0,4.242,52,140,0 0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,6.45,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,3.22,0,0,0,0,0,0,0,0,0,1.5,4,18,0 0.97,0,0.97,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,2.91,0,0,0,0,0,0,0,0.97,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0.166,0,0,2.185,11,59,0 0,0,0,0,0,0,0.46,0,0,0,0,0.46,0,0,0,0,0,0,0.46,0,0,0,0,0,0.46,0,0.92,0,0,0,0,0,2.3,0,0,0,0.92,0,0.92,0,0,0,0.92,0,0.46,0,0,0,0.163,0.163,0,0.163,0,0.081,2.343,13,150,0 0,0,0,0,0.54,0.54,0,0,0,0,0,1.09,0,0,0,0,0,0,1.63,0,0.54,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0.54,0,0,0,0,0,0,0.299,0.199,0,0,0,0,1,1,14,0 0,0.07,0.14,0,0.14,0.07,0,0,0,0,0,1.34,0.07,0.14,0,0,0.63,0,0.14,0,0,0,0.07,0,3.03,0,0,0,0,0,0,0,0,0,0,0.07,0.21,0,0,0,0,0,0,0,0,0,0,0,0.084,0.177,0,0,0,0,2.25,26,855,0 0,0,0,0,5,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,3.5,9,21,0 0,0,0,0,0,0,0,0,0,0,0,0.99,0,0,0,0,0,0,0,0,0,0,0,0,2.97,3.96,0,0,0,0,0,0,0,0,0.49,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0.21,0,0,0,0,1.736,12,125,0 0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1.49,0,4.47,0,0,0,0,0,1.49,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,1,16,0 0.53,0,0,0,0,0,0,0,0,0,0,1.07,0,0,0,0,0,0,0.26,0,0.26,0,0,0,1.61,0.8,1.88,0.53,0.53,0.53,0.53,0.53,1.88,0.53,0.53,0.53,0.8,0,0.8,0.53,0,0,0.8,0,0.8,0,0,0,0,0.412,0,0.091,0,0,2.225,12,227,0 0,0,0,0,0,0,0,0,0,0.93,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0.93,0,0,0,0,0,0.93,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0.475,0.158,0,0,0,4.393,33,145,0 0.58,0,0,0,0,0,0,0,0,0,0,0.58,0,0,0,0,0,0,0.58,0,0,0,0,0,1.76,1.17,1.76,0.58,0.58,0.58,0.58,0.58,1.76,0.58,0.58,0.58,0.58,0,0.58,0.58,0,0,0.58,0,0.58,0,0,0,0,0.414,0,0.103,0,0,2,12,94,0 0.31,0.31,0.94,0,0,0.62,0,0,0,0,0,0.31,0,0,0,0,0,0,2.83,0,0.31,0,0,0,1.88,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0.31,0,0,0,0.31,0,0,0,0,0,0,0.096,0,0,2.368,45,180,0 0.12,0,0.12,0,0.12,0.12,0,0,1.08,0,0,0.36,0,0,0,0,0,0,0.48,0,0.24,0,0,0,0.6,0.72,0.12,0,0,0,0,0,0.36,0,0,0,0.12,0,0,0,0,0,0,0,0,0,0,0,0.117,0.151,0.033,0,0.033,0,4.134,78,645,0 0.05,0,0.1,0,0,0.1,0,0.05,0.49,0,0,0.27,0,0,0,0,0.38,0,0.21,0,0.1,0,0,0,0.49,0.54,0.05,0,0,0,0,0,0.38,0,0,0.38,0.21,0,0,0,0,0,0,0,0,0,0,0,0.308,0.136,0.078,0,0.014,0,3.715,107,1386,0 0,0,0,0,0,0,0,0,0,0,0,1.07,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1.07,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0.216,0,0.216,0,0.216,2.166,6,39,0 0.75,0,0.37,0,0,0,0,0,0,0,0,0,0.37,0,0,0,0,0,1.12,0,1.87,0,0,0,0.75,0.37,1.87,0.37,0.37,0.37,0.37,0.37,0,0.37,0.37,0.37,0.75,0,0.37,0.37,0,0,2.63,0,0.75,0,0,0,0,0.305,0,0.061,0,0,1.903,13,118,0 0,0,0,0,0,0,0,0,0,0.73,0,0,0,0,0,0,0,0,0,0,0,0,0,0,2.2,2.2,1.47,2.2,1.47,0.73,0.73,0.73,0,0.73,2.2,0.73,0.73,0,0.73,0.73,0,0.73,0.73,0,0.73,0,0,0,0,0.555,0.666,0,0,0.111,2.351,12,127,0 0.68,0,0,0,0,0,0,0,0,0,0,0,0.68,0,0,0,0,0,1.37,0,2.06,0,0,0,0,0,1.37,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,3.44,0,0,0,0,0,0,0.332,0,0,0,0,1.125,2,18,0 0,0,0,0,0,0,0,0,0,1.12,0,0,0,0,0,0,0,0,1.12,0,1.12,0,0,0,0,0,1.12,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,2.24,0,0,0,0,0,0,0.203,0,0.203,2.222,20,40,0 0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,4.34,0,0,0,8.69,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,2.125,6,17,0 0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,2,3,4,0 0,0,0,0,0,0,0,0,0,0.57,0,0,0,0,0,0.57,0,0,2.87,0,4.02,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1.14,0,0,0,0,0.84,0,0,0,0.076,3.583,31,129,0 0.24,0,0.49,0,0,0,0,0,0,0.24,0,0.24,0.24,0,0,0,0,0,1.23,0,0.24,0,0,0,0.24,0.24,0,0.49,0,0.24,0,0,0,0,0.49,0,0,0,0,0,0,0,0,0,0,0,0.74,0,0.029,0.119,0.119,0,0,0,3.574,75,336,0 0,0,0,0,0,0,0,0,0,0,0,3.22,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,3.22,0,0,0,0,0,0,0,0,0,0,0,0,0.564,0,0,1.818,9,20,0 0,0,0,0,0,0.49,0,0,0,0,0,0,0,0,0,0,0,0,1.47,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0.49,0,0,0,0.49,0,0.49,0,0,0,0,0.195,0,0.097,0,0,2.3,18,69,0 0,0,0,0,0,0,0,0,0,0,0,0.68,0,0,0,0,0.68,0,0.68,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,2.04,0,0,0,0,0,0,0,3.4,0,0,0,0.68,0,0.086,0,0,0,0,1.41,5,79,0 0,0,2.91,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1.94,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0.389,0,0.389,0,0,1.26,3,29,0 0,0,0.66,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,2.66,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0.66,0,0,0,0,0.231,0,0.231,0,0,1.761,17,37,0 0,0,0.79,0,0,0,0,0,0,0,0,1.58,0,0,0,0,0,0,2.38,0,0.79,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0.137,0,0,0,0,0,1.09,3,24,0 0,0,0,0,0,0,0,0,0,0,0,1.04,0,0,0,0,0,0,5.2,0,0,0,0,0,0,0,1.04,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0.195,0,0,0,0,1.071,2,15,0 0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,20,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,1,5,0 0,0,0,0,1.28,0,0,0,1.28,0,0,0,0,1.28,0,0,0,0,1.28,0,0,0,0,0,2.56,1.28,1.28,1.28,1.28,1.28,1.28,1.28,0,1.28,1.28,1.28,0,0,0,1.28,0,0,0,0,0,0,0,0,0,0.398,0,0,0,0,2.21,11,42,0 0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0.84,0,0,2.54,0,0,0,1.69,0.84,1.69,1.69,0,0.84,0,0,0,0,0.84,0,0,0,0,0,0,0,0,0,0.84,0,0,0,0,0,0,0,0,0,1.777,11,64,0 0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1.51,0,0,0,0,0,1.51,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1.51,0,0,0,0.3,0,0,0,0,0,1.611,5,29,0 0.48,0,0,0,0.48,0,0,0,0,0,0,0,0.48,0,0,0,0,0,4.39,0,0,0,0,0,0.48,0,0.48,0,2.92,0,0,0,0,0,0,0,0,0,0,0,0,0.97,0,0,0,0,0,0,0,0.085,0,0,0,0,1.275,3,37,0 0.12,0,0.25,0,0,0,0,0.38,1.28,0,0,0.38,0,0,0,0,0,0,0.51,0,0.25,0,0,0,0.64,0.76,0.12,0,0,0,0,0,0.51,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0.054,0.162,0.036,0,0.036,0,3.167,32,491,0 0.08,0.08,0.25,0,0,0.25,0,0,0.76,0,0,0.25,0,0,0,0,0,0,0.33,0,0.16,0,0,0,0.5,0.59,0.08,0,0,0,0,0,0.42,0,0,0.25,0.08,0,0,0,0,0.08,0,0,0,0,0,0,0.148,0.136,0.045,0,0.022,0,3.995,55,807,0 0,0,0,0,0,0,0,0,0,0,0,0.89,0,0,0,0,0,0,3.57,0,2.67,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,2.375,23,38,0 0.24,0,0.12,0,0,0.12,0.24,0,0,0,0,0.37,0,0,0,0,0,0,0.86,0,0.24,0,0,0,1.24,0.62,0.49,0.24,0.24,0.24,0.24,0.24,0.37,0.24,0.24,0.24,0.24,0,0.24,0.24,0,0.12,0.24,0.86,0.24,0,0,0,0.018,0.297,0.055,0,0,0,1.801,13,227,0 0,0,0,0,0.75,0,0,0,0,0,0,0,0,0,0,0,0,0,1.5,0,0,0,0,0,3.75,3,2.25,0.75,0.75,0.75,0.75,0.75,0,0.75,0.75,0.75,0.75,0,0.75,0.75,0,0.75,0.75,0,0.75,0,0,0,0,0.222,0,0,0,0,1.833,12,77,0 0.1,0,0.21,0,0,0,0,0.21,0.31,0.1,0,1.06,0.21,0,0,0.1,0.21,0,0,0,0,0,0.21,0,3.5,0.1,0,0,0.1,0.1,0,0,0,0,0,0.21,0.21,0,0,0.1,0,0,0,0.21,0,0,0,0,0.043,0.143,0,0,0.057,0,2.409,23,571,0 0,3.68,0,0,0,0,0,0,0,0,0,0.61,0,0,0,0,0,0,0.61,0,1.22,0,0,0,1.22,0.61,3.06,0.61,0.61,0.61,0.61,0.61,0,0.61,0.61,0.61,1.84,0,0.61,0.61,0,0,1.84,0,1.84,0,0,0,0,0.189,0.094,0,0,0.094,2.283,13,169,0 0,0,0,0,0,0,0,0,0,0,0,3.12,0,0,0,0,0,0,1.56,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1.56,0,0,0,0,0,0,0,0,0.27,0,0,1.5,4,30,0 0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1.33,0,1.33,0,0,0,4,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0.211,0,0,0.211,0,0,1.38,4,29,0 0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1.94,0,0,0,0.48,0,0.48,0,0,0,0,0,0,0,0,0,0,0.057,0,0,0,0,6.526,83,248,0 0.51,0,0,0,0,0,0,0,0,0,0,1.54,0,0,0,0,2.06,0,0.51,0,0,0,0,0,3.6,2.06,0,0,0,0.51,0,0,0,0,0,0.51,0,0,0,0,0,0,0,0,0.51,0,0,0,0,0,0,0,0,0,1.574,4,74,0 0,0,0,0,0,0,0,0,0,0,0,0.89,0,0,0,0,0,0,0.89,0,0,0,0,0,1.78,1.78,0,0.89,0,0,0,0,0,0,0.89,0.89,0,0,0,0,0,0,0,0,0,0,0,0.89,0,0.537,0,0,0,0.268,2.292,12,94,0 0,0,0,0,0,0.78,0,0,0,0,0,0.78,0,0,0,0,0,0,0.78,0,0,0,0,0,0.78,0.78,0,0.78,0,0,0,0,0,0,0.78,0.78,0,0,0,0,0,0,0,0.78,0,0,0,0,0,0.451,0,0,0,0.112,2.714,22,133,0 0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1.29,0,0,0,0,0,1.29,6.49,0,0,0,1.29,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0.19,0,0.19,0,0,1.857,4,26,0 0,7.01,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1.75,0,1.75,0,0,0,0,0,3.5,0,0,0,0,0,0,0,0,0,1.75,0,0,0,0,0,1.75,0,1.75,0,0,0,0,0,0,0,0,0.286,1.826,13,42,0 0,5.47,0,0,0,0,0,0,0,0,0,1.36,0,0,0,0,0,0,1.36,0,2.73,0,0,0,0,0,2.73,0,0,0,0,0,0,0,0,0,1.36,0,0,0,0,0,1.36,0,1.36,0,0,0,0,0,0,0,0,0.232,2.035,13,57,0 0,0,0,0,0.87,0,0.87,0,0,0,0,0,0,0,0,2.63,0,0.87,2.63,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0.798,0.159,0,18.454,136,203,0 0,0,0,0,0,0,0,0,0,0,0,1.4,0,0,0,0,0.7,0,1.4,0,1.4,0,0,0,0,0,0.7,0,0,0,0.7,0,0,0,0,0,0,0,0,2.11,0,0,0,0,0,0,0,0,0,0.266,0.066,0,0,0,18,200,378,0 0.3,0,0.15,0,0,0.15,0.3,0,0,0,0,0.3,0,0,0,0,0,0,0.75,0,0.3,0,0,0,0.75,0.3,0.3,0.15,0.15,0.15,0.15,0.15,0.45,0.15,0.15,0.15,0.15,0,0.15,0.15,0,0,0.15,0.75,0.15,0,0,0,0,0.328,0.046,0,0,0,1.703,12,155,0 0.41,0,0.41,0,1.25,0,0.41,0,0,0.2,0,1.04,0.2,0,0,0.41,0.41,0,3.96,0,2.29,0,0.2,1.04,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0.2,0,0,0.83,0,0,0,0,0.069,0,0.866,0.103,0,5.052,214,485,0 0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0.32,0,0.32,0,0,0,0.32,0,0,0,0,0,0,0.32,0,0,0,0,0,0,0,0,0,0.54,0.108,0,0,0.054,3.787,28,375,0 0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,3.92,0,0,0,0,0,0,0,5.88,0,0,0,0,0,0,0,0,0,1.96,0,1.96,0,0,0,0,0,1.96,0,0,0,0,0,0,0,0,0,1.785,6,25,0 0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,4.87,0,0,0,0,0,0,0,7.31,0,0,0,0,0,0,0,0,0,2.43,0,0,0,0,0,0,0,2.43,0,0,0,0,0,0,0,0,0,1.461,5,19,0 0,0,0,0,0,0,0,0,0,0,0,0,2.22,0,0,0,0,0,4.44,0,0,0,0,0,0,0,8.88,0,0,0,0,0,0,0,0,0,2.22,0,0,0,0,0,0,0,2.22,0,0,0,0,0,0,0,0,0,1.3,5,26,0 0,0,0.7,0,0,0.14,0,0,0.28,0,0,3.08,0.14,0.28,0,0,0.14,0,0,0,0,0,0,0,0.98,0,0,0,0.14,0.14,0,0,0,0,0,0.7,0.28,0,0,0,0,0,0,0,0,0,0,0,0.054,0.199,0,0,0,0,1.82,18,304,0 0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,2.94,0,0,0,0,0,0,0,5.88,0,0,0,0,0,0,0,0,0,2.94,0,0,0,0,0,0,0,2.94,0,0,0,0,0,0,0,0,0,1.562,5,25,0 0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,9.09,0,0,0,0,0,0,0,9.09,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,1,5,0 0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,7.69,0,0,0,0,0,0,0,7.69,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1.285,2,9,0 0,0,0,0,0,0,0,0,0,0,0,0,5.55,0,0,0,0,0,5.55,0,0,0,0,0,0,0,5.55,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,1,10,0 0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,7.69,0,0,0,0,0,0,0,7.69,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1.285,2,9,0 0,0,0,0,0,0,0,0,0,1.4,0,0,0,0,1.4,0,0,0,0,0,0,0,0,0,1.4,1.4,0,0,0,0,0,0,0,0,0,0,1.4,0,0,0,0,0,1.4,0,0,0,0,0,0,0.205,0.205,0,0,0,4.533,21,68,0 0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,7.69,0,0,0,0,0,0,0,7.69,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1.285,2,9,0 0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,2.56,2.56,0,1.28,0,0,0,0,0,0,1.28,1.28,0,0,0,0,0,0,0,2.56,0,0,0,0,0,0.552,0,0,0,0,2.093,11,90,0 0,0,0,0,0,0,0,0,0,0.64,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0.64,0,0.64,0,0,0,0.64,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0.314,0.209,0,0,0.104,4.062,28,195,0 0,0,0,0,1.26,0,0,0,0,0,0,1.26,0,0,0,1.26,0,0,2.53,0,0,0,0,0,0,0,1.26,0,1.26,0,0,0,0,0,0,0,0,0,0,0,0,1.26,0,0,1.26,0,0,0,0,0,0,0,0,0,1.285,5,18,0 0,0.25,0,0,0,0,0,0,0,0.51,0.77,0.25,0,0,0,0,0,0,1.02,0,0.51,0,0,0,0.25,0.51,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0.124,0,0.207,0,0,10.409,343,635,0 0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,12.5,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,5.857,18,41,0 0,0,0.38,0,0,0,0,0,0,0,0,1.53,0,0.38,0,0,0.76,0,0.76,0,0,0,0,0,3.84,1.53,0.38,0.38,1.53,0.38,0.38,0.38,0,0.38,0.38,1.15,0.38,0,0,0.38,0,0,0.38,0,0.76,0,0,0,0,0.163,0.054,0,0,0,2.297,17,193,0 2,0,0,0,0,0,0,0,0,0,2,2,0,0,0,0,0,0,2,0,8,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,5.888,29,53,0 0,0,0,0,0,0,0,0,0,0.29,0,0,0,0,0,0,0,0,0.58,0,0.58,0,0,0,3.51,2.34,0.87,2.34,0.58,1.17,0.58,0.58,0,0.58,1.17,0.58,0.29,0,0.87,0.58,0,0.87,0.29,0,0.58,0,0,0,0.091,0.637,0.045,0,0,0,3.552,37,373,0 2,0,0,0,0,0,0,0,0,0,2,2,0,0,0,0,0,0,2,0,8,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,5.888,29,53,0 0,0,1.58,0,0,0,0,0,0,0,0,0.79,0,0,0,0,0,0,1.58,0,0,0,0,0,0.79,0.79,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0.149,0,0.149,0,0,1.482,10,43,0 0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,3.33,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1.375,4,11,0 0,0,0,0,0.33,0,0,0,0,0,0,0.33,0,0,0,0.33,0,0.33,0.33,0,0.33,0,0,0,0.99,0.33,0,0.66,0,0.33,0,0,0,0,0.33,0,0,0,0,0,0,0,0,0.33,0,0,0,0,0,0.13,0.043,0,0,0,2.016,19,125,0 0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0.325,0,0,0,0,0,1,1,14,0 0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,3.33,0,6.66,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1.3,3,13,0 0.34,0,0,0,0,0,0,0,0.34,0.68,0,1.02,0,0,0,0,0,0,1.36,0,0.68,0,0,0,2.38,1.7,0.68,1.7,0.68,0.34,0.34,0.34,0,0.34,0.34,0.34,0.68,0,0.68,0.34,0,0,0.68,0,0.34,0,0,0,0.052,0.42,0.052,0,0,0.052,2.604,13,250,0 0,0,0,0,4.54,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,4.54,0,4.54,0,0,0,0,0,0,0,0,0,0,2,5,16,0 0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,10,0,0,0,0,0,0,0,0,0,0,0,0,5,0,0,0,0,0,0,0,0,0,0,0,0,1.428,3,10,0 0,1.86,0,0,0,0,0,0,0,0.93,0,0,0,0,0,0,0,0,0,0,0,0,0,0,2.8,1.86,1.86,0.93,0.93,0.93,0.93,0.93,0,0.93,0.93,0.93,0.93,0,0.93,0.93,0,0.93,0.93,0,0.93,0,0,0,0,0.457,0.152,0,0,0,2.097,13,86,0 0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,4.16,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0.74,0,0,1.625,6,13,0 0.26,0,0.26,0,0,0,0,0,0.53,0,0.53,2.94,0,0,0,0,0,0.26,4.27,0,2.4,0,0,0,0,0.26,0.53,0,0,0,0,0,0,0,0,0,0.26,0,0.53,0,0,0.8,0,0,0,0,0,0.53,0,0.03,0,0,0,0,1.58,8,128,0 0,0,0,0,0.13,0,0,0.55,0,0,0,0.13,0.13,0,0,0,0.27,0,0,0,0,0,0.41,0,2.79,0,0,0,0,0,0,0,0,0,0,0.13,0.27,0,0,0,0,0,0,0,0,0,0,0,0.071,0.143,0,0,0.053,0,2.662,22,418,0 0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,4,0,0,0,0,0,0,0,0,0,0,2,2,0,4,0,0,0,0,0,0,0,0,0,0,0,0,0.176,0,0,1.758,7,51,0 0,0,1.23,0,0,0,0,0,0,0,0,2.46,0,0,0,0,0,2.46,1.23,0,1.23,0,0,0,2.46,1.23,0,1.23,0,1.23,1.23,0,0,0,1.23,1.23,2.46,0,0,0,0,0,0,0,0,0,0,0,0,0.139,0,0.278,0,0,1.736,10,66,0 0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,3.7,0,0,3.7,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1.166,2,7,0 0.17,0.35,0,0,0,0,0,0,0,0.35,0,0.17,0,0,0,0,0,0,1.94,0,0.7,0,0,0.17,0.17,0.17,0.88,0,0,0.17,0,0.17,0,0.17,0,0,0.35,0,0,0,0,0,0,0,0.53,0.17,0,0,0,0.031,0,0.031,0,0,1.564,21,194,0 0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,3.33,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,3.33,0,0,0,0,0,0,0,0,0,1.75,3,14,0 0,0,0,0,0.1,0,0,0,0,0,0,0.1,0,0,0,0,0,0,0,0,0,0,0,0,2.06,1.19,0,0,0,0.1,0,0,1.3,0,0,0.1,1.08,0,0,0,0.65,0,0,0,0,2.6,0,0.1,0.14,0.5,0.093,0,0,0,4.06,51,1003,0 0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,3.33,0,0,0,0,0,0,0,0,0,1.6,7,16,0 0.17,0,0.51,0,0.17,0,0,0,0,1.36,0,0.17,0,0,0,0.17,0.34,0,1.19,0,0.85,0,0,0,1.53,0.68,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0.027,0.111,0,0.167,0,0,1.894,22,216,0 0,0,0,0,0,0.44,0,0,0,0,0,0.44,0.44,0,0,0,0,0,1.32,0,0,0,0,0,0,0,0.88,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0.44,0.44,0,0,0,0.15,0,0,0,0,1.613,11,71,0 0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,9.52,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,4.76,0,0,0,0,0,0,0,0,0,1.142,2,8,0 0,0.24,0,0,0.24,0,0,0.24,0,0.49,0,0,0,1.48,0,0,0,0,0.99,0,0,0,0,0,0.49,0,0.24,0,0,0,0.24,0,0,0,0.24,0,0.74,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0.16,0,9.31,235,1108,0 0,0,0,0,0.44,0,0,0,0,0,0.44,0.89,0,0,0,0,0,0,1.78,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0.89,0,0,0,0,0,0,0,0,1.33,0,0,0,0.139,0,0,0,0,1.731,16,116,0 0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,4.54,0,9.09,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,1,5,0 0,0,0.86,0,0,0,0,0,0,0,0.86,0.86,0,0,0,0,0,0.86,6.95,0,4.34,0,0,0,0,0,0.86,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1.047,2,22,0 0.25,0,0,0,0.25,0.25,0,0,0,0,0,0.51,0,0.25,0,0,0,0.25,0.51,0,0.25,0,0,0,0,0.25,0,0,0,0,0,0,0.25,0,0,0,0,0,0,0,0.25,0,0,0,0,0.25,0,0.25,0,0.082,0,0,0,0.041,1.287,4,85,0 0,0,1.56,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1.56,0,0,0,0,1.56,0,0,0,0,0,0,0,0,1.75,3,21,0 0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,3.12,0,0,0,0,0,0,0,3.12,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0.502,0,0,0,0,1,1,8,0 0,1.61,3.22,0,0,0,0,0,0,0,0,1.61,0,0,0,0,0,3.22,3.22,0,0,0,0,0,0,0,1.61,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1.61,1.61,0,0,0,0,0,0,0,0,1.083,2,13,0 0,0,0,0,0.66,0,0,0,0,0,0,0,0,0,0,0,0,0,4.63,0,3.31,0,0,0,2.64,1.98,1.32,0.66,0.66,0.66,0.66,0.66,0,0.66,0.66,0.66,0,0,0.66,0.66,0,0,0,0,0.66,0,0,0,0,0.293,0,0,0,0,3.968,34,127,0 0,0,0,0,0,0,0,0.77,0,0,0,0,0,0,0,0,0,1.55,2.32,0,0,0,0,0,3.1,3.87,3.1,0.77,0,0.77,0.77,0,0,0,1.55,0.77,0,0,0,0,0,0,0,0,0,0,0,0,0,0.198,0,0.099,0,0,2.325,30,93,0 0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0.5,0,0.5,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0.501,0.167,0,0,0.083,3.983,28,239,0 0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,16.66,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,3.125,17,25,0 0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0.54,0,0.54,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0.453,0.181,0,0,0.09,4.037,28,214,0 0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,16.66,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1.666,3,5,0 0,0,0,0,0,0,0,0,0,0,0,0.68,0,0,0,0,0,0,0.34,0,0,0,0,0,0.68,0.34,0,0.68,0,0.34,0,0,0.34,0,0.34,0.34,0,0,0,0,0,0,0,0,0,0,0,0,0.048,0,0,0,0,0,2.147,11,131,0 0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0.72,0,0,0,0,0,0,0,0.72,0,0,0,0,0,0,0,0,0,0,0,0,0.72,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0.395,2.333,8,119,0 0,0,0,0,1.04,0,0,0,0,0,0,0.52,0,0,0,0,0,0,0,0,0,0,0,0,1.56,1.04,0,0.52,0,0,0,0,2.08,0,0.52,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0.274,0,0,0,0,1.848,10,61,0 0,0,0,0,0,0,0,0,0,0,0,0,0,0.8,0,0,0,0,5.6,0,4,0,0,1.6,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0.122,0.244,0,0,0,0,1.909,6,21,0 0,0,0,0,0,0,0,0,0,0,0,1.36,0,0,0,0,0,0,1.36,0,5.47,0,0,0,0,0,1.36,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,2.307,8,30,0 0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,20,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,1,5,0 0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,5.4,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0.396,0,0.396,2.533,10,38,0 0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,2.63,0,0,0,0,0,2.63,0,0,0,0,0,2.63,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0.248,0,0,0,0,4.166,14,50,0 0,0.28,0,0,0.56,0,0,0,0.28,0,0,0.56,0,0,0,0,0,0.56,3.41,0,1.13,0,0,0,0.56,0.56,1.7,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0.56,0,0.85,0,0,0,0.046,0.281,0.046,0,0,0,1.834,15,200,0 0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,4.76,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,50,99,100,0 0,0,0,0,0.32,0.32,0,0,0,0,0,0.32,0,0,0,0,0,0,1.3,0,0.98,0,0,0,0,0,0,0,0.32,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0.65,0,0,0,0,0,0.257,0,0,0,0,1.3,7,104,0 0,0,0,0,0,0,0,0,0,1.19,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1.19,1.19,3.57,0,0,0,0,0,0,0,1.19,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,4.791,71,115,0 0,0,0,0,2.25,0,0,0,0,0.75,0,0,0,0,0,0,0,0,1.5,0,0,0,0,0,0.75,0.75,1.5,1.5,0,0,0,0,0,0,0.75,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0.128,0,0,0.128,0.128,3.657,28,128,0 0,1.96,0,0,0,0,0,0,0,0,0,0,0,0.98,0,0,0,0,1.96,0,0.98,0,0,0,1.96,1.96,1.96,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0.98,0,0,3.92,0,0,0,0,0,0,0,0,3.129,17,97,0 0,0,0,0,0.58,0,0,0,0,0,0,0,0,0,0,0,0,0,0.87,0,0.29,0,0,0,0.29,0.29,0.29,0.58,0,0,0,0,0,0.29,0.58,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0.22,0,0,2.038,0,13.562,351,434,0 0,0,0,0,0,0,0,0,0,1.51,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1.51,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1.615,4,21,0 0,0,0.59,0.11,0,0,0,0,0.11,0.23,0,0.11,0,0,0,0.11,0,0,0.95,0,0.47,0,0,0,0.23,0,0.71,0,0,0,0,0,0,0.11,0,0.47,0,0,0,0,0,0,0,0,0,0,0,0,0.227,0.322,0.113,0.056,0.075,0,2.546,38,601,0 0.39,0,0,0,1.17,0,0,0,0,0.39,0,1.17,0,0,0,0,0,0.39,3.12,0.39,1.17,0,0,0,0,0,0.39,0.78,0,0,0,0,0,0,0,0,0,0,0,0.39,0,0,0,0,0,0,0,0,0.07,0.07,0,0.07,0,0,2.069,13,89,0 0,0,0,0,1.17,0,0,0,0,1.17,0,0,0,0,0,0,0,0,2.35,0,0,0,0,0,0,0,1.17,1.17,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1.551,10,45,0 0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,15.38,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,7.69,0,0,0,0,0,0,0,0,0,4.8,19,24,0 0,0,0,0,0,0,0,0,0,0,0,0.52,0,0,0,0,0,0,1.05,0,1.05,0,0,0,0.52,2.11,1.58,1.05,0,0.52,0,0,0,0,0.52,0,0,0,0,0,0,0,0,0,0.52,0,0,0,0,0.164,0,0,0,0,2.173,11,113,0 0,0,1.58,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,4.76,1.58,1.58,3.17,0,1.58,0,0,0,0,1.58,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0.4,0,0,0.601,0,3.36,13,84,0 0,0,0,0,0.56,0,0,0,0,0,0,2.27,0,0,0,0,0,0,1.98,0,0.28,0,0,0,0.85,0.85,0.85,0,0,0.28,0,0,0,0,0,0,0,0,0,0,0,0,0.28,0,0.28,0,0,0,0,0.09,0.135,0,0,0,1.962,15,155,0 0,0,0.16,0,0.64,0,0,0.16,0,0,0,1.91,0,0,0,0.16,0,0,3.04,0,1.76,0,0,0,0,0.32,0.32,0,0,0,0.16,0,0,0,0,0.16,0,0,0,0.16,0,0,0,0,0.32,0,0,0,0,0.055,0,0,0.055,0,1.798,7,196,0 0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1.49,0,0,2.98,0,0,0,0,0,0,0,1.49,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1.761,5,37,0 0,0,0,0,0,0.65,0,0.65,0,0.65,0,1.97,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0.65,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0.65,0,0,0,0.108,0.108,0,0,0.108,0,1.924,9,102,0 0,0,0,0,0,0,0,0,0,0,0,1.74,0,0,0,0,0,0,2.9,0,0.58,0,0,0,0,0,0.58,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0.201,0,0,0,0,1.794,6,70,0 0,0,1.49,0,0,0.37,0,0,0,0,0,0.74,0.37,0,0,0,0,0,2.24,0,0.74,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1.49,0,0.37,0,0,0,0,0,0,0,0,0,0,0,0.06,0,0,0,0,1.79,5,111,0 0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0.344,0,0,0,0,1.88,13,47,0 0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,20.83,4.16,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,3.555,18,64,0 0.87,0.43,0,0,0,0,0,0,0,0.43,0,0.87,0,0,0,0,0,0,3.5,0,1.31,0,0,0,1.31,0.43,0,0,0,0,0,0,0,0,0.43,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0.19,0,0,0,0,2.085,25,73,0 0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,2.29,0,0,0,0,0,2.29,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0.76,0,0,0,0,0.258,0,0,0,0,3.74,53,101,0 0,6.34,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1.58,0,0,0,0,0,1.58,1.58,1.58,1.58,1.58,1.58,1.58,3.17,0,3.17,1.58,1.58,0,0,0,1.58,0,0,0,0,0,0,0,0,0,0.431,0,0,0,0.215,3.461,12,90,0 0.32,0,0,0,0.32,0,0,0,0,0,0,0.32,0,0,0,0,0,0,0.96,0,2.56,0,0,0,0,0,0.64,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0.234,0,0.058,0,0,1.068,3,47,0 0,1.23,0,0,0,0,0,0,0,1.23,0,0.61,2.46,0,0,0,0,0,3.08,0,1.23,0,0,0,0,0,0.61,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0.224,0,0,0,0,1,1,20,0 0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,25,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,2,4,6,0 0.28,0,0,0,0.28,0,0,0,0.28,0,0.28,3.97,0,0,0,0,0,0,3.97,0,0.85,0,0,0,0.28,1.13,0,0,0,0,0,0,0,0,0,0,0.28,0,0.28,0,0,0,0,0.28,0,0,0,0.28,0,0,0,0.08,0,0,2.396,16,139,0 0,0,0,0,0,0,0,0,0,0,0,0,1.88,0,0,0,0,1.88,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1.88,0,0,0,0,0,0,0,0,0,0,1.533,5,23,0 0,0,0,0,0,0,0,0,0,0,0,5.71,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1.166,2,14,0 0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1.72,6.89,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,2.466,13,37,0 0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1.53,6.15,0,0,0,0,0,0,0,0,0,0,1.53,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1.714,6,36,0 0,0,0,0,0,0,0,0,0,0,0,1.56,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1.56,0,1.56,0,3.12,0,1.56,0,1.56,1.56,0,0,0,0.215,0.215,0,0,0,1.666,12,30,0 0,0,2.5,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,2.5,0,0,0,0,0,0,0,0,0,0,0,0,1,1,15,0 0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0.552,0,0,0,0,1,1,4,0 0,0,0.97,0,0,0,0,0,0,1.94,0,0.97,0,0,0,0,0,0.97,5.82,0,0.97,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0.293,0,0,0,0,2.187,14,70,0 0,0,0,0,0,0,0,0,0,1.19,0,2.38,0,0,0,0,0,0,1.19,0,0,0,0,0,1.19,1.19,0,2.38,0,0,0,0,0,0,0,1.19,0,0,0,0,0,0,0,0,0,0,0,0,0,0.621,0,0,0,0,2.617,11,89,0 0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,20,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,1,5,0 0,0,0,0,0.34,0,0,0.34,0,1.7,0,1.36,0.34,0,0,0,0.34,0,1.36,0,0,0,0,0,0.34,0.34,1.02,0,0,0,0,0,0,0,0.34,0,0.34,0,0,0,0,0,0,2.38,0,0,0,0,0,0.055,0.11,0,0,0,1.421,8,91,0 0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,4.76,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,1,4,0 0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,3.57,0,0,0,0,0,0,0,0,0,0,0,7.14,0,0,0,0,0,0,0,0,0,0.578,1.734,0,0,0,0,3.083,24,37,0 0,0,1.33,0,0,0,0,0,0,1.33,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1.33,1.33,0,2.66,0,0,0,0,0,0,0,1.33,0,0,0,0,0,0,0,0,0,0,0,0,0,0.413,0,0,0,0,4.36,46,109,0 0.23,0,0.46,0,0,0,0,0.23,0,0.23,0,0,0,0,0,0,0,0,3.69,0,0.69,0,0,0,1.84,0.23,0,0,0,0.23,0,0,0,0,0,0,0.23,0,0,0,0,0,0,0,0,0,0,0,0,0.253,0,0,0.031,0,2.016,19,244,0 0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,9.52,4.76,4.76,4.76,4.76,4.76,4.76,4.76,0,4.76,4.76,4.76,0,0,0,4.76,0,0,0,0,0,0,0,0,0,1.257,0,0,0,0,3.333,11,30,0 0,0,0,0,0,0,0,0,0,0,0,0.33,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0.11,0,0,0.22,0,0,0.33,0.11,0,0,0,0,0.11,0,0,0,0,0,0,0.053,0.16,0,0,0,0,2.367,24,651,0 0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,3.22,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0.552,0,0,0,0,1.6,4,8,0 0,0,0,0,0,0,0,0,0,0,0,3.38,0,0,0,0,1.69,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0.204,0,0.408,0,0,6.187,47,99,0 0,0,0.32,0,0.32,0,0,0,0,0,0,0.64,0,0,0,0,0,0,0.32,0,0,0,0,0,0.64,0.64,0,0,0,0,0,0,0,0,0,0.32,0.64,0,0,0,0,0,0,0,0,0,0,0,0,0.04,0,0,0,0,1.677,10,156,0 0.23,0,0.23,0,1.17,0,0,0,0,0,0,1.41,0,0,0,0,0.11,0,0.47,0,0.7,0,0.11,0,1.29,0.11,0,0,0.11,0.23,0,0,0,0,0,0,0.11,0,0,0,0,0.11,0,0,0.23,0,0,0,0,0.015,0,0,0,0.015,1.486,7,162,0 2,0,0,0,0,0,0,0,0,0,2,2,0,0,0,0,0,0,2,0,8,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,5.888,29,53,0 0,0,0,0,0,0,0,0,0,0,0,1.24,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,6.22,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1.6,7,64,0 0,0,0,0,0,0,0,0,0,0,0,0.98,0,0,0,0,0,0,0,0,0,0,0,0,0.49,0.98,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0.49,0,0,0,0.159,0,0,1.45,7,74,0 0.29,0,0.44,0,0.73,0,0,0,0,0,0,0.58,0,0,0,0.14,0,0,0.73,0.14,0.29,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0.29,0,0,0,0,0.14,0,0.14,0,0,0,1.32,0.02,0.321,0.18,0.14,0,0,1.891,24,522,0 0,0,0.91,0,0,0,0,0.45,0,0,0,0,0,0,0,0,0,0,2.28,0,0,0,0,0,0.91,0.91,0,0,0,0,0,0,0,0,0.45,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1.32,7,103,0 0,0,1.09,0,0,0,0,0,0,1.09,0,2.19,0,0,0,0,0,0,0,0,0,0,0,0,1.09,1.09,0,2.19,0,0,0,0,0,0,0,1.09,0,0,0,0,0,0,0,0,0,0,0,0,0,0.325,0,0,0,0,4.586,51,133,0 0,0.51,0,0,1.02,0,0,0.51,0,0,0,0,0,0,0,0.51,0.51,0,0.51,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0.51,0,0,0,0.51,0,0,0,0.51,0,0,0,0,0,0.071,0,0,0,0,2.076,9,108,0 0,0.61,0,0,1.22,0,0,0,0,3.68,0,0,0,0,0.61,0,0,0,1.84,0,1.84,0,0,0,0.61,0.61,0,0,0,2.45,0,0,0,0,0,0,0.61,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1.476,8,62,0 0,0,0,0,0,0,0,0,0,0.91,0,0,0,0,0,0,0,0,1.83,0,0,0,0,0,1.83,0.91,2.75,0.91,0.91,0.91,0.91,0.91,0,0.91,0.91,0.91,0.91,0,0.91,0.91,0,0,0.91,0,0.91,0,0,0,0,0.46,0,0,0,0,1.918,13,71,0 0,0,0,0,0,0,0,0,0,0,0,4.58,0,0,0,0,0.91,0,0,0,0.91,0,0,0,1.83,0,0,0,0,0.91,0,0,0,0,0,0.91,0,0,0.91,0,0,0,0,0,0,0,0,0,0,0.12,0,0.241,0,0,3.541,26,85,0 0,0,0.36,0,0.36,0,0,0,0,0,0,0.36,0,0,0,0,0,0,0,0,0,0,0,0,6.25,5.51,0,0,0,0,0,0,0,0,0,0,1.47,0,0,0,0,0,0,0,0,0,0,0,0.279,0.767,0.139,0,0,0,3.722,20,268,0 0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,16.66,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,1,5,0 0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,20,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,1,4,0 0,0,0.18,0,0,0.09,0,0,0,0,0,0.94,0.37,0,0,0,0.28,0,0,0,0,0,0,0,1.41,0,0,0,0,0,0,0,0.84,0,0,0.47,0.09,0.09,0,0,0,0,0,0,0,0,0,0,0.052,0.065,0,0,0,0,2.022,19,451,0 0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0.72,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1.44,0,0,0,1.44,0,0.72,0,1.44,1.44,0,0,0,0,0.114,0.114,0,0.114,1.645,12,51,0 0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0.81,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0.81,0,0,0,1.62,0,0.81,0,1.62,1.62,0,0,0,0,0.137,0,0,0.137,1.636,12,36,0 0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1.36,0,0,0,0,0,0,0,0,0,1,1,8,0 0,0,0,0,0,0,0,0,0,0,0,0.85,0,0,0,0,0,0.85,2.56,0,0,0,0,0,0.85,0.85,0,0.85,0,0,0,0,0,0,0.85,0,1.7,0,0,0,0,0,0.85,0,0.85,0,0,0,0.142,0,0.142,0,0,0,1.717,12,67,0 0,0,0,0,0,0,0,0,0,1.22,0,0,0,0,0,0,0,0.61,1.84,0,0,0,0,0,2.45,1.84,1.22,1.22,0.61,0.61,0.61,0.61,0,0.61,1.22,0.61,0.61,0,0,0.61,0,0,0.61,0,0.61,0,0,0,0.095,0.38,0.19,0.19,0,0,1.857,12,104,0 0,0,0,0,0,0,0,0,0,0,0,2.81,0,0,0,0.35,0,0.35,0.35,0,0,0,0,0,0.35,0,0,0,0,0,0,0,0,0,0,0,0.35,0,0,0,0,0,0,0,0,0,0,0,0,0.293,0,0,0,0,1.226,5,146,0 0,0,0,0,0,0,0,0,0,0,0,0.54,0.54,0,0,0,0,0,0.54,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0.54,0,0,0.54,0,0,2.7,0,0.54,0,0,0,0,0,0.087,0,0.087,0,0,2.363,5,52,0 0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,2.22,0,0,0,0,0,2.22,2.22,0,0,0,0,0,0,0,0,2.22,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1.769,8,23,0 0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1.81,0,0,0,0,0,3.63,0,0,0,0,0,0,0,0,0,0,0,1.81,0,0,0,0,0,0,0,0,0,1.181,3,13,0 0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1.36,2.04,0,0.68,0,0,0,1.36,0.68,0,0.68,0,0.68,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0.241,0,0,0,0,2.461,17,96,0 0,0,0,0,6.25,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,2,6,10,0 0,0,0,0,0,0,0,0,0,0,0,1.75,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0.87,0,0,0,0,0,0,0,0,0,1.75,0,0,0,0,0,0,0,0,0.87,0,0,0,0,0,0,1.795,11,79,0 0,0,0,0,0,0,0,0,0,0.9,0,1.81,0,0,0,0,0,0,0,0,0,0,0,0,0.9,0.9,0,1.81,0,0,0,0,0,0,0,0.9,0,0,0.9,0,0,0,0,0,0,0,0,0,0,1.208,0,0,0,0,5.111,58,138,0 0,0,0,0,0,0,0,0,0,0,0,0.35,0,0,0,0,0,0,0.35,0,1.06,0,0,0,1.41,1.06,0.7,0.35,0.35,0.7,0.35,0.35,0.35,0.35,0.35,0.35,0.35,0,0,0.35,0,0,0.35,0,0.7,0,0,0,0,0.222,0.055,0,0,0,1.506,12,119,0 0,0,0,0,0,0,0,0,0,0,0,2.85,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0.48,0,0,2,7,26,0 0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0.5,0,0,0,0,0,1.01,0,0.5,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0.5,0,0,0,0.08,0.564,0,0,0.161,0,1.712,20,137,0 0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0.33,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0.67,0,0.33,0,0.042,0,0,0,0,2.519,46,131,0 0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0.56,0,1.12,0,0,0,0,0,0,0,0,0.56,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0.56,0,0,0,0,0.096,0,0,0,0,1.15,4,46,0 0,0,0.18,0,0.56,0,0,0,0,0,0,0.75,0.37,0,0,0,0,0,0,0,0,0,0,0,3.03,0,0,0,0,0,0,0,0,0,0,0.18,0.18,0,0,0,0,0,0.18,0,0.18,0,0,0,0,0.056,0,0,0.112,0,2.188,19,232,0 0,0,0.8,0,2.42,0,0,0,0,0,0,0.4,0,0,0,0,0,0.4,5.26,0,1.61,0,0,0,0.4,0.4,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1.61,0,0,0,0,0,0,0.27,0,0,2.36,35,59,0 0,0,0,0,0,0,0,0,0,0,0,7.69,0,0,0,0,0,0,0,0,0,0,0,0,3.84,3.84,0,0,7.69,0,0,0,0,0,0,0,0,0,0,0,0,7.69,0,0,0,0,0,0,0,0,0,0.581,0,0,1.615,4,21,0 0.21,0,0.21,0.21,0.63,0,0,0,0,0,0.42,0,0.21,0,0,0.84,0,0.42,1.9,0,0,0,0.21,0,0,0,0,0,0,0,0,0,0,0,0,0,0.21,0,0,0,0,0,0,0,0,0,0,0,0,0.031,0,0.374,0.062,0,2.892,71,405,0 0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1.17,0,0,0,0,0,4.7,2.35,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,2.882,21,49,0 0,0,0.22,0,0,0,0,0,0,0,0,0.68,0.9,0,0,0.22,0.22,0,0,0,0,0,0,0,1.36,0,0,0,0,0,0.22,0,0,0,0,0,0.45,0,0,0,0,0,0,0,0,0,0,0,0,0.094,0,0,0,0,2.182,42,203,0 0,0.08,0.08,0,0,0.08,0,0.16,0,0,0,0.81,0.16,0,0,0,0.08,0,0,0,0,0,0.08,0,3.49,0.48,0,0,0.32,0.24,0,0,0,0,0,0.32,0.08,0,0,0,0,0.08,0,0,0,0,0,0.08,0.022,0.111,0,0,0.055,0,2.145,21,693,0 0.22,0,0.22,0,0.45,0,0,0,0,0,0,0,0.68,0,0,0.22,0,0,0.68,0.22,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0.22,0,0,0,0.68,0,0.22,1.83,0.22,0.91,0,0,0,0.267,0.038,0,0,0,1.649,13,94,0 0,0,0,0,0,0,0,0,0,0,0,1.24,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,6.22,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1.6,7,64,0 0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,13.33,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,6.66,0,0,0,0,0,0,1.149,0,0,1.5,3,12,0 0,0,0.81,0,1.63,0,0,0,0,0,0,0,0,0,0,0,0,0,0.81,0,0,0,0,0,0,0,0.81,0,0,0,0,0,0,0,0,0,0,0.81,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1.09,2,12,0 0,1.17,0,0,0,0,0,0,1.17,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1.17,2.35,0,0,0,0,0,0,0,0,0,1.17,0,0,0,0,0,0,0,0,0,0,1.17,0.376,0,0,0,0,0,2.925,16,117,0 0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,4.34,0,0,0,0,0,0,0,0,0,1,1,8,0 0,0,0,0,0,1.34,0,0,0,0,0,0,0,0,0,0,0,0.67,1.34,0,0,0,0,0,0,0,0.67,0,0,0,0,0,1.34,0,0,0,0,0,0,0,0,0,0,0.67,0.67,0,0,0,0,0.111,0,0,0,0,1.285,5,27,0 0,0,0.55,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1.65,0,0.55,0,0,0,0,0,0.55,0,0,0,0,0,0,0,0,0,0,0.55,0,0,0,0,0,1.1,0.55,0,0,0,0,0.092,0,0,0,0,1.84,5,46,0 0,0,0,0,0,0,0,0,0,0,0,1.35,0,0,0,0,0,0,2.7,0,1.35,0,0,0,0,1.35,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1.35,0,0,0,0,0,0,0,0,0,0,0,1.88,5,47,0 0,0,1.56,0,1.56,0,0,0,0,1.56,0,6.25,0,0,0,0,0,1.56,1.56,0,1.56,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0.278,0,0,0,0,1,1,11,0 0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,8.33,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0.687,0,0,0,0,1.903,17,59,0 0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,9.52,4.76,4.76,4.76,4.76,4.76,4.76,4.76,0,4.76,4.76,4.76,0,0,0,4.76,0,0,0,0,0,0,0,0,0,1.257,0,0,0,0,3.333,11,30,0 0,0,0,0,0.27,0,0,0,0,0.27,0,0.54,0,0.54,0,0,0.54,0,1.63,0,0,0,0,0,4.89,1.35,0.27,0.27,0.27,0.27,0.27,0.27,0,0.27,0.27,0.27,0,0,0.27,0.27,0,0,0.27,0,0.81,0,0,0,0,0.192,0.153,0,0,0,4.608,35,424,0 0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,2.63,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,2.63,0,0,0,0,0,0,2.63,0,0,0,0,0,0,0,0,0,0.414,0,0,2.705,13,46,0 0,0,0.2,0,0,0,0,0.2,0,0.2,0,0,0,0,0,0,0,0.2,0.2,0,0,0,0,0,0.2,0.2,0,0.41,0,0,0,0,0.2,0,0.2,0,0.2,0,0,0,0,0,0,0,0,0,0,0,0,0.148,0,0,0,0,1.669,15,187,0 0,0.22,0,0,0.66,0.22,0,0.44,0.44,0.89,0,0,0.22,0.22,0,1.33,0,0,0.89,0,0.44,0,0,0.22,3.34,3.56,0.66,0.22,0.22,0.22,0.22,0.22,0,0.22,0.22,0.22,1.11,0,0,0.22,0,0,0.22,0,0.22,0,0,0,0.148,0.372,0.111,0.372,0.223,0,3.425,42,411,0 0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,2.66,0,0,0,0,0,1.33,0,0,1.33,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0.478,0,0,0,0,2.166,18,52,0 0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,25,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,2.333,5,7,0 0,0,0.62,0,0,0,0,0,0,0,0,0.62,0,0,0,0,0,0.62,1.25,0,0,0,0,0,1.25,0.62,0,0.62,0,0.62,0.62,0,0.62,0,0.62,0.62,0,0,0,0,0,0,0,0,0.62,0,0,0,0,0.084,0,0.169,0,0,1.863,10,82,0 0,0.04,0.25,0,0.04,0.04,0,0,0.16,0.08,0.2,0.62,0,0,0,0.16,0.04,0,0.71,0,0.41,0,0.12,0,2.01,0.41,0,0.12,0,0.08,0.12,0,0,0,0.04,0,0.2,0,0,0,0,0,0,0.08,0.08,0,0,0.04,0.012,0.274,0.012,0.031,0.056,0,1.83,23,1479,0 0,0,0,0,0,0,0,0,0,0,0,4.34,0,0,0,0,0.62,0,0,0,0.62,0,0,0,3.1,0,0,0,0,0.62,0,0,0,0,0,0.62,0,0,0.62,0,0,0,0,0,0.62,0,0,0,0,0.166,0,0.333,0,0,4.255,34,200,0 0,0.39,0.19,0,0.19,0.09,0,0,0,0,0,0.29,0,0,0.29,0,0,0.29,0.89,0,0.29,0,0,0,0.49,0.49,0,0,0,0,0,0,0,0,0,0,0.19,0,0,0,4.75,0,0.09,0,0.09,5.74,0,0,1.352,0.08,0,0.016,0,0,1.679,17,178,0 0,0.39,0.19,0,0.19,0.09,0,0,0,0,0,0.29,0,0,0.29,0,0,0.29,0.89,0,0.29,0,0,0,0.49,0.49,0,0,0,0,0,0,0,0,0,0,0.19,0,0,0,4.75,0,0.09,0,0.09,5.74,0,0,1.353,0.08,0,0.016,0,0,1.679,17,178,0 0,0.39,0.19,0,0.19,0.09,0,0,0,0,0,0.29,0,0,0.29,0,0,0.29,0.89,0,0.29,0,0,0,0.49,0.49,0,0,0,0,0,0,0,0,0,0,0.19,0,0,0,4.75,0,0.09,0,0.09,5.74,0,0,1.353,0.08,0,0.016,0,0,1.679,17,178,0 0,0,0.93,0,0.31,0,0,0,0.31,0,0.31,0.93,0,0,0,0,0.62,0,3.75,0,3.43,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0.31,0,0,0,0,0,0,0,0,0,0,0,0.054,0.108,0,0.054,0,0.054,2.735,14,145,0 0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,4,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0.729,0,0,1.875,4,15,0 0,0,0,0,0,0,0,0,0,0.84,0,0.84,0,0,0,0,0,0,4.2,0,0,0,0,0,1.68,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0.119,0,0,0,1.454,9,32,0 0,0,0,0,0,0,0,0,0,0,0,4.58,0,0,0,0,0.91,0,0,0,0.91,0,0,0,1.83,0,0,0,0,0.91,0,0,0,0,0,0.91,0,0,0.91,0,0,0,0,0,0,0,0,0,0,0.124,0,0.249,0,0,2.576,14,67,0 0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,4.34,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1.333,3,12,0 0,0,0.86,0,0,0,0,0.86,0,0,0,1.73,0,0,0,0,0,0,0,0,0,0,0,0,3.47,5.21,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0.86,0,0,0.125,0,0,0,0,1.8,9,72,0 0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,4.41,4.41,0,1.47,0,0,0,0,0,0,1.47,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,2.565,10,59,0 0.06,0,0.19,0,0.26,0.06,0,0.19,0,0.06,0,1.12,0.06,0.19,0,0,0.52,0,0,0.59,0.06,0,0.39,0,3.23,0,0,0,0,0,0,0,0.06,0,0,0.19,0.13,0,0,0,0,0,0,0.06,0,0,0,0,0.072,0.117,0,0,0.063,0,2.121,25,751,0 0,0,1.09,0,0,0,0,0,0,0,0,1.09,0,0,0,0,0,0,3.29,0,0,0,0,0,0,0,0,0,0,2.19,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1.111,2,20,0 0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1.44,0,1.44,0,2.89,1.44,0,0,0,0,0.227,0,0,0,1.64,12,41,0 0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1.166,3,14,0 0,0,0,0.14,0.42,0,0,0.14,0,0,0,0.98,0,0.14,0,0,0.7,0,0,0,0,0,0,0,1.82,0.28,0,0,0.28,0.7,0,0,0,0,0,0.28,0.14,0,0,0,0,0,0,0,0.14,0,0,0,0,0.077,0,0,0,0,1.502,6,257,0 0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,7.69,2.56,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,2,6,24,0 0,0,0,0,0,0,0,0,0,0,0,4.25,0,0,0,0,0,0,6.38,0,0,0,0,0,0,0,2.12,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1.133,3,17,0 0,0,0,0,0.68,0,0,0,0,0.68,0,0.68,0,0,0.68,0,0,0.68,1.36,0,0.68,0,0,0,2.72,1.36,1.36,0.68,0.68,0.68,0.68,0.68,0,0.68,0.68,0.68,0.68,0,0.68,0.68,0,0,0.68,0.68,0.68,0,0,0,0.104,0.418,0.104,0,0,0,2.102,12,82,0 0,0,0,0,0,0,0,0,0,0.39,0,0,0,0,0,0,0,0,0.39,0,0,0,0,0,2.35,0.39,1.17,0.39,0.39,0.78,0.39,0.39,0,0.39,0.39,1.56,0.39,0,0,0.39,0,0.39,0.39,0,0.39,0,0,0.39,0,0.314,0,0.125,0,0,1.955,13,133,0 0,0,0,0.15,0.46,0,0,0.15,0,0,0,0.92,0,0.15,0,0,0.46,0,0,0,0,0,0,0,2.15,0.3,0,0,0.3,0.92,0,0,0,0,0,0.3,0.15,0,0,0,0,0,0,0,0.15,0,0,0,0,0.085,0,0,0,0,1.535,6,238,0 0,0,0,0,0.68,0,0,0,0,0.68,0,0,0,0,0.68,0,0,0,0.68,0,0,0,0,0,2.72,2.72,2.04,2.04,0.68,0.68,0.68,0.68,0,0.68,2.04,0.68,0.68,0,0.68,0.68,0,0,0.68,0.68,0.68,0,0,0,0,0.828,0.621,0,0,0,2.277,12,123,0 0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1.92,0,0.64,0,0,0,0,3.2,0,0,0,0,0,0,0,0,0,0.64,0,0,0,0,0,0,0,0,0,0,0,0,0.213,0,0,0.106,0,0,2.714,47,95,0 0,0,0.2,0,0.2,0,0,0,0,0.8,0,1,0,0,0,0,0,0,0.2,0,0.2,0,0,0,1.4,1.6,0.2,0.2,0.2,0.2,0.2,0.2,0,0.2,0.4,0.2,1,0,0.2,0.2,0,0,0.2,0.8,0,0,0,0.2,0,0.429,0.03,0,0,0,2.703,50,346,0 0.87,0,0.87,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1.75,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0.493,0,0,0,0,1.344,4,39,0 0,1.12,0,0,0,0,0,0,1.12,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1.12,2.24,0,0,0,0,0,0,0,0,0,1.12,0,0,0,0,0,0,0,0,0,0,1.12,0.361,0,0,0,0,0,2.875,16,115,0 0,0,0.43,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0.43,0,0,0,0,0,6.92,3.89,0,0,0,0,0,0,0,0,0,0,2.16,0,0,0,1.29,0,0,0.43,0,0,0,0,0.318,0.717,0.159,0.079,0,0,4.411,19,300,0 0.05,0,0.1,0,0.15,0.05,0,0,0.57,0,0,0.26,0,0,0,0,0,0.05,0.21,0,0.15,0,0,0,0.63,0.68,0.05,0,0,0,0,0,0.73,0,0,0,0.42,0,0,0,0,0,0,0,0,0,0.05,0,0.193,0.17,0.059,0,0.014,0,3.461,66,1170,0 0.07,0,0.14,0,0.07,0,0,0,0.74,0,0,0.22,0,0.07,0,0,0,0.07,0.29,0,0.22,0,0,0,0.74,0.81,0.07,0,0,0,0,0,0.22,0,0,0,0.44,0,0,0,0,0,0,0,0,0,0,0,0.116,0.2,0.042,0,0.021,0,2.79,36,681,0 0.12,0,0.6,0,0.6,0,0,0,0,0,0,0.12,0.12,0,0.12,0,0.73,0,0.6,0,0.48,0,0,0,1.58,0,0,0.24,0,0,0.48,0,0,0,0.36,0,0.12,0,0,0,0,1.33,0,0.12,0.12,0,0,0.12,0.016,0.148,0,0.033,0.016,0,2.056,65,364,0 0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1.369,0,0,0,0,1.25,2,5,0 0,0,0.42,0,0.42,0.14,0,0,0,0,0,1.56,0.14,0,0,0,0.28,0,0.14,0,0.14,0,0,0,3.12,0,0.14,0,1.27,0.42,0,0,0,0,0,0.56,0.28,0,0.14,0,0,0,0.14,0,0.14,0,0,0,0.058,0.019,0.019,0,0,0,2.345,17,333,0 0,0,2.04,0,2.04,0,0,0,0,0,0,0,0,0,0,0,0,0,2.04,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,4.08,0,0,0,0,0,0,0,0.722,0,0,0,0,1.1,2,11,0 0,0,0,0,0,0,0,0,0,0,0,1.13,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1.13,0,0,3.4,0,0,0,0,0,0,0.198,0.396,0,0,0,0,2.076,5,27,0 0,0,0,0,0,0,0,0,0,0,0,2.77,0,0,0,0,0,0,2.77,0,0,0,0,0,5.55,2.77,2.77,2.77,5.55,2.77,2.77,2.77,0,2.77,2.77,2.77,0,0,0,2.77,0,0,0,0,0,0,0,0,0,1.229,0,0,0,0,3.25,11,39,0 0,0,0,0,0,0,0,0,0,0,0,1.42,0,0,0,0,0,0,0,0,4.28,0,0,0,2.85,1.42,4.28,1.42,1.42,1.42,1.42,1.42,0,1.42,1.42,1.42,1.42,0,1.42,1.42,0,0,1.42,0,1.42,0,0,0,0,0.419,0,0,0,0,2.133,12,64,0 0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0.46,0,0,0,0.185,0,0,0,0,1.904,11,80,0 0.2,0.06,0.2,0,0.4,0,0,0,0,0,0,0.95,0.27,0,0,0.06,0.06,0,0,0,0,0,0,0,3.47,0,0,0,0,0,0,0,0.06,0,0,0.34,0.06,0,0,0,0,0,0.13,0.06,0.06,0,0,0.13,0.028,0.093,0,0,0.018,0,2.423,26,693,0 0,0,0,0,0.38,0,0,0,0,0,0,2.28,0,0,0,0,0,0,0.76,0,0,0,0,0,1.14,0.76,0,0,0.38,1.14,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1.352,3,46,0 0.06,0.04,0.29,0,0.08,0.06,0,0.13,0.02,0.11,0,0.47,0,0.02,0.02,0.13,0.13,0.08,0.24,0,0.17,0,0,0,0,0,0,0.02,0.02,0,0,0,1.7,0,0,0.22,0.83,0.02,0,0,0.06,0.04,0.02,0.06,0,0.29,0.02,0.15,0.032,0.176,0,0.003,0.003,0,2.201,79,2631,0 0,0,0,0,0,0,0,0,0,2.5,0,5,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0.436,0,0,1.7,8,17,0 0,0,0,0,0,0,0,0,0,0,0,4.76,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0.769,0,0,1.428,4,10,0 0.2,0.06,0.2,0,0.4,0,0,0,0,0,0,0.95,0.27,0,0,0.06,0.06,0,0,0,0,0,0,0,3.47,0,0,0,0,0,0,0,0.06,0,0,0.34,0.06,0,0,0,0,0,0.13,0.06,0.06,0,0,0.13,0.027,0.09,0,0,0.018,0,2.423,26,693,0 0.79,0,0.79,0,0.79,0,0,0,0,0,0,0.79,0,0,0,0,0,0,0.79,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0.147,1.166,4,42,0 0,0,0,0,0,0,0,0,0,1.19,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1.19,1.19,0,2.38,0,0,0,0,0,0,0,1.19,0,0,1.19,0,0,0,0,0,0,0,0,0,0,0.404,0,0,0,0,3.379,11,98,0 0,0,0.32,0,0.49,0.16,0,0,0,0,0,1.48,0,0,0,0,0.32,0,0.16,0,0.16,0,0,0,1.31,0,0,0,1.31,0.49,0,0,0,0,0,0.65,0.16,0,0,0,0,0,0,0,0.16,0,0,0,0,0.022,0,0,0,0,1.638,6,154,0 0,0,0,0,0.31,0,0,0,0,0,0,0.31,0,0,0,0,0,0,0,0,0,0,0,0,0.31,0,0,0.63,0,0.63,0,0,0.63,0,0.31,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0.045,0,0,0,0,1.813,11,107,0 0,0,0,0,0,0,0,0.67,0,0,0,1.35,0,0,0,0.67,0,0,4.05,0,2.02,0,0,0,0.67,0,0,0,0,0,0,0,0,0,0.67,0,0,0,0,0,0,0,0,0,0.67,0,0,0,0,0.386,0,0,0,0,3.27,19,121,0 0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,9.3,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,3.222,9,29,0 0,0,1.63,0,0,0,0,0,0,0,0,1.63,0,0,0,1.63,0,0,1.63,0,1.63,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1.181,3,13,0 0,0,3.44,0,0,0,0,0,0,0,0,0,0,0,0,0,0,3.44,0,0,3.44,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1.727,4,19,0 0,0,0,0,0.33,0,0,0,0,0.66,0,0,0,0,0,0,0,0,0.66,0,0.33,0,0,0,7.61,2.64,0,0,0,0,0,0,0.33,0,0,0,1.32,0,0,0,2.31,0.33,0,0.33,0,0,0,0,0.349,0.524,0.116,0,0,0,3.627,19,341,0 0,0,0,0,1.4,0,0,0,0,0,0,2.81,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0.239,0,0,1.923,7,50,0 0,0,0,0,0,0,0,0,0,0.53,0,2.68,0,0,0,0,0,0,0.53,0,0,0,0,0,0.53,0.53,0,1.07,0,0,0,0,0,0,0,0.53,0,0,1.07,0,0,0,0,0,0,0,0,0,0,0.194,0,0,0,0,3.731,21,153,0 0,0,0,0,0,0,0,0,0,0,0,3.57,0,0,0,0,0,0,0,0,10.71,0,0,0,0,0,3.57,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,1,7,0 0,0,0,0,0.51,0,0,0,0,0,0,0,0.51,0,0,0,0,0,1.55,0,0,0,0,0,0,0,0.51,0,0,0,0,0,1.03,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0.281,0,0,1.363,5,45,0 0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,8.33,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,16.66,0,0,0,0,0,0,0.925,0,0,1.833,6,11,0 0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,9.52,4.76,4.76,4.76,4.76,4.76,4.76,4.76,0,4.76,4.76,4.76,0,0,0,4.76,0,0,0,0,0,0,0,0,0,1.257,0,0,0,0,3.333,11,30,0 0,0,0,0,0,0,0,0,0,0,0,0.85,0,0,0,0,0,0,0,0,0,0,0,0,0.42,0.42,0,0,0,0,0,0,0,0,0,1.28,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1.536,8,106,0 0,0,0,0,7.14,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,7.14,0,0,0,0,0,0,0,0,0,1.6,4,8,0 0,0,1.96,0,0,0,0,0,0,0,0,0,0,0,0,1.96,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,3.92,0,0,3.92,0,0,0,0,0,0,0,0,0,1.647,4,28,0 0,0,0,0,0,0,0,0,0,0,0,1.06,0,0,0,0,0,0,1.06,0,0,0,0,0,3.19,1.06,0,0,0,0,0,0,0,0,0,0,1.06,0,2.12,0,0,0,0,0,0,0,0,0,0,0.168,0,0.168,0,0,1.75,7,63,0 0,0,0,0,0,0,0,0,0,0,0,3.19,0,0,0,0,1.06,0,0,0,0,0,0,0,0,1.06,0,0,0,0,0,0,0,0,0,0,0,0,1.06,0,0,0,0,0,0,0,0,0,0,0.143,0,0,0,0,2.714,13,76,0 0.64,0,0.64,0,0,0,0,0,0,0,0,0.64,0,0,0,0.64,0,0,0.64,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0.64,0,0,0.64,0,0.64,0,0,0,0,0.309,0.619,0,0,0,0,1.727,5,57,0 0,0,0.47,0,1.91,0,0,0,0,0,0,1.91,0,0,0,0.47,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1.43,0,0,0.95,0,0,0,0,0,0,0,0,0,1.233,4,37,0 0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,7.69,0,0,0,0,0,0,0,0,0,1.333,2,4,0 0,0,0,0,0.76,0.25,0,1.27,0,0,0,0.76,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1.14,5,65,0 0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1.38,0,0,1.38,0,0,0,0,0,0,0,2.77,0,0,0,0,0,0,0,0,0,1.38,0,0,0,0,0,0,0,1.38,0,0,1.38,0,0,0,0,0,0,1.666,9,35,0 0,0,0,0,0,0,0,0,0,1.85,0,0,0,0,0,0,0,0,3.7,0,0,0,0,0,0,0,1.85,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0.349,0,0,1.47,4,25,0 0,0,0.59,0,0.29,0.59,0.59,0.29,0,0.29,0.29,0,0,0,0,0,0,0.89,3.58,0,1.49,0,0,0,0.29,0.29,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0.29,0,0,0,0.089,0,0,0.044,0.134,0,1.6,15,120,0 0,0,0,0,0,0,0,0,0,0.28,0,0.56,0,0,0,0,0,0,0,0,0,0,0,0,1.13,0.84,0,0.56,0,0.84,0,0,0,0,0.56,0,0.56,0,0,0,0,0,0,0,0,0,0,0.28,0,0.262,0,0,0,0,3.25,75,286,0 0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,3.7,0,0,0,0,0,0,0,0,0,0.523,0,0,2.571,10,36,0 0,0,0.08,0,0,0.25,0,0.25,0.08,0,0,1.17,0.08,0.25,0,0,0.42,0,0,0,0,0,0,0,3.11,0,0,0,0,0,0,0,0.16,0,0,0.25,0.25,0,0,0,0,0,0,0,0,0,0,0,0.034,0.08,0,0,0,0,2.023,27,694,0 0,0,1.36,0,0.68,0.68,0,0,0,0,0,0,0,0,0,0,0,0,2.05,0,0,0,0,0,0,0,1.36,0,0,0,0,0,0,0,0,0,0.68,0,0,0,0,0,0,0,0,0,0,0,0,0.357,0,0,0,0,1.294,5,44,0 0,0,0,0,0,0.14,0,0,0,0.14,0,0,0,0,0,0,0,0.29,0.74,0,0.14,0,0,0,0.14,0.14,0.59,0,0,0,0,0,0.14,0,0,0,0.59,0,0,0,0,0,0,0,0.44,0,0,0,0,0.297,0,0,0,0,1.803,27,238,0 0.03,0.03,0,0,0,0,0,0,0.06,0.09,0.03,0.15,0,0,0,0,0.03,0.12,0.03,0,0,0,0,0,0.46,0.27,0,0,0.03,0.06,0,0,0,0,0,0.03,0.15,0,0,0,0.36,0,0.03,0,0.12,1.19,0,0,0.024,0.178,0,0.128,0,0,3.427,49,1827,0 0,0,0.27,0,0,0,0,0,0,0.83,0,0.55,0,0,0,0,0,0,0,0,0,0,0,0,0.55,0.27,0,0.55,0,0.27,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0.27,0,0,0.082,0.164,0,0,0,0,2.235,51,199,0 0,0,2.27,0,0,0,0,0,0,0,0,4.54,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,2.27,0,0,0,0,0,0,0,0,0,0,0,0,0.296,0,0,5.25,32,63,0 0,0,0.7,0,0,0.7,0,0,0,0,0,0,0,0,0,0,0,0,3.54,0,0.7,0,0,0,0,0,1.41,0,0,0,0,0,0,0,0,0,0.7,0,0,0,0,0,0,0,0.7,0,0,0,0.126,0.252,0,0,0,0,1.375,5,55,0 0,0,0.64,0,0,0.64,0,0,0,0,0,0,0,0,0,0,0,0,3.84,0,0.64,0,0,0,1.28,0.64,1.92,0.64,0.64,0.64,0.64,0.64,0,0.64,0.64,0.64,0.64,0,0.64,0.64,0,0,0.64,0,1.28,0,0,0,0,0.225,0,0.225,0,0,1.902,12,78,0 0,0,0,0,0,0,0,0,0,0,0,1.58,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,4.76,0,0,0,0,0,0,0,0,0,0,6.34,0,0,0,0,0,0,0,0,0,0,1.259,3,34,0 0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,9.09,0,0,0,0,0,0,0,9.09,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,9.09,0,0,0,0,0,0,0,0,0,1,1,6,0 0,0,0,0,0,0,0,0,0,2.98,0,0,0,0,1.49,0,0,0,0,0,0,0,0,0,1.49,1.49,0,0,0,0,0,0,0,0,0,0,1.49,0,0,0,0,0,1.49,0,0,0,0,0,0,0.209,0.209,0,0,0,3.5,17,49,0 0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,14.28,0,0,0,0,0,0,0,0,0,0,0,0,14.28,0,0,0,0,0,0,0,0,0,1.123,0,0,1.3,4,13,0 0,0,0,0,0,0,0,0,0,0,0,2.18,0,0,0,0,0,0,1.45,0,0,0,0,0,2.18,0,0,0.72,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1.45,0,0,0,0,0,0.122,0,0,0,0,1.785,18,75,0 0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1.63,0,0,0,0,0,0,0,0,0,0,1.63,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,2.187,5,35,0 0,0.99,0,0,0.49,0,0,0.49,0,0,0,0.49,0,0,0,0,0,1.98,2.97,0,1.48,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0.49,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0.081,0,0,1.348,4,58,0 0,0,0,0,0.52,0,0,0,0,0,0,0,0,0,0,0,0,0.52,0,0,0.52,0,0,0,0.52,0.52,0.52,1.05,0,0.52,0,0,0,0,0,0,0,0,0,0,0,0.52,0,0,0,0,0,0,0,0.166,0,0,0,0,3.888,55,140,0 0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,8.1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,2.7,0,0,0,0,0,0,0,0,0,1,1,5,0 0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,8.1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,2.7,0,0,0,0,0,0,0,0,0,1,1,5,0 0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,8.1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,2.7,0,0,0,0,0,0,0,0,0,1,1,5,0 0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,8.1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,2.7,0,0,0,0,0,0,0,0,0,1,1,5,0 0,0,0,0,0.76,0,0,0,0,0,0,0,0,0,0,0,0.76,0,0,0,0,0,0,0,2.3,0.76,0,0,0,1.53,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,2.3,7,138,0 0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,8.1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,2.7,0,0,0,0,0,0,0,0,0,1.8,5,9,0 0,0.2,0.2,0,0,0,0,0,0,0,0,1.03,0,0,0,0,0,0.62,0.41,0,0,0,0,0,2.49,0.62,0,0,0,0,0,0,0,0,0,0.2,0.2,0,0,0,0,0,0,0,0,0,0,0.2,0,0.087,0,0,0,0,2.797,127,512,0 0.04,0.09,0.31,0,0.04,0.22,0.04,0,0,0.58,0.09,1.17,0,0,0,0.13,0.04,0,1.3,0,1.17,0,0.04,0,0.9,0.54,0,0.04,0,0.18,0.18,0,0,0,0.18,0.04,0.31,0,0.22,0,0.04,0,0,0,0.13,0.04,0,0.09,0.013,0.224,0,0.027,0.006,0,1.784,29,1192,0 0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0.99,0,0.99,0,0,0,0,0,1.98,0,0,0,0,0,0,0,0,0,0.99,0,0,0,0,0,0,0.99,0.99,0,0,0,0,0,0,0,0,0,1.478,5,34,0 0,0,0,0,0,0,0,0,0,0,0,1.4,0,0,0,0,0.7,0,1.4,0,1.4,0,0,0,0,0,0.7,0,0,0,0.7,0,0,0,1.4,0,0,0,0,2.11,0,0,0,0,0,0,0,0,0,0.267,0.066,0,0,0,17.952,200,377,0 0,0,0.59,0,0.59,0,0,0,0,0,0,2.38,0,0,0,0,0,1.19,0.59,0,0,0,0,0,1.78,1.19,0,0.59,0,0.59,0.59,0,0,0,0.59,0.59,0,0,1.19,0,0,0,0,0,0,0,0,0,0,0.177,0,0.088,0,0,1.8,10,81,0 0,0.26,0.26,0,0.26,0,0,0.26,0,0,0.26,1.07,0,0,0,0,0.53,0,1.07,0,1.07,0,0,0,1.34,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0.111,0,0,0.037,0,1.564,8,194,0 0,0,5.1,0,2.04,0,0,0,0,0,0,1.02,0,0,0,0,0,0,1.02,0,0,0,0,0,0,0,1.02,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1.094,0,0,0,0,1.29,5,40,0 0.27,0,0.13,0,0.82,0,0,0,0,0,0,0.55,0.41,0,0,0,0,0,1.24,0,1.1,0,0,0,1.65,0.82,0.13,0.13,0.13,0.13,0.13,0.13,0,0.13,0.13,0.13,0.41,0,0,0.13,0,0.41,0.13,0,0.41,0,0,0.27,0.041,0.102,0.02,0.02,0,0,2.78,34,367,0 0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,33.33,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,1,3,0 0,0,0,0,0,0,0,0,0,0,0,4.9,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,2.454,5,27,0 0,0,0,0,0,0,0,0.39,0,0,0,0.39,0,0,0,0,0,0,0,0,0,0,0,0,0.39,0,0,0,0.39,0.39,0,0,0.39,0,0,0.39,0.39,0,0,0,0,0,0,0,0,0,0,0,0,0.049,0,0,0,0,2,38,124,0 0,0,0,0,1.58,0.79,0,0,0,0,0,3.17,0,0,0,0,0,0.79,0,0,0,0,0,0,1.58,1.58,0,1.58,0,0,0.79,0,0,0,0.79,0,0,0,0,0,0,0,0,3.17,0,0,0,0,0,0.263,0,0,0,0,2.575,15,103,0 0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1.36,0,0,0,0,0,0,0,0,0.68,0,0.68,0,0.136,0,0,0,0,4.341,46,178,0 0,0,0,0,3.27,0,0,0,0,0,0,0,0,0,0,0,0,0,1.63,0,0,0,0,0,0,0,1.63,0,0,0,0,0,0,0,0,0,0,0,0,0,0,4.91,0,0,0,0,0,0,0,0,0,0,0,0,1.545,5,17,0 0,0,0,0,0,0,0,0.4,0,0,0,0.81,0.4,0,0,0,0,0,1.22,0,0,0,0,0,2.86,2.45,0,0,0.4,0.4,0,0,0,0,0,0,0.4,0,0.4,0,0,0,0,0.4,0,0,0,2.45,0.126,0.063,0.063,0.063,0,0,1.611,12,116,0 0,0,0,0,0,0,0,0,0,0,0,3.33,0,0,0,0,0,0,0,0,0,0,0,0,0,0,3.33,0,0,0,0,0,0,0,0,0,0,0,0,0,0,3.33,0,0,3.33,0,0,0,0,0,0,0,0,0,1.3,4,13,0 0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1.21,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1.21,0,0,1.21,0,0,0,0,0,0,0,0,0,0,0,0,1.166,2,21,0 0,0,1.16,0,0,0,0,0,0,0,0,2.32,0,0,0,0,0,3.48,0,0,1.16,0,0,0,2.32,1.16,0,1.16,0,1.16,1.16,0,0,0,1.16,1.16,0,0,1.16,0,0,0,0,0,0,0,0,0,0,0.139,0,0.139,0,0,1.515,10,50,0 0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,1,5,0 0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1.2,0,0,0,0.163,0,0,0,0,1.153,3,15,0 0,0.24,0,0,0.24,0,0,0.24,0,0.49,0,0,0,1.48,0,0,0,0,0.99,0,0,0,0,0,0.49,0,0.24,0,0,0,0.24,0,0,0,0.24,0,0.74,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0.16,0,9.31,235,1108,0 0,0,0,0,0,0,0,0.5,0,0,0,1,0.5,0,0,0,0,0,1.5,0,0,0,0,0,1,0.5,0,0,0.5,0.5,0,0,0,0,0,0,0,0,0,0,0,0,0,0.5,0,0,0,2.5,0,0.075,0,0.075,0,0,1.483,6,89,0 0,0,0,0,2.08,0,0,0,0,0,0.83,0.83,0,0,0,0.83,0,1.66,2.91,0,0.41,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0.131,0,0.329,0,0.065,2.962,11,157,0 0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1.12,1.12,0,1.12,0,0,0,1.12,1.12,0,2.24,0,1.12,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0.326,0,0,0,0,4.689,55,136,0 0,0,0,0,0,0,0,0,0,0,0,0.32,0,0,0,0,0,0.32,1.28,0,0.32,0,0,0,4.48,3.52,0.96,0.96,0.64,0.32,0.32,0.32,0,0.32,0.64,0.32,0.32,0,0,0.32,0,0,0.32,0,0.96,0,0,0,0.264,0.211,0.105,0.052,0,0.105,2.258,15,192,0 0,0,0,0,0,0,0,0,0,0,0,0.5,0,0,0,0,0,0.5,1.5,0,0.5,0,0,0,2.01,1.5,1,1,0,0,0,0,0,0,0.5,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0.168,0.084,0.084,0,0.168,2.303,15,129,0 0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,2.17,0,0,0,0,0,0,0,0,0,2.17,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0.682,0,0,0,0,4.208,15,101,0 0,0,1.19,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1.19,0,0,1.19,0,0,0,4.76,2.38,0,1.19,0,1.19,1.19,0,0,0,1.19,1.19,0,0,0,0,0,0,0,0,0,0,0,0,0,0.286,0,0.286,0,0.143,2.724,13,79,0 0,0,0,0,0.73,0.24,0,0,0,0.24,0,0.49,0,0,0,0,0,0,2.46,0,0.49,0,0,0,1.23,0.73,1.47,0.49,0.49,0.49,0.49,0.49,0,0.49,0.49,0.49,0,0,0.49,0.49,0,0,0.73,0,0.73,0,0,0,0,0.287,0.041,0.041,0,0.041,1.792,12,224,0 0,0,0,0,0,0,0,0,0,1.56,0,0,0,0,0,0,0,0,1.56,0,0,0,0,0,1.56,1.56,0,3.12,0,0,0,0,0,0,0,1.56,0,0,0,0,0,0,0,0,0,0,0,0,0,0.484,0,0,0,0,3,11,81,0 0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,4.76,0,0,0,0,0,0,0,4.76,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,4.76,0,0,4.76,0,0,0,0,0,0,1.8,5,9,0 0.01,0,0.03,0,0.33,0.03,0,0,0.23,0.01,0,0.09,0,0,0,0.13,0,0.01,0.07,0,0.05,0,0,0,0.53,0.55,0.01,0,0,0,0,0,0.47,0,0.01,0.01,0.45,0.01,0,0,0,0,0.01,0,0,0,0.05,0,0.2,0.127,0.064,0,0.005,0,2.589,38,2349,0 0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,2.32,0,0,0,0,0,0,0,0,0,0,0,2.32,0,0,0,0,0,0,0,0,0,2,4,16,0 0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1.6,4,8,0 0.05,0,0.1,0,0.16,0.05,0,0,0.48,0,0,0.16,0,0,0,0,0,0.05,0.21,0,0.16,0,0,0,0.64,0.69,0.05,0,0,0,0,0,0.26,0,0,0.16,0.75,0,0,0,0,0,0,0,0.05,0,0,0,0.172,0.195,0.062,0,0.015,0,2.758,47,1073,0 0,14.28,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1.8,5,9,0 0,0,0,0,0,0,0,0,0,1.36,0,2.73,0,0,0,0,0,0,1.36,0,0,0,0,0,1.36,1.36,0,2.73,0,0,0,0,0,0,0,1.36,0,0,0,0,0,0,0,0,0,0,0,0,0,0.68,0,0,0,0,3.142,11,88,0 0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,2.37,0,1.01,0,0,0,0.67,1.69,1.01,0.33,0,0.67,0,0,0,0,0.33,0,0.33,0,0,0,1.01,0,0.33,0,1.01,1.01,0,0,0,0.108,0,0,0,0,1.851,13,100,0 0,0,0.38,0,0.38,0,0,0,0,0,0,0.38,0.38,0,0,0,0,0,1.14,0,0.38,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0.38,0,0,0,0,0.414,0,0.276,0,0,1.104,2,53,0 0.26,0,0,0,0,0.26,0,0,0.26,0,0,0.78,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,2.35,0,0,0,0,0,0,0,0.26,0,0,0,0,0.52,0,0,0,0.033,0,0,0,0,2.921,61,111,0 0,0,3.44,0,3.44,0,0,0,0,0,0,0,0,0,0,0,0,0,3.44,0,0,0,0,0,0,0,3.44,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0.609,0,0,0,0,1.5,4,15,0 0,0,0,0,0,0.13,0,0.27,0,0,0,0.54,0.13,0,0,0,0.68,0,0,0,0,0,0,0,1.9,0.13,0,0,0,0,0,0,0.13,0,0,0.54,0.27,0,0,0,0,0,0,0,0,0,0,0,0.161,0.143,0,0,0,0,2.296,21,473,0 0,0,0,0,0,0,0,0,0,0.84,0,0,0,0,0,0,0.84,0,1.68,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0.84,0,0.84,0,0,0,0.84,0,0.84,0.84,0,0,0,0,0.137,0.413,0,0.137,3.052,13,116,0 0,0,0,0,0,0,0,0,0,0,0,0.42,0,0,0,0.42,0,0.42,2.12,0,0.42,0,0,0,1.7,0.42,0.85,0.85,0.42,1.7,0.42,0.85,0,0.85,0.42,0.42,0.85,0,0.85,0.42,0,0.42,0.85,0,0.85,0,0,0,0,0.403,0.134,0.134,0,0,2.202,17,163,0 0,0,0.26,0,0,0,0,0,0,1.05,0,1.31,0,0,0,0,0,0,0.26,0,0.26,0,0,0,0.26,1.05,0,0,0,0,0,0,0,0,0.26,0,1.05,0,0,0,0,0,0,1.05,0,0,0,0.26,0,0.439,0,0,0,0,2.724,50,237,0 0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,7.14,0,0,0,0,0,0,0,0,0,1.333,3,8,0 0,0,0,0,0,0,0,0,0,1.92,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1.92,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0.363,0,0,0,0,1,1,10,0 0,0,0.67,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0.67,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0.542,0,0.217,0,0,1.34,14,67,0 0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,2.5,4,10,0 1.17,0,0,0,0,0,0,0,0,0,0,0,0,1.17,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1.607,8,45,0 0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,2.32,0,1.16,0,0,0,0,0,0,1.16,0,2.32,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0.408,0,0,0,0,2.125,17,51,0 0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,15.38,7.69,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,6.8,17,34,0 0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1.125,2,9,0 0,0,0,0,0,0,0,0,0,0,0,1.92,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1.655,8,48,0 1.63,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,3.27,0,0,1.63,0,0,0,0,0.571,0,0,0,0,1.181,3,13,0 0,0,0,0,1.13,0,0,0,0,1.13,0,0,0,0,0,0,0,1.13,2.27,0,3.4,0,0,0,0,0,1.13,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1.13,0,0,0,0,0,0,0,0,0,0,0,0,1,1,11,0 0,0,0.87,0,0,0,0,0,0,0.87,0,1.75,0,0,0,0,0,0,0,0,0,0,0,0,0.87,0.87,0,1.75,0,0,0,0,0,0,0,0.87,0,0,0,0,0,0,0,0,0,0,0,0,0,0.608,0,0,0,0,2.941,11,100,0 0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,5.26,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,5.26,0,0,0,0,0,0,0,0,0,1,1,6,0 0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,4.34,0,0,0,0,0,0,0,0,4.34,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0.735,0,0.735,0,0,2.571,10,18,0 0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,2.5,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,2.5,0,0,0,0,0.465,0,0,0,0,1,1,5,0 0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,2.43,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1.555,3,14,0 0,0,1.33,0,0,0,0,0,0.66,0,0,0,0,0,0,0,0,0,0,0,1.33,0,0,0,2,1.33,2,0.66,0.66,0.66,0.66,0.66,0,0.66,0.66,0.66,0,0,0.66,0.66,0,0,0.66,0,0.66,0,0,0,0.3,0.2,0.1,0,0,0,1.979,12,97,0 0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0.81,0,0,0,0,0,0,0,0,0,0,0,0.175,0,0,0,0,0,1.873,8,118,0 0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0.46,0,0,0,0.202,0,0,0,0,2,11,82,0 0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,4.34,0,2.17,0,0,0,0,0,2.17,0,0,0,0,0,0,0,0,0,0,0,4.34,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,1,8,0 0,0,3.38,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1.69,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1.222,3,11,0 0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,2.25,6,9,0 0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,2.666,6,8,0 0,0,0,0,1.31,0.65,0,0,0,0.65,0,1.31,0,0,0,0,0,0,3.28,0,0,0,0,0,1.31,0.65,1.97,0.65,0.65,0.65,0.65,0.65,0,0.65,0.65,0.65,0,0,0,0.65,0,0,0.65,0,0.65,0,0,0,0,0.35,0,0.116,0,0,2,12,88,0 2,0,0,0,0,0,0,0,0,0,2,2,0,0,0,0,0,0,2,0,8,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,5.888,29,53,0 0,0,0,0,0,0,0,0,0,0.83,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0.83,0,0,0,0,0,0.83,0,0,0,0,0,0,0,0,0,0,0,0.83,0,0,0,0,0.131,0.262,0,0,0,4.128,28,161,0 0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,25,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,2,4,6,0 0,0,1.58,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1.58,0,0,1.58,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1.464,7,41,0 0,0,0,0,0,0,0,0,0,0,0,0,0,1.61,0,0,0,0,0,0,1.61,0,0,0,0,0,1.61,0,0,0,0,0,0,0,0,0,0,0,0,0,0,3.22,0,0,0,0,0,0,0.253,1.518,0,0.506,0,0,2.047,6,43,0 0,0,0,0,0,0,0,0,0,0,0,1.29,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0.64,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,2.275,8,91,0 0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0.42,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0.34,0.272,0,0,0,4.382,28,298,0 0,0,0,0,0,0.23,0,0,0,0.23,0,1.18,0,0,0,0,0.23,0,1.18,0,0.47,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0.71,0,0,0,0,0,0,0,0,0,0,0.71,0,0,0,0,0.069,0,2.216,44,215,0 0,0,0,0,0,0,0.67,0,0,0,0,0,0,0,0,0,0,0,3.37,0,0.67,0,0,0,0,0,0.67,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1.35,0,0,0,0,0,0,0,0,0,1.87,7,58,0 0.86,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0.86,0,0,0,0,0.86,0,0,0,0,0,1.72,0,0,0,0,0,0,0,0,0,0,1.564,7,61,0 0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,25,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,2.333,5,7,0 0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,25,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,2.333,5,7,0 0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,25,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,2.333,5,7,0 0,0,0,0,0,0,0,0,0,0.87,0,2.63,0,0,0,0,0,0,0.87,0,0,0,0,0,0.87,0.87,0,1.75,0,0,0,0,0,0,0,0.87,0,0,0,0,0,0,0,0,0,0,0,0,0,0.308,0,0,0,0,3.029,11,103,0 0,0,0.2,0,0,0.1,0,0.51,0,0.1,0,1.33,0.1,0.2,0,0,0.82,0,0,0,0,0,0,0,2.97,0,0,0,0,0,0,0,0.1,0,0,0.2,0.1,0,0,0,0,0,0,0,0,0,0,0,0.08,0.16,0,0,0.053,0,2.224,19,574,0 0,0,0.87,0.87,0.87,0.43,0,0,0,0,0,0,0,0,0,0,0,0.43,0.43,0,0,0,0,0,1.74,1.74,0,1.74,0,0,0,0,0,0,0.43,0,1.31,0,0.43,0,0,0,0.43,0,0.43,0,0,0,0,0.298,0.059,0.059,0,0,2.554,15,212,0 0,0,1.58,0,0,0,0,0,0,0,0,1.58,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1.58,0,0,1.58,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1.482,7,43,0 0,0,0.72,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0.72,0,0,0,0,0,0,0,0,0,0,0,0.72,0,0.36,0,0.36,0,0,0,0,0.36,0,0,0,0,0,0,0,0,1.646,12,107,0 0.39,0,0.39,0,0.59,0,0,0,0,0,0,0.19,0,0,0,0,0,0.19,0.59,0,0.19,0,0,0,1.39,0,0,0.39,0,0,0,0,0.59,0,0.39,0,0.19,0,0,0,0,0,0,0,0.39,0.19,0,0,0,0.191,0,0,0,0,2.566,34,349,0 0,0,0,0,0,1.01,0,0,0,0,0,0,0,0,0,0,0,0,2.02,0,1.01,0,0,0,2.02,1.01,3.03,1.01,1.01,1.01,1.01,1.01,0,1.01,1.01,1.01,0,0,0,1.01,0,0,0,0,1.01,0,0,0,0,0.476,0,0,0,0,1.875,11,45,0 0,0,0,0,0,0,0,0,0,0,0,0.28,0.28,0,0,0,0,0,0.57,0,0,0,0,0,0.86,0,0,0,0,0,0,0,0,0,0,0.28,0,0,0,0,0,0.28,0,0,0,0.28,0,0,0,0.216,0,0.043,0,0,1.3,7,52,0 0,0,0,0,1.05,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1.58,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0.072,0,0,0,0,1.486,10,55,0 0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1.61,0,0,4.83,0,0,0,0,0,0,0,3.22,0,0,0,0,0,0,0,0,0,1.61,0,0,0,0,0,0,0,1.61,0,0,0,0,0,0,0,0,0,1.705,7,29,0 1.16,0,0,0,0,0,0,0,0,0,0,1.16,0,0,0,0,0,0,0,0,0,0,0,0,1.16,1.16,0,0,0,0,1.16,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0.176,0.176,0,0,0,0,1.476,7,31,0 0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,2.32,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,2.32,0,0,0,0,0,0,2.32,0,0,0,0,0,0,0,0,0,0.344,0,0,3.25,17,52,0 2.27,0,2.27,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,6.81,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0.401,0,0,0,0,1,1,5,0 0,0,0.55,0,0,0,0,0,0,0,0,0,0.55,0,0,0,0,0.55,3.31,0,0,0,0,0,2.2,1.65,0.55,0,0,0,0,0,0.55,0,0,0,0,0.55,0,0,0,0,0,0,0,0,0,0.55,0,0.27,0.18,0,0,0,3.596,34,187,0 0,0.77,0.77,0,0.77,0.38,0,0,0,0,0,1.16,0,0,1.16,0,0,0.38,3.48,0,1.16,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0.38,0,0,0,0,0,0,0,0,0,0,0,0,0.067,0,0,0,0,1.225,5,49,0 0.1,0.05,0.1,0,0.31,0.1,0,0,0,0.05,0,0.31,0.05,0,0,0.1,0.1,0,0.84,0.05,0.63,0,0,0.05,1.47,0.36,0,0.05,0,0.21,0.1,0,0,0,0.1,0.15,0.21,0,0.36,0,0,0,0,0,0.1,0,0,0.15,0.007,0.168,0,0.038,0.061,0.007,1.704,25,939,0 0,2.5,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,5,0,2.5,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,2.5,0,0,0,0,0,0,0,0,0,1.142,2,8,0 0,0,1.58,0,0,0,0,0,0,1.58,0,0,0,1.58,0,0,0,0,3.17,0,1.58,0,0,0,1.58,0,3.17,0,1.58,1.58,0,0,0,0,0,1.58,0,0,0,0,0,0,0,0,1.58,0,0,0,0,0,0,0,0,0,1.4,5,35,0 0,0,0,0,0,0,0,0,0,1.31,0,0,0,0,0,0,0,0,1.31,0,1.31,0,0,0,1.31,0,2.63,0,1.31,1.31,0,0,0,0,0,1.31,1.31,0,0,0,0,0,0,0,1.31,0,0,0,0,0,0,0,0,0,1.75,15,42,0 0,0,0,0,0,0,0,0,0,0,0,1.4,0,0,0,0,0.7,0,1.4,0,1.4,0,0,0,0,0,0.7,0,0,0,0.7,0,0,0,0,0,0,0,0,2.11,0,0,0,0,0,0,0,0,0,0.266,0.066,0,0,0,18,200,378,0 0,0,0.65,0,0,0,0,0,0,0,0,2.61,0,0,0,0,0,0,0.65,0,0.65,0,0,0,1.3,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0.65,0,0,0,0,0.109,0,0,0,0,0,1.411,4,48,0 0,0,0,0,2.17,0,0,0,0,0,0,0,0,4.34,0,0,0,0,2.17,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0.367,0,0,0,0,1,1,8,0 0,0,0,0,0,0.49,0,0,0.99,0.49,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0.49,0.99,0,0,0,0.49,0,2.48,0,0.49,0,0.49,0,0,0,0,0,0,0,0,0,0,0,0,0.062,0,0,0,0,2.824,29,161,0 0,0,0.53,0,0.53,0,0,0.53,0,1.07,1.07,0,0,0,0,1.07,0,0,3.76,0,1.07,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0.53,0,0,0,0,0.294,0,0.367,0,0,2.161,21,67,0 0,0,0,0,0,0,0,0,0,0,0.71,0,0,0,0,0.71,0,0,5,0,0,0,0,0,0,0,1.42,0,0,0,0,0,0,0,0,0,0.71,0,0,0,0,0.71,0,0,0.71,0,0,0,0,0.121,0,0,0,0,1.387,5,43,0 0,0,0,0,0,0,0,0,0,0,0,0.96,0,0,0,1.92,0,0,3.84,0,0,0,0,0,0,0,2.88,0,0,0,0,0,0,0,0,0,0.96,0,0,0,0,0,0,0,0.96,0,0,0,0.343,0,0,0.171,0,0,1.291,5,31,0 0,0.56,0,0,0.56,0,0,0,0,0,0,1.7,0,0,0,0,1.7,0,1.13,0,0,0,0,0,0,0,0,0,1.13,0.56,0,0,0,0,0,0,0,0,0.56,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,2.028,13,71,0 0.19,0,0,0,0,0,0,0,0,0,0,0.96,0.38,0,0,0,0.58,0,0,0,0,0,0.38,0,3.48,0,0,0,0,0,0,0,0,0,0,0.19,0.19,0.19,0,0,0,0,0,0,0,0,0,0,0.027,0.108,0,0,0.108,0,2.634,23,303,0 0,0,0,0,0,0,0,0,0,0,0,3.17,0,0,0,0,0,0,0,0,0,0,0,0,1.58,1.58,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0.216,0,0,0,0,1.92,6,48,0 0,0,0,0,0,0,0,0,0,0.7,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0.7,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0.227,0.227,0,0,0,4.043,28,186,0 0,0,0,0,0,0,0,0,0,0,0,5.88,0.65,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0.65,0,0,0,0,0.65,0,0,0,0,0,0,0,0,0,0,0,0,0,0,2.211,9,115,0 0,0,1.51,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,3.03,3.03,0,3.03,0,0,0,0,0,0,0,0,0,0,1.51,0,0,0,0,0,0,0,0,0,0,0.428,0,0,0,0,2.321,22,65,0 0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,7.14,0,0,0,0,0,0,0,0,0,1.428,4,10,0 0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,8.69,4.34,4.34,4.34,4.34,4.34,4.34,4.34,0,4.34,4.34,4.34,0,0,0,4.34,0,0,0,0,0,0,0,0,0,1.162,0,0,0,0,3.333,11,30,0 0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,2.32,0,0,2.32,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,2.32,0,0,0,0,0,0,0.416,0.416,0,0,0,0,1,1,9,0 0,0,1.58,0,1.05,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1.05,0,0,0,0,2.11,0,0,0,0,1.58,0,0.52,0,0,0,0,0,0,0,0,0,0,0,0,0.209,0,0,0,0,1.78,7,73,0 0.16,0,0,0,0.66,0,0,0,0,0,0,0.66,0,0,0,0,0,0,0.16,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0.16,0,0,0,0.16,0,0.16,0.33,0,0,0,0,0.118,0.047,0.023,0,0,0,1.983,19,240,0 0.12,0.12,0.12,0,0.12,0.12,0,0.37,0.12,0,0.12,0.74,0,0,0,0,0.24,0.12,0,0.24,0,0,0,0,0.49,0,0,0.12,0.12,0,0,0,0,0,0,0.98,0.24,0,0.12,0,0,0.49,0,0,0,0.74,0,0,0.017,0.089,0,0,0.017,0,1.403,18,456,0 0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,2.77,0,0,0,0.442,0,0,0,0,0,1.363,3,15,0 0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,2.32,2.32,0,0,0,0,0.409,0,0,0,0,1,1,10,0 0.24,0,0.12,0,0,0,0,0.36,0,0.12,0,1.09,0.12,0,0,0,0.6,0,0,0,0,0,0.12,0.12,3.63,0,0,0,0,0,0,0,0,0,0,0.12,0.12,0,0,0,0,0,0,0,0,0,0,0,0.016,0.05,0,0,0.016,0,2.309,25,425,0 0,0,0,0,0,0,0,0,0.66,0,0.66,0,0,0,0,1.98,0,1.98,1.98,0,0.66,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0.44,0,0,1.382,5,47,0 0,0,0,0,0.27,0,0,0.27,0,0,0,0.27,1.91,0,0.27,0.27,0,0.54,0,0,0,0,0,0,0.27,0.27,0,0.54,0,0.27,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0.27,0,0,0.039,0.117,0,0,0,0,2.52,55,189,0 0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1.17,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0.186,0.186,0,0,0,3.862,28,112,0 0,0,0,0,0,0,0,0,0,0,0.56,0.56,1.12,0,0,0,0,0,2.82,0,0,0,0,0,1.12,0.56,0,0,0,0.56,0.56,0,0,0,0,0,0.56,0,0,0,0,0,0,0,0,0,0,0,0.183,0.367,0,0,0,0,1.583,7,57,0 0,0,0,0,0,0,0,0,0,0,0,1.4,0,0,0,1.4,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1.4,0,1.4,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1.393,9,46,0 0,0,0,0,0,0,0,0,0,0.29,0,0.59,0,0,0,0,0,0,0,0,0,0,0,0,1.18,0.59,0,0.59,0,0.88,0,0,0,0,0.59,0,0.59,0,0,0,0,0,0,0,0,0,0,0.29,0,0.273,0,0,0,0,3.317,75,282,0 0,0,0,0,0,0,0,0,0,0.78,0,0,0,0,0,0,0,0,1.56,0,0,0,0,0,0.78,0.78,0,1.56,0,0,0,0,0,0,0,0.78,0,0,0,0,0,0,0,0,0,0,0,0,0,0.278,0,0,0,0,2.472,11,89,0 0,0,0,0,0,0.76,0,0,0,0,0,0.76,0,0.76,0,0,0,0,1.53,0,0.76,0,0,0,0,0,0.76,0,0,0,0,0,0.76,0,0,0,0,0,0,0,0,0.76,0,0,0,0,0,0,0.133,0.133,0,0,0,0,1.269,4,33,0 0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,4.16,0,0,4.16,0,0,0,0,0,0,0,0,0,0,0,4.16,0,0,0,0,0.704,0,0,0,0,1.428,4,10,0 0,0,0,0,0,0,0,0,0,0,0,0.86,0,0,0,0,0,0,1.73,0,0.86,0,0,0,6.08,3.47,0.86,0.86,0.86,0.86,0.86,0.86,0,0.86,0.86,0.86,0.86,0,0,0.86,0,0,0.86,0,0.86,0,0,0,0,0.267,0.133,0.133,0,0,2.607,13,73,0 0,0,0,0,2.85,0,0,0,0,0,0,0,0,2.85,0,0,0,2.85,0,0,2.85,0,0,0,0,0,2.85,0,0,0,0,0,2.85,0,0,2.85,0,0,0,0,0,0,0,0,2.85,0,0,0,0,0,0,0,0,0,3.8,29,38,0 0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,5,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,5,0,0,0,0,0,0,0.925,0,0,1.3,4,13,0 0,0,0,0,0.82,0,0,0,0,0.82,0,0,0,0,0,0,0,0,1.65,0,0.82,0,0,0,0,0,0.82,0,0.82,0.82,0,0,3.3,0,0,0,0,0,0,0,0,0.82,0,0,1.65,0,0,0,0,0.301,0.15,0,0,0,1.678,5,47,0 0.07,0,0.31,0,0,0,0,0,0.71,0,0,0.31,0,0,0,0,0,0,0.31,0,0.15,0,0,0,0.55,0.63,0.07,0,0,0,0,0,0.79,0,0,0,0.47,0,0,0,0,0,0,0,0,0,0,0,0.096,0.234,0.064,0,0.021,0,3.617,42,890,0 0.05,0,0.11,0,0.05,0.02,0,0,0.35,0,0,0.14,0,0,0.02,0,0,0.02,0.11,0,0.08,0,0,0,0.5,0.53,0.02,0,0,0,0,0,0.14,0,0,0,0.38,0,0,0,0,0,0,0,0,0,0,0.02,0.203,0.182,0.049,0,0.008,0,2.95,52,1617,0 0,0,0,0,0,0,0,0,0,0,0,0,0.48,0,0,0,0,0,0,0,0,0,0,0,2.18,0,0,0,0,0,0,0,0,0,0,0,0.24,0,0,0,0,0,0,0,0.24,0,0,0,0.067,0.067,0,0,0,0,1.98,59,204,0 0.03,0,0.03,0.13,0.06,0.03,0,0,0.32,0,0,0.09,0,0,0,0,0,0.03,0.13,0,0.09,0,0,0,1.4,1.44,0.03,0,0,0,0,0,0.09,0,0,0.03,1.27,0.03,0,0,0,0,0,0.06,0,0,0,0,0.226,0.235,0.181,0,0.009,0,2.754,34,2688,0 0.06,0,0.06,0,0,0.06,0,0,0.54,0,0,0.18,0,0.12,0,0,0,0.06,0.24,0,0.18,0,0,0,1.14,1.2,0.06,0,0,0,0,0,0.18,0,0,0,0.9,0,0,0,0,0,0,0,0.12,0,0,0,0.115,0.221,0.115,0,0.017,0,3.015,38,1345,0 0,0,0,0,0,0,0,0,0,1.05,0,1.05,0,0,0,1.05,0,0,1.05,0,0,0,0,0,0,1.05,3.15,0,0,0,0,0,0,0,0,0,1.05,0,1.05,0,0,0,1.05,2.1,1.05,0,0,0,0,0.677,0,0.338,0,0,1.468,12,47,0 0,0,0,0,0,0,0,0,0,0,0,3.22,0,0,0,0,0,0,0,0,0,0,0,0,1.61,1.61,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0.222,0,0,0,0,1.958,6,47,0 0,0,0.26,0,0,0,0,0,0,0,0,0.26,0.53,0,0,0,0.53,0,0.53,0,0,0,0,0,0.8,0,0,0,0,0,0,0,0,0,0,0.53,0,0,0,0,0,0,0,0,0,0,0,0,0,0.043,0,0,0.043,0,1.487,4,61,0 0.01,0.03,0.2,0,0.09,0.03,0,0,0.05,0.05,0,0.47,0.03,0.17,0,0.09,0.18,0.13,0.35,0.03,0.15,0,0,0.03,0,0,0.05,0.03,0.01,0,0,0,1.47,0,0,0.11,0.9,0,0,0.03,0,0.07,0,0.13,0.05,0.18,0,0.15,0.038,0.263,0.005,0.016,0,0.005,2.23,102,3168,0 0,0,0,0,0,0,0,0,0,1.01,0,0,0,0,0,0,1.01,0,0,0,0,0,0,0,2.02,1.01,2.02,1.01,1.01,1.01,1.01,1.01,0,1.01,1.01,1.01,1.01,0,1.01,1.01,0,0,1.01,4.04,1.01,0,0,0,0,0.814,0,0.162,0,0,2.125,12,68,0 0,0,0,0,0,0,0,0,0,3.33,0,3.33,0,0,0,0,0,0,3.33,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1.156,0,0,2.333,10,21,0 0,0,0,0,4.76,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,4.76,0,0,0,0,0,0,0,0,0,0,0,0,4.76,0,0,0,0,0,0,0,0,0,0,0,0,1,1,6,0 0,0,0,0,0,0,0,0,0,0,0,1.07,0,0,0,0,0,1.07,2.15,0,0,0,0,0,2.15,3.22,0,2.15,0,0,0,0,0,0,2.15,0,0,0,0,0,0,2.15,0,0,0,0,0,0,0,0,0,0,0,0,1.718,11,55,0 0,0,1.47,0,0,0,0,0,0,0,0,2.94,0,0,0,0,0,0,0,0,1.47,0,0,0,0,1.47,0,0,0,0,0,0,0,0,0,0,0,0,1.47,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,2.928,16,41,0 0,0,0,0,0,0,0,0,0,0,0,3.03,0,0,0,0,0,0,1.51,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0.595,0,0,1.5,4,15,0 0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,4.54,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0.763,0,0,2.222,8,20,0 0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,2.22,6.66,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,4.44,0,0,0,0,0,0,0,0,0,0,0,0,1.764,6,30,0 0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,11.11,0,0,0,0,0,0,0,0,0,0,0,0,0,0,11.11,0,0,0,0,0,0,0,0,0,0,0,0,1,1,7,0 0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,11.11,0,0,0,0,0,0,0,0,0,0,0,0,0,0,11.11,0,0,0,0,0,0,0,0,0,0,0,0,1,1,6,0 0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,14.28,0,0,0,0,0,0,0,0,0,0,0,0,1,1,4,0 0,0,0.86,0,0,0,0,0,0,0,0,0.86,0,0,0,0,0,0.86,0.86,0,2.58,0,0,0,1.72,0.86,0,0.86,0,0.86,0.86,0,0,0,0.86,0.86,0,0,0,0,0,0,0,0,0,0,0,0,0,0.11,0,0.11,0,0,1.812,10,58,0 0,0,0.74,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0.74,0,0,0,0,0,0,2.99,1.87,0,1.87,0,0.74,0.74,0,0,0,1.49,0.74,0.37,0,0,0,0,0,0.37,0,0,0,0,0,0,0.131,0.043,0.043,0,0,2.468,15,195,0 0,0,2.04,0,0,0,0,0,0,0,0,0,0,0,0,0,0,2.04,0,0,0,0,0,0,4.08,2.04,0,2.04,0,2.04,2.04,0,0,0,2.04,2.04,0,0,0,0,0,0,0,0,0,0,0,0,0,0.189,0,0,0,0,1.681,10,37,0 0,0,0,0,0,0,0,0,0,1.23,0,0,0,0,0,1.23,0,0,1.23,0,0,0,0,0,0,1.23,2.46,0,0,0,0,0,0,0,0,0,1.23,0,1.23,0,0,0,1.23,2.46,1.23,0,0,0,0,0.77,0,0.192,0,0,1.535,12,43,0 0,0,0,0,0,0,0,0,0,0,0,0,0,2.94,0,0,0,0,2.94,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0.476,0,0,0,0,1,1,7,0 0,0.66,0,0,0,0,0.66,0,0,1.33,0,0,0,0,0,0,0,0,0,0,0,0,0,0,8,6,1.33,0,0,2,0,0,0,0,0.66,0,0.66,0,0,0,2,0,0,0,0,0,0,0,0,0.228,0,0,0,0,2.673,18,139,0 0,0,0,0,0,0,0,0,0,0,0,0.81,1.62,0,0,0,0,0,1.62,0,0,0,0,0,0,0,0.81,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0.81,0,0,0,0,0,0,0,0,0,1.125,3,18,0 0,0,0.68,0,0,0,0,0,0,0.68,0,2.06,0,0,0,0,0,0,0.68,0,0,0,0,0,1.37,0.68,0,1.37,0,0,0,0,0,0,0,0.68,0,0,0,0,0,0,0,0,0,0,0,0,0.114,0.342,0,0,0,0,2.727,11,90,0 0,0,0,0,0,0,0,0,0,0,0,1.15,0,0,0,0,0,0,2.89,0,0.57,0,0,0,0,0,0,0,0,0.57,0,0,0,0,0,0,0,0,0,0,0,0,0,0.57,0,0,0,0,0,0,0,0,0,0,1.379,5,40,0 0,0,1.03,0,2.06,0,0,0,0,0,0,0,0,0,0,0,0,0,1.03,0,0,0,0,0,0,0,0,0,1.03,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1.03,1.03,0,0,0,0.373,0.186,0,0,0,0,1.529,5,26,0 0,1.25,0,0,0,0,0,0,0.62,1.25,0,0,0,0,0,0,0,0,1.87,0,1.25,0,0,0,1.87,1.87,1.25,1.87,0.62,1.87,0.62,0.62,0,0.62,1.87,0.62,1.87,0,0.62,0.62,0,0,0.62,0,1.87,0,0,0,0,0.475,0.57,0,0,0,2.238,12,141,0 0,0,0.94,0,0,0,0,0,0,0,0,0.94,0,0,0,0,0,0,1.89,0,0.94,0,0,0,1.42,0.94,0,0,0,0.47,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,2.24,13,112,0 0,0,0.18,0,0.09,0,0,0,0,0,0.27,2.31,0.27,0,0,0,0.27,0,0,0,0.18,0,0,0,3.06,0,0,0,0,0,0,0,0.27,0,0,0,0.18,0,0,0,0,0,0,0,0,0,0,0,0.143,0.117,0,0,0.039,0,2.313,24,590,0 0,0,0,0,0,0,0,0,0,0,0,1.3,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0.65,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,2.342,8,89,0 0.84,0,0.84,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1.69,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1.69,0,1.69,0,0,0,1.69,0,0.84,0,0,0,0,0.136,0,0,0,0,1.619,12,68,0 0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,18.75,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,6.25,0,0,0,0,0,0,0,0,0,1,1,6,0 0,0,0,0,1.11,0,0,0.55,0,3.91,0,0,0,0,0,0.55,0,0,1.67,0,2.23,0,0,0,0.55,0.55,0,0,0,2.79,0,0,0,0,0,0,0.55,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0.085,0,0,1.142,5,48,0 0,0,1.04,0,1.04,0,0,0,0,0,0,1.04,0,0,0,0,0,0,0,0,0,0,0,0,2.08,2.08,0,2.08,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0.313,0,0,0,0,2.108,22,78,0 0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,4.54,0,0,0,0,0,0,0,0,0,4.54,0,4.54,0,0,0,0,0,0,0,0,0,0.675,1.351,0,0,0,0,3.7,26,37,0 0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,3.57,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,3.57,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0.523,0,0,2.272,9,25,0 0,0,0.5,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,1,0,1.25,0,0,0,0.5,0.25,0,0,0,0,0,0,0,0,0,0,0.25,0,0,0,0,0,0,0,0,0,0,0,0,0.083,0,0,0,0.041,1.732,11,227,0 0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,5.88,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,1,4,0 0.06,0.03,0.46,0,0.13,0.06,0,0.03,0.03,0.16,0.19,0.59,0.06,0.03,0,0.19,0,0,1.23,0.19,1.06,0,0,0,1.53,0.23,0,0.06,0,0.06,0.36,0,0,0,0.13,0.09,0.13,0.16,0.19,0,0,0,0,0.06,0.03,0,0,0.13,0.024,0.231,0,0.019,0.009,0.004,1.885,25,1738,0 0,0,0.28,0,0.28,0,0,0,0,0,0,1.96,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0.28,0,0.56,0,0,0,0,0,0,0,0,0,0,0,0,0.18,0,0,0,0,1.523,11,160,0 0.52,0,1.05,0,0.52,0,0,0,0,0,0,3.17,0,0,0,0,0,0,0.52,0,0,0,0,0,2.64,2.64,0.52,0,0,0,0,0,0,0,0,0.52,1.05,0,2.64,0,0,0.52,0.52,1.58,0.52,0,0,0.52,0.084,0.169,0.084,0,0,0,1.577,12,112,0 0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,1,4,0 0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,3.12,0,0,0,0,0,6.25,3.12,3.12,3.12,3.12,3.12,3.12,3.12,0,3.12,3.12,3.12,0,0,0,3.12,0,0,0,0,0,0,0,0,0,0.913,0,0,0,0,3.454,11,38,0 0,0,0,0,0.58,0,0,0,0,0,0,0,0,0,0,0,0,0,0.58,0,0,0,0,0,0.58,0.58,0,0,0,0,0,0,0,0,0,1.16,1.74,0,0.58,0,0,0,0.58,0,0,0,0,1.74,0,0,0.118,0,0,0,6.428,98,315,0 0.16,0,0.67,0,0.33,0.16,0.33,0.83,0.33,0.67,0.33,1.51,0,0,0,0,1.67,0.33,2.01,1.67,3.85,0,0,0.33,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0.16,0,0,0,0,0,0,0,0,0,0.205,0,1.027,0.051,0,4.984,70,638,0 0,1.93,0.77,0,0.77,0,0,0.38,0,0,0.38,0,1.54,0,0,0.38,0.38,1.15,4.24,0,6.17,0,0,0,0,0,0.38,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0.109,0,0,1.043,4,95,0 0,0,0.5,0,0,0,0,0,0,0,0,0,0,0,0,0.5,0,0,2.02,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1.01,0,0,0,1.01,0,1.01,0,0,1.01,0,0,0.271,0.09,0.181,0.181,0,0,2,12,122,0 0,0,0.29,0,0.29,0,0,0,0,0,0,2.05,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0.58,0,0,0,0,0,0,0,0,0,0,0,0,0.187,0,0,0,0,1.484,11,147,0 0,0,0.13,0,0,0,0,0,0.13,0,0,0.27,0,0,0,0,0,0,0,0,0,0,0,0.13,0,0,0,0,0,0.13,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0.41,0,0,0,0,0.072,0,0.024,0,0,1.666,8,190,0 0,0,0,0,0,0,0,0,0.94,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0.94,0,0,0,0.94,0.94,0,0,0,0.203,0,0,0,0,1.416,6,34,0 0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1.4,0,0,0,1.4,1.4,0,0,0,0.133,0,0,0,0,1.5,6,30,0 0,0,0.88,0,0.88,0,0,0,0,0,0,4.42,0,0,0,0,0,0,0.88,0,0,0,0,0,1.76,1.76,0.88,0,0,0,0,0,0,0,0,0.88,0.88,0,3.53,0,0,0.88,0,1.76,0,0,0,0.88,0.139,0.279,0,0,0,0,1.326,6,61,0 0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,2,3,8,0 0,0,0.28,0,0,0,0,0.28,0.28,0.57,0,0.57,0,0,0,0,0,0,0,0,0.57,0,0,0,5.2,6.06,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0.28,0,0.28,0,0,0.04,0,0,0,0,1.883,9,211,0 0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,9.09,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,1,2,0 0,0,0,0,0.9,0,0,0,0,0,0,2.7,0,0,0,0,0,0,4.5,0,0,0,0,0,0.9,0,0.9,0,1.8,0,0,0,0,0,0,0,0,0,0,0,0,1.8,0,0,0,0,0,0,0,0,0,0,0,0,1.45,4,29,0 0,0,0.52,0,0.13,0,0,0,0,0,0,2.22,0.65,0.13,0,0,0.13,0,0.13,0,0.13,0,0.13,0,2.09,0,0,0,0,0,0,0,0.78,0,0,0.26,0.26,0,0,0,0,0,0,0,0,0,0,0,0.018,0.073,0,0,0,0,2.556,23,317,0 0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,5.12,0,0,0,0,0,0,0,0,2.56,2.56,0,0,0,0,0,0,0,2.56,0,0,2.56,0,0,0,0.375,0,0,2.25,7,36,0 0,0,0,0,0.3,0,0,0,0,0,0,0.3,0.91,0,0,0,0.6,0,1.21,0,0.3,0,0,0,0,0,1.21,0,0,0,0,0,0,0,0,0,0.3,0,0.3,0,0,0.6,0.3,0,0.6,0,0,0,0,0.042,0.042,0.042,0.042,0,1.183,13,168,0 0.43,0,0,0,0,0,0,0,0,0,0,0,0.86,0,0,0,0,0,4.34,0,0.86,0,0,0,0.43,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0.374,0,0,0.124,0,1.974,18,77,0 0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1.2,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1.336,0,0,0,0,3.38,7,71,0 0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,1,1,0 0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,4.34,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,1,6,0 0,0,0,0,0,0,0,0,0,0,0,3.52,0,0,0,0,0,0,0,0,2.35,0,0,0,0,1.17,0,0,0,1.17,0,0,0,0,0,0,0,0,1.17,0,0,2.35,0,0,0,0,0,0,0,0,0,0,0,0,2,12,54,0 0.18,0,0.18,0,0,0,0,0,0.94,0,0,0.37,0,0,0,0.09,0,0,0.37,0,0.18,0,0,0,0.56,0.66,0.09,0,0,0,0,0,0.37,0,0,0,0.28,0,0,0,0,0,0,0,0,0,0,0,0.18,0.167,0.051,0,0.025,0,4.434,87,909,0 0.11,0,0.22,0,0,0,0,0,1.02,0,0,0.34,0,0,0,0,0,0,0.45,0,0.22,0,0,0,0.56,0.68,0.11,0,0,0,0,0,0.34,0,0,0.11,0.22,0,0,0,0,0,0,0,0,0.11,0,0,0.076,0.198,0.03,0,0.03,0,4.211,81,678,0 0.06,0,0.06,0,0.19,0,0,0,0.73,0,0,0.19,0,0,0,0,0,0.06,0.26,0,0.19,0,0,0,0.79,0.86,0.06,0,0,0.06,0,0,1.06,0,0,0,0,0,0,0,0.13,0,0,0,0,0,0.06,0,0.363,0.143,0.057,0,0.019,0,2.716,37,880,0 0.05,0,0.45,0,0.15,0.1,0,0,0.55,0,0,0.15,0,0,0,0,0,0.05,0.2,0,0.15,0,0,0,0.65,0.7,0.05,0,0,0,0,0,1.16,0,0,0,0.81,0.05,0,0,0,0,0,0,0,0,0,0,0.203,0.195,0.05,0,0.014,0,2.88,45,1080,0 0,0,0,0,0,0,0,0,0,1.21,0,1.21,0,0,0,0,0,0,0,0,0,0,0,0,1.21,1.21,0,2.43,0,0,0,0,0,0,0,1.21,0,0,1.21,0,0,0,0,0,0,0,0,0,0,0.441,0,0,0,0,3.193,11,99,0 0,0,0,0,5.26,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,2,7,12,0 0.1,0.1,0.1,0,0.21,0.1,0,0,0.1,0.31,0,0.84,0.21,0,0,0.1,0,0.21,1.78,0,0.63,0,0,0.1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0.21,0,0,0.035,0.177,0.035,0.07,0.053,0,1.744,29,417,0 0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0.88,0,0.88,0,0,0,0,0,1.76,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0.88,0,0,0,0,0.139,0.139,0,0,0,1.763,9,67,0 0,0,0,0,0.37,0,0,0,0,0,0,0.37,0.37,0,0,0,0.75,0,1.12,0,0.37,0,0,0,0,0,0.75,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0.75,0,0,0.37,0,0,0,0,0.054,0,0,0.054,0,1.066,4,128,0 0.1,0,0,0,0,0.1,0,0,0,0,0,1.66,0.1,0.31,0,0,0.41,0,0,0,0,0,0,0,2.07,0,0,0,0,0.1,0,0,0,0,0,0.1,0.2,0,0,0,0,0,0,0,0,0,0,0,0,0.117,0,0,0.043,0,2.272,24,525,0 0,0,3.57,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,3.57,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,3.57,0,0,0,0,0.595,0,0,0,0,1.25,2,10,0 0,0,0.24,0,0,0,0,0,0,0.48,0,0.24,0,0,0,0,0.48,0.24,0.72,0.48,0.72,0,0,0,1.69,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0.034,0,0,0,0,3.202,87,285,0 0.29,0,0,0,0,0,0,0,0,0.29,0,0,0,0,0,0.29,0.29,0,2.38,0,0.29,0,0,0,1.19,0.59,2.38,0.29,0.29,0.29,0.29,0.29,0,0.29,0.29,0.29,0.89,0,0.89,0.29,0.29,0,0.89,0,0.59,0.29,0,0,0,0.196,0.049,0.344,0,0.049,1.843,17,212,0 0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,5,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1.25,2,10,0 0,0,0,0,0,0,0,0,0,2.17,0,0,0,0,0,0,0,0,0,0,0,0,0,0,13.04,0,0,0,0,4.34,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,6.896,2.142,8,60,0 0,0,0.42,0,0,0,0.21,0,0,0.21,0,0.42,0,0,0,0,0,0.21,1.49,0,0.42,0,0,0,0.21,0.21,0,0,0,0,0,0,0.21,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0.034,0.139,0.034,0,0.069,0,3.151,37,312,0 0,0,0,0,0,0,0,0,0,2.17,0,0,0,0,0,0,0,0,0,0,0,0,0,0,13.04,0,0,0,0,4.34,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,6.896,2.142,8,60,0 0,0,0,0,0.15,0,0,0.07,0.07,0.07,0,0.83,0.15,0,0,0,0.15,0,0,0,0,0,0.07,0,4.42,0,0,0,0,0,0,0,0.07,0,0,0.22,0.07,0,0,0,0,0,0,0,0,0,0,0.07,0.068,0.049,0,0,0.009,0,2.356,27,707,0 0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,2.12,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0.735,0,0,0,0,3,7,48,0 0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0.08,0,0,0,0,0,0,0,0,0,0,0,0,0.08,0,0,0,0,0,0,0,0,0,0.054,0.353,0,0,0,4.438,28,1589,0 0,0,0,0,0,0,0,0,0,18.18,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,20,39,40,0 0.08,0,0.16,0,0.58,0.08,0,0,0.08,0,0,2.24,0.08,0.16,0,0,0.08,0,0.99,0,0.74,0,0.08,0,0.74,0.66,0,0,0.82,0.99,0,0,0,0,0,0.08,0.08,0,0.16,0,0,0.24,0,0,0.08,0,0,0.08,0.08,0.011,0,0,0,0,2.1,60,500,0 0,0,0,0,1.56,0,0,0,0,0,0,0,0,0,0,0,0,0,3.12,0,0,0,0,0,3.12,1.56,1.56,1.56,1.56,1.56,1.56,1.56,0,1.56,1.56,1.56,0,0,0,1.56,0,0,0,1.56,0,0,0,0,0,0.53,0,0,0,0,2.533,11,38,0 0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0.555,0,0,0,0,1.647,4,28,0 0,0,0.57,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0.28,0,0,0,0,0,0.28,0.28,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0.28,0,0,0.28,0.28,0.28,0,0.28,0,0.043,0,0,0,0,1.641,8,110,0 0,0,0,0,0,0,0,1.17,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,4.7,1.17,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0.196,0,0,0,0,1.294,3,22,0 0,0,0.21,0,0,0.21,0,0,0,0.21,0.21,1.28,0,0,0,0,0.21,0,1.28,0,0.64,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0.64,0,0,0,0,0,0,0,0,0,0,0.64,0,0,0,0,0.097,0,2.451,55,255,0 0,0,0,0,1.16,0,0,0,0,1.16,0,2.32,0,0,0,0,0,0,0,0,0,0,0,0,1.16,1.16,0,2.32,0,0,0,0,0,0,0,1.16,0,0,0,0,0,0,0,0,0,0,0,0,0,0.39,0,0,0,0,3.379,11,98,0 0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,6.25,0,0,0,0,0,0,0,0,0,0,2.714,10,38,0 0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,4.54,0,0,0,0,0,0,0,0,0,0,0,0,4.54,0,0,0,0,0,0,0,0,0,0.925,5.857,16,41,0 0.86,0,0,0,0,0,0,0,0,0,0,2.6,0,0,0,0,0,0,2.6,0,0,0,0,1.73,0,0,0.86,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0.86,0,0,0,0.86,0.561,0.14,0,0,0,0,1.352,6,23,0 0,0,0.24,0,0,0,0,0,0,0.48,0,0.24,0,0,0,0,0.48,0.24,0.72,0.48,0.72,0,0,0,1.69,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0.035,0,0,0,0,3.179,87,283,0 0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0.31,0,0,0.62,0,0.31,0,0,0,0,0.31,1.24,0,0,0,0,0.31,0,0,0.31,0,0,0,0,0,0,0,0,0,0,2.607,11,219,0 0,0,0,0,1.19,0,0,0,0,0,0,1.19,0,0,0,0,0,0,0,0,0,0,0,0,3.57,3.57,0,0,3.57,0,0,0,0,0,0,0,1.19,0,0,0,0,3.57,0,0,1.19,0,0,0,0,0,0,0,0,0,1.733,14,52,0 0,0,0.71,0,0,0,0,0,0,0,0,1.43,0,0,0,0,0,1.43,0.71,0,2.87,0,0,0,2.15,0.71,1.43,0,0,1.43,0,0,0,0,2.15,0,0,0,0,0,0.71,0,0,0,0,0,0,0,0.08,0.322,0,0,0,0,3.9,27,156,0 0,0,1.31,0,0,0,0,0,0,0,0,2.63,0,0,0,0,0,1.31,0,0,0,0,0,0,2.63,1.31,0,1.31,0,1.31,1.31,0,0,0,1.31,1.31,3.94,0,0,0,0,0,0,0,0,0,0,0,0,0.15,0,0.15,0,0,1.906,10,61,0 0.1,0,0.21,0,0.31,0,0,0.1,0,0,0,0.63,0.21,0,0,0,0.53,0,0,0,0,0,0,0,3.82,0,0.1,0.1,0,0,0,0,0.42,0,0,0,0.1,0,0,0,0,0,0,0,0,0,0,0,0.215,0.043,0,0,0,0,2.221,18,511,0 0,0,0,0,2.63,0,0,0,0,0,0,0,0,0,0,0,0,0,2.63,0,2.63,0,0,0,5.26,2.63,2.63,2.63,2.63,2.63,2.63,2.63,0,2.63,2.63,2.63,0,0,0,2.63,0,0,0,2.63,0,0,0,0,0,0.793,0,0,0,0,3.076,11,40,0 0,0,0,0,5.55,0,0,0,0,0,0,5.55,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,11.11,0,0,0,0,0,0,0,0,0,0,0,0,11.11,0,0,0,0,0,0,0,0,0,0,0,0,1.222,3,11,0 0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,3.63,0,0,0,0,0,0.24,0,0,0,0,2,7,48,0 0,0,0,0,0,0,0.62,0,0,0,0,0,0,0,0,0,0,0.62,1.25,0,0.31,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0.62,0,0,0,0,0.049,0,0.247,0.049,0,3.732,90,321,0 0,0,1.78,0,0.25,0.51,0,0,0,0.25,0,0.76,0.25,0,0,0,0,0,1.27,0,0.76,0,0,0,1.27,1.02,0,0.25,0.51,0.51,0,0,0,0,0.25,0,0,0,0,0,0,0,0,0,0,0,0,0.76,0.186,0.26,0,0,0,0.037,1.794,10,183,0 0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0.77,0,2.32,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0.77,0,1.55,0,0,0,0,0.247,0.247,0,0,0,0,1.611,12,29,0 0,0,0.25,0,0,0,0,0,0,0,0,0.25,0.25,0,0,0,0,0,4.02,0,4.02,0,0,0,0.75,0.75,0,0,0.25,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0.25,0,0,0.111,0,0,0,0,4.446,29,209,0 0,0,1.61,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1.61,0,0,0,0,0,1.61,0,0,0,1.61,1.61,0,0,0,0,0,0,0,0,0,0,0,4.83,0,0,0,0,0,0,0,0.283,0,0,0,0,1.666,4,20,0 0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1.86,0,0,0,0,0,3.73,0,1.86,0,0.93,3.73,0,0,0,0,0,0,0,0.93,0,0,0,0,0,0,0,0,0,0,0,0.173,0,0,0,0,1.9,5,38,0 0,0,1.96,0,0,0,0,0,0,0,0,0,0,1.96,0,0,0,0,1.96,0,1.96,0,0,0,0,0,0,0,1.96,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,2.142,11,30,0 0,0,0.59,0,0,0,0,0.59,0,0,0,2.99,0,0,0,0,0,0,1.19,0,0,0,0,0,1.19,0.59,0,0,0,0,0.59,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0.391,0,0,0,0,1.836,7,90,0 0,0,1.26,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1.26,0,0,0,0,0,0,2.53,1.26,0,1.26,0,1.26,1.26,0,0,0,1.26,1.26,0,0,0,0,0,0,0,0,0,0,0,0,0,0.141,0,0,0,0,2.28,10,57,0 0.1,0.05,0.35,0,0.15,0,0.05,0.05,0.05,0.2,0.15,0.61,0,0,0,0.1,0.05,0,0.71,0.05,0.46,0,0.05,0,1.84,0.3,0,0.1,0,0.15,0.15,0,0,0,0.1,0.25,0.15,0,0,0,0,0,0,0.05,0.05,0,0,0.15,0,0.153,0,0.029,0.021,0,1.871,25,1123,0 0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,2.85,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,2.85,0,0,0,0,0,0,2.85,0,0,0,0,0,0,0,0,0,0.436,0,0,3.071,13,43,0 0,0,0,0,0,0,0,0,0,0,0,0,0.6,0,0,0,0,0,0.6,0,1.21,0,0,0,0,0,3.03,0,0,0,0,0,0,0,0,0,1.21,0,1.21,0,0,0,1.21,0,1.21,0,0,0,0,0,0.1,0,0,0,1.535,13,86,0 0.04,0.14,0.29,0,0.04,0.04,0,0.09,0,0.19,0.09,1.03,0,0,0,0,0,0.24,0.09,0,0.04,0,0,0,0.04,0,0,0,0,0.14,0,0,0,0,0,0.09,0.24,0,0,0,0,0,0.04,0,0,0,0,0,0.02,0.157,0.013,0,0,0.006,2.655,185,1787,0 0,0,0,0,0,0,0,0,0,0,0,1.25,0,0,0,0.62,0.62,0,0.62,0,0,0,0,0,1.87,0.62,0,0,0,0,0,0,0,0,0,0.62,0,0,0,0,0,0,0,0.62,0,0,0,0,0,0.103,0,0.103,0,0,1.347,4,31,0 0,0,0,0,0,0,0,0,0,0,0,0.76,0,0,0,0,0,0,0.76,0,1.53,0,0,0,10.76,0,0,0,0,0,0,0,0,0,0,0,0.76,0,0,0,0,0,0.76,0,0,0,0,0,0.377,0,0.094,0,0,0,4.807,31,274,0 0,0,0,0,0.36,0,0,0,0,0,0,1.09,0,0,0,0,0.36,0.36,0,0,0,0,0,0,1.81,0.72,0,0.72,0,0.72,0,0,0,0,0.36,0,0.36,0,0,0,0,0,0,0.36,0,0,0,0.36,0,0.201,0,0.05,0,0,2.293,11,211,0 0,0,0,0,0,0,0,0,0,0,0,0.86,0,0.51,0,0,0,0,1.55,0,3.79,0,0,0,0.69,0.69,0,0,2.76,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1.2,0,0.078,0.052,0,0,0,1.203,5,183,0 0,0.39,0,0,0,0,0,0,0.39,0,0,1.97,0.79,0,0,0,1.18,0,0.79,0.39,0,0,0,0,0.39,0,0,0,0,0,0,0,0,0,0,1.97,0,0,0,0,0,0,0,0,0,0,0.39,0,0,0.192,0,0.128,0,0,1.229,6,75,0 0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1.53,0,0,0,3.07,0,1.53,0,1.53,3.07,0,0,0,0.253,0.253,0,0,0,2.235,12,38,0 0,0,0.39,0,0,0,0,0.39,0,0.79,0,0.79,0,0,0,0,0,0,0,0,0,0,0,0,6.74,7.53,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0.39,0,0,0.053,0,0,0,0,1.8,9,153,0 0,0,0,0,0,0,0,0,0,0.85,0,0.85,0,0,0,1.28,0,0,0.85,0,0.42,0,0,0,1.7,1.28,0.85,1.28,0.42,0.42,0.42,0.42,0,0.42,0.42,0.85,0.42,0,0,0.42,0,0,0.42,0,0.42,0,0,0,0,0.369,0.073,0,0,0,2.44,12,144,0 0,0,0,0,0,0,0,0,0,0,0,2,0,0,0,0,0,0,1,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0.345,0,0,0,0,1.666,6,55,0 0.27,0,0,0.55,0.13,0,0,0,0.13,0,0,1.1,0.55,0,0,0,0,0,0.13,0,0,0,0,0,0.13,0.13,0,0,0,0,0,0,0,0,0,0.13,0.27,0,0,0,0,0,0,0.27,0,0,0,0.13,0,0.04,0,0,0,0,2.496,16,322,0 0,0,0,0,0.62,0.62,0,0,0,0,0,2.5,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0.62,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1.25,0,0,0,0,0,0,0.224,0.224,0,0,0,0,2,5,54,0 0,0,0,0,2.22,0,0,0,0,0,0,0,0,0,0,0,0,0,0.74,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0.74,0,0,0,0,0,0,0,0,0,0,0,0.74,0,0.09,0,0,0,0,1.357,6,38,0 0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0.613,0,0,0,0,2,3,6,0 0.47,0,0.62,0,0,0,0,0,0.15,0,0,0.15,0,0,0,0,0,0,0.15,0.15,0,0,0.15,0,0,0,0,0,0.31,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0.052,0,0.105,0.079,0.026,1.962,13,155,0 0,0,0.83,0,0.41,0,0,0,0,0,0,0,0.41,0,0,0,0,0,3.33,0,0,0,0,0,0,0,1.25,0,0,0,0,0.41,0,0.41,0,0,0,0,0,0,0,0,0,0,0.41,0,0,0,0,0.065,0,0.195,0,0,1.444,22,91,0 2,0,0,0,0,0,0,0,0,0,2,2,0,0,0,0,0,0,2,0,8,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,5.888,29,53,0 0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,4,0,0,0,0,0,0,0,0,0,0,4,0,0,0,0,0,0,0,0,0,0,0,0,0,0,4,0,0,4,0,0,0,0,0,0,0,0,0,1.111,2,10,0 0.05,0,0.15,0,0.1,0,0,0,0.52,0,0,0.15,0,0,0,0,0.1,0,0.21,0,0.1,0,0,0,0.47,0.52,0.05,0,0,0,0,0,0.15,0,0,0.05,0.36,0,0,0,0,0,0,0.1,0,0,0,0.05,0.164,0.171,0.068,0,0.013,0,3.591,35,1329,0 0,0,0,0,0.13,0.26,0,0,0,0.13,0,1.17,0.13,0.13,0,0,0.52,0,0,0,0,0,0,0,3.64,0.65,0,0,0.13,0.52,0,0,0,0,0,0.39,0.13,0,0,0,0,0,0,0,0,0,0,0,0.135,0.101,0,0,0,0,1.915,19,387,0 0.07,0,0.07,0,0,0,0,0.46,0.69,0,0,0.23,0,0,0,0,0.07,0.07,0.3,0,0.23,0,0,0,0.69,0.76,0.07,0,0,0,0,0,0.76,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0.142,0.175,0.032,0,0.021,0,3.007,60,791,0 0.05,0,0.05,0,0,0,0,0,0.53,0,0,0.23,0,0,0,0,0,0.05,0.23,0,0.17,0,0,0,0.65,0.71,0.05,0,0,0,0,0,0.53,0,0,0,0.71,0,0,0,0,0,0,0,0,0,0,0,0.115,0.173,0.041,0,0.016,0,2.853,47,896,0 0.03,0.05,0.03,0,0.09,0.05,0,0.01,0.16,0,0,0.09,0.01,0,0,0.01,0.01,0.01,0.07,0.01,0.05,0,0,0,0.56,0.58,0.01,0,0,0,0,0,1.43,0,0,0.05,0.49,0.03,0,0,0.03,0.01,0.01,0.07,0,0,0.01,0,0.221,0.129,0.063,0,0.005,0,3.364,66,3334,0 0,0.19,0,0,0,0,0,0,0,0,0,0.19,0,0,0,0,0,0,0,0,0,0,0,0,0.19,0,0,0,0,0,0,0,2.86,0,0,0.38,0.19,0,0,0,0,0,0,0,0,0,0.19,0.19,0,0.199,0,0,0,0,2.204,9,205,0 0,0,0,0,0,0,0,0,0,0,0,9.67,0,0,0,0,0,0,3.22,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0.564,0,0,0,0,1.692,5,22,0 0.41,0,0,0,0,0.82,0,0,0,0,0,1.23,0,0,0,0,0,0,0,0,0,0,0,0,3.3,0,0,0,0,1.65,0,0,0,0,0,0.82,0,0,0,0,0,0,0,0.41,0,0,0,0.41,0,0.198,0,0,0,0,1.569,7,113,0 0,0,0,0,0,0.63,0,0,0,0,0,0,0,0,0,0,0,0,0.63,0,0,0,0,0,3.16,0,0,0,0,0,0,0,0,0,0.63,0,0,0,0,0,0,0,0,0.63,0,0,0,0,0,0,0,0,0,0,1.56,9,64,0 0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,4.16,4.16,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1.714,6,24,0 0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,15.38,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,3.125,17,25,0 0,0,1.81,0,2.01,0,0,0,0,0,0.2,0,0,0,0,0.4,0,0.2,3.62,0,0.8,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0.4,0,0,0,0,0,0,0.301,0,0,1.576,17,164,0 0,0,0,0,0,0,0,0,0,0,0,1.72,0,0,0,0,0,0,0,0,0,0,0,0,3.44,1.72,1.72,1.72,1.72,1.72,1.72,1.72,0,1.72,1.72,1.72,0,0,0,1.72,0,0,0,0,0,0,0,0,0,0.487,0,0,0,0,2.533,11,38,0 0,0,0,0,0,0,0,0,0,0,0,1.72,0,0,0,0,0,0,0,0,0,0,0,0,3.44,1.72,1.72,1.72,1.72,1.72,1.72,1.72,0,1.72,1.72,1.72,0,0,0,1.72,0,0,0,0,0,0,0,0,0,0.487,0,0,0,0,2.533,11,38,0 0,0,0,0,0,0,0,0,0,0,0,1.67,0,0,0,0,0.41,0,0.83,0,0,0,0,0,1.25,0,0,0,0.83,0,0,0,0,0,0,0,0,0,0,0,0,0.41,0,0,0,0,0,0,0,0.139,0,0,0.069,0,1.804,6,74,0 0,0,1.19,0,0,0,0,0.59,0,0,0,0,0,0,1.19,0,0,0,2.97,0,1.19,0,0,0,1.78,1.19,2.38,0.59,0.59,0.59,0.59,0.59,0,0.59,0.59,0.59,0,0,0.59,0.59,0,0,0.59,0,1.19,0,0,0,0,0.197,0.098,0,0,0,2.203,12,119,0 0,0,0.36,0,0,0.09,0,0.09,0,0,0.09,0.36,0.09,0,0,0,0.27,0,0,0,0,0,0.09,0,3.2,0,0,0,0,0,0,0,0.27,0,0,0,0,0,0,0,0,0,0.09,0,0,0,0,0,0.1,0.176,0,0,0.125,0,2.356,21,641,0 0,0,1.12,0,0,0,0,1.12,0,0,0,0,0,0,2.24,0,0,0,3.37,0,2.24,0,0,0,0,0,1.12,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1.12,0,0,0,0,0,0,0,0,0,2,5,44,0 0,0,0,0,0,0.74,0,0,0,0.74,0,0.37,0,0,0,0,0,0,2.61,0,1.49,0,0,0,0.37,0.37,0,0.74,0,0,0,0,0.37,0,0,0.37,0.37,0,0.37,0,0,0.37,0,0.74,0.37,0,0,0,0,0.405,0,0,0,0,2.28,11,130,0 0,1.52,0,0,0.76,0,0,0,0,0.76,0,0,0,0,0,0,0,0,0,0,0.76,0,0,0,0.76,0.76,1.52,0,0,0,0,0.76,0,0.76,0,0,1.52,0,0.76,0,0,0.76,0.76,0,0.76,0,0,0,0.121,0.365,0.121,0.487,0,0,1.956,22,90,0 0,0,1.6,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1.6,3.2,0,2.4,0,0,0,1.6,0.8,2.4,0.8,0.8,0.8,0.8,0.8,0,0.8,0.8,0.8,0,0,1.6,0.8,0,0,1.6,0,1.6,0,1.6,0,0,0.25,0,0,0,0,2.065,12,95,0 0,0,0.56,0,0,0,0,0,0,1.12,0,0.56,0,0,0,0,0,0,1.12,0,1.12,0,0,0,0.56,0.56,0,1.12,0,0,0,0,0,0,0,0.56,0,0,0,0,0,0,0,0,1.12,0,0,0,0,0.311,0,0,0,0,2.486,11,92,0 0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,1,2,0 0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0.769,0,0,0,0,3.75,9,15,0 0.3,0,0,0,0,0,0,0,0,0,0,0.3,0,0,0,0,0,0,0,0,0,0,0,0,1.81,2.11,0,0,0,0,0,0,0.3,0,0,0.3,1.51,0,0,0,2.11,0,0,0,0,2.11,0,0,0.358,0.666,0.256,0,0,0,3.923,18,408,0 0,0,2.17,0,0,0,0,0,0,0,0,0,0,0,0,0,0,2.17,8.69,0,6.52,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,2.17,0,0,0,0,0,0,0,1.333,3,8,0 0,0,2.04,0,0,0,0,0,0,0,0,0,0,2.04,0,0,0,0,2.04,0,2.04,0,0,0,0,0,0,0,2.04,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1.428,3,20,0 0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,4.54,0,0,0,0,0,0,0,0,0,4.54,0,4.54,0,0,0,0,0,0,0,0,0,0.675,1.351,0,0,0,0,3.7,26,37,0 0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0.77,0,2.32,0,0,0,0,0.77,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0.77,0,0,0,0,0,0,0,0,0,0,0,0,1.156,3,37,0 0,0,0,0,0,0,0,0,0,0,0,1.61,0,0,0,0,0,1.61,3.22,0,1.61,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1.181,3,13,0 0,0,0,0,3.84,0,0,0,0,0,0,0,0,0,0,0,0,0,3.84,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,1,7,0 0,0,0,0,0,0,0,0,0,0,0,1.58,0,0,0,0,0,0,0.79,0,0.79,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0.79,0,0,0,0,0,0.124,0.124,0,0,0,0,1.8,8,45,0 0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1.36,0,0,0,0,0,3.4,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1.526,7,87,0 0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,14.28,0,7.14,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,7.14,0,0,0,0,0,0,0,0,0,1,1,3,0 0,0.8,0,0,0.6,0,0,0.2,0,0.2,0,0,0,0,0,1.8,0,2.2,1.8,0,2.81,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0.2,0,0,0,0.2,0.2,0,0,0,0,0,0.06,0,0,2.55,43,227,0 0.05,0.02,0.18,0,0.02,0.02,0,0.02,0,0.07,0,0.38,0.02,0.2,0.02,0,0.33,0.12,0.31,0,0.12,0,0,0,0,0,0,0.02,0,0,0,0,2.17,0,0,0.2,0.59,0,0,0.1,0,0.07,0.02,0.28,0,0.15,0.05,0.05,0.011,0.144,0.003,0,0,0,2.255,55,1825,0 0,0,0,0,0,0,0,0,0,1.07,0,1.07,0,0,0,0,0,0,0.53,0,0,0,0,0,1.07,0,0,0,0,0,0,0,0,0,0,0,0.53,0,0,0,0,0,0.53,0,0.53,0,0,1.07,0,0.18,0,0.09,0,0,1.825,7,73,0 0,0,0.24,0,0.24,0,0,0,0,0,0,0.72,0,0,0,0.48,0.48,0,1.44,0.24,0.48,0,0,0,1.92,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,6.823,143,464,0 0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,2.7,5.4,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,5.4,0,0,0,0,0,0,0,0,0,0,0,0,1.4,3,7,0 0,0,0,0,0,0,0,0,0,1.27,0,1.27,0,0,0,0,0,0,0.63,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1.27,0,0.111,0,0.111,0,0,1.73,7,45,0 0,0,0,0,0,0,0,0,0,0,0,0,0,3.84,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,3.84,0,0,0,0,0.719,0,0,0,0,1.571,3,11,0 0,0,0,0,1.81,0,0,0,0,0,0,1.81,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0.615,0,0,0,0,1.388,5,25,0 0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,1,6,0 0,0,0,0,0,0,0,0,0,0.72,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0.72,0,0.72,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0.497,0.124,0,0,0.124,3.904,28,164,0 0,0,0,0,0,0,0,0,0,0,0,1.22,0,0,0,0,0,0,1.84,0,0.61,0,0,0,0,0,0,0,0,0.61,0,0,0,0,0,0,0,0,0,0,0.61,0,0,0,0,0.61,0,0,0,0.109,0.109,0.327,0,0,1.068,2,47,0 0,0,0.57,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0.28,0,0,0,0,0,0.28,0.28,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0.28,0,0,0.28,0,0.28,0,0.28,0,0.043,0,0,0,0,1.651,8,109,0 0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,2.12,0,2.12,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0.769,0,0,0,0.384,3.187,7,51,0 0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0.17,0,0.17,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0.026,0.343,0,0,0.026,4.326,28,822,0 0,4.1,0,0,1.36,0,0,0,0,0,0,0,0,0,0,0,0,1.36,6.84,0,1.36,0,0,0,0,0,2.73,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1.36,0,0,0,0,0.21,0,0.42,0,0,1.387,7,43,0 0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0.54,0,0.54,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0.176,0.264,0,0,0.088,4.25,28,238,0 0,0,0,0,0,0,0,0,0,0,0,1.56,0,0,0,0,0,0,0,0,0,0,0,0,3.12,3.12,1.56,3.12,3.12,0,0,0,0,0,1.56,0,0,0,0,0,0,3.12,0,0,0,0,0,0,0,0.515,0,0,0,0,3.285,24,69,0 0,0,1.58,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1.58,0,0,0,0,1.58,0,1.58,0,0,0,0,0,0,2.227,7,49,0 0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1.67,0,0,0,0,0,3.91,2.23,0.55,0.55,0.55,0.55,0.55,0.55,0,0.55,0.55,0.55,0.55,0,0,0.55,0,0,0.55,0,0.55,0,0,0,0,0.275,0.091,0.367,0,0,2.208,13,106,0 0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0.689,0,0,0,0,1.666,3,10,0 0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,3.7,7.4,0,0,0,0,0,0,0,0,0,0,0,0,7.4,0,0,0,0,0,0,0,0,0,0,0,1.503,3.875,16,31,0 0.17,0,0.35,0,0.53,0,0,0.35,0,0,0.17,1.78,0.17,0.17,0,0,0.53,0,0,0,0,0,0,0,3.2,0,0,0,0,0,0,0,0,0,0,0,0.17,0,0,0,0,0,0,0,0,0,0,0,0.071,0.143,0,0,0,0,2.464,80,244,0 0,0,0,0,0,0.37,0,0,0,0,0,0.75,0.37,0,0,0,0.37,0,0,0,0,0,0,0,2.26,0,0,0,0,0,0,0,0,0,0,0,0.37,0,0,0,0,0,0,0,0,0,0,0,0,0.387,0,0,0.331,0,2.287,14,167,0 0,0,0,0,0,0,0,0,0,0,0,1.4,0,0,0,0,0.7,0,1.4,0,1.4,0,0,0,0,0,0.7,0,0,0,0.7,0,0,0,0,0,0,0,0,2.11,0,0,0,0,0,0,0,0,0,0.266,0.066,0,0,0,18,200,378,0 0,1.07,0,0,1.79,0.35,0,0,0,0.35,0,0,0.35,0,0,0,0,0,0.71,0,1.07,0,0,0,0.35,0.35,0.71,0,0,0,0,0.35,0,0.35,0,0,0.71,0,0.71,0,0,0,0.71,0,0.35,0,0,0,0,0.244,0.061,0.244,0,0,1.974,22,152,0 0,0,0,0,0,0,0,0,0,0,0,0,1.4,0,0,0,0,0,0,0,2.81,0,0,0,0,0,1.4,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1.125,2,18,0 0.59,0,1.19,0,0.59,1.19,0,0,0,0,0,0,0,0,0,0,0,0,1.19,0,0.59,0,0,0,0.59,0,1.19,0,0,0.59,0,0.59,0,0.59,0,0,0.59,0,0,0,0,0,0,0,0.59,0,0,0,0,0.312,0,0.312,0,0,1.818,22,80,0 0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,8.95,0,0,0,0,0,0,0,1.49,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1.49,0,0.262,0,0,0,0,1.625,7,26,0 0.02,0.02,0,0,0,0,0,0,0.05,0.08,0.02,0.17,0,0,0,0,0.02,0.11,0.02,0,0,0,0,0,0.44,0.26,0,0,0.02,0.05,0,0,0,0,0,0.02,0.14,0,0,0,0.35,0,0.02,0,0.11,1.15,0,0,0.024,0.17,0,0.126,0,0,3.637,49,2015,0 0,0,0,0,0.4,0,0,0,0,0,0,2.04,0,0,0,0,0,0,2.44,0,0.81,0,0,0,1.22,3.26,0,0,0,0.4,0,0,0,0,0,0,0,0,0,0,0,0,0,0.4,0,0,0,0,0,0.137,0,0.068,0,0,2.282,21,89,0 0,1.1,0,0,0.55,0,0,0,0,1.1,0,0,0,0,0,0,0,0.55,0,0,1.1,0,0,0,0.55,0.55,2.2,0,0,0,0,0.55,0,0.55,0,0,1.65,0,0.55,0,0,0,1.1,0,0.55,0,0,0,0.088,0.355,0.088,0.177,0,0,1.867,22,127,0 0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,3.7,0,0,0,0,0,0,0.666,0,0,1.222,3,11,0 0,1.28,0,0,0.64,0,0,0,0,1.28,0,0,0,0,0,0,0,0,0,0,1.28,0,0,0,0.64,0.64,1.92,0,0,0,0,0.64,0,0.64,0,0,1.28,0,0.64,0,0,0,0.64,0,0.64,0,0,0,0.104,0.418,0,0.209,0,0,1.888,22,102,0 0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,7.31,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1.714,4,12,0 0,0,0.37,0,0.37,0,0,0,0,0,0,0.37,0,0,0,0.37,0,0,0.37,0,0.37,0,0,0,0.37,0.74,0,0,0,0,0,0,0,0,0,0.37,0.74,0,0,0,0,0,0.37,0,0,0,0,0,0,0.162,0,0,0,0,2.643,34,193,0 0.37,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0.37,0,2.23,0,0.37,0,0,0,1.11,0.37,1.86,0.37,0.37,0.37,0.37,0.37,0,0.37,0.37,0.37,0.74,0,0.74,0.37,0.37,0,0.74,0,0.37,0.37,0,0,0,0.192,0.064,0.32,0,0.064,1.923,17,177,0 0,0,0,0,0,0,0,0,0,0,0,0,0,1.19,0,0,0,1.19,1.19,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,2.38,0,0,0,0,0,0,0,0.22,0,0,0,0,2,12,34,0 0,14.28,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1.8,5,9,0 0,14.28,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1.8,5,9,0 0,14.28,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1.8,5,9,0 0,0.68,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,2.06,0,0,0,0,0,2.06,1.37,1.37,0.68,0.68,0.68,0.68,0.68,0,0.68,0.68,0.68,0.68,0,0,0.68,0,0,0.68,0,0.68,0.68,0,0,0,0.216,0.108,0.216,0,0.108,2.754,25,157,0 0,14.28,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1.8,5,9,0 0,14.28,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1.8,5,9,0 0,0,0,0,0,0,0,0,0,0,0,1.14,0,0,0,0,0,0,2.29,0,0,0,0,0,1.14,1.14,0,0,0,0,1.14,0,0,0,0,0,0,0,0,0,0,0,0,2.29,0,0,0,0,0,0,0,0.596,0,0.198,2.133,14,64,0 0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,2.32,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,2.32,0,0,0,0,0,0,2.32,0,0,0,0,0,0,0,0,0,0.314,0,0,2.473,10,47,0 0,0,2.63,0,0,0,0,0,0,0,0,2.63,0,0,0,0,0,0,2.63,0,0,0,0,0,2.63,2.63,2.63,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,1,8,0 1.02,0,0,0,0,0,0,0,0,1.02,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1.02,1.02,0,2.04,0,0,0,0,0,0,0,1.02,0,0,0,0,0,0,0,0,0,0,0,0,0,0.531,0,0,0,0,2.967,11,92,0 0,0,0,0,0.6,0,0,0,0,0,0,0.6,0,0,0,0,0,0,3.01,0,0,0,0,0,0,0,1.8,0,0,0,0,0.6,0,0.6,0,0,0.6,0,0.6,0,0,0,0.6,0,1.2,0,0,0,0,0.085,0.085,0.085,0,0,1.735,22,92,0 1,0,1,0,1,1,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,1,0,2,0,0,1,0,1,0,1,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0.324,0,0.487,0,0,2.291,22,55,0 0.06,0,0.36,0,0.12,0,0,0.06,0.06,0,0.12,0.66,0,0,0,0.06,0.18,0.06,0.6,0,0.78,0,0,0,1.99,0.42,0,0,0,0.18,0.18,0,0,0,0.06,0,0.18,0,0,0,0,0.06,0,0,0,0,0,0.24,0.008,0.099,0,0,0.008,0.016,1.972,27,941,0 0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,5,0,0,0,0,0,0,0,2.5,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0.833,0,0.416,1.937,8,31,0 0,0,0,0,1.49,0,0,0,0,0,0,0,0,0,0,0,0,0,1.49,0,0,0,0,0,4.47,2.98,0,1.49,0,0,0,0,0,0,1.49,0,0,0,0,0,0,0,0,0,1.49,0,0,0,0,0.229,0,0,0,0,2.333,10,49,0 0,14.28,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1.8,5,9,0 0,1.33,0,0,1.33,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1.33,0,0,0,0,0,1.33,0,0,0,0,1.33,0,1.33,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0.681,0,0.227,0,0,2.037,22,55,0 0,3.27,0,0,1.63,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,3.27,0,0,0,0,0,1.63,0,0,0,0,1.63,0,1.63,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0.527,0,0.263,0,0,2.12,22,53,0 0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1.62,0,0.81,0,0,0,0.81,0,2.43,0,0,0,0,0,0,0,0,0,0.81,0,0.81,0,0,0,0.81,0,0,0,0,0,0,0.135,0,0.406,0,0.135,1.958,17,94,0 0,0,0,0,0.7,0,0,0,0,0,0,0.7,0,0,0,0,0,0,3.52,0,0,0,0,0,0,0,1.4,0,0,0,0,0.7,0,0.7,0,0,0,0,0,0,0,0,0,0,1.4,0,0,0,0,0.1,0,0.1,0,0,1.682,22,69,0 0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,5.26,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,10.52,0,0,0,0,0.793,0,0,0,0,1.25,2,5,0 0,0,0,0,0.61,0,0,0,0,0,0,0,0,0,0,0,0,0,0.61,0,0,0,0,0,0,0,1.85,0,0,0,0,0,0,0,0,0,0.61,0,0,0,0,0,0,0,0.61,0,0,0,0.196,0.098,0,0.098,0,0,1.312,6,63,0 0,14.28,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1.8,5,9,0 0,14.28,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1.8,5,9,0 1.07,0,1.07,0,1.07,1.07,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1.07,0,1.07,0,0,1.07,0,1.07,0,1.07,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0.37,0,0.185,0,0,2.24,22,56,0 0,14.28,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1.8,5,9,0 0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,2,5,8,0 0,0.25,0.75,0,1,0.25,0,0,0,0,0.25,0.25,1.25,0,0,0.25,0,1.25,2.51,0,1.75,0,0.25,0,0,0,0.25,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0.042,0,0,1.204,7,118,0 0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,2,5,8,0 0,14.28,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1.8,5,9,0 0,0.34,0,0,0.68,0,0.68,0,0,0.34,0.34,0,0,0,0,0.34,0,1.36,3.42,0,2.73,0,0,0,0.34,0.34,0,0,0,0,0,0,0.34,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0.048,0.048,0,1.411,15,96,0 0,0,0,0,0,0,0,0,0,0,0,1.25,0,0,0,0,0,0,1.25,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1.25,0,0,0,2.5,1.25,1.25,0,1.25,2.5,0,0,0,0,0.209,0,0,0,3.3,13,66,0 0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,2.56,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,2.56,0,0,0,2.56,2.56,0,0,0,0,0,0,0,0,3.333,7,20,0 0,1.85,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1.85,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1.85,0,0,0,0,0,0,0,0,0,1.736,8,33,0 0,0,0,0,0,0,0,0,0,0.72,0,0.72,0,0,0,0,0,0,4.37,0,0,0,0,0,1.45,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0.107,0,0,0,1.48,9,37,0 0,0,0.36,0,0.72,0,0,0,0,0,0,0.36,0.18,0,0,0.36,0,0,1.44,0,0.36,0,0,0,0.36,0.9,0,0,0,0,0,0,0,0,0,0,0.36,0,0,0,0,0,0.18,0,0.18,0,0,0,0.026,0,0,0.107,0,0,2.988,51,263,0 0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1.47,0,2.94,0,0,0,1.47,0,1.47,2.94,0,0,0,0,1.47,0,1.47,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0.484,0,0.484,0,0,2.5,15,65,0 0,0,0,0,0.09,0,0,0,0,0.09,0,0.18,0,0,0,0,0,0,0.37,0,0,0,0,0,2.43,1.21,0.28,0.09,0.09,0.18,0.09,0.09,1.12,0.09,0.09,0.18,1.12,0,0,0.09,0.56,0,0.18,0,0.09,2.24,0,0.09,0.123,0.479,0.095,0.013,0,0,3.625,51,1131,0 0,0,0,0,0.24,0,0,0,0,0,0,0.24,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,2.7,0,0,0.24,0,0,0,0,0,0,0,0,0,0.24,0,0.24,0,0.195,0,0,0,0,2.192,35,239,0 0,14.28,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1.8,5,9,0 0,0,0,0,0,0,0,0,0,0,0,3.57,0,0,0,0,0,0,0,0,0,0,0,0,1.78,1.78,0,0,0,0,1.78,0,0,0,0,0,0,0,0,0,0,0,0,3.57,0,0,0,0,0,0,0,0,0,0.307,2.227,14,49,0 0,14.28,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1.8,5,9,0 0,14.28,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1.8,5,9,0 0,14.28,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1.8,5,9,0 0,14.28,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1.8,5,9,0 0,14.28,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1.8,5,9,0 0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,2,5,8,0 0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,2,5,8,0 0,14.28,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1.8,5,9,0 0,14.28,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1.8,5,9,0 0,14.28,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1.8,5,9,0 0,14.28,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1.8,5,9,0 0,14.28,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1.8,5,9,0 0,14.28,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1.8,5,9,0 0,14.28,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1.8,5,9,0 0,14.28,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1.8,5,9,0 0,14.28,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1.8,5,9,0 0,14.28,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1.8,5,9,0 0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,25,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,2.333,5,7,0 0,14.28,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1.8,5,9,0 0,14.28,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1.8,5,9,0 0,14.28,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1.8,5,9,0 0,14.28,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1.8,5,9,0 0,14.28,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1.8,5,9,0 0,14.28,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1.8,5,9,0 0,14.28,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1.8,5,9,0 0,14.28,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1.8,5,9,0 0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,1,4,0 0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,2.5,4,5,0 0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,2.166,4,13,0 0,0,0,0,0,0,0,0,0,0,0,0,0,2.5,0,0,0,0,7.5,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,2.5,0,0,0,0,0,0,0,0,0,2.142,5,15,0 0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,25,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,1,4,0 0,0.23,0,0,0.23,0,0,0,0,0.47,0,0.23,0,1.67,0,0,0,0,1.19,0,0,0,0,0,0.47,0,0.23,0,0,0,0.23,0,0,0,0.23,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0.158,0,10.036,235,1094,0 0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,7.69,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,1,7,0 0,0.12,0.12,0,0,0,0,0.12,0,0,0,0.12,0,0,0.12,0,0,0,0.12,0,0,0,0,0,0.9,0.38,0.38,0,0,0,0,0,0,0,4.11,0,0,0,0,0,0,0.9,0,0,0,0.12,0.12,0,0,0.149,0,0,0,0.074,5.264,53,1232,0 0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,8.33,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,8.33,0,0,0,0,0,0,1.5,3,12,0 0,0.14,0.14,0,0,0,0.14,0.14,0,0,0,0.14,0,0,0.14,0,0,0,0.28,0,0,0,0,0,1.13,0.42,0.28,0,0,0,0,0,0,0,2.69,0,0,0,0,0,0,0.84,0,0,0,0.14,0.14,0,0,0.16,0,0,0,0.072,5.331,80,1029,0 0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,5,0,0,0,0,0,0,0,0,0,0,0,0,0,4.4,16,22,0 0,0,0.56,0,0.08,0.16,0,0,0,0.16,0,0,0,0.24,0,0,0,0,0.24,0,0,0,0,0,0,0,0,0,0,0,0,0,0.08,0,0.08,0.08,0,0,0,0,0,0,0,0,0,0,0,1.54,0.164,0.505,0,0.01,0.021,0,2.729,55,1122,0 0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,2.04,0,0,0,2.04,2.04,2.04,2.04,2.04,2.04,2.04,2.04,0,2.04,2.04,2.04,0,0,0,2.04,0,0,0,0,0,0,0,0,0,0.536,0,0,0,0.268,2.529,11,43,0 0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,10,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,1,1,0 0.38,0,0.64,0,0.12,0.25,0,0,0,0,0,0.25,0,0,0,0,0.25,0.12,1.03,0,0.38,0,0,0,0.9,0.38,0.25,0.25,0.64,0.25,0,0,0,0,0.12,0.51,0,0,0,0,0,0.12,0,0.25,0,0,0,0.25,0,0.082,0,0.02,0,0,1.491,11,267,0 0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0.97,0,0,0,0.97,0.97,0.97,1.94,0,0.97,0,0,0,0,0.97,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0.261,0,0,0,0,2.03,11,67,0 0.44,0,0,0,1.33,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0.44,0,0,0,2.22,0,0,0,0,0.44,0,0,0,0,0.44,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0.265,0,0,0,0,1.48,7,74,0 0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0.86,0,0,0,0.86,0.86,0.86,1.73,0.86,0.86,0,0,0,0,0.86,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0.131,0,0,0,0,1.74,11,47,0 0,0,0.64,0,0.32,0.32,0,0,0,0,0,0,1.29,0,0,0,0.32,0,0.97,0,0.32,0,0,0,0.32,0.32,0.32,0.64,0,0.32,0,0,0,0,0.32,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0.371,0,0,0,0,2.05,11,82,0 0.13,0,0.13,0,0,0,0,0,0.13,0.13,0,0.66,0,0.66,0,0,0.13,0,1.06,0,0.66,0,0,0,0.13,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0.8,0,0,0.13,0,0.93,0,0.014,0.042,0,0,0,0.183,5.603,57,1160,0 0,0,0,0,9.09,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,1,1,0 0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,16.66,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,8.33,0,0,0,0,0,0,0,0,0,3.333,14,20,0 0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,16.66,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,1,6,0 0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,14.28,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1.754,0,0,0,0,1,1,7,0 0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,20,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,3.333,14,20,0 0,0,0,0,0,0,0,0,0.3,0,0,0.3,0,1.82,0,0,0.3,0,0.6,0,0.91,0,0,0,0,0,1.51,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1.21,0,0,0,0,1.51,0,0,0.057,0,0,0,0.231,2.011,28,358,0 0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,10,0,0,0,0,0,0,0,0,1.857,5,13,0 0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,9.09,0,0,0,0,0,0,0,0,2.428,5,17,0 0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,9.09,9.09,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,9.09,0,0,0,0,0,0,0,0,0,0,0,0,1.25,2,5,0 0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,9.09,0,0,0,0,0,0,0,0,3,5,15,0 0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,14.28,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1.754,0,0,0,0,1,1,7,0 0.21,0,0.42,0,2.54,0,0,0,0,0,0,1.05,0,0,0,0,0.21,0,0,0,0,0,0,0,0.21,0,0.63,0.21,0,0,0,0,0.21,0,0,0,0,0,0.21,0,0,1.27,0,0,0,0,0,0.21,0.028,0.115,0,0,0,0,2.457,45,258,0 0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,18.18,9.09,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,2,3,4,0 0,0,0,0,10,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,10,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1.333,2,4,0 0,0.35,0.35,0,0.17,0,0,0,0.17,0.35,0,1.23,0,0.88,0,0,0.17,0,1.41,0,0.7,0,0,0,0.17,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0.7,0,0,0.17,0,0.88,0,0,0.038,0,0.019,0,0.095,2.059,28,447,0 0,0,0,0,1.47,0,0,0,0,0,0,0,0,0,0,0,0,0,2.94,0,0,0,0,0,5.88,0,1.47,0,0,1.47,0,0,0,0,1.47,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,3.037,15,82,0 0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,16.66,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,8.33,0,0,0,0,0,0,0,0,0,4.333,20,26,0 0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0.353,0.353,0,0,0,0,1,1,21,0 0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,2.12,0,0.289,0,0,0.289,0,0,1.076,2,14,0 0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,6.666,15,20,0 0.01,0.01,0.07,0,0.05,0,0,0.01,0.03,0.13,0.05,0,0,0.05,0,0,0.01,0.07,0.01,0,0.01,0,0,0,0,0,0,0,0,0,0,0,0.07,0,0,0.13,0,0,0,0.01,0.46,0,0,0.03,0,0.8,0.01,0.07,0.05,0.301,0.131,0.002,0.09,0.002,2.577,82,5395,0 3.94,0,0,0,0,0,0,0,0,0,0,2.63,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1.8,5,36,0 0,0,1.13,0,0,0,0,0,0,0,0,1.13,0,0,0,0,0,1.13,1.13,0,1.13,0,0,0,2.27,1.13,0,1.13,0,1.13,1.13,0,0,0,1.13,1.13,1.13,0,0,0,0,0,0,0,0,0,0,0,0,0.136,0,0.136,0,0,1.812,10,58,0 0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,3.44,3.44,0,0,0,0,0,0,0,0,0,0,6.89,0,0,0,0,0,0,0,3.44,0,0,0,0,0,0,0,0,0,2.818,8,31,0 0,0,0,0,0,0,0,0,0,0,0,3.17,0,0,0,0,0,0,3.17,0,0,0,0,0,1.58,0,0,0,1.58,0,0,0,0,0,0,0,0,0,0,0,0,6.34,0,0,0,0,0,0,0,0,0,0,0,0,1.384,4,18,0 0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,3.03,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,3.03,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0.476,0,0,2.642,9,37,0 0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,1,5,0 0,0,0.17,0,0,0,0,0,0,0.17,0,0.17,0,0,0,0,0,0,0.17,0,0,0,0,0,1.57,1.4,0,0,0,0.17,0,0,0.17,0,0,0,1.92,0,0,0,2.8,0,0,0,0,2.8,0,0,0.267,0.802,0.118,0,0,0,4.808,20,601,0 0.19,0,0.39,0,1.24,0.13,0,0.06,0.32,0,0,0.45,0.26,0,0,0,0.13,0,1.24,0,0.39,0,0.06,0,1.04,0,0,0,0,0,0,0,0,0,0,0.06,0,0,0,0,0,0,0,0,0.39,0,0,0,0,0.03,0,0,0.03,0,1.571,42,297,0 0,0,0,0,0,0,1.78,0,0,0,0,1.78,0,0,0,0,0,0,3.57,0,0,0,0,0,0,0,0,0,0,1.78,0,0,0,0,0,1.78,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0.586,0,0,1.307,4,17,0 0,0,0,0,0,0,0,0,0,0,0,0.58,0,0,0,0,0,0,0,0,0.58,0,0,0,0,0,0.58,0,0,0,0,0,1.76,0,0,0,0,0,0,0,0,0,0,0,0.58,0,0,0,0,0.107,0,0.107,0,0,1.531,6,49,0 0.13,0,0.2,0,0.54,0.13,0,0.13,0.4,0,0,0.06,0.06,0,0,0,1.01,0,0,0,0,0,0,0,1.08,0,0,0.06,0,0,0,0,0,0,0,0,0.4,0,0,0,0,0,0,0,0.06,0,0,0,0.009,0.068,0,0,0.166,0,2.804,45,617,0 0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,2.04,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0.373,0.373,0,0.373,0,0,1.714,4,12,0 0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,3.03,0,0,0,0,0,0,0,0,0,1,1,6,0 0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,1,2,0 0.26,0,0.53,0,0,0.26,0,0,0,0,0,1.06,0,0,0,0,0,0,0,0,0,0,0,0,0,0.26,0,0,0,0,0,0,1.85,0,0,0,0,0,0,0,0,0,0.26,0,0,0,0,0,0,0.039,0,0,0,0,2.646,77,172,0 0.26,0,0.53,0,0,0.26,0,0,0,0,0,1.06,0,0,0,0,0,0,0,0,0,0,0,0,0,0.26,0,0,0,0,0,0,1.85,0,0,0,0,0,0,0,0,0,0.26,0,0,0,0,0,0,0.039,0,0,0,0,2.646,77,172,0 0,0,0,0,0,0,0,0,0,0,0,0.55,0,0,0,0,0,0,0,0,0.55,0,0,0,0.55,0,0,0,0.55,0,0,0,0,0,0,0,0.55,0,0,0,0,0.55,0,0,0,0,0,0,0,0.25,0,0,0,0,1.601,8,173,0 0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1.28,0,0,0,0,0,2.56,1.28,2.56,1.28,1.28,1.28,1.28,1.28,0,1.28,1.28,1.28,0,0,0,1.28,0,0,0,0,0,0,0,0,0,0.632,0,0,0,0,2.142,11,45,0 0,0,0,0,0,0,0,0,0,0,0,1.75,0,0,0,0,0,0,0.29,0,0,0,0,0,1.75,0.29,0,0.58,0,0,0,0,0,0,0.29,0.29,0.58,0,0,0,0,0,0,0,0.29,0,0,0,0,0.091,0,0.045,0,0,2.333,15,175,0 0,0,0.6,0,0.6,0,0,0,0,0,0,0,0,0,0,0.6,0,0,2.4,0,0,0,0,0,0,0,1.2,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0.6,0,0,0,0,0,0,0,0.11,0,0,0,0,1.074,3,29,0 0,0.32,0.32,0,0.16,0.16,0,0,0.16,0.32,0,0,0,0,0.32,0,0.32,0.32,0.8,0.32,2.08,0,0,0.16,0,0,0.16,0.64,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0.16,0,0,0,0,0,1.309,0,0.022,0.377,0,3.918,157,772,0 0.04,0.08,0.24,0,0.04,0.16,0,0.04,0.16,0.52,0.08,1.04,0,0,0,0.24,0.04,0,0.68,0,0.88,0,0.04,0,1.76,0.6,0,0.16,0,0,0.16,0,0,0,0.36,0,0.24,0.04,0,0,0,0.04,0,0,0.04,0,0,0,0.029,0.142,0,0.071,0.071,0.011,1.983,23,1361,0 0,0,0,0,0.7,0,0,0.88,0,0.17,0,0.52,0.17,0,0,0,0,0,2.46,0,1.93,0,0,0,0.52,0.35,0.35,0.17,0.17,0.17,0.17,0.17,0.17,0.17,0.17,0.17,0.17,0,0,0.17,0,0,0,0,0.17,0,0,0,0,0.086,0,0.057,0,0,1.472,15,162,0 0.09,0.09,0.09,0,0.29,0,0,0,0.87,0,0,0.29,0.09,0,0.19,0,0,0,0.39,0,0.19,0,0,0,0.58,0.68,0.09,0,0,0,0,0,0.29,0,0,0,0.19,0,0,0,0,0,0,0,0,0,0,0,0.111,0.153,0.069,0,0.041,0,3.298,41,686,0 0.02,0.08,0.1,0,0.27,0.07,0,0,0.14,0,0,0.05,0,0.02,0.01,0.02,0,0.01,0.05,0,0.04,0,0,0,0.48,0.49,0.04,0,0,0,0,0,0.36,0,0,0.01,0.45,0,0,0.01,0,0,0.04,0,0.01,0,0,0.02,0.221,0.152,0.056,0,0.004,0,2.63,38,3086,0 0.05,0,0.17,0,0.28,0,0,0,0.51,0,0,0.17,0,0.05,0,0,0,0.05,0.22,0,0.17,0,0,0,0.96,1.02,0.05,0,0,0,0,0,0.28,0,0,0.11,0.73,0,0,0,0,0,0,0,0,0,0,0,0.165,0.182,0.091,0,0.016,0,2.777,38,1161,0 0.05,0,0.11,0,0.16,0.05,0,0,0.5,0,0,0.16,0,0,0,0,0,0.05,0.22,0,0.16,0,0,0,0.62,0.67,0.05,0,0,0,0,0,0.56,0,0,0,0.73,0,0,0,0,0,0,0.05,0,0,0,0,0.073,0.211,0.04,0,0.016,0,2.787,47,1090,0 0,0,0,0,0,0.05,0,0.34,0,0,0.11,0.81,0.05,0.11,0,0,0.75,0,0,0,0,0,0.05,0,1.16,0,0,0,0,0,0,0,0.05,0,0,0.23,0.05,0,0,0,0,0,0,0,0,0,0,0,0.283,0.107,0,0,0.053,0,1.864,32,910,0 0,0,0,0,1.05,0,0,0,0,0,0,0,0,0,0,0,0,0,2.11,0,2.81,0,0,0,0,0,0.7,0,0,0,0,0.35,0,0.35,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0.047,0,0,0,0.047,2.232,12,163,0 0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,5.55,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,1,7,0 0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0.72,0,0,0,0,0,0,0,0,0,0,0,1.45,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1.481,5,40,0 0.27,0.27,0,0,0.83,0,0,0,0,0,0,0.27,0.27,0,0,0,0,0,1.1,0,0.27,0,0,0,1.93,0.27,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0.27,0,0,0,0,0,0,0,0,0,0,0.084,0,1.231,6,101,0 0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,3.38,0,1.69,0,0,0,1.69,1.69,1.69,0,0,0,0,0,0,0,0,0,0,0,1.69,0,0,0,0,0,1.69,0,0,0,0,0.315,0,0,0.63,0,3.083,12,37,0 0,0,0.87,0,0,2.63,0,0,0,0,0,0.87,0,0,0,0,0,0.87,0.87,0,0,0,0,0,0,0,0.87,0,0,0,0,0,0,0,0,0,0.87,0,0,0,0,0,0,0,0.87,0,0,0,0.317,0.317,0,0,0,0,1.269,5,33,0 0,0,0,0,0,0,0,0,0,0.97,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0.97,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0.491,0.163,0,0,0,4.312,33,138,0 0,0,0,0,0,0,0,0,0,0,0,0.85,0,0,0,0,0,0,0,0,0,0,0,0,0.42,0.42,0,0,0,0,0,0,0,0,0,1.28,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1.652,9,114,0 0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,4.16,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,4.16,0,0,0,0,0,0,0,0,0,1.333,4,12,0 0,0,0.73,0,0,0,0,0.73,0,0,0,1.47,0,0,0,0,0,0,0,0,0,0,0,0,2.94,4.41,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0.73,0,0,0.107,0,0,0,0,1.695,9,78,0 0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1.55,0,1.16,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1.16,0,0,0,0,0,0,0,0,0.07,0,0,0,0,1.541,4,37,0 2,0,0,0,0,0,0,0,0,0,2,2,0,0,0,0,0,0,2,0,8,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,5.888,29,53,0 0,0,0.28,0,0,0,0,0,0,0.57,0,1.43,0,0,0,0,0,0,0,0,0.28,0,0,0,0.28,1.14,0,0,0,0,0,0,0,0,0.28,0,1.14,0,0,0,0,0,0,1.14,0,0,0,0.28,0,0.43,0,0,0,0,2.902,55,238,0 0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1.49,0,0,0,0,0,7.46,2.98,0,0,0,2.98,0,0,0,0,1.49,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1.961,11,51,0 0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,20,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,1,4,0 0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,10,0,0,0,0,0,0,0,0,0,0,0,0,1.666,3,5,0 0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,25,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,2,4,6,0 0,0,0,0,0.8,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1.61,0,0,0,0,0,0,0,0,0,0,0,1.61,0,0,0,0,0.8,0,0,0,0.8,0,0,0,0,0,0,0,0,0,0,0,0,1.35,3,54,0 0,0,0,0,0,0,0,0,0,0,0,1.12,0,0,0,0,0,0,2.24,0,0.56,0,0,0.56,0,0,1.12,0,0,0,0,0,0,0,0,0,0.56,0,0,0.56,0,0,0.56,0,0.56,0,0,0,0,0.299,0,0,0,0,2.236,13,85,0 0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0.439,0,0,0.219,0,1.911,11,65,0 0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,20,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,1,5,0 0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,3.333,8,10,0 0.74,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0.74,0,0,0,0,0,0,0,0,0,0,0,0,0,0.74,0,0,0,0,0,0,0,0.74,0,0,0,0.134,0.672,0,0,0,0,1.863,5,41,0 0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,2.4,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1.2,0,0,0,0,0,0,0,0,0,1.59,5,35,0 0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,4.081,0,0,0,1,1,3,0 0.97,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0.97,0,0,0,0,0,0,0,0,0,0,0,0,0,0.97,0,0,0,0,0,0,0,0.97,0,0,0,0,0.76,0,0,0,0,2,5,38,0 0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,2.12,0,0,0,2.12,0,0,4.25,0,0,0,0,2.12,0,2.12,0,0,0,0,0,0,0,0,0,2.12,0,0,0,0,0.714,0,0,0,0,2.708,15,65,0 0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0.98,0,1.96,0,0,0,0,0,0,0,0,0,0,0,0.98,0,0,0,0,0,0,0,0,0,0,1.96,0,0.98,0,0,0,0,0,0,0,0,2,13,42,0 0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,2.12,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1.239,0,0,0,0,2.166,5,13,0 0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,7.4,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1.714,3,12,0 0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0.83,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0.863,0.143,0,0,0,4.484,33,148,0 0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,9.52,4.76,4.76,4.76,4.76,4.76,4.76,4.76,0,4.76,4.76,4.76,0,0,0,4.76,0,0,0,0,0,0,0,0,0,1.257,0,0,0,0,3.333,11,30,0 0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,20,0,0,0,0,0,0,0,0,0,0,20,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,1,4,0 0.34,1.36,0,0,0,0,0,0,0.34,1.7,0,0,0,0,0,0,0,0,1.7,0,0.34,0,0,0,1.36,0.68,1.02,0.34,0.34,0.34,0.34,0.34,0,0.34,0.34,0.34,0.34,0,0.34,0.34,0,0,0.34,0,0.34,0,0,0,0,0.244,0,0,0,0,1.696,13,112,0 0,0,0,0,0,0,0,1.57,0,1.57,0,1.57,0,0,0,0,0,0,1.57,0,1.57,0,0,0,3.14,2.36,0.78,0.78,0.78,0.78,0.78,0.78,0,0.78,0.78,0.78,0,0,0.78,0.78,0,0,0,0,0.78,0,0,0,0,0.372,0,0,0,0,3.971,34,139,0 0,0,0.88,0,0,0,0,0,0.88,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0.315,0,0,0,0,1.166,3,21,0 0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,5.88,5.88,0,5.88,0,0,0,0,5.88,0,0,0,0,0,5.88,0,0,0,0,5.88,0,0,0,0.763,0,0,0,0,2.285,10,16,0 0,0,0,0,0,0,0,0,0,0.31,0,0.31,0,0,0,0,0,0,0.95,0,0.95,0,0,0,1.27,0.63,1.91,0.63,0.63,0.63,0.63,0.63,0,0.63,0.63,0.63,0.95,0,0.63,0.63,2.22,0,0.63,0,0.63,1.91,0,0,0.05,0.304,0.101,0,0,0,2.186,15,164,0 0,0.18,0,0,0.18,0,0,0.37,0,0,0,0.94,0,0,0,0,1.89,0,0.18,0,0,0,0,0,0.37,0.18,0,0,0,0.18,0,0,0,0,0,0.37,0,0,0,0,0,0,0,0,0.56,0,0,0,0,0.244,0,0,0,0,1.663,10,168,0 0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1.176,0,0,0,2.142,8,15,0 0,0,0,0,0,0,0,0,0,0,0,0.32,0,0,0,0,0,0,0.97,0,0.97,0,0,0,1.29,0.64,1.94,0.64,0.64,0.64,0.64,0.64,0,0.64,0.64,0.64,0.97,0,0.64,0.64,2.26,0,0.64,0,0.32,1.94,0,0,0.051,0.255,0.102,0,0,0,2.197,15,156,0 0,0.46,0,0,0,0,0,0,0,0,0,0.46,0,0,0,0,0,0,1.38,0,1.85,0,0,0,2.31,0.46,0,0,0,0.46,0,0,0,0,0,0,0.46,0,0.46,0,0,1.38,0,0,0,0,0,0,0,0.155,0,0,0,0,2.982,28,167,0 0.1,0,0.3,0,0.05,0.15,0,0.25,0.3,0.1,0.2,0.65,0,0,0,0.25,0.05,0,0.55,0,0.65,0,0.05,0,1.3,0.35,0,0.15,0,0.25,0.2,0,0,0,0.2,0.05,0.25,0,0,0.05,0,0,0,0.3,0.15,0,0.05,0,0.014,0.139,0,0.022,0.058,0,1.979,23,1081,0 0,0,0,0,0.81,0,0,0,0,0,0,0.81,0.81,0,0,0,0,0,1.62,0,0,0,0,0,0.81,0,1.62,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0.81,0,0,0,0,0.143,0,0.143,0,0,1.055,2,19,0 0,0,0,0,0,0,0,0,0,0,0,1.4,0,0,0,0,0.7,0,1.4,0,1.4,0,0,0,0,0,0.7,0,0,0,0.7,0,0,0,0,0,0,0,0,2.11,0,0,0,0,0,0,0,0,0,0.267,0.066,0,0,0,17.952,200,377,0 0,0,0.61,0,0,0,0,0,0,0,0,1.84,0,0,0,0,0,0,0,0,0,0,0,0,0,0.61,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0.61,0,0.079,0.158,0,0,0,0,2.508,17,143,0 0.78,0,0,0,0.39,0,0,0,0,0.39,0,0,0,0,0,0,0,0,0.78,0,0.39,0,0,0.39,0,0,0.39,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0.39,0,0,0,0,0.073,0.146,0,0,0,0,1.354,8,42,0 0,0,0,0,0,0,0,0,0,0,0,0,2.94,2.94,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1.6,5,16,0 0.22,0,0.07,0,0.07,0.07,0,0.14,0,0.36,0,0.51,0.44,0.07,0,0,0.29,0.07,0.07,0,0.07,0,0,0,1.99,0,0,0,0.29,0.29,0,0,0,0,0,0.14,0.07,0.07,0,0,0,0,0,0,0,0,0,0,0.041,0.031,0,0.031,0,0,1.912,22,568,0 0,0,0,0,0,0,0,0,0,0,0,0.91,0,0,0,0,0,0.22,0,0,0,0,0,0,0.22,0.22,0,0.45,0,0,0,0,0,0,0.22,0,0,0,0,0,0,0,0,0.22,0,0,0,0.22,0,0.154,0,0,0,0,1.768,15,122,0 0,0.33,0,0,0.33,0,0,0,0,0,0,0.33,0,0,0,0,0,0.33,0,0,0,0,0,0,0.33,0.33,0,0.67,0,0,0,0,0,0,0.33,0,0,0,0,0,0,0,0,0.33,0,0,0,0.33,0,0.088,0,0,0,0,1.87,15,116,0 0.49,0,0,0,0.49,0.49,0,0.49,0,0,0,0.49,0.99,0,0,0,0,0,0.49,0,0,0,0,0,2.48,0.99,0,0,0.99,0.99,0,0,0,0,0,0.49,0.49,0,0,0,0,0,0,0,0,0,0,0.49,0,0.145,0,0,0,0,1.641,10,87,0 0,0,0,0,0,0,0,0,0,0,0,0.42,0,0,0,0,0,0,1.28,0,1.28,0,0,0,0.85,0.42,1.7,0.42,0.42,0.42,0.42,0.42,0,0.42,0.42,0.42,0.85,0,0.42,0.42,1.7,0,0.42,0,0.42,1.28,0,0,0,0.204,0.068,0,0,0,2.108,15,97,0 0,0,0.51,0,1.54,0,0,0,0.25,0,0,1.28,0,0,0,0,0,0,0,0,0,0,0,0,0.77,0.25,0,0,1.03,1.8,0,0,0,0,0,0,0.25,0.25,0,0,0,0,0,0,0.25,0,0,0,0,0.039,0,0,0,0,1.767,7,99,0 0,0,0,0,0.5,0,0,0,0,0.5,0,1.01,0,0,0,0,0,0,2.53,0,1.01,0,0,0,1.52,1.01,1.52,0.5,0.5,0.5,0.5,1.01,0,1.01,0.5,0.5,0.5,0,0.5,0.5,0,0,0.5,0,1.01,0,0,0,0.09,0.272,0.09,0,0,0,1.836,13,101,0 0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1.78,0,0.89,0,0,0,0,0,2.67,0,0,0,0,0,0,0,0,0,0.89,0,0,0,0.89,0,0,0,0,0.89,0,0,0,0.15,0,0,0,0,1.85,15,37,0 0,0,0,0,1.63,0,0,0,0,0,0,0,0,0,0,0,0,0,4.91,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1.769,5,46,0 0,0,0,0,0,0,0,0,0,0,0,3.84,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0.709,0,0.709,0,0,2.3,9,23,0 0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,9.52,4.76,4.76,4.76,4.76,4.76,4.76,4.76,0,4.76,4.76,4.76,0,0,0,4.76,0,0,0,0,0,0,0,0,0,1.257,0,0,0,0,3.333,11,30,0 0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,4.16,0,0,0,0,0,0,0,0,0,0,0,0,0,0.602,4.7,23,47,0 0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1.63,4.91,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1.48,6,37,0 0,0,0,0,0,0,2.22,2.22,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0.665,0,0,0.665,0,4.571,25,64,0 0,0,0,0,0,0,2.22,2.22,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0.665,0,0,0.665,0,4.571,25,64,0 0,0,0.33,0,0,0.49,0,1.32,0.16,5.12,0,0,0,0.66,0,0,0.33,0,0.33,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0.16,0,0,0,0,0,0,0.16,0,0,0,0.33,0,0,0,0.07,0.023,0,0,0.023,1.552,10,149,0 0,0,0,0,1.06,0,0,0,0,0,0,1.06,0,0,0,0,0,0,1.06,0,1.06,0,0,0,1.06,1.06,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,3.19,0,0,0,0,0,0.181,0,0,0,0,1.4,4,28,0 0,0,0,0,0,0,0,0,0,0,0,0.44,0,0,0,0,0,0,0.88,0,0.88,0,0,0,1.32,0.88,0.88,0.88,0.44,0.44,0.44,0.44,0,0.44,0.88,0.44,0,0,0,0.44,0,0,0,0,0.44,0,0,0,0,0.207,0,0,0,0.207,2.588,40,132,0 0,0,0,0,0,0,0,0,0,0,0,0.51,0,0,0,0,0,0,1.03,0,0.51,0,0,0,1.54,1.03,1.54,1.03,0.51,0.51,0.51,0.51,0,0.51,1.03,0.51,0,0,0,0.51,0,0,0,0,0.51,0,0,0,0,0.24,0,0,0,0.48,2.6,40,130,0 0,0,0,0,0,0,0,0,0,0,0,0.91,0,0,0,0,0,0.91,0.91,0,0.45,0,0,0,2.73,3.19,0.91,0.45,0,0,0,0,0,0,0.45,0,0.45,0,0,0,0,0,0,0,0,0,0,0,0.075,0.151,0,0,0,0,2.158,20,136,0 0.05,0,0.31,0,0,0.05,0,0.05,0.47,0,0,0.15,0,0,0,0,0.26,0.05,0.21,0,0.15,0,0,0,0.79,0.85,0.05,0,0,0,0,0,0.47,0,0,0,0.85,0,0,0,0,0,0,0,0,0,0,0,0.112,0.202,0.067,0,0.014,0,3.117,52,1303,0 0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0.7,0,0,0,0,0,0.35,0.35,0,0.7,0.35,0.35,0,0,0,0,0.35,0,0,0,0.7,0,0,0,0,0.35,0,0,0,0,0,0,0,0,0,0,1.506,11,113,0 0.23,0,0.23,0,0.69,0,0,0,0,0,0,1.39,0,0,0,0,0,0,0.23,0,0,0,0,0,0.23,0.23,0,0,0,0,0,0,0.23,0,0,0,0,0,0,0,0,0,0,0.23,0,0,0,0,0,0.067,0,0,0,0,1.433,9,86,0 0.23,0,0,0,0.23,0.23,0,0,0,0,0,0.23,0,0,0,0.23,0,0,0.47,0,0,0,0,0,0.47,0.23,0,0,0,0.47,0.23,0,0.47,0,0,0,0.23,0,0,0,0,0,0,0,0,0,0,0,0.106,0.106,0,0,0,0,1.588,8,143,0 0,0,0,0,0,0,0,0,0,1.31,0,1.31,0,0,0,0,0,0,6.57,0,0,0,0,0,2.63,1.31,2.63,1.31,1.31,1.31,1.31,1.31,0,1.31,1.31,1.31,1.31,0,0,1.31,0,0,1.31,0,1.31,0,0,0,0,0.649,0,0,0,0,2.214,13,62,0 0.05,0,0.05,0,0.05,0.05,0,0,0.5,0,0,0.16,0,0.05,0,0,0,0.05,0.22,0,0.16,0,0,0,0.62,0.67,0.05,0,0,0,0,0,0.45,0,0,0,0.67,0,0,0,0,0,0,0,0,0,0,0,0.185,0.233,0,0,0.016,0,2.972,46,963,0 0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,9.09,0,0,0,0.719,0,0,0,0,1,1,4,0 0.13,0.4,0,0,0,0,0,0,0,0.53,0,0,0,0,0,0,0.13,0,0.8,0,0.53,0,0,0,0,0,0,0,0,0,0,0,0,0.13,0,0,1.2,0,0,0,0,0,0,0,0,0.53,0,0.13,0,0.25,0,0.014,0.427,0.044,5.473,143,1538,0 0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0.909,0,0,0,0,1,1,1,0 0.1,0,0.1,0,0.1,0,0,0,0.94,0,0,0.31,0,0,0,0,0,0,0.41,0,0.2,0,0,0,0.52,0.62,0.1,0,0,0,0,0,1.15,0,0,0,0.1,0,0,0,0,0,0,0,0,0,0,0,0.132,0.251,0.029,0,0.029,0,2.784,32,490,0 0.11,0,0.22,0,0,0.11,0,0,1.01,0,0,0.33,0,0,0,0,0,0,0.44,0,0.22,0,0,0,0.78,0.67,0.11,0,0,0,0,0,0.56,0,0,0,0.22,0,0,0,0,0,0,0,0,0,0,0,0.171,0.233,0.031,0,0.031,0,3.189,32,571,0 0,0,0.09,0,0,0,0,0.09,0,0,0.09,1.49,0.27,0.09,0,0,0.37,0,0,0.09,0,0,0,0,2.51,0,0,0,0.09,0.27,0,0,0,0,0,0.37,0.18,0,0,0,0,0,0,0.09,0,0,0,0,0,0.106,0,0,0,0,2.277,27,558,0 0.02,0,0.1,0,0.05,0.05,0,0.13,0.3,0,0,0.13,0,0,0,0,0,0.02,0.1,0,0.08,0,0,0,0.46,0.49,0.02,0,0,0,0,0,0.27,0,0,0,0.41,0,0.13,0,0,0,0,0,0,0,0,0,0.166,0.158,0.047,0,0.007,0,2.984,52,1758,0 0,0,1.06,0,0,0,0,0,0,0,0,1.06,0,0,0,0,0,1.06,0,0,0,0,0,0,2.12,1.06,0,1.06,0,1.06,1.06,0,1.06,0,1.06,1.06,0,0,0,0,0,0,0,0,0,0,0,0,0,0.121,0,0,0,0,2.151,10,71,0 0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1.88,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1.88,0,0,0,0,0.35,0,0,0,0,1.461,6,19,0 0,0,3.57,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0.74,0,0.74,0,0,2.166,7,26,0 0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,1,3,0 0,0,0.26,0,0.26,0.13,0,0,0,0,0,0.52,0,0,0,0,0.39,0,1.05,0,1.05,0,0,0,0.39,0,0,0,0,0,0,0,0,0,0,0.13,0,0,0,0,0,0,0,0,0,0,0,0,0.017,0.089,0.017,0.035,0.053,0.053,5.189,107,685,0 0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,14.28,0,0,0,0,0,0,0,0,0,1.25,2,5,0 0,0,0,0,0,0,0,0,0,0,0,0,0,2.94,0,0,0,0,2.94,0,2.94,0,0,0,0,0,2.94,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,2.94,0,0,0,0,0,0,0,0,0,1,1,10,0 0,0,0.48,0,2.18,0,0,0,0.48,0,0,1.69,0,0,0,0,0.24,0,0.48,0,0.48,0,0,0,1.69,0.24,0,0,0,0,0,0,0,0,0,0,0.48,0,0,0,0,0,0,0,0.24,0,0,0,0,0.036,0,0,0,0,2.364,73,227,0 0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,6.06,3.03,3.03,3.03,3.03,3.03,3.03,3.03,0,3.03,3.03,3.03,0,0,0,3.03,0,0,0,0,0,0,0,0,0,0.9,0,0,0,0,2.75,11,33,0 0,0,0.95,0,0.31,0,0,0,0,0,0,0.31,0,0,0,0,0,0,1.26,0,0,0,0,0,0.63,0.95,0,0,0,0,0,0,0,0,0,0.31,0.31,0,0.31,0,0,0,0.31,0,0,0,0,0,0.048,0.339,0,0.048,0,0,1.99,14,215,0 0,0,0,0,0,0,0,1,0,0,0,0.5,0,0,0,0,0,0,0,0,0,0,0,0,2,0.5,0,0.5,0.5,1,0,0,0,0,0.5,0.5,0,0,0,0,0,0,0,0,0,0,0,0,0,0.12,0,0,0,0,2.017,13,117,0 0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1.888,5,17,0 0,0,2.94,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,2.94,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0.505,0,0,2.375,4,19,0 0,0,0,0,0,0,0,0,0.83,1.66,0,0,0,0,0,0,0,0,0.83,0,2.5,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,4.16,0,0,0,0,0,0,0,0,0,0.118,0,0,0,0,1.475,11,59,0 0,0,0.57,0,0.85,0,0,0,0.28,0,0.57,0.28,0,0,0,0.85,0,0.57,1.42,0,0.85,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0.08,0,0,0.282,0.242,0,2.46,26,278,0 0.71,0.14,0.42,0,1,0.14,0.14,0,0,3,0.14,0.85,0,0,0,0,0,0.28,0.85,0,0.14,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0.14,0,0,0,0,0,0,0,0,0,0.022,0,0,0,0.022,1.931,9,168,0 0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1.4,3,7,0 0,0,0,0,0,0,0,0,5.26,0,0,0,0,0,0,0,2.63,0,2.63,0,5.26,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,2.058,11,35,0 0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,2,0,4,0,2,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0.38,0,0,0,0,1.806,11,56,0 0,0,0,0,0,0,0,1.08,0,0,0,1.62,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0.54,0,0,0,0,0,0,0,0.54,0.54,0,0,0,0,0,0,0,0,0,0.54,0,0.166,0,0.083,0,0,1.528,13,81,0 0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0.8,0,0,2.41,0,0.8,0,0,0,0,0,0.8,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0.8,0,0,0.8,0,0,0,0,0.45,0,0,0,0,1.2,4,30,0 0,0,0,0,0.27,0,0,0.55,0,0.55,0,0.55,0,0,0,0,0,0,0,0,0,0,0,0,6.64,4.15,0.83,0.27,1.66,0.27,0.27,0.27,0,0.27,0.27,0.27,1.38,0,0,0.27,0,0.27,0.27,0,0.55,0,0,0,0.183,0.549,0.137,0,0,0,4.257,57,430,0 0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0.543,0,0.271,0,0,3,18,72,0 0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0.43,0,0.28,0,0,0,1.43,1.15,0.86,0.28,0.28,0.28,0.28,0.28,0.14,0.28,0.28,0.28,0.28,0,0.14,0.28,0,0,0.43,0,0.57,0.28,0,0,0.023,0.324,0.046,0,0,0,2.24,12,372,0 0,0,0,0,0,0,0,0,0,0,0,0,0.97,0,0,0,0,0,0,0,0,0,0,0,6.79,3.88,0.97,0.97,0.97,0.97,0.97,0.97,0,0.97,0.97,0.97,0.97,0,0,0.97,0,0,0.97,0,1.94,0,0,0,0,0.299,0.149,0,0,0,2.666,13,72,0 0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1.35,0,1.35,0,1.35,0,1.35,0,1.35,1.35,0,0,0.205,0,0.205,0,0,0,1.722,12,31,0 0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,3.7,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1.666,5,20,0 0,0,1.19,0,0,0,0,0,0,0,0,2.38,0,0,0,1.19,0,0,2.38,0,0,0,0,0,0,0,1.19,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1.19,0,0,0,0,0,0,0.2,0.4,0,0.2,0,0,1.461,4,19,0 0,0,0,0,1.81,0,0,0,0,1.81,0,0,1.81,0,0,0,0,0,0,0,0,0,0,0,1.81,1.81,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1.3,3,13,0 0,0,0,0,0,0,0,0,0,0.45,0,0.45,0,0,0,0,0,0,0.9,0,0,0,0,0,0,0.45,0.45,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0.082,0.165,0,0,0,0,1.666,4,40,0 0,0,0.26,0,0.53,0,0,0,0,0,0,0.26,0,0,0,0,0.26,0,0,0,0,0,0,0,1.61,0.8,0,0,0.53,0.8,0,0,0,0,0,0.8,0.26,0,0,0,0,0,0,0,0.26,0,0,0,0.128,0.042,0,0,0,0,1.635,6,139,0 0,0,0.32,0,0,0.16,0,0,0,0,0,0.64,0,0,0,0,0.48,0,0.96,0,0.96,0,0,0,0.48,0,0,0,0,0,0,0,0,0,0,0.16,0,0,0,0,0,0,0,0,0,0,0,0,0.021,0.105,0,0.021,0.063,0.063,3.789,39,432,0 0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0.24,0,0,0,1.93,1.69,0.72,0.24,0.24,0.24,0.24,0.24,0.24,0.24,0.24,0.24,0.24,0,0,0.24,0,0,0.24,0,0.24,0.48,0,0,0,0.148,0.074,0,0,0,2.386,12,210,0 0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1.97,1.72,0.49,0.24,0.24,0.24,0.24,0.24,0.24,0.24,0.24,0.24,0.24,0,0,0.24,0,0,0.24,0,0.24,0.49,0,0,0,0.15,0.075,0.037,0,0,2.367,12,206,0 0,0,0.09,0,0,0.09,0,0.27,0,0,0.18,1.49,0.09,0.09,0,0,0.46,0,0,1.49,0,0,0.09,0,2.42,0,0,0,0,0,0,0,0,0,0,0.09,0.18,0,0,0,0,0,0,0,0,0,0,0,0.066,0.118,0,0,0.066,0,2.156,26,552,0 0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,2.56,2.56,2.56,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,2.56,0,0,0,0,0,0,0,0,0,1.5,4,24,0 0,0,0,0,0,0,0,1.36,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,2.73,2.73,1.36,0,0,0,0,0,0,0,1.36,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1.541,7,37,0 0,0,0,0,0,0,0,0,0,1.25,0,1.25,0,0,0,0,0,0,6.25,0,0,0,0,0,0,0,1.25,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0.246,0,0,0,0,1.076,2,14,0 0,0.08,0.17,0,0,0.08,0,0.34,0,0.17,0.08,0.34,0,0,0,0,0.87,0,0.26,0,0,0,0,0,2.79,0.69,0,0.08,0,0,0,0,2.35,0,0,0.26,0.78,0,0.17,0,0,0,0,0,0,0,0,0,0.133,0.306,0.053,0,0.013,0,3.205,57,904,0 0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1.625,9,26,0 0,0,0,0,0,0,0,0,0,4.54,0,4.54,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1.51,0,0,0,0,0,0,1.51,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0.286,0,0,0,0,2.277,12,41,0 0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,3.7,0,0,0,0,0,0,0,1.85,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1.5,5,18,0 0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1.545,4,17,0 0.35,0,0.35,0,0.71,0,0,0,0,0,0,0.35,0,0,0,0,0,0,0.35,0,0.17,0,0,0,0.53,0.35,0.53,0.17,0.17,0.17,0.17,0.17,0.35,0.17,0.17,0.17,0,0,0,0.17,0,0.71,0.17,0.17,0.35,0,0,0,0.123,0.309,0.03,0,0,0,2.241,13,204,0 0,0.13,0.55,0,0.27,0.13,0,0,0,0.27,0,1.38,0,0,0,0.13,0,0,1.94,0,0.97,0,0,0,0.13,1.11,0,0,0,0,0,0,0,0,0,0,0.55,0,0,0,0,0,0.13,0,0,0,0,0,0.075,0.025,0,0.025,0,0,5.695,82,598,0 0,0,0.48,0,0,0,0,0,0,0,0,0.48,0,0,0,0,0,0,0,0,0,0,0.48,0,1.44,1.93,0,0,1.44,1.44,0,0,0,0,0,0,1.44,0,0,0,0,0,0,0.48,0,0,0,0,0,0,0,0.119,0.059,0,6.145,115,338,0 0,0,0.24,0,0.09,0.04,0,0,0.04,0,0.04,0.69,0,0,0,0.14,0.19,0,0.69,0,0.64,0,0,0,2.04,1.09,0,0.04,0,0.19,0.14,0,0.04,0,0.29,0.09,0.34,0,0,0,0,0,0,0,0.04,0,0,0,0.014,0.148,0,0.014,0.044,0.007,2.112,26,1223,0 0,0,0,0,0,0,0,0,0,0,0,0.64,0,0,0,0,0,0,1.28,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1.92,0,1.92,0,1.92,0,1.92,0,1.92,1.92,0,0,0.394,0.098,0.295,0,0,0,1.813,13,107,0 0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,2.09,7,23,0 0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0.97,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1.94,0,1.94,0,1.94,0,1.94,0,1.94,1.94,0,0,0.147,0.147,0.294,0,0,0,1.789,12,68,0 0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1.72,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1.72,0,1.72,0,1.72,0,1.72,0,1.72,1.72,0,0,0,0,0.265,0,0,0,1.65,12,33,0 0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,1,4,0 0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,2.09,7,23,0 0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,2,0,0,0,0,2,0,0,0,0.687,0,0,0,0,1.888,9,17,0 0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,2.777,0,0,0,2,4,6,0 0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,2.777,0,0,0,2,4,6,0 0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,4.16,0,0,0,0,0,4.16,0,4.16,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0.751,0,0,0,1.428,4,10,0 0,0,0.08,0,0,0.16,0,0.08,0.08,0,0.08,0.92,0.08,0.08,0,0,0.16,0,0,0,0,0,0,0,3.53,0,0,0,0,0,0,0,0.25,0,0,0,0.08,0,0,0,0,0,0,0.16,0,0,0,0,0.069,0.103,0,0,0.011,0,2.44,18,598,0 0,0,0,0,2.38,0,0,0,0,0,0,0,0,0,0,0,0,0,2.38,0,2.38,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1.5,4,15,0 0,0,0,0,0.84,0,0,0,0,0,0,1.68,0,0,0,0.42,0,0.42,1.68,0,0.42,0,0,0,0,0,0,0,0.84,0,0,0,0,0,0,0,0,0,0,0,0,2.95,0,1.26,0,0,0,0,0.145,0.217,0,0,0,0,1.487,8,61,0 0,0,0,0,0,0,0,0,0,0.84,0,0.84,0,0,0,0,0,0,4.2,0,0,0,0,0,1.68,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0.119,0,0,0,1.454,9,32,0 0.08,0.08,0.57,0,0.48,0,0,0.08,0,0,0,0.81,0.08,0,0.08,0,0.81,0,0.65,0,0.4,0,0,0,1.38,0,0,0,0,0,0.16,0,0.16,0,0.08,0,0.08,0,0,0.08,0,0.89,0,0.24,0.08,0,0,0.08,0.011,0.034,0,0.057,0.022,0,1.875,65,542,0 0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1.66,0,0,0,0,0,0,0,1.66,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0.304,0,0,2.125,9,34,0 0,0,0,0,0,0,0,0,0,0,0,3.57,0,0,0,0,0,1.78,1.78,0,0,0,0,0,1.78,0,0,1.78,0,0,0,0,1.78,0,1.78,0,1.78,0,0,0,0,0,0,0,0,0,0,0,0,0.319,0,0,0,0,2.391,10,55,0 0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0.86,0,0,0,0.86,0,0,0,0.86,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1.944,8,35,0 0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,2.09,7,23,0 0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,2.85,0,0,0,0,2.85,0,0,0,0,0,0,2.85,0,0,0,0,0.543,0,0,0,0,1,1,10,0 0,0,0,0,0.9,0,0,0,0,0,0,0,0,0,0,0,0,0.9,4.5,0,0.9,0,0,0,0,0,0.9,0,0.9,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0.318,0,0,0,0,1.772,4,39,0 0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,9.52,4.76,4.76,4.76,4.76,4.76,4.76,4.76,0,4.76,4.76,4.76,0,0,0,4.76,0,0,0,0,0,0,0,0,0,1.257,0,0,0,0,3.333,11,30,0 0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,2.32,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1.375,6,44,0 0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,2.03,0,0,0,0,0,2.53,2.53,1.52,0,0,0,0,0,1.01,0,0,0,0.5,0,0.5,0,0,0,0.5,3.04,0.5,0,0,0,0.094,0,0.094,0.094,0,0,1.26,12,63,0 0,0,0,0,0,0,0,0,0,1.2,0,2.4,0,0,0,0,0,0,4.81,0,1.2,0,0,0,0,0,1.2,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1.2,0,0,0,0,0,0,0.227,0,0,0,0,1.062,2,17,0 0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,3.09,0,0,0,0,0,1.03,1.03,2.06,0,0,0,0,0,1.03,0,0,0,0,0,0,0,0,0,0,3.09,0,0,0,0,0,0,0,0.193,0,0,1,1,23,0 0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1.2,0,1.2,0,0,0,0,0,1.2,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0.237,0,0,2.583,8,62,0 0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1.73,0.86,3.47,0.86,0.86,0.86,0.86,0.86,0,0.86,0.86,0.86,1.73,0,1.73,0.86,0,0,1.73,0,1.73,0,0,0,0,0.289,0,0,0,0,1.978,12,91,0 0,0,0,0,0,0,0,0,0,0,0,4.76,0,0,0,0,0,0,0,0,0,0,0,0,0,0,4.76,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,4.76,0,0,0,0,0,0.645,0,0,0,0,1,1,9,0 0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1.66,0,0,0,0,0,1.66,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0.837,0,0,0,0,3.789,10,72,0 0.23,0.23,0,0,0.23,0.23,0,0.47,0.23,0.23,0.23,0.23,0,0,0,0.23,0,0,2.87,0,1.91,0,0.23,0.23,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0.23,0,0,0,0,0,0,0.37,0.205,0.041,2.281,24,146,0 0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,4.16,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,1,7,0 0.11,0,0.11,0,0.34,0.22,0,0,1.02,0,0,0.45,0.11,0,0,0,0,0,0.45,0,0.22,0,0,0,0.68,0.79,0.11,0,0,0,0,0,0.34,0,0,0.11,0.22,0,0,0,0,0,0,0,0,0,0,0,0.096,0.192,0.08,0,0.032,0,2.829,32,549,0 0.11,0,0.11,0,0,0,0,0,1.15,0,0,0.34,0,0,0,0,0,0,0.46,0,0.23,0,0,0,0.57,0.69,0.11,0,0,0,0,0,0.34,0,0,0.11,0,0,0,0,0,0,0,0,0,0,0,0,0.047,0.159,0.031,0,0.031,0,3.196,32,505,0 0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,20,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,1,5,0 0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,6.66,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,1,12,0 0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,3.7,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,7.4,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1.272,3,14,0 1.19,0,0.59,0,0,0,0,0,0,0,0,1.19,0,0,0,0,0,0,2.97,0,1.19,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0.102,0,0,1.52,7,38,0 0.08,0,0.08,0,0,0,0,0,0.79,0,0,0.26,0,0,0,0,0,0.08,0.35,0,0.26,0,0,0,0.88,0.97,0.08,0,0,0,0,0,0.26,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0.149,0.162,0.049,0,0.024,0,2.9,40,673,0 0.05,0,0.05,0,0.3,0,0,0,0.51,0,0,0.15,0,0,0,0,0,0.05,0.2,0,0.15,0,0,0,0.67,0.72,0.05,0,0,0,0,0,0.2,0,0,0,0.46,0,0,0,0,0,0,0.1,0,0,0,0,0.209,0.158,0.05,0,0.014,0,3.764,85,1423,0 0.17,0.08,0.08,0,0.17,0.08,0,0,0.76,0,0,0.25,0,0,0,0.08,0,0.08,0.34,0,0.25,0,0,0,0.76,0.85,0.08,0,0,0,0,0,0.34,0,0,0,0.68,0,0,0,0,0,0,0,0,0,0,0,0.157,0.205,0.036,0,0.024,0,2.883,47,715,0 0,0,1.16,0,0,0,0,0,0,0,0.58,4.09,0,0,0,0,0,0,0,0,0,0,0,0,1.16,0,0,0,0,0,0,0,0,0,0,0.58,0,0,1.16,0,0,0,0,0,0,0,0,0,0.091,0,0,0,0,0,1.21,4,46,0 0,0.15,0.07,0,0.23,0,0,0.07,0.07,0.07,0,1.48,0.15,0.23,0,0.07,1.01,0,0.15,0.07,0,0,0.15,0.07,3.11,0,0,0,0,0,0,0,0.15,0,0,0,0.15,0,0,0,0,0.46,0,0,0.23,0,0,0,0.185,0.098,0,0,0.043,0,2.013,24,576,0 0,0,0,0,0,0,0,0,0,0,0,5.88,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1.098,0,0,2.142,9,15,0 0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,2.08,0,0,0,0,0,0,0,0,0,0,2.08,2.08,0,4.16,0,0,0,0,0,0,0,0,0,0,0,0,0.173,0,0,1.777,6,48,0 0,0,0,0,0.74,0,0,0,0,1.49,0,0,0,0,0,0,0,0,1.49,0,0.74,0,0,0,2.98,2.23,1.49,2.23,0.74,0.74,1.49,0.74,0,0.74,0.74,1.49,0.74,0,0,0.74,0,0,0.74,0,0.74,0,0,0,0,0.557,0.111,0,0,0,2.607,12,133,0 0,0,0,0,0,0,0,0,0,0,0,0,0,10,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,4.75,8,19,0 1.26,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1.26,0,1.26,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0.178,0,0,1.272,3,14,0 0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,5.55,2.77,2.77,2.77,0,2.77,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1.857,11,26,0 0,0.13,0.52,0,0,0.13,0,0.79,0,0,0,0.13,0,0,0,0.13,0,0,0.26,0,0.39,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0.13,0,0,0,0,0,0,0.02,0.061,0,0.04,0.04,0,1.823,26,372,0 0,0,0,0,0,0,0,0,0,0.8,0,1.07,0,0,0,0.26,0,0,1.07,0,1.88,0,0,0,2.15,1.61,1.07,0.26,0.26,0.26,0.26,0.26,0,0.26,0.26,0.26,0.53,0,0,0.26,0,0,0.53,0.53,0.53,0,0,0,0.174,0.437,0,0.043,0,0,2.879,19,262,0 0,0,0.36,0,0.36,0.72,0,0,0,0,0,1.09,0,0,0,0,0.36,0,0.36,0,0.72,0,0,0,1.09,1.09,0,0,0,0.36,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0.114,0.114,0,0,0,0,2.075,7,110,0 0.68,0,1.02,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1.36,0,0,0,0,0,0.34,0.34,0.68,0.34,0,0.34,0,0,0,0,0.34,0,0,0,0.34,0,0.34,0,0,0,1.02,0.34,0,0,0,0.172,0,0.387,0,0,1.5,15,84,0 0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0.43,0,0.86,0,0,0,6.03,3.44,0.86,0.43,0.43,0.43,0.43,0.43,0,0.43,0.43,0.43,0.86,0,0.43,0.43,0,0,0.43,0,0.43,0,0,0,0,0.13,0.065,0.065,0,1.043,2.983,40,179,0 0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,12.5,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,2.5,4,5,0 0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0.391,0,0,1.333,4,20,0 0,0,0,0,0,0,1.23,0,0,0,0,1.23,0,0,0,0,1.23,0,0,0,0,0,0,0,2.46,0,0,0,0,1.23,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0.403,0,0,2.045,6,45,0 0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,3.33,0,0,0,0,0.628,0,0,0,0,1.5,5,15,0 0,0,0,0,0,0,0,0,0,0,0,1.41,0,0,0,0,0.7,0,1.41,0,1.41,0,0,0,0,0,0.7,0,0,0,0.7,0,0,0,0,0,0,0,0,2.12,0,0,0,0,0,0,0,0,0,0.267,0.066,0,0,0,17.857,199,375,0 0,0.07,0.15,0,0.12,0.02,0,0.02,0,0.12,0,0.3,0.12,0,0,0.02,0.17,0.12,0.22,0.02,0.12,0,0,0,0,0,0,0,0,0,0,0,2.16,0,0,0.15,0.68,0,0,0.02,0.1,0.02,0.02,0.02,0,0.33,0,0.43,0.037,0.225,0.007,0.015,0.041,0.003,2.198,25,2458,0 1.23,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1.23,0,0.61,3.7,0,2.46,0,0,0,0,0,1.23,0,0.61,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0.61,0,0.226,0,0,0,0,1.3,3,26,0 0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,3.33,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,1,5,0 0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1.166,2,7,0 0,0,0,0,1.54,0,0,0.51,0,0.51,0,0.51,0.51,0,0,0.51,0,0,1.54,0,1.03,0,0,0,0.51,0.51,1.54,0.51,0,0.51,0,0,0,0,0.51,0,0.51,0,0,0,0.51,0,0,0,0,0.51,0,0,0,0.158,0,0.079,0,0,1.711,15,77,0 0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1.166,2,7,0 1.75,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1.75,0,1.75,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1.75,0,0,0,0,0.317,0,0,0,0,1.125,2,9,0 0,0,0,0,0,0,0,0,0,2.17,0,0,0,0,0,0,0,0,0,0,0,0,0,0,13.04,0,0,0,0,4.34,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,7.407,3.555,19,96,0 0,0,0,0,0,0,0,0,0,0,0,3.7,0,0,0,0,0,3.7,0,0,0,0,0,0,3.7,0,0,0,0,3.7,0,0,0,0,0,0,3.7,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1.466,6,22,0 0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,1,3,0 0,0,0,0,1.05,0,0,0,0,0,0,0,0,0,0,0,0,0,1.05,0,0,0,0,0,0,0,1.05,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0.181,0,0,2,7,22,0 0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0.319,0,0,0,0,2.636,9,29,0 0,0,0,0,0.22,0.22,0,0,0,0.45,0,0.9,0,0,0,0,0,0,0.67,0,0.22,0,0,0,0.67,0,0,0.67,0,0,0.45,0,0,0,0.67,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0.024,0,4.223,157,359,0 0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1.166,2,7,0 0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1.166,2,7,0 0,0,0,0,0,0.49,0,0.49,0,0,0,0,0,0,0,0,0,0,0.49,0,0,0,0,0,0,0,0.49,0,0,0,0,0,0,0,0,0,0.49,0,0,0,0,0,0,0,0,0,0,0,0,0.228,0,0,0,0,1.962,5,106,0 0,0,0.32,0,0.32,0,0,0,0,0,0,0.64,0,0,0,0,0,0,0.32,0,0,0,0,0,0.64,0.64,0,0,0,0,0,0,0,0,0,0.32,0.64,0,0,0,0,0,0,0,0,0,0,0,0,0.04,0,0,0,0,1.902,10,175,0 0,0,2.5,0,0,0,0,0,0,0,0,2.5,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,2.5,0,0,0,0,0,0,0,0,5,0,0,0,0,0,0,0,0,0,0,0,0,1,1,15,0 0,0,0,0,0,0,0,0,0,0,0,5.88,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0.961,0,0,2.333,9,14,0 0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,2.7,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0.431,0,0,0,0,2.733,7,41,0 0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1.96,0,0,0,0,1.96,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0.613,0.306,0,0,0,1.611,7,29,0 0,0,0,0,0,0,0,0,0,0,0,0,0,1.19,0,0,0,1.19,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1.19,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,2.178,21,61,0 0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,5.12,2.56,2.56,2.56,2.56,2.56,2.56,2.56,0,2.56,2.56,2.56,0,0,0,2.56,0,0,0,0,0,0,0,0,0,0.881,0,0,0,0,2.5,11,40,0 0.77,0,0,0,0.25,0,0,0,0,0,0,1.28,0,0,0,0,0,0,2.05,0,2.31,0,0,0,0.25,2.57,0,0,0.51,0,0,0,0,0,0,0,0.25,0,0,0,0,0,0,0,0,0,0,0,0,0.117,0,0.039,0,0,4.016,45,237,0 0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1.45,0,0,0,0,0,0.72,6.56,0,0,0,0,0,0,0,0,0,0.72,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0.124,0,0,2.361,30,85,0 0.07,0,0.22,0,0.03,0.07,0,0,0.03,0.22,0,0.71,0.03,0,0,0.03,0,0,0.9,0,0.56,0,0,0,1.58,0.26,0,0.11,0.11,0.11,0.18,0,0.03,0,0.22,0.07,0.18,0,0,0.03,0,0,0,0,0,0,0,0.03,0.028,0.078,0,0.028,0.016,0,1.765,20,1356,0 0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,3.84,0,0,0,0,0,0,0,0,0,0,0.719,0,1.25,2,10,0 0,0,0.34,0,0.34,0,0,0,0.34,0,0,0.34,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,2.78,0,0,0,0,0,0,0,0,0,0,1.583,6,95,0 0.89,0,0,0,1.49,0.29,0,0,0,0,0,1.19,0,0,0,0,0,0,0.89,0,0.89,0,0,0,0,0,0.29,0,0,0,0,0,0.29,0,0,0,0,0,0.29,0,0,0.59,0,0.59,0,0,0,0,0.325,0.162,0,0,0,0,1.583,9,76,0 0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,3.84,0,0,0,0,0,0,0,0,0,0,0.724,0,1.25,2,10,0 0,0,0,0,0,0,0,0,0,0,0,3.72,0,0,0,0,0,0,3.1,0,0,0,0,0,0.62,0,0,0,1.24,0,0,0,0,0,0,0,0,0,0,0,0,1.24,0,0,0,0,0,0,0,0.11,0,0,0,0,1.47,8,50,0 0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1.23,4,16,0 0,0,0,0,0,0,0,0,0,0,0,0,0,1.07,0,0,0,0,0.35,0,1.43,0,0,0,3.95,0.71,0,0,0,0,0,0,0,0,0.71,0,0.35,0,0,0,0,0,0.35,0,0.35,0,0,0,0,0.113,0.113,0.056,0,0,2.969,16,193,0 0,0,0,0,0,0,0,0,0,1.37,0,2.75,0,0,0.68,0,0,0,0,0,0,0,0,0,2.06,2.06,1.37,0,0.68,0.68,0,0,0,0,0,0,0,0,0,0,0,0,0,1.37,0,0,0,0,0,0.235,0,0,0,0,1.531,11,49,0 0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,5.66,0,1.88,0,1.25,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0.22,0,0,0,0,2.15,8,43,0 0,0,0.25,0,0.12,0.12,0,0.12,0.25,0,0.12,1.14,0.25,0,0,0,0.25,0,0,0,0,0,0.25,0,3.04,0,0,0,0,0,0,0,0,0,0,0,0.12,0,0,0,0,0,0,0,0,0,0,0,0,0.12,0,0,0.017,0,2.444,24,418,0 2,0,0,0,0,0,0,0,0,0,2,2,0,0,0,0,0,0,2,0,8,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,5.888,29,53,0 0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,2.56,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,2.56,0,0,0,0,0.465,0,0,0,0,1.769,6,23,0 0,0,0,0,0,0,0,0,0,0,0,0.9,0,0,0,0,0,0.9,0.9,0,0,0,0,0,0.9,0.9,0,0,0.9,0,0.9,0,0.9,0,0,0.9,0,0,0,0,0,0.9,0,0,0,0,0,0,0,0.471,0,0,0,0,1.424,8,47,0 0,0,0,0,0,0,0,0,0,0.58,0,2.33,0,0,0,0.58,0,0,1.75,0,3.5,0,0,0,0,0.58,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0.58,0,0,0,0,0,0.195,0,0.097,0,0,2.157,11,41,0 0,0,0.2,0,0,0,0,0,0.2,0.41,0,0,0,0,0,0,0,0,1.45,0,0.2,0,0,0,0,0.2,0.2,0,0.2,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1.45,0,0,0,0,0,0.329,0,0.109,0,0.365,1.187,11,114,0 0,1.16,0,0,0,0,0,1.16,0,1.16,0,0,0,0,0,0,0,0,0,0,1.16,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1.16,0,0,0,0,0,0,0,0,0,1.25,3,20,0 0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,5.34,0,0,0.21,0,0,0,0,0,0,0,0,0,0,0,0,0.03,0.06,0,0,0,0,2.426,76,199,0 0.23,0,0,0,0.23,0.23,0,0,0,0,0,0.23,0,0,0,0.23,0,0,0.47,0,0,0,0,0,0.47,0.23,0,0,0,0.47,0.23,0,0.47,0,0,0,0.23,0,0,0,0,0,0,0,0,0,0,0,0.107,0.107,0,0,0,0,1.595,8,142,0 0,0,0,0,0,0,0,0,0,0,0,5,0,0,0,0,0,0,0,0,0,0,0,0,0,0,5,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,5,0,0,0,0,0,0.684,0,0,0,0,1,1,8,0 0,0,0,0,0,0,0,0,0,0,0,3.7,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0.74,0,0,1.5,4,18,0 0,0,0,0,0,0,0,0,0,0,0,0.46,0.46,0,0,0,0,0,1.38,0,0.46,0,0,0,0.46,0,0,0,0,0,0,0,0,0,0,0,0.92,0,1.38,0,0.92,0.46,1.38,0,1.38,0.92,0,0,0.149,0.074,0.149,0,0,0,1.76,12,132,0 0,0,0.8,0,0,0,0,0,0,0,0,0.8,0,0,0,0,0,0,4.8,0,1.6,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0.8,0,0,0,0,0,0,0,0,0,0,1,1,11,0 0,0,2.32,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0.854,0,0,0,0,1.823,8,31,0 0,0,0,0,0,0,0,0,0,0,0,0,1.4,0,0,0,0,1.4,2.81,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1.125,2,9,0 0.21,0,0.21,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0.42,0,2.11,0,0,0,2.32,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0.084,0,0.028,0.084,0.084,4.11,62,411,0 0,0,0,0,0,0,0,0,0.68,0,0.68,0,0,0,0,0.68,0,2.04,4.08,0,0.68,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0.523,0,0,1.218,5,39,0 0.11,0,0.22,0,0.55,0,0,0,0,0,0,0.55,0,0,0,0.11,0.11,0,1.22,0,0,0,0,0,1.22,0.44,0,0,0,0.11,0,0,1.89,0,0,0,0,1.22,0.11,0,0,0,0,0,0.22,0,0,0.11,0.052,0.156,0.034,0.017,0,0.052,3.061,38,600,0 0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,5.35,0,0,0.21,0,0,0,0,0,0,0,0,0,0,0,0,0.03,0.06,0,0,0,0,2.444,76,198,0 0.75,0,0,0,0,0,0.37,0,0,0.37,0,0,0,0,0,0,0.75,0,3.75,0,3.38,0,0,0,0.37,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0.099,0.597,0,0,0,2.125,13,85,0 0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1.72,3.44,0,0,0,0,0,0,0,0,0,0,1.72,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1.611,7,29,0 0,0,0,0,0,0,0,0,0,0,0,2.7,0,0,0,0,0,0,2.7,0,2.7,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0.444,0,0,2.8,7,28,0 0,0,0,0,0,0.67,0,0.67,0,0,0,2.02,0,0,0,0,0,0,0,0,0,0,0,0,2.02,1.35,0,1.35,0,0,0,0,0,0,0.67,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0.205,0,0,0,0,2.84,24,142,0 0,0,0,0,4.76,0,0,0,0,0,0,0,0,0,0,0,0,0,4.76,0,9.52,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0.8,0,0,1.5,4,9,0 0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,5.55,0,0,0,0,0,0,0,0,0,1.714,6,12,0 0,0,0,0,0,1.03,0,2.07,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0.144,0.072,0,0,0,1.523,11,64,0 0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,3.5,2.63,3.5,2.63,1.75,1.75,0.87,0.87,0,0.87,1.75,0.87,0.87,0,2.63,0.87,0,0,0.87,0,1.75,0,0,0,0,0.49,0.122,0.122,0,0,2.203,12,130,0 0.06,0,0.4,0,0.13,0.13,0,0.13,0,0,0,1.4,0.2,0.06,0,0,0.2,0,0.06,0,0,0,0,0,2.54,0,0,0,0,0,0,0,0,0,0,0.06,0.06,0,0,0,0,0,0,0,0.06,0,0,0,0.028,0.085,0,0,0,0,2.341,22,665,0 0,0,0,0,0,0,0,0,0,0,0,1.02,0,0,0,0,0,1.02,2.04,0,0,0,0,0,2.04,1.02,0,0,0,0,0,0,0,0,0,0,0,0,1.02,0,0,0,0,0,0,0,0,0,0,0.188,0,0,0,0,3.9,13,78,0 0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,2.8,12,28,0 0.26,0.26,0,0,0.52,0.26,0,0.52,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1.83,1.57,0,0,0.26,0,0.26,0,0,0,0.26,0.26,0.26,0,0,0,0,0,0.52,0,0,0,0,0,0.065,0,0.032,0,0,0,1.455,12,115,0 0.13,0,0.26,0,0.65,0,0,0,0,0,0,0.52,0,0,0,0.13,0.13,0,1.18,0,0,0,0,0,0.52,0.26,0,0,0,0.13,0,0,2.1,0,0,0,0,1.44,0.13,0,0,0,0,0,0.26,0,0,0.13,0,0.188,0.041,0,0,0.062,2.876,38,420,0 0,0,0,0,0,0,0,0,0,0,0,3.63,0,0,0,0,0,0,0,0,0,0,0,0,0.9,3.63,0,0,0,0,0,0,0,0,0,0,1.81,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0.153,0,0,1.933,7,58,0 0,0,0,0,0,0,0,0,0,0,0,6.45,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0.645,0,0,1.666,7,15,0 1.17,3.52,0,0,0,0,0,0,0,1.17,0,1.17,0,0,0,0,0,3.52,2.35,0,3.52,0,0,0,3.52,2.35,0,0,0,0,0,0,0,0,0,0,0,0,0,1.17,0,0,0,0,0,0,0,0,0,0,0,0.414,0,0,1,1,14,0 0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,10,0,0,0,0,0,0,1.4,3,7,0 0,0,0,0,0,0,0,0,0,0,0,0,0.8,0,0,0,0,0,2.4,0,0.8,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0.8,0,1.6,0,0.8,0.8,1.6,0,1.6,0.8,0,0,0.128,0,0.128,0,0,0,1.596,12,83,0 0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,6.25,0,0,0,0,0,0,0,6.25,0,0,0,0,0,6.25,0,0,0,0,0,0,0,0,0,0,0,6.25,0,0,0,0,0,0,0,0,0,1.285,3,9,0 0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,11.11,0,0,0,0,0,11.11,0,0,0,0,1.492,0,0,0,0,1.571,4,11,0 0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,25,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1.25,2,5,0 0,0,0.44,0,0,0,0,0,0,0,0,0.44,0,0,0,0,0,0,0,0,0,0,0,0,1.76,1.76,0,0,0,0,0,0,0,0,0,0,0.88,0,0.88,0,0,0,0.44,0,0,0,0,0.44,0,0,0.061,0,0,0,1.949,17,230,0 0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,5.55,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,5.55,0,0,0,0,0,0,0,0,0,1,1,5,0 0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,4.25,0,0,0,0,0,0,0,2.12,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,2.12,0,0,0,0,0,0,0,0,0,1.142,2,8,0 3.03,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,3.03,0,0,0,0,0,0,0,3.03,0,0,0,0,0,0,0,0,0,0,0,3.03,0,0,0,0,0,3.03,0,0,0,0,0.609,0,0,0,0,1.181,3,13,0 0,0,0,0,0,0,0,0,0,0,0,1.69,0,0,0,0,0.42,0,0,0.42,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0.42,0,0,0,0,0,0,0,0.84,0,0,0,0,0,0.061,0,0,0,0,2.288,11,103,0 0,0,0.32,0,0,0,0,0,0.32,0,0,1.3,0,0,0,0,0,0,0.97,0,0.32,0,0,0,0,0,0,0,0,0.32,0,0,0,0,0,0,0.32,0,0.32,0,0.65,0,0.32,0.32,0,1.3,0,0,0.047,0.094,0.047,0,0,0,1.973,17,148,0 0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1.88,0,0.47,0,0,0,2.83,2.35,1.88,2.35,1.41,1.41,0.47,0.47,0,0.47,1.41,0.47,0.47,0,0,0.47,0,0,0.47,0,1.41,0,0,0,0,0.144,0.072,0.072,0,0,2,13,168,0 0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,2.53,0,0,0,0,0,1.26,1.26,1.26,2.53,1.26,1.26,0,0,0,0,1.26,0,0,0,0,0,0,0,0,0,1.26,0,0,0,0,0,0,0.208,0,0,1.758,11,51,0 0.11,0.11,0.34,0,0.11,0,0,0,1.02,0,0,0.45,0,0,0,0.11,0,0,0.45,0,0.22,0,0,0,0.56,0.68,0.11,0,0,0,0,0,0.34,0,0,0,0.22,0,0,0.11,0,0.11,0,0,0,0,0,0,0.103,0.177,0.029,0,0.029,0,4.296,81,653,0 0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,4.25,10,17,0 0,0,0.58,0,1.16,0,0,0,0,0,0,0,0,0,0,0,0.58,0,2.33,0,0,0,0,0,2.33,0,0.58,0,0,0,0,0,0.58,0,0,0,0,0,0,0,0,0,0,0.58,0.58,0,0,0,0,0.203,0,0.407,0.407,0,3.294,17,112,0 0,0,0,0,0,0,0,0,0,0,0,4.65,0,2.32,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0.448,0,0,2,4,28,0 0,0,0,0,0,0,0.88,0,0,0,0,0.88,0,0,0,0,0,0,0.88,0,0,0,0,0,0,0,0,0,0,0,0,0,1.76,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0.133,0,0,0,0,1.629,9,44,0 0,0,0,0,0,0,0,0,0,0.63,0,0.63,0,0,0,0,0,0,0,0,0.63,0,0,0,2.54,1.91,1.91,0.63,0.63,0.63,0.63,0.63,0,0.63,0.63,0.63,0.63,0,0.63,0.63,0,0,0.63,0,0.63,0,0,0,0,0.279,0.093,0,0,0,1.981,12,105,0 0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,7.69,3.84,3.84,3.84,3.84,3.84,3.84,3.84,0,3.84,3.84,3.84,0,0,0,3.84,0,0,0,0,0,0,0,0,0,1.092,0,0,0,0,2.909,11,32,0 0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,20,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1.75,4,7,0 0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,12.5,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,1,6,0 0,0,0,0,0,0,0,0,0,0,0,0.54,0,0.54,0,0,0,0,0,0,0.54,0,0,0,2.71,1.63,0.54,0.54,0.54,0.54,0.54,0.54,0,0.54,0.54,0.54,0,0,0,0.54,0,0,0,0.54,0.54,0,0,0,0,0.531,0,0,0,0,4.114,35,251,0 0,0,0,0,0,0,0,0,0,0,0,2.38,0,0,0,0,0,0,2.38,0,0,0,0,0,0,0,2.38,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,2.38,0,0,0,0,0,0,0,0,0,1.666,9,25,0 0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,5.33,0,0,0.21,0,0,0,0,0,0,0,0,0,0,0,0,0.03,0.06,0,0,0,0,2.481,76,201,0 0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1.92,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1.92,0,0,0,0,0,0,0,0,0,1,1,6,0 0,0,0,0,0,0,0,0,0,0,0,0.65,0,0,0,0,0,0,0,0,1.31,0,0,0,2.63,1.97,1.31,0.65,0.65,0.65,0.65,0.65,0,0.65,0.65,0.65,0,0,0,0.65,0,0,0,0.65,0.65,0,0,0,0,0.507,0,0,0,0,3.041,34,146,0 0,0,0.32,0,0.32,0,0,0,0,0,0,0.64,0,0,0,0,0,0,0.32,0,0,0,0,0,0.64,0.64,0,0,0,0,0,0,0,0,0,0.32,0.64,0,0,0,0,0,0,0,0,0,0,0,0,0.04,0,0,0,0,1.677,10,156,0 0,0,0,0,0,0,0,0,0,1.96,0,0,0,0,0,0,0,1.96,1.96,0,0,0,0,0,0,0,0,1.96,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0.373,0,0,0,0,1.857,11,26,0 0,0,0,0,0,0,0,0,0,1.96,0,0,0,0,0,0,0,1.96,1.96,0,0,0,0,0,0,0,0,1.96,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0.373,0,0,0,0,1.857,11,26,0 0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1.2,0,0,0,0,0,2.4,1.2,1.2,1.2,1.2,1.2,1.2,1.2,0,1.2,1.2,1.2,0,0,0,1.2,0,0,0,0,1.2,0,0,0,0,0.57,0,0,0,0,2.312,11,37,0 0,0,0,0,0,0,0,0,0,1.11,0,3.33,0,0,0,0,0,0,1.11,0,0,0,0,0,2.22,1.11,0,0,0,3.33,0,0,0,0,0,1.11,0,0,0,0,0,0,0,0,0,0,0,1.11,0,0.191,0,0,0,0,1.454,7,48,0 0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0.28,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1.343,0,0,0,0,4.226,8,317,0 0,0,0.33,0,0.66,0,0,0.33,0,1.32,0,0,0,0.33,0,0,0.33,0,1.32,0,0.33,0,0,0,1.98,0.66,0.66,0,0,0,0,0,0.33,0,0,0,0.99,0,0,0,0,0,0.33,0.33,0.33,0,0,0,0.168,0.392,0,0.224,0.336,0,4.115,42,321,0 0.51,0,0,0,0.17,0.17,0,0,0.34,0.17,0,2.07,0,0,0,0.17,0,0,2.24,0,1.03,0,0,0,0.34,0.69,0.17,0,0,0,0,0,0,0,0,0,0.34,0,0,0,0,0,0.17,0.34,0,0,0,0,0.466,0.248,0,0,0,0.062,2.926,48,319,0 0,0.1,0,0,0.1,0.21,0,0.1,0,0,0,1.19,0,0,0,0,0,0,0.1,0,0,0,0,0,0.87,0,0,0,0,0.1,0,0,0.1,0,0,0.43,0,0,0,0,0,0,0,0.1,0,0,0,0,0,0.047,0,0,0.031,0,1.793,12,391,0 0.09,0,0,0,0,0.09,0,0.28,0,0,0,0.76,0.09,0,0,0,0.38,0,0,0,0,0,0,0,2.66,0,0,0,0,0,0,0,0.38,0,0,0,0.09,0,0,0.47,0,0.09,0,0,0,0,0,0,0.026,0.093,0,0.013,0.12,0,2.658,24,577,0 0,0,0,0,0,0,0,0,0,0,0,2.89,0,0,0,0.57,0,0,0,0,1.73,0,0,0,2.31,0,0,0,0,3.46,0,0,0,0,0,0,0.57,0,0,0,0,0,0,0,0,0,0,0,0,0.163,0,0,0,0,1.9,12,76,0 0.3,0.3,0,0,0.6,0.3,0,0.6,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0.6,0.3,0,0,0.3,0,0.3,0,0,0,0.3,0.3,0,0,0,0,0,0,0.3,0,0,0,0,0,0,0,0,0,0,0,1.389,8,82,0 0,0,0,0,0,0,0,0,0,0,0,1.4,0,0,0,0,0.7,0,1.4,0,1.4,0,0,0,0,0,0.7,0,0,0,0.7,0,0,0,0,0,0,0,0,2.11,0,0,0,0,0,0,0,0,0,0.267,0.066,0,0,0,17.952,200,377,0 0,0,0,0,0,0.24,0,0,0,0,0,0.72,0,0,0,0,0,0,0.24,0,0,0,0,0,2.65,1.2,0,0,0,0,0,0,0.24,0,0,0,0.96,0,0,0,0,0,0,0,0,0.48,0,0.24,0.067,0.371,0.067,0,0,0,3.322,44,319,0 0.23,0,0.23,0,0.69,0,0,0,0,0,0,1.39,0,0,0,0,0,0,0.23,0,0,0,0,0,0.23,0.23,0,0,0,0,0,0,0.23,0,0,0,0,0,0,0,0,0,0,0.23,0,0,0,0,0,0.068,0,0,0,0,1.483,9,89,0 0,0,0,0,0,0,0.68,0,0,0.68,0,0,0,0,0,0,0,0,1.37,0,2.06,0,0,0,0,0,0.68,0,0,0,0,0.68,0,0.68,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0.144,0,0,0,0.072,3.369,19,155,0 0.58,0,0,0,0.19,0.19,0,0,0.38,0.19,0,2.32,0,0,0,0.19,0,0,2.51,0,1.16,0,0,0,0.19,0.58,0,0,0,0,0,0,0,0,0,0,0.19,0,0,0,0,0,0,0.38,0,0,0,0,0,0.251,0,0,0,0.071,2.08,11,156,0 0,0,0,0,0.63,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0.31,0,0,0,0,0,0,1.26,0,0,0,0,0,0,0,0.31,0,0,0,0.31,0,0,0,0,0.14,0,0,0,0,1.592,7,129,0 0,0,0,0,0.63,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0.31,0,0,0,0,0,0,1.26,0,0,0,0,0,0,0,0.31,0,0,0,0.31,0,0,0,0,0.14,0,0,0,0,1.592,7,129,0 0,0,0.42,0,0.64,0,0,0,0,0,0,0.21,0,0,0,0,0,0,0.85,0,0.21,0,0,0,2.13,0.21,0.21,0,0,0,0,0,2.13,0,0,0,0.42,0,0.21,0.21,0,0,0.42,0.21,0.64,0,0,0,0.238,0.443,0.068,0,0,0,2.524,18,260,0 0,0,0,0,0.24,0.49,0,0,0,0.49,0,0.24,0,0,0,0,0,0,0.99,0,0.49,0,0,0,0.74,0,0,0.74,0,0,0.49,0,0,0,0.74,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0.054,0,0,0.027,0,4.634,157,380,0 0,0.23,0,0,0.47,0,0.23,0,0,0,0.23,0,0,0,0,0,0,0.23,0.23,0,0.23,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0.23,0,0,0,0,0,0,0.23,0,0,0,0.298,0,0.149,0,0,1.533,18,184,0 0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,3.03,0,0,0,0,0,0,0,3.03,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,3.03,0,0,0,0,0,0,0,0,0,1.272,4,14,0 0,0,0,0,0,0,0,0,0,0,0,3.75,0,0,0,0,0,0,0,0,0,0,0,0,1.25,1.25,0,1.25,0,0,0,0,0,0,0,0,0,0,1.25,0,0,0,0,0,0,0,0,0,0,0.224,0,0,0,0,2.379,18,69,0 0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,20,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,1,5,0 0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,25,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,1,4,0 0.39,0,0.19,0,0,0,0,0,0,0.19,0.19,1.98,0,0.19,0,0,0,0.19,0.19,0,0.19,0,0,0,1.58,1.19,0,0.19,0,0.39,0.19,0,0.59,0,0.39,0.39,1.19,0,0.19,0,0,0.19,0.19,0,0,0,0,0.39,0.28,0.14,0.028,0.112,0,0,2.101,17,311,0 0,0,0,0,0,0,0,0,0,0,0,0,0,0.88,0,0,0.88,0.88,2.65,0,1.76,0,0,0,0.88,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1.37,3,37,0 0.13,0.06,0,0,0.13,0.13,0,0,0.13,0.27,0.06,0.41,0.06,0,0,0.27,0.06,0,1.04,0.13,0.83,0,0,0.06,1.46,0.48,0,0.13,0,0.06,0.27,0,0,0,0.13,0,0.2,0,0,0,0,0,0,0,0.06,0,0,0.48,0,0.194,0,0.029,0.048,0.009,1.793,23,888,0 0.09,0.09,0.28,0,0.28,0,0,0.28,0,0,0,0.09,0.18,0,0,0,0.18,0.28,1.22,0,0.37,0,0.09,0,0,0,0,0,0,0,0,0,0,0,0,0.09,0.28,0,0,0.09,0,0,0,0.28,0.37,0.09,0,0,0.014,0.084,0,0.042,0,0.042,1.877,18,552,0 0,0,0,0,0,0,0,0,0,0.68,0,0,0,0,0,0,0,0,1.37,0,0,0,0,0,0,0,0.68,0,0,0,0,0,0,0,0,0,0.68,0,0.68,0,0,0,0.68,0,0,0,0,0,0,0,0,0,0,0,1.488,12,64,0 0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,5.88,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,2.5,4,5,0 0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0.934,0,0,0,0,3.2,7,16,0 0,0,0,0,0,0,0,0,0,2,0,0,0,0,0,0,0,0,0,0,0,0,0,0,4,2,2,2,2,4,2,2,0,2,2,2,0,0,0,2,0,0,0,0,0,0,0,0,0,0.682,0,0,0,0,2.705,11,46,0 0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0.354,0,0,0,0,2.187,5,35,0 0.9,0,0,0,0,0,0,0,0,0,0,2.7,0,0,0,0,0,0,3.6,0,0,0,0,0,0,0.9,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0.9,0,0,0,0.9,0,0.479,0,0,0,0,2.166,8,52,0 0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,20,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,3.333,8,10,0 0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,2.35,0,0,0,1.17,1.17,2.35,0,0,0,0,4.7,0,4.7,0,0,0,0,1.17,0,0,0,0,0,2.35,0,0,0,0.185,0.743,0,0,0,0,4.476,14,94,0 0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,3.84,0,0,3.84,0,0,0,0,0,0,0,0,0,1,1,4,0 0,0,0,0,1.85,0,0,0,0,0,0,0,0,0,0,0,0,0,1.85,0,0,0,0,0,1.85,3.7,0,3.7,0,0,0,0,0,0,3.7,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0.544,1.634,0,0,0,2.352,11,40,0 0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,1,6,0 0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0.42,0.42,0.85,0,0,0,0,2.14,0,2.14,0,0,0,0,0,0,0,0,0,0,0.85,0,0,0,0.332,0.73,0,0,0,0,5,14,270,0 0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0.84,1.27,0.42,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0.84,0,0,0,0.325,0.781,0,0,0,0,4.758,14,276,0 0,0,0.24,0,0,0,0,0.12,0.12,0,0,0.6,0.12,0.12,0,0,0.72,0,0,0,0,0,0,0,1.81,0,0,0,0,0,0,0,0,0,0,0.12,0.12,0,0,0,0,0,0,0,0,0,0,0,0.105,0.06,0,0,0,0,1.827,23,466,0 0.67,0,0,0,0,0,0,0,0.33,0.33,0.33,0.33,0.33,0,0,0,0,0.33,1.35,0,0.67,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0.056,0.28,0.168,0.056,0,0,1.866,17,112,0 0.1,0,0.1,0,0,0,0,0,0.92,0,0,0.4,0,0,0,0,0.1,0,0.4,0,0.2,0,0,0,0.51,0.61,0.1,0,0,0,0,0,0.3,0,0,0,0.1,0,0,0,0,0,0,0.1,0,0,0,0,0.014,0.154,0.028,0,0.028,0,2.785,32,507,0 0.04,0.02,0.12,0,0.08,0.02,0,0.08,0,0.06,0.02,0.5,0.06,0,0.02,0.02,0.14,0.12,0.25,0,0.19,0,0.04,0,0,0,0.1,0,0.02,0,0,0,1.97,0,0,0.19,0.97,0.02,0,0.02,0.1,0.02,0,0.14,0,0.33,0.02,0.1,0.024,0.198,0,0,0.018,0.003,2.43,81,3337,0 0,0,0,0,0,0,0,0,0,0,0,1.66,0,0,0,0,0,0,3.33,0,1.66,0,0,1.66,1.66,0,1.66,0,0,0,0,0,0,0,0,0,1.66,0,0,0,0,0,0,0,0,0,0,0,0,0.29,0,0,0,0.29,1.722,7,31,0 0,0,0.5,0,0,0,0,0,0,0,0,0.5,0,0,0,0,0,0,0,0,0,0,0.5,0,1.52,2.03,0,0,1.52,1.52,0,0,0,0,0,0,1.01,0,0,0,0,0,0,0.5,0,0,0,0,0,0,0,0.122,0.061,0,4.309,38,237,0 0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,3.84,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1.8,6,18,0 0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1.98,0,0.99,0,0,0,2.97,1.98,0,0.99,0,0,0,0,0,0,0.99,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0.51,0,0,0,0,2.347,10,54,0 0,0.11,0,0,0.11,0.22,0,0.11,0,0,0,1.32,0,0,0,0,0,0,0.22,0,0,0,0,0,0.99,0,0,0,0,0.22,0,0,0.11,0,0.11,0.44,0,0,0,0,0,0,0,0.11,0,0,0,0,0,0.047,0,0,0.031,0,1.614,12,339,0 0,0,0.21,0,0,0,0,0.21,0,0.21,0,0,0,0,0,0,0,0.21,0,0,0,0,0,0,0.21,0.21,0,0.43,0,0,0,0,0.21,0,0.21,0,0.21,0,0,0,0,0,0,0,0,0,0,0,0,0.149,0,0,0,0,1.79,15,188,0 0,0,0,0,0,0.3,0,0,0,0,0.3,2.42,0,0,0,0.3,0,0.9,3.63,0,0.6,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0.087,0,0,2.74,64,148,0 0,0,0,0,0,0,0,0,0,0,0,2.9,0,0,0,0.58,0,0,0,0,1.74,0,0,0,2.32,0,0,0,0,3.48,0,0,0,0,0,0,0.58,0,0,0,0,0,0,0,0,0,0,0,0,0.165,0,0,0,0,1.7,12,68,0 0,0,0,0,0,0,0,0,0,5.26,0,5.26,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0.952,0,0,3.2,12,16,0 0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,4.22,0,1.4,0,0,0,1.4,0,1.4,2.81,0,0,0,0,1.4,0,1.4,0,0,0,0,0,0,0,0,0,0,0,0,2.81,0,0.458,0,0.229,0,0,2.653,15,69,0 0,0,0,0,0,0,0,0,0,1.66,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1.66,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0.265,0,0,0,3.85,26,77,0 0,0,1.28,0,0,0,0,0,0,0,0,1.28,0,0,0,0,0,0,2.56,0,0,0,0,0,2.56,1.28,0,0,0,0,0,0,2.56,0,0,0,1.28,0,0,0,0,3.84,0,0,0,0,0,0,0,0.148,0.148,0,0,0,2.034,13,59,0 0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,2.96,0,1.48,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0.74,0,0.268,0,0.134,0,0,2.75,8,22,0 0,0,0,0,0.19,0,0,0,0,0,0.19,0.77,0.19,0,0,0.19,0,0.19,0.38,0.19,0,0,0,0,0.19,0,0,0.38,0,0,0,0,0,0,0,0.19,0.38,0,0.19,0,0,0.38,0,0,0,0,0,0,0.068,0.113,0,0.022,0.045,0,1.74,21,395,0 0,0,2.12,0,1.06,0,0,0,0,1.06,0,1.06,0,0,0,0,0,0,4.25,0,0,0,0,0,0,0,1.06,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1.06,0,0,0,0,0,0,0,0,0,1.785,6,25,0 0,0,0,0,0,0,0,0,0,0,0,0.68,0,0,0,0,0,0,0.68,0,0,0,0,0,0,0,0.68,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0.68,0,0,0,0,0.237,0,0,0,0,1.8,9,36,0 0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,8,4,4,4,4,4,4,4,0,4,4,4,0,0,0,4,0,0,0,0,0,0,0,0,0,1.117,0,0,0,0,3.333,11,30,0 0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,8.33,4.16,4.16,4.16,4.16,4.16,4.16,4.16,0,4.16,4.16,4.16,0,0,0,4.16,0,0,0,0,0,0,0,0,0,1.142,0,0,0,0,3.333,11,30,0 0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,7.2,4.05,0,0,0,0,0,0,0.9,0,0,0,2.25,0,0,0,1.35,0.9,0,0,0.9,0,0,0,0.332,0.747,0.166,0,0,0,4.054,19,296,0 0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,3.22,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,3.22,0,0,0,0,0,0,0,0,0,1.214,4,17,0 0,0,0.36,0,0,0,0,0,0.36,0,0,0,0,0,0,0,0,0.36,1.84,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0.236,0,0,0,0,1.277,3,69,0 0,0,1.21,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,2.43,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1.21,0,0,0,0,0,1.21,0,0,0,0.238,0,0,0.238,0,0,1,1,16,0 2,0,0,0,0,0,0,0,0,0,2,2,0,0,0,0,0,0,2,0,8,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,5.888,29,53,0 0,0,0,0,1.21,0,0,0,0,0,0,2.43,0,0,0,0,0,0,0,0,1.21,0,0,0,0,0,1.21,0,0,0,0,0,0,0,0,0,0,0,0,0,0,2.43,0,1.21,0,0,0,0,0.567,0.378,0,0,0,0,1.333,3,24,0 0,0.5,0,0,0,0,0,0,0,0,0,2,0,0,0,0,0.5,0,0,0,0,0,0,0,1.5,1,0,0,0.5,0,0,0,0,0,0,0,0,0,0,0,0,0.5,0,0,0,0,0,0,0,0,0,0,0,0,1.468,5,69,0 0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,2.17,0,0,0,0,0,5.43,6.52,2.17,1.08,1.08,1.08,1.08,1.08,0,1.08,1.08,1.08,0,0,1.08,1.08,0,0,0,0,1.08,0,0,0,0,0.472,0,0,0,0,5.291,34,127,0 0.06,0,0.25,0,0.25,0.25,0,0.5,0,0,0,0.56,0.12,0.06,0,0,0.5,0,0.12,0,0,0,0,0,2.06,0,0,0,0,0,0,0,0.06,0,0,0.75,0.06,0,0,0,0,0.06,0,0.06,0,0,0,0.06,0.104,0.069,0,0,0.043,0,2.148,23,623,0 0,0,0,0,0,0,0,0,0,0,0,1.31,0,0,0,0,0,0,1.31,0,0,0,0,0,0,2.63,0,0,0,0,0,0,0,0,0,0,1.31,0,0,0,0,0,0,0,0,0,0,0,0,0.431,0,0,0,0,2.176,8,37,0 0,0,0,0,0.19,0,0,0,0,0,0.19,0.76,0.19,0,0,0.19,0,0.19,0.38,0.19,0,0,0,0,0.38,0,0,0.38,0,0,0,0,0,0,0,0.19,0.38,0,0.19,0,0,0.38,0,0,0,0,0,0,0.066,0.111,0,0.022,0.044,0,1.759,21,403,0 0.75,0,0,0,0,0,0,0,0.75,0,0,3,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1.5,0,0,0,0,0,0,1.5,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,3.846,39,100,0 0,0,1.69,0,0,0,0,0,0,0,0,1.69,0,0,0,0,0,0,1.69,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1.69,0,0,1.69,0,0,0,0,0,0,0,0,0,0,0,0,1,1,12,0 0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,9.09,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1.714,5,12,0 0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,1,3,0 0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,20,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,1,5,0 0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,6.38,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,2.12,0,0,0,0,0,0.33,0,0,0,1.444,5,13,0 0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,14.28,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,1,6,0 0,0,0,0,0,0,0,0,0,0,0,0,1.61,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1.384,4,18,0 0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,20,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,1,5,0 0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,20,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,1,5,0 0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,20,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,1,5,0 0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,1,3,0 0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,20,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,1,5,0 0,0,0,0,0,0,0,0,0,0,0,0.99,0,0,0,0,0,0,0,0,0,0,0,0,0.49,0,0,0,0,0,0,0,0.49,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0.07,0.28,0,0,0,0,1.363,5,30,0 0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,20,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,1,5,0 0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,20,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,1,5,0 0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,14.28,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,1,7,0 0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,20,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,1,5,0 0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,20,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,1,5,0 0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,1,5,0 0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,1,4,0 0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,20,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,1,5,0 0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,20,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,1,5,0 0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,20,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,1,5,0 0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,20,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,1,5,0 0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,20,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,1,5,0 0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,1,4,0 0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0.526,0,0,0,0,1.529,6,26,0 0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,20,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,1,6,0 0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,20,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,1,5,0 0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,1,4,0 0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,2.285,7,32,0 0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,1,6,0 0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,1,3,0 0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,20,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,1,5,0 0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,20,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,1,5,0 0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,1,5,0 0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,20,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1.5,3,6,0 0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,20,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,1,5,0 0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,9.09,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1.833,5,11,0 0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1.5,3,6,0 0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,20,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,1,5,0 0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,20,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,2.5,7,10,0 0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,2.25,6,9,0 0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,20,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,1,5,0 0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,1,4,0 0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,20,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,1,5,0 0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,20,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,1,5,0 0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,20,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,1,5,0 0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,20,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,1,5,0 0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,1,5,0 0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,20,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,1,5,0 0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,20,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,1,5,0 0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,20,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,1,5,0 0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,20,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,1,5,0 0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,20,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,1,5,0 0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,20,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,1,5,0 0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,20,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,1,5,0 0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1.5,3,6,0 0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,20,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,1,5,0 0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,16.66,0,0,0,0,0,0,0,0,0,0,1.5,3,6,0 0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,1,3,0 0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,20,0,0,0,0,0,0,0,0,0,0,1,1,4,0 0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,16.66,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,1,6,0 0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,16.66,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,1,5,0 0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,1,6,0 0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,20,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,1,5,0 0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,20,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,1,5,0 0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,20,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,1,5,0 0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,20,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,1,5,0 0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,20,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,1,6,0 0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,20,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,1,5,0 0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,20,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,1,5,0 0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,20,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,1,5,0 0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,20,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,1,5,0 0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,20,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,1,5,0 0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,20,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,1,5,0 0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,20,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,1,5,0 0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,20,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,1,5,0 0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,20,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,1,5,0 0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,20,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,1,5,0 0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,20,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,1,5,0 0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,20,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,1,5,0 0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,20,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,1,5,0 0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,20,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,1,5,0 0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,11.11,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1.4,2,7,0 0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,20,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,1,5,0 0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,20,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,1,5,0 0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,20,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,1,5,0 0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,20,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,1,5,0 0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,20,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,1,5,0 0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,1,3,0 0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,1,4,0 0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1.6,4,8,0 0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,20,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,1,5,0 0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,20,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,1,5,0 0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,20,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,1,5,0 0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,20,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,1,5,0 0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,14.28,14.28,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,3.333,8,10,0 0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,16.66,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,2,4,6,0 0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,7.69,0,0,0,0,0,0,0,0,0,0,7.69,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,1,7,0 0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,20,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,1,5,0 0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1.142,2,8,0 0,0,0,0,0.44,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1.34,0,0,0,0,0,0,0,0.44,0,0,0,0,0.44,0,0,0,0,0,0,0,0,0,0,0,0,3.901,33,398,0 0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,1,3,0 0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,2.941,0,0,0,0,1,1,4,0 0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,1,3,0 0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,1,3,0 0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,1,4,0 0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,1,3,0 0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,1,3,0 0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,1,4,0 0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,1,3,0 0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,1,3,0 0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,1,3,0 0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,2,4,6,0 0,0,0,0,0,0,0,0,0,0,0,5.26,0,0,0,0,0,0,0,0,0,0,0,0,2.63,2.63,0,0,5.26,0,0,0,0,0,0,0,0,0,0,0,0,7.89,0,0,0,0,0,0,0,0,0,0,0,0,1.4,3,14,0 0,0.15,0,0,0.15,0,0,0,0.15,0.15,0.3,0.46,0,0,0,0,0,0.15,0.3,0,1.07,0,0,0,0,0,0,0,0,0.15,0,0,0.61,0,0,0.15,1.22,0,0,0,0,0,0,0,0,0.61,0,0.15,0.019,0.137,0,0,0,0,2.276,20,485,0 0.36,0.36,0,0,1.8,0,0,0,0,0,0,1.44,0,0,0,0,0.72,0,0.36,0,1.08,0,0,0,1.8,0,0,0,0.72,0.36,0,0,0,0,0,0,0.36,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1.636,12,54,0 0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,12.88,0,0,0,0,0.28,0,0,0.28,0,0,0,0.14,0,0.28,0,0,0,0,0,0,0,0,0,0,0,0,0.037,0,0,12.43,30,2051,0 0,0,0,0,2.02,0,0,0,0,0,0,0,1.01,0,0,0,0,0,1.01,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,2.02,0,0,0,0,0.166,0.166,0.166,0,0,0,1.428,6,40,0 0,0,0,0,0.3,0,0,0,0,0,0,0.76,0,0,0,0,0,0,0.15,0,0,0,0,0,0.3,0.15,0,0,0.6,0,0,0,0,0,0,1.21,0.15,0,0,0,0,0,0,0,0,0.15,0,0,0,0.022,0,0,0,0,1.59,37,272,0 0,0,0,0,0,0,0,0,0,1.08,0,1.08,0,0,0,0,0,0,2.17,0,2.17,0,0,0,0,2.17,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1.08,0,0,0,0,0,0.173,0,0,0,0,2.1,18,42,0 0,0,0.61,0,0,0,0,0,0,0,0,1.84,0,0,0,0,0,0,0,0,0,0,0,0,0,0.61,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0.61,0,0.079,0.158,0,0,0,0,2.508,17,143,0 0,0,0,0,0,0,0,0,0,0,0,0.64,0,0,0,0,0,1.29,0,0,0,0,0,0,4.51,3.22,3.22,1.29,0,1.29,1.29,0,0,0,1.29,1.29,0,0,0,0,0,0,0,0,0.64,0,0,0,0,0.324,0.194,0.129,0,0.194,2.142,10,150,0 0,0,0,0,0.53,0,0,0,0,0,0,0.53,0.53,0,0,0,0,0,0.53,0,1.06,0,0,0,0,0,1.06,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0.53,0,0,0,0,0.188,0,0,0,0,1.142,3,40,0 0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0.869,0,1.739,0,0,1,1,6,0 0,0,0,0,0,0,0,0,0,0,0,0.14,0,0,0,0,0,0,0,0,0.14,0,0,0,5.16,0,0,0,0.14,0.44,0,0,0.14,0,0,0,1.47,0,0.59,0,0,0,0,0,0.29,0,0,0,0.186,0.538,0.124,0,0,0,4.454,55,931,0 0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1.92,0,0,0,0,0,0,0,3.84,0,0,0,1.92,0,3.84,0,0,0,0,0,0,0,0,0,0,0,0,0.178,0,0,1.666,7,50,0 0,0,0,0,0,0,0,0,0,0,0,3.33,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,3.33,0,0,0,0.636,0,0,2,10,18,0 0,0,0,0,0,0,0,0,0,0,0,2.85,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,2.85,0,0,0,0,0,0,0,0,0,0.444,0,0,2.333,12,28,0 0,0,0,0,0,0,0,0,0,0,0,1.35,0,0,0,0,0,0,1.35,0,0,0,0,0,0,0,1.35,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1.35,0,0,0,0,0,0,1.533,6,23,0 0.11,0,0.23,0,0.23,0.11,0,0,1.15,0,0,0.34,0,0,0,0.11,0,0,0.46,0,0.23,0,0,0,0.57,0.69,0.11,0,0,0,0,0,0.34,0,0,0.34,0.23,0,0,0,0,0,0,0,0,0,0,0,0.048,0.194,0.032,0,0.032,0,3.275,33,511,0 0.17,0,0.17,0,0,0,0,0,0.8,0,0,0.26,0,0,0.08,0,0,0,0.35,0,0.17,0,0,0,0.62,0.71,0.08,0,0,0,0,0,0.26,0,0,0.08,0.44,0,0,0,0,0,0,0,0,0,0,0,0.253,0.168,0.084,0,0.024,0,4.665,81,1031,0 0.07,0,0.29,0,0.07,0.07,0,0,0.74,0,0,0.22,0,0.07,0,0,0,0.07,0.29,0,0.22,0,0,0,0.67,0.74,0.07,0,0,0,0,0,1.63,0,0,0,0.59,0,0,0,0,0,0.07,0,0,0,0,0,0.163,0.228,0.032,0,0.021,0,3.03,45,706,0 0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,2,0,0,0,0,0,0,4,2,2,4,0,2,0,0,0,0,2,0,0,0,0,0,0,0,0,0,2,0,0,0,0,0,0,0,0,0,2.095,11,44,0 0,0,0,0,0,0,0,0,0.75,0,0,0,0,0,0,0,0,0,1.51,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0.75,0,0,0,0,0.255,0,0,0,0,1.842,6,35,0 0.83,0,0.41,0,0,0,0,0,0,0,0.41,0.83,0,0,0,0,0,0,2.91,0,1.66,0,0,0,0.41,0.41,0,0,0,0,0,0,0,0,0,0,0.41,0,0,0,0,0,0.41,0,0,0,0,0,0,0,0,0.283,0,0,2.022,13,91,0 0,0,0.06,0,0,0,0,0.06,0.13,0.13,0.13,1.67,0.26,0.33,0,0.13,0.13,0,0,0.06,0.06,0,0,0,2.54,0.13,0,0,0.2,0.26,0.13,0,0,0,0.06,0.2,0.13,0.06,0,0.06,0,0,0,0,0,0,0,0,0.028,0.131,0,0,0,0,1.997,20,787,0 0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,2.32,0,0,0,0,0,0,0,2.32,0,0,0,0,0,4.65,0,0,0,0,0,0,0,0,0,0,0,2.32,0,0,0,0,0,0,0,0,0,1,1,11,0 0,0,0.38,0,0.38,0.38,0,0,0.38,0,0,1.55,0,0,0,0,0,0,1.16,0,0.38,0,0,0,0.77,0.77,0.38,0,0,0,0,0,1.93,0,0,0,0,0,0.38,0,0,0,0,0,1.16,0,0,0,0,0.061,0,0,0,0,2.953,34,127,0 0,0,0,0,0,0.47,0,0,0,0.23,0,0,0,0,0,0,0,0,2.6,0,0,0,0,0,5.45,0,0.23,0,0,0,0,0,0,0,0,0,0.71,0,0,0,0,0,0.94,0,1.18,0,0,0,0.119,0.158,0.119,0,0,0,2.565,19,295,0 0,0,0,0,0,0,0,0,0,0,0,0.88,0,0,0,0,0,0.22,0,0,0,0,0,0,0.22,0.22,0,0.44,0,0,0,0,0,0,0.22,0,0,0,0,0,0,0,0,0.22,0,0,0,0.22,0,0.172,0,0,0,0,1.729,15,128,0 0,0,0,0,0,0.57,0,0,0,0.28,0,0,0,0,0,0,0,0,2.86,0,0,0,0,0,4.58,0,0.28,0,0,0,0,0,0,0,0,0,0.57,0,0,0,0,0,0.85,0,0.85,0,0,0,0.144,0.192,0.096,0,0,0,2.306,19,203,0 0.41,0,0.83,0,0,0.41,0,0,0,0,0,0.83,0,0,0,0,0,0,1.67,0,0.41,0,0,0,0,0,0.83,0,0,0.41,0,0,0,0,0,0,0,0,0,0,0,0,0.41,0,0,0,0,0,0,0,0,0,0,0,1.12,3,56,0 0,0,0.15,0,0.13,0.03,0,0.08,0,0.06,0.03,0.64,0.08,0.01,0,0.05,0.22,0.01,0.15,0.03,0.33,0,0,0,0,0,0.01,0,0.03,0.01,0,0,1.33,0,0,0.1,0.76,0,0.01,0.05,0.06,0.03,0,0.05,0,0.1,0,0.37,0.024,0.254,0.002,0.002,0.007,0,2.128,36,3467,0 0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,1,4,0 0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,3.57,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,3.57,0,0,0,0.675,0,0,0,0,0,1,1,3,0 0,0.33,0,0,0.33,0,0,0,0,0,0,0.33,0,0,0,0,0,0.33,0,0,0,0,0,0,0.33,0.33,0,0.67,0,0,0,0,0,0,0.33,0,0,0,0,0,0,0,0,0.33,0,0,0,0.33,0,0.132,0,0,0,0,1.857,15,117,0 0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,5.55,0,0,0,0,0,0,0,2.77,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,1,7,0 0,0,0,0,0,0,0,0,0,0,0,1.63,0,0,0,0,0,0,1.63,0,0,0,0,0,0,0,1.63,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1.63,0,0,0,0,0,0,0,0,0,2.333,8,28,0 0,0,0.52,0,0,0,0,0,0,0,0,1.56,0,0,0,0.52,0,0,0.52,0,0,0,0,0,0,0,0,0,0,0,0,0,5.72,0,0,0,1.56,0,0,0,0.52,1.04,0,0,0,0.52,0,0,0,0.075,0.151,0,0,0,2.416,18,116,0 0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,18.18,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1.449,0,0,0,2,5,14,0 0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,11.11,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1.25,2,5,0 0,0,0,0,0,0,0,0,0,0,0,0.86,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0.86,0,0,0,4.74,0,0,0.86,0,0,0,0,0,0,0,0.43,0,0,0,0,0,0.062,0,0,0,0,1.21,6,69,0 0,0.13,0.54,0,0.27,0.13,0,0,0,0.27,0,1.21,0,0,0,0.13,0,0,1.89,0,0.94,0,0,0,0.13,0.94,0,0,0,0,0,0,0,0,0,0,0.54,0,0,0,0,0,0.13,0,0,0,0,0,0.073,0.048,0,0.024,0,0,5.15,82,582,0 1.26,0,0,0,0,0,0,0,0,1.26,0,1.26,0,0,0,0,0,1.26,2.53,0,0,0,0,0,0,0,0,2.53,0,0,0,0,0,0,0,0,0,0,0,0,1.26,0,0,0,1.26,2.53,0,0,0,0,0,0,0,0,2.842,11,54,0 0,0,0,0,0.64,0,0,0,1.28,0,0,0.64,0,0,0,0,0,0,0,0,1.28,0,0,0,0,0,1.28,0,0,0,0,0,0,0,0,0,0.64,0,0,0,0,0,0,0,0.64,0,0,0,0,0,0,0.197,0,0,2.35,13,94,0 0,0,0,0,0.5,0,0,0,0,0,0,0.5,0,0,0,0,0,0,1.01,0,0,0,0,0,1.01,0.5,5.55,0.5,0.5,0.5,0.5,0.5,0,0.5,0.5,0.5,0.5,0,0.5,0.5,0,0,0.5,0,0.5,0,0,0,0.083,0.167,0,0.502,0,0,1.547,11,113,0 0,0,0,0,0,0,0,0,0,0,0,1.33,0,0,0,0,0,0,0.44,0,0,0,0,0,0,0.44,0,0,0,0,0,0,1.33,0,0.44,0,0.89,0,0,0,0,0,0,0,0,0,0,0,0,0.397,0,0,0,0,1.936,10,122,0 0,0,0,0,0.68,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0.34,0,0,0,0,0,0,1.37,0,0,0,0,0,0,0,0,0,0,0,0.34,0,0,0,0,0.143,0,0,0,0,1.784,18,141,0 0,0,0,0,0.68,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0.34,0,0,0,0,0,0,1.37,0,0,0,0,0,0,0,0,0,0,0,0.34,0,0,0,0,0.143,0,0,0,0,1.784,18,141,0 0,0,0,0,0.9,0,0,0,0,0,0,0,1.8,0,0,0.9,0,0,0.9,0,0,0,0,0,2.7,0.9,0.9,0.9,0.9,0.9,0.9,0.9,0,0.9,0.9,0.9,0,0,0,0.9,0,0,0,0,0,0,0,0,0,0.449,0,0,0,0,2.15,11,43,0 0,0,0,0,0,0,0,0.99,0,0,0,0.49,0,0,0,0,0,0,0,0,0,0,0,0,1.98,0.49,0,0.49,0.49,0.99,0,0,0,0,0.49,0.49,0,0,0,0,0,0,0,0,0,0,0,0,0,0.119,0,0,0,0,2.135,13,126,0 0,0,0,0,0,0.23,0.23,0.23,0,0,0,0.46,0,0.46,0,0,0,0,0.23,0,0,0,0.23,0,0,0,0,0,0,0,0,0,0.23,0,0,0,0.23,0,0,0,0,0,0,0,0,0,0,0,0.073,0,0,0,0,0,3.184,74,207,0 0,0,0,0,0,0,0,0,0,0,0,0,0.86,0.86,0,0,0,0,0,0,0,0,0,0,3.44,2.58,1.72,0.86,0.86,0.86,0.86,0.86,0,0.86,0.86,0.86,1.72,0,1.72,0.86,0,0,1.72,0,1.72,0,0,0,0,0.27,0.135,0.135,0,0,2.288,13,103,0 0.1,0,0,0,0,0.1,0,0.52,0,0.1,0,1.9,0.1,0.1,0,0.1,0.21,0,0,0,0,0,0,0,3.17,0,0,0,0,0,0,0,0,0,0,0.1,0.1,0,0,0,0,0,0,0.1,0,0,0,0,0.027,0.138,0,0.041,0.041,0,2.321,31,469,0 0,0,0,0,0,0,0,0,0,0,0,1.61,0,0,0,0,0,0,0.53,0,0,0,0,0,1.61,0.53,0,0,0.53,0,0,0,0,0,0,0.53,0,0,0,0,0,0.53,0,1.07,0,0,0,0.53,0,0,0,0,0,0,1.375,5,99,0 0,0,0.41,0,0.41,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0.41,0,0,0,0.41,0,0,0,0,0,0,0.41,0,0.41,0,0,0,0,0,0,0,0,1.522,11,67,0 0,0,0,0,0.43,0,0,0,0,0,0,0.43,0,0,0,0,0,0,2.19,0,0,0,0,0,0,0,0.43,0,0,0,0,0,0.87,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0.079,0.158,0,0,0,0,1.115,2,29,0 0.23,0,0.23,0,0.69,0,0,0,0,0,0,1.38,0,0,0,0,0,0,0.23,0,0,0,0,0,0.23,0.23,0,0,0,0,0,0,0.23,0,0,0,0,0,0,0,0,0,0,0.23,0,0,0,0,0,0.066,0,0,0,0,1.412,9,89,0 0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,10,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,2.5,9,15,0 0,0,1.02,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1.02,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1.02,0,0,0,0,0,0.395,0,0,0,1.523,6,32,0 0,0,0,0,0,0,0,0,0.75,0,0,0.75,0,0,0,0,0,0,2.25,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0.75,0,0,0,0,0.263,0,0,0,0,1.176,3,20,0 0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,25,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,2,4,6,0 0,0,0.19,0,0.19,0.19,0,0,0,0.19,0,0.38,0,0,0,0,0,0.38,1.54,0,0.96,0,0,0,2.69,1.54,0.77,0.57,0.19,1.15,0.19,0.19,0,0.19,0.57,0.38,0.38,0,0,0.19,0.38,0,0.38,0,0.38,0,0,0.19,0.026,0.404,0.053,0.026,0,0,2.894,45,411,0 0,0,0,0,0,0,0,0.65,0,1.3,0,0,0,0,0,0,0,0.32,0.32,0,0.65,0,0,0,4.9,4.24,0.32,0,0,0.65,0,0,0,0,0,0,1.63,0,0,0,0.98,0,0,0,0.65,0,0,0,0.153,0.562,0.102,0,0,0,5.555,42,500,0 0.25,0,0,0,0,0,0,0,0.25,0,0,0,0,0,0,0.25,0,0,0.25,0,0,0,0,0,2.06,1.03,0.25,0.25,0.25,0.25,0.25,0.25,2.83,0.25,0.25,0.25,0.25,0,0,0.25,0,0,0.25,0,0.25,0,0,0,0.301,0.473,0.043,0.043,0,0,2.111,17,190,0 0,0,0,0,0,0,0,0,0,0,0,0,0,0,0.44,0,0,0.44,0,0,0,0,0,0,0.44,0.44,0,0.88,0,0,0,0,0,0,0.44,0,0,0,0,0,0,0,0,0.44,0,0,0,0,0,0.123,0,0,0,0,1.857,15,104,0 0,0,0.44,0,0.44,0,0,0,0,0.44,0,0.88,0,0,0,0,0,0.88,2.22,0,2.22,0,0,0,1.33,0.44,0.88,0.88,0,0.88,0,0,0,0,0.88,0,0,0,0,0,0,0,0,0,0,0,0,0.44,0,0.506,0,0.05,0,0,3.772,45,249,0 0.33,0,0,0,0,0,0,0,0.33,0,0,0,0,0,0,0,0,0,0.33,0,0,0,0,0,0,0,0,0,0,0,0,0,3.3,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0.448,0,0.056,0,0,1.788,6,93,0 0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1.166,2,7,0 0,0,1.1,0,0,0,0,0,0,0.27,0.27,0.55,0,0,0,0,0,0,1.1,0,0.83,0,0,0,1.1,0.27,0,0,0.55,0.27,0,0,0,0,0,0,0.83,0,0,0,0,0,0,0,0,0,0,1.1,0.543,0.349,0,0,0,0,2.724,79,316,0 0,0.29,0.29,0,0.29,0,0,0.29,0,0,0.29,1.45,0,0,0,0,0.58,0,1.16,0,1.45,0,0,0,0.87,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0.037,0.113,0,0,0.037,0,1.531,7,147,0 0,0,2.56,0,0,0,0,0,0,0,0,0,0,5.12,0,0,0,0,2.56,0,0,0,0,0,0,0,2.56,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,2.56,0,0,0,0,0.485,0,0,0,0,1,1,11,0 0,0,0,0,0,0,0,0,0,0,0,2.22,0,0,0,0,0,0,0,0,0,0,0,0,0,0,2.22,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,2.22,0,0,0,0,0,0,0.374,0,0,1.375,5,22,0 0,0,0,0,0,5.88,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,2.666,5,16,0 0,0,0,0,2.22,0,0,0,0,0,0,3.33,0,0,0,0,0,0,1.11,0,1.11,0,0,0,1.11,1.11,0,0,1.11,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,1,22,0 0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,5.26,0,0,5.26,0,0,0,0,0,0,0,0,0,1.25,2,5,0 0,0,0,0,0,0,0,0,0,0,0,0,0,2.63,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1.8,7,18,0 0,0,0,0,0,0,0,0,0,0,0,1.81,0,0,0,0,0,0,1.81,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1.81,0,0,0,0,0,0,0,0.286,0,0,0,0,2.277,9,41,0 2,0,0,0,0,0,0,0,0,0,2,2,0,0,0,0,0,0,2,0,8,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,5.888,29,53,0 0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,1,3,0 0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1.69,0,0,0,0,0,1.69,0,0,0,0,0,0,1.629,7,44,0 0,0,0,0,0.93,0,0,0,0,0.93,0,0.46,0,0,0,0,0,0,1.4,0,0,0,0,0,4.22,1.87,0.93,0.46,0.93,0.46,0.46,0.46,0,0.46,0.46,0.46,0.46,0,0,0.46,0,0,0.46,0,0.93,0,0,0,0,0.2,0.066,0,0,0,5.593,42,330,0 0,0,0,0,0,0,0,0,0,0,0,1.23,0,0,0,0,0,0,3.7,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1.23,0,0,1.23,0,0,0,0,0.404,0,0,0,0,1.187,4,19,0 0,0,1.49,0,0,0,0,0,0,0,0,1.49,0,0,0,0,0,0,1.49,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1.49,0,0,0,0,0,0,0,0.238,0,0.238,0,0,2,8,50,0 0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1.32,0,0,0,0,0,1.98,3.97,0,0,0,0.66,0,0,0,0,0,0.66,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0.102,0,0,2.531,30,81,0 0,0.23,0,0,0,0.23,0,0.46,0,0,0,0.92,0,0,0.23,0,0,0.23,0.23,0,0,0,0,0,1.15,0.92,0,0,0,0.23,0,0,0.23,0,0,0.23,0.23,0,0,0,0,0.23,0.23,0,0,0.23,0,0,0.063,0.063,0,0.159,0,0,1.616,13,173,0 0,0,0,0,1.23,0,0,0,0,0,0,0,0,0,0,0,0,0,1.23,0,0,0,0,0,0,0,1.23,0,0,0,0,0,0,0,0,0,0,0,0,0,0,3.7,0,1.23,1.23,0,0,0,0,0.468,0,0,0,0,1.058,2,18,0 0,0.8,0,0,0,0,0,0,0,1.6,0,0,0,0,0,2.4,0,0,5.6,0,1.6,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0.235,0,0,1.38,4,29,0 0.07,0,0.07,0,0,0.07,0,0,0,0,0.15,1.07,0.15,0.07,0,0,0.53,0,0,0,0,0,0.22,0,1.83,0,0,0,0,0,0,0,0,0,0,0.22,0.07,0,0,0,0,0,0,0,0,0,0,0,0.127,0.174,0,0,0.023,0,2.182,24,659,0 0.2,0,0.2,0,0.4,0,0,0,0,0,0.3,1.71,0,0.1,0,0,0.1,0,1.01,0.3,0.5,0,0,0,2.93,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0.042,0,0.014,0,0,4.325,63,545,0 0,0,0,0,1.11,0,0,0,0,0,1.11,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1.11,0,0,0,0,0,1.11,0,0,0,0,1.11,0,0,0,2.22,0,0,0,0,0,0,0,0.363,0,0.181,0,0,1.285,4,27,0 0,0,0,0,0,0,0,0,0,2,0,2,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,2,0,0,0,0.336,0,0,1.555,4,42,0 0.07,0,0.07,0,0,0.07,0,0,0,0,0.14,1.04,0.14,0.07,0,0,0.52,0,0,0,0,0,0.22,0,2.23,0.07,0,0,0,0,0,0,0,0,0,0.22,0.14,0,0.07,0,0,0,0.07,0,0,0,0,0,0.111,0.151,0.01,0,0.02,0,2.25,24,720,0 0,0.27,0,0,0,0,0,0,0,0,0,1.94,0,0,0,0,0.27,0,1.39,0,0,0,0,0,0.83,0.55,0,0,0,0.83,0,0,0,0,0,0,0,0,0,0,0,0,0,0.27,0,0,0,0,0.128,0,0,0,0,0,1.197,6,109,0 0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,4.34,0,0,0,0,0,0,0,0,0,4.34,0,8.69,0,0,0,0,0,0,0,0,0,0.636,1.273,0,0,0,0,3.5,24,35,0 1.06,0,0,0,1.06,0,0,0,0,0,0,1.06,0,0,0,0,0,0,1.06,0,1.06,0,0,0,0,0,1.06,0,0,0,0,0,0,0,0,0,0,1.06,0,0,0,0,0,0,0,0,0,0,0,0.386,0,0,0,0,1.705,6,29,0 0,0,0,0,3.44,0,0,0,0,0,0,3.44,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0.574,0,0,0,0,1.714,4,12,0 0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0.8,0,0,0,0,0,0.8,0,0,0,0,0.8,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0.125,0,0,0,0,1.428,5,50,0 0,0,0,0,0,0,0,0,0,0,0,0.55,0.55,0,0,0,0,0,1.65,0,0.55,0,0,0,1.1,0.55,0,0,0,0.55,0.55,0,0,0,0,0,0.55,0,0,0,0,0,0,0,0,0,0,0,0.087,0,0,0,0,0,1.657,8,58,0 0,0,0,0,0,0,0,0,1.16,0,0,1.16,1.16,0,0,0,0,0,1.16,0,1.16,0,0,0,0,0,1.16,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1.2,3,12,0 0,0,0,0,1.85,0,0,0,0,0,0,1.85,1.85,0,0,0,0,0,1.85,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1.85,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1.714,4,12,0 0,0,0,0,8.33,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,8.33,0,0,0,8.33,0,0,0,0,0,0,0,0,0,0,0,0,1,1,2,0 0,0,0,0,0,0.17,0,0,0,0,0,0.52,0.17,0,0,0,0.69,0,0,0,0.17,0,0,0,1.04,0,0,0,0.34,0.34,0,0,0,0,0,1.04,0,0,0,0.17,0,0,0,0.52,0,0,0,0,0,0.055,0,0,0,0,1.685,7,204,0 0,0,0,0,1.61,0,0,0,0,0,0,0.8,0.8,0,0,0.8,0,0,0.8,0,0,0,0,0,1.61,1.61,0,0,0,0,0,0,0,0,0,0,0.8,0,0.8,0,0,0,0,0,0,0,0,0,0,0,0.144,0,0,0,1.913,13,44,0 0,0,0,0,2.04,0,0,0,0,0,0,1.02,1.02,0,0,1.02,0,0,1.02,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1.02,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1.642,4,23,0 0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1.5,0,0.5,0,0.5,0,0,0,0,0,0,0,0,0,0,0,0,0.411,0,0,0,0,1.866,10,112,0 0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,2.4,1.2,1.2,1.2,1.2,1.2,1.2,1.2,1.2,1.2,1.2,1.2,0,0,0,1.2,0,0,0,1.2,0,0,0,0,0,0.446,0,0,0,0,2.166,11,39,0 0,0,0.28,0,0.28,0,0,0,0,0,0,0.85,0,0,0,0,0,0,0.28,0,0,0,0,0,1.7,0,0,0.56,0,0,0,0,0,0,0.56,2.55,0.28,0,0.28,0,0,0,0,0.28,0,0,0,0,0.223,0.074,0,0,0,0,1.958,55,190,0 0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,6,0,0,0,0,0,0,0,0,0,0,0,0,0,6,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1.333,4,12,0 0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1.88,1.88,0,1.88,0,0,0,0,0,1.88,0,0,0,0,0,3.77,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0.366,0,0,0,0,1.307,3,17,0 0,0,0.5,0,0,0,0,0.5,0,0,0,0.5,0,0,0,0.5,0,0,0.5,0,0,0,0,0,0.5,1,0,0,0,0,0,0,0,0,0,0,0.5,0,0,0,0,0,0,0,0,0,0,0,0,0.062,0,0.188,0,0,3.461,47,180,0 0.71,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1.43,0,0.71,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,3.041,26,73,0 0,0,0.36,0,0,0.73,0,0,0,0,0,1.46,0.36,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0.36,0,0,0,0,0,0,0,0,0,0,0,0,0.049,0,0.049,0,0,1.919,54,167,0 0,0,0,0,0,0,0,0.42,0,0,0,1.28,0.42,0,0,0,0.42,0,0,0,0,0,0,0,2.57,0,0,0,0.14,0,0,0,0.14,0,0,0.28,0.28,0.14,0,0,0,0,0,0,0,0,0,0.14,0.08,0.242,0,0,0.04,0,2.275,20,421,0 0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,4.76,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1.6,3,8,0 0,0,0.5,0,0.5,0,0,0,0,0.5,0,1.01,0,0,0,0,0.5,1.01,2.03,0,3.04,0,0,0,1.52,0.5,1.01,1.01,0,1.01,0,0,0,0,1.01,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0.551,0,0.055,0,0,4.275,45,248,0 0,0,0,0,0,0,0,0,0,0,0,0,0,5.55,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,3.888,13,35,0 0,0,1.31,0,0,0,0,1.31,0,0,0,0,0,0,0,0,0,0,3.94,0,0,0,0,0,0,0,0,1.31,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1.31,0,0,0,0,0.279,0,0.139,0,0,2.13,15,49,0 0,0,2.27,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,2.27,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,2.27,0,0,0,0,0.404,0,0.404,0,0,2.076,15,27,0 0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0.862,0,0.862,0,0,1,1,3,0 0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,3.03,0,0,0,0,0,3.03,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,3.03,0,0,0,0,0.507,0,0,0,0,1.133,3,17,0 0,0,0.65,0,0.65,0,0,0,0,0,0,0.65,0,0,0,0,0.65,0,0,0,0,0,0,0,0.65,3.26,0,0,0,0.65,0,0,0,0,0,0,0.65,0,0.65,0,0,0,0.65,0,0.65,0,0,0,0.093,0,0,0.093,0,0,1.705,17,87,0 0,0,0,0,0,0,0,2.63,0,0,0,0,0,0,0,0,0,0,0.37,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0.37,0,0.37,0,0.75,0,0.37,0,0.75,1.12,0,0,0,0,0.063,0,0,0,2.023,14,85,0 0,0,0,0,0,0,0,3.97,0,0.66,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1.32,0,0,0,1.98,0,0,0,0.66,1.98,0,0,0.11,0.11,0,0,0,0,2.857,19,120,0 0,0,0,0,0,0,0,5.88,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,1,10,0 0,0,0,0,0,0.6,0,0,0,0,0,0,0,0,0,0,0,0,0.6,0,0,0,0,0,3.03,0,0,0,0,0,0,0,0,0,0.6,0,0,0,0,0,0,0,0,0.6,0,0,0,0,0,0.092,0,0,0,0,1.568,9,69,0 0.46,0,0,0,0,0,0,0,0,0,0,1.85,0,0,0,0,0,0,0.92,0,0.46,0,0,0,0.92,0,0,0,0,0,0,0,0,0,0.46,0,0.92,0,0,0,0,0,0,0,0,0,0,0,0,0.125,0,0,0,0,1.51,10,74,0 0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,5.26,0,0,0,0,0,0,0,0,0,0,0,0,1,1,7,0 0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1.5,3,6,0 0,0,0,0,0,0,0,0.83,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0.83,0.41,0,0.41,0.41,0,0,0,0,0,0.41,0.41,0.41,0,0,0,0,0,0,0,0,0,0,0,0,0.158,0,0,0,0,1.969,13,130,0 0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0.85,0,0,0,0,0,4.27,3.41,2.56,0.85,0.85,0.85,0.85,0.85,0,0.85,0.85,0.85,0.85,0,0.85,0.85,0,0,0.85,0,0.85,0,0,0,0,0.278,0.139,0,0,0,2.138,12,77,0 0,0,0,0,0.67,0,0,0,0,0,0,2.01,0,0,0,0,0,0,1.34,0.67,1.34,0,0,0,0,0,0.67,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0.67,0.67,0,0,0,0.117,0.117,0,0,0,0,1.222,5,33,0 0,0.25,0,0,0,0.25,0,0.5,0,0,0,1.01,0,0,0.25,0,0,0.25,0.25,0,0,0,0,0,0.5,0.25,0,0,0,0.25,0,0,0.25,0,0,0.25,0,0,0,0,0,0.25,0,0,0,0.25,0,0,0,0.073,0,0,0,0,1.545,7,136,0 0,0,1.33,0,1.33,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1.33,0,0,0,8,8,0,0,0,0,0,0,0,0,0,0,1.33,4,1.33,0,0,4,0,0,0,0,0,0,0.865,0,0.216,0,0,0,1.647,12,28,0 0,0.04,0.23,0,0.09,0,0,0.04,0.04,0.04,0.04,0.74,0,0,0,0.13,0.04,0.04,0.93,0,0.65,0,0,0,1.49,0.32,0,0.23,0,0.18,0.18,0,0,0,0.23,0,0.32,0,0.04,0.04,0,0.18,0,0.13,0,0,0,0.04,0.027,0.184,0,0.047,0.061,0,1.686,20,1184,0 0,0,3.22,0,3.22,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,3.22,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,6.45,0,0,0,6.45,0,0,0,0,0,0,0,0,0,0,0,0,1,1,8,0 0,0,0.1,0,0.2,0.1,0,0,0,0,0,2.04,0.2,0.1,0,0,0.81,0,0,0,0,0,0.2,0,2.75,0,0,0,0,0,0,0,0,0,0,0.3,0.3,0,0,0,0,0,0,0,0,0,0,0,0.03,0.091,0,0,0,0,2.161,27,575,0 0,0,0,0,0,0,0,0,0,1.36,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1.36,1.36,0,2.73,0,0,0,0,0,0,0,1.36,0,0,1.36,0,0,0,0,0,0,0,0,0,0,0.475,0,0,0,0,3.478,11,80,0 0,0,0,0,0,0,0,0,0,0,0,1.11,0,0,0,0,0,0,0,0,0,0,0,0,4.44,1.66,0,1.11,0,0,0,0,0,0,1.11,0,0.55,0,0,0,0,0,0,0.55,0,0,0,0,0,0,0,0,0,0,2.018,12,107,0 0,0,0.31,0,1.04,0.1,0,0,0,0,0,0.1,0,0,0,0,0,0,0.2,0,0,0,0,0,0.41,0.2,0.52,0.2,0.2,0.2,0.2,0.2,0.41,0.2,0.2,0.2,0.1,1.57,0.1,0.2,0,0.41,0.1,0.1,0.1,0,0,0.1,0.067,0.523,0.016,0,0.016,0.033,2.232,47,393,0 0,0,0,0,2.7,0,0,0,0,0,0,0,0,0,0,0,0,0,0,2.7,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,2.7,0,0,0,0,0,0,0,0,0,0,1.4,5,14,0 0,0,0,0,2.94,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,2.94,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,2.94,0,0,0,0,0,0,0,0,0,1.333,3,16,0 0,0,0.28,0,0.84,0,0,0,0,0,0,1.96,0,0,0,0,0,0,0.28,0,0,0,0,0,1.4,0.84,0,0,0,0.84,0,0,0,0,0,0,0.56,0,0,0,0,0,0,0,0.28,0,0,0,0,0,0,0,0,0,1.426,7,97,0 0.55,0,0,0,0,0,0,0,0,0.55,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1.11,0.55,1.66,0.55,0.55,0.55,0.55,0.55,0,0.55,0.55,0.55,0.55,0,0.55,0.55,0,0,0.55,0,0.55,0,0,0,0,0.367,0.091,0,0,0,2.117,12,108,0 0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,4.34,0,0,0,0,0,0,0.86,2.6,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0.86,0,0,0,0,0.295,0,0,0,0,3.26,42,75,0 0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0.32,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0.32,0,0,0,0.218,0.218,0,0.054,0,0,2.16,9,108,0 0,0,0.78,0,0,0,0,0,0,0,0,0,0.78,0,0,0,0,0,0,0,0.78,0,0,0,0,0,0.78,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0.78,0,0,0,0,0.401,0,0.133,0,0,1.565,4,36,0 0,0,0,0,6.25,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1.5,2,3,0 0,0,0.71,0,0.71,0,0,0,0,0,0,0,0,0,0,0,3.57,0,0,0,1.42,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0.71,0,0,0,0,0,0,0,0.055,0,0.055,0,0,15.333,54,138,0 0,0,0.82,0,0.82,0,0,0,0,0,0,0.82,0,0,0,0,0.82,0,0,0,0,0,0,0,0,1.65,0,0,0,0.82,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0.82,0,0,0,0,0,0,0.119,0,0,1.272,6,42,0 0,0,0,0,0,0,0,0,0,2.43,0,2.43,0,0,0,0,0,0,0,0,2.43,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,2.43,0,0,0,0,0,0,5.3,40,53,0 0,0,0,0,3.92,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1.96,0,1.96,1.96,0,0,0,0,0,0,0.348,0,0,1.312,4,21,0 0,0,0.52,0,1.04,0,0,0,0,0,0,1.04,0,0,0,0,0,0,0.52,0,0.52,0,0,0,1.83,1.57,0.52,0.26,0.26,0.26,0.26,0.26,1.3,0.26,0.26,0.26,0.26,0,0.26,0.26,0,0.78,0.26,0.26,0.78,0,0,0.52,0.136,0.182,0.091,0,0.045,0,1.823,13,155,0 0,0,0.62,0,0.62,0,0,0,0,0,0,1.25,0,0,0,0,0,0,0.62,0,0.62,0,0,0,1.57,1.57,0.31,0,0,0,0,0,1.57,0,0,0,0.31,0,0.31,0,0,0.94,0,0,0.62,0,0,0.62,0.164,0.109,0.109,0,0.054,0,1.671,13,107,0 0,0,0.31,0,0,0,0,0,0,0,0,0.63,0,0,0,0,0,0.31,0,0,0.31,0,0,0,0.63,0.63,0,0.63,0,0.63,0,0,0,0,0.31,0,0.31,0,0,0,0,0,0,0,0,0,0,0,0,0.588,0,0,0,0,3.183,55,191,0 0,0,0.11,0,0.11,0,0,0,0,0,0.11,1.02,0,0,0,0,0,0.11,0.11,0,0,0,0,0,0,0,0,0.22,0,0,0,0,0,0,0.22,0,0.22,0,0.11,0.11,0,0.34,0,0,0,1.02,0,0,0.049,0.149,0,0,0,0,1.637,18,511,0 0,0,0.71,0,0.71,0,0,0,0,0,0,1.43,0,0,0,0,0,0,0.71,0,0.71,0,0,0,0,0,0.35,0,0,0,0,0,1.79,0,0,0,0,0,0,0,0,0.71,0,0,0.71,0,0,0.71,0,0.125,0.062,0,0.062,0,1.574,6,85,0 0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,15.38,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,14,53,56,0 0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,5,0,0,0,0,0,0,1.75,3,7,0 0,0,0.1,0,0,0,0,0.1,0,0,0.31,0.52,0.1,0,0,0.1,0.1,0,0.1,0,0,0,0.1,0,3.14,0,0,0,0,0,0,0,0,0,0,0.52,0.31,0,0,0.1,0,0,0,0,0,0,0,0.1,0.079,0.142,0,0,0.063,0,2.542,26,605,0 0,0,0,0,0,0,0,0,0,0,0,1.4,0,0,0,0,0.7,0,1.4,0,1.4,0,0,0,0,0,0.7,0,0,0,0.7,0,0,0,0,0,0,0,0,2.11,0,0,0,0,0,0,0,0,0,0.267,0.066,0,0,0,17.904,200,376,0 0,0,0,0,0,0,0,0,0,0,0,1.16,0,0,0,0,0,0,0,0,1.16,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1.866,6,28,0 0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1.81,0,0,0,0,0,3.63,1.81,0,0,0,3.63,0,0,0,0,1.81,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,2.227,11,49,0 0,0,0,0,0,0,0,0,0,0,0,0,0.62,0,0,0.62,0,0,1.88,0,0.62,0,0,0,1.25,0.62,0,0,0,0,0,0,0,0,0,0,1.25,0,1.25,0,0,0,1.25,0,0,0,0,0,0.895,0.179,0.358,0,0,0,1.712,13,149,0 0,0,0,0,0,1.63,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1.63,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1.63,0,0,0,0,0,0,0,0,0,1.25,4,15,0 0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0.8,0,0,0,0,0.8,0,0,0.8,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0.8,0.8,0,0,0,0,0,0,0,0.265,0,1.347,3,31,0 0,0,0.1,0,0,0,0,0.1,0,0,0.2,0.41,0.1,0,0,0.1,0.1,0,0.1,0,0,0,0.1,0,3.02,0,0,0,0,0,0,0,0,0,0,0.52,0.31,0,0,0.1,0,0,0,0,0,0,0,0.1,0.074,0.134,0,0,0.059,0,2.529,26,597,0 0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1.72,0,0,0,0,0,6.89,3.44,0,0,0,3.44,0,0,0,0,1.72,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,2.16,11,54,0 0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,4.65,2.32,2.32,2.32,2.32,2.32,2.32,2.32,0,2.32,2.32,2.32,0,0,0,2.32,0,0,0,0,0,2.32,0,0,0,0.692,0,0,0,0,3.312,11,53,0 0,0,0,0,0,0,0,0,0,1.57,0,4.72,0,0,0,0,0,0,1.57,0,0,0,0,0,0.78,0.78,0,1.57,0,0,0,0,0,0,0,0.78,0,0,0,0,0,0,0,0,0,0,0,0,0,0.268,0,0,0,0,2.885,11,101,0 0,0,2.56,0,0,0,0,0,0,0,0,1.28,0,0,0,0,0,0,1.28,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0.227,0,0,0,0,1.647,7,28,0 0,0,0,0,0,0,0,0,0,0,0,1.22,0,0,0,0,0,0.61,0,0,0,0,0,0,0.61,0.61,0,1.22,0,0,0,0,0.61,0,0.61,0,0.61,0,0,0,0,0,0,0.61,0,0.61,0,0,0,0.412,0,0,0,0,2.206,19,128,0 0,0.16,0.32,0,0.16,0.16,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0.97,1.13,0,0,0,0,0,0,0.8,0,0,0,1.29,0,0,0,0.32,0,0,0,0,1.61,0,0,0.184,0.394,0.131,0,0,0,3.666,20,506,0 1.12,0,0,0,0,1.12,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1.12,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1.12,0,0,0,0,0,0,0.204,0,0,1.214,3,34,0 0.19,0,0.59,0,0,0,0,0,0,0.39,0,0,0,0,0,0,0,0,2.59,0,0.39,0,0,0,0.79,0.39,0.59,0.39,0.39,0.39,0.39,0.39,0,0.39,0.39,0.39,0.19,0,0,0.39,0,0,0.19,0,1.19,0,0,0,0.093,0.657,0.062,0,0,0.062,2.156,13,207,0 0,0,0.87,0,0,0,0,0,0,2.63,0.87,0.87,0,0,0,0,0,0,1.75,0,0,0,0,0,1.75,0.87,2.63,0.87,0.87,0.87,0.87,0.87,0,0.87,0.87,0.87,0.87,0,0.87,0.87,0,0,0.87,0,0.87,0,0,0,0.139,0.976,0,0.139,0,0,1.767,12,76,0 0,0,0.6,0,0,0,0,3.04,0,0,0,0.6,0,0,0,0.6,0,0,0.6,0,1.21,0,0,0,1.21,1.82,0,0.6,0,0.6,0,0,0,0,0.6,0.6,1.21,0,1.21,0,0,0,0,0,0,0,0,0,0,0,0,0.077,0,0,3.277,33,177,0 0,0,0,0,0,0,0,0,0,0.82,0,0.82,0,0,0,0,0,0,1.65,0,0.82,0,0,0,0,1.65,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0.82,0,0,0,0,0.122,0,0,0,0,2.111,19,76,0 0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,2.12,6.38,0,0,0,0,0,0,0,0,0,0,2.12,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1.722,7,31,0 0,0,0,0,0,0,0,0,0,0,0,1.47,0,0,0,0,0,0,2.2,0,0.73,0,0,0,0.73,0.73,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0.111,0.223,0,1.76,6,88,0 0,0,0,0,0.87,0,0,0,0,0,1.31,0.43,0,0,0,1.75,0,1.31,2.63,0,0.87,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0.06,0,0.361,0.18,0,1.72,6,86,0 0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,7.69,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,1,4,0 0,0,0,0,0,0,0,0,0,0,0,2.94,0,0,0,2.94,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,2.94,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1.285,3,9,0 0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1.16,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,2.32,1.16,0,0,0,0,0.391,0,0,0,0,1.384,4,18,0 0,0,0.47,0,0.95,0.47,0,0,0,0,0,0.47,0,0,0,0,0,0,0.95,0,0,0,0,0,0,0.47,0.47,0,0,0,0,0,0,0,0,0,0,0.95,0,0,0,0.47,0,0,0,0,0,0,0,0.073,0,0,0,0,1.884,8,98,0 0,0,0,0,0,0,0,0,0,0,0,1.75,0,0,0,0,0,0,3.5,0,3.5,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1.75,0,0,0,0.325,0,0,0,0.651,0,1.125,3,18,0 0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,3.44,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,3.44,0,0,0,0,0,0,0,0,0,1,1,8,0 0,0,0,0,0.81,0,0,0,0,1.22,0,0.4,0,0,0,0,0,0,0.4,0,0.4,0,0,0,4.08,4.08,0,0,0,1.22,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1.754,8,93,0 0,0,0,0,0.88,0,0,0,0,2.65,0.88,0,0,0,0,0,0,0,1.76,0,0,0,0,0,1.76,0.88,1.76,0.88,0.88,0.88,0.88,0.88,0,0.88,0.88,0.88,0.88,0,0.88,0.88,0,0,0.88,0,2.65,0,0,0,0.142,0.855,0,0.285,0,0,1.777,12,80,0 0,0,0,0,0,0,0,0.83,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0.83,0.41,0,0.41,0.41,0,0,0,0,0,0.41,0.41,0.41,0,0,0,0,0,0,0,0,0,0,0,0,0.159,0,0,0,0,1.848,13,122,0 0,0,0.51,0,0.51,0,0,0,0,0,0,0.51,0,0,0,0,0,0,0,0,0,0,0,0,2.07,2.07,0,0,0,0,0,0,0,0,0,0,1.55,0,0,0,0,0.51,0,0,0,0,0,0.51,0.165,0.497,0,0.082,0,0,3.525,20,208,0 0,0,0,0,0,0,0,0,0.13,0,0,0.27,0,0,0,0,0,0,0,0,0,0,0,0,1.38,1.52,0,0,0,0,0,0,1.38,0,0,0,1.25,0,0.27,0,0.69,0,0,0,0,2.63,0.27,0,0.125,0.438,0.146,0,0,0,3.657,35,534,0 0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,4.65,2.32,2.32,2.32,2.32,2.32,2.32,2.32,0,2.32,2.32,2.32,0,0,0,2.32,0,0,0,0,0,0,0,0,0,0.757,0,0,0,0,2.5,11,50,0 0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1.75,0,0,0,0,0,3.5,3.5,0,0,0,0,0,0,0,0,1.75,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1.846,11,48,0 0,0,0,0,0.28,0,0,0,0,0,0,0.57,0,0,0,0,0,0.85,0,0,0,0,0,0,5.14,4,2.28,1.14,0.28,1.14,1.14,0.28,0.57,0.28,1.14,1.14,0.28,0,0,0.28,0,0,0.28,0,0.57,0,0,0,0.064,0.292,0.194,0.097,0,0.097,2.291,12,307,0 0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1.83,5.5,0,0,0,0,0,0,0,0.91,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0.91,0,0,0.91,0,0.175,0,0,0,0,1,1,18,0 0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,3.33,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,3.33,0,0,3.33,0,0,0,0,0,0,1,1,6,0 0,0.19,0.59,0,0.19,0,0,0,0,0.59,0.39,0.19,0,0.19,0,0,0,0.79,2.79,0,1.99,0,0,0,1.79,0.19,0.39,0.19,0,0,0.59,0.19,0.79,0.19,0.59,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0.203,0.018,0.018,0,0,3.716,47,472,0 0,0,0,0,1.15,0.28,0,0,0,0,0,0,0,0,0.28,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0.28,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0.072,0,0,0,0,1.517,8,88,0 0,0,0,0,0,0,0,0,0,0,0,1.29,0,0,0,0,0,0,0,0,0,0,0,0,1.29,3.89,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1.625,6,26,0 0,0,0,0,0.14,0,0,0,0,0,0,1.75,0,0,0,0,0,0,0.29,0,0,0,0,0,0.14,0,0,0.29,0,0.14,0,0,0.14,0,0.14,0,0.14,0.14,0,0,0,0,0,0.29,0,0.14,0,0,0,0.064,0,0.021,0,0,1.715,11,187,0 0,0,0,0,1.28,0,0,0,0,2.56,0,0.64,0,0,0,0,0,0,1.92,0,0.64,0,0,0,0.64,0.64,0,0,0,1.92,0,0,0,0,0,0,0.64,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1.536,8,63,0 0,0.22,0.22,0,0.45,0,0.22,0,0,1.82,0,0.68,0,0,0,0.68,0.22,0,2.05,0.45,1.59,0,0,0,0,0,0.22,0,0,0,0,0,0,0,0,0,0.91,0,0,0,0,0,0,0,0,0,0,0,0,0.101,0,0.135,0.067,0,2.5,27,210,0 0,0,0,0,0,0,0,0,0,1.44,0,0,0,0,0,0,0,0,1.44,0,1.44,0,0,0,2.89,1.44,4.34,1.44,1.44,1.44,1.44,1.44,0,1.44,1.44,1.44,0,0,0,1.44,0,0,0,0,1.44,0,0,0,0,0.417,0,0,0,0,2.166,11,39,0 0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1.78,0,0,0,0,0,0,0,3.57,0,0,0,1.78,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1.406,7,45,0 0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1.56,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,5.846,17,76,0 0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,3.846,0,0,0,0,0,6.333,17,19,0 0,0,0,0,0,0,0,0,0,0.58,0,0,0,0,0,0,0,0,0.58,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0.58,0,0,0,0.083,0,0,0,0,6.096,21,189,0 0.24,0,0.24,0,0.24,0,0,0,0,0,0,0,0,0,0,0,0.24,0.24,0.24,0,0,0,0,0.24,0.98,0.73,0,0.49,0,0.24,0,0,0,0,0.24,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1.831,13,152,0 0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,2.22,0,0,2.22,2.22,0,0,0,0,0,0,2.22,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0.374,0,0,0,1.583,8,19,0 0,0.25,0.5,0,0,0,0,0,0,0.5,0,0.63,0,0,0,0,0,0,0.38,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0.018,0.129,0.092,0.018,0,0,8.021,66,746,0 0,0,1.16,0,1.16,0,0,0,0,0,0,1.16,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1.16,0,0,0,0,0,1.16,0,0.368,0,0.184,0,0,2.833,11,51,0 0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,2.5,4,5,0 0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,3.888,8,35,0 0,0,0,0,0,0.4,0,0,0.4,0.4,0,0,0,0,0.4,0,0,0,1.22,1.22,0.4,0,0,0,0,0.4,0.4,0,0,0.4,0,0,0,0,0,0,0,0,0,0,0,0,0,0.81,0,0.4,0,0,0,0.065,0,0,0,0,1.84,8,81,0 0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,3,5,6,0 0,0,0,0,0,0,0,0,0,0,0,2.08,0,0,0,0,1.04,0,0,0,0,0,0,0,1.04,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0.478,0,0,0,0,3.291,21,79,0 0.17,0,0.26,0,0.08,0.08,0,0.08,0.08,0.08,0.17,0.17,0.08,0,0,0.08,0.26,0,1.75,0,1.14,0,0,0,1.93,0.52,0,0.17,0,0,0.26,0,0.17,0,0.26,0.08,0.79,0,0,0,0,0,0,0,0.08,0,0,0,0,0.063,0,0.038,0,0,1.66,20,646,0 0,0.18,0.72,0,0.18,0,0,0,0,0,0,0.54,0,0,0,0,0,0.18,0.9,0,0.18,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0.36,0,0,0,0,0,0.18,0.54,0,0,0,0.177,0.059,0.148,0.029,0,1.6,18,256,0 2,0,0,0,0,0,0,0,0,0,2,2,0,0,0,0,0,0,2,0,8,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,5.888,29,53,0 0,0,0.11,0,0.22,0.11,0,0,0,0,0,0.99,0.11,0.11,0,0,0.22,0,0,0,0,0,0.11,0,3.21,0.11,0,0,0.33,0,0,0,0.11,0,0,0.88,0.44,0,0.11,0,0,0,0.11,0,0,0,0,0,0.044,0.149,0.014,0,0,0,2.419,27,559,0 0,0,0.33,0,0.33,0,0,0,0,0,0,0.33,0,0,0,0,0,0,1.01,0,0.67,0,0,0,1.35,1.01,0.67,0.33,0.33,0.33,0.33,0.33,0.33,0.33,0.33,0.33,0.33,0,0.33,0.33,0,0,0.33,0,1.35,0,0,0,0,0.175,0.058,0,0,0,2.068,12,120,0 0,0,0.59,0,0.59,0,0,0,0,0,0,0.59,0,0,0,0,0,0,0.59,0,0.59,0,0,0,0,0,0.59,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0.59,0,0,0,0,0.105,0,0,0,0,1.826,8,42,0 0,0,0.3,0,0.61,0,0,0,0,0,0,0,0,0,0,0,0.3,0,0.91,0,0.3,0,0,0,2.44,0.61,0,0,0,0,0,0,0,0,0,0,0.3,1.52,0,0,0,0,0.61,1.22,0,0,0,0,0.301,0.043,0.043,0,0.086,0,2.161,19,227,0 0.4,0,0.81,0,0,0.4,0,0,0,0,0,0.81,0,0,0,0,0,0,1.63,0,0.4,0,0,0,0,0,0.81,0,0,0.4,0,0,0,0,0,0,0,0,0,0,0,0,0.4,0,0.4,0,0,0,0,0.071,0,0,0,0,1.156,3,59,0 0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,20,0,0,0,0,0,0,0,0,0,0,20,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,1,4,0 0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,33.33,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,1,3,0 0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0.16,0,0,0,0,0,0,0,0,0,0,0,0,0.16,0.16,0,0,0,0,0,0,0,0,0.76,0.028,0,0,0,3.989,33,738,0 0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,14.28,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,1,7,0 0,0,0,0,0,0,0,0,0,0.4,0,0.4,0,0,0,0,0,0,0,0,1.22,0,0,0,0.4,0.4,0,0.81,0,0,0,0,0.81,0,0,0.4,0,0,0,0,0,0,0,0.81,0,0,0,0,0,0.199,0,0,0,0,2.386,11,105,0 0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,4.47,0,1.49,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1.49,0,0,0,0,0,0,0,0,1.49,0,0,0,0,0,0,1.785,6,25,0 0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1.23,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0.186,0,0,0,3.677,28,114,0 0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,4.44,2.22,2.22,2.22,2.22,2.22,2.22,2.22,0,2.22,2.22,2.22,0,0,0,2.22,0,0,0,0,0,0,0,0,0,0.735,0,0,0,0,2.45,11,49,0 0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,2.08,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1.428,4,10,0 0,0,0,0,0,0,0,0,0,1.07,0,0,0,0,0,0,0,0,1.07,0,0,0,0,0,1.07,1.07,2.15,2.15,0,0,0,0,0,0,0,1.07,1.07,0,1.07,0,0,0,1.07,0,2.15,0,0,0,0,0.326,0,0,0,0,2.7,12,108,0 0,0,1.14,0,0,0,0,0,0,0,0,2.29,0,0,0,0,0,0,1.14,0,0,0,0,0,0,0,1.14,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0.209,0,0,0,0,1.833,5,22,0 0.08,0,0.16,0,0,0.08,0,0.08,0.73,0,0,0.24,0,0,0,0,0,0,0.32,0,0.16,0,0,0,0.49,0.57,0.08,0,0,0,0,0,0.57,0,0,0,0.16,0,0,0,0,0,0,0,0,0,0,0,0.126,0.172,0.057,0,0.022,0,3.212,44,665,0 0.12,0,0.12,0,0.12,0,0,0,1.11,0,0,0.37,0,0,0,0,0,0,0.49,0,0.24,0,0,0,0.62,0.74,0.12,0,0,0,0,0,0.49,0,0,0,0.12,0,0,0,0,0,0,0,0,0,0,0,0.083,0.167,0.033,0,0.033,0,3.211,32,485,0 0.06,0,0.06,0,0,0,0,0,0.61,0,0,0.2,0,0,0,0,0,0.06,0.27,0,0.2,0,0,0,0.75,0.81,0.06,0,0,0,0,0,0.27,0,0,0,0.47,0,0,0,0,0,0,0,0,0,0,0,0.173,0.183,0.048,0,0.019,0,2.738,36,827,0 0.08,0,0.08,0,0,0,0,0,0.77,0,0,0.25,0,0,0,0,0,0.08,0.34,0,0.25,0,0,0,0.77,0.86,0.08,0,0,0,0,0,0.25,0,0,0,0.43,0,0,0.17,0,0,0,0,0,0,0,0,0.098,0.16,0.037,0,0.024,0,2.634,36,598,0 0.07,0.03,0.18,0,0.1,0.03,0,0,0.4,0,0,0.1,0,0,0,0,0,0.03,0.14,0,0.1,0,0,0,0.47,0.5,0.03,0,0,0,0,0,0.76,0,0,0,0.32,0,0,0,0.07,0,0,0,0,0,0,0,0.188,0.148,0.035,0,0.01,0,3.233,66,1387,0 0,0,0,0,0,0,0,0,0,0,0,3.27,0,0,0,0,0,0,0,0,0,0,0,0,0,0.81,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0.81,0,0.232,0.116,0,0,0,0,1.976,9,83,0 0.23,0,0.47,0,0,0,0.23,0,0,0.47,0,0,0,0,0,0,0,0,1.17,0,0.23,0,0,0,1.64,0.7,0.7,1.17,0.23,0.23,0.23,0.23,0,0.23,0.23,0.7,0.47,0,0.23,0.23,0,0,0.47,0,0.7,0,0,0,0,0.237,0,0,0,0,2.42,12,334,0 0,0,0,0,0,0,0,0,0,0.72,0,0,0,0,0,0,0,0,0,0,0,0,0,0,2.18,1.45,0,1.45,0,0,0,0,0,0,0,0.72,0.72,0,0.72,0,0,0,0.72,0,0.72,0,0,0,0,0.467,0.116,0,0,0,2.431,12,124,0 0,0,0,0,0,0,0,0,0,0,0,0.54,0.54,0,0,0,0,0,1.09,0,0,0,0,0,0.54,0.54,0.54,0.54,0,0,0,0,0,0,0,0.54,0,0,0,0,0,0,0,0,0,0,0,0,0.102,0.308,0,0,0,0,1.4,10,77,0 2.85,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,2.85,0,0,0,0,0,0,0,0,0,2.85,0,0,0,0,0,0,0,0,0,0,0,0,0,0,2.85,0,0,0,0,0,0,0,0.465,0,0,0,0,1.25,3,10,0 0,0,0,0,0,0,0,0,0,0,0,2.23,0,0,0,0,0,0,0.74,0,0,0,0,0.74,0,0.74,0.74,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1.49,0,0,0,0,0,0,0,0.124,0,0,2.333,31,77,0 0,0,0,0,0,0,0,0,0,0,0,0.8,0,0,0,0,0,0,1.61,0,0,0,0,0,1.61,0.8,2.41,0.8,0.8,0.8,0.8,0.8,0,0.8,0.8,0.8,0.8,0,0,0.8,0,0,0.8,0,0.8,0,0,0,0.122,0.366,0,0,0,0,1.853,13,76,0 0,0,0,0,0,0,0,0,0,0,0,1.38,0,0,0,0,0,0,2.77,0,0,0,0,0,0,0,1.38,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0.228,0,0,0,0,1,1,12,0 0.04,0.08,0.15,0,0.04,0.04,0,0.04,0.04,0.08,0,0.41,0.06,0,0,0,0.06,0.15,0.6,0,0.34,0,0.02,0,0,0,0,0,0.02,0,0,0,1.67,0,0,0.19,0.82,0.02,0.04,0,0.02,0.02,0.08,0.02,0,0.26,0.04,0.54,0.005,0.213,0.002,0.031,0.039,0.008,2.246,54,3003,0 0,0,0.86,0,0,0,0,0,0,0,0,0.86,0,0,0,0,0,0,2.6,0,0.86,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0.86,0,0,0,0,0,0,0,0,0.167,0,0,1.5,4,24,0 0,0,0,0,0,0,0,0,0,0.45,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0.45,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0.217,0.29,0,0,0,4.461,28,290,0 0,0,0,0,0,0,0,0,0,1.86,0,1.24,0,0,0,0,0,0,0,0,0,0,0,0,2.48,1.24,1.24,1.86,0.62,0.62,0.62,0.62,0,0.62,0.62,1.24,0,0,0.62,0.62,0,0,0.62,0,0.62,0,0,0,0.189,0.757,0,0,0,0,2.63,16,171,0 0,0,0,0,0,3.44,0,0,0,0,0,0,0,3.44,0,0,0,0,0,0,6.89,0,0,0,0,0,3.44,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0.52,0,0,0,0,1,1,7,0 0,0,0.87,0,0,0.14,0,0,0,0,0.14,1.46,0.14,0,0,0.14,0.58,0.43,0.14,0,0.43,0,0,0,1.9,0.58,0,0.29,0.14,0,0,0,0,0,0.29,0,0.29,0,0,0.14,0,0.43,0.14,0,0.14,0,0,0.29,0.019,0.019,0.019,0,0,0,2.174,35,461,0 0,0,0.74,0,0,0,0,0,0,0.74,0,0,0.37,0.74,0,0,0.37,0,0.37,0,0.37,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1.11,0,0,0,0,0,0,0.37,0,0,0,0,0,0.245,0,0,0,0,4.666,64,196,0 0,2.35,0,0,3.52,1.17,0,1.17,0,4.7,0,0,0,0,0,1.17,0,0,1.17,0,1.17,0,0,0,0,0,1.17,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1.17,0,0,0,0,0.192,0,0,0,0,1,1,14,0 0,0.17,0,0,0.17,0,0,0.35,0,0,0,0.88,0,0,0,0,1.95,0,0.17,0,0,0,0,0,0.35,0.17,0,0,0,0.17,0,0,0,0,0,0.35,0,0,0,0,0,0,0,0,0.53,0,0,0,0,0.256,0,0,0,0,2.097,14,237,0 0,0,0,0,0,0,0,0,0,0.62,0.31,0,0,0,0,0,0,0,0.31,0,0,0,0,0,0.93,0.62,0,0.93,0,0,0,0,0,0,0.31,0,0.93,0,0,0,0.93,0,0.31,0,0,0.62,0,1.86,0,0.122,0.122,0,0.214,0,2.904,20,363,0 0,0,0,0,0,0,0,1.78,0,0,0,0,0,1.78,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,3.57,0,0,0,0,0,0,0,0,0,0,0,1.444,5,13,0 0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1.28,1.44,0,0,0,0,0,0,1.44,0,0,0,1.6,0,0,0,2.56,0,0,0,0,3.52,0,0,0.208,0.671,0.092,0,0,0,4.122,20,540,0 0,0,1.81,0,0,0,0,0,0,0,0,1.81,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1.81,0,0,0,0,0,0,0,0,3.63,0,0,0,0,0,0,0,0,0.849,0,0,0,2.294,8,39,0 0,0,0,0,0,0,0,0,0,0,0,4.34,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,2.17,0,0,0,0,0,0,0,0,0,0,0,0,1.928,15,54,0 0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1.88,0,0,0,1.88,0,0,0,0,0,0,0.647,0,0,0,0,2.8,18,42,0 0,0,2.08,0,0,0,0,0,0,0,0,2.08,0,2.08,0,0,0,0,2.08,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,1,11,0 0,0,0,0,0,0,0,0,0,1.05,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1.05,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0.335,0,0,0,4.133,26,124,0 0.09,0,0.36,0,0,0,0,0.09,0,0,0.18,1.01,0.18,0,0,0,0.64,0,0,0,0,0,0,0,2.49,0,0,0,0,0,0,0,0,0,0,0.09,0.18,0,0,0,0,0,0,0,0,0,0,0,0.131,0.209,0,0,0.039,0,2.278,24,629,0 0,0,0,0,2.32,0,0,0,0,0,0,0,0,0,0,0.77,0,0,0,0,0,0,0,0,1.55,0.77,0.77,0.77,0.77,0.77,0.77,0.77,0,0.77,0.77,0.77,0,0,0,0.77,0,0,0,0,0,0,0,0,0,0.376,0.125,0,0,0,2.4,11,48,0 0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0.17,0,0,0,0,2.094,26,111,0 0,0,0,0,0,0,0,0,0,0,0,0.53,0,0,0,0,0,0,0.17,0,0,0,0,0,1.41,1.59,0,0,0,0,0,0,0.17,0,0,0,2.83,0,0,0,2.83,0,0,0,0,3,0,0.17,0.271,0.753,0.12,0,0,0,4.84,20,576,0 0,0,0,0,2.38,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,2.38,0,0,4.76,0,0,0,0,0,0,0,0,0,0,0,0,2.111,6,19,0 0,0,0.49,0,0.49,0.49,0,0,0,0.49,0,2.94,0,0,0,0,0,0,0.98,0,0,0,0,0,1.47,0.98,0,0.98,0.49,0,0,0,0.49,0,0,0.49,0,0,0,0,0,0,0,0,0,0,0,0,0,0.166,0,0,0,0,2.234,11,105,0 0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,2.12,6.38,0,0,0,0,0,0,0,0,0,0,2.12,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1.666,6,30,0 0,1.16,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1.16,0,0,0,0,0,0,0,1.16,0,0,0,0,0,1.16,0,0,0,0,0,0,0,0,0,0,0,1.16,0,0,0,0.196,0.393,0,0,0,0,1.058,2,18,0 0,0,0,0,0.47,0,0,0,0,0,0,0.47,0,0,0,0,1.9,0,0,0,0,0,0,0,1.9,0.95,0,0,0,1.42,0,0,0,0,0,0.47,0,0,0,0,0,0,0,0,0,0,0,0,0,0.217,0,0,0,0,1.677,5,99,0 0,0,0,0,0,0,0,0,0,0,0,4.08,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,4.08,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0.333,0,0,1.666,4,25,0 0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,16.66,0,0,0,0,0,0,8.333,0,0,2,3,8,0 0,0,0.28,0,0.28,0,0,0,0,0,0,0.84,0,0,0,0,0,0,0.28,0,0,0,0,0,1.69,0,0,0.56,0,0,0,0,0,0,0.56,2.54,0.28,0,0.28,0,0,0,0,0.28,0,0,0,0,0.217,0.072,0,0,0,0,1.948,55,191,0 0,0,0,0,0.32,0,0,0,0.32,0.96,0,1.29,0,0,0.32,0.32,0,0,1.29,0,0,0,0,0,0.64,0.64,0,0,0.32,0,0,0,0,0,0,0.32,0.64,0,0.32,0,0,0,0.32,1.29,0.32,0,0,0,0,0.145,0.048,0,0,0,1.967,18,120,0 0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,4.16,0,0,0,0,0,0,0.632,0,0,1,1,4,0 0.33,0,0,0,0.33,0,0,0,0,0,0,0,0,0,0,0,0,0.33,2.01,0,0.33,0,0,0,1.34,1,1.34,0.33,0.33,0.33,0.33,0.33,1.34,0.33,0.33,0.33,0.33,0,0.33,0.33,0,0,0.33,0,0.33,0,0,0,0,0.296,0.059,0,0,0,1.742,12,122,0 0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,2.46,0,1.23,0,0,0,0,0,1.23,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1.062,2,17,0 0,0,1,0,0,0,0,0,0,0.25,0.25,0.5,0,0,0,0,0,0,1,0,0.75,0,0,0,1,0.5,0,0,0.5,0.25,0,0,0,0,0,0,0.75,0,0,0,0,0,0,0,0,0,0,1,0.457,0.294,0,0,0,0,4.379,208,508,0 0,0,0,0,0,0,0,0,0,0,0,2.32,0,0,0,0,0,0,2.32,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0.207,0.207,0,0,0,0,1.466,4,22,0 0.54,0,0,0,0,0.27,0,0,0,0,0,0,0.54,0,0,0,0,0,3.79,0,0.54,0,0,0,0.27,0,0,0,0,0,0.54,0,0,0,0.27,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0.433,0,0,0.078,0,1.859,18,106,0 0.09,0,0.57,0,0,0.09,0,0,0,0,0.09,1.33,0.19,0,0,0.09,0.38,0.28,0.38,0,0.19,0,0,0,4.37,0.57,0.19,0.28,0.19,0.09,0.09,0.09,0,0.09,0.28,0.09,0.19,0,0,0.19,0,0.28,0.09,0,0.28,0,0,0.19,0.21,0.052,0.013,0,0,0,2.731,34,885,0 0,0.17,0,0,0.17,0,0,0.35,0,0,0,0.88,0,0,0,0,1.95,0,0.17,0,0,0,0,0,0.35,0.17,0,0,0,0.17,0,0,0,0,0,0.35,0,0,0,0,0,0,0,0,0.53,0,0,0,0,0.256,0,0,0,0,2.053,13,232,0 0,0,0,0,0,0,0,0,0,0.58,0,0,0,0,0,0,0,0,1.17,0,1.17,0,0,0,0,0,0,0,0.58,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0.817,0,0,0,0,1.64,5,146,0 0,0,0,0,0,0,0,0,0,0,0,1.62,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0.81,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1.578,5,60,0 0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,2.7,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0.476,0,0,0,0,1.285,3,18,0 0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0.95,0,0,0,0,0,0.95,0,0,0,0,0,0,0,0.95,0,0,0,0,0,0,0,0,0,0,1.9,0,0,0,0,0.263,0.394,0,0,0,0,2.142,5,45,0 0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,4,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1.222,2,11,0 0,0,4.34,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1.342,0,0,1.2,2,12,0 0,0,0.87,0,0,0.17,0,0,0,0,0.17,1.74,0.17,0,0,0.17,0.69,0.52,0.17,0,0.17,0,0,0,1.21,0.52,0,0.34,0.17,0,0,0,0,0,0.34,0,0.17,0,0,0.17,0,0.52,0,0,0.17,0,0,0.34,0.022,0.022,0,0,0,0,1.601,11,277,0 0.06,0,0.18,0,0.12,0.12,0,0,0.06,0.18,0,0.55,0.06,0,0,0.06,0.12,0.06,0.93,0.06,1.05,0,0,0,0.93,0.43,0,0,0,0.18,0.18,0,0,0,0.31,0,0.49,0,0,0.06,0,0,0,0.12,0,0,0,0.24,0,0.182,0,0.1,0.109,0,2.062,21,1056,0 0,0,1.26,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1.26,0,0,0,0,0,0,2.53,1.26,0,1.26,0,1.26,1.26,0,0,0,1.26,1.26,0,0,0,0,0,0,0,0,0,0,0,0,0,0.149,0,0.149,0,0,1.423,10,37,0 0,0,0,0,0,0,0,0,0,0.8,0,0,0,0,0,1.61,0,0,0.8,0,0.8,0,0,0,0.8,0,0,0,0,0,0.8,0,0.8,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0.089,0,0,0,0,2.405,28,89,0 0,0.85,0.42,0,0,0,0,1.28,0,0,0,0.42,0,0,0,0,0,0.42,1.28,0,0,0,0,0,2.14,1.28,0,0.42,0,0.42,0.42,0,0,0,0.42,0.42,0,0,0,0,0,0,0,0,0,0,0,0,0,0.112,0,0.056,0,0,1.602,14,125,0 0,0,0,0,0,0,0,0,0,0,0,0,0,0,0.44,0,0,0.44,0,0,0,0,0,0,0.44,0.44,0,0.88,0,0,0,0,0,0,0.44,0,0,0,0,0,0,0,0,0.44,0,0,0,0,0,0.119,0,0,0,0,1.842,15,105,0 0,0,0.51,0,0.17,0.17,0,0,0,0,0,0,0.17,0,0,0,0,0,1.19,0,1.02,0,0,0,2.9,0,0,0,0,0,0.34,0,0,0,0,0,0.34,0,0,0,0,0,0.17,0,0,0,0,0,0.026,0.156,0,0.078,0,0,1.748,13,299,0 0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1.166,2,7,0 0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1.166,2,7,0 0,0.22,0,0,0.22,0,0,0.22,0,0.45,0,0.22,0,1.59,0,0,0.22,0,1.36,0,0,0,0,0,0.68,0,0.22,0,0,0,0.22,0,0,0,0.22,0,0.45,0,0,0,0,0,0,0,0,0,0,0,0,0.053,0,0,0,0,4.964,152,705,0 0,0,0.8,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1.6,0,0,0,0,0,2.4,1.6,0,0.8,0,0,0,0,1.6,0,0.8,0,0,0,0,0,0,0,0,0,0.8,0,0,0,0,0.371,0.123,0,0,0,2.44,10,61,0 0,0,1.09,0,1.09,0,0,0,0,0,0,1.09,0,0,0,0,0,0,3.29,0,0,0,0,0,0,0,1.09,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0.434,0.217,0,0,0,0,1,1,18,0 0,0,0,0,0,0,0,0,0,0,0,2.56,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,2.56,0,0,0,0.485,0,0,3.444,15,31,0 0,0,0,0,0,0,0,0,0,0.74,0,0,0,0,0,0,0,0,0.74,0,0,0,0,0,0.74,0.74,0,1.48,0,0,0,0,0,0,0,0.74,0,0,0,0,0,0,0,0,0.74,0,0,0,0,0.257,0,0,0,0,2.638,11,95,0 0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,4.54,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1.545,6,17,0 0,0,0,0,0,0,0,0,0,0,0,0,0,0.87,0,0,0,0,0.87,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0.87,0,0,0,0.327,0.327,0,0,0,0,1.3,3,26,0 0,0,0,0,0,0,0,0,0,0,0,4.22,0,0,0,0,0,0,0,0,1.4,0,0,0,0,2.81,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,2.81,0,0,0,0,0,0,0,0,0,0,0,0,3.153,38,82,0 0,0,0,0,0,0,0,4.23,0,0,0,0,0,0,0,0,0.84,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0.84,0,0.84,0,1.69,0,0.84,0,0.84,1.69,0,0,0,0,0.126,0,0,0,1.605,12,61,0 0,0,0,0,0,0,0,4.68,0,0,0,0,0,0,0,0,1.56,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1.153,3,15,0 0.07,0,0.23,0,0.15,0,0,0.07,0,0.07,0.15,1.84,0.07,0,0,0,0.15,0,0.23,0.23,0,0,0.23,0,2.61,0,0,0,0,0,0,0,0,0,0,0.07,0.07,0.07,0,0,0,0,0,0.15,0,0,0,0,0.011,0.143,0,0,0.044,0,2.442,26,591,0 0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,6,4,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,1,0,0,0,0,0,1,0.343,0,0.171,0,0,0,1.725,13,69,0 0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,20,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,1,5,0 0,0,0,0,0,0,0,0,0,0,0,0.33,0.33,0,0,0,0,0,1,0,0.33,0,0,0,8.69,4.68,0,0,0,0.33,0.33,0,0,0,0,0,0.66,0,0.33,0,1.33,0,0,0,0,0,0,0,1.001,0,0,0,0,0,2.701,20,181,0 0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,20,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,2,5,8,0 0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,7.31,0,0,0,0,0,9.75,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,2.875,12,46,0 0,0,0,0,0.92,0,0,0,0,0,0,0.92,0,0,0,0,0,0,0.92,0,0.92,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1.5,7,33,0 0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,3.44,1.72,0,0,0,0,0,0,0,1.72,0,0,0,0,0,0,0,0,0,0,3.44,0,0,0,1.72,0,0,1.72,0,0,1.72,0,0,0,0,0,0,1.2,4,18,0 0,0,0.66,0,0,0,0,0,0,0.33,0,0,0,0,0,0,0,0,1.98,0,0.66,0,0,0,0.99,0.66,0.66,0.99,0.33,0.33,0.33,0.33,0,0.33,0.33,0.66,0.33,0,0,0.33,0,0,0.33,0,0.33,0,0,0,0,0.282,0,0,0,0,2.238,13,188,0 0,0,0.38,0,0.38,0,0,0,0,0,0,1.15,0,0,0,0,0,0,0,0,0.38,0,0,0,0.38,0.38,0,0,1.93,0,0,0,0,0,0,0.38,0,0,0,0,0,0,0,0,0,0,0,0,0,0.129,0,0,0,0,1.8,5,108,0 0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1.72,0,0,0,0,0,6.89,3.44,0,0,0,3.44,0,0,0,0,1.72,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,2.16,11,54,0 0,0,2.56,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,5.12,0,0,0,0,0,0,0,0,0,0,0,0,4.368,52,83,0 0,0,0,0,0.9,0,0,0,0,0,0,0,0,0,0,0,0,0,2.7,0,0.9,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1.8,0,0,0,0,0,1.8,0,0.9,0,0,0,0,0,0,0.281,0,0,1.551,13,76,0 0,0,0.13,0,0.2,0,0,0,0,0,0,0.6,0.06,0,0,0.13,0,0,0.73,0.06,0.73,0,0,0,1.6,0.33,0,0.13,0,0,0.26,0,0,0,0.33,0.13,0.4,0,0,0,0,0,0,0,0.13,0.06,0,0.2,0,0.208,0,0.028,0.075,0,2.068,29,871,0 0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,2.43,0,0,0,0,0,4.87,4.87,0,2.43,0,0,0,0,0,0,2.43,1.21,0,0,0,0,0,0,0,0,0,0,0,0,0.182,0.365,0,0,0,0,2.25,10,63,0 0,0,0.4,0,0,0,0,0,0,0.8,0,0,0,0,0,0,0,0,0.4,0,0.4,0,0,0,1.2,0.8,0,0,0,0.4,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0.099,0,0.049,0,0,2.288,9,135,0 0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1.79,1.79,0,0.89,0,0,0,0,0,0,0.44,0,0,0,0,0,0,0,0,0.89,0,0,0,0,0,0.136,0,0,0,0,1.988,24,179,0 0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,3.29,2.19,0,3.29,0,0,0,0,0,0,1.09,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0.155,0,0,0,0,2.862,15,83,0 0,0,0,0,1.96,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1.96,0,0,0,0,0,0.666,0,0,0,0,2.111,7,19,0 0.19,0,0,0,0,0,0,0,0,0.59,0,0.19,0.19,0,0,0,0,0.19,0.59,0,0.19,0,0.19,0,0,0,0,0,0,0,0,0,0,0,0,0.59,0,0,0,0,0,0,0,0,0,0,0,0,0.127,0.095,0,0,0.031,0,1.411,7,120,0 0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,8.33,4.16,4.16,4.16,4.16,4.16,4.16,4.16,0,4.16,4.16,4.16,0,0,0,4.16,0,0,0,0,0,0,0,0,0,1.176,0,0,0,0,3.444,11,31,0 0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,8.69,4.34,4.34,4.34,4.34,4.34,4.34,4.34,0,4.34,4.34,4.34,0,0,0,4.34,0,0,0,0,0,0,0,0,0,1.19,0,0,0,0,3.333,11,30,0 0,0,0,0,0,0,0,0,0,0,0,0,1.09,0,0,0,0,0,1.63,0,0.54,0,0,0,1.09,0.54,0.54,0.54,0.54,0.54,0.54,0.54,0,0.54,0.54,0.54,0,0,0,0.54,0,0,0,0,0,0,0,0,0,0.17,0,0,0,0,1.373,11,169,0 0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,12.5,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1.25,2,5,0 0,0,0,0,0,0,0,0,0,0.58,0,0,0,0,0,0,0,0,2.9,0,0,0,0,0,1.74,1.16,1.16,1.74,0.58,1.16,0.58,0.58,0,0.58,0.58,1.16,0.58,0,0.58,0.58,0,0,0.58,0,0.58,0,0,0,0,0.379,0,0,0,0,2.222,12,140,0 0,0,0,0,0,0,0,0,0,0.67,0,0.67,0.67,0,0,0,0,0,2.68,0,0,0,0,0,2.68,1.34,2.01,0.67,0.67,0.67,0.67,0.67,0,0.67,0.67,0.67,0.67,0,0.67,0.67,0,0,0.67,0,1.34,0,0,0,0.107,0.537,0,0,0,0,2.604,17,112,0 0.34,0,0.34,0,0.34,0.34,0,0,0,0,0,0,0,0,0,0,0,0,2.41,0,1.03,0,0,0,2.06,1.03,1.03,0.68,0,0.68,0,0,0,0,0.68,0,1.03,0,0,0,0,0,0.34,0,0.68,0.34,0,0,0.116,0.292,0.058,0,0,0,2.333,15,182,0 0,0,1.2,0,0,0,0,0,0,0,0,2.4,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1.2,0,0,0,0,0,0,0,0.666,1.111,0.222,0,0,2.826,8,65,0 0.08,0,0.16,0,0,0.08,0,0.08,0.08,0,0.16,0.74,0.57,0.16,0,0,0.41,0,0,0,0,0,0.24,0,3.3,0,0,0,0,0,0,0,0,0,0,0.24,0.24,0,0,0,0,0,0,0,0,0,0,0,0.199,0.105,0,0,0.023,0,1.878,24,740,0 0.89,0,0,0,0.89,0.89,0,0,0,0,0,0,0,0,0,0,0,0,2.67,0,1.78,0,0,0,1.78,0.89,1.78,0.89,0,0.89,0,0,0,0,0.89,0,0.89,0,0,0,0,0,0,0,0.89,0,0,0,0.149,0.298,0,0,0,0,2.259,15,61,0 0,0,0,0,0,0,0,0,0,0,0,1.31,0,0,0,0,0,0,0,0,0,0,0,0,2.63,2.63,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,2.208,10,53,0 0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,5.55,0,2.77,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,3.25,10,13,0 0,0,0,0,0.32,0,0,0,0,0,0,0.32,0,0,0,0,0,0.32,0.64,0,0.32,0,0,0,1.28,1.28,0.64,0.32,0.32,0.32,0.32,0.32,0.64,0.32,0.32,0.32,0.96,0,0.32,0.32,0,0,0.64,0.32,0.32,0.64,0,0,0,0.094,0.047,0.094,0,0,1.919,13,167,0 0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0.76,0,0,0,1.53,0.76,2.3,0.76,0.76,0.76,0.76,0.76,0,0.76,0.76,0.76,0.76,0,0.76,0.76,0,0,0.76,0,0.76,0,0,0,0,0.339,0,0.339,0,0,1.813,12,78,0 0,0,0,0,0,0,0,0,0,0,0,1.6,0,0,0,0,0,0,0,1.6,0,0,0,0,8,0,0,0,0,0,0,0,0,0,0,0,0.8,0,0,0,0,0,0,0,0,0,0,0,0,0.136,0,0.273,0,0,2.588,29,88,0 0.51,0,0.51,0,1.53,0.51,0,0,0,0,0,0.51,0,0,0,0,0,0,3.58,0,0,0,0,0,2.56,0,2.05,0.51,0.51,2.05,0.51,0.51,0,0.51,0.51,1.02,0,0,0,0.51,0,0,0,0,1.02,0.51,0,0,0,0.27,0,0,0,0,1.983,24,121,0 0,0,0,0,0.51,0,0,0,0,0,0,0.51,0,0,0,0,0,0.51,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1.03,0,0,0,0.51,0,0,0,0,0,0,0.51,0,1.03,0,0,0,0,0,0,0,0,1.681,11,74,0 0,0,1.05,0,0,0,0,0,0,0,0,1.05,0,0,0,0,0,0,0,0,0,0,0,0,4.21,3.15,0,0,0,0,0,0,1.05,0,0,0,0,0,1.05,0,0,2.1,1.05,0,0,0,0,0,0.169,0,0.679,0,0,0,2.096,12,65,0 0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,9.09,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1.282,0,0,1,1,8,0 0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,4.44,2.22,0,2.22,0,0,0,0,0,4.44,0,0,0,0,0,0,0,0,0,2.22,0,2.22,0,0,0,2.22,0,4.44,0,0,0,0,0,0,0,0,0,1.947,12,37,0 0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,8.69,4.34,4.34,4.34,4.34,4.34,4.34,4.34,0,4.34,4.34,4.34,0,0,0,4.34,0,0,0,0,0,0,0,0,0,1.111,0,0,0,0,3.1,11,31,0 0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,5.5,9,11,0 0,0,1.85,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1.85,0,0,0,0.398,0,0,0,0.199,3.055,11,55,0 0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1.69,5.93,0,0.84,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0.84,0,0,0.84,0,0.84,0,0,0,0,0,0,0,0,1.285,4,36,0 0.34,0,0,0,0,0,0,0,0,0,0,0.69,0,0,0,0,0,0,3.12,0,0.69,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0.34,0,0,0,0.432,0,0,0,0,1.526,11,87,0 0,0,0,0,0,0,0,0,0,0,0,1.58,0,0,0,0,0,0,0,0,1.58,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1.58,0,0,0,0.287,0,0.287,0,0,1.076,2,14,0 0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,10,0,0,0,0,0,3.26,0,0,1,1,5,0 0,0,0.9,0,0,0,0,0,0,0,0,0,1.36,0,0,0,0,0,3.63,0,0.9,0,0,0.45,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0.45,0.45,0,0,0,0.155,0,0.077,0,0,1.545,15,68,0 0,0,1.4,0,0,0,0,0,0,0,0,1.4,0,0,0,0,0,0,1.4,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,2.81,0,0,0,0,1.4,0,0,0,0,0,0.497,0,0,1.722,10,31,0 0.26,0,0.52,0,0.52,0,0,0,0,0.26,0,0.26,0,0,0,0,0,0.26,1.31,0,0.26,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0.26,0.52,0.26,0,0,0.047,0.047,0,0.047,0,0,1.081,3,53,0 0,0,0.27,0,0,0.27,0,0,0,0,0,0.27,1.39,0,0,0.27,0,0.27,2.79,0,0.55,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0.27,0.27,0,0,0.051,0,0,0,0,0,1.195,6,55,0 0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1.23,0,1.23,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1.23,0,0,0,0.202,0,0,0,0,1,1,14,0 0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,5.45,0,3.63,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1.81,0,0,0,0,0,0,0,0,1.125,2,9,0 0,0,0,0,0,0,0,0,0,0,0,0.97,0,0,0,0,0,0,1.94,0,0.97,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0.97,0,0,0,0.255,0,0,0,0.127,2.344,11,68,0 0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,2.32,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,2.32,2.32,0,0,0,0,0,0,0,0,1.666,5,25,0 0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,3.22,0,2.15,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,2.15,0,0,0,0,1.07,0,0,0,0.197,0,0,0,0,2.315,7,44,0 0,0,0,0,0.86,0,0,0,0,0,0,0,0,0,0,0,0,0,1.73,0,0.86,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0.86,0,0,0.86,0,0.86,0,0,0,0.152,0,0.457,0,0,1.192,3,31,0 0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1.44,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1.44,0,0,0,1.44,1.44,0,0,0,0,0,0.247,0,0,1.684,5,32,0 0,0,0,0,0,0.34,0,0,0,0,0,0.69,0,0,0,0,0,0,4.19,0,1.39,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0.34,0,0,0,0.34,0.34,0,0,0,0,0,0,0,0,1.206,5,70,0 0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,4.5,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0.9,0,0,0,0.174,0,0,0,0,1.222,4,22,0 0,0,0.49,0,0,0.49,0,0,0,0,0,0.99,0,0,0,0,0,0,2.47,0,0.99,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0.49,0,0,0,0.093,0,0.093,0,0,1.275,4,51,0 0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0.943,0,0.943,0,0,2.166,5,13,0 0,0,0,0,0.96,0.48,0,0,0.48,0,0.48,0.48,0,0,0,1.44,0,1.92,0.96,0,1.44,0,0.48,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0.48,0,0,0,0,0,0,0,0,0.666,0,0,4.437,27,142,0 0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,5.55,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,5.55,0,0,0,0,0,0,0,0,1,1,5,0 0,0,0,0,0,0,0,0,0,0,0,2.01,0,0,0,0,0,0,0.67,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0.67,0,0,0,0,0,0,0,0.67,0,0,0,0,0,0,0,0.26,0,1.592,5,43,0 0,0,0.59,0,0.19,0,0,0,0,0,0,0.39,0.19,0,0,0.19,0.19,0.19,2.19,0,0.59,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0.39,0.19,0,0,0,0.232,0,0,0.038,0,1.129,4,96,0 3.84,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,3.84,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,3.84,0,0,0,0.645,0,0,0,0,1,1,6,0 0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,5,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,5,0,0,0,0,0,1.724,0,0,1,1,6,0 0,0,1.16,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1.16,0,2.32,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1.16,0,0,0,0,0,0,0,1.16,1.16,0,0,0,0,0,0.578,0,0,1.36,5,34,0 0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,4,0,0,0,0.684,0,0,0,0,1.125,2,9,0 0,0,0,0,0,0.57,0,0,0,0,0,0,0,0,0,0,0,0,2.31,0,2.89,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0.57,0,0,0,0,0,0,0,1.73,0.57,0,0,0,0,0,0,0,0,1.645,5,51,0 0.54,0,0,0,0,0,0,0,0,0,0,2.18,0.54,0,0,0,0,0,3.82,0,0.54,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0.54,0,0,0,0,0,0,0,1.09,0,0,0,0,0.294,0,0.392,0,0,1.829,7,75,0 0,0,0,0,0,0,0,0,0,1.38,0,0,0,0,0,0,0,0,4.16,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1.38,0,0,0,0,0,0,0,0,1.5,4,24,0 0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,3.19,0,1.06,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1.06,0,0,0,1.06,1.06,0,0,0,0,0,0.398,0,0,1.181,5,26,0 0,0,0,0,0,0,0,0,0,0,0,1.29,0,0,0,0,0,0,1.94,0,2.59,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0.64,0,0,0,0.105,0.105,0,0,0,1,1,30,0 0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,2.24,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0.89,0,0.44,0,0,0,0,0,1.34,2.69,0,0,0,0,0,0,0,0,2.362,15,137,0 0,0,0,0,0,0,0,0,0,0,0,3.84,0,0,0,0,0,0,5.76,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1.92,1.92,0,0,0,0,0,0,0,0,1.166,3,14,0 0,0,0.67,0,0,0,0,0,0,0,0,1.34,0,0,0,0,0,0,4.69,0,1.34,0,0,0,0,0,0,0,0,0.67,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0.67,0,0,0,0.493,0,0,0,0,1.24,3,31,0 0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,7.4,0,3.7,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,3.7,0,0,0,0,0,0.613,0,0,1,1,8,0 0,0,0,0,0,0,0,0,0,0,0,4.16,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,4.16,4.16,0,0,0,0,0,0,0,0,1,1,9,0 0,0,3,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,2,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,1.428,3,20,0 0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,2.12,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,2.12,0,0,0,2.12,0,0,0,0.344,0,0,0,0,1.4,5,14,0 0,0,0,0,0,3.57,0,0,0,0,0,0,0,0,0,0,0,0,7.14,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,3.57,0,0,0,0,0,0,0,0,1,1,7,0 0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,2.85,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,2.85,0,0,0,0,0,0,0,2.85,2.85,0,0,0,0.473,0,2.843,0,0,1.294,5,22,0 0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,3.57,0,0,0,0,0,0,0,3.57,3.57,0,0,0,0.564,0,0,0,0,1.454,5,16,0 0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,6.66,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,3.33,3.33,0,0,0,0.537,0,1.075,0,0,1.2,3,12,0 0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1.44,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0.86,0,0.28,0,0,0,0,0,0.86,1.72,0,0,0,0,0,0,0,0,2.557,16,179,0 0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0.68,4.08,0,0.68,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0.68,0,0,0,0,0.68,0,0,1.36,0.68,0,0,0,0.38,0,0,0,0,1.607,6,45,0 0.49,0,0.49,0,0.49,0,0,0,0,0,0,0.99,0,0,0,0,0,0,0.99,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0.49,0,0,0,0,0,0,0,0.99,0.49,0,0,0,0,0,0.091,0,0,1.214,5,51,0 0,0,0,0,0,1.21,0,0,0,0,0,0,0,0,0,0,0,0,1.21,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1.21,0,0,0,0,0,0,0,1.21,0,0,0,0,0.212,0,0,0,0,1.406,5,45,0 0,0,0,0,0,0,0,0,0,0,0,2.38,0,0,0,0,0,1.19,2.38,0,1.19,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,3.57,0,0,0,0,0,0,0,0.395,0,0,0.197,0,1.428,4,30,0 0,0,0,0,0,0,0,0,0,0,0,3.57,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0.438,0,0,0,0,1,1,9,0 0,0,0,0,0,0,0,0,0,0,0,1.81,0,0,0,0,0,0,1.81,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0.9,0,0,0,0,0,0,0,0.159,0,0,0.159,0,1.515,5,50,0 0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,5,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,5,5,0,0,0,0,0,1.438,0,0,1,1,7,0 0.08,0,0.17,0,0,0.08,0,0,0.08,0,0,0,0.08,0,0,0,0,0.08,4.19,0,1.39,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0.26,0,0,0,0.031,0.078,0,0.078,0,0,1.114,9,272,0 0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,5.71,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,2.85,2.85,0,0,0,0,0,0,0,0,1.111,3,20,0 0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,2.17,0,2.17,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,2.17,2.17,0,0,0,0.743,0,0.371,0,0.371,1.714,11,24,0 0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,7.69,0,0,0,0,0,0,0,0,0,1.142,2,8,0 1.31,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1.31,1.31,0,0,0,0,0,0,0,0,1.25,3,30,0 0,0,0,0,0,0,0,0,0,0,0,0.84,0,0,0,0,0,0,5.04,0,0.84,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0.84,0,0,0,0,0.143,0,0.143,0,0,1.37,4,37,0 0,0,0,0,0,0,0,0,0,0,0,1.86,0,0,0,0,0,0,1.86,0,0.93,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0.93,0,0,0,0,0,0,0.165,0,0,1.238,4,26,0 0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,2.17,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,2.17,0,0,0,0,0,0.704,0,0,1,1,10,0 0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,3.7,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0.68,0,0,1,1,11,0 0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,7.69,0,0,7.69,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,1,6,0 0,0,1.04,0,0,0,0,0,0,1.04,0,0,0,0,0,0,0,0,5.2,0,0,0,0,0,1.04,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,2.08,0,0,0,0,0.211,0,0.422,0,0,1.16,4,29,0 0,0,0,0,0,0,0,0,0,0,0,1.53,0,0,0,0,0,0,4.61,0,0,0,0,0,0,0,0,0,1.53,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,2.222,5,20,0 0,0,0,0,0.79,0.79,0,0,0,0,0,0,0,0,0,0,0,0,3.17,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1.58,0,0,0,0.79,0,0,0,0,0,0,0,0,0,1.076,2,28,0 0.13,0,0.41,0,0,0,0,0.27,0,0,0.27,1.93,0.13,0,0,0,0,0.27,1.65,0,0.13,0,0,0,0,0,0,0,0,0,0,0,0.13,0,0,0,0,0,0,0,0,0,0,0,0.82,0,0,0.13,0,0.023,0.046,0.164,0,0,1.279,11,183,0 0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,2.46,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0.61,0,0,0,0,0,0,0,0.61,0,0,0,0,0.118,0,0,0.118,0,1.59,5,35,0 0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,4.16,0,0,0,0,0,0,0,0,0,2.666,7,24,0 0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,3.22,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,3.22,0,0,0,0,0,0,0,0.546,0,0,1.75,7,14,0 0,0,0,0,0,0,0,0,0,0.95,0,0,0,0,0,0,0,0,2.85,0,0.95,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0.95,0,0,0,0.172,0.172,0,0,0,0,1.263,5,24,0 0,0,1.49,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1.49,0,2.98,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1.49,0,0,0,0,0,0,1.069,0,0,1,1,13,0 0,0,0.82,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0.41,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0.41,7.88,0,0,0.109,0,0,0.054,0,0,1.786,14,134,0 0,0,0,0,0,0.6,0,0,0,0.6,0,0.6,0.6,0,0,0,0,0,3.04,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0.6,0,0,0,0,0,0,0,0.6,3.04,0,0,0.094,0,0,0.094,0.189,0,1.976,15,83,0 0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,4.34,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,2.89,0,0,0,0.188,0,0.564,0,0,1,1,14,0 0,0,0,0,0,0,0,0,0,0,0,1.28,0,0,0,0,0,0,3.84,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,2.56,0,0,0.182,0.182,0,0,0,0,1,1,9,0 0,0,0,0,0,0,0,0,0,0,0,0,0.47,0,0,0,0,0,1.43,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0.47,0,0,0,0,0.47,0.47,1.91,0,0,0,0.076,0,0.076,0,0,1.833,12,77,0 0,0,0,0,0,0,0,0,0,0,0,1.75,0,0,0,0,0,0,3.5,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0.87,1.75,0,0,0,0,0,0.259,0,0,1.681,12,37,0 0.66,0.66,0.66,0,0,0,0,0,0,1.33,0,0,0,0,0,0.66,0,0,3.33,0,2.66,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0.117,0,0,2.487,17,97,0 0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,2,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,5,0,0,0,0,0,0,0,0,2.413,15,70,0 0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,2.94,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,5.88,0,0,0,0,0,0,0,0,1,1,8,0 0,0,0,0,0,0,0,0,0,0,0,0,0.68,0,0,0,0,0,4.1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0.68,0,0,0,0,0,0,0,0.68,3.42,0,0,0,0,0,0.109,0.218,0,1.897,15,74,0 0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,2.56,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,5.12,0,0,0,0,0,0.248,0,0,1.1,2,11,0 0,0,0,0,0,0,0,0,0,1.44,0,0,0,0,0,0,0,0,4.34,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,2.89,0,0,0,0,0,0.954,0,0,9.125,63,73,0 0,0,0,0,0,0,0,0,0,0,0,0.45,0,0,0,0,0,0,4.1,0,1.36,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0.45,0.91,0,0,0,0.219,0,0,0,0,1.225,5,49,0 0,0,2.04,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,4.08,0,2.04,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,2.04,4.08,0,0,0.226,0,0,0,0,0,1,1,8,0 0,0,0,0,0,0,0,0,0,2.55,0,0,0,0,0,0,0,0,3.06,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1.02,1.02,0,0,0,0.253,0,0.169,0.169,0,1.677,7,52,0 0,0,0,0,0,0,0,0,0,0.84,0,0.84,0,0,0,0,0,0,2.54,0,1.69,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1.69,0,0,0,0.134,0,0,0,0,1.285,5,27,0 0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,5.81,0,1.16,0,0,1.16,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,2.32,0,0,0,0.163,0,0.49,0,0,2.125,7,34,0 0,0,0.35,0,0.35,0,0,0,0.35,0,0,0,0,0,0,0,0,0,1.4,0,3.5,1.05,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0.35,0,0,0,0,0,0,0,0,0.35,0,0,0,0.65,0,0,0,0.05,2.483,17,226,0 0,0,0.52,0,0,1.04,0,0,0,0.52,0,1.57,0,0,0,0,0,0,3.66,0,0.52,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1.04,0,0,0,0,0,0.09,0,0,1.466,6,44,0 0,0,0,0,0,0,0,0,0,1.02,0,0,1.02,0,0,0,0,0,4.08,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,2.04,0,0,0,0,0,0.147,0,0,1.333,4,24,0 0.63,0.63,0,0,0,0,0,0,0,0.63,0,0,0,0,0.63,0,0,0,4.45,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1.27,1.91,0,0,0,0.204,0,0.102,0,0,1.361,4,49,0 0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1.25,0,1.25,2.5,0,1.25,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,4.176,55,71,0 0.1,0.72,0.62,0,0.62,0.1,0.2,0.2,0,0,0.1,0.51,0,0,0,0,0,0.82,3.61,0,0.93,0,0.1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0.2,0,0,0.41,0,0,0,0.122,0,0.157,0,0,2.213,29,425,0 0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,6.25,0,0,0,0,0,0,0,0,0,1,1,7,0 0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1.47,1.47,0,0,0,1.066,0,0.213,0,0,1.333,3,36,0 0,0,0,0,0,0,0,0,0,0,0,0,1.29,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1.29,0,0,0,0.246,0,0,0,0.246,0,1.363,4,30,0 0,0,0,0,0,0,0,0,0,0,0,0,1.13,0,0,0,0,0,1.13,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1.13,0,0,0,0.634,0,0.211,0,0.211,0,1.347,4,31,0 0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1.47,0,0,0,0,0,0,0,0,0,0,0,1.47,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0.253,0.253,0,0,0,2.352,17,40,0 0,0,1.58,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,3.17,0,4.76,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1.23,4,16,0 0.34,0,0.69,0,0,0,0,0,0,0,0,0.69,0,0,0,0,0,0,2.09,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0.69,0,1.39,0,0.34,0,0,0,0.374,0,0,0,0,1.775,5,71,0 0,0,0,0,0,0,0,0,0,0,0,0.6,0,0,0,0,0,0,1.2,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0.21,0,0,1.454,5,32,0 0.9,0,0.9,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0.9,3.6,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0.9,0,0,0,0,0,1.8,0.9,0,0,0,0,0,0,0,0,0,1.727,5,19,0 0,0,0.4,0,0,0,0,0,0.4,0.4,0,0,0,0,0,0,0,0.4,1.63,0,0.4,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0.4,0,0,0.81,0,0,0,0,3.68,0,0,0.139,0,0,0.069,0,0,2.525,15,101,0 0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1.8,0,0,0,0.9,4.5,0,0,0.145,0,0,0,0,0,2.638,20,124,0 0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,1,5,0 0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0.08,0,0,0,0,0,0,0,0,0,0.08,0,0,0,0,2.263,0,0,0,0,3.149,9,1310,0 0,0,0,0,0.66,0,0,0,0,0,0,0.66,0,0,0,0,0.66,0,3.33,0,0,0,0,0,0.66,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0.66,0,0,0,0,0,0.254,0,0,0,0,1.458,7,35,0 1.08,0,1.08,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1.08,0,0,0,0,0,0,0,0,0,1.523,5,32,0 0,0,0,0,0,0,0,0,0,0.44,0,0,0.44,0,0,0,0,0,3.53,0,0.44,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0.44,0.44,0,0,0,0,0,0,0,0,2.063,47,97,0 0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0.53,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1.06,0,0,0,0,0,0,0,1.06,2.65,0,0,0,0.322,0,0,0,0.129,2.6,18,182,0 0,0.78,1.56,0,0,0,0,0,0,0,0,0.78,0,0,0,0,0,1.56,5.46,0,3.9,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0.137,0,0.275,0,0,1.625,9,39,0 0,0,0,0,0,1.63,0,0,0,0,0,0,0.81,0,0,0,0,0,3.27,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0.81,0,0,0,0,0,0.81,2.45,0,0,0,0,0,0,0,0,2.829,47,116,0 0,0,0.55,0,0,0,0,0,0,0,0,0.55,0.55,0,0,0,0,0,0.55,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0.55,0,0,0,0.087,0,0,0,0,2.54,47,94,0 0,0,0,0,0,0,0,0,0,0,0,0,1.26,0,0,0,0,0,2.53,0,1.26,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1.26,0,0,0,0,0,0,0,0,4.352,47,74,0 0,0,0,0,0,0,0,0,0,0,0,0,0.62,0,0,0,0,0,3.75,0,0.62,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1.25,1.87,0,0,0,0,0,0,0,0,2.704,47,119,0 0,0,0.81,0,0.27,0,0,0,0,0.27,0,0.27,0.27,0,0,0,0,0,2.16,0,0.54,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0.54,0.27,0,0,0.045,0.091,0,0.045,0,0,2.078,47,106,0 0,0,0.78,0,0,0.78,0,0,0,0.78,0,0,0.78,0,0,0,0,0,1.56,0,0.78,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0.78,0,0,0,0.12,0,0.12,0,0,2.862,47,83,0 0,0,0,0,0,0,0,0,0,0,0,0,1.47,0,0,0,0,0,2.94,0,2.94,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1.47,0,0,0,0,0,0,0,0,4.312,47,69,0 0,0,0,0,0,0,0,0,0,0.54,0,0,0.54,0,0,0,0,0,5.43,0,1.63,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0.54,1.63,0.54,0,0,0,0.083,0,0,0,0,2.827,47,82,0 0,0,0,0,0,0.33,0,0,0,0,0,0,0.82,0.16,0,0,0,0,0.33,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0.49,0.16,0,0,0.019,0.039,0,0.059,0,0,1.632,47,191,0 0,0,0,0,0,0.65,0,0,0,0,0,0,0.65,0,0,0,0,0,1.31,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0.65,0,0,0,0,0,0,0,0,2.555,47,92,0 0,0,0.43,0,0,0,0,0,0,0,0,3.94,0,0,0,0,0,0,2.63,0,1.31,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1.314,5,46,0 0,0,0.5,0,0,0.5,0,0,0,0,0,0,1,0,0,0,0,0,2,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0.5,0,0,0,0,0,0,0,0,2.527,47,91,0 0,0,0,0,0,0,0,0,0,0,0,0,1.09,0,0,0,0,0,2.19,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1.09,0,0,0,0,0,0,0,0,3.304,47,76,0 0.32,0,0.16,0,0,0,0,0,0,0,0,1.29,0.48,0,0,0.16,0,0,2.43,0,0.32,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0.16,0,0,0,0,0,0.48,0.16,0,0,0,0,0,0.082,0,0,1.704,47,167,0 0.43,0,1.31,0,0,0.43,0,0,0,0,0,0,0.87,0,0,0,0,0,0.87,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0.43,0,0,0,0,0,0,0,0,2.137,47,109,0 0,0,0,0,0,0,0,0,0,0,0,0,0.97,0,0,0,0,0,4.85,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0.97,0,0,0,0,0,0,0,0,3.391,47,78,0 0,0,0.67,0,0,0,0,0,0,0,0,1.01,0.33,0,0,0,0,0,1.35,0,0.33,0,0.33,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0.33,0.33,0,0,0,0,0,0.174,0,0,2.071,47,116,0 0.15,0,0.15,0,0,0,0,0,0.07,0,0,0.07,0.15,0,0,0.07,0,0.07,3.6,0,1.3,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0.15,0,0,0,0.013,0.123,0,0.082,0,0,1.111,9,328,0 0.09,0,0.54,0,0,0.09,0,0,0.09,0,0,0.09,0.09,0,0,0.09,0,0,0.09,0,0.09,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0.09,0,0,0,0.017,0,0.034,0,0,1.429,47,306,0 0,0,0.38,0,0.19,0.29,0,0,0,0,0,0,0.87,0,0,0.09,0,0,0.19,0,0.09,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0.09,0,0,0,0,0,0.09,0,0,0,0,0,0,0,0,1.508,47,187,0 0,0,0.09,0,0,0,0,0,0,0,0,0.47,0.66,0,0,0.09,0,0,1.23,0,0.09,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0.37,0.09,0,0,0,0.033,0,0,0,0,1.536,47,192,0 0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,2.68,0,1.34,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0.67,0,0,0,0,0,0,0.471,0,0,1.033,2,31,0 0,0,1.57,0,0.22,0.22,0,0,0,0,0,0,0.22,0,0,0,0,0,2.02,0,0.22,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0.22,0,0,0,0,0,0.89,0,0,0,0,0.091,0,0.045,0,0,1.276,16,97,0 0,0,0.66,0,0,0.66,0,0,0,0,0,0.66,0,0,0,0,0,0,1.66,0,0.66,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0.33,0.33,0,0,0,0,0,0,0,0,0,1.142,4,56,0 0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0.86,0,0.86,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0.86,0,0,0,0,0,0,0,0,3.103,51,90,0 0,0,0,0,0,0,0,0,0,0.86,0,1.72,0.86,0,0,0,0,0,2.58,0,0.86,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0.86,0,0,0,0.321,0,0.214,0,0,3.956,51,91,0 0,0,0,0,0,0,0,0,0,0,0,1.28,0,0,0,0,0,0,3.84,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,2.56,1.28,0,0,0,0,0,0,0,0,3.772,51,83,0 0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1.57,0,0.78,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0.78,0.78,0.78,0,0,0,0,0,0,0,0,2.848,51,94,0 0,0,0,0,0,0,0,0,0,1.36,0,0,0,0,0,0,0,0,0,0,1.36,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1.36,0,0,0,0,0,0,0,0,4.05,51,81,0 0,0,0,0,0,0,0,0,0,0.75,0,0,0,0,0,0,0,0,2.25,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0.75,0,0,0,0,0,0,0,0,3.333,51,90,0 0,0,0.25,0,0.25,0,0,0,0,0,0,0,0,0,0,0,0,0,2.05,0,0.51,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0.76,0.25,0,0,0,0.094,0,0.047,0,0,1.884,51,147,0 0,0,0.48,0,0.32,0.16,0,0,0.32,0,0,0,0.16,0,0,0,0,0,2.26,0,0.48,0,0,0.16,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0.64,0.16,0,0,0,0.086,0,0.057,0,0,1.698,51,158,0 0,0,1.88,0,0.94,0,0,0,0,0,0,0,0,0,0,0,0,0,2.83,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0.94,0,0,0,0,0,0,0.756,0,0,1,1,22,0 0.38,0,1.16,0,0,0,0,0,0,0,0,1.16,0,0,0,0.77,0,0,0.77,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0.77,0.38,0,0,0,0,0,0,0,0,2,51,114,0 0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,3.17,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1.58,0,0,0,0,0,0,0,0,4.368,51,83,0 0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,4.69,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0.67,0,0,0,0,0,0,0,2.01,2.68,0,0,0,0.102,0,0,0,0,3.4,51,119,0 0,0,0.76,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,2.29,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0.76,0,0,0,0,0,0,0,1.52,2.29,0,0,0,0.139,0,0,0,0,2.29,16,71,0 0,0,0.53,0,0,0.53,0,0,0,0.53,0,0,0.53,0,0,0,0,0,2.15,0,0.53,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1.07,0,0,0,0,0.101,0,0,0,0,1.857,16,52,0 2.32,0,0,0,0,0.77,0,0,0,0,0,0.77,0,0,0,0,0,0,4.65,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1.55,0,0,0,0,0,0,0.159,0,0,1.346,4,35,0 0,0,0,0,0,0,0,0,0,1.43,0,0,0,0,0,0,0,0,2.15,0,0.71,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0.71,0.71,0,0,0,0,0,0,0,0,2.939,51,97,0 0,0,0,0,0.64,1.29,0,0,0,0,0,0,0,0,0,0,0,0,1.29,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0.64,0,1.29,0,0,0,0,0,1.29,1.94,0,0,0,0,0,0.188,0,0,2.686,51,137,0 0,0,0.27,0,0,0,0,0,0.27,0.55,0,0,0,0,0,0,0,0,3.3,0,0.27,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0.27,0.27,0,0,0,0,0,0.048,0,0,1.873,47,118,0 0,0,1.39,0,0,0,0,0,0,0,0,0.34,0,0,0,1.04,0,0,4.52,0.34,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1.04,0.34,0,0,0,0.122,0,0,0,0,1.963,47,108,0 0,0,0.6,0,0,0,0,0,0,0,0,0,0,0,0,0.6,0,0,1.8,0,1.2,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0.817,0,0,1.857,15,39,0 0,2.12,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,2.12,0,2.12,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,2.12,0,0,0,0,0,0,0,0,4.117,47,70,0 0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,3.7,0,1.85,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0.92,0.92,0,0,0,0,0,0,0.857,0,2.918,47,108,0 0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1.06,0,0,1.06,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,2.12,1.06,0,0,0,0.14,0,0,0,0,2.625,47,84,0 0.7,0,0.7,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,2.83,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1.41,1.41,0,0,0,0,0,0.105,0,0,2.342,47,89,0 0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1.03,0,0,3.09,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1.03,1.03,0,0,0,0,0,0,0,0,2.843,47,91,0 0,0,0,0,0,0,0,0,0,0,0,1.53,0.76,0,0,0,0,0,3.07,0,0.76,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1.444,6,26,0 0,0,0.91,0,0,0,0,0,0,0,0,0.91,0.91,0,0,0,0,0,5.5,0,0.91,0,0,1.83,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0.91,0.91,0,0,0,0,0,0.13,0,0,2.457,47,86,0 0,0,0,0,0,0,0,0,0,0,0,0.83,0,0,0,0,0,0,3.33,0,0.83,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0.83,0,0,0,0.83,0,0,0,0.12,0,0,0,0,3.137,47,91,0 0,0,1.17,0,0,0,0,0,0,1.17,0,2.35,1.17,0,0,0,0,0,1.17,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1.17,0,0,0,0,0,0,0,0.361,0,0.361,0.18,0,1.652,4,38,0 0,0,0,0,0,0,0,0,0,0.96,0,0,0.96,0,0,0,0,0,1.92,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0.96,0,0,2.88,0,0,0,0,0.327,0,0.327,0.327,0,1.482,4,43,0 0,0,0,0,0,0.78,0,0,0,0,0,0,0,0,0,0,0,0.78,0,0,0.78,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,5.277,0,0.263,0,0,1.047,2,22,0 0,0,1.17,0,1.17,0,0,0,0,0,0,3.52,0,0,0,0,0,0,1.17,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,2.35,0,0,2.35,0,0,0,0,0.192,0,1.156,0.192,0,1.7,6,34,0 0,0,1.17,0,0,0,0,0,0,0,0,2.35,0.78,0,0,0,0,0,3.13,0,0.39,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0.39,0,0,0,0.284,0,0.284,0.213,0.071,1.565,12,72,0 0,0,1.5,0,0.75,0,0,0,0,0,0,0.75,1.5,0,0,0.75,0,0,1.5,0,0.75,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0.75,0,0,0,0,0.147,0,0.441,0,0,2,6,54,0 0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0.331,0,0.331,0,0,1.714,4,24,0 0,0,0,0,0,0,0,0,0,0,0,1.88,0,0,0,0,0,0,1.88,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0.33,0,0.33,0,0,1.769,4,23,0 0.36,0,0.36,0,0.36,0,0,0,0,0,0,0.72,0,0,0,0,0,0,1.08,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0.72,0,0,0,0,0,0.36,0,1.08,0.72,0,0,0.124,0,0.062,0.062,0,0,1.414,13,116,0 0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1.75,0,1.75,5.26,0,1.75,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0.238,0,0,4.375,55,70,0 0,0,0.39,0,0.39,0.39,0,0,0,0,0,0,0.39,0,0,0.39,0,0.39,1.17,0,0.78,0,0.39,0.39,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0.39,0,0,0,0.065,0.065,0.261,0.065,0,2.89,55,159,0 0,0,0,0,0,0,0,0,0,0,0,1.31,0,0,0,1.31,0,1.31,0,0,3.94,0,0,1.31,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1.31,0,0,0,0,0.194,0,0,0,5.2,55,104,0 0,0,1.36,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,2.05,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1.36,0.68,0,0,0,0.113,0,0,0,0,1.315,4,25,0 0,0,0.71,0,0,0,0,0,0,0,0,0.71,0,0,0,0,0,0,2.15,0,0.71,0,0,0,0,0,0,0,0.71,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0.342,0,0,1,1,31,0 0,0,0.9,0,0,0,0,0,0,0.45,0,0,0,0,0,0.45,0,0.45,0,0,0.9,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0.45,0,0,0,0,0,0,0,0.45,0.45,0,0,0.056,0.227,0,0.056,0,0.056,5.8,70,290,0 0,0,1.25,0,0.62,0,0,0,0,0,0,1.25,0,0,0,1.88,0,0,4.4,0,0,0,0,1.25,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0.327,0,0,0.109,0.109,1.705,9,58,0 0.31,0,0.31,0,0,0,0,0,0,0,0,0.31,0.31,0,0,0,0,0,2.84,0,0.94,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0.059,0,0.709,0,0,1.119,4,47,0 0,0,0.21,0,0.21,0,0,0.21,0,0,0,0,0,0,0,0,0,0,1.94,0,0.43,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0.079,0,0.039,0.119,0,0.039,1.086,3,101,0 0,0,1.85,0,0,0,0,0,0,1.85,0,1.85,1.85,0,0,0,0,0,5.55,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0.692,0,0,1.727,5,19,0 0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0.216,0,0,1,1,18,0 0,0,0.35,0,0.35,0,0,0,0,0,0,0,0,0,0,0,0,0,2.47,0,0.35,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0.35,0,0,0,0,0,0.7,0,0,0,0,0.064,0,0.324,0,0,1.12,3,56,0 0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,7.69,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0.653,0,0,1.666,5,10,0 0,0,0.58,0,0,0.58,0,0,0,0,0,0,0,0,0,0,0,0,1.76,0,1.17,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0.108,0.108,0.432,0,0,1,1,35,0 0.28,0,0.28,0,0.57,0,0,0,0,0,0,0.28,0,0,0,0,0,0,2.87,0,0.86,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0.154,0,0.308,0,0,1.148,4,54,0 0,0,0,0,0.63,0,0,0,0,0,0,0,0,0,0,0,0,0,1.89,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0.63,0,0,0,0,0,0.103,0,0.62,0,0,1,1,26,0 0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,8.33,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,1,8,0 0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0.757,0,0,1.222,4,22,0 0.39,0,0.13,0,0.13,0,0,0,0.13,0,0.13,0.13,0,0,0,0.13,0,0,3.85,0,1.86,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0.066,0,0,0,0.022,1.514,21,159,0 0,0.49,0,0,0,0,0,0,0,0,0,0.49,0,0,0,0,0,0,2.94,0,1.47,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0.241,0,0,0,0.08,1.77,21,85,0 0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1.66,0,0,0,1.66,3.33,0,0,0,0.8,0,0,0,0,1.5,4,33,0 0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,4.87,0,0.81,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0.478,0,0,0,0,1.333,4,28,0 0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,7.69,0,0,0,0,0,0,0,0,0,0,0,0,1.4,4,14,0 0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1.69,0,0,0,0,1.69,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1.69,0,0,1.69,0,0,0,0,0,0,0,0,0,1.071,2,15,0 0,0,0,0,0,0,0,0,0,0,0,1.25,0,0,0,0,0,0,1.25,0,3.75,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1.25,0,0,0,0,0.715,0,0,0,0,1.411,4,24,0 0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,2.63,0,2.63,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0.523,0,0,0,0,1.6,4,16,0 0,0.52,0.52,0,0,1.57,0,0,0,0,0,0,0,0,0,0.52,0,0.52,1.04,0,0.52,0,0,0,0,0,0,0,0.52,0,0,0,0,0,0,0,0,0,0,0,0,0.52,0,0.52,0,0,0,0,0,0.087,0,0.175,0,0,1.093,3,35,0 0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,2.94,0,2.94,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,1,6,0 0,0,0,0,0,0,0,0,0,0,0,1.92,0,0,0,0,0,0,1.92,0,1.92,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,3.5,21,42,0 0,0,0.19,0,0,0,0,0,0,0,0,0.79,0,0,0,0.39,0,0,0.99,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0.19,0,0,0,0.19,1.19,0,0,0,0,0,0.029,0,0,1.131,11,155,0 0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,2.77,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0.69,0,0,0,0,0,0,9.575,0,0,1.387,5,43,0 0.28,0,0.28,0,0,0,0,0,0,0,0,0.28,0.28,0,0,0.28,0,0.28,1.97,0,0,0,0,0.28,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0.28,0,0,0,0.103,0,5.054,0,0,1.403,18,80,0 0,0,0.73,0,0.36,0.36,0,0,0,0,0,0,0,0,0,0,0,0,2.19,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,6.387,0,0,1.131,4,69,0 0,0,0.48,0,0,0,0,0,0,0,0,0,0,0,0,0.48,0,0,2.43,0,0.97,0,0,0.48,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0.48,0,0,0,0,0,0,0.45,0,0,1.138,4,41,0 0,0,0,0,0,0.61,0,0,0,0,0,0.61,0,0,0,0,0,0,1.85,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0.61,0,0,0,0,0,0,0,0,0,1,1,35,0 0,0.35,0.35,0,0,0.35,0,0,0,0.35,0,0.71,0,0,0,0,0,0,3.58,0,1.07,0,0,0,0,0,0,0,0.35,0,0,0,0,0,0,0,0,0,0.35,0,0,0,0,0,0,0,0,0,0,0.12,0.06,0,0,0,1.787,11,118,0 0,0,0,0,0,0,0,0,0,0,0,1.29,0,0,0,0,0,0,2.59,0,2.59,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0.64,0,0,0,0,0,0.64,0,0,0,0,0,0,0,0,0,1.5,5,51,0 0,0,0.51,0,0,0.51,0,0,0,0,0,0,0.51,0,0,0.51,0,0,1.03,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0.087,0,0,1.218,6,39,0 0,0.38,0.38,0,0,0.38,0,0,0,0.38,0,0.77,0,0,0,0,0,0,3.5,0,1.16,0,0,0,0,0,0,0,0.38,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0.131,0.065,0,0,0,1.843,11,118,0 0.95,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,2.85,0,0.95,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0.95,0,0,0,0,0,0,0,0,0,0,0,0,0.35,0,0,0,0,2.608,14,60,0 0.76,0,0,0,0,0.76,0,0,0,0,0,0,0,0,0,0,0,0,3.07,0,3.07,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0.253,0,0.253,0,0,2.172,9,63,0 0,0,0,0,0,0,0,0,0,0,0,1.69,0,0,0,0,0,1.69,0,0,1.69,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1.69,0,0,0,0,0,0,0.278,0,0,1.777,4,32,0 0,0,0,0,0,0,0,0,0,3.33,0,0,0,0,0,0,0,0,3.33,0,3.33,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,3.33,0,0,0,0,0.558,0,0,0,0,1,1,6,0 1.47,1.47,0,0,0,0,0,0,0,1.47,0,0,0,0,0,0,0,0,1.47,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,2.391,21,55,0 0,0.87,0.87,0,0,0,0,0,0,0.87,0,0.87,0,0,0,0,0,0,3.5,0,0.87,0,0,0.87,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0.87,0,0,0,0,0,0,0,0.138,0,2.136,21,47,0 0,3.03,0,0,0,0,0,0,0,3.03,0,0,0,0,0,0,0,0,3.03,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,3.03,0,0,0,0,0,3.03,0,0,0,0,0,0,0,0,0,2.769,21,36,0 0,1.08,0,0,0,0,0,0,0,1.08,0,3.26,0,0,0,0,0,0,5.43,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1.08,0,0,0,0,0,0,0.169,0,0,2.052,21,39,0 0,2.7,0,0,0,0,0,0,0,2.7,0,0,0,0,0,0,0,0,8.1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,2.7,0,0,0,0,0,0,0,0,0,2.538,21,33,0 0.58,0,0,0,0.58,0,0,0,0,0,0,0,0,0,0,0,0,0,2.9,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0.58,0,0,0.58,0,0,0.58,1.16,0,0,0,0.165,0,0.082,0,1.403,2.674,17,115,0 0,0,0,0,0,0,0,0,0,0,0,0,0,1.75,0,0,0,0,1.75,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0.25,0,0,1.285,3,18,0 0,1.28,0,0,0,0,0,0,0,1.28,0,0,0,0,0,0,0,0,5.12,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1.28,0,0,1.28,1.28,0,0,0,0,0,0,0,0,0,2.105,21,40,0 0,0.36,0.36,0,0,0,0,0,0,0.36,0,0,0,0,0,0,0,0,1.47,0,0.36,8.85,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,4.121,0,0,0.063,0,0.507,7.326,43,359,0 0,0.42,0.21,0,0,0,0,0,0,0.42,0,0,0,0,0,0,0,0,1.26,0,0.21,8,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0.21,0,0,0.42,0,0,4.385,0,0,0.071,0,0.503,6.822,43,614,0 0,0.36,0,0,0.36,0,0,0,0,0.36,0,0.36,0,0,0,0,0,0,1.08,0,0,7.22,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,3.972,0,0,0.063,0,0.504,6.423,43,334,0 0,0.44,0,0,0.44,0,0,0,0,0.44,0,0.44,0,0,0,0,0,0,0.44,0,0,8.81,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,4.367,0,0,0.074,0,0.592,7.288,43,328,0 0,0.41,0,0,0,0,0,0,0,0.41,0,0.41,0,0,0,0,0,0,0.41,0,0,8.29,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,4.096,0,0,0.07,0,0.776,7.531,43,354,0 0,1.35,1.35,0,0,0,0,0,0,1.35,0,0,0,0,0,0,0,0,2.7,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1.35,0,0,0,0,0.221,0,0,0,0,2.222,21,40,0 0,1.38,1.38,0,0,0,0,0,0,1.38,0,0,0,0,0,0,0,0,9.72,0,1.38,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1.38,0,0,0,0,0,0,0,0,0,2.052,21,39,0 0,2.12,0,0,0,0,0,0,0,2.12,0,2.12,0,0,0,0,0,0,6.38,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,2.12,0,0,0,0,0,0,0,0,0,2.692,21,35,0 0.35,0.35,0,0,0,0,0,0,0,0.35,0,0.35,0,0,0,0,0,0,1.42,0,0,11.42,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,3.672,0,0,0.06,0,0.481,7.464,43,418,0 0,0,0,0,0,0,0,0,0,0,0,1.01,0,0,0,1.01,0,0,2.02,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0.327,0,0,1.263,6,24,0 0,0.36,0,0,0,0,0,0,0,0.73,0,0,0,0,0,0,0,0,1.46,0,0.36,10.25,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,3.838,0,0,0.062,0,0.503,6.912,43,394,0 0,1.42,0,0,0,0,0,0,0,1.42,0,0,0,0,0,0,0,0,4.28,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1.42,1.42,0,0,0,0,0,0,0,0,3.555,21,96,0 0,1.78,0,0,0,0,0,0,0,1.78,0,3.57,0,0,0,0,0,0,8.92,0,1.78,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1.78,0,0,0,0,0,1.78,0,0,0,0,0,0,0,0,0,2.388,21,43,0 0.36,0,0.73,0,0,0,0,0,0,0.73,0,0.73,0,0,0,0,0,0,3.3,0,0,0,0,0,0.73,1.1,0,0.73,0.36,0.36,0,0,0,0,0.36,0.73,0,0,0,0,0,0,0,0,0,0,0,0,0,0.231,0,0,0,0,2.482,16,144,0 1.49,0,0,0,0,0,0,0,0,0,0,1.49,0,0,0,0,0,0,4.47,0,1.49,0,0,0,0,1.49,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1.49,0,0,0,0,0,0,0,0,0,0,1.933,8,29,0 0,0,0,0,0,0,0,0,0,0.69,0,2.09,0,0,0,0,0,0,4.19,0,0.69,0,0,0,1.39,3.49,0,1.39,0.69,0.69,0,0,0,0,0.69,1.39,0,0,0,0,0,0,0,0,0,0,0,0,0,0.281,0,0,0.093,0,2.744,12,129,0 0.16,0,0.32,0,0,0.16,0,0,0,0.16,0,1.44,0,0,0,0.16,0,0,3.21,0,0.96,0,0,0,0.16,0.16,0,0,0.16,0.16,0,0,0,0,0,0,0,0,0,0.16,0,0,0,0.64,0,0,0,0.32,0.185,0.318,0,0.079,0,0.053,1.695,36,290,0 0,0,0,0,0,0,0,0,0,1.02,0,1.02,0,0,0,0,0,0,5.1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,2.04,0,0,0,0,0.309,0.154,0,0.154,0,0,3.304,48,76,0 0,0,2.32,0,0,0,0,0,0,2.32,0,0,0,0,1.16,0,0,0,2.32,0,0,0,0,0,0,2.32,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1.16,0,1.16,0,0,0,0,0.204,0,0,0,0,1.75,11,35,0 0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0.72,0,0,0,0,0,0.72,0.72,0,2.17,0,0,0,0,0,0,1.44,0,0,0,0,0,0,0,0,0.72,0,0,0.72,0,0,0.204,0,0.306,0.102,0,2.538,22,99,0 0,0.56,0,0,0,0,0,0,0,0,0,0.56,0,0,0,0,0,0,2.27,0,0,0,0,0.56,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0.56,0.56,0,0,0,0,0.099,0,0,0,0.099,1.035,2,29,0 0,0,0,0,0,0,0,0,0,0,0,0.67,0,0,0,0,0,0,4.05,0,2.02,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0.67,0,0.67,0,0,0,0,0.679,0,0,0,0,1.636,6,72,0 0,0,0,0,3.44,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1.307,5,17,0 0,0.8,0,0,0.6,0,0,0.2,0,0.2,0,0,0,0,0,1.8,0,2.2,1.8,0,2.81,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0.2,0.2,0,0,0,0,0,0.06,0,0,2.533,43,228,0 0,0.37,0.37,0,0.09,0.09,0,0.37,0,0,0,0.28,0.28,0,0,0.84,0.09,0.56,2.72,0,2.16,0,0.18,0,0,0,0,0,0,0,0,0,0,0,0,0,0.09,0,0,0,0,0,0,0,0.18,0,0,0,0,0.056,0,0.142,0.071,0.014,1.934,19,383,0 0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,4.76,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,4.76,0,0,0,0,0,0,0,0,0,1.571,3,11,0 2.27,0,0,0,0,0,0,0,0,2.27,0,0,0,0,0,0,0,0,2.27,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,2.27,0,0,0,0,0,2.27,0,0,0,0,0,0,0,0,0,1.2,3,12,0 4,0,1,0,1,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0.168,0,0.168,0,0,1.459,10,54,0 0,0,0,0,0.48,0,0,0,0,0,0,0.48,0,0,0,0,0,0,0.48,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,2.084,9,123,0 0,0,0.37,0,1.13,0,0,0,0,0.75,0,1.13,0,0,0,0,0,0,2.65,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0.37,0,0,0,0,0,0,0,0,0,0,1.264,4,43,0 0,0,1.98,0,0.99,0,0,0,0,0,0,1.98,0,0,0,0,0,0,4.95,0,0.99,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0.99,0,0,1.98,0,0,0,0,0,0,0,0,0,0,0,0,1.222,4,22,0 0,0,0,0,0,0.5,0,0,0,0,0,0,0,0,0,0,0,0.5,2,0,0.5,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0.271,0,0,1.057,2,37,0 0,0,0,0,0,0,0,0,0,0.88,0,0,0,0,0,0,0,0,1.76,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0.88,0,0.88,0,0,0,0,0,0,1.76,0,0,0,0.157,0,0.157,0,0,2,15,84,0 0,0,0.51,0,0.17,0,0,0,0,0,0,0.34,0,0,0,0,0,0,2.73,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0.064,0,0.064,0,0,3.587,55,226,0 0,0,0.46,0,0,0,0,0,0,0,0,0.46,0,0,0,0,0,0,3.7,0,0,0,0,0.46,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0.46,0,0,0,0,0.094,0,0.473,0,0,2.5,24,40,0 0,0,0.36,0,0.09,0,0,0,0,0,0,0,0.09,0,0,0,0,0.18,4.24,0,1.35,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0.09,0.99,0,0,0.072,0.116,0,0.188,0,0,1.302,9,297,0 0,0,3.61,0,0,0.6,0,0,0,0,0,0,0,0,0,0,0,0,3.61,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0.6,0,0,0,0,0,0,0.12,0,0.12,1.96,9,49,0 0,0.82,0,0,0,0,0,0,0,1.24,0,0,0,0,0,0,0,0,1.65,0,0,9.95,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,4.149,0,0,0.07,0,0.562,7.416,43,356,0 0,0,0,0,0,0,0,0,0,2.77,0,0,0,0,0,0,0,0,2.77,0,5.55,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,2.77,0,0,0,0,0,0,0.438,0,0,1.214,3,17,0 0,9.52,0,0,0,0,0,0,0,4.76,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,4.76,0,0,0,0,0,0,0,0,0,1,1,10,0 0,0.27,0,0,0,0,0,0,0,0.27,0,0,0,0,0,0,0,0,1.94,0,0,8.33,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,3.23,0,0,0.048,0,0.482,5.802,43,412,0 0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,7.89,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,2.63,0,0,0,0,0,0,0,0,0,1,1,12,0 0,0,0.71,0,0,0,0,0,0,0,0,0.71,0.71,0,0,0,0,0,0.71,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0.121,0,0.243,0,0,1,1,31,0 0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,2.04,0,0,9.83,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,4.187,0,0,0.141,0,0.425,6.51,43,319,0 0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0.86,0,0,6.92,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0.43,0,0,0,0,0,0,0,0,0.43,0,0,3.885,0,0,0.073,0,0.439,5.754,43,328,0 0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0.37,0,0,2.24,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0.37,0,0,3.024,0.059,0,0.059,0,0.237,5.016,43,311,0 0,0,0.22,0,0,0,0,0,0,0,0,0.22,0,0,0,0,0,0,1.11,0,0.22,7.12,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0.22,0,0,0,0,0,0,0,0,0,3.125,0,0,0.24,0,0.28,5.397,43,448,0 0,0,0,0,0,0.42,0,0,0,0,0,0.84,0,0,0,0,0,0,2.1,0,0,6.75,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0.42,0,0,0,0,0,0,0,0,0,4.123,0,0,0.073,0,0.441,6.186,43,266,0 0,0,0,0,0,0,0,0,0,0,0,1.63,0,0,0,0,0,0,6.55,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1.63,0,0,0,0,0,0,0,0,0,1.333,4,20,0 0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,4.76,0,0.95,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0.95,0,0,0,0,0,0,0,0,0,0,0,0,1.076,3,28,0 0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,4.37,0,0.62,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0.116,0,1.419,5,44,0 0,0,0,0,0,0,0,0,0,4,0,0,0,0,0,0,0,0,4,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,1,9,0 0,0,3.7,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,7.4,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,3.7,0,0,0,0,0,0,0,0,0,1,1,9,0 0,0,0,0,0,0,0,0,0,0,0,0.76,0,0,0,0,0,0.76,1.52,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0.133,0,0.266,0,0,1,1,23,0 0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,12.19,0,4.87,0,0,9.75,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,1,7,0 0,0,0,0,0,0,0,0,0,0,0,3.33,0,0,0,0,0,0,3.33,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,3.33,0,3.33,0,0,0,0,0,0,0,0,0,1.142,3,16,0 0,0,0,0,0,0,0,0,0,0,0.24,0.72,0.24,0,0,0,0.24,0,0.72,0.24,2.16,0,0.48,0,0,0,0,0,0,0,0,0,0,0,0.24,0,0,0,0,0,0,0,0,0,0,0.24,0,0,0,0.447,0,0.122,0.285,0,3.714,19,286,0 0,0,0.91,0,0.3,0,0,0,0,0,0,0.3,0.3,0,0,0,0,0,1.21,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0.3,0.3,0,0,0,0,0,0,0,0,1.505,14,128,0 0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,4.16,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1.38,0,0,0,0,0,0,0,0,1.38,0,0,0,0,0,0.208,0,0,2.655,15,77,0 0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,6.66,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,1,10,0 0,1.25,0,0,0,0,0,0,0,0,0,2.81,0,0,0,0,0,1.56,0.93,0,0.31,0,0,0,0,0,0,0,0,0,0,0.31,0,0,0,0.31,0,0,0,0,0,0,0,0,0,0,0,0,0,0.164,0,0.109,0.054,0,2.193,18,136,0 0,0.22,0,0,0.22,0,0,0,0,0,0,1.36,0,0,0,0,0,1.59,0.91,0,0,0,0,0,0,0,0,0,0.22,0,0,0,0.45,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0.326,0,0.285,0,0,2.043,31,141,0 0.51,0,0.51,0,1.53,0,0,0,0,0.51,0,0.51,0,0,0,0,0,0,1.02,0,0,0,0.51,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0.51,0.51,0,0,0.079,0,0,0,0,1.442,8,75,0 0,0,0.34,0,0.34,0,0,0,0,0,0,1.37,1.37,0,0,0,0,0.34,2.74,0,1.03,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0.34,0,0,0,0.232,0,0.406,0,0,1.425,6,77,0 0.74,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,2.96,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0.377,0,0,1,1,33,0 0,0,0,0,0,0,0,0,0,1.28,0,0,0,0,0,0,0,0,2.56,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1.28,0,0,0,0,0,0,0,0,0,0,0,0,0.232,0,0,1.296,8,35,0 0,0,2.12,0,1.06,0,0,0,0,0,0,2.12,0,0,0,0,0,0,5.31,0,1.06,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1.06,0,0,2.12,0,0,0,0,0,0,0,0,0,0,0,0,1.238,4,26,0 0.26,0,0.26,0,0.52,0,0,0,0,0.26,0,0.26,0,0,0,0.26,0,0,1.31,0,0.52,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0.52,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0.038,0,0.038,1.541,12,202,0 0,0,0,0,0,0,0,0,0,0,0,0.69,0,0,0,0.69,0,0,2.79,0,0.69,0,0,0,2.09,0,0,0,0,1.39,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0.69,1.39,0,0,0,0.221,0,0,0,0,2.184,12,83,0 0,0,0,0,0.54,0,0,0,0,0,0.54,1.09,0,0,0,0,0,0,3.82,0,0,0,0,0,2.18,2.18,0,0.54,0,1.09,0,0,0,0,0.54,0,0,0,0,0,0,0,0.54,0,0.54,0,0,0,0,0.087,0,0,0,0,3.533,34,159,0 0,0,0,0,0,0,0,0,0,1.25,0,1.25,0,0,0,0,0,0,2.5,0,1.25,0,0,0,1.25,1.25,0,0,0,0,0,0,0,0,0,0,0,0,1.25,0,0,0,0,0,1.25,1.25,0,0,0,0,0,0,0.204,0,2.45,15,49,0 0,0,0.55,0,0,0,0,0,0.55,0,0,0,0.55,0,0,0.55,0,0.55,0,0,0.55,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0.093,0,0.563,0,0,2.928,55,82,0 0,0,0,0,0,0,0,0,0,0,0,0,0.54,0,0,0.54,0.54,0,1.63,0,0.54,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0.54,0,0.54,0,0,0,0,0,0.407,0,0,2.038,14,53,0 0,0,2.27,0,0,0,0,0,0,0,0,2.27,0,0,0,1.13,0,1.13,2.27,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1.13,0,0,0,0.143,0,0,0,0,8.761,77,184,0 0,0,0,0,0,0,0,0,0,0,0,0.92,0,0,0,0,0,0.92,3.7,0,0.92,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0.92,1.85,0,0,0,0.295,0,0,0,0,2.535,12,71,0 0,0,0,0,0,0,0,0,0,0,0,0.99,0,0,0,0,0,0,5.94,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0.99,0,0,0,0.191,0,0,0.766,0,0,1,1,18,0 0.12,0,0.12,0,0,0,0,0,0,0,0.12,0.38,0,0,0,0,0.12,0,1.78,0,0.51,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0.12,0,0,0,0,0.25,0,0,0.12,0.63,0,0,0.018,0.074,0,0.055,0,0.018,3.08,63,419,0 0.11,0,0.33,0,0,0,0,0,0,0.11,0,0.45,0,0,0,0.11,0.11,0,2.81,0,0.9,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0.11,0,0,0,0,0.22,0,0,0.33,0.56,0,0,0.017,0.136,0,0.051,0,0.017,2.944,63,427,0 0,0.6,0,0,0.6,0,0,0,0,2.43,0,0.6,0,0,0,0,0,0,1.82,0,0.6,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1.21,0,0,0,1.82,0,0,0,0.271,0,0,0,0.09,6.09,71,201,0 0,0.6,0,0,0.6,0,0,0,0,2.43,0,0.6,0,0,0,0,0,0,1.82,0,0.6,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1.21,0,0,0,1.82,0,0,0,0.271,0,0,0,0.09,6.09,71,201,0 0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,2.63,5.26,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1.625,3,13,0 0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,14.28,0,7.14,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,7.14,0,0,0,0,0,0,0,0,0,1,1,3,0 0,0,0,0,0,0,0,0,0,0.33,0,0,0,0,0,0,0,0,2.34,0,0.33,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0.33,0.33,0,0,0,0.06,0,0.302,0,0,1.562,14,100,0 0.55,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,2.2,0,0.55,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1.1,0,0,0,0,0,0,0.633,0,0,1.386,11,61,0 0,0,0,0,0,0.77,0,0,0,0,0,0,0,0,0,0,0,0,7.75,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0.156,0,0.312,0,0,1.08,2,27,0 0,0,0.26,0,0.52,0,0,0,0,0,0,0,0,0,0,0,0,0.52,1.56,0,1.56,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0.52,0,0,0,0.26,0,0,0,0,0.26,0,0,0,0.753,0.113,0,0.037,0.037,0,1.797,20,169,0 0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,1,3,0 0,0.34,0,0,0.68,0,0.68,0,0,0.34,0.34,0,0,0,0,0.34,0,1.36,3.42,0,2.73,0,0,0,0,0,0,0,0,0,0,0,0.34,0,0,0,0,0,0,0,0,0,0,0,0,0.34,0,0,0,0,0,0.048,0.048,0,1.405,15,97,0 0,0,0.59,0,0.29,0.59,0.59,0.29,0,0.29,0.29,0,0,0,0,0,0,0.89,3.58,0,1.49,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0.29,0.29,0,0,0.088,0,0,0.044,0.132,0,1.592,15,121,0 0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,6.66,0,0,0,0.675,0,0,0,0,1,1,4,0 0.06,0,0.32,0,0,0,0,0,0,0.06,0,0.06,0.06,0,0,0,0,0.06,2.79,0,1.1,0.25,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0.06,0,0,0.06,0.19,0,0,0.317,0.035,0,0.093,0,0,1.11,9,261,0 0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,7.69,7.69,0,0,0,0.775,0,0,0,0,1,1,5,0 0,0,0.6,0,0,0,0,0,0,0,0,0.43,0.08,0,0,0,0,0,3.02,0,1.03,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0.08,0,0,0,0,0,0.51,0,0,0,0,0.083,0,0.099,0,0,1.329,18,214,0 0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,2.56,0,0,0,0,0,0,0,0,7.69,0,0,0,0.395,0,0,0,0,3,18,39,0 0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,5.88,0,0,0,0,0,0,0,0,1,1,7,0 0,1.57,1.18,0,0,0,0,0,0,2.36,0,0.78,0,0,0,0,0,0,0.39,0,0,6.29,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1.151,0.203,0,0.271,0,0.067,5.689,30,330,0 0,0,0,0,0,1.42,0,0,0,0,0,0,0,0,0,0,0,0,7.14,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1.42,0,0,0,0,0.267,0,0,0,0,1,1,17,0 0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,1,4,0 0,0,1.21,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1.82,0,0.6,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1.21,0,0,0,0,0.371,0,0,0,0,1.967,13,61,0 0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,7.14,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,21.42,0,0,0,0,0,0,0,0,0,1.125,2,9,0 0,2.6,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,3.47,0,1.73,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0.154,0,0.773,0,0,1,1,17,0 0,0,0.21,0,0,0.21,0,0,0,0,0,0,0,0,0,0,0,0,1.95,0,0.21,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0.131,0.175,0,0,0,0,1,1,68,0 0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,1,3,0 0,0,1.01,0,0,0,0,0,0,0,0,3.03,0,0,0,0,0,0,5.05,0,2.02,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0.187,0,0,1.166,3,21,0 0,0,0.81,0,0,0,0,0,0,0,0,3.25,0,0,0,0,0,0,4.06,0,1.62,0,0,0,0.81,0,0,0,0,0.81,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0.81,0,0,0,0,0,0,0.134,0,0,1.366,5,41,0 0,0,1.81,0,0,0,0,0,0,0,0,0.9,0.9,0,0,0,0,0,4.54,0,2.72,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0.164,0,0,1.391,8,32,0 0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,5.71,0,1.42,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,2.85,0,0,0,0,0,0,0,0,0,2.125,5,17,0 1.39,0,2.09,0,0,0,0,0,0,0,0,6.29,0,0,0,0.69,0,0,4.19,0.69,0.69,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0.69,0,0,0,0,0,0,0,0,0,0,0,0,0.254,0,0,2,13,64,0 0.97,0,0,0,0.48,0,0,0,0,0,0,0,0,0,0,0.48,0,0,2.42,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0.48,0,0,0.48,0.97,0,0,0,0.15,0,0,0,0.075,3.367,21,165,0 0.15,0,0.63,0,0.07,0.11,0,0,0,0.03,0,0.07,0.37,0,0,0,0.03,0.03,1.16,0,0.22,0,0,0,0.03,0,0,0,0,0,0,0,0,0,0,0,0,0.07,0,0,0,0.03,0,0,0.22,0.03,0,0,0.014,0.05,0,0.014,0,0,1.111,7,389,0 0,0,0,0,0,0,0,0,0,0,0,3.03,0,0,0,0,0,0,3.03,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0.473,0,0,1.687,5,27,0 0,0,0,0,0,0,0,0,0,0,0,3.44,0,0,0,0,0,0,3.44,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,2,5,26,0 0,0,2.77,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,8.33,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1.214,4,17,0 4.34,0,0,0,0,0,0,0,0,0,0,4.34,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1.75,4,14,0 0,0,4.54,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,4.54,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0.645,0,0,0,0,1,1,7,0 0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1.02,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1.02,0,0,0,0.344,0,0.344,0.172,0,2.166,11,39,0 0,0,1.66,0,0,0,0,0,0,0,0,1.66,0,0,0,0,0,0.83,2.5,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0.151,0,0,1.518,8,41,0 0,1.08,0,0,0,0,0,0,0,0,0,1.08,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0.181,0,0,0,0,1.612,11,50,0 0,0,0,0,0,0,0,0,0,0,0,1.61,0,0,0,0,0,0,0,0,1.61,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1.61,0,0,0,0,0,0,0,0,0,0,0,0,0.266,0,0.533,0,0,4.5,31,63,0 0,0,0,0,0,0,0,0,0,0.38,0,0,0,0,0,0.19,0,0.19,0,0,0,0,0,0.38,0,0,0,0,0,0,0,0,0,0,0,0,0.58,0,0,0,0,0,0,0,0,22.05,0,0,0.135,0.339,0.067,0,0,0,4.13,81,285,0 0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,3.17,0,3.17,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1.58,1.58,0,0,0,0,0,0,0,0,1,1,12,0 0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,9.09,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0.934,0,0,0,0,3,9,18,0 0,0.36,0.36,0,0,0.36,0,0.73,0,0.36,0.36,1.46,0,0,0,0.36,0,2.56,2.93,0,0.36,0,0,0.73,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0.36,0,0,0,0,0,0,0,0,0,0.123,0,2.854,68,157,0 0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0.68,0,0,0,0,0.112,0,0,0.903,0,2.285,14,80,0 0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,8.33,0,0,0,0,0,0,0,0,0,1,1,4,0 0,0,1.72,0,0,0,0,0,0,0,0,2.58,0,0,0,0,0,0,2.58,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0.86,0,0.86,2.58,0,0,0.86,0,0,0,0,0.303,0,0.91,0,0,2.171,9,76,0 0,0,0,0,0,0,0,0,0,0,0,1.78,0,0,0,0,0,0,3.57,0,1.78,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1.78,0,0,1.78,0,0,0,0,0,0,1.194,0,0,2.23,8,29,0 0,0,0,0.31,0.94,0,0,0.31,0,0.63,0,1.26,0,0,0,0,0,0,0.94,0,1.26,0,0,0,0,0,0,0.63,0,0,0,0,0,0,0,0.31,0,0,0,0,0,0,0,0,0,0,0,0,0,0.037,0,0.074,0,0,3.904,39,246,0 0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,3.571,0,0,1,1,4,0 0,0,0,0,0,0,0,0,0,0.79,0,0.79,0,0,0,0,0,0.79,1.58,0,2.38,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0.79,0,0,0,0,0,0,0,1.58,0,0,0,0.135,0.405,0,0.27,0,0,1.608,13,37,0 0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,3.225,0,0,1,1,4,0 0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,4.65,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,2.32,0,0,0,0,0,0,0.763,0,2.181,6,24,0 0,0.15,0.3,0,0.15,0,0,0,0,0,0,1.38,0.15,0,0,0,0.15,0,2.6,0,1.68,0,0.15,0,0,0,0,0,0,0,0,0,0.46,0,0,0,0.3,0,0,0,0,0,0,0,0.61,2.91,0,0,0.023,0.093,0,0.069,0,0,2.05,23,326,0 0.32,0.32,0.32,0,0,0,0,0,0,0,0,1.29,0.32,0,0,0,0,0,2.92,0,0.32,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0.32,0,0.32,0,0,0,0,0,1.29,0,0,0,0.058,0.174,0,0.291,0,0,1.833,15,121,0 0,0,1.18,0,0.16,0,0,0,0,0.16,0,0.16,0.16,0,0,0,0.16,0,2.88,0,0.5,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0.33,0,0,0,0.031,0.374,0,0.561,0,0,1.462,10,136,0 0,0,1.09,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,4.94,0,1.09,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0.656,0,0.656,0,0,1.488,5,67,0 0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,14,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1.571,5,11,0 0.13,0,0.13,0,0.27,0.27,0,0,0,0,0,0.41,0.27,0,0,0,0,0,1.25,0,0.27,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0.13,0,0,0,0,0,0.27,0.13,0,0,0,0.294,0,0.514,0,0,1.409,17,172,0 0,0.16,0.49,0,0,0.16,0,0,0,0.49,0,0.16,0.32,0,0,0,0,0,1.3,0,0.32,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0.16,0,0,0,0,0,0,0,0.16,0.16,0,0,0,0.119,0,0.149,0,0,2.178,107,244,0 0,3.36,1.92,0,0,0,0,0,0,4.32,0,1.44,0,0,0,0,0,0,0.48,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0.695,0,0.347,0,0,6.137,107,178,0 0,0,0.21,0,0,0,0,0,0,0.21,0.21,0,0.42,0,0,0,0,0,0,0,0.42,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1.5,0,0,0,0.058,0,0,0,0,1.203,8,195,0 0,0,0.23,0,0,0.23,0,0,0,0,0,0,0,0,0,0,0,0,0.23,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0.23,0,0,0,0.23,1.4,0,0,0,0.064,0,0.161,0,0,1.065,7,146,0 0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,2.22,4.44,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,2.22,2.22,0,0,0,0,0,0,0,0,1.75,5,14,0 0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1.01,0,1.01,5.05,0,1.01,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,10,55,60,0 0,0,0,0,0,0,0,0,0.58,0,0,1.16,0,0,0,0,0,0.58,1.75,0,1.16,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0.58,0,0,0,0,0,0,0.58,0,0,0,0.282,0,0.376,0,0,1.702,16,80,0 0.99,0,0.99,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1.98,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1.98,2.97,0,0,0,0,0,0.186,0,0,1.937,15,62,0 0,0,0,0,0,0,0,0,0,0.74,0,0,0,0,0,0.74,0,0,1.49,0,1.49,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0.74,4.47,0,0,0,0.124,0,0,0,0,1.966,15,59,0 0.71,0,0.71,0,0,0,0,0,0,0.71,0,1.43,0,0,0,1.43,0,0,1.43,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1.43,0,0,0,0,0,0,0,0,1.032,2,32,0 0,0,0,0,0,0,0,0,0,1.19,0,0,0,0,0,0,0,0,1.19,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1.19,0,0,0,0,0,0,0,0,9.52,0,0,0,0,0,0,0,0,2.074,15,56,0 0,0,1.01,0,0,1.01,0,0,0,1.01,0,0,0,0,0,0,0,0,1.01,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1.01,0,0,0,0,0,1.01,3.03,0,0,0,0,0,0.475,0,0,1.576,15,41,0 0,0,0,0,0,0,0,0,0,0.33,0,0,0.33,0,0,0,0,0,2,0,0.33,0,0,0.33,0,0,0,0,0,0,0,0,0,0,0,0,0.33,0,0,0,0,0,0,0,0,4.33,0,0,0,0.112,0,0.224,0.224,0,1.542,15,108,0 0,1.62,0.54,0,0,0,0,0,0,0.54,0,1.62,0,0,0,0,0,0,1.62,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1.08,0,0,0,0.484,0,0,0,0,1.769,27,69,0 0,0,0,0,0,0,0,0,0,11.11,0,0,0,0,0,0,0,0,5.55,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,1,2,0 0.59,0.59,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1.19,0,0.59,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0.59,1.19,0,0,0,0.212,0,0.212,0,0.106,1.7,11,68,0 0,0.32,0.96,0,0,0,0,0,0,0.64,0,1.28,0,0,0,0,0,0,3.52,0,1.6,0,0,0,0.96,1.6,0,0,0,0.64,0,0,0,0,0,0,0.32,0,0,0,0,0,0,0,0,0,0,0,0,0.064,0,0.128,0,0,1.653,5,86,0 0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0.81,0,0,2.45,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0.81,0,0,0,0,0.81,0,0,0.81,0.81,0,0,0,0,0,0,0,0,1.684,5,64,0 0,0,0,0,0,0,0,0,0,0,0,1.23,0,0,0,0,0,0,1.85,0,0.61,0,0,0.61,0,0,0,0,0,0,0,0,0,0,0,0,0.61,0,0,0,0,1.23,0,0,1.23,1.85,0,0,0,0.098,0,0.098,0,0,1.627,15,70,0 0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,20,0,0,0,0,0,0,0,0,0,1,1,5,0 0,0,0.41,0,0,0,0,0,0,0.41,0,1.25,0,0,0,0,0,0,2.91,0,0.41,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0.184,0,0,0,0,1.538,10,40,0 0.4,0,0.81,0,0,0,0,0,0,0,0,0,0,0,0,0.4,0,0.81,1.22,0,0.81,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1.22,0,0,0,0,0.223,0,0,0,0.055,4.75,70,266,0 0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0.38,0,0.38,2.31,0,0.77,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0.38,0,0,0,0,0.216,0,0.162,0,0.054,5.07,70,289,0 0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0.27,0,0.27,0.55,0,0.55,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0.55,0.27,0,0,0,0.122,0.081,0,0,0.04,3.891,70,323,0 0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,3.03,0,3.03,3.03,0,3.03,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,5.153,55,67,0 0,0,1.13,0,0.37,0,0,0,0,0,0,0,0,0,0,0.37,0,0.37,1.13,0,0.37,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0.145,0,0.436,0,0,1.792,55,147,0 0,0,2.06,0,0,0,0,0,0,0,0,1.03,0,0,0,0,0,0,4.12,0,1.03,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1.03,0,0,0,0,0,0,0,0,1,1,16,0 0,0.31,0.31,0,0,0,0,0,0,0.31,0,0,0.31,0,0,0.63,0,0.31,4.73,0,0.63,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0.63,0,0,0,0,0.228,0,0.045,0,0.045,8.117,97,414,0 0,0,0.4,0,0,0.4,0,0,0,0,0,0,0,0,0,0.4,0,0.4,0.4,0,0.4,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0.81,0,0,0,0,0,0,0,0.4,0.4,0,0,0,0.323,0.053,0,0,0.053,5.263,70,300,0 0,0,0,0,0,0.44,0,0,0,0,0,0,0,0,0,0.44,0,0.44,0.44,0,0.44,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0.44,0,0,0,0,0,0,0,0.44,0.44,0,0,0,0.175,0.058,0,0,0.058,8.478,122,390,0 0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0.41,0,0.41,1.23,0,0.41,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0.82,0,0,0,0,0.229,0,0.114,0,0.057,5.196,70,265,0 0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0.72,0,0.72,2.18,0,0.72,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0.72,0,0,0,0,0.298,0,0.198,0,0.099,4,59,128,0 0,0,0.59,0,0,0,0,0,0,0.29,0,0.59,0,0,0,0.29,0,0.29,1.47,0,0.29,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0.29,0,0,0,0,0,0,0,0,0,0,0,0.039,0.235,0,0.471,0,0.039,3.659,70,333,0 0,0.13,0.66,0,0,0,0,0,0,0.13,0,0.13,0,0,0,0.26,0,0.13,2.65,0,0.39,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0.26,0,0,0,0,0,0,0,0.26,0,0,0,0.019,0.367,0,0.193,0,0.038,3.122,70,559,0 0,0,0.92,0,0,0,0,0,0,0,0,0,0.61,0,0,0.3,0,0.3,0,0,0.3,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0.044,0.222,0,0.178,0,0.044,4.757,70,314,0 0,0,0.74,0,0,0,0,0,0,0,0,0.24,0,0,0,0.49,0,0.49,2.71,0,1.23,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0.24,0,0,0,0,0,0,0,0.49,0,0,0,0.036,0.147,0,0.147,0,0,2.587,55,282,0 0,0,0.74,0,0,0,0,0,0,0,0,0.24,0,0,0,0.49,0,0.49,2.71,0,1.23,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0.24,0,0,0,0,0,0,0,0.49,0,0,0,0.036,0.147,0,0.147,0,0,2.587,55,282,0 0,0,0,0,0.43,0,0,0,0,0,0,0,0,0,0,0,0,0.43,2.19,0,0.87,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0.87,0.87,0.43,0,0,0,0.079,0,0,0,0,1.292,5,53,0 0,0,0.74,0,0,0,0,0,0,0,0,0.24,0,0,0,0.49,0,0.49,2.71,0,1.23,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0.24,0,0,0,0,0,0,0,0.49,0,0,0,0.036,0.147,0,0.147,0,0,2.587,55,282,0 0,0,0,0,0,0,0,0,0,0,0,0.61,0.61,0,0,0.61,0,0.3,3.09,0,0.61,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0.61,0,0,0,0,0.179,0,0.448,0,0,5.277,70,285,0 0,0.28,0.42,0,0,0,0,0,0,0,0,0.28,0,0,0,0.14,0,0.14,0.14,0,0.14,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0.14,0.14,0.14,0,0,0,0,0.132,0,0.022,0,0,2.621,70,422,0 0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0.44,0,0.44,0,0,0.44,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0.44,0,0,0,0,0,0,0,0,0.88,0,0,0,0.178,0.059,0,0,0.059,7.046,70,303,0 0,0,0.08,0,0,0.17,0,0,0,0,0,0.17,0,0,0,0.08,0,0.08,0.17,0,0.25,0,0,0.08,0,0,0,0,0,0,0,0,0,0,0,0,0.08,0,0,0,0.08,0,0,0,0,0.59,0,0,0,0.075,0,0.012,0.012,0,2.057,70,605,0 0,0,0.68,0,0.68,0,0,0,0,0,0,0,0.34,0,0,0,0,0.34,1.7,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0.68,0,0,0,0,0.173,0,0.463,0,0,1.538,11,80,0 0,0,0,0,0,0,0,0,0,2.11,0,0,0.7,0,0,0.7,0,0.7,2.11,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0.7,0,0.7,0.7,0,0,0,0,0,0.336,0,0,2.97,68,101,0 0,0,0,0,0,0,0,0,0,0,0,1.28,0,0,0,0,0,0,3.84,0,0,0,0,0,1.28,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1.28,1.28,0,0,0,0,0,0,0,0,0,1.428,2,10,0 0,0,0.62,0,0,0,0,0,0,0,0,0.31,0,0,0,0,0,0,3.41,0,0,0,0,0,0.31,0,0,0,0,0,0,0,0,0,0,0.31,0,0,0,0,0.62,0,0,0,1.24,0,0,0,0,0.112,0,0.225,0,0,1.866,4,28,0 0.3,0,0.3,0,0,0,0,0,0,0,0,0.3,0.6,0,0,0,0,0,3.03,0,1.51,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0.6,0,0,0,1.21,0,0,0,0.055,0.11,0,0.055,0,0,1.947,7,74,0 0.12,0,0.12,0,0,0.25,0,0,0,0,0,0.12,0.25,0,0,0.12,0,0,2.19,0,0.51,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0.25,0,0,0.64,0.25,0.12,0,0,0,0.093,0,0.023,0,0,1.247,5,131,0 0,0,0,0,0,0,0,0,0.64,0,0,0,0,0,0,0,0,0,1.29,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0.64,0,0,0,0,0.116,0,0.232,0,0,1.551,6,45,0 0,0,0,0,0,0,0,0,0.74,0,0,0,0,0,0,0,0,0,2.23,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0.74,0,0,0,0,0,0.74,0,0,0,0,0.276,0,0.552,0,0,2.666,16,72,0 0,0,1.06,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,2.12,0,2.12,0,0,0,0,0,0,0,0,1.06,0,0,0,0,0,0,0,0,0,0,1.06,0,0,0,0,0,0,0,0,0,0,0,0,0,13.333,73,160,0 0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,2.77,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,2.77,2.77,0,0,0,0,0,0,0,0,0,1,1,8,0 0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,3.12,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,3.12,3.12,0,0,0,0,0,0,0.467,0,0,1,1,5,0 0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,3.44,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,3.44,0,0,0,0,0,0,0,0,0,1.6,4,8,0 0.25,0,0.51,0,0,0.25,0,0,0,0.12,0,0,0.25,0,0,0.25,0.25,0.38,1.78,0,0.51,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0.38,4.34,0,0,0.019,0.019,0,0,0.038,0,1.642,17,207,0 0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,2.46,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1.23,0,0,0,0,0,0,19.131,0,0,13.25,48,53,0 0.16,0.16,0.16,0,0.83,0.16,0,0.16,0,0,0,0.5,0.16,0,0,0,0,0,2.34,0,0.67,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0.16,0.33,0.16,0,0,0.087,0.058,0,0,0,0,1.901,16,135,0 0.95,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1.9,0,0.95,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0.95,0.95,0,0,0,0.144,0,5.78,0,0,2.13,15,49,0 0,0,0,0,0,1.2,0,0,0,0,0,0,0,0,0,0,0,0,4.81,0,3.61,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1.2,0,0,0,0,0,0,0,0,1.3,3,13,0 0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,6.66,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,6.66,0,0,0,0,0,0,32.478,0,0,1.666,3,5,0 0,0,1.2,0,0,0,0,0,0,0,0,1.2,0,0,0,0,0,0,6.02,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,2.4,0,1.2,0,0,0,1.2,1.2,0,0,0.197,0,0,7.707,0,0,3.4,15,51,0 0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1.92,0,1.92,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1.92,0,0,0,0,0,0,0,0,5.76,0,0,0,0.336,0,0,0,0,2.352,15,40,0 0,0,2.35,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,7.05,0,1.17,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1.17,0,1.17,0,0,0,1.17,1.17,0,0,0,0,0,0,0,0,3,15,45,0 0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,4.34,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0.704,0,0,0,0,1.75,3,7,0 0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,3.33,0,0,0,0,0,1.66,0,0,0,0,0,0,0,0,0,0,0,1.66,0,0,0,0,0,0,0,0,5,0,0,0,0.554,0,0,0,0,2.294,15,39,0 0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,5.45,0,0,0,0,0,1.81,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1.5,2,3,0 0,0,0.44,0,0,0.44,0,0,0,0,0,0,0.44,0,0,0,0,0,2.67,0,0.89,0,0,0,0.89,0,0,0,0,0,0,0,0,0,0,0.44,0,0,0,0,0.44,0,0,0,0.44,0,0,0,0,0.074,0,0.149,0,0,1.115,2,29,0 1.42,0,0,0,0,0,0,0,0,0,0,4.28,0,0,0,0,0,0,1.42,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,4.28,0,0,0,0,0,0,0,0,0.35,0,0.175,0,0,1.826,7,42,0 0.76,0,0.76,0,0,0.38,0,0,0,0,0,1.15,0.38,0,0,0,0,0,2.3,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0.38,0,2.69,0,0,0,0.38,0.38,0,0,0,0.18,0,0.54,0,0,2.285,15,144,0 0.26,0,0,0,0,0.26,0,0,0,0,0,0,0.26,0,0,0,0,0,2.66,0,0.26,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0.53,0,0,0.26,0.53,0.26,0,0,0,0.046,0,0,0,0,1.222,5,77,0 0,0,0,0,0,0,0,0,0,0,0,2.85,0,0,0,0,0,0,8.57,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,2.85,0,0,0,0,0,0,0,0,0,1,1,7,0 0,0,0,0,0,0,0,0,0,0,0,0.94,0,0,0,0,0,0,2.83,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0.94,0,0,0,1.88,0,0,0,0.94,8.49,0,0,0,0.267,0,0,0,0,2.241,15,65,0 0,0,4,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,4,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,1,6,0 0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,4.54,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0.684,0,0.684,0,0,1,1,1,0 0,0,0.37,0,0,0,0,0,0,0,0,0.37,0.37,0,0,0,0,0,3.33,0,0.37,0,0,0.37,1.48,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0.37,0,0,0,0,0.067,0,0.135,0.135,0,1.437,4,23,0 0,0,0.86,0,0,0,0,0,0,0,0,0,0,0,0,0.57,0,0,3.17,0,0.28,0,0,0,0.57,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0.86,0,0,0,0,0.196,0,0.049,0.147,0,1.1,2,55,0 0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,6.25,0,4.16,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0.359,0.359,0,0,0,0,1,1,1,0 1.88,0,0,0,0,0,0,0,0,0,0,0.31,0,0,0,0,0,0,0.31,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0.168,0,0.112,0,0.056,2.933,23,311,0 0,0.11,0.11,0,0.34,0,0,0,0.11,0.69,0.34,0.23,0.11,0,0,0,0,0.11,0.81,0,0.46,0,0.34,0,0,0,0,0,0,0,0,0,0,0,0,0.11,0.23,0,0.11,0,0,0,0,0,0,0.92,0,0,0.017,0.153,0,0.017,0.068,0.017,3.441,35,499,0 0.08,0.08,0.61,0,0,0,0,0,0,0.43,0,0,0.08,0,0,0,0,0.08,0.87,0,0.08,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0.26,0,0,0,0,0.08,0,0,0,0.78,0,0,0.027,0.208,0.013,0.027,0,0,4.696,124,1315,0 0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1.47,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1.47,0,0,0,1.47,0,0,0,0.335,0,0,0,0.167,2.652,11,61,0 0,0,0,0,0,0,0,0,0,0,0,0,0.8,0,0,0,0,0,4.8,0,0.8,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0.8,0.8,0,0,0,0,0,0,0,0,1,1,18,0 0,0.62,0.62,0,0,0,0,0,0,1.24,0,0,0,0,0,0.62,0,0.62,0,0,3.1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1.24,0,1.86,0,0,0,0,0,0,1.24,0,0,0,0.384,0,0.288,0,0.096,6,116,294,0 0.39,0,0.98,0,0,0.19,0,0,0,0,0,0.58,0.19,0,0,0.78,0,0.39,5.09,0,0.58,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0.19,0,0,0.39,0,0.19,0,0,0.239,0,0.444,0,0,1.626,8,122,0 0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1.31,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0.65,0,0,0,0.127,0,0,0,0,0,1.137,3,33,0 0.35,0,0.71,0,0,0,0,0,0,0.35,0,0.71,0,0,0,0,0,0,7.47,0,1.06,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0.35,0,0,0,0,0.067,0,0,0,0,1,1,40,0 0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0.29,0,0,4.38,0,0.58,0,0,0,0,0,0,0,0.29,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0.58,0,0,0,0.055,0.167,0,0,0,0,1.122,3,55,0 0,0,0,0,0,0,0,0,0,0,0,1.25,0,0,0,0,0,0,2.5,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0.62,0,0,0,0,0.62,0.62,0,0,0,0,0.356,0,0.594,0,0,2.125,16,34,0 0,0,1.09,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,2.19,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,3.29,0,0,0,0.191,0,0,0,0,3,15,51,0 0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,6,0,0,0,0,0,0,0,0,3.176,15,54,0 0,0,0,0,0,0,0,0,0,0,0,1.36,0,0,0,0,0,0,4.1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1.36,0,0,0,0,0,1.36,1.36,0,0,0,0,0,0.234,0,0,2.076,15,27,0 0,0,0,0,0,0,0,0,0,0,0,0.95,0,0,0,0,0,0,3.8,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0.95,0,0,0,0,0,0,0,0,2.85,0,0,0,0,0,0.175,0,0,3.125,15,50,0 0,0,0,0,0.35,0.35,0,0,0,0,0,0,0,0,0,0,0,0,1.79,0,0.71,0,0,0,0.35,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0.35,0,0,0,0.064,0,0,0,0,1.27,8,61,0 0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,3.17,0,0,0,0,0,3.17,0,0,0,0,0,0,0,0,0,0,0,0,0,1.58,0,0,0,0,0,1.58,1.58,0,0,0,0,0,0,0,0,2.071,14,29,0 0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1.61,0,1.61,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1.61,0,0,0,0,0,0,0,0,4.83,0,0,0,0,0,0,0,0,3.117,15,53,0 0,0,0,0,0,0.74,0,0,0,0,0,0.74,1.49,0,0,0,0,0,1.49,0,1.49,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0.74,0,0,0,0,0,0,0,0,0,1.36,3,34,0 0.78,0,0,0,0,0,0,0,0,0,0,0.78,0,0,0,0,0,0,2.36,0,0.78,0,0,0,0,0.78,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0.78,0,0,0,0,0,0,0,0,0,0,1.875,8,30,0 0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,3.84,0,1.28,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1.28,0,0,0,0,0,0,0,1.28,0,0,0,0,0,0,1.548,0,0,3.222,14,58,0 0,0,0,0,0,0,0,0,0,0,0,2.38,0,0,0,0,0,0,2.38,0,2.38,0,0,0,2.38,2.38,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0.404,0,0.809,0.809,0,3,11,27,0 0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,2.08,0,0,0,0,0,0,0,0,6.25,0,0,0,0,0,0,0,0,3.125,15,50,0 0,0,0.64,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,3.22,0,0,0,0,0,0.64,0,0,0,0,0,0,0,0,0,0,0,0.64,0,0.64,0,0,0,0,0,1.29,2.58,0,0,0,0.348,0,1.16,0,0,3.121,15,103,0 0,0,0,0,0,0,0,0,0,0,0,2.22,0,0,0,0,0,0,0.74,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0.74,0,0,0,0,0,0,0,0,2.22,0,0,0,0,0,0,0.277,0,2.72,15,68,0 0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1.01,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1.01,0,0,0,0,0,0,0,0,5.05,0,0,0,0,0,0,0,0,3.043,15,70,0 0.23,0,0,0,0,0.11,0,0,0,0.11,0,0.11,0.11,0,0,0,0,0.23,2.15,0,0.35,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0.23,0,0,0,0,0,0,0.71,0.11,0,0,0,0.126,0,0.021,0,0,1.198,5,145,0 0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,2.13,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0.85,0,0.42,0,0,0,0,0,0.85,3.84,0,0,0,0,0,0,0,0,2.769,15,180,0 0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1.58,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0.63,0,0.31,0,0,0,0,0,0.95,2.22,0,0,0,0,0,0,0,0,2.603,16,164,0 0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,2.45,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0.81,0,0,0,0,0,0,0,0,2.45,0,0,0,0.306,0,0,0.46,0.153,3.173,15,73,0 0,0,0,0,0,0,0,0,0,0,0,0,1.08,0,0,0,0,0,2.17,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,2.17,0,0,0,0,0,0,0,0,7.6,0,0,0,0,0,0,0,0,3.387,15,105,0 0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,3.79,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,1,1,0 0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1.66,0,0,0,0,0,0,1.66,0,5,0,0,0,0,0,0,0,0,3.125,15,50,0 0.88,0,0,0,0,0,0,0,0,1.76,0,0,0,0,0,0,0,0,1.76,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0.88,0,0,0,0,0.88,0,0,0.88,1.76,0,0,0,0.125,0,0.125,0,0,1.681,5,37,0 0,0,0,0,0,0,0,0,0,0,0,0.86,0.86,0,0,0,0,0,2.58,0,0.86,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0.86,0,0,0,0,0,0,0,0.86,0,0,0,0,0,0,0.152,0,0,2.166,14,52,0 0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0.91,0,0,0,0,0,0,0,0,0,0.22,0,0,0,0,0,0,0,0.45,0,0,0,0,0,0,0,0,16.7,0,0,0,0.066,0,0,0,0,2.284,19,329,0 0,0.19,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0.39,0.98,0.19,0.98,0,0,0,0.19,0,0,0,0,0.19,0,0,0,0,0,0,0.39,0,0,0,0,0,0,0,0.19,15.35,0,0,0.086,0,0,0.028,0,0,3.377,15,537,0 0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,4,0,2,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,2,2,0,0,0,0,0,0,0,0,1,1,9,0 0,2.01,0,0,0,0,0,0,0,2.68,0,0.67,0,0,0,0,0,0,4.02,0,3.35,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0.67,0,0,0,0,0,0,0,0,2.01,0,0,0.112,0.112,0,0.112,0,0,2.484,15,82,0 0.09,0,0.48,0,0,0.29,0,0,0,0.09,0,0,0.19,0,0,0.09,0.19,0.58,1.35,0,0.38,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0.38,3.1,0,0,0.015,0.03,0,0,0.046,0,1.722,17,267,0 0,0,0,0,0,0,0,0,0,0,0,0.63,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0.63,0,0,0,0,0,0,0,0.63,13.37,0,0,0,0.158,0,0,0.079,0.079,1.719,15,98,0 0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1.13,0,0,0,0,0,0,0,0,0,1.13,0,0,0,0.136,0,0,0,0.409,1.837,12,68,0 0.42,0,0.42,0,0.21,0,0,0,0,0,0,0.21,0,0,0,0,0,0,1.91,0,0.42,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0.21,0,0,0,0.04,0.04,0,0,0,0,2,3,14,0 0,0,0,0,0,0.37,0,0,0,0,0,0,0,0,0,0,0,0,3.73,0,0.37,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1.11,0,0,0,0,0.066,0,0.066,0,0,1.555,4,14,0 0,0,0,0,0,0,0,0,0,0,0,0.33,0,0,0,0,0,0,4.29,0,2.64,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0.66,0,0,0,0,0.058,0,0,0,0,1.153,3,15,0 0,0,0.4,0,0.2,0.1,0,0,0,0,0,0.1,0.2,0,0,0,0,0,1.42,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0.2,0,0,0,0,0.055,0,0.018,0,0,1.666,4,25,0 0,0,0.36,0,0.12,0.24,0,0,0,0.24,0,0,0.24,0,0,0,0,0,1.58,0,0.12,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0.12,0,0.12,0.24,0,0,0,0.067,0.022,0,0,0,1.433,12,76,0 0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0.72,0,0,0,0,0,0,0,0,0,0.123,1.75,4,21,0 0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,2.33,0,1.86,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0.46,0,0,0,0,0.46,0,0.46,0,0,0,0.082,0,0,0,0,1.117,3,38,0 0,0,0,0,0,0,0,0,0,5.26,0,0,0,0,0,0,0,0,5.26,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1.666,3,5,0 0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1.26,5.06,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1.26,2.53,0,0,0,0,0.263,0,0,0,0,2,5,32,0 0,0,0,0,0,0,0,0,0,0,0,1.92,0,0,0,1.92,0,0,3.84,0,1.92,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1.92,0,0,0,1.92,1.92,0,0,0,0,0,0,0,0,1.611,5,29,0 0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,1,9,0 0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,5.55,0,0,0,0,0,0,0,0,0,0,0,0,1.375,4,11,0 0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,8.33,0,0,0,0,0,0,0,0,0,5.333,18,32,0 0,0,0,0,0,0,0,0,0,0,0,1.25,0,0,0,0,0,0,1.25,0,0,0,0,0,0,0,0,0,1.25,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0.746,0,0,0,0,1.687,4,27,0 0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,1,6,0 0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,3.03,0,0,0,0,3.03,0,0,3.03,3.03,0,0,0,0,0,0,0,0,1.47,5,25,0 0,0,0,0,0,0,0,0,0,3.7,0,0,0,0,0,0,0,0,3.7,0,7.4,0,0,0,0,0,0,0,3.7,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,2,4,8,0 0,0,0.42,0,0,0,0,0,0,0,0,0,0.21,0,0,0.21,0,0.21,2.14,0,0.42,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0.21,0.21,0,0,0.42,0.21,0,0,0,0.078,0.039,0.039,0,0,1.292,6,106,0 0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,8.33,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,1,2,0 0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,2.272,4,25,0 0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,4.16,0,0,0,0,0,0,0,0,0,0,1.666,3,10,0 0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0.93,0,0,0.93,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0.93,0,0,0,0,0,0,0.93,0.93,0.93,0,0,0,0.163,0,0,0,0,1.911,15,65,0 0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0.8,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0.8,0,0,0,0,0,0,0.8,0.8,0.8,0,0,0,0.149,0,0,0,0,1.9,15,57,0 0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1.25,2,5,0 0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,2.333,5,7,0 0,0,0.97,0,0,0,0,0,0,0.97,0,0,0,0,0,0,0,0,2.91,0,0.97,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0.97,0,0,0,0,0,0,0,0,0,0,1.714,6,12,0 0,0,0,0,0,0.8,0,0,0.8,0,0,0,0,0,0,0,0,0.8,1.6,0,0,0,0,0,0,0,0,0,0.8,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0.8,0,0,0.8,0,0,0.294,0,0,0,0,1.166,2,14,0 0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,2,3,4,0 0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1.43,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0.47,0.47,0,0,0,0.252,0.168,0.168,0,0,1.228,5,43,0 0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,6.66,0,0,0,0.334,0,0,0,0,3.333,18,60,0 0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,16.66,0,0,0,0,0,0,0,0,0,0,2,3,4,0 0.33,0,0,0,0,0,0,0,0,0,0,0.33,0,0,0,0,0,0,0.66,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0.33,0,0,0.99,0.33,0,0,0,0.175,0.058,0.116,0,0,1.271,5,75,0 0.17,0,0.68,0,0.34,0.34,0,0,0,0,0,0,0,0,0,0,0,0.34,4.8,0,1.88,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0.51,0.17,0,0,0,0.032,0,0.065,0,0,1.189,5,69,0 0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,2.77,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,2.77,0,0,0,0,0,0,0,0,1,1,10,0 0.69,0,0,0,0.69,0,0,0,0,0,0,0,0,0,0,0,0,0,1.38,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0.69,0,0,1.38,0,0,1.38,1.38,0,0,0,0.302,0,0,0,0.1,2.447,15,93,0 0.16,0,0.32,0,0.1,0.1,0,0,0,0,0,0.21,0.96,0,0,0.05,0.05,0,0.64,0,0,0,0.1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0.1,0,0,0,0.025,0.017,0.008,0,0.008,0.008,1.318,12,244,0 0,0,0.55,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1.11,4.45,0,0.83,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0.27,0.27,0,0,0,0.052,0,0,0,0,1.2,4,54,0 0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,3.12,0,0,0,0,0,0,0,0,1,1,7,0 0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,10.63,0,2.12,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,2.12,2.12,0,0,0.374,0,0,0,0,0,1,1,7,0 0,0,1.02,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,3.06,0,2.04,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1.02,0,0,0,0,1.02,0,0,0,0.55,0,0,0,0,1.333,5,28,0 0.54,0,0.54,0,0.54,0,0,0,0,0,0,0,0,0,0,0,0,0,4.39,0,1.64,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0.54,0,1.09,0,0,0,0,0.097,0,0,0,1.512,11,59,0 0,0,0.37,0,0.28,0.28,0,0,0.09,0,0,0.18,0.28,0,0,0,0,0.46,2.71,0,0.93,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0.56,0.09,0.09,0,0,0.017,0,0,0,0,1.024,3,128,0 0,0,0,0,0,0,0,0,0,0,0.6,0,0,0,0,0,0,0,1.82,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0.6,1.21,0,0,0.112,0,0,0,0,0,1.617,11,55,0 0,0,0.45,0,0.45,0,0,0,0,0,0,0,0.22,0,0,0,0,0,1.35,0,0.22,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0.22,0.22,0.22,0,0,0,0,0,0,0,0,1.13,3,78,0 0.14,0,0.14,0,0,0.56,0,0,0,0,0,0.14,0,0,0,0,0,0.28,2.41,0,0.14,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0.42,0,0,0,0.7,0.14,0,0,0,0.053,0,0,0,0,1.136,5,108,0 0.67,0,0,0,0.67,0,0,0,0,0,0,0,0,0,0,0,0,0,1.34,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0.67,0,0,1.34,0,0,2.01,1.34,0,0,0,0.29,0,0,0,0.096,2.432,15,90,0 0.25,0,0.5,0,0.25,0,0,0,0,0,0,0.5,0,0,0,0,0,0.75,6.28,0,0.75,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0.5,0.25,0,0,0.048,0,0,0,0,0,1,1,42,0 0,0,0,0,0,0,0,0,0,0,0,0.5,1.01,0,0,0.5,0,0.5,2.53,0,0.5,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0.5,0,0,0.5,0.5,0,0,0,0.087,0,0,0.087,0,1.225,3,38,0 0,0,0.46,0,0.23,0.23,0,0,0,0,0,0,0,0,0,0.23,0,0,1.63,0,0.23,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0.46,0,0,0,0,0.23,0,0,0,0.082,0,0.082,0,0,1.256,5,98,0 0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1.4,0,0,0,0.254,0,0,0,0,1,1,13,0 0,0,0.18,0,0.18,0.18,0,0,0,0,0,0,0,0,0,0,0,0,2.06,0,0.56,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0.37,0.56,0.37,0,0,0.033,0.033,0,0.099,0,0,1.489,11,137,0 0.29,0,0.29,0,0,0,0,0,0,0.29,0,0.29,0.59,0,0,0.29,0,0,3.86,0,0.29,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0.29,0,0,0,0.107,0,0,0,0,1.22,6,61,0 0,0,0,0,0,0,0,0,0,1.38,0,0,0,0,0,0,0,1.38,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1.38,2.77,0,0,0,0.213,0,0,0,0,1.72,11,43,0 0,0,0,0,0,0,0,0,0,0,0,0.37,0.37,0,0,0,0,0,1.49,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0.37,0,0,0,0,0.37,0,0,0,1.11,0.37,0,0,0,0.131,0,0,0,0,1.488,5,64,0 0,0,1.2,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,3.61,0,2.4,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1.2,0,0,0,0,0,0,0,0,1.2,3,24,0 0,0,0.4,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0.8,0,0,0,0,0.4,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0.4,0.4,0,0,0,0,0.145,0,0,0,1.372,5,70,0 0.27,0.05,0.1,0,0,0,0,0,0,0,0,0.48,0,0,0,0,0,0.1,0.97,0,0.1,3.47,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0.27,0,0,0,0,0,0,0,0,0.76,0,0,0.607,0.064,0.036,0.055,0,0.202,3.766,43,1789,0 0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,4.76,0,0,0,0,4.76,0,0,0,0,0,0,0,0,1.571,5,11,0 0,0,0,0,0,0.51,0,0,0,0,0,0,0,0,0,0,0,0.51,3.06,0,1.02,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0.51,0,0,0,0.091,0,0.091,0,0,1.586,4,46,0 0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0.89,0.89,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0.89,0,0,0,0,0,0,0,0,1.266,3,19,0 0,0,1.23,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0.61,1.85,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0.61,0.61,0,0,1.23,0.61,0,0,0,0,0.406,0,0,0,1.666,13,70,0 0,0,0.45,0,0,0.22,0,0,0,0,0,0,0.45,0,0,0,0,0,1.83,0,0.45,0,0,0,0,0,0,0,0.22,0,0,0,0,0,0,0,0,0,0,0,0.68,0,0,0.45,0.22,0.22,0,0,0,0.082,0,0.041,0,0,1.5,7,123,0 0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,9.52,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,4.76,0,0,0,0.625,0,0,0,0,1.375,4,11,0 0,0,0,0,0.36,0,0,0,0,0,0,3.3,0,0,0,0,0.36,0.36,1.47,0,0.36,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1.47,0,0,0,0,0,0,0,0,0,0,0.112,0,0,0,0.056,1.793,21,174,0 0,0,0,0,0,0,0,0,0,0,0,0.71,0.71,0,0,0,0,0,0.71,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0.71,0,0,0,0.125,0,0,0.125,0,1.272,4,28,0 0,0,3.03,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,3.03,3.03,0,0,0,0,0,0,0,0,1.111,2,10,0 0,0,0,0,0.54,0,0,0,0,0,0,0.54,0,0,0,0,0,0,0.54,0,0.54,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1.09,0,0.54,0,0,0,0,0,0,0,0,1,1,22,0 0,0,0,0,0,0,0,0,0,0,0,0.58,0,0,0,0.58,0,0,2.9,0,0.58,0.58,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0.58,0,0,0,0.185,0,0,0,0.092,2.468,11,79,0 0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,6.89,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,3.44,0,0,0,0,0,0,0,0,1,1,8,0 0,0,1.25,0,2.5,0,0,0,0,0,0,0,0.62,0,0,0,0,0,0.62,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0.62,0,0,1.25,0.62,0.62,0,0,0,0.111,0,0,0,0,1.285,4,27,0 0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,7.69,0,0,0,0,0,1.052,0,0,1,1,6,0 0,0,0,0,0,0,0,0,0,0,0,1.61,0,0,0,0,0,0,6.45,0,0,0,0,0,0,0,0,0,0,1.61,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1.61,0,0,0,0.63,0,0,0,0,1.727,5,19,0 0,0,1.19,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0.59,3.57,0,1.19,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0.59,0,0,0,0,0,0,0,0,1,1,24,0 0.31,0,0.62,0,0,0.31,0,0,0,0,0,1.88,0,0,0,0,0,0,0.62,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0.31,0.31,0.31,0,0,0,0.232,0,0,0,0,1.142,3,88,0 0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,6,0,2,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,2,0,0,0,0,0,0.353,0,0,1.555,4,14,0 0.3,0,0.3,0,0,0,0,0,0,0,0,1.8,0.3,0,0,0,0,0.9,1.5,0,0.3,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1.2,0,0,0.102,0.718,0,0,0,0,1.404,6,118,0 0.96,0,0,0,0.32,0,0,0,0,0,0,0.32,0,0,0,0,0,0,1.93,0,0.32,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0.32,0,0.32,0,0,0,0.057,0,0,0,0,1.147,5,78,0 0,0,0.65,0,0,0,0,0,0,0,0,0,0.65,0,0,0,0,0,4.6,0,0.65,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1.97,0.65,0,0,0,0,0,0.125,0,0,1.25,5,40,0 ================================================ FILE: nlp_class/stopwords.txt ================================================ a about above across after again against all almost alone along already also although always among an and another any anybody anyone anything anywhere are area areas around as ask asked asking asks at away b back backed backing backs be became because become becomes been before began behind being beings best better between big both but by c came can cannot case cases certain certainly clear clearly come could d did differ different differently do does done down down downed downing downs during e each early either end ended ending ends enough even evenly ever every everybody everyone everything everywhere f face faces fact facts far felt few find finds first for four from full fully further furthered furthering furthers g gave general generally get gets give given gives go going good goods got great greater greatest group grouped grouping groups h had has have having he her here herself high high high higher highest him himself his how howevhowevhoif important in interest interested interesting interests into is it its itself j just k keep keeps kind knew know known knows l large largely last later latest least less let lets like likely long longer longest m made make making man many may me member members men might more most mostly mr mrs much must my myself n nnnnnsary need needed needing needs never new new newer newest next no nobody non noone not nothing now nowhere number numbers o of off often old older oldest on once one only open opened opening opens or order ordered ordering orders other others our out over p part parted parting parts per perhaps place places point pointed pointing points possible present presented presenting presents problem problems put puts q quite r rather really right right room rooms s said same saw say says second seconds see seem seemed seeming seems sees several shall she should show showed showing shows side sides since small smaller smallest so some somebody someone something somewhere state states still still such sure t take taken than that the their them hen there therefore these they thing things think thinks think those though thought thoughts three through thus to today together too took toward turn turned turning turns two u under until up upon us use used uses v very w want wanted wanting wants was way ways we well wells went were what when where whether which while who whole whose why will with within without work worked working works would x y year years yet yyyyyyyung younger youngest your yours z ================================================ FILE: nlp_class2/bow_classifier.py ================================================ # Course URL: # https://deeplearningcourses.com/c/natural-language-processing-with-deep-learning-in-python # https://udemy.com/natural-language-processing-with-deep-learning-in-python from __future__ import print_function, division from builtins import range # Note: you may need to update your version of future # sudo pip install -U future import sys import numpy as np import pandas as pd import matplotlib.pyplot as plt from sklearn.ensemble import ExtraTreesClassifier, RandomForestClassifier from gensim.models import KeyedVectors # data from https://www.cs.umb.edu/~smimarog/textmining/datasets/ # alternate source: https://lazyprogrammer.me/course_files/deepnlp_classification_data.zip train = pd.read_csv('../large_files/r8-train-all-terms.txt', header=None, sep='\t') test = pd.read_csv('../large_files/r8-test-all-terms.txt', header=None, sep='\t') train.columns = ['label', 'content'] test.columns = ['label', 'content'] class GloveVectorizer: def __init__(self): # load in pre-trained word vectors print('Loading word vectors...') word2vec = {} embedding = [] idx2word = [] with open('../large_files/glove.6B/glove.6B.50d.txt') as f: # is just a space-separated text file in the format: # word vec[0] vec[1] vec[2] ... for line in f: values = line.split() word = values[0] vec = np.asarray(values[1:], dtype='float32') word2vec[word] = vec embedding.append(vec) idx2word.append(word) print('Found %s word vectors.' % len(word2vec)) # save for later self.word2vec = word2vec self.embedding = np.array(embedding) self.word2idx = {v:k for k,v in enumerate(idx2word)} self.V, self.D = self.embedding.shape def fit(self, data): pass def transform(self, data): X = np.zeros((len(data), self.D)) n = 0 emptycount = 0 for sentence in data: tokens = sentence.lower().split() vecs = [] for word in tokens: if word in self.word2vec: vec = self.word2vec[word] vecs.append(vec) if len(vecs) > 0: vecs = np.array(vecs) X[n] = vecs.mean(axis=0) else: emptycount += 1 n += 1 print("Numer of samples with no words found: %s / %s" % (emptycount, len(data))) return X def fit_transform(self, data): self.fit(data) return self.transform(data) class Word2VecVectorizer: def __init__(self): print("Loading in word vectors...") self.word_vectors = KeyedVectors.load_word2vec_format( '../large_files/GoogleNews-vectors-negative300.bin', binary=True ) print("Finished loading in word vectors") def fit(self, data): pass def transform(self, data): # determine the dimensionality of vectors v = self.word_vectors.get_vector('king') self.D = v.shape[0] X = np.zeros((len(data), self.D)) n = 0 emptycount = 0 for sentence in data: tokens = sentence.split() vecs = [] m = 0 for word in tokens: try: # throws KeyError if word not found vec = self.word_vectors.get_vector(word) vecs.append(vec) m += 1 except KeyError: pass if len(vecs) > 0: vecs = np.array(vecs) X[n] = vecs.mean(axis=0) else: emptycount += 1 n += 1 print("Numer of samples with no words found: %s / %s" % (emptycount, len(data))) return X def fit_transform(self, data): self.fit(data) return self.transform(data) vectorizer = GloveVectorizer() # vectorizer = Word2VecVectorizer() Xtrain = vectorizer.fit_transform(train.content) Ytrain = train.label Xtest = vectorizer.transform(test.content) Ytest = test.label # create the model, train it, print scores model = RandomForestClassifier(n_estimators=200) model.fit(Xtrain, Ytrain) print("train score:", model.score(Xtrain, Ytrain)) print("test score:", model.score(Xtest, Ytest)) ================================================ FILE: nlp_class2/extra_reading.txt ================================================ Jeffrey Pennington, Richard Socher, and Christopher D. Manning. 2014. GloVe: Global Vectors for Word Representation https://nlp.stanford.edu/pubs/glove.pdf Neural Word Embedding as Implicit Matrix Factorization http://papers.nips.cc/paper/5477-neural-word-embedding-as-implicit-matrix-factorization.pdf Hierarchical Softmax http://www.iro.umontreal.ca/~lisa/pointeurs/hierarchical-nnlm-aistats05.pdf More about Hierarchical Softmax http://papers.nips.cc/paper/3583-a-scalable-hierarchical-distributed-language-model.pdf Distributed Representations of Words and Phrases and their Compositionality https://papers.nips.cc/paper/5021-distributed-representations-of-words-and-phrases-and-their-compositionality.pdf ================================================ FILE: nlp_class2/glove.py ================================================ # Course URL: # https://deeplearningcourses.com/c/natural-language-processing-with-deep-learning-in-python # https://udemy.com/natural-language-processing-with-deep-learning-in-python from __future__ import print_function, division from builtins import range # Note: you may need to update your version of future # sudo pip install -U future import os import json import numpy as np import matplotlib.pyplot as plt from datetime import datetime from sklearn.utils import shuffle from util import find_analogies import sys sys.path.append(os.path.abspath('..')) from rnn_class.util import get_wikipedia_data from rnn_class.brown import get_sentences_with_word2idx_limit_vocab, get_sentences_with_word2idx # using ALS, what's the least # files to get correct analogies? # use this for word2vec training to make it faster # first tried 20 files --> not enough # how about 30 files --> some correct but still not enough # 40 files --> half right but 50 is better class Glove: def __init__(self, D, V, context_sz): self.D = D self.V = V self.context_sz = context_sz def fit(self, sentences, cc_matrix=None, learning_rate=1e-4, reg=0.1, xmax=100, alpha=0.75, epochs=10, gd=False): # build co-occurrence matrix # paper calls it X, so we will call it X, instead of calling # the training data X # TODO: would it be better to use a sparse matrix? t0 = datetime.now() V = self.V D = self.D if not os.path.exists(cc_matrix): X = np.zeros((V, V)) N = len(sentences) print("number of sentences to process:", N) it = 0 for sentence in sentences: it += 1 if it % 10000 == 0: print("processed", it, "/", N) n = len(sentence) for i in range(n): # i is not the word index!!! # j is not the word index!!! # i just points to which element of the sequence (sentence) we're looking at wi = sentence[i] start = max(0, i - self.context_sz) end = min(n, i + self.context_sz) # we can either choose only one side as context, or both # here we are doing both # make sure "start" and "end" tokens are part of some context # otherwise their f(X) will be 0 (denominator in bias update) if i - self.context_sz < 0: points = 1.0 / (i + 1) X[wi,0] += points X[0,wi] += points if i + self.context_sz > n: points = 1.0 / (n - i) X[wi,1] += points X[1,wi] += points # left side for j in range(start, i): wj = sentence[j] points = 1.0 / (i - j) # this is +ve X[wi,wj] += points X[wj,wi] += points # right side for j in range(i + 1, end): wj = sentence[j] points = 1.0 / (j - i) # this is +ve X[wi,wj] += points X[wj,wi] += points # save the cc matrix because it takes forever to create np.save(cc_matrix, X) else: X = np.load(cc_matrix) print("max in X:", X.max()) # weighting fX = np.zeros((V, V)) fX[X < xmax] = (X[X < xmax] / float(xmax)) ** alpha fX[X >= xmax] = 1 print("max in f(X):", fX.max()) # target logX = np.log(X + 1) print("max in log(X):", logX.max()) print("time to build co-occurrence matrix:", (datetime.now() - t0)) # initialize weights W = np.random.randn(V, D) / np.sqrt(V + D) b = np.zeros(V) U = np.random.randn(V, D) / np.sqrt(V + D) c = np.zeros(V) mu = logX.mean() costs = [] sentence_indexes = range(len(sentences)) for epoch in range(epochs): delta = W.dot(U.T) + b.reshape(V, 1) + c.reshape(1, V) + mu - logX cost = ( fX * delta * delta ).sum() costs.append(cost) print("epoch:", epoch, "cost:", cost) if gd: # gradient descent method # update W # oldW = W.copy() for i in range(V): # for j in range(V): # W[i] -= learning_rate*fX[i,j]*(W[i].dot(U[j]) + b[i] + c[j] + mu - logX[i,j])*U[j] W[i] -= learning_rate*(fX[i,:]*delta[i,:]).dot(U) W -= learning_rate*reg*W # print "updated W" # update b for i in range(V): # for j in range(V): # b[i] -= learning_rate*fX[i,j]*(W[i].dot(U[j]) + b[i] + c[j] + mu - logX[i,j]) b[i] -= learning_rate*fX[i,:].dot(delta[i,:]) # b -= learning_rate*reg*b # print "updated b" # update U for j in range(V): # for i in range(V): # U[j] -= learning_rate*fX[i,j]*(W[i].dot(U[j]) + b[i] + c[j] + mu - logX[i,j])*W[i] U[j] -= learning_rate*(fX[:,j]*delta[:,j]).dot(W) U -= learning_rate*reg*U # print "updated U" # update c for j in range(V): # for i in range(V): # c[j] -= learning_rate*fX[i,j]*(W[i].dot(U[j]) + b[i] + c[j] + mu - logX[i,j]) c[j] -= learning_rate*fX[:,j].dot(delta[:,j]) # c -= learning_rate*reg*c # print "updated c" else: # ALS method # update W # fast way # t0 = datetime.now() for i in range(V): # matrix = reg*np.eye(D) + np.sum((fX[i,j]*np.outer(U[j], U[j]) for j in range(V)), axis=0) matrix = reg*np.eye(D) + (fX[i,:]*U.T).dot(U) # assert(np.abs(matrix - matrix2).sum() < 1e-5) vector = (fX[i,:]*(logX[i,:] - b[i] - c - mu)).dot(U) W[i] = np.linalg.solve(matrix, vector) # print "fast way took:", (datetime.now() - t0) # slow way # t0 = datetime.now() # for i in range(V): # matrix2 = reg*np.eye(D) # vector2 = 0 # for j in range(V): # matrix2 += fX[i,j]*np.outer(U[j], U[j]) # vector2 += fX[i,j]*(logX[i,j] - b[i] - c[j])*U[j] # print "slow way took:", (datetime.now() - t0) # assert(np.abs(matrix - matrix2).sum() < 1e-5) # assert(np.abs(vector - vector2).sum() < 1e-5) # W[i] = np.linalg.solve(matrix, vector) # print "updated W" # update b for i in range(V): denominator = fX[i,:].sum() + reg # assert(denominator > 0) numerator = fX[i,:].dot(logX[i,:] - W[i].dot(U.T) - c - mu) # for j in range(V): # numerator += fX[i,j]*(logX[i,j] - W[i].dot(U[j]) - c[j]) b[i] = numerator / denominator # print "updated b" # update U for j in range(V): # matrix = reg*np.eye(D) + np.sum((fX[i,j]*np.outer(W[i], W[i]) for i in range(V)), axis=0) matrix = reg*np.eye(D) + (fX[:,j]*W.T).dot(W) # assert(np.abs(matrix - matrix2).sum() < 1e-8) vector = (fX[:,j]*(logX[:,j] - b - c[j] - mu)).dot(W) # matrix = reg*np.eye(D) # vector = 0 # for i in range(V): # matrix += fX[i,j]*np.outer(W[i], W[i]) # vector += fX[i,j]*(logX[i,j] - b[i] - c[j])*W[i] U[j] = np.linalg.solve(matrix, vector) # print "updated U" # update c for j in range(V): denominator = fX[:,j].sum() + reg numerator = fX[:,j].dot(logX[:,j] - W.dot(U[j]) - b - mu) # for i in range(V): # numerator += fX[i,j]*(logX[i,j] - W[i].dot(U[j]) - b[i]) c[j] = numerator / denominator # print "updated c" self.W = W self.U = U plt.plot(costs) plt.show() def save(self, fn): # function word_analogies expects a (V,D) matrx and a (D,V) matrix arrays = [self.W, self.U.T] np.savez(fn, *arrays) def main(we_file, w2i_file, use_brown=True, n_files=100): if use_brown: cc_matrix = "cc_matrix_brown.npy" else: cc_matrix = "cc_matrix_%s.npy" % n_files # hacky way of checking if we need to re-load the raw data or not # remember, only the co-occurrence matrix is needed for training if os.path.exists(cc_matrix): with open(w2i_file) as f: word2idx = json.load(f) sentences = [] # dummy - we won't actually use it else: if use_brown: keep_words = set([ 'king', 'man', 'woman', 'france', 'paris', 'london', 'rome', 'italy', 'britain', 'england', 'french', 'english', 'japan', 'japanese', 'chinese', 'italian', 'australia', 'australian', 'december', 'november', 'june', 'january', 'february', 'march', 'april', 'may', 'july', 'august', 'september', 'october', ]) sentences, word2idx = get_sentences_with_word2idx_limit_vocab(n_vocab=5000, keep_words=keep_words) else: sentences, word2idx = get_wikipedia_data(n_files=n_files, n_vocab=2000) with open(w2i_file, 'w') as f: json.dump(word2idx, f) V = len(word2idx) model = Glove(100, V, 10) # alternating least squares method model.fit(sentences, cc_matrix=cc_matrix, epochs=20) # gradient descent method # model.fit( # sentences, # cc_matrix=cc_matrix, # learning_rate=5e-4, # reg=0.1, # epochs=500, # gd=True, # ) model.save(we_file) if __name__ == '__main__': we = 'glove_model_50.npz' w2i = 'glove_word2idx_50.json' # we = 'glove_model_brown.npz' # w2i = 'glove_word2idx_brown.json' main(we, w2i, use_brown=False) # load back embeddings npz = np.load(we) W1 = npz['arr_0'] W2 = npz['arr_1'] with open(w2i) as f: word2idx = json.load(f) idx2word = {i:w for w,i in word2idx.items()} for concat in (True, False): print("** concat:", concat) if concat: We = np.hstack([W1, W2.T]) else: We = (W1 + W2.T) / 2 find_analogies('king', 'man', 'woman', We, word2idx, idx2word) find_analogies('france', 'paris', 'london', We, word2idx, idx2word) find_analogies('france', 'paris', 'rome', We, word2idx, idx2word) find_analogies('paris', 'france', 'italy', We, word2idx, idx2word) find_analogies('france', 'french', 'english', We, word2idx, idx2word) find_analogies('japan', 'japanese', 'chinese', We, word2idx, idx2word) find_analogies('japan', 'japanese', 'italian', We, word2idx, idx2word) find_analogies('japan', 'japanese', 'australian', We, word2idx, idx2word) find_analogies('december', 'november', 'june', We, word2idx, idx2word) ================================================ FILE: nlp_class2/glove_svd.py ================================================ # Course URL: # https://deeplearningcourses.com/c/natural-language-processing-with-deep-learning-in-python # https://udemy.com/natural-language-processing-with-deep-learning-in-python from __future__ import print_function, division from builtins import range # Note: you may need to update your version of future # sudo pip install -U future import os import json import numpy as np import matplotlib.pyplot as plt from sklearn.decomposition import TruncatedSVD from datetime import datetime from sklearn.utils import shuffle from util import find_analogies import sys sys.path.append(os.path.abspath('..')) from rnn_class.util import get_wikipedia_data from rnn_class.brown import get_sentences_with_word2idx_limit_vocab, get_sentences_with_word2idx class Glove: def __init__(self, D, V, context_sz): self.D = D self.V = V self.context_sz = context_sz def fit(self, sentences, cc_matrix=None): # build co-occurrence matrix # paper calls it X, so we will call it X, instead of calling # the training data X # TODO: would it be better to use a sparse matrix? t0 = datetime.now() V = self.V D = self.D if not os.path.exists(cc_matrix): X = np.zeros((V, V)) N = len(sentences) print("number of sentences to process:", N) it = 0 for sentence in sentences: it += 1 if it % 10000 == 0: print("processed", it, "/", N) n = len(sentence) for i in range(n): # i is not the word index!!! # j is not the word index!!! # i just points to which element of the sequence (sentence) we're looking at wi = sentence[i] start = max(0, i - self.context_sz) end = min(n, i + self.context_sz) # we can either choose only one side as context, or both # here we are doing both # make sure "start" and "end" tokens are part of some context # otherwise their f(X) will be 0 (denominator in bias update) if i - self.context_sz < 0: points = 1.0 / (i + 1) X[wi,0] += points X[0,wi] += points if i + self.context_sz > n: points = 1.0 / (n - i) X[wi,1] += points X[1,wi] += points # left side for j in range(start, i): wj = sentence[j] points = 1.0 / (i - j) # this is +ve X[wi,wj] += points X[wj,wi] += points # right side for j in range(i + 1, end): wj = sentence[j] points = 1.0 / (j - i) # this is +ve X[wi,wj] += points X[wj,wi] += points # save the cc matrix because it takes forever to create np.save(cc_matrix, X) else: X = np.load(cc_matrix) print("max in X:", X.max()) # target logX = np.log(X + 1) print("max in log(X):", logX.max()) print("time to build co-occurrence matrix:", (datetime.now() - t0)) # subtract global mean mu = logX.mean() model = TruncatedSVD(n_components=D) Z = model.fit_transform(logX - mu) S = np.diag(model.explained_variance_) Sinv = np.linalg.inv(S) self.W = Z.dot(Sinv) self.U = model.components_.T # calculate cost once delta = self.W.dot(S).dot(self.U.T) + mu - logX cost = (delta * delta).sum() print("svd cost:", cost) def save(self, fn): # function word_analogies expects a (V,D) matrx and a (D,V) matrix arrays = [self.W, self.U.T] np.savez(fn, *arrays) def main(we_file, w2i_file, use_brown=True, n_files=100): if use_brown: cc_matrix = "cc_matrix_brown.npy" else: cc_matrix = "cc_matrix_%s.npy" % n_files # hacky way of checking if we need to re-load the raw data or not # remember, only the co-occurrence matrix is needed for training if os.path.exists(cc_matrix): with open(w2i_file) as f: word2idx = json.load(f) sentences = [] # dummy - we won't actually use it else: if use_brown: keep_words = set([ 'king', 'man', 'woman', 'france', 'paris', 'london', 'rome', 'italy', 'britain', 'england', 'french', 'english', 'japan', 'japanese', 'chinese', 'italian', 'australia', 'australian', 'december', 'november', 'june', 'january', 'february', 'march', 'april', 'may', 'july', 'august', 'september', 'october', ]) sentences, word2idx = get_sentences_with_word2idx_limit_vocab(n_vocab=5000, keep_words=keep_words) else: sentences, word2idx = get_wikipedia_data(n_files=n_files, n_vocab=2000) with open(w2i_file, 'w') as f: json.dump(word2idx, f) V = len(word2idx) model = Glove(100, V, 10) # alternating least squares method model.fit(sentences, cc_matrix=cc_matrix) model.save(we_file) if __name__ == '__main__': we = 'glove_svd_50.npz' w2i = 'glove_word2idx_50.json' # we = 'glove_svd_brown.npz' # w2i = 'glove_word2idx_brown.json' main(we, w2i, use_brown=False) # load back embeddings npz = np.load(we) W1 = npz['arr_0'] W2 = npz['arr_1'] with open(w2i) as f: word2idx = json.load(f) idx2word = {i:w for w,i in word2idx.items()} for concat in (True, False): print("** concat:", concat) if concat: We = np.hstack([W1, W2.T]) else: We = (W1 + W2.T) / 2 find_analogies('king', 'man', 'woman', We, word2idx, idx2word) find_analogies('france', 'paris', 'london', We, word2idx, idx2word) find_analogies('france', 'paris', 'rome', We, word2idx, idx2word) find_analogies('paris', 'france', 'italy', We, word2idx, idx2word) find_analogies('france', 'french', 'english', We, word2idx, idx2word) find_analogies('japan', 'japanese', 'chinese', We, word2idx, idx2word) find_analogies('japan', 'japanese', 'italian', We, word2idx, idx2word) find_analogies('japan', 'japanese', 'australian', We, word2idx, idx2word) find_analogies('december', 'november', 'june', We, word2idx, idx2word) ================================================ FILE: nlp_class2/glove_tf.py ================================================ # Course URL: # https://deeplearningcourses.com/c/natural-language-processing-with-deep-learning-in-python # https://udemy.com/natural-language-processing-with-deep-learning-in-python from __future__ import print_function, division from builtins import range # Note: you may need to update your version of future # sudo pip install -U future import os import json import numpy as np import tensorflow as tf import matplotlib.pyplot as plt from datetime import datetime from sklearn.utils import shuffle from util import find_analogies import sys sys.path.append(os.path.abspath('..')) from rnn_class.util import get_wikipedia_data from rnn_class.brown import get_sentences_with_word2idx_limit_vocab, get_sentences_with_word2idx if tf.__version__.startswith('2'): tf.compat.v1.disable_eager_execution() class Glove: def __init__(self, D, V, context_sz): self.D = D self.V = V self.context_sz = context_sz def fit(self, sentences, cc_matrix=None, learning_rate=1e-4, reg=0.1, xmax=100, alpha=0.75, epochs=10): # build co-occurrence matrix # paper calls it X, so we will call it X, instead of calling # the training data X # TODO: would it be better to use a sparse matrix? t0 = datetime.now() V = self.V D = self.D if not os.path.exists(cc_matrix): X = np.zeros((V, V)) N = len(sentences) print("number of sentences to process:", N) it = 0 for sentence in sentences: it += 1 if it % 10000 == 0: print("processed", it, "/", N) n = len(sentence) for i in range(n): # i is not the word index!!! # j is not the word index!!! # i just points to which element of the sequence (sentence) we're looking at wi = sentence[i] start = max(0, i - self.context_sz) end = min(n, i + self.context_sz) # we can either choose only one side as context, or both # here we are doing both # make sure "start" and "end" tokens are part of some context # otherwise their f(X) will be 0 (denominator in bias update) if i - self.context_sz < 0: points = 1.0 / (i + 1) X[wi,0] += points X[0,wi] += points if i + self.context_sz > n: points = 1.0 / (n - i) X[wi,1] += points X[1,wi] += points # left side for j in range(start, i): wj = sentence[j] points = 1.0 / (i - j) # this is +ve X[wi,wj] += points X[wj,wi] += points # right side for j in range(i + 1, end): wj = sentence[j] points = 1.0 / (j - i) # this is +ve X[wi,wj] += points X[wj,wi] += points # save the cc matrix because it takes forever to create np.save(cc_matrix, X) else: X = np.load(cc_matrix) print("max in X:", X.max()) # weighting fX = np.zeros((V, V)) fX[X < xmax] = (X[X < xmax] / float(xmax)) ** alpha fX[X >= xmax] = 1 print("max in f(X):", fX.max()) # target logX = np.log(X + 1) print("max in log(X):", logX.max()) print("time to build co-occurrence matrix:", (datetime.now() - t0)) # initialize weights W = np.random.randn(V, D) / np.sqrt(V + D) b = np.zeros(V) U = np.random.randn(V, D) / np.sqrt(V + D) c = np.zeros(V) mu = logX.mean() # initialize weights, inputs, targets placeholders tfW = tf.Variable(W.astype(np.float32)) tfb = tf.Variable(b.reshape(V, 1).astype(np.float32)) tfU = tf.Variable(U.astype(np.float32)) tfc = tf.Variable(c.reshape(1, V).astype(np.float32)) tfLogX = tf.compat.v1.placeholder(tf.float32, shape=(V, V)) tffX = tf.compat.v1.placeholder(tf.float32, shape=(V, V)) delta = tf.matmul(tfW, tf.transpose(a=tfU)) + tfb + tfc + mu - tfLogX cost = tf.reduce_sum(input_tensor=tffX * delta * delta) regularized_cost = cost for param in (tfW, tfU): regularized_cost += reg*tf.reduce_sum(input_tensor=param * param) train_op = tf.compat.v1.train.MomentumOptimizer( learning_rate, momentum=0.9 ).minimize(regularized_cost) # train_op = tf.train.AdamOptimizer(1e-3).minimize(regularized_cost) init = tf.compat.v1.global_variables_initializer() session = tf.compat.v1.InteractiveSession() session.run(init) costs = [] sentence_indexes = range(len(sentences)) for epoch in range(epochs): c, _ = session.run((cost, train_op), feed_dict={tfLogX: logX, tffX: fX}) print("epoch:", epoch, "cost:", c) costs.append(c) # save for future calculations self.W, self.U = session.run([tfW, tfU]) plt.plot(costs) plt.show() def save(self, fn): # function word_analogies expects a (V,D) matrx and a (D,V) matrix arrays = [self.W, self.U.T] np.savez(fn, *arrays) def main(we_file, w2i_file, use_brown=True, n_files=50): if use_brown: cc_matrix = "cc_matrix_brown.npy" else: cc_matrix = "cc_matrix_%s.npy" % n_files # hacky way of checking if we need to re-load the raw data or not # remember, only the co-occurrence matrix is needed for training if os.path.exists(cc_matrix): with open(w2i_file) as f: word2idx = json.load(f) sentences = [] # dummy - we won't actually use it else: if use_brown: keep_words = set([ 'king', 'man', 'woman', 'france', 'paris', 'london', 'rome', 'italy', 'britain', 'england', 'french', 'english', 'japan', 'japanese', 'chinese', 'italian', 'australia', 'australian', 'december', 'november', 'june', 'january', 'february', 'march', 'april', 'may', 'july', 'august', 'september', 'october', ]) sentences, word2idx = get_sentences_with_word2idx_limit_vocab(n_vocab=5000, keep_words=keep_words) else: sentences, word2idx = get_wikipedia_data(n_files=n_files, n_vocab=2000) with open(w2i_file, 'w') as f: json.dump(word2idx, f) V = len(word2idx) model = Glove(100, V, 10) model.fit(sentences, cc_matrix=cc_matrix, epochs=200) model.save(we_file) if __name__ == '__main__': we = 'glove_model_50.npz' w2i = 'glove_word2idx_50.json' main(we, w2i, use_brown=False) # load back embeddings npz = np.load(we) W1 = npz['arr_0'] W2 = npz['arr_1'] with open(w2i) as f: word2idx = json.load(f) idx2word = {i:w for w,i in word2idx.items()} for concat in (True, False): print("** concat:", concat) if concat: We = np.hstack([W1, W2.T]) else: We = (W1 + W2.T) / 2 find_analogies('king', 'man', 'woman', We, word2idx, idx2word) find_analogies('france', 'paris', 'london', We, word2idx, idx2word) find_analogies('france', 'paris', 'rome', We, word2idx, idx2word) find_analogies('paris', 'france', 'italy', We, word2idx, idx2word) find_analogies('france', 'french', 'english', We, word2idx, idx2word) find_analogies('japan', 'japanese', 'chinese', We, word2idx, idx2word) find_analogies('japan', 'japanese', 'italian', We, word2idx, idx2word) find_analogies('japan', 'japanese', 'australian', We, word2idx, idx2word) find_analogies('december', 'november', 'june', We, word2idx, idx2word) ================================================ FILE: nlp_class2/glove_theano.py ================================================ # Course URL: # https://deeplearningcourses.com/c/natural-language-processing-with-deep-learning-in-python # https://udemy.com/natural-language-processing-with-deep-learning-in-python from __future__ import print_function, division from builtins import range # Note: you may need to update your version of future # sudo pip install -U future import os import json import numpy as np import theano import theano.tensor as T import matplotlib.pyplot as plt from datetime import datetime from sklearn.utils import shuffle from util import find_analogies import sys sys.path.append(os.path.abspath('..')) from rnn_class.util import get_wikipedia_data from rnn_class.brown import get_sentences_with_word2idx_limit_vocab, get_sentences_with_word2idx def momentum_updates(cost, params, lr=1e-4, mu=0.9): grads = T.grad(cost, params) velocities = [theano.shared( np.zeros_like(p.get_value()).astype(np.float32) ) for p in params] updates = [] for p, v, g in zip(params, velocities, grads): newv = mu*v - lr*g newp = p + newv updates.append((p, newp)) updates.append((v, newv)) return updates class Glove: def __init__(self, D, V, context_sz): self.D = D self.V = V self.context_sz = context_sz def fit(self, sentences, cc_matrix=None, learning_rate=1e-4, reg=0.1, xmax=100, alpha=0.75, epochs=10, gd=False, use_theano=False, use_tensorflow=False): # build co-occurrence matrix # paper calls it X, so we will call it X, instead of calling # the training data X # TODO: would it be better to use a sparse matrix? t0 = datetime.now() V = self.V D = self.D if not os.path.exists(cc_matrix): X = np.zeros((V, V)) N = len(sentences) print("number of sentences to process:", N) it = 0 for sentence in sentences: it += 1 if it % 10000 == 0: print("processed", it, "/", N) n = len(sentence) for i in range(n): # i is not the word index!!! # j is not the word index!!! # i just points to which element of the sequence (sentence) we're looking at wi = sentence[i] start = max(0, i - self.context_sz) end = min(n, i + self.context_sz) # we can either choose only one side as context, or both # here we are doing both # make sure "start" and "end" tokens are part of some context # otherwise their f(X) will be 0 (denominator in bias update) if i - self.context_sz < 0: points = 1.0 / (i + 1) X[wi,0] += points X[0,wi] += points if i + self.context_sz > n: points = 1.0 / (n - i) X[wi,1] += points X[1,wi] += points # left side for j in range(start, i): wj = sentence[j] points = 1.0 / (i - j) # this is +ve X[wi,wj] += points X[wj,wi] += points # right side for j in range(i + 1, end): wj = sentence[j] points = 1.0 / (j - i) # this is +ve X[wi,wj] += points X[wj,wi] += points # save the cc matrix because it takes forever to create np.save(cc_matrix, X) else: X = np.load(cc_matrix) print("max in X:", X.max()) # weighting fX = np.zeros((V, V)) fX[X < xmax] = (X[X < xmax] / float(xmax)) ** alpha fX[X >= xmax] = 1 print("max in f(X):", fX.max()) # target logX = np.log(X + 1) # cast fX = fX.astype(np.float32) logX = logX.astype(np.float32) print("max in log(X):", logX.max()) print("time to build co-occurrence matrix:", (datetime.now() - t0)) # initialize weights W = np.random.randn(V, D) / np.sqrt(V + D) b = np.zeros(V) U = np.random.randn(V, D) / np.sqrt(V + D) c = np.zeros(V) mu = logX.mean() # initialize weights, inputs, targets placeholders thW = theano.shared(W.astype(np.float32)) thb = theano.shared(b.astype(np.float32)) thU = theano.shared(U.astype(np.float32)) thc = theano.shared(c.astype(np.float32)) thLogX = T.matrix('logX') thfX = T.matrix('fX') params = [thW, thb, thU, thc] thDelta = thW.dot(thU.T) + T.reshape(thb, (V, 1)) + T.reshape(thc, (1, V)) + mu - thLogX thCost = ( thfX * thDelta * thDelta ).sum() # regularization regularized_cost = thCost + reg*((thW * thW).sum() + (thU * thU).sum()) updates = momentum_updates(regularized_cost, params, learning_rate) train_op = theano.function( inputs=[thfX, thLogX], updates=updates, ) cost_op = theano.function(inputs=[thfX, thLogX], outputs=thCost) costs = [] sentence_indexes = range(len(sentences)) for epoch in range(epochs): train_op(fX, logX) cost = cost_op(fX, logX) costs.append(cost) print("epoch:", epoch, "cost:", cost) self.W = thW.get_value() self.U = thU.get_value() plt.plot(costs) plt.show() def save(self, fn): # function word_analogies expects a (V,D) matrx and a (D,V) matrix arrays = [self.W, self.U.T] np.savez(fn, *arrays) def main(we_file, w2i_file, use_brown=True, n_files=50): if use_brown: cc_matrix = "cc_matrix_brown.npy" else: cc_matrix = "cc_matrix_%s.npy" % n_files # hacky way of checking if we need to re-load the raw data or not # remember, only the co-occurrence matrix is needed for training if os.path.exists(cc_matrix): with open(w2i_file) as f: word2idx = json.load(f) sentences = [] # dummy - we won't actually use it else: if use_brown: keep_words = set([ 'king', 'man', 'woman', 'france', 'paris', 'london', 'rome', 'italy', 'britain', 'england', 'french', 'english', 'japan', 'japanese', 'chinese', 'italian', 'australia', 'australian', 'december', 'november', 'june', 'january', 'february', 'march', 'april', 'may', 'july', 'august', 'september', 'october', ]) sentences, word2idx = get_sentences_with_word2idx_limit_vocab(n_vocab=5000, keep_words=keep_words) else: sentences, word2idx = get_wikipedia_data(n_files=n_files, n_vocab=2000) with open(w2i_file, 'w') as f: json.dump(word2idx, f) V = len(word2idx) model = Glove(100, V, 10) model.fit( sentences, cc_matrix=cc_matrix, learning_rate=1e-4, reg=0.1, epochs=200, ) model.save(we_file) if __name__ == '__main__': we = 'glove_model_50.npz' w2i = 'glove_word2idx_50.json' # we = 'glove_model_brown.npz' # w2i = 'glove_word2idx_brown.json' main(we, w2i, use_brown=False) # load back embeddings npz = np.load(we) W1 = npz['arr_0'] W2 = npz['arr_1'] with open(w2i) as f: word2idx = json.load(f) idx2word = {i:w for w,i in word2idx.items()} for concat in (True, False): print("** concat:", concat) if concat: We = np.hstack([W1, W2.T]) else: We = (W1 + W2.T) / 2 find_analogies('king', 'man', 'woman', We, word2idx, idx2word) find_analogies('france', 'paris', 'london', We, word2idx, idx2word) find_analogies('france', 'paris', 'rome', We, word2idx, idx2word) find_analogies('paris', 'france', 'italy', We, word2idx, idx2word) find_analogies('france', 'french', 'english', We, word2idx, idx2word) find_analogies('japan', 'japanese', 'chinese', We, word2idx, idx2word) find_analogies('japan', 'japanese', 'italian', We, word2idx, idx2word) find_analogies('japan', 'japanese', 'australian', We, word2idx, idx2word) find_analogies('december', 'november', 'june', We, word2idx, idx2word) ================================================ FILE: nlp_class2/logistic.py ================================================ # Course URL: # https://deeplearningcourses.com/c/natural-language-processing-with-deep-learning-in-python # https://udemy.com/natural-language-processing-with-deep-learning-in-python from __future__ import print_function, division from future.utils import iteritems from builtins import range, input # Note: you may need to update your version of future # sudo pip install -U future import numpy as np import matplotlib.pyplot as plt import random from datetime import datetime import os import sys sys.path.append(os.path.abspath('..')) from rnn_class.util import get_wikipedia_data from rnn_class.brown import get_sentences_with_word2idx_limit_vocab, get_sentences_with_word2idx from markov import get_bigram_probs if __name__ == '__main__': # load in the data # note: sentences are already converted to sequences of word indexes # note: you can limit the vocab size if you run out of memory sentences, word2idx = get_sentences_with_word2idx_limit_vocab(2000) # sentences, word2idx = get_sentences_with_word2idx() # vocab size V = len(word2idx) print("Vocab size:", V) # we will also treat beginning of sentence and end of sentence as bigrams # START -> first word # last word -> END start_idx = word2idx['START'] end_idx = word2idx['END'] # a matrix where: # row = last word # col = current word # value at [row, col] = p(current word | last word) bigram_probs = get_bigram_probs(sentences, V, start_idx, end_idx, smoothing=0.1) # train a logistic model W = np.random.randn(V, V) / np.sqrt(V) losses = [] epochs = 1 lr = 1e-1 def softmax(a): a = a - a.max() exp_a = np.exp(a) return exp_a / exp_a.sum(axis=1, keepdims=True) # what is the loss if we set W = log(bigram_probs)? W_bigram = np.log(bigram_probs) bigram_losses = [] t0 = datetime.now() for epoch in range(epochs): # shuffle sentences at each epoch random.shuffle(sentences) j = 0 # keep track of iterations for sentence in sentences: # convert sentence into one-hot encoded inputs and targets sentence = [start_idx] + sentence + [end_idx] n = len(sentence) inputs = np.zeros((n - 1, V)) targets = np.zeros((n - 1, V)) inputs[np.arange(n - 1), sentence[:n-1]] = 1 targets[np.arange(n - 1), sentence[1:]] = 1 # get output predictions predictions = softmax(inputs.dot(W)) # do a gradient descent step W = W - lr * inputs.T.dot(predictions - targets) # keep track of the loss loss = -np.sum(targets * np.log(predictions)) / (n - 1) losses.append(loss) # keep track of the bigram loss # only do it for the first epoch to avoid redundancy if epoch == 0: bigram_predictions = softmax(inputs.dot(W_bigram)) bigram_loss = -np.sum(targets * np.log(bigram_predictions)) / (n - 1) bigram_losses.append(bigram_loss) if j % 10 == 0: print("epoch:", epoch, "sentence: %s/%s" % (j, len(sentences)), "loss:", loss) j += 1 print("Elapsed time training:", datetime.now() - t0) plt.plot(losses) # plot a horizontal line for the bigram loss avg_bigram_loss = np.mean(bigram_losses) print("avg_bigram_loss:", avg_bigram_loss) plt.axhline(y=avg_bigram_loss, color='r', linestyle='-') # plot smoothed losses to reduce variability def smoothed_loss(x, decay=0.99): y = np.zeros(len(x)) last = 0 for t in range(len(x)): z = decay * last + (1 - decay) * x[t] y[t] = z / (1 - decay ** (t + 1)) last = z return y plt.plot(smoothed_loss(losses)) plt.show() # plot W and bigram probs side-by-side # for the most common 200 words plt.subplot(1,2,1) plt.title("Logistic Model") plt.imshow(softmax(W)) plt.subplot(1,2,2) plt.title("Bigram Probs") plt.imshow(bigram_probs) plt.show() ================================================ FILE: nlp_class2/markov.py ================================================ # Course URL: # https://deeplearningcourses.com/c/natural-language-processing-with-deep-learning-in-python # https://udemy.com/natural-language-processing-with-deep-learning-in-python from __future__ import print_function, division from future.utils import iteritems from builtins import range, input # Note: you may need to update your version of future # sudo pip install -U future import numpy as np import os import sys sys.path.append(os.path.abspath('..')) from rnn_class.brown import get_sentences_with_word2idx_limit_vocab, get_sentences_with_word2idx def get_bigram_probs(sentences, V, start_idx, end_idx, smoothing=1): # structure of bigram probability matrix will be: # (last word, current word) --> probability # we will use add-1 smoothing # note: we'll always ignore this from the END token bigram_probs = np.ones((V, V)) * smoothing for sentence in sentences: for i in range(len(sentence)): if i == 0: # beginning word bigram_probs[start_idx, sentence[i]] += 1 else: # middle word bigram_probs[sentence[i-1], sentence[i]] += 1 # if we're at the final word # we update the bigram for last -> current # AND current -> END token if i == len(sentence) - 1: # final word bigram_probs[sentence[i], end_idx] += 1 # normalize the counts along the rows to get probabilities bigram_probs /= bigram_probs.sum(axis=1, keepdims=True) return bigram_probs if __name__ == '__main__': # load in the data # note: sentences are already converted to sequences of word indexes # note: you can limit the vocab size if you run out of memory sentences, word2idx = get_sentences_with_word2idx_limit_vocab(10000) # sentences, word2idx = get_sentences_with_word2idx() # vocab size V = len(word2idx) print("Vocab size:", V) # we will also treat beginning of sentence and end of sentence as bigrams # START -> first word # last word -> END start_idx = word2idx['START'] end_idx = word2idx['END'] # a matrix where: # row = last word # col = current word # value at [row, col] = p(current word | last word) bigram_probs = get_bigram_probs(sentences, V, start_idx, end_idx, smoothing=0.1) # a function to calculate normalized log prob score # for a sentence def get_score(sentence): score = 0 for i in range(len(sentence)): if i == 0: # beginning word score += np.log(bigram_probs[start_idx, sentence[i]]) else: # middle word score += np.log(bigram_probs[sentence[i-1], sentence[i]]) # final word score += np.log(bigram_probs[sentence[-1], end_idx]) # normalize the score return score / (len(sentence) + 1) # a function to map word indexes back to real words idx2word = dict((v, k) for k, v in iteritems(word2idx)) def get_words(sentence): return ' '.join(idx2word[i] for i in sentence) # when we sample a fake sentence, we want to ensure not to sample # start token or end token sample_probs = np.ones(V) sample_probs[start_idx] = 0 sample_probs[end_idx] = 0 sample_probs /= sample_probs.sum() # test our model on real and fake sentences while True: # real sentence real_idx = np.random.choice(len(sentences)) real = sentences[real_idx] # fake sentence fake = np.random.choice(V, size=len(real), p=sample_probs) print("REAL:", get_words(real), "SCORE:", get_score(real)) print("FAKE:", get_words(fake), "SCORE:", get_score(fake)) # input your own sentence custom = input("Enter your own sentence:\n") custom = custom.lower().split() # check that all tokens exist in word2idx (otherwise, we can't get score) bad_sentence = False for token in custom: if token not in word2idx: bad_sentence = True if bad_sentence: print("Sorry, you entered words that are not in the vocabulary") else: # convert sentence into list of indexes custom = [word2idx[token] for token in custom] print("SCORE:", get_score(custom)) cont = input("Continue? [Y/n]") if cont and cont.lower() in ('N', 'n'): break ================================================ FILE: nlp_class2/ner.txt ================================================ @paulwalk O It O 's O the O view O from O where O I O 'm O living O for O two O weeks O . O Empire B-facility State I-facility Building I-facility = O ESB B-facility . O Pretty O bad O storm O here O last O evening O . O From O Green O Newsfeed O : O AHFA B-other extends O deadline O for O Sage B-other Award I-other to O Nov O . O 5 O http://tinyurl.com/24agj38 O Pxleyes B-company Top O 50 O Photography O Contest O Pictures O of O August O 2010 O ... O http://bit.ly/bgCyZ0 O #photography O today O is O my O last O day O at O the O office O . O 4Dbling B-person 's O place O til O monday O , O party O party O party O . O < O 3 O watching O the O VMA B-tvshow pre-show O again O lol O it O was O n't O even O a O good O show O the O first O time O ... O so O bored O ! O 27 O followers O ! O 30 O followers O is O my O goal O for O today O ! O This O is O the O 2nd O hospital O ive O been O in O today O , O but O ive O just O seen O a O doctor O who O was O an O older O version O of O justin O :' O ) O Friday O Night O Eats O http://twitpic.com/2pdvtr O Gotta O dress O up O for O london B-other fashion I-other week I-other and O party O in O style O ! O @Suzie55 O whispering O cause O I O may O have O had O 1 O too O many O vodka O 's O last O night O and O am O a O lil O fragile O , O hold O me O ? O #NFL O Week O 2 O picks O blog O is O up O on O @The_Score O website O ... O http://blogs.thescore.com/nfl/2010/09/17/pizzolaw2/ O I O like O @SouljaBoy O songs O after O a O few O drinks O ... O asked O me O a O question O for O once O , O but O no O ! O You O ask O me O about O fucking O donuts O you O donut O ... O have O a O nice O day O :P O every O year O your O " O bestfriend O " O get O yo O ass O in O trouble O smdh O #doinme O RT O @midgetmegs O : O hate O people O who O write O drunk O status'. O must O be O having O a O great O time O if O your O sat O writing O it O on O facebook B-company ..... O @MrzEndy O tru O tru O I O 'm O leavin O again O on O Tuesday O yo O The O guys O are O cooking O about O a O dozen O pizzas O at O our O house O for O the O tailgate O tonight O . O Nonetheless O it O smells O fresh O in O this O place O . O I O heart O Park(ing B-other ) I-other Day I-other ! O Photo O of O meter O shark O : O http://bit.ly/aQun1b O hows O everyones O day O goin O ? O @Phoebe1_ O and O i O also O loved O the O last O years O eurovision B-tvshow entry O !! O hoppaa O ! O they O were O cool O too O !! O MetroPCS B-company has O the O worst O customer O service O I O 've O experienced O in O months O ( O trying O to O help O someone O order O a O phone O ) O #metropcs O #fail O @xSophieBx O He O has O a O habit O of O tweeting O at O the O same O time O as O you O lol O A O TRUE O friend O walks O in O when O everybody O else O walks O out O ! O Yay O . O @penguin O is O coming O to O see O me O next O week O ... O plotting O my O cooking O now O ! O @_mistercory O *Smiles O up O at O him* O Can O we O just O ... O sit O together O for O a O while O before O round O two O ? O the O tears O may O have O been O and O gone O , O but O the O feeling O still O stay O the O same O . O @BieberEgypt O I O 've O got O some O bad O news O , O Yeah O I O cant O come O to O the O meeting O tomorrow O . O : O S O @abzmedic O I O 'm O missing O autumn O because O of O work O . O :( O I O must O get O into O the O forests O tomorrow O ! O Fellas O Do O n't O just O lick O the O PussyY O , O LOVE O IT O ! O enjoy O it O . O like O u O just O got O married O < O the O preacher O said O u O may O kiss O the O bride O RT O @Sexstrology O : O Pisces B-other tend O to O escape O into O fantasy O and O day O dreams O . O There O they O are O free O . O Cant O wait O for O the O ravens B-sportsteam game O tomorrow O .... O go O ray B-person rice I-person !!!!!!! O I O just O took O " O When O your O mom O makes O you O go O live O with O your O dad O Scooter B-person Braun I-person , O your O life O ..." O and O got O : O Part O 7 O ! O Try O it O : O http://tinyurl.com/27r2pdz O I O miss O being O able O to O run O and O dance O around O all O day O instead O of O having O to O catch O my O breath O every O five O minutes O of O my O life O . O @SnoopDogg O hey O snoop B-person my O wife O Cath O is O 30 O today O , O any O chance O of O a O shout O out O to O her O , O Today O I O got O a O promotion O at O work O , O and O tomorrow O I O 'm O going O home O to O Wisconsin B-geo-loc for O a O few O days O . O So O content O with O life O right O now O . O :) O TWEET O ! O @stjosephs O Empls O of O the O Month O : O Deborah B-person L I-person #Speech O #Pathologist-Childrens O Rehab O and O Patricia B-person M I-person #Referral/#Auth O #Spec-#Womens O #Care O ! O RT O @LilTwist O : O RT O this O if O you O want O me O to O go O back O live O on O Ustream B-company later O tonight O Really O hope O I O can O get O to O @glasgowfilm O for O Winter B-movie 's I-movie Bone I-movie - O need O to O get O on O with O job O applications O tonight O then O ! O Trailer O : O http://bit.ly/bhUlum O RT O @WeSpazForJB O : O http://twitpic.com/2nn4ee O < O ---- O still O the O funniest O photo O . O of O all O time O . O ALL O TIME O . O I O have O eaten O a O large O quantity O of O oranges O this O week O ... O Bonfire O tonite O . O All O are O welcome O , O joe B-person included O @KFSH O totally O ! O I O can O go O a O week O w/o O tv O , O phones O or O a O computer O . O I O get O some O time O to O myself O and O God B-person . O Brings O peace O into O my O life O . O i O want O a O bath O but O do O n't O have O a O bath O , O shut O up O , O sam B-person 's O coming O tomorrow O and O steve B-person and O tanya B-person will O be O round O at O 10am O so O go O away O you O mean O people O What O Do O S.F. B-geo-loc Rabbis O Eat O Before O and O After O Yom B-other Kippur I-other ? O We O Asked O Five O to O Enlighten O Us O ! O via O @SFoodie O http://bit.ly/aQrFUz O Not O only O is O it O #BattlestarGalactica B-tvshow 's O 32nd O Anniversary O , O tonite O is O the O 3rd O season O premiere O of O #StarWars B-tvshow #TheCloneWars I-tvshow !! O just O about O off O work O ! O going O to O alderwood B-geo-loc again O :) O yay O . O hopefully O we O got O cody B-person 's O ipod B-product in O the O mail O today O . O RT O @Slijterijmeisje O : O Kreeg O net O een O bruikbare O tip O van O iemand O die O vorige O week O was O begonnen O met O een O whiskydieet O , O hij O was O nu O al O 3 O dagen O kwijt O Its O stupid O I O hate O getn O a O attitude O from O ppl O when O I O 'm O jus O tryna O be O nice O n O shit O . O WTF O now O I O 'm O mad O so O dnt O talk O to O me O right O now O RT O @DamnTeenQuotes O : O I O remember O when O i O was O your O age O , O spencer B-person from O iCarly B-tvshow was O Crazy B-person Steve I-person , O Carly B-person was O Megan B-person and O Josh B-person was O fat O . O #damnteenquotes O Last O stop O of O the O day O thank O goddddd O (@ O H-E-B O Plus O ) O http://4sq.com/7RDhgd O @itzkeving O im O getting O mine O off O this O monday O :' O ) O #Fancyflow O .. O im O in O the O hair O salon O right O now O .. O smh O .. O Friday O , O its O packed O in O here O RT O @neimanMarcus203 O : O Where O is O @ihavesuperpower O ??? O @vogueglamGIRL O Ah O I O know O ! O She O is O simply O the O best O in O The O Sept O Issue O . O My O boyfriend O 's O aunt O worked O for O Anna B-person Wintor I-person in O NY O . O You O gotta O let O em O lick O it O before O they O stick O it O There O 's O a O lot O of O people O showing O off O their O iPhones B-product on O facebook B-company today O , O so O < O so O is O at O such O a O place O , O it O 's O really O not O that O interesting O ;o O ) O @Infamous__Kid O lol O you O always O got O problems O with O ur O hair O you O said O somethin O last O time O like O they O didnt O cut O it O right O ha O For O code O I O 've O written O since O Sept O ' O 09 O , O the O delay O between O commit O to O SCM O and O running O on O customer O hardware O has O been O about O 10 O days O . O AND O EVERYTHING O YOU O STAND O FOR O , O TURNS O ON O YOU O TO O SPITE O YOU O ? O WHAT O HAPPENS O WHEN O YOU O BECOME O THE O MAIN O SOURCE O OF O HER O PAIN O ? O Yo O kids O ! O Today O 's O ACF B-other Friday I-other Large I-other Group I-other is O at O PITT B-facility University I-facility ! O It O 's O at O Cathedral B-facility of I-facility Learning I-facility G24 I-facility at O 7pm O ! O Be O sure O to O check O it O out O ! O RT O @WALuvsKatStacks O : O Ah O , O i O asked O for O a O follow O back O - O when O i O already O hadd O one O so O they O call O me O thirsty O lmao O ? O Fck O you O #teamkatstacksbitch O ... O :( O RT O @themaine O Who O is O coming O to O the O show O tomorrow O in O Hawaii B-geo-loc ? O chinese O food O .. O stayin O in O for O tonight O but O goin O to O the O archery O range O either O tomorrow O or O sunday O @Strigy O got O mine O in O bbt O aintree B-geo-loc today O . O Played O table O tennis O on O it O in O store O ! O V O impressed O . O Did O you O get O analogue O controller O 2 O ? O RT O @Luq_Combs O : O Funniest O thing O I O heard O this O week O . O Wingo B-person tellin O me O and O wood O . O " O I O 'm O scared O " O #pow#pow#pow@Cowboy_Wingo O Today O 's O cheer O went O from O awful O to O awesome O from O the O moment O I O realized O I O did O not O have O class O today O . O Time B-company Warner I-company Cable I-company Boycotting O Epix B-other Movie I-other Channel I-other Because O It O Did O A O Deal O With O Netflix B-company http://dlvr.it/5RgcL O Fresh O out O the O psych O ward O today O Today O was O awesome O , O I O finally O get O to O relax O :) O My O #twitter O age O is O 458 O days O 0 O hours O 3 O minutes O 49 O seconds O . O Find O out O yours O at O http://twitter.seocoder.org/ O #twittertime O What O is O it O with O people O and O punctuality O ? O I O used O to O be O that O guy O and O honestly O , O it O 's O a O haze O now O . O Just O be O on O time O . O It O 's O not O like O its O a O surprise O . O After O I O pet O a O kitten O on O JFK B-person , O the O owners O informed O me O it O 's O ' O double-pawed O ' O ( O polydactyl) O , O which O is O " O a O form O of O retardation O in O the O animal O kingdom O " O Soulja B-person Boy I-person | O TheDeAndreWay O . O com O - O The O DeAndre O Way O in O stores O Nov O . O 2 O , O 2010 O http://t.co/woAiLlZ O via O @SouljaBoy O About O online O dietician O : O A O thinner O stool O than O usual O can O be O identified O and O removed O before O they O get O are O 2 O weeks O ago O J O ... O http://bit.ly/cYGBdz O RT O @RMBWilliams O : O Here O in O DC B-geo-loc ! O About O to O get O some O rest O ! O Looking O forward O to O tonight O ! O Yes-sir O ! O RT O @twitter O : O #AskEv O your O big O questions O about O the O new O Twitter B-company . O com O today O at O 1pm O PST O . O 'll O be O responding O from O his O own O account O (@ev) O . O Make O ... O I O need O a O syringe O of O anything O you O want O but O which O will O switch O me O off O till O tomorrow O noon O , O anyone O ?? O RT O @high_n_fly O : O #FACT O when O you O are O comfortable O with O yourself O nothing O else O matters O nobody O can O tell O you O about O yourself O #HnF O Lindsay B-person Lohan I-person allegedly O failed O her O drug O test O . O So O not O fetch O . O Quick O , O let O 's O all O put O on O our O shocked O faces O that O 23 O days O of O rehab O did O n't O work O ! O I O remember O when O you O all O were O thiiis O big O , O you O know O ? O I O have O a O strong O hunch O Adam B-person will O be O a O story O on O TMZ B-tvshow tonight O . O Gulp O . O WEDNESDAY O NITES O WE O CRANK O IT O UP O AT O VISIONS B-facility LOUNGE I-facility !!!!! O 18+ O NO O COLLEGE O ID O NEEDED O ! O LADIES O FREE O B4 O 11PM O ! O VISIONS B-facility LOUNGE I-facility ( O 247 O 1ST O AVE O HKY O ) O @angelportugues O LMAO O ! O When O is O tht O one O day O ?: O P O RT O @PLLGirls O : O Episodes O 1-10 O of O Pretty B-tvshow Little I-tvshow Liars I-tvshow will O air O in O the O UK B-geo-loc on O October O 18 O ! O @Loserface_Laura O when O mike B-person lets O me O know O , O I O will O let O you O know O . O I O mean O everyone O might O just O switch O out O a O lot O . O Such O a O shiny O morning O !!! O Love O It O . O Anyways O , O today O will O be O very O busy O ! O @BornThisWayBaby O thankk O yhuu O #monsterlove O u O just O made O my O day O :D O Why O hate O on O somebody O for O doing O well O when O you O can O simply O say O great O job O and O move O on O .. O [Haters O u O can O kill O yourself O ] O cuz O ur O losers O If O you O are O staying O in O Gainesville B-geo-loc , O come O check O out O Costa B-facility Lounge I-facility TONIGHT O ! O Say O you O are O with O salsa B-person caliente I-person and O get O in O ... O http://fb.me/FZVzm8H9 O @jackjohnson O where O can O I O get O the O official O set O list O to O the O show O at O Berkeley B-geo-loc in O Oct O 6th O ?! O Check O this O video O out O -- O Three B-musicartist Days I-musicartist Grace I-musicartist - O Break O ( O Official O Music O Video O ) O [ O HQ O ] O http://t.co/GOwCLQJ O via O @youtube O Haha O I O seen O a O ped O egg O called O a O foot O cheese O grater O today O . O I O found O it O proper O hilarious O xD O friday O night O missions O iguess O ! O Just O got O home O from O school O . O :D O it O 's O friday O guys O !, O @ohy22SD O Hopefully O the O Force O will O be O VERY O strong O with O the O #Padres B-sportsteam tonight O . O We O NEED O a O win O . O #ScoreSomeRuns O " O before O we O start O , O how O old O are O you O ? O HER O : O I O 'm O 15 O .. O old O enough O !........ O #FindTheNearestExit O RT O @ericjohnsalut O " O Good O Morning O ! O Have O a O pleasant O and O happy O day O !" O http://dlvr.it/5Rh4w O when O did O @thecodysimpson O last O tweet O ,? O ;) O @JoshRamsayArmy O Kay O sorry O ... O Well O my O dad O lest O when O i O was O 3 O . O He O has O issues O . O He O held O a O knife O at O mom O . O I O can O STILL O remember O that O ... O =/ O OH O : O Power O nap O . O I O need O it O . O Its O been O a O stressful O week O . O I'm O excited O for O xmas B-other , O haha O . O Goodnight O . O :) O http://bit.ly/9fQGkC O Wow O .. O saw O pictures O of O Robert B-person .... O spent O 2 O 1/2 O years O with O him O . O Broke O up O 4 O months O ago O & O I O miss O when O we O were O perfect O .. O RT O @rockerfuckerak O : O What O 's O done O is O done O , O Just O leave O it O alone O , O and O don't O regret O . O Sometimes O somethings O turn O in-to O dumb O things O . O And O that O 's O when O ... O @N4T4YLOR O he'll O probaly O have O something O completely O different O now O ! O Hope O your O havin O a O good O time O We O are O one O step O closer O to O our O new O kitchens O . O We O chose O a O maker O and O had O official O measurements O taken O today O ! O @lofolulu O RT O @couponprincess O : O Please O vote O for O me O to O be O a O Deal O Pro O in O Chicago B-geo-loc in O November O ! O TY O http://bit.ly/cgmnoX O - O DO O WHAT O @LOFOLULU O SAYS O ! O @zeeDOTi O i O might O join O in O if O I O make O it O home O in O time O . O :) O @DanaTennille O that O 's O wazzup O . O congrats O on O your O win O in O week O 1 O . O @Terrysagirl O love O to O , O it O 's O iffy O though O , O i O don't O wanna O give O up O privacy O for O the O guys O . O But O after O episode O one O , O they O should O be O on O imdb B-other ;) O One O day O the O things O i O say O and O do O is O gonna O get O me O a O nice O slap O .. O Shows O Tonight-Local O Natives B-musicartist @TheMusicBoxLA O , O Primus B-musicartist @ClubNokia O Marina&Diamonds O @ElReyTheatre O , O Mystery B-musicartist Jets I-musicartist @TheTroubadour O ( O via O @TheScenestar O ) O @geek O @borkware O Somehow O my O iPad B-product in O Airplane O mode O with O WiFi O off O has O no O problem O connecting O to O internet O . O Time O for O a O wipe O or O downgrade O . O Just O listened O to O a O 24 O y/o O kid O from O japan B-geo-loc who O won O the O national B-other flat I-other picking I-other championship I-other flipping O amazing O r/l O august O rush O Pxleyes O Top O 50 O Photography O Contest O Pictures O of O August O 2010 O ... O http://bit.ly/bgCyZ0 O #photography O RT O @ravenalexis O Wanna O meet O me O , O @jessejane O , O @rileysteele O , O and O @kayden_kross O ? O Come O to O the O Body B-other Heat I-other signing O at O Hustler B-facility Hollywood I-facility Sep O 23rd O 8-10pm O Aggressive O Kids O With O ADHD O May O Not O Need O Antipsychotic O Meds O http://t.co/JfGm0uH O @KisssMyASS_ O when O ya O birthday O RT O @WakaFlocka1017 O : O SO O WHEN O I O GET O ON O 106 O N O JOKE O AROUND O YALL O TALK O ABOUT O ME O LIKE O A O DOG O SHAWTY O BUT O WHEN O I O BUY O 30,000 O WORTH O SCHOOL O SUPPLY O N O ... O I O won O an O election O today O . O It O means O I O get O to O go O to O head O office O and O have O lots O of O meetings O . O It O shall O be O tough O but O I'm O looking O forward O to O it O . O @TobyHymer O you O whittier O kids O have O been O on O a O public O bus O before O :o O ? O Haha O jk O ! O Ciroc O it O is O dnt O have O a O move O tonite O but O imma O make O 1 O Ima O start O going O to O the O dr O once O a O month O so O I O get O my O moneys O worth O Toy B-movie story I-movie 3 I-movie tonight O on O the O lawn O ! O The O EYE O of O the O Storm O .... O The O Calm O Before O It O ... O waiting O one O extra O day O was O a O STUPID O IDEA O because O now O everything O is O super O expensive O AAAAAHHH O . O x_x O *freakingoutkhsf* O My O dad O is O laughing O because O in O some O translations O Mark B-other 14:30 I-other says O : O "... O Before O the O COCK O crows O ...". O I've O never O been O so O proud O LOL O @DrHubaEvaluator O Not O long O ago O I O responded O to O a O angry O cardiologist O whom O I O have O known O yrs O . O when O he O spit O venom O to O the O newspaper O but O I O did O it O + O Soo O Glad O its O Finally O Friday O ! O Thiss O week O went O to O slow O fo'me:/ O Movies O Tonight O ? O ( O : O Is O it O cricket O season O ? O I've O killed O about O 20 O in O the O laundry O room O in O the O past O week O . O Come O to O " O 6th B-other Biannual I-other 24 I-other Hour I-other Prayer I-other Focus I-other " O Saturday O , O November O 13 O from O 10:00 O am O to O 1:00 O pm O . O Mark O the O Date O !!! O http://fb.me/JyYXPmql O A O nigga O not O even O startin O tonight O , O they O must O be O tryna O get O our O bakc O up O QB O hurt O . O smdh O Apparently O 40 O days O , O 1 O hour O , O 49 O mins O and O 36 O seconds O to O Doha B-geo-loc .... O Having O some O coffee O , O the O only O way O I'll O make O it O through O tonight O . O i O wonder O if O our O football O team O is O gonna O win O their O game O today O ... O I O hate O it O when O i O forget O that O i O wear O glasses&i O go O to O itch O my O eye&i O hit O my O glasses O -_- O . O not O cool O @SQicedragon O How O can O I O get O the O updates O ? O I O created O a O login O for O it O today O , O will O it O let O me O know O automatically O next O time O ? O RT O @GdnPolitics O : O RT O @AlJahom O : O Blair B-person : O " O I'm O gonna O be O the O next O Pope B-person " O Brown B-person : O " O I O won't O stop O you O as O long O as O you O make O sure O it O 's O my O turn O next O " O I'll O go O get O some O #sleep O before O some O #TGS O #news O , O later O everyone O x O ) O ! O An O entire O stack O of O papers O has O disappeared O . O I O think O that O is O a O sign O to O wrap O up O for O the O week O . O Best O day O of O school O :) O haha O i O want O a O popsycle O : O x O @VicapherIsDaddy O ilike O to O call O it O that O too O . O I O dnt O knw O why O people O talk O hella O sht O over O tha O internet O ' O imean O iadmit O ibe O qassin O hoes O when O .. O Ball O Gowns O : O Becoming O the O Belle O of O the O Ball O . O It O 's O easy O to O shine O like O a O star O when O you O know O some O basic O tricks O . O http://bit.ly/d4s9RR O dnce O 2 O day O at O skool O 2 O dau O wuz O kinda O corny O evn O doe O i O dnce O a O lil O bit O ugh O bored O lke O always O whn O is O ya O gurl O neva O nt O trin O 2 O fin O sunthn O 2 O Lmao O . O I O have O a O feeling O Imma O get O yelled O at O tomorrow O . O Big O time O . O XD O Ehh O oh O well O n O dude O .... O one O of O the O new O choir O teacher O that O they O interviewed O ( O we O had O him O all O week O ) O gave O us O DONUTS O !!!! O haha O hes O nice O RT O @diggy_simmons O : O Last O day O ..... O http://twitpic.com/2g9c1e O RT O @Quotealicious O : O Today O , O I O saw O a O guy O driving O a O Pepsi B-company truck O , O drinking O a O Coke B-product . O MLIA O #Quotealicious O After O I O pet O a O kitten O on O JFK B-person , O the O owners O informed O me O it O 's O ' O double-pawed O ' O ( O polydactyl) O , O which O is O " O a O form O of O retardation O in O the O animal O kingdom O " O Oct O 9 O ( O happy O dance O ) O RT O @MiChY_pEaChY O @LiifeSizeDoll O wens O ur O bdayy O boo O ??!! O @joshHnumber1fan O its O okay O then O .. O make O it O when O it O works O :D O @iSUPPORTBIEBER O IM O SORRRRRRRRRRRRRRRRRRRRY O < O /3 O i O have O to O go O , O her O partys O in O a O week O and O im O on O the O dais O ! O @xXLauraJXx O ino O i O did O tweet O him O b4 O n O justthen B-person about O kenny B-person signing O his O book O but O it O was O today O ive O already O missed O it O :( O 800 O miles O to O see O clients O , O 3 O ACC O candidate/commissioner O meetings O , O big O press O release O , O making O it O to O Friday O .. O PRICELESS O ! O This O is O a O battle O song O .. O Brothers O and O sisters O .. O Time O to O go O to O war O ! O HAPPY O B O . O DAY O TORA O *OOOOOOOOO* O ~ O @shoeboxL O Happy O Birthday O ! O s/n O what O did O I O miss O in O Doc B-person Lewis I-person ' O class O today O ? O lol O - O FantasyPro O . O net O offers O a O 100% O Deposit O Match O and O $5 O in O credits O for O each O referral O this O week O only O ! O Must O deposit O by O 1pm O ET O Sunday O Sept O 19th O . O neck O hurts O and O no O time O to O schedule O acupuncture O and O massage O . O RT O @justinbieber O : O RT O @StephLeveridge O @justinbieber O i'm O having O a O bad O day O :( O Just O a O hi O from O you O would O turn O it O around( O : O Love O you O xxxxxxx O = O HI O ! O RT O @mindykaling O : O When O you O wear O your O heart O on O your O sleeve O , O make O sure O your O shirt O is O f'ing O dope O . O We're O on O the B-facility tall I-facility ship I-facility Silva I-facility tonight O . O Still O a O few O tickets O available O . O Rain O is O gone O and O we're O getting O ready O to O set O sail O . O 1030 O PM O we O depart O Hoyy O One O Day O Lindooo O Pero O Un O Touch O De O Aburrimiento O : O S O Playboy B-company - O 10 O October O 2010 O Slovenia B-geo-loc : O Playboy B-company - O 10 O October O 2010 O SloveniaSlovene O | O 138 O pages O | O PDF O | O 39.45 O Mb O http://bit.ly/aJILb4 O RT O @fresh_av8ted O : O Tonight O ! O " O Sex B-movie In I-movie The I-movie City I-movie " O Pt O . O 2 O at O #ZULA O ! O Hosted O By O : O 30+ B-other Beautiful I-other Ladies I-other ! O [ O PLz O RT O ] O RT O @Slijterijmeisje O : O Kreeg O net O een O bruikbare O tip O van O iemand O die O vorige O week O was O begonnen O met O een O whiskydieet O , O hij O was O nu O al O 3 O dagen O kwijt O Accounts O Payable O Coordinator O North B-geo-loc York I-geo-loc - O $37K O ( O 1 O year O Contract)Location O : O Toronto B-geo-loc , O Ontario B-geo-loc , O CANADA B-geo-loc ... O http://bit.ly/aOe78A O #jobs O Spent O all O of O last O night O puking O , O and O all O of O today O fretting O . O Some O people O totally O fail O to O pick O up O the O slack O when O you O are O away O . O If O you O are O in O Belfast B-geo-loc this O weekend O go O to O Botanic B-facility Gdns I-facility , O for O Taste O N O I O , O free O food O drink O face O painting O etc O . O Should O be O good O day O out O . O Sat O & O Sun O overheard O on O subway O ..." O so O when O you O run O , O do O your O elbows O sweat O ?" O But O what O happens O when O karam O turns O right O around O and O bites O you O ? O And O everything O you O stand O for O turns O on O you O despite O you O ? O Getting O this O head O right O for O whateva O I O get O into O tonite O #sittinupunderthedryertweet O Owner O says O its O cool O . O Trying O to O get O info O on O when O they'll O be O back O in O town O now O @AandLClothingCo O Easy O A O tonight O . O WOOOO O Whats O goin O on O ( O in O tally O ) O tonight O twitter B-company !! O going O now O guiseeeee O ... O if O i O dont O see O you O through O the O week O ill O see O you O through O the O window O :) O :) O jus O about O to O get O dressed O and O leave O again O .... O smh O a O very O long O day O @klutzy_girl O @ratherastory O I O wrote O 74,000 O words O in O February O . O RT O @davehodg O : O Pope B-person says O atheists O pick O & O choose O their O morals O . O Correct O . O Today O I O will O be O frowning O on O child O abuse O & O not O having O a O problem O wit O ... O Sunday O can O you O please O hurry O up O and O get O here O already O ?! O I O want O to O see O @nickjonas O @kevinjonas O @joejonas O already O ! O Concert O 's O going O to O be O rad O ! O :P O VMAs B-other . O ( O : O I O control O my O own O life O , O Charles B-person was O never O in O charge O !! O It O 's O def O one O of O THOSE O days O . O Haha O @samanthaaai O Up O super O duper O early O next O week O : O | O FRIDAY O Sept O . O 17 O http://goo.gl/fb/83ib3 O #blackholidays O " O National O forget O the O he O say O she O say O ... O what O do O God B-person say O day O " O @speedy1013 O I O ain't O seen O them O !! O Hmm O maybe O have O to O download O next O time O we O have O a O movie O night O here O . O Zombies O are O badass O ! O Beautiful O day O in O Chicago B-geo-loc ! O Nice O to O get O away O from O the O Florida B-geo-loc heat O . O Oscar B-person 's O new O favorite O pass O time O is O running O as O fast O as O he O can O from O one O end O of O the O house O to O another O yelling O BuhBYYYYYE O RT O @geriatricus O : O May O we O all O reflect O on O the O workings O of O our O hearts O , O and O in O our O acts O , O with O our O Jewish O friends O and O loved O ones O at O the O cusp O o O ... O @iDame2Please O yea O u O c O da O pic O 1st B-other Presbyterian I-other all O day O lol O This O next O question O , O may O take O a O few O moments O to O research O . O BUT O the O answer O IS O on O JavaMonkeys O . O com O . O So O , O we O will O pick O a O ... O http://fb.me/GTRhPujh O Jan B-person Brewer I-person : O Beheadings O ? O http://bit.ly/a2LBMP O @EnticeMeBaby O Well O that O makes O sense O . O When O you O have O real O life O trauma O , O it O can O often O drain O your O energy O & O you O just O withdraw O into O yourself O . O I O do O . O @mekamoe927 O I've O had O one O before O , O but O it O was O a O short O experience O ( O double O entendre O intended) O . O Tonight O , O dinner O with O friends O < O 3 O Man O I O swear O I O bought O 2 O new O outfits O but O it O 's O cold O them O dresses O not O gettin O worn O today O .... O A O Hughie B-person O'Donoghue I-person painting O , O some O great O curvy O pots O and O intricately O illuminated O Persian O books O .. O time O well O spent O in O the B-facility Fitzwilliam I-facility . O Greek B-other Festival I-other at O St B-facility Johns I-facility before O ASPEN B-geo-loc @BeliebinMinajj O OMG O MILLIONS O it O was O on O repeat O yesterday O all O day O till O my O last O lesson O and O then O around O 9pm O i O put O it O back O and O then O its O been O on O If O you O are O staying O in O Gainesville B-geo-loc , O come O check O out O Costa B-facility Lounge I-facility TONIGHT O ! O Say O you O are O with O salsa B-person caliente I-person and O get O in O ... O http://fb.me/FZVzm8H9 O I O think O one O of O the O coolest O things O to O do O would O be O to O hang O out O with O the B-musicartist Rza I-musicartist for O a O day O . O Going O on O a O &#39 O ;d O ate&#39 O ; O with O Whitney B-person tonight O , O :P O . O Haha O . O Day O three O of O St B-other John I-other 's I-other wort I-other tea O for O anxiety O . O So O far O today O I O havent O had O a O panic O attack...we'll O see O if O this O works O ! O is O at O Home-Going O Well O - O I O take O a O Break-Online O Saturday O 4:30 O pm- O 6:00 O pm O ET- O Good O Day- O Good O Night-Good O Week-End O !!! O Ugh O I O DON'T O HAVE O MY O EARPHONES O I O GUESS O I O WON'T O B O TALKING O AND O DRIVING O TODAY O LOL O .... O Excuses O Excuses O Excuses O SMH O Now O off O for O Sushi O before O Sundown O @GhostAdventures O Did O you O know O ur O new O season O starts O tonight O ? O jk O The O best O paranormal O show O #Ghostadventures O ! O There O was O just O a O fire O at O work O . O Today O is O looking O up O . O man O , O why O you O have O to O grill O under O my O AC O unit O . O *turns O it O off* O On O a O happier O note O , O IT'S O BBQ O TIME O . O Katie B-person up O 6-0 O after O 1st O Morning O . O Work O today O . O Hope O I O get O lots O of O money O . O They're O going O to O be O in O a O bad O mood O due O to O #geelong O ... O #MelbourneTomorrow O @jonasbrothers O concert O tomorrow O with O my O crazy O chicaaa O Man O : O Hey O there O , O havent O I O seen O you O some O place O before O ?? O Woman O : O Yes O , O and O thats O why O I O dont O go O there O anymore O @Genuine O Will O I O be O seeing O you O at O #typeamom O next O week O ? O RT O @aBaddBeautyy O : O What O did O you O say O is O happening O at O your O house O tonite O @FlyHighBird O ? O *cough* O -- O > O > O *cough* O @tjmota O I O am O wishing O you O happy O birthday O now O , O because O I O can't O remember O when O your O birthday O really O is O except O that O it O 's O around O now O . O RT O @bieberswag O : O you're O a O belieber O when O you O know O the O word O believer O doesn't O look O right O anymore O . O Wtf O ? O The O library O closes O on O Friday O ? O @skaffbm O love O that O sonngg O !! O are O u O going O to O his O concert O when O he O goes O to O richmond B-geo-loc ?? O @jonronson O But O a O mess O on O one O day O may O not O a O mess O eternally O be O . O Great O #fail O photo O from O @joshbuisch O , O who O gets O my O #FF O vote O for O the O day O for O being O hilarious O ! O http://bit.ly/bA3lUl O Awesome O day O 3 O an O a O half O days O then O I'm O on O HOLIDAY O oh O yes O can't O wait O ;-) O ;-) O ;-) O RT O @CocaineBesos O : O Time O Is O Money O , O Don't O Have O Time O For O That O Other O Shit O * O @MiSS_SOTO O I O think O that O 's O when O I'm O gonna O be O there O Winner O will O be O chosen O Monday O morning O . O Get O your O caption O in O the O funny O photo O caption O contest- O Nadal B-person and O Novak B-person in O the O tub O http://ow.ly/2G3Jh O On O Thanksgiving B-other after O you O done O eating O its O #TimeToGetOut O unless O you O wanna O help O with O the O dishes O Let O 's O get O this O show O on O the O road O ! O May O you O have O an O easy O fast O and O be O inscribed O for O a O good O year O . O Gmar O Chatimah O Tova O ! O #YomKippur O #5771 O Called O my O homie O at O the O door O so O she O could O get O in O Secrets B-facility free O on O Thursday O ..... O #HoodRatsNeedLoveToo O What O is O everyone O watching O this O weekend O ? O Twins B-sportsteam ? O Vikings B-sportsteam ? O anyone O going O to O see O Friday B-tvshow Night I-tvshow Lights I-tvshow ? O RT O @JoeCienkowski O : O When O people O try O to O say O how O mean O and O harsh O God B-person was O , O remind O them O the O true O nature O of O God B-person came O in O the O person O of O Jesus B-person Christ I-person Over O My O Boyfriend O House O Tonite O We O Going O Do O The O Damn O Thing O . O heheRT O @yuuuiee O : O @nissawaww O LOL O RT O MirLes O : O jamanSD O kalo O nyabutin O uban O bokap O dpt O 100 O perak O satu O uban O ... O eh O , O i O tweeted O this O before O ! O Dejavu O :-p O RT O @TeenThings O : O I O love O waking O up O in O the O middle O of O the O night O knowing O i O have O more O time O to O sleep O . O #teenthings O #comedownwithlove O ThAnK O gOd O ItS O fRiDaY O !! O Need O to O put O summer O to O bed O by O Monday O -- O just O in O time O for O the O equinox O . O http://images2.fanpop.com/images/photos/3900000/Edward-100-year-virgin-twilight-series-3937647-510-755.jpg O ADOGUEI O ESSA O IMAGEM O Looking O for O something O to O do O tonight O ? O Samuel B-person Savoirfaire I-person Williams I-person at O Potbelly B-facility Lincoln I-facility Park I-facility in O Chicago B-geo-loc , O IL B-geo-loc http://bit.ly/bKMFgi O Gotta O dress O up O for O london B-other fashion I-other week I-other and O party O in O style O ! O Sooo O I O jus O found O out O that O the O rising O senior O class O of O The O @Oprah O Leadership O Academy O is O comin O to O my O skool O nxt O Saturday O yeeee O !!! O :) O RT O @broniaisdeadly O : O http://www.youtube.com/watch?v=yRyK9doEmHE O < O A O DAY O IN O THE O LIFE O OF O ME O . O Go O comment O and O subscribe O and O I'll O love O you O ... O I O just O took O " O When O your O mom O makes O you O go O live O with O your O dad O Scooter B-person Braun I-person , O your O life O ..." O and O got O : O Part O 5 O ! O Try O it O : O http://tinyurl.com/3a5qeu6 O .. O it O 's O that O time O of O year O when O dreams O of O glassy O waves O turn O to O fluffy O powder O .. O neither O of O which O I O will O get O to O enjoy O because O I O have O a O real O job O . O New O Post O : O Beyonce B-person : O I O Am O Yours O Playlist O Featured O on O VEVO B-company Live O Week O [ O Videos O ] O http://bit.ly/b1mqom O patate O mai O c O long O kan O m O pr O just O ki O se O dise O oui O #ss4 O @camamay O i O thought O u O were O there O when O i O was O coming O ! O Pedersen B-person : O Hangeland B-other won't O be O at O Fulham B-geo-loc for O long O http://bit.ly/aCXCNE O #blackburnrovers O Vintage O sports O cars O capture O the O feeling O of O an O earlier O time O http://bit.ly/aZCBOm O #classic O #cars O The O day O you O left O us O was O a O day O we O lost O a O loved O one O . O But O we O will O never O leave O you O , O Michael B-person . O All O our O love O forever O . O RT O @VanessaSCassie O : O Ok O , O one O more O tweet O before O I O go O : O Fresh O Look O Fridays O post O was O on O an O math O games O site O for O #smartboard O http://bit.ly/b4MXHG O RT O @shanejoneill O : O Another O day O of O allday O and O night O skating O starting O it O out O with O This O vanilla O iced O latte O http://plixi.com/p/45648946 O @MrOH1O O I O been O waiting O on O that O ALL O DAY O Still O dislike O Early O Decision O for O most O kids O , O but O Early O Action O can O be O great O when O used O thoughtfully O . O http://ow.ly/2G1Cn O #admissions O #colleges O 3 O weeks O of O school O and O i'm O already O fed O up O with O it O . O come O back O , O summer O . O Lohan B-person faces O more O jail O after O failed O drug O test O : O Per O the O terms O of O her O probation O in O her O DUI O case O as O laid O out O last O mont O ... O http://bit.ly/cXoiO2 O Twenty O five O after O Seven O @pdparticle O How O do O you O think O your O parents O are O able O to O help O you O with O your O homework O ? O It O 's O because O they O learned O the O same O thing O years O ago O . O overnight O tonight O ... O gheyyyy O Why O is O it O that O when O we O KNOW O the O batteries O in O a O remote O are O dead O , O we O push O the O buttons O harder O ? O RT O @Silje954 O : O AW O C'MON O VOTE O FOR O @justinbieber O as O BEST O NEW O ARTIST O - O > O http://on.mtv.com/9w2tWQ O < O -- O GO O AND O VOTE O , O TIME O IS O RUNNING O OUT O ! O ... O had O a O great O day O courtesy O of O my O morning O that O I O had O talking O to O Rashad B-person ... O :) O No O one O cares O .... O RT O @RapperBigPooh O so O Cudi B-person got O a O problem O with O Wale B-person now O ? O why O ? O when O did O this O happen O ? O is O this O musical O or O personal O ? O RT O @cityofcalgary O : O Free O swimming O and O golf O tomorrow O for O @cbc O Sports B-other Day I-other in O Canada B-geo-loc #yyc O #sportsday O http://ow.ly/2G4sf O today O in O a O nutshell O ; O abusing O blind O people O , O seducing O teachers O , O chinese O takeaways O , O gatt B-person holly I-person , O phil B-person collins I-person , O the O skin O of O a O goblins O nose O , O lush B-company IT'S O FRIDAY O I'M O ( O NOT O ) O IN O LOVEEE O If O you're O a O guy O & O I O keep O hurting O your O " O feelings O " O all O the O time O , O something O ain't O right O . O Chin O up O nigga O DAMN O . O So O unattractive O . O Free O Speech O Friday O underway O . O Anything O on O your O mind O is O fair O game O .. O radio.woai.com O k/w O pags O SWEETY O IM O GONNA O GIVe O YOu O THAT O FUCKING O 50000 O WHEN O I O GET O IT O ! O XD O Amazon O U.K. O Offering O HTC B-product Desire I-product Z I-product Unlocked O October O 11 O : O We O just O got O official O word O of O the O HTC B-product Desire I-product Z I-product earlier O in O Lo O ... O http://bit.ly/bsyz9H O Watching O The B-movie Room I-movie for O like O the O fifth O time O . O It O 's O a O classic O . O Tommy B-person WIseau I-person is O a O genius O . O #theroom O #tommywiseau O @CHRIS_Daughtry O I O knew O it O was O a O joke O ;) O That O 's O why O I O was O ROTFLMAO O when O you O posted O that O ! O ;) O Sorry O some O people O just O can't O take O a O joke O . O :) O RT O @SdotYoung O : O @MRsPRETTyKANDi O If O i O could O be O with O u O for O our O b'days O that O would O be O amazin O ... O < O < O ii O DEF O agree O Boo O .. O we O should O do O our O best O to O @x_yesenia O me O too O ! O i O cant O wait O for O the O new O season O to O start O this O week O ( O : O RT O @lil_jeezy_85 O : O Going O live O tonight O and O 2mmrow O < O what O you O performing O somewhere O ? O @JulyzOwn_23 O TODAY O BESTIE O !!! O He O was O at O my O school O , O and O I O saw O him O on O my O way O to O practice O !! O So O happy O this O hellish O week O is O over O ! O Nothing O that O some O sushi O and O sake O can O fix O ;) O Summer O has O come O and O past O , O the O innocent O can O never O last O . O Wake O me O up O when O September O ends O . O Recording O vocals O tonight O ! O Can't O wait O for O the O song O to O be O done O ! O must O be O a O slow O news O day O for O everybody O 2 O b O talkin O bout O a O known O druggie/acoholic O bi O actress O testin O pos O . O for O caine O Every O seven O years O you O lose O around O half O of O your O friends O , O and O replace O them O with O new O friends O . O Maybe O it O 's O compulsary O .. O when O you're O over O the O age O of O 30 O and O an O unemployed O wrestler O you O have O to O act O like O a O total O tool O . O http://fb.me/GpyFjTgp O Jessum B-person 's O Question O of O teh O Day O : O who O 's O you O favorite O sidekick O ? O Yesterday O 's O results O : O http://yfrog.com/mmeoxj O @zedohhee O hehehe-ahh O I O love O the O trolling O XD O I'm O sure O you O can O spell O propah O guud O ( O when O you O try O really O hard O ) O :) O inspired O yet O again O to O write O .. O cant O wait O to O share O my O testimony O .. O cant O wait O for O the O day O when O im O taken O underwater O brought O back O up O .. O BORN O AGAIN O #JenniferAniston O quote O of O the O day O : O I O don't O have O a O religio O n.I O believe O in O a O Go O d.I O don't O know O what O it O looks O like O ( O cont O ) O http://tl.gd/63av0t O wore O socks O for O second O day O in O a O row O ... O RIP O Summer O RT O @ZodiacFacts O : O #ZodiacFacts O As O a O #Pisces O you O may O find O your O thoughts O racing O so O fast O you O can't O keep O up O with O them O . O Today O 's O is O @Elyse_D O 's O last O day O before O she O goes O on O Maternity O leave O . O Please O take O a O moment O to O wish O her O well O . O We'll O miss O you O !!! O RT O @KaspervanKooten O Naast O de O theatertour O die O komende O week O weer O aanvangt O ziet O u O mijn O pan O ook O op O tv O : O ma O . O Co-ass O ., O di O . O Opium O en O do O . O Koffi O ... O @GaryLuvin O still O hot O ... O But O excited O about O tomorrow O going O to O see O Lady B-person Gaga I-person :) O @till1025 O how O did O you O miss O that O ?! O I've O had O it O set O to O record O for O a O week O . O I'll O save O it O for O when O you O come O to O cali O So O much O work O yet O to O do O before O heading O to O Grand B-other Masquerade I-other next O week O . O RT O @CarolynsOpinion O : O Daytime O 's O oldest O soap O went O off O the O air O today O after O 54 O years O , O so O the O WORLD O stopped O turning O for O 3 O million O viewers O . O Sh O ... O @virtualpatti O - O Well O there O were O 4 O interviews O ( O diff O gov O jobs O ) O i O got O the O 1 O i O wanted O . O Glad O i O found O out O today O , O it O would O be O a O long O weekend O if O not O On O the O bus O . O Full O of O people O - O thank O goodness O it O 's O Friday O !! O @ClaireMcD22 O I O honestly O don't O know O how O she O does O it O , O she O works O from O 8am O till O 9pm O at O least O 4 O days O a O week O . O She O 's O off O mon/tues O , O Thanks O and O I O will O RT O @InnerGizerBunni O @kizfoprez_TR O Happy O Berlated O Birthday O ! O I O hope O u O have O fun O & O live O it O up O tonight O .. O Enjoy O & O b O safe O ! O @JennyVeronica92 O thats O whassup O . O when O u O posed O to O be O comin O out O here O Our O Favorite O YouTube B-company Videos O This O Week O : O The O Drama O Edition O : O Had O any O epic O meltdowns O this O week O ? O You O know O , O of O the O cryin O ... O http://bit.ly/cuy0yt O Wtf O do O i O have O a O stupid O 3hr O shift O tonight O !! O I O wanna O go O out O and O have O fun O :( O Oh O well O time O to O watch O some O Jersey B-tvshow Shore I-tvshow haha O the O current O library O plan O is O to O go O Monday O morning O . O first O books O on O shelves O , O then O holds O , O then O check O bookstore O on O way O home O for O The B-product Replacement I-product . O ASPCA O PETA O HSUS O .. O Animal O rescue O or O BIG O BUSINESS O ? O http://tl.gd/63aeok O CK O OUT O THIS O SERIES O OF O LINKS O BEFORE O YOU O DONATE O Today O is O a O logistical O nightmare O ! O Committed O to O a O b'day O party O attendance O but O discover O I O have O 2 O kids O , O no O car O & O only O plastic O money O . O #amplotting O About O online O dietician O : O A O thinner O stool O than O usual O can O be O identified O and O removed O before O they O get O are O 2 O weeks O ago O J O ... O http://bit.ly/cYGBdz O @AppleJoey_ O Buut O . O Ill O have O to O get O on O my O phone O . O Im O going O to O some O thing O with O my O friends O tonight O . O D O : O Ha O ! O RT O @julie_cook O : O thanks O port B-company city I-company java I-company for O the O caffeine O . O not O so O sure O my O coworkers O will O be O as O pleased O when O i O start O shooting O off O emails O at O RT O @GreatestQuotes O : O " O When O everything O seems O to O be O going O against O you O , O remember O that O the O airplane O takes O off O against O the O wind O , O not O with O it O ." O ... O RT O @pinkbikeralph O : O Working O at O BAR B-facility tonight O . O 1309 O sansom O st O . O More O secrets O than O Copa O . O Shhhhh O ... O @dolemite4 O haha O . O I O might O be O comin O into O town O next O week O ! O YOU O ! O @STARLIGHTWALTZ O ! O Do O you O want O to O go O to O art O showing O with O me O ? O At O 7 O ? O Tomorrow O ? O Please O ? O < O 3 O you O Fuckin O FRIDAY O NIGHT O , O Tweople O ( O RIDE O IT) O ! O http://www.youtube.com/watch?v=A_Zi-YSW3aQ O The O Cheap O and O Choosy O : O Play O All O Day O Fitted O Diaper O Review O & O $15 O EcoMom O Gif O ... O http://t.co/OH9z9zq O via O @blogger O Bonfire O tonite O . O All O are O welcome O , O joe B-person included O total O 9 O for O Clark B-person Duke I-person RT O @Naathan_B O : O Just O watched O hot O tub O time O machine O . O Funny O film O ! O Quite O enjoyable O ! O Hmm O 7.5 O /10 O Want O to O see O the O view O from O our O floor O of O yesterday O 's O police O car O mayhem O during O the O shooting O incident O ? O http://wp.me/11Azj O @dragonjones O couldn't O help O but O notice O you O look O uncomfortable O when O you O walk O . O I O am O guessing O you O have O a O back O problem O . O Happy O birfday O to O the O only O p-i-m-p O I O know O ... O @amcdavid O ! O We're O getting O " O white O boy O wasted O " O tonight O ! O RT O @USArmy O : O #USArmy O recognizes O today O as O National B-other POW/MIA I-other Recognition I-other Day I-other . O Visit O http://www.dtic.mil/dpmo/pow_day/ O to O read O the O Presidenta O ... O Anybody O who O waits O until O AFTER O the O last O item O is O scanned O and O the O total O is O calculated O to O get O out O a O checkbook O or O d O ... O http://tinyurl.com/2c4wqjv O Win O $100 O Visa B-company card O ! O http://www.alimartell.com/index.php/2010/09/14/its-the-most-wonderful-time-of-the-year-and-im-about-to-make-it-100-better O @TempestBeauty O Ive O heard O of O that O . O Hadn't O heard O it O called O that O before O . O I O considered O it O but O my O hair O is O so O oily O , O I O think O I O would O look O dirty O . O :) O Is O Joaquin B-person Phoenix I-person Our O Modern O Day O Andy B-person Kaufman I-person ?: O ... O the O bizarre O events O leading O up O to O this O moment O , O the O movie O could O ... O http://bit.ly/aUZ2on O DUDE O I O CAN O WATCH O JENNIFERS B-movie BODY I-movie :O O I O KNOW O WHAT O IMMA O BE O DOING O ALL O WEEK O xD O I O LOVE O THESE O MOVIES O ! O Nice O and O easy O as O I O take O my O time O . O Uhmm O . O Looks O like O I'm O not O leaving O my O house O tonight O ! O RT O @InspiredRobin O : O We O have O so O much O time O and O so O little O to O do O . O Strike O that O , O reverse O it O . O -Roald B-person Dahl I-person RT O @Sexstrology O : O Pisces O tend O to O escape O into O fantasy O and O day O dreams O . O There O they O are O free O . O < O yesss O #wavesindexfingerintheair O #AGREED O ! O ^10thpower O RT O @JAMESINREHAB O : O @4094jij05b O it O 's O in O England B-geo-loc . O Will O tweet O tomorrow O if O they O let O me O ... O .. O @Davman91 O Thinks O I'm O Funny O When O I O Tell O The O Punch O Line O Wrong O ... O ;) O whats O the O point O in O being O on O the O computer O if O i O can O just O be O mobile O all O the O time O ? O exactly O . O @Sophieeander O will O .. O Dont O go O !! O Cause O its O your O last O year O i O know O the O school O suck O but O you O should O go O to O school O ^^ O " O HK O can O wait O for O u O .. O !! O @bowlerhatlover O Been O trying O to O find O a O copy O of O " O Nostalgia B-product " O for O years O . O http://hollisframpton.org.uk/ O I O love O listening O to O lies O when O i O know O the O truth O RT O @CoreyTaylorRock O : O Chinese O Proverb O : O one O must O first O look O foolish O before O he O looks O brilliant O . O Apparently O #turningpoint O has O a O hash-tag O . O And O @RoundhouseLDN O has O a O Twitter B-company account O . O So O with O the O formalities O over O ... O see O you O tomorrow O . O photographing O the O midway O tonight O .. O should O be O fun O .. O lots O of O fun O lights O !! O makes O for O great O photos O .. O like O this O one O .. O http://twitpic.com/2pdvsw O Just O casually O stalking O Cheryl B-person AND O Dermot B-person tomorrow O .... O NO O BIGGIE O @Robo_Robb O I O see O you O #FF O ' O ing O me O . O :O O ( O Also O Matt B-person will O be O saying O thanks O when O he O 's O at O home O :P O ) O RT O @NROcorner O : O Why O Constitution B-other Day I-other Matters O : O 5 O Things O You O Need O To O Do O Before O Contacting O A O Professional O Photographer O http://goo.gl/fb/I7rBo O #inourhead O @DEVEY2G O no O I O liked O the O one O u O had O had O that O time O but O I'm O sure O I O cood O make O one O wit O my O bro O possibly O Alright O yall O im O done O add O me O on O bbm O again O , O this O the O last O time O pin O : O 22AF9362 O RT O @Slijterijmeisje O : O Kreeg O net O een O bruikbare O tip O van O iemand O die O vorige O week O was O begonnen O met O een O whiskydieet O , O hij O was O nu O al O 3 O dagen O kwijt O It O is O the O 80 O ' O weekend O ! O I O started O today O with O some O wonderful O videos O ; O I'll O be O sharing O with O all O of O you O more O wonderful O ... O http://fb.me/G3Nzs97h O @KatiesPizza O On O the O menu O at O #playwithyourfood O this O Sunday O : O hot O , O fresh O ricotta O donuts O with O blackberries O and O honey O . O http://tiny.cc/6dshg O Wat O a O day O today O . O But O oh O well O i O love O her O *Danielle O ily* O I O just O took O " O When O your O mom O makes O you O go O live O with O your O dad O Scooter B-person Braun I-person , O your O life O turns O ..." O and O got O : O Part O 2 O ! O Try O it O : O http://bit.ly/clxrMy O We O are O tied O as O the O 5th O band O to O compete O in O South B-company 107 I-company 's O Battle O of O the O Bands O next O Friday O for O the O spot O to O open O for O ... O http://fb.me/IxhGnUhs O John B-person Acuff I-person joined O @daveramseys O team O ! O sweet O ! O I O hope O Dave B-person gives O him O his O own O show O one O day O , O but O i'm O excited O for O JA B-person and O wish O him O all O the O best O @sporty191 O MUAH O !!!!! O Hope O you O had O a O gr8 O day O today O ! O XO O Had O a O Helluva O Schedule O Yesterday O , O Today O and O Tomorrow O .. O Finally O get O to O rest O on O Sunday O .. O Unless O there O 's O work O to O do O out O there O o_O O #ImJustSaying O RT O @OMGwhatateen O : O RT O if O you O are O happy O it O 's O friday O . O #OMGwhatateen O I O hate O it O when O I'm O tired O at O about O 8 O but O by O 11 O I O seem O to O be O awake O . O - O . O - O RT O @ZodiacFacts O : O #ZodiacFacts O As O a O #Cancer O you O may O find O that O your O energy O is O just O right O for O something O really O big O . O Dues O can O still O be O paid O on O monday O ! O Better O get O at O it O @its_lizzyN O @katzamora O @cindyyobitch_ O @6ixty_nine O !! O ANW O : O Update O : O TMZ B-company Reporting O Lindsay B-person Lohan I-person Just O Failed O Her O Drug O Test O : O We O just O congratulated O Lindsay B-person an O hour O ago O on O h O ... O http://bit.ly/a2lhpa O Resources O - O Tweets O of O the O Week O ( O 9.13 O . O 10 O - O 9.17 O . O 10) O : O This O weeks O Tweets O of O the O Week O has O some O cool O inspiration O , O coupl O ... O http://bit.ly/95X8G5 O Hope O to O see O you O tonight O at O Morgan B-facility Le I-facility Fays I-facility !! O Great O time O :) O #lindsaylohan O US B-geo-loc - O Lindsay B-person Lohan I-person : O Failed O Drug O Test O Report O Is O " O Nuts O ": O After O it O 's O reported O that O she O flunked O a O drug O ... O http://dlvr.it/5RfK7 O RT O @LilTwist O : O RT O this O if O you O want O me O to O go O back O live O on O Ustream B-company later O tonight O says O it O 's O Saturday O ! O I'm O wearing O my O Weekend O ! O :) O Football O game O tonight O !!!!! O V-I-K-I-N-G-S B-sportsteam !!!!!!! O Is O sad O that O she O 's O missing O Cowboy B-musicartist Mouth I-musicartist tonight O :( O @AishaHanii2 O @starflower1204 O Ahhh O okay O . O I've O never O ordered O a O CD O before O so O I O have O NO O idea O . O just O say O I O NEED O IT O TO O GET O THROUGH O THE O WEEKEND O !! O xD O Political O Wire O : O Bonus O Quote O of O the O Day O http://bit.ly/9UiOqY O My O all O time O favourite O socks O are O the O ones O I O knitted O myself O . O So O comfy O . O Must O knit O some O more O . O Damn O all O mi O niggas O havin O babies O on O meh O . O Nope O nope O ! O I O not O da O step O mommy O . O Time O for O a O new O team O . O I'm O talkin O #allstarlineup O @mychiller O Must O be O before O the O coffee O right O @erichthewebguy O RT O @Queen_UK O : O Pope B-person insists O he O left O his O cigarettes O at O Holyroodhouse B-facility . O One O 's O asked O the O staff O to O have O a O look O around O . O The O DoE B-other may O well O have O p O ... O what O to O do O today O ? O i O dunno O why O people O still O type O '' O sad O face''.....''smiley O face''...''raised O eyebrow''...when O its O alot O more O easier O to O make O it O @JohnJames_BBuk O look O at O this O picture O of O you O when O your O like O 14 O ... O on O Twitpic O http://t.co/hDq4cXW O via O @AddThis O Drycleaners O then O shape O up O . O Get O fresh O then O off O to O d O red O carrots O tonight O . O Holla O at O ur O boi O i O was O surprised O when O she O sent O me O a O request O on O facebook B-company ... O we O hadnt O taLked O in O a O few O years O :( O does O any O one O kno O the O right O address O to O the O walmart B-company that O @Treysongz O is O suppose O to O be O at O tomorrow O in O maryland B-geo-loc ?? O Now O time O too O do O my O hair O ! O New O look O on O deck O ! O RT O @robynsuave O shout O out O @OhNoIts_JoJo O #teamlesbian O #teamstud O ayyy O < O -- O all O day O everyday O fam O !!!! O 'I O just O got O confirmed O that O me O and O Jorge B-person will O be O playing O 2 O songs O from O " O The B-other Devils I-other Art I-other " O at O Words B-other and I-other Wine I-other September O ... O http://fb.me/AyezVfH3' O @modernpaper O @alamodestuff O what O a O fabulous O photo O of O you O two O ! O it O looks O like O you O were O fast O friends O , O and O had O an O amazing O time O . O Playboy B-company - O 10 O October O 2010 O Slovenia B-geo-loc : O Playboy B-company - O 10 O October O 2010 O SloveniaSlovene O | O 138 O pages O | O PDF O | O 39.45 O Mb O http://bit.ly/aJILb4 O @themayorpete O I O split O my O time O now O btwn O SF B-geo-loc and O San B-geo-loc Mateo I-geo-loc Time O magazine O wrote O an O article O saying O the O rumor O touch O is O for O fags O dear O youtube B-company why O does O it O take O so O long O to O upload O a O video O gggrrrrr O @welovepop O much O prefer O a O GA B-geo-loc announcement O that O they O are O recording O soon O ..... O it O is O really O a O bad O time O for O GA B-geo-loc fans O at O the O moment O .... O do O not O like O .. O ASPCA O PETA O HSUS O .. O Animal O rescue O or O BIG O BUSINESS O ? O http://tl.gd/63aeok O CK O OUT O THIS O SERIES O OF O LINKS O BEFORE O YOU O DONATE O Hey O Listeners O we're O recording O Sunday O for O episode O 28 O & O it O 's O a O retrospective O on O the O Halo B-product franchise O along O with O an O ass O load O of O other O goodness O ! O If O I O had O one O wish O it O would O be O to O drive O bugatti B-product V I-product for O a O day O ! O Pretty O pls O fix O it O for O me O jim O ! O Xxx O the O group O Maunalua B-musicartist will O be O playing O tomorrow O @wfmkahala O at O Noon O ! O Anyone O know O what O days/times O that O you O can O smoke O hookah O at O the O mix(cma O center O ) O in O corbin B-geo-loc . O Willow B-person Smith I-person is O not O 9 O years O old O .... O she O got O that O Lil O Mama/ O Benjamin B-person Button I-person disease O ( O via O POPSUGAR O ) O Sarah B-person Jessica I-person Parker I-person and O Gwen B-person Stefani I-person Wrap O Up O Another O Successful O New B-other York I-other Fashion I-other Week I-other : O New B-geo-loc York I-geo-loc Fa O ... O http://bit.ly/aMaJNB O my O friend O and O me O were O filmed O and O interviewed O about O sex O in O cologne O :D O gosh O thats O so O crazy O .. O hope O they O show O it O on O tv O on O monday O :P O #RTLextra O It O 's O supposed O to O rain O in O The B-geo-loc Bay I-geo-loc on O Sunday O ... O well O , O weather.com O says O " O showers O ". O Whatever O , O same O thing O . O Sony/Bud O Light O 3D O tailgate O parties O on O Saturday O - O Clemson B-geo-loc party O at O http://bit.ly/cds8Pd O ; O Auburn B-geo-loc party O at O http://bit.ly/9X1KP8 O #sony3d O @espn O about O to O get O dress O hangin O wit O the O big O sis O Abby B-person tonite O @2kjdream O good O morning O ! O And O hope O today O you O will O enjoy O your O day~ O :D O RT O @iMakeChicksCry O : O But O when O ur O not O actually O alone O then O forever O doesn't O seem O so O bad O ... O RT O @KhadijahC O RT O @SuchaMFGentlemn O wonder O when O @sexinini O is O gon O lt O me O put O the O 8==== O =D O on O her O ? O < O lmfao O wooooooow O ( O nini B-person knws O wsup O ha O u O next O lol O ) O Niiiiice O . O http://www.pbs.org/wgbh/pages/frontline/ O Watched O The B-tvshow Persuaders I-tvshow in O class O today O , O super O stupid O example O but O super O good O . O @Ravenwithclaws O last O time O we O spoke O you O were O very O ... O Opinionated O ? O Lol O :) O and O im O good O too O , O sorry O i O have O not O been O on O : O -S O @TheWon_A O Crooked B-musicartist is O in O town O October O 7th O !! O Business B-company Alliance I-company will O save O you O time O and O money O and O most O importantly O , O match O you O with O the O right O franchise O . O check O out O at O http://ow.ly/2kt2M O no O matter O how O long O I'll O wait O @KimberleyW1983 O Thanks O , O c4 O is O going O on O ! O Lol O . O DVD O Out O 25th O October O ! O Whoo O who O ready O for O some O Seahawk B-sportsteam football O ? O Can't O wait O to O watch O my O dirtbags O on O sunday O . O will O go O at O my O B-day O party O . O Fucking O can't O believe O it O ! O May O everyone O who O is O celebrating O Yom B-other Kippur I-other have O an O easy O and O meaningful O fast O ! O #notaboutbirthcontrol O only O on O the O #LateLate O can O i O find O respect O for O #desbishop O , O he O 's O actually O pretty O funny O , O never O liked O him O before O this O point O . O @borneobaby O Me O neither O . O I O will O think O of O witty O replies O a O week O later O ! O My O mind O will O be O a O complete O blank O I O know O it O ! O RT O @claywsyx6 O : O THE O FOOTBALL O FEVER O : O Ohio B-geo-loc head O coach O Frank B-person Solich I-person says O Ohio B-sportsteam State I-sportsteam knows O they O have O a O special O team O and O season O underway O . O Long O ... O Always O wondered O which O species O had O the O highest O biomass O RT O @NatGeoSociety O : O Friday O Fact O : O The O world O 's O termites O outweigh O the O world O 's O people O < O 3 O it O RT O @Djcheapshot O : O Tonite O I O m O DJing O at O Mai B-facility Tai I-facility in O Long B-geo-loc Beach I-geo-loc . O I'm O considering O wearing O MY O TIE O !! O Get O it O ? O My O tie O = O Mai O Tai O ? O No O ? O Sorry O . O Bye O . O French O IV O embarrassed O me O today O .. O never O again O will O I O go O into O a O battle O unprepared O . O @BPadalecki1990 O Do O you O have O any O pic O 's O from O your O wedding O day O hun O I O would O like O to O see O them O Looks O like O we O will O be O living O in O the O studio O for O the O next O couple O of O months O Happy O Day O !!!.... O :) O @yanxfan24 O We O should O win O but O I O said O that O on O Tuesday O . O These O games O are O normally O pretty O poor O though O . O Probably O 0-0 O lol O You'll O come O back O when O they O call O you O ... O No O need O to O say O goodbye O . O @lauramcblain94_ O lololololol O tonight O was O worse O than O stressful O ! O xo O #FF O THE O FUTURE O OF O THE O @WWE O @JTG1284 O HE O #SofaKingFlyy O HE O ONE O OF O MY O ALL O TIME O FAVS O .... O #ReallyDoe O @DavidHayemaker O Liked O your O spot O on O Radio B-other 1 I-other the O other O day O . O RT O @ContrarianDave O : O Here O 's O my O story O on O today O 's O Forensic O Science O Comm O . O meeting O , O where O Willingham B-geo-loc probe O took O a O remarkable O turn O . O http://bi O ... O RT O @MATTHARDYBRAND O : O Thx O to O everyone O who O wished O my O Dad O , O " O The O Legend O " O a O Happy O 88th O B-Day O just O a O couple O days O ago O .. O He O 's O my O inspiration O & O me O ... O @imRockey O I O will O let O you O know O when O you O can O take O another O visit O ; O today O was O a O little O quiet O . O @tonygarcha O Hurray O ! O Enjoy O your O time O in O Harrison B-geo-loc . O Off O work O I O guess O ? O Told O to O leave O an O hour O and O half O before O I O was O scheduled O to O . O My O paycheck O is O going O to O be O weak O . O Not O happy O . O Yup O , O it O is O :) O | O RT O @iSuboohi O : O - O When O someone/anyone O makes O you O feel O special O , O it O 's O sheer O bliss O :) O RT O @Quotealicious O : O When O ever O i O see O a O cute O love O story O movie O , O It O 's O always O you O that O comes O into O my O mind O #Quotealicious O I O had O a O wonderful O day O today O and O i O hope O u O all O did O , O i O wish O u O all O good O night O and O sweet O dreams O xoxoxo O Theres O nothing O funny O about O testicles O Cooper B-person as O you O will O find O out O in O my O office O tomorrow O . O Lmfao O . O Welcome O Saturday O @darthsunshine O Wheeee O !! O Okay O - O we O could O get O down O there O by O like O 9:30 O if O we O want O some O shopping O time O and O lunch O before O class O . O @CaMeaux O every O day O I O see O my O dream O every O day O I O see O my O dream O every O day O I O see O my O dream O every O day O I O see O my O dream O every O day O I O see O my O dream O @_paaaul10 O - O haha O six O ? O ; O o O woaahh O lol O , O well O you O can O go O buy O some O when O you O get O outta O work O x O D O Foooooootball O game O toooonight O . O then O auburn B-geo-loc game O tomorrow O !!!! O war O damn O eagle O !!! O RT O @CHRIS_Daughtry O : O We're O playing O a O show O with O KISS B-musicartist tomorrow O . O Can't O say O I O saw O that O coming O 5 O years O ago O ... O FUUCCCKKKK O . O I O WAS O SO O FUCKING O READY O FOR O MY O GOD O DAMN O ALONE O TIME O , O AND O IT O TURNS O OUT O FUCKING O MADI B-person HAS O AN O ILLNESS O AND O IS O HOME O W/DAD O . O GOD O . O DAMN O . O What O it O is O twiggas O it O 's O Friday O in O this O bissh O !!! O What O 's O y'all O niggas O plans O ???? O Betta O be O at O Elements B-facility tonight O BOGO O drinks O all O night O !! O Nuff O Said O @PaulJones3 O delicioso O . O hows O your O week O ? O Your O paycheck O may O shrink O next O year O , O at O least O temporarily O , O if O a O vote O on O extending O the O Bush B-person tax O cuts O slips O past O November O . O http://bit.ly/9y8fdS O 'Was O going O to O stay O until O Sunday O but O my O " O mother O " O has O already O made O me O mad O furthermore O hair O appointment O tomrrw O and O back O to O Kent B-geo-loc !' O That O 's O college O tuition O . O That O 's O two O average O cars O . O That O 's O a O year O 's O worth O of O someone O 's O salary O . O That O 's O insaneeee O . O @lukeymoore O you O not O playing O tomorrow O ? O Dear O me O , O is O it O just O me O and O pete B-person , O is O he O trying O to O rape O me O RT O @askyfullofstars O : O AstronomersWithoutBorders B-other has O a O list O of O live O #InOMN10 O broadcasters O for O online O Moon O viewing O Sept O 18 O http://is.gd/ffDFE O @poscas O I O said O to O him O ' O the O impression O I O had O of O early O 80s O NYC B-geo-loc was O if O you O went O to O Central B-geo-loc Park I-geo-loc after O dark O you'd O be O lucky O to O come O out O alive'... O @KatherineRamos O it O 's O cool O also O I'm O not O sure O . O If O I O were O you O I'd O renew O right O away O before O but O if O not O I'd O still O try O . O Best O of O luck O @TomCruise O I'm O from O Brazil B-geo-loc .... O and O I O love O you O . O You're O my O favorite O actor O ! O Knight B-movie and I-movie Day I-movie is O so O cool O ... O My O dream O is O to O meet O you O ! O made O sure O im O off O next O friday O What O fuckin O luck O walk O in O to O pop-eyes O the O the O fuckin O line O is O full O of O I O don't O know O what O fuc O I O want O people O . O By O the O time O I'm O up O I O have O to O wait O 1 O @franchiseking O Do O you O have O time O to O offer O advice O to O this O franchise O ? O http://ow.ly/2G4MN O Good B-facility Day I-facility Sunshine I-facility http://bit.ly/cK4PB8 O is O available O to O rent O off O season O ! O Great O surfing O , O fishing O , O hot-tubbing O ! O I O < O 3 O fall O in O Rodanthe B-geo-loc @OBXcom O tea O time O . O Whats O the O plan O tonight O watching O the O VMAs B-other Eminem B-person is O BeAsT O and O is O smexy O !!; O )And O Chelsea B-person Handler I-person is O hilarious O ! O Finally O got O a O boyfren O he O gave O me O the O cutest O thing O today O RT O @ZodiacFacts O : O #ZodiacFacts O As O a O #Gemini O your O energy O is O best O spent O delegating O responsibilities O and O being O there O if O or O when O people O need O you O . O @Lissa_Lise O they're O looking O pretty O good O . O i O dnt O think O ima O play O tho O . O I'm O playing O on O a O co O rec O team O too O . O I O won't O have O time O to O breathe O . O Don B-person Mattingly I-person will O replace O Joe B-person Torre I-person as O LA B-sportsteam Dodgers I-sportsteam manager O after O this O season O You O remeber O we O were O sitting O there O by O the O water O you O put O your O arm O around O me O for O the O first O time O you O made O a O rebel O careless O mans O careful O daughter O @FATJEW O : O I O watch O porn O movies O on O rewind O because O I O love O when O sex O ends O and O the O girl O immediately O puts O on O her O clothes O ( O cont O ) O http://tl.gd/63asgi O Takin O ' O ur O hapiness O before O mine O @OhSoJosie O shit O get O me O tight O when O I O go O to O the O beach O n O everybody O in O the O sand O -_- O I O remember O the O days O in O school O when O I O lost/forgot O my O lunch O tickets O . O #PureTragedy O You O know O , O the O bright O yellow/dark O blue O ones O . O It O 's O official O !!! O Vegas B-geo-loc for O the O weekend O ! O Starting O tonight O !! O #nohands O RT O @thirdday O : O RT O @macpowell O : O Just O landed O in O DC B-geo-loc . O Is O anybody O coming O to O the O Awakening B-other Festival I-other tonight O ? O I'm O thinking O about O rocking O it O . O RT O @KdotDeeZy O : O Yes O we O do O !!! O Is O part O 2 O in O the O making O ? O RT O @GOTEMSAYNBABY O remember O when O i O was O on O twitter B-company violating O some O girl O in O the O summer O ? O @sardesairajdeep O I O can O see O three O kinds O of O reactions O after O Ayodhya B-person verdict O . O We O were O all O enjoying O a O glass O of O wine O in O the O office O when O a O fudge O delivery O showed O up O . O I O love O my O job O . O And O I O love O Fridays O . O @briancag O "' O Brian B-person .' O Isn't O available O right O now O ..." O hahahaha O that O 's O what O I O hear O when O I O call O your O saynow O . O A O compliment O from O a O stranger O on O my O outfit O as O I O walked O in O to O work O = O best O way O to O start O the O day O ! O Chicago B-sportsteam Blackhawks I-sportsteam general O manager O Stan B-person Bowman I-person said O Cristobal B-person Huet I-person will O be O gone O in O two O weeks O ... O http://fan.ac/Ydv O #NHL O @justinbieber O i O just O wanna O say O you O make O me O smile O everyday O :) O thanks O for O smiling O because O when O u O smile O i O smile O ! O :) O Oh O beautiful O day O ! O What O 's O everyone O doing O tonight O ! O :] O Very O busy O weekend O and O TWO O articles O due O for O publishing O on O Monday O morning O . O As O such O , O I'm O afraid O the O Jup B-other Force I-other PvP I-other event O is O delayed O . O ( O more O ) O What O do O a O prostitute O and O a O bungee O jump O have O in O common O ? O they O cost O the O same O , O last O as O long O , O and O if O the O rubber O breaks O you're O screwed O . O Kristen B-person is O MY O LIFE O . O She O made O me O who O i O am O today O , O I O was O a O fucker O before O her O , O she O fixed O me O . O And O so O did O Robert B-person . O Feeling O really O good O after O great O week O in O our O SF B-geo-loc and O LA B-geo-loc offices O . O Glad O to O kick O back O on O AMerican B-company flight O back O to O NYC B-geo-loc Opted O for O pants O over O shorts O today O ... O summer O is O officially O over O . O Bring O on O the O pumpkin O beers O ! O RT O @LightCMS O : O Day O 6 O : O Win O 1 O of O 10 O iPads O from O @LightCMS O - O RT O to O enter O or O read O more O http://speaklight.com/iPad O Ah O crap O . O No O #MCRchat O tonight O for O me O , O I O guess O : O | O Damn O I O was O so O excited O :' O ( O I'm O off O I O shall O tweet O when O I'm O home O :D O :D O xxxxxx O UPDATE O 1-Cricket-Gul O takes O six O wickets O as O Pakistan B-geo-loc beat O England B-geo-loc : O LONDON B-geo-loc , O Sept O 17 O ( O Reuters B-company ) O - O Umar B-person Gul I-person took O ... O http://bit.ly/ckNyMG O #Cricket O Football O game O tonight O :) O yeeah O boilers B-sportsteam .. O oh O wait O , O we O suck O . O haha O No O tasting O today O due O to O my O being O out O Sick O ... O ugh O . O But O next O Friday O we O will O have O Mark B-person Rowan I-person from O Novel B-company Wines I-company here O ... O http://fb.me/G2CLHL1H O its O friday O . O but O instead O of O partying O or O doing O homework O . O I'm O going O to O tumblr B-company for O a O bit O and O sleep O XD O @mynameisraven O get O on O skype B-company or O ichat O when O you O see O this O . O RT O @Sn00ki O : O Haha O yes O !!! O I O love O that O you O knew O that O :) O RT O @trishamelissa O @Sn00ki O Is O phenomenal O the O word O of O the O day O ? O Also O , O I O learned O at O school O today O that O everyone O , O in O fact O , O knows O @penguin1124 O . O ( O I O learned O this O , O no O joke O , O during O choir O . O ) O #fact O @zfarmville O funnyordie O : O Text O messages O are O like O Gremlins O . O Keep O them O away O from O drinks O and O proceed O with O caution O after O midnight O . O http:///5dkkZ O @OGOchoCinco O ocho O you O know O your O talent O , O I O have O agreed O with O every O statement O you O have O said O over O the O past O 2 O years O Just O got O all O caught O up O on O my O flagged O emails O from O the O week O . O Now O I O feel O good O about O leaving O the O office O for O the O weekend O . O TGIF O ! O RT O @AllTeensThings O : O Christmas B-other was O so O much O better O when O there O was O a O santa O :( O #allteensthings O @26Promo O YOU O CAN O DO O IT O ! O Just O start O with O one O task O at O a O time O . O @aszreal O SO O PROUD O . O also O I O haven't O written O a O word O since O Sunday O night O . O =( O I O wrote O 500 O on O the O plane O . O ( O Yes O , O chapter O five O ! O @thegypsyscribe O lol O ;) O RT O @LilTwist O : O RT O this O if O you O want O me O to O go O back O live O on O Ustream B-company later O tonight O 'I O just O took O " O When O your O mom O makes O you O go O live O with O your O dad O Scooter B-person Braun I-person , O your O life O turns O ..." O and O got O : O Part O 1 O ! O Try O it O : O http://bit.ly/ch09f2' O It O 's O time O to O CELEBRATE O !!!!!! O YESSSSS O !!! O We O going O in O tonight O !!!! O is O there O actually O anything O on O UK B-geo-loc tv O tonight O ! O I'll O be O gone O till O november O , O but O I O ain't O even O trippin O cause O I O know O drizzy O gonna O kill O em O ! O @uppercasem O @cecinestpastom O pig O pinata O for O the O big O day O ? O http://j.mp/9ack1V O i'm O off O to O bed O ! O tomorrow O i'll O go O to O Nijverdal B-geo-loc and O meet O @ElineEpica O there O , O on O her O sweeeet16 O #partyyy O check O out O @140hours O auction O starts O tonight O ! O Dreaming O Storm O http://bit.ly/5Bq0Qm O argrgrgr O hy O is O it O already O midway O through O sep O !!!! O :( O tonight O at O The B-facility Lodge I-facility : O braised O bison O shortribs O , O kabocha O squash O risotto O http://twitpic.com/2pdu4g O Thanks O for O all O you O do O : O @marketinghabit O , O @girlfriendgroup O , O @cjhayden O , O @KadenaSimon O . O You O bolstered O my O week O . O @borneobaby O THAT O is O exactly O how O I O am O feelin O ! O Just O under O 1 O hour O 2 O go O & O still O unsure O . O Havent O slept O in O days O thinkin O about O wat O I O wd O wear O and O say O ! O i O decided O im O gonna O sleep O at O my O mommys O tonight O and O hang O out O there O after O filming O tomorrow O morning O till O i O work O . O oh O the O sacrafices O i O make O . O @darynjones O imma O tell O you O one O time O ! O JUTHTIN B-person BEAVERRRR I-person !!!! O All O Night O Skate O Session O tomorrow O night O ! O Hope O to O see O you O all O there O ! O sunny O friday O :) O @SheSo_Major O they O giving O the O nigga O a O realllllll O hard O time O about O it O lmfaoo O as O they O should O and O now O his O feelings O are O hurt O ... O i O like O him O tho O LMAO O @TexusMade O lol O . O Try O cudos O ! O I O neva O been O round O this O time O doe O . O #cl O CamelBak B-product BPA-Free I-product Better I-product Bottle I-product with I-product Bite I-product Valve I-product by O Camelbak B-company 93 O days O in O the O top O 100 O ( O 494)Buy O new O : O $ O 4.99 O - O $1 O ... O http://bit.ly/9YA597 O Shoutout O to O @HarryReid O for O his O help O with O DADT B-other . O Thanks O for O following O . O Good O luck O on O Tuesday O ! O @TeemoneeNYC O lmao O Sunday O can O be O done O @LewisDixon O Trust O me O ! O im O gonna O be O bringing O out O music O like O theres O no O tomorrow O , O Be O doing O pure O blog O videos O & O freestyle O videos O #Moesh O ! O #SIUC O Whats O the O Plan O For O tonight O ?? O Whos O Goin O to O the B-facility BLAST I-facility I O should O not O be O awake O at O this O hour O on O a O Saturday O . O Blerghhhhh O . O Good O cause O though O . O I O hope O . O Baseball O Tips O On O Hitting O -- O How O To O Approach O The O Flame O Throwers O ! O http://t.co/vaVT5LW O #mlb O select O league O #baseball O #FF O Follow O Friday O .. O @weezywiii O yes O i O do O .. O scouts O dont O smoke O week O I O ain't O necessary O listenin O ' O to O the O lyrics O but O the O beat O got O head O rockin'. O " O It B-other 's I-other Gucci I-other Time I-other !" O #nodisrespect O I O fucks O with O every O now O & O then O ... O Do O you O ever O have O fights O with O your O running O shoes O ? O You O know O , O when O your O shoes O want O to O exercise O but O you O don't. O Well O ... O http://fb.me/xKyLBInS O 10 O Things O You O May O Have O Missed O On O TV O This O Week O [ O Mixed O Bag O ] O http://bit.ly/9vZOUc O @amandaguido O i O didnt O sseee O you O today O :( O I'm O shattered O !! O I'm O looking O forward O to O having O a O nice O long O lay O in O , O in O the O morning O :D O @Johnterrysbabe O lol O I'm O not O up O to O much O I'm O just O off O to O bed O lol O had O a O long O day O cht O tumoz O :) O On O the O amusing O side O ....: O When O we O - O with O dozens O of O other O journalists O - O were O at O the O event O waiting O to O see O if O ... O http://fxn.ws/aAnazd O @joeymcintyre O I O heart O you O . O Even O if O I O haven't O seen O u O in O months O ... O SEND O A O PIC O ! O Lederhosen O , O lederhosen O , O you're O so O delicious O , O I O love O you O more O than O ... O all O the O other O foreign O pants O that O I O need O to O borrow O for O a O single O day O . O After O work O nap O time O ; O Shhhhhhh O *Do O not O disturb* O #aberdeen O RT O @flook_firehose2010Polar O Bear O http://flook.it/c/1H1HZq O Sun O , O 17 O Oct O 2010 O at O 10:28 O am O The O Tunnels O Carnegies O Brae O Aberdeen O Un O ... O After O work O I'm O breaking O glass O against O my O house O and O then O doing O yoga O . O RT O @ctvedmonton O : O surprise O , O surprise O ... O Frost O WARNINGS O in O effect O for O pretty O much O all O of O Ctl O & O N O Alta O again O tonight O . O that O includes O the O c O ... O have O to O sleep O now O ! O gym O , O facial O , O then O SUPAHFEST B-other tonight O i O need O my O kuya O 's O driver O ... O MOSH O PIT O VIP O common O 'WHEN O HE O SAY O " O iS O YOU O CHEATiN O ON O ME O " O THAT O JUST O #REALLYMEANS O , O HE O ALREADY O CHEATiN O !' O '" O We O still O need O eachother O when O we O stumble O and O fall O .." O " O We O both O know O our O heart O is O breaking O , O can O we O learn O from O our O mistakess O ?"' O #sp O Facebook B-company Job-Hunting O App O BranchOut B-product Raises O $6 O Million O From O Accel B-company And O Super O Angels O : O When O you O want O to O hang O out O ... O http://migre.me/1kO1K O @TheTiniestVole O It O is O . O It O 's O getting O across O London B-geo-loc that O 's O the O killer O . O Still O miss O it O , O though O . O Lived O there O for O 20 O years O . O im O doin O the O most O Homework O on O a O friday O #blown O NEW B-geo-loc ORLEANS I-geo-loc ! O - O Tonight O @damionyancy O at O Republic B-facility ! O How O many O times O . O Can O you O possibly O . O Make O an O excuse O . O To O play O a O goddamn O banjo O . O In O an O hour-long O show O . O A O show O that O has O nothing O to O do O with O banjos O . O @Kalyro O LOL O PROBABLY O . O I O JUST O SPENT O A O FEW O MINUTES O SHELTER-STALKING O BEFORE O REALIZING O THAT O I O HAVE O 3 O LEGENDARY/NOVELTIES O ALREADY O . O GuitarNews B-other : O RockHouse B-other : O The O Weekend O Read O For O Sept O . O 17th O 2010 O - O Guitar O Lessons O , O Articles O and O More O : O http://bit.ly/bmHnln O CAFE B-facility NINE I-facility TONIGHT O AT O 11 O !! O Information B-other Underground I-other : O This O Week O on O Information B-other Underground I-other http://fb.me/JGgSgWBg O para O com O isso O ce O o O neymar O ser O afastado O o O time O acaba O Good O prospects O for O dabigatran B-product on O Monday O . O RT O @DrJennyK O : O FDA B-other Suggests O #Afib O Drug O Okay O Even O Before O Vote O http://bit.ly/dpOphU O #FDACV O Whomever O said O , O " O M&M B-product 's O melt O in O your O mouth O , O not O in O your O hand O " O never O had O a O 1/4 O of O a O bag O in O their O hand O at O one O time O #myhandismulicolored O #Pretty O @BadAssAlexander O *sighs* O Studying O for O a O exam O coming O up O soon O . O *huffs O before O smiling* O Wanna O go O out O tonight O ? O ( O LMAO O I O honestly O thought O today O - O @1STLADYNHEELS O Alright O , O I'll O get O there O around O that O time O . O I'll O call/text O you O when O I O arrive O . O Did O @kanyewest O drop O his O Good B-other Friday I-other song O yet O today O ? O @BenArch O 100- O Tim B-person Bulmer I-person had O a O 100% O likelihood O of O getting O his O YPF O detail O form O in O this O week O . O Punctuality O . O headin O to O get O shitty O in O a O few O ... O 1st O n O summit O ... O then O rehab O ... O my O life O will O be O a O blur O after O this O night O You O think O I'm O pretty O without O any O makeup O on O , O you O think O I'm O funny O when O I O tell O the O punchline O wrong O . O Know O you O get O me O so O I O let O my O walls O come O down O RT O @ThePoochStore O : O One O reason O a O dog O can O be O such O a O comfort O when O you're O feeling O blue O is O that O he O doesn't O try O to O find O out O why O . O ~Author O Unknown O RT O @dsteel O If O you O feel O as O though O your O company O is O having O problems O generating O sales O , O it O might O be O time O to O bring O in O a O sales O training O speaker O . O 'Science O and O the O media O : O 11 O - O 17 O September O : O Under O the O headline O " O China B-geo-loc needs O to O elaborate O on O plans O to O modernize O its O f O ... O http://bit.ly/bVaPzc' O e O tem O mais O .... O Robinho O no O meu O time O eh O banco O , O mesmo O com O o O Pato O machucado O ! O Tenho O dito O ! O @RiffTrax O I've O suffered O through O the O era O of O HSM O popularity O . O I've O wanted O a O riff O for O the O damn O thing O for O years O . O You've O made O me O very O happy O estonia B-geo-loc tomorrow O with O @MyiaOnFyia O and O the O rest O of O our O team O ! O ready O for O some O good O practice O games O ! O :) O " O I O gotta O admit O , O Alex B-person sounds O hot O when O he O talks O in O spanish O during O the O ' O Alejandro B-other ' O Cover O " O -via O someone O 's O tumblr B-company @OGOchoCinco O depends O what O Leo B-person 's O revamped O D O can O do O to O him O on O Sunday O . O Go O Lions B-sportsteam !! O @BeLIEveNcRisS O omg O yayyy O I O got O mine O today O too O !!!!! O :D O didn't O have O time O to O try O it O on O tho O !! O I O was O running O out O the O door O to O go O to O the O concert O !: O ) O Change O of O Plans O on O Saturday O ! O We'll O be O @ O Glover B-facility Park I-facility farmers O market O , O 9-1 O in O DC B-geo-loc . O Come O by O and O try O some O old O favorites O & O crazy O new O flavors O ! O @KathyReid O have O a O fun O day O of O freedom O California B-geo-loc Woman O Dies O in O Accident O Hours O Before O DUI O Class O : O Woman O was O drinking O until O early O morning O before O court O orde O ... O http://bit.ly/aiHEvj O @JoxVox O Just O stressing O about O the O fitted O ones O though O - O opro O were O in O school O today O and O I O had O forgotten O to O register O him O for O fitting O ... O whoops O @buffystar O Turn O your O phone O off O tomorrow O ! O RT O @ddockett O : O I O got O another O account O ... O someone O else O will O tweet O when O they O think O I O would O ! O #fact O | O Although O @NFL O will O probably O figure O that O out O $$ O #forex O #fx O : O Forex B-company Articles O for O the O Weekend O September O 18lo O http://www.forexcrunch.com/forex-articles-for-the-weekend-september-18lo/ O Ok O yall O work O day O over O Damn O do O I O ever O sleep O Naw O fuck O dat O when O I O die O I'll O sleep O 4ever O until O than O sleep O money O don't O ( O cont O ) O http://tl.gd/63b142 O @divacoachdabney O you O made O Nina B-person 's O day O . O Sweet O surprises O for O you O . O @mandyjiroux O Mandy B-person when O you O and O Miley B-person will O upgrade O Miley B-tvshow and I-tvshow Mandy I-tvshow show I-tvshow ? O I O miss O the O videos O . O @RealWizKhalifa O I O will O be O smacked O when O I O see O u O tonite O :) O Quick O Question O : O Chink-A-Link O Have O You O Ever O Scratched O Before O ? O Lls O @FerLiebe O :D O how O is O fer O today O ?? O Sooo O plans O for O tomorrow O night O ? O I O gotta O do O something O . O I O need O a O night O out O . O RT O IF O U O GETTN O FUCKED O UP O TONIGHT O .... O argh O my O hands O are O dying O . O i O definitely O need O to O take O gloves O next O time O . O @planetjedward O were O 's O John B-person and O Edward B-person ... O there O Tweets O make O my O day O ... O now O what O am O i O supposed O to O do O :' O ( O COME O BACK O TO O USSS O < O 3 O It O 's O Friday O ... O and O it O 's O ScuttleButton O time O ! O http://tinyurl.com/39tkyfh O Analogy O time O ! O Loyola B-geo-loc Chicago B-geo-loc : O Alexei B-person :: O Philadelphia B-sportsteam Eagles I-sportsteam : O Donovan B-person McNabb I-person ( O even O b4 O the O trade) O . O #nfl O #fb O @lessafelipe O Vai O no O Garotos O Podres O + O No O Milk O Today O hoje O ? O @CoryFerrari O test O came O out O positive O ? O Sorry O lil O buddy O ..... O At O least O medicine O these O days O can O keep O it O in O control O . O Don't O forget O to O come O and O see O us O at O the O football O game O tomorrow O afternoon O ! O Go O Reivers B-sportsteam ! O RT O @ItsROWEtime O : O Y O does O Pinky B-person have O a O music O video O ? O Thats O 3 O porn O star O rappers O in O the O last O month O . O This O is O y O rap O is O doing O so O bad O , O ppl O actual O ... O EVENT O -- O > O http://schmap.it/bP7bEZ O - O Tonight O at O Primal B-facility Its O @Roscoedash O , O & O @DJDrama O Taking O Over O ! O TxT O Names O to O 678-223-3699 O by O 6:59 O pm O Buffs O FB O : O Giddings B-geo-loc faces O Elgin B-geo-loc tonite O @ O Wildcat B-facility Stadium I-facility @ O 7:30 O . O The B-sportsteam Buffs I-sportsteam will O try O to O re-group O after O two O straight O losses O . O Updates O on O LCL B-company @robbieanthony87 O yey O :D O thank O you O so O much O . O How're O you O ? O I O proper O need O a O day O in O town O shopping O haha O xx O EuroVPS B-company celebrates O its O 6 O Year O Anniversary O with O special O Promotion O . O Buy O 1 O VPS O and O get O a O second O VPS O FREE O ! O http://fb.me/FZAfqgWn O Damn O . O Is O he O in O town O tonite O ? O Am O thinking O i O may O steal O this O awesome O idea O from O @TheFrontBurner O http://j.mp/dBTwTr O . O I O think O it O would O be O awesome O in O our O stairwells O ! O @XrisLastRights O yep O well O .. O i O know O mcfly B-person told O me O they O were O going O to O come O back O here O when O i O met O em O ' O but O anyway O :) O so O , O how O was O your O day O ? O -Been O Sore O For O The O Past O Days O From O Workin O Out O . O what O to O do O , O what O to O do O ... O gross O sushi O for O dinner O but O time O with O family O from O delaware B-geo-loc , O or O leftover O pizza O and O alone O time O to O write O and O relax O . O RT O @NAT3OH3 O : O VMB B-other awards I-other last O night O were O super O fun O - O we O won O best O bossa O nova O act O ! O off O to O HSBC B-facility center I-facility to O soundcheck O for O epic O show O tonight O .. O ... O I O wished O I'd O school O tomorrow O so O I O could O get O outta O this O house O . O @SITSGirls O would O have O started O mine O a O year O earlier- O 2002ish O , O when O I O first O got O to O college O @_Flik_ O awww O he O 's O in O the O rocky B-movie horror I-movie show I-movie next O week O which O means O he O 's O gotta O wear O stockings O an O suspenders O lol O :P O Thanks O to O all O who O tuned O in O to O my O show O on O http://kplu.org O the O last O two O days O . O Ending O with O Herbie B-person & O Freddie B-person ! O @RealWendyHall O @piccoz O It O didn't O stop O me O when O there O was O 4 O of O yous O at O me O !!! O Quite O enjoyed O it O tbh O !!! O Lol O 3 O tour O coaches O with O a O police O escort O in O Chapel B-geo-loc Hill I-geo-loc ... O game O tonight O ? O Our O Favorite O YouTube B-company Videos O This O Week O : O The O Drama O Edition O http://dlvr.it/5RfHy O Small B-other Biz I-other Tech I-other Tour I-other 2010 I-other Launches O Five O City O Tour O MONTCLAIR B-geo-loc N.J. B-geo-loc ...: O The O all O day O event O features O America's... O http://tinyurl.com/28hd9fu O #fb O WIN O FREE O PAMPERS B-company FOR O A O YEAR O !!! O And O more O ... O http://nblo.gs/80qJu O Preventing O Public O Health O Disasters O [ O The O Pump O Handle] O : O Earlier O this O week O , O FDA B-other Commissioner O Margaret B-person Hamburg I-person present O ... O http://bit.ly/9i1AEg O RT O @robmoysey O Eyeopener B-sportsteam vs O . O Ryerson B-sportsteam Quidditch I-sportsteam team I-sportsteam this O Sunday O at O 4 O p.m. O Anyone O know O where O to O get O cheap O brooms O ? O #Ryerson O @RUQuidditch O #Rams O RT O @ZodiacFacts O : O #ZodiacFacts O As O an O #Aries O romance O is O n't O about O what O you O 're O after O -- O it O 's O about O taking O chances O , O exploring O and O keeping O an O ... O I O have O lost O everything O importing O in O my O life O within O the O past O week O anything O that O i O loved O is O now O gone O RT O @SonyElectronics O : O Sony/Bud O Light O 3D O tailgate O parties O on O Saturday O - O Clemson B-geo-loc party O at O http://bit.ly/cds8Pd O ; O Auburn B-geo-loc party O at O http://bit O . O ... O RT O @kanyewest O : O You O basically O can O say O anything O to O someone O on O an O email O or O text O as O long O as O you O put O LOL O at O the O end O @Zerinaakers O talking O about O as O far O as O shooting O for O location O its O going O to O be O on O #Vh1 B-other so O by O the O end O of O the O month O i O should O know O something O I O 've O got O a O theory O that O if O you O give O 100% O all O of O the O time O , O somehow O things O will O work O out O in O the O end O . O -Larry B-person Bird I-person @bendingoutward O What O about O the O site O could O be O changed O in O order O to O reduce O the O time O required O for O you O to O provide O solutions O ? O @winashbrown O If O that O auto O URL O shortening O could O work O I O might O stick O with O SD2 B-product for O a O while O - O that O saves O me O 3 O or O 4 O steps O when O I O am O tweeting O links O Kk O its O 22:48 O friday O nyt O :D O really O tired O so O imma O go O to O sleep O :) O good O nyt O x O god O bles O xxxxx O And O now O the O wait O til O the O games O get O started O for O the O day O . O belles B-facility mansion I-facility 4 O bday O dinner O . O eventhough O its O a O day O early O . O *N*I*K*K*I* O Kahlua B-product < O Coffee O over O looking O the O lake O is O just O what O the O doctor O ordered O .... O hope O everyone O has O a O great O Friday O night O ! O I O just O took O " O After O getting O trampled O at O a O Justin B-person Bieber I-person concert O , O yoiu O wake O up O and O ..." O and O got O : O Part O 6 O :) O ! O Try O it O : O http://tinyurl.com/26zeju5 O Gotta O love O the O bumper O stickers O of O Fayette B-geo-loc County I-geo-loc : O " O Ever O wonder O if O there O is O life O after O death O ? O Touch O my O truck O and O 'll O find O out O ." O Going O to O start O #HelloMornings O on O Oct O 1 O - O Check O it O out O on O @michellebygrace O Pick O up O here O . O Deliver O on O Dayton B-geo-loc NJ I-geo-loc tomorrow O (@ O Ball B-company Metal I-company Container I-company ) O RT O @Mickey__Rourke O : O 58 O years O ago O today O I O tumbled O from O my O mother O 's O womb O with O a O cigarette O in O my O mouth O and O a O chihuahua O puppy O under O each O arm O ... O No O I O 'm O not O saying O I O 'm O sorry O One O day O , O maybe O 'll O meet O again O No O No O No O No O ( O 8 O ) O Companies O fixing O a O problem O that O 's O wholly O their O fault O and O calling O it O a O " O one-time O courtesy O " O is O insult O to O injury O . O They O 're O clearly O not O sorry O ! O Do O n't O Have O Time O To O Stop O In O ??? O Then O , O Check O Out O Our O Quick O Full O Service O Drive O Thru O Window O :) O today O seems O like O a O good O day O to O chill O :) O I O am O living O my O dream O , O winning O at O life O and O being O respected O for O every O thing O I O do O . O And O its O about O fucking O time O . O #dontsettle O #EVER O @toukie_s O i'mgoing O to O sleep O , O not O feeling O very O well O , O see O you O tomorrow O Soulja B-person Boy I-person | O TheDeAndreWay O . O com O - O The O DeAndre O Way O in O stores O Nov O 2 O , O 2010 O souljaboytellem-iga.ning.com O via O @SouljaBoy O ! O #Blessed O #woot O I'd O like O to O buy O this O , O but O i O have O a O hard O time O doing O a O sit O up O ... O RT O @ItsTheTeenLife O : O The O exact O day O that O I O wear O shorts O and O a O tee O shirt O everyone O shows O up O wearing O hoodies O and O jeans O . O -_- O #ItsTheTeenLife O RT O @BieberPledge O : O When O I O Get O Old O , O Imma O Still O Be O Rockin O Out O To O ' O Baby'...Even O If O I O Break O A O Hip O ;) O Stephen B-person , O the O Intellectual O . O @bbhess O I O bet O ppl O that O design O book O covers O for O a O living O hate O when O people O say O do O n't O judge O a O book O by O its O cover O Not O feeling O up O to O par O today O . O #stressing O Wanna O see O ya O bro O , O I O miss O u O U O scared O me O to O hell O yesterday O , O cant O live O without O u O U O 're O more O than O a O bro O u O 're O Like O my O twin O Need O u O , O come O home O Luv O u O < O 3 O Man O i O been O eatin O fastfood O everyday O im O so O glad O my O mommy O cookin O today O ... O It O might O just O be O me O but O when O males O text O " O K O " O or O cross O there O legs O while O sitting O ai O n't O cool O wit O me O . O Have O DJ B-other Got I-other Us I-other Fallin I-other in I-other Love I-other in O my O head O . O " O Cause O baby O tonight O , O The O dj O got O us O fallin O in O love O again O " O @_AsToldByBV O well O i O wrote O you O like O 6 O times O this O week O ! O urgh O . O RACHELLE B-person im O gonnauh O kill O YOU O tonite O ! O Before O I O proceed O into O the O paradise O , O let O 's O not O forget O the O Princess B-movie Lover I-movie OVA I-movie 1 I-movie teaser O pic O , O SFW O http://yfrog.com/0fg2kfj O I O see O her O tomorrow O : O 3 O so O yeah~ O ca O n't O wait O Pope B-person Benedict I-person trip O : O Why O move O John B-person Henry I-person Newman I-person toward O sainthood O ?: O Pope B-person Benedict I-person XVI I-person plans O on O Sunday O during O his O sta O ... O http://bit.ly/d7tM0r O When O you O know O what O you O want O , O and O want O it O bad O enough O , O you O will O find O a O way O to O get O it O . O - O Jim B-person Rohn I-person RT O @TheSCICoach O last O day O of O sorting O pope B-person visit O to O birmingham B-geo-loc stuff O out O ..... O hope O it O goes O ok O on O sunday O !! O Is O Joaquin B-person Phoenix I-person Our O Modern O Day O Andy B-person Kaufman I-person ?: O ... O the O bizarre O events O leading O up O to O this O moment O , O the O movie O could O ... O http://bit.ly/aUZ2on O My O first O assignment O was O a O medical O illustration O job O through O a O friend O . O After O meeting O with O the O surgeon O , O I O comple O ... O @MATHHOFFA O @darealjustjuice O yo O I O put O that O bitch O boy O in O his O place O the O other O day O . O Do O n't O even O waste O ya O time O wit O clowns O @justinbieber O I O have O chance O with O you O ? O webcam O enters O Sunday O 7:00 O pm O ? O please O ? O to O talk O right O ! O kisses O on O the O chin O RT O @BiebersFairies O : O the O day O Justin B-person Bieber I-person was O born O was O a O rainy O day O , O but O it O was O no O rain O , O NO O ! O the O heaven O was O crying O cause O he O lost O his O most O ... O @JessicaLynne6 O where O you O takin O me O tonight O after O u O get O off O ? O i O know O u O tryna O kick O it O .. O lol O @besocialonline O dank O je O Gert O Jan O Exclusive O : O Rep O . O Steve B-person King I-person on O ObamaCare O , O Tea O Party O , O and O Constitution B-other Day I-other : O The O inclusion O of O the O Tenth O Amendment O in O ... O http://bit.ly/cYITA8 O Long O 18k O run O done O and O in O the O books O ! O Beauty O day O . O Til O now O , O at O dentist O , O and O lady O next O to O me O spilling O over O to O my O chair O .. O Just O belched O . O Loudly O . O +1 O Lingerie B-other football I-other league I-other come O on O tonight O ... O four O fucking O years O I O 've O been O configuring O iBGP B-other and O eBGP B-other on O Cisco B-company AND O Juniper B-company routers O for O America B-geo-loc 's O largest O wireless O ISP O ... O and O I O get O a O 612 O looking O forward O to O a O weekend O resting O foot O !! O oh O and O the O irish O on O sunday O . O RT O @zahrock12 O : O Fuck O yeah O its O FRIDAY O !! O Going O now O . O Be O back O later O tonight O . O Thanks O for O all O the O Friday O Fucking O , O appreciate O it O . O Make O love O , O not O war O : O condoms O are O cheaper O than O guns O . O XOXO O Day O at O T O . O epic O interview O and O photo O shoot O with O Marie B-company Clair I-company . O @OHEMMGEEZY O Sleeping O later O and O later O everyday O , O waking O up O earlier O and O earlier O day O by O day O . O My O eyes O are O getting O smaller O and O smaller O . O She O should O nom O me O when O she O gets O back O ! O If O she O 's O not O tired O that O is O . O RT O @TomsTop5 O : O Check O us O out O - O we O 're O FEATURED O on O iTunes O this O week O ! O Make O sure O to O subscribe O so O Jobs O knows O you O love O us O http://twitpic.com/2pdr8h O @ashhleybrookee O it O may O be O nasty O but O ... O it O works O . O nightmare B-movie before I-movie christmas I-movie !!! O USM B-facility get O ready O yours O truly O tonight O at O frat B-facility house I-facility Hattiesburg I-facility on O the O 1s O n O 2s O !! O Lots O of O Merlot B-product on O Thursday O night O means O tired O London O Ladies O are O in O bed O by O 23.19 O on O the O Friday O . O Listening O to O the O arts O show O on O @BBCRadio4 O . O .... O today O is O better O than O yesterday O , O but O I O hope O tomorrow O is O better O than O today O , O because O today O still O somewhat O - O SUCKS O . O @IzzieZac O Told O you O !! O :o O )) O When O 's O she O back O again O ? O Observances O mark O 9/11 O anniversary O : O Observances O in O Temecula B-geo-loc and O elsewhere O throughout O the O region O last O week O marked O the O ... O http://dlvr.it/5Rckw O Honored O Double O Diaomond O as O well O : O Jan B-person Bloom I-person ... O her O two O beautiful O daughters O surprised O her O on O stage O , O it O was O just O sooo O ... O http://fb.me/JLLhbDl0 O RT O @Quotealicious O : O Today O , O I O saw O a O guy O driving O a O Pepsi B-company truck O , O drinking O a O Coke B-product . O MLIA O #Quotealicious O pulling O an O all O nighter O tonight O .... O good O times O are O approaching O @bookpage O We O should O 've O scheduled O a O meeting O with O Trisha B-person in O Paris B-geo-loc for O this O week O ... O #deau O Who O loves O Friday O ? O At O the O gym O now O ! O Excited O for O weekend O plans O ! O Time O to O have O #sex O The B-movie Town I-movie might O be O one O of O the O best O movies O I O have O seen O all O year O . O So O , O so O good O . O And O do O n't O worry O Ben B-person , O we O already O forgave O you O for O Gigli B-movie . O Really O . O @Jsmoothhh O it O 's O not O supposed O to O rain O till O Sunday O night O . O Going O to O the O country O fair O today O :) O Pope B-person says O religion O ' O marginalized': O That O 's O why O he O ca O n't O get O a O headline O printed O anywhere O , O because O religion O is O so O mar O ... O http://bit.ly/cBvt1u O http://bit.ly/aTTQYq O When O Pepsi B-company to O ring O usually O confirm O to O , O winning O a O Nokia B-product 5800 I-product ? O Just O tried O to O watch O The B-tvshow Inbetweeners I-tvshow for O the O first O time O , O not O entirely O sure O about O it O . O But O what O happens O when O karam O turns O right O around O and O bites O you O ? O And O everything O you O stand O for O turns O on O you O despite O you O ? O Today O I O justt O felt O special O forr O no O reason O < O 3 O . O It O wass O cool O thou( O : O i O think O it O 's O better O to O go O to O bed O after O this O bad O day O ... O JV B-sportsteam soccer I-sportsteam leads O 4-1 O after O Benitez B-person scores O again O , O less O than O 7 O mins O to O play O @princessmariam9 O i O know O .. O i O need O to O stop O before O my O room O is O gonna O get O filled O with O water O . O Goin O to O my O BEST O friends O birthday O party O 2day O . O As O u O can O see O her O name O is O taylor B-person and O i O love O her O like O a O sister O ! O ~HAPPY O B-DAY O TAYLOR B-person !!! O LUVZ O YA~ O Our O Favorite O YouTube B-company Videos O This O Week O : O The O Drama O Edition O : O Had O any O epic O meltdowns O this O week O ? O You O know O , O of O the O cryin O ... O http://bit.ly/cuy0yt O Pedigree B-company Donates O Dog O Food O for O Blog O Posts O : O These O days O , O big O brands O usually O look O to O the O big O social O networks O like O Face O ... O http://bit.ly/bYWzrq O A O day O late O but O thank O you O = O ) O I O love O it O @ O home O chilling O guess O I O 'm O staying O in O 2day O 2 O rest O this O week O was O crazy O but O I O 'm O ready O for O dis O weekend O Peace O green B-product tea I-product time O !! O Happyzone O !!!! O :) O )))) O LADY B-person GAGA I-person IS O BETTER O THE O 5th O TIME O OH O BABY( O : O Good O start O for O sharks B-sportsteam tonight O can O only O get O better O . O Played O with O short O bench O tonight O . O Thought O Rocks B-sportsteam well O in O game O early O though O until O ' O unseen O ' O @sarahk47 O Okay O The O doc O 's O saying O Keep O it O tamped O down O a O coupla O days O then O bring O her O out O early O ? O holy O FUCK O THIS O IS O THE O MOST O BORING O DAY O EVER O . O RT O @SteevoSupremo O : O #The1906andPearlsShow O THIS O MONDAY O @ O 7:06 O : O 08pm O !!!!! O #MAINBUILDING O ROOM O . O 104 O !!! O http://twitpic.com/2oeark O SPECIAL O PERF O ... O In O bed O watching O Day O 51 O HLs O . O ( O Awaiting O Marcus B-person Bentley I-person ! O ) O #BB11 B-tvshow @Starmaker73 O ya O but O it O would O have O to O go O down O Saturday O morning O and O tht O would O ntake O all O day O lol O so O id O be O cutting O it O close O lol O I O got O a O very O , O very O fun O item O from O FedEx B-company today O . O I'm O so O excited O to O add O it O to O my O demo O bag O ! O #PassionParties O . O #WAHM O RT O @LightCMS O : O Day O 6 O : O Win O 1 O of O 10 O iPads O from O @LightCMS O - O RT O to O enter O or O read O more O http://speaklight.com/iPad O SCOTT B-person WEILAND I-person Announces O Memoir O Release O - O Music B-other News I-other Net I-other : O MUSIC O NEWS O - O Simon B-other & I-other Schuster I-other has O announced O a O March O 8 O , O 20 O ... O http://bit.ly/ayLf9C O The B-musicartist Maccabees I-musicartist are O the O love O of O my O life O . O one O day O i O will O be O married O to O all O of O them O . O RT O @justingodsey O : O When O the O eagles O fly O high O , O they O make O all O the O smaller O birds O jealous O . O @ShelAndPushPlay O Yeah O man O , O u O got O it O . O It O 's O only O a O matter O of O time O . O Do O any O of O you O take O the O time O to O look O up O at O the O stars O at O night O ? O #Anybody O ? O @cprieboy O At O the O end O of O the O year O ? O Sometime O in O May O . O They O are O just O starting O at O the O beginning O of O August O now O instead O of O the O middle O . O Eastern B-geo-loc Bloc I-geo-loc 25th O b'day O party O kicking O off O now O ! O Get O your O tweets O up O , O using O the O tag O #botweast O @LightBringer87 O I'm O too O busy O asking O @leestanleyinnqy O formspring O questions O , O I O may O get O around O to O you O later O ;) O looking O forward O to O a O weekend O resting O foot O !! O oh O and O the O irish O on O sunday O . O @alealshinn O @BambingBling O ~~~ O @sunchips O this O is O the O second O time O they O have O messed O up O .... O about O to O give O up O on O them O Of O course O , O I O was O stunned O . O This O , O after O all O , O was O an O inanimate O object O . O 30 O Mosques O in O 30 O Days O : O A O Trip O Through O Islamic O America O http://dlvr.it/5RdYv O @jdub79 O We O must O have O been O in O the O same O bathroom O today O . O #losers O #youusedtoknowhowtoflush O #followthrough O RT O @BeliebInCodyyy O : O @TheCodySimpson O every O minute O , O every O second O , O every O hour O of O the O day O iyiyi O think O of O you143 O < O 3 O @lovable_sin O OMG O OMG O OMG O ! O Thank O you O for O " O tumblring O " O it O to O me O , O I O so O wasn't O expecting O them O today O . O OMG O ! O @Maike_84 O Flikken B-tvshow is O geweldig O ! O Ik O kan O niet O wachten O tot O de O nieuwe O serie O in O november O .. O (geloof O ik O ) O Dit O jaar O alles O gezien O via O uitzendinggemist O . O RT O @_MyNameBrandon_ O @Mr_Marcell O lol O ! O yeah O aint O nothing O there O but O my O family O . O < O thaz O really O it O now O .. O to O b O honest O ... O when O u O coming O dwn O to O sam O RT O @ThePredator48 O : O I O need O all O my O followers O 2 O bring O a O new O children O 's O book O to O the O game O this O Sunday O for O the O @WRFoundation O Redskins O read O boo O ... O @majornelson O I'm O out O of O town O this O weekend O ! O dagnabbit O ! O Why O does O all O the O cool O stuff O happen O when O I O leave O ? O Dollar O steady O versus O yen O but O market O wary O of O intervention O | O Money O ...: O The O dollar O held O near O its O highest O in O a O month O ... O http://bit.ly/a0F3dO O before O the O season O even O starts O i O will O not O respond O to O any O new O found O miami B-sportsteam heat I-sportsteam fans O ... O IF O YOU O HAVEN'T O HEARD O ... O THERE O IS O AN O AMAZING O SHOW O GOING O ON O TONIGHT O AT O JANNUS B-facility LIVE I-facility ... O SUENALO B-musicartist ! O FROM O MIAMI B-geo-loc W/ O SHAKEMODE B-musicartist AND O INDIGENOUS B-musicartist ... O :( O RT O @themaine O Who O is O coming O to O the O show O tomorrow O in O Hawaii B-geo-loc ? O @atlgc17 O Im O 16 O and O a O freshmen O again O . O I O fluncked O once O in O elementry O school O and O I O fluncked O last O year O because O I O never O did O my O work O . O When O your O database O of O all O staff O is O on O a O flash O drive O that O goes O missing O #flash O #database O #Security O http://bit.ly/b1lWKW O Today O in O art O this O kid O was O like O Are O you O going O to O homecoming O tonight O ? O Other O kid O : O No O , O I'm O going O to O be O at O home O ... O coming O . O RT O If O you O get O it O ! O This O is O one O of O my O favorite O days O on O twitter B-company ever O . O @radhallman O and O @foofmcewan O kudos O @Strigy O got O mine O in O bbt O aintree B-geo-loc today O . O Played O table O tennis O on O it O in O store O ! O V O impressed O . O Did O you O get O analogue O controller O 2 O ? O RT O @foxyscot30 O : O RT O @_CorruptedAngel O RT O @tomcoates O : O Bit O grumpy O about O the O bloody O Pope B-person clogging O up O London B-geo-loc tomorrow O . O I O suggest O we O take O Gay O P O ... O @flossyflop O It O 's O a O slightly O off O night O tonight O . O Lots O of O requests O I O wouldn't O normally O play O cos O they're O too O slow O . O my O heart O stops O when O you O look O at O me O , O just O one O touch O now O baby O i O believe O < O 33 O bahahah O i O think O i'm O over O hyper O today O xD O Today O 's O cheer O went O from O awful O to O awesome O from O the O moment O I O realized O I O did O not O have O class O today O . O RT O @johan0394 O : O Soulja B-person Boy I-person | O TheDeAndreWay O . O com O -- O The B-other DeAndre I-other Way I-other in O stores O Nov O 2 O , O 2010 O http://t.co/eoELod9 O via O @SouljaBoy O #blackholidays O TD B-other Jakes I-other Day I-other @SneakyLix O thx O ! O btw O i'll O text O u O in O a O bit O ! O i O just O got O home O , O trying O to O dL O some O songs O , O and O gonna O head O to O my O bf's. O i'll O text O u O when O i O get O there O @dancindeac O bet O the O vino O tastes O especially O good O this O week O . O ;-) O RT O @aplusk O : O This O made O me O laugh O today O http://bit.ly/bjOhom O < O --- O courtesy O of O splurb O . O What O made O you O laugh O ? O Goodmorning O ? O Just O woke O up O .. O Gonna O study O again O for O today O 's O exams..that O 's O okay O because O later O no O more O examinations O ;) O Performing O on O Thursday O , O Sept O . O 23 O at O 11:00 O a.m. O in O the O Student B-facility Centre I-facility at O Centennial B-other College I-other ( O Progress B-geo-loc Campus I-geo-loc ) O in O Scarborough B-geo-loc . O @ccsai O No O Good O Punk O : O Thug O knocks O 84-year-old O to O the O ground O , O steals O her O purse O http://lsnlw.com/t/4188153892/ O @XrisLastRights O yep O ... O we O don't O have O anything O here O ... O ( O ok O , O we've O had O mcfly O one O year O ago O but O .. O that O 's O it O ) O I O favorited O a O YouTube B-company video O -- O Yoav B-person " O We B-other All I-other Are I-other Dancing I-other " O ( O Copenhagen B-geo-loc March O 2010 O ) O http://youtu.be/xi8qJ3IKK8U?a O Thank O you O @ZUNE O for O todays O Album O of O the O Day O . O Good O choice O that O fits O perfectly O . O @MiggleM O We'll O catch O up O some O time O ... O *knows O this O won't O happen* O @Laylaloves O Well O Im O Irish O and O I O couldnt O stand O her O in O the O programme O even O before O " O waterfight/braless O gate O "!! O She O jus O seemd O sniddy O ! O @jaredleto O ... O ive O been O to O 13 O 30stm B-musicartist concerts O now O and O you O never O got O me O on O stage O during/before O kings B-musicartist and I-musicartist queens I-musicartist :( O (( O havent O been O on O facebook B-company for O a O day O . O go O on O and O have O 0 O notifications O #foreveralone O @rattleknackers O amusing O ? O This O is O some O of O the O greatest O music O of O all O time O , O my O foot O hasn't O stopped O tapping O all O night O @godsgirl8494 O I O believe O in O the O sun O , O even O when O it O is O not O shining O . O I O believe O in O love O , O even O when O I O do O not O feel O it O . O :) O @lorymichael O Good O Night O and O God O Bless O . O Sleep O well O honey O See O you O tomorrow O Bye O bye O I O love O you O dear O RT O @DaisyCottageIRL O : O #FridayTwiz O Q10 O What O is O a O Cruciverbalist O ? O Answer O : O someone O with O WAY O too O much O time O on O their O hands O . O #ShouldTakeUpDarning O @HeartLessVick O Lol O , O was O george B-person with O carmen B-person today O ;D O RT O @therealadamwest O : O Sunday O is O my O birthday O . O 82 O years O young O ! O What O should O I O wear O ? O ( O don't O say O birthday O suit O ! O ) O haha O dia O 25 O vou O ver O a O @bandahydrogen O less O than O 20 O seconds O ago O via O web O Is O so O excited O to O get O some O dancing O done O tonight O with O @jdsamson O /MEN O at O The B-facility Echo I-facility . O Use O My O Shopping O Genie O before O ?? O How O did O it O work O for O you O ? O Try O it O out O here O http://bit.ly/cawTJF O @dena33 O have O a O good O weekend O ! O Next O time O I'm O at O Gardens B-facility we O are O joining O eatery O forces O . O @ZhouMaharet O I O haven't O for O a O long O ass O time O omg O tomorrow O we O meet O , O it O will O be O good O to O see O you O again O Soulja B-person Boy I-person | O TheDeAndreWay O . O com O - O The B-other DeAndre I-other Way I-other in O stores O Nov O 2 O , O 2010 O http://t.co/ifJBMTR O via O @SouljaBoy O @AddieWilliams O Dat O 's O what O I'm O talkin O ' O ' O bout O . O In O 20 O years O who O knows O . O Maybe O Mr O . O and O Mrs O ... O ? O Photo O : O Travie O hanging O out O with O fans O at O 103.5 O in O Chicago B-geo-loc today O http://tumblr.com/xvliuc7q5 O RT O @shan7792 O : O its O annoying O tht O ppl O ask O me O what O race O i O am O before O they O ask O me O my O name O -_- O My O few O followers O ..! O What O 's O up O ..? O ( O : O I O kind O of O got O in O trouble O today O lol O ... O Just O helps O me O remember O I'm O still O a O human O . O Imperfectly O perfect O ..!! O ( O : O RT O @ItsTheTeenLife O : O " O HAHA O , O remember O when O you O guys O dated!'' O '' O Shut O up O ! O NEVER O EVER O bring O that O up O again!'' O #ItsTheTeenLife O @coulditbeJenG O It O was O 20 O years O ago O . O They're O coming O after O me O , O I O just O know O it O . O RT O @JR_Swish O : O Every O time O I O look O @NICKIMINAJ O I O just O be O lost O for O words O damn O ! O #shhhhhhh O Train O with O us O for O the O HCA B-other 8K I-other ! O We O start O tomorrow O morning O at O 7:30 O am O at O the O showroom O ! O PeopleSearchAffiliates O . O com O : O #1 O For O Over O 2 O Years O : O Make O money O today O ! O Most O lucrative O people O search O products O on O CB O for O ... O http://bit.ly/aVU9RU O going O to O the O mall O with O my O momma O , O then O church O after O this O is O a O big'o O challenge O for O the O next O 3 O days O encounter O here O I O come O lets O see O what O happens O of O my O days O like O paris B-person hilton I-person doing O blowjobs O on O camera O to O earn O enough O money O to O feed O my O angry O birds O habbit O until O i O die O @AlineLemos O T.T O Ainda O vou O fazer O o O Caroleta O 's O Day O [ O ? O ] O Anja B-person Rubik I-person Model O in O Lingerie O of O the O Day O http://f.ast.ly/DCaEM O Right O arm O Rousseff B-person , O Erenice B-other War I-other , O 51 O years O , O became O chief O minister O of O the O Civil B-other House I-other in O April O this O year O " O In O business O , O Tuesday O is O usually O the O most O productive O day O . O For O Twitter B-company , O is O when O people O tweet O the O most O " O - O Ironic O , O isn't O it O ? O thank O god O its O fucking O friday O NEW O BLOG O - O ' O Badass B-other Babes I-other Savin I-other ' I-other The I-other Day I-other ' O -- O CHIX O 6 O , O The O ROXPERIENCE O WEEK O 5 O : O BWW O is O excited O to O present O a O new O blog O , O ... O http://bit.ly/9QkhUC O @JustBmoss O hey O hub O how O u O been O haven't O seen O u O since O my O Love O days O lol O I O madw O my O email O when O i O was O 10 O and O yeah O its O really O embarissing O lol O RT O @TheValarium O : O Online O ticket O sales O for O Ghostland B-musicartist Observatory I-musicartist extended O until O 6 O PM O EST O due O to O high O demand O . O Get O them O before O they O sell O out O ... O RT O @WScottsdale O : O What O 's O happening O at O @WScottsdale O the O rest O of O the O month O ? O Check O out O our O September O Happenings O ! O http://bit.ly/WHapps O Not O only O is O it O #BattlestarGalactica O 's O 32nd O Anniversary O , O tonite O is O the O 3rd O season O premiere O of O #StarWars O #TheCloneWars O !! O JV B-sportsteam soccer I-sportsteam leads O 4-1 O after O Benitez B-person scores O again O , O less O than O 7 O mins O to O play O RT O @BadAssNigerian O : O Chillin O w O | O @Brownin21 O .... O n O gettin O pierced O this O week O < O WHOOOOP O !!! O RT O @CobraCommander O : O When O your O precious O country O collapses O , O just O remember O , O every O pair O of O Crocs B-company you O bought O contributed O to O the O downfall O . O " O Count O your O age O by O #friends O , O not O years O . O Count O your O life O by O #smiles O , O not O tears O ." O #quote O John B-person Lennon I-person #quotes O next O few O weeks O are O going O to O be O hectic O between O traveling O and O knee O surgery O when O i O get O back O @BornThisWayBaby O thankk O yhuu O #monsterlove O u O just O made O my O day O :D O Lol O girrrrrrl O . O I'm O very O lucky O but O everything O is O work O . O Yours O will O come O when O its O supposed O to O RT O @_katesit_ O Can't O ( O cont O ) O http://tl.gd/63aq2c O UT O : O John B-person Chiles I-person out O , O Mike B-person Davis I-person in O : O Texas B-geo-loc wide O receiver O John B-person Chiles I-person has O been O ruled O out O of O Saturday O night O 's O game O wit O ... O http://es.pn/aBLrXN O Fuckk O man O ! O I O fuckinn O missed O @yelyahwilliams O concert O :( O #shizz O ! O I O wonder O if O they're O coming O to O Arizona B-geo-loc next O year O ?? O today O just O doesn't O feel O like O a O Friday O @wonderwhygal O I O was O trying O to O be O sly O today O . O I O started O a O new O hat O , O and O have O a O pink O one O done O 4 O @loongirl O My O goal O is O 5 O . O @basboeit O Een O groeiproces O in O de O ruimste O zin O van O het O woord O . O Ik O arriveerde O toen O 5 O kilo O . O Gelukkig O viel O ik O er O deze O week O evenzoveel O weer O uit O . O Why O do O that O to O begin O with O ? O lols O . O @mggykills O @dieSIBdie O When O on O vacation O in O Cebu B-geo-loc , O you O do O not O sniff O your O roommate O 's O boxers O . O #rulesbetweenmen O RT O @WholeFoodsATX O : O Anyone O out O there O getting O excited O 4 O ' O Dazed B-movie & I-movie Confused I-movie ' O on O our O rooftop O plaza O tonight O ? O Movie O starts O at O sundown O ! O #30thBday O @cosmicblend O but O you O ARE O coming O tonight O , O right O ? O Edmonton B-geo-loc dealers O raise O $320000 O for O Special B-other Olympics I-other : O By O Tim B-person Yip I-person , O Edmonton B-other Journal I-other September O 17 O , O 2010 O 2:03 O PM O Chari O ... O http://bit.ly/b0CYjb O Photo O : O Chillo O ?? O Trying O out O for O the O 1st O time O this O shit O !! O http://tumblr.com/x0jiuemje O RT O @fredthompson O : O WH O rejects O " O global O warming O ", O favors O term O " O global O climate O disruption O ". O Ya O know O , O I O remember O back O when O we O used O to O call O it O ... O New O Trailer O For O Platinum O Games O ' O Vanquish B-product for O PS3 B-product , O Xbox B-product 360 I-product : O by O Widro B-company - O September O 17 O , O 2010 O | O Email O the O author O Direc O ... O http://bit.ly/aCPM2x O RT O @ArtVanFurniture O : O Mr B-person . I-person Van I-person sure O is O busy O today O . O Here O , O he O takes O time O to O talk O with O a O crew O from O @wilxTV O . O http://twitpic.com/2pb3i4 O RT O @BLKICE3 O : O Free O before O 10:30 O .... O Wear O All O Black O People O !!!! O http://twitpic.com/2pd1vc O RT O @GreatestQuotes O : O " O When O everything O seems O to O be O going O against O you O , O remember O that O the O airplane O takes O off O against O the O wind O , O not O with O it O ." O ... O Report O : O Michael B-person Vick I-person Will O Start O for O Eagles B-sportsteam on O Sunday O http://t.co/UqXcSXT O RT O @DubOnDaBeatz O : O People O who O gossip O remind O me O of O reporters O #nshit O always O got O da O latest O info O on O somebody O ! O Time O for O you O loose O lips O to O chan O ... O no O mins O ha O i O guess O i O aint O goin O to O town O today O ha O just O gonna O stay O and O ball O .... O Thank O you O so O very O much O EVERYONE O for O the O lovely O Friday O Follows O today O - O you O are O all O too O lovely O :) O Sorry O I've O not O had O time O to O reciprocate O xXx O RT O @BitchImYerp O : O all O the O badd O biddies O gon O have O lingerie O on O tonite O at O #obsessions O so O ima O wear O my O cheetah O print O thong O ! O lmfao O Hey O . O #dmv O . O There O is O a O march O . O 10-2-10 O onenationworkingtogether.org O for O more O info O Good O start O for O sharks B-sportsteam tonight O can O only O get O better O . O Played O with O short O bench O tonight O . O Thought O Rocks O well O in O game O early O though O until O ' O unseen O ' O tonight O was O pretty O good O :) O but O soo O coldd O :( O Bringing O this O one O back O . O From O last O March O . O On O tackles O . O On O intent O . O More O to O say O but O for O lack O of O time O , O here O 's O this O : O http://ow.ly/2G4Mb O ( O Colin B-person ) O Saturday O Night O , O Knighttime B-facility Billiards I-facility with O 4D O ! O Lets O help O Bonita B-person celebrate O her O Birthday O ! O Come O early O and O make O a O toast O ! O RT O @DouchebagMovie O : O Come O to O " O DOUCHEBAG B-other LOS I-other ANGELES I-other OPENING I-other WEEKEND I-other EXTRAVAGANZA I-other " O Friday O , O October O 8 O at O 7:30 O pm O until O < O br O / O > O Saturday O ... O my O past O was O the O reason O i O tried O to O kill O myself O the O other O day O , O and O i'll O gladly O do O it O again O . O Mr B-person Ehrlich I-person uses O bd O language O after O school O @masalaskeptic O that O 's O how O I O got O this O nickname O . O Told O I O looked O like O the O muppet O . O And O I O kind O of O did O the O same O jom O when O I O did O theatre O work O . O oh O snap O i O got O #blackandyellow O on O today O .. O just O for O wiz O aha O ! O Oh O wow O . O After O like O half O a O year O of O misaddressing O them O , O Game B-company Informer I-company FINALLY O corrected O my O label O printing O issues O . O Hope O this O one O 's O good O . O Really O wish O I O can O see O a O rocket O to O the O moon O today O . O They O would O totally O make O my O day O . O preciso O de O um O BG O do O all O time O low O ou O do O the O maine O ( O : O @FaeNathara O Yes O , O well O a O HOOT O absoroootly O because O I'm O secretly O a O hoot O , O the O rest O of O the O time O I'm O serious O ... O don't O tell O anyone O @cdellz11 O yeah O . O But O it O 's O been O so O long O . O I O miss O home O . O But O u O still O on O ur O grind O tho O . O That O 's O wassup O . O party O today O < O 3 O :) O happy O birthday O florence B-person < O 3 O @keevaguilfoyle O Wow O congrats O on O your O engagement O Keeva B-person , O delighted O for O you O & O Dave B-person !! O ( O Was O a O bit O worried O after O his O initial O muted O response O ;-) O ) O Finna O Chill O Tonite O !! O Dont O Feel O Like O Doinq O Shxt O My O Mouth O Hurts O !! O RT O @ZodiacFacts O : O #ZodiacFacts O As O an O #Aries O romance O isn't O about O what O you're O after O -- O it O 's O about O taking O chances O , O exploring O and O keeping O an O ... O Not O awful O ... O going O to O start O fresh O this O week O :-) O Soo O hungry O ! O RT O @TalibanTwon O : O RT O @bigmatt3288 O : O The O Birthday O Celebration O for O The O Boy O @Talibantwon O *Tonight* O + O #LaylaFridays O = O ZOOOVIE O J O shaken O hands O w/santana O and/fatt O lady O like O no O otherQuote O " O this O ought O to O get O my O ratins O up O before O Conan B-tvshow Get O back-Big O Jack O Off O show-1 O 4 O me O " O Mostly O clear O tonight O , O low O 63 O ( O 17 O C) O . O Sunny O Saturday O , O high O near O 86 O ( O 30 O C) O . O Tomorrow O 's O the O big O day O ! O Our O Pet O Spa O and O Adoption O Event O with O Evergreen B-company Subaru I-company is O from O 10am O to O 1pm O and O we O can't... O http://fb.me/I3aLAgtp O Because O maybe O You're O gonna O be O the O one O who O saves O me O ? O And O after O all O You're O my O wonderwall O Lohan B-person fails O drug O test O : O reports O : O Oh O no O , O LiLo B-person ! O Several O gossip O websites O reported O Friday O afternoon O that O Lindsay B-person Lohan I-person ... O http://bit.ly/aKHoZc O @iansomerhalder O before O seeing O you O , O I O did O not O believe O in O the O ancient O gods O ! O Well O , O now O I O change O my O idea O ! O you O are O the O God O of O perfection O !!!! O @rachelshaps O - O dang O ! O I O didn't O know O you O were O giving O shoutouts O ! O Haha O oh O well O . O They're O is O always O next O friday O :) O Reading O : O Tips O : O Long-press O address O bar O to O share O URL O : O Shared O by O Renee B-person Or O as O I'd O describe O it O , O a O shortcut O to O the O " O N O ... O http://bit.ly/cPZU6A O Ducks B-sportsteam sign O LW B-person Beleskey I-person to O 2-year O extension O - O San B-other Jose I-other Mercury I-other News I-other http://dlvr.it/5RcvP O #ANADucks O Beginning O what O I O hope O will O be O a O long O and O wonderful O relationship O with O it B-tvshow 's I-tvshow always I-tvshow sunny I-tvshow . O Since O I O do O own O season O 1 O and O 2 O on O DVD O already O . O @LesColyer O Who O do O you O film O for O ? O I O was O on O SKY B-other news I-other 2 O weeks O ago O #checkmeout O @snufflesgirl25 O @mo9x O Well O . O just O beg O @100monkeysmusic O .. O PLEASE O come O to O the O #SBLeurope O Next O year O !. O We O need O you O there O ! O *puss O in O boots O eyes* O omg O i O get O paid O today O yesss O RT O @Leonsays O : O Need O a O nice O chill O spot O tonight O , O no O hype O ... O Any O suggestions O ? O so O far O the O herring O is O a O success O . O definitely O needs O a O couple O more O days O though O Kk O its O 22:48 O friday O nyt O :D O really O tired O so O imma O go O to O sleep O :) O good O nyt O x O god O bles O xxxxx O mothers B-other day I-other greeting O cards O :) O Surrounded O by O Mothers B-other Day I-other and O Dreading O It O ? O http://bit.ly/a7d7tg O @ConorMc_Ginty O GaGa B-person played O here O a O few O weeks O back O . O She O spoke O out O against O SB1070 B-other during O the O show O . O God O bless O her O for O that O . O RT O @jaye403 O : O @BlackCanseco O you O know O it O is O funny O how O those O ppl O want O their O heros O remembered O ... O when O the O truth O is O are O less O than O worthy O Goodnight O and O may O peace O be O upon O you O and O yours O . O < O 3 O RT O @MarioBB9 O : O Pope B-person says O atheists O pick O and O choose O their O morals O . O Correct O . O Today O I O will O be O frowning O on O child O abuse O and O not O having O a O proble O ... O @TMCphotographs O I O know O , O but O there O are O plenty O of O mid O week O programmes O that O I O can O take O the O piss O out O of O now O the O winter O is O almost O upon O us O . O xx O @miaturner O OOC O : O Feeling O a O little O volent O today O , O huh O ? O It O sucks O when O you O waiting O for O the O bus O with O your O bike O , O then O it O shows O up O with O two O bikes O already O on O it O . O Lines O for O Tonight O 's O game O 9:00 O pm O at O Burnaby B-geo-loc 8Rinks O . O Please O note O , O these O are O not O the O lines O for O showering O tonight O ! O http://twitpic.com/2pducs O @TrustL33 O word O im O definitely O gettin O that O the O day O it O drops O RT O @cinnzcocky_yep O " O I O got O lots O of O gualllluhh O I O spend O it O " O -- O > O drinks O on O u O next O time O I O just O took O " O After O getting O trampled O at O a O Justin B-person Bieber I-person concert O , O yoiu O wake O up O and O ..." O and O got O : O Part O 6 O :) O ! O Try O it O : O http://tinyurl.com/233u5lu O como O saben O que O danger O days O es O el O nombre O del O disco O ? O Hurry O up O ! O Brandy B-person will O be O Leaving O in O 2 O days O ! O - O #Eskorte O and O #Massasje O i O #Norge O #DiggyFollows50 O @Diggy_simmons O FOLLOW O ME O PLZ O CAUSE O IM O HAVIN O A O BAD O DAY O AND O WOULD O BE O SO O MUCH O BETTER O IF O U O FOLLOWD O ME O . O BUMPING O AIRBORNE O RIGHT O NOW O RT O @LoveQuotesx O : O Have O you O ever O noticed O that O the O worst O way O to O miss O someone O is O when O they O are O right O beside O you O and O you O can O never O have O them O ? O Having O movie O night O tonight O at O the O crib O and O ur O not O invited O *BBM O sticks O tongue O out O smiley* O FRIDAY O .... O home O alone O ! O xD O wanna O join O me O ?? O I O just O had O to O step O into O my O office O ( O front O porch O ) O again O . O Lol O . O I O feel O like O everything O happening O today O is O highly O unusual O . O I O like O it O a O lot O ! O @morgancharlie O mmm O deffo O one O of O ' O those O ' O thought O provoking O days O :/ O Never O mind O , O onwards O & O upwards O we O shall O go O !! O If O I O had O known O what O I O know O now O about O truck O drivers O , O I O don't O think O I O would O have O asked O them O to O honk O as O much O when O I O was O younger O . O Yay O . O @penguin O is O coming O to O see O me O next O week O ... O plotting O my O cooking O now O ! O @KaulitzClub O Hahaha O ! O We O dance O , O eat O , O drink O , O and O talk O EVERYTIME O we O get O together O . O And O it O 's O been O this O way O for O like O years O now O ! O was O on O club B-product penguin I-product with O @twilightmarisa O till O she O decided O to O log O of O to O go O bed O and O leave O me O loool O reminded O me O of O my O old O cp O days O lol O ohh O right O ... O im O an O actor O ... O back O to O work O tonight O WOOT O Surely O mags O will O line O up O to O feature O . O RT O @peoplemag O : O Lindsay B-person Lohan I-person fails O court-mandated O drug O test O , O faces O more O jail O time O http://ow.ly/2G3R2 O RT O @JDay_Sept15 O : O RT O @Ashanie_di_Don O : O @JDay_Sept15 O lol O i O see O someone O hyped O and O ready O for O #FlavaFridays O tonight O < O every O week O . O Lets O get O it O ! O Our O Favorite O YouTube B-company Videos O This O Week O : O The B-other Drama I-other Edition I-other - O Had O any O epic O meltdowns O this O week O ? O You O know O , O of O the O crying O ... O http://ow.ly/193oP5 O Doing O " O spring O cleaning O ", O found O photo O storage O tank O that O is O 5x O size O of O my O iPhone B-product with O less O capacity O than O iPhone4 B-product ... O 4 O years O old O , O technology O ! O e O o O q O vai O ser O hj O ? O cerveja O foi O ontem O ... O que O tal O um O vinho O pra O variar O um O pouco O !! O friday O 's O celebrate O !!! O yupppppp O #asdrakesays O " O what O 's O a O star O when O his O most O important O fan O is O missing O ?" O What O a O productive O day O . O Not O . O Fellas O Don't O just O lick O the O PussyY O , O LOVE O IT O ! O enjoy O it O . O like O u O just O got O married O & O the O preacher O said O u O may O kiss O the O bride O You O all O need O to O know O justin B-person isnt O the O innocent O 16 O year O old O boy O you O think O he O is O he O has O to O be O like O that O and O ' O love O ' O his O fans O so O ... O What O game O come O on O tonight O ? O Power O nap O . O I O need O it O . O Its O been O a O stressful O week O . O I'm O excited O for O xmas B-other , O haha O . O Goodnight O . O :) O @LH_TCC O I O hope O for O All O Of O The O Lights O . O I O really O do O . O CDQ O of O Runaway O better O have O those O samples O from O when O he O did O it O Live O too O . O @Viic156 O I'm O Ocutta O Time O ps O tambn O la O amooo O peroo O la O otra O tambn O me O gustaa O RT O @yikes77 O : O @DonnieWahlberg O I O have O a O feeling O that O when O it O comes O to O you O , O you O need O more O than O just O ONE O date O . O - O YUP O !!!! O @Dazzx O I O think O you O may O have O mentioned O it O . O Once O or O twice O . O :) O Beddy O bye O for O sleepy O time O xx O @Dishfunctional O yeah O . O big O time O dancer O . O i O might O worship O her O a O bit O @erutan O Stanford B-other 's O Robert B-person Laughlin I-person ( O Nobel O Physics1998 O ) O has O a O better O explanation O than O I O have O time O to O provide O rt O now O . O http://bit.ly/9k1L4N O @MsAustinTaylor O whats O been O going O on O today O ? O Next O time O you'll O show O restraint O you O don't O get O another O chance O life O is O no O nintendo B-company game O but O you O lied O again O now O you O get O to O watch O her O leave O Not O feeling O up O to O par O today O . O #stressing O The B-sportsteam Wolves I-sportsteam to O host O the B-sportsteam Lions I-sportsteam for O game O time O ! O Follow O us O for O scores O and O updates O throughout O the O game O ! O @stefaniwashburn O Me O too O ! O I O always O get O so O full O with O chips O and O salsa O before O my O entree O comes O ? O I O like O the O Verde O salsa O the O best O ! O Done O teaching O in O Viera B-geo-loc time O for O some O eats O and O back O to O orlando B-geo-loc , O possibly O swing O dance O tonight O ! O @davidcushman O David B-person , O I O just O realised O the O other O day O you're O no O longer O at O Brando B-company ? O How O come O ? O Doing O your O own O thing O ?! O ( O ps O yeah O it O sucks O ! O ) O @SammieLynnsMom O @tg10781 O they O will O be O all O done O by O Sunday O trust O me O *wink* O RT O @hificlub O Come O get O your O blood O flowing O with O @waxromeo O & O @fordinho O at O The B-facility Heartbeat I-facility tonight O , O or O as O we O call O it O Hide-and-Go O Sikh O ! O complete O kiddie O goodness O today O . O first O a O kids O party O followed O by O a O night O at O the O circus O followed O by O another O kiddie O party O tomorrow O . O RT O @TheLoveStories O : O When O people O are O mad O at O you O , O don't O ever O forget O what O they O say O , O because O they O MEAN O every O single O word O they O say O ! O #TLS O @Zerinaakers O talking O about O as O far O as O shooting O for O location O its O going O to O be O on O #Vh1 B-company so O by O the O end O of O the O month O i O should O know O something O @raytida O Travelling O light O ftw O . O When O I O came O here O first O , O I O had O one O half-empty O books-based O suitcase O and O one O clothes-based O suitcase O . O That O 's O all O At O 7pm O we'll O show O the O Awarded O movie O " O Agora B-movie " O by O Spanish O director O Alex B-person Amenabar I-person who O directed O " O Mar B-movie Adentro I-movie " O ( O " O The B-movie Sea I-movie Inside I-movie " O ) O . O W/Rachel B-person Weisz I-person . O @AyeoKitty O ill O txt O you O soon O in O a O few O minutes O when O i O get O a O hold O of O my O phone O Friday O deal O ! O Save O 30% O on O select O new O arrivals O by O @MizMooz O . O Check O it O out O ! O http://bit.ly/cDXN4 O Today O the O mall O was O full O of O moms O who O love O scrapbooking O . O kill O me O . O RT O @OMBieberJokes O : O Little O Girl O : O Santa B-person Is O So O Awesome O ! O Me O : O No O Little O Girl O ... O You O Only O Use O The O Word O " O Awesome O " O When O You O Are O Referring O To O Just O ... O U O accused O me O of O doin O something O . O So O u O ain't O talkin O to O me O till O Wednesday O . O Ok O . O Imma O get O on O twitter B-company since O u O say O I O did O . O Now O u O mad O I'm O on O twitter B-company ! O super B-product nintendo I-product sega B-product genesis I-product , O when O i O was O dead O broke O man O i O couldn't O picture O this O ! O #nowplaying O Juicy O by O Biggie O @zombie_killer94 O aaahh O sorry O i O posted O the O link O wrong O :( O basically O their O record O company O confirmed O the O title O & O it O comes O out O nov O 23 O XD O My O mum O just O had O ago O at O me O for O not O having O a O job O when O ive O missed O 2 O years O of O school O , O and O tbh O if O im O gonna O catch O up O i O dont O have O time O 4 O a O job O ! O I O only O just O found O out O yesterday O that O KRISTEN B-person BELL I-person is O the O voice O of O #GG O : O l O @Angie_Jerez O will O u O b O attending O to O da O Mexican O parade O in O 5th O ave O dis O Sunday O ? O RT O @ChuckMetcalf O : O There O will O likely O not O be O a O proper O episode O this O week O , O but O we'll O give O you O an O update O on O the O future O of O the O show O . O dude O got O gucci B-company symbol O tatted O all O over O his O face O http://mediacheckout.blogspot.com/2010/09/nuh-uhhhhhhh-yesterday-we-showed-you.html O @JusSimplyMee O I O think O i'm O going O to O start O buying O chipotle B-product for O ONE O lucky O girl O every O week O lol O RT O @WakaFlocka1017 O : O SO O WHEN O I O GET O ON O 106 O N O JOKE O AROUND O YALL O TALK O ABOUT O ME O LIKE O A O DOG O SHAWTY O BUT O WHEN O I O BUY O 30,000 O WORTH O SCHOOL O SUPPLY O N O ... O ahhh O the O disapointment O , O after O all O them O awkward O bait O moments O . O we O need O some O time O alone O we O need O to O let O it O BREATH O RT O @Purpl3_Kiss3s O : O when O a O female O thinks O she O 's O in O love O u O cant O tell O her O shit O ! O Jackie B-person joins O Twitter B-company 50 O years O after O JFK B-person campaign O [ O AP O : O US O News O ] O http://bzbx.us/uEf O #50 O #Campaign O via O buzzbox O . O com O APO B-other disaster O relief O tomorrow O 10-12 O . O Sign O up O on O the O website O ! O @xensweetie O Ohhh O we O should O do O some O shopping O do O you O know O what O your O wearing O on O Friday O yet O ? O get O ready O to O shop O local O !! O RT O @uniqueLA O : O BIG O NEWS O to O start O your O weekend O : O Oct O 22 O @UniqueLA O will O be O opening O a O store O at O @HDbuttercupLA O . O Safety O Day O tomorrow O at O North B-facility Phoenix I-facility ATA I-facility . O Kids O Self-Defense O class O from O 12-1 O pm O , O Safety O Presentation O from O 1-2 O , O Adult O Self-Defense O from O 2-3 O . O @xoLaurenParkxo O Are O you O watching O S2 O ? O He O doesn't O get O one O after O all O . O Did O somebody O lose O their O shades O ? O Today O 's O #cutepic O winner O has O them O ! O http://twitpic.com/2pbm1d O Congrats O to O @MissMarisa22 O ! O ( O DM O us O your O addy O ) O Just O changed O my O twitter B-company background O , O check O it O out O ! O Found O it O at O http://twitrounds.com O .. O September O 17 O , O 2010 O , O 2:52 O pm O RT O @sweetwaterbrew O : O 1st O batch O of O Exodus B-product Porter I-product went O into O the O brew O house O today O ! O going O exclusively O into O the O winter O edition O of O the O tackle O ... O @BiteMe_iimKeema O OMG O ... O BUT O HOW O LONG O AGO O U O GOING O OUT O TONIGHT O : O Dan B-person is O using O his O new O course O and O made O 12'000 O Gold O in O 2 O Weeks O ! O You O can O do O it O to O ! O spon O http://tinyurl.com/364pkdn O http://bit.ly/cJfTJ8 O @MakeDaPussyDrip O ALL O DAY O @SashaGrey O i O am O your O big O fan O but O i O live O too O far O , O when O do O you O come O in O orlando B-geo-loc one O day O let O me O know O ok O Mayday O Parade O & O The O Maine O in O like O 16 O days O , O excitedddd O . O All O time O low O next O year O , O maybe O . O Shot O with O a O Jaybilizer O today O ... O my O teacher O designed O this O , O totally O sweet O ! O http://jaybilizer.com/products/jaybilizer-hdslr/ O Check O this O video O out O -- O General B-tvshow Hospital I-tvshow Spoilers O Week O 9-27-10 O & O 10-4-10 O http://t.co/GciGiuz O via O @youtube O .. O ahhh O OMG O ! O Can't O wait O to O see O this O @aaronpfenning O is O there O any O chance O we'll O be O able O to O buy O some O of O your O music O by O the O time O you O start O touring O again O ? O If O Conn B-person is O less O than O impressed O with O chevre O , O he O has O a O loyal O ally O in O his O grandscruffy O , O who O finds O it O great O when O it O 's O good O -- O which O is O rarely O . O #obsessions O tonight O ! O Ima O do O some O new O tatts O on O my O self O I O feel O like O showing O off O ! O @littlesusie12 O @4mike4ever O I O sending O a O goodnight O to O you O that O I O love O , O to O you O that O every O day O you O give O me O so O much O ... O love O anyway O tonight O was O awesome O but O @cammieahch O left O really O early O :/ O It O 's O the O fescue O turf O grass O aeration O & O overseeding O season O for O Atlanta B-geo-loc & O N O . O Georgia B-geo-loc . O Do O some O evaluation O & O planning O beforehand O , O there O 's O time O @maureenjohnson O : O Zombies O . O You O always O have O to O be O careful O because O you O never O know O when O they'll O strike O . O I O ain O wear O makeup O in O almost O 2 O weeks O @MWgirl O I O have O a O date O tonight O , O otherwise O I O would O ! O Expect O a O call O or O text O from O me O later O , O though O ;-) O @justinbieber O concert O tonight O ! O < O 3 O so O pumped O !! O :D O going O to O leave O the O concert O being O his O favorite O girl O ! O And O I O will O be O one O less O lonely O girl O ! O < O 3 O @ls_n O perhaps O , O but O folks O may O find O something O in O the O gallery O that O is O helpful O in O their O day-to-day O work O as O well O . O Even O just O to O use O it O . O George B-person N I-person . I-person Parks I-person , O UMass B-other band O director O , O dies O after O performance O in O Ohio B-geo-loc : O George B-person N I-person . I-person Parks I-person , O for O 33 O years O the O dire O ... O http://tinyurl.com/2femvgq O @Thuyenth_JB O i O made O plans O for O ur O day O , O so O no O worries O . O and O u O keep O witnessing O my O lil O frustration O moments O . O anyone O else O ever O have O a O problem O moving O a O Hyper B-other V I-other guest O from O a O server B-product 2008 I-product to O server B-product 2008 I-product R2 I-product host O ? O Having O strange O lock O up O after O the O move O .. O How O to O make O your O home O ready O for O gadgets O of O tomorrow O http://goo.gl/fb/2jPag O #digg O #Popular O well O poolnewsfeed O when O you're O good O , O you're O good O ! O Haha O watching O @littleradge O ' O s O first O blog O . O " O Probably O won't O keep O it O up O " O You O lied O big O time O Liam B-person ! O im O in O a O bar O and O ckecking O my O twit O acc O so O i O guess O its O time O to O go O home O . O When O Lari B-person and O I O went O to O Futoosh B-facility , O the O owner O gave O us O our O drinks O for O free O ! O @iKutiePie O coolen O .. O i O aint O speak O to O my O lil O baby O all O day O .. O had O to O check O up O on O u O its O a O good O year O for O a O murder O ... O RT O @Jasmynebieberr O : O Teenage B-other Dream I-other is O on O the O radio O ! O My O day O just O got O a O little O better O . O @YourboyH O cool O I'll O check O it O out O when O I O get O home O . O Reminder O : O One-day O tax O workshops O for O small O & O mid-size O tax O exempt O orgs O . O First O one O is O Sept O . O 22 O in O Detroit B-geo-loc . O Register O now O ! O http://bit.ly/a2hvAv O I O might O be O drunk O again O tonight O Bar O hopping O in O buckhead O tonight O . O ok O im O so O late O but O unpacking O finally O from O when O i O was O away O in O July O lol O ..... O como O chama O o O careca O do O All O Time O Low O , O @joeylazzari O ?? O Not O much O Twitter B-company action O here O tonight O or O morning O from O you O southern O lot O . O RT O @joejonas O : O Woke O up O in O Sacramento B-geo-loc . O The O CA B-geo-loc weather O feels O great O . O Good O workout O . O Good O Subway B-company sandwich O . O Nice O New O shoes O . O Ready O for O tonight O . O ... O Road O snow O is O expected O today O on O Milford B-other Rd I-other , O Lindis B-geo-loc Pass I-geo-loc and O Arthurs B-geo-loc Pass I-geo-loc today O http://ow.ly/2G4Re O No O warnings O for O Desert B-other Rd I-other , O Lewis B-geo-loc , O Rimutakas B-geo-loc @Nolicious O have O a O great O time O tm O x O o O x O you O will O have O so O much O fun O x O o O x O Man O i O hate O when O people O carry O ragedy O luggage O .. O ima O just O rip O it O up O more O with O the O belt O loader O #itaintmines O @tanyahowse O ok O this O may O sound O stupid O but O can O u O tell O them O jedsweemonster O says O hi O :' O ) O @ShawanaA O It O did O me O t O o.I O was O so O sympathtic O to O her O when O I O frst O hrd O this O . O When O she O blmd O a O AA O for O it O realy O pis'd O me O off O . O Someone O copied O her O hoax O IG O | O Nieuws O : O Football O Manager O 2011 O komt O op O 5 O november O ( O PC O ) O http://bit.ly/aKe1HL O We O thank O you O for O your O interest O and O consideration O and O we O look O forward O to O working O with O you O this O year O at O the O 20 O ... O http://tinyurl.com/27ypv4o O I O jus O saw O his O ass O lol O RT O @BLikeHer O Ima O get O my O lil O brother O wasted O tonight O . O I O love O seeing O the O U.S. B-facility Capitol I-facility building I-facility in O my O rearview O mirror O when O I'm O driving O home O from O work O . O #ILoveDC O Going O to O this O fish O fry O after O work O , O even O though O I'm O tired O as O hell O . O Food O trumps O sleep O though O . O @vivarocks777 O just O giving O a O hard O time O so O don't O hurt O me O I O hope O the O weeks O keep O flying O . O It O 's O actually O fantastic O the O way O none O of O the O days O dragged O this O week O .... O like O NONE O . O :D O @WutieBooty O her O album O just O debuted O in O May O 2010 O & O is O getting O more O popular O each O day O . O Wait O until O after O the O Glee B-tvshow premiere O & O Charice B-person 's O will O soar O !! O Top O 10 O Best O Personal O Finance O Books O of O All O Time O ! O | O Personal O Finance O ... O http://bit.ly/cAEI7h O @NiccoleG O when O you O coming O to O grandma O house O ? O Tonight O is O Theeeeeeeeeee O niiiiiiiiiight O ;) O . O *Gwen B-person Stefani I-person voice* O :] O . O Vanilla B-product vodka I-product infusion O is O done O . O Two O weeks O from O now O so O will O the O apple O :) O struggled O in O locating O parent O room O there O and O found O out O it O was O closed O when O we O were O there O finally O . O @hannahhhh_ O hehee O love O for O them O . O I O have O undying O love O for O a O lot O of O people O today O . O Love O turns O my O world O around O . O Can't O trust O anyone O these O days O :/ O RT O @Desbishop O : O Just O about O to O go O on O the O Late O Late O . O After O some O angel O bullshit O All O day O http://plixi.com/p/45666421 O @usnOOzin O Ahh O Steve B-person , O you're O so O good O to O me O , O every O week O . O #FF O . O Thanks O so O much O . O How O 's O the O wife O recovering O ??? O @WEConVERSUS O Sick O fight O ! O I'll O take O my O boy O #aldo O all O day O ! O Goodnight O twitterland O !! O seee O you O tomorrow O :) O Michael B-person I O love O you O more O than O my O life O ... O the O biggest O kiss O for O you O my O love O !!! O :D O L O . O O O . O V O . O E O too O lazy O to O go O to O school O today O .. O oh O well O , O i O have O no O choice O .. O Comets O circle O the O universe O and O every O few O hundred O yrs O it O takes O photos O of O progress O Time O out O there O id O different O than O close O up O You O know O , O we O got O to O thinking O . O We've O been O ragging O on O poor O M B-person . I-person Night I-person for O weeks O now O and O perhaps O , O just O perhaps O , O we're... O http://fb.me/v87NJfkO O Who O 's O going O to O win O one O of O our O travel O mugs O ? O There O 's O still O time O to O enter O but O now O much O ~ O http://ht.ly/2G4tn O #win O #giveaway O RT O @cityroom O : O The O Week O in O Pictures O for O Sept O . O 17 O http://nyti.ms/9SCejx O @daxx_d24 O best O feeling O in O the O world O twice O this O week O . O Got O 3 O more O on O the O way O lmao O i O cant O stop O Let O 's O go O Yanks B-sportsteam ! O Sad O that O I O can't O go O to O the O game O tonight O ... O but O super O excited O to O spend O the O weekend O in O Happy B-geo-loc Valley I-geo-loc ! O Comment O of O the O Day O : O The O Depths O of O Poverty O [ O We O Read O You] O : O @jimmyfallon O is O following O me O ! O OMG O ! O My O life O is O now O complete O ! O I O heart O you O JF O and O have O for O years O ! O Thank O you O for O making O me O laugh O everyday O ! O A O FUN O movie O for O the O kids- O Alpha B-movie & I-movie Omega I-movie ( O PG O ) O Friday O 5:00 O , O 7:00 O , O 8:45 O , O Saturday- O 1:30 O , O 3:15 O , O 5:00 O , O 7:00 O , O 8:45 O ,... O http://fb.me/IiraJpe3 O Great O week O in O the O Optimise B-company office O , O another O new O client O on O board O and O we O are O close O to O signing O a O new O team O member O 'On O set O filming O Chris B-person " O Rainy B-other Days I-other " O video O . O This O is O the O final O scene O then O we O can O finally O edit O it O .' O The O ppl O who O organized O the O dept O . O picnic O at O 1 O on O Sunday O clearly O didn't O want O me O to O go O or O they O wouldn't O have O scheduled O it O during O a O Packer B-sportsteam game O . O Ok O , O I O lied O about O the O Cachupas B-product ... O they O didn't O get O made O ... O tomorrow O ... O maybe O ( O need O I O remind O you O that O we O reserve O the O ... O http://fb.me/I0ogMBll O Ew O wait O baq O da O fuq O up O . O I O have O to O look O after O Michael B-person and O his O friend O ... O JOY O . O -___-op O @jenilynnsimpson O next O time O we'll O share O a O bottle O That O 's O when O you O start O to O laugh O . O Saying O I O just O want O what O I O can't O have O . O Won't O even O give O me O a O chance O . O I O favorited O a O YouTube B-company video O -- O Water B-other by O Testing B-musicartist Tomorrow I-musicartist http://youtu.be/htAM7lgcelw?a O So O tired O ! O Someone O said O I O have O no O life O today O :( O they O said O they O were O joking O but O still O it O made O me O mad O lol O Why O is O it O that O I O can O sleep O when O I O shouldn't O be O but O not O when O I O should O be O ??? O Whats O wrong O with O all O these O girls O tonight O !!! O RT O @mashable O Our O Favorite O YouTube B-company Videos O This O Week O : O The O Drama O Edition O http://bit.ly/9duvYG O #SMM O RT O @oceanbutterfly7 O : O Sweet O spirited O : O U O brighten O my O day O !! O @kalnok O @Realtorkeita O @SaintDC O @angelgrace226 O @Anita316 O @Leters4theLord O @GlyndiA O ... O I'm O a O little O too O excited O to O be O a O social O media O goy O tomorrow O . O Cleveland B-sportsteam Browns I-sportsteam ( O Official O Site O ) O > O > O Delhomme B-geo-loc doubtful O for O Sunday O http://buzztap.com/-tgXgig O OH-OH O It O seems O Lindsay B-person Lohan I-person maybe O be O heading O back O to O jail O . O The O actress O has O failed O a O court O mandated O drug O test O & O could O face O 30 O days O in O prison O @valovanity O hahah O . O Speaking O of O , O when O are O you O planning O the O savannah O trip O ? O Like O , O budgeting O it O out O and O whatnot O . O 'RT O @cobraxcobrax O : O Today O is O the O last O day O !! O " O Like O " O us O on O Facebook B-company , O get O entered O to O win O 3TB O using O USB O 3.0 O . O Easy O . O http://ow.ly/2FXM2 O #tech' O RT O @RespectJustinB O : O t.v O : O text O Justin O to O 28 O 28 O 2 O to O get O all O Justin B-person features O ! O me O : O *pics O my O phone O up* O t.v O : O just O 9.99 O $ O a O month O . O me O : O *puts O ph O ... O Just O waking O up O and O about O 2 O clean O 4 O my O mom O 's O pre-wedding O dinner O or O rehearsal O dinner O whatever O it O call O this O weekend O . O Then O on2 O study O time O ... O @plzsaythekittie O your O hair O is O long O as O fuck O and O i O didnt O get O to O pull O that O shit O yet O i O hate O when O i O dont O have O any O change O for O the O customers O .. O RT O @fucking_way O : O A O gente O acostumou O a O escrever O I O Brought O You O My O Bullets O I O Brought O You O Me O Your O Love O , O Danger O Days O :: O The O True O Lives O Of O The O Fa O ... O Icecream O time O ! O #baskinrobbins O @TulsaTornado O Yeah O , O I'm O not O worried O . O Yet O . O When O I O hit O 30 O , O maybe O I'll O be O worried O then O :) O Bloggers O : O Who O are O you O writing O for O ? O | O Social O Media O Today O http://bit.ly/9mY0NK O In O the O day O of O prosperity O be O joyful O , O but O in O the O day O of O adversity O consider O . O Ecclesiastes B-other 7:14 I-other #JESUS O #TRUTH O #jesustweeters O First B-other Day I-other of I-other Autumn I-other Networking I-other Mixer I-other at O Dick B-facility 's I-facility Carpet I-facility next O T O ... O http://conta.cc/ap95gL O via O #constantcontact O Men O 's O soccer O vs O . O Crown B-sportsteam College I-sportsteam at O home O tomorrow O at O 2 O pm O . O Come O support O your O Eagles B-sportsteam ! O Praying O for O you O guys O ! O RT O @IlliniCampusRec O : O Orange B-other & I-other Blue I-other Skate I-other tonight O , O 7:30 O - O 9:30 O pm O ! O Free O for O UI B-other faculty/staff O & O their O immediate O families O . O http://bit.ly/c1M8dr O In O the O last O 7 O days O , O I O lost O 10 O followers O and O I O caught O them O all O with O http://who.unfollowed.me O #whounfollowedme O I O couldn't O even O make O it O to O Sunday O http://twitpic.com/2pe22y O BORDER B-musicartist LINEA I-musicartist IS O TONIGHT O ! O 9 O p.m. O to O 2 O a.m. O NO O COVER O . O Come O by O and O see O local O musicians O and O artists O showcased O at O Limelight B-facility on O St B-geo-loc . I-geo-loc Mary's. I-geo-loc I O feel O like O there O was O something O i O as O suppossed O to O do O today O .... O Amazing O . O And O encouraging O . O RT O @SusannahFox O : O 36,000 O #bluebutton O downloads O for O VA O health O records O in O 1st O 10 O days O ! O So O tired O .. O Goodnight O twitter B-company ! O tty O tomorrow O AI O : O DEMAND O RELEASE O FOR O SYRIAN O BLOGGER O : O 17-9-2010Tal O al-Mallohi B-person , O a O 19-year-old O Syrian O woman O , O has O been O held O incommun O ... O http://bit.ly/aDG3ub O RT O @jjburdett O : O Most O Important O Election O in O years O . O RECLAMATION O ! O @marcorubio O @sharronangle O @seanbielat O So O today O at O the O doctor O , O I O learned O I O gained O muscle O weight O . O I O swear O it O has O to O be O all O in O my O ass O ! O @SeanKingston O Hey O sweety O have O a O great O , O relaxing O time O :) O Hugs O to O you O ! O @BSaltzberg O hahahahaha O , O first O vacation O in O probably O 20 O years O that O she O left O her O pillows O at O home O ! O SHOCKING O ! O Selling O a O home O : O Strategies O for O selling O in O a O slow O market O : O by O Denise B-person Calaman I-person The O July O 2010 O housing O market O sales O repo O ... O http://bit.ly/d1xAoc O Had O a O little O bit O of O a O panic O attack O at O the O end O of O my O shift O today- O I O was O cleaning O at O the O bar O and O then O a O bigass O spider O appeared O out O of O nowhere O . O @syriusgemini O Those O were O the O days O .... O sadly O it O turned O into O #killthecheerleader O #saveaviewer O Band B-facility hall I-facility . O Game O time O . O Lets O get O it O . O Made O it O home O . O How O long O will O I O last O before O I O fall O asleep O ? O Every O time O I O watch O Donnie B-person Hathaway I-person 's O Unsung B-other I O just O get O speechless O in O amazement O . O He O would O be O sooooo O proud O of O his O children O if O he O were O alive O Dollar O steady O versus O yen O but O market O wary O of O intervention O | O Money O ...: O The O dollar O held O near O its O highest O in O a O month O ... O http://bit.ly/a0F3dO O St B-other . I-other Luke I-other 's I-other emergency O department O wait O time O is O approximately O 12 O minutes O . O Why O is O twitter B-company dead O ? O Oh O yeah O , O that O 's O right O , O other O people O have O lives O on O Friday O nights O . O I O had O a O substitute O today O that O looked O like O @thedillon O from O the O side O of O his O face O . O Haha O I O was O rotfl O at O lunch O today O . O xD O My O BFF O & O I O sat O next O to O these O 2 O boys O , O Shane B-person & O Jonah B-person . O And O this O girl O , O Claire B-person . O ( O cont O ) O RT O @Gina_says_xo O : O Football O and O partiesss O . O This O is O the O only O thing O I O love O about O the O school O year O . O < O 3 O Shirt O before O the O shirt O Lelystad B-geo-loc - O za O 18 O sep O - O Schrijfster O en O tekenaar O van O Vos O en O Haas O in O FlevoMeer O Bibliotheek O Lelystad O : O #boomagenda O http://bit.ly/9KzGNu O @EBArchDesign O Thanks O for O the O #FF O ! O I O hope O you O have O a O great O time O tonight O ! O Snooth O Talk O : O Zinfandel O Port O : O This O week O is O all O about O Zinfandel O , O and O just O last O night O I O released O a O post O on O Zinfandel O ... O http://bit.ly/972Sik O @keevaguilfoyle O you O know O you're O loved O when O @shabbyofficial O gets O a O new O hat O in O your O honor O . O @therowdydog O Me O neither O . O It O 's O tough O to O get O away O . O There O is O one O Tuesday O in O AUS B-geo-loc and O the O one O in O RR B-geo-loc on O Friday O . O We O should O go O so O I O have O a O friend O ! O RT O @DGCLEAN O : O This O weeks O daily O Deal O is O a O twofer O 1 O : O window O cleaning O $4 O per O window O with O a O $100 O minimum O or O as O an O add O on O to O a O ...... O Ah O a O Friday O night O free O ! O Avin O a O drink O with O friends O . O Lent O the O T4 O to O friend O to O camp O in O . O Off O camping O to O Robinhoods B-geo-loc bay I-geo-loc In O Jasmin B-geo-loc . O Good O weekend O How O sweet O ! O RT O @midnight_sky33 O Seeing O my O son O face O when O his O bus O driver O gave O him O a O positive O bus O behavior O token O the O other O day O was O #pricelesstome O @Elcartoonifyer O really O ? O Jeff B-person told O me O he O was O going O there O tonight O too O ... O A O week O in O New B-geo-loc Jersey I-geo-loc , O of O all O places O , O and O I O never O want O to O hear O a O *Boston* B-geo-loc accent O again O . O RT O @nickjonas O : O Just O arrived O in O Sacramento B-geo-loc ! O What O a O beautiful O day O . O On O our O way O to O @IF3 O !!! O This O won't O be O a O party O for O juniors O tonight O ! O Lesson O Learned O for O today O . O Sometimes O making O changes O is O unnecessary O . O Some O people O don't O necessarily O need O to O be O taken O out O of O their O comfort O zone O Showering O real O reallll O quick O . O This O tweet O is O for O anyone O that O tries O to O text O me O when O I'm O in O the O shower O Field O trip O today O was O awesome O ! O :D O RT O @BunBTrillOG O : O Okay O #teamtrill O time O to O show O them O our O power O ! O #BunB106andPark O needs O to O trend O now O ! O RT O til O it O hurts O ! O I O got O ya O twitter B-company jail O ... O iz O gettin O a O eye O full O of O pussys O tonight O . O Support O Your O Local O Op O Shop O - O Only O 4 O days O left O ! O http://post.ly/yCqH O RT O @el_frawg O : O I'm O not O really O good O at O history O . O I O once O went O back O in O time O and O killed O Charlie B-person Chaplin I-person . O @GirlinCali79 O tape O him O . O that O would O be O great O for O YEARS O later O !!! O RT O @Hatshepsutely O : O @adamlambert O please O , O oh O please O wear O the O infamous O beach O hat O tonight O during O your O encore O ( O in O lieu O of O a O rasta O wig) O . O < O 3333 O some O freshies O sat O at O our O lunch O table O today O . O so O i O sat O with O them O and O talked O with O them O about O .. O stuff O . O moving O to O the O UK B-geo-loc in O approx O 12 O days O @tsykoduk O that O was O yesterday O and O @RandomGemini O he O already O has O one O . O :-) O 1 O week O til O my O birthday O !! O @Mandiiemars O she O is O asleep O will O do O when O she O wakes O up O lol O i O already O miss O u O :( O A O Twisted O two O nighter O in O London B-geo-loc NOVEMBER O 18 O ... O Younger B-musicartist Brother I-musicartist ( O Live) O , O Shpongle B-musicartist ( O Simon B-musicartist Posford I-musicartist DJ O set O ) O and O other O ... O http://fb.me/Hqwb7kzG O 'RT O @ItsTheTeenLife O : O I O remember O when O myspace B-company was O a O big O " O who O has O the O most O free O time O on O their O hands O to O make O their O page O look O the O coolest O " O comp O ...' O taken O a O few O minutes O ago O what O do O u O think O ??? O :) O http://twitpic.com/2pdsi9 O @LulaBurlesque O You're O in O our O mosaic O ! O Be O sure O to O watch O the O premiere O show O Monday O 9/13 O . O Find O yourself O here O http://bit.ly/EllenMosaic O @emmarose99 O hows O ur O day O ? O Approximately O two-thirds O of O people O tip O their O head O to O the O right O when O they O kiss O BoiRevolution O : O After O Dark O ! O Mondays O @ O 11pm/EST O . O Only O on O www.blogtalkradio.com/boi-revolution O ( O RETWEET O PLEASE O ) O #MuchLove O to O my O baby O girl O ! O 10.20 O . O 09 O !! O One O year O here O we O come O ! O i'm O definitely O eating O tacos O for O dinner O . O the O update O for O green O may O or O may O not O have O had O something O to O do O with O it O ... O Been O a O rough O day O . O On O my O third O Dortmunder B-product Gold I-product . O 'i O really O wanna O see O @MyBrodasKeepa_ O today O " O /' O Son O popping O of O to O school O , O anybody O want O a O shoutout O before O i O go O ? O just O ask O , O and O ill O provide O . O #futbol O > O Newcastle B-sportsteam Jets I-sportsteam Youth I-sportsteam v O AIS B-sportsteam U21 I-sportsteam @ O 18 O Sep O 04:00 O - O precios O actualizados O ! O http://bit.ly/dBJacr O #apuestas O Show O tonight O !!! O Is O this O rubbish O or O what O !? O 441 O free O texts O , O 588mins O and O only O two O days O to O use O ' O em O . O http://twitpic.com/2pdxm4 O Ahhhh O ! O Omg O . O Just O saw O a O preview O for O episode O one O of O season O six O of O Criminal B-tvshow Minds I-tvshow ! O Can't O wait O for O next O week O ! O Find O us O at O Tipitina B-facility 's O tonight O and O mention O that O you're O following O us O on O Twitter B-company and O get O a O FREE O Fried O Mac O N O ' O Cheese O ball O with O any O order O ! O RT O @WeScreamAlex O : O LET'S O ALL O GET O WASTED O TONIGHT O OK O ? O @ImBieberGuy O If O you O would O die O tomorrow O what O would O you O do O on O your O last O day O here O on O earth O ahaha O ? O What O a O dramatic O question O :p O @joejonas O Yay O , O I'm O so O glad O you're O here O ! O I O can't O wait O to O see O you O & O the O Bros O tonight O ! O It O 's O my O sons O ' O first O concert O !!! O Sing O to O SECTION O 204 O !!! O #BlackHoliday O Marvin B-person Gaye I-person Day O RT O @TeenThings O : O I O love O waking O up O in O the O middle O of O the O night O knowing O i O have O more O time O to O sleep O . O #teenthings O #comedownwithlove O Okay O , O I'm O kinda O proud O . O I O finished O the O first O 8 O books O of O the O True B-tvshow Blood I-tvshow novels O in O 8 O days O . O I O don't O get O when O people O say O when O Justin B-person gets O a O gf O that O should O be O me O will O be O #1 O I'm O pretty O sure O almost O all O bieber B-person fans O have O it O already O . O 8 O ) O RT O @INTERMIX O : O Shopping O on O the O High O Holy O Days O . O Retail O , O repent O , O retweet O . O business O technology O today O http://bit.ly/9cugk1 O Cyber-Ark B-company to O Showcase O Business O and O Compliance O Advantages O of O Privileged O Identity O Managem O ... O ;O O Wake B-person , O Davidson B-person , O Charlotte B-person and O NC B-other St I-other . O have O all O been O in O to O check O out O 2012 O pg O Tyler B-person Lewis I-person since O contact O pd O began O . O UNC B-other will O be O there O next O week O . O 'Come O to O " O MRB B-other @ I-other 61 I-other Roadhouse I-other BBQ I-other " O Sunday O , O October O 10 O from O 12:00 O pm O to O 4:00 O pm O . O We O are O playing O for O the O 61 O Roadhouse O ... O http://fb.me/G1FbJGw1' O its O time O for O the O devil O to O dance O . O . O . O @colinake O Have O a O safe O trip O home O . O hopefully O next O time O you O will O be O able O to O see O some O of O the O really O good O stuff O at O KSC B-geo-loc . O Today O was O amazing( O : O go O Jackets O ! O I O want O sum O steak O ! O George B-person Hitchcock I-person , O Kayak B-person Magazine I-person Founder O , O Dies O at O 96 O : O George B-person Parks I-person Hitchcock I-person was O born O on O June O 2 O , O 1914 O , O in O Ho O ... O http://tinyurl.com/249srz6 O I O think O i O might O get O 8,000 O tweets O today O RT O @dengshot O Mochi O waffles O ! O @ O new B-facility Teaze I-facility cafe I-facility by O the O library O ! O Try O two O for O $4 O w/ O today O 's O #IndulgeLivingVA O deal O ! O http://tinyurl.com/2fd6yba O #thiswomaniscrazy O she O speeding O on O the O highway O tryna O catch O to O a O car O that O cut O her O off O 10mins O ago O while O waving O a O bat O ! O With O Kirsten B-person ( O : O going O to O Dicks B-facility tonight O . O A O guy O at O work O calls O me O Larry B-person Bird I-person when O I O shoot O hoops O in O the O break O room O . O Should O I O call O him O Joel B-person Ward I-person if O he O 's O playing O air O hockey O ? O #profiling O . O @LinnySmit O Linny O Linny O Linny O . O U O are O something O lady O ... O Well O that O story O has O been O on O hold O for O weeks O now O hasn't O it O ? O I O want O to O get O on O it O this O > O > O Tonight O ! O Homemade O ice O cream O flights O -- O try O 3 O of O chef O Tim B-person 's O boozy O ice O cream O creations O ! O And O #nowplaying O With B-other You I-other - O Delirious B-musicartist ? O [ O World O Service O ] O May O our O Lord B-person Jesus I-person be O with O u O , O watching O over O & O directing O u O . O Have O a O lovely O night O , O all O ! O going O to O have O to O go O to O bed O before O i O cry O . O wish O you O would O make O an O effort O to O be O there O for O me O like O i O am O for O you O . O RT O @WakaFlocka1017 O : O SO O WHEN O I O GET O ON O 106 O N O JOKE O AROUND O YALL O TALK O ABOUT O ME O LIKE O A O DOG O SHAWTY O BUT O WHEN O I O BUY O 30,000 O WORTH O SCHOOL O SUPPLY O N O ... O @bougiemagazine O You O are O really O showing O out O today O lol O . O @barbieryan O I O get O to O tomorrow O ! O Oh O wait....I'm O getting O my O hair O cut O ... O fail O Ceremony O Sunday O to O mark O Battle B-other of I-other Britain I-other http://dlvr.it/5RhwW O What O do O you O do O when O you're O stuck O because O the O one O that O you O love O Has O pushed O you O away O , O And O you O can't O deal O with O the O pain O . O @MixedUpMatty O he O should O be O out O wednesday O .. O @carolermp O ;) O did O you O read O about O my O mealworm O prank O the O other O day O ? O ;) O @jenniehales O wat O u O up O to O tonite O . O My O mob O won't O let O me O txt O fs O . O Xxx O GUYS O IF O YOU O WNNA O BE O IN O AN O AWESOME O FAN O BOOK O . O TWEET O @JedwardsAngel O AND O WE'LL O SORT O IT O OUT O . O WE'VE O GOT O 15COOOOL O IDEAS O WHEN O WE O SEE O THEM O !: O D O RT O @iSplashInYoMouf O : O RE*TWEET O IF O YOU O DRINKING O TONIGHT O ? O Serious B-company Eats I-company : O Leftovers O : O The O Day O 's O Stray O Links O #Food O http://portfo.li/t/7/rjE O RT O @Lexus4u O : O OK O SO O WE O ARE O HAVING O A O POOL O PARTY O TONITE O , O HOPEFULLY O I O CAN O C O SUM O EYE O CANDY O ! O LOL O My O mama O just O surprised O me O on O ring O day O !! O Ahh O today O just O got O so O much O better O ! O Day O 27 O - O Day O 27- O Why O are O you O doing O this O 30 O day O challenge O im O doing O this O because O i O am O bored O :) O http://tumblr.com/xooiuell3 O @Wes0010 O good O idea O ! O i O have O some O i O found O in O the O golf O bag O i O just O received O from O my O aunt O who O died O 21 O years O ago O ! O Its O 3 O o'clock O on O my O first O day O in O Vegas B-geo-loc and O I O am O already O drunk O and O just O sang O meatloaf B-person at O karoke O . O @Emmas76 O have O i O missed O anything O these O last O 2 O weeks- O how O 's O music O practice O going O ? O @DudeImSuchATeen O Ooo O I O do O !! O It O would O make O THiS O day O better O :-/ O @xiaomai_ O Kom O deze O maand O denk O ik O niet O , O next O week O Parijs O , O en O allemaal O toetsen O en O presentaties O enzo O > O . O < O '.... O Well O had O the O weigh O in O today O . O I've O lost O a O pound O !!! O I've O had O no O alcohol O , O no O puddings O , O no O crisps O , O no O chocolate O & O I've O only O lost O a O pound O !!!!! O @maeband O I'm O so O excited O to O see O you O guys O on O Oct O . O 12th O at O the O Southgate B-facility House I-facility ! O I've O been O listening O to O you O since O D O : O B O . O Your O so O amazing O !! O been O listenin O to O trey B-person alllll O week O ... O can O u O luv O someone O u O never O met O ?? O bcuz O i O think O im O in O luv O yeeuuuuppp O !!! O Last O day O #birdgang O in O full O force O !!! O Sunday O 10:00 O am O get O yo O popcorn O ready O @ddockett O will O dominate O ! O well O my O 700th O tweet O was O 3 O tweets O ago O . O gym O tonight O because O I O was O a O slacker O last O night O and O went O out O to O dinner O instead O of O working O out O #fb O '" O come O on O its O Friday O night O ... O shes O dreaming O whoa O oh O oh O oh O dreaming O of O a O weekend O whoa O oh O oh O oh O "' O @terryronald O Hello O mate O hows O you O ? O Long O time O no O tweet O What O you O been O up O to O ? O Hows O the O book O ? O Bouncing O my O ass O like O thrs O no O tomorrow O RT O @iLL87WiLL O : O When O trey B-person songz I-person was O a O kid O his O mother O probably O went O did O you O do O your O homework O ? O And O he O probably O went O #YUPPP O lol O Dear O sun O , O it O 's O approaching O the O end O of O September O and O seriously O , O you're O still O unbearable O . O Give O Arizona B-geo-loc a O break O . O Love O , O Mackenna B-person @since1938 O @Kimmiecoomd O Kudos O to O them O , O Lois B-person was O always O " O there O 's O something O about O you O .. O whatever O tell O me O when O you're O ready O " O thing O . O RT O @MirandaBuzz O : O Last O day O of O this O season O !!! O Next O season O I O hope O I'm O driving O myself O to O work O ! O Gonna O miss O everybody O like O crazy O :) O @Mys_Perdita O ha O ye O theyr O may O be O severe O consiquences O of O our O meeting O like O the O waypeople O talk O bout O theday O sum1 O told O adolf O he O wasnt O blond O enuf O : O S O @SofieB_ O Hah O ! O That O 's O the O one O programme O my O dad O and O I O watch O together O every O week O ! O Are O you O ready O for O the O shield O game O tonight O at O 7 O ? O Friday O night O is O the O best O cus O u O know O the O nest O day O u O can O rest O !!!!! O :D O Honestly O what O is O wrong O with O kids O today O . O On O a O packed O t O and O there O are O 2 O older O ppl O ( O 1 O w/ O a O cane O mind O you O ) O and O nobody O gets O up O to O let O them O sit O !! O I'm O being O stalked O by O @thisisiceland O . O I O saw O this O when O I O opened O flipboard B-company just O now O . O http://yfrog.com/eir70oj O Our O Favorite O YouTube B-company Videos O This O Week O : O The O Drama O Edition O http://bit.ly/aYSci6 O | O mashable O Very O bad O day O . O For O the O late O Friday O p.m. O crowd O { O all O 3 O of O you} O ! O On O the O blog O today O ... O Creative O invitation O wording O for O different O situations O ! O http://ow.ly/2G4Bm O Thank O you O for O all O your O support O . O Best O wishes O from O DUKETERS'S..have O a O nice O day O 'I O just O took O " O After O getting O trampled O at O a O Justin B-person Bieber I-person concert O , O yoiu O wake O up O and O ..." O and O got O : O Part O 1 O :) O ! O Try O it O : O http://tinyurl.com/3alx5up' O cant O believe O her O brother O is O leaving O for O uni O tomorrow O ! O He O 's O taking O all O the O best O dvds O ! O You O know O you O should O be O living O somewhere O when O you O know O that O place O front O and O back O without O living O there O . O Yay O , O just O ordered O new O tragus O bars O :) O Hopefully O they'll O arrive O on O Monday O '@jennkorducki O http://twitpic.com/2pcj44 O - O Ah O this O made O my O national O " O holy O crap O " O day O even O better O :)' O If O this O beer O list O doesn't O make O your O head O spin O , O it O will O tomorrow O when O we O ADD O MORE O !... O http://fb.me/GVhHzbMR O '@Lovelylanvin O Oh O ugh O . O Should O never O do O #ff O before O coffee O . O You O should O have O been O in O the O " O tweeps O who O are O friends O IRL O " O Sorry O !' O Oh O before O I O forget O good O luck O also O to O the O cherry O and O whites O against O London B-sportsteam Irish I-sportsteam . O Only O a O win O will O do O . O Gives O me O more O excuses O to O celebrate O ! O @glasgirl O Lol O . O How O were O things O today O , O love O ? O Oh O my O goodness O , O I O thought O by O Friday O evening O one O 's O supposed O to O breath O easy O , O but O at O the O moment O this O is O sadly O not O the O case O . O Here O we O go O , O Friday O night O craziness O Just O as O i O have O pointed O out O to O our O readers- O The O Canadian O Markets O offer O so O much O opportunity O . O Gabriel B-company Resources I-company shares O shoot O up O after O Romania B-geo-loc mo O I O stopped O listening O to O this O lecture O like O 20mins O ago O ... O #sad O David B-person 's O new O season O celery O @OrfordMarket O tomorrow O , O plus O local O apples O from O High B-company House I-company Farm I-company = O mighty O fine O local O Waldorf O Salad O . O Yes O please O . O @xxTeamJosiexx O Do O you O know O when O its O on O babe O ? O x O Seeyas O all O in O a O week O . O Off O to O ( O hopefully O ) O a O slightly O warmer O place O ... O or O not O . O x O @x_mayy_x O tu O vai O no O show O may O ? O wow O i O just O noticed O i O always O feel O different O everyday O yesterday O i O was O depressed O , O and O today O im O happy O i O wonder O wat O tom B-person . O is O ...... O random O much O ? O Our O Favorite O YouTube B-company Videos O This O Week O : O The O Drama O Edition O : O Had O any O epic O meltdowns O this O week O ? O You O know O , O of O the O cryin O ... O http://bit.ly/bwop5U O @ChristineCaine O please O pray O for O my O hubby O & O I O , O u O spoke O a O promise O over O us O years O ago O , O I O pray O that O come O to O pass O and O my O hubby O stay O rooted O in O JC O x O looks O like O its O my O byza-bedtime O ! O hope O to O fuck O that O ema O is O in O tomorrow O ! O two O auditions O in O one O day O , O it&#39 O ; O s O almost O as O if O I O am O a O real O actor O The O last O time O I O chatted O with O Kyle B-person was O June O . O The O last O time O we O emailed O was O August O . O RT O @ZodiacFacts O : O #ZodiacFacts O As O an O #Aries O romance O isn't O about O what O you're O after O -- O it O 's O about O taking O chances O , O exploring O and O keeping O an O ... O @jemelehill O I O hit O that O JL B-person joint O when O it O came O out O , O he O does O Teddy B-person P I-person proud O on O Wake O Up O ! O @milaceccato O hahah O yeah O ! O My O bestie O & O I O met O his O dad O too O & O were O seeing O him O I O think O on O Monday O were O not O sure O yet( O ; O Why O Your O Homepage O May O Matter O Less O Than O You O Think O http://t.co/dNyFfPP O via O @TMGmedia O RT O @MARLONLWAYANS O : O Happy O Yom B-other Kippur I-other to O all O my O Jewish O friends O . O Black O people O need O a O Leroy B-other Jenkins I-other Day I-other . O We O need O some O days O off O too O volleybaltraining O was O super O leuk O ! O volgende O week O 1e O wedstrijd O RT O @WakaFlocka1017 O : O SO O WHEN O I O GET O ON O 106 O N O JOKE O AROUND O YALL O TALK O ABOUT O ME O LIKE O A O DOG O SHAWTY O BUT O WHEN O I O BUY O 30,000 O WORTH O SCHOOL O SUPPLY O N O ... O RT O @Sexstrology O : O Pisces O tend O to O escape O into O fantasy O and O day O dreams O . O There O they O are O free O . O RT O @LeadToday O : O Authentic O leaders O don't O blame O other O people O when O they O make O a O mistake O . O RT O @kiera16_x O : O #Twitition O HELP O us O meet O Justin B-person Bieber I-person on O November O 6 O ( O : O THANKYOU O http://twitition.com/oxm5g O @MariaMdn O i O swear O when O you O miss O 1 O day O of O school O , O feels O like O you O missed O a O whole O year O ! O dont O even O have O homwork O today O , O suprising O ? O Thrilled O about O this O @HPC//RT@DeLynnRizzo O : O girls O , O register4 O #livethedream O @joycemeyer O , O J B-person John I-person , O @kerriweems O oct O 7-9 O . O livethedreamconference O . O com O Stop O by O the O COLLEGE B-other REPUBLICAN I-other TAILGATE I-other tomorrow O @ O 9:30 O in O Yellow O Lot O 17 O for O FOOD O before O the O game O RT O @OscarBlandi O : O That O time O again O ! O #FreebieFriday O Be O the O 15th O RT O < O get O your O hands O on O a O free O travel O size O pronto O invisible O dry O shampoo O ! O Oh O yeah O ! O Probably O hairdresser O tomorrow O , O and O for O sure O meet O Levin B-person , O Hien B-person < O 3 O and O Fabi B-person . O 'll O have O a O great O daaaaay O < O 33 O good O friday O whatchu O got O for O me O @kanyewest O I O think O that O today O the O party O has O been O canceled O makes O too O much O air O in O the O street O loll O . O miss O u O twitfriends O . O xx O I O may O have O been O wrong O about O Murkowski B-person , O look O like O she O 's O going O to O turn O Friday O news O dump O on O its O head O . O three-way O race O reportedly O ahead O in O AK B-geo-loc . O @rattleknackers O amusing O ? O This O is O some O of O the O greatest O music O of O all O time O , O my O foot O has O n't O stopped O tapping O all O night O Salty O i O broke O one O of O my O favorite O Betsey B-person Johnson I-person necklaces O today O !! O cant O wait O to O see O my O beautiful O neice O nx O week O , O gonna O spoil O her O rotton O @snufflesgirl25 O @mo9x O Well O . O just O beg O @100monkeysmusic O .. O PLEASE O come O to O the O #SBLeurope O Next O year O !. O We O need O you O there O ! O *puss O in O boots O eyes* O Korean B-other War I-other spy O rivalries O persist O 60 O years O later O : O Far O be O it O that O the O week O should O pass O without O noting O that O it O was O 60 O ... O http://bit.ly/cCjFBm O @ConorMc_Ginty O GaGa B-person played O here O a O few O weeks O back O . O She O spoke O out O against O SB1070 B-product during O the O show O . O God O bless O her O for O that O . O CHILLIN O @LIVE O TONIGHT O ! O by O my O lonesome O tonight O .... O #obsessions O Football O game O tonight O with O mariaelena B-person , O sarah B-person , O and O brittany B-person ! O Mood O : O excited O !! O GOO O WB B-sportsteam WILDCATS I-sportsteam ! O @k8_walsh O I O 've O been O out O of O the O loop O , O but O is O Private B-tvshow Practice I-tvshow coming O back O this O year O ? O I O HATE O MY O MOTHER O !!!!!!!!!!!... O Where O is O Dee B-person when O I O need O him O 3 O tests O and O an O essay O today O . O > O __ O > O also O i O lost O my O backpackkk O c O : O but O then O i O found O it O . O RT O @DaymiCarolina O : O Yayaayayay O kings B-musicartist of I-musicartist leon I-musicartist tonight O !!! O Amazon B-company U.K. I-company Offering O HTC B-product Desire I-product Z I-product Unlocked O October O 11 O : O We O just O got O official O word O of O the O HTC B-product Desire I-product Z I-product earlier O in O Lo O ... O http://bit.ly/bsyz9H O @lauraluanabeth O 'll O be O back O in O LA B-geo-loc tomorrow O night O ! O yaaaay O ! O Lol O lucky O me O , O u O remembered O me O :D O ... O When O u O c O her O again O tell O her O I O say O hi O x O ) O RT O @JDay_Sept15 O : O RT O @Ashanie_di_Don O : O @JDay_Sept15 O lol O i O see O someone O hyped O and O ready O for O #FlavaFridays O tonight O < O every O week O . O Lets O get O it O ! O Everything O shouldber O cleared O up O by O the O week O end O . O the O last O group O dalam O lab O , O for O the O first O time O @pjames O Add O a O little O Belanger O , O and O you O 've O got O it O ! O Of O course O ... O after O his O household O items O arrive O from O D O . O C O . O RT O @dropolo O Headed O to O da O gump O today O alabama B-geo-loc here O I O come O < O < O come O to O shut O it O down O broski O .. O fuck O wit O me..Parlae O 's O in O house O producer O @Miss_deadpool O May O 's O costume O is O the O giant O spider O on O her O upper O body O . O I O 'm O confused O . O @PERSONGUY6661 O I O have O n't O unfortunately O :( O I O missed O the O chance O when O theycame O to O the O uk B-geo-loc this O year O , O you O seen O them O ? O QUAKE O : O Mag O 4.5 O , O Saturday O , O September O 18 O 2010 O at O 10:03 O am O ( O NZST) O , O 20 O km O south-west O of O Christchurch B-geo-loc . O http://tinyurl.com/265n4mx O #eqnz O RT O @Eeenie_Meenie O : O RT O if O you O are O happy O that O today O is O FRIDAY O ! O :) O Is O all O done O getting O things O set O up O for O the O Ultimate B-other Magic I-other playtest O that O starts O on O Monday O . O Ca O n't O wait O to O see O what O people O think O . O Gotta O call O mom O 2 O let O her O know O it O 's O almost O 3 O . O Yli O gets O out O in O 15 O . O Mom O took O the O antenna O home O today O < O connected O it O at O home O , O finally O . O DJ O set O at O The B-facility Standard I-facility in O LA B-geo-loc tonight O ! O http://fb.me/I91IUaEq O RT O @TRAEABN O Headed O to O Shreveport B-geo-loc then O Lake B-geo-loc Charles I-geo-loc -might O as O well O shoot O through O dat O #BMT O after O the O slab O show O in O Lake B-geo-loc Charles I-geo-loc .. O LIVESTRONG B-other Day I-other is O 10-02-10 O around O the O world O . O @CWWatson O one O of O the O complainers O is O a O child O minder O who O brings O kids O to O the O school O then O looks O after O other O kids O thro O the O day O . O Beggers O belief O ahaha O that O just O made O my O day O xDlmfao O !!!! O Amber B-person Le I-person Bon I-person is O to O walk O in O Giles B-person Deacon I-person 's O Monday O LFW O show O Someone O just O started O following O me O today O so O I O better O post O something O . O There O . O @endlesskies O ik O me O 2 O . O At O night O I O 'm O wide O awake O but O the O daytime O , O I O 'm O so O tired O my O day O drags O LOL O A-W-E-S-O-M-E O !! O btw O , O totally O agree O RT O @fanoffob O Fall B-musicartist Out I-musicartist Boy I-musicartist is O gay O #reallymeans O I O 'm O secretly O a O big O time O fan O . O even O better O than O cocktail O friday O ! O http://is.gd/ffDb9 O RT O @GreatestQuotes O : O " O When O everything O seems O to O be O going O against O you O , O remember O that O the O airplane O takes O off O against O the O wind O , O not O with O it O ." O ... O RT O @AKingPNCRadio O : O Shout O out O to O @Laureluxe O for O a O dope O show O today O on O @TheLuxeHour O w/special O guest O @cheridennis O ... O audio O droppin O later O tod O ... O DITR O REI O Update O : O California B-geo-loc Home O Sales O Decline O Year-Over-Year O : O By O Michael B-person Kraus I-person on O September O 17 O ... O http://bit.ly/96Zavf O #realestate O #invest O RT O @TheOutlawz O : O EVERYBODY O WHO O WANT O A O FOLLOW O FROM O ME O FOR O FOLLOW O FRIDAY O LET O ME O KNOW O !! O WE O AINT O LIKE O THESE O HOLLYWOOD B-geo-loc AZZ O RAPPERS O WE O FOLLOW O BACK O ! O @Foxy_Shoe_Thief O *purrs O long O on O the O inside O , O moving O stealthy O like O my O pard O taught O me O to O do O .. O ears O pulled O back O , O claws O out O long* O @MicahPardKing O Israel B-geo-loc grinds O to O a O halt O for O Yom B-other Kippur I-other fasting O day O ( O wwrn.org O ) O http://bit.ly/cqlwCZ O Tidyin O my O room O . O Need O to O do O my O hair O . O its O soo O nasty O when O its O naturally O curly O . O RT O @FTFDband O NEW O SONG O COMING O THIS O SUNDAY O ! O :D O @Hollly_ O 16 O b O 17 O in O feb O to O all O my O girls O in O london B-geo-loc or O travelling O up O tomorrow O i O love O and O miss O you O wish O i O could O be O there O ! O NEXT O YEAR O I O WILL O ! O #Astros B-sportsteam lineup O for O tonight O . O Keppinger B-person sits O , O Downs B-person plays O 2B O , O CJ B-person bats O 5th O . O @alysonfooter O http://bit.ly/bHvgCS O Yahoo B-company : O Jackie B-person joins O Twitter B-company 50 O years O after O JFK B-person campaign O : O Had O Twitter B-company been O an O option O in O 1960 O , O a O pregnant O Jacquelin B-person ... O http://yhoo.it/9VAD4A O my O past O was O the O reason O i O tried O to O kill O myself O the O other O day O , O and O i O 'll O gladly O do O it O again O . O #Random O But O Why O Do O Woman O Say O The O Want O A O Big O D@ck O < O When O They O Get O It O They O Favorite O Line O Is O " O where O is O that O suppose O to O go O " O Rep O . O Bono B-person Mack I-person to O criticize O fellow O desert O dweller O Barbara B-person Boxer I-person at O event O today O . O http://tinyurl.com/2bhyuq7 O My O town O ! O RT O @Etsy O : O This O week O 's O Dinner O < O a O Video O : O Take O a O visit O to O one O of O the O largest O antique O shows O in O the O country O . O http://etsy.me/9tTkop O Think O I O 'm O going O to O give O in O and O pull O the O boots O out O tonight O ! O #bittersweet O Halo B-product Reach I-product was O a O bit O crap O tonight O No O . O The O Pope B-person asked O me O to O stay O after O class O . O #moviedialoguewithpopesubstitute O I O called O my O sister O and O she O asked O why O i O want O a O mcdonalds B-company at O this O time O of O nigh O t.i O said O ' O blame O rose B-person ' O she O said O ' O who O 's O rose B-person ?' O lmao O Driving O , O driving O , O driving O away O to O Phil B-geo-loc . O Tasty O dinner O tonight O with O the O Society B-other of I-other Mining I-other and I-other Metallurgy I-other Engineers I-other . O All O night O long O RT O @FauxSuhlenaa O : O I O rape O Nick B-person Jonas I-person . O @irishhooligan O or O the O best O is O just O walking O along O the O road O when O a O clump O of O it O just O appears O to O be O waiting O in O front O of O you O all O that O time O #icky O RT O @jimjonescapo O : O Som1 O ask O whn O do O I O sleep O : O when O God B-person tel O me O to O cum O home O is O when O I O wil O sleep O til O thn O Im O chasin O n O makin O this O money O to O leav O ... O Working O at O my O old O office O tomorrow O to O catch O the O bookkeeping O up O . O Money O to O do O easy O stuff O when O I O would O just O be O sitting O around O anyway O ? O Yes O plz O . O I O liked O a O YouTube B-company video O -- O Family B-tvshow Guy I-tvshow - O Songs O Named O After O a O Girl O http://youtu.be/ErPsx8zdnX4?a O No O loss O is O greater O than O the O loss O of O a O thought O process O before O you O 've O had O the O time O to O write O it O down O . O @jimmy722 O surgery O or O not O , O the O most O important O thing O is O that O 'll O be O all O okay O after O that O ! O Mmmm O wings O and O beer O . O Damn O that O means O extra O gym O time O 2mar O RT O @Huddy85 O : O @Mz_Twilightxxx O *kisses O your O ass**sneezes O after* O Lol O Day O One O : O Ten O things O you O want O to O say O to O ten O different O people O right O now O - O 1 O ) O Eduardo B-person Surita I-person : O your O a O freaking O ... O http://tumblr.com/xmciuda0t O RT O @DesignerDepot O : O Minimalist O Web O Design O : O When O Less O is O More O - O http://ow.ly/2FwyX O RT O @JeremiahBonds O : O who O thinks O they O deserve O a O #ff O follow O friday O ? O lol O < O < O @Ms_GudBitch O Duhhh O Lol O :) O @lexi_nicole2010 O That O 's O not O the O story O by O a O long O shot O biotch O ! O Columbus B-geo-loc , O GA B-geo-loc : O @TimmNintey146 O and O 'll O be O mixing O an O 80 O 's O and O other O throwbacks O dance O party O tonight O at O eighty-five O . O Come O kickit O ! O I O want O it O NOW O ! O ;) O RT O : O @corsairartisan O Pumpkin B-product Moonshine I-product has O arrived O in O Nashville B-geo-loc -- O Give O it O a O week O to O get O it O in O stores O . O KY B-geo-loc ships O next O week O ! O I O 've O just O watched O first O four O episodes O of O K-On B-tvshow for O the O first O time O ! O : O 3 O #blackholidays O " O National O forget O the O he O say O she O say O ... O what O do O God B-person say O day O " O @CULTOFMIKEY O It O 's O too O long O , O and O it O just O ... O I O do O n't O know O , O it O sounds O cliche O . O And O dumb O . O My O sister O wants O to O cry O she O hates O it O so O much O . O @DaylySpecialz O im O doin O good O , O just O maxin O < O relaxin O on O my O day O off O ... O i O have O a O 4 O day O stetch O startin O tomorrow O . O @mekamoe927 O I O 've O had O one O before O , O but O it O was O a O short O experience O ( O double O entendre O intended) O . O the O day O you O go O shirtless O in O school O is O the O day O I O give O birth O to O a O pig O RT O @ChrystallK O : O Yo O , O artists O ! O ASU B-facility Step I-facility Gallery I-facility wants O your O " O socially O relevant O " O comic O book O cover O designs O for O a O Nov O . O show O http://bit.ly/8YLSw4 O Ugh O I O DO O N'T O HAVE O MY O EARPHONES O I O GUESS O I O WO O N'T O B O TALKING O AND O DRIVING O TODAY O LOL O .... O Excuses O Excuses O Excuses O SMH O There O was O just O a O fire O at O work O . O Today O is O looking O up O . O @angelajames O @roxannestclaire O I O have O n't O tried O MAC B-company . O Next O time O ! O @peasmom3 O and O as O if O I O was O n't O obsessed O with O AFL O already O , O after O Sunday O I O 've O gotten O even O more O so O !! O I O 'm O so O obsessed O with O his O sexiness O !!!! O Kid B-person Cudi I-person Opens O Up O About O Cocaine O Use O , O Failed O Lady O Gaga O Tour O : O by O Mariel B-person Concepcion I-person , O NY B-geo-loc | O September O 1 O ... O http://bit.ly/cZWGDi O @Yeweezii O Jst O lock O her O outside O 4 O d O nite O . O It O workz O al O d O time O :-D O @NeilPen O I O position O to O Manchester B-geo-loc tomorrow O on O BA O 2910 O and O fly O to O Barbados B-geo-loc on O Sunday O I O was O 15 O minutes O late O yesterday O so O I O left O 20 O min O earlier O today O . O I O will O be O 20 O minutes O late O today O . O #lifeispointless O @isaccnewton7 O call O me O when O u O go O out O to O practice O Was O hard O work O going O to O the O gym O on O my O own O tonight O but O managed O a O 30 O min O run O and O plenty O of O weights O . O Catching O up O on O ufc B-company now O RT O @Sexstrology O : O Sagittarius O is O turned O off O when O you O play O hard O to O get O . O They O want O it O now O . O RT O @daviddesrosiers O : O Happy O birthday O @chuckcomeau O ! O have O fun O in O vancouver B-geo-loc tonight O ! O I O swear O that O i`ll O hold O on O to O that O promise O i O made O on O the O 17 O of O March O 2010 O . O Engadget B-company : O Sky B-company 3D I-company enlists O Stephen B-person Fry I-person to O explain O the O technology O ahead O of O its O October O 1 O launch O ( O video) O : O With O the O of O ... O http://bit.ly/abRALO O ... O if O I O didnt O have O to O worry O about O $ O I'd O move O to O VT B-geo-loc and O buy O some O hogs O and O spend O my O days O dropping O LSD O and O taking O long O walks O in O gucci B-company shoes O ... O Relieved O that O the O first O full O week O of O school O is O over O ! O So O happy O I O can O sleep O in O tomorrow O ! O RT O @angelfrmcanada O : O RT O @kraftfoods O Each O time O you O RT O this O & O include O #KraftFightsHunger O , O we'll O donate O a O meal O to O @FeedingAmerica O Give O us O a O ... O @millyTW__ O night O :) O I'll O have O more O for O you O to O dream O tomorrow O I'm O in O tha O mood O for O writing O ;) O If O you O can O smile O when O things O go O wrong O , O you O have O someone O in O mind O to O blame O . O I O hope O you O will O have O a O blessed O and O nice O time O off O this O weekend O . O Love O your O children O , O love O your O pets O and O enjoy O all O the O goodness O in O your O life O . O Shooting O sunset O in O #btv O , O time-lapse O 5 O sec O . O Intervals O from O Champlain B-facility campus I-facility . O Pretty O . O It O sucks O when O you O eat O old O cookies O for O lunch O and O they O make O you O feel O barfy O . O @CHRIS_Daughtry O Aw O ur O cute O when O u O get O mad O ur O songs O r O Killing O me O I O just O Love O Ur O Voice O ! O even O my O bros O do O which O is O weird O they O don't O like O my O stuff O Tomorrow O - O London B-geo-loc - O Hyde B-facility Park I-facility Corner I-facility - O 1.30 O pm O . O If O you O cannot O be O there O - O send O out O supportive O thought O waves O ! O @MrsTiaJ O no O you're O the O jerk-o O for O lying O . O Plus O I O had O just O decided O like O 10 O mins O before O then O that O I O wasn't O coming O Yahoo B-company : O Jackie B-person joins O Twitter B-company 50 O years O after O JFK B-person campaign O : O Had O Twitter B-company been O an O option O in O 1960 O , O a O pregnant O Jacquelin B-person ... O http://yhoo.it/9VAD4A O @aprildenay O Quit O messing O with O ut O ... O every O time O you O take O the O cotton O out O you O break O the O clots O keeping O it O from O bleeding O goober O head O ! O @Nikitajonesxo O mhm O fo O sho O ! O i O like O being O able O to O walk O over O when O im O bored O ha O RT O @CantBeliebIt O : O When O Justin B-person gets O a O girlfriend O That O Should O Be O Me O is O gonna O be O #1 O on O iTunes B-product . O 15 O million O children O die O of O hunger O every O year O . O Heed O the O call O to O end O #world O #hunger O : O http://linkbee.com/D8RKT O via O @here4cause O When O glass O breaks O , O the O cracks O move O faster O than O 3,000 O miles O per O hour O . O To O photograph O it O , O a O camera O must O shoot O at O a O millionth O of O a O second O ! O When O the O last O time O you O ran O into O Rick B-person Ross I-person and O Drake B-person twice O in O the O same O day O at O 2 O diff O video O shoot O locations O . O Today O I O did O ! O Imma O get O your O heart O racing O in O my O skin-tight O jeans O be O your O teenage O dream O tonight O .... O RT O @itsJuliaHardy O @WanderingRyu O I O noticed O a O Ryu O shaped O hole O in O the O show O ... O ;) O Def O tune O in O next O week O if O u O can O . O XX O PLANO B-other BALLOON I-other FESTIVAL I-other 2010 I-other TO O START O TODAY O : O The B-other 31st I-other annual I-other Plano I-other Balloon I-other Festival I-other , O Plano B-other Balloon I-other Festival I-other 2 O ... O http://tinyurl.com/22kg6uz O i'll O miss O yooouuu O my O aunty O tersayangg O .... O See O U O next O Time O yah O ... O Mmuah O : O * O HPU O pau O for O the O day O ! O Happy O Aloha O Friday O !!! O My O horrible O doctor O was O featured O on O Oh B-other Canada I-other Team I-other 's O blog O : O http://ohcanadateam.blogspot.com/2010/09/friday-finds-doctor-horrible.html O @Cuddle_Factory O will O send O again O tomorrow O honey O too O RT O @GraceThorson O : O I O enjoy O reading O , O because O I O can O visit O different O places/time O periods O , O and O I O always O learn O something O from O it O . O @ChristianScroll O @chazzy00 O what O we O on O tonight O friend O And O we O had O some O amazing O dessert O wines O too O ! O First O time O I've O tried O that O , O but O now O a O convert O . O Will O have O to O add O wine O to O dessert O from O now O on O ! O Yum O ! O This O week O I O have O peed O a O lot O and O have O eaten O very O well O . O Weekend O , O please O don't O kill O me O . O i O have O a O feeling O that O this O weekend O will O be O amazing O ... O or O at O least O tonight O will O be O . O RT O @JBieber_isHOT O : O When O Justin B-person gets O a O girlfriend O ... O its O going O to O be O World B-other War I-other 3 I-other !!!!!! O @Iamjustinbieb O i O know O that O today O is O follow O friday O . O so O im O guessing O thats O what O i O means O . O but O im O not O suree O lmaoo O Copa B-other Sudamericana I-other #2010 O : O Thursday O Round-Up O - O http://newzfor.me/?754c O RT O @PrincePoppycock O : O A O gentleman O would O never O get O his O lipstick O on O a O lady O 's O hand O when O kissing O it O ! O @keoghsie O It O 's O been O ages O !! O How O are O you O ? O We've O been O doing O non-Twitter O stuff O for O a O while O , O but O now O have O time O for O yapping O again O ! O HUrrah O !! O Driving O , O driving O , O driving O away O to O Phil B-geo-loc . O Tasty O dinner O tonight O with O the O Society B-other of I-other Mining I-other and I-other Metallurgy I-other Engineers I-other . O This O . O RT O @bethanyshondark O : O RT O @duchess_rebecca O : O Twitter B-company is O going O to O be O less O fun O tonight O without O the O snarky O Joos O . O Aw O !! O TOP O EVENT O -- O > O http://schmap.it/98hCOt O - O And O tomorrow O the O @BaristaThing O Event O goes O down O - O open O to O pros O , O home O baristas O , O c O ... O ( O via O @CoffeeGeek O ) O @kajelly_milk O ( O : O but O hey O .. O its O all O good O . O i O like O him O haha O &omg O jason O kept O touching O me O today O D O ; O i O was O like O man O stop O touching O O O : O @x_Jamelia_x O When O r O u O gona O realise O we O dont O want O u O on O our O tvs O ?? O To O prove O my O point O enter O ur O name O into O search O .. O Uve O had O ur O 15mins O ! O I O liked O a O YouTube B-company video O -- O Testing B-musicartist Tomorrow I-musicartist http://youtu.be/aOYInsel7Qw?a O I O love O to O see O a O child O 's O face O when O they O think O of O the O fairies O . O Like O a O fairy O their O little O faces O light O up O :) O The O forced O ads O in O ngmoco B-company games O are O outstandingly O annoying O ! O Looks O like O it O 's O time O to O delete O all O their O apps O from O my O iOS B-product devices O ! O RT O @LightCMS O : O Day O 6 O : O Win O 1 O of O 10 O iPads O from O @LightCMS O - O RT O to O enter O or O read O more O http://speaklight.com/iPad O RT O @KarlaRay O : O What O a O day O in O #Collier O ! O Watch O @NBC2 O at O 6 O for O details O on O the O latest O growhouse O bust O and O the O county O 's O first-ever O West O Nile O d O ... O I O played O this O out O not O too O long O ago O lol O - O http://www.youtube.com/watch?v=aWISNFAvGkw O I O really O do O like O it O even O though O it O 's O utter O shit O . O " O You O may O have O given O up O on O me O , O but O I'm O not O given O up O on O you O ." O -The O Boy O You O Use O To O Love O Artful O Pumpkins O Ladies O Long O Sleeve O : O Artful O Pumpkins O Ladies O Long O Sleeve O . O Altered O vintage O design O . O Backgroun O ... O http://bit.ly/9RRYOI O #tshirts O June B-other Fest I-other 2010 I-other ~ O Forgotten B-facility Door I-facility LIVE O ! O http://fb.me/G1pof3lO O @marciaforbes O When O U O dig O grave O always O dig O 2 O . O Like O he O wanted O to O diminish O Brady B-person & O end O up O doing O that O to O himself O < O > O True O .... O Dat O I'm O tired O after O school O today O ! O " O smell O . O ( O the O lack O of O could O only O help O when O forced O to O go O cowtipping O with O ram O . O ) O " O - O @jenist O wins O ! O your O mineral O water O is O in O the O mail O . O four O months O < O 3 O Rain O rain O go O away O come O back O when O it O 's O not O my O dads O birthday O . O @justinbieber O When O you O smile O I O smile O ... O seriously O I O do O !!!! O @Surfrdan O to O be O fair O though O it O 's O roughly O the O millionth O time O he O 's O played O Tony B-person Blair I-person . O @jenniferehle O : O Did O you O get O heavy O rains O up O there O yesterday O ? O Sweet O ! O RT O @SimoneSOliver O : O Here O 's O the O London B-other Fashion I-other Week I-other schedule O : O http://nyti.ms/bW0N3u O RT O @davehodg O : O Pope B-person says O atheists O pick O & O choose O their O morals O . O Correct O . O Today O I O will O be O frowning O on O child O abuse O & O not O having O a O problem O wit O ... O @DeezyWest O raiders O get O there O first O win O this O sunday O #Predictions O WHATS O GOODIE O EVERY1 O COOLIN O COOLIN O FEELIN O THE O BREEZE O #FRIDAY#MANIA O @valdary O sorry O i O meant O my O dad O in O the O first O tweet O , O my O mums O been O dead O 5 O years O . O Great O week O for O music O with O @blindoldfreak O , O UNKLE B-musicartist & O @trent_reznor O all O putting O out O new O releases O . O Amazing O stuff O . O **Support O decent O music** O @victorcajiao O So O can O I O call O in O sick O on O my O last O day O on O the O job O so O I O can O go O out O there O and O look O at O it O ? O :-) O Thank O God O it O 's O finally O Friday O ! O I O really O needed O this O . O :-) O Telly O was O junk O last O week O Love O me O when O I O least O deserve O it O , O because O that O 's O when O I O need O it O the O most O . O I O really O feel O like O staying O up O all O night O listening O to O my O CDs O . O The O neighbours O and O my O boss O at O work O tomorrow O would O complain O , O so O no O can O do O :( O @SweetBee_90 O what O 's O the O look O for O tonight O ? O volunteering O for O the O Rotary B-facility Club I-facility at O the O PoMo O Terry B-person Fox I-person run O . O Should O be O an O excellent O time O : O come O down O and O check O it O out O on O Sunday O am O ! O I O distinctly O remember O someone O giving O me O chocolates O last O week O . O I O don't O recall O eating O a O single O piece O . O They're O nowhere O to O be O found O of O course O . O RT O @Durell_G O : O When O life O throws O u O lemons O ... O Throw O them O back O .. O < O make O lemonade O or O @giapo O sorbet O ? O Coach B-person Germano I-person , O Albin B-person , O Haines B-person and O Burrow B-person each O had O home O damage O from O the O storm O yesterday O , O according O to O @JasonCorriher O . O Madden B-product tonite O !!! O the O homie O going O down O ! O Better O get O then O clips O ready O ! O For O my O free O cut O !! O Ha O ha O @OmegaWife5 O exhaustingly O long O lol O :) O how O has O yours O been O ? O sexy O azz O @RICCOBARRINO O tweeted O me O but O can O i O get O a O follow O baby O ??? O and O i O got O you O i O will O let O my O folks O know O ... O when O is O the O new O album O ?? O i O willget O RT O @BettyCrocker O : O Less O than O 25 O followers O to O go O ! O Let O 's O reach O 11,000 O before O the O weekend O ! O :) O http://ht.ly/2G4sQ O #sweepstakes O RT O @ItsTheTeenLife O : O The O exact O day O that O I O wear O shorts O and O a O tee O shirt O everyone O shows O up O wearing O hoodies O and O jeans O . O -_- O #ItsTheTeenLife O @LOOPYisLINDSAY O hahaha O . O Nice O . O How O was O ur O day O 2day O ? O good O day O . O bad O day O . O good O day O ? O merek O minuman O sachet O Time O to O go O , O hihi O ! O Beijinhos O , O seus O viciados O : O * O She O Love O Me O Long O Timeeeee O RT O @Ashanie_di_Don O : O @JDay_Sept15 O lol O i O see O someone O hyped O and O ready O for O #FlavaFridays O tonight O < O every O week O . O Lets O get O it O ! O @chrislhayes O That O 's O nothing O compared O to O the O LaserDiscs O I O picked O up O at O goodwill O the O other O day O . O Completely O useless O those O . O ahhh O that O made O my O day O ( O : O i O would O say O something O stupid O like O that O :D O September O dates O to O remember O : O http://fb.me/zUJIeN0U O Internet O . O My O MOM O got O a O tattoo O today O . O Which O , O if O one O knows O her O , O is O so O out O of O character O . O I O find O it O awesome O . O Go O ma O ! O Checking O out O this O weeks O tell O ' O em O Steve B-person Dave I-person Podcast O @BundleHunt O Is O it O being O released O today O or O soon O ? O Its O crazy O that O one O day O I O have O energy O to O do O laundry O , O mop O floors O , O scrub O everything O down O and O the O next O I O don't O even O feel O like O doing O anything O ! O Why O hate O on O somebody O for O doing O well O when O you O can O simply O say O great O job O and O move O on O .. O [Haters O u O can O kill O yourself O ] O cuz O ur O losers O @urbanturbanguy O Ooh O , O I O could O be O your O long O lost O Mexican O sister O for O this O . O its O time O to O have O some O fun O tonight O : O ) O @danibuono O yet O , O once O I O get O my O iPhone B-product that O 's O when O I'ma O scream O TeamiPhone O RT O your_commander O : O _Shomari O lol O why O u O say O u O guess O ? O http:///T0UZh O Saturday O September O 18th O 2010 O 8pm O Hotel B-facility Elegante I-facility Steve B-person " I-person Stylez I-person " I-person A.K.A. O Desperado B-person Birthday O Bash O ! O " O Headrush O in O da O building O " O sfitzy93 B-person asked O : O No O problem O ( O : O awesome O ! O toast O = O life O :P O .. O You O doing O anything O for O the O day O ? O http://tumblr.com/xkdiufb81 O The B-movie Town I-movie might O be O one O of O the O best O movies O I O have O seen O all O year O . O So O , O so O good O . O And O don't O worry O Ben B-person , O we O already O forgave O you O for O Gigli B-movie . O Really O . O Wow O , O I'd O forgotten O when O Jenny B-person was O actually O really O nice O lol O #theLword O Pretty O much O any O time O I O get O an O email O from O someone O who O puts O " O PhD O " O in O the O from O field O , O I O know O there O 's O going O to O be O trouble O signing O along O to O Remembering O Sunday O @TakeMeDownCHRIS O he O didnt O say O when O .. O he O just O said O he O workin O on O it O & O gonna O release O the O full O version O to O yeah3x O soon O ! O was O WAITING O for O this O day O for O specific O reasons O . O now O im O leaving O again O & O will O have O to O try O this O bullshit O AGAIN O next O friday O . O dawg O wasted O my O time O Might O have O an O early O night O got O to O help O Rob B-person finish O the O decorating O tomorrow O @shhaunna_btm O i'm O not O ignoring O you O doll..i'm O doing O my O friday O follows O @wildflower94 O hw O =/ O i O cant O wate O til O summer O !!! O This O year O us O guna O b O a O mess O RT O @relentless1323 O : O I O hate O when O a O nigga O shows O me O a O video O of O him O on O his O phone O , O gettin O some O head O from O a O shorty O . O Im O Like O yo O ... O U O just O showed O ... O For O code O I've O written O since O Sept O ' O 09 O , O the O delay O between O commit O to O SCM O and O running O on O customer O hardware O has O been O about O 10 O days O . O Thank O u O ! O xo O RT O @Kadzyq O : O Happy O Bday O !! O From O all O ur O fans O in O the O Middle B-geo-loc East I-geo-loc :) O hope O to O c O u O n O the O voices O with O Yanni B-person in O concert O here O some O day O :) O @Jee_agustino O :O O seriously O even O when O you O do O not O want O ? O Im O starting O to O hate O verizon B-company . O I O normally O have O one O bar O or O no O bars O . O But O i O sure O have O 4 O bars O for O ev O all O the O time O .. O . O . O . O Stupid O Gets O To O See O Lindsay B-person Tonight O ! O :D O :D O : O LD O < O 3 O Love O YOu O Beautiful O !! O @vincentsmojo O You O think O I O secretly O love O dresses O lol O Only O when O Lilia B-person wears O them O ;) O @paulwalk O It O 's O the O view O from O where O I'm O living O for O two O weeks O . O Empire B-facility State I-facility Building I-facility = O ESB B-facility . O Pretty O bad O storm O here O last O evening O . O Lucid B-musicartist Dementia I-musicartist Playing O in O Austin B-geo-loc Tonite O at O The B-geo-loc Scoot I-geo-loc Inn I-geo-loc at O 1am O ! O #jobs O #careers O #Greenville O AT&T B-company Full O Time O Retail O Sales O Consultant(s O ) O - O Greenville B-geo-loc , O AL B-geo-loc http://bit.ly/dflARA O @hannibal_flow O I O got O miami B-geo-loc pics O for O days O lol O 8hr O shift O today O yuck O lol O Buck B-geo-loc mountain I-geo-loc tomorrow O . O #adirondacks O #hiking O ALL O TIME O LOW O ARE O COMMING O TO O GLASGOW B-geo-loc !!!!!!!!!!!!!!!!!!! O RT O @GaidaAbuSaleh O : O my O 1997th O tweet O goes O to O ....... O @LIDIAABUSALEH O , O i O would O like O to O thank O lidia O , O for O being O born O on O the O 1997th O year O . O thank O you O . O RT O @AniCoronado O : O #ZodiacFacts O As O a O #Taurus O it O may O seem O like O things O are O falling O into O place O , O and O this O feeling O gives O you O a O surge O of O energy O . O RT O @Madslanger O : O Performing O in O Naples B-geo-loc tomorrow O with O N.E.R.D. B-musicartist , O Maroon B-musicartist 5 I-musicartist and O others O at O the O MTV B-other show O . O Tonight O Stars B-facility in O Vordingborg B-geo-loc - O few O tic O ... O RT O @robmoysey O Eyeopener B-sportsteam vs O . O Ryerson B-sportsteam Quidditch I-sportsteam team O this O Sunday O at O 4 O p.m. O Anyone O know O where O to O get O cheap O brooms O ? O #Ryerson O @RUQuidditch O #Rams O He O said O Rihanna B-person all O low O toned O and O shit O !! O Prolly O the O first O time O he O said O her O names O in O AGES O !!! O LMFAOOOOO O Today O is O my O oldest O daughters O 13th O birthday O . O Really O don't O know O what O to O think O about O her O being O a O " O teenager O ". O Except O that O I O am O really O getting O old O . O Comment O of O the O Day O : O The O Depths O of O Poverty O [ O We O Read O You] O : O @leeboardman O and O three O points O on O sunday O ..... O na O night O !! O omg O @wethekings O is O playing O a O show O at O Stetson B-facility in O November O .. O if O it O 's O students O only O , O I O will O be O pissed O @MinkyMoo O I O really O didn't O want O one O either O but O I O literally O laughed O out O loud O when O I O read O it O . O I'm O sure O that O is O not O the O reaction O she O wanted O ;) O i O may O have O failed O , O but O yeah O i O loved O you O from O the O start O - O i O should O continue O editing O and O stop O quoting O . O BBL B-other started O tonight O , O EBL B-other tmrw O , O Euroleague B-other qualifiers O tues O but O damn O , O i O can O haz O NBA B-other now O ? O League B-tvshow Pass I-tvshow withdrawal O symptoms O ...... O All O caught O up O on O @SHO_weeds O ! O After O eating O a O full O meal O that O was O the O next O thing O on O my O list O to O do O after O graduating O ! O Had O 3 O doctors O appts O today O ... O fun O stuff O . O leaving O for O the O bahamas B-geo-loc tomorrow O though O !! O RT O @MirandaBuzz O : O Were O working O til O midnight O tonight O ! O Sleepover O on O set O ! O you O know O its O bad O when O you O do O that O , O but O you O don't O care O . O I O don't O understand O why O some O dudes O get O mad O when O you O flirt O with O someone O else O ... O @soapsindepthcbs O Disagree O , O disagree O , O no O , O no O . O When O it O 's O a O finale O , O you O can't O really O argue O about O stories/etc O . O ATWT O went O out O great O ... O splendidly O . O Join O Anya B-person Kamenetz I-person on O Monday O 's O #Mozilla O #Drumbeat O community O call O . O DIY O U O and O the O future O of O education O . O http://mzl.la/azQO2g O @anya1anya O next O Friday O , O the O 24th O both O my O bands O are O playing O at O Swayzes B-facility Venue I-facility . O Please O come O support O !!! O RT O @iSplashInYoMouf O : O RE*TWEET O IF O YOU O SMOKING O TONIGHT O ? O What O my O #Followers O Doing O tonight O ? O @TimothyJMoore O Thnx O , O I'm O glad O they O weren't O totally O ignored O , O but O one O isn't O many O when O you O think O how O many O there O are O in O the O CofE O ! O @Miss_SarahBaby O hmmm O .. O u O kno O when O happy O hour O ends O ? O Grammar B-other Boot I-other Camp I-other starts O on O Monday O ! O 7th O graders O should O be O ready O to O GO-GO-GO O !!!! O 8th O Graders O have O a O big O project O due O next O Friday O ... O be O ready O ! O RT O @TeamShaneDawson O : O RT O If O you O think O @AntiShaneDawson O is O a O 10 O year O old O without O a O penis O to O play O with O so O they O hate O on O Shane B-person instead O :( O :' O ) O On O my O way O to O my O dentist O appointment O ugh O ! O i O hate O the O dentist O !! O remember O kids O brush O 3 O times O a O day O and O floss O twice O and O u'll O have O a O great O #smile O Asprin O , O check O , O cup O of O tea O , O check O , O pillow O , O check O , O warm O sleeping O bag O , O check O , O fanfiction O on O the O laptop O , O check O . O Time O to O settle O down O and O relax O havnt O lost O a O game O in O open O gym O all O week O .. O now O to O go O get O dat O fresh O cut O Tomorrows O plan O is O a O little O skirt O along O the O coast O then O a O stop O in O Glenveagh B-facility national I-facility park I-facility , O should O be O a O picturesque O day O . O Est O 85 O mile O of O riding O New O Comic O List O is O out O for O Next O Week O ( O September O 22 O , O 2010 O ) O and O don't O forget O to O stop O by O Today O from O 5-8pm O for O Happy O ... O http://fb.me/JLaJCWdu O Fashion B-other week I-other ends O with O Ralph B-person Lauren I-person , O Oscar B-person de I-person la I-person Renta I-person , O Gwen B-person Stefani I-person & O a O Weir O ...: O -Coco B-person Chanel I-person " O I O design O for O the O ... O http://bit.ly/beBG9e O @TheGayDragon O @RealmOfMachias O Sir O .. O I O SWEAR O I O had O nothing O to O do O with O it O this O time O .. O honest O .. O please O don't O hurt O me O .. O @JBsHOTNESS O i O do O talk O about O him O every O second O she O like O his O songs O for O a O week O :/ O @clarebieberx O np O ! O @FutreTeenStar O sure O !! O @bakontrack O I O was O on O a O successful O business O trip O !!! O I O had O no O time O to O tweet O !!! O took O the O combine O out O for O a O spin O today O , O but O the O barley O is O still O a O tad O on O the O wet O side O . O OK O IMMA O ASK O THIS O AGAIN O HOW O LONG O DO O YOU O TALK O TO O A O GIRL O BEFORE O U O MAKE O IT O OFFICIAL O & O START O GOIN O OUT O WITH O HER O ???? O Branching O out O from O Lincoln B-product park I-product after I-product dark I-product ... O Hello O " O Russian B-product navy I-product " O it O 's O like O the O same O thing O but O with O glitter O ! O ' O Free O ' O ' O Day O 26 O ' O '' O #nowplaying O http://cpwr.me/c9GNpt O What O A O Great O Day O ! O Except O For O Another O Schedule O Change O :/ O Dance O Tonightt O ! O ( O : O Our O Favorite O YouTube B-company Videos O This O Week O : O The O Drama O Edition O : O Had O any O epic O meltdowns O this O week O ? O You O know O , O of O the O cr O ... O http://bit.ly/cuy0yt O #in O RT O @LilTwist O : O RT O this O if O you O want O me O to O go O back O live O on O Ustream B-company later O tonight O Institutional O buying O lifts O UFlex B-company 30% O in O a O month O http://bit.ly/bOAk9y O Nothing O like O a O 3pm O Friday O meeting O ! O RT O @ssssab O : O Mariano B-person : O she O used O to O be O a O very O nice O girl O , O before O she O discovered O macdonalds B-product @playavolta O haha O it O 's O not O that O bad O now O but O when O i O was O little O i O used O to O freak O out O so O i O would O use O the O chewables O that O tasted O like O chalk O . O @NTRLDisaster O well O I'm O sure O u O could O do O it O one O at O a O time O with O Paco B-person ( O Thats O my O cars O name O ) O plust O there O 's O a O roof O rack O on O top O u O can O tie O stuff O too O ? O @FritzTitz O it O took O me O 2 O tries O , O but O after O the O 2nd O he O became O one O of O my O favorite O . O Take O this O time O to O discover O the O treasures O within O you O ! O So O far O this O day O hasn' O ; O t O gone O to O well O , O hopefully O my O night O will O be O better O ! O Read O so O much O on O India B-geo-loc , O looks O like O a O cert O for O future O vacation O , O when O I'm O retired O probably O - O http://bit.ly/b9vMjW O Balloon O glowing O ? O We'd O love O to O see O you O before O or O after O at O Pi B-geo-loc ! O CWE B-geo-loc and O Delmar B-geo-loc are O around O the O corner O , O Kirkwood B-geo-loc & O ... O http://fb.me/I6SZ52nW O Tonight O is O going O to O be O romantic O @glacerie O It O 's O in O my O tweets O a O year O ago O I'll O pull O up O the O story O later O on O . O Just O hope O the O film O helps O Shange B-person sell O more O books O . O Today O 's O post O is O about O 3D O graffitti O ... O http://francescoandreone.blogspot.com/2010/09/banksy-makes-social-commentary-art.html O @BieberEgypt O I've O got O some O bad O news O , O Yeah O I O cant O come O to O the O meeting O tomorrow O . O : O S O @The_TDawson O what O were O yu O talking O about O yesterday O ? O @aplusk O What O made O you O laugh O ? O This O did O , O courtesy O of O @rainnwilson O http://www.officetally.com/rainn-wilson-and-friends-seattle-oct-23 O Stairs O : O One O more O chance O to O win O Roger B-person Waters I-person tickets O on O KLH B-other tonight O between O 6:15 O & O 6:45 O !! O http://fb.me/Jjp2pz4I O The O British O have O a O remarkable O talent O for O keeping O calm O , O even O when O there O is O no O crisis O . O Tonight O @AZUKARlounge O Baka B-musicartist Boyz I-musicartist LIVE O w/ O DJ B-musicartist Elements I-musicartist 103.5 O & O Soreal O . O $150 O VIP O booths O tonight O . O Text O 916.960 O . O 8120 O for O NO O cover O glist O !! O First O week O of O school O has O been O crazy O . O Everyone O is O very O moody O and O tired O ! O Dems B-other to O voters O : O You O may O hate O us O , O but O GOP B-other is O worse O ( O AP O ) O AP O - O With O just O six O weeks O to O avoid O a O possible O election O catastrophe O , O http://tiny.ly/wc5 O RT O @Sexstrology O : O Virgos O need O to O learn O how O to O relax O at O the O end O of O the O day O . O You O tend O to O stress O yourself O out O due O to O your O high O standards O . O RT O @BieberPledge O : O When O I O Get O Old O , O Imma O Still O Be O Rockin O Out O To O ' O Baby'...Even O If O I O Break O A O Hip O ;) O @thevoiceoverguy O 9 O days O then O Sydney B-geo-loc " O why O is O it O you O always O look O seriously O stoned O when O i O see O you O ? O " O - O - O > O Danny B-person . O lol O good O god O ! O ( O : O I O just O took O " O When O your O mom O makes O you O go O live O with O your O dad O Scooter B-person Braun I-person , O your O life O ..." O and O got O : O Part O 7 O ! O Try O it O : O http://tinyurl.com/27r2pdz O @ChefGuyFieri O Pls O RT O - O NIGHT O golf O tournament O 9/25 O to O benefit O 3 O year O old O Penny B-person of O Mesa B-geo-loc , O AZ B-geo-loc who O had O heart O transplant O . O www.flancers.com O 4 O info O The O end O of O another O week O for O MTS B-company , O http://sk.mu/aEnsGunwfr9 O : O Above&Beyond B-other - O Trance B-other Around I-other The I-other World I-other 338 I-other ( I-other Wippenberg I-other Guestmix I-other ) I-other ( O 17 O September O 2010 O ) O #Trance O #Trancefamily O #TATW O Mac O Sync O Completed O - O September O 17 O , O 2010 O , O 5:00 O pm O football O game O tonight O ! O ahh O im O so O nervous O about O our O dance O !! O Today O is O friday O . O Crap O forgot O XD O not O sure O how O i O feel O about O the O rain O right O now O ... O but O what O a O wonderful O day O it O has O been O ... O can't O wait O for O later O tonight O !!! O Man O i O been O eatin O fastfood O everyday O im O so O glad O my O mommy O cookin O today O ... O Gotta O call O mom O 2 O let O her O know O it O 's O almost O 3 O . O Yli B-person gets O out O in O 15 O . O Mom O took O the O antenna O home O today O & O connected O it O at O home O , O finally O . O Chicago B-geo-loc Weekend O Events O : O Lebowski B-other Fest I-other , O Dave B-person Matthews I-person , O Latin O Music O And O More O : O The O lively O weekend O ( O well O , O Friday O throu O ... O http://bit.ly/cLTnyl O @jeffpulver O @wildman94 O @MusicIsGood4U O thanks O for O hitting O me O and O @shoewolf O up O . O Let O me O know O when O that O DM O with O all O the O info O has O been O sent O . O holy O cow O - O I'm O almost O ready O for O sessions O ! O Walls O painted O , O lights O hung O , O backdrop O system O up O and O working O ! O Tomorrow O ... O http://fb.me/t8hzqbAZ O CyberNation O Sky B-company 3D I-company enlists O Stephen B-person Fry I-person to O explain O the O technology O ahead O of O its O October O 1 O launch O ( O video) O : O With O the O o O ... O http://bit.ly/aWoRmo O I O just O took O " O ( O ALL O PARTS O ) O Your O a O normal O belieber O .... O what O happens O when O you O find O J O ..." O and O got O : O Part O 1 O : O Holidays O !! O Try O it O : O http://bit.ly/aOcpG6 O u O kno O that O day O when O the O wanted O will O go O 2 O a O radio O station O to O find O out O if O there O number O 1 O with O heart O vacancy O , O when O will O that O be O ? O RT O @WakaFlocka1017 O : O SO O WHEN O I O GET O ON O 106 O N O JOKE O AROUND O YALL O TALK O ABOUT O ME O LIKE O A O DOG O SHAWTY O BUT O WHEN O I O BUY O 30,000 O WORTH O SCHOOL O SUPPLY O N O ... O Gonna O for O vocal O solo O on O tuesday O . O T_T O @CWWatson O one O of O the O complainers O is O a O child O minder O who O brings O kids O to O the O school O then O looks O after O other O kids O thro O the O day O . O Beggers O belief O @Wale O I O just O heard O attention O deficit O today O . O Waay O underrated O but O I O still O like O more O about O nothing O better O RT O @Mirandreamer O : O " O I O tried O to O walk O into O target B-company yesterday O , O I O missed O ." O Boo O Boo O , O Ta O and O I O had O a O girls O day O . O She O is O such O a O wonderful O baby O . O @Beauty_NsideOut O when O i O TOLD O you O i O was O goin O back O to O sleep O ! O #Crazy O Action O is O the O foundational O key O to O all O success O !.... O take O massive O action O today O my O friends O ...... O and O watch O synchronicities O happen O Salt O tasting O today O http://yfrog.com/07kicyj O @_MissMarika O haha O I O need O to O update O my O tan O I O feel O so O white O . O My O face O ! O I O have O been O tanning O myself O this O month O , O hurry O up O summer O ! O Can O your O CMS O guarantee O pixel-precise O output O when O compared O to O our O MS-Paint O designs O ? O #cmsretractions O @endlesskies O ik O me O 2 O . O At O night O I'm O wide O awake O but O the O daytime O , O I'm O so O tired O my O day O drags O @peterc83 O night O night O good O luck O tomorrow O x O it O 's O friday O it O 's O friday O i'm O so O happy O it O 's O friday O :: O whooo O yooo O doing O dance O and O takin O a O chance O la O la O la O lalala O :: O @Mayuko_115 O You're O welcome O ! O Yes O , O it O saved O a O lot O of O time O , O although O i O still O had O a O few O twits O i O wanted O to O #ff O that O weren't O on O the O @ffhelper O list O @BEE_LYNN_BAYBEE O Funniest O shit O of O the O day O " O Im O officially O blown O . O Dont O wanna O to O talk O about O it O " O lls O RT O @pastorbrady O : O Remember O , O every O Sunday O morning O gathering O at O New B-facility Life I-facility can O be O watched O live O at O 9am O and O 11am O - O www.NLCLive.com O @edryall O @sjo_m O you O been O 23 O for O a O few O years O now O #really27 O After O 2 O months O not O even O a O word O . O Guess O ure O fine O .. O thanks O for O being O nothing O but O a O fake O . O Seriously O cycling O ? O Said O it O once O and O I O will O say O it O again O , O when O someone O shows O you O who O they O are O , O BELIEVE O THEM O !! O @TheEllenShow O #AskEllen O Hi O Ellen B-person . O Can O you O ask O Portia B-person when O she O 's O going O to O make O a O Twitter B-company account O ? O Love O you O both O so O much O ! O Xo O The B-movie Town I-movie was O a O really O good O movie O !!! O Now O passing O the O time O watching O " O Easy B-movie A I-movie " O until O " O Devil B-movie " O starts O ! O @BieberPaycee O in O like O 3 O days O I O think O ... O Well O that O 's O when O the O single O 's O released O :P O this O is O what O we O do O when O we O have O no O picture O ideas O . O http://twitpic.com/2pdzm0 O @lilwhitebear O @GrouchoDuke O I'm O not O kidding O ! O I O used O a O book O which O was O published O in O 2008 O ( O last O year) O ... O it O was O an O awesome O book O ! O realy O bored O smack O down O tonite O yay O !! O ( O : O mood O : O bored-_- O ha O ! O going O to O talk O vill O into O gettinhg O reach O today O . O want O it O in O time O for O sundays O reacharound O gamenight O Going O to O the O country O fair O today O :) O @demhot O I O hate O it O here O , O lol O . O i'm O moving O to O america B-geo-loc when O i'm O at O least O 23 O . O no O joke O im O sick O had O a O bad O day O hope O thee O game O us O good O foi O quando O eu O te O encontrei O , O ouvindo O o O som O do O mar O ( O 8 O I O went O to O old B-company navy I-company today O and O bought O two O pairs O of O pants O . O Now O I O have O three O pairs O of O pants O ! O Ha O ha O i O try O for O you O really O hm O lmao O lame O pretty O day O @HotwifeKay O after O Big O Maxxx O @killerCram O " O left O his O mark O " O on O my O hottie O SlutWife O : O http://tinyurl.com/25gxuvq O @SweetTartelette O Glad O to O hear O they O are O okay O . O A O drunk O ran O into O the O back O of O my O son O 's O car O this O week O . O He O said O it O was O frightening O . O N O @IZONModels O we O all O need O it O from O time O to O time O . O :) O #uknouugly O when O #TeamFollowBack O dnt O follow O you O back O @jeffstinco O or O @chuckcomeau O follow O me O for O make O this O bad O day O a O HAPPY O day O :D O love O you O guys O !!! O @sarahXtinchyBBK O looool O u O hav O made O me O want O mcdz O again O an O im O tryin O 2 O stay O off O that O had O it O all O week O an O sounds O nice O :D O x O ... O around O all O day O isnt O good O for O you O , O least O i O get O home-relaxing O time O , O thursday O and O frees O to O keeep O me O sane O :) O RT O @PHANTHANHstic O " O Good O Morning O ! O Have O a O pleasant O and O happy O day O !" O Hey O .... O my O birthday O is O in O exactly O one O month O !!! O :D O @KaiyhaBADDass O for O you O ? O when O I O see O you O ... O seriously O ... O @Romanthropy O oi O u O there O 's O a O #MCRchat O on O tonight O . O No O idea O what O it O entails O but O if O it O 's O new O album O convos O were O in O !! O miren O el O video0 O one O time O .... O ESTA O SIENDO O ATACADO O X O LOS O NO O ME O GUSTA O D O : O RT O @chloezxy O : O had O a O great O time O hanging O out O and O dinner-ing O with O DL3 O peeps O !! O :) O they O are O really O awesome O people O !! O :D O im O thinking O jalepeno O poppers O tonight O :] O ] O Today O is O goin O to O slow O at O work O ... O Can't O wait O to O get O this O weekend O started O !!! O @johngirvin O you've O been O working O on O that O all O night O ! O I O suspect O you O may O even O have O opened O a O git B-product manual O . O @joereist O hey O Joe B-person . O I'm O down O the O road O in O Ft B-geo-loc Mitchell I-geo-loc . O No O time O to O smoke O but O waving O . O Did O you O get O the O book O ? O Congrats O to O @BigBlueSpruce O and O their O record O release O today O ! O Join O us O to O celebrate O with O them O at O @worldcafelive O Get O your O CD O & O tees O 8PM O today O ! O Dearrykas O #1 O rule O of O lifenever O date O someone O who O lives O by O you O it O only O causes O troublr O when O you O break O up O FRIDAY O ! O yesshh O !! O FiNaLlY O Just O ordered O pizza O . O First O time O since O May O to O order O Pizza B-company Hut I-company . O Definitely O not O a O fave O , O but O Pizza O by O the O Chef O doesn't O deliver O five O hours O away/ O Drop O by O the O sweat O check O I'll O be O there O volunteering O RT O @EricJacksch O Ah O , O the O weekend O . O See O you O at O the O Army B-other Run I-other on O Sunday O ? O #Ottawa O RT O @TCPB_McDreamy O : O Gonna O study O for O a O while O before O iTake O this O quiz O ... O wish O me O luck O =) O ( O luck O ) O This O week O only O $5 O off O custom O blogger O design O ! O http://www.bonanzle.com/LoisCollis O @sfgiantsfan55 O omg O Todo B-person Cabio I-person has O been O my O fav O since O like O `07 O i O still O listen O to O their O CD O all O the O time O i O want O the O new O one O . O alejate O de O mi O ... O I O know O u O like O that O turn O you O into O a O star O I O got O it O like O that O baby O don't O fight O it O cus O when O I O miss O your O call O I O hit O u O right O back O @HackinTimSeeley O A O world O without O bare O legs O is O a O terrible O place O indeed O ! O Here O 's O to O 6+ O more O years O of O bare O legged O cassie O RT O @ewangri O : O It O would O be O lovely O if O I O could O get O on O my O laptop O and O do O some O work O before O I O go O out O , O but O @emmams88 O is O flirting O with O some O boy O . O Was O thinking O today O that O I O am O fortunate O o O know O so O many O incredible O people O in O this O world O . O This O is O also O the O time O of O year O where O @jaketapper O 's O kittehs O are O all O , O " O U O FASTIN O ? O LOLZ O , O WE O IZ O UP O IN O OUR O FOODZ O ." O #caturday O #feedthesenses O Belief O happens O for O most O from O the O " O gut'-Oh O there O may O be O some O mental O stimulus O .. O But O feeling O often O has O more O to O do O with O it O @WestonLockley O RT O @AwwBieber O : O Boyfriend O : O Ive O got O dinner O planned O for O Valentines B-other Day I-other . O Me O : O Sorry O , O i O wont O have O time O for O u O or O your O dinner O ..... O Im O Watching O Bie O ... O @Sexstrology O lol O im O a O sargittarius O so O dat O means O i O wanna O have O a O good O time O 2 O ?? O @FLAM3Z130 O half O the O time O in O inglewood B-geo-loc the O other O half O in O mv B-geo-loc ... O where O u O been O wake O me O up O when O I O have O a O reason O to O stay O up O ! O @ZachGarmoe O AH O ! O Concert O in O 2 O days O ! O So O excited O ! O Okay O , O I O now O don't O have O plans O for O tonight O . O Let O me O know O if O you O wanna O hang O :) O @saarbei O ooh O ! O as O long O as O food O was O had O to O celebrate O . O you O HAVE O to O celebrate O all O occasions O with O good O food O ! O 5:59 O and O the O train O comes O to O a O halt O . O Here O we O go O again O I O do O not O think O so O . O There O 's O sun O this O time O ! O What O 's O the O deal O , O LIRR O ? O OK O , O back O on O the O move O . O Work O from O Home O try O a O FREE O 90 O Day O Membership O , O We O have O Clients O waiting O for O You O at O : O http://www.dewpointe.com/JoinMyAppointmentSetter O The O #Forex O Revolution O http://bit.ly/cLjJPO O Jump O onboard O and O earn O 60% O commission O today O ! O Hot O #Earner O http://bit.ly/cL O ... O http://sns.ly/Kfl55 O Mike B-person vick O back O in O dat O line O up O its O bout O time O @darrencyrus O ee O it O wasnt O lambrini O actually O LOL O :) O was O posh O proper O wine O my O mam O got O today O from O work O off O someone O , O it O was O RANK O down O the O sink O LOL O I O had O a O good O day O :) O , O how O y'all O doing O ? O It O 's O about O that O time O ! O @CJ___ O you'll O see O when O you O catch O up O in O the O thread O . O He O was O bitching O , O I O asked O if O he'd O be O happier O in O another O league O and O he O said O replace O him O @Kybil O Hmm O ... O I O probably O would O . O I O don't O know O if O I O can O find O a O visual O for O R'lyeh, B-other though O . O I O may O have O to O bust O out O my O copy O of O the O story O ... O #np O never O too O late O - O three O days O grace O < O 3 O U O shoulda O known O ! O Its O a O Friday O ! O RT O @BoRnStar88 O Tutoring O ppl O all O day O at O work O on O a O Friday O is O already O a O bore O then O the O students O don't O show O up O !!. O O O happy O day O . O My O local O grocery O carries O Hoegaarden B-product . O After B-product Eventide I-product ( O Kindle B-product Edition)By O Catherine B-person Olson I-person Buy O new O : O $ O 6.49 O Customer O R O ... O http://tinyurl.com/25e59fk O #twilight O cuz O this O isnt O a O confusing O phrasing O of O this O ... O LOL O r O u O busy O the O next O day O ? O ;) O RT O @DEWsAtlaWinner O : O @JRKandDDubLuva O l O busy O day O the O next O Catching O up O with O old O friends O is O sound O haven't O seen O ben O for O like O 4 O years O RT O @jeyyounit11 O : O i O was O watching O all O the O footage O on O my O camera O from O the O past O few O months O and O if O i'd O actually O finish O what O i O was O talking O abou O ... O is O going O to O be O at O HoveLive B-other Festival I-other tomorrow O in O Belgium B-geo-loc ! O http://fb.me/v5CUZkEY O RT O @CB_Gorka O : O Here O 's O the O video O for O tonight O 's O Cahill B-geo-loc event O : O http://youtu.be/KX5jNnDMfxA O #magov O @SaviiISJAPAN O nooo O - O i O have O when O people O ask O me O so O i O dont O ask O people O lool O . O #plan O Land B-other of I-other Talk I-other - O Minneapolis B-geo-loc ( O First O Avenue O and O 7th O St O Entry O ) O Wed O , O Sep O 29 O , O 2010 O http://planca.st/AwQ O Today O = O Morton B-product 's I-product Salt I-product motto O + O Murphy B-other 's I-other Law I-other RT O @TechZader O : O iPad B-product Refresh O Due O in O January O http://bit.ly/cw730s O @number2jake O wanna O go O to O Liffey B-geo-loc valley O tomorrow O ? O :) O < O 3 O @elwxnino O @clausw O @ManDee4 O The O #comcast O outages O have O been O increasing O for O the O last O year O and O yet O the O prices O haven't O gone O down O . O It O 's O still O Friday O here O so O my O first O #FF O goes O to O @rockmybones O - O its O her O birthday O today O and O @Hungryforbones O - O thank O you O :) O RT O @medeadly O : O 50 B-person tyson I-person droppin O a O video O before O you O bumass O rappers O .... O i O bet O they O hella O mad O ... O yall O niggas O been O rappin O for O years O and O still O a O ... O RT O @anabekoa O : O http://plixi.com/p/45606791 O You O may O say O that O I'm O a O dreamer O But O I'm O not O the O only O one O I O hope O someday O you'll O join O ( O cont O ) O http O ... O REFINERY29 O STALKS O LA'S O MOST O FASHIONABLE O FEMMES O FROM O LAST O WEEK O VB'S O PARISIAN O BREAKFAST O . O MERCI O , O MERCI O ! O XX O http://ow.ly/2G4KX O I O hate O it O when O my O [ O HONK O ! O ] O gets O stuck O in O my O [ O WHOOPWHOOP] O . O Season O opener O for O Bradley B-sportsteam Soccer I-sportsteam tonight O ! O Getting O ready O , O & O then O out O for O the O nighttttt O :) O With O my O boyfriend O tomorrow-Sunday O < O 3 O what O happens O when O your O happy O but O heartbroken O ? O this O . O Heading O to O Herbivore B-facility tonight O for O dinner O for O the O first O time O . O Any O favorites O or O must O trys O ? O @evarley O Yes O , O thanks O . O We're O more O traumatised O than O he O is O ... O ;) O I O hate O A&E B-other < O shudders O > O Now O it O 's O time O to O catch O up O with O the O day O ... O i O just O woke O up O from O the O worst O nap O eva O .. O arggghhh O ! O now O its O time O for O work O .. O double O arggghhh O !! O When O TIFF B-other is O in O Tdot B-geo-loc , O ALWAYS O have O ur O camera O in O purse O ! O Managed O to O get O a O pic O of O EVA B-person MENDES I-person ! O Didn't O know O she O was O signing O autographs O @ O the O mall O . O Does O anyone O else O hate O when O authors O spend O the O first O half O of O each O book O chapter O telling O you O what O the O rest O of O the O chapter O is O going O to O be O about O ? O RT O @KaiWayne O : O I O think O Big O Sam B-person was O misquoted O when O he O said O he O could O manage O Real B-sportsteam . O What O he O actually O said O was O he O could O manage O a O real O ale O . O #NowPlaying O Tomorrow O always O comes O - O @samantharonson O #ILikeIt O #NiceSong O ( O : O @SpankyDuhh O well O same O thing O goes O to O me O duhh O i O need O up O to O 800 O more O follower O before O i O drop O my O album O ... O Wats O good O for O tonight O any O partys O @suggsygirl O Have O a O lovely O day O and O take O lots O of O inappropriate O photos O ! O *bg* O Rsn O out O of O gas O . O Walking O to O the O gas O station O this O time O . O This O is O supposed O to O happen O !!! O 'RT O @amandacarolinne O : O " O Danger B-other Days I-other : I-other The I-other True I-other Lives I-other Of I-other The I-other Fabulous I-other Killjoys I-other "' O I O hate O when O people O ask O me O " O what O are O you O , O like O your O race O ?" O cuz O I O don't O be O knowing O what O to O say O . O I O just O say O I'm O black O and O stuff O . O lol O watching O camp B-movie rock I-movie 2 I-movie again O ... O all O the O way O through O this O time O :P O . O 'RT O @ItsTheTeenLife O : O People O that O txt O back O " O K O ." O 20 O minutes O after O the O convo O already O ended O . O Three O words O for O you O [ O F%#* O - O You O - O Loser O ] O #Itsthe O ...' O Well O , O after O a O fast-paced O week O full O of O prayer O from O family O and O friends O , O I O now O have O a O full O time O job O and O I O pretty O much O start O Monday O :-) O Beginners O Guides O to O Blogging O and O Twitter B-company : O Two O amazing O products O from O Mike B-person 's O Life O . O The O 60 O day O Beginner O 's O Guide O to O Bl O ... O http://bit.ly/99wlho O @_AlexLight_ O WHAAAA O ? O And O you O actually O played O ? O When O it O wasn't O with O the O Wolstenbeast O ?! O @LightCMS O over O 6000 O followers O ! O Told O you O , O you O would O get O a O lot O , O you O had O about O 2000 O on O the O first O day O . O Less O and O less O likely O I O will O win O lol O Dylan B-person refuses O to O take O a O nap O and O he O was O up O before O 7am O , O now O he O will O crash O late O and O stay O up O half O the O night O @KSSchro O When O I O run O over O an O animal O I O think O of O Disney B-company movies O & O that O I O just O ran O over O someones O brother O , O mom O or O dad O . O The O full O life O montage O helps O RT O @refuel_bar O : O Annual O Whole B-other Hog I-other Dinner I-other Wed O Oct O 27 O ; O 3 O seatings O , O communal O tables O , O family O style O $49 O ; O http://bit.ly/62Gs3X O for O details O . O oh O and O by O the O way O i O don't O want O to O leave O tomorrow O :( O @Vivianna_loves O I O just O bought O Dior B-product mascara O for O the O first O time O ..... O its O the O only O mascara O that O doesn't O make O me O wanna O wear O lashes O . O I've O never O laughed O so O much O in O my O entire O life O as O i O have O tonight O . O my O eyes O are O watering O , O it O hurts O to O move O and O i O actually O fell O off O my O chair O once O /Lebowski'd O RT O @RebellionPR O : O When O I'm O pope B-person the O first O thing O I'm O going O to O do O is O shit O in O the O woods O . O #pope O @thedgoddess O I O can O be O ... O when O I O want O to O be O . O RT O @thedgoddess O : O You O are O so O benevolent O , O oh O kind O master O . O RT O @DevoRiEr O : O Aye O @Jus1Nyt O how O about O u O catch O a O red O eye O out O tonight O so O u O can O come O out O tonight O ? O LMaO O @halbpro O it O 's O simple O to O get O two O films O worth O of O filming O done O in O a O year O . O 3 O pushes O it O a O bit O , O but O is O possible O . O 4 O is O on O the O limit O . O depends O though O You O Get O What O You O Give O ~ O Zac B-musicartist Brown I-musicartist Band I-musicartist 40 O days O in O the O top O 100 O Release O Date O : O September O 21 O , O 2010Buy O new O : O $ O 18.98 O $ O ... O http://amzn.to/9Cfkpc O This O time O tomorow O i'll O be O in O Taorminaa B-geo-loc :D O DD O ^^ O hmm O , O I O always O get O a O bit O scared O when O I O update O my O Blackberry B-company .... O Good O day O today O :) O ) O What O the O :\ O after O tweeting O ' O monkey O donkey O ' O my O first O account O got O limit O #twitterjail O Only O about O 1/3 O done O w/ O ch O 6 O Looks O like O those O of O u O who O told O me O u O still O need O to O catch O up O will O have O time O 2 O Will O get O to O review O replies O soon O !!! O @lehoop18 O not O going O out O tonight O , O but O I O love O you O . O productive O room O cleaning O being O done O ! O Maybe O if O I'd O told O you O the O right O words O At O the O right O time O You'd O be O mine O Added O a O few O people O tonight O so O if O I O added O you O i'm O not O a O stalker O , O just O following O @scotsman7 O amd O his O #FF O ty O :) O 'ive O been O driving O all O over O the O place O today O and O this O is O the O 7th O time O ive O heard O " O dynamite B-other " O on O the O radio O . O #loveit O though' O RT O @papalote415 O : O Homemade O PAPALOTE O Vegan O Soyrizo O Tamales O and O Soyrizo O Tamales O at O OFF B-facility the I-facility GRID I-facility Fort B-facility Mason I-facility at O 5PM O TODAY O !! O < O < O salsa O , O salsa O , O my O fav O I O fully O expect O that O my O shrimp O will O be O delicious O tonight O , O if O not O extra O buttery O from O the O oil O spills O . O #redlobster O RT O @Queen_UK O : O Having O repaired O 500 O years O of O religious O division O and O set O an O example O of O tolerance O and O leadership O to O the O Christian O world O , O one O ... O RT O @Softscrub O : O This O week O 's O #FF O has O started O ! O Follow O us O for O a O chance O to O win O a O free O bottle O of O #SoftScrub O ! O @iFckd_Hannah O wow O , O sounds O like O ur O pretty O busy O these O days O ... O twitpic B-company ur O new O haircut O hehe O :) O so O ur O havin O a O relaxin O friday O , O no O parties O ? O I O spent O my O day O Photoshopping O Kerri B-person russel I-person into O a O mutant O headed O tree O hugger O , O Now O that O thats O done O . O Im O off O to O my O late O night O job O , O Sittin O ' O BABIES O lalala O south O game O tonight O !!!! O Go O us O . O http://bit.ly/b351o9 O yupp O ! O RT O @TrentShelton O have O u O ever O met O some1 O that O when O u O tell O a O story O THEY O HAVE O to O tell O their O story O 2 O overshadow O yours O to O feel O superior O Yes O sir O , O @Digeratii O is O on O a O customer O service O roll O today O . O Good O man O that O Josh B-person . O Beer O after O golf O ?? O Give O me O a O hell O yeah O !! O (@ O White B-facility Eagle I-facility ) O http://4sq.com/b5Wloc O RT O @JodyModel O : O #Blackholidays O Pookie O Release O From O Prison O Day O @wellydogdesigns O aww O shame O he O 's O not O full O of O beans O too O ! O ah O well O , O as O long O as O you're O having O fun O ;-) O hmm O I O fancy O a O drink O now O :) O ) O today O everything O will O gonna O be O okay O , O i O know O it O . O Haaaa O , O the O secret O . O I O know O I O know O it O , O I O will O meet O very O much O cool O people O . O Yes O yes O yes O . O IKNOWIT O '::: O Flashback O Friday O - O " O Dancing B-other Queen I-other " O http://bit.ly/d49VXU' O RT O @HeyThatsSoTrue O : O When O I O was O little O , O I O had O a O huge O imagination O . O Now O I O can't O even O make O up O a O story O for O english O class O . O #HeyThatsSoTrue O I O KNEW O IT O RT O @stuartwashere O : O Awh O ... O @AaronShoutNever O still O manages O to O be O nice O when O he O 's O drunk O . O : O L O @diggy_simmons O #diggyfollows50 O diggy B-person should O follow O me O because O i O saw O him O at O @justinbieber O 's O concert O on O september O third O :D O We O bought O Riley B-person a O onesie O today O . O :) O @daraobriain O hmmm O . O Cant O wait O . O Comin O on O Thursday O . O First O time O to O the B-facility Apollo I-facility . O Well O , O I O was O gonna O buy O a O Zune B-product HD I-product ... O but O now O that O the O @Rally4Sanity O exists O , O I O must O go O to O D.C. B-geo-loc next O month O . O YESSSSSS O . O So O I'm O off O to O the O Mumpreneur B-other Awards I-other tomorrow O and O leaving O daughter O @itsonlymestupid O to O talk O to O press O & O buyers O on O our O stand O @LondonFashionWk O I'm O trying O to O figure O out O if O I O wanna O do O something O tonight O now O my O instructor O says O that O when O he O picks O me O up O I'm O just O gonna O get O straight O into O the O drivers O seat O ! O : O L O I O think O I'll O cope O !! O lol O x O @highs_are_low O cause O I O was O too O busy O singing O my O heart O out O and O all O . O It O 's O hard O to O go O crazy O when O you're O trying O to O record O something O :p O td O bem O que O as O meninas O do O outro O time O eram O mt O brutas O e O cavalas O , O maais O foi O bom O , O porq O . O ganhamos O RT O @Sexstrology O : O How O many O Sagittarians O does O it O take O to O change O a O lightbulb O ? O The O sun O is O shining O , O the O day O is O young O and O youre O worrying O about O ... O r O rated O http://bit.ly/aGV3kX O Weekend O Movie O News O Wrap O Up O : O July O 11 O , O 2010 O Screen O Rant O Got O my O office O all O reranged O from O how O I O put O it O yesterday O ! O =) O @stephen_james O May O I O ask O what O is O it O with O your O severe O hatred O for O the O word O ' O bro'? O @FashionDivvah O I O know O right O .. O he O 's O my O baby O cos O he O 's O way O younger O than O me O ... O like O 4 O years O junior O ... O awwww O I O had O to O sharply O spill O ! O LOL O ! O RT O @tabloidwatch O : O Daily B-company Mail I-company 's O not-at-all O predictable O front O page O headline O tomorrow O : O Pope B-person 's O battle O to O save O Christmas B-other . O I'm O almost O halfway O through O my O #cleaneating O challenge O ! O http://bit.ly/9mVsCQ O Getting O takeout O for O the O first O time O tonight O - O what O to O get O ?! O Tarantula O in O my O lounge O last O night O , O hoping O i O dont O get O a O repeat O tonight O Chevron B-company gouging O consumers O by O claiming O payments O are O late O when O in O reality O statement O delivery O is O very O poor O turnaround O time O . O charging O hefty O fee O 's O DING O DONG O DING O DONG O guess O who O 's O comin O dinner O tonight O ? O U O gonna O be O part O of O my O meal O tonight O ....... O @TylerHilton O One O thing O about O twitteris O , O We O all O have O plenty O of O time O ... O LOL O :-) O @jaredleto O i O saw O chelsea B-person today O u O weren't O there O ? O WTF O #ff O @eops O to O cheer O him O up O , O he O 's O not O feeling O so O hot O today O . O (and O send O him O some O virtual O soup O ) O Is O ur O date O interested O in O a O hook-up O or O long-term O relationship O ? O Answer O lies O in O what O he O 's O looking O at-your O face O or O your O bod O ! O http://ow.ly/2FPLk O Jupiter B-geo-loc : O Closest O Approach O in O Nearly O 50 O years O . O Catch O it O nxt O week O . O It O wnt O B O that O big O or O bright O again O til O 2022 O http://bit.ly/d5Bzx7 O An O Entire O Facebook B-company Photo O Album O Captured O in O a O Single O Long O Exposure O Photograph O [ O Photography] O : O @Carr0t O aye O been O tonight O - O excellent O @bornofosichris O ok O I'm O gonna O fb O message O you O deets O when O I O get O a O chance O ! O game O tonight O !!!!!! O I O haven't O driven O to O bc B-geo-loc in O years O , O and O I O am O just O stunned O by O how O beautiful O the O drive O is O . O @GottaLaff O don't O do O the O crime O if O you O can't O serve O the O time O . O ;) O eh O ? O horner O 's O on O the O #uspro O start O list O : O RT O @hornerakg O : O Heading O to O @clarkscornerca O for O Q&A O . O Back O in O Ione B-company to O ride O tomorrow O ! O http://ow.ly/2G4ti O new O office O furniture- O check O , O paintings O of O hubby- O check O , O neuro O drink O stock- O check O , O finished O giving O interview- O check O . O time O 2 O go O home O . O The O week O ahead O - O http://newzfor.me/?7jfc O G'mar O chatima O tova O , O internet O ! O 'RT O @ihatequotes O : O For O anyone O having O a O bad O day O , O just O remember O : O " O If O God B-person brings O you O to O it O , O He O will O bring O you O through O it O !" O -@KimKardashian O #i O ...' O @Alleycat17 O HAPPY O BIRTHDAY O ! O :D O . O Hope O you're O having O an O amazingrific O day O !!! O :D O . O RT O @LUNGevity O : O This O is O going O to O be O an O amazing O weekend O w/3 O events O on O the O same O day O benefiting O lung O cancer O research O ( O Sun/Sept O 19 O ) O !... O http O ... O ellwood B-person 's O sushi O , O a O glass O of O pinot O , O " O strokes B-other of I-other genius I-other " O by O john B-person wertheim I-person , O play O at O barksdale B-facility in O a O bit O , O lovely O friday O night O :) O RT O @Kiara_TheGR8 O : O Someone O please O wake O me O up O when O May O 7 O , O 2011 O gets O here O ! O #thanks O @henryandfriends O ooh O that O sounds O lovely O :) O we O had O lots O sunshine O 2- O hope O it O stays O 4 O tomo O when O we O going O to O do O the O doggie O show O *paws O x-d* O ! O x O x O Haven't O tweeted O since O june O wow O ....................... O but O I O did O get O a O facebook B-company so O who O cares O about O twitter B-company 'I O just O took O " O Justin B-person Bieber I-person takes O 2 O months O off O career O to O finish O school O , O H O ..." O and O got O : O Part O 25 O : O They O got O my O back O .! O Try O it O : O http://bit.ly/bcqNCs' O So O here O in O Belgium B-geo-loc its O now O 7minutes O before O midnight O ,, O Tell O me O how O late O it O is O were O you O live O :D O RT O @eljmayes O : O Ladbrokes O Labour O Leadership O Market- O http://bit.ly/cD3Rn8 O Ed B-person Miliband I-person 's O odds O have O shortened O significantly O in O the O last O week O . O Ha O I'm O lucky O . O I O got O in O the O car O like O five O seconds O before O it O started O POURING O rain O . O Always O kinda O awkward O when O you O get O the O chat O group O wrong O in O WoW B-product . O Sometimes O you O don't O want O the O tank O to O know O you're O dissin O ' O him O . O Oops O . O he O likes O prince B-person , O paul B-person simon I-person , O and O o.d.b. B-person i O may O have O found O my O soul O mate O . O '@stephaniebriggs O Jumped O in O the O truck O , O flipped O the O iPod B-product over O to O shuffle O , O and O it O gives O me O " O goodbye B-other moon I-other ". O Probably O a O year O since O last O heard O it O !' O RT O @rainnwilson O : O Hey O , O Seattle-ites O ! O Check O it O : O http://www.officetally.com/rainn-wilson-and-friends-seattle-oct-23 O Think O the O article O should O be O ready O to O resubmit O next O week O . O Quite O excited O , O but O also O rather O scared O . O RT O @ezraklein O : O It O 's O Yom B-other Kippur I-other eve O , O so O it O 's O the O time O to O apologize O to O anyone O I've O wronged O . O Hopefully O , O you're O on O Twitter B-company . O Sorry O ! O FREE O : O Air B-product Music I-product Jump I-product . O if O you O like O Rock B-product Band I-product or O Guitar B-product Hero I-product , O you O may O also O like O Music B-product Jump I-product . O http://appj.mp/AirMusicJump O @Cortney_plus2 O ding O ding O ding O ! O front O , O back O and O let O 's O just O say O I'll O be O putting O soph O 's O hair O in O a O bun O before O the O next O nap O time O . O Back O at O work O , O waiting O for O Sunday O when O Mike B-person Vick I-person get O his O shine O on O Vs O . O the B-sportsteam Lions I-sportsteam Conflicts B-product of I-product Law I-product : I-product Cases I-product and I-product Materials I-product : O R O . O Lea B-person Brilmayer I-person , O Jack B-person L I-person . O Goldsmith[May O 01 O , O 2011 O ] O http://amzn.to/bnabQu O What O a O day O < O 3 O @Kianerzzz O showering O sleeping O and O tanning O always O make O me O feel O better O when O I'm O sick O . O Hope O to O see O a O lot O of O people O at O game O night O at O @gathering_umc O tonight O . O Plenty O of O games O to O choose O from O just O from O my O family O . O :) O RT O @jakeandamir O : O If O you O would O have O told O me O 20 O years O ago O that O YOM B-other KIPPUR I-other would O be O trending O on O twitter B-company I'd O be O all O like O " O what O 's O twitter B-company ?" O so O much O for O trying O to O do O my O h/w O before O my O bday O weekend O . O working O til O close O :/ O RT O @its_QuiB O @jperiod1015 O cooking O next O week O !!: O )) O < O > O lol O bet O ! O RT O @Quotealicious O : O A O guy O & O girl O can O be O friends O . O But O sooner O or O later O , O one O will O fall O for O the O other O . O Maybe O too O early O , O maybe O too O LATE O or O may O ... O @P_Rezzphere O : O uh O ... O Fruit O this O time O .. O Gotta O stay O in O shape O my O brotha O ... O @CHAMBERSfever O i O used O to O have O fishes O but O they O lived O like O 5 O days O what O pet O would O you O like O to O have O ? O i'm O deeply O in O love O with O Eli B-person After O the O Storm O - O http://newzfor.me/?7r7c O [ O Like O it O ? O http://bit.ly/cWAfsq O ] O @JayDubshow O it O showed O you O Clapping O on O TV O after O the O Swagger/Kofi B-other Match I-other Lol O RT O @PeterRabbitt O : O HAPPY O BIRTHDAY O TO O @DaDaDaphne O WISHIN O YOU O THE O BEST O & O HOPE O YOU O HAVE O A O WONDERFUL O DAY O @becky_89 O Oh O dear O , O well O i'll O cheer O you O up O on O Wednesday O ! O xx O Today O 's O Vuelter B-other blog I-other : O http://bit.ly/choe8Y O if O i O hit O tweet O limit O again O today O , O i'm O gonna O be O so O frickin O ' O pissed O . O @eatzombiebabies O haha O maybe O we'll O dance O off O in O the O online O stream O tomorrow O ! O lol O @George_Hill3 O u O made O my O day O :) O " O When O you O don't O get O what O you O want O , O you O suffer O . O If O you O get O it O , O you O suffer O too O since O you O can't O hold O on O to O it O forever O ." O ~ O Peaceful O Warrior O RT O @iSplashInYoMouf O : O RE*TWEET O IF O YOU O GOING O OUT O TONIGHT O ? O Ready O for O Friday O night O at O The B-facility Pub I-facility ! O DUDE O Jones B-person playing O inside O and O DJ B-musicartist Chris I-musicartist L I-musicartist in O Loft O 'RT O @chambermusician O Sprezzatura O Time O ( O " O But O , O I O could O play O it O in O practice O " O ) O #music O #musicians O http://su.pr/3iJ0RE' O @luvgh62 O next O sun O on O stelly O day-boo O ! O found O some O really O funny O pictures O of O 1st O year O : O L O going O to O put O them O on O facebook B-company now O !! O @bubzeh O What O are O you O up O to O today O ? O 'or O even O in O a O 69 O . O smother O me O w/ O it O and O hold O my O dick O like O a O joystick O when O u O do O it O . O shit O ... O say O some O shit O like O " O suck O this O pussy O " O i O wont O laugh O .' O I O love O it O , O I O can O torment O my O friends O and O their O kids O long O distance O via O fb B-company and O twitter B-company . O Mwahaha O ! O Need O it O to O be O slammed O at O the O haus O tonight O @Jfordj12 O Wee O need O u O to O make O it O happen O on O Sunday O Best O #free O #livemusic O in O #Denver B-geo-loc tonight O with O the O return O of O Breaking B-musicartist & I-musicartist Entering I-musicartist . O Be O sure O to O come O down O to O Hi B-facility Pac I-facility and O check O it O out O ! O Xbox B-product 360 I-product : O Enslaved B-product : I-product Odyssey I-product to I-product the I-product West I-product Demo O Coming O to O PlayStation B-product Network I-product on O September O ... O http://bit.ly/9gFTHn O I'm O at O Bowl B-facility Long I-facility Island I-facility ( O 138 O West O Ave O , O Patchogue) B-geo-loc . O http://4sq.com/aX6N26 O @superanne O Can O I O get O a O Twitter B-company software O to O spew O random O bullshit O about O airports/coffee/conferences O ? O Cause O that O would O free O up O some O time O . O Woot O ! O My O Oakland B-geo-loc line O made O the O list O . O | O MT O @LaphamsQuart O We've O posted O the O best O of O yesterday O 's O #mycityis O definitions O . O http://bit.ly/dffSJG O Game O tonight O with O Tessa B-person . O I O get O to O see O Seanzie B-person if O he O goes O :) O . O I O get O to O see O my O boyfriend O too O < O 3 O c O : O Twenty O five O after O Three O im O tired O of O doing O this O short O hair O thing O . O i O need O pay O day O to O come O alreadyyyy O !! O 'RT O @veganbotanicals O : O alright O #vegans O ! O ANY O purchase O from O our O etsy O shop O is O 1/2 O off O when O you O type O " O go O #vegan O " O in O the O message O to O seller O at O c O ...' O Let O 's O all O take O a O shot O for O Lindsay B-person Lohan I-person tonight O . O Maybe O snort O a O line O if O you're O a O real O dedicated O fan O . O @yamyamjones O haha O ! O Thts O actually O quite O useful O x O lmao O x O iv O never O thought O bout O tht O before O x O I'm O glad O it O made O yu O smile O x O :D O Gettin O it O in O tonight O ! O Shoutsout O to O the O homie O Jarred B-person Gidley I-person ! O I O just O remembered O this O week O is O The B-facility Heatwave I-facility 7th O birthday O ... O meant O to O make O tonight O 's O Brixton B-geo-loc bashment O our O birthday O party O but O I O forgot O LOL O I O want O 2 O talk O 2 O some O people O before O i O go O to O sleep O :( O http://tinychat.com/welovejustinbieber O @leahmrb O Same O time O as O you O silly O !! O #lushy O Free O Romeo B-other & I-other Julliet I-other under O the O stars O tonight O thru O Sunday O in O South B-geo-loc Park- I-geo-loc please O retweet O please O come O ! O http://is.gd/ff482 O ' O Breaking B-movie Dawn I-movie ' O Returns O to O Vancouver B-geo-loc on O January O 11th O http://bit.ly/dbDMs8 O @ShayalKumar O GooD O MorNinG O :) O HaVe O A O GrEaT O DaY O :) O @RotaryCarClub O r O you O driving O this O time O ? O Good O morning O ! O Today O 's O Software B-other Freedom I-other Day I-other . O Join O us O at O UP B-geo-loc Diliman I-geo-loc for O a O day O of O great O events O . O Free O admission O ! O http://ow.ly/2FM1n O #sfdphils O Castle B-person goes O down O , O Murkowski B-person goes O write-in O . O Probably O not O the O NRSC B-other 's O best-ever O week O . O Every O Saturday O night O Casitas B-facility presents O Luna B-facility Lounge I-facility , O the O perfect O setting O to O linger O under O the O moonlight O http://twitpic.com/2pdt30 O The O latest O App O news O : O iTunes B-company Instant O : O Search O iTunes B-company at O high O speed O thanks O to O 15-year-old O developer O : O If O you've O hear O ... O http://bit.ly/cy1wNb O RT O @rocsidiaz O : O @Wale O ill O be O in O DC B-geo-loc tonight O where O u O at O ?? O Ill O be O at O muse B-facility 717 O 6th O St O Nw O Dc O to O party O I O don't O know O , O how O to O be O fine O when O i'm O not O . O And O i O don't O know O how O to O make O a O feelin O stop O . O '" O When O I O think O of O the O Fearless B-other Tour I-other , O I O think O of O how O this O is O one O of O the O golden O ages O of O my O life O . O High O school O ..." O http://tumblr.com/xbhiucqso' O The O babe O 's O first O day O of O co-op O preschool O . O http://plixi.com/p/45663997 O time O to O get O into O the O PJ O Bottoms O ;D O #YouKnowHow O when O you O see O little O kids O and O u O feel O like O u O have O to O watch O them O cuz O their O parents O aren't? O Lol O RT O @PolarBeverages O : O Before O Hurricane B-other Earl I-other comes O , O stock O up O on O Polar O Orange O Dry O ! O :) O Soulja B-person Boy I-person | O TheDeAndreWay O . O com O - O The B-other DeAndre I-other Way I-other in O stores O Nov O 2 O , O 2010 O http://t.co/8XvVWHz O via O @SouljaBoy O RT O @MyPhilaEagles O : O Is O it O Sunday O yet O ? O #Eagles O Best O wishes O to O everyone O as O you O travel O to O your O respective O football O games O tonight O , O and O this O weekend O . O Go O band O ! O Blades B-sportsteam trade O Travis B-person Toomey I-person to O Seattle B-geo-loc for O 4th O Rd O Pick O in O ' O 11 B-other Bantam I-other Draft I-other . O 7 O 20-year O olds O remain O . O #yxe O #Blades O #WHL O Just O when O you O turned O your O back O !: O http://wp.me/pSFZQ-9w O @lennaraye O i O know O its O awful O . O i O hate O the O feeling O of O being O passed O even O when O im O going O a O little O bit O over O speed O limit O OMFresh O man O he O has O a O body O yes O i O finally O saw O it O today O lolz O during O gym O he O was O lifting O up O his O shirt O ;) O #TeamWonder O RT O @MsSingandPlay O : O @bruindude92 O Aww O : O 0 O ( O When O do O you O guys O start O filming O for O season O 5 O ? O ( O because O there O just O HAS O to O be O an O S5 O or O I'll O cry O ) O @mamasoxfanVI26 O It O has O been O 3 O years O and O never O an O answer O . O It O just O drove O me O nuts O , O but O i'm O not O mad O . O Just O thinkin O not O again O ya O know O . O 'FREEGAME O FRIDAY O !!! O text O in O the O word O " O FREEGAME O " O to O 59925 O for O a O FREE O 1hr O timeplay O gamecard O !' O On B-other My I-other Own I-other Time I-other - O Gym B-musicartist Class I-musicartist Heroes I-musicartist New O boyz O have O come O a O long O way O in O the O game O and O still O going O strong O ! O #muchlove O @jasonhand O Have O fun O ;) O I O expect O updates O on O your O drunk O status O since O I'm O working O tonight O ! O @Desrea_JazzMane O L O O O L O aww O i O will O give O you O some O next O friday O to O ( O : O x O Conv O between O sisters O pals O . O Charlene B-person ; O it O 's O weird O to O think O Jill B-person will O have O a O baby O after O christmas B-other . O Jemma B-person ; O they O already O have O a O baby O charlene B-person . O : O L O Damn O . O I O do O NOT O know O how O to O work O this O phone O today O . O I'm O pushing O all O kinds O of O buttons O that O shouldn't O be O pushed O . O #storyofmylife O @TheRealDavidgs O How O kind O I O greatly O enhanced O my O confidence O for O success O after O attending O this O seminar O . O http://lz.ly/2bIR O Fair O Q O : O If O you O could O spend O an O entire O day O with O one O ... O A O : O Metallica B-musicartist .: O http://chatter.com/ask-me-anything/kt2yo O RT O @BieberInAus O : O WAIT O I O THHINK O @JUSTINBIEBER O IS O STILL O ON O BECAUSE O HE O WAS O JUST O ON O FACEBOOK B-company 1 O MIN O AGO O .. O CREEPER O ! O I O didn't O know O if O you O rub O your O eye O for O a O long O time O you O can O get O cock O eyed O Im O scared O that O every O girl O i O care O for O will O find O a O better O woman O and O end O up O happier O in O the O long O run O ... O its O saturday O ;) O i O think O so O : O L O < O 3 O < O for O the O competition O xxxx O (@PaigeLouiseRyan O live O on O http://twitcam.com/2237v O ) O i O see O some O ppl O celebrating O their O birthdays O like O 2-3 O times O a O year O ... O WTF O ?! O @TRARONEdwards O tuesday O is O perfecy O @MiSS_SOTO O I O think O that O 's O when O I O 'm O gonna O be O there O On O Thanksgiving B-other after O you O done O eating O its O #TimeToGetOut O unless O you O wanna O help O with O the O dishes O omg O simone B-person is O coming O over O then O 2morrow O we O foin O 2 O da O fall O festival O cant O wait O 4 O GAC O 2night O ! O an O Justin B-person Bieber I-person concert O in O Dec O .!!!!!!! O < O 3 O Costa O Rican O group O CocoFunka B-musicartist power O this O week O 's O Indiesent B-tvshow Exposure I-tvshow http://ht.ly/2G4nS O by O @fuseboxradio O on O @planetill O ThAnK O gOd O ItS O fRiDaY O !! O @mfeige O it O 's O on O a O Saturday O though O . O So O that O 's O a O thing O . O Personal O Twitter B-company is O now O ago O . O People O can O now O keep O track O of O me O instead O of O just O my O films O and O production O company O . O @Bills_Ears O WELL O SORRRY O !! O I O did O n't O know O you O YEARS O AGO O ! O @aplusk O http://www.youtube.com/watch?v=eLMui7zBiXo O we O beat O kilkenny B-geo-loc after O they O beat O us O for O the O last O 4 O years O in O the O hurling O . O Woo O !!! O @MakethisRalate O good O luck O at O Elliot B-facility Miner I-facility :D O yous O were O greaaaat O tonight O < O 3 O xx O Hit O word O count O ! O Woo-hoo O ! O *throwing O confetti* O Now O I O can O goof O off O tonight O and O read O . O *happy O writer O dance* O #amwriting O #havewritten-yay O ! O RT O @therbertson O : O Just O saw O the O worst O movie O in O years O ... O Piranha B-movie 3D I-movie just O exceeded O the O limits O of O crappyness O . O | O Glad O you O enjoyed O it O . O It O is O Friday O afternoon O adn O I O could O n't O be O happier O . O Ending O a O crappy O week O on O a O good O note O is O always O nice O . O But O in O any O case O I O suppose O you O will O not O let O it O away O for O some O days O ? O So O this O will O be O more O lhs B-facility games O then O i O went O to O then O when O i O went O to O lhs B-facility @ToriVicotia O aaahhh O ! O Me O too O !!!! O Its O so O much O better O than O when O you O play O it O yourself O ! O Haha O ! O lush O when O ya O download O limit O has O been O succeeded O like O all O night O : O L O I O just O took O " O After O getting O trampled O at O a O Justin B-person Bieber I-person concert O , O yoiu O wake O up O and O ..." O and O got O : O Part O 6 O :) O ! O Try O it O : O http://tinyurl.com/233u5lu O ; O I O can O upgrade O to O a O BlackBerry B-product in O November O !! O Yesss O . O < O 3 O BB B-product Bold I-product , O here O I O come O ! O @_Kinghoopa O the O one O thats O out O now O is O free O ... O Father O to O tha O Game O is O droppin O in O a O month O or O so O .. O I O need O to O draw O FASTER O . O I O 'm O gonna O scan O two O weeks O worth O of O doodles O to O get O going O , O lol O . O @FeeninforPretty O making O something O to O eat O , O aint O ate O all O day O RT O @m_candelaria O : O The O amazing O Follow O Friday O Train O : O @Sketchjobs O @lollieshopping O @philadelphiabn O @elainebiss O @TableMatters10 O @STALKmyPRETT O ... O RT O @itsPLG O : O Congrats O to O @bobburnquist O for O qualifying O in O 1st O place O today O !!! O Yeah O son O !!! O Still O on O my O @teganandsara O kick O ! O It O 's O been O a O solid O 2 O weeks O ! O Chilling O wit O my O baby O tonight O ! O What O a O productive O day O . O Not O . O RT O @OMGwhatateen O : O RT O if O you O are O happy O it O 's O friday O . O #OMGwhatateen O @Dc_Luvs_Swift O randomly O that O just O made O me O smile O :D O do O n't O ring O the O bell O tweet O me O when O ur O here O 'll O let O u O in O :D O ... O that O def O would O be O awesome O :D O @justinbieber O I O could O sing O with O you O what O I`ll O do O o O show O in O november O in O my O city O oh O my O dream O and O sing O one O time O The O Basic O Step O Before O You O Even O Start O Thinking O Of O Making O Your O ...: O Keyword O research O is O a O well O known O subject O , O yet O so O ... O http://bit.ly/9XQgSr O Thanks O and O I O will O RT O @InnerGizerBunni O @kizfoprez_TR O Happy O Berlated O Birthday O ! O I O hope O u O have O fun O < O live O it O up O tonight O .. O Enjoy O < O b O safe O ! O RT O @DonnieWahlberg O : O Soldiers O ... O Familia O ... O BH's... O NK O Fam O ... O Homies O ... O Etc O . O Etc O . O Etc O .... O I O 'm O gonna O need O some O company O next O Friday O in O NYC B-geo-loc ... O I O 've O never O found O a O happy O way O to O preserve O it O but O it O 's O usually O affordable O most O of O the O year O . O We O eat O a O lot O 2 O , O grilled O saute O bake O or O fried O RT O @BuffSabresGrl63 O : O RT O @LindyRuffsTie O : O RT O @FakeDarcy O : O No O Derek B-person , O when O guys O get O hurt O , O " O kissing O the O boo-boo O " O will O not O make O it O better O . O #sab O ... O Must O say O iPhone B-product is O more O accurate O . O Wasnt O brought O up O here O though O , O Wrawby B-geo-loc is O where O I O spent O 18 O years O of O my O life O . O @Littlesapling O You O said O that O last O week O Ash B-person . O I O think O you O need O a O 12 O step O program O . O How O to O Write O a O Resume O After O Being O Fired O : O Dealing O with O how O to O write O a O resume O after O being O fired O is O something O many O of O ... O http://bit.ly/amRxFJ O RT O @NickSilly O : O Fun O ! O RT O @JackFMDFW O : O Put O on O your O Boogie O Shoes O and O Get O Down O Tonight O with O KC B-musicartist and I-musicartist The I-musicartist Sunshine I-musicartist Band I-musicartist . O #Dallas B-geo-loc #concerts O http O :/ O ... O @zombie_killer94 O aaahh O sorry O i O posted O the O link O wrong O :( O basically O their O record O company O confirmed O the O title O < O it O comes O out O nov O 23 O XD O Happy O birfday O to O the O only O p-i-m-p O I O know O ... O @amcdavid O ! O We O 're O getting O " O white O boy O wasted O " O tonight O ! O Lmao O .. O They O #Hurrt O ! O RT O @_sofucKENNrude O y O every O nigga O tryna O grow O they O hair O out O . O should O of O did O that O a O long O time O ago O . O -_- O skimp O ass O braids O . O Half B-movie baked I-movie , O next O how B-movie high I-movie , O grandma B-movie boys I-movie , O puff B-movie puff I-movie pass I-movie , O and O 4 O hours O of O friday O . O < O DEAD O GREEN O HARTS O > O @mcflysandra O haha O yes O :) O have O to O go O speak O tomorrow O :) O good O night O xxx O @MikePortnoy O I O got O slapped O in O the O face O the O other O day O by O a O few O DT B-musicartist fans O because O I O said O you O were O awesome O for O joining O A7X O . O So O worth O it O . O foREVer O ! O @2kjdream O Good O morning O ! O Have O a O Good O day O :) O from O JPN B-geo-loc . O Good O golly O . O Who O left O the O candy O in O the O lunchroom O . O May O set O a O world O record O for O the O most O Sour B-product Patch I-product kids I-product eaten O by O an O individual O ! O Hey O .... O my O birthday O is O in O exactly O one O month O !!! O :D O Do O n't O miss O our O Half O Way O to O St B-other . I-other Patty I-other 's I-other Day I-other Party O Tonight O ! O We O 're O having O crazy O drink O Specials O too O .. O tex O 980-333-3923 O to O get O on O the O guest O list O ! O RT O @rockerfuckerak O : O What O 's O done O is O done O , O Just O leave O it O alone O , O and O do O n't O regret O . O Sometimes O somethings O turn O in-to O dumb O things O . O And O that O 's O when O ... O @ShelAndPushPlay O Yeah O man O , O u O got O it O . O It O 's O only O a O matter O of O time O . O @jaredleto O ... O ive O been O to O 13 O 30stm B-musicartist concerts O now O and O you O never O got O me O on O stage O during/before O kings B-musicartist and I-musicartist queens I-musicartist :( O (( O Reduced O Sodium O labels O may O only O have O 25% O less O sodium O than O the O original O .. O go O for O " O Low O Sodium O " O labels O which O have O no O more O than O 140 O mg O per O serving O Power O nap O . O I O need O it O . O Its O been O a O stressful O week O . O I O 'm O excited O for O xmas B-other , O haha O . O Goodnight O . O :) O today O just O does O n't O feel O like O a O Friday O HA O ! O RT O @ew32766 O I O love O it O when O my O mom O posts O status O updates O on O FB B-company , O they O are O usually O personal O messages O she O meant O 2write O on O someone O 's O wall O . O ;) O Awesome O tennis O practice O today~ O So O happy O to O play O again O :) O Dollar O steady O versus O yen O but O market O wary O of O intervention O | O Money O ...: O The O dollar O held O near O its O highest O in O a O month O ... O http://bit.ly/a0F3dO O Knowing O that O I O have O people O who O love O me O and O I O love O them O back O makes O my O day O @DrHubaEvaluator O Not O long O ago O I O responded O to O a O angry O cardiologist O whom O I O have O known O yrs O . O when O he O spit O venom O to O the O newspaper O but O I O did O it O + O fckn O emily B-person rodriguez I-person did O n't O bring O my O cookies O today O !! O lil O brat O . O @hdscc O Yo O Man O , O just O won O $1000 O tonight O . O 100% O Bonus O , O Bonus O Code O : O win2bet O ! O Fantastic O Place O to O Play O http://bit.ly/aoDEls?=njq4 O RT O @mrdaveyd O : O PG<E O donated O 35G O to O state O committe O chairman O investigating O them O 1day O after O explosion O in O #sanBrunofire O -Who O is O still O defendi O ... O @jonronson O But O a O mess O on O one O day O may O not O a O mess O eternally O be O . O @GiaAllemand O soon O , O as O long O as O @chrislambton13 O peels O himself O away O from O the O duckies O , O and O get O on O his O way O . O but O we O want O more O pics O dont O we O ? O Have O a O practice O session O @Cromwell B-facility Field I-facility today O at O 6pm O . O Hope O i O shine O well O and O start O the O next O game O . O :) O #yesterday O ugh O so O this O chick O onFB O jus O wrote O this O long O status O cussin O me O out O , O but O im O not O even O gonna O stoop O to O her O leve O but O i O wanna O bomb O her O ass O out O so O bad O It O 's O 5pm O on O Friday O ! O Wish O you O guys O have O a O fabulous O evening O !!! O And O have O a O wonderful O weekend O < O 3 O < O 3 O http://fb.me/xLeN7MAe O It O 's O official O . O Next O book O club O selection O is O " O Not B-other a I-other Genuine I-other Black I-other Man I-other " O by O @BrianCopie O I O saw O the O show O a O few O years O ago O and O it O was O fantastic O . O I O 'm O tired O after O school O today O ! O @FirstLadyEve O have O a O dating O show O with O @ogochocinco O evry O week O 'll O compete O with O sum O hawt O dude O 2 O keep O ur O intrest O like O @willdemps O my$ O on O will O Greek B-other Festival I-other at O St B-geo-loc Johns I-geo-loc before O ASPEN B-geo-loc RT O @ajc O : O Today O 's O the O 102nd O birthday O of O the O American B-other Professional I-other Football I-other Association I-other ( O we O call O it O the O NFL) B-other . O First O draft O choice O : O Brett B-person Favre I-person . O So O far O this O day O xxx O ; O t O gone O to O well O , O hopefully O my O night O will O be O better O ! O @SoccerByIves O Let O 's O hope O the O Serie B-other A I-other continues O to O be O on O the O tv O schedule O next O week O . O This O strike O has O fans O of O Calcio B-geo-loc worried O .... O @SweetBee_90 O what O 's O the O look O for O tonight O ? O going O now O guiseeeee O ... O if O i O dont O see O you O through O the O week O ill O see O you O through O the O window O :) O :) O Beautiful O day O in O Chicago B-geo-loc ! O Nice O to O get O away O from O the O Florida B-geo-loc heat O . O College O Student O - O Trusty O House O and O Pet O Sitter O ( O Barefoot O Student) O : O I O 'm O a O 22 O year O old O first O year O graduate O student O at O ... O http://bit.ly/cDYeqQ O @alealshinn O @BambingBling O ~~~ O @sunchips O this O is O the O second O time O they O have O messed O up O .... O about O to O give O up O on O them O Love O how O I O ca O n't O wear O my O shorts O to O the O party O tonight O , O so O I O have O to O wear O sweat O pants O over O them O and O change O when O I O get O there O . O SmackMyHead O . O Aggressive O Kids O With O ADHD B-other May O Not O Need O Antipsychotic O Meds O http://t.co/JfGm0uH O Oh O lord O here O we O go O again O Paranormal B-movie Activity I-movie 2 I-movie http://j.mp/ascgZr O I O 'm O not O requesting O it O in O my O area O this O time O . O Are O you O ? O RT O @HippoArmy O : O Thousands O of O angry O masturbators O marched O against O Christine B-person O'Donnell I-person today O http://bit.ly/9nTWQw O Seriously O . O Man O gets O 20 O years O in O murder O plot O against O judge O http://bit.ly/agB9iL O @godsgirl8494 O can O u O please O follow O me O ? O you O will O make O my O day O < O 3 O 8 O @joejonas O @nickjonas O @kevinjonas O @papajonas O @greggarbo O @johnlloydtaylor O Rock O to O SECTION O 204 O tonight O !!!! O in O tthe O Car O :/ O Today O wasz O Fun O cusz O anna B-person Came O juss O for O me O < O 3( O : O hahaha O man O my O twin O wanna O act O fake O today O but O its O okay O bcuz O i O still O love O you O Tryna O Get O Into O Something O Tonight O RT O @LilTwist O : O RT O this O if O you O want O me O to O go O back O live O on O Ustream B-company later O tonight O Bestfriend O HouseTonight O Til O Sunday O Route O 66 O Tomarrow O Wit O The O Cuhzans O , O Bestfriend<Ride O Or O Die O . O Fuxx O Widd O IHT O MODEL'$$ O Repp O :) O Good O day O looking O for O software O n O usb O drivers O http://f.ast.ly/DfxRf O VIDEO O : O Showbiz B-tvshow Tonight I-tvshow - O Is O TV O Too O Gay O ?: O http://bit.ly/aAZMD6 O [ O GigaOM O ] O DRM O FAIL O : O Five O Broken O Copy O Protection O Schemes O : O This O week O , O we O learned O that O the O HDCP O copy O protection O scheme O ... O http://bit.ly/blWf0e O @Jessica_Chobot O did O you O see O the O yakuza B-other vs O zombies O .... O smh O but O cool O at O the O same O time O @Syniq O yeah O , O after O a O long O week O , O I O think O we O need O an O early O night O , O so O are O heading O to O bed O shortly O . O We'll O pop O over O tomorrow O afternoon O tho O ' O twenty-four O days O for O Costa B-other do I-other Sauipe I-other *-* O @italylogue O Was O it O you O who O sent O out O the O Ginger O Peach O jam O recipe O ? O Making O some O tonight O w O our O fab O #Colorado O Palisades O peaches O . O Mmmm O .... O Spotted O : O Kanye B-person West I-person Celebrates O LAMB B-product With O Gwen B-person Stefani I-person : O New B-other York I-other Fashion I-other Week I-other is O coming O to O a O close O , O but O not O before O ... O http://bit.ly/cSyZUi O Getting O the O 10am O bus O tomorrow O #thethingsido O Happy O B-Day O Jimmie B-person Johnson I-person FLYING O LIZARD O It O 's O near O ! O RT O @skinnyemmie O : O RT O @shesafitchick O : O 989 O followers O !! O RT O to O help O me O hit O 1000 O today O please O ! O :) O #fitblog O #hls O #31DBBB O @SinfulSalvatore O { O drinks O slowly O from O my O cup O observing O your O actions O before O clearing O my O throat O } O is O -this- O your O plans O for O today O ? O I'm O so O excited O about O going O out O tonight O no O work O yea O .... O Badd O Badd O Badd O Badd O girls O . O Let O 's O gooooooooooo O MD B-geo-loc Jobs O | O Executive O Pharmacist-Full O Time O Float-Ellicott B-geo-loc City I-geo-loc , O MD B-geo-loc Job O ( O MD B-geo-loc ) O http://bit.ly/daNH6v O #Job O #Hiring O #MDJobs O The O only O problem O with O taxing O ur O car O online O is O its O no O fun O not O paying O anything O for O a O 5litre O car O when O its O a O classic O :) O Let O 's O go O to O New B-geo-loc York I-geo-loc tomorrow O with O Blakehurst B-other . O Contact O us O about O your O fall/winter O trave O @ O 410-336-3234 O Year O 10 O is O a O bitch O @alyaffair O Lol O , O that O 's O not O going O to O solve O your O problems O . O When O you O sober O up O again O , O they're O going O to O back O . O starting O to O be O temped O to O get O an O android B-product device O , O but O prob O next O gen O after O desire/desirehd/galaxy O s O . O critical O mass/commercial O My O teacher O turned O on O the O radio O in O class O and O all O i O heard O was O @justinbieber O U O smile O I O smile O that O made O my O day O :D O Gonna O be O on O national O television O monday O and O on O the O internet O tuesday O . O Interview O ' O cause O of O the O text O I O wrote O on O the O day O against O homophobia O RT O @ArianaGrande O : O Follow O Friday O @lushcosmetics O ... O Just O got O some O yummyyyyy O bubble O bath O goodies O there O . O :) O xxxxxx O #FF O Avast B-product AntiVirus I-product 4 I-product 8 I-product PROFIONAL I-product Full O Life O Time O Key O : O Avast B-product AntiVirus I-product 4.8 I-product PROFESIONAL I-product Full O with O Life O Time O Keygen O ! O ---- O ... O http://bit.ly/blPqIH O Jets B-sportsteam coach O Rex B-person Ryan I-person pleased O with O the O offense O this O week O in O practice O http://bit.ly/9GkyjU O Over O 1 O , O 5 O week O sta O ik O in O de O keuken O bij O Delphi B-company ... O ik O word O toch O ooit O nog O kok O ! O @niamh_schnapps O fuckin O yeaaaaaa O march O 1st O omgomg O best O news O !!!! O #October O Iron B-movie Man I-movie 2 I-movie ( O Three-Disc O Blu-ray/DVD O Combo O + O Digital O Copy O ) O Starring O : O Robert B-person Downey I-person Jr I-person ., O Mickey B-person Rourke I-person Direc O ... O http://bit.ly/a6iCPn O @jesus_army O :-( O Mikes O been O at O A&E B-other all O day O and O is O now O comfortable O in O a O hospital O bed O :-( O Hope O you O are O both O better O soon O . O RT O @DeepakChopra O : O Split O me O , O make O me O nothing O . O Fling O me O across O the O fabric O of O space O and O time O . O From O nothing O once O again O , O make O me O everything O -Rumi B-person I O have O made O the O tough O decisions O , O always O with O an O eye O toward O the O bottom O line O . O Perhaps O it O 's O time O America B-geo-loc was O run O like O a O business O . O Donald B-person Trump I-person The B-musicartist Get I-musicartist Up I-musicartist Kids I-musicartist , O Sunny B-musicartist Day I-musicartist Real I-musicartist Estate I-musicartist , O and O Cap'n B-musicartist Jazz I-musicartist are O quite O possibly O the O greatest O ( O original O ) O emo O bands O to O ever O exist O . O Ever O . O So O listen O . O Morning O ....! O I O really O never O enjoy O to O sleep O ... O hhmmm O .. O Have O a O nice O saturday O all O ..! O Hehehehehe O I O don't O mean O to O sound O old O , O but O today O 's O music O is O wack O . O Lmaao O ! O RT O @TheHomieJoseph O I O hate O when O people O try O to O have O a O convo O & O ask O " O what O 's O your O name O " O lol O com'on O now O its O right O there O Sitting O here O feeling O awful O with O hayfever/headcold/sinusinfection O but O the O sunshine O is O lovely O . O Can't O feel O too O bad O with O such O a O nice O day O . O MOTOGP B-other : O Round O 13 O , O Motoland O of O Aragon B-geo-loc , O Spain B-geo-loc , O day O one O . O Marlboro B-company Ducati I-company 's O Casey B-person Stoner I-person wasted O no O time O in O taking O ... O http://fb.me/HSTaAyrb O @hunleyd O What O is O taking O them O sooo O long O ? O @TATTEDUP_FLYTY O lol O Hmmm O .. O man O u O kno O when O u O tripped O LMao O RT O @momswithapps O : O A O family-friendly O app O , O FREE O every O Friday O : O http://bit.ly/97opLN O ( O this O week O 's O app O by O @snowglobemaker O ) O #appfriday O I've O been O waiting O for O band O camp O for O a O year O but O I'm O not O going O . O How O ironic O . O Role O of O a O Real O Estate O Lawyer O in O FSBO O | O eHowcom O : O Role O of O a O Real O Estate O Lawyer O in O FSBO O . O When O you O purchase O property O i O ... O http://bit.ly/cGsTy1 O Consider O the O world O 's O top-ranked O golfer O , O Tiger B-person Woods I-person . O If O a O guy O who O can O rake O in O a O billion O dollars O in O a O year O can O also O ... O http://bit.ly/94sBNr O when O a O woman O says O , O " O we O need O some O time O , O we O need O a O break O " O that O #reallymeans O " O i O am O about O to O leave O you O , O do O something O for O me O " O @JoshenReborn O let O me O know O if O or O when O you O are O coming O . O #FullHouse O #cricket O Lancashire B-geo-loc let O Powell B-person go O early O : O Lancashire B-geo-loc have O released O West B-geo-loc Indies I-geo-loc fast O bowler O Daren B-person Powell I-person a O year O befo O ... O http://bit.ly/aLxTis O Have O a O practice O session O @Cromwell O Field O today O at O 6pm O . O Hope O i O shine O well O and O start O the O next O game O . O :) O #reallymeans O to O love- O can't O get O her O outta O my O head O wann O spend O every O day O with O herz O ! O time O to O get O some O sleep O . O been O out O from O 4pm O till O now O . O Costa O Rican O group O CocoFunka B-musicartist power O this O week O 's O Indiesent B-tvshow Exposure I-tvshow http://ht.ly/2G4nS O by O @fuseboxradio O on O @planetill O Omfg O I'm O bailing O out O of O the O car O right O now O my O mom O slapped O me O when O I O changed O the O radio O off O this O Justin B-person Bieber I-person you O smile O I O smile O fucking O song O and O I O wonder O if O I O ever O cross O your O mind O ... O For O me O it O happens O all O the O time O @yungtybrownski O just O weak O lol O . O You O gone O go O Hamm B-geo-loc next O Thursday O on O team O darkness O @JustinxTyler O i'm O excited O !! O see O you O tonight O ! O All O The O Time O @Komanapalli O people O believe O what O you O say O when O you O demonstrate O reliability O as O a O source O of O knowledge O . O @ItsMariaSmith O @PaddiStone O hahah O ohkayy O when O ? O Saw O some O people O from O my O past O over O at O the O school O today O . O They O all O remembered O me O . O :) O RT O @kktv11news O : O Woman O Gets O Year O In O Prison O in O Dog O 's O Dragging O Death O http://goo.gl/fb/WcjLV O Chinese O symbols O Sotheby B-company | I-company ' I-company s I-company Hong B-geo-loc Kong I-geo-loc twentieth O century O Chinese O art O sales O fall O in O October O http://bit.ly/aFLHax O RT O @ChicagoFire O : O Join O the O TIFO B-other CREW I-other says O @Section8Chicago O 's O Dan B-person Martin I-person in O this O week O 's O S8 B-other blog I-other : O http://ow.ly/2G43u O Prophet B-person Muhammad I-person [ O peace O & O blessings O of O Allah B-person be O upon O him O ] O said O :" O Take O advantage O of O five O matters O before O five O other O ... O http://fb.me/A25CPleD O RT O @TeamVA O : O 81 O Days O Till O Last B-other Sacrifice I-other Fave O Looks O from O SS B-other 2011 I-other Fashion I-other Week I-other : O Jason B-person Wu I-person read O more O http://bit.ly/brsV4V O Doctor O 's O appointment O and O blood O test O today O . O %#$&@%$&%&@$ O !!!!!!! O @philmacaulay O Recently O appreciated O how O amazing O night O time O is O :D O If O Partner O left O me O and O BB B-person I O would O not O hunt O him O down O . O I'd O take O his O calls O but O it O would O be O his O job O to O make O sure O he O spent O time O with O BB B-person . O Peppers B-facility with O Kathy B-person ... O where O we O always O go O when O we O don't O know O where O to O go O . O YEAH O ! O No O jury O duty O . O Yes O class O on O Monday O . O still O willing O to O send O out O study O guides O to O those O who O send O me O an O email O request O . O sorgelaw@yahoo O . O com O What O should O you O do O when O you're O sued O . O Here O are O a O few O tips O . O http://www.calitigationblog.com/2010/09/articles/what-to-do-when-you-are-sued/ O Got O my O phone O taken O up O today O . O Guess O why O . O @justinbieber O . O That O 's O why O . O My O eyes O are O supeeer O dark O today O .. O john B-person says O its O cuz O im O overtired O .. O :/ O RT O @HRosenfelder O - O Educate O yourself O about O long-term O care O by O going O to O http://www.ltcfp.com O . O #financial O Lindsay B-person Lohan I-person allegedly O failed O her O drug O test O . O So O not O fetch O . O Quick O , O let O 's O all O put O on O our O shocked O faces O that O 23 O days O of O rehab O didn't O work O ! O Hydrating O for O the O big O game O tomorrow O :) O Been O working O like O crazy O these O past O couple O dayzz O -__- O ... O well O at O least O for O a O high O school O student O ... O got O home O today O and O CRASHED O =D O Logging O off O for O today O . O About O to O go O enjoy O my O #wkndread O Sandman B-product Slim I-product by O Richard B-person Kadrey I-person . O Love O #wkndreads O :) O " O You'll O find O that O when O you O seek O to O understand O first O you O won't O feel O a O need O to O be O understood O as O much O ." O -@TonyGaskins O I O remember O when O you O all O were O thiiis O big O , O you O know O ? O RT O @bobbyhundreds O : O After O a O few O episodes O , O I O think O I've O figured O out O how O to O catch O a O predator O . O It O seems O you O just O ask O them O to O take O a O seat O . O RT O @OMGTotallyLegit O : O Having O a O dream O about O someone O then O feeling O weird O about O them O the O next O day O . O #OMGTotallyLegit O @ALiNA_BlahxD O nein O , O das O ist O die O von O meinem O bruder O . O aber O bei O ihm O staubt O die O nur O ein O :D O jetzt O kann O ich O schon O one O time O von O justin B-person bieber I-person und O @GOBLUE_FUCKosu O it O was O our O 10th O grade O year O . O smh O @leesalulu O perfect O round O for O us O this O week O .... O and O yes O , O I'm O convincing O myself O it O 's O as O hard O as O any O other O week O ! O Got O some O close O friends O from O back O home O over O tonight O . O Might O get O a O little O carried O away O woot O There O is O like O no O mayo O on O this O sandwich O ! O Ugh O .... O next O time O Im O going O with O my O dad O @snarkobabble O I'll O look O for O you O tonight O ! O #wineparty O @EssieLovesYou O yesterday O i O had O a O kings B-musicartist of I-musicartist leon I-musicartist marathon O . O i O slept O happy O ll O ! O Public O encouraged O to O attend O Saturday O 's O memorial O for O jazz O great O Caliman B-person at O First B-facility Baptist I-facility on O Harvard B-geo-loc http://bit.ly/bsnOkT O Musical O celebration O @drance O just O wait O til O you O discover O that O all O tableviews O scroll O up O when O you O tap O the O top O bar O where O the O clock O is O :) O #Offline O For O along O time O ... O maybe O not O until O tomorrow O RT O @EckoMMA O : O CRAZY O #FF O DEAL O !!! O We'll O give O away O 50 O free O tees O to O followers O if O we O hit O 10K O followers O today O . O You O must O be O following O & O must O RT O ! O RT O @Rammsies O : O haha O thats O awesome O RT O : O @aplusk O This O made O me O laugh O today O http://bit.ly/bjOhom O < O --- O courtesy O of O splurb O . O What O made O you O laugh O ? O @batonabike O I O feel O really O sorry O , O the O ratbags O , O maybe O in O a O few O years O when O you O are O straight O and O enjoying O it O all O , O you O will O forget O #stupidnews O An O Entire O Facebook B-company Photo O Album O Captured O in O a O Single O Long O Exposure O Photograph O [ O Photography O ] O http://gizmo.do/9GeY0q O @i_r_squared O In O December O , O I O would O advise O against O that O . O I'm O feelin O better O than O some O head O on O a O Sunday O afternoon O , O better O than O a O chick O that O said O yes O too O soon O . O Jessica B-person Simpson I-person is O PREGNANT O !?!: O Jessica B-person Simpson I-person is O pregnant O ?? O Simpson B-person is O pregnant O with O her O barely O 4-month O boyfrien O ... O http://bit.ly/aoempS O Click O 4 O Details O > O > O > O http://schmap.it/u046mn O SEDUCTION B-other SATURDAYS I-other @ O CALABASH B-facility LOUNGE I-facility SEP O 25TH O #DABOSS O #CALABASH O #WJE O Most O of O time O his O love O to O us O is O one O way O . O I O always O complained O that O I O can't O feel O where O he O is O . O But O the O problem O was O not O him O , O it O was O me O . O New O show O announced O in O Orillia B-geo-loc , O ON B-geo-loc at O Leacock B-facility Museum I-facility on O October O 24 O , O 2010 O http://artistdata.com/a/26up O Y B-musicartist La I-musicartist Bamba I-musicartist : O Playing O a O show O in O Portland B-geo-loc , O OR O at O 9:00 O PM O today O at O Mississippi B-facility Studios I-facility http://artistdata.com/a/1kdx O Oh O sneaks O , O how O I O love O turning O on O my O computer O ( O or O well O my O dad O 's O as O case O may O be O ) O and O finding O me O some O sneaks O . O Can't O wait O for O Thursday O !! O RT O @wkeving O : O Check O out O @slidedeck O powerful O Web O Slider O . O Follow O + O RT O to O enter O for O a O Free O Pro O version O each O day O in O Sept O http://bit.ly/SDcontest O @thelazymarmot O ohh O really O ? O but O well O you O saw O most O of O the O concert O right O ? O have O you O seen O them O before O ?? O @cassidyhaley O ah O , O sorry O hun O . O I'm O not O on O call O tonight O , O but O I O am O a O crisis O worker O , O so O you O can O call O me O anytime O :) O @shaikhamah O oh O yeah O 30th O . O Sorry O I O am O lost O in O time O , O my O apologies O m( O . O _ O . O )m O Been O a O long O week O . O Tired O . O Sleep O now O please O . O # O howtohustle.net O Prodigy O Will O Be O Released O In O February O http://bit.ly/c3yxYy O 6 O - O close O tonight O . O Its O gonna O be O a O longg O evening O ! O Latest O Fsbo O Auctions O | O No O Qualifying O Loan O : O US O $ O 32.00 O . O End O Date O : O Tuesday O Oct-12-2010 O 20:30 O : O 22 O PDT O Buy O It O Now O for O on O ... O http://bit.ly/9IV2ex O Made O it O back O home O to O GA B-geo-loc . O It O sucks O not O to O be O at O Disney B-facility world I-facility , O but O its O good O to O be O home O . O Time O to O start O planning O the O next O Disney B-facility World I-facility trip O . O Haha O I O seen O a O ped O egg O called O a O foot O cheese O grater O today O . O I O found O it O proper O hilarious O xD O SATURDAY O NIGHT O CAST O PARTY O INVITATION O http://conta.cc/csqjCc O via O #constantcontact O Stop O by O teh O Nex-Tech B-company and O Nex-Tech B-company Wireless I-company tent O at O TailGreat B-other tomorrow O evening O for O Free O ice O cream O , O bottles O of O water O and O an O FHSU B-sportsteam foam O finger O . O tomorow O on O day O off O !! O youppppiiieeee O < O 3 O @CamrynRocks O always O brightens O up O my O day O . O you O should O follow O her O and O listen O to O her O wonderful O music O . O < O 3 O Excited O to O spend O time O with O my O best O friend O and O relax O this O weekend O ! O Been O a O crazy O intense O but O GOOD O week O ! O ok O bed O time O . O I O think O i'ma O curl O up O and O watch O Sabrina B-tvshow !!! O Thanks O @louisha O !!! O x O Today O was O a O good O day O , O enjoyed O myself O :) O @jimmiebjr O Nope O . O I O think O you O believe O she O 's O a O time O bomb O and O should O be O sacrificed O if O necessary O . O I O wanna O go O to O the O mall O SO O bad O . O Not O enough O hours O in O a O day O CampaignMonitor B-other denied O list O of O < O 600 O names O : O client O can't O prove O names O not O harvested O fr O Twitter/FB O . O Email'd O to O this O same O list O when O it O was O < O 500 O Oh O and O who O 's O fixin O ' O to O go O to O MAiZE B-facility tomorrow O night O with O some O people O and O I O ? O @PageVGP O I'm O pretty O sure O it O doesn't O exist O .. O I O said O it O when O I O was O really O young O , O and O I O still O say O it O now O .. O Small O Biz O Tech O Tour O 2010 O Launches O Five O City O Tour O MONTCLAIR B-geo-loc N.J. B-geo-loc ...: O The O all O day O event O features O America's... O http://tinyurl.com/28hd9fu O #fb O @jonronson O Ask O yourself O what O the O Mail O on O Sunday O would O do O , O and O do O the O opposite O . O Season O 3 O of O Friday B-tvshow Night I-tvshow Lights I-tvshow ... O It O seems O that O no O one O at O Dillion B-facility High I-facility School I-facility graduates O . O Let O 's O go O to O the B-facility funny I-facility bone I-facility to O see O @deraydavis O RT O @MzT_If_UNasty O : O So O wat O we O doing O tonight O ? O @coley_baby O @chelsea_fay11 O @hoggy_allday O weekend O saturday O - O c O daij O sunday O church O saturday O evening O - O get O sht O faced O sunday O evenin O home O work O wat O a O life O monday O school O hbu O ? O When O you're O dreaming O with O a O broken O heart O Then O waking O up O is O the O hardest O part O OMG O ! O Miley B-person Cyrus I-person Has O A O 14-Year-Old O Stalker O !: O First O Paris B-person Hilton I-person , O now O Miley B-person Cyrus I-person ! O Cops O responded O to O a O break O in O cal O ... O http://bit.ly/cd6OPC O @Jsmoothhh O it O 's O not O supposed O to O rain O till O Sunday O night O . O My O boobs O look O HUGE O today O ! O =D O RT O @mari_dj O : O e O nem O joguei O direito O . O no O outro O time O estava O o O monstro O do O vitor O D O : O ushuahsahs O @princessmariam9 O i O know O .. O i O need O to O stop O before O my O room O is O gonna O get O filled O with O water O . O RT O @BomadeBeverage O #TEAMBOMADE O everywhere O ! O today O from O 7-10pm O Golf O Mixer O at O Trophy B-facility Club I-facility Gwinnett I-facility 3254 O Clu O ... O http://schmap.it/YoLAXI?a O < O -- O MAP O Next O week O is O Spirit B-other Week I-other at O school O ... O Homecoming B-other Week I-other ... O And O Picture O day O on O Tueday O =\ O I O think O that O today O the O party O has O been O canceled O makes O too O much O air O in O the O street O loll O . O miss O u O twitfriends O . O xx O RT O @josielovesmcr O : O Danger B-other Days I-other : I-other True I-other Lives I-other of I-other The I-other Fabulous I-other Killjoys I-other #mychemicalromance O Yesterday O my O son O forgot O his O jacket O at O school O . O Today O he O remembered O to O bring O home O the O jacket O , O but O forgot O his O lunchbox O . O Please O , O I O wanna O apologize O in O advance O for O my O boundless O verbosity O tonight O . O I'm O UI(as O in O DUI O ) O feel O me O ? O This O Time O 's O fundraiser O ends O 9/20 O . O Incentives O include O raffles O & O access O to O the O video O shoot O ustream O - O http://www.cassidyhaley.com/thistime.php O @BadgerBlogger O LOL O ! O Yes O it O would O have O . O " O Let O 's O have O one O every O dang O day O !" O @aplusk O http://www.youtube.com/watch?v=eLMui7zBiXo O we O beat O kilkenny B-geo-loc after O they O beat O us O for O the O last O 4 O years O in O the O hurling O . O Woo O !!! O @jeffstinco O where O are O you O ??? O =D O hey O when O a O new O videochat O on O spcrew O ??!!! O ;) O I O need O a O place O to O work O out O with O free O weights O for O the O day O . O somebody O hook O that O up O . O #SwollOn O @MakethisRalate O good O luck O at O Elliot O Miner O :D O yous O were O greaaaat O tonight O < O 3 O xx O someone O may O need O to O take O away O my O mind O , O to O stop O me O constantly O drowning O in O my O thoughts O . O I O just O took O " O Justin B-person Bieber I-person takes O 2 O months O off O career O to O finish O school O , O He O is O a O huge O ..." O and O got O : O Part O 3 O ! O Try O it O : O http://tinyurl.com/246946v O every O time O u O smile O =) O RT O @tommcfly O : O Working O on O some O final O Super O Site O stuff O all O day O . O Can't O believe O the O Super B-company City I-company is O nearly O open O ! O i've O had O a O wicked O week O Time O to O fire O up O the O grill O again O . O I O do O believe O it O will O be O chicken O . O Facebook B-company Job-Hunting O App O BranchOut O Raises O $6 O Million O From O Accel B-company And O Super B-company Angels I-company : O When O you O want O to O hang O out O with O ... O http://bit.ly/aLTo95 O Only O a O few O short O weeks O until O the O Great B-other Pumpkin I-other rises O ! O Maybe O he O will O bring O me O an O iPad B-product ! O http://grtpmpkin.com/4fj O I've O listened O to O Tenshi B-other ni I-other Fureta I-other yo I-other so O many O times O that O I'm O starting O to O memorize O the O lyrics O , O and O it O 's O only O been O out O for O 4 O days O ! O o O . O O O @DaylySpecialz O im O doin O good O , O just O maxin O & O relaxin O on O my O day O off O ... O i O have O a O 4 O day O stetch O startin O tomorrow O . O @JazzLuvsJedward O Yeah O tomorrow O 's O grand O ( O : O = O yeah O just O email O me O cause O I O never O go O on O msn B-company ! O I'll O dm O you O < O 3 O Shopping O day O with O JC B-person - O so O excited O ! O I O just O took O " O After O getting O trampled O at O a O Justin B-person Bieber I-person concert O , O yoiu O wake O up O and O ..." O and O got O : O Part O 6 O :) O ! O Try O it O : O http://tinyurl.com/26zeju5 O @CarolynAWebster O I'm O okay O . O Had O better O days O . O @lovemj41042 O yes O agreed O there O are O pro O and O cons O in O everything O we O do O in O life O , O and O this O is O after O all O the O greatest O Human O to O have O ever O lived O @k8_walsh O I've O been O out O of O the O loop O , O but O is O Private B-tvshow Practice I-tvshow coming O back O this O year O ? O @Jacksonter O Haha O , O i O laugh O every O time O at O the O memory O of O your O facial O expression O transforming O : O L O RT O @eliseven O : O RT O @yehudaberg O : O join O me O & O thousands O of O people O around O the O world O tomorrow O in O a O synchronized O prayer O 4 O peace O . O 4pm O PST O . O http:// O ... O @frankenteen O So O excited O ! O But O .... O I O just O called O into O work O Tuesday O night...it O 's O horrible O but O at O the O same O time O really O important O to O work O . O Adam B-person Beyer I-person : O Swedish O Techno O Pioneer O : O When O it O comes O to O his O own O DJing O and O sound O , O he O 's O slightly O more O diverse O and O likes O ... O http://bit.ly/c1E0I1 O RT O @Mickey__Rourke O : O 58 O years O ago O today O I O tumbled O from O my O mother O 's O womb O with O a O cigarette O in O my O mouth O and O a O chihuahua O puppy O under O each O arm O ... O I O just O took O " O ( O All O Parts O ) O + O (* O New O Season O 2 O , O All O Parts*) O You've O been O fri O ..." O and O got O : O PART O 10 O , O A O MILLION O YEARS O !! O Try O it O : O http://bit.ly/bRCD9M O Time O to O begin O looking O for O somewhere O to O live O around O Coolum B-geo-loc . O Sun O , O sand O , O surf O and O bikinis O . O Looking O forward O to O my O new O phase O in O life O . O RT O @MyLifeAsLiz_Liz O : O When O did O being O a O nerd O become O cool O & O why O wasn't O it O when O I O was O in O high O school O ? O I O would've O been O the O most O popular O chick O ... O @josiery O Hope O that O I O can O make O it O on O time O . O Wish O that O I'll O be O an O ' O S.S O ' O in O the O end O of O the O year O :) O @ethernat O You O know O me O , O if O I O can O be O kind O and O guilt O you O at O the O same O time O , O well O , O my O job O is O done O :) O Costco B-company Irvine B-geo-loc has O fresh O sushi O samples O today O . O Awesome O . O RT O @PhilKeoghan O : O Private O sneak O peak O of O ' O The B-movie Ride I-movie ' O my O ride O across O USA B-geo-loc , O tonight O only O , O San B-geo-loc Francisco I-geo-loc 6pm O contact O Jennifer B-person . O Gainza@nmss O . O org O Wonder O what O the O new O Green B-musicartist Day I-musicartist album O will O called O , O Tre O 's O Penis O ? O RT O @m_candelaria O : O The O amazing O Follow O Friday O Train O : O @Sketchjobs O @lollieshopping O @philadelphiabn O @elainebiss O @TableMatters10 O @STALKmyPRETT O ... O " O Always O play O them O before O they O can O play O you O " O - O Joy B-person Huhn I-person RT O @_RANGO_ O : O Hey O y'all O " O East B-other Nu I-other ," O round O Two O tonight O . O See O y'all O early O ! O (shit O !!!! O I O should've O stayed O lol O @colintattum O It O 's O already O tomorrow O in O Australia B-geo-loc so O can O you O tell O just O me O now O ?! O @YFarahat O @n_atalla O I O stopped O buying O bottled O water O for O like O 2 O years O :) O installed O a O water O filter O and O it O 's O great O . O Water O taste O like O water O now O :) O @Tink3rbell94 O going O to O GA B-geo-loc , O don't O know O why O but O when O I O thought O about O it O ATL B-geo-loc stood O out O in O my O mind O . O I O have O time O to O plan O it O properly O though O :) O The O pope B-person isn't O really O making O much O of O an O effort O . O He O 's O wearing O the O same O clothes O as O yesterday O . O 2 O days O till O #BoardwalkEmpire O @JodiWonderland O @LeighWonderland O @sharwonderland O @kaseywonderland O @CiCiWonderland O You O ladies O were O great O today O . O Have O a O wicked O weekend O . O xx O Justin B-person Timberlake I-person ft O . O Beyonce B-person - O Until B-other the I-other End I-other of I-other Time I-other http://t.co/kUe6djJ O via O @youtube O @ahmong O I'm O thinking O they O trade O him O before O the O deadline O and O try O to O blow O it O up O so O they O don't O lose O him O for O nothing O . O @glorybeful O Well O ... O thats O why O they O invented O ... O tomorrow O ! O :o O D O omg O , O i'm O sooooo O ready O for O tonight O ! O < O 3 O Any O 1 O know O when O season O 3 O True B-tvshow Blood I-tvshow is O back O on O the O telly O ? O @TripleThreat99 O lol O where O u O headed O tonight O ? O RT O @SavingGorillas O : O Kwiruka B-person left O her O group O several O times O after O death O of O infant-unknown O causes-late O July O ; O last O seen O alive O Aug O 24 O . O RT O @DollarVanDemos O : O #BROOKLYN O ! O Stay O up O late O tonight O to O catch O the O 1 O hr O special O of O Demos B-tvshow @ O 3AM O on O BCAT B-other feat O @BlissyCakes O @YaGirlNicolette O ... O Second-year O CBs O Jerraud B-person Powers I-person and O Jacob B-person Lacey I-person don't O remember O much O about O Manning B-other Bowl I-other I I-other . O Both O were O college O ... O http://bit.ly/at71uZ O ooh O didn't O know O we O was O at O home O tomorrow O . O Silly O billy B-person Ok O off O to O bed O BUT O WHEN O I O WAKE O UP O I O BETTER O HAVE O WON O A O T-SHIRT O RT O @ATeenageThought O : O i O hate O it O when O my O parents O want O me O to O come O home O early O from O a O party O , O but O i O wanna O stay O really O late O #ATeenageThought O Yesterday O 's O shoot O was O unreal O . O Today O is O just O as O sick O ! O Is O that O even O possible O ?! O no O work O tonight O . O going O to O a O sweet O sixteen O . O shirt O and O tie O . O free O food O . O why O not O . O Ah O , O that O has O seriously O made O my O day O . O :D O @chrisbrown O , O iloveyousomuch&hearts O ; O Totes O just O pissed O off O the O Vista B-geo-loc del I-geo-loc Lago I-geo-loc Eagles B-sportsteam , O well O some O of O em O by O saying O " O Go O Lancers B-sportsteam !!" O teehee O . O They're O playing O each O other O tonite O ! O lol O RT O @Georg_Grey O : O Man O :" O Is O there O any O way O for O a O long O life O ?" O Doctor O : O " O Get O married O ." O Man O :" O Will O it O help O ?" O Doctor O :" O No O , O but O the O thought O of O long O li O ... O USM B-other get O ready O yours O truly O tonight O at O frat B-facility house I-facility Hattiesburg I-facility on O the O 1s O n O 2s O !! O @Daniim92 O tks O :D O obviously O its O one O of O the O happiest O day O in O my O life O lol O @DahlDana O ooooh O when O 's O he O releasing O it O ? O When O I O go O to O that O musical O I'm O staying O near O old O people O so O they'll O cry O w/me O like O Les B-movie Miserables I-movie :' O ) O Exhausted O after O a O surprisingly O busy O ( O and O boozy O day O ) O with O @joemcelderry91 O http://ow.ly/i/3TYe O @whitneytweets O @matthewlawton O and O Wonder B-person Woman I-person ! O Hendrix B-person died O 40 O years O ago O ... O but O his O studio O lives O on O . O A O look O at O NYC B-geo-loc 's O Electric B-company Lady I-company Studios I-company , O past O and O present O : O http://ow.ly/2G49m O RT O @Yarcom O : O It O 's O Guinness B-company O'clock. O < O -- O it O 's O almost O that O time O over O here O on O the O west O coast O too O . O Really O hope O I O can O get O to O @glasgowfilm O for O Winter B-movie 's I-movie Bone I-movie - O need O to O get O on O with O job O applications O tonight O then O ! O Trailer O : O http://bit.ly/bhUlum O RT O @J_Dizzle18 O : O 11.04 O . O 10 O is O gonna O be O a O good O day//yes O .. O I O turn O 18 O lol O Although O , O three O months O ? O I O may O well O be O wrong O on O this O . O #cantdecide O #wilty O @MajorBerry O Praying O with O ya O that O he O answers O & O will O be O in O Sweden B-geo-loc , O so O you O can O meet O him O ! O I O met O him O 3 O weeks O ago O & O still O thinking O about O it O lol O . O Ready O for O tonight O smh O i O love O my O male O friends O ...... O my O female O friends O well O i O like O yall O most O of O the O time O lol O RT O @jerilthompson O : O WaPo O : O renewing O Bush B-person tax O cuts O would O " O deprive O " O Treasury B-other of O $4T O . O No O . O Treasury B-other deprived O of O $4T O when O Obama B-person spent O it O all O . O # O ... O @write_as_rain O you O need O to O listen O to O that O green B-musicartist day I-musicartist song O . O were O too O much O . O MJ B-person still O had O it O but O he O was O 50 O years O old O at O time O . O AEG B-company just O wanted O more O money O off O his O name O like O everyone O else O @JackieJackson5 O @RaniLovezYou O Yeah O , O he O 's O had O a O few O shows O over O here O . O Great O chef O , O glad O I O wasn't O disappointed O ! O His O wife O gave O birth O a O couple O of O days O ago O , O aww O . O Anyone O is O the O valley O want O " O Around B-product The I-product World I-product Twice I-product " O written O by O me O and O Kathie O ? O Just O got O a O box O half O are O gone O won't O last O long O . O Inbox O me O :) O @rishi_syd O hey O , O I'm O fine O !! O Thanx O :) O u O too O have O a O great O day O ;) O HAVE O YOU O HEARD O DJ B-musicartist STRATEGY I-musicartist IS O NOW O AT O VISIONS B-facility LOUNGE I-facility IN O HICKORY B-geo-loc , O NC B-geo-loc ON O WEDNESDAY O ; O S O NIGHTS O ... O WOW O !! O DONT O MISS O IT O ! O FAN O Art O in O Club B-product Penguin I-product :) O : O Here O are O this O weeks O Club B-product Penguin I-product FUN O Art O Drawings O :) O The O Snow O Fort O is O a O Super O FUN O Plac O ... O http://bit.ly/bCc2MS O I O was O there O on O Tuesday O !! O heheRT O @devialicious O : O otw O pelabuhan O ratu O Today O I O must O make O full O use O of O the O filter O .. O Please O don't O fail O me O today O ! O imma O get O my O homework O done O today O :) O Find O out O Why O An O Affiliate O Home O Business O Is O Better O Than O A O Part O Time O Job O : O http://EzineArticles.com/4985692 O EzineArticles O Every O night O & O every O day O !! O I O straightened O my O hair O today O i O feel O all O purdy O and O junk O :) O I O just O took O " O Justin B-person Bieber I-person takes O 2 O months O off O career O to O finish O school O , O He O is O a O huge O player O ..." O and O got O : O Part O 8 O ! O Try O it O : O http://bit.ly/cNarLp O @rach22uk_OM O Aaaaah O , O us O and O Baveh B-person Nate I-person ... O meant O to O BE O !! O He O was O nice O that O day O , O couldn't O fucking O get O rid O of O him O and O his O inappropriate O touching O Who O 's O excited O for O #UNM O homecoming O ?! O Check O out O the O COP B-other tailgate O ... O 65 O years O is O definitely O something O to O celebrate O about O . O Oct O . O 2 O @ O 1 O p O . O m O . O spending O time O with O my O mom#priceless O Ahaha O , O the O look O on O @__nancy O ' O s O face O when O someone O asks O ' O What O part O of O the B-geo-loc States I-geo-loc are O you O from O ?' O is O PRICELESS O . O @godsgirl8494 O can O u O please O follow O me O ? O you O will O make O my O day O < O 3 O 8 O @WildLives O I O do O . O I O expect O it O . O It O 's O a O lovely O part O of O the O day O listening O to O a O background O of O playground O noises O . O @singingislife15 O Follow O Friday O :) O @spookytown O omg O was O it O Today O ?? O ill O go O to O bed O soon O so O ill O read O tomorrow O . O Looking O forward O hehe O Coding O typo O of O the O day O : O " O resluts O " O - O > O " O results O " O Confronting O my O hoarder O tendencies O . O If O anyone O wants O 17 O pairs O of O used O size O 9 O mens O Nikes O from O 10 O years O ago O or O 60 O blank O cassette O tapes O ... O Where O in O the O world O is O Gelato B-person Gilberto I-person ? O Tonight O the O cart O will O be O at O Burning B-facility Bush I-facility Grille I-facility , O 13206 O W O Highway O 42 O ,... O http://fb.me/JIlT65a5 O even O better O than O cocktail O friday O ! O http://is.gd/ffDb9 O @_AsToldByBV O well O i O wrote O you O like O 6 O times O this O week O ! O urgh O . O RACHELLE B-person im O gonnauh O kill O YOU O tonite O ! O Check O it O out O !! O $1497-$3497 O per O day O !! O WWW O . O bigbucksonline O . O info O For O women O the O best O aphrodisiacs O are O words O . O The O G-spot O is O in O the O ears O . O He O who O looks O for O it O below O there O is O wasting O his O time O . O @onephotojourney O Thanks O for O the O follow O friday O bump O ! O :) O @EimearJedward O auditioning O on O sunday O :) O xo O I O want O it O NOW O ! O ;) O RT O : O @corsairartisan O Pumpkin B-product Moonshine I-product has O arrived O in O Nashville B-geo-loc -- O Give O it O a O week O to O get O it O in O stores O . O KY B-geo-loc ships O next O week O ! O Headed O to O Davidson B-sportsteam vs O Blount B-sportsteam with O Bennett- B-person love O spending O time O with O my O son O ! O " O compare O where O you O are O to O where O you O wanna O be O and O you'll O get O nowhere O ". O Thanks O for O the O reminder O , O Sara B-person B I-person . I-person Focusing O on O the O good O . O Show O tonight O ! O hai O @ayuhastari O sukses O ya O untuk O ngehostnya O today O di O inbox O , O sy O gak O bisa O liat O nih O wajib O ngantor O . O @MoochieBad O I O don't O have O none O ! O What O are O urs O ? O I O have O 2 O days O with O nothing O to O do O ! O RT O @TheOutlawz O : O EVERYBODY O WHO O WANT O A O FOLLOW O FROM O ME O FOR O FOLLOW O FRIDAY O LET O ME O KNOW O !! O WE O AINT O LIKE O THESE O HOLLYWOOD B-geo-loc AZZ O RAPPERS O WE O FOLLOW O BACK O ! O I O know O when O my O mom O saw O a O picture O of O justin B-person bieber I-person she O said O that O he O was O cute O . O She O said O she O didn't. O But O , O she O did O . O Haha O . O :) O i O love O when O good O things O happen O to O deserving O people O . O Fills O me O with O happiness O EXA-OIL O . O COM O Deep B-company Sea I-company Intervention I-company opens O Singapore B-geo-loc facility O : O September O 17,201 O 0 O -- O Deep B-company Sea I-company Intervention I-company has O opened O ... O http://bit.ly/cZZGj7 O I O may O have O an O extra O ticket O for O the O Jonas B-musicartist Bros I-musicartist this O Sunday O , O if O anyone O wants O it O or O wants O me O to O take O ur O kiddo O w/me O :) O RT O @sandiegozoo O : O Fossil O dig O update O : O found O the O flippers O ! O Looks O like O a O pretty O complete O 3 O million-year-old O whale O fossil O . O YG O The O #gothic O Daily O is O out O - O read O this O Twitter B-company newspaper O on O http://bit.ly/aQOoSP O ( O 22 O contributions O today O ) O Starstruck B-company Promo O Special O : O Unlimited O email O blast(s O ) O for O $ O 350 O a O month O . O DM O Me O or O send O a O email O to O ineedpromo@starstruckpromo O . O com O @journalproject O For O example O , O when O younger O , O she O won O trophy O , O but O results O were O messed O up O & O some1 O else O really O one O . O She O refused O to O give O it O back O . O @JennieGoingWest O DO O IT O ! O it O 's O better O with O dirty O hair O too O . O when O my O hair O is O too O clean O it O 's O nearly O impossible O to O do O nything O w O it O !!! O OCTOBER O 2ND O 1988 O A O STAR O WAS O BORN O ... O @artichoke_diep O hey O man O we O should O hang O out O some O time O soon O ! O 'I O just O took O " O You O and O justin B-person bieber I-person love O story O ( O long O ) O " O and O got O : O you O run O away O together O ! O Try O it O : O http://tinyurl.com/2brsuxs' O btw O , O i O called O him O kitty O boy O ' O cause O my O friend O always O says O " O that O 's O maa O kitty O " O when O she O sees O him O :D O it O 's O kinda O weard O but O cute O at O the O same O time O RT O @FamousWomen O : O When O you O choose O to O forgive O those O who O have O hurt O you O , O you O take O away O their O power O . O Game O @ O Widener B-geo-loc tonight O at O 7:30 O I O love O and O hate O today O , O I O swear O I O just O got O a O flashback O to O my O sophomore O year O . O Maikes O hair O . O School O . O Webinar O at O the O first O job O . O Changed O ... O ti O second O job O ... O then O time O with O the O boy O ! O What O a O day O .; O ) O @_mcintyre O agreed O lolzaa O also O hate O school O for O making O a O long O lie O 10:30 O . O :( O xx O @nickjonas O i O should O write O this O before O but O i O couldn O t O happy O birthday O :) O i O hope O you O enjoyed O a O lot O yesterday O A O slow O yes O beats O a O fast O no O 7 O days O a O week O ... O dont O rush O people O when O dey O make'n O choices O u O might O get O told O no O just O cuz O dey O want O u O 2 O shut O up O Major O Muslim O organisations O throw O weight O behind O 6 O Nov O demo O against O racism O , O fascism O and O Islamophobia O http://uaf.org.uk/1465 O @sefronia O we O haven't O had O slugs O in O the O house O for O a O few O days O and O found O a O toad O by O our O front O door O this O morning O , O you O need O pet O toad O . O Mostly O Cloudy O and O 64 O F O at O Buffalo B-geo-loc Municipal I-geo-loc Airport I-geo-loc , O MN B-geo-loc Winds O are O Calm O . O The O humidity O is O 68% O . O Last O Updated O on O Sep O 17 O 20 O http://s1z.us/yb.htm O Tomorrow O is O Saturday O . O Aka O #dreadlock O day O . O Bring O on O the O twist O n O rip O ... O #TnR O #reggae O #rasta O #marley O #bobmarley O A O BLISSFUL O MORNING O TO O ALL O ! O It O 's O a O brand O new O day O to O start O with O . O Hope O you O have O a O great O day O ahead O ! O Keep O safe O . O Take O care O . O God O bless O you O ! O If O I O could O sleep O well O tonight O that O would O be O great O thanks O . O @luvtotalk2u O you O have O cracked O me O up O with O your O tweets O today O babe O . O Love O it O !! O X O Used O a O lot O of O Sellotape B-product today O :) O printing O on O Monday O ;D O its O a O good O day O today O ! O RT O @WakaFlocka1017 O : O SO O WHEN O I O GET O ON O 106 O N O JOKE O AROUND O YALL O TALK O ABOUT O ME O LIKE O A O DOG O SHAWTY O BUT O WHEN O I O BUY O 30,000 O WORTH O SCHOOL O SUPPLY O N O ... O http://bit.ly/9sFpBN O Last O #Reach O video O today O , O I O promise O . O This O one O is O for O everyone O complaining O about O the O sword O lunge O being O gone O . O Sprint O ! O right O . O Five O Star O Day O came O out O in O may O this O year O . O why O haven't O ANY O trailers O come O out O here O in O Scotland B-geo-loc yet O ? O i've O waited O about O a O year O for O this O ! O @ScottBourne O Oh O hi O , O I O swear O I O can O scroll O down O past O actual O text O on O a O page O . O I'll O definitely O pick O that O up O this O next O week O . O Thanks O . O :) O 18 O Sep O 10 O 07:50 O , O Speed O : O 6.0 O , O Gust O : O 22.0 O , O Lull O : O 0.0 O , O Dir O : O WNW O , O Temp O : O 4.0 O @Jeaworld O Happy O Birthday O JeA B-person Unnie I-person Have O lots O of O birthday O fun O May O your O birthday O wishes O all O come O true O luv O ya O & O take O care O @swavelbean13 O :D O How O was O your O day O ? O :) O #fathers O day O Burl O Fish O : O Fathers B-other Day I-other Trip O : O Fathers B-other Day I-other Trip O . O So O the O fishing O has O been O super O good O this O summer O . O I'... O http://bit.ly/au121g O #dad O 'RT O @keidence O " O Good O Morning O ! O Have O a O pleasant O and O happy O day O !" O http://dlvr.it/5RcZC' O Cowboy O fans O remember O when O Da B-sportsteam Bears I-sportsteam demolished O you O guys O 44-0 O in O your O own O home O in O 1985 O ?? O same O year O we O won O the O superbowl O ! O #BEARDOWN O When O you O judge O another O you O don't O define O them O , O you O define O yourself O . O ~Wayne B-person Dyer I-person @BEHINDpleasure O October O 29th O forget O homework O , O kick O off O your O weekend O the O right O way O with O The B-tvshow Weekend I-tvshow Grind I-tvshow from O 8-10pm O tonight O ! O 2 O MORE O WEEKS O ! O XD O @XboxSupport O after O making O any O changes O to O an O avatar O whole O system O chugs O along O and O when O booting O up O a O game O it O freeze O the O system O up O . O 250g O 360-s O Music O & O More O Industry O Wednesday O - O Sep O 23,201 O 0 O http://goo.gl/fb/5CBjZ O #FABreality O '" O Two O ravens O in O the O old O oak O tree O And O one O for O you O and O one O for O me O And O bluebells O in O the O late O December O I O see O ..." O http://tumblr.com/xx9iucxjw' O Part O 2 O to O my O day O is O about O to O begin O .... O hair O stylist O flow O ... O 'RT O @JustinsHairFlip O : O Justin B-person was O TOTALLY O prancing O around O the O room O when O he O saw O my O username O & O he O was O screaming O " O OMG O I O HAVE O A O TWITTER B-company FOR O MA O ...' O 'Rickey B-person Smiley I-person had O me O laughing O all O day O today O . O " O Um O yes O , O Do O you O serve O boiled O rottweiler O lips O ?"' O @jacobvanhorn O , O if O our O children O are O dressed O in O UT B-sportsteam gear O tomorrow O , O you O will O be O sleeping O on O the O sofa O . O I O hate O that O mini O heart O attack O you O get O when O you O lose O your O phone O and O its O on O silent O @DesiiDanii4 O nou O ze O is O al O een O week O best O wel O erg O ziek O , O echt O heel O zielig O !: O i O have O pride O in O myself O that O one O day O i O will O be O #1 O girl O of O the O week O and O u O have O pride O in O your O self O that O your O dream O will O come O true O ok O love O u O ! O time O #ONFRITA O RT O @KenzieComersMum O : O " O He B-other 's I-other Just I-other A I-other Boy I-other " O music O video O will O be O uploaded O on O to O @mckenziecomer O you B-company tube I-company channel O today O 5 O pm O AEST O Sat O 18th O Sept O , O ... O RT O @botdfmusic O : O We O will O set O up O meet O and O greets O for O #theepictour O before O and O after O the O shows O . O So O everyone O will O get O autographs O and O pictures O ... O @matthewstaylor O yeah O you O will O . O you O gonna O mosh O tonight O ? O Waiting O for O my O mom O to O fucken O pick O me O up O the O ganna O go O eat O after O off O to O garden B-geo-loc grove I-geo-loc The B-facility Metro I-facility Sept O 26 O Mannie B-person Fresh I-person and O Jermaine B-person Dupri I-person fa O da O after O party O , O holla O at O me O fa O ur O tickets O Justice B-person Breyer I-person 's O About O Face O : O Koran-Burning O Is O Constitutionally O Protected O After O All O via O Atlas B-other Shrugs I-other http://tinyurl.com/39wg73o O New O Teeshirts O ordered O with O all O new O designs O ... O I O hope O people O will O like O ! O October O 9th O 2010 O ... O Remington B-other 's I-other Annual I-other Octoberfest I-other !! O Dinner O tonight O : O Gnocchi B-product with O Italian B-product Sausage I-product , O Swiss B-product Chard I-product and O Ripe O Tomatoes B-product ! O " O her O lips O , O her O lips O i O could O kiss O them O all O day O if O she'd O let O me O ... O hahahaha O " O lol O sooooooooo O cute O < O 3 O RT O @SonyElectronics O : O Sony/Bud O Light O 3D O tailgate O parties O on O Saturday O - O Clemson B-geo-loc party O at O http://bit.ly/cds8Pd O ; O Auburn B-geo-loc party O at O http://bit O . O ... O cant O believe O im O going O to O have O to O get O up O at O half O 8 O on O sunday O :( O ahhhhh O . O should O be O a O laugh O though O :) O @keshiaford O how O 's O ur O day O going O ? O ok O , O starting O BIG O crash O diet O this O week O , O just O getting O an O exercise O bike O now O & O I O will O be O at O least O 2 O dress O sizes O smaller O by O New O year O ! O #FF O @Ashley_Akalei O Love O her O . O She`s O a O sweetie O when O she`s O in O a O good O mood O . O Lol O . O Bio B-product Spot I-product 6 O Month O Spot O On O Flea O & O Tick O Cats O 5 O lbs O & O Over O #E_BAY O #forsale O #supplies O #pet O #SFO O http://3taps.com/w/ML2EQ4 O 2 O weeks O until O @Eurogamer_Expo O . O Am O I O excited O ? O YOU O BET O :D O RT O if O you O think O that O @justinbieber O is O sexy O but O at O the O same O time O very O talented O < O 3 O Looking O to O list O another O property O tomorrow O in O Greenville B-geo-loc , O OH B-geo-loc On O my O way O to O my O grandparents O . O And O after O a O good O nights O sleep O i O head O to O the O Tournament B-other of I-other Champions I-other !!!!!!! O Super O excited O RT O @RealJudgeJules O : O Playing O the O world O exclusive O of O @SanderVanDoorn O remix O of O @swedishousemfia O - O Miami B-other 2 I-other Ibiza I-other on O the O show O tonight O . O Tune O i O ... O @StarryEyedJoeJ O like O after O I O download O a O PSD O from O @ O CherryPSDs O what O do O I O do O ?! O @dj279 O do O you O have O any O new O kasha O this O week O ? O @BeNFranKCaptivE O yea O yea O yea O ... O How O was O your O day O ? O RT O @TMZ O : O Lindsay B-person Lohan I-person tested O positive O for O cocaine O last O week O and O that O is O why O she O failed O her O drug O test O ... O sources O tell O TMZ B-company .... O http://bi O ... O 'MUSIC O CHOICE O JUST O HIT O ME O SO O IF O YOU O ON O DEMAND O TONITE O " O GOTTA B-other BODY I-other " O MUST O LISTEN O ( O FREEKEY O ZEKEY O FT O JIM B-person JONES I-person )' O Who O 's O going O to O be O Club O Champ O this O year O ?? O I'm O mad O coach O d O want O me O to O go O to O workouts O at O 9am O tomorrow O and O I O can't O even O play O @SaveLakeAlbert O work O both O days O . O I'm O not O stressed O . O Will O send O photos O of O the O view O later O . O @preciousweapons O #filthyglaMOUR O arrived O at O my O school O today O http://twitpic.com/2pai07 O LOOOK O please O 39 O Im O ' O performing O tonight O at O 8 O Bond O Street O in O Soho B-geo-loc . O If O your O in O the O city O , O hit O me O up O , O and O then O swing O through O around O 10ish O ! O @jessesco O gosh O ... O lots O that O i O dont O tweet O about O . O tough O few O days O . O but O things O happen O for O a O reason O and O life O goes O on O :) O I O hope O youve O been O well O . O When O I O said O good O night O , O I O ended O up O watching O movies O on O my O laptop O . O Yep O . O No O sleep O again O . O Time O to O take O a O bath O now O ! O It O 's O gonna O be O a O looong O day O . O MITE O SLEEP O IN O MY O LIVINGROOM O AINT O DONE O THAT O FOR O TIME O ! O #TRANSPORTER O #E4 O #MedicalJobs O CT/Rad O Tech O - O PRN O : O TX-Fort O Worth O , O When O physicians O own O the O hospital O , O the O latest O advances O in O medical O s O ... O http://bit.ly/cVPhNE O After O a O great O two O days O of O meetings O with O Houston B-geo-loc , O Fes B-person is O back O in O Salt B-geo-loc Lake I-geo-loc . O @jess_robbo O Haha O I'm O watching O it O too O now O and O not O for O the O first O time O , O I O love O that O programme O :D O HAPPY O FRIDAY O ! O ~madi O @sjonrefur O Tuesday-Fight O Night O , O Wednesday-MvC3 O Fight B-facility Club I-facility in O Chicago B-geo-loc . O Pringles B-product , O baby O ! O Hope O you O get O better O by O then O ! O I'm O making O Thai O food O tonight O My O #twitter O age O is O 470 O days O 13 O hours O 18 O minutes O 9 O seconds O . O Find O out O yours O at O http://twitter.seocoder.org/ O #twittertime O been O reading O shit O about O ppl O have'n O neon O shit O and O black'n O out O after O a O night O of O #4lokos O lol O iown O kno O if O I O can O trust O it O lol O @JUICEBOXX513 O CCU B-other exercise O science O program O participates O in O national O Walk B-other at I-other Work I-other Day I-other http://bit.ly/cJ0wpo O 'Do O it O footsoldiers O ! O RT O @Jones_Drew32 O : O And O speaking O of O rule O #2 O tonite O " O running B-tvshow wit I-tvshow mjd I-tvshow " O will O be O on O live O from O 7- O 9pm O eastern O sirius B-company 211 O . O Xm O 147' O @wackeychan O Awesome O ! O First O episode O goes O up O two O weeks O from O Monday O . O Hope O it O meets O your O expectations O . O just O whooped O st O . O francis O preps O asssss O . O and O i O scored O a O goal O :) O and O its O friday O . O and O i O have O no O homeworkkk O . O SICK O LIFEEEE O RT O @ichloegebbie O : O in O december O drinking O horchata O , O I'd O look O psychotic O in O a O balaclava O ( O 8 O ) O @daddiee_nini O No O ... O I'll O try O not O too O . O I've O missed O too O many O days O already O ... O 'Listen O to O my O new O freestyle O " O September O Freestyle O ".. O http://www.youtube.com/watch?v=VLuGJgf-w3Y O make O sure O you O give O me O feedback O on O that O ...' O @AMILLI_SHEDIDDY O it O came O just O in O time O . O And O how O you O been O . O How O 's O work O coming O along O ?? O #MuchLove O to O my O baby O it O will O be O 3 O months O in O a O couple O days O RT O @BorisKodjoe O : O Okaaay O ! O RT O @NBC_Undercovers O : O Want O a O chance O 2 O meet O Boris B-person Kodjoe I-person ? O He'll O be O in O NYC B-geo-loc for O a O meet O n O greet O next O Wednesday O ! O http O ... O Its O clear O and O 104&#xB0 O ; O F O - O Humidity O : O 7&#x25 O ; O 25 O - O Dew O Pnt O : O 28&#xB0 O ; O F O - O Wind O : O WNW O at O 9mph O - O Rain O so O far O today O : O 0.00 O - O http://cvwx.com O #wxob O @WeLoveMay O Heyy O , O how O are O u O today O ? O ;) O follow O 4 O follow O ? O Radio O Ga O Ga O : O Collector O fills O his O house O with O 1,200 O radio O sets O spanning O more O than O 100 O years O http://bit.ly/dgpvp1 O It O makes O me O #aggy O when O I O c O #OneoFMYfollowErs O retweet O her O crock O of O shyt O disguised O as O a O tweet O lol O @PersonalSelena O can O you O follow O me O pretty O please O . O that O would O make O my O day O . O Peace O ! O I O get O high O with O love O when O I'm O helping O and O being O of O service O to O you O . O Thank O you O for O allowing O . O #news O Dems B-other to O voters O : O You O may O hate O us O , O but O GOP B-other is O worse O ( O AP B-other ) O ( O Yahoo B-company ! O ) O : O Share O With O Friends O : O | O Latest O Top O Ne O ... O http://adpro.co/aQxQtY O Social O networking O site O Facebook B-company officially O has O 500 O million O users O , O the O company O announced O 21 O July O http://ow.ly/20ATc O Gak O bobok O lg O aja O ? O :D O RT O @RatihNurma O : O Knp O may O ? O Ayo O bangun O yok O , O kita O lari2 O biar O ga O sedih O :D O RT O @mayas_24 O : O Ya O Allah O .. O pgn O nangis O .. O My O #twitter O age O is O 538 O days O 13 O hours O 14 O minutes O 38 O seconds O . O Find O out O yours O at O http://twitter.seocoder.org/ O #twittertime O Lohan B-person Failed O A O Drug O Test O : O Lindsay B-person Lohan I-person may O be O in O trouble O once O again O . O The O actress O , O who O recently O completed O a O stint O ... O http://bit.ly/9GEfEa O How O is O it O that O the O same O ppl O who O complain O about O crime O and O potholes O r O outraged O @ O the O idea O of O paying O an O extra O $2/month O to O improve O those O things O ? O @rachel_luttrell O love O it O when O people O can O find O good O in O a O bad O situation O . O Thanks O for O being O an O inspiration O to O me O again O . O :) O datjayycarterkidd O asked O : O omg O hey O sir O ?? O omg O what O color O are O oyu O eyes O ?? O hit O up O the O ask O box O when O you O can O !! O http://tumblr.com/xn3iud2q8 O I O pray O an O give O God B-person glory O even O when O im O in O pain O , O hurting O , O or O crying O . O 24/7 O God B-person is O great O !!! O RT O @atlantamade1986Shorts O or O leggings O tonight O ??" O Leggings O . O It O 's O sumthin O bout O em O I O like O on O a O woman O ... O cuz O u O can O c O da O cameltoe O that O 's O why O .. O lol O I'm O not O even O tired O but O i O have O to O go O to O sleep O or O i O will O be O like O a O zombie O at O work O tomorrow O RT O @iRespectFemales O R O E O T O W O E O E O T O if O you O stare O at O the O same O text O for O a O long O time O because O you O can't O figure O out O how O to O reply O to O it O meet O the O luckiest O guy O in O america B-geo-loc ... O soooo O jealous O !: O RT@vincewelch O My O 1st O trip O to O Fenway B-geo-loc tonight O http://twitpic.com/2pdwoo O @JuicylyJas O iiqht O im O bout O to O look O into O sunday O for O .. O @jasonderulo O jason B-person , O coming O to O see O you O at O Newcastle-Upon-Tyne B-geo-loc in O Feb O , O cant O wait O !! O How O are O you O ? O xx O @drugmonkey O First-time O commenters O automatically O go O to O moderation O , O so O I'll O need O to O publish O it O by O hand O , O but O I'm O watching O for O it O . O i O didnt O know O people O were O so O out O of O touch O . O before O debates O im O just O gonna O start O asking O questions O about O where O they O got O their O info O first O is O up O and O ready O for O his O last O day O on O the O punt O until O Stakes B-other Day I-other ... O #sadbuttrue O @Johnn_Dillinger O nothing O man O . O Tryna O see O was O good O for O today O . O Was O good O with O you O ? O So O apperently O there O is O a O dance O and O game O tonight O ..... O I O wonder O if O kierra O will O go O with O me O -hinthint- O I O hope O she O gets O this O to O her O phone O e_e O I O don't O know O what O criteria O does O MTV B-company use O to O give O music O awards O these O days O . O 'I O just O took O " O After O getting O trampled O at O a O Justin B-person Bieber I-person concert O , O yoiu O wake O up O and O find O J O ..." O and O got O : O part O 5 O :) O ! O Try O it O : O http://bit.ly/9Uqiu5' O @nes1983 O as O a O personal O experience O , O I O can O tell O that O it O takes O a O day O before O you O can O form O hypotheses O . O Many O don't O even O get O that O far O created O some O great O rum O based O sig O cocktails O for O a O tasting O today O : O Figgy B-other Soda I-other w/ O a O fresh O fig O puree O & O Rose B-product Press I-product w/ O rose O water O & O edible O flowers O 1 O MO O DAY O TO O GO O ------ O > O http://yfrog.com/jwoq9uj O @bduenas O @HotCARLL O @MxBIEson O #Reach O 4v4 O ! O Today O BIackMaglc O '@krtgrphr O it O was O " O Oo O Harii O " O once O upon O a O time O .. O and O the O 666 O depict O moodu O namalu O ..' O @NeonGrizzly O I'll O call O u O after O class O pooky O ;D O - O famous O people O looking O at O there O followers O going O up O in O 100s O and O thousands O , O me O looking O at O my O couple O a O day O .. O @KrisReyes O Have O an O awesome O time O on O your O travels!I'll O miss O seeing O u O on O CityTV B-other ! O #icandowithout O you O , O when O I O say O it O I O will O do O it O . O Top O M&A O news O of O the O week O - O #India O #Infoline O - O #Mauritius O - O #World O > O http://youreader.com/a.php?i=90133 O Work O 330-1130 O come O home O shower O bed O up O early O for O buckboardday B-other parade I-other then O sanchez B-person family O reunion O then O betos B-person gbye O party O so O much O for O a O day O off O back O from O Verona B-geo-loc :) O Looking O forward O to O come O back O in O Paris B-geo-loc next O week O . O We O plan O a O drink O together O friends O ? O @thisdog O Two O tracks O - O RGA O & O DGA O ads O came O out O at O same O time O - O neither O candidate O has O control O of O those O org O 's O Mitchell B-person ad O as O @ASFried O 1/2 O Happy O Constitution B-other Day I-other ! O the O day O @justinbieber O gets O a O girlfriend O is O the O day O world O war O 3 O starts O lol O :) O true O story O When O too O much O choice O is O a O bad O thing O , O Joel B-person on O Technology O http://bit.ly/9KKobr O " O Just O when O I O think O I'm O out O , O they O pull O me O back O in O " O -Summer O #Vancouver O #summerstill O May O have O overdone O it O today O ... O My O back O hurts O ... O :-( O @TheAndyKaufman O A O couple O weeks O ago O ? O It O caught O my O attention O , O because O my O dad O drove O truck O for O Wal-mart/swift O a O few O months O back O . O 'RT O @JReyez O : O The O " O Say O Aah O " O crew O in O Toronto B-geo-loc ? O November O ? O Hahaha' O ahhh O yes O , O a O friday O :) O just O chilled O with O madison B-person ! O < O 3 O RT O @Teacher_Spirit O : O know O this O today O . O no O thing O will O ever O come O upon O you O and O overtake O you O . O the O love O of O Jesus B-person Christ I-person will O overtake O it O . O He O is O ... O 3:12 O am O tweet O just O planned O the O day O after O reading O loads O of O NEWS O ... O tommorrow O is O a O big O day O wipro B-company 's O interview O checking O my O pronunciation O ..! O 'RT O @SFAC O : O Paint O on O a O " O free O wall O " O with O @chorboogie O on O Sunday O thanks O to O @SFAC O and O @sfdpw O . O ( O via O @SFist O ) O http://bit.ly/bFGfwL' O Hurry O up O ! O Santy B-person will O be O Leaving O in O 2 O days O ! O - O #Eskorte O and O #Massasje O i O #Norge O @nickjonas O I O just O have O to O say O that O the O photos O that O I've O seen O of O you O and O Elvis B-person on O stage O yesterday O is O just O about O the O most O adorable O thing O ever O . O I O am O waiting O for O UOEM O to O finally O wrapped O before O giving O it O a O go O again O , O I O can't O deal O with O it O 's O continous O heartfail O .. O Today O 's O health O service O lecture O was O actually O interesting O to O me O x O ) O Today O is O the O COMPLETE O OPPOSITE O of O yesterday O - O . O - O Have O a O feeling O my O phone O bill O will O be O high O this O month O haha O i O luv O weekends O when O i O actually O have O plans O , O lol O ! O Salem B-geo-loc Daily O Dish// O Chef O 's O Choice O Menu O at O Spoons B-facility NW I-facility Bistro I-facility for O tonight O ...: O Caramalized O Onion O Tarthousemade O tart O wit O ... O http://bit.ly/98QmI9 O @karensuluay O Hyna B-person the O Brad B-person paisley I-person concert O we O were O supposed O to O go O to O is O tonight O *tear* O TODAY O IS O THE O TEACHER'S B-other DAY I-other 2 I-other ! O HAPPY O TEACHER'S B-other DAY I-other 2 I-other ME O !!! O YEAAAAHHHH O !!! O AGUANT O LA O DOCENSIA O !!! O http://bit.ly/aqinZ2 O wala O na O tlga O c O smarhelp O naman O : O pa O help O nman O jan O mga O kapatid O anu O proxy O ng O om O http://bit.ly/9cAe9y O @NatalieRooney O had O nice O day O , O this O weather O could O be O better O . O [ O Reuters O Govt O Reg O ] O UPDATE O 1-Tighter O rules O for O market O makers O post-'flash O crash': O NEW B-geo-loc YORK I-geo-loc , O Sept O 17 O ( O Reuters B-company ) O - O U O . O S O .... O http://bit.ly/bWUyBR O 'RT O @TheGhostOfYou_ O : O Adeus O noites O bem O dormidas O RT O @Vivi_Venom O " O Danger B-other Days I-other : I-other The I-other True I-other Lives I-other Of I-other The I-other Fabulous I-other Killjoys I-other ." O 22nd O november' O First O , O I O had O these O crazy O dreams O all O last O night O . O Then O I O sleep O all O day O today O ... O I O hope O nobody O put O some O hoodoo O on O me O ! O If O my O calculation O is O right O , O Christmas B-other is O only O 98 O days O away O ... O @tach47 O Did O not O know O I O would O be O moving O there O til O Wednesday O , O had O no O advanced O notice O or O else O I O would O have O it O on O and O working O Saturday O morning O ! O -CHANGE O OF O ROOM O ! O - O FATHER'S O DAY O auditions O Sept O 25 O CANWEST B-facility Center I-facility for O Theater O and O Film O U B-geo-loc of I-geo-loc W I-geo-loc ROOM O 0T15 O 11:30 O am O - O 4:00 O PM O . O CLUB B-facility BLU I-facility tonite O ...... O 90 O 's O music O .. O oldskool O night O wiith O dj B-musicartist finese I-musicartist As O women O pay O homage O to O masculinity O they O avoid O their O own O power O . O It O doesn't O help O anyone O . O Men O need O our O leadership O even O when O they O don't O like O it O . O OMG-Fact O #14906 O : O Jellyfish O have O existed O for O over O 500 O million O years O . O Back O in O 2007 O , O paleontologists O discovered O jell O ... O http://bit.ly/b9yY3L O @FH14 O I O ironed O mine O just O fine O . O You O may O want O to O wash O it O first O , O though O , O so O it O gets O really O soft O . O If O you O want O to O be O extra O safe O do O on O the O reverse O @LillaRebellato O bah O ! O Read O the O last O one O before O the O one O before O . O Thought O I O was O in O then O . O @iPukeRKOs O I O cant O You'll O have O to O Tune O into O the O show O this O Sunday O . O Ill O give O ya O a O hint O He O 's O a O wrestler O & O has O been O in O the O business O for O 20 O + O yrs O Is O making O me O purchase O windows B-product , O antivirus O and O office B-product when O i O buy O a O laptop O not O third O line O forcing O ? O Last O film O I O can O watch O on O a O decent O telly O for O a O while O tonight O . O Kick-Ass B-movie is O very O tempting O indeed O . O A O Few O Clouds O and O 69 O F O at O Islip O , O Long B-geo-loc Island I-geo-loc Mac I-geo-loc Arthur I-geo-loc Airport I-geo-loc , O NY B-geo-loc Winds O are O North O at O 16.1 O MPH O ( O 14 O KT) O . O The O pressure O is O http://s1z.us/vf.htm O #DiggyFollows50 O right O after O his O daddy O stops O tweeting O via O tub O You O blink O when O you O breathe O and O you O breathe O when O you O lie O . O You O blink O when O you O lie O . O I'm O pleased O to O have O introduced O @TheSmokingGunn O to O twitter B-company . O May O he O become O as O inane O as O me O . O changed O mii O twitta O name O i O wass O really O on O mii O nerd O floww O todaii O them O glasses O are O the O best O ...... O nerd O glasses O on O deck O ... O now O time O for O church O RT O @TLyric O : O @slimthugga O when O dat O Gangsta O video O droppin O bruh O < O -- O u O late O Lil O bro O todaii O was O such O a O long O day O The O bank O teller O I O always O go O to O wants O me O . O Lol O . O No O shit O . O She O left O me O wide O open O for O tomorrow O . O Too O bad O I O already O have O fucking O plans O ! O Anyone O up O for O some O late O night O trivia O tonight O ? O 10pm O at O Summits B-facility . O Let O me O know O ! O @bieberarmy_asia O hey O i O gotta O ask O you O something O if O i O can O :) O please O tweet O me O when O you O be O online O and O i'll O send O you O DM O . O okkk O ? O thank O you O RT O @obsidianchao O : O OF O FUCKING O COURSE O . O I O GET O HOME O AND O MY O BROTHER O IS O ON O THE O MOTHER O FUCKING O XBOX B-product . O Worst O fucking O day O ever O . O Interesting O 1st O week O of O work O ( O during O training O ) O 1 O of O the O 6 O ppl O decided O the O job O wasnt O for O her O , O and O the O firm O decided O to O let O go O another O guy O . O 2 O years O 99 O days O 3 O hours O 36 O minutes O and O 20 O seconds O Until O Mayan B-other Doomsday I-other , O DEC O 22 O 2012 O AD O @taqui_jade O lol O I O snapped O so O quick O too O lmao O some O people O just O piss O me O off O instantly O when O they O open O they O mouth O lol O Can O have O any O girl O I O choose O but O as O time O goes O by O baby O im O goin O home O wit O u O RT O @jettathatsme O : O #nowplaying- O This B-other Is I-other Our I-other Someday I-other - O Big B-musicartist Time I-musicartist Rush I-musicartist < O 3 O :) O Home O made O cod O & O chips O + O bottle O of O Microsoft B-company provided O champagne O = O top O class O Friday O ;-) O http://yfrog.com/n6cdhzj O Just O picked O my O dog O up O from O his O posh O day O spa O . O Actually O he O can't O run O under O vet O orders O . O He O swims O here O occasionally O Google B-product Music I-product Rumors O : O Labels O Happy O About O iTunes B-company Alternative O ? O - O Techland B-company - O TIME O . O com O http://bit.ly/a4kSfV O @Kieran_Doyle O ew O suga O on O tea O ! O wen O i O was O yungr O nd O we O adta O giv O stuf O up O 4 O lent O i O gav O up O suga O on O ma O tea O ... O afta O da O month O i O didnt O lyk O it O nymor O lol O @Quintessence_T O I O COME O OUT O HAIRY O FACED O ONLY O DES O DAYS O IMMA O TAKE O SUM O NEW O PIX O AIGHT O @DonnieWahlberg O Hey O hun O ... O We O are O all O here O tonight O . O lol O . O Friday O . O oh O yeah O ... O lol O tell O ur O dad2bring O the O ypp O back O in O Hayes O we O sorted O it O out O last O time O I'm O like O yea O I'll O tell O him O *covers O eyes*wat O informing O am O I O doing O #llowit O @abydauz O good O luck O with O the O audition O Saturday O . O Remember O positive O thoughts O !!!!! O RT O @NPR O : O Song O of O the O Day O : O Blonde B-musicartist Redhead I-musicartist : O A B-other Different I-other Kind I-other Of I-other Ache I-other http://n.pr/9O8yXE O @krtgrphr O Arre O no O . O After O experiencing O loos O in O Japan B-geo-loc , O I'm O spoiled O forever O . O Now O everything O is O SulahShauchalay O baraabar O . O Iwebslog O . O com O Jupiter B-geo-loc making O closest O approach O in O nearly O 50 O years O ( O AP) O : O AP O - O Better O catch O Jupiter B-geo-loc next O ... O http://l.mytr.in/aQn2Kg O #Blog O New O #VideoRecorder O #7 O : O Flip B-product MinoHD I-product Video O Camera O -- O 8 O GB O , O 2 O Hour O Record O Time O : O Flip B-product MinoHD I-product Video O Camera O -- O ... O http://dlvr.it/5P5kV O #cheaptweet O Look O n O feel O like O a O complete O heffa O today O . O FML O . O Just O bought O my O Newcastle B-geo-loc K B-other ! I-other Tour I-other ticket O ! O XD O Can't O wait O for O February O ! O Massive O B-stock O list O ! O While O supplies O last O . O Check O it O out O here O : O http://soniccircus.com/September-B-Stock-List O @Kirstyjarvie O yesss O !!!! O I'm O off O after O 6 O :) O really O needs O to O buckle O down O and O get O some O work O done O before O she O heads O home O ... O RT O @chelseakent O : O Going O to O eat O at O Loveless B-facility Cafe I-facility tonight O ! O :) O Omg O i O just O found O Roy B-person 's O and O Greg B-person 's O old O band O 's O website O ! O but O when O I O clicked O on O it O , O it O wouldn't O work:'( O International B-other Observe I-other the I-other Moon I-other Night I-other ( O 9/18/2010 O ) O | O Saturday O , O Sep O 18 O , O 06:00 O PM O | O http://bit.ly/bVOdBF O #cuboulder O Blegh O , O that O fell O through O . O Staffing O agency O had O a O miscommunication O w\the O client O . O So O two O week O temp O assignment O fell O through O unfortunately O . O Well O I O was O gonna O be O a O good O girl O today O but O @Luscious_Liz_ O changed O my O mine O #FuckeryFriday O http://yfrog.com/mr8xqj O ooo O @claireymarsh O where O are O you O when O i O need O you O .. O @DebVRuns O hi O pal O !! O How O 's O Hawaii B-geo-loc ?? O when O are O you O heading O home O ! O Is O counting O down O the O days O to O Oct O 23rd O and O the O Wright B-other family I-other Halloween B-other bash O !! O It O 's O gonna O be O amazing O .. O they O go O all O out O for O it O ! O @LisaMack324 O yep O , O we O are O . O hopefully O we'll O be O done O in O time O ... O > O . O < O @matttraynor O ME O ! O the O november O 15th O show O ( O : O @webcowgirl O You're O supposed O to O fast O after O sundown O , O silly O ! O I O hate O when O someone O ask O you O " O what O 's O wrong O " O & O u O say O " O long O story O " O then O they O say O " O I've O got O time O " O okay O I O obviously O don't O want O to O tell O you O ! O #nowplaying O when B-other im I-other gone I-other eminem B-person :) O i O saw O @TATTEDUP_FLYTY O one O day O walkin O 2 O the O store O .. O and O this O foo O tripped O and O tried O 2 O play O it O off O LOL O !!!! O going O to O tucson B-geo-loc tonight O :/ O iPad B-product Refresh O Due O in O January O : O Display O manufacturers O tip O the O world O to O the O timing O of O the O next O iPad B-product . O IPad B-product ... O http://bit.ly/9gplXp O Posted O a O new O blog O today O about O the O new O Lounge22 B-product Powered O by O CORT B-company collection O ! O The O furniture O is O divine O : O http://go.cort.com/5f O Just O puffed O on O sour O d O unintentionally O ... O I'm O so O high O Idk O when O I O will O come O back O to O earth O Win O tix O 2 O KELE B-person and O DOES B-musicartist IT I-musicartist OFFEND I-musicartist YOU I-musicartist , I-musicartist YEAH I-musicartist ? I-musicartist Sept O 21st O @ O Music B-facility Box I-facility : O contest@ O dimmak.com O | O Afterparty O at O Dim B-facility Mak I-facility Tuesdays O @CinespaceLA O I O wanna O go O to O a O SHS B-sportsteam football O game O cuz O I O ain't O been O to O a O high O school O game O in O years O . O @themystikSAIDso O make O it O happen O Follow O Friday O : O Once O again O , O I O suggest O you O tell O everyone O you O know O to O FOLLOW O ME O ! O Let O 's O get O me O over O 200 O followers O ! O Porn O robots O welcome O ! O #ff O @diaryOFcrazy_T O still O trying O to O warm O up O my O toes O are O cold O as O :) O but O just O chillin O no O running O today O . O Stoked O about O the O awesome O date O night O im O about O to O have O with O @sssmash O and O also O very O stoked O about O the O bro O time O tomorrow O with O @jeffsyourhero O @MJay615 O joining O the O awsm O before O I'm O interested O to O see O what O they're O bringing O to O it O Sleeping O time O . O Morgenochtend O maar O even O de O Koperdoos O een O schoonmaakbeurtje O geven O ... O About O to O get O ready O for O work...don't O have O a O good O feeling O about O tonight O #famouslastwords O ... O and O the O rules O are O ? O #corny O RT O @barzangi O : O I've O said O it O before O and O I'll O say O it O again O : O Indian B-geo-loc food O RULES O . O @jodieboulger O Ehe O good O :) O see O you O tomorrow O dude O ! O Tomorrow O is O another O day O ! O Parking B-other Day I-other - O Parking B-other Day I-other hosted O by O the O Hudson B-other TMA I-other at O Town B-facility Square I-facility Place I-facility on O Pavonia B-geo-loc Avenue I-geo-loc in O the O Newport B-geo-loc ... O http://tumblr.com/xmyiud0zl O Five O Bullpens O to O Stay O Away O From O in O MLB B-other Odds O : O When O you O think O of O the O worst O teams O in O baseball O , O you O think O of O teams O tha O ... O http://bit.ly/9R73CK O New O Dorky O Stuff O : O Friday O Review O Rundown O ! O Sept O 17th O Easy O A O vs O . O Devil O vs O . O A O Woman O , O A O Gun O , O and O A O Noodleshop O http://ow.ly/193oCy O Oh O PEI B-person , O i O always O forget O how O beautiful O you O are O . O Especially O when O you O stop O hanging O out O with O tourists O . O workin O at O the O ol O Sunset B-facility Bistro I-facility tonight O ... O come O get O some O grub O ================================================ FILE: nlp_class2/ner_baseline.py ================================================ # Course URL: # https://deeplearningcourses.com/c/natural-language-processing-with-deep-learning-in-python # https://udemy.com/natural-language-processing-with-deep-learning-in-python # data from https://github.com/aritter/twitter_nlp/blob/master/data/annotated/ner.txt # data2 from http://schwa.org/projects/resources/wiki/Wikiner#WikiGold from __future__ import print_function, division from builtins import range # Note: you may need to update your version of future # sudo pip install -U future import numpy as np from sklearn.utils import shuffle from pos_baseline import LogisticRegression def get_data(split_sequences=False): word2idx = {} tag2idx = {} word_idx = 0 tag_idx = 0 Xtrain = [] Ytrain = [] currentX = [] currentY = [] for line in open('ner.txt'): line = line.rstrip() if line: r = line.split() word, tag = r word = word.lower() if word not in word2idx: word2idx[word] = word_idx word_idx += 1 currentX.append(word2idx[word]) if tag not in tag2idx: tag2idx[tag] = tag_idx tag_idx += 1 currentY.append(tag2idx[tag]) elif split_sequences: Xtrain.append(currentX) Ytrain.append(currentY) currentX = [] currentY = [] if not split_sequences: Xtrain = currentX Ytrain = currentY print("number of samples:", len(Xtrain)) Xtrain, Ytrain = shuffle(Xtrain, Ytrain) Ntest = int(0.3*len(Xtrain)) Xtest = Xtrain[:Ntest] Ytest = Ytrain[:Ntest] Xtrain = Xtrain[Ntest:] Ytrain = Ytrain[Ntest:] print("number of classes:", len(tag2idx)) return Xtrain, Ytrain, Xtest, Ytest, word2idx, tag2idx # def get_data2(split_sequences=False): # word2idx = {} # tag2idx = {} # word_idx = 0 # tag_idx = 0 # Xtrain = [] # Ytrain = [] # for line in open('../large_files/aij-wikiner-en-wp3'): # # each line is a full sentence # currentX = [] # currentY = [] # line = line.rstrip() # if not line: # continue # triples = line.split() # for triple in triples: # word, _, tag = triple.split('|') # if word not in word2idx: # word2idx[word] = word_idx # word_idx += 1 # currentX.append(word2idx[word]) # if tag not in tag2idx: # tag2idx[tag] = tag_idx # tag_idx += 1 # currentY.append(tag2idx[tag]) # Xtrain.append(currentX) # Ytrain.append(currentY) # if not split_sequences: # Xtrain = np.concatenate(Xtrain) # Ytrain = np.concatenate(Ytrain) # print("number of samples:", len(Xtrain)) # Xtrain, Ytrain = shuffle(Xtrain, Ytrain) # Ntest = int(0.3*len(Xtrain)) # Xtest = Xtrain[:Ntest] # Ytest = Ytrain[:Ntest] # Xtrain = Xtrain[Ntest:] # Ytrain = Ytrain[Ntest:] # print("number of classes:", len(tag2idx)) # return Xtrain, Ytrain, Xtest, Ytest, word2idx, tag2idx def main(): Xtrain, Ytrain, Xtest, Ytest, word2idx, tag2idx = get_data() V = len(word2idx) print("vocabulary size:", V) K = len(tag2idx) # train and score model = LogisticRegression() model.fit(Xtrain, Ytrain, V=V, K=K, epochs=5) print("training complete") print("train score:", model.score(Xtrain, Ytrain)) print("train f1 score:", model.f1_score(Xtrain, Ytrain)) print("test score:", model.score(Xtest, Ytest)) print("test f1 score:", model.f1_score(Xtest, Ytest)) if __name__ == '__main__': main() ================================================ FILE: nlp_class2/ner_rnn.py ================================================ # Course URL: # https://deeplearningcourses.com/c/natural-language-processing-with-deep-learning-in-python # https://udemy.com/natural-language-processing-with-deep-learning-in-python from __future__ import print_function, division from builtins import range # Note: you may need to update your version of future # sudo pip install -U future from ner_baseline import get_data from pos_rnn import RNN def main(): Xtrain, Ytrain, Xtest, Ytest, word2idx, tag2idx = get_data(split_sequences=True) V = len(word2idx) K = len(tag2idx) rnn = RNN(10, [10], V, K) rnn.fit(Xtrain, Ytrain, epochs=70) print("train score:", rnn.score(Xtrain, Ytrain)) print("test score:", rnn.score(Xtest, Ytest)) print("train f1 score:", rnn.f1_score(Xtrain, Ytrain)) print("test f1 score:", rnn.f1_score(Xtest, Ytest)) if __name__ == '__main__': main() ================================================ FILE: nlp_class2/ner_tf.py ================================================ # Course URL: # https://deeplearningcourses.com/c/natural-language-processing-with-deep-learning-in-python # https://udemy.com/natural-language-processing-with-deep-learning-in-python from __future__ import print_function, division from builtins import range # Note: you may need to update your version of future # sudo pip install -U future import numpy as np import matplotlib.pyplot as plt import tensorflow as tf import os import sys sys.path.append(os.path.abspath('..')) from pos_baseline import get_data from sklearn.utils import shuffle from util import init_weight from datetime import datetime from sklearn.metrics import f1_score from tensorflow.contrib.rnn import static_rnn as get_rnn_output from tensorflow.contrib.rnn import BasicRNNCell, GRUCell def get_data(split_sequences=False): word2idx = {} tag2idx = {} word_idx = 1 tag_idx = 1 Xtrain = [] Ytrain = [] currentX = [] currentY = [] for line in open('ner.txt'): line = line.rstrip() if line: r = line.split() word, tag = r word = word.lower() if word not in word2idx: word2idx[word] = word_idx word_idx += 1 currentX.append(word2idx[word]) if tag not in tag2idx: tag2idx[tag] = tag_idx tag_idx += 1 currentY.append(tag2idx[tag]) elif split_sequences: Xtrain.append(currentX) Ytrain.append(currentY) currentX = [] currentY = [] if not split_sequences: Xtrain = currentX Ytrain = currentY print("number of samples:", len(Xtrain)) Xtrain, Ytrain = shuffle(Xtrain, Ytrain) Ntest = int(0.3*len(Xtrain)) Xtest = Xtrain[:Ntest] Ytest = Ytrain[:Ntest] Xtrain = Xtrain[Ntest:] Ytrain = Ytrain[Ntest:] print("number of classes:", len(tag2idx)) return Xtrain, Ytrain, Xtest, Ytest, word2idx, tag2idx def flatten(l): return [item for sublist in l for item in sublist] # get the data Xtrain, Ytrain, Xtest, Ytest, word2idx, tag2idx = get_data(split_sequences=True) V = len(word2idx) + 2 # vocab size (+1 for unknown, +1 for pad) K = len(set(flatten(Ytrain)) | set(flatten(Ytest))) + 1 # num classes # training config epochs = 5 learning_rate = 1e-2 mu = 0.99 batch_size = 32 hidden_layer_size = 10 embedding_dim = 10 sequence_length = max(len(x) for x in Xtrain + Xtest) # pad sequences Xtrain = tf.keras.preprocessing.sequence.pad_sequences(Xtrain, maxlen=sequence_length) Ytrain = tf.keras.preprocessing.sequence.pad_sequences(Ytrain, maxlen=sequence_length) Xtest = tf.keras.preprocessing.sequence.pad_sequences(Xtest, maxlen=sequence_length) Ytest = tf.keras.preprocessing.sequence.pad_sequences(Ytest, maxlen=sequence_length) print("Xtrain.shape:", Xtrain.shape) print("Ytrain.shape:", Ytrain.shape) # inputs inputs = tf.placeholder(tf.int32, shape=(None, sequence_length)) targets = tf.placeholder(tf.int32, shape=(None, sequence_length)) num_samples = tf.shape(inputs)[0] # useful for later # embedding We = np.random.randn(V, embedding_dim).astype(np.float32) # output layer Wo = init_weight(hidden_layer_size, K).astype(np.float32) bo = np.zeros(K).astype(np.float32) # make them tensorflow variables tfWe = tf.Variable(We) tfWo = tf.Variable(Wo) tfbo = tf.Variable(bo) # make the rnn unit rnn_unit = GRUCell(num_units=hidden_layer_size, activation=tf.nn.relu) # get the output x = tf.nn.embedding_lookup(tfWe, inputs) # converts x from a tensor of shape N x T x D # into a list of length T, where each element is a tensor of shape N x D x = tf.unstack(x, sequence_length, 1) # get the rnn output outputs, states = get_rnn_output(rnn_unit, x, dtype=tf.float32) # outputs are now of size (T, N, M) # so make it (N, T, M) outputs = tf.transpose(outputs, (1, 0, 2)) outputs = tf.reshape(outputs, (sequence_length*num_samples, hidden_layer_size)) # NT x M # Linear activation, using rnn inner loop last output logits = tf.matmul(outputs, tfWo) + tfbo # NT x K predictions = tf.argmax(logits, 1) predict_op = tf.reshape(predictions, (num_samples, sequence_length)) labels_flat = tf.reshape(targets, [-1]) cost_op = tf.reduce_mean( tf.nn.sparse_softmax_cross_entropy_with_logits( logits=logits, labels=labels_flat ) ) train_op = tf.train.AdamOptimizer(learning_rate).minimize(cost_op) # init stuff sess = tf.InteractiveSession() init = tf.global_variables_initializer() sess.run(init) # training loop costs = [] n_batches = len(Ytrain) // batch_size for i in range(epochs): n_total = 0 n_correct = 0 t0 = datetime.now() Xtrain, Ytrain = shuffle(Xtrain, Ytrain) cost = 0 for j in range(n_batches): x = Xtrain[j*batch_size:(j+1)*batch_size] y = Ytrain[j*batch_size:(j+1)*batch_size] # get the cost, predictions, and perform a gradient descent step c, p, _ = sess.run( (cost_op, predict_op, train_op), feed_dict={inputs: x, targets: y}) cost += c # calculate the accuracy for yi, pi in zip(y, p): # we don't care about the padded entries so ignore them yii = yi[yi > 0] pii = pi[yi > 0] n_correct += np.sum(yii == pii) n_total += len(yii) # print stuff out periodically if j % 10 == 0: sys.stdout.write( "j/N: %d/%d correct rate so far: %f, cost so far: %f\r" % (j, n_batches, float(n_correct)/n_total, cost) ) sys.stdout.flush() # get test acc. too p = sess.run(predict_op, feed_dict={inputs: Xtest, targets: Ytest}) n_test_correct = 0 n_test_total = 0 for yi, pi in zip(Ytest, p): yii = yi[yi > 0] pii = pi[yi > 0] n_test_correct += np.sum(yii == pii) n_test_total += len(yii) test_acc = float(n_test_correct) / n_test_total print( "i:", i, "cost:", "%.4f" % cost, "train acc:", "%.4f" % (float(n_correct)/n_total), "test acc:", "%.4f" % test_acc, "time for epoch:", (datetime.now() - t0) ) costs.append(cost) plt.plot(costs) plt.show() ================================================ FILE: nlp_class2/neural_network.py ================================================ # Course URL: # https://deeplearningcourses.com/c/natural-language-processing-with-deep-learning-in-python # https://udemy.com/natural-language-processing-with-deep-learning-in-python from __future__ import print_function, division from future.utils import iteritems from builtins import range, input # Note: you may need to update your version of future # sudo pip install -U future import numpy as np import matplotlib.pyplot as plt import random from datetime import datetime import os import sys sys.path.append(os.path.abspath('..')) from rnn_class.util import get_wikipedia_data from rnn_class.brown import get_sentences_with_word2idx_limit_vocab, get_sentences_with_word2idx from markov import get_bigram_probs if __name__ == '__main__': # load in the data # note: sentences are already converted to sequences of word indexes # note: you can limit the vocab size if you run out of memory sentences, word2idx = get_sentences_with_word2idx_limit_vocab(2000) # sentences, word2idx = get_sentences_with_word2idx() # vocab size V = len(word2idx) print("Vocab size:", V) # we will also treat beginning of sentence and end of sentence as bigrams # START -> first word # last word -> END start_idx = word2idx['START'] end_idx = word2idx['END'] # a matrix where: # row = last word # col = current word # value at [row, col] = p(current word | last word) bigram_probs = get_bigram_probs(sentences, V, start_idx, end_idx, smoothing=0.1) # train a shallow neural network model D = 100 W1 = np.random.randn(V, D) / np.sqrt(V) W2 = np.random.randn(D, V) / np.sqrt(D) losses = [] epochs = 1 lr = 1e-2 def softmax(a): a = a - a.max() exp_a = np.exp(a) return exp_a / exp_a.sum(axis=1, keepdims=True) # what is the loss if we set W = log(bigram_probs)? W_bigram = np.log(bigram_probs) bigram_losses = [] t0 = datetime.now() for epoch in range(epochs): # shuffle sentences at each epoch random.shuffle(sentences) j = 0 # keep track of iterations for sentence in sentences: # convert sentence into one-hot encoded inputs and targets sentence = [start_idx] + sentence + [end_idx] n = len(sentence) inputs = np.zeros((n - 1, V)) targets = np.zeros((n - 1, V)) inputs[np.arange(n - 1), sentence[:n-1]] = 1 targets[np.arange(n - 1), sentence[1:]] = 1 # get output predictions hidden = np.tanh(inputs.dot(W1)) predictions = softmax(hidden.dot(W2)) # do a gradient descent step W2 = W2 - lr * hidden.T.dot(predictions - targets) dhidden = (predictions - targets).dot(W2.T) * (1 - hidden * hidden) W1 = W1 - lr * inputs.T.dot(dhidden) # keep track of the loss loss = -np.sum(targets * np.log(predictions)) / (n - 1) losses.append(loss) # keep track of the bigram loss # only do it for the first epoch to avoid redundancy if epoch == 0: bigram_predictions = softmax(inputs.dot(W_bigram)) bigram_loss = -np.sum(targets * np.log(bigram_predictions)) / (n - 1) bigram_losses.append(bigram_loss) if j % 10 == 0: print("epoch:", epoch, "sentence: %s/%s" % (j, len(sentences)), "loss:", loss) j += 1 print("Elapsed time training:", datetime.now() - t0) plt.plot(losses) # plot a horizontal line for the bigram loss avg_bigram_loss = np.mean(bigram_losses) print("avg_bigram_loss:", avg_bigram_loss) plt.axhline(y=avg_bigram_loss, color='r', linestyle='-') # plot smoothed losses to reduce variability def smoothed_loss(x, decay=0.99): y = np.zeros(len(x)) last = 0 for t in range(len(x)): z = decay * last + (1 - decay) * x[t] y[t] = z / (1 - decay ** (t + 1)) last = z return y plt.plot(smoothed_loss(losses)) plt.show() # plot W and bigram probs side-by-side # for the most common 200 words plt.subplot(1,2,1) plt.title("Neural Network Model") plt.imshow(np.tanh(W1).dot(W2)) plt.subplot(1,2,2) plt.title("Bigram Probs") plt.imshow(W_bigram) plt.show() ================================================ FILE: nlp_class2/neural_network2.py ================================================ # Course URL: # https://deeplearningcourses.com/c/natural-language-processing-with-deep-learning-in-python # https://udemy.com/natural-language-processing-with-deep-learning-in-python from __future__ import print_function, division from future.utils import iteritems from builtins import range, input # Note: you may need to update your version of future # sudo pip install -U future import numpy as np import matplotlib.pyplot as plt import random from datetime import datetime import os import sys sys.path.append(os.path.abspath('..')) from rnn_class.util import get_wikipedia_data from rnn_class.brown import get_sentences_with_word2idx_limit_vocab, get_sentences_with_word2idx from markov import get_bigram_probs if __name__ == '__main__': # load in the data # note: sentences are already converted to sequences of word indexes # note: you can limit the vocab size if you run out of memory sentences, word2idx = get_sentences_with_word2idx_limit_vocab(2000) # sentences, word2idx = get_sentences_with_word2idx() # vocab size V = len(word2idx) print("Vocab size:", V) # we will also treat beginning of sentence and end of sentence as bigrams # START -> first word # last word -> END start_idx = word2idx['START'] end_idx = word2idx['END'] # a matrix where: # row = last word # col = current word # value at [row, col] = p(current word | last word) bigram_probs = get_bigram_probs(sentences, V, start_idx, end_idx, smoothing=0.1) # train a shallow neural network model D = 100 W1 = np.random.randn(V, D) / np.sqrt(V) W2 = np.random.randn(D, V) / np.sqrt(D) losses = [] epochs = 1 lr = 1e-2 def softmax(a): a = a - a.max() exp_a = np.exp(a) return exp_a / exp_a.sum(axis=1, keepdims=True) # what is the loss if we set W = log(bigram_probs)? W_bigram = np.log(bigram_probs) bigram_losses = [] t0 = datetime.now() for epoch in range(epochs): # shuffle sentences at each epoch random.shuffle(sentences) j = 0 # keep track of iterations for sentence in sentences: # do not one-hot encoded inputs and targets sentence = [start_idx] + sentence + [end_idx] n = len(sentence) inputs = sentence[:n-1] targets = sentence[1:] # get output predictions hidden = np.tanh(W1[inputs]) predictions = softmax(hidden.dot(W2)) # keep track of the loss loss = -np.sum(np.log(predictions[np.arange(n - 1), targets])) / (n - 1) losses.append(loss) # do a gradient descent step # do it after loss since the calculation of doutput will overwrite predictions # we don't want to make a copy because it would be slow doutput = predictions # N x V doutput[np.arange(n - 1), targets] -= 1 W2 = W2 - lr * hidden.T.dot(doutput) # (D x N) (N x V) dhidden = doutput.dot(W2.T) * (1 - hidden * hidden) # (N x V) (V x D) * (N x D) # # for reference: # # original: W1 = W1 - lr * inputs.T.dot(dhidden) # VxN NxD --> VxD # fastest way W1_copy = W1.copy() np.subtract.at(W1, inputs, lr * dhidden) # vs this # W1_test = W1_copy.copy() # oh_inputs = np.zeros((n - 1, V)) # oh_inputs[np.arange(n - 1), sentence[:n-1]] = 1 # W1_test = W1_test - lr * oh_inputs.T.dot(dhidden) # assert(np.allclose(W1_test, W1)) # vs this # W1_test = W1_copy.copy() # i = 0 # for w in inputs: # don't include end token # W1_test[w] = W1_test[w] - lr * dhidden[i] # i += 1 # assert(np.allclose(W1_test, W1)) # keep track of the bigram loss # only do it for the first epoch to avoid redundancy if epoch == 0: bigram_predictions = softmax(W_bigram[inputs]) bigram_loss = -np.sum(np.log(bigram_predictions[np.arange(n - 1), targets])) / (n - 1) bigram_losses.append(bigram_loss) if j % 100 == 0: print("epoch:", epoch, "sentence: %s/%s" % (j, len(sentences)), "loss:", loss) j += 1 print("Elapsed time training:", datetime.now() - t0) plt.plot(losses) # plot a horizontal line for the bigram loss avg_bigram_loss = np.mean(bigram_losses) print("avg_bigram_loss:", avg_bigram_loss) plt.axhline(y=avg_bigram_loss, color='r', linestyle='-') # plot smoothed losses to reduce variability def smoothed_loss(x, decay=0.99): y = np.zeros(len(x)) last = 0 for t in range(len(x)): z = decay * last + (1 - decay) * x[t] y[t] = z / (1 - decay ** (t + 1)) last = z return y plt.plot(smoothed_loss(losses)) plt.show() # plot W and bigram probs side-by-side # for the most common 200 words plt.subplot(1,2,1) plt.title("Neural Network Model") plt.imshow(np.tanh(W1).dot(W2)) plt.subplot(1,2,2) plt.title("Bigram Probs") plt.imshow(W_bigram) plt.show() ================================================ FILE: nlp_class2/pmi.py ================================================ # https://deeplearningcourses.com/c/data-science-natural-language-processing-in-python # https://www.udemy.com/data-science-natural-language-processing-in-python # Author: http://lazyprogrammer.me from __future__ import print_function, division from future.utils import iteritems from builtins import range # Note: you may need to update your version of future # sudo pip install -U future import os, sys import string import numpy as np import matplotlib.pyplot as plt from scipy.sparse import lil_matrix, csr_matrix, save_npz, load_npz from scipy.spatial.distance import cosine as cos_dist from sklearn.metrics.pairwise import pairwise_distances from glob import glob from datetime import datetime # input files files = glob('../large_files/enwiki*.txt') # unfortunately these work different ways def remove_punctuation_2(s): return s.translate(None, string.punctuation) def remove_punctuation_3(s): return s.translate(str.maketrans('','',string.punctuation)) if sys.version.startswith('2'): remove_punctuation = remove_punctuation_2 else: remove_punctuation = remove_punctuation_3 # max vocab size V = 2000 # context size context_size = 10 # word counts all_word_counts = {} # get the top V words num_lines = 0 num_tokens = 0 for f in files: for line in open(f): # don't count headers, structured data, lists, etc... if line and line[0] not in ('[', '*', '-', '|', '=', '{', '}'): num_lines += 1 for word in remove_punctuation(line).lower().split(): num_tokens += 1 if word not in all_word_counts: all_word_counts[word] = 0 all_word_counts[word] += 1 print("num_lines:", num_lines) print("num_tokens:", num_tokens) # words I really want to keep keep_words = [ 'king', 'man', 'queen', 'woman', 'heir', 'heiress', 'prince', 'princess', 'nephew', 'niece', 'uncle', 'aunt', 'husband', 'wife', 'brother', 'sister', 'tokyo', 'beijing', 'dallas', 'texas', 'january', 'february', 'march', 'april', 'may', 'june', 'july', 'august', 'september', 'october', 'november', 'december', 'actor', 'actress', 'rice', 'bread', 'miami', 'florida', 'walk', 'walking', 'swim', 'swimming', ] for w in keep_words: all_word_counts[w] = float('inf') # sort in descending order all_word_counts = sorted(all_word_counts.items(), key=lambda x: x[1], reverse=True) # keep just the top V words # save a slot for V = min(V, len(all_word_counts)) top_words = [w for w, count in all_word_counts[:V-1]] + [''] # TODO: try it without UNK at all # reverse the array to get word2idx mapping word2idx = {w:i for i, w in enumerate(top_words)} unk = word2idx[''] # for w in ('king', 'man', 'queen', 'woman', 'france', 'paris', \ # 'london', 'england', 'italy', 'rome', \ # 'france', 'french', 'english', 'england', \ # 'japan', 'japanese', 'chinese', 'china', \ # 'italian', 'australia', 'australian' \ # 'japan', 'tokyo', 'china', 'beijing'): # assert(w in word2idx) if not os.path.exists('pmi_counts_%s.npz' % V): # init counts wc_counts = lil_matrix((V, V)) ### make PMI matrix # add counts k = 0 # for line in open('../large_files/text8'): for f in files: for line in open(f): # don't count headers, structured data, lists, etc... if line and line[0] not in ('[', '*', '-', '|', '=', '{', '}'): line_as_idx = [] for word in remove_punctuation(line).lower().split(): if word in word2idx: idx = word2idx[word] # line_as_idx.append(idx) else: idx = unk # pass line_as_idx.append(idx) for i, w in enumerate(line_as_idx): # keep count k += 1 if k % 10000 == 0: print("%s/%s" % (k, num_tokens)) start = max(0, i - context_size) end = min(len(line_as_idx), i + context_size) for c in line_as_idx[start:i]: wc_counts[w, c] += 1 for c in line_as_idx[i+1:end]: wc_counts[w, c] += 1 print("Finished counting") save_npz('pmi_counts_%s.npz' % V, csr_matrix(wc_counts)) else: wc_counts = load_npz('pmi_counts_%s.npz' % V) # context counts get raised ^ 0.75 c_counts = wc_counts.sum(axis=0).A.flatten() ** 0.75 c_probs = c_counts / c_counts.sum() c_probs = c_probs.reshape(1, V) # PMI(w, c) = #(w, c) / #(w) / p(c) # pmi = wc_counts / wc_counts.sum(axis=1) / c_probs # works only if numpy arrays pmi = wc_counts.multiply(1.0 / wc_counts.sum(axis=1) / c_probs).tocsr() # this operation changes it to a coo_matrix # which doesn't have functions we need, e.g log1p() # so convert it back to a csr print("type(pmi):", type(pmi)) logX = pmi.log1p() # would be logX = np.log(pmi.A + 1) in numpy print("type(logX):", type(logX)) logX[logX < 0] = 0 ### do alternating least squares # latent dimension D = 100 reg = 0.1 # initialize weights W = np.random.randn(V, D) / np.sqrt(V + D) b = np.zeros(V) U = np.random.randn(V, D) / np.sqrt(V + D) c = np.zeros(V) mu = logX.mean() costs = [] t0 = datetime.now() for epoch in range(10): print("epoch:", epoch) delta = W.dot(U.T) + b.reshape(V, 1) + c.reshape(1, V) + mu - logX # cost = ( delta * delta ).sum() cost = np.multiply(delta, delta).sum() # * behaves differently if delta is a "matrix" object vs "array" object costs.append(cost) ### partially vectorized updates ### # update W # matrix = reg*np.eye(D) + U.T.dot(U) # for i in range(V): # vector = (logX[i,:] - b[i] - c - mu).dot(U) # W[i] = np.linalg.solve(matrix, vector) # # update b # for i in range(V): # numerator = (logX[i,:] - W[i].dot(U.T) - c - mu).sum() # b[i] = numerator / V #/ (1 + reg) # # update U # matrix = reg*np.eye(D) + W.T.dot(W) # for j in range(V): # vector = (logX[:,j] - b - c[j] - mu).dot(W) # U[j] = np.linalg.solve(matrix, vector) # # update c # for j in range(V): # numerator = (logX[:,j] - W.dot(U[j]) - b - mu).sum() # c[j] = numerator / V #/ (1 + reg) ### vectorized updates ### # vectorized update W matrix = reg*np.eye(D) + U.T.dot(U) vector = (logX - b.reshape(V, 1) - c.reshape(1, V) - mu).dot(U).T W = np.linalg.solve(matrix, vector).T # vectorized update b b = (logX - W.dot(U.T) - c.reshape(1, V) - mu).sum(axis=1) / V # vectorized update U matrix = reg*np.eye(D) + W.T.dot(W) vector = (logX - b.reshape(V, 1) - c.reshape(1, V) - mu).T.dot(W).T U = np.linalg.solve(matrix, vector).T # vectorized update c c = (logX - W.dot(U.T) - b.reshape(V, 1) - mu).sum(axis=0) / V print("train duration:", datetime.now() - t0) plt.plot(costs) plt.show() ### test it king = W[word2idx['king']] man = W[word2idx['man']] queen = W[word2idx['queen']] woman = W[word2idx['woman']] vec = king - man + woman # find closest # closest = None # min_dist = float('inf') # for i in range(len(W)): # dist = cos_dist(W[i], vec) # if dist < min_dist: # closest = i # min_dist = dist # set word embedding matrix # W = (W + U) / 2 distances = pairwise_distances(vec.reshape(1, D), W, metric='cosine').reshape(V) idx = distances.argsort()[:10] print("closest 10:") for i in idx: print(top_words[i], distances[i]) print("dist to queen:", cos_dist(W[word2idx['queen']], vec)) def analogy(pos1, neg1, pos2, neg2): # don't actually use pos2 in calculation, just print what's expected print("testing: %s - %s = %s - %s" % (pos1, neg1, pos2, neg2)) for w in (pos1, neg1, pos2, neg2): if w not in word2idx: print("Sorry, %s not in word2idx" % w) return p1 = W[word2idx[pos1]] n1 = W[word2idx[neg1]] p2 = W[word2idx[pos2]] n2 = W[word2idx[neg2]] vec = p1 - n1 + n2 distances = pairwise_distances(vec.reshape(1, D), W, metric='cosine').reshape(V) idx = distances.argsort()[:10] # pick the best that's not p1, n1, or n2 best_idx = -1 keep_out = [word2idx[w] for w in (pos1, neg1, neg2)] for i in idx: if i not in keep_out: best_idx = i break print("got: %s - %s = %s - %s" % (pos1, neg1, top_words[best_idx], neg2)) print("closest 10:") for i in idx: print(top_words[i], distances[i]) print("dist to %s:" % pos2, cos_dist(p2, vec)) analogy('king', 'man', 'queen', 'woman') analogy('miami', 'florida', 'dallas', 'texas') # analogy('einstein', 'scientist', 'picasso', 'painter') analogy('china', 'rice', 'england', 'bread') analogy('man', 'woman', 'he', 'she') analogy('man', 'woman', 'uncle', 'aunt') analogy('man', 'woman', 'brother', 'sister') analogy('man', 'woman', 'husband', 'wife') analogy('man', 'woman', 'actor', 'actress') analogy('man', 'woman', 'father', 'mother') analogy('heir', 'heiress', 'prince', 'princess') analogy('nephew', 'niece', 'uncle', 'aunt') analogy('france', 'paris', 'japan', 'tokyo') analogy('france', 'paris', 'china', 'beijing') analogy('february', 'january', 'december', 'november') analogy('france', 'paris', 'italy', 'rome') analogy('paris', 'france', 'rome', 'italy') analogy('france', 'french', 'england', 'english') analogy('japan', 'japanese', 'china', 'chinese') analogy('japan', 'japanese', 'italy', 'italian') analogy('japan', 'japanese', 'australia', 'australian') analogy('walk', 'walking', 'swim', 'swimming') ================================================ FILE: nlp_class2/pos_baseline.py ================================================ # Course URL: # https://deeplearningcourses.com/c/natural-language-processing-with-deep-learning-in-python # https://udemy.com/natural-language-processing-with-deep-learning-in-python # You can get the data from this URL: https://www.clips.uantwerpen.be/conll2000/chunking/ # If above URL does not work, try this: # https://drive.google.com/file/d/0BxGV7C-8DTe5QmF2MTFwN3JjWGc/view?usp=sharing from __future__ import print_function, division from builtins import range # Note: you may need to update your version of future # sudo pip install -U future import os, sys import numpy as np import theano import theano.tensor as T import matplotlib.pyplot as plt from sklearn.utils import shuffle from sklearn.metrics import f1_score from sklearn.tree import DecisionTreeClassifier class LogisticRegression: def __init__(self): pass def fit(self, X, Y, V=None, K=None, D=50, lr=1e-1, mu=0.99, batch_sz=100, epochs=6): if V is None: V = len(set(X)) if K is None: K = len(set(Y)) N = len(X) W = np.random.randn(V, K) / np.sqrt(V + K) b = np.zeros(K) self.W = theano.shared(W) self.b = theano.shared(b) self.params = [self.W, self.b] thX = T.ivector('X') thY = T.ivector('Y') py_x = T.nnet.softmax(self.W[thX] + self.b) prediction = T.argmax(py_x, axis=1) cost = -T.mean(T.log(py_x[T.arange(thY.shape[0]), thY])) grads = T.grad(cost, self.params) dparams = [theano.shared(p.get_value()*0) for p in self.params] self.cost_predict_op = theano.function( inputs=[thX, thY], outputs=[cost, prediction], allow_input_downcast=True, ) updates = [ (p, p + mu*dp - lr*g) for p, dp, g in zip(self.params, dparams, grads) ] + [ (dp, mu*dp - lr*g) for dp, g in zip(dparams, grads) ] train_op = theano.function( inputs=[thX, thY], outputs=[cost, prediction], updates=updates, allow_input_downcast=True ) costs = [] n_batches = N // batch_sz for i in range(epochs): X, Y = shuffle(X, Y) print("epoch:", i) for j in range(n_batches): Xbatch = X[j*batch_sz:(j*batch_sz + batch_sz)] Ybatch = Y[j*batch_sz:(j*batch_sz + batch_sz)] c, p = train_op(Xbatch, Ybatch) costs.append(c) if j % 200 == 0: print( "i:", i, "j:", j, "n_batches:", n_batches, "cost:", c, "error:", np.mean(p != Ybatch) ) plt.plot(costs) plt.show() def score(self, X, Y): _, p = self.cost_predict_op(X, Y) return np.mean(p == Y) def f1_score(self, X, Y): _, p = self.cost_predict_op(X, Y) return f1_score(Y, p, average=None).mean() def get_data(split_sequences=False): if not os.path.exists('chunking'): print("Please create a folder in your local directory called 'chunking'") print("train.txt and test.txt should be stored in there.") print("Please check the comments to get the download link.") exit() elif not os.path.exists('chunking/train.txt'): print("train.txt is not in chunking/train.txt") print("Please check the comments to get the download link.") exit() elif not os.path.exists('chunking/test.txt'): print("test.txt is not in chunking/test.txt") print("Please check the comments to get the download link.") exit() word2idx = {} tag2idx = {} word_idx = 0 tag_idx = 0 Xtrain = [] Ytrain = [] currentX = [] currentY = [] for line in open('chunking/train.txt'): line = line.rstrip() if line: r = line.split() word, tag, _ = r if word not in word2idx: word2idx[word] = word_idx word_idx += 1 currentX.append(word2idx[word]) if tag not in tag2idx: tag2idx[tag] = tag_idx tag_idx += 1 currentY.append(tag2idx[tag]) elif split_sequences: Xtrain.append(currentX) Ytrain.append(currentY) currentX = [] currentY = [] if not split_sequences: Xtrain = currentX Ytrain = currentY # load and score test data Xtest = [] Ytest = [] currentX = [] currentY = [] for line in open('chunking/test.txt'): line = line.rstrip() if line: r = line.split() word, tag, _ = r if word in word2idx: currentX.append(word2idx[word]) else: currentX.append(word_idx) # use this as unknown currentY.append(tag2idx[tag]) elif split_sequences: Xtest.append(currentX) Ytest.append(currentY) currentX = [] currentY = [] if not split_sequences: Xtest = currentX Ytest = currentY return Xtrain, Ytrain, Xtest, Ytest, word2idx def main(): Xtrain, Ytrain, Xtest, Ytest, word2idx = get_data() # convert to numpy arrays Xtrain = np.array(Xtrain) Ytrain = np.array(Ytrain) # convert Xtrain to indicator matrix N = len(Xtrain) V = len(word2idx) + 1 print("vocabulary size:", V) # Xtrain_indicator = np.zeros((N, V)) # Xtrain_indicator[np.arange(N), Xtrain] = 1 # decision tree dt = DecisionTreeClassifier() # without indicator dt.fit(Xtrain.reshape(N, 1), Ytrain) print("dt train score:", dt.score(Xtrain.reshape(N, 1), Ytrain)) p = dt.predict(Xtrain.reshape(N, 1)) print("dt train f1:", f1_score(Ytrain, p, average=None).mean()) # with indicator -- too slow!! # dt.fit(Xtrain_indicator, Ytrain) # print("dt score:", dt.score(Xtrain_indicator, Ytrain)) # train and score model = LogisticRegression() model.fit(Xtrain, Ytrain, V=V) print("training complete") print("lr train score:", model.score(Xtrain, Ytrain)) print("lr train f1:", model.f1_score(Xtrain, Ytrain)) Ntest = len(Xtest) Xtest = np.array(Xtest) Ytest = np.array(Ytest) # convert Xtest to indicator # Xtest_indicator = np.zeros((Ntest, V)) # Xtest_indicator[np.arange(Ntest), Xtest] = 1 # decision tree test score print("dt test score:", dt.score(Xtest.reshape(Ntest, 1), Ytest)) p = dt.predict(Xtest.reshape(Ntest, 1)) print("dt test f1:", f1_score(Ytest, p, average=None).mean()) # print("dt test score:", dt.score(Xtest_indicator, Ytest)) # too slow! # logistic test score -- too slow!! print("lr test score:", model.score(Xtest, Ytest)) print("lr test f1:", model.f1_score(Xtest, Ytest)) if __name__ == '__main__': main() ================================================ FILE: nlp_class2/pos_hmm.py ================================================ # Course URL: # https://deeplearningcourses.com/c/natural-language-processing-with-deep-learning-in-python # https://udemy.com/natural-language-processing-with-deep-learning-in-python from __future__ import print_function, division from builtins import range # Note: you may need to update your version of future # sudo pip install -U future import numpy as np import matplotlib.pyplot as plt import os import sys sys.path.append(os.path.abspath('..')) from hmm_class.hmmd_scaled import HMM from pos_baseline import get_data from sklearn.utils import shuffle from datetime import datetime from sklearn.metrics import f1_score def accuracy(T, Y): # inputs are lists of lists n_correct = 0 n_total = 0 for t, y in zip(T, Y): n_correct += np.sum(t == y) n_total += len(y) return float(n_correct) / n_total def total_f1_score(T, Y): # inputs are lists of lists T = np.concatenate(T) Y = np.concatenate(Y) return f1_score(T, Y, average=None).mean() # def flatten(l): # return [item for sublist in l for item in sublist] def main(smoothing=1e-1): # X = words, Y = POS tags Xtrain, Ytrain, Xtest, Ytest, word2idx = get_data(split_sequences=True) V = len(word2idx) + 1 # find hidden state transition matrix and pi M = max(max(y) for y in Ytrain) + 1 #len(set(flatten(Ytrain))) A = np.ones((M, M))*smoothing # add-one smoothing pi = np.zeros(M) for y in Ytrain: pi[y[0]] += 1 for i in range(len(y)-1): A[y[i], y[i+1]] += 1 # turn it into a probability matrix A /= A.sum(axis=1, keepdims=True) pi /= pi.sum() # find the observation matrix B = np.ones((M, V))*smoothing # add-one smoothing for x, y in zip(Xtrain, Ytrain): for xi, yi in zip(x, y): B[yi, xi] += 1 B /= B.sum(axis=1, keepdims=True) hmm = HMM(M) hmm.pi = pi hmm.A = A hmm.B = B # get predictions Ptrain = [] for x in Xtrain: p = hmm.get_state_sequence(x) Ptrain.append(p) Ptest = [] for x in Xtest: p = hmm.get_state_sequence(x) Ptest.append(p) # print results print("train accuracy:", accuracy(Ytrain, Ptrain)) print("test accuracy:", accuracy(Ytest, Ptest)) print("train f1:", total_f1_score(Ytrain, Ptrain)) print("test f1:", total_f1_score(Ytest, Ptest)) if __name__ == '__main__': main() ================================================ FILE: nlp_class2/pos_ner_keras.py ================================================ # Course URL: # https://deeplearningcourses.com/c/natural-language-processing-with-deep-learning-in-python # https://udemy.com/natural-language-processing-with-deep-learning-in-python from __future__ import print_function, division from builtins import range # Note: you may need to update your version of future # sudo pip install -U future import numpy as np import matplotlib.pyplot as plt import os import sys sys.path.append(os.path.abspath('..')) from pos_baseline import get_data from sklearn.utils import shuffle from util import init_weight from datetime import datetime from sklearn.metrics import f1_score from keras.models import Model from keras.layers import Input, Dense, Embedding, LSTM, GRU from keras.preprocessing.sequence import pad_sequences from keras.preprocessing.text import Tokenizer from keras.optimizers import Adam MAX_VOCAB_SIZE = 20000 MAX_TAGS = 100 def get_data_pos(split_sequences=False): if not os.path.exists('chunking'): print("Please create a folder in your local directory called 'chunking'") print("train.txt and test.txt should be stored in there.") print("Please check the comments to get the download link.") exit() elif not os.path.exists('chunking/train.txt'): print("train.txt is not in chunking/train.txt") print("Please check the comments to get the download link.") exit() elif not os.path.exists('chunking/test.txt'): print("test.txt is not in chunking/test.txt") print("Please check the comments to get the download link.") exit() Xtrain = [] Ytrain = [] currentX = [] currentY = [] for line in open('chunking/train.txt'): line = line.rstrip() if line: r = line.split() word, tag, _ = r currentX.append(word) currentY.append(tag) elif split_sequences: Xtrain.append(currentX) Ytrain.append(currentY) currentX = [] currentY = [] if not split_sequences: Xtrain = currentX Ytrain = currentY # load and score test data Xtest = [] Ytest = [] currentX = [] currentY = [] for line in open('chunking/test.txt'): line = line.rstrip() if line: r = line.split() word, tag, _ = r currentX.append(word) currentY.append(tag) elif split_sequences: Xtest.append(currentX) Ytest.append(currentY) currentX = [] currentY = [] if not split_sequences: Xtest = currentX Ytest = currentY return Xtrain, Ytrain, Xtest, Ytest def get_data_ner(split_sequences=False): Xtrain = [] Ytrain = [] currentX = [] currentY = [] for line in open('ner.txt'): line = line.rstrip() if line: r = line.split() word, tag = r word = word.lower() currentX.append(word) currentY.append(tag) elif split_sequences: Xtrain.append(currentX) Ytrain.append(currentY) currentX = [] currentY = [] if not split_sequences: Xtrain = currentX Ytrain = currentY print("number of samples:", len(Xtrain)) Xtrain, Ytrain = shuffle(Xtrain, Ytrain) Ntest = int(0.3*len(Xtrain)) Xtest = Xtrain[:Ntest] Ytest = Ytrain[:Ntest] Xtrain = Xtrain[Ntest:] Ytrain = Ytrain[Ntest:] return Xtrain, Ytrain, Xtest, Ytest # get the data Xtrain, Ytrain, Xtest, Ytest = get_data_ner(split_sequences=True) # convert the sentences (strings) into integers tokenizer = Tokenizer(num_words=MAX_VOCAB_SIZE) tokenizer.fit_on_texts(Xtrain) Xtrain = tokenizer.texts_to_sequences(Xtrain) Xtest = tokenizer.texts_to_sequences(Xtest) # get word -> integer mapping word2idx = tokenizer.word_index print('Found %s unique tokens.' % len(word2idx)) vocab_size = min(MAX_VOCAB_SIZE, len(word2idx) + 1) # convert the tags (strings) into integers tokenizer2 = Tokenizer(num_words=MAX_TAGS) tokenizer2.fit_on_texts(Ytrain) Ytrain = tokenizer2.texts_to_sequences(Ytrain) Ytest = tokenizer2.texts_to_sequences(Ytest) # get tag -> integer mapping tag2idx = tokenizer2.word_index print('Found %s unique tags.' % len(tag2idx)) num_tags = min(MAX_TAGS, len(tag2idx) + 1) # pad sequences sequence_length = max(len(x) for x in Xtrain + Xtest) Xtrain = pad_sequences(Xtrain, maxlen=sequence_length) Ytrain = pad_sequences(Ytrain, maxlen=sequence_length) Xtest = pad_sequences(Xtest, maxlen=sequence_length) Ytest = pad_sequences(Ytest, maxlen=sequence_length) print("Xtrain.shape:", Xtrain.shape) print("Ytrain.shape:", Ytrain.shape) # one-hot the targets Ytrain_onehot = np.zeros((len(Ytrain), sequence_length, num_tags), dtype='float32') for n, sample in enumerate(Ytrain): for t, tag in enumerate(sample): Ytrain_onehot[n, t, tag] = 1 Ytest_onehot = np.zeros((len(Ytest), sequence_length, num_tags), dtype='float32') for n, sample in enumerate(Ytest): for t, tag in enumerate(sample): Ytest_onehot[n, t, tag] = 1 # training config epochs = 30 batch_size = 32 hidden_layer_size = 10 embedding_dim = 10 # build the model input_ = Input(shape=(sequence_length,)) x = Embedding(vocab_size, embedding_dim)(input_) x = GRU(hidden_layer_size, return_sequences=True)(x) output = Dense(num_tags, activation='softmax')(x) model = Model(input_, output) model.compile( loss='categorical_crossentropy', optimizer=Adam(lr=1e-2), metrics=['accuracy'] ) print('Training model...') r = model.fit( Xtrain, Ytrain_onehot, batch_size=batch_size, epochs=epochs, validation_data=(Xtest, Ytest_onehot) ) # plot some data plt.plot(r.history['loss'], label='loss') plt.plot(r.history['val_loss'], label='val_loss') plt.legend() plt.show() # accuracies plt.plot(r.history['accuracy'], label='acc') plt.plot(r.history['val_accuracy'], label='val_acc') plt.legend() plt.show() ================================================ FILE: nlp_class2/pos_rnn.py ================================================ # Course URL: # https://deeplearningcourses.com/c/natural-language-processing-with-deep-learning-in-python # https://udemy.com/natural-language-processing-with-deep-learning-in-python from __future__ import print_function, division from builtins import range # Note: you may need to update your version of future # sudo pip install -U future import numpy as np import matplotlib.pyplot as plt import theano import theano.tensor as T import os import sys sys.path.append(os.path.abspath('..')) from rnn_class.gru import GRU from pos_baseline import get_data from sklearn.utils import shuffle from util import init_weight from datetime import datetime from sklearn.metrics import f1_score class RNN: def __init__(self, D, hidden_layer_sizes, V, K): self.hidden_layer_sizes = hidden_layer_sizes self.D = D self.V = V self.K = K def fit(self, X, Y, learning_rate=1e-4, mu=0.99, epochs=30, show_fig=True, activation=T.nnet.relu, RecurrentUnit=GRU, normalize=False): D = self.D V = self.V N = len(X) We = init_weight(V, D) self.hidden_layers = [] Mi = D for Mo in self.hidden_layer_sizes: ru = RecurrentUnit(Mi, Mo, activation) self.hidden_layers.append(ru) Mi = Mo Wo = init_weight(Mi, self.K) bo = np.zeros(self.K) self.We = theano.shared(We) self.Wo = theano.shared(Wo) self.bo = theano.shared(bo) self.params = [self.Wo, self.bo] for ru in self.hidden_layers: self.params += ru.params thX = T.ivector('X') thY = T.ivector('Y') Z = self.We[thX] for ru in self.hidden_layers: Z = ru.output(Z) py_x = T.nnet.softmax(Z.dot(self.Wo) + self.bo) testf = theano.function( inputs=[thX], outputs=py_x, ) testout = testf(X[0]) print("py_x.shape:", testout.shape) prediction = T.argmax(py_x, axis=1) cost = -T.mean(T.log(py_x[T.arange(thY.shape[0]), thY])) grads = T.grad(cost, self.params) dparams = [theano.shared(p.get_value()*0) for p in self.params] dWe = theano.shared(self.We.get_value()*0) gWe = T.grad(cost, self.We) dWe_update = mu*dWe - learning_rate*gWe We_update = self.We + dWe_update if normalize: We_update /= We_update.norm(2) updates = [ (p, p + mu*dp - learning_rate*g) for p, dp, g in zip(self.params, dparams, grads) ] + [ (dp, mu*dp - learning_rate*g) for dp, g in zip(dparams, grads) ] + [ (self.We, We_update), (dWe, dWe_update) ] self.cost_predict_op = theano.function( inputs=[thX, thY], outputs=[cost, prediction], allow_input_downcast=True, ) self.train_op = theano.function( inputs=[thX, thY], outputs=[cost, prediction], updates=updates ) costs = [] sequence_indexes = range(N) n_total = sum(len(y) for y in Y) for i in range(epochs): t0 = datetime.now() sequence_indexes = shuffle(sequence_indexes) n_correct = 0 cost = 0 it = 0 for j in sequence_indexes: c, p = self.train_op(X[j], Y[j]) cost += c n_correct += np.sum(p == Y[j]) it += 1 if it % 200 == 0: sys.stdout.write( "j/N: %d/%d correct rate so far: %f, cost so far: %f\r" % (it, N, float(n_correct)/n_total, cost) ) sys.stdout.flush() print( "i:", i, "cost:", cost, "correct rate:", (float(n_correct)/n_total), "time for epoch:", (datetime.now() - t0) ) costs.append(cost) if show_fig: plt.plot(costs) plt.show() def score(self, X, Y): n_total = sum(len(y) for y in Y) n_correct = 0 for x, y in zip(X, Y): _, p = self.cost_predict_op(x, y) n_correct += np.sum(p == y) return float(n_correct) / n_total def f1_score(self, X, Y): P = [] for x, y in zip(X, Y): _, p = self.cost_predict_op(x, y) P.append(p) Y = np.concatenate(Y) P = np.concatenate(P) return f1_score(Y, P, average=None).mean() def flatten(l): return [item for sublist in l for item in sublist] def main(): Xtrain, Ytrain, Xtest, Ytest, word2idx = get_data(split_sequences=True) V = len(word2idx) + 1 K = len(set(flatten(Ytrain)) | set(flatten(Ytest))) rnn = RNN(10, [10], V, K) rnn.fit(Xtrain, Ytrain) print("train score:", rnn.score(Xtrain, Ytrain)) print("test score:", rnn.score(Xtest, Ytest)) print("train f1:", rnn.f1_score(Xtrain, Ytrain)) print("test f1:", rnn.f1_score(Xtest, Ytest)) if __name__ == '__main__': main() ================================================ FILE: nlp_class2/pos_tf.py ================================================ # Course URL: # https://deeplearningcourses.com/c/natural-language-processing-with-deep-learning-in-python # https://udemy.com/natural-language-processing-with-deep-learning-in-python from __future__ import print_function, division from builtins import range # Note: you may need to update your version of future # sudo pip install -U future import numpy as np import matplotlib.pyplot as plt import tensorflow as tf import os import sys sys.path.append(os.path.abspath('..')) from pos_baseline import get_data from sklearn.utils import shuffle from util import init_weight from datetime import datetime from sklearn.metrics import f1_score from tensorflow.contrib.rnn import static_rnn as get_rnn_output from tensorflow.contrib.rnn import BasicRNNCell, GRUCell def get_data(split_sequences=False): if not os.path.exists('chunking'): print("Please create a folder in your local directory called 'chunking'") print("train.txt and test.txt should be stored in there.") print("Please check the comments to get the download link.") exit() elif not os.path.exists('chunking/train.txt'): print("train.txt is not in chunking/train.txt") print("Please check the comments to get the download link.") exit() elif not os.path.exists('chunking/test.txt'): print("test.txt is not in chunking/test.txt") print("Please check the comments to get the download link.") exit() word2idx = {} tag2idx = {} word_idx = 1 tag_idx = 1 Xtrain = [] Ytrain = [] currentX = [] currentY = [] for line in open('chunking/train.txt'): line = line.rstrip() if line: r = line.split() word, tag, _ = r if word not in word2idx: word2idx[word] = word_idx word_idx += 1 currentX.append(word2idx[word]) if tag not in tag2idx: tag2idx[tag] = tag_idx tag_idx += 1 currentY.append(tag2idx[tag]) elif split_sequences: Xtrain.append(currentX) Ytrain.append(currentY) currentX = [] currentY = [] if not split_sequences: Xtrain = currentX Ytrain = currentY # load and score test data Xtest = [] Ytest = [] currentX = [] currentY = [] for line in open('chunking/test.txt'): line = line.rstrip() if line: r = line.split() word, tag, _ = r if word in word2idx: currentX.append(word2idx[word]) else: currentX.append(word_idx) # use this as unknown currentY.append(tag2idx[tag]) elif split_sequences: Xtest.append(currentX) Ytest.append(currentY) currentX = [] currentY = [] if not split_sequences: Xtest = currentX Ytest = currentY return Xtrain, Ytrain, Xtest, Ytest, word2idx def flatten(l): return [item for sublist in l for item in sublist] # get the data Xtrain, Ytrain, Xtest, Ytest, word2idx = get_data(split_sequences=True) V = len(word2idx) + 2 # vocab size (+1 for unknown, +1 b/c start from 1) K = len(set(flatten(Ytrain)) | set(flatten(Ytest))) + 1 # num classes # training config epochs = 20 learning_rate = 1e-2 mu = 0.99 batch_size = 32 hidden_layer_size = 10 embedding_dim = 10 sequence_length = max(len(x) for x in Xtrain + Xtest) # pad sequences Xtrain = tf.keras.preprocessing.sequence.pad_sequences(Xtrain, maxlen=sequence_length) Ytrain = tf.keras.preprocessing.sequence.pad_sequences(Ytrain, maxlen=sequence_length) Xtest = tf.keras.preprocessing.sequence.pad_sequences(Xtest, maxlen=sequence_length) Ytest = tf.keras.preprocessing.sequence.pad_sequences(Ytest, maxlen=sequence_length) print("Xtrain.shape:", Xtrain.shape) print("Ytrain.shape:", Ytrain.shape) # inputs inputs = tf.placeholder(tf.int32, shape=(None, sequence_length)) targets = tf.placeholder(tf.int32, shape=(None, sequence_length)) num_samples = tf.shape(inputs)[0] # useful for later # embedding We = np.random.randn(V, embedding_dim).astype(np.float32) # output layer Wo = init_weight(hidden_layer_size, K).astype(np.float32) bo = np.zeros(K).astype(np.float32) # make them tensorflow variables tfWe = tf.Variable(We) tfWo = tf.Variable(Wo) tfbo = tf.Variable(bo) # make the rnn unit rnn_unit = GRUCell(num_units=hidden_layer_size, activation=tf.nn.relu) # get the output x = tf.nn.embedding_lookup(tfWe, inputs) # converts x from a tensor of shape N x T x M # into a list of length T, where each element is a tensor of shape N x M x = tf.unstack(x, sequence_length, 1) # get the rnn output outputs, states = get_rnn_output(rnn_unit, x, dtype=tf.float32) # outputs are now of size (T, N, M) # so make it (N, T, M) outputs = tf.transpose(outputs, (1, 0, 2)) outputs = tf.reshape(outputs, (sequence_length*num_samples, hidden_layer_size)) # NT x M # final dense layer logits = tf.matmul(outputs, tfWo) + tfbo # NT x K predictions = tf.argmax(logits, 1) predict_op = tf.reshape(predictions, (num_samples, sequence_length)) labels_flat = tf.reshape(targets, [-1]) cost_op = tf.reduce_mean( tf.nn.sparse_softmax_cross_entropy_with_logits( logits=logits, labels=labels_flat ) ) train_op = tf.train.AdamOptimizer(learning_rate).minimize(cost_op) # init stuff sess = tf.InteractiveSession() init = tf.global_variables_initializer() sess.run(init) # training loop costs = [] n_batches = len(Ytrain) // batch_size for i in range(epochs): n_total = 0 n_correct = 0 t0 = datetime.now() Xtrain, Ytrain = shuffle(Xtrain, Ytrain) cost = 0 for j in range(n_batches): x = Xtrain[j*batch_size:(j+1)*batch_size] y = Ytrain[j*batch_size:(j+1)*batch_size] # get the cost, predictions, and perform a gradient descent step c, p, _ = sess.run( (cost_op, predict_op, train_op), feed_dict={inputs: x, targets: y}) cost += c # calculate the accuracy for yi, pi in zip(y, p): # we don't care about the padded entries so ignore them yii = yi[yi > 0] pii = pi[yi > 0] n_correct += np.sum(yii == pii) n_total += len(yii) # print stuff out periodically if j % 10 == 0: sys.stdout.write( "j/N: %d/%d correct rate so far: %f, cost so far: %f\r" % (j, n_batches, float(n_correct)/n_total, cost) ) sys.stdout.flush() # get test acc. too p = sess.run(predict_op, feed_dict={inputs: Xtest, targets: Ytest}) n_test_correct = 0 n_test_total = 0 for yi, pi in zip(Ytest, p): yii = yi[yi > 0] pii = pi[yi > 0] n_test_correct += np.sum(yii == pii) n_test_total += len(yii) test_acc = float(n_test_correct) / n_test_total print( "i:", i, "cost:", "%.4f" % cost, "train acc:", "%.4f" % (float(n_correct)/n_total), "test acc:", "%.4f" % test_acc, "time for epoch:", (datetime.now() - t0) ) costs.append(cost) plt.plot(costs) plt.show() ================================================ FILE: nlp_class2/pretrained_glove.py ================================================ # https://deeplearningcourses.com/c/data-science-natural-language-processing-in-python # https://www.udemy.com/data-science-natural-language-processing-in-python # Author: http://lazyprogrammer.me from __future__ import print_function, division from future.utils import iteritems from builtins import range # Note: you may need to update your version of future # sudo pip install -U future # WHERE TO GET THE VECTORS: # GloVe: https://nlp.stanford.edu/projects/glove/ # Direct link: http://nlp.stanford.edu/data/glove.6B.zip import numpy as np from sklearn.metrics.pairwise import pairwise_distances def dist1(a, b): return np.linalg.norm(a - b) def dist2(a, b): return 1 - a.dot(b) / (np.linalg.norm(a) * np.linalg.norm(b)) # pick a distance type dist, metric = dist2, 'cosine' # dist, metric = dist1, 'euclidean' ## more intuitive # def find_analogies(w1, w2, w3): # for w in (w1, w2, w3): # if w not in word2vec: # print("%s not in dictionary" % w) # return # king = word2vec[w1] # man = word2vec[w2] # woman = word2vec[w3] # v0 = king - man + woman # min_dist = float('inf') # best_word = '' # for word, v1 in iteritems(word2vec): # if word not in (w1, w2, w3): # d = dist(v0, v1) # if d < min_dist: # min_dist = d # best_word = word # print(w1, "-", w2, "=", best_word, "-", w3) ## faster def find_analogies(w1, w2, w3): for w in (w1, w2, w3): if w not in word2vec: print("%s not in dictionary" % w) return king = word2vec[w1] man = word2vec[w2] woman = word2vec[w3] v0 = king - man + woman distances = pairwise_distances(v0.reshape(1, D), embedding, metric=metric).reshape(V) idxs = distances.argsort()[:4] for idx in idxs: word = idx2word[idx] if word not in (w1, w2, w3): best_word = word break print(w1, "-", w2, "=", best_word, "-", w3) def nearest_neighbors(w, n=5): if w not in word2vec: print("%s not in dictionary:" % w) return v = word2vec[w] distances = pairwise_distances(v.reshape(1, D), embedding, metric=metric).reshape(V) idxs = distances.argsort()[1:n+1] print("neighbors of: %s" % w) for idx in idxs: print("\t%s" % idx2word[idx]) # load in pre-trained word vectors print('Loading word vectors...') word2vec = {} embedding = [] idx2word = [] with open('../large_files/glove.6B/glove.6B.50d.txt', encoding='utf-8') as f: # is just a space-separated text file in the format: # word vec[0] vec[1] vec[2] ... for line in f: values = line.split() word = values[0] vec = np.asarray(values[1:], dtype='float32') word2vec[word] = vec embedding.append(vec) idx2word.append(word) print('Found %s word vectors.' % len(word2vec)) embedding = np.array(embedding) V, D = embedding.shape find_analogies('king', 'man', 'woman') find_analogies('france', 'paris', 'london') find_analogies('france', 'paris', 'rome') find_analogies('paris', 'france', 'italy') find_analogies('france', 'french', 'english') find_analogies('japan', 'japanese', 'chinese') find_analogies('japan', 'japanese', 'italian') find_analogies('japan', 'japanese', 'australian') find_analogies('december', 'november', 'june') find_analogies('miami', 'florida', 'texas') find_analogies('einstein', 'scientist', 'painter') find_analogies('china', 'rice', 'bread') find_analogies('man', 'woman', 'she') find_analogies('man', 'woman', 'aunt') find_analogies('man', 'woman', 'sister') find_analogies('man', 'woman', 'wife') find_analogies('man', 'woman', 'actress') find_analogies('man', 'woman', 'mother') find_analogies('heir', 'heiress', 'princess') find_analogies('nephew', 'niece', 'aunt') find_analogies('france', 'paris', 'tokyo') find_analogies('france', 'paris', 'beijing') find_analogies('february', 'january', 'november') find_analogies('france', 'paris', 'rome') find_analogies('paris', 'france', 'italy') nearest_neighbors('king') nearest_neighbors('france') nearest_neighbors('japan') nearest_neighbors('einstein') nearest_neighbors('woman') nearest_neighbors('nephew') nearest_neighbors('february') nearest_neighbors('rome') ================================================ FILE: nlp_class2/pretrained_w2v.py ================================================ # https://deeplearningcourses.com/c/data-science-natural-language-processing-in-python # https://www.udemy.com/data-science-natural-language-processing-in-python # Author: http://lazyprogrammer.me from __future__ import print_function, division from future.utils import iteritems from builtins import range # Note: you may need to update your version of future # sudo pip install -U future from gensim.models import KeyedVectors # warning: takes quite awhile # https://code.google.com/archive/p/word2vec/ # direct link: https://drive.google.com/file/d/0B7XkCwpI5KDYNlNUTTlSS21pQmM/edit?usp=sharing # 3 million words and phrases # D = 300 word_vectors = KeyedVectors.load_word2vec_format( '../large_files/GoogleNews-vectors-negative300.bin', binary=True ) # convenience # result looks like: # [('athens', 0.6001024842262268), # ('albert', 0.5729557275772095), # ('holmes', 0.569324254989624), # ('donnie', 0.5690680742263794), # ('italy', 0.5673537254333496), # ('toni', 0.5666348338127136), # ('spain', 0.5661854147911072), # ('jh', 0.5661597847938538), # ('pablo', 0.5631559491157532), # ('malta', 0.5620371103286743)] def find_analogies(w1, w2, w3): r = word_vectors.most_similar(positive=[w1, w3], negative=[w2]) print("%s - %s = %s - %s" % (w1, w2, r[0][0], w3)) def nearest_neighbors(w): r = word_vectors.most_similar(positive=[w]) print("neighbors of: %s" % w) for word, score in r: print("\t%s" % word) find_analogies('king', 'man', 'woman') find_analogies('france', 'paris', 'london') find_analogies('france', 'paris', 'rome') find_analogies('paris', 'france', 'italy') find_analogies('france', 'french', 'english') find_analogies('japan', 'japanese', 'chinese') find_analogies('japan', 'japanese', 'italian') find_analogies('japan', 'japanese', 'australian') find_analogies('december', 'november', 'june') find_analogies('miami', 'florida', 'texas') find_analogies('einstein', 'scientist', 'painter') find_analogies('china', 'rice', 'bread') find_analogies('man', 'woman', 'she') find_analogies('man', 'woman', 'aunt') find_analogies('man', 'woman', 'sister') find_analogies('man', 'woman', 'wife') find_analogies('man', 'woman', 'actress') find_analogies('man', 'woman', 'mother') find_analogies('heir', 'heiress', 'princess') find_analogies('nephew', 'niece', 'aunt') find_analogies('france', 'paris', 'tokyo') find_analogies('france', 'paris', 'beijing') find_analogies('february', 'january', 'november') find_analogies('france', 'paris', 'rome') find_analogies('paris', 'france', 'italy') nearest_neighbors('king') nearest_neighbors('france') nearest_neighbors('japan') nearest_neighbors('einstein') nearest_neighbors('woman') nearest_neighbors('nephew') nearest_neighbors('february') nearest_neighbors('rome') ================================================ FILE: nlp_class2/recursive_tensorflow.py ================================================ # Course URL: # https://deeplearningcourses.com/c/natural-language-processing-with-deep-learning-in-python # https://udemy.com/natural-language-processing-with-deep-learning-in-python # data is from: http://nlp.stanford.edu/sentiment/ from __future__ import print_function, division from builtins import range # Note: you may need to update your version of future # sudo pip install -U future import sys import tensorflow as tf import numpy as np import matplotlib.pyplot as plt from sklearn.utils import shuffle from datetime import datetime from util import init_weight, get_ptb_data, display_tree if tf.__version__.startswith('2'): tf.compat.v1.disable_eager_execution() def get_labels(tree): # must be returned in the same order as tree logits are returned # post-order traversal if tree is None: return [] return get_labels(tree.left) + get_labels(tree.right) + [tree.label] class TNN: def __init__(self, V, D, K, activation): self.D = D self.f = activation # word embedding We = init_weight(V, D) # linear terms W1 = init_weight(D, D) W2 = init_weight(D, D) # bias bh = np.zeros(D) # output layer Wo = init_weight(D, K) bo = np.zeros(K) # make them tensorflow variables self.We = tf.Variable(We.astype(np.float32)) self.W1 = tf.Variable(W1.astype(np.float32)) self.W2 = tf.Variable(W2.astype(np.float32)) self.bh = tf.Variable(bh.astype(np.float32)) self.Wo = tf.Variable(Wo.astype(np.float32)) self.bo = tf.Variable(bo.astype(np.float32)) self.params = [self.We, self.W1, self.W2, self.Wo] def fit(self, trees, lr=1e-1, mu=0.9, reg=0.1, epochs=5): train_ops = [] costs = [] predictions = [] all_labels = [] i = 0 N = len(trees) print("Compiling ops") for t in trees: i += 1 sys.stdout.write("%d/%d\r" % (i, N)) sys.stdout.flush() logits = self.get_output(t) labels = get_labels(t) all_labels.append(labels) cost = self.get_cost(logits, labels, reg) costs.append(cost) prediction = tf.argmax(input=logits, axis=1) predictions.append(prediction) train_op = tf.compat.v1.train.MomentumOptimizer(lr, mu).minimize(cost) train_ops.append(train_op) # save for later so we don't have to recompile self.predictions = predictions self.all_labels = all_labels self.saver = tf.compat.v1.train.Saver() init = tf.compat.v1.initialize_all_variables() actual_costs = [] per_epoch_costs = [] correct_rates = [] with tf.compat.v1.Session() as session: session.run(init) for i in range(epochs): t0 = datetime.now() train_ops, costs, predictions, all_labels = shuffle(train_ops, costs, predictions, all_labels) epoch_cost = 0 n_correct = 0 n_total = 0 j = 0 N = len(train_ops) for train_op, cost, prediction, labels in zip(train_ops, costs, predictions, all_labels): _, c, p = session.run([train_op, cost, prediction]) epoch_cost += c actual_costs.append(c) n_correct += np.sum(p == labels) n_total += len(labels) j += 1 if j % 10 == 0: sys.stdout.write("j: %d, N: %d, c: %f\r" % (j, N, c)) sys.stdout.flush() print( "epoch:", i, "cost:", epoch_cost, "elapsed time:", (datetime.now() - t0) ) per_epoch_costs.append(epoch_cost) correct_rates.append(n_correct / float(n_total)) self.saver.save(session, "recursive.ckpt") plt.plot(actual_costs) plt.title("cost per train_op call") plt.show() plt.plot(per_epoch_costs) plt.title("per epoch costs") plt.show() plt.plot(correct_rates) plt.title("correct rates") plt.show() def get_cost(self, logits, labels, reg): cost = tf.reduce_mean( input_tensor=tf.nn.sparse_softmax_cross_entropy_with_logits( logits=logits, labels=labels ) ) rcost = sum(tf.nn.l2_loss(p) for p in self.params) cost += reg*rcost return cost # list_of_logits is an output! # it is added to using post-order traversal def get_output_recursive(self, tree, list_of_logits, is_root=True): if tree.word is not None: # this is a leaf node x = tf.nn.embedding_lookup(params=self.We, ids=[tree.word]) else: # this node has children x1 = self.get_output_recursive(tree.left, list_of_logits, is_root=False) x2 = self.get_output_recursive(tree.right, list_of_logits, is_root=False) x = self.f( tf.matmul(x1, self.W1) + tf.matmul(x2, self.W2) + self.bh) logits = tf.matmul(x, self.Wo) + self.bo list_of_logits.append(logits) return x def get_output(self, tree): logits = [] # try: self.get_output_recursive(tree, logits) # except Exception as e: # display_tree(tree) # raise e return tf.concat(logits, 0) def score(self, trees): if trees is None: predictions = self.predictions all_labels = self.all_labels else: # just build and run the predict_op for each tree # and accumulate the total predictions = [] all_labels = [] i = 0 N = len(trees) print("Compiling ops") for t in trees: i += 1 sys.stdout.write("%d/%d\r" % (i, N)) sys.stdout.flush() logits = self.get_output(t) labels = get_labels(t) all_labels.append(labels) prediction = tf.argmax(input=logits, axis=1) predictions.append(prediction) n_correct = 0 n_total = 0 with tf.compat.v1.Session() as session: self.saver.restore(session, "recursive.ckpt") for prediction, y in zip(predictions, all_labels): p = session.run(prediction) n_correct += (p[-1] == y[-1]) # we only care about the root n_total += len(y) return float(n_correct) / n_total def main(): train, test, word2idx = get_ptb_data() train = train[:100] test = test[:100] V = len(word2idx) D = 80 K = 5 model = TNN(V, D, K, tf.nn.relu) model.fit(train) print("train accuracy:", model.score(None)) print("test accuracy:", model.score(test)) if __name__ == '__main__': main() ================================================ FILE: nlp_class2/recursive_theano.py ================================================ # Course URL: # https://deeplearningcourses.com/c/natural-language-processing-with-deep-learning-in-python # https://udemy.com/natural-language-processing-with-deep-learning-in-python from __future__ import print_function, division from builtins import range # Note: you may need to update your version of future # sudo pip install -U future import sys import numpy as np import matplotlib.pyplot as plt import theano import theano.tensor as T from sklearn.utils import shuffle from util import init_weight, get_ptb_data, display_tree from datetime import datetime def adagrad(cost, params, lr, eps=1e-10): grads = T.grad(cost, params) caches = [theano.shared(np.ones_like(p.get_value())) for p in params] new_caches = [c + g*g for c, g in zip(caches, grads)] c_update = [(c, new_c) for c, new_c in zip(caches, new_caches)] g_update = [ (p, p - lr*g / T.sqrt(new_c + eps)) for p, new_c, g in zip(params, new_caches, grads) ] updates = c_update + g_update return updates class RecursiveNN: def __init__(self, V, D, K): self.V = V self.D = D self.K = K def fit(self, trees, learning_rate=3*1e-3, mu=0.99, reg=1e-4, epochs=15, activation=T.nnet.relu, train_inner_nodes=False): D = self.D V = self.V K = self.K self.f = activation N = len(trees) We = init_weight(V, D) Wh = np.random.randn(2, D, D) / np.sqrt(2 + D + D) bh = np.zeros(D) Wo = init_weight(D, K) bo = np.zeros(K) self.We = theano.shared(We) self.Wh = theano.shared(Wh) self.bh = theano.shared(bh) self.Wo = theano.shared(Wo) self.bo = theano.shared(bo) self.params = [self.We, self.Wh, self.bh, self.Wo, self.bo] words = T.ivector('words') parents = T.ivector('parents') relations = T.ivector('relations') labels = T.ivector('labels') def recurrence(n, hiddens, words, parents, relations): w = words[n] # any non-word will have index -1 # if T.ge(w, 0): # hiddens = T.set_subtensor(hiddens[n], self.We[w]) # else: # hiddens = T.set_subtensor(hiddens[n], self.f(hiddens[n] + self.bh)) hiddens = T.switch( T.ge(w, 0), T.set_subtensor(hiddens[n], self.We[w]), T.set_subtensor(hiddens[n], self.f(hiddens[n] + self.bh)) ) r = relations[n] # 0 = is_left, 1 = is_right p = parents[n] # parent idx # if T.ge(p, 0): # # root will have parent -1 # hiddens = T.set_subtensor(hiddens[p], hiddens[p] + hiddens[n].dot(self.Wh[r])) hiddens = T.switch( T.ge(p, 0), T.set_subtensor(hiddens[p], hiddens[p] + hiddens[n].dot(self.Wh[r])), hiddens ) return hiddens hiddens = T.zeros((words.shape[0], D)) h, _ = theano.scan( fn=recurrence, outputs_info=[hiddens], n_steps=words.shape[0], sequences=T.arange(words.shape[0]), non_sequences=[words, parents, relations], ) # shape of h that is returned by scan is TxTxD # because hiddens is TxD, and it does the recurrence T times # technically this stores T times too much data py_x = T.nnet.softmax(h[-1].dot(self.Wo) + self.bo) prediction = T.argmax(py_x, axis=1) rcost = reg*T.mean([(p*p).sum() for p in self.params]) if train_inner_nodes: # won't work for binary classification cost = -T.mean(T.log(py_x[T.arange(labels.shape[0]), labels])) + rcost else: # print "K is:", K # premean = T.log(py_x[-1]) # target = T.zeros(K) # target = T.set_subtensor(target[labels[-1]], 1) # cost = -T.mean(target * premean) cost = -T.mean(T.log(py_x[-1, labels[-1]])) + rcost # grads = T.grad(cost, self.params) # dparams = [theano.shared(p.get_value()*0) for p in self.params] # updates = [ # (p, p + mu*dp - learning_rate*g) for p, dp, g in zip(self.params, dparams, grads) # ] + [ # (dp, mu*dp - learning_rate*g) for dp, g in zip(dparams, grads) # ] updates = adagrad(cost, self.params, lr=8e-3) self.cost_predict_op = theano.function( inputs=[words, parents, relations, labels], outputs=[cost, prediction], allow_input_downcast=True, ) self.train_op = theano.function( inputs=[words, parents, relations, labels], outputs=[h, cost, prediction], updates=updates ) costs = [] sequence_indexes = range(N) if train_inner_nodes: n_total = sum(len(words) for words, _, _, _ in trees) else: n_total = N for i in range(epochs): t0 = datetime.now() sequence_indexes = shuffle(sequence_indexes) n_correct = 0 cost = 0 it = 0 for j in sequence_indexes: words, par, rel, lab = trees[j] _, c, p = self.train_op(words, par, rel, lab) if np.isnan(c): print("Cost is nan! Let's stop here. \ Why don't you try decreasing the learning rate?") exit() cost += c if train_inner_nodes: n_correct += np.sum(p == lab) else: n_correct += (p[-1] == lab[-1]) it += 1 if it % 1 == 0: sys.stdout.write("j/N: %d/%d correct rate so far: %f, cost so far: %f\r" % (it, N, float(n_correct)/n_total, cost)) sys.stdout.flush() print( "i:", i, "cost:", cost, "correct rate:", (float(n_correct)/n_total), "time for epoch:", (datetime.now() - t0) ) costs.append(cost) plt.plot(costs) plt.draw() # don't block later code def score(self, trees, idx2word=None): n_total = len(trees) n_correct = 0 for words, par, rel, lab in trees: _, p = self.cost_predict_op(words, par, rel, lab) n_correct += (p[-1] == lab[-1]) # if idx2word: # print_sentence(words, idx2word) # print("label:", lab[-1], "pred:", p[-1]) print("n_correct:", n_correct, "n_total:", n_total, end=" ") return float(n_correct) / n_total def add_idx_to_tree(tree, current_idx): # post-order labeling of tree nodes if tree is None: return current_idx current_idx = add_idx_to_tree(tree.left, current_idx) current_idx = add_idx_to_tree(tree.right, current_idx) tree.idx = current_idx current_idx += 1 return current_idx def tree2list(tree, parent_idx, is_binary=False, is_left=False, is_right=False): if tree is None: return [], [], [], [] w = tree.word if tree.word is not None else -1 if is_left: r = 0 elif is_right: r = 1 else: r = -1 words_left, parents_left, relations_left, labels_left = tree2list(tree.left, tree.idx, is_binary, is_left=True) words_right, parents_right, relations_right, labels_right = tree2list(tree.right, tree.idx, is_binary, is_right=True) words = words_left + words_right + [w] parents = parents_left + parents_right + [parent_idx] relations = relations_left + relations_right + [r] if is_binary: if tree.label > 2: label = 1 elif tree.label < 2: label = 0 else: label = -1 # we will eventually filter these out else: label = tree.label labels = labels_left + labels_right + [label] return words, parents, relations, labels # def get_sentence(tree): # if tree is None: # return [] # w = [tree.word] if tree.word is not None else [] # return get_sentence(tree.left) + get_sentence(tree.right) + w def print_sentence(words, idx2word): # sentence = ' '.join(get_sentence(tree)) # print(sentence, "label:", tree.label) for w in words: if w >= 0: print(idx2word[w], end=" ") def main(is_binary=True): train, test, word2idx = get_ptb_data() for t in train: add_idx_to_tree(t, 0) train = [tree2list(t, -1, is_binary) for t in train] if is_binary: train = [t for t in train if t[3][-1] >= 0] # for filtering binary labels # sanity check # check that last node has no parent # for t in train: # assert(t[1][-1] == -1 and t[2][-1] == -1) for t in test: add_idx_to_tree(t, 0) test = [tree2list(t, -1, is_binary) for t in test] if is_binary: test = [t for t in test if t[3][-1] >= 0] # for filtering binary labels train = shuffle(train) # train = train[:2000] n_pos = sum(t[3][-1] for t in train) # print("num pos train:", n_pos) # idx2word = {v:k for k, v in word2idx.items()} # for i in range(4): # words, _, _, labels = train[i] # print_sentence(words, idx2word) # print("label:", labels[-1]) test = shuffle(test) test = test[:1000] V = len(word2idx) print("vocab size:", V) D = 10 K = 2 if is_binary else 5 model = RecursiveNN(V, D, K) model.fit(train, learning_rate=1e-2, reg=1e-2, mu=0, epochs=20, activation=T.tanh, train_inner_nodes=False) print("train accuracy:", model.score(train)) print("test accuracy:", model.score(test)) # make sure program doesn't end until we close the plot plt.show() if __name__ == '__main__': main() ================================================ FILE: nlp_class2/rntn_tensorflow.py ================================================ # Course URL: # https://deeplearningcourses.com/c/natural-language-processing-with-deep-learning-in-python # https://udemy.com/natural-language-processing-with-deep-learning-in-python # data is from: http://nlp.stanford.edu/sentiment/ from __future__ import print_function, division from builtins import range # Note: you may need to update your version of future # sudo pip install -U future import sys import tensorflow as tf import numpy as np import matplotlib.pyplot as plt from sklearn.utils import shuffle from util import init_weight, get_ptb_data, display_tree def tensor_mul(d, x1, A, x2): A = tf.reshape(A, [d, d*d]) # (1 x d) x (d x dd) tmp = tf.matmul(x1, A) # (1 x dd) tmp = tf.reshape(tmp, [d, d]) # (d x d) tmp = tf.matmul(tmp, tf.transpose(x2)) # (d x 1) return tf.reshape(tmp, [1, d]) def get_labels(tree): # must be returned in the same order as tree logits are returned # post-order traversal if tree is None: return [] return get_labels(tree.left) + get_labels(tree.right) + [tree.label] class RNTN: def __init__(self, V, D, K, activation): self.D = D self.f = activation # word embedding We = init_weight(V, D) # quadratic terms W11 = np.random.randn(D, D, D) / np.sqrt(3*D) W22 = np.random.randn(D, D, D) / np.sqrt(3*D) W12 = np.random.randn(D, D, D) / np.sqrt(3*D) # linear terms W1 = init_weight(D, D) W2 = init_weight(D, D) # bias bh = np.zeros(D) # output layer Wo = init_weight(D, K) bo = np.zeros(K) # make them tensorflow variables self.We = tf.Variable(We.astype(np.float32)) self.W11 = tf.Variable(W11.astype(np.float32)) self.W22 = tf.Variable(W22.astype(np.float32)) self.W12 = tf.Variable(W12.astype(np.float32)) self.W1 = tf.Variable(W1.astype(np.float32)) self.W2 = tf.Variable(W2.astype(np.float32)) self.bh = tf.Variable(bh.astype(np.float32)) self.Wo = tf.Variable(Wo.astype(np.float32)) self.bo = tf.Variable(bo.astype(np.float32)) self.params = [self.We, self.W11, self.W22, self.W12, self.W1, self.W2, self.Wo] def fit(self, trees, lr=1e-2, mu=0.9, reg=1e-1, epochs=5): train_ops = [] costs = [] predictions = [] all_labels = [] i = 0 N = len(trees) print("Compiling ops") for t in trees: i += 1 sys.stdout.write("%d/%d\r" % (i, N)) sys.stdout.flush() logits = self.get_output(t) labels = get_labels(t) all_labels.append(labels) cost = self.get_cost(logits, labels, reg) costs.append(cost) prediction = tf.argmax(logits, 1) predictions.append(prediction) train_op = tf.train.MomentumOptimizer(lr, mu).minimize(cost) train_ops.append(train_op) # save for later so we don't have to recompile if we call score self.predictions = predictions self.all_labels = all_labels self.saver = tf.train.Saver() init = tf.initialize_all_variables() actual_costs = [] per_epoch_costs = [] correct_rates = [] with tf.Session() as session: session.run(init) for i in range(epochs): train_ops, costs, predictions, all_labels = shuffle(train_ops, costs, predictions, all_labels) epoch_cost = 0 n_correct = 0 n_total = 0 j = 0 N = len(train_ops) for train_op, cost, prediction, labels in zip(train_ops, costs, predictions, all_labels): _, c, p = session.run([train_op, cost, prediction]) epoch_cost += c actual_costs.append(c) n_correct += np.sum(p == labels) n_total += len(labels) j += 1 if j % 10 == 0: sys.stdout.write("j: %d, N: %d, c: %f\r" % (j, N, c)) sys.stdout.flush() if np.isnan(c): exit() per_epoch_costs.append(epoch_cost) correct_rates.append(n_correct / float(n_total)) self.save_path = self.saver.save(session, "tf_model.ckpt") plt.plot(actual_costs) plt.title("cost per train_op call") plt.show() plt.plot(per_epoch_costs) plt.title("per epoch costs") plt.show() plt.plot(correct_rates) plt.title("correct rates") plt.show() def get_cost(self, logits, labels, reg): cost = tf.reduce_mean(tf.nn.sparse_softmax_cross_entropy_with_logits(logits, labels)) rcost = sum(tf.nn.l2_loss(p) for p in self.params) cost += reg*rcost return cost # list_of_logits is an output! # it is added to using post-order traversal def get_output_recursive(self, tree, list_of_logits, is_root=True): if tree.word is not None: # this is a leaf node x = tf.nn.embedding_lookup(self.We, [tree.word]) else: # if tree.left is None or tree.right is None: # print("This tree node has no word but also has no children:") # display_tree(tree) # print("") # this node has children x1 = self.get_output_recursive(tree.left, list_of_logits, is_root=False) x2 = self.get_output_recursive(tree.right, list_of_logits, is_root=False) x = self.f( tensor_mul(self.D, x1, self.W11, x1) + tensor_mul(self.D, x2, self.W22, x2) + tensor_mul(self.D, x1, self.W12, x2) + tf.matmul(x1, self.W1) + tf.matmul(x2, self.W2) + self.bh) logits = tf.matmul(x, self.Wo) + self.bo list_of_logits.append(logits) return x def get_output(self, tree): logits = [] try: self.get_output_recursive(tree, logits) except Exception as e: display_tree(tree) raise e return tf.concat(0, logits) def score(self, trees): if trees is None: predictions = self.predictions all_labels = self.all_labels else: # just build and run the predict_op for each tree # and accumulate the total predictions = [] all_labels = [] i = 0 N = len(trees) print("Compiling ops") for t in trees: i += 1 sys.stdout.write("%d/%d\r" % (i, N)) sys.stdout.flush() logits = self.get_output(t) labels = get_labels(t) all_labels.append(labels) prediction = tf.argmax(logits, 1) predictions.append(prediction) n_correct = 0 n_total = 0 with tf.Session() as session: self.saver.restore(session, "tf_model.ckpt") for prediction, y in zip(predictions, all_labels): p = session.run(prediction) # print("pred:", p) # print("label:", y) # n_correct += np.sum(p == y) n_correct += (p[-1] == y[-1]) # we only care about the root n_total += len(y) return float(n_correct) / n_total def main(): train, test, word2idx = get_ptb_data() train = train[:100] test = test[:100] V = len(word2idx) D = 80 K = 5 model = RNTN(V, D, K, tf.nn.relu) model.fit(train) print("train accuracy:", model.score(None)) print("test accuracy:", model.score(test)) if __name__ == '__main__': main() ================================================ FILE: nlp_class2/rntn_tensorflow_rnn.py ================================================ # Course URL: # https://deeplearningcourses.com/c/natural-language-processing-with-deep-learning-in-python # https://udemy.com/natural-language-processing-with-deep-learning-in-python from __future__ import print_function, division from builtins import range # Note: you may need to update your version of future # sudo pip install -U future import sys import numpy as np import matplotlib.pyplot as plt import tensorflow as tf from sklearn.utils import shuffle from util import init_weight, get_ptb_data, display_tree from datetime import datetime from sklearn.metrics import f1_score if tf.__version__.startswith('2'): tf.compat.v1.disable_eager_execution() class RecursiveNN: def __init__(self, V, D, K, activation=tf.tanh): self.V = V self.D = D self.K = K self.f = activation def fit(self, trees, test_trees, reg=1e-3, epochs=8, train_inner_nodes=False): D = self.D V = self.V K = self.K N = len(trees) We = init_weight(V, D) W11 = np.random.randn(D, D, D) / np.sqrt(3*D) W22 = np.random.randn(D, D, D) / np.sqrt(3*D) W12 = np.random.randn(D, D, D) / np.sqrt(3*D) W1 = init_weight(D, D) W2 = init_weight(D, D) bh = np.zeros(D) Wo = init_weight(D, K) bo = np.zeros(K) self.We = tf.Variable(We.astype(np.float32)) self.W11 = tf.Variable(W11.astype(np.float32)) self.W22 = tf.Variable(W22.astype(np.float32)) self.W12 = tf.Variable(W12.astype(np.float32)) self.W1 = tf.Variable(W1.astype(np.float32)) self.W2 = tf.Variable(W2.astype(np.float32)) self.bh = tf.Variable(bh.astype(np.float32)) self.Wo = tf.Variable(Wo.astype(np.float32)) self.bo = tf.Variable(bo.astype(np.float32)) self.weights = [self.We, self.W11, self.W22, self.W12, self.W1, self.W2, self.Wo] words = tf.compat.v1.placeholder(tf.int32, shape=(None,), name='words') left_children = tf.compat.v1.placeholder(tf.int32, shape=(None,), name='left_children') right_children = tf.compat.v1.placeholder(tf.int32, shape=(None,), name='right_children') labels = tf.compat.v1.placeholder(tf.int32, shape=(None,), name='labels') # save for later self.words = words self.left = left_children self.right = right_children self.labels = labels def dot1(a, B): return tf.tensordot(a, B, axes=[[0], [1]]) def dot2(B, a): return tf.tensordot(B, a, axes=[[1], [0]]) def recursive_net_transform(hiddens, n): h_left = hiddens.read(left_children[n]) h_right = hiddens.read(right_children[n]) return self.f( dot1(h_left, dot2(self.W11, h_left)) + dot1(h_right, dot2(self.W22, h_right)) + dot1(h_left, dot2(self.W12, h_right)) + dot1(h_left, self.W1) + dot1(h_right, self.W2) + self.bh ) def recurrence(hiddens, n): w = words[n] # any non-word will have index -1 h_n = tf.cond( pred=w >= 0, true_fn=lambda: tf.nn.embedding_lookup(params=self.We, ids=w), false_fn=lambda: recursive_net_transform(hiddens, n) ) hiddens = hiddens.write(n, h_n) n = tf.add(n, 1) return hiddens, n def condition(hiddens, n): # loop should continue while n < len(words) return tf.less(n, tf.shape(input=words)[0]) hiddens = tf.TensorArray( tf.float32, size=0, dynamic_size=True, clear_after_read=False, infer_shape=False ) hiddens, _ = tf.while_loop( cond=condition, body=recurrence, loop_vars=[hiddens, tf.constant(0)], parallel_iterations=1 ) h = hiddens.stack() logits = tf.matmul(h, self.Wo) + self.bo prediction_op = tf.argmax(input=logits, axis=1) self.prediction_op = prediction_op rcost = reg*sum(tf.nn.l2_loss(p) for p in self.weights) if train_inner_nodes: # filter out -1s labeled_indices = tf.compat.v1.where(labels >= 0) cost_op = tf.reduce_mean( input_tensor=tf.nn.sparse_softmax_cross_entropy_with_logits( logits=tf.gather(logits, labeled_indices), labels=tf.gather(labels, labeled_indices), ) ) + rcost else: cost_op = tf.reduce_mean( input_tensor=tf.nn.sparse_softmax_cross_entropy_with_logits( logits=logits[-1], labels=labels[-1], ) ) + rcost train_op = tf.compat.v1.train.AdagradOptimizer(learning_rate=8e-3).minimize(cost_op) # train_op = tf.train.MomentumOptimizer(learning_rate=8e-3, momentum=0.9).minimize(cost_op) # NOTE: If you're using GPU, InteractiveSession breaks # AdagradOptimizer and some other optimizers # change to tf.Session() if so. self.session = tf.compat.v1.Session() init_op = tf.compat.v1.global_variables_initializer() self.session.run(init_op) costs = [] sequence_indexes = range(N) for i in range(epochs): t0 = datetime.now() sequence_indexes = shuffle(sequence_indexes) n_correct = 0 n_total = 0 cost = 0 it = 0 for j in sequence_indexes: words_, left, right, lab = trees[j] # print("words_:", words_) # print("lab:", lab) c, p, _ = self.session.run( (cost_op, prediction_op, train_op), feed_dict={ words: words_, left_children: left, right_children: right, labels: lab } ) if np.isnan(c): print("Cost is nan! Let's stop here. \ Why don't you try decreasing the learning rate?") for p in self.params: print(p.get_value().sum()) exit() cost += c n_correct += (p[-1] == lab[-1]) n_total += 1 it += 1 if it % 10 == 0: sys.stdout.write( "j/N: %d/%d correct rate so far: %f, cost so far: %f\r" % (it, N, float(n_correct)/n_total, cost) ) sys.stdout.flush() # calculate the test score n_test_correct = 0 n_test_total = 0 for words_, left, right, lab in test_trees: p = self.session.run(prediction_op, feed_dict={ words: words_, left_children: left, right_children: right, labels: lab }) n_test_correct += (p[-1] == lab[-1]) n_test_total += 1 print( "i:", i, "cost:", cost, "train acc:", float(n_correct)/n_total, "test acc:", float(n_test_correct)/n_test_total, "time for epoch:", (datetime.now() - t0) ) costs.append(cost) plt.plot(costs) plt.show() def predict(self, words, left, right, lab): return self.session.run( self.prediction_op, feed_dict={ self.words: words, self.left: left, self.right: right, self.labels: lab } ) def score(self, trees): n_total = len(trees) n_correct = 0 for words, left, right, lab in trees: p = self.predict(words, left, right, lab) n_correct += (p[-1] == lab[-1]) return float(n_correct) / n_total def f1_score(self, trees): Y = [] P = [] for words, left, right, lab in trees: p = self.predict(words, left, right, lab) Y.append(lab[-1]) P.append(p[-1]) return f1_score(Y, P, average=None).mean() def add_idx_to_tree(tree, current_idx): # post-order labeling of tree nodes if tree is None: return current_idx current_idx = add_idx_to_tree(tree.left, current_idx) current_idx = add_idx_to_tree(tree.right, current_idx) tree.idx = current_idx current_idx += 1 return current_idx def tree2list(tree, parent_idx, is_binary=False): if tree is None: return [], [], [], [] words_left, left_child_left, right_child_left, labels_left = tree2list(tree.left, tree.idx, is_binary) words_right, left_child_right, right_child_right, labels_right = tree2list(tree.right, tree.idx, is_binary) if tree.word is None: w = -1 left = tree.left.idx right = tree.right.idx else: w = tree.word left = -1 right = -1 words = words_left + words_right + [w] left_child = left_child_left + left_child_right + [left] right_child = right_child_left + right_child_right + [right] if is_binary: if tree.label > 2: label = 1 elif tree.label < 2: label = 0 else: label = -1 # we will eventually filter these out else: label = tree.label labels = labels_left + labels_right + [label] return words, left_child, right_child, labels def main(is_binary=True): train, test, word2idx = get_ptb_data() for t in train: add_idx_to_tree(t, 0) train = [tree2list(t, -1, is_binary) for t in train] if is_binary: train = [t for t in train if t[3][-1] >= 0] # for filtering binary labels for t in test: add_idx_to_tree(t, 0) test = [tree2list(t, -1, is_binary) for t in test] if is_binary: test = [t for t in test if t[3][-1] >= 0] # for filtering binary labels train = shuffle(train) # train = train[:5000] # n_pos = sum(t[3][-1] for t in train) # print("n_pos train:", n_pos) test = shuffle(test) smalltest = test[:1000] # n_pos = sum(t[3][-1] for t in test) # print("n_pos test:", n_pos) V = len(word2idx) print("vocab size:", V) D = 10 K = 2 if is_binary else 5 model = RecursiveNN(V, D, K) model.fit(train, smalltest, reg=1e-3, epochs=20, train_inner_nodes=True) print("train accuracy:", model.score(train)) print("test accuracy:", model.score(test)) print("train f1:", model.f1_score(train)) print("test f1:", model.f1_score(test)) if __name__ == '__main__': main() ================================================ FILE: nlp_class2/rntn_theano.py ================================================ # Course URL: # https://deeplearningcourses.com/c/natural-language-processing-with-deep-learning-in-python # https://udemy.com/natural-language-processing-with-deep-learning-in-python from __future__ import print_function, division from builtins import range # Note: you may need to update your version of future # sudo pip install -U future import sys import numpy as np import matplotlib.pyplot as plt import theano import theano.tensor as T from sklearn.utils import shuffle from util import init_weight, get_ptb_data, display_tree from datetime import datetime from sklearn.metrics import f1_score # helper for adam optimizer # use tensorflow defaults # def adam(cost, params, lr0=1e-4, beta1=0.9, beta2=0.999, eps=1e-8): # grads = T.grad(cost, params) # updates = [] # time = theano.shared(0) # new_time = time + 1 # updates.append((time, new_time)) # lr = lr0*T.sqrt(1 - beta2**new_time) / (1 - beta1**new_time) # for p, g in zip(params, grads): # m = theano.shared(p.get_value() * 0.) # v = theano.shared(p.get_value() * 0.) # new_m = beta1*m + (1 - beta1)*g # new_v = beta2*v + (1 - beta2)*g*g # new_p = p - lr*new_m / (T.sqrt(new_v) + eps) # updates.append((m, new_m)) # updates.append((v, new_v)) # updates.append((p, new_p)) # return updates # def momentum_updates(cost, params, learning_rate=1e-3, mu=0.99): # # momentum changes # dparams = [theano.shared(p.get_value() * 0.) for p in params] # updates = [] # grads = T.grad(cost, params) # for p, dp, g in zip(params, dparams, grads): # dp_update = mu*dp - learning_rate*g # p_update = p + dp_update # updates.append((dp, dp_update)) # updates.append((p, p_update)) # return updates # def rmsprop(cost, params, lr=1e-3, decay=0.999, eps=1e-10): # grads = T.grad(cost, params) # caches = [theano.shared(np.ones_like(p.get_value())) for p in params] # new_caches = [decay*c + (1. - decay)*g*g for c, g in zip(caches, grads)] # c_update = [(c, new_c) for c, new_c in zip(caches, new_caches)] # g_update = [ # (p, p - lr*g / T.sqrt(new_c + eps)) for p, new_c, g in zip(params, new_caches, grads) # ] # updates = c_update + g_update # return updates def adagrad(cost, params, lr, eps=1e-10): grads = T.grad(cost, params) caches = [theano.shared(np.ones_like(p.get_value())) for p in params] new_caches = [c + g*g for c, g in zip(caches, grads)] c_update = [(c, new_c) for c, new_c in zip(caches, new_caches)] g_update = [ (p, p - lr*g / T.sqrt(new_c + eps)) for p, new_c, g in zip(params, new_caches, grads) ] updates = c_update + g_update return updates class RecursiveNN: def __init__(self, V, D, K, activation=T.tanh): self.V = V self.D = D self.K = K self.f = activation def fit(self, trees, test_trees, reg=1e-3, epochs=8, train_inner_nodes=False): D = self.D V = self.V K = self.K N = len(trees) We = init_weight(V, D) W11 = np.random.randn(D, D, D) / np.sqrt(3*D) W22 = np.random.randn(D, D, D) / np.sqrt(3*D) W12 = np.random.randn(D, D, D) / np.sqrt(3*D) W1 = init_weight(D, D) W2 = init_weight(D, D) bh = np.zeros(D) Wo = init_weight(D, K) bo = np.zeros(K) self.We = theano.shared(We) self.W11 = theano.shared(W11) self.W22 = theano.shared(W22) self.W12 = theano.shared(W12) self.W1 = theano.shared(W1) self.W2 = theano.shared(W2) self.bh = theano.shared(bh) self.Wo = theano.shared(Wo) self.bo = theano.shared(bo) self.params = [self.We, self.W11, self.W22, self.W12, self.W1, self.W2, self.bh, self.Wo, self.bo] lr = T.scalar('learning_rate') words = T.ivector('words') left_children = T.ivector('left_children') right_children = T.ivector('right_children') labels = T.ivector('labels') def recurrence(n, hiddens, words, left, right): w = words[n] # any non-word will have index -1 hiddens = T.switch( T.ge(w, 0), T.set_subtensor(hiddens[n], self.We[w]), T.set_subtensor(hiddens[n], self.f( hiddens[left[n]].dot(self.W11).dot(hiddens[left[n]]) + hiddens[right[n]].dot(self.W22).dot(hiddens[right[n]]) + hiddens[left[n]].dot(self.W12).dot(hiddens[right[n]]) + hiddens[left[n]].dot(self.W1) + hiddens[right[n]].dot(self.W2) + self.bh ) ) ) return hiddens hiddens = T.zeros((words.shape[0], D)) h, _ = theano.scan( fn=recurrence, outputs_info=[hiddens], n_steps=words.shape[0], sequences=T.arange(words.shape[0]), non_sequences=[words, left_children, right_children], ) py_x = T.nnet.softmax(h[-1].dot(self.Wo) + self.bo) prediction = T.argmax(py_x, axis=1) rcost = reg*T.sum([(p*p).sum() for p in self.params]) if train_inner_nodes: relevant_labels = labels[labels >= 0] cost = -T.mean(T.log(py_x[labels >= 0, relevant_labels])) + rcost else: cost = -T.mean(T.log(py_x[-1, labels[-1]])) + rcost updates = adagrad(cost, self.params, lr) self.cost_predict_op = theano.function( inputs=[words, left_children, right_children, labels], outputs=[cost, prediction], allow_input_downcast=True, ) self.train_op = theano.function( inputs=[words, left_children, right_children, labels, lr], outputs=[cost, prediction], updates=updates ) lr_ = 8e-3 # initial learning rate costs = [] sequence_indexes = range(N) # if train_inner_nodes: # n_total = sum(len(words) for words, _, _, _ in trees) # else: # n_total = N for i in range(epochs): t0 = datetime.now() sequence_indexes = shuffle(sequence_indexes) n_correct = 0 n_total = 0 cost = 0 it = 0 for j in sequence_indexes: words, left, right, lab = trees[j] c, p = self.train_op(words, left, right, lab, lr_) if np.isnan(c): print("Cost is nan! Let's stop here. \ Why don't you try decreasing the learning rate?") for p in self.params: print(p.get_value().sum()) exit() cost += c n_correct += (p[-1] == lab[-1]) n_total += 1 it += 1 if it % 10 == 0: sys.stdout.write( "j/N: %d/%d correct rate so far: %f, cost so far: %f\r" % (it, N, float(n_correct)/n_total, cost) ) sys.stdout.flush() # calculate the test score n_test_correct = 0 n_test_total = 0 for words, left, right, lab in test_trees: _, p = self.cost_predict_op(words, left, right, lab) n_test_correct += (p[-1] == lab[-1]) n_test_total += 1 print( "i:", i, "cost:", cost, "train acc:", float(n_correct)/n_total, "test acc:", float(n_test_correct)/n_test_total, "time for epoch:", (datetime.now() - t0) ) costs.append(cost) plt.plot(costs) plt.show() def score(self, trees): n_total = len(trees) n_correct = 0 for words, left, right, lab in trees: _, p = self.cost_predict_op(words, left, right, lab) n_correct += (p[-1] == lab[-1]) return float(n_correct) / n_total def f1_score(self, trees): Y = [] P = [] for words, left, right, lab in trees: _, p = self.cost_predict_op(words, left, right, lab) Y.append(lab[-1]) P.append(p[-1]) return f1_score(Y, P, average=None).mean() def add_idx_to_tree(tree, current_idx): # post-order labeling of tree nodes if tree is None: return current_idx current_idx = add_idx_to_tree(tree.left, current_idx) current_idx = add_idx_to_tree(tree.right, current_idx) tree.idx = current_idx current_idx += 1 return current_idx def tree2list(tree, parent_idx, is_binary=False): if tree is None: return [], [], [], [] words_left, left_child_left, right_child_left, labels_left = tree2list(tree.left, tree.idx, is_binary) words_right, left_child_right, right_child_right, labels_right = tree2list(tree.right, tree.idx, is_binary) if tree.word is None: w = -1 left = tree.left.idx right = tree.right.idx else: w = tree.word left = -1 right = -1 words = words_left + words_right + [w] left_child = left_child_left + left_child_right + [left] right_child = right_child_left + right_child_right + [right] if is_binary: if tree.label > 2: label = 1 elif tree.label < 2: # else: label = 0 else: label = -1 # we will eventually filter these out else: label = tree.label labels = labels_left + labels_right + [label] return words, left_child, right_child, labels def main(is_binary=True): train, test, word2idx = get_ptb_data() for t in train: add_idx_to_tree(t, 0) train = [tree2list(t, -1, is_binary) for t in train] if is_binary: train = [t for t in train if t[3][-1] >= 0] # for filtering binary labels for t in test: add_idx_to_tree(t, 0) test = [tree2list(t, -1, is_binary) for t in test] if is_binary: test = [t for t in test if t[3][-1] >= 0] # for filtering binary labels # check imbalance # pos = 0 # neg = 0 # mid = 0 # label_counts = np.zeros(5) # for t in train + test: # words, left_child, right_child, labels = t # # for l in labels: # # if l == 0: # # neg += 1 # # elif l == 1: # # pos += 1 # # else: # # mid += 1 # for l in labels: # label_counts[l] += 1 # # print("pos / total:", float(pos) / (pos + neg + mid)) # # print("mid / total:", float(mid) / (pos + neg + mid)) # # print("neg / total:", float(neg) / (pos + neg + mid)) # print("label proportions:", label_counts / label_counts.sum()) # exit() train = shuffle(train) # train = train[:5000] # n_pos = sum(t[3][-1] for t in train) # print("n_pos train:", n_pos) test = shuffle(test) smalltest = test[:1000] # n_pos = sum(t[3][-1] for t in test) # print("n_pos test:", n_pos) V = len(word2idx) print("vocab size:", V) D = 20 K = 2 if is_binary else 5 model = RecursiveNN(V, D, K) model.fit(train, smalltest, epochs=20, train_inner_nodes=True) print("train accuracy:", model.score(train)) print("test accuracy:", model.score(test)) print("train f1:", model.f1_score(train)) print("test f1:", model.f1_score(test)) if __name__ == '__main__': main() ================================================ FILE: nlp_class2/tfidf_tsne.py ================================================ # Course URL: # https://deeplearningcourses.com/c/natural-language-processing-with-deep-learning-in-python # https://udemy.com/natural-language-processing-with-deep-learning-in-python from __future__ import print_function, division from future.utils import iteritems from builtins import range # Note: you may need to update your version of future # sudo pip install -U future import json import numpy as np import matplotlib.pyplot as plt from sklearn.utils import shuffle from sklearn.manifold import TSNE from sklearn.decomposition import TruncatedSVD, PCA, KernelPCA from datetime import datetime import os import sys sys.path.append(os.path.abspath('..')) from rnn_class.util import get_wikipedia_data from rnn_class.brown import get_sentences_with_word2idx_limit_vocab, get_sentences_with_word2idx from util import find_analogies from sklearn.feature_extraction.text import TfidfTransformer def main(): analogies_to_try = ( ('king', 'man', 'woman'), ('france', 'paris', 'london'), ('france', 'paris', 'rome'), ('paris', 'france', 'italy'), ) ### choose a data source ### # sentences, word2idx = get_sentences_with_word2idx_limit_vocab(n_vocab=1500) sentences, word2idx = get_wikipedia_data(n_files=3, n_vocab=2000, by_paragraph=True) # with open('tfidf_word2idx.json', 'w') as f: # json.dump(word2idx, f) notfound = False for word_list in analogies_to_try: for w in word_list: if w not in word2idx: print("%s not found in vocab, remove it from \ analogies to try or increase vocab size" % w) notfound = True if notfound: exit() # build term document matrix V = len(word2idx) N = len(sentences) # create raw counts first A = np.zeros((V, N)) print("V:", V, "N:", N) j = 0 for sentence in sentences: for i in sentence: A[i,j] += 1 j += 1 print("finished getting raw counts") transformer = TfidfTransformer() A = transformer.fit_transform(A.T).T # tsne requires a dense array A = A.toarray() # map back to word in plot idx2word = {v:k for k, v in iteritems(word2idx)} # plot the data in 2-D tsne = TSNE() Z = tsne.fit_transform(A) plt.scatter(Z[:,0], Z[:,1]) for i in range(V): try: plt.annotate(s=idx2word[i].encode("utf8").decode("utf8"), xy=(Z[i,0], Z[i,1])) except: print("bad string:", idx2word[i]) plt.draw() ### multiple ways to create vectors for each word ### # 1) simply set it to the TF-IDF matrix # We = A # 2) create a higher-D word embedding tsne = TSNE(n_components=3) We = tsne.fit_transform(A) # 3) use a classic dimensionality reduction technique # svd = KernelPCA(n_components=20, kernel='rbf') # We = svd.fit_transform(A) for word_list in analogies_to_try: w1, w2, w3 = word_list find_analogies(w1, w2, w3, We, word2idx, idx2word) plt.show() # pause script until plot is closed if __name__ == '__main__': main() ================================================ FILE: nlp_class2/util.py ================================================ # Course URL: # https://deeplearningcourses.com/c/natural-language-processing-with-deep-learning-in-python # https://udemy.com/natural-language-processing-with-deep-learning-in-python from __future__ import print_function, division from future.utils import iteritems from builtins import range # Note: you may need to update your version of future # sudo pip install -U future import os import numpy as np from sklearn.metrics.pairwise import pairwise_distances def init_weight(Mi, Mo): return np.random.randn(Mi, Mo) / np.sqrt(Mi + Mo) # slow version # def find_analogies(w1, w2, w3, We, word2idx): # king = We[word2idx[w1]] # man = We[word2idx[w2]] # woman = We[word2idx[w3]] # v0 = king - man + woman # def dist1(a, b): # return np.linalg.norm(a - b) # def dist2(a, b): # return 1 - a.dot(b) / (np.linalg.norm(a) * np.linalg.norm(b)) # for dist, name in [(dist1, 'Euclidean'), (dist2, 'cosine')]: # min_dist = float('inf') # best_word = '' # for word, idx in iteritems(word2idx): # if word not in (w1, w2, w3): # v1 = We[idx] # d = dist(v0, v1) # if d < min_dist: # min_dist = d # best_word = word # print("closest match by", name, "distance:", best_word) # print(w1, "-", w2, "=", best_word, "-", w3) # fast version def find_analogies(w1, w2, w3, We, word2idx, idx2word): V, D = We.shape king = We[word2idx[w1]] man = We[word2idx[w2]] woman = We[word2idx[w3]] v0 = king - man + woman for dist in ('euclidean', 'cosine'): distances = pairwise_distances(v0.reshape(1, D), We, metric=dist).reshape(V) # idx = distances.argmin() # best_word = idx2word[idx] idx = distances.argsort()[:4] best_idx = -1 keep_out = [word2idx[w] for w in (w1, w2, w3)] for i in idx: if i not in keep_out: best_idx = i break best_word = idx2word[best_idx] print("closest match by", dist, "distance:", best_word) print(w1, "-", w2, "=", best_word, "-", w3) class Tree: def __init__(self, word, label): self.left = None self.right = None self.word = word self.label = label def display_tree(t, lvl=0): prefix = ''.join(['>']*lvl) if t.word is not None: print("%s%s %s" % (prefix, t.label, t.word)) else: print("%s%s -" % (prefix, t.label)) # if t.left is None or t.right is None: # raise Exception("Tree node has no word but left and right child are None") if t.left: display_tree(t.left, lvl + 1) if t.right: display_tree(t.right, lvl + 1) current_idx = 0 def str2tree(s, word2idx): # take a string that starts with ( and MAYBE ends with ) # return the tree that it represents # EXAMPLE: "(3 (2 It) (4 (4 (2 's) (4 (3 (2 a) (4 (3 lovely) (2 film))) (3 (2 with) (4 (3 (3 lovely) (2 performances)) (2 (2 by) (2 (2 (2 Buy) (2 and)) (2 Accorsi))))))) (2 .)))" # NOTE: not every node has 2 children (possibly not correct ??) # NOTE: not every node has a word # NOTE: every node has a label # NOTE: labels are 0,1,2,3,4 # NOTE: only leaf nodes have words # s[0] = (, s[1] = label, s[2] = space, s[3] = character or ( # print "Input string:", s, "len:", len(s) global current_idx label = int(s[1]) if s[3] == '(': t = Tree(None, label) # try: # find the string that represents left child # it can include trailing characters we don't need, because we'll only look up to ) child_s = s[3:] t.left = str2tree(child_s, word2idx) # find the string that represents right child # can contain multiple ((( ))) # left child is completely represented when we've closed as many as we've opened # we stop at 1 because the first opening paren represents the current node, not children nodes i = 0 depth = 0 for c in s: i += 1 if c == '(': depth += 1 elif c == ')': depth -= 1 if depth == 1: break # print "index of right child", i t.right = str2tree(s[i+1:], word2idx) # except Exception as e: # print "Exception:", e # print "Input string:", s # raise e # if t.left is None or t.right is None: # raise Exception("Tree node has no word but left and right child are None") return t else: # this has a word, so it's a leaf r = s.split(')', 1)[0] word = r[3:].lower() # print "word found:", word if word not in word2idx: word2idx[word] = current_idx current_idx += 1 t = Tree(word2idx[word], label) return t def get_ptb_data(): # like the wikipedia dataset, I want to return 2 things: # word2idx mapping, sentences # here the sentences should be Tree objects if not os.path.exists('../large_files/trees'): print("Please create ../large_files/trees relative to this file.") print("train.txt and test.txt should be stored in there.") print("Please download the data from http://nlp.stanford.edu/sentiment/") exit() elif not os.path.exists('../large_files/trees/train.txt'): print("train.txt is not in ../large_files/trees/train.txt") print("Please download the data from http://nlp.stanford.edu/sentiment/") exit() elif not os.path.exists('../large_files/trees/test.txt'): print("test.txt is not in ../large_files/trees/test.txt") print("Please download the data from http://nlp.stanford.edu/sentiment/") exit() word2idx = {} train = [] test = [] # train set first for line in open('../large_files/trees/train.txt'): line = line.rstrip() if line: t = str2tree(line, word2idx) # if t.word is None and t.left is None and t.right is None: # print "sentence:", line # display_tree(t) # print "" train.append(t) # break # test set for line in open('../large_files/trees/test.txt'): line = line.rstrip() if line: t = str2tree(line, word2idx) test.append(t) return train, test, word2idx # get_ptb_data() ================================================ FILE: nlp_class2/visualize_countries.py ================================================ # Course URL: # https://deeplearningcourses.com/c/natural-language-processing-with-deep-learning-in-python # https://udemy.com/natural-language-processing-with-deep-learning-in-python from __future__ import print_function, division from builtins import range # Note: you may need to update your version of future # sudo pip install -U future import json import numpy as np import matplotlib.pyplot as plt from sklearn.manifold import TSNE def main(we_file='glove_model_50.npz', w2i_file='glove_word2idx_50.json'): words = ['japan', 'japanese', 'england', 'english', 'australia', 'australian', 'china', 'chinese', 'italy', 'italian', 'french', 'france', 'spain', 'spanish'] with open(w2i_file) as f: word2idx = json.load(f) npz = np.load(we_file) W = npz['arr_0'] V = npz['arr_1'] We = (W + V.T) / 2 idx = [word2idx[w] for w in words] # We = We[idx] tsne = TSNE() Z = tsne.fit_transform(We) Z = Z[idx] plt.scatter(Z[:,0], Z[:,1]) for i in range(len(words)): plt.annotate(s=words[i], xy=(Z[i,0], Z[i,1])) plt.show() if __name__ == '__main__': main() ================================================ FILE: nlp_class2/w2v_word2idx.json ================================================ {"limited": 575, "writings": 1340, "four": 171, "consists": 1061, "oldest": 1493, "whose": 544, "paris": 734, "under": 111, "lord": 1228, "lack": 839, "risk": 1570, "rise": 1216, "georgia": 1882, "every": 307, "confederate": 935, "vast": 1953, "alpine": 1947, "school": 267, "prize": 1308, "crops": 1788, "companies": 1137, "solution": 731, "announced": 1114, "force": 315, "leaders": 1799, "almond": 1918, "japanese": 699, "surrounding": 1695, "second": 144, "street": 1943, "estimated": 695, "machines": 1725, "even": 141, "established": 301, "christ": 1777, "asia": 453, "above": 371, "churches": 653, "increasing": 1052, "ever": 822, "consisting": 1737, "told": 1679, "men": 340, "here": 1068, "atoms": 425, "anthropology": 834, "met": 871, "protection": 1743, "china": 824, "represented": 918, "100": 780, "obtained": 1506, "anarchism": 1175, "daughter": 1048, "study": 263, "changed": 1237, "reports": 1544, "saint": 1699, "military": 224, "anarchist": 963, "aikido": 1917, "changes": 629, "golden": 1510, "campaign": 1394, "schweitzer": 1623, "highly": 670, "brought": 646, "moral": 1322, "total": 382, "unit": 875, "agassi": 781, "would": 60, "army": 236, "hospital": 1462, "mexico": 1980, "negative": 1337, "music": 280, "therefore": 417, "h": 1451, "type": 415, "until": 142, "separated": 1902, "holy": 1537, "successful": 809, "wars": 1791, "award": 954, "arms": 1660, "teaching": 1753, "hold": 1316, "must": 266, "me": 1054, "1990": 1957, "1992": 1694, "word": 200, "room": 1601, "1997": 1769, "rights": 504, "1999": 1156, "1998": 1562, "work": 103, "theories": 1781, "era": 944, "henry": 1248, "already": 876, "my": 813, "example": 113, "give": 896, "india": 723, "david": 1133, "absolute": 1081, "ceremony": 1983, "end": 183, "provide": 640, "travel": 1560, "song": 995, "feature": 1116, "machine": 641, "how": 308, "writers": 1100, "widespread": 1833, "regional": 1416, "description": 1715, "turing": 747, "after": 49, "president": 372, "law": 325, "types": 579, "attempt": 990, "third": 338, "greek": 157, "algorithms": 1118, "suggest": 1824, "democratic": 1499, "order": 176, "operations": 1029, "interpretation": 1842, "office": 705, "over": 71, "london": 767, "japan": 1042, "before": 112, "personal": 685, "christie": 1235, "writing": 352, "better": 776, "production": 182, "weeks": 1311, "then": 95, "them": 90, "combination": 1594, "grand": 1581, "nobel": 1424, "effects": 777, "they": 38, "schools": 660, "silver": 1495, "bank": 1258, "represents": 1656, "netherlands": 1648, "oxygen": 1724, "classified": 1557, "slavery": 1143, "victory": 859, "each": 110, "went": 730, "side": 444, "mean": 958, "financial": 1019, "series": 153, "principles": 1800, "used": 45, "astatine": 1350, "navy": 1742, "laboratory": 1964, "network": 1395, "god": 220, "tried": 1556, "particles": 934, "medicine": 1329, "independence": 665, "foundation": 1285, "linear": 1901, "written": 248, "given": 227, "free": 379, "standard": 337, "management": 1711, "formation": 910, "wanted": 1908, "created": 361, "days": 487, "1970s": 1592, "uses": 644, "rand": 1262, "industrial": 993, "features": 630, "primary": 601, "featured": 1579, "adopted": 938, "another": 147, "service": 451, "similarly": 1923, "top": 547, "historian": 1339, "approximately": 567, "fiction": 1126, "needed": 1074, "rates": 1549, "too": 763, "john": 310, "urban": 1577, "murder": 1121, "serve": 1492, "took": 261, "rejected": 1466, "direct": 845, "western": 277, "somewhat": 1504, "distance": 827, "anxiety": 961, "showed": 1412, "tree": 1955, "likely": 905, "nations": 745, "project": 741, "matter": 708, "historical": 817, "k": 1808, "powers": 1297, "modern": 143, "mind": 1218, "seen": 399, "relatively": 671, "forced": 1342, "strength": 1628, "1968": 1922, "latter": 768, "responsible": 1522, "materials": 1269, "forces": 269, "blue": 1834, "though": 207, "object": 899, "anatomy": 1661, "regular": 1771, "germany": 599, "letter": 681, "phase": 1954, "the": 2, "medical": 701, "metal": 397, "treaty": 1536, "points": 863, "principle": 1215, "came": 355, "saying": 1768, "queen": 1906, "radio": 1086, "solutions": 1622, "earth": 278, "alcohols": 1866, "finally": 949, "just": 347, "rich": 1723, "axiom": 1456, "do": 174, "mixture": 1944, "wide": 916, "de": 284, "vowels": 1363, "13": 980, "coast": 1152, "despite": 478, "report": 1039, "14": 998, "runs": 1914, "countries": 249, "fields": 1090, "method": 577, "release": 1229, "reference": 1318, "1960s": 1088, "observed": 1040, "decided": 1014, "result": 272, "iran": 1582, "best": 323, "techniques": 887, "antimony": 1023, "away": 698, "artificial": 1313, "r": 1430, "approach": 1135, "discovery": 1422, "we": 234, "never": 373, "terms": 349, "nature": 446, "oxidation": 1685, "however": 73, "southeast": 1477, "rivers": 1883, "extent": 1673, "carbon": 637, "suggested": 819, "received": 603, "climate": 933, "aristotles": 1888, "reported": 605, "country": 167, "against": 160, "players": 1773, "games": 936, "planned": 1790, "logic": 1349, "studio": 1962, "adapted": 1995, "asked": 1533, "appeared": 869, "character": 408, "kurosawa": 683, "arsenic": 506, "hitler": 1646, "conference": 1566, "symbols": 1381, "basis": 785, "union": 184, "three": 104, "been": 39, "quickly": 1242, "much": 127, "communion": 1046, "interest": 691, "basic": 884, "expected": 1259, "entered": 1588, "dry": 1630, "life": 136, "families": 772, "eastern": 428, "child": 1327, "worked": 930, "applied": 894, "exception": 1881, "east": 255, "n": 1359, "near": 330, "aid": 1921, "property": 604, "anchor": 1227, "launched": 1840, "seven": 838, "economics": 1973, "played": 561, "is": 8, "it": 20, "defeated": 1179, "ii": 426, "player": 1720, "in": 5, "ie": 806, "if": 86, "containing": 1429, "perform": 1550, "things": 803, "make": 233, "airport": 1559, "complex": 529, "azerbaijani": 1147, "colonies": 1545, "several": 107, "european": 303, "independent": 721, "published": 196, "hand": 687, "characters": 514, "anarchists": 1999, "kept": 1806, "programs": 1302, "ocean": 1099, "academic": 1938, "rome": 974, "greatest": 1186, "mother": 709, "claims": 1396, "alabama": 459, "musical": 1663, "left": 319, "traditions": 1541, "proposed": 586, "gods": 1307, "human": 181, "yet": 762, "previous": 945, "classification": 1877, "equipment": 1702, "regarded": 1247, "royal": 833, "countrys": 1994, "alchemy": 1232, "animation": 1036, "board": 1516, "has": 30, "gave": 552, "possible": 321, "arab": 1966, "possibly": 1222, "cultural": 538, "birth": 1047, "unique": 1357, "advanced": 1239, "d": 1433, "county": 1431, "50": 1091, "specific": 558, "night": 1392, "security": 992, "portuguese": 1437, "right": 380, "old": 289, "people": 96, "staff": 1960, "deaf": 1997, "dead": 1188, "born": 546, "election": 1132, "anatolia": 1233, "for": 11, "ice": 1505, "continue": 1397, "core": 1709, "fish": 1402, "translated": 1992, "properties": 593, "census": 1598, "attacks": 1745, "months": 774, "magazine": 1309, "anime": 1024, "islands": 742, "efforts": 1324, "slightly": 1614, "raised": 1595, "presence": 861, "civil": 488, "intellectual": 1928, "son": 430, "down": 378, "doctrine": 1726, "1990s": 1253, "soon": 966, "often": 87, "support": 327, "initial": 1390, "fight": 1950, "joseph": 1798, "way": 232, "resulted": 1295, "call": 1469, "was": 10, "war": 77, "head": 375, "form": 93, "forming": 1722, "becoming": 1153, "differences": 1472, "heat": 1856, "solar": 1183, "removed": 1932, "true": 676, "fort": 1760, "versions": 1838, "inside": 1214, "devices": 1553, "apatosaurus": 1246, "economic": 314, "proved": 1730, "evidence": 463, "exist": 829, "prayer": 1438, "adelaide": 565, "no": 70, "whereas": 1213, "when": 55, "setting": 1751, "republic": 450, "digital": 1563, "test": 582, "picture": 1832, "models": 1122, "football": 1615, "fell": 1636, "died": 389, "billion": 843, "longer": 928, "together": 412, "kurosawas": 1817, "time": 61, "serious": 1823, "songs": 1744, "anglican": 431, "concept": 710, "chain": 1619, "global": 1026, "focus": 1459, "skin": 1564, "battle": 424, "technique": 1334, "father": 420, "environment": 1398, "charge": 882, "division": 1415, "supported": 1025, "choice": 898, "1994": 1904, "level": 475, "did": 173, "1996": 1681, "brother": 1573, "standards": 1331, "leave": 1713, "p": 1317, "team": 570, "round": 1662, "prevent": 1120, "spiritual": 1507, "revolution": 1210, "says": 1418, "sign": 1185, "cost": 1366, "afghanistan": 921, "constitution": 878, "current": 509, "international": 158, "appeal": 1292, "temperatures": 1631, "concepts": 1647, "french": 194, "understanding": 1201, "water": 150, "groups": 282, "address": 1977, "alone": 1487, "along": 246, "appears": 818, "change": 461, "canadian": 1747, "institute": 873, "root": 1814, "studied": 1450, "commonly": 750, "trial": 1371, "usually": 201, "studies": 563, "love": 794, "marked": 1367, "market": 662, "troops": 764, "working": 517, "positive": 1198, "athens": 388, "sports": 1330, "live": 470, "opposed": 1290, "memory": 1301, "films": 386, "australian": 962, "today": 489, "athena": 828, "club": 1496, "organized": 1850, "cases": 449, "effort": 1530, "organizations": 1785, "ibn": 1603, "car": 907, "originally": 706, "abortion": 746, "soul": 1084, "values": 911, "can": 47, "growing": 1142, "making": 419, "claim": 1236, "citizens": 1486, "figure": 1196, "frogs": 1996, "december": 502, "1980s": 1548, "performed": 915, "council": 649, "allowed": 694, "hydrogen": 675, "occur": 913, "swedish": 1872, "winter": 1184, "divided": 853, "chemical": 799, "fourth": 1138, "economy": 569, "product": 766, "influenced": 773, "may": 57, "southern": 353, "applications": 1254, "produce": 532, "designed": 702, "date": 1166, "such": 41, "data": 482, "man": 362, "natural": 253, "varieties": 1880, "liquid": 1436, "st": 815, "so": 89, "african": 842, "representation": 1933, "arrived": 1984, "typical": 1491, "indeed": 1852, "mainly": 820, "years": 76, "ended": 1277, "experiments": 1826, "argued": 982, "cold": 1501, "still": 178, "group": 130, "forms": 288, "policy": 897, "main": 285, "decades": 1445, "views": 1483, "nation": 1335, "1991": 1664, "course": 1490, "half": 587, "not": 29, "now": 164, "killed": 1058, "nor": 1478, "term": 199, "name": 123, "january": 443, "rock": 1352, "entirely": 1675, "square": 1016, "significantly": 1782, "bitumen": 1847, "eg": 448, "persian": 1125, "year": 133, "et": 1700, "plans": 1520, "album": 757, "living": 429, "shown": 866, "opened": 1377, "space": 320, "greeks": 1517, "factory": 1896, "increase": 692, "dutch": 1103, "formula": 981, "shows": 1312, "earlier": 647, "END": 1, "theory": 209, "cars": 1007, "million": 223, "quite": 1288, "california": 1364, "axioms": 1868, "care": 1343, "training": 1020, "language": 131, "ministry": 1455, "programming": 1867, "british": 156, "motion": 1145, "turn": 793, "place": 206, "ginsberg": 743, "think": 1979, "first": 40, "origin": 950, "spoken": 929, "UNKNOWN": 2000, "one": 37, "americans": 868, "specifically": 1407, "directly": 713, "spanish": 983, "ring": 1968, "open": 405, "george": 908, "size": 541, "city": 101, "little": 414, "district": 1425, "indicate": 1552, "2": 300, "convention": 1712, "white": 578, "structures": 1168, "friend": 1319, "gives": 1428, "alps": 1565, "eyes": 1988, "mostly": 634, "that": 12, "season": 1224, "released": 423, "than": 50, "population": 175, "11": 680, "10": 366, "television": 946, "12": 654, "15": 738, "effective": 1160, "17": 1241, "16": 1053, "19": 1403, "18": 1178, "require": 1461, "future": 650, "were": 27, "russia": 931, "and": 4, "remained": 638, "greece": 1167, "turned": 1170, "alloys": 1776, "say": 1378, "saw": 686, "any": 94, "ideas": 754, "note": 1534, "sciences": 1347, "potential": 984, "take": 368, "attempted": 1820, "interior": 1770, "performance": 1174, "multiple": 846, "theatre": 1719, "normal": 1754, "price": 1740, "pair": 1608, "america": 322, "especially": 279, "considered": 168, "average": 512, "later": 82, "drive": 1958, "federal": 1057, "slaves": 1612, "professional": 1299, "typically": 551, "laws": 1027, "shot": 1860, "show": 591, "german": 283, "contemporary": 1195, "discovered": 610, "fifth": 1893, "ground": 879, "ratio": 1654, "title": 392, "daily": 1409, "3": 354, "only": 58, "air": 274, "black": 535, "alexanders": 1863, "get": 1589, "mission": 947, "cannot": 589, "nearly": 707, "secondary": 1590, "prime": 1192, "regarding": 1587, "artist": 1539, "angolan": 1970, "where": 74, "declared": 1148, "allosaurus": 1264, "relative": 1325, "elected": 987, "college": 1386, "connected": 1809, "compounds": 607, "ways": 1105, "subsequent": 1624, "review": 1652, "sites": 1714, "weapons": 1794, "outside": 490, "between": 63, "reading": 1561, "across": 513, "jobs": 1597, "august": 585, "26": 1981, "awards": 988, "armenian": 740, "article": 1203, "cities": 711, "come": 760, "reaction": 837, "dates": 1942, "many": 51, "region": 298, "23": 1789, "according": 137, "s": 656, "railway": 1990, "expression": 1703, "comes": 1113, "among": 146, "key": 769, "color": 1658, "april": 367, "maintained": 1909, "learning": 1368, "constant": 1620, "crew": 1095, "amino": 712, "turkey": 1193, "destroyed": 1952, "arts": 895, "capable": 1912, "west": 251, "consonants": 1755, "mark": 1474, "combined": 1158, "mary": 1717, "engine": 835, "direction": 1408, "warhol": 865, "offered": 1659, "formed": 356, "minister": 1059, "former": 387, "those": 121, "sound": 645, "developing": 1627, "these": 52, "mount": 1676, "crowley": 503, "situation": 1813, "kournikova": 1775, "aluminium": 534, "eventually": 576, "soil": 1463, "j": 1417, "canon": 1873, "telephone": 1746, "middle": 401, "technology": 473, "movements": 1797, "different": 134, "develop": 1323, "author": 1097, "media": 672, "granted": 1801, "tour": 1372, "same": 120, "speech": 1077, "physical": 527, "events": 573, "status": 994, "extended": 1219, "centuries": 732, "director": 778, "persons": 1708, "abalone": 1525, "vowel": 1065, "tradition": 807, "largely": 703, "roughly": 1757, "without": 204, "model": 479, "bodies": 1355, "gdp": 1859, "summer": 765, "being": 80, "money": 1050, "speer": 627, "actions": 1341, "speed": 1452, "death": 179, "seems": 1802, "except": 1082, "treatment": 775, "role": 427, "extensive": 1657, "real": 598, "aspects": 1531, "around": 155, "rules": 1252, "virginia": 1924, "period": 193, "early": 92, "using": 170, "accepted": 942, "ruled": 1822, "particle": 1632, "chamber": 1844, "either": 258, "fully": 1306, "served": 830, "reduced": 1140, "jews": 410, "pacific": 1935, "l": 1851, "respect": 1976, "provided": 566, "recorded": 849, "legal": 689, "moon": 986, "critical": 1291, "lunar": 1361, "provides": 1260, "refer": 1130, "assembly": 555, "scientific": 848, "business": 912, "equivalent": 1365, "notable": 1141, "notably": 1282, "refers": 1217, "on": 15, "stone": 1255, "patent": 1839, "central": 259, "stations": 1916, "island": 422, "industry": 625, "thousands": 1555, "practical": 1780, "tarkovsky": 1849, "greatly": 1444, "act": 550, "mixed": 1674, "johnston": 1887, "or": 21, "road": 972, "communication": 1706, "image": 1811, "augustus": 496, "officially": 1475, "determine": 1907, "einstein": 619, "angola": 608, "her": 72, "area": 169, "there": 53, "christianity": 1593, "start": 1610, "low": 458, "stars": 920, "valley": 951, "poirot": 688, "complete": 800, "enough": 914, "philosophers": 1911, "with": 14, "october": 500, "taught": 1876, "strongly": 1502, "vehicles": 1678, "ad": 855, "ai": 1207, "certain": 351, "describe": 1470, "moved": 584, "al": 1497, "deep": 1465, "an": 18, "britain": 826, "at": 24, "bishop": 1701, "film": 126, "again": 467, "green": 1249, "field": 359, "5": 602, "mathematics": 1102, "you": 516, "ashoka": 1155, "poor": 1107, "championship": 1616, "congress": 588, "separate": 727, "students": 844, "symbol": 1044, "teeth": 1404, "includes": 545, "START": 0, "important": 190, "nucleus": 1194, "included": 294, "aphrodite": 1666, "building": 391, "wife": 856, "acids": 476, "directors": 1602, "mass": 396, "dialects": 1633, "starting": 1547, "original": 306, "represent": 1161, "all": 44, "consider": 1639, "chinese": 1191, "caused": 752, "asteroids": 756, "month": 1989, "founded": 655, "spacecraft": 1468, "follow": 1518, "religious": 358, "children": 332, "causes": 1109, "tv": 1273, "spirit": 1795, "to": 6, "aaron": 1270, "program": 580, "spain": 1265, "alberta": 682, "traditionally": 1637, "activities": 1079, "woman": 1354, "returned": 924, "egyptian": 890, "very": 152, "resistance": 1752, "antoninus": 1686, "fall": 1115, "difference": 1267, "condition": 1741, "list": 903, "joined": 1104, "large": 124, "spiderman": 1892, "small": 162, "20th": 877, "ten": 1000, "past": 1002, "rate": 468, "titles": 1987, "design": 474, "pass": 1903, "further": 364, "what": 154, "richard": 1937, "sun": 1360, "section": 1157, "version": 523, "scientists": 1735, "racing": 955, "public": 198, "contrast": 1180, "movement": 403, "full": 667, "christian": 525, "orbitals": 1796, "hours": 1075, "operating": 1843, "november": 528, "strong": 434, "search": 1961, "inspired": 1543, "allows": 1413, "experience": 810, "prior": 1073, "amount": 1049, "social": 250, "action": 693, "via": 782, "followed": 406, "family": 195, "africa": 492, "texts": 1304, "muslim": 1687, "armed": 1414, "literary": 1089, "takes": 1003, "distinct": 1062, "contains": 888, "two": 56, "6": 906, "taken": 508, "minor": 1305, "more": 43, "israel": 1885, "company": 369, "particular": 326, "known": 75, "producing": 1480, "town": 862, "none": 1821, "science": 370, "remain": 1149, "nine": 1529, "resources": 1056, "v": 1069, "male": 977, "history": 165, "ions": 1467, "stated": 737, "share": 1268, "states": 66, "numbers": 292, "sense": 697, "species": 243, "information": 486, "needs": 1819, "court": 211, "goal": 1626, "rather": 276, "ascii": 1759, "acts": 1500, "plant": 973, "intended": 1346, "derived": 621, "blood": 1434, "response": 1177, "a": 7, "short": 393, "alphabet": 658, "playing": 1779, "help": 664, "adult": 1803, "september": 472, "developed": 217, "azerbaijan": 242, "trade": 668, "held": 260, "paper": 991, "through": 79, "committee": 1731, "existence": 1076, "its": 34, "24": 1098, "25": 1078, "style": 594, "20": 592, "21": 1383, "22": 1596, "sodium": 1146, "28": 1778, "actually": 1035, "late": 241, "systems": 286, "might": 537, "good": 437, "return": 831, "food": 466, "communities": 1220, "association": 909, "easily": 1580, "always": 553, "presented": 1150, "philosophical": 1640, "ashes": 1189, "found": 102, "referred": 559, "heavy": 1221, "reactions": 1540, "england": 313, "weight": 1286, "generation": 1542, "house": 342, "energy": 231, "hard": 1830, "reduce": 1965, "idea": 749, "oil": 309, "marple": 1919, "quantum": 1164, "operation": 1591, "beyond": 1171, "event": 970, "alcohol": 1609, "robert": 885, "since": 100, "research": 291, "health": 495, "7": 937, "issue": 755, "occurs": 1240, "belief": 1250, "aramaic": 1946, "houses": 1385, "reason": 892, "base": 678, "members": 287, "put": 836, "earliest": 1017, "beginning": 648, "algae": 1405, "asl": 1055, "definition": 900, "launch": 1967, "computers": 1481, "american": 117, "major": 172, "upper": 1244, "number": 83, "done": 925, "miss": 1998, "story": 539, "temperature": 959, "script": 729, "introduction": 1945, "leading": 716, "least": 328, "station": 1332, "passed": 1197, "fought": 1949, "store": 1810, "statement": 1684, "relationship": 748, "behind": 1037, "park": 639, "part": 114, "authors": 1127, "believe": 975, "king": 522, "kind": 1435, "b": 814, "nevertheless": 1617, "determined": 1101, "marriage": 1642, "sister": 1940, "toward": 1303, "ages": 1576, "orders": 1261, "mountain": 1070, "built": 374, "depending": 1223, "majority": 736, "internal": 1134, "build": 1899, "province": 786, "play": 511, "added": 801, "electric": 1913, "albert": 1509, "sets": 1453, "reach": 1853, "most": 46, "plan": 1281, "significant": 384, "services": 679, "alpha": 926, "extremely": 1535, "had": 35, "appear": 968, "mobile": 1836, "clear": 976, "sometimes": 221, "cover": 1784, "traditional": 556, "electrons": 493, "researchers": 1650, "physics": 1287, "institutions": 1296, "sector": 1333, "thomas": 1030, "particularly": 530, "gold": 832, "find": 917, "impact": 1835, "northern": 464, "justice": 1641, "writer": 1094, "failed": 1419, "factor": 1689, "8": 971, "circle": 1736, "americium": 1263, "his": 19, "hit": 1578, "famous": 615, "grew": 1567, "rest": 886, "closely": 1251, "shared": 1586, "during": 62, "him": 97, "alexander": 293, "generally": 297, "common": 138, "activity": 1181, "x": 1411, "river": 341, "wrote": 229, "characteristics": 1758, "set": 166, "art": 148, "intelligence": 864, "culture": 404, "see": 213, "individual": 445, "are": 16, "sea": 254, "close": 633, "currently": 1064, "case": 290, "won": 348, "various": 208, "probably": 872, "numerous": 759, "available": 623, "latin": 440, "recently": 1238, "iron": 1032, "initially": 1441, "sold": 953, "attention": 1427, "aircraft": 787, "opposition": 1729, "bronze": 1963, "league": 1298, "c": 704, "last": 264, "influential": 1513, "annual": 854, "foreign": 562, "roman": 240, "became": 98, "context": 1645, "focused": 1929, "whole": 770, "experimental": 1898, "point": 262, "simple": 860, "community": 568, "deposits": 1865, "simply": 808, "church": 177, "throughout": 357, "lithium": 1748, "described": 343, "create": 867, "political": 239, "due": 159, "whom": 796, "secret": 1733, "describes": 1783, "territory": 596, "meeting": 1721, "4": 560, "lived": 1256, "flight": 1315, "1950s": 1727, "algeria": 1154, "fire": 1625, "gas": 510, "new": 59, "lives": 1448, "plants": 798, "hitchcock": 753, "look": 1734, "solid": 1738, "elections": 1613, "governor": 1031, "technical": 1671, "while": 67, "replaced": 957, "confederacy": 1941, "behavior": 1515, "octavian": 1406, "kingdom": 554, "30": 790, "century": 81, "itself": 394, "audi": 344, "italy": 997, "grant": 1767, "government": 129, "read": 979, "widely": 581, "peoples": 1382, "9": 1393, "resulting": 956, "conflict": 1310, "higher": 350, "development": 212, "literature": 874, "levels": 804, "moving": 1187, "purpose": 1440, "recent": 643, "lower": 377, "older": 1110, "spent": 1432, "analysis": 564, "person": 483, "organization": 1119, "chemistry": 1682, "historians": 1374, "shape": 1388, "atomic": 421, "world": 65, "useful": 1629, "alternative": 1211, "moses": 1875, "schopenhauer": 1209, "cut": 1884, "also": 31, "workers": 1278, "alternate": 1482, "andorra": 1274, "source": 669, "causing": 1672, "location": 1022, "remaining": 1356, "australia": 376, "march": 411, "attila": 1891, "big": 1831, "game": 821, "projects": 1379, "formal": 989, "lost": 441, "follows": 1369, "signal": 1862, "individuals": 632, "popular": 333, "essential": 1732, "mathematical": 1111, "methods": 751, "senate": 1599, "spring": 1634, "creation": 1200, "some": 42, "back": 245, "understood": 1925, "towards": 789, "examples": 719, "scale": 1485, "decision": 1320, "per": 304, "religion": 792, "civilization": 1874, "temple": 1294, "be": 22, "run": 857, "bc": 413, "processing": 1707, "agreement": 1618, "refused": 1644, "by": 13, "faith": 1558, "goods": 1670, "range": 336, "mouth": 1600, "into": 54, "within": 161, "nothing": 1910, "primarily": 889, "france": 402, "measured": 1786, "question": 1336, "long": 189, "mountains": 1010, "himself": 334, "jewish": 690, "potassium": 1512, "atlantic": 1423, "library": 1982, "atom": 631, "russian": 733, "line": 299, "active": 965, "directed": 1391, "skull": 1792, "characteristic": 1926, "up": 105, "us": 122, "uk": 1426, "similar": 203, "called": 84, "associated": 484, "defined": 614, "m": 1018, "influence": 526, "metals": 501, "single": 271, "diverse": 1869, "amounts": 1934, "peace": 922, "application": 1524, "recognition": 1978, "income": 1605, "department": 1033, "artistic": 1815, "elements": 296, "problems": 505, "william": 725, "meaning": 318, "allowing": 1611, "structure": 442, "land": 218, "e": 1460, "algorithm": 825, "age": 270, "required": 606, "orbit": 1457, "2002": 932, "2003": 939, "2000": 985, "2001": 1066, "2006": 595, "2007": 618, "2004": 1083, "2005": 797, "far": 480, "2008": 597, "2009": 469, "requires": 1572, "having": 273, "once": 462, "code": 823, "results": 739, "existing": 1975, "go": 1043, "ammonia": 432, "issues": 816, "asphalt": 1969, "turkish": 1454, "concerned": 1870, "young": 447, "huxley": 1669, "languages": 225, "alkanes": 1208, "stable": 1080, "include": 139, "sent": 880, "wave": 1484, "ankara": 1067, "electron": 524, "continued": 409, "entire": 901, "positions": 1688, "notes": 1205, "race": 1063, "noted": 967, "smaller": 657, "mediterranean": 1846, "modified": 1804, "video": 1621, "acid": 281, "plays": 893, "power": 192, "giving": 1494, "expressed": 1173, "practices": 1750, "access": 1011, "19th": 628, "indian": 1041, "capital": 436, "body": 257, "led": 247, "degree": 1028, "exchange": 1861, "respectively": 1128, "commercial": 841, "believed": 456, "objects": 714, "poverty": 1144, "others": 197, "extreme": 948, "great": 185, "receive": 1568, "involved": 904, "larger": 533, "alaska": 520, "leaving": 1503, "suggests": 1571, "products": 651, "defeat": 1696, "makes": 902, "composed": 1176, "named": 305, "apple": 237, "heart": 1446, "egypt": 674, "win": 1373, "private": 507, "names": 663, "motor": 1855, "use": 69, "from": 17, "remains": 574, "next": 346, "few": 235, "asteroid": 1816, "themselves": 620, "parliament": 1508, "comparison": 1190, "started": 870, "becomes": 1275, "freedom": 1458, "occurred": 1471, "rare": 1827, "iii": 1693, "appointed": 1034, "women": 779, "account": 1199, "animals": 498, "f": 1231, "this": 26, "of": 3, "control": 186, "process": 317, "tax": 1353, "high": 145, "effectively": 1897, "something": 1124, "bones": 1690, "dominant": 1991, "voice": 1825, "native": 722, "united": 109, "pure": 1697, "six": 609, "poetry": 1420, "regions": 673, "located": 457, "animal": 795, "instead": 363, "buildings": 1001, "farm": 1284, "philosophy": 460, "collection": 1085, "ethnic": 1761, "emperor": 1449, "light": 395, "lines": 684, "element": 521, "chief": 1272, "allow": 1006, "alloy": 1993, "subsequently": 1439, "farming": 1931, "move": 1051, "produced": 226, "including": 85, "mentioned": 1575, "agricultural": 783, "1": 210, "le": 1894, "la": 1212, "ships": 1764, "labor": 1351, "permanent": 1705, "2015": 952, "2014": 659, "2011": 452, "2010": 339, "2013": 636, "2012": 515, "greater": 494, "orthodox": 1692, "camus": 1665, "material": 518, "front": 1131, "republican": 1338, "day": 222, "worlds": 784, "february": 600, "university": 216, "identified": 1202, "magnitude": 1283, "related": 465, "society": 331, "books": 416, "measure": 1401, "our": 536, "agriculture": 943, "special": 735, "out": 119, "critics": 1488, "cause": 477, "red": 927, "completely": 1326, "york": 471, "philip": 1680, "organic": 1538, "g": 1812, "islamic": 1276, "could": 108, "times": 230, "length": 761, "hence": 1828, "south": 128, "powerful": 1443, "jesus": 1728, "reached": 652, "imperial": 1772, "quality": 1551, "ancient": 228, "festival": 1117, "unknown": 1704, "system": 118, "relations": 1165, "their": 33, "attack": 811, "final": 381, "shell": 1667, "academy": 612, "completed": 1172, "amsterdam": 390, "environmental": 1606, "argon": 1498, "aarhus": 543, "july": 435, "steel": 1519, "defense": 1106, "visited": 1959, "have": 28, "need": 771, "border": 1257, "viewed": 1974, "catholic": 590, "angle": 1021, "able": 497, "contact": 1532, "instance": 1225, "which": 23, "subject": 635, "worldwide": 1060, "centre": 718, "who": 48, "said": 244, "eight": 1129, "device": 1523, "achilles": 851, "class": 677, "disease": 1123, "face": 1370, "normally": 1864, "fact": 491, "text": 1013, "agreed": 1986, "charles": 1012, "soldiers": 1464, "debate": 1951, "principal": 1920, "apollo": 316, "based": 149, "knowledge": 661, "should": 268, "molecules": 1774, "fuel": 1511, "employed": 1763, "local": 295, "abba": 1087, "means": 335, "overall": 1473, "ones": 1038, "words": 345, "argues": 1739, "areas": 312, "following": 180, "processes": 1400, "brain": 1489, "conditions": 717, "married": 1226, "taxes": 1956, "she": 125, "contain": 1139, "fixed": 1972, "view": 454, "europe": 256, "albania": 613, "exists": 1793, "national": 135, "humans": 940, "edition": 1683, "computer": 398, "austrian": 1280, "creating": 1818, "record": 805, "nuclear": 923, "tend": 1293, "state": 68, "closed": 1362, "limit": 1889, "ability": 1005, "importance": 1279, "armenia": 418, "police": 1266, "distribution": 1514, "career": 881, "taking": 941, "decay": 1230, "equal": 919, "etc": 1204, "figures": 1442, "wall": 1985, "ataxia": 1948, "table": 978, "winning": 1905, "provinces": 1206, "addition": 407, "isotopes": 1848, "corresponding": 1845, "both": 78, "am": 1718, "goddess": 1387, "sales": 1886, "angles": 1691, "covered": 1384, "general": 151, "present": 365, "novel": 571, "abandoned": 1895, "unlike": 1072, "appearance": 1421, "as": 9, "value": 481, "will": 106, "antigua": 1585, "supply": 1807, "almost": 360, "thus": 219, "site": 1009, "surface": 540, "helped": 1871, "claimed": 858, "arabic": 252, "orbital": 1584, "perhaps": 1108, "began": 188, "radiation": 1930, "member": 572, "buddhism": 1936, "parts": 383, "largest": 215, "units": 852, "party": 400, "difficult": 812, "practice": 744, "novels": 1289, "upon": 385, "effect": 549, "ion": 1915, "frequently": 1328, "afghan": 1890, "scholars": 964, "identity": 1716, "keep": 1787, "off": 624, "center": 531, "i": 115, "well": 99, "fighting": 1762, "thought": 324, "command": 1093, "english": 205, "position": 433, "soviet": 438, "less": 191, "increasingly": 1528, "domestic": 1677, "sources": 883, "lincolns": 1766, "paul": 1635, "antisemitism": 724, "bell": 485, "lake": 1668, "hall": 1447, "reasons": 1607, "other": 36, "aruba": 1604, "ada": 666, "usage": 1554, "match": 1358, "tests": 1927, "increased": 700, "articles": 996, "increases": 1574, "historic": 1858, "five": 329, "know": 1008, "press": 1857, "immediately": 1348, "prominent": 1169, "loss": 1344, "lincoln": 265, "necessary": 1004, "like": 132, "success": 788, "alkali": 548, "james": 1015, "become": 238, "works": 214, "italian": 1527, "because": 91, "classical": 616, "sequence": 1805, "village": 1569, "authority": 969, "growth": 439, "band": 1698, "proper": 1878, "home": 311, "empire": 302, "peter": 1375, "transport": 1399, "lead": 847, "avoid": 1643, "philosopher": 1638, "does": 275, "leader": 1526, "medieval": 1314, "expansion": 1653, "pressure": 1345, "although": 116, "stage": 791, "gained": 1649, "about": 64, "actual": 1651, "carried": 1376, "universe": 1389, "albanian": 1234, "recognized": 1300, "andes": 1971, "introduced": 455, "software": 1321, "own": 163, "letters": 557, "previously": 1151, "washington": 1136, "female": 1245, "artists": 802, "roads": 1939, "van": 1045, "additional": 960, "museum": 626, "reduction": 1900, "awarded": 1479, "continental": 1112, "spread": 1096, "naturally": 1765, "function": 696, "north": 140, "but": 32, "volume": 1546, "construction": 622, "courts": 1092, "highest": 728, "he": 25, "made": 88, "places": 1271, "whether": 583, "cells": 1380, "official": 542, "signed": 1163, "placed": 1071, "below": 617, "stories": 891, "problem": 726, "minutes": 1841, "display": 1854, "supreme": 1162, "deaths": 1756, "universal": 1476, "abbot": 1749, "aristotle": 611, "education": 499, "autism": 720, "functions": 1182, "compared": 840, "variety": 642, "percent": 715, "40": 1710, "book": 187, "branch": 1521, "canada": 758, "star": 850, "june": 519, "ultimately": 1837, "amphibians": 1583, "friends": 1410, "exposure": 1829, "\u2013": 202, "\u2014": 1879, "bce": 1655, "factors": 1159, "rule": 999, "write": 1243} ================================================ FILE: nlp_class2/word2vec.py ================================================ # https://deeplearningcourses.com/c/natural-language-processing-with-deep-learning-in-python # https://udemy.com/natural-language-processing-with-deep-learning-in-python from __future__ import print_function, division from builtins import range # Note: you may need to update your version of future # sudo pip install -U future import json import numpy as np import matplotlib.pyplot as plt from scipy.special import expit as sigmoid from sklearn.utils import shuffle from datetime import datetime # from util import find_analogies from scipy.spatial.distance import cosine as cos_dist from sklearn.metrics.pairwise import pairwise_distances from glob import glob import os import sys import string sys.path.append(os.path.abspath('..')) from rnn_class.brown import get_sentences_with_word2idx_limit_vocab as get_brown # unfortunately these work different ways def remove_punctuation_2(s): return s.translate(None, string.punctuation) def remove_punctuation_3(s): return s.translate(str.maketrans('','',string.punctuation)) if sys.version.startswith('2'): remove_punctuation = remove_punctuation_2 else: remove_punctuation = remove_punctuation_3 def get_wiki(): V = 20000 files = glob('../large_files/enwiki*.txt') all_word_counts = {} for f in files: for line in open(f): if line and line[0] not in '[*-|=\{\}': s = remove_punctuation(line).lower().split() if len(s) > 1: for word in s: if word not in all_word_counts: all_word_counts[word] = 0 all_word_counts[word] += 1 print("finished counting") V = min(V, len(all_word_counts)) all_word_counts = sorted(all_word_counts.items(), key=lambda x: x[1], reverse=True) top_words = [w for w, count in all_word_counts[:V-1]] + [''] word2idx = {w:i for i, w in enumerate(top_words)} unk = word2idx[''] sents = [] for f in files: for line in open(f): if line and line[0] not in '[*-|=\{\}': s = remove_punctuation(line).lower().split() if len(s) > 1: # if a word is not nearby another word, there won't be any context! # and hence nothing to train! sent = [word2idx[w] if w in word2idx else unk for w in s] sents.append(sent) return sents, word2idx def train_model(savedir): # get the data sentences, word2idx = get_wiki() #get_brown() # number of unique words vocab_size = len(word2idx) # config window_size = 5 learning_rate = 0.025 final_learning_rate = 0.0001 num_negatives = 5 # number of negative samples to draw per input word epochs = 20 D = 50 # word embedding size # learning rate decay learning_rate_delta = (learning_rate - final_learning_rate) / epochs # params W = np.random.randn(vocab_size, D) # input-to-hidden V = np.random.randn(D, vocab_size) # hidden-to-output # distribution for drawing negative samples p_neg = get_negative_sampling_distribution(sentences, vocab_size) # save the costs to plot them per iteration costs = [] # number of total words in corpus total_words = sum(len(sentence) for sentence in sentences) print("total number of words in corpus:", total_words) # for subsampling each sentence threshold = 1e-5 p_drop = 1 - np.sqrt(threshold / p_neg) # train the model for epoch in range(epochs): # randomly order sentences so we don't always see # sentences in the same order np.random.shuffle(sentences) # accumulate the cost cost = 0 counter = 0 t0 = datetime.now() for sentence in sentences: # keep only certain words based on p_neg sentence = [w for w in sentence \ if np.random.random() < (1 - p_drop[w]) ] if len(sentence) < 2: continue # randomly order words so we don't always see # samples in the same order randomly_ordered_positions = np.random.choice( len(sentence), size=len(sentence),#np.random.randint(1, len(sentence) + 1), replace=False, ) for pos in randomly_ordered_positions: # the middle word word = sentence[pos] # get the positive context words/negative samples context_words = get_context(pos, sentence, window_size) neg_word = np.random.choice(vocab_size, p=p_neg) targets = np.array(context_words) # do one iteration of stochastic gradient descent c = sgd(word, targets, 1, learning_rate, W, V) cost += c c = sgd(neg_word, targets, 0, learning_rate, W, V) cost += c counter += 1 if counter % 100 == 0: sys.stdout.write("processed %s / %s\r" % (counter, len(sentences))) sys.stdout.flush() # break # print stuff so we don't stare at a blank screen dt = datetime.now() - t0 print("epoch complete:", epoch, "cost:", cost, "dt:", dt) # save the cost costs.append(cost) # update the learning rate learning_rate -= learning_rate_delta # plot the cost per iteration plt.plot(costs) plt.show() # save the model if not os.path.exists(savedir): os.mkdir(savedir) with open('%s/word2idx.json' % savedir, 'w') as f: json.dump(word2idx, f) np.savez('%s/weights.npz' % savedir, W, V) # return the model return word2idx, W, V def get_negative_sampling_distribution(sentences, vocab_size): # Pn(w) = prob of word occuring # we would like to sample the negative samples # such that words that occur more often # should be sampled more often word_freq = np.zeros(vocab_size) word_count = sum(len(sentence) for sentence in sentences) for sentence in sentences: for word in sentence: word_freq[word] += 1 # smooth it p_neg = word_freq**0.75 # normalize it p_neg = p_neg / p_neg.sum() assert(np.all(p_neg > 0)) return p_neg def get_context(pos, sentence, window_size): # input: # a sentence of the form: x x x x c c c pos c c c x x x x # output: # the context word indices: c c c c c c start = max(0, pos - window_size) end_ = min(len(sentence), pos + window_size) context = [] for ctx_pos, ctx_word_idx in enumerate(sentence[start:end_], start=start): if ctx_pos != pos: # don't include the input word itself as a target context.append(ctx_word_idx) return context def sgd(input_, targets, label, learning_rate, W, V): # W[input_] shape: D # V[:,targets] shape: D x N # activation shape: N # print("input_:", input_, "targets:", targets) activation = W[input_].dot(V[:,targets]) prob = sigmoid(activation) # gradients gV = np.outer(W[input_], prob - label) # D x N gW = np.sum((prob - label)*V[:,targets], axis=1) # D V[:,targets] -= learning_rate*gV # D x N W[input_] -= learning_rate*gW # D # return cost (binary cross entropy) cost = label * np.log(prob + 1e-10) + (1 - label) * np.log(1 - prob + 1e-10) return cost.sum() def load_model(savedir): with open('%s/word2idx.json' % savedir) as f: word2idx = json.load(f) npz = np.load('%s/weights.npz' % savedir) W = npz['arr_0'] V = npz['arr_1'] return word2idx, W, V def analogy(pos1, neg1, pos2, neg2, word2idx, idx2word, W): V, D = W.shape # don't actually use pos2 in calculation, just print what's expected print("testing: %s - %s = %s - %s" % (pos1, neg1, pos2, neg2)) for w in (pos1, neg1, pos2, neg2): if w not in word2idx: print("Sorry, %s not in word2idx" % w) return p1 = W[word2idx[pos1]] n1 = W[word2idx[neg1]] p2 = W[word2idx[pos2]] n2 = W[word2idx[neg2]] vec = p1 - n1 + n2 distances = pairwise_distances(vec.reshape(1, D), W, metric='cosine').reshape(V) idx = distances.argsort()[:10] # pick one that's not p1, n1, or n2 best_idx = -1 keep_out = [word2idx[w] for w in (pos1, neg1, neg2)] # print("keep_out:", keep_out) for i in idx: if i not in keep_out: best_idx = i break # print("best_idx:", best_idx) print("got: %s - %s = %s - %s" % (pos1, neg1, idx2word[best_idx], neg2)) print("closest 10:") for i in idx: print(idx2word[i], distances[i]) print("dist to %s:" % pos2, cos_dist(p2, vec)) def test_model(word2idx, W, V): # there are multiple ways to get the "final" word embedding # We = (W + V.T) / 2 # We = W idx2word = {i:w for w, i in word2idx.items()} for We in (W, (W + V.T) / 2): print("**********") analogy('king', 'man', 'queen', 'woman', word2idx, idx2word, We) analogy('king', 'prince', 'queen', 'princess', word2idx, idx2word, We) analogy('miami', 'florida', 'dallas', 'texas', word2idx, idx2word, We) analogy('einstein', 'scientist', 'picasso', 'painter', word2idx, idx2word, We) analogy('japan', 'sushi', 'germany', 'bratwurst', word2idx, idx2word, We) analogy('man', 'woman', 'he', 'she', word2idx, idx2word, We) analogy('man', 'woman', 'uncle', 'aunt', word2idx, idx2word, We) analogy('man', 'woman', 'brother', 'sister', word2idx, idx2word, We) analogy('man', 'woman', 'husband', 'wife', word2idx, idx2word, We) analogy('man', 'woman', 'actor', 'actress', word2idx, idx2word, We) analogy('man', 'woman', 'father', 'mother', word2idx, idx2word, We) analogy('heir', 'heiress', 'prince', 'princess', word2idx, idx2word, We) analogy('nephew', 'niece', 'uncle', 'aunt', word2idx, idx2word, We) analogy('france', 'paris', 'japan', 'tokyo', word2idx, idx2word, We) analogy('france', 'paris', 'china', 'beijing', word2idx, idx2word, We) analogy('february', 'january', 'december', 'november', word2idx, idx2word, We) analogy('france', 'paris', 'germany', 'berlin', word2idx, idx2word, We) analogy('week', 'day', 'year', 'month', word2idx, idx2word, We) analogy('week', 'day', 'hour', 'minute', word2idx, idx2word, We) analogy('france', 'paris', 'italy', 'rome', word2idx, idx2word, We) analogy('paris', 'france', 'rome', 'italy', word2idx, idx2word, We) analogy('france', 'french', 'england', 'english', word2idx, idx2word, We) analogy('japan', 'japanese', 'china', 'chinese', word2idx, idx2word, We) analogy('china', 'chinese', 'america', 'american', word2idx, idx2word, We) analogy('japan', 'japanese', 'italy', 'italian', word2idx, idx2word, We) analogy('japan', 'japanese', 'australia', 'australian', word2idx, idx2word, We) analogy('walk', 'walking', 'swim', 'swimming', word2idx, idx2word, We) if __name__ == '__main__': word2idx, W, V = train_model('w2v_model') # word2idx, W, V = load_model('w2v_model') test_model(word2idx, W, V) ================================================ FILE: nlp_class2/word2vec_tf.py ================================================ # https://deeplearningcourses.com/c/natural-language-processing-with-deep-learning-in-python # https://udemy.com/natural-language-processing-with-deep-learning-in-python from __future__ import print_function, division from builtins import range # Note: you may need to update your version of future # sudo pip install -U future import json import tensorflow as tf import numpy as np import matplotlib.pyplot as plt from scipy.special import expit as sigmoid from sklearn.utils import shuffle from datetime import datetime # from util import find_analogies from scipy.spatial.distance import cosine as cos_dist from sklearn.metrics.pairwise import pairwise_distances from glob import glob import os import sys import string if tf.__version__.startswith('2'): tf.compat.v1.disable_eager_execution() # unfortunately these work different ways def remove_punctuation_2(s): return s.translate(None, string.punctuation) def remove_punctuation_3(s): return s.translate(str.maketrans('','',string.punctuation)) if sys.version.startswith('2'): remove_punctuation = remove_punctuation_2 else: remove_punctuation = remove_punctuation_3 def download_text8(dst): pass def get_text8(): # download the data if it is not yet in the right place path = '../large_files/text8' if not os.path.exists(path): download_text8(path) words = open(path).read() word2idx = {} sents = [[]] count = 0 for word in words.split(): if word not in word2idx: word2idx[word] = count count += 1 sents[0].append(word2idx[word]) print("count:", count) return sents, word2idx def get_wiki(): V = 20000 files = glob('../large_files/enwiki*.txt') all_word_counts = {} for f in files: for line in open(f): if line and line[0] not in '[*-|=\{\}': s = remove_punctuation(line).lower().split() if len(s) > 1: for word in s: if word not in all_word_counts: all_word_counts[word] = 0 all_word_counts[word] += 1 print("finished counting") V = min(V, len(all_word_counts)) all_word_counts = sorted(all_word_counts.items(), key=lambda x: x[1], reverse=True) top_words = [w for w, count in all_word_counts[:V-1]] + [''] word2idx = {w:i for i, w in enumerate(top_words)} unk = word2idx[''] sents = [] for f in files: for line in open(f): if line and line[0] not in '[*-|=\{\}': s = remove_punctuation(line).lower().split() if len(s) > 1: # if a word is not nearby another word, there won't be any context! # and hence nothing to train! sent = [word2idx[w] if w in word2idx else unk for w in s] sents.append(sent) return sents, word2idx def train_model(savedir): # get the data sentences, word2idx = get_wiki() #get_text8() # number of unique words vocab_size = len(word2idx) # config window_size = 10 learning_rate = 0.025 final_learning_rate = 0.0001 num_negatives = 5 # number of negative samples to draw per input word samples_per_epoch = int(1e5) epochs = 20 D = 50 # word embedding size # learning rate decay learning_rate_delta = (learning_rate - final_learning_rate) / epochs # distribution for drawing negative samples p_neg = get_negative_sampling_distribution(sentences) # params W = np.random.randn(vocab_size, D).astype(np.float32) # input-to-hidden V = np.random.randn(D, vocab_size).astype(np.float32) # hidden-to-output # create the model tf_input = tf.compat.v1.placeholder(tf.int32, shape=(None,)) tf_negword = tf.compat.v1.placeholder(tf.int32, shape=(None,)) tf_context = tf.compat.v1.placeholder(tf.int32, shape=(None,)) # targets (context) tfW = tf.Variable(W) tfV = tf.Variable(V.T) # biases = tf.Variable(np.zeros(vocab_size, dtype=np.float32)) def dot(A, B): C = A * B return tf.reduce_sum(input_tensor=C, axis=1) # correct middle word output emb_input = tf.nn.embedding_lookup(params=tfW, ids=tf_input) # 1 x D emb_output = tf.nn.embedding_lookup(params=tfV, ids=tf_context) # N x D correct_output = dot(emb_input, emb_output) # N # emb_input = tf.transpose(emb_input, (1, 0)) # correct_output = tf.matmul(emb_output, emb_input) pos_loss = tf.nn.sigmoid_cross_entropy_with_logits( labels=tf.ones(tf.shape(input=correct_output)), logits=correct_output) # incorrect middle word output emb_input = tf.nn.embedding_lookup(params=tfW, ids=tf_negword) incorrect_output = dot(emb_input, emb_output) # emb_input = tf.transpose(emb_input, (1, 0)) # incorrect_output = tf.matmul(emb_output, emb_input) neg_loss = tf.nn.sigmoid_cross_entropy_with_logits( labels=tf.zeros(tf.shape(input=incorrect_output)), logits=incorrect_output) # total loss loss = tf.reduce_mean(input_tensor=pos_loss) + tf.reduce_mean(input_tensor=neg_loss) # output = hidden.dot(tfV) # loss # neither of the built-in TF functions work well # per_sample_loss = tf.nn.nce_loss( # # per_sample_loss = tf.nn.sampled_softmax_loss( # weights=tfV, # biases=biases, # labels=tfY, # inputs=hidden, # num_sampled=num_negatives, # num_classes=vocab_size, # ) # loss = tf.reduce_mean(per_sample_loss) # optimizer # train_op = tf.train.GradientDescentOptimizer(learning_rate).minimize(loss) train_op = tf.compat.v1.train.MomentumOptimizer(0.1, momentum=0.9).minimize(loss) # train_op = tf.train.AdamOptimizer(1e-2).minimize(loss) # make session session = tf.compat.v1.Session() init_op = tf.compat.v1.global_variables_initializer() session.run(init_op) # save the costs to plot them per iteration costs = [] # number of total words in corpus total_words = sum(len(sentence) for sentence in sentences) print("total number of words in corpus:", total_words) # for subsampling each sentence threshold = 1e-5 p_drop = 1 - np.sqrt(threshold / p_neg) # train the model for epoch in range(epochs): # randomly order sentences so we don't always see # sentences in the same order np.random.shuffle(sentences) # accumulate the cost cost = 0 counter = 0 inputs = [] targets = [] negwords = [] t0 = datetime.now() for sentence in sentences: # keep only certain words based on p_neg sentence = [w for w in sentence \ if np.random.random() < (1 - p_drop[w]) ] if len(sentence) < 2: continue # randomly order words so we don't always see # samples in the same order randomly_ordered_positions = np.random.choice( len(sentence), # size=np.random.randint(1, len(sentence) + 1), size=len(sentence), replace=False, ) for j, pos in enumerate(randomly_ordered_positions): # the middle word word = sentence[pos] # get the positive context words/negative samples context_words = get_context(pos, sentence, window_size) neg_word = np.random.choice(vocab_size, p=p_neg) n = len(context_words) inputs += [word]*n negwords += [neg_word]*n # targets = np.concatenate([targets, targets_]) targets += context_words # _, c = session.run( # (train_op, loss), # feed_dict={ # tf_input: [word], # tf_negword: [neg_word], # tf_context: targets_, # } # ) # cost += c if len(inputs) >= 128: _, c = session.run( (train_op, loss), feed_dict={ tf_input: inputs, tf_negword: negwords, tf_context: targets, } ) cost += c # reset inputs = [] targets = [] negwords = [] counter += 1 if counter % 100 == 0: sys.stdout.write("processed %s / %s\r" % (counter, len(sentences))) sys.stdout.flush() # break # print stuff so we don't stare at a blank screen dt = datetime.now() - t0 print("epoch complete:", epoch, "cost:", cost, "dt:", dt) # save the cost costs.append(cost) # update the learning rate learning_rate -= learning_rate_delta # plot the cost per iteration plt.plot(costs) plt.show() # get the params W, VT = session.run((tfW, tfV)) V = VT.T # save the model if not os.path.exists(savedir): os.mkdir(savedir) with open('%s/word2idx.json' % savedir, 'w') as f: json.dump(word2idx, f) np.savez('%s/weights.npz' % savedir, W, V) # return the model return word2idx, W, V def get_negative_sampling_distribution(sentences): # Pn(w) = prob of word occuring # we would like to sample the negative samples # such that words that occur more often # should be sampled more often word_freq = {} word_count = sum(len(sentence) for sentence in sentences) for sentence in sentences: for word in sentence: if word not in word_freq: word_freq[word] = 0 word_freq[word] += 1 # vocab size V = len(word_freq) p_neg = np.zeros(V) for j in range(V): p_neg[j] = word_freq[j]**0.75 # normalize it p_neg = p_neg / p_neg.sum() assert(np.all(p_neg > 0)) return p_neg def get_context(pos, sentence, window_size): # input: # a sentence of the form: x x x x c c c pos c c c x x x x # output: # the context word indices: c c c c c c start = max(0, pos - window_size) end_ = min(len(sentence), pos + window_size) context = [] for ctx_pos, ctx_word_idx in enumerate(sentence[start:end_], start=start): if ctx_pos != pos: # don't include the input word itself as a target context.append(ctx_word_idx) return context def load_model(savedir): with open('%s/word2idx.json' % savedir) as f: word2idx = json.load(f) npz = np.load('%s/weights.npz' % savedir) W = npz['arr_0'] V = npz['arr_1'] return word2idx, W, V def analogy(pos1, neg1, pos2, neg2, word2idx, idx2word, W): V, D = W.shape # don't actually use pos2 in calculation, just print what's expected print("testing: %s - %s = %s - %s" % (pos1, neg1, pos2, neg2)) for w in (pos1, neg1, pos2, neg2): if w not in word2idx: print("Sorry, %s not in word2idx" % w) return p1 = W[word2idx[pos1]] n1 = W[word2idx[neg1]] p2 = W[word2idx[pos2]] n2 = W[word2idx[neg2]] vec = p1 - n1 + n2 distances = pairwise_distances(vec.reshape(1, D), W, metric='cosine').reshape(V) idx = distances.argsort()[:10] # pick one that's not p1, n1, or n2 best_idx = -1 keep_out = [word2idx[w] for w in (pos1, neg1, neg2)] for i in idx: if i not in keep_out: best_idx = i break print("got: %s - %s = %s - %s" % (pos1, neg1, idx2word[idx[0]], neg2)) print("closest 10:") for i in idx: print(idx2word[i], distances[i]) print("dist to %s:" % pos2, cos_dist(p2, vec)) def test_model(word2idx, W, V): # there are multiple ways to get the "final" word embedding # We = (W + V.T) / 2 # We = W idx2word = {i:w for w, i in word2idx.items()} for We in (W, (W + V.T) / 2): print("**********") analogy('king', 'man', 'queen', 'woman', word2idx, idx2word, We) analogy('king', 'prince', 'queen', 'princess', word2idx, idx2word, We) analogy('miami', 'florida', 'dallas', 'texas', word2idx, idx2word, We) analogy('einstein', 'scientist', 'picasso', 'painter', word2idx, idx2word, We) analogy('japan', 'sushi', 'england', 'bread', word2idx, idx2word, We) analogy('man', 'woman', 'he', 'she', word2idx, idx2word, We) analogy('man', 'woman', 'uncle', 'aunt', word2idx, idx2word, We) analogy('man', 'woman', 'brother', 'sister', word2idx, idx2word, We) analogy('man', 'woman', 'husband', 'wife', word2idx, idx2word, We) analogy('man', 'woman', 'actor', 'actress', word2idx, idx2word, We) analogy('man', 'woman', 'father', 'mother', word2idx, idx2word, We) analogy('heir', 'heiress', 'prince', 'princess', word2idx, idx2word, We) analogy('nephew', 'niece', 'uncle', 'aunt', word2idx, idx2word, We) analogy('france', 'paris', 'japan', 'tokyo', word2idx, idx2word, We) analogy('france', 'paris', 'china', 'beijing', word2idx, idx2word, We) analogy('february', 'january', 'december', 'november', word2idx, idx2word, We) analogy('france', 'paris', 'germany', 'berlin', word2idx, idx2word, We) analogy('week', 'day', 'year', 'month', word2idx, idx2word, We) analogy('week', 'day', 'hour', 'minute', word2idx, idx2word, We) analogy('france', 'paris', 'italy', 'rome', word2idx, idx2word, We) analogy('paris', 'france', 'rome', 'italy', word2idx, idx2word, We) analogy('france', 'french', 'england', 'english', word2idx, idx2word, We) analogy('japan', 'japanese', 'china', 'chinese', word2idx, idx2word, We) analogy('china', 'chinese', 'america', 'american', word2idx, idx2word, We) analogy('japan', 'japanese', 'italy', 'italian', word2idx, idx2word, We) analogy('japan', 'japanese', 'australia', 'australian', word2idx, idx2word, We) analogy('walk', 'walking', 'swim', 'swimming', word2idx, idx2word, We) if __name__ == '__main__': word2idx, W, V = train_model('w2v_tf') # word2idx, W, V = load_model('w2v_tf') test_model(word2idx, W, V) ================================================ FILE: nlp_class2/word2vec_theano.py ================================================ # https://deeplearningcourses.com/c/natural-language-processing-with-deep-learning-in-python # https://udemy.com/natural-language-processing-with-deep-learning-in-python from __future__ import print_function, division from builtins import range # Note: you may need to update your version of future # sudo pip install -U future import json import numpy as np import matplotlib.pyplot as plt from scipy.special import expit as sigmoid from sklearn.utils import shuffle from datetime import datetime # from util import find_analogies from scipy.spatial.distance import cosine as cos_dist from sklearn.metrics.pairwise import pairwise_distances from glob import glob import os import sys import string import theano import theano.tensor as T # unfortunately these work different ways def remove_punctuation_2(s): return s.translate(None, string.punctuation) def remove_punctuation_3(s): return s.translate(str.maketrans('','',string.punctuation)) if sys.version.startswith('2'): remove_punctuation = remove_punctuation_2 else: remove_punctuation = remove_punctuation_3 def get_wiki(): V = 20000 files = glob('../large_files/enwiki*.txt') all_word_counts = {} for f in files: for line in open(f): if line and line[0] not in '[*-|=\{\}': s = remove_punctuation(line).lower().split() if len(s) > 1: for word in s: if word not in all_word_counts: all_word_counts[word] = 0 all_word_counts[word] += 1 print("finished counting") V = min(V, len(all_word_counts)) all_word_counts = sorted(all_word_counts.items(), key=lambda x: x[1], reverse=True) top_words = [w for w, count in all_word_counts[:V-1]] + [''] word2idx = {w:i for i, w in enumerate(top_words)} unk = word2idx[''] sents = [] for f in files: for line in open(f): if line and line[0] not in '[*-|=\{\}': s = remove_punctuation(line).lower().split() if len(s) > 1: # if a word is not nearby another word, there won't be any context! # and hence nothing to train! sent = [word2idx[w] if w in word2idx else unk for w in s] sents.append(sent) return sents, word2idx def train_model(savedir): # get the data sentences, word2idx = get_wiki() #get_text8() # number of unique words vocab_size = len(word2idx) # config window_size = 5 learning_rate = 0.025*128 final_learning_rate = 0.0001*128 num_negatives = 5 # number of negative samples to draw per input word samples_per_epoch = int(1e5) epochs = 1 D = 50 # word embedding size # learning rate decay learning_rate_delta = (learning_rate - final_learning_rate) / epochs # learning_rate_delta = 0 # params W = np.random.randn(vocab_size, D) / np.sqrt(D + vocab_size) # input-to-hidden V = np.random.randn(D, vocab_size) / np.sqrt(D + vocab_size) # hidden-to-output # theano variables thW = theano.shared(W) thV = theano.shared(V) # theano placeholders th_pos_word = T.ivector('pos_word') th_neg_word = T.ivector('neg_word') th_context = T.ivector('context') th_lr = T.scalar('learning_rate') # get the output and loss input_words = T.concatenate([th_pos_word, th_neg_word]) W_subset = thW[input_words] dbl_context = T.concatenate([th_context, th_context]) V_subset = thV[:, dbl_context] logits = W_subset.dot(V_subset) out = T.nnet.sigmoid(logits) n = th_pos_word.shape[0] th_cost = -T.log(out[:n]).mean() - T.log(1 - out[n:]).mean() # specify the updates gW = T.grad(th_cost, W_subset) gV = T.grad(th_cost, V_subset) W_update = T.inc_subtensor(W_subset, -th_lr*gW) V_update = T.inc_subtensor(V_subset, -th_lr*gV) updates = [(thW, W_update), (thV, V_update)] # full update # gW, gV = T.grad(th_cost, [thW, thV]) # vW = theano.shared(np.zeros_like(W)) # vV = theano.shared(np.zeros_like(V)) # new_vW = 0.9*vW - th_lr*gW # new_vV = 0.9*vV - th_lr*gV # W_update = thW + new_vW # V_update = thV + new_vV # updates = [(thW, W_update), (thV, V_update), (vW, new_vW), (vV, new_vV)] # make callable functions cost_op = theano.function( inputs=[th_pos_word, th_neg_word, th_context], outputs=th_cost, # allow_input_downcast=True ) cost_train_op = theano.function( inputs=[th_pos_word, th_neg_word, th_context, th_lr], outputs=th_cost, updates=updates, # allow_input_downcast=True ) # distribution for drawing negative samples p_neg = get_negative_sampling_distribution(sentences, vocab_size) # save the costs to plot them per iteration costs = [] # number of total words in corpus total_words = sum(len(sentence) for sentence in sentences) print("total number of words in corpus:", total_words) # keep only certain words based on p_neg threshold = 1e-5 p_drop = 1 - np.sqrt(threshold / p_neg) # train the model for epoch in range(epochs): # randomly order sentences so we don't always see # sentences in the same order np.random.shuffle(sentences) # accumulate the cost cost = 0 counter = 0 inputs = [] targets = [] negwords = [] t0 = datetime.now() for sentence in sentences: # keep only certain words based on p_neg sentence = [w for w in sentence \ if np.random.random() < (1 - p_drop[w]) ] if len(sentence) < 2: continue # randomly order words so we don't always see # samples in the same order randomly_ordered_positions = np.random.choice( len(sentence), size=len(sentence), replace=False, ) for pos in randomly_ordered_positions: # the middle word word = sentence[pos] # get the positive context words/negative samples context_words = get_context(pos, sentence, window_size) neg_word = np.random.choice(vocab_size, p=p_neg) n = len(context_words) inputs += [word]*n negwords += [neg_word]*n targets += context_words if len(inputs) >= 128: c = cost_train_op(inputs, negwords, targets, learning_rate) cost += c if np.isnan(c): print("c is nan:", c) exit() # reset inputs = [] targets = [] negwords = [] counter += 1 if counter % 100 == 0: sys.stdout.write("processed %s / %s, cost: %s\r" % (counter, len(sentences), c)) sys.stdout.flush() # print stuff so we don't stare at a blank screen dt = datetime.now() - t0 print("epoch complete:", epoch, "cost:", cost, "dt:", dt) # save the cost costs.append(cost) # update the learning rate learning_rate -= learning_rate_delta # plot the cost per iteration plt.plot(costs) plt.show() # save the model if not os.path.exists(savedir): os.mkdir(savedir) with open('%s/word2idx.json' % savedir, 'w') as f: json.dump(word2idx, f) # don't forget to extract the weights from theano W, V = thW.get_value(), thV.get_value() np.savez('%s/weights.npz' % savedir, W, V) # return the model return word2idx, W, V def get_negative_sampling_distribution(sentences, vocab_size): # Pn(w) = prob of word occuring # we would like to sample the negative samples # such that words that occur more often # should be sampled more often word_freq = np.zeros(vocab_size) word_count = sum(len(sentence) for sentence in sentences) for sentence in sentences: for word in sentence: word_freq[word] += 1 # smooth it p_neg = word_freq**0.75 # normalize it p_neg = p_neg / p_neg.sum() assert(np.all(p_neg > 0)) return p_neg def get_context(pos, sentence, window_size): # input: # a sentence of the form: x x x x c c c pos c c c x x x x # output: # the context word indices: c c c c c c start = max(0, pos - window_size) end_ = min(len(sentence), pos + window_size) context = [] for ctx_pos, ctx_word_idx in enumerate(sentence[start:end_], start=start): if ctx_pos != pos: # don't include the input word itself as a target context.append(ctx_word_idx) return context # return np.concatenate([sentence[start:pos], sentence[pos+1:end_]]) def load_model(savedir): with open('%s/word2idx.json' % savedir) as f: word2idx = json.load(f) npz = np.load('%s/weights.npz' % savedir) W = npz['arr_0'] V = npz['arr_1'] return word2idx, W, V def analogy(pos1, neg1, pos2, neg2, word2idx, idx2word, W): V, D = W.shape # don't actually use pos2 in calculation, just print what's expected print("testing: %s - %s = %s - %s" % (pos1, neg1, pos2, neg2)) for w in (pos1, neg1, pos2, neg2): if w not in word2idx: print("Sorry, %s not in word2idx" % w) return p1 = W[word2idx[pos1]] n1 = W[word2idx[neg1]] p2 = W[word2idx[pos2]] n2 = W[word2idx[neg2]] vec = p1 - n1 + n2 distances = pairwise_distances(vec.reshape(1, D), W, metric='cosine').reshape(V) idx = distances.argsort()[:10] # pick one that's not p1, n1, or n2 best_idx = -1 keep_out = [word2idx[w] for w in (pos1, neg1, neg2)] # print("keep_out:", keep_out) for i in idx: if i not in keep_out: best_idx = i break # print("best_idx:", best_idx) print("got: %s - %s = %s - %s" % (pos1, neg1, idx2word[best_idx], neg2)) print("closest 10:") for i in idx: print(idx2word[i], distances[i]) print("dist to %s:" % pos2, cos_dist(p2, vec)) def test_model(word2idx, W, V): # there are multiple ways to get the "final" word embedding # We = (W + V.T) / 2 # We = W idx2word = {i:w for w, i in word2idx.items()} for We in (W, (W + V.T) / 2): print("**********") analogy('king', 'man', 'queen', 'woman', word2idx, idx2word, We) analogy('king', 'prince', 'queen', 'princess', word2idx, idx2word, We) analogy('miami', 'florida', 'dallas', 'texas', word2idx, idx2word, We) analogy('einstein', 'scientist', 'picasso', 'painter', word2idx, idx2word, We) analogy('japan', 'sushi', 'germany', 'bratwurst', word2idx, idx2word, We) analogy('man', 'woman', 'he', 'she', word2idx, idx2word, We) analogy('man', 'woman', 'uncle', 'aunt', word2idx, idx2word, We) analogy('man', 'woman', 'brother', 'sister', word2idx, idx2word, We) analogy('man', 'woman', 'husband', 'wife', word2idx, idx2word, We) analogy('man', 'woman', 'actor', 'actress', word2idx, idx2word, We) analogy('man', 'woman', 'father', 'mother', word2idx, idx2word, We) analogy('heir', 'heiress', 'prince', 'princess', word2idx, idx2word, We) analogy('nephew', 'niece', 'uncle', 'aunt', word2idx, idx2word, We) analogy('france', 'paris', 'japan', 'tokyo', word2idx, idx2word, We) analogy('france', 'paris', 'china', 'beijing', word2idx, idx2word, We) analogy('february', 'january', 'december', 'november', word2idx, idx2word, We) analogy('france', 'paris', 'germany', 'berlin', word2idx, idx2word, We) analogy('week', 'day', 'year', 'month', word2idx, idx2word, We) analogy('week', 'day', 'hour', 'minute', word2idx, idx2word, We) analogy('france', 'paris', 'italy', 'rome', word2idx, idx2word, We) analogy('paris', 'france', 'rome', 'italy', word2idx, idx2word, We) analogy('france', 'french', 'england', 'english', word2idx, idx2word, We) analogy('japan', 'japanese', 'china', 'chinese', word2idx, idx2word, We) analogy('china', 'chinese', 'america', 'american', word2idx, idx2word, We) analogy('japan', 'japanese', 'italy', 'italian', word2idx, idx2word, We) analogy('japan', 'japanese', 'australia', 'australian', word2idx, idx2word, We) analogy('walk', 'walking', 'swim', 'swimming', word2idx, idx2word, We) if __name__ == '__main__': word2idx, W, V = train_model('w2v_model') # word2idx, W, V = load_model('w2v_model') test_model(word2idx, W, V) ================================================ FILE: nlp_class3/attention.py ================================================ # https://deeplearningcourses.com/c/deep-learning-advanced-nlp from __future__ import print_function, division from builtins import range, input # Note: you may need to update your version of future # sudo pip install -U future import os, sys from keras.models import Model from keras.layers import Input, LSTM, GRU, Dense, Embedding, \ Bidirectional, RepeatVector, Concatenate, Activation, Dot, Lambda from keras.preprocessing.text import Tokenizer from keras.preprocessing.sequence import pad_sequences import keras.backend as K import numpy as np import matplotlib.pyplot as plt try: import keras.backend as K if len(K.tensorflow_backend._get_available_gpus()) > 0: from keras.layers import CuDNNLSTM as LSTM from keras.layers import CuDNNGRU as GRU except: pass # make sure we do softmax over the time axis # expected shape is N x T x D # note: the latest version of Keras allows you to pass in axis arg def softmax_over_time(x): assert(K.ndim(x) > 2) e = K.exp(x - K.max(x, axis=1, keepdims=True)) s = K.sum(e, axis=1, keepdims=True) return e / s # config BATCH_SIZE = 64 EPOCHS = 30 LATENT_DIM = 400 LATENT_DIM_DECODER = 400 # idea: make it different to ensure things all fit together properly! NUM_SAMPLES = 20000 MAX_SEQUENCE_LENGTH = 100 MAX_NUM_WORDS = 20000 EMBEDDING_DIM = 100 # Where we will store the data input_texts = [] # sentence in original language target_texts = [] # sentence in target language target_texts_inputs = [] # sentence in target language offset by 1 # load in the data # download the data at: http://www.manythings.org/anki/ t = 0 for line in open('../large_files/translation/spa.txt'): # only keep a limited number of samples t += 1 if t > NUM_SAMPLES: break # input and target are separated by tab if '\t' not in line: continue # split up the input and translation input_text, translation, *rest = line.rstrip().split('\t') # make the target input and output # recall we'll be using teacher forcing target_text = translation + ' ' target_text_input = ' ' + translation input_texts.append(input_text) target_texts.append(target_text) target_texts_inputs.append(target_text_input) print("num samples:", len(input_texts)) # tokenize the inputs tokenizer_inputs = Tokenizer(num_words=MAX_NUM_WORDS) tokenizer_inputs.fit_on_texts(input_texts) input_sequences = tokenizer_inputs.texts_to_sequences(input_texts) # get the word to index mapping for input language word2idx_inputs = tokenizer_inputs.word_index print('Found %s unique input tokens.' % len(word2idx_inputs)) # determine maximum length input sequence max_len_input = max(len(s) for s in input_sequences) # tokenize the outputs # don't filter out special characters # otherwise and won't appear tokenizer_outputs = Tokenizer(num_words=MAX_NUM_WORDS, filters='') tokenizer_outputs.fit_on_texts(target_texts + target_texts_inputs) # inefficient, oh well target_sequences = tokenizer_outputs.texts_to_sequences(target_texts) target_sequences_inputs = tokenizer_outputs.texts_to_sequences(target_texts_inputs) # get the word to index mapping for output language word2idx_outputs = tokenizer_outputs.word_index print('Found %s unique output tokens.' % len(word2idx_outputs)) # store number of output words for later # remember to add 1 since indexing starts at 1 num_words_output = len(word2idx_outputs) + 1 # determine maximum length output sequence max_len_target = max(len(s) for s in target_sequences) # pad the sequences encoder_inputs = pad_sequences(input_sequences, maxlen=max_len_input) print("encoder_data.shape:", encoder_inputs.shape) print("encoder_data[0]:", encoder_inputs[0]) decoder_inputs = pad_sequences(target_sequences_inputs, maxlen=max_len_target, padding='post') print("decoder_data[0]:", decoder_inputs[0]) print("decoder_data.shape:", decoder_inputs.shape) decoder_targets = pad_sequences(target_sequences, maxlen=max_len_target, padding='post') # store all the pre-trained word vectors print('Loading word vectors...') word2vec = {} with open(os.path.join('../large_files/glove.6B/glove.6B.%sd.txt' % EMBEDDING_DIM)) as f: # is just a space-separated text file in the format: # word vec[0] vec[1] vec[2] ... for line in f: values = line.split() word = values[0] vec = np.asarray(values[1:], dtype='float32') word2vec[word] = vec print('Found %s word vectors.' % len(word2vec)) # prepare embedding matrix print('Filling pre-trained embeddings...') num_words = min(MAX_NUM_WORDS, len(word2idx_inputs) + 1) embedding_matrix = np.zeros((num_words, EMBEDDING_DIM)) for word, i in word2idx_inputs.items(): if i < MAX_NUM_WORDS: embedding_vector = word2vec.get(word) if embedding_vector is not None: # words not found in embedding index will be all zeros. embedding_matrix[i] = embedding_vector # create embedding layer embedding_layer = Embedding( num_words, EMBEDDING_DIM, weights=[embedding_matrix], input_length=max_len_input, # trainable=True ) # create targets, since we cannot use sparse # categorical cross entropy when we have sequences decoder_targets_one_hot = np.zeros( ( len(input_texts), max_len_target, num_words_output ), dtype='float32' ) # assign the values for i, d in enumerate(decoder_targets): for t, word in enumerate(d): if word > 0: decoder_targets_one_hot[i, t, word] = 1 ##### build the model ##### # Set up the encoder - simple! encoder_inputs_placeholder = Input(shape=(max_len_input,)) x = embedding_layer(encoder_inputs_placeholder) encoder = Bidirectional(LSTM( LATENT_DIM, return_sequences=True, # dropout=0.5 # dropout not available on gpu )) encoder_outputs = encoder(x) # Set up the decoder - not so simple decoder_inputs_placeholder = Input(shape=(max_len_target,)) # this word embedding will not use pre-trained vectors # although you could decoder_embedding = Embedding(num_words_output, EMBEDDING_DIM) decoder_inputs_x = decoder_embedding(decoder_inputs_placeholder) ######### Attention ######### # Attention layers need to be global because # they will be repeated Ty times at the decoder attn_repeat_layer = RepeatVector(max_len_input) attn_concat_layer = Concatenate(axis=-1) attn_dense1 = Dense(10, activation='tanh') attn_dense2 = Dense(1, activation=softmax_over_time) attn_dot = Dot(axes=1) # to perform the weighted sum of alpha[t] * h[t] def one_step_attention(h, st_1): # h = h(1), ..., h(Tx), shape = (Tx, LATENT_DIM * 2) # st_1 = s(t-1), shape = (LATENT_DIM_DECODER,) # copy s(t-1) Tx times # now shape = (Tx, LATENT_DIM_DECODER) st_1 = attn_repeat_layer(st_1) # Concatenate all h(t)'s with s(t-1) # Now of shape (Tx, LATENT_DIM_DECODER + LATENT_DIM * 2) x = attn_concat_layer([h, st_1]) # Neural net first layer x = attn_dense1(x) # Neural net second layer with special softmax over time alphas = attn_dense2(x) # "Dot" the alphas and the h's # Remember a.dot(b) = sum over a[t] * b[t] context = attn_dot([alphas, h]) return context # define the rest of the decoder (after attention) decoder_lstm = LSTM(LATENT_DIM_DECODER, return_state=True) decoder_dense = Dense(num_words_output, activation='softmax') initial_s = Input(shape=(LATENT_DIM_DECODER,), name='s0') initial_c = Input(shape=(LATENT_DIM_DECODER,), name='c0') context_last_word_concat_layer = Concatenate(axis=2) # Unlike previous seq2seq, we cannot get the output # all in one step # Instead we need to do Ty steps # And in each of those steps, we need to consider # all Tx h's # s, c will be re-assigned in each iteration of the loop s = initial_s c = initial_c # collect outputs in a list at first outputs = [] for t in range(max_len_target): # Ty times # get the context using attention context = one_step_attention(encoder_outputs, s) # we need a different layer for each time step selector = Lambda(lambda x: x[:, t:t+1]) xt = selector(decoder_inputs_x) # combine decoder_lstm_input = context_last_word_concat_layer([context, xt]) # pass the combined [context, last word] into the LSTM # along with [s, c] # get the new [s, c] and output o, s, c = decoder_lstm(decoder_lstm_input, initial_state=[s, c]) # final dense layer to get next word prediction decoder_outputs = decoder_dense(o) outputs.append(decoder_outputs) # 'outputs' is now a list of length Ty # each element is of shape (batch size, output vocab size) # therefore if we simply stack all the outputs into 1 tensor # it would be of shape T x N x D # we would like it to be of shape N x T x D def stack_and_transpose(x): # x is a list of length T, each element is a batch_size x output_vocab_size tensor x = K.stack(x) # is now T x batch_size x output_vocab_size tensor x = K.permute_dimensions(x, pattern=(1, 0, 2)) # is now batch_size x T x output_vocab_size return x # make it a layer stacker = Lambda(stack_and_transpose) outputs = stacker(outputs) # create the model model = Model( inputs=[ encoder_inputs_placeholder, decoder_inputs_placeholder, initial_s, initial_c, ], outputs=outputs ) def custom_loss(y_true, y_pred): # both are of shape N x T x K mask = K.cast(y_true > 0, dtype='float32') out = mask * y_true * K.log(y_pred) return -K.sum(out) / K.sum(mask) def acc(y_true, y_pred): # both are of shape N x T x K targ = K.argmax(y_true, axis=-1) pred = K.argmax(y_pred, axis=-1) correct = K.cast(K.equal(targ, pred), dtype='float32') # 0 is padding, don't include those mask = K.cast(K.greater(targ, 0), dtype='float32') n_correct = K.sum(mask * correct) n_total = K.sum(mask) return n_correct / n_total # compile the model model.compile(optimizer='adam', loss=custom_loss, metrics=[acc]) # model.compile(optimizer='rmsprop', loss='categorical_crossentropy', metrics=['acc']) # train the model z = np.zeros((len(encoder_inputs), LATENT_DIM_DECODER)) # initial [s, c] r = model.fit( [encoder_inputs, decoder_inputs, z, z], decoder_targets_one_hot, batch_size=BATCH_SIZE, epochs=EPOCHS, validation_split=0.2 ) # plot some data plt.plot(r.history['loss'], label='loss') plt.plot(r.history['val_loss'], label='val_loss') plt.legend() plt.show() # accuracies plt.plot(r.history['accuracy'], label='acc') plt.plot(r.history['val_accuracy'], label='val_acc') plt.legend() plt.show() ##### Make predictions ##### # As with the poetry example, we need to create another model # that can take in the RNN state and previous word as input # and accept a T=1 sequence. # The encoder will be stand-alone # From this we will get our initial decoder hidden state # i.e. h(1), ..., h(Tx) encoder_model = Model(encoder_inputs_placeholder, encoder_outputs) # next we define a T=1 decoder model encoder_outputs_as_input = Input(shape=(max_len_input, LATENT_DIM * 2,)) decoder_inputs_single = Input(shape=(1,)) decoder_inputs_single_x = decoder_embedding(decoder_inputs_single) # no need to loop over attention steps this time because there is only one step context = one_step_attention(encoder_outputs_as_input, initial_s) # combine context with last word decoder_lstm_input = context_last_word_concat_layer([context, decoder_inputs_single_x]) # lstm and final dense o, s, c = decoder_lstm(decoder_lstm_input, initial_state=[initial_s, initial_c]) decoder_outputs = decoder_dense(o) # note: we don't really need the final stack and tranpose # because there's only 1 output # it is already of size N x D # no need to make it 1 x N x D --> N x 1 x D # create the model object decoder_model = Model( inputs=[ decoder_inputs_single, encoder_outputs_as_input, initial_s, initial_c ], outputs=[decoder_outputs, s, c] ) # map indexes back into real words # so we can view the results idx2word_eng = {v:k for k, v in word2idx_inputs.items()} idx2word_trans = {v:k for k, v in word2idx_outputs.items()} def decode_sequence(input_seq): # Encode the input as state vectors. enc_out = encoder_model.predict(input_seq) # Generate empty target sequence of length 1. target_seq = np.zeros((1, 1)) # Populate the first character of target sequence with the start character. # NOTE: tokenizer lower-cases all words target_seq[0, 0] = word2idx_outputs[''] # if we get this we break eos = word2idx_outputs[''] # [s, c] will be updated in each loop iteration s = np.zeros((1, LATENT_DIM_DECODER)) c = np.zeros((1, LATENT_DIM_DECODER)) # Create the translation output_sentence = [] for _ in range(max_len_target): o, s, c = decoder_model.predict([target_seq, enc_out, s, c]) # Get next word idx = np.argmax(o.flatten()) # End sentence of EOS if eos == idx: break word = '' if idx > 0: word = idx2word_trans[idx] output_sentence.append(word) # Update the decoder input # which is just the word just generated target_seq[0, 0] = idx return ' '.join(output_sentence) while True: # Do some test translations i = np.random.choice(len(input_texts)) input_seq = encoder_inputs[i:i+1] translation = decode_sequence(input_seq) print('-') print('Input sentence:', input_texts[i]) print('Predicted translation:', translation) print('Actual translation:', target_texts[i]) ans = input("Continue? [Y/n]") if ans and ans.lower().startswith('n'): break ================================================ FILE: nlp_class3/bilstm_mnist.py ================================================ # https://deeplearningcourses.com/c/deep-learning-advanced-nlp from __future__ import print_function, division from builtins import range, input # Note: you may need to update your version of future # sudo pip install -U future import os from keras.models import Model from keras.layers import Input, LSTM, GRU, Bidirectional, GlobalMaxPooling1D, Lambda, Concatenate, Dense import keras.backend as K import numpy as np import pandas as pd import matplotlib.pyplot as plt try: import keras.backend as K if len(K.tensorflow_backend._get_available_gpus()) > 0: from keras.layers import CuDNNLSTM as LSTM from keras.layers import CuDNNGRU as GRU except: pass def get_mnist(limit=None): if not os.path.exists('../large_files'): print("You must create a folder called large_files adjacent to the class folder first.") if not os.path.exists('../large_files/train.csv'): print("Looks like you haven't downloaded the data or it's not in the right spot.") print("Please get train.csv from https://www.kaggle.com/c/digit-recognizer") print("and place it in the large_files folder.") print("Reading in and transforming data...") df = pd.read_csv('../large_files/train.csv') data = df.values np.random.shuffle(data) X = data[:, 1:].reshape(-1, 28, 28) / 255.0 # data is from 0..255 Y = data[:, 0] if limit is not None: X, Y = X[:limit], Y[:limit] return X, Y # get data X, Y = get_mnist() # config D = 28 M = 15 # input is an image of size 28x28 input_ = Input(shape=(D, D)) # up-down rnn1 = Bidirectional(LSTM(M, return_sequences=True)) x1 = rnn1(input_) # output is N x D x 2M x1 = GlobalMaxPooling1D()(x1) # output is N x 2M # left-right rnn2 = Bidirectional(LSTM(M, return_sequences=True)) # custom layer permutor = Lambda(lambda t: K.permute_dimensions(t, pattern=(0, 2, 1))) x2 = permutor(input_) x2 = rnn2(x2) # output is N x D x 2M x2 = GlobalMaxPooling1D()(x2) # output is N x 2M # put them together concatenator = Concatenate(axis=1) x = concatenator([x1, x2]) # output is N x 4M # final dense layer output = Dense(10, activation='softmax')(x) model = Model(inputs=input_, outputs=output) # testing # o = model.predict(X) # print("o.shape:", o.shape) # compile model.compile( loss='sparse_categorical_crossentropy', optimizer='adam', metrics=['accuracy'] ) # train print('Training model...') r = model.fit(X, Y, batch_size=32, epochs=10, validation_split=0.3) # plot some data plt.plot(r.history['loss'], label='loss') plt.plot(r.history['val_loss'], label='val_loss') plt.legend() plt.show() # accuracies plt.plot(r.history['accuracy'], label='acc') plt.plot(r.history['val_accuracy'], label='val_acc') plt.legend() plt.show() ================================================ FILE: nlp_class3/bilstm_test.py ================================================ # https://deeplearningcourses.com/c/deep-learning-advanced-nlp from __future__ import print_function, division from builtins import range, input # Note: you may need to update your version of future # sudo pip install -U future from keras.models import Model from keras.layers import Input, LSTM, GRU, Bidirectional import numpy as np import matplotlib.pyplot as plt try: import keras.backend as K if len(K.tensorflow_backend._get_available_gpus()) > 0: from keras.layers import CuDNNLSTM as LSTM from keras.layers import CuDNNGRU as GRU except: pass T = 8 D = 2 M = 3 X = np.random.randn(1, T, D) input_ = Input(shape=(T, D)) # rnn = Bidirectional(LSTM(M, return_state=True, return_sequences=True)) rnn = Bidirectional(LSTM(M, return_state=True, return_sequences=False)) x = rnn(input_) model = Model(inputs=input_, outputs=x) o, h1, c1, h2, c2 = model.predict(X) print("o:", o) print("o.shape:", o.shape) print("h1:", h1) print("c1:", c1) print("h2:", h2) print("c2:", c2) ================================================ FILE: nlp_class3/cnn_toxic.py ================================================ # https://deeplearningcourses.com/c/deep-learning-advanced-nlp from __future__ import print_function, division from builtins import range # Note: you may need to update your version of future # sudo pip install -U future import os import sys import numpy as np import pandas as pd import matplotlib.pyplot as plt from keras.preprocessing.text import Tokenizer from keras.preprocessing.sequence import pad_sequences from keras.layers import Dense, Input, GlobalMaxPooling1D from keras.layers import Conv1D, MaxPooling1D, Embedding from keras.models import Model from sklearn.metrics import roc_auc_score # Download the data: # https://www.kaggle.com/c/jigsaw-toxic-comment-classification-challenge # https://lazyprogrammer.me/course_files/toxic_comment_train.csv # Download the word vectors: # http://nlp.stanford.edu/data/glove.6B.zip # some configuration MAX_SEQUENCE_LENGTH = 100 MAX_VOCAB_SIZE = 20000 EMBEDDING_DIM = 100 VALIDATION_SPLIT = 0.2 BATCH_SIZE = 128 EPOCHS = 10 # load in pre-trained word vectors print('Loading word vectors...') word2vec = {} with open(os.path.join('../large_files/glove.6B/glove.6B.%sd.txt' % EMBEDDING_DIM)) as f: # is just a space-separated text file in the format: # word vec[0] vec[1] vec[2] ... for line in f: values = line.split() word = values[0] vec = np.asarray(values[1:], dtype='float32') word2vec[word] = vec print('Found %s word vectors.' % len(word2vec)) # prepare text samples and their labels print('Loading in comments...') train = pd.read_csv("../large_files/toxic-comment/train.csv") sentences = train["comment_text"].fillna("DUMMY_VALUE").values possible_labels = ["toxic", "severe_toxic", "obscene", "threat", "insult", "identity_hate"] targets = train[possible_labels].values # convert the sentences (strings) into integers tokenizer = Tokenizer(num_words=MAX_VOCAB_SIZE) tokenizer.fit_on_texts(sentences) sequences = tokenizer.texts_to_sequences(sentences) # print("sequences:", sequences); exit() print("max sequence length:", max(len(s) for s in sequences)) print("min sequence length:", min(len(s) for s in sequences)) s = sorted(len(s) for s in sequences) print("median sequence length:", s[len(s) // 2]) print("max word index:", max(max(seq) for seq in sequences if len(seq) > 0)) # get word -> integer mapping word2idx = tokenizer.word_index print('Found %s unique tokens.' % len(word2idx)) # exit() # pad sequences so that we get a N x T matrix data = pad_sequences(sequences, maxlen=MAX_SEQUENCE_LENGTH) print('Shape of data tensor:', data.shape) # prepare embedding matrix print('Filling pre-trained embeddings...') num_words = min(MAX_VOCAB_SIZE, len(word2idx) + 1) embedding_matrix = np.zeros((num_words, EMBEDDING_DIM)) for word, i in word2idx.items(): if i < MAX_VOCAB_SIZE: embedding_vector = word2vec.get(word) if embedding_vector is not None: # words not found in embedding index will be all zeros. embedding_matrix[i] = embedding_vector # load pre-trained word embeddings into an Embedding layer # note that we set trainable = False so as to keep the embeddings fixed embedding_layer = Embedding( num_words, EMBEDDING_DIM, weights=[embedding_matrix], input_length=MAX_SEQUENCE_LENGTH, trainable=False ) print('Building model...') # train a 1D convnet with global maxpooling input_ = Input(shape=(MAX_SEQUENCE_LENGTH,)) x = embedding_layer(input_) x = Conv1D(128, 3, activation='relu')(x) x = MaxPooling1D(3)(x) x = Conv1D(128, 3, activation='relu')(x) x = MaxPooling1D(3)(x) x = Conv1D(128, 3, activation='relu')(x) x = GlobalMaxPooling1D()(x) x = Dense(128, activation='relu')(x) output = Dense(len(possible_labels), activation='sigmoid')(x) model = Model(input_, output) model.compile( loss='binary_crossentropy', optimizer='rmsprop', metrics=['accuracy'] ) print('Training model...') r = model.fit( data, targets, batch_size=BATCH_SIZE, epochs=EPOCHS, validation_split=VALIDATION_SPLIT ) # plot some data plt.plot(r.history['loss'], label='loss') plt.plot(r.history['val_loss'], label='val_loss') plt.legend() plt.show() # accuracies plt.plot(r.history['accuracy'], label='acc') plt.plot(r.history['val_accuracy'], label='val_acc') plt.legend() plt.show() # plot the mean AUC over each label p = model.predict(data) aucs = [] for j in range(6): auc = roc_auc_score(targets[:,j], p[:,j]) aucs.append(auc) print(np.mean(aucs)) ================================================ FILE: nlp_class3/convert_twitter.py ================================================ # https://deeplearningcourses.com/c/deep-learning-advanced-nlp from __future__ import print_function, division from builtins import range, input # Note: you may need to update your version of future # sudo pip install -U future # each output line should be: # INPUTRESPONSE with open('../large_files/twitter_tab_format.txt', 'w') as f: prev_line = None # data source: https://github.com/Phylliida/Dialogue-Datasets for line in open('../large_files/TwitterLowerAsciiCorpus.txt'): line = line.rstrip() if prev_line and line: f.write("%s\t%s\n" % (prev_line, line)) # note: # between conversations there are empty lines # which evaluate to false prev_line = line ================================================ FILE: nlp_class3/extra_reading.txt ================================================ https://deeplearningcourses.com/c/deep-learning-advanced-nlp Bidirectional Recurrent Neural Networks https://maxwell.ict.griffith.edu.au/spl/publications/papers/ieeesp97_schuster.pdf Translation Modeling with Bidirectional Recurrent Neural Networks http://emnlp2014.org/papers/pdf/EMNLP2014003.pdf Sequence to Sequence Learning with Neural Networks https://arxiv.org/abs/1409.3215 A Neural Conversational Model https://arxiv.org/abs/1506.05869v3 Neural Machine Translation by Jointly Learning to Align and Translate (Attention) https://arxiv.org/abs/1409.0473 Feed-Forward Networks with Attention Can Solve Some Long-Term Memory Problems (Simplified Attention) https://arxiv.org/abs/1512.08756 Memory Networks https://arxiv.org/abs/1410.3916 Towards AI-Complete Question Answering: A Set of Prerequisite Toy Tasks http://arxiv.org/abs/1502.05698 End-To-End Memory Networks http://arxiv.org/abs/1503.08895 Ask Me Anything: Dynamic Memory Networks for Natural Language Processing https://arxiv.org/abs/1506.07285 WaveNet https://deepmind.com/blog/wavenet-generative-model-raw-audio/ Tacotron https://google.github.io/tacotron/ Tacotron 2 https://research.googleblog.com/2017/12/tacotron-2-generating-human-like-speech.html An Empirical Evaluation of Generic Convolutional and Recurrent Networks for Sequence Modeling https://arxiv.org/abs/1803.01271 (just released March 2018!) Relational recurrent neural networks https://arxiv.org/abs/1806.01822 ================================================ FILE: nlp_class3/lstm_toxic.py ================================================ # https://deeplearningcourses.com/c/deep-learning-advanced-nlp from __future__ import print_function, division from builtins import range # Note: you may need to update your version of future # sudo pip install -U future import os import sys import numpy as np import pandas as pd import matplotlib.pyplot as plt from keras.models import Model from keras.layers import Dense, Embedding, Input from keras.layers import LSTM, Bidirectional, GlobalMaxPool1D, Dropout from keras.preprocessing.text import Tokenizer from keras.preprocessing.sequence import pad_sequences from keras.optimizers import Adam from sklearn.metrics import roc_auc_score import keras.backend as K # if len(K.tensorflow_backend._get_available_gpus()) > 0: # from keras.layers import CuDNNLSTM as LSTM # from keras.layers import CuDNNGRU as GRU # Download the data: # https://www.kaggle.com/c/jigsaw-toxic-comment-classification-challenge # https://lazyprogrammer.me/course_files/toxic_comment_train.csv # Download the word vectors: # http://nlp.stanford.edu/data/glove.6B.zip # some configuration MAX_SEQUENCE_LENGTH = 100 MAX_VOCAB_SIZE = 20000 EMBEDDING_DIM = 50 VALIDATION_SPLIT = 0.2 BATCH_SIZE = 128 EPOCHS = 5 # load in pre-trained word vectors print('Loading word vectors...') word2vec = {} with open(os.path.join('../large_files/glove.6B/glove.6B.%sd.txt' % EMBEDDING_DIM)) as f: # is just a space-separated text file in the format: # word vec[0] vec[1] vec[2] ... for line in f: values = line.split() word = values[0] vec = np.asarray(values[1:], dtype='float32') word2vec[word] = vec print('Found %s word vectors.' % len(word2vec)) # prepare text samples and their labels print('Loading in comments...') train = pd.read_csv("../large_files/toxic-comment/train.csv") sentences = train["comment_text"].fillna("DUMMY_VALUE").values possible_labels = ["toxic", "severe_toxic", "obscene", "threat", "insult", "identity_hate"] targets = train[possible_labels].values # convert the sentences (strings) into integers tokenizer = Tokenizer(num_words=MAX_VOCAB_SIZE) tokenizer.fit_on_texts(sentences) sequences = tokenizer.texts_to_sequences(sentences) # get word -> integer mapping word2idx = tokenizer.word_index print('Found %s unique tokens.' % len(word2idx)) # pad sequences so that we get a N x T matrix data = pad_sequences(sequences, maxlen=MAX_SEQUENCE_LENGTH) print('Shape of data tensor:', data.shape) # prepare embedding matrix print('Filling pre-trained embeddings...') num_words = min(MAX_VOCAB_SIZE, len(word2idx) + 1) embedding_matrix = np.zeros((num_words, EMBEDDING_DIM)) for word, i in word2idx.items(): if i < MAX_VOCAB_SIZE: embedding_vector = word2vec.get(word) if embedding_vector is not None: # words not found in embedding index will be all zeros. embedding_matrix[i] = embedding_vector # load pre-trained word embeddings into an Embedding layer # note that we set trainable = False so as to keep the embeddings fixed embedding_layer = Embedding( num_words, EMBEDDING_DIM, weights=[embedding_matrix], input_length=MAX_SEQUENCE_LENGTH, trainable=False ) print('Building model...') # create an LSTM network with a single LSTM input_ = Input(shape=(MAX_SEQUENCE_LENGTH,)) x = embedding_layer(input_) x = LSTM(15, return_sequences=True)(x) # x = Bidirectional(LSTM(15, return_sequences=True))(x) x = GlobalMaxPool1D()(x) output = Dense(len(possible_labels), activation="sigmoid")(x) model = Model(input_, output) model.compile( loss='binary_crossentropy', optimizer=Adam(lr=0.01), metrics=['accuracy'], ) print('Training model...') r = model.fit( data, targets, batch_size=BATCH_SIZE, epochs=EPOCHS, validation_split=VALIDATION_SPLIT ) # plot some data plt.plot(r.history['loss'], label='loss') plt.plot(r.history['val_loss'], label='val_loss') plt.legend() plt.show() # accuracies plt.plot(r.history['accuracy'], label='acc') plt.plot(r.history['val_accuracy'], label='val_acc') plt.legend() plt.show() p = model.predict(data) aucs = [] for j in range(6): auc = roc_auc_score(targets[:,j], p[:,j]) aucs.append(auc) print(np.mean(aucs)) ================================================ FILE: nlp_class3/memory_network.py ================================================ # https://deeplearningcourses.com/c/deep-learning-advanced-nlp from __future__ import print_function, division from builtins import range, input import numpy as np import keras.backend as K import matplotlib.pyplot as plt import re import tarfile from keras.models import Model from keras.layers import Dense, Embedding, Input, Lambda, Reshape, add, dot, Activation from keras.preprocessing.sequence import pad_sequences from keras.optimizers import Adam, RMSprop from keras.utils.data_utils import get_file # get the data and open the compressed file using the tarfile library # https://research.fb.com/downloads/babi/ path = get_file( 'babi-tasks-v1-2.tar.gz', origin='https://s3.amazonaws.com/text-datasets/babi_tasks_1-20_v1-2.tar.gz') tar = tarfile.open(path) # relevant data in the tar file # there's lots more data in there, check it out if you want! challenges = { # QA1 with 10,000 samples 'single_supporting_fact_10k': 'tasks_1-20_v1-2/en-10k/qa1_single-supporting-fact_{}.txt', # QA2 with 10,000 samples 'two_supporting_facts_10k': 'tasks_1-20_v1-2/en-10k/qa2_two-supporting-facts_{}.txt', } def tokenize(sent): '''Return the tokens of a sentence including punctuation. >>> tokenize('Bob dropped the apple. Where is the apple?') ['Bob', 'dropped', 'the', 'apple', '.', 'Where', 'is', 'the', 'apple', '?'] ''' return [x.strip() for x in re.split('(\W+?)', sent) if x.strip()] def get_stories(f): # data will return a list of triples # each triple contains: # 1. a story # 2. a question about the story # 3. the answer to the question data = [] # use this list to keep track of the story so far story = [] # print a random story, helpful to see the data printed = False for line in f: line = line.decode('utf-8').strip() # split the line number from the rest of the line nid, line = line.split(' ', 1) # see if we should begin a new story if int(nid) == 1: story = [] # this line contains a question and answer if it has a tab # questionanswer # it also tells us which line in the story is relevant to the answer # Note: we actually ignore this fact, since the model will learn # which lines are important # Note: the max line number is not the number of lines of the story # since lines with questions do not contain any story # one story may contain MULTIPLE questions if '\t' in line: q, a, supporting = line.split('\t') q = tokenize(q) # numbering each line is very useful # it's the equivalent of adding a unique token to the front # of each sentence story_so_far = [[str(i)] + s for i, s in enumerate(story) if s] # uncomment if you want to see what a story looks like # if not printed and np.random.rand() < 0.5: # print("story_so_far:", story_so_far) # printed = True data.append((story_so_far, q, a)) story.append('') else: # just add the line to the current story story.append(tokenize(line)) return data # recursively flatten a list def should_flatten(el): return not isinstance(el, (str, bytes)) def flatten(l): for el in l: if should_flatten(el): yield from flatten(el) else: yield el # convert stories from words into lists of word indexes (integers) # pad each sequence so that they are the same length # we will need to re-pad the stories later so that each story # is the same length def vectorize_stories(data, word2idx, story_maxlen, query_maxlen): inputs, queries, answers = [], [], [] for story, query, answer in data: inputs.append([[word2idx[w] for w in s] for s in story]) queries.append([word2idx[w] for w in query]) answers.append([word2idx[answer]]) return ( [pad_sequences(x, maxlen=story_maxlen) for x in inputs], pad_sequences(queries, maxlen=query_maxlen), np.array(answers) ) # this is like 'pad_sequences' but for entire stories # we are padding each story with zeros so every story # has the same number of sentences # append an array of zeros of size: # (max_sentences - num sentences in story, max words in sentence) def stack_inputs(inputs, story_maxsents, story_maxlen): for i, story in enumerate(inputs): inputs[i] = np.concatenate( [ story, np.zeros((story_maxsents - story.shape[0], story_maxlen), 'int') ] ) return np.stack(inputs) # make a function to get the data since # we want to load both the single supporting fact data # and the two supporting fact data later def get_data(challenge_type): # input should either be 'single_supporting_fact_10k' or 'two_supporting_facts_10k' challenge = challenges[challenge_type] # returns a list of triples of: # (story, question, answer) # story is a list of sentences # question is a sentence # answer is a word train_stories = get_stories(tar.extractfile(challenge.format('train'))) test_stories = get_stories(tar.extractfile(challenge.format('test'))) # group all the stories together stories = train_stories + test_stories # so we can get the max length of each story, of each sentence, and of each question story_maxlen = max((len(s) for x, _, _ in stories for s in x)) story_maxsents = max((len(x) for x, _, _ in stories)) query_maxlen = max(len(x) for _, x, _ in stories) # Create vocabulary of corpus and find size, including a padding element. vocab = sorted(set(flatten(stories))) vocab.insert(0, '') vocab_size = len(vocab) # Create an index mapping for the vocabulary. word2idx = {c:i for i, c in enumerate(vocab)} # convert stories from strings to lists of integers inputs_train, queries_train, answers_train = vectorize_stories( train_stories, word2idx, story_maxlen, query_maxlen ) inputs_test, queries_test, answers_test = vectorize_stories( test_stories, word2idx, story_maxlen, query_maxlen ) # convert inputs into 3-D numpy arrays inputs_train = stack_inputs(inputs_train, story_maxsents, story_maxlen) inputs_test = stack_inputs(inputs_test, story_maxsents, story_maxlen) print("inputs_train.shape, inputs_test.shape", inputs_train.shape, inputs_test.shape) # return model inputs for keras return train_stories, test_stories, \ inputs_train, queries_train, answers_train, \ inputs_test, queries_test, answers_test, \ story_maxsents, story_maxlen, query_maxlen, \ vocab, vocab_size # get the single supporting fact data train_stories, test_stories, \ inputs_train, queries_train, answers_train, \ inputs_test, queries_test, answers_test, \ story_maxsents, story_maxlen, query_maxlen, \ vocab, vocab_size = get_data('single_supporting_fact_10k') ##### create the model ##### embedding_dim = 15 # turn the story into a sequence of embedding vectors # one for each story line # treating each story line like a "bag of words" input_story_ = Input((story_maxsents, story_maxlen)) embedded_story = Embedding(vocab_size, embedding_dim)(input_story_) embedded_story = Lambda(lambda x: K.sum(x, axis=2))(embedded_story) print("input_story_.shape, embedded_story.shape:", input_story_.shape, embedded_story.shape) # turn the question into an embedding # also a bag of words input_question_ = Input((query_maxlen,)) embedded_question = Embedding(vocab_size, embedding_dim)(input_question_) embedded_question = Lambda(lambda x: K.sum(x, axis=1))(embedded_question) # add a "sequence length" of 1 so that it can # be dotted with the story later embedded_question = Reshape((1, embedding_dim))(embedded_question) print("inp_q.shape, emb_q.shape:", input_question_.shape, embedded_question.shape) # calculate the weights for each story line # embedded_story.shape = (N, num sentences, embedding_dim) # embedded_question.shape = (N, 1, embedding_dim) x = dot([embedded_story, embedded_question], 2) x = Reshape((story_maxsents,))(x) # flatten the vector x = Activation('softmax')(x) story_weights = Reshape((story_maxsents, 1))(x) # unflatten it again to be dotted later print("story_weights.shape:", story_weights.shape) x = dot([story_weights, embedded_story], 1) x = Reshape((embedding_dim,))(x) # flatten it again ans = Dense(vocab_size, activation='softmax')(x) # make the model model = Model([input_story_, input_question_], ans) # compile the model model.compile( optimizer=RMSprop(lr=1e-2), loss='sparse_categorical_crossentropy', metrics=['accuracy'] ) # train the model r = model.fit( [inputs_train, queries_train], answers_train, epochs=4, batch_size=32, validation_data=([inputs_test, queries_test], answers_test) ) # Check how we weight each input sentence given a story and question debug_model = Model([input_story_, input_question_], story_weights) # choose a random story story_idx = np.random.choice(len(train_stories)) # get weights from debug model i = inputs_train[story_idx:story_idx+1] q = queries_train[story_idx:story_idx+1] w = debug_model.predict([i, q]).flatten() story, question, ans = train_stories[story_idx] print("story:\n") for i, line in enumerate(story): print("{:1.5f}".format(w[i]), "\t", " ".join(line)) print("question:", " ".join(question)) print("answer:", ans) # pause so we can see the output input("Hit enter to continue\n\n") ##### two supporting facts ##### # get the two supporting fact data train_stories, test_stories, \ inputs_train, queries_train, answers_train, \ inputs_test, queries_test, answers_test, \ story_maxsents, story_maxlen, query_maxlen, \ vocab, vocab_size = get_data('two_supporting_facts_10k') ##### create the model ##### embedding_dim = 30 # make a function for this so we can use it again def embed_and_sum(x, axis=2): x = Embedding(vocab_size, embedding_dim)(x) x = Lambda(lambda x: K.sum(x, axis))(x) return x # define the inputs input_story_ = Input((story_maxsents, story_maxlen)) input_question_ = Input((query_maxlen,)) # embed the inputs embedded_story = embed_and_sum(input_story_) embedded_question = embed_and_sum(input_question_, 1) # final dense will be used in each hop dense_layer = Dense(embedding_dim, activation='elu') # define one hop # the "query" can be the question, or the answer from the previous hop def hop(query, story): # query.shape = (embedding_dim,) # story.shape = (num sentences, embedding_dim) x = Reshape((1, embedding_dim))(query) # make it (1, embedding_dim) x = dot([story, x], 2) x = Reshape((story_maxsents,))(x) # flatten it for softmax x = Activation('softmax')(x) story_weights = Reshape((story_maxsents, 1))(x) # unflatten for dotting # makes a new embedding story_embedding2 = embed_and_sum(input_story_) x = dot([story_weights, story_embedding2], 1) x = Reshape((embedding_dim,))(x) x = dense_layer(x) return x, story_embedding2, story_weights # do the hops ans1, embedded_story, story_weights1 = hop(embedded_question, embedded_story) ans2, _, story_weights2 = hop(ans1, embedded_story) # get the final answer ans = Dense(vocab_size, activation='softmax')(ans2) # build the model model2 = Model([input_story_, input_question_], ans) # compile the model model2.compile( optimizer=RMSprop(lr=5e-3), loss='sparse_categorical_crossentropy', metrics=['accuracy'] ) # fit the model r = model2.fit( [inputs_train, queries_train], answers_train, epochs=30, batch_size=32, validation_data=([inputs_test, queries_test], answers_test) ) ### print story line weights again ### debug_model2 = Model( [input_story_, input_question_], [story_weights1, story_weights2] ) # choose a random story story_idx = np.random.choice(len(train_stories)) # get weights from debug model i = inputs_train[story_idx:story_idx+1] q = queries_train[story_idx:story_idx+1] w1, w2 = debug_model2.predict([i, q]) w1 = w1.flatten() w2 = w2.flatten() story, question, ans = train_stories[story_idx] print("story:\n") for j, line in enumerate(story): print("{:1.5f}".format(w1[j]), "\t", "{:1.5f}".format(w2[j]), "\t", " ".join(line)) print("question:", " ".join(question)) print("answer:", ans) print("prediction:", vocab[ np.argmax(model2.predict([i, q])[0]) ]) # plot some data plt.plot(r.history['loss'], label='loss') plt.plot(r.history['val_loss'], label='val_loss') plt.legend() plt.show() # accuracies plt.plot(r.history['accuracy'], label='acc') plt.plot(r.history['val_accuracy'], label='val_acc') plt.legend() plt.show() ================================================ FILE: nlp_class3/poetry.py ================================================ # https://deeplearningcourses.com/c/deep-learning-advanced-nlp from __future__ import print_function, division from builtins import range, input # Note: you may need to update your version of future # sudo pip install -U future import os import sys import string import numpy as np import pandas as pd import matplotlib.pyplot as plt from keras.models import Model from keras.layers import Dense, Embedding, Input, LSTM from keras.preprocessing.text import Tokenizer from keras.preprocessing.sequence import pad_sequences from keras.optimizers import Adam, SGD try: import keras.backend as K if len(K.tensorflow_backend._get_available_gpus()) > 0: from keras.layers import CuDNNLSTM as LSTM from keras.layers import CuDNNGRU as GRU except: pass # some configuration MAX_SEQUENCE_LENGTH = 100 MAX_VOCAB_SIZE = 3000 EMBEDDING_DIM = 50 VALIDATION_SPLIT = 0.2 BATCH_SIZE = 128 EPOCHS = 2000 LATENT_DIM = 25 # load in the data input_texts = [] target_texts = [] for line in open('../hmm_class/robert_frost.txt'): line = line.rstrip() if not line: continue input_line = ' ' + line target_line = line + ' ' input_texts.append(input_line) target_texts.append(target_line) all_lines = input_texts + target_texts # convert the sentences (strings) into integers tokenizer = Tokenizer(num_words=MAX_VOCAB_SIZE, filters='') tokenizer.fit_on_texts(all_lines) input_sequences = tokenizer.texts_to_sequences(input_texts) target_sequences = tokenizer.texts_to_sequences(target_texts) # find max seq length max_sequence_length_from_data = max(len(s) for s in input_sequences) print('Max sequence length:', max_sequence_length_from_data) # get word -> integer mapping word2idx = tokenizer.word_index print('Found %s unique tokens.' % len(word2idx)) assert('' in word2idx) assert('' in word2idx) # pad sequences so that we get a N x T matrix max_sequence_length = min(max_sequence_length_from_data, MAX_SEQUENCE_LENGTH) input_sequences = pad_sequences(input_sequences, maxlen=max_sequence_length, padding='post') target_sequences = pad_sequences(target_sequences, maxlen=max_sequence_length, padding='post') print('Shape of data tensor:', input_sequences.shape) # load in pre-trained word vectors print('Loading word vectors...') word2vec = {} with open(os.path.join('../large_files/glove.6B/glove.6B.%sd.txt' % EMBEDDING_DIM)) as f: # is just a space-separated text file in the format: # word vec[0] vec[1] vec[2] ... for line in f: values = line.split() word = values[0] vec = np.asarray(values[1:], dtype='float32') word2vec[word] = vec print('Found %s word vectors.' % len(word2vec)) # prepare embedding matrix print('Filling pre-trained embeddings...') num_words = min(MAX_VOCAB_SIZE, len(word2idx) + 1) embedding_matrix = np.zeros((num_words, EMBEDDING_DIM)) for word, i in word2idx.items(): if i < MAX_VOCAB_SIZE: embedding_vector = word2vec.get(word) if embedding_vector is not None: # words not found in embedding index will be all zeros. embedding_matrix[i] = embedding_vector # one-hot the targets (can't use sparse cross-entropy) one_hot_targets = np.zeros((len(input_sequences), max_sequence_length, num_words)) for i, target_sequence in enumerate(target_sequences): for t, word in enumerate(target_sequence): if word > 0: one_hot_targets[i, t, word] = 1 # load pre-trained word embeddings into an Embedding layer embedding_layer = Embedding( num_words, EMBEDDING_DIM, weights=[embedding_matrix], # trainable=False ) print('Building model...') # create an LSTM network with a single LSTM input_ = Input(shape=(max_sequence_length,)) initial_h = Input(shape=(LATENT_DIM,)) initial_c = Input(shape=(LATENT_DIM,)) x = embedding_layer(input_) lstm = LSTM(LATENT_DIM, return_sequences=True, return_state=True) x, _, _ = lstm(x, initial_state=[initial_h, initial_c]) # don't need the states here dense = Dense(num_words, activation='softmax') output = dense(x) model = Model([input_, initial_h, initial_c], output) model.compile( loss='categorical_crossentropy', # optimizer='rmsprop', optimizer=Adam(lr=0.01), # optimizer=SGD(lr=0.01, momentum=0.9), metrics=['accuracy'] ) print('Training model...') z = np.zeros((len(input_sequences), LATENT_DIM)) r = model.fit( [input_sequences, z, z], one_hot_targets, batch_size=BATCH_SIZE, epochs=EPOCHS, validation_split=VALIDATION_SPLIT ) # plot some data plt.plot(r.history['loss'], label='loss') plt.plot(r.history['val_loss'], label='val_loss') plt.legend() plt.show() # accuracies plt.plot(r.history['accuracy'], label='acc') plt.plot(r.history['val_accuracy'], label='val_acc') plt.legend() plt.show() # make a sampling model input2 = Input(shape=(1,)) # we'll only input one word at a time x = embedding_layer(input2) x, h, c = lstm(x, initial_state=[initial_h, initial_c]) # now we need states to feed back in output2 = dense(x) sampling_model = Model([input2, initial_h, initial_c], [output2, h, c]) # reverse word2idx dictionary to get back words # during prediction idx2word = {v:k for k, v in word2idx.items()} def sample_line(): # initial inputs np_input = np.array([[ word2idx[''] ]]) h = np.zeros((1, LATENT_DIM)) c = np.zeros((1, LATENT_DIM)) # so we know when to quit eos = word2idx[''] # store the output here output_sentence = [] for _ in range(max_sequence_length): o, h, c = sampling_model.predict([np_input, h, c]) # print("o.shape:", o.shape, o[0,0,:10]) # idx = np.argmax(o[0,0]) probs = o[0,0] if np.argmax(probs) == 0: print("wtf") probs[0] = 0 probs /= probs.sum() idx = np.random.choice(len(probs), p=probs) if idx == eos: break # accuulate output output_sentence.append(idx2word.get(idx, '' % idx)) # make the next input into model np_input[0,0] = idx return ' '.join(output_sentence) # generate a 4 line poem while True: for _ in range(4): print(sample_line()) ans = input("---generate another? [Y/n]---") if ans and ans[0].lower().startswith('n'): break ================================================ FILE: nlp_class3/simple_rnn_test.py ================================================ # https://deeplearningcourses.com/c/deep-learning-advanced-nlp from __future__ import print_function, division from builtins import range, input # Note: you may need to update your version of future # sudo pip install -U future from keras.models import Model from keras.layers import Input, LSTM, GRU import numpy as np import matplotlib.pyplot as plt try: import keras.backend as K if len(K.tensorflow_backend._get_available_gpus()) > 0: from keras.layers import CuDNNLSTM as LSTM from keras.layers import CuDNNGRU as GRU except: pass T = 8 D = 2 M = 3 X = np.random.randn(1, T, D) def lstm1(): input_ = Input(shape=(T, D)) rnn = LSTM(M, return_state=True) x = rnn(input_) model = Model(inputs=input_, outputs=x) o, h, c = model.predict(X) print("o:", o) print("h:", h) print("c:", c) def lstm2(): input_ = Input(shape=(T, D)) rnn = LSTM(M, return_state=True, return_sequences=True) # rnn = GRU(M, return_state=True) x = rnn(input_) model = Model(inputs=input_, outputs=x) o, h, c = model.predict(X) print("o:", o) print("h:", h) print("c:", c) def gru1(): input_ = Input(shape=(T, D)) rnn = GRU(M, return_state=True) x = rnn(input_) model = Model(inputs=input_, outputs=x) o, h = model.predict(X) print("o:", o) print("h:", h) def gru2(): input_ = Input(shape=(T, D)) rnn = GRU(M, return_state=True, return_sequences=True) x = rnn(input_) model = Model(inputs=input_, outputs=x) o, h = model.predict(X) print("o:", o) print("h:", h) print("lstm1:") lstm1() print("lstm2:") lstm2() print("gru1:") gru1() print("gru2:") gru2() ================================================ FILE: nlp_class3/wseq2seq.py ================================================ # # https://deeplearningcourses.com/c/deep-learning-advanced-nlp # get the data at: http://www.manythings.org/anki/ from __future__ import print_function, division from builtins import range, input # Note: you may need to update your version of future # sudo pip install -U future import os, sys from keras.models import Model from keras.layers import Input, LSTM, GRU, Dense, Embedding from keras.preprocessing.text import Tokenizer from keras.preprocessing.sequence import pad_sequences from keras.utils import to_categorical import numpy as np import matplotlib.pyplot as plt try: import keras.backend as K if len(K.tensorflow_backend._get_available_gpus()) > 0: from keras.layers import CuDNNLSTM as LSTM from keras.layers import CuDNNGRU as GRU except: pass # some config BATCH_SIZE = 64 # Batch size for training. EPOCHS = 40 # Number of epochs to train for. LATENT_DIM = 256 # Latent dimensionality of the encoding space. NUM_SAMPLES = 10000 # Number of samples to train on. MAX_NUM_WORDS = 20000 EMBEDDING_DIM = 100 # Where we will store the data input_texts = [] # sentence in original language target_texts = [] # sentence in target language target_texts_inputs = [] # sentence in target language offset by 1 # load in the data # download the data at: http://www.manythings.org/anki/ t = 0 for line in open('../large_files/translation/spa.txt'): # only keep a limited number of samples t += 1 if t > NUM_SAMPLES: break # input and target are separated by tab if '\t' not in line: continue # split up the input and translation input_text, translation, *rest = line.rstrip().split('\t') # make the target input and output # recall we'll be using teacher forcing target_text = translation + ' ' target_text_input = ' ' + translation input_texts.append(input_text) target_texts.append(target_text) target_texts_inputs.append(target_text_input) print("num samples:", len(input_texts)) # tokenize the inputs tokenizer_inputs = Tokenizer(num_words=MAX_NUM_WORDS) tokenizer_inputs.fit_on_texts(input_texts) input_sequences = tokenizer_inputs.texts_to_sequences(input_texts) # get the word to index mapping for input language word2idx_inputs = tokenizer_inputs.word_index print('Found %s unique input tokens.' % len(word2idx_inputs)) # determine maximum length input sequence max_len_input = max(len(s) for s in input_sequences) # tokenize the outputs # don't filter out special characters # otherwise and won't appear tokenizer_outputs = Tokenizer(num_words=MAX_NUM_WORDS, filters='') tokenizer_outputs.fit_on_texts(target_texts + target_texts_inputs) # inefficient, oh well target_sequences = tokenizer_outputs.texts_to_sequences(target_texts) target_sequences_inputs = tokenizer_outputs.texts_to_sequences(target_texts_inputs) # get the word to index mapping for output language word2idx_outputs = tokenizer_outputs.word_index print('Found %s unique output tokens.' % len(word2idx_outputs)) # store number of output words for later # remember to add 1 since indexing starts at 1 num_words_output = len(word2idx_outputs) + 1 # determine maximum length output sequence max_len_target = max(len(s) for s in target_sequences) # pad the sequences encoder_inputs = pad_sequences(input_sequences, maxlen=max_len_input) print("encoder_inputs.shape:", encoder_inputs.shape) print("encoder_inputs[0]:", encoder_inputs[0]) decoder_inputs = pad_sequences(target_sequences_inputs, maxlen=max_len_target, padding='post') print("decoder_inputs[0]:", decoder_inputs[0]) print("decoder_inputs.shape:", decoder_inputs.shape) decoder_targets = pad_sequences(target_sequences, maxlen=max_len_target, padding='post') # store all the pre-trained word vectors print('Loading word vectors...') word2vec = {} with open(os.path.join('../large_files/glove.6B/glove.6B.%sd.txt' % EMBEDDING_DIM)) as f: # is just a space-separated text file in the format: # word vec[0] vec[1] vec[2] ... for line in f: values = line.split() word = values[0] vec = np.asarray(values[1:], dtype='float32') word2vec[word] = vec print('Found %s word vectors.' % len(word2vec)) # prepare embedding matrix print('Filling pre-trained embeddings...') num_words = min(MAX_NUM_WORDS, len(word2idx_inputs) + 1) embedding_matrix = np.zeros((num_words, EMBEDDING_DIM)) for word, i in word2idx_inputs.items(): if i < MAX_NUM_WORDS: embedding_vector = word2vec.get(word) if embedding_vector is not None: # words not found in embedding index will be all zeros. embedding_matrix[i] = embedding_vector # create embedding layer embedding_layer = Embedding( num_words, EMBEDDING_DIM, weights=[embedding_matrix], input_length=max_len_input, # trainable=True ) # create targets, since we cannot use sparse # categorical cross entropy when we have sequences decoder_targets_one_hot = np.zeros( ( len(input_texts), max_len_target, num_words_output ), dtype='float32' ) # assign the values for i, d in enumerate(decoder_targets): for t, word in enumerate(d): if word != 0: decoder_targets_one_hot[i, t, word] = 1 ##### build the model ##### encoder_inputs_placeholder = Input(shape=(max_len_input,)) x = embedding_layer(encoder_inputs_placeholder) encoder = LSTM( LATENT_DIM, return_state=True, # dropout=0.5 # dropout not available on gpu ) encoder_outputs, h, c = encoder(x) # encoder_outputs, h = encoder(x) #gru # keep only the states to pass into decoder encoder_states = [h, c] # encoder_states = [state_h] # gru # Set up the decoder, using [h, c] as initial state. decoder_inputs_placeholder = Input(shape=(max_len_target,)) # this word embedding will not use pre-trained vectors # although you could decoder_embedding = Embedding(num_words_output, EMBEDDING_DIM) decoder_inputs_x = decoder_embedding(decoder_inputs_placeholder) # since the decoder is a "to-many" model we want to have # return_sequences=True decoder_lstm = LSTM( LATENT_DIM, return_sequences=True, return_state=True, # dropout=0.5 # dropout not available on gpu ) decoder_outputs, _, _ = decoder_lstm( decoder_inputs_x, initial_state=encoder_states ) # decoder_outputs, _ = decoder_gru( # decoder_inputs_x, # initial_state=encoder_states # ) # final dense layer for predictions decoder_dense = Dense(num_words_output, activation='softmax') decoder_outputs = decoder_dense(decoder_outputs) # Create the model object model = Model([encoder_inputs_placeholder, decoder_inputs_placeholder], decoder_outputs) def custom_loss(y_true, y_pred): # both are of shape N x T x K mask = K.cast(y_true > 0, dtype='float32') out = mask * y_true * K.log(y_pred) return -K.sum(out) / K.sum(mask) def acc(y_true, y_pred): # both are of shape N x T x K targ = K.argmax(y_true, axis=-1) pred = K.argmax(y_pred, axis=-1) correct = K.cast(K.equal(targ, pred), dtype='float32') # 0 is padding, don't include those mask = K.cast(K.greater(targ, 0), dtype='float32') n_correct = K.sum(mask * correct) n_total = K.sum(mask) return n_correct / n_total model.compile(optimizer='adam', loss=custom_loss, metrics=[acc]) # Compile the model and train it # model.compile( # optimizer='rmsprop', # loss='categorical_crossentropy', # metrics=['accuracy'] # ) r = model.fit( [encoder_inputs, decoder_inputs], decoder_targets_one_hot, batch_size=BATCH_SIZE, epochs=EPOCHS, validation_split=0.2, ) # plot some data plt.plot(r.history['loss'], label='loss') plt.plot(r.history['val_loss'], label='val_loss') plt.legend() plt.show() # accuracies plt.plot(r.history['accuracy'], label='acc') plt.plot(r.history['val_accuracy'], label='val_acc') plt.legend() plt.show() # Save model model.save('s2s.h5') ##### Make predictions ##### # As with the poetry example, we need to create another model # that can take in the RNN state and previous word as input # and accept a T=1 sequence. # The encoder will be stand-alone # From this we will get our initial decoder hidden state encoder_model = Model(encoder_inputs_placeholder, encoder_states) decoder_state_input_h = Input(shape=(LATENT_DIM,)) decoder_state_input_c = Input(shape=(LATENT_DIM,)) decoder_states_inputs = [decoder_state_input_h, decoder_state_input_c] # decoder_states_inputs = [decoder_state_input_h] # gru decoder_inputs_single = Input(shape=(1,)) decoder_inputs_single_x = decoder_embedding(decoder_inputs_single) # this time, we want to keep the states too, to be output # by our sampling model decoder_outputs, h, c = decoder_lstm( decoder_inputs_single_x, initial_state=decoder_states_inputs ) # decoder_outputs, state_h = decoder_lstm( # decoder_inputs_single_x, # initial_state=decoder_states_inputs # ) #gru decoder_states = [h, c] # decoder_states = [h] # gru decoder_outputs = decoder_dense(decoder_outputs) # The sampling model # inputs: y(t-1), h(t-1), c(t-1) # outputs: y(t), h(t), c(t) decoder_model = Model( [decoder_inputs_single] + decoder_states_inputs, [decoder_outputs] + decoder_states ) # map indexes back into real words # so we can view the results idx2word_eng = {v:k for k, v in word2idx_inputs.items()} idx2word_trans = {v:k for k, v in word2idx_outputs.items()} def decode_sequence(input_seq): # Encode the input as state vectors. states_value = encoder_model.predict(input_seq) # Generate empty target sequence of length 1. target_seq = np.zeros((1, 1)) # Populate the first character of target sequence with the start character. # NOTE: tokenizer lower-cases all words target_seq[0, 0] = word2idx_outputs[''] # if we get this we break eos = word2idx_outputs[''] # Create the translation output_sentence = [] for _ in range(max_len_target): output_tokens, h, c = decoder_model.predict( [target_seq] + states_value ) # output_tokens, h = decoder_model.predict( # [target_seq] + states_value # ) # gru # Get next word idx = np.argmax(output_tokens[0, 0, :]) # End sentence of EOS if eos == idx: break word = '' if idx > 0: word = idx2word_trans[idx] output_sentence.append(word) # Update the decoder input # which is just the word just generated target_seq[0, 0] = idx # Update states states_value = [h, c] # states_value = [h] # gru return ' '.join(output_sentence) while True: # Do some test translations i = np.random.choice(len(input_texts)) input_seq = encoder_inputs[i:i+1] translation = decode_sequence(input_seq) print('-') print('Input:', input_texts[i]) print('Translation:', translation) ans = input("Continue? [Y/n]") if ans and ans.lower().startswith('n'): break ================================================ FILE: nlp_v2/WHERE ARE THE NOTEBOOKS.txt ================================================ As stated in the "where to get the code" / "where to get the notebooks" lecture, the notebooks are NOT on Github. If you missed this, please review the lecture for the actual location of the notebooks. If, after reviewing it, you still need assistance, please contact info@deeplearningcourses.com. ================================================ FILE: nlp_v2/extra_reading.txt ================================================ An information-theoretic perspective of tf–idf measures https://www.sciencedirect.com/science/article/abs/pii/S0306457302000213 A Mathematical Theory of Communication by Claude Shannon https://people.math.harvard.edu/~ctm/home/text/others/shannon/entropy/entropy.pdf TextRank: Bringing Order into Texts https://web.eecs.umich.edu/~mihalcea/papers/mihalcea.emnlp04.pdf Variations of the Similarity Function of TextRank for Automated Summarization https://arxiv.org/abs/1602.03606 Generic Text Summarization Using Relevance Measure and Latent Semantic Analysis https://www.cs.bham.ac.uk/~pxt/IDA/text_summary.pdf Using Latent Semantic Analysis in Text Summarization and Summary Evaluation http://textmining.zcu.cz/publications/isim.pdf Spam Filtering with Naive Bayes – Which Naive Bayes? http://www2.aueb.gr/users/ion/docs/ceas2006_paper.pdf Sentiment analysis using multinomial logistic regression https://ieeexplore.ieee.org/document/8226700 Latent Dirichlet Allocation https://www.jmlr.org/papers/volume3/blei03a/blei03a.pdf List of Hugging Face Pipelines for NLP https://lazyprogrammer.me/list-of-hugging-face-pipelines-for-nlp/ Indexing by Latent Semantic Analysis (Latent Semantic Indexing) http://lsa.colorado.edu/papers/JASIS.lsi.90.pdf Efficient Estimation of Word Representations in Vector Space (word2vec) https://arxiv.org/abs/1301.3781 GloVe: Global Vectors for Word Representation (GloVe) https://nlp.stanford.edu/pubs/glove.pdf Deep Learning with Tensorflow, a bit more in-depth https://deeplearningcourses.com/c/deep-learning-tensorflow-2 ================================================ FILE: numpy_class/classification_example.py ================================================ # https://deeplearningcourses.com/c/deep-learning-prerequisites-the-numpy-stack-in-python # https://www.udemy.com/deep-learning-prerequisites-the-numpy-stack-in-python # YouTube direct link: http://bit.ly/2LENC50 from __future__ import print_function, division from future.utils import iteritems from builtins import range, input # Note: you may need to update your version of future # sudo pip install -U future # just in case we need it import numpy as np # import the function that will get the data # yes, sklearn comes with built-in datasets! from sklearn.datasets import load_breast_cancer # load the data data = load_breast_cancer() # check the type of 'data' type(data) # note: it is a Bunch object # this basically acts like a dictionary where you can treat the keys like attributes data.keys() # 'data' (the attribute) means the input data data.data.shape # it has 569 samples, 30 features # 'targets' data.target # note how the targets are just 0s and 1s # normally, when you have K targets, they are labeled 0..K-1 # their meaning is not lost data.target_names # there are also 569 corresponding targets data.target.shape # you can also determinw the meaning of each feature data.feature_names # normally we would put all of our imports at the top # but this lets us tell a story from sklearn.model_selection import train_test_split # split the data into train and test sets # this lets us simulate how our model will perform in the future X_train, X_test, y_train, y_test = train_test_split(data.data, data.target, test_size=0.33) # instantiate a classifer and train it from sklearn.ensemble import RandomForestClassifier model = RandomForestClassifier() model.fit(X_train, y_train) # evaluate the model's performance model.score(X_train, y_train) model.score(X_test, y_test) # how you can make predictions predictions = model.predict(X_test) # what did we get? predictions # manually check the accuracy of your predictions N = len(y_test) np.sum(predictions == y_test) / N # can also just call np.mean() # we can even use deep learning to solve the same problem! from sklearn.neural_network import MLPClassifier # you'll learn why scaling is needed in a later course from sklearn.preprocessing import StandardScaler scaler = StandardScaler() X_train2 = scaler.fit_transform(X_train) X_test2 = scaler.transform(X_test) model = MLPClassifier(max_iter=500) model.fit(X_train2, y_train) # evaluate the model's performance model.score(X_train2, y_train) model.score(X_test2, y_test) ================================================ FILE: numpy_class/dot_for.py ================================================ # https://deeplearningcourses.com/c/deep-learning-prerequisites-the-numpy-stack-in-python # https://www.udemy.com/deep-learning-prerequisites-the-numpy-stack-in-python import numpy as np from datetime import datetime a = np.random.randn(100) b = np.random.randn(100) T = 100000 def slow_dot_product(a, b): result = 0 for e, f in zip(a, b): result += e*f return result t0 = datetime.now() for t in xrange(T): slow_dot_product(a, b) dt1 = datetime.now() - t0 t0 = datetime.now() for t in xrange(T): a.dot(b) dt2 = datetime.now() - t0 print "dt1 / dt2:", dt1.total_seconds() / dt2.total_seconds() ================================================ FILE: numpy_class/exercises/ex1.py ================================================ # https://deeplearningcourses.com/c/deep-learning-prerequisites-the-numpy-stack-in-python # https://www.udemy.com/deep-learning-prerequisites-the-numpy-stack-in-python from __future__ import print_function, division from future.utils import iteritems from builtins import range, input # Note: you may need to update your version of future # sudo pip install -U future import numpy as np import matplotlib.pyplot as plt A = np.array([ [0.3, 0.6, 0.1], [0.5, 0.2, 0.3], [0.4, 0.1, 0.5]]) v = np.ones(3) / 3 num_iters = 25 distances = np.zeros(num_iters) for i in range(num_iters): v2 = v.dot(A) d = np.linalg.norm(v2 - v) distances[i] = d v = v2 plt.plot(distances) plt.show() ================================================ FILE: numpy_class/exercises/ex2.py ================================================ # https://deeplearningcourses.com/c/deep-learning-prerequisites-the-numpy-stack-in-python # https://www.udemy.com/deep-learning-prerequisites-the-numpy-stack-in-python from __future__ import print_function, division from future.utils import iteritems from builtins import range, input # Note: you may need to update your version of future # sudo pip install -U future import numpy as np import matplotlib.pyplot as plt def sampleY(n=1000): # draw n samples from uniform dist. X = np.random.random(n) Y = X.sum() return Y # now draw N Y's N = 1000 Y_samples = np.zeros(N) for i in range(N): Y_samples[i] = sampleY() # now plot the Y_samples plt.hist(Y_samples, bins=20) plt.show() ================================================ FILE: numpy_class/exercises/ex3.py ================================================ # https://deeplearningcourses.com/c/deep-learning-prerequisites-the-numpy-stack-in-python # https://www.udemy.com/deep-learning-prerequisites-the-numpy-stack-in-python from __future__ import print_function, division from future.utils import iteritems from builtins import range, input # Note: you may need to update your version of future # sudo pip install -U future import numpy as np import pandas as pd import matplotlib.pyplot as plt # load in the data df = pd.read_csv('../../large_files/train.csv') data = df.values X = data[:, 1:] # images Y = data[:, 0] # labels # loop through each label for k in range(10): Xk = X[Y == k] # mean image Mk = Xk.mean(axis=0) # reshape into an image im = Mk.reshape(28, 28) # plot the image plt.imshow(im, cmap='gray') plt.title("Label: %s" % k) plt.show() ================================================ FILE: numpy_class/exercises/ex4.py ================================================ # https://deeplearningcourses.com/c/deep-learning-prerequisites-the-numpy-stack-in-python # https://www.udemy.com/deep-learning-prerequisites-the-numpy-stack-in-python from __future__ import print_function, division from future.utils import iteritems from builtins import range, input # Note: you may need to update your version of future # sudo pip install -U future import numpy as np import pandas as pd import matplotlib.pyplot as plt # load in the data df = pd.read_csv('../../large_files/train.csv') data = df.values # shuffle the images np.random.shuffle(data) X = data[:, 1:] # images Y = data[:, 0] # labels # define rotate functions def rotate1(im): return np.rot90(im, 3) def rotate2(im): H, W = im.shape im2 = np.zeros((W, H)) for i in range(H): for j in range(W): im2[j,H - i - 1] = im[i,j] return im2 for i in range(X.shape[0]): # get the image im = X[i].reshape(28, 28) # flip the image # im = rotate1(im) im = rotate2(im) # plot the image plt.imshow(im, cmap='gray') plt.title("Label: %s" % Y[i]) plt.show() ans = input("Continue? [Y/n]: ") if ans and ans[0].lower() == 'n': break ================================================ FILE: numpy_class/exercises/ex5.py ================================================ # https://deeplearningcourses.com/c/deep-learning-prerequisites-the-numpy-stack-in-python # https://www.udemy.com/deep-learning-prerequisites-the-numpy-stack-in-python from __future__ import print_function, division from future.utils import iteritems from builtins import range, input # Note: you may need to update your version of future # sudo pip install -U future import numpy as np import matplotlib.pyplot as plt def is_symmetric1(A): return np.all(A == A.T) def is_symmetric2(A): rows, cols = A.shape if rows != cols: return False for i in range(rows): for j in range(cols): if A[i,j] != A[j,i]: return False return True def check(A, b): print("Testing:", A) assert(is_symmetric1(A) == b) assert(is_symmetric2(A) == b) # test the functions A = np.zeros((3, 3)) check(A, True) A = np.eye(3) check(A, True) A = np.random.randn(3, 2) A = A.dot(A.T) check(A, True) A = np.array([[1, 2, 3], [2, 4, 5], [3, 5, 6]]) check(A, True) A = np.random.randn(3, 2) check(A, False) A = np.random.randn(3, 3) check(A, False) A = np.arange(9).reshape(3, 3) check(A, False) ================================================ FILE: numpy_class/exercises/ex6.py ================================================ # https://deeplearningcourses.com/c/deep-learning-prerequisites-the-numpy-stack-in-python # https://www.udemy.com/deep-learning-prerequisites-the-numpy-stack-in-python from __future__ import print_function, division from future.utils import iteritems from builtins import range, input # Note: you may need to update your version of future # sudo pip install -U future import numpy as np import matplotlib.pyplot as plt # generate unlabeled data N = 2000 X = np.random.random((N, 2))*2 - 1 # generate labels Y = np.zeros(N) Y[(X[:,0] < 0) & (X[:,1] > 0)] = 1 Y[(X[:,0] > 0) & (X[:,1] < 0)] = 1 # plot it plt.scatter(X[:,0], X[:,1], c=Y) plt.show() ================================================ FILE: numpy_class/exercises/ex7.py ================================================ # https://deeplearningcourses.com/c/deep-learning-prerequisites-the-numpy-stack-in-python # https://www.udemy.com/deep-learning-prerequisites-the-numpy-stack-in-python from __future__ import print_function, division from future.utils import iteritems from builtins import range, input # Note: you may need to update your version of future # sudo pip install -U future import numpy as np import matplotlib.pyplot as plt def get_donut(): N = 2000 R_inner = 5 R_outer = 10 # distance from origin is radius + random normal # angle theta is uniformly distributed between (0, 2pi) R1 = np.random.randn(N//2) + R_inner theta = 2*np.pi*np.random.random(N//2) X_inner = np.concatenate([[R1 * np.cos(theta)], [R1 * np.sin(theta)]]).T R2 = np.random.randn(N//2) + R_outer theta = 2*np.pi*np.random.random(N//2) X_outer = np.concatenate([[R2 * np.cos(theta)], [R2 * np.sin(theta)]]).T X = np.concatenate([ X_inner, X_outer ]) Y = np.array([0]*(N//2) + [1]*(N//2)) return X, Y X, Y = get_donut() plt.scatter(X[:,0], X[:,1], c=Y) plt.show() ================================================ FILE: numpy_class/exercises/ex8.py ================================================ # https://deeplearningcourses.com/c/deep-learning-prerequisites-the-numpy-stack-in-python # https://www.udemy.com/deep-learning-prerequisites-the-numpy-stack-in-python from __future__ import print_function, division from future.utils import iteritems from builtins import range, input # Note: you may need to update your version of future # sudo pip install -U future import numpy as np import matplotlib.pyplot as plt def get_spiral(): # Idea: radius -> low...high # (don't start at 0, otherwise points will be "mushed" at origin) # angle = low...high proportional to radius # [0, 2pi/6, 4pi/6, ..., 10pi/6] --> [pi/2, pi/3 + pi/2, ..., ] # x = rcos(theta), y = rsin(theta) as usual radius = np.linspace(1, 10, 100) thetas = np.empty((6, 100)) for i in range(6): start_angle = np.pi*i / 3.0 end_angle = start_angle + np.pi / 2 points = np.linspace(start_angle, end_angle, 100) thetas[i] = points # convert into cartesian coordinates x1 = np.empty((6, 100)) x2 = np.empty((6, 100)) for i in range(6): x1[i] = radius * np.cos(thetas[i]) x2[i] = radius * np.sin(thetas[i]) # inputs X = np.empty((600, 2)) X[:,0] = x1.flatten() X[:,1] = x2.flatten() # add noise X += np.random.randn(600, 2)*0.5 # targets Y = np.array([0]*100 + [1]*100 + [0]*100 + [1]*100 + [0]*100 + [1]*100) return X, Y X, Y = get_spiral() plt.scatter(X[:,0], X[:,1], c=Y) plt.show() ================================================ FILE: numpy_class/exercises/ex9.py ================================================ # https://deeplearningcourses.com/c/deep-learning-prerequisites-the-numpy-stack-in-python # https://www.udemy.com/deep-learning-prerequisites-the-numpy-stack-in-python from __future__ import print_function, division from future.utils import iteritems from builtins import range, input # Note: you may need to update your version of future # sudo pip install -U future import numpy as np import pandas as pd import matplotlib.pyplot as plt from ex8 import get_spiral # get the data X, Y = get_spiral() # combine the data into one array # data to be concatenated must have same # of dimensions # e.g. N x D and N x 1 # not N x D and N data = np.concatenate((X, np.expand_dims(Y, 1)), axis=1) df = pd.DataFrame(data) df.columns = ['x1', 'x2', 'y'] df.to_csv('mydata.csv', index=False) ================================================ FILE: numpy_class/manual_data_loading.py ================================================ # https://deeplearningcourses.com/c/deep-learning-prerequisites-the-numpy-stack-in-python # https://www.udemy.com/deep-learning-prerequisites-the-numpy-stack-in-python # NOTE: in class, we assumed the current working directory # was linear_regression_class # in this file, we assume you are running the script # from the directory this file is in import numpy as np X = [] for line in open('../linear_regression_class/data_2d.csv'): row = line.split(',') sample = map(float, row) X.append(sample) X = np.array(X) print X ================================================ FILE: numpy_class/python3/dot_for.py ================================================ # https://deeplearningcourses.com/c/deep-learning-prerequisites-the-numpy-stack-in-python # https://www.udemy.com/deep-learning-prerequisites-the-numpy-stack-in-python from __future__ import print_function, division from builtins import range # Note: you may need to update your version of future # sudo pip install -U future import numpy as np from datetime import datetime a = np.random.randn(100) b = np.random.randn(100) T = 100000 def slow_dot_product(a, b): result = 0 for e, f in zip(a, b): result += e*f return result t0 = datetime.now() for t in range(T): slow_dot_product(a, b) dt1 = datetime.now() - t0 t0 = datetime.now() for t in range(T): a.dot(b) dt2 = datetime.now() - t0 print("dt1 / dt2:", dt1.total_seconds() / dt2.total_seconds()) ================================================ FILE: numpy_class/python3/manual_data_loading.py ================================================ # https://deeplearningcourses.com/c/deep-learning-prerequisites-the-numpy-stack-in-python # https://www.udemy.com/deep-learning-prerequisites-the-numpy-stack-in-python # NOTE: in class, we assumed the current working directory # was linear_regression_class # in this file, we assume you are running the script # from the directory this file is in import numpy as np X = [] for line in open('../../linear_regression_class/data_2d.csv'): row = line.split(',') sample = list(map(float, row)) X.append(sample) X = np.array(X) print(X) ================================================ FILE: numpy_class/regression_example.py ================================================ # https://deeplearningcourses.com/c/deep-learning-prerequisites-the-numpy-stack-in-python # https://www.udemy.com/deep-learning-prerequisites-the-numpy-stack-in-python # YouTube direct link: http://bit.ly/2LENC50 # Get the data from: # https://archive.ics.uci.edu/ml/datasets/Airfoil+Self-Noise from __future__ import print_function, division from future.utils import iteritems from builtins import range, input # Note: you may need to update your version of future # sudo pip install -U future # just in case we need it import numpy as np import pandas as pd # load the data # important note: this is where we will usually put data files df = pd.read_csv('../large_files/airfoil_self_noise.dat', sep='\t', header=None) # check the data df.head() df.info() # get the inputs data = df[[0,1,2,3,4]].values # get the outputs target = df[5].values # tiny update: pandas is moving from .as_matrix() to the equivalent .values # normally we would put all of our imports at the top # but this lets us tell a story from sklearn.model_selection import train_test_split # split the data into train and test sets # this lets us simulate how our model will perform in the future X_train, X_test, y_train, y_test = train_test_split(data, target, test_size=0.33) # instantiate a classifer and train it from sklearn.linear_model import LinearRegression model = LinearRegression() model.fit(X_train, y_train) # evaluate the model's performance print(model.score(X_train, y_train)) print(model.score(X_test, y_test)) # how you can make predictions predictions = model.predict(X_test) # what did we get? predictions # we can even use random forest to solve the same problem! from sklearn.ensemble import RandomForestRegressor model2 = RandomForestRegressor() model2.fit(X_train, y_train) # evaluate the model's performance print(model2.score(X_train, y_train)) print(model2.score(X_test, y_test)) # we can even use deep learning to solve the same problem! from sklearn.neural_network import MLPRegressor # you'll learn why scaling is needed in a later course from sklearn.preprocessing import StandardScaler scaler = StandardScaler() X_train2 = scaler.fit_transform(X_train) X_test2 = scaler.transform(X_test) scaler2 = StandardScaler() y_train2 = scaler2.fit_transform(np.expand_dims(y_train, -1)).ravel() y_test2 = scaler2.fit_transform(np.expand_dims(y_test, -1)).ravel() model = MLPRegressor(max_iter=500) model.fit(X_train2, y_train2) # evaluate the model's performance print(model.score(X_train2, y_train2)) print(model.score(X_test2, y_test2)) # not as good as a random forest! # but not as bad as linear regression ================================================ FILE: numpy_class/table1.csv ================================================ user_id,email,age 1,alice@gmail.com,20 2,bob@gmail.com,25 3,carol@gmail.com,30 ================================================ FILE: numpy_class/table2.csv ================================================ user_id,ad_id,click 1,1,1 1,2,0 1,5,0 2,3,0 2,4,1 2,1,0 3,2,0 3,1,0 3,3,0 3,4,0 3,5,1 ================================================ FILE: openai/extra_reading.txt ================================================ How to Set Environment Variables Permanently in Windows, Linux, and Mac https://lazyprogrammer.me/how-to-set-environment-variables-permanently-in-windows-linux-and-mac/ How to make your completions outputs consistent with the new seed parameter https://cookbook.openai.com/examples/reproducible_outputs_with_the_seed_parameter What is Temperature in NLP / LLMs? https://medium.com/@lazyprogrammerofficial/what-is-temperature-in-nlp-llms-aa2a7212e687 Large Language Models are Zero-Shot Reasoners (CoT) https://arxiv.org/abs/2205.11916 Chain-of-Thought Prompting Elicits Reasoning in Large Language Models https://arxiv.org/abs/2201.11903 A much better example of "ELI5" https://www.reddit.com/r/ChatGPT/comments/1c5s51g/my_mother_and_i_had_difficulty_understanding_my What is RAG? — Retrieval-Augmented Generation Explained https://medium.com/@lazyprogrammerofficial/what-is-rag-retrieval-augmented-generation-explained-148c8bb9c00f https://lazyprogrammer.me/what-is-rag-retrieval-augmented-generation-explained/ ================================================ FILE: openai/replies.json ================================================ [ { "review": "(1) His answers are sometimes antagonistic but the guy wants us to think by ourselves. I feel he was guided by questions from students with very little background on the subject. (2) Links are not updated. I understand not updated them on the videos, but on the git repository and the scripts, it should have them updated. (3) Explanations are great, with a few inconsistencies when compared to Gemini.google.com understanding. (4) The course content in general is great.", "response": "(1) I think all students should respect other students taking this course. All students deserve to have their questions answered, and no student can expect to have this course personalized to their own background.\n\n(2) This is incorrect, and you were already instructed on the Q&A to ensure you were looking at the correct repository with the most up-to-date files.\n\n(3) LLMs are known for hallucinating, and their output cannot be trusted, especially if you don't know what you're doing. Instead, you should be using the Q&A to rectify these issues, which is why it's the #1 rule in 'how to succeed in this course'." }, { "review": "You should have explained in the introduction video that, you have not yet figured out Stock forecasting, so explaining your (thoughts or beliefs or work) in this course. But marketing in great way , nothing in content other than playing with data.", "response": "Try paying attention and understanding the course. If you still believe there's some magic algorithm to perfectly predict stock prices and I \"just haven't figured it out yet\", you clearly weren't listening, know absolutely nothing about finance, and hence, spreading misinformation to readers." }, { "review": "I'm really disappointed. The last update of your codes was 9 years ago. Nothing is running. I tried file after file - nothing works. I don't think you could even continue to sell these courses. Unfortunately, I can no longer cancel the current course, but I will cancel the next course. Your courses do not meet basic standards. Too bad.", "response": "> The last update of your codes was 9 years ago.\n\nNOTE: Our friend here just doesn't know how to use Git properly. My ML Github repo was CREATED 9 years ago (long before I even started making courses)." }, { "review": "nao é claro ainda como fazer o donlow de githum", "response": "Thanks for the feedback! Please re-watch the lecture \"Where to get the code / notebooks\" carefully and follow the instructions. It clearly states 5 times (yes, that many times) that the notebooks are not on Github, but rather, are accessed via the code link." }, { "review": "It is a good course about RL, as all his courses, but if you are here for the Trading agent, don't buy it... very basic code and does not really work.", "response": "Thanks for your feedback! However, it seems you are basing your rating around your own misconceptions and naivete surrounding trading and finance, rather than the quality of the course itself." }, { "review": "Need to explain more about the topic. CNN is more theoretical in the course than programming.", "response": "Incorrect. There are equal parts theory and programming. Every \"theoretical\" concept is implemented in code. And obviously, you must understand \"what\" you are coding before you code it. Please pay attention to improve your understanding, thanks!" }, { "review": "The content is ok but the links between videos and sections aren't always obvious. I like the fact that it goes in dept on my subjects but the quality of the audio isn't always good enough. I would still recommend to someone that really want to have a better understanding of AI/ML or specifically logistic regression but expect some extra reading if you really want to understand all the concepts well.", "response": "You should probably revisit the \"introduction and outline\" of the course if you've forgotten the structure of the course. There's only \"extra reading\" if you do not sufficiently meet the prerequisites." }, { "review": "I expected some coding and practice but most of the course till now is just theory", "response": "That's incorrect, and this is even visible from simply looking at the lecture titles. There are equal parts theory and code. First we discuss \"what\" we will code, then we code it. Obviously, you can't write code without knowing what you're coding first... Please pay attention to improve your understanding, thanks!" }, { "review": "It is all over the place ... not very structured and i have IT and python background , still finding difficult to follow ... i wonder how the Deep learning course will be", "response": "Unclear why you're having trouble following the structure of such a simple short course. There are only 4 sections: Numpy, Matplotlib, Pandas, and Scipy. Please pay attention to improve your understanding, thanks!" }, { "review": "Content is good so far, but lecturer seems hung up on the behaviors of the participants which is not helping the instruction time.", "response": "It's important to remember that the course isn't customized for you individually. Therefore, it should be expected that common problems that afflict a non-trivial number of students will be addressed." }, { "review": "Explanation is not clear as we are beginners. May be improve better to understand clearly.", "response": "Thanks for the feedback! Please ensure you meet the prerequisites as listed twice in the course description and several more times in lectures such as \"how to succeed in this course\"." }, { "review": "Much was great, some frequently explained by referring to other courses as well as skipping some code blocks or instrumental variables, which were readily explained in chat gpt by asking if to add copious explanatory comments. Most, but certainly not all AI ML course instructors are more concerned with taking the time to explain finer details of the code. Early parts on ANN and CNN were excellent in presentation although this was simpler material. In the course was more presenting and explaining than teaching how to code the models, both necessary individually and together sufficient for a solid learning experience. Perhaps sacrifice some optional topics for more time indepth to the course essentials - quantity versus quality.", "response": "Unclear whether you wrote this comment for the wrong course, as there are no sections about ANNs or CNNs in this course... Furthermore, this course is not about in-depth theory - please check the course description and prerequisites, thanks!" }, { "review": "Some more details about math equations could be added", "response": "Thanks for the feedback! Please ensure you meet the prerequisites as listed twice in the course description and several more times in lectures such as \"how to succeed in this course\". Furthermore, you may want to read the course description that explains that this course is about Tensorflow 2, not the math behind deep learning. I already have courses on that, so check those out instead." }, { "review": "Teaches only Syntax and not any ML or theory behind how any of the Neural Network architectures work.", "response": "Incorrect. This course gives an overview of theory, and furthermore, I already have 15+ in-depth DL courses that go into the math behind DL. Luckily, this is all in the course description, which I'm sure you've diligently read. ;)" }, { "review": "It was a good match for my current abilities. I could not access the live python notebooks or links used. I would have appreciated solutions to the end of section exercises. Overall though the instructor is very knowledgeable and the course is free so I can't complain.", "response": "The key is to follow the instructions. All notebooks and exercise solutions are provided, if you can just follow the instructions on how to get them (clicking links). It really is very easy, it just requires paying attention. :)" }, { "review": "The Neural Network part is not very clear", "response": "This course doesn't talk about neural networks..." }, { "review": "need more examples", "response": "The course is full of examples, please use the Q&A if you have difficulties understanding them" }, { "review": "Could use a bit more time spent on explaining certain concepts, like Box-Cox, giving more intuition and explanation of why that is useful", "response": "Please use the Q&A to inquire about your misunderstandings, as stated in \"how to succeed in this course\"." }, { "review": "Interesting course with lots of examples and lectures. Although some parts of the course become repetitive. There are lectures where he explains the code step by step and then goes on to repeat the same thing in the \"... in Python\" lectures. It would have been nice if he had proposed other exercises with a different dataset than the lectures, even though he does not provide the solution. It is fine to say that we should try to write the code ourselves first and then check the solution, but when this is reduced to copy and paste from the previous lecture it seems ridiculous to me.", "response": "This is a practical course, meaning that you are shown the code and can do with it what you wish (there's no way to \"exercise\" writing library code without first being shown the syntax, which doesn't make any sense). Additionally, repetition is a research-backed learning technique: https://www.ncbi.nlm.nih.gov/pmc/articles/PMC8442015/ Furthermore, please remember that the course is not customized to you. Therefore, if you personally choose to avoid repetition, you are free to do so, nobody is stopping you." }, { "review": "I enjoyed the author explanation on the differences between statistics regression and ML regression content. But I think the lecture on the differences was pedantic and unnecessary even. The content list and summary to this lecture is where the distinction could be made. Instead, it was spent ranting within the lecture, how does that provide any value and meaningful experience? Worry not about the review, if the content is good, the review would come.", "response": "> But I think the lecture on the differences was pedantic and unnecessary even.\n\nPlease remember, the course is not customized for you personally, it's for all students and therefore addresses common student mistakes, irrespective of your personal needs. Obviously, I have to answer ALL student questions, whether or not you personally find the question/answer helpful." }, { "review": "The instructor seems inadequately prepared for each segment of the course. There is a noticeable absence of demonstrations that are essential for a comprehensive understanding of the material. Furthermore, there is a disproportionate emphasis on paid websites over free alternatives, raising concerns about potential conflicts of interest due to affiliate marketing associations with these paid platforms.", "response": "Everything is demonstrated in Colab notebooks. I challenge you to list specific examples instead of vague accusations like \"inadequately prepared\" and \"noticeable absence of demonstrations\".\n\n> disproportionate emphasis on paid websites over free alternatives\n\nThat is merely what you are paying attention to and triggered by. Most tools in the course are free or have free alternatives. Furthermore, I don't choose what's free, they are not my companies, so I am unsure why you think this is my fault...?" }, { "review": "I have taken this course and have spent lot of hrs and can tell that, this 12 hrs course will take lot of time to understand and complete (150 hrs). This can be done if we have 100% free time for 4 weeks. Good thing is if you have little idea of Calculus and we flow what is being taught, this course will make us ready to understand ML. Having said that the instructor should again go back and try to minimize the un-necessary or repetitive content.", "response": "There is no unnecessary or repetitive content, and if you believe there is, you should use the Q&A to clear up any misunderstandings as instructed in the \"how to succeed in this course\" video." }, { "review": "Content is inconsistent in difficulty. Instructor is not good at explaining highly complicated topics that require a lot of Mathematics.", "response": "Thanks for the feedback! Please ensure you meet the prerequisites as listed twice in the course description and several more times in lectures such as \"how to succeed in this course\". Please recall that each section is denoted as \"beginner\", \"intermediate\", or \"advanced\" (as stated in the intro). One must choose according to their own skill level. This obvious lack of attention explains why you are having trouble understanding the course (since clearly, even the basic info in the intro was beyond your understanding)." }, { "review": "you are READING the slide nicely.", "response": "Incorrect. The slides provide a summary of the spoken audio, like all courses on this site, all other video-based courses, and all presentations around the world. I'm amused that you would act \"surprised\" by such a normal occurrence... The slides are not being \"read\", and anyone taking the course can confirm this fact readily, so this comment is both inaccurate and misleading to potential students." }, { "review": "There are some good topics explained, but lots of tutorials are just off topic (not about NLP), but various attempts from the instructor the explain to others why they're not able to understand stuff.", "response": "You just have to remember that the course is not customized for you, it's for everyone. The \"FAQ\" section (meaning \"frequently asked questions\") answers questions other students are asking. It's unkind to suggest that I shouldn't answer questions from your fellow students." }, { "review": "It doesn’t make sense to have to make an account outside of Udemy to then have to read an article that gives an analogy about \"burgers\" just to then inform you that you have to wait 31 days to view the material. Just upload the video like every other instructor and inform us that you have other material. Don’t force us to the material.", "response": "Incorrect. You don't have to \"make an account outside of Udemy\" to take this course. That is for a different VERSION of the course for students who want to go above and beyond and learn more exciting material, in case they want to learn stuff OUTSIDE the course description [which I'm sure you've diligently read ;)]." }, { "review": "I feel pretty lost, I feel like showing an example of what we're trying to achieve even thought it comes way later in the course would show how the individual parts of the course will play into it.", "response": "This is what happens when you don't follow the instructions, like meeting the prerequisites or using the Q&A." }, { "review": "Teacher is good at explaining concepts,albeit he has some language problems.", "response": "English is my only language, but based on your comment alone, it is clear that the language problems may be on your end. I suggest improving in this area to better understand the course, thanks!" }, { "review": "Honestly !! this is highly insufficient material. When we open the books of Machine Learning, we are lost in understanding the mathematical notations. However, this course is teaching Integration way below the levels of Class 12. My comment - It needs improvement", "response": "Please make sure you read the course description so you understand the purpose of this course. For example, hard integration problems would not serve that purpose." }, { "review": "The course has no depth where the instructor explains an intuition and runs off. The exercises given have no solutions and you have to do it either yourself or you suck and they can't help you! I wouldn't recommend it. Feels more like a refresher course than a course for someone to learn from scratch.", "response": "> The course has no depth where the instructor explains an intuition and runs off.\n\nIncorrect. Every concept lecture is followed by Python code.\n\n> The exercises given have no solutions\n\nIncorrect. Exercise solutions are in the videos... please pay attention to improve your understanding, thanks." }, { "review": "I feel helped by this course, but I am a bit confused about understanding the Markov model, but in other materials I can smoothly. Thank you for making this class, I hope you are always healthy.", "response": "Please note that the sections are clearly marked beginner, intermediate, or advanced. This is so that you can stick to your level without being confused about material that is too advanced for you." }, { "review": "Thank you for your prompt response. Let's be frank. I'm no novice to this topic, and I took your course hoping to get a fresh perspective. However, I was met with content that seemed hastily put together and felt more like a reference guide rather than a comprehensive educational course. I've previously enrolled in some of your courses, which were of higher quality. My feedback is based on a comparison with your own past materials. I hope you'll take this as an opportunity to review and enhance the course content for the benefit of future students.", "response": "All algorithms are derived from scratch and based on the prerequisites, it is not a \"reference guide\". It seems strange that someone who is \"no novice to this topic\" would get those confused..." }, { "review": "Too much talking, less content till now", "response": "It's a video course, I'm not sure how one would avoid talking..." }, { "review": "While this course has multiple sections on how LP believes you should be learning. That time could have been spent reinforcing some of the more difficult concepts with additional examples.", "response": "This is a common misunderstanding of the appendix/FAQ. It's not \"That time could have been spent reinforcing some of the more difficult concepts with additional examples\". This content doesn't displace any other content." }, { "review": "Therotical only.....No Example......just copy from book and paste it.......read it.....No Implementation...................", "response": "Incorrect. Everything has been implemented from scratch. Please pay attention to improve your understanding, and please watch the FAQ lecture \"Beginner's Coding Tips\", thanks!" }, { "review": "I haven't proceeded in the course yet but I wouldn't say I liked the instructor's stance on students asking dumb questions.", "response": "That seems very weird. In the \"how to succeed\" lecture it clearly states that I encourage any and all questions. Why would you disagree with that?" }, { "review": "If you hang out on YouTube probably you find the same information in the same time", "response": "You can say that about any subject. The real question is, if it's so easy, then why haven't you done so? ;)" }, { "review": "Generally useful but structure of content and direction of course is not always clear. We jump backwards and forwards between methods more than I would like.", "response": "Each section is devoted to a different \"method\", there's no jumping \"back and forth\" between them..." }, { "review": "I do not think its advanced stuff at all, nevertheless its good.", "response": "Read the course description to learn what this course is about. In addition, please see the FAQ, which answers questions such as whether this course is for beginners or experts." }, { "review": "There is constant talk about not having to understand the theory but it seems like the maths goes hand in hand with the models so not sure if it is feasible to just learn the code without understanding why you do certain things", "response": "Because you're not implementing any of that math yourself, only using high level libraries. Please pay more attention to improve your understanding, thanks!" }, { "review": "not get any technical knowledge yet", "response": "Why not read the course description so that you understand what this course is about?" }, { "review": "I came here to learn industry level but it does not meet my expectations. this course suits you well for beginners because you can learn all the math and coding from scratch.", "response": "You simply have an incorrect understanding about what constitutes \"industry level\" (hint: you are not at this level)." }, { "review": "there could be hands-on session rather than pre written code . This would help in understanding the logic better.", "response": "I've instructed you to code by yourself, not to peek at my prewritten solutions. Therefore, you have simply not followed the instructions. You claim to want to be \"hands-on\", yet you haven't even done the hands-on work I've prescribed." }, { "review": "If you are new to AI, don't take this course. Find something else to start with. Most of what I got from this course is exposure to possibilities with recommender systems. It is not the most organized course either", "response": "Why should you be new to AI? You should meet the prerequisites, as instructed. Furthermore, it's not \"exposure to possibilities\", we are implementing many concrete algorithms. If you're having trouble understanding how the course is organized, it's one algorithm per section. I suggest simply paying more attention. Thanks!" }, { "review": "sometimes a little superficial", "response": "Thanks for your feedback. Please make sure to READ the course description so you understand what this course is about before taking it, thanks!" }, { "review": "I am an industry data scientist with an academic background in Machine learning, I have done several deep learning projects in my school years, I am taking this as a refresher. But equations don't have an explanation of variables, and what they stand for, the instructor repetitively mentions that if you don't know any equations you are not ready for this course but no one knows an equation, how it is derived, and what all the greek symbols mean right off the bat especially if you are away from macadamia for a few years. If you add additional resources(eg: citation as you should!) we can read and understand your variables, also many textbooks use different notations, so you need to make your description clear. Also, I don't like the tone and rudeness of the instructor. He sounds like a mad professor, this is a recorded video, so take away the anger", "response": "> But equations don't have an explanation of variables, and what they stand for\n\nThere is literally a lecture titled \"What do all these symbols and letters mean?\", which is actually a review of previously taught explanations (in other words, variables have been defined multiple times in many cases). Perhaps the problem is that you're simply not paying attention...\n\nAt the very least, thank you for making it obvious to the readers here that your claims are unfounded.\n\n> Also, I don't like the tone and rudeness of the instructor.\n\nYes, I know some students don't like being corrected (as above) and construe all corrections as rude because it's impossible for them to be wrong. But how can a teacher do his job if every correction is interpreted as rude?" }, { "review": "They can't send me slide for this course.", "response": "Incorrect. Slides are available upon request. Simply use the Q&A as instructed in the how to succeed lecture." }, { "review": "The instructor is poor. Read their responses to other negative reviews. Really off-putting. Constantly stating how people are INCORRECT showing the instructor clearly has no ability to take constructive criticism. If only the instructor could A/B test their own responses. Honestly thought it was a good-ish course. The instructor earned a 1-star here.", "response": "No, \"incorrect\" is used to denote factually wrong statements. It appears you are too emotional, focusing on your feelings (you're offended that I've corrected others) instead of the facts." }, { "review": "Please respect yourself, you must be ashamed of yourself because of this. Peyser", "response": "Thanks for your feedback! It'd be great if you could provide specifics regarding what you didn't like about the course..." }, { "review": "Mentor is providing slides for video and he is also fooling student to stay 31 on Udemy but after 31 days I am not finding any slides and note from instructor side.", "response": "Incorrect. Comment speaks for itself really." }, { "review": "This course kind of breezes over the topics, there are colabs used in the videos that we do not have access to and Section 4 is irrelevant to the course, I would rather see my on the topic and learn something than how to install tools that I already know how to do. Section 4 should actually be on his youtube site. There should also be more links to the tools he speaks of or uses, you have to stop the video and actually go google the tools and search for them. I am still trying to find ffmpegexamples.ipynb that is used for a whole segment of the training but there is no access to. Good course but needs a lot of fine-tuning to be better. I hope to see more added to create better content.", "response": "> there are colabs used in the videos that we do not have access to\n\nIncorrect. Lecture 4 is called \"COURSE RESOURCES\". Any guesses about what this is for?\n\n> Section 4 is irrelevant to the course\n\nInteresting, who should decide what's relevant to the course? Instructor (who understands the course content) or student (who does not)?\n\n> I would rather see my on the topic\n\nThis is not even a coherent sentence.\n\n> There should also be more links to the tools he speaks of or uses, you have to stop the video and actually go google the tools and search for them\n\nAgain, no you do not. This is what happens when you don't pay attention.\n\n> I am still trying to find ffmpegexamples.ipynb\n\nIf you paid attention, you would have already found it.\n\n> Good course but needs a lot of fine-tuning to be better. I hope to see more added to create better content.\n\nNo, you just need to follow the instructions and use the Q&A to fix your misunderstandings. I don't see how it could be any simpler." } ] ================================================ FILE: probability/WHERE ARE THE NOTEBOOKS.txt ================================================ As stated in the "where to get the code" / "where to get the notebooks" lecture, the notebooks are NOT on Github. If you missed this, please review the lecture for the actual location of the notebooks. If, after reviewing it, you still need assistance, please contact info@deeplearningcourses.com. ================================================ FILE: probability/extra_reading.txt ================================================ Multivariate Change of Variables https://math.libretexts.org/Bookshelves/Calculus/Book%3A_Active_Calculus_(Boelkins_et_al.)/11%3A_Multiple_Integrals/11.09%3A_Change_of_Variables ================================================ FILE: prophet/extra_reading.txt ================================================ Forecasting at Scale (Facebook Prophet) https://peerj.com/preprints/3190.pdf ================================================ FILE: pytorch/.gitignore ================================================ *rl_trader_models *rl_trader_rewards *.png ================================================ FILE: pytorch/WHERE ARE THE NOTEBOOKS.txt ================================================ As stated in the "where to get the code" / "where to get the notebooks" lecture, the notebooks are NOT on Github. If you missed this, please review the lecture for the actual location of the notebooks. If, after reviewing it, you still need assistance, please contact info@deeplearningcourses.com. ================================================ FILE: pytorch/aapl_msi_sbux.csv ================================================ AAPL,MSI,SBUX 67.8542,60.3,28.185 68.5614,60.9,28.07 66.8428,60.83,28.13 66.7156,60.81,27.915 66.6556,61.12,27.775 65.7371,61.43,27.17 65.7128,62.03,27.225 64.1214,61.26,26.655 63.7228,60.88,26.675 64.4014,61.9,27.085 63.2571,60.28,26.605 64.1385,60.63,26.64 63.5099,62.09,27.285 63.0571,62.21,27.425 61.4957,62.03,27.435 60.0071,62.5,27.85 61.5919,62.97,28.255 60.8088,63.11,28.55 61.5117,62.64,29.125 61.6742,62.75,29.335 62.5528,62.56,29.305 61.2042,62.13,29.14 61.1928,62.22,29.2925 61.7857,62.34,28.84 63.3799,62.07,28.83 65.1028,61.64,28.465 64.9271,61.67,28.415 64.5828,62.4,28.715 64.6756,62.43,28.525 65.9871,63.61,28.69 66.2256,63.29,28.345 65.8765,63.46,28.525 64.5828,63.56,28.455 63.2371,64.03,28.475 61.2728,63.7,28.435 61.3988,63.7,29.13 61.7128,62.8,28.85 61.1028,62.99,29.055 60.4571,62.67,28.9 60.8871,63.17,29.06 60.9971,63.64,28.705 62.2414,64.69,28.9 62.0471,64.63,29.2875 61.3999,63.87,29.545 59.9785,61.83,28.855 60.8914,62.96,29.28 57.5428,62.13,29.085 56.0071,61.15,28.86 55.7899,61.72,29.2025 56.9528,61.78,29.32 58.0185,61.75,29.695 57.9231,56.02,29.915 58.3399,56.39,30.25 59.6007,56.8,30.0 61.4457,57.44,30.29 63.2542,57.2,30.42 62.7557,56.37,30.07 63.6457,56.89,30.19 64.2828,57.29,30.935 65.8156,56.95,31.24 65.5225,56.79,31.095 66.2628,57.0,31.205 65.2528,56.78,31.18 64.7099,56.48,31.5485 64.9628,56.17,31.41 63.4085,56.89,31.76 61.2642,57.1,32.035 62.0825,57.53,31.775 61.8942,57.84,32.065 63.2757,58.25,31.915 62.8085,57.77,32.125 63.0505,57.3,32.075 63.1628,57.48,31.76 63.5928,57.81,31.68 63.0627,58.53,32.13 63.5642,58.32,31.815 64.5114,58.54,31.735 64.2478,57.96,31.57 64.3885,57.83,31.73 64.1871,57.41,31.665 63.5871,56.27,31.17 62.6371,56.92,31.51 63.1158,56.94,32.52 62.6985,56.61,33.055 62.5142,56.38,32.71 61.7414,56.26,32.225 62.2807,57.19,32.985 61.4357,56.93,32.8 61.7142,57.33,33.015 61.6814,57.35,33.5475 60.4285,56.78,33.205 59.5482,55.5,32.61 59.0714,55.82,32.345 57.5057,55.59,32.005 57.5185,56.35,32.37 56.8671,57.49,32.9 56.2542,57.84,32.845 56.6471,57.73,32.755 58.4599,57.98,33.12 59.7842,57.49,33.395 60.1142,57.26,33.65 59.6314,57.93,33.86 59.2928,57.86,34.145 60.3357,58.03,34.065 60.1042,58.43,34.05 61.0411,59.05,34.67 60.9299,59.54,34.86 61.0628,59.17,34.83 61.4564,59.32,34.76 61.4728,59.42,34.1 61.6797,59.36,34.24 60.7071,59.85,34.395 60.9014,59.87,34.51 59.8557,59.98,33.83 62.9299,56.04,33.305 62.6428,54.25,34.085 62.9985,54.26,36.68 63.9699,54.01,36.225 64.7599,54.35,35.965 64.6471,54.83,35.6445 65.2394,55.32,36.74 66.0771,56.02,37.115 67.0642,56.1,36.985 66.4642,56.4,36.4 66.4256,56.48,36.095 65.8585,57.13,36.47 64.9214,57.36,36.4 66.7656,57.44,36.465 69.9385,57.84,36.32 71.2142,57.71,35.925 71.1299,56.96,35.37 71.7614,57.15,35.355 72.5342,57.09,35.145 71.5814,57.05,35.33 71.7656,56.06,35.3565 71.8514,56.33,35.95 71.5742,56.74,35.985 71.8528,56.55,35.94 69.7985,56.12,35.08 70.1279,56.39,35.48 70.2428,56.19,35.59 69.6022,56.01,35.26 69.7971,56.28,35.8 71.2415,56.08,36.07 70.7528,56.17,36.025 71.1742,56.47,35.785 72.3099,57.59,36.22 70.6628,57.37,37.1075 66.8156,57.25,37.695 67.5271,57.5,37.835 66.4142,57.46,37.785 64.3028,57.81,37.62 65.0456,58.28,38.02 66.3828,59.26,38.665 67.4714,59.69,38.175 66.7728,60.39,38.06 70.0914,60.37,37.68 69.8714,59.99,38.275 68.7899,59.85,38.17 69.4599,59.87,38.59 68.9642,59.75,38.665 68.1071,59.38,38.485 69.7085,60.89,38.58 69.9371,60.7,38.595 69.0585,60.56,38.435 69.0042,61.14,38.7 69.6785,60.89,38.4305 68.7056,59.62,37.765 69.5125,59.39,37.63 69.9482,60.61,38.56 70.4016,60.52,38.91 70.8628,61.03,39.05 71.2399,60.49,38.355 71.5876,60.71,39.02 72.0714,60.92,39.3675 72.6985,60.81,39.655 74.4802,61.18,39.73 74.2667,60.43,40.45 74.9942,62.4,40.025 75.9871,62.51,39.525 75.1368,62.99,39.98 75.6965,62.44,39.355 73.8111,62.73,39.81 74.9851,62.25,40.415 74.6716,62.52,40.525 74.2899,62.39,40.185 75.2499,62.71,40.185 75.0641,62.68,40.995 74.4171,62.65,40.565 73.2131,62.49,39.535 74.3656,63.12,40.6 74.1496,63.51,40.495 74.2871,64.24,40.3075 74.3762,64.45,40.7305 75.4514,64.58,40.57 74.9986,65.57,40.595 74.0898,65.42,40.27 74.2214,64.61,39.96 73.5714,64.58,39.845 74.4479,65.41,40.765 74.2571,65.88,40.675 74.8199,65.79,40.355 76.1999,65.57,40.755 77.9942,65.5,40.81 79.4385,65.88,40.73 78.7471,65.66,40.535 80.9031,65.79,40.275 80.7142,64.93,39.75 81.1286,65.23,39.86 80.0028,66.18,39.97 80.9185,65.79,39.865 80.7928,65.41,38.69 80.1942,64.6,38.2 80.0771,64.86,38.24 79.2042,65.05,38.175 79.6428,65.36,38.23 79.2842,65.52,38.045 78.6813,66.16,38.84 77.7799,65.85,38.575 78.4314,65.61,38.83 81.4413,66.78,39.16 81.0956,67.1,39.285 80.5571,67.18,39.44 80.0128,67.33,39.285 79.2171,67.25,39.275 80.1456,67.5,39.195 79.0185,66.33,38.585 77.2828,66.2,38.475 77.7042,65.92,38.085 77.1481,66.19,38.605 77.6371,65.99,39.015 76.6455,66.5,38.8 76.1342,66.15,38.835 76.5328,65.49,37.56 78.0556,66.35,37.73 79.6228,65.62,38.095 79.1785,65.81,37.645 77.2385,66.1,37.45 78.4385,67.11,36.825 78.7871,64.51,36.8 79.4542,65.34,36.695 78.0099,64.42,37.49 78.6428,64.43,37.105 72.3571,64.34,36.945 71.5356,63.98,35.78 71.3974,64.91,35.955 71.5142,63.8,35.56 71.6471,62.72,34.485 72.6842,62.99,35.325 73.2271,62.89,35.245 73.2156,63.4,36.18 74.2399,64.6,37.0175 75.5699,65.08,37.4 76.5656,65.03,37.25 76.5599,65.78,36.955 77.7756,65.67,37.345 77.7128,65.61,37.515 77.9985,65.78,36.985 76.7671,64.93,36.66 75.8785,65.22,36.775 75.0356,65.02,36.28 75.3642,64.96,36.28 74.5799,65.1,35.275 73.9071,65.45,35.89 75.3814,65.9,36.095 75.1771,66.2,35.48 75.3942,65.98,35.235 75.8914,66.76,35.83 76.0514,66.33,35.65 75.8214,66.57,36.345 75.7771,66.64,36.535 75.8456,66.43,36.78 76.5842,66.08,37.515 76.6585,65.02,37.815 75.8071,64.21,37.215 74.9556,63.67,37.135 75.2485,65.08,37.09 75.9142,65.72,37.3 75.8942,65.7,37.955 75.5285,66.66,38.4775 76.1242,66.81,38.355 77.0271,66.05,37.885 77.8556,66.18,37.305 77.1114,65.16,36.77 76.7799,64.36,36.7 76.6942,64.3,36.85 76.6771,64.29,36.69 77.3785,64.91,37.005 77.5071,65.1,36.835 76.9699,65.09,36.545 75.9742,64.26,35.775 74.7814,64.43,35.215 74.7771,64.95,35.74 75.7599,65.26,36.24 74.7828,63.99,35.11 74.2299,63.39,34.365 74.5256,63.78,34.655 73.9942,63.37,34.445 74.1442,63.23,35.395 74.9914,63.15,35.075 75.8814,62.51,35.24 75.9569,63.27,35.5745 74.9642,63.29,35.195 81.1099,63.0,35.545 81.7056,62.5,35.725 84.8699,62.64,35.465 84.6185,63.43,35.32 84.2985,63.58,35.31 84.4971,62.65,35.56 84.6542,65.51,35.3 85.8513,66.15,35.46 84.9156,66.4,34.79 84.6185,67.14,34.87 83.9985,67.38,34.79 83.6488,67.26,35.145 84.6899,67.8,35.575 84.8228,67.75,35.58 84.8385,67.2,35.085 84.1171,66.34,34.925 85.3585,66.3,35.47 86.3699,66.88,35.51 86.3871,66.52,35.115 86.6156,66.89,35.2 86.7528,66.63,35.7 87.7328,67.0,35.99 89.3756,67.02,36.83 89.1442,66.93,36.635 90.7685,66.91,36.555 90.4285,67.42,36.62 89.8071,67.4,36.925 91.0771,66.86,37.09 92.1171,67.23,37.335 92.4785,67.17,37.36 92.2242,67.66,37.665 93.7,67.67,37.59 94.25,67.7,37.3 93.86,66.93,37.4 92.29,66.46,36.98 91.28,66.78,37.345 92.2,66.72,37.545 92.08,66.64,37.655 92.18,66.62,37.78 91.86,67.06,38.615 90.91,67.07,38.3 90.83,67.1,38.365 90.28,66.73,38.715 90.36,66.55,39.06 90.9,66.56,39.03 91.98,66.78,38.97 92.93,66.57,38.69 93.52,66.96,39.04 93.48,67.02,39.095 94.03,67.41,39.53 95.96799999999999,67.24,39.345 95.35,66.27,39.28 95.39,66.58,39.725 95.035,66.45,39.425 95.22,66.0,39.3 96.45,66.08,39.28 95.32,65.49,39.445 94.78,65.67,39.365 93.0899,64.94,38.62 94.43,65.49,38.97 93.939,65.74,38.805 94.72,66.05,39.37 97.19,65.77,39.57 97.03,65.61,40.225 97.671,65.0,39.37 99.02,65.21,39.18 98.38,64.74,39.325 98.15,64.83,39.45 95.6,63.68,38.84 96.13,64.11,38.49 95.59,64.11,38.765 95.12,61.39,38.395 94.96,61.21,38.565 94.48,61.25,38.355 94.74,62.19,38.81 95.99,61.73,38.935 95.97,61.64,38.91 97.24,62.03,38.62 97.5,61.52,38.31 97.98,61.0,38.455 99.16,60.81,38.795 100.53,61.37,39.06 100.57,61.64,39.015 100.58,61.7,38.735 101.32,61.23,38.64 101.54,61.02,38.985 100.889,60.3,38.895 102.13,59.68,38.96 102.25,59.37,38.905 102.5,59.4,38.905 103.3,59.01,38.74 98.94,58.94,38.395 98.12,58.98,38.58 98.97,58.89,38.975 98.36,61.02,38.835 97.99,61.08,38.56 101.0,61.22,38.605 101.43,61.22,38.06 101.66,61.54,37.735 101.63,61.42,37.46 100.86,61.69,37.545 101.58,61.91,37.67 101.79,62.04,37.865 100.96,61.88,38.035 101.06,61.68,37.3 102.64,61.57,36.9775 101.75,61.8,37.66 97.87,62.24,37.06 100.75,63.42,37.585 100.11,63.18,37.635 100.75,63.28,37.73 99.18,62.34,37.305 99.9,61.03,37.225 99.62,61.3,37.945 99.62,61.5,37.5725 98.75,60.47,37.025 100.8,61.58,37.63 101.02,60.46,37.24 100.73,59.05,37.23 99.81,58.5,36.095 98.75,58.73,36.37 97.54,59.32,36.19 96.26,59.18,36.32 97.67,60.79,36.77 99.76,61.25,37.35 102.47,62.39,37.18 102.99,61.63,37.3 104.83,62.25,37.42 105.22,62.57,37.905 105.11,62.8,37.985 106.74,64.06,38.525 107.34,63.94,38.27 106.98,63.7,38.66 108.0,64.5,37.78 109.4,64.68,38.05 108.6,66.76,38.355 108.86,64.46,38.33 108.7,63.42,38.725 109.01,64.14,38.895 108.83,63.94,38.825 109.7,63.55,38.865 111.25,63.7,38.925 112.82,64.43,38.945 114.18,65.25,39.06 113.99,65.4,38.915 115.47,66.0,38.785 114.67,65.94,38.91 116.31,65.66,39.1 116.47,65.27,39.88 118.625,65.81,40.26 117.6,65.6,40.105 119.0,65.56,39.85 118.93,65.72,40.605 115.07,65.44,40.425 114.63,65.51,40.185 115.93,65.32,40.235 115.49,65.2,40.655 115.0,65.0,41.785 112.4,65.27,41.9 114.12,65.29,41.515 111.95,63.52,41.33 111.62,63.29,41.56 109.73,62.31,41.625 108.225,61.91,40.445 106.745,61.73,39.565 109.41,63.99,40.2175 112.65,65.11,40.015 111.78,65.5,39.72 112.94,66.53,40.27 112.54,66.93,40.715 112.01,67.34,40.635 113.99,67.49,40.915 113.91,67.87,41.19 112.52,67.53,40.895 110.38,67.08,41.025 109.33,66.51,40.72 106.25,65.06,39.94 106.26,64.51,39.615 107.75,64.43,40.59 111.89,65.43,41.245 112.01,65.11,39.895 109.25,64.35,40.115 110.22,64.11,40.435 109.8,63.76,40.21 106.82,63.41,39.79 105.99,64.05,40.305 108.72,64.02,40.6125 109.55,64.31,40.645 112.4,65.36,41.37 112.98,65.48,44.11 113.1,65.71,44.06 109.14,64.94,44.17 115.31,63.84,43.7825 118.9,63.83,44.525 117.16,62.41,43.765 118.63,62.81,43.995 118.65,64.01,44.245 119.56,63.94,44.35 119.94,64.0,44.82 118.93,64.66,44.5 119.72,67.78,44.41 122.02,68.22,45.59 124.88,68.57,45.395 126.46,70.0,45.9125 127.08,69.91,45.79 127.83,69.79,46.015 128.715,69.12,46.5 128.45,69.03,46.585 129.495,69.83,46.755 133.0,68.63,46.79 132.17,68.53,46.725 128.79,68.02,47.13 130.415,68.47,47.275 128.46,67.94,46.7425 129.09,68.89,47.1125 129.36,68.14,47.0 128.54,67.64,46.53 126.41,67.93,46.815 126.6,66.82,46.1075 127.14,66.57,46.52 124.51,65.33,46.09 122.24,65.31,45.71 124.45,64.96,46.69 123.59,64.8,46.645 124.95,65.86,47.0225 127.04,65.32,47.1925 128.47,66.65,47.92 127.495,66.34,48.88 125.9,66.83,48.73 127.21,66.52,48.685 126.69,66.23,48.9575 123.38,65.35,47.885 124.24,65.42,47.54 123.25,65.38,47.535 126.37,66.39,47.99 124.43,66.67,47.35 124.25,66.67,46.51 125.32,62.51,47.195 127.35,61.48,47.26 126.01,61.99,47.035 125.6,62.42,47.615 126.56,62.32,47.96 127.1,62.53,48.17 126.85,61.97,48.5 126.3,61.91,48.3 126.78,61.82,48.14 126.17,61.86,48.245 124.75,60.68,47.62 127.6,61.16,47.97 126.91,61.43,48.37 128.62,61.59,48.335 129.67,60.84,49.43 130.28,60.57,51.84 132.65,60.98,50.87 130.56,60.69,50.61 128.64,59.74,50.65 125.15,59.75,49.58 128.95,60.28,50.29 128.7,60.68,50.445 125.8,58.59,49.405 125.01,58.75,48.93 125.26,60.01,49.35 127.62,60.59,49.78 126.32,59.8,49.5 125.865,59.42,49.71 126.01,59.25,49.59 128.95,59.79,50.555 128.77,59.3,50.8 130.19,60.12,51.18 130.07,59.8,51.42 130.06,59.8,51.03 131.39,59.79,51.33 132.54,59.66,51.48 129.62,59.11,50.84 132.045,59.06,51.59 131.78,59.63,51.81 130.28,59.0,51.96 130.535,59.65,52.22 129.96,59.19,51.73 130.12,59.48,52.12 129.36,58.8,51.72 128.65,58.61,52.19 127.8,58.08,51.53 127.42,57.9,51.54 128.88,58.49,52.69 128.59,58.55,52.49 127.17,57.65,52.63 126.92,57.95,52.27 127.6,58.18,52.965 127.3,57.97,53.24 127.88,58.39,54.11 126.6,58.05,53.93 127.61,59.22,53.9 127.03,59.12,54.115 128.11,58.29,53.71 127.5,58.35,54.07 126.75,58.38,54.62 124.53,57.14,53.55 125.425,57.34,53.615 126.6,57.6,53.89 126.44,57.51,54.24 126.0,57.22,54.305 125.69,57.49,54.375 122.57,56.79,53.39 120.07,56.94,54.05 123.28,57.48,54.57 125.66,58.43,55.7 125.61,58.6,55.75 126.82,58.89,55.34 128.51,59.29,55.74 129.62,58.85,55.69 132.07,59.4,56.21 130.75,59.57,56.2 125.22,59.35,56.69 125.16,58.85,56.56 124.5,59.5,57.29 122.77,58.71,56.98 123.38,59.11,57.14 122.99,59.58,57.51 122.37,59.86,58.06 121.3,60.16,57.93 118.44,59.76,58.19 114.64,60.22,58.7 115.4,64.04,59.01 115.13,63.8,57.23 115.52,64.19,57.2 119.72,63.99,56.27 113.49,63.35,56.35 115.24,64.6,56.38 115.15,64.34,56.85 115.96,64.98,57.1 117.16,65.27,57.74 116.5,65.77,57.83 115.01,65.35,57.59 112.65,63.89,55.81 105.76,62.45,52.84 103.12,60.79,50.34 103.74,60.44,51.09 109.69,63.14,53.96 112.92,64.29,55.95 113.29,64.55,55.63 112.76,64.82,54.71 107.72,63.85,53.5 112.34,64.72,55.26 110.37,65.11,54.69 109.27,66.31,54.28 112.31,69.61,55.21 110.15,68.3,54.69 112.57,69.09,55.37 114.21,67.08,56.53 115.31,66.84,56.29 116.28,67.15,56.91 116.41,67.47,57.26 113.92,67.03,57.28 113.45,67.09,56.84 115.21,67.05,57.54 113.4,66.58,57.12 114.32,67.8,57.79 115.0,67.91,58.37 114.71,69.2,57.99 112.44,67.93,55.77 109.06,67.45,55.72 110.3,68.38,56.84 109.58,67.76,57.48 110.38,68.4,58.08 110.78,69.75,59.04 111.31,69.19,58.69 110.78,69.79,58.78 109.5,69.5,59.46 112.12,68.78,60.07 111.6,69.43,60.54 111.79,69.04,60.16 110.21,68.7,58.82 111.86,69.27,59.69 111.04,69.26,59.93 111.73,69.03,60.97 113.77,69.48,60.88 113.76,69.47,60.53 115.5,70.48,61.49 119.08,70.48,62.61 115.28,70.05,63.43 114.55,69.96,62.71 119.27,70.37,63.51 120.53,70.13,62.5 119.5,69.97,62.57 121.18,70.73,62.24 122.57,71.36,62.8 122.0,65.24,61.96 120.92,67.4,62.28 121.06,68.01,61.97 120.57,68.2,61.34 116.77,68.34,62.18 116.11,70.02,61.87 115.72,69.44,61.07 112.34,69.03,59.74 114.175,70.02,60.68 113.69,71.05,60.55 117.29,71.98,61.8 118.78,72.45,61.46 119.3,72.19,61.99 117.75,72.24,62.64 118.88,71.96,61.96 118.03,71.83,62.19 117.81,72.02,62.18 118.3,71.78,61.39 117.34,72.05,61.37 116.28,71.89,61.22 115.2,71.08,59.55 119.03,72.11,61.75 118.28,70.38,61.89 118.23,69.75,62.16 115.62,69.31,61.18 116.17,69.37,61.87 113.18,68.61,59.82 112.48,68.14,59.92 110.49,69.13,59.98 111.34,69.52,60.35 108.98,68.56,59.515 106.03,67.58,58.62 107.33,68.03,59.54 107.23,68.87,59.99 108.61,69.21,60.34 108.03,69.06,60.32 106.82,69.18,60.19 108.74,69.64,61.13 107.32,69.3,60.82 105.26,68.45,60.03 105.35,67.13,58.26 102.71,66.39,58.65 100.7,65.43,58.13 96.45,64.11,56.69 96.96,64.25,56.63 98.53,64.37,57.82 99.96,64.91,59.46 97.39,63.37,57.87 99.52,63.11,58.98 97.13,61.59,58.0 96.66,61.13,58.55 96.79,60.36,56.92 96.3,60.82,59.03 101.42,62.04,59.17 99.44,62.42,57.71 99.99,63.16,58.61 93.42,64.8,57.63 94.09,64.74,59.285 97.34,66.77,60.77 96.43,66.85,61.4 94.48,64.32,60.695 96.35,64.88,59.53 96.6,64.25,58.29 94.02,62.82,54.49 95.01,62.09,54.14 94.99,62.24,54.42 94.27,60.97,55.14 93.7,60.52,54.92 93.99,61.78,55.86 96.64,63.42,56.41 98.12,65.05,57.63 96.26,64.78,56.96 96.04,66.0,57.67 96.88,66.75,58.87 94.69,70.78,58.46 96.1,72.84,58.11 96.76,74.06,58.75 96.91,74.86,58.34 96.69,73.49,58.21 100.53,71.19,60.04 100.75,71.28,59.56 101.5,71.25,59.04 103.01,70.95,58.7 101.87,71.01,58.0 101.03,71.1,57.6 101.12,71.48,57.07 101.17,71.22,57.52 102.26,71.2,57.59 102.52,71.83,58.65 104.58,71.97,59.08 105.97,72.24,59.67 105.8,72.83,59.55 105.92,72.59,59.7 105.91,73.12,59.1 106.72,73.71,59.38 106.13,73.15,58.83 105.67,72.59,58.36 105.19,73.37,58.96 107.68,74.09,59.55 109.56,74.89,60.01 108.99,75.7,59.7 109.99,76.11,61.02 111.12,76.32,60.25 109.81,75.71,60.04 110.96,76.09,60.83 108.54,74.99,61.17 108.66,75.24,61.04 109.02,74.88,60.9 110.44,75.04,59.5 112.04,75.37,60.21 112.1,75.31,60.13 109.85,75.64,60.51 107.48,75.69,60.89 106.91,75.97,60.9 107.13,75.55,60.9 105.97,74.99,60.64 105.68,75.56,57.68 105.08,75.51,57.77 104.35,75.9,57.72 97.82,76.04,56.9 94.83,75.34,56.42 93.74,75.19,56.23 93.64,76.0,57.36 95.18,74.96,56.25 94.19,74.22,56.39 93.24,74.25,56.25 92.72,70.54,56.31 92.79,70.82,56.64 93.42,71.05,57.49 92.51,70.07,56.23 90.34,71.11,56.3 90.52,70.62,55.82 93.88,70.83,55.53 93.49,69.89,54.88 94.56,69.46,54.8 94.2,68.72,54.55 95.22,68.75,54.62 96.43,68.78,54.6 97.9,69.68,55.44 99.62,69.35,55.15 100.41,69.4,55.29 100.35,69.5,55.15 99.86,69.27,54.89 98.46,69.06,54.82 97.72,68.8,54.62 97.92,68.47,54.61 98.63,68.77,55.59 99.03,68.16,55.3 98.94,69.05,55.22 99.65,68.56,55.58 98.83,67.45,54.865 97.34,66.82,55.04 97.46,67.24,55.57 97.14,67.54,55.35 97.55,67.8,55.53 95.33,67.33,55.31 95.1,68.35,55.38 95.91,67.81,55.81 95.55,67.43,55.61 96.1,68.01,56.13 93.4,64.73,54.68 92.04,63.08,53.69 93.59,63.69,54.85 94.4,64.55,56.74 95.6,65.97,57.12 95.89,66.01,56.99 94.99,64.77,56.77 95.53,65.3,56.75 95.94,65.05,56.91 96.68,66.38,56.51 96.98,66.62,56.32 97.42,67.4,57.48 96.87,67.46,56.48 98.79,67.58,57.59 98.78,67.4,57.41 99.83,67.55,56.92 99.87,67.5,56.76 99.96,67.93,57.54 99.43,67.55,57.6 98.66,68.25,57.9 97.34,68.09,57.95 96.67,68.42,58.31 102.95,69.26,57.85 104.34,69.58,58.21 104.21,69.38,58.05 106.05,69.63,57.63 104.48,68.84,56.73 105.79,69.29,55.94 105.87,70.24,55.42 107.48,73.5,55.9 108.37,73.93,55.36 108.81,74.28,55.2 108.0,74.28,55.62 107.93,75.52,55.47 108.18,74.54,55.47 109.48,75.44,55.25 109.38,75.58,55.37 109.22,75.68,55.8 109.08,75.99,55.53 109.36,76.34,54.94 108.51,76.49,55.85 108.85,76.99,56.4 108.03,77.12,57.09 107.57,77.18,57.29 106.94,77.2,57.29 106.82,77.29,56.8 106.0,77.51,56.4 106.1,76.99,56.23 106.73,76.8,56.31 107.73,77.95,56.18 107.7,78.32,56.02 108.36,78.08,56.32 105.52,77.37,55.3 103.13,76.65,54.35 105.44,77.23,54.71 107.95,76.09,53.98 111.77,75.47,53.9 115.57,76.04,54.11 114.92,75.63,53.74 113.58,75.76,53.01 113.57,75.21,53.3 113.55,75.73,53.98 114.62,76.19,54.39 112.71,76.11,54.43 112.88,75.95,54.04 113.09,76.32,54.19 113.95,76.79,53.98 112.18,77.21,53.45 113.05,76.28,54.14 112.52,75.25,53.84 113.0,74.42,53.53 113.05,74.35,53.35 113.89,74.64,53.14 114.06,74.48,53.46 116.05,74.67,53.3 116.3,73.5,52.92 117.34,73.76,53.16 116.98,73.06,52.95 117.63,73.58,53.08 117.55,73.13,52.76 117.47,73.8,52.61 117.12,73.8,53.15 117.06,73.57,53.59 116.6,73.62,53.63 117.65,74.49,54.18 118.25,74.16,53.67 115.59,73.58,53.63 114.48,73.48,53.59 113.72,72.83,53.53 113.54,72.58,53.07 111.49,72.32,52.5 111.59,71.57,52.98 109.83,71.29,51.77 108.84,75.9,52.75 110.41,77.71,54.49 111.06,78.56,54.62 110.88,78.96,54.58 107.79,79.19,53.57 108.43,80.38,53.93 105.71,80.6,54.22 107.11,81.8,54.59 109.99,80.51,55.44 109.95,80.35,55.85 110.06,79.98,55.77 111.73,79.83,56.1 111.8,80.31,57.12 111.23,80.26,57.59 111.79,80.98,57.43 111.57,80.86,57.59 111.46,81.11,58.17 110.52,80.25,57.97 109.49,79.19,58.51 109.9,79.5,57.21 109.11,80.92,57.5 109.95,82.22,57.44 111.03,83.27,58.76 112.12,83.3,58.65 113.95,82.79,58.75 113.3,82.6,58.77 115.19,83.24,59.31 115.19,82.9,58.75 115.82,83.46,57.71 115.97,83.4,57.66 116.64,83.93,57.65 116.95,83.76,57.7 117.06,84.0,57.44 116.29,83.72,57.11 116.52,83.41,57.01 117.26,83.52,56.86 116.76,82.86,56.35 116.73,82.87,56.32 115.82,82.89,55.52 116.15,83.6,55.35 116.02,83.49,55.99 116.61,82.64,56.46 117.91,82.89,57.13 118.99,83.02,58.2 119.11,82.63,57.88 119.75,82.88,58.1 119.25,82.18,58.03 119.04,82.27,57.85 120.0,80.73,58.0 119.99,81.65,58.45 119.78,81.86,57.89 120.0,82.36,57.66 120.08,82.44,57.76 119.97,84.35,58.44 121.88,85.29,58.7 121.94,83.36,58.46 121.95,82.98,56.12 121.63,81.7,55.9 121.35,80.71,55.22 128.75,80.03,53.9 128.53,81.0,53.87 129.08,81.6,55.06 130.29,81.73,55.73 131.53,77.34,55.24 132.04,78.25,55.22 132.42,77.81,55.81 132.12,78.37,56.22 133.29,78.48,56.11 135.02,78.68,56.58 135.51,79.4,56.86 135.345,78.66,56.73 135.72,79.31,57.35 136.7,80.15,57.54 137.11,79.65,57.57 136.53,79.36,57.64 136.66,80.27,57.48 136.93,79.28,56.78 136.99,78.97,56.87 139.79,79.98,57.14 138.96,80.02,57.12 139.78,80.55,57.1 139.34,79.97,56.68 139.52,79.66,56.2 139.0,80.2,55.74 138.68,81.37,55.19 139.14,82.1,54.53 139.2,81.65,54.63 138.99,83.36,54.27 140.46,85.24,54.54 140.69,85.15,54.8 139.99,84.72,55.78 141.46,84.3,55.81 139.84,83.76,55.54 141.42,83.59,55.89 140.92,83.74,55.85 140.64,83.67,56.81 140.88,84.0,57.23 143.8,84.0,57.35 144.12,84.13,57.54 143.93,84.87,58.16 143.66,86.22,58.39 143.7,84.83,58.44 144.77,84.52,58.32 144.02,83.83,58.22 143.66,84.2,57.92 143.34,84.25,58.02 143.17,83.71,57.95 141.63,83.45,57.88 141.8,82.84,57.58 141.05,82.34,57.51 141.83,83.08,58.08 141.2,82.64,58.35 140.68,83.37,59.04 142.44,84.1,60.08 142.27,83.72,60.61 143.64,84.72,61.11 144.53,85.39,60.96 143.68,85.38,61.56 143.79,86.07,61.3 143.65,85.97,60.06 146.58,86.16,60.18 147.51,85.92,60.5 147.06,86.37,60.59 146.53,86.1,60.83 148.96,84.44,60.95 153.01,83.59,60.94 153.99,84.77,60.98 153.26,85.77,60.66 153.95,85.36,60.27 156.1,84.21,59.93 155.7,84.48,60.45 155.47,83.7,59.98 150.25,81.85,59.73 152.54,80.83,59.82 153.06,80.83,61.36 153.99,82.93,61.23 153.8,82.11,61.15 153.34,82.22,61.89 153.87,82.27,62.9 153.61,81.86,63.3 153.67,82.83,63.26 152.76,83.57,63.61 153.18,85.64,63.75 155.45,86.62,64.57 153.93,87.31,64.27 154.45,87.46,64.16 155.37,86.18,63.5 154.99,86.65,62.24 148.98,86.17,62.19 145.42,86.11,61.29 146.59,86.04,60.92 145.16,84.87,60.27 144.29,84.45,60.09 142.27,84.72,60.14 146.34,86.2,60.9 145.01,85.74,59.86 145.87,86.24,59.96 145.63,87.36,59.51 146.28,88.64,59.81 145.82,88.42,59.64 143.73,87.72,58.96 145.83,88.13,59.18 143.68,86.8,58.36 144.02,86.74,58.31 143.5,86.68,58.25 144.09,86.83,57.94 142.73,85.96,57.6 144.18,87.31,58.04 145.06,87.23,57.81 145.53,87.65,57.9 145.74,88.65,58.54 147.77,88.33,58.38 149.04,88.61,58.76 149.56,88.28,58.33 150.08,88.45,58.21 151.02,89.78,58.11 150.34,89.96,58.03 150.27,90.52,57.98 152.09,90.67,58.02 152.74,91.39,58.55 153.46,91.84,57.94 150.56,92.21,59.5 149.5,91.01,54.0 148.73,90.68,53.98 158.59,90.43,54.73 157.14,90.43,55.43 155.57,90.4,55.68 156.39,90.37,55.44 158.81,89.2,55.63 160.08,88.58,54.52 161.06,88.51,53.74 155.32,86.99,53.07 157.48,87.48,53.18 159.85,88.6,53.22 161.6,87.92,53.15 160.95,88.19,53.5 157.86,87.13,53.04 157.5,87.37,52.7 157.21,87.2,53.15 159.78,86.41,54.45 159.98,86.21,54.08 159.27,86.51,53.94 159.86,86.88,54.36 161.47,87.3,54.4 162.91,86.94,54.1 163.35,87.66,54.52 164.0,88.12,54.86 164.05,87.87,54.93 162.08,86.66,55.13 161.91,85.72,54.31 161.26,86.35,53.47 158.63,85.12,53.49 161.5,87.01,54.02 160.86,87.74,53.54 159.65,85.97,54.29 158.28,84.58,54.53 159.88,85.48,54.67 158.67,85.48,54.69 158.73,85.84,54.62 156.07,85.65,55.15 153.39,84.99,55.01 151.89,84.29,55.09 150.55,83.5,54.95 153.14,83.02,55.13 154.23,84.1,54.99 153.28,83.69,54.5 154.12,84.87,53.71 153.81,85.84,53.81 154.48,85.69,53.99 153.48,85.64,53.93 155.39,86.0,54.6 155.3,89.44,55.17 155.84,89.1,55.02 155.9,89.08,55.42 156.55,89.26,55.64 156.0,89.8,55.97 156.99,89.93,55.72 159.88,89.36,54.91 160.47,88.88,54.51 159.76,89.09,55.21 155.98,89.65,55.4 156.25,90.0,54.57 156.17,89.94,54.27 157.1,90.23,54.28 156.41,90.04,54.16 157.41,90.28,54.91 163.05,91.19,54.88 166.72,90.37,55.17 169.04,90.54,54.84 166.89,90.56,55.13 168.11,90.02,54.87 172.5,94.25,56.03 174.25,92.43,56.57 174.81,92.11,57.22 176.24,92.66,57.91 175.88,91.61,57.36 174.67,91.07,57.04 173.97,91.37,56.64 171.34,91.02,56.93 169.08,90.39,56.7 171.1,90.97,57.24 170.15,90.95,56.93 169.98,92.33,56.81 173.14,92.45,57.26 174.96,91.83,57.14 174.97,92.36,56.8 174.09,92.88,55.91 173.07,94.53,56.66 169.48,94.17,57.51 171.85,94.11,57.82 171.05,93.03,57.32 169.8,93.63,58.76 169.64,90.66,59.34 169.01,91.29,59.28 169.32,92.8,59.14 169.37,92.52,58.61 172.67,92.33,59.07 171.7,93.37,59.27 172.27,93.94,59.49 172.22,92.2,59.7 173.97,93.15,58.29 176.42,94.49,58.03 174.54,93.28,58.01 174.35,92.1,57.73 175.01,91.62,57.58 175.01,90.76,57.3 170.57,90.67,57.14 170.6,90.8,57.27 171.08,90.57,57.81 169.23,90.34,57.43 172.26,90.55,57.63 172.23,89.91,58.71 173.03,90.66,58.93 175.0,91.88,59.61 174.35,92.82,59.31 174.33,92.12,59.18 174.29,92.38,59.82 175.28,93.55,60.0 177.09,96.57,60.4 176.19,95.86,60.56 179.1,97.28,60.66 179.26,97.5,61.09 178.46,97.8,61.26 177.0,97.33,61.41 177.04,96.76,61.69 174.22,95.84,60.83 171.11,97.68,60.55 171.51,99.0,57.99 167.96,99.18,57.02 166.97,99.8,57.19 167.43,99.46,56.81 167.78,99.12,56.0 160.5,103.87,55.77 156.49,101.06,54.69 163.03,102.76,55.61 159.54,102.63,54.46 ================================================ FILE: pytorch/ann_regression.py ================================================ # -*- coding: utf-8 -*- """PyTorch Regression.ipynb Automatically generated by Colaboratory. Original file is located at https://colab.research.google.com/drive/1pEjzEmbnu2wXAhIaBS8PSpi-0cWtR6ov """ import torch import torch.nn as nn import numpy as np import matplotlib.pyplot as plt from mpl_toolkits.mplot3d import Axes3D # Make the dataset N = 1000 X = np.random.random((N, 2)) * 6 - 3 # uniformly distributed between (-3, +3) Y = np.cos(2*X[:,0]) + np.cos(3*X[:,1]) # Plot it fig = plt.figure() ax = fig.add_subplot(111, projection='3d') ax.scatter(X[:,0], X[:,1], Y) plt.show() # Build the model model = nn.Sequential( nn.Linear(2, 128), nn.ReLU(), nn.Linear(128, 1) ) # Loss and optimizer criterion = nn.MSELoss() optimizer = torch.optim.Adam(model.parameters(), lr=0.01) # Train the model def full_gd(model, criterion, optimizer, X_train, y_train, epochs=1000): # Stuff to store train_losses = np.zeros(epochs) for it in range(epochs): # zero the parameter gradients optimizer.zero_grad() # Forward pass outputs = model(X_train) loss = criterion(outputs, y_train) # Backward and optimize loss.backward() optimizer.step() # Save losses train_losses[it] = loss.item() if (it + 1) % 50 == 0: print(f'Epoch {it+1}/{epochs}, Train Loss: {loss.item():.4f}') return train_losses X_train = torch.from_numpy(X.astype(np.float32)) y_train = torch.from_numpy(Y.astype(np.float32).reshape(-1, 1)) train_losses = full_gd(model, criterion, optimizer, X_train, y_train) plt.plot(train_losses) plt.show() # Plot the prediction surface fig = plt.figure() ax = fig.add_subplot(111, projection='3d') ax.scatter(X[:,0], X[:,1], Y) # surface plot with torch.no_grad(): line = np.linspace(-3, 3, 50) xx, yy = np.meshgrid(line, line) Xgrid = np.vstack((xx.flatten(), yy.flatten())).T Xgrid_torch = torch.from_numpy(Xgrid.astype(np.float32)) Yhat = model(Xgrid_torch).numpy().flatten() ax.plot_trisurf(Xgrid[:,0], Xgrid[:,1], Yhat, linewidth=0.2, antialiased=True) plt.show() # Can it extrapolate? # Plot the prediction surface fig = plt.figure() ax = fig.add_subplot(111, projection='3d') ax.scatter(X[:,0], X[:,1], Y) # surface plot with torch.no_grad(): line = np.linspace(-5, 5, 50) xx, yy = np.meshgrid(line, line) Xgrid = np.vstack((xx.flatten(), yy.flatten())).T Xgrid_torch = torch.from_numpy(Xgrid.astype(np.float32)) Yhat = model(Xgrid_torch).numpy().flatten() ax.plot_trisurf(Xgrid[:,0], Xgrid[:,1], Yhat, linewidth=0.2, antialiased=True) plt.show() ================================================ FILE: pytorch/exercises.txt ================================================ Logistic Regression https://www.kaggle.com/uciml/pima-indians-diabetes-database https://lazyprogrammer.me/course_files/exercises/diabetes.csv Linear Regression https://www.cs.toronto.edu/~delve/data/boston/bostonDetail.html https://lazyprogrammer.me/course_files/exercises/boston.txt ANN https://archive.ics.uci.edu/ml/datasets/ecoli (orig) https://www.kaggle.com/elikplim/ecoli-data-set (alt) https://lazyprogrammer.me/course_files/exercises/ecoli.csv CNN https://www.kaggle.com/c/challenges-in-representation-learning-facial-expression-recognition-challenge https://archive.org/download/fer2013_202311/fer2013.csv RNN Find your own stock price dataset! NLP https://www.kaggle.com/crowdflower/twitter-airline-sentiment https://lazyprogrammer.me/course_files/exercises/AirlineSentimentTweets.csv Recommender Systems http://www2.informatik.uni-freiburg.de/~cziegler/BX/ http://lazyprogrammer.me/course_files/exercises/BX-CSV-Dump.zip Transfer Learning https://www.kaggle.com/c/dogs-vs-cats GAN https://www.kaggle.com/c/dogs-vs-cats DeepRL Find your own stock price dataset! ================================================ FILE: pytorch/extra_reading.txt ================================================ Gradient Descent: Convergence Analysis http://www.stat.cmu.edu/~ryantibs/convexopt-F13/scribes/lec6.pdf Deep learning improved by biological activation functions https://arxiv.org/pdf/1804.11237.pdf Batch Normalization: Accelerating Deep Network Training by Reducing Internal Covariate Shift Sergey Ioffe, Christian Szegedy https://arxiv.org/abs/1502.03167 Dropout: A Simple Way to Prevent Neural Networks from Overfitting https://www.cs.toronto.edu/~hinton/absps/JMLRdropout.pdf Implementing Dropout https://deeplearningcourses.com/c/data-science-deep-learning-in-theano-tensorflow/ Convolution arithmetic tutorial https://theano-pymc.readthedocs.io/en/latest/tutorial/conv_arithmetic.html On the Practical Computational Power of Finite Precision RNNs for Language Recognition https://arxiv.org/abs/1805.04908 Massive Exploration of Neural Machine Translation Architectures https://arxiv.org/abs/1703.03906 Practical Deep Reinforcement Learning Approach for Stock Trading https://arxiv.org/abs/1811.07522 Inceptionism: Going Deeper into Neural Networks https://ai.googleblog.com/2015/06/inceptionism-going-deeper-into-neural.html ================================================ FILE: pytorch/plot_rl_rewards.py ================================================ import matplotlib.pyplot as plt import numpy as np import argparse parser = argparse.ArgumentParser() parser.add_argument('-m', '--mode', type=str, required=True, help='either "train" or "test"') args = parser.parse_args() a = np.load(f'rl_trader_rewards/{args.mode}.npy') print(f"average reward: {a.mean():.2f}, min: {a.min():.2f}, max: {a.max():.2f}") if args.mode == 'train': # show the training progress plt.plot(a) else: # test - show a histogram of rewards plt.hist(a, bins=20) plt.title(args.mode) plt.show() ================================================ FILE: pytorch/rl_trader.py ================================================ import numpy as np import pandas as pd import torch import torch.nn as nn import torch.nn.functional as F from datetime import datetime import itertools import argparse import re import os import pickle from sklearn.preprocessing import StandardScaler # Let's use AAPL (Apple), MSI (Motorola), SBUX (Starbucks) def get_data(): # returns a T x 3 list of stock prices # each row is a different stock # 0 = AAPL # 1 = MSI # 2 = SBUX df = pd.read_csv('aapl_msi_sbux.csv') return df.values ### The experience replay memory ### class ReplayBuffer: def __init__(self, obs_dim, act_dim, size): self.obs1_buf = np.zeros([size, obs_dim], dtype=np.float32) self.obs2_buf = np.zeros([size, obs_dim], dtype=np.float32) self.acts_buf = np.zeros(size, dtype=np.uint8) self.rews_buf = np.zeros(size, dtype=np.float32) self.done_buf = np.zeros(size, dtype=np.uint8) self.ptr, self.size, self.max_size = 0, 0, size def store(self, obs, act, rew, next_obs, done): self.obs1_buf[self.ptr] = obs self.obs2_buf[self.ptr] = next_obs self.acts_buf[self.ptr] = act self.rews_buf[self.ptr] = rew self.done_buf[self.ptr] = done self.ptr = (self.ptr+1) % self.max_size self.size = min(self.size+1, self.max_size) def sample_batch(self, batch_size=32): idxs = np.random.randint(0, self.size, size=batch_size) return dict(s=self.obs1_buf[idxs], s2=self.obs2_buf[idxs], a=self.acts_buf[idxs], r=self.rews_buf[idxs], d=self.done_buf[idxs]) def get_scaler(env): # return scikit-learn scaler object to scale the states # Note: you could also populate the replay buffer here states = [] for _ in range(env.n_step): action = np.random.choice(env.action_space) state, reward, done, info = env.step(action) states.append(state) if done: break scaler = StandardScaler() scaler.fit(states) return scaler def maybe_make_dir(directory): if not os.path.exists(directory): os.makedirs(directory) class MLP(nn.Module): def __init__(self, n_inputs, n_action, n_hidden_layers=1, hidden_dim=32): super(MLP, self).__init__() M = n_inputs self.layers = [] for _ in range(n_hidden_layers): layer = nn.Linear(M, hidden_dim) M = hidden_dim self.layers.append(layer) self.layers.append(nn.ReLU()) # final layer self.layers.append(nn.Linear(M, n_action)) self.layers = nn.Sequential(*self.layers) def forward(self, X): return self.layers(X) def save_weights(self, path): torch.save(self.state_dict(), path) def load_weights(self, path): self.load_state_dict(torch.load(path)) def predict(model, np_states): with torch.no_grad(): inputs = torch.from_numpy(np_states.astype(np.float32)) output = model(inputs) # print("output:", output) return output.numpy() def train_one_step(model, criterion, optimizer, inputs, targets): # convert to tensors inputs = torch.from_numpy(inputs.astype(np.float32)) targets = torch.from_numpy(targets.astype(np.float32)) # zero the parameter gradients optimizer.zero_grad() # Forward pass outputs = model(inputs) loss = criterion(outputs, targets) # Backward and optimize loss.backward() optimizer.step() class MultiStockEnv: """ A 3-stock trading environment. State: vector of size 7 (n_stock * 2 + 1) - # shares of stock 1 owned - # shares of stock 2 owned - # shares of stock 3 owned - price of stock 1 (using daily close price) - price of stock 2 - price of stock 3 - cash owned (can be used to purchase more stocks) Action: categorical variable with 27 (3^3) possibilities - for each stock, you can: - 0 = sell - 1 = hold - 2 = buy """ def __init__(self, data, initial_investment=20000): # data self.stock_price_history = data self.n_step, self.n_stock = self.stock_price_history.shape # instance attributes self.initial_investment = initial_investment self.cur_step = None self.stock_owned = None self.stock_price = None self.cash_in_hand = None self.action_space = np.arange(3**self.n_stock) # action permutations # returns a nested list with elements like: # [0,0,0] # [0,0,1] # [0,0,2] # [0,1,0] # [0,1,1] # etc. # 0 = sell # 1 = hold # 2 = buy self.action_list = list(map(list, itertools.product([0, 1, 2], repeat=self.n_stock))) # calculate size of state self.state_dim = self.n_stock * 2 + 1 self.reset() def reset(self): self.cur_step = 0 self.stock_owned = np.zeros(self.n_stock) self.stock_price = self.stock_price_history[self.cur_step] self.cash_in_hand = self.initial_investment return self._get_obs() def step(self, action): assert action in self.action_space # get current value before performing the action prev_val = self._get_val() # update price, i.e. go to the next day self.cur_step += 1 self.stock_price = self.stock_price_history[self.cur_step] # perform the trade self._trade(action) # get the new value after taking the action cur_val = self._get_val() # reward is the increase in porfolio value reward = cur_val - prev_val # done if we have run out of data done = self.cur_step == self.n_step - 1 # store the current value of the portfolio here info = {'cur_val': cur_val} # conform to the Gym API return self._get_obs(), reward, done, info def _get_obs(self): obs = np.empty(self.state_dim) obs[:self.n_stock] = self.stock_owned obs[self.n_stock:2*self.n_stock] = self.stock_price obs[-1] = self.cash_in_hand return obs def _get_val(self): return self.stock_owned.dot(self.stock_price) + self.cash_in_hand def _trade(self, action): # index the action we want to perform # 0 = sell # 1 = hold # 2 = buy # e.g. [2,1,0] means: # buy first stock # hold second stock # sell third stock action_vec = self.action_list[action] # determine which stocks to buy or sell sell_index = [] # stores index of stocks we want to sell buy_index = [] # stores index of stocks we want to buy for i, a in enumerate(action_vec): if a == 0: sell_index.append(i) elif a == 2: buy_index.append(i) # sell any stocks we want to sell # then buy any stocks we want to buy if sell_index: # NOTE: to simplify the problem, when we sell, we will sell ALL shares of that stock for i in sell_index: self.cash_in_hand += self.stock_price[i] * self.stock_owned[i] self.stock_owned[i] = 0 if buy_index: # NOTE: when buying, we will loop through each stock we want to buy, # and buy one share at a time until we run out of cash can_buy = True while can_buy: for i in buy_index: if self.cash_in_hand > self.stock_price[i]: self.stock_owned[i] += 1 # buy one share self.cash_in_hand -= self.stock_price[i] else: can_buy = False class DQNAgent(object): def __init__(self, state_size, action_size): self.state_size = state_size self.action_size = action_size self.memory = ReplayBuffer(state_size, action_size, size=500) self.gamma = 0.95 # discount rate self.epsilon = 1.0 # exploration rate self.epsilon_min = 0.01 self.epsilon_decay = 0.995 self.model = MLP(state_size, action_size) # Loss and optimizer self.criterion = nn.MSELoss() self.optimizer = torch.optim.Adam(self.model.parameters()) def update_replay_memory(self, state, action, reward, next_state, done): self.memory.store(state, action, reward, next_state, done) def act(self, state): if np.random.rand() <= self.epsilon: return np.random.choice(self.action_size) act_values = predict(self.model, state) return np.argmax(act_values[0]) # returns action def replay(self, batch_size=32): # first check if replay buffer contains enough data if self.memory.size < batch_size: return # sample a batch of data from the replay memory minibatch = self.memory.sample_batch(batch_size) states = minibatch['s'] actions = minibatch['a'] rewards = minibatch['r'] next_states = minibatch['s2'] done = minibatch['d'] # Calculate the target: Q(s',a) target = rewards + (1 - done) * self.gamma * np.amax(predict(self.model, next_states), axis=1) # With the PyTorch API, it is simplest to have the target be the # same shape as the predictions. # However, we only need to update the network for the actions # which were actually taken. # We can accomplish this by setting the target to be equal to # the prediction for all values. # Then, only change the targets for the actions taken. # Q(s,a) target_full = predict(self.model, states) target_full[np.arange(batch_size), actions] = target # Run one training step train_one_step(self.model, self.criterion, self.optimizer, states, target_full) if self.epsilon > self.epsilon_min: self.epsilon *= self.epsilon_decay def load(self, name): self.model.load_weights(name) def save(self, name): self.model.save_weights(name) def play_one_episode(agent, env, is_train): # note: after transforming states are already 1xD state = env.reset() state = scaler.transform([state]) done = False while not done: action = agent.act(state) next_state, reward, done, info = env.step(action) next_state = scaler.transform([next_state]) if is_train == 'train': agent.update_replay_memory(state, action, reward, next_state, done) agent.replay(batch_size) state = next_state return info['cur_val'] if __name__ == '__main__': # config models_folder = 'rl_trader_models' rewards_folder = 'rl_trader_rewards' num_episodes = 2000 batch_size = 32 initial_investment = 20000 parser = argparse.ArgumentParser() parser.add_argument('-m', '--mode', type=str, required=True, help='either "train" or "test"') args = parser.parse_args() maybe_make_dir(models_folder) maybe_make_dir(rewards_folder) data = get_data() n_timesteps, n_stocks = data.shape n_train = n_timesteps // 2 train_data = data[:n_train] test_data = data[n_train:] env = MultiStockEnv(train_data, initial_investment) state_size = env.state_dim action_size = len(env.action_space) agent = DQNAgent(state_size, action_size) scaler = get_scaler(env) # store the final value of the portfolio (end of episode) portfolio_value = [] if args.mode == 'test': # then load the previous scaler with open(f'{models_folder}/scaler.pkl', 'rb') as f: scaler = pickle.load(f) # remake the env with test data env = MultiStockEnv(test_data, initial_investment) # make sure epsilon is not 1! # no need to run multiple episodes if epsilon = 0, it's deterministic agent.epsilon = 0.01 # load trained weights agent.load(f'{models_folder}/dqn.ckpt') # play the game num_episodes times for e in range(num_episodes): t0 = datetime.now() val = play_one_episode(agent, env, args.mode) dt = datetime.now() - t0 print(f"episode: {e + 1}/{num_episodes}, episode end value: {val:.2f}, duration: {dt}") portfolio_value.append(val) # append episode end portfolio value # save the weights when we are done if args.mode == 'train': # save the DQN agent.save(f'{models_folder}/dqn.ckpt') # save the scaler with open(f'{models_folder}/scaler.pkl', 'wb') as f: pickle.dump(scaler, f) # save portfolio value for each episode np.save(f'{rewards_folder}/{args.mode}.npy', portfolio_value) ================================================ FILE: recommenders/autorec.py ================================================ # https://udemy.com/recommender-systems # https://deeplearningcourses.com/recommender-systems from __future__ import print_function, division from builtins import range # Note: you may need to update your version of future # sudo pip install -U future import numpy as np import pandas as pd import matplotlib.pyplot as plt from sklearn.utils import shuffle from scipy.sparse import save_npz, load_npz import keras.backend as K from keras.models import Model from keras.layers import Input, Dropout, Dense from keras.regularizers import l2 from keras.optimizers import SGD # config batch_size = 128 epochs = 20 reg = 0.0001 # reg = 0 A = load_npz("Atrain.npz") A_test = load_npz("Atest.npz") mask = (A > 0) * 1.0 mask_test = (A_test > 0) * 1.0 # make copies since we will shuffle A_copy = A.copy() mask_copy = mask.copy() A_test_copy = A_test.copy() mask_test_copy = mask_test.copy() N, M = A.shape print("N:", N, "M:", M) print("N // batch_size:", N // batch_size) # center the data mu = A.sum() / mask.sum() print("mu:", mu) # build the model - just a 1 hidden layer autoencoder i = Input(shape=(M,)) # bigger hidden layer size seems to help! x = Dropout(0.7)(i) x = Dense(700, activation='tanh', kernel_regularizer=l2(reg))(x) # x = Dropout(0.5)(x) x = Dense(M, kernel_regularizer=l2(reg))(x) def custom_loss(y_true, y_pred): mask = K.cast(K.not_equal(y_true, 0), dtype='float32') diff = y_pred - y_true sqdiff = diff * diff * mask sse = K.sum(K.sum(sqdiff)) n = K.sum(K.sum(mask)) return sse / n def generator(A, M): while True: A, M = shuffle(A, M) for i in range(A.shape[0] // batch_size + 1): upper = min((i+1)*batch_size, A.shape[0]) a = A[i*batch_size:upper].toarray() m = M[i*batch_size:upper].toarray() a = a - mu * m # must keep zeros at zero! # m2 = (np.random.random(a.shape) > 0.5) # noisy = a * m2 noisy = a # no noise yield noisy, a def test_generator(A, M, A_test, M_test): # assumes A and A_test are in corresponding order # both of size N x M while True: for i in range(A.shape[0] // batch_size + 1): upper = min((i+1)*batch_size, A.shape[0]) a = A[i*batch_size:upper].toarray() m = M[i*batch_size:upper].toarray() at = A_test[i*batch_size:upper].toarray() mt = M_test[i*batch_size:upper].toarray() a = a - mu * m at = at - mu * mt yield a, at model = Model(i, x) model.compile( loss=custom_loss, optimizer=SGD(lr=0.08, momentum=0.9), # optimizer='adam', metrics=[custom_loss], ) r = model.fit( generator(A, mask), validation_data=test_generator(A_copy, mask_copy, A_test_copy, mask_test_copy), epochs=epochs, steps_per_epoch=A.shape[0] // batch_size + 1, validation_steps=A_test.shape[0] // batch_size + 1, ) print(r.history.keys()) # plot losses plt.plot(r.history['loss'], label="train loss") plt.plot(r.history['val_loss'], label="test loss") plt.legend() plt.show() # plot mse plt.plot(r.history['custom_loss'], label="train mse") plt.plot(r.history['val_custom_loss'], label="test mse") plt.legend() plt.show() ================================================ FILE: recommenders/extra_reading.txt ================================================ How Hacker News ranking really works: scoring, controversy, and penalties http://www.righto.com/2013/11/how-hacker-news-ranking-really-works.html The Evolution Of Hacker News https://techcrunch.com/2013/05/18/the-evolution-of-hacker-news/ Reddit sorting code https://github.com/reddit-archive/reddit/blob/master/r2/r2/lib/db/_sorts.pyx Revealed: US spy operation that manipulates social media https://www.theguardian.com/technology/2011/mar/17/us-spy-operation-social-networks 5G Got me Fired https://medium.com/@dvorak/5g-got-me-fired-ce407e584c4a Learning to rank https://en.wikipedia.org/wiki/Learning_to_rank#Evaluation_measures How Not To Sort By Average Rating https://www.evanmiller.org/how-not-to-sort-by-average-rating.html Wilson score interval https://en.wikipedia.org/wiki/Binomial_proportion_confidence_interval#Wilson_score_interval reddit’s new comment sorting system https://redditblog.com/2009/10/15/reddits-new-comment-sorting-system/ Markov Chains Explained Visually http://setosa.io/ev/markov-chains/ An algorithmic framework for performing collaborative filtering https://dl.acm.org/citation.cfm?id=312682 Item-based collaborative filtering recommendation algorithms https://dl.acm.org/citation.cfm?id=372071 FunkSVD http://sifter.org/~simon/journal/20061211.html Probabilistic Matrix Factorization https://papers.nips.cc/paper/3208-probabilistic-matrix-factorization.pdf Bayesian Probabilistic Matrix Factorization using Markov Chain Monte Carlo https://www.cs.toronto.edu/~amnih/papers/bpmf.pdf Algorithms for Non-negative Matrix Factorization https://papers.nips.cc/paper/1861-algorithms-for-non-negative-matrix-factorization.pdf Learning the parts of objects by non-negative matrix factorization http://www.columbia.edu/~jwp2128/Teaching/E4903/papers/nmf_nature.pdf Restricted Boltzmann Machines for Collaborative Filtering https://www.cs.toronto.edu/~rsalakhu/papers/rbmcf.pdf AutoRec: Autoencoders Meet Collaborative Filtering http://users.cecs.anu.edu.au/~u5098633/papers/www15.pdf Collaborative Filtering for Implicit Feedback Datasets http://yifanhu.net/PUB/cf.pdf Neural Collaborative Filtering https://arxiv.org/abs/1708.05031 ================================================ FILE: recommenders/itembased.py ================================================ # https://udemy.com/recommender-systems # https://deeplearningcourses.com/recommender-systems from __future__ import print_function, division from builtins import range, input # Note: you may need to update your version of future # sudo pip install -U future import pickle import numpy as np import pandas as pd import matplotlib.pyplot as plt from sklearn.utils import shuffle from datetime import datetime from sortedcontainers import SortedList # load in the data import os if not os.path.exists('user2movie.json') or \ not os.path.exists('movie2user.json') or \ not os.path.exists('usermovie2rating.json') or \ not os.path.exists('usermovie2rating_test.json'): import preprocess2dict with open('user2movie.json', 'rb') as f: user2movie = pickle.load(f) with open('movie2user.json', 'rb') as f: movie2user = pickle.load(f) with open('usermovie2rating.json', 'rb') as f: usermovie2rating = pickle.load(f) with open('usermovie2rating_test.json', 'rb') as f: usermovie2rating_test = pickle.load(f) N = np.max(list(user2movie.keys())) + 1 # the test set may contain movies the train set doesn't have data on m1 = np.max(list(movie2user.keys())) m2 = np.max([m for (u, m), r in usermovie2rating_test.items()]) M = max(m1, m2) + 1 print("N:", N, "M:", M) if M > 2000: print("N =", N, "are you sure you want to continue?") print("Comment out these lines if so...") exit() # to find the user similarities, you have to do O(M^2 * N) calculations! # in the "real-world" you'd want to parallelize this # note: we really only have to do half the calculations, since w_ij is symmetric K = 20 # number of neighbors we'd like to consider limit = 5 # number of common movies users must have in common in order to consider neighbors = [] # store neighbors in this list averages = [] # each item's average rating for later use deviations = [] # each item's deviation for later use for i in range(M): # find the K closest items to item i users_i = movie2user[i] users_i_set = set(users_i) # calculate avg and deviation ratings_i = { user:usermovie2rating[(user, i)] for user in users_i } avg_i = np.mean(list(ratings_i.values())) dev_i = { user:(rating - avg_i) for user, rating in ratings_i.items() } dev_i_values = np.array(list(dev_i.values())) sigma_i = np.sqrt(dev_i_values.dot(dev_i_values)) # save these for later use averages.append(avg_i) deviations.append(dev_i) sl = SortedList() for j in range(M): # don't include yourself if j != i: users_j = movie2user[j] users_j_set = set(users_j) common_users = (users_i_set & users_j_set) # intersection if len(common_users) > limit: # calculate avg and deviation ratings_j = { user:usermovie2rating[(user, j)] for user in users_j } avg_j = np.mean(list(ratings_j.values())) dev_j = { user:(rating - avg_j) for user, rating in ratings_j.items() } dev_j_values = np.array(list(dev_j.values())) sigma_j = np.sqrt(dev_j_values.dot(dev_j_values)) # calculate correlation coefficient numerator = sum(dev_i[m]*dev_j[m] for m in common_users) w_ij = numerator / (sigma_i * sigma_j) # insert into sorted list and truncate # negate weight, because list is sorted ascending # maximum value (1) is "closest" sl.add((-w_ij, j)) if len(sl) > K: del sl[-1] # store the neighbors neighbors.append(sl) # print out useful things if i % 1 == 0: print(i) # using neighbors, calculate train and test MSE def predict(i, u): # calculate the weighted sum of deviations numerator = 0 denominator = 0 for neg_w, j in neighbors[i]: # remember, the weight is stored as its negative # so the negative of the negative weight is the positive weight try: numerator += -neg_w * deviations[j][u] denominator += abs(neg_w) except KeyError: # neighbor may not have been rated by the same user # don't want to do dictionary lookup twice # so just throw exception pass if denominator == 0: prediction = averages[i] else: prediction = numerator / denominator + averages[i] prediction = min(5, prediction) prediction = max(0.5, prediction) # min rating is 0.5 return prediction train_predictions = [] train_targets = [] for (u, m), target in usermovie2rating.items(): # calculate the prediction for this movie prediction = predict(m, u) # save the prediction and target train_predictions.append(prediction) train_targets.append(target) test_predictions = [] test_targets = [] # same thing for test set for (u, m), target in usermovie2rating_test.items(): # calculate the prediction for this movie prediction = predict(m, u) # save the prediction and target test_predictions.append(prediction) test_targets.append(target) # calculate accuracy def mse(p, t): p = np.array(p) t = np.array(t) return np.mean((p - t)**2) print('train mse:', mse(train_predictions, train_targets)) print('test mse:', mse(test_predictions, test_targets)) ================================================ FILE: recommenders/mf.py ================================================ # https://udemy.com/recommender-systems # https://deeplearningcourses.com/recommender-systems from __future__ import print_function, division from builtins import range, input # Note: you may need to update your version of future # sudo pip install -U future import pickle import numpy as np import pandas as pd import matplotlib.pyplot as plt from sklearn.utils import shuffle from datetime import datetime # load in the data import os if not os.path.exists('user2movie.json') or \ not os.path.exists('movie2user.json') or \ not os.path.exists('usermovie2rating.json') or \ not os.path.exists('usermovie2rating_test.json'): import preprocess2dict with open('user2movie.json', 'rb') as f: user2movie = pickle.load(f) with open('movie2user.json', 'rb') as f: movie2user = pickle.load(f) with open('usermovie2rating.json', 'rb') as f: usermovie2rating = pickle.load(f) with open('usermovie2rating_test.json', 'rb') as f: usermovie2rating_test = pickle.load(f) N = np.max(list(user2movie.keys())) + 1 # the test set may contain movies the train set doesn't have data on m1 = np.max(list(movie2user.keys())) m2 = np.max([m for (u, m), r in usermovie2rating_test.items()]) M = max(m1, m2) + 1 print("N:", N, "M:", M) # initialize variables K = 10 # latent dimensionality W = np.random.randn(N, K) b = np.zeros(N) U = np.random.randn(M, K) c = np.zeros(M) mu = np.mean(list(usermovie2rating.values())) # prediction[i,j] = W[i].dot(U[j]) + b[i] + c.T[j] + mu def get_loss(d): # d: (user_id, movie_id) -> rating N = float(len(d)) sse = 0 for k, r in d.items(): i, j = k p = W[i].dot(U[j]) + b[i] + c[j] + mu sse += (p - r)*(p - r) return sse / N # train the parameters epochs = 25 reg =20. # regularization penalty train_losses = [] test_losses = [] for epoch in range(epochs): print("epoch:", epoch) epoch_start = datetime.now() # perform updates # update W and b t0 = datetime.now() for i in range(N): # for W matrix = np.eye(K) * reg vector = np.zeros(K) # for b bi = 0 for j in user2movie[i]: r = usermovie2rating[(i,j)] matrix += np.outer(U[j], U[j]) vector += (r - b[i] - c[j] - mu)*U[j] bi += (r - W[i].dot(U[j]) - c[j] - mu) # set the updates W[i] = np.linalg.solve(matrix, vector) b[i] = bi / (len(user2movie[i]) + reg) if i % (N//10) == 0: print("i:", i, "N:", N) print("updated W and b:", datetime.now() - t0) # update U and c t0 = datetime.now() for j in range(M): # for U matrix = np.eye(K) * reg vector = np.zeros(K) # for c cj = 0 try: for i in movie2user[j]: r = usermovie2rating[(i,j)] matrix += np.outer(W[i], W[i]) vector += (r - b[i] - c[j] - mu)*W[i] cj += (r - W[i].dot(U[j]) - b[i] - mu) # set the updates U[j] = np.linalg.solve(matrix, vector) c[j] = cj / (len(movie2user[j]) + reg) if j % (M//10) == 0: print("j:", j, "M:", M) except KeyError: # possible not to have any ratings for a movie pass print("updated U and c:", datetime.now() - t0) print("epoch duration:", datetime.now() - epoch_start) # store train loss t0 = datetime.now() train_losses.append(get_loss(usermovie2rating)) # store test loss test_losses.append(get_loss(usermovie2rating_test)) print("calculate cost:", datetime.now() - t0) print("train loss:", train_losses[-1]) print("test loss:", test_losses[-1]) print("train losses:", train_losses) print("test losses:", test_losses) # plot losses plt.plot(train_losses, label="train loss") plt.plot(test_losses, label="test loss") plt.legend() plt.show() ================================================ FILE: recommenders/mf2.py ================================================ # https://udemy.com/recommender-systems # https://deeplearningcourses.com/recommender-systems from __future__ import print_function, division from builtins import range, input # Note: you may need to update your version of future # sudo pip install -U future import pickle import numpy as np import pandas as pd import matplotlib.pyplot as plt from sklearn.utils import shuffle from datetime import datetime from copy import deepcopy # load in the data import os if not os.path.exists('user2movie.json') or \ not os.path.exists('movie2user.json') or \ not os.path.exists('usermovie2rating.json') or \ not os.path.exists('usermovie2rating_test.json'): import preprocess2dict with open('user2movie.json', 'rb') as f: user2movie = pickle.load(f) with open('movie2user.json', 'rb') as f: movie2user = pickle.load(f) with open('usermovie2rating.json', 'rb') as f: usermovie2rating = pickle.load(f) with open('usermovie2rating_test.json', 'rb') as f: usermovie2rating_test = pickle.load(f) N = np.max(list(user2movie.keys())) + 1 # the test set may contain movies the train set doesn't have data on m1 = np.max(list(movie2user.keys())) m2 = np.max([m for (u, m), r in usermovie2rating_test.items()]) M = max(m1, m2) + 1 print("N:", N, "M:", M) # convert user2movie and movie2user to include ratings print("converting...") user2movierating = {} for i, movies in user2movie.items(): r = np.array([usermovie2rating[(i,j)] for j in movies]) user2movierating[i] = (movies, r) movie2userrating = {} for j, users in movie2user.items(): r = np.array([usermovie2rating[(i,j)] for i in users]) movie2userrating[j] = (users, r) # create a movie2user for test set, since we need it for loss movie2userrating_test = {} for (i, j), r in usermovie2rating_test.items(): if j not in movie2userrating_test: movie2userrating_test[j] = [[i], [r]] else: movie2userrating_test[j][0].append(i) movie2userrating_test[j][1].append(r) for j, (users, r) in movie2userrating_test.items(): movie2userrating_test[j][1] = np.array(r) print("conversion done") # initialize variables K = 10 # latent dimensionality W = np.random.randn(N, K) b = np.zeros(N) U = np.random.randn(M, K) c = np.zeros(M) mu = np.mean(list(usermovie2rating.values())) def get_loss(m2u): # d: movie_id -> (user_ids, ratings) N = 0. sse = 0 for j, (u_ids, r) in m2u.items(): p = W[u_ids].dot(U[j]) + b[u_ids] + c[j] + mu delta = p - r sse += delta.dot(delta) N += len(r) return sse / N # train the parameters epochs = 25 reg = 20. # regularization penalty train_losses = [] test_losses = [] for epoch in range(epochs): print("epoch:", epoch) epoch_start = datetime.now() # perform updates # update W and b t0 = datetime.now() for i in range(N): m_ids, r = user2movierating[i] matrix = U[m_ids].T.dot(U[m_ids]) + np.eye(K) * reg vector = (r - b[i] - c[m_ids] - mu).dot(U[m_ids]) bi = (r - U[m_ids].dot(W[i]) - c[m_ids] - mu).sum() # set the updates W[i] = np.linalg.solve(matrix, vector) b[i] = bi / (len(user2movie[i]) + reg) if i % (N//10) == 0: print("i:", i, "N:", N) print("updated W and b:", datetime.now() - t0) # update U and c t0 = datetime.now() for j in range(M): try: u_ids, r = movie2userrating[j] matrix = W[u_ids].T.dot(W[u_ids]) + np.eye(K) * reg vector = (r - b[u_ids] - c[j] - mu).dot(W[u_ids]) cj = (r - W[u_ids].dot(U[j]) - b[u_ids] - mu).sum() # set the updates U[j] = np.linalg.solve(matrix, vector) c[j] = cj / (len(movie2user[j]) + reg) if j % (M//10) == 0: print("j:", j, "M:", M) except KeyError: # possible not to have any ratings for a movie pass print("updated U and c:", datetime.now() - t0) print("epoch duration:", datetime.now() - epoch_start) # store train loss t0 = datetime.now() train_losses.append(get_loss(movie2userrating)) # store test loss test_losses.append(get_loss(movie2userrating_test)) print("calculate cost:", datetime.now() - t0) print("train loss:", train_losses[-1]) print("test loss:", test_losses[-1]) print("train losses:", train_losses) print("test losses:", test_losses) # plot losses plt.plot(train_losses, label="train loss") plt.plot(test_losses, label="test loss") plt.legend() plt.show() ================================================ FILE: recommenders/mf_keras.py ================================================ # https://udemy.com/recommender-systems # https://deeplearningcourses.com/recommender-systems from __future__ import print_function, division from builtins import range, input # Note: you may need to update your version of future # sudo pip install -U future import pickle import numpy as np import pandas as pd import matplotlib.pyplot as plt from sklearn.utils import shuffle from keras.models import Model from keras.layers import Input, Embedding, Dot, Add, Flatten from keras.regularizers import l2 from keras.optimizers import SGD, Adam # load in the data df = pd.read_csv('../large_files/movielens-20m-dataset/edited_rating.csv') N = df.userId.max() + 1 # number of users M = df.movie_idx.max() + 1 # number of movies # split into train and test df = shuffle(df) cutoff = int(0.8*len(df)) df_train = df.iloc[:cutoff] df_test = df.iloc[cutoff:] # initialize variables K = 10 # latent dimensionality mu = df_train.rating.mean() epochs = 15 reg = 0. # regularization penalty # keras model u = Input(shape=(1,)) m = Input(shape=(1,)) u_embedding = Embedding(N, K, embeddings_regularizer=l2(reg))(u) # (N, 1, K) m_embedding = Embedding(M, K, embeddings_regularizer=l2(reg))(m) # (N, 1, K) # subsubmodel = Model([u, m], [u_embedding, m_embedding]) # user_ids = df_train.userId.values[0:5] # movie_ids = df_train.movie_idx.values[0:5] # print("user_ids.shape", user_ids.shape) # p = subsubmodel.predict([user_ids, movie_ids]) # print("p[0].shape:", p[0].shape) # print("p[1].shape:", p[1].shape) # exit() u_bias = Embedding(N, 1, embeddings_regularizer=l2(reg))(u) # (N, 1, 1) m_bias = Embedding(M, 1, embeddings_regularizer=l2(reg))(m) # (N, 1, 1) x = Dot(axes=2)([u_embedding, m_embedding]) # (N, 1, 1) # submodel = Model([u, m], x) # user_ids = df_train.userId.values[0:5] # movie_ids = df_train.movie_idx.values[0:5] # p = submodel.predict([user_ids, movie_ids]) # print("p.shape:", p.shape) # exit() x = Add()([x, u_bias, m_bias]) x = Flatten()(x) # (N, 1) model = Model(inputs=[u, m], outputs=x) model.compile( loss='mse', # optimizer='adam', # optimizer=Adam(lr=0.01), optimizer=SGD(lr=0.08, momentum=0.9), metrics=['mse'], ) r = model.fit( x=[df_train.userId.values, df_train.movie_idx.values], y=df_train.rating.values - mu, epochs=epochs, batch_size=128, validation_data=( [df_test.userId.values, df_test.movie_idx.values], df_test.rating.values - mu ) ) # plot losses plt.plot(r.history['loss'], label="train loss") plt.plot(r.history['val_loss'], label="test loss") plt.legend() plt.show() # plot mse plt.plot(r.history['mean_squared_error'], label="train mse") plt.plot(r.history['val_mean_squared_error'], label="test mse") plt.legend() plt.show() ================================================ FILE: recommenders/mf_keras_deep.py ================================================ # https://udemy.com/recommender-systems # https://deeplearningcourses.com/recommender-systems from __future__ import print_function, division from builtins import range, input # Note: you may need to update your version of future # sudo pip install -U future import pickle import numpy as np import pandas as pd import matplotlib.pyplot as plt from sklearn.utils import shuffle from keras.models import Model from keras.layers import Input, Embedding, Flatten, Dense, Concatenate from keras.layers import Dropout, BatchNormalization, Activation from keras.regularizers import l2 from keras.optimizers import SGD, Adam # load in the data df = pd.read_csv('../large_files/movielens-20m-dataset/edited_rating.csv') N = df.userId.max() + 1 # number of users M = df.movie_idx.max() + 1 # number of movies # split into train and test df = shuffle(df) cutoff = int(0.8*len(df)) df_train = df.iloc[:cutoff] df_test = df.iloc[cutoff:] # initialize variables K = 10 # latent dimensionality mu = df_train.rating.mean() epochs = 15 # reg = 0.0001 # regularization penalty # keras model u = Input(shape=(1,)) m = Input(shape=(1,)) u_embedding = Embedding(N, K)(u) # (N, 1, K) m_embedding = Embedding(M, K)(m) # (N, 1, K) u_embedding = Flatten()(u_embedding) # (N, K) m_embedding = Flatten()(m_embedding) # (N, K) x = Concatenate()([u_embedding, m_embedding]) # (N, 2K) # the neural network x = Dense(400)(x) # x = BatchNormalization()(x) x = Activation('relu')(x) # x = Dropout(0.5)(x) # x = Dense(100)(x) # x = BatchNormalization()(x) # x = Activation('relu')(x) x = Dense(1)(x) model = Model(inputs=[u, m], outputs=x) model.compile( loss='mse', # optimizer='adam', # optimizer=Adam(lr=0.01), optimizer=SGD(lr=0.08, momentum=0.9), metrics=['mse'], ) r = model.fit( x=[df_train.userId.values, df_train.movie_idx.values], y=df_train.rating.values - mu, epochs=epochs, batch_size=128, validation_data=( [df_test.userId.values, df_test.movie_idx.values], df_test.rating.values - mu ) ) # plot losses plt.plot(r.history['loss'], label="train loss") plt.plot(r.history['val_loss'], label="test loss") plt.legend() plt.show() # plot mse plt.plot(r.history['mean_squared_error'], label="train mse") plt.plot(r.history['val_mean_squared_error'], label="test mse") plt.legend() plt.show() ================================================ FILE: recommenders/mf_keras_res.py ================================================ # https://udemy.com/recommender-systems # https://deeplearningcourses.com/recommender-systems from __future__ import print_function, division from builtins import range, input # Note: you may need to update your version of future # sudo pip install -U future import pickle import numpy as np import pandas as pd import matplotlib.pyplot as plt from sklearn.utils import shuffle from keras.models import Model from keras.layers import Input, Embedding, Dot, Add, Flatten, Dense, Concatenate from keras.layers import Dropout, BatchNormalization, Activation from keras.regularizers import l2 from keras.optimizers import SGD, Adam # load in the data df = pd.read_csv('../large_files/movielens-20m-dataset/edited_rating.csv') N = df.userId.max() + 1 # number of users M = df.movie_idx.max() + 1 # number of movies # split into train and test df = shuffle(df) cutoff = int(0.8*len(df)) df_train = df.iloc[:cutoff] df_test = df.iloc[cutoff:] # initialize variables K = 10 # latent dimensionality mu = df_train.rating.mean() epochs = 15 reg = 0. # regularization penalty # keras model u = Input(shape=(1,)) m = Input(shape=(1,)) u_embedding = Embedding(N, K)(u) # (N, 1, K) m_embedding = Embedding(M, K)(m) # (N, 1, K) ##### main branch u_bias = Embedding(N, 1)(u) # (N, 1, 1) m_bias = Embedding(M, 1)(m) # (N, 1, 1) x = Dot(axes=2)([u_embedding, m_embedding]) # (N, 1, 1) x = Add()([x, u_bias, m_bias]) x = Flatten()(x) # (N, 1) ##### side branch u_embedding = Flatten()(u_embedding) # (N, K) m_embedding = Flatten()(m_embedding) # (N, K) y = Concatenate()([u_embedding, m_embedding]) # (N, 2K) y = Dense(400)(y) y = Activation('elu')(y) # y = Dropout(0.5)(y) y = Dense(1)(y) ##### merge x = Add()([x, y]) model = Model(inputs=[u, m], outputs=x) model.compile( loss='mse', # optimizer='adam', # optimizer=Adam(lr=0.01), optimizer=SGD(lr=0.08, momentum=0.9), metrics=['mse'], ) r = model.fit( x=[df_train.userId.values, df_train.movie_idx.values], y=df_train.rating.values - mu, epochs=epochs, batch_size=128, validation_data=( [df_test.userId.values, df_test.movie_idx.values], df_test.rating.values - mu ) ) # plot losses plt.plot(r.history['loss'], label="train loss") plt.plot(r.history['val_loss'], label="test loss") plt.legend() plt.show() # plot mse plt.plot(r.history['mean_squared_error'], label="train mse") plt.plot(r.history['val_mean_squared_error'], label="test mse") plt.legend() plt.show() ================================================ FILE: recommenders/preprocess.py ================================================ # https://udemy.com/recommender-systems # https://deeplearningcourses.com/recommender-systems from __future__ import print_function, division from builtins import range, input # Note: you may need to update your version of future # sudo pip install -U future import pandas as pd # https://www.kaggle.com/grouplens/movielens-20m-dataset df = pd.read_csv('../large_files/movielens-20m-dataset/rating.csv') # note: # user ids are ordered sequentially from 1..138493 # with no missing numbers # movie ids are integers from 1..131262 # NOT all movie ids appear # there are only 26744 movie ids # write code to check it yourself! # make the user ids go from 0...N-1 df.userId = df.userId - 1 # create a mapping for movie ids unique_movie_ids = set(df.movieId.values) movie2idx = {} count = 0 for movie_id in unique_movie_ids: movie2idx[movie_id] = count count += 1 # add them to the data frame # takes awhile df['movie_idx'] = df.apply(lambda row: movie2idx[row.movieId], axis=1) df = df.drop(columns=['timestamp']) df.to_csv('../large_files/movielens-20m-dataset/edited_rating.csv', index=False) ================================================ FILE: recommenders/preprocess2dict.py ================================================ # https://udemy.com/recommender-systems # https://deeplearningcourses.com/recommender-systems from __future__ import print_function, division from builtins import range, input # Note: you may need to update your version of future # sudo pip install -U future import pickle import numpy as np import pandas as pd import matplotlib.pyplot as plt from sklearn.utils import shuffle # load in the data # https://www.kaggle.com/grouplens/movielens-20m-dataset df = pd.read_csv('../large_files/movielens-20m-dataset/very_small_rating.csv') N = df.userId.max() + 1 # number of users M = df.movie_idx.max() + 1 # number of movies # split into train and test df = shuffle(df) cutoff = int(0.8*len(df)) df_train = df.iloc[:cutoff] df_test = df.iloc[cutoff:] # a dictionary to tell us which users have rated which movies user2movie = {} # a dicationary to tell us which movies have been rated by which users movie2user = {} # a dictionary to look up ratings usermovie2rating = {} print("Calling: update_user2movie_and_movie2user") count = 0 def update_user2movie_and_movie2user(row): global count count += 1 if count % 100000 == 0: print("processed: %.3f" % (float(count)/cutoff)) i = int(row.userId) j = int(row.movie_idx) if i not in user2movie: user2movie[i] = [j] else: user2movie[i].append(j) if j not in movie2user: movie2user[j] = [i] else: movie2user[j].append(i) usermovie2rating[(i,j)] = row.rating df_train.apply(update_user2movie_and_movie2user, axis=1) # test ratings dictionary usermovie2rating_test = {} print("Calling: update_usermovie2rating_test") count = 0 def update_usermovie2rating_test(row): global count count += 1 if count % 100000 == 0: print("processed: %.3f" % (float(count)/len(df_test))) i = int(row.userId) j = int(row.movie_idx) usermovie2rating_test[(i,j)] = row.rating df_test.apply(update_usermovie2rating_test, axis=1) # note: these are not really JSONs with open('user2movie.json', 'wb') as f: pickle.dump(user2movie, f) with open('movie2user.json', 'wb') as f: pickle.dump(movie2user, f) with open('usermovie2rating.json', 'wb') as f: pickle.dump(usermovie2rating, f) with open('usermovie2rating_test.json', 'wb') as f: pickle.dump(usermovie2rating_test, f) ================================================ FILE: recommenders/preprocess2sparse.py ================================================ # https://udemy.com/recommender-systems # https://deeplearningcourses.com/recommender-systems from __future__ import print_function, division from builtins import range, input # Note: you may need to update your version of future # sudo pip install -U future import numpy as np import pandas as pd import matplotlib.pyplot as plt from sklearn.utils import shuffle from scipy.sparse import lil_matrix, csr_matrix, save_npz, load_npz # load in the data df = pd.read_csv('../large_files/movielens-20m-dataset/edited_rating.csv') # df = pd.read_csv('../large_files/movielens-20m-dataset/small_rating.csv') N = df.userId.max() + 1 # number of users M = df.movie_idx.max() + 1 # number of movies # split into train and test df = shuffle(df) cutoff = int(0.8*len(df)) df_train = df.iloc[:cutoff] df_test = df.iloc[cutoff:] A = lil_matrix((N, M)) print("Calling: update_train") count = 0 def update_train(row): global count count += 1 if count % 100000 == 0: print("processed: %.3f" % (float(count)/cutoff)) i = int(row.userId) j = int(row.movie_idx) A[i,j] = row.rating df_train.apply(update_train, axis=1) # mask, to tell us which entries exist and which do not A = A.tocsr() mask = (A > 0) save_npz("Atrain.npz", A) # test ratings dictionary A_test = lil_matrix((N, M)) print("Calling: update_test") count = 0 def update_test(row): global count count += 1 if count % 100000 == 0: print("processed: %.3f" % (float(count)/len(df_test))) i = int(row.userId) j = int(row.movie_idx) A_test[i,j] = row.rating df_test.apply(update_test, axis=1) A_test = A_test.tocsr() mask_test = (A_test > 0) save_npz("Atest.npz", A_test) ================================================ FILE: recommenders/preprocess_shrink.py ================================================ # https://udemy.com/recommender-systems # https://deeplearningcourses.com/recommender-systems from __future__ import print_function, division from builtins import range, input # Note: you may need to update your version of future # sudo pip install -U future import pickle import numpy as np import pandas as pd from collections import Counter # load in the data # https://www.kaggle.com/grouplens/movielens-20m-dataset df = pd.read_csv('../large_files/movielens-20m-dataset/edited_rating.csv') print("original dataframe size:", len(df)) N = df.userId.max() + 1 # number of users M = df.movie_idx.max() + 1 # number of movies user_ids_count = Counter(df.userId) movie_ids_count = Counter(df.movie_idx) # number of users and movies we would like to keep n = 10000 m = 2000 user_ids = [u for u, c in user_ids_count.most_common(n)] movie_ids = [m for m, c in movie_ids_count.most_common(m)] # make a copy, otherwise ids won't be overwritten df_small = df[df.userId.isin(user_ids) & df.movie_idx.isin(movie_ids)].copy() # need to remake user ids and movie ids since they are no longer sequential new_user_id_map = {} i = 0 for old in user_ids: new_user_id_map[old] = i i += 1 print("i:", i) new_movie_id_map = {} j = 0 for old in movie_ids: new_movie_id_map[old] = j j += 1 print("j:", j) print("Setting new ids") df_small.loc[:, 'userId'] = df_small.apply(lambda row: new_user_id_map[row.userId], axis=1) df_small.loc[:, 'movie_idx'] = df_small.apply(lambda row: new_movie_id_map[row.movie_idx], axis=1) # df_small.drop(columns=['userId', 'movie_idx']) # df_small.rename(index=str, columns={'new_userId': 'userId', 'new_movie_idx': 'movie_idx'}) print("max user id:", df_small.userId.max()) print("max movie id:", df_small.movie_idx.max()) print("small dataframe size:", len(df_small)) df_small.to_csv('../large_files/movielens-20m-dataset/small_rating.csv', index=False) ================================================ FILE: recommenders/rbm_tf_k.py ================================================ # https://udemy.com/recommender-systems # https://deeplearningcourses.com/recommender-systems from __future__ import print_function, division from builtins import range # Note: you may need to update your version of future # sudo pip install -U future import numpy as np import tensorflow as tf import matplotlib.pyplot as plt from sklearn.utils import shuffle import pandas as pd from scipy.sparse import lil_matrix, csr_matrix, save_npz, load_npz from datetime import datetime if tf.__version__.startswith('2'): tf.compat.v1.disable_eager_execution() # is it possible to one-hot encode the data prior to feeding it # into the neural network, so that we don't have to do it on the fly? # yes, but: # 1) scipy sparse doesn't support N-D matrices # 2) you can use the 'sparse' standalone package, but it takes very long # and you will run out of RAM def one_hot_encode(X, K): # input is N x D # output is N x D x K N, D = X.shape Y = np.zeros((N, D, K)) for n, d in zip(*X.nonzero()): # 0.5...5 --> 1..10 --> 0..9 k = int(X[n,d]*2 - 1) Y[n,d,k] = 1 return Y def one_hot_mask(X, K): # input is N x D # output is N x D x K N, D = X.shape Y = np.zeros((N, D, K)) # if X[n,d] == 0, there's a missing rating # so the mask should be all zeros # else, it should be all ones for n, d in zip(*X.nonzero()): Y[n,d,:] = 1 return Y one_to_ten = np.arange(10) + 1 # [1, 2, 3, ..., 10] def convert_probs_to_ratings(probs): # probs is N x D x K # output is N x D matrix of predicted ratings # N, D, K = probs.shape # out = np.zeros((N, D)) # each predicted rating is a weighted average using the probabilities # for n in range(N): # for d in range(D): # out[n,d] = probs[n,d].dot(one_to_ten) / 2 # return out return probs.dot(one_to_ten) / 2 def dot1(V, W): # V is N x D x K (batch of visible units) # W is D x K x M (weights) # returns N x M (hidden layer size) return tf.tensordot(V, W, axes=[[1,2], [0,1]]) def dot2(H, W): # H is N x M (batch of hiddens) # W is D x K x M (weights transposed) # returns N x D x K (visible) return tf.tensordot(H, W, axes=[[1], [2]]) class RBM(object): def __init__(self, D, M, K): self.D = D # input feature size self.M = M # hidden size self.K = K # number of ratings self.build(D, M, K) def build(self, D, M, K): # params self.W = tf.Variable(tf.random.normal(shape=(D, K, M)) * np.sqrt(2.0 / M)) self.c = tf.Variable(np.zeros(M).astype(np.float32)) self.b = tf.Variable(np.zeros((D, K)).astype(np.float32)) # data self.X_in = tf.compat.v1.placeholder(tf.float32, shape=(None, D, K)) self.mask = tf.compat.v1.placeholder(tf.float32, shape=(None, D, K)) # conditional probabilities # NOTE: tf.contrib.distributions.Bernoulli API has changed in Tensorflow v1.2 V = self.X_in p_h_given_v = tf.nn.sigmoid(dot1(V, self.W) + self.c) self.p_h_given_v = p_h_given_v # save for later # draw a sample from p(h | v) r = tf.random.uniform(shape=tf.shape(input=p_h_given_v)) H = tf.cast(r < p_h_given_v, dtype=tf.float32) # draw a sample from p(v | h) # note: we don't have to actually do the softmax logits = dot2(H, self.W) + self.b cdist = tf.compat.v1.distributions.Categorical(logits=logits) X_sample = cdist.sample() # shape is (N, D) X_sample = tf.one_hot(X_sample, depth=K) # turn it into (N, D, K) X_sample = X_sample * self.mask # missing ratings shouldn't contribute to objective # build the objective objective = tf.reduce_mean(input_tensor=self.free_energy(self.X_in)) - tf.reduce_mean(input_tensor=self.free_energy(X_sample)) self.train_op = tf.compat.v1.train.AdamOptimizer(1e-2).minimize(objective) # self.train_op = tf.train.GradientDescentOptimizer(1e-3).minimize(objective) # build the cost # we won't use this to optimize the model parameters # just to observe what happens during training logits = self.forward_logits(self.X_in) self.cost = tf.reduce_mean( input_tensor=tf.nn.softmax_cross_entropy_with_logits( labels=tf.stop_gradient(self.X_in), logits=logits, ) ) # to get the output self.output_visible = self.forward_output(self.X_in) initop = tf.compat.v1.global_variables_initializer() self.session = tf.compat.v1.Session() self.session.run(initop) def fit(self, X, mask, X_test, mask_test, epochs=10, batch_sz=256, show_fig=True): N, D = X.shape n_batches = N // batch_sz costs = [] test_costs = [] for i in range(epochs): t0 = datetime.now() print("epoch:", i) X, mask, X_test, mask_test = shuffle(X, mask, X_test, mask_test) # everything has to be shuffled accordingly for j in range(n_batches): x = X[j*batch_sz:(j*batch_sz + batch_sz)].toarray() m = mask[j*batch_sz:(j*batch_sz + batch_sz)].toarray() # both visible units and mask have to be in one-hot form # N x D --> N x D x K batch_one_hot = one_hot_encode(x, self.K) m = one_hot_mask(m, self.K) _, c = self.session.run( (self.train_op, self.cost), feed_dict={self.X_in: batch_one_hot, self.mask: m} ) if j % 100 == 0: print("j / n_batches:", j, "/", n_batches, "cost:", c) print("duration:", datetime.now() - t0) # calculate the true train and test cost t0 = datetime.now() sse = 0 test_sse = 0 n = 0 test_n = 0 for j in range(n_batches): x = X[j*batch_sz:(j*batch_sz + batch_sz)].toarray() m = mask[j*batch_sz:(j*batch_sz + batch_sz)].toarray() # only visible input has to be in one-hot form xoh = one_hot_encode(x, self.K) probs = self.get_visible(xoh) xhat = convert_probs_to_ratings(probs) sse += (m * (xhat - x)*(xhat - x)).sum() n += m.sum() # the test PREDICTIONS come from the train data! # X_test and mask_test are only used for targets xt = X_test[j*batch_sz:(j*batch_sz + batch_sz)].toarray() mt = mask_test[j*batch_sz:(j*batch_sz + batch_sz)].toarray() test_sse += (mt * (xhat - xt) * (xhat - xt)).sum() test_n += mt.sum() c = sse/n ct = test_sse/test_n print("train mse:", c) print("test mse:", ct) print("calculate cost duration:", datetime.now() - t0) costs.append(c) test_costs.append(ct) if show_fig: plt.plot(costs, label='train mse') plt.plot(test_costs, label='test mse') plt.legend() plt.show() def free_energy(self, V): first_term = -tf.reduce_sum(input_tensor=dot1(V, self.b)) second_term = -tf.reduce_sum( # tf.log(1 + tf.exp(tf.matmul(V, self.W) + self.c)), input_tensor=tf.nn.softplus(dot1(V, self.W) + self.c), axis=1 ) return first_term + second_term def forward_hidden(self, X): return tf.nn.sigmoid(dot1(X, self.W) + self.c) def forward_logits(self, X): Z = self.forward_hidden(X) return dot2(Z, self.W) + self.b def forward_output(self, X): return tf.nn.softmax(self.forward_logits(X)) def transform(self, X): # accepts and returns a real numpy array # unlike forward_hidden and forward_output # which deal with tensorflow variables return self.session.run(self.p_h_given_v, feed_dict={self.X_in: X}) def get_visible(self, X): return self.session.run(self.output_visible, feed_dict={self.X_in: X}) def main(): A = load_npz("Atrain.npz") A_test = load_npz("Atest.npz") mask = (A > 0) * 1.0 mask_test = (A_test > 0) * 1.0 N, M = A.shape rbm = RBM(M, 50, 10) rbm.fit(A, mask, A_test, mask_test) if __name__ == '__main__': main() ================================================ FILE: recommenders/rbm_tf_k_faster.py ================================================ # https://udemy.com/recommender-systems # https://deeplearningcourses.com/recommender-systems from __future__ import print_function, division from builtins import range # Note: you may need to update your version of future # sudo pip install -U future import numpy as np import tensorflow as tf import matplotlib.pyplot as plt from sklearn.utils import shuffle import pandas as pd from scipy.sparse import lil_matrix, csr_matrix, save_npz, load_npz from datetime import datetime if tf.__version__.startswith('2'): tf.compat.v1.disable_eager_execution() def dot1(V, W): # V is N x D x K (batch of visible units) # W is D x K x M (weights) # returns N x M (hidden layer size) return tf.tensordot(V, W, axes=[[1,2], [0,1]]) def dot2(H, W): # H is N x M (batch of hiddens) # W is D x K x M (weights transposed) # returns N x D x K (visible) return tf.tensordot(H, W, axes=[[1], [2]]) class RBM(object): def __init__(self, D, M, K): self.D = D # input feature size self.M = M # hidden size self.K = K # number of ratings self.build(D, M, K) def build(self, D, M, K): # params self.W = tf.Variable(tf.random.normal(shape=(D, K, M)) * np.sqrt(2.0 / M)) self.c = tf.Variable(np.zeros(M).astype(np.float32)) self.b = tf.Variable(np.zeros((D, K)).astype(np.float32)) # data self.X_in = tf.compat.v1.placeholder(tf.float32, shape=(None, D)) # one hot encode X # first, make each rating an int X = tf.cast(self.X_in * 2 - 1, tf.int32) X = tf.one_hot(X, K) # conditional probabilities # NOTE: tf.contrib.distributions.Bernoulli API has changed in Tensorflow v1.2 V = X p_h_given_v = tf.nn.sigmoid(dot1(V, self.W) + self.c) self.p_h_given_v = p_h_given_v # save for later # draw a sample from p(h | v) r = tf.random.uniform(shape=tf.shape(input=p_h_given_v)) H = tf.cast(r < p_h_given_v, dtype=tf.float32) # draw a sample from p(v | h) # note: we don't have to actually do the softmax logits = dot2(H, self.W) + self.b cdist = tf.compat.v1.distributions.Categorical(logits=logits) X_sample = cdist.sample() # shape is (N, D) X_sample = tf.one_hot(X_sample, depth=K) # turn it into (N, D, K) # mask X_sample to remove missing ratings mask2d = tf.cast(self.X_in > 0, tf.float32) mask3d = tf.stack([mask2d]*K, axis=-1) # repeat K times in last dimension X_sample = X_sample * mask3d # build the objective objective = tf.reduce_mean(input_tensor=self.free_energy(X)) - tf.reduce_mean(input_tensor=self.free_energy(X_sample)) self.train_op = tf.compat.v1.train.AdamOptimizer(1e-2).minimize(objective) # self.train_op = tf.train.GradientDescentOptimizer(1e-3).minimize(objective) # build the cost # we won't use this to optimize the model parameters # just to observe what happens during training logits = self.forward_logits(X) self.cost = tf.reduce_mean( input_tensor=tf.nn.softmax_cross_entropy_with_logits( labels=tf.stop_gradient(X), logits=logits, ) ) # to get the output self.output_visible = self.forward_output(X) # for calculating SSE self.one_to_ten = tf.constant((np.arange(10) + 1).astype(np.float32) / 2) self.pred = tf.tensordot(self.output_visible, self.one_to_ten, axes=[[2], [0]]) mask = tf.cast(self.X_in > 0, tf.float32) se = mask * (self.X_in - self.pred) * (self.X_in - self.pred) self.sse = tf.reduce_sum(input_tensor=se) # test SSE self.X_test = tf.compat.v1.placeholder(tf.float32, shape=(None, D)) mask = tf.cast(self.X_test > 0, tf.float32) tse = mask * (self.X_test - self.pred) * (self.X_test - self.pred) self.tsse = tf.reduce_sum(input_tensor=tse) initop = tf.compat.v1.global_variables_initializer() self.session = tf.compat.v1.Session() self.session.run(initop) def fit(self, X, X_test, epochs=10, batch_sz=256, show_fig=True): N, D = X.shape n_batches = N // batch_sz costs = [] test_costs = [] for i in range(epochs): t0 = datetime.now() print("epoch:", i) X, X_test = shuffle(X, X_test) # everything has to be shuffled accordingly for j in range(n_batches): x = X[j*batch_sz:(j*batch_sz + batch_sz)].toarray() _, c = self.session.run( (self.train_op, self.cost), feed_dict={self.X_in: x} ) if j % 100 == 0: print("j / n_batches:", j, "/", n_batches, "cost:", c) print("duration:", datetime.now() - t0) # calculate the true train and test cost t0 = datetime.now() sse = 0 test_sse = 0 n = 0 test_n = 0 for j in range(n_batches): x = X[j*batch_sz:(j*batch_sz + batch_sz)].toarray() xt = X_test[j*batch_sz:(j*batch_sz + batch_sz)].toarray() # number of train ratings n += np.count_nonzero(x) # number of test ratings test_n += np.count_nonzero(xt) # use tensorflow to get SSEs sse_j, tsse_j = self.get_sse(x, xt) sse += sse_j test_sse += tsse_j c = sse/n ct = test_sse/test_n print("train mse:", c) print("test mse:", ct) print("calculate cost duration:", datetime.now() - t0) costs.append(c) test_costs.append(ct) if show_fig: plt.plot(costs, label='train mse') plt.plot(test_costs, label='test mse') plt.legend() plt.show() def free_energy(self, V): first_term = -tf.reduce_sum(input_tensor=dot1(V, self.b)) second_term = -tf.reduce_sum( # tf.log(1 + tf.exp(tf.matmul(V, self.W) + self.c)), input_tensor=tf.nn.softplus(dot1(V, self.W) + self.c), axis=1 ) return first_term + second_term def forward_hidden(self, X): return tf.nn.sigmoid(dot1(X, self.W) + self.c) def forward_logits(self, X): Z = self.forward_hidden(X) return dot2(Z, self.W) + self.b def forward_output(self, X): return tf.nn.softmax(self.forward_logits(X)) def transform(self, X): # accepts and returns a real numpy array # unlike forward_hidden and forward_output # which deal with tensorflow variables return self.session.run(self.p_h_given_v, feed_dict={self.X_in: X}) def get_visible(self, X): return self.session.run(self.output_visible, feed_dict={self.X_in: X}) def get_sse(self, X, Xt): return self.session.run( (self.sse, self.tsse), feed_dict={ self.X_in: X, self.X_test: Xt, }) def main(): A = load_npz("Atrain.npz") A_test = load_npz("Atest.npz") N, M = A.shape rbm = RBM(M, 50, 10) rbm.fit(A, A_test) if __name__ == '__main__': main() ================================================ FILE: recommenders/spark.py ================================================ # https://udemy.com/recommender-systems # https://deeplearningcourses.com/recommender-systems ### meant to be pasted into console ### # notes: # you may have trouble with full dataset on just your local machine # if you want to know what's in an RDD, use .take(n), ex: # tmp = p.take(5) # print(tmp) from pyspark.mllib.recommendation import ALS, MatrixFactorizationModel, Rating import os # load in the data data = sc.textFile("../large_files/movielens-20m-dataset/small_rating.csv") # filter out header header = data.first() #extract header data = data.filter(lambda row: row != header) # convert into a sequence of Rating objects ratings = data.map( lambda l: l.split(',') ).map( lambda l: Rating(int(l[0]), int(l[1]), float(l[2])) ) # split into train and test train, test = ratings.randomSplit([0.8, 0.2]) # train the model K = 10 epochs = 10 model = ALS.train(train, K, epochs) # evaluate the model # train x = train.map(lambda p: (p[0], p[1])) p = model.predictAll(x).map(lambda r: ((r[0], r[1]), r[2])) ratesAndPreds = train.map(lambda r: ((r[0], r[1]), r[2])).join(p) # joins on first item: (user_id, movie_id) # each row of result is: ((user_id, movie_id), (rating, prediction)) mse = ratesAndPreds.map(lambda r: (r[1][0] - r[1][1])**2).mean() print("train mse: %s" % mse) # test x = test.map(lambda p: (p[0], p[1])) p = model.predictAll(x).map(lambda r: ((r[0], r[1]), r[2])) ratesAndPreds = test.map(lambda r: ((r[0], r[1]), r[2])).join(p) mse = ratesAndPreds.map(lambda r: (r[1][0] - r[1][1])**2).mean() print("test mse: %s" % mse) ================================================ FILE: recommenders/spark2.py ================================================ # https://udemy.com/recommender-systems # https://deeplearningcourses.com/recommender-systems # notes: # you may have trouble with full dataset on just your local machine # if you want to know what's in an RDD, use .take(n), ex: # tmp = p.take(5) # print(tmp) from pyspark.mllib.recommendation import ALS, MatrixFactorizationModel, Rating from pyspark import SparkContext # increase memory # SparkContext.setSystemProperty('spark.driver.memory', '10g') # SparkContext.setSystemProperty('spark.executor.memory', '10g') sc = SparkContext("local", "Your App Name Here") # load in the data # data = sc.textFile("../large_files/movielens-20m-dataset/small_rating.csv") data = sc.textFile("../large_files/movielens-20m-dataset/rating.csv.gz") # filter out header header = data.first() #extract header data = data.filter(lambda row: row != header) # convert into a sequence of Rating objects ratings = data.map( lambda l: l.split(',') ).map( lambda l: Rating(int(l[0]), int(l[1]), float(l[2])) ) # split into train and test train, test = ratings.randomSplit([0.8, 0.2]) # train the model K = 10 epochs = 10 model = ALS.train(train, K, epochs) # evaluate the model # train x = train.map(lambda p: (p[0], p[1])) p = model.predictAll(x).map(lambda r: ((r[0], r[1]), r[2])) ratesAndPreds = train.map(lambda r: ((r[0], r[1]), r[2])).join(p) # joins on first item: (user_id, movie_id) # each row of result is: ((user_id, movie_id), (rating, prediction)) mse = ratesAndPreds.map(lambda r: (r[1][0] - r[1][1])**2).mean() print("***** train mse: %s *****" % mse) # test x = test.map(lambda p: (p[0], p[1])) p = model.predictAll(x).map(lambda r: ((r[0], r[1]), r[2])) ratesAndPreds = test.map(lambda r: ((r[0], r[1]), r[2])).join(p) mse = ratesAndPreds.map(lambda r: (r[1][0] - r[1][1])**2).mean() print("***** test mse: %s *****" % mse) ================================================ FILE: recommenders/tfidf.py ================================================ import pandas as pd import json from sklearn.feature_extraction.text import TfidfVectorizer from sklearn.metrics.pairwise import cosine_similarity, euclidean_distances # get the data from: https://www.kaggle.com/tmdb/tmdb-movie-metadata # load in the data df = pd.read_csv('../large_files/tmdb_5000_movies.csv') # convert the relevant data for each movie into a single string # to be ingested by TfidfVectorizer def genres_and_keywords_to_string(row): genres = json.loads(row['genres']) genres = ' '.join(''.join(j['name'].split()) for j in genres) keywords = json.loads(row['keywords']) keywords = ' '.join(''.join(j['name'].split()) for j in keywords) return "%s %s" % (genres, keywords) # create a new string representation of each movie df['string'] = df.apply(genres_and_keywords_to_string, axis=1) # create a tf-idf vectorizer object # remove stopwords automatically tfidf = TfidfVectorizer(max_features=2000) # create a data matrix from the overviews X = tfidf.fit_transform(df['string']) # check the shape of X print("X.shape:", X.shape) # generate a mapping from movie title -> index (in df) movie2idx = pd.Series(df.index, index=df['title']) # create a function that generates recommendations def recommend(title): # get the row in the dataframe for this movie idx = movie2idx[title] if type(idx) == pd.Series: idx = idx.iloc[0] # print("idx:", idx) # calculate the pairwise similarities for this movie query = X[idx] scores = cosine_similarity(query, X) # currently the array is 1 x N, make it just a 1-D array scores = scores.flatten() # get the indexes of the highest scoring movies # get the first K recommendations # don't return itself! recommended_idx = (-scores).argsort()[1:6] # return the titles of the recommendations return df['title'].iloc[recommended_idx] print("\nRecommendations for 'Scream 3':") print(recommend('Scream 3')) print("\nRecommendations for 'Mortal Kombat':") print(recommend('Mortal Kombat')) print("\nRecommendations for 'Runaway Bride':") print(recommend('Runaway Bride')) ================================================ FILE: recommenders/userbased.py ================================================ # https://udemy.com/recommender-systems # https://deeplearningcourses.com/recommender-systems from __future__ import print_function, division from builtins import range, input # Note: you may need to update your version of future # sudo pip install -U future import pickle import numpy as np import pandas as pd import matplotlib.pyplot as plt from sklearn.utils import shuffle from datetime import datetime from sortedcontainers import SortedList # load in the data import os if not os.path.exists('user2movie.json') or \ not os.path.exists('movie2user.json') or \ not os.path.exists('usermovie2rating.json') or \ not os.path.exists('usermovie2rating_test.json'): import preprocess2dict with open('user2movie.json', 'rb') as f: user2movie = pickle.load(f) with open('movie2user.json', 'rb') as f: movie2user = pickle.load(f) with open('usermovie2rating.json', 'rb') as f: usermovie2rating = pickle.load(f) with open('usermovie2rating_test.json', 'rb') as f: usermovie2rating_test = pickle.load(f) N = np.max(list(user2movie.keys())) + 1 # the test set may contain movies the train set doesn't have data on m1 = np.max(list(movie2user.keys())) m2 = np.max([m for (u, m), r in usermovie2rating_test.items()]) M = max(m1, m2) + 1 print("N:", N, "M:", M) if N > 10000: print("N =", N, "are you sure you want to continue?") print("Comment out these lines if so...") exit() # to find the user similarities, you have to do O(N^2 * M) calculations! # in the "real-world" you'd want to parallelize this # note: we really only have to do half the calculations, since w_ij is symmetric K = 25 # number of neighbors we'd like to consider limit = 5 # number of common movies users must have in common in order to consider neighbors = [] # store neighbors in this list averages = [] # each user's average rating for later use deviations = [] # each user's deviation for later use for i in range(N): # find the 25 closest users to user i movies_i = user2movie[i] movies_i_set = set(movies_i) # calculate avg and deviation ratings_i = { movie:usermovie2rating[(i, movie)] for movie in movies_i } avg_i = np.mean(list(ratings_i.values())) dev_i = { movie:(rating - avg_i) for movie, rating in ratings_i.items() } dev_i_values = np.array(list(dev_i.values())) sigma_i = np.sqrt(dev_i_values.dot(dev_i_values)) # save these for later use averages.append(avg_i) deviations.append(dev_i) sl = SortedList() for j in range(N): # don't include yourself if j != i: movies_j = user2movie[j] movies_j_set = set(movies_j) common_movies = (movies_i_set & movies_j_set) # intersection if len(common_movies) > limit: # calculate avg and deviation ratings_j = { movie:usermovie2rating[(j, movie)] for movie in movies_j } avg_j = np.mean(list(ratings_j.values())) dev_j = { movie:(rating - avg_j) for movie, rating in ratings_j.items() } dev_j_values = np.array(list(dev_j.values())) sigma_j = np.sqrt(dev_j_values.dot(dev_j_values)) # calculate correlation coefficient numerator = sum(dev_i[m]*dev_j[m] for m in common_movies) w_ij = numerator / (sigma_i * sigma_j) # insert into sorted list and truncate # negate weight, because list is sorted ascending # maximum value (1) is "closest" sl.add((-w_ij, j)) if len(sl) > K: del sl[-1] # store the neighbors neighbors.append(sl) # print out useful things if i % 1 == 0: print(i) # using neighbors, calculate train and test MSE def predict(i, m): # calculate the weighted sum of deviations numerator = 0 denominator = 0 for neg_w, j in neighbors[i]: # remember, the weight is stored as its negative # so the negative of the negative weight is the positive weight try: numerator += -neg_w * deviations[j][m] denominator += abs(neg_w) except KeyError: # neighbor may not have rated the same movie # don't want to do dictionary lookup twice # so just throw exception pass if denominator == 0: prediction = averages[i] else: prediction = numerator / denominator + averages[i] prediction = min(5, prediction) prediction = max(0.5, prediction) # min rating is 0.5 return prediction train_predictions = [] train_targets = [] for (i, m), target in usermovie2rating.items(): # calculate the prediction for this movie prediction = predict(i, m) # save the prediction and target train_predictions.append(prediction) train_targets.append(target) test_predictions = [] test_targets = [] # same thing for test set for (i, m), target in usermovie2rating_test.items(): # calculate the prediction for this movie prediction = predict(i, m) # save the prediction and target test_predictions.append(prediction) test_targets.append(target) # calculate accuracy def mse(p, t): p = np.array(p) t = np.array(t) return np.mean((p - t)**2) print('train mse:', mse(train_predictions, train_targets)) print('test mse:', mse(test_predictions, test_targets)) ================================================ FILE: rl/approx_control.py ================================================ # https://deeplearningcourses.com/c/artificial-intelligence-reinforcement-learning-in-python # https://www.udemy.com/artificial-intelligence-reinforcement-learning-in-python from __future__ import print_function, division from builtins import range # Note: you may need to update your version of future # sudo pip install -U future import numpy as np import pandas as pd import matplotlib.pyplot as plt from grid_world import standard_grid, negative_grid from iterative_policy_evaluation import print_values, print_policy from sklearn.kernel_approximation import Nystroem, RBFSampler GAMMA = 0.9 ALPHA = 0.1 ALL_POSSIBLE_ACTIONS = ('U', 'D', 'L', 'R') ACTION2INT = {a: i for i, a in enumerate(ALL_POSSIBLE_ACTIONS)} INT2ONEHOT = np.eye(len(ALL_POSSIBLE_ACTIONS)) def epsilon_greedy(model, s, eps=0.1): # we'll use epsilon-soft to ensure all states are visited # what happens if you don't do this? i.e. eps=0 p = np.random.random() if p < (1 - eps): values = model.predict_all_actions(s) return ALL_POSSIBLE_ACTIONS[np.argmax(values)] else: return np.random.choice(ALL_POSSIBLE_ACTIONS) def one_hot(k): return INT2ONEHOT[k] def merge_state_action(s, a): ai = one_hot(ACTION2INT[a]) return np.concatenate((s, ai)) def gather_samples(grid, n_episodes=1000): samples = [] for _ in range(n_episodes): s = grid.reset() while not grid.game_over(): a = np.random.choice(ALL_POSSIBLE_ACTIONS) sa = merge_state_action(s, a) samples.append(sa) r = grid.move(a) s = grid.current_state() return samples class Model: def __init__(self, grid): # fit the featurizer to data samples = gather_samples(grid) # self.featurizer = Nystroem() self.featurizer = RBFSampler() self.featurizer.fit(samples) dims = self.featurizer.n_components # initialize linear model weights self.w = np.zeros(dims) def predict(self, s, a): sa = merge_state_action(s, a) x = self.featurizer.transform([sa])[0] return x @ self.w def predict_all_actions(self, s): return [self.predict(s, a) for a in ALL_POSSIBLE_ACTIONS] def grad(self, s, a): sa = merge_state_action(s, a) x = self.featurizer.transform([sa])[0] return x if __name__ == '__main__': # use the standard grid again (0 for every step) so that we can compare # to iterative policy evaluation # grid = standard_grid() grid = negative_grid(step_cost=-0.1) # print rewards print("rewards:") print_values(grid.rewards, grid) model = Model(grid) reward_per_episode = [] state_visit_count = {} # repeat until convergence n_episodes = 20000 for it in range(n_episodes): if (it + 1) % 100 == 0: print(it + 1) s = grid.reset() state_visit_count[s] = state_visit_count.get(s, 0) + 1 episode_reward = 0 while not grid.game_over(): a = epsilon_greedy(model, s) r = grid.move(a) s2 = grid.current_state() state_visit_count[s2] = state_visit_count.get(s2, 0) + 1 # get the target if grid.game_over(): target = r else: values = model.predict_all_actions(s2) target = r + GAMMA * np.max(values) # update the model g = model.grad(s, a) err = target - model.predict(s, a) model.w += ALPHA * err * g # accumulate reward episode_reward += r # update state s = s2 reward_per_episode.append(episode_reward) plt.plot(reward_per_episode) plt.title("Reward per episode") plt.show() # obtain V* and pi* V = {} greedy_policy = {} states = grid.all_states() for s in states: if s in grid.actions: values = model.predict_all_actions(s) V[s] = np.max(values) greedy_policy[s] = ALL_POSSIBLE_ACTIONS[np.argmax(values)] else: # terminal state or state we can't otherwise get to V[s] = 0 print("values:") print_values(V, grid) print("policy:") print_policy(greedy_policy, grid) print("state_visit_count:") state_sample_count_arr = np.zeros((grid.rows, grid.cols)) for i in range(grid.rows): for j in range(grid.cols): if (i, j) in state_visit_count: state_sample_count_arr[i,j] = state_visit_count[(i, j)] df = pd.DataFrame(state_sample_count_arr) print(df) ================================================ FILE: rl/approx_prediction.py ================================================ # https://deeplearningcourses.com/c/artificial-intelligence-reinforcement-learning-in-python # https://www.udemy.com/artificial-intelligence-reinforcement-learning-in-python from __future__ import print_function, division from builtins import range # Note: you may need to update your version of future # sudo pip install -U future import numpy as np import matplotlib.pyplot as plt from grid_world import standard_grid, negative_grid from iterative_policy_evaluation import print_values, print_policy from sklearn.kernel_approximation import Nystroem, RBFSampler GAMMA = 0.9 ALPHA = 0.01 ALL_POSSIBLE_ACTIONS = ('U', 'D', 'L', 'R') def epsilon_greedy(greedy, s, eps=0.1): # we'll use epsilon-soft to ensure all states are visited # what happens if you don't do this? i.e. eps=0 p = np.random.random() if p < (1 - eps): return greedy[s] else: return np.random.choice(ALL_POSSIBLE_ACTIONS) def gather_samples(grid, n_episodes=10000): samples = [] for _ in range(n_episodes): s = grid.reset() samples.append(s) while not grid.game_over(): a = np.random.choice(ALL_POSSIBLE_ACTIONS) r = grid.move(a) s = grid.current_state() samples.append(s) return samples class Model: def __init__(self, grid): # fit the featurizer to data samples = gather_samples(grid) # self.featurizer = Nystroem() self.featurizer = RBFSampler() self.featurizer.fit(samples) dims = self.featurizer.n_components # initialize linear model weights self.w = np.zeros(dims) def predict(self, s): x = self.featurizer.transform([s])[0] return x @ self.w def grad(self, s): x = self.featurizer.transform([s])[0] return x if __name__ == '__main__': # use the standard grid again (0 for every step) so that we can compare # to iterative policy evaluation grid = standard_grid() # print rewards print("rewards:") print_values(grid.rewards, grid) # state -> action greedy_policy = { (2, 0): 'U', (1, 0): 'U', (0, 0): 'R', (0, 1): 'R', (0, 2): 'R', (1, 2): 'R', (2, 1): 'R', (2, 2): 'R', (2, 3): 'U', } model = Model(grid) mse_per_episode = [] # repeat until convergence n_episodes = 10000 for it in range(n_episodes): if (it + 1) % 100 == 0: print(it + 1) s = grid.reset() Vs = model.predict(s) n_steps = 0 episode_err = 0 while not grid.game_over(): a = epsilon_greedy(greedy_policy, s) r = grid.move(a) s2 = grid.current_state() # get the target if grid.is_terminal(s2): target = r else: Vs2 = model.predict(s2) target = r + GAMMA * Vs2 # update the model g = model.grad(s) err = target - Vs model.w += ALPHA * err * g # accumulate error n_steps += 1 episode_err += err*err # update state s = s2 Vs = Vs2 mse = episode_err / n_steps mse_per_episode.append(mse) plt.plot(mse_per_episode) plt.title("MSE per episode") plt.show() # obtain predicted values V = {} states = grid.all_states() for s in states: if s in grid.actions: V[s] = model.predict(s) else: # terminal state or state we can't otherwise get to V[s] = 0 print("values:") print_values(V, grid) print("policy:") print_policy(greedy_policy, grid) ================================================ FILE: rl/bayesian_bandit.py ================================================ # From the course: Bayesin Machine Learning in Python: A/B Testing # https://deeplearningcourses.com/c/bayesian-machine-learning-in-python-ab-testing # https://www.udemy.com/bayesian-machine-learning-in-python-ab-testing from __future__ import print_function, division from builtins import range # Note: you may need to update your version of future # sudo pip install -U future import matplotlib.pyplot as plt import numpy as np from scipy.stats import beta # np.random.seed(2) NUM_TRIALS = 2000 BANDIT_PROBABILITIES = [0.2, 0.5, 0.75] class Bandit: def __init__(self, p): self.p = p self.a = 1 self.b = 1 self.N = 0 # for information only def pull(self): return np.random.random() < self.p def sample(self): return np.random.beta(self.a, self.b) def update(self, x): self.a += x self.b += 1 - x self.N += 1 def plot(bandits, trial): x = np.linspace(0, 1, 200) for b in bandits: y = beta.pdf(x, b.a, b.b) plt.plot(x, y, label=f"real p: {b.p:.4f}, win rate = {b.a - 1}/{b.N}") plt.title(f"Bandit distributions after {trial} trials") plt.legend() plt.show() def experiment(): bandits = [Bandit(p) for p in BANDIT_PROBABILITIES] sample_points = [5,10,20,50,100,200,500,1000,1500,1999] rewards = np.zeros(NUM_TRIALS) for i in range(NUM_TRIALS): # Thompson sampling j = np.argmax([b.sample() for b in bandits]) # plot the posteriors if i in sample_points: plot(bandits, i) # pull the arm for the bandit with the largest sample x = bandits[j].pull() # update rewards rewards[i] = x # update the distribution for the bandit whose arm we just pulled bandits[j].update(x) # print total reward print("total reward earned:", rewards.sum()) print("overall win rate:", rewards.sum() / NUM_TRIALS) print("num times selected each bandit:", [b.N for b in bandits]) if __name__ == "__main__": experiment() ================================================ FILE: rl/bayesian_normal.py ================================================ # https://deeplearningcourses.com/c/artificial-intelligence-reinforcement-learning-in-python # https://www.udemy.com/artificial-intelligence-reinforcement-learning-in-python from __future__ import print_function, division from builtins import range # Note: you may need to update your version of future # sudo pip install -U future import numpy as np import matplotlib.pyplot as plt from scipy.stats import norm np.random.seed(1) NUM_TRIALS = 2000 BANDIT_MEANS = [1, 2, 3] class Bandit: def __init__(self, true_mean): self.true_mean = true_mean # parameters for mu - prior is N(0,1) self.m = 0 self.lambda_ = 1 self.tau = 1 self.N = 0 def pull(self): return np.random.randn() / np.sqrt(self.tau) + self.true_mean def sample(self): return np.random.randn() / np.sqrt(self.lambda_) + self.m def update(self, x): self.m = (self.tau * x + self.lambda_ * self.m) / (self.tau + self.lambda_) self.lambda_ += self.tau self.N += 1 def plot(bandits, trial): x = np.linspace(-3, 6, 200) for b in bandits: y = norm.pdf(x, b.m, np.sqrt(1. / b.lambda_)) plt.plot(x, y, label=f"real mean: {b.true_mean:.4f}, num plays: {b.N}") plt.title(f"Bandit distributions after {trial} trials") plt.legend() plt.show() def run_experiment(): bandits = [Bandit(m) for m in BANDIT_MEANS] sample_points = [5,10,20,50,100,200,500,1000,1500,1999] rewards = np.empty(NUM_TRIALS) for i in range(NUM_TRIALS): # Thompson sampling j = np.argmax([b.sample() for b in bandits]) # plot the posteriors if i in sample_points: plot(bandits, i) # pull the arm for the bandit with the largest sample x = bandits[j].pull() # update the distribution for the bandit whose arm we just pulled bandits[j].update(x) # update rewards rewards[i] = x cumulative_average = np.cumsum(rewards) / (np.arange(NUM_TRIALS) + 1) # plot moving average ctr plt.plot(cumulative_average) for m in BANDIT_MEANS: plt.plot(np.ones(NUM_TRIALS)*m) plt.show() return cumulative_average if __name__ == '__main__': run_experiment() ================================================ FILE: rl/bayesian_starter.py ================================================ # From the course: Bayesin Machine Learning in Python: A/B Testing # https://deeplearningcourses.com/c/bayesian-machine-learning-in-python-ab-testing # https://www.udemy.com/bayesian-machine-learning-in-python-ab-testing from __future__ import print_function, division from builtins import range # Note: you may need to update your version of future # sudo pip install -U future import matplotlib.pyplot as plt import numpy as np from scipy.stats import beta # np.random.seed(2) NUM_TRIALS = 2000 BANDIT_PROBABILITIES = [0.2, 0.5, 0.75] class Bandit: def __init__(self, p): self.p = p self.a = # TODO self.b = # TODO self.N = 0 # for information only def pull(self): return np.random.random() < self.p def sample(self): return # TODO - draw a sample from Beta(a, b) def update(self, x): self.a = # TODO self.b = # TODO self.N += 1 def plot(bandits, trial): x = np.linspace(0, 1, 200) for b in bandits: y = beta.pdf(x, b.a, b.b) plt.plot(x, y, label=f"real p: {b.p:.4f}, win rate = {b.a - 1}/{b.N}") plt.title(f"Bandit distributions after {trial} trials") plt.legend() plt.show() def experiment(): bandits = [Bandit(p) for p in BANDIT_PROBABILITIES] sample_points = [5,10,20,50,100,200,500,1000,1500,1999] rewards = np.zeros(NUM_TRIALS) for i in range(NUM_TRIALS): # Thompson sampling j = # TODO # plot the posteriors if i in sample_points: plot(bandits, i) # pull the arm for the bandit with the largest sample x = bandits[j].pull() # update rewards rewards[i] = x # update the distribution for the bandit whose arm we just pulled bandits[j].update(x) # print total reward print("total reward earned:", rewards.sum()) print("overall win rate:", rewards.sum() / NUM_TRIALS) print("num times selected each bandit:", [b.N for b in bandits]) if __name__ == "__main__": experiment() ================================================ FILE: rl/cartpole.py ================================================ # https://deeplearningcourses.com/c/artificial-intelligence-reinforcement-learning-in-python # https://www.udemy.com/artificial-intelligence-reinforcement-learning-in-python from __future__ import print_function, division from builtins import range # Note: you may need to update your version of future # sudo pip install -U future import gym import numpy as np import matplotlib.pyplot as plt from sklearn.kernel_approximation import RBFSampler GAMMA = 0.99 ALPHA = 0.1 def epsilon_greedy(model, s, eps=0.1): # we'll use epsilon-soft to ensure all states are visited # what happens if you don't do this? i.e. eps=0 p = np.random.random() if p < (1 - eps): values = model.predict_all_actions(s) return np.argmax(values) else: return model.env.action_space.sample() def gather_samples(env, n_episodes=10000): samples = [] for _ in range(n_episodes): s, info = env.reset() done = False truncated = False while not (done or truncated): a = env.action_space.sample() sa = np.concatenate((s, [a])) samples.append(sa) s, r, done, truncated, info = env.step(a) return samples class Model: def __init__(self, env): # fit the featurizer to data self.env = env samples = gather_samples(env) self.featurizer = RBFSampler() self.featurizer.fit(samples) dims = self.featurizer.n_components # initialize linear model weights self.w = np.zeros(dims) def predict(self, s, a): sa = np.concatenate((s, [a])) x = self.featurizer.transform([sa])[0] return x @ self.w def predict_all_actions(self, s): return [self.predict(s, a) for a in range(self.env.action_space.n)] def grad(self, s, a): sa = np.concatenate((s, [a])) x = self.featurizer.transform([sa])[0] return x def test_agent(model, env, n_episodes=20): reward_per_episode = np.zeros(n_episodes) for it in range(n_episodes): done = False truncated = False episode_reward = 0 s, info = env.reset() while not (done or truncated): a = epsilon_greedy(model, s, eps=0) s, r, done, truncated, info = env.step(a) episode_reward += r reward_per_episode[it] = episode_reward return np.mean(reward_per_episode) def watch_agent(model, env, eps): done = False truncated = False episode_reward = 0 s, info = env.reset() while not (done or truncated): a = epsilon_greedy(model, s, eps=eps) s, r, done, truncated, info = env.step(a) episode_reward += r print("Episode reward:", episode_reward) if __name__ == '__main__': # instantiate environment env = gym.make("CartPole-v1", render_mode="rgb_array") model = Model(env) reward_per_episode = [] # watch untrained agent watch_agent(model, env, eps=0) # repeat until convergence n_episodes = 1500 for it in range(n_episodes): s, info = env.reset() episode_reward = 0 done = False truncated = False while not (done or truncated): a = epsilon_greedy(model, s) s2, r, done, truncated, info = env.step(a) # get the target if done: target = r else: values = model.predict_all_actions(s2) target = r + GAMMA * np.max(values) # update the model g = model.grad(s, a) err = target - model.predict(s, a) model.w += ALPHA * err * g # accumulate reward episode_reward += r # update state s = s2 if (it + 1) % 50 == 0: print(f"Episode: {it + 1}, Reward: {episode_reward}") # early exit if it > 20 and np.mean(reward_per_episode[-20:]) == 200: print("Early exit") break reward_per_episode.append(episode_reward) # test trained agent test_reward = test_agent(model, env) print(f"Average test reward: {test_reward}") plt.plot(reward_per_episode) plt.title("Reward per episode") plt.show() # watch trained agent env = gym.make("CartPole-v1", render_mode="human") watch_agent(model, env, eps=0) ================================================ FILE: rl/cartpole_gym0.19.py ================================================ # https://deeplearningcourses.com/c/artificial-intelligence-reinforcement-learning-in-python # https://www.udemy.com/artificial-intelligence-reinforcement-learning-in-python from __future__ import print_function, division from builtins import range # Note: you may need to update your version of future # sudo pip install -U future import gym import numpy as np import matplotlib.pyplot as plt from sklearn.kernel_approximation import RBFSampler GAMMA = 0.99 ALPHA = 0.1 def epsilon_greedy(model, s, eps=0.1): # we'll use epsilon-soft to ensure all states are visited # what happens if you don't do this? i.e. eps=0 p = np.random.random() if p < (1 - eps): values = model.predict_all_actions(s) return np.argmax(values) else: return model.env.action_space.sample() def gather_samples(env, n_episodes=10000): samples = [] for _ in range(n_episodes): s = env.reset() done = False while not done: a = env.action_space.sample() sa = np.concatenate((s, [a])) samples.append(sa) s, r, done, info = env.step(a) return samples class Model: def __init__(self, env): # fit the featurizer to data self.env = env samples = gather_samples(env) self.featurizer = RBFSampler() self.featurizer.fit(samples) dims = self.featurizer.n_components # initialize linear model weights self.w = np.zeros(dims) def predict(self, s, a): sa = np.concatenate((s, [a])) x = self.featurizer.transform([sa])[0] return x @ self.w def predict_all_actions(self, s): return [self.predict(s, a) for a in range(self.env.action_space.n)] def grad(self, s, a): sa = np.concatenate((s, [a])) x = self.featurizer.transform([sa])[0] return x def test_agent(model, env, n_episodes=20): reward_per_episode = np.zeros(n_episodes) for it in range(n_episodes): done = False episode_reward = 0 s = env.reset() while not done: a = epsilon_greedy(model, s, eps=0) s, r, done, info = env.step(a) episode_reward += r reward_per_episode[it] = episode_reward return np.mean(reward_per_episode) def watch_agent(model, env, eps): done = False episode_reward = 0 s = env.reset() while not done: a = epsilon_greedy(model, s, eps=eps) s, r, done, info = env.step(a) env.render() episode_reward += r print("Episode reward:", episode_reward) if __name__ == '__main__': # instantiate environment env = gym.make("CartPole-v0") model = Model(env) reward_per_episode = [] # watch untrained agent watch_agent(model, env, eps=0) # repeat until convergence n_episodes = 1500 for it in range(n_episodes): s = env.reset() episode_reward = 0 done = False while not done: a = epsilon_greedy(model, s) s2, r, done, info = env.step(a) # get the target if done: target = r else: values = model.predict_all_actions(s2) target = r + GAMMA * np.max(values) # update the model g = model.grad(s, a) err = target - model.predict(s, a) model.w += ALPHA * err * g # accumulate reward episode_reward += r # update state s = s2 if (it + 1) % 50 == 0: print(f"Episode: {it + 1}, Reward: {episode_reward}") # early exit if it > 20 and np.mean(reward_per_episode[-20:]) == 200: print("Early exit") break reward_per_episode.append(episode_reward) # test trained agent test_reward = test_agent(model, env) print(f"Average test reward: {test_reward}") plt.plot(reward_per_episode) plt.title("Reward per episode") plt.show() # watch trained agent watch_agent(model, env, eps=0) ================================================ FILE: rl/comparing_epsilons.py ================================================ # https://deeplearningcourses.com/c/artificial-intelligence-reinforcement-learning-in-python # https://www.udemy.com/artificial-intelligence-reinforcement-learning-in-python from __future__ import print_function, division from builtins import range # Note: you may need to update your version of future # sudo pip install -U future import numpy as np import matplotlib.pyplot as plt class Bandit: def __init__(self, m): self.m = m self.mean = 0 self.N = 0 def pull(self): return np.random.randn() + self.m def update(self, x): self.N += 1 self.mean = (1 - 1.0/self.N)*self.mean + 1.0/self.N*x def run_experiment(m1, m2, m3, eps, N): bandits = [Bandit(m1), Bandit(m2), Bandit(m3)] data = np.empty(N) for i in range(N): # epsilon greedy p = np.random.random() if p < eps: j = np.random.choice(3) else: j = np.argmax([b.mean for b in bandits]) x = bandits[j].pull() bandits[j].update(x) # for the plot data[i] = x cumulative_average = np.cumsum(data) / (np.arange(N) + 1) # plot moving average ctr plt.plot(cumulative_average) plt.plot(np.ones(N)*m1) plt.plot(np.ones(N)*m2) plt.plot(np.ones(N)*m3) plt.xscale('log') plt.show() for b in bandits: print(b.mean) return cumulative_average if __name__ == '__main__': c_1 = run_experiment(1.0, 2.0, 3.0, 0.1, 100000) c_05 = run_experiment(1.0, 2.0, 3.0, 0.05, 100000) c_01 = run_experiment(1.0, 2.0, 3.0, 0.01, 100000) # log scale plot plt.plot(c_1, label='eps = 0.1') plt.plot(c_05, label='eps = 0.05') plt.plot(c_01, label='eps = 0.01') plt.legend() plt.xscale('log') plt.show() # linear plot plt.plot(c_1, label='eps = 0.1') plt.plot(c_05, label='eps = 0.05') plt.plot(c_01, label='eps = 0.01') plt.legend() plt.show() ================================================ FILE: rl/comparing_explore_exploit_methods.py ================================================ # https://deeplearningcourses.com/c/artificial-intelligence-reinforcement-learning-in-python # https://www.udemy.com/artificial-intelligence-reinforcement-learning-in-python from __future__ import print_function, division from builtins import range # Note: you may need to update your version of future # sudo pip install -U future import numpy as np import matplotlib.pyplot as plt from comparing_epsilons import Bandit from optimistic_initial_values import run_experiment as run_experiment_oiv from ucb1 import run_experiment as run_experiment_ucb class BayesianBandit: def __init__(self, true_mean): self.true_mean = true_mean # parameters for mu - prior is N(0,1) self.predicted_mean = 0 self.lambda_ = 1 self.sum_x = 0 # for convenience self.tau = 1 def pull(self): return np.random.randn() + self.true_mean def sample(self): return np.random.randn() / np.sqrt(self.lambda_) + self.predicted_mean def update(self, x): self.lambda_ += self.tau self.sum_x += x self.predicted_mean = self.tau*self.sum_x / self.lambda_ def run_experiment_decaying_epsilon(m1, m2, m3, N): bandits = [Bandit(m1), Bandit(m2), Bandit(m3)] data = np.empty(N) for i in range(N): # epsilon greedy p = np.random.random() if p < 1.0/(i+1): j = np.random.choice(3) else: j = np.argmax([b.mean for b in bandits]) x = bandits[j].pull() bandits[j].update(x) # for the plot data[i] = x cumulative_average = np.cumsum(data) / (np.arange(N) + 1) # plot moving average ctr plt.plot(cumulative_average) plt.plot(np.ones(N)*m1) plt.plot(np.ones(N)*m2) plt.plot(np.ones(N)*m3) plt.xscale('log') plt.show() for b in bandits: print(b.mean) return cumulative_average def run_experiment(m1, m2, m3, N): bandits = [BayesianBandit(m1), BayesianBandit(m2), BayesianBandit(m3)] data = np.empty(N) for i in range(N): # optimistic initial values j = np.argmax([b.sample() for b in bandits]) x = bandits[j].pull() bandits[j].update(x) # for the plot data[i] = x cumulative_average = np.cumsum(data) / (np.arange(N) + 1) # plot moving average ctr plt.plot(cumulative_average) plt.plot(np.ones(N)*m1) plt.plot(np.ones(N)*m2) plt.plot(np.ones(N)*m3) plt.xscale('log') plt.show() return cumulative_average if __name__ == '__main__': m1 = 1.0 m2 = 2.0 m3 = 3.0 eps = run_experiment_decaying_epsilon(m1, m2, m3, 100000) oiv = run_experiment_oiv(m1, m2, m3, 100000) ucb = run_experiment_ucb(m1, m2, m3, 100000) bayes = run_experiment(m1, m2, m3, 100000) # log scale plot plt.plot(eps, label='decaying-epsilon-greedy') plt.plot(oiv, label='optimistic') plt.plot(ucb, label='ucb1') plt.plot(bayes, label='bayesian') plt.legend() plt.xscale('log') plt.show() # linear plot plt.plot(eps, label='decaying-epsilon-greedy') plt.plot(oiv, label='optimistic') plt.plot(ucb, label='ucb1') plt.plot(bayes, label='bayesian') plt.legend() plt.show() ================================================ FILE: rl/epsilon_greedy.py ================================================ # From the course: Bayesin Machine Learning in Python: A/B Testing # https://deeplearningcourses.com/c/bayesian-machine-learning-in-python-ab-testing # https://www.udemy.com/bayesian-machine-learning-in-python-ab-testing from __future__ import print_function, division from builtins import range # Note: you may need to update your version of future # sudo pip install -U future import matplotlib.pyplot as plt import numpy as np NUM_TRIALS = 10000 EPS = 0.1 BANDIT_PROBABILITIES = [0.2, 0.5, 0.75] class Bandit: def __init__(self, p): # p: the win rate self.p = p self.p_estimate = 0. self.N = 0. # num samples collected so far def pull(self): # draw a 1 with probability p return np.random.random() < self.p def update(self, x): self.N += 1. self.p_estimate = ((self.N - 1)*self.p_estimate + x) / self.N def experiment(): bandits = [Bandit(p) for p in BANDIT_PROBABILITIES] rewards = np.zeros(NUM_TRIALS) num_times_explored = 0 num_times_exploited = 0 num_optimal = 0 optimal_j = np.argmax([b.p for b in bandits]) print("optimal j:", optimal_j) for i in range(NUM_TRIALS): # use epsilon-greedy to select the next bandit if np.random.random() < EPS: num_times_explored += 1 j = np.random.randint(len(bandits)) else: num_times_exploited += 1 j = np.argmax([b.p_estimate for b in bandits]) if j == optimal_j: num_optimal += 1 # pull the arm for the bandit with the largest sample x = bandits[j].pull() # update rewards log rewards[i] = x # update the distribution for the bandit whose arm we just pulled bandits[j].update(x) # print mean estimates for each bandit for b in bandits: print("mean estimate:", b.p_estimate) # print total reward print("total reward earned:", rewards.sum()) print("overall win rate:", rewards.sum() / NUM_TRIALS) print("num_times_explored:", num_times_explored) print("num_times_exploited:", num_times_exploited) print("num times selected optimal bandit:", num_optimal) # plot the results cumulative_rewards = np.cumsum(rewards) win_rates = cumulative_rewards / (np.arange(NUM_TRIALS) + 1) plt.plot(win_rates) plt.plot(np.ones(NUM_TRIALS)*np.max(BANDIT_PROBABILITIES)) plt.show() if __name__ == "__main__": experiment() ================================================ FILE: rl/epsilon_greedy_starter.py ================================================ # From the course: Bayesin Machine Learning in Python: A/B Testing # https://deeplearningcourses.com/c/bayesian-machine-learning-in-python-ab-testing # https://www.udemy.com/bayesian-machine-learning-in-python-ab-testing from __future__ import print_function, division from builtins import range # Note: you may need to update your version of future # sudo pip install -U future import matplotlib.pyplot as plt import numpy as np NUM_TRIALS = 10000 EPS = 0.1 BANDIT_PROBABILITIES = [0.2, 0.5, 0.75] class Bandit: def __init__(self, p): # p: the win rate self.p = p self.p_estimate = # TODO self.N = # TODO def pull(self): # draw a 1 with probability p return np.random.random() < self.p def update(self, x): self.N = # TODO self.p_estimate = # TODO def experiment(): bandits = [Bandit(p) for p in BANDIT_PROBABILITIES] rewards = np.zeros(NUM_TRIALS) num_times_explored = 0 num_times_exploited = 0 num_optimal = 0 optimal_j = np.argmax([b.p for b in bandits]) print("optimal j:", optimal_j) for i in range(NUM_TRIALS): # use epsilon-greedy to select the next bandit if np.random.random() < EPS: num_times_explored += 1 j = # TODO else: num_times_exploited += 1 j = # TODO if j == optimal_j: num_optimal += 1 # pull the arm for the bandit with the largest sample x = bandits[j].pull() # update rewards log rewards[i] = x # update the distribution for the bandit whose arm we just pulled bandits[j].update(x) # print mean estimates for each bandit for b in bandits: print("mean estimate:", b.p_estimate) # print total reward print("total reward earned:", rewards.sum()) print("overall win rate:", rewards.sum() / NUM_TRIALS) print("num_times_explored:", num_times_explored) print("num_times_exploited:", num_times_exploited) print("num times selected optimal bandit:", num_optimal) # plot the results cumulative_rewards = np.cumsum(rewards) win_rates = cumulative_rewards / (np.arange(NUM_TRIALS) + 1) plt.plot(win_rates) plt.plot(np.ones(NUM_TRIALS)*np.max(BANDIT_PROBABILITIES)) plt.show() if __name__ == "__main__": experiment() ================================================ FILE: rl/extra_reading.txt ================================================ Finite-time Analysis of the Multiarmed Bandit Problem https://homes.di.unimi.it/cesa-bianchi/Pubblicazioni/ml-02.pdf A Nice Lecture for Students Who Claim "RL Doesn't Use Math" https://www.youtube.com/watch?v=dhEF5pfYmvc Hacking Google reCAPTCHA v3 using Reinforcement Learning https://arxiv.org/pdf/1903.01003.pdf Practical Deep Reinforcement Learning Approach for Stock Trading https://arxiv.org/abs/1811.07522 Reinforcement Learning: A Tutorial Survey and Recent Advances - Abhijit Gosavi http://web.mst.edu/~gosavia/joc.pdf Algorithms for Reinforcement Learning - Csaba Szepesv´ari http://old.sztaki.hu/~szcsaba/papers/RLAlgsInMDPs-lecture.pdf Markov Decision Processes in Artificial Intelligence https://zodml.org/sites/default/files/Markov_Decision_Processes_and_Artificial_Intelligence.pdf MDP Preliminaries http://nanjiang.cs.illinois.edu/files/cs598/note1.pdf Concentration Inequalities and Multi-Armed Bandits http://nanjiang.cs.illinois.edu/files/cs598/note_bandit.pdf Notes on Tabular Methods http://nanjiang.cs.illinois.edu/files/cs598/note3.pdf Notes on State Abstractions http://nanjiang.cs.illinois.edu/files/cs598/note4.pdf Notes on Fitted Q-iteration http://nanjiang.cs.illinois.edu/files/cs598/note5.pdf Convergence of Stochastic Iterative Dynamic Programming Algorithms https://papers.nips.cc/paper/764-convergence-of-stochastic-iterative-dynamic-programming-algorithms.pdf Sutton & Barto http://incompleteideas.net/sutton/book/the-book-2nd.html Finite-Sample Analysis of Proximal Gradient TD Algorithms https://marek.petrik.us/pub/Liu2015.pdf Finite Sample Analyses for TD(0) with Function Approximation https://arxiv.org/pdf/1704.01161.pdf Mastering the game of Go with deep neural networks and tree search - Silver, D. et al. https://storage.googleapis.com/deepmind-media/alphago/AlphaGoNaturePaper.pdf Learning Rates for Q-learning http://www.jmlr.org/papers/volume5/evendar03a/evendar03a.pdf ================================================ FILE: rl/grid_world.py ================================================ # https://deeplearningcourses.com/c/artificial-intelligence-reinforcement-learning-in-python # https://www.udemy.com/artificial-intelligence-reinforcement-learning-in-python from __future__ import print_function, division from builtins import range # Note: you may need to update your version of future # sudo pip install -U future import numpy as np ACTION_SPACE = ('U', 'D', 'L', 'R') class Grid: # Environment def __init__(self, rows, cols, start): self.rows = rows self.cols = cols self.i = start[0] self.j = start[1] def set(self, rewards, actions): # rewards should be a dict of: (i, j): r (row, col): reward # actions should be a dict of: (i, j): A (row, col): list of possible actions self.rewards = rewards self.actions = actions def set_state(self, s): self.i = s[0] self.j = s[1] def current_state(self): return (self.i, self.j) def is_terminal(self, s): return s not in self.actions def reset(self): # put agent back in start position self.i = 2 self.j = 0 return (self.i, self.j) def get_next_state(self, s, a): # this answers: where would I end up if I perform action 'a' in state 's'? i, j = s[0], s[1] # if this action moves you somewhere else, then it will be in this dictionary if a in self.actions[(i, j)]: if a == 'U': i -= 1 elif a == 'D': i += 1 elif a == 'R': j += 1 elif a == 'L': j -= 1 return i, j def move(self, action): # check if legal move first if action in self.actions[(self.i, self.j)]: if action == 'U': self.i -= 1 elif action == 'D': self.i += 1 elif action == 'R': self.j += 1 elif action == 'L': self.j -= 1 # return a reward (if any) return self.rewards.get((self.i, self.j), 0) def undo_move(self, action): # these are the opposite of what U/D/L/R should normally do if action == 'U': self.i += 1 elif action == 'D': self.i -= 1 elif action == 'R': self.j -= 1 elif action == 'L': self.j += 1 # raise an exception if we arrive somewhere we shouldn't be # should never happen assert(self.current_state() in self.all_states()) def game_over(self): # returns true if game is over, else false # true if we are in a state where no actions are possible return (self.i, self.j) not in self.actions def all_states(self): # possibly buggy but simple way to get all states # either a position that has possible next actions # or a position that yields a reward return set(self.actions.keys()) | set(self.rewards.keys()) def standard_grid(): # define a grid that describes the reward for arriving at each state # and possible actions at each state # the grid looks like this # x means you can't go there # s means start position # number means reward at that state # . . . 1 # . x . -1 # s . . . g = Grid(3, 4, (2, 0)) rewards = {(0, 3): 1, (1, 3): -1} actions = { (0, 0): ('D', 'R'), (0, 1): ('L', 'R'), (0, 2): ('L', 'D', 'R'), (1, 0): ('U', 'D'), (1, 2): ('U', 'D', 'R'), (2, 0): ('U', 'R'), (2, 1): ('L', 'R'), (2, 2): ('L', 'R', 'U'), (2, 3): ('L', 'U'), } g.set(rewards, actions) return g def negative_grid(step_cost=-0.1): # in this game we want to try to minimize the number of moves # so we will penalize every move g = standard_grid() g.rewards.update({ (0, 0): step_cost, (0, 1): step_cost, (0, 2): step_cost, (1, 0): step_cost, (1, 2): step_cost, (2, 0): step_cost, (2, 1): step_cost, (2, 2): step_cost, (2, 3): step_cost, }) return g class WindyGrid: def __init__(self, rows, cols, start): self.rows = rows self.cols = cols self.i = start[0] self.j = start[1] def set(self, rewards, actions, probs): # rewards should be a dict of: (i, j): r (row, col): reward # actions should be a dict of: (i, j): A (row, col): list of possible actions self.rewards = rewards self.actions = actions self.probs = probs def set_state(self, s): self.i = s[0] self.j = s[1] def current_state(self): return (self.i, self.j) def is_terminal(self, s): return s not in self.actions def move(self, action): s = (self.i, self.j) a = action next_state_probs = self.probs[(s, a)] next_states = list(next_state_probs.keys()) next_probs = list(next_state_probs.values()) next_state_idx = np.random.choice(len(next_states), p=next_probs) s2 = next_states[next_state_idx] # update the current state self.i, self.j = s2 # return a reward (if any) return self.rewards.get(s2, 0) def game_over(self): # returns true if game is over, else false # true if we are in a state where no actions are possible return (self.i, self.j) not in self.actions def all_states(self): # possibly buggy but simple way to get all states # either a position that has possible next actions # or a position that yields a reward return set(self.actions.keys()) | set(self.rewards.keys()) def windy_grid(): g = WindyGrid(3, 4, (2, 0)) rewards = {(0, 3): 1, (1, 3): -1} actions = { (0, 0): ('D', 'R'), (0, 1): ('L', 'R'), (0, 2): ('L', 'D', 'R'), (1, 0): ('U', 'D'), (1, 2): ('U', 'D', 'R'), (2, 0): ('U', 'R'), (2, 1): ('L', 'R'), (2, 2): ('L', 'R', 'U'), (2, 3): ('L', 'U'), } # p(s' | s, a) represented as: # KEY: (s, a) --> VALUE: {s': p(s' | s, a)} probs = { ((2, 0), 'U'): {(1, 0): 1.0}, ((2, 0), 'D'): {(2, 0): 1.0}, ((2, 0), 'L'): {(2, 0): 1.0}, ((2, 0), 'R'): {(2, 1): 1.0}, ((1, 0), 'U'): {(0, 0): 1.0}, ((1, 0), 'D'): {(2, 0): 1.0}, ((1, 0), 'L'): {(1, 0): 1.0}, ((1, 0), 'R'): {(1, 0): 1.0}, ((0, 0), 'U'): {(0, 0): 1.0}, ((0, 0), 'D'): {(1, 0): 1.0}, ((0, 0), 'L'): {(0, 0): 1.0}, ((0, 0), 'R'): {(0, 1): 1.0}, ((0, 1), 'U'): {(0, 1): 1.0}, ((0, 1), 'D'): {(0, 1): 1.0}, ((0, 1), 'L'): {(0, 0): 1.0}, ((0, 1), 'R'): {(0, 2): 1.0}, ((0, 2), 'U'): {(0, 2): 1.0}, ((0, 2), 'D'): {(1, 2): 1.0}, ((0, 2), 'L'): {(0, 1): 1.0}, ((0, 2), 'R'): {(0, 3): 1.0}, ((2, 1), 'U'): {(2, 1): 1.0}, ((2, 1), 'D'): {(2, 1): 1.0}, ((2, 1), 'L'): {(2, 0): 1.0}, ((2, 1), 'R'): {(2, 2): 1.0}, ((2, 2), 'U'): {(1, 2): 1.0}, ((2, 2), 'D'): {(2, 2): 1.0}, ((2, 2), 'L'): {(2, 1): 1.0}, ((2, 2), 'R'): {(2, 3): 1.0}, ((2, 3), 'U'): {(1, 3): 1.0}, ((2, 3), 'D'): {(2, 3): 1.0}, ((2, 3), 'L'): {(2, 2): 1.0}, ((2, 3), 'R'): {(2, 3): 1.0}, ((1, 2), 'U'): {(0, 2): 0.5, (1, 3): 0.5}, ((1, 2), 'D'): {(2, 2): 1.0}, ((1, 2), 'L'): {(1, 2): 1.0}, ((1, 2), 'R'): {(1, 3): 1.0}, } g.set(rewards, actions, probs) return g def windy_grid_no_wind(): g = windy_grid() g.probs[((1, 2), 'U')] = {(0, 2): 1.0} return g def windy_grid_penalized(step_cost=-0.1): g = WindyGrid(3, 4, (2, 0)) rewards = { (0, 0): step_cost, (0, 1): step_cost, (0, 2): step_cost, (1, 0): step_cost, (1, 2): step_cost, (2, 0): step_cost, (2, 1): step_cost, (2, 2): step_cost, (2, 3): step_cost, (0, 3): 1, (1, 3): -1 } actions = { (0, 0): ('D', 'R'), (0, 1): ('L', 'R'), (0, 2): ('L', 'D', 'R'), (1, 0): ('U', 'D'), (1, 2): ('U', 'D', 'R'), (2, 0): ('U', 'R'), (2, 1): ('L', 'R'), (2, 2): ('L', 'R', 'U'), (2, 3): ('L', 'U'), } # p(s' | s, a) represented as: # KEY: (s, a) --> VALUE: {s': p(s' | s, a)} probs = { ((2, 0), 'U'): {(1, 0): 1.0}, ((2, 0), 'D'): {(2, 0): 1.0}, ((2, 0), 'L'): {(2, 0): 1.0}, ((2, 0), 'R'): {(2, 1): 1.0}, ((1, 0), 'U'): {(0, 0): 1.0}, ((1, 0), 'D'): {(2, 0): 1.0}, ((1, 0), 'L'): {(1, 0): 1.0}, ((1, 0), 'R'): {(1, 0): 1.0}, ((0, 0), 'U'): {(0, 0): 1.0}, ((0, 0), 'D'): {(1, 0): 1.0}, ((0, 0), 'L'): {(0, 0): 1.0}, ((0, 0), 'R'): {(0, 1): 1.0}, ((0, 1), 'U'): {(0, 1): 1.0}, ((0, 1), 'D'): {(0, 1): 1.0}, ((0, 1), 'L'): {(0, 0): 1.0}, ((0, 1), 'R'): {(0, 2): 1.0}, ((0, 2), 'U'): {(0, 2): 1.0}, ((0, 2), 'D'): {(1, 2): 1.0}, ((0, 2), 'L'): {(0, 1): 1.0}, ((0, 2), 'R'): {(0, 3): 1.0}, ((2, 1), 'U'): {(2, 1): 1.0}, ((2, 1), 'D'): {(2, 1): 1.0}, ((2, 1), 'L'): {(2, 0): 1.0}, ((2, 1), 'R'): {(2, 2): 1.0}, ((2, 2), 'U'): {(1, 2): 1.0}, ((2, 2), 'D'): {(2, 2): 1.0}, ((2, 2), 'L'): {(2, 1): 1.0}, ((2, 2), 'R'): {(2, 3): 1.0}, ((2, 3), 'U'): {(1, 3): 1.0}, ((2, 3), 'D'): {(2, 3): 1.0}, ((2, 3), 'L'): {(2, 2): 1.0}, ((2, 3), 'R'): {(2, 3): 1.0}, ((1, 2), 'U'): {(0, 2): 0.5, (1, 3): 0.5}, ((1, 2), 'D'): {(2, 2): 1.0}, ((1, 2), 'L'): {(1, 2): 1.0}, ((1, 2), 'R'): {(1, 3): 1.0}, } g.set(rewards, actions, probs) return g def grid_5x5(step_cost=-0.1): g = Grid(5, 5, (4, 0)) rewards = {(0, 4): 1, (1, 4): -1} actions = { (0, 0): ('D', 'R'), (0, 1): ('L', 'R'), (0, 2): ('L', 'R'), (0, 3): ('L', 'D', 'R'), (1, 0): ('U', 'D', 'R'), (1, 1): ('U', 'D', 'L'), (1, 3): ('U', 'D', 'R'), (2, 0): ('U', 'D', 'R'), (2, 1): ('U', 'L', 'R'), (2, 2): ('L', 'R', 'D'), (2, 3): ('L', 'R', 'U'), (2, 4): ('L', 'U', 'D'), (3, 0): ('U', 'D'), (3, 2): ('U', 'D'), (3, 4): ('U', 'D'), (4, 0): ('U', 'R'), (4, 1): ('L', 'R'), (4, 2): ('L', 'R', 'U'), (4, 3): ('L', 'R'), (4, 4): ('L', 'U'), } g.set(rewards, actions) # non-terminal states visitable_states = actions.keys() for s in visitable_states: g.rewards[s] = step_cost return g ================================================ FILE: rl/iterative_policy_evaluation_deterministic.py ================================================ # https://deeplearningcourses.com/c/artificial-intelligence-reinforcement-learning-in-python # https://www.udemy.com/artificial-intelligence-reinforcement-learning-in-python from __future__ import print_function, division from builtins import range # Note: you may need to update your version of future # sudo pip install -U future import numpy as np from grid_world import standard_grid, ACTION_SPACE SMALL_ENOUGH = 1e-3 # threshold for convergence def print_values(V, g): for i in range(g.rows): print("---------------------------") for j in range(g.cols): v = V.get((i,j), 0) if v >= 0: print(" %.2f|" % v, end="") else: print("%.2f|" % v, end="") # -ve sign takes up an extra space print("") def print_policy(P, g): for i in range(g.rows): print("---------------------------") for j in range(g.cols): a = P.get((i,j), ' ') print(" %s |" % a, end="") print("") if __name__ == '__main__': ### define transition probabilities and grid ### # the key is (s, a, s'), the value is the probability # that is, transition_probs[(s, a, s')] = p(s' | s, a) # any key NOT present will considered to be impossible (i.e. probability 0) transition_probs = {} # to reduce the dimensionality of the dictionary, we'll use deterministic # rewards, r(s, a, s') # note: you could make it simpler by using r(s') since the reward doesn't # actually depend on (s, a) rewards = {} grid = standard_grid() for i in range(grid.rows): for j in range(grid.cols): s = (i, j) if not grid.is_terminal(s): for a in ACTION_SPACE: s2 = grid.get_next_state(s, a) transition_probs[(s, a, s2)] = 1 if s2 in grid.rewards: rewards[(s, a, s2)] = grid.rewards[s2] ### fixed policy ### policy = { (2, 0): 'U', (1, 0): 'U', (0, 0): 'R', (0, 1): 'R', (0, 2): 'R', (1, 2): 'U', (2, 1): 'R', (2, 2): 'U', (2, 3): 'L', } print_policy(policy, grid) # initialize V(s) = 0 V = {} for s in grid.all_states(): V[s] = 0 gamma = 0.9 # discount factor # repeat until convergence it = 0 while True: biggest_change = 0 for s in grid.all_states(): if not grid.is_terminal(s): old_v = V[s] new_v = 0 # we will accumulate the answer for a in ACTION_SPACE: for s2 in grid.all_states(): # action probability is deterministic action_prob = 1 if policy.get(s) == a else 0 # reward is a function of (s, a, s'), 0 if not specified r = rewards.get((s, a, s2), 0) new_v += action_prob * transition_probs.get((s, a, s2), 0) * (r + gamma * V[s2]) # after done getting the new value, update the value table V[s] = new_v biggest_change = max(biggest_change, np.abs(old_v - V[s])) print("iter:", it, "biggest_change:", biggest_change) print_values(V, grid) it += 1 if biggest_change < SMALL_ENOUGH: break print("\n\n") ================================================ FILE: rl/iterative_policy_evaluation_probabilistic.py ================================================ # https://deeplearningcourses.com/c/artificial-intelligence-reinforcement-learning-in-python # https://www.udemy.com/artificial-intelligence-reinforcement-learning-in-python from __future__ import print_function, division from builtins import range # Note: you may need to update your version of future # sudo pip install -U future import numpy as np from grid_world import windy_grid, ACTION_SPACE SMALL_ENOUGH = 1e-3 # threshold for convergence def print_values(V, g): for i in range(g.rows): print("---------------------------") for j in range(g.cols): v = V.get((i,j), 0) if v >= 0: print(" %.2f|" % v, end="") else: print("%.2f|" % v, end="") # -ve sign takes up an extra space print("") def print_policy(P, g): for i in range(g.rows): print("---------------------------") for j in range(g.cols): a = P.get((i,j), ' ') print(" %s |" % a, end="") print("") if __name__ == '__main__': ### define transition probabilities and grid ### # the key is (s, a, s'), the value is the probability # that is, transition_probs[(s, a, s')] = p(s' | s, a) # any key NOT present will considered to be impossible (i.e. probability 0) # we can take this from the grid object and convert it to the format we want transition_probs = {} # to reduce the dimensionality of the dictionary, we'll use deterministic # rewards, r(s, a, s') # note: you could make it simpler by using r(s') since the reward doesn't # actually depend on (s, a) rewards = {} grid = windy_grid() for (s, a), v in grid.probs.items(): for s2, p in v.items(): transition_probs[(s, a, s2)] = p rewards[(s, a, s2)] = grid.rewards.get(s2, 0) ### probabilistic policy ### policy = { (2, 0): {'U': 0.5, 'R': 0.5}, (1, 0): {'U': 1.0}, (0, 0): {'R': 1.0}, (0, 1): {'R': 1.0}, (0, 2): {'R': 1.0}, (1, 2): {'U': 1.0}, (2, 1): {'R': 1.0}, (2, 2): {'U': 1.0}, (2, 3): {'L': 1.0}, } print_policy(policy, grid) # initialize V(s) = 0 V = {} for s in grid.all_states(): V[s] = 0 gamma = 0.9 # discount factor # repeat until convergence it = 0 while True: biggest_change = 0 for s in grid.all_states(): if not grid.is_terminal(s): old_v = V[s] new_v = 0 # we will accumulate the answer for a in ACTION_SPACE: for s2 in grid.all_states(): # action probability is deterministic action_prob = policy[s].get(a, 0) # reward is a function of (s, a, s'), 0 if not specified r = rewards.get((s, a, s2), 0) new_v += action_prob * transition_probs.get((s, a, s2), 0) * (r + gamma * V[s2]) # after done getting the new value, update the value table V[s] = new_v biggest_change = max(biggest_change, np.abs(old_v - V[s])) print("iter:", it, "biggest_change:", biggest_change) print_values(V, grid) it += 1 if biggest_change < SMALL_ENOUGH: break print("V:", V) print("\n\n") # sanity check # at state (1, 2), value is 0.5 * 0.9 * 1 + 0.5 * (-1) = -0.05 ================================================ FILE: rl/linear_rl_trader.py ================================================ import numpy as np import pandas as pd import matplotlib.pyplot as plt from datetime import datetime import itertools import argparse import re import os import pickle from sklearn.preprocessing import StandardScaler # Let's use AAPL (Apple), MSI (Motorola), SBUX (Starbucks) def get_data(): # returns a T x 3 list of stock prices # each row is a different stock # 0 = AAPL # 1 = MSI # 2 = SBUX df = pd.read_csv('../tf2.0/aapl_msi_sbux.csv') return df.values def get_scaler(env): # return scikit-learn scaler object to scale the states # Note: you could also populate the replay buffer here states = [] for _ in range(env.n_step): action = np.random.choice(env.action_space) state, reward, done, info = env.step(action) states.append(state) if done: break scaler = StandardScaler() scaler.fit(states) return scaler def maybe_make_dir(directory): if not os.path.exists(directory): os.makedirs(directory) class LinearModel: """ A linear regression model """ def __init__(self, input_dim, n_action): self.W = np.random.randn(input_dim, n_action) / np.sqrt(input_dim) self.b = np.zeros(n_action) # momentum terms self.vW = 0 self.vb = 0 self.losses = [] def predict(self, X): # make sure X is N x D assert(len(X.shape) == 2) return X.dot(self.W) + self.b def sgd(self, X, Y, learning_rate=0.01, momentum=0.9): # make sure X is N x D assert(len(X.shape) == 2) # the loss values are 2-D # normally we would divide by N only # but now we divide by N x K num_values = np.prod(Y.shape) # do one step of gradient descent # we multiply by 2 to get the exact gradient # (not adjusting the learning rate) # i.e. d/dx (x^2) --> 2x Yhat = self.predict(X) gW = 2 * X.T.dot(Yhat - Y) / num_values gb = 2 * (Yhat - Y).sum(axis=0) / num_values # update momentum terms self.vW = momentum * self.vW - learning_rate * gW self.vb = momentum * self.vb - learning_rate * gb # update params self.W += self.vW self.b += self.vb mse = np.mean((Yhat - Y)**2) self.losses.append(mse) def load_weights(self, filepath): npz = np.load(filepath) self.W = npz['W'] self.b = npz['b'] def save_weights(self, filepath): np.savez(filepath, W=self.W, b=self.b) class MultiStockEnv: """ A 3-stock trading environment. State: vector of size 7 (n_stock * 2 + 1) - # shares of stock 1 owned - # shares of stock 2 owned - # shares of stock 3 owned - price of stock 1 (using daily close price) - price of stock 2 - price of stock 3 - cash owned (can be used to purchase more stocks) Action: categorical variable with 27 (3^3) possibilities - for each stock, you can: - 0 = sell - 1 = hold - 2 = buy """ def __init__(self, data, initial_investment=20000): # data self.stock_price_history = data self.n_step, self.n_stock = self.stock_price_history.shape # instance attributes self.initial_investment = initial_investment self.cur_step = None self.stock_owned = None self.stock_price = None self.cash_in_hand = None self.action_space = np.arange(3**self.n_stock) # action permutations # returns a nested list with elements like: # [0,0,0] # [0,0,1] # [0,0,2] # [0,1,0] # [0,1,1] # etc. # 0 = sell # 1 = hold # 2 = buy self.action_list = list(map(list, itertools.product([0, 1, 2], repeat=self.n_stock))) # calculate size of state self.state_dim = self.n_stock * 2 + 1 self.reset() def reset(self): self.cur_step = 0 self.stock_owned = np.zeros(self.n_stock) self.stock_price = self.stock_price_history[self.cur_step] self.cash_in_hand = self.initial_investment return self._get_obs() def step(self, action): assert action in self.action_space # get current value before performing the action prev_val = self._get_val() # update price, i.e. go to the next day self.cur_step += 1 self.stock_price = self.stock_price_history[self.cur_step] # perform the trade self._trade(action) # get the new value after taking the action cur_val = self._get_val() # reward is the increase in porfolio value reward = cur_val - prev_val # done if we have run out of data done = self.cur_step == self.n_step - 1 # store the current value of the portfolio here info = {'cur_val': cur_val} # conform to the Gym API return self._get_obs(), reward, done, info def _get_obs(self): obs = np.empty(self.state_dim) obs[:self.n_stock] = self.stock_owned obs[self.n_stock:2*self.n_stock] = self.stock_price obs[-1] = self.cash_in_hand return obs def _get_val(self): return self.stock_owned.dot(self.stock_price) + self.cash_in_hand def _trade(self, action): # index the action we want to perform # 0 = sell # 1 = hold # 2 = buy # e.g. [2,1,0] means: # buy first stock # hold second stock # sell third stock action_vec = self.action_list[action] # determine which stocks to buy or sell sell_index = [] # stores index of stocks we want to sell buy_index = [] # stores index of stocks we want to buy for i, a in enumerate(action_vec): if a == 0: sell_index.append(i) elif a == 2: buy_index.append(i) # sell any stocks we want to sell # then buy any stocks we want to buy if sell_index: # NOTE: to simplify the problem, when we sell, we will sell ALL shares of that stock for i in sell_index: self.cash_in_hand += self.stock_price[i] * self.stock_owned[i] self.stock_owned[i] = 0 if buy_index: # NOTE: when buying, we will loop through each stock we want to buy, # and buy one share at a time until we run out of cash can_buy = True while can_buy: for i in buy_index: if self.cash_in_hand > self.stock_price[i]: self.stock_owned[i] += 1 # buy one share self.cash_in_hand -= self.stock_price[i] else: can_buy = False class DQNAgent(object): def __init__(self, state_size, action_size): self.state_size = state_size self.action_size = action_size self.gamma = 0.95 # discount rate self.epsilon = 1.0 # exploration rate self.epsilon_min = 0.01 self.epsilon_decay = 0.995 self.model = LinearModel(state_size, action_size) def act(self, state): if np.random.rand() <= self.epsilon: return np.random.choice(self.action_size) act_values = self.model.predict(state) return np.argmax(act_values[0]) # returns action def train(self, state, action, reward, next_state, done): if done: target = reward else: target = reward + self.gamma * np.amax(self.model.predict(next_state), axis=1) target_full = self.model.predict(state) target_full[0, action] = target # Run one training step self.model.sgd(state, target_full) if self.epsilon > self.epsilon_min: self.epsilon *= self.epsilon_decay def load(self, name): self.model.load_weights(name) def save(self, name): self.model.save_weights(name) def play_one_episode(agent, env, is_train): # note: after transforming states are already 1xD state = env.reset() state = scaler.transform([state]) done = False while not done: action = agent.act(state) next_state, reward, done, info = env.step(action) next_state = scaler.transform([next_state]) if is_train == 'train': agent.train(state, action, reward, next_state, done) state = next_state return info['cur_val'] if __name__ == '__main__': # config models_folder = 'linear_rl_trader_models' rewards_folder = 'linear_rl_trader_rewards' num_episodes = 2000 batch_size = 32 initial_investment = 20000 parser = argparse.ArgumentParser() parser.add_argument('-m', '--mode', type=str, required=True, help='either "train" or "test"') args = parser.parse_args() maybe_make_dir(models_folder) maybe_make_dir(rewards_folder) data = get_data() n_timesteps, n_stocks = data.shape n_train = n_timesteps // 2 train_data = data[:n_train] test_data = data[n_train:] env = MultiStockEnv(train_data, initial_investment) state_size = env.state_dim action_size = len(env.action_space) agent = DQNAgent(state_size, action_size) scaler = get_scaler(env) # store the final value of the portfolio (end of episode) portfolio_value = [] if args.mode == 'test': # then load the previous scaler with open(f'{models_folder}/scaler.pkl', 'rb') as f: scaler = pickle.load(f) # remake the env with test data env = MultiStockEnv(test_data, initial_investment) # make sure epsilon is not 1! # no need to run multiple episodes if epsilon = 0, it's deterministic agent.epsilon = 0.01 # load trained weights agent.load(f'{models_folder}/linear.npz') # play the game num_episodes times for e in range(num_episodes): t0 = datetime.now() val = play_one_episode(agent, env, args.mode) dt = datetime.now() - t0 print(f"episode: {e + 1}/{num_episodes}, episode end value: {val:.2f}, duration: {dt}") portfolio_value.append(val) # append episode end portfolio value # save the weights when we are done if args.mode == 'train': # save the DQN agent.save(f'{models_folder}/linear.npz') # save the scaler with open(f'{models_folder}/scaler.pkl', 'wb') as f: pickle.dump(scaler, f) # plot losses plt.plot(agent.model.losses) plt.show() # save portfolio value for each episode np.save(f'{rewards_folder}/{args.mode}.npy', portfolio_value) ================================================ FILE: rl/monte_carlo.py ================================================ # https://deeplearningcourses.com/c/artificial-intelligence-reinforcement-learning-in-python # https://www.udemy.com/artificial-intelligence-reinforcement-learning-in-python from __future__ import print_function, division from builtins import range # Note: you may need to update your version of future # sudo pip install -U future import numpy as np from grid_world import standard_grid, negative_grid from iterative_policy_evaluation import print_values, print_policy GAMMA = 0.9 # NOTE: this is only policy evaluation, not optimization def play_game(grid, policy, max_steps=20): # returns a list of states and corresponding returns # reset game to start at a random position # we need to do this, because given our current deterministic policy # we would never end up at certain states, but we still want to measure their value start_states = list(grid.actions.keys()) start_idx = np.random.choice(len(start_states)) grid.set_state(start_states[start_idx]) s = grid.current_state() # keep track of all states and rewards encountered states = [s] rewards = [0] steps = 0 while not grid.game_over(): a = policy[s] r = grid.move(a) next_s = grid.current_state() # update states and rewards lists states.append(next_s) rewards.append(r) steps += 1 if steps >= max_steps: break # update state # note: there is no need to store the final terminal state s = next_s # we want to return: # states = [s(0), s(1), ..., S(T)] # rewards = [R(0), R(1), ..., R(T)] return states, rewards if __name__ == '__main__': # use the standard grid again (0 for every step) so that we can compare # to iterative policy evaluation grid = standard_grid() # print rewards print("rewards:") print_values(grid.rewards, grid) # state -> action policy = { (2, 0): 'U', (1, 0): 'U', (0, 0): 'R', (0, 1): 'R', (0, 2): 'R', (1, 2): 'R', (2, 1): 'R', (2, 2): 'R', (2, 3): 'U', } # initialize V(s) and returns V = {} returns = {} # dictionary of state -> list of returns we've received states = grid.all_states() for s in states: if s in grid.actions: returns[s] = [] else: # terminal state or state we can't otherwise get to V[s] = 0 # repeat for _ in range(100): # generate an episode using pi states, rewards = play_game(grid, policy) G = 0 T = len(states) for t in range(T - 2, -1, -1): s = states[t] r = rewards[t+1] G = r + GAMMA * G # update return # we'll use first-visit Monte Carlo if s not in states[:t]: returns[s].append(G) V[s] = np.mean(returns[s]) print("values:") print_values(V, grid) print("policy:") print_policy(policy, grid) ================================================ FILE: rl/monte_carlo_es.py ================================================ # https://deeplearningcourses.com/c/artificial-intelligence-reinforcement-learning-in-python # https://www.udemy.com/artificial-intelligence-reinforcement-learning-in-python from __future__ import print_function, division from builtins import range # Note: you may need to update your version of future # sudo pip install -U future import numpy as np import matplotlib.pyplot as plt from grid_world import standard_grid, negative_grid from iterative_policy_evaluation import print_values, print_policy GAMMA = 0.9 ALL_POSSIBLE_ACTIONS = ('U', 'D', 'L', 'R') # NOTE: this script implements the Monte Carlo Exploring-Starts method # for finding the optimal policy def play_game(grid, policy, max_steps=20): # reset game to start at a random position # we need to do this if we have a deterministic policy # we would never end up at certain states, but we still want to measure their value # this is called the "exploring starts" method start_states = list(grid.actions.keys()) start_idx = np.random.choice(len(start_states)) grid.set_state(start_states[start_idx]) s = grid.current_state() a = np.random.choice(ALL_POSSIBLE_ACTIONS) # first action is uniformly random states = [s] actions = [a] rewards = [0] for _ in range(max_steps): r = grid.move(a) s = grid.current_state() rewards.append(r) states.append(s) if grid.game_over(): break else: a = policy[s] actions.append(a) # we want to return: # states = [s(0), s(1), ..., s(T-1), s(T)] # actions = [a(0), a(1), ..., a(T-1), ] # rewards = [ 0, R(1), ..., R(T-1), R(T)] return states, actions, rewards def max_dict(d): # returns the argmax (key) and max (value) from a dictionary # put this into a function since we are using it so often # find max val max_val = max(d.values()) # find keys corresponding to max val max_keys = [key for key, val in d.items() if val == max_val] ### slow version # max_keys = [] # for key, val in d.items(): # if val == max_val: # max_keys.append(key) return np.random.choice(max_keys), max_val if __name__ == '__main__': # use the standard grid again (0 for every step) so that we can compare # to iterative policy evaluation grid = standard_grid() # try the negative grid too, to see if agent will learn to go past the "bad spot" # in order to minimize number of steps # grid = negative_grid(step_cost=-0.1) # print rewards print("rewards:") print_values(grid.rewards, grid) # state -> action # initialize a random policy policy = {} for s in grid.actions.keys(): policy[s] = np.random.choice(ALL_POSSIBLE_ACTIONS) # initialize Q(s,a) and returns Q = {} sample_counts = {} states = grid.all_states() for s in states: if s in grid.actions: # not a terminal state Q[s] = {} sample_counts[s] = {} for a in ALL_POSSIBLE_ACTIONS: Q[s][a] = 0 sample_counts[s][a] = 0 else: # terminal state or state we can't otherwise get to pass # repeat until convergence deltas = [] for it in range(10000): if it % 1000 == 0: print(it) # generate an episode using pi biggest_change = 0 states, actions, rewards = play_game(grid, policy) # create a list of only state-action pairs for lookup states_actions = list(zip(states, actions)) T = len(states) G = 0 for t in range(T - 2, -1, -1): # retrieve current s, a, r tuple s = states[t] a = actions[t] # update G G = rewards[t+1] + GAMMA * G # check if we have already seen (s, a) ("first-visit") if (s, a) not in states_actions[:t]: old_q = Q[s][a] sample_counts[s][a] += 1 lr = 1 / sample_counts[s][a] Q[s][a] = old_q + lr * (G - old_q) # update policy policy[s] = max_dict(Q[s])[0] # update delta biggest_change = max(biggest_change, np.abs(old_q - Q[s][a])) deltas.append(biggest_change) plt.plot(deltas) plt.show() print("final policy:") print_policy(policy, grid) # find V V = {} for s, Qs in Q.items(): V[s] = max_dict(Q[s])[1] print("final values:") print_values(V, grid) ================================================ FILE: rl/monte_carlo_no_es.py ================================================ # https://deeplearningcourses.com/c/artificial-intelligence-reinforcement-learning-in-python # https://www.udemy.com/artificial-intelligence-reinforcement-learning-in-python from __future__ import print_function, division from builtins import range # Note: you may need to update your version of future # sudo pip install -U future import numpy as np import pandas as pd import matplotlib.pyplot as plt from grid_world import standard_grid, negative_grid from iterative_policy_evaluation import print_values, print_policy GAMMA = 0.9 ALL_POSSIBLE_ACTIONS = ('U', 'D', 'L', 'R') def epsilon_greedy(policy, s, eps=0.1): p = np.random.random() if p < (1 - eps): return policy[s] else: return np.random.choice(ALL_POSSIBLE_ACTIONS) def play_game(grid, policy, max_steps=20): # start state s = grid.reset() # choose action a = epsilon_greedy(policy, s) states = [s] actions = [a] rewards = [0] for _ in range(max_steps): r = grid.move(a) s = grid.current_state() rewards.append(r) states.append(s) if grid.game_over(): break else: a = epsilon_greedy(policy, s) actions.append(a) # we want to return: # states = [s(0), s(1), ..., s(T-1), s(T)] # actions = [a(0), a(1), ..., a(T-1), ] # rewards = [ 0, R(1), ..., R(T-1), R(T)] return states, actions, rewards def max_dict(d): # returns the argmax (key) and max (value) from a dictionary # put this into a function since we are using it so often # find max val max_val = max(d.values()) # find keys corresponding to max val max_keys = [key for key, val in d.items() if val == max_val] ### slow version # max_keys = [] # for key, val in d.items(): # if val == max_val: # max_keys.append(key) return np.random.choice(max_keys), max_val if __name__ == '__main__': # use the standard grid again (0 for every step) so that we can compare # to iterative policy evaluation grid = standard_grid() # try the negative grid too, to see if agent will learn to go past the "bad spot" # in order to minimize number of steps # grid = negative_grid(step_cost=-0.1) # print rewards print("rewards:") print_values(grid.rewards, grid) # state -> action # initialize a random policy policy = {} for s in grid.actions.keys(): policy[s] = np.random.choice(ALL_POSSIBLE_ACTIONS) # initialize Q(s,a) and returns Q = {} sample_counts = {} state_sample_count = {} states = grid.all_states() for s in states: if s in grid.actions: # not a terminal state Q[s] = {} sample_counts[s] = {} state_sample_count[s] = 0 for a in ALL_POSSIBLE_ACTIONS: Q[s][a] = 0 sample_counts[s][a] = 0 else: # terminal state or state we can't otherwise get to pass # repeat until convergence deltas = [] for it in range(10000): if it % 1000 == 0: print(it) # generate an episode using pi biggest_change = 0 states, actions, rewards = play_game(grid, policy) # create a list of only state-action pairs for lookup states_actions = list(zip(states, actions)) T = len(states) G = 0 for t in range(T - 2, -1, -1): # retrieve current s, a, r tuple s = states[t] a = actions[t] # update G G = rewards[t+1] + GAMMA * G # check if we have already seen (s, a) ("first-visit") if (s, a) not in states_actions[:t]: old_q = Q[s][a] sample_counts[s][a] += 1 lr = 1 / sample_counts[s][a] Q[s][a] = old_q + lr * (G - old_q) # update policy policy[s] = max_dict(Q[s])[0] # update state sample count state_sample_count[s] += 1 # update delta biggest_change = max(biggest_change, np.abs(old_q - Q[s][a])) deltas.append(biggest_change) plt.plot(deltas) plt.show() print("final policy:") print_policy(policy, grid) # find V V = {} for s, Qs in Q.items(): V[s] = max_dict(Q[s])[1] print("final values:") print_values(V, grid) print("state_sample_count:") state_sample_count_arr = np.zeros((grid.rows, grid.cols)) for i in range(grid.rows): for j in range(grid.cols): if (i, j) in state_sample_count: state_sample_count_arr[i,j] = state_sample_count[(i, j)] df = pd.DataFrame(state_sample_count_arr) print(df) ================================================ FILE: rl/optimistic.py ================================================ # From the course: Bayesin Machine Learning in Python: A/B Testing # https://deeplearningcourses.com/c/bayesian-machine-learning-in-python-ab-testing # https://www.udemy.com/bayesian-machine-learning-in-python-ab-testing from __future__ import print_function, division from builtins import range # Note: you may need to update your version of future # sudo pip install -U future import matplotlib.pyplot as plt import numpy as np NUM_TRIALS = 10000 EPS = 0.1 BANDIT_PROBABILITIES = [0.2, 0.5, 0.75] class Bandit: def __init__(self, p): # p: the win rate self.p = p self.p_estimate = 5. self.N = 1. # num samples collected so far def pull(self): # draw a 1 with probability p return np.random.random() < self.p def update(self, x): self.N += 1. self.p_estimate = ((self.N - 1)*self.p_estimate + x) / self.N def experiment(): bandits = [Bandit(p) for p in BANDIT_PROBABILITIES] rewards = np.zeros(NUM_TRIALS) for i in range(NUM_TRIALS): # use optimistic initial values to select the next bandit j = np.argmax([b.p_estimate for b in bandits]) # pull the arm for the bandit with the largest sample x = bandits[j].pull() # update rewards log rewards[i] = x # update the distribution for the bandit whose arm we just pulled bandits[j].update(x) # print mean estimates for each bandit for b in bandits: print("mean estimate:", b.p_estimate) # print total reward print("total reward earned:", rewards.sum()) print("overall win rate:", rewards.sum() / NUM_TRIALS) print("num times selected each bandit:", [b.N for b in bandits]) # plot the results cumulative_rewards = np.cumsum(rewards) win_rates = cumulative_rewards / (np.arange(NUM_TRIALS) + 1) plt.ylim([0, 1]) plt.plot(win_rates) plt.plot(np.ones(NUM_TRIALS)*np.max(BANDIT_PROBABILITIES)) plt.show() if __name__ == "__main__": experiment() ================================================ FILE: rl/optimistic_initial_values.py ================================================ # https://deeplearningcourses.com/c/artificial-intelligence-reinforcement-learning-in-python # https://www.udemy.com/artificial-intelligence-reinforcement-learning-in-python from __future__ import print_function, division from builtins import range # Note: you may need to update your version of future # sudo pip install -U future import numpy as np import matplotlib.pyplot as plt from comparing_epsilons import run_experiment as run_experiment_eps class Bandit: def __init__(self, m, upper_limit): self.m = m self.mean = upper_limit self.N = 1 def pull(self): return np.random.randn() + self.m def update(self, x): self.N += 1 self.mean = (1 - 1.0/self.N)*self.mean + 1.0/self.N*x def run_experiment(m1, m2, m3, N, upper_limit=10): bandits = [Bandit(m1, upper_limit), Bandit(m2, upper_limit), Bandit(m3, upper_limit)] data = np.empty(N) for i in range(N): # optimistic initial values j = np.argmax([b.mean for b in bandits]) x = bandits[j].pull() bandits[j].update(x) # for the plot data[i] = x cumulative_average = np.cumsum(data) / (np.arange(N) + 1) # plot moving average ctr plt.plot(cumulative_average) plt.plot(np.ones(N)*m1) plt.plot(np.ones(N)*m2) plt.plot(np.ones(N)*m3) plt.xscale('log') plt.show() for b in bandits: print(b.mean) return cumulative_average if __name__ == '__main__': c_1 = run_experiment_eps(1.0, 2.0, 3.0, 0.1, 100000) oiv = run_experiment(1.0, 2.0, 3.0, 100000) # log scale plot plt.plot(c_1, label='eps = 0.1') plt.plot(oiv, label='optimistic') plt.legend() plt.xscale('log') plt.show() # linear plot plt.plot(c_1, label='eps = 0.1') plt.plot(oiv, label='optimistic') plt.legend() plt.show() ================================================ FILE: rl/optimistic_starter.py ================================================ # From the course: Bayesin Machine Learning in Python: A/B Testing # https://deeplearningcourses.com/c/bayesian-machine-learning-in-python-ab-testing # https://www.udemy.com/bayesian-machine-learning-in-python-ab-testing from __future__ import print_function, division from builtins import range # Note: you may need to update your version of future # sudo pip install -U future import matplotlib.pyplot as plt import numpy as np NUM_TRIALS = 10000 EPS = 0.1 BANDIT_PROBABILITIES = [0.2, 0.5, 0.75] class Bandit: def __init__(self, p): # p: the win rate self.p = p self.p_estimate = # TODO self.N = # TODO def pull(self): # draw a 1 with probability p return np.random.random() < self.p def update(self, x): # TODO self.p_estimate = # TODO def experiment(): bandits = [Bandit(p) for p in BANDIT_PROBABILITIES] rewards = np.zeros(NUM_TRIALS) for i in range(NUM_TRIALS): # use optimistic initial values to select the next bandit j = # TODO # pull the arm for the bandit with the largest sample x = bandits[j].pull() # update rewards log rewards[i] = x # update the distribution for the bandit whose arm we just pulled bandits[j].update(x) # print mean estimates for each bandit for b in bandits: print("mean estimate:", b.p_estimate) # print total reward print("total reward earned:", rewards.sum()) print("overall win rate:", rewards.sum() / NUM_TRIALS) print("num times selected each bandit:", [b.N for b in bandits]) # plot the results cumulative_rewards = np.cumsum(rewards) win_rates = cumulative_rewards / (np.arange(NUM_TRIALS) + 1) plt.ylim([0, 1]) plt.plot(win_rates) plt.plot(np.ones(NUM_TRIALS)*np.max(BANDIT_PROBABILITIES)) plt.show() if __name__ == "__main__": experiment() ================================================ FILE: rl/plot_rl_rewards.py ================================================ import matplotlib.pyplot as plt import numpy as np import argparse parser = argparse.ArgumentParser() parser.add_argument('-m', '--mode', type=str, required=True, help='either "train" or "test"') args = parser.parse_args() a = np.load(f'linear_rl_trader_rewards/{args.mode}.npy') print(f"average reward: {a.mean():.2f}, min: {a.min():.2f}, max: {a.max():.2f}") if args.mode == 'train': # show the training progress plt.plot(a) else: # test - show a histogram of rewards plt.hist(a, bins=20) plt.title(args.mode) plt.show() ================================================ FILE: rl/policy_iteration_deterministic.py ================================================ # https://deeplearningcourses.com/c/artificial-intelligence-reinforcement-learning-in-python # https://www.udemy.com/artificial-intelligence-reinforcement-learning-in-python from __future__ import print_function, division from builtins import range # Note: you may need to update your version of future # sudo pip install -U future import numpy as np from grid_world import standard_grid, ACTION_SPACE from iterative_policy_evaluation_deterministic import print_values, print_policy SMALL_ENOUGH = 1e-3 GAMMA = 0.9 # copied from iterative_policy_evaluation def get_transition_probs_and_rewards(grid): ### define transition probabilities and grid ### # the key is (s, a, s'), the value is the probability # that is, transition_probs[(s, a, s')] = p(s' | s, a) # any key NOT present will considered to be impossible (i.e. probability 0) transition_probs = {} # to reduce the dimensionality of the dictionary, we'll use deterministic # rewards, r(s, a, s') # note: you could make it simpler by using r(s') since the reward doesn't # actually depend on (s, a) rewards = {} for i in range(grid.rows): for j in range(grid.cols): s = (i, j) if not grid.is_terminal(s): for a in ACTION_SPACE: s2 = grid.get_next_state(s, a) transition_probs[(s, a, s2)] = 1 if s2 in grid.rewards: rewards[(s, a, s2)] = grid.rewards[s2] return transition_probs, rewards def evaluate_deterministic_policy(grid, policy, initV=None): # initialize V(s) = 0 if initV is None: V = {} for s in grid.all_states(): V[s] = 0 else: # it's faster to use the existing V(s) since the value won't change # that much from one policy to the next V = initV # repeat until convergence it = 0 while True: biggest_change = 0 for s in grid.all_states(): if not grid.is_terminal(s): old_v = V[s] new_v = 0 # we will accumulate the answer for a in ACTION_SPACE: for s2 in grid.all_states(): # action probability is deterministic action_prob = 1 if policy.get(s) == a else 0 # reward is a function of (s, a, s'), 0 if not specified r = rewards.get((s, a, s2), 0) new_v += action_prob * transition_probs.get((s, a, s2), 0) * (r + GAMMA * V[s2]) # after done getting the new value, update the value table V[s] = new_v biggest_change = max(biggest_change, np.abs(old_v - V[s])) it += 1 if biggest_change < SMALL_ENOUGH: break return V if __name__ == '__main__': grid = standard_grid() transition_probs, rewards = get_transition_probs_and_rewards(grid) # print rewards print("rewards:") print_values(grid.rewards, grid) # state -> action # we'll randomly choose an action and update as we learn policy = {} for s in grid.actions.keys(): policy[s] = np.random.choice(ACTION_SPACE) # initial policy print("initial policy:") print_policy(policy, grid) # repeat until convergence - will break out when policy does not change V = None while True: # policy evaluation step - we already know how to do this! V = evaluate_deterministic_policy(grid, policy, initV=V) # policy improvement step is_policy_converged = True for s in grid.actions.keys(): old_a = policy[s] new_a = None best_value = float('-inf') # loop through all possible actions to find the best current action for a in ACTION_SPACE: v = 0 for s2 in grid.all_states(): # reward is a function of (s, a, s'), 0 if not specified r = rewards.get((s, a, s2), 0) v += transition_probs.get((s, a, s2), 0) * (r + GAMMA * V[s2]) if v > best_value: best_value = v new_a = a # new_a now represents the best action in this state policy[s] = new_a if new_a != old_a: is_policy_converged = False if is_policy_converged: break # once we're done, print the final policy and values print("values:") print_values(V, grid) print("policy:") print_policy(policy, grid) ================================================ FILE: rl/policy_iteration_probabilistic.py ================================================ # https://deeplearningcourses.com/c/artificial-intelligence-reinforcement-learning-in-python # https://www.udemy.com/artificial-intelligence-reinforcement-learning-in-python from __future__ import print_function, division from builtins import range # Note: you may need to update your version of future # sudo pip install -U future import numpy as np from grid_world import windy_grid, windy_grid_penalized, ACTION_SPACE from iterative_policy_evaluation import print_values, print_policy SMALL_ENOUGH = 1e-3 GAMMA = 0.9 # copied from iterative_policy_evaluation def get_transition_probs_and_rewards(grid): ### define transition probabilities and grid ### # the key is (s, a, s'), the value is the probability # that is, transition_probs[(s, a, s')] = p(s' | s, a) # any key NOT present will considered to be impossible (i.e. probability 0) transition_probs = {} # to reduce the dimensionality of the dictionary, we'll use deterministic # rewards, r(s, a, s') # note: you could make it simpler by using r(s') since the reward doesn't # actually depend on (s, a) rewards = {} for (s, a), v in grid.probs.items(): for s2, p in v.items(): transition_probs[(s, a, s2)] = p rewards[(s, a, s2)] = grid.rewards.get(s2, 0) return transition_probs, rewards def evaluate_deterministic_policy(grid, policy, initV=None): # initialize V(s) = 0 if initV is None: V = {} for s in grid.all_states(): V[s] = 0 else: # it's faster to use the existing V(s) since the value won't change # that much from one policy to the next V = initV # repeat until convergence it = 0 while True: biggest_change = 0 for s in grid.all_states(): if not grid.is_terminal(s): old_v = V[s] new_v = 0 # we will accumulate the answer for a in ACTION_SPACE: for s2 in grid.all_states(): # action probability is deterministic action_prob = 1 if policy.get(s) == a else 0 # reward is a function of (s, a, s'), 0 if not specified r = rewards.get((s, a, s2), 0) new_v += action_prob * transition_probs.get((s, a, s2), 0) * (r + GAMMA * V[s2]) # after done getting the new value, update the value table V[s] = new_v biggest_change = max(biggest_change, np.abs(old_v - V[s])) it += 1 if biggest_change < SMALL_ENOUGH: break return V if __name__ == '__main__': grid = windy_grid_penalized(-0.1) # grid = windy_grid() transition_probs, rewards = get_transition_probs_and_rewards(grid) # print rewards print("rewards:") print_values(grid.rewards, grid) # state -> action # we'll randomly choose an action and update as we learn policy = {} for s in grid.actions.keys(): policy[s] = np.random.choice(ACTION_SPACE) # initial policy print("initial policy:") print_policy(policy, grid) # repeat until convergence - will break out when policy does not change V = None while True: # policy evaluation step - we already know how to do this! V = evaluate_deterministic_policy(grid, policy, initV=V) # policy improvement step is_policy_converged = True for s in grid.actions.keys(): old_a = policy[s] new_a = None best_value = float('-inf') # loop through all possible actions to find the best current action for a in ACTION_SPACE: v = 0 for s2 in grid.all_states(): # reward is a function of (s, a, s'), 0 if not specified r = rewards.get((s, a, s2), 0) v += transition_probs.get((s, a, s2), 0) * (r + GAMMA * V[s2]) if v > best_value: best_value = v new_a = a # new_a now represents the best action in this state policy[s] = new_a if new_a != old_a: is_policy_converged = False if is_policy_converged: break # once we're done, print the final policy and values print("values:") print_values(V, grid) print("policy:") print_policy(policy, grid) ================================================ FILE: rl/q_learning.py ================================================ # https://deeplearningcourses.com/c/artificial-intelligence-reinforcement-learning-in-python # https://www.udemy.com/artificial-intelligence-reinforcement-learning-in-python from __future__ import print_function, division from builtins import range # Note: you may need to update your version of future # sudo pip install -U future import numpy as np import matplotlib.pyplot as plt from grid_world import standard_grid, negative_grid from iterative_policy_evaluation import print_values, print_policy from monte_carlo_es import max_dict GAMMA = 0.9 ALPHA = 0.1 ALL_POSSIBLE_ACTIONS = ('U', 'D', 'L', 'R') def epsilon_greedy(Q, s, eps=0.1): if np.random.random() < eps: return np.random.choice(ALL_POSSIBLE_ACTIONS) else: a_opt = max_dict(Q[s])[0] return a_opt if __name__ == '__main__': # grid = standard_grid() grid = negative_grid(step_cost=-0.1) # print rewards print("rewards:") print_values(grid.rewards, grid) # initialize Q(s,a) Q = {} states = grid.all_states() for s in states: Q[s] = {} for a in ALL_POSSIBLE_ACTIONS: Q[s][a] = 0 # let's also keep track of how many times Q[s] has been updated update_counts = {} # repeat until convergence reward_per_episode = [] for it in range(10000): if it % 2000 == 0: print("it:", it) # begin a new episode s = grid.reset() episode_reward = 0 while not grid.game_over(): # perform action and get next state + reward a = epsilon_greedy(Q, s, eps=0.1) r = grid.move(a) s2 = grid.current_state() # update reward episode_reward += r # update Q(s,a) maxQ = max_dict(Q[s2])[1] Q[s][a] = Q[s][a] + ALPHA*(r + GAMMA*maxQ - Q[s][a]) # we would like to know how often Q(s) has been updated too update_counts[s] = update_counts.get(s,0) + 1 # next state becomes current state s = s2 # log the reward for this episode reward_per_episode.append(episode_reward) plt.plot(reward_per_episode) plt.title("reward_per_episode") plt.show() # determine the policy from Q* # find V* from Q* policy = {} V = {} for s in grid.actions.keys(): a, max_q = max_dict(Q[s]) policy[s] = a V[s] = max_q # what's the proportion of time we spend updating each part of Q? print("update counts:") total = np.sum(list(update_counts.values())) for k, v in update_counts.items(): update_counts[k] = float(v) / total print_values(update_counts, grid) print("values:") print_values(V, grid) print("policy:") print_policy(policy, grid) ================================================ FILE: rl/sarsa.py ================================================ # https://deeplearningcourses.com/c/artificial-intelligence-reinforcement-learning-in-python # https://www.udemy.com/artificial-intelligence-reinforcement-learning-in-python from __future__ import print_function, division from builtins import range # Note: you may need to update your version of future # sudo pip install -U future import numpy as np import matplotlib.pyplot as plt from grid_world import standard_grid, negative_grid from iterative_policy_evaluation import print_values, print_policy from monte_carlo_es import max_dict GAMMA = 0.9 ALPHA = 0.1 ALL_POSSIBLE_ACTIONS = ('U', 'D', 'L', 'R') def epsilon_greedy(Q, s, eps=0.1): if np.random.random() < eps: return np.random.choice(ALL_POSSIBLE_ACTIONS) else: a_opt = max_dict(Q[s])[0] return a_opt if __name__ == '__main__': # grid = standard_grid() grid = negative_grid(step_cost=-0.1) # print rewards print("rewards:") print_values(grid.rewards, grid) # initialize Q(s,a) Q = {} states = grid.all_states() for s in states: Q[s] = {} for a in ALL_POSSIBLE_ACTIONS: Q[s][a] = 0 # let's also keep track of how many times Q[s] has been updated update_counts = {} # repeat until convergence reward_per_episode = [] for it in range(10000): if it % 2000 == 0: print("it:", it) # begin a new episode s = grid.reset() a = epsilon_greedy(Q, s, eps=0.1) episode_reward = 0 while not grid.game_over(): # perform action and get next state + reward r = grid.move(a) s2 = grid.current_state() # update reward episode_reward += r # get next action a2 = epsilon_greedy(Q, s2, eps=0.1) # update Q(s,a) Q[s][a] = Q[s][a] + ALPHA*(r + GAMMA*Q[s2][a2] - Q[s][a]) # we would like to know how often Q(s) has been updated too update_counts[s] = update_counts.get(s,0) + 1 # next state becomes current state s = s2 a = a2 # log the reward for this episode reward_per_episode.append(episode_reward) plt.plot(reward_per_episode) plt.title("reward_per_episode") plt.show() # determine the policy from Q* # find V* from Q* policy = {} V = {} for s in grid.actions.keys(): a, max_q = max_dict(Q[s]) policy[s] = a V[s] = max_q # what's the proportion of time we spend updating each part of Q? print("update counts:") total = np.sum(list(update_counts.values())) for k, v in update_counts.items(): update_counts[k] = float(v) / total print_values(update_counts, grid) print("values:") print_values(V, grid) print("policy:") print_policy(policy, grid) ================================================ FILE: rl/td0_prediction.py ================================================ # https://deeplearningcourses.com/c/artificial-intelligence-reinforcement-learning-in-python # https://www.udemy.com/artificial-intelligence-reinforcement-learning-in-python from __future__ import print_function, division from builtins import range # Note: you may need to update your version of future # sudo pip install -U future import numpy as np import matplotlib.pyplot as plt from grid_world import standard_grid, negative_grid from iterative_policy_evaluation import print_values, print_policy SMALL_ENOUGH = 1e-3 GAMMA = 0.9 ALPHA = 0.1 ALL_POSSIBLE_ACTIONS = ('U', 'D', 'L', 'R') def epsilon_greedy(policy, s, eps=0.1): # we'll use epsilon-soft to ensure all states are visited # what happens if you don't do this? i.e. eps=0 p = np.random.random() if p < (1 - eps): return policy[s] else: return np.random.choice(ALL_POSSIBLE_ACTIONS) if __name__ == '__main__': # use the standard grid again (0 for every step) so that we can compare # to iterative policy evaluation grid = standard_grid() # print rewards print("rewards:") print_values(grid.rewards, grid) # state -> action policy = { (2, 0): 'U', (1, 0): 'U', (0, 0): 'R', (0, 1): 'R', (0, 2): 'R', (1, 2): 'R', (2, 1): 'R', (2, 2): 'R', (2, 3): 'U', } # initialize V(s) and returns V = {} states = grid.all_states() for s in states: V[s] = 0 # store max change in V(s) per episode deltas = [] # repeat until convergence n_episodes = 10000 for it in range(n_episodes): # begin a new episode s = grid.reset() delta = 0 while not grid.game_over(): a = epsilon_greedy(policy, s) r = grid.move(a) s_next = grid.current_state() # update V(s) v_old = V[s] V[s] = V[s] + ALPHA*(r + GAMMA*V[s_next] - V[s]) delta = max(delta, np.abs(V[s] - v_old)) # next state becomes current state s = s_next # store delta deltas.append(delta) plt.plot(deltas) plt.show() print("values:") print_values(V, grid) print("policy:") print_policy(policy, grid) ================================================ FILE: rl/tic_tac_toe.py ================================================ # https://deeplearningcourses.com/c/artificial-intelligence-reinforcement-learning-in-python # https://www.udemy.com/artificial-intelligence-reinforcement-learning-in-python # Simple reinforcement learning algorithm for learning tic-tac-toe # Use the update rule: V(s) = V(s) + alpha*(V(s') - V(s)) # Use the epsilon-greedy policy: # action|s = argmax[over all actions possible from state s]{ V(s) } if rand > epsilon # action|s = select random action from possible actions from state s if rand < epsilon # # # INTERESTING THINGS TO TRY: # # Currently, both agents use the same learning strategy while they play against each other. # What if they have different learning rates? # What if they have different epsilons? (probability of exploring) # Who will converge faster? # What if one agent doesn't learn at all? # Poses an interesting philosophical question: If there's no one around to challenge you, # can you reach your maximum potential? from __future__ import print_function, division from builtins import range, input # Note: you may need to update your version of future # sudo pip install -U future import numpy as np import matplotlib.pyplot as plt LENGTH = 3 class Agent: def __init__(self, eps=0.1, alpha=0.5): self.eps = eps # probability of choosing random action instead of greedy self.alpha = alpha # learning rate self.verbose = False self.state_history = [] def setV(self, V): self.V = V def set_symbol(self, sym): self.sym = sym def set_verbose(self, v): # if true, will print values for each position on the board self.verbose = v def reset_history(self): self.state_history = [] def take_action(self, env): # choose an action based on epsilon-greedy strategy r = np.random.rand() best_state = None if r < self.eps: # take a random action if self.verbose: print("Taking a random action") possible_moves = [] for i in range(LENGTH): for j in range(LENGTH): if env.is_empty(i, j): possible_moves.append((i, j)) idx = np.random.choice(len(possible_moves)) next_move = possible_moves[idx] else: # choose the best action based on current values of states # loop through all possible moves, get their values # keep track of the best value pos2value = {} # for debugging next_move = None best_value = -1 for i in range(LENGTH): for j in range(LENGTH): if env.is_empty(i, j): # what is the state if we made this move? env.board[i,j] = self.sym state = env.get_state() env.board[i,j] = 0 # don't forget to change it back! pos2value[(i,j)] = self.V[state] if self.V[state] > best_value: best_value = self.V[state] best_state = state next_move = (i, j) # if verbose, draw the board w/ the values if self.verbose: print("Taking a greedy action") for i in range(LENGTH): print("------------------") for j in range(LENGTH): if env.is_empty(i, j): # print the value print(" %.2f|" % pos2value[(i,j)], end="") else: print(" ", end="") if env.board[i,j] == env.x: print("x |", end="") elif env.board[i,j] == env.o: print("o |", end="") else: print(" |", end="") print("") print("------------------") # make the move env.board[next_move[0], next_move[1]] = self.sym def update_state_history(self, s): # cannot put this in take_action, because take_action only happens # once every other iteration for each player # state history needs to be updated every iteration # s = env.get_state() # don't want to do this twice so pass it in self.state_history.append(s) def update(self, env): # we want to BACKTRACK over the states, so that: # V(prev_state) = V(prev_state) + alpha*(V(next_state) - V(prev_state)) # where V(next_state) = reward if it's the most current state # # NOTE: we ONLY do this at the end of an episode # not so for all the algorithms we will study reward = env.reward(self.sym) target = reward for prev in reversed(self.state_history): value = self.V[prev] + self.alpha*(target - self.V[prev]) self.V[prev] = value target = value self.reset_history() # this class represents a tic-tac-toe game # is a CS101-type of project class Environment: def __init__(self): self.board = np.zeros((LENGTH, LENGTH)) self.x = -1 # represents an x on the board, player 1 self.o = 1 # represents an o on the board, player 2 self.winner = None self.ended = False self.num_states = 3**(LENGTH*LENGTH) def is_empty(self, i, j): return self.board[i,j] == 0 def reward(self, sym): # no reward until game is over if not self.game_over(): return 0 # if we get here, game is over # sym will be self.x or self.o return 1 if self.winner == sym else 0 def get_state(self): # returns the current state, represented as an int # from 0...|S|-1, where S = set of all possible states # |S| = 3^(BOARD SIZE), since each cell can have 3 possible values - empty, x, o # some states are not possible, e.g. all cells are x, but we ignore that detail # this is like finding the integer represented by a base-3 number k = 0 h = 0 for i in range(LENGTH): for j in range(LENGTH): if self.board[i,j] == 0: v = 0 elif self.board[i,j] == self.x: v = 1 elif self.board[i,j] == self.o: v = 2 h += (3**k) * v k += 1 return h def game_over(self, force_recalculate=False): # returns true if game over (a player has won or it's a draw) # otherwise returns false # also sets 'winner' instance variable and 'ended' instance variable if not force_recalculate and self.ended: return self.ended # check rows for i in range(LENGTH): for player in (self.x, self.o): if self.board[i].sum() == player*LENGTH: self.winner = player self.ended = True return True # check columns for j in range(LENGTH): for player in (self.x, self.o): if self.board[:,j].sum() == player*LENGTH: self.winner = player self.ended = True return True # check diagonals for player in (self.x, self.o): # top-left -> bottom-right diagonal if self.board.trace() == player*LENGTH: self.winner = player self.ended = True return True # top-right -> bottom-left diagonal if np.fliplr(self.board).trace() == player*LENGTH: self.winner = player self.ended = True return True # check if draw if np.all((self.board == 0) == False): # winner stays None self.winner = None self.ended = True return True # game is not over self.winner = None return False def is_draw(self): return self.ended and self.winner is None # Example board # ------------- # | x | | | # ------------- # | | | | # ------------- # | | | o | # ------------- def draw_board(self): for i in range(LENGTH): print("-------------") for j in range(LENGTH): print(" ", end="") if self.board[i,j] == self.x: print("x ", end="") elif self.board[i,j] == self.o: print("o ", end="") else: print(" ", end="") print("") print("-------------") class Human: def __init__(self): pass def set_symbol(self, sym): self.sym = sym def take_action(self, env): while True: # break if we make a legal move move = input("Enter coordinates i,j for your next move (i,j=0..2): ") i, j = move.split(',') i = int(i) j = int(j) if env.is_empty(i, j): env.board[i,j] = self.sym break def update(self, env): pass def update_state_history(self, s): pass # recursive function that will return all # possible states (as ints) and who the corresponding winner is for those states (if any) # (i, j) refers to the next cell on the board to permute (we need to try -1, 0, 1) # impossible games are ignored, i.e. 3x's and 3o's in a row simultaneously # since that will never happen in a real game def get_state_hash_and_winner(env, i=0, j=0): results = [] for v in (0, env.x, env.o): env.board[i,j] = v # if empty board it should already be 0 if j == 2: # j goes back to 0, increase i, unless i = 2, then we are done if i == 2: # the board is full, collect results and return state = env.get_state() ended = env.game_over(force_recalculate=True) winner = env.winner results.append((state, winner, ended)) else: results += get_state_hash_and_winner(env, i + 1, 0) else: # increment j, i stays the same results += get_state_hash_and_winner(env, i, j + 1) return results # play all possible games # need to also store if game is over or not # because we are going to initialize those values to 0.5 # NOTE: THIS IS SLOW because MANY possible games lead to the same outcome / state # def get_state_hash_and_winner(env, turn='x'): # results = [] # state = env.get_state() # # board_before = env.board.copy() # ended = env.game_over(force_recalculate=True) # winner = env.winner # results.append((state, winner, ended)) # # DEBUG # # if ended: # # if winner is not None and env.win_type.startswith('col'): # # env.draw_board() # # print "Winner:", 'x' if winner == -1 else 'o', env.win_type # # print "\n\n" # # assert(np.all(board_before == env.board)) # if not ended: # if turn == 'x': # sym = env.x # next_sym = 'o' # else: # sym = env.o # next_sym = 'x' # for i in xrange(LENGTH): # for j in xrange(LENGTH): # if env.is_empty(i, j): # env.board[i,j] = sym # results += get_state_hash_and_winner(env, next_sym) # env.board[i,j] = 0 # reset it # return results def initialV_x(env, state_winner_triples): # initialize state values as follows # if x wins, V(s) = 1 # if x loses or draw, V(s) = 0 # otherwise, V(s) = 0.5 V = np.zeros(env.num_states) for state, winner, ended in state_winner_triples: if ended: if winner == env.x: v = 1 else: v = 0 else: v = 0.5 V[state] = v return V def initialV_o(env, state_winner_triples): # this is (almost) the opposite of initial V for player x # since everywhere where x wins (1), o loses (0) # but a draw is still 0 for o V = np.zeros(env.num_states) for state, winner, ended in state_winner_triples: if ended: if winner == env.o: v = 1 else: v = 0 else: v = 0.5 V[state] = v return V def play_game(p1, p2, env, draw=False): # loops until the game is over current_player = None while not env.game_over(): # alternate between players # p1 always starts first if current_player == p1: current_player = p2 else: current_player = p1 # draw the board before the user who wants to see it makes a move if draw: if draw == 1 and current_player == p1: env.draw_board() if draw == 2 and current_player == p2: env.draw_board() # current player makes a move current_player.take_action(env) # update state histories state = env.get_state() p1.update_state_history(state) p2.update_state_history(state) if draw: env.draw_board() # do the value function update p1.update(env) p2.update(env) if __name__ == '__main__': # train the agent p1 = Agent() p2 = Agent() # set initial V for p1 and p2 env = Environment() state_winner_triples = get_state_hash_and_winner(env) Vx = initialV_x(env, state_winner_triples) p1.setV(Vx) Vo = initialV_o(env, state_winner_triples) p2.setV(Vo) # give each player their symbol p1.set_symbol(env.x) p2.set_symbol(env.o) T = 10000 for t in range(T): if t % 200 == 0: print(t) play_game(p1, p2, Environment()) # play human vs. agent # do you think the agent learned to play the game well? human = Human() human.set_symbol(env.o) while True: p1.set_verbose(True) play_game(p1, human, Environment(), draw=2) # I made the agent player 1 because I wanted to see if it would # select the center as its starting move. If you want the agent # to go second you can switch the human and AI. answer = input("Play again? [Y/n]: ") if answer and answer.lower()[0] == 'n': break ================================================ FILE: rl/ucb1.py ================================================ # https://deeplearningcourses.com/c/artificial-intelligence-reinforcement-learning-in-python # https://www.udemy.com/artificial-intelligence-reinforcement-learning-in-python # https://books.google.ca/books?id=_ATpBwAAQBAJ&lpg=PA201&ots=rinZM8jQ6s&dq=hoeffding%20bound%20gives%20probability%20%22greater%20than%201%22&pg=PA201#v=onepage&q&f=false from __future__ import print_function, division from builtins import range # Note: you may need to update your version of future # sudo pip install -U future import numpy as np import matplotlib.pyplot as plt NUM_TRIALS = 100000 EPS = 0.1 BANDIT_PROBABILITIES = [0.2, 0.5, 0.75] class Bandit: def __init__(self, p): # p: the win rate self.p = p self.p_estimate = 0. self.N = 0. # num samples collected so far def pull(self): # draw a 1 with probability p return np.random.random() < self.p def update(self, x): self.N += 1. self.p_estimate = ((self.N - 1)*self.p_estimate + x) / self.N def ucb(mean, n, nj): return mean + np.sqrt(2*np.log(n) / nj) def run_experiment(): bandits = [Bandit(p) for p in BANDIT_PROBABILITIES] rewards = np.empty(NUM_TRIALS) total_plays = 0 # initialization: play each bandit once for j in range(len(bandits)): x = bandits[j].pull() total_plays += 1 bandits[j].update(x) for i in range(NUM_TRIALS): j = np.argmax([ucb(b.p_estimate, total_plays, b.N) for b in bandits]) x = bandits[j].pull() total_plays += 1 bandits[j].update(x) # for the plot rewards[i] = x cumulative_average = np.cumsum(rewards) / (np.arange(NUM_TRIALS) + 1) # plot moving average ctr plt.plot(cumulative_average) plt.plot(np.ones(NUM_TRIALS)*np.max(BANDIT_PROBABILITIES)) plt.xscale('log') plt.show() # plot moving average ctr linear plt.plot(cumulative_average) plt.plot(np.ones(NUM_TRIALS)*np.max(BANDIT_PROBABILITIES)) plt.show() for b in bandits: print(b.p_estimate) print("total reward earned:", rewards.sum()) print("overall win rate:", rewards.sum() / NUM_TRIALS) print("num times selected each bandit:", [b.N for b in bandits]) return cumulative_average if __name__ == '__main__': run_experiment() ================================================ FILE: rl/ucb1_starter.py ================================================ # https://deeplearningcourses.com/c/artificial-intelligence-reinforcement-learning-in-python # https://www.udemy.com/artificial-intelligence-reinforcement-learning-in-python # https://books.google.ca/books?id=_ATpBwAAQBAJ&lpg=PA201&ots=rinZM8jQ6s&dq=hoeffding%20bound%20gives%20probability%20%22greater%20than%201%22&pg=PA201#v=onepage&q&f=false from __future__ import print_function, division from builtins import range # Note: you may need to update your version of future # sudo pip install -U future import numpy as np import matplotlib.pyplot as plt NUM_TRIALS = 100000 EPS = 0.1 BANDIT_PROBABILITIES = [0.2, 0.5, 0.75] class Bandit: def __init__(self, p): # p: the win rate self.p = p self.p_estimate = 0. self.N = 0. # num samples collected so far def pull(self): # draw a 1 with probability p return np.random.random() < self.p def update(self, x): self.N += 1. self.p_estimate = ((self.N - 1)*self.p_estimate + x) / self.N def ucb(mean, n, nj): return # TODO def run_experiment(): bandits = [Bandit(p) for p in BANDIT_PROBABILITIES] rewards = np.empty(NUM_TRIALS) total_plays = 0 # initialization: play each bandit once for j in range(len(bandits)): x = bandits[j].pull() total_plays += 1 bandits[j].update(x) for i in range(NUM_TRIALS): j = # TODO x = bandits[j].pull() total_plays += 1 bandits[j].update(x) # for the plot rewards[i] = x cumulative_average = np.cumsum(rewards) / (np.arange(NUM_TRIALS) + 1) # plot moving average ctr plt.plot(cumulative_average) plt.plot(np.ones(NUM_TRIALS)*np.max(BANDIT_PROBABILITIES)) plt.xscale('log') plt.show() # plot moving average ctr linear plt.plot(cumulative_average) plt.plot(np.ones(NUM_TRIALS)*np.max(BANDIT_PROBABILITIES)) plt.show() for b in bandits: print(b.p_estimate) print("total reward earned:", rewards.sum()) print("overall win rate:", rewards.sum() / NUM_TRIALS) print("num times selected each bandit:", [b.N for b in bandits]) return cumulative_average if __name__ == '__main__': run_experiment() ================================================ FILE: rl/value_iteration.py ================================================ # https://deeplearningcourses.com/c/artificial-intelligence-reinforcement-learning-in-python # https://www.udemy.com/artificial-intelligence-reinforcement-learning-in-python from __future__ import print_function, division from builtins import range # Note: you may need to update your version of future # sudo pip install -U future import numpy as np from grid_world import windy_grid, ACTION_SPACE from iterative_policy_evaluation import print_values, print_policy SMALL_ENOUGH = 1e-3 GAMMA = 0.9 # copied from iterative_policy_evaluation def get_transition_probs_and_rewards(grid): ### define transition probabilities and grid ### # the key is (s, a, s'), the value is the probability # that is, transition_probs[(s, a, s')] = p(s' | s, a) # any key NOT present will considered to be impossible (i.e. probability 0) transition_probs = {} # to reduce the dimensionality of the dictionary, we'll use deterministic # rewards, r(s, a, s') # note: you could make it simpler by using r(s') since the reward doesn't # actually depend on (s, a) rewards = {} for (s, a), v in grid.probs.items(): for s2, p in v.items(): transition_probs[(s, a, s2)] = p rewards[(s, a, s2)] = grid.rewards.get(s2, 0) return transition_probs, rewards if __name__ == '__main__': grid = windy_grid() transition_probs, rewards = get_transition_probs_and_rewards(grid) # print rewards print("rewards:") print_values(grid.rewards, grid) # initialize V(s) V = {} states = grid.all_states() for s in states: V[s] = 0 # repeat until convergence # V[s] = max[a]{ sum[s',r] { p(s',r|s,a)[r + gamma*V[s']] } } it = 0 while True: biggest_change = 0 for s in grid.all_states(): if not grid.is_terminal(s): old_v = V[s] new_v = float('-inf') for a in ACTION_SPACE: v = 0 for s2 in grid.all_states(): # reward is a function of (s, a, s'), 0 if not specified r = rewards.get((s, a, s2), 0) v += transition_probs.get((s, a, s2), 0) * (r + GAMMA * V[s2]) # keep v if it's better if v > new_v: new_v = v V[s] = new_v biggest_change = max(biggest_change, np.abs(old_v - V[s])) it += 1 if biggest_change < SMALL_ENOUGH: break # find a policy that leads to optimal value function policy = {} for s in grid.actions.keys(): best_a = None best_value = float('-inf') # loop through all possible actions to find the best current action for a in ACTION_SPACE: v = 0 for s2 in grid.all_states(): # reward is a function of (s, a, s'), 0 if not specified r = rewards.get((s, a, s2), 0) v += transition_probs.get((s, a, s2), 0) * (r + GAMMA * V[s2]) # best_a is the action associated with best_value if v > best_value: best_value = v best_a = a policy[s] = best_a # our goal here is to verify that we get the same answer as with policy iteration print("values:") print_values(V, grid) print("policy:") print_policy(policy, grid) ================================================ FILE: rl2/a3c/main.py ================================================ import gym import sys import os import numpy as np import tensorflow as tf import matplotlib.pyplot as plt import itertools import shutil import threading import multiprocessing from nets import create_networks from worker import Worker gym_minor_version = int(gym.__version__.split('.')[1]) if gym_minor_version >= 19: exit("Please install OpenAI Gym 0.19.0 or earlier") if tf.__version__.startswith('2'): exit("Please install Tensorflow 1.x") ENV_NAME = "Breakout-v0" MAX_GLOBAL_STEPS = 5e6 STEPS_PER_UPDATE = 5 def Env(): return gym.envs.make(ENV_NAME) # Depending on the game we may have a limited action space if ENV_NAME == "Pong-v0" or ENV_NAME == "Breakout-v0": NUM_ACTIONS = 4 # env.action_space.n returns a bigger number else: env = Env() NUM_ACTIONS = env.action_space.n env.close() def smooth(x): # last 100 n = len(x) y = np.zeros(n) for i in range(n): start = max(0, i - 99) y[i] = float(x[start:(i+1)].sum()) / (i - start + 1) return y # Set the number of workers NUM_WORKERS = multiprocessing.cpu_count() with tf.device("/cpu:0"): # Keeps track of the number of updates we've performed # https://www.tensorflow.org/api_docs/python/tf/train/global_step global_step = tf.Variable(0, name="global_step", trainable=False) # Global policy and value nets with tf.variable_scope("global") as vs: policy_net, value_net = create_networks(NUM_ACTIONS) # Global step iterator global_counter = itertools.count() # Save returns returns_list = [] # Create workers workers = [] for worker_id in range(NUM_WORKERS): worker = Worker( name="worker_{}".format(worker_id), env=Env(), policy_net=policy_net, value_net=value_net, global_counter=global_counter, returns_list=returns_list, discount_factor = 0.99, max_global_steps=MAX_GLOBAL_STEPS) workers.append(worker) with tf.Session() as sess: sess.run(tf.global_variables_initializer()) coord = tf.train.Coordinator() # Start worker threads worker_threads = [] for worker in workers: worker_fn = lambda: worker.run(sess, coord, STEPS_PER_UPDATE) t = threading.Thread(target=worker_fn) t.start() worker_threads.append(t) # Wait for all workers to finish coord.join(worker_threads, stop_grace_period_secs=300) # Plot the smoothed returns x = np.array(returns_list) y = smooth(x) plt.plot(x, label='orig') plt.plot(y, label='smoothed') plt.legend() plt.show() ================================================ FILE: rl2/a3c/nets.py ================================================ import tensorflow as tf def build_feature_extractor(input_): # We only want to create the weights once # In all future calls we should set reuse = True # scale the inputs from 0..255 to 0..1 input_ = tf.to_float(input_) / 255.0 # conv layers conv1 = tf.contrib.layers.conv2d( input_, 16, # num output feature maps 8, # kernel size 4, # stride activation_fn=tf.nn.relu, scope="conv1") conv2 = tf.contrib.layers.conv2d( conv1, 32, # num output feature maps 4, # kernel size 2, # stride activation_fn=tf.nn.relu, scope="conv2") # image -> feature vector flat = tf.contrib.layers.flatten(conv2) # dense layer fc1 = tf.contrib.layers.fully_connected( inputs=flat, num_outputs=256, scope="fc1") return fc1 class PolicyNetwork: def __init__(self, num_outputs, reg=0.01): self.num_outputs = num_outputs # Graph inputs # After resizing we have 4 consecutive frames of size 84 x 84 self.states = tf.placeholder(shape=[None, 84, 84, 4], dtype=tf.uint8, name="X") # Advantage = G - V(s) self.advantage = tf.placeholder(shape=[None], dtype=tf.float32, name="y") # Selected actions self.actions = tf.placeholder(shape=[None], dtype=tf.int32, name="actions") # Since we set reuse=False here, that means we MUST # create the PolicyNetwork before creating the ValueNetwork # ValueNetwork will use reuse=True with tf.variable_scope("shared", reuse=False): fc1 = build_feature_extractor(self.states) # Use a separate scope for output and loss with tf.variable_scope("policy_network"): self.logits = tf.contrib.layers.fully_connected(fc1, num_outputs, activation_fn=None) self.probs = tf.nn.softmax(self.logits) # Sample an action cdist = tf.distributions.Categorical(logits=self.logits) self.sample_action = cdist.sample() # Add regularization to increase exploration self.entropy = -tf.reduce_sum(self.probs * tf.log(self.probs), axis=1) # Get the predictions for the chosen actions only batch_size = tf.shape(self.states)[0] gather_indices = tf.range(batch_size) * tf.shape(self.probs)[1] + self.actions self.selected_action_probs = tf.gather(tf.reshape(self.probs, [-1]), gather_indices) self.loss = tf.log(self.selected_action_probs) * self.advantage + reg * self.entropy self.loss = -tf.reduce_sum(self.loss, name="loss") # training self.optimizer = tf.train.RMSPropOptimizer(0.00025, 0.99, 0.0, 1e-6) # we'll need these later for running gradient descent steps self.grads_and_vars = self.optimizer.compute_gradients(self.loss) self.grads_and_vars = [[grad, var] for grad, var in self.grads_and_vars if grad is not None] class ValueNetwork: def __init__(self): # Placeholders for our input # After resizing we have 4 consecutive frames of size 84 x 84 self.states = tf.placeholder(shape=[None, 84, 84, 4], dtype=tf.uint8, name="X") # The TD target value self.targets = tf.placeholder(shape=[None], dtype=tf.float32, name="y") # Since we set reuse=True here, that means we MUST # create the PolicyNetwork before creating the ValueNetwork # PolictyNetwork will use reuse=False with tf.variable_scope("shared", reuse=True): fc1 = build_feature_extractor(self.states) # Use a separate scope for output and loss with tf.variable_scope("value_network"): self.vhat = tf.contrib.layers.fully_connected( inputs=fc1, num_outputs=1, activation_fn=None) self.vhat = tf.squeeze(self.vhat, squeeze_dims=[1], name="vhat") self.loss = tf.squared_difference(self.vhat, self.targets) self.loss = tf.reduce_sum(self.loss, name="loss") # training self.optimizer = tf.train.RMSPropOptimizer(0.00025, 0.99, 0.0, 1e-6) # we'll need these later for running gradient descent steps self.grads_and_vars = self.optimizer.compute_gradients(self.loss) self.grads_and_vars = [[grad, var] for grad, var in self.grads_and_vars if grad is not None] # Should use this to create networks # to ensure they're created in the correct order def create_networks(num_outputs): policy_network = PolicyNetwork(num_outputs=num_outputs) value_network = ValueNetwork() return policy_network, value_network ================================================ FILE: rl2/a3c/thread_example.py ================================================ import itertools import threading import time import multiprocessing import numpy as np class Worker: def __init__(self, id_, global_counter): self.id = id_ self.global_counter = global_counter self.local_counter = itertools.count() def run(self): while True: time.sleep(np.random.rand()*2) global_step = next(self.global_counter) local_step = next(self.local_counter) print("Worker({}): {}".format(self.id, local_step)) if global_step >= 20: break global_counter = itertools.count() NUM_WORKERS = multiprocessing.cpu_count() # create the workers workers = [] for worker_id in range(NUM_WORKERS): worker = Worker(worker_id, global_counter) workers.append(worker) # start the threads worker_threads = [] for worker in workers: worker_fn = lambda: worker.run() t = threading.Thread(target=worker_fn) t.start() worker_threads.append(t) # join the threads for t in worker_threads: t.join() print("DONE!") ================================================ FILE: rl2/a3c/worker.py ================================================ import gym import sys import os import numpy as np import tensorflow as tf from nets import create_networks class Step: def __init__(self, state, action, reward, next_state, done): self.state = state self.action = action self.reward = reward self.next_state = next_state self.done = done # Transform raw images for input into neural network # 1) Convert to grayscale # 2) Resize # 3) Crop class ImageTransformer: def __init__(self): with tf.variable_scope("image_transformer"): self.input_state = tf.placeholder(shape=[210, 160, 3], dtype=tf.uint8) self.output = tf.image.rgb_to_grayscale(self.input_state) self.output = tf.image.crop_to_bounding_box(self.output, 34, 0, 160, 160) self.output = tf.image.resize_images( self.output, [84, 84], method=tf.image.ResizeMethod.NEAREST_NEIGHBOR) self.output = tf.squeeze(self.output) def transform(self, state, sess=None): sess = sess or tf.get_default_session() return sess.run(self.output, { self.input_state: state }) # Create initial state by repeating the same frame 4 times def repeat_frame(frame): return np.stack([frame] * 4, axis=2) # Create next state by shifting each frame by 1 # Throw out the oldest frame # And concatenate the newest frame def shift_frames(state, next_frame): return np.append(state[:,:,1:], np.expand_dims(next_frame, 2), axis=2) # Make a Tensorflow op to copy weights from one scope to another def get_copy_params_op(src_vars, dst_vars): src_vars = list(sorted(src_vars, key=lambda v: v.name)) dst_vars = list(sorted(dst_vars, key=lambda v: v.name)) ops = [] for s, d in zip(src_vars, dst_vars): op = d.assign(s) ops.append(op) return ops def make_train_op(local_net, global_net): """ Use gradients from local network to update the global network """ # Idea: # We want a list of gradients and corresponding variables # e.g. [[g1, g2, g3], [v1, v2, v3]] # Since that's what the optimizer expects. # But we would like the gradients to come from the local network # And the variables to come from the global network # So we want to make a list like this: # [[local_g1, local_g2, local_g3], [global_v1, global_v2, global_v3]] # First get only the gradients local_grads, _ = zip(*local_net.grads_and_vars) # Clip gradients to avoid large values local_grads, _ = tf.clip_by_global_norm(local_grads, 5.0) # Get global vars _, global_vars = zip(*global_net.grads_and_vars) # Combine local grads and global vars local_grads_global_vars = list(zip(local_grads, global_vars)) # Run a gradient descent step, e.g. # var = var - learning_rate * grad return global_net.optimizer.apply_gradients( local_grads_global_vars, global_step=tf.train.get_global_step()) # Worker object to be run in a thread # name (String) should be unique for each thread # env (OpenAI Gym Environment) should be unique for each thread # policy_net (PolicyNetwork) should be a global passed to every worker # value_net (ValueNetwork) should be a global passed to every worker # returns_list (List) should be a global passed to every worker class Worker: def __init__( self, name, env, policy_net, value_net, global_counter, returns_list, discount_factor=0.99, max_global_steps=None): self.name = name self.env = env self.global_policy_net = policy_net self.global_value_net = value_net self.global_counter = global_counter self.discount_factor = discount_factor self.max_global_steps = max_global_steps self.global_step = tf.train.get_global_step() self.img_transformer = ImageTransformer() # Create local policy and value networks that belong only to this worker with tf.variable_scope(name): # self.policy_net = PolicyNetwork(num_outputs=policy_net.num_outputs) # self.value_net = ValueNetwork() self.policy_net, self.value_net = create_networks(policy_net.num_outputs) # We will use this op to copy the global network weights # back to the local policy and value networks self.copy_params_op = get_copy_params_op( tf.get_collection(tf.GraphKeys.TRAINABLE_VARIABLES, scope="global"), tf.get_collection(tf.GraphKeys.TRAINABLE_VARIABLES, scope=self.name+'/')) # These will take the gradients from the local networks # and use those gradients to update the global network self.vnet_train_op = make_train_op(self.value_net, self.global_value_net) self.pnet_train_op = make_train_op(self.policy_net, self.global_policy_net) self.state = None # Keep track of the current state self.total_reward = 0. # After each episode print the total (sum of) reward self.returns_list = returns_list # Global returns list to plot later def run(self, sess, coord, t_max): with sess.as_default(), sess.graph.as_default(): # Assign the initial state self.state = repeat_frame(self.img_transformer.transform(self.env.reset())) try: while not coord.should_stop(): # Copy weights from global networks to local networks sess.run(self.copy_params_op) # Collect some experience steps, global_step = self.run_n_steps(t_max, sess) # Stop once the max number of global steps has been reached if self.max_global_steps is not None and global_step >= self.max_global_steps: coord.request_stop() return # Update the global networks using local gradients self.update(steps, sess) except tf.errors.CancelledError: return def sample_action(self, state, sess): # Make input N x D (N = 1) feed_dict = { self.policy_net.states: [state] } actions = sess.run(self.policy_net.sample_action, feed_dict) # Prediction is a 1-D array of length N, just want the first value return actions[0] def get_value_prediction(self, state, sess): # Make input N x D (N = 1) feed_dict = { self.value_net.states: [state] } vhat = sess.run(self.value_net.vhat, feed_dict) # Prediction is a 1-D array of length N, just want the first value return vhat[0] def run_n_steps(self, n, sess): steps = [] for _ in range(n): # Take a step action = self.sample_action(self.state, sess) next_frame, reward, done, _ = self.env.step(action) # Shift the state to include the latest frame next_state = shift_frames(self.state, self.img_transformer.transform(next_frame)) # Save total return if done: print("Total reward:", self.total_reward, "Worker:", self.name) self.returns_list.append(self.total_reward) if len(self.returns_list) > 0 and len(self.returns_list) % 100 == 0: print("*** Total average reward (last 100):", np.mean(self.returns_list[-100:]), "Collected so far:", len(self.returns_list)) self.total_reward = 0. else: self.total_reward += reward # Save step step = Step(self.state, action, reward, next_state, done) steps.append(step) # Increase local and global counters global_step = next(self.global_counter) if done: self.state = repeat_frame(self.img_transformer.transform(self.env.reset())) break else: self.state = next_state return steps, global_step def update(self, steps, sess): """ Updates global policy and value networks using the local networks' gradients """ # In order to accumulate the total return # We will use V_hat(s') to predict the future returns # But we will use the actual rewards if we have them # Ex. if we have s1, s2, s3 with rewards r1, r2, r3 # Then G(s3) = r3 + V(s4) # G(s2) = r2 + r3 + V(s4) # G(s1) = r1 + r2 + r3 + V(s4) reward = 0.0 if not steps[-1].done: reward = self.get_value_prediction(steps[-1].next_state, sess) # Accumulate minibatch samples states = [] advantages = [] value_targets = [] actions = [] # loop through steps in reverse order for step in reversed(steps): reward = step.reward + self.discount_factor * reward advantage = reward - self.get_value_prediction(step.state, sess) # Accumulate updates states.append(step.state) actions.append(step.action) advantages.append(advantage) value_targets.append(reward) feed_dict = { self.policy_net.states: np.array(states), self.policy_net.advantage: advantages, self.policy_net.actions: actions, self.value_net.states: np.array(states), self.value_net.targets: value_targets, } # Train the global estimators using local gradients global_step, pnet_loss, vnet_loss, _, _ = sess.run([ self.global_step, self.policy_net.loss, self.value_net.loss, self.pnet_train_op, self.vnet_train_op, ], feed_dict) # Theoretically could plot these later return pnet_loss, vnet_loss ================================================ FILE: rl2/atari/dqn_tf.py ================================================ # https://deeplearningcourses.com/c/deep-reinforcement-learning-in-python # https://www.udemy.com/deep-reinforcement-learning-in-python from __future__ import print_function, division from builtins import range # Note: you may need to update your version of future # sudo pip install -U future import copy import gym import os import sys import random import numpy as np import tensorflow as tf import matplotlib.pyplot as plt from gym import wrappers from datetime import datetime from scipy.misc import imresize gym_minor_version = int(gym.__version__.split('.')[1]) if gym_minor_version >= 19: exit("Please install OpenAI Gym 0.19.0 or earlier") if tf.__version__.startswith('2'): exit("Please install Tensorflow 1.x") ##### testing only # MAX_EXPERIENCES = 10000 # MIN_EXPERIENCES = 1000 MAX_EXPERIENCES = 500000 MIN_EXPERIENCES = 50000 TARGET_UPDATE_PERIOD = 10000 IM_SIZE = 84 K = 4 #env.action_space.n # Transform raw images for input into neural network # 1) Convert to grayscale # 2) Resize # 3) Crop class ImageTransformer: def __init__(self): with tf.variable_scope("image_transformer"): self.input_state = tf.placeholder(shape=[210, 160, 3], dtype=tf.uint8) self.output = tf.image.rgb_to_grayscale(self.input_state) self.output = tf.image.crop_to_bounding_box(self.output, 34, 0, 160, 160) self.output = tf.image.resize_images( self.output, [IM_SIZE, IM_SIZE], method=tf.image.ResizeMethod.NEAREST_NEIGHBOR) self.output = tf.squeeze(self.output) def transform(self, state, sess=None): sess = sess or tf.get_default_session() return sess.run(self.output, { self.input_state: state }) def update_state(state, obs_small): return np.append(state[:,:,1:], np.expand_dims(obs_small, 2), axis=2) class ReplayMemory: def __init__(self, size=MAX_EXPERIENCES, frame_height=IM_SIZE, frame_width=IM_SIZE, agent_history_length=4, batch_size=32): """ Args: size: Integer, Number of stored transitions frame_height: Integer, Height of a frame of an Atari game frame_width: Integer, Width of a frame of an Atari game agent_history_length: Integer, Number of frames stacked together to create a state batch_size: Integer, Number of transitions returned in a minibatch """ self.size = size self.frame_height = frame_height self.frame_width = frame_width self.agent_history_length = agent_history_length self.batch_size = batch_size self.count = 0 self.current = 0 # Pre-allocate memory self.actions = np.empty(self.size, dtype=np.int32) self.rewards = np.empty(self.size, dtype=np.float32) self.frames = np.empty((self.size, self.frame_height, self.frame_width), dtype=np.uint8) self.terminal_flags = np.empty(self.size, dtype=np.bool) # Pre-allocate memory for the states and new_states in a minibatch self.states = np.empty((self.batch_size, self.agent_history_length, self.frame_height, self.frame_width), dtype=np.uint8) self.new_states = np.empty((self.batch_size, self.agent_history_length, self.frame_height, self.frame_width), dtype=np.uint8) self.indices = np.empty(self.batch_size, dtype=np.int32) def add_experience(self, action, frame, reward, terminal): """ Args: action: An integer-encoded action frame: One grayscale frame of the game reward: reward the agend received for performing an action terminal: A bool stating whether the episode terminated """ if frame.shape != (self.frame_height, self.frame_width): raise ValueError('Dimension of frame is wrong!') self.actions[self.current] = action self.frames[self.current, ...] = frame self.rewards[self.current] = reward self.terminal_flags[self.current] = terminal self.count = max(self.count, self.current+1) self.current = (self.current + 1) % self.size def _get_state(self, index): if self.count is 0: raise ValueError("The replay memory is empty!") if index < self.agent_history_length - 1: raise ValueError("Index must be min 3") return self.frames[index-self.agent_history_length+1:index+1, ...] def _get_valid_indices(self): for i in range(self.batch_size): while True: index = random.randint(self.agent_history_length, self.count - 1) if index < self.agent_history_length: continue if index >= self.current and index - self.agent_history_length <= self.current: continue if self.terminal_flags[index - self.agent_history_length:index].any(): continue break self.indices[i] = index def get_minibatch(self): """ Returns a minibatch of self.batch_size transitions """ if self.count < self.agent_history_length: raise ValueError('Not enough memories to get a minibatch') self._get_valid_indices() for i, idx in enumerate(self.indices): self.states[i] = self._get_state(idx - 1) self.new_states[i] = self._get_state(idx) return np.transpose(self.states, axes=(0, 2, 3, 1)), \ self.actions[self.indices], \ self.rewards[self.indices], \ np.transpose(self.new_states, axes=(0, 2, 3, 1)), \ self.terminal_flags[self.indices] class DQN: def __init__(self, K, conv_layer_sizes, hidden_layer_sizes, scope): self.K = K self.scope = scope with tf.variable_scope(scope): # inputs and targets self.X = tf.placeholder(tf.float32, shape=(None, IM_SIZE, IM_SIZE, 4), name='X') # tensorflow convolution needs the order to be: # (num_samples, height, width, "color") self.G = tf.placeholder(tf.float32, shape=(None,), name='G') self.actions = tf.placeholder(tf.int32, shape=(None,), name='actions') # calculate output and cost # convolutional layers # these built-in layers are faster and don't require us to # calculate the size of the output of the final conv layer! Z = self.X / 255.0 for num_output_filters, filtersz, poolsz in conv_layer_sizes: Z = tf.contrib.layers.conv2d( Z, num_output_filters, filtersz, poolsz, activation_fn=tf.nn.relu ) # fully connected layers Z = tf.contrib.layers.flatten(Z) for M in hidden_layer_sizes: Z = tf.contrib.layers.fully_connected(Z, M) # final output layer self.predict_op = tf.contrib.layers.fully_connected(Z, K) selected_action_values = tf.reduce_sum( self.predict_op * tf.one_hot(self.actions, K), reduction_indices=[1] ) # cost = tf.reduce_mean(tf.square(self.G - selected_action_values)) cost = tf.reduce_mean(tf.losses.huber_loss(self.G, selected_action_values)) self.train_op = tf.train.AdamOptimizer(1e-5).minimize(cost) # self.train_op = tf.train.AdagradOptimizer(1e-2).minimize(cost) # self.train_op = tf.train.RMSPropOptimizer(2.5e-4, decay=0.99, epsilon=1e-3).minimize(cost) # self.train_op = tf.train.RMSPropOptimizer(0.00025, 0.99, 0.0, 1e-6).minimize(cost) # self.train_op = tf.train.MomentumOptimizer(1e-3, momentum=0.9).minimize(cost) # self.train_op = tf.train.GradientDescentOptimizer(1e-4).minimize(cost) self.cost = cost def copy_from(self, other): mine = [t for t in tf.trainable_variables() if t.name.startswith(self.scope)] mine = sorted(mine, key=lambda v: v.name) theirs = [t for t in tf.trainable_variables() if t.name.startswith(other.scope)] theirs = sorted(theirs, key=lambda v: v.name) ops = [] for p, q in zip(mine, theirs): op = p.assign(q) ops.append(op) self.session.run(ops) def save(self): params = [t for t in tf.trainable_variables() if t.name.startswith(self.scope)] params = self.session.run(params) np.savez('tf_dqn_weights.npz', *params) def load(self): params = [t for t in tf.trainable_variables() if t.name.startswith(self.scope)] npz = np.load('tf_dqn_weights.npz') ops = [] for p, (_, v) in zip(params, npz.iteritems()): ops.append(p.assign(v)) self.session.run(ops) def set_session(self, session): self.session = session def predict(self, states): return self.session.run(self.predict_op, feed_dict={self.X: states}) def update(self, states, actions, targets): c, _ = self.session.run( [self.cost, self.train_op], feed_dict={ self.X: states, self.G: targets, self.actions: actions } ) return c def sample_action(self, x, eps): if np.random.random() < eps: return np.random.choice(self.K) else: return np.argmax(self.predict([x])[0]) def learn(model, target_model, experience_replay_buffer, gamma, batch_size): # Sample experiences states, actions, rewards, next_states, dones = experience_replay_buffer.get_minibatch() # Calculate targets next_Qs = target_model.predict(next_states) next_Q = np.amax(next_Qs, axis=1) targets = rewards + np.invert(dones).astype(np.float32) * gamma * next_Q # Update model loss = model.update(states, actions, targets) return loss def play_one( env, sess, total_t, experience_replay_buffer, model, target_model, image_transformer, gamma, batch_size, epsilon, epsilon_change, epsilon_min): t0 = datetime.now() # Reset the environment obs = env.reset() obs_small = image_transformer.transform(obs, sess) state = np.stack([obs_small] * 4, axis=2) loss = None total_time_training = 0 num_steps_in_episode = 0 episode_reward = 0 done = False while not done: # Update target network if total_t % TARGET_UPDATE_PERIOD == 0: target_model.copy_from(model) print("Copied model parameters to target network. total_t = %s, period = %s" % (total_t, TARGET_UPDATE_PERIOD)) # Take action action = model.sample_action(state, epsilon) obs, reward, done, _ = env.step(action) obs_small = image_transformer.transform(obs, sess) next_state = update_state(state, obs_small) # Compute total reward episode_reward += reward # Save the latest experience experience_replay_buffer.add_experience(action, obs_small, reward, done) # Train the model, keep track of time t0_2 = datetime.now() loss = learn(model, target_model, experience_replay_buffer, gamma, batch_size) dt = datetime.now() - t0_2 # More debugging info total_time_training += dt.total_seconds() num_steps_in_episode += 1 state = next_state total_t += 1 epsilon = max(epsilon - epsilon_change, epsilon_min) return total_t, episode_reward, (datetime.now() - t0), num_steps_in_episode, total_time_training/num_steps_in_episode, epsilon def smooth(x): # last 100 n = len(x) y = np.zeros(n) for i in range(n): start = max(0, i - 99) y[i] = float(x[start:(i+1)].sum()) / (i - start + 1) return y if __name__ == '__main__': # hyperparams and initialize stuff conv_layer_sizes = [(32, 8, 4), (64, 4, 2), (64, 3, 1)] hidden_layer_sizes = [512] gamma = 0.99 batch_sz = 32 num_episodes = 3500 total_t = 0 experience_replay_buffer = ReplayMemory() episode_rewards = np.zeros(num_episodes) # epsilon # decays linearly until 0.1 epsilon = 1.0 epsilon_min = 0.1 epsilon_change = (epsilon - epsilon_min) / 500000 # Create environment env = gym.envs.make("Breakout-v0") # Create models model = DQN( K=K, conv_layer_sizes=conv_layer_sizes, hidden_layer_sizes=hidden_layer_sizes, scope="model") target_model = DQN( K=K, conv_layer_sizes=conv_layer_sizes, hidden_layer_sizes=hidden_layer_sizes, scope="target_model" ) image_transformer = ImageTransformer() with tf.Session() as sess: model.set_session(sess) target_model.set_session(sess) sess.run(tf.global_variables_initializer()) print("Populating experience replay buffer...") obs = env.reset() for i in range(MIN_EXPERIENCES): action = np.random.choice(K) obs, reward, done, _ = env.step(action) obs_small = image_transformer.transform(obs, sess) # not used anymore experience_replay_buffer.add_experience(action, obs_small, reward, done) if done: obs = env.reset() # Play a number of episodes and learn! t0 = datetime.now() for i in range(num_episodes): total_t, episode_reward, duration, num_steps_in_episode, time_per_step, epsilon = play_one( env, sess, total_t, experience_replay_buffer, model, target_model, image_transformer, gamma, batch_sz, epsilon, epsilon_change, epsilon_min, ) episode_rewards[i] = episode_reward last_100_avg = episode_rewards[max(0, i - 100):i + 1].mean() print("Episode:", i, "Duration:", duration, "Num steps:", num_steps_in_episode, "Reward:", episode_reward, "Training time per step:", "%.3f" % time_per_step, "Avg Reward (Last 100):", "%.3f" % last_100_avg, "Epsilon:", "%.3f" % epsilon ) sys.stdout.flush() print("Total duration:", datetime.now() - t0) model.save() # Plot the smoothed returns y = smooth(episode_rewards) plt.plot(episode_rewards, label='orig') plt.plot(y, label='smoothed') plt.legend() plt.show() ================================================ FILE: rl2/atari/dqn_theano.py ================================================ # https://deeplearningcourses.com/c/deep-reinforcement-learning-in-python # https://www.udemy.com/deep-reinforcement-learning-in-python from __future__ import print_function, division from builtins import range # Note: you may need to update your version of future # sudo pip install -U future import copy import gym import os import sys import random import numpy as np import theano import theano.tensor as T from theano.tensor.nnet import conv2d import matplotlib.pyplot as plt from gym import wrappers from datetime import datetime from scipy.misc import imresize ##### testing only # MAX_EXPERIENCES = 10000 # MIN_EXPERIENCES = 1000 MAX_EXPERIENCES = 500000 MIN_EXPERIENCES = 50000 TARGET_UPDATE_PERIOD = 10000 IM_SIZE = 84 K = 4 #env.action_space.n def rgb2gray(rgb): r, g, b = rgb[:,:,0], rgb[:,:,1], rgb[:,:,2] gray = 0.2989 * r + 0.5870 * g + 0.1140 * b return gray.astype(np.uint8) # TODO: can this be converted into a Theano function? def downsample_image(A): B = A[34:194] # select the important parts of the image B = rgb2gray(B) # convert to grayscale # downsample image # changing aspect ratio doesn't significantly distort the image # nearest neighbor interpolation produces a much sharper image # than default bilinear B = imresize(B, size=(IM_SIZE, IM_SIZE), interp='nearest') return B def update_state(state, obs): obs_small = downsample_image(obs) return np.append(state[1:], np.expand_dims(obs_small, 0), axis=0) class ReplayMemory: def __init__(self, size=MAX_EXPERIENCES, frame_height=IM_SIZE, frame_width=IM_SIZE, agent_history_length=4, batch_size=32): """ Args: size: Integer, Number of stored transitions frame_height: Integer, Height of a frame of an Atari game frame_width: Integer, Width of a frame of an Atari game agent_history_length: Integer, Number of frames stacked together to create a state batch_size: Integer, Number of transitions returned in a minibatch """ self.size = size self.frame_height = frame_height self.frame_width = frame_width self.agent_history_length = agent_history_length self.batch_size = batch_size self.count = 0 self.current = 0 # Pre-allocate memory self.actions = np.empty(self.size, dtype=np.int32) self.rewards = np.empty(self.size, dtype=np.float32) self.frames = np.empty((self.size, self.frame_height, self.frame_width), dtype=np.uint8) self.terminal_flags = np.empty(self.size, dtype=np.bool) # Pre-allocate memory for the states and new_states in a minibatch self.states = np.empty((self.batch_size, self.agent_history_length, self.frame_height, self.frame_width), dtype=np.uint8) self.new_states = np.empty((self.batch_size, self.agent_history_length, self.frame_height, self.frame_width), dtype=np.uint8) self.indices = np.empty(self.batch_size, dtype=np.int32) def add_experience(self, action, frame, reward, terminal): """ Args: action: An integer-encoded action frame: One grayscale frame of the game reward: reward the agend received for performing an action terminal: A bool stating whether the episode terminated """ if frame.shape != (self.frame_height, self.frame_width): raise ValueError('Dimension of frame is wrong!') self.actions[self.current] = action self.frames[self.current, ...] = frame self.rewards[self.current] = reward self.terminal_flags[self.current] = terminal self.count = max(self.count, self.current+1) self.current = (self.current + 1) % self.size def _get_state(self, index): if self.count is 0: raise ValueError("The replay memory is empty!") if index < self.agent_history_length - 1: raise ValueError("Index must be min 3") return self.frames[index-self.agent_history_length+1:index+1, ...] def _get_valid_indices(self): for i in range(self.batch_size): while True: index = random.randint(self.agent_history_length, self.count - 1) if index < self.agent_history_length: continue if index >= self.current and index - self.agent_history_length <= self.current: continue if self.terminal_flags[index - self.agent_history_length:index].any(): continue break self.indices[i] = index def get_minibatch(self): """ Returns a minibatch of self.batch_size transitions """ if self.count < self.agent_history_length: raise ValueError('Not enough memories to get a minibatch') self._get_valid_indices() for i, idx in enumerate(self.indices): self.states[i] = self._get_state(idx - 1) self.new_states[i] = self._get_state(idx) return self.states, \ self.actions[self.indices], \ self.rewards[self.indices], \ self.new_states, \ self.terminal_flags[self.indices] def init_filter(shape): w = np.random.randn(*shape) * np.sqrt(2.0 / np.prod(shape[1:])) return w.astype(np.float32) def adam(cost, params, lr0=1e-5, beta1=0.9, beta2=0.999, eps=1e-8): # cast lr0 = np.float32(lr0) beta1 = np.float32(beta1) beta2 = np.float32(beta2) eps = np.float32(eps) one = np.float32(1) zero = np.float32(0) grads = T.grad(cost, params) updates = [] time = theano.shared(zero) new_time = time + one updates.append((time, new_time)) lr = lr0*T.sqrt(one - beta2**new_time) / (one - beta1**new_time) for p, g in zip(params, grads): m = theano.shared(p.get_value() * zero) v = theano.shared(p.get_value() * zero) new_m = beta1*m + (one - beta1)*g new_v = beta2*v + (one - beta2)*g*g new_p = p - lr*new_m / (T.sqrt(new_v) + eps) updates.append((m, new_m)) updates.append((v, new_v)) updates.append((p, new_p)) return updates class ConvLayer(object): def __init__(self, mi, mo, filtsz=5, stride=2, f=T.nnet.relu): # mi = input feature map size # mo = output feature map size sz = (mo, mi, filtsz, filtsz) W0 = init_filter(sz) self.W = theano.shared(W0) b0 = np.zeros(mo, dtype=np.float32) self.b = theano.shared(b0) self.stride = (stride, stride) self.params = [self.W, self.b] self.f = f # self.cut = cut def forward(self, X): conv_out = conv2d( input=X, filters=self.W, subsample=self.stride, # border_mode='half', border_mode='valid', ) # cut off 1 pixel from each edge # to make the output the same size as input # like tensorflow # if self.cut: # conv_out = conv_out[:, : ,:self.cut ,:self.cut] return self.f(conv_out + self.b.dimshuffle('x', 0, 'x', 'x')) class HiddenLayer: def __init__(self, M1, M2, f=T.nnet.relu): W = np.random.randn(M1, M2) * np.sqrt(2 / M1) self.W = theano.shared(W.astype(np.float32)) self.b = theano.shared(np.zeros(M2).astype(np.float32)) self.params = [self.W, self.b] self.f = f def forward(self, X): a = X.dot(self.W) + self.b return self.f(a) class DQN: def __init__(self, K, conv_layer_sizes, hidden_layer_sizes): self.K = K # inputs and targets X = T.ftensor4('X') G = T.fvector('G') actions = T.ivector('actions') # create the graph self.conv_layers = [] num_input_filters = 4 # number of filters / color channels current_size = IM_SIZE for num_output_filters, filtersz, stride in conv_layer_sizes: ### not using this currently, it didn't make a difference ### # cut = None # if filtersz % 2 == 0: # if even # cut = (current_size + stride - 1) // stride layer = ConvLayer(num_input_filters, num_output_filters, filtersz, stride) current_size = (current_size + stride - 1) // stride # print("current_size:", current_size) self.conv_layers.append(layer) num_input_filters = num_output_filters # get conv output size Z = X / 255.0 for layer in self.conv_layers: Z = layer.forward(Z) conv_out = Z.flatten(ndim=2) conv_out_op = theano.function(inputs=[X], outputs=conv_out, allow_input_downcast=True) test = conv_out_op(np.random.randn(1, 4, IM_SIZE, IM_SIZE)) flattened_ouput_size = test.shape[1] # build fully connected layers self.layers = [] M1 = flattened_ouput_size print("flattened_ouput_size:", flattened_ouput_size) for M2 in hidden_layer_sizes: layer = HiddenLayer(M1, M2) self.layers.append(layer) M1 = M2 # final layer layer = HiddenLayer(M1, K, lambda x: x) self.layers.append(layer) # collect params for copy self.params = [] for layer in (self.conv_layers + self.layers): self.params += layer.params # calculate final output and cost Z = conv_out for layer in self.layers: Z = layer.forward(Z) Y_hat = Z selected_action_values = Y_hat[T.arange(actions.shape[0]), actions] cost = T.mean((G - selected_action_values)**2) # create train function updates = adam(cost, self.params) # compile functions self.train_op = theano.function( inputs=[X, G, actions], outputs=cost, updates=updates, allow_input_downcast=True ) self.predict_op = theano.function( inputs=[X], outputs=Y_hat, allow_input_downcast=True ) def copy_from(self, other): my_params = self.params other_params = other.params for p, q in zip(my_params, other_params): actual = q.get_value() p.set_value(actual) def predict(self, X): return self.predict_op(X) def update(self, states, actions, targets): return self.train_op(states, targets, actions) def sample_action(self, x, eps): if np.random.random() < eps: return np.random.choice(self.K) else: return np.argmax(self.predict([x])[0]) def learn(model, target_model, experience_replay_buffer, gamma, batch_size): # Sample experiences states, actions, rewards, next_states, dones = experience_replay_buffer.get_minibatch() # Calculate targets next_Qs = target_model.predict(next_states) next_Q = np.amax(next_Qs, axis=1) targets = rewards + np.invert(dones).astype(np.float32) * gamma * next_Q # Update model loss = model.update(states, actions, targets) return loss def play_one( env, total_t, experience_replay_buffer, model, target_model, gamma, batch_size, epsilon, epsilon_change, epsilon_min): t0 = datetime.now() # Reset the environment obs = env.reset() obs_small = downsample_image(obs) state = np.stack([obs_small] * 4, axis=0) loss = None total_time_training = 0 num_steps_in_episode = 0 episode_reward = 0 done = False while not done: # Update target network if total_t % TARGET_UPDATE_PERIOD == 0: target_model.copy_from(model) print("Copied model parameters to target network. total_t = %s, period = %s" % (total_t, TARGET_UPDATE_PERIOD)) # Take action action = model.sample_action(state, epsilon) obs, reward, done, _ = env.step(action) obs_small = downsample_image(obs) next_state = np.append(state[1:], np.expand_dims(obs_small, 0), axis=0) episode_reward += reward # Save the latest experience experience_replay_buffer.add_experience(action, obs_small, reward, done) # Train the model, keep track of time t0_2 = datetime.now() loss = learn(model, target_model, experience_replay_buffer, gamma, batch_size) dt = datetime.now() - t0_2 total_time_training += dt.total_seconds() num_steps_in_episode += 1 state = next_state total_t += 1 epsilon = max(epsilon - epsilon_change, epsilon_min) return total_t, episode_reward, (datetime.now() - t0), num_steps_in_episode, total_time_training/num_steps_in_episode, epsilon def smooth(x): # last 100 n = len(x) y = np.zeros(n) for i in range(n): start = max(0, i - 99) y[i] = float(x[start:(i+1)].sum()) / (i - start + 1) return y if __name__ == '__main__': # hyperparams and initialize stuff conv_layer_sizes = [(32, 8, 4), (64, 4, 2), (64, 3, 1)] hidden_layer_sizes = [512] gamma = 0.99 batch_sz = 32 num_episodes = 5000 total_t = 0 experience_replay_buffer = ReplayMemory() episode_rewards = np.zeros(num_episodes) step_counts = np.zeros(num_episodes) # epsilon # decays linearly until 0.1 epsilon = 1.0 epsilon_min = 0.1 epsilon_change = (epsilon - epsilon_min) / 500000 # Create environment env = gym.envs.make("Breakout-v0") # Create models model = DQN( K=K, conv_layer_sizes=conv_layer_sizes, hidden_layer_sizes=hidden_layer_sizes, ) target_model = DQN( K=K, conv_layer_sizes=conv_layer_sizes, hidden_layer_sizes=hidden_layer_sizes, ) print("Populating experience replay buffer...") obs = env.reset() obs_small = downsample_image(obs) for i in range(MIN_EXPERIENCES): action = np.random.choice(K) obs, reward, done, _ = env.step(action) obs_small = downsample_image(obs) experience_replay_buffer.add_experience(action, obs_small, reward, done) if done: obs = env.reset() # Play a number of episodes and learn! t0 = datetime.now() for i in range(num_episodes): total_t, episode_reward, duration, num_steps_in_episode, time_per_step, epsilon = play_one( env, total_t, experience_replay_buffer, model, target_model, gamma, batch_sz, epsilon, epsilon_change, epsilon_min, ) episode_rewards[i] = episode_reward step_counts[i] = num_steps_in_episode last_100_avg = episode_rewards[max(0, i - 100):i + 1].mean() last_100_avg_steps = step_counts[max(0, i - 100):i + 1].mean() print("Episode:", i, "Duration:", duration, "Num steps:", num_steps_in_episode, "Reward:", episode_reward, "Training time per step:", "%.3f" % time_per_step, "Avg Reward (Last 100):", "%.3f" % last_100_avg, "Avg Steps (Last 100):", "%.1f" % last_100_avg_steps, "Epsilon:", "%.3f" % epsilon ) sys.stdout.flush() print("Total duration:", datetime.now() - t0) # Plot the smoothed returns y = smooth(episode_rewards) plt.plot(episode_rewards, label='orig') plt.plot(y, label='smoothed') plt.legend() plt.show() ================================================ FILE: rl2/cartpole/dqn_tf.py ================================================ # https://deeplearningcourses.com/c/deep-reinforcement-learning-in-python # https://www.udemy.com/deep-reinforcement-learning-in-python from __future__ import print_function, division from builtins import range # Note: you may need to update your version of future # sudo pip install -U future import gym import os import sys import numpy as np import tensorflow as tf import matplotlib.pyplot as plt from gym import wrappers from datetime import datetime from q_learning_bins import plot_running_avg gym_minor_version = int(gym.__version__.split('.')[1]) if gym_minor_version >= 19: exit("Please install OpenAI Gym 0.19.0 or earlier") if tf.__version__.startswith('2'): exit("Please install Tensorflow 1.x") # global counter global_iters = 0 # a version of HiddenLayer that keeps track of params class HiddenLayer: def __init__(self, M1, M2, f=tf.nn.tanh, use_bias=True): self.W = tf.Variable(tf.random_normal(shape=(M1, M2))) self.params = [self.W] self.use_bias = use_bias if use_bias: self.b = tf.Variable(np.zeros(M2).astype(np.float32)) self.params.append(self.b) self.f = f def forward(self, X): if self.use_bias: a = tf.matmul(X, self.W) + self.b else: a = tf.matmul(X, self.W) return self.f(a) class DQN: def __init__(self, D, K, hidden_layer_sizes, gamma, max_experiences=10000, min_experiences=100, batch_sz=32): self.K = K # create the graph self.layers = [] M1 = D for M2 in hidden_layer_sizes: layer = HiddenLayer(M1, M2) self.layers.append(layer) M1 = M2 # final layer layer = HiddenLayer(M1, K, lambda x: x) self.layers.append(layer) # collect params for copy self.params = [] for layer in self.layers: self.params += layer.params # inputs and targets self.X = tf.placeholder(tf.float32, shape=(None, D), name='X') self.G = tf.placeholder(tf.float32, shape=(None,), name='G') self.actions = tf.placeholder(tf.int32, shape=(None,), name='actions') # calculate output and cost Z = self.X for layer in self.layers: Z = layer.forward(Z) Y_hat = Z self.predict_op = Y_hat selected_action_values = tf.reduce_sum( Y_hat * tf.one_hot(self.actions, K), reduction_indices=[1] ) cost = tf.reduce_sum(tf.square(self.G - selected_action_values)) self.train_op = tf.train.AdamOptimizer(1e-2).minimize(cost) # self.train_op = tf.train.AdagradOptimizer(1e-2).minimize(cost) # self.train_op = tf.train.MomentumOptimizer(1e-3, momentum=0.9).minimize(cost) # self.train_op = tf.train.GradientDescentOptimizer(1e-4).minimize(cost) # create replay memory self.experience = {'s': [], 'a': [], 'r': [], 's2': [], 'done': []} self.max_experiences = max_experiences self.min_experiences = min_experiences self.batch_sz = batch_sz self.gamma = gamma def set_session(self, session): self.session = session def copy_from(self, other): # collect all the ops ops = [] my_params = self.params other_params = other.params for p, q in zip(my_params, other_params): actual = self.session.run(q) op = p.assign(actual) ops.append(op) # now run them all self.session.run(ops) def predict(self, X): X = np.atleast_2d(X) return self.session.run(self.predict_op, feed_dict={self.X: X}) def train(self, target_network): # sample a random batch from buffer, do an iteration of GD if len(self.experience['s']) < self.min_experiences: # don't do anything if we don't have enough experience return # randomly select a batch idx = np.random.choice(len(self.experience['s']), size=self.batch_sz, replace=False) # print("idx:", idx) states = [self.experience['s'][i] for i in idx] actions = [self.experience['a'][i] for i in idx] rewards = [self.experience['r'][i] for i in idx] next_states = [self.experience['s2'][i] for i in idx] dones = [self.experience['done'][i] for i in idx] next_Q = np.max(target_network.predict(next_states), axis=1) targets = [r + self.gamma*next_q if not done else r for r, next_q, done in zip(rewards, next_Q, dones)] # call optimizer self.session.run( self.train_op, feed_dict={ self.X: states, self.G: targets, self.actions: actions } ) def add_experience(self, s, a, r, s2, done): if len(self.experience['s']) >= self.max_experiences: self.experience['s'].pop(0) self.experience['a'].pop(0) self.experience['r'].pop(0) self.experience['s2'].pop(0) self.experience['done'].pop(0) self.experience['s'].append(s) self.experience['a'].append(a) self.experience['r'].append(r) self.experience['s2'].append(s2) self.experience['done'].append(done) def sample_action(self, x, eps): if np.random.random() < eps: return np.random.choice(self.K) else: X = np.atleast_2d(x) return np.argmax(self.predict(X)[0]) def play_one(env, model, tmodel, eps, gamma, copy_period): global global_iters observation = env.reset() done = False totalreward = 0 iters = 0 while not done and iters < 2000: # if we reach 2000, just quit, don't want this going forever # the 200 limit seems a bit early action = model.sample_action(observation, eps) prev_observation = observation observation, reward, done, info = env.step(action) totalreward += reward if done: reward = -200 # update the model model.add_experience(prev_observation, action, reward, observation, done) model.train(tmodel) iters += 1 global_iters += 1 if global_iters % copy_period == 0: tmodel.copy_from(model) return totalreward def main(): env = gym.make('CartPole-v0') gamma = 0.99 copy_period = 50 D = len(env.observation_space.sample()) K = env.action_space.n sizes = [200,200] model = DQN(D, K, sizes, gamma) tmodel = DQN(D, K, sizes, gamma) init = tf.global_variables_initializer() session = tf.InteractiveSession() session.run(init) model.set_session(session) tmodel.set_session(session) if 'monitor' in sys.argv: filename = os.path.basename(__file__).split('.')[0] monitor_dir = './' + filename + '_' + str(datetime.now()) env = wrappers.Monitor(env, monitor_dir) N = 500 totalrewards = np.empty(N) costs = np.empty(N) for n in range(N): eps = 1.0/np.sqrt(n+1) totalreward = play_one(env, model, tmodel, eps, gamma, copy_period) totalrewards[n] = totalreward if n % 100 == 0: print("episode:", n, "total reward:", totalreward, "eps:", eps, "avg reward (last 100):", totalrewards[max(0, n-100):(n+1)].mean()) print("avg reward for last 100 episodes:", totalrewards[-100:].mean()) print("total steps:", totalrewards.sum()) plt.plot(totalrewards) plt.title("Rewards") plt.show() plot_running_avg(totalrewards) if __name__ == '__main__': main() ================================================ FILE: rl2/cartpole/dqn_theano.py ================================================ # https://deeplearningcourses.com/c/deep-reinforcement-learning-in-python # https://www.udemy.com/deep-reinforcement-learning-in-python from __future__ import print_function, division from builtins import range # Note: you may need to update your version of future # sudo pip install -U future import gym import os import sys import numpy as np import theano import theano.tensor as T import matplotlib.pyplot as plt from gym import wrappers from datetime import datetime from q_learning_bins import plot_running_avg gym_minor_version = int(gym.__version__.split('.')[1]) if gym_minor_version >= 19: exit("Please install OpenAI Gym 0.19.0 or earlier") # global counter global_iters = 0 # helper for adam optimizer # use tensorflow defaults def adam(cost, params, lr0=1e-2, beta1=0.9, beta2=0.999, eps=1e-8): grads = T.grad(cost, params) updates = [] time = theano.shared(0) new_time = time + 1 updates.append((time, new_time)) lr = lr0*T.sqrt(1 - beta2**new_time) / (1 - beta1**new_time) for p, g in zip(params, grads): m = theano.shared(p.get_value() * 0.) v = theano.shared(p.get_value() * 0.) new_m = beta1*m + (1 - beta1)*g new_v = beta2*v + (1 - beta2)*g*g new_p = p - lr*new_m / (T.sqrt(new_v) + eps) updates.append((m, new_m)) updates.append((v, new_v)) updates.append((p, new_p)) return updates # a version of HiddenLayer that keeps track of params class HiddenLayer: def __init__(self, M1, M2, f=T.tanh, use_bias=True): self.W = theano.shared(np.random.randn(M1, M2) * np.sqrt(2 / M1)) self.params = [self.W] self.use_bias = use_bias if use_bias: self.b = theano.shared(np.zeros(M2)) self.params += [self.b] self.f = f def forward(self, X): if self.use_bias: a = X.dot(self.W) + self.b else: a = X.dot(self.W) return self.f(a) class DQN: def __init__(self, D, K, hidden_layer_sizes, gamma, max_experiences=10000, min_experiences=100, batch_sz=32): self.K = K lr = 1e-2 mu = 0. decay = 0.99 # create the graph self.layers = [] M1 = D for M2 in hidden_layer_sizes: layer = HiddenLayer(M1, M2) self.layers.append(layer) M1 = M2 # final layer layer = HiddenLayer(M1, K, lambda x: x) self.layers.append(layer) # collect params for copy self.params = [] for layer in self.layers: self.params += layer.params # inputs and targets X = T.matrix('X') G = T.vector('G') actions = T.ivector('actions') # calculate output and cost Z = X for layer in self.layers: Z = layer.forward(Z) Y_hat = Z selected_action_values = Y_hat[T.arange(actions.shape[0]), actions] cost = T.sum((G - selected_action_values)**2) # create train function updates = adam(cost, self.params) # compile functions self.train_op = theano.function( inputs=[X, G, actions], updates=updates, allow_input_downcast=True ) self.predict_op = theano.function( inputs=[X], outputs=Y_hat, allow_input_downcast=True ) # create replay memory self.experience = {'s': [], 'a': [], 'r': [], 's2': [], 'done': []} self.max_experiences = max_experiences self.min_experiences = min_experiences self.batch_sz = batch_sz self.gamma = gamma def copy_from(self, other): my_params = self.params other_params = other.params for p, q in zip(my_params, other_params): actual = q.get_value() p.set_value(actual) def predict(self, X): X = np.atleast_2d(X) return self.predict_op(X) def train(self, target_network): # sample a random batch from buffer, do an iteration of GD if len(self.experience['s']) < self.min_experiences: # don't do anything if we don't have enough experience return # randomly select a batch idx = np.random.choice(len(self.experience['s']), size=self.batch_sz, replace=False) # print("idx:", idx) states = [self.experience['s'][i] for i in idx] actions = [self.experience['a'][i] for i in idx] rewards = [self.experience['r'][i] for i in idx] next_states = [self.experience['s2'][i] for i in idx] dones = [self.experience['done'][i] for i in idx] next_Q = np.max(target_network.predict(next_states), axis=1) targets = [r + self.gamma*next_q if not done else r for r, next_q, done in zip(rewards, next_Q, dones)] # call optimizer self.train_op(states, targets, actions) def add_experience(self, s, a, r, s2, done): if len(self.experience['s']) >= self.max_experiences: self.experience['s'].pop(0) self.experience['a'].pop(0) self.experience['r'].pop(0) self.experience['s2'].pop(0) self.experience['done'].pop(0) self.experience['s'].append(s) self.experience['a'].append(a) self.experience['r'].append(r) self.experience['s2'].append(s2) self.experience['done'].append(done) def sample_action(self, x, eps): if np.random.random() < eps: return np.random.choice(self.K) else: X = np.atleast_2d(x) return np.argmax(self.predict(X)[0]) def play_one(env, model, tmodel, eps, gamma, copy_period): global global_iters observation = env.reset() done = False totalreward = 0 iters = 0 while not done and iters < 2000: # if we reach 2000, just quit, don't want this going forever # the 200 limit seems a bit early action = model.sample_action(observation, eps) prev_observation = observation observation, reward, done, info = env.step(action) totalreward += reward if done: reward = -200 # update the model model.add_experience(prev_observation, action, reward, observation, done) model.train(tmodel) iters += 1 global_iters += 1 if global_iters % copy_period == 0: tmodel.copy_from(model) return totalreward def main(): env = gym.make('CartPole-v0') gamma = 0.99 copy_period = 50 D = len(env.observation_space.sample()) K = env.action_space.n sizes = [200,200] model = DQN(D, K, sizes, gamma) tmodel = DQN(D, K, sizes, gamma) if 'monitor' in sys.argv: filename = os.path.basename(__file__).split('.')[0] monitor_dir = './' + filename + '_' + str(datetime.now()) env = wrappers.Monitor(env, monitor_dir) N = 500 totalrewards = np.empty(N) costs = np.empty(N) for n in range(N): eps = 1.0/np.sqrt(n+1) totalreward = play_one(env, model, tmodel, eps, gamma, copy_period) totalrewards[n] = totalreward if n % 100 == 0: print("episode:", n, "total reward:", totalreward, "eps:", eps, "avg reward (last 100):", totalrewards[max(0, n-100):(n+1)].mean()) print("avg reward for last 100 episodes:", totalrewards[-100:].mean()) print("total steps:", totalrewards.sum()) plt.plot(totalrewards) plt.title("Rewards") plt.show() plot_running_avg(totalrewards) if __name__ == '__main__': main() ================================================ FILE: rl2/cartpole/pg_tf.py ================================================ # https://deeplearningcourses.com/c/deep-reinforcement-learning-in-python # https://www.udemy.com/deep-reinforcement-learning-in-python from __future__ import print_function, division from builtins import range # Note: you may need to update your version of future # sudo pip install -U future # Inspired by https://github.com/dennybritz/reinforcement-learning import gym import os import sys import numpy as np import tensorflow as tf import matplotlib.pyplot as plt from gym import wrappers from datetime import datetime from q_learning_bins import plot_running_avg gym_minor_version = int(gym.__version__.split('.')[1]) if gym_minor_version >= 19: exit("Please install OpenAI Gym 0.19.0 or earlier") if tf.__version__.startswith('2'): exit("Please install Tensorflow 1.x") # so you can test different architectures class HiddenLayer: def __init__(self, M1, M2, f=tf.nn.tanh, use_bias=True): self.W = tf.Variable(tf.random_normal(shape=(M1, M2))) self.use_bias = use_bias if use_bias: self.b = tf.Variable(np.zeros(M2).astype(np.float32)) self.f = f def forward(self, X): if self.use_bias: a = tf.matmul(X, self.W) + self.b else: a = tf.matmul(X, self.W) return self.f(a) # approximates pi(a | s) class PolicyModel: def __init__(self, D, K, hidden_layer_sizes): # create the graph # K = number of actions self.layers = [] M1 = D for M2 in hidden_layer_sizes: layer = HiddenLayer(M1, M2) self.layers.append(layer) M1 = M2 # final layer # layer = HiddenLayer(M1, K, lambda x: x, use_bias=False) layer = HiddenLayer(M1, K, tf.nn.softmax, use_bias=False) self.layers.append(layer) # inputs and targets self.X = tf.placeholder(tf.float32, shape=(None, D), name='X') self.actions = tf.placeholder(tf.int32, shape=(None,), name='actions') self.advantages = tf.placeholder(tf.float32, shape=(None,), name='advantages') # calculate output and cost Z = self.X for layer in self.layers: Z = layer.forward(Z) p_a_given_s = Z # action_scores = Z # p_a_given_s = tf.nn.softmax(action_scores) # self.action_scores = action_scores self.predict_op = p_a_given_s # self.one_hot_actions = tf.one_hot(self.actions, K) selected_probs = tf.log( tf.reduce_sum( p_a_given_s * tf.one_hot(self.actions, K), reduction_indices=[1] ) ) # self.selected_probs = selected_probs cost = -tf.reduce_sum(self.advantages * selected_probs) # self.cost = cost # self.train_op = tf.train.AdamOptimizer(1e-1).minimize(cost) self.train_op = tf.train.AdagradOptimizer(1e-1).minimize(cost) # self.train_op = tf.train.MomentumOptimizer(1e-4, momentum=0.9).minimize(cost) # self.train_op = tf.train.GradientDescentOptimizer(1e-4).minimize(cost) def set_session(self, session): self.session = session def partial_fit(self, X, actions, advantages): X = np.atleast_2d(X) actions = np.atleast_1d(actions) advantages = np.atleast_1d(advantages) self.session.run( self.train_op, feed_dict={ self.X: X, self.actions: actions, self.advantages: advantages, } ) def predict(self, X): X = np.atleast_2d(X) return self.session.run(self.predict_op, feed_dict={self.X: X}) def sample_action(self, X): p = self.predict(X)[0] return np.random.choice(len(p), p=p) # approximates V(s) class ValueModel: def __init__(self, D, hidden_layer_sizes): # create the graph self.layers = [] M1 = D for M2 in hidden_layer_sizes: layer = HiddenLayer(M1, M2) self.layers.append(layer) M1 = M2 # final layer layer = HiddenLayer(M1, 1, lambda x: x) self.layers.append(layer) # inputs and targets self.X = tf.placeholder(tf.float32, shape=(None, D), name='X') self.Y = tf.placeholder(tf.float32, shape=(None,), name='Y') # calculate output and cost Z = self.X for layer in self.layers: Z = layer.forward(Z) Y_hat = tf.reshape(Z, [-1]) # the output self.predict_op = Y_hat cost = tf.reduce_sum(tf.square(self.Y - Y_hat)) # self.train_op = tf.train.AdamOptimizer(1e-2).minimize(cost) # self.train_op = tf.train.MomentumOptimizer(1e-2, momentum=0.9).minimize(cost) self.train_op = tf.train.GradientDescentOptimizer(1e-4).minimize(cost) def set_session(self, session): self.session = session def partial_fit(self, X, Y): X = np.atleast_2d(X) Y = np.atleast_1d(Y) self.session.run(self.train_op, feed_dict={self.X: X, self.Y: Y}) def predict(self, X): X = np.atleast_2d(X) return self.session.run(self.predict_op, feed_dict={self.X: X}) def play_one_td(env, pmodel, vmodel, gamma): observation = env.reset() done = False totalreward = 0 iters = 0 while not done and iters < 2000: # if we reach 2000, just quit, don't want this going forever # the 200 limit seems a bit early action = pmodel.sample_action(observation) prev_observation = observation observation, reward, done, info = env.step(action) # if done: # reward = -200 # update the models V_next = vmodel.predict(observation)[0] G = reward + gamma*V_next advantage = G - vmodel.predict(prev_observation) pmodel.partial_fit(prev_observation, action, advantage) vmodel.partial_fit(prev_observation, G) if reward == 1: # if we changed the reward to -200 totalreward += reward iters += 1 return totalreward def play_one_mc(env, pmodel, vmodel, gamma): observation = env.reset() done = False totalreward = 0 iters = 0 states = [] actions = [] rewards = [] reward = 0 while not done and iters < 2000: # if we reach 2000, just quit, don't want this going forever # the 200 limit seems a bit early action = pmodel.sample_action(observation) states.append(observation) actions.append(action) rewards.append(reward) prev_observation = observation observation, reward, done, info = env.step(action) if done: reward = -200 if reward == 1: # if we changed the reward to -200 totalreward += reward iters += 1 # save the final (s,a,r) tuple action = pmodel.sample_action(observation) states.append(observation) actions.append(action) rewards.append(reward) returns = [] advantages = [] G = 0 for s, r in zip(reversed(states), reversed(rewards)): returns.append(G) advantages.append(G - vmodel.predict(s)[0]) G = r + gamma*G returns.reverse() advantages.reverse() # update the models pmodel.partial_fit(states, actions, advantages) vmodel.partial_fit(states, returns) return totalreward def main(): env = gym.make('CartPole-v0') D = env.observation_space.shape[0] K = env.action_space.n pmodel = PolicyModel(D, K, []) vmodel = ValueModel(D, [10]) init = tf.global_variables_initializer() session = tf.InteractiveSession() session.run(init) pmodel.set_session(session) vmodel.set_session(session) gamma = 0.99 if 'monitor' in sys.argv: filename = os.path.basename(__file__).split('.')[0] monitor_dir = './' + filename + '_' + str(datetime.now()) env = wrappers.Monitor(env, monitor_dir) N = 1000 totalrewards = np.empty(N) costs = np.empty(N) for n in range(N): totalreward = play_one_mc(env, pmodel, vmodel, gamma) totalrewards[n] = totalreward if n % 100 == 0: print("episode:", n, "total reward:", totalreward, "avg reward (last 100):", totalrewards[max(0, n-100):(n+1)].mean()) print("avg reward for last 100 episodes:", totalrewards[-100:].mean()) print("total steps:", totalrewards.sum()) plt.plot(totalrewards) plt.title("Rewards") plt.show() plot_running_avg(totalrewards) if __name__ == '__main__': main() ================================================ FILE: rl2/cartpole/pg_theano.py ================================================ # https://deeplearningcourses.com/c/deep-reinforcement-learning-in-python # https://www.udemy.com/deep-reinforcement-learning-in-python from __future__ import print_function, division from builtins import range # Note: you may need to update your version of future # sudo pip install -U future # Inspired by https://github.com/dennybritz/reinforcement-learning import gym import os import sys import numpy as np import theano import theano.tensor as T import matplotlib.pyplot as plt from gym import wrappers from datetime import datetime from q_learning_bins import plot_running_avg gym_minor_version = int(gym.__version__.split('.')[1]) if gym_minor_version >= 19: exit("Please install OpenAI Gym 0.19.0 or earlier") # so you can test different architectures class HiddenLayer: def __init__(self, M1, M2, f=T.tanh, use_bias=True): self.W = theano.shared(np.random.randn(M1, M2) * np.sqrt(2 / M1)) self.params = [self.W] self.use_bias = use_bias if use_bias: self.b = theano.shared(np.zeros(M2)) self.params += [self.b] self.f = f def forward(self, X): if self.use_bias: a = X.dot(self.W) + self.b else: a = X.dot(self.W) return self.f(a) # approximates pi(a | s) class PolicyModel: def __init__(self, D, K, hidden_layer_sizes): # learning rate and other hyperparams lr = 1e-4 # create the graph # K = number of actions self.layers = [] M1 = D for M2 in hidden_layer_sizes: layer = HiddenLayer(M1, M2) self.layers.append(layer) M1 = M2 # final layer layer = HiddenLayer(M1, K, lambda x: x, use_bias=False) self.layers.append(layer) # get all params for gradient later params = [] for layer in self.layers: params += layer.params # inputs and targets X = T.matrix('X') actions = T.ivector('actions') advantages = T.vector('advantages') # calculate output and cost Z = X for layer in self.layers: Z = layer.forward(Z) action_scores = Z p_a_given_s = T.nnet.softmax(action_scores) selected_probs = T.log(p_a_given_s[T.arange(actions.shape[0]), actions]) cost = -T.sum(advantages * selected_probs) # specify update rule grads = T.grad(cost, params) updates = [(p, p - lr*g) for p, g in zip(params, grads)] # compile functions self.train_op = theano.function( inputs=[X, actions, advantages], updates=updates, allow_input_downcast=True ) self.predict_op = theano.function( inputs=[X], outputs=p_a_given_s, allow_input_downcast=True ) def partial_fit(self, X, actions, advantages): X = np.atleast_2d(X) actions = np.atleast_1d(actions) advantages = np.atleast_1d(advantages) self.train_op(X, actions, advantages) def predict(self, X): X = np.atleast_2d(X) return self.predict_op(X) def sample_action(self, X): p = self.predict(X)[0] nonans = np.all(~np.isnan(p)) assert(nonans) return np.random.choice(len(p), p=p) # approximates V(s) class ValueModel: def __init__(self, D, hidden_layer_sizes): # constant learning rate is fine lr = 1e-4 # create the graph self.layers = [] M1 = D for M2 in hidden_layer_sizes: layer = HiddenLayer(M1, M2) self.layers.append(layer) M1 = M2 # final layer layer = HiddenLayer(M1, 1, lambda x: x) self.layers.append(layer) # get all params for gradient later params = [] for layer in self.layers: params += layer.params # inputs and targets X = T.matrix('X') Y = T.vector('Y') # calculate output and cost Z = X for layer in self.layers: Z = layer.forward(Z) Y_hat = T.flatten(Z) cost = T.sum((Y - Y_hat)**2) # specify update rule grads = T.grad(cost, params) updates = [(p, p - lr*g) for p, g in zip(params, grads)] # compile functions self.train_op = theano.function( inputs=[X, Y], updates=updates, allow_input_downcast=True ) self.predict_op = theano.function( inputs=[X], outputs=Y_hat, allow_input_downcast=True ) def partial_fit(self, X, Y): X = np.atleast_2d(X) Y = np.atleast_1d(Y) self.train_op(X, Y) def predict(self, X): X = np.atleast_2d(X) return self.predict_op(X) def play_one_td(env, pmodel, vmodel, gamma): observation = env.reset() done = False totalreward = 0 iters = 0 while not done and iters < 2000: # if we reach 2000, just quit, don't want this going forever # the 200 limit seems a bit early action = pmodel.sample_action(observation) prev_observation = observation observation, reward, done, info = env.step(action) if done: reward = -200 # update the models V_next = vmodel.predict(observation) G = reward + gamma*np.max(V_next) advantage = G - vmodel.predict(prev_observation) pmodel.partial_fit(prev_observation, action, advantage) vmodel.partial_fit(prev_observation, G) if reward == 1: # if we changed the reward to -200 totalreward += reward iters += 1 return totalreward def play_one_mc(env, pmodel, vmodel, gamma): observation = env.reset() done = False totalreward = 0 iters = 0 states = [] actions = [] rewards = [] reward = 0 while not done and iters < 2000: # if we reach 2000, just quit, don't want this going forever # the 200 limit seems a bit early action = pmodel.sample_action(observation) states.append(observation) actions.append(action) rewards.append(reward) prev_observation = observation observation, reward, done, info = env.step(action) if done: reward = -200 if reward == 1: # if we changed the reward to -200 totalreward += reward iters += 1 # save the final (s,a,r) tuple action = pmodel.sample_action(observation) states.append(observation) actions.append(action) rewards.append(reward) returns = [] advantages = [] G = 0 for s, r in zip(reversed(states), reversed(rewards)): returns.append(G) advantages.append(G - vmodel.predict(s)[0]) G = r + gamma*G returns.reverse() advantages.reverse() # update the models pmodel.partial_fit(states[1:], actions[1:], advantages[1:]) vmodel.partial_fit(states, returns) return totalreward def main(): env = gym.make('CartPole-v0') D = env.observation_space.shape[0] K = env.action_space.n pmodel = PolicyModel(D, K, []) vmodel = ValueModel(D, [10]) gamma = 0.99 if 'monitor' in sys.argv: filename = os.path.basename(__file__).split('.')[0] monitor_dir = './' + filename + '_' + str(datetime.now()) env = wrappers.Monitor(env, monitor_dir) N = 1000 totalrewards = np.empty(N) costs = np.empty(N) for n in range(N): totalreward = play_one_mc(env, pmodel, vmodel, gamma) totalrewards[n] = totalreward if n % 100 == 0: print("episode:", n, "total reward:", totalreward, "avg reward (last 100):", totalrewards[max(0, n-100):(n+1)].mean()) print("avg reward for last 100 episodes:", totalrewards[-100:].mean()) print("total steps:", totalrewards.sum()) plt.plot(totalrewards) plt.title("Rewards") plt.show() plot_running_avg(totalrewards) if __name__ == '__main__': main() ================================================ FILE: rl2/cartpole/q_learning.py ================================================ # https://deeplearningcourses.com/c/deep-reinforcement-learning-in-python # https://www.udemy.com/deep-reinforcement-learning-in-python from __future__ import print_function, division from builtins import range # Note: you may need to update your version of future # sudo pip install -U future # Inspired by https://github.com/dennybritz/reinforcement-learning # Works best w/ multiply RBF kernels at var=0.05, 0.1, 0.5, 1.0 import gym import os import sys import numpy as np import matplotlib.pyplot as plt from gym import wrappers from datetime import datetime from sklearn.pipeline import FeatureUnion from sklearn.preprocessing import StandardScaler from sklearn.kernel_approximation import RBFSampler from q_learning_bins import plot_running_avg gym_minor_version = int(gym.__version__.split('.')[1]) if gym_minor_version >= 19: exit("Please install OpenAI Gym 0.19.0 or earlier") class SGDRegressor: def __init__(self, D): self.w = np.random.randn(D) / np.sqrt(D) self.lr = 0.1 def partial_fit(self, X, Y): self.w += self.lr*(Y - X.dot(self.w)).dot(X) def predict(self, X): return X.dot(self.w) class FeatureTransformer: def __init__(self, env): # observation_examples = np.array([env.observation_space.sample() for x in range(10000)]) # NOTE!! state samples are poor, b/c you get velocities --> infinity observation_examples = np.random.random((20000, 4))*2 - 1 scaler = StandardScaler() scaler.fit(observation_examples) # Used to converte a state to a featurizes represenation. # We use RBF kernels with different variances to cover different parts of the space featurizer = FeatureUnion([ ("rbf1", RBFSampler(gamma=0.05, n_components=1000)), ("rbf2", RBFSampler(gamma=1.0, n_components=1000)), ("rbf3", RBFSampler(gamma=0.5, n_components=1000)), ("rbf4", RBFSampler(gamma=0.1, n_components=1000)) ]) feature_examples = featurizer.fit_transform(scaler.transform(observation_examples)) self.dimensions = feature_examples.shape[1] self.scaler = scaler self.featurizer = featurizer def transform(self, observations): scaled = self.scaler.transform(observations) return self.featurizer.transform(scaled) # Holds one SGDRegressor for each action class Model: def __init__(self, env, feature_transformer): self.env = env self.models = [] self.feature_transformer = feature_transformer for i in range(env.action_space.n): model = SGDRegressor(feature_transformer.dimensions) self.models.append(model) def predict(self, s): X = self.feature_transformer.transform(np.atleast_2d(s)) result = np.stack([m.predict(X) for m in self.models]).T return result def update(self, s, a, G): X = self.feature_transformer.transform(np.atleast_2d(s)) self.models[a].partial_fit(X, [G]) def sample_action(self, s, eps): if np.random.random() < eps: return self.env.action_space.sample() else: return np.argmax(self.predict(s)) def play_one(env, model, eps, gamma): observation = env.reset() done = False totalreward = 0 iters = 0 while not done and iters < 2000: # if we reach 2000, just quit, don't want this going forever # the 200 limit seems a bit early action = model.sample_action(observation, eps) prev_observation = observation observation, reward, done, info = env.step(action) if done: reward = -200 # update the model next = model.predict(observation) # print(next.shape) assert(next.shape == (1, env.action_space.n)) G = reward + gamma*np.max(next) model.update(prev_observation, action, G) if reward == 1: # if we changed the reward to -200 totalreward += reward iters += 1 return totalreward def main(): env = gym.make('CartPole-v0') ft = FeatureTransformer(env) model = Model(env, ft) gamma = 0.99 if 'monitor' in sys.argv: filename = os.path.basename(__file__).split('.')[0] monitor_dir = './' + filename + '_' + str(datetime.now()) env = wrappers.Monitor(env, monitor_dir) N = 500 totalrewards = np.empty(N) costs = np.empty(N) for n in range(N): eps = 1.0/np.sqrt(n+1) totalreward = play_one(env, model, eps, gamma) totalrewards[n] = totalreward if n % 100 == 0: print("episode:", n, "total reward:", totalreward, "eps:", eps, "avg reward (last 100):", totalrewards[max(0, n-100):(n+1)].mean()) print("avg reward for last 100 episodes:", totalrewards[-100:].mean()) print("total steps:", totalrewards.sum()) plt.plot(totalrewards) plt.title("Rewards") plt.show() plot_running_avg(totalrewards) if __name__ == '__main__': main() ================================================ FILE: rl2/cartpole/q_learning_bins.py ================================================ # https://deeplearningcourses.com/c/deep-reinforcement-learning-in-python # https://www.udemy.com/deep-reinforcement-learning-in-python from __future__ import print_function, division from builtins import range # Note: you may need to update your version of future # if builtins is not defined # sudo pip install -U future import gym import os import sys import numpy as np import pandas as pd import matplotlib.pyplot as plt from gym import wrappers from datetime import datetime gym_minor_version = int(gym.__version__.split('.')[1]) if gym_minor_version >= 19: exit("Please install OpenAI Gym 0.19.0 or earlier") # turns list of integers into an int # Ex. # build_state([1,2,3,4,5]) -> 12345 def build_state(features): return int("".join(map(lambda feature: str(int(feature)), features))) def to_bin(value, bins): return np.digitize(x=[value], bins=bins)[0] class FeatureTransformer: def __init__(self): # Note: to make this better you could look at how often each bin was # actually used while running the script. # It's not clear from the high/low values nor sample() what values # we really expect to get. self.cart_position_bins = np.linspace(-2.4, 2.4, 9) self.cart_velocity_bins = np.linspace(-2, 2, 9) # (-inf, inf) (I did not check that these were good values) self.pole_angle_bins = np.linspace(-0.4, 0.4, 9) self.pole_velocity_bins = np.linspace(-3.5, 3.5, 9) # (-inf, inf) (I did not check that these were good values) def transform(self, observation): # returns an int cart_pos, cart_vel, pole_angle, pole_vel = observation return build_state([ to_bin(cart_pos, self.cart_position_bins), to_bin(cart_vel, self.cart_velocity_bins), to_bin(pole_angle, self.pole_angle_bins), to_bin(pole_vel, self.pole_velocity_bins), ]) class Model: def __init__(self, env, feature_transformer): self.env = env self.feature_transformer = feature_transformer num_states = 10**env.observation_space.shape[0] num_actions = env.action_space.n self.Q = np.random.uniform(low=-1, high=1, size=(num_states, num_actions)) def predict(self, s): x = self.feature_transformer.transform(s) return self.Q[x] def update(self, s, a, G): x = self.feature_transformer.transform(s) self.Q[x,a] += 1e-2*(G - self.Q[x,a]) def sample_action(self, s, eps): if np.random.random() < eps: return self.env.action_space.sample() else: p = self.predict(s) return np.argmax(p) def play_one(model, eps, gamma): observation = env.reset() done = False totalreward = 0 iters = 0 while not done and iters < 10000: action = model.sample_action(observation, eps) prev_observation = observation observation, reward, done, info = env.step(action) totalreward += reward if done and iters < 199: reward = -300 # update the model G = reward + gamma*np.max(model.predict(observation)) model.update(prev_observation, action, G) iters += 1 return totalreward def plot_running_avg(totalrewards): N = len(totalrewards) running_avg = np.empty(N) for t in range(N): running_avg[t] = totalrewards[max(0, t-100):(t+1)].mean() plt.plot(running_avg) plt.title("Running Average") plt.show() if __name__ == '__main__': env = gym.make('CartPole-v0') ft = FeatureTransformer() model = Model(env, ft) gamma = 0.9 if 'monitor' in sys.argv: filename = os.path.basename(__file__).split('.')[0] monitor_dir = './' + filename + '_' + str(datetime.now()) env = wrappers.Monitor(env, monitor_dir) N = 10000 totalrewards = np.empty(N) for n in range(N): eps = 1.0/np.sqrt(n+1) totalreward = play_one(model, eps, gamma) totalrewards[n] = totalreward if n % 100 == 0: print("episode:", n, "total reward:", totalreward, "eps:", eps) print("avg reward for last 100 episodes:", totalrewards[-100:].mean()) print("total steps:", totalrewards.sum()) plt.plot(totalrewards) plt.title("Rewards") plt.show() plot_running_avg(totalrewards) ================================================ FILE: rl2/cartpole/random_search.py ================================================ # https://deeplearningcourses.com/c/deep-reinforcement-learning-in-python # https://www.udemy.com/deep-reinforcement-learning-in-python from __future__ import print_function, division from builtins import range # Note: you may need to update your version of future # sudo pip install -U future import gym import numpy as np import matplotlib.pyplot as plt gym_minor_version = int(gym.__version__.split('.')[1]) if gym_minor_version >= 19: exit("Please install OpenAI Gym 0.19.0 or earlier") def get_action(s, w): return 1 if s.dot(w) > 0 else 0 def play_one_episode(env, params): observation = env.reset() done = False t = 0 while not done and t < 10000: # env.render() t += 1 action = get_action(observation, params) observation, reward, done, info = env.step(action) if done: break return t def play_multiple_episodes(env, T, params): episode_lengths = np.empty(T) for i in range(T): episode_lengths[i] = play_one_episode(env, params) avg_length = episode_lengths.mean() print("avg length:", avg_length) return avg_length def random_search(env): episode_lengths = [] best = 0 params = None for t in range(100): new_params = np.random.random(4)*2 - 1 avg_length = play_multiple_episodes(env, 100, new_params) episode_lengths.append(avg_length) if avg_length > best: params = new_params best = avg_length return episode_lengths, params if __name__ == '__main__': env = gym.make('CartPole-v0') episode_lengths, params = random_search(env) plt.plot(episode_lengths) plt.show() # play a final set of episodes print("***Final run with final weights***") play_multiple_episodes(env, 100, params) ================================================ FILE: rl2/cartpole/save_a_video.py ================================================ # https://deeplearningcourses.com/c/deep-reinforcement-learning-in-python # https://www.udemy.com/deep-reinforcement-learning-in-python from __future__ import print_function, division from builtins import range # Note: you may need to update your version of future # sudo pip install -U future import gym from gym import wrappers import numpy as np import matplotlib.pyplot as plt gym_minor_version = int(gym.__version__.split('.')[1]) if gym_minor_version >= 19: exit("Please install OpenAI Gym 0.19.0 or earlier") def get_action(s, w): return 1 if s.dot(w) > 0 else 0 def play_one_episode(env, params): observation = env.reset() done = False t = 0 while not done and t < 10000: t += 1 action = get_action(observation, params) observation, reward, done, info = env.step(action) if done: break return t def play_multiple_episodes(env, T, params): episode_lengths = np.empty(T) for i in range(T): episode_lengths[i] = play_one_episode(env, params) avg_length = episode_lengths.mean() print("avg length:", avg_length) return avg_length def random_search(env): episode_lengths = [] best = 0 params = None for t in range(100): new_params = np.random.random(4)*2 - 1 avg_length = play_multiple_episodes(env, 100, new_params) episode_lengths.append(avg_length) if avg_length > best: params = new_params best = avg_length return episode_lengths, params if __name__ == '__main__': env = gym.make('CartPole-v0') episode_lengths, params = random_search(env) plt.plot(episode_lengths) plt.show() # play a final set of episodes env = wrappers.RecordVideo(env, 'my_awesome_dir') print("***Final run with final weights***:", play_one_episode(env, params)) ================================================ FILE: rl2/cartpole/td_lambda.py ================================================ # https://deeplearningcourses.com/c/deep-reinforcement-learning-in-python # https://www.udemy.com/deep-reinforcement-learning-in-python from __future__ import print_function, division from builtins import range # Note: you may need to update your version of future # sudo pip install -U future import gym import os import sys import numpy as np import matplotlib.pyplot as plt from gym import wrappers from datetime import datetime from q_learning import FeatureTransformer from q_learning_bins import plot_running_avg gym_minor_version = int(gym.__version__.split('.')[1]) if gym_minor_version >= 19: exit("Please install OpenAI Gym 0.19.0 or earlier") class SGDRegressor: def __init__(self, D): self.w = np.random.randn(D) / np.sqrt(D) def partial_fit(self, x, y, e, lr=1e-1): self.w += lr*(y - x.dot(self.w))*e def predict(self, X): X = np.array(X) return X.dot(self.w) # Holds one SGDRegressor for each action class Model: def __init__(self, env, feature_transformer): self.env = env self.models = [] self.feature_transformer = feature_transformer sample_feature = feature_transformer.transform( [env.reset()] ) D = sample_feature.shape[1] for i in range(env.action_space.n): # model = SGDRegressor(learning_rate="constant") # model.partial_fit(feature_transformer.transform( [env.reset()] ), [0]) model = SGDRegressor(D) self.models.append(model) self.eligibilities = np.zeros((env.action_space.n, D)) def reset(self): self.eligibilities = np.zeros_like(self.eligibilities) def predict(self, s): X = self.feature_transformer.transform([s]) result = np.stack([m.predict(X) for m in self.models]).T return result def update(self, s, a, G, gamma, lambda_): X = self.feature_transformer.transform([s]) # assert(len(X.shape) == 2) # slower # for action in range(self.env.action_space.n): # if action != a: # self.eligibilities[action] *= gamma*lambda_ # else: # self.eligibilities[a] = grad + gamma*lambda_*self.eligibilities[a] self.eligibilities *= gamma*lambda_ self.eligibilities[a] += X[0] self.models[a].partial_fit(X[0], G, self.eligibilities[a]) def sample_action(self, s, eps): if np.random.random() < eps: return self.env.action_space.sample() else: return np.argmax(self.predict(s)) # returns a list of states_and_rewards, and the total reward def play_one(model, env, eps, gamma, lambda_): observation = env.reset() done = False totalreward = 0 states_actions_rewards = [] iters = 0 model.reset() while not done and iters < 1000000: action = model.sample_action(observation, eps) prev_observation = observation observation, reward, done, info = env.step(action) if done: reward = -300 # update the model next = model.predict(observation) assert(next.shape == (1, env.action_space.n)) G = reward + gamma*np.max(next[0]) model.update(prev_observation, action, G, gamma, lambda_) states_actions_rewards.append((prev_observation, action, reward)) if reward == 1: # if we changed the reward to -200 totalreward += reward iters += 1 # if iters > 0 and iters % 1000 == 0: # print(iters) # if done: # print "finished in < 1000 steps!" return states_actions_rewards, totalreward if __name__ == '__main__': env = gym.make('CartPole-v0') ft = FeatureTransformer(env) model = Model(env, ft) gamma = 0.999 lambda_ = 0.7 if 'monitor' in sys.argv: filename = os.path.basename(__file__).split('.')[0] monitor_dir = './' + filename + '_' + str(datetime.now()) env = wrappers.Monitor(env, monitor_dir) N = 500 totalrewards = np.empty(N) # costs = np.empty(N) for n in range(N): # eps = 1.0/(0.1*n+1) # eps = 0.1*(0.97**n) eps = 1.0/np.sqrt(n+1) # eps = 0.1 states_actions_rewards, totalreward = play_one(model, env, eps, gamma, lambda_) totalrewards[n] = totalreward if n % 100 == 0: print("episode:", n, "total reward:", totalreward, "eps:", eps, "avg reward (last 100):", totalrewards[max(0, n-100):(n+1)].mean()) print("avg reward for last 100 episodes:", totalrewards[-100:].mean()) print("total steps:", totalrewards.sum()) plt.plot(totalrewards) plt.title("Rewards") plt.show() plot_running_avg(totalrewards) ================================================ FILE: rl2/cartpole/tf_warmup.py ================================================ # https://deeplearningcourses.com/c/deep-reinforcement-learning-in-python # https://www.udemy.com/deep-reinforcement-learning-in-python from __future__ import print_function, division from builtins import range import numpy as np import tensorflow as tf import q_learning if tf.__version__.startswith('2'): exit("Please install Tensorflow 1.x") class SGDRegressor: def __init__(self, D): print("Hello TensorFlow!") lr = 0.1 # create inputs, targets, params # matmul doesn't like when w is 1-D # so we make it 2-D and then flatten the prediction self.w = tf.Variable(tf.random_normal(shape=(D, 1)), name='w') self.X = tf.placeholder(tf.float32, shape=(None, D), name='X') self.Y = tf.placeholder(tf.float32, shape=(None,), name='Y') # make prediction and cost Y_hat = tf.reshape( tf.matmul(self.X, self.w), [-1] ) delta = self.Y - Y_hat cost = tf.reduce_sum(delta * delta) # ops we want to call later self.train_op = tf.train.GradientDescentOptimizer(lr).minimize(cost) self.predict_op = Y_hat # start the session and initialize params init = tf.global_variables_initializer() self.session = tf.InteractiveSession() self.session.run(init) def partial_fit(self, X, Y): self.session.run(self.train_op, feed_dict={self.X: X, self.Y: Y}) def predict(self, X): return self.session.run(self.predict_op, feed_dict={self.X: X}) if __name__ == '__main__': q_learning.SGDRegressor = SGDRegressor q_learning.main() ================================================ FILE: rl2/cartpole/theano_warmup.py ================================================ # https://deeplearningcourses.com/c/deep-reinforcement-learning-in-python # https://www.udemy.com/deep-reinforcement-learning-in-python from __future__ import print_function, division from builtins import range import numpy as np import theano import theano.tensor as T import q_learning class SGDRegressor: def __init__(self, D): print("Hello Theano!") w = np.random.randn(D) / np.sqrt(D) self.w = theano.shared(w) self.lr = 0.1 X = T.matrix('X') Y = T.vector('Y') Y_hat = X.dot(self.w) delta = Y - Y_hat cost = delta.dot(delta) grad = T.grad(cost, self.w) updates = [(self.w, self.w - self.lr*grad)] self.train_op = theano.function( inputs=[X, Y], updates=updates, ) self.predict_op = theano.function( inputs=[X], outputs=Y_hat, ) def partial_fit(self, X, Y): self.train_op(X, Y) def predict(self, X): return self.predict_op(X) if __name__ == '__main__': q_learning.SGDRegressor = SGDRegressor q_learning.main() ================================================ FILE: rl2/extra_reading.txt ================================================ Random Features for Large-Scale Kernel Machines http://www.robots.ox.ac.uk/~vgg/rg/papers/randomfeatures.pdf Reflections on Random Kitchen Sinks http://www.argmin.net/2017/12/05/kitchen-sinks/ Weighted Sums of Random Kitchen Sinks: Replacing minimization with randomization in learning https://papers.nips.cc/paper/3495-weighted-sums-of-random-kitchen-sinks-replacing-minimization-with-randomization-in-learning This guy generated some nice plots and code to demonstrate that RBFSampler works like a real RBF Kernel https://www.kaggle.com/sy2002/rbfsampler-actually-is-not-using-any-rbfs Sutton & Barto http://incompleteideas.net/sutton/book/the-book-2nd.html Implementation Details of the TD(λ) Procedure for the Case of Vector Predictions and Backpropagation http://incompleteideas.net/papers/sutton-89.pdf Policy Gradient Methods for Reinforcement Learning with Function Approximation https://homes.cs.washington.edu/~todorov/courses/amath579/reading/PolicyGradient.pdf Playing Atari with Deep Reinforcement Learning https://www.cs.toronto.edu/~vmnih/docs/dqn.pdf Asynchronous Methods for Deep Reinforcement Learning https://arxiv.org/pdf/1602.01783.pdf ================================================ FILE: rl2/gym_tutorial.py ================================================ # https://deeplearningcourses.com/c/deep-reinforcement-learning-in-python # https://www.udemy.com/deep-reinforcement-learning-in-python import gym # Wiki: # https://github.com/openai/gym/wiki/CartPole-v0 # Environment page: # https://gym.openai.com/envs/CartPole-v0 gym_minor_version = int(gym.__version__.split('.')[1]) if gym_minor_version >= 19: exit("Please install OpenAI Gym 0.19.0 or earlier") # get the environment env = gym.make('CartPole-v0') # put yourself in the start state # it also returns the state env.reset() # Out[50]: array([-0.04533731, -0.03231478, -0.01469216, 0.04151 ]) # what do the state variables mean? # Num Observation Min Max # 0 Cart Position -2.4 2.4 # 1 Cart Velocity -Inf Inf # 2 Pole Angle ~ -41.8° ~ 41.8° # 3 Pole Velocity At Tip -Inf Inf box = env.observation_space # In [53]: box # Out[53]: Box(4,) # In [54]: box. # box.contains box.high box.sample box.to_jsonable # box.from_jsonable box.low box.shape env.action_space # In [71]: env.action_space # Out[71]: Discrete(2) # In [72]: env.action_space. # env.action_space.contains env.action_space.n env.action_space.to_jsonable # env.action_space.from_jsonable env.action_space.sample # pick an action action = env.action_space.sample() # do an action observation, reward, done, info = env.step(action) # run through an episode done = False while not done: observation, reward, done, _ = env.step(env.action_space.sample()) ================================================ FILE: rl2/mountaincar/n_step.py ================================================ # https://deeplearningcourses.com/c/deep-reinforcement-learning-in-python # https://www.udemy.com/deep-reinforcement-learning-in-python from __future__ import print_function, division from builtins import range # Note: you may need to update your version of future # sudo pip install -U future # # Note: gym changed from version 0.7.3 to 0.8.0 # MountainCar episode length is capped at 200 in later versions. # This means your agent can't learn as much in the earlier episodes # since they are no longer as long. # # Adapt Q-Learning script to use N-step method instead import gym import os import sys import numpy as np import matplotlib.pyplot as plt from gym import wrappers from datetime import datetime # code we already wrote import q_learning from q_learning import plot_cost_to_go, FeatureTransformer, Model, plot_running_avg class SGDRegressor: def __init__(self, **kwargs): self.w = None self.lr = 1e-2 def partial_fit(self, X, Y): if self.w is None: D = X.shape[1] self.w = np.random.randn(D) / np.sqrt(D) self.w += self.lr*(Y - X.dot(self.w)).dot(X) def predict(self, X): return X.dot(self.w) # replace SKLearn Regressor q_learning.SGDRegressor = SGDRegressor # calculate everything up to max[Q(s,a)] # Ex. # R(t) + gamma*R(t+1) + ... + (gamma^(n-1))*R(t+n-1) + (gamma^n)*max[Q(s(t+n), a(t+n))] # def calculate_return_before_prediction(rewards, gamma): # ret = 0 # for r in reversed(rewards[1:]): # ret += r + gamma*ret # ret += rewards[0] # return ret # returns a list of states_and_rewards, and the total reward def play_one(model, eps, gamma, n=5): observation = env.reset()[0] done = False totalreward = 0 rewards = [] states = [] actions = [] iters = 0 # array of [gamma^0, gamma^1, ..., gamma^(n-1)] multiplier = np.array([gamma]*n)**np.arange(n) # while not done and iters < 200: while not done and iters < 10000: # in earlier versions of gym, episode doesn't automatically # end when you hit 200 steps action = model.sample_action(observation, eps) states.append(observation) actions.append(action) prev_observation = observation observation, reward, done, truncated, info = env.step(action) rewards.append(reward) # update the model if len(rewards) >= n: # return_up_to_prediction = calculate_return_before_prediction(rewards, gamma) return_up_to_prediction = multiplier.dot(rewards[-n:]) action_values = model.predict(observation)[0] # print("action_values.shape:", action_values.shape) G = return_up_to_prediction + (gamma**n)*np.max(action_values) # print("G:", G) model.update(states[-n], actions[-n], G) # if len(rewards) > n: # rewards.pop(0) # states.pop(0) # actions.pop(0) # assert(len(rewards) <= n) totalreward += reward iters += 1 # empty the cache if n == 1: rewards = [] states = [] actions = [] else: rewards = rewards[-n+1:] states = states[-n+1:] actions = actions[-n+1:] # unfortunately, new version of gym cuts you off at 200 steps # even if you haven't reached the goal. # it's not good to do this UNLESS you've reached the goal. # we are "really done" if position >= 0.5 if observation[0] >= 0.5: # we actually made it to the goal # print("made it!") while len(rewards) > 0: G = multiplier[:len(rewards)].dot(rewards) model.update(states[0], actions[0], G) rewards.pop(0) states.pop(0) actions.pop(0) else: # we did not make it to the goal # print("didn't make it...") while len(rewards) > 0: guess_rewards = rewards + [-1]*(n - len(rewards)) G = multiplier.dot(guess_rewards) model.update(states[0], actions[0], G) rewards.pop(0) states.pop(0) actions.pop(0) return totalreward if __name__ == '__main__': env = gym.make('MountainCar-v0') ft = FeatureTransformer(env) model = Model(env, ft, "constant") gamma = 0.99 if 'monitor' in sys.argv: filename = os.path.basename(__file__).split('.')[0] monitor_dir = './' + filename + '_' + str(datetime.now()) env = wrappers.Monitor(env, monitor_dir) N = 300 totalrewards = np.empty(N) costs = np.empty(N) for n in range(N): # eps = 1.0/(0.1*n+1) eps = 0.1*(0.97**n) totalreward = play_one(model, eps, gamma) totalrewards[n] = totalreward print("episode:", n, "total reward:", totalreward) print("avg reward for last 100 episodes:", totalrewards[-100:].mean()) print("total steps:", -totalrewards.sum()) plt.plot(totalrewards) plt.title("Rewards") plt.show() plot_running_avg(totalrewards) # plot the optimal state-value function plot_cost_to_go(env, model) ================================================ FILE: rl2/mountaincar/pg_tf.py ================================================ # https://deeplearningcourses.com/c/deep-reinforcement-learning-in-python # https://www.udemy.com/deep-reinforcement-learning-in-python from __future__ import print_function, division from builtins import range # Note: you may need to update your version of future # sudo pip install -U future import gym import os import sys import numpy as np import tensorflow as tf import matplotlib.pyplot as plt from gym import wrappers from datetime import datetime from q_learning import plot_running_avg, FeatureTransformer, plot_cost_to_go gym_minor_version = int(gym.__version__.split('.')[1]) if gym_minor_version >= 19: exit("Please install OpenAI Gym 0.19.0 or earlier") if tf.__version__.startswith('2'): exit("Please install Tensorflow 1.x") # so you can test different architectures class HiddenLayer: def __init__(self, M1, M2, f=tf.nn.tanh, use_bias=True, zeros=False): if zeros: W = np.zeros((M1, M2), dtype=np.float32) else: W = tf.random_normal(shape=(M1, M2)) * np.sqrt(2. / M1, dtype=np.float32) self.W = tf.Variable(W) self.use_bias = use_bias if use_bias: self.b = tf.Variable(np.zeros(M2).astype(np.float32)) self.f = f def forward(self, X): if self.use_bias: a = tf.matmul(X, self.W) + self.b else: a = tf.matmul(X, self.W) return self.f(a) # approximates pi(a | s) class PolicyModel: def __init__(self, D, ft, hidden_layer_sizes=[]): self.ft = ft ##### hidden layers ##### M1 = D self.hidden_layers = [] for M2 in hidden_layer_sizes: layer = HiddenLayer(M1, M2) self.hidden_layers.append(layer) M1 = M2 # final layer mean self.mean_layer = HiddenLayer(M1, 1, lambda x: x, use_bias=False, zeros=True) # final layer variance self.stdv_layer = HiddenLayer(M1, 1, tf.nn.softplus, use_bias=False, zeros=False) # inputs and targets self.X = tf.placeholder(tf.float32, shape=(None, D), name='X') self.actions = tf.placeholder(tf.float32, shape=(None,), name='actions') self.advantages = tf.placeholder(tf.float32, shape=(None,), name='advantages') # get final hidden layer Z = self.X for layer in self.hidden_layers: Z = layer.forward(Z) # calculate output and cost mean = self.mean_layer.forward(Z) stdv = self.stdv_layer.forward(Z) + 1e-5 # smoothing # make them 1-D mean = tf.reshape(mean, [-1]) stdv = tf.reshape(stdv, [-1]) norm = tf.contrib.distributions.Normal(mean, stdv) self.predict_op = tf.clip_by_value(norm.sample(), -1, 1) log_probs = norm.log_prob(self.actions) cost = -tf.reduce_sum(self.advantages * log_probs + 0.1*norm.entropy()) self.train_op = tf.train.AdamOptimizer(1e-3).minimize(cost) def set_session(self, session): self.session = session def partial_fit(self, X, actions, advantages): X = np.atleast_2d(X) X = self.ft.transform(X) actions = np.atleast_1d(actions) advantages = np.atleast_1d(advantages) self.session.run( self.train_op, feed_dict={ self.X: X, self.actions: actions, self.advantages: advantages, } ) def predict(self, X): X = np.atleast_2d(X) X = self.ft.transform(X) return self.session.run(self.predict_op, feed_dict={self.X: X}) def sample_action(self, X): p = self.predict(X)[0] return p # approximates V(s) class ValueModel: def __init__(self, D, ft, hidden_layer_sizes=[]): self.ft = ft self.costs = [] # create the graph self.layers = [] M1 = D for M2 in hidden_layer_sizes: layer = HiddenLayer(M1, M2) self.layers.append(layer) M1 = M2 # final layer layer = HiddenLayer(M1, 1, lambda x: x) self.layers.append(layer) # inputs and targets self.X = tf.placeholder(tf.float32, shape=(None, D), name='X') self.Y = tf.placeholder(tf.float32, shape=(None,), name='Y') # calculate output and cost Z = self.X for layer in self.layers: Z = layer.forward(Z) Y_hat = tf.reshape(Z, [-1]) # the output self.predict_op = Y_hat cost = tf.reduce_sum(tf.square(self.Y - Y_hat)) self.cost = cost self.train_op = tf.train.AdamOptimizer(1e-1).minimize(cost) def set_session(self, session): self.session = session def partial_fit(self, X, Y): X = np.atleast_2d(X) X = self.ft.transform(X) Y = np.atleast_1d(Y) self.session.run(self.train_op, feed_dict={self.X: X, self.Y: Y}) cost = self.session.run(self.cost, feed_dict={self.X: X, self.Y: Y}) self.costs.append(cost) def predict(self, X): X = np.atleast_2d(X) X = self.ft.transform(X) return self.session.run(self.predict_op, feed_dict={self.X: X}) def play_one_td(env, pmodel, vmodel, gamma): observation = env.reset() done = False totalreward = 0 iters = 0 while not done and iters < 2000: # if we reach 2000, just quit, don't want this going forever # the 200 limit seems a bit early action = pmodel.sample_action(observation) prev_observation = observation observation, reward, done, info = env.step([action]) totalreward += reward # update the models if done: G = reward else: V_next = vmodel.predict(observation) G = reward + gamma*V_next advantage = G - vmodel.predict(prev_observation) pmodel.partial_fit(prev_observation, action, advantage) vmodel.partial_fit(prev_observation, G) iters += 1 return totalreward, iters def main(): env = gym.make('MountainCarContinuous-v0') ft = FeatureTransformer(env, n_components=100) D = ft.dimensions pmodel = PolicyModel(D, ft, []) vmodel = ValueModel(D, ft, []) init = tf.global_variables_initializer() session = tf.InteractiveSession() session.run(init) pmodel.set_session(session) vmodel.set_session(session) gamma = 0.95 if 'monitor' in sys.argv: filename = os.path.basename(__file__).split('.')[0] monitor_dir = './' + filename + '_' + str(datetime.now()) env = wrappers.Monitor(env, monitor_dir) N = 50 totalrewards = np.empty(N) costs = np.empty(N) for n in range(N): totalreward, num_steps = play_one_td(env, pmodel, vmodel, gamma) totalrewards[n] = totalreward if n % 1 == 0: print("episode:", n, "total reward: %.1f" % totalreward, "num steps: %d" % num_steps, "avg reward (last 100): %.1f" % totalrewards[max(0, n-100):(n+1)].mean()) print("avg reward for last 100 episodes:", totalrewards[-100:].mean()) plt.plot(totalrewards) plt.title("Rewards") plt.show() plot_running_avg(totalrewards) plot_cost_to_go(env, vmodel) if __name__ == '__main__': main() ================================================ FILE: rl2/mountaincar/pg_tf_random.py ================================================ # https://deeplearningcourses.com/c/deep-reinforcement-learning-in-python # https://www.udemy.com/deep-reinforcement-learning-in-python from __future__ import print_function, division from builtins import range # Note: you may need to update your version of future # sudo pip install -U future import gym import os import sys import numpy as np import tensorflow as tf import matplotlib.pyplot as plt from gym import wrappers from datetime import datetime from q_learning import plot_running_avg, FeatureTransformer gym_minor_version = int(gym.__version__.split('.')[1]) if gym_minor_version >= 19: exit("Please install OpenAI Gym 0.19.0 or earlier") if tf.__version__.startswith('2'): exit("Please install Tensorflow 1.x") # so you can test different architectures class HiddenLayer: def __init__(self, M1, M2, f=tf.nn.tanh, use_bias=True, zeros=False): if zeros: W = np.zeros((M1, M2)).astype(np.float32) self.W = tf.Variable(W) else: self.W = tf.Variable(tf.random_normal(shape=(M1, M2))) self.params = [self.W] self.use_bias = use_bias if use_bias: self.b = tf.Variable(np.zeros(M2).astype(np.float32)) self.params.append(self.b) self.f = f def forward(self, X): if self.use_bias: a = tf.matmul(X, self.W) + self.b else: a = tf.matmul(X, self.W) return self.f(a) # approximates pi(a | s) class PolicyModel: def __init__(self, ft, D, hidden_layer_sizes_mean=[], hidden_layer_sizes_var=[]): # save inputs for copy self.ft = ft self.D = D self.hidden_layer_sizes_mean = hidden_layer_sizes_mean self.hidden_layer_sizes_var = hidden_layer_sizes_var ##### model the mean ##### self.mean_layers = [] M1 = D for M2 in hidden_layer_sizes_mean: layer = HiddenLayer(M1, M2) self.mean_layers.append(layer) M1 = M2 # final layer layer = HiddenLayer(M1, 1, lambda x: x, use_bias=False, zeros=True) self.mean_layers.append(layer) ##### model the variance ##### self.var_layers = [] M1 = D for M2 in hidden_layer_sizes_var: layer = HiddenLayer(M1, M2) self.var_layers.append(layer) M1 = M2 # final layer layer = HiddenLayer(M1, 1, tf.nn.softplus, use_bias=False, zeros=False) self.var_layers.append(layer) # gather params self.params = [] for layer in (self.mean_layers + self.var_layers): self.params += layer.params # inputs and targets self.X = tf.placeholder(tf.float32, shape=(None, D), name='X') self.actions = tf.placeholder(tf.float32, shape=(None,), name='actions') self.advantages = tf.placeholder(tf.float32, shape=(None,), name='advantages') def get_output(layers): Z = self.X for layer in layers: Z = layer.forward(Z) return tf.reshape(Z, [-1]) # calculate output and cost mean = get_output(self.mean_layers) std = get_output(self.var_layers) + 1e-4 # smoothing # note: the 'variance' is actually standard deviation norm = tf.contrib.distributions.Normal(mean, std) self.predict_op = tf.clip_by_value(norm.sample(), -1, 1) def set_session(self, session): self.session = session def init_vars(self): init_op = tf.variables_initializer(self.params) self.session.run(init_op) # def partial_fit(self, X, actions, advantages): # X = np.atleast_2d(X) # X = self.ft.transform(X) # actions = np.atleast_1d(actions) # advantages = np.atleast_1d(advantages) # self.session.run( # self.train_op, # feed_dict={ # self.X: X, # self.actions: actions, # self.advantages: advantages, # } # ) def predict(self, X): X = np.atleast_2d(X) X = self.ft.transform(X) return self.session.run(self.predict_op, feed_dict={self.X: X}) def sample_action(self, X): p = self.predict(X)[0] # print("action:", p) return p def copy(self): clone = PolicyModel(self.ft, self.D, self.hidden_layer_sizes_mean, self.hidden_layer_sizes_mean) clone.set_session(self.session) clone.init_vars() # tf will complain if we don't do this clone.copy_from(self) return clone def copy_from(self, other): # collect all the ops ops = [] my_params = self.params other_params = other.params for p, q in zip(my_params, other_params): actual = self.session.run(q) op = p.assign(actual) ops.append(op) # now run them all self.session.run(ops) def perturb_params(self): ops = [] for p in self.params: v = self.session.run(p) noise = np.random.randn(*v.shape) / np.sqrt(v.shape[0]) * 5.0 if np.random.random() < 0.1: # with probability 0.1 start completely from scratch op = p.assign(noise) else: op = p.assign(v + noise) ops.append(op) self.session.run(ops) def play_one(env, pmodel, gamma): observation = env.reset() done = False totalreward = 0 iters = 0 while not done and iters < 2000: # if we reach 2000, just quit, don't want this going forever # the 200 limit seems a bit early action = pmodel.sample_action(observation) # oddly, the mountain car environment requires the action to be in # an object where the actual action is stored in object[0] observation, reward, done, info = env.step([action]) totalreward += reward iters += 1 return totalreward def play_multiple_episodes(env, T, pmodel, gamma, print_iters=False): totalrewards = np.empty(T) for i in range(T): totalrewards[i] = play_one(env, pmodel, gamma) if print_iters: print(i, "avg so far:", totalrewards[:(i+1)].mean()) avg_totalrewards = totalrewards.mean() print("avg totalrewards:", avg_totalrewards) return avg_totalrewards def random_search(env, pmodel, gamma): totalrewards = [] best_avg_totalreward = float('-inf') best_pmodel = pmodel num_episodes_per_param_test = 3 for t in range(100): tmp_pmodel = best_pmodel.copy() tmp_pmodel.perturb_params() avg_totalrewards = play_multiple_episodes( env, num_episodes_per_param_test, tmp_pmodel, gamma ) totalrewards.append(avg_totalrewards) if avg_totalrewards > best_avg_totalreward: best_pmodel = tmp_pmodel best_avg_totalreward = avg_totalrewards return totalrewards, best_pmodel def main(): env = gym.make('MountainCarContinuous-v0') ft = FeatureTransformer(env, n_components=100) D = ft.dimensions pmodel = PolicyModel(ft, D, [], []) # init = tf.global_variables_initializer() session = tf.InteractiveSession() # session.run(init) pmodel.set_session(session) pmodel.init_vars() gamma = 0.99 if 'monitor' in sys.argv: filename = os.path.basename(__file__).split('.')[0] monitor_dir = './' + filename + '_' + str(datetime.now()) env = wrappers.Monitor(env, monitor_dir) totalrewards, pmodel = random_search(env, pmodel, gamma) print("max reward:", np.max(totalrewards)) # play 100 episodes and check the average avg_totalrewards = play_multiple_episodes(env, 100, pmodel, gamma, print_iters=True) print("avg reward over 100 episodes with best models:", avg_totalrewards) plt.plot(totalrewards) plt.title("Rewards") plt.show() if __name__ == '__main__': main() ================================================ FILE: rl2/mountaincar/pg_theano.py ================================================ # https://deeplearningcourses.com/c/deep-reinforcement-learning-in-python # https://www.udemy.com/deep-reinforcement-learning-in-python from __future__ import print_function, division from builtins import range # Note: you may need to update your version of future # sudo pip install -U future import gym import os import sys import numpy as np import theano import theano.tensor as T import matplotlib.pyplot as plt from gym import wrappers from datetime import datetime from q_learning import plot_running_avg, FeatureTransformer, plot_cost_to_go # helper for adam optimizer # use tensorflow defaults def adam(cost, params, lr0=1e-3, beta1=0.9, beta2=0.999, eps=1e-8): grads = T.grad(cost, params) updates = [] time = theano.shared(0) new_time = time + 1 updates.append((time, new_time)) lr = lr0*T.sqrt(1 - beta2**new_time) / (1 - beta1**new_time) for p, g in zip(params, grads): m = theano.shared(p.get_value() * 0.) v = theano.shared(p.get_value() * 0.) new_m = beta1*m + (1 - beta1)*g new_v = beta2*v + (1 - beta2)*g*g new_p = p - lr*new_m / (T.sqrt(new_v) + eps) updates.append((m, new_m)) updates.append((v, new_v)) updates.append((p, new_p)) return updates # so you can test different architectures class HiddenLayer: def __init__(self, M1, M2, f=T.nnet.relu, use_bias=True, zeros=False): if zeros: W = np.zeros((M1, M2)) else: W = np.random.randn(M1, M2) * np.sqrt(2. / M1) self.W = theano.shared(W) self.params = [self.W] self.use_bias = use_bias if use_bias: self.b = theano.shared(np.zeros(M2)) self.params += [self.b] self.f = f def forward(self, X): if self.use_bias: a = X.dot(self.W) + self.b else: a = X.dot(self.W) return self.f(a) # approximates pi(a | s) class PolicyModel: def __init__(self, D, ft, hidden_layer_sizes=[]): self.ft = ft ##### hidden layers ##### M1 = D self.hidden_layers = [] for M2 in hidden_layer_sizes: layer = HiddenLayer(M1, M2) self.hidden_layers.append(layer) M1 = M2 # final layer mean self.mean_layer = HiddenLayer(M1, 1, lambda x: x, use_bias=False, zeros=True) # final layer variance self.var_layer = HiddenLayer(M1, 1, T.nnet.softplus, use_bias=False, zeros=False) # get all params for gradient later params = self.mean_layer.params + self.var_layer.params for layer in self.hidden_layers: params += layer.params # inputs and targets X = T.matrix('X') actions = T.vector('actions') advantages = T.vector('advantages') target_value = T.vector('target_value') # get final hidden layer Z = X for layer in self.hidden_layers: Z = layer.forward(Z) mean = self.mean_layer.forward(Z).flatten() var = self.var_layer.forward(Z).flatten() + 1e-5 # smoothing # can't find Theano log pdf, we will make it def log_pdf(actions, mean, var): k1 = T.log(2*np.pi*var) k2 = (actions - mean)**2 / var return -0.5*(k1 + k2) def entropy(var): return 0.5*T.log(2*np.pi*np.e*var) log_probs = log_pdf(actions, mean, var) cost = -T.sum(advantages * log_probs + 0.1*entropy(var)) updates = adam(cost, params) # compile functions self.train_op = theano.function( inputs=[X, actions, advantages], updates=updates, allow_input_downcast=True ) # alternatively, we could create a RandomStream and sample from # the Gaussian using Theano code self.predict_op = theano.function( inputs=[X], outputs=[mean, var], allow_input_downcast=True ) def partial_fit(self, X, actions, advantages): X = np.atleast_2d(X) X = self.ft.transform(X) actions = np.atleast_1d(actions) advantages = np.atleast_1d(advantages) self.train_op(X, actions, advantages) def predict(self, X): X = np.atleast_2d(X) X = self.ft.transform(X) return self.predict_op(X) def sample_action(self, X): pred = self.predict(X) mu = pred[0][0] v = pred[1][0] a = np.random.randn()*np.sqrt(v) + mu return min(max(a, -1), 1) # approximates V(s) class ValueModel: def __init__(self, D, ft, hidden_layer_sizes=[]): self.ft = ft # create the graph self.layers = [] M1 = D for M2 in hidden_layer_sizes: layer = HiddenLayer(M1, M2) self.layers.append(layer) M1 = M2 # final layer layer = HiddenLayer(M1, 1, lambda x: x) self.layers.append(layer) # get all params for gradient later params = [] for layer in self.layers: params += layer.params # inputs and targets X = T.matrix('X') Y = T.vector('Y') # calculate output and cost Z = X for layer in self.layers: Z = layer.forward(Z) Y_hat = T.flatten(Z) cost = T.sum((Y - Y_hat)**2) # specify update rule updates = adam(cost, params, lr0=1e-1) # compile functions self.train_op = theano.function( inputs=[X, Y], updates=updates, allow_input_downcast=True ) self.predict_op = theano.function( inputs=[X], outputs=Y_hat, allow_input_downcast=True ) def partial_fit(self, X, Y): X = np.atleast_2d(X) X = self.ft.transform(X) Y = np.atleast_1d(Y) self.train_op(X, Y) def predict(self, X): X = np.atleast_2d(X) X = self.ft.transform(X) return self.predict_op(X) def play_one_td(env, pmodel, vmodel, gamma): observation = env.reset() done = False totalreward = 0 iters = 0 while not done and iters < 2000: # if we reach 2000, just quit, don't want this going forever # the 200 limit seems a bit early action = pmodel.sample_action(observation) prev_observation = observation observation, reward, done, info = env.step([action]) totalreward += reward # update the models if done: G = reward else: V_next = vmodel.predict(observation) G = reward + gamma*V_next advantage = G - vmodel.predict(prev_observation) pmodel.partial_fit(prev_observation, action, advantage) vmodel.partial_fit(prev_observation, G) iters += 1 return totalreward def main(): env = gym.make('MountainCarContinuous-v0') ft = FeatureTransformer(env, n_components=100) D = ft.dimensions pmodel = PolicyModel(D, ft) vmodel = ValueModel(D, ft) gamma = 0.99 if 'monitor' in sys.argv: filename = os.path.basename(__file__).split('.')[0] monitor_dir = './' + filename + '_' + str(datetime.now()) env = wrappers.Monitor(env, monitor_dir) N = 50 totalrewards = np.empty(N) costs = np.empty(N) for n in range(N): totalreward = play_one_td(env, pmodel, vmodel, gamma) totalrewards[n] = totalreward if n % 1 == 0: print("episode:", n, "total reward: %.1f" % totalreward, "avg reward (last 100): %.1f" % totalrewards[max(0, n-100):(n+1)].mean()) print("avg reward for last 100 episodes:", totalrewards[-100:].mean()) plt.plot(totalrewards) plt.title("Rewards") plt.show() plot_running_avg(totalrewards) plot_cost_to_go(env, vmodel) if __name__ == '__main__': main() ================================================ FILE: rl2/mountaincar/pg_theano_random.py ================================================ # https://deeplearningcourses.com/c/deep-reinforcement-learning-in-python # https://www.udemy.com/deep-reinforcement-learning-in-python from __future__ import print_function, division from builtins import range # Note: you may need to update your version of future # sudo pip install -U future import gym import os import sys import numpy as np import theano import theano.tensor as T import matplotlib.pyplot as plt from gym import wrappers from datetime import datetime from q_learning import plot_running_avg, FeatureTransformer gym_minor_version = int(gym.__version__.split('.')[1]) if gym_minor_version >= 19: exit("Please install OpenAI Gym 0.19.0 or earlier") # so you can test different architectures class HiddenLayer: def __init__(self, M1, M2, f=T.nnet.relu, use_bias=True, zeros=False): if zeros: W = np.zeros((M1, M2)) else: W = np.random.randn(M1, M2) * np.sqrt(2 / M1) self.W = theano.shared(W) self.params = [self.W] self.use_bias = use_bias if use_bias: self.b = theano.shared(np.zeros(M2)) self.params += [self.b] self.f = f def forward(self, X): if self.use_bias: a = X.dot(self.W) + self.b else: a = X.dot(self.W) return self.f(a) # approximates pi(a | s) class PolicyModel: def __init__(self, ft, D, hidden_layer_sizes_mean=[], hidden_layer_sizes_var=[]): # save inputs for copy self.ft = ft self.D = D self.hidden_layer_sizes_mean = hidden_layer_sizes_mean self.hidden_layer_sizes_var = hidden_layer_sizes_var ##### model the mean ##### self.mean_layers = [] M1 = D for M2 in hidden_layer_sizes_mean: layer = HiddenLayer(M1, M2) self.mean_layers.append(layer) M1 = M2 # final layer layer = HiddenLayer(M1, 1, lambda x: x, use_bias=False, zeros=True) self.mean_layers.append(layer) ##### model the variance ##### self.var_layers = [] M1 = D for M2 in hidden_layer_sizes_var: layer = HiddenLayer(M1, M2) self.var_layers.append(layer) M1 = M2 # final layer layer = HiddenLayer(M1, 1, T.nnet.softplus, use_bias=False, zeros=False) self.var_layers.append(layer) # get all params for gradient later params = [] for layer in (self.mean_layers + self.var_layers): params += layer.params self.params = params # inputs and targets X = T.matrix('X') actions = T.vector('actions') advantages = T.vector('advantages') # calculate output and cost def get_output(layers): Z = X for layer in layers: Z = layer.forward(Z) return Z.flatten() mean = get_output(self.mean_layers) var = get_output(self.var_layers) + 1e-4 # smoothing # alternatively, we could create a RandomStream and sample from # the Gaussian using Theano code self.predict_op = theano.function( inputs=[X], outputs=[mean, var], allow_input_downcast=True ) def predict(self, X): X = np.atleast_2d(X) X = self.ft.transform(X) return self.predict_op(X) def sample_action(self, X): pred = self.predict(X) mu = pred[0][0] v = pred[1][0] a = np.random.randn()*np.sqrt(v) + mu return min(max(a, -1), 1) def copy(self): clone = PolicyModel(self.ft, self.D, self.hidden_layer_sizes_mean, self.hidden_layer_sizes_mean) clone.copy_from(self) return clone def copy_from(self, other): # self is being copied from other for p, q in zip(self.params, other.params): v = q.get_value() p.set_value(v) def perturb_params(self): for p in self.params: v = p.get_value() noise = np.random.randn(*v.shape) / np.sqrt(v.shape[0]) * 5.0 if np.random.random() < 0.1: # with probability 0.1 start completely from scratch p.set_value(noise) else: p.set_value(v + noise) def play_one(env, pmodel, gamma): observation = env.reset() done = False totalreward = 0 iters = 0 while not done and iters < 2000: # if we reach 2000, just quit, don't want this going forever # the 200 limit seems a bit early action = pmodel.sample_action(observation) # oddly, the mountain car environment requires the action to be in # an object where the actual action is stored in object[0] observation, reward, done, info = env.step([action]) totalreward += reward iters += 1 return totalreward def play_multiple_episodes(env, T, pmodel, gamma, print_iters=False): totalrewards = np.empty(T) for i in range(T): totalrewards[i] = play_one(env, pmodel, gamma) if print_iters: print(i, "avg so far:", totalrewards[:(i+1)].mean()) avg_totalrewards = totalrewards.mean() print("avg totalrewards:", avg_totalrewards) return avg_totalrewards def random_search(env, pmodel, gamma): totalrewards = [] best_avg_totalreward = float('-inf') best_pmodel = pmodel num_episodes_per_param_test = 3 for t in range(100): tmp_pmodel = best_pmodel.copy() tmp_pmodel.perturb_params() avg_totalrewards = play_multiple_episodes( env, num_episodes_per_param_test, tmp_pmodel, gamma ) totalrewards.append(avg_totalrewards) if avg_totalrewards > best_avg_totalreward: best_pmodel = tmp_pmodel best_avg_totalreward = avg_totalrewards return totalrewards, best_pmodel def main(): env = gym.make('MountainCarContinuous-v0') ft = FeatureTransformer(env, n_components=100) D = ft.dimensions pmodel = PolicyModel(ft, D, [], []) gamma = 0.99 if 'monitor' in sys.argv: filename = os.path.basename(__file__).split('.')[0] monitor_dir = './' + filename + '_' + str(datetime.now()) env = wrappers.Monitor(env, monitor_dir) totalrewards, pmodel = random_search(env, pmodel, gamma) print("max reward:", np.max(totalrewards)) # play 100 episodes and check the average avg_totalrewards = play_multiple_episodes(env, 100, pmodel, gamma, print_iters=True) print("avg reward over 100 episodes with best models:", avg_totalrewards) plt.plot(totalrewards) plt.title("Rewards") plt.show() if __name__ == '__main__': main() ================================================ FILE: rl2/mountaincar/q_learning.py ================================================ # https://deeplearningcourses.com/c/deep-reinforcement-learning-in-python # https://www.udemy.com/deep-reinforcement-learning-in-python from __future__ import print_function, division from builtins import range # Note: you may need to update your version of future # sudo pip install -U future # # This takes 4min 30s to run in Python 2.7 # But only 1min 30s to run in Python 3.5! # # Note: gym changed from version 0.7.3 to 0.8.0 # MountainCar episode length is capped at 200 in later versions. # This means your agent can't learn as much in the earlier episodes # since they are no longer as long. import gym import os import sys import numpy as np import matplotlib import matplotlib.pyplot as plt from mpl_toolkits.mplot3d import Axes3D from gym import wrappers from datetime import datetime from sklearn.pipeline import FeatureUnion from sklearn.preprocessing import StandardScaler from sklearn.kernel_approximation import RBFSampler from sklearn.linear_model import SGDRegressor # SGDRegressor defaults: # loss='squared_loss', penalty='l2', alpha=0.0001, # l1_ratio=0.15, fit_intercept=True, n_iter=5, shuffle=True, # verbose=0, epsilon=0.1, random_state=None, learning_rate='invscaling', # eta0=0.01, power_t=0.25, warm_start=False, average=False # Inspired by https://github.com/dennybritz/reinforcement-learning class FeatureTransformer: def __init__(self, env, n_components=500): observation_examples = np.array([env.observation_space.sample() for x in range(10000)]) scaler = StandardScaler() scaler.fit(observation_examples) # Used to converte a state to a featurizes represenation. # We use RBF kernels with different variances to cover different parts of the space featurizer = FeatureUnion([ ("rbf1", RBFSampler(gamma=5.0, n_components=n_components)), ("rbf2", RBFSampler(gamma=2.0, n_components=n_components)), ("rbf3", RBFSampler(gamma=1.0, n_components=n_components)), ("rbf4", RBFSampler(gamma=0.5, n_components=n_components)) ]) example_features = featurizer.fit_transform(scaler.transform(observation_examples)) self.dimensions = example_features.shape[1] self.scaler = scaler self.featurizer = featurizer def transform(self, observations): # print "observations:", observations scaled = self.scaler.transform(observations) # assert(len(scaled.shape) == 2) return self.featurizer.transform(scaled) # Holds one SGDRegressor for each action class Model: def __init__(self, env, feature_transformer, learning_rate): self.env = env self.models = [] self.feature_transformer = feature_transformer for i in range(env.action_space.n): model = SGDRegressor(learning_rate=learning_rate) model.partial_fit(feature_transformer.transform( [env.reset()[0]] ), [0]) self.models.append(model) def predict(self, s): X = self.feature_transformer.transform([s]) result = np.stack([m.predict(X) for m in self.models]).T assert(len(result.shape) == 2) return result def update(self, s, a, G): X = self.feature_transformer.transform([s]) assert(len(X.shape) == 2) self.models[a].partial_fit(X, [G]) def sample_action(self, s, eps): # eps = 0 # Technically, we don't need to do epsilon-greedy # because SGDRegressor predicts 0 for all states # until they are updated. This works as the # "Optimistic Initial Values" method, since all # the rewards for Mountain Car are -1. if np.random.random() < eps: return self.env.action_space.sample() else: return np.argmax(self.predict(s)) # returns a list of states_and_rewards, and the total reward def play_one(model, env, eps, gamma): observation = env.reset()[0] done = False totalreward = 0 iters = 0 while not done and iters < 10000: action = model.sample_action(observation, eps) prev_observation = observation observation, reward, done, truncated, info = env.step(action) # update the model if done: G = reward else: Qnext = model.predict(observation) # assert(next.shape == (1, env.action_space.n)) G = reward + gamma*np.max(Qnext[0]) model.update(prev_observation, action, G) totalreward += reward iters += 1 return totalreward def plot_cost_to_go(env, estimator, num_tiles=20): x = np.linspace(env.observation_space.low[0], env.observation_space.high[0], num=num_tiles) y = np.linspace(env.observation_space.low[1], env.observation_space.high[1], num=num_tiles) X, Y = np.meshgrid(x, y) # both X and Y will be of shape (num_tiles, num_tiles) Z = np.apply_along_axis(lambda _: -np.max(estimator.predict(_)), 2, np.dstack([X, Y])) # Z will also be of shape (num_tiles, num_tiles) fig = plt.figure(figsize=(10, 5)) ax = fig.add_subplot(111, projection='3d') surf = ax.plot_surface(X, Y, Z, rstride=1, cstride=1, cmap=matplotlib.cm.coolwarm, vmin=-1.0, vmax=1.0) ax.set_xlabel('Position') ax.set_ylabel('Velocity') ax.set_zlabel('Cost-To-Go == -V(s)') ax.set_title("Cost-To-Go Function") fig.colorbar(surf) plt.show() def plot_running_avg(totalrewards): N = len(totalrewards) running_avg = np.empty(N) for t in range(N): running_avg[t] = totalrewards[max(0, t-100):(t+1)].mean() plt.plot(running_avg) plt.title("Running Average") plt.show() def main(show_plots=True): env = gym.make('MountainCar-v0') ft = FeatureTransformer(env) model = Model(env, ft, "constant") gamma = 0.99 if 'monitor' in sys.argv: filename = os.path.basename(__file__).split('.')[0] monitor_dir = './' + filename + '_' + str(datetime.now()) env = wrappers.Monitor(env, monitor_dir) N = 300 totalrewards = np.empty(N) for n in range(N): eps = 1.0/(0.1*n+1) # eps = 0.1*(0.97**n) if n == 199: print("eps:", eps) # eps = 1.0/np.sqrt(n+1) totalreward = play_one(model, env, eps, gamma) totalrewards[n] = totalreward if (n + 1) % 10 == 0: print("episode:", n, "total reward:", totalreward) print("avg reward for last 100 episodes:", totalrewards[-100:].mean()) print("total steps:", -totalrewards.sum()) if show_plots: plt.plot(totalrewards) plt.title("Rewards") plt.show() plot_running_avg(totalrewards) # plot the optimal state-value function plot_cost_to_go(env, model) if __name__ == '__main__': # for i in range(10): # main(show_plots=False) main() ================================================ FILE: rl2/mountaincar/td_lambda.py ================================================ # https://deeplearningcourses.com/c/deep-reinforcement-learning-in-python # https://www.udemy.com/deep-reinforcement-learning-in-python from __future__ import print_function, division from builtins import range # Note: you may need to update your version of future # sudo pip install -U future # # Note: gym changed from version 0.7.3 to 0.8.0 # MountainCar episode length is capped at 200 in later versions. # This means your agent can't learn as much in the earlier episodes # since they are no longer as long. # # Adapt Q-Learning script to use TD(lambda) method instead import gym import os import sys import numpy as np import matplotlib.pyplot as plt from gym import wrappers from datetime import datetime # code we already wrote from q_learning import plot_cost_to_go, FeatureTransformer, plot_running_avg gym_minor_version = int(gym.__version__.split('.')[1]) if gym_minor_version >= 19: exit("Please install OpenAI Gym 0.19.0 or earlier") class BaseModel: def __init__(self, D): self.w = np.random.randn(D) / np.sqrt(D) def partial_fit(self, input_, target, eligibility, lr=1e-2): self.w += lr*(target - input_.dot(self.w))*eligibility def predict(self, X): X = np.array(X) return X.dot(self.w) # Holds one BaseModel for each action class Model: def __init__(self, env, feature_transformer): self.env = env self.models = [] self.feature_transformer = feature_transformer D = feature_transformer.dimensions self.eligibilities = np.zeros((env.action_space.n, D)) for i in range(env.action_space.n): model = BaseModel(D) self.models.append(model) def predict(self, s): X = self.feature_transformer.transform([s]) assert(len(X.shape) == 2) result = np.stack([m.predict(X) for m in self.models]).T assert(len(result.shape) == 2) return result def update(self, s, a, G, gamma, lambda_): X = self.feature_transformer.transform([s]) assert(len(X.shape) == 2) self.eligibilities *= gamma*lambda_ self.eligibilities[a] += X[0] self.models[a].partial_fit(X[0], G, self.eligibilities[a]) def sample_action(self, s, eps): if np.random.random() < eps: return self.env.action_space.sample() else: return np.argmax(self.predict(s)) # returns a list of states_and_rewards, and the total reward def play_one(model, env, eps, gamma, lambda_): observation = env.reset() done = False totalreward = 0 iters = 0 # while not done and iters < 200: while not done and iters < 10000: action = model.sample_action(observation, eps) prev_observation = observation observation, reward, done, info = env.step(action) # update the model Qnext = model.predict(observation) assert(Qnext.shape == (1, env.action_space.n)) G = reward + gamma*np.max(Qnext[0]) model.update(prev_observation, action, G, gamma, lambda_) totalreward += reward iters += 1 return totalreward if __name__ == '__main__': env = gym.make('MountainCar-v0') ft = FeatureTransformer(env) model = Model(env, ft) gamma = 0.9999 lambda_ = 0.7 if 'monitor' in sys.argv: filename = os.path.basename(__file__).split('.')[0] monitor_dir = './' + filename + '_' + str(datetime.now()) env = wrappers.Monitor(env, monitor_dir) N = 300 totalrewards = np.empty(N) costs = np.empty(N) for n in range(N): # eps = 1.0/(0.1*n+1) eps = 0.1*(0.97**n) # eps = 0.5/np.sqrt(n+1) totalreward = play_one(model, env, eps, gamma, lambda_) totalrewards[n] = totalreward print("episode:", n, "total reward:", totalreward) print("avg reward for last 100 episodes:", totalrewards[-100:].mean()) print("total steps:", -totalrewards.sum()) plt.plot(totalrewards) plt.title("Rewards") plt.show() plot_running_avg(totalrewards) # plot the optimal state-value function plot_cost_to_go(env, model) ================================================ FILE: rl2v2/extra_reading.txt ================================================ Gymnasium Library https://gymnasium.farama.org/ Stable Baselines 3 https://github.com/DLR-RM/stable-baselines3 Reinforcement Learning Prerequisites https://deeplearningcourses.com/c/artificial-intelligence-reinforcement-learning-in-python ================================================ FILE: rl3/a2c/a2c.py ================================================ # https://deeplearningcourses.com/c/cutting-edge-artificial-intelligence import time import joblib import numpy as np import tensorflow as tf import os if tf.__version__.startswith('2'): exit("Please install Tensorflow 1.x") def set_global_seeds(i): tf.set_random_seed(i) np.random.seed(i) def cat_entropy(logits): a0 = logits - tf.reduce_max(logits, 1, keepdims=True) ea0 = tf.exp(a0) z0 = tf.reduce_sum(ea0, 1, keepdims=True) p0 = ea0 / z0 return tf.reduce_sum(p0 * (tf.log(z0) - a0), 1) def find_trainable_variables(key): with tf.variable_scope(key): return tf.trainable_variables() def discount_with_dones(rewards, dones, gamma): discounted = [] r = 0 for reward, done in zip(rewards[::-1], dones[::-1]): r = reward + gamma * r * (1. - done) # fixed off by one bug discounted.append(r) return discounted[::-1] class Agent: def __init__(self, Network, ob_space, ac_space, nenvs, nsteps, nstack, ent_coef=0.01, vf_coef=0.5, max_grad_norm=0.5, lr=7e-4, alpha=0.99, epsilon=1e-5, total_timesteps=int(80e6)): config = tf.ConfigProto(intra_op_parallelism_threads=nenvs, inter_op_parallelism_threads=nenvs) config.gpu_options.allow_growth = True sess = tf.Session(config=config) nbatch = nenvs * nsteps A = tf.placeholder(tf.int32, [nbatch]) ADV = tf.placeholder(tf.float32, [nbatch]) R = tf.placeholder(tf.float32, [nbatch]) LR = tf.placeholder(tf.float32, []) step_model = Network(sess, ob_space, ac_space, nenvs, 1, nstack, reuse=False) train_model = Network(sess, ob_space, ac_space, nenvs, nsteps, nstack, reuse=True) neglogpac = tf.nn.sparse_softmax_cross_entropy_with_logits(logits=train_model.pi, labels=A) pg_loss = tf.reduce_mean(ADV * neglogpac) vf_loss = tf.reduce_mean(tf.squared_difference(tf.squeeze(train_model.vf), R) / 2.0) entropy = tf.reduce_mean(cat_entropy(train_model.pi)) loss = pg_loss - entropy * ent_coef + vf_loss * vf_coef params = find_trainable_variables("model") grads = tf.gradients(loss, params) if max_grad_norm is not None: grads, grad_norm = tf.clip_by_global_norm(grads, max_grad_norm) grads_and_params = list(zip(grads, params)) trainer = tf.train.RMSPropOptimizer(learning_rate=LR, decay=alpha, epsilon=epsilon) _train = trainer.apply_gradients(grads_and_params) def train(states, rewards, actions, values): advs = rewards - values feed_dict = {train_model.X: states, A: actions, ADV: advs, R: rewards, LR: lr} policy_loss, value_loss, policy_entropy, _ = sess.run( [pg_loss, vf_loss, entropy, _train], feed_dict ) return policy_loss, value_loss, policy_entropy def save(save_path): ps = sess.run(params) joblib.dump(ps, save_path) def load(load_path): loaded_params = joblib.load(load_path) restores = [] for p, loaded_p in zip(params, loaded_params): restores.append(p.assign(loaded_p)) ps = sess.run(restores) self.train = train self.train_model = train_model self.step_model = step_model self.step = step_model.step self.value = step_model.value self.save = save self.load = load tf.global_variables_initializer().run(session=sess) class Runner: def __init__(self, env, agent, nsteps=5, nstack=4, gamma=0.99): self.env = env self.agent = agent nh, nw, nc = env.observation_space.shape nenv = env.num_envs self.batch_ob_shape = (nenv * nsteps, nh, nw, nc * nstack) self.state = np.zeros((nenv, nh, nw, nc * nstack), dtype=np.uint8) self.nc = nc obs = env.reset() self.update_state(obs) self.gamma = gamma self.nsteps = nsteps self.dones = [False for _ in range(nenv)] self.total_rewards = [] # store all workers' total rewards self.real_total_rewards = [] def update_state(self, obs): # Do frame-stacking here instead of the FrameStack wrapper to reduce IPC overhead self.state = np.roll(self.state, shift=-self.nc, axis=3) self.state[:, :, :, -self.nc:] = obs def run(self): mb_states, mb_rewards, mb_actions, mb_values, mb_dones = [], [], [], [], [] for n in range(self.nsteps): actions, values = self.agent.step(self.state) mb_states.append(np.copy(self.state)) mb_actions.append(actions) mb_values.append(values) mb_dones.append(self.dones) obs, rewards, dones, infos = self.env.step(actions) for done, info in zip(dones, infos): if done: self.total_rewards.append(info['reward']) if info['total_reward'] != -1: self.real_total_rewards.append(info['total_reward']) self.dones = dones for n, done in enumerate(dones): if done: self.state[n] = self.state[n] * 0 self.update_state(obs) mb_rewards.append(rewards) mb_dones.append(self.dones) # batch of steps to batch of rollouts mb_states = np.asarray(mb_states, dtype=np.uint8).swapaxes(1, 0).reshape(self.batch_ob_shape) mb_rewards = np.asarray(mb_rewards, dtype=np.float32).swapaxes(1, 0) mb_actions = np.asarray(mb_actions, dtype=np.int32).swapaxes(1, 0) mb_values = np.asarray(mb_values, dtype=np.float32).swapaxes(1, 0) mb_dones = np.asarray(mb_dones, dtype=np.bool).swapaxes(1, 0) mb_dones = mb_dones[:, 1:] last_values = self.agent.value(self.state).tolist() # discount/bootstrap off value fn for n, (rewards, dones, value) in enumerate(zip(mb_rewards, mb_dones, last_values)): rewards = rewards.tolist() dones = dones.tolist() if dones[-1] == 0: rewards = discount_with_dones(rewards + [value], dones + [0], self.gamma)[:-1] else: rewards = discount_with_dones(rewards, dones, self.gamma) mb_rewards[n] = rewards mb_rewards = mb_rewards.flatten() mb_actions = mb_actions.flatten() mb_values = mb_values.flatten() return mb_states, mb_rewards, mb_actions, mb_values def learn(network, env, seed, new_session=True, nsteps=5, nstack=4, total_timesteps=int(80e6), vf_coef=0.5, ent_coef=0.01, max_grad_norm=0.5, lr=7e-4, epsilon=1e-5, alpha=0.99, gamma=0.99, log_interval=1000): tf.reset_default_graph() set_global_seeds(seed) nenvs = env.num_envs env_id = env.env_id save_name = os.path.join('models', env_id + '.save') ob_space = env.observation_space ac_space = env.action_space agent = Agent(Network=network, ob_space=ob_space, ac_space=ac_space, nenvs=nenvs, nsteps=nsteps, nstack=nstack, ent_coef=ent_coef, vf_coef=vf_coef, max_grad_norm=max_grad_norm, lr=lr, alpha=alpha, epsilon=epsilon, total_timesteps=total_timesteps) if os.path.exists(save_name): agent.load(save_name) runner = Runner(env, agent, nsteps=nsteps, nstack=nstack, gamma=gamma) nbatch = nenvs * nsteps tstart = time.time() for update in range(1, total_timesteps // nbatch + 1): states, rewards, actions, values = runner.run() policy_loss, value_loss, policy_entropy = agent.train( states, rewards, actions, values) nseconds = time.time() - tstart fps = int((update * nbatch) / nseconds) if update % log_interval == 0 or update == 1: print(' - - - - - - - ') print("nupdates", update) print("total_timesteps", update * nbatch) print("fps", fps) print("policy_entropy", float(policy_entropy)) print("value_loss", float(value_loss)) # total reward r = runner.total_rewards[-100:] # get last 100 tr = runner.real_total_rewards[-100:] if len(r) == 100: print("avg reward (last 100):", np.mean(r)) if len(tr) == 100: print("avg total reward (last 100):", np.mean(tr)) print("max (last 100):", np.max(tr)) agent.save(save_name) env.close() agent.save(save_name) ================================================ FILE: rl3/a2c/atari_wrappers.py ================================================ # https://deeplearningcourses.com/c/cutting-edge-artificial-intelligence import numpy as np from collections import deque import gym from gym import spaces import cv2 # opencv-python class NoopResetEnv(gym.Wrapper): def __init__(self, env, noop_max=30): """Sample initial states by taking random number of no-ops on reset. No-op is assumed to be action 0. """ gym.Wrapper.__init__(self, env) self.noop_max = noop_max self.override_num_noops = None self.noop_action = 0 assert env.unwrapped.get_action_meanings()[0] == 'NOOP' def reset(self, **kwargs): """ Do no-op action for a number of steps in [1, noop_max].""" self.env.reset(**kwargs) if self.override_num_noops is not None: noops = self.override_num_noops else: noops = self.unwrapped.np_random.randint(1, self.noop_max + 1) # pylint: disable=E1101 assert noops > 0 obs = None for _ in range(noops): obs, _, done, _ = self.env.step(self.noop_action) if done: obs = self.env.reset(**kwargs) return obs def step(self, ac): return self.env.step(ac) class FireResetEnv(gym.Wrapper): def __init__(self, env): """Take action on reset for environments that are fixed until firing.""" gym.Wrapper.__init__(self, env) assert env.unwrapped.get_action_meanings()[1] == 'FIRE' assert len(env.unwrapped.get_action_meanings()) >= 3 def reset(self, **kwargs): self.env.reset(**kwargs) obs, _, done, _ = self.env.step(1) if done: self.env.reset(**kwargs) obs, _, done, _ = self.env.step(2) if done: self.env.reset(**kwargs) return obs def step(self, ac): return self.env.step(ac) class EpisodicLifeEnv(gym.Wrapper): def __init__(self, env): """Make end-of-life == end-of-episode, but only reset on true game over. Done by DeepMind for the DQN and co. since it helps value estimation. """ gym.Wrapper.__init__(self, env) self.lives = 0 self.was_real_done = True def step(self, action): obs, reward, done, info = self.env.step(action) self.was_real_done = done # check current lives, make loss of life terminal, # then update lives to handle bonus lives lives = self.env.unwrapped.ale.lives() if lives < self.lives and lives > 0: # for Qbert sometimes we stay in lives == 0 condtion for a few frames # so its important to keep lives > 0, so that we only reset once # the environment advertises done. done = True self.lives = lives return obs, reward, done, info def reset(self, **kwargs): """Reset only when lives are exhausted. This way all states are still reachable even though lives are episodic, and the learner need not know about any of this behind-the-scenes. """ if self.was_real_done: obs = self.env.reset(**kwargs) else: # no-op step to advance from terminal/lost life state obs, _, _, _ = self.env.step(0) self.lives = self.env.unwrapped.ale.lives() return obs class MaxAndSkipEnv(gym.Wrapper): def __init__(self, env, skip=4): """Return only every `skip`-th frame""" gym.Wrapper.__init__(self, env) # most recent raw observations (for max pooling across time steps) self._obs_buffer = np.zeros((2,) + env.observation_space.shape, dtype='uint8') self._skip = skip def step(self, action): """Repeat action, sum reward, and max over last observations.""" total_reward = 0.0 done = None for i in range(self._skip): obs, reward, done, info = self.env.step(action) if i == self._skip - 2: self._obs_buffer[0] = obs if i == self._skip - 1: self._obs_buffer[1] = obs total_reward += reward if done: break # Note that the observation on the done=True frame # doesn't matter max_frame = self._obs_buffer.max(axis=0) return max_frame, total_reward, done, info def reset(self, **kwargs): return self.env.reset(**kwargs) class ClipRewardEnv(gym.RewardWrapper): def reward(self, reward): """Bin reward to {+1, 0, -1} by its sign.""" return np.sign(reward) # class WarpFrame(gym.ObservationWrapper): # def __init__(self, env): # """Warp frames to 84x84 as done in the Nature paper and later work.""" # gym.ObservationWrapper.__init__(self, env) # self.width = 84 # self.height = 84 # self.observation_space = spaces.Box(low=0, high=255, shape=(self.height, self.width, 1)) # def _observation(self, frame): # frame = cv2.cvtColor(frame, cv2.COLOR_RGB2GRAY) # frame = cv2.resize(frame, (self.width, self.height), interpolation=cv2.INTER_AREA) # return frame[:, :, None] class WarpFrame(gym.ObservationWrapper): def __init__(self, env, width=84, height=84, grayscale=True): """Warp frames to 84x84 as done in the Nature paper and later work.""" gym.ObservationWrapper.__init__(self, env) self.width = width self.height = height self.grayscale = grayscale if self.grayscale: self.observation_space = spaces.Box(low=0, high=255, shape=(self.height, self.width, 1), dtype=np.uint8) else: self.observation_space = spaces.Box(low=0, high=255, shape=(self.height, self.width, 3), dtype=np.uint8) def observation(self, frame): if self.grayscale: frame = cv2.cvtColor(frame, cv2.COLOR_RGB2GRAY) frame = cv2.resize(frame, (self.width, self.height), interpolation=cv2.INTER_AREA) if self.grayscale: frame = np.expand_dims(frame, -1) return frame class FrameStack(gym.Wrapper): def __init__(self, env, k): """Stack k last frames. Returns lazy array, which is much more memory efficient. See Also -------- baselines.common.atari_wrappers.LazyFrames """ gym.Wrapper.__init__(self, env) self.k = k self.frames = deque([], maxlen=k) shp = env.observation_space.shape self.observation_space = spaces.Box(low=0, high=255, shape=(shp[0], shp[1], shp[2] * k)) def reset(self): ob = self.env.reset() for _ in range(self.k): self.frames.append(ob) return self._get_ob() def step(self, action): ob, reward, done, info = self.env.step(action) self.frames.append(ob) return self._get_ob(), reward, done, info def _get_ob(self): assert len(self.frames) == self.k return LazyFrames(list(self.frames)) class LazyFrames: def __init__(self, frames): """This object ensures that common frames between the observations are only stored once. It exists purely to optimize memory usage which can be huge for DQN's 1M frames replay buffers. This object should only be converted to numpy array before being passed to the model. You'd not believe how complex the previous solution was.""" self._frames = frames def __array__(self, dtype=None): out = np.concatenate(self._frames, axis=2) if dtype is not None: out = out.astype(dtype) return out def make_atari(env_id): env = gym.make(env_id) assert 'NoFrameskip' in env.spec.id env = NoopResetEnv(env, noop_max=30) env = MaxAndSkipEnv(env, skip=4) return env def wrap_deepmind(env, episode_life=True, clip_rewards=True, frame_stack=False): """Configure environment for DeepMind-style Atari. """ if episode_life: env = EpisodicLifeEnv(env) if 'FIRE' in env.unwrapped.get_action_meanings(): env = FireResetEnv(env) env = WarpFrame(env) if clip_rewards: env = ClipRewardEnv(env) if frame_stack: env = FrameStack(env, 4) return env class Monitor(gym.Wrapper): def __init__(self, env, rank=0): gym.Wrapper.__init__(self, env=env) self.rank = rank self.rewards = [] self.total_reward = [] self.summaries_dict = {'reward': 0, 'episode_length': 0, 'total_reward': 0, 'total_episode_length': 0} env = self.env while True: if hasattr(env, 'was_real_done'): self.episodic_env = env if not hasattr(env, 'env'): break env = env.env def reset(self): self.summaries_dict['reward'] = -1 self.summaries_dict['episode_length'] = -1 self.summaries_dict['total_reward'] = -1 self.summaries_dict['total_episode_length'] = -1 self.rewards = [] env = self.env if self.episodic_env.was_real_done: self.summaries_dict['total_reward'] = -1 self.summaries_dict['total_episode_length'] = -1 self.total_reward = [] return self.env.reset() def step(self, action): observation, reward, done, info = self.env.step(action) self.rewards.append(reward) self.total_reward.append(reward) if done: # print("Done! R = %s, N = %s" % (sum(self.rewards), len(self.rewards))) self.summaries_dict['reward'] = sum(self.rewards) self.summaries_dict['episode_length'] = len(self.rewards) if self.episodic_env.was_real_done: self.summaries_dict['total_reward'] = sum(self.total_reward) self.summaries_dict['total_episode_length'] = len(self.total_reward) info = self.summaries_dict.copy() # otherwise it will be overwritten # if done: # print("info:", info) return observation, reward, done, info ================================================ FILE: rl3/a2c/main.py ================================================ # https://deeplearningcourses.com/c/cutting-edge-artificial-intelligence from subproc_vec_env import SubprocVecEnv from atari_wrappers import make_atari, wrap_deepmind, Monitor from neural_network import CNN from a2c import learn import os import gym import argparse import logging gym_minor_version = int(gym.__version__.split('.')[1]) if gym_minor_version >= 19: exit("Please install OpenAI Gym 0.19.0 or earlier") os.environ['TF_CPP_MIN_LOG_LEVEL'] = '2' # Mute missing instructions errors MODEL_PATH = 'models' SEED = 0 def get_args(): # Get some basic command line arguements parser = argparse.ArgumentParser() parser.add_argument('-e', '--env', help='environment ID', default='BreakoutNoFrameskip-v4') parser.add_argument('-s', '--steps', help='training steps', type=int, default=int(80e6)) parser.add_argument('--nenv', help='No. of environments', type=int, default=16) return parser.parse_args() def train(env_id, num_timesteps, num_cpu): def make_env(rank): def _thunk(): env = make_atari(env_id) env.seed(SEED + rank) gym.logger.setLevel(logging.WARN) env = wrap_deepmind(env) # wrap the env one more time for getting total reward env = Monitor(env, rank) return env return _thunk env = SubprocVecEnv([make_env(i) for i in range(num_cpu)]) learn(CNN, env, SEED, total_timesteps=int(num_timesteps * 1.1)) env.close() pass def main(): args = get_args() os.makedirs(MODEL_PATH, exist_ok=True) train(args.env, args.steps, num_cpu=args.nenv) if __name__ == "__main__": main() ================================================ FILE: rl3/a2c/neural_network.py ================================================ # https://deeplearningcourses.com/c/cutting-edge-artificial-intelligence import numpy as np import tensorflow as tf def sample(logits): noise = tf.random_uniform(tf.shape(logits)) return tf.argmax(logits - tf.log(-tf.log(noise)), 1) def conv(inputs, nf, ks, strides, gain=1.0): return tf.layers.conv2d(inputs=inputs, filters=nf, kernel_size=ks, strides=(strides, strides), activation=tf.nn.relu, kernel_initializer=tf.orthogonal_initializer(gain=gain)) def dense(inputs, n, act=tf.nn.relu, gain=1.0): return tf.layers.dense(inputs=inputs, units=n, activation=act, kernel_initializer=tf.orthogonal_initializer(gain)) class CNN: def __init__(self, sess, ob_space, ac_space, nenv, nsteps, nstack, reuse=False): gain = np.sqrt(2) nbatch = nenv * nsteps nh, nw, nc = ob_space.shape ob_shape = (nbatch, nh, nw, nc * nstack) X = tf.placeholder(tf.uint8, ob_shape) # obs X_normal = tf.cast(X, tf.float32) / 255.0 with tf.variable_scope("model", reuse=reuse): h1 = conv(X_normal, 32, 8, 4, gain) h2 = conv(h1, 64, 4, 2, gain) h3 = conv(h2, 64, 3, 1, gain) h3 = tf.layers.flatten(h3) h4 = dense(h3, 512, gain=gain) pi = dense(h4, ac_space.n, act=None) vf = dense(h4, 1, act=None) v0 = vf[:, 0] a0 = sample(pi) # self.initial_state = [] # State reserved for LSTM def step(ob): a, v = sess.run([a0, v0], {X: ob}) return a, v#, [] # dummy state def value(ob): return sess.run(v0, {X: ob}) self.X = X self.pi = pi self.vf = vf self.step = step self.value = value ================================================ FILE: rl3/a2c/play.py ================================================ # https://deeplearningcourses.com/c/cutting-edge-artificial-intelligence import argparse import os import numpy as np from atari_wrappers import make_atari, wrap_deepmind, Monitor from a2c import Agent from neural_network import CNN import imageio import time def get_args(): # Get some basic command line arguements parser = argparse.ArgumentParser() parser.add_argument('-e', '--env', help='environment ID', default='BreakoutNoFrameskip-v4') return parser.parse_args() def get_agent(env, nsteps=5, nstack=1, total_timesteps=int(80e6), vf_coef=0.5, ent_coef=0.01, max_grad_norm=0.5, lr=7e-4, epsilon=1e-5, alpha=0.99): # Note: nstack=1 since frame_stack=True, during training frame_stack=False agent = Agent(Network=CNN, ob_space=env.observation_space, ac_space=env.action_space, nenvs=1, nsteps=nsteps, nstack=nstack, ent_coef=ent_coef, vf_coef=vf_coef, max_grad_norm=max_grad_norm, lr=lr, alpha=alpha, epsilon=epsilon, total_timesteps=total_timesteps) return agent def main(): env_id = get_args().env env = make_atari(env_id) env = wrap_deepmind(env, frame_stack=True, clip_rewards=False, episode_life=True) env = Monitor(env) # rewards will appear higher than during training since rewards are not clipped agent = get_agent(env) # check for save path save_path = os.path.join('models', env_id + '.save') agent.load(save_path) obs = env.reset() renders = [] while True: obs = np.expand_dims(obs.__array__(), axis=0) a, v = agent.step(obs) obs, reward, done, info = env.step(a) env.render() if done: print(info) env.reset() if __name__ == '__main__': main() ================================================ FILE: rl3/a2c/subproc_vec_env.py ================================================ # https://deeplearningcourses.com/c/cutting-edge-artificial-intelligence import numpy as np from multiprocessing import Process, Pipe def worker(remote, parent_remote, env_fn_wrapper): parent_remote.close() env = env_fn_wrapper.x() while True: cmd, data = remote.recv() if cmd == 'step': ob, reward, done, info = env.step(data) if done: ob = env.reset() remote.send((ob, reward, done, info)) elif cmd == 'reset': ob = env.reset() remote.send(ob) elif cmd == 'reset_task': ob = env.reset_task() remote.send(ob) elif cmd == 'close': remote.close() break elif cmd == 'get_spaces': remote.send((env.action_space, env.observation_space)) elif cmd == 'get_id': remote.send(env.spec.id) else: raise NotImplementedError class CloudpickleWrapper(): """ Uses cloudpickle to serialize contents (otherwise multiprocessing tries to use pickle) """ def __init__(self, x): self.x = x def __getstate__(self): import cloudpickle return cloudpickle.dumps(self.x) def __setstate__(self, ob): import pickle self.x = pickle.loads(ob) class SubprocVecEnv(): def __init__(self, env_fns): """ envs: list of gym environments to run in subprocesses """ self.closed = False nenvs = len(env_fns) self.remotes, self.work_remotes = zip(*[Pipe() for _ in range(nenvs)]) self.ps = [Process(target=worker, args=(work_remote, remote, CloudpickleWrapper(env_fn))) for (work_remote, remote, env_fn) in zip(self.work_remotes, self.remotes, env_fns)] for p in self.ps: p.daemon = True # if the main process crashes, we should not cause things to hang p.start() for remote in self.work_remotes: remote.close() self.remotes[0].send(('get_spaces', None)) self.action_space, self.observation_space = self.remotes[0].recv() self.remotes[0].send(('get_id', None)) self.env_id = self.remotes[0].recv() def step(self, actions): for remote, action in zip(self.remotes, actions): remote.send(('step', action)) results = [remote.recv() for remote in self.remotes] obs, rews, dones, infos = zip(*results) # print("Infos:", infos) # for done, info in zip(dones, infos): # if done: # # print("Total reward:", info['reward'], "Num steps:", info['episode_length']) # print("Returned info:", info, "Done:", done) return np.stack(obs), np.stack(rews), np.stack(dones), infos def reset(self): for remote in self.remotes: remote.send(('reset', None)) return np.stack([remote.recv() for remote in self.remotes]) def reset_task(self): for remote in self.remotes: remote.send(('reset_task', None)) return np.stack([remote.recv() for remote in self.remotes]) def close(self): if self.closed: return for remote in self.remotes: remote.send(('close', None)) for p in self.ps: p.join() self.closed = True @property def num_envs(self): return len(self.remotes) ================================================ FILE: rl3/ddpg.py ================================================ # https://deeplearningcourses.com/c/cutting-edge-artificial-intelligence import numpy as np import tensorflow as tf import gym import matplotlib.pyplot as plt from datetime import datetime gym_minor_version = int(gym.__version__.split('.')[1]) if gym_minor_version >= 19: exit("Please install OpenAI Gym 0.19.0 or earlier") if tf.__version__.startswith('2'): exit("Please install Tensorflow 1.x") ### avoid crashing on Mac # doesn't seem to work from sys import platform as sys_pf if sys_pf == 'darwin': import matplotlib matplotlib.use("TkAgg") # simple feedforward neural net def ANN(x, layer_sizes, hidden_activation=tf.nn.relu, output_activation=None): for h in layer_sizes[:-1]: x = tf.layers.dense(x, units=h, activation=hidden_activation) return tf.layers.dense(x, units=layer_sizes[-1], activation=output_activation) # get all variables within a scope def get_vars(scope): return [x for x in tf.global_variables() if scope in x.name] ### Create both the actor and critic networks at once ### ### Q(s, mu(s)) returns the maximum Q for a given state s ### def CreateNetworks( s, a, num_actions, action_max, hidden_sizes=(300,), hidden_activation=tf.nn.relu, output_activation=tf.tanh): with tf.variable_scope('mu'): mu = action_max * ANN(s, list(hidden_sizes)+[num_actions], hidden_activation, output_activation) with tf.variable_scope('q'): input_ = tf.concat([s, a], axis=-1) # (state, action) q = tf.squeeze(ANN(input_, list(hidden_sizes)+[1], hidden_activation, None), axis=1) with tf.variable_scope('q', reuse=True): # reuse is True, so it reuses the weights from the previously defined Q network input_ = tf.concat([s, mu], axis=-1) # (state, mu(state)) q_mu = tf.squeeze(ANN(input_, list(hidden_sizes)+[1], hidden_activation, None), axis=1) return mu, q, q_mu ### The experience replay memory ### class ReplayBuffer: def __init__(self, obs_dim, act_dim, size): self.obs1_buf = np.zeros([size, obs_dim], dtype=np.float32) self.obs2_buf = np.zeros([size, obs_dim], dtype=np.float32) self.acts_buf = np.zeros([size, act_dim], dtype=np.float32) self.rews_buf = np.zeros(size, dtype=np.float32) self.done_buf = np.zeros(size, dtype=np.float32) self.ptr, self.size, self.max_size = 0, 0, size def store(self, obs, act, rew, next_obs, done): self.obs1_buf[self.ptr] = obs self.obs2_buf[self.ptr] = next_obs self.acts_buf[self.ptr] = act self.rews_buf[self.ptr] = rew self.done_buf[self.ptr] = done self.ptr = (self.ptr+1) % self.max_size self.size = min(self.size+1, self.max_size) def sample_batch(self, batch_size=32): idxs = np.random.randint(0, self.size, size=batch_size) return dict(s=self.obs1_buf[idxs], s2=self.obs2_buf[idxs], a=self.acts_buf[idxs], r=self.rews_buf[idxs], d=self.done_buf[idxs]) ### Implement the DDPG algorithm ### def ddpg( env_fn, ac_kwargs=dict(), seed=0, save_folder=None, num_train_episodes=100, test_agent_every=25, replay_size=int(1e6), gamma=0.99, decay=0.995, mu_lr=1e-3, q_lr=1e-3, batch_size=100, start_steps=10000, action_noise=0.1, max_episode_length=1000): tf.set_random_seed(seed) np.random.seed(seed) env, test_env = env_fn(), env_fn() # comment out this line if you don't want to record a video of the agent if save_folder is not None: test_env = gym.wrappers.Monitor(test_env, save_folder) # get size of state space and action space num_states = env.observation_space.shape[0] num_actions = env.action_space.shape[0] # Maximum value of action # Assumes both low and high values are the same # Assumes all actions have the same bounds # May NOT be the case for all environments action_max = env.action_space.high[0] # Create Tensorflow placeholders (neural network inputs) X = tf.placeholder(dtype=tf.float32, shape=(None, num_states)) # state A = tf.placeholder(dtype=tf.float32, shape=(None, num_actions)) # action X2 = tf.placeholder(dtype=tf.float32, shape=(None, num_states)) # next state R = tf.placeholder(dtype=tf.float32, shape=(None,)) # reward D = tf.placeholder(dtype=tf.float32, shape=(None,)) # done # Main network outputs with tf.variable_scope('main'): mu, q, q_mu = CreateNetworks(X, A, num_actions, action_max, **ac_kwargs) # Target networks with tf.variable_scope('target'): # We don't need the Q network output with arbitrary input action A # because that's not actually used in our loss functions # NOTE 1: The state input is X2, NOT X # We only care about max_a{ Q(s', a) } # Where this is equal to Q(s', mu(s')) # This is because it's used in the target calculation: r + gamma * max_a{ Q(s',a) } # Where s' = X2 # NOTE 2: We ignore the first 2 networks for the same reason _, _, q_mu_targ = CreateNetworks(X2, A, num_actions, action_max, **ac_kwargs) # Experience replay memory replay_buffer = ReplayBuffer(obs_dim=num_states, act_dim=num_actions, size=replay_size) # Target value for the Q-network loss # We use stop_gradient to tell Tensorflow not to differentiate # q_mu_targ wrt any params # i.e. consider q_mu_targ values constant q_target = tf.stop_gradient(R + gamma * (1 - D) * q_mu_targ) # DDPG losses mu_loss = -tf.reduce_mean(q_mu) q_loss = tf.reduce_mean((q - q_target)**2) # Train each network separately mu_optimizer = tf.train.AdamOptimizer(learning_rate=mu_lr) q_optimizer = tf.train.AdamOptimizer(learning_rate=q_lr) mu_train_op = mu_optimizer.minimize(mu_loss, var_list=get_vars('main/mu')) q_train_op = q_optimizer.minimize(q_loss, var_list=get_vars('main/q')) # Use soft updates to update the target networks target_update = tf.group( [tf.assign(v_targ, decay*v_targ + (1 - decay)*v_main) for v_main, v_targ in zip(get_vars('main'), get_vars('target')) ] ) # Copy main network params to target networks target_init = tf.group( [tf.assign(v_targ, v_main) for v_main, v_targ in zip(get_vars('main'), get_vars('target')) ] ) # boilerplate (and copy to the target networks!) sess = tf.Session() sess.run(tf.global_variables_initializer()) sess.run(target_init) def get_action(s, noise_scale): a = sess.run(mu, feed_dict={X: s.reshape(1,-1)})[0] a += noise_scale * np.random.randn(num_actions) return np.clip(a, -action_max, action_max) test_returns = [] def test_agent(num_episodes=5): t0 = datetime.now() n_steps = 0 for j in range(num_episodes): s, episode_return, episode_length, d = test_env.reset(), 0, 0, False while not (d or (episode_length == max_episode_length)): # Take deterministic actions at test time (noise_scale=0) test_env.render() s, r, d, _ = test_env.step(get_action(s, 0)) episode_return += r episode_length += 1 n_steps += 1 print('test return:', episode_return, 'episode_length:', episode_length) test_returns.append(episode_return) # print("test steps per sec:", n_steps / (datetime.now() - t0).total_seconds()) # Main loop: play episode and train returns = [] q_losses = [] mu_losses = [] num_steps = 0 for i_episode in range(num_train_episodes): # reset env s, episode_return, episode_length, d = env.reset(), 0, 0, False while not (d or (episode_length == max_episode_length)): # For the first `start_steps` steps, use randomly sampled actions # in order to encourage exploration. if num_steps > start_steps: a = get_action(s, action_noise) else: a = env.action_space.sample() # Keep track of the number of steps done num_steps += 1 if num_steps == start_steps: print("USING AGENT ACTIONS NOW") # Step the env s2, r, d, _ = env.step(a) episode_return += r episode_length += 1 # Ignore the "done" signal if it comes from hitting the time # horizon (that is, when it's an artificial terminal signal # that isn't based on the agent's state) d_store = False if episode_length == max_episode_length else d # Store experience to replay buffer replay_buffer.store(s, a, r, s2, d_store) # Assign next state to be the current state on the next round s = s2 # Perform the updates for _ in range(episode_length): batch = replay_buffer.sample_batch(batch_size) feed_dict = { X: batch['s'], X2: batch['s2'], A: batch['a'], R: batch['r'], D: batch['d'] } # Q network update # Note: plot the Q loss if you want ql, _, _ = sess.run([q_loss, q, q_train_op], feed_dict) q_losses.append(ql) # Policy update # (And target networks update) # Note: plot the mu loss if you want mul, _, _ = sess.run([mu_loss, mu_train_op, target_update], feed_dict) mu_losses.append(mul) print("Episode:", i_episode + 1, "Return:", episode_return, 'episode_length:', episode_length) returns.append(episode_return) # Test the agent if i_episode > 0 and i_episode % test_agent_every == 0: test_agent() # on Mac, plotting results in an error, so just save the results for later # if you're not on Mac, feel free to uncomment the below lines np.savez('ddpg_results.npz', train=returns, test=test_returns, q_losses=q_losses, mu_losses=mu_losses) # plt.plot(returns) # plt.plot(smooth(np.array(returns))) # plt.title("Train returns") # plt.show() # plt.plot(test_returns) # plt.plot(smooth(np.array(test_returns))) # plt.title("Test returns") # plt.show() # plt.plot(q_losses) # plt.title('q_losses') # plt.show() # plt.plot(mu_losses) # plt.title('mu_losses') # plt.show() def smooth(x): # last 100 n = len(x) y = np.zeros(n) for i in range(n): start = max(0, i - 99) y[i] = float(x[start:(i+1)].sum()) / (i - start + 1) return y if __name__ == '__main__': import argparse parser = argparse.ArgumentParser() # parser.add_argument('--env', type=str, default='HalfCheetah-v2') parser.add_argument('--env', type=str, default='Pendulum-v0') parser.add_argument('--hidden_layer_sizes', type=int, default=300) parser.add_argument('--num_layers', type=int, default=1) parser.add_argument('--gamma', type=float, default=0.99) parser.add_argument('--seed', type=int, default=0) parser.add_argument('--num_train_episodes', type=int, default=200) parser.add_argument('--save_folder', type=str, default='ddpg_monitor') args = parser.parse_args() ddpg( lambda : gym.make(args.env), ac_kwargs=dict(hidden_sizes=[args.hidden_layer_sizes]*args.num_layers), gamma=args.gamma, seed=args.seed, save_folder=args.save_folder, num_train_episodes=args.num_train_episodes, ) ================================================ FILE: rl3/es_flappy.py ================================================ # https://deeplearningcourses.com/c/cutting-edge-artificial-intelligence import numpy as np import matplotlib.pyplot as plt from datetime import datetime # import multiprocessing # from multiprocessing.dummy import Pool # INSTRUCTIONS FOR INSTALLING PLE: # https://pygame-learning-environment.readthedocs.io/en/latest/user/home.html from ple import PLE from ple.games.flappybird import FlappyBird import sys # thread pool for parallelization # pool = Pool(4) HISTORY_LENGTH = 1 class Env: def __init__(self): self.game = FlappyBird(pipe_gap=125) self.env = PLE(self.game, fps=30, display_screen=False) self.env.init() self.env.getGameState = self.game.getGameState # maybe not necessary # by convention we want to use (0,1) # but the game uses (None, 119) self.action_map = self.env.getActionSet() #[None, 119] def step(self, action): action = self.action_map[action] reward = self.env.act(action) done = self.env.game_over() obs = self.get_observation() # don't bother returning an info dictionary like gym return obs, reward, done def reset(self): self.env.reset_game() return self.get_observation() def get_observation(self): # game state returns a dictionary which describes # the meaning of each value # we only want the values obs = self.env.getGameState() return np.array(list(obs.values())) def set_display(self, boolean_value): self.env.display_screen = boolean_value # make a global environment to be used throughout the script env = Env() ### neural network # hyperparameters D = len(env.reset())*HISTORY_LENGTH M = 50 K = 2 def softmax(a): c = np.max(a, axis=1, keepdims=True) e = np.exp(a - c) return e / e.sum(axis=-1, keepdims=True) def relu(x): return x * (x > 0) class ANN: def __init__(self, D, M, K, f=relu): self.D = D self.M = M self.K = K self.f = f def init(self): D, M, K = self.D, self.M, self.K self.W1 = np.random.randn(D, M) / np.sqrt(D) # self.W1 = np.zeros((D, M)) self.b1 = np.zeros(M) self.W2 = np.random.randn(M, K) / np.sqrt(M) # self.W2 = np.zeros((M, K)) self.b2 = np.zeros(K) def forward(self, X): Z = self.f(X.dot(self.W1) + self.b1) return softmax(Z.dot(self.W2) + self.b2) def sample_action(self, x): # assume input is a single state of size (D,) # first make it (N, D) to fit ML conventions X = np.atleast_2d(x) P = self.forward(X) p = P[0] # the first row # return np.random.choice(len(p), p=p) return np.argmax(p) def get_params(self): # return a flat array of parameters return np.concatenate([self.W1.flatten(), self.b1, self.W2.flatten(), self.b2]) def get_params_dict(self): return { 'W1': self.W1, 'b1': self.b1, 'W2': self.W2, 'b2': self.b2, } def set_params(self, params): # params is a flat list # unflatten into individual weights D, M, K = self.D, self.M, self.K self.W1 = params[:D * M].reshape(D, M) self.b1 = params[D * M:D * M + M] self.W2 = params[D * M + M:D * M + M + M * K].reshape(M, K) self.b2 = params[-K:] def evolution_strategy( f, population_size, sigma, lr, initial_params, num_iters): # assume initial params is a 1-D array num_params = len(initial_params) reward_per_iteration = np.zeros(num_iters) params = initial_params for t in range(num_iters): t0 = datetime.now() N = np.random.randn(population_size, num_params) ### slow way R = np.zeros(population_size) # stores the reward # loop through each "offspring" for j in range(population_size): params_try = params + sigma*N[j] R[j] = f(params_try) ### fast way # R = pool.map(f, [params + sigma*N[j] for j in range(population_size)]) # R = np.array(R) m = R.mean() s = R.std() if s == 0: # we can't apply the following equation print("Skipping") continue A = (R - m) / s reward_per_iteration[t] = m params = params + lr/(population_size*sigma) * np.dot(N.T, A) # update the learning rate lr *= 0.992354 # sigma *= 0.99 print("Iter:", t, "Avg Reward: %.3f" % m, "Max:", R.max(), "Duration:", (datetime.now() - t0)) return params, reward_per_iteration def reward_function(params): model = ANN(D, M, K) model.set_params(params) # play one episode and return the total reward episode_reward = 0 episode_length = 0 # not sure if it will be used done = False obs = env.reset() obs_dim = len(obs) if HISTORY_LENGTH > 1: state = np.zeros(HISTORY_LENGTH*obs_dim) # current state state[-obs_dim:] = obs else: state = obs while not done: # get the action action = model.sample_action(state) # perform the action obs, reward, done = env.step(action) # update total reward episode_reward += reward episode_length += 1 # update state if HISTORY_LENGTH > 1: state = np.roll(state, -obs_dim) state[-obs_dim:] = obs else: state = obs return episode_reward if __name__ == '__main__': model = ANN(D, M, K) if len(sys.argv) > 1 and sys.argv[1] == 'play': # play with a saved model j = np.load('es_flappy_results.npz') best_params = np.concatenate([j['W1'].flatten(), j['b1'], j['W2'].flatten(), j['b2']]) # in case initial shapes are not correct D, M = j['W1'].shape K = len(j['b2']) model.D, model.M, model.K = D, M, K else: # train and save model.init() params = model.get_params() best_params, rewards = evolution_strategy( f=reward_function, population_size=30, sigma=0.1, lr=0.03, initial_params=params, num_iters=300, ) # plot the rewards per iteration # plt.plot(rewards) # plt.show() model.set_params(best_params) np.savez( 'es_flappy_results.npz', train=rewards, **model.get_params_dict(), ) # play 5 test episodes env.set_display(True) for _ in range(5): print("Test:", reward_function(best_params)) ================================================ FILE: rl3/es_mnist.py ================================================ # https://deeplearningcourses.com/c/cutting-edge-artificial-intelligence import numpy as np import pandas as pd import matplotlib.pyplot as plt from datetime import datetime import multiprocessing from multiprocessing.dummy import Pool # thread pool for parallelization pool = Pool(4) # get the data from: https://www.kaggle.com/c/digit-recognizer # although you can feel free to use any dataset df = pd.read_csv('../large_files/train.csv') # convert to numpy data = df.values.astype(np.float32) # randomize and split the data np.random.shuffle(data) X = data[:, 1:] / 255. Y = data[:, 0].astype(np.int32) Xtrain = X[:-1000] Ytrain = Y[:-1000] Xtest = X[-1000:] Ytest = Y[-1000:] print("Finished loading in and splitting data") # layer sizes D = Xtrain.shape[1] M = 100 K = len(set(Y)) def softmax(a): c = np.max(a, axis=1, keepdims=True) e = np.exp(a - c) return e / e.sum(axis=-1, keepdims=True) def relu(x): return x * (x > 0) def log_likelihood(Y, P): # assume Y is not one-hot encoded N = len(Y) return np.log(P[np.arange(N), Y]).mean() class ANN: def __init__(self, D, M, K): self.D = D self.M = M self.K = K def init(self): D, M, K = self.D, self.M, self.K self.W1 = np.random.randn(D, M) / np.sqrt(D) self.b1 = np.zeros(M) self.W2 = np.random.randn(M, K) / np.sqrt(M) self.b2 = np.zeros(K) def forward(self, X): Z = np.tanh(X.dot(self.W1) + self.b1) return softmax(Z.dot(self.W2) + self.b2) def score(self, X, Y): P = np.argmax(self.forward(X), axis=1) return np.mean(Y == P) def get_params(self): # return a flat array of parameters return np.concatenate([self.W1.flatten(), self.b1, self.W2.flatten(), self.b2]) def set_params(self, params): # params is a flat list # unflatten into individual weights D, M, K = self.D, self.M, self.K self.W1 = params[:D * M].reshape(D, M) self.b1 = params[D * M:D * M + M] self.W2 = params[D * M + M:D * M + M + M * K].reshape(M, K) self.b2 = params[-K:] def evolution_strategy( f, population_size, sigma, lr, initial_params, num_iters): # assume initial params is a 1-D array num_params = len(initial_params) reward_per_iteration = np.zeros(num_iters) params = initial_params for t in range(num_iters): t0 = datetime.now() N = np.random.randn(population_size, num_params) # ### slow way # R = np.zeros(population_size) # stores the reward # # loop through each "offspring" # for j in range(population_size): # params_try = params + sigma*N[j] # R[j] = f(params_try) ### fast way R = pool.map(f, [params + sigma*N[j] for j in range(population_size)]) R = np.array(R) m = R.mean() A = (R - m) / R.std() reward_per_iteration[t] = m params = params + lr/(population_size*sigma) * np.dot(N.T, A) print("Iter:", t, "Avg Reward:", m, "Duration:", (datetime.now() - t0)) return params, reward_per_iteration def reward_function(params): model = ANN(D, M, K) model.set_params(params) # Ptrain = model.forward(Xtrain) # return log_likelihood(Ytrain, Ptrain) return model.score(Xtrain, Ytrain) if __name__ == '__main__': model = ANN(D, M, K) model.init() params = model.get_params() best_params, rewards = evolution_strategy( f=reward_function, population_size=50, sigma=0.1, lr=0.2, initial_params=params, num_iters=600, ) # plot the rewards per iteration plt.plot(rewards) plt.show() # final train and test accuracy model.set_params(best_params) print("Train score:", model.score(Xtrain, Ytrain)) print("Test score:", model.score(Xtest, Ytest)) ================================================ FILE: rl3/es_mujoco.py ================================================ # https://deeplearningcourses.com/c/cutting-edge-artificial-intelligence import numpy as np import matplotlib.pyplot as plt from datetime import datetime import multiprocessing from multiprocessing.dummy import Pool import gym import sys gym_minor_version = int(gym.__version__.split('.')[1]) if gym_minor_version >= 19: exit("Please install OpenAI Gym 0.19.0 or earlier") # environment ENV_NAME = 'HalfCheetah-v2' # thread pool for parallelization pool = Pool(4) ### neural network # hyperparameters env = gym.make(ENV_NAME) D = len(env.reset()) M = 300 K = env.action_space.shape[0] action_max = env.action_space.high[0] def relu(x): return x * (x > 0) # def output_activation(x): # return action_max * np.tanh(x) class ANN: def __init__(self, D, M, K, f=relu): self.D = D self.M = M self.K = K self.f = f def init(self): D, M, K = self.D, self.M, self.K self.W1 = np.random.randn(D, M) / np.sqrt(D) # self.W1 = np.zeros((D, M)) self.b1 = np.zeros(M) self.W2 = np.random.randn(M, K) / np.sqrt(M) # self.W2 = np.zeros((M, K)) self.b2 = np.zeros(K) def forward(self, X): Z = self.f(X.dot(self.W1) + self.b1) return np.tanh(Z.dot(self.W2) + self.b2) * action_max def sample_action(self, x): # assume input is a single state of size (D,) # first make it (N, D) to fit ML conventions X = np.atleast_2d(x) Y = self.forward(X) return Y[0] # the first row def get_params(self): # return a flat array of parameters return np.concatenate([self.W1.flatten(), self.b1, self.W2.flatten(), self.b2]) def get_params_dict(self): return { 'W1': self.W1, 'b1': self.b1, 'W2': self.W2, 'b2': self.b2, } def set_params(self, params): # params is a flat list # unflatten into individual weights D, M, K = self.D, self.M, self.K self.W1 = params[:D * M].reshape(D, M) self.b1 = params[D * M:D * M + M] self.W2 = params[D * M + M:D * M + M + M * K].reshape(M, K) self.b2 = params[-K:] def evolution_strategy( f, population_size, sigma, lr, initial_params, num_iters): # assume initial params is a 1-D array num_params = len(initial_params) reward_per_iteration = np.zeros(num_iters) params = initial_params for t in range(num_iters): t0 = datetime.now() N = np.random.randn(population_size, num_params) # ### slow way # R = np.zeros(population_size) # stores the reward # # loop through each "offspring" # for j in range(population_size): # params_try = params + sigma*N[j] # R[j] = f(params_try) ### fast way R = pool.map(f, [params + sigma*N[j] for j in range(population_size)]) R = np.array(R) m = R.mean() s = R.std() if s == 0: # we can't apply the following equation print("Skipping") continue A = (R - m) / s reward_per_iteration[t] = m params = params + lr/(population_size*sigma) * np.dot(N.T, A) # update the learning rate # lr *= 0.992354 # sigma *= 0.99 print("Iter:", t, "Avg Reward: %.3f" % m, "Max:", R.max(), "Duration:", (datetime.now() - t0)) return params, reward_per_iteration def reward_function(params, display=False): model = ANN(D, M, K) model.set_params(params) env = gym.make(ENV_NAME) if display: env = gym.wrappers.Monitor(env, 'es_monitor') # play one episode and return the total reward episode_reward = 0 episode_length = 0 # not sure if it will be used done = False state = env.reset() while not done: # display the env if display: env.render() # get the action action = model.sample_action(state) # perform the action state, reward, done, _ = env.step(action) # update total reward episode_reward += reward episode_length += 1 return episode_reward if __name__ == '__main__': model = ANN(D, M, K) if len(sys.argv) > 1 and sys.argv[1] == 'play': # play with a saved model j = np.load('es_mujoco_results.npz') best_params = np.concatenate([j['W1'].flatten(), j['b1'], j['W2'].flatten(), j['b2']]) # in case initial shapes are not correct D, M = j['W1'].shape K = len(j['b2']) model.D, model.M, model.K = D, M, K else: # train and save model.init() params = model.get_params() best_params, rewards = evolution_strategy( f=reward_function, population_size=30, sigma=0.1, lr=0.03, initial_params=params, num_iters=300, ) # plot the rewards per iteration # plt.plot(rewards) # plt.show() model.set_params(best_params) np.savez( 'es_mujoco_results.npz', train=rewards, **model.get_params_dict(), ) # play test episode print("Test:", reward_function(best_params, display=True)) ================================================ FILE: rl3/es_simple.py ================================================ # https://deeplearningcourses.com/c/cutting-edge-artificial-intelligence import numpy as np import matplotlib.pyplot as plt def evolution_strategy( f, population_size, sigma, lr, initial_params, num_iters): # assume initial params is a 1-D array num_params = len(initial_params) reward_per_iteration = np.zeros(num_iters) params = initial_params for t in range(num_iters): N = np.random.randn(population_size, num_params) R = np.zeros(population_size) # stores the reward # loop through each "offspring" for j in range(population_size): params_try = params + sigma*N[j] R[j] = f(params_try) m = R.mean() A = (R - m) / R.std() reward_per_iteration[t] = m params = params + lr/(population_size*sigma) * np.dot(N.T, A) return params, reward_per_iteration def reward_function(params): x0 = params[0] x1 = params[1] x2 = params[2] return -(x0**2 + 0.1*(x1 - 1)**2 + 0.5*(x2 + 2)**2) if __name__ == '__main__': best_params, rewards = evolution_strategy( f=reward_function, population_size=50, sigma=0.1, lr=1e-3, initial_params=np.random.randn(3), num_iters=500, ) # plot the rewards per iteration plt.plot(rewards) plt.show() # final params print("Final params:", best_params) ================================================ FILE: rl3/extra_reading.txt ================================================ How do I sample from a discrete (categorical) distribution in log space? https://stats.stackexchange.com/questions/64081/how-do-i-sample-from-a-discrete-categorical-distribution-in-log-space A2C (Advantage Actor-Critic) https://openai.com/blog/baselines-acktr-a2c/ DDPG (Deep Deterministic Policy Gradient) "Continuous control with deep reinforcement learning" https://arxiv.org/abs/1509.02971 Deterministic Policy Gradient Algorithms http://proceedings.mlr.press/v32/silver14.pdf ES (Evolution Strategies) "Evolution Strategies as a Scalable Alternative to Reinforcement Learning" https://arxiv.org/abs/1703.03864 Trust Region Evolution Strategies https://www.microsoft.com/en-us/research/uploads/prod/2018/11/trust-region-evolution-strategies.pdf Addressing Function Approximation Error in Actor-Critic Methods https://arxiv.org/abs/1802.09477 ================================================ FILE: rl3/flappy2envs.py ================================================ # https://deeplearningcourses.com/c/cutting-edge-artificial-intelligence import numpy as np import matplotlib.pyplot as plt from datetime import datetime from ple import PLE from ple.games.flappybird import FlappyBird import sys from threading import Thread HISTORY_LENGTH = 1 class Env: def __init__(self): self.game = FlappyBird(pipe_gap=125) self.env = PLE(self.game, fps=30, display_screen=True) self.env.init() self.env.getGameState = self.game.getGameState # maybe not necessary # by convention we want to use (0,1) # but the game uses (None, 119) self.action_map = self.env.getActionSet() #[None, 119] def step(self, action): action = self.action_map[action] reward = self.env.act(action) done = self.env.game_over() obs = self.get_observation() # don't bother returning an info dictionary like gym return obs, reward, done def reset(self): self.env.reset_game() return self.get_observation() def get_observation(self): # game state returns a dictionary which describes # the meaning of each value # we only want the values obs = self.env.getGameState() return np.array(list(obs.values())) def set_display(self, boolean_value): self.env.display_screen = boolean_value # make a global environment to be used throughout the script env = Env() ### neural network # hyperparameters D = len(env.reset())*HISTORY_LENGTH M = 50 K = 2 def softmax(a): c = np.max(a, axis=1, keepdims=True) e = np.exp(a - c) return e / e.sum(axis=-1, keepdims=True) def relu(x): return x * (x > 0) class ANN: def __init__(self, D, M, K, f=relu): self.D = D self.M = M self.K = K self.f = f def init(self): D, M, K = self.D, self.M, self.K self.W1 = np.random.randn(D, M) / np.sqrt(D) # self.W1 = np.zeros((D, M)) self.b1 = np.zeros(M) self.W2 = np.random.randn(M, K) / np.sqrt(M) # self.W2 = np.zeros((M, K)) self.b2 = np.zeros(K) def forward(self, X): Z = self.f(X.dot(self.W1) + self.b1) return softmax(Z.dot(self.W2) + self.b2) def sample_action(self, x): # assume input is a single state of size (D,) # first make it (N, D) to fit ML conventions X = np.atleast_2d(x) P = self.forward(X) p = P[0] # the first row # return np.random.choice(len(p), p=p) return np.argmax(p) def score(self, X, Y): P = np.argmax(self.forward(X), axis=1) return np.mean(Y == P) def get_params(self): # return a flat array of parameters return np.concatenate([self.W1.flatten(), self.b1, self.W2.flatten(), self.b2]) def get_params_dict(self): return { 'W1': self.W1, 'b1': self.b1, 'W2': self.W2, 'b2': self.b2, } def set_params(self, params): # params is a flat list # unflatten into individual weights D, M, K = self.D, self.M, self.K self.W1 = params[:D * M].reshape(D, M) self.b1 = params[D * M:D * M + M] self.W2 = params[D * M + M:D * M + M + M * K].reshape(M, K) self.b2 = params[-K:] env1, env2 = Env(), Env() def reward_function(params, env): model = ANN(D, M, K) model.set_params(params) # play one episode and return the total reward episode_reward = 0 episode_length = 0 # not sure if it will be used done = False obs = env.reset() obs_dim = len(obs) if HISTORY_LENGTH > 1: state = np.zeros(HISTORY_LENGTH*obs_dim) # current state state[obs_dim:] = obs else: state = obs while not done: # get the action action = model.sample_action(state) # perform the action obs, reward, done = env.step(action) # update total reward episode_reward += reward episode_length += 1 # update state if HISTORY_LENGTH > 1: state = np.roll(state, -obs_dim) state[-obs_dim:] = obs else: state = obs print("Reward:", episode_reward) if __name__ == '__main__': j = np.load('es_flappy_results.npz') best_params = np.concatenate([j['W1'].flatten(), j['b1'], j['W2'].flatten(), j['b2']]) # in case D isn't correct D, M = j['W1'].shape K = len(j['b2']) t1 = Thread(target=reward_function, args=(best_params, env1)) t2 = Thread(target=reward_function, args=(best_params, env2)) t1.start() t2.start() t1.join() t2.join() ================================================ FILE: rl3/gym_review.py ================================================ # https://deeplearningcourses.com/c/cutting-edge-artificial-intelligence import gym import numpy as np import matplotlib.pyplot as plt gym_minor_version = int(gym.__version__.split('.')[1]) if gym_minor_version >= 19: exit("Please install OpenAI Gym 0.19.0 or earlier") def get_action(s, w): return 1 if s.dot(w) > 0 else 0 def play_one_episode(env, params): observation = env.reset() done = False t = 0 r = 0 while not done and t < 10000: t += 1 action = get_action(observation, params) observation, reward, done, info = env.step(action) r += reward return r def play_multiple_episodes(env, T, params): episode_rewards = np.empty(T) for i in range(T): episode_rewards[i] = play_one_episode(env, params) avg_reward = episode_rewards.mean() print("avg reward:", avg_reward) return avg_reward def random_search(env): episode_rewards = [] best = 0 params = None for t in range(100): new_params = np.random.random(4)*2 - 1 avg_reward = play_multiple_episodes(env, 100, new_params) episode_rewards.append(avg_reward) if avg_reward > best: params = new_params best = avg_reward return episode_rewards, params if __name__ == '__main__': env = gym.make('CartPole-v0') episode_rewards, params = random_search(env) plt.plot(episode_rewards) plt.show() # play a final set of episodes print("***Final run with final weights***") play_multiple_episodes(env, 100, params) ================================================ FILE: rl3/plot_ddpg_result.py ================================================ # https://deeplearningcourses.com/c/cutting-edge-artificial-intelligence import json import matplotlib.pyplot as plt import numpy as np def smooth(x): # last 100 n = len(x) y = np.zeros(n) for i in range(n): start = max(0, i - 99) y[i] = float(x[start:(i+1)].sum()) / (i - start + 1) return y j = np.load('ddpg_results.npz') returns = j['train'] test_returns = j['test'] q_losses = j['q_losses'] mu_losses = j['mu_losses'] plt.plot(returns) plt.plot(smooth(np.array(returns))) plt.title("Train returns") plt.show() plt.plot(test_returns) plt.plot(smooth(np.array(test_returns))) plt.title("Test returns") plt.show() plt.plot(q_losses) plt.title('q_losses') plt.show() plt.plot(mu_losses) plt.title('mu_losses') plt.show() ================================================ FILE: rl3/plot_es_flappy_results.py ================================================ # https://deeplearningcourses.com/c/cutting-edge-artificial-intelligence import matplotlib.pyplot as plt import numpy as np def smooth(x): # last 100 n = len(x) y = np.zeros(n) for i in range(n): start = max(0, i - 99) y[i] = float(x[start:(i+1)].sum()) / (i - start + 1) return y j = np.load('es_flappy_results.npz') returns = j['train'] plt.plot(returns) plt.plot(smooth(np.array(returns))) plt.title("Train returns") plt.show() ================================================ FILE: rl3/plot_es_mujoco_results.py ================================================ # https://deeplearningcourses.com/c/cutting-edge-artificial-intelligence import matplotlib.pyplot as plt import numpy as np def smooth(x): # last 100 n = len(x) y = np.zeros(n) for i in range(n): start = max(0, i - 99) y[i] = float(x[start:(i+1)].sum()) / (i - start + 1) return y j = np.load('es_mujoco_results.npz') returns = j['train'] plt.plot(returns) plt.plot(smooth(np.array(returns))) plt.title("Train returns") plt.show() ================================================ FILE: rl3/sample_test.py ================================================ # https://deeplearningcourses.com/c/cutting-edge-artificial-intelligence import numpy as np import matplotlib.pyplot as plt logits = np.log([0.1, 0.2, 0.3, 0.4]) samples = [] for _ in range(10000): noise = np.random.random(len(logits)) sample = np.argmax(logits - np.log(-np.log(noise))) samples.append(sample) plt.hist(samples) plt.show() ================================================ FILE: rl3v2/extra_reading.txt ================================================ === PART 1 === ES (Evolution Strategies) "Evolution Strategies as a Scalable Alternative to Reinforcement Learning" https://arxiv.org/abs/1703.03864 Trust Region Evolution Strategies https://www.microsoft.com/en-us/research/uploads/prod/2018/11/trust-region-evolution-strategies.pdf The CMA Evolution Strategy: A Tutorial https://arxiv.org/pdf/1604.00772 Simple random search provides a competitive approach to reinforcement learning (Augmented Random Search) https://arxiv.org/abs/1803.07055 === PART 2 === DDPG (Deep Deterministic Policy Gradient) "Continuous control with deep reinforcement learning" https://arxiv.org/abs/1509.02971 Deterministic Policy Gradient Algorithms http://proceedings.mlr.press/v32/silver14.pdf Addressing Function Approximation Error in Actor-Critic Methods https://arxiv.org/abs/1802.09477 ================================================ FILE: rl3v2/visualize_es.py ================================================ import numpy as np import matplotlib.pyplot as plt # Objective function to minimize (you can change this) def f(x, y): # return np.sin(x) + np.cos(y) return -((x - 1)**2 + y**2) # Evolution Strategies optimizer (simple version) def evolution_strategies( f, bounds, pop_size=50, sigma=0.3, alpha=0.03, iterations=100 ): dim = 2 mu = np.random.uniform(bounds[0], bounds[1], size=dim) history = [] for gen in range(iterations): # Sample noise noise = np.random.randn(pop_size, dim) population = mu + sigma * noise fitness = np.array([f(x[0], x[1]) for x in population]) history.append((population.copy(), mu.copy())) # Normalize fitness for weighting fitness_norm = (fitness - np.mean(fitness)) / (np.std(fitness) + 1e-8) mu += alpha / (pop_size * sigma) * np.dot(noise.T, fitness_norm) return history # Visualization function def visualize_es(history, bounds, f, resolution=100): x = np.linspace(bounds[0], bounds[1], resolution) y = np.linspace(bounds[0], bounds[1], resolution) X, Y = np.meshgrid(x, y) Z = f(X, Y) plt.figure(figsize=(8, 6)) for i, (pop, mu) in enumerate(history): plt.clf() plt.contourf(X, Y, Z, levels=50, cmap='viridis') plt.colorbar(label="f(x, y)") plt.scatter(pop[:, 0], pop[:, 1], c='white', s=20, label='Population') plt.scatter(mu[0], mu[1], c='red', s=80, label='Mean', edgecolors='black') plt.title(f"Evolution Strategies - Step {i+1}") plt.xlim(bounds[0], bounds[1]) plt.ylim(bounds[0], bounds[1]) plt.xlabel('x') plt.ylabel('y') plt.legend() # plt.pause(0.1) plt.waitforbuttonpress() plt.show() # Run bounds = (-5, 5) history = evolution_strategies(f, bounds, iterations=80) visualize_es(history, bounds, f) ================================================ FILE: rl3v2/visualize_hill_climbing.py ================================================ import numpy as np import matplotlib.pyplot as plt # Objective function to minimize (you can change this) def f(x, y): # return np.sin(x) + np.cos(y) return -((x - 1)**2 + y**2) # Evolution Strategies optimizer (simple version) def hill_climb( f, bounds, pop_size=1, sigma=0.3, alpha=0.3, iterations=100 ): dim = 2 mu = np.random.uniform(bounds[0], bounds[1], size=dim) history = [] best_f = f(mu) for gen in range(iterations): # Sample noise noise = np.random.randn(pop_size, dim) population = mu + sigma * noise fitness = np.array([f(x[0], x[1]) for x in population]) history.append((population.copy(), mu.copy())) # Update point if it's better if fitness[0] > best_f: best_f = fitness[0] mu = population.flatten() return history # Visualization function def visualize_es(history, bounds, f, resolution=100): x = np.linspace(bounds[0], bounds[1], resolution) y = np.linspace(bounds[0], bounds[1], resolution) X, Y = np.meshgrid(x, y) Z = f(X, Y) plt.figure(figsize=(8, 6)) for i, (pop, mu) in enumerate(history): plt.clf() plt.contourf(X, Y, Z, levels=50, cmap='viridis') plt.colorbar(label="f(x, y)") plt.scatter(pop[:, 0], pop[:, 1], c='white', s=20, label='Population') plt.scatter(mu[0], mu[1], c='red', s=80, label='Mean', edgecolors='black') plt.title(f"Hill Climbing - Step {i+1}") plt.xlim(bounds[0], bounds[1]) plt.ylim(bounds[0], bounds[1]) plt.xlabel('x') plt.ylabel('y') plt.legend() # plt.pause(0.1) plt.waitforbuttonpress() plt.show() # Run bounds = (-5, 5) history = hill_climb(f, bounds, iterations=80) visualize_es(history, bounds, f) ================================================ FILE: rnn_class/WHERE ARE THE NOTEBOOKS.txt ================================================ As stated in the "where to get the code" / "where to get the notebooks" lecture, the notebooks are NOT on Github. If you missed this, please review the lecture for the actual location of the notebooks. If, after reviewing it, you still need assistance, please contact info@deeplearningcourses.com. ================================================ FILE: rnn_class/__init__.py ================================================ ================================================ FILE: rnn_class/batch_gru.py ================================================ # https://deeplearningcourses.com/c/deep-learning-recurrent-neural-networks-in-python # https://udemy.com/deep-learning-recurrent-neural-networks-in-python from __future__ import print_function, division from builtins import range # Note: you may need to update your version of future # sudo pip install -U future import numpy as np import theano import theano.tensor as T from util import init_weight class GRU: def __init__(self, Mi, Mo, activation): self.Mi = Mi self.Mo = Mo self.f = activation # numpy init Wxr = init_weight(Mi, Mo) Whr = init_weight(Mo, Mo) br = np.zeros(Mo) Wxz = init_weight(Mi, Mo) Whz = init_weight(Mo, Mo) bz = np.zeros(Mo) Wxh = init_weight(Mi, Mo) Whh = init_weight(Mo, Mo) bh = np.zeros(Mo) h0 = np.zeros(Mo) # theano vars self.Wxr = theano.shared(Wxr) self.Whr = theano.shared(Whr) self.br = theano.shared(br) self.Wxz = theano.shared(Wxz) self.Whz = theano.shared(Whz) self.bz = theano.shared(bz) self.Wxh = theano.shared(Wxh) self.Whh = theano.shared(Whh) self.bh = theano.shared(bh) self.h0 = theano.shared(h0) self.params = [self.Wxr, self.Whr, self.br, self.Wxz, self.Whz, self.bz, self.Wxh, self.Whh, self.bh, self.h0] def get_ht(self, xWxr_t, xWxz_t, xWxh_t, h_t1): r = T.nnet.sigmoid(xWxr_t + h_t1.dot(self.Whr) + self.br) z = T.nnet.sigmoid(xWxz_t + h_t1.dot(self.Whz) + self.bz) hhat = self.f(xWxh_t + (r * h_t1).dot(self.Whh) + self.bh) h = (1 - z) * h_t1 + z * hhat return h def recurrence(self, xWxr_t, xWxz_t, xWxh_t, is_start, h_t1, h0): h_t = T.switch( T.eq(is_start, 1), self.get_ht(xWxr_t, xWxz_t, xWxh_t, h0), self.get_ht(xWxr_t, xWxz_t, xWxh_t, h_t1) ) return h_t def output(self, Xflat, startPoints): # Xflat should be (NT, D) # calculate X after multiplying input weights XWxr = Xflat.dot(self.Wxr) XWxz = Xflat.dot(self.Wxz) XWxh = Xflat.dot(self.Wxh) h, _ = theano.scan( fn=self.recurrence, sequences=[XWxr, XWxz, XWxh, startPoints], outputs_info=[self.h0], non_sequences=[self.h0], n_steps=Xflat.shape[0], ) return h ================================================ FILE: rnn_class/batch_parity.py ================================================ # https://deeplearningcourses.com/c/deep-learning-recurrent-neural-networks-in-python # https://udemy.com/deep-learning-recurrent-neural-networks-in-python from __future__ import print_function, division from builtins import range # Note: you may need to update your version of future # sudo pip install -U future import theano import theano.tensor as T import numpy as np import matplotlib.pyplot as plt from sklearn.utils import shuffle from util import init_weight, all_parity_pairs_with_sequence_labels class SimpleRNN: def __init__(self, M): self.M = M # hidden layer size def fit(self, X, Y, batch_sz=20, learning_rate=1.0, mu=0.99, reg=1.0, activation=T.tanh, epochs=100, show_fig=False): D = X[0].shape[1] # X is of size N x T(n) x D K = len(set(Y.flatten())) N = len(Y) M = self.M self.f = activation # initial weights Wx = init_weight(D, M) Wh = init_weight(M, M) bh = np.zeros(M) h0 = np.zeros(M) Wo = init_weight(M, K) bo = np.zeros(K) # make them theano shared self.Wx = theano.shared(Wx) self.Wh = theano.shared(Wh) self.bh = theano.shared(bh) self.h0 = theano.shared(h0) self.Wo = theano.shared(Wo) self.bo = theano.shared(bo) self.params = [self.Wx, self.Wh, self.bh, self.h0, self.Wo, self.bo] thX = T.fmatrix('X') # will represent multiple batches concatenated thY = T.ivector('Y') thStartPoints = T.ivector('start_points') XW = thX.dot(self.Wx) # startPoints will contain 1 where a sequence starts and 0 otherwise # Ex. if I have 3 sequences: [[1,2,3], [4,5], [6,7,8]] # Then I will concatenate these into one X: [1,2,3,4,5,6,7,8] # And startPoints will be [1,0,0,1,0,1,0,0] # One possible solution: loop through index # def recurrence(t, h_t1, XW, h0, startPoints): # # returns h(t) # # if at a boundary, state should be h0 # h_t = T.switch( # T.eq(startPoints[t], 1), # self.f(XW[t] + h0.dot(self.Wh) + self.bh), # self.f(XW[t] + h_t1.dot(self.Wh) + self.bh) # ) # return h_t # h, _ = theano.scan( # fn=recurrence, # outputs_info=[self.h0], # sequences=T.arange(XW.shape[0]), # non_sequences=[XW, self.h0, thStartPoints], # n_steps=XW.shape[0], # ) # other solution - loop through all sequences simultaneously def recurrence(xw_t, is_start, h_t1, h0): # if at a boundary, state should be h0 h_t = T.switch( T.eq(is_start, 1), self.f(xw_t + h0.dot(self.Wh) + self.bh), self.f(xw_t + h_t1.dot(self.Wh) + self.bh) ) return h_t h, _ = theano.scan( fn=recurrence, outputs_info=[self.h0], sequences=[XW, thStartPoints], non_sequences=[self.h0], n_steps=XW.shape[0], ) # h is of shape (T*batch_sz, M) py_x = T.nnet.softmax(h.dot(self.Wo) + self.bo) prediction = T.argmax(py_x, axis=1) cost = -T.mean(T.log(py_x[T.arange(thY.shape[0]), thY])) grads = T.grad(cost, self.params) dparams = [theano.shared(p.get_value()*0) for p in self.params] updates = [ (p, p + mu*dp - learning_rate*g) for p, dp, g in zip(self.params, dparams, grads) ] + [ (dp, mu*dp - learning_rate*g) for dp, g in zip(dparams, grads) ] # self.predict_op = theano.function(inputs=[thX, thStartPoints], outputs=prediction) self.train_op = theano.function( inputs=[thX, thY, thStartPoints], outputs=[cost, prediction, py_x], updates=updates ) costs = [] n_batches = N // batch_sz sequenceLength = X.shape[1] # if each sequence was of variable length, we would need to # initialize this inside the loop for every new batch startPoints = np.zeros(sequenceLength*batch_sz, dtype=np.int32) for b in range(batch_sz): startPoints[b*sequenceLength] = 1 for i in range(epochs): X, Y = shuffle(X, Y) n_correct = 0 cost = 0 for j in range(n_batches): Xbatch = X[j*batch_sz:(j+1)*batch_sz].reshape(sequenceLength*batch_sz, D) Ybatch = Y[j*batch_sz:(j+1)*batch_sz].reshape(sequenceLength*batch_sz).astype(np.int32) c, p, rout = self.train_op(Xbatch, Ybatch, startPoints) # print "p:", p cost += c # P = p.reshape(batch_sz, sequenceLength) for b in range(batch_sz): idx = sequenceLength*(b + 1) - 1 if p[idx] == Ybatch[idx]: n_correct += 1 # else: # print "pred:", p[idx], "actual:", Ybatch[idx] if i % 10 == 0: print("shape y:", rout.shape) print("i:", i, "cost:", cost, "classification rate:", (float(n_correct)/N)) if n_correct == N: print("i:", i, "cost:", cost, "classification rate:", (float(n_correct)/N)) break costs.append(cost) if show_fig: plt.plot(costs) plt.show() def parity(B=12, learning_rate=1e-3, epochs=3000): X, Y = all_parity_pairs_with_sequence_labels(B) rnn = SimpleRNN(4) rnn.fit(X, Y, batch_sz=10, learning_rate=learning_rate, epochs=epochs, activation=T.nnet.sigmoid, show_fig=False ) if __name__ == '__main__': parity() ================================================ FILE: rnn_class/batch_units.py ================================================ # https://deeplearningcourses.com/c/deep-learning-recurrent-neural-networks-in-python # https://udemy.com/deep-learning-recurrent-neural-networks-in-python from __future__ import print_function, division from builtins import range # Note: you may need to update your version of future # sudo pip install -U future import numpy as np import theano import theano.tensor as T def init_weight(Mi, Mo): return np.random.randn(Mi, Mo) * np.sqrt(2.0 / Mi) class SimpleRecurrentLayer: def __init__(self, Mi, Mo, activation): self.Mi = Mi self.Mo = Mo self.f = activation # numpy init Wxh = init_weight(Mi, Mo) Whh = init_weight(Mo, Mo) b = np.zeros(Mo) h0 = np.zeros(Mo) # theano vars self.Wxh = theano.shared(Wxh) self.Whh = theano.shared(Whh) self.b = theano.shared(b) self.h0 = theano.shared(h0) self.params = [self.Wxh, self.Whh, self.b, self.h0] def get_ht(self, xWxh_t, h_t1): return self.f(xWxh_t + h_t1.dot(self.Whh) + self.b) def recurrence(self, xWxh_t, is_start, h_t1, h0): h_t = T.switch( T.eq(is_start, 1), self.get_ht(xWxh_t, h0), self.get_ht(xWxh_t, h_t1) ) return h_t def output(self, Xflat, startPoints): # Xflat should be (NT, D) # calculate X after multiplying input weights XWxh = Xflat.dot(self.Wxh) h, _ = theano.scan( fn=self.recurrence, sequences=[XWxh, startPoints], outputs_info=[self.h0], non_sequences=[self.h0], n_steps=Xflat.shape[0], ) return h class GRU: def __init__(self, Mi, Mo, activation): self.Mi = Mi self.Mo = Mo self.f = activation # numpy init Wxr = init_weight(Mi, Mo) Whr = init_weight(Mo, Mo) br = np.zeros(Mo) Wxz = init_weight(Mi, Mo) Whz = init_weight(Mo, Mo) bz = np.zeros(Mo) Wxh = init_weight(Mi, Mo) Whh = init_weight(Mo, Mo) bh = np.zeros(Mo) h0 = np.zeros(Mo) # theano vars self.Wxr = theano.shared(Wxr) self.Whr = theano.shared(Whr) self.br = theano.shared(br) self.Wxz = theano.shared(Wxz) self.Whz = theano.shared(Whz) self.bz = theano.shared(bz) self.Wxh = theano.shared(Wxh) self.Whh = theano.shared(Whh) self.bh = theano.shared(bh) self.h0 = theano.shared(h0) self.params = [self.Wxr, self.Whr, self.br, self.Wxz, self.Whz, self.bz, self.Wxh, self.Whh, self.bh, self.h0] def get_ht(self, xWxr_t, xWxz_t, xWxh_t, h_t1): r = T.nnet.sigmoid(xWxr_t + h_t1.dot(self.Whr) + self.br) z = T.nnet.sigmoid(xWxz_t + h_t1.dot(self.Whz) + self.bz) hhat = self.f(xWxh_t + (r * h_t1).dot(self.Whh) + self.bh) h = (1 - z) * h_t1 + z * hhat return h def recurrence(self, xWxr_t, xWxz_t, xWxh_t, is_start, h_t1, h0): h_t = T.switch( T.eq(is_start, 1), self.get_ht(xWxr_t, xWxz_t, xWxh_t, h0), self.get_ht(xWxr_t, xWxz_t, xWxh_t, h_t1) ) return h_t def output(self, Xflat, startPoints): # Xflat should be (NT, D) # calculate X after multiplying input weights XWxr = Xflat.dot(self.Wxr) XWxz = Xflat.dot(self.Wxz) XWxh = Xflat.dot(self.Wxh) h, _ = theano.scan( fn=self.recurrence, sequences=[XWxr, XWxz, XWxh, startPoints], outputs_info=[self.h0], non_sequences=[self.h0], n_steps=Xflat.shape[0], ) return h class LSTM: def __init__(self, Mi, Mo, activation): self.Mi = Mi self.Mo = Mo self.f = activation # numpy init Wxi = init_weight(Mi, Mo) Whi = init_weight(Mo, Mo) Wci = init_weight(Mo, Mo) bi = np.zeros(Mo) Wxf = init_weight(Mi, Mo) Whf = init_weight(Mo, Mo) Wcf = init_weight(Mo, Mo) bf = np.zeros(Mo) Wxc = init_weight(Mi, Mo) Whc = init_weight(Mo, Mo) bc = np.zeros(Mo) Wxo = init_weight(Mi, Mo) Who = init_weight(Mo, Mo) Wco = init_weight(Mo, Mo) bo = np.zeros(Mo) c0 = np.zeros(Mo) h0 = np.zeros(Mo) # theano vars self.Wxi = theano.shared(Wxi) self.Whi = theano.shared(Whi) self.Wci = theano.shared(Wci) self.bi = theano.shared(bi) self.Wxf = theano.shared(Wxf) self.Whf = theano.shared(Whf) self.Wcf = theano.shared(Wcf) self.bf = theano.shared(bf) self.Wxc = theano.shared(Wxc) self.Whc = theano.shared(Whc) self.bc = theano.shared(bc) self.Wxo = theano.shared(Wxo) self.Who = theano.shared(Who) self.Wco = theano.shared(Wco) self.bo = theano.shared(bo) self.c0 = theano.shared(c0) self.h0 = theano.shared(h0) self.params = [ self.Wxi, self.Whi, self.Wci, self.bi, self.Wxf, self.Whf, self.Wcf, self.bf, self.Wxc, self.Whc, self.bc, self.Wxo, self.Who, self.Wco, self.bo, self.c0, self.h0, ] def get_ht_ct(self, xWxi_t, xWxf_t, xWxc_t, xWxo_t, h_t1, c_t1): i_t = T.nnet.sigmoid(xWxi_t + h_t1.dot(self.Whi) + c_t1.dot(self.Wci) + self.bi) f_t = T.nnet.sigmoid(xWxf_t + h_t1.dot(self.Whf) + c_t1.dot(self.Wcf) + self.bf) c_t = f_t * c_t1 + i_t * T.tanh(xWxc_t + h_t1.dot(self.Whc) + self.bc) o_t = T.nnet.sigmoid(xWxo_t + h_t1.dot(self.Who) + c_t.dot(self.Wco) + self.bo) h_t = o_t * T.tanh(c_t) return h_t, c_t def recurrence(self, xWxi_t, xWxf_t, xWxc_t, xWxo_t, is_start, h_t1, c_t1, h0, c0): h_t_c_t = T.switch( T.eq(is_start, 1), self.get_ht_ct(xWxi_t, xWxf_t, xWxc_t, xWxo_t, h0, c0), self.get_ht_ct(xWxi_t, xWxf_t, xWxc_t, xWxo_t, h_t1, c_t1) ) return h_t_c_t[0], h_t_c_t[1] def output(self, Xflat, startPoints): # Xflat should be (NT, D) # calculate X after multiplying input weights XWxi = Xflat.dot(self.Wxi) XWxf = Xflat.dot(self.Wxf) XWxc = Xflat.dot(self.Wxc) XWxo = Xflat.dot(self.Wxo) [h, c], _ = theano.scan( fn=self.recurrence, sequences=[XWxi, XWxf, XWxc, XWxo, startPoints], outputs_info=[self.h0, self.c0], non_sequences=[self.h0, self.c0], n_steps=Xflat.shape[0], ) return h ================================================ FILE: rnn_class/batch_wiki.py ================================================ # https://deeplearningcourses.com/c/deep-learning-recurrent-neural-networks-in-python # https://udemy.com/deep-learning-recurrent-neural-networks-in-python from __future__ import print_function, division from future.utils import iteritems from builtins import range # Note: you may need to update your version of future # sudo pip install -U future import os import sys import theano import theano.tensor as T import numpy as np import matplotlib.pyplot as plt import json from datetime import datetime from sklearn.utils import shuffle from batch_units import GRU, LSTM from util import init_weight, get_wikipedia_data from brown import get_sentences_with_word2idx_limit_vocab class RNN: def __init__(self, D, hidden_layer_sizes, V): self.hidden_layer_sizes = hidden_layer_sizes self.D = D self.V = V def fit(self, X, learning_rate=1e-4, mu=0.99, epochs=10, batch_sz=100, show_fig=True, activation=T.nnet.relu, RecurrentUnit=LSTM): D = self.D V = self.V N = len(X) We = init_weight(V, D) self.hidden_layers = [] Mi = D for Mo in self.hidden_layer_sizes: ru = RecurrentUnit(Mi, Mo, activation) self.hidden_layers.append(ru) Mi = Mo Wo = init_weight(Mi, V) bo = np.zeros(V) self.We = theano.shared(We) self.Wo = theano.shared(Wo) self.bo = theano.shared(bo) self.params = [self.We, self.Wo, self.bo] for ru in self.hidden_layers: self.params += ru.params thX = T.ivector('X') # will represent multiple batches concatenated thY = T.ivector('Y') # represents next word thStartPoints = T.ivector('start_points') Z = self.We[thX] for ru in self.hidden_layers: Z = ru.output(Z, thStartPoints) py_x = T.nnet.softmax(Z.dot(self.Wo) + self.bo) prediction = T.argmax(py_x, axis=1) cost = -T.mean(T.log(py_x[T.arange(thY.shape[0]), thY])) grads = T.grad(cost, self.params) dparams = [theano.shared(p.get_value()*0) for p in self.params] updates = [ (p, p + mu*dp - learning_rate*g) for p, dp, g in zip(self.params, dparams, grads) ] + [ (dp, mu*dp - learning_rate*g) for dp, g in zip(dparams, grads) ] # self.predict_op = theano.function(inputs=[thX, thStartPoints], outputs=prediction) self.train_op = theano.function( inputs=[thX, thY, thStartPoints], outputs=[cost, prediction], updates=updates ) costs = [] n_batches = N // batch_sz for i in range(epochs): t0 = datetime.now() X = shuffle(X) n_correct = 0 n_total = 0 cost = 0 for j in range(n_batches): # construct input sequence and output sequence as # concatenatation of multiple input sequences and output sequences # input X should be a list of 2-D arrays or one 3-D array # N x T(n) x D - batch size x sequence length x num features # sequence length can be variable sequenceLengths = [] input_sequence = [] output_sequence = [] for k in range(j*batch_sz, (j+1)*batch_sz): # don't always add the end token if np.random.random() < 0.01 or len(X[k]) <= 1: input_sequence += [0] + X[k] output_sequence += X[k] + [1] sequenceLengths.append(len(X[k]) + 1) else: input_sequence += [0] + X[k][:-1] output_sequence += X[k] sequenceLengths.append(len(X[k])) n_total += len(output_sequence) startPoints = np.zeros(len(output_sequence), dtype=np.int32) last = 0 for length in sequenceLengths: startPoints[last] = 1 last += length c, p = self.train_op(input_sequence, output_sequence, startPoints) cost += c for pj, xj in zip(p, output_sequence): if pj == xj: n_correct += 1 if j % 1 == 0: sys.stdout.write("j/n_batches: %d/%d correct rate so far: %f\r" % (j, n_batches, float(n_correct)/n_total)) sys.stdout.flush() print("i:", i, "cost:", cost, "correct rate:", (float(n_correct)/n_total), "time for epoch:", (datetime.now() - t0)) costs.append(cost) if show_fig: plt.plot(costs) plt.show() def train_wikipedia(we_file='word_embeddings.npy', w2i_file='wikipedia_word2idx.json', RecurrentUnit=GRU): # there are 32 files ### note: you can pick between Wikipedia data and Brown corpus ### just comment one out, and uncomment the other! # sentences, word2idx = get_wikipedia_data(n_files=100, n_vocab=2000) sentences, word2idx = get_sentences_with_word2idx_limit_vocab() print("finished retrieving data") print("vocab size:", len(word2idx), "number of sentences:", len(sentences)) rnn = RNN(30, [30], len(word2idx)) rnn.fit(sentences, learning_rate=2*1e-4, epochs=10, show_fig=True, activation=T.nnet.relu) np.save(we_file, rnn.We.get_value()) with open(w2i_file, 'w') as f: json.dump(word2idx, f) def find_analogies(w1, w2, w3, we_file='word_embeddings.npy', w2i_file='wikipedia_word2idx.json'): We = np.load(we_file) with open(w2i_file) as f: word2idx = json.load(f) king = We[word2idx[w1]] man = We[word2idx[w2]] woman = We[word2idx[w3]] v0 = king - man + woman def dist1(a, b): return np.linalg.norm(a - b) def dist2(a, b): return 1 - a.dot(b) / (np.linalg.norm(a) * np.linalg.norm(b)) for dist, name in [(dist1, 'Euclidean'), (dist2, 'cosine')]: min_dist = float('inf') best_word = '' for word, idx in iteritems(word2idx): if word not in (w1, w2, w3): v1 = We[idx] d = dist(v0, v1) if d < min_dist: min_dist = d best_word = word print("closest match by", name, "distance:", best_word) print(w1, "-", w2, "=", best_word, "-", w3) if __name__ == '__main__': if not os.path.exists('working_files'): os.mkdir('working_files') we = 'working_files/batch_gru_word_embeddings.npy' w2i = 'working_files/batch_wikipedia_word2idx.json' train_wikipedia(we, w2i, RecurrentUnit=LSTM) find_analogies('king', 'man', 'woman', we, w2i) find_analogies('france', 'paris', 'london', we, w2i) find_analogies('france', 'paris', 'rome', we, w2i) find_analogies('paris', 'france', 'italy', we, w2i) ================================================ FILE: rnn_class/brown.py ================================================ # https://deeplearningcourses.com/c/deep-learning-recurrent-neural-networks-in-python # https://udemy.com/deep-learning-recurrent-neural-networks-in-python from __future__ import print_function, division from builtins import range # Note: you may need to update your version of future # sudo pip install -U future from nltk.corpus import brown import operator KEEP_WORDS = set([ 'king', 'man', 'queen', 'woman', 'italy', 'rome', 'france', 'paris', 'london', 'britain', 'england', ]) def get_sentences(): # returns 57340 of the Brown corpus # each sentence is represented as a list of individual string tokens return brown.sents() def get_sentences_with_word2idx(): sentences = get_sentences() indexed_sentences = [] i = 2 word2idx = {'START': 0, 'END': 1} for sentence in sentences: indexed_sentence = [] for token in sentence: token = token.lower() if token not in word2idx: word2idx[token] = i i += 1 indexed_sentence.append(word2idx[token]) indexed_sentences.append(indexed_sentence) print("Vocab size:", i) return indexed_sentences, word2idx def get_sentences_with_word2idx_limit_vocab(n_vocab=2000, keep_words=KEEP_WORDS): sentences = get_sentences() indexed_sentences = [] i = 2 word2idx = {'START': 0, 'END': 1} idx2word = ['START', 'END'] word_idx_count = { 0: float('inf'), 1: float('inf'), } for sentence in sentences: indexed_sentence = [] for token in sentence: token = token.lower() if token not in word2idx: idx2word.append(token) word2idx[token] = i i += 1 # keep track of counts for later sorting idx = word2idx[token] word_idx_count[idx] = word_idx_count.get(idx, 0) + 1 indexed_sentence.append(idx) indexed_sentences.append(indexed_sentence) # restrict vocab size # set all the words I want to keep to infinity # so that they are included when I pick the most # common words for word in keep_words: word_idx_count[word2idx[word]] = float('inf') sorted_word_idx_count = sorted(word_idx_count.items(), key=operator.itemgetter(1), reverse=True) word2idx_small = {} new_idx = 0 idx_new_idx_map = {} for idx, count in sorted_word_idx_count[:n_vocab]: word = idx2word[idx] print(word, count) word2idx_small[word] = new_idx idx_new_idx_map[idx] = new_idx new_idx += 1 # let 'unknown' be the last token word2idx_small['UNKNOWN'] = new_idx unknown = new_idx assert('START' in word2idx_small) assert('END' in word2idx_small) for word in keep_words: assert(word in word2idx_small) # map old idx to new idx sentences_small = [] for sentence in indexed_sentences: if len(sentence) > 1: new_sentence = [idx_new_idx_map[idx] if idx in idx_new_idx_map else unknown for idx in sentence] sentences_small.append(new_sentence) return sentences_small, word2idx_small ================================================ FILE: rnn_class/exercises.txt ================================================ Logistic Regression https://www.kaggle.com/uciml/pima-indians-diabetes-database https://lazyprogrammer.me/course_files/exercises/diabetes.csv Linear Regression https://www.cs.toronto.edu/~delve/data/boston/bostonDetail.html https://lazyprogrammer.me/course_files/exercises/boston.txt ANN https://archive.ics.uci.edu/ml/datasets/ecoli (orig) https://www.kaggle.com/elikplim/ecoli-data-set (alt) https://lazyprogrammer.me/course_files/exercises/ecoli.csv RNN Find your own stock price dataset! NLP https://www.kaggle.com/crowdflower/twitter-airline-sentiment https://lazyprogrammer.me/course_files/exercises/AirlineSentimentTweets.csv ================================================ FILE: rnn_class/extra_reading.txt ================================================ Empirical Evaluation of Gated Recurrent Neural Networks on Sequence Modeling, Chung 2014 https://arxiv.org/pdf/1412.3555v1.pdf ================================================ FILE: rnn_class/gru.py ================================================ # https://deeplearningcourses.com/c/deep-learning-recurrent-neural-networks-in-python # https://udemy.com/deep-learning-recurrent-neural-networks-in-python from __future__ import print_function, division from builtins import range # Note: you may need to update your version of future # sudo pip install -U future import numpy as np import theano import theano.tensor as T from util import init_weight class GRU: def __init__(self, Mi, Mo, activation): self.Mi = Mi self.Mo = Mo self.f = activation # numpy init Wxr = init_weight(Mi, Mo) Whr = init_weight(Mo, Mo) br = np.zeros(Mo) Wxz = init_weight(Mi, Mo) Whz = init_weight(Mo, Mo) bz = np.zeros(Mo) Wxh = init_weight(Mi, Mo) Whh = init_weight(Mo, Mo) bh = np.zeros(Mo) h0 = np.zeros(Mo) # theano vars self.Wxr = theano.shared(Wxr) self.Whr = theano.shared(Whr) self.br = theano.shared(br) self.Wxz = theano.shared(Wxz) self.Whz = theano.shared(Whz) self.bz = theano.shared(bz) self.Wxh = theano.shared(Wxh) self.Whh = theano.shared(Whh) self.bh = theano.shared(bh) self.h0 = theano.shared(h0) self.params = [self.Wxr, self.Whr, self.br, self.Wxz, self.Whz, self.bz, self.Wxh, self.Whh, self.bh, self.h0] def recurrence(self, x_t, h_t1): r = T.nnet.sigmoid(x_t.dot(self.Wxr) + h_t1.dot(self.Whr) + self.br) z = T.nnet.sigmoid(x_t.dot(self.Wxz) + h_t1.dot(self.Whz) + self.bz) hhat = self.f(x_t.dot(self.Wxh) + (r * h_t1).dot(self.Whh) + self.bh) h = (1 - z) * h_t1 + z * hhat return h def output(self, x): # input X should be a matrix (2-D) # rows index time h, _ = theano.scan( fn=self.recurrence, sequences=x, outputs_info=[self.h0], n_steps=x.shape[0], ) return h ================================================ FILE: rnn_class/gru_nonorm_part1_wikipedia_word2idx.json ================================================ {"limited": 618, "writings": 1936, "magnetic": 1974, "dynasty": 1588, "four": 175, "asian": 1966, "consists": 1176, "oldest": 1710, "whose": 543, "paris": 896, "edward": 1538, "under": 90, "lord": 1179, "1958": 1840, "risk": 1267, "rise": 1090, "every": 327, "jack": 1996, "formula": 1666, "school": 240, "prize": 1219, "companies": 785, "solution": 1609, "red": 392, "expanded": 1602, "force": 247, "leaders": 1341, "japanese": 511, "second": 126, "street": 889, "estimated": 904, "even": 147, "established": 301, "captain": 1896, "christ": 1492, "selected": 1956, "asia": 972, "above": 435, "new": 43, "increasing": 1190, "ever": 886, "told": 1529, "men": 391, "here": 1143, "atoms": 1997, "met": 995, "protection": 1390, "china": 429, "active": 838, "100": 841, "obtained": 1872, "voice": 1507, "daughter": 1137, "study": 374, "changed": 940, "reports": 1721, "military": 185, "changes": 687, "golden": 1687, "campaign": 1045, "highly": 875, "brought": 677, "actions": 1576, "total": 303, "unit": 890, "charge": 1370, "dna": 1271, "would": 64, "army": 244, "mexico": 1345, "negative": 1474, "music": 177, "therefore": 569, "type": 456, "until": 130, "holy": 1107, "successful": 806, "wars": 1349, "award": 681, "berlin": 1689, "arms": 1524, "hold": 1254, "must": 281, "me": 973, "1990": 816, "1993": 924, "1992": 864, "1995": 837, "1994": 818, "1997": 744, "rights": 436, "1999": 595, "1998": 694, "work": 119, "theories": 1616, "era": 862, "henry": 777, "my": 628, "example": 125, "give": 839, "hebrew": 1909, "india": 483, "david": 530, "end": 170, "provide": 583, "travel": 1515, "feature": 1158, "machine": 1083, "how": 348, "hot": 1789, "writers": 1441, "flow": 1590, "regional": 1020, "after": 47, "president": 203, "law": 194, "types": 696, "attempt": 993, "third": 339, "lost": 509, "greek": 365, "maintain": 1856, "green": 883, "democratic": 1163, "order": 192, "operations": 847, "singersongwriter": 1281, "over": 66, "london": 342, "japan": 748, "before": 118, "personal": 731, "writing": 652, "better": 848, "production": 282, "weeks": 1597, "strength": 1848, "then": 91, "them": 100, "combination": 1628, "grand": 1078, "break": 1955, "band": 516, "effects": 709, "they": 40, "schools": 695, "silver": 1773, "bank": 961, "netherlands": 1722, "oxygen": 1719, "l": 1003, "victory": 1448, "each": 113, "went": 608, "side": 480, "mean": 1358, "financial": 893, "series": 145, "principles": 1668, "carry": 1802, "used": 51, "navy": 962, "message": 1958, "network": 562, "god": 323, "tried": 1676, "content": 1415, "medicine": 1620, "independence": 798, "foundation": 1444, "linear": 1911, "given": 220, "free": 360, "standard": 349, "management": 1135, "formation": 1422, "wanted": 1501, "widespread": 1866, "created": 354, "days": 399, "1970s": 1120, "moving": 1491, "user": 1809, "industrial": 1099, "features": 635, "primary": 673, "featured": 1140, "adopted": 906, "another": 152, "electronic": 1619, "service": 287, "similarly": 1937, "top": 544, "historian": 1598, "approximately": 766, "fiction": 1094, "needed": 1111, "rates": 1601, "too": 701, "john": 158, "urban": 1236, "serve": 1440, "took": 262, "rejected": 1788, "direct": 808, "technique": 1873, "western": 278, "shortly": 1825, "distance": 1194, "target": 1603, "showed": 1532, "programs": 948, "tree": 1685, "likely": 884, "nations": 468, "project": 561, "matter": 1037, "classes": 1691, "historical": 678, "powers": 1015, "bridge": 1399, "palace": 1908, "ran": 1969, "modern": 172, "mind": 1457, "seen": 433, "ocean": 1385, "relatively": 955, "forced": 1008, "traditionally": 1656, "1968": 1296, "1969": 1300, "1964": 1478, "1965": 1450, "latter": 1027, "1967": 1354, "1960": 1487, "1961": 1673, "1962": 1553, "1963": 1559, "materials": 1183, "forces": 269, "blue": 834, "though": 221, "object": 1091, "regular": 963, "germany": 381, "letter": 901, "phase": 1580, "zealand": 1427, "singer": 987, "episode": 1222, "medical": 932, "metal": 786, "treaty": 946, "points": 674, "principle": 1497, "came": 357, "saying": 1631, "pope": 793, "queen": 1533, "attempts": 1574, "radio": 486, "earth": 502, "just": 343, "constant": 1542, "do": 193, "wide": 933, "de": 161, "stop": 1891, "13": 858, "coast": 752, "despite": 513, "report": 907, "dr": 1674, "runs": 1651, "countries": 224, "fields": 1332, "method": 685, "architecture": 1647, "release": 761, "secretary": 1581, "reference": 1036, "1960s": 1189, "observed": 1426, "decided": 1126, "result": 288, "best": 322, "techniques": 1299, "said": 213, "capacity": 1664, "away": 725, "r": 641, "approach": 1051, "discovery": 1723, "we": 271, "never": 407, "terms": 432, "korea": 1519, "nature": 538, "however": 72, "news": 974, "suggested": 1122, "received": 418, "climate": 1124, "brown": 1286, "reported": 743, "country": 179, "cup": 1359, "against": 121, "players": 594, "games": 330, "planned": 1768, "studio": 1816, "asked": 1367, "appeared": 671, "character": 492, "2nd": 1980, "represented": 1174, "conference": 1260, "engines": 1902, "basis": 842, "union": 277, "three": 97, "been": 41, "quickly": 1240, "commission": 1209, "much": 160, "interest": 750, "basic": 820, "expected": 1310, "entered": 1421, "life": 141, "families": 1460, "eastern": 472, "child": 1175, "worked": 990, "applied": 1025, "east": 234, "n": 759, "near": 390, "aid": 1618, "property": 928, "k": 1082, "launched": 1394, "seven": 732, "played": 369, "is": 8, "it": 18, "defeated": 1449, "ii": 252, "player": 219, "in": 5, "ie": 944, "if": 80, "containing": 1543, "perform": 1853, "things": 1159, "make": 245, "amount": 967, "complex": 607, "split": 1923, "liberal": 1655, "several": 115, "european": 229, "independent": 598, "published": 208, "rail": 1890, "hand": 613, "characters": 713, "cycle": 1626, "kept": 1680, "1979": 1071, "1978": 1246, "1977": 1317, "1976": 1223, "1975": 1172, "1974": 1287, "1973": 1247, "1972": 1262, "1971": 1273, "1970": 1188, "academic": 953, "rome": 819, "greatest": 1309, "mother": 832, "claims": 1204, "the": 2, "musical": 986, "left": 266, "proposed": 789, "gods": 1513, "human": 211, "yet": 891, "previous": 879, "sciences": 1952, "regarded": 1412, "royal": 533, "countrys": 1663, "spread": 1320, "board": 914, "has": 31, "gave": 637, "bands": 1376, "possible": 385, "arab": 1733, "possibly": 1611, "cultural": 757, "birth": 1162, "unique": 1379, "advanced": 1384, "county": 941, "50": 1088, "specific": 692, "officer": 1884, "night": 902, "security": 690, "awarded": 1473, "right": 366, "old": 259, "deal": 1456, "people": 104, "crown": 1987, "dead": 1138, "born": 501, "election": 729, "for": 11, "ice": 971, "individuals": 980, "core": 1578, "translated": 1813, "post": 1695, "super": 1061, "properties": 1086, "census": 1622, "attacks": 1416, "months": 615, "o": 1720, "magazine": 1146, "islands": 386, "efforts": 1313, "slightly": 1726, "duke": 1845, "raised": 1606, "presence": 1198, "civil": 487, "material": 655, "son": 409, "down": 318, "1990s": 1233, "methods": 873, "support": 230, "initial": 1239, "why": 1880, "joseph": 1462, "way": 217, "resulted": 1316, "call": 1234, "was": 10, "war": 77, "head": 470, "form": 127, "offer": 1732, "attempted": 1623, "becoming": 1220, "differences": 1512, "failure": 1777, "heat": 1600, "solar": 1483, "removed": 1446, "true": 753, "versions": 1307, "inside": 1342, "maximum": 1697, "devices": 1504, "economic": 289, "reform": 1702, "proved": 1645, "evidence": 517, "exist": 1042, "ship": 1252, "physical": 691, "no": 70, "whereas": 1505, "when": 53, "actor": 496, "conditions": 792, "republic": 397, "digital": 1277, "test": 952, "brothers": 1865, "models": 1177, "football": 616, "fell": 1699, "reign": 1659, "authorities": 1837, "died": 451, "billion": 978, "longer": 760, "together": 460, "time": 62, "serious": 1670, "songs": 1014, "concept": 778, "doctor": 1847, "chain": 1925, "dance": 1724, "global": 1038, "focus": 1461, "manager": 1380, "battle": 482, "competition": 1395, "1948": 1662, "1949": 1843, "zone": 1755, "1942": 1921, "1940": 1868, "1941": 1775, "father": 512, "1947": 1780, "1944": 1764, "1945": 1388, "environment": 1201, "0": 1291, "finally": 1063, "suffered": 1826, "division": 747, "supported": 880, "string": 1897, "advantage": 1919, "choice": 1675, "portuguese": 1503, "word": 347, "governments": 1428, "level": 428, "did": 173, "die": 1898, "1996": 769, "brother": 1207, "standards": 1403, "leave": 1838, "p": 580, "team": 279, "round": 1613, "upper": 1180, "revolution": 872, "says": 1465, "sign": 1686, "cost": 1102, "ottoman": 1961, "port": 1100, "constitution": 780, "current": 474, "international": 150, "principal": 1953, "temperatures": 1882, "heavily": 1783, "muslim": 1318, "french": 183, "understanding": 1499, "water": 216, "corporation": 1935, "baseball": 1139, "groups": 276, "address": 1547, "alone": 1716, "along": 231, "appears": 1033, "change": 440, "canadian": 739, "institute": 1035, "studied": 1811, "commonly": 649, "trial": 1834, "usually": 215, "studies": 604, "love": 742, "marked": 1557, "crisis": 1690, "market": 550, "troops": 991, "working": 669, "positive": 1285, "visit": 1947, "france": 375, "territories": 1821, "live": 528, "going": 1571, "opposed": 1348, "memory": 976, "films": 535, "australian": 795, "today": 506, "club": 737, "organized": 1767, "cases": 568, "effort": 1731, "organizations": 1476, "car": 1097, "originally": 645, "values": 1161, "can": 50, "believed": 665, "making": 427, "claim": 1231, "dedicated": 1975, "citizens": 1481, "figure": 1283, "december": 340, "1980s": 1084, "performed": 881, "council": 371, "allowed": 575, "hydrogen": 1648, "occur": 1185, "swedish": 1841, "winter": 1343, "divided": 929, "chemical": 1029, "fourth": 1165, "economy": 597, "product": 897, "influenced": 1076, "may": 56, "southern": 445, "applications": 1157, "produce": 716, "designed": 651, "date": 724, "such": 42, "data": 335, "man": 361, "natural": 353, "st": 453, "q": 1983, "so": 112, "african": 682, "arrived": 1708, "typical": 1672, "mainly": 916, "years": 69, "course": 1149, "argued": 1186, "cold": 1549, "still": 189, "group": 142, "forms": 454, "policy": 620, "main": 243, "decades": 1630, "texas": 1717, "views": 1776, "processes": 1661, "nation": 1129, "1991": 857, "1957": 1939, "1956": 1899, "1950": 1903, "half": 553, "not": 28, "now": 167, "1959": 1820, "hall": 887, "nor": 1546, "term": 222, "name": 131, "opera": 1962, "january": 326, "rock": 592, "entirely": 1799, "square": 1181, "significantly": 1693, "ed": 1060, "eg": 578, "18th": 1920, "persian": 1926, "year": 122, "et": 1445, "plans": 1640, "album": 476, "living": 601, "shown": 947, "opened": 1115, "space": 311, "increase": 667, "contained": 1858, "internet": 925, "churches": 1411, "shows": 852, "earlier": 700, "END": 1, "theory": 242, "million": 209, "quite": 1679, "california": 982, "marine": 1850, "card": 1765, "care": 1637, "training": 918, "language": 154, "ministry": 1844, "programming": 1459, "british": 153, "motion": 1352, "turn": 960, "place": 233, "first": 39, "origin": 1114, "spoken": 1404, "UNKNOWN": 2000, "one": 36, "americans": 1615, "specifically": 1537, "directly": 771, "spanish": 539, "vote": 1439, "ring": 1906, "fight": 1967, "open": 532, "george": 599, "size": 640, "city": 93, "little": 442, "officials": 1877, "district": 1043, "2": 199, "convention": 1397, "white": 387, "structures": 1433, "friend": 1528, "gives": 1425, "mostly": 719, "that": 13, "season": 358, "universe": 1437, "broadcast": 1665, "released": 295, "than": 59, "population": 163, "11": 675, "10": 373, "television": 462, "12": 557, "15": 520, "14": 822, "17": 999, "16": 815, "19": 1244, "18": 812, "require": 1516, "future": 684, "were": 27, "cards": 1878, "russia": 915, "and": 4, "san": 849, "remained": 590, "turned": 1324, "say": 1269, "saw": 718, "any": 106, "ideas": 1145, "note": 1270, "equipment": 1401, "potential": 1074, "take": 380, "online": 1248, "performance": 756, "channel": 1336, "multiple": 936, "theatre": 1453, "normal": 1255, "track": 1692, "price": 1443, "paid": 1885, "america": 410, "especially": 368, "room": 1751, "considered": 212, "average": 625, "later": 79, "drive": 1639, "federal": 689, "professional": 1089, "typically": 573, "laws": 805, "shot": 1541, "show": 336, "german": 187, "contemporary": 1160, "discovered": 910, "fifth": 1874, "ground": 911, "ratio": 1968, "office": 494, "title": 481, "daily": 1556, "written": 285, "crime": 1942, "only": 60, "air": 226, "black": 346, "get": 1023, "mission": 1288, "cannot": 823, "nearly": 850, "secondary": 1636, "prime": 524, "regarding": 1796, "artist": 1742, "paper": 1213, "where": 78, "village": 1829, "declared": 1171, "relative": 1431, "elected": 711, "college": 551, "calendar": 1940, "connected": 1582, "compounds": 1715, "ways": 1311, "subsequent": 1454, "review": 1284, "sites": 1703, "weapons": 1268, "3": 286, "between": 63, "reading": 1938, "across": 546, "august": 384, "style": 602, "guitar": 1738, "awards": 1650, "article": 868, "cities": 623, "come": 688, "reaction": 1312, "many": 57, "region": 296, "according": 159, "contract": 1924, "tour": 1344, "railway": 1423, "expression": 1930, "comes": 1420, "among": 169, "historians": 1915, "color": 860, "effective": 1347, "period": 195, "60": 1934, "maintained": 1875, "learning": 1805, "ordered": 1502, "crew": 1827, "destroyed": 1564, "arts": 1144, "west": 236, "mark": 1034, "combined": 1205, "mary": 1303, "engine": 1155, "direction": 1294, "offered": 1326, "formed": 464, "minister": 401, "former": 317, "those": 139, "sound": 653, "developing": 1766, "these": 58, "engineering": 1229, "cast": 1927, "policies": 1800, "situation": 1562, "eventually": 541, "middle": 491, "technology": 617, "different": 146, "develop": 1451, "april": 359, "media": 735, "granted": 1797, "bowl": 1301, "s": 563, "same": 116, "speech": 1193, "constructed": 1855, "events": 621, "status": 865, "extended": 1258, "centuries": 968, "director": 656, "persons": 1735, "running": 1216, "tradition": 845, "largely": 824, "roughly": 1894, "without": 214, "components": 1812, "model": 414, "bodies": 1761, "gdp": 1573, "summer": 949, "pakistan": 1632, "being": 87, "money": 945, "rest": 934, "communities": 1489, "polish": 1197, "speed": 854, "captured": 1832, "death": 200, "rose": 1951, "except": 1080, "setting": 1950, "treatment": 1068, "role": 351, "extensive": 1520, "real": 633, "aspects": 1810, "around": 155, "easily": 1612, "read": 1215, "early": 102, "using": 166, "accepted": 1098, "ruled": 1704, "either": 332, "fully": 1386, "served": 723, "reduced": 1154, "jews": 1110, "pacific": 1295, "table": 1357, "images": 1965, "provided": 585, "recorded": 722, "legal": 703, "moon": 1482, "critical": 1218, "provides": 1031, "refer": 1092, "felt": 1822, "assembly": 996, "scientific": 782, "business": 588, "equivalent": 1455, "notable": 1151, "notably": 1511, "leadership": 1671, "1939": 1709, "refers": 1340, "on": 15, "stone": 1331, "central": 238, "stations": 1402, "island": 248, "industry": 577, "thousands": 1741, "greatly": 1949, "act": 398, "mixed": 1729, "or": 20, "road": 892, "cambridge": 1522, "instruments": 1634, "image": 1081, "officially": 1377, "accounts": 1985, "determine": 1971, "parties": 984, "your": 1490, "her": 83, "area": 181, "there": 55, "christianity": 1652, "start": 1113, "low": 490, "stars": 1041, "valley": 1442, "fish": 1536, "jones": 1917, "complete": 763, "enough": 954, "brain": 1667, "with": 14, "october": 338, "ad": 1106, "certain": 447, "describe": 1657, "moved": 631, "al": 1337, "deep": 1614, "an": 21, "britain": 764, "at": 22, "file": 1907, "politics": 1372, "bishop": 1835, "film": 134, "again": 408, "field": 299, "5": 404, "mathematics": 1583, "you": 377, "poor": 1346, "championship": 1625, "congress": 1067, "separate": 825, "students": 706, "symbol": 1743, "includes": 572, "START": 0, "important": 207, "included": 273, "building": 567, "wife": 905, "mass": 589, "starting": 1224, "original": 261, "external": 1660, "represent": 1700, "all": 49, "consider": 1752, "chinese": 505, "caused": 707, "lack": 1064, "month": 1389, "founded": 646, "coach": 1279, "follow": 1831, "settlement": 1698, "religious": 461, "children": 423, "causes": 1596, "particles": 1747, "tv": 1052, "spirit": 1684, "to": 6, "program": 467, "spain": 951, "safety": 1869, "activities": 1169, "woman": 1227, "returned": 730, "song": 603, "very": 168, "resistance": 1595, "fall": 1028, "difference": 1500, "condition": 1862, "louis": 1127, "list": 581, "joined": 1070, "large": 143, "small": 190, "20th": 869, "ten": 912, "past": 835, "rate": 514, "design": 446, "settled": 1979, "pass": 1338, "further": 313, "investment": 1846, "bass": 1746, "what": 176, "defence": 1737, "richard": 826, "sun": 1026, "section": 1047, "version": 364, "scientists": 1753, "public": 184, "contrast": 1334, "movement": 421, "full": 558, "christian": 449, "hours": 1203, "operating": 1136, "november": 372, "strong": 576, "respect": 1984, "search": 1534, "bible": 1854, "naval": 1480, "inspired": 1635, "allows": 1200, "experience": 985, "prior": 1054, "airport": 1168, "social": 291, "action": 654, "via": 776, "followed": 479, "family": 223, "1946": 1849, "africa": 559, "texts": 1806, "armed": 1125, "literary": 1560, "takes": 1187, "distinct": 1362, "contains": 871, "two": 52, "6": 554, "taken": 531, "minor": 1323, "more": 44, "israel": 1006, "company": 270, "flag": 1876, "particular": 477, "known": 75, "town": 614, "science": 312, "der": 1995, "remain": 1178, "nine": 1463, "resources": 1263, "v": 650, "male": 1153, "history": 165, "stated": 708, "share": 1366, "states": 73, "numbers": 455, "sense": 958, "species": 382, "information": 367, "court": 320, "goal": 1495, "rather": 329, "acts": 1329, "conducted": 1782, "plant": 1322, "intended": 1134, "derived": 1128, "blood": 1058, "coming": 1857, "invasion": 1610, "response": 965, "a": 7, "short": 430, "author": 519, "fundamental": 1859, "pay": 1759, "playing": 1101, "help": 762, "september": 331, "developed": 254, "soon": 779, "trade": 402, "held": 265, "already": 829, "through": 88, "committee": 1011, "existence": 1249, "radiation": 1748, "its": 34, "islam": 1970, "24": 1024, "25": 715, "26": 1325, "27": 1375, "20": 503, "21": 1077, "22": 1184, "23": 1256, "28": 1308, "29": 1550, "actually": 1167, "late": 227, "systems": 250, "might": 619, "good": 469, "return": 643, "food": 605, "oxford": 1242, "association": 740, "growing": 1393, "always": 663, "presented": 1351, "found": 132, "referred": 545, "heavy": 998, "week": 1587, "england": 395, "weight": 1591, "generation": 1493, "house": 260, "energy": 363, "hard": 1374, "reduce": 1607, "idea": 804, "oil": 648, "quantum": 1567, "operation": 956, "beyond": 1241, "event": 913, "robert": 579, "since": 95, "research": 309, "health": 627, "hill": 1727, "7": 661, "issue": 802, "occurs": 1373, "belief": 1552, "houses": 1817, "reason": 1141, "base": 622, "members": 205, "put": 794, "earliest": 1170, "beginning": 565, "definition": 1116, "computers": 1696, "american": 65, "w": 909, "major": 140, "prevent": 1479, "number": 92, "done": 992, "story": 489, "temperature": 938, "introduction": 1339, "leading": 586, "least": 434, "station": 870, "passed": 1093, "master": 1946, "listed": 1863, "saint": 1032, "relationship": 878, "behind": 1053, "park": 683, "part": 103, "authors": 1586, "translation": 1544, "believe": 1195, "king": 210, "kind": 1548, "b": 129, "double": 1356, "recording": 1860, "determined": 1554, "marriage": 1148, "toward": 1584, "ages": 1745, "mountain": 1627, "built": 403, "zero": 1929, "depending": 1531, "scotland": 1518, "officers": 1744, "also": 30, "internal": 1202, "build": 1842, "province": 1142, "play": 376, "added": 765, "electric": 1292, "sets": 1471, "reach": 1565, "most": 48, "plan": 1095, "significant": 452, "services": 507, "extremely": 1819, "had": 32, "appear": 997, "mobile": 1641, "clear": 1238, "sometimes": 297, "cover": 1475, "traditional": 463, "physics": 1569, "institutions": 1535, "sector": 1353, "thomas": 894, "particularly": 540, "gold": 920, "find": 1005, "impact": 1568, "access": 813, "northern": 388, "justice": 1409, "writer": 1434, "failed": 1214, "factor": 1807, "8": 642, "his": 19, "hit": 1257, "famous": 807, "grew": 1526, "actress": 768, "closely": 1770, "shared": 1760, "during": 61, "him": 107, "alexander": 1305, "generally": 334, "common": 171, "activity": 1056, "x": 570, "river": 306, "wrote": 324, "set": 162, "art": 378, "achieved": 1734, "intelligence": 1488, "sex": 1781, "culture": 510, "see": 218, "defense": 1073, "are": 17, "sea": 356, "close": 647, "practices": 1972, "movie": 1506, "currently": 908, "case": 272, "won": 417, "various": 237, "probably": 1049, "numerous": 796, "available": 415, "latin": 522, "recently": 1226, "iron": 1264, "initially": 1044, "sold": 876, "attention": 1579, "aircraft": 593, "ranked": 1871, "opposition": 1221, "league": 425, "c": 321, "last": 225, "influential": 1887, "annual": 1118, "foreign": 396, "roman": 283, "became": 101, "context": 1688, "whole": 922, "yards": 1957, "point": 249, "simple": 966, "community": 504, "simply": 1012, "church": 197, "throughout": 412, "described": 383, "publishing": 1828, "create": 846, "political": 186, "due": 174, "whom": 867, "secret": 1638, "describes": 1683, "ireland": 1048, "territory": 754, "meeting": 1408, "4": 379, "lived": 1272, "flight": 1245, "1950s": 1790, "fire": 788, "gas": 828, "lives": 1705, "demand": 1900, "towns": 1973, "plants": 1212, "politician": 855, "look": 1959, "bill": 1230, "elections": 1108, "governor": 1275, "receive": 1740, "while": 71, "replaced": 758, "behavior": 1566, "fleet": 1787, "kingdom": 394, "larger": 680, "century": 98, "vol": 1836, "von": 1417, "itself": 459, "italy": 797, "james": 525, "rules": 853, "widely": 712, "peoples": 885, "9": 833, "resulting": 1096, "conflict": 1235, "higher": 478, "development": 202, "literature": 975, "affairs": 1599, "levels": 895, "uses": 644, "purpose": 1486, "recent": 638, "dark": 1643, "lower": 526, "older": 1196, "poland": 1314, "spent": 1469, "analysis": 935, "person": 591, "y": 1266, "organization": 814, "1966": 1485, "responsible": 1199, "shape": 1798, "atomic": 1990, "world": 67, "useful": 1881, "alternative": 1217, "prince": 1302, "cut": 1510, "majority": 630, "workers": 1250, "source": 529, "labour": 1545, "parents": 1888, "location": 1121, "administrative": 1954, "remaining": 1265, "australia": 738, "march": 310, "format": 1928, "big": 1131, "game": 188, "damage": 1803, "projects": 1658, "formal": 1418, "d": 182, "follows": 1525, "signal": 1593, "continue": 1278, "popular": 263, "tribes": 1977, "mathematical": 1646, "often": 109, "senate": 1993, "spring": 1694, "creation": 1164, "some": 46, "back": 251, "towards": 843, "examples": 821, "scale": 1315, "decision": 1319, "per": 308, "religion": 817, "temple": 1786, "t": 1010, "be": 23, "run": 606, "bc": 587, "agreement": 900, "refused": 1563, "output": 1771, "by": 12, "faith": 1392, "goods": 1861, "range": 424, "into": 54, "within": 157, "nothing": 1823, "primarily": 939, "sports": 1306, "question": 1371, "long": 206, "forward": 1839, "mountains": 1523, "himself": 441, "jewish": 698, "atlantic": 1814, "library": 1104, "russian": 582, "line": 258, "directed": 1328, "up": 94, "us": 117, "windows": 1701, "uk": 745, "similar": 253, "called": 82, "popularity": 1883, "associated": 571, "defined": 672, "m": 495, "influence": 508, "single": 284, "peace": 866, "application": 1381, "income": 1447, "department": 1046, "elements": 484, "users": 1405, "problems": 734, "william": 521, "meaning": 555, "allowing": 1369, "sides": 1892, "structure": 536, "land": 304, "e": 566, "age": 268, "required": 560, "2002": 556, "2003": 523, "2000": 413, "2001": 518, "2006": 333, "2007": 300, "2004": 457, "2005": 370, "far": 549, "2008": 325, "2009": 328, "requires": 1604, "having": 307, "once": 443, "code": 670, "issued": 1368, "results": 749, "existing": 1629, "go": 898, "conservative": 1779, "issues": 964, "turkish": 1964, "young": 515, "languages": 341, "stable": 1981, "include": 138, "sent": 704, "outside": 610, "continues": 1916, "wave": 1774, "continued": 405, "entire": 877, "positions": 1758, "notes": 1261, "michael": 989, "race": 950, "noted": 1072, "smaller": 809, "rivers": 1945, "video": 755, "acid": 1147, "plays": 1355, "power": 156, "chicago": 1398, "giving": 1361, "expressed": 1484, "networks": 1948, "cell": 1019, "19th": 810, "indian": 639, "capital": 537, "body": 362, "led": 201, "lee": 1754, "degree": 1066, "exchange": 1232, "respectively": 1327, "commercial": 803, "following": 151, "objects": 1016, "others": 264, "great": 196, "technical": 1678, "involved": 775, "31": 1605, "30": 660, "leaving": 1527, "suggests": 1914, "products": 790, "defeat": 1976, "residents": 1998, "makes": 1021, "composed": 1133, "named": 302, "heart": 1424, "egypt": 1293, "win": 1276, "private": 626, "names": 726, "composer": 1757, "route": 1756, "use": 74, "from": 16, "remains": 787, "next": 406, "few": 267, "themselves": 666, "historically": 1933, "parliament": 728, "started": 629, "becomes": 1517, "occurred": 1350, "rare": 1804, "iii": 1075, "appointed": 1069, "women": 411, "account": 1050, "animals": 1000, "f": 727, "this": 26, "of": 3, "meet": 1791, "control": 232, "process": 293, "tax": 1407, "purposes": 1870, "pieces": 1986, "high": 137, "professor": 1795, "something": 1438, "sought": 1830, "native": 811, "sir": 1608, "united": 81, "six": 473, "poetry": 1963, "regions": 830, "located": 500, "forest": 1815, "animal": 1413, "instead": 426, "buildings": 1382, "philosophy": 888, "collection": 927, "ethnic": 1298, "introduced": 497, "light": 350, "lines": 664, "element": 983, "chief": 970, "allow": 836, "subsequently": 1430, "producer": 772, "move": 1007, "produced": 319, "alliance": 1913, "including": 85, "mentioned": 1570, "agricultural": 1901, "1": 136, "le": 1769, "la": 668, "chosen": 1944, "ships": 979, "labor": 1649, "permanent": 1824, "communication": 1681, "2015": 431, "2014": 352, "2016": 1654, "2011": 315, "2010": 280, "2013": 305, "2012": 294, "greater": 697, "orthodox": 1387, "practice": 634, "hands": 1730, "front": 874, "day": 198, "presidential": 1992, "worlds": 903, "february": 444, "university": 128, "nfl": 1633, "identified": 1289, "truth": 1999, "related": 584, "society": 389, "books": 485, "measure": 1642, "our": 733, "bay": 1396, "sexual": 1191, "special": 438, "out": 105, "critics": 1653, "cause": 676, "announced": 679, "completely": 1391, "york": 239, "van": 1464, "additional": 840, "g": 720, "islamic": 1435, "could": 123, "times": 235, "length": 942, "south": 135, "isbn": 228, "powerful": 1400, "scene": 1539, "owned": 1808, "jesus": 1253, "reached": 899, "1989": 943, "quality": 1228, "ancient": 498, "publication": 1852, "los": 1521, "festival": 1243, "unknown": 1818, "system": 89, "relations": 710, "their": 33, "attack": 781, "final": 448, "academy": 1210, "completed": 1103, "environmental": 1749, "july": 345, "steel": 1750, "individual": 609, "visited": 1931, "providing": 1718, "have": 29, "need": 784, "border": 1057, "catholic": 705, "able": 574, "contact": 1617, "instance": 1333, "which": 24, "korean": 1851, "subject": 686, "worldwide": 1551, "combat": 1778, "centre": 856, "who": 45, "dutch": 931, "eight": 1013, "device": 1644, "class": 552, "disease": 1290, "face": 1494, "normally": 1994, "fact": 611, "text": 783, "agreed": 1321, "charles": 659, "bring": 1893, "soldiers": 1297, "staff": 1540, "based": 164, "knowledge": 851, "should": 314, "fuel": 1558, "employed": 1904, "communist": 1624, "local": 255, "meant": 1801, "means": 422, "overall": 1514, "joint": 1739, "ones": 1117, "words": 493, "areas": 298, "evolution": 1621, "ended": 1150, "h": 746, "married": 1009, "teams": 926, "she": 133, "contain": 1251, "fixed": 1728, "view": 600, "europe": 274, "official": 458, "exists": 1918, "acquired": 1991, "national": 114, "humans": 1208, "edition": 799, "computer": 471, "greece": 1713, "operated": 1982, "creating": 1592, "record": 499, "nuclear": 693, "state": 84, "closed": 1466, "limit": 1922, "ability": 1119, "opening": 1585, "importance": 1572, "key": 702, "police": 844, "problem": 767, "career": 1022, "taking": 1002, "equal": 1192, "drug": 1792, "etc": 1259, "figures": 1436, "otherwise": 1785, "wall": 1762, "supreme": 1477, "carbon": 1211, "kings": 1304, "winning": 1682, "addition": 400, "poet": 1736, "controlled": 1594, "both": 76, "am": 1669, "finished": 1879, "covered": 1905, "improved": 1889, "general": 148, "present": 475, "wood": 1960, "novel": 751, "unlike": 1335, "appearance": 1378, "as": 9, "value": 547, "will": 111, "almost": 437, "thus": 256, "site": 791, "surface": 714, "helped": 1429, "claimed": 923, "arabic": 1941, "perhaps": 1432, "began": 178, "administration": 1105, "cross": 1419, "member": 419, "parts": 450, "largest": 275, "units": 773, "party": 204, "difficult": 1017, "ball": 1280, "columbia": 1910, "upon": 393, "effect": 534, "student": 1589, "frequently": 1206, "indigenous": 1988, "scholars": 1123, "identity": 1472, "keep": 1383, "off": 420, "center": 466, "records": 882, "i": 96, "well": 108, "fighting": 1711, "thought": 527, "command": 1085, "english": 124, "position": 439, "soviet": 416, "less": 257, "increasingly": 1561, "executive": 1360, "domestic": 1458, "sources": 800, "seats": 1895, "paul": 624, "web": 994, "density": 1943, "supply": 1470, "smith": 1225, "lake": 957, "killed": 863, "reasons": 1677, "book": 191, "footballer": 1030, "match": 1763, "increased": 564, "government": 99, "five": 316, "know": 1468, "press": 292, "immediately": 1363, "prominent": 1406, "loss": 1109, "necessary": 1173, "like": 144, "success": 774, "journalist": 1793, "martin": 1330, "become": 246, "works": 344, "page": 1989, "italian": 612, "because": 110, "classical": 861, "sequence": 1452, "scottish": 1577, "authority": 827, "growth": 658, "home": 241, "empire": 355, "peter": 921, "transport": 1152, "lead": 632, "avoid": 1712, "does": 290, "leader": 859, "medieval": 1496, "journal": 917, "expansion": 1467, "pressure": 831, "host": 1414, "although": 120, "stage": 981, "gained": 1498, "about": 68, "actual": 1575, "carried": 1156, "freedom": 1182, "recognized": 1364, "angeles": 1867, "statement": 1706, "emperor": 717, "software": 662, "own": 180, "letters": 977, "previously": 1062, "washington": 1130, "female": 988, "artists": 1274, "1986": 1004, "1987": 1059, "1984": 1065, "1985": 1087, "1982": 1112, "1983": 1132, "1980": 1040, "1981": 1166, "museum": 721, "1988": 1079, "imperial": 1237, "function": 488, "north": 149, "stadium": 1864, "but": 35, "volume": 959, "construction": 741, "courts": 1714, "highest": 770, "he": 25, "made": 86, "places": 1365, "whether": 636, "cells": 1001, "j": 548, "signed": 1018, "placed": 937, "below": 657, "frequency": 1772, "stories": 930, "distribution": 1282, "piece": 1978, "minutes": 1912, "display": 1725, "irish": 1055, "universal": 1707, "education": 465, "functions": 919, "compared": 1039, "variety": 801, "agriculture": 1784, "guitarist": 1833, "percent": 736, "40": 1410, "other": 38, "branch": 1555, "u": 1932, "canada": 699, "star": 596, "june": 337, "ultimately": 1886, "friends": 1508, "christians": 1794, "\u2013": 37, "\u2014": 969, "factors": 1509, "rule": 542, "write": 1530} ================================================ FILE: rnn_class/lstm.py ================================================ # https://deeplearningcourses.com/c/deep-learning-recurrent-neural-networks-in-python # https://udemy.com/deep-learning-recurrent-neural-networks-in-pythonfrom __future__ import print_function, division from builtins import range # Note: you may need to update your version of future # sudo pip install -U future import numpy as np import theano import theano.tensor as T from util import init_weight class LSTM: def __init__(self, Mi, Mo, activation): self.Mi = Mi self.Mo = Mo self.f = activation # numpy init Wxi = init_weight(Mi, Mo) Whi = init_weight(Mo, Mo) Wci = init_weight(Mo, Mo) bi = np.zeros(Mo) Wxf = init_weight(Mi, Mo) Whf = init_weight(Mo, Mo) Wcf = init_weight(Mo, Mo) bf = np.zeros(Mo) Wxc = init_weight(Mi, Mo) Whc = init_weight(Mo, Mo) bc = np.zeros(Mo) Wxo = init_weight(Mi, Mo) Who = init_weight(Mo, Mo) Wco = init_weight(Mo, Mo) bo = np.zeros(Mo) c0 = np.zeros(Mo) h0 = np.zeros(Mo) # theano vars self.Wxi = theano.shared(Wxi) self.Whi = theano.shared(Whi) self.Wci = theano.shared(Wci) self.bi = theano.shared(bi) self.Wxf = theano.shared(Wxf) self.Whf = theano.shared(Whf) self.Wcf = theano.shared(Wcf) self.bf = theano.shared(bf) self.Wxc = theano.shared(Wxc) self.Whc = theano.shared(Whc) self.bc = theano.shared(bc) self.Wxo = theano.shared(Wxo) self.Who = theano.shared(Who) self.Wco = theano.shared(Wco) self.bo = theano.shared(bo) self.c0 = theano.shared(c0) self.h0 = theano.shared(h0) self.params = [ self.Wxi, self.Whi, self.Wci, self.bi, self.Wxf, self.Whf, self.Wcf, self.bf, self.Wxc, self.Whc, self.bc, self.Wxo, self.Who, self.Wco, self.bo, self.c0, self.h0, ] def recurrence(self, x_t, h_t1, c_t1): i_t = T.nnet.sigmoid(x_t.dot(self.Wxi) + h_t1.dot(self.Whi) + c_t1.dot(self.Wci) + self.bi) f_t = T.nnet.sigmoid(x_t.dot(self.Wxf) + h_t1.dot(self.Whf) + c_t1.dot(self.Wcf) + self.bf) c_t = f_t * c_t1 + i_t * T.tanh(x_t.dot(self.Wxc) + h_t1.dot(self.Whc) + self.bc) o_t = T.nnet.sigmoid(x_t.dot(self.Wxo) + h_t1.dot(self.Who) + c_t.dot(self.Wco) + self.bo) h_t = o_t * T.tanh(c_t) return h_t, c_t def output(self, x): # input X should be a matrix (2-D) # rows index time [h, c], _ = theano.scan( fn=self.recurrence, sequences=x, outputs_info=[self.h0, self.c0], n_steps=x.shape[0], ) return h ================================================ FILE: rnn_class/mlp_parity.py ================================================ # https://deeplearningcourses.com/c/deep-learning-recurrent-neural-networks-in-python # https://udemy.com/deep-learning-recurrent-neural-networks-in-python from __future__ import print_function, division from builtins import range # Note: you may need to update your version of future # sudo pip install -U future import numpy as np import theano import theano.tensor as T import matplotlib.pyplot as plt from util import init_weight, all_parity_pairs from sklearn.utils import shuffle class HiddenLayer(object): def __init__(self, M1, M2, an_id): self.id = an_id self.M1 = M1 self.M2 = M2 W = init_weight(M1, M2) b = np.zeros(M2) self.W = theano.shared(W, 'W_%s' % self.id) self.b = theano.shared(b, 'b_%s' % self.id) self.params = [self.W, self.b] def forward(self, X): return T.nnet.relu(X.dot(self.W) + self.b) class ANN(object): def __init__(self, hidden_layer_sizes): self.hidden_layer_sizes = hidden_layer_sizes def fit(self, X, Y, learning_rate=1e-2, mu=0.99, reg=1e-12, epochs=400, batch_sz=20, print_period=1, show_fig=False): # X = X.astype(np.float32) Y = Y.astype(np.int32) # initialize hidden layers N, D = X.shape K = len(set(Y)) self.hidden_layers = [] M1 = D count = 0 for M2 in self.hidden_layer_sizes: h = HiddenLayer(M1, M2, count) self.hidden_layers.append(h) M1 = M2 count += 1 W = init_weight(M1, K) b = np.zeros(K) self.W = theano.shared(W, 'W_logreg') self.b = theano.shared(b, 'b_logreg') # collect params for later use self.params = [self.W, self.b] for h in self.hidden_layers: self.params += h.params # for momentum dparams = [theano.shared(np.zeros(p.get_value().shape)) for p in self.params] # for rmsprop cache = [theano.shared(np.zeros(p.get_value().shape)) for p in self.params] # set up theano functions and variables thX = T.matrix('X') thY = T.ivector('Y') pY = self.forward(thX) rcost = reg*T.sum([(p*p).sum() for p in self.params]) cost = -T.mean(T.log(pY[T.arange(thY.shape[0]), thY])) + rcost prediction = self.predict(thX) grads = T.grad(cost, self.params) # momentum only updates = [ (p, p + mu*dp - learning_rate*g) for p, dp, g in zip(self.params, dparams, grads) ] + [ (dp, mu*dp - learning_rate*g) for dp, g in zip(dparams, grads) ] train_op = theano.function( inputs=[thX, thY], outputs=[cost, prediction], updates=updates, ) n_batches = N // batch_sz costs = [] for i in range(epochs): X, Y = shuffle(X, Y) for j in range(n_batches): Xbatch = X[j*batch_sz:(j*batch_sz+batch_sz)] Ybatch = Y[j*batch_sz:(j*batch_sz+batch_sz)] c, p = train_op(Xbatch, Ybatch) if j % print_period == 0: costs.append(c) e = np.mean(Ybatch != p) print("i:", i, "j:", j, "nb:", n_batches, "cost:", c, "error rate:", e) if show_fig: plt.plot(costs) plt.show() def forward(self, X): Z = X for h in self.hidden_layers: Z = h.forward(Z) return T.nnet.softmax(Z.dot(self.W) + self.b) def predict(self, X): pY = self.forward(X) return T.argmax(pY, axis=1) def wide(): X, Y = all_parity_pairs(12) model = ANN([2048]) model.fit(X, Y, learning_rate=1e-4, print_period=10, epochs=300, show_fig=True) def deep(): # Challenge - find a deeper, slimmer network to solve the problem X, Y = all_parity_pairs(12) model = ANN([1024]*2) model.fit(X, Y, learning_rate=1e-3, print_period=10, epochs=100, show_fig=True) if __name__ == '__main__': wide() # deep() ================================================ FILE: rnn_class/poetry_classifier.py ================================================ # https://deeplearningcourses.com/c/deep-learning-recurrent-neural-networks-in-python # https://udemy.com/deep-learning-recurrent-neural-networks-in-python from __future__ import print_function, division from builtins import range # Note: you may need to update your version of future # sudo pip install -U future import theano import theano.tensor as T import numpy as np import matplotlib.pyplot as plt from sklearn.utils import shuffle from util import init_weight, get_poetry_classifier_data class SimpleRNN: def __init__(self, M, V): self.M = M # hidden layer size self.V = V # vocabulary size def fit(self, X, Y, learning_rate=1.0, mu=0.99, reg=1.0, activation=T.tanh, epochs=500, show_fig=False): M = self.M V = self.V K = len(set(Y)) print("V:", V) X, Y = shuffle(X, Y) Nvalid = 10 Xvalid, Yvalid = X[-Nvalid:], Y[-Nvalid:] X, Y = X[:-Nvalid], Y[:-Nvalid] N = len(X) # initial weights Wx = init_weight(V, M) Wh = init_weight(M, M) bh = np.zeros(M) h0 = np.zeros(M) Wo = init_weight(M, K) bo = np.zeros(K) thX, thY, py_x, prediction = self.set(Wx, Wh, bh, h0, Wo, bo, activation) cost = -T.mean(T.log(py_x[thY])) grads = T.grad(cost, self.params) dparams = [theano.shared(p.get_value()*0) for p in self.params] lr = T.scalar('learning_rate') updates = [ (p, p + mu*dp - lr*g) for p, dp, g in zip(self.params, dparams, grads) ] + [ (dp, mu*dp - lr*g) for dp, g in zip(dparams, grads) ] self.train_op = theano.function( inputs=[thX, thY, lr], outputs=[cost, prediction], updates=updates, allow_input_downcast=True, ) costs = [] for i in range(epochs): X, Y = shuffle(X, Y) n_correct = 0 cost = 0 for j in range(N): # we set 0 to start and 1 to end # print "X[%d]:" % j, X[j], "len:", len(X[j]) c, p = self.train_op(X[j], Y[j], learning_rate) # print "p:", p, "y:", Y[j] cost += c if p == Y[j]: n_correct += 1 # update the learning rate learning_rate *= 0.9999 # calculate validation accuracy n_correct_valid = 0 for j in range(Nvalid): p = self.predict_op(Xvalid[j]) if p == Yvalid[j]: n_correct_valid += 1 print("i:", i, "cost:", cost, "correct rate:", (float(n_correct)/N), end=" ") print("validation correct rate:", (float(n_correct_valid)/Nvalid)) costs.append(cost) if show_fig: plt.plot(costs) plt.show() def save(self, filename): np.savez(filename, *[p.get_value() for p in self.params]) @staticmethod def load(filename, activation): # TODO: would prefer to save activation to file too npz = np.load(filename) Wx = npz['arr_0'] Wh = npz['arr_1'] bh = npz['arr_2'] h0 = npz['arr_3'] Wo = npz['arr_4'] bo = npz['arr_5'] V, M = Wx.shape rnn = SimpleRNN(M, V) rnn.set(Wx, Wh, bh, h0, Wo, bo, activation) return rnn def set(self, Wx, Wh, bh, h0, Wo, bo, activation): self.f = activation # redundant - see how you can improve it self.Wx = theano.shared(Wx) self.Wh = theano.shared(Wh) self.bh = theano.shared(bh) self.h0 = theano.shared(h0) self.Wo = theano.shared(Wo) self.bo = theano.shared(bo) self.params = [self.Wx, self.Wh, self.bh, self.h0, self.Wo, self.bo] thX = T.ivector('X') thY = T.iscalar('Y') def recurrence(x_t, h_t1): # returns h(t), y(t) h_t = self.f(self.Wx[x_t] + h_t1.dot(self.Wh) + self.bh) y_t = T.nnet.softmax(h_t.dot(self.Wo) + self.bo) return h_t, y_t [h, y], _ = theano.scan( fn=recurrence, outputs_info=[self.h0, None], sequences=thX, n_steps=thX.shape[0], ) py_x = y[-1, 0, :] # only interested in the final classification of the sequence prediction = T.argmax(py_x) self.predict_op = theano.function( inputs=[thX], outputs=prediction, allow_input_downcast=True, ) return thX, thY, py_x, prediction def train_poetry(): X, Y, V = get_poetry_classifier_data(samples_per_class=500) rnn = SimpleRNN(30, V) rnn.fit(X, Y, learning_rate=1e-6, show_fig=True, activation=T.nnet.relu, epochs=1000) if __name__ == '__main__': train_poetry() ================================================ FILE: rnn_class/rrnn_language.py ================================================ # https://deeplearningcourses.com/c/deep-learning-recurrent-neural-networks-in-python # https://udemy.com/deep-learning-recurrent-neural-networks-in-python from __future__ import print_function, division from future.utils import iteritems from builtins import range # Note: you may need to update your version of future # sudo pip install -U future import theano import theano.tensor as T import numpy as np import matplotlib.pyplot as plt from sklearn.utils import shuffle from util import init_weight, get_robert_frost class SimpleRNN: def __init__(self, D, M, V): self.D = D # dimensionality of word embedding self.M = M # hidden layer size self.V = V # vocabulary size def fit(self, X, learning_rate=10., mu=0.9, reg=0., activation=T.tanh, epochs=500, show_fig=False): N = len(X) D = self.D M = self.M V = self.V # initial weights We = init_weight(V, D) Wx = init_weight(D, M) Wh = init_weight(M, M) bh = np.zeros(M) h0 = np.zeros(M) # z = np.ones(M) Wxz = init_weight(D, M) Whz = init_weight(M, M) bz = np.zeros(M) Wo = init_weight(M, V) bo = np.zeros(V) thX, thY, py_x, prediction = self.set(We, Wx, Wh, bh, h0, Wxz, Whz, bz, Wo, bo, activation) lr = T.scalar('lr') cost = -T.mean(T.log(py_x[T.arange(thY.shape[0]), thY])) grads = T.grad(cost, self.params) dparams = [theano.shared(p.get_value()*0) for p in self.params] updates = [] for p, dp, g in zip(self.params, dparams, grads): new_dp = mu*dp - lr*g updates.append((dp, new_dp)) new_p = p + new_dp updates.append((p, new_p)) self.predict_op = theano.function(inputs=[thX], outputs=prediction) self.train_op = theano.function( inputs=[thX, thY, lr], outputs=[cost, prediction], updates=updates ) costs = [] for i in range(epochs): X = shuffle(X) n_correct = 0 n_total = 0 cost = 0 for j in range(N): if np.random.random() < 0.1: input_sequence = [0] + X[j] output_sequence = X[j] + [1] else: input_sequence = [0] + X[j][:-1] output_sequence = X[j] n_total += len(output_sequence) # we set 0 to start and 1 to end c, p = self.train_op(input_sequence, output_sequence, learning_rate) # print "p:", p cost += c # print "j:", j, "c:", c/len(X[j]+1) for pj, xj in zip(p, output_sequence): if pj == xj: n_correct += 1 print("i:", i, "cost:", cost, "correct rate:", (float(n_correct)/n_total)) if (i + 1) % 500 == 0: learning_rate /= 2 costs.append(cost) if show_fig: plt.plot(costs) plt.show() def save(self, filename): np.savez(filename, *[p.get_value() for p in self.params]) @staticmethod def load(filename, activation): # TODO: would prefer to save activation to file too npz = np.load(filename) We = npz['arr_0'] Wx = npz['arr_1'] Wh = npz['arr_2'] bh = npz['arr_3'] h0 = npz['arr_4'] Wxz = npz['arr_5'] Whz = npz['arr_6'] bz = npz['arr_7'] Wo = npz['arr_8'] bo = npz['arr_9'] V, D = We.shape _, M = Wx.shape rnn = SimpleRNN(D, M, V) rnn.set(We, Wx, Wh, bh, h0, Wxz, Whz, bz, Wo, bo, activation) return rnn def set(self, We, Wx, Wh, bh, h0, Wxz, Whz, bz, Wo, bo, activation): self.f = activation # redundant - see how you can improve it self.We = theano.shared(We) self.Wx = theano.shared(Wx) self.Wh = theano.shared(Wh) self.bh = theano.shared(bh) self.h0 = theano.shared(h0) self.Wxz = theano.shared(Wxz) self.Whz = theano.shared(Whz) self.bz = theano.shared(bz) self.Wo = theano.shared(Wo) self.bo = theano.shared(bo) self.params = [self.We, self.Wx, self.Wh, self.bh, self.h0, self.Wxz, self.Whz, self.bz, self.Wo, self.bo] thX = T.ivector('X') Ei = self.We[thX] # will be a TxD matrix thY = T.ivector('Y') def recurrence(x_t, h_t1): # returns h(t), y(t) hhat_t = self.f(x_t.dot(self.Wx) + h_t1.dot(self.Wh) + self.bh) z_t = T.nnet.sigmoid(x_t.dot(self.Wxz) + h_t1.dot(self.Whz) + self.bz) h_t = (1 - z_t) * h_t1 + z_t * hhat_t y_t = T.nnet.softmax(h_t.dot(self.Wo) + self.bo) return h_t, y_t [h, y], _ = theano.scan( fn=recurrence, outputs_info=[self.h0, None], sequences=Ei, n_steps=Ei.shape[0], ) py_x = y[:, 0, :] prediction = T.argmax(py_x, axis=1) self.predict_op = theano.function( inputs=[thX], outputs=[py_x, prediction], allow_input_downcast=True, ) return thX, thY, py_x, prediction def generate(self, word2idx): # convert word2idx -> idx2word idx2word = {v:k for k,v in iteritems(word2idx)} V = len(word2idx) # generate 4 lines at a time n_lines = 0 # why? because using the START symbol will always yield the same first word! X = [ 0 ] while n_lines < 4: # print "X:", X PY_X, _ = self.predict_op(X) PY_X = PY_X[-1].flatten() P = [ np.random.choice(V, p=PY_X)] X = np.concatenate([X, P]) # append to the sequence # print "P.shape:", P.shape, "P:", P P = P[-1] # just grab the most recent prediction if P > 1: # it's a real word, not start/end token word = idx2word[P] print(word, end=" ") elif P == 1: # end token n_lines += 1 X = [0] print('') def train_poetry(): # students: tanh didn't work but you should try it sentences, word2idx = get_robert_frost() rnn = SimpleRNN(50, 50, len(word2idx)) rnn.fit(sentences, learning_rate=1e-4, show_fig=True, activation=T.nnet.relu, epochs=2000) rnn.save('RRNN_D50_M50_epochs2000_relu.npz') def generate_poetry(): sentences, word2idx = get_robert_frost() rnn = SimpleRNN.load('RRNN_D50_M50_epochs2000_relu.npz', T.nnet.relu) rnn.generate(word2idx) if __name__ == '__main__': train_poetry() generate_poetry() ================================================ FILE: rnn_class/srn_language.py ================================================ # https://deeplearningcourses.com/c/deep-learning-recurrent-neural-networks-in-python # https://udemy.com/deep-learning-recurrent-neural-networks-in-python from __future__ import print_function, division from future.utils import iteritems from builtins import range # Note: you may need to update your version of future # sudo pip install -U future import theano import theano.tensor as T import numpy as np import matplotlib.pyplot as plt from sklearn.utils import shuffle from util import init_weight, get_robert_frost, get_wikipedia_data class SimpleRNN: def __init__(self, D, M, V): self.D = D # dimensionality of word embedding self.M = M # hidden layer size self.V = V # vocabulary size def fit(self, X, learning_rate=1., mu=0.99, reg=1.0, activation=T.tanh, epochs=500, show_fig=False): N = len(X) D = self.D M = self.M V = self.V self.f = activation # initial weights We = init_weight(V, D) Wx = init_weight(D, M) Wh = init_weight(M, M) bh = np.zeros(M) h0 = np.zeros(M) Wo = init_weight(M, V) bo = np.zeros(V) # make them theano shared self.We = theano.shared(We) self.Wx = theano.shared(Wx) self.Wh = theano.shared(Wh) self.bh = theano.shared(bh) self.h0 = theano.shared(h0) self.Wo = theano.shared(Wo) self.bo = theano.shared(bo) self.params = [self.We, self.Wx, self.Wh, self.bh, self.h0, self.Wo, self.bo] thX = T.ivector('X') Ei = self.We[thX] # will be a TxD matrix thY = T.ivector('Y') # sentence input: # [START, w1, w2, ..., wn] # sentence target: # [w1, w2, w3, ..., END] def recurrence(x_t, h_t1): # returns h(t), y(t) h_t = self.f(x_t.dot(self.Wx) + h_t1.dot(self.Wh) + self.bh) y_t = T.nnet.softmax(h_t.dot(self.Wo) + self.bo) return h_t, y_t [h, y], _ = theano.scan( fn=recurrence, outputs_info=[self.h0, None], sequences=Ei, n_steps=Ei.shape[0], ) py_x = y[:, 0, :] prediction = T.argmax(py_x, axis=1) cost = -T.mean(T.log(py_x[T.arange(thY.shape[0]), thY])) grads = T.grad(cost, self.params) dparams = [theano.shared(p.get_value()*0) for p in self.params] updates = [] for p, dp, g in zip(self.params, dparams, grads): new_dp = mu*dp - learning_rate*g updates.append((dp, new_dp)) new_p = p + new_dp updates.append((p, new_p)) self.predict_op = theano.function(inputs=[thX], outputs=prediction) self.train_op = theano.function( inputs=[thX, thY], outputs=[cost, prediction], updates=updates ) costs = [] n_total = sum((len(sentence)+1) for sentence in X) for i in range(epochs): X = shuffle(X) n_correct = 0 cost = 0 for j in range(N): # problem! many words --> END token are overrepresented # result: generated lines will be very short # we will try to fix in a later iteration # BAD! magic numbers 0 and 1... input_sequence = [0] + X[j] output_sequence = X[j] + [1] # we set 0 to start and 1 to end c, p = self.train_op(input_sequence, output_sequence) # print "p:", p cost += c # print "j:", j, "c:", c/len(X[j]+1) for pj, xj in zip(p, output_sequence): if pj == xj: n_correct += 1 print("i:", i, "cost:", cost, "correct rate:", (float(n_correct)/n_total)) costs.append(cost) if show_fig: plt.plot(costs) plt.show() def save(self, filename): np.savez(filename, *[p.get_value() for p in self.params]) @staticmethod def load(filename, activation): # TODO: would prefer to save activation to file too npz = np.load(filename) We = npz['arr_0'] Wx = npz['arr_1'] Wh = npz['arr_2'] bh = npz['arr_3'] h0 = npz['arr_4'] Wo = npz['arr_5'] bo = npz['arr_6'] V, D = We.shape _, M = Wx.shape rnn = SimpleRNN(D, M, V) rnn.set(We, Wx, Wh, bh, h0, Wo, bo, activation) return rnn def set(self, We, Wx, Wh, bh, h0, Wo, bo, activation): self.f = activation # redundant - see how you can improve it self.We = theano.shared(We) self.Wx = theano.shared(Wx) self.Wh = theano.shared(Wh) self.bh = theano.shared(bh) self.h0 = theano.shared(h0) self.Wo = theano.shared(Wo) self.bo = theano.shared(bo) self.params = [self.We, self.Wx, self.Wh, self.bh, self.h0, self.Wo, self.bo] thX = T.ivector('X') Ei = self.We[thX] # will be a TxD matrix thY = T.ivector('Y') def recurrence(x_t, h_t1): # returns h(t), y(t) h_t = self.f(x_t.dot(self.Wx) + h_t1.dot(self.Wh) + self.bh) y_t = T.nnet.softmax(h_t.dot(self.Wo) + self.bo) return h_t, y_t [h, y], _ = theano.scan( fn=recurrence, outputs_info=[self.h0, None], sequences=Ei, n_steps=Ei.shape[0], ) py_x = y[:, 0, :] prediction = T.argmax(py_x, axis=1) self.predict_op = theano.function( inputs=[thX], outputs=prediction, allow_input_downcast=True, ) def generate(self, pi, word2idx): # convert word2idx -> idx2word idx2word = {v:k for k,v in iteritems(word2idx)} V = len(pi) # generate 4 lines at a time n_lines = 0 # why? because using the START symbol will always yield the same first word! X = [ np.random.choice(V, p=pi) ] print(idx2word[X[0]], end=" ") while n_lines < 4: # print "X:", X P = self.predict_op(X)[-1] X += [P] if P > 1: # it's a real word, not start/end token word = idx2word[P] print(word, end=" ") elif P == 1: # end token n_lines += 1 print('') if n_lines < 4: X = [ np.random.choice(V, p=pi) ] # reset to start of line print(idx2word[X[0]], end=" ") def train_poetry(): sentences, word2idx = get_robert_frost() rnn = SimpleRNN(30, 30, len(word2idx)) rnn.fit(sentences, learning_rate=1e-4, show_fig=True, activation=T.nnet.relu, epochs=2000) rnn.save('RNN_D30_M30_epochs2000_relu.npz') def generate_poetry(): sentences, word2idx = get_robert_frost() rnn = SimpleRNN.load('RNN_D30_M30_epochs2000_relu.npz', T.nnet.relu) # determine initial state distribution for starting sentences V = len(word2idx) pi = np.zeros(V) for sentence in sentences: pi[sentence[0]] += 1 pi /= pi.sum() rnn.generate(pi, word2idx) def wikipedia(): sentences, word2idx = get_wikipedia_data() print("finished retrieving data") print("vocab size:", len(word2idx), "number of sentences:", len(sentences)) rnn = SimpleRNN(20, 15, len(word2idx)) rnn.fit(sentences, learning_rate=1e-4, show_fig=True, activation=T.nnet.relu) if __name__ == '__main__': train_poetry() generate_poetry() # wikipedia() ================================================ FILE: rnn_class/srn_language_tf.py ================================================ # https://deeplearningcourses.com/c/deep-learning-recurrent-neural-networks-in-python # https://udemy.com/deep-learning-recurrent-neural-networks-in-python from __future__ import print_function, division from future.utils import iteritems from builtins import range # Note: you may need to update your version of future # sudo pip install -U future import tensorflow as tf import numpy as np import matplotlib.pyplot as plt from sklearn.utils import shuffle from util import init_weight, get_robert_frost, get_wikipedia_data class SimpleRNN: def __init__(self, D, M, V, f, session): self.D = D # dimensionality of word embedding self.M = M # hidden layer size self.V = V # vocabulary size self.f = f self.session = session def set_session(self, session): self.session = session def build(self, We, Wx, Wh, bh, h0, Wo, bo): # make them tf Variables self.We = tf.Variable(We) self.Wx = tf.Variable(Wx) self.Wh = tf.Variable(Wh) self.bh = tf.Variable(bh) self.h0 = tf.Variable(h0) self.Wo = tf.Variable(Wo) self.bo = tf.Variable(bo) self.params = [self.We, self.Wx, self.Wh, self.bh, self.h0, self.Wo, self.bo] # for easy access V = self.V D = self.D M = self.M # placeholders self.tfX = tf.placeholder(tf.int32, shape=(None,), name='X') self.tfY = tf.placeholder(tf.int32, shape=(None,), name='Y') # convert word indexes to word vectors # this would be equivalent to doing # We[tfX] in Numpy / Theano # or: # X_one_hot = one_hot_encode(X) # X_one_hot.dot(We) XW = tf.nn.embedding_lookup(We, self.tfX) # multiply it by input->hidden so we don't have to do # it inside recurrence XW_Wx = tf.matmul(XW, self.Wx) def recurrence(h_t1, XW_Wx_t): # returns h(t), y(t) h_t1 = tf.reshape(h_t1, (1, M)) h_t = self.f(XW_Wx_t + tf.matmul(h_t1, self.Wh) + self.bh) h_t = tf.reshape(h_t, (M,)) return h_t h = tf.scan( fn=recurrence, elems=XW_Wx, initializer=self.h0, ) # output logits = tf.matmul(h, self.Wo) + self.bo prediction = tf.argmax(logits, 1) self.output_probs = tf.nn.softmax(logits) nce_weights = tf.transpose(self.Wo, [1,0]) # needs to be VxD, not DxV nce_biases = self.bo h = tf.reshape(h, (-1, M)) labels = tf.reshape(self.tfY, (-1, 1)) self.cost = tf.reduce_mean( tf.nn.sampled_softmax_loss( weights=nce_weights, biases=nce_biases, labels=labels, inputs=h, num_sampled=50, # number of negative samples num_classes=V ) ) self.predict_op = prediction self.train_op = tf.train.AdamOptimizer(1e-2).minimize(self.cost) # self.train_op = tf.train.MomentumOptimizer(1e-3, 0.9).minimize(self.cost) # init all variables init = tf.global_variables_initializer() self.session.run(init) def fit(self, X, epochs=500, show_fig=False): N = len(X) D = self.D M = self.M V = self.V # initial weights We = init_weight(V, D).astype(np.float32) Wx = init_weight(D, M).astype(np.float32) Wh = init_weight(M, M).astype(np.float32) bh = np.zeros(M).astype(np.float32) h0 = np.zeros(M).astype(np.float32) Wo = init_weight(M, V).astype(np.float32) bo = np.zeros(V).astype(np.float32) # build tensorflow functions self.build(We, Wx, Wh, bh, h0, Wo, bo) # sentence input: # [START, w1, w2, ..., wn] # sentence target: # [w1, w2, w3, ..., END] costs = [] n_total = sum((len(sentence)+1) for sentence in X) for i in range(epochs): X = shuffle(X) n_correct = 0 cost = 0 for j in range(N): # problem! many words --> END token are overrepresented # result: generated lines will be very short # we will try to fix in a later iteration # BAD! magic numbers 0 and 1... input_sequence = [0] + X[j] output_sequence = X[j] + [1] # we set 0 to start and 1 to end _, c, p = self.session.run( (self.train_op, self.cost, self.predict_op), feed_dict={self.tfX: input_sequence, self.tfY: output_sequence} ) # print "p:", p cost += c # print "j:", j, "c:", c/len(X[j]+1) for pj, xj in zip(p, output_sequence): if pj == xj: n_correct += 1 print("i:", i, "cost:", cost, "correct rate:", (float(n_correct)/n_total)) costs.append(cost) if show_fig: plt.plot(costs) plt.show() def predict(self, prev_words): # don't use argmax, so that we can sample # from this probability distribution return self.session.run( self.output_probs, feed_dict={self.tfX: prev_words} ) def save(self, filename): actual_params = self.session.run(self.params) np.savez(filename, *[p for p in actual_params]) @staticmethod def load(filename, activation, session): # TODO: would prefer to save activation to file too npz = np.load(filename) We = npz['arr_0'] Wx = npz['arr_1'] Wh = npz['arr_2'] bh = npz['arr_3'] h0 = npz['arr_4'] Wo = npz['arr_5'] bo = npz['arr_6'] V, D = We.shape _, M = Wx.shape rnn = SimpleRNN(D, M, V, activation, session) rnn.build(We, Wx, Wh, bh, h0, Wo, bo) return rnn def generate(self, pi, word2idx): # convert word2idx -> idx2word idx2word = {v:k for k,v in iteritems(word2idx)} V = len(pi) # generate 4 lines at a time n_lines = 0 # why? because using the START symbol will always yield the same first word! X = [ np.random.choice(V, p=pi) ] print(idx2word[X[0]], end=" ") while n_lines < 4: probs = self.predict(X)[-1] word_idx = np.random.choice(V, p=probs) X.append(word_idx) if word_idx > 1: # it's a real word, not start/end token word = idx2word[word_idx] print(word, end=" ") elif word_idx == 1: # end token n_lines += 1 print('') if n_lines < 4: X = [ np.random.choice(V, p=pi) ] # reset to start of line print(idx2word[X[0]], end=" ") def train_poetry(session, dims, savefile): sentences, word2idx = get_robert_frost() rnn = SimpleRNN(dims, dims, len(word2idx), tf.nn.relu, session) rnn.fit(sentences, epochs=17, show_fig=True) rnn.save(savefile) def generate_poetry(session, savefile): sentences, word2idx = get_robert_frost() rnn = SimpleRNN.load(savefile, tf.nn.relu, session) # determine initial state distribution for starting sentences V = len(word2idx) pi = np.zeros(V) for sentence in sentences: pi[sentence[0]] += 1 pi /= pi.sum() rnn.generate(pi, word2idx) if __name__ == '__main__': dims = 50 savefile = 'RNN_D50_M50_tf.npz' session = tf.InteractiveSession() train_poetry(session, dims, savefile) generate_poetry(session, savefile) ================================================ FILE: rnn_class/srn_parity.py ================================================ # https://deeplearningcourses.com/c/deep-learning-recurrent-neural-networks-in-python # https://udemy.com/deep-learning-recurrent-neural-networks-in-python from __future__ import print_function, division from builtins import range # Note: you may need to update your version of future # sudo pip install -U future import theano import theano.tensor as T import numpy as np import matplotlib.pyplot as plt from sklearn.utils import shuffle from util import init_weight, all_parity_pairs_with_sequence_labels class SimpleRNN: def __init__(self, M): self.M = M # hidden layer size def fit(self, X, Y, learning_rate=0.1, mu=0.99, reg=1.0, activation=T.tanh, epochs=100, show_fig=False): D = X[0].shape[1] # X is of size N x T(n) x D K = len(set(Y.flatten())) N = len(Y) M = self.M self.f = activation # initial weights Wx = init_weight(D, M) Wh = init_weight(M, M) bh = np.zeros(M) h0 = np.zeros(M) Wo = init_weight(M, K) bo = np.zeros(K) # make them theano shared self.Wx = theano.shared(Wx) self.Wh = theano.shared(Wh) self.bh = theano.shared(bh) self.h0 = theano.shared(h0) self.Wo = theano.shared(Wo) self.bo = theano.shared(bo) self.params = [self.Wx, self.Wh, self.bh, self.h0, self.Wo, self.bo] thX = T.fmatrix('X') thY = T.ivector('Y') def recurrence(x_t, h_t1): # returns h(t), y(t) h_t = self.f(x_t.dot(self.Wx) + h_t1.dot(self.Wh) + self.bh) y_t = T.nnet.softmax(h_t.dot(self.Wo) + self.bo) return h_t, y_t [h, y], _ = theano.scan( fn=recurrence, outputs_info=[self.h0, None], sequences=thX, n_steps=thX.shape[0], ) py_x = y[:, 0, :] prediction = T.argmax(py_x, axis=1) cost = -T.mean(T.log(py_x[T.arange(thY.shape[0]), thY])) grads = T.grad(cost, self.params) dparams = [theano.shared(p.get_value()*0) for p in self.params] updates = [ (p, p + mu*dp - learning_rate*g) for p, dp, g in zip(self.params, dparams, grads) ] + [ (dp, mu*dp - learning_rate*g) for dp, g in zip(dparams, grads) ] self.predict_op = theano.function(inputs=[thX], outputs=prediction) self.train_op = theano.function( inputs=[thX, thY], outputs=[cost, prediction, y], updates=updates ) costs = [] for i in range(epochs): X, Y = shuffle(X, Y) n_correct = 0 cost = 0 for j in range(N): c, p, rout = self.train_op(X[j], Y[j]) # print "p:", p cost += c if p[-1] == Y[j,-1]: n_correct += 1 print("shape y:", rout.shape) print("i:", i, "cost:", cost, "classification rate:", (float(n_correct)/N)) costs.append(cost) if n_correct == N: break if show_fig: plt.plot(costs) plt.show() def parity(B=12, learning_rate=1e-4, epochs=200): X, Y = all_parity_pairs_with_sequence_labels(B) rnn = SimpleRNN(20) rnn.fit(X, Y, learning_rate=learning_rate, epochs=epochs, activation=T.nnet.relu, show_fig=False) if __name__ == '__main__': parity() ================================================ FILE: rnn_class/srn_parity_tf.py ================================================ # https://deeplearningcourses.com/c/deep-learning-recurrent-neural-networks-in-python # https://udemy.com/deep-learning-recurrent-neural-networks-in-python from __future__ import print_function, division from builtins import range # Note: you may need to update your version of future # sudo pip install -U future import tensorflow as tf import numpy as np import matplotlib.pyplot as plt from sklearn.utils import shuffle from util import init_weight, all_parity_pairs_with_sequence_labels class SimpleRNN: def __init__(self, M): self.M = M # hidden layer size def fit(self, X, Y, learning_rate=1.0, mu=0.99, reg=1.0, activation=tf.tanh, epochs=100, show_fig=False): N, T, D = X.shape K = len(set(Y.flatten())) M = self.M self.f = activation # initial weights Wx = init_weight(D, M).astype(np.float32) Wh = init_weight(M, M).astype(np.float32) bh = np.zeros(M, dtype=np.float32) h0 = np.zeros(M, dtype=np.float32) Wo = init_weight(M, K).astype(np.float32) bo = np.zeros(K, dtype=np.float32) # make them theano shared self.Wx = tf.Variable(Wx) self.Wh = tf.Variable(Wh) self.bh = tf.Variable(bh) self.h0 = tf.Variable(h0) self.Wo = tf.Variable(Wo) self.bo = tf.Variable(bo) tfX = tf.placeholder(tf.float32, shape=(T, D), name='X') tfY = tf.placeholder(tf.int32, shape=(T,), name='Y') XWx = tf.matmul(tfX, self.Wx) def recurrence(h_t1, xw_t): # matmul() only works with 2-D objects # we want to return a 1-D object of size M # so that the final result is T x M # not T x 1 x M h_t = self.f(xw_t + tf.matmul(tf.reshape(h_t1, (1, M)), self.Wh) + self.bh) return tf.reshape(h_t, (M,)) h = tf.scan( fn=recurrence, elems=XWx, initializer=self.h0, ) logits = tf.matmul(h, self.Wo) + self.bo cost = tf.reduce_mean( tf.nn.sparse_softmax_cross_entropy_with_logits( labels=tfY, logits=logits, ) ) predict_op = tf.argmax(logits, 1) train_op = tf.train.AdamOptimizer(1e-2).minimize(cost) init = tf.global_variables_initializer() with tf.Session() as session: session.run(init) costs = [] for i in range(epochs): X, Y = shuffle(X, Y) n_correct = 0 batch_cost = 0 for j in range(N): _, c, p = session.run([train_op, cost, predict_op], feed_dict={tfX: X[j].reshape(T, D), tfY: Y[j]}) batch_cost += c if p[-1] == Y[j,-1]: n_correct += 1 print("i:", i, "cost:", batch_cost, "classification rate:", (float(n_correct)/N)) costs.append(batch_cost) if n_correct == N: break if show_fig: plt.plot(costs) plt.show() def parity(B=12, learning_rate=1e-4, epochs=200): X, Y = all_parity_pairs_with_sequence_labels(B) X = X.astype(np.float32) rnn = SimpleRNN(20) rnn.fit(X, Y, learning_rate=learning_rate, epochs=epochs, activation=tf.nn.relu, show_fig=False) if __name__ == '__main__': parity() ================================================ FILE: rnn_class/tf_parity.py ================================================ # https://deeplearningcourses.com/c/deep-learning-recurrent-neural-networks-in-python # https://udemy.com/deep-learning-recurrent-neural-networks-in-python from __future__ import print_function, division from builtins import range # Note: you may need to update your version of future # sudo pip install -U future import tensorflow as tf import numpy as np import matplotlib.pyplot as plt # from tensorflow.python.ops import rnn as rnn_module ######## This only works for pre-1.0 versions ########## # from tensorflow.python.ops.rnn import rnn as get_rnn_output # from tensorflow.python.ops.rnn_cell import BasicRNNCell, GRUCell ######################################################## ########## This works for TensorFlow v1.0 ############## from tensorflow.contrib.rnn import static_rnn as get_rnn_output from tensorflow.contrib.rnn import BasicRNNCell, GRUCell ######################################################## from sklearn.utils import shuffle from util import init_weight, all_parity_pairs_with_sequence_labels, all_parity_pairs def x2sequence(x, T, D, batch_sz): # Permuting batch_size and n_steps x = tf.transpose(x, (1, 0, 2)) # Reshaping to (n_steps*batch_size, n_input) x = tf.reshape(x, (T*batch_sz, D)) # Split to get a list of 'n_steps' tensors of shape (batch_size, n_input) # x = tf.split(0, T, x) # v0.1 x = tf.split(x, T) # v1.0 # print "type(x):", type(x) return x class SimpleRNN: def __init__(self, M): self.M = M # hidden layer size def fit(self, X, Y, batch_sz=20, learning_rate=0.1, mu=0.9, activation=tf.nn.sigmoid, epochs=100, show_fig=False): N, T, D = X.shape # X is of size N x T(n) x D K = len(set(Y.flatten())) M = self.M self.f = activation # initial weights # note: Wx, Wh, bh are all part of the RNN unit and will be created # by BasicRNNCell Wo = init_weight(M, K).astype(np.float32) bo = np.zeros(K, dtype=np.float32) # make them tf variables self.Wo = tf.Variable(Wo) self.bo = tf.Variable(bo) # tf Graph input tfX = tf.placeholder(tf.float32, shape=(batch_sz, T, D), name='inputs') tfY = tf.placeholder(tf.int64, shape=(batch_sz, T), name='targets') # turn tfX into a sequence, e.g. T tensors all of size (batch_sz, D) sequenceX = x2sequence(tfX, T, D, batch_sz) # create the simple rnn unit rnn_unit = BasicRNNCell(num_units=self.M, activation=self.f) # Get rnn cell output # outputs, states = rnn_module.rnn(rnn_unit, sequenceX, dtype=tf.float32) outputs, states = get_rnn_output(rnn_unit, sequenceX, dtype=tf.float32) # outputs are now of size (T, batch_sz, M) # so make it (batch_sz, T, M) outputs = tf.transpose(outputs, (1, 0, 2)) outputs = tf.reshape(outputs, (T*batch_sz, M)) # Linear activation, using rnn inner loop last output logits = tf.matmul(outputs, self.Wo) + self.bo predict_op = tf.argmax(logits, 1) targets = tf.reshape(tfY, (T*batch_sz,)) cost_op = tf.reduce_mean( tf.nn.sparse_softmax_cross_entropy_with_logits( logits=logits, labels=targets ) ) train_op = tf.train.MomentumOptimizer(learning_rate, momentum=mu).minimize(cost_op) costs = [] n_batches = N // batch_sz init = tf.global_variables_initializer() with tf.Session() as session: session.run(init) for i in range(epochs): X, Y = shuffle(X, Y) n_correct = 0 cost = 0 for j in range(n_batches): Xbatch = X[j*batch_sz:(j+1)*batch_sz] Ybatch = Y[j*batch_sz:(j+1)*batch_sz] _, c, p = session.run([train_op, cost_op, predict_op], feed_dict={tfX: Xbatch, tfY: Ybatch}) cost += c for b in range(batch_sz): idx = (b + 1)*T - 1 n_correct += (p[idx] == Ybatch[b][-1]) if i % 10 == 0: print("i:", i, "cost:", cost, "classification rate:", (float(n_correct)/N)) if n_correct == N: print("i:", i, "cost:", cost, "classification rate:", (float(n_correct)/N)) break costs.append(cost) if show_fig: plt.plot(costs) plt.show() def parity(B=12, learning_rate=1., epochs=1000): X, Y = all_parity_pairs_with_sequence_labels(B) rnn = SimpleRNN(4) rnn.fit(X, Y, batch_sz=len(Y), learning_rate=learning_rate, epochs=epochs, activation=tf.nn.sigmoid, show_fig=False ) if __name__ == '__main__': parity() ================================================ FILE: rnn_class/util.py ================================================ # https://deeplearningcourses.com/c/deep-learning-recurrent-neural-networks-in-python # https://udemy.com/deep-learning-recurrent-neural-networks-in-python from __future__ import print_function, division from builtins import range # Note: you may need to update your version of future # sudo pip install -U future import numpy as np import string import os import sys import operator from nltk import pos_tag, word_tokenize from datetime import datetime def init_weight(Mi, Mo): return np.random.randn(Mi, Mo) / np.sqrt(Mi + Mo) def all_parity_pairs(nbit): # total number of samples (Ntotal) will be a multiple of 100 # why did I make it this way? I don't remember. N = 2**nbit remainder = 100 - (N % 100) Ntotal = N + remainder X = np.zeros((Ntotal, nbit)) Y = np.zeros(Ntotal) for ii in range(Ntotal): i = ii % N # now generate the ith sample for j in range(nbit): if i % (2**(j+1)) != 0: i -= 2**j X[ii,j] = 1 Y[ii] = X[ii].sum() % 2 return X, Y def all_parity_pairs_with_sequence_labels(nbit): X, Y = all_parity_pairs(nbit) N, t = X.shape # we want every time step to have a label Y_t = np.zeros(X.shape, dtype=np.int32) for n in range(N): ones_count = 0 for i in range(t): if X[n,i] == 1: ones_count += 1 if ones_count % 2 == 1: Y_t[n,i] = 1 X = X.reshape(N, t, 1).astype(np.float32) return X, Y_t # unfortunately Python 2 and 3 translates work differently def remove_punctuation_2(s): return s.translate(None, string.punctuation) def remove_punctuation_3(s): return s.translate(str.maketrans('','',string.punctuation)) if sys.version.startswith('2'): remove_punctuation = remove_punctuation_2 else: remove_punctuation = remove_punctuation_3 def get_robert_frost(): word2idx = {'START': 0, 'END': 1} current_idx = 2 sentences = [] for line in open('../hmm_class/robert_frost.txt'): line = line.strip() if line: tokens = remove_punctuation(line.lower()).split() sentence = [] for t in tokens: if t not in word2idx: word2idx[t] = current_idx current_idx += 1 idx = word2idx[t] sentence.append(idx) sentences.append(sentence) return sentences, word2idx def my_tokenizer(s): s = remove_punctuation(s) s = s.lower() # downcase return s.split() def get_wikipedia_data(n_files, n_vocab, by_paragraph=False): prefix = '../large_files/' if not os.path.exists(prefix): print("Are you sure you've downloaded, converted, and placed the Wikipedia data into the proper folder?") print("I'm looking for a folder called large_files, adjacent to the class folder, but it does not exist.") print("Please download the data from https://dumps.wikimedia.org/") print("Quitting...") exit() input_files = [f for f in os.listdir(prefix) if f.startswith('enwiki') and f.endswith('txt')] if len(input_files) == 0: print("Looks like you don't have any data files, or they're in the wrong location.") print("Please download the data from https://dumps.wikimedia.org/") print("Quitting...") exit() # return variables sentences = [] word2idx = {'START': 0, 'END': 1} idx2word = ['START', 'END'] current_idx = 2 word_idx_count = {0: float('inf'), 1: float('inf')} if n_files is not None: input_files = input_files[:n_files] for f in input_files: print("reading:", f) for line in open(prefix + f): line = line.strip() # don't count headers, structured data, lists, etc... if line and line[0] not in ('[', '*', '-', '|', '=', '{', '}'): if by_paragraph: sentence_lines = [line] else: sentence_lines = line.split('. ') for sentence in sentence_lines: tokens = my_tokenizer(sentence) for t in tokens: if t not in word2idx: word2idx[t] = current_idx idx2word.append(t) current_idx += 1 idx = word2idx[t] word_idx_count[idx] = word_idx_count.get(idx, 0) + 1 sentence_by_idx = [word2idx[t] for t in tokens] sentences.append(sentence_by_idx) # restrict vocab size sorted_word_idx_count = sorted(word_idx_count.items(), key=operator.itemgetter(1), reverse=True) word2idx_small = {} new_idx = 0 idx_new_idx_map = {} for idx, count in sorted_word_idx_count[:n_vocab]: word = idx2word[idx] print(word, count) word2idx_small[word] = new_idx idx_new_idx_map[idx] = new_idx new_idx += 1 # let 'unknown' be the last token word2idx_small['UNKNOWN'] = new_idx unknown = new_idx assert('START' in word2idx_small) assert('END' in word2idx_small) assert('king' in word2idx_small) assert('queen' in word2idx_small) assert('man' in word2idx_small) assert('woman' in word2idx_small) # map old idx to new idx sentences_small = [] for sentence in sentences: if len(sentence) > 1: new_sentence = [idx_new_idx_map[idx] if idx in idx_new_idx_map else unknown for idx in sentence] sentences_small.append(new_sentence) return sentences_small, word2idx_small def get_tags(s): tuples = pos_tag(word_tokenize(s)) return [y for x, y in tuples] def get_poetry_classifier_data(samples_per_class, load_cached=True, save_cached=True): datafile = 'poetry_classifier_data.npz' if load_cached and os.path.exists(datafile): npz = np.load(datafile) X = npz['arr_0'] Y = npz['arr_1'] V = int(npz['arr_2']) return X, Y, V word2idx = {} current_idx = 0 X = [] Y = [] for fn, label in zip(('../hmm_class/edgar_allan_poe.txt', '../hmm_class/robert_frost.txt'), (0, 1)): count = 0 for line in open(fn): line = line.rstrip() if line: print(line) # tokens = remove_punctuation(line.lower()).split() tokens = get_tags(line) if len(tokens) > 1: # scan doesn't work nice here, technically could fix... for token in tokens: if token not in word2idx: word2idx[token] = current_idx current_idx += 1 sequence = np.array([word2idx[w] for w in tokens]) X.append(sequence) Y.append(label) count += 1 print(count) # quit early because the tokenizer is very slow if count >= samples_per_class: break if save_cached: np.savez(datafile, X, Y, current_idx) return X, Y, current_idx def get_stock_data(): input_files = os.listdir('stock_data') min_length = 2000 # first find the latest start date # so that each time series can start at the same time max_min_date = datetime(2000, 1, 1) line_counts = {} for f in input_files: n = 0 for line in open('stock_data/%s' % f): # pass n += 1 line_counts[f] = n if n > min_length: # else we'll ignore this symbol, too little data # print 'stock_data/%s' % f, 'num lines:', n last_line = line date = line.split(',')[0] date = datetime.strptime(date, '%Y-%m-%d') if date > max_min_date: max_min_date = date print("max min date:", max_min_date) # now collect the data up to min date all_binary_targets = [] all_prices = [] for f in input_files: if line_counts[f] > min_length: prices = [] binary_targets = [] first = True last_price = 0 for line in open('stock_data/%s' % f): if first: first = False continue date, price = line.split(',')[:2] date = datetime.strptime(date, '%Y-%m-%d') if date < max_min_date: break prices.append(float(price)) target = 1 if last_price < price else 0 binary_targets.append(target) last_price = price all_prices.append(prices) all_binary_targets.append(binary_targets) # D = number of symbols # T = length of series return np.array(all_prices).T, np.array(all_binary_targets).T # make it T x D ================================================ FILE: rnn_class/visualize_embeddings.py ================================================ # https://deeplearningcourses.com/c/deep-learning-recurrent-neural-networks-in-python # https://udemy.com/deep-learning-recurrent-neural-networks-in-python from __future__ import print_function, division from future.utils import iteritems from builtins import range # Note: you may need to update your version of future # sudo pip install -U future import json import numpy as np import matplotlib.pyplot as plt from sklearn.manifold import TSNE from sklearn.decomposition import PCA, TruncatedSVD def main(we_file='word_embeddings.npy', w2i_file='wikipedia_word2idx.json', Model=PCA): We = np.load(we_file) V, D = We.shape with open(w2i_file) as f: word2idx = json.load(f) idx2word = {v:k for k,v in iteritems(word2idx)} model = Model() Z = model.fit_transform(We) plt.scatter(Z[:,0], Z[:,1]) for i in range(V): plt.annotate(s=idx2word[i], xy=(Z[i,0], Z[i,1])) plt.show() if __name__ == '__main__': # main(Model=TSNE) # D=80, M=80 # main(we_file='gru_nonorm_part1_word_embeddings.npy', w2i_file='gru_nonorm_part1_wikipedia_word2idx.json', Model=TSNE) main(we_file='working_files/batch_gru_word_embeddings.npy', w2i_file='working_files/batch_wikipedia_word2idx.json', Model=TSNE) ================================================ FILE: rnn_class/wiki.py ================================================ # https://deeplearningcourses.com/c/deep-learning-recurrent-neural-networks-in-python # https://udemy.com/deep-learning-recurrent-neural-networks-in-python from __future__ import print_function, division from future.utils import iteritems from builtins import range # Note: you may need to update your version of future # sudo pip install -U future import sys import theano import theano.tensor as T import numpy as np import matplotlib.pyplot as plt import json from datetime import datetime from sklearn.utils import shuffle from gru import GRU from lstm import LSTM from util import init_weight, get_wikipedia_data from brown import get_sentences_with_word2idx_limit_vocab class RNN: def __init__(self, D, hidden_layer_sizes, V): self.hidden_layer_sizes = hidden_layer_sizes self.D = D self.V = V def fit(self, X, learning_rate=1e-5, mu=0.99, epochs=10, show_fig=True, activation=T.nnet.relu, RecurrentUnit=GRU, normalize=True): D = self.D V = self.V N = len(X) We = init_weight(V, D) self.hidden_layers = [] Mi = D for Mo in self.hidden_layer_sizes: ru = RecurrentUnit(Mi, Mo, activation) self.hidden_layers.append(ru) Mi = Mo Wo = init_weight(Mi, V) bo = np.zeros(V) self.We = theano.shared(We) self.Wo = theano.shared(Wo) self.bo = theano.shared(bo) self.params = [self.Wo, self.bo] for ru in self.hidden_layers: self.params += ru.params thX = T.ivector('X') thY = T.ivector('Y') Z = self.We[thX] for ru in self.hidden_layers: Z = ru.output(Z) py_x = T.nnet.softmax(Z.dot(self.Wo) + self.bo) prediction = T.argmax(py_x, axis=1) # let's return py_x too so we can draw a sample instead self.predict_op = theano.function( inputs=[thX], outputs=[py_x, prediction], allow_input_downcast=True, ) cost = -T.mean(T.log(py_x[T.arange(thY.shape[0]), thY])) grads = T.grad(cost, self.params) dparams = [theano.shared(p.get_value()*0) for p in self.params] dWe = theano.shared(self.We.get_value()*0) gWe = T.grad(cost, self.We) dWe_update = mu*dWe - learning_rate*gWe We_update = self.We + dWe_update if normalize: We_update /= We_update.norm(2) updates = [ (p, p + mu*dp - learning_rate*g) for p, dp, g in zip(self.params, dparams, grads) ] + [ (dp, mu*dp - learning_rate*g) for dp, g in zip(dparams, grads) ] + [ (self.We, We_update), (dWe, dWe_update) ] self.train_op = theano.function( inputs=[thX, thY], outputs=[cost, prediction], updates=updates ) costs = [] for i in range(epochs): t0 = datetime.now() X = shuffle(X) n_correct = 0 n_total = 0 cost = 0 for j in range(N): if np.random.random() < 0.01 or len(X[j]) <= 1: input_sequence = [0] + X[j] output_sequence = X[j] + [1] else: input_sequence = [0] + X[j][:-1] output_sequence = X[j] n_total += len(output_sequence) # test: try: # we set 0 to start and 1 to end c, p = self.train_op(input_sequence, output_sequence) except Exception as e: PYX, pred = self.predict_op(input_sequence) print("input_sequence len:", len(input_sequence)) print("PYX.shape:",PYX.shape) print("pred.shape:", pred.shape) raise e # print "p:", p cost += c # print "j:", j, "c:", c/len(X[j]+1) for pj, xj in zip(p, output_sequence): if pj == xj: n_correct += 1 if j % 200 == 0: sys.stdout.write("j/N: %d/%d correct rate so far: %f\r" % (j, N, float(n_correct)/n_total)) sys.stdout.flush() print("i:", i, "cost:", cost, "correct rate:", (float(n_correct)/n_total), "time for epoch:", (datetime.now() - t0)) costs.append(cost) if show_fig: plt.plot(costs) plt.show() def train_wikipedia(we_file='word_embeddings.npy', w2i_file='wikipedia_word2idx.json', RecurrentUnit=GRU): # there are 32 files ### note: you can pick between Wikipedia data and Brown corpus ### just comment one out, and uncomment the other! # sentences, word2idx = get_wikipedia_data(n_files=100, n_vocab=2000) sentences, word2idx = get_sentences_with_word2idx_limit_vocab() print("finished retrieving data") print("vocab size:", len(word2idx), "number of sentences:", len(sentences)) rnn = RNN(30, [30], len(word2idx)) rnn.fit(sentences, learning_rate=1e-5, epochs=10, show_fig=True, activation=T.nnet.relu) np.save(we_file, rnn.We.get_value()) with open(w2i_file, 'w') as f: json.dump(word2idx, f) def find_analogies(w1, w2, w3, we_file='word_embeddings.npy', w2i_file='wikipedia_word2idx.json'): We = np.load(we_file) with open(w2i_file) as f: word2idx = json.load(f) king = We[word2idx[w1]] man = We[word2idx[w2]] woman = We[word2idx[w3]] v0 = king - man + woman def dist1(a, b): return np.linalg.norm(a - b) def dist2(a, b): return 1 - a.dot(b) / (np.linalg.norm(a) * np.linalg.norm(b)) for dist, name in [(dist1, 'Euclidean'), (dist2, 'cosine')]: min_dist = float('inf') best_word = '' for word, idx in iteritems(word2idx): if word not in (w1, w2, w3): v1 = We[idx] d = dist(v0, v1) if d < min_dist: min_dist = d best_word = word print("closest match by", name, "distance:", best_word) print(w1, "-", w2, "=", best_word, "-", w3) if __name__ == '__main__': we = 'lstm_word_embeddings2.npy' w2i = 'lstm_wikipedia_word2idx2.json' train_wikipedia(we, w2i, RecurrentUnit=GRU) find_analogies('king', 'man', 'woman', we, w2i) find_analogies('france', 'paris', 'london', we, w2i) find_analogies('france', 'paris', 'rome', we, w2i) find_analogies('paris', 'france', 'italy', we, w2i) ================================================ FILE: stats/extra_reading.txt ================================================ The Unbiased Estimate of the Covariance Matrix https://lazyprogrammer.me/covariance-matrix-divide-by-n-or-n-1/ ================================================ FILE: supervised_class/app.py ================================================ from __future__ import print_function, division from builtins import range, input # Note: you may need to update your version of future # sudo pip install -U future # https://deeplearningcourses.com/c/data-science-supervised-machine-learning-in-python # https://www.udemy.com/data-science-supervised-machine-learning-in-python import pickle import numpy as np import os import json import tornado.ioloop import tornado.web if not os.path.exists('mymodel.pkl'): exit("Can't run without the model!") with open('mymodel.pkl', 'rb') as f: model = pickle.load(f) class MainHandler(tornado.web.RequestHandler): def get(self): self.write("Hello, Tornado!") class PredictionHandler(tornado.web.RequestHandler): # predict one sample at a time def post(self): # print "body:", self.request.body # print "arguments:", self.request.arguments # will look like this: # body: three=four&one=two # arguments: {'three': ['four'], 'one': ['two']} params = self.request.arguments x = np.array(list(map(float, params['input']))) y = model.predict([x])[0] self.write(json.dumps({'prediction': y.item()})) self.finish() if __name__ == "__main__": application = tornado.web.Application([ (r"/", MainHandler), (r"/predict", PredictionHandler), ]) application.listen(8888) tornado.ioloop.IOLoop.current().start() ================================================ FILE: supervised_class/app_caller.py ================================================ from __future__ import print_function, division from builtins import range, input # Note: you may need to update your version of future # sudo pip install -U future # https://deeplearningcourses.com/c/data-science-supervised-machine-learning-in-python # https://www.udemy.com/data-science-supervised-machine-learning-in-python import requests import numpy as np import matplotlib.pyplot as plt from util import get_data # make a prediction from our own server! # in reality this could be coming from any client X, Y = get_data() N = len(Y) while True: i = np.random.choice(N) r = requests.post("http://localhost:8888/predict", data={'input': X[i]}) print("RESPONSE:") print(r.content) j = r.json() print(j) print("target:", Y[i]) plt.imshow(X[i].reshape(28, 28), cmap='gray') plt.title("Target: %d, Prediction: %d" % (Y[i], j['prediction'])) plt.show() response = input("Continue? (Y/n)\n") if response in ('n', 'N'): break ================================================ FILE: supervised_class/app_trainer.py ================================================ from __future__ import print_function, division from builtins import range, input # Note: you may need to update your version of future # sudo pip install -U future # https://deeplearningcourses.com/c/data-science-supervised-machine-learning-in-python # https://www.udemy.com/data-science-supervised-machine-learning-in-python import pickle import numpy as np from util import get_data from sklearn.ensemble import RandomForestClassifier if __name__ == '__main__': X, Y = get_data() Ntrain = len(Y) // 4 Xtrain, Ytrain = X[:Ntrain], Y[:Ntrain] model = RandomForestClassifier() model.fit(Xtrain, Ytrain) # just in case you're curious Xtest, Ytest = X[Ntrain:], Y[Ntrain:] print("test accuracy:", model.score(Xtest, Ytest)) with open('mymodel.pkl', 'wb') as f: pickle.dump(model, f) ================================================ FILE: supervised_class/bayes.py ================================================ # https://deeplearningcourses.com/c/data-science-supervised-machine-learning-in-python # https://www.udemy.com/data-science-supervised-machine-learning-in-python # This is an example of a Bayes classifier on MNIST data. from __future__ import print_function, division from future.utils import iteritems from builtins import range, input # Note: you may need to update your version of future # sudo pip install -U future import numpy as np import matplotlib.pyplot as plt from util import get_data from datetime import datetime from scipy.stats import norm from scipy.stats import multivariate_normal as mvn class Bayes(object): def fit(self, X, Y, smoothing=1e-2): N, D = X.shape self.gaussians = dict() self.priors = dict() labels = set(Y) for c in labels: current_x = X[Y == c] self.gaussians[c] = { 'mean': current_x.mean(axis=0), 'cov': np.cov(current_x.T) + np.eye(D)*smoothing, } self.priors[c] = float(len(Y[Y == c])) / len(Y) def score(self, X, Y): P = self.predict(X) return np.mean(P == Y) def predict(self, X): N, D = X.shape K = len(self.gaussians) P = np.zeros((N, K)) for c, g in iteritems(self.gaussians): mean, cov = g['mean'], g['cov'] P[:,c] = mvn.logpdf(X, mean=mean, cov=cov) + np.log(self.priors[c]) return np.argmax(P, axis=1) if __name__ == '__main__': X, Y = get_data(10000) Ntrain = len(Y) // 2 Xtrain, Ytrain = X[:Ntrain], Y[:Ntrain] Xtest, Ytest = X[Ntrain:], Y[Ntrain:] model = Bayes() t0 = datetime.now() model.fit(Xtrain, Ytrain) print("Training time:", (datetime.now() - t0)) t0 = datetime.now() print("Train accuracy:", model.score(Xtrain, Ytrain)) print("Time to compute train accuracy:", (datetime.now() - t0), "Train size:", len(Ytrain)) t0 = datetime.now() print("Test accuracy:", model.score(Xtest, Ytest)) print("Time to compute test accuracy:", (datetime.now() - t0), "Test size:", len(Ytest)) # plot the mean of each class for c, g in iteritems(model.gaussians): plt.imshow(g['mean'].reshape(28, 28)) plt.title(c) plt.show() ================================================ FILE: supervised_class/dt.py ================================================ # https://deeplearningcourses.com/c/data-science-supervised-machine-learning-in-python # https://www.udemy.com/data-science-supervised-machine-learning-in-python # Decision Tree for continuous-vector input, binary output from __future__ import print_function, division from future.utils import iteritems from builtins import range, input # Note: you may need to update your version of future # sudo pip install -U future import numpy as np from util import get_data, get_xor, get_donut from datetime import datetime def entropy(y): # assume y is binary - 0 or 1 N = len(y) s1 = (y == 1).sum() if 0 == s1 or N == s1: return 0 p1 = float(s1) / N p0 = 1 - p1 return -p0*np.log2(p0) - p1*np.log2(p1) class TreeNode: def __init__(self, depth=1, max_depth=None): print('depth:', depth) self.depth = depth self.max_depth = max_depth if self.max_depth is not None and self.max_depth < self.depth: raise Exception("depth > max_depth") def fit(self, X, Y): if len(Y) == 1 or len(set(Y)) == 1: # base case, only 1 sample # another base case # this node only receives examples from 1 class # we can't make a split self.col = None self.split = None self.left = None self.right = None self.prediction = Y[0] else: D = X.shape[1] cols = range(D) max_ig = 0 best_col = None best_split = None for col in cols: ig, split = self.find_split(X, Y, col) # print "ig:", ig if ig > max_ig: max_ig = ig best_col = col best_split = split if max_ig == 0: # nothing we can do # no further splits self.col = None self.split = None self.left = None self.right = None self.prediction = np.round(Y.mean()) else: self.col = best_col self.split = best_split if self.depth == self.max_depth: self.left = None self.right = None self.prediction = [ np.round(Y[X[:,best_col] < self.split].mean()), np.round(Y[X[:,best_col] >= self.split].mean()), ] else: # print "best split:", best_split left_idx = (X[:,best_col] < best_split) # print "left_idx.shape:", left_idx.shape, "len(X):", len(X) Xleft = X[left_idx] Yleft = Y[left_idx] self.left = TreeNode(self.depth + 1, self.max_depth) self.left.fit(Xleft, Yleft) right_idx = (X[:,best_col] >= best_split) Xright = X[right_idx] Yright = Y[right_idx] self.right = TreeNode(self.depth + 1, self.max_depth) self.right.fit(Xright, Yright) def find_split(self, X, Y, col): # print "finding split for col:", col x_values = X[:, col] sort_idx = np.argsort(x_values) x_values = x_values[sort_idx] y_values = Y[sort_idx] # Note: optimal split is the midpoint between 2 points # Note: optimal split is only on the boundaries between 2 classes # if boundaries[i] is true # then y_values[i] != y_values[i+1] # nonzero() gives us indices where arg is true # but for some reason it returns a tuple of size 1 boundaries = np.nonzero(y_values[:-1] != y_values[1:])[0] best_split = None max_ig = 0 for b in boundaries: split = (x_values[b] + x_values[b+1]) / 2 ig = self.information_gain(x_values, y_values, split) if ig > max_ig: max_ig = ig best_split = split return max_ig, best_split def information_gain(self, x, y, split): # assume classes are 0 and 1 # print "split:", split y0 = y[x < split] y1 = y[x >= split] N = len(y) y0len = len(y0) if y0len == 0 or y0len == N: return 0 p0 = float(len(y0)) / N p1 = 1 - p0 #float(len(y1)) / N # print "entropy(y):", entropy(y) # print "p0:", p0 # print "entropy(y0):", entropy(y0) # print "p1:", p1 # print "entropy(y1):", entropy(y1) return entropy(y) - p0*entropy(y0) - p1*entropy(y1) def predict_one(self, x): # use "is not None" because 0 means False if self.col is not None and self.split is not None: feature = x[self.col] if feature < self.split: if self.left: p = self.left.predict_one(x) else: p = self.prediction[0] else: if self.right: p = self.right.predict_one(x) else: p = self.prediction[1] else: # corresponds to having only 1 prediction p = self.prediction return p def predict(self, X): N = len(X) P = np.zeros(N) for i in range(N): P[i] = self.predict_one(X[i]) return P # This class is kind of redundant class DecisionTree: def __init__(self, max_depth=None): self.max_depth = max_depth def fit(self, X, Y): self.root = TreeNode(max_depth=self.max_depth) self.root.fit(X, Y) def predict(self, X): return self.root.predict(X) def score(self, X, Y): P = self.predict(X) return np.mean(P == Y) if __name__ == '__main__': X, Y = get_data() # try donut and xor # from sklearn.utils import shuffle # X, Y = get_xor() # # X, Y = get_donut() # X, Y = shuffle(X, Y) # only take 0s and 1s since we're doing binary classification idx = np.logical_or(Y == 0, Y == 1) X = X[idx] Y = Y[idx] # split the data Ntrain = len(Y) // 2 Xtrain, Ytrain = X[:Ntrain], Y[:Ntrain] Xtest, Ytest = X[Ntrain:], Y[Ntrain:] model = DecisionTree() # model = DecisionTree(max_depth=7) t0 = datetime.now() model.fit(Xtrain, Ytrain) print("Training time:", (datetime.now() - t0)) t0 = datetime.now() print("Train accuracy:", model.score(Xtrain, Ytrain)) print("Time to compute train accuracy:", (datetime.now() - t0)) t0 = datetime.now() print("Test accuracy:", model.score(Xtest, Ytest)) print("Time to compute test accuracy:", (datetime.now() - t0)) ================================================ FILE: supervised_class/dt_without_recursion.py ================================================ # https://deeplearningcourses.com/c/data-science-supervised-machine-learning-in-python # https://www.udemy.com/data-science-supervised-machine-learning-in-python # Decision Tree for continuous-vector input, binary output from __future__ import print_function, division from future.utils import iteritems from builtins import range, input # Note: you may need to update your version of future # sudo pip install -U future import numpy as np from util import get_data, get_xor, get_donut from datetime import datetime def entropy(y): # assume y is binary - 0 or 1 N = len(y) s1 = (y == 1).sum() if 0 == s1 or N == s1: return 0 p1 = float(s1) / N p0 = 1 - p1 # return -p0*np.log2(p0) - p1*np.log2(p1) return 1 - p0*p0 - p1*p1 class DecisionTree: def __init__(self, depth=0, max_depth=None): # print 'depth:', depth # self.depth = depth self.max_depth = max_depth self.root = {} # is a tree node # each node will have the attributes (k-v pairs): # - col # - split # - left # - right # - prediction def fit(self, X, Y): current_node = self.root depth = 0 queue = [] # origX = X # origY = Y while True: if len(Y) == 1 or len(set(Y)) == 1: # base case, only 1 sample # another base case # this node only receives examples from 1 class # we can't make a split # self.col = None # self.split = None # self.left = None # self.right = None # self.prediction = Y[0] current_node['col'] = None current_node['split'] = None current_node['left'] = None current_node['right'] = None current_node['prediction'] = Y[0] else: D = X.shape[1] cols = range(D) max_ig = 0 best_col = None best_split = None for col in cols: ig, split = self.find_split(X, Y, col) # print "ig:", ig if ig > max_ig: max_ig = ig best_col = col best_split = split if max_ig == 0: # nothing we can do # no further splits # self.col = None # self.split = None # self.left = None # self.right = None # self.prediction = np.round(Y.mean()) current_node['col'] = None current_node['split'] = None current_node['left'] = None current_node['right'] = None current_node['prediction'] = np.round(Y.mean()) else: # self.col = best_col # self.split = best_split current_node['col'] = best_col current_node['split'] = best_split # if self.depth == self.max_depth: if depth == self.max_depth: # self.left = None # self.right = None # self.prediction = [ # np.round(Y[X[:,best_col] < self.split].mean()), # np.round(Y[X[:,best_col] >= self.split].mean()), # ] current_node['left'] = None current_node['right'] = None current_node['prediction'] = [ np.round(Y[X[:,best_col] < self.split].mean()), np.round(Y[X[:,best_col] >= self.split].mean()), ] else: # print "best split:", best_split left_idx = (X[:,best_col] < best_split) # print "left_idx.shape:", left_idx.shape, "len(X):", len(X) # TODO: bad but I can't figure out a better way atm Xleft = X[left_idx] Yleft = Y[left_idx] # self.left = TreeNode(self.depth + 1, self.max_depth) # self.left.fit(Xleft, Yleft) new_node = {} current_node['left'] = new_node left_data = { 'node': new_node, 'X': Xleft, 'Y': Yleft, } queue.insert(0, left_data) right_idx = (X[:,best_col] >= best_split) Xright = X[right_idx] Yright = Y[right_idx] # self.right = TreeNode(self.depth + 1, self.max_depth) # self.right.fit(Xright, Yright) new_node = {} current_node['right'] = new_node right_data = { 'node': new_node, 'X': Xright, 'Y': Yright, } queue.insert(0, right_data) # setup for the next iteration of the loop # idea is, queue stores list of work to be done if len(queue) == 0: break next_data = queue.pop() current_node = next_data['node'] X = next_data['X'] Y = next_data['Y'] def find_split(self, X, Y, col): # print "finding split for col:", col x_values = X[:, col] sort_idx = np.argsort(x_values) x_values = x_values[sort_idx] y_values = Y[sort_idx] # Note: optimal split is the midpoint between 2 points # Note: optimal split is only on the boundaries between 2 classes # if boundaries[i] is true # then y_values[i] != y_values[i+1] # nonzero() gives us indices where arg is true # but for some reason it returns a tuple of size 1 boundaries = np.nonzero(y_values[:-1] != y_values[1:])[0] best_split = None max_ig = 0 last_ig = 0 for b in boundaries: split = (x_values[b] + x_values[b+1]) / 2 ig = self.information_gain(x_values, y_values, split) if ig < last_ig: break last_ig = ig if ig > max_ig: max_ig = ig best_split = split return max_ig, best_split def information_gain(self, x, y, split): # assume classes are 0 and 1 # print "split:", split y0 = y[x < split] y1 = y[x >= split] N = len(y) y0len = len(y0) if y0len == 0 or y0len == N: return 0 p0 = float(len(y0)) / N p1 = 1 - p0 #float(len(y1)) / N # print "entropy(y):", entropy(y) # print "p0:", p0 # print "entropy(y0):", entropy(y0) # print "p1:", p1 # print "entropy(y1):", entropy(y1) return entropy(y) - p0*entropy(y0) - p1*entropy(y1) def predict_one(self, x): # use "is not None" because 0 means False # if self.col is not None and self.split is not None: # feature = x[self.col] # if feature < self.split: # if self.left: # p = self.left.predict_one(x) # else: # p = self.prediction[0] # else: # if self.right: # p = self.right.predict_one(x) # else: # p = self.prediction[1] # else: # # corresponds to having only 1 prediction # p = self.prediction p = None current_node = self.root while True: if current_node['col'] is not None and current_node['split'] is not None: feature = x[current_node['col']] if feature < current_node['split']: if current_node['left']: current_node = current_node['left'] else: p = current_node['prediction'][0] break else: if current_node['right']: current_node = current_node['right'] else: p = current_node['prediction'][1] break else: # corresponds to having only 1 prediction p = current_node['prediction'] break return p def predict(self, X): N = len(X) P = np.zeros(N) for i in range(N): P[i] = self.predict_one(X[i]) return P def score(self, X, Y): P = self.predict(X) return np.mean(P == Y) if __name__ == '__main__': X, Y = get_data() # try donut and xor # from sklearn.utils import shuffle # X, Y = get_xor() # # X, Y = get_donut() # X, Y = shuffle(X, Y) # only take 0s and 1s since we're doing binary classification idx = np.logical_or(Y == 0, Y == 1) X = X[idx] Y = Y[idx] # split the data Ntrain = len(Y) // 2 Xtrain, Ytrain = X[:Ntrain], Y[:Ntrain] Xtest, Ytest = X[Ntrain:], Y[Ntrain:] model = DecisionTree() # model = DecisionTree(max_depth=7) t0 = datetime.now() model.fit(Xtrain, Ytrain) print("Training time:", (datetime.now() - t0)) t0 = datetime.now() print("Train accuracy:", model.score(Xtrain, Ytrain)) print("Time to compute train accuracy:", (datetime.now() - t0)) t0 = datetime.now() print("Test accuracy:", model.score(Xtest, Ytest)) print("Time to compute test accuracy:", (datetime.now() - t0)) # test SKLearn from sklearn.tree import DecisionTreeClassifier model = DecisionTreeClassifier() t0 = datetime.now() model.fit(Xtrain, Ytrain) print("SK: Training time:", (datetime.now() - t0)) t0 = datetime.now() print("Train accuracy:", model.score(Xtrain, Ytrain)) print("SK: Time to compute train accuracy:", (datetime.now() - t0)) t0 = datetime.now() print("Test accuracy:", model.score(Xtest, Ytest)) print("SK: Time to compute test accuracy:", (datetime.now() - t0)) ================================================ FILE: supervised_class/knn.py ================================================ # https://deeplearningcourses.com/c/data-science-supervised-machine-learning-in-python # https://www.udemy.com/data-science-supervised-machine-learning-in-python # This is an example of a K-Nearest Neighbors classifier on MNIST data. # We try k=1...5 to show how we might choose the best k. # sudo pip install sortedcontainers (if you don't have it) from __future__ import print_function, division from future.utils import iteritems from builtins import range, input # Note: you may need to update your version of future # sudo pip install -U future import numpy as np import matplotlib.pyplot as plt from sortedcontainers import SortedList # Note: You can't use SortedDict because the key is distance # if 2 close points are the same distance away, one will be overwritten from util import get_data from datetime import datetime class KNN(object): def __init__(self, k): self.k = k def fit(self, X, y): self.X = X self.y = y def predict(self, X): y = np.zeros(len(X)) for i,x in enumerate(X): # test points sl = SortedList() # stores (distance, class) tuples for j,xt in enumerate(self.X): # training points diff = x - xt d = diff.dot(diff) if len(sl) < self.k: # don't need to check, just add sl.add( (d, self.y[j]) ) else: if d < sl[-1][0]: del sl[-1] sl.add( (d, self.y[j]) ) # print "input:", x # print "sl:", sl # vote votes = {} for _, v in sl: # print "v:", v votes[v] = votes.get(v,0) + 1 # print "votes:", votes, "true:", Ytest[i] max_votes = 0 max_votes_class = -1 for v,count in iteritems(votes): if count > max_votes: max_votes = count max_votes_class = v y[i] = max_votes_class return y def score(self, X, Y): P = self.predict(X) return np.mean(P == Y) if __name__ == '__main__': X, Y = get_data(2000) Ntrain = 1000 Xtrain, Ytrain = X[:Ntrain], Y[:Ntrain] Xtest, Ytest = X[Ntrain:], Y[Ntrain:] train_scores = [] test_scores = [] ks = (1,2,3,4,5) for k in ks: print("\nk =", k) knn = KNN(k) t0 = datetime.now() knn.fit(Xtrain, Ytrain) print("Training time:", (datetime.now() - t0)) t0 = datetime.now() train_score = knn.score(Xtrain, Ytrain) train_scores.append(train_score) print("Train accuracy:", train_score) print("Time to compute train accuracy:", (datetime.now() - t0), "Train size:", len(Ytrain)) t0 = datetime.now() test_score = knn.score(Xtest, Ytest) print("Test accuracy:", test_score) test_scores.append(test_score) print("Time to compute test accuracy:", (datetime.now() - t0), "Test size:", len(Ytest)) plt.plot(ks, train_scores, label='train scores') plt.plot(ks, test_scores, label='test scores') plt.legend() plt.show() ================================================ FILE: supervised_class/knn_donut.py ================================================ # https://deeplearningcourses.com/c/data-science-supervised-machine-learning-in-python # https://www.udemy.com/data-science-supervised-machine-learning-in-python from __future__ import print_function, division from builtins import range, input # Note: you may need to update your version of future # sudo pip install -U future from knn import KNN from util import get_donut import matplotlib.pyplot as plt if __name__ == '__main__': X, Y = get_donut() # display the data plt.scatter(X[:,0], X[:,1], s=100, c=Y, alpha=0.5) plt.show() # get the accuracy model = KNN(3) model.fit(X, Y) print("Accuracy:", model.score(X, Y)) ================================================ FILE: supervised_class/knn_fail.py ================================================ # https://deeplearningcourses.com/c/data-science-supervised-machine-learning-in-python # https://www.udemy.com/data-science-supervised-machine-learning-in-python from __future__ import print_function, division from future.utils import iteritems from builtins import range, input # Note: you may need to update your version of future # sudo pip install -U future import numpy as np import matplotlib.pyplot as plt from knn import KNN def get_data(): width = 8 height = 8 N = width * height X = np.zeros((N, 2)) Y = np.zeros(N) n = 0 start_t = 0 for i in range(width): t = start_t for j in range(height): X[n] = [i, j] Y[n] = t n += 1 t = (t + 1) % 2 # alternate between 0 and 1 start_t = (start_t + 1) % 2 return X, Y if __name__ == '__main__': X, Y = get_data() # display the data plt.scatter(X[:,0], X[:,1], s=100, c=Y, alpha=0.5) plt.show() # get the accuracy model = KNN(3) model.fit(X, Y) print("Train accuracy:", model.score(X, Y)) ================================================ FILE: supervised_class/knn_vectorized.py ================================================ # https://deeplearningcourses.com/c/data-science-supervised-machine-learning-in-python # https://www.udemy.com/data-science-supervised-machine-learning-in-python # This is an example of a K-Nearest Neighbors classifier on MNIST data. # We try k=1...5 to show how we might choose the best k. from __future__ import print_function, division from future.utils import iteritems from builtins import range, input # Note: you may need to update your version of future # sudo pip install -U future import numpy as np import matplotlib.pyplot as plt from util import get_data from datetime import datetime from sklearn.metrics.pairwise import pairwise_distances class KNN(object): def __init__(self, k): self.k = k def fit(self, X, y): self.X = X self.y = y def predict(self, X): N = len(X) y = np.zeros(N) # returns distances in a matrix # of shape (N_test, N_train) distances = pairwise_distances(X, self.X) # now get the minimum k elements' indexes # https://stackoverflow.com/questions/16817948/i-have-need-the-n-minimum-index-values-in-a-numpy-array idx = distances.argsort(axis=1)[:, :self.k] # now determine the winning votes # each row of idx contains indexes from 0..Ntrain # corresponding to the indexes of the closest samples # from the training set # NOTE: if you don't "believe" this works, test it # in your console with simpler arrays votes = self.y[idx] # now y contains the classes in each row # e.g. # sample 0 --> [class0, class1, class1, class0, ...] # unfortunately there's no good way to vectorize this # https://stackoverflow.com/questions/19201972/can-numpy-bincount-work-with-2d-arrays for i in range(N): y[i] = np.bincount(votes[i]).argmax() return y def score(self, X, Y): P = self.predict(X) return np.mean(P == Y) if __name__ == '__main__': X, Y = get_data(2000) Ntrain = 1000 Xtrain, Ytrain = X[:Ntrain], Y[:Ntrain] Xtest, Ytest = X[Ntrain:], Y[Ntrain:] train_scores = [] test_scores = [] ks = (1,2,3,4,5) for k in ks: print("\nk =", k) knn = KNN(k) t0 = datetime.now() knn.fit(Xtrain, Ytrain) print("Training time:", (datetime.now() - t0)) t0 = datetime.now() train_score = knn.score(Xtrain, Ytrain) train_scores.append(train_score) print("Train accuracy:", train_score) print("Time to compute train accuracy:", (datetime.now() - t0), "Train size:", len(Ytrain)) t0 = datetime.now() test_score = knn.score(Xtest, Ytest) print("Test accuracy:", test_score) test_scores.append(test_score) print("Time to compute test accuracy:", (datetime.now() - t0), "Test size:", len(Ytest)) plt.plot(ks, train_scores, label='train scores') plt.plot(ks, test_scores, label='test scores') plt.legend() plt.show() ================================================ FILE: supervised_class/knn_xor.py ================================================ # https://deeplearningcourses.com/c/data-science-supervised-machine-learning-in-python # https://www.udemy.com/data-science-supervised-machine-learning-in-python from __future__ import print_function, division from builtins import range, input # Note: you may need to update your version of future # sudo pip install -U future from knn import KNN from util import get_xor import matplotlib.pyplot as plt if __name__ == '__main__': X, Y = get_xor() # display the data plt.scatter(X[:,0], X[:,1], s=100, c=Y, alpha=0.5) plt.show() # get the accuracy model = KNN(3) model.fit(X, Y) print("Accuracy:", model.score(X, Y)) ================================================ FILE: supervised_class/multinomialnb.py ================================================ # https://deeplearningcourses.com/c/data-science-supervised-machine-learning-in-python # https://www.udemy.com/data-science-supervised-machine-learning-in-python # This is an example of a Naive Bayes classifier on MNIST data. from __future__ import print_function, division from future.utils import iteritems from builtins import range, input # Note: you may need to update your version of future # sudo pip install -U future import numpy as np from util import get_data from datetime import datetime class MultinomialNB(object): def fit(self, X, Y, smoothing=1.0): # one-hot encode Y K = len(set(Y)) # number of classes N = len(Y) # number of samples labels = Y Y = np.zeros((N, K)) Y[np.arange(N), labels] = 1 # D x K matrix of feature counts # feature_counts[d,k] = count of feature d in class k feature_counts = X.T.dot(Y) + smoothing class_counts = Y.sum(axis=0) self.weights = np.log(feature_counts) - np.log(feature_counts.sum(axis=0)) self.priors = np.log(class_counts) - np.log(class_counts.sum()) def score(self, X, Y): P = self.predict(X) return np.mean(P == Y) def predict(self, X): P = X.dot(self.weights) + self.priors return np.argmax(P, axis=1) if __name__ == '__main__': X, Y = get_data(10000) Ntrain = len(Y) // 2 Xtrain, Ytrain = X[:Ntrain], Y[:Ntrain] Xtest, Ytest = X[Ntrain:], Y[Ntrain:] model = MultinomialNB() t0 = datetime.now() model.fit(Xtrain, Ytrain) print("Training time:", (datetime.now() - t0)) t0 = datetime.now() print("Train accuracy:", model.score(Xtrain, Ytrain)) print("Time to compute train accuracy:", (datetime.now() - t0), "Train size:", len(Ytrain)) t0 = datetime.now() print("Test accuracy:", model.score(Xtest, Ytest)) print("Time to compute test accuracy:", (datetime.now() - t0), "Test size:", len(Ytest)) ================================================ FILE: supervised_class/nb.py ================================================ # https://deeplearningcourses.com/c/data-science-supervised-machine-learning-in-python # https://www.udemy.com/data-science-supervised-machine-learning-in-python # This is an example of a Naive Bayes classifier on MNIST data. from __future__ import print_function, division from future.utils import iteritems from builtins import range, input # Note: you may need to update your version of future # sudo pip install -U future import numpy as np from util import get_data from datetime import datetime from scipy.stats import norm from scipy.stats import multivariate_normal as mvn class NaiveBayes(object): def fit(self, X, Y, smoothing=1e-2): self.gaussians = dict() self.priors = dict() labels = set(Y) for c in labels: current_x = X[Y == c] self.gaussians[c] = { 'mean': current_x.mean(axis=0), 'var': current_x.var(axis=0) + smoothing, } self.priors[c] = float(len(Y[Y == c])) / len(Y) def score(self, X, Y): P = self.predict(X) return np.mean(P == Y) def predict(self, X): N, D = X.shape K = len(self.gaussians) P = np.zeros((N, K)) for c, g in iteritems(self.gaussians): mean, var = g['mean'], g['var'] P[:,c] = mvn.logpdf(X, mean=mean, cov=var) + np.log(self.priors[c]) return np.argmax(P, axis=1) if __name__ == '__main__': X, Y = get_data(10000) Ntrain = len(Y) // 2 Xtrain, Ytrain = X[:Ntrain], Y[:Ntrain] Xtest, Ytest = X[Ntrain:], Y[Ntrain:] model = NaiveBayes() t0 = datetime.now() model.fit(Xtrain, Ytrain) print("Training time:", (datetime.now() - t0)) t0 = datetime.now() print("Train accuracy:", model.score(Xtrain, Ytrain)) print("Time to compute train accuracy:", (datetime.now() - t0), "Train size:", len(Ytrain)) t0 = datetime.now() print("Test accuracy:", model.score(Xtest, Ytest)) print("Time to compute test accuracy:", (datetime.now() - t0), "Test size:", len(Ytest)) ================================================ FILE: supervised_class/perceptron.py ================================================ # https://deeplearningcourses.com/c/data-science-supervised-machine-learning-in-python # https://www.udemy.com/data-science-supervised-machine-learning-in-python from __future__ import print_function, division from future.utils import iteritems from builtins import range, input # Note: you may need to update your version of future # sudo pip install -U future import numpy as np import matplotlib.pyplot as plt from util import get_data as get_mnist from datetime import datetime def get_data(): w = np.array([-0.5, 0.5]) b = 0.1 X = np.random.random((300, 2))*2 - 1 Y = np.sign(X.dot(w) + b) return X, Y def get_simple_xor(): X = np.array([[0, 0], [0, 1], [1, 0], [1, 1]]) Y = np.array([0, 1, 1, 0]) return X, Y class Perceptron: def fit(self, X, Y, learning_rate=1.0, epochs=1000): # solution # self.w = np.array([-0.5, 0.5]) # self.b = 0.1 # initialize random weights D = X.shape[1] self.w = np.random.randn(D) self.b = 0 N = len(Y) costs = [] for epoch in range(epochs): # determine which samples are misclassified, if any Yhat = self.predict(X) incorrect = np.nonzero(Y != Yhat)[0] if len(incorrect) == 0: # we are done! break # choose a random incorrect sample i = np.random.choice(incorrect) self.w += learning_rate*Y[i]*X[i] self.b += learning_rate*Y[i] # cost is incorrect rate c = len(incorrect) / float(N) costs.append(c) print("final w:", self.w, "final b:", self.b, "epochs:", (epoch+1), "/", epochs) plt.plot(costs) plt.show() def predict(self, X): return np.sign(X.dot(self.w) + self.b) def score(self, X, Y): P = self.predict(X) return np.mean(P == Y) if __name__ == '__main__': # linearly separable data X, Y = get_data() plt.scatter(X[:,0], X[:,1], c=Y, s=100, alpha=0.5) plt.show() Ntrain = len(Y) // 2 Xtrain, Ytrain = X[:Ntrain], Y[:Ntrain] Xtest, Ytest = X[Ntrain:], Y[Ntrain:] model = Perceptron() t0 = datetime.now() model.fit(Xtrain, Ytrain) print("Training time:", (datetime.now() - t0)) t0 = datetime.now() print("Train accuracy:", model.score(Xtrain, Ytrain)) print("Time to compute train accuracy:", (datetime.now() - t0), "Train size:", len(Ytrain)) t0 = datetime.now() print("Test accuracy:", model.score(Xtest, Ytest)) print("Time to compute test accuracy:", (datetime.now() - t0), "Test size:", len(Ytest)) # mnist X, Y = get_mnist() idx = np.logical_or(Y == 0, Y == 1) X = X[idx] Y = Y[idx] Y[Y == 0] = -1 model = Perceptron() t0 = datetime.now() model.fit(X, Y, learning_rate=1e-2) print("MNIST train accuracy:", model.score(X, Y)) # xor data print("") print("XOR results:") X, Y = get_simple_xor() Y[Y == 0] = -1 model.fit(X, Y) print("XOR accuracy:", model.score(X, Y)) ================================================ FILE: supervised_class/regression.py ================================================ # https://deeplearningcourses.com/c/data-science-supervised-machine-learning-in-python # https://www.udemy.com/data-science-supervised-machine-learning-in-python # Works with Python 2 and 3 import numpy as np import matplotlib.pyplot as plt from sklearn.neighbors import KNeighborsRegressor from sklearn.tree import DecisionTreeRegressor N = 200 X = np.linspace(0, 10, N).reshape(N, 1) Y = np.sin(X) Ntrain = 20 idx = np.random.choice(N, Ntrain) Xtrain = X[idx] Ytrain = Y[idx] knn = KNeighborsRegressor(n_neighbors=2, weights='distance') knn.fit(Xtrain, Ytrain) Yknn = knn.predict(X) dt = DecisionTreeRegressor() dt.fit(Xtrain, Ytrain) Ydt = dt.predict(X) plt.scatter(Xtrain, Ytrain) # show the training points plt.plot(X, Y) # show the original data plt.plot(X, Yknn, label='KNN') plt.plot(X, Ydt, label='Decision Tree') plt.legend() plt.show() ================================================ FILE: supervised_class/util.py ================================================ # https://deeplearningcourses.com/c/data-science-supervised-machine-learning-in-python # https://www.udemy.com/data-science-supervised-machine-learning-in-python from __future__ import print_function, division from builtins import range, input # Note: you may need to update your version of future # sudo pip install -U future import numpy as np import pandas as pd def get_data(limit=None): print("Reading in and transforming data...") df = pd.read_csv('../large_files/train.csv') data = df.values np.random.shuffle(data) X = data[:, 1:] / 255.0 # data is from 0..255 Y = data[:, 0] if limit is not None: X, Y = X[:limit], Y[:limit] return X, Y def get_xor(): X = np.zeros((200, 2)) X[:50] = np.random.random((50, 2)) / 2 + 0.5 # (0.5-1, 0.5-1) X[50:100] = np.random.random((50, 2)) / 2 # (0-0.5, 0-0.5) X[100:150] = np.random.random((50, 2)) / 2 + np.array([[0, 0.5]]) # (0-0.5, 0.5-1) X[150:] = np.random.random((50, 2)) / 2 + np.array([[0.5, 0]]) # (0.5-1, 0-0.5) Y = np.array([0]*100 + [1]*100) return X, Y def get_donut(): N = 200 R_inner = 5 R_outer = 10 # distance from origin is radius + random normal # angle theta is uniformly distributed between (0, 2pi) R1 = np.random.randn(N//2) + R_inner theta = 2*np.pi*np.random.random(N//2) X_inner = np.concatenate([[R1 * np.cos(theta)], [R1 * np.sin(theta)]]).T R2 = np.random.randn(N//2) + R_outer theta = 2*np.pi*np.random.random(N//2) X_outer = np.concatenate([[R2 * np.cos(theta)], [R2 * np.sin(theta)]]).T X = np.concatenate([ X_inner, X_outer ]) Y = np.array([0]*(N//2) + [1]*(N//2)) return X, Y ================================================ FILE: supervised_class2/adaboost.py ================================================ # https://deeplearningcourses.com/c/machine-learning-in-python-random-forest-adaboost # https://www.udemy.com/machine-learning-in-python-random-forest-adaboost from __future__ import print_function, division from builtins import range, input # Note: you may need to update your version of future # sudo pip install -U future import numpy as np import matplotlib.pyplot as plt from sklearn.tree import DecisionTreeClassifier from rf_classification import get_data class AdaBoost: def __init__(self, M): self.M = M def fit(self, X, Y): self.models = [] self.alphas = [] N, _ = X.shape W = np.ones(N) / N for m in range(self.M): tree = DecisionTreeClassifier(max_depth=1) tree.fit(X, Y, sample_weight=W) P = tree.predict(X) err = W.dot(P != Y) alpha = 0.5*(np.log(1 - err) - np.log(err)) W = W*np.exp(-alpha*Y*P) # vectorized form W = W / W.sum() # normalize so it sums to 1 self.models.append(tree) self.alphas.append(alpha) def predict(self, X): # NOT like SKLearn API # we want accuracy and exponential loss for plotting purposes N, _ = X.shape FX = np.zeros(N) for alpha, tree in zip(self.alphas, self.models): FX += alpha*tree.predict(X) return np.sign(FX), FX def score(self, X, Y): # NOT like SKLearn API # we want accuracy and exponential loss for plotting purposes P, FX = self.predict(X) L = np.exp(-Y*FX).mean() return np.mean(P == Y), L if __name__ == '__main__': X, Y = get_data() Y[Y == 0] = -1 # make the targets -1,+1 Ntrain = int(0.8*len(X)) Xtrain, Ytrain = X[:Ntrain], Y[:Ntrain] Xtest, Ytest = X[Ntrain:], Y[Ntrain:] T = 200 train_errors = np.empty(T) test_losses = np.empty(T) test_errors = np.empty(T) for num_trees in range(T): if num_trees == 0: train_errors[num_trees] = None test_errors[num_trees] = None test_losses[num_trees] = None continue if num_trees % 20 == 0: print(num_trees) model = AdaBoost(num_trees) model.fit(Xtrain, Ytrain) acc, loss = model.score(Xtest, Ytest) acc_train, _ = model.score(Xtrain, Ytrain) train_errors[num_trees] = 1 - acc_train test_errors[num_trees] = 1 - acc test_losses[num_trees] = loss if num_trees == T - 1: print("final train error:", 1 - acc_train) print("final test error:", 1 - acc) plt.plot(test_errors, label='test errors') plt.plot(test_losses, label='test losses') plt.legend() plt.show() plt.plot(train_errors, label='train errors') plt.plot(test_errors, label='test errors') plt.legend() plt.show() ================================================ FILE: supervised_class2/bagging_classification.py ================================================ # https://deeplearningcourses.com/c/machine-learning-in-python-random-forest-adaboost # https://www.udemy.com/machine-learning-in-python-random-forest-adaboost from __future__ import print_function, division from builtins import range, input # Note: you may need to update your version of future # sudo pip install -U future import numpy as np import matplotlib.pyplot as plt from sklearn.tree import DecisionTreeClassifier from sklearn.utils import shuffle from util import plot_decision_boundary np.random.seed(10) # create the data N = 500 D = 2 X = np.random.randn(N, D) # 2 gaussians # sep = 1.5 # X[:N/2] += np.array([sep, sep]) # X[N/2:] += np.array([-sep, -sep]) # Y = np.array([0]*(N/2) + [1]*(N/2)) # noisy XOR sep = 2 X[:125] += np.array([sep, sep]) X[125:250] += np.array([sep, -sep]) X[250:375] += np.array([-sep, -sep]) X[375:] += np.array([-sep, sep]) Y = np.array([0]*125 + [1]*125 + [0]*125 + [1]*125) # plot the data plt.scatter(X[:,0], X[:,1], s=100, c=Y, alpha=0.5) plt.show() # lone decision tree model = DecisionTreeClassifier() model.fit(X, Y) print("score for 1 tree:", model.score(X, Y)) # plot data with boundary plt.scatter(X[:,0], X[:,1], s=100, c=Y, alpha=0.5) plot_decision_boundary(X, model) plt.show() # create the bagged model class BaggedTreeClassifier: def __init__(self, B): self.B = B def fit(self, X, Y): N = len(X) self.models = [] for b in range(self.B): idx = np.random.choice(N, size=N, replace=True) Xb = X[idx] Yb = Y[idx] model = DecisionTreeClassifier(max_depth=2) model.fit(Xb, Yb) self.models.append(model) def predict(self, X): # no need to keep a dictionary since we are doing binary classification predictions = np.zeros(len(X)) for model in self.models: predictions += model.predict(X) return np.round(predictions / self.B) def score(self, X, Y): P = self.predict(X) return np.mean(Y == P) model = BaggedTreeClassifier(200) model.fit(X, Y) print("score for bagged model:", model.score(X, Y)) # plot data with boundary plt.scatter(X[:,0], X[:,1], s=100, c=Y, alpha=0.5) plot_decision_boundary(X, model) plt.show() ================================================ FILE: supervised_class2/bagging_regression.py ================================================ # https://deeplearningcourses.com/c/machine-learning-in-python-random-forest-adaboost # https://www.udemy.com/machine-learning-in-python-random-forest-adaboost from __future__ import print_function, division from builtins import range, input # Note: you may need to update your version of future # sudo pip install -U future import numpy as np import matplotlib.pyplot as plt from sklearn.tree import DecisionTreeRegressor from sklearn.utils import shuffle # create the data T = 100 x_axis = np.linspace(0, 2*np.pi, T) y_axis = np.sin(x_axis) # get the training data N = 30 idx = np.random.choice(T, size=N, replace=False) Xtrain = x_axis[idx].reshape(N, 1) Ytrain = y_axis[idx] # try a lone decision tree model = DecisionTreeRegressor() model.fit(Xtrain, Ytrain) prediction = model.predict(x_axis.reshape(T, 1)) print("score for 1 tree:", model.score(x_axis.reshape(T, 1), y_axis)) # plot the lone decision tree's predictions plt.plot(x_axis, prediction) plt.plot(x_axis, y_axis) plt.show() # now try bagging class BaggedTreeRegressor: def __init__(self, B): self.B = B def fit(self, X, Y): N = len(X) self.models = [] for b in range(self.B): idx = np.random.choice(N, size=N, replace=True) Xb = X[idx] Yb = Y[idx] model = DecisionTreeRegressor() model.fit(Xb, Yb) self.models.append(model) def predict(self, X): predictions = np.zeros(len(X)) for model in self.models: predictions += model.predict(X) return predictions / self.B def score(self, X, Y): d1 = Y - self.predict(X) d2 = Y - Y.mean() return 1 - d1.dot(d1) / d2.dot(d2) model = BaggedTreeRegressor(200) model.fit(Xtrain, Ytrain) print("score for bagged tree:", model.score(x_axis.reshape(T, 1), y_axis)) prediction = model.predict(x_axis.reshape(T, 1)) # plot the bagged regressor's predictions plt.plot(x_axis, prediction) plt.plot(x_axis, y_axis) plt.show() ================================================ FILE: supervised_class2/bias_variance_demo.py ================================================ # https://deeplearningcourses.com/c/machine-learning-in-python-random-forest-adaboost # https://www.udemy.com/machine-learning-in-python-random-forest-adaboost from __future__ import print_function, division from builtins import range, input # Note: you may need to update your version of future # sudo pip install -U future import numpy as np import matplotlib.pyplot as plt from sklearn.linear_model import LinearRegression from sklearn.metrics import mean_squared_error as mse NUM_DATASETS = 50 NOISE_VARIANCE = 0.5 MAX_POLY = 12 N = 25 Ntrain = int(0.9*N) np.random.seed(2) # make a dataset with x^D, x^(D-1), ..., x^0 def make_poly(x, D): N = len(x) X = np.empty((N, D+1)) for d in range(D+1): X[:,d] = x**d if d > 1: X[:,d] = (X[:,d] - X[:,d].mean()) / X[:,d].std() return X def f(X): return np.sin(X) x_axis = np.linspace(-np.pi, np.pi, 100) y_axis = f(x_axis) # plot the data # plt.plot(x_axis, y_axis) # plt.show() # f(x) = sin(x) from x = [-pi, +pi] X = np.linspace(-np.pi, np.pi, N) np.random.shuffle(X) f_X = f(X) # just need to do this once Xpoly = make_poly(X, MAX_POLY) # array to store all the scores train_scores = np.zeros((NUM_DATASETS, MAX_POLY)) test_scores = np.zeros((NUM_DATASETS, MAX_POLY)) # squared_biases = np.zeros((NUM_DATASETS, MAX_POLY)) # test_predictions = np.zeros((N - Ntrain, NUM_DATASETS, MAX_POLY)) train_predictions = np.zeros((Ntrain, NUM_DATASETS, MAX_POLY)) prediction_curves = np.zeros((100, NUM_DATASETS, MAX_POLY)) # create the model model = LinearRegression() for k in range(NUM_DATASETS): Y = f_X + np.random.randn(N)*NOISE_VARIANCE Xtrain = Xpoly[:Ntrain] Ytrain = Y[:Ntrain] Xtest = Xpoly[Ntrain:] Ytest = Y[Ntrain:] for d in range(MAX_POLY): model.fit(Xtrain[:,:d+2], Ytrain) predictions = model.predict(Xpoly[:,:d+2]) # debug x_axis_poly = make_poly(x_axis, d+1) prediction_axis = model.predict(x_axis_poly) # plt.plot(x_axis, prediction_axis) # plt.show() prediction_curves[:,k,d] = prediction_axis train_prediction = predictions[:Ntrain] test_prediction = predictions[Ntrain:] train_predictions[:,k,d] = train_prediction # use this to calculate bias/variance later train_score = mse(train_prediction, Ytrain) test_score = mse(test_prediction, Ytest) train_scores[k,d] = train_score test_scores[k,d] = test_score # show all prediction curves for each polynomial degree # along with the mean curve for d in range(MAX_POLY): for k in range(NUM_DATASETS): plt.plot(x_axis, prediction_curves[:,k,d], color='green', alpha=0.5) plt.plot(x_axis, prediction_curves[:,:,d].mean(axis=1), color='blue', linewidth=2.0) plt.title("All curves for degree = %d" % (d+1)) plt.show() # calculate the squared bias avg_train_prediction = np.zeros((Ntrain, MAX_POLY)) squared_bias = np.zeros(MAX_POLY) f_Xtrain = f_X[:Ntrain] for d in range(MAX_POLY): for i in range(Ntrain): avg_train_prediction[i,d] = train_predictions[i,:,d].mean() squared_bias[d] = ((avg_train_prediction[:,d] - f_Xtrain)**2).mean() # calculate the variance variances = np.zeros((Ntrain, MAX_POLY)) for d in range(MAX_POLY): for i in range(Ntrain): delta = train_predictions[i,:,d] - avg_train_prediction[i,d] variances[i,d] = delta.dot(delta) / len(delta) variance = variances.mean(axis=0) # make bias-variance plots degrees = np.arange(MAX_POLY) + 1 best_degree = np.argmin(test_scores.mean(axis=0)) + 1 plt.plot(degrees, squared_bias, label='squared bias') plt.plot(degrees, variance, label='variance') plt.plot(degrees, test_scores.mean(axis=0), label='test scores') plt.plot(degrees, squared_bias + variance, label='squared bias + variance') plt.axvline(x=best_degree, linestyle='--', label='best complexity') plt.legend() plt.show() # train score vs test score plt.plot(degrees, train_scores.mean(axis=0), label='train scores') plt.plot(degrees, test_scores.mean(axis=0), label='test scores') plt.axvline(x=best_degree, linestyle='--', label='best complexity') plt.legend() plt.show() ================================================ FILE: supervised_class2/bootstrap.py ================================================ # https://deeplearningcourses.com/c/machine-learning-in-python-random-forest-adaboost # https://www.udemy.com/machine-learning-in-python-random-forest-adaboost from __future__ import print_function, division from builtins import range, input # Note: you may need to update your version of future # sudo pip install -U future import numpy as np import matplotlib.pyplot as plt from scipy.stats import norm, t B = 200 N = 20 X = np.random.randn(N) print("sample mean of X:", X.mean()) individual_estimates = np.empty(B) for b in range(B): sample = np.random.choice(X, size=N) individual_estimates[b] = sample.mean() bmean = individual_estimates.mean() bstd = individual_estimates.std() lower = bmean + norm.ppf(0.025)*bstd # norm.ppf(0.025) == -1.96 upper = bmean + norm.ppf(0.975)*bstd # norm.ppf(0.975) == +1.96 # traditional way of calculating CI lower2 = X.mean() + norm.ppf(0.025)*X.std()/np.sqrt(N) upper2 = X.mean() + norm.ppf(0.975)*X.std()/np.sqrt(N) print("bootstrap mean of X:", bmean) plt.hist(individual_estimates, bins=20) plt.axvline(x=lower, linestyle='--', color='g', label="lower bound for 95%% CI (bootstrap)") plt.axvline(x=upper, linestyle='--', color='g', label="upper bound for 95%% CI (bootstrap)") plt.axvline(x=lower2, linestyle='--', color='r', label="lower bound for 95%% CI") plt.axvline(x=upper2, linestyle='--', color='r', label="upper bound for 95%% CI") plt.legend() plt.show() ================================================ FILE: supervised_class2/extra_reading.txt ================================================ RANDOM FORESTS https://www.stat.berkeley.edu/~breiman/randomforest2001.pdf A Short Introduction to Boosting https://cseweb.ucsd.edu/~yfreund/papers/IntroToBoosting.pdf Explaining AdaBoost http://rob.schapire.net/papers/explaining-adaboost.pdf Improved Boosting Algorithms Using Confidence-rated Predictions https://sci2s.ugr.es/keel/pdf/algorithm/articulo/1999-ML-Improved%20boosting%20algorithms%20using%20confidence-rated%20predictions%20(Schapire%20y%20Singer).pdf Why does the bootstrap work? http://www.stat.cmu.edu/~larry/=sml/Boot.pdf ================================================ FILE: supervised_class2/knn_dt_demo.py ================================================ # https://deeplearningcourses.com/c/machine-learning-in-python-random-forest-adaboost # https://www.udemy.com/machine-learning-in-python-random-forest-adaboost from __future__ import print_function, division from builtins import range, input # Note: you may need to update your version of future # sudo pip install -U future import numpy as np import matplotlib.pyplot as plt from sklearn.tree import DecisionTreeRegressor, DecisionTreeClassifier from sklearn.neighbors import KNeighborsRegressor, KNeighborsClassifier from sklearn.utils import shuffle N = 20 Ntrain = 12 # create the data X = np.linspace(0, 2*np.pi, N).reshape(N, 1) Y = np.sin(3*X) X, Y = shuffle(X, Y) Xtrain = X[:Ntrain] Ytrain = Y[:Ntrain] # decision tree - low bias, high variance model = DecisionTreeRegressor() # default max_depth=None model.fit(Xtrain, Ytrain) T = 50 Xaxis = np.linspace(0, 2*np.pi, T) Yaxis = np.sin(3*Xaxis) plt.scatter(Xtrain, Ytrain, s=50, alpha=0.7, c='blue') plt.scatter(Xtrain, model.predict(Xtrain.reshape(Ntrain, 1)), s=50, alpha=0.7, c='green') plt.title("decision tree - low bias, high variance") # plt.show() # plt.scatter(X, Y) # plt.scatter(X, model.predict(X.reshape(N, 1))) # plt.show() plt.plot(Xaxis, Yaxis) plt.plot(Xaxis, model.predict(Xaxis.reshape(T, 1))) plt.show() # decision tree - high bias, low variance model = DecisionTreeRegressor(max_depth=1) model.fit(Xtrain, Ytrain) plt.scatter(Xtrain, Ytrain, s=50, alpha=0.7, c='blue') plt.scatter(Xtrain, model.predict(Xtrain.reshape(Ntrain, 1)), s=50, alpha=0.7, c='green') plt.plot(Xaxis, Yaxis) plt.plot(Xaxis, model.predict(Xaxis.reshape(T, 1))) plt.title("decision tree - high bias, low variance") plt.show() # knn - low bias, high variance model = KNeighborsRegressor(n_neighbors=1) model.fit(Xtrain, Ytrain) plt.scatter(Xtrain, Ytrain, s=50, alpha=0.7, c='blue') plt.scatter(Xtrain, model.predict(Xtrain.reshape(Ntrain, 1)), s=50, alpha=0.7, c='green') plt.plot(Xaxis, Yaxis) plt.plot(Xaxis, model.predict(Xaxis.reshape(T, 1))) plt.title("knn - low bias, high variance") plt.show() # knn - high bias, low variance model = KNeighborsRegressor(n_neighbors=10) model.fit(Xtrain, Ytrain) plt.scatter(Xtrain, Ytrain, s=50, alpha=0.7, c='blue') plt.scatter(Xtrain, model.predict(Xtrain.reshape(Ntrain, 1)), s=50, alpha=0.7, c='green') plt.plot(Xaxis, Yaxis) plt.plot(Xaxis, model.predict(Xaxis.reshape(T, 1))) plt.title("knn - high bias, low variance") plt.show() # classification # generate the data N = 100 D = 2 X = np.random.randn(N, D) X[:N//2] += np.array([1, 1]) # center it at (1,1) X[N//2:] += np.array([-1, -1]) # center it at (-1, -1) Y = np.array([0]*(N//2) + [1]*(N//2)) def plot_decision_boundary(X, model): h = .02 # step size in the mesh # create a mesh to plot in x_min, x_max = X[:, 0].min() - 1, X[:, 0].max() + 1 y_min, y_max = X[:, 1].min() - 1, X[:, 1].max() + 1 xx, yy = np.meshgrid(np.arange(x_min, x_max, h), np.arange(y_min, y_max, h)) # Plot the decision boundary. For that, we will assign a color to each # point in the mesh [x_min, m_max]x[y_min, y_max]. Z = model.predict(np.c_[xx.ravel(), yy.ravel()]) # Put the result into a color plot Z = Z.reshape(xx.shape) plt.contour(xx, yy, Z, cmap=plt.cm.Paired) # look at the data plt.scatter(X[:,0], X[:,1], s=50, c=Y, alpha=0.7) plt.show() # dt - low bias, high variance model = DecisionTreeClassifier() model.fit(X, Y) plt.scatter(X[:,0], X[:,1], s=50, c=Y, alpha=0.7) plot_decision_boundary(X, model) plt.title("dt - low bias, high variance") plt.show() # dt - high bias, low variance model = DecisionTreeClassifier(max_depth=2) model.fit(X, Y) plt.scatter(X[:,0], X[:,1], s=50, c=Y, alpha=0.7) plot_decision_boundary(X, model) plt.title("dt - high bias, low variance") plt.show() # knn - low bias, high variance model = KNeighborsClassifier(n_neighbors=1) model.fit(X, Y) plt.scatter(X[:,0], X[:,1], s=50, c=Y, alpha=0.7) plot_decision_boundary(X, model) plt.title("knn - low bias, high variance") plt.show() # knn - high bias, low variance model = KNeighborsClassifier(n_neighbors=20) model.fit(X, Y) plt.scatter(X[:,0], X[:,1], s=50, c=Y, alpha=0.7) plot_decision_boundary(X, model) plt.title("knn - high bias, low variance") plt.show() ================================================ FILE: supervised_class2/rf_classification.py ================================================ # https://deeplearningcourses.com/c/machine-learning-in-python-random-forest-adaboost # https://www.udemy.com/machine-learning-in-python-random-forest-adaboost # mushroom data from: # https://archive.ics.uci.edu/ml/datasets/Mushroom # put all files in the folder ../large_files/ from __future__ import print_function, division from future.utils import iteritems from builtins import range, input # Note: you may need to update your version of future # sudo pip install -U future import numpy as np import pandas as pd import matplotlib.pyplot as plt from sklearn.preprocessing import LabelEncoder, StandardScaler from sklearn.tree import DecisionTreeClassifier from sklearn.ensemble import RandomForestClassifier from sklearn.linear_model import LogisticRegression from sklearn.model_selection import cross_val_score NUMERICAL_COLS = () CATEGORICAL_COLS = np.arange(22) + 1 # 1..22 inclusive # transforms data from dataframe to numerical matrix # one-hot encodes categories and normalizes numerical columns # we want to use the scales found in training when transforming the test set # so only call fit() once # call transform() for any subsequent data class DataTransformer: def fit(self, df): self.labelEncoders = {} self.scalers = {} for col in NUMERICAL_COLS: scaler = StandardScaler() scaler.fit(df[col].reshape(-1, 1)) self.scalers[col] = scaler for col in CATEGORICAL_COLS: encoder = LabelEncoder() # in case the train set does not have 'missing' value but test set does values = df[col].tolist() values.append('missing') encoder.fit(values) self.labelEncoders[col] = encoder # find dimensionality self.D = len(NUMERICAL_COLS) for col, encoder in iteritems(self.labelEncoders): self.D += len(encoder.classes_) print("dimensionality:", self.D) def transform(self, df): N, _ = df.shape X = np.zeros((N, self.D)) i = 0 for col, scaler in iteritems(self.scalers): X[:,i] = scaler.transform(df[col].values.reshape(-1, 1)).flatten() i += 1 for col, encoder in iteritems(self.labelEncoders): # print "transforming col:", col K = len(encoder.classes_) X[np.arange(N), encoder.transform(df[col]) + i] = 1 i += K return X def fit_transform(self, df): self.fit(df) return self.transform(df) def replace_missing(df): # standard method of replacement for numerical columns is median for col in NUMERICAL_COLS: if np.any(df[col].isnull()): med = np.median(df[ col ][ df[col].notnull() ]) df.loc[ df[col].isnull(), col ] = med # set a special value = 'missing' for col in CATEGORICAL_COLS: if np.any(df[col].isnull()): print(col) df.loc[ df[col].isnull(), col ] = 'missing' def get_data(): df = pd.read_csv('../large_files/mushroom.data', header=None) # replace label column: e/p --> 0/1 # e = edible = 0, p = poisonous = 1 df[0] = df.apply(lambda row: 0 if row[0] == 'e' else 1, axis=1) # check if there is missing data replace_missing(df) # transform the data transformer = DataTransformer() X = transformer.fit_transform(df) Y = df[0].values return X, Y if __name__ == '__main__': X, Y = get_data() # do a quick baseline test baseline = LogisticRegression() print("CV baseline:", cross_val_score(baseline, X, Y, cv=8).mean()) # single tree tree = DecisionTreeClassifier() print("CV one tree:", cross_val_score(tree, X, Y, cv=8).mean()) model = RandomForestClassifier(n_estimators=20) # try 10, 20, 50, 100, 200 print("CV forest:", cross_val_score(model, X, Y, cv=8).mean()) ================================================ FILE: supervised_class2/rf_regression.py ================================================ # https://deeplearningcourses.com/c/machine-learning-in-python-random-forest-adaboost # https://www.udemy.com/machine-learning-in-python-random-forest-adaboost # uses house dataset from https://archive.ics.uci.edu/ml/machine-learning-databases/housing/ # Alternate data source: https://archive.org/download/housing_202405/housing.data # put all files in the folder ../large_files from __future__ import print_function, division from future.utils import iteritems from builtins import range, input # Note: you may need to update your version of future # sudo pip install -U future import numpy as np import pandas as pd import matplotlib.pyplot as plt from sklearn.preprocessing import LabelEncoder, StandardScaler from sklearn.ensemble import RandomForestRegressor from sklearn.linear_model import LinearRegression from sklearn.tree import DecisionTreeRegressor from sklearn.model_selection import cross_val_score NUMERICAL_COLS = [ 'crim', # numerical 'zn', # numerical 'nonretail', # numerical 'nox', # numerical 'rooms', # numerical 'age', # numerical 'dis', # numerical 'rad', # numerical 'tax', # numerical 'ptratio', # numerical 'b', # numerical 'lstat', # numerical ] NO_TRANSFORM = ['river'] # transforms data from dataframe to numerical matrix # we want to use the scales found in training when transforming the test set # so only call fit() once # call transform() for any subsequent data class DataTransformer: def fit(self, df): self.scalers = {} for col in NUMERICAL_COLS: scaler = StandardScaler() scaler.fit(df[col].values.reshape(-1, 1)) self.scalers[col] = scaler def transform(self, df): N, _ = df.shape D = len(NUMERICAL_COLS) + len(NO_TRANSFORM) X = np.zeros((N, D)) i = 0 for col, scaler in iteritems(self.scalers): X[:,i] = scaler.transform(df[col].values.reshape(-1, 1)).flatten() i += 1 for col in NO_TRANSFORM: X[:,i] = df[col] i += 1 return X def fit_transform(self, df): self.fit(df) return self.transform(df) def get_data(): df = pd.read_csv('housing.data', header=None, delim_whitespace=True) df.columns = [ 'crim', # numerical 'zn', # numerical 'nonretail', # numerical 'river', # binary 'nox', # numerical 'rooms', # numerical 'age', # numerical 'dis', # numerical 'rad', # numerical 'tax', # numerical 'ptratio', # numerical 'b', # numerical 'lstat', # numerical 'medv', # numerical -- this is the target ] # transform the data transformer = DataTransformer() # shuffle the data N = len(df) train_idx = np.random.choice(N, size=int(0.7*N), replace=False) test_idx = [i for i in range(N) if i not in train_idx] df_train = df.loc[train_idx] df_test = df.loc[test_idx] Xtrain = transformer.fit_transform(df_train) Ytrain = np.log(df_train['medv'].values) Xtest = transformer.transform(df_test) Ytest = np.log(df_test['medv'].values) return Xtrain, Ytrain, Xtest, Ytest if __name__ == '__main__': Xtrain, Ytrain, Xtest, Ytest = get_data() model = RandomForestRegressor(n_estimators=100) # try 10, 20, 50, 100, 200 model.fit(Xtrain, Ytrain) predictions = model.predict(Xtest) # plot predictions vs targets plt.scatter(Ytest, predictions) plt.xlabel("target") plt.ylabel("prediction") ymin = np.round( min( min(Ytest), min(predictions) ) ) ymax = np.ceil( max( max(Ytest), max(predictions) ) ) print("ymin:", ymin, "ymax:", ymax) r = range(int(ymin), int(ymax) + 1) plt.plot(r, r) plt.show() plt.plot(Ytest, label='targets') plt.plot(predictions, label='predictions') plt.legend() plt.show() # do a quick baseline test baseline = LinearRegression() single_tree = DecisionTreeRegressor() print("CV single tree:", cross_val_score(single_tree, Xtrain, Ytrain, cv=5).mean()) print("CV baseline:", cross_val_score(baseline, Xtrain, Ytrain, cv=5).mean()) print("CV forest:", cross_val_score(model, Xtrain, Ytrain, cv=5).mean()) # test score single_tree.fit(Xtrain, Ytrain) baseline.fit(Xtrain, Ytrain) print("test score single tree:", single_tree.score(Xtest, Ytest)) print("test score baseline:", baseline.score(Xtest, Ytest)) print("test score forest:", model.score(Xtest, Ytest)) ================================================ FILE: supervised_class2/rf_vs_bag.py ================================================ # https://deeplearningcourses.com/c/machine-learning-in-python-random-forest-adaboost # https://www.udemy.com/machine-learning-in-python-random-forest-adaboost from __future__ import print_function, division from builtins import range, input # Note: you may need to update your version of future # sudo pip install -U future import numpy as np import pandas as pd import matplotlib.pyplot as plt from sklearn.ensemble import RandomForestRegressor, BaggingRegressor, RandomForestClassifier, BaggingClassifier from util import BaggedTreeRegressor, BaggedTreeClassifier # make simple regression data N = 15 D = 100 X = (np.random.random((N, D)) - 0.5)*10 Y = X.sum(axis=1)**2 + 0.5*np.random.randn(N) Ntrain = N//2 Xtrain = X[:Ntrain] Ytrain = Y[:Ntrain] Xtest = X[Ntrain:] Ytest = Y[Ntrain:] # from rf_classification import get_data # X, Y = get_data() # Ntrain = int(0.8*len(X)) # Xtrain, Ytrain = X[:Ntrain], Y[:Ntrain] # Xtest, Ytest = X[Ntrain:], Y[Ntrain:] # from rf_regression import get_data # Xtrain, Ytrain, Xtest, Ytest = get_data() T = 300 test_error_rf = np.empty(T) test_error_bag = np.empty(T) for num_trees in range(T): if num_trees == 0: test_error_rf[num_trees] = None test_error_bag[num_trees] = None else: rf = RandomForestRegressor(n_estimators=num_trees) # rf = RandomForestClassifier(n_estimators=num_trees) rf.fit(Xtrain, Ytrain) test_error_rf[num_trees] = rf.score(Xtest, Ytest) bg = BaggedTreeRegressor(n_estimators=num_trees) # bg = BaggedTreeClassifier(n_estimators=num_trees) bg.fit(Xtrain, Ytrain) test_error_bag[num_trees] = bg.score(Xtest, Ytest) if num_trees % 10 == 0: print("num_trees:", num_trees) plt.plot(test_error_rf, label='rf') plt.plot(test_error_bag, label='bag') plt.legend() plt.show() ================================================ FILE: supervised_class2/rf_vs_bag2.py ================================================ # https://deeplearningcourses.com/c/machine-learning-in-python-random-forest-adaboost # https://www.udemy.com/machine-learning-in-python-random-forest-adaboost from __future__ import print_function, division from builtins import range, input # Note: you may need to update your version of future # sudo pip install -U future import numpy as np import pandas as pd import matplotlib.pyplot as plt from sklearn.tree import DecisionTreeClassifier from sklearn.ensemble import RandomForestRegressor, BaggingRegressor, RandomForestClassifier, BaggingClassifier from util import BaggedTreeRegressor, BaggedTreeClassifier # make simple regression data # N = 15 # D = 100 # X = (np.random.random((N, D)) - 0.5)*10 # Y = X.sum(axis=1)**2 + 0.5*np.random.randn(N) # Ntrain = N/2 # Xtrain = X[:Ntrain] # Ytrain = Y[:Ntrain] # Xtest = X[Ntrain:] # Ytest = Y[Ntrain:] from rf_classification import get_data X, Y = get_data() Ntrain = int(0.8*len(X)) Xtrain, Ytrain = X[:Ntrain], Y[:Ntrain] Xtest, Ytest = X[Ntrain:], Y[Ntrain:] # from rf_regression import get_data # Xtrain, Ytrain, Xtest, Ytest = get_data() class NotAsRandomForest: def __init__(self, n_estimators): self.B = n_estimators def fit(self, X, Y, M=None): N, D = X.shape if M is None: M = int(np.sqrt(D)) self.models = [] self.features = [] for b in range(self.B): tree = DecisionTreeClassifier() # sample features features = np.random.choice(D, size=M, replace=False) # sample training samples idx = np.random.choice(N, size=N, replace=True) Xb = X[idx] Yb = Y[idx] tree.fit(Xb[:, features], Yb) self.features.append(features) self.models.append(tree) def predict(self, X): N = len(X) P = np.zeros(N) for features, tree in zip(self.features, self.models): P += tree.predict(X[:, features]) return np.round(P / self.B) def score(self, X, Y): P = self.predict(X) return np.mean(P == Y) T = 500 test_error_prf = np.empty(T) test_error_rf = np.empty(T) test_error_bag = np.empty(T) for num_trees in range(T): if num_trees == 0: test_error_prf[num_trees] = None test_error_rf[num_trees] = None test_error_bag[num_trees] = None else: rf = RandomForestClassifier(n_estimators=num_trees) rf.fit(Xtrain, Ytrain) test_error_rf[num_trees] = rf.score(Xtest, Ytest) bg = BaggedTreeClassifier(n_estimators=num_trees) bg.fit(Xtrain, Ytrain) test_error_bag[num_trees] = bg.score(Xtest, Ytest) prf = NotAsRandomForest(n_estimators=num_trees) prf.fit(Xtrain, Ytrain) test_error_prf[num_trees] = prf.score(Xtest, Ytest) if num_trees % 10 == 0: print("num_trees:", num_trees) plt.plot(test_error_rf, label='rf') plt.plot(test_error_prf, label='pseudo rf') plt.plot(test_error_bag, label='bag') plt.legend() plt.show() ================================================ FILE: supervised_class2/util.py ================================================ # https://deeplearningcourses.com/c/machine-learning-in-python-random-forest-adaboost # https://www.udemy.com/machine-learning-in-python-random-forest-adaboost from __future__ import print_function, division from builtins import range, input # Note: you may need to update your version of future # sudo pip install -U future import numpy as np import matplotlib.pyplot as plt from sklearn.tree import DecisionTreeClassifier, DecisionTreeRegressor def plot_decision_boundary(X, model): h = .02 # step size in the mesh # create a mesh to plot in x_min, x_max = X[:, 0].min() - 1, X[:, 0].max() + 1 y_min, y_max = X[:, 1].min() - 1, X[:, 1].max() + 1 xx, yy = np.meshgrid(np.arange(x_min, x_max, h), np.arange(y_min, y_max, h)) # Plot the decision boundary. For that, we will assign a color to each # point in the mesh [x_min, m_max]x[y_min, y_max]. Z = model.predict(np.c_[xx.ravel(), yy.ravel()]) # Put the result into a color plot Z = Z.reshape(xx.shape) plt.contour(xx, yy, Z, cmap=plt.cm.Paired) class BaggedTreeRegressor: def __init__(self, n_estimators, max_depth=None): self.B = n_estimators self.max_depth = max_depth def fit(self, X, Y): N = len(X) self.models = [] for b in range(self.B): idx = np.random.choice(N, size=N, replace=True) Xb = X[idx] Yb = Y[idx] model = DecisionTreeRegressor(max_depth=self.max_depth) model.fit(Xb, Yb) self.models.append(model) def predict(self, X): predictions = np.zeros(len(X)) for model in self.models: predictions += model.predict(X) return predictions / self.B def score(self, X, Y): d1 = Y - self.predict(X) d2 = Y - Y.mean() return 1 - d1.dot(d1) / d2.dot(d2) class BaggedTreeClassifier: def __init__(self, n_estimators, max_depth=None): self.B = n_estimators self.max_depth = max_depth def fit(self, X, Y): N = len(X) self.models = [] for b in range(self.B): idx = np.random.choice(N, size=N, replace=True) Xb = X[idx] Yb = Y[idx] model = DecisionTreeClassifier(max_depth=self.max_depth) model.fit(Xb, Yb) self.models.append(model) def predict(self, X): # no need to keep a dictionary since we are doing binary classification predictions = np.zeros(len(X)) for model in self.models: predictions += model.predict(X) return np.round(predictions / self.B) def score(self, X, Y): P = self.predict(X) return np.mean(Y == P) ================================================ FILE: svm_class/crossval.py ================================================ # https://deeplearningcourses.com/c/support-vector-machines-in-python # https://www.udemy.com/support-vector-machines-in-python from __future__ import print_function, division from builtins import range # Note: you may need to update your version of future # sudo pip install -U future import matplotlib.pyplot as plt import numpy as np import pandas as pd from datetime import datetime from sklearn.model_selection import cross_val_score from sklearn.pipeline import Pipeline from sklearn.preprocessing import StandardScaler from sklearn.datasets import load_breast_cancer from sklearn.svm import SVC # load the data data = load_breast_cancer() for C in (0.5, 1.0, 5.0, 10.0): pipeline = Pipeline([('scaler', StandardScaler()), ('svm', SVC(C=C))]) scores = cross_val_score(pipeline, data.data, data.target, cv=5) print("C:", C, "mean:", scores.mean(), "std:", scores.std()) ================================================ FILE: svm_class/extra_reading.txt ================================================ Pattern Recognition and Machine Learning https://amzn.to/2DeexU0 Learning with Kernels: Support Vector Machines, Regularization, Optimization, and Beyond https://amzn.to/2FdyP2s Convex Optimization http://stanford.edu/~boyd/cvxbook/bv_cvxbook.pdf A Tutorial on Support Vector Machines for Pattern Recognition https://www.microsoft.com/en-us/research/wp-content/uploads/2016/02/svmtutorial.pdf Sequential Minimal Optimization: A Fast Algorithm for Training Support Vector Machines https://www.microsoft.com/en-us/research/wp-content/uploads/2016/02/tr-98-14.pdf Fast Training of Support Vector Machines using Sequential Minimal Optimization https://www.microsoft.com/en-us/research/wp-content/uploads/2016/02/smo-book.pdf Convex Analysis https://press.princeton.edu/titles/1815.html Generalized Lagrange multiplier method for solving problems of optimum allocation of resources https://web.archive.org/web/20110724151508/http://or.journal.informs.org/cgi/reprint/11/3/399 Duality in Linear Programming http://www.civilized.com/files/duality.pdf Linear programming https://en.wikipedia.org/wiki/Linear_programming#Duality Karush–Kuhn–Tucker conditions https://en.wikipedia.org/wiki/Karush–Kuhn–Tucker_conditions A Study on Sigmoid Kernels for SVM and the Training of non-PSD Kernels by SMO-type Methods https://www.researchgate.net/publication/2478380_A_Study_on_Sigmoid_Kernels_for_SVM_and_the_Training_of_non-PSD_Kernels_by_SMO-type_Methods Text Classification using String Kernels http://www.jmlr.org/papers/volume2/lodhi02a/lodhi02a.pdf A Comparison of Methods for Multi-class Support Vector Machines https://www.csie.ntu.edu.tw/~cjlin/papers/multisvm.pdf A Tutorial on Support Vector Regression https://alex.smola.org/papers/2003/SmoSch03b.pdf LIBSVM -- A Library for Support Vector Machines https://www.csie.ntu.edu.tw/~cjlin/libsvm/ Random Features for Large-Scale Kernel Machines http://www.robots.ox.ac.uk/~vgg/rg/papers/randomfeatures.pdf Reflections on Random Kitchen Sinks http://www.argmin.net/2017/12/05/kitchen-sinks/ Weighted Sums of Random Kitchen Sinks: Replacing minimization with randomization in learning https://papers.nips.cc/paper/3495-weighted-sums-of-random-kitchen-sinks-replacing-minimization-with-randomization-in-learning Using the Nyström Method to Speed Up Kernel Machines https://papers.nips.cc/paper/1866-using-the-nystrom-method-to-speed-up-kernel-machines Nyström Method vs Random Fourier Features: A Theoretical and Empirical Comparison https://papers.nips.cc/paper/4588-nystrom-method-vs-random-fourier-features-a-theoretical-and-empirical-comparison This guy generated some nice plots and code to demonstrate that RBFSampler works like a real RBF Kernel https://www.kaggle.com/sy2002/rbfsampler-actually-is-not-using-any-rbfs ================================================ FILE: svm_class/fake_neural_net.py ================================================ # https://deeplearningcourses.com/c/support-vector-machines-in-python # https://www.udemy.com/support-vector-machines-in-python from __future__ import print_function, division from builtins import range # Note: you may need to update your version of future # sudo pip install -U future import numpy as np from sklearn.svm import SVC from util import getKaggleMNIST from datetime import datetime from sklearn.pipeline import Pipeline from sklearn.linear_model import SGDClassifier from sklearn.svm import LinearSVC from sklearn.preprocessing import StandardScaler from sklearn.cluster import KMeans from sklearn.mixture import GaussianMixture from sklearn.model_selection import cross_val_score from sklearn.utils import shuffle from scipy import stats from sklearn.linear_model import LogisticRegression class SigmoidFeaturizer: def __init__(self, gamma=1.0, n_components=100, method='random'): self.M = n_components self.gamma = gamma assert(method in ('normal', 'random', 'kmeans', 'gmm')) self.method = method def _subsample_data(self, X, Y, n=10000): if Y is not None: X, Y = shuffle(X, Y) return X[:n], Y[:n] else: X = shuffle(X) return X[:n] def fit(self, X, Y=None): if self.method == 'random': N = len(X) idx = np.random.randint(N, size=self.M) self.samples = X[idx] elif self.method == 'normal': # just sample from N(0,1) D = X.shape[1] self.samples = np.random.randn(self.M, D) / np.sqrt(D) elif self.method == 'kmeans': X, Y = self._subsample_data(X, Y) print("Fitting kmeans...") t0 = datetime.now() kmeans = KMeans(n_clusters=len(set(Y))) kmeans.fit(X) print("Finished fitting kmeans, duration:", datetime.now() - t0) # calculate the most ambiguous points # we will do this by finding the distance between each point # and all cluster centers # and return which points have the smallest variance dists = kmeans.transform(X) # returns an N x K matrix variances = dists.var(axis=1) idx = np.argsort(variances) # smallest to largest idx = idx[:self.M] self.samples = X[idx] elif self.method == 'gmm': X, Y = self._subsample_data(X, Y) print("Fitting GMM") t0 = datetime.now() gmm = GaussianMixture( n_components=len(set(Y)), covariance_type='spherical', reg_covar=1e-6) gmm.fit(X) print("Finished fitting GMM, duration:", datetime.now() - t0) # calculate the most ambiguous points probs = gmm.predict_proba(X) ent = stats.entropy(probs.T) # N-length vector of entropies idx = np.argsort(-ent) # negate since we want biggest first idx = idx[:self.M] self.samples = X[idx] return self def transform(self, X): Z = X.dot(self.samples.T) # (Ntest x D) x (D x Nsamples) -> (Ntest x Nsamples) return np.tanh(self.gamma * Z) # return self.gamma * Z * (Z > 0) def fit_transform(self, X, Y=None): return self.fit(X, Y).transform(X) # get the data: https://www.kaggle.com/c/digit-recognizer Xtrain, Ytrain, Xtest, Ytest = getKaggleMNIST() # with SGD pipeline = Pipeline([ ('scaler', StandardScaler()), ('sigmoid', SigmoidFeaturizer(gamma=0.05, n_components=2000, method='normal')), # ('linear', SGDClassifier(max_iter=1e6, tol=1e-5)) ('linear', LogisticRegression()) # takes longer ]) # with Linear SVC # n_components = 3000 # pipeline = Pipeline([ # ('scaler', StandardScaler()), # ('sigmoid', SigmoidFeaturizer(n_components=n_components)), # ('linear', LinearSVC()) # ]) # let's do some cross-validation instead, why not X = np.vstack((Xtrain, Xtest)) Y = np.concatenate((Ytrain, Ytest)) scores = cross_val_score(pipeline, X, Y, cv=5) print(scores) print("avg:", np.mean(scores)) # t0 = datetime.now() # pipeline.fit(Xtrain, Ytrain) # print("train duration:", datetime.now() - t0) # t0 = datetime.now() # print("train score:", pipeline.score(Xtrain, Ytrain), "duration:", datetime.now() - t0) # t0 = datetime.now() # print("test score:", pipeline.score(Xtest, Ytest), "duration:", datetime.now() - t0) ================================================ FILE: svm_class/kernel_svm_gradient_primal.py ================================================ from __future__ import print_function, division from future.utils import iteritems from builtins import range, input # Note: you may need to update your version of future # sudo pip install -U future from sklearn.model_selection import train_test_split from sklearn.datasets import load_breast_cancer from sklearn.preprocessing import StandardScaler from datetime import datetime from util import get_spiral, get_xor, get_donut, get_clouds import numpy as np import matplotlib.pyplot as plt # kernels def linear(X1, X2, c=0): return X1.dot(X2.T) + c def rbf(X1, X2, gamma=None): if gamma is None: gamma = 1.0 / X1.shape[-1] # 1 / D # gamma = 0.05 # gamma = 5. # for donut and spiral if np.ndim(X1) == 1 and np.ndim(X2) == 1: result = np.exp(-gamma * np.linalg.norm(X1 - X2)**2) elif (np.ndim(X1) > 1 and np.ndim(X2) == 1) or (np.ndim(X1) == 1 and np.ndim(X2) > 1): result = np.exp(-gamma * np.linalg.norm(X1 - X2, axis=1)**2) elif np.ndim(X1) > 1 and np.ndim(X2) > 1: result = np.exp(-gamma * np.linalg.norm(X1[:, np.newaxis] - X2[np.newaxis, :], axis=2)**2) return result def sigmoid(X1, X2, gamma=0.05, c=1): return np.tanh(gamma * X1.dot(X2.T) + c) class KernelSVM: def __init__(self, kernel=linear, C=1.0): self.C = C self.kernel = kernel def _objective(self, margins): return 0.5 * self.u.dot(self.K.dot(self.u)) + \ self.C * np.maximum(0, 1 - margins).sum() def fit(self, X, Y, lr=1e-5, n_iters=400): N, D = X.shape self.N = N self.u = np.random.randn(N) self.b = 0 # setup kernel matrix self.X = X self.Y = Y self.K = self.kernel(X, X) # gradient descent losses = [] for _ in range(n_iters): margins = Y * (self.u.dot(self.K) + self.b) loss = self._objective(margins) losses.append(loss) idx = np.where(margins < 1)[0] grad_u = self.K.dot(self.u) - self.C * Y[idx].dot(self.K[idx]) self.u -= lr * grad_u grad_b = -self.C * Y[idx].sum() self.b -= lr * grad_b self.support_ = np.where((Y * (self.u.dot(self.K) + self.b)) <= 1)[0] print("num SVs:", len(self.support_)) # print("w:", self.w) # print("b:", self.b) # hist of margins m = Y * (self.u.dot(self.K) + self.b) plt.hist(m, bins=20) plt.show() plt.plot(losses) plt.title("loss per iteration") plt.show() def _decision_function(self, X): return self.u.dot(self.kernel(self.X, X)) + self.b def predict(self, X): return np.sign(self._decision_function(X)) def score(self, X, Y): P = self.predict(X) return np.mean(Y == P) def plot_decision_boundary(model, X, Y, resolution=100, colors=('b', 'k', 'r')): np.warnings.filterwarnings('ignore') fig, ax = plt.subplots() # Generate coordinate grid of shape [resolution x resolution] # and evaluate the model over the entire space x_range = np.linspace(X[:,0].min(), X[:,0].max(), resolution) y_range = np.linspace(X[:,1].min(), X[:,1].max(), resolution) grid = [[model._decision_function(np.array([[xr, yr]])) for yr in y_range] for xr in x_range] grid = np.array(grid).reshape(len(x_range), len(y_range)) # Plot decision contours using grid and # make a scatter plot of training data ax.contour(x_range, y_range, grid.T, (-1, 0, 1), linewidths=(1, 1, 1), linestyles=('--', '-', '--'), colors=colors) ax.scatter(X[:,0], X[:,1], c=Y, lw=0, alpha=0.3, cmap='seismic') # Plot support vectors (non-zero alphas) # as circled points (linewidth > 0) mask = model.support_ ax.scatter(X[:,0][mask], X[:,1][mask], c=Y[mask], cmap='seismic') # debug ax.scatter([0], [0], c='black', marker='x') # debug # x_axis = np.linspace(X[:,0].min(), X[:,0].max(), 100) # w = model.w # b = model.b # # w[0]*x + w[1]*y + b = 0 # y_axis = -(w[0]*x_axis + b)/w[1] # plt.plot(x_axis, y_axis, color='purple') # margin_p = (1 - w[0]*x_axis - b)/w[1] # plt.plot(x_axis, margin_p, color='orange') # margin_n = -(1 + w[0]*x_axis + b)/w[1] # plt.plot(x_axis, margin_n, color='orange') plt.show() def clouds(): X, Y = get_clouds() Xtrain, Xtest, Ytrain, Ytest = train_test_split(X, Y, test_size=0.33) return Xtrain, Xtest, Ytrain, Ytest, linear, 1e-5, 500 def medical(): data = load_breast_cancer() X, Y = data.data, data.target Xtrain, Xtest, Ytrain, Ytest = train_test_split(X, Y, test_size=0.33) return Xtrain, Xtest, Ytrain, Ytest, linear, 1e-3, 200 def xor(): X, Y = get_xor() Xtrain, Xtest, Ytrain, Ytest = train_test_split(X, Y, test_size=0.33) kernel = lambda X1, X2: rbf(X1, X2, gamma=3.) return Xtrain, Xtest, Ytrain, Ytest, kernel, 1e-3, 500 def donut(): X, Y = get_donut() Xtrain, Xtest, Ytrain, Ytest = train_test_split(X, Y, test_size=0.33) kernel = lambda X1, X2: rbf(X1, X2, gamma=1.) return Xtrain, Xtest, Ytrain, Ytest, kernel, 1e-3, 300 def spiral(): X, Y = get_spiral() Xtrain, Xtest, Ytrain, Ytest = train_test_split(X, Y, test_size=0.33) kernel = lambda X1, X2: rbf(X1, X2, gamma=5.) return Xtrain, Xtest, Ytrain, Ytest, kernel, 1e-3, 500 if __name__ == '__main__': Xtrain, Xtest, Ytrain, Ytest, kernel, lr, n_iters = donut() print("Possible labels:", set(Ytrain)) # make sure the targets are (-1, +1) Ytrain[Ytrain == 0] = -1 Ytest[Ytest == 0] = -1 # scale the data scaler = StandardScaler() Xtrain = scaler.fit_transform(Xtrain) Xtest = scaler.transform(Xtest) # now we'll use our custom implementation model = KernelSVM(kernel=kernel, C=1.0) t0 = datetime.now() model.fit(Xtrain, Ytrain, lr=lr, n_iters=n_iters) print("train duration:", datetime.now() - t0) t0 = datetime.now() print("train score:", model.score(Xtrain, Ytrain), "duration:", datetime.now() - t0) t0 = datetime.now() print("test score:", model.score(Xtest, Ytest), "duration:", datetime.now() - t0) if Xtrain.shape[1] == 2: plot_decision_boundary(model, Xtrain, Ytrain) ================================================ FILE: svm_class/linear_svm_gradient.py ================================================ # https://deeplearningcourses.com/c/support-vector-machines-in-python # https://www.udemy.com/support-vector-machines-in-python from __future__ import print_function, division from future.utils import iteritems from builtins import range, input # Note: you may need to update your version of future # sudo pip install -U future from sklearn.model_selection import train_test_split from sklearn.datasets import load_breast_cancer from sklearn.preprocessing import StandardScaler from datetime import datetime from util import get_clouds import numpy as np import matplotlib.pyplot as plt class LinearSVM: def __init__(self, C=1.0): self.C = C def _objective(self, margins): return 0.5 * self.w.dot(self.w) + self.C * np.maximum(0, 1 - margins).sum() def fit(self, X, Y, lr=1e-5, n_iters=400): N, D = X.shape self.N = N self.w = np.random.randn(D) self.b = 0 # gradient descent losses = [] for _ in range(n_iters): margins = Y * self._decision_function(X) loss = self._objective(margins) losses.append(loss) idx = np.where(margins < 1)[0] grad_w = self.w - self.C * Y[idx].dot(X[idx]) self.w -= lr * grad_w grad_b = -self.C * Y[idx].sum() self.b -= lr * grad_b self.support_ = np.where((Y * self._decision_function(X)) <= 1)[0] print("num SVs:", len(self.support_)) print("w:", self.w) print("b:", self.b) # hist of margins # m = Y * self._decision_function(X) # plt.hist(m, bins=20) # plt.show() plt.plot(losses) plt.title("loss per iteration") plt.show() def _decision_function(self, X): return X.dot(self.w) + self.b def predict(self, X): return np.sign(self._decision_function(X)) def score(self, X, Y): P = self.predict(X) return np.mean(Y == P) def plot_decision_boundary(model, X, Y, resolution=100, colors=('b', 'k', 'r')): np.warnings.filterwarnings('ignore') fig, ax = plt.subplots() # Generate coordinate grid of shape [resolution x resolution] # and evaluate the model over the entire space x_range = np.linspace(X[:,0].min(), X[:,0].max(), resolution) y_range = np.linspace(X[:,1].min(), X[:,1].max(), resolution) grid = [[model._decision_function(np.array([[xr, yr]])) for yr in y_range] for xr in x_range] grid = np.array(grid).reshape(len(x_range), len(y_range)) # Plot decision contours using grid and # make a scatter plot of training data ax.contour(x_range, y_range, grid.T, (-1, 0, 1), linewidths=(1, 1, 1), linestyles=('--', '-', '--'), colors=colors) ax.scatter(X[:,0], X[:,1], c=Y, lw=0, alpha=0.3, cmap='seismic') # Plot support vectors (non-zero alphas) # as circled points (linewidth > 0) mask = model.support_ ax.scatter(X[:,0][mask], X[:,1][mask], c=Y[mask], cmap='seismic') # debug ax.scatter([0], [0], c='black', marker='x') # debug # x_axis = np.linspace(X[:,0].min(), X[:,0].max(), 100) # w = model.w # b = model.b # # w[0]*x + w[1]*y + b = 0 # y_axis = -(w[0]*x_axis + b)/w[1] # plt.plot(x_axis, y_axis, color='purple') # margin_p = (1 - w[0]*x_axis - b)/w[1] # plt.plot(x_axis, margin_p, color='orange') # margin_n = -(1 + w[0]*x_axis + b)/w[1] # plt.plot(x_axis, margin_n, color='orange') plt.show() def clouds(): X, Y = get_clouds() Xtrain, Xtest, Ytrain, Ytest = train_test_split(X, Y, test_size=0.33) return Xtrain, Xtest, Ytrain, Ytest, 1e-3, 200 def medical(): data = load_breast_cancer() X, Y = data.data, data.target Xtrain, Xtest, Ytrain, Ytest = train_test_split(X, Y, test_size=0.33) return Xtrain, Xtest, Ytrain, Ytest, 1e-3, 200 if __name__ == '__main__': Xtrain, Xtest, Ytrain, Ytest, lr, n_iters = clouds() print("Possible labels:", set(Ytrain)) # make sure the targets are (-1, +1) Ytrain[Ytrain == 0] = -1 Ytest[Ytest == 0] = -1 # scale the data scaler = StandardScaler() Xtrain = scaler.fit_transform(Xtrain) Xtest = scaler.transform(Xtest) # now we'll use our custom implementation model = LinearSVM(C=1.0) t0 = datetime.now() model.fit(Xtrain, Ytrain, lr=lr, n_iters=n_iters) print("train duration:", datetime.now() - t0) t0 = datetime.now() print("train score:", model.score(Xtrain, Ytrain), "duration:", datetime.now() - t0) t0 = datetime.now() print("test score:", model.score(Xtest, Ytest), "duration:", datetime.now() - t0) if Xtrain.shape[1] == 2: plot_decision_boundary(model, Xtrain, Ytrain) ================================================ FILE: svm_class/rbfnetwork.py ================================================ # https://deeplearningcourses.com/c/support-vector-machines-in-python # https://www.udemy.com/support-vector-machines-in-python from __future__ import print_function, division from builtins import range # Note: you may need to update your version of future # sudo pip install -U future from sklearn.svm import SVC from util import getKaggleMNIST from datetime import datetime from sklearn.pipeline import Pipeline from sklearn.kernel_approximation import RBFSampler from sklearn.linear_model import SGDClassifier from sklearn.svm import LinearSVC from sklearn.pipeline import FeatureUnion from sklearn.preprocessing import StandardScaler from sklearn.kernel_approximation import Nystroem # get the data: https://www.kaggle.com/c/digit-recognizer Xtrain, Ytrain, Xtest, Ytest = getKaggleMNIST() # linear SGD classifier # pipeline = Pipeline([('linear', SGDClassifier(max_iter=1e6, tol=1e-5))]) # linear SVC - a bit faster than SVC with linear kernel # pipeline = Pipeline([('linear', LinearSVC())]) # one RBFSampler with linear SGD classifier # pipeline = Pipeline([ # ('rbf', RBFSampler(gamma=0.01, n_components=1000)), # ('linear', SGDClassifier(max_iter=1e6, tol=1e-5))]) # multiple RBFSamplers # n_components = 2000 # featurizer = FeatureUnion([ # ("rbf1", RBFSampler(gamma=0.01, n_components=n_components)), # ("rbf2", RBFSampler(gamma=0.005, n_components=n_components)), # ("rbf3", RBFSampler(gamma=0.001, n_components=n_components)), # ]) # pipeline = Pipeline([('rbf', featurizer), ('linear', SGDClassifier(max_iter=1e6, tol=1e-5))]) # Nystroem approximation # pipeline = Pipeline([ # ('rbf', Nystroem(gamma=0.05, n_components=1000)), # ('linear', SGDClassifier(max_iter=1e6, tol=1e-5))]) # multiple Nystroem n_components = 1000 featurizer = FeatureUnion([ ("rbf0", Nystroem(gamma=0.05, n_components=n_components)), ("rbf1", Nystroem(gamma=0.01, n_components=n_components)), ("rbf2", Nystroem(gamma=0.005, n_components=n_components)), ("rbf3", Nystroem(gamma=0.001, n_components=n_components)), ]) pipeline = Pipeline([('rbf', featurizer), ('linear', SGDClassifier(max_iter=1e6, tol=1e-5))]) t0 = datetime.now() pipeline.fit(Xtrain, Ytrain) print("train duration:", datetime.now() - t0) t0 = datetime.now() print("train score:", pipeline.score(Xtrain, Ytrain), "duration:", datetime.now() - t0) t0 = datetime.now() print("test score:", pipeline.score(Xtest, Ytest), "duration:", datetime.now() - t0) ================================================ FILE: svm_class/real_neural_net.py ================================================ # https://deeplearningcourses.com/c/support-vector-machines-in-python # https://www.udemy.com/support-vector-machines-in-python from __future__ import print_function, division from builtins import range # Note: you may need to update your version of future # sudo pip install -U future import numpy as np from util import getKaggleMNIST from datetime import datetime from sklearn.pipeline import Pipeline from sklearn.preprocessing import StandardScaler from sklearn.neural_network import MLPClassifier from sklearn.linear_model import LogisticRegression # get the data: https://www.kaggle.com/c/digit-recognizer Xtrain, Ytrain, Xtest, Ytest = getKaggleMNIST() # scale first pipeline = Pipeline([ # ('scaler', StandardScaler()), ('mlp', MLPClassifier(hidden_layer_sizes=(500,), activation='tanh')), # ('lr', LogisticRegression()), ]) t0 = datetime.now() pipeline.fit(Xtrain, Ytrain) print("train duration:", datetime.now() - t0) t0 = datetime.now() print("train score:", pipeline.score(Xtrain, Ytrain), "duration:", datetime.now() - t0) t0 = datetime.now() print("test score:", pipeline.score(Xtest, Ytest), "duration:", datetime.now() - t0) ================================================ FILE: svm_class/regression.py ================================================ # https://deeplearningcourses.com/c/support-vector-machines-in-python # https://www.udemy.com/support-vector-machines-in-python from __future__ import print_function, division from builtins import range # Note: you may need to update your version of future # sudo pip install -U future import matplotlib.pyplot as plt import numpy as np import pandas as pd from datetime import datetime from sklearn.model_selection import train_test_split from sklearn.preprocessing import StandardScaler from sklearn.svm import SVR # get the data: https://archive.ics.uci.edu/ml/datasets/Concrete+Compressive+Strength df = pd.read_excel('../large_files/Concrete_Data.xls') df.columns = list(range(df.shape[1])) X = df[[0,1,2,3,4,5,6,7]].values Y = df[8].values # split the data into train and test sets # this lets us simulate how our model will perform in the future Xtrain, Xtest, Ytrain, Ytest = train_test_split(X, Y, test_size=0.33) # scale the data scaler = StandardScaler() Xtrain = scaler.fit_transform(Xtrain) Xtest = scaler.transform(Xtest) target_scaler = StandardScaler() Ytrain = target_scaler.fit_transform(Ytrain.reshape(-1, 1)).flatten() Ytest = target_scaler.transform(Ytest.reshape(-1, 1)).flatten() model = SVR(kernel='rbf') model.fit(Xtrain, Ytrain) print("train score:", model.score(Xtrain, Ytrain)) print("test score:", model.score(Xtest, Ytest)) ================================================ FILE: svm_class/svm_gradient.py ================================================ # https://deeplearningcourses.com/c/support-vector-machines-in-python # https://www.udemy.com/support-vector-machines-in-python from __future__ import print_function, division from future.utils import iteritems from builtins import range, input # Note: you may need to update your version of future # sudo pip install -U future from sklearn.model_selection import train_test_split from sklearn.datasets import load_breast_cancer from sklearn.preprocessing import StandardScaler from datetime import datetime from util import get_spiral, get_xor, get_donut, get_clouds, plot_decision_boundary import numpy as np import matplotlib.pyplot as plt # kernels def linear(X1, X2, c=0): return X1.dot(X2.T) + c def rbf(X1, X2, gamma=None): if gamma is None: gamma = 1.0 / X1.shape[-1] # 1 / D # gamma = 0.05 # gamma = 5. # for donut and spiral if np.ndim(X1) == 1 and np.ndim(X2) == 1: result = np.exp(-gamma * np.linalg.norm(X1 - X2)**2) elif (np.ndim(X1) > 1 and np.ndim(X2) == 1) or (np.ndim(X1) == 1 and np.ndim(X2) > 1): result = np.exp(-gamma * np.linalg.norm(X1 - X2, axis=1)**2) elif np.ndim(X1) > 1 and np.ndim(X2) > 1: result = np.exp(-gamma * np.linalg.norm(X1[:, np.newaxis] - X2[np.newaxis, :], axis=2)**2) return result def sigmoid(X1, X2, gamma=0.05, c=1): return np.tanh(gamma * X1.dot(X2.T) + c) class SVM: def __init__(self, kernel, C=1.0): self.kernel = kernel self.C = C def _train_objective(self): return np.sum(self.alphas) - 0.5 * np.sum(self.YYK * np.outer(self.alphas, self.alphas)) def fit(self, X, Y, lr=1e-5, n_iters=400): # we need these to make future predictions self.Xtrain = X self.Ytrain = Y self.N = X.shape[0] self.alphas = np.random.random(self.N) self.b = 0 # kernel matrix self.K = self.kernel(X, X) self.YY = np.outer(Y, Y) self.YYK = self.K * self.YY # gradient ascent losses = [] for _ in range(n_iters): loss = self._train_objective() losses.append(loss) grad = np.ones(self.N) - self.YYK.dot(self.alphas) self.alphas += lr * grad # clip self.alphas[self.alphas < 0] = 0 self.alphas[self.alphas > self.C] = self.C # distrbution of bs idx = np.where((self.alphas) > 0 & (self.alphas < self.C))[0] bs = Y[idx] - (self.alphas * Y).dot(self.kernel(X, X[idx])) self.b = np.mean(bs) plt.plot(losses) plt.title("loss per iteration") plt.show() def _decision_function(self, X): return (self.alphas * self.Ytrain).dot(self.kernel(self.Xtrain, X)) + self.b def predict(self, X): return np.sign(self._decision_function(X)) def score(self, X, Y): P = self.predict(X) return np.mean(Y == P) def medical(): data = load_breast_cancer() X, Y = data.data, data.target Xtrain, Xtest, Ytrain, Ytest = train_test_split(X, Y, test_size=0.33) return Xtrain, Xtest, Ytrain, Ytest, rbf, 1e-3, 200 def medical_sigmoid(): data = load_breast_cancer() X, Y = data.data, data.target Xtrain, Xtest, Ytrain, Ytest = train_test_split(X, Y, test_size=0.33) return Xtrain, Xtest, Ytrain, Ytest, sigmoid, 1e-3, 200 def xor(): X, Y = get_xor() Xtrain, Xtest, Ytrain, Ytest = train_test_split(X, Y, test_size=0.33) kernel = lambda X1, X2: rbf(X1, X2, gamma=5.) return Xtrain, Xtest, Ytrain, Ytest, kernel, 1e-2, 300 def donut(): X, Y = get_donut() Xtrain, Xtest, Ytrain, Ytest = train_test_split(X, Y, test_size=0.33) kernel = lambda X1, X2: rbf(X1, X2, gamma=5.) return Xtrain, Xtest, Ytrain, Ytest, kernel, 1e-2, 300 def spiral(): X, Y = get_spiral() Xtrain, Xtest, Ytrain, Ytest = train_test_split(X, Y, test_size=0.33) kernel = lambda X1, X2: rbf(X1, X2, gamma=5.) return Xtrain, Xtest, Ytrain, Ytest, kernel, 1e-2, 300 def clouds(): X, Y = get_clouds() Xtrain, Xtest, Ytrain, Ytest = train_test_split(X, Y, test_size=0.33) return Xtrain, Xtest, Ytrain, Ytest, linear, 1e-5, 400 if __name__ == '__main__': Xtrain, Xtest, Ytrain, Ytest, kernel, lr, n_iters = spiral() print("Possible labels:", set(Ytrain)) # make sure the targets are (-1, +1) Ytrain[Ytrain == 0] = -1 Ytest[Ytest == 0] = -1 # scale the data scaler = StandardScaler() Xtrain = scaler.fit_transform(Xtrain) Xtest = scaler.transform(Xtest) # now we'll use our custom implementation model = SVM(kernel=kernel, C=1.0) t0 = datetime.now() model.fit(Xtrain, Ytrain, lr=lr, n_iters=n_iters) print("train duration:", datetime.now() - t0) t0 = datetime.now() print("train score:", model.score(Xtrain, Ytrain), "duration:", datetime.now() - t0) t0 = datetime.now() print("test score:", model.score(Xtest, Ytest), "duration:", datetime.now() - t0) if Xtrain.shape[1] == 2: plot_decision_boundary(model) ================================================ FILE: svm_class/svm_medical.py ================================================ # https://deeplearningcourses.com/c/support-vector-machines-in-python # https://www.udemy.com/support-vector-machines-in-python from __future__ import print_function, division from future.utils import iteritems from builtins import range, input # Note: you may need to update your version of future # sudo pip install -U future from sklearn.svm import SVC from sklearn.model_selection import train_test_split from sklearn.datasets import load_breast_cancer from sklearn.preprocessing import StandardScaler # load the data data = load_breast_cancer() # split the data into train and test sets # this lets us simulate how our model will perform in the future Xtrain, Xtest, Ytrain, Ytest = train_test_split(data.data, data.target, test_size=0.33) # scale the data scaler = StandardScaler() Xtrain = scaler.fit_transform(Xtrain) Xtest = scaler.transform(Xtest) model = SVC(kernel='rbf') # model = SVC() model.fit(Xtrain, Ytrain) print("train score:", model.score(Xtrain, Ytrain)) print("test score:", model.score(Xtest, Ytest)) ================================================ FILE: svm_class/svm_mnist.py ================================================ # https://deeplearningcourses.com/c/support-vector-machines-in-python # https://www.udemy.com/support-vector-machines-in-python from __future__ import print_function, division from builtins import range # Note: you may need to update your version of future # sudo pip install -U future from sklearn.svm import SVC from util import getKaggleMNIST from datetime import datetime # get the data: https://www.kaggle.com/c/digit-recognizer Xtrain, Ytrain, Xtest, Ytest = getKaggleMNIST() # model = SVC() model = SVC(C=5., gamma=.05) t0 = datetime.now() model.fit(Xtrain, Ytrain) print("train duration:", datetime.now() - t0) t0 = datetime.now() print("train score:", model.score(Xtrain, Ytrain), "duration:", datetime.now() - t0) t0 = datetime.now() print("test score:", model.score(Xtest, Ytest), "duration:", datetime.now() - t0) ================================================ FILE: svm_class/svm_smo.py ================================================ # https://deeplearningcourses.com/c/support-vector-machines-in-python # https://www.udemy.com/support-vector-machines-in-python from __future__ import print_function, division from future.utils import iteritems from builtins import range, input # Note: you may need to update your version of future # sudo pip install -U future from sklearn.model_selection import train_test_split from sklearn.datasets import load_breast_cancer from sklearn.preprocessing import StandardScaler from datetime import datetime from util import get_spiral, get_xor, get_donut, get_clouds, plot_decision_boundary import numpy as np import matplotlib.pyplot as plt # kernels def linear(X1, X2): return X1.dot(X2.T) def rbf(X1, X2): # gamma = 1.0 / X1.shape[-1] # 1 / D gamma = 5. # for donut and spiral if np.ndim(X1) == 1 and np.ndim(X2) == 1: result = np.exp(-gamma * np.linalg.norm(X1 - X2)**2) elif (np.ndim(X1) > 1 and np.ndim(X2) == 1) or (np.ndim(X1) == 1 and np.ndim(X2) > 1): result = np.exp(-gamma * np.linalg.norm(X1 - X2, axis=1)**2) elif np.ndim(X1) > 1 and np.ndim(X2) > 1: result = np.exp(-gamma * np.linalg.norm(X1[:, np.newaxis] - X2[np.newaxis, :], axis=2)**2) return result def sigmoid(X1, X2, gamma=0.05, c=1): return np.tanh(gamma * X1.dot(X2.T) + c) class SVM: def __init__(self, kernel, C=1.0): self.kernel = kernel self.C = C def _loss(self, X, Y): # return -np.sum(self.alphas) + \ # 0.5 * np.sum(np.outer(Y, Y) * self.kernel(X, X) * np.outer(self.alphas, self.alphas)) return -np.sum(self.alphas) + \ 0.5 * np.sum(self.YYK * np.outer(self.alphas, self.alphas)) def _take_step(self, i1, i2): # returns True if model params changed, False otherwise # Skip if chosen alphas are the same if i1 == i2: return False alph1 = self.alphas[i1] alph2 = self.alphas[i2] y1 = self.Ytrain[i1] y2 = self.Ytrain[i2] E1 = self.errors[i1] E2 = self.errors[i2] s = y1 * y2 # Compute L & H, the bounds on new possible alpha values if (y1 != y2): L = max(0, alph2 - alph1) H = min(self.C, self.C + alph2 - alph1) elif (y1 == y2): L = max(0, alph1 + alph2 - self.C) H = min(self.C, alph1 + alph2) if (L == H): return False # Compute kernel & 2nd derivative eta k11 = self.kernel(self.Xtrain[i1], self.Xtrain[i1]) k12 = self.kernel(self.Xtrain[i1], self.Xtrain[i2]) k22 = self.kernel(self.Xtrain[i2], self.Xtrain[i2]) eta = k11 + k22 - 2 * k12 # Usual case - eta is non-negative if eta > 0: a2 = alph2 + y2 * (E1 - E2) / eta # Clip a2 based on bounds L & H if (a2 < L): a2 = L elif (a2 > H): a2 = H # else a2 remains unchanged # Unusual case - eta is negative # alpha2 should be set to whichever extreme (L or H) that yields the lowest # value of the objective else: print("***** eta < 0 *****") # keep it to assign it back later alphas_i2 = self.alphas[i2] # alphas_adj = self.alphas.copy() # alphas_adj[i2] = L self.alphas[i2] = L # objective function output with a2 = L Lobj = self._loss(self.Xtrain, self.Ytrain) # alphas_adj[i2] = H self.alphas[i2] = H # objective function output with a2 = H Hobj = self._loss(self.Xtrain, self.Ytrain) if Lobj < Hobj - self.eps: a2 = L elif Lobj > Hobj + self.eps: a2 = H else: a2 = alph2 # now assign it back self.alphas[i2] = alphas_i2 # Push a2 to 0 or C if very close if a2 < 1e-8: a2 = 0.0 elif a2 > (self.C - 1e-8): a2 = self.C # If examples can't be optimized within epsilon (eps), skip this pair if (np.abs(a2 - alph2) < self.eps * (a2 + alph2 + self.eps)): return False # Calculate new alpha 1 (a1) a1 = alph1 + s * (alph2 - a2) # Update threshold b to reflect newly calculated alphas # Calculate both possible thresholds b1 = E1 + y1 * (a1 - alph1) * k11 + y2 * (a2 - alph2) * k12 + self.b b2 = E2 + y1 * (a1 - alph1) * k12 + y2 * (a2 - alph2) * k22 + self.b # Set new threshold based on if a1 or a2 is bound by L and/or H if 0 < a1 and a1 < self.C: b_new = b1 elif 0 < a2 and a2 < self.C: b_new = b2 # Average thresholds if both are bound else: b_new = (b1 + b2) * 0.5 # Update model object with new alphas & threshold self.alphas[i1] = a1 self.alphas[i2] = a2 # Update error cache # Error cache for optimized alphas is set to 0 if they're unbound for index, alph in zip([i1, i2], [a1, a2]): if 0.0 < alph < self.C: self.errors[index] = 0.0 # Set non-optimized errors based on equation 12.11 in SMO book # non_opt = [n for n in range(self.N) if (n != i1 and n != i2 and self.alphas[n] < self.C and self.alphas[n] > 0)] #new non_opt = [n for n in range(self.N) if (n != i1 and n != i2)] # old self.errors[non_opt] = self.errors[non_opt] + \ y1*(a1 - alph1)*self.kernel(self.Xtrain[i1], self.Xtrain[non_opt]) + \ y2*(a2 - alph2)*self.kernel(self.Xtrain[i2], self.Xtrain[non_opt]) + self.b - b_new # Update model threshold self.b = b_new return True def _examine_example(self, i2): # returns True (1) if alphas changed, False (0) otherwise y2 = self.Ytrain[i2] alph2 = self.alphas[i2] E2 = self.errors[i2] r2 = E2 * y2 # Proceed if error is within specified tolerance (tol) if ((r2 < -self.tol and alph2 < self.C) or (r2 > self.tol and alph2 > 0)): if len(self.alphas[(self.alphas != 0) & (self.alphas != self.C)]) > 1: # Use 2nd choice heuristic is choose max difference in error if self.errors[i2] > 0: i1 = np.argmin(self.errors) elif self.errors[i2] <= 0: i1 = np.argmax(self.errors) if self._take_step(i1, i2): return 1 # Loop through non-zero and non-C alphas, starting at a random point # e.g. [1,2,3,4,5] -> [4,5,1,2,3] for i1 in np.roll(np.where((self.alphas != 0) & (self.alphas != self.C))[0], np.random.choice(np.arange(self.N))): if self._take_step(i1, i2): return 1 # loop through all alphas, starting at a random point for i1 in np.roll(np.arange(self.N), np.random.choice(np.arange(self.N))): if self._take_step(i1, i2): return 1 return 0 def fit(self, X, Y, tol=0.00001, eps=0.01): # we need these to make future predictions self.tol = tol self.eps = eps self.Xtrain = X self.Ytrain = Y self.N = X.shape[0] self.alphas = np.zeros(self.N) self.b = 0. self.errors = self._decision_function(self.Xtrain) - self.Ytrain # kernel matrix self.K = self.kernel(X, X) self.YY = np.outer(Y, Y) self.YYK = self.K * self.YY iter_ = 0 numChanged = 0 examineAll = 1 losses = [] while numChanged > 0 or examineAll: print("iter:", iter_) iter_ += 1 numChanged = 0 if examineAll: # loop over all training examples for i in range(self.alphas.shape[0]): examine_result = self._examine_example(i) numChanged += examine_result if examine_result: loss = self._loss(self.Xtrain, self.Ytrain) losses.append(loss) else: # loop over examples where alphas are not already at their limits for i in np.where((self.alphas != 0) & (self.alphas != self.C))[0]: examine_result = self._examine_example(i) numChanged += examine_result if examine_result: loss = self._loss(self.Xtrain, self.Ytrain) losses.append(loss) if examineAll == 1: examineAll = 0 elif numChanged == 0: examineAll = 1 plt.plot(losses) plt.title("loss per iteration") plt.show() def _decision_function(self, X): return (self.alphas * self.Ytrain).dot(self.kernel(self.Xtrain, X)) - self.b def predict(self, X): return np.sign(self._decision_function(X)) def score(self, X, Y): P = self.predict(X) return np.mean(Y == P) def get_data(): ### medical data # load the data # data = load_breast_cancer() # X, Y = data.data, data.target # X, Y = get_xor() # X, Y = get_donut() # X, Y = get_spiral() X, Y = get_clouds() # split the data into train and test sets # this lets us simulate how our model will perform in the future Xtrain, Xtest, Ytrain, Ytest = train_test_split(X, Y, test_size=0.33) return Xtrain, Xtest, Ytrain, Ytest if __name__ == '__main__': # np.random.seed(3) Xtrain, Xtest, Ytrain, Ytest = get_data() print("Possible labels:", set(Ytrain)) # make sure the targets are (-1, +1) Ytrain[Ytrain == 0] = -1 Ytest[Ytest == 0] = -1 # scale the data scaler = StandardScaler() Xtrain = scaler.fit_transform(Xtrain) Xtest = scaler.transform(Xtest) # now we'll use our custom implementation model = SVM(kernel=linear) t0 = datetime.now() model.fit(Xtrain, Ytrain) print("train duration:", datetime.now() - t0) t0 = datetime.now() print("train score:", model.score(Xtrain, Ytrain), "duration:", datetime.now() - t0) t0 = datetime.now() print("test score:", model.score(Xtest, Ytest), "duration:", datetime.now() - t0) if Xtrain.shape[1] == 2: plot_decision_boundary(model) ================================================ FILE: svm_class/svm_spam.py ================================================ # https://deeplearningcourses.com/c/support-vector-machines-in-python # https://www.udemy.com/support-vector-machines-in-python from __future__ import print_function, division from builtins import range # Note: you may need to update your version of future # sudo pip install -U future from sklearn.svm import SVC from datetime import datetime import pandas as pd import matplotlib.pyplot as plt from sklearn.feature_extraction.text import TfidfVectorizer, CountVectorizer from sklearn.model_selection import train_test_split from wordcloud import WordCloud # data from: # https://www.kaggle.com/uciml/sms-spam-collection-dataset # file contains some invalid chars # depending on which version of pandas you have # an error may be thrown df = pd.read_csv('../large_files/spam.csv', encoding='ISO-8859-1') # drop unnecessary columns df = df.drop(["Unnamed: 2", "Unnamed: 3", "Unnamed: 4"], axis=1) # rename columns to something better df.columns = ['labels', 'data'] # create binary labels df['b_labels'] = df['labels'].map({'ham': 0, 'spam': 1}) Y = df['b_labels'].values # try multiple ways of calculating features tfidf = TfidfVectorizer(decode_error='ignore') X = tfidf.fit_transform(df['data']) # count_vectorizer = CountVectorizer(decode_error='ignore') # X = count_vectorizer.fit_transform(df['data']) # split the data Xtrain, Xtest, Ytrain, Ytest = train_test_split(X, Y, test_size=0.33) model = SVC(kernel='linear', C=2.) t0 = datetime.now() model.fit(Xtrain, Ytrain) print("train duration:", datetime.now() - t0) t0 = datetime.now() print("train score:", model.score(Xtrain, Ytrain), "duration:", datetime.now() - t0) t0 = datetime.now() print("test score:", model.score(Xtest, Ytest), "duration:", datetime.now() - t0) # visualize the data def visualize(label): words = '' for msg in df[df['labels'] == label]['data']: msg = msg.lower() words += msg + ' ' wordcloud = WordCloud(width=600, height=400).generate(words) plt.imshow(wordcloud) plt.axis('off') plt.title(label) plt.show() visualize('spam') visualize('ham') # see what we're getting wrong df['predictions'] = model.predict(X) # things that should be spam print("*** things that should be spam ***") sneaky_spam = df[(df['predictions'] == 0) & (df['b_labels'] == 1)]['data'] for msg in sneaky_spam: print(msg) # things that should not be spam print("*** things that should not be spam ***") not_actually_spam = df[(df['predictions'] == 1) & (df['b_labels'] == 0)]['data'] for msg in not_actually_spam: print(msg) ================================================ FILE: svm_class/util.py ================================================ # https://deeplearningcourses.com/c/support-vector-machines-in-python # https://www.udemy.com/support-vector-machines-in-python from __future__ import print_function, division from builtins import range # Note: you may need to update your version of future # sudo pip install -U future import numpy as np import pandas as pd import matplotlib.pyplot as plt from sklearn.utils import shuffle from sklearn.preprocessing import StandardScaler def getKaggleMNIST(): # MNIST data: # column 0 is labels # column 1-785 is data, with values 0 .. 255 # total size of CSV: (42000, 784) train = pd.read_csv('../large_files/train.csv').values.astype(np.float32) train = shuffle(train) Xtrain = train[:-1000,1:] Ytrain = train[:-1000,0].astype(np.int32) Xtest = train[-1000:,1:] Ytest = train[-1000:,0].astype(np.int32) # scale the data Xtrain /= 255. Xtest /= 255. # scaler = StandardScaler() # Xtrain = scaler.fit_transform(Xtrain) # Xtest = scaler.transform(Xtest) return Xtrain, Ytrain, Xtest, Ytest def get_spiral(): # Idea: radius -> low...high # (don't start at 0, otherwise points will be "mushed" at origin) # angle = low...high proportional to radius # [0, 2pi/6, 4pi/6, ..., 10pi/6] --> [pi/2, pi/3 + pi/2, ..., ] # x = rcos(theta), y = rsin(theta) as usual radius = np.linspace(1, 10, 100) thetas = np.empty((6, 100)) for i in range(6): start_angle = np.pi*i / 3.0 end_angle = start_angle + np.pi / 2 points = np.linspace(start_angle, end_angle, 100) thetas[i] = points # convert into cartesian coordinates x1 = np.empty((6, 100)) x2 = np.empty((6, 100)) for i in range(6): x1[i] = radius * np.cos(thetas[i]) x2[i] = radius * np.sin(thetas[i]) # inputs X = np.empty((600, 2)) X[:,0] = x1.flatten() X[:,1] = x2.flatten() # add noise X += np.random.randn(600, 2)*0.5 # targets Y = np.array([0]*100 + [1]*100 + [0]*100 + [1]*100 + [0]*100 + [1]*100) return X, Y def get_xor(): X = np.zeros((200, 2)) X[:50] = np.random.random((50, 2)) / 2 + 0.5 # (0.5-1, 0.5-1) X[50:100] = np.random.random((50, 2)) / 2 # (0-0.5, 0-0.5) X[100:150] = np.random.random((50, 2)) / 2 + np.array([[0, 0.5]]) # (0-0.5, 0.5-1) X[150:] = np.random.random((50, 2)) / 2 + np.array([[0.5, 0]]) # (0.5-1, 0-0.5) Y = np.array([0]*100 + [1]*100) return X, Y def get_donut(): N = 200 R_inner = 5 R_outer = 10 # distance from origin is radius + random normal # angle theta is uniformly distributed between (0, 2pi) R1 = np.random.randn(N//2) + R_inner theta = 2*np.pi*np.random.random(N//2) X_inner = np.concatenate([[R1 * np.cos(theta)], [R1 * np.sin(theta)]]).T R2 = np.random.randn(N//2) + R_outer theta = 2*np.pi*np.random.random(N//2) X_outer = np.concatenate([[R2 * np.cos(theta)], [R2 * np.sin(theta)]]).T X = np.concatenate([ X_inner, X_outer ]) Y = np.array([0]*(N//2) + [1]*(N//2)) return X, Y def get_clouds(): N = 1000 c1 = np.array([2, 2]) c2 = np.array([-2, -2]) # c1 = np.array([0, 3]) # c2 = np.array([0, 0]) X1 = np.random.randn(N, 2) + c1 X2 = np.random.randn(N, 2) + c2 X = np.vstack((X1, X2)) Y = np.array([-1]*N + [1]*N) return X, Y def plot_decision_boundary(model, resolution=100, colors=('b', 'k', 'r')): np.warnings.filterwarnings('ignore') fig, ax = plt.subplots() # Generate coordinate grid of shape [resolution x resolution] # and evaluate the model over the entire space x_range = np.linspace(model.Xtrain[:,0].min(), model.Xtrain[:,0].max(), resolution) y_range = np.linspace(model.Xtrain[:,1].min(), model.Xtrain[:,1].max(), resolution) grid = [[model._decision_function(np.array([[xr, yr]])) for yr in y_range] for xr in x_range] grid = np.array(grid).reshape(len(x_range), len(y_range)) # Plot decision contours using grid and # make a scatter plot of training data ax.contour(x_range, y_range, grid.T, (-1, 0, 1), linewidths=(1, 1, 1), linestyles=('--', '-', '--'), colors=colors) ax.scatter(model.Xtrain[:,0], model.Xtrain[:,1], c=model.Ytrain, lw=0, alpha=0.3, cmap='seismic') # Plot support vectors (non-zero alphas) # as circled points (linewidth > 0) mask = model.alphas > 0. ax.scatter(model.Xtrain[:,0][mask], model.Xtrain[:,1][mask], c=model.Ytrain[mask], cmap='seismic') # debug ax.scatter([0], [0], c='black', marker='x') plt.show() ================================================ FILE: tensorflow/input_data.py ================================================ """Functions for downloading and reading MNIST data.""" from __future__ import absolute_import from __future__ import division from __future__ import print_function import gzip import os import numpy from six.moves import urllib from six.moves import xrange # pylint: disable=redefined-builtin SOURCE_URL = 'http://yann.lecun.com/exdb/mnist/' def maybe_download(filename, work_directory): """Download the data from Yann's website, unless it's already here.""" if not os.path.exists(work_directory): os.mkdir(work_directory) filepath = os.path.join(work_directory, filename) if not os.path.exists(filepath): filepath, _ = urllib.request.urlretrieve(SOURCE_URL + filename, filepath) statinfo = os.stat(filepath) print('Succesfully downloaded', filename, statinfo.st_size, 'bytes.') return filepath def _read32(bytestream): dt = numpy.dtype(numpy.uint32).newbyteorder('>') return numpy.frombuffer(bytestream.read(4), dtype=dt) def extract_images(filename): """Extract the images into a 4D uint8 numpy array [index, y, x, depth].""" print('Extracting', filename) with gzip.open(filename) as bytestream: magic = _read32(bytestream) if magic != 2051: raise ValueError( 'Invalid magic number %d in MNIST image file: %s' % (magic, filename)) num_images = _read32(bytestream) rows = _read32(bytestream) cols = _read32(bytestream) buf = bytestream.read(rows * cols * num_images) data = numpy.frombuffer(buf, dtype=numpy.uint8) data = data.reshape(num_images, rows, cols, 1) return data def dense_to_one_hot(labels_dense, num_classes=10): """Convert class labels from scalars to one-hot vectors.""" num_labels = labels_dense.shape[0] index_offset = numpy.arange(num_labels) * num_classes labels_one_hot = numpy.zeros((num_labels, num_classes)) labels_one_hot.flat[index_offset + labels_dense.ravel()] = 1 return labels_one_hot def extract_labels(filename, one_hot=False): """Extract the labels into a 1D uint8 numpy array [index].""" print('Extracting', filename) with gzip.open(filename) as bytestream: magic = _read32(bytestream) if magic != 2049: raise ValueError( 'Invalid magic number %d in MNIST label file: %s' % (magic, filename)) num_items = _read32(bytestream) buf = bytestream.read(num_items) labels = numpy.frombuffer(buf, dtype=numpy.uint8) if one_hot: return dense_to_one_hot(labels) return labels class DataSet(object): def __init__(self, images, labels, fake_data=False): if fake_data: self._num_examples = 10000 else: assert images.shape[0] == labels.shape[0], ( "images.shape: %s labels.shape: %s" % (images.shape, labels.shape)) self._num_examples = images.shape[0] # Convert shape from [num examples, rows, columns, depth] # to [num examples, rows*columns] (assuming depth == 1) assert images.shape[3] == 1 images = images.reshape(images.shape[0], images.shape[1] * images.shape[2]) # Convert from [0, 255] -> [0.0, 1.0]. images = images.astype(numpy.float32) images = numpy.multiply(images, 1.0 / 255.0) self._images = images self._labels = labels self._epochs_completed = 0 self._index_in_epoch = 0 @property def images(self): return self._images @property def labels(self): return self._labels @property def num_examples(self): return self._num_examples @property def epochs_completed(self): return self._epochs_completed def next_batch(self, batch_size, fake_data=False): """Return the next `batch_size` examples from this data set.""" if fake_data: fake_image = [1.0 for _ in xrange(784)] fake_label = 0 return [fake_image for _ in xrange(batch_size)], [ fake_label for _ in xrange(batch_size)] start = self._index_in_epoch self._index_in_epoch += batch_size if self._index_in_epoch > self._num_examples: # Finished epoch self._epochs_completed += 1 # Shuffle the data perm = numpy.arange(self._num_examples) numpy.random.shuffle(perm) self._images = self._images[perm] self._labels = self._labels[perm] # Start next epoch start = 0 self._index_in_epoch = batch_size assert batch_size <= self._num_examples end = self._index_in_epoch return self._images[start:end], self._labels[start:end] def read_data_sets(train_dir, fake_data=False, one_hot=False): class DataSets(object): pass data_sets = DataSets() if fake_data: data_sets.train = DataSet([], [], fake_data=True) data_sets.validation = DataSet([], [], fake_data=True) data_sets.test = DataSet([], [], fake_data=True) return data_sets TRAIN_IMAGES = 'train-images-idx3-ubyte.gz' TRAIN_LABELS = 'train-labels-idx1-ubyte.gz' TEST_IMAGES = 't10k-images-idx3-ubyte.gz' TEST_LABELS = 't10k-labels-idx1-ubyte.gz' VALIDATION_SIZE = 5000 local_file = maybe_download(TRAIN_IMAGES, train_dir) train_images = extract_images(local_file) local_file = maybe_download(TRAIN_LABELS, train_dir) train_labels = extract_labels(local_file, one_hot=one_hot) local_file = maybe_download(TEST_IMAGES, train_dir) test_images = extract_images(local_file) local_file = maybe_download(TEST_LABELS, train_dir) test_labels = extract_labels(local_file, one_hot=one_hot) validation_images = train_images[:VALIDATION_SIZE] validation_labels = train_labels[:VALIDATION_SIZE] train_images = train_images[VALIDATION_SIZE:] train_labels = train_labels[VALIDATION_SIZE:] data_sets.train = DataSet(train_images, train_labels) data_sets.validation = DataSet(validation_images, validation_labels) data_sets.test = DataSet(test_images, test_labels) return data_sets ================================================ FILE: tf2.0/.gitignore ================================================ rl_trader_working*.py *rl_trader_models *rl_trader_rewards ================================================ FILE: tf2.0/WHERE ARE THE NOTEBOOKS.txt ================================================ As stated in the "where to get the code" / "where to get the notebooks" lecture, the notebooks are NOT on Github. If you missed this, please review the lecture for the actual location of the notebooks. If, after reviewing it, you still need assistance, please contact info@deeplearningcourses.com. ================================================ FILE: tf2.0/aapl_msi_sbux.csv ================================================ AAPL,MSI,SBUX 67.8542,60.3,28.185 68.5614,60.9,28.07 66.8428,60.83,28.13 66.7156,60.81,27.915 66.6556,61.12,27.775 65.7371,61.43,27.17 65.7128,62.03,27.225 64.1214,61.26,26.655 63.7228,60.88,26.675 64.4014,61.9,27.085 63.2571,60.28,26.605 64.1385,60.63,26.64 63.5099,62.09,27.285 63.0571,62.21,27.425 61.4957,62.03,27.435 60.0071,62.5,27.85 61.5919,62.97,28.255 60.8088,63.11,28.55 61.5117,62.64,29.125 61.6742,62.75,29.335 62.5528,62.56,29.305 61.2042,62.13,29.14 61.1928,62.22,29.2925 61.7857,62.34,28.84 63.3799,62.07,28.83 65.1028,61.64,28.465 64.9271,61.67,28.415 64.5828,62.4,28.715 64.6756,62.43,28.525 65.9871,63.61,28.69 66.2256,63.29,28.345 65.8765,63.46,28.525 64.5828,63.56,28.455 63.2371,64.03,28.475 61.2728,63.7,28.435 61.3988,63.7,29.13 61.7128,62.8,28.85 61.1028,62.99,29.055 60.4571,62.67,28.9 60.8871,63.17,29.06 60.9971,63.64,28.705 62.2414,64.69,28.9 62.0471,64.63,29.2875 61.3999,63.87,29.545 59.9785,61.83,28.855 60.8914,62.96,29.28 57.5428,62.13,29.085 56.0071,61.15,28.86 55.7899,61.72,29.2025 56.9528,61.78,29.32 58.0185,61.75,29.695 57.9231,56.02,29.915 58.3399,56.39,30.25 59.6007,56.8,30.0 61.4457,57.44,30.29 63.2542,57.2,30.42 62.7557,56.37,30.07 63.6457,56.89,30.19 64.2828,57.29,30.935 65.8156,56.95,31.24 65.5225,56.79,31.095 66.2628,57.0,31.205 65.2528,56.78,31.18 64.7099,56.48,31.5485 64.9628,56.17,31.41 63.4085,56.89,31.76 61.2642,57.1,32.035 62.0825,57.53,31.775 61.8942,57.84,32.065 63.2757,58.25,31.915 62.8085,57.77,32.125 63.0505,57.3,32.075 63.1628,57.48,31.76 63.5928,57.81,31.68 63.0627,58.53,32.13 63.5642,58.32,31.815 64.5114,58.54,31.735 64.2478,57.96,31.57 64.3885,57.83,31.73 64.1871,57.41,31.665 63.5871,56.27,31.17 62.6371,56.92,31.51 63.1158,56.94,32.52 62.6985,56.61,33.055 62.5142,56.38,32.71 61.7414,56.26,32.225 62.2807,57.19,32.985 61.4357,56.93,32.8 61.7142,57.33,33.015 61.6814,57.35,33.5475 60.4285,56.78,33.205 59.5482,55.5,32.61 59.0714,55.82,32.345 57.5057,55.59,32.005 57.5185,56.35,32.37 56.8671,57.49,32.9 56.2542,57.84,32.845 56.6471,57.73,32.755 58.4599,57.98,33.12 59.7842,57.49,33.395 60.1142,57.26,33.65 59.6314,57.93,33.86 59.2928,57.86,34.145 60.3357,58.03,34.065 60.1042,58.43,34.05 61.0411,59.05,34.67 60.9299,59.54,34.86 61.0628,59.17,34.83 61.4564,59.32,34.76 61.4728,59.42,34.1 61.6797,59.36,34.24 60.7071,59.85,34.395 60.9014,59.87,34.51 59.8557,59.98,33.83 62.9299,56.04,33.305 62.6428,54.25,34.085 62.9985,54.26,36.68 63.9699,54.01,36.225 64.7599,54.35,35.965 64.6471,54.83,35.6445 65.2394,55.32,36.74 66.0771,56.02,37.115 67.0642,56.1,36.985 66.4642,56.4,36.4 66.4256,56.48,36.095 65.8585,57.13,36.47 64.9214,57.36,36.4 66.7656,57.44,36.465 69.9385,57.84,36.32 71.2142,57.71,35.925 71.1299,56.96,35.37 71.7614,57.15,35.355 72.5342,57.09,35.145 71.5814,57.05,35.33 71.7656,56.06,35.3565 71.8514,56.33,35.95 71.5742,56.74,35.985 71.8528,56.55,35.94 69.7985,56.12,35.08 70.1279,56.39,35.48 70.2428,56.19,35.59 69.6022,56.01,35.26 69.7971,56.28,35.8 71.2415,56.08,36.07 70.7528,56.17,36.025 71.1742,56.47,35.785 72.3099,57.59,36.22 70.6628,57.37,37.1075 66.8156,57.25,37.695 67.5271,57.5,37.835 66.4142,57.46,37.785 64.3028,57.81,37.62 65.0456,58.28,38.02 66.3828,59.26,38.665 67.4714,59.69,38.175 66.7728,60.39,38.06 70.0914,60.37,37.68 69.8714,59.99,38.275 68.7899,59.85,38.17 69.4599,59.87,38.59 68.9642,59.75,38.665 68.1071,59.38,38.485 69.7085,60.89,38.58 69.9371,60.7,38.595 69.0585,60.56,38.435 69.0042,61.14,38.7 69.6785,60.89,38.4305 68.7056,59.62,37.765 69.5125,59.39,37.63 69.9482,60.61,38.56 70.4016,60.52,38.91 70.8628,61.03,39.05 71.2399,60.49,38.355 71.5876,60.71,39.02 72.0714,60.92,39.3675 72.6985,60.81,39.655 74.4802,61.18,39.73 74.2667,60.43,40.45 74.9942,62.4,40.025 75.9871,62.51,39.525 75.1368,62.99,39.98 75.6965,62.44,39.355 73.8111,62.73,39.81 74.9851,62.25,40.415 74.6716,62.52,40.525 74.2899,62.39,40.185 75.2499,62.71,40.185 75.0641,62.68,40.995 74.4171,62.65,40.565 73.2131,62.49,39.535 74.3656,63.12,40.6 74.1496,63.51,40.495 74.2871,64.24,40.3075 74.3762,64.45,40.7305 75.4514,64.58,40.57 74.9986,65.57,40.595 74.0898,65.42,40.27 74.2214,64.61,39.96 73.5714,64.58,39.845 74.4479,65.41,40.765 74.2571,65.88,40.675 74.8199,65.79,40.355 76.1999,65.57,40.755 77.9942,65.5,40.81 79.4385,65.88,40.73 78.7471,65.66,40.535 80.9031,65.79,40.275 80.7142,64.93,39.75 81.1286,65.23,39.86 80.0028,66.18,39.97 80.9185,65.79,39.865 80.7928,65.41,38.69 80.1942,64.6,38.2 80.0771,64.86,38.24 79.2042,65.05,38.175 79.6428,65.36,38.23 79.2842,65.52,38.045 78.6813,66.16,38.84 77.7799,65.85,38.575 78.4314,65.61,38.83 81.4413,66.78,39.16 81.0956,67.1,39.285 80.5571,67.18,39.44 80.0128,67.33,39.285 79.2171,67.25,39.275 80.1456,67.5,39.195 79.0185,66.33,38.585 77.2828,66.2,38.475 77.7042,65.92,38.085 77.1481,66.19,38.605 77.6371,65.99,39.015 76.6455,66.5,38.8 76.1342,66.15,38.835 76.5328,65.49,37.56 78.0556,66.35,37.73 79.6228,65.62,38.095 79.1785,65.81,37.645 77.2385,66.1,37.45 78.4385,67.11,36.825 78.7871,64.51,36.8 79.4542,65.34,36.695 78.0099,64.42,37.49 78.6428,64.43,37.105 72.3571,64.34,36.945 71.5356,63.98,35.78 71.3974,64.91,35.955 71.5142,63.8,35.56 71.6471,62.72,34.485 72.6842,62.99,35.325 73.2271,62.89,35.245 73.2156,63.4,36.18 74.2399,64.6,37.0175 75.5699,65.08,37.4 76.5656,65.03,37.25 76.5599,65.78,36.955 77.7756,65.67,37.345 77.7128,65.61,37.515 77.9985,65.78,36.985 76.7671,64.93,36.66 75.8785,65.22,36.775 75.0356,65.02,36.28 75.3642,64.96,36.28 74.5799,65.1,35.275 73.9071,65.45,35.89 75.3814,65.9,36.095 75.1771,66.2,35.48 75.3942,65.98,35.235 75.8914,66.76,35.83 76.0514,66.33,35.65 75.8214,66.57,36.345 75.7771,66.64,36.535 75.8456,66.43,36.78 76.5842,66.08,37.515 76.6585,65.02,37.815 75.8071,64.21,37.215 74.9556,63.67,37.135 75.2485,65.08,37.09 75.9142,65.72,37.3 75.8942,65.7,37.955 75.5285,66.66,38.4775 76.1242,66.81,38.355 77.0271,66.05,37.885 77.8556,66.18,37.305 77.1114,65.16,36.77 76.7799,64.36,36.7 76.6942,64.3,36.85 76.6771,64.29,36.69 77.3785,64.91,37.005 77.5071,65.1,36.835 76.9699,65.09,36.545 75.9742,64.26,35.775 74.7814,64.43,35.215 74.7771,64.95,35.74 75.7599,65.26,36.24 74.7828,63.99,35.11 74.2299,63.39,34.365 74.5256,63.78,34.655 73.9942,63.37,34.445 74.1442,63.23,35.395 74.9914,63.15,35.075 75.8814,62.51,35.24 75.9569,63.27,35.5745 74.9642,63.29,35.195 81.1099,63.0,35.545 81.7056,62.5,35.725 84.8699,62.64,35.465 84.6185,63.43,35.32 84.2985,63.58,35.31 84.4971,62.65,35.56 84.6542,65.51,35.3 85.8513,66.15,35.46 84.9156,66.4,34.79 84.6185,67.14,34.87 83.9985,67.38,34.79 83.6488,67.26,35.145 84.6899,67.8,35.575 84.8228,67.75,35.58 84.8385,67.2,35.085 84.1171,66.34,34.925 85.3585,66.3,35.47 86.3699,66.88,35.51 86.3871,66.52,35.115 86.6156,66.89,35.2 86.7528,66.63,35.7 87.7328,67.0,35.99 89.3756,67.02,36.83 89.1442,66.93,36.635 90.7685,66.91,36.555 90.4285,67.42,36.62 89.8071,67.4,36.925 91.0771,66.86,37.09 92.1171,67.23,37.335 92.4785,67.17,37.36 92.2242,67.66,37.665 93.7,67.67,37.59 94.25,67.7,37.3 93.86,66.93,37.4 92.29,66.46,36.98 91.28,66.78,37.345 92.2,66.72,37.545 92.08,66.64,37.655 92.18,66.62,37.78 91.86,67.06,38.615 90.91,67.07,38.3 90.83,67.1,38.365 90.28,66.73,38.715 90.36,66.55,39.06 90.9,66.56,39.03 91.98,66.78,38.97 92.93,66.57,38.69 93.52,66.96,39.04 93.48,67.02,39.095 94.03,67.41,39.53 95.96799999999999,67.24,39.345 95.35,66.27,39.28 95.39,66.58,39.725 95.035,66.45,39.425 95.22,66.0,39.3 96.45,66.08,39.28 95.32,65.49,39.445 94.78,65.67,39.365 93.0899,64.94,38.62 94.43,65.49,38.97 93.939,65.74,38.805 94.72,66.05,39.37 97.19,65.77,39.57 97.03,65.61,40.225 97.671,65.0,39.37 99.02,65.21,39.18 98.38,64.74,39.325 98.15,64.83,39.45 95.6,63.68,38.84 96.13,64.11,38.49 95.59,64.11,38.765 95.12,61.39,38.395 94.96,61.21,38.565 94.48,61.25,38.355 94.74,62.19,38.81 95.99,61.73,38.935 95.97,61.64,38.91 97.24,62.03,38.62 97.5,61.52,38.31 97.98,61.0,38.455 99.16,60.81,38.795 100.53,61.37,39.06 100.57,61.64,39.015 100.58,61.7,38.735 101.32,61.23,38.64 101.54,61.02,38.985 100.889,60.3,38.895 102.13,59.68,38.96 102.25,59.37,38.905 102.5,59.4,38.905 103.3,59.01,38.74 98.94,58.94,38.395 98.12,58.98,38.58 98.97,58.89,38.975 98.36,61.02,38.835 97.99,61.08,38.56 101.0,61.22,38.605 101.43,61.22,38.06 101.66,61.54,37.735 101.63,61.42,37.46 100.86,61.69,37.545 101.58,61.91,37.67 101.79,62.04,37.865 100.96,61.88,38.035 101.06,61.68,37.3 102.64,61.57,36.9775 101.75,61.8,37.66 97.87,62.24,37.06 100.75,63.42,37.585 100.11,63.18,37.635 100.75,63.28,37.73 99.18,62.34,37.305 99.9,61.03,37.225 99.62,61.3,37.945 99.62,61.5,37.5725 98.75,60.47,37.025 100.8,61.58,37.63 101.02,60.46,37.24 100.73,59.05,37.23 99.81,58.5,36.095 98.75,58.73,36.37 97.54,59.32,36.19 96.26,59.18,36.32 97.67,60.79,36.77 99.76,61.25,37.35 102.47,62.39,37.18 102.99,61.63,37.3 104.83,62.25,37.42 105.22,62.57,37.905 105.11,62.8,37.985 106.74,64.06,38.525 107.34,63.94,38.27 106.98,63.7,38.66 108.0,64.5,37.78 109.4,64.68,38.05 108.6,66.76,38.355 108.86,64.46,38.33 108.7,63.42,38.725 109.01,64.14,38.895 108.83,63.94,38.825 109.7,63.55,38.865 111.25,63.7,38.925 112.82,64.43,38.945 114.18,65.25,39.06 113.99,65.4,38.915 115.47,66.0,38.785 114.67,65.94,38.91 116.31,65.66,39.1 116.47,65.27,39.88 118.625,65.81,40.26 117.6,65.6,40.105 119.0,65.56,39.85 118.93,65.72,40.605 115.07,65.44,40.425 114.63,65.51,40.185 115.93,65.32,40.235 115.49,65.2,40.655 115.0,65.0,41.785 112.4,65.27,41.9 114.12,65.29,41.515 111.95,63.52,41.33 111.62,63.29,41.56 109.73,62.31,41.625 108.225,61.91,40.445 106.745,61.73,39.565 109.41,63.99,40.2175 112.65,65.11,40.015 111.78,65.5,39.72 112.94,66.53,40.27 112.54,66.93,40.715 112.01,67.34,40.635 113.99,67.49,40.915 113.91,67.87,41.19 112.52,67.53,40.895 110.38,67.08,41.025 109.33,66.51,40.72 106.25,65.06,39.94 106.26,64.51,39.615 107.75,64.43,40.59 111.89,65.43,41.245 112.01,65.11,39.895 109.25,64.35,40.115 110.22,64.11,40.435 109.8,63.76,40.21 106.82,63.41,39.79 105.99,64.05,40.305 108.72,64.02,40.6125 109.55,64.31,40.645 112.4,65.36,41.37 112.98,65.48,44.11 113.1,65.71,44.06 109.14,64.94,44.17 115.31,63.84,43.7825 118.9,63.83,44.525 117.16,62.41,43.765 118.63,62.81,43.995 118.65,64.01,44.245 119.56,63.94,44.35 119.94,64.0,44.82 118.93,64.66,44.5 119.72,67.78,44.41 122.02,68.22,45.59 124.88,68.57,45.395 126.46,70.0,45.9125 127.08,69.91,45.79 127.83,69.79,46.015 128.715,69.12,46.5 128.45,69.03,46.585 129.495,69.83,46.755 133.0,68.63,46.79 132.17,68.53,46.725 128.79,68.02,47.13 130.415,68.47,47.275 128.46,67.94,46.7425 129.09,68.89,47.1125 129.36,68.14,47.0 128.54,67.64,46.53 126.41,67.93,46.815 126.6,66.82,46.1075 127.14,66.57,46.52 124.51,65.33,46.09 122.24,65.31,45.71 124.45,64.96,46.69 123.59,64.8,46.645 124.95,65.86,47.0225 127.04,65.32,47.1925 128.47,66.65,47.92 127.495,66.34,48.88 125.9,66.83,48.73 127.21,66.52,48.685 126.69,66.23,48.9575 123.38,65.35,47.885 124.24,65.42,47.54 123.25,65.38,47.535 126.37,66.39,47.99 124.43,66.67,47.35 124.25,66.67,46.51 125.32,62.51,47.195 127.35,61.48,47.26 126.01,61.99,47.035 125.6,62.42,47.615 126.56,62.32,47.96 127.1,62.53,48.17 126.85,61.97,48.5 126.3,61.91,48.3 126.78,61.82,48.14 126.17,61.86,48.245 124.75,60.68,47.62 127.6,61.16,47.97 126.91,61.43,48.37 128.62,61.59,48.335 129.67,60.84,49.43 130.28,60.57,51.84 132.65,60.98,50.87 130.56,60.69,50.61 128.64,59.74,50.65 125.15,59.75,49.58 128.95,60.28,50.29 128.7,60.68,50.445 125.8,58.59,49.405 125.01,58.75,48.93 125.26,60.01,49.35 127.62,60.59,49.78 126.32,59.8,49.5 125.865,59.42,49.71 126.01,59.25,49.59 128.95,59.79,50.555 128.77,59.3,50.8 130.19,60.12,51.18 130.07,59.8,51.42 130.06,59.8,51.03 131.39,59.79,51.33 132.54,59.66,51.48 129.62,59.11,50.84 132.045,59.06,51.59 131.78,59.63,51.81 130.28,59.0,51.96 130.535,59.65,52.22 129.96,59.19,51.73 130.12,59.48,52.12 129.36,58.8,51.72 128.65,58.61,52.19 127.8,58.08,51.53 127.42,57.9,51.54 128.88,58.49,52.69 128.59,58.55,52.49 127.17,57.65,52.63 126.92,57.95,52.27 127.6,58.18,52.965 127.3,57.97,53.24 127.88,58.39,54.11 126.6,58.05,53.93 127.61,59.22,53.9 127.03,59.12,54.115 128.11,58.29,53.71 127.5,58.35,54.07 126.75,58.38,54.62 124.53,57.14,53.55 125.425,57.34,53.615 126.6,57.6,53.89 126.44,57.51,54.24 126.0,57.22,54.305 125.69,57.49,54.375 122.57,56.79,53.39 120.07,56.94,54.05 123.28,57.48,54.57 125.66,58.43,55.7 125.61,58.6,55.75 126.82,58.89,55.34 128.51,59.29,55.74 129.62,58.85,55.69 132.07,59.4,56.21 130.75,59.57,56.2 125.22,59.35,56.69 125.16,58.85,56.56 124.5,59.5,57.29 122.77,58.71,56.98 123.38,59.11,57.14 122.99,59.58,57.51 122.37,59.86,58.06 121.3,60.16,57.93 118.44,59.76,58.19 114.64,60.22,58.7 115.4,64.04,59.01 115.13,63.8,57.23 115.52,64.19,57.2 119.72,63.99,56.27 113.49,63.35,56.35 115.24,64.6,56.38 115.15,64.34,56.85 115.96,64.98,57.1 117.16,65.27,57.74 116.5,65.77,57.83 115.01,65.35,57.59 112.65,63.89,55.81 105.76,62.45,52.84 103.12,60.79,50.34 103.74,60.44,51.09 109.69,63.14,53.96 112.92,64.29,55.95 113.29,64.55,55.63 112.76,64.82,54.71 107.72,63.85,53.5 112.34,64.72,55.26 110.37,65.11,54.69 109.27,66.31,54.28 112.31,69.61,55.21 110.15,68.3,54.69 112.57,69.09,55.37 114.21,67.08,56.53 115.31,66.84,56.29 116.28,67.15,56.91 116.41,67.47,57.26 113.92,67.03,57.28 113.45,67.09,56.84 115.21,67.05,57.54 113.4,66.58,57.12 114.32,67.8,57.79 115.0,67.91,58.37 114.71,69.2,57.99 112.44,67.93,55.77 109.06,67.45,55.72 110.3,68.38,56.84 109.58,67.76,57.48 110.38,68.4,58.08 110.78,69.75,59.04 111.31,69.19,58.69 110.78,69.79,58.78 109.5,69.5,59.46 112.12,68.78,60.07 111.6,69.43,60.54 111.79,69.04,60.16 110.21,68.7,58.82 111.86,69.27,59.69 111.04,69.26,59.93 111.73,69.03,60.97 113.77,69.48,60.88 113.76,69.47,60.53 115.5,70.48,61.49 119.08,70.48,62.61 115.28,70.05,63.43 114.55,69.96,62.71 119.27,70.37,63.51 120.53,70.13,62.5 119.5,69.97,62.57 121.18,70.73,62.24 122.57,71.36,62.8 122.0,65.24,61.96 120.92,67.4,62.28 121.06,68.01,61.97 120.57,68.2,61.34 116.77,68.34,62.18 116.11,70.02,61.87 115.72,69.44,61.07 112.34,69.03,59.74 114.175,70.02,60.68 113.69,71.05,60.55 117.29,71.98,61.8 118.78,72.45,61.46 119.3,72.19,61.99 117.75,72.24,62.64 118.88,71.96,61.96 118.03,71.83,62.19 117.81,72.02,62.18 118.3,71.78,61.39 117.34,72.05,61.37 116.28,71.89,61.22 115.2,71.08,59.55 119.03,72.11,61.75 118.28,70.38,61.89 118.23,69.75,62.16 115.62,69.31,61.18 116.17,69.37,61.87 113.18,68.61,59.82 112.48,68.14,59.92 110.49,69.13,59.98 111.34,69.52,60.35 108.98,68.56,59.515 106.03,67.58,58.62 107.33,68.03,59.54 107.23,68.87,59.99 108.61,69.21,60.34 108.03,69.06,60.32 106.82,69.18,60.19 108.74,69.64,61.13 107.32,69.3,60.82 105.26,68.45,60.03 105.35,67.13,58.26 102.71,66.39,58.65 100.7,65.43,58.13 96.45,64.11,56.69 96.96,64.25,56.63 98.53,64.37,57.82 99.96,64.91,59.46 97.39,63.37,57.87 99.52,63.11,58.98 97.13,61.59,58.0 96.66,61.13,58.55 96.79,60.36,56.92 96.3,60.82,59.03 101.42,62.04,59.17 99.44,62.42,57.71 99.99,63.16,58.61 93.42,64.8,57.63 94.09,64.74,59.285 97.34,66.77,60.77 96.43,66.85,61.4 94.48,64.32,60.695 96.35,64.88,59.53 96.6,64.25,58.29 94.02,62.82,54.49 95.01,62.09,54.14 94.99,62.24,54.42 94.27,60.97,55.14 93.7,60.52,54.92 93.99,61.78,55.86 96.64,63.42,56.41 98.12,65.05,57.63 96.26,64.78,56.96 96.04,66.0,57.67 96.88,66.75,58.87 94.69,70.78,58.46 96.1,72.84,58.11 96.76,74.06,58.75 96.91,74.86,58.34 96.69,73.49,58.21 100.53,71.19,60.04 100.75,71.28,59.56 101.5,71.25,59.04 103.01,70.95,58.7 101.87,71.01,58.0 101.03,71.1,57.6 101.12,71.48,57.07 101.17,71.22,57.52 102.26,71.2,57.59 102.52,71.83,58.65 104.58,71.97,59.08 105.97,72.24,59.67 105.8,72.83,59.55 105.92,72.59,59.7 105.91,73.12,59.1 106.72,73.71,59.38 106.13,73.15,58.83 105.67,72.59,58.36 105.19,73.37,58.96 107.68,74.09,59.55 109.56,74.89,60.01 108.99,75.7,59.7 109.99,76.11,61.02 111.12,76.32,60.25 109.81,75.71,60.04 110.96,76.09,60.83 108.54,74.99,61.17 108.66,75.24,61.04 109.02,74.88,60.9 110.44,75.04,59.5 112.04,75.37,60.21 112.1,75.31,60.13 109.85,75.64,60.51 107.48,75.69,60.89 106.91,75.97,60.9 107.13,75.55,60.9 105.97,74.99,60.64 105.68,75.56,57.68 105.08,75.51,57.77 104.35,75.9,57.72 97.82,76.04,56.9 94.83,75.34,56.42 93.74,75.19,56.23 93.64,76.0,57.36 95.18,74.96,56.25 94.19,74.22,56.39 93.24,74.25,56.25 92.72,70.54,56.31 92.79,70.82,56.64 93.42,71.05,57.49 92.51,70.07,56.23 90.34,71.11,56.3 90.52,70.62,55.82 93.88,70.83,55.53 93.49,69.89,54.88 94.56,69.46,54.8 94.2,68.72,54.55 95.22,68.75,54.62 96.43,68.78,54.6 97.9,69.68,55.44 99.62,69.35,55.15 100.41,69.4,55.29 100.35,69.5,55.15 99.86,69.27,54.89 98.46,69.06,54.82 97.72,68.8,54.62 97.92,68.47,54.61 98.63,68.77,55.59 99.03,68.16,55.3 98.94,69.05,55.22 99.65,68.56,55.58 98.83,67.45,54.865 97.34,66.82,55.04 97.46,67.24,55.57 97.14,67.54,55.35 97.55,67.8,55.53 95.33,67.33,55.31 95.1,68.35,55.38 95.91,67.81,55.81 95.55,67.43,55.61 96.1,68.01,56.13 93.4,64.73,54.68 92.04,63.08,53.69 93.59,63.69,54.85 94.4,64.55,56.74 95.6,65.97,57.12 95.89,66.01,56.99 94.99,64.77,56.77 95.53,65.3,56.75 95.94,65.05,56.91 96.68,66.38,56.51 96.98,66.62,56.32 97.42,67.4,57.48 96.87,67.46,56.48 98.79,67.58,57.59 98.78,67.4,57.41 99.83,67.55,56.92 99.87,67.5,56.76 99.96,67.93,57.54 99.43,67.55,57.6 98.66,68.25,57.9 97.34,68.09,57.95 96.67,68.42,58.31 102.95,69.26,57.85 104.34,69.58,58.21 104.21,69.38,58.05 106.05,69.63,57.63 104.48,68.84,56.73 105.79,69.29,55.94 105.87,70.24,55.42 107.48,73.5,55.9 108.37,73.93,55.36 108.81,74.28,55.2 108.0,74.28,55.62 107.93,75.52,55.47 108.18,74.54,55.47 109.48,75.44,55.25 109.38,75.58,55.37 109.22,75.68,55.8 109.08,75.99,55.53 109.36,76.34,54.94 108.51,76.49,55.85 108.85,76.99,56.4 108.03,77.12,57.09 107.57,77.18,57.29 106.94,77.2,57.29 106.82,77.29,56.8 106.0,77.51,56.4 106.1,76.99,56.23 106.73,76.8,56.31 107.73,77.95,56.18 107.7,78.32,56.02 108.36,78.08,56.32 105.52,77.37,55.3 103.13,76.65,54.35 105.44,77.23,54.71 107.95,76.09,53.98 111.77,75.47,53.9 115.57,76.04,54.11 114.92,75.63,53.74 113.58,75.76,53.01 113.57,75.21,53.3 113.55,75.73,53.98 114.62,76.19,54.39 112.71,76.11,54.43 112.88,75.95,54.04 113.09,76.32,54.19 113.95,76.79,53.98 112.18,77.21,53.45 113.05,76.28,54.14 112.52,75.25,53.84 113.0,74.42,53.53 113.05,74.35,53.35 113.89,74.64,53.14 114.06,74.48,53.46 116.05,74.67,53.3 116.3,73.5,52.92 117.34,73.76,53.16 116.98,73.06,52.95 117.63,73.58,53.08 117.55,73.13,52.76 117.47,73.8,52.61 117.12,73.8,53.15 117.06,73.57,53.59 116.6,73.62,53.63 117.65,74.49,54.18 118.25,74.16,53.67 115.59,73.58,53.63 114.48,73.48,53.59 113.72,72.83,53.53 113.54,72.58,53.07 111.49,72.32,52.5 111.59,71.57,52.98 109.83,71.29,51.77 108.84,75.9,52.75 110.41,77.71,54.49 111.06,78.56,54.62 110.88,78.96,54.58 107.79,79.19,53.57 108.43,80.38,53.93 105.71,80.6,54.22 107.11,81.8,54.59 109.99,80.51,55.44 109.95,80.35,55.85 110.06,79.98,55.77 111.73,79.83,56.1 111.8,80.31,57.12 111.23,80.26,57.59 111.79,80.98,57.43 111.57,80.86,57.59 111.46,81.11,58.17 110.52,80.25,57.97 109.49,79.19,58.51 109.9,79.5,57.21 109.11,80.92,57.5 109.95,82.22,57.44 111.03,83.27,58.76 112.12,83.3,58.65 113.95,82.79,58.75 113.3,82.6,58.77 115.19,83.24,59.31 115.19,82.9,58.75 115.82,83.46,57.71 115.97,83.4,57.66 116.64,83.93,57.65 116.95,83.76,57.7 117.06,84.0,57.44 116.29,83.72,57.11 116.52,83.41,57.01 117.26,83.52,56.86 116.76,82.86,56.35 116.73,82.87,56.32 115.82,82.89,55.52 116.15,83.6,55.35 116.02,83.49,55.99 116.61,82.64,56.46 117.91,82.89,57.13 118.99,83.02,58.2 119.11,82.63,57.88 119.75,82.88,58.1 119.25,82.18,58.03 119.04,82.27,57.85 120.0,80.73,58.0 119.99,81.65,58.45 119.78,81.86,57.89 120.0,82.36,57.66 120.08,82.44,57.76 119.97,84.35,58.44 121.88,85.29,58.7 121.94,83.36,58.46 121.95,82.98,56.12 121.63,81.7,55.9 121.35,80.71,55.22 128.75,80.03,53.9 128.53,81.0,53.87 129.08,81.6,55.06 130.29,81.73,55.73 131.53,77.34,55.24 132.04,78.25,55.22 132.42,77.81,55.81 132.12,78.37,56.22 133.29,78.48,56.11 135.02,78.68,56.58 135.51,79.4,56.86 135.345,78.66,56.73 135.72,79.31,57.35 136.7,80.15,57.54 137.11,79.65,57.57 136.53,79.36,57.64 136.66,80.27,57.48 136.93,79.28,56.78 136.99,78.97,56.87 139.79,79.98,57.14 138.96,80.02,57.12 139.78,80.55,57.1 139.34,79.97,56.68 139.52,79.66,56.2 139.0,80.2,55.74 138.68,81.37,55.19 139.14,82.1,54.53 139.2,81.65,54.63 138.99,83.36,54.27 140.46,85.24,54.54 140.69,85.15,54.8 139.99,84.72,55.78 141.46,84.3,55.81 139.84,83.76,55.54 141.42,83.59,55.89 140.92,83.74,55.85 140.64,83.67,56.81 140.88,84.0,57.23 143.8,84.0,57.35 144.12,84.13,57.54 143.93,84.87,58.16 143.66,86.22,58.39 143.7,84.83,58.44 144.77,84.52,58.32 144.02,83.83,58.22 143.66,84.2,57.92 143.34,84.25,58.02 143.17,83.71,57.95 141.63,83.45,57.88 141.8,82.84,57.58 141.05,82.34,57.51 141.83,83.08,58.08 141.2,82.64,58.35 140.68,83.37,59.04 142.44,84.1,60.08 142.27,83.72,60.61 143.64,84.72,61.11 144.53,85.39,60.96 143.68,85.38,61.56 143.79,86.07,61.3 143.65,85.97,60.06 146.58,86.16,60.18 147.51,85.92,60.5 147.06,86.37,60.59 146.53,86.1,60.83 148.96,84.44,60.95 153.01,83.59,60.94 153.99,84.77,60.98 153.26,85.77,60.66 153.95,85.36,60.27 156.1,84.21,59.93 155.7,84.48,60.45 155.47,83.7,59.98 150.25,81.85,59.73 152.54,80.83,59.82 153.06,80.83,61.36 153.99,82.93,61.23 153.8,82.11,61.15 153.34,82.22,61.89 153.87,82.27,62.9 153.61,81.86,63.3 153.67,82.83,63.26 152.76,83.57,63.61 153.18,85.64,63.75 155.45,86.62,64.57 153.93,87.31,64.27 154.45,87.46,64.16 155.37,86.18,63.5 154.99,86.65,62.24 148.98,86.17,62.19 145.42,86.11,61.29 146.59,86.04,60.92 145.16,84.87,60.27 144.29,84.45,60.09 142.27,84.72,60.14 146.34,86.2,60.9 145.01,85.74,59.86 145.87,86.24,59.96 145.63,87.36,59.51 146.28,88.64,59.81 145.82,88.42,59.64 143.73,87.72,58.96 145.83,88.13,59.18 143.68,86.8,58.36 144.02,86.74,58.31 143.5,86.68,58.25 144.09,86.83,57.94 142.73,85.96,57.6 144.18,87.31,58.04 145.06,87.23,57.81 145.53,87.65,57.9 145.74,88.65,58.54 147.77,88.33,58.38 149.04,88.61,58.76 149.56,88.28,58.33 150.08,88.45,58.21 151.02,89.78,58.11 150.34,89.96,58.03 150.27,90.52,57.98 152.09,90.67,58.02 152.74,91.39,58.55 153.46,91.84,57.94 150.56,92.21,59.5 149.5,91.01,54.0 148.73,90.68,53.98 158.59,90.43,54.73 157.14,90.43,55.43 155.57,90.4,55.68 156.39,90.37,55.44 158.81,89.2,55.63 160.08,88.58,54.52 161.06,88.51,53.74 155.32,86.99,53.07 157.48,87.48,53.18 159.85,88.6,53.22 161.6,87.92,53.15 160.95,88.19,53.5 157.86,87.13,53.04 157.5,87.37,52.7 157.21,87.2,53.15 159.78,86.41,54.45 159.98,86.21,54.08 159.27,86.51,53.94 159.86,86.88,54.36 161.47,87.3,54.4 162.91,86.94,54.1 163.35,87.66,54.52 164.0,88.12,54.86 164.05,87.87,54.93 162.08,86.66,55.13 161.91,85.72,54.31 161.26,86.35,53.47 158.63,85.12,53.49 161.5,87.01,54.02 160.86,87.74,53.54 159.65,85.97,54.29 158.28,84.58,54.53 159.88,85.48,54.67 158.67,85.48,54.69 158.73,85.84,54.62 156.07,85.65,55.15 153.39,84.99,55.01 151.89,84.29,55.09 150.55,83.5,54.95 153.14,83.02,55.13 154.23,84.1,54.99 153.28,83.69,54.5 154.12,84.87,53.71 153.81,85.84,53.81 154.48,85.69,53.99 153.48,85.64,53.93 155.39,86.0,54.6 155.3,89.44,55.17 155.84,89.1,55.02 155.9,89.08,55.42 156.55,89.26,55.64 156.0,89.8,55.97 156.99,89.93,55.72 159.88,89.36,54.91 160.47,88.88,54.51 159.76,89.09,55.21 155.98,89.65,55.4 156.25,90.0,54.57 156.17,89.94,54.27 157.1,90.23,54.28 156.41,90.04,54.16 157.41,90.28,54.91 163.05,91.19,54.88 166.72,90.37,55.17 169.04,90.54,54.84 166.89,90.56,55.13 168.11,90.02,54.87 172.5,94.25,56.03 174.25,92.43,56.57 174.81,92.11,57.22 176.24,92.66,57.91 175.88,91.61,57.36 174.67,91.07,57.04 173.97,91.37,56.64 171.34,91.02,56.93 169.08,90.39,56.7 171.1,90.97,57.24 170.15,90.95,56.93 169.98,92.33,56.81 173.14,92.45,57.26 174.96,91.83,57.14 174.97,92.36,56.8 174.09,92.88,55.91 173.07,94.53,56.66 169.48,94.17,57.51 171.85,94.11,57.82 171.05,93.03,57.32 169.8,93.63,58.76 169.64,90.66,59.34 169.01,91.29,59.28 169.32,92.8,59.14 169.37,92.52,58.61 172.67,92.33,59.07 171.7,93.37,59.27 172.27,93.94,59.49 172.22,92.2,59.7 173.97,93.15,58.29 176.42,94.49,58.03 174.54,93.28,58.01 174.35,92.1,57.73 175.01,91.62,57.58 175.01,90.76,57.3 170.57,90.67,57.14 170.6,90.8,57.27 171.08,90.57,57.81 169.23,90.34,57.43 172.26,90.55,57.63 172.23,89.91,58.71 173.03,90.66,58.93 175.0,91.88,59.61 174.35,92.82,59.31 174.33,92.12,59.18 174.29,92.38,59.82 175.28,93.55,60.0 177.09,96.57,60.4 176.19,95.86,60.56 179.1,97.28,60.66 179.26,97.5,61.09 178.46,97.8,61.26 177.0,97.33,61.41 177.04,96.76,61.69 174.22,95.84,60.83 171.11,97.68,60.55 171.51,99.0,57.99 167.96,99.18,57.02 166.97,99.8,57.19 167.43,99.46,56.81 167.78,99.12,56.0 160.5,103.87,55.77 156.49,101.06,54.69 163.03,102.76,55.61 159.54,102.63,54.46 ================================================ FILE: tf2.0/auto-mpg.data ================================================ 18.0 8 307.0 130.0 3504. 12.0 70 1 "chevrolet chevelle malibu" 15.0 8 350.0 165.0 3693. 11.5 70 1 "buick skylark 320" 18.0 8 318.0 150.0 3436. 11.0 70 1 "plymouth satellite" 16.0 8 304.0 150.0 3433. 12.0 70 1 "amc rebel sst" 17.0 8 302.0 140.0 3449. 10.5 70 1 "ford torino" 15.0 8 429.0 198.0 4341. 10.0 70 1 "ford galaxie 500" 14.0 8 454.0 220.0 4354. 9.0 70 1 "chevrolet impala" 14.0 8 440.0 215.0 4312. 8.5 70 1 "plymouth fury iii" 14.0 8 455.0 225.0 4425. 10.0 70 1 "pontiac catalina" 15.0 8 390.0 190.0 3850. 8.5 70 1 "amc ambassador dpl" 15.0 8 383.0 170.0 3563. 10.0 70 1 "dodge challenger se" 14.0 8 340.0 160.0 3609. 8.0 70 1 "plymouth 'cuda 340" 15.0 8 400.0 150.0 3761. 9.5 70 1 "chevrolet monte carlo" 14.0 8 455.0 225.0 3086. 10.0 70 1 "buick estate wagon (sw)" 24.0 4 113.0 95.00 2372. 15.0 70 3 "toyota corona mark ii" 22.0 6 198.0 95.00 2833. 15.5 70 1 "plymouth duster" 18.0 6 199.0 97.00 2774. 15.5 70 1 "amc hornet" 21.0 6 200.0 85.00 2587. 16.0 70 1 "ford maverick" 27.0 4 97.00 88.00 2130. 14.5 70 3 "datsun pl510" 26.0 4 97.00 46.00 1835. 20.5 70 2 "volkswagen 1131 deluxe sedan" 25.0 4 110.0 87.00 2672. 17.5 70 2 "peugeot 504" 24.0 4 107.0 90.00 2430. 14.5 70 2 "audi 100 ls" 25.0 4 104.0 95.00 2375. 17.5 70 2 "saab 99e" 26.0 4 121.0 113.0 2234. 12.5 70 2 "bmw 2002" 21.0 6 199.0 90.00 2648. 15.0 70 1 "amc gremlin" 10.0 8 360.0 215.0 4615. 14.0 70 1 "ford f250" 10.0 8 307.0 200.0 4376. 15.0 70 1 "chevy c20" 11.0 8 318.0 210.0 4382. 13.5 70 1 "dodge d200" 9.0 8 304.0 193.0 4732. 18.5 70 1 "hi 1200d" 27.0 4 97.00 88.00 2130. 14.5 71 3 "datsun pl510" 28.0 4 140.0 90.00 2264. 15.5 71 1 "chevrolet vega 2300" 25.0 4 113.0 95.00 2228. 14.0 71 3 "toyota corona" 25.0 4 98.00 ? 2046. 19.0 71 1 "ford pinto" 19.0 6 232.0 100.0 2634. 13.0 71 1 "amc gremlin" 16.0 6 225.0 105.0 3439. 15.5 71 1 "plymouth satellite custom" 17.0 6 250.0 100.0 3329. 15.5 71 1 "chevrolet chevelle malibu" 19.0 6 250.0 88.00 3302. 15.5 71 1 "ford torino 500" 18.0 6 232.0 100.0 3288. 15.5 71 1 "amc matador" 14.0 8 350.0 165.0 4209. 12.0 71 1 "chevrolet impala" 14.0 8 400.0 175.0 4464. 11.5 71 1 "pontiac catalina brougham" 14.0 8 351.0 153.0 4154. 13.5 71 1 "ford galaxie 500" 14.0 8 318.0 150.0 4096. 13.0 71 1 "plymouth fury iii" 12.0 8 383.0 180.0 4955. 11.5 71 1 "dodge monaco (sw)" 13.0 8 400.0 170.0 4746. 12.0 71 1 "ford country squire (sw)" 13.0 8 400.0 175.0 5140. 12.0 71 1 "pontiac safari (sw)" 18.0 6 258.0 110.0 2962. 13.5 71 1 "amc hornet sportabout (sw)" 22.0 4 140.0 72.00 2408. 19.0 71 1 "chevrolet vega (sw)" 19.0 6 250.0 100.0 3282. 15.0 71 1 "pontiac firebird" 18.0 6 250.0 88.00 3139. 14.5 71 1 "ford mustang" 23.0 4 122.0 86.00 2220. 14.0 71 1 "mercury capri 2000" 28.0 4 116.0 90.00 2123. 14.0 71 2 "opel 1900" 30.0 4 79.00 70.00 2074. 19.5 71 2 "peugeot 304" 30.0 4 88.00 76.00 2065. 14.5 71 2 "fiat 124b" 31.0 4 71.00 65.00 1773. 19.0 71 3 "toyota corolla 1200" 35.0 4 72.00 69.00 1613. 18.0 71 3 "datsun 1200" 27.0 4 97.00 60.00 1834. 19.0 71 2 "volkswagen model 111" 26.0 4 91.00 70.00 1955. 20.5 71 1 "plymouth cricket" 24.0 4 113.0 95.00 2278. 15.5 72 3 "toyota corona hardtop" 25.0 4 97.50 80.00 2126. 17.0 72 1 "dodge colt hardtop" 23.0 4 97.00 54.00 2254. 23.5 72 2 "volkswagen type 3" 20.0 4 140.0 90.00 2408. 19.5 72 1 "chevrolet vega" 21.0 4 122.0 86.00 2226. 16.5 72 1 "ford pinto runabout" 13.0 8 350.0 165.0 4274. 12.0 72 1 "chevrolet impala" 14.0 8 400.0 175.0 4385. 12.0 72 1 "pontiac catalina" 15.0 8 318.0 150.0 4135. 13.5 72 1 "plymouth fury iii" 14.0 8 351.0 153.0 4129. 13.0 72 1 "ford galaxie 500" 17.0 8 304.0 150.0 3672. 11.5 72 1 "amc ambassador sst" 11.0 8 429.0 208.0 4633. 11.0 72 1 "mercury marquis" 13.0 8 350.0 155.0 4502. 13.5 72 1 "buick lesabre custom" 12.0 8 350.0 160.0 4456. 13.5 72 1 "oldsmobile delta 88 royale" 13.0 8 400.0 190.0 4422. 12.5 72 1 "chrysler newport royal" 19.0 3 70.00 97.00 2330. 13.5 72 3 "mazda rx2 coupe" 15.0 8 304.0 150.0 3892. 12.5 72 1 "amc matador (sw)" 13.0 8 307.0 130.0 4098. 14.0 72 1 "chevrolet chevelle concours (sw)" 13.0 8 302.0 140.0 4294. 16.0 72 1 "ford gran torino (sw)" 14.0 8 318.0 150.0 4077. 14.0 72 1 "plymouth satellite custom (sw)" 18.0 4 121.0 112.0 2933. 14.5 72 2 "volvo 145e (sw)" 22.0 4 121.0 76.00 2511. 18.0 72 2 "volkswagen 411 (sw)" 21.0 4 120.0 87.00 2979. 19.5 72 2 "peugeot 504 (sw)" 26.0 4 96.00 69.00 2189. 18.0 72 2 "renault 12 (sw)" 22.0 4 122.0 86.00 2395. 16.0 72 1 "ford pinto (sw)" 28.0 4 97.00 92.00 2288. 17.0 72 3 "datsun 510 (sw)" 23.0 4 120.0 97.00 2506. 14.5 72 3 "toyouta corona mark ii (sw)" 28.0 4 98.00 80.00 2164. 15.0 72 1 "dodge colt (sw)" 27.0 4 97.00 88.00 2100. 16.5 72 3 "toyota corolla 1600 (sw)" 13.0 8 350.0 175.0 4100. 13.0 73 1 "buick century 350" 14.0 8 304.0 150.0 3672. 11.5 73 1 "amc matador" 13.0 8 350.0 145.0 3988. 13.0 73 1 "chevrolet malibu" 14.0 8 302.0 137.0 4042. 14.5 73 1 "ford gran torino" 15.0 8 318.0 150.0 3777. 12.5 73 1 "dodge coronet custom" 12.0 8 429.0 198.0 4952. 11.5 73 1 "mercury marquis brougham" 13.0 8 400.0 150.0 4464. 12.0 73 1 "chevrolet caprice classic" 13.0 8 351.0 158.0 4363. 13.0 73 1 "ford ltd" 14.0 8 318.0 150.0 4237. 14.5 73 1 "plymouth fury gran sedan" 13.0 8 440.0 215.0 4735. 11.0 73 1 "chrysler new yorker brougham" 12.0 8 455.0 225.0 4951. 11.0 73 1 "buick electra 225 custom" 13.0 8 360.0 175.0 3821. 11.0 73 1 "amc ambassador brougham" 18.0 6 225.0 105.0 3121. 16.5 73 1 "plymouth valiant" 16.0 6 250.0 100.0 3278. 18.0 73 1 "chevrolet nova custom" 18.0 6 232.0 100.0 2945. 16.0 73 1 "amc hornet" 18.0 6 250.0 88.00 3021. 16.5 73 1 "ford maverick" 23.0 6 198.0 95.00 2904. 16.0 73 1 "plymouth duster" 26.0 4 97.00 46.00 1950. 21.0 73 2 "volkswagen super beetle" 11.0 8 400.0 150.0 4997. 14.0 73 1 "chevrolet impala" 12.0 8 400.0 167.0 4906. 12.5 73 1 "ford country" 13.0 8 360.0 170.0 4654. 13.0 73 1 "plymouth custom suburb" 12.0 8 350.0 180.0 4499. 12.5 73 1 "oldsmobile vista cruiser" 18.0 6 232.0 100.0 2789. 15.0 73 1 "amc gremlin" 20.0 4 97.00 88.00 2279. 19.0 73 3 "toyota carina" 21.0 4 140.0 72.00 2401. 19.5 73 1 "chevrolet vega" 22.0 4 108.0 94.00 2379. 16.5 73 3 "datsun 610" 18.0 3 70.00 90.00 2124. 13.5 73 3 "maxda rx3" 19.0 4 122.0 85.00 2310. 18.5 73 1 "ford pinto" 21.0 6 155.0 107.0 2472. 14.0 73 1 "mercury capri v6" 26.0 4 98.00 90.00 2265. 15.5 73 2 "fiat 124 sport coupe" 15.0 8 350.0 145.0 4082. 13.0 73 1 "chevrolet monte carlo s" 16.0 8 400.0 230.0 4278. 9.50 73 1 "pontiac grand prix" 29.0 4 68.00 49.00 1867. 19.5 73 2 "fiat 128" 24.0 4 116.0 75.00 2158. 15.5 73 2 "opel manta" 20.0 4 114.0 91.00 2582. 14.0 73 2 "audi 100ls" 19.0 4 121.0 112.0 2868. 15.5 73 2 "volvo 144ea" 15.0 8 318.0 150.0 3399. 11.0 73 1 "dodge dart custom" 24.0 4 121.0 110.0 2660. 14.0 73 2 "saab 99le" 20.0 6 156.0 122.0 2807. 13.5 73 3 "toyota mark ii" 11.0 8 350.0 180.0 3664. 11.0 73 1 "oldsmobile omega" 20.0 6 198.0 95.00 3102. 16.5 74 1 "plymouth duster" 21.0 6 200.0 ? 2875. 17.0 74 1 "ford maverick" 19.0 6 232.0 100.0 2901. 16.0 74 1 "amc hornet" 15.0 6 250.0 100.0 3336. 17.0 74 1 "chevrolet nova" 31.0 4 79.00 67.00 1950. 19.0 74 3 "datsun b210" 26.0 4 122.0 80.00 2451. 16.5 74 1 "ford pinto" 32.0 4 71.00 65.00 1836. 21.0 74 3 "toyota corolla 1200" 25.0 4 140.0 75.00 2542. 17.0 74 1 "chevrolet vega" 16.0 6 250.0 100.0 3781. 17.0 74 1 "chevrolet chevelle malibu classic" 16.0 6 258.0 110.0 3632. 18.0 74 1 "amc matador" 18.0 6 225.0 105.0 3613. 16.5 74 1 "plymouth satellite sebring" 16.0 8 302.0 140.0 4141. 14.0 74 1 "ford gran torino" 13.0 8 350.0 150.0 4699. 14.5 74 1 "buick century luxus (sw)" 14.0 8 318.0 150.0 4457. 13.5 74 1 "dodge coronet custom (sw)" 14.0 8 302.0 140.0 4638. 16.0 74 1 "ford gran torino (sw)" 14.0 8 304.0 150.0 4257. 15.5 74 1 "amc matador (sw)" 29.0 4 98.00 83.00 2219. 16.5 74 2 "audi fox" 26.0 4 79.00 67.00 1963. 15.5 74 2 "volkswagen dasher" 26.0 4 97.00 78.00 2300. 14.5 74 2 "opel manta" 31.0 4 76.00 52.00 1649. 16.5 74 3 "toyota corona" 32.0 4 83.00 61.00 2003. 19.0 74 3 "datsun 710" 28.0 4 90.00 75.00 2125. 14.5 74 1 "dodge colt" 24.0 4 90.00 75.00 2108. 15.5 74 2 "fiat 128" 26.0 4 116.0 75.00 2246. 14.0 74 2 "fiat 124 tc" 24.0 4 120.0 97.00 2489. 15.0 74 3 "honda civic" 26.0 4 108.0 93.00 2391. 15.5 74 3 "subaru" 31.0 4 79.00 67.00 2000. 16.0 74 2 "fiat x1.9" 19.0 6 225.0 95.00 3264. 16.0 75 1 "plymouth valiant custom" 18.0 6 250.0 105.0 3459. 16.0 75 1 "chevrolet nova" 15.0 6 250.0 72.00 3432. 21.0 75 1 "mercury monarch" 15.0 6 250.0 72.00 3158. 19.5 75 1 "ford maverick" 16.0 8 400.0 170.0 4668. 11.5 75 1 "pontiac catalina" 15.0 8 350.0 145.0 4440. 14.0 75 1 "chevrolet bel air" 16.0 8 318.0 150.0 4498. 14.5 75 1 "plymouth grand fury" 14.0 8 351.0 148.0 4657. 13.5 75 1 "ford ltd" 17.0 6 231.0 110.0 3907. 21.0 75 1 "buick century" 16.0 6 250.0 105.0 3897. 18.5 75 1 "chevroelt chevelle malibu" 15.0 6 258.0 110.0 3730. 19.0 75 1 "amc matador" 18.0 6 225.0 95.00 3785. 19.0 75 1 "plymouth fury" 21.0 6 231.0 110.0 3039. 15.0 75 1 "buick skyhawk" 20.0 8 262.0 110.0 3221. 13.5 75 1 "chevrolet monza 2+2" 13.0 8 302.0 129.0 3169. 12.0 75 1 "ford mustang ii" 29.0 4 97.00 75.00 2171. 16.0 75 3 "toyota corolla" 23.0 4 140.0 83.00 2639. 17.0 75 1 "ford pinto" 20.0 6 232.0 100.0 2914. 16.0 75 1 "amc gremlin" 23.0 4 140.0 78.00 2592. 18.5 75 1 "pontiac astro" 24.0 4 134.0 96.00 2702. 13.5 75 3 "toyota corona" 25.0 4 90.00 71.00 2223. 16.5 75 2 "volkswagen dasher" 24.0 4 119.0 97.00 2545. 17.0 75 3 "datsun 710" 18.0 6 171.0 97.00 2984. 14.5 75 1 "ford pinto" 29.0 4 90.00 70.00 1937. 14.0 75 2 "volkswagen rabbit" 19.0 6 232.0 90.00 3211. 17.0 75 1 "amc pacer" 23.0 4 115.0 95.00 2694. 15.0 75 2 "audi 100ls" 23.0 4 120.0 88.00 2957. 17.0 75 2 "peugeot 504" 22.0 4 121.0 98.00 2945. 14.5 75 2 "volvo 244dl" 25.0 4 121.0 115.0 2671. 13.5 75 2 "saab 99le" 33.0 4 91.00 53.00 1795. 17.5 75 3 "honda civic cvcc" 28.0 4 107.0 86.00 2464. 15.5 76 2 "fiat 131" 25.0 4 116.0 81.00 2220. 16.9 76 2 "opel 1900" 25.0 4 140.0 92.00 2572. 14.9 76 1 "capri ii" 26.0 4 98.00 79.00 2255. 17.7 76 1 "dodge colt" 27.0 4 101.0 83.00 2202. 15.3 76 2 "renault 12tl" 17.5 8 305.0 140.0 4215. 13.0 76 1 "chevrolet chevelle malibu classic" 16.0 8 318.0 150.0 4190. 13.0 76 1 "dodge coronet brougham" 15.5 8 304.0 120.0 3962. 13.9 76 1 "amc matador" 14.5 8 351.0 152.0 4215. 12.8 76 1 "ford gran torino" 22.0 6 225.0 100.0 3233. 15.4 76 1 "plymouth valiant" 22.0 6 250.0 105.0 3353. 14.5 76 1 "chevrolet nova" 24.0 6 200.0 81.00 3012. 17.6 76 1 "ford maverick" 22.5 6 232.0 90.00 3085. 17.6 76 1 "amc hornet" 29.0 4 85.00 52.00 2035. 22.2 76 1 "chevrolet chevette" 24.5 4 98.00 60.00 2164. 22.1 76 1 "chevrolet woody" 29.0 4 90.00 70.00 1937. 14.2 76 2 "vw rabbit" 33.0 4 91.00 53.00 1795. 17.4 76 3 "honda civic" 20.0 6 225.0 100.0 3651. 17.7 76 1 "dodge aspen se" 18.0 6 250.0 78.00 3574. 21.0 76 1 "ford granada ghia" 18.5 6 250.0 110.0 3645. 16.2 76 1 "pontiac ventura sj" 17.5 6 258.0 95.00 3193. 17.8 76 1 "amc pacer d/l" 29.5 4 97.00 71.00 1825. 12.2 76 2 "volkswagen rabbit" 32.0 4 85.00 70.00 1990. 17.0 76 3 "datsun b-210" 28.0 4 97.00 75.00 2155. 16.4 76 3 "toyota corolla" 26.5 4 140.0 72.00 2565. 13.6 76 1 "ford pinto" 20.0 4 130.0 102.0 3150. 15.7 76 2 "volvo 245" 13.0 8 318.0 150.0 3940. 13.2 76 1 "plymouth volare premier v8" 19.0 4 120.0 88.00 3270. 21.9 76 2 "peugeot 504" 19.0 6 156.0 108.0 2930. 15.5 76 3 "toyota mark ii" 16.5 6 168.0 120.0 3820. 16.7 76 2 "mercedes-benz 280s" 16.5 8 350.0 180.0 4380. 12.1 76 1 "cadillac seville" 13.0 8 350.0 145.0 4055. 12.0 76 1 "chevy c10" 13.0 8 302.0 130.0 3870. 15.0 76 1 "ford f108" 13.0 8 318.0 150.0 3755. 14.0 76 1 "dodge d100" 31.5 4 98.00 68.00 2045. 18.5 77 3 "honda accord cvcc" 30.0 4 111.0 80.00 2155. 14.8 77 1 "buick opel isuzu deluxe" 36.0 4 79.00 58.00 1825. 18.6 77 2 "renault 5 gtl" 25.5 4 122.0 96.00 2300. 15.5 77 1 "plymouth arrow gs" 33.5 4 85.00 70.00 1945. 16.8 77 3 "datsun f-10 hatchback" 17.5 8 305.0 145.0 3880. 12.5 77 1 "chevrolet caprice classic" 17.0 8 260.0 110.0 4060. 19.0 77 1 "oldsmobile cutlass supreme" 15.5 8 318.0 145.0 4140. 13.7 77 1 "dodge monaco brougham" 15.0 8 302.0 130.0 4295. 14.9 77 1 "mercury cougar brougham" 17.5 6 250.0 110.0 3520. 16.4 77 1 "chevrolet concours" 20.5 6 231.0 105.0 3425. 16.9 77 1 "buick skylark" 19.0 6 225.0 100.0 3630. 17.7 77 1 "plymouth volare custom" 18.5 6 250.0 98.00 3525. 19.0 77 1 "ford granada" 16.0 8 400.0 180.0 4220. 11.1 77 1 "pontiac grand prix lj" 15.5 8 350.0 170.0 4165. 11.4 77 1 "chevrolet monte carlo landau" 15.5 8 400.0 190.0 4325. 12.2 77 1 "chrysler cordoba" 16.0 8 351.0 149.0 4335. 14.5 77 1 "ford thunderbird" 29.0 4 97.00 78.00 1940. 14.5 77 2 "volkswagen rabbit custom" 24.5 4 151.0 88.00 2740. 16.0 77 1 "pontiac sunbird coupe" 26.0 4 97.00 75.00 2265. 18.2 77 3 "toyota corolla liftback" 25.5 4 140.0 89.00 2755. 15.8 77 1 "ford mustang ii 2+2" 30.5 4 98.00 63.00 2051. 17.0 77 1 "chevrolet chevette" 33.5 4 98.00 83.00 2075. 15.9 77 1 "dodge colt m/m" 30.0 4 97.00 67.00 1985. 16.4 77 3 "subaru dl" 30.5 4 97.00 78.00 2190. 14.1 77 2 "volkswagen dasher" 22.0 6 146.0 97.00 2815. 14.5 77 3 "datsun 810" 21.5 4 121.0 110.0 2600. 12.8 77 2 "bmw 320i" 21.5 3 80.00 110.0 2720. 13.5 77 3 "mazda rx-4" 43.1 4 90.00 48.00 1985. 21.5 78 2 "volkswagen rabbit custom diesel" 36.1 4 98.00 66.00 1800. 14.4 78 1 "ford fiesta" 32.8 4 78.00 52.00 1985. 19.4 78 3 "mazda glc deluxe" 39.4 4 85.00 70.00 2070. 18.6 78 3 "datsun b210 gx" 36.1 4 91.00 60.00 1800. 16.4 78 3 "honda civic cvcc" 19.9 8 260.0 110.0 3365. 15.5 78 1 "oldsmobile cutlass salon brougham" 19.4 8 318.0 140.0 3735. 13.2 78 1 "dodge diplomat" 20.2 8 302.0 139.0 3570. 12.8 78 1 "mercury monarch ghia" 19.2 6 231.0 105.0 3535. 19.2 78 1 "pontiac phoenix lj" 20.5 6 200.0 95.00 3155. 18.2 78 1 "chevrolet malibu" 20.2 6 200.0 85.00 2965. 15.8 78 1 "ford fairmont (auto)" 25.1 4 140.0 88.00 2720. 15.4 78 1 "ford fairmont (man)" 20.5 6 225.0 100.0 3430. 17.2 78 1 "plymouth volare" 19.4 6 232.0 90.00 3210. 17.2 78 1 "amc concord" 20.6 6 231.0 105.0 3380. 15.8 78 1 "buick century special" 20.8 6 200.0 85.00 3070. 16.7 78 1 "mercury zephyr" 18.6 6 225.0 110.0 3620. 18.7 78 1 "dodge aspen" 18.1 6 258.0 120.0 3410. 15.1 78 1 "amc concord d/l" 19.2 8 305.0 145.0 3425. 13.2 78 1 "chevrolet monte carlo landau" 17.7 6 231.0 165.0 3445. 13.4 78 1 "buick regal sport coupe (turbo)" 18.1 8 302.0 139.0 3205. 11.2 78 1 "ford futura" 17.5 8 318.0 140.0 4080. 13.7 78 1 "dodge magnum xe" 30.0 4 98.00 68.00 2155. 16.5 78 1 "chevrolet chevette" 27.5 4 134.0 95.00 2560. 14.2 78 3 "toyota corona" 27.2 4 119.0 97.00 2300. 14.7 78 3 "datsun 510" 30.9 4 105.0 75.00 2230. 14.5 78 1 "dodge omni" 21.1 4 134.0 95.00 2515. 14.8 78 3 "toyota celica gt liftback" 23.2 4 156.0 105.0 2745. 16.7 78 1 "plymouth sapporo" 23.8 4 151.0 85.00 2855. 17.6 78 1 "oldsmobile starfire sx" 23.9 4 119.0 97.00 2405. 14.9 78 3 "datsun 200-sx" 20.3 5 131.0 103.0 2830. 15.9 78 2 "audi 5000" 17.0 6 163.0 125.0 3140. 13.6 78 2 "volvo 264gl" 21.6 4 121.0 115.0 2795. 15.7 78 2 "saab 99gle" 16.2 6 163.0 133.0 3410. 15.8 78 2 "peugeot 604sl" 31.5 4 89.00 71.00 1990. 14.9 78 2 "volkswagen scirocco" 29.5 4 98.00 68.00 2135. 16.6 78 3 "honda accord lx" 21.5 6 231.0 115.0 3245. 15.4 79 1 "pontiac lemans v6" 19.8 6 200.0 85.00 2990. 18.2 79 1 "mercury zephyr 6" 22.3 4 140.0 88.00 2890. 17.3 79 1 "ford fairmont 4" 20.2 6 232.0 90.00 3265. 18.2 79 1 "amc concord dl 6" 20.6 6 225.0 110.0 3360. 16.6 79 1 "dodge aspen 6" 17.0 8 305.0 130.0 3840. 15.4 79 1 "chevrolet caprice classic" 17.6 8 302.0 129.0 3725. 13.4 79 1 "ford ltd landau" 16.5 8 351.0 138.0 3955. 13.2 79 1 "mercury grand marquis" 18.2 8 318.0 135.0 3830. 15.2 79 1 "dodge st. regis" 16.9 8 350.0 155.0 4360. 14.9 79 1 "buick estate wagon (sw)" 15.5 8 351.0 142.0 4054. 14.3 79 1 "ford country squire (sw)" 19.2 8 267.0 125.0 3605. 15.0 79 1 "chevrolet malibu classic (sw)" 18.5 8 360.0 150.0 3940. 13.0 79 1 "chrysler lebaron town @ country (sw)" 31.9 4 89.00 71.00 1925. 14.0 79 2 "vw rabbit custom" 34.1 4 86.00 65.00 1975. 15.2 79 3 "maxda glc deluxe" 35.7 4 98.00 80.00 1915. 14.4 79 1 "dodge colt hatchback custom" 27.4 4 121.0 80.00 2670. 15.0 79 1 "amc spirit dl" 25.4 5 183.0 77.00 3530. 20.1 79 2 "mercedes benz 300d" 23.0 8 350.0 125.0 3900. 17.4 79 1 "cadillac eldorado" 27.2 4 141.0 71.00 3190. 24.8 79 2 "peugeot 504" 23.9 8 260.0 90.00 3420. 22.2 79 1 "oldsmobile cutlass salon brougham" 34.2 4 105.0 70.00 2200. 13.2 79 1 "plymouth horizon" 34.5 4 105.0 70.00 2150. 14.9 79 1 "plymouth horizon tc3" 31.8 4 85.00 65.00 2020. 19.2 79 3 "datsun 210" 37.3 4 91.00 69.00 2130. 14.7 79 2 "fiat strada custom" 28.4 4 151.0 90.00 2670. 16.0 79 1 "buick skylark limited" 28.8 6 173.0 115.0 2595. 11.3 79 1 "chevrolet citation" 26.8 6 173.0 115.0 2700. 12.9 79 1 "oldsmobile omega brougham" 33.5 4 151.0 90.00 2556. 13.2 79 1 "pontiac phoenix" 41.5 4 98.00 76.00 2144. 14.7 80 2 "vw rabbit" 38.1 4 89.00 60.00 1968. 18.8 80 3 "toyota corolla tercel" 32.1 4 98.00 70.00 2120. 15.5 80 1 "chevrolet chevette" 37.2 4 86.00 65.00 2019. 16.4 80 3 "datsun 310" 28.0 4 151.0 90.00 2678. 16.5 80 1 "chevrolet citation" 26.4 4 140.0 88.00 2870. 18.1 80 1 "ford fairmont" 24.3 4 151.0 90.00 3003. 20.1 80 1 "amc concord" 19.1 6 225.0 90.00 3381. 18.7 80 1 "dodge aspen" 34.3 4 97.00 78.00 2188. 15.8 80 2 "audi 4000" 29.8 4 134.0 90.00 2711. 15.5 80 3 "toyota corona liftback" 31.3 4 120.0 75.00 2542. 17.5 80 3 "mazda 626" 37.0 4 119.0 92.00 2434. 15.0 80 3 "datsun 510 hatchback" 32.2 4 108.0 75.00 2265. 15.2 80 3 "toyota corolla" 46.6 4 86.00 65.00 2110. 17.9 80 3 "mazda glc" 27.9 4 156.0 105.0 2800. 14.4 80 1 "dodge colt" 40.8 4 85.00 65.00 2110. 19.2 80 3 "datsun 210" 44.3 4 90.00 48.00 2085. 21.7 80 2 "vw rabbit c (diesel)" 43.4 4 90.00 48.00 2335. 23.7 80 2 "vw dasher (diesel)" 36.4 5 121.0 67.00 2950. 19.9 80 2 "audi 5000s (diesel)" 30.0 4 146.0 67.00 3250. 21.8 80 2 "mercedes-benz 240d" 44.6 4 91.00 67.00 1850. 13.8 80 3 "honda civic 1500 gl" 40.9 4 85.00 ? 1835. 17.3 80 2 "renault lecar deluxe" 33.8 4 97.00 67.00 2145. 18.0 80 3 "subaru dl" 29.8 4 89.00 62.00 1845. 15.3 80 2 "vokswagen rabbit" 32.7 6 168.0 132.0 2910. 11.4 80 3 "datsun 280-zx" 23.7 3 70.00 100.0 2420. 12.5 80 3 "mazda rx-7 gs" 35.0 4 122.0 88.00 2500. 15.1 80 2 "triumph tr7 coupe" 23.6 4 140.0 ? 2905. 14.3 80 1 "ford mustang cobra" 32.4 4 107.0 72.00 2290. 17.0 80 3 "honda accord" 27.2 4 135.0 84.00 2490. 15.7 81 1 "plymouth reliant" 26.6 4 151.0 84.00 2635. 16.4 81 1 "buick skylark" 25.8 4 156.0 92.00 2620. 14.4 81 1 "dodge aries wagon (sw)" 23.5 6 173.0 110.0 2725. 12.6 81 1 "chevrolet citation" 30.0 4 135.0 84.00 2385. 12.9 81 1 "plymouth reliant" 39.1 4 79.00 58.00 1755. 16.9 81 3 "toyota starlet" 39.0 4 86.00 64.00 1875. 16.4 81 1 "plymouth champ" 35.1 4 81.00 60.00 1760. 16.1 81 3 "honda civic 1300" 32.3 4 97.00 67.00 2065. 17.8 81 3 "subaru" 37.0 4 85.00 65.00 1975. 19.4 81 3 "datsun 210 mpg" 37.7 4 89.00 62.00 2050. 17.3 81 3 "toyota tercel" 34.1 4 91.00 68.00 1985. 16.0 81 3 "mazda glc 4" 34.7 4 105.0 63.00 2215. 14.9 81 1 "plymouth horizon 4" 34.4 4 98.00 65.00 2045. 16.2 81 1 "ford escort 4w" 29.9 4 98.00 65.00 2380. 20.7 81 1 "ford escort 2h" 33.0 4 105.0 74.00 2190. 14.2 81 2 "volkswagen jetta" 34.5 4 100.0 ? 2320. 15.8 81 2 "renault 18i" 33.7 4 107.0 75.00 2210. 14.4 81 3 "honda prelude" 32.4 4 108.0 75.00 2350. 16.8 81 3 "toyota corolla" 32.9 4 119.0 100.0 2615. 14.8 81 3 "datsun 200sx" 31.6 4 120.0 74.00 2635. 18.3 81 3 "mazda 626" 28.1 4 141.0 80.00 3230. 20.4 81 2 "peugeot 505s turbo diesel" 30.7 6 145.0 76.00 3160. 19.6 81 2 "volvo diesel" 25.4 6 168.0 116.0 2900. 12.6 81 3 "toyota cressida" 24.2 6 146.0 120.0 2930. 13.8 81 3 "datsun 810 maxima" 22.4 6 231.0 110.0 3415. 15.8 81 1 "buick century" 26.6 8 350.0 105.0 3725. 19.0 81 1 "oldsmobile cutlass ls" 20.2 6 200.0 88.00 3060. 17.1 81 1 "ford granada gl" 17.6 6 225.0 85.00 3465. 16.6 81 1 "chrysler lebaron salon" 28.0 4 112.0 88.00 2605. 19.6 82 1 "chevrolet cavalier" 27.0 4 112.0 88.00 2640. 18.6 82 1 "chevrolet cavalier wagon" 34.0 4 112.0 88.00 2395. 18.0 82 1 "chevrolet cavalier 2-door" 31.0 4 112.0 85.00 2575. 16.2 82 1 "pontiac j2000 se hatchback" 29.0 4 135.0 84.00 2525. 16.0 82 1 "dodge aries se" 27.0 4 151.0 90.00 2735. 18.0 82 1 "pontiac phoenix" 24.0 4 140.0 92.00 2865. 16.4 82 1 "ford fairmont futura" 23.0 4 151.0 ? 3035. 20.5 82 1 "amc concord dl" 36.0 4 105.0 74.00 1980. 15.3 82 2 "volkswagen rabbit l" 37.0 4 91.00 68.00 2025. 18.2 82 3 "mazda glc custom l" 31.0 4 91.00 68.00 1970. 17.6 82 3 "mazda glc custom" 38.0 4 105.0 63.00 2125. 14.7 82 1 "plymouth horizon miser" 36.0 4 98.00 70.00 2125. 17.3 82 1 "mercury lynx l" 36.0 4 120.0 88.00 2160. 14.5 82 3 "nissan stanza xe" 36.0 4 107.0 75.00 2205. 14.5 82 3 "honda accord" 34.0 4 108.0 70.00 2245 16.9 82 3 "toyota corolla" 38.0 4 91.00 67.00 1965. 15.0 82 3 "honda civic" 32.0 4 91.00 67.00 1965. 15.7 82 3 "honda civic (auto)" 38.0 4 91.00 67.00 1995. 16.2 82 3 "datsun 310 gx" 25.0 6 181.0 110.0 2945. 16.4 82 1 "buick century limited" 38.0 6 262.0 85.00 3015. 17.0 82 1 "oldsmobile cutlass ciera (diesel)" 26.0 4 156.0 92.00 2585. 14.5 82 1 "chrysler lebaron medallion" 22.0 6 232.0 112.0 2835 14.7 82 1 "ford granada l" 32.0 4 144.0 96.00 2665. 13.9 82 3 "toyota celica gt" 36.0 4 135.0 84.00 2370. 13.0 82 1 "dodge charger 2.2" 27.0 4 151.0 90.00 2950. 17.3 82 1 "chevrolet camaro" 27.0 4 140.0 86.00 2790. 15.6 82 1 "ford mustang gl" 44.0 4 97.00 52.00 2130. 24.6 82 2 "vw pickup" 32.0 4 135.0 84.00 2295. 11.6 82 1 "dodge rampage" 28.0 4 120.0 79.00 2625. 18.6 82 1 "ford ranger" 31.0 4 119.0 82.00 2720. 19.4 82 1 "chevy s-10" ================================================ FILE: tf2.0/daily-minimum-temperatures-in-me.csv ================================================ "Date","Daily minimum temperatures in Melbourne, Australia, 1981-1990" "1981-01-01",20.7 "1981-01-02",17.9 "1981-01-03",18.8 "1981-01-04",14.6 "1981-01-05",15.8 "1981-01-06",15.8 "1981-01-07",15.8 "1981-01-08",17.4 "1981-01-09",21.8 "1981-01-10",20.0 "1981-01-11",16.2 "1981-01-12",13.3 "1981-01-13",16.7 "1981-01-14",21.5 "1981-01-15",25.0 "1981-01-16",20.7 "1981-01-17",20.6 "1981-01-18",24.8 "1981-01-19",17.7 "1981-01-20",15.5 "1981-01-21",18.2 "1981-01-22",12.1 "1981-01-23",14.4 "1981-01-24",16.0 "1981-01-25",16.5 "1981-01-26",18.7 "1981-01-27",19.4 "1981-01-28",17.2 "1981-01-29",15.5 "1981-01-30",15.1 "1981-01-31",15.4 "1981-02-01",15.3 "1981-02-02",18.8 "1981-02-03",21.9 "1981-02-04",19.9 "1981-02-05",16.6 "1981-02-06",16.8 "1981-02-07",14.6 "1981-02-08",17.1 "1981-02-09",25.0 "1981-02-10",15.0 "1981-02-11",13.7 "1981-02-12",13.9 "1981-02-13",18.3 "1981-02-14",22.0 "1981-02-15",22.1 "1981-02-16",21.2 "1981-02-17",18.4 "1981-02-18",16.6 "1981-02-19",16.1 "1981-02-20",15.7 "1981-02-21",16.6 "1981-02-22",16.5 "1981-02-23",14.4 "1981-02-24",14.4 "1981-02-25",18.5 "1981-02-26",16.9 "1981-02-27",17.5 "1981-02-28",21.2 "1981-03-01",17.8 "1981-03-02",18.6 "1981-03-03",17.0 "1981-03-04",16.0 "1981-03-05",13.3 "1981-03-06",14.3 "1981-03-07",11.4 "1981-03-08",16.3 "1981-03-09",16.1 "1981-03-10",11.8 "1981-03-11",12.2 "1981-03-12",14.7 "1981-03-13",11.8 "1981-03-14",11.3 "1981-03-15",10.6 "1981-03-16",11.7 "1981-03-17",14.2 "1981-03-18",11.2 "1981-03-19",16.9 "1981-03-20",16.7 "1981-03-21",8.1 "1981-03-22",8.0 "1981-03-23",8.8 "1981-03-24",13.4 "1981-03-25",10.9 "1981-03-26",13.4 "1981-03-27",11.0 "1981-03-28",15.0 "1981-03-29",15.7 "1981-03-30",14.5 "1981-03-31",15.8 "1981-04-01",16.7 "1981-04-02",16.8 "1981-04-03",17.5 "1981-04-04",17.1 "1981-04-05",18.1 "1981-04-06",16.6 "1981-04-07",10.0 "1981-04-08",14.9 "1981-04-09",15.9 "1981-04-10",13.0 "1981-04-11",7.6 "1981-04-12",11.5 "1981-04-13",13.5 "1981-04-14",13.0 "1981-04-15",13.3 "1981-04-16",12.1 "1981-04-17",12.4 "1981-04-18",13.2 "1981-04-19",13.8 "1981-04-20",10.6 "1981-04-21",9.0 "1981-04-22",10.0 "1981-04-23",9.8 "1981-04-24",11.5 "1981-04-25",8.9 "1981-04-26",7.4 "1981-04-27",9.9 "1981-04-28",9.3 "1981-04-29",9.9 "1981-04-30",7.4 "1981-05-01",8.6 "1981-05-02",11.9 "1981-05-03",14.0 "1981-05-04",8.6 "1981-05-05",10.0 "1981-05-06",13.5 "1981-05-07",12.0 "1981-05-08",10.5 "1981-05-09",10.7 "1981-05-10",8.1 "1981-05-11",10.1 "1981-05-12",10.6 "1981-05-13",5.3 "1981-05-14",6.6 "1981-05-15",8.5 "1981-05-16",11.2 "1981-05-17",9.8 "1981-05-18",5.9 "1981-05-19",3.2 "1981-05-20",2.1 "1981-05-21",3.4 "1981-05-22",5.4 "1981-05-23",9.6 "1981-05-24",11.5 "1981-05-25",12.3 "1981-05-26",12.6 "1981-05-27",11.0 "1981-05-28",11.2 "1981-05-29",11.4 "1981-05-30",11.8 "1981-05-31",12.8 "1981-06-01",11.6 "1981-06-02",10.6 "1981-06-03",9.8 "1981-06-04",11.2 "1981-06-05",5.7 "1981-06-06",7.1 "1981-06-07",2.5 "1981-06-08",3.5 "1981-06-09",4.6 "1981-06-10",11.0 "1981-06-11",5.7 "1981-06-12",7.7 "1981-06-13",10.4 "1981-06-14",11.4 "1981-06-15",9.2 "1981-06-16",6.1 "1981-06-17",2.7 "1981-06-18",4.3 "1981-06-19",6.3 "1981-06-20",3.8 "1981-06-21",4.4 "1981-06-22",7.1 "1981-06-23",4.8 "1981-06-24",5.8 "1981-06-25",6.2 "1981-06-26",7.3 "1981-06-27",9.2 "1981-06-28",10.2 "1981-06-29",9.5 "1981-06-30",9.5 "1981-07-01",10.7 "1981-07-02",10.0 "1981-07-03",6.5 "1981-07-04",7.0 "1981-07-05",7.4 "1981-07-06",8.1 "1981-07-07",6.6 "1981-07-08",8.3 "1981-07-09",8.9 "1981-07-10",4.6 "1981-07-11",6.8 "1981-07-12",5.7 "1981-07-13",6.1 "1981-07-14",7.0 "1981-07-15",7.2 "1981-07-16",6.3 "1981-07-17",8.8 "1981-07-18",5.0 "1981-07-19",7.4 "1981-07-20",10.1 "1981-07-21",12.0 "1981-07-22",9.0 "1981-07-23",8.9 "1981-07-24",9.8 "1981-07-25",9.0 "1981-07-26",9.2 "1981-07-27",7.7 "1981-07-28",8.0 "1981-07-29",6.1 "1981-07-30",3.5 "1981-07-31",3.2 "1981-08-01",5.7 "1981-08-02",7.7 "1981-08-03",9.0 "1981-08-04",10.0 "1981-08-05",6.2 "1981-08-06",6.9 "1981-08-07",6.5 "1981-08-08",6.8 "1981-08-09",7.0 "1981-08-10",5.2 "1981-08-11",3.0 "1981-08-12",5.6 "1981-08-13",7.9 "1981-08-14",9.0 "1981-08-15",8.6 "1981-08-16",10.3 "1981-08-17",10.5 "1981-08-18",7.6 "1981-08-19",9.7 "1981-08-20",12.5 "1981-08-21",7.4 "1981-08-22",7.9 "1981-08-23",3.9 "1981-08-24",6.6 "1981-08-25",4.6 "1981-08-26",7.0 "1981-08-27",6.0 "1981-08-28",5.5 "1981-08-29",8.1 "1981-08-30",5.5 "1981-08-31",6.2 "1981-09-01",8.0 "1981-09-02",10.3 "1981-09-03",9.8 "1981-09-04",9.6 "1981-09-05",8.5 "1981-09-06",7.5 "1981-09-07",11.2 "1981-09-08",14.6 "1981-09-09",11.7 "1981-09-10",7.8 "1981-09-11",12.3 "1981-09-12",10.1 "1981-09-13",11.5 "1981-09-14",7.3 "1981-09-15",10.9 "1981-09-16",14.1 "1981-09-17",10.7 "1981-09-18",16.9 "1981-09-19",10.5 "1981-09-20",6.5 "1981-09-21",11.0 "1981-09-22",6.3 "1981-09-23",10.5 "1981-09-24",7.2 "1981-09-25",7.6 "1981-09-26",10.7 "1981-09-27",7.8 "1981-09-28",9.6 "1981-09-29",11.4 "1981-09-30",12.4 "1981-10-01",8.9 "1981-10-02",13.2 "1981-10-03",8.6 "1981-10-04",6.2 "1981-10-05",11.4 "1981-10-06",13.2 "1981-10-07",14.3 "1981-10-08",7.3 "1981-10-09",12.9 "1981-10-10",7.8 "1981-10-11",6.2 "1981-10-12",5.6 "1981-10-13",10.0 "1981-10-14",13.3 "1981-10-15",8.3 "1981-10-16",10.2 "1981-10-17",8.6 "1981-10-18",7.3 "1981-10-19",10.4 "1981-10-20",11.2 "1981-10-21",13.2 "1981-10-22",11.4 "1981-10-23",9.1 "1981-10-24",6.6 "1981-10-25",8.4 "1981-10-26",9.7 "1981-10-27",13.2 "1981-10-28",12.5 "1981-10-29",11.0 "1981-10-30",11.0 "1981-10-31",11.7 "1981-11-01",9.2 "1981-11-02",11.5 "1981-11-03",13.6 "1981-11-04",13.7 "1981-11-05",10.4 "1981-11-06",11.5 "1981-11-07",7.6 "1981-11-08",9.6 "1981-11-09",14.2 "1981-11-10",15.7 "1981-11-11",10.5 "1981-11-12",10.5 "1981-11-13",9.7 "1981-11-14",9.5 "1981-11-15",11.3 "1981-11-16",8.9 "1981-11-17",9.4 "1981-11-18",11.9 "1981-11-19",11.7 "1981-11-20",13.4 "1981-11-21",12.6 "1981-11-22",10.1 "1981-11-23",15.8 "1981-11-24",13.6 "1981-11-25",11.9 "1981-11-26",9.9 "1981-11-27",12.6 "1981-11-28",17.8 "1981-11-29",15.0 "1981-11-30",13.6 "1981-12-01",13.4 "1981-12-02",10.5 "1981-12-03",14.2 "1981-12-04",11.5 "1981-12-05",13.0 "1981-12-06",15.0 "1981-12-07",14.7 "1981-12-08",12.6 "1981-12-09",12.5 "1981-12-10",13.5 "1981-12-11",14.8 "1981-12-12",17.2 "1981-12-13",9.7 "1981-12-14",12.1 "1981-12-15",12.8 "1981-12-16",11.2 "1981-12-17",16.4 "1981-12-18",15.6 "1981-12-19",13.3 "1981-12-20",11.0 "1981-12-21",11.1 "1981-12-22",15.0 "1981-12-23",12.8 "1981-12-24",15.0 "1981-12-25",14.2 "1981-12-26",14.0 "1981-12-27",15.5 "1981-12-28",13.3 "1981-12-29",15.6 "1981-12-30",15.2 "1981-12-31",17.4 "1982-01-01",17.0 "1982-01-02",15.0 "1982-01-03",13.5 "1982-01-04",15.2 "1982-01-05",13.0 "1982-01-06",12.5 "1982-01-07",14.1 "1982-01-08",14.8 "1982-01-09",16.2 "1982-01-10",15.8 "1982-01-11",19.1 "1982-01-12",22.2 "1982-01-13",15.9 "1982-01-14",13.0 "1982-01-15",14.1 "1982-01-16",15.8 "1982-01-17",24.0 "1982-01-18",18.0 "1982-01-19",19.7 "1982-01-20",25.2 "1982-01-21",20.5 "1982-01-22",19.3 "1982-01-23",15.8 "1982-01-24",17.0 "1982-01-25",18.4 "1982-01-26",13.3 "1982-01-27",14.6 "1982-01-28",12.5 "1982-01-29",17.0 "1982-01-30",17.1 "1982-01-31",14.0 "1982-02-01",14.6 "1982-02-02",13.3 "1982-02-03",14.8 "1982-02-04",15.1 "1982-02-05",13.1 "1982-02-06",13.6 "1982-02-07",19.5 "1982-02-08",22.7 "1982-02-09",17.2 "1982-02-10",13.5 "1982-02-11",15.4 "1982-02-12",17.0 "1982-02-13",19.2 "1982-02-14",22.8 "1982-02-15",26.3 "1982-02-16",18.2 "1982-02-17",17.0 "1982-02-18",14.8 "1982-02-19",12.8 "1982-02-20",15.5 "1982-02-21",15.6 "1982-02-22",13.1 "1982-02-23",15.2 "1982-02-24",14.1 "1982-02-25",12.5 "1982-02-26",14.6 "1982-02-27",10.4 "1982-02-28",13.9 "1982-03-01",11.9 "1982-03-02",13.5 "1982-03-03",9.8 "1982-03-04",14.0 "1982-03-05",21.5 "1982-03-06",19.5 "1982-03-07",16.7 "1982-03-08",19.1 "1982-03-09",11.0 "1982-03-10",9.0 "1982-03-11",10.0 "1982-03-12",14.6 "1982-03-13",12.5 "1982-03-14",17.2 "1982-03-15",19.2 "1982-03-16",22.2 "1982-03-17",15.7 "1982-03-18",14.2 "1982-03-19",9.8 "1982-03-20",14.0 "1982-03-21",17.5 "1982-03-22",20.7 "1982-03-23",15.6 "1982-03-24",13.2 "1982-03-25",14.5 "1982-03-26",16.8 "1982-03-27",17.2 "1982-03-28",13.4 "1982-03-29",14.2 "1982-03-30",14.3 "1982-03-31",10.2 "1982-04-01",10.4 "1982-04-02",12.3 "1982-04-03",11.9 "1982-04-04",11.2 "1982-04-05",8.5 "1982-04-06",12.0 "1982-04-07",12.4 "1982-04-08",12.9 "1982-04-09",10.1 "1982-04-10",15.0 "1982-04-11",13.6 "1982-04-12",12.4 "1982-04-13",13.6 "1982-04-14",16.1 "1982-04-15",19.5 "1982-04-16",14.2 "1982-04-17",9.3 "1982-04-18",10.1 "1982-04-19",7.4 "1982-04-20",8.6 "1982-04-21",7.8 "1982-04-22",9.1 "1982-04-23",13.0 "1982-04-24",16.5 "1982-04-25",12.9 "1982-04-26",6.9 "1982-04-27",6.9 "1982-04-28",8.7 "1982-04-29",10.0 "1982-04-30",10.8 "1982-05-01",7.5 "1982-05-02",6.3 "1982-05-03",11.9 "1982-05-04",13.8 "1982-05-05",11.8 "1982-05-06",11.0 "1982-05-07",10.1 "1982-05-08",8.5 "1982-05-09",5.5 "1982-05-10",7.6 "1982-05-11",8.7 "1982-05-12",10.8 "1982-05-13",11.2 "1982-05-14",9.1 "1982-05-15",3.7 "1982-05-16",4.6 "1982-05-17",6.6 "1982-05-18",13.2 "1982-05-19",15.2 "1982-05-20",7.6 "1982-05-21",8.4 "1982-05-22",6.0 "1982-05-23",8.3 "1982-05-24",8.6 "1982-05-25",11.1 "1982-05-26",12.1 "1982-05-27",12.9 "1982-05-28",14.0 "1982-05-29",12.5 "1982-05-30",11.5 "1982-05-31",7.0 "1982-06-01",7.1 "1982-06-02",9.0 "1982-06-03",3.1 "1982-06-04",2.5 "1982-06-05",0.0 "1982-06-06",1.6 "1982-06-07",2.6 "1982-06-08",5.7 "1982-06-09",2.3 "1982-06-10",4.5 "1982-06-11",8.2 "1982-06-12",6.9 "1982-06-13",7.3 "1982-06-14",6.0 "1982-06-15",7.3 "1982-06-16",7.6 "1982-06-17",8.0 "1982-06-18",8.0 "1982-06-19",6.8 "1982-06-20",7.3 "1982-06-21",6.2 "1982-06-22",6.9 "1982-06-23",8.9 "1982-06-24",4.0 "1982-06-25",1.3 "1982-06-26",0.8 "1982-06-27",4.3 "1982-06-28",7.3 "1982-06-29",7.7 "1982-06-30",9.0 "1982-07-01",4.2 "1982-07-02",1.6 "1982-07-03",2.6 "1982-07-04",3.4 "1982-07-05",3.9 "1982-07-06",7.0 "1982-07-07",7.8 "1982-07-08",5.3 "1982-07-09",2.4 "1982-07-10",2.8 "1982-07-11",4.0 "1982-07-12",7.5 "1982-07-13",7.8 "1982-07-14",5.6 "1982-07-15",3.3 "1982-07-16",5.0 "1982-07-17",3.7 "1982-07-18",3.9 "1982-07-19",5.2 "1982-07-20",?0.2 "1982-07-21",?0.8 "1982-07-22",0.9 "1982-07-23",3.5 "1982-07-24",6.6 "1982-07-25",9.5 "1982-07-26",9.0 "1982-07-27",3.5 "1982-07-28",4.5 "1982-07-29",5.7 "1982-07-30",5.6 "1982-07-31",7.1 "1982-08-01",9.7 "1982-08-02",8.3 "1982-08-03",9.1 "1982-08-04",2.8 "1982-08-05",2.2 "1982-08-06",4.5 "1982-08-07",3.8 "1982-08-08",3.8 "1982-08-09",6.2 "1982-08-10",11.5 "1982-08-11",10.2 "1982-08-12",7.9 "1982-08-13",9.0 "1982-08-14",9.5 "1982-08-15",6.0 "1982-08-16",8.2 "1982-08-17",9.2 "1982-08-18",4.3 "1982-08-19",6.6 "1982-08-20",9.4 "1982-08-21",13.2 "1982-08-22",6.6 "1982-08-23",5.1 "1982-08-24",12.1 "1982-08-25",11.2 "1982-08-26",8.5 "1982-08-27",4.6 "1982-08-28",7.0 "1982-08-29",14.2 "1982-08-30",12.7 "1982-08-31",7.6 "1982-09-01",4.0 "1982-09-02",10.0 "1982-09-03",10.5 "1982-09-04",5.0 "1982-09-05",4.5 "1982-09-06",8.2 "1982-09-07",4.3 "1982-09-08",9.8 "1982-09-09",5.8 "1982-09-10",5.0 "1982-09-11",8.5 "1982-09-12",9.0 "1982-09-13",3.6 "1982-09-14",6.7 "1982-09-15",6.7 "1982-09-16",10.1 "1982-09-17",15.0 "1982-09-18",8.9 "1982-09-19",5.7 "1982-09-20",4.2 "1982-09-21",4.0 "1982-09-22",5.3 "1982-09-23",6.3 "1982-09-24",8.5 "1982-09-25",11.5 "1982-09-26",7.7 "1982-09-27",9.2 "1982-09-28",7.8 "1982-09-29",6.3 "1982-09-30",6.3 "1982-10-01",8.6 "1982-10-02",6.1 "1982-10-03",13.2 "1982-10-04",9.9 "1982-10-05",4.7 "1982-10-06",5.8 "1982-10-07",14.9 "1982-10-08",10.7 "1982-10-09",8.6 "1982-10-10",9.4 "1982-10-11",5.7 "1982-10-12",10.9 "1982-10-13",13.1 "1982-10-14",10.4 "1982-10-15",8.2 "1982-10-16",9.8 "1982-10-17",7.5 "1982-10-18",5.8 "1982-10-19",9.8 "1982-10-20",7.9 "1982-10-21",8.7 "1982-10-22",10.0 "1982-10-23",10.6 "1982-10-24",8.0 "1982-10-25",10.2 "1982-10-26",15.1 "1982-10-27",13.9 "1982-10-28",9.2 "1982-10-29",9.0 "1982-10-30",13.2 "1982-10-31",7.0 "1982-11-01",10.6 "1982-11-02",6.9 "1982-11-03",9.5 "1982-11-04",12.5 "1982-11-05",13.6 "1982-11-06",17.7 "1982-11-07",16.0 "1982-11-08",11.3 "1982-11-09",10.5 "1982-11-10",14.4 "1982-11-11",10.3 "1982-11-12",9.0 "1982-11-13",11.1 "1982-11-14",14.5 "1982-11-15",18.0 "1982-11-16",12.8 "1982-11-17",10.7 "1982-11-18",9.1 "1982-11-19",8.7 "1982-11-20",12.4 "1982-11-21",12.6 "1982-11-22",10.3 "1982-11-23",13.7 "1982-11-24",16.0 "1982-11-25",15.8 "1982-11-26",12.1 "1982-11-27",12.5 "1982-11-28",12.2 "1982-11-29",13.7 "1982-11-30",16.1 "1982-12-01",15.5 "1982-12-02",10.3 "1982-12-03",10.5 "1982-12-04",11.0 "1982-12-05",11.9 "1982-12-06",13.0 "1982-12-07",12.2 "1982-12-08",10.6 "1982-12-09",13.0 "1982-12-10",13.0 "1982-12-11",12.2 "1982-12-12",12.6 "1982-12-13",18.7 "1982-12-14",15.2 "1982-12-15",15.3 "1982-12-16",13.9 "1982-12-17",15.8 "1982-12-18",13.0 "1982-12-19",13.0 "1982-12-20",13.7 "1982-12-21",12.0 "1982-12-22",10.8 "1982-12-23",15.6 "1982-12-24",15.3 "1982-12-25",13.9 "1982-12-26",13.0 "1982-12-27",15.3 "1982-12-28",16.3 "1982-12-29",15.8 "1982-12-30",17.7 "1982-12-31",16.3 "1983-01-01",18.4 "1983-01-02",15.0 "1983-01-03",10.9 "1983-01-04",11.4 "1983-01-05",14.8 "1983-01-06",12.1 "1983-01-07",12.8 "1983-01-08",16.2 "1983-01-09",15.5 "1983-01-10",13.0 "1983-01-11",10.5 "1983-01-12",9.1 "1983-01-13",10.5 "1983-01-14",11.8 "1983-01-15",12.7 "1983-01-16",12.7 "1983-01-17",11.5 "1983-01-18",13.8 "1983-01-19",13.3 "1983-01-20",11.6 "1983-01-21",15.4 "1983-01-22",12.4 "1983-01-23",16.9 "1983-01-24",14.7 "1983-01-25",10.6 "1983-01-26",15.6 "1983-01-27",10.7 "1983-01-28",12.6 "1983-01-29",13.8 "1983-01-30",14.3 "1983-01-31",14.0 "1983-02-01",18.1 "1983-02-02",17.3 "1983-02-03",13.0 "1983-02-04",16.0 "1983-02-05",14.9 "1983-02-06",16.2 "1983-02-07",20.3 "1983-02-08",22.5 "1983-02-09",17.2 "1983-02-10",15.9 "1983-02-11",16.8 "1983-02-12",13.8 "1983-02-13",12.8 "1983-02-14",14.0 "1983-02-15",17.5 "1983-02-16",21.5 "1983-02-17",16.8 "1983-02-18",13.6 "1983-02-19",14.5 "1983-02-20",14.2 "1983-02-21",15.7 "1983-02-22",19.7 "1983-02-23",17.4 "1983-02-24",14.4 "1983-02-25",16.9 "1983-02-26",19.1 "1983-02-27",20.4 "1983-02-28",20.1 "1983-03-01",19.9 "1983-03-02",22.0 "1983-03-03",20.5 "1983-03-04",22.1 "1983-03-05",20.6 "1983-03-06",15.0 "1983-03-07",20.6 "1983-03-08",21.5 "1983-03-09",16.2 "1983-03-10",14.1 "1983-03-11",14.5 "1983-03-12",21.1 "1983-03-13",15.9 "1983-03-14",15.2 "1983-03-15",13.1 "1983-03-16",13.2 "1983-03-17",12.5 "1983-03-18",15.2 "1983-03-19",17.6 "1983-03-20",15.5 "1983-03-21",16.7 "1983-03-22",16.3 "1983-03-23",15.1 "1983-03-24",12.7 "1983-03-25",10.0 "1983-03-26",11.4 "1983-03-27",12.6 "1983-03-28",10.7 "1983-03-29",10.0 "1983-03-30",13.9 "1983-03-31",13.4 "1983-04-01",12.5 "1983-04-02",12.8 "1983-04-03",7.8 "1983-04-04",11.1 "1983-04-05",10.7 "1983-04-06",7.1 "1983-04-07",6.7 "1983-04-08",5.7 "1983-04-09",9.1 "1983-04-10",15.2 "1983-04-11",15.5 "1983-04-12",11.1 "1983-04-13",11.7 "1983-04-14",11.5 "1983-04-15",9.8 "1983-04-16",6.2 "1983-04-17",6.7 "1983-04-18",7.5 "1983-04-19",8.8 "1983-04-20",8.0 "1983-04-21",10.4 "1983-04-22",14.5 "1983-04-23",16.5 "1983-04-24",14.1 "1983-04-25",10.5 "1983-04-26",12.6 "1983-04-27",13.0 "1983-04-28",8.7 "1983-04-29",10.1 "1983-04-30",12.0 "1983-05-01",12.5 "1983-05-02",13.5 "1983-05-03",13.7 "1983-05-04",13.5 "1983-05-05",10.7 "1983-05-06",13.0 "1983-05-07",11.6 "1983-05-08",13.0 "1983-05-09",11.2 "1983-05-10",13.5 "1983-05-11",12.9 "1983-05-12",6.8 "1983-05-13",10.0 "1983-05-14",14.5 "1983-05-15",11.7 "1983-05-16",6.7 "1983-05-17",4.6 "1983-05-18",4.9 "1983-05-19",7.4 "1983-05-20",8.3 "1983-05-21",7.5 "1983-05-22",6.2 "1983-05-23",7.8 "1983-05-24",13.2 "1983-05-25",11.9 "1983-05-26",6.5 "1983-05-27",8.3 "1983-05-28",12.1 "1983-05-29",9.3 "1983-05-30",7.5 "1983-05-31",9.3 "1983-06-01",11.0 "1983-06-02",10.8 "1983-06-03",5.3 "1983-06-04",7.6 "1983-06-05",5.6 "1983-06-06",7.2 "1983-06-07",9.6 "1983-06-08",7.0 "1983-06-09",8.3 "1983-06-10",7.8 "1983-06-11",4.7 "1983-06-12",6.8 "1983-06-13",7.2 "1983-06-14",8.3 "1983-06-15",9.5 "1983-06-16",4.7 "1983-06-17",3.0 "1983-06-18",1.5 "1983-06-19",2.5 "1983-06-20",6.2 "1983-06-21",11.6 "1983-06-22",6.6 "1983-06-23",6.6 "1983-06-24",8.0 "1983-06-25",7.9 "1983-06-26",3.3 "1983-06-27",3.9 "1983-06-28",6.0 "1983-06-29",4.0 "1983-06-30",5.5 "1983-07-01",8.5 "1983-07-02",9.8 "1983-07-03",9.5 "1983-07-04",7.2 "1983-07-05",8.1 "1983-07-06",8.0 "1983-07-07",8.5 "1983-07-08",8.8 "1983-07-09",8.3 "1983-07-10",2.4 "1983-07-11",4.9 "1983-07-12",5.9 "1983-07-13",6.7 "1983-07-14",8.4 "1983-07-15",6.5 "1983-07-16",7.9 "1983-07-17",4.1 "1983-07-18",5.4 "1983-07-19",7.5 "1983-07-20",3.9 "1983-07-21",2.5 "1983-07-22",5.3 "1983-07-23",6.6 "1983-07-24",0.0 "1983-07-25",0.7 "1983-07-26",7.6 "1983-07-27",12.3 "1983-07-28",9.2 "1983-07-29",9.6 "1983-07-30",9.5 "1983-07-31",10.0 "1983-08-01",7.7 "1983-08-02",8.0 "1983-08-03",8.3 "1983-08-04",8.3 "1983-08-05",4.5 "1983-08-06",6.5 "1983-08-07",9.4 "1983-08-08",9.4 "1983-08-09",10.5 "1983-08-10",10.7 "1983-08-11",9.9 "1983-08-12",7.6 "1983-08-13",5.8 "1983-08-14",8.5 "1983-08-15",13.8 "1983-08-16",14.3 "1983-08-17",8.3 "1983-08-18",5.3 "1983-08-19",3.0 "1983-08-20",5.2 "1983-08-21",10.3 "1983-08-22",11.1 "1983-08-23",10.5 "1983-08-24",9.0 "1983-08-25",13.0 "1983-08-26",6.4 "1983-08-27",8.4 "1983-08-28",6.7 "1983-08-29",8.3 "1983-08-30",11.2 "1983-08-31",10.0 "1983-09-01",10.1 "1983-09-02",10.6 "1983-09-03",10.9 "1983-09-04",5.7 "1983-09-05",9.5 "1983-09-06",10.4 "1983-09-07",11.1 "1983-09-08",12.2 "1983-09-09",10.6 "1983-09-10",8.8 "1983-09-11",9.2 "1983-09-12",5.5 "1983-09-13",7.1 "1983-09-14",6.5 "1983-09-15",4.3 "1983-09-16",5.0 "1983-09-17",11.2 "1983-09-18",7.5 "1983-09-19",12.0 "1983-09-20",13.6 "1983-09-21",8.3 "1983-09-22",8.5 "1983-09-23",12.9 "1983-09-24",7.7 "1983-09-25",7.6 "1983-09-26",3.5 "1983-09-27",10.4 "1983-09-28",15.4 "1983-09-29",10.6 "1983-09-30",9.6 "1983-10-01",9.3 "1983-10-02",13.9 "1983-10-03",7.7 "1983-10-04",9.5 "1983-10-05",7.6 "1983-10-06",6.9 "1983-10-07",6.8 "1983-10-08",5.8 "1983-10-09",6.0 "1983-10-10",8.3 "1983-10-11",9.1 "1983-10-12",12.5 "1983-10-13",13.2 "1983-10-14",16.2 "1983-10-15",12.5 "1983-10-16",11.8 "1983-10-17",10.6 "1983-10-18",10.0 "1983-10-19",12.2 "1983-10-20",8.9 "1983-10-21",10.3 "1983-10-22",7.5 "1983-10-23",11.6 "1983-10-24",12.6 "1983-10-25",12.9 "1983-10-26",11.7 "1983-10-27",14.0 "1983-10-28",12.3 "1983-10-29",9.0 "1983-10-30",9.2 "1983-10-31",9.8 "1983-11-01",11.8 "1983-11-02",10.6 "1983-11-03",12.6 "1983-11-04",11.0 "1983-11-05",8.2 "1983-11-06",7.5 "1983-11-07",13.6 "1983-11-08",14.8 "1983-11-09",10.9 "1983-11-10",7.7 "1983-11-11",10.2 "1983-11-12",10.8 "1983-11-13",10.8 "1983-11-14",12.5 "1983-11-15",13.2 "1983-11-16",8.7 "1983-11-17",5.7 "1983-11-18",9.8 "1983-11-19",7.3 "1983-11-20",10.8 "1983-11-21",10.0 "1983-11-22",16.2 "1983-11-23",15.0 "1983-11-24",14.5 "1983-11-25",15.9 "1983-11-26",14.9 "1983-11-27",14.2 "1983-11-28",15.8 "1983-11-29",17.2 "1983-11-30",17.6 "1983-12-01",12.1 "1983-12-02",11.4 "1983-12-03",13.0 "1983-12-04",13.2 "1983-12-05",12.0 "1983-12-06",15.3 "1983-12-07",12.7 "1983-12-08",12.1 "1983-12-09",13.8 "1983-12-10",10.9 "1983-12-11",12.0 "1983-12-12",16.5 "1983-12-13",15.0 "1983-12-14",11.2 "1983-12-15",13.9 "1983-12-16",15.0 "1983-12-17",14.8 "1983-12-18",15.0 "1983-12-19",13.3 "1983-12-20",20.4 "1983-12-21",18.0 "1983-12-22",12.2 "1983-12-23",16.7 "1983-12-24",13.8 "1983-12-25",17.5 "1983-12-26",15.0 "1983-12-27",13.9 "1983-12-28",11.1 "1983-12-29",16.1 "1983-12-30",20.4 "1983-12-31",18.0 "1984-01-01",19.5 "1984-01-02",17.1 "1984-01-03",17.1 "1984-01-04",12.0 "1984-01-05",11.0 "1984-01-06",16.3 "1984-01-07",16.1 "1984-01-08",13.0 "1984-01-09",13.4 "1984-01-10",15.2 "1984-01-11",12.5 "1984-01-12",14.3 "1984-01-13",16.5 "1984-01-14",18.6 "1984-01-15",18.0 "1984-01-16",18.2 "1984-01-17",11.4 "1984-01-18",11.9 "1984-01-19",12.2 "1984-01-20",14.8 "1984-01-21",13.1 "1984-01-22",12.7 "1984-01-23",10.5 "1984-01-24",13.8 "1984-01-25",18.8 "1984-01-26",13.9 "1984-01-27",11.2 "1984-01-28",10.6 "1984-01-29",14.7 "1984-01-30",13.1 "1984-01-31",12.1 "1984-02-01",14.7 "1984-02-02",11.1 "1984-02-03",13.0 "1984-02-04",15.6 "1984-02-05",14.2 "1984-02-06",15.5 "1984-02-07",18.0 "1984-02-08",15.0 "1984-02-09",15.9 "1984-02-10",15.5 "1984-02-11",15.8 "1984-02-12",16.6 "1984-02-13",13.6 "1984-02-14",13.8 "1984-02-15",14.6 "1984-02-16",15.6 "1984-02-17",16.6 "1984-02-18",14.3 "1984-02-19",16.3 "1984-02-20",18.9 "1984-02-21",18.7 "1984-02-22",14.5 "1984-02-23",16.5 "1984-02-24",14.1 "1984-02-25",13.5 "1984-02-26",11.7 "1984-02-27",15.1 "1984-02-28",11.2 "1984-02-29",13.5 "1984-03-01",12.6 "1984-03-02",8.8 "1984-03-03",10.5 "1984-03-04",12.1 "1984-03-05",14.5 "1984-03-06",19.5 "1984-03-07",14.0 "1984-03-08",13.8 "1984-03-09",10.5 "1984-03-10",13.8 "1984-03-11",11.4 "1984-03-12",15.6 "1984-03-13",11.1 "1984-03-14",12.1 "1984-03-15",14.2 "1984-03-16",10.9 "1984-03-17",14.2 "1984-03-18",13.8 "1984-03-19",15.1 "1984-03-20",14.0 "1984-03-21",12.1 "1984-03-22",13.8 "1984-03-23",16.6 "1984-03-24",17.8 "1984-03-25",9.4 "1984-03-26",10.2 "1984-03-27",7.4 "1984-03-28",8.7 "1984-03-29",14.0 "1984-03-30",15.3 "1984-03-31",11.1 "1984-04-01",9.7 "1984-04-02",10.3 "1984-04-03",9.2 "1984-04-04",8.2 "1984-04-05",9.7 "1984-04-06",12.4 "1984-04-07",12.5 "1984-04-08",9.0 "1984-04-09",9.7 "1984-04-10",10.1 "1984-04-11",11.2 "1984-04-12",12.0 "1984-04-13",11.1 "1984-04-14",10.8 "1984-04-15",12.8 "1984-04-16",9.8 "1984-04-17",13.7 "1984-04-18",11.0 "1984-04-19",13.2 "1984-04-20",13.0 "1984-04-21",10.2 "1984-04-22",13.2 "1984-04-23",9.3 "1984-04-24",11.1 "1984-04-25",10.3 "1984-04-26",8.7 "1984-04-27",11.7 "1984-04-28",12.5 "1984-04-29",6.5 "1984-04-30",9.6 "1984-05-01",13.8 "1984-05-02",14.7 "1984-05-03",9.1 "1984-05-04",4.8 "1984-05-05",3.3 "1984-05-06",3.5 "1984-05-07",5.7 "1984-05-08",5.5 "1984-05-09",7.0 "1984-05-10",9.5 "1984-05-11",9.9 "1984-05-12",4.9 "1984-05-13",6.3 "1984-05-14",4.8 "1984-05-15",6.2 "1984-05-16",7.1 "1984-05-17",7.5 "1984-05-18",9.4 "1984-05-19",8.7 "1984-05-20",9.5 "1984-05-21",12.1 "1984-05-22",9.5 "1984-05-23",9.3 "1984-05-24",8.5 "1984-05-25",8.0 "1984-05-26",9.8 "1984-05-27",6.2 "1984-05-28",7.3 "1984-05-29",10.9 "1984-05-30",10.0 "1984-05-31",8.7 "1984-06-01",9.0 "1984-06-02",10.8 "1984-06-03",12.4 "1984-06-04",7.2 "1984-06-05",7.2 "1984-06-06",11.1 "1984-06-07",9.3 "1984-06-08",10.1 "1984-06-09",3.9 "1984-06-10",5.0 "1984-06-11",8.2 "1984-06-12",2.8 "1984-06-13",4.3 "1984-06-14",8.1 "1984-06-15",11.1 "1984-06-16",4.7 "1984-06-17",5.3 "1984-06-18",10.0 "1984-06-19",5.6 "1984-06-20",2.2 "1984-06-21",7.1 "1984-06-22",8.3 "1984-06-23",8.6 "1984-06-24",10.1 "1984-06-25",8.3 "1984-06-26",7.2 "1984-06-27",7.7 "1984-06-28",7.8 "1984-06-29",9.1 "1984-06-30",9.4 "1984-07-01",7.8 "1984-07-02",2.6 "1984-07-03",2.4 "1984-07-04",3.9 "1984-07-05",1.3 "1984-07-06",2.1 "1984-07-07",7.4 "1984-07-08",7.2 "1984-07-09",8.8 "1984-07-10",8.9 "1984-07-11",8.8 "1984-07-12",8.0 "1984-07-13",0.7 "1984-07-14",?0.1 "1984-07-15",0.9 "1984-07-16",7.8 "1984-07-17",7.2 "1984-07-18",8.0 "1984-07-19",4.6 "1984-07-20",5.2 "1984-07-21",5.8 "1984-07-22",6.8 "1984-07-23",8.1 "1984-07-24",7.5 "1984-07-25",5.4 "1984-07-26",4.6 "1984-07-27",6.4 "1984-07-28",9.7 "1984-07-29",7.0 "1984-07-30",10.0 "1984-07-31",10.6 "1984-08-01",11.5 "1984-08-02",10.2 "1984-08-03",11.1 "1984-08-04",11.0 "1984-08-05",8.9 "1984-08-06",9.9 "1984-08-07",11.7 "1984-08-08",11.6 "1984-08-09",9.0 "1984-08-10",6.3 "1984-08-11",8.7 "1984-08-12",8.5 "1984-08-13",8.5 "1984-08-14",8.0 "1984-08-15",6.0 "1984-08-16",8.0 "1984-08-17",8.5 "1984-08-18",7.7 "1984-08-19",8.4 "1984-08-20",9.0 "1984-08-21",8.3 "1984-08-22",6.8 "1984-08-23",9.3 "1984-08-24",6.7 "1984-08-25",9.0 "1984-08-26",7.3 "1984-08-27",6.3 "1984-08-28",7.9 "1984-08-29",5.2 "1984-08-30",9.0 "1984-08-31",11.3 "1984-09-01",9.2 "1984-09-02",11.3 "1984-09-03",7.0 "1984-09-04",8.0 "1984-09-05",4.6 "1984-09-06",8.5 "1984-09-07",9.5 "1984-09-08",9.4 "1984-09-09",10.5 "1984-09-10",9.7 "1984-09-11",4.9 "1984-09-12",8.0 "1984-09-13",5.8 "1984-09-14",5.5 "1984-09-15",10.9 "1984-09-16",11.7 "1984-09-17",9.2 "1984-09-18",8.9 "1984-09-19",11.3 "1984-09-20",8.6 "1984-09-21",6.2 "1984-09-22",6.6 "1984-09-23",9.1 "1984-09-24",6.1 "1984-09-25",7.5 "1984-09-26",10.7 "1984-09-27",6.3 "1984-09-28",5.5 "1984-09-29",6.7 "1984-09-30",4.2 "1984-10-01",11.3 "1984-10-02",16.3 "1984-10-03",10.5 "1984-10-04",10.3 "1984-10-05",7.9 "1984-10-06",7.7 "1984-10-07",16.0 "1984-10-08",14.6 "1984-10-09",12.5 "1984-10-10",8.1 "1984-10-11",12.2 "1984-10-12",17.2 "1984-10-13",9.4 "1984-10-14",8.7 "1984-10-15",5.9 "1984-10-16",4.8 "1984-10-17",7.4 "1984-10-18",9.4 "1984-10-19",9.7 "1984-10-20",9.9 "1984-10-21",6.5 "1984-10-22",9.8 "1984-10-23",18.2 "1984-10-24",11.3 "1984-10-25",9.1 "1984-10-26",9.6 "1984-10-27",13.5 "1984-10-28",10.7 "1984-10-29",10.0 "1984-10-30",8.5 "1984-10-31",12.6 "1984-11-01",16.6 "1984-11-02",11.6 "1984-11-03",12.2 "1984-11-04",11.2 "1984-11-05",9.2 "1984-11-06",9.9 "1984-11-07",11.9 "1984-11-08",15.6 "1984-11-09",19.0 "1984-11-10",12.8 "1984-11-11",12.2 "1984-11-12",12.0 "1984-11-13",11.1 "1984-11-14",11.8 "1984-11-15",7.6 "1984-11-16",13.0 "1984-11-17",12.7 "1984-11-18",16.0 "1984-11-19",14.8 "1984-11-20",14.2 "1984-11-21",10.0 "1984-11-22",8.8 "1984-11-23",11.6 "1984-11-24",8.6 "1984-11-25",14.6 "1984-11-26",24.3 "1984-11-27",11.6 "1984-11-28",10.8 "1984-11-29",12.0 "1984-11-30",11.0 "1984-12-01",12.6 "1984-12-02",10.8 "1984-12-03",9.1 "1984-12-04",11.0 "1984-12-05",13.0 "1984-12-06",12.8 "1984-12-07",9.9 "1984-12-08",11.6 "1984-12-09",10.5 "1984-12-10",15.9 "1984-12-11",12.2 "1984-12-12",13.0 "1984-12-13",12.5 "1984-12-14",12.5 "1984-12-15",11.4 "1984-12-16",12.1 "1984-12-17",16.8 "1984-12-18",12.1 "1984-12-19",11.3 "1984-12-20",10.4 "1984-12-21",14.2 "1984-12-22",11.4 "1984-12-23",13.7 "1984-12-24",16.5 "1984-12-25",12.8 "1984-12-26",12.2 "1984-12-27",12.0 "1984-12-28",12.6 "1984-12-29",16.0 "1984-12-30",16.4 "1985-01-01",13.3 "1985-01-02",15.2 "1985-01-03",13.1 "1985-01-04",12.7 "1985-01-05",14.6 "1985-01-06",11.0 "1985-01-07",13.2 "1985-01-08",12.2 "1985-01-09",14.4 "1985-01-10",13.7 "1985-01-11",14.5 "1985-01-12",14.1 "1985-01-13",14.4 "1985-01-14",19.7 "1985-01-15",16.5 "1985-01-16",15.9 "1985-01-17",11.8 "1985-01-18",12.0 "1985-01-19",11.4 "1985-01-20",14.4 "1985-01-21",12.4 "1985-01-22",15.1 "1985-01-23",15.6 "1985-01-24",15.2 "1985-01-25",12.8 "1985-01-26",13.3 "1985-01-27",17.5 "1985-01-28",15.4 "1985-01-29",13.5 "1985-01-30",16.7 "1985-01-31",15.2 "1985-02-01",14.9 "1985-02-02",10.2 "1985-02-03",13.6 "1985-02-04",19.0 "1985-02-05",15.7 "1985-02-06",18.0 "1985-02-07",14.8 "1985-02-08",13.9 "1985-02-09",13.0 "1985-02-10",15.3 "1985-02-11",14.3 "1985-02-12",15.6 "1985-02-13",16.0 "1985-02-14",14.9 "1985-02-15",11.1 "1985-02-16",14.8 "1985-02-17",13.0 "1985-02-18",12.2 "1985-02-19",10.9 "1985-02-20",14.6 "1985-02-21",16.6 "1985-02-22",18.1 "1985-02-23",13.4 "1985-02-24",10.3 "1985-02-25",13.6 "1985-02-26",13.8 "1985-02-27",10.3 "1985-02-28",11.0 "1985-03-01",14.3 "1985-03-02",15.5 "1985-03-03",14.7 "1985-03-04",12.7 "1985-03-05",10.7 "1985-03-06",12.6 "1985-03-07",9.8 "1985-03-08",13.2 "1985-03-09",15.2 "1985-03-10",16.6 "1985-03-11",21.0 "1985-03-12",22.4 "1985-03-13",17.0 "1985-03-14",21.7 "1985-03-15",21.4 "1985-03-16",18.6 "1985-03-17",16.2 "1985-03-18",16.8 "1985-03-19",17.0 "1985-03-20",18.4 "1985-03-21",17.2 "1985-03-22",18.4 "1985-03-23",18.8 "1985-03-24",16.5 "1985-03-25",13.3 "1985-03-26",12.2 "1985-03-27",11.3 "1985-03-28",13.8 "1985-03-29",16.6 "1985-03-30",14.0 "1985-03-31",14.3 "1985-04-01",16.4 "1985-04-02",11.9 "1985-04-03",15.7 "1985-04-04",17.6 "1985-04-05",17.5 "1985-04-06",15.9 "1985-04-07",16.2 "1985-04-08",16.0 "1985-04-09",15.9 "1985-04-10",16.2 "1985-04-11",16.2 "1985-04-12",19.5 "1985-04-13",18.2 "1985-04-14",21.8 "1985-04-15",15.1 "1985-04-16",11.0 "1985-04-17",8.1 "1985-04-18",9.5 "1985-04-19",9.3 "1985-04-20",10.6 "1985-04-21",6.3 "1985-04-22",8.6 "1985-04-23",6.8 "1985-04-24",8.7 "1985-04-25",8.4 "1985-04-26",9.3 "1985-04-27",10.0 "1985-04-28",10.5 "1985-04-29",12.0 "1985-04-30",10.1 "1985-05-01",9.4 "1985-05-02",10.1 "1985-05-03",8.0 "1985-05-04",10.6 "1985-05-05",13.6 "1985-05-06",15.4 "1985-05-07",9.0 "1985-05-08",10.4 "1985-05-09",11.0 "1985-05-10",12.1 "1985-05-11",13.4 "1985-05-12",11.3 "1985-05-13",6.7 "1985-05-14",9.8 "1985-05-15",10.8 "1985-05-16",7.8 "1985-05-17",4.5 "1985-05-18",7.6 "1985-05-19",6.9 "1985-05-20",7.5 "1985-05-21",8.5 "1985-05-22",5.5 "1985-05-23",9.5 "1985-05-24",7.3 "1985-05-25",5.4 "1985-05-26",5.5 "1985-05-27",8.1 "1985-05-28",11.2 "1985-05-29",13.4 "1985-05-30",11.6 "1985-05-31",10.1 "1985-06-01",4.3 "1985-06-02",5.5 "1985-06-03",4.4 "1985-06-04",5.9 "1985-06-05",5.7 "1985-06-06",8.2 "1985-06-07",8.2 "1985-06-08",4.2 "1985-06-09",6.5 "1985-06-10",10.0 "1985-06-11",8.8 "1985-06-12",6.6 "1985-06-13",7.8 "1985-06-14",10.1 "1985-06-15",7.1 "1985-06-16",7.7 "1985-06-17",8.5 "1985-06-18",7.3 "1985-06-19",6.9 "1985-06-20",8.4 "1985-06-21",7.1 "1985-06-22",6.3 "1985-06-23",0.6 "1985-06-24",1.6 "1985-06-25",7.0 "1985-06-26",8.3 "1985-06-27",8.0 "1985-06-28",10.2 "1985-06-29",10.6 "1985-06-30",10.4 "1985-07-01",11.6 "1985-07-02",11.0 "1985-07-03",10.7 "1985-07-04",7.3 "1985-07-05",4.2 "1985-07-06",4.7 "1985-07-07",5.6 "1985-07-08",7.7 "1985-07-09",7.5 "1985-07-10",4.9 "1985-07-11",5.9 "1985-07-12",7.8 "1985-07-13",5.8 "1985-07-14",7.0 "1985-07-15",8.4 "1985-07-16",6.2 "1985-07-17",7.5 "1985-07-18",4.8 "1985-07-19",3.3 "1985-07-20",3.2 "1985-07-21",7.0 "1985-07-22",8.4 "1985-07-23",0.3 "1985-07-24",0.3 "1985-07-25",2.1 "1985-07-26",8.5 "1985-07-27",1.4 "1985-07-28",4.1 "1985-07-29",10.3 "1985-07-30",6.6 "1985-07-31",6.1 "1985-08-01",7.0 "1985-08-02",5.1 "1985-08-03",6.3 "1985-08-04",6.9 "1985-08-05",11.4 "1985-08-06",10.4 "1985-08-07",10.3 "1985-08-08",9.2 "1985-08-09",7.2 "1985-08-10",7.5 "1985-08-11",4.0 "1985-08-12",5.6 "1985-08-13",6.7 "1985-08-14",8.4 "1985-08-15",11.0 "1985-08-16",8.4 "1985-08-17",8.8 "1985-08-18",8.6 "1985-08-19",8.3 "1985-08-20",4.0 "1985-08-21",3.6 "1985-08-22",5.7 "1985-08-23",10.6 "1985-08-24",6.9 "1985-08-25",10.0 "1985-08-26",9.8 "1985-08-27",7.2 "1985-08-28",10.5 "1985-08-29",3.6 "1985-08-30",5.3 "1985-08-31",8.4 "1985-09-01",10.3 "1985-09-02",7.9 "1985-09-03",8.5 "1985-09-04",7.9 "1985-09-05",8.0 "1985-09-06",9.8 "1985-09-07",6.7 "1985-09-08",4.8 "1985-09-09",9.9 "1985-09-10",12.8 "1985-09-11",10.9 "1985-09-12",11.7 "1985-09-13",11.7 "1985-09-14",11.0 "1985-09-15",8.2 "1985-09-16",7.5 "1985-09-17",5.4 "1985-09-18",7.2 "1985-09-19",9.7 "1985-09-20",8.4 "1985-09-21",9.0 "1985-09-22",8.7 "1985-09-23",6.6 "1985-09-24",11.6 "1985-09-25",13.1 "1985-09-26",6.7 "1985-09-27",6.5 "1985-09-28",7.7 "1985-09-29",8.7 "1985-09-30",7.2 "1985-10-01",10.5 "1985-10-02",8.6 "1985-10-03",7.2 "1985-10-04",11.4 "1985-10-05",16.2 "1985-10-06",6.1 "1985-10-07",9.6 "1985-10-08",11.1 "1985-10-09",13.6 "1985-10-10",10.7 "1985-10-11",14.7 "1985-10-12",11.6 "1985-10-13",7.3 "1985-10-14",8.0 "1985-10-15",9.6 "1985-10-16",16.0 "1985-10-17",15.1 "1985-10-18",12.8 "1985-10-19",6.2 "1985-10-20",7.1 "1985-10-21",8.4 "1985-10-22",10.0 "1985-10-23",12.7 "1985-10-24",10.0 "1985-10-25",10.2 "1985-10-26",6.5 "1985-10-27",9.2 "1985-10-28",11.9 "1985-10-29",14.7 "1985-10-30",11.4 "1985-10-31",6.8 "1985-11-01",7.4 "1985-11-02",11.2 "1985-11-03",9.2 "1985-11-04",12.6 "1985-11-05",16.0 "1985-11-06",17.1 "1985-11-07",15.3 "1985-11-08",13.3 "1985-11-09",15.4 "1985-11-10",13.2 "1985-11-11",14.4 "1985-11-12",14.0 "1985-11-13",15.5 "1985-11-14",21.0 "1985-11-15",10.0 "1985-11-16",9.6 "1985-11-17",12.0 "1985-11-18",12.2 "1985-11-19",11.3 "1985-11-20",13.2 "1985-11-21",10.5 "1985-11-22",10.1 "1985-11-23",8.8 "1985-11-24",13.7 "1985-11-25",16.2 "1985-11-26",16.0 "1985-11-27",14.0 "1985-11-28",13.7 "1985-11-29",12.5 "1985-11-30",12.8 "1985-12-01",12.3 "1985-12-02",15.2 "1985-12-03",15.0 "1985-12-04",16.4 "1985-12-05",16.1 "1985-12-06",14.6 "1985-12-07",18.2 "1985-12-08",16.4 "1985-12-09",16.6 "1985-12-10",14.7 "1985-12-11",15.8 "1985-12-12",14.1 "1985-12-13",13.5 "1985-12-14",13.6 "1985-12-15",13.7 "1985-12-16",13.6 "1985-12-17",12.1 "1985-12-18",12.7 "1985-12-19",13.3 "1985-12-20",14.2 "1985-12-21",15.0 "1985-12-22",13.7 "1985-12-23",12.0 "1985-12-24",13.1 "1985-12-25",13.2 "1985-12-26",13.3 "1985-12-27",11.5 "1985-12-28",10.8 "1985-12-29",12.0 "1985-12-30",16.3 "1985-12-31",14.4 "1986-01-01",12.9 "1986-01-02",13.8 "1986-01-03",10.6 "1986-01-04",12.6 "1986-01-05",13.7 "1986-01-06",12.6 "1986-01-07",13.1 "1986-01-08",15.4 "1986-01-09",11.9 "1986-01-10",13.8 "1986-01-11",14.4 "1986-01-12",15.2 "1986-01-13",12.5 "1986-01-14",12.2 "1986-01-15",16.1 "1986-01-16",14.6 "1986-01-17",11.6 "1986-01-18",13.1 "1986-01-19",12.8 "1986-01-20",15.2 "1986-01-21",13.8 "1986-01-22",15.0 "1986-01-23",13.5 "1986-01-24",11.8 "1986-01-25",15.3 "1986-01-26",13.5 "1986-01-27",15.3 "1986-01-28",13.8 "1986-01-29",15.8 "1986-01-30",17.4 "1986-01-31",15.3 "1986-02-01",14.6 "1986-02-02",14.8 "1986-02-03",10.7 "1986-02-04",11.6 "1986-02-05",13.6 "1986-02-06",14.4 "1986-02-07",11.8 "1986-02-08",15.8 "1986-02-09",16.0 "1986-02-10",11.8 "1986-02-11",14.5 "1986-02-12",10.7 "1986-02-13",14.2 "1986-02-14",19.5 "1986-02-15",21.4 "1986-02-16",17.9 "1986-02-17",17.4 "1986-02-18",12.7 "1986-02-19",13.8 "1986-02-20",14.0 "1986-02-21",15.0 "1986-02-22",14.5 "1986-02-23",13.1 "1986-02-24",11.4 "1986-02-25",12.5 "1986-02-26",12.0 "1986-02-27",13.4 "1986-02-28",14.4 "1986-03-01",17.7 "1986-03-02",13.9 "1986-03-03",13.3 "1986-03-04",14.6 "1986-03-05",16.4 "1986-03-06",16.8 "1986-03-07",20.0 "1986-03-08",12.5 "1986-03-09",12.7 "1986-03-10",11.7 "1986-03-11",12.7 "1986-03-12",8.6 "1986-03-13",11.9 "1986-03-14",16.0 "1986-03-15",15.2 "1986-03-16",13.4 "1986-03-17",11.6 "1986-03-18",11.1 "1986-03-19",15.6 "1986-03-20",17.0 "1986-03-21",18.5 "1986-03-22",17.4 "1986-03-23",16.5 "1986-03-24",16.2 "1986-03-25",16.1 "1986-03-26",13.2 "1986-03-27",18.0 "1986-03-28",12.8 "1986-03-29",11.7 "1986-03-30",16.7 "1986-03-31",15.6 "1986-04-01",10.2 "1986-04-02",10.3 "1986-04-03",15.0 "1986-04-04",18.0 "1986-04-05",13.8 "1986-04-06",10.5 "1986-04-07",11.8 "1986-04-08",7.2 "1986-04-09",11.6 "1986-04-10",7.4 "1986-04-11",14.2 "1986-04-12",12.2 "1986-04-13",9.0 "1986-04-14",12.3 "1986-04-15",19.7 "1986-04-16",12.8 "1986-04-17",12.4 "1986-04-18",12.0 "1986-04-19",12.0 "1986-04-20",11.1 "1986-04-21",12.7 "1986-04-22",14.2 "1986-04-23",11.6 "1986-04-24",12.0 "1986-04-25",11.5 "1986-04-26",8.3 "1986-04-27",10.5 "1986-04-28",9.0 "1986-04-29",6.9 "1986-04-30",9.4 "1986-05-01",11.1 "1986-05-02",9.1 "1986-05-03",7.7 "1986-05-04",10.0 "1986-05-05",10.4 "1986-05-06",8.0 "1986-05-07",9.8 "1986-05-08",12.4 "1986-05-09",12.9 "1986-05-10",12.3 "1986-05-11",6.9 "1986-05-12",10.5 "1986-05-13",11.0 "1986-05-14",9.7 "1986-05-15",11.1 "1986-05-16",11.5 "1986-05-17",13.4 "1986-05-18",10.9 "1986-05-19",12.0 "1986-05-20",12.1 "1986-05-21",10.4 "1986-05-22",10.0 "1986-05-23",9.6 "1986-05-24",11.3 "1986-05-25",8.5 "1986-05-26",6.3 "1986-05-27",8.2 "1986-05-28",10.7 "1986-05-29",10.3 "1986-05-30",9.5 "1986-05-31",10.9 "1986-06-01",10.9 "1986-06-02",4.3 "1986-06-03",5.2 "1986-06-04",11.0 "1986-06-05",11.6 "1986-06-06",10.6 "1986-06-07",9.4 "1986-06-08",10.0 "1986-06-09",9.6 "1986-06-10",9.5 "1986-06-11",9.7 "1986-06-12",9.6 "1986-06-13",7.0 "1986-06-14",7.0 "1986-06-15",6.8 "1986-06-16",6.9 "1986-06-17",8.0 "1986-06-18",7.6 "1986-06-19",8.6 "1986-06-20",5.7 "1986-06-21",5.5 "1986-06-22",5.7 "1986-06-23",5.7 "1986-06-24",6.6 "1986-06-25",6.0 "1986-06-26",6.9 "1986-06-27",7.7 "1986-06-28",8.0 "1986-06-29",3.9 "1986-06-30",0.8 "1986-07-01",2.8 "1986-07-02",8.0 "1986-07-03",9.8 "1986-07-04",11.4 "1986-07-05",8.6 "1986-07-06",5.2 "1986-07-07",6.6 "1986-07-08",5.7 "1986-07-09",4.6 "1986-07-10",5.8 "1986-07-11",7.0 "1986-07-12",4.8 "1986-07-13",4.4 "1986-07-14",4.4 "1986-07-15",7.9 "1986-07-16",10.6 "1986-07-17",5.0 "1986-07-18",7.6 "1986-07-19",9.2 "1986-07-20",9.7 "1986-07-21",8.8 "1986-07-22",6.8 "1986-07-23",9.4 "1986-07-24",11.0 "1986-07-25",2.5 "1986-07-26",2.1 "1986-07-27",5.4 "1986-07-28",6.2 "1986-07-29",7.8 "1986-07-30",7.4 "1986-07-31",9.3 "1986-08-01",9.3 "1986-08-02",9.5 "1986-08-03",8.5 "1986-08-04",10.0 "1986-08-05",7.7 "1986-08-06",9.3 "1986-08-07",9.1 "1986-08-08",3.5 "1986-08-09",3.6 "1986-08-10",2.5 "1986-08-11",1.7 "1986-08-12",2.7 "1986-08-13",2.9 "1986-08-14",5.3 "1986-08-15",7.7 "1986-08-16",9.1 "1986-08-17",9.4 "1986-08-18",7.3 "1986-08-19",8.4 "1986-08-20",9.2 "1986-08-21",6.6 "1986-08-22",9.7 "1986-08-23",12.4 "1986-08-24",10.2 "1986-08-25",5.9 "1986-08-26",7.1 "1986-08-27",7.5 "1986-08-28",9.7 "1986-08-29",12.2 "1986-08-30",5.6 "1986-08-31",5.4 "1986-09-01",8.3 "1986-09-02",10.6 "1986-09-03",9.1 "1986-09-04",11.3 "1986-09-05",10.9 "1986-09-06",8.9 "1986-09-07",6.3 "1986-09-08",9.0 "1986-09-09",6.1 "1986-09-10",9.1 "1986-09-11",9.6 "1986-09-12",6.0 "1986-09-13",10.0 "1986-09-14",11.0 "1986-09-15",6.2 "1986-09-16",8.3 "1986-09-17",11.3 "1986-09-18",11.3 "1986-09-19",6.7 "1986-09-20",6.6 "1986-09-21",11.4 "1986-09-22",6.9 "1986-09-23",10.6 "1986-09-24",8.6 "1986-09-25",11.3 "1986-09-26",12.5 "1986-09-27",9.9 "1986-09-28",6.9 "1986-09-29",5.5 "1986-09-30",7.8 "1986-10-01",11.0 "1986-10-02",16.2 "1986-10-03",9.9 "1986-10-04",8.7 "1986-10-05",10.5 "1986-10-06",12.2 "1986-10-07",10.6 "1986-10-08",8.3 "1986-10-09",5.5 "1986-10-10",9.0 "1986-10-11",6.4 "1986-10-12",7.2 "1986-10-13",12.9 "1986-10-14",12.0 "1986-10-15",7.3 "1986-10-16",9.7 "1986-10-17",8.4 "1986-10-18",14.7 "1986-10-19",9.5 "1986-10-20",7.9 "1986-10-21",6.8 "1986-10-22",12.6 "1986-10-23",5.2 "1986-10-24",7.5 "1986-10-25",8.7 "1986-10-26",7.6 "1986-10-27",9.0 "1986-10-28",7.2 "1986-10-29",10.7 "1986-10-30",13.1 "1986-10-31",13.9 "1986-11-01",10.8 "1986-11-02",10.4 "1986-11-03",9.1 "1986-11-04",16.0 "1986-11-05",21.0 "1986-11-06",16.2 "1986-11-07",8.6 "1986-11-08",9.2 "1986-11-09",12.5 "1986-11-10",9.7 "1986-11-11",12.5 "1986-11-12",10.3 "1986-11-13",12.0 "1986-11-14",11.0 "1986-11-15",14.8 "1986-11-16",15.0 "1986-11-17",15.3 "1986-11-18",10.3 "1986-11-19",10.7 "1986-11-20",10.5 "1986-11-21",8.9 "1986-11-22",8.1 "1986-11-23",11.5 "1986-11-24",12.8 "1986-11-25",9.1 "1986-11-26",14.6 "1986-11-27",11.6 "1986-11-28",11.2 "1986-11-29",12.6 "1986-11-30",7.5 "1986-12-01",11.0 "1986-12-02",14.5 "1986-12-03",18.5 "1986-12-04",15.4 "1986-12-05",13.1 "1986-12-06",16.3 "1986-12-07",20.2 "1986-12-08",11.5 "1986-12-09",12.4 "1986-12-10",10.9 "1986-12-11",12.7 "1986-12-12",12.2 "1986-12-13",12.4 "1986-12-14",9.8 "1986-12-15",8.5 "1986-12-16",14.7 "1986-12-17",12.0 "1986-12-18",10.3 "1986-12-19",11.0 "1986-12-20",10.2 "1986-12-21",12.6 "1986-12-22",11.6 "1986-12-23",9.7 "1986-12-24",13.4 "1986-12-25",10.5 "1986-12-26",14.7 "1986-12-27",14.6 "1986-12-28",14.2 "1986-12-29",13.2 "1986-12-30",11.7 "1986-12-31",17.2 "1987-01-01",12.3 "1987-01-02",13.8 "1987-01-03",15.3 "1987-01-04",15.6 "1987-01-05",16.2 "1987-01-06",16.3 "1987-01-07",16.8 "1987-01-08",11.0 "1987-01-09",8.5 "1987-01-10",13.2 "1987-01-11",13.0 "1987-01-12",12.4 "1987-01-13",13.0 "1987-01-14",16.6 "1987-01-15",12.0 "1987-01-16",12.4 "1987-01-17",15.0 "1987-01-18",11.8 "1987-01-19",11.6 "1987-01-20",12.2 "1987-01-21",13.7 "1987-01-22",11.2 "1987-01-23",12.4 "1987-01-24",11.5 "1987-01-25",13.8 "1987-01-26",15.7 "1987-01-27",12.9 "1987-01-28",11.5 "1987-01-29",11.0 "1987-01-30",12.7 "1987-01-31",14.9 "1987-02-01",16.5 "1987-02-02",12.8 "1987-02-03",12.7 "1987-02-04",12.7 "1987-02-05",11.6 "1987-02-06",13.3 "1987-02-07",15.2 "1987-02-08",16.4 "1987-02-09",11.9 "1987-02-10",15.1 "1987-02-11",10.6 "1987-02-12",13.6 "1987-02-13",12.1 "1987-02-14",16.0 "1987-02-15",16.8 "1987-02-16",16.6 "1987-02-17",15.6 "1987-02-18",15.2 "1987-02-19",17.7 "1987-02-20",21.0 "1987-02-21",13.4 "1987-02-22",10.5 "1987-02-23",9.5 "1987-02-24",12.0 "1987-02-25",10.4 "1987-02-26",11.5 "1987-02-27",13.2 "1987-02-28",15.0 "1987-03-01",14.1 "1987-03-02",12.4 "1987-03-03",13.4 "1987-03-04",12.5 "1987-03-05",14.3 "1987-03-06",17.6 "1987-03-07",10.4 "1987-03-08",9.9 "1987-03-09",10.2 "1987-03-10",11.3 "1987-03-11",9.5 "1987-03-12",11.8 "1987-03-13",11.5 "1987-03-14",10.5 "1987-03-15",10.8 "1987-03-16",13.0 "1987-03-17",18.5 "1987-03-18",18.7 "1987-03-19",15.0 "1987-03-20",13.0 "1987-03-21",11.3 "1987-03-22",13.0 "1987-03-23",13.3 "1987-03-24",11.0 "1987-03-25",10.3 "1987-03-26",13.0 "1987-03-27",12.3 "1987-03-28",15.6 "1987-03-29",10.2 "1987-03-30",10.8 "1987-03-31",12.0 "1987-04-01",13.3 "1987-04-02",11.7 "1987-04-03",12.5 "1987-04-04",13.7 "1987-04-05",14.9 "1987-04-06",20.2 "1987-04-07",16.3 "1987-04-08",13.9 "1987-04-09",10.1 "1987-04-10",7.3 "1987-04-11",14.0 "1987-04-12",17.7 "1987-04-13",16.3 "1987-04-14",10.6 "1987-04-15",9.7 "1987-04-16",7.8 "1987-04-17",10.4 "1987-04-18",10.4 "1987-04-19",14.1 "1987-04-20",7.1 "1987-04-21",8.1 "1987-04-22",7.8 "1987-04-23",10.6 "1987-04-24",9.1 "1987-04-25",9.0 "1987-04-26",11.9 "1987-04-27",17.1 "1987-04-28",16.8 "1987-04-29",13.5 "1987-04-30",11.6 "1987-05-01",7.0 "1987-05-02",9.7 "1987-05-03",9.9 "1987-05-04",11.2 "1987-05-05",11.3 "1987-05-06",11.8 "1987-05-07",9.9 "1987-05-08",7.1 "1987-05-09",9.6 "1987-05-10",9.8 "1987-05-11",10.6 "1987-05-12",12.8 "1987-05-13",16.5 "1987-05-14",11.7 "1987-05-15",12.3 "1987-05-16",12.2 "1987-05-17",11.8 "1987-05-18",10.7 "1987-05-19",10.2 "1987-05-20",10.0 "1987-05-21",8.3 "1987-05-22",6.6 "1987-05-23",9.5 "1987-05-24",12.3 "1987-05-25",7.6 "1987-05-26",9.3 "1987-05-27",5.0 "1987-05-28",4.3 "1987-05-29",6.4 "1987-05-30",10.8 "1987-05-31",7.8 "1987-06-01",8.5 "1987-06-02",9.7 "1987-06-03",10.0 "1987-06-04",11.0 "1987-06-05",10.2 "1987-06-06",6.6 "1987-06-07",6.1 "1987-06-08",5.9 "1987-06-09",8.9 "1987-06-10",13.0 "1987-06-11",12.6 "1987-06-12",5.4 "1987-06-13",6.0 "1987-06-14",7.8 "1987-06-15",9.0 "1987-06-16",4.2 "1987-06-17",3.0 "1987-06-18",4.5 "1987-06-19",6.2 "1987-06-20",11.9 "1987-06-21",11.8 "1987-06-22",9.4 "1987-06-23",9.6 "1987-06-24",9.4 "1987-06-25",7.0 "1987-06-26",8.9 "1987-06-27",9.3 "1987-06-28",6.8 "1987-06-29",7.5 "1987-06-30",8.0 "1987-07-01",8.3 "1987-07-02",2.7 "1987-07-03",3.9 "1987-07-04",4.1 "1987-07-05",5.0 "1987-07-06",5.8 "1987-07-07",4.4 "1987-07-08",4.1 "1987-07-09",5.8 "1987-07-10",9.1 "1987-07-11",7.9 "1987-07-12",5.0 "1987-07-13",2.8 "1987-07-14",4.7 "1987-07-15",8.9 "1987-07-16",5.4 "1987-07-17",7.1 "1987-07-18",9.0 "1987-07-19",9.4 "1987-07-20",6.3 "1987-07-21",7.0 "1987-07-22",6.4 "1987-07-23",6.7 "1987-07-24",1.5 "1987-07-25",2.9 "1987-07-26",4.8 "1987-07-27",6.3 "1987-07-28",5.7 "1987-07-29",7.0 "1987-07-30",8.8 "1987-07-31",8.7 "1987-08-01",9.0 "1987-08-02",9.6 "1987-08-03",8.0 "1987-08-04",8.4 "1987-08-05",8.1 "1987-08-06",9.0 "1987-08-07",5.3 "1987-08-08",8.9 "1987-08-09",8.7 "1987-08-10",4.9 "1987-08-11",7.0 "1987-08-12",7.5 "1987-08-13",7.0 "1987-08-14",9.1 "1987-08-15",11.8 "1987-08-16",9.9 "1987-08-17",5.6 "1987-08-18",4.2 "1987-08-19",4.3 "1987-08-20",8.0 "1987-08-21",5.1 "1987-08-22",9.4 "1987-08-23",9.1 "1987-08-24",9.7 "1987-08-25",10.6 "1987-08-26",8.6 "1987-08-27",10.1 "1987-08-28",11.0 "1987-08-29",9.7 "1987-08-30",5.0 "1987-08-31",6.1 "1987-09-01",5.4 "1987-09-02",5.8 "1987-09-03",7.3 "1987-09-04",6.3 "1987-09-05",4.8 "1987-09-06",7.6 "1987-09-07",8.1 "1987-09-08",9.5 "1987-09-09",10.3 "1987-09-10",7.0 "1987-09-11",9.0 "1987-09-12",10.2 "1987-09-13",6.8 "1987-09-14",9.3 "1987-09-15",9.8 "1987-09-16",10.7 "1987-09-17",7.8 "1987-09-18",9.2 "1987-09-19",15.0 "1987-09-20",7.8 "1987-09-21",5.3 "1987-09-22",9.5 "1987-09-23",7.6 "1987-09-24",14.0 "1987-09-25",14.9 "1987-09-26",14.9 "1987-09-27",19.2 "1987-09-28",17.0 "1987-09-29",13.0 "1987-09-30",11.2 "1987-10-01",9.5 "1987-10-02",10.3 "1987-10-03",9.3 "1987-10-04",11.3 "1987-10-05",6.5 "1987-10-06",12.0 "1987-10-07",8.3 "1987-10-08",8.7 "1987-10-09",8.7 "1987-10-10",10.2 "1987-10-11",6.9 "1987-10-12",4.9 "1987-10-13",10.0 "1987-10-14",7.6 "1987-10-15",14.5 "1987-10-16",13.2 "1987-10-17",9.9 "1987-10-18",10.1 "1987-10-19",11.3 "1987-10-20",10.4 "1987-10-21",10.9 "1987-10-22",9.2 "1987-10-23",10.5 "1987-10-24",11.4 "1987-10-25",13.5 "1987-10-26",9.8 "1987-10-27",13.1 "1987-10-28",9.7 "1987-10-29",11.4 "1987-10-30",9.9 "1987-10-31",14.4 "1987-11-01",19.0 "1987-11-02",23.0 "1987-11-03",15.4 "1987-11-04",9.6 "1987-11-05",10.8 "1987-11-06",12.1 "1987-11-07",11.0 "1987-11-08",12.6 "1987-11-09",14.7 "1987-11-10",11.1 "1987-11-11",10.1 "1987-11-12",11.4 "1987-11-13",13.0 "1987-11-14",11.9 "1987-11-15",9.5 "1987-11-16",13.5 "1987-11-17",15.2 "1987-11-18",18.4 "1987-11-19",24.1 "1987-11-20",14.1 "1987-11-21",10.7 "1987-11-22",8.7 "1987-11-23",13.3 "1987-11-24",11.6 "1987-11-25",9.9 "1987-11-26",10.8 "1987-11-27",11.5 "1987-11-28",10.0 "1987-11-29",13.9 "1987-11-30",13.6 "1987-12-01",11.9 "1987-12-02",11.1 "1987-12-03",8.2 "1987-12-04",9.4 "1987-12-05",12.7 "1987-12-06",11.6 "1987-12-07",11.0 "1987-12-08",11.3 "1987-12-09",13.4 "1987-12-10",14.9 "1987-12-11",15.2 "1987-12-12",13.9 "1987-12-13",15.0 "1987-12-14",16.2 "1987-12-15",17.7 "1987-12-16",20.5 "1987-12-17",14.7 "1987-12-18",12.5 "1987-12-19",10.9 "1987-12-20",12.8 "1987-12-21",12.7 "1987-12-22",11.2 "1987-12-23",11.4 "1987-12-24",11.2 "1987-12-25",12.1 "1987-12-26",12.7 "1987-12-27",16.2 "1987-12-28",14.2 "1987-12-29",14.3 "1987-12-30",13.3 "1987-12-31",16.7 "1988-01-01",15.3 "1988-01-02",14.3 "1988-01-03",13.5 "1988-01-04",15.0 "1988-01-05",13.6 "1988-01-06",15.2 "1988-01-07",17.0 "1988-01-08",18.7 "1988-01-09",16.5 "1988-01-10",17.4 "1988-01-11",18.3 "1988-01-12",18.3 "1988-01-13",22.4 "1988-01-14",21.4 "1988-01-15",20.9 "1988-01-16",17.6 "1988-01-17",15.5 "1988-01-18",16.6 "1988-01-19",16.2 "1988-01-20",15.6 "1988-01-21",14.5 "1988-01-22",14.0 "1988-01-23",15.6 "1988-01-24",12.3 "1988-01-25",11.6 "1988-01-26",12.6 "1988-01-27",14.9 "1988-01-28",17.3 "1988-01-29",21.4 "1988-01-30",23.4 "1988-01-31",14.4 "1988-02-01",14.1 "1988-02-02",15.0 "1988-02-03",14.5 "1988-02-04",15.1 "1988-02-05",13.9 "1988-02-06",13.4 "1988-02-07",9.2 "1988-02-08",12.5 "1988-02-09",15.1 "1988-02-10",12.1 "1988-02-11",14.5 "1988-02-12",16.3 "1988-02-13",16.5 "1988-02-14",14.9 "1988-02-15",13.2 "1988-02-16",11.8 "1988-02-17",13.6 "1988-02-18",16.2 "1988-02-19",14.1 "1988-02-20",13.5 "1988-02-21",15.0 "1988-02-22",14.8 "1988-02-23",16.2 "1988-02-24",16.2 "1988-02-25",13.3 "1988-02-26",15.3 "1988-02-27",18.4 "1988-02-28",16.2 "1988-02-29",16.3 "1988-03-01",12.4 "1988-03-02",15.6 "1988-03-03",14.9 "1988-03-04",14.8 "1988-03-05",12.7 "1988-03-06",14.2 "1988-03-07",16.8 "1988-03-08",16.7 "1988-03-09",16.2 "1988-03-10",14.5 "1988-03-11",10.0 "1988-03-12",12.6 "1988-03-13",11.9 "1988-03-14",11.8 "1988-03-15",13.4 "1988-03-16",14.5 "1988-03-17",15.7 "1988-03-18",15.3 "1988-03-19",13.9 "1988-03-20",13.7 "1988-03-21",15.1 "1988-03-22",15.6 "1988-03-23",14.4 "1988-03-24",13.9 "1988-03-25",16.2 "1988-03-26",16.7 "1988-03-27",15.5 "1988-03-28",16.4 "1988-03-29",17.5 "1988-03-30",18.2 "1988-03-31",16.1 "1988-04-01",16.5 "1988-04-02",14.6 "1988-04-03",16.4 "1988-04-04",13.6 "1988-04-05",15.9 "1988-04-06",11.9 "1988-04-07",14.7 "1988-04-08",9.4 "1988-04-09",6.6 "1988-04-10",7.9 "1988-04-11",11.0 "1988-04-12",15.7 "1988-04-13",15.2 "1988-04-14",15.9 "1988-04-15",10.6 "1988-04-16",8.3 "1988-04-17",8.6 "1988-04-18",12.7 "1988-04-19",10.5 "1988-04-20",12.0 "1988-04-21",11.1 "1988-04-22",13.0 "1988-04-23",12.4 "1988-04-24",13.3 "1988-04-25",15.9 "1988-04-26",12.0 "1988-04-27",13.7 "1988-04-28",17.6 "1988-04-29",14.3 "1988-04-30",13.7 "1988-05-01",15.2 "1988-05-02",14.5 "1988-05-03",14.9 "1988-05-04",15.5 "1988-05-05",16.4 "1988-05-06",14.5 "1988-05-07",12.6 "1988-05-08",13.6 "1988-05-09",11.2 "1988-05-10",11.0 "1988-05-11",12.0 "1988-05-12",6.8 "1988-05-13",10.6 "1988-05-14",13.1 "1988-05-15",13.5 "1988-05-16",11.7 "1988-05-17",13.2 "1988-05-18",12.0 "1988-05-19",10.4 "1988-05-20",10.0 "1988-05-21",8.2 "1988-05-22",9.4 "1988-05-23",10.3 "1988-05-24",8.1 "1988-05-25",8.7 "1988-05-26",12.6 "1988-05-27",10.9 "1988-05-28",8.7 "1988-05-29",9.3 "1988-05-30",6.3 "1988-05-31",7.8 "1988-06-01",10.0 "1988-06-02",11.0 "1988-06-03",11.1 "1988-06-04",12.6 "1988-06-05",10.2 "1988-06-06",11.1 "1988-06-07",8.7 "1988-06-08",9.5 "1988-06-09",9.7 "1988-06-10",8.2 "1988-06-11",5.0 "1988-06-12",6.5 "1988-06-13",12.1 "1988-06-14",8.9 "1988-06-15",6.1 "1988-06-16",2.8 "1988-06-17",3.7 "1988-06-18",6.8 "1988-06-19",6.6 "1988-06-20",7.0 "1988-06-21",7.3 "1988-06-22",7.9 "1988-06-23",10.6 "1988-06-24",8.1 "1988-06-25",6.7 "1988-06-26",8.0 "1988-06-27",10.0 "1988-06-28",6.7 "1988-06-29",9.4 "1988-06-30",9.3 "1988-07-01",6.0 "1988-07-02",5.8 "1988-07-03",4.9 "1988-07-04",5.0 "1988-07-05",8.4 "1988-07-06",12.3 "1988-07-07",13.0 "1988-07-08",11.4 "1988-07-09",6.8 "1988-07-10",7.6 "1988-07-11",12.4 "1988-07-12",7.1 "1988-07-13",7.5 "1988-07-14",10.0 "1988-07-15",5.3 "1988-07-16",6.3 "1988-07-17",8.0 "1988-07-18",8.3 "1988-07-19",9.3 "1988-07-20",9.5 "1988-07-21",5.6 "1988-07-22",7.0 "1988-07-23",8.5 "1988-07-24",8.5 "1988-07-25",8.2 "1988-07-26",8.5 "1988-07-27",9.6 "1988-07-28",9.7 "1988-07-29",7.1 "1988-07-30",8.4 "1988-07-31",9.2 "1988-08-01",9.8 "1988-08-02",8.1 "1988-08-03",9.4 "1988-08-04",10.0 "1988-08-05",5.1 "1988-08-06",6.7 "1988-08-07",6.9 "1988-08-08",6.8 "1988-08-09",8.6 "1988-08-10",9.1 "1988-08-11",3.9 "1988-08-12",4.8 "1988-08-13",8.4 "1988-08-14",11.6 "1988-08-15",12.1 "1988-08-16",12.4 "1988-08-17",10.0 "1988-08-18",10.1 "1988-08-19",9.7 "1988-08-20",11.7 "1988-08-21",7.9 "1988-08-22",8.6 "1988-08-23",7.7 "1988-08-24",5.8 "1988-08-25",8.7 "1988-08-26",10.6 "1988-08-27",6.7 "1988-08-28",8.8 "1988-08-29",9.7 "1988-08-30",9.0 "1988-08-31",11.8 "1988-09-01",15.2 "1988-09-02",10.0 "1988-09-03",10.5 "1988-09-04",5.5 "1988-09-05",9.4 "1988-09-06",8.8 "1988-09-07",5.3 "1988-09-08",13.0 "1988-09-09",15.2 "1988-09-10",13.2 "1988-09-11",11.5 "1988-09-12",6.8 "1988-09-13",4.7 "1988-09-14",5.2 "1988-09-15",6.8 "1988-09-16",10.7 "1988-09-17",10.1 "1988-09-18",10.0 "1988-09-19",9.8 "1988-09-20",5.5 "1988-09-21",13.5 "1988-09-22",16.6 "1988-09-23",8.4 "1988-09-24",8.2 "1988-09-25",11.1 "1988-09-26",10.8 "1988-09-27",8.8 "1988-09-28",10.8 "1988-09-29",8.7 "1988-09-30",12.4 "1988-10-01",9.0 "1988-10-02",13.5 "1988-10-03",14.7 "1988-10-04",10.9 "1988-10-05",8.5 "1988-10-06",6.0 "1988-10-07",12.7 "1988-10-08",11.1 "1988-10-09",8.7 "1988-10-10",12.3 "1988-10-11",13.3 "1988-10-12",5.6 "1988-10-13",13.7 "1988-10-14",8.5 "1988-10-15",11.2 "1988-10-16",8.7 "1988-10-17",11.7 "1988-10-18",12.5 "1988-10-19",8.2 "1988-10-20",15.6 "1988-10-21",10.3 "1988-10-22",11.4 "1988-10-23",9.7 "1988-10-24",6.3 "1988-10-25",14.3 "1988-10-26",11.3 "1988-10-27",7.3 "1988-10-28",12.8 "1988-10-29",11.9 "1988-10-30",14.3 "1988-10-31",11.6 "1988-11-01",13.2 "1988-11-02",15.5 "1988-11-03",14.1 "1988-11-04",9.5 "1988-11-05",7.2 "1988-11-06",11.8 "1988-11-07",16.8 "1988-11-08",12.5 "1988-11-09",9.4 "1988-11-10",11.9 "1988-11-11",10.3 "1988-11-12",16.9 "1988-11-13",17.5 "1988-11-14",7.5 "1988-11-15",8.6 "1988-11-16",11.1 "1988-11-17",11.5 "1988-11-18",10.7 "1988-11-19",15.7 "1988-11-20",12.8 "1988-11-21",13.0 "1988-11-22",12.9 "1988-11-23",14.3 "1988-11-24",13.7 "1988-11-25",12.1 "1988-11-26",11.9 "1988-11-27",11.8 "1988-11-28",11.4 "1988-11-29",10.3 "1988-11-30",11.7 "1988-12-01",12.0 "1988-12-02",17.4 "1988-12-03",16.8 "1988-12-04",16.2 "1988-12-05",13.0 "1988-12-06",12.5 "1988-12-07",12.4 "1988-12-08",16.1 "1988-12-09",20.2 "1988-12-10",14.3 "1988-12-11",11.0 "1988-12-12",14.4 "1988-12-13",15.7 "1988-12-14",19.7 "1988-12-15",20.7 "1988-12-16",23.9 "1988-12-17",16.6 "1988-12-18",17.5 "1988-12-19",14.9 "1988-12-20",13.6 "1988-12-21",11.9 "1988-12-22",15.2 "1988-12-23",17.3 "1988-12-24",19.8 "1988-12-25",15.8 "1988-12-26",9.5 "1988-12-27",12.9 "1988-12-28",12.9 "1988-12-29",14.8 "1988-12-30",14.1 "1989-01-01",14.3 "1989-01-02",17.4 "1989-01-03",18.5 "1989-01-04",16.8 "1989-01-05",11.5 "1989-01-06",9.5 "1989-01-07",12.2 "1989-01-08",15.7 "1989-01-09",16.3 "1989-01-10",13.6 "1989-01-11",12.6 "1989-01-12",13.8 "1989-01-13",12.1 "1989-01-14",13.4 "1989-01-15",17.3 "1989-01-16",19.4 "1989-01-17",16.6 "1989-01-18",13.9 "1989-01-19",13.1 "1989-01-20",16.0 "1989-01-21",14.5 "1989-01-22",15.0 "1989-01-23",12.6 "1989-01-24",12.5 "1989-01-25",15.2 "1989-01-26",16.2 "1989-01-27",16.5 "1989-01-28",20.1 "1989-01-29",20.6 "1989-01-30",16.9 "1989-01-31",16.5 "1989-02-01",16.1 "1989-02-02",14.4 "1989-02-03",16.3 "1989-02-04",15.7 "1989-02-05",14.2 "1989-02-06",13.2 "1989-02-07",16.8 "1989-02-08",18.5 "1989-02-09",16.7 "1989-02-10",15.3 "1989-02-11",15.9 "1989-02-12",15.2 "1989-02-13",17.5 "1989-02-14",18.3 "1989-02-15",19.4 "1989-02-16",19.4 "1989-02-17",19.5 "1989-02-18",20.5 "1989-02-19",15.7 "1989-02-20",15.0 "1989-02-21",16.1 "1989-02-22",14.3 "1989-02-23",13.0 "1989-02-24",16.2 "1989-02-25",17.7 "1989-02-26",13.2 "1989-02-27",15.8 "1989-02-28",18.5 "1989-03-01",20.4 "1989-03-02",22.0 "1989-03-03",19.7 "1989-03-04",19.6 "1989-03-05",20.3 "1989-03-06",18.3 "1989-03-07",18.9 "1989-03-08",20.3 "1989-03-09",21.4 "1989-03-10",18.3 "1989-03-11",17.8 "1989-03-12",17.7 "1989-03-13",12.8 "1989-03-14",15.1 "1989-03-15",15.0 "1989-03-16",14.8 "1989-03-17",12.0 "1989-03-18",12.5 "1989-03-19",15.0 "1989-03-20",17.1 "1989-03-21",17.3 "1989-03-22",16.9 "1989-03-23",16.5 "1989-03-24",13.6 "1989-03-25",13.2 "1989-03-26",9.4 "1989-03-27",9.5 "1989-03-28",11.8 "1989-03-29",10.4 "1989-03-30",9.7 "1989-03-31",12.6 "1989-04-01",13.3 "1989-04-02",15.1 "1989-04-03",14.2 "1989-04-04",14.2 "1989-04-05",19.2 "1989-04-06",12.6 "1989-04-07",14.2 "1989-04-08",11.9 "1989-04-09",13.9 "1989-04-10",13.5 "1989-04-11",15.3 "1989-04-12",13.9 "1989-04-13",14.0 "1989-04-14",12.9 "1989-04-15",8.5 "1989-04-16",11.4 "1989-04-17",10.9 "1989-04-18",12.0 "1989-04-19",8.6 "1989-04-20",9.0 "1989-04-21",9.6 "1989-04-22",10.2 "1989-04-23",9.8 "1989-04-24",8.3 "1989-04-25",11.0 "1989-04-26",11.9 "1989-04-27",14.0 "1989-04-28",15.8 "1989-04-29",14.5 "1989-04-30",13.2 "1989-05-01",14.2 "1989-05-02",14.6 "1989-05-03",11.8 "1989-05-04",14.4 "1989-05-05",10.4 "1989-05-06",10.3 "1989-05-07",10.8 "1989-05-08",10.5 "1989-05-09",9.5 "1989-05-10",12.5 "1989-05-11",13.7 "1989-05-12",12.7 "1989-05-13",11.9 "1989-05-14",11.4 "1989-05-15",9.7 "1989-05-16",8.3 "1989-05-17",8.1 "1989-05-18",11.7 "1989-05-19",11.6 "1989-05-20",7.4 "1989-05-21",5.2 "1989-05-22",11.0 "1989-05-23",9.5 "1989-05-24",9.2 "1989-05-25",10.7 "1989-05-26",9.0 "1989-05-27",10.2 "1989-05-28",10.3 "1989-05-29",12.1 "1989-05-30",13.2 "1989-05-31",6.6 "1989-06-01",2.3 "1989-06-02",1.4 "1989-06-03",2.1 "1989-06-04",6.6 "1989-06-05",8.9 "1989-06-06",7.8 "1989-06-07",9.0 "1989-06-08",10.3 "1989-06-09",7.9 "1989-06-10",7.2 "1989-06-11",8.6 "1989-06-12",8.8 "1989-06-13",6.2 "1989-06-14",9.5 "1989-06-15",10.2 "1989-06-16",9.7 "1989-06-17",11.2 "1989-06-18",10.2 "1989-06-19",10.1 "1989-06-20",8.1 "1989-06-21",6.6 "1989-06-22",5.0 "1989-06-23",4.7 "1989-06-24",5.3 "1989-06-25",4.5 "1989-06-26",2.3 "1989-06-27",1.4 "1989-06-28",0.5 "1989-06-29",2.4 "1989-06-30",8.0 "1989-07-01",6.0 "1989-07-02",7.1 "1989-07-03",9.7 "1989-07-04",6.9 "1989-07-05",5.3 "1989-07-06",7.0 "1989-07-07",6.2 "1989-07-08",7.0 "1989-07-09",9.7 "1989-07-10",8.0 "1989-07-11",8.5 "1989-07-12",7.1 "1989-07-13",7.5 "1989-07-14",3.3 "1989-07-15",1.8 "1989-07-16",2.6 "1989-07-17",5.3 "1989-07-18",5.8 "1989-07-19",5.8 "1989-07-20",7.2 "1989-07-21",5.3 "1989-07-22",1.6 "1989-07-23",3.1 "1989-07-24",5.3 "1989-07-25",7.7 "1989-07-26",4.2 "1989-07-27",5.5 "1989-07-28",9.0 "1989-07-29",11.2 "1989-07-30",8.0 "1989-07-31",7.6 "1989-08-01",3.7 "1989-08-02",7.5 "1989-08-03",8.1 "1989-08-04",8.4 "1989-08-05",7.1 "1989-08-06",7.6 "1989-08-07",7.6 "1989-08-08",5.6 "1989-08-09",7.0 "1989-08-10",10.5 "1989-08-11",7.3 "1989-08-12",7.8 "1989-08-13",5.8 "1989-08-14",3.8 "1989-08-15",5.8 "1989-08-16",6.7 "1989-08-17",6.6 "1989-08-18",6.6 "1989-08-19",9.0 "1989-08-20",8.1 "1989-08-21",5.1 "1989-08-22",8.6 "1989-08-23",7.0 "1989-08-24",5.5 "1989-08-25",7.4 "1989-08-26",6.2 "1989-08-27",4.2 "1989-08-28",6.3 "1989-08-29",7.0 "1989-08-30",4.0 "1989-08-31",8.0 "1989-09-01",8.8 "1989-09-02",8.8 "1989-09-03",6.1 "1989-09-04",8.6 "1989-09-05",8.9 "1989-09-06",7.8 "1989-09-07",5.0 "1989-09-08",7.0 "1989-09-09",13.3 "1989-09-10",7.9 "1989-09-11",7.5 "1989-09-12",8.3 "1989-09-13",7.2 "1989-09-14",6.5 "1989-09-15",8.9 "1989-09-16",7.4 "1989-09-17",9.9 "1989-09-18",9.3 "1989-09-19",10.6 "1989-09-20",8.6 "1989-09-21",7.2 "1989-09-22",12.6 "1989-09-23",7.8 "1989-09-24",6.3 "1989-09-25",9.2 "1989-09-26",5.8 "1989-09-27",9.0 "1989-09-28",5.0 "1989-09-29",11.9 "1989-09-30",13.4 "1989-10-01",10.5 "1989-10-02",6.2 "1989-10-03",5.1 "1989-10-04",9.5 "1989-10-05",11.7 "1989-10-06",9.2 "1989-10-07",7.3 "1989-10-08",9.7 "1989-10-09",9.4 "1989-10-10",10.0 "1989-10-11",10.9 "1989-10-12",11.0 "1989-10-13",10.9 "1989-10-14",8.0 "1989-10-15",11.2 "1989-10-16",7.5 "1989-10-17",7.2 "1989-10-18",13.2 "1989-10-19",12.9 "1989-10-20",9.4 "1989-10-21",10.2 "1989-10-22",9.5 "1989-10-23",12.4 "1989-10-24",10.2 "1989-10-25",13.4 "1989-10-26",11.6 "1989-10-27",8.0 "1989-10-28",9.0 "1989-10-29",9.3 "1989-10-30",13.5 "1989-10-31",8.0 "1989-11-01",8.1 "1989-11-02",10.0 "1989-11-03",8.5 "1989-11-04",12.5 "1989-11-05",15.0 "1989-11-06",13.3 "1989-11-07",11.0 "1989-11-08",11.9 "1989-11-09",8.3 "1989-11-10",9.7 "1989-11-11",11.3 "1989-11-12",12.5 "1989-11-13",9.4 "1989-11-14",11.4 "1989-11-15",13.2 "1989-11-16",13.8 "1989-11-17",16.0 "1989-11-18",10.9 "1989-11-19",11.9 "1989-11-20",12.4 "1989-11-21",13.2 "1989-11-22",15.5 "1989-11-23",21.6 "1989-11-24",14.9 "1989-11-25",14.4 "1989-11-26",12.9 "1989-11-27",13.1 "1989-11-28",14.0 "1989-11-29",17.9 "1989-11-30",17.7 "1989-12-01",16.3 "1989-12-02",18.3 "1989-12-03",13.7 "1989-12-04",13.3 "1989-12-05",10.6 "1989-12-06",14.1 "1989-12-07",16.0 "1989-12-08",16.5 "1989-12-09",14.1 "1989-12-10",18.7 "1989-12-11",16.2 "1989-12-12",14.8 "1989-12-13",12.6 "1989-12-14",10.4 "1989-12-15",12.2 "1989-12-16",12.6 "1989-12-17",12.1 "1989-12-18",17.3 "1989-12-19",16.4 "1989-12-20",12.6 "1989-12-21",12.3 "1989-12-22",11.8 "1989-12-23",12.0 "1989-12-24",12.7 "1989-12-25",16.4 "1989-12-26",16.0 "1989-12-27",13.3 "1989-12-28",11.7 "1989-12-29",10.4 "1989-12-30",14.4 "1989-12-31",12.7 "1990-01-01",14.8 "1990-01-02",13.3 "1990-01-03",15.6 "1990-01-04",14.5 "1990-01-05",14.3 "1990-01-06",15.3 "1990-01-07",16.4 "1990-01-08",14.8 "1990-01-09",17.4 "1990-01-10",18.8 "1990-01-11",22.1 "1990-01-12",19.0 "1990-01-13",15.5 "1990-01-14",15.8 "1990-01-15",14.7 "1990-01-16",10.7 "1990-01-17",11.5 "1990-01-18",15.0 "1990-01-19",14.5 "1990-01-20",14.5 "1990-01-21",13.3 "1990-01-22",14.3 "1990-01-23",14.3 "1990-01-24",20.5 "1990-01-25",15.0 "1990-01-26",17.1 "1990-01-27",16.9 "1990-01-28",16.9 "1990-01-29",13.6 "1990-01-30",16.4 "1990-01-31",16.1 "1990-02-01",12.0 "1990-02-02",12.2 "1990-02-03",14.8 "1990-02-04",14.8 "1990-02-05",14.4 "1990-02-06",12.9 "1990-02-07",13.4 "1990-02-08",15.9 "1990-02-09",16.1 "1990-02-10",17.6 "1990-02-11",15.6 "1990-02-12",15.0 "1990-02-13",13.0 "1990-02-14",14.1 "1990-02-15",17.3 "1990-02-16",15.7 "1990-02-17",18.6 "1990-02-18",12.7 "1990-02-19",14.0 "1990-02-20",13.7 "1990-02-21",16.3 "1990-02-22",20.0 "1990-02-23",17.0 "1990-02-24",15.2 "1990-02-25",16.5 "1990-02-26",16.5 "1990-02-27",17.3 "1990-02-28",19.1 "1990-03-01",19.3 "1990-03-02",17.3 "1990-03-03",19.0 "1990-03-04",19.8 "1990-03-05",19.3 "1990-03-06",17.2 "1990-03-07",14.2 "1990-03-08",10.3 "1990-03-09",13.0 "1990-03-10",15.3 "1990-03-11",15.0 "1990-03-12",12.1 "1990-03-13",9.2 "1990-03-14",11.0 "1990-03-15",15.0 "1990-03-16",11.6 "1990-03-17",11.6 "1990-03-18",15.1 "1990-03-19",15.0 "1990-03-20",13.6 "1990-03-21",12.5 "1990-03-22",14.3 "1990-03-23",16.0 "1990-03-24",17.4 "1990-03-25",16.9 "1990-03-26",18.0 "1990-03-27",20.6 "1990-03-28",14.2 "1990-03-29",10.9 "1990-03-30",11.9 "1990-03-31",13.3 "1990-04-01",15.3 "1990-04-02",14.7 "1990-04-03",11.0 "1990-04-04",12.2 "1990-04-05",14.2 "1990-04-06",17.0 "1990-04-07",15.8 "1990-04-08",15.2 "1990-04-09",15.1 "1990-04-10",14.7 "1990-04-11",18.5 "1990-04-12",16.4 "1990-04-13",18.4 "1990-04-14",15.1 "1990-04-15",9.9 "1990-04-16",10.2 "1990-04-17",12.6 "1990-04-18",13.2 "1990-04-19",11.5 "1990-04-20",13.8 "1990-04-21",14.5 "1990-04-22",14.7 "1990-04-23",11.2 "1990-04-24",12.7 "1990-04-25",13.7 "1990-04-26",11.5 "1990-04-27",10.4 "1990-04-28",8.9 "1990-04-29",11.1 "1990-04-30",9.5 "1990-05-01",13.0 "1990-05-02",13.9 "1990-05-03",12.6 "1990-05-04",14.3 "1990-05-05",16.0 "1990-05-06",13.3 "1990-05-07",7.0 "1990-05-08",4.9 "1990-05-09",6.9 "1990-05-10",13.7 "1990-05-11",10.6 "1990-05-12",12.3 "1990-05-13",11.1 "1990-05-14",10.2 "1990-05-15",9.5 "1990-05-16",8.9 "1990-05-17",13.4 "1990-05-18",9.1 "1990-05-19",9.4 "1990-05-20",8.7 "1990-05-21",5.8 "1990-05-22",4.5 "1990-05-23",7.2 "1990-05-24",10.0 "1990-05-25",10.5 "1990-05-26",10.7 "1990-05-27",8.2 "1990-05-28",6.1 "1990-05-29",4.5 "1990-05-30",6.1 "1990-05-31",9.8 "1990-06-01",9.7 "1990-06-02",8.2 "1990-06-03",8.4 "1990-06-04",8.5 "1990-06-05",10.4 "1990-06-06",6.8 "1990-06-07",6.0 "1990-06-08",6.6 "1990-06-09",7.8 "1990-06-10",10.3 "1990-06-11",7.2 "1990-06-12",7.4 "1990-06-13",11.4 "1990-06-14",5.4 "1990-06-15",4.4 "1990-06-16",6.4 "1990-06-17",9.3 "1990-06-18",7.7 "1990-06-19",8.1 "1990-06-20",8.3 "1990-06-21",9.1 "1990-06-22",7.7 "1990-06-23",10.6 "1990-06-24",8.2 "1990-06-25",7.9 "1990-06-26",5.2 "1990-06-27",5.9 "1990-06-28",3.7 "1990-06-29",5.6 "1990-06-30",9.4 "1990-07-01",7.4 "1990-07-02",7.3 "1990-07-03",7.7 "1990-07-04",7.7 "1990-07-05",9.3 "1990-07-06",4.4 "1990-07-07",5.7 "1990-07-08",10.2 "1990-07-09",10.2 "1990-07-10",9.3 "1990-07-11",5.4 "1990-07-12",5.0 "1990-07-13",7.6 "1990-07-14",9.6 "1990-07-15",10.4 "1990-07-16",11.2 "1990-07-17",9.1 "1990-07-18",11.2 "1990-07-19",6.8 "1990-07-20",8.3 "1990-07-21",9.7 "1990-07-22",9.6 "1990-07-23",9.8 "1990-07-24",10.8 "1990-07-25",9.2 "1990-07-26",6.5 "1990-07-27",8.1 "1990-07-28",7.3 "1990-07-29",7.9 "1990-07-30",6.0 "1990-07-31",5.0 "1990-08-01",6.8 "1990-08-02",9.8 "1990-08-03",5.7 "1990-08-04",8.6 "1990-08-05",10.6 "1990-08-06",7.8 "1990-08-07",7.7 "1990-08-08",8.6 "1990-08-09",6.5 "1990-08-10",6.9 "1990-08-11",6.4 "1990-08-12",8.5 "1990-08-13",7.8 "1990-08-14",9.3 "1990-08-15",8.4 "1990-08-16",7.8 "1990-08-17",7.4 "1990-08-18",7.7 "1990-08-19",8.9 "1990-08-20",9.7 "1990-08-21",9.9 "1990-08-22",6.1 "1990-08-23",6.6 "1990-08-24",7.6 "1990-08-25",7.4 "1990-08-26",8.0 "1990-08-27",2.1 "1990-08-28",5.9 "1990-08-29",11.6 "1990-08-30",8.6 "1990-08-31",7.9 "1990-09-01",6.0 "1990-09-02",9.5 "1990-09-03",8.6 "1990-09-04",7.6 "1990-09-05",10.4 "1990-09-06",10.3 "1990-09-07",7.5 "1990-09-08",3.0 "1990-09-09",5.3 "1990-09-10",10.5 "1990-09-11",14.6 "1990-09-12",12.6 "1990-09-13",9.8 "1990-09-14",7.2 "1990-09-15",10.1 "1990-09-16",10.4 "1990-09-17",3.7 "1990-09-18",7.3 "1990-09-19",11.6 "1990-09-20",16.3 "1990-09-21",9.6 "1990-09-22",6.8 "1990-09-23",5.2 "1990-09-24",10.6 "1990-09-25",16.3 "1990-09-26",9.8 "1990-09-27",4.6 "1990-09-28",11.1 "1990-09-29",8.7 "1990-09-30",10.0 "1990-10-01",11.3 "1990-10-02",10.5 "1990-10-03",9.9 "1990-10-04",11.0 "1990-10-05",14.0 "1990-10-06",9.2 "1990-10-07",9.8 "1990-10-08",6.0 "1990-10-09",9.8 "1990-10-10",9.2 "1990-10-11",11.8 "1990-10-12",10.3 "1990-10-13",7.5 "1990-10-14",7.7 "1990-10-15",15.8 "1990-10-16",14.6 "1990-10-17",10.5 "1990-10-18",11.3 "1990-10-19",10.9 "1990-10-20",6.4 "1990-10-21",10.9 "1990-10-22",9.0 "1990-10-23",10.9 "1990-10-24",12.4 "1990-10-25",11.6 "1990-10-26",13.3 "1990-10-27",14.4 "1990-10-28",18.4 "1990-10-29",13.6 "1990-10-30",14.9 "1990-10-31",14.8 "1990-11-01",15.4 "1990-11-02",11.8 "1990-11-03",13.0 "1990-11-04",11.1 "1990-11-05",12.5 "1990-11-06",18.3 "1990-11-07",19.2 "1990-11-08",15.4 "1990-11-09",13.1 "1990-11-10",11.5 "1990-11-11",8.6 "1990-11-12",12.6 "1990-11-13",13.8 "1990-11-14",14.6 "1990-11-15",13.2 "1990-11-16",12.3 "1990-11-17",8.8 "1990-11-18",10.7 "1990-11-19",9.9 "1990-11-20",8.3 "1990-11-21",15.0 "1990-11-22",12.2 "1990-11-23",10.5 "1990-11-24",11.1 "1990-11-25",13.0 "1990-11-26",12.9 "1990-11-27",8.8 "1990-11-28",14.7 "1990-11-29",14.7 "1990-11-30",12.7 "1990-12-01",13.3 "1990-12-02",13.2 "1990-12-03",16.2 "1990-12-04",17.3 "1990-12-05",20.5 "1990-12-06",20.2 "1990-12-07",19.4 "1990-12-08",15.5 "1990-12-09",14.1 "1990-12-10",11.0 "1990-12-11",11.1 "1990-12-12",14.0 "1990-12-13",11.4 "1990-12-14",12.5 "1990-12-15",13.4 "1990-12-16",13.6 "1990-12-17",13.9 "1990-12-18",17.2 "1990-12-19",14.7 "1990-12-20",15.4 "1990-12-21",13.1 "1990-12-22",13.2 "1990-12-23",13.9 "1990-12-24",10.0 "1990-12-25",12.9 "1990-12-26",14.6 "1990-12-27",14.0 "1990-12-28",13.6 "1990-12-29",13.5 "1990-12-30",15.7 "1990-12-31",13.0 Daily minimum temperatures in Melbourne, Australia, 1981-1990 ================================================ FILE: tf2.0/exercises.txt ================================================ Logistic Regression https://www.kaggle.com/uciml/pima-indians-diabetes-database https://lazyprogrammer.me/course_files/exercises/diabetes.csv Linear Regression https://www.cs.toronto.edu/~delve/data/boston/bostonDetail.html https://lazyprogrammer.me/course_files/exercises/boston.txt ANN https://archive.ics.uci.edu/ml/datasets/ecoli (orig) https://www.kaggle.com/elikplim/ecoli-data-set (alt) https://lazyprogrammer.me/course_files/exercises/ecoli.csv CNN https://www.kaggle.com/c/challenges-in-representation-learning-facial-expression-recognition-challenge https://archive.org/download/fer2013_202311/fer2013.csv RNN Find your own stock price dataset! NLP https://www.kaggle.com/crowdflower/twitter-airline-sentiment https://lazyprogrammer.me/course_files/exercises/AirlineSentimentTweets.csv Recommender Systems http://www2.informatik.uni-freiburg.de/~cziegler/BX/ http://lazyprogrammer.me/course_files/exercises/BX-CSV-Dump.zip Transfer Learning https://www.kaggle.com/c/dogs-vs-cats GAN https://www.kaggle.com/c/dogs-vs-cats DeepRL Find your own stock price dataset! ================================================ FILE: tf2.0/extra_reading.txt ================================================ Gradient Descent: Convergence Analysis http://www.stat.cmu.edu/~ryantibs/convexopt-F13/scribes/lec6.pdf Deep learning improved by biological activation functions https://arxiv.org/pdf/1804.11237.pdf Batch Normalization: Accelerating Deep Network Training by Reducing Internal Covariate Shift Sergey Ioffe, Christian Szegedy https://arxiv.org/abs/1502.03167 Dropout: A Simple Way to Prevent Neural Networks from Overfitting https://www.cs.toronto.edu/~hinton/absps/JMLRdropout.pdf Convolution arithmetic tutorial https://theano-pymc.readthedocs.io/en/latest/tutorial/conv_arithmetic.html On the Practical Computational Power of Finite Precision RNNs for Language Recognition https://arxiv.org/abs/1805.04908 Massive Exploration of Neural Machine Translation Architectures https://arxiv.org/abs/1703.03906 Practical Deep Reinforcement Learning Approach for Stock Trading https://arxiv.org/abs/1811.07522 Inceptionism: Going Deeper into Neural Networks https://ai.googleblog.com/2015/06/inceptionism-going-deeper-into-neural.html The Loss Surfaces of Multilayer Networks https://arxiv.org/pdf/1412.0233.pdf Tensorflow Developer Certificate Installation Guide https://www.tensorflow.org/static/extras/cert/Setting_Up_TF_Developer_Certificate_Exam.pdf Tensorflow Developer Certificate Candidate Handbook https://www.tensorflow.org/extras/cert/TF_Certificate_Candidate_Handbook.pdf ================================================ FILE: tf2.0/fake_util.py ================================================ # Used for an example only def my_useful_function(): print("hello world") ================================================ FILE: tf2.0/keras_trader.py ================================================ import numpy as np import pandas as pd # must do this BEFORE importing keras import os os.environ["KERAS_BACKEND"] = "jax" from keras.models import Model from keras.layers import Dense, Input from keras.optimizers import Adam from datetime import datetime import itertools import argparse import re import pickle from sklearn.preprocessing import StandardScaler import keras.backend as K print("Using backend:", K.backend()) # import tensorflow as tf # if tf.__version__.startswith('2'): # tf.compat.v1.disable_eager_execution() # Let's use AAPL (Apple), MSI (Motorola), SBUX (Starbucks) def get_data(): # returns a T x 3 list of stock prices # each row is a different stock # 0 = AAPL # 1 = MSI # 2 = SBUX df = pd.read_csv('aapl_msi_sbux.csv') return df.values ### The experience replay memory ### class ReplayBuffer: def __init__(self, obs_dim, act_dim, size): self.obs1_buf = np.zeros([size, obs_dim], dtype=np.float32) self.obs2_buf = np.zeros([size, obs_dim], dtype=np.float32) self.acts_buf = np.zeros(size, dtype=np.uint8) self.rews_buf = np.zeros(size, dtype=np.float32) self.done_buf = np.zeros(size, dtype=np.uint8) self.ptr, self.size, self.max_size = 0, 0, size def store(self, obs, act, rew, next_obs, done): self.obs1_buf[self.ptr] = obs self.obs2_buf[self.ptr] = next_obs self.acts_buf[self.ptr] = act self.rews_buf[self.ptr] = rew self.done_buf[self.ptr] = done self.ptr = (self.ptr+1) % self.max_size self.size = min(self.size+1, self.max_size) def sample_batch(self, batch_size=32): idxs = np.random.randint(0, self.size, size=batch_size) return dict(s=self.obs1_buf[idxs], s2=self.obs2_buf[idxs], a=self.acts_buf[idxs], r=self.rews_buf[idxs], d=self.done_buf[idxs]) def get_scaler(env): # return scikit-learn scaler object to scale the states # Note: you could also populate the replay buffer here states = [] for _ in range(env.n_step): action = np.random.choice(env.action_space) state, reward, done, info = env.step(action) states.append(state) if done: break scaler = StandardScaler() scaler.fit(states) return scaler def maybe_make_dir(directory): if not os.path.exists(directory): os.makedirs(directory) def mlp(input_dim, n_action, n_hidden_layers=1, hidden_dim=32): """ A multi-layer perceptron """ # input layer i = Input(shape=(input_dim,)) x = i # hidden layers for _ in range(n_hidden_layers): x = Dense(hidden_dim, activation='relu')(x) # final layer x = Dense(n_action)(x) # make the model model = Model(i, x) model.compile(loss='mse', optimizer='adam') print((model.summary())) return model class MultiStockEnv: """ A 3-stock trading environment. State: vector of size 7 (n_stock * 2 + 1) - # shares of stock 1 owned - # shares of stock 2 owned - # shares of stock 3 owned - price of stock 1 (using daily close price) - price of stock 2 - price of stock 3 - cash owned (can be used to purchase more stocks) Action: categorical variable with 27 (3^3) possibilities - for each stock, you can: - 0 = sell - 1 = hold - 2 = buy """ def __init__(self, data, initial_investment=20000): # data self.stock_price_history = data self.n_step, self.n_stock = self.stock_price_history.shape # instance attributes self.initial_investment = initial_investment self.cur_step = None self.stock_owned = None self.stock_price = None self.cash_in_hand = None self.action_space = np.arange(3**self.n_stock) # action permutations # returns a nested list with elements like: # [0,0,0] # [0,0,1] # [0,0,2] # [0,1,0] # [0,1,1] # etc. # 0 = sell # 1 = hold # 2 = buy self.action_list = list(map(list, itertools.product([0, 1, 2], repeat=self.n_stock))) # calculate size of state self.state_dim = self.n_stock * 2 + 1 self.reset() def reset(self): self.cur_step = 0 self.stock_owned = np.zeros(self.n_stock) self.stock_price = self.stock_price_history[self.cur_step] self.cash_in_hand = self.initial_investment return self._get_obs() def step(self, action): assert action in self.action_space # get current value before performing the action prev_val = self._get_val() # perform the trade self._trade(action) # update price, i.e. go to the next day self.cur_step += 1 self.stock_price = self.stock_price_history[self.cur_step] # get the new value after taking the action cur_val = self._get_val() # reward is the increase in porfolio value reward = cur_val - prev_val # done if we have run out of data done = self.cur_step == self.n_step - 1 # store the current value of the portfolio here info = {'cur_val': cur_val} # conform to the Gym API return self._get_obs(), reward, done, info def _get_obs(self): obs = np.empty(self.state_dim) obs[:self.n_stock] = self.stock_owned obs[self.n_stock:2*self.n_stock] = self.stock_price obs[-1] = self.cash_in_hand return obs def _get_val(self): return self.stock_owned.dot(self.stock_price) + self.cash_in_hand def _trade(self, action): # index the action we want to perform # 0 = sell # 1 = hold # 2 = buy # e.g. [2,1,0] means: # buy first stock # hold second stock # sell third stock action_vec = self.action_list[action] # determine which stocks to buy or sell sell_index = [] # stores index of stocks we want to sell buy_index = [] # stores index of stocks we want to buy for i, a in enumerate(action_vec): if a == 0: sell_index.append(i) elif a == 2: buy_index.append(i) # sell any stocks we want to sell # then buy any stocks we want to buy if sell_index: # NOTE: to simplify the problem, when we sell, we will sell ALL shares of that stock for i in sell_index: self.cash_in_hand += self.stock_price[i] * self.stock_owned[i] self.stock_owned[i] = 0 if buy_index: # NOTE: when buying, we will loop through each stock we want to buy, # and buy one share at a time until we run out of cash can_buy = True while can_buy: for i in buy_index: if self.cash_in_hand > self.stock_price[i]: self.stock_owned[i] += 1 # buy one share self.cash_in_hand -= self.stock_price[i] else: can_buy = False class DQNAgent(object): def __init__(self, state_size, action_size): self.state_size = state_size self.action_size = action_size self.memory = ReplayBuffer(state_size, action_size, size=500) self.gamma = 0.95 # discount rate self.epsilon = 1.0 # exploration rate self.epsilon_min = 0.01 self.epsilon_decay = 0.995 self.model = mlp(state_size, action_size) def update_replay_memory(self, state, action, reward, next_state, done): self.memory.store(state, action, reward, next_state, done) def act(self, state): if np.random.rand() <= self.epsilon: return np.random.choice(self.action_size) act_values = self.model.predict(state, verbose=0) return np.argmax(act_values[0]) # returns action def replay(self, batch_size=32): # first check if replay buffer contains enough data if self.memory.size < batch_size: return # sample a batch of data from the replay memory minibatch = self.memory.sample_batch(batch_size) states = minibatch['s'] actions = minibatch['a'] rewards = minibatch['r'] next_states = minibatch['s2'] done = minibatch['d'] # Calculate the tentative target: Q(s',a) target = rewards + (1 - done) * self.gamma * np.amax(self.model.predict(next_states, verbose=0), axis=1) # With the Keras API, the target (usually) must have the same # shape as the predictions. # However, we only need to update the network for the actions # which were actually taken. # We can accomplish this by setting the target to be equal to # the prediction for all values. # Then, only change the targets for the actions taken. # Q(s,a) target_full = self.model.predict(states, verbose=0) target_full[np.arange(batch_size), actions] = target # Run one training step self.model.train_on_batch(states, target_full) if self.epsilon > self.epsilon_min: self.epsilon *= self.epsilon_decay def load(self, name): self.model.load_weights(name) def save(self, name): self.model.save_weights(name) def play_one_episode(agent, env, is_train): # note: after transforming states are already 1xD state = env.reset() state = scaler.transform([state]) done = False while not done: action = agent.act(state) next_state, reward, done, info = env.step(action) next_state = scaler.transform([next_state]) if is_train == 'train': agent.update_replay_memory(state, action, reward, next_state, done) agent.replay(batch_size) state = next_state return info['cur_val'] if __name__ == '__main__': # config models_folder = 'rl_trader_models' rewards_folder = 'rl_trader_rewards' model_file = 'dqn.weights.h5' num_episodes = 2000 batch_size = 32 initial_investment = 20000 parser = argparse.ArgumentParser() parser.add_argument('-m', '--mode', type=str, required=True, help='either "train" or "test"') args = parser.parse_args() maybe_make_dir(models_folder) maybe_make_dir(rewards_folder) data = get_data() n_timesteps, n_stocks = data.shape n_train = n_timesteps // 2 train_data = data[:n_train] test_data = data[n_train:] env = MultiStockEnv(train_data, initial_investment) state_size = env.state_dim action_size = len(env.action_space) agent = DQNAgent(state_size, action_size) scaler = get_scaler(env) # store the final value of the portfolio (end of episode) portfolio_value = [] if args.mode == 'test': # then load the previous scaler with open(f'{models_folder}/scaler.pkl', 'rb') as f: scaler = pickle.load(f) # remake the env with test data env = MultiStockEnv(test_data, initial_investment) # make sure epsilon is not 1! # no need to run multiple episodes if epsilon = 0, it's deterministic agent.epsilon = 0.01 # load trained weights agent.load(f'{models_folder}/{model_file}') # play the game num_episodes times for e in range(num_episodes): t0 = datetime.now() val = play_one_episode(agent, env, args.mode) dt = datetime.now() - t0 print(f"episode: {e + 1}/{num_episodes}, episode end value: {val:.2f}, duration: {dt}") portfolio_value.append(val) # append episode end portfolio value # save the weights when we are done if args.mode == 'train': # save the DQN agent.save(f'{models_folder}/{model_file}') # save the scaler with open(f'{models_folder}/scaler.pkl', 'wb') as f: pickle.dump(scaler, f) # save portfolio value for each episode np.save(f'{rewards_folder}/{args.mode}.npy', portfolio_value) ================================================ FILE: tf2.0/mlp_trader.py ================================================ import numpy as np import pandas as pd from sklearn.neural_network import MLPRegressor from sklearn.preprocessing import StandardScaler from datetime import datetime import itertools import argparse import re import os import pickle # Let's use AAPL (Apple), MSI (Motorola), SBUX (Starbucks) def get_data(): # returns a T x 3 list of stock prices # each row is a different stock # 0 = AAPL # 1 = MSI # 2 = SBUX df = pd.read_csv('aapl_msi_sbux.csv') return df.values ### The experience replay memory ### class ReplayBuffer: def __init__(self, obs_dim, act_dim, size): self.obs1_buf = np.zeros([size, obs_dim], dtype=np.float32) self.obs2_buf = np.zeros([size, obs_dim], dtype=np.float32) self.acts_buf = np.zeros(size, dtype=np.uint8) self.rews_buf = np.zeros(size, dtype=np.float32) self.done_buf = np.zeros(size, dtype=np.uint8) self.ptr, self.size, self.max_size = 0, 0, size def store(self, obs, act, rew, next_obs, done): self.obs1_buf[self.ptr] = obs self.obs2_buf[self.ptr] = next_obs self.acts_buf[self.ptr] = act self.rews_buf[self.ptr] = rew self.done_buf[self.ptr] = done self.ptr = (self.ptr+1) % self.max_size self.size = min(self.size+1, self.max_size) def sample_batch(self, batch_size=32): idxs = np.random.randint(0, self.size, size=batch_size) return dict(s=self.obs1_buf[idxs], s2=self.obs2_buf[idxs], a=self.acts_buf[idxs], r=self.rews_buf[idxs], d=self.done_buf[idxs]) def get_scaler(env): # return scikit-learn scaler object to scale the states # Note: you could also populate the replay buffer here states = [] for _ in range(env.n_step): action = np.random.choice(env.action_space) state, reward, done, info = env.step(action) states.append(state) if done: break scaler = StandardScaler() scaler.fit(states) return scaler def maybe_make_dir(directory): if not os.path.exists(directory): os.makedirs(directory) def mlp(input_dim, n_action, n_hidden_layers=1, hidden_dim=32): """ A multi-layer perceptron """ model = MLPRegressor( hidden_layer_sizes=n_hidden_layers * [hidden_dim], ) # since we'll be first using this to make a prediction with random weights # we need to know the output size # so we'll just start by fitting on some dummy data X = np.random.randn(100, input_dim) Y = np.random.randn(100, n_action) model.partial_fit(X, Y) return model class MultiStockEnv: """ A 3-stock trading environment. State: vector of size 7 (n_stock * 2 + 1) - # shares of stock 1 owned - # shares of stock 2 owned - # shares of stock 3 owned - price of stock 1 (using daily close price) - price of stock 2 - price of stock 3 - cash owned (can be used to purchase more stocks) Action: categorical variable with 27 (3^3) possibilities - for each stock, you can: - 0 = sell - 1 = hold - 2 = buy """ def __init__(self, data, initial_investment=20000): # data self.stock_price_history = data self.n_step, self.n_stock = self.stock_price_history.shape # instance attributes self.initial_investment = initial_investment self.cur_step = None self.stock_owned = None self.stock_price = None self.cash_in_hand = None self.action_space = np.arange(3**self.n_stock) # action permutations # returns a nested list with elements like: # [0,0,0] # [0,0,1] # [0,0,2] # [0,1,0] # [0,1,1] # etc. # 0 = sell # 1 = hold # 2 = buy self.action_list = list(map(list, itertools.product([0, 1, 2], repeat=self.n_stock))) # calculate size of state self.state_dim = self.n_stock * 2 + 1 self.reset() def reset(self): self.cur_step = 0 self.stock_owned = np.zeros(self.n_stock) self.stock_price = self.stock_price_history[self.cur_step] self.cash_in_hand = self.initial_investment return self._get_obs() def step(self, action): assert action in self.action_space # get current value before performing the action prev_val = self._get_val() # perform the trade self._trade(action) # update price, i.e. go to the next day self.cur_step += 1 self.stock_price = self.stock_price_history[self.cur_step] # get the new value after taking the action cur_val = self._get_val() # reward is the increase in porfolio value reward = cur_val - prev_val # done if we have run out of data done = self.cur_step == self.n_step - 1 # store the current value of the portfolio here info = {'cur_val': cur_val} # conform to the Gym API return self._get_obs(), reward, done, info def _get_obs(self): obs = np.empty(self.state_dim) obs[:self.n_stock] = self.stock_owned obs[self.n_stock:2*self.n_stock] = self.stock_price obs[-1] = self.cash_in_hand return obs def _get_val(self): return self.stock_owned.dot(self.stock_price) + self.cash_in_hand def _trade(self, action): # index the action we want to perform # 0 = sell # 1 = hold # 2 = buy # e.g. [2,1,0] means: # buy first stock # hold second stock # sell third stock action_vec = self.action_list[action] # determine which stocks to buy or sell sell_index = [] # stores index of stocks we want to sell buy_index = [] # stores index of stocks we want to buy for i, a in enumerate(action_vec): if a == 0: sell_index.append(i) elif a == 2: buy_index.append(i) # sell any stocks we want to sell # then buy any stocks we want to buy if sell_index: # NOTE: to simplify the problem, when we sell, we will sell ALL shares of that stock for i in sell_index: self.cash_in_hand += self.stock_price[i] * self.stock_owned[i] self.stock_owned[i] = 0 if buy_index: # NOTE: when buying, we will loop through each stock we want to buy, # and buy one share at a time until we run out of cash can_buy = True while can_buy: for i in buy_index: if self.cash_in_hand > self.stock_price[i]: self.stock_owned[i] += 1 # buy one share self.cash_in_hand -= self.stock_price[i] else: can_buy = False class DQNAgent(object): def __init__(self, state_size, action_size): self.state_size = state_size self.action_size = action_size self.memory = ReplayBuffer(state_size, action_size, size=500) self.gamma = 0.95 # discount rate self.epsilon = 1.0 # exploration rate self.epsilon_min = 0.01 self.epsilon_decay = 0.995 self.model = mlp(state_size, action_size) def update_replay_memory(self, state, action, reward, next_state, done): self.memory.store(state, action, reward, next_state, done) def act(self, state): if np.random.rand() <= self.epsilon: return np.random.choice(self.action_size) act_values = self.model.predict(state) return np.argmax(act_values[0]) # returns action def replay(self, batch_size=32): # first check if replay buffer contains enough data if self.memory.size < batch_size: return # sample a batch of data from the replay memory minibatch = self.memory.sample_batch(batch_size) states = minibatch['s'] actions = minibatch['a'] rewards = minibatch['r'] next_states = minibatch['s2'] done = minibatch['d'] # Calculate the tentative target: Q(s',a) target = rewards + (1 - done) * self.gamma * np.amax(self.model.predict(next_states), axis=1) # With the Keras API, the target (usually) must have the same # shape as the predictions. # However, we only need to update the network for the actions # which were actually taken. # We can accomplish this by setting the target to be equal to # the prediction for all values. # Then, only change the targets for the actions taken. # Q(s,a) target_full = self.model.predict(states) target_full[np.arange(batch_size), actions] = target # Run one training step self.model.partial_fit(states, target_full) if self.epsilon > self.epsilon_min: self.epsilon *= self.epsilon_decay def load(self, name): with open(name, "rb") as f: self.model = pickle.load(f) def save(self, name): with open(name, "wb") as f: pickle.dump(self.model, f) def play_one_episode(agent, env, is_train): # note: after transforming states are already 1xD state = env.reset() state = scaler.transform([state]) done = False while not done: action = agent.act(state) next_state, reward, done, info = env.step(action) next_state = scaler.transform([next_state]) if is_train == 'train': agent.update_replay_memory(state, action, reward, next_state, done) agent.replay(batch_size) state = next_state return info['cur_val'] if __name__ == '__main__': # config models_folder = 'rl_trader_models' rewards_folder = 'rl_trader_rewards' num_episodes = 2000 batch_size = 32 initial_investment = 20000 parser = argparse.ArgumentParser() parser.add_argument('-m', '--mode', type=str, required=True, help='either "train" or "test"') args = parser.parse_args() maybe_make_dir(models_folder) maybe_make_dir(rewards_folder) data = get_data() n_timesteps, n_stocks = data.shape n_train = n_timesteps // 2 train_data = data[:n_train] test_data = data[n_train:] env = MultiStockEnv(train_data, initial_investment) state_size = env.state_dim action_size = len(env.action_space) agent = DQNAgent(state_size, action_size) scaler = get_scaler(env) # store the final value of the portfolio (end of episode) portfolio_value = [] if args.mode == 'test': # then load the previous scaler with open(f'{models_folder}/scaler.pkl', 'rb') as f: scaler = pickle.load(f) # remake the env with test data env = MultiStockEnv(test_data, initial_investment) # make sure epsilon is not 1! # no need to run multiple episodes if epsilon = 0, it's deterministic agent.epsilon = 0.01 # load trained weights agent.load(f'{models_folder}/mlp.pkl') # play the game num_episodes times for e in range(num_episodes): t0 = datetime.now() val = play_one_episode(agent, env, args.mode) dt = datetime.now() - t0 print(f"episode: {e + 1}/{num_episodes}, episode end value: {val:.2f}, duration: {dt}") portfolio_value.append(val) # append episode end portfolio value # save the weights when we are done if args.mode == 'train': # save the DQN agent.save(f'{models_folder}/mlp.pkl') # save the scaler with open(f'{models_folder}/scaler.pkl', 'wb') as f: pickle.dump(scaler, f) # save portfolio value for each episode np.save(f'{rewards_folder}/{args.mode}.npy', portfolio_value) ================================================ FILE: tf2.0/moore.csv ================================================ 1971,2300 1972,3500 1973,2500 1973,2500 1974,4100 1974,4500 1974,8000 1975,3510 1976,5000 1976,8500 1976,6500 1978,9000 1978,29000 1979,17500 1979,29000 1979,68000 1981,11500 1982,55000 1982,134000 1983,22000 1984,63000 1984,190000 1985,275000 1985,25000 1985,16000 1986,110000 1986,375000 1986,30000 1987,385000 1987,730000 1987,273000 1987,553000 1988,180000 1988,250000 1989,600000 1989,1000000 1989,1180235 1989,310000 1990,1200000 1991,1350000 1991,35000 1992,600000 1992,900000 1993,2800000 1993,3100000 1994,578977 1994,2500000 1995,2500000 1999,111000 1995,5500000 1996,4300000 1997,10000000 1997,7500000 1997,8800000 1998,7500000 1999,9500000 1999,13500000 2000,21000000 2000,21000000 1999,27400000 1999,21300000 1999,22000000 2000,42000000 2001,191000000 2001,45000000 2002,55000000 2004,112000000 2004,400000000 2005,169000000 2006,184000000 2005,228000000 2006,362000000 2007,540000000 2008,47000000 2003,54300000 2003,105900000 2002,220000000 2005,165000000 2005,250000000 2006,291000000 2007,169000000 2003,410000000 2008,600000000 2009,760000000 2011,1870000000 2012,432000000 2007,463000000 2007,26000000 2008,230000000 2004,592000000 2007,411000000 2008,731000000 2008,758000000 2007,789000000 2009,904000000 2010,1000000000 2012,2990000000 2013,1000000000 2011,1160000000 2010,1170000000 2010,1200000000 2012,1200000000 2012,1303000000 2010,1400000000 2012,1400000000 2014,1400000000 2006,1700000000 2015,1750000000 2013,1860000000 2015,1900000000 2008,1900000000 2010,2000000000 2014,2000000000 2015,2000000000 2015,3000000000 2012,2100000000 2011,2270000000 2010,2300000000 2014,2600000000 2011,2600000000 2012,2750000000 2014,3000000000 2016,3000000000 2017,5300000000 2017,5300000000 2018,8500000000 2012,3100000000 2016,3200000000 2016,3300000000 2015,3990000000 2013,4200000000 2017,4300000000 2014,4310000000 2017,4800000000 2017,4800000000 2017,4800000000 2012,5000000000 2013,5000000000 2014,5560000000 2017,6100000000 2018,6900000000 2016,4000000000 2018,6900000000 2017,5500000000 2018,5500000000 2017,7000000000 2015,7100000000 2017,8000000000 2016,7200000000 2017,8000000000 2016,8000000000 2017,9700000000 2017,250000000 2015,10000000000 2017,5450000000 2018,10000000000 2017,4300000000 2017,18000000000 2017,19200000000 2018,8876000000 2018,23600000000 2018,9000000000 ================================================ FILE: tf2.0/plot_rl_rewards.py ================================================ import matplotlib.pyplot as plt import numpy as np import argparse parser = argparse.ArgumentParser() parser.add_argument('-m', '--mode', type=str, required=True, help='either "train" or "test"') args = parser.parse_args() a = np.load(f'rl_trader_rewards/{args.mode}.npy') print(f"average reward: {a.mean():.2f}, min: {a.min():.2f}, max: {a.max():.2f}") if args.mode == 'train': # show the training progress plt.plot(a) else: # test - show a histogram of rewards plt.hist(a, bins=20) plt.title(args.mode) plt.show() ================================================ FILE: tf2.0/rl_trader.py ================================================ import numpy as np import pandas as pd from tensorflow.keras.models import Model from tensorflow.keras.layers import Dense, Input from tensorflow.keras.optimizers import Adam from datetime import datetime import itertools import argparse import re import os import pickle from sklearn.preprocessing import StandardScaler import tensorflow as tf # if tf.__version__.startswith('2'): # tf.compat.v1.disable_eager_execution() # Let's use AAPL (Apple), MSI (Motorola), SBUX (Starbucks) def get_data(): # returns a T x 3 list of stock prices # each row is a different stock # 0 = AAPL # 1 = MSI # 2 = SBUX df = pd.read_csv('aapl_msi_sbux.csv') return df.values ### The experience replay memory ### class ReplayBuffer: def __init__(self, obs_dim, act_dim, size): self.obs1_buf = np.zeros([size, obs_dim], dtype=np.float32) self.obs2_buf = np.zeros([size, obs_dim], dtype=np.float32) self.acts_buf = np.zeros(size, dtype=np.uint8) self.rews_buf = np.zeros(size, dtype=np.float32) self.done_buf = np.zeros(size, dtype=np.uint8) self.ptr, self.size, self.max_size = 0, 0, size def store(self, obs, act, rew, next_obs, done): self.obs1_buf[self.ptr] = obs self.obs2_buf[self.ptr] = next_obs self.acts_buf[self.ptr] = act self.rews_buf[self.ptr] = rew self.done_buf[self.ptr] = done self.ptr = (self.ptr+1) % self.max_size self.size = min(self.size+1, self.max_size) def sample_batch(self, batch_size=32): idxs = np.random.randint(0, self.size, size=batch_size) return dict(s=self.obs1_buf[idxs], s2=self.obs2_buf[idxs], a=self.acts_buf[idxs], r=self.rews_buf[idxs], d=self.done_buf[idxs]) def get_scaler(env): # return scikit-learn scaler object to scale the states # Note: you could also populate the replay buffer here states = [] for _ in range(env.n_step): action = np.random.choice(env.action_space) state, reward, done, info = env.step(action) states.append(state) if done: break scaler = StandardScaler() scaler.fit(states) return scaler def maybe_make_dir(directory): if not os.path.exists(directory): os.makedirs(directory) def mlp(input_dim, n_action, n_hidden_layers=1, hidden_dim=32): """ A multi-layer perceptron """ # input layer i = Input(shape=(input_dim,)) x = i # hidden layers for _ in range(n_hidden_layers): x = Dense(hidden_dim, activation='relu')(x) # final layer x = Dense(n_action)(x) # make the model model = Model(i, x) model.compile(loss='mse', optimizer='adam') print((model.summary())) return model class MultiStockEnv: """ A 3-stock trading environment. State: vector of size 7 (n_stock * 2 + 1) - # shares of stock 1 owned - # shares of stock 2 owned - # shares of stock 3 owned - price of stock 1 (using daily close price) - price of stock 2 - price of stock 3 - cash owned (can be used to purchase more stocks) Action: categorical variable with 27 (3^3) possibilities - for each stock, you can: - 0 = sell - 1 = hold - 2 = buy """ def __init__(self, data, initial_investment=20000): # data self.stock_price_history = data self.n_step, self.n_stock = self.stock_price_history.shape # instance attributes self.initial_investment = initial_investment self.cur_step = None self.stock_owned = None self.stock_price = None self.cash_in_hand = None self.action_space = np.arange(3**self.n_stock) # action permutations # returns a nested list with elements like: # [0,0,0] # [0,0,1] # [0,0,2] # [0,1,0] # [0,1,1] # etc. # 0 = sell # 1 = hold # 2 = buy self.action_list = list(map(list, itertools.product([0, 1, 2], repeat=self.n_stock))) # calculate size of state self.state_dim = self.n_stock * 2 + 1 self.reset() def reset(self): self.cur_step = 0 self.stock_owned = np.zeros(self.n_stock) self.stock_price = self.stock_price_history[self.cur_step] self.cash_in_hand = self.initial_investment return self._get_obs() def step(self, action): assert action in self.action_space # get current value before performing the action prev_val = self._get_val() # perform the trade self._trade(action) # update price, i.e. go to the next day self.cur_step += 1 self.stock_price = self.stock_price_history[self.cur_step] # get the new value after taking the action cur_val = self._get_val() # reward is the increase in porfolio value reward = cur_val - prev_val # done if we have run out of data done = self.cur_step == self.n_step - 1 # store the current value of the portfolio here info = {'cur_val': cur_val} # conform to the Gym API return self._get_obs(), reward, done, info def _get_obs(self): obs = np.empty(self.state_dim) obs[:self.n_stock] = self.stock_owned obs[self.n_stock:2*self.n_stock] = self.stock_price obs[-1] = self.cash_in_hand return obs def _get_val(self): return self.stock_owned.dot(self.stock_price) + self.cash_in_hand def _trade(self, action): # index the action we want to perform # 0 = sell # 1 = hold # 2 = buy # e.g. [2,1,0] means: # buy first stock # hold second stock # sell third stock action_vec = self.action_list[action] # determine which stocks to buy or sell sell_index = [] # stores index of stocks we want to sell buy_index = [] # stores index of stocks we want to buy for i, a in enumerate(action_vec): if a == 0: sell_index.append(i) elif a == 2: buy_index.append(i) # sell any stocks we want to sell # then buy any stocks we want to buy if sell_index: # NOTE: to simplify the problem, when we sell, we will sell ALL shares of that stock for i in sell_index: self.cash_in_hand += self.stock_price[i] * self.stock_owned[i] self.stock_owned[i] = 0 if buy_index: # NOTE: when buying, we will loop through each stock we want to buy, # and buy one share at a time until we run out of cash can_buy = True while can_buy: for i in buy_index: if self.cash_in_hand > self.stock_price[i]: self.stock_owned[i] += 1 # buy one share self.cash_in_hand -= self.stock_price[i] else: can_buy = False class DQNAgent(object): def __init__(self, state_size, action_size): self.state_size = state_size self.action_size = action_size self.memory = ReplayBuffer(state_size, action_size, size=500) self.gamma = 0.95 # discount rate self.epsilon = 1.0 # exploration rate self.epsilon_min = 0.01 self.epsilon_decay = 0.995 self.model = mlp(state_size, action_size) def update_replay_memory(self, state, action, reward, next_state, done): self.memory.store(state, action, reward, next_state, done) def act(self, state): if np.random.rand() <= self.epsilon: return np.random.choice(self.action_size) act_values = self.model.predict(state, verbose=0) return np.argmax(act_values[0]) # returns action @tf.function def replay(self, batch_size=32): # first check if replay buffer contains enough data if self.memory.size < batch_size: return # sample a batch of data from the replay memory minibatch = self.memory.sample_batch(batch_size) states = minibatch['s'] actions = minibatch['a'] rewards = minibatch['r'] next_states = minibatch['s2'] done = minibatch['d'] # Calculate the tentative target: Q(s',a) target = rewards + (1 - done) * self.gamma * np.amax(self.model.predict(next_states, verbose=0), axis=1) # With the Keras API, the target (usually) must have the same # shape as the predictions. # However, we only need to update the network for the actions # which were actually taken. # We can accomplish this by setting the target to be equal to # the prediction for all values. # Then, only change the targets for the actions taken. # Q(s,a) target_full = self.model.predict(states, verbose=0) target_full[np.arange(batch_size), actions] = target # Run one training step self.model.train_on_batch(states, target_full) if self.epsilon > self.epsilon_min: self.epsilon *= self.epsilon_decay def load(self, name): self.model.load_weights(name) def save(self, name): self.model.save_weights(name) def play_one_episode(agent, env, is_train): # note: after transforming states are already 1xD state = env.reset() state = scaler.transform([state]) done = False while not done: action = agent.act(state) next_state, reward, done, info = env.step(action) next_state = scaler.transform([next_state]) if is_train == 'train': agent.update_replay_memory(state, action, reward, next_state, done) agent.replay(batch_size) state = next_state return info['cur_val'] if __name__ == '__main__': # config models_folder = 'rl_trader_models' rewards_folder = 'rl_trader_rewards' model_file = 'dqn.weights.h5' num_episodes = 2000 batch_size = 32 initial_investment = 20000 parser = argparse.ArgumentParser() parser.add_argument('-m', '--mode', type=str, required=True, help='either "train" or "test"') args = parser.parse_args() maybe_make_dir(models_folder) maybe_make_dir(rewards_folder) data = get_data() n_timesteps, n_stocks = data.shape n_train = n_timesteps // 2 train_data = data[:n_train] test_data = data[n_train:] env = MultiStockEnv(train_data, initial_investment) state_size = env.state_dim action_size = len(env.action_space) agent = DQNAgent(state_size, action_size) scaler = get_scaler(env) # store the final value of the portfolio (end of episode) portfolio_value = [] if args.mode == 'test': # then load the previous scaler with open(f'{models_folder}/scaler.pkl', 'rb') as f: scaler = pickle.load(f) # remake the env with test data env = MultiStockEnv(test_data, initial_investment) # make sure epsilon is not 1! # no need to run multiple episodes if epsilon = 0, it's deterministic agent.epsilon = 0.01 # load trained weights agent.load(f'{models_folder}/{model_file}') # play the game num_episodes times for e in range(num_episodes): t0 = datetime.now() val = play_one_episode(agent, env, args.mode) dt = datetime.now() - t0 print(f"episode: {e + 1}/{num_episodes}, episode end value: {val:.2f}, duration: {dt}") portfolio_value.append(val) # append episode end portfolio value # save the weights when we are done if args.mode == 'train': # save the DQN agent.save(f'{models_folder}/{model_file}') # save the scaler with open(f'{models_folder}/scaler.pkl', 'wb') as f: pickle.dump(scaler, f) # save portfolio value for each episode np.save(f'{rewards_folder}/{args.mode}.npy', portfolio_value) ================================================ FILE: tf2.0/sbux.csv ================================================ date,open,high,low,close,volume,Name 2013-02-08,27.92,28.325,27.92,28.185,7146296,SBUX 2013-02-11,28.26,28.26,27.93,28.07,5457354,SBUX 2013-02-12,28.0,28.275,27.975,28.13,8665592,SBUX 2013-02-13,28.23,28.23,27.75,27.915,7022056,SBUX 2013-02-14,27.765,27.905,27.675,27.775,8899188,SBUX 2013-02-15,27.805,27.85,27.085,27.17,18195730,SBUX 2013-02-19,27.18,27.305,27.01,27.225,11760912,SBUX 2013-02-20,27.3,27.42,26.59,26.655,12472506,SBUX 2013-02-21,26.535,26.82,26.26,26.675,13896450,SBUX 2013-02-22,26.85,27.105,26.64,27.085,11487316,SBUX 2013-02-25,27.2,27.355,26.6,26.605,12333954,SBUX 2013-02-26,26.715,26.93,26.425,26.64,10607724,SBUX 2013-02-27,26.625,27.4875,26.54,27.285,12056302,SBUX 2013-02-28,27.325,27.585,27.225,27.425,10394356,SBUX 2013-03-01,27.315,27.465,27.0,27.435,8451764,SBUX 2013-03-04,27.385,27.86,27.33,27.85,10193852,SBUX 2013-03-05,28.0,28.4,28.0,28.255,12931844,SBUX 2013-03-06,28.38,28.745,28.325,28.55,14925144,SBUX 2013-03-07,28.55,29.25,28.545,29.125,18237018,SBUX 2013-03-08,29.335,29.485,29.0725,29.335,14215718,SBUX 2013-03-11,29.2,29.465,29.165,29.305,9897766,SBUX 2013-03-12,29.225,29.275,28.99,29.14,11670100,SBUX 2013-03-13,29.165,29.4,29.14,29.2925,7435340,SBUX 2013-03-14,29.26,29.375,28.705,28.84,14723066,SBUX 2013-03-15,28.68,28.93,28.63,28.83,15102742,SBUX 2013-03-18,28.53,28.71,28.375,28.465,10521204,SBUX 2013-03-19,28.255,28.49,27.98,28.415,13337034,SBUX 2013-03-20,28.61,28.805,28.5,28.715,9620874,SBUX 2013-03-21,28.65,28.71,28.375,28.525,8307328,SBUX 2013-03-22,28.65,28.875,28.58,28.69,8720670,SBUX 2013-03-25,28.765,28.915,28.075,28.345,10580234,SBUX 2013-03-26,28.495,28.58,28.355,28.525,6128410,SBUX 2013-03-27,28.43,28.475,28.105,28.455,7456828,SBUX 2013-03-28,28.465,28.63,28.43,28.475,7620390,SBUX 2013-04-01,28.565,28.67,28.325,28.435,7009632,SBUX 2013-04-02,28.595,29.165,28.575,29.13,13495550,SBUX 2013-04-03,29.2,29.45,28.69,28.85,11272606,SBUX 2013-04-04,28.805,29.155,28.805,29.055,7568480,SBUX 2013-04-05,28.605,28.9382,28.3592,28.9,8993596,SBUX 2013-04-08,28.915,29.06,28.73,29.06,7343972,SBUX 2013-04-09,28.98,29.0,28.59,28.705,8361158,SBUX 2013-04-10,28.82,29.155,28.8045,28.9,8577388,SBUX 2013-04-11,28.975,29.495,28.9,29.2875,10416656,SBUX 2013-04-12,29.355,29.855,29.3,29.545,10418310,SBUX 2013-04-15,29.33,29.72,28.8,28.855,10700276,SBUX 2013-04-16,28.97,29.47,28.86,29.28,8849328,SBUX 2013-04-17,29.015,29.275,28.825,29.085,7207368,SBUX 2013-04-18,29.18,29.24,28.75,28.86,8776706,SBUX 2013-04-19,28.79,29.29,28.77,29.2025,8605504,SBUX 2013-04-22,29.21,29.435,28.99,29.32,5547302,SBUX 2013-04-23,29.42,29.95,29.3899,29.695,11323422,SBUX 2013-04-24,29.845,29.985,29.565,29.915,10410890,SBUX 2013-04-25,30.0,30.32,29.955,30.25,16550532,SBUX 2013-04-26,29.65,30.195,29.6,30.0,14970972,SBUX 2013-04-29,30.175,30.46,30.065,30.29,7400546,SBUX 2013-04-30,30.315,30.455,30.155,30.42,8041092,SBUX 2013-05-01,30.275,30.34,29.975,30.07,6294596,SBUX 2013-05-02,30.22,30.34,29.8,30.19,6237460,SBUX 2013-05-03,30.425,30.985,30.35,30.935,9835550,SBUX 2013-05-06,31.0,31.24,30.96,31.24,6997134,SBUX 2013-05-07,31.265,31.265,30.855,31.095,7495628,SBUX 2013-05-08,31.17,31.22,30.865,31.205,5507696,SBUX 2013-05-09,31.33,31.45,31.02,31.18,8276152,SBUX 2013-05-10,31.285,31.595,31.195,31.5485,7480820,SBUX 2013-05-13,31.6,31.615,31.305,31.41,5906892,SBUX 2013-05-14,31.46,31.785,31.39,31.76,7510580,SBUX 2013-05-15,31.6592,32.1,31.61,32.035,9654546,SBUX 2013-05-16,32.0,32.0325,31.725,31.775,6661036,SBUX 2013-05-17,31.885,32.07,31.75,32.065,6934282,SBUX 2013-05-20,32.015,32.305,31.89,31.915,7211790,SBUX 2013-05-21,32.02,32.23,31.94,32.125,6588946,SBUX 2013-05-22,32.075,32.465,31.98,32.075,11012050,SBUX 2013-05-23,31.845,31.91,31.515,31.76,8258348,SBUX 2013-05-24,31.54,31.7,31.305,31.68,6507242,SBUX 2013-05-28,32.105,32.35,32.02,32.13,7438516,SBUX 2013-05-29,31.895,32.05,31.5575,31.815,7560250,SBUX 2013-05-30,31.935,32.0221,31.7275,31.735,8798456,SBUX 2013-05-31,31.605,32.1725,31.395,31.57,10205308,SBUX 2013-06-03,31.63,31.77,31.31,31.73,11417578,SBUX 2013-06-04,31.305,32.07,31.305,31.665,8622564,SBUX 2013-06-05,31.52,31.65,31.155,31.17,8408538,SBUX 2013-06-06,31.175,31.5275,31.16,31.51,8625308,SBUX 2013-06-07,31.705,32.545,31.705,32.52,13752898,SBUX 2013-06-10,32.83,33.155,32.74,33.055,12412340,SBUX 2013-06-11,32.735,33.0525,32.655,32.71,7897496,SBUX 2013-06-12,32.91,33.0,32.13,32.225,10069920,SBUX 2013-06-13,32.27,33.095,32.035,32.985,11909482,SBUX 2013-06-14,32.975,33.335,32.725,32.8,9854434,SBUX 2013-06-17,33.095,33.28,32.8575,33.015,8115800,SBUX 2013-06-18,33.0,33.565,32.975,33.5475,7451352,SBUX 2013-06-19,33.51,33.74,33.205,33.205,10644698,SBUX 2013-06-20,32.91,33.16,32.52,32.61,11606540,SBUX 2013-06-21,32.855,32.96,32.115,32.345,14709502,SBUX 2013-06-24,32.0,32.289,31.59,32.005,9913028,SBUX 2013-06-25,32.265,32.68,32.22,32.37,9856852,SBUX 2013-06-26,32.685,33.3546,32.4455,32.9,9545442,SBUX 2013-06-27,33.135,33.25,32.825,32.845,6292594,SBUX 2013-06-28,32.755,33.125,32.7,32.755,10836506,SBUX 2013-07-01,33.045,33.245,32.91,33.12,6692040,SBUX 2013-07-02,33.12,33.6,33.04,33.395,6765528,SBUX 2013-07-03,33.215,33.84,33.2,33.65,5635188,SBUX 2013-07-05,33.935,34.0,33.45,33.86,5189244,SBUX 2013-07-08,33.97,34.41,33.94,34.145,8029920,SBUX 2013-07-09,34.45,34.5,33.995,34.065,7459914,SBUX 2013-07-10,33.935,34.06,33.725,34.05,8090792,SBUX 2013-07-11,34.34,34.7575,34.175,34.67,8385798,SBUX 2013-07-12,34.62,34.86,34.39,34.86,9706492,SBUX 2013-07-15,34.845,34.95,34.765,34.83,6180564,SBUX 2013-07-16,34.82,34.86,34.54,34.76,6068146,SBUX 2013-07-17,34.87,34.9076,33.945,34.1,12147310,SBUX 2013-07-18,34.225,34.505,34.02,34.24,8537754,SBUX 2013-07-19,34.285,34.555,34.2,34.395,7196954,SBUX 2013-07-22,34.54,34.605,34.275,34.51,6559682,SBUX 2013-07-23,34.62,34.66,33.725,33.83,8465332,SBUX 2013-07-24,34.06,34.215,33.15,33.305,14033776,SBUX 2013-07-25,33.47,34.15,33.365,34.085,15971984,SBUX 2013-07-26,36.3,36.76,35.925,36.68,32293248,SBUX 2013-07-29,36.375,36.54,36.05,36.225,12801986,SBUX 2013-07-30,36.45,36.49,35.855,35.965,9808846,SBUX 2013-07-31,36.07,36.25,35.61,35.6445,11248506,SBUX 2013-08-01,36.135,36.865,36.04,36.74,12849582,SBUX 2013-08-02,36.75,37.135,36.58,37.115,9394576,SBUX 2013-08-05,37.11,37.135,36.855,36.985,7606188,SBUX 2013-08-06,36.83,36.925,36.39,36.4,7956060,SBUX 2013-08-07,36.18,36.575,36.0825,36.095,7068922,SBUX 2013-08-08,36.385,36.7,36.2,36.47,5923772,SBUX 2013-08-09,36.295,36.6154,36.26,36.4,5366324,SBUX 2013-08-12,36.14,36.565,36.125,36.465,5473182,SBUX 2013-08-13,36.545,36.545,35.9674,36.32,5377794,SBUX 2013-08-14,36.29,36.29,35.895,35.925,4932052,SBUX 2013-08-15,35.655,35.675,35.155,35.37,7198878,SBUX 2013-08-16,35.49,35.695,35.275,35.355,6929830,SBUX 2013-08-19,35.29,35.6475,35.09,35.145,6349108,SBUX 2013-08-20,35.18,35.5125,35.0558,35.33,6046820,SBUX 2013-08-21,35.21,35.7,35.14,35.3565,6917088,SBUX 2013-08-22,35.54,36.13,35.505,35.95,5399676,SBUX 2013-08-23,36.0325,36.095,35.79,35.985,5869740,SBUX 2013-08-26,36.035,36.105,35.8,35.94,4928868,SBUX 2013-08-27,35.45,35.685,35.055,35.08,8021076,SBUX 2013-08-28,35.045,35.66,34.93,35.48,6249812,SBUX 2013-08-29,35.365,35.92,35.25,35.59,5509920,SBUX 2013-08-30,35.69,35.7,35.165,35.26,5666988,SBUX 2013-09-03,35.85,36.07,35.595,35.8,7249600,SBUX 2013-09-04,35.71,36.135,35.5455,36.07,6502234,SBUX 2013-09-05,36.125,36.38,36.005,36.025,4931220,SBUX 2013-09-06,36.185,36.325,35.465,35.785,6356670,SBUX 2013-09-09,35.84,36.245,35.835,36.22,4936828,SBUX 2013-09-10,36.49,37.16,36.465,37.1075,11779224,SBUX 2013-09-11,37.165,37.7499,37.165,37.695,9982644,SBUX 2013-09-12,37.75,37.955,37.5603,37.835,7628560,SBUX 2013-09-13,37.795,37.85,37.325,37.785,5767336,SBUX 2013-09-16,38.285,38.3,37.43,37.62,8787132,SBUX 2013-09-17,37.63,38.12,37.585,38.02,6661016,SBUX 2013-09-18,37.94,38.81,37.775,38.665,9488762,SBUX 2013-09-19,38.76,38.9225,38.15,38.175,8042062,SBUX 2013-09-20,38.13,38.5,38.035,38.06,9620500,SBUX 2013-09-23,38.055,38.19,37.535,37.68,6783882,SBUX 2013-09-24,37.765,38.655,37.739000000000004,38.275,7633976,SBUX 2013-09-25,38.42,38.505,38.0352,38.17,7261490,SBUX 2013-09-26,38.32,38.6395,38.16,38.59,4988814,SBUX 2013-09-27,38.455,38.74,38.2,38.665,6200278,SBUX 2013-09-30,38.25,38.5425,38.025,38.485,8828424,SBUX 2013-10-01,38.49,38.67,38.28,38.58,5205160,SBUX 2013-10-02,38.295,38.615,38.105,38.595,6088422,SBUX 2013-10-03,38.48,38.73,38.16,38.435,8164122,SBUX 2013-10-04,38.4,38.73,38.255,38.7,5226696,SBUX 2013-10-07,38.3,38.695,38.205,38.4305,5106784,SBUX 2013-10-08,38.555,39.015,37.72,37.765,12663250,SBUX 2013-10-09,37.695,37.9,37.2263,37.63,9482078,SBUX 2013-10-10,38.145,38.655,38.065,38.56,6638096,SBUX 2013-10-11,38.61,38.92,38.44,38.91,5530376,SBUX 2013-10-14,38.7675,39.16,38.625,39.05,5986662,SBUX 2013-10-15,38.915,38.9475,38.3,38.355,8146874,SBUX 2013-10-16,38.6,39.1125,38.445,39.02,10103938,SBUX 2013-10-17,38.835,39.425,38.725,39.3675,6562580,SBUX 2013-10-18,39.635,39.835,39.485,39.655,9049968,SBUX 2013-10-21,39.555,39.955,39.335,39.73,6770290,SBUX 2013-10-22,39.95,40.54,39.8,40.45,8419570,SBUX 2013-10-23,40.225,40.425,39.945,40.025,7908094,SBUX 2013-10-24,39.68,39.72,39.255,39.525,13508366,SBUX 2013-10-25,39.735,40.0,39.635,39.98,7251840,SBUX 2013-10-28,40.1,40.215,39.2625,39.355,11242732,SBUX 2013-10-29,39.605,39.81,39.525,39.81,7898436,SBUX 2013-10-30,40.315,40.425,39.88,40.415,17518716,SBUX 2013-10-31,39.345,40.81,39.2859,40.525,20491552,SBUX 2013-11-01,40.77,40.77,39.835,40.185,12005206,SBUX 2013-11-04,40.375,40.39,40.105,40.185,8285184,SBUX 2013-11-05,40.18,41.17,40.075,40.995,10092844,SBUX 2013-11-06,41.195,41.25,40.485,40.565,8562294,SBUX 2013-11-07,40.65,40.675,39.5,39.535,13283288,SBUX 2013-11-08,39.755,40.625,39.7,40.6,11487736,SBUX 2013-11-11,40.6,40.71,40.49,40.495,5146208,SBUX 2013-11-12,40.38,40.5249,40.06,40.3075,6613072,SBUX 2013-11-13,39.62,40.75,39.595,40.7305,12519058,SBUX 2013-11-14,40.765,40.77,40.3925,40.57,7647688,SBUX 2013-11-15,40.625,40.725,40.39,40.595,6445400,SBUX 2013-11-18,40.51,40.67,40.105,40.27,8322628,SBUX 2013-11-19,40.005,40.46,39.93,39.96,8725944,SBUX 2013-11-20,40.065,40.125,39.66,39.845,8734150,SBUX 2013-11-21,39.9,40.825,39.875,40.765,13139094,SBUX 2013-11-22,40.85,40.85,40.55,40.675,7926170,SBUX 2013-11-25,40.685,40.74,40.255,40.355,9001126,SBUX 2013-11-26,40.43,40.825,40.2025,40.755,8767864,SBUX 2013-11-27,40.695,40.955,40.6,40.81,4752000,SBUX 2013-11-29,40.925,41.185,40.685,40.73,4387144,SBUX 2013-12-02,40.745,40.8445,40.455,40.535,5773800,SBUX 2013-12-03,40.37,40.5775,40.145,40.275,7893264,SBUX 2013-12-04,40.195,40.36,39.72,39.75,10206454,SBUX 2013-12-05,39.78,40.125,39.665,39.86,6569194,SBUX 2013-12-06,40.2975,40.375,39.855,39.97,6736632,SBUX 2013-12-09,40.13,40.23,39.8025,39.865,7936162,SBUX 2013-12-10,39.495,39.535,38.34,38.69,26329504,SBUX 2013-12-11,38.8,38.9975,38.145,38.2,15751996,SBUX 2013-12-12,38.14,38.545,38.0,38.24,9651038,SBUX 2013-12-13,38.415,38.465,38.045,38.175,8052582,SBUX 2013-12-16,38.015,38.49,37.955,38.23,9348824,SBUX 2013-12-17,38.29,38.29,37.955,38.045,7008900,SBUX 2013-12-18,38.065,38.845,38.05,38.84,10268256,SBUX 2013-12-19,39.12,39.25,38.51,38.575,11406282,SBUX 2013-12-20,38.76,38.99,38.622,38.83,12707400,SBUX 2013-12-23,38.985,39.17,38.675,39.16,7624552,SBUX 2013-12-24,39.05,39.375,38.975,39.285,3896612,SBUX 2013-12-26,39.365,39.5125,39.2195,39.44,4391338,SBUX 2013-12-27,39.645,39.65,39.23,39.285,4506128,SBUX 2013-12-30,39.395,39.415,38.93,39.275,4734486,SBUX 2013-12-31,39.215,39.39,39.005,39.195,6016240,SBUX 2014-01-02,39.035,39.135,38.5025,38.585,8528022,SBUX 2014-01-03,38.74,38.885,38.47,38.475,6545626,SBUX 2014-01-06,38.45,38.675,38.005,38.085,10604900,SBUX 2014-01-07,38.325,38.705,38.235,38.605,8180398,SBUX 2014-01-08,38.64,39.0735,38.595,39.015,10190576,SBUX 2014-01-09,39.035,39.05,38.4,38.8,8370276,SBUX 2014-01-10,38.78,38.995,38.475,38.835,6475950,SBUX 2014-01-13,38.69,38.695,37.38,37.56,14730286,SBUX 2014-01-14,37.56,38.1775,37.375,37.73,18668208,SBUX 2014-01-15,37.77,38.165,37.705,38.095,8721564,SBUX 2014-01-16,37.91,38.0975,37.565,37.645,9110924,SBUX 2014-01-17,37.5,37.73,37.335,37.45,13007820,SBUX 2014-01-21,37.525,37.535,36.63,36.825,18777272,SBUX 2014-01-22,36.975,37.1,36.77,36.8,13989730,SBUX 2014-01-23,36.74,36.865,35.84,36.695,30451212,SBUX 2014-01-24,37.365,38.08,37.055,37.49,33218428,SBUX 2014-01-27,37.615,37.615,37.01,37.105,18212030,SBUX 2014-01-28,37.285,37.3975,36.835,36.945,11103896,SBUX 2014-01-29,36.75,36.83,35.73,35.78,16002076,SBUX 2014-01-30,36.14,36.215,35.655,35.955,15181598,SBUX 2014-01-31,35.445,35.9705,35.435,35.56,12287056,SBUX 2014-02-03,35.5,35.755,34.335,34.485,20353852,SBUX 2014-02-04,35.0,35.6,34.685,35.325,21066236,SBUX 2014-02-05,35.045,35.37,34.805,35.245,10968328,SBUX 2014-02-06,35.33,36.4,35.28,36.18,13819714,SBUX 2014-02-07,36.805,37.245,36.345,37.0175,14752770,SBUX 2014-02-10,37.155,37.59,37.155,37.4,12948390,SBUX 2014-02-11,37.435,37.595,36.895,37.25,16165852,SBUX 2014-02-12,37.245,37.53,36.85,36.955,9973052,SBUX 2014-02-13,36.78,37.345,36.695,37.345,8477256,SBUX 2014-02-14,37.175,37.545,37.005,37.515,8266438,SBUX 2014-02-18,37.495,37.5,36.9675,36.985,10967746,SBUX 2014-02-19,36.92,37.14,36.615,36.66,9802100,SBUX 2014-02-20,36.7,36.855,36.24,36.775,8553032,SBUX 2014-02-21,36.89,36.93,36.26,36.28,11298258,SBUX 2014-02-24,36.33,36.44,36.01,36.28,11953270,SBUX 2014-02-25,36.25,36.33,35.275,35.275,18641246,SBUX 2014-02-26,35.4,36.11,34.975,35.89,19156536,SBUX 2014-02-27,35.81,36.12,35.715,36.095,11298448,SBUX 2014-02-28,35.77,35.9663,35.25,35.48,22465506,SBUX 2014-03-03,35.005,35.365,35.0,35.235,12248352,SBUX 2014-03-04,35.715,35.98,35.525,35.83,12255104,SBUX 2014-03-05,35.995,36.045,35.44,35.65,9783410,SBUX 2014-03-06,35.915,36.6675,35.885,36.345,13781048,SBUX 2014-03-07,36.495,36.55,36.105,36.535,8409372,SBUX 2014-03-10,36.625,36.82,36.395,36.78,8648776,SBUX 2014-03-11,36.995,37.704,36.925,37.515,18368750,SBUX 2014-03-12,37.275,37.83,37.25,37.815,10450862,SBUX 2014-03-13,37.92,38.21,37.015,37.215,11380782,SBUX 2014-03-14,37.045,37.445,37.0118,37.135,8962602,SBUX 2014-03-17,37.405,37.495,36.91,37.09,11019894,SBUX 2014-03-18,37.175,37.42,37.025,37.3,5997520,SBUX 2014-03-19,37.5,38.665,37.41,37.955,24983140,SBUX 2014-03-20,38.145,38.565,37.8,38.4775,13851476,SBUX 2014-03-21,39.105,39.32,38.31,38.355,18036904,SBUX 2014-03-24,38.45,38.555,37.605,37.885,10018724,SBUX 2014-03-25,38.22,38.255,37.145,37.305,10568158,SBUX 2014-03-26,37.465,37.495,36.76,36.77,8371118,SBUX 2014-03-27,36.535,36.98,36.345,36.7,12675658,SBUX 2014-03-28,36.645,37.03,36.525,36.85,6582750,SBUX 2014-03-31,36.95,37.2,36.585,36.69,7721754,SBUX 2014-04-01,36.82,37.49,36.705,37.005,8741780,SBUX 2014-04-02,37.175,37.185,36.62,36.835,8275518,SBUX 2014-04-03,36.93,37.17,36.41,36.545,7165454,SBUX 2014-04-04,36.775,36.945,35.66,35.775,11708546,SBUX 2014-04-07,35.6,35.69,35.025,35.215,11089724,SBUX 2014-04-08,35.32,35.8475,35.25,35.74,10679090,SBUX 2014-04-09,35.815,36.34,35.6,36.24,9055586,SBUX 2014-04-10,36.37,36.37,35.085,35.11,13375470,SBUX 2014-04-11,34.895,35.065,34.34,34.365,16368844,SBUX 2014-04-14,34.815,35.02,34.35,34.655,12176480,SBUX 2014-04-15,34.98,35.05,33.965,34.445,15461760,SBUX 2014-04-16,34.825,35.44,34.58,35.395,11278644,SBUX 2014-04-17,35.285,35.695,35.07,35.075,9245966,SBUX 2014-04-21,35.155,35.3,34.925,35.24,6098442,SBUX 2014-04-22,35.265,35.6375,35.165,35.5745,8862690,SBUX 2014-04-23,35.73,35.735,35.11,35.195,8881548,SBUX 2014-04-24,35.76,36.02,35.055,35.545,15577016,SBUX 2014-04-25,36.0,36.125,35.47,35.725,18122130,SBUX 2014-04-28,35.945,36.01,34.9,35.465,10733556,SBUX 2014-04-29,35.59,35.725,35.1325,35.32,9830164,SBUX 2014-04-30,35.31,35.38,35.06,35.31,7283078,SBUX 2014-05-01,35.375,35.6,35.16,35.56,7919194,SBUX 2014-05-02,35.625,35.7625,35.285,35.3,8306490,SBUX 2014-05-05,35.25,35.5275,35.09,35.46,5486598,SBUX 2014-05-06,35.365,35.415,34.665,34.79,10926786,SBUX 2014-05-07,34.89,34.9975,34.57,34.87,10961996,SBUX 2014-05-08,34.8,35.2475,34.67,34.79,7531344,SBUX 2014-05-09,34.85,35.155,34.7612,35.145,6623136,SBUX 2014-05-12,35.32,35.62,35.2,35.575,7227204,SBUX 2014-05-13,35.485,35.67,35.45,35.58,5802916,SBUX 2014-05-14,35.59,35.6,35.015,35.085,8586022,SBUX 2014-05-15,35.13,35.165,34.64,34.925,9124686,SBUX 2014-05-16,35.0,35.52,34.905,35.47,9294826,SBUX 2014-05-19,35.28,35.56,35.14,35.51,6757810,SBUX 2014-05-20,35.38,35.448,34.9201,35.115,8699878,SBUX 2014-05-21,35.355,35.375,35.035,35.2,6089286,SBUX 2014-05-22,35.175,35.885,35.15,35.7,7359636,SBUX 2014-05-23,36.145,36.255,35.915,35.99,7166310,SBUX 2014-05-27,36.32,36.89,36.27,36.83,10100398,SBUX 2014-05-28,36.65,36.785,36.4575,36.635,8212030,SBUX 2014-05-29,36.76,36.78,36.325,36.555,6448878,SBUX 2014-05-30,36.58,36.75,36.265,36.62,6879534,SBUX 2014-06-02,36.61,37.0275,36.58,36.925,5926156,SBUX 2014-06-03,36.86,37.175,36.79,37.09,6768354,SBUX 2014-06-04,37.06,37.35,36.82,37.335,6495704,SBUX 2014-06-05,37.18,37.57,37.1,37.36,5188766,SBUX 2014-06-06,37.53,37.77,37.4,37.665,6204706,SBUX 2014-06-09,37.69,37.7,37.325,37.59,5701018,SBUX 2014-06-10,37.625,37.72,37.16,37.3,6640912,SBUX 2014-06-11,37.07,37.435,36.925,37.4,7510866,SBUX 2014-06-12,37.345,37.35,36.865,36.98,7193748,SBUX 2014-06-13,36.935,37.4475,36.765,37.345,7728298,SBUX 2014-06-16,37.24,37.58,37.23,37.545,6759676,SBUX 2014-06-17,37.515,37.825,37.495,37.655,5778600,SBUX 2014-06-18,37.6,37.8424,37.3,37.78,5786570,SBUX 2014-06-19,38.275,38.75,38.23,38.615,12555078,SBUX 2014-06-20,38.815,38.815,38.205,38.3,12446594,SBUX 2014-06-23,38.345,38.4,38.0955,38.365,4780230,SBUX 2014-06-24,38.45,38.875,38.27,38.715,10912302,SBUX 2014-06-25,38.52,39.09,38.48,39.06,7813834,SBUX 2014-06-26,39.005,39.165,38.735,39.03,6983266,SBUX 2014-06-27,38.98,39.175,38.895,38.97,8669268,SBUX 2014-06-30,39.05,39.095,38.54,38.69,9610248,SBUX 2014-07-01,38.945,39.1,38.8,39.04,8073888,SBUX 2014-07-02,39.19,39.2045,38.955,39.095,4794618,SBUX 2014-07-03,39.195,39.7,39.07,39.53,6662616,SBUX 2014-07-07,39.39,39.69,39.305,39.345,7443924,SBUX 2014-07-08,39.32,39.45,39.125,39.28,7802080,SBUX 2014-07-09,39.27,39.74,39.1801,39.725,7783444,SBUX 2014-07-10,39.305,39.525,39.095,39.425,4720762,SBUX 2014-07-11,39.48,39.495,39.07,39.3,4254768,SBUX 2014-07-14,39.49,39.49,39.21,39.28,4562120,SBUX 2014-07-15,39.325,39.575,39.23,39.445,8369728,SBUX 2014-07-16,39.53,39.53,39.155,39.365,8734258,SBUX 2014-07-17,39.06,39.23,38.56,38.62,8446350,SBUX 2014-07-18,38.85,39.075,38.625,38.97,6744520,SBUX 2014-07-21,38.93,38.965,38.585,38.805,5021858,SBUX 2014-07-22,39.165,39.515,39.1,39.37,6457244,SBUX 2014-07-23,39.255,39.6395,39.2,39.57,6450280,SBUX 2014-07-24,39.795,40.32,39.575,40.225,16129286,SBUX 2014-07-25,39.2,39.66,39.0,39.37,18984366,SBUX 2014-07-28,39.4,39.5,39.0865,39.18,8012924,SBUX 2014-07-29,39.245,39.625,39.205,39.325,7937248,SBUX 2014-07-30,39.5,39.59,39.26,39.45,8911708,SBUX 2014-07-31,39.26,39.35,38.76,38.84,8147584,SBUX 2014-08-01,38.75,38.945,38.29,38.49,7798186,SBUX 2014-08-04,38.63,38.88,38.515,38.765,6282674,SBUX 2014-08-05,38.585,38.73,38.215,38.395,6696400,SBUX 2014-08-06,38.25,38.72,38.135,38.565,5935218,SBUX 2014-08-07,38.665,38.72,38.28,38.355,5427964,SBUX 2014-08-08,38.315,38.835,38.255,38.81,5957988,SBUX 2014-08-11,38.835,39.125,38.825,38.935,4522400,SBUX 2014-08-12,38.935,39.0718,38.76,38.91,4723844,SBUX 2014-08-13,39.05,39.05,38.565,38.62,6935144,SBUX 2014-08-14,38.74,38.75,38.08,38.31,10892582,SBUX 2014-08-15,38.61,38.64,38.185,38.455,8090044,SBUX 2014-08-18,38.595,38.93,38.59,38.795,6845416,SBUX 2014-08-19,38.9,39.1,38.8,39.06,4919030,SBUX 2014-08-20,39.005,39.235,38.87,39.015,4668758,SBUX 2014-08-21,38.905,39.085,38.695,38.735,4811992,SBUX 2014-08-22,38.62,38.8,38.525,38.64,4552328,SBUX 2014-08-25,38.82,39.11,38.755,38.985,5698322,SBUX 2014-08-26,39.005,39.215,38.8775,38.895,5513856,SBUX 2014-08-27,38.955,39.135,38.83,38.96,4904018,SBUX 2014-08-28,38.895,39.015,38.755,38.905,3958032,SBUX 2014-08-29,39.035,39.05,38.76,38.905,4657356,SBUX 2014-09-02,38.85,38.99,38.58,38.74,6197468,SBUX 2014-09-03,38.78,38.965,38.35,38.395,6796736,SBUX 2014-09-04,38.4,38.6863,38.38,38.58,5749790,SBUX 2014-09-05,38.505,38.985,38.405,38.975,8026608,SBUX 2014-09-08,38.88,38.98,38.665,38.835,4492776,SBUX 2014-09-09,38.725,38.875,38.49,38.56,5114572,SBUX 2014-09-10,38.505,38.7,38.375,38.605,5918672,SBUX 2014-09-11,38.49,38.5,38.04,38.06,9365624,SBUX 2014-09-12,37.915,38.035,37.47,37.735,14619348,SBUX 2014-09-15,37.63,37.67,37.195,37.46,10845708,SBUX 2014-09-16,37.42,37.725,37.265,37.545,8041214,SBUX 2014-09-17,37.67,37.9105,37.5525,37.67,7475730,SBUX 2014-09-18,37.795,37.945,37.5,37.865,8028914,SBUX 2014-09-19,37.985,38.165,37.885,38.035,12040726,SBUX 2014-09-22,38.025,38.025,37.165,37.3,7859646,SBUX 2014-09-23,37.145,37.44,36.89,36.9775,7739386,SBUX 2014-09-24,37.265,37.715,37.175,37.66,8599714,SBUX 2014-09-25,37.59,37.64,37.045,37.06,8010814,SBUX 2014-09-26,37.0,37.615,36.97,37.585,7659794,SBUX 2014-09-29,37.275,37.76,37.225,37.635,6376526,SBUX 2014-09-30,37.78,37.925,37.51,37.73,7800904,SBUX 2014-10-01,37.84,37.955,37.205,37.305,8119064,SBUX 2014-10-02,37.205,37.5,36.89,37.225,8573520,SBUX 2014-10-03,37.4,38.05,37.385,37.945,8229168,SBUX 2014-10-06,38.01,38.115,37.55,37.5725,5221748,SBUX 2014-10-07,37.45,37.525,37.01,37.025,6383432,SBUX 2014-10-08,37.12,37.71,36.815,37.63,6716308,SBUX 2014-10-09,37.52,37.91,37.18,37.24,9343828,SBUX 2014-10-10,37.13,37.895,37.05,37.23,10495940,SBUX 2014-10-13,37.105,37.22,36.005,36.095,12431414,SBUX 2014-10-14,36.205,36.79,36.105,36.37,10995022,SBUX 2014-10-15,36.015,36.465,35.635,36.19,13622008,SBUX 2014-10-16,35.59,36.435,35.385,36.32,9738832,SBUX 2014-10-17,36.675,36.955,36.44,36.77,9581060,SBUX 2014-10-20,36.805,37.375,36.7025,37.35,7957028,SBUX 2014-10-21,37.5,37.5925,37.07,37.18,12312930,SBUX 2014-10-22,37.24,37.4925,37.08,37.3,6469670,SBUX 2014-10-23,37.575,37.755,37.38,37.42,6837730,SBUX 2014-10-24,37.45,37.955,37.175,37.905,7359034,SBUX 2014-10-27,38.005,38.19,37.91,37.985,5796276,SBUX 2014-10-28,38.17,38.535,37.94,38.525,8150988,SBUX 2014-10-29,38.55,38.8325,38.11,38.27,8794902,SBUX 2014-10-30,38.09,38.725,38.055,38.66,13388970,SBUX 2014-10-31,37.625,38.37,37.46,37.78,35889908,SBUX 2014-11-03,37.985,38.135,37.735,38.05,10606936,SBUX 2014-11-04,37.805,38.47,37.75,38.355,10420764,SBUX 2014-11-05,38.505,38.695,38.295,38.33,7403396,SBUX 2014-11-06,38.485,38.775,38.33,38.725,6167276,SBUX 2014-11-07,38.82,39.045,38.605,38.895,8248994,SBUX 2014-11-10,38.82,38.95,38.585,38.825,6555370,SBUX 2014-11-11,38.915,39.1,38.625,38.865,5201438,SBUX 2014-11-12,38.705,39.005,38.635,38.925,5312194,SBUX 2014-11-13,39.095,39.24,38.7059,38.945,6842248,SBUX 2014-11-14,39.04,39.15,38.865,39.06,6039282,SBUX 2014-11-17,38.97,39.235,38.8225,38.915,5899020,SBUX 2014-11-18,38.815,39.0,38.6575,38.785,5755816,SBUX 2014-11-19,38.72,39.04,38.7,38.91,5231186,SBUX 2014-11-20,38.83,39.32,38.825,39.1,6287096,SBUX 2014-11-21,39.565,39.96,39.385,39.88,14027718,SBUX 2014-11-24,39.95,40.41,39.855,40.26,9426200,SBUX 2014-11-25,40.28,40.46,40.025,40.105,8118386,SBUX 2014-11-26,40.06,40.155,39.7,39.85,6196752,SBUX 2014-11-28,40.215,40.82,40.205,40.605,6766674,SBUX 2014-12-01,40.5,40.75,40.31,40.425,8627478,SBUX 2014-12-02,40.345,40.425,40.045,40.185,7656398,SBUX 2014-12-03,40.21,40.375,40.035,40.235,11201396,SBUX 2014-12-04,40.3,41.15,40.195,40.655,14070910,SBUX 2014-12-05,41.25,41.96,41.215,41.785,14788168,SBUX 2014-12-08,42.1,42.1,41.55,41.9,11770652,SBUX 2014-12-09,41.535,41.645,41.1,41.515,8725620,SBUX 2014-12-10,41.45,42.02,41.275,41.33,10096320,SBUX 2014-12-11,41.45,42.01,41.3275,41.56,10058296,SBUX 2014-12-12,41.37,41.985,41.285,41.625,9164230,SBUX 2014-12-15,41.135,41.25,40.345,40.445,16286986,SBUX 2014-12-16,40.245,40.545,39.555,39.565,13981874,SBUX 2014-12-17,39.565,40.295,39.22,40.2175,10161624,SBUX 2014-12-18,40.775,40.82,39.63,40.015,17582942,SBUX 2014-12-19,40.1,40.145,39.705,39.72,17444212,SBUX 2014-12-22,39.925,40.275,39.885,40.27,7583856,SBUX 2014-12-23,40.75,41.025,40.565,40.715,8147722,SBUX 2014-12-24,40.735,40.93,40.59,40.635,2602398,SBUX 2014-12-26,40.715,41.2,40.69,40.915,4550364,SBUX 2014-12-29,40.83,41.275,40.75,41.19,4796662,SBUX 2014-12-30,41.035,41.44,40.895,40.895,5253454,SBUX 2014-12-31,41.095,41.665,41.0,41.025,7628772,SBUX 2015-01-02,41.065,41.4875,40.445,40.72,6906098,SBUX 2015-01-05,40.07,40.335,39.745,39.94,11623796,SBUX 2015-01-06,40.17,40.195,39.28,39.615,7664340,SBUX 2015-01-07,39.875,40.615,39.7,40.59,9732554,SBUX 2015-01-08,41.165,41.65,41.01,41.245,13170548,SBUX 2015-01-09,40.495,40.755,39.56,39.895,27556706,SBUX 2015-01-12,40.145,40.415,39.91,40.115,10021486,SBUX 2015-01-13,40.74,41.07,40.065,40.435,11040702,SBUX 2015-01-14,40.025,40.39,39.805,40.21,9295084,SBUX 2015-01-15,40.3,40.45,39.595,39.79,8126602,SBUX 2015-01-16,39.63,40.39,39.5,40.305,9015502,SBUX 2015-01-20,40.4,40.735,40.165,40.6125,10738304,SBUX 2015-01-21,40.525,40.815,40.265,40.645,10844182,SBUX 2015-01-22,40.68,41.42,40.445,41.37,23913056,SBUX 2015-01-23,43.25,44.35,43.22,44.11,38107194,SBUX 2015-01-26,44.045,44.25,43.705,44.06,14098574,SBUX 2015-01-27,43.89,44.605,43.725,44.17,10995808,SBUX 2015-01-28,44.35,44.795,43.745,43.7825,11963202,SBUX 2015-01-29,44.005,44.65,43.785,44.525,12475860,SBUX 2015-01-30,44.29,44.47,43.695,43.765,10070456,SBUX 2015-02-02,43.84,44.045,42.93,43.995,13638832,SBUX 2015-02-03,43.99,44.245,43.465,44.245,9252426,SBUX 2015-02-04,44.0,44.715,43.995,44.35,11496698,SBUX 2015-02-05,44.355,44.885,44.355,44.82,7598672,SBUX 2015-02-06,44.75,44.8375,44.34,44.5,7835332,SBUX 2015-02-09,44.255,44.6035,44.07,44.41,6911614,SBUX 2015-02-10,44.685,45.69,44.665,45.59,12469500,SBUX 2015-02-11,45.58,45.895,45.3525,45.395,6466910,SBUX 2015-02-12,45.545,45.97,45.045,45.9125,7197558,SBUX 2015-02-13,45.995,45.995,45.4525,45.79,6109522,SBUX 2015-02-17,45.885,46.12,45.63,46.015,6386900,SBUX 2015-02-18,46.195,46.665,46.0,46.5,6541986,SBUX 2015-02-19,46.575,46.89,46.505,46.585,6109176,SBUX 2015-02-20,46.73,46.835,46.485,46.755,6462662,SBUX 2015-02-23,46.925,46.964,46.54,46.79,5854572,SBUX 2015-02-24,46.63,46.995,46.58,46.725,6337888,SBUX 2015-02-25,46.65,47.415,46.625,47.13,8120660,SBUX 2015-02-26,47.15,47.4113,47.04,47.275,6816352,SBUX 2015-02-27,47.395,47.4,46.635,46.7425,8658404,SBUX 2015-03-02,46.665,47.275,46.665,47.1125,7947018,SBUX 2015-03-03,47.05,47.105,46.6,47.0,7578374,SBUX 2015-03-04,46.905,47.095,46.005,46.53,7774534,SBUX 2015-03-05,46.64,46.98,46.5303,46.815,5848750,SBUX 2015-03-06,46.65,46.8475,45.94,46.1075,6814414,SBUX 2015-03-09,46.195,46.565,46.045,46.52,5984880,SBUX 2015-03-10,46.08,46.4549,45.885,46.09,6076984,SBUX 2015-03-11,46.06,46.49,45.61,45.71,8185894,SBUX 2015-03-12,45.985,46.765,45.92,46.69,7295344,SBUX 2015-03-13,46.34,47.185,46.34,46.645,5835252,SBUX 2015-03-16,47.0,47.31,46.87,47.0225,6772606,SBUX 2015-03-17,46.88,47.24,46.8,47.1925,5508796,SBUX 2015-03-18,47.0,48.285,46.675,47.92,15429928,SBUX 2015-03-19,48.38,49.6,48.19,48.88,22020618,SBUX 2015-03-20,49.245,49.45,48.505,48.73,17360612,SBUX 2015-03-23,48.94,48.95,48.355,48.685,7985986,SBUX 2015-03-24,48.555,49.165,48.38,48.9575,7718488,SBUX 2015-03-25,49.07,49.24,47.885,47.885,9907170,SBUX 2015-03-26,47.675,47.875,46.83,47.54,10344304,SBUX 2015-03-27,47.5,47.975,47.375,47.535,7993350,SBUX 2015-03-30,48.02,48.25,47.75,47.99,6830270,SBUX 2015-03-31,47.835,48.1,47.345,47.35,8717754,SBUX 2015-04-01,47.14,47.25,46.28,46.51,14125350,SBUX 2015-04-02,46.71,47.3175,46.61,47.195,8863018,SBUX 2015-04-06,46.925,47.4,46.725,47.26,6058894,SBUX 2015-04-07,47.205,47.48,46.98,47.035,5354670,SBUX 2015-04-08,46.92,47.64,46.92,47.615,6827888,SBUX 2015-04-09,47.65,47.99,47.25,47.96,7109621,SBUX 2015-04-10,48.6,48.6,47.88,48.17,6643106,SBUX 2015-04-13,48.56,48.89,48.38,48.5,8171030,SBUX 2015-04-14,48.52,48.71,47.97,48.3,5952424,SBUX 2015-04-15,48.81,48.81,48.13,48.14,5162169,SBUX 2015-04-16,48.23,48.48,48.16,48.245,5312499,SBUX 2015-04-17,47.9,48.0,47.39,47.62,7539865,SBUX 2015-04-20,47.9,48.12,47.7,47.97,4868425,SBUX 2015-04-21,48.35,48.4799,48.02,48.37,6213360,SBUX 2015-04-22,48.5,48.6,47.98,48.335,7248119,SBUX 2015-04-23,48.55,49.7,48.28,49.43,15866051,SBUX 2015-04-24,51.32,52.09,50.62,51.84,22284881,SBUX 2015-04-27,51.81,51.94,50.76,50.87,11222608,SBUX 2015-04-28,50.6,50.8,49.9801,50.61,8882901,SBUX 2015-04-29,50.42,50.95,50.2,50.65,7161992,SBUX 2015-04-30,50.63,50.68,49.43,49.58,8492048,SBUX 2015-05-01,49.95,50.42,49.68,50.29,5916509,SBUX 2015-05-04,50.3,50.93,50.27,50.445,7493420,SBUX 2015-05-05,49.94,50.05,49.36,49.405,10691207,SBUX 2015-05-06,49.68,49.7,48.57,48.93,8033489,SBUX 2015-05-07,48.74,49.55,48.72,49.35,5681417,SBUX 2015-05-08,49.99,50.4265,49.46,49.78,6039840,SBUX 2015-05-11,49.71,50.22,49.38,49.5,5047180,SBUX 2015-05-12,49.15,49.99,49.0,49.71,5868552,SBUX 2015-05-13,49.85,50.15,49.425,49.59,4927094,SBUX 2015-05-14,49.98,50.59,49.67,50.555,7339742,SBUX 2015-05-15,50.79,50.85,50.39,50.8,6016694,SBUX 2015-05-18,50.65,51.29,50.56,51.18,8999761,SBUX 2015-05-19,51.48,51.715,50.96,51.42,6976052,SBUX 2015-05-20,51.31,51.44,50.43,51.03,5644662,SBUX 2015-05-21,50.94,51.45,50.78,51.33,5084042,SBUX 2015-05-22,51.33,51.65,51.21,51.48,5857672,SBUX 2015-05-26,51.38,51.78,50.66,50.84,7369923,SBUX 2015-05-27,51.04,51.7,50.91,51.59,6213573,SBUX 2015-05-28,51.84,51.94,51.445,51.81,5874382,SBUX 2015-05-29,51.95,52.23,51.45,51.96,9399112,SBUX 2015-06-01,51.96,52.46,51.67,52.22,7075082,SBUX 2015-06-02,51.98,52.3,51.66,51.73,7877799,SBUX 2015-06-03,52.0,52.27,51.67,52.12,5522702,SBUX 2015-06-04,51.87,52.18,51.57,51.72,6230805,SBUX 2015-06-05,51.57,52.44,51.27,52.19,7123248,SBUX 2015-06-08,52.0,52.23,51.49,51.53,6320181,SBUX 2015-06-09,51.35,51.7,51.1,51.54,5034038,SBUX 2015-06-10,51.8,52.86,51.66,52.69,8003611,SBUX 2015-06-11,52.81,53.0,52.44,52.49,6030167,SBUX 2015-06-12,52.41,52.74,52.16,52.63,5236747,SBUX 2015-06-15,52.23,52.46,52.01,52.27,5554964,SBUX 2015-06-16,52.27,53.14,52.2,52.965,6106529,SBUX 2015-06-17,53.09,53.47,52.72,53.24,6735294,SBUX 2015-06-18,53.5,54.28,53.4,54.11,10712142,SBUX 2015-06-19,54.08,54.44,53.84,53.93,10609714,SBUX 2015-06-22,54.325,54.43,53.88,53.9,7100665,SBUX 2015-06-23,54.04,54.18,53.72,54.115,5679984,SBUX 2015-06-24,53.75,53.97,53.5194,53.71,5524969,SBUX 2015-06-25,54.09,54.45,54.0,54.07,5389863,SBUX 2015-06-26,54.46,54.75,54.3,54.62,6637183,SBUX 2015-06-29,53.87,54.39,53.5144,53.55,6534077,SBUX 2015-06-30,54.15,54.3,53.14,53.615,9793969,SBUX 2015-07-01,53.86,54.21,53.6,53.89,6107698,SBUX 2015-07-02,54.03,54.7,53.9501,54.24,5684667,SBUX 2015-07-06,53.64,54.405,53.63,54.305,5396439,SBUX 2015-07-07,54.29,54.54,53.36,54.375,9462256,SBUX 2015-07-08,53.86,54.02,53.3101,53.39,8139303,SBUX 2015-07-09,54.07,54.5,53.88,54.05,7681013,SBUX 2015-07-10,54.54,54.732,54.18,54.57,8087800,SBUX 2015-07-13,55.0,55.89,54.9,55.7,7477170,SBUX 2015-07-14,55.96,56.06,55.52,55.75,7028025,SBUX 2015-07-15,55.92,55.95,55.285,55.34,8212573,SBUX 2015-07-16,56.06,56.16,55.66,55.74,7305520,SBUX 2015-07-17,55.9,55.9,55.37,55.69,8715431,SBUX 2015-07-20,55.73,56.74,55.7,56.21,8029646,SBUX 2015-07-21,56.38,56.47,55.78,56.2,6717452,SBUX 2015-07-22,56.43,56.87,56.25,56.69,6876059,SBUX 2015-07-23,56.98,57.0,56.16,56.56,12439229,SBUX 2015-07-24,59.12,59.31,57.15,57.29,14559687,SBUX 2015-07-27,57.21,57.47,56.85,56.98,8993523,SBUX 2015-07-28,57.39,57.4,56.56,57.14,8689215,SBUX 2015-07-29,57.38,57.8,57.14,57.51,8470512,SBUX 2015-07-30,57.3,58.15,57.01,58.06,7337948,SBUX 2015-07-31,58.44,58.44,57.73,57.93,6519528,SBUX 2015-08-03,58.62,58.96,58.0386,58.19,7664002,SBUX 2015-08-04,58.25,58.72,58.03,58.7,9113083,SBUX 2015-08-05,59.15,59.3198,58.83,59.01,7349063,SBUX 2015-08-06,59.13,59.2,57.09,57.23,11064470,SBUX 2015-08-07,57.33,57.36,56.51,57.2,7781995,SBUX 2015-08-10,57.29,57.626000000000005,55.75,56.27,12029150,SBUX 2015-08-11,55.79,56.435,55.24,56.35,8062553,SBUX 2015-08-12,55.69,56.4,54.95,56.38,10075571,SBUX 2015-08-13,56.52,57.25,56.51,56.85,6731474,SBUX 2015-08-14,56.95,57.12,56.66,57.1,4803903,SBUX 2015-08-17,57.0,57.76,56.73,57.74,5768362,SBUX 2015-08-18,57.96,58.06,57.66,57.83,5575441,SBUX 2015-08-19,57.58,58.08,57.115,57.59,6044193,SBUX 2015-08-20,57.0,57.15,55.77,55.81,7470885,SBUX 2015-08-21,54.72,54.86,52.601000000000006,52.84,20211503,SBUX 2015-08-24,48.05,52.67,42.05,50.34,27158813,SBUX 2015-08-25,52.96,53.61,51.05,51.09,19659002,SBUX 2015-08-26,52.99,54.15,51.27,53.96,15517591,SBUX 2015-08-27,54.74,56.21,54.41,55.95,15987923,SBUX 2015-08-28,55.84,56.31,55.2,55.63,7584826,SBUX 2015-08-31,55.23,55.47,54.5,54.71,7971204,SBUX 2015-09-01,52.82,54.36,52.74,53.5,13424932,SBUX 2015-09-02,54.47,55.29,53.751000000000005,55.26,9891071,SBUX 2015-09-03,55.72,55.76,54.475,54.69,7968868,SBUX 2015-09-04,53.87,54.57,53.84,54.28,6994267,SBUX 2015-09-08,55.31,55.45,54.53,55.21,8051710,SBUX 2015-09-09,55.9,56.0,54.57,54.69,8406656,SBUX 2015-09-10,54.34,55.69,54.33,55.37,8924778,SBUX 2015-09-11,55.19,56.54,55.03,56.53,8363110,SBUX 2015-09-14,56.54,56.91,56.05,56.29,5464463,SBUX 2015-09-15,56.43,57.21,56.115,56.91,6741341,SBUX 2015-09-16,56.83,57.35,56.21,57.26,6593362,SBUX 2015-09-17,57.32,58.1,57.04,57.28,7525349,SBUX 2015-09-18,56.49,57.63,56.28,56.84,16268035,SBUX 2015-09-21,57.2,57.84,56.96,57.54,6220131,SBUX 2015-09-22,56.85,57.25,56.7,57.12,8585093,SBUX 2015-09-23,57.16,57.93,57.05,57.79,6829205,SBUX 2015-09-24,57.38,58.54,57.17,58.37,10027330,SBUX 2015-09-25,58.92,58.96,57.74,57.99,10627026,SBUX 2015-09-28,58.01,58.43,55.6201,55.77,11548114,SBUX 2015-09-29,55.85,56.3,54.81,55.72,9392065,SBUX 2015-09-30,56.4,56.9,55.61,56.84,9799610,SBUX 2015-10-01,56.99,57.5,55.89,57.48,8497124,SBUX 2015-10-02,56.99,58.09,56.5406,58.08,9036765,SBUX 2015-10-05,58.49,59.18,58.07,59.04,8198998,SBUX 2015-10-06,58.82,59.14,58.22,58.69,5642949,SBUX 2015-10-07,58.62,58.83,57.9,58.78,8138313,SBUX 2015-10-08,58.78,59.71,58.39,59.46,6834836,SBUX 2015-10-09,59.47,60.11,59.3,60.07,7969884,SBUX 2015-10-12,60.35,60.89,60.04,60.54,6430301,SBUX 2015-10-13,60.34,60.745,60.0161,60.16,6262774,SBUX 2015-10-14,60.0,60.17,58.43,58.82,8365604,SBUX 2015-10-15,58.95,59.83,58.08,59.69,9745919,SBUX 2015-10-16,59.96,60.29,59.455,59.93,12860812,SBUX 2015-10-19,60.13,61.29,59.8745,60.97,8117213,SBUX 2015-10-20,61.22,61.36,60.56,60.88,6089097,SBUX 2015-10-21,61.07,61.12,60.16,60.53,6063923,SBUX 2015-10-22,60.96,61.7099,60.17,61.49,9182031,SBUX 2015-10-23,62.11,62.8,61.6201,62.61,8205994,SBUX 2015-10-26,62.98,63.84,62.97,63.43,9751716,SBUX 2015-10-27,63.37,63.41,62.19,62.71,8973243,SBUX 2015-10-28,63.11,63.52,62.42,63.51,9627260,SBUX 2015-10-29,63.42,63.5,61.713,62.5,14839093,SBUX 2015-10-30,63.69,64.0,62.26,62.57,16822302,SBUX 2015-11-02,63.01,63.1,62.12,62.24,8547237,SBUX 2015-11-03,62.0,62.975,61.65,62.8,8847718,SBUX 2015-11-04,63.0355,63.0355,61.34,61.96,9085091,SBUX 2015-11-05,62.17,62.46,62.01,62.28,6144979,SBUX 2015-11-06,62.05,62.24,61.61,61.97,6616305,SBUX 2015-11-09,61.75,61.97,60.86,61.34,6838326,SBUX 2015-11-10,61.54,62.32,61.21,62.18,6689040,SBUX 2015-11-11,62.55,62.57,61.81,61.87,4437315,SBUX 2015-11-12,61.34,61.65,60.75,61.07,6793779,SBUX 2015-11-13,60.89,61.345,59.61,59.74,8821593,SBUX 2015-11-16,59.5,60.69,59.5,60.68,8096603,SBUX 2015-11-17,60.95,61.56,60.435,60.55,6695251,SBUX 2015-11-18,60.66,61.865,60.33,61.8,7215255,SBUX 2015-11-19,61.8,61.93,61.39,61.46,5154366,SBUX 2015-11-20,61.96,62.15,61.58,61.99,8302476,SBUX 2015-11-23,62.14,63.19,62.1,62.64,8493485,SBUX 2015-11-24,62.06,62.37,61.2199,61.96,7908223,SBUX 2015-11-25,62.05,62.5,62.0,62.19,4549913,SBUX 2015-11-27,62.19,62.38,61.93,62.18,2447902,SBUX 2015-11-30,62.1,62.29,61.201,61.39,9863771,SBUX 2015-12-01,61.08,61.68,60.51,61.37,10910838,SBUX 2015-12-02,61.63,61.71,61.115,61.22,6587454,SBUX 2015-12-03,61.37,61.4468,59.15,59.55,12056103,SBUX 2015-12-04,59.86,61.87,59.6,61.75,9100588,SBUX 2015-12-07,61.75,61.95,61.44,61.89,5967809,SBUX 2015-12-08,61.69,62.43,61.52,62.16,6664947,SBUX 2015-12-09,61.71,62.538999999999994,60.82,61.18,8541573,SBUX 2015-12-10,61.13,62.14,61.01,61.87,6623896,SBUX 2015-12-11,60.86,61.19,59.6,59.82,11489255,SBUX 2015-12-14,60.04,60.14,58.61,59.92,13453719,SBUX 2015-12-15,60.55,60.68,59.97,59.98,7842073,SBUX 2015-12-16,60.32,60.5,59.51,60.35,9281835,SBUX 2015-12-17,60.66,60.83,59.47,59.515,9079430,SBUX 2015-12-18,59.2,59.5,58.27,58.62,18099462,SBUX 2015-12-21,58.89,59.615,58.66,59.54,7187470,SBUX 2015-12-22,59.94,60.07,59.275,59.99,6501424,SBUX 2015-12-23,60.26,60.37,59.96,60.34,4510229,SBUX 2015-12-24,60.37,60.51,60.17,60.32,2215418,SBUX 2015-12-28,60.02,60.33,59.58,60.19,4437236,SBUX 2015-12-29,60.46,61.32,60.35,61.13,5477335,SBUX 2015-12-30,61.22,61.4,60.75,60.82,3973912,SBUX 2015-12-31,60.65,60.81,60.02,60.03,4960875,SBUX 2016-01-04,58.77,58.83,57.6,58.26,13521544,SBUX 2016-01-05,58.79,58.79,57.98,58.65,9617778,SBUX 2016-01-06,57.7,58.53,57.64,58.13,8266322,SBUX 2016-01-07,56.88,57.91,56.16,56.69,11140877,SBUX 2016-01-08,57.41,57.73,56.53,56.63,10427021,SBUX 2016-01-11,57.0,58.12,56.78,57.82,10757313,SBUX 2016-01-12,58.39,59.53,58.18,59.46,12375826,SBUX 2016-01-13,59.8,60.0,57.8001,57.87,11303603,SBUX 2016-01-14,57.51,59.43,56.92100000000001,58.98,11444106,SBUX 2016-01-15,57.07,58.39,56.75,58.0,15246127,SBUX 2016-01-19,58.67,59.39,58.12,58.55,12288950,SBUX 2016-01-20,57.57,57.96,54.94,56.92,22786359,SBUX 2016-01-21,57.84,59.38,57.67,59.03,20888519,SBUX 2016-01-22,57.55,59.4,57.41,59.17,32820193,SBUX 2016-01-25,59.36,59.38,57.61,57.71,13554262,SBUX 2016-01-26,57.92,58.865,57.8,58.61,8898100,SBUX 2016-01-27,58.87,58.96,57.255,57.63,12491252,SBUX 2016-01-28,58.29,59.42,58.0,59.285,11832368,SBUX 2016-01-29,59.78,60.88,59.64,60.77,13224438,SBUX 2016-02-01,60.66,61.785,60.27,61.4,9529094,SBUX 2016-02-02,60.66,60.9,60.18,60.695,9407352,SBUX 2016-02-03,60.88,61.13,58.5,59.53,12254460,SBUX 2016-02-04,59.41,59.4487,57.99,58.29,13944926,SBUX 2016-02-05,58.1,58.2,54.25,54.49,24529008,SBUX 2016-02-08,53.09,54.47,52.63,54.14,21457492,SBUX 2016-02-09,53.19,55.2886,53.17,54.42,11605059,SBUX 2016-02-10,55.28,56.35,55.01,55.14,11663942,SBUX 2016-02-11,53.89,55.39,53.55,54.92,12106062,SBUX 2016-02-12,55.56,56.04,55.04,55.86,8680205,SBUX 2016-02-16,56.79,56.85,55.98,56.41,11594766,SBUX 2016-02-17,56.7,57.66,56.16,57.63,11955188,SBUX 2016-02-18,57.57,57.57,56.67,56.96,8493953,SBUX 2016-02-19,56.92,57.86,56.52,57.67,9033620,SBUX 2016-02-22,58.63,58.95,58.17,58.87,8390689,SBUX 2016-02-23,58.45,58.9,58.0,58.46,7064095,SBUX 2016-02-24,57.21,58.35,56.28,58.11,10780882,SBUX 2016-02-25,58.46,58.75,58.0,58.75,6262127,SBUX 2016-02-26,59.0,59.21,57.92,58.34,7473374,SBUX 2016-02-29,58.25,59.15,58.1,58.21,7645081,SBUX 2016-03-01,58.77,60.2,58.5,60.04,9183562,SBUX 2016-03-02,59.83,60.0,58.83,59.56,8856392,SBUX 2016-03-03,59.12,59.2,58.2,59.04,8262455,SBUX 2016-03-04,59.14,59.19,58.23,58.7,8344773,SBUX 2016-03-07,58.44,58.67,57.31,58.0,9204624,SBUX 2016-03-08,57.58,58.23,57.26,57.6,8127426,SBUX 2016-03-09,57.78,57.97,56.79,57.07,9734589,SBUX 2016-03-10,57.51,57.86,56.92,57.52,7023785,SBUX 2016-03-11,58.1,58.1,56.57,57.59,15497560,SBUX 2016-03-14,57.58,58.78,57.5,58.65,9053250,SBUX 2016-03-15,58.32,59.1566,58.17,59.08,7428469,SBUX 2016-03-16,58.65,59.82,58.65,59.67,8069427,SBUX 2016-03-17,59.47,59.98,59.37,59.55,7734658,SBUX 2016-03-18,59.91,60.45,59.4295,59.7,14313578,SBUX 2016-03-21,59.56,59.8609,59.015,59.1,6487185,SBUX 2016-03-22,59.0,59.55,58.57,59.38,8246837,SBUX 2016-03-23,59.14,59.395,58.69,58.83,5794495,SBUX 2016-03-24,58.7,58.79,58.28,58.36,5948307,SBUX 2016-03-28,58.56,59.47,58.4,58.96,5791603,SBUX 2016-03-29,58.82,59.735,58.82,59.55,6031947,SBUX 2016-03-30,60.0,60.26,59.51,60.01,5723499,SBUX 2016-03-31,59.77,60.21,59.68,59.7,5622834,SBUX 2016-04-01,59.61,61.17,59.41,61.02,9401126,SBUX 2016-04-04,61.1,61.1839,60.08,60.25,5799864,SBUX 2016-04-05,59.88,60.23,59.44,60.04,4994792,SBUX 2016-04-06,60.02,60.91,59.91,60.83,5667253,SBUX 2016-04-07,60.59,61.54,60.54,61.17,8239174,SBUX 2016-04-08,61.5,61.64,60.7,61.04,5064894,SBUX 2016-04-11,61.22,61.5,60.78,60.9,6103358,SBUX 2016-04-12,58.95,59.68,58.37,59.5,17565750,SBUX 2016-04-13,60.32,61.08,59.75,60.21,9898527,SBUX 2016-04-14,60.26,60.4,59.91,60.13,5157368,SBUX 2016-04-15,60.24,60.6246,60.01,60.51,5965310,SBUX 2016-04-18,60.69,61.07,60.355,60.89,7228573,SBUX 2016-04-19,61.16,61.25,60.48,60.9,7283570,SBUX 2016-04-20,61.04,61.43,60.85,60.9,5558770,SBUX 2016-04-21,60.9,61.1,60.48,60.64,12799083,SBUX 2016-04-22,59.01,59.1,57.03,57.68,29836693,SBUX 2016-04-25,57.62,57.96,57.58,57.77,8428038,SBUX 2016-04-26,58.05,58.67,57.56,57.72,8839067,SBUX 2016-04-27,57.51,57.65,56.62,56.9,12390767,SBUX 2016-04-28,56.59,57.36,56.32,56.42,9196560,SBUX 2016-04-29,56.02,56.43,55.29,56.23,12133364,SBUX 2016-05-02,56.29,57.37,56.11,57.36,8616189,SBUX 2016-05-03,56.7,57.059,56.14,56.25,7854260,SBUX 2016-05-04,55.98,56.65,55.8,56.39,6508507,SBUX 2016-05-05,56.37,56.77,56.01,56.25,6215367,SBUX 2016-05-06,55.96,56.32,55.38,56.31,6378690,SBUX 2016-05-09,56.32,56.93,56.23,56.64,5976229,SBUX 2016-05-10,56.85,57.6,56.71,57.49,7931185,SBUX 2016-05-11,57.13,57.39,56.09,56.23,8118920,SBUX 2016-05-12,56.57,56.79,55.82,56.3,6870281,SBUX 2016-05-13,56.43,56.6,55.73,55.82,5466041,SBUX 2016-05-16,55.7,55.77,55.2,55.53,9536192,SBUX 2016-05-17,55.38,55.64,54.51,54.88,10530018,SBUX 2016-05-18,54.76,55.17,54.38,54.8,7468496,SBUX 2016-05-19,54.43,54.615,54.19,54.55,7582848,SBUX 2016-05-20,54.88,55.3736,54.58,54.62,8430783,SBUX 2016-05-23,54.62,54.8171,54.291000000000004,54.6,7352054,SBUX 2016-05-24,54.74,55.62,54.68,55.44,7748697,SBUX 2016-05-25,55.2,55.46,54.95,55.15,8126058,SBUX 2016-05-26,55.55,55.8699,54.95,55.29,9451708,SBUX 2016-05-27,55.36,55.55,55.1,55.15,6631120,SBUX 2016-05-31,55.5,55.5,54.7,54.89,12043976,SBUX 2016-06-01,54.76,55.49,54.72,54.82,8761577,SBUX 2016-06-02,54.9,55.0,54.455,54.62,8307488,SBUX 2016-06-03,54.71,55.08,54.4,54.61,6649224,SBUX 2016-06-06,54.72,55.87,54.69,55.59,9900917,SBUX 2016-06-07,55.65,56.1,55.28,55.3,7173072,SBUX 2016-06-08,55.5,55.5,54.9,55.22,7623851,SBUX 2016-06-09,55.15,55.61,55.06,55.58,5927854,SBUX 2016-06-10,54.92,55.2,54.5,54.865,8118651,SBUX 2016-06-13,54.79,55.6,54.76,55.04,7928722,SBUX 2016-06-14,55.05,55.58,55.0101,55.57,8036517,SBUX 2016-06-15,55.64,56.09,55.27,55.35,7447317,SBUX 2016-06-16,54.9,55.59,54.41,55.53,7968033,SBUX 2016-06-17,55.61,55.62,55.04,55.31,9503017,SBUX 2016-06-20,55.77,56.28,55.38,55.38,7286681,SBUX 2016-06-21,55.52,56.03,55.45,55.81,7445109,SBUX 2016-06-22,55.88,55.98,55.49,55.61,7215411,SBUX 2016-06-23,55.98,56.195,55.9,56.13,5569431,SBUX 2016-06-24,54.05,55.57,54.01,54.68,14654672,SBUX 2016-06-27,54.2,54.48,53.41,53.69,11650798,SBUX 2016-06-28,54.1,54.9,53.95,54.85,8416950,SBUX 2016-06-29,55.42,56.945,55.36,56.74,11103787,SBUX 2016-06-30,56.81,57.19,56.516000000000005,57.12,10215193,SBUX 2016-07-01,57.04,57.36,56.845,56.99,8330308,SBUX 2016-07-05,56.81,56.96,56.55,56.77,7274208,SBUX 2016-07-06,56.52,57.11,56.32,56.75,8474188,SBUX 2016-07-07,56.66,57.0,56.47,56.91,6813347,SBUX 2016-07-08,56.92,57.0,56.36,56.51,12655500,SBUX 2016-07-11,56.8,56.92,56.06,56.32,10394366,SBUX 2016-07-12,56.65,57.6,56.505,57.48,10998486,SBUX 2016-07-13,56.8,57.26,56.35,56.48,12183638,SBUX 2016-07-14,57.0,57.68,56.97,57.59,11353599,SBUX 2016-07-15,57.69,57.74,57.125,57.41,8494000,SBUX 2016-07-18,57.59,57.59,56.85,56.92,7614635,SBUX 2016-07-19,56.85,57.135,56.545,56.76,8719772,SBUX 2016-07-20,57.0,57.66,56.705,57.54,9446396,SBUX 2016-07-21,57.62,57.67,57.0375,57.6,16151699,SBUX 2016-07-22,57.6,58.24,57.2,57.9,23899275,SBUX 2016-07-25,57.72,58.09,57.5,57.95,10486019,SBUX 2016-07-26,58.58,58.84,58.2,58.31,10106663,SBUX 2016-07-27,58.38,58.4,57.67,57.85,6551777,SBUX 2016-07-28,57.88,58.31,57.74,58.21,6830059,SBUX 2016-07-29,58.18,58.43,57.92,58.05,6914907,SBUX 2016-08-01,58.0,58.05,57.43,57.63,7997576,SBUX 2016-08-02,57.25,57.34,56.54,56.73,7574622,SBUX 2016-08-03,56.46,56.59,55.72,55.94,11484792,SBUX 2016-08-04,56.05,56.29,55.38,55.42,11193748,SBUX 2016-08-05,55.8,56.12,55.52,55.9,9206197,SBUX 2016-08-08,55.97,55.99,55.17,55.36,9129307,SBUX 2016-08-09,55.39,55.71,55.18,55.2,7136683,SBUX 2016-08-10,55.37,55.71,55.11,55.62,6991077,SBUX 2016-08-11,55.75,55.96,55.46,55.47,6191412,SBUX 2016-08-12,55.27,55.745,55.23,55.47,5039757,SBUX 2016-08-15,55.65,55.7,55.18,55.25,5968728,SBUX 2016-08-16,55.25,55.57,54.92,55.37,5751178,SBUX 2016-08-17,55.77,55.92,55.43,55.8,7410631,SBUX 2016-08-18,55.78,55.9,55.49,55.53,5390990,SBUX 2016-08-19,55.46,55.56,54.85,54.94,8981214,SBUX 2016-08-22,54.98,55.92,54.95,55.85,8837808,SBUX 2016-08-23,56.17,56.54,56.0,56.4,7827873,SBUX 2016-08-24,57.0,57.98,56.95,57.09,13200460,SBUX 2016-08-25,57.04,57.45,56.9,57.29,6686589,SBUX 2016-08-26,57.48,57.83,56.995,57.29,6940511,SBUX 2016-08-29,57.22,57.48,56.61,56.8,7026700,SBUX 2016-08-30,56.66,56.75,56.01,56.4,6377668,SBUX 2016-08-31,56.31,56.42,55.905,56.23,6996894,SBUX 2016-09-01,56.3,56.56,55.83,56.31,6230148,SBUX 2016-09-02,56.52,56.65,55.985,56.18,7441463,SBUX 2016-09-06,56.18,56.42,55.69,56.02,6472907,SBUX 2016-09-07,56.19,56.6,56.12,56.32,11428644,SBUX 2016-09-08,56.1,56.15,55.2,55.3,12673626,SBUX 2016-09-09,55.14,55.2,54.3,54.35,10658120,SBUX 2016-09-12,53.92,54.79,53.92,54.71,11002544,SBUX 2016-09-13,54.39,54.55,53.75,53.98,10050215,SBUX 2016-09-14,54.26,54.35,53.8,53.9,6707850,SBUX 2016-09-15,53.96,54.13,53.54,54.11,8080426,SBUX 2016-09-16,53.94,54.09,53.41,53.74,10207750,SBUX 2016-09-19,53.96,53.9739,52.9,53.01,9231628,SBUX 2016-09-20,53.4,53.435,53.05,53.3,8731499,SBUX 2016-09-21,53.43,54.03,53.28,53.98,9213637,SBUX 2016-09-22,54.2,54.6,53.965,54.39,9096709,SBUX 2016-09-23,54.0,54.56,54.0,54.43,6945147,SBUX 2016-09-26,54.28,54.34,53.86,54.04,7755629,SBUX 2016-09-27,54.0,54.21,53.82,54.19,6463747,SBUX 2016-09-28,53.88,54.08,53.53,53.98,8593496,SBUX 2016-09-29,53.88,53.995,52.91,53.45,11993517,SBUX 2016-09-30,53.65,54.385,53.56,54.14,13767754,SBUX 2016-10-03,54.1,54.15,53.665,53.84,5479037,SBUX 2016-10-04,54.13,54.13,53.41,53.53,6176358,SBUX 2016-10-05,53.5,53.76,53.275,53.35,7451916,SBUX 2016-10-06,53.3,53.48,53.03,53.14,6130270,SBUX 2016-10-07,53.37,53.605,53.0,53.46,7279723,SBUX 2016-10-10,53.53,53.6,53.27,53.3,7224335,SBUX 2016-10-11,53.13,53.4,52.74,52.92,9720407,SBUX 2016-10-12,53.01,53.47,52.78,53.16,6320462,SBUX 2016-10-13,52.88,53.13,52.6662,52.95,6958128,SBUX 2016-10-14,53.12,53.37,52.96,53.08,6430136,SBUX 2016-10-17,52.94,53.145,52.69,52.76,5223526,SBUX 2016-10-18,53.24,53.3197,52.59,52.61,6550399,SBUX 2016-10-19,52.91,53.74,52.9,53.15,9095261,SBUX 2016-10-20,53.36,53.74,52.91,53.59,9286800,SBUX 2016-10-21,53.42,53.7,53.25,53.63,6767204,SBUX 2016-10-24,53.9,54.46,53.8939,54.18,6919714,SBUX 2016-10-25,54.1,54.17,53.5,53.67,6052830,SBUX 2016-10-26,53.6,53.84,53.355,53.63,5817798,SBUX 2016-10-27,53.6,53.83,53.13,53.59,7899957,SBUX 2016-10-28,53.65,53.84,53.11,53.53,6620333,SBUX 2016-10-31,53.7,53.7,53.055,53.07,9142509,SBUX 2016-11-01,53.14,53.21,52.085,52.5,15425819,SBUX 2016-11-02,52.34,53.46,52.31,52.98,10851658,SBUX 2016-11-03,52.99,53.0,51.34,51.77,21847292,SBUX 2016-11-04,51.43,53.74,50.84,52.75,21956848,SBUX 2016-11-07,53.5,54.68,53.19,54.49,14916848,SBUX 2016-11-08,54.4,54.79,54.115,54.62,9351994,SBUX 2016-11-09,53.2,54.82,52.8,54.58,13727777,SBUX 2016-11-10,54.64,54.817,53.51,53.57,13621701,SBUX 2016-11-11,53.43,53.99,53.25,53.93,8436435,SBUX 2016-11-14,53.93,54.47,53.5,54.22,10489826,SBUX 2016-11-15,54.09,54.69,53.9,54.59,9588036,SBUX 2016-11-16,54.33,55.52,54.26,55.44,10779155,SBUX 2016-11-17,55.215,55.9,55.06,55.85,8744504,SBUX 2016-11-18,55.72,56.12,55.42,55.77,8740953,SBUX 2016-11-21,55.51,56.16,55.51,56.1,8004000,SBUX 2016-11-22,56.32,57.15,55.88,57.12,10268720,SBUX 2016-11-23,56.91,57.64,56.9,57.59,8183628,SBUX 2016-11-25,57.7,57.7,57.255,57.43,3228848,SBUX 2016-11-28,57.0,57.86,56.76,57.59,8750925,SBUX 2016-11-29,57.64,58.21,57.5,58.17,10582850,SBUX 2016-11-30,58.19,58.25,57.86,57.97,9527959,SBUX 2016-12-01,57.34,58.52,57.2,58.51,12381607,SBUX 2016-12-02,56.648999999999994,57.75,56.57,57.21,16869957,SBUX 2016-12-05,56.96,57.84,56.96,57.5,7701167,SBUX 2016-12-06,57.66,57.7,57.14,57.44,7035674,SBUX 2016-12-07,57.54,58.85,57.45,58.76,9094812,SBUX 2016-12-08,59.0,59.25,58.4118,58.65,7972498,SBUX 2016-12-09,58.92,58.95,58.43,58.75,7091577,SBUX 2016-12-12,58.54,58.79,58.34,58.77,7736198,SBUX 2016-12-13,58.99,59.54,58.66,59.31,8878080,SBUX 2016-12-14,59.03,59.25,58.6,58.75,9022867,SBUX 2016-12-15,57.9675,58.21,57.52,57.71,11837756,SBUX 2016-12-16,58.01,58.07,57.56,57.66,10611461,SBUX 2016-12-19,57.44,57.98,57.44,57.65,6433824,SBUX 2016-12-20,57.81,58.06,57.32,57.7,4888284,SBUX 2016-12-21,57.5,57.87,57.41,57.44,5380537,SBUX 2016-12-22,57.31,57.4,56.72,57.11,6777656,SBUX 2016-12-23,57.29,57.36,56.89,57.01,4298476,SBUX 2016-12-27,56.99,57.3869,56.81,56.86,4186157,SBUX 2016-12-28,56.8,56.9,56.25,56.35,5548726,SBUX 2016-12-29,56.35,56.47,56.135,56.32,3781721,SBUX 2016-12-30,56.28,56.45,55.4,55.52,8344508,SBUX 2017-01-03,55.91,55.95,55.04,55.35,7809307,SBUX 2017-01-04,55.56,56.195,55.38,55.99,7796290,SBUX 2017-01-05,56.08,56.53,55.8099,56.46,7602321,SBUX 2017-01-06,56.63,57.27,56.08,57.13,8587812,SBUX 2017-01-09,57.26,58.335,57.25,58.2,12640515,SBUX 2017-01-10,58.22,58.26,57.83,57.88,6672024,SBUX 2017-01-11,57.8,58.12,57.59,58.1,6027960,SBUX 2017-01-12,58.0,58.13,57.64,58.03,4733015,SBUX 2017-01-13,58.03,58.1,57.65,57.85,4745840,SBUX 2017-01-17,57.62,58.25,57.41,58.0,5734666,SBUX 2017-01-18,58.32,58.58,58.03,58.45,7375725,SBUX 2017-01-19,58.31,58.45,57.715,57.89,7850480,SBUX 2017-01-20,58.14,58.2,57.41,57.66,7651562,SBUX 2017-01-23,57.42,57.9,57.15,57.76,6814368,SBUX 2017-01-24,57.93,58.5,57.76,58.44,10704103,SBUX 2017-01-25,58.67,58.93,58.45,58.7,7124547,SBUX 2017-01-26,58.7,59.0,58.26,58.46,12382416,SBUX 2017-01-27,55.75,56.59,55.65,56.12,28884899,SBUX 2017-01-30,56.0,56.24,55.58,55.9,13322010,SBUX 2017-01-31,55.8,55.87,54.88,55.22,14307985,SBUX 2017-02-01,55.49,55.5,53.81,53.9,18796871,SBUX 2017-02-02,54.04,54.39,53.85,53.87,15289650,SBUX 2017-02-03,54.21,55.1,54.01,55.06,14161693,SBUX 2017-02-06,55.01,55.75,54.9,55.73,13029829,SBUX 2017-02-07,55.79,55.84,55.1801,55.24,9910498,SBUX 2017-02-08,55.19,55.4957,55.1,55.22,11681938,SBUX 2017-02-09,55.23,56.12,55.21,55.81,11106757,SBUX 2017-02-10,55.73,56.395,55.56,56.22,11178950,SBUX 2017-02-13,56.5,56.66,56.03,56.11,8027939,SBUX 2017-02-14,56.02,56.61,56.02,56.58,8865947,SBUX 2017-02-15,56.56,56.88,56.305,56.86,6967179,SBUX 2017-02-16,56.96,56.99,56.53,56.73,8524519,SBUX 2017-02-17,56.8,57.57,56.71,57.35,11008366,SBUX 2017-02-21,57.41,57.81,57.4,57.54,8289185,SBUX 2017-02-22,57.52,57.85,57.35,57.57,7876599,SBUX 2017-02-23,57.6,57.79,57.39,57.64,7178627,SBUX 2017-02-24,57.61,57.71,57.145,57.48,7806190,SBUX 2017-02-27,57.24,57.3,56.66,56.78,7702400,SBUX 2017-02-28,56.71,57.06,56.55,56.87,8750655,SBUX 2017-03-01,57.27,57.4,56.94,57.14,7197973,SBUX 2017-03-02,57.07,57.19,56.85,57.12,6595418,SBUX 2017-03-03,56.7,57.26,56.7,57.1,7738064,SBUX 2017-03-06,56.78,56.81,56.33,56.68,9159983,SBUX 2017-03-07,56.58,56.75,56.02,56.2,10890313,SBUX 2017-03-08,56.15,56.35,55.54,55.74,13061632,SBUX 2017-03-09,55.75,55.8,54.81,55.19,17844248,SBUX 2017-03-10,55.39,55.4,54.415,54.53,13886431,SBUX 2017-03-13,54.57,54.8847,54.4,54.63,9090230,SBUX 2017-03-14,54.62,54.74,54.19,54.27,7892888,SBUX 2017-03-15,54.39,54.65,54.09,54.54,8712006,SBUX 2017-03-16,54.85,54.985,54.66,54.8,8074278,SBUX 2017-03-17,55.04,56.13,54.95,55.78,15822141,SBUX 2017-03-20,55.87,56.05,55.51,55.81,7948425,SBUX 2017-03-21,56.05,56.45,55.485,55.54,8030642,SBUX 2017-03-22,55.68,56.04,55.51,55.89,8452070,SBUX 2017-03-23,56.15,56.425,55.78,55.85,7357207,SBUX 2017-03-24,56.11,57.38,55.9,56.81,15763000,SBUX 2017-03-27,56.66,57.45,56.46,57.23,8861799,SBUX 2017-03-28,57.1,57.52,57.025,57.35,8331644,SBUX 2017-03-29,57.17,57.85,57.13,57.54,7001635,SBUX 2017-03-30,57.45,58.3,57.42,58.16,8677916,SBUX 2017-03-31,58.105,58.66,58.06,58.39,9156707,SBUX 2017-04-03,58.28,58.47,57.89,58.44,8989831,SBUX 2017-04-04,58.37,58.41,58.01,58.32,6474781,SBUX 2017-04-05,57.96,59.27,57.81,58.22,13656221,SBUX 2017-04-06,58.13,58.36,57.73,57.92,9112533,SBUX 2017-04-07,57.8,58.25,57.55,58.02,6773750,SBUX 2017-04-10,58.0,58.21,57.73,57.95,5266312,SBUX 2017-04-11,57.74,58.16,57.38,57.88,5855091,SBUX 2017-04-12,57.88,57.895,57.48,57.58,5450298,SBUX 2017-04-13,57.61,57.79,57.45,57.51,4871717,SBUX 2017-04-17,57.68,58.25,57.68,58.08,5626042,SBUX 2017-04-18,57.59,58.48,57.59,58.35,5449699,SBUX 2017-04-19,58.6,59.49,58.5,59.04,12000639,SBUX 2017-04-20,59.71,60.335,59.56,60.08,12445862,SBUX 2017-04-21,60.2,60.69,60.15,60.61,8799985,SBUX 2017-04-24,61.0,61.38,60.89,61.11,10721276,SBUX 2017-04-25,60.65,61.21,59.9237,60.96,11031475,SBUX 2017-04-26,61.23,61.75,60.98,61.56,8525419,SBUX 2017-04-27,61.63,61.94,61.19,61.3,15285342,SBUX 2017-04-28,59.41,60.18,58.99,60.06,25046130,SBUX 2017-05-01,60.0,60.6,59.7619,60.18,10910341,SBUX 2017-05-02,60.15,60.52,60.04,60.5,9152088,SBUX 2017-05-03,60.52,60.665,60.255,60.59,7706367,SBUX 2017-05-04,60.65,60.85,60.39,60.83,6874286,SBUX 2017-05-05,60.86,60.99,60.58,60.95,6443309,SBUX 2017-05-08,61.07,61.07,60.7,60.94,5588371,SBUX 2017-05-09,60.58,61.08,60.57,60.98,5806562,SBUX 2017-05-10,60.88,60.98,60.21,60.66,7198414,SBUX 2017-05-11,60.45,60.51,60.03,60.27,5516893,SBUX 2017-05-12,60.28,60.34,59.83,59.93,5647531,SBUX 2017-05-15,60.42,60.49,60.125,60.45,5904094,SBUX 2017-05-16,60.68,60.7,59.88,59.98,6303480,SBUX 2017-05-17,59.97,60.3239,59.55,59.73,7581230,SBUX 2017-05-18,59.73,59.94,58.87,59.82,8602411,SBUX 2017-05-19,59.94,61.92,59.94,61.36,12530995,SBUX 2017-05-22,61.03,61.72,61.03,61.23,6392124,SBUX 2017-05-23,61.4,61.5,60.86,61.15,5622524,SBUX 2017-05-24,61.4,62.0,60.94,61.89,7283789,SBUX 2017-05-25,62.01,63.11,61.9,62.9,8931804,SBUX 2017-05-26,63.01,63.42,62.97,63.3,6097990,SBUX 2017-05-30,63.07,63.41,63.01,63.26,7094586,SBUX 2017-05-31,63.27,63.61,63.08,63.61,7314634,SBUX 2017-06-01,63.51,63.82,63.35,63.75,6058263,SBUX 2017-06-02,63.88,64.68,63.7,64.57,7840374,SBUX 2017-06-05,64.85,64.87,64.18,64.27,6809284,SBUX 2017-06-06,64.22,64.35,64.05,64.16,5448439,SBUX 2017-06-07,64.13,64.295,63.34,63.5,8364994,SBUX 2017-06-08,63.44,63.58,62.02,62.24,11289266,SBUX 2017-06-09,62.37,62.48,61.8745,62.19,11240487,SBUX 2017-06-12,61.8,61.99,60.63,61.29,11071593,SBUX 2017-06-13,61.12,61.255,60.59,60.92,9384906,SBUX 2017-06-14,60.67,60.82,59.86,60.27,9703332,SBUX 2017-06-15,59.92,60.28,59.51,60.09,7515980,SBUX 2017-06-16,59.89,60.16,59.47,60.14,11522438,SBUX 2017-06-19,60.35,61.0,60.11,60.9,6778024,SBUX 2017-06-20,60.98,61.0,59.7,59.86,6985666,SBUX 2017-06-21,60.0,60.31,59.71,59.96,6027647,SBUX 2017-06-22,60.09,60.1,59.4,59.51,5602002,SBUX 2017-06-23,59.76,60.17,59.58,59.81,6469495,SBUX 2017-06-26,60.02,60.15,59.33,59.64,5674637,SBUX 2017-06-27,59.54,59.69,58.81,58.96,5652429,SBUX 2017-06-28,59.06,59.25,58.8,59.18,5419169,SBUX 2017-06-29,59.17,59.18,57.955,58.36,7421177,SBUX 2017-06-30,58.68,58.95,58.29,58.31,8117066,SBUX 2017-07-03,58.9,58.99,58.25,58.25,4575268,SBUX 2017-07-05,58.43,58.5,57.8,57.94,7773566,SBUX 2017-07-06,57.8,57.92,57.4,57.6,8886648,SBUX 2017-07-07,57.79,58.36,57.54,58.04,7278250,SBUX 2017-07-10,58.18,58.35,57.75,57.81,4832094,SBUX 2017-07-11,57.91,58.08,57.53,57.9,5422330,SBUX 2017-07-12,58.21,58.71,58.02,58.54,7141916,SBUX 2017-07-13,58.8,58.87,58.12,58.38,8460245,SBUX 2017-07-14,58.4,58.92,58.28,58.76,5441377,SBUX 2017-07-17,58.73,58.87,58.28,58.33,6774471,SBUX 2017-07-18,58.12,58.58,57.69,58.21,7857464,SBUX 2017-07-19,58.15,58.41,57.9,58.11,8203557,SBUX 2017-07-20,58.41,58.84,58.0,58.03,10546701,SBUX 2017-07-21,57.92,58.26,57.83,57.98,6717235,SBUX 2017-07-24,58.0,58.25,57.93,58.02,7442589,SBUX 2017-07-25,58.215,58.84,57.98,58.55,7933137,SBUX 2017-07-26,58.8,58.84,57.7847,57.94,8775889,SBUX 2017-07-27,58.25,59.66,57.93,59.5,23286716,SBUX 2017-07-28,55.23,55.96,53.41,54.0,53454789,SBUX 2017-07-31,54.48,54.68,53.95,53.98,20299407,SBUX 2017-08-01,54.57,54.79,53.97,54.73,18120912,SBUX 2017-08-02,54.75,55.45,54.6702,55.43,14764854,SBUX 2017-08-03,55.64,56.12,55.5,55.68,13331459,SBUX 2017-08-04,55.97,56.05,55.09,55.44,9179779,SBUX 2017-08-07,55.6,55.93,55.42,55.63,7253947,SBUX 2017-08-08,55.55,55.58,54.36,54.52,11095259,SBUX 2017-08-09,54.43,54.43,53.3,53.74,16717719,SBUX 2017-08-10,53.52,53.7453,52.99,53.07,13235301,SBUX 2017-08-11,53.05,53.4,53.05,53.18,9235033,SBUX 2017-08-14,53.6,53.6,53.18,53.22,7426467,SBUX 2017-08-15,53.41,53.42,52.89,53.15,6674597,SBUX 2017-08-16,53.26,53.92,53.25,53.5,7667081,SBUX 2017-08-17,53.32,53.78,52.99,53.04,7451679,SBUX 2017-08-18,52.92,53.085,52.58,52.7,10370499,SBUX 2017-08-21,53.14,53.52,52.8,53.15,12753196,SBUX 2017-08-22,53.49,54.74,53.39,54.45,14547613,SBUX 2017-08-23,53.96,54.1,53.65,54.08,11838533,SBUX 2017-08-24,54.26,54.445,53.77,53.94,8716699,SBUX 2017-08-25,54.62,54.69,54.19,54.36,8601120,SBUX 2017-08-28,54.54,54.58,54.02,54.4,6643652,SBUX 2017-08-29,54.04,54.29,54.0,54.1,6212403,SBUX 2017-08-30,54.04,54.62,54.04,54.52,5596567,SBUX 2017-08-31,54.68,54.99,54.57,54.86,8245287,SBUX 2017-09-01,54.9,55.155,54.88,54.93,7696302,SBUX 2017-09-05,54.95,55.2,54.6,55.13,9178048,SBUX 2017-09-06,55.12,55.275,54.13,54.31,11372298,SBUX 2017-09-07,54.42,54.675,53.25,53.47,13801890,SBUX 2017-09-08,53.39,53.78,53.05,53.49,11774483,SBUX 2017-09-11,53.79,54.13,53.61,54.02,9314079,SBUX 2017-09-12,53.98,54.05,53.33,53.54,10339446,SBUX 2017-09-13,53.55,54.72,53.4866,54.29,12787883,SBUX 2017-09-14,54.38,54.71,54.1,54.53,8260770,SBUX 2017-09-15,54.44,54.79,54.16,54.67,10744783,SBUX 2017-09-18,54.8,54.97,54.57,54.69,6348360,SBUX 2017-09-19,54.84,54.88,54.56,54.62,5187121,SBUX 2017-09-20,54.58,55.18,54.58,55.15,7080035,SBUX 2017-09-21,55.05,55.17,54.86,55.01,7178462,SBUX 2017-09-22,55.05,55.2,54.86,55.09,6950029,SBUX 2017-09-25,54.98,55.22,54.7,54.95,10242655,SBUX 2017-09-26,55.06,55.22,54.795,55.13,8021851,SBUX 2017-09-27,55.25,55.6,54.96,54.99,8671309,SBUX 2017-09-28,54.81,55.08,54.45,54.5,7607473,SBUX 2017-09-29,54.31,54.47,53.36,53.71,11944370,SBUX 2017-10-02,53.86,54.04,53.75,53.81,5955980,SBUX 2017-10-03,54.0,54.34,53.9,53.99,6137069,SBUX 2017-10-04,54.12,54.2,53.69,53.93,5569058,SBUX 2017-10-05,54.06,54.97,53.92,54.6,7994274,SBUX 2017-10-06,54.51,55.45,54.245,55.17,10576278,SBUX 2017-10-09,55.37,55.49,54.96,55.02,5822893,SBUX 2017-10-10,55.1,55.8492,55.08,55.42,6573918,SBUX 2017-10-11,55.46,55.8,55.26,55.64,8881897,SBUX 2017-10-12,55.67,56.27,55.309,55.97,7234267,SBUX 2017-10-13,56.0,56.43,55.61,55.72,6231132,SBUX 2017-10-16,55.67,55.8,54.89,54.91,7256893,SBUX 2017-10-17,54.86,55.23,54.29,54.51,11227337,SBUX 2017-10-18,54.46,55.43,54.22,55.21,8299509,SBUX 2017-10-19,55.08,55.5423,54.9,55.4,5720179,SBUX 2017-10-20,55.31,55.4,54.175,54.57,11741092,SBUX 2017-10-23,54.77,54.935,54.18,54.27,10111071,SBUX 2017-10-24,54.37,54.56,54.02,54.28,7818490,SBUX 2017-10-25,54.24,54.39,53.66,54.16,8281219,SBUX 2017-10-26,54.5,55.75,54.5,54.91,12211440,SBUX 2017-10-27,54.83,55.12,54.68,54.88,9922611,SBUX 2017-10-30,54.79,55.23,54.4,55.17,6430949,SBUX 2017-10-31,55.16,55.305,54.7,54.84,8857829,SBUX 2017-11-01,55.1,55.59,54.94,55.13,7189764,SBUX 2017-11-02,55.15,55.39,54.77,54.87,16879022,SBUX 2017-11-03,54.16,56.94,54.05,56.03,28773774,SBUX 2017-11-06,55.99,56.69,55.63,56.57,10835659,SBUX 2017-11-07,56.33,57.29,56.33,57.22,11167447,SBUX 2017-11-08,57.03,58.01,57.0,57.91,13533654,SBUX 2017-11-09,57.2,57.66,56.785,57.36,14758907,SBUX 2017-11-10,57.36,57.39,56.54,57.04,7930318,SBUX 2017-11-13,56.81,57.14,56.55,56.64,7648192,SBUX 2017-11-14,56.47,57.0,56.41,56.93,7758215,SBUX 2017-11-15,56.82,57.06,56.51,56.7,8880505,SBUX 2017-11-16,56.92,57.42,56.75,57.24,8310611,SBUX 2017-11-17,57.24,57.43,56.84,56.93,6311519,SBUX 2017-11-20,56.67,57.05,56.58,56.81,6360086,SBUX 2017-11-21,56.96,57.56,56.88,57.26,6284259,SBUX 2017-11-22,57.07,57.18,56.795,57.14,7309073,SBUX 2017-11-24,57.19,57.19,56.71,56.8,3479177,SBUX 2017-11-27,56.83,56.9207,55.751000000000005,55.91,10580296,SBUX 2017-11-28,56.03,56.72,55.9101,56.66,9734431,SBUX 2017-11-29,56.71,57.68,56.7,57.51,10017914,SBUX 2017-11-30,57.64,58.1399,57.47,57.82,11509224,SBUX 2017-12-01,57.5,57.71,56.461000000000006,57.32,12756391,SBUX 2017-12-04,57.54,59.19,57.5,58.76,13302050,SBUX 2017-12-05,59.25,59.68,58.91,59.34,11295644,SBUX 2017-12-06,59.38,59.83,59.23,59.28,8458198,SBUX 2017-12-07,59.12,59.275,58.761,59.14,6033792,SBUX 2017-12-08,58.52,58.845,58.1,58.61,9950491,SBUX 2017-12-11,58.39,59.35,58.29,59.07,10286560,SBUX 2017-12-12,58.99,59.36,58.87,59.27,6042917,SBUX 2017-12-13,59.44,59.89,59.3,59.49,7726299,SBUX 2017-12-14,59.73,60.05,59.44,59.7,8946111,SBUX 2017-12-15,59.25,59.37,58.1574,58.29,22595018,SBUX 2017-12-18,58.44,58.786,57.89,58.03,8751620,SBUX 2017-12-19,58.13,58.575,57.93,58.01,7946435,SBUX 2017-12-20,58.22,58.29,57.69,57.73,7188717,SBUX 2017-12-21,57.94,58.145,57.49,57.58,5974474,SBUX 2017-12-22,57.57,57.91,57.12,57.3,7148723,SBUX 2017-12-26,57.27,57.5799,57.05,57.14,5546208,SBUX 2017-12-27,57.19,57.65,57.18,57.27,4812173,SBUX 2017-12-28,57.47,58.0,57.3,57.81,5044505,SBUX 2017-12-29,57.74,57.97,57.42,57.43,5365646,SBUX 2018-01-02,57.95,58.21,57.48,57.63,7215978,SBUX 2018-01-03,57.93,58.96,57.8,58.71,7478356,SBUX 2018-01-04,58.99,59.41,58.73,58.93,5775921,SBUX 2018-01-05,59.25,59.69,59.07,59.61,6047686,SBUX 2018-01-08,59.48,59.67,58.56,59.31,6335782,SBUX 2018-01-09,59.2,59.47,58.86,59.18,5233353,SBUX 2018-01-10,59.24,60.13,58.855,59.82,8656454,SBUX 2018-01-11,59.76,60.02,59.4541,60.0,5806282,SBUX 2018-01-12,60.4,60.51,59.65,60.4,6989075,SBUX 2018-01-16,60.33,61.1,60.3,60.56,8040748,SBUX 2018-01-17,61.0,61.33,60.52,60.66,8433771,SBUX 2018-01-18,61.43,61.44,60.735,61.09,9170903,SBUX 2018-01-19,61.21,61.46,60.95,61.26,8361853,SBUX 2018-01-22,61.04,61.47,60.77,61.41,11945783,SBUX 2018-01-23,61.32,61.91,61.14,61.69,10806783,SBUX 2018-01-24,61.51,61.94,60.2326,60.83,11911867,SBUX 2018-01-25,61.03,61.2,60.4,60.55,16225618,SBUX 2018-01-26,57.94,58.17,56.55,57.99,51851690,SBUX 2018-01-29,57.55,58.35,56.91,57.02,18899867,SBUX 2018-01-30,56.96,57.54,56.74,57.19,14341155,SBUX 2018-01-31,57.23,57.45,56.7,56.81,13118364,SBUX 2018-02-01,56.28,56.42,55.89,56.0,14690146,SBUX 2018-02-02,55.9,56.32,55.7,55.77,15358909,SBUX 2018-02-05,55.53,56.26,54.57,54.69,16059955,SBUX 2018-02-06,53.685,56.06,53.56,55.61,17415065,SBUX 2018-02-07,55.08,55.43,54.44,54.46,13927022,SBUX ================================================ FILE: tf2.0/xor3d.py ================================================ import numpy as np import matplotlib.pyplot as plt from mpl_toolkits.mplot3d import Axes3D def get_label(x, i1, i2, i3): # x = sequence if x[i1] < 0 and x[i2] < 0 and x[i3] < 0: return 1 if x[i1] < 0 and x[i2] > 0 and x[i3] > 0: return 1 if x[i1] > 0 and x[i2] < 0 and x[i3] > 0: return 1 if x[i1] > 0 and x[i2] > 0 and x[i3] < 0: return 1 return 0 N = 2000 X = np.random.random((N, 3))*2 - 1 Y = np.zeros(N) for i in range(N): x = X[i] y = get_label(x, 0, 1, 2) Y[i] = y fig = plt.figure() ax = fig.add_subplot(111, projection='3d') ax.scatter(X[:,0], X[:,1], X[:,2], c=Y) plt.show() ================================================ FILE: timeseries/WHERE ARE THE NOTEBOOKS.txt ================================================ As stated in the "where to get the code" / "where to get the notebooks" lecture, the notebooks are NOT on Github. If you missed this, please review the lecture for the actual location of the notebooks. If, after reviewing it, you still need assistance, please contact info@deeplearningcourses.com. ================================================ FILE: timeseries/extra_reading.txt ================================================ Estimating Box-Cox power transformation parameter via goodness of fit tests https://arxiv.org/pdf/1401.3812.pdf Linear Regression https://deeplearningcourses.com/c/data-science-linear-regression-in-python/ Logistic Regression https://deeplearningcourses.com/c/data-science-logistic-regression-in-python/ Support Vector Machines https://deeplearningcourses.com/c/support-vector-machines-in-python Random Forests https://deeplearningcourses.com/c/machine-learning-in-python-random-forest-adaboost Deep Learning and Tensorflow 2 https://deeplearningcourses.com/c/deep-learning-tensorflow-2 Gaussian Processes for Regression and Classification https://www.cs.toronto.edu/~radford/ftp/val6gp.pdf How Does Backpropagation Work? (In-Depth) https://deeplearningcourses.com/c/data-science-deep-learning-in-python/ https://deeplearningcourses.com/c/data-science-deep-learning-in-theano-tensorflow/ Forecasting at Scale (Facebook Prophet) https://peerj.com/preprints/3190.pdf Statistical and Machine Learning forecasting methods: Concerns and ways forward https://journals.plos.org/plosone/article%3Fid%3D10.1371/journal.pone.0194889 ================================================ FILE: transformers/WHERE ARE THE NOTEBOOKS.txt ================================================ As stated in the "where to get the code" / "where to get the notebooks" lecture, the notebooks are NOT on Github. If you missed this, please review the lecture for the actual location of the notebooks. If, after reviewing it, you still need assistance, please contact info@deeplearningcourses.com. ================================================ FILE: transformers/extra_reading.txt ================================================ Attention Is All You Need https://arxiv.org/abs/1706.03762 BERT: Pre-training of Deep Bidirectional Transformers for Language Understanding https://arxiv.org/abs/1810.04805v2 Improving Language Understanding by Generative Pre-Training (GPT) https://s3-us-west-2.amazonaws.com/openai-assets/research-covers/language-unsupervised/language_understanding_paper.pdf Improving Language Understanding with Unsupervised Learning https://openai.com/blog/language-unsupervised/ Language Models are Unsupervised Multitask Learners (GPT-2) https://d4mucfpksywv.cloudfront.net/better-language-models/language_models_are_unsupervised_multitask_learners.pdf Better Language Models and Their Implications https://openai.com/blog/better-language-models/ Language Models are Few-Shot Learners (GPT-3) https://arxiv.org/abs/2005.14165 List of Hugging Face Pipelines for NLP https://lazyprogrammer.me/list-of-hugging-face-pipelines-for-nlp/ BitFit: Simple Parameter-efficient Fine-tuning for Transformer-based Masked Language-models https://arxiv.org/abs/2106.10199 Translation Datasets https://opus.nlpl.eu/KDE4.php Layer Normalization https://arxiv.org/abs/1607.06450 ================================================ FILE: unsupervised_class/__init__.py ================================================ ================================================ FILE: unsupervised_class/books.py ================================================ # https://deeplearningcourses.com/c/cluster-analysis-unsupervised-machine-learning-python # https://www.udemy.com/cluster-analysis-unsupervised-machine-learning-python from __future__ import print_function, division from future.utils import iteritems from builtins import range, input # Note: you may need to update your version of future # sudo pip install -U future import networkx as nx import nltk import numpy as np import matplotlib.pyplot as plt from nltk.stem import WordNetLemmatizer from sklearn.decomposition import PCA from sklearn.manifold import TSNE, LocallyLinearEmbedding as LLE from sklearn.feature_extraction.text import TfidfTransformer wordnet_lemmatizer = WordNetLemmatizer() titles = [line.rstrip() for line in open('../nlp_class/all_book_titles.txt')] # copy tokenizer from sentiment example stopwords = set(w.rstrip() for w in open('../nlp_class/stopwords.txt')) # add more stopwords specific to this problem stopwords = stopwords.union({ 'introduction', 'edition', 'series', 'application', 'approach', 'card', 'access', 'package', 'plus', 'etext', 'brief', 'vol', 'fundamental', 'guide', 'essential', 'printed', 'third', 'second', 'fourth', }) def my_tokenizer(s): s = s.lower() # downcase tokens = nltk.tokenize.word_tokenize(s) # split string into words (tokens) tokens = [t for t in tokens if len(t) > 2] # remove short words, they're probably not useful tokens = [wordnet_lemmatizer.lemmatize(t) for t in tokens] # put words into base form tokens = [t for t in tokens if t not in stopwords] # remove stopwords tokens = [t for t in tokens if not any(c.isdigit() for c in t)] # remove any digits, i.e. "3rd edition" return tokens # create a word-to-index map so that we can create our word-frequency vectors later # let's also save the tokenized versions so we don't have to tokenize again later word_index_map = {} current_index = 0 all_tokens = [] all_titles = [] index_word_map = [] print("num titles:", len(titles)) print("first title:", titles[0]) for title in titles: try: title = title.encode('ascii', 'ignore') # this will throw exception if bad characters title = title.decode('utf-8') all_titles.append(title) tokens = my_tokenizer(title) all_tokens.append(tokens) for token in tokens: if token not in word_index_map: word_index_map[token] = current_index current_index += 1 index_word_map.append(token) except Exception as e: print(e) # now let's create our input matrices - just indicator variables for this example - works better than proportions def tokens_to_vector(tokens): x = np.zeros(len(word_index_map)) for t in tokens: i = word_index_map[t] x[i] += 1 return x N = len(all_tokens) D = len(word_index_map) X = np.zeros((D, N)) # terms will go along rows, documents along columns i = 0 for tokens in all_tokens: X[:,i] = tokens_to_vector(tokens) i += 1 def d(u, v): diff = u - v return diff.dot(diff) def cost(X, R, M): cost = 0 for k in range(len(M)): # method 1 # for n in range(len(X)): # cost += R[n,k]*d(M[k], X[n]) # method 2 diff = X - M[k] sq_distances = (diff * diff).sum(axis=1) cost += (R[:,k] * sq_distances).sum() return cost def plot_k_means(X, K, index_word_map, max_iter=20, beta=1.0, show_plots=True): N, D = X.shape M = np.zeros((K, D)) R = np.zeros((N, K)) exponents = np.empty((N, K)) # initialize M to random for k in range(K): M[k] = X[np.random.choice(N)] costs = np.zeros(max_iter) for i in range(max_iter): # step 1: determine assignments / resposibilities # is this inefficient? for k in range(K): for n in range(N): # R[n,k] = np.exp(-beta*d(M[k], X[n])) / np.sum( np.exp(-beta*d(M[j], X[n])) for j in range(K) ) exponents[n,k] = np.exp(-beta*d(M[k], X[n])) R = exponents / exponents.sum(axis=1, keepdims=True) # step 2: recalculate means for k in range(K): M[k] = R[:,k].dot(X) / R[:,k].sum() costs[i] = cost(X, R, M) if i > 0: if np.abs(costs[i] - costs[i-1]) < 10e-5: break if show_plots: # plt.plot(costs) # plt.title("Costs") # plt.show() random_colors = np.random.random((K, 3)) colors = R.dot(random_colors) plt.figure(figsize=(80.0, 80.0)) plt.scatter(X[:,0], X[:,1], s=300, alpha=0.9, c=colors) annotate1(X, index_word_map) # plt.show() plt.savefig("test.png") # print out the clusters hard_responsibilities = np.argmax(R, axis=1) # is an N-size array of cluster identities # let's "reverse" the order so it's cluster identity -> word index cluster2word = {} for i in range(len(hard_responsibilities)): word = index_word_map[i] cluster = hard_responsibilities[i] if cluster not in cluster2word: cluster2word[cluster] = [] cluster2word[cluster].append(word) # print out the words grouped by cluster for cluster, wordlist in cluster2word.items(): print("cluster", cluster, "->", wordlist) return M, R # def annotate2(X, index_word_map, k=0.1): # N, D = X.shape # # create graph # G = nx.DiGraph() # data_nodes = [] # init_pos = {} # for i in range(N): # x, y = X[i] # label = index_word_map[i] # data_str = 'data_{0}'.format(label) # G.add_node(data_str) # G.add_node(label) # G.add_edge(label, data_str) # data_nodes.append(data_str) # init_pos[data_str] = (x, y) # init_pos[label] = (x, y) # pos = nx.spring_layout(G, pos=init_pos, fixed=data_nodes, k=k) # # undo spring_layout's rescaling # pos_after = np.vstack([pos[d] for d in data_nodes]) # pos_before = np.vstack([init_pos[d] for d in data_nodes]) # scale, shift_x = np.polyfit(pos_after[:,0], pos_before[:,0], 1) # scale, shift_y = np.polyfit(pos_after[:,1], pos_before[:,1], 1) # shift = np.array([shift_x, shift_y]) # for key, val in pos.items(): # pos[key] = (val*scale) + shift # for label, data_str in G.edges(): # plt.annotate( # label, # xy=pos[data_str], xycoords='data', # xytext=pos[label], textcoords='data', # arrowprops=dict(arrowstyle="->", color='black'), # ) # # expand limits # all_pos = np.vstack(pos.values()) # x_span, y_span = np.ptp(all_pos, axis=0) # mins = np.min(all_pos-x_span*0.15, 0) # maxs = np.max(all_pos+y_span*0.15, 0) # plt.xlim([mins[0], maxs[0]]) # plt.ylim([mins[1], maxs[1]]) def annotate1(X, index_word_map, eps=0.1): N, D = X.shape placed = np.empty((N, D)) for i in range(N): x, y = X[i] # if x, y is too close to something already plotted, move it close = [] x, y = X[i] for retry in range(3): for j in range(i): diff = np.array([x, y]) - placed[j] # if something is close, append it to the close list if diff.dot(diff) < eps: close.append(placed[j]) if close: # then the close list is not empty x += (np.random.randn() + 0.5) * (1 if np.random.rand() < 0.5 else -1) y += (np.random.randn() + 0.5) * (1 if np.random.rand() < 0.5 else -1) close = [] # so we can start again with an empty list else: # nothing close, let's break break placed[i] = (x, y) plt.annotate( s=index_word_map[i], xy=(X[i,0], X[i,1]), xytext=(x, y), arrowprops={ 'arrowstyle' : '->', 'color' : 'black', } ) print("vocab size:", current_index) transformer = TfidfTransformer() X = transformer.fit_transform(X).toarray() reducer = TSNE() Z = reducer.fit_transform(X) plot_k_means(Z[:,:2], current_index//10, index_word_map, show_plots=True) ================================================ FILE: unsupervised_class/choose_k.py ================================================ # https://deeplearningcourses.com/c/cluster-analysis-unsupervised-machine-learning-python # https://www.udemy.com/cluster-analysis-unsupervised-machine-learning-python from __future__ import print_function, division from future.utils import iteritems from builtins import range, input # Note: you may need to update your version of future # sudo pip install -U future import numpy as np import matplotlib.pyplot as plt from kmeans import plot_k_means, get_simple_data, cost def main(): X = get_simple_data() plt.scatter(X[:,0], X[:,1]) plt.show() costs = np.empty(10) costs[0] = None for k in range(1, 10): M, R = plot_k_means(X, k, show_plots=False) c = cost(X, R, M) costs[k] = c plt.plot(costs) plt.title("Cost vs K") plt.show() if __name__ == '__main__': main() ================================================ FILE: unsupervised_class/evolution.py ================================================ # https://deeplearningcourses.com/c/cluster-analysis-unsupervised-machine-learning-python # https://www.udemy.com/cluster-analysis-unsupervised-machine-learning-python from __future__ import print_function, division from builtins import range # Note: you may need to update your version of future # sudo pip install -U future import random import numpy as np import scipy.spatial.distance as ssd import matplotlib.pyplot as plt from scipy.cluster.hierarchy import dendrogram, linkage # our genetic code code = ['A', 'T', 'C', 'G'] # convert list of integers to corresponding letters def to_code(a): return [code[i] for i in a] # distance between 2 DNA strands def dist(a, b): return sum(i != j for i, j in zip(a, b)) # generate offspring by modifying some characters in the code def generate_offspring(parent): return [maybe_modify(c) for c in parent] # modify letter c with probability ~1/1000 def maybe_modify(c): if np.random.random() < 0.001: return np.random.choice(code) return c # create 3 distinct ancestors p1 = to_code(np.random.randint(4, size=1000)) p2 = to_code(np.random.randint(4, size=1000)) p3 = to_code(np.random.randint(4, size=1000)) # create offspring num_generations = 99 max_offspring_per_generation = 1000 current_generation = [p1, p2, p3] for i in range(num_generations): next_generation = [] for parent in current_generation: # each parent will have between 1 and 3 children num_offspring = np.random.randint(3) + 1 # generate the offspring for _ in range(num_offspring): child = generate_offspring(parent) next_generation.append(child) current_generation = next_generation # limit the number of offspring random.shuffle(current_generation) current_generation = current_generation[:max_offspring_per_generation] print("Finished creating generation %d / %d, size = %d" % (i + 2, num_generations + 1, len(current_generation))) # create distance matrix # note: you can also use scipy's pdist for this # but NOT sklearn's pairwise_distances function # which does not return a symmetric matrix N = len(current_generation) dist_matrix = np.zeros((N, N)) for i in range(N): for j in range(N): if i == j: continue elif j > i: a = current_generation[i] b = current_generation[j] dist_matrix[i,j] = dist(a, b) else: dist_matrix[i,j] = dist_matrix[j,i] dist_array = ssd.squareform(dist_matrix) Z = linkage(dist_array, 'ward') plt.title("Ward") dendrogram(Z) plt.show() Z = linkage(dist_array, 'single') plt.title("Single") dendrogram(Z) plt.show() Z = linkage(dist_array, 'complete') plt.title("Complete") dendrogram(Z) plt.show() ================================================ FILE: unsupervised_class/gmm.py ================================================ # https://deeplearningcourses.com/c/cluster-analysis-unsupervised-machine-learning-python # https://www.udemy.com/cluster-analysis-unsupervised-machine-learning-python from __future__ import print_function, division from future.utils import iteritems from builtins import range, input # Note: you may need to update your version of future # sudo pip install -U future import numpy as np import matplotlib.pyplot as plt from scipy.stats import multivariate_normal def gmm(X, K, max_iter=20, smoothing=1e-2): N, D = X.shape M = np.zeros((K, D)) R = np.zeros((N, K)) C = np.zeros((K, D, D)) pi = np.ones(K) / K # uniform # initialize M to random, initialize C to spherical with variance 1 for k in range(K): M[k] = X[np.random.choice(N)] C[k] = np.eye(D) lls = [] weighted_pdfs = np.zeros((N, K)) # we'll use these to store the PDF value of sample n and Gaussian k for i in range(max_iter): # step 1: determine assignments / resposibilities # this is the slow way # for k in range(K): # for n in range(N): # weighted_pdfs[n,k] = pi[k]*multivariate_normal.pdf(X[n], M[k], C[k]) # for k in range(K): # for n in range(N): # R[n,k] = weighted_pdfs[n,k] / weighted_pdfs[n,:].sum() # a faster way to do step 1: "vectorization" for k in range(K): weighted_pdfs[:,k] = pi[k]*multivariate_normal.pdf(X, M[k], C[k]) R = weighted_pdfs / weighted_pdfs.sum(axis=1, keepdims=True) # step 2: recalculate params for k in range(K): Nk = R[:,k].sum() pi[k] = Nk / N M[k] = R[:,k].dot(X) / Nk ## faster delta = X - M[k] # N x D Rdelta = np.expand_dims(R[:,k], -1) * delta # multiplies R[:,k] by each col. of delta - N x D C[k] = Rdelta.T.dot(delta) / Nk + np.eye(D)*smoothing # D x D ## slower # C[k] = np.sum(R[n,k]*np.outer(X[n] - M[k], X[n] - M[k]) for n in range(N)) / Nk + np.eye(D)*smoothing ll = np.log(weighted_pdfs.sum(axis=1)).sum() lls.append(ll) if i > 0: if np.abs(lls[i] - lls[i-1]) < 0.1: break plt.plot(lls) plt.title("Log-Likelihood") plt.show() random_colors = np.random.random((K, 3)) colors = R.dot(random_colors) plt.scatter(X[:,0], X[:,1], c=colors) plt.show() print("pi:", pi) print("means:", M) print("covariances:", C) return R def main(): # assume 3 means D = 2 # so we can visualize it more easily s = 4 # separation so we can control how far apart the means are mu1 = np.array([0, 0]) mu2 = np.array([s, s]) mu3 = np.array([0, s]) N = 2000 # number of samples X = np.zeros((N, D)) X[:1200, :] = np.random.randn(1200, D)*2 + mu1 X[1200:1800, :] = np.random.randn(600, D) + mu2 X[1800:, :] = np.random.randn(200, D)*0.5 + mu3 # what does it look like without clustering? plt.scatter(X[:,0], X[:,1]) plt.show() K = 3 gmm(X, K) if __name__ == '__main__': main() ================================================ FILE: unsupervised_class/gmm_mnist.py ================================================ # https://deeplearningcourses.com/c/cluster-analysis-unsupervised-machine-learning-python # https://www.udemy.com/cluster-analysis-unsupervised-machine-learning-python # data is from https://www.kaggle.com/c/digit-recognizer # each image is a D = 28x28 = 784 dimensional vector # there are N = 42000 samples # you can plot an image by reshaping to (28,28) and using plt.imshow() from __future__ import print_function, division from future.utils import iteritems from builtins import range, input # Note: you may need to update your version of future # sudo pip install -U future import numpy as np import pandas as pd import matplotlib.pyplot as plt # from kmeans import plot_k_means, get_simple_data from datetime import datetime # from gmm import gmm from sklearn.mixture import GaussianMixture from kmeans_mnist import get_data, purity, DBI def main(): X, Y = get_data(10000) print("Number of data points:", len(Y)) model = GaussianMixture(n_components=10) model.fit(X) M = model.means_ R = model.predict_proba(X) print("Purity:", purity(Y, R)) # max is 1, higher is better print("DBI:", DBI(X, M, R)) # lower is better if __name__ == "__main__": main() ================================================ FILE: unsupervised_class/hcluster.py ================================================ # https://deeplearningcourses.com/c/cluster-analysis-unsupervised-machine-learning-python # https://www.udemy.com/cluster-analysis-unsupervised-machine-learning-python from __future__ import print_function, division from future.utils import iteritems from builtins import range, input # Note: you may need to update your version of future # sudo pip install -U future import numpy as np import matplotlib.pyplot as plt from scipy.cluster.hierarchy import dendrogram, linkage def main(): D = 2 # so we can visualize it more easily s = 4 # separation so we can control how far apart the means are mu1 = np.array([0, 0]) mu2 = np.array([s, s]) mu3 = np.array([0, s]) N = 900 # number of samples X = np.zeros((N, D)) X[:300, :] = np.random.randn(300, D) + mu1 X[300:600, :] = np.random.randn(300, D) + mu2 X[600:, :] = np.random.randn(300, D) + mu3 Z = linkage(X, 'ward') print("Z.shape:", Z.shape) # Z has the format [idx1, idx2, dist, sample_count] # therefore, its size will be (N-1, 4) # from documentation: # A (n-1) by 4 matrix Z is returned. At the i-th iteration, # clusters with indices Z[i, 0] and Z[i, 1] are combined to # form cluster n + i. A cluster with an index less than n # corresponds to one of the original observations. # The distance between clusters Z[i, 0] and Z[i, 1] is given # by Z[i, 2]. The fourth value Z[i, 3] represents the number # of original observations in the newly formed cluster. plt.title("Ward") dendrogram(Z) plt.show() Z = linkage(X, 'single') plt.title("Single") dendrogram(Z) plt.show() Z = linkage(X, 'complete') plt.title("Complete") dendrogram(Z) plt.show() if __name__ == '__main__': main() ================================================ FILE: unsupervised_class/kmeans.py ================================================ # https://deeplearningcourses.com/c/cluster-analysis-unsupervised-machine-learning-python # https://www.udemy.com/cluster-analysis-unsupervised-machine-learning-python from __future__ import print_function, division from future.utils import iteritems from builtins import range, input # Note: you may need to update your version of future # sudo pip install -U future import numpy as np import matplotlib.pyplot as plt from sklearn.metrics.pairwise import pairwise_distances def d(u, v): diff = u - v return diff.dot(diff) def cost(X, R, M): cost = 0 for k in range(len(M)): # method 1 # for n in range(len(X)): # cost += R[n,k]*d(M[k], X[n]) # method 2 diff = X - M[k] sq_distances = (diff * diff).sum(axis=1) cost += (R[:,k] * sq_distances).sum() return cost def plot_k_means(X, K, max_iter=20, beta=3.0, show_plots=False): N, D = X.shape # R = np.zeros((N, K)) exponents = np.empty((N, K)) # initialize M to random initial_centers = np.random.choice(N, K, replace=False) M = X[initial_centers] costs = [] k = 0 for i in range(max_iter): k += 1 # step 1: determine assignments / resposibilities # is this inefficient? for k in range(K): for n in range(N): exponents[n,k] = np.exp(-beta*d(M[k], X[n])) R = exponents / exponents.sum(axis=1, keepdims=True) # step 2: recalculate means # decent vectorization # for k in range(K): # M[k] = R[:,k].dot(X) / R[:,k].sum() # oldM = M # full vectorization M = R.T.dot(X) / R.sum(axis=0, keepdims=True).T # print("diff M:", np.abs(M - oldM).sum()) c = cost(X, R, M) costs.append(c) if i > 0: if np.abs(costs[-1] - costs[-2]) < 1e-5: break if len(costs) > 1: if costs[-1] > costs[-2]: pass # print("cost increased!") # print("M:", M) # print("R.min:", R.min(), "R.max:", R.max()) if show_plots: plt.plot(costs) plt.title("Costs") plt.show() random_colors = np.random.random((K, 3)) colors = R.dot(random_colors) plt.scatter(X[:,0], X[:,1], c=colors) plt.show() print("Final cost", costs[-1]) return M, R def get_simple_data(): # assume 3 means D = 2 # so we can visualize it more easily s = 4 # separation so we can control how far apart the means are mu1 = np.array([0, 0]) mu2 = np.array([s, s]) mu3 = np.array([0, s]) N = 900 # number of samples X = np.zeros((N, D)) X[:300, :] = np.random.randn(300, D) + mu1 X[300:600, :] = np.random.randn(300, D) + mu2 X[600:, :] = np.random.randn(300, D) + mu3 return X def main(): X = get_simple_data() # what does it look like without clustering? plt.scatter(X[:,0], X[:,1]) plt.show() K = 3 # luckily, we already know this plot_k_means(X, K, beta=1.0, show_plots=True) K = 3 # luckily, we already know this plot_k_means(X, K, beta=3.0, show_plots=True) K = 3 # luckily, we already know this plot_k_means(X, K, beta=10.0, show_plots=True) K = 5 # what happens if we choose a "bad" K? plot_k_means(X, K, max_iter=30, show_plots=True) K = 5 # what happens if we change beta? plot_k_means(X, K, max_iter=30, beta=0.3, show_plots=True) if __name__ == '__main__': main() ================================================ FILE: unsupervised_class/kmeans_fail.py ================================================ # https://deeplearningcourses.com/c/cluster-analysis-unsupervised-machine-learning-python # https://www.udemy.com/cluster-analysis-unsupervised-machine-learning-python from __future__ import print_function, division from future.utils import iteritems from builtins import range, input # Note: you may need to update your version of future # sudo pip install -U future import numpy as np from kmeans import plot_k_means def donut(): N = 1000 D = 2 R_inner = 5 R_outer = 10 # distance from origin is radius + random normal # angle theta is uniformly distributed between (0, 2pi) R1 = np.random.randn(N//2) + R_inner theta = 2*np.pi*np.random.random(N//2) X_inner = np.concatenate([[R1 * np.cos(theta)], [R1 * np.sin(theta)]]).T R2 = np.random.randn(N//2) + R_outer theta = 2*np.pi*np.random.random(N//2) X_outer = np.concatenate([[R2 * np.cos(theta)], [R2 * np.sin(theta)]]).T X = np.concatenate([ X_inner, X_outer ]) return X def main(): # donut X = donut() plot_k_means(X, 2, beta=0.1, show_plots=True) # elongated clusters X = np.zeros((1000, 2)) X[:500,:] = np.random.multivariate_normal([0, 0], [[1, 0], [0, 20]], 500) X[500:,:] = np.random.multivariate_normal([5, 0], [[1, 0], [0, 20]], 500) plot_k_means(X, 2, beta=0.1, show_plots=True) # different density X = np.zeros((1000, 2)) X[:950,:] = np.array([0,0]) + np.random.randn(950, 2) X[950:,:] = np.array([3,0]) + np.random.randn(50, 2) plot_k_means(X, 2, show_plots=True) if __name__ == '__main__': main() ================================================ FILE: unsupervised_class/kmeans_mnist.py ================================================ # https://deeplearningcourses.com/c/cluster-analysis-unsupervised-machine-learning-python # https://www.udemy.com/cluster-analysis-unsupervised-machine-learning-python # data is from https://www.kaggle.com/c/digit-recognizer # each image is a D = 28x28 = 784 dimensional vector # there are N = 42000 samples # you can plot an image by reshaping to (28,28) and using plt.imshow() from __future__ import print_function, division from future.utils import iteritems from builtins import range, input # Note: you may need to update your version of future # sudo pip install -U future import numpy as np import pandas as pd import matplotlib.pyplot as plt from .kmeans import plot_k_means, get_simple_data from datetime import datetime def get_data(limit=None): print("Reading in and transforming data...") df = pd.read_csv('../large_files/train.csv') data = df.values np.random.shuffle(data) X = data[:, 1:] / 255.0 # data is from 0..255 Y = data[:, 0] if limit is not None: X, Y = X[:limit], Y[:limit] return X, Y # hard labels def purity2(Y, R): # maximum purity is 1, higher is better C = np.argmax(R, axis=1) # cluster assignments N = len(Y) # number of data pts K = len(set(Y)) # number of labels total = 0.0 for k in range(K): max_intersection = 0 for j in range(K): intersection = ((C == k) & (Y == j)).sum() if intersection > max_intersection: max_intersection = intersection total += max_intersection return total / N def purity(Y, R): # maximum purity is 1, higher is better N, K = R.shape p = 0 for k in range(K): best_target = -1 # we don't strictly need to store this max_intersection = 0 for j in range(K): intersection = R[Y==j, k].sum() if intersection > max_intersection: max_intersection = intersection best_target = j p += max_intersection return p / N # hard labels def DBI2(X, R): N, D = X.shape _, K = R.shape # get sigmas, means first sigma = np.zeros(K) M = np.zeros((K, D)) assignments = np.argmax(R, axis=1) for k in range(K): Xk = X[assignments == k] M[k] = Xk.mean(axis=0) # assert(Xk.mean(axis=0).shape == (D,)) n = len(Xk) diffs = Xk - M[k] sq_diffs = diffs * diffs sigma[k] = np.sqrt( sq_diffs.sum() / n ) # calculate Davies-Bouldin Index dbi = 0 for k in range(K): max_ratio = 0 for j in range(K): if k != j: numerator = sigma[k] + sigma[j] denominator = np.linalg.norm(M[k] - M[j]) ratio = numerator / denominator if ratio > max_ratio: max_ratio = ratio dbi += max_ratio return dbi / K def DBI(X, M, R): # ratio between sum of std deviations between 2 clusters / distance between cluster means # lower is better N, D = X.shape K, _ = M.shape # get sigmas first sigma = np.zeros(K) for k in range(K): diffs = X - M[k] # should be NxD squared_distances = (diffs * diffs).sum(axis=1) # now just N weighted_squared_distances = R[:,k]*squared_distances sigma[k] = np.sqrt( weighted_squared_distances.sum() / R[:,k].sum() ) # calculate Davies-Bouldin Index dbi = 0 for k in range(K): max_ratio = 0 for j in range(K): if k != j: numerator = sigma[k] + sigma[j] denominator = np.linalg.norm(M[k] - M[j]) ratio = numerator / denominator if ratio > max_ratio: max_ratio = ratio dbi += max_ratio return dbi / K def main(): # mnist data X, Y = get_data(10000) # simple data # X = get_simple_data() # Y = np.array([0]*300 + [1]*300 + [2]*300) print("Number of data points:", len(Y)) M, R = plot_k_means(X, len(set(Y))) # Exercise: Try different values of K and compare the evaluation metrics print("Purity:", purity(Y, R)) print("Purity 2 (hard clusters):", purity2(Y, R)) print("DBI:", DBI(X, M, R)) print("DBI 2 (hard clusters):", DBI2(X, R)) # plot the mean images # they should look like digits for k in range(len(M)): im = M[k].reshape(28, 28) plt.imshow(im, cmap='gray') plt.show() if __name__ == "__main__": main() ================================================ FILE: unsupervised_class/kmeans_visualize.py ================================================ # https://deeplearningcourses.com/c/cluster-analysis-unsupervised-machine-learning-python # https://www.udemy.com/cluster-analysis-unsupervised-machine-learning-python from __future__ import print_function, division from future.utils import iteritems from builtins import range, input # Note: you may need to update your version of future # sudo pip install -U future import numpy as np import matplotlib.pyplot as plt def d(u, v): diff = u - v return diff.dot(diff) def cost(X, R, M): cost = 0 for k in range(len(M)): for n in range(len(X)): cost += R[n,k]*d(M[k], X[n]) return cost def plot_k_means(X, K, max_iter=20, beta=1.0): N, D = X.shape M = np.zeros((K, D)) R = np.ones((N, K)) / K # initialize M to random for k in range(K): M[k] = X[np.random.choice(N)] grid_width = 5 grid_height = max_iter / grid_width random_colors = np.random.random((K, 3)) plt.figure() costs = np.zeros(max_iter) for i in range(max_iter): # moved the plot inside the for loop colors = R.dot(random_colors) plt.subplot(grid_width, grid_height, i+1) plt.scatter(X[:,0], X[:,1], c=colors) # step 1: determine assignments / resposibilities # is this inefficient? for k in range(K): for n in range(N): R[n,k] = np.exp(-beta*d(M[k], X[n])) / np.sum( np.exp(-beta*d(M[j], X[n])) for j in range(K) ) # step 2: recalculate means for k in range(K): M[k] = R[:,k].dot(X) / R[:,k].sum() costs[i] = cost(X, R, M) if i > 0: if np.abs(costs[i] - costs[i-1]) < 1e-5: break plt.show() def main(): # assume 3 means D = 2 # so we can visualize it more easily s = 4 # separation so we can control how far apart the means are mu1 = np.array([0, 0]) mu2 = np.array([s, s]) mu3 = np.array([0, s]) N = 900 # number of samples X = np.zeros((N, D)) X[:300, :] = np.random.randn(300, D) + mu1 X[300:600, :] = np.random.randn(300, D) + mu2 X[600:, :] = np.random.randn(300, D) + mu3 # what does it look like without clustering? plt.scatter(X[:,0], X[:,1]) plt.show() K = 3 # luckily, we already know this plot_k_means(X, K) # K = 5 # what happens if we choose a "bad" K? # plot_k_means(X, K, max_iter=30) # K = 5 # what happens if we change beta? # plot_k_means(X, K, max_iter=30, beta=0.3) if __name__ == '__main__': main() ================================================ FILE: unsupervised_class/neural_kmeans.py ================================================ import numpy as np import matplotlib.pyplot as plt from kmeans import get_simple_data from sklearn.preprocessing import StandardScaler # get the data and standardize it X = get_simple_data() scaler = StandardScaler() X = scaler.fit_transform(X) # get shapes N, D = X.shape K = 3 # initialize parameters W = np.random.randn(D, K) # set hyperparameters n_epochs = 100 learning_rate = 0.001 losses = [] # training loop for i in range(n_epochs): loss = 0 for j in range(N): h = W.T.dot(X[j]) # K-length vector k = np.argmax(h) # winning neuron # accumulate loss loss += (W[:,k] - X[j]).dot(W[:,k] - X[j]) # weight update W[:,k] += learning_rate * (X[j] - W[:,k]) losses.append(loss) # plot losses plt.plot(losses) plt.show() # show cluster assignments H = np.argmax(X.dot(W), axis=1) plt.scatter(X[:,0], X[:,1], c=H, alpha=0.5) plt.show() ================================================ FILE: unsupervised_class/tweets.py ================================================ # https://deeplearningcourses.com/c/cluster-analysis-unsupervised-machine-learning-python # https://www.udemy.com/cluster-analysis-unsupervised-machine-learning-python # data from https://www.kaggle.com/benhamner/clinton-trump-tweets from __future__ import print_function, division from builtins import range # Note: you may need to update your version of future # sudo pip install -U future import re import numpy as np import pandas as pd import matplotlib.pyplot as plt from scipy.spatial.distance import pdist from scipy.cluster.hierarchy import dendrogram, linkage, fcluster from sklearn.feature_extraction.text import TfidfVectorizer # from sklearn.metrics.pairwise import pairwise_distances ### fast, but result not symmetric # load stopwords # selected after observing results without stopwords stopwords = [ 'the', 'about', 'an', 'and', 'are', 'at', 'be', 'can', 'for', 'from', 'if', 'in', 'is', 'it', 'of', 'on', 'or', 'that', 'this', 'to', 'you', 'your', 'with', ] # find urls and twitter usernames within a string url_finder = re.compile(r"(?:\@|https?\://)\S+") def filter_tweet(s): s = s.lower() # downcase s = url_finder.sub("", s) # remove urls and usernames return s ### load data ### df = pd.read_csv('../large_files/tweets.csv') text = df.text.tolist() text = [filter_tweet(s) for s in text] # transform the text into a data matrix tfidf = TfidfVectorizer(max_features=100, stop_words=stopwords) X = tfidf.fit_transform(text).asformat('array') # subsample for efficiency # remember: calculating distances is O(N^2) N = X.shape[0] idx = np.random.choice(N, size=2000, replace=False) x = X[idx] labels = df.handle[idx].tolist() # proportions of each label # so we can be confident that each is represented equally pTrump = sum(1.0 if e == 'realDonaldTrump' else 0.0 for e in labels) / len(labels) print("proportion @realDonaldTrump: %.3f" % pTrump) print("proportion @HillaryClinton: %.3f" % (1 - pTrump)) # transform the data matrix into pairwise distances list dist_array = pdist(x) # calculate hierarchy Z = linkage(dist_array, 'ward') plt.title("Ward") dendrogram(Z, labels=labels) plt.show() ### hits max recursion depth # Z = linkage(dist_array, 'single') # plt.title("Single") # dendrogram(Z, labels=labels) # plt.show() # Z = linkage(dist_array, 'complete') # plt.title("Complete") # dendrogram(Z, labels=labels) # plt.show() # convert labels to (1, 2), not (0, 1) # since that's what's returned by fcluster Y = np.array([1 if e == 'realDonaldTrump' else 2 for e in labels]) # get cluster assignments # threshold 9 was chosen empirically to yield 2 clusters C = fcluster(Z, 9, criterion='distance') # returns 1, 2, ..., K categories = set(C) # sanity check: should be {1, 2} print("values in C:", categories) ### calculate the purity of our clusters ### def purity(true_labels, cluster_assignments, categories): # maximum purity is 1, higher is better N = len(true_labels) total = 0.0 for k in categories: max_intersection = 0 for j in categories: intersection = ((cluster_assignments == k) & (true_labels == j)).sum() if intersection > max_intersection: max_intersection = intersection total += max_intersection return total / N print("purity:", purity(Y, C, categories)) # we know the smaller cluster is the trump cluster # # important note: we call it the trump cluster from # observing AFTER the fact that most tweets in this # cluster are by trump # we do NOT use those labels to create the cluster # # we create the clusters using a distance-based # algorithm which knows nothing about the labels, # just the tf-idf scores. # # it just so happens that most of the tweets in # one of the clusters is by trump, and that this # cluster is very small if (C == 1).sum() < (C == 2).sum(): d = 1 h = 2 else: d = 2 h = 1 actually_donald = ((C == d) & (Y == 1)).sum() donald_cluster_size = (C == d).sum() print("purity of @realDonaldTrump cluster:", float(actually_donald) / donald_cluster_size) actually_hillary = ((C == h) & (Y == 2)).sum() hillary_cluster_size = (C == h).sum() print("purity of @HillaryClinton cluster:", float(actually_hillary) / hillary_cluster_size) # just for interest, how would a classifier do? # note: classification is always easier from sklearn.ensemble import RandomForestClassifier rf = RandomForestClassifier() rf.fit(X, df.handle) print("classifier score:", rf.score(X, df.handle)) # same as mnist # classifier yields almost 100% accuracy # but purity of clustering is much lower # what words have the highest tf-idf in cluster 1? in cluster 2? w2i = tfidf.vocabulary_ # tf-idf vectorizer todense() returns a matrix rather than array # matrix always wants to be 2-D, so we convert to array in order to flatten d_avg = np.array(x[C == d].mean(axis=0)).flatten() d_sorted = sorted(w2i.keys(), key=lambda w: -d_avg[w2i[w]]) print("\nTop 10 'Donald cluster' words:") print("\n".join(d_sorted[:10])) h_avg = np.array(x[C == h].mean(axis=0)).flatten() h_sorted = sorted(w2i.keys(), key=lambda w: -h_avg[w2i[w]]) print("\nTop 10 'Hillary cluster' words:") print("\n".join(h_sorted[:10])) ================================================ FILE: unsupervised_class2/__init__.py ================================================ ================================================ FILE: unsupervised_class2/autoencoder.py ================================================ # https://deeplearningcourses.com/c/unsupervised-deep-learning-in-python # https://www.udemy.com/unsupervised-deep-learning-in-python from __future__ import print_function, division from builtins import range, input # Note: you may need to update your version of future # sudo pip install -U future import numpy as np import theano import theano.tensor as T import matplotlib.pyplot as plt from sklearn.utils import shuffle from util import relu, error_rate, getKaggleMNIST, init_weights def T_shared_zeros_like32(p): # p is a Theano shared itself return theano.shared(np.zeros_like(p.get_value(), dtype=np.float32)) def momentum_updates(cost, params, mu, learning_rate): # momentum changes dparams = [T_shared_zeros_like32(p) for p in params] updates = [] grads = T.grad(cost, params) for p, dp, g in zip(params, dparams, grads): dp_update = mu*dp - learning_rate*g p_update = p + dp_update updates.append((dp, dp_update)) updates.append((p, p_update)) return updates class AutoEncoder(object): def __init__(self, M, an_id): self.M = M self.id = an_id def fit(self, X, learning_rate=0.5, mu=0.99, epochs=1, batch_sz=100, show_fig=False): # cast to float mu = np.float32(mu) learning_rate = np.float32(learning_rate) N, D = X.shape n_batches = N // batch_sz W0 = init_weights((D, self.M)) self.W = theano.shared(W0, 'W_%s' % self.id) self.bh = theano.shared(np.zeros(self.M, dtype=np.float32), 'bh_%s' % self.id) self.bo = theano.shared(np.zeros(D, dtype=np.float32), 'bo_%s' % self.id) self.params = [self.W, self.bh, self.bo] self.forward_params = [self.W, self.bh] # TODO: technically these should be reset before doing backprop self.dW = theano.shared(np.zeros(W0.shape), 'dW_%s' % self.id) self.dbh = theano.shared(np.zeros(self.M), 'dbh_%s' % self.id) self.dbo = theano.shared(np.zeros(D), 'dbo_%s' % self.id) self.dparams = [self.dW, self.dbh, self.dbo] self.forward_dparams = [self.dW, self.dbh] X_in = T.matrix('X_%s' % self.id) X_hat = self.forward_output(X_in) # attach it to the object so it can be used later # must be sigmoidal because the output is also a sigmoid H = T.nnet.sigmoid(X_in.dot(self.W) + self.bh) self.hidden_op = theano.function( inputs=[X_in], outputs=H, ) # save this for later so we can call it to # create reconstructions of input self.predict = theano.function( inputs=[X_in], outputs=X_hat, ) cost = -(X_in * T.log(X_hat) + (1 - X_in) * T.log(1 - X_hat)).flatten().mean() cost_op = theano.function( inputs=[X_in], outputs=cost, ) updates = momentum_updates(cost, self.params, mu, learning_rate) train_op = theano.function( inputs=[X_in], updates=updates, ) costs = [] print("training autoencoder: %s" % self.id) print("epochs to do:", epochs) for i in range(epochs): print("epoch:", i) X = shuffle(X) for j in range(n_batches): batch = X[j*batch_sz:(j*batch_sz + batch_sz)] train_op(batch) the_cost = cost_op(batch) # technically we could also get the cost for Xtest here if j % 10 == 0: print("j / n_batches:", j, "/", n_batches, "cost:", the_cost) costs.append(the_cost) if show_fig: plt.plot(costs) plt.show() def forward_hidden(self, X): Z = T.nnet.sigmoid(X.dot(self.W) + self.bh) return Z def forward_output(self, X): Z = self.forward_hidden(X) Y = T.nnet.sigmoid(Z.dot(self.W.T) + self.bo) return Y @staticmethod def createFromArrays(W, bh, bo, an_id): ae = AutoEncoder(W.shape[1], an_id) ae.W = theano.shared(W, 'W_%s' % ae.id) ae.bh = theano.shared(bh, 'bh_%s' % ae.id) ae.bo = theano.shared(bo, 'bo_%s' % ae.id) ae.params = [ae.W, ae.bh, ae.bo] ae.forward_params = [ae.W, ae.bh] return ae class DNN(object): def __init__(self, hidden_layer_sizes, UnsupervisedModel=AutoEncoder): self.hidden_layers = [] count = 0 for M in hidden_layer_sizes: ae = UnsupervisedModel(M, count) self.hidden_layers.append(ae) count += 1 def fit(self, X, Y, Xtest, Ytest, pretrain=True, train_head_only=False, learning_rate=0.1, mu=0.99, reg=0.0, epochs=1, batch_sz=100): # cast to float32 learning_rate = np.float32(learning_rate) mu = np.float32(mu) reg = np.float32(reg) # greedy layer-wise training of autoencoders pretrain_epochs = 2 if not pretrain: pretrain_epochs = 0 current_input = X for ae in self.hidden_layers: ae.fit(current_input, epochs=pretrain_epochs) # create current_input for the next layer current_input = ae.hidden_op(current_input) # initialize logistic regression layer N = len(Y) K = len(set(Y)) W0 = init_weights((self.hidden_layers[-1].M, K)) self.W = theano.shared(W0, "W_logreg") self.b = theano.shared(np.zeros(K, dtype=np.float32), "b_logreg") self.params = [self.W, self.b] if not train_head_only: for ae in self.hidden_layers: self.params += ae.forward_params X_in = T.matrix('X_in') targets = T.ivector('Targets') pY = self.forward(X_in) squared_magnitude = [(p*p).sum() for p in self.params] reg_cost = T.sum(squared_magnitude) cost = -T.mean( T.log(pY[T.arange(pY.shape[0]), targets]) ) + reg*reg_cost prediction = self.predict(X_in) cost_predict_op = theano.function( inputs=[X_in, targets], outputs=[cost, prediction], ) updates = momentum_updates(cost, self.params, mu, learning_rate) train_op = theano.function( inputs=[X_in, targets], updates=updates, ) n_batches = N // batch_sz costs = [] print("supervised training...") for i in range(epochs): print("epoch:", i) X, Y = shuffle(X, Y) for j in range(n_batches): Xbatch = X[j*batch_sz:(j*batch_sz + batch_sz)] Ybatch = Y[j*batch_sz:(j*batch_sz + batch_sz)] train_op(Xbatch, Ybatch) the_cost, the_prediction = cost_predict_op(Xtest, Ytest) error = error_rate(the_prediction, Ytest) print("j / n_batches:", j, "/", n_batches, "cost:", the_cost, "error:", error) costs.append(the_cost) plt.plot(costs) plt.show() def predict(self, X): return T.argmax(self.forward(X), axis=1) def forward(self, X): current_input = X for ae in self.hidden_layers: Z = ae.forward_hidden(current_input) current_input = Z # logistic layer Y = T.nnet.softmax(T.dot(current_input, self.W) + self.b) return Y def main(): Xtrain, Ytrain, Xtest, Ytest = getKaggleMNIST() # dnn = DNN([1000, 750, 500]) # dnn.fit(Xtrain, Ytrain, Xtest, Ytest, epochs=3) # vs dnn = DNN([1000, 750, 500]) dnn.fit(Xtrain, Ytrain, Xtest, Ytest, pretrain=True, train_head_only=False, epochs=3) # note: try training the head only too! what does that mean? def test_single_autoencoder(): Xtrain, Ytrain, Xtest, Ytest = getKaggleMNIST() autoencoder = AutoEncoder(300, 0) autoencoder.fit(Xtrain, epochs=2, show_fig=True) done = False while not done: i = np.random.choice(len(Xtest)) x = Xtest[i] y = autoencoder.predict([x]) plt.subplot(1,2,1) plt.imshow(x.reshape(28,28), cmap='gray') plt.title('Original') plt.subplot(1,2,2) plt.imshow(y.reshape(28,28), cmap='gray') plt.title('Reconstructed') plt.show() ans = input("Generate another?") if ans and ans[0] in ('n' or 'N'): done = True if __name__ == '__main__': main() # test_single_autoencoder() ================================================ FILE: unsupervised_class2/autoencoder_tf.py ================================================ # https://deeplearningcourses.com/c/unsupervised-deep-learning-in-python # https://www.udemy.com/unsupervised-deep-learning-in-python from __future__ import print_function, division from builtins import range, input # Note: you may need to update your version of future # sudo pip install -U future import numpy as np import tensorflow as tf import matplotlib.pyplot as plt from sklearn.utils import shuffle from util import error_rate, getKaggleMNIST if tf.__version__.startswith('2'): tf.compat.v1.disable_eager_execution() class AutoEncoder(object): def __init__(self, D, M, an_id): self.M = M self.id = an_id self.build(D, M) def set_session(self, session): self.session = session def build(self, D, M): self.W = tf.Variable(tf.random.normal(shape=(D, M))) self.bh = tf.Variable(np.zeros(M).astype(np.float32)) self.bo = tf.Variable(np.zeros(D).astype(np.float32)) self.X_in = tf.compat.v1.placeholder(tf.float32, shape=(None, D)) self.Z = self.forward_hidden(self.X_in) # for transform() later self.X_hat = self.forward_output(self.X_in) # using the naive formulation for cross-entropy # will have numerical stability issues if X_hat = 0 or 1 logits = self.forward_logits(self.X_in) self.cost = tf.reduce_mean( input_tensor=tf.nn.sigmoid_cross_entropy_with_logits( labels=self.X_in, logits=logits, ) ) self.train_op = tf.compat.v1.train.AdamOptimizer(1e-1).minimize(self.cost) # self.train_op = tf.train.MomentumOptimizer(1e-3, momentum=0.9).minimize(self.cost) def fit(self, X, epochs=1, batch_sz=100, show_fig=False): N, D = X.shape n_batches = N // batch_sz costs = [] print("training autoencoder: %s" % self.id) for i in range(epochs): print("epoch:", i) X = shuffle(X) for j in range(n_batches): batch = X[j*batch_sz:(j*batch_sz + batch_sz)] _, c = self.session.run((self.train_op, self.cost), feed_dict={self.X_in: batch}) if j % 10 == 0: print("j / n_batches:", j, "/", n_batches, "cost:", c) costs.append(c) if show_fig: plt.plot(costs) plt.show() def transform(self, X): # accepts and returns a real numpy array # unlike forward_hidden and forward_output # which deal with tensorflow variables return self.session.run(self.Z, feed_dict={self.X_in: X}) def predict(self, X): # accepts and returns a real numpy array # unlike forward_hidden and forward_output # which deal with tensorflow variables return self.session.run(self.X_hat, feed_dict={self.X_in: X}) def forward_hidden(self, X): Z = tf.nn.sigmoid(tf.matmul(X, self.W) + self.bh) return Z def forward_logits(self, X): Z = self.forward_hidden(X) return tf.matmul(Z, tf.transpose(a=self.W)) + self.bo def forward_output(self, X): return tf.nn.sigmoid(self.forward_logits(X)) class DNN(object): def __init__(self, D, hidden_layer_sizes, K, UnsupervisedModel=AutoEncoder): self.hidden_layers = [] count = 0 input_size = D for output_size in hidden_layer_sizes: ae = UnsupervisedModel(input_size, output_size, count) self.hidden_layers.append(ae) count += 1 input_size = output_size self.build_final_layer(D, hidden_layer_sizes[-1], K) def set_session(self, session): self.session = session for layer in self.hidden_layers: layer.set_session(session) def build_final_layer(self, D, M, K): # initialize logistic regression layer self.W = tf.Variable(tf.random.normal(shape=(M, K))) self.b = tf.Variable(np.zeros(K).astype(np.float32)) self.X = tf.compat.v1.placeholder(tf.float32, shape=(None, D)) labels = tf.compat.v1.placeholder(tf.int32, shape=(None,)) self.Y = labels logits = self.forward(self.X) self.cost = tf.reduce_mean( input_tensor=tf.nn.sparse_softmax_cross_entropy_with_logits( logits=logits, labels=labels ) ) self.train_op = tf.compat.v1.train.AdamOptimizer(1e-2).minimize(self.cost) self.prediction = tf.argmax(input=logits, axis=1) def fit(self, X, Y, Xtest, Ytest, pretrain=True, epochs=1, batch_sz=100): N = len(X) # greedy layer-wise training of autoencoders pretrain_epochs = 1 if not pretrain: pretrain_epochs = 0 current_input = X for ae in self.hidden_layers: ae.fit(current_input, epochs=pretrain_epochs) # create current_input for the next layer current_input = ae.transform(current_input) n_batches = N // batch_sz costs = [] print("supervised training...") for i in range(epochs): print("epoch:", i) X, Y = shuffle(X, Y) for j in range(n_batches): Xbatch = X[j*batch_sz:(j*batch_sz + batch_sz)] Ybatch = Y[j*batch_sz:(j*batch_sz + batch_sz)] self.session.run( self.train_op, feed_dict={self.X: Xbatch, self.Y: Ybatch} ) c, p = self.session.run( (self.cost, self.prediction), feed_dict={self.X: Xtest, self.Y: Ytest }) error = error_rate(p, Ytest) if j % 10 == 0: print("j / n_batches:", j, "/", n_batches, "cost:", c, "error:", error) costs.append(c) plt.plot(costs) plt.show() def forward(self, X): current_input = X for ae in self.hidden_layers: Z = ae.forward_hidden(current_input) current_input = Z # logistic layer logits = tf.matmul(current_input, self.W) + self.b return logits def test_pretraining_dnn(): Xtrain, Ytrain, Xtest, Ytest = getKaggleMNIST() # dnn = DNN([1000, 750, 500]) # dnn.fit(Xtrain, Ytrain, Xtest, Ytest, epochs=3) # vs Xtrain = Xtrain.astype(np.float32) Xtest = Xtest.astype(np.float32) _, D = Xtrain.shape K = len(set(Ytrain)) dnn = DNN(D, [1000, 750, 500], K) init_op = tf.compat.v1.global_variables_initializer() with tf.compat.v1.Session() as session: session.run(init_op) dnn.set_session(session) dnn.fit(Xtrain, Ytrain, Xtest, Ytest, pretrain=True, epochs=10) def test_single_autoencoder(): Xtrain, Ytrain, Xtest, Ytest = getKaggleMNIST() Xtrain = Xtrain.astype(np.float32) Xtest = Xtest.astype(np.float32) _, D = Xtrain.shape autoencoder = AutoEncoder(D, 300, 0) init_op = tf.compat.v1.global_variables_initializer() with tf.compat.v1.Session() as session: session.run(init_op) autoencoder.set_session(session) autoencoder.fit(Xtrain, show_fig=True) done = False while not done: i = np.random.choice(len(Xtest)) x = Xtest[i] y = autoencoder.predict([x]) plt.subplot(1,2,1) plt.imshow(x.reshape(28,28), cmap='gray') plt.title('Original') plt.subplot(1,2,2) plt.imshow(y.reshape(28,28), cmap='gray') plt.title('Reconstructed') plt.show() ans = input("Generate another?") if ans and ans[0] in ('n' or 'N'): done = True if __name__ == '__main__': # test_single_autoencoder() test_pretraining_dnn() ================================================ FILE: unsupervised_class2/compare_pca_svd.py ================================================ # https://deeplearningcourses.com/c/unsupervised-deep-learning-in-python # https://www.udemy.com/unsupervised-deep-learning-in-python from __future__ import print_function, division from builtins import range, input # Note: you may need to update your version of future # sudo pip install -U future import numpy as np import matplotlib.pyplot as plt from sklearn.decomposition import PCA, TruncatedSVD from util import getKaggleMNIST X, Y, _, _ = getKaggleMNIST() m = X.mean(axis=0) s = X.std(axis=0) np.place(s, s == 0, 1) X = (X - m) / s pca = PCA() svd = TruncatedSVD() Z1 = pca.fit_transform(X) Z2 = svd.fit_transform(X) plt.subplot(1,2,1) plt.scatter(Z1[:,0], Z1[:,1], c=Y) plt.subplot(1,2,2) plt.scatter(Z2[:,0], Z2[:,1], c=Y) plt.show() ================================================ FILE: unsupervised_class2/extra_reading.txt ================================================ Visualizing Data using t-SNE http://www.jmlr.org/papers/volume9/vandermaaten08a/vandermaaten08a.pdf Reducing the Dimensionality of Data with Neural Networks https://www.cs.toronto.edu/~hinton/science.pdf A fast learning algorithm for deep belief nets https://www.cs.toronto.edu/~hinton/absps/fastnc.pdf Why Does Unsupervised Pre-training Help Deep Learning? http://www.jmlr.org/papers/volume11/erhan10a/erhan10a.pdf A Better Way to Pretrain Deep Boltzmann Machines http://www.cs.toronto.edu/~hinton/absps/DBM_pretrain.pdf On Deep Generative Models with Applications to Recognition http://www.cs.toronto.edu/~hinton/absps/ranzato_cvpr2011.pdf LEARNING A BETTER REPRESENTATION OF SPEECH SOUND WAVES USING RESTRICTED BOLTZMANN MACHINES http://www.cs.toronto.edu/~hinton/absps/jaitly_ICASSP2011.pdf Rectified Linear Units Improve Restricted Boltzmann Machines http://www.cs.toronto.edu/~hinton/absps/reluICML.pdf Generative versus discriminative training of RBMs for classification of fMRI images http://www.cs.toronto.edu/~hinton/absps/fmrinips.pdf Restricted Boltzmann Machines for Collaborative Filtering http://www.cs.toronto.edu/~hinton/absps/netflix.pdf On Contrastive Divergence Learning http://www.cs.toronto.edu/~hinton/absps/cdmiguel.pdf ================================================ FILE: unsupervised_class2/gaussian_nb.py ================================================ # https://deeplearningcourses.com/c/data-science-deep-learning-in-theano-tensorflow # https://www.udemy.com/data-science-deep-learning-in-theano-tensorflow from __future__ import print_function, division from future.utils import iteritems from builtins import range, input # Note: you may need to update your version of future # sudo pip install -U future import numpy as np from sklearn.decomposition import PCA # from sklearn.naive_bayes import GaussianNB # doesn't have smoothing from scipy.stats import norm from scipy.stats import multivariate_normal as mvn from util import getKaggleMNIST class GaussianNB(object): def fit(self, X, Y, smoothing=1e-2): self.gaussians = dict() self.priors = dict() labels = set(Y) for c in labels: current_x = X[Y == c] self.gaussians[c] = { 'mean': current_x.mean(axis=0), 'var': current_x.var(axis=0) + smoothing, } self.priors[c] = float(len(Y[Y == c])) / len(Y) def score(self, X, Y): P = self.predict(X) return np.mean(P == Y) def predict(self, X): N, D = X.shape K = len(self.gaussians) P = np.zeros((N, K)) for c, g in iteritems(self.gaussians): mean, var = g['mean'], g['var'] P[:,c] = mvn.logpdf(X, mean=mean, cov=var) + np.log(self.priors[c]) return np.argmax(P, axis=1) # get data Xtrain, Ytrain, Xtest, Ytest = getKaggleMNIST() # try NB by itself model1 = GaussianNB() model1.fit(Xtrain, Ytrain) print("NB train score:", model1.score(Xtrain, Ytrain)) print("NB test score:", model1.score(Xtest, Ytest)) # try NB with PCA first pca = PCA(n_components=50) Ztrain = pca.fit_transform(Xtrain) Ztest = pca.transform(Xtest) model2 = GaussianNB() model2.fit(Ztrain, Ytrain) print("NB+PCA train score:", model2.score(Ztrain, Ytrain)) print("NB+PCA test score:", model2.score(Ztest, Ytest)) ================================================ FILE: unsupervised_class2/pca.py ================================================ # https://deeplearningcourses.com/c/unsupervised-deep-learning-in-python # https://www.udemy.com/unsupervised-deep-learning-in-python from __future__ import print_function, division from builtins import range, input # Note: you may need to update your version of future # sudo pip install -U future import numpy as np import matplotlib.pyplot as plt from sklearn.decomposition import PCA from util import getKaggleMNIST def main(): Xtrain, Ytrain, Xtest, Ytest = getKaggleMNIST() pca = PCA() reduced = pca.fit_transform(Xtrain) plt.scatter(reduced[:,0], reduced[:,1], s=100, c=Ytrain, alpha=0.5) plt.show() plt.plot(pca.explained_variance_ratio_) plt.show() # cumulative variance # choose k = number of dimensions that gives us 95-99% variance cumulative = [] last = 0 for v in pca.explained_variance_ratio_: cumulative.append(last + v) last = cumulative[-1] plt.plot(cumulative) plt.show() if __name__ == '__main__': main() ================================================ FILE: unsupervised_class2/pca_impl.py ================================================ # https://deeplearningcourses.com/c/unsupervised-deep-learning-in-python # https://www.udemy.com/unsupervised-deep-learning-in-python from __future__ import print_function, division from builtins import range, input # Note: you may need to update your version of future # sudo pip install -U future import numpy as np import matplotlib.pyplot as plt from util import getKaggleMNIST # get the data Xtrain, Ytrain, Xtest, Ytest = getKaggleMNIST() # decompose covariance covX = np.cov(Xtrain.T) lambdas, Q = np.linalg.eigh(covX) # lambdas are sorted from smallest --> largest # some may be slightly negative due to precision idx = np.argsort(-lambdas) lambdas = lambdas[idx] # sort in proper order lambdas = np.maximum(lambdas, 0) # get rid of negatives Q = Q[:,idx] # plot the first 2 columns of Z Z = Xtrain.dot(Q) plt.scatter(Z[:,0], Z[:,1], s=100, c=Ytrain, alpha=0.3) plt.show() # plot variances plt.plot(lambdas) plt.title("Variance of each component") plt.show() # cumulative variance plt.plot(np.cumsum(lambdas)) plt.title("Cumulative variance") plt.show() ================================================ FILE: unsupervised_class2/rbm.py ================================================ # https://deeplearningcourses.com/c/unsupervised-deep-learning-in-python # https://www.udemy.com/unsupervised-deep-learning-in-python from __future__ import print_function, division from builtins import range, input # Note: you may need to update your version of future # sudo pip install -U future import numpy as np import theano import theano.tensor as T import matplotlib.pyplot as plt from sklearn.utils import shuffle from theano.tensor.shared_randomstreams import RandomStreams from util import relu, error_rate, getKaggleMNIST, init_weights from autoencoder import DNN class RBM(object): def __init__(self, M, an_id): self.M = M self.id = an_id self.rng = RandomStreams() def fit(self, X, learning_rate=0.1, epochs=1, batch_sz=100, show_fig=False): # cast to float32 learning_rate = np.float32(learning_rate) N, D = X.shape n_batches = N // batch_sz W0 = init_weights((D, self.M)) self.W = theano.shared(W0, 'W_%s' % self.id) self.c = theano.shared(np.zeros(self.M), 'c_%s' % self.id) self.b = theano.shared(np.zeros(D), 'b_%s' % self.id) self.params = [self.W, self.c, self.b] self.forward_params = [self.W, self.c] X_in = T.matrix('X_%s' % self.id) # attach it to the object so it can be used later # must be sigmoidal because the output is also a sigmoid H = T.nnet.sigmoid(X_in.dot(self.W) + self.c) self.hidden_op = theano.function( inputs=[X_in], outputs=H, ) # we won't use this cost to do any updates # but we would like to see how this cost function changes # as we do contrastive divergence X_hat = self.forward_output(X_in) cost = -(X_in * T.log(X_hat) + (1 - X_in) * T.log(1 - X_hat)).mean() cost_op = theano.function( inputs=[X_in], outputs=cost, ) # do one round of Gibbs sampling to obtain X_sample H = self.sample_h_given_v(X_in) X_sample = self.sample_v_given_h(H) # define the objective, updates, and train function objective = T.mean(self.free_energy(X_in)) - T.mean(self.free_energy(X_sample)) # need to consider X_sample constant because you can't take the gradient of random numbers in Theano updates = [(p, p - learning_rate*T.grad(objective, p, consider_constant=[X_sample])) for p in self.params] train_op = theano.function( inputs=[X_in], updates=updates, ) costs = [] print("training rbm: %s" % self.id) for i in range(epochs): print("epoch:", i) X = shuffle(X) for j in range(n_batches): batch = X[j*batch_sz:(j*batch_sz + batch_sz)] train_op(batch) the_cost = cost_op(X) # technically we could also get the cost for Xtest here print("j / n_batches:", j, "/", n_batches, "cost:", the_cost) costs.append(the_cost) if show_fig: plt.plot(costs) plt.show() def free_energy(self, V): return -V.dot(self.b) - T.sum(T.log(1 + T.exp(V.dot(self.W) + self.c)), axis=1) def sample_h_given_v(self, V): p_h_given_v = T.nnet.sigmoid(V.dot(self.W) + self.c) h_sample = self.rng.binomial(size=p_h_given_v.shape, n=1, p=p_h_given_v) return h_sample def sample_v_given_h(self, H): p_v_given_h = T.nnet.sigmoid(H.dot(self.W.T) + self.b) v_sample = self.rng.binomial(size=p_v_given_h.shape, n=1, p=p_v_given_h) return v_sample def forward_hidden(self, X): return T.nnet.sigmoid(X.dot(self.W) + self.c) def forward_output(self, X): Z = self.forward_hidden(X) Y = T.nnet.sigmoid(Z.dot(self.W.T) + self.b) return Y @staticmethod def createFromArrays(W, c, b, an_id): rbm = AutoEncoder(W.shape[1], an_id) rbm.W = theano.shared(W, 'W_%s' % rbm.id) rbm.c = theano.shared(c, 'c_%s' % rbm.id) rbm.b = theano.shared(b, 'b_%s' % rbm.id) rbm.params = [rbm.W, rbm.c, rbm.b] rbm.forward_params = [rbm.W, rbm.c] return rbm def main(): Xtrain, Ytrain, Xtest, Ytest = getKaggleMNIST() dnn = DNN([1000, 750, 500], UnsupervisedModel=RBM) dnn.fit(Xtrain, Ytrain, Xtest, Ytest, epochs=3) # we compare with no pretraining in autoencoder.py if __name__ == '__main__': main() ================================================ FILE: unsupervised_class2/rbm_tf.py ================================================ # https://deeplearningcourses.com/c/unsupervised-deep-learning-in-python # https://www.udemy.com/unsupervised-deep-learning-in-python from __future__ import print_function, division from builtins import range # Note: you may need to update your version of future # sudo pip install -U future import numpy as np import tensorflow as tf import matplotlib.pyplot as plt from sklearn.utils import shuffle from util import getKaggleMNIST from autoencoder_tf import DNN class RBM(object): def __init__(self, D, M, an_id): self.D = D self.M = M self.id = an_id self.build(D, M) def set_session(self, session): self.session = session def build(self, D, M): # params self.W = tf.Variable(tf.random.normal(shape=(D, M)) * np.sqrt(2.0 / M)) # note: without limiting variance, you get numerical stability issues self.c = tf.Variable(np.zeros(M).astype(np.float32)) self.b = tf.Variable(np.zeros(D).astype(np.float32)) # data self.X_in = tf.compat.v1.placeholder(tf.float32, shape=(None, D)) # conditional probabilities # NOTE: tf.contrib.distributions.Bernoulli API has changed in Tensorflow v1.2 V = self.X_in p_h_given_v = tf.nn.sigmoid(tf.matmul(V, self.W) + self.c) self.p_h_given_v = p_h_given_v # save for later # self.rng_h_given_v = tf.contrib.distributions.Bernoulli( # probs=p_h_given_v, # dtype=tf.float32 # ) r = tf.random.uniform(shape=tf.shape(input=p_h_given_v)) H = tf.cast(r < p_h_given_v, dtype=tf.float32) p_v_given_h = tf.nn.sigmoid(tf.matmul(H, tf.transpose(a=self.W)) + self.b) # self.rng_v_given_h = tf.contrib.distributions.Bernoulli( # probs=p_v_given_h, # dtype=tf.float32 # ) r = tf.random.uniform(shape=tf.shape(input=p_v_given_h)) X_sample = tf.cast(r < p_v_given_h, dtype=tf.float32) # build the objective objective = tf.reduce_mean(input_tensor=self.free_energy(self.X_in)) - tf.reduce_mean(input_tensor=self.free_energy(X_sample)) self.train_op = tf.compat.v1.train.AdamOptimizer(1e-2).minimize(objective) # self.train_op = tf.train.GradientDescentOptimizer(1e-3).minimize(objective) # build the cost # we won't use this to optimize the model parameters # just to observe what happens during training logits = self.forward_logits(self.X_in) self.cost = tf.reduce_mean( input_tensor=tf.nn.sigmoid_cross_entropy_with_logits( labels=self.X_in, logits=logits, ) ) def fit(self, X, epochs=1, batch_sz=100, show_fig=False): N, D = X.shape n_batches = N // batch_sz costs = [] print("training rbm: %s" % self.id) for i in range(epochs): print("epoch:", i) X = shuffle(X) for j in range(n_batches): batch = X[j*batch_sz:(j*batch_sz + batch_sz)] _, c = self.session.run((self.train_op, self.cost), feed_dict={self.X_in: batch}) if j % 10 == 0: print("j / n_batches:", j, "/", n_batches, "cost:", c) costs.append(c) if show_fig: plt.plot(costs) plt.show() def free_energy(self, V): b = tf.reshape(self.b, (self.D, 1)) first_term = -tf.matmul(V, b) first_term = tf.reshape(first_term, (-1,)) second_term = -tf.reduce_sum( # tf.log(1 + tf.exp(tf.matmul(V, self.W) + self.c)), input_tensor=tf.nn.softplus(tf.matmul(V, self.W) + self.c), axis=1 ) return first_term + second_term def forward_hidden(self, X): return tf.nn.sigmoid(tf.matmul(X, self.W) + self.c) def forward_logits(self, X): Z = self.forward_hidden(X) return tf.matmul(Z, tf.transpose(a=self.W)) + self.b def forward_output(self, X): return tf.nn.sigmoid(self.forward_logits(X)) def transform(self, X): # accepts and returns a real numpy array # unlike forward_hidden and forward_output # which deal with tensorflow variables return self.session.run(self.p_h_given_v, feed_dict={self.X_in: X}) def main(): Xtrain, Ytrain, Xtest, Ytest = getKaggleMNIST() # same as autoencoder_tf.py Xtrain = Xtrain.astype(np.float32) Xtest = Xtest.astype(np.float32) _, D = Xtrain.shape K = len(set(Ytrain)) dnn = DNN(D, [1000, 750, 500], K, UnsupervisedModel=RBM) init_op = tf.compat.v1.global_variables_initializer() with tf.compat.v1.Session() as session: session.run(init_op) dnn.set_session(session) dnn.fit(Xtrain, Ytrain, Xtest, Ytest, pretrain=True, epochs=10) if __name__ == '__main__': main() ================================================ FILE: unsupervised_class2/sk_mlp.py ================================================ # https://deeplearningcourses.com/c/data-science-deep-learning-in-theano-tensorflow # https://www.udemy.com/data-science-deep-learning-in-theano-tensorflow from __future__ import print_function, division from future.utils import iteritems from builtins import range, input # Note: you may need to update your version of future # sudo pip install -U future import numpy as np from sklearn.neural_network import MLPRegressor from util import getKaggleMNIST # get data X, _, Xt, _ = getKaggleMNIST() # create the model and train it model = MLPRegressor() model.fit(X, X) # test the model print("Train R^2:", model.score(X, X)) print("Test R^2:", model.score(Xt, Xt)) Xhat = model.predict(X) mse = ((Xhat - X)**2).mean() print("Train MSE:", mse) Xhat = model.predict(Xt) mse = ((Xhat - Xt)**2).mean() print("Test MSE:", mse) ================================================ FILE: unsupervised_class2/tsne_books.py ================================================ # https://deeplearningcourses.com/c/unsupervised-deep-learning-in-python # https://www.udemy.com/unsupervised-deep-learning-in-python from __future__ import print_function, division from builtins import range # Note: you may need to update your version of future # sudo pip install -U future import nltk import numpy as np import matplotlib.pyplot as plt from nltk.stem import WordNetLemmatizer from sklearn.manifold import TSNE wordnet_lemmatizer = WordNetLemmatizer() titles = [line.rstrip() for line in open('../nlp_class/all_book_titles.txt')] # copy tokenizer from sentiment example stopwords = set(w.rstrip() for w in open('../nlp_class/stopwords.txt')) # add more stopwords specific to this problem stopwords = stopwords.union({ 'introduction', 'edition', 'series', 'application', 'approach', 'card', 'access', 'package', 'plus', 'etext', 'brief', 'vol', 'fundamental', 'guide', 'essential', 'printed', 'third', 'second', 'fourth', }) def my_tokenizer(s): s = s.lower() # downcase tokens = nltk.tokenize.word_tokenize(s) # split string into words (tokens) tokens = [t for t in tokens if len(t) > 2] # remove short words, they're probably not useful tokens = [wordnet_lemmatizer.lemmatize(t) for t in tokens] # put words into base form tokens = [t for t in tokens if t not in stopwords] # remove stopwords tokens = [t for t in tokens if not any(c.isdigit() for c in t)] # remove any digits, i.e. "3rd edition" return tokens # create a word-to-index map so that we can create our word-frequency vectors later # let's also save the tokenized versions so we don't have to tokenize again later word_index_map = {} current_index = 0 all_tokens = [] all_titles = [] index_word_map = [] for title in titles: try: title = title.encode('ascii', 'ignore') # this will throw exception if bad characters title = title.decode('utf-8') all_titles.append(title) tokens = my_tokenizer(title) all_tokens.append(tokens) for token in tokens: if token not in word_index_map: word_index_map[token] = current_index current_index += 1 index_word_map.append(token) except Exception as e: print(e) # now let's create our input matrices - just indicator variables for this example - works better than proportions def tokens_to_vector(tokens): x = np.zeros(len(word_index_map)) for t in tokens: i = word_index_map[t] x[i] = 1 return x N = len(all_tokens) D = len(word_index_map) X = np.zeros((D, N)) # terms will go along rows, documents along columns i = 0 for tokens in all_tokens: X[:,i] = tokens_to_vector(tokens) i += 1 print("X.shape:", X.shape) def main(): tsne = TSNE(perplexity=40) Z = tsne.fit_transform(X) plt.scatter(Z[:,0], Z[:,1]) for i in range(D): plt.annotate(s=index_word_map[i], xy=(Z[i,0], Z[i,1])) plt.show() if __name__ == '__main__': main() ================================================ FILE: unsupervised_class2/tsne_donut.py ================================================ # https://deeplearningcourses.com/c/unsupervised-deep-learning-in-python # https://www.udemy.com/unsupervised-deep-learning-in-python from __future__ import print_function, division from builtins import range # Note: you may need to update your version of future # sudo pip install -U future import numpy as np import matplotlib.pyplot as plt from sklearn.manifold import TSNE def get_donut_data(): N = 600 R_inner = 10 R_outer = 20 # distance from origin is radius + random normal # angle theta is uniformly distributed between (0, 2pi) R1 = np.random.randn(N//2) + R_inner theta = 2*np.pi*np.random.random(N//2) X_inner = np.concatenate([[R1 * np.cos(theta)], [R1 * np.sin(theta)]]).T R2 = np.random.randn(N//2) + R_outer theta = 2*np.pi*np.random.random(N//2) X_outer = np.concatenate([[R2 * np.cos(theta)], [R2 * np.sin(theta)]]).T X = np.concatenate([ X_inner, X_outer ]) Y = np.array([0]*(N//2) + [1]*(N//2)) return X, Y def main(): X, Y = get_donut_data() plt.scatter(X[:,0], X[:,1], s=100, c=Y, alpha=0.5) plt.show() tsne = TSNE(perplexity=40) Z = tsne.fit_transform(X) plt.scatter(Z[:,0], Z[:,1], s=100, c=Y, alpha=0.5) plt.show() if __name__ == '__main__': main() ================================================ FILE: unsupervised_class2/tsne_mnist.py ================================================ # https://deeplearningcourses.com/c/unsupervised-deep-learning-in-python # https://www.udemy.com/unsupervised-deep-learning-in-python from __future__ import print_function, division from builtins import range # Note: you may need to update your version of future # sudo pip install -U future import numpy as np import matplotlib.pyplot as plt from sklearn.manifold import TSNE from util import getKaggleMNIST import os import sys sys.path.append(os.path.abspath('..')) from unsupervised_class.kmeans_mnist import purity from sklearn.mixture import GaussianMixture def main(): Xtrain, Ytrain, _, _ = getKaggleMNIST() sample_size = 1000 X = Xtrain[:sample_size] Y = Ytrain[:sample_size] tsne = TSNE() Z = tsne.fit_transform(X) plt.scatter(Z[:,0], Z[:,1], s=100, c=Y, alpha=0.5) plt.show() # purity measure from unsupervised machine learning pt 1 # maximum purity is 1, higher is better gmm = GaussianMixture(n_components=10) gmm.fit(X) Rfull = gmm.predict_proba(X) print("Rfull.shape:", Rfull.shape) print("full purity:", purity(Y, Rfull)) # now try the same thing on the reduced data gmm.fit(Z) Rreduced = gmm.predict_proba(Z) print("reduced purity:", purity(Y, Rreduced)) if __name__ == '__main__': main() ================================================ FILE: unsupervised_class2/tsne_visualization.py ================================================ # https://deeplearningcourses.com/c/unsupervised-deep-learning-in-python # https://www.udemy.com/unsupervised-deep-learning-in-python from __future__ import print_function, division from builtins import range, input # Note: you may need to update your version of future # sudo pip install -U future import numpy as np import matplotlib.pyplot as plt from mpl_toolkits.mplot3d import Axes3D from sklearn.manifold import TSNE if __name__ == '__main__': # define the centers of each Gaussian cloud centers = np.array([ [ 1, 1, 1], [ 1, 1, -1], [ 1, -1, 1], [ 1, -1, -1], [-1, 1, 1], [-1, 1, -1], [-1, -1, 1], [-1, -1, -1], ])*3 # create the clouds, Gaussian samples centered at # each of the centers we just made data = [] pts_per_cloud = 100 for c in centers: cloud = np.random.randn(pts_per_cloud, 3) + c data.append(cloud) data = np.concatenate(data) # visualize the clouds in 3-D # add colors / labels so we can track where the points go colors = np.array([[i]*pts_per_cloud for i in range(len(centers))]).flatten() fig = plt.figure() ax = fig.add_subplot(111, projection='3d') ax.scatter(data[:,0], data[:,1], data[:,2], c=colors) plt.show() # perform dimensionality reduction tsne = TSNE() transformed = tsne.fit_transform(data) # visualize the clouds in 2-D plt.scatter(transformed[:,0], transformed[:,1], c=colors) plt.show() ================================================ FILE: unsupervised_class2/tsne_xor.py ================================================ # https://deeplearningcourses.com/c/unsupervised-deep-learning-in-python # https://www.udemy.com/unsupervised-deep-learning-in-python from __future__ import print_function, division from builtins import range # Note: you may need to update your version of future # sudo pip install -U future import numpy as np import matplotlib.pyplot as plt from sklearn.manifold import TSNE def get_xor_data(): X1 = np.random.random((100, 2)) X2 = np.random.random((100, 2)) - np.array([1, 1]) X3 = np.random.random((100, 2)) - np.array([1, 0]) X4 = np.random.random((100, 2)) - np.array([0, 1]) X = np.vstack((X1, X2, X3, X4)) Y = np.array([0]*200 + [1]*200) return X, Y def main(): X, Y = get_xor_data() plt.scatter(X[:,0], X[:,1], s=100, c=Y, alpha=0.5) plt.show() tsne = TSNE(perplexity=40) Z = tsne.fit_transform(X) plt.scatter(Z[:,0], Z[:,1], s=100, c=Y, alpha=0.5) plt.show() if __name__ == '__main__': main() ================================================ FILE: unsupervised_class2/umap_transformer.py ================================================ # https://deeplearningcourses.com/c/unsupervised-deep-learning-in-python # https://www.udemy.com/unsupervised-deep-learning-in-python from __future__ import print_function, division from builtins import range, input # Note: you may need to update your version of future # sudo pip install -U future import numpy as np import matplotlib.pyplot as plt from datetime import datetime from util import getKaggleMNIST from sklearn.linear_model import LogisticRegression from umap import UMAP # get the data Xtrain, Ytrain, Xtest, Ytest = getKaggleMNIST() print("Score without transformation:") model = LogisticRegression() model.fit(Xtrain, Ytrain) print(model.score(Xtrain, Ytrain)) print(model.score(Xtest, Ytest)) umapper = UMAP(n_neighbors=5, n_components=10) t0 = datetime.now() Ztrain = umapper.fit_transform(Xtrain) print("umap fit_transform took:", datetime.now() - t0) t0 = datetime.now() Ztest = umapper.transform(Xtest) print("umap transform took:", datetime.now() - t0) print("Score with transformation") model = LogisticRegression() t0 = datetime.now() model.fit(Ztrain, Ytrain) print("logistic regression fit took:", datetime.now() - t0) print(model.score(Ztrain, Ytrain)) print(model.score(Ztest, Ytest)) ================================================ FILE: unsupervised_class2/unsupervised.py ================================================ # https://deeplearningcourses.com/c/unsupervised-deep-learning-in-python # https://www.udemy.com/unsupervised-deep-learning-in-python from __future__ import print_function, division from builtins import range # Note: you may need to update your version of future # sudo pip install -U future import numpy as np import theano import theano.tensor as T import matplotlib.pyplot as plt from sklearn.utils import shuffle from sklearn.manifold import TSNE from sklearn.decomposition import PCA from theano.tensor.shared_randomstreams import RandomStreams from util import relu, error_rate, getKaggleMNIST, init_weights from autoencoder import AutoEncoder, momentum_updates from rbm import RBM class DBN(object): def __init__(self, hidden_layer_sizes, UnsupervisedModel=AutoEncoder): self.hidden_layers = [] count = 0 for M in hidden_layer_sizes: ae = UnsupervisedModel(M, count) self.hidden_layers.append(ae) count += 1 def fit(self, X, pretrain_epochs=1): self.D = X.shape[1] # save for later current_input = X for ae in self.hidden_layers: ae.fit(current_input, epochs=pretrain_epochs) # create current_input for the next layer current_input = ae.hidden_op(current_input) # return it here so we can use directly after fitting without calling forward return current_input def forward(self, X): Z = X for ae in self.hidden_layers: Z = ae.forward_hidden(Z) return Z def fit_to_input(self, k, learning_rate=1.0, mu=0.99, epochs=100000): # This is not very flexible, as you would ideally # like to be able to activate any node in any hidden # layer, not just the last layer. # Exercise for students: modify this function to be able # to activate neurons in the middle layers. # cast hyperperams learning_rate = np.float32(learning_rate) mu = np.float32(mu) # randomly initialize an image X0 = init_weights((1, self.D)) # make the image a shared so theano can update it X = theano.shared(X0, 'X_shared') # get the output of the neural network Y = self.forward(X) # t = np.zeros(self.hidden_layers[-1].M) # t[k] = 1 # # choose Y[0] b/c it's shape 1xD, we want just a D-size vector, not 1xD matrix # cost = -(t*T.log(Y[0]) + (1 - t)*(T.log(1 - Y[0]))).sum() # k = which output node to look at # there is only 1 image, so we select the 0th row of X cost = -T.log(Y[0,k]) updates = momentum_updates(cost, [X], mu, learning_rate) train = theano.function( inputs=[], outputs=[cost, Y], updates=updates, ) costs = [] for i in range(epochs): if i % 10000 == 0: print("epoch:", i) the_cost, out = train() if i == 0: print("out.shape:", out.shape) costs.append(the_cost) plt.plot(costs) plt.show() return X.get_value() def save(self, filename): arrays = [p.get_value() for layer in self.hidden_layers for p in layer.params] np.savez(filename, *arrays) @staticmethod def load(filename, UnsupervisedModel=AutoEncoder): dbn = DBN([], UnsupervisedModel) npz = np.load(filename) dbn.hidden_layers = [] count = 0 for i in range(0, len(npz.files), 3): W = npz['arr_%s' % i] bh = npz['arr_%s' % (i + 1)] bo = npz['arr_%s' % (i + 2)] if i == 0: dbn.D = W.shape[0] ae = UnsupervisedModel.createFromArrays(W, bh, bo, count) dbn.hidden_layers.append(ae) count += 1 return dbn def main(): Xtrain, Ytrain, Xtest, Ytest = getKaggleMNIST() dbn = DBN([1000, 750, 500], UnsupervisedModel=AutoEncoder) # dbn = DBN([1000, 750, 500, 10]) output = dbn.fit(Xtrain, pretrain_epochs=2) print("output.shape", output.shape) # sample before using t-SNE because it requires lots of RAM sample_size = 600 tsne = TSNE() reduced = tsne.fit_transform(output[:sample_size]) plt.scatter(reduced[:,0], reduced[:,1], s=100, c=Ytrain[:sample_size], alpha=0.5) plt.title("t-SNE visualization on data transformed by DBN") plt.show() # t-SNE on raw data reduced = tsne.fit_transform(Xtrain[:sample_size]) plt.scatter(reduced[:,0], reduced[:,1], s=100, c=Ytrain[:sample_size], alpha=0.5) plt.title("t-SNE visualization on raw data") plt.show() pca = PCA() reduced = pca.fit_transform(output) plt.scatter(reduced[:,0], reduced[:,1], s=100, c=Ytrain, alpha=0.5) plt.title("PCA visualization on data transformed by DBN") plt.show() if __name__ == '__main__': main() ================================================ FILE: unsupervised_class2/util.py ================================================ # https://deeplearningcourses.com/c/unsupervised-deep-learning-in-python # https://www.udemy.com/unsupervised-deep-learning-in-python from __future__ import print_function, division from builtins import range # Note: you may need to update your version of future # sudo pip install -U future import numpy as np import pandas as pd from sklearn.utils import shuffle def relu(x): return x * (x > 0) def error_rate(p, t): return np.mean(p != t) def getKaggleMNIST(): # MNIST data: # column 0 is labels # column 1-785 is data, with values 0 .. 255 # total size of CSV: (42000, 1, 28, 28) train = pd.read_csv('../large_files/train.csv').values.astype(np.float32) train = shuffle(train) Xtrain = train[:-1000,1:] / 255 Ytrain = train[:-1000,0].astype(np.int32) Xtest = train[-1000:,1:] / 255 Ytest = train[-1000:,0].astype(np.int32) return Xtrain, Ytrain, Xtest, Ytest def init_weights(shape): w = np.random.randn(*shape) / np.sqrt(sum(shape)) return w.astype(np.float32) ================================================ FILE: unsupervised_class2/vanishing.py ================================================ # https://deeplearningcourses.com/c/unsupervised-deep-learning-in-python # https://www.udemy.com/unsupervised-deep-learning-in-python from __future__ import print_function, division from builtins import range # Note: you may need to update your version of future # sudo pip install -U future import numpy as np import theano import theano.tensor as T import matplotlib.pyplot as plt from sklearn.utils import shuffle from autoencoder import T_shared_zeros_like32, momentum_updates from util import relu, error_rate, getKaggleMNIST, init_weights class HiddenLayer(object): def __init__(self, D, M): W = init_weights((D, M)) b = np.zeros(M, dtype=np.float32) self.W = theano.shared(W) self.b = theano.shared(b) self.params = [self.W, self.b] def forward(self, X): # we want to use the sigmoid so we can observe # the vanishing gradient! return T.nnet.sigmoid(X.dot(self.W) + self.b) class ANN(object): def __init__(self, hidden_layer_sizes): self.hidden_layer_sizes = hidden_layer_sizes def fit(self, X, Y, learning_rate=0.01, mu=0.99, epochs=30, batch_sz=100): # cast to float32 learning_rate = np.float32(learning_rate) mu = np.float32(mu) N, D = X.shape K = len(set(Y)) self.hidden_layers = [] mi = D for mo in self.hidden_layer_sizes: h = HiddenLayer(mi, mo) self.hidden_layers.append(h) mi = mo # initialize logistic regression layer W = init_weights((mo, K)) b = np.zeros(K, dtype=np.float32) self.W = theano.shared(W) self.b = theano.shared(b) self.params = [self.W, self.b] self.allWs = [] for h in self.hidden_layers: self.params += h.params self.allWs.append(h.W) self.allWs.append(self.W) X_in = T.matrix('X_in') targets = T.ivector('Targets') pY = self.forward(X_in) cost = -T.mean( T.log(pY[T.arange(pY.shape[0]), targets]) ) prediction = self.predict(X_in) updates = momentum_updates(cost, self.params, mu, learning_rate) train_op = theano.function( inputs=[X_in, targets], outputs=[cost, prediction], updates=updates, ) n_batches = N // batch_sz costs = [] lastWs = [W.get_value() for W in self.allWs] W_changes = [] print("supervised training...") for i in range(epochs): print("epoch:", i) X, Y = shuffle(X, Y) for j in range(n_batches): Xbatch = X[j*batch_sz:(j*batch_sz + batch_sz)] Ybatch = Y[j*batch_sz:(j*batch_sz + batch_sz)] c, p = train_op(Xbatch, Ybatch) if j % 100 == 0: print("j / n_batches:", j, "/", n_batches, "cost:", c, "error:", error_rate(p, Ybatch)) costs.append(c) # log changes in all Ws W_change = [np.abs(W.get_value() - lastW).mean() for W, lastW in zip(self.allWs, lastWs)] W_changes.append(W_change) lastWs = [W.get_value() for W in self.allWs] W_changes = np.array(W_changes) plt.subplot(2,1,1) for i in range(W_changes.shape[1]): plt.plot(W_changes[:,i], label='layer %s' % i) plt.legend() # plt.show() plt.subplot(2,1,2) plt.plot(costs) plt.show() def predict(self, X): return T.argmax(self.forward(X), axis=1) def forward(self, X): Z = X for h in self.hidden_layers: Z = h.forward(Z) Y = T.nnet.softmax(Z.dot(self.W) + self.b) return Y def main(): Xtrain, Ytrain, Xtest, Ytest = getKaggleMNIST() dnn = ANN([1000, 750, 500]) dnn.fit(Xtrain, Ytrain) if __name__ == '__main__': main() ================================================ FILE: unsupervised_class2/visualize_features.py ================================================ # https://deeplearningcourses.com/c/unsupervised-deep-learning-in-python # https://www.udemy.com/unsupervised-deep-learning-in-python from __future__ import print_function, division from builtins import range, input # Note: you may need to update your version of future # sudo pip install -U future import numpy as np import theano import theano.tensor as T import matplotlib.pyplot as plt from sklearn.utils import shuffle from theano.tensor.shared_randomstreams import RandomStreams from util import relu, error_rate, getKaggleMNIST, init_weights from unsupervised import DBN from rbm import RBM def main(loadfile=None, savefile=None): Xtrain, Ytrain, Xtest, Ytest = getKaggleMNIST() if loadfile: dbn = DBN.load(loadfile) else: dbn = DBN([1000, 750, 500, 10]) # AutoEncoder is default # dbn = DBN([1000, 750, 500, 10], UnsupervisedModel=RBM) dbn.fit(Xtrain, pretrain_epochs=2) if savefile: dbn.save(savefile) # first layer features # initial weight is D x M W = dbn.hidden_layers[0].W.eval() for i in range(dbn.hidden_layers[0].M): imgplot = plt.imshow(W[:,i].reshape(28, 28), cmap='gray') plt.show() should_quit = input("Show more? Enter 'n' to quit\n") if should_quit == 'n': break # features learned in the last layer for k in range(dbn.hidden_layers[-1].M): # activate the kth node X = dbn.fit_to_input(k) imgplot = plt.imshow(X.reshape(28, 28), cmap='gray') plt.show() if k < dbn.hidden_layers[-1].M - 1: should_quit = input("Show more? Enter 'n' to quit\n") if should_quit == 'n': break if __name__ == '__main__': # to load a saved file # main(loadfile='rbm15.npz') # to neither load nor save main() # to save a trained unsupervised deep network # main(savefile='rbm15.npz') ================================================ FILE: unsupervised_class2/xwing.py ================================================ # https://deeplearningcourses.com/c/unsupervised-deep-learning-in-python # https://www.udemy.com/unsupervised-deep-learning-in-python from __future__ import print_function, division from builtins import range # Note: you may need to update your version of future # sudo pip install -U future import numpy as np import theano import theano.tensor as T import matplotlib.pyplot as plt from sklearn.utils import shuffle from util import relu, error_rate, getKaggleMNIST, init_weights from autoencoder import momentum_updates # new additions used to compare purity measure using GMM import os import sys sys.path.append(os.path.abspath('..')) from unsupervised_class.kmeans_mnist import purity from sklearn.mixture import GaussianMixture class Layer(object): def __init__(self, m1, m2): W = init_weights((m1, m2)) bi = np.zeros(m2, dtype=np.float32) bo = np.zeros(m1, dtype=np.float32) self.W = theano.shared(W) self.bi = theano.shared(bi) self.bo = theano.shared(bo) self.params = [self.W, self.bi, self.bo] def forward(self, X): return T.nnet.sigmoid(X.dot(self.W) + self.bi) def forwardT(self, X): return T.nnet.sigmoid(X.dot(self.W.T) + self.bo) class DeepAutoEncoder(object): def __init__(self, hidden_layer_sizes): self.hidden_layer_sizes = hidden_layer_sizes def fit(self, X, learning_rate=0.5, mu=0.99, epochs=50, batch_sz=100, show_fig=False): # cast hyperparams learning_rate = np.float32(learning_rate) mu = np.float32(mu) N, D = X.shape n_batches = N // batch_sz mi = D self.layers = [] self.params = [] for mo in self.hidden_layer_sizes: layer = Layer(mi, mo) self.layers.append(layer) self.params += layer.params mi = mo X_in = T.matrix('X') X_hat = self.forward(X_in) cost = -(X_in * T.log(X_hat) + (1 - X_in) * T.log(1 - X_hat)).mean() cost_op = theano.function( inputs=[X_in], outputs=cost, ) updates = momentum_updates(cost, self.params, mu, learning_rate) train_op = theano.function( inputs=[X_in], outputs=cost, updates=updates, ) costs = [] for i in range(epochs): print("epoch:", i) X = shuffle(X) for j in range(n_batches): batch = X[j*batch_sz:(j*batch_sz + batch_sz)] c = train_op(batch) if j % 100 == 0: print("j / n_batches:", j, "/", n_batches, "cost:", c) costs.append(c) if show_fig: plt.plot(costs) plt.show() def forward(self, X): Z = X for layer in self.layers: Z = layer.forward(Z) self.map2center = theano.function( inputs=[X], outputs=Z, ) for i in range(len(self.layers)-1, -1, -1): Z = self.layers[i].forwardT(Z) return Z def main(): Xtrain, Ytrain, Xtest, Ytest = getKaggleMNIST() dae = DeepAutoEncoder([500, 300, 2]) dae.fit(Xtrain) mapping = dae.map2center(Xtrain) plt.scatter(mapping[:,0], mapping[:,1], c=Ytrain, s=100, alpha=0.5) plt.show() # purity measure from unsupervised machine learning pt 1 # NOTE: this will take a long time (i.e. just leave it overnight) gmm = GaussianMixture(n_components=10) gmm.fit(Xtrain) print("Finished GMM training") responsibilities_full = gmm.predict_proba(Xtrain) print("full purity:", purity(Ytrain, responsibilities_full)) gmm.fit(mapping) responsibilities_reduced = gmm.predict_proba(mapping) print("reduced purity:", purity(Ytrain, responsibilities_reduced)) if __name__ == '__main__': main() ================================================ FILE: unsupervised_class3/autoencoder_tf.py ================================================ # https://deeplearningcourses.com/c/deep-learning-gans-and-variational-autoencoders # https://www.udemy.com/deep-learning-gans-and-variational-autoencoders from __future__ import print_function, division from builtins import range, input # Note: you may need to update your version of future # sudo pip install -U future import util import numpy as np import tensorflow as tf import matplotlib.pyplot as plt class Autoencoder: def __init__(self, D, M): # represents a batch of training data self.X = tf.placeholder(tf.float32, shape=(None, D)) # input -> hidden self.W = tf.Variable(tf.random_normal(shape=(D, M)) * np.sqrt(2.0 / M)) self.b = tf.Variable(np.zeros(M).astype(np.float32)) # hidden -> output self.V = tf.Variable(tf.random_normal(shape=(M, D)) * np.sqrt(2.0 / D)) self.c = tf.Variable(np.zeros(D).astype(np.float32)) # construct the reconstruction self.Z = tf.nn.relu(tf.matmul(self.X, self.W) + self.b) logits = tf.matmul(self.Z, self.V) + self.c self.X_hat = tf.nn.sigmoid(logits) # compute the cost self.cost = tf.reduce_sum( tf.nn.sigmoid_cross_entropy_with_logits( labels=self.X, logits=logits ) ) # make the trainer self.train_op = tf.train.RMSPropOptimizer(learning_rate=0.001).minimize(self.cost) # set up session and variables for later self.init_op = tf.global_variables_initializer() self.sess = tf.InteractiveSession() self.sess.run(self.init_op) def fit(self, X, epochs=30, batch_sz=64): costs = [] n_batches = len(X) // batch_sz print("n_batches:", n_batches) for i in range(epochs): print("epoch:", i) np.random.shuffle(X) for j in range(n_batches): batch = X[j*batch_sz:(j+1)*batch_sz] _, c, = self.sess.run((self.train_op, self.cost), feed_dict={self.X: batch}) c /= batch_sz # just debugging costs.append(c) if j % 100 == 0: print("iter: %d, cost: %.3f" % (j, c)) plt.plot(costs) plt.show() def predict(self, X): return self.sess.run(self.X_hat, feed_dict={self.X: X}) def main(): X, Y = util.get_mnist() model = Autoencoder(784, 300) model.fit(X) # plot reconstruction done = False while not done: i = np.random.choice(len(X)) x = X[i] im = model.predict([x]).reshape(28, 28) plt.subplot(1,2,1) plt.imshow(x.reshape(28, 28), cmap='gray') plt.title("Original") plt.subplot(1,2,2) plt.imshow(im, cmap='gray') plt.title("Reconstruction") plt.show() ans = input("Generate another?") if ans and ans[0] in ('n' or 'N'): done = True if __name__ == '__main__': main() ================================================ FILE: unsupervised_class3/autoencoder_theano.py ================================================ # https://deeplearningcourses.com/c/deep-learning-gans-and-variational-autoencoders # https://www.udemy.com/deep-learning-gans-and-variational-autoencoders from __future__ import print_function, division from builtins import range, input # Note: you may need to update your version of future # sudo pip install -U future import util import numpy as np import theano import theano.tensor as T import matplotlib.pyplot as plt class Autoencoder: def __init__(self, D, M): # represents a batch of training data self.X = T.matrix('X') # input -> hidden self.W = theano.shared(np.random.randn(D, M) * np.sqrt(2.0 / M)) self.b = theano.shared(np.zeros(M)) # hidden -> output self.V = theano.shared(np.random.randn(M, D) * np.sqrt(2.0 / D)) self.c = theano.shared(np.zeros(D)) # construct the reconstruction self.Z = T.nnet.relu(self.X.dot(self.W) + self.b) self.X_hat = T.nnet.sigmoid(self.Z.dot(self.V) + self.c) # compute the cost self.cost = T.sum( T.nnet.binary_crossentropy( output=self.X_hat, target=self.X, ) ) # define the updates params = [self.W, self.b, self.V, self.c] grads = T.grad(self.cost, params) # rmsprop decay = 0.9 learning_rate = 0.001 # for rmsprop cache = [theano.shared(np.ones_like(p.get_value())) for p in params] new_cache = [decay*c + (1-decay)*g*g for p, c, g in zip(params, cache, grads)] updates = [ (c, new_c) for c, new_c in zip(cache, new_cache) ] + [ (p, p - learning_rate*g/T.sqrt(new_c + 1e-10)) for p, new_c, g in zip(params, new_cache, grads) ] # now define callable functions self.train_op = theano.function( inputs=[self.X], outputs=self.cost, updates=updates ) self.predict = theano.function( inputs=[self.X], outputs=self.X_hat ) def fit(self, X, epochs=30, batch_sz=64): costs = [] n_batches = len(X) // batch_sz print("n_batches:", n_batches) for i in range(epochs): print("epoch:", i) np.random.shuffle(X) for j in range(n_batches): batch = X[j*batch_sz:(j+1)*batch_sz] c = self.train_op(batch) c /= batch_sz # just debugging costs.append(c) if j % 100 == 0: print("iter: %d, cost: %.3f" % (j, c)) plt.plot(costs) plt.show() def main(): X, Y = util.get_mnist() model = Autoencoder(784, 300) model.fit(X) # plot reconstruction done = False while not done: i = np.random.choice(len(X)) x = X[i] im = model.predict([x]).reshape(28, 28) plt.subplot(1,2,1) plt.imshow(x.reshape(28, 28), cmap='gray') plt.title("Original") plt.subplot(1,2,2) plt.imshow(im, cmap='gray') plt.title("Reconstruction") plt.show() ans = input("Generate another?") if ans and ans[0] in ('n' or 'N'): done = True if __name__ == '__main__': main() ================================================ FILE: unsupervised_class3/bayes_classifier_gaussian.py ================================================ # https://deeplearningcourses.com/c/deep-learning-gans-and-variational-autoencoders # https://www.udemy.com/deep-learning-gans-and-variational-autoencoders from __future__ import print_function, division from builtins import range, input # Note: you may need to update your version of future # sudo pip install -U future import util import numpy as np import matplotlib.pyplot as plt from scipy.stats import multivariate_normal as mvn def clamp_sample(x): x = np.minimum(x, 1) x = np.maximum(x, 0) return x class BayesClassifier: def fit(self, X, Y): # assume classes are numbered 0...K-1 self.K = len(set(Y)) self.gaussians = [] self.p_y = np.zeros(self.K) for k in range(self.K): Xk = X[Y == k] self.p_y[k] = len(Xk) mean = Xk.mean(axis=0) cov = np.cov(Xk.T) g = {'m': mean, 'c': cov} self.gaussians.append(g) # normalize p(y) self.p_y /= self.p_y.sum() def sample_given_y(self, y): g = self.gaussians[y] return clamp_sample( mvn.rvs(mean=g['m'], cov=g['c']) ) def sample(self): y = np.random.choice(self.K, p=self.p_y) return clamp_sample( self.sample_given_y(y) ) if __name__ == '__main__': X, Y = util.get_mnist() clf = BayesClassifier() clf.fit(X, Y) for k in range(clf.K): # show one sample for each class # also show the mean image learned sample = clf.sample_given_y(k).reshape(28, 28) mean = clf.gaussians[k]['m'].reshape(28, 28) plt.subplot(1,2,1) plt.imshow(sample, cmap='gray') plt.title("Sample") plt.subplot(1,2,2) plt.imshow(mean, cmap='gray') plt.title("Mean") plt.show() # generate a random sample sample = clf.sample().reshape(28, 28) plt.imshow(sample, cmap='gray') plt.title("Random Sample from Random Class") plt.show() ================================================ FILE: unsupervised_class3/bayes_classifier_gmm.py ================================================ # https://deeplearningcourses.com/c/deep-learning-gans-and-variational-autoencoders # https://www.udemy.com/deep-learning-gans-and-variational-autoencoders from __future__ import print_function, division from builtins import range, input # Note: you may need to update your version of future # sudo pip install -U future import util import numpy as np import matplotlib.pyplot as plt from sklearn.mixture import BayesianGaussianMixture def clamp_sample(x): x = np.minimum(x, 1) x = np.maximum(x, 0) return x class BayesClassifier: def fit(self, X, Y): # assume classes are numbered 0...K-1 self.K = len(set(Y)) self.gaussians = [] self.p_y = np.zeros(self.K) for k in range(self.K): print("Fitting gmm", k) Xk = X[Y == k] self.p_y[k] = len(Xk) gmm = BayesianGaussianMixture(n_components=10) gmm.fit(Xk) self.gaussians.append(gmm) # normalize p(y) self.p_y /= self.p_y.sum() def sample_given_y(self, y): gmm = self.gaussians[y] sample = gmm.sample() # note: sample returns a tuple containing 2 things: # 1) the sample # 2) which cluster it came from # we'll use (2) to obtain the means so we can plot # them like we did in the previous script # we cheat by looking at "non-public" params in # the sklearn source code mean = gmm.means_[sample[1]] return clamp_sample( sample[0].reshape(28, 28) ), mean.reshape(28, 28) def sample(self): y = np.random.choice(self.K, p=self.p_y) return clamp_sample( self.sample_given_y(y) ) if __name__ == '__main__': X, Y = util.get_mnist() clf = BayesClassifier() clf.fit(X, Y) for k in range(clf.K): # show one sample for each class # also show the mean image learned sample, mean = clf.sample_given_y(k) plt.subplot(1,2,1) plt.imshow(sample, cmap='gray') plt.title("Sample") plt.subplot(1,2,2) plt.imshow(mean, cmap='gray') plt.title("Mean") plt.show() # generate a random sample sample, mean = clf.sample() plt.subplot(1,2,1) plt.imshow(sample, cmap='gray') plt.title("Random Sample from Random Class") plt.subplot(1,2,2) plt.imshow(mean, cmap='gray') plt.title("Corresponding Cluster Mean") plt.show() ================================================ FILE: unsupervised_class3/dcgan_tf.py ================================================ # https://deeplearningcourses.com/c/deep-learning-gans-and-variational-autoencoders # https://www.udemy.com/deep-learning-gans-and-variational-autoencoders from __future__ import print_function, division from builtins import range, input # Note: you may need to update your version of future # sudo pip install -U future import os import util import scipy as sp import numpy as np import tensorflow as tf import matplotlib.pyplot as plt from datetime import datetime # some constants LEARNING_RATE = 0.0002 BETA1 = 0.5 BATCH_SIZE = 64 EPOCHS = 2 SAVE_SAMPLE_PERIOD = 50 # make dir to save samples if not os.path.exists('samples'): os.mkdir('samples') def lrelu(x, alpha=0.2): return tf.maximum(alpha*x, x) class ConvLayer: def __init__(self, name, mi, mo, apply_batch_norm, filtersz=5, stride=2, f=tf.nn.relu): # mi = input feature map size # mo = output feature map size # self.W = tf.Variable(0.02*tf.random_normal(shape=(filtersz, filtersz, mi, mo))) # self.b = tf.Variable(np.zeros(mo, dtype=np.float32)) self.W = tf.get_variable( "W_%s" % name, shape=(filtersz, filtersz, mi, mo), # initializer=tf.contrib.layers.xavier_initializer(), initializer=tf.truncated_normal_initializer(stddev=0.02), ) self.b = tf.get_variable( "b_%s" % name, shape=(mo,), initializer=tf.zeros_initializer(), ) self.name = name self.f = f self.stride = stride self.apply_batch_norm = apply_batch_norm self.params = [self.W, self.b] def forward(self, X, reuse, is_training): # print("**************** reuse:", reuse) conv_out = tf.nn.conv2d( X, self.W, strides=[1, self.stride, self.stride, 1], padding='SAME' ) conv_out = tf.nn.bias_add(conv_out, self.b) # apply batch normalization if self.apply_batch_norm: conv_out = tf.contrib.layers.batch_norm( conv_out, decay=0.9, updates_collections=None, epsilon=1e-5, scale=True, is_training=is_training, reuse=reuse, scope=self.name, ) return self.f(conv_out) class FractionallyStridedConvLayer: def __init__(self, name, mi, mo, output_shape, apply_batch_norm, filtersz=5, stride=2, f=tf.nn.relu): # mi = input feature map size # mo = output feature map size # NOTE!!! shape is specified in the OPPOSITE way from regular conv # self.W = tf.Variable(0.02*tf.random_normal(shape=(filtersz, filtersz, mo, mi))) # self.b = tf.Variable(np.zeros(mo, dtype=np.float32)) self.W = tf.get_variable( "W_%s" % name, shape=(filtersz, filtersz, mo, mi), # initializer=tf.contrib.layers.xavier_initializer(), initializer=tf.random_normal_initializer(stddev=0.02), ) self.b = tf.get_variable( "b_%s" % name, shape=(mo,), initializer=tf.zeros_initializer(), ) self.f = f self.stride = stride self.name = name self.output_shape = output_shape self.apply_batch_norm = apply_batch_norm self.params = [self.W, self.b] def forward(self, X, reuse, is_training): conv_out = tf.nn.conv2d_transpose( value=X, filter=self.W, output_shape=self.output_shape, strides=[1, self.stride, self.stride, 1], ) conv_out = tf.nn.bias_add(conv_out, self.b) # apply batch normalization if self.apply_batch_norm: conv_out = tf.contrib.layers.batch_norm( conv_out, decay=0.9, updates_collections=None, epsilon=1e-5, scale=True, is_training=is_training, reuse=reuse, scope=self.name, ) return self.f(conv_out) class DenseLayer(object): def __init__(self, name, M1, M2, apply_batch_norm, f=tf.nn.relu): self.W = tf.get_variable( "W_%s" % name, shape=(M1, M2), initializer=tf.random_normal_initializer(stddev=0.02), ) self.b = tf.get_variable( "b_%s" % name, shape=(M2,), initializer=tf.zeros_initializer(), ) self.f = f self.name = name self.apply_batch_norm = apply_batch_norm self.params = [self.W, self.b] def forward(self, X, reuse, is_training): a = tf.matmul(X, self.W) + self.b # apply batch normalization if self.apply_batch_norm: a = tf.contrib.layers.batch_norm( a, decay=0.9, updates_collections=None, epsilon=1e-5, scale=True, is_training=is_training, reuse=reuse, scope=self.name, ) return self.f(a) class DCGAN: def __init__(self, img_length, num_colors, d_sizes, g_sizes): # save for later self.img_length = img_length self.num_colors = num_colors self.latent_dims = g_sizes['z'] # define the input data self.X = tf.placeholder( tf.float32, shape=(None, img_length, img_length, num_colors), name='X' ) self.Z = tf.placeholder( tf.float32, shape=(None, self.latent_dims), name='Z' ) # note: by making batch_sz a placeholder, we can specify a variable # number of samples in the FS-conv operation where we are required # to pass in output_shape # we need only pass in the batch size via feed_dict self.batch_sz = tf.placeholder(tf.int32, shape=(), name='batch_sz') # build the discriminator logits = self.build_discriminator(self.X, d_sizes) # build generator self.sample_images = self.build_generator(self.Z, g_sizes) # get sample logits with tf.variable_scope("discriminator") as scope: scope.reuse_variables() sample_logits = self.d_forward(self.sample_images, True) # get sample images for test time (batch norm is different) with tf.variable_scope("generator") as scope: scope.reuse_variables() self.sample_images_test = self.g_forward( self.Z, reuse=True, is_training=False ) # build costs self.d_cost_real = tf.nn.sigmoid_cross_entropy_with_logits( logits=logits, labels=tf.ones_like(logits) ) self.d_cost_fake = tf.nn.sigmoid_cross_entropy_with_logits( logits=sample_logits, labels=tf.zeros_like(sample_logits) ) self.d_cost = tf.reduce_mean(self.d_cost_real) + tf.reduce_mean(self.d_cost_fake) self.g_cost = tf.reduce_mean( tf.nn.sigmoid_cross_entropy_with_logits( logits=sample_logits, labels=tf.ones_like(sample_logits) ) ) real_predictions = tf.cast(logits > 0, tf.float32) fake_predictions = tf.cast(sample_logits < 0, tf.float32) num_predictions = 2.0*BATCH_SIZE num_correct = tf.reduce_sum(real_predictions) + tf.reduce_sum(fake_predictions) self.d_accuracy = num_correct / num_predictions # optimizers self.d_params = [t for t in tf.trainable_variables() if t.name.startswith('d')] self.g_params = [t for t in tf.trainable_variables() if t.name.startswith('g')] self.d_train_op = tf.train.AdamOptimizer( LEARNING_RATE, beta1=BETA1 ).minimize( self.d_cost, var_list=self.d_params ) self.g_train_op = tf.train.AdamOptimizer( LEARNING_RATE, beta1=BETA1 ).minimize( self.g_cost, var_list=self.g_params ) # show_all_variables() # exit() # set up session and variables for later self.init_op = tf.global_variables_initializer() self.sess = tf.InteractiveSession() self.sess.run(self.init_op) def build_discriminator(self, X, d_sizes): with tf.variable_scope("discriminator") as scope: # build conv layers self.d_convlayers = [] mi = self.num_colors dim = self.img_length count = 0 for mo, filtersz, stride, apply_batch_norm in d_sizes['conv_layers']: # make up a name - used for get_variable name = "convlayer_%s" % count count += 1 layer = ConvLayer(name, mi, mo, apply_batch_norm, filtersz, stride, lrelu) self.d_convlayers.append(layer) mi = mo print("dim:", dim) dim = int(np.ceil(float(dim) / stride)) mi = mi * dim * dim # build dense layers self.d_denselayers = [] for mo, apply_batch_norm in d_sizes['dense_layers']: name = "denselayer_%s" % count count += 1 layer = DenseLayer(name, mi, mo, apply_batch_norm, lrelu) mi = mo self.d_denselayers.append(layer) # final logistic layer name = "denselayer_%s" % count self.d_finallayer = DenseLayer(name, mi, 1, False, lambda x: x) # get the logits logits = self.d_forward(X) # build the cost later return logits def d_forward(self, X, reuse=None, is_training=True): # encapsulate this because we use it twice output = X for layer in self.d_convlayers: output = layer.forward(output, reuse, is_training) output = tf.contrib.layers.flatten(output) for layer in self.d_denselayers: output = layer.forward(output, reuse, is_training) logits = self.d_finallayer.forward(output, reuse, is_training) return logits def build_generator(self, Z, g_sizes): with tf.variable_scope("generator") as scope: # determine the size of the data at each step dims = [self.img_length] dim = self.img_length for _, _, stride, _ in reversed(g_sizes['conv_layers']): dim = int(np.ceil(float(dim) / stride)) dims.append(dim) # note: dims is actually backwards # the first layer of the generator is actually last # so let's reverse it dims = list(reversed(dims)) print("dims:", dims) self.g_dims = dims # dense layers mi = self.latent_dims self.g_denselayers = [] count = 0 for mo, apply_batch_norm in g_sizes['dense_layers']: name = "g_denselayer_%s" % count count += 1 layer = DenseLayer(name, mi, mo, apply_batch_norm) self.g_denselayers.append(layer) mi = mo # final dense layer mo = g_sizes['projection'] * dims[0] * dims[0] name = "g_denselayer_%s" % count layer = DenseLayer(name, mi, mo, not g_sizes['bn_after_project']) self.g_denselayers.append(layer) # fs-conv layers mi = g_sizes['projection'] self.g_convlayers = [] # output may use tanh or sigmoid num_relus = len(g_sizes['conv_layers']) - 1 activation_functions = [tf.nn.relu]*num_relus + [g_sizes['output_activation']] for i in range(len(g_sizes['conv_layers'])): name = "fs_convlayer_%s" % i mo, filtersz, stride, apply_batch_norm = g_sizes['conv_layers'][i] f = activation_functions[i] output_shape = [self.batch_sz, dims[i+1], dims[i+1], mo] print("mi:", mi, "mo:", mo, "outp shape:", output_shape) layer = FractionallyStridedConvLayer( name, mi, mo, output_shape, apply_batch_norm, filtersz, stride, f ) self.g_convlayers.append(layer) mi = mo # get the output self.g_sizes = g_sizes return self.g_forward(Z) def g_forward(self, Z, reuse=None, is_training=True): # dense layers output = Z for layer in self.g_denselayers: output = layer.forward(output, reuse, is_training) # project and reshape output = tf.reshape( output, [-1, self.g_dims[0], self.g_dims[0], self.g_sizes['projection']], ) # apply batch norm if self.g_sizes['bn_after_project']: output = tf.contrib.layers.batch_norm( output, decay=0.9, updates_collections=None, epsilon=1e-5, scale=True, is_training=is_training, reuse=reuse, scope='bn_after_project' ) # pass through fs-conv layers for layer in self.g_convlayers: output = layer.forward(output, reuse, is_training) return output def fit(self, X): d_costs = [] g_costs = [] N = len(X) n_batches = N // BATCH_SIZE total_iters = 0 for i in range(EPOCHS): print("epoch:", i) np.random.shuffle(X) for j in range(n_batches): t0 = datetime.now() if type(X[0]) is str: # is celeb dataset batch = util.files2images( X[j*BATCH_SIZE:(j+1)*BATCH_SIZE] ) else: # is mnist dataset batch = X[j*BATCH_SIZE:(j+1)*BATCH_SIZE] Z = np.random.uniform(-1, 1, size=(BATCH_SIZE, self.latent_dims)) # train the discriminator _, d_cost, d_acc = self.sess.run( (self.d_train_op, self.d_cost, self.d_accuracy), feed_dict={self.X: batch, self.Z: Z, self.batch_sz: BATCH_SIZE}, ) d_costs.append(d_cost) # train the generator _, g_cost1 = self.sess.run( (self.g_train_op, self.g_cost), feed_dict={self.Z: Z, self.batch_sz: BATCH_SIZE}, ) # g_costs.append(g_cost1) _, g_cost2 = self.sess.run( (self.g_train_op, self.g_cost), feed_dict={self.Z: Z, self.batch_sz: BATCH_SIZE}, ) g_costs.append((g_cost1 + g_cost2)/2) # just use the avg print(" batch: %d/%d - dt: %s - d_acc: %.2f" % (j+1, n_batches, datetime.now() - t0, d_acc)) # save samples periodically total_iters += 1 if total_iters % SAVE_SAMPLE_PERIOD == 0: print("saving a sample...") samples = self.sample(64) # shape is (64, D, D, color) # for convenience d = self.img_length if samples.shape[-1] == 1: # if color == 1, we want a 2-D image (N x N) samples = samples.reshape(64, d, d) flat_image = np.empty((8*d, 8*d)) k = 0 for i in range(8): for j in range(8): flat_image[i*d:(i+1)*d, j*d:(j+1)*d] = samples[k].reshape(d, d) k += 1 # plt.imshow(flat_image, cmap='gray') else: # if color == 3, we want a 3-D image (N x N x 3) flat_image = np.empty((8*d, 8*d, 3)) k = 0 for i in range(8): for j in range(8): flat_image[i*d:(i+1)*d, j*d:(j+1)*d] = samples[k] k += 1 # plt.imshow(flat_image) # plt.savefig('samples/samples_at_iter_%d.png' % total_iters) sp.misc.imsave( 'samples/samples_at_iter_%d.png' % total_iters, flat_image, ) # save a plot of the costs plt.clf() plt.plot(d_costs, label='discriminator cost') plt.plot(g_costs, label='generator cost') plt.legend() plt.savefig('cost_vs_iteration.png') def sample(self, n): Z = np.random.uniform(-1, 1, size=(n, self.latent_dims)) samples = self.sess.run(self.sample_images_test, feed_dict={self.Z: Z, self.batch_sz: n}) return samples def celeb(): X = util.get_celeb() # just loads a list of filenames, we will load them in dynamically # because there are many dim = 64 colors = 3 # for celeb d_sizes = { 'conv_layers': [ (64, 5, 2, False), (128, 5, 2, True), (256, 5, 2, True), (512, 5, 2, True) ], 'dense_layers': [], } g_sizes = { 'z': 100, 'projection': 512, 'bn_after_project': True, 'conv_layers': [ (256, 5, 2, True), (128, 5, 2, True), (64, 5, 2, True), (colors, 5, 2, False) ], 'dense_layers': [], 'output_activation': tf.tanh, } # setup gan # note: assume square images, so only need 1 dim gan = DCGAN(dim, colors, d_sizes, g_sizes) gan.fit(X) def mnist(): X, Y = util.get_mnist() X = X.reshape(len(X), 28, 28, 1) dim = X.shape[1] colors = X.shape[-1] # for mnist d_sizes = { 'conv_layers': [(2, 5, 2, False), (64, 5, 2, True)], 'dense_layers': [(1024, True)], } g_sizes = { 'z': 100, 'projection': 128, 'bn_after_project': False, 'conv_layers': [(128, 5, 2, True), (colors, 5, 2, False)], 'dense_layers': [(1024, True)], 'output_activation': tf.sigmoid, } # setup gan # note: assume square images, so only need 1 dim gan = DCGAN(dim, colors, d_sizes, g_sizes) gan.fit(X) # samples = gan.sample(1) # just making sure it works # since training will take a considerable # amount of time, let's just save some # samples to disk rather than plotting now if __name__ == '__main__': # celeb() mnist() ================================================ FILE: unsupervised_class3/dcgan_theano.py ================================================ # https://deeplearningcourses.com/c/deep-learning-gans-and-variational-autoencoders # https://www.udemy.com/deep-learning-gans-and-variational-autoencoders from __future__ import print_function, division from builtins import range, input # Note: you may need to update your version of future # sudo pip install -U future import os import util import scipy as sp import numpy as np import theano import theano.tensor as T import matplotlib.pyplot as plt from datetime import datetime from theano.tensor.nnet.bn import batch_normalization_train, batch_normalization_test from theano.tensor.nnet import conv2d # some constants LEARNING_RATE = 0.0002 BETA1 = 0.5 BETA2 = 0.999 EPSILON = 1e-8 BATCH_SIZE = 64 EPOCHS = 2 BATCH_SIZE = 64 SAVE_SAMPLE_PERIOD = 50 # make dir to save samples if not os.path.exists('samples'): os.mkdir('samples') # make it callable with only 1 input def lrelu(x, alpha=0.2): return T.nnet.relu(x, alpha) # helper for adam optimizer def adam(params, grads): updates = [] time = theano.shared(0) new_time = time + 1 updates.append((time, new_time)) lr = LEARNING_RATE*T.sqrt(1 - BETA2**new_time) / (1 - BETA1**new_time) for p, g in zip(params, grads): m = theano.shared(p.get_value() * 0.) v = theano.shared(p.get_value() * 0.) new_m = BETA1*m + (1 - BETA1)*g new_v = BETA2*v + (1 - BETA2)*g*g new_p = p - lr*new_m / (T.sqrt(new_v) + EPSILON) updates.append((m, new_m)) updates.append((v, new_v)) updates.append((p, new_p)) return updates # helper for batch norm def batch_norm( input_, gamma, beta, running_mean, running_var, is_training, axes='per-activation'): if is_training: # returns: # batch-normalized output # batch mean # batch variance # running mean (for later use as population mean estimate) # running var (for later use as population var estimate) out, _, _, new_running_mean, new_running_var = batch_normalization_train( input_, gamma, beta, running_mean=running_mean, running_var=running_var, axes=axes, running_average_factor=0.9, ) else: new_running_mean = None new_running_var = None # just to ensure we don't try to use them out = batch_normalization_test( input_, gamma, beta, running_mean, running_var, axes=axes, ) return out, new_running_mean, new_running_var class ConvLayer: def __init__(self, mi, mo, apply_batch_norm, filtersz=5, stride=2, f=T.nnet.relu): # mi = input feature map size # mo = output feature map size W = 0.02*np.random.randn(mo, mi, filtersz, filtersz) self.W = theano.shared(W) self.b = theano.shared(np.zeros(mo)) self.params = [self.W, self.b] self.updates = [] # in case we do batch norm if apply_batch_norm: self.gamma = theano.shared(np.ones(mo)) self.beta = theano.shared(np.zeros(mo)) self.params += [self.gamma, self.beta] self.running_mean = theano.shared(np.zeros(mo)) self.running_var = theano.shared(np.zeros(mo)) self.f = f self.stride = stride self.apply_batch_norm = apply_batch_norm def forward(self, X, is_training): conv_out = conv2d( input=X, filters=self.W, subsample=(self.stride, self.stride), border_mode='half', ) conv_out += self.b.dimshuffle('x', 0, 'x', 'x') # apply batch normalization if self.apply_batch_norm: conv_out, new_running_mean, new_running_var = batch_norm( conv_out, self.gamma, self.beta, self.running_mean, self.running_var, is_training, 'spatial' ) if is_training: self.updates = [ (self.running_mean, new_running_mean), (self.running_var, new_running_var), ] return self.f(conv_out) # regular convolution expects output size to be: # new_dim = floor( (old_dim - filter_sz) / stride ) + 1 # therefore, for fs-conv, output size should be: # new_dim = stride * (old_dim - 1) + filter_sz class FractionallyStridedConvLayer: def __init__(self, mi, mo, output_shape, apply_batch_norm, filtersz=5, stride=2, f=T.nnet.relu): # mi = input feature map size # mo = output feature map size self.filter_shape = (mi, mo, filtersz, filtersz) W = 0.02*np.random.randn(*self.filter_shape) self.W = theano.shared(W) self.b = theano.shared(np.zeros(mo)) self.params = [self.W, self.b] self.updates = [] # in case we do batch norm if apply_batch_norm: self.gamma = theano.shared(np.ones(mo)) self.beta = theano.shared(np.zeros(mo)) self.params += [self.gamma, self.beta] self.running_mean = theano.shared(np.zeros(mo)) self.running_var = theano.shared(np.zeros(mo)) self.f = f self.stride = stride self.output_shape = output_shape self.apply_batch_norm = apply_batch_norm self.params = [self.W, self.b] def forward(self, X, is_training): conv_out = T.nnet.abstract_conv.conv2d_grad_wrt_inputs( X, self.W, input_shape=self.output_shape, filter_shape=self.filter_shape, border_mode='half', subsample=(self.stride, self.stride) ) conv_out += self.b.dimshuffle('x', 0, 'x', 'x') # apply batch normalization if self.apply_batch_norm: conv_out, new_running_mean, new_running_var = batch_norm( conv_out, self.gamma, self.beta, self.running_mean, self.running_var, is_training, 'spatial' ) if is_training: self.updates = [ (self.running_mean, new_running_mean), (self.running_var, new_running_var), ] return self.f(conv_out) class DenseLayer(object): def __init__(self, M1, M2, apply_batch_norm, f=T.nnet.relu): W = 0.02*np.random.randn(M1, M2) self.W = theano.shared(W) self.b = theano.shared(np.zeros(M2)) self.params = [self.W, self.b] self.updates = [] # in case we do batch norm if apply_batch_norm: self.gamma = theano.shared(np.ones(M2)) self.beta = theano.shared(np.zeros(M2)) self.params += [self.gamma, self.beta] self.running_mean = theano.shared(np.zeros(M2)) self.running_var = theano.shared(np.zeros(M2)) self.f = f self.apply_batch_norm = apply_batch_norm self.params = [self.W, self.b] def forward(self, X, is_training): a = X.dot(self.W) + self.b # apply batch normalization if self.apply_batch_norm: a, new_running_mean, new_running_var = batch_norm( a, self.gamma, self.beta, self.running_mean, self.running_var, is_training, 'spatial' ) if is_training: self.updates = [ (self.running_mean, new_running_mean), (self.running_var, new_running_var), ] return self.f(a) class DCGAN: def __init__(self, img_length, num_colors, d_sizes, g_sizes): # save for later self.img_length = img_length self.num_colors = num_colors self.latent_dims = g_sizes['z'] # define the input data self.X = T.tensor4('placeholderX') self.Z = T.matrix('placeholderZ') # build the discriminator p_real_given_real = self.build_discriminator(self.X, d_sizes) # build generator self.sample_images = self.build_generator(self.Z, g_sizes) # get sample predictions p_real_given_fake = self.d_forward(self.sample_images, True) # sample with batch norm in test mode self.sample_images_test = self.g_forward(self.Z, False) # build costs self.d_cost_real = T.nnet.binary_crossentropy( output=p_real_given_real, target=T.ones_like(p_real_given_real), ) self.d_cost_fake = T.nnet.binary_crossentropy( output=p_real_given_fake, target=T.zeros_like(p_real_given_fake), ) self.d_cost = T.mean(self.d_cost_real) + T.mean(self.d_cost_fake) self.g_cost = T.mean( T.nnet.binary_crossentropy( output=p_real_given_fake, target=T.ones_like(p_real_given_fake), ) ) real_predictions = T.sum(T.eq(T.round(p_real_given_real), 1)) fake_predictions = T.sum(T.eq(T.round(p_real_given_fake), 0)) num_predictions = 2.0*BATCH_SIZE num_correct = real_predictions + fake_predictions self.d_accuracy = num_correct / num_predictions # optimizers d_grads = T.grad(self.d_cost, self.d_params) d_updates = adam(self.d_params, d_grads) # add batch norm updates for layer in self.d_convlayers + self.d_denselayers + [self.d_finallayer]: d_updates += layer.updates self.train_d = theano.function( inputs=[self.X, self.Z], outputs=[self.d_cost, self.d_accuracy], updates=d_updates, ) g_grads = T.grad(self.g_cost, self.g_params) g_updates = adam(self.g_params, g_grads) # add batch norm updates for layer in self.g_denselayers + self.g_convlayers: g_updates += layer.updates g_updates += self.g_bn_updates self.train_g = theano.function( inputs=[self.Z], outputs=self.g_cost, updates=g_updates, ) # make a function to get sample images self.get_sample_images = theano.function( inputs=[self.Z], outputs=self.sample_images_test, ) def build_discriminator(self, X, d_sizes): self.d_params = [] # build conv layers self.d_convlayers = [] mi = self.num_colors dim = self.img_length print("*** conv layer image sizes:") for mo, filtersz, stride, apply_batch_norm in d_sizes['conv_layers']: layer = ConvLayer(mi, mo, apply_batch_norm, filtersz, stride, lrelu) self.d_convlayers.append(layer) self.d_params += layer.params mi = mo print("dim:", dim) dim = int(np.ceil(float(dim) / stride)) # for 'valid' border mode # dim = int(np.floor( (dim - filtersz) / stride ) ) + 1 # for 'full' border mode # dim = int(np.ceil( (dim + filtersz - 1) / stride ) ) print("final dim before flatten:", dim) mi = mi * dim * dim # build dense layers self.d_denselayers = [] for mo, apply_batch_norm in d_sizes['dense_layers']: layer = DenseLayer(mi, mo, apply_batch_norm, lrelu) mi = mo self.d_denselayers.append(layer) self.d_params += layer.params # final logistic layer self.d_finallayer = DenseLayer(mi, 1, False, T.nnet.sigmoid) self.d_params += self.d_finallayer.params # get the logits p_real_given_x = self.d_forward(X, True) # build the cost later return p_real_given_x def d_forward(self, X, is_training): # encapsulate this because we use it twice output = X for layer in self.d_convlayers: output = layer.forward(output, is_training) output = output.flatten(ndim=2) for layer in self.d_denselayers: output = layer.forward(output, is_training) output = self.d_finallayer.forward(output, is_training) return output def build_generator(self, Z, g_sizes): self.g_params = [] # determine the size of the data at each step dims = [self.img_length] dim = self.img_length for _, filtersz, stride, _ in reversed(g_sizes['conv_layers']): dim = int(np.ceil(float(dim) / stride)) # for 'valid' border mode # dim = int(np.floor( (dim - filtersz) / stride ) ) + 1 # for 'full' border mode # dim = int(np.ceil( (dim + filtersz - 1) / stride ) ) dims.append(dim) # note: dims is actually backwards # the first layer of the generator is actually last # so let's reverse it dims = list(reversed(dims)) print("dims:", dims) self.g_dims = dims # dense layers mi = self.latent_dims self.g_denselayers = [] for mo, apply_batch_norm in g_sizes['dense_layers']: layer = DenseLayer(mi, mo, apply_batch_norm) self.g_denselayers.append(layer) self.g_params += layer.params mi = mo # final dense layer mo = g_sizes['projection'] * dims[0] * dims[0] layer = DenseLayer(mi, mo, not g_sizes['bn_after_project']) self.g_denselayers.append(layer) self.g_params += layer.params # fs-conv layers mi = g_sizes['projection'] self.g_convlayers = [] # output may use tanh or sigmoid num_relus = len(g_sizes['conv_layers']) - 1 activation_functions = [T.nnet.relu]*num_relus + [g_sizes['output_activation']] for i in range(len(g_sizes['conv_layers'])): mo, filtersz, stride, apply_batch_norm = g_sizes['conv_layers'][i] f = activation_functions[i] output_shape = [BATCH_SIZE, mo, dims[i+1], dims[i+1]] print("mi:", mi, "mo:", mo, "outp shape:", output_shape) layer = FractionallyStridedConvLayer( mi, mo, output_shape, apply_batch_norm, filtersz, stride, f ) self.g_convlayers.append(layer) self.g_params += layer.params mi = mo # apply batch norm if g_sizes['bn_after_project']: self.gamma = theano.shared(np.ones(g_sizes['projection'])) self.beta = theano.shared(np.zeros(g_sizes['projection'])) self.running_mean = theano.shared(np.zeros(g_sizes['projection'])) self.running_var = theano.shared(np.zeros(g_sizes['projection'])) self.g_params += [self.gamma, self.beta] # get the output self.g_sizes = g_sizes return self.g_forward(Z, True) def g_forward(self, Z, is_training): # dense layers output = Z for layer in self.g_denselayers: output = layer.forward(output, is_training) # project and reshape # remember! (N, color, D, D) output = output.reshape( [-1, self.g_sizes['projection'], self.g_dims[0], self.g_dims[0]], ) # apply batch norm if self.g_sizes['bn_after_project']: output, new_running_mean, new_running_var = batch_norm( output, self.gamma, self.beta, self.running_mean, self.running_var, is_training, 'spatial' ) if is_training: self.g_bn_updates = [ (self.running_mean, new_running_mean), (self.running_var, new_running_var), ] else: self.g_bn_updates = [] # pass through fs-conv layers for layer in self.g_convlayers: output = layer.forward(output, is_training) return output def fit(self, X): d_costs = [] g_costs = [] N = len(X) n_batches = N // BATCH_SIZE total_iters = 0 for i in range(EPOCHS): print("epoch:", i) np.random.shuffle(X) for j in range(n_batches): t0 = datetime.now() if type(X[0]) is str: # is celeb dataset batch = util.files2images_theano( X[j*BATCH_SIZE:(j+1)*BATCH_SIZE] ) else: # is mnist dataset batch = X[j*BATCH_SIZE:(j+1)*BATCH_SIZE] Z = np.random.uniform(-1, 1, size=(BATCH_SIZE, self.latent_dims)) # train the discriminator d_cost, d_acc = self.train_d(batch, Z) d_costs.append(d_cost) # train the generator g_cost1 = self.train_g(Z) g_cost2 = self.train_g(Z) g_costs.append((g_cost1 + g_cost2)/2) # just use the avg print(" batch: %d/%d - dt: %s - d_acc: %.2f" % (j+1, n_batches, datetime.now() - t0, d_acc)) # save samples periodically total_iters += 1 if total_iters % SAVE_SAMPLE_PERIOD == 0: print("saving a sample...") samples = self.sample(64) # shape is (64, D, D, color) # for convenience d = self.img_length if samples.shape[-1] == 1: # if color == 1, we want a 2-D image (N x N) samples = samples.reshape(64, d, d) flat_image = np.empty((8*d, 8*d)) k = 0 for i in range(8): for j in range(8): flat_image[i*d:(i+1)*d, j*d:(j+1)*d] = samples[k].reshape(d, d) k += 1 # plt.imshow(flat_image, cmap='gray') else: # if color == 3, we want a 3-D image (N x N x 3) flat_image = np.empty((8*d, 8*d, 3)) k = 0 for i in range(8): for j in range(8): # note: we have to change it back to (D, D, color) flat_image[i*d:(i+1)*d, j*d:(j+1)*d] = samples[k].transpose((1, 2, 0)) k += 1 # plt.imshow(flat_image) # plt.savefig('samples/samples_at_iter_%d.png' % total_iters) sp.misc.imsave( 'samples/samples_at_iter_%d.png' % total_iters, flat_image, ) # save a plot of the costs plt.clf() plt.plot(d_costs, label='discriminator cost') plt.plot(g_costs, label='generator cost') plt.legend() plt.savefig('cost_vs_iteration.png') def sample(self, n): Z = np.random.uniform(-1, 1, size=(n, self.latent_dims)) return self.get_sample_images(Z) def celeb(): X = util.get_celeb() # just loads a list of filenames, we will load them in dynamically # because there are many dim = 64 colors = 3 # for celeb d_sizes = { 'conv_layers': [ (64, 5, 2, False), (128, 5, 2, True), (256, 5, 2, True), (512, 5, 2, True) ], 'dense_layers': [], } g_sizes = { 'z': 100, 'projection': 512, 'bn_after_project': True, 'conv_layers': [ (256, 5, 2, True), (128, 5, 2, True), (64, 5, 2, True), (colors, 5, 2, False) ], 'dense_layers': [], 'output_activation': T.tanh, } # setup gan # note: assume square images, so only need 1 dim gan = DCGAN(dim, colors, d_sizes, g_sizes) gan.fit(X) def mnist(): X, Y = util.get_mnist() X = X.reshape(len(X), 1, 28, 28) # remember! (N, color, D, D) dim = X.shape[2] colors = X.shape[1] # for mnist d_sizes = { 'conv_layers': [(2, 5, 2, False), (64, 5, 2, True)], 'dense_layers': [(1024, True)], } g_sizes = { 'z': 100, 'projection': 128, 'bn_after_project': False, 'conv_layers': [(128, 5, 2, True), (colors, 5, 2, False)], 'dense_layers': [(1024, True)], 'output_activation': T.nnet.sigmoid, } # setup gan # note: assume square images, so only need 1 dim gan = DCGAN(dim, colors, d_sizes, g_sizes) gan.fit(X) # since training will take a considerable # amount of time, let's just save some # samples to disk rather than plotting now if __name__ == '__main__': celeb() # mnist() ================================================ FILE: unsupervised_class3/extra_reading.txt ================================================ Generative Visual Manipulation on the Natural Image Manifold https://www.youtube.com/watch?v=9c4z6YsBGQ0 Generative Adversarial Nets (Goodfellow 2014) https://papers.nips.cc/paper/5423-generative-adversarial-nets.pdf Radford, A., Metz, L., and Chintala, S. (2015). Unsupervised representation learning with deep convolutional generative adversarial networks https://arxiv.org/abs/1511.06434v2 Striving for Simplicity: The All Convolutional Net (Springenberg et al., 2015) https://arxiv.org/abs/1412.6806 ================================================ FILE: unsupervised_class3/parameterize_guassian.py ================================================ # https://deeplearningcourses.com/c/deep-learning-gans-and-variational-autoencoders # https://www.udemy.com/deep-learning-gans-and-variational-autoencoders from __future__ import print_function, division from builtins import range, input # Note: you may need to update your version of future # sudo pip install -U future import numpy as np import matplotlib.pyplot as plt from scipy.stats import multivariate_normal as mvn def softplus(x): # log1p(x) == log(1 + x) return np.log1p(np.exp(x)) # we're going to make a neural network # with the layer sizes (4, 3, 2) # like a toy version of a encoder W1 = np.random.randn(4, 3) W2 = np.random.randn(3, 2*2) # why 2 * 2? # we need 2 components for the mean, # and 2 components for the standard deviation! # ignore bias terms for simplicity. def forward(x, W1, W2): hidden = np.tanh(x.dot(W1)) output = hidden.dot(W2) # no activation! mean = output[:2] stddev = softplus(output[2:]) return mean, stddev # make a random input x = np.random.randn(4) # get the parameters of the Gaussian mean, stddev = forward(x, W1, W2) print("mean:", mean) print("stddev:", stddev) # draw samples samples = mvn.rvs(mean=mean, cov=stddev**2, size=10000) # plot the samples plt.scatter(samples[:,0], samples[:,1], alpha=0.5) plt.show() ================================================ FILE: unsupervised_class3/test_stochastic_tensor.py ================================================ # https://deeplearningcourses.com/c/deep-learning-gans-and-variational-autoencoders # https://www.udemy.com/deep-learning-gans-and-variational-autoencoders # a simple script to see what StochasticTensor outputs from __future__ import print_function, division from builtins import range # Note: you may need to update your version of future # sudo pip install -U future import numpy as np import tensorflow as tf import matplotlib.pyplot as plt st = tf.contrib.bayesflow.stochastic_tensor Normal = tf.contrib.distributions.Normal # sample N samples from N(5,3*3) N = 10000 mean = np.ones(N)*5 scale = np.ones(N)*3 I = tf.Variable(np.ones(N)) with st.value_type(st.SampleValue()): X = st.StochasticTensor(Normal(loc=mean, scale=scale)) # cannot session.run a stochastic tensor # but we can session.run a tensor Y = I * X init_op = tf.global_variables_initializer() with tf.Session() as session: session.run(init_op) Y_val = session.run(Y) print("Sample mean:", Y_val.mean()) print("Sample std dev:", Y_val.std()) plt.hist(Y_val, bins=20) plt.show() ================================================ FILE: unsupervised_class3/util.py ================================================ # https://deeplearningcourses.com/c/deep-learning-gans-and-variational-autoencoders # https://www.udemy.com/deep-learning-gans-and-variational-autoencoders from __future__ import print_function, division from builtins import range # Note: you may need to update your version of future # sudo pip install -U future import os import requests import zipfile import numpy as np import pandas as pd try: # new version doesn't support from scipy.misc import imread, imsave, imresize except: from PIL import Image def imread(fn): im = Image.open(fn) return np.array(im) def imsave(fn, arr): im = Image.fromarray(arr) im.save(fn) def imresize(arr, sz): im = Image.fromarray(arr) im.resize(sz) return np.array(im) from glob import glob from tqdm import tqdm from sklearn.utils import shuffle def get_mnist(limit=None): if not os.path.exists('../large_files'): print("You must create a folder called large_files adjacent to the class folder first.") if not os.path.exists('../large_files/train.csv'): print("Looks like you haven't downloaded the data or it's not in the right spot.") print("Please get train.csv from https://www.kaggle.com/c/digit-recognizer") print("and place it in the large_files folder.") print("Reading in and transforming data...") df = pd.read_csv('../large_files/train.csv') data = df.values # np.random.shuffle(data) X = data[:, 1:] / 255.0 # data is from 0..255 Y = data[:, 0] X, Y = shuffle(X, Y) if limit is not None: X, Y = X[:limit], Y[:limit] return X, Y def get_celeb(limit=None): if not os.path.exists('../large_files'): os.mkdir('../large_files') # eventual place where our final data will reside if not os.path.exists('../large_files/img_align_celeba-cropped'): # check for original data if not os.path.exists('../large_files/img_align_celeba'): # download the file and place it here if not os.path.exists('../large_files/img_align_celeba.zip'): print("Downloading img_align_celeba.zip...") download_file( '0B7EVK8r0v71pZjFTYXZWM3FlRnM', '../large_files/img_align_celeba.zip' ) # unzip the file print("Extracting img_align_celeba.zip...") with zipfile.ZipFile('../large_files/img_align_celeba.zip') as zf: zip_dir = zf.namelist()[0] zf.extractall('../large_files') # load in the original images filenames = glob("../large_files/img_align_celeba/*.jpg") N = len(filenames) print("Found %d files!" % N) # crop the images to 64x64 os.mkdir('../large_files/img_align_celeba-cropped') print("Cropping images, please wait...") for i in range(N): crop_and_resave(filenames[i], '../large_files/img_align_celeba-cropped') if i % 1000 == 0: print("%d/%d" % (i, N)) # make sure to return the cropped version filenames = glob("../large_files/img_align_celeba-cropped/*.jpg") return filenames def crop_and_resave(inputfile, outputdir): # theoretically, we could try to find the face # but let's be lazy # we assume that the middle 108 pixels will contain the face im = imread(inputfile) height, width, color = im.shape edge_h = int( round( (height - 108) / 2.0 ) ) edge_w = int( round( (width - 108) / 2.0 ) ) cropped = im[edge_h:(edge_h + 108), edge_w:(edge_w + 108)] small = imresize(cropped, (64, 64)) filename = inputfile.split('/')[-1] imsave("%s/%s" % (outputdir, filename), small) def scale_image(im): # scale to (-1, +1) return (im / 255.0)*2 - 1 def files2images_theano(filenames): # theano wants images to be of shape (C, D, D) # tensorflow wants (D, D, C) which is what scipy imread # uses by default return [scale_image(imread(fn).transpose((2, 0, 1))) for fn in filenames] def files2images(filenames): return [scale_image(imread(fn)) for fn in filenames] # functions for downloading file from google drive def save_response_content(r, dest): # unfortunately content-length is not provided in header total_iters = 1409659 # in KB print("Note: units are in KB, e.g. KKB = MB") # because we are reading 1024 bytes at a time, hence # 1KB == 1 "unit" for tqdm with open(dest, 'wb') as f: for chunk in tqdm( r.iter_content(1024), total=total_iters, unit='KB', unit_scale=True): if chunk: # filter out keep-alive new chunks f.write(chunk) def get_confirm_token(response): for key, value in response.cookies.items(): if key.startswith('download_warning'): return value return None def download_file(file_id, dest): drive_url = "https://docs.google.com/uc?export=download" session = requests.Session() response = session.get(drive_url, params={'id': file_id}, stream=True) token = get_confirm_token(response) if token: params = {'id': file_id, 'confirm': token} response = session.get(drive_url, params=params, stream=True) save_response_content(response, dest) ================================================ FILE: unsupervised_class3/vae_tf.py ================================================ # https://deeplearningcourses.com/c/deep-learning-gans-and-variational-autoencoders # https://www.udemy.com/deep-learning-gans-and-variational-autoencoders from __future__ import print_function, division from builtins import range, input # Note: you may need to update your version of future # sudo pip install -U future import util import numpy as np import tensorflow as tf import matplotlib.pyplot as plt st = None try: st = tf.contrib.bayesflow.stochastic_tensor except: # doesn't exist in later versions of TF # we will use the reparameterization trick instead # watch the later lecture on the reparameterization trick # to learn about it. pass Normal = tf.contrib.distributions.Normal Bernoulli = tf.contrib.distributions.Bernoulli class DenseLayer(object): def __init__(self, M1, M2, f=tf.nn.relu): # self.M1 = M1 # self.M2 = M2 self.W = tf.Variable(tf.random_normal(shape=(M1, M2)) * 2 / np.sqrt(M1)) self.b = tf.Variable(np.zeros(M2).astype(np.float32)) self.f = f def forward(self, X): return self.f(tf.matmul(X, self.W) + self.b) class VariationalAutoencoder: def __init__(self, D, hidden_layer_sizes): # hidden_layer_sizes specifies the size of every layer # in the encoder # up to the final hidden layer Z # the decoder will have the reverse shape # represents a batch of training data self.X = tf.placeholder(tf.float32, shape=(None, D)) # encoder self.encoder_layers = [] M_in = D for M_out in hidden_layer_sizes[:-1]: h = DenseLayer(M_in, M_out) self.encoder_layers.append(h) M_in = M_out # for convenience, we'll refer to the final encoder size as M # also the input to the decoder size M = hidden_layer_sizes[-1] # the encoder's final layer output is unbounded # so there is no activation function # we also need 2 times as many units as specified by M_out # since there needs to be M_out means + M_out variances h = DenseLayer(M_in, 2 * M, f=lambda x: x) self.encoder_layers.append(h) # get the mean and variance / std dev of Z. # note that the variance must be > 0 # we can get a sigma (standard dev) > 0 from an unbounded variable by # passing it through the softplus function. # add a small amount for smoothing. current_layer_value = self.X for layer in self.encoder_layers: current_layer_value = layer.forward(current_layer_value) self.means = current_layer_value[:, :M] self.stddev = tf.nn.softplus(current_layer_value[:, M:]) + 1e-6 # get a sample of Z # we need to use a stochastic tensor # in order for the errors to be backpropagated past this point if st is None: # doesn't exist in later versions of Tensorflow # we'll use the same trick we use in Theano standard_normal = Normal( loc=np.zeros(M, dtype=np.float32), scale=np.ones(M, dtype=np.float32) ) e = standard_normal.sample(tf.shape(self.means)[0]) self.Z = e * self.stddev + self.means # note: this also works because Tensorflow # now does the "magic" for you # n = Normal( # loc=self.means, # scale=self.stddev, # ) # self.Z = n.sample() else: with st.value_type(st.SampleValue()): self.Z = st.StochasticTensor(Normal(loc=self.means, scale=self.stddev)) # to get back Q(Z), the distribution of Z # we will later use self.Z.distribution # decoder self.decoder_layers = [] M_in = M for M_out in reversed(hidden_layer_sizes[:-1]): h = DenseLayer(M_in, M_out) self.decoder_layers.append(h) M_in = M_out # the decoder's final layer should technically go through a sigmoid # so that the final output is a binary probability (e.g. Bernoulli) # but Bernoulli accepts logits (pre-sigmoid) so we will take those # so no activation function is needed at the final layer h = DenseLayer(M_in, D, f=lambda x: x) self.decoder_layers.append(h) # get the logits current_layer_value = self.Z for layer in self.decoder_layers: current_layer_value = layer.forward(current_layer_value) logits = current_layer_value posterior_predictive_logits = logits # save for later # get the output self.X_hat_distribution = Bernoulli(logits=logits) # take samples from X_hat # we will call this the posterior predictive sample self.posterior_predictive = self.X_hat_distribution.sample() self.posterior_predictive_probs = tf.nn.sigmoid(logits) # take sample from a Z ~ N(0, 1) # and put it through the decoder # we will call this the prior predictive sample standard_normal = Normal( loc=np.zeros(M, dtype=np.float32), scale=np.ones(M, dtype=np.float32) ) Z_std = standard_normal.sample(1) current_layer_value = Z_std for layer in self.decoder_layers: current_layer_value = layer.forward(current_layer_value) logits = current_layer_value prior_predictive_dist = Bernoulli(logits=logits) self.prior_predictive = prior_predictive_dist.sample() self.prior_predictive_probs = tf.nn.sigmoid(logits) # prior predictive from input # only used for generating visualization self.Z_input = tf.placeholder(tf.float32, shape=(None, M)) current_layer_value = self.Z_input for layer in self.decoder_layers: current_layer_value = layer.forward(current_layer_value) logits = current_layer_value self.prior_predictive_from_input_probs = tf.nn.sigmoid(logits) # now build the cost if st is None: kl = -tf.log(self.stddev) + 0.5*(self.stddev**2 + self.means**2) - 0.5 kl = tf.reduce_sum(kl, axis=1) else: kl = tf.reduce_sum( tf.contrib.distributions.kl_divergence( self.Z.distribution, standard_normal ), 1 ) expected_log_likelihood = tf.reduce_sum( self.X_hat_distribution.log_prob(self.X), 1 ) # equivalent # expected_log_likelihood = -tf.nn.sigmoid_cross_entropy_with_logits( # labels=self.X, # logits=posterior_predictive_logits # ) # expected_log_likelihood = tf.reduce_sum(expected_log_likelihood, 1) self.elbo = tf.reduce_sum(expected_log_likelihood - kl) self.train_op = tf.train.RMSPropOptimizer(learning_rate=0.001).minimize(-self.elbo) # set up session and variables for later self.init_op = tf.global_variables_initializer() self.sess = tf.InteractiveSession() self.sess.run(self.init_op) def fit(self, X, epochs=30, batch_sz=64): costs = [] n_batches = len(X) // batch_sz print("n_batches:", n_batches) for i in range(epochs): print("epoch:", i) np.random.shuffle(X) for j in range(n_batches): batch = X[j*batch_sz:(j+1)*batch_sz] _, c, = self.sess.run((self.train_op, self.elbo), feed_dict={self.X: batch}) c /= batch_sz # just debugging costs.append(c) if j % 100 == 0: print("iter: %d, cost: %.3f" % (j, c)) plt.plot(costs) plt.show() def transform(self, X): return self.sess.run( self.means, feed_dict={self.X: X} ) def prior_predictive_with_input(self, Z): return self.sess.run( self.prior_predictive_from_input_probs, feed_dict={self.Z_input: Z} ) def posterior_predictive_sample(self, X): # returns a sample from p(x_new | X) return self.sess.run(self.posterior_predictive, feed_dict={self.X: X}) def prior_predictive_sample_with_probs(self): # returns a sample from p(x_new | z), z ~ N(0, 1) return self.sess.run((self.prior_predictive, self.prior_predictive_probs)) def main(): X, Y = util.get_mnist() # convert X to binary variable X = (X > 0.5).astype(np.float32) vae = VariationalAutoencoder(784, [200, 100]) vae.fit(X) # plot reconstruction done = False while not done: i = np.random.choice(len(X)) x = X[i] im = vae.posterior_predictive_sample([x]).reshape(28, 28) plt.subplot(1,2,1) plt.imshow(x.reshape(28, 28), cmap='gray') plt.title("Original") plt.subplot(1,2,2) plt.imshow(im, cmap='gray') plt.title("Sampled") plt.show() ans = input("Generate another?") if ans and ans[0] in ('n' or 'N'): done = True # plot output from random samples in latent space done = False while not done: im, probs = vae.prior_predictive_sample_with_probs() im = im.reshape(28, 28) probs = probs.reshape(28, 28) plt.subplot(1,2,1) plt.imshow(im, cmap='gray') plt.title("Prior predictive sample") plt.subplot(1,2,2) plt.imshow(probs, cmap='gray') plt.title("Prior predictive probs") plt.show() ans = input("Generate another?") if ans and ans[0] in ('n' or 'N'): done = True if __name__ == '__main__': main() ================================================ FILE: unsupervised_class3/vae_theano.py ================================================ # https://deeplearningcourses.com/c/deep-learning-gans-and-variational-autoencoders # https://www.udemy.com/deep-learning-gans-and-variational-autoencoders from __future__ import print_function, division from builtins import range, input # Note: you may need to update your version of future # sudo pip install -U future import util import numpy as np import theano import theano.tensor as T import matplotlib.pyplot as plt from theano.tensor.shared_randomstreams import RandomStreams class DenseLayer(object): def __init__(self, M1, M2, f=T.nnet.relu): self.W = theano.shared(np.random.randn(M1, M2) * np.sqrt(2.0 / M1)) self.b = theano.shared(np.zeros(M2)) self.f = f self.params = [self.W, self.b] def forward(self, X): return self.f(X.dot(self.W) + self.b) class VariationalAutoencoder: def __init__(self, D, hidden_layer_sizes): # hidden_layer_sizes specifies the size of every layer # in the encoder # up to the final hidden layer Z # the decoder will have the reverse shape # represents a batch of training data self.X = T.matrix('X') # encoder self.encoder_layers = [] M_in = D for M_out in hidden_layer_sizes[:-1]: h = DenseLayer(M_in, M_out) self.encoder_layers.append(h) M_in = M_out # for convenience, we'll refer to the final encoder size as M # also the input to the decoder size M = hidden_layer_sizes[-1] # the encoder's final layer output is unbounded # so there is no activation function # we also need 2 times as many units as specified by M_out # since there needs to be M_out means + M_out variances h = DenseLayer(M_in, 2 * M, f=lambda x: x) self.encoder_layers.append(h) # get the mean and variance / std dev of Z. # note that the variance must be > 0 # we can get a sigma (standard dev) > 0 from an unbounded variable by # passing it through the softplus function. # add a small amount for smoothing. current_layer_value = self.X for layer in self.encoder_layers: current_layer_value = layer.forward(current_layer_value) self.means = current_layer_value[:, :M] self.stddev = T.nnet.softplus(current_layer_value[:, M:]) + 1e-6 # get a sample of Z self.rng = RandomStreams() eps = self.rng.normal((self.means.shape[0], M)) self.Z = self.means + self.stddev * eps # decoder self.decoder_layers = [] M_in = M for M_out in reversed(hidden_layer_sizes[:-1]): h = DenseLayer(M_in, M_out) self.decoder_layers.append(h) M_in = M_out # the decoder's final layer should go through a sigmoid h = DenseLayer(M_in, D, f=T.nnet.sigmoid) self.decoder_layers.append(h) # get the posterior predictive current_layer_value = self.Z for layer in self.decoder_layers: current_layer_value = layer.forward(current_layer_value) self.posterior_predictive_probs = current_layer_value # take samples from X_hat # we will call this the posterior predictive sample self.posterior_predictive = self.rng.binomial( size=self.posterior_predictive_probs.shape, n=1, p=self.posterior_predictive_probs ) # take sample from a Z ~ N(0, 1) # and put it through the decoder # we will call this the prior predictive sample Z_std = self.rng.normal((1, M)) current_layer_value = Z_std for layer in self.decoder_layers: current_layer_value = layer.forward(current_layer_value) self.prior_predictive_probs = current_layer_value self.prior_predictive = self.rng.binomial( size=self.prior_predictive_probs.shape, n=1, p=self.prior_predictive_probs ) # prior predictive from input # only used for generating visualization Z_input = T.matrix('Z_input') current_layer_value = Z_input for layer in self.decoder_layers: current_layer_value = layer.forward(current_layer_value) prior_predictive_probs_from_Z_input = current_layer_value # now build the cost # https://stats.stackexchange.com/questions/7440/kl-divergence-between-two-univariate-gaussians # https://stats.stackexchange.com/questions/60680/kl-divergence-between-two-multivariate-gaussians kl = -T.log(self.stddev) + 0.5*(self.stddev**2 + self.means**2) - 0.5 kl = T.sum(kl, axis=1) expected_log_likelihood = -T.nnet.binary_crossentropy( output=self.posterior_predictive_probs, target=self.X, ) expected_log_likelihood = T.sum(expected_log_likelihood, axis=1) self.elbo = T.sum(expected_log_likelihood - kl) # define the updates params = [] for layer in self.encoder_layers: params += layer.params for layer in self.decoder_layers: params += layer.params grads = T.grad(-self.elbo, params) # rmsprop decay = 0.9 learning_rate = 0.001 # for rmsprop cache = [theano.shared(np.ones_like(p.get_value())) for p in params] new_cache = [decay*c + (1-decay)*g*g for p, c, g in zip(params, cache, grads)] updates = [ (c, new_c) for c, new_c in zip(cache, new_cache) ] + [ (p, p - learning_rate*g/T.sqrt(new_c + 1e-10)) for p, new_c, g in zip(params, new_cache, grads) ] # now define callable functions self.train_op = theano.function( inputs=[self.X], outputs=self.elbo, updates=updates ) # returns a sample from p(x_new | X) self.posterior_predictive_sample = theano.function( inputs=[self.X], outputs=self.posterior_predictive, ) # returns a sample from p(x_new | z), z ~ N(0, 1) self.prior_predictive_sample_with_probs = theano.function( inputs=[], outputs=[self.prior_predictive, self.prior_predictive_probs] ) # return mean of q(z | x) self.transform = theano.function( inputs=[self.X], outputs=self.means ) # returns a sample from p(x_new | z), from a given z self.prior_predictive_with_input = theano.function( inputs=[Z_input], outputs=prior_predictive_probs_from_Z_input ) def fit(self, X, epochs=30, batch_sz=64): costs = [] n_batches = len(X) // batch_sz print("n_batches:", n_batches) for i in range(epochs): print("epoch:", i) np.random.shuffle(X) for j in range(n_batches): batch = X[j*batch_sz:(j+1)*batch_sz] c = self.train_op(batch) c /= batch_sz # just debugging costs.append(c) if j % 100 == 0: print("iter: %d, cost: %.3f" % (j, c)) plt.plot(costs) plt.show() def main(): X, Y = util.get_mnist() # convert X to binary variable X = (X > 0.5).astype(np.float32) vae = VariationalAutoencoder(784, [200, 100]) vae.fit(X) # plot reconstruction done = False while not done: i = np.random.choice(len(X)) x = X[i] im = vae.posterior_predictive_sample([x]).reshape(28, 28) plt.subplot(1,2,1) plt.imshow(x.reshape(28, 28), cmap='gray') plt.title("Original") plt.subplot(1,2,2) plt.imshow(im, cmap='gray') plt.title("Sampled") plt.show() ans = input("Generate another?") if ans and ans[0] in ('n' or 'N'): done = True # plot output from random samples in latent space done = False while not done: im, probs = vae.prior_predictive_sample_with_probs() im = im.reshape(28, 28) probs = probs.reshape(28, 28) plt.subplot(1,2,1) plt.imshow(im, cmap='gray') plt.title("Prior predictive sample") plt.subplot(1,2,2) plt.imshow(probs, cmap='gray') plt.title("Prior predictive probs") plt.show() ans = input("Generate another?") if ans and ans[0] in ('n' or 'N'): done = True if __name__ == '__main__': main() ================================================ FILE: unsupervised_class3/visualize_latent_space.py ================================================ # https://deeplearningcourses.com/c/deep-learning-gans-and-variational-autoencoders # https://www.udemy.com/deep-learning-gans-and-variational-autoencoders from __future__ import print_function, division from builtins import range, input # Note: you may need to update your version of future # sudo pip install -U future import util import numpy as np import matplotlib.pyplot as plt from vae_tf import VariationalAutoencoder # from vae_theano import VariationalAutoencoder if __name__ == '__main__': X, Y = util.get_mnist() # convert X to binary variable X = (X > 0.5).astype(np.float32) for i in range(len(X)): plt.imshow(X[i].reshape(28, 28), cmap='gray') plt.title("Label: %s" % Y[i]) plt.show() ans = input("Show another? [Y/n]") if ans and ans[0].lower().startswith('n'): break vae = VariationalAutoencoder(784, [200, 100, 2]) vae.fit(X.copy()) # fit will shuffle the data # so we need to copy to prevent messing up the order # for plotting later, we need Z and Y to correspond Z = vae.transform(X) plt.scatter(Z[:,0], Z[:,1], c=Y, s=10) plt.show() # plot what image is reproduced for different parts of Z n = 20 # number of images per side x_values = np.linspace(-3, 3, n) y_values = np.linspace(-3, 3, n) image = np.empty((28 * n, 28 * n)) # build Z first so we don't have to keep # re-calling the predict function # it is particularly slow in theano Z2 = [] for i, x in enumerate(x_values): for j, y in enumerate(y_values): z = [x, y] Z2.append(z) X_recon = vae.prior_predictive_with_input(Z2) k = 0 for i, x in enumerate(x_values): for j, y in enumerate(y_values): x_recon = X_recon[k] k += 1 # convert from NxD == 1 x 784 --> 28 x 28 x_recon = x_recon.reshape(28, 28) image[(n - i - 1) * 28:(n - i) * 28, j * 28:(j + 1) * 28] = x_recon plt.imshow(image, cmap='gray') plt.show()